Merge from Chromium at DEPS revision r198571

This commit was generated by merge_to_master.py.

Change-Id: I3a7f89ea6b8c017335bd52739166aed708cad1e5
diff --git a/Tools/.gitattributes b/Tools/.gitattributes
index 33b0ab2..e64b19c 100644
--- a/Tools/.gitattributes
+++ b/Tools/.gitattributes
@@ -1,8 +1 @@
-WebKitLauncher/*.h diff=objcppheader
-BuildSlaveSupport/win/kill-old-processes -crlf
-DumpRenderTree/cairo/PixelDumpSupportCairo.cpp -crlf
-FindSafari/Safari.exe.manifest -crlf
-MiniBrowser/win/MiniBrowser.rc -crlf
 TestResultServer/index.yaml -crlf
-WinLauncher/WinLauncher.h -crlf
-record-memory-win/main.cpp -crlf
diff --git a/Tools/.gitignore b/Tools/.gitignore
index 2f4adec..7b743f8 100644
--- a/Tools/.gitignore
+++ b/Tools/.gitignore
@@ -1,6 +1 @@
 Scripts/webkitpy/thirdparty/autoinstalled
-
-# Ignore files generated by the Qt build-system:
-qmake/.build-hint
-
-Tools.sln
diff --git a/Tools/BuildSlaveSupport/build-launcher-app b/Tools/BuildSlaveSupport/build-launcher-app
deleted file mode 100755
index 35520c5..0000000
--- a/Tools/BuildSlaveSupport/build-launcher-app
+++ /dev/null
@@ -1,120 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2006 Apple Computer, Inc.  All rights reserved.
-# Copyright (C) 2006 Mark Rowe <opendarwin.org@bdash.net.nz>.  All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Creates the launcher WebKit.app with bundled frameworks.
-
-use strict;
-
-use FindBin;
-use lib "$FindBin::Bin/../Scripts";
-use webkitdirs;
-
-my @xcodeBuildArguments = XcodeOptions();
-my $nightlyLauncherTemplatePath = "$FindBin::Bin/../WebKitLauncher";
-my $nightlyLauncherStagingPath = productDir() . "/WebKit.app";
-
-sub buildNightlyLauncher
-{
-    chdir($nightlyLauncherTemplatePath);
-    system("xcodebuild", "clean", "-alltargets", @xcodeBuildArguments, @ARGV) == 0 or die "Failed cleaning WebKitLauncher project";
-    system("xcodebuild", @xcodeBuildArguments, @ARGV) == 0 or die "Failed building WebKitLauncher project";
-    chdirWebKit();
-}
-
-sub currentRevision
-{
-    my $sourceDir = sourceDir();
-    if (isSVNDirectory($sourceDir)) {
-        return currentSVNRevision();
-    } elsif (isGitDirectory($sourceDir)) {
-        my $gitLog = `cd $sourceDir && LC_ALL=C git log --grep='git-svn-id: ' -n 1 | grep git-svn-id:`;
-        (my $revision) = ($gitLog =~ m/ +git-svn-id: .+@(\d+) /g);
-        return $revision;
-    }
-}
-
-sub currentBranch
-{
-    my $sourceDir = sourceDir();
-    my ($url, $branch);
-    if (isSVNDirectory($sourceDir)) {
-        my $svnInfo = `LC_ALL=C svn info $sourceDir | grep URL:`;
-        ($url) = ($svnInfo =~ m/URL: (.+)/g);
-    } elsif (isGitDirectory($sourceDir)) {
-        my $gitLog = `cd $sourceDir && LC_ALL=C git log --grep='git-svn-id: ' -n 1 | grep git-svn-id:`;
-        ($url) = ($gitLog =~ m/ +git-svn-id: (.+)@\d+ /g);
-    }
-    ($branch) = ($url =~ m/\/webkit\/(trunk|branches\/[^\/]+)/);
-    die "Unable to determine current SVN branch in $sourceDir" unless (defined $branch);
-    $branch =~ s/^branches\///;
-    return $branch;
-}
-
-sub copyNightlyLauncher
-{
-    my $revision = currentRevision();
-    my $branch = currentBranch();
-
-    my $infoPlist = "$nightlyLauncherStagingPath/Contents/Info.plist";
-    my $versionFile = "$nightlyLauncherStagingPath/Contents/Resources/VERSION";
-    my $branchFile = "$nightlyLauncherStagingPath/Contents/Resources/BRANCH";
-    my $data;
-    open(IN, $infoPlist) or die "Couldn't open Info.plist in built application for reading";
-    {
-        undef $/;
-        $data = <IN>;
-    }
-    close(IN);
-    open(OUT, ">$infoPlist") or die "Couldn't open Info.plist in built application for writing";
-    $data =~ s/VERSION/$revision/g;
-    print OUT $data;
-    close(OUT);
-
-    open(OUT, ">$versionFile") or die "Couldn't open VERSION in built application for writing";
-    print OUT "$revision\n";
-    close(OUT);
-
-    open(OUT, ">$branchFile") or die "Couldn't open BRANCH in built application for writing";
-    print OUT "$branch\n";
-    close(OUT);
-
-    my @frameworks = ("JavaScriptCore", "WebCore", "WebKit");
-    for my $framework (@frameworks) {
-        system("ditto", productDir() . "/$framework.framework", "$nightlyLauncherStagingPath/Contents/Resources/$framework.framework") == 0 or die "Failed copying $framework.framework into $nightlyLauncherStagingPath";
-    }
-}
-
-my $b = currentBranch();
-my $r = currentRevision();
-print "Branch: ", $b, "\n";
-print "Revision: ", $r, "\n";
-
-chdirWebKit();
-buildNightlyLauncher();
-copyNightlyLauncher();
diff --git a/Tools/BuildSlaveSupport/build-launcher-dmg b/Tools/BuildSlaveSupport/build-launcher-dmg
deleted file mode 100755
index 4dce7fb..0000000
--- a/Tools/BuildSlaveSupport/build-launcher-dmg
+++ /dev/null
@@ -1,118 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2006 Apple Computer, Inc.  All rights reserved.
-# Copyright (C) 2006 Mark Rowe <opendarwin.org@bdash.net.nz>.  All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Script used by build slaves to create a disk-image containing WebKit.app.
-
-use strict;
-
-use File::Basename;
-use Getopt::Long;
-use FindBin;
-use lib "$FindBin::Bin/../Scripts";
-use webkitdirs;
-
-my $nightlyLauncherStagingPath = productDir() . "/WebKit.app";
-my $droseraStagingPath = productDir() . "/DroseraLauncher.app";
-my $nightlyLauncherDiskImagePath;
-
-my $nightlyRemoteHost = 'webkit-nightlies@live.nightly.webkit.org';
-my $nightlyRemotePath = "/home/webkit-nightlies";
-my $nightlyRemoteLatestPath = "$nightlyRemotePath/update-latest.sh";
-
-sub buildDiskImage
-{
-    my $revision = currentSVNRevision();
-    my $productDir = productDir();
-    $nightlyLauncherDiskImagePath = productDir() . "/WebKit-SVN-r$revision.dmg";
-    
-    print "Removing previous temp source directory (if any)...\n";
-    `rm -rf /tmp/WebKitNightly`;
-    die "Removing previous temp source directory failed" if $?;
-
-    print "Making a new temp source directory...\n";
-    `mkdir /tmp/WebKitNightly`;
-    die "Making a new temp source directory failed" if $?;
-
-    print "Copying WebKit.app to temp source directory...\n";
-    `cp -R \"$nightlyLauncherStagingPath\" /tmp/WebKitNightly/WebKit.app`;
-    die "Copying WebKit.app to temp source directory failed" if $?;
-
-    print "Copying Drosera.app to temp source directory...\n";
-    `cp -R \"$droseraStagingPath\" /tmp/WebKitNightly/Drosera.app`;
-    die "Copying Drosera.app to temp source directory failed" if $?;
-
-    print "Creating disk image...\n";
-    `hdiutil create \"$nightlyLauncherDiskImagePath\" -ov -srcfolder /tmp/WebKitNightly -fs HFS+ -volname \"WebKit\"`;
-    die "Creating disk image failed" if $?;
-
-    print "Removing temp source directory...\n";
-    `rm -rf /tmp/WebKitNightly`;
-    die "Removing temp source directory failed" if $?;
-
-    print "Compressing disk image...\n";
-    system("mv", "-f", $nightlyLauncherDiskImagePath, "$nightlyLauncherDiskImagePath.uncompressed.dmg") == 0 or die "Renaming disk image failed";
-    system("hdiutil", "convert", "-quiet", "$nightlyLauncherDiskImagePath.uncompressed.dmg", "-format", "UDBZ", "-imagekey", "zlib-level=9", "-o", "$nightlyLauncherDiskImagePath");
-    die "Compressing disk image failed" if $?;
-
-    unlink "$nightlyLauncherDiskImagePath.uncompressed.dmg";
-}
-
-sub uploadNightlyDiskImage
-{
-    my $buildTag = shift(@_);
-    my $nightlyRemoteDiskImagePath = "$nightlyRemotePath/builds/$buildTag/mac/" . basename($nightlyLauncherDiskImagePath);
-    my $revision = currentSVNRevision();
-    system("rsync", "-vP", $nightlyLauncherDiskImagePath, "$nightlyRemoteHost:$nightlyRemoteDiskImagePath") == 0 or die "Failed uploading disk image";
-    system("ssh", $nightlyRemoteHost, $nightlyRemoteLatestPath, $buildTag, "mac", $nightlyRemoteDiskImagePath, $revision) == 0 or die "Failed linking disk image to latest";
-}
-
-sub uploadBuildSlaveDiskImage
-{
-    my $remoteDiskImagePath = shift(@_) . basename($nightlyLauncherDiskImagePath);
-    system("rsync", "-vP", $nightlyLauncherDiskImagePath, $remoteDiskImagePath) == 0 or die "Failed uploading disk image";
-}
-
-
-my $uploadTo;
-my $nightlyBuild = 0;
-my $buildTag = 'trunk';
-GetOptions('upload-to-host=s' => \$uploadTo,
-           'upload-as-nightly!' => \$nightlyBuild,
-           'tag=s' => \$buildTag);
-
-chdirWebKit();
-buildDiskImage($buildTag);
-
-if ($nightlyBuild) {
-    uploadNightlyDiskImage($buildTag);
-} elsif ($uploadTo) {
-    uploadBuildSlaveDiskImage($uploadTo);
-} else {
-    print "Disk image left at $nightlyLauncherDiskImagePath\n";
-}
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/Makefile b/Tools/BuildSlaveSupport/build.webkit.org-config/Makefile
deleted file mode 100644
index bd5e749..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/Makefile
+++ /dev/null
@@ -1,19 +0,0 @@
-# -*- makefile -*-
-
-# This is a simple makefile which lives in a buildmaster/buildslave
-# directory (next to the buildbot.tac file). It allows you to start/stop the
-# master or slave by doing 'make start' or 'make stop'.
-
-# The 'reconfig' target will tell a buildmaster to reload its config file.
-
-start:
-	/opt/local/bin/twistd2.5 --no_save -y buildbot.tac
-
-stop:
-	kill `cat twistd.pid`
-
-reconfig:
-	kill -HUP `cat twistd.pid`
-
-log:
-	tail -f twistd.log
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/README b/Tools/BuildSlaveSupport/build.webkit.org-config/README
deleted file mode 100644
index 3ba8a22..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/README
+++ /dev/null
@@ -1,2 +0,0 @@
-Note: This directory is *not* automatically synchronized with Subversion via a post-commit hook.
-Any changes made to code within this directory will need to be manually pushed to build.webkit.org.
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/buildbot.tac b/Tools/BuildSlaveSupport/build.webkit.org-config/buildbot.tac
deleted file mode 100644
index e5b45a9..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/buildbot.tac
+++ /dev/null
@@ -1,22 +0,0 @@
-
-from twisted.application import service
-from buildbot.master import BuildMaster
-
-basedir = r'/var/buildbot'
-configfile = r'master.cfg'
-rotateLength = 10000000
-maxRotatedFiles = 100
-umask = 022
-
-application = service.Application('buildmaster')
-try:
-  from twisted.python.logfile import LogFile
-  from twisted.python.log import ILogObserver, FileLogObserver
-  logfile = LogFile.fromFullPath("twistd.log", rotateLength=rotateLength,
-                                 maxRotatedFiles=maxRotatedFiles)
-  application.setComponent(ILogObserver, FileLogObserver(logfile).emit)
-except ImportError:
-  # probably not yet twisted 8.2.0 and beyond, can't set log yet
-  pass
-BuildMaster(basedir, configfile).setServiceParent(application)
-
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/committer_auth.py b/Tools/BuildSlaveSupport/build.webkit.org-config/committer_auth.py
deleted file mode 100644
index cf123a2..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/committer_auth.py
+++ /dev/null
@@ -1,115 +0,0 @@
-# Copyright (C) 2011 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer.
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND
-# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR
-# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
-# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
-# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-"""An implementation of buildbot.status.web.auth.IAuth for authenticating WebKit committers"""
-
-import ConfigParser
-import buildbot.status.web.auth
-import json
-import zope.interface
-
-from htdigestparser import HTDigestParser
-
-
-class Error(Exception):
-    pass
-
-
-class CommitterAuth(buildbot.status.web.auth.AuthBase):
-    zope.interface.implements(buildbot.status.web.auth.IAuth)
-
-    def __init__(self, auth_json_filename):
-        self._auth_json_filename = auth_json_filename
-
-    def auth_json(self):
-        try:
-            with self.open_auth_json_file() as f:
-                return json.load(f)
-        except IOError, e:
-            raise Error('Error opening auth.json file: {0}'.format(e.strerror))
-        except ValueError, e:
-            raise Error('Error parsing auth.json file: {0}'.format(e.message))
-
-    def auth_json_filename(self):
-        return self._auth_json_filename
-
-    def authenticate(self, username, password):
-        try:
-            return self.is_webkit_committer(username) and self.is_webkit_trac_user(username, password)
-        except Error, e:
-            self.err = e.message
-            return False
-
-    def is_webkit_committer(self, username):
-        try:
-            if username not in self.webkit_committers():
-                self.err = 'Invalid username/password'
-                return False
-            return True
-        except ConfigParser.Error:
-            raise Error('Error parsing WebKit committers file')
-        except IOError, e:
-            raise Error('Error opening WebKit committers file: {0}'.format(e.strerror))
-
-    def is_webkit_trac_user(self, username, password):
-        try:
-            with self.open_trac_credentials_file() as f:
-                htdigest = HTDigestParser(f)
-        except IOError, e:
-            raise Error('Error opening Trac credentials file: {0}'.format(e.strerror))
-
-        if not htdigest.entries():
-            raise Error('Error parsing Trac credentials file')
-
-        if not htdigest.authenticate(username, 'Mac OS Forge', password):
-            self.err = 'Invalid username/password'
-            return False
-
-        return True
-
-    # These three methods exist for ease of testing.
-    def open_auth_json_file(self):
-        return open(self.auth_json_filename())
-
-    def open_trac_credentials_file(self):
-        return open(self.trac_credentials_filename())
-
-    def open_webkit_committers_file(self):
-        return open(self.webkit_committers_filename())
-
-    def trac_credentials_filename(self):
-        try:
-            return self.auth_json()['trac_credentials']
-        except KeyError:
-            raise Error('auth.json file is missing "trac_credentials" key')
-
-    def webkit_committers(self):
-        config = ConfigParser.RawConfigParser()
-        with self.open_webkit_committers_file() as f:
-            config.readfp(f)
-        return config.get('groups', 'webkit').split(',')
-
-    def webkit_committers_filename(self):
-        try:
-            return self.auth_json()['webkit_committers']
-        except KeyError:
-            raise Error('auth.json file is missing "webkit_committers" key')
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/committer_auth_unittest.py b/Tools/BuildSlaveSupport/build.webkit.org-config/committer_auth_unittest.py
deleted file mode 100755
index f9e169a..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/committer_auth_unittest.py
+++ /dev/null
@@ -1,220 +0,0 @@
-#!/usr/bin/env python
-#
-# Copyright (C) 2011 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer.
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND
-# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR
-# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
-# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
-# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import StringIO
-import __builtin__
-import buildbot.status.web.auth
-import contextlib
-import os
-import unittest
-
-from committer_auth import CommitterAuth
-
-
-# This subclass of StringIO supports the context manager protocol so it works
-# with "with" statements, just like real files.
-class CMStringIO(StringIO.StringIO):
-    def __enter__(self):
-        return self
-
-    def __exit__(self, exception, value, traceback):
-        self.close()
-
-
-@contextlib.contextmanager
-def open_override(func):
-    original_open = __builtin__.open
-    __builtin__.open = func
-    yield
-    __builtin__.open = original_open
-
-
-class CommitterAuthTest(unittest.TestCase):
-    def setUp(self):
-        self.auth = CommitterAuth('path/to/auth.json')
-        self.auth.open_auth_json_file = self.fake_auth_json_file
-        self.auth.open_webkit_committers_file = self.fake_committers_file
-        self.auth.open_trac_credentials_file = self.fake_htdigest_file
-
-    def fake_open_function(self, expected_filename):
-        def fake_open(name, mode='r'):
-            self.fake_open_was_called = True
-            self.assertEqual(expected_filename, name)
-        return fake_open
-
-    def test_authentication_success(self):
-        self.assertTrue(self.auth.authenticate('committer@webkit.org', 'committerpassword'))
-        self.assertEqual('', self.auth.errmsg())
-        self.assertTrue(self.auth.authenticate('committer2@example.com', 'committer2password'))
-        self.assertEqual('', self.auth.errmsg())
-
-    def test_committer_without_trac_credentials_fails(self):
-        self.assertFalse(self.auth.authenticate('committer3@webkit.org', 'committer3password'))
-        self.assertEqual('Invalid username/password', self.auth.errmsg())
-
-    def test_fail_to_open_auth_json_file(self):
-        def raise_IOError():
-            raise IOError(2, 'No such file or directory', 'path/to/auth.json')
-        auth = CommitterAuth('path/to/auth.json')
-        auth.open_auth_json_file = raise_IOError
-        self.assertFalse(auth.authenticate('committer@webkit.org', 'committerpassword'))
-        self.assertEqual('Error opening auth.json file: No such file or directory', auth.errmsg())
-
-    def test_fail_to_open_trac_credentials_file(self):
-        def raise_IOError():
-            raise IOError(2, 'No such file or directory', 'path/to/trac/credentials')
-        self.auth.open_trac_credentials_file = raise_IOError
-        self.assertFalse(self.auth.authenticate('committer@webkit.org', 'committerpassword'))
-        self.assertEqual('Error opening Trac credentials file: No such file or directory', self.auth.errmsg())
-
-    def test_fail_to_open_webkit_committers_file(self):
-        def raise_IOError():
-            raise IOError(2, 'No such file or directory', 'path/to/webkit/committers')
-        self.auth.open_webkit_committers_file = raise_IOError
-        self.assertFalse(self.auth.authenticate('committer@webkit.org', 'committerpassword'))
-        self.assertEqual('Error opening WebKit committers file: No such file or directory', self.auth.errmsg())
-
-    def test_implements_IAuth(self):
-        self.assertTrue(buildbot.status.web.auth.IAuth.implementedBy(CommitterAuth))
-
-    def test_invalid_auth_json_file(self):
-        auth = CommitterAuth('path/to/auth.json')
-        auth.open_auth_json_file = self.invalid_auth_json_file
-        self.assertFalse(auth.authenticate('committer@webkit.org', 'committerpassword'))
-        self.assertEqual('Error parsing auth.json file: No JSON object could be decoded', auth.errmsg())
-
-    def test_invalid_committers_file(self):
-        self.auth.open_webkit_committers_file = self.invalid_committers_file
-        self.assertFalse(self.auth.authenticate('committer@webkit.org', 'committerpassword'))
-        self.assertEqual('Error parsing WebKit committers file', self.auth.errmsg())
-
-    def test_invalid_trac_credentials_file(self):
-        self.auth.open_trac_credentials_file = self.invalid_htdigest_file
-        self.assertFalse(self.auth.authenticate('committer@webkit.org', 'committerpassword'))
-        self.assertEqual('Error parsing Trac credentials file', self.auth.errmsg())
-
-    def test_missing_auth_json_keys(self):
-        auth = CommitterAuth('path/to/auth.json')
-        auth.open_auth_json_file = lambda: CMStringIO('{ "trac_credentials": "path/to/trac/credentials" }')
-        self.assertFalse(auth.authenticate('committer@webkit.org', 'committerpassword'))
-        self.assertEqual('auth.json file is missing "webkit_committers" key', auth.errmsg())
-
-        auth.open_auth_json_file = lambda: CMStringIO('{ "webkit_committers": "path/to/webkit/committers" }')
-        auth.open_webkit_committers_file = self.fake_committers_file
-        self.assertFalse(auth.authenticate('committer@webkit.org', 'committerpassword'))
-        self.assertEqual('auth.json file is missing "trac_credentials" key', auth.errmsg())
-
-    def test_open_auth_json_file(self):
-        auth = CommitterAuth('path/to/auth.json')
-        self.fake_open_was_called = False
-        with open_override(self.fake_open_function(auth.auth_json_filename())):
-            auth.open_auth_json_file()
-        self.assertTrue(self.fake_open_was_called)
-
-    def test_open_trac_credentials_file(self):
-        auth = CommitterAuth('path/to/auth.json')
-        auth.trac_credentials_filename = lambda: 'trac credentials filename'
-        self.fake_open_was_called = False
-        with open_override(self.fake_open_function(auth.trac_credentials_filename())):
-            auth.open_trac_credentials_file()
-        self.assertTrue(self.fake_open_was_called)
-
-    def test_open_webkit_committers_file(self):
-        auth = CommitterAuth('path/to/auth.json')
-        auth.webkit_committers_filename = lambda: 'webkit committers filename'
-        self.fake_open_was_called = False
-        with open_override(self.fake_open_function(auth.webkit_committers_filename())):
-            auth.open_webkit_committers_file()
-        self.assertTrue(self.fake_open_was_called)
-
-    def test_non_committer_fails(self):
-        self.assertFalse(self.auth.authenticate('noncommitter@example.com', 'noncommitterpassword'))
-        self.assertEqual('Invalid username/password', self.auth.errmsg())
-
-    def test_trac_credentials_filename(self):
-        self.assertEqual('path/to/trac/credentials', self.auth.trac_credentials_filename())
-
-    def test_unknown_user_fails(self):
-        self.assertFalse(self.auth.authenticate('nobody@example.com', 'nobodypassword'))
-        self.assertEqual('Invalid username/password', self.auth.errmsg())
-
-    def test_username_is_prefix_of_valid_user(self):
-        self.assertFalse(self.auth.authenticate('committer@webkit.orgg', 'committerpassword'))
-        self.assertEqual('Invalid username/password', self.auth.errmsg())
-
-    def test_webkit_committers(self):
-        self.assertEqual(['committer@webkit.org', 'committer2@example.com', 'committer3@webkit.org'], self.auth.webkit_committers())
-
-    def test_webkit_committers_filename(self):
-        self.assertEqual('path/to/webkit/committers', self.auth.webkit_committers_filename())
-
-    def test_wrong_password_fails(self):
-        self.assertFalse(self.auth.authenticate('committer@webkit.org', 'wrongpassword'))
-        self.assertEqual('Invalid username/password', self.auth.errmsg())
-
-    def fake_auth_json_file(self):
-        return CMStringIO("""{
-    "trac_credentials": "path/to/trac/credentials",
-    "webkit_committers": "path/to/webkit/committers"
-}""")
-
-    def invalid_auth_json_file(self):
-        return CMStringIO('~!@#$%^&*()_+')
-
-    def fake_committers_file(self):
-        return CMStringIO("""[groups]
-group1 = user@example.com,user2@example.com
-group2 = user3@example.com
-
-group3 =
-group4 =
-
-webkit = committer@webkit.org,committer2@example.com,committer3@webkit.org
-
-[service:/]
-*    = r
-""")
-
-    def invalid_committers_file(self):
-        return CMStringIO("""[groups]
-
-[[groups2]
-""")
-
-    def fake_htdigest_file(self):
-        return CMStringIO("""committer@webkit.org:Mac OS Forge:761c8dcb7d9b5908007ed142f62fe73a
-committer2@example.com:Mac OS Forge:faeee69acc2e49af3a0dbb15bd593ef4
-noncommitter@example.com:Mac OS Forge:b99aa7ad32306a654ca4d57839fde9c1
-""")
-
-    def invalid_htdigest_file(self):
-        return CMStringIO("""committer@webkit.org:Mac OS Forge:761c8dcb7d9b5908007ed142f62fe73a
-committer2@example.com:Mac OS Forge:faeee69acc2e49af3a0dbb15bd593ef4
-noncommitter@example.com:Mac OS Forge:b99aa7ad32306a654ca4d57839fde9c1
-committer4@example.com:Mac OS Forge:::
-""")
-
-
-if __name__ == '__main__':
-    unittest.main()
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/config.json b/Tools/BuildSlaveSupport/build.webkit.org-config/config.json
deleted file mode 100644
index 98bf4b2..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/config.json
+++ /dev/null
@@ -1,443 +0,0 @@
-{
-    "slaves":     [ { "name": "test-slave", "platform": "*" },
-
-                  
-                    { "name": "apple-macpro-3", "platform": "mac-lion" },
-                    { "name": "apple-macpro-4", "platform": "mac-lion" },
-                    { "name": "apple-macpro-5", "platform": "mac-lion" },	
-                    { "name": "apple-macpro-6", "platform": "mac-lion" },
-                    { "name": "apple-macpro-8", "platform": "mac-lion" },	
-                    { "name": "apple-xserve-2", "platform": "mac-lion" },
-                    { "name": "apple-xserve-3", "platform": "mac-lion" },
-                    { "name": "apple-xserve-10", "platform": "mac-lion" },
-                    { "name": "apple-xserve-11", "platform": "mac-lion" },
-
-                    { "name": "apple-mini-201", "platform": "mac-mountainlion"},
-                    { "name": "apple-mini-202", "platform": "mac-mountainlion"},
-                    { "name": "apple-mini-203", "platform": "mac-mountainlion"},
-                    { "name": "apple-mini-204", "platform": "mac-mountainlion"},
-                    { "name": "apple-mini-205", "platform": "mac-mountainlion"},
-                    { "name": "apple-mini-206", "platform": "mac-mountainlion"},
-                    { "name": "apple-mini-207", "platform": "mac-mountainlion"},
-                    { "name": "apple-mini-208", "platform": "mac-mountainlion"},
-                    { "name": "apple-mini-209", "platform": "mac-mountainlion"},
-                    { "name": "apple-mini-210", "platform": "mac-mountainlion"},
-                    
-                    { "name": "apple-windows-1", "platform": "win"},
-                    { "name": "apple-windows-2", "platform": "win"},
-                    { "name": "apple-windows-3", "platform": "win"},
-                    { "name": "apple-windows-4", "platform": "win"},
-                    { "name": "apple-windows-5", "platform": "win"},
-                    { "name": "apple-windows-6", "platform": "win"},
-
-                    { "name": "gtk-linux-slave-1", "platform": "gtk"},
-                    { "name": "gtk-linux-slave-2", "platform": "gtk"},
-                    { "name": "gtk-linux-slave-3", "platform": "gtk"},
-                    { "name": "gtk-linux-slave-4", "platform": "gtk"},
-
-                    { "name": "szeged-linux-1", "platform": "qt-4.8"},
-                    { "name": "szeged-linux-2", "platform": "qt-4.8"},
-                    { "name": "szeged-linux-3", "platform": "qt-5.0-wk1"},
-                    { "name": "szeged-linux-4", "platform": "qt-arm"},
-                    { "name": "szeged-linux-5", "platform": "qt-5.0-wk2"},
-
-                    { "name": "szeged-windows-1", "platform": "qt-win"},
-                    { "name": "szeged-windows-2", "platform": "qt-win"},
-
-                    { "name": "indt-mountainlion", "platform": "qt-mac"},
-
-                    { "name": "google-windows-1", "platform": "chromium-win" },
-                    { "name": "google-windows-2", "platform": "chromium-win" },
-                    { "name": "google-windows-3", "platform": "chromium-win" },
-                    { "name": "google-windows-4", "platform": "chromium-win" },
-                    { "name": "google-windows-perf", "platform": "chromium-win" },
-                    { "name": "google-mac-1", "platform": "chromium-mac" },
-                    { "name": "google-mac-2", "platform": "chromium-mac" },
-                    { "name": "google-mac-3", "platform": "chromium-mac" },
-                    { "name": "google-mac-4", "platform": "chromium-mac" },
-                    { "name": "google-mac-perf", "platform": "chromium-mac" },
-                    { "name": "google-linux-1", "platform": "chromium-linux" },
-                    { "name": "google-linux-2", "platform": "chromium-linux" },
-                    { "name": "google-linux-perf", "platform": "chromium-linux" },
-                    { "name": "google-linux-android", "platform": "chromium-android" },
-                    { "name": "google-android-tests", "platform": "chromium-android" },
-                    { "name": "google-android-perf", "platform": "chromium-android" },
-
-                    { "name": "wincairo-1", "platform": "wincairo" },
-
-                    { "name": "wince-1", "platform": "wince" },
-                    
-                    { "name": "efl-linux-slave-1", "platform": "efl" },
-                    { "name": "efl-linux-slave-2", "platform": "efl" },
-                    { "name": "efl-linux-slave-3", "platform": "efl" },
-                    { "name": "efl-linux-slave-4", "platform": "efl" },
-                    { "name": "efl-linux-perf-1", "platform": "efl" },
-
-                    { "name": "mips-1", "platform": "qt-mipsel"},
-
-                    { "name": "sh4-linux-1", "platform": "qt-sh4"}
-                  ],
-
-    "builders":   [ { "name": "Apple Lion (Leaks)", "type": "TestLeaks", "builddir": "lion-leaks",
-                      "platform": "mac-lion", "configuration": "debug", "architectures": ["x86_64"],
-                      "slavenames": ["apple-macpro-3"]
-                    },
-                    { "name": "Apple Lion Debug (Build)", "type": "Build", "builddir": "lion-debug",
-                      "platform": "mac-lion", "configuration": "debug", "architectures": ["x86_64"],
-                      "triggers": ["lion-debug-tests-wk1", "lion-debug-tests-wk2", "lion-leaks"],
-                      "slavenames": ["apple-xserve-2", "apple-xserve-10"]
-                    },
-                    { "name": "Apple Lion Release (Build)", "type": "Build", "builddir": "lion-release",
-                      "platform": "mac-lion", "configuration": "release", "architectures": ["x86_64"],
-                      "triggers": ["lion-release-tests-wk1", "lion-release-tests-wk2", "lion-release-perf"],
-                      "slavenames": ["apple-xserve-3"]
-                    },
-                    { "name": "Apple Lion Debug WK1 (Tests)", "type": "Test", "builddir": "lion-debug-tests-wk1",
-                      "platform": "mac-lion", "configuration": "debug", "architectures": ["x86_64"],
-                      "slavenames": ["apple-macpro-4"]
-                    },
-                    { "name": "Apple Lion Debug WK2 (Tests)", "type": "TestWebKit2", "builddir": "lion-debug-tests-wk2",
-                      "platform": "mac-lion", "configuration": "debug", "architectures": ["x86_64"],
-                      "slavenames": ["apple-macpro-8"]
-                    },
-                    { "name": "Apple Lion Release WK1 (Tests)", "type": "Test", "builddir": "lion-release-tests-wk1",
-                      "platform": "mac-lion", "configuration": "release", "architectures": ["x86_64"],
-                      "slavenames": ["apple-macpro-5"]
-                    },
-                    { "name": "Apple Lion Release WK2 (Tests)", "type": "TestWebKit2", "builddir": "lion-release-tests-wk2",
-                      "platform": "mac-lion", "configuration": "release", "architectures": ["x86_64"],
-                      "slavenames": ["apple-macpro-6"]
-                    },
-                    {
-                      "name": "Apple Lion Release (Perf)", "type": "DownloadAndPerfTest", "builddir": "lion-release-perf-tests",
-                      "platform": "mac-lion", "configuration": "release", "architectures": ["x86_64"],
-                      "slavenames": ["apple-xserve-11"]
-                    },
-                    { "name": "Apple MountainLion (Leaks)", "type": "TestLeaks", "builddir": "mountainlion-leaks",
-                      "platform": "mac-mountainlion", "configuration": "debug", "architectures": ["x86_64"],
-                      "slavenames": ["apple-mini-201"]
-                    },
-                    { "name": "Apple MountainLion Debug (Build)", "type": "Build", "builddir": "mountainlion-debug",
-                      "platform": "mac-mountainlion", "configuration": "debug", "architectures": ["x86_64"],
-                      "triggers": ["mountainlion-debug-tests-wk1", "mountainlion-debug-tests-wk2", "mountainlion-leaks"],
-                      "slavenames": ["apple-mini-202", "apple-mini-203"]
-                    },
-                    { "name": "Apple MountainLion Release (Build)", "type": "Build", "builddir": "mountainlion-release",
-                      "platform": "mac-mountainlion", "configuration": "release", "architectures": ["x86_64"],
-                      "triggers": ["mountainlion-release-tests-wk1", "mountainlion-release-tests-wk2", "mountainlion-release-perf"],
-                      "slavenames": ["apple-mini-204"]
-                    },
-                    { "name": "Apple MountainLion Debug WK1 (Tests)", "type": "Test", "builddir": "mountainlion-debug-tests-wk1",
-                      "platform": "mac-mountainlion", "configuration": "debug", "architectures": ["x86_64"],
-                      "slavenames": ["apple-mini-205"]
-                    },
-                    { "name": "Apple MountainLion Debug WK2 (Tests)", "type": "TestWebKit2", "builddir": "mountainlion-debug-tests-wk2",
-                      "platform": "mac-mountainlion", "configuration": "debug", "architectures": ["x86_64"],
-                      "slavenames": ["apple-mini-206", "apple-mini-207"]
-                    },
-                    { "name": "Apple MountainLion Release WK1 (Tests)", "type": "Test", "builddir": "mountainlion-release-tests-wk1",
-                      "platform": "mac-mountainlion", "configuration": "release", "architectures": ["x86_64"],
-                      "slavenames": ["apple-mini-208"]
-                    },
-                    { "name": "Apple MountainLion Release WK2 (Tests)", "type": "TestWebKit2", "builddir": "mountainlion-release-tests-wk2",
-                      "platform": "mac-mountainlion", "configuration": "release", "architectures": ["x86_64"],
-                      "slavenames": ["apple-mini-209"]
-                    },
-                    {
-                      "name": "Apple MountainLion Release (Perf)", "type": "DownloadAndPerfTest", "builddir": "mountainlion-release-perf-tests",
-                      "platform": "mac-mountainlion", "configuration": "release", "architectures": ["x86_64"],
-                      "slavenames": ["apple-mini-210"]
-                    },
-                    {
-                      "name": "Apple Win Release (Build)", "type": "Build", "builddir": "win-release",
-                      "platform": "win", "configuration": "release", "architectures": ["i386"],
-                      "triggers": ["win-release-tests"],
-                      "slavenames": ["apple-windows-2"]
-                    },
-                    {
-                      "name": "Apple Win 7 Release (Tests)", "type": "Test", "builddir": "win-release-tests",
-                      "platform": "win", "configuration": "release", "architectures": ["i386"],
-                      "slavenames": ["apple-windows-5", "apple-windows-6"]
-                    },
-                    {
-                      "name": "Apple Win Debug (Build)", "type": "Build", "builddir": "win-debug",
-                      "platform": "win", "configuration": "debug", "architectures": ["i386"],
-                      "triggers": ["win-debug-tests"],
-                      "slavenames": ["apple-windows-1"]
-                    },
-                    {
-                      "name": "Apple Win 7 Debug (Tests)", "type": "Test", "builddir": "win-debug-tests",
-                      "platform": "win", "configuration": "debug", "architectures": ["i386"],
-                      "slavenames": ["apple-windows-3", "apple-windows-4"]
-                    },
-                    {
-                      "name": "GTK Linux 32-bit Release", "type": "BuildAndTest", "builddir": "gtk-linux-32-release",
-                      "platform": "gtk", "configuration": "release", "architectures": ["i386"],
-                      "slavenames": ["gtk-linux-slave-1"]
-                    },
-                    {
-                      "name": "GTK Linux 64-bit Release", "type": "BuildAndTest", "builddir": "gtk-linux-64-release",
-                      "platform": "gtk", "configuration": "release", "architectures": ["x86_64"],
-                      "triggers": ["gtk-linux-64-release-tests-wk2"],
-                      "slavenames": ["gtk-linux-slave-2"]
-                    },
-                    {
-                      "name": "GTK Linux 64-bit Debug WK1", "type": "BuildAndTestWebKit1Only", "builddir": "gtk-linux-64-debug-wk1",
-                      "platform": "gtk", "configuration": "debug", "architectures": ["x86_64"],
-                      "slavenames": ["gtk-linux-slave-3"]
-                    },
-                    {
-                      "name": "GTK Linux 64-bit Release WK2 (Tests)", "type": "TestWebKit2", "builddir": "gtk-linux-64-release-tests-wk2",
-                      "platform": "gtk", "configuration": "release", "architectures": ["x86_64"],
-                      "slavenames": ["gtk-linux-slave-4"]
-                    },
-                    {
-                      "name": "Qt Linux Release", "type": "BuildAndTest", "builddir": "qt-linux-release",
-                      "platform": "qt-4.8", "configuration": "release", "architectures": ["i386"],
-                      "SVNMirror": "svn://webkit.inf.u-szeged.hu/webkit/",
-                      "slavenames": ["szeged-linux-1"]
-                    },
-                    {
-                      "name": "Qt Linux Release minimal", "type": "Build", "builddir": "qt-linux-release-minimal",
-                      "SVNMirror": "svn://webkit.inf.u-szeged.hu/webkit/",
-                      "platform": "qt-4.8", "configuration": "release", "architectures": ["i386"],
-                      "slavenames": ["szeged-linux-2"]
-                    },
-                    {
-                      "name": "Qt Linux 64-bit Release (Perf)", "type": "BuildAndPerfTest", "builddir": "qt-linux-64-release-perf-tests",
-                      "SVNMirror": "svn://webkit.inf.u-szeged.hu/webkit/",
-                      "platform": "qt-5.0-wk1", "configuration": "release", "architectures": ["x86_64"],
-                      "slavenames": ["szeged-linux-3"]
-                    },
-                    {
-                      "name": "Qt Linux 64-bit Release (WebKit2 Perf)", "type": "BuildAndPerfTestWebKit2", "builddir": "qt-linux-64-release-wk2-perf-tests",
-                      "SVNMirror": "svn://webkit.inf.u-szeged.hu/webkit/",
-                      "platform": "qt-5.0-wk2", "configuration": "release", "architectures": ["x86_64"],
-                      "slavenames": ["szeged-linux-5"]
-                    },
-                    {
-                      "name": "Qt Linux ARMv7 Release", "type": "Build", "builddir": "qt-linux-armv7-release",
-                      "SVNMirror": "svn://webkit.inf.u-szeged.hu/webkit:3389/",
-                      "platform": "qt-arm", "configuration": "release", "architectures": ["armv7"],
-                      "slavenames": ["szeged-linux-4"]
-                    },
-                    {
-                      "name": "Qt Linux MIPS32R2 LE Release", "type": "Build", "builddir": "qt-linux-mipsel-mips32r2-release",
-                      "platform": "qt-mipsel", "configuration": "release", "architectures": ["mipsel"],
-                      "slavenames": ["mips-1"]
-                    },
-                    {
-                      "name": "Qt Linux SH4 Release", "type": "Build", "builddir": "qt-linux-sh4-release",
-                      "platform": "qt-sh4", "configuration": "release", "architectures": ["sh4"],
-                      "slavenames": ["sh4-linux-1"]
-                    },
-                    {
-                      "name": "Qt Windows 32-bit Release", "type": "Build", "builddir": "qt-windows-32bit-release",
-                      "SVNMirror": "svn://webkit.inf.u-szeged.hu/webkit/",
-                      "platform": "qt-win", "configuration": "release", "architectures": ["i386"],
-                      "slavenames": ["szeged-windows-1"]
-                    },
-                    {
-                      "name": "Qt Windows 32-bit Debug", "type": "Build", "builddir": "qt-windows-32bit-debug",
-                      "SVNMirror": "svn://webkit.inf.u-szeged.hu/webkit/",
-                      "platform": "qt-win", "configuration": "debug", "architectures": ["i386"],
-                      "slavenames": ["szeged-windows-2"]
-                    },
-                    {
-                      "name": "Qt Mountain Lion Release", "type": "Build", "builddir": "qt-mountainlion-release",
-                      "platform": "qt-mac", "configuration": "release", "architectures": ["x86_64"],
-                      "slavenames": ["indt-mountainlion"]
-                    },
-                    {
-                      "name": "Chromium Win Release", "type": "Build", "builddir": "chromium-win-release",
-                      "platform": "chromium-win", "configuration": "release", "architectures": ["i386"],
-                      "triggers": ["chromium-win-release-tests", "chromium-win-perf-tests"],
-                      "slavenames": ["google-windows-1", "google-windows-3"]
-                    },
-                    {
-                      "name": "Chromium Win Release (Tests)", "type": "Test", "builddir": "chromium-win-release-tests",
-                      "platform": "chromium-win", "configuration": "release", "architectures": ["i386"],
-                      "slavenames": ["google-windows-2", "google-windows-4"]
-                    },
-                    {
-                      "name": "Chromium Win Release (Perf)", "type": "DownloadAndPerfTest", "builddir": "chromium-win-perf-tests",
-                      "platform": "chromium-win", "configuration": "release", "architectures": ["i386"],
-                      "slavenames": ["google-windows-perf"]
-                    },
-                    {
-                      "name": "Chromium Mac Release", "type": "Build", "builddir": "chromium-mac-release",
-                      "platform": "chromium-mac", "configuration": "release", "architectures": ["i386"],
-                      "triggers": ["chromium-mac-release-tests", "chromium-mac-perf-tests"],
-                      "slavenames": ["google-mac-1", "google-mac-3"]
-                    },
-                    {
-                      "name": "Chromium Mac Release (Tests)", "type": "Test", "builddir": "chromium-mac-release-tests",
-                      "platform": "chromium-mac", "configuration": "release", "architectures": ["i386"],
-                      "slavenames": ["google-mac-2", "google-mac-4"]
-                    },
-                    {
-                      "name": "Chromium Mac Release (Perf)", "type": "DownloadAndPerfTest", "builddir": "chromium-mac-perf-tests",
-                      "platform": "chromium-mac", "configuration": "release", "architectures": ["i386"],
-                      "slavenames": ["google-mac-perf"]
-                    },
-                    {
-                      "name": "Chromium Linux Release", "type": "Build", "builddir": "chromium-linux-release",
-                      "platform": "chromium-linux", "configuration": "release", "architectures": ["i386"],
-                      "triggers": ["chromium-linux-release-tests", "chromium-linux-perf-tests"],
-                      "slavenames": ["google-linux-1"]
-                    },
-                    {
-                      "name": "Chromium Linux Release (Tests)", "type": "Test", "builddir": "chromium-linux-release-tests",
-                      "platform": "chromium-linux", "configuration": "release", "architectures": ["i386"],
-                      "slavenames": ["google-linux-2"]
-                    },
-                    {
-                      "name": "Chromium Linux Release (Perf)", "type": "DownloadAndPerfTest", "builddir": "chromium-linux-perf-tests",
-                      "platform": "chromium-linux", "configuration": "release", "architectures": ["i386"],
-                      "slavenames": ["google-linux-perf"]
-                    },
-                    {
-                      "name": "Chromium Android Release", "type": "Build", "builddir": "chromium-linux-android",
-                      "platform": "chromium-android", "configuration": "release", "architectures": ["i386"],
-                      "triggers": ["chromium-android-release-tests", "chromium-android-release-perf"],
-                      "slavenames": ["google-linux-android"]
-                    },
-                    {
-                      "name": "Chromium Android Release (Tests)", "type": "Test", "builddir": "chromium-android-release-tests",
-                      "platform": "chromium-android", "configuration": "release", "architectures": ["i386"],
-                      "slavenames": ["google-android-tests"]
-                    },
-                    {
-                      "name": "Chromium Android Release (Perf)", "type": "DownloadAndPerfTest", "builddir": "chromium-android-release-perf",
-                      "platform": "chromium-android", "configuration": "release", "architectures": ["i386"],
-                      "slavenames": ["google-android-perf"]
-                    },
-                    {
-                      "name": "WinCairo Release", "type": "BuildAndTest", "builddir": "win-cairo-release",
-                      "platform": "wincairo", "configuration": "release", "architectures": ["i386"],
-                      "slavenames": ["wincairo-1"]
-                    },
-                    {
-                      "name": "WinCE Release (Build)", "type": "Build", "builddir": "wince-release",
-                      "platform": "wince", "configuration": "release", "architectures": ["i386"],
-                      "slavenames": ["wince-1"]
-                    },
-                    {
-                      "name": "EFL Linux 64-bit Release", "type": "BuildAndTest", "builddir": "efl-linux-64-release",
-                      "platform": "efl", "configuration": "release", "architectures": ["x86_64"],
-                      "slavenames": ["efl-linux-slave-1"]
-                    },
-                    {
-                      "name": "EFL Linux 64-bit Release WK2", "type": "BuildAndTestWebKit2Only", "builddir": "efl-linux-64-release-wk2",
-                      "platform": "efl", "configuration": "release", "architectures": ["x86_64"],
-                      "slavenames": ["efl-linux-slave-2"]
-                    },
-                    {
-                      "name": "EFL Linux 64-bit Debug WK2", "type": "BuildAndTestWebKit2Only", "builddir": "efl-linux-64-debug-wk2",
-                      "platform": "efl", "configuration": "debug", "architectures": ["x86_64"],
-                      "slavenames": ["efl-linux-slave-4"]
-                    },
-                    {
-                      "name": "EFL Linux 32-bit Release (Build)", "type": "Build", "builddir": "efl-linux-32-release",
-                      "platform": "efl", "configuration": "release", "architectures": ["i386"],
-                      "slavenames": ["efl-linux-slave-3"]
-                    },
-                    {
-                      "name": "EFL Linux 64-bit Release WK2 (Perf)", "type": "BuildAndPerfTestWebKit2", "builddir": "efl-linux-64-release-wk2-perf",
-                      "platform": "efl", "configuration": "release", "architectures": ["x86_64"],
-                      "slavenames": ["efl-linux-perf-1"]
-                    }
-                  ],
-
-    "schedulers": [ { "type": "AnyBranchScheduler", "name": "trunk", "change_filter": "trunk_filter", "treeStableTimer": 45.0,
-                      "builderNames": ["GTK Linux 32-bit Release", "GTK Linux 64-bit Release", "GTK Linux 64-bit Debug WK1",
-                                       "Qt Linux Release", "Qt Linux Release minimal", "Qt Linux 64-bit Release (Perf)",
-                                       "Qt Linux 64-bit Release (WebKit2 Perf)", "Qt Linux ARMv7 Release", "Qt Linux MIPS32R2 LE Release",
-                                       "Qt Linux SH4 Release",
-                                       "Qt Windows 32-bit Release", "Qt Windows 32-bit Debug", "Qt Mountain Lion Release",
-                                       "Chromium Win Release", "Chromium Mac Release", "Chromium Linux Release",
-                                       "Chromium Android Release",
-                                       "EFL Linux 64-bit Release", "EFL Linux 64-bit Release WK2", "EFL Linux 32-bit Release (Build)", "EFL Linux 64-bit Debug WK2",
-                                       "EFL Linux 64-bit Release WK2 (Perf)",
-                                       "WinCairo Release", "WinCE Release (Build)"]
-                    },
-                    { "type": "PlatformSpecificScheduler", "platform": "mac-lion", "branch": "trunk", "treeStableTimer": 45.0,
-                      "builderNames": ["Apple Lion Release (Build)", "Apple Lion Debug (Build)", "Apple Lion (Leaks)"]
-                    },
-                    { "type": "PlatformSpecificScheduler", "platform": "mac-mountainlion", "branch": "trunk", "treeStableTimer": 45.0,
-                      "builderNames": ["Apple MountainLion Release (Build)", "Apple MountainLion Debug (Build)", "Apple MountainLion (Leaks)"]
-                    },
-                    { "type": "PlatformSpecificScheduler", "platform": "win", "branch": "trunk", "treeStableTimer": 45.0,
-                      "builderNames": ["Apple Win Release (Build)", "Apple Win Debug (Build)"]
-                    },
-                    { "type": "Triggerable", "name": "lion-release-tests-wk1",
-                      "builderNames": ["Apple Lion Release WK1 (Tests)"]
-                    },
-                    { "type": "Triggerable", "name": "lion-release-tests-wk2",
-                      "builderNames": ["Apple Lion Release WK2 (Tests)"]
-                    },
-                    { "type": "Triggerable", "name": "lion-release-perf",
-                      "builderNames": ["Apple Lion Release (Perf)"]
-                    },
-                    { "type": "Triggerable", "name": "lion-debug-tests-wk1",
-                      "builderNames": ["Apple Lion Debug WK1 (Tests)"]
-                    },
-                    { "type": "Triggerable", "name": "lion-debug-tests-wk2",
-                      "builderNames": ["Apple Lion Debug WK2 (Tests)"]
-                    },
-                    { "type": "Triggerable", "name": "lion-leaks",
-                      "builderNames": ["Apple Lion (Leaks)"]
-                    },
-                    { "type": "Triggerable", "name": "mountainlion-release-tests-wk1",
-                      "builderNames": ["Apple MountainLion Release WK1 (Tests)"]
-                    },
-                    { "type": "Triggerable", "name": "mountainlion-release-tests-wk2",
-                      "builderNames": ["Apple MountainLion Release WK2 (Tests)"]
-                    },
-                    { "type": "Triggerable", "name": "mountainlion-release-perf",
-                      "builderNames": ["Apple MountainLion Release (Perf)"]
-                    },
-                    { "type": "Triggerable", "name": "mountainlion-debug-tests-wk1",
-                      "builderNames": ["Apple MountainLion Debug WK1 (Tests)"]
-                    },
-                    { "type": "Triggerable", "name": "mountainlion-debug-tests-wk2",
-                      "builderNames": ["Apple MountainLion Debug WK2 (Tests)"]
-                    },
-                    { "type": "Triggerable", "name": "mountainlion-leaks",
-                      "builderNames": ["Apple MountainLion (Leaks)"]
-                    },
-                    { "type": "Triggerable", "name": "win-release-tests",
-                      "builderNames": ["Apple Win 7 Release (Tests)"]
-                    },
-                    { "type": "Triggerable", "name": "win-debug-tests",
-                      "builderNames": ["Apple Win 7 Debug (Tests)"]
-                    },
-                    { "type": "Triggerable", "name": "chromium-win-release-tests",
-                      "builderNames": ["Chromium Win Release (Tests)"]
-                    },
-                    { "type": "Triggerable", "name": "chromium-win-perf-tests",
-                      "builderNames": ["Chromium Win Release (Perf)"]
-                    },
-                    { "type": "Triggerable", "name": "chromium-mac-release-tests",
-                      "builderNames": ["Chromium Mac Release (Tests)"]
-                    },
-                    { "type": "Triggerable", "name": "chromium-mac-perf-tests",
-                      "builderNames": ["Chromium Mac Release (Perf)"]
-                    },
-                    { "type": "Triggerable", "name": "chromium-linux-release-tests",
-                      "builderNames": ["Chromium Linux Release (Tests)"]
-                    },
-                    { "type": "Triggerable", "name": "chromium-linux-perf-tests",
-                      "builderNames": ["Chromium Linux Release (Perf)"]
-                    },
-                    { "type": "Triggerable", "name": "chromium-android-release-tests",
-                      "builderNames": ["Chromium Android Release (Tests)"]
-                    },
-                    { "type": "Triggerable", "name": "chromium-android-release-perf",
-                      "builderNames": ["Chromium Android Release (Perf)"]
-                    },
-                    { "type": "Triggerable", "name": "gtk-linux-64-release-tests-wk2",
-                      "builderNames": ["GTK Linux 64-bit Release WK2 (Tests)"]
-                    }
-                  ]
-}
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/htdigestparser.py b/Tools/BuildSlaveSupport/build.webkit.org-config/htdigestparser.py
deleted file mode 100644
index ee7d540..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/htdigestparser.py
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright (C) 2011 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer.
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND
-# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR
-# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
-# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
-# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-"""htdigestparser - a parser for htdigest files"""
-
-import hashlib
-import string
-
-
-class HTDigestParser(object):
-    def __init__(self, digest_file):
-        self._entries = self.parse_file(digest_file)
-
-    def authenticate(self, username, realm, password):
-        hashed_password = hashlib.md5(':'.join((username, realm, password))).hexdigest()
-        return [username, realm, hashed_password] in self.entries()
-
-    def entries(self):
-        return self._entries
-
-    def parse_file(self, digest_file):
-        entries = [line.rstrip().split(':') for line in digest_file]
-
-        # Perform some sanity-checking to ensure the file is valid.
-        valid_characters = set(string.hexdigits)
-        for entry in entries:
-            if len(entry) != 3:
-                return []
-            hashed_password = entry[-1]
-            if len(hashed_password) != 32:
-                return []
-            if not set(hashed_password).issubset(valid_characters):
-                return []
-
-        return entries
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/htdigestparser_unittest.py b/Tools/BuildSlaveSupport/build.webkit.org-config/htdigestparser_unittest.py
deleted file mode 100644
index c689273..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/htdigestparser_unittest.py
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright (C) 2011 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer.
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND
-# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR
-# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
-# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
-# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import StringIO
-import os
-import unittest2 as unittest
-
-from htdigestparser import HTDigestParser
-
-
-class HTDigestParserTest(unittest.TestCase):
-    def assertEntriesEqual(self, entries, additional_content=None):
-        digest_file = self.fake_htdigest_file()
-        if additional_content is not None:
-            digest_file.seek(pos=0, mode=os.SEEK_END)
-            digest_file.write(additional_content)
-            digest_file.seek(pos=0, mode=os.SEEK_SET)
-        self.assertEqual(entries, HTDigestParser(digest_file).entries())
-
-    def test_authenticate(self):
-        htdigest = HTDigestParser(self.fake_htdigest_file())
-        self.assertTrue(htdigest.authenticate('user1', 'realm 1', 'password1'))
-        self.assertTrue(htdigest.authenticate('user2', 'realm 2', 'password2'))
-        self.assertTrue(htdigest.authenticate('user3', 'realm 1', 'password3'))
-        self.assertTrue(htdigest.authenticate('user3', 'realm 3', 'password3'))
-
-        self.assertFalse(htdigest.authenticate('user1', 'realm', 'password1'))
-        self.assertFalse(htdigest.authenticate('user1', 'realm 2', 'password1'))
-        self.assertFalse(htdigest.authenticate('user2', 'realm 2', 'password1'))
-        self.assertFalse(htdigest.authenticate('user2', 'realm 1', 'password1'))
-        self.assertFalse(htdigest.authenticate('', '', ''))
-
-    def test_entries(self):
-        entries = [
-            ['user1', 'realm 1', '36b8aa27fa5e9051095d37b619f92762'],
-            ['user2', 'realm 2', '14f827686fa97778f02fe1314a3337c8'],
-            ['user3', 'realm 1', '1817fc8a24119cc57fbafc8a630ea5a5'],
-            ['user3', 'realm 3', 'a05f5a2335e9d87bbe75bbe5e53248f0'],
-        ]
-        self.assertEntriesEqual(entries)
-        self.assertEntriesEqual(entries, additional_content='')
-
-    def test_empty_file(self):
-        self.assertEqual([], HTDigestParser(StringIO.StringIO()).entries())
-
-    def test_too_few_colons(self):
-        self.assertEntriesEqual([], additional_content='user1:realm 1\n')
-
-    def test_too_many_colons(self):
-        self.assertEntriesEqual([], additional_content='user1:realm 1:36b8aa27fa5e9051095d37b619f92762:garbage\n')
-
-    def test_invalid_hash(self):
-        self.assertEntriesEqual([], additional_content='user1:realm 1:36b8aa27fa5e9051095d37b619f92762000000\n')
-        self.assertEntriesEqual([], additional_content='user1:realm 1:36b8aa27fa5e9051095d37b619f9276\n')
-        self.assertEntriesEqual([], additional_content='user1:realm 1:36b8aa27fa5e9051095d37b619f9276z\n')
-        self.assertEntriesEqual([], additional_content='user1:realm 1: 36b8aa27fa5e9051095d37b619f92762\n')
-
-    def fake_htdigest_file(self):
-        return StringIO.StringIO("""user1:realm 1:36b8aa27fa5e9051095d37b619f92762
-user2:realm 2:14f827686fa97778f02fe1314a3337c8
-user3:realm 1:1817fc8a24119cc57fbafc8a630ea5a5
-user3:realm 3:a05f5a2335e9d87bbe75bbe5e53248f0
-""")
-
-
-# FIXME: We should run this file as part of test-rm .
-# Unfortunately test-rm  currently requires that unittests
-# be located in a directory with a valid module name.
-# 'build.webkit.org-config' is not a valid module name (due to '.' and '-')
-# so for now this is a stand-alone test harness.
-if __name__ == '__main__':
-    unittest.main()
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg b/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg
deleted file mode 100644
index 9d07b8c..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg
+++ /dev/null
@@ -1,996 +0,0 @@
-# -*- python -*-
-# ex: set syntax=python:
-
-from buildbot.buildslave import BuildSlave
-from buildbot.changes.pb import PBChangeSource
-from buildbot.scheduler import AnyBranchScheduler, Triggerable
-from buildbot.schedulers.forcesched import FixedParameter, ForceScheduler, StringParameter
-from buildbot.schedulers.filter import ChangeFilter
-from buildbot.status import html
-from buildbot.status.web.authz import Authz
-from buildbot.process import buildstep, factory, properties
-from buildbot.steps import master, shell, source, transfer, trigger
-from buildbot.status.builder import SUCCESS, FAILURE, WARNINGS, SKIPPED
-
-from twisted.internet import defer
-
-import os
-import re
-import json
-import operator
-import urllib
-
-from committer_auth import CommitterAuth
-import wkbuild
-
-
-c = BuildmasterConfig = {}
-
-c['change_source'] = PBChangeSource()
-
-# permissions for WebStatus
-authz = Authz(
-    auth=CommitterAuth('auth.json'),
-    forceBuild='auth',
-    forceAllBuilds='auth',
-    pingBuilder=True,
-    gracefulShutdown=False,
-    stopBuild='auth',
-    stopAllBuilds='auth',
-    cancelPendingBuild='auth',
-    stopChange=True,
-    cleanShutdown=False)
-
-c['status'] = []
-c['status'].append(html.WebStatus(http_port=8710, 
-                                  revlink="http://trac.webkit.org/changeset/%s", 
-                                  authz=authz))
-
-c['slavePortnum'] = 17000
-c['projectName'] = "WebKit"
-c['projectURL'] = "http://webkit.org"
-c['buildbotURL'] = "http://build.webkit.org/"
-
-c['buildHorizon'] = 1000
-c['logHorizon'] = 500
-c['eventHorizon'] = 200
-c['buildCacheSize'] = 60
-
-WithProperties = properties.WithProperties
-
-
-class TestWithFailureCount(shell.Test):
-    failedTestsFormatString = "%d tests failed"
-
-    def countFailures(self, cmd):
-        return 0
-
-    def commandComplete(self, cmd):
-        shell.Test.commandComplete(self, cmd)
-        self.failedTestCount = self.countFailures(cmd)
-
-    def evaluateCommand(self, cmd):
-        if self.failedTestCount:
-            return FAILURE
-
-        if cmd.rc != 0:
-            return FAILURE
-
-        return SUCCESS
-
-    def getText(self, cmd, results):
-        return self.getText2(cmd, results)
-
-    def getText2(self, cmd, results):
-        if results != SUCCESS and self.failedTestCount:
-            return [self.failedTestsFormatString % self.failedTestCount]
-
-        return [self.name]
-
-
-class ConfigureBuild(buildstep.BuildStep):
-    name = "configure build"
-    description = ["configuring build"]
-    descriptionDone = ["configured build"]
-    def __init__(self, platform, configuration, architecture, buildOnly, SVNMirror, *args, **kwargs):
-        buildstep.BuildStep.__init__(self, *args, **kwargs)
-        self.platform = platform.split('-', 1)[0]
-        self.fullPlatform = platform
-        self.configuration = configuration
-        self.architecture = architecture
-        self.buildOnly = buildOnly
-        self.SVNMirror = SVNMirror
-        self.addFactoryArguments(platform=platform, configuration=configuration, architecture=architecture, buildOnly=buildOnly, SVNMirror=SVNMirror)
-
-    def start(self):
-        self.setProperty("platform", self.platform)
-        self.setProperty("fullPlatform", self.fullPlatform)
-        self.setProperty("configuration", self.configuration)
-        self.setProperty("architecture", self.architecture)
-        self.setProperty("buildOnly", self.buildOnly)
-        self.setProperty("shouldAbortEarly", True)
-        self.setProperty("SVNMirror", self.SVNMirror)
-        self.finished(SUCCESS)
-        return defer.succeed(None)
-
-
-class CheckOutSource(source.SVN):
-    mode = "update"
-    def __init__(self, SVNMirror, **kwargs):
-        kwargs['baseURL'] = SVNMirror or "http://svn.webkit.org/repository/webkit/"
-        kwargs['defaultBranch'] = "trunk"
-        kwargs['mode'] = self.mode
-        source.SVN.__init__(self, **kwargs)
-        self.addFactoryArguments(SVNMirror=SVNMirror)
-
-class WaitForSVNServer(shell.ShellCommand):
-    name = "wait-for-svn-server"
-    command = ["python", "./Tools/BuildSlaveSupport/wait-for-SVN-server.py", "-r", WithProperties("%(revision)s"), "-s", WithProperties("%(SVNMirror)s")]
-    description = ["waiting for SVN server"]
-    descriptionDone = ["SVN server is ready"]
-    haltOnFailure = True
-
-class InstallWin32Dependencies(shell.Compile):
-    description = ["installing dependencies"]
-    descriptionDone = ["installed dependencies"]
-    command = ["perl", "./Tools/Scripts/update-webkit-auxiliary-libs"]
-
-class KillOldProcesses(shell.Compile):
-    name = "kill old processes"
-    description = ["killing old processes"]
-    descriptionDone = ["killed old processes"]
-    command = ["python", "./Tools/BuildSlaveSupport/kill-old-processes"]
-
-class DeleteStaleBuildFiles(shell.Compile):
-    name = "delete stale build files"
-    description = ["deleting stale build files"]
-    descriptionDone = ["delete stale build files"]
-    command = ["python", "./Tools/BuildSlaveSupport/delete-stale-build-files", WithProperties("--platform=%(fullPlatform)s"), WithProperties("--%(configuration)s")]
-
-class InstallEflDependencies(shell.ShellCommand):
-    name = "jhbuild"
-    description = ["updating efl dependencies"]
-    descriptionDone = ["updated efl dependencies"]
-    command = ["perl", "./Tools/Scripts/update-webkitefl-libs"]
-    haltOnFailure = True
-
-class InstallGtkDependencies(shell.ShellCommand):
-    name = "jhbuild"
-    description = ["updating gtk dependencies"]
-    descriptionDone = ["updated gtk dependencies"]
-    command = ["perl", "./Tools/Scripts/update-webkitgtk-libs"]
-    haltOnFailure = True
-
-class InstallChromiumDependencies(shell.ShellCommand):
-    name = "gclient"
-    description = ["updating chromium dependencies"]
-    descriptionDone = ["updated chromium dependencies"]
-    command = ["perl", "./Tools/Scripts/update-webkit-chromium", "--force"]
-    haltOnFailure = True
-    def start(self):
-        if self.getProperty('fullPlatform') == "chromium-android":
-            self.setCommand(self.command + ['--chromium-android'])
-
-        return shell.ShellCommand.start(self)
-
-class CleanupChromiumCrashLogs(shell.ShellCommand):
-    name = "cleanup crash logs"
-    description = ["removing crash logs"]
-    descriptionDone = ["removed crash logs"]
-    command = ["python", "./Tools/BuildSlaveSupport/chromium/remove-crash-logs"]
-    haltOnFailure = False
-
-class OutputAndroidDeviceStatus(shell.ShellCommand):
-    name = "android device status"
-    description = ["outputting android device status"]
-    descriptionDone = ["outputted android device status"]
-    command = ["python", "./Tools/BuildSlaveSupport/chromium/output-android-device-status"]
-    haltOnFailure = False
-
-def appendCustomBuildFlags(step, platform, fullPlatform=""):
-    if fullPlatform == "chromium-android":
-        step.setCommand(step.command + ['--chromium-android'])
-    elif platform in ('chromium', 'efl', 'gtk', 'qt', 'wincairo', 'wince', 'wx'):
-        step.setCommand(step.command + ['--' + platform])
-
-
-class CompileWebKit(shell.Compile):
-    command = ["perl", "./Tools/Scripts/build-webkit", WithProperties("--%(configuration)s")]
-    env = {'MFLAGS':''}
-    name = "compile-webkit"
-    description = ["compiling"]
-    descriptionDone = ["compiled"]
-    warningPattern = ".*arning: .*"
-
-    def start(self):
-        platform = self.getProperty('platform')
-        buildOnly = self.getProperty('buildOnly')
-        if platform == 'mac' and buildOnly:
-            self.setCommand(self.command + ['DEBUG_INFORMATION_FORMAT=dwarf-with-dsym'])
-
-        appendCustomBuildFlags(self, platform, self.getProperty('fullPlatform'))
-
-        return shell.Compile.start(self)
-
-
-class CompileWebKit1Only(CompileWebKit):
-    command = ["perl", "./Tools/Scripts/build-webkit", "--no-webkit2", WithProperties("--%(configuration)s")]
-
-
-class CompileWebKit2Only(CompileWebKit):
-    command = ["perl", "./Tools/Scripts/build-webkit", "--no-webkit1", WithProperties("--%(configuration)s")]
-
-
-class ArchiveBuiltProduct(shell.ShellCommand):
-    command = ["python", "./Tools/BuildSlaveSupport/built-product-archive",
-               WithProperties("--platform=%(fullPlatform)s"), WithProperties("--%(configuration)s"), "archive"]
-    name = "archive-built-product"
-    description = ["archiving built product"]
-    descriptionDone = ["archived built product"]
-    haltOnFailure = True
-
-
-class ExtractBuiltProduct(shell.ShellCommand):
-    command = ["python", "./Tools/BuildSlaveSupport/built-product-archive",
-               WithProperties("--platform=%(fullPlatform)s"), WithProperties("--%(configuration)s"), "extract"]
-    name = "extract-built-product"
-    description = ["extracting built product"]
-    descriptionDone = ["extracted built product"]
-    haltOnFailure = True
-
-
-class UploadBuiltProduct(transfer.FileUpload):
-    slavesrc = WithProperties("WebKitBuild/%(configuration)s.zip")
-    masterdest = WithProperties("archives/%(fullPlatform)s-%(architecture)s-%(configuration)s/%(got_revision)s.zip")
-    haltOnFailure = True
-
-    def __init__(self, **kwargs):
-        kwargs['slavesrc'] = self.slavesrc
-        kwargs['masterdest'] = self.masterdest
-        kwargs['mode'] = 0644
-        transfer.FileUpload.__init__(self, **kwargs)
-
-
-class DownloadBuiltProduct(shell.ShellCommand):
-    command = ["python", "./Tools/BuildSlaveSupport/download-built-product",
-        WithProperties("--platform=%(platform)s"), WithProperties("--%(configuration)s"),
-        WithProperties(c["buildbotURL"] + "archives/%(fullPlatform)s-%(architecture)s-%(configuration)s/%(got_revision)s.zip")]
-    name = "download-built-product"
-    description = ["downloading built product"]
-    descriptionDone = ["downloaded built product"]
-    haltOnFailure = True
-    flunkOnFailure = True
-
-
-class RunJavaScriptCoreTests(shell.Test):
-    name = "jscore-test"
-    description = ["jscore-tests running"]
-    descriptionDone = ["jscore-tests"]
-    command = ["perl", "./Tools/Scripts/run-javascriptcore-tests", WithProperties("--%(configuration)s")]
-    logfiles = {'actual.html (source)': 'Source/JavaScriptCore/tests/mozilla/actual.html'}
-
-    def __init__(self, buildJSCTool=True, *args, **kwargs):
-        self.buildJSCTool = buildJSCTool
-        shell.Test.__init__(self, *args, **kwargs)
-        self.addFactoryArguments(buildJSCTool=buildJSCTool)
-
-    def start(self):
-        appendCustomBuildFlags(self, self.getProperty('platform'))
-        if not self.buildJSCTool:
-            self.setCommand(self.command + ['--no-build'])
-        return shell.Test.start(self)
-
-    def commandComplete(self, cmd):
-        shell.Test.commandComplete(self, cmd)
-
-        logText = cmd.logs['stdio'].getText()
-        statusLines = [line for line in logText.splitlines() if line.find('regression') >= 0 and line.find(' found.') >= 0]
-        if statusLines and statusLines[0].split()[0] != '0':
-            self.regressionLine = statusLines[0]
-        else:
-            self.regressionLine = None
-
-        if 'actual.html (source)' in cmd.logs:
-            self.addHTMLLog('actual.html', cmd.logs['actual.html (source)'].getText())
-
-    def evaluateCommand(self, cmd):
-        if self.regressionLine:
-            return FAILURE
-
-        if cmd.rc != 0:
-            return FAILURE
-
-        return SUCCESS
-
-    def getText(self, cmd, results):
-        return self.getText2(cmd, results)
-
-    def getText2(self, cmd, results):
-        if results != SUCCESS and self.regressionLine:
-            return [self.name, self.regressionLine]
-
-        return [self.name]
-
-
-class RunWebKitTests(shell.Test):
-    name = "layout-test"
-    description = ["layout-tests running"]
-    descriptionDone = ["layout-tests"]
-    command = ["perl", "./Tools/Scripts/run-webkit-tests",
-               "--no-show-results",
-               "--no-new-test-results",
-               "--no-sample-on-timeout",
-               "--results-directory", "layout-test-results",
-               "--builder-name", WithProperties("%(buildername)s"),
-               "--build-number", WithProperties("%(buildnumber)s"),
-               "--master-name", "webkit.org",
-               "--test-results-server", "test-results.appspot.com",
-               WithProperties("--%(configuration)s")]
-
-    def __init__(self, buildJSCTool=True, *args, **kwargs):
-        self.buildJSCTool = buildJSCTool
-        shell.Test.__init__(self, *args, **kwargs)
-        self.addFactoryArguments(buildJSCTool=buildJSCTool)
-
-    def start(self):
-        platform = self.getProperty('platform')
-        shouldAbortEarly = self.getProperty('shouldAbortEarly')
-        appendCustomBuildFlags(self, platform, self.getProperty('fullPlatform'))
-        if platform.startswith('mac'):
-            self.setCommand(self.command + ['--no-build'])
-        if shouldAbortEarly:
-            self.setCommand(self.command + ["--exit-after-n-crashes-or-timeouts", "20", "--exit-after-n-failures", "500"])
-            
-        if platform == "win":
-            rootArgument = ['--root=' + os.path.join("WebKitBuild", self.getProperty('configuration'), "bin")]
-            self.setCommand(self.command + ['--no-build', '--use-remote-links-to-tests'])
-        else:
-            rootArgument = ['--root=WebKitBuild/bin']
-        if not self.buildJSCTool:
-            self.setCommand(self.command + rootArgument)
-        return shell.Test.start(self)
-
-    def _parseOldRunWebKitTestsOutput(self, logText):
-        incorrectLayoutLines = []
-        for line in logText.splitlines():
-            if line.find('had incorrect layout') >= 0 or line.find('were new') >= 0 or line.find('was new') >= 0:
-                incorrectLayoutLines.append(line)
-            elif line.find('test case') >= 0 and (line.find(' crashed') >= 0 or line.find(' timed out') >= 0):
-                incorrectLayoutLines.append(line)
-            elif line.startswith("WARNING:") and line.find(' leak') >= 0:
-                incorrectLayoutLines.append(line.replace('WARNING: ', ''))
-            elif line.find('Exiting early') >= 0:
-                incorrectLayoutLines.append(line)
-
-            # FIXME: Detect and summarize leaks of RefCounted objects
-
-        self.incorrectLayoutLines = incorrectLayoutLines
-
-    # FIXME: This will break if new-run-webkit-tests changes its default log formatter.
-    nrwt_log_message_regexp = re.compile(r'\d{2}:\d{2}:\d{2}(\.\d+)?\s+\d+\s+(?P<message>.*)')
-
-    def _strip_python_logging_prefix(self, line):
-        match_object = self.nrwt_log_message_regexp.match(line)
-        if match_object:
-            return match_object.group('message')
-        return line
-
-    def _parseNewRunWebKitTestsOutput(self, logText):
-        incorrectLayoutLines = []
-        expressions = [
-            ('flakes', re.compile(r'Unexpected flakiness.+\((\d+)\)')),
-            ('new passes', re.compile(r'Expected to .+, but passed:\s+\((\d+)\)')),
-            ('missing results', re.compile(r'Regressions: Unexpected missing results\s+\((\d+)\)')),
-            ('failures', re.compile(r'Regressions: Unexpected.+\((\d+)\)')),
-        ]
-        testFailures = {}
-
-        for line in logText.splitlines():
-            if line.find('Exiting early') >= 0 or line.find('leaks found') >= 0:
-                incorrectLayoutLines.append(self._strip_python_logging_prefix(line))
-                continue
-            for name, expression in expressions:
-                match = expression.search(line)
-
-                if match:
-                    testFailures[name] = testFailures.get(name, 0) + int(match.group(1))
-                    break
-
-                # FIXME: Parse file names and put them in results
-
-        for name in testFailures:
-            incorrectLayoutLines.append(str(testFailures[name]) + ' ' + name)
-
-        self.incorrectLayoutLines = incorrectLayoutLines
-
-    def commandComplete(self, cmd):
-        shell.Test.commandComplete(self, cmd)
-
-        logText = cmd.logs['stdio'].getText()
-        if logText.find("Collecting tests ...") >= 0:
-            self._parseNewRunWebKitTestsOutput(logText)
-        else:
-            self._parseOldRunWebKitTestsOutput(logText)
-
-    def evaluateCommand(self, cmd):
-        result = SUCCESS
-
-        if self.incorrectLayoutLines:
-            if len(self.incorrectLayoutLines) == 1:
-                line = self.incorrectLayoutLines[0]
-                if line.find('were new') >= 0 or line.find('was new') >= 0 or line.find(' leak') >= 0:
-                    return WARNINGS
-
-            for line in self.incorrectLayoutLines:
-                if line.find('flakes') >= 0 or line.find('new passes') >= 0 or line.find('missing results') >= 0:
-                    result = WARNINGS
-                else:
-                    return FAILURE
-
-        if cmd.rc != 0:
-            return FAILURE
-
-        return result
-
-    def getText(self, cmd, results):
-        return self.getText2(cmd, results)
-
-    def getText2(self, cmd, results):
-        if results != SUCCESS and self.incorrectLayoutLines:
-            return self.incorrectLayoutLines
-
-        return [self.name]
-
-
-class RunUnitTests(TestWithFailureCount):
-    name = "run-api-tests"
-    description = ["unit tests running"]
-    descriptionDone = ["unit-tests"]
-    command = ["perl", "./Tools/Scripts/run-api-tests", WithProperties("--%(configuration)s"), "--verbose"]
-    failedTestsFormatString = "%d unit tests failed or timed out"
-
-    def start(self):
-        platform = self.getProperty('fullPlatform')
-        if platform.startswith('win'):
-            self.setCommand(self.command + ['--no-build'])
-        if platform.startswith('mac'):
-            self.setCommand(self.command + ['--no-build'])
-        if platform.startswith('chromium'):
-            self.setCommand(self.command + ['--chromium'])
-        if platform == 'chromium-android':
-            self.setCommand(self.command + ['--chromium-android'])
-        return shell.Test.start(self)
-
-    def countFailures(self, cmd):
-        log_text = cmd.logs['stdio'].getText()
-        count = 0
-
-        split = re.split(r'\sTests that timed out:\s', log_text)
-        if len(split) > 1:
-            count += len(re.findall(r'^\s+\S+$', split[1], flags=re.MULTILINE))
-
-        split = re.split(r'\sTests that failed:\s', split[0])
-        if len(split) > 1:
-            count += len(re.findall(r'^\s+\S+$', split[1], flags=re.MULTILINE))
-
-        return count
-
-
-class RunPythonTests(TestWithFailureCount):
-    name = "webkitpy-test"
-    description = ["python-tests running"]
-    descriptionDone = ["python-tests"]
-    command = ["python", "./Tools/Scripts/test-webkitpy"]
-    failedTestsFormatString = "%d python tests failed"
-
-    def start(self):
-        platform = self.getProperty('platform')
-        # Python tests are flaky on the GTK builders, running them serially
-        # helps and does not significantly prolong the cycle time.
-        if platform == 'gtk':
-            self.setCommand(self.command + ['--child-processes', '1'])
-        # Python tests fail on windows bots when running more than one child process
-        # https://bugs.webkit.org/show_bug.cgi?id=97465
-        if platform == 'win':
-            self.setCommand(self.command + ['--child-processes', '1'])
-        return shell.Test.start(self)
-
-    def countFailures(self, cmd):
-        logText = cmd.logs['stdio'].getText()
-        # We're looking for the line that looks like this: FAILED (failures=2, errors=1)
-        regex = re.compile(r'^FAILED \((?P<counts>[^)]+)\)')
-        for line in logText.splitlines():
-            match = regex.match(line)
-            if not match:
-                continue
-            return sum(int(component.split('=')[1]) for component in match.group('counts').split(', '))
-        return 0
-
-
-class RunPerlTests(TestWithFailureCount):
-    name = "webkitperl-test"
-    description = ["perl-tests running"]
-    descriptionDone = ["perl-tests"]
-    command = ["perl", "./Tools/Scripts/test-webkitperl"]
-    failedTestsFormatString = "%d perl tests failed"
-
-    def countFailures(self, cmd):
-        logText = cmd.logs['stdio'].getText()
-        # We're looking for the line that looks like this: Failed 2/19 test programs. 5/363 subtests failed.
-        regex = re.compile(r'^Failed \d+/\d+ test programs\. (?P<count>\d+)/\d+ subtests failed\.')
-        for line in logText.splitlines():
-            match = regex.match(line)
-            if not match:
-                continue
-            return int(match.group('count'))
-        return 0
-
-
-class RunBindingsTests(shell.Test):
-    name = "bindings-generation-tests"
-    description = ["bindings-tests running"]
-    descriptionDone = ["bindings-tests"]
-    command = ["python", "./Tools/Scripts/run-bindings-tests"]
-
-
-class RunEflAPITests(shell.Test):
-    name = "API tests"
-    description = ["API tests running"]
-    descriptionDone = ["API tests"]
-    command = ["perl", "./Tools/Scripts/run-efl-tests", WithProperties("--%(configuration)s")]
-
-
-class RunGtkAPITests(shell.Test):
-    name = "API tests"
-    description = ["API tests running"]
-    descriptionDone = ["API tests"]
-    command = ["python", "./Tools/Scripts/run-gtk-tests", "--verbose", WithProperties("--%(configuration)s")]
-
-    def commandComplete(self, cmd):
-        shell.Test.commandComplete(self, cmd)
-
-        logText = cmd.logs['stdio'].getText()
-
-        self.incorrectTests = 0
-        self.timedOutTests = 0
-        self.skippedTests = 0
-        self.statusLine = []
-
-        foundItems = re.findall("Tests failed \((\d+)\):", logText)
-        if (foundItems):
-            self.incorrectTests = int(foundItems[0])
-
-        foundItems = re.findall("Tests that timed out \((\d+)\):", logText)
-        if (foundItems):
-            self.timedOutTests = int(foundItems[0])
-
-        foundItems = re.findall("Tests skipped \((\d+)\):", logText)
-        if (foundItems):
-            self.skippedTests = int(foundItems[0])
-
-        self.totalFailedTests = self.incorrectTests + self.timedOutTests
-
-        if self.totalFailedTests > 0:
-            self.statusLine = [
-                "%d API tests failed, %d timed out, %d skipped" %
-                (self.incorrectTests, self.timedOutTests, self.skippedTests)
-            ]
-
-    def evaluateCommand(self, cmd):
-        if self.totalFailedTests > 0:
-            return FAILURE
-
-        if cmd.rc != 0:
-            return FAILURE
-
-        return SUCCESS
-
-    def getText(self, cmd, results):
-        return self.getText2(cmd, results)
-
-    def getText2(self, cmd, results):
-        if results != SUCCESS and self.totalFailedTests > 0:
-            return self.statusLine
-
-        return [self.name]
-
-class RunQtAPITests(shell.Test):
-    name = "API tests"
-    description = ["API tests running"]
-    descriptionDone = ["API tests"]
-    command = ["python", "./Tools/Scripts/run-qtwebkit-tests",
-               "--output-file=qt-unit-tests.html", "--do-not-open-results", "--timeout=120",
-               WithProperties("WebKitBuild/%(configuration_pretty)s/Source/WebKit/qt/tests/", configuration_pretty=lambda build: build.getProperty("configuration").title())
-                ]
-
-    def commandComplete(self, cmd):
-        shell.Test.commandComplete(self, cmd)
-
-        logText = cmd.logs['stdio'].getText()
-        foundItems = re.findall("TOTALS: (?P<passed>\d+) passed, (?P<failed>\d+) failed, (?P<skipped>\d+) skipped, (?P<crashed>\d+) crashed", logText)
-
-        self.incorrectTests = 0
-        self.crashedTests = 0
-        self.statusLine = []
-
-        if foundItems:
-            self.incorrectTests = int(foundItems[0][1])
-            self.crashedTests = int(foundItems[0][3])
-
-            if self.incorrectTests > 0 or self.crashedTests > 0:
-                self.statusLine = [
-                    "%s passed, %s failed, %s skipped, %s crashed" % (foundItems[0][0], foundItems[0][1], foundItems[0][2], foundItems[0][3])
-                ]
-
-    def evaluateCommand(self, cmd):
-        if self.crashedTests:
-            return FAILURE
-
-        if re.findall("Timeout, process", cmd.logs['stdio'].getText()):
-            self.statusLine = ["Failure: timeout occured during testing"]
-            return FAILURE
-
-        if self.incorrectTests:
-            return WARNINGS
-
-        if cmd.rc != 0:
-            return FAILURE
-
-        return SUCCESS
-
-    def getText(self, cmd, results):
-        return self.getText2(cmd, results)
-
-    def getText2(self, cmd, results):
-        if results != SUCCESS and self.incorrectTests:
-            return self.statusLine
-
-        return [self.name]
-
-class RunWebKitLeakTests(RunWebKitTests):
-    warnOnWarnings = True
-    def start(self):
-        self.setCommand(self.command + ["--leaks"])
-        return RunWebKitTests.start(self)
-
-
-class RunWebKit2Tests(RunWebKitTests):
-    def start(self):
-        self.setProperty("shouldAbortEarly", False)
-        self.setCommand(self.command + ["--webkit-test-runner"])
-        return RunWebKitTests.start(self)
-
-
-class RunChromiumWebKitUnitTests(shell.Test):
-    name = "webkit-unit-tests"
-    description = ["webkit-unit-tests running"]
-    descriptionDone = ["webkit-unit-tests"]
-    command = ["perl", "./Tools/Scripts/run-chromium-webkit-unit-tests",
-               WithProperties("--%(configuration)s"), WithProperties("--platform=%(fullPlatform)s")]
-
-
-class RunAndUploadPerfTests(shell.Test):
-   name = "perf-test"
-   description = ["perf-tests running"]
-   descriptionDone = ["perf-tests"]
-   command = ["python", "./Tools/Scripts/run-perf-tests",
-              "--output-json-path", "perf-test-results.json",
-              "--slave-config-json-path", "../../perf-test-config.json",
-              "--no-show-results",
-              "--reset-results",
-              "--test-results-server", "perf.webkit.org",
-              "--builder-name", WithProperties("%(buildername)s"),
-              "--build-number", WithProperties("%(buildnumber)s"),
-              "--platform", WithProperties("%(fullPlatform)s"),
-              WithProperties("--%(configuration)s")]
-
-   def start(self):
-       self.setCommand(self.command)
-       return shell.Test.start(self)
-
-
-class RunAndUploadPerfTestsWebKit2(RunAndUploadPerfTests):
-    def start(self):
-        self.setCommand(self.command + ["--webkit-test-runner"])
-        return RunAndUploadPerfTests.start(self)
-
-
-class ArchiveTestResults(shell.ShellCommand):
-    command = ["python", "./Tools/BuildSlaveSupport/test-result-archive",
-               WithProperties("--platform=%(platform)s"), WithProperties("--%(configuration)s"), "archive"]
-    name = "archive-test-results"
-    description = ["archiving test results"]
-    descriptionDone = ["archived test results"]
-    haltOnFailure = True
-
-
-class UploadTestResults(transfer.FileUpload):
-    slavesrc = "layout-test-results.zip"
-    masterdest = WithProperties("public_html/results/%(buildername)s/r%(got_revision)s (%(buildnumber)s).zip")
-
-    def __init__(self, **kwargs):
-        kwargs['slavesrc'] = self.slavesrc
-        kwargs['masterdest'] = self.masterdest
-        kwargs['mode'] = 0644
-        transfer.FileUpload.__init__(self, **kwargs)
-
-
-class ExtractTestResults(master.MasterShellCommand):
-    zipFile = WithProperties("public_html/results/%(buildername)s/r%(got_revision)s (%(buildnumber)s).zip")
-    resultDirectory = WithProperties("public_html/results/%(buildername)s/r%(got_revision)s (%(buildnumber)s)")
-    descriptionDone = ["uploaded results"]
-
-    def __init__(self, **kwargs):
-        kwargs['command'] = ""
-        master.MasterShellCommand.__init__(self, **kwargs)
-
-    def resultDirectoryURL(self):
-        return self.build.getProperties().render(self.resultDirectory).replace("public_html/", "/") + "/"
-
-    def start(self):
-        self.command = ["unzip", self.build.getProperties().render(self.zipFile), "-d", self.build.getProperties().render(self.resultDirectory)]
-        return master.MasterShellCommand.start(self)
-
-    def addCustomURLs(self):
-        url = self.resultDirectoryURL() + "results.html"
-        self.addURL("view results", url)
-
-    def finished(self, result):
-        self.addCustomURLs()
-        return master.MasterShellCommand.finished(self, result)
-
-
-class ExtractTestResultsAndLeaks(ExtractTestResults):
-    def addCustomURLs(self):
-        ExtractTestResults.addCustomURLs(self)
-        url = "/LeaksViewer/?url=" + urllib.quote(self.resultDirectoryURL(), safe="")
-        self.addURL("view leaks", url)
-
-
-class Factory(factory.BuildFactory):
-    def __init__(self, platform, configuration, architectures, buildOnly, SVNMirror):
-        factory.BuildFactory.__init__(self)
-        self.addStep(ConfigureBuild(platform=platform, configuration=configuration, architecture=" ".join(architectures), buildOnly=buildOnly, SVNMirror=SVNMirror))
-        if SVNMirror:
-            self.addStep(WaitForSVNServer())
-        self.addStep(CheckOutSource(SVNMirror=SVNMirror))
-        # There are multiple Qt slaves running on same machines, so buildslaves shouldn't kill the processes of other slaves.
-        if not platform.startswith("qt"):
-            self.addStep(KillOldProcesses())
-        self.addStep(DeleteStaleBuildFiles())
-        if platform == "win":
-            self.addStep(InstallWin32Dependencies())
-        if platform.startswith("chromium"):
-            self.addStep(InstallChromiumDependencies())
-        if platform == "gtk":
-            self.addStep(InstallGtkDependencies())
-        if platform == "efl":
-            self.addStep(InstallEflDependencies())
-
-
-class BuildFactory(Factory):
-    def __init__(self, platform, configuration, architectures, triggers=None, SVNMirror=None):
-        Factory.__init__(self, platform, configuration, architectures, True, SVNMirror)
-        self.addStep(CompileWebKit())
-        if triggers:
-            self.addStep(ArchiveBuiltProduct())
-            self.addStep(UploadBuiltProduct())
-            self.addStep(trigger.Trigger(schedulerNames=triggers))
-
-def unitTestsSupported(configuration, platform):
-    if platform.startswith('mac') and configuration == "release":
-        return False; # https://bugs.webkit.org/show_bug.cgi?id=82652
-    return (platform == 'win' or platform.startswith('mac') or platform.startswith('chromium'))
-
-def pickLatestBuild(builder, requests):
-    return max(requests, key=operator.attrgetter("submittedAt"))
-
-class TestFactory(Factory):
-    TestClass = RunWebKitTests
-    ExtractTestResultsClass = ExtractTestResults
-    def __init__(self, platform, configuration, architectures, SVNMirror=None):
-        Factory.__init__(self, platform, configuration, architectures, False, SVNMirror)
-        if platform.startswith("chromium"):
-            self.addStep(CleanupChromiumCrashLogs())
-        if platform == "chromium-android":
-            self.addStep(OutputAndroidDeviceStatus())
-        self.addStep(DownloadBuiltProduct())
-        self.addStep(ExtractBuiltProduct())
-        if not platform.startswith("chromium"):
-            self.addStep(RunJavaScriptCoreTests(buildJSCTool=False))
-        if platform.startswith("chromium"):
-            self.addStep(RunChromiumWebKitUnitTests())
-        self.addStep(self.TestClass(buildJSCTool=(platform != 'win')))
-
-        if unitTestsSupported(configuration, platform): 
-            self.addStep(RunUnitTests())
-        self.addStep(RunPythonTests())
-        # Chromium Win runs in non-Cygwin environment, which is not yet fit
-        # for running tests. This can be removed once bug 48166 is fixed.
-        if platform != "chromium-win":
-            self.addStep(RunPerlTests())
-            self.addStep(RunBindingsTests())
-        self.addStep(ArchiveTestResults())
-        self.addStep(UploadTestResults())
-        self.addStep(self.ExtractTestResultsClass())
-        if platform == "efl":
-            self.addStep(RunEflAPITests)
-        if platform == "gtk":
-            self.addStep(RunGtkAPITests())
-        if platform.startswith("qt"):
-            self.addStep(RunQtAPITests)
-
-class BuildAndTestFactory(Factory):
-    CompileClass = CompileWebKit
-    TestClass = RunWebKitTests
-    ExtractTestResultsClass = ExtractTestResults
-    def __init__(self, platform, configuration, architectures, triggers=None, SVNMirror=None, **kwargs):
-        Factory.__init__(self, platform, configuration, architectures, False, SVNMirror, **kwargs)
-        if platform.startswith("chromium"):
-            self.addStep(CleanupChromiumCrashLogs)
-        self.addStep(self.CompileClass())
-        if not platform.startswith("chromium"):
-            self.addStep(RunJavaScriptCoreTests())
-        if platform.startswith("chromium"):
-            self.addStep(RunChromiumWebKitUnitTests)
-        self.addStep(self.TestClass())
-        if unitTestsSupported(configuration, platform): 
-            self.addStep(RunUnitTests())
-        self.addStep(RunPythonTests())
-        # Chromium Win runs in non-Cygwin environment, which is not yet fit
-        # for running tests. This can be removed once bug 48166 is fixed.
-        if platform != "chromium-win":
-            self.addStep(RunPerlTests())
-            self.addStep(RunBindingsTests())
-        self.addStep(ArchiveTestResults())
-        self.addStep(UploadTestResults())
-        self.addStep(self.ExtractTestResultsClass())
-        if platform == "efl":
-            self.addStep(RunEflAPITests())
-        if platform == "gtk":
-            self.addStep(RunGtkAPITests())
-        if platform.startswith("qt"):
-            self.addStep(RunQtAPITests())
-        if triggers:
-            self.addStep(ArchiveBuiltProduct())
-            self.addStep(UploadBuiltProduct())
-            self.addStep(trigger.Trigger(schedulerNames=triggers))
-
-class BuildAndTestWebKit1OnlyFactory(BuildAndTestFactory):
-    CompileClass = CompileWebKit1Only
-
-class BuildAndTestWebKit2OnlyFactory(BuildAndTestFactory):
-    CompileClass = CompileWebKit2Only
-    TestClass = RunWebKit2Tests
-
-class TestLeaksFactory(TestFactory):
-    TestClass = RunWebKitLeakTests
-    ExtractTestResultsClass = ExtractTestResultsAndLeaks
-
-
-class TestWebKit2Factory(TestFactory):
-    TestClass = RunWebKit2Tests
-
-class BuildAndPerfTestFactory(Factory):
-    def __init__(self, platform, configuration, architectures, SVNMirror=None, **kwargs):
-        Factory.__init__(self, platform, configuration, architectures, False, SVNMirror, **kwargs)
-        if platform.startswith("chromium"):
-            self.addStep(CleanupChromiumCrashLogs)
-        self.addStep(CompileWebKit())
-        self.addStep(RunAndUploadPerfTests())
-
-class BuildAndPerfTestWebKit2Factory(Factory):
-    def __init__(self, platform, configuration, architectures, SVNMirror=None, **kwargs):
-        Factory.__init__(self, platform, configuration, architectures, False, SVNMirror, **kwargs)
-        if platform.startswith("chromium"):
-            self.addStep(CleanupChromiumCrashLogs)
-        self.addStep(CompileWebKit())
-        self.addStep(RunAndUploadPerfTestsWebKit2())
-
-class DownloadAndPerfTestFactory(Factory):
-    def __init__(self, platform, configuration, architectures, SVNMirror=None, **kwargs):
-        Factory.__init__(self, platform, configuration, architectures, False, SVNMirror, **kwargs)
-        self.addStep(DownloadBuiltProduct())
-        self.addStep(ExtractBuiltProduct())
-        if platform == "chromium-android":
-            self.addStep(OutputAndroidDeviceStatus())
-        self.addStep(RunAndUploadPerfTests())
-
-class DownloadAndPerfTestWebKit2Factory(Factory):
-    def __init__(self, platform, configuration, architectures, SVNMirror=None, **kwargs):
-        Factory.__init__(self, platform, configuration, architectures, False, SVNMirror, **kwargs)
-        self.addStep(DownloadBuiltProduct())
-        self.addStep(ExtractBuiltProduct())
-        self.addStep(RunAndUploadPerfTestsWebKit2())
-
-class PlatformSpecificScheduler(AnyBranchScheduler):
-    def __init__(self, platform, branch, **kwargs):
-        self.platform = platform
-        filter = ChangeFilter(branch=[branch, None], filter_fn=self.filter)
-        AnyBranchScheduler.__init__(self, name=platform, change_filter=filter, **kwargs)
-
-    def filter(self, change):
-        return wkbuild.should_build(self.platform, change.files)
-
-trunk_filter = ChangeFilter(branch=["trunk", None])
-
-def loadBuilderConfig(c):
-    # FIXME: These file handles are leaked.
-    passwords = json.load(open('passwords.json'))
-    config = json.load(open('config.json'))
-
-    c['slaves'] = [BuildSlave(slave['name'], passwords[slave['name']], max_builds=1) for slave in config['slaves']]
-
-    c['schedulers'] = []
-    for scheduler in config['schedulers']:
-        if "change_filter" in scheduler:
-            scheduler["change_filter"] = globals()[scheduler["change_filter"]]
-        kls = globals()[scheduler.pop('type')]
-        # Python 2.6 can't handle unicode keys as keyword arguments:
-        # http://bugs.python.org/issue2646.  Modern versions of json return
-        # unicode strings from json.load, so we map all keys to str objects.
-        scheduler = dict(map(lambda key_value_pair: (str(key_value_pair[0]), key_value_pair[1]), scheduler.items()))
-
-        c['schedulers'].append(kls(**scheduler))
-
-    forceScheduler = ForceScheduler(
-        name="force",
-        builderNames=[builder['name'] for builder in config['builders']],
-        reason=StringParameter(name="reason", default="", size=40),
-
-        # Validate SVN revision: number or emtpy string
-        revision=StringParameter(name="revision", default="", regex=re.compile(r'^(\d*)$')),
-
-        # Disable default enabled input fields: branch, repository, project, additional properties
-        branch=FixedParameter(name="branch"),
-        repository=FixedParameter(name="repository"),
-        project=FixedParameter(name="project"),
-        properties=[]
-    )
-    c['schedulers'].append(forceScheduler)
-
-    c['builders'] = []
-    for builder in config['builders']:
-        for slaveName in builder['slavenames']:
-            for slave in config['slaves']:
-                if slave['name'] != slaveName or slave['platform'] == '*':
-                    continue
-
-                if slave['platform'] != builder['platform']:
-                    raise Exception, "Builder %r is for platform %r but has slave %r for platform %r!" % (builder['name'], builder['platform'], slave['name'], slave['platform'])
-
-                break
-
-        platform = builder['platform']
-
-        builderType = builder.pop('type')
-        factory = globals()["%sFactory" % builderType]
-        factorykwargs = {}
-        for key in "platform", "configuration", "architectures", "triggers", "SVNMirror":
-            value = builder.pop(key, None)
-            if value:
-                factorykwargs[key] = value
-
-        builder["factory"] = factory(**factorykwargs)
-
-        if platform.startswith('chromium'):
-            builder["category"] = 'Chromium'
-        elif platform.startswith('mac'):
-            builder["category"] = 'AppleMac'
-        elif platform == 'win':
-            builder["category"] = 'AppleWin'
-        elif platform.startswith('gtk'):
-            builder["category"] = 'GTK'
-        elif platform.startswith('qt'):
-            builder["category"] = 'Qt'
-        elif platform.startswith('efl'):
-            builder["category"] = "EFL"
-        else:
-            builder["category"] = 'misc'
-
-        if (builder['category'] == 'AppleMac' or builder['category'] == 'AppleWin') and builderType != 'Build':
-            builder['nextBuild'] = pickLatestBuild
-
-        c['builders'].append(builder)
-
-loadBuilderConfig(c)
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py b/Tools/BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py
deleted file mode 100755
index 3f86e75..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py
+++ /dev/null
@@ -1,415 +0,0 @@
-#! /usr/bin/python
-
-import sys
-import os
-import StringIO
-import unittest
-
-# Show DepricationWarnings come from buildbot - it isn't default with Python 2.7 or newer.
-# See https://bugs.webkit.org/show_bug.cgi?id=90161 for details.
-import warnings
-warnings.simplefilter('default')
-
-class BuildBotConfigLoader(object):
-    def _add_webkitpy_to_sys_path(self):
-        # When files are passed to the python interpreter on the command line (e.g. python test.py) __file__ is a relative path.
-        absolute_file_path = os.path.abspath(__file__)
-        webkit_org_config_dir = os.path.dirname(absolute_file_path)
-        build_slave_support_dir = os.path.dirname(webkit_org_config_dir)
-        webkit_tools_dir = os.path.dirname(build_slave_support_dir)
-        scripts_dir = os.path.join(webkit_tools_dir, 'Scripts')
-        sys.path.append(scripts_dir)
-
-    def _create_mock_passwords_dict(self):
-        config_dict = json.load(open('config.json'))
-        return dict([(slave['name'], '1234') for slave in config_dict['slaves']])
-
-    def _mock_open(self, filename):
-        if filename == 'passwords.json':
-            return StringIO.StringIO(json.dumps(self._create_mock_passwords_dict()))
-        return __builtins__.open(filename)
-
-    def _add_dependant_modules_to_sys_modules(self):
-        from webkitpy.thirdparty.autoinstalled import buildbot
-        sys.modules['buildbot'] = buildbot
-
-    def load_config(self, master_cfg_path):
-        # Before we can use webkitpy.thirdparty, we need to fix our path to include webkitpy.
-        # FIXME: If we're ever run by test-webkitpy we won't need this step.
-        self._add_webkitpy_to_sys_path()
-        # master.cfg expects the buildbot module to be in sys.path.
-        self._add_dependant_modules_to_sys_modules()
-
-        # master.cfg expects a passwords.json file which is not checked in.  Fake it by mocking open().
-        globals()['open'] = self._mock_open
-        # Because the master_cfg_path may have '.' in its name, we can't just use import, we have to use execfile.
-        # We pass globals() as both the globals and locals to mimic exectuting in the global scope, so
-        # that globals defined in master.cfg will be global to this file too.
-        execfile(master_cfg_path, globals(), globals())
-        globals()['open'] = __builtins__.open  # Stop mocking open().
-
-
-class MasterCfgTest(unittest.TestCase):
-    def test_nrwt_leaks_parsing(self):
-        run_webkit_tests = RunWebKitTests()  # pylint is confused by the way we import the module ... pylint: disable-msg=E0602
-        log_text = """
-12:44:24.295 77706 13981 total leaks found for a total of 197,936 bytes!
-12:44:24.295 77706 1 unique leaks found!
-"""
-        expected_incorrect_lines = [
-            '13981 total leaks found for a total of 197,936 bytes!',
-            '1 unique leaks found!',
-        ]
-        run_webkit_tests._parseNewRunWebKitTestsOutput(log_text)
-        self.assertEqual(run_webkit_tests.incorrectLayoutLines, expected_incorrect_lines)
-
-    def test_nrwt_missing_results(self):
-        run_webkit_tests = RunWebKitTests()  # pylint is confused by the way we import the module ... pylint: disable-msg=E0602
-        log_text = """
-Expected to fail, but passed: (2)
-  animations/additive-transform-animations.html
-  animations/cross-fade-webkit-mask-box-image.html
-
-Unexpected flakiness: text-only failures (2)
-  fast/events/touch/touch-inside-iframe.html [ Failure Pass ]
-  http/tests/inspector-enabled/console-clear-arguments-on-frame-navigation.html [ Failure Pass ]
-
-Unexpected flakiness: timeouts (1)
-  svg/text/foreignObject-repaint.xml [ Timeout Pass ]
-
-Regressions: Unexpected missing results (1)
-  svg/custom/zero-path-square-cap-rendering2.svg [ Missing ]
-
-Regressions: Unexpected text-only failures (1)
-  svg/custom/zero-path-square-cap-rendering2.svg [ Failure ]
-"""
-        run_webkit_tests._parseNewRunWebKitTestsOutput(log_text)
-        self.assertEqual(set(run_webkit_tests.incorrectLayoutLines),
-            set(['2 new passes', '3 flakes', '1 missing results', '1 failures']))
-
-class StubStdio(object):
-    def __init__(self, stdio):
-        self._stdio = stdio
-
-    def getText(self):
-        return self._stdio
-
-
-class StubRemoteCommand(object):
-    def __init__(self, rc, stdio):
-        self.rc = rc
-        self.logs = {'stdio': StubStdio(stdio)}
-
-
-class RunQtAPITestsTest(unittest.TestCase):
-    def assertResults(self, expected_result, expected_text, stdio):
-        rc = 0
-        cmd = StubRemoteCommand(rc, stdio)
-        step = RunQtAPITests()
-        step.commandComplete(cmd)
-        actual_results = step.evaluateCommand(cmd)
-        actual_text = str(step.getText2(cmd, actual_results)[0])
-
-        self.assertEqual(expected_result, actual_results)
-        self.assertEqual(actual_text, expected_text)
-
-    def test_timeout(self):
-        self.assertResults(FAILURE, "API tests", """INFO:Exec:Running... WebKitBuild/Release/Source/WebKit2/UIProcess/API/qt/tests/qquickwebview/tst_qquickwebview
-INFO:Exec:Running... WebKitBuild/Release/Source/WebKit2/UIProcess/API/qt/tests/qmltests/tst_qmltests
-Qml debugging is enabled. Only use this in a safe environment!
-INFO:Exec:Finished WebKitBuild/Release/Source/WebKit2/UIProcess/API/qt/tests/qquickwebview/tst_qquickwebview
-ERROR:Exec:Timeout, process 'WebKitBuild/Release/Source/WebKit2/UIProcess/API/qt/tests/qmltests/tst_qmltests' (2336) was terminated
-INFO:Exec:Finished WebKitBuild/Release/Source/WebKit2/UIProcess/API/qt/tests/qmltests/tst_qmltests
-********* Start testing of tst_QQuickWebView *********
-Config: Using QTest library 5.0.0, Qt 5.0.0
-PASS   : tst_QQuickWebView::initTestCase()
-QWARN  : tst_QQuickWebView::accessPage() QQuickCanvas: platform does not support threaded rendering!
-.
-.
-.
-
-**********************************************************************
-**        TOTALS: 16 passed, 0 failed, 0 skipped, 0 crashed         **
-**********************************************************************""")
-
-    def test_success(self):
-        self.assertResults(SUCCESS, "API tests", """INFO:Exec:Running... WebKitBuild/Release/Source/WebKit2/UIProcess/API/qt/tests/qquickwebview/tst_qquickwebview
-INFO:Exec:Running... WebKitBuild/Release/Source/WebKit2/UIProcess/API/qt/tests/qmltests/tst_qmltests
-Qml debugging is enabled. Only use this in a safe environment!
-INFO:Exec:Finished WebKitBuild/Release/Source/WebKit2/UIProcess/API/qt/tests/qquickwebview/tst_qquickwebview
-********* Start testing of tst_QQuickWebView *********
-Config: Using QTest library 5.0.0, Qt 5.0.0
-PASS   : tst_QQuickWebView::initTestCase()
-QWARN  : tst_QQuickWebView::accessPage() QQuickCanvas: platform does not support threaded rendering!
-.
-.
-.
-
-**********************************************************************
-**        TOTALS: 16 passed, 0 failed, 0 skipped, 0 crashed         **
-**********************************************************************""")
-
-    def test_failure(self):
-        self.assertResults(WARNINGS, "16 passed, 1 failed, 0 skipped, 0 crashed", """********* Start testing of tst_QDeclarativeWebView *********
-PASS   : tst_QDeclarativeWebView::pressGrabTime()
-PASS   : tst_QDeclarativeWebView::renderingEnabled()
-PASS   : tst_QDeclarativeWebView::setHtml()
-PASS   : tst_QDeclarativeWebView::settings()
-FAIL!  : tst_QDeclarativeWebView::backgroundColor() Compared values are not the same
-   Loc: [/ramdisk/qt-linux-release/build/Source/WebKit/qt/tests/qdeclarativewebview/tst_qdeclarativewebview.cpp(532)]
-PASS   : tst_QDeclarativeWebView::cleanupTestCase()
-.
-.
-.
-
-**********************************************************************
-**        TOTALS: 16 passed, 1 failed, 0 skipped, 0 crashed         **
-**********************************************************************""")
-
-    def test_timeout_and_failure(self):
-        self.assertResults(FAILURE, "Failure: timeout occured during testing", """INFO:Exec:Finished WebKitBuild/Release/Source/WebKit/qt/tests/benchmarks/painting/tst_painting
-ERROR:Exec:Timeout, process 'WebKitBuild/Release/Source/WebKit/qt/tests/qwebpage/tst_qwebpage' (13000) was terminated
-INFO:Exec:Finished WebKitBuild/Release/Source/WebKit/qt/tests/qwebpage/tst_qwebpage
-********* Start testing of tst_Loading *********
-Config: Using QTest library 4.8.0, Qt 4.8.0
-PASS   : tst_Loading::initTestCase()
-QDEBUG : tst_Loading::load(amazon) loaded the Generic plugin
-RESULT : tst_Loading::load():"amazon":
-     1,843 msecs per iteration (total: 1,843, iterations: 1)
-RESULT : tst_Loading::load():"kde":
-     139 msecs per iteration (total: 139, iterations: 1)
-RESULT : tst_Loading::load():"apple":
-     740 msecs per iteration (total: 740, iterations: 1)
-PASS   : tst_Loading::load()
-PASS   : tst_Loading::cleanupTestCase()
-Totals: 3 passed, 0 failed, 0 skipped
-********* Finished testing of tst_Loading *********
-.
-.
-.
-PASS   : tst_QDeclarativeWebView::renderingEnabled()
-PASS   : tst_QDeclarativeWebView::setHtml()
-PASS   : tst_QDeclarativeWebView::settings()
-FAIL!  : tst_QDeclarativeWebView::backgroundColor() Compared values are not the same
-   Loc: [/ramdisk/qt-linux-release/build/Source/WebKit/qt/tests/qdeclarativewebview/tst_qdeclarativewebview.cpp(532)]
-PASS   : tst_QDeclarativeWebView::cleanupTestCase()
-Totals: 16 passed, 3 failed, 1 skipped
-.
-.
-.
-**********************************************************************
-**        TOTALS: 73 passed, 3 failed, 1 skipped, 0 crashed         **
-**********************************************************************""")
-
-    def test_crash(self):
-        self.assertResults(FAILURE, "API tests", """********* Start testing of tst_QQuickWebView *********
-Config: Using QTest library 5.0.0, Qt 5.0.0
-PASS   : tst_QQuickWebView::initTestCase()
-PASS   : tst_QQuickWebView::accessPage()
-
-CRASHED: WebKitBuild/Release/Source/WebKit2/UIProcess/API/qt/tests/qquickwebview/tst_qquickwebview
-
-CRASHED: WebKitBuild/Release/Source/WebKit2/UIProcess/API/qt/tests/qquickwebview/tst_hello
-
-********* Start testing of tst_publicapi *********
-Config: Using QTest library 5.0.0, Qt 5.0.0
-PASS   : tst_publicapi::initTestCase()
-PASS   : tst_publicapi::publicAPI()
-PASS   : tst_publicapi::cleanupTestCase()
-Totals: 3 passed, 0 failed, 0 skipped
-********* Finished testing of tst_publicapi *********
-**********************************************************************
-**        TOTALS: 92 passed, 0 failed, 0 skipped, 2 crashed         **
-**********************************************************************""")
-
-
-
-class RunUnitTestsTest(unittest.TestCase):
-    def assertFailures(self, expected_failure_count, stdio):
-        if expected_failure_count:
-            rc = 1
-            expected_results = FAILURE
-            expected_text = '{0} unit tests failed or timed out'.format(expected_failure_count)
-        else:
-            rc = 0
-            expected_results = SUCCESS
-            expected_text = 'run-api-tests'
-
-        cmd = StubRemoteCommand(rc, stdio)
-        step = RunUnitTests()
-        step.commandComplete(cmd)
-        actual_results = step.evaluateCommand(cmd)
-        actual_failure_count = step.failedTestCount
-        actual_text = step.getText(cmd, actual_results)[0]
-
-        self.assertEqual(expected_results, actual_results)
-        self.assertEqual(expected_failure_count, actual_failure_count)
-        self.assertEqual(expected_text, actual_text)
-
-    def test_no_failures_or_timeouts(self):
-        self.assertFailures(0, """Note: Google Test filter = WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose
-[==========] Running 1 test from 1 test case.
-[----------] Global test environment set-up.
-[----------] 1 test from WebViewDestructionWithHostWindow
-[ RUN      ] WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose
-[       OK ] WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose (127 ms)
-[----------] 1 test from WebViewDestructionWithHostWindow (127 ms total)
-
-[----------] Global test environment tear-down
-[==========] 1 test from 1 test case ran. (127 ms total)
-[  PASSED  ] 1 test.
-""")
-
-    def test_one_failure(self):
-        self.assertFailures(1, """Note: Google Test filter = WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose
-[==========] Running 1 test from 1 test case.
-[----------] Global test environment set-up.
-[----------] 1 test from WebViewDestructionWithHostWindow
-[ RUN      ] WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose
-[       OK ] WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose (127 ms)
-[----------] 1 test from WebViewDestructionWithHostWindow (127 ms total)
-
-[----------] Global test environment tear-down
-[==========] 1 test from 1 test case ran. (127 ms total)
-[  PASSED  ] 1 test.
-Tests that failed:
-  WebKit2.WebKit2.CanHandleRequest
-""")
-
-    def test_multiple_failures(self):
-        self.assertFailures(4, """Note: Google Test filter = WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose
-[==========] Running 1 test from 1 test case.
-[----------] Global test environment set-up.
-[----------] 1 test from WebViewDestructionWithHostWindow
-[ RUN      ] WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose
-[       OK ] WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose (127 ms)
-[----------] 1 test from WebViewDestructionWithHostWindow (127 ms total)
-
-[----------] Global test environment tear-down
-[==========] 1 test from 1 test case ran. (127 ms total)
-[  PASSED  ] 1 test.
-Tests that failed:
-  WebKit2.WebKit2.CanHandleRequest
-  WebKit2.WebKit2.DocumentStartUserScriptAlertCrashTest
-  WebKit2.WebKit2.HitTestResultNodeHandle
-  WebKit2.WebKit2.InjectedBundleBasic
-""")
-
-    def test_one_timeout(self):
-        self.assertFailures(1, """Note: Google Test filter = WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose
-[==========] Running 1 test from 1 test case.
-[----------] Global test environment set-up.
-[----------] 1 test from WebViewDestructionWithHostWindow
-[ RUN      ] WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose
-[       OK ] WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose (127 ms)
-[----------] 1 test from WebViewDestructionWithHostWindow (127 ms total)
-
-[----------] Global test environment tear-down
-[==========] 1 test from 1 test case ran. (127 ms total)
-[  PASSED  ] 1 test.
-Tests that timed out:
-  WebKit2.WebKit2.CanHandleRequest
-""")
-
-    def test_multiple_timeouts(self):
-        self.assertFailures(4, """Note: Google Test filter = WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose
-[==========] Running 1 test from 1 test case.
-[----------] Global test environment set-up.
-[----------] 1 test from WebViewDestructionWithHostWindow
-[ RUN      ] WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose
-[       OK ] WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose (127 ms)
-[----------] 1 test from WebViewDestructionWithHostWindow (127 ms total)
-
-[----------] Global test environment tear-down
-[==========] 1 test from 1 test case ran. (127 ms total)
-[  PASSED  ] 1 test.
-Tests that timed out:
-  WebKit2.WebKit2.CanHandleRequest
-  WebKit2.WebKit2.DocumentStartUserScriptAlertCrashTest
-  WebKit2.WebKit2.HitTestResultNodeHandle
-  WebKit2.WebKit2.InjectedBundleBasic
-""")
-
-    def test_multiple_failures_and_timeouts(self):
-        self.assertFailures(8, """Note: Google Test filter = WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose
-[==========] Running 1 test from 1 test case.
-[----------] Global test environment set-up.
-[----------] 1 test from WebViewDestructionWithHostWindow
-[ RUN      ] WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose
-[       OK ] WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose (127 ms)
-[----------] 1 test from WebViewDestructionWithHostWindow (127 ms total)
-
-[----------] Global test environment tear-down
-[==========] 1 test from 1 test case ran. (127 ms total)
-[  PASSED  ] 1 test.
-Tests that failed:
-  WebKit2.WebKit2.CanHandleRequest
-  WebKit2.WebKit2.DocumentStartUserScriptAlertCrashTest
-  WebKit2.WebKit2.HitTestResultNodeHandle
-Tests that timed out:
-  WebKit2.WebKit2.InjectedBundleBasic
-  WebKit2.WebKit2.LoadCanceledNoServerRedirectCallback
-  WebKit2.WebKit2.MouseMoveAfterCrash
-  WebKit2.WebKit2.ResponsivenessTimerDoesntFireEarly
-  WebKit2.WebKit2.WebArchive
-""")
-
-
-class SVNMirrorTest(unittest.TestCase):
-    def setUp(self):
-        self.config = json.load(open('config.json'))
-
-    def get_SVNMirrorFromConfig(self, builderName):
-        SVNMirror = None
-        for builder in self.config['builders']:
-            if builder['name'] == builderName:
-                SVNMirror = builder.pop('SVNMirror', 'http://svn.webkit.org/repository/webkit/')
-        return SVNMirror
-
-    def test_CheckOutSource(self):
-        # SVN mirror feature isn't unittestable now with source.oldsource.SVN(==source.SVN) , only with source.svn.SVN(==SVN)
-        # https://bugs.webkit.org/show_bug.cgi?id=85887
-        if issubclass(CheckOutSource, source.SVN):
-            return
-
-        # Compare CheckOutSource.baseURL with SVNMirror (or with the default URL) in config.json for all builders
-        for builder in c['builders']:
-            for buildStepFactory, kwargs in builder['factory'].steps:
-                if str(buildStepFactory).split('.')[-1] == 'CheckOutSource':
-                        CheckOutSourceInstance = buildStepFactory(**kwargs)
-                        self.assertEqual(CheckOutSourceInstance.baseURL, self.get_SVNMirrorFromConfig(builder['name']))
-
-
-class BuildStepsConstructorTest(unittest.TestCase):
-    # "Passing a BuildStep subclass to factory.addStep is deprecated. Please pass a BuildStep instance instead.  Support will be dropped in v0.8.7."
-    # It checks if all builder's all buildsteps can be insantiated after migration.
-    # https://bugs.webkit.org/show_bug.cgi?id=89001
-    # http://buildbot.net/buildbot/docs/0.8.6p1/manual/customization.html#writing-buildstep-constructors
-
-    @staticmethod
-    def generateTests():
-        for builderNumber, builder in enumerate(c['builders']):
-            for stepNumber, step in enumerate(builder['factory'].steps):
-                builderName = builder['name'].encode('ascii', 'ignore')
-                setattr(BuildStepsConstructorTest, 'test_builder%02d_step%02d' % (builderNumber, stepNumber), BuildStepsConstructorTest.createTest(builderName, step))
-
-    @staticmethod
-    def createTest(builderName, step):
-        def doTest(self):
-            try:
-                buildStepFactory, kwargs = step
-                buildStepFactory(**kwargs)
-            except TypeError as e:
-                buildStepName = str(buildStepFactory).split('.')[-1]
-                self.fail("Error during instantiation %s buildstep for %s builder: %s\n" % (buildStepName, builderName, e))
-        return doTest
-
-# FIXME: We should run this file as part of test-webkitpy.
-# Unfortunately test-webkitpy currently requires that unittests
-# be located in a directory with a valid module name.
-# 'build.webkit.org-config' is not a valid module name (due to '.' and '-')
-# so for now this is a stand-alone test harness.
-if __name__ == '__main__':
-    BuildBotConfigLoader().load_config('master.cfg')
-    BuildStepsConstructorTest.generateTests()
-    unittest.main()
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksLoader.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksLoader.js
deleted file mode 100644
index e559e73..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksLoader.js
+++ /dev/null
@@ -1,65 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-function LeaksLoader(didCountLeaksFilesCallback, didLoadLeaksFileCallback) {
-    this._didCountLeaksFilesCallback = didCountLeaksFilesCallback;
-    this._didLoadLeaksFileCallback = didLoadLeaksFileCallback;
-}
-
-LeaksLoader.prototype = {
-    start: function(url) {
-        if (/\.txt$/.test(url))
-            this._loadLeaksFiles([url]);
-        else
-            this._loadLeaksFromResultsPage(url);
-    },
-
-    _loadLeaksFiles: function(urls) {
-        this._didCountLeaksFilesCallback(urls.length);
-
-        var self = this;
-        var pendingURLs = urls.length;
-        urls.forEach(function(url) {
-            getResource(url, function(xhr) {
-                self._didLoadLeaksFileCallback(xhr.responseText);
-            });
-        });
-    },
-
-    _loadLeaksFromResultsPage: function(url) {
-        var self = this;
-        getResource(url, function(xhr) {
-            var root = document.createElement("html");
-            root.innerHTML = xhr.responseText;
-
-            // Strip off everything after the last /.
-            var baseURL = url.substring(0, url.lastIndexOf("/") + 1);
-
-            var urls = Array.prototype.map.call(root.querySelectorAll("tr.file > td > a[href$='-leaks.txt']"), function(link) { return baseURL + link.getAttribute("href"); });
-
-            self._loadLeaksFiles(urls);
-        });
-    },
-};
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksParser.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksParser.js
deleted file mode 100644
index bd12851..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksParser.js
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-function LeaksParser(didParseLeaksFileCallback) {
-    this._didParseLeaksFileCallback = didParseLeaksFileCallback;
-    
-    if (workersSupportCyclicStructures()) {
-        this._worker = new Worker("LeaksParserWorker.js");
-
-        var self = this;
-        this._worker.onmessage = function(e) {
-            self._didParseLeaksFileCallback(e.data);
-        };
-    } else
-        this._parserImpl = new LeaksParserImpl(this._didParseLeaksFileCallback);
-}
-
-LeaksParser.prototype = {
-    addLeaksFile: function(leaksText) {
-        if (this._worker)
-            this._worker.postMessage(leaksText);
-        else
-            this._parserImpl.addLeaksFile(leaksText);
-    },
-};
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksParserImpl.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksParserImpl.js
deleted file mode 100644
index c0243d8..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksParserImpl.js
+++ /dev/null
@@ -1,110 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-function LeaksParserImpl(didParseLeaksCallback) {
-    this._didParseLeaksCallback = didParseLeaksCallback;
-    this._profile = this._createNode("top level");
-}
-
-LeaksParserImpl.prototype = {
-    addLeaksFile: function(leaksText) {
-        this._incorporateLeaks(this._parseLeaks(leaksText));
-        this._didParseLeaksCallback(this._profile);
-    },
-
-    _parseLeaks: function(text) {
-        var leaks = [];
-        var currentSize = 0;
-        text.split("\n").forEach(function(line) {
-            var match = /^Leak:.*\ssize=(\d+)\s/.exec(line);
-            if (match) {
-                currentSize = parseInt(match[1], 10);
-                return;
-            }
-            if (!/^\s+Call stack:/.test(line))
-                return;
-
-            // The first frame is not really a frame at all ("Call stack: thread 0xNNNNN:"), so we omit it.
-            leaks.push({ size: currentSize, stack: line.split(" | ").slice(1).map(function(str) { return str.trim(); }) });
-            currentSize = 0;
-        });
-        return leaks;
-    },
-
-    _createNode: function(functionName) {
-        var url;
-        var lineNumber;
-        var match = /(.*) (\S+):(\d+)$/.exec(functionName);
-        if (match) {
-            functionName = match[1];
-            // FIXME: It would be nice to be able to link straight to the right line in Trac, but to
-            // do that we'd have to have some way of translating from filenames to Trac URLs.
-            // <http://webkit.org/b/72509>
-            url = match[2];
-            lineNumber = match[3];
-        }
-
-        return {
-            functionName: functionName,
-            selfTime: 0,
-            totalTime: 0,
-            averageTime: 0,
-            numberOfCalls: 0,
-            children: [],
-            childrenByName: {},
-            callUID: functionName,
-            url: url,
-            lineNumber: lineNumber,
-        };
-    },
-
-    // This function creates a fake "profile" from a set of leak stacks. "selfTime" is the number of
-    // stacks in which this function was at the top (in theory, only functions like malloc should have a
-    // non-zero selfTime). "totalTime" is the number of stacks which contain this function (and thus is
-    // the number of leaks that occurred in or beneath this function).
-    // FIXME: This is expensive! Can we parallelize it?
-    _incorporateLeaks: function(leaks) {
-        var self = this;
-        leaks.forEach(function(leak) {
-            leak.stack.reduce(function(node, frame, index, array) {
-                var childNode;
-                if (frame in node.childrenByName)
-                    childNode = node.childrenByName[frame];
-                else {
-                    childNode = self._createNode(frame);
-                    childNode.head = self._profile;
-                    node.childrenByName[frame] = childNode;
-                    node.children.push(childNode);
-                }
-                if (index === array.length - 1)
-                    childNode.selfTime += leak.size;
-                childNode.totalTime += leak.size;
-                ++childNode.numberOfCalls;
-                return childNode;
-            }, self._profile);
-        });
-        self._profile.totalTime = self._profile.children.reduce(function(sum, child) { return sum + child.totalTime; }, 0);
-    },
-};
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksParserWorker.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksParserWorker.js
deleted file mode 100644
index 4b0b4f6..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksParserWorker.js
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-importScripts("LeaksParserImpl.js");
-
-var parser = new LeaksParserImpl(function(profile) {
-    postMessage(profile);
-});
-
-onmessage = function(e) {
-    parser.addLeaksFile(e.data);
-}
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksViewer.css b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksViewer.css
deleted file mode 100644
index 76d71a8..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksViewer.css
+++ /dev/null
@@ -1,91 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#url-prompt-container {
-    position: absolute;
-    top: 0;
-    bottom: 0;
-    left: 0;
-    right: 0;
-    background-color: rgba(0, 0, 0, 0.5);
-    z-index: 50000;
-}
-
-#url-prompt {
-    position: absolute;
-    top: 0;
-    bottom: 0;
-    left: 0;
-    right: 0;
-    width: 400px;
-    height: 300px;
-    margin: auto;
-    background-color: white;
-    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.8);
-    padding: 50px 0;
-    text-align: center;
-}
-
-#loading-indicator {
-    position: absolute;
-    right: 20px;
-    width: 150px;
-    margin-top: 5px;
-}
-
-#spinner {
-    float: left;
-    margin-top: -1px;
-}
-
-#loading-indicator-label {
-    margin-left: 5px;
-}
-
-#recent-builds-loading-indicator {
-    color: gray;
-}
-
-#recent-builds-list {
-    list-style: none;
-    margin: 0;
-    padding: 0;
-}
-
-/* Inspector style overrides */
-
-.percent-time-status-bar-item {
-    /* We always show leak counts as real values, not percentages, so this button isn't useful. */
-    display: none !important;
-}
-
-.data-grid .data-container {
-    overflow-x: visible;
-    overflow-y: auto;
-}
-
-.data-grid td > div, .data-grid th > div {
-    overflow: visible;
-}
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksViewer.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksViewer.js
deleted file mode 100644
index a2b225a..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksViewer.js
+++ /dev/null
@@ -1,202 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-var LeaksViewer = {
-    loaded: function() {
-        this._loader = new LeaksLoader(this._didCountLeaksFiles.bind(this), this._didLoadLeaksFile.bind(this));
-        this._parser = new LeaksParser(this._didParseLeaksFile.bind(this));
-
-        this._loadingIndicator = document.getElementById("loading-indicator");
-        this._loadingIndicatorLabel = document.getElementById("loading-indicator-label");
-
-        this._profileView = new WebInspector.CPUProfileView({});
-        document.getElementById("main-panels").appendChild(this._profileView.element);
-        this._profileView.show();
-
-        // From WebInspector.Panel.prototype.show
-        var statusBarItems = this._profileView.statusBarItems;
-        if (statusBarItems) {
-            this._statusBarItemContainer = document.createElement("div");
-            for (var i = 0; i < statusBarItems.length; ++i)
-                this._statusBarItemContainer.appendChild(statusBarItems[i]);
-            document.getElementById("main-status-bar").appendChild(this._statusBarItemContainer);
-        }
-
-        var url;
-        var match = /url=([^&]+)/.exec(location.search);
-        if (match)
-            url = decodeURIComponent(match[1]);
-
-        if (url)
-            this._loadLeaksFromURL(url)
-        else
-            this._displayURLPrompt();
-    },
-
-    get filesLeftToParse() {
-        if (!('_filesLeftToParse' in this))
-            this._filesLeftToParse = 0;
-        return this._filesLeftToParse;
-    },
-
-    set filesLeftToParse(x) {
-        if (this._filesLeftToParse === x)
-            return;
-        this._filesLeftToParse = x;
-        this._loadingStatusChanged();
-    },
-
-    get loading() {
-        return this._isLoading;
-    },
-
-    set loading(x) {
-        if (this._isLoading === x)
-            return;
-        this._isLoading = x;
-        this._loadingStatusChanged();
-    },
-
-    get url() {
-        return this._url;
-    },
-
-    set url(x) {
-        if (this._url === x)
-            return;
-
-        this._url = x;
-        this._updateTitle();
-    },
-
-    urlPromptButtonClicked: function(e) {
-        this._urlChosenFromPrompt(document.getElementById("url").value);
-    },
-
-    _didCountLeaksFiles: function(fileCount) {
-        this._fileCount = fileCount;
-        this.filesLeftToParse = fileCount;
-    },
-
-    _didLoadLeaksFile: function(leaksText) {
-        this._parser.addLeaksFile(leaksText);
-    },
-
-    _didLoadRecentBuilds: function(builds) {
-        this._recentBuilds = builds;
-        this._updateURLPrompt();
-    },
-
-    _didParseLeaksFile: function(profile) {
-        if (--this.filesLeftToParse)
-            return;
-        ProfilerAgent.profileReady(profile);
-        this.loading = false;
-    },
-
-    _displayURLPrompt: function() {
-        document.getElementById("url-prompt-container").removeStyleClass("hidden");
-        document.getElementById("url").focus();
-        var loader = new RecentBuildsLoader(this._didLoadRecentBuilds.bind(this));
-        loader.start("Lion Leaks", this._numberOfRecentBuildsToLoad);
-    },
-
-    _loadLeaksFromURL: function(url) {
-        this.url = url;
-        this.loading = true;
-
-        this._loader.start(this.url);
-    },
-
-    _loadingIndicatorText: function() {
-        var text = "Loading";
-        if (this.filesLeftToParse)
-            text += " " + (this._fileCount - this.filesLeftToParse + 1) + "/" + this._fileCount + " files";
-        text += "\u2026";
-        return text;
-    },
-
-    _loadingStatusChanged: function() {
-        this._setLoadingIndicatorHidden(!this.loading);
-        this._updateLoadingIndicatorLabel();
-        this._updateTitle();
-    },
-
-    _numberOfRecentBuildsToLoad: 10,
-
-    _setLoadingIndicatorHidden: function(hidden) {
-        if (hidden)
-            this._loadingIndicator.addStyleClass("hidden");
-        else
-            this._loadingIndicator.removeStyleClass("hidden");
-    },
-
-    _updateLoadingIndicatorLabel: function() {
-        this._loadingIndicatorLabel.innerText = this._loadingIndicatorText();
-    },
-
-    _updateTitle: function() {
-        var title = "Leaks Viewer \u2014 ";
-        if (this.loading)
-            title += "(" + this._loadingIndicatorText() + ") ";
-        title += this.url;
-        document.title = title;
-    },
-
-    _updateURLPrompt: function() {
-        var recentBuildsContainer = document.getElementById("recent-builds-container");
-        recentBuildsContainer.removeChildren();
-        if (this._recentBuilds && this._recentBuilds.length) {
-            var list = document.createElement("ol");
-            list.id = "recent-builds-list";
-
-            var self = this;
-            this._recentBuilds.forEach(function(build) {
-                var link = document.createElement("a");
-                link.href = document.location.href + "?url=" + encodeURIComponent(build.url);
-                link.addEventListener("click", function(e) {
-                    self._urlChosenFromPrompt(build.url);
-                    e.preventDefault();
-                });
-                link.appendChild(document.createTextNode("r" + build.revision + ": " + build.leakCount + " leaks"));
-                var item = document.createElement("li");
-                item.appendChild(link);
-
-                list.appendChild(item);
-            });
-
-            recentBuildsContainer.appendChild(list);
-        } else
-            recentBuildsContainer.appendChild(document.createTextNode("No recent leaky builds found."));
-    },
-
-    _urlChosenFromPrompt: function(url) {
-        this._loadLeaksFromURL(url);
-        document.getElementById("url-prompt-container").addStyleClass("hidden");
-    },
-
-};
-
-addEventListener("load", LeaksViewer.loaded.bind(LeaksViewer));
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/RecentBuildsLoader.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/RecentBuildsLoader.js
deleted file mode 100644
index 33fd00c..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/RecentBuildsLoader.js
+++ /dev/null
@@ -1,81 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-function RecentBuildsLoader(didLoadRecentBuildsCallback) {
-    this._didLoadRecentBuildsCallback = didLoadRecentBuildsCallback;
-}
-
-RecentBuildsLoader.prototype = {
-    start: function(builderName, maximumNumberOfBuilds) {
-        var url = this._buildbotBaseURL + "/json/builders/" + builderName + "/builds/?";
-        url += range(maximumNumberOfBuilds).map(function(n) { return "select=-" + (n + 1); }).join("&");
-        var self = this;
-        getResource(url, function(xhr) {
-            var data = JSON.parse(xhr.responseText);
-            var builds = [];
-            Object.keys(data).forEach(function(buildNumber) {
-                var build = data[buildNumber];
-
-                var buildInfo = {
-                    revision: parseInt(build.properties.first(function(property) { return property[0] === "got_revision"; })[1], 10),
-                    leakCount: 0,
-                    url: null,
-                };
-                for (var stepIndex = 0; stepIndex < build.steps.length; ++stepIndex) {
-                    var step = build.steps[stepIndex];
-                    if (step.name === "layout-test") {
-                        if (!("text" in step))
-                            continue;
-                        var strings = step.text;
-                        for (var stringIndex = 0; stringIndex < strings.length; ++stringIndex) {
-                            var match = /^(\d+) total leaks found/.exec(strings[stringIndex]);
-                            if (!match)
-                                continue;
-                            buildInfo.leakCount = parseInt(match[1], 10);
-                            break;
-                        }
-                    } else if (step.name === "MasterShellCommand") {
-                        if (!("urls" in step))
-                            return;
-                        if (!("view results" in step.urls))
-                            return;
-                        var url = step.urls["view results"];
-                        buildInfo.url = self._buildbotBaseURL + url.replace(/\/results\.html$/, "") + "/";
-                    }
-
-                    if (buildInfo.leakCount && buildInfo.url) {
-                        builds.push(buildInfo);
-                        break;
-                    }
-                }
-            });
-            // Sort descending by revision.
-            builds.sort(function(a, b) { return b.revision - a.revision; });
-            self._didLoadRecentBuildsCallback(builds);
-        });
-    },
-
-    _buildbotBaseURL: "http://build.webkit.org/",
-};
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/Utilities.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/Utilities.js
deleted file mode 100644
index 32fe7cb..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/Utilities.js
+++ /dev/null
@@ -1,66 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-function getResource(url, callback) {
-    var xhr = new XMLHttpRequest();
-    xhr.onreadystatechange = function() {
-        // Allow a status of 0 for easier testing with local files.
-        if (this.readyState == 4 && (!this.status || this.status == 200))
-            callback(this);
-    };
-    xhr.open("GET", url);
-    xhr.send();
-}
-
-function range(n) {
-    var result = new Array(n);
-    for (var i = 0; i < n; ++i)
-        result[i] = i;
-    return result;
-}
-
-function workersSupportCyclicStructures() {
-    var worker = new Worker("Utilities.js");
-    var supportsCyclicStructures = true;
-
-    try {
-        var cyclicStructure = { cycle: null };
-        cyclicStructure.cycle = cyclicStructure;
-
-        worker.postMessage(cyclicStructure);
-    } catch(e) {
-        supportsCyclicStructures = false;
-    }
-
-    return supportsCyclicStructures;
-}
-
-Array.prototype.first = function(predicate) {
-    for (var i = 0; i < this.length; ++i) {
-        if (predicate(this[i]))
-            return this[i];
-    }
-    return null;
-}
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/WebInspectorShims.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/WebInspectorShims.js
deleted file mode 100644
index d7c1309..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/WebInspectorShims.js
+++ /dev/null
@@ -1,97 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-// This file contains definitions that are needed to satisfy the Web Inspector JavaScript files we
-// import.
-
-var WebInspector = {
-    displayNameForURL: function(url) {
-        return url;
-    },
-
-    linkifyURLAsNode: function(url, linkText, classes, tooltipText) {
-        if (!linkText)
-            linkText = url;
-        classes = (classes ? classes + " " : "");
-
-        // FIXME: Create an <a> element here once we actually have somewhere useful to link to.
-        // <http://webkit.org/b/72509>
-        var a = document.createElement("span");
-        a.href = url;
-        a.className = classes;
-        if (typeof tooltipText === "undefined")
-            a.title = url;
-        else if (typeof tooltipText !== "string" || tooltipText.length)
-            a.title = tooltipText;
-        a.textContent = linkText;
-
-        return a;
-    },
-
-    linkifyResourceAsNode: function(url, preferredPanel, lineNumber, classes, tooltipText) {
-        var linkText = WebInspector.displayNameForURL(url);
-        if (lineNumber)
-            linkText += ":" + lineNumber;
-        return WebInspector.linkifyURLAsNode(url, linkText, classes, tooltipText);
-    },
-
-    UIString: function(string) {
-        return String.vsprintf(string, Array.prototype.slice.call(arguments, 1));
-    },
-};
-
-var Preferences = {
-    // Setting this to false causes the "Average" and "Calls" columns to be shown.
-    samplingCPUProfiler: false,
-};
-
-var ProfilerAgent = {
-    getProfile: function(typeId, uid, callback) {
-        this._callback = callback;
-    },
-
-    profileReady: function(head) {
-        this._callback({ head: head });
-    },
-};
-
-// This function makes any required changes to objects imported from the Web Inspector JavaScript
-// files.
-function monkeyPatchInspectorObjects() {
-    var originalGetter = WebInspector.ProfileDataGridNode.prototype.__lookupGetter__("data");
-    WebInspector.ProfileDataGridNode.prototype.__defineGetter__("data", function() {
-        var data = originalGetter.call(this);
-
-        // ProfileDataGridNode formats values as milliseconds, but we are instead measuring bytes.
-        if (!this.profileView.showSelfTimeAsPercent)
-            data.self = Number.bytesToString(this.selfTime);
-        if (!this.profileView.showTotalTimeAsPercent)
-            data.total = Number.bytesToString(this.totalTime);
-        if (!this.profileView.showAverageTimeAsPercent)
-            data.average = Number.bytesToString(this.averageTime);
-
-        return data;
-    });
-}
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/index.html b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/index.html
deleted file mode 100644
index 914e74f..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/index.html
+++ /dev/null
@@ -1,81 +0,0 @@
-<!--
-Copyright (C) 2011 Apple Inc. All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions
-are met:
-1. Redistributions of source code must retain the above copyright
-   notice, this list of conditions and the following disclaimer.
-2. Redistributions in binary form must reproduce the above copyright
-   notice, this list of conditions and the following disclaimer in the
-   documentation and/or other materials provided with the distribution.
-
-THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
-BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-THE POSSIBILITY OF SUCH DAMAGE.
--->
-
-<!DOCTYPE html>
-<html>
-<head>
-    <title>Leaks Viewer</title>
-    <link rel=stylesheet href="http://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/inspector.css">
-    <link rel=stylesheet href=LeaksViewer.css>
-
-    <script src=WebInspectorShims.js></script>
-
-    <!-- The order here matches inspector.html. -->
-    <script src="http://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/utilities.js"></script>
-    <script src="http://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/treeoutline.js"></script>
-    <script src="http://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/Object.js"></script>
-    <script src="http://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/View.js"></script>
-    <script src="http://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/Panel.js"></script>
-    <script src="http://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/DataGrid.js"></script>
-    <script src="http://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/SidebarTreeElement.js"></script>
-    <script src="http://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/StatusBarButton.js"></script>
-    <script src="http://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/ProfilesPanel.js"></script>
-    <script src="http://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/ProfileDataGridTree.js"></script>
-    <script src="http://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/BottomUpProfileDataGridTree.js"></script>
-    <script src="http://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/TopDownProfileDataGridTree.js"></script>
-    <script src="http://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/ProfileView.js"></script>
-
-    <script>
-        // Now that all the Inspector files have loaded we can apply our monkey patches.
-        monkeyPatchInspectorObjects();
-    </script>
-
-    <script src=LeaksLoader.js></script>
-    <script src=LeaksParser.js></script>
-    <script src=LeaksParserImpl.js></script>
-    <script src=LeaksViewer.js></script>
-    <script src=RecentBuildsLoader.js></script>
-    <script src=Utilities.js></script>
-</head>
-<body>
-    <div id=main-panels></div>
-    <div id=main-status-bar class=status-bar>
-        <div id=loading-indicator class=hidden>
-            <img id=spinner src=http://svn.webkit.org/repository/webkit/!svn/bc/80565/trunk/Source/WebCore/inspector/front-end/Images/spinner.gif>
-            <span id=loading-indicator-label>Loading&hellip;</span>
-        </div>
-    </div>
-    <div id=url-prompt-container class=hidden>
-        <div id=url-prompt>
-            <p>Enter the URL of a build results page or leaks file:</p>
-            <input id=url type=url><button onclick='LeaksViewer.urlPromptButtonClicked(event)'>Fetch leaks</button>
-            <p>Or choose a recent build:</p>
-            <div id=recent-builds-container>
-                <p id=recent-builds-loading-indicator>Loading builds&hellip;</p>
-            </div>
-        </div>
-    </div>
-</body>
-</html>
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html
deleted file mode 100644
index 24b0607..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html
+++ /dev/null
@@ -1,72 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright (C) 2011 Google Inc. All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions
-are met:
-1. Redistributions of source code must retain the above copyright
-   notice, this list of conditions and the following disclaimer.
-2. Redistributions in binary form must reproduce the above copyright
-   notice, this list of conditions and the following disclaimer in the
-   documentation and/or other materials provided with the distribution.
-
-THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
-BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-THE POSSIBILITY OF SUCH DAMAGE.
-
-The favicons are from the awesome famfamfam.com, which is the website of Mark
-James, a web developer from Birmingham, UK.
--->
-<html>
-<head>
-<meta http-equiv="X-WebKit-CSP" content="default-src 'none';
-                                         script-src 'self' file: https://ajax.googleapis.com;
-                                         style-src 'self' 'unsafe-inline' file: https://ajax.googleapis.com http://fonts.googleapis.com;
-                                         font-src http://themes.googleusercontent.com;
-                                         img-src 'self' https://ajax.googleapis.com http://build.chromium.org http://build.webkit.org;
-                                         media-src 'self' http://build.chromium.org http://build.webkit.org;
-                                         frame-src 'self' http://build.chromium.org http://build.webkit.org http://test-results.appspot.com;
-                                         connect-src 'self' http://trac.webkit.org http://build.chromium.org http://build.webkit.org">
-<title>Garden-O-Matic</title>
-<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:400,700">
-<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.15/themes/base/jquery-ui.css">
-<link rel="stylesheet" href="styles/common.css">
-<link rel="stylesheet" href="styles/onebar.css">
-<link rel="stylesheet" href="styles/failures.css">
-<link rel="stylesheet" href="styles/results.css">
-<link rel="stylesheet" href="styles/notifications.css">
-<link rel="stylesheet" href="styles/perf.css">
-<link rel="stylesheet" href="styles/pixelzoomer.css">
-</head>
-<body>
-<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
-<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.15/jquery-ui.min.js"></script>
-<script src="scripts/base.js"></script>
-<script src="scripts/config.js"></script>
-<script src="scripts/net.js"></script>
-<script src="scripts/Trac.js"></script>
-<script src="scripts/Bugzilla.js"></script>
-<script src="scripts/builders.js"></script>
-<script src="scripts/checkout.js"></script>
-<script src="scripts/results.js"></script>
-<script src="scripts/ui.js"></script>
-<script src="scripts/model.js"></script>
-<script src="scripts/ui/actions.js"></script>
-<script src="scripts/ui/failures.js"></script>
-<script src="scripts/ui/notifications.js"></script>
-<script src="scripts/ui/perf.js"></script>
-<script src="scripts/ui/results.js"></script>
-<script src="scripts/controllers.js"></script>
-<script src="scripts/pixelzoomer.js"></script>
-<script src="scripts/garden-o-matic.js"></script>
-</body>
-</html>
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/index.html b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/index.html
deleted file mode 100644
index 9e4ce75..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/index.html
+++ /dev/null
@@ -1,61 +0,0 @@
-<!--
-Copyright (C) 2011 Apple Inc. All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions
-are met:
-1. Redistributions of source code must retain the above copyright
-   notice, this list of conditions and the following disclaimer.
-2. Redistributions in binary form must reproduce the above copyright
-   notice, this list of conditions and the following disclaimer in the
-   documentation and/or other materials provided with the distribution.
-
-THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
-BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-THE POSSIBILITY OF SUCH DAMAGE.
--->
-
-<!DOCTYPE html>
-<html>
-<head>
-    <link rel="stylesheet" href="styles/TestFailures.css"></link>
-    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
-
-    <script src="scripts/config.js"></script>
-    <script src="scripts/base.js"></script>
-    <script src="scripts/net.js"></script>
-    <script src="scripts/Trac.js"></script>
-
-    <script src="scripts/Utilities.js"></script>
-    <script src="scripts/NewBugForm.js"></script>
-    <script src="scripts/TestRelatedBugForm.js"></script>
-    <script src="scripts/FailingTestsBugForm.js"></script>
-    <script src="scripts/FlakyTestBugForm.js"></script>
-
-    <script src="scripts/Bugzilla.js"></script>
-    <script src="scripts/Buildbot.js"></script>
-    <script src="scripts/Builder.js"></script>
-    <script src="scripts/FlakyLayoutTestDetector.js"></script>
-    <script src="scripts/LayoutTestHistoryAnalyzer.js"></script>
-    <script src="scripts/LayoutTestResultsLoader.js"></script>
-    <script src="scripts/NRWTResultsParser.js"></script>
-    <script src="scripts/ORWTResultsParser.js"></script>
-    <script src="scripts/PersistentCache.js"></script>
-    <script src="scripts/ViewController.js"></script>
-    <script src="scripts/WebKitBugzilla.js"></script>
-    <script src="scripts/WebKitBuildbot.js"></script>
-    <script>
-        var viewController = new ViewController(new WebKitBuildbot());
-    </script>
-</head>
-<body>
-</body>
-</html>
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html
deleted file mode 100644
index 2ce6e71..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html
+++ /dev/null
@@ -1,103 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright (C) 2011 Google Inc. All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions
-are met:
-1. Redistributions of source code must retain the above copyright
-   notice, this list of conditions and the following disclaimer.
-2. Redistributions in binary form must reproduce the above copyright
-   notice, this list of conditions and the following disclaimer in the
-   documentation and/or other materials provided with the distribution.
-
-THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
-BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-THE POSSIBILITY OF SUCH DAMAGE.
--->
-<html>
-<head>
-<link rel="stylesheet" href="../../../../../Source/ThirdParty/qunit/qunit/qunit.css">
-<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> 
-<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.15/jquery-ui.min.js"></script>
-<script src="../../../../../Source/ThirdParty/qunit/qunit/qunit.js"></script>
-</head>
-<body>
-<h1 id="qunit-header">TestFailures JavaScript Unit Tests</h1>
-<h2 id="qunit-banner"></h2>
-<div id="qunit-testrunner-toolbar"></div>
-<h2 id="qunit-userAgent"></h2>
-<ol id="qunit-tests"></ol>
-
-<link rel="stylesheet" href="styles/results.css">
-
-<script src="scripts/base.js"></script>
-<script src="scripts/config.js"></script>
-<script src="scripts/base_unittests.js"></script>
-<script src="scripts/net.js"></script>
-<script src="scripts/net_unittests.js"></script>
-<script src="scripts/Trac.js"></script>
-<script src="scripts/trac_unittests.js"></script>
-<script src="scripts/Bugzilla.js"></script>
-<script src="scripts/bugzilla_unittests.js"></script>
-<script src="scripts/builders.js"></script>
-<script src="scripts/builders_unittests.js"></script>
-<script src="scripts/checkout.js"></script>
-<script src="scripts/checkout_unittests.js"></script>
-<script src="scripts/results.js"></script>
-<script src="scripts/results_unittests.js"></script>
-<script src="scripts/ui.js"></script>
-<script src="scripts/ui/actions.js"></script>
-<script src="scripts/ui/actions_unittests.js"></script>
-<script src="scripts/ui/failures.js"></script>
-<script src="scripts/ui/failures_unittests.js"></script>
-<script src="scripts/ui/results.js"></script>
-<script src="scripts/controllers.js"></script> <!-- This script is slightly of order. -->
-<script src="scripts/ui/results_unittests.js"></script>
-<script src="scripts/ui_unittests.js"></script>
-<script src="scripts/model.js"></script>
-<script src="scripts/model_unittests.js"></script>
-<script src="scripts/ui/notifications.js"></script>
-<script src="scripts/ui/notifications_unittests.js"></script>
-<script src="scripts/ui/perf.js"></script>
-<script src="scripts/ui/perf_unittests.js"></script>
-<script src="scripts/controllers_unittests.js"></script>
-
-<!-- FIXME: We should have tests for these files! -->
-<script src="scripts/Bugzilla.js"></script>
-<script src="scripts/WebKitBugzilla.js"></script>
-
-<script src="scripts/Utilities.js"></script>
-<script src="scripts/Utilities_unittests.js"></script>
-
-<script src="scripts/NewBugForm.js"></script>
-<script src="scripts/NewBugForm_unittests.js"></script>
-
-<script src="scripts/TestRelatedBugForm.js"></script>
-<script src="scripts/TestRelatedBugForm_unittests.js"></script>
-
-<script src="scripts/FailingTestsBugForm.js"></script>
-<script src="scripts/FailingTestsBugForm_unittests.js"></script>
-
-<script src="scripts/FlakyTestBugForm.js"></script>
-<script src="scripts/FlakyTestBugForm_unittests.js"></script>
-
-<script src="scripts/FlakyLayoutTestDetector.js"></script>
-<script src="scripts/FlakyLayoutTestDetector_unittests.js"></script>
-
-<script src="scripts/Buildbot.js"></script>
-<script src="scripts/Buildbot_unittests.js"></script>
-
-<script src="scripts/Builder.js"></script>
-<script src="scripts/Builder_unittests.js"></script>
-
-</body>
-</html>
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Bugzilla.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Bugzilla.js
deleted file mode 100644
index 2c441fb..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Bugzilla.js
+++ /dev/null
@@ -1,91 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-var bugzilla = bugzilla || {};
-
-(function() {
-
-var kOpenStatuses = {
-    UNCONFIRMED: true,
-    NEW: true,
-    ASSIGNED: true,
-    REOPENED: true,
-};
-
-function createDetachedFragment(htmlFragment)
-{
-    // Step 1: Create a detached Document to perform the parsing.
-    var detachedDocument = document.implementation.createHTMLDocument();
-
-    // Step 2: Create a detached Element associated with the detached Document.
-    var container = detachedDocument.createElement('div');
-
-    // Step 3: Pull the trigger.
-    container.innerHTML = htmlFragment;
-    return container;
-}
-
-var g_searchCache = new base.AsynchronousCache(function(query, callback) {
-    var url = config.kBugzillaURL + '/buglist.cgi?' + $.param({
-        ctype: 'rss',
-        order: 'bugs.bug_id desc',
-        quicksearch: query,
-    });
-
-    net.get(url, function(responseXML) {
-        var entries = responseXML.getElementsByTagName('entry');
-        var results = Array.prototype.map.call(entries, function(entry) {
-            var htmlFragment = entry.getElementsByTagName('summary')[0].textContent;
-            var fragment = createDetachedFragment(htmlFragment);
-            var statusRow = fragment.querySelector('tr.bz_feed_bug_status');
-            return {
-                title: entry.getElementsByTagName('title')[0].textContent,
-                url: entry.getElementsByTagName('id')[0].textContent,
-                status: statusRow.cells[1].textContent,
-            };
-        });
-        callback(results);
-    });
-});
-
-bugzilla.bugURL = function(bugNumber)
-{
-    return config.kBugzillaURL + '/show_bug.cgi?id=' + bugNumber;
-};
-
-bugzilla.quickSearch = function(query, callback)
-{
-    g_searchCache.get(query, callback);
-};
-
-bugzilla.isOpenStatus = function(status)
-{
-    return status in kOpenStatuses;
-};
-
-// This value is built-in to all Bugzilla installations. See <http://webkit.org/b/61660>.
-bugzilla.kMaximumBugTitleLength = 255;
-
-})();
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Buildbot.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Buildbot.js
deleted file mode 100644
index c500a5d..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Buildbot.js
+++ /dev/null
@@ -1,80 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-function Buildbot(baseURL) {
-    this.baseURL = baseURL;
-    this._cache = {};
-}
-
-Buildbot.prototype = {
-    _builders: {},
-    _resultsDirectory: 'results/',
-
-    buildURL: function(builderName, buildName) {
-        return this.baseURL + 'builders/' + builderName + '/builds/' + buildName;
-    },
-
-    builderNamed: function(name) {
-        if (!(name in this._builders))
-            this._builders[name] = new Builder(name, this);
-        return this._builders[name];
-    },
-
-    getTesters: function(callback) {
-        var cacheKey = 'getTesters';
-        if (cacheKey in this._cache) {
-            callback(this._buildersForNames(this._cache[cacheKey]));
-            return;
-        }
-
-        var self = this;
-        getResource(this.baseURL + this._resultsDirectory, function(xhr) {
-            var root = document.createElement('html');
-            root.innerHTML = xhr.responseText;
-            var names = Array.prototype.map.call(root.querySelectorAll('td:first-child > a > b'), function(elem) {
-                return elem.innerText.replace(/\/$/, '');
-            });
-
-            self._cache[cacheKey] = names;
-            callback(self._buildersForNames(names));
-        });
-    },
-
-    // Returns an object with at least the following properties:
-    //   revision: source revision number for this build (integer)
-    //   buildNumber: number of this build (integer)
-    parseBuildName: function(buildName) {
-        throw "Derived classes must implement";
-    },
-
-    resultsDirectoryURL: function(builderName, buildName) {
-        return this.baseURL + this._resultsDirectory + encodeURIComponent(builderName) + '/' + encodeURIComponent(buildName) + '/';
-    },
-
-    _buildersForNames: function(names) {
-        var self = this;
-        return names.map(function(name) { return self.builderNamed(name) });
-    },
-};
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Buildbot_unittests.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Buildbot_unittests.js
deleted file mode 100644
index 5b48fce..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Buildbot_unittests.js
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-(function() {
-
-module('Buildbot');
-
-test('resultsDirectoryURL is URI-encoded', 1, function() {
-    var buildbot = new Buildbot('http://build.example.com/');
-    equal(buildbot.resultsDirectoryURL('Windows 7 Release (Tests)', 'r10 (5)'), 'http://build.example.com/results/Windows%207%20Release%20(Tests)/r10%20(5)/');
-});
-
-})();
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Builder.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Builder.js
deleted file mode 100644
index 0e7bc45..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Builder.js
+++ /dev/null
@@ -1,240 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-function Builder(name, buildbot) {
-    this.name = name;
-    this.buildbot = buildbot;
-    this._cache = {};
-}
-
-Builder.prototype = {
-    buildURL: function(buildName) {
-        return this.buildbot.buildURL(this.name, buildName);
-    },
-
-    failureDiagnosisTextAndURL: function(buildName, testName, testResult) {
-        var urlStem = this.resultsDirectoryURL(buildName) + testName.replace(/\.[^.]+$/, '');
-        var diagnosticInfo = {
-            fail: {
-                text: 'pretty diff',
-                url: urlStem + '-pretty-diff.html',
-            },
-            flaky: {
-                text: 'pretty diff (flaky)',
-                url: urlStem + '-pretty-diff.html',
-            },
-            timeout: {
-                text: 'timed out',
-            },
-            crash: {
-                text: 'crash log',
-                url: urlStem + '-crash-log.txt',
-            },
-            'webprocess crash': {
-                text: 'web process crash log',
-                url: urlStem + '-crash-log.txt',
-            },
-        };
-
-        return diagnosticInfo[testResult.failureType];
-    },
-
-    getBuildNames: function(callback) {
-        this._getBuildNamesFromResultsDirectory(this.buildbot.baseURL + 'results/' + this.name, callback);
-    },
-
-    getMostRecentCompletedBuildNumber: function(callback) {
-        var cacheKey = 'getMostRecentCompletedBuildNumber';
-        if (cacheKey in this._cache) {
-            callback(this._cache[cacheKey]);
-            return;
-        }
-
-        var self = this;
-        getResource(self.buildbot.baseURL + 'json/builders/' + self.name, function(xhr) {
-            var data = JSON.parse(xhr.responseText);
-
-            var currentBuilds = {};
-            if ('currentBuilds' in data)
-                data.currentBuilds.forEach(function(buildNumber) { currentBuilds[buildNumber] = true });
-
-            for (var i = data.cachedBuilds.length - 1; i >= 0; --i) {
-                if (data.cachedBuilds[i] in currentBuilds)
-                    continue;
-
-                self._cache[cacheKey] = data.cachedBuilds[i];
-                callback(data.cachedBuilds[i]);
-                return;
-            }
-
-            self._cache[cacheKey] = -1;
-            callback(self._cache[cacheKey]);
-        },
-        function(xhr) {
-            self._cache[cacheKey] = -1;
-            callback(self._cache[cacheKey]);
-        });
-    },
-
-    getNumberOfFailingTests: function(buildNumber, callback) {
-        var cacheKey = this.name + '_getNumberOfFailingTests_' + buildNumber;
-        const currentCachedDataVersion = 3;
-        if (PersistentCache.contains(cacheKey)) {
-            var cachedData = PersistentCache.get(cacheKey);
-            if (cachedData.version === currentCachedDataVersion) {
-                callback(cachedData.failureCount, cachedData.tooManyFailures);
-                return;
-            }
-        }
-
-        var result = { failureCount: -1, tooManyFailures: false, version: currentCachedDataVersion };
-
-        var self = this;
-        self._getBuildJSON(buildNumber, function(data) {
-            var layoutTestStep = data.steps.findFirst(function(step) { return step.name === 'layout-test'; });
-            if (!layoutTestStep) {
-                PersistentCache.set(cacheKey, result);
-                callback(result.failureCount, result.tooManyFailures);
-                return;
-            }
-
-            if (!('isFinished' in layoutTestStep)) {
-                // run-webkit-tests never even ran, or didn't finish running.
-                PersistentCache.set(cacheKey, result);
-                callback(result.failureCount, result.tooManyFailures);
-                return;
-            }
-
-            if (!('results' in layoutTestStep) || layoutTestStep.results[0] === 0) {
-                if (!('times' in layoutTestStep) || layoutTestStep.times.length < 2 || layoutTestStep.times[1] - layoutTestStep.times[0] < self._minimumSuccessfulLayoutTestStepRunTime) {
-                    // Either something caused the start/stop times not to be recorded, or
-                    // run-webkit-tests ran so quickly that we can't believe there wasn't an error
-                    // (e.g., a bug in the script that made it not find any tests to run).
-                    PersistentCache.set(cacheKey, result);
-                    callback(result.failureCount, result.tooManyFailures);
-                    return;
-                }
-
-                // All tests passed.
-                result.failureCount = 0;
-                PersistentCache.set(cacheKey, result);
-                callback(result.failureCount, result.tooManyFailures);
-                return;
-            }
-
-            if (layoutTestStep.results[0] === 4) {
-                // This build step was interrupted (perhaps due to the build slave restarting).
-                PersistentCache.set(cacheKey, result);
-                callback(result.failureCount, result.tooManyFailures);
-                return;
-            }
-
-            if (/Exiting early/.test(layoutTestStep.results[1][0]))
-                result.tooManyFailures = true;
-
-            result.failureCount = layoutTestStep.results[1].reduce(function(sum, outputLine) {
-                var match = /^(\d+)\s/.exec(outputLine);
-                if (!match)
-                    return sum;
-                // Don't count leaks, new tests, or passes as failures.
-                if (outputLine.contains('leak') || outputLine.contains('were new') || outputLine.contains('new passes'))
-                    return sum;
-                return sum + parseInt(match[1], 10);
-            }, 0);
-
-            if (!result.failureCount) {
-                // run-webkit-tests exited with a non-zero exit status, but we
-                // didn't find any output about the number of failed tests.
-                // Something must have gone wrong (e.g., run-webkit-tests timed
-                // out and was killed by buildbot).
-                result.failureCount = -1;
-            }
-
-            PersistentCache.set(cacheKey, result);
-            callback(result.failureCount, result.tooManyFailures);
-        });
-    },
-
-    getOldBuildNames: function(callback) {
-        this._getBuildNamesFromResultsDirectory(this.buildbot.baseURL + 'old-results/' + this.name, callback);
-    },
-
-    resultsDirectoryURL: function(buildName) {
-        return this.buildbot.resultsDirectoryURL(this.name, buildName);
-    },
-
-    resultsPageURL: function(buildName) {
-        return this.resultsDirectoryURL(buildName) + 'results.html';
-    },
-
-    _getBuildJSON: function(buildNumber, callback) {
-        var cacheKey = 'getBuildJSON_' + buildNumber;
-        if (cacheKey in this._cache) {
-            callback(this._cache[cacheKey]);
-            return;
-        }
-
-        var self = this;
-        getResource(self.buildbot.baseURL + 'json/builders/' + self.name + '/builds/' + buildNumber, function(xhr) {
-            var data = JSON.parse(xhr.responseText);
-            self._cache[cacheKey] = data;
-            callback(data);
-        });
-    },
-
-    _getBuildNamesFromResultsDirectory: function(directoryURL, callback) {
-        var cacheKey = '_getBuildNamesFromResultsDirectory.' + directoryURL;
-        if (cacheKey in this._cache) {
-            callback(this._cache[cacheKey]);
-            return;
-        }
-
-        var self = this;
-
-        function buildNamesFromDirectoryXHR(xhr) {
-            var root = document.createElement('html');
-            root.innerHTML = xhr.responseText;
-
-            var buildNames = Array.prototype.map.call(root.querySelectorAll('td:first-child > a > b'), function(elem) {
-                return elem.innerText.replace(/\/$/, '');
-            }).filter(function(filename) {
-                return self.buildbot.parseBuildName(filename);
-            });
-            buildNames.reverse();
-
-            return buildNames;
-        }
-
-        getResource(directoryURL, function(xhr) {
-            var buildNames = buildNamesFromDirectoryXHR(xhr);
-            self._cache[cacheKey] = buildNames;
-            callback(buildNames);
-        });
-    },
-
-    // Any successful runs of run-webkit-tests that took less than this number of seconds are
-    // assumed to be errors.
-    _minimumSuccessfulLayoutTestStepRunTime: 20,
-};
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Builder_unittests.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Builder_unittests.js
deleted file mode 100644
index 0b980ab..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Builder_unittests.js
+++ /dev/null
@@ -1,269 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-(function() {
-
-module("Builder");
-
-function runGetNumberOfFailingTestsTest(jsonData, callback) {
-    var mockBuildbot = {};
-    mockBuildbot.baseURL = 'http://example.com/';
-
-    var builder = new Builder('test builder', mockBuildbot);
-
-    var realGetResource = window.getResource;
-    window.getResource = function(url, successCallback, errorCallback) {
-        var mockXHR = {};
-        mockXHR.responseText = JSON.stringify(jsonData);
-
-        // FIXME: It would be better for this callback to happen
-        // asynchronously, to match what happens for real requests.
-        successCallback(mockXHR);
-    };
-
-    // FIXME: It's lame to be modifying singletons like this. We should get rid
-    // of our singleton usage entirely!
-    ok(!("PersistentCache" in window));
-    window.PersistentCache = {
-        contains: function() { return false; },
-        set: function() { },
-        get: function() { },
-    };
-
-    builder.getNumberOfFailingTests(1, callback);
-
-    window.getResource = realGetResource;
-    equal(window.getResource, realGetResource);
-    delete window.PersistentCache;
-}
-
-test("getNumberOfFailingTests shouldn't include leaks", 4, function() {
-    const jsonData = {
-        steps: [
-            {
-                isFinished: true,
-                isStarted: true,
-                name: 'layout-test',
-                results: [
-                    2,
-                    [
-                        "2178 total leaks found!", 
-                        "2 test cases (<1%) had incorrect layout", 
-                        "2 test cases (<1%) crashed",
-                    ],
-                ],
-                times: [
-                    1310599204.1231229,
-                    1310600152.973659,
-                ]
-            },
-        ],
-    };
-
-    runGetNumberOfFailingTestsTest(jsonData, function(failureCount, tooManyFailures) {
-        equal(failureCount, 4);
-        equal(tooManyFailures, false);
-    });
-});
-
-test("getNumberOfFailingTests detects spurious run-webkit-tests failures", 4, function() {
-    const jsonData = {
-        steps: [
-            {
-                isFinished: true, 
-                isStarted: true, 
-                name: "layout-test", 
-                results: [
-                    2, 
-                    [
-                        "layout-test"
-                    ]
-                ], 
-                step_number: 7, 
-                text: [
-                    "layout-test"
-                ], 
-                times: [
-                    1310437736.00494, 
-                    1310440118.038023
-                ],
-            }, 
-        ],
-    };
-
-    runGetNumberOfFailingTestsTest(jsonData, function(failureCount, tooManyFailures) {
-        equal(failureCount, -1);
-        equal(tooManyFailures, false);
-    });
-});
-
-test("getNumberOfFailingTests understands NRWT exiting early due to too many failures", 4, function() {
-    const jsonData = {
-        steps: [
-            {
-                isFinished: true, 
-                isStarted: true, 
-                name: "layout-test", 
-                results: [
-                  2, 
-                  [
-                      "2011-07-13 04:38:46,315 11247 manager.py:780 WARNING Exiting early after 20 crashes and 0 timeouts. 2251 tests run.", 
-                      "20 failed"
-                  ]
-                ], 
-                step_number: 4, 
-                text: [
-                    "2011-07-13 04:38:46,315 11247 manager.py:780 WARNING Exiting early after 20 crashes and 0 timeouts. 2251 tests run.", 
-                    "20 failed"
-                ], 
-                times: [
-                    1310557115.793082, 
-                    1310557129.832104
-                ]
-            }, 
-        ],
-    };
-
-    runGetNumberOfFailingTestsTest(jsonData, function(failureCount, tooManyFailures) {
-        equal(failureCount, 20);
-        equal(tooManyFailures, true);
-    });
-});
-
-test("getNumberOfFailingTests treats build step interruptions as errors", 4, function() {
-    const jsonData = {
-        steps: [
-            {
-                isFinished: true,
-                isStarted: true,
-                name: "layout-test",
-                results: [
-                  4,
-                  [
-                      "interrupted",
-                  ]
-                ],
-                step_number: 5,
-                text: [
-                    "layout-test",
-                    "interrupted",
-                ],
-                times: [
-                    1310599204.1231229,
-                    1310600152.973659,
-                ]
-            },
-        ],
-    };
-
-    runGetNumberOfFailingTestsTest(jsonData, function(failureCount, tooManyFailures) {
-        equal(failureCount, -1);
-        equal(tooManyFailures, false);
-    });
-});
-
-test("getNumberOfFailingTests treats unfinished test runs as errors", 4, function() {
-    const jsonData = {
-        steps: [
-            {
-                isStarted: true, 
-                name: "layout-test", 
-                step_number: 5, 
-                text: [
-                    "layout-tests running"
-                ], 
-                times: [
-                    1312989295.518481, 
-                    null
-                ]
-            }, 
-        ],
-    };
-
-    runGetNumberOfFailingTestsTest(jsonData, function(failureCount, tooManyFailures) {
-        equal(failureCount, -1);
-        equal(tooManyFailures, false);
-    });
-});
-
-test("getNumberOfFailingTests treats successful but unbelievably short test runs as errors", 4, function() {
-    const jsonData = {
-        steps: [
-            {
-                isFinished: true, 
-                isStarted: true, 
-                name: "layout-test", 
-                step_number: 7, 
-                text: [
-                    "layout-test"
-                ], 
-                times: [
-                    1311288797.7207019, 
-                    1311288802.7791941
-                ]
-            }, 
-        ],
-    };
-
-    runGetNumberOfFailingTestsTest(jsonData, function(failureCount, tooManyFailures) {
-        equal(failureCount, -1);
-        equal(tooManyFailures, false);
-    });
-});
-
-test("getNumberOfFailingTests doesn't care if a failing run is unbelievably short", 4, function() {
-    const jsonData = {
-        steps: [
-            {
-                isFinished: true, 
-                isStarted: true, 
-                name: "layout-test", 
-                results: [
-                  2, 
-                  [
-                      "2011-07-13 04:38:46,315 11247 manager.py:780 WARNING Exiting early after 20 crashes and 0 timeouts. 2251 tests run.", 
-                      "20 failed"
-                  ]
-                ], 
-                step_number: 4, 
-                text: [
-                    "2011-07-13 04:38:46,315 11247 manager.py:780 WARNING Exiting early after 20 crashes and 0 timeouts. 2251 tests run.", 
-                    "20 failed"
-                ], 
-                times: [
-                    1310557115.793082, 
-                    1310557119.832104
-                ]
-            }, 
-        ],
-    };
-
-    runGetNumberOfFailingTestsTest(jsonData, function(failureCount, tooManyFailures) {
-        equal(failureCount, 20);
-        equal(tooManyFailures, true);
-    });
-});
-
-})();
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/FailingTestsBugForm.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/FailingTestsBugForm.js
deleted file mode 100644
index e2836a9..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/FailingTestsBugForm.js
+++ /dev/null
@@ -1,121 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-function FailingTestsBugForm(tester, failingBuildName, passingBuildName, failingTests) {
-    TestRelatedBugForm.call(this, tester);
-
-    this._failingBuildName = failingBuildName;
-    this._passingBuildName = passingBuildName;
-    this._failingTests = failingTests;
-
-    this.description = this._createBugDescription();
-    // FIXME: When a newly-added test has been failing since its introduction, it isn't really a
-    // "regression". We should use different keywords in that case. <http://webkit.org/b/61645>
-    this.keywords += ', ' + WebKitBugzilla.Keyword.Regression;
-    this.title = this._createBugTitle();
-    this.url = this._failingResultsHTMLURL();
-}
-
-FailingTestsBugForm.prototype = {
-    _createBugDescription: function() {
-        var firstSuspectRevision = this._passingRevision() ? this._passingRevision() + 1 : this._failingRevision();
-        var lastSuspectRevision = this._failingRevision();
-
-        var endOfFirstSentence;
-        if (this._passingBuildName) {
-            endOfFirstSentence = 'started failing on ' + this._tester.name;
-            if (firstSuspectRevision === lastSuspectRevision)
-                endOfFirstSentence += ' in r' + firstSuspectRevision + ' <' + trac.changesetURL(firstSuspectRevision) + '>';
-            else
-                endOfFirstSentence += ' between r' + firstSuspectRevision + ' and r' + lastSuspectRevision + ' (inclusive)';
-        } else
-            endOfFirstSentence = (this._failingTests.length === 1 ? 'has' : 'have') + ' been failing on ' + this._tester.name + ' since at least r' + firstSuspectRevision + ' <' + trac.changesetURL(firstSuspectRevision) + '>';
-        var description;
-        if (this._failingTests.length === 1)
-            description = this._failingTests[0] + ' ' + endOfFirstSentence + '.\n\n';
-        else if (this._failingTests.length === 2)
-            description = this._failingTests.join(' and ') + ' ' + endOfFirstSentence + '.\n\n';
-        else {
-            description = 'The following tests ' + endOfFirstSentence + ':\n\n'
-                + this._failingTests.map(function(test) { return '    ' + test }).join('\n')
-                + '\n\n';
-        }
-        if (firstSuspectRevision !== lastSuspectRevision)
-            description += trac.logURL('trunk', firstSuspectRevision, lastSuspectRevision) + '\n\n';
-        if (this._passingBuildName)
-            description += this._tester.resultsPageURL(this._passingBuildName) + ' passed\n';
-        description += this._failingResultsHTMLURL() + ' failed\n';
-
-        return description;
-    },
-
-    _createBugTitle: function() {
-        // FIXME: When a newly-added test has been failing since its introduction, it isn't really a
-        // "regression". We should use a different title in that case. <http://webkit.org/b/61645>
-
-        var titlePrefix = 'REGRESSION (' + this._regressionRangeString() + '): ';
-        var titleSuffix = ' failing on ' + this._tester.name;
-        var title = titlePrefix + this._failingTests.join(', ') + titleSuffix;
-
-        if (title.length <= bugzilla.kMaximumBugTitleLength)
-            return title;
-
-        var pathPrefix = longestCommonPathPrefix(this._failingTests);
-        if (pathPrefix) {
-            title = titlePrefix + this._failingTests.length + ' ' + pathPrefix + ' tests' + titleSuffix;
-            if (title.length <= bugzilla.kMaximumBugTitleLength)
-                return title;
-        }
-
-        title = titlePrefix + this._failingTests.length + ' tests' + titleSuffix;
-
-        console.assert(title.length <= bugzilla.kMaximumBugTitleLength);
-        return title;
-    },
-
-    _failingResultsHTMLURL: function() {
-        return this._tester.resultsPageURL(this._failingBuildName);
-    },
-
-    _failingRevision: function() {
-        return this._tester.buildbot.parseBuildName(this._failingBuildName).revision;
-    },
-
-    _passingRevision: function() {
-        if (!this._passingBuildName)
-            return null;
-        return this._tester.buildbot.parseBuildName(this._passingBuildName).revision;
-    },
-
-    _regressionRangeString: function() {
-        var failingRevision = this._failingRevision();
-        var passingRevision = this._passingRevision();
-        if (!passingRevision || failingRevision - passingRevision <= 1)
-            return 'r' + failingRevision;
-        return 'r' + passingRevision + '-r' + failingRevision;
-    },
-};
-
-FailingTestsBugForm.prototype.__proto__ = TestRelatedBugForm.prototype;
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/FailingTestsBugForm_unittests.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/FailingTestsBugForm_unittests.js
deleted file mode 100644
index 72ebf56..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/FailingTestsBugForm_unittests.js
+++ /dev/null
@@ -1,160 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-(function() {
-
-module('FailingTestsBugForm');
-
-function createTestForm(testerName, failingBuildName, passingBuildName, failingTests) {
-    var mockBuildbot = {};
-    mockBuildbot.parseBuildName = function(buildName) {
-        var match = /(\d+)/.exec(buildName);
-        return {
-            revision: parseInt(match[1], 10),
-            buildNumber: parseInt(match[2], 10),
-        };
-    };
-
-    var mockBuilder = {};
-    mockBuilder.name = testerName;
-    mockBuilder.buildbot = mockBuildbot;
-    mockBuilder.resultsPageURL = function(buildName) {
-        return '[RESULTS PAGE URL ' + this.name + ', ' + buildName + ']';
-    }
-
-    return new FailingTestsBugForm(mockBuilder, failingBuildName, passingBuildName, failingTests);
-}
-
-test('keywords are set', 1, function() {
-    var form = createTestForm('Windows 7 Release (Tests)', 'r10 (5)', 'r8 (2)', ['css1/basic/class_as_selector.html']);
-
-    deepEqual(form.keywords.split(', '), [WebKitBugzilla.Keyword.LayoutTestFailure, WebKitBugzilla.Keyword.MakingBotsRed, WebKitBugzilla.Keyword.Regression]);
-});
-
-const testCases = [
-    {
-        failingBuildName: 'r10 (5)',
-        failingTests: [
-            'css1/basic/class_as_selector.html',
-        ],
-        expectedDescription: 'css1/basic/class_as_selector.html has been failing on Windows 7 Release (Tests) since at least r10 <http://trac.webkit.org/changeset/10>.\n\n[RESULTS PAGE URL Windows 7 Release (Tests), r10 (5)] failed\n',
-        expectedTitle: 'REGRESSION (r10): css1/basic/class_as_selector.html failing on Windows 7 Release (Tests)',
-    },
-    {
-        failingBuildName: 'r10 (5)',
-        passingBuildName: 'r9 (3)',
-        failingTests: [
-            'css1/basic/class_as_selector.html',
-        ],
-        expectedDescription: 'css1/basic/class_as_selector.html started failing on Windows 7 Release (Tests) in r10 <http://trac.webkit.org/changeset/10>.\n\n[RESULTS PAGE URL Windows 7 Release (Tests), r9 (3)] passed\n[RESULTS PAGE URL Windows 7 Release (Tests), r10 (5)] failed\n',
-        expectedTitle: 'REGRESSION (r10): css1/basic/class_as_selector.html failing on Windows 7 Release (Tests)',
-    },
-    {
-        failingBuildName: 'r10 (5)',
-        passingBuildName: 'r8 (2)',
-        failingTests: [
-            'css1/basic/class_as_selector.html',
-        ],
-        expectedDescription: 'css1/basic/class_as_selector.html started failing on Windows 7 Release (Tests) between r9 and r10 (inclusive).\n\nhttp://trac.webkit.org/log/trunk?rev=10&stop_rev=9&limit=3\n\n[RESULTS PAGE URL Windows 7 Release (Tests), r8 (2)] passed\n[RESULTS PAGE URL Windows 7 Release (Tests), r10 (5)] failed\n',
-        expectedTitle: 'REGRESSION (r8-r10): css1/basic/class_as_selector.html failing on Windows 7 Release (Tests)',
-    },
-    {
-        failingBuildName: 'r10 (5)',
-        passingBuildName: 'r8 (2)',
-        failingTests: [
-            'css1/basic/class_as_selector.html',
-            'fast/css/ex-after-font-variant.html',
-        ],
-        expectedDescription: 'css1/basic/class_as_selector.html and fast/css/ex-after-font-variant.html started failing on Windows 7 Release (Tests) between r9 and r10 (inclusive).\n\nhttp://trac.webkit.org/log/trunk?rev=10&stop_rev=9&limit=3\n\n[RESULTS PAGE URL Windows 7 Release (Tests), r8 (2)] passed\n[RESULTS PAGE URL Windows 7 Release (Tests), r10 (5)] failed\n',
-        expectedTitle: 'REGRESSION (r8-r10): css1/basic/class_as_selector.html, fast/css/ex-after-font-variant.html failing on Windows 7 Release (Tests)',
-    },
-    {
-        failingBuildName: 'r10 (5)',
-        passingBuildName: 'r8 (2)',
-        failingTests: [
-            'css1/basic/class_as_selector1.html',
-            'css1/basic/class_as_selector2.html',
-            'css1/basic/class_as_selector3.html',
-            'css1/basic/class_as_selector4.html',
-            'css1/basic/class_as_selector5.html',
-            'css1/basic/class_as_selector6.html',
-            'css1/basic/class_as_selector7.html',
-            'css1/basic/class_as_selector8.html',
-        ],
-        expectedDescription: 'The following tests started failing on Windows 7 Release (Tests) between r9 and r10 (inclusive):\n\n    css1/basic/class_as_selector1.html\n    css1/basic/class_as_selector2.html\n    css1/basic/class_as_selector3.html\n    css1/basic/class_as_selector4.html\n    css1/basic/class_as_selector5.html\n    css1/basic/class_as_selector6.html\n    css1/basic/class_as_selector7.html\n    css1/basic/class_as_selector8.html\n\nhttp://trac.webkit.org/log/trunk?rev=10&stop_rev=9&limit=3\n\n[RESULTS PAGE URL Windows 7 Release (Tests), r8 (2)] passed\n[RESULTS PAGE URL Windows 7 Release (Tests), r10 (5)] failed\n',
-        expectedTitle: 'REGRESSION (r8-r10): 8 css1/basic tests failing on Windows 7 Release (Tests)',
-    },
-    {
-        failingBuildName: 'r10 (5)',
-        passingBuildName: 'r8 (2)',
-        failingTests: [
-            'css1/basic/class_as_selector1.html',
-            'css1/basic/class_as_selector2.html',
-            'css1/basic/class_as_selector3.html',
-            'css1/basic/class_as_selector4.html',
-            'css1/basic/class_as_selector5.html',
-            'css1/basic/class_as_selector6.html',
-            'css1/basic/class_as_selector7.html',
-            'css1/basic/class_as_selector8.html',
-            'css1/class_as_selector9.html',
-        ],
-        expectedTitle: 'REGRESSION (r8-r10): 9 css1 tests failing on Windows 7 Release (Tests)',
-    },
-    {
-        failingBuildName: 'r10 (5)',
-        passingBuildName: 'r8 (2)',
-        failingTests: [
-            'css1/basic/class_as_selector1.html',
-            'css1/basic/class_as_selector2.html',
-            'css1/basic/class_as_selector3.html',
-            'css1/basic/class_as_selector4.html',
-            'css1/basic/class_as_selector5.html',
-            'css1/basic/class_as_selector6.html',
-            'css1/basic/class_as_selector7.html',
-            'css1/basic/class_as_selector8.html',
-            'css1/class_as_selector9.html',
-            'fast/css/ex-after-font-variant.html',
-        ],
-        expectedTitle: 'REGRESSION (r8-r10): 10 tests failing on Windows 7 Release (Tests)',
-    },
-];
-
-test('titles', 7, function() {
-    for (var i = 0; i < testCases.length; ++i) {
-        var form = createTestForm('Windows 7 Release (Tests)', testCases[i].failingBuildName, testCases[i].passingBuildName, testCases[i].failingTests);
-        equal(form.title, testCases[i].expectedTitle);
-    }
-});
-
-test('descriptions', 5, function() {
-    for (var i = 0; i < testCases.length; ++i) {
-        if (!('expectedDescription' in testCases[i]))
-            continue;
-        var form = createTestForm('Windows 7 Release (Tests)', testCases[i].failingBuildName, testCases[i].passingBuildName, testCases[i].failingTests);
-        equal(form.description, testCases[i].expectedDescription);
-    }
-});
-
-})();
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/FlakyLayoutTestDetector.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/FlakyLayoutTestDetector.js
deleted file mode 100644
index b814741..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/FlakyLayoutTestDetector.js
+++ /dev/null
@@ -1,115 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-function FlakyLayoutTestDetector() {
-    this._tests = {};
-    this._buildCount = 0;
-}
-
-FlakyLayoutTestDetector.prototype = {
-    incorporateTestResults: function(buildName, failingTests, tooManyFailures) {
-        var newFlakyTests = [];
-
-        if (tooManyFailures) {
-            // Something was going horribly wrong during this test run. We shouldn't assume that any
-            // passes/failures are due to flakiness.
-            return newFlakyTests;
-        }
-
-        ++this._buildCount;
-
-        // Record failing tests.
-        for (var testName in failingTests) {
-            if (!(testName in this._tests)) {
-               if (this._buildCount > this._maximumFailOrPassCount) {
-                   // This test hasn't failed in the _maximumFailOrPassCount most recent builds, so
-                   // don't consider it to be flaky. In fact, we don't have to track it at all!
-                   continue;
-               }
-
-                this._tests[testName] = {
-                    state: this._states.LastSeenFailing,
-                    count: 0,
-                    history: [],
-                };
-            }
-
-            var testData = this._tests[testName];
-            testData.history.push({ build: buildName, result: failingTests[testName] });
-
-            if (testData.state === this._states.LastSeenFailing) {
-                ++testData.count;
-                if (testData.count > this._maximumFailOrPassCount)
-                    testData.state = this._states.NotFlaky;
-            } else if (testData.state === this._states.LastSeenPassing) {
-                testData.state = this._states.PossiblyFlaky;
-                newFlakyTests.push(testName);
-            }
-        }
-
-        // Record passing tests.
-        for (var testName in this._tests) {
-            if (testName in failingTests)
-                continue;
-
-            var testData = this._tests[testName];
-            testData.history.push({ build: buildName, result: { failureType: 'pass' } });
-
-            if (testData.state === this._states.LastSeenPassing) {
-                ++testData.count;
-                if (testData.count > this._maximumFailOrPassCount)
-                    testData.state = this._states.NotFlaky;
-            } else if (testData.state === this._states.LastSeenFailing) {
-                testData.state = this._states.LastSeenPassing;
-                testData.count = 1;
-            }
-        }
-
-        return newFlakyTests;
-    },
-
-    allFailures: function(testName) {
-        if (!(testName in this._tests))
-            return null;
-
-        return this._tests[testName].history.filter(function(historyItem) { return historyItem.result.failureType !== 'pass' });
-    },
-
-    get possiblyFlakyTests() {
-        var self = this;
-        return Object.keys(self._tests).filter(function(testName) { return self._tests[testName].state === self._states.PossiblyFlaky });
-    },
-
-    // If a test has recently failed or passed more than this number of times in a row we don't
-    // consider it to be flaky.
-    _maximumFailOrPassCount: 9,
-
-    _states: {
-        LastSeenFailing: 0,
-        LastSeenPassing: 1,
-        PossiblyFlaky: 2,
-        NotFlaky: 3,
-    },
-};
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/FlakyLayoutTestDetector_unittests.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/FlakyLayoutTestDetector_unittests.js
deleted file mode 100644
index bec4e58..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/FlakyLayoutTestDetector_unittests.js
+++ /dev/null
@@ -1,168 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-(function() {
-
-module('FlakyLayoutTestDetector');
-
-const runs = [
-    {
-        buildName: 'build6',
-        failingTests: {
-            b: 'fail',
-        },
-        tooManyFailures: false,
-    },
-    {
-        buildName: 'build5',
-        failingTests: {
-            a: 'fail',
-            b: 'fail',
-        },
-        tooManyFailures: false,
-    },
-    {
-        buildName: 'build4',
-        failingTests: {
-            b: 'fail',
-        },
-        tooManyFailures: false,
-    },
-    {
-        buildName: 'build3',
-        failingTests: {
-            a: 'crash',
-            b: 'fail',
-        },
-        tooManyFailures: false,
-    },
-    {
-        buildName: 'build2',
-        failingTests: {
-            a: 'fail',
-        },
-        tooManyFailures: false,
-    },
-    {
-        buildName: 'build1',
-        failingTests: {},
-        tooManyFailures: false,
-    },
-];
-
-test('possiblyFlakyTests', 1, function() {
-    var detector = new FlakyLayoutTestDetector();
-    runs.forEach(function(run) { detector.incorporateTestResults(run.buildName, run.failingTests, run.tooManyFailures) });
-
-    deepEqual(detector.possiblyFlakyTests, ['a']);
-});
-
-test('allFailures', 3, function() {
-    var detector = new FlakyLayoutTestDetector();
-    runs.forEach(function(run) { detector.incorporateTestResults(run.buildName, run.failingTests, run.tooManyFailures) });
-
-    deepEqual(detector.allFailures('a'), [
-        { build: 'build5', result: 'fail' },
-        { build: 'build3', result: 'crash' },
-        { build: 'build2', result: 'fail' },
-    ]);
-
-    deepEqual(detector.allFailures('b'), [
-        { build: 'build6', result: 'fail' },
-        { build: 'build5', result: 'fail' },
-        { build: 'build4', result: 'fail' },
-        { build: 'build3', result: 'fail' },
-    ]);
-
-    equal(detector.allFailures('c'), null);
-});
-
-test('failing many times in a row should not count as flaky', 3, function() {
-    var detector = new FlakyLayoutTestDetector();
-    for (var i = 0; i < 10; ++i)
-        detector.incorporateTestResults('build', { a: 'fail' }, false);
-
-    deepEqual(detector.possiblyFlakyTests, []);
-
-    for (var i = 0; i < 3; ++i)
-        detector.incorporateTestResults('build', {}, false);
-
-    deepEqual(detector.possiblyFlakyTests, []);
-
-    detector.incorporateTestResults('build', { a: 'fail' }, false);
-
-    deepEqual(detector.possiblyFlakyTests, []);
-});
-
-test('failing after passing many times in a row should not count as flaky', 3, function() {
-    var detector = new FlakyLayoutTestDetector();
-    detector.incorporateTestResults('build', { a: 'fail' }, false);
-
-    deepEqual(detector.possiblyFlakyTests, []);
-
-    for (var i = 0; i < 10; ++i)
-        detector.incorporateTestResults('build', {}, false);
-
-    deepEqual(detector.possiblyFlakyTests, []);
-
-    detector.incorporateTestResults('build', { a: 'fail' }, false);
-
-    deepEqual(detector.possiblyFlakyTests, []);
-});
-
-test('flaking now should override many past failures', 1, function() {
-    var detector = new FlakyLayoutTestDetector();
-    detector.incorporateTestResults('build', { a: 'fail' }, false);
-    detector.incorporateTestResults('build', {}, false);
-    detector.incorporateTestResults('build', { a: 'fail' }, false);
-    detector.incorporateTestResults('build', {}, false);
-    for (var i = 0; i < 10; ++i)
-        detector.incorporateTestResults('build', { a: 'fail' }, false);
-    deepEqual(detector.possiblyFlakyTests, ['a']);
-});
-
-test('passing now should override past flakiness', 1, function() {
-    var detector = new FlakyLayoutTestDetector();
-    for (var i = 0; i < 10; ++i)
-        detector.incorporateTestResults('build', {}, false);
-    detector.incorporateTestResults('build', { a: 'fail' }, false);
-    detector.incorporateTestResults('build', {}, false);
-    detector.incorporateTestResults('build', { a: 'fail' }, false);
-    detector.incorporateTestResults('build', {}, false);
-    deepEqual(detector.possiblyFlakyTests, []);
-});
-
-test('too many failures now should not override past flakiness', 1, function() {
-    var detector = new FlakyLayoutTestDetector();
-    for (var i = 0; i < 10; ++i)
-        detector.incorporateTestResults('build', {}, true);
-    detector.incorporateTestResults('build', { a: 'fail' }, false);
-    detector.incorporateTestResults('build', {}, false);
-    detector.incorporateTestResults('build', { a: 'fail' }, false);
-    detector.incorporateTestResults('build', {}, false);
-    deepEqual(detector.possiblyFlakyTests, ['a']);
-});
-
-})();
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/FlakyTestBugForm.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/FlakyTestBugForm.js
deleted file mode 100644
index 530e918..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/FlakyTestBugForm.js
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-function FlakyTestBugForm(tester, failingBuildNames, failingTest, oldestAnalyzedBuild, newestAnalyzedBuild, analyzedBuildCount) {
-    TestRelatedBugForm.call(this, tester);
-
-    this._failingBuildNames = failingBuildNames;
-    this._failingTest = failingTest;
-    this._oldestAnalyzedBuild = oldestAnalyzedBuild;
-    this._newestAnalyzedBuild = newestAnalyzedBuild;
-    this._analyzedBuildCount = analyzedBuildCount;
-
-    this.description = this._createBugDescription();
-    this.title = this._createBugTitle();
-    this.url = this._tester.resultsPageURL(this._failingBuildNames[0]);
-}
-
-FlakyTestBugForm.prototype = {
-    _createBugDescription: function() {
-        var self = this;
-
-        var result = self._failingTest
-            + ' failed ' + self._failingBuildNames.length + ' out of ' + self._analyzedBuildCount + ' times'
-            + ' on ' + self._tester.name
-            + ' between r' + self._tester.buildbot.parseBuildName(self._oldestAnalyzedBuild).revision
-            + ' and r' + self._tester.buildbot.parseBuildName(self._newestAnalyzedBuild).revision
-            + ' (inclusive).\n\n';
-
-        result += 'Failures:\n\n';
-        result += self._failingBuildNames.map(function(buildName) {
-            return self._tester.resultsPageURL(buildName) + '\n';
-        }).join('');
-
-        return result;
-    },
-
-    _createBugTitle: function() {
-        return this._failingTest + ' sometimes fails on ' + this._tester.name;
-    },
-};
-
-FlakyTestBugForm.prototype.__proto__ = TestRelatedBugForm.prototype;
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/FlakyTestBugForm_unittests.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/FlakyTestBugForm_unittests.js
deleted file mode 100644
index 60e7af0..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/FlakyTestBugForm_unittests.js
+++ /dev/null
@@ -1,87 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-(function() {
-
-module('FlakyTestBugForm');
-
-function createTestForm(failingBuildNames, failingTest, oldestAnalyzedBuild, newestAnalyzedBuild, analyzedBuildCount) {
-    var mockBuildbot = {};
-    mockBuildbot.parseBuildName = function(buildName) {
-        var match = /(\d+)/.exec(buildName);
-        return {
-            revision: parseInt(match[1], 10),
-            buildNumber: parseInt(match[2], 10),
-        };
-    };
-
-    var mockBuilder = {};
-    mockBuilder.name = '[BUILDER NAME]';
-    mockBuilder.buildbot = mockBuildbot;
-    mockBuilder.resultsPageURL = function(buildName) {
-        return '[RESULTS PAGE URL ' + this.name + ', ' + buildName + ']';
-    }
-
-    return new FlakyTestBugForm(mockBuilder, failingBuildNames, failingTest, oldestAnalyzedBuild, newestAnalyzedBuild, analyzedBuildCount);
-}
-
-const testCases = [
-    {
-        oldestAnalyzedBuild: 'r1 (1)',
-        newestAnalyzedBuild: 'r15 (8)',
-        analyzedBuildCount: 8,
-        failingBuildNames: [
-            'r10 (5)',
-            'r8 (2)',
-        ],
-        failingTest: 'css1/basic/class_as_selector.html',
-        expectedDescription: 'css1/basic/class_as_selector.html failed 2 out of 8 times on [BUILDER NAME] between r1 and r15 (inclusive).\n\nFailures:\n\n[RESULTS PAGE URL [BUILDER NAME], r10 (5)]\n[RESULTS PAGE URL [BUILDER NAME], r8 (2)]\n',
-        expectedTitle: 'css1/basic/class_as_selector.html sometimes fails on [BUILDER NAME]',
-        expectedURL: '[RESULTS PAGE URL [BUILDER NAME], r10 (5)]',
-    },
-];
-
-test('titles', 1, function() {
-    testCases.forEach(function(testCase) {
-        var form = createTestForm(testCase.failingBuildNames, testCase.failingTest, testCase.oldestAnalyzedBuild, testCase.newestAnalyzedBuild, testCase.analyzedBuildCount);
-        equal(form.title, testCase.expectedTitle);
-    });
-});
-
-test('descriptions', 1, function() {
-    testCases.forEach(function(testCase) {
-        var form = createTestForm(testCase.failingBuildNames, testCase.failingTest, testCase.oldestAnalyzedBuild, testCase.newestAnalyzedBuild, testCase.analyzedBuildCount);
-        equal(form.description, testCase.expectedDescription);
-    });
-});
-
-test('URLs', 1, function() {
-    testCases.forEach(function(testCase) {
-        var form = createTestForm(testCase.failingBuildNames, testCase.failingTest, testCase.oldestAnalyzedBuild, testCase.newestAnalyzedBuild, testCase.analyzedBuildCount);
-        equal(form.url, testCase.expectedURL);
-    });
-});
-
-})();
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/LayoutTestHistoryAnalyzer.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/LayoutTestHistoryAnalyzer.js
deleted file mode 100644
index a6628d7..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/LayoutTestHistoryAnalyzer.js
+++ /dev/null
@@ -1,180 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-function LayoutTestHistoryAnalyzer(builder) {
-    this._builder = builder;
-    this._flakinessDetector = new FlakyLayoutTestDetector();
-    this._history = {};
-    this._loader = new LayoutTestResultsLoader(builder);
-    this._testRunsSinceLastInterestingChange = 0;
-}
-
-LayoutTestHistoryAnalyzer.prototype = {
-    /*
-     * Periodically calls callback until all current failures have been explained. Callback is
-     * passed an object like the following:
-     * {
-     *     'history': {
-     *         'r12347 (681)': {
-     *             'tooManyFailures': false,
-     *             'tests': {
-     *                 'css1/basic/class_as_selector2.html': 'fail',
-     *             },
-     *         },
-     *         'r12346 (680)': {
-     *             'tooManyFailures': false,
-     *             'tests': {},
-     *         },
-     *         'r12345 (679)': {
-     *             'tooManyFailures': false,
-     *             'tests': {
-     *                 'css1/basic/class_as_selector.html': 'crash',
-     *             },
-     *         },
-     *     },
-     *     'possiblyFlaky': {
-     *         'fast/workers/worker-test.html': [
-     *             { 'build': 'r12344 (678)', 'result': 'fail' },
-     *             { 'build': 'r12340 (676)', 'result': 'crash' },
-     *         ],
-     *     },
-     * }
-     * Each build contains just the failures that a) are still occurring on the bots, and b) were new
-     * in that build.
-     */
-    start: function(callback) {
-        var self = this;
-        self._builder.getBuildNames(function(buildNames) {
-            self._analyzeBuilds(buildNames, callback, function() {
-                self._builder.getOldBuildNames(function(oldBuildNames) {
-                    self._analyzeBuilds(oldBuildNames, callback);
-                });
-            });
-        });
-    },
-
-    _analyzeBuilds: function(buildNames, callback, analyzedAllBuildsCallback) {
-        var self = this;
-        function inner(buildIndex) {
-            self._incorporateBuildHistory(buildNames, buildIndex, function(callAgain) {
-                var data = {
-                    history: self._history,
-                    possiblyFlaky: {},
-                };
-                self._flakinessDetector.possiblyFlakyTests.forEach(function(testName) {
-                    data.possiblyFlaky[testName] = self._flakinessDetector.allFailures(testName);
-                });
-
-                var nextIndex = buildIndex + 1;
-                var analyzedAllBuilds = nextIndex >= buildNames.length;
-                var haveMoreDataToFetch = !analyzedAllBuilds || analyzedAllBuildsCallback;
-
-                var callbackRequestedStop = !callback(data, haveMoreDataToFetch);
-                if (callbackRequestedStop)
-                    return;
-
-                if (!callAgain)
-                    return;
-
-                if (analyzedAllBuilds) {
-                    if (analyzedAllBuildsCallback)
-                        analyzedAllBuildsCallback();
-                    return;
-                }
-
-                setTimeout(function() { inner(nextIndex) }, 0);
-            });
-        }
-        inner(0);
-    },
-
-    _incorporateBuildHistory: function(buildNames, buildIndex, callback) {
-        var previousBuildName = Object.keys(this._history).last();
-        var nextBuildName = buildNames[buildIndex];
-
-        var self = this;
-        self._loader.start(nextBuildName, function(tests, tooManyFailures) {
-            if (tooManyFailures) {
-                var firstBuildName = Object.keys(self._history)[0];
-                // If the first (i.e., current or most recent) build exited early due to too many
-                // failures, we want to process other too-many-failures builds normally to try to
-                // figure out when the too-many-failures started occurring. If the first/current
-                // build did not exit due to too many failures, then too-many-failures builds will
-                // only confuse our analysis (since they run a semi-arbitrary subset of tests), so
-                // we should just skip them entirely.
-                if (firstBuildName && !self._history[firstBuildName].tooManyFailures) {
-                    callback(true);
-                    return;
-                }
-            }
-
-            ++self._testRunsSinceLastInterestingChange;
-
-            var historyItem = {
-                tooManyFailures: tooManyFailures,
-                tests: {},
-            };
-            self._history[nextBuildName] = historyItem;
-
-            var previousHistoryItem;
-            if (previousBuildName)
-                previousHistoryItem = self._history[previousBuildName];
-
-            var newFlakyTests = self._flakinessDetector.incorporateTestResults(nextBuildName, tests, tooManyFailures);
-            if (newFlakyTests.length) {
-                self._testRunsSinceLastInterestingChange = 0;
-                // Remove all possibly flaky tests from the failure history, since when they failed
-                // is no longer meaningful.
-                newFlakyTests.forEach(function(testName) {
-                    for (var buildName in self._history)
-                        delete self._history[buildName].tests[testName];
-                });
-            }
-
-            for (var testName in tests) {
-                if (previousHistoryItem) {
-                    if (!(testName in previousHistoryItem.tests))
-                        continue;
-                    delete previousHistoryItem.tests[testName];
-                }
-                historyItem.tests[testName] = tests[testName];
-            }
-
-            var previousUnexplainedFailuresCount = previousBuildName ? Object.keys(self._history[previousBuildName].tests).length : 0;
-            var unexplainedFailuresCount = Object.keys(self._history[nextBuildName].tests).length;
-
-            if (previousUnexplainedFailuresCount && !unexplainedFailuresCount)
-                self._testRunsSinceLastInterestingChange = 0;
-
-            const minimumRequiredTestRunsWithoutInterestingChanges = 5;
-            callback(unexplainedFailuresCount || self._testRunsSinceLastInterestingChange < minimumRequiredTestRunsWithoutInterestingChanges);
-        },
-        function(tests) {
-            // Some tests failed, but we couldn't fetch results.html (perhaps because the test
-            // run aborted early for some reason). Just skip this build entirely.
-            callback(true);
-        });
-    },
-};
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/LayoutTestResultsLoader.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/LayoutTestResultsLoader.js
deleted file mode 100644
index f24a702..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/LayoutTestResultsLoader.js
+++ /dev/null
@@ -1,145 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-function LayoutTestResultsLoader(builder) {
-    this._builder = builder;
-}
-
-LayoutTestResultsLoader.prototype = {
-    start: function(buildName, callback, errorCallback) {
-        var cacheKey = 'LayoutTestResultsLoader.' + this._builder.name + '.' + buildName;
-        const currentCachedDataVersion = 8;
-        if (PersistentCache.contains(cacheKey)) {
-            var cachedData = PersistentCache.get(cacheKey);
-            if (cachedData.version === currentCachedDataVersion) {
-                if (cachedData.error)
-                    errorCallback(cachedData.tests, cachedData.tooManyFailures);
-                else
-                    callback(cachedData.tests, cachedData.tooManyFailures);
-                return;
-            }
-        }
-
-        var result = { tests: {}, tooManyFailures: false, error: false, version: currentCachedDataVersion };
-
-        function cacheParseResultsAndCallCallback(parseResult) {
-            result.tests = parseResult.tests;
-            result.tooManyFailures = parseResult.tooManyFailures;
-
-            PersistentCache.set(cacheKey, result);
-            callback(result.tests, result.tooManyFailures);
-        }
-
-        var self = this;
-        self._fetchAndParseNRWTResults(buildName, cacheParseResultsAndCallCallback, function() {
-            self._fetchAndParseORWTResults(buildName, cacheParseResultsAndCallCallback, function() {
-                // We couldn't fetch results for this build.
-                result.error = true;
-                PersistentCache.set(cacheKey, result);
-                errorCallback(result.tests, result.tooManyFailures);
-            });
-        });
-    },
-
-    _fetchAndParseNRWTResults: function(buildName, successCallback, errorCallback) {
-        getResource(this._builder.resultsDirectoryURL(buildName) + 'full_results.json', function(xhr) {
-            successCallback((new NRWTResultsParser()).parse(xhr.responseText));
-        },
-        function(xhr) {
-            errorCallback();
-        });
-    },
-
-    _fetchAndParseORWTResults: function(buildName, successCallback, errorCallback) {
-        var parsedBuildName = this._builder.buildbot.parseBuildName(buildName);
-
-        // http://webkit.org/b/62380 was fixed in r89610.
-        var resultsHTMLSupportsTooManyFailuresInfo = parsedBuildName.revision >= 89610;
-
-        var result = { tests: {}, tooManyFailures: false };
-
-        var self = this;
-
-        function fetchAndParseResultsHTML(successCallback, errorCallback) {
-            getResource(self._builder.resultsPageURL(buildName), function(xhr) {
-                var parseResult = (new ORWTResultsParser()).parse(xhr.responseText);
-                result.tests = parseResult.tests;
-                if (resultsHTMLSupportsTooManyFailuresInfo)
-                    result.tooManyFailures = parseResult.tooManyFailures;
-                successCallback();
-            },
-            function(xhr) {
-                // We failed to fetch results.html.
-                errorCallback();
-            });
-        }
-
-        function fetchNumberOfFailingTests(successCallback, errorCallback) {
-            self._builder.getNumberOfFailingTests(parsedBuildName.buildNumber, function(failingTestCount, tooManyFailures) {
-                result.tooManyFailures = tooManyFailures;
-
-                if (failingTestCount < 0) {
-                    // The number of failing tests couldn't be determined.
-                    errorCallback();
-                    return;
-                }
-
-                successCallback(failingTestCount);
-            });
-        }
-
-        if (resultsHTMLSupportsTooManyFailuresInfo) {
-            fetchAndParseResultsHTML(function() {
-                successCallback(result);
-            },
-            function() {
-                fetchNumberOfFailingTests(function(failingTestCount) {
-                    if (!failingTestCount) {
-                        // All tests passed, so no results.html was generated.
-                        successCallback(result);
-                        return;
-                    }
-
-                    // Something went wrong with fetching results.
-                    errorCallback();
-                }, errorCallback);
-            });
-            return;
-        }
-
-        fetchNumberOfFailingTests(function(failingTestCount) {
-            if (!failingTestCount) {
-                // All tests passed.
-                successCallback(result);
-                return;
-            }
-
-            // Find out which tests failed.
-            fetchAndParseResultsHTML(function() {
-                successCallback(result);
-            }, errorCallback);
-        }, errorCallback);
-    },
-};
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/NRWTResultsParser.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/NRWTResultsParser.js
deleted file mode 100644
index b02e06c..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/NRWTResultsParser.js
+++ /dev/null
@@ -1,99 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-function NRWTResultsParser() {
-}
-
-NRWTResultsParser.prototype = {
-    parse: function(unexpectedResultsJS) {
-        var data;
-        function ADD_RESULTS(x) {
-            data = x;
-        }
-
-        eval(unexpectedResultsJS);
-        console.assert(data);
-
-        var result = { tests: {}, tooManyFailures: data.interrupted };
-
-        function forEachTest(tree, handler, opt_prefix) {
-            var prefix = opt_prefix || '';
-
-            for (var key in tree) {
-                var newPrefix = prefix ? (prefix + '/' + key) : key;
-                if ('actual' in tree[key]) {
-                    var testObject = tree[key];
-                    testObject.name = newPrefix;
-                    handler(testObject);
-                } else
-                    forEachTest(tree[key], handler, newPrefix);
-            }
-        }
-
-        function isFailureExpected(expected, actual) {
-            if (actual === 'SKIP')
-                return true;
-
-            var expectedArray = expected.split(' ');
-            var actualArray = actual.split(' ');
-            for (var i = 0; i < actualArray.length; i++) {
-                var actualValue = actualArray[i];
-                if (expectedArray.contains(actualValue))
-                    continue;
-                if (expectedArray.contains('FAIL') && ['IMAGE', 'TEXT', 'IMAGE+TEXT'].contains(actualValue))
-                    continue;
-                return false;
-            }
-
-            return true;
-        }
-
-        function convertNRWTResultString(nrwtResult) {
-            const translations = {
-                CRASH: 'crash',
-                'IMAGE+TEXT': 'fail',
-                IMAGE: 'fail',
-                TEXT: 'fail',
-                TIMEOUT: 'timeout',
-            };
-
-            if (nrwtResult in translations)
-                return translations[nrwtResult];
-
-            if (nrwtResult.contains(' '))
-                return 'flaky';
-
-            return 'unknown failure type ' + nrwtResult;
-        }
-
-        forEachTest(data.tests, function(test) {
-            if (isFailureExpected(test.expected, test.actual))
-                return;
-            result.tests[test.name] = { failureType: convertNRWTResultString(test.actual) };
-        });
-
-        return result;
-    },
-};
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/NewBugForm.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/NewBugForm.js
deleted file mode 100644
index 94cca84..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/NewBugForm.js
+++ /dev/null
@@ -1,66 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-function NewBugForm() {
-}
-
-NewBugForm.prototype = {
-    domElement: function() {
-        var formData = {};
-
-        if (this.component)
-            formData.component = this.component;
-        if (this.description)
-            formData.comment = this.description;
-        if (this.keywords)
-            formData.keywords = this.keywords;
-        if (this.operatingSystem)
-            formData.op_sys = this.operatingSystem;
-        if (this.platform)
-            formData.rep_platform = this.platform;
-        if (this.product)
-            formData.product = this.product;
-        if (this.title)
-            formData.short_desc = this.title;
-        if (this.url)
-            formData.bug_file_loc = this.url;
-        if (this.version)
-            formData.version = this.version;
-
-        var form = document.createElement('form');
-        form.method = 'POST';
-        form.action = config.kBugzillaURL + '/enter_bug.cgi';
-
-        for (var key in formData) {
-            var input = document.createElement('input');
-            input.type = 'hidden';
-            input.name = key;
-            input.value = formData[key];
-            form.appendChild(input);
-        }
-
-        return form;
-    },
-};
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/NewBugForm_unittests.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/NewBugForm_unittests.js
deleted file mode 100644
index db96020..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/NewBugForm_unittests.js
+++ /dev/null
@@ -1,81 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-(function() {
-
-module('NewBugForm');
-
-const testFormData = {
-    component: { formName: 'component', value: 'Tools / Tests' },
-    description: { formName: 'comment', value: 'This is a description\n\nwith\nnewlines' },
-    keywords: { formName: 'keywords', value: 'Qt, PlatformOnly' },
-    operatingSystem: { formName: 'op_sys', value: 'Windows 7' },
-    platform: { formName: 'rep_platform', value: 'PC' },
-    product: { formName: 'product', value: 'WebKit' },
-    title: { formName: 'short_desc', value: 'This is a bug title' },
-    url: { formName: 'bug_file_loc', value: 'http://example.com/path?query=foo#anchor' },
-    version: { formName: 'version', value: '528+ (Nightly Build)' },
-};
-
-function createTestForm() {
-    var form = new NewBugForm();
-    for (var key in testFormData) {
-        form[key] = testFormData[key].value;
-    }
-    return form;
-}
-
-test('properties are set', 9, function() {
-    var form = createTestForm();
-
-    for (var key in testFormData) {
-        equal(form[key], testFormData[key].value);
-    }
-});
-
-test('domElement() posts to enter_bug.cgi', 3, function() {
-    var formElement = createTestForm().domElement();
-    equal(formElement.tagName, 'FORM');
-    equal(formElement.method, 'post');
-    equal(formElement.action, 'https://bugs.webkit.org/enter_bug.cgi');
-});
-
-test('domElement() contains only hidden input elements', 9, function() {
-    var elements = createTestForm().domElement().elements;
-    for (var i = 0; i < elements.length; ++i) {
-        equal(elements[i].type, 'hidden');
-    }
-});
-
-test('domElement() contains all form values', 9, function() {
-    var formElement = createTestForm().domElement();
-
-    for (var key in testFormData) {
-        var data = testFormData[key];
-        equal(formElement[data.formName].value, data.value, key);
-    }
-});
-
-})();
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ORWTResultsParser.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ORWTResultsParser.js
deleted file mode 100644
index 68170a8..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ORWTResultsParser.js
+++ /dev/null
@@ -1,86 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-function ORWTResultsParser() {
-}
-
-ORWTResultsParser.prototype = {
-    parse: function(resultsHTMLString) {
-        var result = { tests: {}, tooManyFailures: false };
-
-        var root = document.createElement('html');
-        root.innerHTML = resultsHTMLString;
-
-        // Note that some old results.html files won't contain this element even if we had to stop
-        // running early due to too many failures. Our caller will have to figure that out
-        // themselves.
-        result.tooManyFailures = root.getElementsByClassName('stopped-running-early-message').length > 0;
-
-        function parseResultTable(regex) {
-            var paragraph = Array.prototype.findFirst.call(root.querySelectorAll('p'), function(paragraph) {
-                return regex.test(paragraph.innerText);
-            });
-            if (!paragraph)
-                return [];
-            var table = paragraph.nextElementSibling;
-            console.assert(table.nodeName === 'TABLE');
-            return Array.prototype.map.call(table.rows, function(row) {
-                var links = row.getElementsByTagName('a');
-                var result = {
-                    name: links[0].innerText,
-                };
-                for (var i = 1; i < links.length; ++i) {
-                    var match = /^crash log \((.*)\)$/.exec(links[i].innerText);
-                    if (!match)
-                        continue;
-                    result.crashingSymbol = match[1];
-                    break;
-                }
-                return result;
-            });
-        }
-
-        parseResultTable(/did not match expected results/).forEach(function(testData) {
-            result.tests[testData.name] = { failureType: 'fail' };
-        });
-        parseResultTable(/timed out/).forEach(function(testData) {
-            result.tests[testData.name] = { failureType: 'timeout' };
-        });
-        parseResultTable(/tool to crash/).forEach(function(testData) {
-            result.tests[testData.name] = {
-                failureType: 'crash',
-                crashingSymbol: testData.crashingSymbol,
-            };
-        });
-        parseResultTable(/Web process to crash/).forEach(function(testData) {
-            result.tests[testData.name] = {
-                failureType: 'webprocess crash',
-                crashingSymbol: testData.crashingSymbol,
-            };
-        });
-
-        return result;
-    },
-};
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/PersistentCache.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/PersistentCache.js
deleted file mode 100644
index ab9e989..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/PersistentCache.js
+++ /dev/null
@@ -1,88 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-var PersistentCache = {
-    contains: function(key) {
-        return key in localStorage;
-    },
-
-    get: function(key) {
-        var string = localStorage[key];
-        if (!string)
-            return string;
-
-        // FIXME: We could update the date stored with the value here to make this more of an MRU
-        // cache (instead of most-recently-stored), but that would result in extra disk access that
-        // might not be so great.
-        return JSON.parse(this._parseDateAndJSONFromString(string).json);
-    },
-
-    set: function(key, value) {
-        try {
-            localStorage[key] = this._addDateToJSONString(JSON.stringify(value));
-        } catch (e) {
-            if (e.code !== 22) // QUOTA_EXCEEDED_ERR
-                throw e;
-
-            // We've run out of space in localStorage. Let's just throw away everything and try
-            // again.
-            this._emptyCache();
-            this.set(key, value);
-        }
-    },
-
-    prune: function() {
-        var now = Date.now();
-        for (var key in localStorage) {
-            var date = this._parseDateAndJSONFromString(localStorage[key]).date;
-            if (now - date <= this._dataAgeLimitMS)
-                continue;
-            delete localStorage[key];
-        }
-
-        this.set(this._lastPruneDateKey, now);
-    },
-
-    _addDateToJSONString: function(jsonString) {
-        return Date.now() + this._dateAndJSONSeparator + jsonString;
-    },
-
-    _dataAgeLimitMS: 1000 * 60 * 60 * 24 * 1.1, // Just over one day
-
-    _dateAndJSONSeparator: ': ',
-
-    _emptyCache: function() {
-        for (var key in localStorage)
-            delete localStorage[key];
-    },
-
-    _parseDateAndJSONFromString: function(string) {
-        var separatorIndex = string.indexOf(this._dateAndJSONSeparator);
-        return {
-            date: new Date(parseInt(string.substring(0, separatorIndex), 10)),
-            json: string.substring(separatorIndex + this._dateAndJSONSeparator.length),
-        };
-    },
-};
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/TestRelatedBugForm.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/TestRelatedBugForm.js
deleted file mode 100644
index 96f0ee9..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/TestRelatedBugForm.js
+++ /dev/null
@@ -1,71 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-function TestRelatedBugForm(tester) {
-    NewBugForm.call(this);
-
-    this._tester = tester;
-
-    this.component = WebKitBugzilla.Component.ToolsTests;
-    this.keywords = [
-        WebKitBugzilla.Keyword.LayoutTestFailure,
-        WebKitBugzilla.Keyword.MakingBotsRed,
-    ].join(', ');
-    this.operatingSystem = this._computeOperatingSystem();
-    this.platform = this._computePlatform();
-    this.product = WebKitBugzilla.Product.WebKit;
-    this.version = WebKitBugzilla.Version.Nightly;
-}
-
-TestRelatedBugForm.prototype = {
-    domElement: function() {
-        var form = NewBugForm.prototype.domElement.call(this);
-        form.className = 'new-bug-form';
-        form.target = '_blank';
-        return form;
-    },
-
-    _computeOperatingSystem: function() {
-        if (/Windows 7/.test(this._tester.name))
-            return WebKitBugzilla.OperatingSystem.Windows7;
-        if (/Windows XP/.test(this._tester.name))
-            return WebKitBugzilla.OperatingSystem.WindowsXP;
-        if (/SnowLeopard/.test(this._tester.name))
-            return WebKitBugzilla.OperatingSystem.SnowLeopard;
-        if (/Leopard/.test(this._tester.name))
-            return WebKitBugzilla.OperatingSystem.Leopard;
-        return '';
-    },
-
-    _computePlatform: function() {
-        if (/Windows/.test(this._tester.name))
-            return WebKitBugzilla.Platform.PC;
-        if (/Leopard/.test(this._tester.name))
-            return WebKitBugzilla.Platform.Macintosh;
-        return '';
-    },
-};
-
-TestRelatedBugForm.prototype.__proto__ = NewBugForm.prototype;
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/TestRelatedBugForm_unittests.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/TestRelatedBugForm_unittests.js
deleted file mode 100644
index 311dab0..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/TestRelatedBugForm_unittests.js
+++ /dev/null
@@ -1,94 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-(function() {
-
-module('TestRelatedBugForm');
-
-function createTestForm(testerName) {
-    var mockBuildbot = {};
-    mockBuildbot.parseBuildName = function(buildName) {
-        var match = /(\d+)/.exec(buildName);
-        return {
-            revision: parseInt(match[1], 10),
-            buildNumber: parseInt(match[2], 10),
-        };
-    };
-
-    var mockBuilder = {};
-    mockBuilder.name = testerName;
-    mockBuilder.buildbot = mockBuildbot;
-    mockBuilder.resultsPageURL = function(buildName) {
-        return '[RESULTS PAGE URL ' + this.name + ', ' + buildName + ']';
-    }
-
-    return new TestRelatedBugForm(mockBuilder);
-}
-
-test('component and keywords are set', 2, function() {
-    var form = createTestForm('Windows 7 Release (Tests)');
-
-    equal(form.component, WebKitBugzilla.Component.ToolsTests);
-    deepEqual(form.keywords.split(', '), [WebKitBugzilla.Keyword.LayoutTestFailure, WebKitBugzilla.Keyword.MakingBotsRed]);
-});
-
-const testers = {
-    'GTK Linux 32-bit Release': {
-        operatingSystem: '',
-        platform: '',
-    },
-    'Leopard Intel Release (Tests)': {
-        operatingSystem: WebKitBugzilla.OperatingSystem.Leopard,
-        platform: WebKitBugzilla.Platform.Macintosh,
-    },
-    'SnowLeopard Intel Release (Tests)': {
-        operatingSystem: WebKitBugzilla.OperatingSystem.SnowLeopard,
-        platform: WebKitBugzilla.Platform.Macintosh,
-    },
-    'Windows 7 Release (Tests)': {
-        operatingSystem: WebKitBugzilla.OperatingSystem.Windows7,
-        platform: WebKitBugzilla.Platform.PC,
-    },
-    'Windows XP Debug (Tests)': {
-        operatingSystem: WebKitBugzilla.OperatingSystem.WindowsXP,
-        platform: WebKitBugzilla.Platform.PC,
-    },
-};
-
-test('operating system is deduced', 5, function() {
-    for (var name in testers) {
-        var form = createTestForm(name);
-        equal(form.operatingSystem, testers[name].operatingSystem);
-    }
-});
-
-test('platform is deduced', 5, function() {
-    for (var name in testers) {
-        var form = createTestForm(name);
-        equal(form.platform, testers[name].platform);
-    }
-});
-
-})();
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Trac.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Trac.js
deleted file mode 100644
index 81b5714..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Trac.js
+++ /dev/null
@@ -1,174 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-var trac = trac || {};
-
-(function() {
-
-function findUsingRegExp(string, regexp)
-{
-    var match = regexp.exec(string);
-    if (match)
-        return match[1];
-    return null;
-}
-
-function findReviewer(message)
-{
-    var regexp = /Reviewed by ([^.]+)/;
-    return findUsingRegExp(message, regexp);
-}
-
-function findAuthor(message)
-{
-    var regexp = /Patch by ([^<]+) </;
-    return findUsingRegExp(message, regexp);
-}
-
-function findBugID(message)
-{
-    var regexp = /\/show_bug.cgi\?id=(\d+)/;
-    return parseInt(findUsingRegExp(message, regexp), 10);
-}
-
-function findRevision(title)
-{
-    var regexp = /^Revision (\d+):/;
-    return parseInt(findUsingRegExp(title, regexp), 10);
-}
-
-function findSummary(message)
-{
-    var lines = message.split('\n');
-    for (var i = 0; i < lines.length; ++i) {
-        var line = lines[i]
-        if (findBugID(line))
-            continue;
-        if (findReviewer(line))
-            continue;
-        // Old-style commit message.
-        if (/^\d\d\d\d-\d\d-\d\d/.exec(line))
-            continue;
-        if (line.length > 0)
-            return line;
-    }
-}
-
-function findRevert(message)
-{
-    var regexp = /rolling out r(\d+)\./;
-    var revision = findUsingRegExp(message, regexp);
-    if (!revision)
-        return undefined;
-    return parseInt(revision, 10);
-}
-
-// FIXME: Consider exposing this method for unit testing.
-function parseCommitData(responseXML)
-{
-    var commits = Array.prototype.map.call(responseXML.getElementsByTagName('item'), function(item) {
-        var title = item.getElementsByTagName('title')[0].textContent;
-        var author = item.getElementsByTagName('author')[0].textContent;
-        var time = item.getElementsByTagName('pubDate')[0].textContent;
-
-        // FIXME: This isn't a very high-fidelity reproduction of the commit message,
-        // but it's good enough for our purposes.
-        var container = document.createElement('div');
-        container.innerHTML = item.getElementsByTagName('description')[0].textContent;
-        var message = container.innerText;
-
-        return {
-            'revision': findRevision(title),
-            'title': title,
-            'time': time,
-            'summary': findSummary(message),
-            'author': findAuthor(message) || author,
-            'reviewer': findReviewer(message),
-            'bugID': findBugID(message),
-            'message': message,
-            'revertedRevision': findRevert(message),
-        };
-    });
-
-    return commits;
-}
-
-var g_cache = new base.AsynchronousCache(function(key, callback) {
-    var explodedKey = key.split('\n');
-
-    var path = explodedKey[0];
-    var startRevision = explodedKey[1];
-    var endRevision = explodedKey[2];
-
-    var url = trac.logURL(path, startRevision, endRevision, true, true);
-
-    net.get(url, function(commitData) {
-        callback(parseCommitData(commitData));
-    });
-});
-
-trac.changesetURL = function(revision)
-{
-    return config.kTracURL + '/changeset/' + revision;
-};
-
-trac.logURL = function(path, startRevision, endRevision, showFullCommitLogs, formatAsRSS)
-{
-    var queryParameters = {
-        rev: endRevision,
-        stop_rev: startRevision,
-        // Trac requires limit to be 1 more than the number of revisions we actually want to show.
-        // See <http://trac.edgewall.org/ticket/10317>.
-        limit: endRevision - startRevision + 2,
-    };
-
-    if (showFullCommitLogs)
-        queryParameters.verbose = 'on';
-    if (formatAsRSS)
-        queryParameters.format = 'rss';
-
-    return config.kTracURL + '/log/' + path + '?' + $.param(queryParameters);
-};
-
-trac.recentCommitData = function(path, limit, callback)
-{
-    var url = config.kTracURL + '/log/' + path + '?' + $.param({
-        'verbose': 'on',
-        'format': 'rss',
-        'limit': limit,
-    });
-
-    net.get(url, function(commitData) {
-        callback(parseCommitData(commitData));
-    });
-};
-
-trac.commitDataForRevisionRange = function(path, startRevision, endRevision, callback)
-{
-    var key = [path, startRevision, endRevision].join('\n');
-    g_cache.get(key, callback);
-};
-
-})();
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Utilities.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Utilities.js
deleted file mode 100644
index f800b39..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Utilities.js
+++ /dev/null
@@ -1,178 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-function createDescriptionList(items) {
-    var list = document.createElement('dl');
-    items.forEach(function(pair) {
-        var dt = document.createElement('dt');
-        dt.appendChild(pair[0]);
-        var dd = document.createElement('dd');
-        dd.appendChild(pair[1]);
-        list.appendChild(dt);
-        list.appendChild(dd);
-    });
-    return list;
-}
-
-function fetchResource(url, method, queryParameters, callback, errorCallback) {
-    var xhr = new XMLHttpRequest();
-    xhr.onreadystatechange = function() {
-        if (this.readyState !== 4)
-            return;
-        // Allow a status of 0 for easier testing with local files.
-        if (!this.status || this.status === 200)
-            callback(this);
-        else if (errorCallback)
-            errorCallback(this);
-    };
-
-    if (method === 'GET' && queryParameters)
-        url = addQueryParametersToURL(url, queryParameters);
-
-    xhr.open(method, url);
-
-    if (method === 'GET') {
-        xhr.send();
-        return;
-    }
-
-    var data = urlEncodeQueryParameters(queryParameters);
-    xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
-    xhr.send(data);
-}
-
-function getResource(url, callback, errorCallback) {
-    fetchResource(url, 'GET', null, callback, errorCallback);
-}
-
-function urlEncodeQueryParameters(queryParameters) {
-    var encodedParameters = Object.keys(queryParameters).map(function(key) {
-        return key + '=' + encodeURIComponent(queryParameters[key]);
-    });
-    return encodedParameters.join('&');
-}
-
-function addQueryParametersToURL(url, queryParameters) {
-    if (url.indexOf('?') < 0)
-        url += '?';
-    else
-        url += '&';
-
-    return url + urlEncodeQueryParameters(queryParameters);
-}
-
-function longestCommonPathPrefix(paths) {
-    const separator = '/';
-
-    var splitPaths = paths.map(function(path) { return path.split(separator) });
-    var firstSplitPath = splitPaths.shift();
-
-    var result = [];
-    for (var i = 0; i < firstSplitPath.length; ++i) {
-        if (!splitPaths.every(function(splitPath) { return splitPath[i] === firstSplitPath[i] }))
-            break;
-        result.push(firstSplitPath[i]);
-    }
-
-    if (!result.length)
-        return null;
-    return result.join(separator);
-}
-
-function removePathExtension(string) {
-    var dotIndex = string.lastIndexOf('.');
-    if (dotIndex < 0)
-        return string;
-    return string.substring(0, dotIndex);
-}
-
-function sorted(array, sortFunction) {
-    var newArray = array.slice();
-    newArray.sort(sortFunction);
-    return newArray;
-}
-
-Array.prototype.contains = function(value) {
-    return this.indexOf(value) >= 0;
-}
-
-Array.prototype.findFirst = function(predicate) {
-    for (var i = 0; i < this.length; ++i) {
-        if (predicate(this[i]))
-            return this[i];
-    }
-    return null;
-}
-
-Array.prototype.findLast = function(predicate) {
-    for (var i = this.length - 1; i >= 0; --i) {
-        if (predicate(this[i]))
-            return this[i];
-    }
-    return null;
-}
-
-Array.prototype.last = function() {
-    if (!this.length)
-        return undefined;
-    return this[this.length - 1];
-}
-
-Element.prototype.hasStyleClass = function(klass) {
-    var regex = new RegExp('\\b' + klass + '\\b');
-    return regex.test(this.className);
-}
-
-Element.prototype.addStyleClass = function(klass) {
-    if (this.hasStyleClass(klass))
-        return;
-    this.className += ' ' + klass;
-}
-
-Element.prototype.removeStyleClass = function(klass) {
-    var regex = new RegExp('\\b' + klass + '\\b', 'g');
-    this.className = this.className.replace(regex, '');
-}
-
-Element.prototype.toggleStyleClass = function(klass) {
-    if (this.hasStyleClass(klass))
-        this.removeStyleClass(klass);
-    else
-        this.addStyleClass(klass);
-}
-
-Node.prototype.appendChildren = function(children) {
-    for (var i = 0; i < children.length; ++i)
-        this.appendChild(children[i]);
-}
-
-Node.prototype.removeAllChildren = function() {
-    while (this.firstChild)
-        this.removeChild(this.firstChild);
-}
-
-String.prototype.contains = function(substring) {
-    return this.indexOf(substring) >= 0;
-}
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Utilities_unittests.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Utilities_unittests.js
deleted file mode 100644
index 4c19a4f..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Utilities_unittests.js
+++ /dev/null
@@ -1,127 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-(function() {
-
-module('Utilities');
-
-test('hasStyleClass', 11, function() {
-    var element = document.createElement('div');
-
-    ok(!element.hasStyleClass('foo'));
-    ok(!element.hasStyleClass('bar'));
-
-    element.className = 'foo';
-    ok(element.hasStyleClass('foo'))
-    ok(!element.hasStyleClass('bar'));
-
-    element.className = 'foo foo';
-    ok(element.hasStyleClass('foo'))
-    ok(!element.hasStyleClass('bar'));
-
-    element.className = 'foo bar';
-    ok(element.hasStyleClass('foo'))
-    ok(element.hasStyleClass('bar'));
-    ok(!element.hasStyleClass('baz'));
-
-    element.className = 'food';
-    ok(!element.hasStyleClass('foo'));
-    ok(element.hasStyleClass('food'));
-});
-
-test('addStyleClass', 4, function() {
-    var element = document.createElement('div');
-
-    element.addStyleClass('foo');
-    equal(element.className, ' foo');
-
-    element.addStyleClass('foo');
-    equal(element.className, ' foo');
-
-    element.addStyleClass('bar');
-    equal(element.className, ' foo bar');
-
-    element.addStyleClass('foo');
-    equal(element.className, ' foo bar');
-});
-
-test('removeStyleClass', 8, function() {
-    var element = document.createElement('div');
-
-    element.removeStyleClass('foo');
-    equal(element.className, '');
-
-    element.className = 'foo';
-    element.removeStyleClass('foo');
-    equal(element.className, '');
-
-    element.className = ' foo';
-    element.removeStyleClass('foo');
-    equal(element.className, ' ');
-
-    element.className = 'foo foo';
-    element.removeStyleClass('foo');
-    equal(element.className, ' ');
-
-    element.className = 'foo bar';
-    element.removeStyleClass('foo');
-    equal(element.className, ' bar');
-
-    element.className = 'foo bar foo bar';
-    element.removeStyleClass('bar');
-    equal(element.className, 'foo  foo ');
-
-    element.className = 'food';
-    element.removeStyleClass('foo');
-    equal(element.className, 'food');
-
-    element.className = 'foo';
-    element.removeStyleClass('food');
-    equal(element.className, 'foo');
-});
-
-test('toggleStyleClass', 5, function() {
-    var element = document.createElement('div');
-
-    element.toggleStyleClass('foo');
-    equal(element.className, ' foo');
-
-    element.toggleStyleClass('foo');
-    equal(element.className, ' ');
-
-    element.className = 'bar';
-    element.toggleStyleClass('foo');
-    equal(element.className, 'bar foo');
-
-    element.className = 'food';
-    element.toggleStyleClass('foo');
-    equal(element.className, 'food foo');
-
-    element.className = 'foo';
-    element.toggleStyleClass('food');
-    equal(element.className, 'foo food');
-});
-
-})();
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ViewController.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ViewController.js
deleted file mode 100644
index c7740fb..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ViewController.js
+++ /dev/null
@@ -1,432 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-function ViewController(buildbot) {
-    this._buildbot = buildbot;
-    this._navigationID = 0;
-
-    var self = this;
-    addEventListener('load', function() { self.loaded() }, false);
-    addEventListener('hashchange', function() { self.parseHash(location.hash) }, false);
-}
-
-ViewController.prototype = {
-    loaded: function() {
-        this._header = document.createElement('h1');
-        document.body.appendChild(this._header);
-        this._mainContentElement = document.createElement('div');
-        document.body.appendChild(this._mainContentElement);
-        document.body.appendChild(this._domForAuxiliaryUIElements());
-
-        this.parseHash(location.hash);
-    },
-
-    parseHash: function(hash) {
-        ++this._navigationID;
-
-        var match = /#\/(.*)/.exec(hash);
-        if (match)
-            this._displayBuilder(this._buildbot.builderNamed(decodeURIComponent(match[1])));
-        else
-            this._displayTesters();
-    },
-
-    _displayBuilder: function(builder) {
-        this._setTitle(builder.name);
-        this._mainContentElement.removeAllChildren();
-
-        var navigationID = this._navigationID;
-
-        var self = this;
-        (new LayoutTestHistoryAnalyzer(builder)).start(function(data, stillFetchingData) {
-            if (self._navigationID !== navigationID) {
-                // The user has navigated somewhere else. Stop loading data about this tester.
-                return false;
-            }
-
-            var list = document.createElement('ol');
-            list.id = 'failure-history';
-
-            var buildNames = Object.keys(data.history)
-            buildNames.forEach(function(buildName, buildIndex, buildNameArray) {
-                var failingTestNames = Object.keys(data.history[buildName].tests);
-                if (!failingTestNames.length)
-                    return;
-
-                var item = document.createElement('li');
-                list.appendChild(item);
-
-                var testList = document.createElement('ol');
-                item.appendChild(testList);
-
-                testList.className = 'test-list';
-                for (var testName in data.history[buildName].tests) {
-                    var testItem = document.createElement('li');
-                    testItem.appendChild(self._domForFailedTest(builder, buildName, testName, data.history[buildName].tests[testName]));
-                    testList.appendChild(testItem);
-                }
-
-                if (data.history[buildName].tooManyFailures) {
-                    var p = document.createElement('p');
-                    p.className = 'info';
-                    p.appendChild(document.createTextNode('run-webkit-tests exited early due to too many failures/crashes/timeouts'));
-                    item.appendChild(p);
-                }
-
-                var passingBuildName;
-                if (buildIndex + 1 < buildNameArray.length)
-                    passingBuildName = buildNameArray[buildIndex + 1];
-
-                item.appendChild(self._domForRegressionRange(builder, buildName, passingBuildName, failingTestNames));
-
-                if (passingBuildName || !stillFetchingData) {
-                    var bugForm = new FailingTestsBugForm(builder, buildName, passingBuildName, failingTestNames);
-                    item.appendChild(self._domForNewAndExistingBugs(builder, failingTestNames, bugForm))
-                }
-            });
-
-            self._mainContentElement.removeAllChildren();
-            self._mainContentElement.appendChild(list);
-            self._mainContentElement.appendChild(self._domForPossiblyFlakyTests(builder, data.possiblyFlaky, buildNames));
-
-            if (!stillFetchingData)
-                PersistentCache.prune();
-
-            return true;
-        });
-    },
-
-    _displayTesters: function() {
-        this._setTitle('Testers');
-        this._mainContentElement.removeAllChildren();
-
-        var list = document.createElement('ul');
-        this._mainContentElement.appendChild(list);
-
-        var latestBuildInfos = [];
-        var navigationID = this._navigationID;
-
-        function updateList() {
-            latestBuildInfos.sort(function(a, b) { return a.tester.name.localeCompare(b.tester.name) });
-            list.removeAllChildren();
-            latestBuildInfos.forEach(function(buildInfo) {
-                var link = base.createLinkNode('#/' + buildInfo.tester.name, buildInfo.tester.name)
-                var item = document.createElement('li');
-                item.appendChild(link);
-                if (buildInfo.tooManyFailures)
-                    item.appendChild(document.createTextNode(' (too many failures/crashes/timeouts)'));
-                else
-                    item.appendChild(document.createTextNode(' (' + buildInfo.failureCount + ' failing test' + (buildInfo.failureCount > 1 ? 's' : '') + ')'));
-                list.appendChild(item);
-            });
-        }
-
-        var self = this;
-        this._buildbot.getTesters(function(testers) {
-            if (self._navigationID !== navigationID) {
-                // The user has navigated somewhere else.
-                return;
-            }
-            testers.forEach(function(tester) {
-                tester.getMostRecentCompletedBuildNumber(function(buildNumber) {
-                    if (self._navigationID !== navigationID)
-                        return;
-                    if (buildNumber < 0)
-                        return;
-                    tester.getNumberOfFailingTests(buildNumber, function(failureCount, tooManyFailures) {
-                        if (self._navigationID !== navigationID)
-                            return;
-                        if (failureCount <= 0)
-                            return;
-                        latestBuildInfos.push({ tester: tester, failureCount: failureCount, tooManyFailures: tooManyFailures });
-                        updateList();
-                    });
-                });
-            });
-        });
-    },
-
-    _domForRegressionRange: function(builder, failingBuildName, passingBuildName, failingTestNames) {
-        var result = document.createDocumentFragment();
-
-        var dlItems = [
-            [document.createTextNode('Failed'), this._domForBuildName(builder, failingBuildName)],
-        ];
-        if (passingBuildName)
-            dlItems.push([document.createTextNode('Passed'), this._domForBuildName(builder, passingBuildName)]);
-        result.appendChild(createDescriptionList(dlItems));
-
-        if (!passingBuildName)
-            return result;
-
-        var firstSuspectRevision = this._buildbot.parseBuildName(passingBuildName).revision + 1;
-        var lastSuspectRevision = this._buildbot.parseBuildName(failingBuildName).revision;
-
-        if (firstSuspectRevision === lastSuspectRevision)
-            return result;
-
-        var suspectsContainer = document.createElement('div');
-        result.appendChild(suspectsContainer);
-
-        var link = base.createLinkNode(trac.logURL('trunk', firstSuspectRevision, lastSuspectRevision, true), 'View regression range in Trac');
-        result.appendChild(link);
-
-        suspectsContainer.appendChild(document.createTextNode('Searching for suspect revisions\u2026'));
-
-        // FIXME: Maybe some of this code should go in LayoutTestHistoryAnalyzer, or some other class?
-        var self = this;
-        trac.commitDataForRevisionRange('trunk', firstSuspectRevision, lastSuspectRevision, function(commits) {
-            var failingTestNamesWithoutExtensions = failingTestNames.map(removePathExtension);
-            var suspectCommits = commits.filter(function(commit) {
-                return failingTestNamesWithoutExtensions.some(function(testName) {
-                    return commit.message.contains(testName);
-                });
-            });
-
-            suspectsContainer.removeAllChildren();
-
-            if (!suspectCommits.length)
-                return;
-
-            var title = 'Suspect revision' + (suspectCommits.length > 1 ? 's' : '') + ':';
-            suspectsContainer.appendChild(document.createTextNode(title));
-
-            var list = document.createElement('ul');
-            suspectsContainer.appendChild(list);
-            list.className = 'suspect-revisions-list';
-
-            function compareCommits(a, b) {
-                return b.revision - a.revision;
-            }
-
-            list.appendChildren(sorted(suspectCommits, compareCommits).map(function(commit) {
-                var item = document.createElement('li');
-                item.appendChild(base.createLinkNode(trac.changesetURL(commit.revision), commit.title));
-                return item;
-            }));
-        });
-
-        return result;
-    },
-
-    _domForAuxiliaryUIElements: function() {
-        var aside = document.createElement('aside');
-        aside.appendChild(document.createTextNode('Something not working? Have an idea to improve this page? '));
-        var queryParameters = {
-            product: 'WebKit',
-            component: 'Tools / Tests',
-            version: '528+ (Nightly build)',
-            bug_file_loc: location.href,
-            cc: 'aroben@apple.com',
-            short_desc: 'TestFailures page needs more unicorns!',
-        };
-        aside.appendChild(base.createLinkNode(addQueryParametersToURL(config.kBugzillaURL + '/enter_bug.cgi', queryParameters), 'File a bug!', '_blank'));
-        return aside;
-    },
-
-    _domForBuildName: function(builder, buildName) {
-        var parsed = this._buildbot.parseBuildName(buildName);
-
-        var sourceLink = base.createLinkNode('http://trac.webkit.org/changeset/' + parsed.revision, 'r' + parsed.revision);
-        var buildLink = base.createLinkNode(builder.buildURL(parsed.buildNumber), parsed.buildNumber);
-        var resultsLink = base.createLinkNode(builder.resultsPageURL(buildName), 'results.html');
-
-        var result = document.createDocumentFragment();
-        result.appendChild(sourceLink);
-        result.appendChild(document.createTextNode(' ('));
-        result.appendChild(buildLink);
-        result.appendChild(document.createTextNode(') ('));
-        result.appendChild(resultsLink);
-        result.appendChild(document.createTextNode(')'));
-
-        return result;
-    },
-
-    _domForFailedTest: function(builder, buildName, testName, testResult) {
-        var result = document.createDocumentFragment();
-        result.appendChild(document.createTextNode(testName + ': '));
-        result.appendChild(this._domForFailureDiagnosis(builder, buildName, testName, testResult));
-        return result;
-    },
-
-    _domForFailureDiagnosis: function(builder, buildName, testName, testResult) {
-        var diagnosticInfo = builder.failureDiagnosisTextAndURL(buildName, testName, testResult);
-        if (!diagnosticInfo)
-            return document.createTextNode(testResult.failureType);
-
-        var textAndCrashingSymbol = document.createDocumentFragment();
-        textAndCrashingSymbol.appendChild(document.createTextNode(diagnosticInfo.text));
-        if (testResult.crashingSymbol) {
-            var code = document.createElement('code');
-            code.appendChild(document.createTextNode(testResult.crashingSymbol));
-            textAndCrashingSymbol.appendChild(document.createTextNode(' ('));
-            textAndCrashingSymbol.appendChild(code);
-            textAndCrashingSymbol.appendChild(document.createTextNode(')'));
-        }
-
-        if (!('url' in diagnosticInfo))
-            return textAndCrashingSymbol;
-
-        return base.createLinkNode(diagnosticInfo.url, textAndCrashingSymbol);
-    },
-
-    _domForNewAndExistingBugs: function(tester, failingTests, bugForm) {
-        var result = document.createDocumentFragment();
-
-        var container = document.createElement('p');
-        result.appendChild(container);
-
-        container.className = 'existing-and-new-bugs';
-
-        var bugsContainer = document.createElement('div');
-        container.appendChild(bugsContainer);
-
-        bugsContainer.appendChild(document.createTextNode('Searching for bugs related to ' + (failingTests.length > 1 ? 'these tests' : 'this test') + '\u2026'));
-
-        bugzilla.quickSearch('ALL ' + failingTests.join('|'), function(bugs) {
-            if (!bugs.length) {
-                bugsContainer.parentNode.removeChild(bugsContainer);
-                return;
-            }
-
-            while (bugsContainer.firstChild)
-                bugsContainer.removeChild(bugsContainer.firstChild);
-
-            bugsContainer.appendChild(document.createTextNode('Existing bugs related to ' + (failingTests.length > 1 ? 'these tests' : 'this test') + ':'));
-
-            var list = document.createElement('ul');
-            bugsContainer.appendChild(list);
-
-            list.className = 'existing-bugs-list';
-
-            function bugToListItem(bug) {
-                var link = base.createLinkNode(bug.url, bug.title);
-                var item = document.createElement('li');
-                item.appendChild(link);
-
-                return item;
-            }
-
-            var openBugs = bugs.filter(function(bug) { return bugzilla.isOpenStatus(bug.status) });
-            var closedBugs = bugs.filter(function(bug) { return !bugzilla.isOpenStatus(bug.status) });
-
-            list.appendChildren(openBugs.map(bugToListItem));
-
-            if (!closedBugs.length)
-                return;
-
-            var item = document.createElement('li');
-            list.appendChild(item);
-
-            item.appendChild(document.createTextNode('Closed bugs:'));
-
-            var closedList = document.createElement('ul');
-            item.appendChild(closedList);
-
-            closedList.appendChildren(closedBugs.map(bugToListItem));
-        });
-
-        var form = bugForm.domElement();
-        result.appendChild(form);
-
-        var linkText = 'File bug for ' + (failingTests.length > 1 ? 'these failures' : 'this failure');
-        var link = base.createLinkNode('#', linkText);
-        link.addEventListener('click', function(event) { form.submit(); event.preventDefault(); });
-
-        container.appendChild(link);
-        return result;
-    },
-
-    _domForPossiblyFlakyTests: function(builder, possiblyFlakyTestData, allBuilds) {
-        var result = document.createDocumentFragment();
-        var flakyTests = Object.keys(possiblyFlakyTestData);
-        if (!flakyTests.length)
-            return result;
-
-        var flakyHeader = document.createElement('h2');
-        result.appendChild(flakyHeader);
-        flakyHeader.appendChild(document.createTextNode('Possibly Flaky Tests'));
-
-        var flakyList = document.createElement('ol');
-        result.appendChild(flakyList);
-
-        flakyList.id = 'possibly-flaky-tests';
-
-        var self = this;
-        flakyList.appendChildren(sorted(flakyTests).map(function(testName) {
-            var item = document.createElement('li');
-
-            var disclosureTriangle = document.createElement('span');
-            item.appendChild(disclosureTriangle);
-
-            disclosureTriangle.className = 'disclosure-triangle';
-            const blackRightPointingSmallTriangle = '\u25b8';
-            disclosureTriangle.appendChild(document.createTextNode(blackRightPointingSmallTriangle));
-
-            var failures = possiblyFlakyTestData[testName];
-
-            item.appendChild(document.createTextNode(testName + ' (failed ' + failures.length + ' out of ' + allBuilds.length + ' times)'));
-
-            var container = document.createElement('div');
-            item.appendChild(container);
-
-            container.className = 'expandable';
-
-            disclosureTriangle.addEventListener('click', function() {
-                item.toggleStyleClass('expanded');
-                if (!item.hasStyleClass('expanded'))
-                    return;
-
-                if (!container.firstChild) {
-                    var failureList = document.createElement('ol');
-                    container.appendChild(failureList);
-
-                    failureList.className = 'flakiness-examples-list';
-
-                    failureList.appendChildren(failures.map(function(historyItem) {
-                        var item = document.createElement('li');
-                        item.appendChild(self._domForBuildName(builder, historyItem.build));
-                        item.appendChild(document.createTextNode(': '));
-                        item.appendChild(self._domForFailureDiagnosis(builder, historyItem.build, testName, historyItem.result));
-                        return item;
-                    }));
-
-                    var failingBuildNames = failures.map(function(historyItem) { return historyItem.build });
-                    var bugForm = new FlakyTestBugForm(builder, failingBuildNames, testName, allBuilds.last(), allBuilds[0], allBuilds.length);
-                    container.appendChild(self._domForNewAndExistingBugs(builder, [testName], bugForm));
-                }
-            });
-
-            return item;
-        }));
-
-        return result;
-    },
-
-    _setTitle: function(title) {
-        document.title = title;
-        this._header.textContent = title;
-    },
-};
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/WebKitBugzilla.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/WebKitBugzilla.js
deleted file mode 100644
index 1f2db66..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/WebKitBugzilla.js
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-const WebKitBugzilla = {
-    Component: {
-        ToolsTests: 'Tools / Tests',
-    },
-
-    Keyword: {
-        LayoutTestFailure: 'LayoutTestFailure',
-        MakingBotsRed: 'MakingBotsRed',
-        Regression: 'Regression',
-    },
-
-    OperatingSystem: {
-        Leopard: 'Mac OS X 10.5',
-        SnowLeopard: 'Mac OS X 10.6',
-        Windows7: 'Windows 7',
-        WindowsXP: 'Windows XP',
-    },
-
-    Platform: {
-        Macintosh: 'Macintosh',
-        PC: 'PC',
-    },
-
-    Product: {
-        WebKit: 'WebKit',
-    },
-
-    Version: {
-        Nightly: '528+ (Nightly build)',
-    },
-};
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/WebKitBuildbot.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/WebKitBuildbot.js
deleted file mode 100644
index c0fab46..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/WebKitBuildbot.js
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-function WebKitBuildbot() {
-    Buildbot.call(this, 'http://build.webkit.org/');
-}
-
-WebKitBuildbot.prototype = {
-    parseBuildName: function(buildName) {
-        var match = /^r(\d+) \((\d+)\)$/.exec(buildName);
-        if (!match)
-            return null;
-        return {
-            revision: parseInt(match[1], 10),
-            buildNumber: parseInt(match[2], 10),
-        };
-    },
-};
-
-WebKitBuildbot.prototype.__proto__ = Buildbot.prototype;
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/bugzilla_unittests.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/bugzilla_unittests.js
deleted file mode 100644
index 84019f0..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/bugzilla_unittests.js
+++ /dev/null
@@ -1,233 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-(function () {
-
-module("bugzilla");
-
-var kExampleResponseXML =
-    '<?xml version="1.0" encoding="UTF-8"?>' +
-    '<feed xmlns="http://www.w3.org/2005/Atom">' +
-    '  <title>Bugzilla Bugs</title>' +
-    '  <link rel="alternate" type="text/html"' +
-    '        href="https://bugs.webkit.org/buglist.cgi?bug_status=REOPENED&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=UNCONFIRMED&amp;field-1-0-0=bug_status&amp;field0-0-0=product&amp;field0-0-1=component&amp;field0-0-2=short_desc&amp;field0-0-3=status_whiteboard&amp;field0-0-4=longdesc&amp;query_format=advanced&amp;remaction=&amp;type-1-0-0=anyexact&amp;type0-0-0=substring&amp;type0-0-1=substring&amp;type0-0-2=substring&amp;type0-0-3=substring&amp;type0-0-4=substring&amp;value-1-0-0=REOPENED%2CNEW%2CASSIGNED%2CUNCONFIRMED&amp;value0-0-0=garden-o-matic&amp;value0-0-1=garden-o-matic&amp;value0-0-2=garden-o-matic&amp;value0-0-3=garden-o-matic&amp;value0-0-4=garden-o-matic"/>' +
-    '  <link rel="self" type="application/atom+xml"' +
-    '        href="https://bugs.webkit.org/buglist.cgi?bug_status=REOPENED&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=UNCONFIRMED&amp;ctype=atom&amp;field-1-0-0=bug_status&amp;field0-0-0=product&amp;field0-0-1=component&amp;field0-0-2=short_desc&amp;field0-0-3=status_whiteboard&amp;field0-0-4=longdesc&amp;query_format=advanced&amp;remaction=&amp;type-1-0-0=anyexact&amp;type0-0-0=substring&amp;type0-0-1=substring&amp;type0-0-2=substring&amp;type0-0-3=substring&amp;type0-0-4=substring&amp;value-1-0-0=REOPENED%2CNEW%2CASSIGNED%2CUNCONFIRMED&amp;value0-0-0=garden-o-matic&amp;value0-0-1=garden-o-matic&amp;value0-0-2=garden-o-matic&amp;value0-0-3=garden-o-matic&amp;value0-0-4=garden-o-matic"/>' +
-    '  <updated>2011-08-04T00:22:49Z</updated>' +
-    '  <id>https://bugs.webkit.org/buglist.cgi?bug_status=REOPENED&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=UNCONFIRMED&amp;ctype=atom&amp;field-1-0-0=bug_status&amp;field0-0-0=product&amp;field0-0-1=component&amp;field0-0-2=short_desc&amp;field0-0-3=status_whiteboard&amp;field0-0-4=longdesc&amp;query_format=advanced&amp;remaction=&amp;type-1-0-0=anyexact&amp;type0-0-0=substring&amp;type0-0-1=substring&amp;type0-0-2=substring&amp;type0-0-3=substring&amp;type0-0-4=substring&amp;value-1-0-0=REOPENED%2CNEW%2CASSIGNED%2CUNCONFIRMED&amp;value0-0-0=garden-o-matic&amp;value0-0-1=garden-o-matic&amp;value0-0-2=garden-o-matic&amp;value0-0-3=garden-o-matic&amp;value0-0-4=garden-o-matic</id>' +
-    '' +
-    '  <entry>' +
-    '    <title>[Bug 65654] Add missing license blocks to garden-o-matic</title>' +
-    '    <link rel="alternate" type="text/html"' +
-    '          href="https://bugs.webkit.org/show_bug.cgi?id=65654"/>' +
-    '    <id>https://bugs.webkit.org/show_bug.cgi?id=65654</id>' +
-    '    <author>' +
-    '      <name>Adam Barth</name>' +
-    '    </author>' +
-    '    <updated>2011-08-04T00:22:26Z</updated> ' +
-    '    <summary type="html">' +
-    '      ' +
-    '      &lt;table&gt;' +
-    '      &lt;tr&gt;' +
-    '        &lt;th&gt;Field&lt;/th&gt;&lt;th&gt;Value&lt;/th&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_product&quot;&gt;' +
-    '        &lt;td&gt;Product&lt;/td&gt;' +
-    '        &lt;td&gt;WebKit&lt;/td&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_component&quot;&gt;' +
-    '        &lt;td&gt;Component&lt;/td&gt;' +
-    '        &lt;td&gt;New Bugs&lt;/td&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_assignee&quot;&gt;' +
-    '        &lt;td&gt;Assignee&lt;/td&gt;' +
-    '        &lt;td&gt;Adam Barth&lt;/td&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_reporter&quot;&gt;' +
-    '        &lt;td&gt;Reporter&lt;/td&gt;' +
-    '        &lt;td&gt;Adam Barth&lt;/td&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_bug_status&quot;&gt;' +
-    '        &lt;td&gt;Status&lt;/td&gt;' +
-    '        &lt;td&gt;NEW&lt;/td&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_resolution&quot;&gt;' +
-    '        &lt;td&gt;Resolution &lt;/td&gt;' +
-    '        &lt;td&gt;&lt;/td&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_priority&quot;&gt;' +
-    '        &lt;td&gt;Priority&lt;/td&gt;' +
-    '        &lt;td&gt;P2&lt;/td&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_severity&quot;&gt;' +
-    '        &lt;td&gt;Severity &lt;/td&gt;' +
-    '        &lt;td&gt;Normal&lt;/td&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_creation_date&quot;&gt;' +
-    '        &lt;td&gt;Opened&lt;/td&gt;' +
-    '        &lt;td&gt;16:21:52&lt;/td&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_changed_date&quot;&gt;' +
-    '        &lt;td&gt;Changed&lt;/td&gt;' +
-    '        &lt;td&gt;16:22:26&lt;/td&gt;' +
-    '      &lt;/tr&gt;' +
-    '      &lt;/table&gt;' +
-    '    </summary>' +
-    '  </entry>' +
-    '  <entry>' +
-    '    <title>[Bug 65653] garden-o-matic needs a way to mock out the network</title>' +
-    '    <link rel="alternate" type="text/html"' +
-    '          href="https://bugs.webkit.org/show_bug.cgi?id=65653"/>' +
-    '    <id>https://bugs.webkit.org/show_bug.cgi?id=65653</id>' +
-    '    <author>' +
-    '      <name>Adam Barth</name>' +
-    '    </author>' +
-    '    <updated>2011-08-04T00:22:49Z</updated> ' +
-    '    <summary type="html">' +
-    '      ' +
-    '      &lt;table&gt;' +
-    '      &lt;tr&gt;' +
-    '        &lt;th&gt;Field&lt;/th&gt;&lt;th&gt;Value&lt;/th&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_product&quot;&gt;' +
-    '        &lt;td&gt;Product&lt;/td&gt;' +
-    '        &lt;td&gt;WebKit&lt;/td&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_component&quot;&gt;' +
-    '        &lt;td&gt;Component&lt;/td&gt;' +
-    '        &lt;td&gt;New Bugs&lt;/td&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_assignee&quot;&gt;' +
-    '        &lt;td&gt;Assignee&lt;/td&gt;' +
-    '        &lt;td&gt;Adam Barth&lt;/td&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_reporter&quot;&gt;' +
-    '        &lt;td&gt;Reporter&lt;/td&gt;' +
-    '        &lt;td&gt;Adam Barth&lt;/td&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_bug_status&quot;&gt;' +
-    '        &lt;td&gt;Status&lt;/td&gt;' +
-    '        &lt;td&gt;NEW&lt;/td&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_resolution&quot;&gt;' +
-    '        &lt;td&gt;Resolution &lt;/td&gt;' +
-    '        &lt;td&gt;&lt;/td&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_priority&quot;&gt;' +
-    '        &lt;td&gt;Priority&lt;/td&gt;' +
-    '        &lt;td&gt;P2&lt;/td&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_severity&quot;&gt;' +
-    '        &lt;td&gt;Severity &lt;/td&gt;' +
-    '        &lt;td&gt;Normal&lt;/td&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_creation_date&quot;&gt;' +
-    '        &lt;td&gt;Opened&lt;/td&gt;' +
-    '        &lt;td&gt;16:16:44&lt;/td&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_changed_date&quot;&gt;' +
-    '        &lt;td&gt;Changed&lt;/td&gt;' +
-    '        &lt;td&gt;16:22:49&lt;/td&gt;' +
-    '      &lt;/tr&gt;' +
-    '      &lt;/table&gt;' +
-    '    </summary>' +
-    '  </entry>' +
-    '  <entry>' +
-    '    <title>[Bug 65650] Use failureInfo more pervasively in garden-o-matic</title>' +
-    '    <link rel="alternate" type="text/html"' +
-    '          href="https://bugs.webkit.org/show_bug.cgi?id=65650"/>' +
-    '    <id>https://bugs.webkit.org/show_bug.cgi?id=65650</id>' +
-    '    <author>' +
-    '      <name>Adam Barth</name>' +
-    '    </author>' +
-    '    <updated>2011-08-03T23:40:34Z</updated> ' +
-    '    <summary type="html">' +
-    '      ' +
-    '      &lt;table&gt;' +
-    '      &lt;tr&gt;' +
-    '        &lt;th&gt;Field&lt;/th&gt;&lt;th&gt;Value&lt;/th&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_product&quot;&gt;' +
-    '        &lt;td&gt;Product&lt;/td&gt;' +
-    '        &lt;td&gt;WebKit&lt;/td&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_component&quot;&gt;' +
-    '        &lt;td&gt;Component&lt;/td&gt;' +
-    '        &lt;td&gt;New Bugs&lt;/td&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_assignee&quot;&gt;' +
-    '        &lt;td&gt;Assignee&lt;/td&gt;' +
-    '        &lt;td&gt;Adam Barth&lt;/td&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_reporter&quot;&gt;' +
-    '        &lt;td&gt;Reporter&lt;/td&gt;' +
-    '        &lt;td&gt;Adam Barth&lt;/td&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_bug_status&quot;&gt;' +
-    '        &lt;td&gt;Status&lt;/td&gt;' +
-    '        &lt;td&gt;NEW&lt;/td&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_resolution&quot;&gt;' +
-    '        &lt;td&gt;Resolution &lt;/td&gt;' +
-    '        &lt;td&gt;&lt;/td&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_priority&quot;&gt;' +
-    '        &lt;td&gt;Priority&lt;/td&gt;' +
-    '        &lt;td&gt;P2&lt;/td&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_severity&quot;&gt;' +
-    '        &lt;td&gt;Severity &lt;/td&gt;' +
-    '        &lt;td&gt;Normal&lt;/td&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_creation_date&quot;&gt;' +
-    '        &lt;td&gt;Opened&lt;/td&gt;' +
-    '        &lt;td&gt;15:35:55&lt;/td&gt;' +
-    '      &lt;/tr&gt;&lt;tr class=&quot;bz_feed_changed_date&quot;&gt;' +
-    '        &lt;td&gt;Changed&lt;/td&gt;' +
-    '        &lt;td&gt;15:40:34&lt;/td&gt;' +
-    '      &lt;/tr&gt;' +
-    '      &lt;/table&gt;' +
-    '    </summary>' +
-    '  </entry>' +
-    '</feed>'
-
-test("quickSearch", 3, function() {
-    var simulator = new NetworkSimulator();
-
-    var requestedURLs = [];
-    simulator.get = function(url, callback)
-    {
-        requestedURLs.push(url);
-        simulator.scheduleCallback(function() {
-            var parser = new DOMParser();
-            var responseDOM = parser.parseFromString(kExampleResponseXML, "application/xml");
-            callback(responseDOM);
-        });
-    };
-
-    simulator.runTest(function() {
-        bugzilla.quickSearch('garden-o-matic', function(bugs) {
-            deepEqual(bugs, [{
-                "title": "[Bug 65654] Add missing license blocks to garden-o-matic",
-                "url": "https://bugs.webkit.org/show_bug.cgi?id=65654",
-                "status": "NEW"
-            }, {
-                "title": "[Bug 65653] garden-o-matic needs a way to mock out the network",
-                "url": "https://bugs.webkit.org/show_bug.cgi?id=65653",
-                "status": "NEW"
-            }, {
-                "title": "[Bug 65650] Use failureInfo more pervasively in garden-o-matic",
-                "url": "https://bugs.webkit.org/show_bug.cgi?id=65650",
-                "status": "NEW"
-            }]);
-        });
-    });
-
-    deepEqual(requestedURLs, [
-        "https://bugs.webkit.org/buglist.cgi?ctype=rss&order=bugs.bug_id+desc&quicksearch=garden-o-matic",
-    ]);
-});
-
-test("isOpenStatus", 6, function() {
-    ok(bugzilla.isOpenStatus('UNCONFIRMED'));
-    ok(bugzilla.isOpenStatus('NEW'));
-    ok(bugzilla.isOpenStatus('ASSIGNED'));
-    ok(bugzilla.isOpenStatus('REOPENED'));
-    ok(!bugzilla.isOpenStatus('FIXED'));
-    ok(!bugzilla.isOpenStatus('VERIFIED'));
-});
-
-})();
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders_unittests.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders_unittests.js
deleted file mode 100644
index 3b13899..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders_unittests.js
+++ /dev/null
@@ -1,1197 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-(function () {
-
-module("builders");
-
-var kExampleBuilderStatusJSON =  {
-    "WebKit Linux": {
-        "basedir": "WebKit_Linux",
-        "cachedBuilds": [11459, 11460, 11461, 11462],
-        "category": "6webkit linux latest",
-        "currentBuilds": [11462],
-        "pendingBuilds": 0,
-        "slaves": ["vm124-m1"],
-        "state": "building"
-    },
-    "WebKit Mac10.6": {
-        "basedir": "WebKit_Linux",
-        "cachedBuilds": [11459, 11460, 11461, 11462],
-        "category": "6webkit linux latest",
-        "currentBuilds": [11461, 11462],
-        "pendingBuilds": 0,
-        "slaves": ["vm124-m1"],
-        "state": "building"
-    },
-    "WebKit ASAN": {
-        "basedir": "WebKit_Linux",
-        "cachedBuilds": [11459, 11460, 11461, 11462],
-        "category": "6webkit linux latest",
-        "currentBuilds": [11461, 11462],
-        "pendingBuilds": 0,
-        "slaves": ["vm124-m1"],
-        "state": "building"
-    },
-};
-
-var kExampleWebKitDotOrgBuilderStatusJSON =  {
-    "Apple Lion Release WK2 (Tests)": {
-        "basedir": "WebKit_Linux",
-        "cachedBuilds": [11459, 11460, 11461, 11462],
-        "category": "6webkit linux latest",
-        "currentBuilds": [11462],
-        "pendingBuilds": 0,
-        "slaves": ["vm124-m1"],
-        "state": "building"
-    },
-    "GTK Linux 64-bit Debug": {
-        "basedir": "WebKit_Linux",
-        "cachedBuilds": [11459, 11460, 11461, 11462],
-        "category": "6webkit linux latest",
-        "currentBuilds": [11461, 11462],
-        "pendingBuilds": 0,
-        "slaves": ["vm124-m1"],
-        "state": "building"
-    },
-    "Qt Linux Release": {
-        "basedir": "WebKit_Linux",
-        "cachedBuilds": [11459, 11460, 11461, 11462],
-        "category": "6webkit linux latest",
-        "currentBuilds": [11461, 11462],
-        "pendingBuilds": 0,
-        "slaves": ["vm124-m1"],
-        "state": "building"
-    },
-};
-
-var kExampleBuildInfoJSON = {
-    "blame": ["abarth@webkit.org"],
-    "builderName": "WebKit Linux",
-    "changes": ["Files:\n Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js\n Tools/ChangeLog\nAt: Thu 04 Aug 2011 00:50:38\nChanged By: abarth@webkit.org\nComments: Fix types.  Sadly, main.js has no test coverage.  (I need to think\nabout how to test this part of the code.)\n\n* BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:Properties: \n\n\n", "Files:\n LayoutTests/ChangeLog\n LayoutTests/platform/chromium-mac/fast/box-shadow/inset-box-shadows-expected.png\n LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.png\n LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.png\n LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png\n LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png\nAt: Thu 04 Aug 2011 00:50:38\nChanged By: abarth@webkit.org\nComments: Update baselines after <http://trac.webkit.org/changeset/92340>.\n\n* platform/chromium-mac/fast/box-shadow/inset-box-shadows-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png:Properties: \n\n\n"],
-    "currentStep": null,
-    "eta": null,
-    "logs": [
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/update_scripts/logs/stdio"],
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/update/logs/stdio"],
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/compile/logs/stdio"],
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/test_shell_tests/logs/stdio"],
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/webkit_unit_tests/logs/stdio"],
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/webkit_tests/logs/stdio"],
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/archive_webkit_tests_results/logs/stdio"],
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/webkit_gpu_tests/logs/stdio"],
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/archive_webkit_tests_gpu_results/logs/stdio"]
-    ],
-    "number": 11461,
-    "properties": [
-        ["blamelist", ["abarth@webkit.org"], "Build"],
-        ["branch", "trunk", "Build"],
-        ["buildername", "WebKit Linux", "Build"],
-        ["buildnumber", 11461, "Build"],
-        ["got_revision", "95395", "Source"],
-        ["got_webkit_revision", "92358", "Source"],
-        ["gtest_filter", null, "Factory"],
-        ["mastername", "chromium.webkit", "master.cfg"],
-        ["revision", "92358", "Build"],
-        ["scheduler", "s6_webkit_rel", "Scheduler"],
-        ["slavename", "vm124-m1", "BuildSlave"]
-    ],
-    "reason": "",
-    "requests": [{
-        "builderName": "WebKit Linux",
-        "builds": [11461],
-        "source": {
-            "branch": "trunk",
-            "changes": [{
-                "branch": "trunk",
-                "category": null,
-                "comments": "Fix types.  Sadly, main.js has no test coverage.  (I need to think\nabout how to test this part of the code.)\n\n* BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:",
-                "files": ["Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js", "Tools/ChangeLog"],
-                "number": 43707,
-                "properties": [],
-                "repository": "",
-                "revision": "92357",
-                "revlink": "http://trac.webkit.org/changeset/92357",
-                "when": 1312444238.855081,
-                "who": "abarth@webkit.org"
-            }, {
-                "branch": "trunk",
-                "category": null,
-                "comments": "Update baselines after <http://trac.webkit.org/changeset/92340>.\n\n* platform/chromium-mac/fast/box-shadow/inset-box-shadows-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png:",
-                "files": ["LayoutTests/ChangeLog", "LayoutTests/platform/chromium-mac/fast/box-shadow/inset-box-shadows-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png"],
-                "number": 43708,
-                "properties": [],
-                "repository": "",
-                "revision": "92358",
-                "revlink": "http://trac.webkit.org/changeset/92358",
-                "when": 1312444238.855538,
-                "who": "abarth@webkit.org"
-            }],
-            "hasPatch": false,
-            "revision": "92358"
-        },
-        "submittedAt": 1312444298.989818
-    }],
-    "results": 2,
-    "slave": "vm124-m1",
-    "sourceStamp": {
-        "branch": "trunk",
-        "changes": [{
-            "branch": "trunk",
-            "category": null,
-            "comments": "Fix types.  Sadly, main.js has no test coverage.  (I need to think\nabout how to test this part of the code.)\n\n* BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:",
-            "files": ["Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js", "Tools/ChangeLog"],
-            "number": 43707,
-            "properties": [],
-            "repository": "",
-            "revision": "92357",
-            "revlink": "http://trac.webkit.org/changeset/92357",
-            "when": 1312444238.855081,
-            "who": "abarth@webkit.org"
-        }, {
-            "branch": "trunk",
-            "category": null,
-            "comments": "Update baselines after <http://trac.webkit.org/changeset/92340>.\n\n* platform/chromium-mac/fast/box-shadow/inset-box-shadows-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png:",
-            "files": ["LayoutTests/ChangeLog", "LayoutTests/platform/chromium-mac/fast/box-shadow/inset-box-shadows-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png"],
-            "number": 43708,
-            "properties": [],
-            "repository": "",
-            "revision": "92358",
-            "revlink": "http://trac.webkit.org/changeset/92358",
-            "when": 1312444238.855538,
-            "who": "abarth@webkit.org"
-        }],
-        "hasPatch": false,
-        "revision": "92358"
-    },
-    "steps": [{
-        "eta": null,
-        "expectations": [
-            ["output", 2297, 2300.6571014083784]
-        ],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [
-            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/update_scripts/logs/stdio"]
-        ],
-        "name": "update_scripts",
-        "results": [0, []],
-        "statistics": {},
-        "step_number": 0,
-        "text": ["update_scripts"],
-        "times": [1312444299.102834, 1312444309.270324],
-        "urls": {}
-    }, {
-        "eta": null,
-        "expectations": [
-            ["output", 20453, 17580.5002389645]
-        ],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [
-            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/update/logs/stdio"] ],
-        "name": "update",
-        "results": [0, []],
-        "statistics": {},
-        "step_number": 1,
-        "text": ["update", "r95395", "webkit r92358"],
-        "times": [1312444309.270763, 1312444398.468139],
-        "urls": {}
-    }, {
-        "eta": null,
-        "expectations": [
-            ["output", 17316, 2652.4850499589456]
-        ],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [
-            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/compile/logs/stdio"]
-        ],
-        "name": "compile",
-        "results": [0, []],
-        "statistics": {},
-        "step_number": 2,
-        "text": ["compile"],
-        "times": [1312444398.46855, 1312444441.68838],
-        "urls": {}
-    }, {
-        "eta": null,
-        "expectations": [
-            ["output", 91980, 92002.12628325251]
-        ],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [
-            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/test_shell_tests/logs/stdio"]
-        ],
-        "name": "test_shell_tests",
-        "results": [0, []],
-        "statistics": {},
-        "step_number": 3,
-        "text": ["test_shell_tests", "1 disabled", "2 flaky"],
-        "times": [1312444441.688756, 1312444451.74908],
-        "urls": {}
-    }, {
-        "eta": null,
-        "expectations": [
-            ["output", 20772, 20772.638503443086]
-        ],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [
-            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/webkit_unit_tests/logs/stdio"]
-        ],
-        "name": "webkit_unit_tests",
-        "results": [0, []],
-        "statistics": {},
-        "step_number": 4,
-        "text": ["webkit_unit_tests", "1 disabled"],
-        "times": [1312444451.749574, 1312444452.306143],
-        "urls": {}
-    }, {
-        "eta": null,
-        "expectations": [
-            ["output", 2477406, 2498915.6146275494]
-        ],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [
-            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/webkit_tests/logs/stdio"]
-        ],
-        "name": "webkit_tests",
-        "results": [2, ["webkit_tests"]],
-        "statistics": {},
-        "step_number": 5,
-        "text": ["webkit_tests", "2014 fixable", "(370 skipped)", "failed 1", "<div class=\"BuildResultInfo\">", "<a href=\"http://test-results.appspot.com/dashboards/flakiness_dashboard.html#master=ChromiumWebkit&tests=fast/box-shadow/box-shadow-clipped-slices.html\">", "<abbr title=\"fast/box-shadow/box-shadow-clipped-slices.html\">box-shadow-clipped-slices.html</abbr>", "</a>", "</div>"],
-        "times": [1312444452.306695, 1312444768.888266],
-        "urls": {}
-    }, {
-        "eta": null,
-        "expectations": [
-            ["output", 2668845, 2672746.372363254]
-        ],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [
-            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/archive_webkit_tests_results/logs/stdio"]
-        ],
-        "name": "archive_webkit_tests_results",
-        "results": [0, []],
-        "statistics": {},
-        "step_number": 6,
-        "text": ["archived webkit_tests results"],
-        "times": [1312444768.888746, 1312444781.444399],
-        "urls": {
-            "layout test results": "http://build.chromium.org/buildbot/layout_test_results/WebKit_Linux\r/95395\rNone"
-        }
-    }, {
-        "eta": null,
-        "expectations": [
-            ["output", 210958, 208138.4965182993]
-        ],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [
-            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/webkit_gpu_tests/logs/stdio"]
-        ],
-        "name": "webkit_gpu_tests",
-        "results": [2, ["webkit_gpu_tests"]],
-        "statistics": {},
-        "step_number": 7,
-        "text": ["webkit_gpu_tests", "148 fixable", "(24 skipped)", "failed 1", "<div class=\"BuildResultInfo\">", "<a href=\"http://test-results.appspot.com/dashboards/flakiness_dashboard.html#master=ChromiumWebkit&tests=compositing/scaling/tiled-layer-recursion.html\">", "<abbr title=\"compositing/scaling/tiled-layer-recursion.html\">tiled-layer-recursion.html</abbr>", "</a>", "</div>"],
-        "times": [1312444781.444903, 1312444966.856074],
-        "urls": {}
-    }, {
-        "eta": null,
-        "expectations": [
-            ["output", 148825, 147822.1074277072]
-        ],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [
-            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/archive_webkit_tests_gpu_results/logs/stdio"]
-        ],
-        "name": "archive_webkit_tests_gpu_results",
-        "results": [0, []],
-        "statistics": {},
-        "step_number": 8,
-        "text": ["archived webkit_tests gpu results"],
-        "times": [1312444966.856575, 1312444970.458655],
-        "urls": {
-            "layout test gpu results": "http://build.chromium.org/buildbot/layout_test_results/WebKit_Linux_-_GPU\r/95395\rNone"
-        }
-    }],
-    "text": ["failed", "webkit_tests", "webkit_gpu_tests"],
-    "times": [1312444299.10216, 1312444970.459138]
-};
-
-var kExampleBuildInfoWithWebKitTestCrashJSON = {
-    "blame": ["asvitkine@chromium.org", "derat@chromium.org", "nirnimesh@chromium.org"],
-    "builderName": "WebKit Win (deps)(dbg)(2)",
-    "currentStep": null,
-    "eta": null,
-    "logs": [
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/svnkill/logs/stdio"],
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/update_scripts/logs/stdio"],
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/taskkill/logs/stdio"],
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/update/logs/stdio"],
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/extract_build/logs/stdio"],
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/webkit_tests/logs/stdio"],
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/archive_webkit_tests_results/logs/stdio"],
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/webkit_gpu_tests/logs/stdio"],
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/archive_webkit_tests_gpu_results/logs/stdio"]
-    ],
-    "number": 7653,
-    "properties": [
-        ["blamelist", ["asvitkine@chromium.org", "derat@chromium.org", "nirnimesh@chromium.org"], "Build"],
-        ["branch", "src", "Build"],
-        ["buildername", "WebKit Win (deps)(dbg)(2)", "Builder"],
-        ["buildnumber", 7653, "Build"],
-        ["got_revision", "104939", "Source"],
-        ["gtest_filter", null, "Factory"],
-        ["mastername", "chromium.webkit", "master.cfg"],
-        ["project", "", "Build"],
-        ["repository", "svn://svn-mirror.golo.chromium.org/chrome/trunk", "Build"],
-        ["revision", "104939", "Build"],
-        ["scheduler", "s1_chromium_dbg_dep", "Scheduler"],
-        ["slavename", "vm114-m1", "BuildSlave"]
-    ],
-    "reason": "downstream",
-    "results": 2,
-    "slave": "vm114-m1",
-    "sourceStamp": {
-        "branch": "src",
-        "changes": [{
-            "at": "Tue 11 Oct 2011 12:18:40",
-            "branch": "src",
-            "category": null,
-            "comments": "Disable prefs.PrefsTest.testGeolocationPref on win\n\nTBR=dennisjeffrey@chromium.org\nBUG=99865\nTEST=\n\nReview URL: http://codereview.chromium.org/8234007",
-            "files": [{
-                "name": "chrome/test/functional/PYAUTO_TESTS",
-                "url": null
-            }],
-            "number": 1397,
-            "project": "",
-            "properties": [],
-            "repository": "svn://svn-mirror.golo.chromium.org/chrome/trunk",
-            "rev": "104936",
-            "revision": "104936",
-            "revlink": "http://src.chromium.org/viewvc/chrome?view=rev&revision=104936",
-            "when": 1318360720,
-            "who": "nirnimesh@chromium.org"
-        }, {
-            "at": "Tue 11 Oct 2011 12:23:11",
-            "branch": "src",
-            "category": null,
-            "comments": "aura: Get rid of some unneeded stubs.\n\nMost of these are for dialogs that already had WebUI\nimplementations.\n\nBUG=99718\nTEST=built with use_aura=1\n\nReview URL: http://codereview.chromium.org/8218027",
-            "files": [{
-                "name": "chrome/browser/ui/login/login_prompt_ui.cc",
-                "url": null
-            }, {
-                "name": "chrome/browser/ui/views/stubs_aura.cc",
-                "url": null
-            }, {
-                "name": "chrome/chrome_browser.gypi",
-                "url": null
-            }, {
-                "name": "chrome/common/url_constants.cc",
-                "url": null
-            }, {
-                "name": "chrome/common/url_constants.h",
-                "url": null
-            }],
-            "number": 1398,
-            "project": "",
-            "properties": [],
-            "repository": "svn://svn-mirror.golo.chromium.org/chrome/trunk",
-            "rev": "104937",
-            "revision": "104937",
-            "revlink": "http://src.chromium.org/viewvc/chrome?view=rev&revision=104937",
-            "when": 1318360991,
-            "who": "derat@chromium.org"
-        }, {
-            "at": "Tue 11 Oct 2011 12:34:10",
-            "branch": "src",
-            "category": null,
-            "comments": "Add Windows manifest for views_examples.\n\nThis allows views_examples to use themed controls and fixes\na problem with combo box drop down menus not being shown.\n\nManifest file copied from chrome/app/chrome.exe.manifest.\n\nBUG=none\nTEST=manual\n\nReview URL: http://codereview.chromium.org/8227017",
-            "files": [{
-                "name": "views/examples/views_examples.exe.manifest",
-                "url": null
-            }, {
-                "name": "views/views.gyp",
-                "url": null
-            }],
-            "number": 1400,
-            "project": "",
-            "properties": [],
-            "repository": "svn://svn-mirror.golo.chromium.org/chrome/trunk",
-            "rev": "104939",
-            "revision": "104939",
-            "revlink": "http://src.chromium.org/viewvc/chrome?view=rev&revision=104939",
-            "when": 1318361650,
-            "who": "asvitkine@chromium.org"
-        }],
-        "hasPatch": false,
-        "project": "",
-        "repository": "svn://svn-mirror.golo.chromium.org/chrome/trunk",
-        "revision": "104939"
-    },
-    "steps": [{
-        "eta": null,
-        "expectations": [
-            ["output", 1444, 1444.0]
-        ],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [
-            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/svnkill/logs/stdio"]
-        ],
-        "name": "svnkill",
-        "results": [0, []],
-        "statistics": {},
-        "step_number": 0,
-        "text": ["svnkill"],
-        "times": [1318364210.0697701, 1318364210.463649],
-        "urls": {}
-    }, {
-        "eta": null,
-        "expectations": [
-            ["output", 2916, 2757.1580967830819]
-        ],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [
-            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/update_scripts/logs/stdio"]
-        ],
-        "name": "update_scripts",
-        "results": [0, []],
-        "statistics": {},
-        "step_number": 1,
-        "text": ["update_scripts"],
-        "times": [1318364210.464299, 1318364234.741575],
-        "urls": {}
-    }, {
-        "eta": null,
-        "expectations": [
-            ["output", 4544, 4543.9687499691299]
-        ],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [
-            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/taskkill/logs/stdio"]
-        ],
-        "name": "taskkill",
-        "results": [0, []],
-        "statistics": {},
-        "step_number": 2,
-        "text": ["taskkill"],
-        "times": [1318364234.742265, 1318364245.842006],
-        "urls": {}
-    }, {
-        "eta": null,
-        "expectations": [
-            ["output", 1019773, 22826.104572568838]
-        ],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [
-            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/update/logs/stdio"]
-        ],
-        "name": "update",
-        "results": [0, []],
-        "statistics": {},
-        "step_number": 3,
-        "text": ["update", "r104939"],
-        "times": [1318364245.843008, 1318366370.946759],
-        "urls": {}
-    }, {
-        "eta": null,
-        "expectations": [
-            ["output", 19829, 19620.437500003842]
-        ],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [
-            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/extract_build/logs/stdio"]
-        ],
-        "name": "extract_build",
-        "results": [1, []],
-        "statistics": {},
-        "step_number": 4,
-        "text": ["extract_build", "warnings"],
-        "times": [1318366370.94771, 1318366404.552783],
-        "urls": {}
-    }, {
-        "eta": null,
-        "expectations": [
-            ["output", 2685, 1320624.4817683753]
-        ],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [
-            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/webkit_tests/logs/stdio"]
-        ],
-        "name": "webkit_tests",
-        "results": [2, ["webkit_tests"]],
-        "statistics": {},
-        "step_number": 5,
-        "text": ["webkit_tests", "?? fixable", "(0 skipped)", "crashed or hung"],
-        "times": [1318366404.5537021, 1318366405.2564809],
-        "urls": {}
-    }, {
-        "eta": null,
-        "expectations": [
-            ["output", 3736, 606747.58321854263]
-        ],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [
-            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/archive_webkit_tests_results/logs/stdio"]
-        ],
-        "name": "archive_webkit_tests_results",
-        "results": [2, ["archive_webkit_tests_results"]],
-        "statistics": {},
-        "step_number": 6,
-        "text": ["archived webkit_tests results", "failed"],
-        "times": [1318366405.2573731, 1318366406.505815],
-        "urls": {
-            "layout test results": "http://build.chromium.org/buildbot/layout_test_results/WebKit_Win__deps__dbg__2_\r/0\rNone"
-        }
-    }, {
-        "eta": null,
-        "expectations": [
-            ["output", 2751, 124434.9266140602]
-        ],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [
-            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/webkit_gpu_tests/logs/stdio"]
-        ],
-        "name": "webkit_gpu_tests",
-        "results": [2, ["webkit_gpu_tests"]],
-        "statistics": {},
-        "step_number": 7,
-        "text": ["webkit_gpu_tests", "?? fixable", "(0 skipped)", "crashed or hung"],
-        "times": [1318366406.506711, 1318366407.179585],
-        "urls": {}
-    }, {
-        "eta": null,
-        "expectations": [
-            ["output", 3760, 35709.407800958375]
-        ],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [
-            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/archive_webkit_tests_gpu_results/logs/stdio"]
-        ],
-        "name": "archive_webkit_tests_gpu_results",
-        "results": [2, ["archive_webkit_tests_gpu_results"]],
-        "statistics": {},
-        "step_number": 8,
-        "text": ["archived webkit_tests gpu results", "failed"],
-        "times": [1318366407.1804891, 1318366408.071501],
-        "urls": {
-            "layout test gpu results": "http://build.chromium.org/buildbot/layout_test_results/WebKit_Win__deps__dbg__2__-_GPU\r/0\rNone"
-        }
-    }],
-    "text": ["failed", "webkit_tests", "archive_webkit_tests_results", "webkit_gpu_tests", "archive_webkit_tests_gpu_results"],
-    "times": [1318364210.066524, 1318366408.0732119]
-};
-
-var kExampleBuildInfoWithTaskKillWarning = {
-    "blame": ["asvitkine@chromium.org", "derat@chromium.org", "nirnimesh@chromium.org"],
-    "builderName": "WebKit Win (deps)(dbg)(2)",
-    "currentStep": null,
-    "eta": null,
-    "logs": [
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/svnkill/logs/stdio"],
-    ],
-    "number": 7653,
-    "properties": [
-        ["blamelist", ["asvitkine@chromium.org", "derat@chromium.org", "nirnimesh@chromium.org"], "Build"],
-        ["branch", "src", "Build"],
-        ["buildername", "WebKit Win (deps)(dbg)(2)", "Builder"],
-        ["buildnumber", 7653, "Build"],
-        ["got_revision", "104939", "Source"],
-        ["gtest_filter", null, "Factory"],
-        ["mastername", "chromium.webkit", "master.cfg"],
-        ["project", "", "Build"],
-        ["repository", "svn://svn-mirror.golo.chromium.org/chrome/trunk", "Build"],
-        ["revision", "104939", "Build"],
-        ["scheduler", "s1_chromium_dbg_dep", "Scheduler"],
-        ["slavename", "vm114-m1", "BuildSlave"]
-    ],
-    "reason": "downstream",
-    "results": 2,
-    "slave": "vm114-m1",
-    "sourceStamp": {
-        "branch": "src",
-        "changes": [{
-            "at": "Tue 11 Oct 2011 12:18:40",
-            "branch": "src",
-            "category": null,
-            "comments": "Disable prefs.PrefsTest.testGeolocationPref on win\n\nTBR=dennisjeffrey@chromium.org\nBUG=99865\nTEST=\n\nReview URL: http://codereview.chromium.org/8234007",
-            "files": [{
-                "name": "chrome/test/functional/PYAUTO_TESTS",
-                "url": null
-            }],
-            "number": 1397,
-            "project": "",
-            "properties": [],
-            "repository": "svn://svn-mirror.golo.chromium.org/chrome/trunk",
-            "rev": "104936",
-            "revision": "104936",
-            "revlink": "http://src.chromium.org/viewvc/chrome?view=rev&revision=104936",
-            "when": 1318360720,
-            "who": "nirnimesh@chromium.org"
-        }],
-        "hasPatch": false,
-        "project": "",
-        "repository": "svn://svn-mirror.golo.chromium.org/chrome/trunk",
-        "revision": "104939"
-    },
-    "steps": [{
-        "eta": null,
-        "expectations": [["output",1776,1534.0625014267862]],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [["stdio","http://build.chromium.org/p/chromium.webkitbuilders/XP%20Perf/builds/10268/steps/taskkill/logs/stdio"]],
-        "name": "taskkill",
-        "results": [1,[]],
-        "statistics": {},
-        "step_number": 2,
-        "text": ["taskkill","warning"],
-        "times": [1339438214.177362,1339438222.555572],
-        "urls": {}
-    }],
-    "text": ["failed", "webkit_tests", "archive_webkit_tests_results", "webkit_gpu_tests", "archive_webkit_tests_gpu_results"],
-    "times": [1318364210.066524, 1318366408.0732119]
-};
-
-
-var kExamplePerfBuilderStatusJSON =  {
-    "WebKit Linux": {
-        "basedir": "WebKit_Linux",
-        "cachedBuilds": [11459, 11460, 11461, 11462],
-        "category": "6webkit linux latest",
-        "currentBuilds": [11462],
-        "pendingBuilds": 0,
-        "slaves": ["vm124-m1"],
-        "state": "building"
-    },
-    "Mac10.6 Perf": {
-        "basedir": "Mac10_6_Perf",
-        "cachedBuilds": [11459, 11460, 11461, 11462],
-        "category": "6webkit linux latest",
-        "currentBuilds": [11461, 11462],
-        "pendingBuilds": 0,
-        "slaves": ["vm124-m1"],
-        "state": "building"
-    },
-};
-
-var kExamplePerfBuildInfoJSON = {
-    "blame": ["abarth@webkit.org"],
-    "builderName": "Mac10.6 Perf",
-    "changes": ["Files:\n Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js\n Tools/ChangeLog\nAt: Thu 04 Aug 2011 00:50:38\nChanged By: abarth@webkit.org\nComments: Fix types.  Sadly, main.js has no test coverage.  (I need to think\nabout how to test this part of the code.)\n\n* BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:Properties: \n\n\n", "Files:\n LayoutTests/ChangeLog\n LayoutTests/platform/chromium-mac/fast/box-shadow/inset-box-shadows-expected.png\n LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.png\n LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.png\n LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png\n LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png\nAt: Thu 04 Aug 2011 00:50:38\nChanged By: abarth@webkit.org\nComments: Update baselines after <http://trac.webkit.org/changeset/92340>.\n\n* platform/chromium-mac/fast/box-shadow/inset-box-shadows-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png:Properties: \n\n\n"],
-    "currentStep": null,
-    "eta": null,
-    "logs": [
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/update_scripts/logs/stdio"],
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/update/logs/stdio"],
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/compile/logs/stdio"],
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/test_shell_tests/logs/stdio"],
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/webkit_unit_tests/logs/stdio"],
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/webkit_tests/logs/stdio"],
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/archive_webkit_tests_results/logs/stdio"],
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/webkit_gpu_tests/logs/stdio"],
-        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/archive_webkit_tests_gpu_results/logs/stdio"]
-    ],
-    "number": 11461,
-    "properties": [
-        ["blamelist", ["abarth@webkit.org"], "Build"],
-        ["branch", "trunk", "Build"],
-        ["buildername", "WebKit Linux", "Build"],
-        ["buildnumber", 11461, "Build"],
-        ["got_revision", "95395", "Source"],
-        ["got_webkit_revision", "92358", "Source"],
-        ["gtest_filter", null, "Factory"],
-        ["mastername", "chromium.webkit", "master.cfg"],
-        ["revision", "92358", "Build"],
-        ["scheduler", "s6_webkit_rel", "Scheduler"],
-        ["slavename", "vm124-m1", "BuildSlave"]
-    ],
-    "reason": "",
-    "requests": [{
-        "builderName": "WebKit Linux",
-        "builds": [11461],
-        "source": {
-            "branch": "trunk",
-            "changes": [{
-                "branch": "trunk",
-                "category": null,
-                "comments": "Fix types.  Sadly, main.js has no test coverage.  (I need to think\nabout how to test this part of the code.)\n\n* BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:",
-                "files": ["Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js", "Tools/ChangeLog"],
-                "number": 43707,
-                "properties": [],
-                "repository": "",
-                "revision": "92357",
-                "revlink": "http://trac.webkit.org/changeset/92357",
-                "when": 1312444238.855081,
-                "who": "abarth@webkit.org"
-            }, {
-                "branch": "trunk",
-                "category": null,
-                "comments": "Update baselines after <http://trac.webkit.org/changeset/92340>.\n\n* platform/chromium-mac/fast/box-shadow/inset-box-shadows-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png:",
-                "files": ["LayoutTests/ChangeLog", "LayoutTests/platform/chromium-mac/fast/box-shadow/inset-box-shadows-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png"],
-                "number": 43708,
-                "properties": [],
-                "repository": "",
-                "revision": "92358",
-                "revlink": "http://trac.webkit.org/changeset/92358",
-                "when": 1312444238.855538,
-                "who": "abarth@webkit.org"
-            }],
-            "hasPatch": false,
-            "revision": "92358"
-        },
-        "submittedAt": 1312444298.989818
-    }],
-    "results": 2,
-    "slave": "vm124-m1",
-    "sourceStamp": {
-        "branch": "trunk",
-        "changes": [{
-            "branch": "trunk",
-            "category": null,
-            "comments": "Fix types.  Sadly, main.js has no test coverage.  (I need to think\nabout how to test this part of the code.)\n\n* BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:",
-            "files": ["Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js", "Tools/ChangeLog"],
-            "number": 43707,
-            "properties": [],
-            "repository": "",
-            "revision": "92357",
-            "revlink": "http://trac.webkit.org/changeset/92357",
-            "when": 1312444238.855081,
-            "who": "abarth@webkit.org"
-        }, {
-            "branch": "trunk",
-            "category": null,
-            "comments": "Update baselines after <http://trac.webkit.org/changeset/92340>.\n\n* platform/chromium-mac/fast/box-shadow/inset-box-shadows-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png:",
-            "files": ["LayoutTests/ChangeLog", "LayoutTests/platform/chromium-mac/fast/box-shadow/inset-box-shadows-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png"],
-            "number": 43708,
-            "properties": [],
-            "repository": "",
-            "revision": "92358",
-            "revlink": "http://trac.webkit.org/changeset/92358",
-            "when": 1312444238.855538,
-            "who": "abarth@webkit.org"
-        }],
-        "hasPatch": false,
-        "revision": "92358"
-    },
-    "steps": [{
-        "eta": null,
-        "expectations": [
-            ["output", 2297, 2300.6571014083784]
-        ],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [
-            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/update_scripts/logs/stdio"]
-        ],
-        "name": "update_scripts",
-        "results": [0, []],
-        "statistics": {},
-        "step_number": 0,
-        "text": ["update_scripts"],
-        "times": [1312444299.102834, 1312444309.270324],
-        "urls": {}
-    }, {
-        "eta": null,
-        "expectations": [
-            ["output", 20453, 17580.5002389645]
-        ],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [
-            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/update/logs/stdio"]
-        ],
-        "name": "update",
-        "results": [0, []],
-        "statistics": {},
-        "step_number": 1,
-        "text": ["update", "r95395", "webkit r92358"],
-        "times": [1312444309.270763, 1312444398.468139],
-        "urls": {}
-    }, {
-        "eta": null,
-        "expectations": [
-            ["output", 17316, 2652.4850499589456]
-        ],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [
-            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/compile/logs/stdio"]
-        ],
-        "name": "compile",
-        "results": [0, []],
-        "statistics": {},
-        "step_number": 2,
-        "text": ["compile"],
-        "times": [1312444398.46855, 1312444441.68838],
-        "urls": {}
-    }, {
-        "eta": null,
-        "expectations": [
-            ["output", 91980, 92002.12628325251]
-        ],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [
-            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/test_shell_tests/logs/stdio"]
-        ],
-        "name": "test_shell_tests",
-        "results": [0, []],
-        "statistics": {},
-        "step_number": 3,
-        "text": ["test_shell_tests", "1 disabled", "2 flaky"],
-        "times": [1312444441.688756, 1312444451.74908],
-        "urls": {}
-    }, {
-        "eta": null,
-        "expectations": [
-            ["output", 20772, 20772.638503443086]
-        ],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [
-            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/webkit_unit_tests/logs/stdio"]
-        ],
-        "name": "webkit_unit_tests",
-        "results": [0, []],
-        "statistics": {},
-        "step_number": 4,
-        "text": ["webkit_unit_tests", "1 disabled"],
-        "times": [1312444451.749574, 1312444452.306143],
-        "urls": {}
-    }, {
-        "eta": null,
-        "expectations": [
-            ["output", 2477406, 2498915.6146275494]
-        ],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [
-            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/webkit_tests/logs/stdio"]
-        ],
-        "name": "webkit_tests",
-        "results": [2, ["webkit_tests"]],
-        "statistics": {},
-        "step_number": 5,
-        "text": ["webkit_tests", "2014 fixable", "(370 skipped)", "failed 1", "<div class=\"BuildResultInfo\">", "<a href=\"http://test-results.appspot.com/dashboards/flakiness_dashboard.html#master=ChromiumWebkit&tests=fast/box-shadow/box-shadow-clipped-slices.html\">", "<abbr title=\"fast/box-shadow/box-shadow-clipped-slices.html\">box-shadow-clipped-slices.html</abbr>", "</a>", "</div>"],
-        "times": [1312444452.306695, 1312444768.888266],
-        "urls": {}
-    }, {
-        "eta": null,
-        "expectations": [
-            ["output", 2668845, 2672746.372363254]
-        ],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [
-            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/archive_webkit_tests_results/logs/stdio"]
-        ],
-        "name": "dummy_perf_test_1",
-        "results": [0, []],
-        "statistics": {},
-        "step_number": 6,
-        "text": ["archived webkit_tests results"],
-        "times": [1312444768.888746, 1312444781.444399],
-        "urls": {
-            "results": "http://dummyurl1"
-        }
-    }, {
-        "eta": null,
-        "expectations": [
-            ["output", 210958, 208138.4965182993]
-        ],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [
-            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/webkit_gpu_tests/logs/stdio"]
-        ],
-        "name": "webkit_gpu_tests",
-        "results": [2, ["webkit_gpu_tests"]],
-        "statistics": {},
-        "step_number": 7,
-        "text": ["webkit_gpu_tests", "148 fixable", "(24 skipped)", "failed 1", "<div class=\"BuildResultInfo\">", "<a href=\"http://test-results.appspot.com/dashboards/flakiness_dashboard.html#master=ChromiumWebkit&tests=compositing/scaling/tiled-layer-recursion.html\">", "<abbr title=\"compositing/scaling/tiled-layer-recursion.html\">tiled-layer-recursion.html</abbr>", "</a>", "</div>"],
-        "times": [1312444781.444903, 1312444966.856074],
-        "urls": {}
-    }, {
-        "eta": null,
-        "expectations": [
-            ["output", 148825, 147822.1074277072]
-        ],
-        "isFinished": true,
-        "isStarted": true,
-        "logs": [
-            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/archive_webkit_tests_gpu_results/logs/stdio"]
-        ],
-        "name": "dummy_perf_test_2",
-        "results": [0, []],
-        "statistics": {},
-        "step_number": 8,
-        "text": ["archived webkit_tests gpu results"],
-        "times": [1312444966.856575, 1312444970.458655],
-        "urls": {
-            "results": "http://dummyurl2"
-        }
-    }],
-    "text": ["failed", "webkit_tests", "webkit_gpu_tests"],
-    "times": [1312444299.10216, 1312444970.459138]
-};
-
-test("buildersFailing", 3, function() {
-    var simulator = new NetworkSimulator();
-    builders.clearBuildInfoCache();
-
-    var failingBuildInfoJSON = JSON.parse(JSON.stringify(kExampleBuildInfoJSON));
-    failingBuildInfoJSON.number = 11460;
-    failingBuildInfoJSON.steps[2].results[0] = 1;
-
-    var requestedURLs = [];
-    simulator.get = function(url, callback)
-    {
-        requestedURLs.push(url);
-        simulator.scheduleCallback(function() {
-            if (/\/json\/builders$/.exec(url))
-                callback(kExampleBuilderStatusJSON);
-            else if (/WebKit%20Linux/.exec(url))
-                callback(kExampleBuildInfoJSON);
-            else if (/WebKit%20Mac10\.6/.exec(url))
-                callback(failingBuildInfoJSON);
-            else if (/WebKit%20ASAN/.exec(url))
-                callback(failingBuildInfoJSON);
-            else {
-                ok(false, "Unexpected URL: " + url);
-                callback();
-            }
-        });
-    };
-
-    simulator.runTest(function() {
-        builders.buildersFailingNonLayoutTests(function(builderNameList) {
-            deepEqual(builderNameList, {
-                "WebKit Linux": [
-                    "webkit_gpu_tests"
-                ],
-                "WebKit Mac10.6": [
-                    "webkit_gpu_tests"
-                ]
-            });
-        });
-    });
-
-    deepEqual(requestedURLs, [
-      "http://build.chromium.org/p/chromium.webkit/json/builders",
-      "http://build.chromium.org/p/chromium.webkit/json/builders/WebKit%20Linux/builds/11461",
-      "http://build.chromium.org/p/chromium.webkit/json/builders/WebKit%20Mac10.6/builds/11460",
-    ]);
-});
-
-test("buildersFailing (Apple)", 3, function() {
-    var simulator = new NetworkSimulator();
-    builders.clearBuildInfoCache();
-
-    config.currentPlatform = 'apple';
-
-    var failingBuildInfoJSON = JSON.parse(JSON.stringify(kExampleBuildInfoJSON));
-    failingBuildInfoJSON.number = 11460;
-    failingBuildInfoJSON.steps[2].results[0] = 1;
-
-    var requestedURLs = [];
-    simulator.get = function(url, callback)
-    {
-        requestedURLs.push(url);
-        simulator.scheduleCallback(function() {
-            if (/\/json\/builders$/.exec(url))
-                callback(kExampleWebKitDotOrgBuilderStatusJSON);
-            else if (/Apple%20Lion%20Release%20WK2%20\(Tests\)/.exec(url))
-                callback(kExampleBuildInfoJSON);
-            else {
-                ok(false, "Unexpected URL: " + url);
-                callback();
-            }
-        });
-    };
-
-    simulator.runTest(function() {
-        builders.buildersFailingNonLayoutTests(function(builderNameList) {
-            deepEqual(builderNameList, {
-                "Apple Lion Release WK2 (Tests)": [
-                    "webkit_gpu_tests"
-                ]
-            });
-        });
-    });
-
-    deepEqual(requestedURLs, [
-        "http://build.webkit.org/json/builders",
-        "http://build.webkit.org/json/builders/Apple%20Lion%20Release%20WK2%20(Tests)/builds/11461"
-    ]);
-
-    config.currentPlatform = 'chromium';
-});
-
-
-test("buildersFailing (run-webkit-tests crash)", 3, function() {
-    var simulator = new NetworkSimulator();
-    builders.clearBuildInfoCache();
-
-    var builderStatusJSON = JSON.parse(JSON.stringify(kExampleBuilderStatusJSON));
-    delete builderStatusJSON['WebKit Mac10.6'];
-    builderStatusJSON['WebKit Linux'].cachedBuilds = [21460];
-    builderStatusJSON['WebKit Linux'].currentBuilds = [];
-
-    var failingBuildInfoJSON = JSON.parse(JSON.stringify(kExampleBuildInfoWithWebKitTestCrashJSON));
-    failingBuildInfoJSON.number = 21460;
-
-    var requestedURLs = [];
-    simulator.get = function(url, callback)
-    {
-        requestedURLs.push(url);
-        simulator.scheduleCallback(function() {
-            if (/\/json\/builders$/.exec(url))
-                callback(builderStatusJSON);
-            else if (/WebKit%20Linux/.exec(url))
-                callback(failingBuildInfoJSON);
-            else {
-                ok(false, "Unexpected URL: " + url);
-                callback();
-            }
-        });
-    };
-
-    simulator.runTest(function() {
-        builders.buildersFailingNonLayoutTests(function(builderNameList) {
-            deepEqual(builderNameList, {
-                "WebKit Linux": [
-                    "webkit_tests",
-                    "archive_webkit_tests_results",
-                    "webkit_gpu_tests",
-                    "archive_webkit_tests_gpu_results"
-                ]
-            });
-        });
-    });
-
-    deepEqual(requestedURLs, [
-      "http://build.chromium.org/p/chromium.webkit/json/builders",
-      "http://build.chromium.org/p/chromium.webkit/json/builders/WebKit%20Linux/builds/21460",
-    ]);
-});
-
-test("buildersFailing (taskkill warning)", 3, function() {
-    var simulator = new NetworkSimulator();
-    builders.clearBuildInfoCache();
-
-    var builderStatusJSON = JSON.parse(JSON.stringify(kExampleBuilderStatusJSON));
-    delete builderStatusJSON['WebKit Mac10.6'];
-    builderStatusJSON['WebKit Linux'].cachedBuilds = [21460];
-    builderStatusJSON['WebKit Linux'].currentBuilds = [];
-
-    var failingBuildInfoJSON = JSON.parse(JSON.stringify(kExampleBuildInfoWithTaskKillWarning));
-    failingBuildInfoJSON.number = 21460;
-
-    var requestedURLs = [];
-    simulator.get = function(url, callback)
-    {
-        requestedURLs.push(url);
-        simulator.scheduleCallback(function() {
-            if (/\/json\/builders$/.exec(url))
-                callback(builderStatusJSON);
-            else if (/WebKit%20Linux/.exec(url))
-                callback(failingBuildInfoJSON);
-            else {
-                ok(false, "Unexpected URL: " + url);
-                callback();
-            }
-        });
-    };
-
-    simulator.runTest(function() {
-        builders.buildersFailingNonLayoutTests(function(builderNameList) {
-            deepEqual(builderNameList, {});
-        });
-    });
-
-    deepEqual(requestedURLs, [
-      "http://build.chromium.org/p/chromium.webkit/json/builders",
-      "http://build.chromium.org/p/chromium.webkit/json/builders/WebKit%20Linux/builds/21460",
-    ]);
-});
-
-test("builders.perfBuilders", 2, function() {
-    var simulator = new NetworkSimulator();
-    builders.clearBuildInfoCache();
-
-    var builderStatusJSON = JSON.parse(JSON.stringify(kExamplePerfBuilderStatusJSON));
-    var failingBuildInfoJSON = JSON.parse(JSON.stringify(kExamplePerfBuildInfoJSON));
-
-    var requestedURLs = [];
-    simulator.get = function(url, callback)
-    {
-        requestedURLs.push(url);
-        simulator.scheduleCallback(function() {
-            if (/\/json\/builders$/.exec(url))
-                callback(builderStatusJSON);
-            else if (/Mac10.6%20Perf/.exec(url))
-                callback(failingBuildInfoJSON);
-            else
-                callback();
-        });
-    };
-
-    simulator.runTest(function() {
-        builders.perfBuilders(function(builderNameList) {
-            deepEqual(builderNameList, {
-                "dummy_perf_test_1": [
-                    {
-                        "builder": "Mac10.6 Perf",
-                        "url": "http://dummyurl1"
-                    }
-                ],
-                "dummy_perf_test_2": [
-                    {
-                        "builder": "Mac10.6 Perf",
-                        "url": "http://dummyurl2"
-                    }
-                ]
-            });
-        });
-    });
-});
-
-})();
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout.js
deleted file mode 100644
index 10ea1ec..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout.js
+++ /dev/null
@@ -1,95 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-var checkout = checkout || {};
-
-(function() {
-
-var kWebKitTrunk = 'http://svn.webkit.org/repository/webkit/trunk/';
-
-var g_haveSeenCheckoutAvailable = false;
-
-function callIfCheckoutAvailable(callback, checkoutUnavailable)
-{
-    if (g_haveSeenCheckoutAvailable) {
-        callback();
-        return;
-    }
-    checkout.isAvailable(function(isAvailable) {
-        if (isAvailable) {
-            g_haveSeenCheckoutAvailable = true;
-            callback();
-            return;
-        }
-        if (checkoutUnavailable)
-            checkoutUnavailable();
-    });
-}
-
-checkout.subversionURLForTest = function(testName)
-{
-    return kWebKitTrunk + 'LayoutTests/' + testName;
-};
-
-checkout.isAvailable = function(callback)
-{
-    net.ajax({
-        url: '/ping',
-        success: function() {
-            callback(true);
-        },
-        error: function() {
-            callback(false);
-        },
-    });
-};
-
-checkout.rollout = function(revision, reason, callback, checkoutUnavailable)
-{
-    callIfCheckoutAvailable(function() {
-        net.post('/rollout?' + $.param({
-            'revision': revision,
-            'reason': reason
-        }), function() {
-            callback();
-        });
-    }, checkoutUnavailable);
-};
-
-checkout.rebaseline = function(failureInfoList, callback, progressCallback, checkoutUnavailable)
-{
-    callIfCheckoutAvailable(function() {
-        var tests = {};
-        for (var i = 0; i < failureInfoList.length; i++) {
-            var failureInfo = failureInfoList[i];
-            tests[failureInfo.testName] = tests[failureInfo.testName] || {};
-            tests[failureInfo.testName][failureInfo.builderName] = 
-                base.uniquifyArray(base.flattenArray(failureInfo.failureTypeList.map(results.failureTypeToExtensionList)));
-        }
-        net.post('/rebaselineall', JSON.stringify(tests), function() { callback() });
-    }, checkoutUnavailable);
-};
-
-})();
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout_unittests.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout_unittests.js
deleted file mode 100644
index 6d65ba2..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout_unittests.js
+++ /dev/null
@@ -1,90 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-(function () {
-
-module("checkout");
-
-test("subversionURLForTest", 1, function() {
-    equals(checkout.subversionURLForTest("path/to/test.html"), "http://svn.webkit.org/repository/webkit/trunk/LayoutTests/path/to/test.html");
-});
-
-test("rebaseline", 3, function() {
-    var simulator = new NetworkSimulator();
-
-    var requests = [];
-    simulator.post = function(url, body, callback)
-    {
-        requests.push([url, body]);
-        simulator.scheduleCallback(callback);
-    };
-    simulator.ajax = function(options)
-    {
-        if (options.url.indexOf('/ping') == -1)
-            ok(false, 'Received non-ping ajax request: ' + options.url);
-        simulator.scheduleCallback(options.success);
-    };
-
-    var kExpectedTestNameProgressStack = [
-        'fast/test.html',
-        'another/test.svg',
-        'another/test.svg', // This is the first one.
-    ];
-
-    simulator.runTest(function() {
-        checkout.rebaseline([{
-            'builderName': 'WebKit Linux',
-            'testName': 'another/test.svg',
-            'failureTypeList': ['IMAGE'],
-        }, {
-            'builderName': 'WebKit Mac10.6',
-            'testName': 'another/test.svg',
-            'failureTypeList': ['IMAGE', 'TEXT', 'IMAGE+TEXT'],
-        }, {
-            'builderName': 'Webkit Win7',
-            'testName': 'fast/test.html',
-            'failureTypeList': ['IMAGE+TEXT'],
-        }], function() {
-            ok(true);
-        }, function(failureInfo) {
-            equals(failureInfo.testName, kExpectedTestNameProgressStack.pop());
-        }, function() {
-            ok(false, 'Checkout should be available.');
-        });
-    });
-
-    deepEqual(requests, [
-        ["/rebaselineall",
-         JSON.stringify({
-             "another/test.svg": {
-                 "WebKit Linux": ["png"], 
-                 "WebKit Mac10.6": ["png","txt"]},
-             "fast/test.html": {
-                 "Webkit Win7": ["txt","png"]
-             }})]
-    ]);
-});
-
-})();
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js
deleted file mode 100644
index 8087056..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js
+++ /dev/null
@@ -1,222 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-var config = config || {};
-
-(function() {
-
-config.kBuildNumberLimit = 20;
-
-config.kPlatforms = {
-    'apple' : {
-        label : 'Apple',
-        buildConsoleURL: 'http://build.webkit.org',
-        layoutTestResultsURL: 'http://build.webkit.org/results',
-        waterfallURL: 'http://build.webkit.org/waterfall',
-        builders: {
-            'Apple Lion Release WK1 (Tests)' : {version: 'lion' },
-            'Apple Lion Debug WK1 (Tests)' : {version: 'lion', debug: true},
-            'Apple Lion Release WK2 (Tests)' : {version: 'lion' },
-            'Apple Lion Debug WK2 (Tests)' : {version: 'lion', debug: true},
-            'Apple MountainLion Release WK1 (Tests)' : {version: 'mountainlion' },
-            'Apple MountainLion Debug WK1 (Tests)' : {version: 'mountainlion', debug: true},
-            'Apple MountainLion Release WK2 (Tests)' : {version: 'mountainlion' },
-            'Apple MountainLion Debug WK2 (Tests)' : {version: 'mountainlion', debug: true},
-            // 'Apple Win XP Debug (Tests)' : {version: 'xp',debug: true},
-            // 'Apple Win 7 Release (Tests)' : {version: 'win7'},
-        },
-        haveBuilderAccumulatedResults : false,
-        useDirectoryListingForOldBuilds: false,
-        useFlakinessDashboard: false,
-        resultsDirectoryNameFromBuilderName: function(builderName) {
-            return encodeURIComponent(builderName);
-        },
-        resultsDirectoryForBuildNumber: function(buildNumber, revision) {
-            return encodeURIComponent('r' + revision + ' (' + buildNumber + ')');
-        },
-        _builderApplies: function(builderName) {
-            return builderName.indexOf('Apple') != -1;
-        },
-    },
-    'chromium' : {
-        label : 'Chromium',
-        buildConsoleURL: 'http://build.chromium.org/p/chromium.webkit',
-        layoutTestResultsURL: 'http://build.chromium.org/f/chromium/layout_test_results',
-        waterfallURL: 'http://build.chromium.org/p/chromium.webkit/waterfall',
-        builders: {
-            'WebKit XP': {version: 'xp'},
-            'WebKit Win7': {version: 'win7'},
-            'WebKit Win7 (dbg)(1)': {version: 'win7', debug: true},
-            'WebKit Win7 (dbg)(2)': {version: 'win7', debug: true},
-            'WebKit Linux': {version: 'lucid', is64bit: true},
-            'WebKit Linux 32': {version: 'lucid'},
-            'WebKit Linux (dbg)': {version: 'lucid', is64bit: true, debug: true},
-            'WebKit Mac10.6': {version: 'snowleopard'},
-            'WebKit Mac10.6 (dbg)': {version: 'snowleopard', debug: true},
-            'WebKit Mac10.7': {version: 'lion'},
-            'WebKit Mac10.7 (dbg)': {version: 'lion', debug: true},
-            'WebKit Mac10.8': {version: 'mountainlion'},
-        },
-        haveBuilderAccumulatedResults : true,
-        useDirectoryListingForOldBuilds: true,
-        useFlakinessDashboard: true,
-        resultsDirectoryNameFromBuilderName: function(builderName) {
-            return base.underscoredBuilderName(builderName);
-        },
-        resultsDirectoryForBuildNumber: function(buildNumber, revision) {
-            return buildNumber;
-        },
-        _builderApplies: function(builderName) {
-            // FIXME: Should garden-o-matic show these? I can imagine showing the deps bots being useful at least so
-            // that the gardener only need to look at garden-o-matic and never at the waterfall. Not really sure who
-            // watches the GPU bots.
-            // The 10.8 Tests bot is really an FYI bot at this point
-            // WebKit Android doesn't upload its results yet.
-            return builderName.indexOf('GPU') == -1 &&
-                   builderName.indexOf('deps') == -1 &&
-                   builderName.indexOf('ASAN') == -1 &&
-                   builderName.indexOf('WebKit (Content Shell) Android') == -1 &&
-                   builderName.indexOf('Mac10.8 Tests') == -1 &&
-                   builderName.indexOf('WebKit Android') == -1;
-        },
-    },
-    'gtk' : {
-        label : 'GTK',
-        buildConsoleURL: 'http://build.webkit.org',
-        layoutTestResultsURL: 'http://build.webkit.org/results',
-        waterfallURL: 'http://build.webkit.org/waterfall',
-        builders: {
-            'GTK Linux 32-bit Release' : {version: '32-bit release'},
-            'GTK Linux 64-bit Release' : {version: '64-bit release'},
-            'GTK Linux 64-bit Debug' : {version: '64-bit debug', debug: true},
-        },
-        haveBuilderAccumulatedResults : false,
-        useDirectoryListingForOldBuilds: false,
-        useFlakinessDashboard: false,
-        resultsDirectoryNameFromBuilderName: function(builderName) {
-            return encodeURIComponent(builderName);
-        },
-        resultsDirectoryForBuildNumber: function(buildNumber, revision) {
-            return encodeURIComponent('r' + revision + ' (' + buildNumber + ')');
-        },
-        _builderApplies: function(builderName) {
-            return builderName.indexOf('GTK') != -1;
-        },
-    },
-    'qt' : {
-        label : 'Qt',
-        buildConsoleURL: 'http://build.webkit.org',
-        layoutTestResultsURL: 'http://build.webkit.org/results',
-        waterfallURL: 'http://build.webkit.org/waterfall',
-        builders: {
-            'Qt Linux Release' : {version : '32-bit release'},
-        },
-        haveBuilderAccumulatedResults : false,
-        useDirectoryListingForOldBuilds: false,
-        useFlakinessDashboard: false,
-        resultsDirectoryNameFromBuilderName: function(builderName) {
-            return encodeURIComponent(builderName);
-        },
-        resultsDirectoryForBuildNumber: function(buildNumber, revision) {
-            return encodeURIComponent('r' + revision + ' (' + buildNumber + ')');
-        },
-        _builderApplies: function(builderName) {
-            return builderName.indexOf('Qt') != -1;
-        },
-    },
-    'efl' : {
-        label : 'EFL',
-        buildConsoleURL: 'http://build.webkit.org',
-        layoutTestResultsURL: 'http://build.webkit.org/results',
-        waterfallURL: 'http://build.webkit.org/waterfall',
-        builders: {
-            'EFL Linux 64-bit Debug WK2' : {version : '64-bit WK2', debug: true},
-            'EFL Linux 64-bit Release WK2' : {version: '64-bit WK2'},
-            'EFL Linux 64-bit Release' : {version: '64-bit'},
-        },
-        haveBuilderAccumulatedResults : false,
-        useDirectoryListingForOldBuilds: false,
-        useFlakinessDashboard: false,
-        resultsDirectoryNameFromBuilderName: function(builderName) {
-            return encodeURIComponent(builderName);
-        },
-        resultsDirectoryForBuildNumber: function(buildNumber, revision) {
-            return encodeURIComponent('r' + revision + ' (' + buildNumber + ')');
-        },
-        _builderApplies: function(builderName) {
-            return builderName.indexOf('EFL') != -1;
-        },
-    },
-};
-
-config.kTracURL = 'http://trac.webkit.org';
-config.kBugzillaURL = 'https://bugs.webkit.org';
-
-config.kRevisionAttr = 'data-revision';
-config.kTestNameAttr = 'data-test-name';
-config.kBuilderNameAttr = 'data-builder-name';
-config.kFailureCountAttr = 'data-failure-count';
-config.kFailureTypesAttr = 'data-failure-types';
-config.kInfobarTypeAttr = 'data-infobar-type';
-
-var kTenMinutesInMilliseconds = 10 * 60 * 1000;
-config.kUpdateFrequency = kTenMinutesInMilliseconds;
-config.kRelativeTimeUpdateFrequency = 1000 * 60;
-
-config.kExperimentalFeatures = window.location.search.search('enableExperiments=1') != -1;
-
-config.currentPlatform = base.getURLParameter('platform') || 'chromium';
-
-// FIXME: We should add a way to restrict the results to a subset of the builders
-// (or maybe just a single builder) in the UI as well as via an URL parameter.
-config.currentBuilder = base.getURLParameter('builder');
-
-config.currentBuilders = function() {
-    var current_builders = {};
-    if (config.currentBuilder) {
-        current_builders[config.currentBuilder] = config.kPlatforms[config.currentPlatform].builders[config.currentBuilder];
-        return current_builders;
-    } else {
-        return config.kPlatforms[config.currentPlatform].builders;
-    }
-};
-
-config.builderApplies = function(builderName) {
-    if (config.currentBuilder)
-        return builderName == config.currentBuilder;
-    return config.kPlatforms[config.currentPlatform]._builderApplies(builderName);
-};
-
-config.setPlatform = function(platform) {
-    if (!this.kPlatforms[platform]) {
-        window.console.log(platform + ' is not a recognized platform');
-        return;
-    }
-    config.currentPlatform = platform;
-};
-
-config.useLocalResults = Boolean(base.getURLParameter('useLocalResults')) || false;
-
-})();
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/garden-o-matic.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/garden-o-matic.js
deleted file mode 100644
index ebd4d5d..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/garden-o-matic.js
+++ /dev/null
@@ -1,153 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-(function() {
-
-var g_info = null;
-var g_revisionHint = null;
-
-var g_updateTimerId = 0;
-var g_buildersFailing = null;
-
-var g_unexpectedFailuresController = null;
-var g_failuresController = null;
-
-var g_nonLayoutTestFailureBuilders = null;
-
-function updatePartyTime()
-{
-    if (!g_unexpectedFailuresController.length() && !g_nonLayoutTestFailureBuilders.hasFailures())
-        $('#onebar').addClass('partytime');
-    else
-        $('#onebar').removeClass('partytime');
-}
-
-function update()
-{
-    if (g_revisionHint)
-        g_revisionHint.dismiss();
-
-    var gtestIframe = document.querySelector('#chromium-gtests iframe');
-    if (gtestIframe)
-        gtestIframe.src = gtestIframe.src;
-
-    // FIXME: This should be a button with a progress element.
-    var numberOfTestsAnalyzed = 0;
-    var updating = new ui.notifications.Info('Loading commit data ...');
-
-    g_info.add(updating);
-
-    builders.buildersFailingNonLayoutTests(function(failuresList) {
-        g_nonLayoutTestFailureBuilders.update(failuresList);
-        updatePartyTime();
-    });
-
-    base.callInParallel([model.updateRecentCommits, model.updateResultsByBuilder], function() {
-        if (g_failuresController)
-            g_failuresController.update();
-
-        updating.update('Analyzing test failures ...');
-
-        model.analyzeUnexpectedFailures(function(failureAnalysis) {
-            updating.update('Analyzing test failures ... ' + ++numberOfTestsAnalyzed + ' tests analyzed.');
-            g_unexpectedFailuresController.update(failureAnalysis);
-        }, function() {
-            updatePartyTime();
-            g_unexpectedFailuresController.purge();
-
-            Object.keys(config.currentBuilders()).forEach(function(builderName) {
-                if (!model.state.resultsByBuilder[builderName])
-                    g_info.add(new ui.notifications.Info('Could not find test results for ' + builderName + ' in the last ' + config.kBuildNumberLimit + ' runs.'));            
-            });
-
-            updating.dismiss();
-
-            g_revisionHint = new ui.notifications.Info('');
-            
-            var latestRevisionSpan = document.createElement('span');
-            latestRevisionSpan.appendChild(document.createTextNode('Latest revision processed by every bot: '));
-            
-            var latestRevision = model.latestRevisionWithNoBuildersInFlight();
-            latestRevisionSpan.appendChild(base.createLinkNode(trac.changesetURL(latestRevision), latestRevision));
-            
-            var totRevision = model.latestRevision();
-            latestRevisionSpan.appendChild(document.createTextNode(' (trunk is at '));
-            latestRevisionSpan.appendChild(base.createLinkNode(trac.changesetURL(totRevision), totRevision));
-            latestRevisionSpan.appendChild(document.createTextNode(')'));
-            
-            g_revisionHint.updateWithNode(latestRevisionSpan);
-            
-            g_info.add(g_revisionHint);
-        });
-    });
-}
-
-$(document).ready(function() {
-    g_updateTimerId = window.setInterval(update, config.kUpdateFrequency);
-
-    pixelzoomer.installEventListeners();
-
-    onebar = new ui.onebar();
-    onebar.attach();
-
-    // FIXME: This doesn't belong here.
-    var onebarController = {
-        showResults: function(resultsView)
-        {
-            var resultsContainer = onebar.results();
-            $(resultsContainer).empty().append(resultsView);
-            onebar.select('results');
-        }
-    };
-
-    var unexpectedFailuresView = new ui.notifications.Stream();
-    g_unexpectedFailuresController = new controllers.UnexpectedFailures(model.state, unexpectedFailuresView, onebarController);
-
-    g_info = new ui.notifications.Stream();
-    g_nonLayoutTestFailureBuilders = new controllers.FailingBuilders(g_info, 'Non-layout test failures');
-
-    // FIXME: This should be an Action object.
-    var updateButton = document.body.insertBefore(document.createElement('button'), document.body.firstChild);
-    updateButton.addEventListener("click", update);
-    updateButton.textContent = 'update';
-
-    var unexpected = onebar.unexpected();
-    unexpected.appendChild(updateButton);
-    unexpected.appendChild(g_info);
-    unexpected.appendChild(unexpectedFailuresView);
-
-    var expected = onebar.expected();
-    if (expected) {
-        var failuresView = new ui.failures.List();
-        g_failuresController = new controllers.ExpectedFailures(model.state, failuresView, onebarController);
-        expected.appendChild(failuresView);
-    }
-
-    onebar.perf().appendChild(new ui.perf.View());
-
-    update();
-});
-
-})();
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/trac_unittests.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/trac_unittests.js
deleted file mode 100644
index 89a2025..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/trac_unittests.js
+++ /dev/null
@@ -1,345 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-(function () {
-
-module("trac");
-
-var kExampleCommitDataXML = 
-    '<?xml version="1.0"?>\n\n' +
-    '<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">\n\n' +
-    '  \n\n' +
-    '\n\n' +
-    '  <channel>\n\n' +
-    '    <title>Revisions of /trunk</title>\n\n' +
-    '    <link>http://trac.webkit.org/log/trunk?rev=92362</link>\n\n' +
-    '    <description>Trac Log - Revisions of /trunk</description>\n\n' +
-    '    <language>en-US</language>\n\n' +
-    '    <generator>Trac 0.11.7</generator>\n\n' +
-    '    <image>\n\n' +
-    '      <title>WebKit</title>\n\n' +
-    '      <url>http://trac.webkit.org/chrome/site/icon.png</url>\n\n' +
-    '      <link>http://trac.webkit.org/log/trunk?rev=92362</link>\n\n' +
-    '    </image>\n\n' +
-    '    <item>\n\n' +
-    '          <author>macpherson@chromium.org</author>\n\n' +
-    '      <pubDate>Thu, 04 Aug 2011 02:09:19 GMT</pubDate>\n\n' +
-    '      <title>Revision 92342: Support cast between CSSPrimitiveValue and EBoxSizing, use in ...</title>\n\n' +
-    '      <link>http://trac.webkit.org/changeset/92342/trunk</link>\n\n' +
-    '      <guid isPermaLink="false">http://trac.webkit.org/changeset/92342/trunk</guid>\n\n' +
-    '      <description>&lt;p&gt;\n\n' +
-    'Support cast between CSSPrimitiveValue and EBoxSizing, use in CSSStyleSelector.\n\n' +
-    '&lt;a class="ext-link" href="https://bugs.webkit.org/show_bug.cgi?id=65657"&gt;&lt;span class="icon"&gt; &lt;/span&gt;https://bugs.webkit.org/show_bug.cgi?id=65657&lt;/a&gt;\n\n' +
-    '&lt;/p&gt;\n\n' +
-    '&lt;p&gt;\n\n' +
-    'Reviewed by Simon Fraser.\n\n' +
-    '&lt;/p&gt;\n\n' +
-    '&lt;p&gt;\n\n' +
-    'No new tests / refactoring only.\n\n' +
-    '&lt;/p&gt;\n\n' +
-    '&lt;p&gt;\n\n' +
-    '* css/CSSPrimitiveValueMappings.h:\n\n' +
-    '(WebCore::CSSPrimitiveValue::CSSPrimitiveValue):\n\n' +
-    'Implement cast from EBoxSizing.\n' +
-    '(WebCore::CSSPrimitiveValue::operator EBoxSizing):\n' +
-    'Implement cast to EBoxSizing.\n' +
-    '* css/CSSStyleSelector.cpp:\n' +
-    '(WebCore::CSSStyleSelector::applyProperty):\n' +
-    'Use appropriate macro to simplify code using cast.\n' +
-    '&lt;/p&gt;\n' +
-    '</description>\n' +
-    '      <category>Log</category>\n' +
-    '    </item><item>\n' +
-    '          <author>commit-queue@webkit.org</author>\n' +
-    '      <pubDate>Thu, 04 Aug 2011 02:01:31 GMT</pubDate>\n' +
-    '      <title>Revision 92341: Implement EventSender.scalePageBy() ...</title>\n' +
-    '      <link>http://trac.webkit.org/changeset/92341/trunk</link>\n' +
-    '      <guid isPermaLink="false">http://trac.webkit.org/changeset/92341/trunk</guid>\n' +
-    '      <description>&lt;p&gt;\n' +
-    'Implement EventSender.scalePageBy()\n' +
-    '&lt;a class="ext-link" href="https://bugs.webkit.org/show_bug.cgi?id=58013"&gt;&lt;span class="icon"&gt; &lt;/span&gt;https://bugs.webkit.org/show_bug.cgi?id=58013&lt;/a&gt;\n' +
-    '&lt;/p&gt;\n' +
-    '&lt;p&gt;\n' +
-    'Patch by Kentaro Hara &amp;lt;&lt;a class="mail-link" href="mailto:haraken@google.com"&gt;&lt;span class="icon"&gt; &lt;/span&gt;haraken@google.com&lt;/a&gt;&amp;gt; on 2011-08-03\n' +
-    'Reviewed by Darin Fisher.\n' +
-    '&lt;/p&gt;\n' +
-    '&lt;p&gt;\n' +
-    'Implemented EventSender.scalePageBy(f, x, y), which scales a page by a factor of f\n' +
-    'and then sets a scroll position to (x, y). Enabled the tests that had been waiting\n' +
-    'for the implementation of EventSender.scalePageBy(f, x, y).\n' +
-    '&lt;/p&gt;\n' +
-    '&lt;p&gt;\n' +
-    'Source/WebKit/chromium:\n' +
-    '&lt;/p&gt;\n' +
-    '&lt;p&gt;\n' +
-    'Tests: compositing/scaling/tiled-layer-recursion.html\n' +
-    '&lt;/p&gt;\n' +
-    '&lt;blockquote&gt;\n' +
-    '&lt;p&gt;\n' +
-    'fast/repaint/scale-page-shrink.html\n' +
-    'fast/dom/Element/scale-page-client-rects.html\n' +
-    'fast/dom/Range/scale-page-client-rects.html\n' +
-    'fast/events/scroll-in-scaled-page-with-overflow-hidden.html\n' +
-    'fast/dom/Element/scale-page-bounding-client-rect.html\n' +
-    'fast/dom/Range/scale-page-bounding-client-rect.html\n' +
-    '&lt;/p&gt;\n' +
-    '&lt;/blockquote&gt;\n' +
-    '&lt;p&gt;\n' +
-    '* public/WebView.h:\n' +
-    '* src/WebViewImpl.cpp:\n' +
-    '(WebKit::WebViewImpl::scalePage): A wrapper method for scalePage() in WebCore.\n' +
-    '* src/WebViewImpl.h:\n' +
-    '&lt;/p&gt;\n' +
-    '&lt;p&gt;\n' +
-    'Tools:\n' +
-    '&lt;/p&gt;\n' +
-    '&lt;p&gt;\n' +
-    'Tests: compositing/scaling/tiled-layer-recursion.html\n' +
-    '&lt;/p&gt;\n' +
-    '&lt;blockquote&gt;\n' +
-    '&lt;p&gt;\n' +
-    'fast/repaint/scale-page-shrink.html\n' +
-    'fast/dom/Element/scale-page-client-rects.html\n' +
-    'fast/dom/Range/scale-page-client-rects.html\n' +
-    'fast/events/scroll-in-scaled-page-with-overflow-hidden.html\n' +
-    'fast/dom/Element/scale-page-bounding-client-rect.html\n' +
-    'fast/dom/Range/scale-page-bounding-client-rect.html\n' +
-    '&lt;/p&gt;\n' +
-    '&lt;/blockquote&gt;\n' +
-    '&lt;p&gt;\n' +
-    '* DumpRenderTree/chromium/EventSender.cpp:\n' +
-    '(EventSender::EventSender): Added bindings for scalePageBy().\n' +
-    '(EventSender::scalePageBy): A wrapper method for scalePage() in WebView.\n' +
-    '* DumpRenderTree/chromium/EventSender.h:\n' +
-    '* DumpRenderTree/chromium/TestShell.cpp:\n' +
-    '(TestShell::resetTestController): Resets the scale factor to 1.\n' +
-    '&lt;/p&gt;\n' +
-    '&lt;p&gt;\n' +
-    'LayoutTests:\n' +
-    '&lt;/p&gt;\n' +
-    '&lt;p&gt;\n' +
-    '* platform/chromium-linux/compositing/scaling/tiled-layer-recursion-expected.png: Added.\n' +
-    '* platform/chromium-linux/fast/repaint/scale-page-shrink-expected.png: Added.\n' +
-    '* platform/chromium-linux/fast/repaint/scale-page-shrink-expected.txt: Added.\n' +
-    '* platform/chromium-mac/fast/dom/Element/scale-page-bounding-client-rect-expected.txt: Removed.\n' +
-    '* platform/chromium-mac/fast/dom/Range/scale-page-bounding-client-rect-expected.txt: Removed.\n' +
-    '* platform/chromium-win/fast/dom/Element/scale-page-bounding-client-rect-expected.txt: Removed.\n' +
-    '* platform/chromium-win/fast/dom/Element/scale-page-client-rects-expected.txt: Removed.\n' +
-    '* platform/chromium-win/fast/dom/Range/scale-page-bounding-client-rect-expected.txt: Removed.\n' +
-    '* platform/chromium-win/fast/dom/Range/scale-page-client-rects-expected.txt: Removed.\n' +
-    '* platform/chromium/test_expectations.txt: Enabled one test. Enabled two tests for chromium-linux.\n' +
-    '&lt;/p&gt;\n' +
-    '</description>\n' +
-    '      <category>Log</category>\n' +
-    '    </item><item>\n' +
-    '          <author>rniwa@webkit.org</author>\n' +
-    '      <pubDate>Thu, 04 Aug 2011 01:41:29 GMT</pubDate>\n' +
-    '      <title>Revision 92338: Revert an erroneous rebaseline from r92315.\n' +
-    '* ...</title>\n' +
-    '      <link>http://trac.webkit.org/changeset/92338/trunk</link>\n' +
-    '      <guid isPermaLink="false">http://trac.webkit.org/changeset/92338/trunk</guid>\n' +
-    '      <description>&lt;p&gt;\n' +
-    'Revert an erroneous rebaseline from &lt;a class="changeset" href="http://trac.webkit.org/changeset/92315" title="Remove LegacyDefaultOptionalArguments flag from navigator IDL files ..."&gt;r92315&lt;/a&gt;.\n' +
-    '&lt;/p&gt;\n' +
-    '&lt;p&gt;\n' +
-    '* fast/dom/navigator-detached-no-crash-expected.txt:\n' +
-    '&lt;/p&gt;\n' +
-    '</description>\n' +
-    '      <category>Log</category>\n' +
-    '    </item><item>\n' +
-    '          <author>noam.rosenthal@nokia.com</author>\n' +
-    '      <pubDate>Thu, 04 Aug 2011 00:22:21 GMT</pubDate>\n' +
-    '      <title>Revision 92337: [Qt][Texmap][REGRESSION] http://webkit.org/blog-files/transform-style.html ...</title>\n' +
-    '      <link>http://trac.webkit.org/changeset/92337/trunk</link>\n' +
-    '      <guid isPermaLink="false">http://trac.webkit.org/changeset/92337/trunk</guid>\n' +
-    '      <description>&lt;p&gt;\n' +
-    '[Qt][Texmap][REGRESSION] &lt;a class="ext-link" href="http://webkit.org/blog-files/transform-style.html"&gt;&lt;span class="icon"&gt; &lt;/span&gt;http://webkit.org/blog-files/transform-style.html&lt;/a&gt; doesn\'t show composited content\n' +
-    '&lt;a class="ext-link" href="https://bugs.webkit.org/show_bug.cgi?id=65629"&gt;&lt;span class="icon"&gt; &lt;/span&gt;https://bugs.webkit.org/show_bug.cgi?id=65629&lt;/a&gt;\n' +
-    '&lt;/p&gt;\n' +
-    '&lt;p&gt;\n' +
-    'Reviewed by Benjamin Poulain.\n' +
-    '&lt;/p&gt;\n' +
-    '&lt;p&gt;\n' +
-    'Some non-ES2 initialization was wrongfully #ifdefed in CPU(X86) and thus compiled-out.\n' +
-    'When put it in the correct #ifdef, composited layers which require an intermediate buffer\n' +
-    'work again.\n' +
-    '&lt;/p&gt;\n' +
-    '&lt;p&gt;\n' +
-    'No new tests. Existing opacity tests in LayoutTests/compositing test this.\n' +
-    '&lt;/p&gt;\n' +
-    '&lt;p&gt;\n' +
-    '* platform/graphics/opengl/TextureMapperGL.cpp:\n' +
-    '(WebCore::BitmapTextureGL::bind):\n' +
-    '&lt;/p&gt;\n' +
-    '</description>\n' +
-    '      <category>Log</category>\n' +
-    '    </item><item>\n' +
-    '          <author>commit-queue@webkit.org</author>\n' +
-    '      <pubDate>Wed, 03 Aug 2011 04:26:52 GMT</pubDate>\n' +
-    '      <title>Revision 92259: Unreviewed, rolling out r92256.\n' +
-    'http://trac.webkit.org/changeset/92256 ...</title>\n' +
-    '      <link>http://trac.webkit.org/changeset/92259/trunk</link>\n' +
-    '      <guid isPermaLink="false">http://trac.webkit.org/changeset/92259/trunk</guid>\n' +
-    '      <description>&lt;p&gt;\n' +
-    'Unreviewed, rolling out &lt;a class="changeset" href="http://trac.webkit.org/changeset/92256" title="Make EventDispatchMediator RefCounted. ..."&gt;r92256&lt;/a&gt;.\n' +
-    '&lt;a class="ext-link" href="http://trac.webkit.org/changeset/92256"&gt;&lt;span class="icon"&gt; &lt;/span&gt;http://trac.webkit.org/changeset/92256&lt;/a&gt;\n' +
-    '&lt;a class="ext-link" href="https://bugs.webkit.org/show_bug.cgi?id=65593"&gt;&lt;span class="icon"&gt; &lt;/span&gt;https://bugs.webkit.org/show_bug.cgi?id=65593&lt;/a&gt;\n' +
-    '&lt;/p&gt;\n' +
-    '&lt;p&gt;\n' +
-    'Causing tons of crashes on the chromium win bots (Requested by\n' +
-    'jamesr on #webkit).\n' +
-    '&lt;/p&gt;\n' +
-    '&lt;p&gt;\n' +
-    'Patch by Sheriff Bot &amp;lt;&lt;a class="mail-link" href="mailto:webkit.review.bot@gmail.com"&gt;&lt;span class="icon"&gt; &lt;/span&gt;webkit.review.bot@gmail.com&lt;/a&gt;&amp;gt; on 2011-08-02\n' +
-    '&lt;/p&gt;\n' +
-    '&lt;p&gt;\n' +
-    '* dom/Event.cpp:\n' +
-    '* dom/Event.h:\n' +
-    '* dom/EventDispatcher.cpp:\n' +
-    '(WebCore::EventDispatcher::dispatchEvent):\n' +
-    '* dom/EventDispatcher.h:\n' +
-    '* dom/KeyboardEvent.cpp:\n' +
-    '* dom/KeyboardEvent.h:\n' +
-    '* dom/MouseEvent.cpp:\n' +
-    '* dom/MouseEvent.h:\n' +
-    '* dom/Node.cpp:\n' +
-    '(WebCore::Node::dispatchEvent):\n' +
-    '(WebCore::Node::dispatchKeyEvent):\n' +
-    '(WebCore::Node::dispatchMouseEvent):\n' +
-    '(WebCore::Node::dispatchWheelEvent):\n' +
-    '* dom/WheelEvent.cpp:\n' +
-    '* dom/WheelEvent.h:\n' +
-    '&lt;/p&gt;\n' +
-    '</description>\n' +
-    '      <category>Log</category>\n' +
-    '    </item>\n' +
-    ' </channel>\n' +
-    '</rss>\n'
-
-var kExampleCommitDataList = [{
-    "revision": 92342,
-    "title": "Revision 92342: Support cast between CSSPrimitiveValue and EBoxSizing, use in ...",
-    "time": "Thu, 04 Aug 2011 02:09:19 GMT",
-    "summary": "Support cast between CSSPrimitiveValue and EBoxSizing, use in CSSStyleSelector.",
-    "author": "macpherson@chromium.org",
-    "reviewer": "Simon Fraser",
-    "bugID": 65657,
-    "revertedRevision": undefined
-}, {
-    "revision": 92341,
-    "title": "Revision 92341: Implement EventSender.scalePageBy() ...",
-    "time": "Thu, 04 Aug 2011 02:01:31 GMT",
-    "summary": "Implement EventSender.scalePageBy()",
-    "author": "Kentaro Hara",
-    "reviewer": "Darin Fisher",
-    "bugID": 58013,
-    "revertedRevision": undefined
-}, {
-    "revision": 92338,
-    "title": "Revision 92338: Revert an erroneous rebaseline from r92315.\n* ...",
-    "time": "Thu, 04 Aug 2011 01:41:29 GMT",
-    "summary": "Revert an erroneous rebaseline from r92315.",
-    "author": "rniwa@webkit.org",
-    "reviewer": null,
-    "bugID": NaN,
-    "revertedRevision": undefined
-}, {
-    "revision": 92337,
-    "title": "Revision 92337: [Qt][Texmap][REGRESSION] http://webkit.org/blog-files/transform-style.html ...",
-    "time": "Thu, 04 Aug 2011 00:22:21 GMT",
-    "summary": "[Qt][Texmap][REGRESSION]  http://webkit.org/blog-files/transform-style.html doesn't show composited content",
-    "author": "noam.rosenthal@nokia.com",
-    "reviewer": "Benjamin Poulain",
-    "bugID": 65629,
-    "revertedRevision": undefined
-}, {
-    "revision": 92259,
-    "title": "Revision 92259: Unreviewed, rolling out r92256.\nhttp://trac.webkit.org/changeset/92256 ...",
-    "time": "Wed, 03 Aug 2011 04:26:52 GMT",
-    "summary": "Unreviewed, rolling out r92256.",
-    "author": "Sheriff Bot",
-    "reviewer": null,
-    "bugID": 65593,
-    "revertedRevision": 92256
-}];
-
-test("changesetURL", 1, function() {
-    equals(trac.changesetURL(1234), "http://trac.webkit.org/changeset/1234");
-});
-
-test("logURL", 4, function() {
-    equals(trac.logURL('trunk', 1234, 1236, false, false), "http://trac.webkit.org/log/trunk?rev=1236&stop_rev=1234&limit=4");
-    equals(trac.logURL('trunk', 1234, 1234, true, false), "http://trac.webkit.org/log/trunk?rev=1234&stop_rev=1234&limit=2&verbose=on");
-    equals(trac.logURL('trunk', 1236, 1236, false, true), "http://trac.webkit.org/log/trunk?rev=1236&stop_rev=1236&limit=2&format=rss");
-    equals(trac.logURL('trunk', 1234, 1236, true, true), "http://trac.webkit.org/log/trunk?rev=1236&stop_rev=1234&limit=4&verbose=on&format=rss");
-});
-
-test("recentCommitData", 3, function() {
-    var simulator = new NetworkSimulator();
-    simulator.get = function(url, callback)
-    {
-        equals(url, 'http://trac.webkit.org/log/trunk?verbose=on&format=rss&limit=10');
-        simulator.scheduleCallback(function() {
-            var parser = new DOMParser();
-            var responseDOM = parser.parseFromString(kExampleCommitDataXML, "application/xml");
-            callback(responseDOM);
-        });
-    };
-
-    simulator.runTest(function() {
-        trac.recentCommitData('trunk', 10, function(commitDataList) {
-            $.each(commitDataList, function(index, commitData) {
-                // Including the entire message makes the deepEqual below to unwieldy.
-                delete commitData.message;
-            });
-            deepEqual(commitDataList, kExampleCommitDataList);
-        });
-    });
-});
-
-test("commitDataForRevisionRange", 3, function() {
-    var simulator = new NetworkSimulator();
-    simulator.get = function(url, callback)
-    {
-        equals(url, 'http://trac.webkit.org/log/trunk?rev=12365&stop_rev=12345&limit=22&verbose=on&format=rss');
-        simulator.scheduleCallback(function() {
-            var parser = new DOMParser();
-            var responseDOM = parser.parseFromString(kExampleCommitDataXML, "application/xml");
-            callback(responseDOM);
-        });
-    };
-
-    simulator.runTest(function() {
-        trac.commitDataForRevisionRange('trunk', 12345, 12365, function(commitDataList) {
-            $.each(commitDataList, function(index, commitData) {
-                // Including the entire message makes the deepEqual below to unwieldy.
-                delete commitData.message;
-            });
-            deepEqual(commitDataList, kExampleCommitDataList);
-        });
-    });
-});
-
-})();
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js
deleted file mode 100644
index 9c3d47e..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js
+++ /dev/null
@@ -1,296 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-var ui = ui || {};
-
-(function () {
-
-ui.displayURLForBuilder = function(builderName)
-{
-    return config.kPlatforms[config.currentPlatform].waterfallURL + '?' + $.param({
-        'builder': builderName
-    });
-}
-
-ui.displayNameForBuilder = function(builderName)
-{
-    return builderName.replace(/Webkit /, '');
-}
-
-ui.urlForTest = function(testName)
-{
-    return 'http://trac.webkit.org/browser/trunk/LayoutTests/' + testName;
-}
-
-ui.urlForFlakinessDashboard = function(opt_testNameList)
-{
-    var testsParameter = opt_testNameList ? opt_testNameList.join(',') : '';
-    return 'http://test-results.appspot.com/dashboards/flakiness_dashboard.html#tests=' + encodeURIComponent(testsParameter);
-}
-
-ui.urlForEmbeddedFlakinessDashboard = function(opt_testNameList)
-{
-    if (config.kPlatforms[config.currentPlatform].useFlakinessDashboard)
-        return ui.urlForFlakinessDashboard(opt_testNameList) + '&showChrome=false';
-    
-    return 'about:blank';
-}
-
-ui.rolloutReasonForTestNameList = function(testNameList)
-{
-    return 'Broke:\n' + testNameList.map(function(testName) {
-        return '* ' + testName;
-    }).join('\n');
-}
-
-ui.onebar = base.extends('div', {
-    init: function()
-    {
-        this.id = 'onebar';
-        this.innerHTML =
-            '<div><select id="platform-picker"></select></div>' +
-            '<ul>' +
-                '<li><a href="#unexpected">Unexpected Failures</a></li>' +
-                '<li><a href="#expected">Expected Failures</a></li>' +
-                '<li><a href="#results">Results</a></li>' +
-                '<li><a href="#perf">perf</a></li>' +
-            '</ul>' +
-            '<div id="unexpected"></div>' +
-            '<div id="expected"></div>' +
-            '<div id="results"></div>' +
-            '<div id="perf"></div>';
-        this._tabNames = [
-            'unexpected',
-            'expected',
-            'results',
-            'perf',
-        ]
-
-        this._tabIndexToSavedScrollOffset = {};
-        this._tabs = $(this).tabs({
-            disabled: [2],
-            show: function(event, ui) { this._restoreScrollOffset(ui.index); },
-        });
-    },
-    _buildPlatformsPopup: function() {
-        // FIXME: find a better place to do this.
-        var urlPlatform = base.getURLParameter('platform');
-        if (urlPlatform)
-            config.setPlatform(urlPlatform);
-        
-        var platformSelect = document.getElementById('platform-picker');
-        var currentPlatformIndex = 0;
-        Object.keys(config.kPlatforms).sort().forEach(function(platformName) {
-            var option = document.createElement('option');
-            option.innerText = config.kPlatforms[platformName].label;
-            option._platform = platformName;
-            if (platformName == config.currentPlatform)
-                currentPlatformIndex = platformSelect.childNodes.length;
-            platformSelect.appendChild(option);
-        });
-        
-        platformSelect.addEventListener('change', function() {
-            window.location.search = '?platform=' + platformSelect.options[platformSelect.selectedIndex]._platform;
-        });
-        
-        platformSelect.selectedIndex = currentPlatformIndex;
-    },
-    _saveScrollOffset: function() {
-        var tabIndex = this._tabs.tabs('option', 'selected');
-        this._tabIndexToSavedScrollOffset[tabIndex] = document.body.scrollTop;
-    },
-    _restoreScrollOffset: function(tabIndex)
-    {
-        document.body.scrollTop = this._tabIndexToSavedScrollOffset[tabIndex] || 0;
-    },
-    _setupHistoryHandlers: function()
-    {
-        function currentHash() {
-            var hash = window.location.hash;
-            return (!hash || hash == '#') ? '#unexpected' : hash;
-        }
-
-        var self = this;
-        $('.ui-tabs-nav a').bind('mouseup', function(event) {
-            var href = event.target.getAttribute('href');
-            var hash = currentHash();
-            if (href != hash) {
-                self._saveScrollOffset();
-                window.location = href
-            }
-        });
-
-        window.onhashchange = function(event) {
-            var tabName = currentHash().substring(1);
-            self._selectInternal(tabName);
-        };
-
-        // When navigating from the browser chrome, we'll
-        // scroll to the #tabname contents. popstate fires before
-        // we scroll, so we can save the scroll offset first.
-        window.onpopstate = function() {
-            self._saveScrollOffset();
-        };
-    },
-    attach: function()
-    {
-        document.body.insertBefore(this, document.body.firstChild);
-        this._setupHistoryHandlers();
-        this._buildPlatformsPopup();
-    },
-    tabNamed: function(tabName)
-    {
-        if (this._tabNames.indexOf(tabName) == -1)
-            return null;
-        tab = document.getElementById(tabName);
-        // We perform this sanity check below to make sure getElementById
-        // hasn't given us a node in some other unrelated part of the document.
-        // that shouldn't happen normally, but it could happen if an attacker
-        // has somehow sneakily added a node to our document.
-        if (tab.parentNode != this)
-            return null;
-        return tab;
-    },
-    unexpected: function()
-    {
-        return this.tabNamed('unexpected');
-    },
-    expected: function()
-    {
-        return this.tabNamed('expected');
-    },
-    results: function()
-    {
-        return this.tabNamed('results');
-    },
-    perf: function()
-    {
-        return this.tabNamed('perf');
-    },
-    _selectInternal: function(tabName) {
-        var tabIndex = this._tabNames.indexOf(tabName);
-        this._tabs.tabs('enable', tabIndex);
-        this._tabs.tabs('select', tabIndex);
-    },
-    select: function(tabName)
-    {
-        this._saveScrollOffset();
-        this._selectInternal(tabName);
-        window.location = '#' + tabName;
-    }
-});
-
-// FIXME: Loading a module shouldn't set off a timer.  The controller should kick this off.
-setInterval(function() {
-    Array.prototype.forEach.call(document.querySelectorAll("time.relative"), function(time) {
-        time.update && time.update();
-    });
-}, config.kRelativeTimeUpdateFrequency);
-
-ui.RelativeTime = base.extends('time', {
-    init: function()
-    {
-        this.className = 'relative';
-    },
-    date: function()
-    {
-        return this._date;
-    },
-    update: function()
-    {
-        this.textContent = this._date ? base.relativizeTime(this._date) : '';
-    },
-    setDate: function(date)
-    {
-        this._date = date;
-        this.update();
-    }
-});
-
-ui.StatusArea = base.extends('div',  {
-    init: function()
-    {
-        // This is a Singleton.
-        if (ui.StatusArea._instance)
-            return ui.StatusArea._instance;
-        ui.StatusArea._instance = this;
-
-        this.className = 'status';
-        document.body.appendChild(this);
-        this._currentId = 0;
-        this._unfinishedIds = {};
-
-        this.appendChild(new ui.actions.List([new ui.actions.Close()]));
-        $(this).bind('close', this.close.bind(this));
-
-        var processing = document.createElement('progress');
-        processing.className = 'process-text';
-        processing.textContent = 'Processing...';
-        this.appendChild(processing);
-    },
-    close: function()
-    {
-        this.style.visibility = 'hidden';
-        Array.prototype.forEach.call(this.querySelectorAll('.status-content'), function(node) {
-            node.parentNode.removeChild(node);
-        });
-    },
-    addMessage: function(id, message)
-    {
-        this.style.visibility = 'visible';
-        $(this).addClass('processing');
-
-        var element = document.createElement('div');
-        $(element).addClass('message').text(message);
-
-        var content = this.querySelector('#' + id);
-        if (!content) {
-            content = document.createElement('div');
-            content.id = id;
-            content.className = 'status-content';
-            this.appendChild(content);
-        }
-
-        content.appendChild(element);
-        if (element.offsetTop < this.scrollTop || element.offsetTop + element.offsetHeight > this.scrollTop + this.offsetHeight)
-            this.scrollTop = element.offsetTop;
-    },
-    // FIXME: It's unclear whether this code could live here or in a controller.
-    addFinalMessage: function(id, message)
-    {
-        this.addMessage(id, message);
-
-        delete this._unfinishedIds[id];
-        if (!Object.keys(this._unfinishedIds).length)
-            $(this).removeClass('processing');
-    },
-    newId: function() {
-        var id = 'status-content-' + ++this._currentId;
-        this._unfinishedIds[id] = 1;
-        return id;
-    }
-});
-
-})();
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures_unittests.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures_unittests.js
deleted file mode 100644
index 0d14c28..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures_unittests.js
+++ /dev/null
@@ -1,145 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-(function () {
-
-module('ui.failures');
-
-test('Builder', 6, function() {
-    var configuration;
-    configuration = new ui.failures.Builder("Webkit Linux", ["update", "webkit_tests"]);
-    deepEqual(Object.getOwnPropertyNames(configuration.__proto__).sort(), [
-        '_addSpan',
-        'equals',
-        'init',
-    ]);
-    equal(configuration.outerHTML, '<a class="failing-builder" target="_blank" href="http://build.chromium.org/p/chromium.webkit/waterfall?builder=Webkit+Linux"><span class="version">lucid</span><span class="architecture">64-bit</span><span class="failures"> update, webkit_tests</span></a>');
-    configuration = new ui.failures.Builder("Webkit Win");
-    equal(configuration.outerHTML, '<a class="failing-builder" target="_blank" href="http://build.chromium.org/p/chromium.webkit/waterfall?builder=Webkit+Win"><span class="version">xp</span></a>');
-    configuration._addSpan('foo', 'bar');
-    equal(configuration.outerHTML, '<a class="failing-builder" target="_blank" href="http://build.chromium.org/p/chromium.webkit/waterfall?builder=Webkit+Win"><span class="version">xp</span><span class="foo">bar</span></a>');
-    ok(configuration.equals({version: 'xp'}));
-    ok(!configuration.equals({version: 'lucid', is64bit: true}));
-});
-
-test('FailureGrid', 10, function() {
-    var grid = new ui.failures.FailureGrid();
-    deepEqual(Object.getOwnPropertyNames(grid.__proto__).sort(), [
-        "_reset",
-        "_rowByResult",
-        "init",
-        "purge",
-        "update"
-    ]);
-    equal(grid.outerHTML, '<table class="failures">' +
-        '<thead><tr><td>type</td><td>release</td><td>debug</td></tr></thead>' +
-        '<tbody><tr class="BUILDING" style="display: none; "><td><span>BUILDING</span></td><td></td><td></td></tr></tbody>' +
-    '</table>');
-    var row = grid._rowByResult('TEXT');
-    equal(grid.outerHTML, '<table class="failures">' +
-        '<thead><tr><td>type</td><td>release</td><td>debug</td></tr></thead>' +
-        '<tbody>' +
-            '<tr class="TEXT">' +
-                '<td><span>TEXT</span></td><td></td><td></td>' +
-            '</tr>' +
-            '<tr class="BUILDING" style="display: none; "><td><span>BUILDING</span></td><td></td><td></td></tr>' +
-        '</tbody>' +
-    '</table>');
-    equal(row.outerHTML, '<tr class="TEXT"><td><span>TEXT</span></td><td></td><td></td></tr>');
-    grid.update({});
-    equal(grid.outerHTML, '<table class="failures">' +
-        '<thead><tr><td>type</td><td>release</td><td>debug</td></tr></thead>' +
-        '<tbody>' +
-            '<tr class="TEXT">' +
-                '<td><span>TEXT</span></td><td></td><td></td>' +
-            '</tr>' +
-            '<tr class="BUILDING" style="display: none; "><td><span>BUILDING</span></td><td></td><td></td></tr>' +
-        '</tbody>' +
-    '</table>');
-    raises(function() {
-        grid.update({'Atari': {}})
-    });
-    grid.update({'Webkit Linux (dbg)': { actual: 'TEXT'}});
-    equal(grid.outerHTML, '<table class="failures">' +
-        '<thead><tr><td>type</td><td>release</td><td>debug</td></tr></thead>' +
-        '<tbody>' +
-            '<tr class="TEXT" style="">' +
-                '<td><span>TEXT</span></td>' +
-                '<td></td>' +
-                '<td><a class="failing-builder" target="_blank" href="http://build.chromium.org/p/chromium.webkit/waterfall?builder=Webkit+Linux+(dbg)"><span class="version">lucid</span><span class="architecture">64-bit</span></a></td>' +
-            '</tr>' +
-            '<tr class="BUILDING" style="display: none; "><td><span>BUILDING</span></td><td></td><td></td></tr>' +
-        '</tbody>' +
-    '</table>');
-    grid.update({'Webkit Mac10.6': { actual: 'IMAGE+TEXT'}});
-    equal(grid.outerHTML, '<table class="failures">' +
-        '<thead><tr><td>type</td><td>release</td><td>debug</td></tr></thead>' +
-        '<tbody>' +
-            '<tr class="IMAGE+TEXT">' +
-                '<td><span>IMAGE+TEXT</span></td>' +
-                '<td><a class="failing-builder" target="_blank" href="http://build.chromium.org/p/chromium.webkit/waterfall?builder=Webkit+Mac10.6"><span class="version">snowleopard</span></a></td>' +
-                '<td></td>' +
-            '</tr>' +
-            '<tr class="TEXT" style="">' +
-                '<td><span>TEXT</span></td>' +
-                '<td></td>' +
-                '<td><a class="failing-builder" target="_blank" href="http://build.chromium.org/p/chromium.webkit/waterfall?builder=Webkit+Linux+(dbg)"><span class="version">lucid</span><span class="architecture">64-bit</span></a></td>' +
-            '</tr>' +
-            '<tr class="BUILDING" style="display: none; "><td><span>BUILDING</span></td><td></td><td></td></tr>' +
-        '</tbody>' +
-    '</table>');
-    grid.update({'Webkit Mac10.6': { actual: 'IMAGE+TEXT'}});
-    equal(grid.outerHTML, '<table class="failures">' +
-        '<thead><tr><td>type</td><td>release</td><td>debug</td></tr></thead>' +
-        '<tbody>' +
-            '<tr class="IMAGE+TEXT" style="">' +
-                '<td><span>IMAGE+TEXT</span></td>' +
-                '<td><a class="failing-builder" target="_blank" href="http://build.chromium.org/p/chromium.webkit/waterfall?builder=Webkit+Mac10.6"><span class="version">snowleopard</span></a></td>' +
-                '<td></td>' +
-            '</tr>' +
-            '<tr class="TEXT" style="">' +
-                '<td><span>TEXT</span></td>' +
-                '<td></td>' +
-                '<td><a class="failing-builder" target="_blank" href="http://build.chromium.org/p/chromium.webkit/waterfall?builder=Webkit+Linux+(dbg)"><span class="version">lucid</span><span class="architecture">64-bit</span></a></td>' +
-            '</tr>' +
-            '<tr class="BUILDING" style="display: none; "><td><span>BUILDING</span></td><td></td><td></td></tr>' +
-        '</tbody>' +
-    '</table>');
-    grid.purge();
-    grid.update({'Webkit Linux (dbg)': { actual: 'TEXT'}});
-    equal(grid.outerHTML, '<table class="failures">' +
-        '<thead><tr><td>type</td><td>release</td><td>debug</td></tr></thead>' +
-        '<tbody>' +
-            '<tr class="TEXT">' +
-                '<td><span>TEXT</span></td>' +
-                '<td></td>' +
-                '<td><a class="failing-builder" target="_blank" href="http://build.chromium.org/p/chromium.webkit/waterfall?builder=Webkit+Linux+(dbg)"><span class="version">lucid</span><span class="architecture">64-bit</span></a></td>' +
-            '</tr>' +
-            '<tr class="BUILDING" style="display: none; "><td><span>BUILDING</span></td><td></td><td></td></tr>' +
-        '</tbody>' +
-    '</table>');
-});
-
-}());
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js
deleted file mode 100644
index 77d2cea..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js
+++ /dev/null
@@ -1,262 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-var ui = ui || {};
-ui.notifications = ui.notifications || {};
-
-(function(){
-
-var kMaxTestsPerGroup = 3;
-
-ui.notifications.Stream = base.extends('ol', {
-    init: function()
-    {
-        this.className = 'notifications';
-    },
-    add: function(notification)
-    {
-        var insertBefore = null;
-        Array.prototype.some.call(this.children, function(existingNotification) {
-            if (existingNotification.index() < notification.index()) {
-                insertBefore = existingNotification;
-                return true;
-            }
-        });
-        this.insertBefore(notification, insertBefore);
-        return notification;
-    }
-});
-
-ui.notifications.Notification = base.extends('li', {
-    init: function()
-    {
-        this._how = this.appendChild(document.createElement('div'));
-        this._how.className = 'how';
-        this._what = this.appendChild(document.createElement('div'));
-        this._what.className = 'what';
-        this._index = 0;
-        $(this).hide().fadeIn('fast');
-    },
-    index: function()
-    {
-        return this._index;
-    },
-    setIndex: function(index)
-    {
-        this._index = index;
-    },
-    dismiss: function()
-    {
-        // FIXME: These fade in/out effects are lame.
-        $(this).fadeOut(function()
-        {
-            this.parentNode && this.parentNode.removeChild(this);
-        });
-    },
-});
-
-ui.notifications.Info = base.extends(ui.notifications.Notification, {
-    init: function(message)
-    {
-        this.update(message);
-    },
-    update: function(message)
-    {
-        this._what.textContent = message;
-    },
-    updateWithNode: function(node)
-    {
-        $(this._what).empty();
-        this._what.appendChild(node);
-    }
-});
-
-ui.notifications.FailingTestGroup = base.extends('li', {
-    init: function(groupName, testNameList)
-    {
-        this.appendChild(base.createLinkNode(ui.urlForFlakinessDashboard(testNameList), groupName, '_blank'));
-    }
-});
-
-var Cause = base.extends('li', {
-    init: function()
-    {
-        this._description = this.appendChild(document.createElement('div'));
-        this._description.className = 'description';
-    }
-});
-
-ui.notifications.SuspiciousCommit = base.extends(Cause, {
-    init: function(commitData)
-    {
-        this._revision = commitData.revision;
-        this._description.appendChild(base.createLinkNode(trac.changesetURL(commitData.revision), commitData.revision, '_blank'));
-        this._details = this._description.appendChild(document.createElement('span'));
-        this._addDetail('summary', commitData);
-        this._addDetail('author', commitData);
-        this._addDetail('reviewer', commitData);
-        this._addDetail('bugID', commitData, bugzilla.bugURL);
-    },
-    hasRevision: function(revision)
-    {
-        return this._revision == revision;
-    },
-    _addDetail: function(part, commitData, linkFunction)
-    {
-        var content = commitData[part];
-        if (!content)
-            return;
-
-        var span = this._details.appendChild(document.createElement('span'));
-        span.className = part;
-        
-        if (linkFunction) {
-            var link = base.createLinkNode(linkFunction(content), content, '_blank');
-            span.appendChild(link);
-        } else
-            span.textContent = content;
-    }
-});
-
-ui.notifications.Failure = base.extends(ui.notifications.Notification, {
-    init: function()
-    {
-        this._time = this._how.appendChild(new ui.RelativeTime());
-        this._problem = this._what.appendChild(document.createElement('div'));
-        this._problem.className = 'problem';
-        this._effects = this._problem.appendChild(document.createElement('ul'));
-        this._effects.className = 'effects';
-        this._causes = this._what.appendChild(document.createElement('ul'));
-        this._causes.className = 'causes';
-    },
-    date: function()
-    {
-        return this._time.date;
-    }
-});
-
-ui.notifications.FailingTests = base.extends(ui.notifications.Failure, {
-    init: function() {
-        // FIXME: Convert actions to a link from test!
-        this._problem.appendChild(new ui.actions.List([
-            new ui.actions.Examine().makeDefault(),
-            new ui.actions.Rebaseline(),
-        ]));
-        this._testNameList = [];
-    },
-    testNameList: function()
-    {
-        return this._testNameList;
-    },
-    containsFailureAnalysis: function(failureAnalysis)
-    {
-        return this._testNameList.indexOf(failureAnalysis.testName) != -1;
-    },
-    addFailureAnalysis: function(failureAnalysis)
-    {
-        if (this.containsFailureAnalysis(failureAnalysis))
-            return false;
-        this._testNameList.push(failureAnalysis.testName);
-        $(this._effects).empty();
-        this._forEachTestGroup(function(groupName, testNameList) {
-            this._effects.appendChild(new ui.notifications.FailingTestGroup(groupName, testNameList))
-        }.bind(this));
-        return true;
-    },
-    _forEachTestGroup: function(callback)
-    {
-        var individualTests = [];
-        base.forEachDirectory(this._testNameList, function(groupLabel, testsInDirectory) {
-            if (testsInDirectory.length <= kMaxTestsPerGroup) {
-                individualTests = individualTests.concat(testsInDirectory);
-                return;
-            }
-            callback(groupLabel, testsInDirectory);
-        });
-        individualTests.forEach(function(testName) {
-            callback(testName, [testName]);
-        });
-    }
-});
-
-ui.notifications.FailingTestsSummary = base.extends(ui.notifications.FailingTests, {
-    init: function() {
-        this._where = this._how.appendChild(new ui.failures.FailureGrid());
-        this._commitDataPinned = false;
-    },
-    purge: function() {
-        this._where.purge();
-    },
-    updateBuilderResults: function(resultNodesByBuilder)
-    {
-        this._where.update(resultNodesByBuilder);
-    },
-    addFailureAnalysis: function(failureAnalysis)
-    {
-        this.updateBuilderResults(failureAnalysis.resultNodesByBuilder);
-        if (!ui.notifications.FailingTests.prototype.addFailureAnalysis.call(this, failureAnalysis))
-            return false;
-    },
-    pinToCommitData: function(commitData)
-    {
-        if (this._commitDataPinned)
-            return;
-        this._commitDataPinned = true;
-        $(this._causes).children().each(function() {
-            if (this.hasRevision(commitData.revision))
-                return;
-            $(this).detach();
-        });
-    },
-    addCommitData: function(commitData)
-    {
-        if (this._commitDataPinned)
-            return null;
-        var commitDataDate = new Date(commitData.time);
-        if (this._time.date > commitDataDate); {
-            this.setIndex(commitDataDate.getTime());
-            this._time.setDate(commitDataDate);
-        }
-        return this._causes.appendChild(new ui.notifications.SuspiciousCommit(commitData));
-    }
-});
-
-ui.notifications.BuildersFailing = base.extends(ui.notifications.Failure, {
-    init: function(message)
-    {
-        this._problem.insertBefore(document.createTextNode(message + ':'), this._problem.firstChild);
-    },
-    setFailingBuilders: function(failuresList)
-    {
-        $(this._effects).empty().append(Object.keys(failuresList).map(function(builderName) {
-            var effect = document.createElement('li');
-            effect.className = 'builder';
-            effect.appendChild(new ui.failures.Builder(builderName, failuresList[builderName]));
-            return effect;
-        }));
-    }
-});
-
-})();
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui_unittests.js b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui_unittests.js
deleted file mode 100644
index 66f7ac9..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui_unittests.js
+++ /dev/null
@@ -1,203 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-(function () {
-
-module("ui");
-
-var kExampleResultsByTest = {
-    "scrollbars/custom-scrollbar-with-incomplete-style.html": {
-        "Mock Builder": {
-            "expected": "IMAGE",
-            "actual": "CRASH"
-        },
-        "Mock Linux": {
-            "expected": "TEXT",
-            "actual": "CRASH"
-        }
-    },
-    "userscripts/another-test.html": {
-        "Mock Builder": {
-            "expected": "PASS",
-            "actual": "TEXT"
-        }
-    }
-}
-
-test("ui.onebar", 3, function() {
-    if (window.location.hash) {
-        window.location.hash = '';
-    }
-
-    onebar = new ui.onebar();
-    onebar.attach();
-    equal(onebar.innerHTML,
-        '<div><select id="platform-picker"><option>Apple</option><option>Chromium</option><option>GTK</option><option>Qt</option></select></div>' +
-        '<ul class="ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all">' +
-            '<li class="ui-state-default ui-corner-top ui-tabs-selected ui-state-active"><a href="#unexpected">Unexpected Failures</a></li>' +
-            '<li class="ui-state-default ui-corner-top"><a href="#expected">Expected Failures</a></li>' +
-            '<li class="ui-state-default ui-corner-top ui-state-disabled"><a href="#results">Results</a></li>' +
-            '<li class="ui-state-default ui-corner-top"><a href="#perf">perf</a></li>' +
-        '</ul>' +
-        '<div id="unexpected" class="ui-tabs-panel ui-widget-content ui-corner-bottom"></div>' +
-        '<div id="expected" class="ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide"></div>' +
-        '<div id="results" class="ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide"></div>' +
-        '<div id="perf" class="ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide"></div>');
-
-    onebar.select('expected');
-    equal(window.location.hash, '#expected');
-    onebar.select('unexpected');
-    equal(window.location.hash, '#unexpected');
-
-    $(onebar).detach();
-});
-
-test("results.ResultsGrid", 1, function() {
-    var grid = new ui.results.ResultsGrid()
-    grid.addResults([
-        'http://example.com/layout-test-results/foo-bar-diff.txt',
-        'http://example.com/layout-test-results/foo-bar-expected.png',
-        'http://example.com/layout-test-results/foo-bar-actual.png',
-        'http://example.com/layout-test-results/foo-bar-diff.png',
-    ]);
-    equal(grid.innerHTML,
-        '<table class="comparison">' +
-            '<thead>' +
-                '<tr>' +
-                    '<th>Expected</th>' +
-                    '<th>Actual</th>' +
-                    '<th>Diff</th>' +
-                '</tr>' +
-            '</thead>' +
-            '<tbody>' +
-                '<tr>' +
-                    '<td class="expected result-container"><img class="image-result" src="http://example.com/layout-test-results/foo-bar-expected.png"></td>' +
-                    '<td class="actual result-container"><img class="image-result" src="http://example.com/layout-test-results/foo-bar-actual.png"></td>' +
-                    '<td class="diff result-container"><img class="image-result" src="http://example.com/layout-test-results/foo-bar-diff.png"></td>' +
-                '</tr>' +
-            '</tbody>' +
-        '</table>' +
-        '<table class="comparison">' +
-            '<thead>' +
-                '<tr>' +
-                    '<th>Expected</th>' +
-                    '<th>Actual</th>' +
-                    '<th>Diff</th>' +
-                '</tr>' +
-            '</thead>' +
-            '<tbody>' +
-                '<tr>' +
-                    '<td class="expected result-container"></td>' +
-                    '<td class="actual result-container"></td>' +
-                    '<td class="diff result-container"><iframe class="text-result" src="http://example.com/layout-test-results/foo-bar-diff.txt"></iframe></td>' +
-                '</tr>' +
-            '</tbody>' +
-        '</table>');
-});
-
-test("results.ResultsGrid (crashlog)", 1, function() {
-    var grid = new ui.results.ResultsGrid()
-    grid.addResults(['http://example.com/layout-test-results/foo-bar-crash-log.txt']);
-    equal(grid.innerHTML, '<iframe class="text-result" src="http://example.com/layout-test-results/foo-bar-crash-log.txt"></iframe>');
-});
-
-test("results.ResultsGrid (empty)", 1, function() {
-    var grid = new ui.results.ResultsGrid()
-    grid.addResults([]);
-    equal(grid.innerHTML, 'No results to display.');
-});
-
-test("time", 6, function() {
-    var time = new ui.RelativeTime();
-    equal(time.tagName, 'TIME');
-    equal(time.className, 'relative');
-    deepEqual(Object.getOwnPropertyNames(time.__proto__).sort(), [
-        'date',
-        'init',
-        'setDate',
-        'update',
-    ]);
-    equal(time.outerHTML, '<time class="relative"></time>');
-    var tenMinutesAgo = new Date();
-    tenMinutesAgo.setMinutes(tenMinutesAgo.getMinutes() - 10);
-    time.setDate(tenMinutesAgo);
-    equal(time.outerHTML, '<time class="relative">10 minutes ago</time>');
-    equal(time.date().getTime(), tenMinutesAgo.getTime());
-});
-
-test("StatusArea", 3, function() {
-    var statusArea = new ui.StatusArea();
-    var id = statusArea.newId();
-    statusArea.addMessage(id, 'First Message');
-    statusArea.addMessage(id, 'Second Message');
-    equal(statusArea.outerHTML,
-        '<div class="status processing" style="visibility: visible; ">' +
-            '<ul class="actions"><li><button class="action">Close</button></li></ul>' +
-            '<progress class="process-text">Processing...</progress>' +
-            '<div id="status-content-1" class="status-content">' +
-                '<div class="message">First Message</div>' +
-                '<div class="message">Second Message</div>' +
-            '</div>' +
-        '</div>');
-
-    var secondStatusArea = new ui.StatusArea();
-    var secondId = secondStatusArea.newId();
-    secondStatusArea.addMessage(secondId, 'First Message second id');
-
-    equal(statusArea.outerHTML,
-        '<div class="status processing" style="visibility: visible; ">' +
-            '<ul class="actions"><li><button class="action">Close</button></li></ul>' +
-            '<progress class="process-text">Processing...</progress>' +
-            '<div id="status-content-1" class="status-content">' +
-                '<div class="message">First Message</div>' +
-                '<div class="message">Second Message</div>' +
-            '</div>' +
-            '<div id="status-content-2" class="status-content">' +
-                '<div class="message">First Message second id</div>' +
-            '</div>' +
-        '</div>');
-
-    statusArea.addFinalMessage(id, 'Final Message 1');
-    statusArea.addFinalMessage(secondId, 'Final Message 2');
-
-    equal(statusArea.outerHTML,
-        '<div class="status" style="visibility: visible; ">' +
-            '<ul class="actions"><li><button class="action">Close</button></li></ul>' +
-            '<progress class="process-text">Processing...</progress>' +
-            '<div id="status-content-1" class="status-content">' +
-                '<div class="message">First Message</div>' +
-                '<div class="message">Second Message</div>' +
-                '<div class="message">Final Message 1</div>' +
-            '</div>' +
-            '<div id="status-content-2" class="status-content">' +
-                '<div class="message">First Message second id</div>' +
-                '<div class="message">Final Message 2</div>' +
-            '</div>' +
-        '</div>');
-
-    statusArea.close();
-});
-
-})();
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/TestFailures.css b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/TestFailures.css
deleted file mode 100644
index c185e60..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/TestFailures.css
+++ /dev/null
@@ -1,119 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-aside {
-    position: absolute;
-    top: 3px;
-    right: 5px;
-    color: #888;
-    font-size: 0.9em;
-}
-
-code {
-    font-size: 0.9em;
-}
-
-ol {
-    list-style-type: none;
-}
-
-dt {
-    float: left;
-    font-weight: bold;
-    margin-right: 3px;
-}
-
-dt::after {
-    content: ':';
-}
-
-#failure-history, #possibly-flaky-tests {
-    margin: 0;
-    padding: 0 0 0 15px;
-}
-
-#failure-history > li {
-    margin-bottom: 10px;
-    padding: 10px;
-}
-
-#possibly-flaky-tests > li {
-    padding: 1px 0px;
-}
-
-#failure-history > li, #possibly-flaky-tests > li {
-    background-color: #f0f0f0;
-    padding-left: 50px;
-}
-
-#possibly-flaky-tests > li > :first-child {
-    margin-left: -50px;
-}
-
-.flakiness-examples-list {
-    padding: 0;
-}
-
-.test-list {
-    margin: 0 0 0 -40px;
-    padding: 0;
-}
-
-.info {
-    font-style: italic;
-}
-
-.existing-and-new-bugs {
-    margin-bottom: 0;
-}
-
-.existing-bugs-list, .suspect-revisions-list, .flakiness-examples-list {
-    font-size: smaller;
-}
-
-.new-bug-form {
-    display: none;
-}
-
-.disclosure-triangle {
-    -webkit-transition: -webkit-transform 0.1s;
-    -webkit-user-select: none;
-    cursor: default;
-    display: inline-block;
-    padding: 0px 3px;
-}
-
-.expanded > .disclosure-triangle {
-    -webkit-transform: rotateZ(90deg);
-}
-
-.expandable {
-    height: 0px;
-    overflow: hidden;
-}
-
-.expanded > .expandable {
-    height: auto;
-}
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/failures.css b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/failures.css
deleted file mode 100644
index fe818c6..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/failures.css
+++ /dev/null
@@ -1,80 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-.failures .BUILDING {
-    opacity: 0.5;
-}
-
-a.failing-builder {
-    display: inline-block;
-    border: 1px solid Gray;
-    margin: 0 0 2px 0;
-    padding: 1px;
-    color: Black;
-    font-size: 11px;
-    text-decoration: none;
-}
-
-    a.failing-builder>span.version {
-        text-transform: uppercase;
-        background-color: #555;
-        color: White;
-        padding: 0 2px;
-    }
-
-    a.failing-builder>span.architecture {
-        padding: 0 2px;
-    }
-
-    .effects a.failing-builder>span.architecture {
-        background-color: #555;
-        color: White;
-    }
-
-    a.failing-builder>span.graphics {
-        padding: 0 2px;
-    }
-
-
-ul.failures {
-    padding: 0px;
-}
-
-    ul.failures>li {
-        display: -webkit-box;
-    }
-
-    ul.failures>li label {
-        margin-left: 10px;
-    }
-
-        ul.failures>li ul.actions {
-            padding: 0px;
-            visibility: hidden;
-        }
-
-        ul.failures>li:hover ul.actions {
-            visibility: visible;
-        }
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/notifications.css b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/notifications.css
deleted file mode 100644
index eede189..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/notifications.css
+++ /dev/null
@@ -1,234 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-/* FIXME: This should really be in actions.css. */
-ul.actions>li {
-    display: inline-block;
-}
-
-ol.notifications {
-    list-style: none;
-    padding: 0;
-}
-
-ol.notifications ul {
-    list-style: none;
-    padding: 0;
-}
-
-ol.notifications>li {
-    display: -webkit-box;
-    width: 100%;
-    padding: 10px;
-    box-sizing: border-box;
-    border-top: 1px solid Gray;
-}
-
-ol.notifications div.how {
-    width: 350px;
-}
-
-ol.notifications time {
-    display: block;
-    color: #888;
-    padding: 0 0 20px 0;
-}
-
-ol.notifications div.what {
-    display: -webkit-box;
-    -webkit-box-orient: vertical;
-    padding: 0 0 0 10px;
-    -webkit-box-flex: 1;
-}
-
-    ol.notifications>li div.what ul.effects>li.builder {
-        display: inline;
-        padding-left: 5px;
-    }
-
-ol.notifications ul.causes>li, ol.notifications div.problem {
-    display: -webkit-box;
-}
-
-ol.notifications ul.causes div.description, ol.notifications div.problem ul.effects {
-    -webkit-box-flex: 1;
-}
-
-ol.notifications>li div.problem {
-    padding-bottom: 10px;
-}
-
-    ol.notifications>li div.problem>ul.actions {
-        visibility: hidden;
-    }
-
-    ol.notifications>li:hover div.problem>ul.actions {
-        visibility: visible;
-    }
-
-    ol.notifications>li table.failures {
-        opacity: 0.2;
-        -webkit-transition: opacity 0.5s;
-    }
-
-    ol.notifications>li:hover table.failures {
-        opacity: 1;
-    }
-
-ol.notifications>li ul.causes>li>ul.actions {
-}
-
-    ol.notifications>li ul.causes>li>div.description {
-        padding: 0 10px 5px 0;
-        display: -webkit-box;
-    }
-
-        ol.notifications>li ul.causes>li>div.description>a {
-            padding: 5px 10px 5px 10px;
-            margin: -5px 10px -2px 0;
-            border-radius: 4px;
-            display: inline-block;
-        }
-
-        ol.notifications>li ul.causes>li:hover>div.description>a {
-            background-color: #555;
-            color: White;
-        }
-
-        ol.notifications>li ul.causes>li:hover>div.description>a::after {
-            content: '';
-            width: 0;
-            height: 0;
-            margin-top: 5px;
-            position: absolute;
-            margin-left: 10px;
-            border-top: 5px solid White;
-            border-left: 5px solid #555;
-            border-bottom: 5px solid White;
-        }
-
-        ol.notifications>li ul.causes>li>div.description>span {
-            padding: 0 10px 0 0;
-            display: block;
-            cursor: default;
-            pointer-events: none;
-            -webkit-box-flex: 1;
-        }
-
-        ol.notifications>li ul.causes>li>div.description>span>span.author {
-            padding: 0 0 0 5px;
-            font-style: italic;
-        }
-
-        ol.notifications>li ul.causes>li>div.description>span>span.reviewer {
-            color: Gray;
-        }
-
-        ol.notifications>li ul.causes>li>div.description>span>span.bugID::before {
-            content: 'bug ';
-            padding-left: 8px;
-        }
-
-        ol.notifications>li ul.causes>li>div.description>span>span.bugID>a {
-            cursor: hand;
-            pointer-events: auto;
-        }
-
-        ol.notifications>li ul.causes>li>div.description>span>span.reviewer::before {
-            content: ' (';
-        }
-
-        ol.notifications>li ul.causes>li>div.description>span>span.reviewer::after {
-            content: ')';
-        }
-
-    ol.notifications>li ul.causes>li>ul.actions {
-        visibility: hidden;
-    }
-
-    ol.notifications>li ul.causes>li:hover>ul.actions {
-        visibility: visible;
-    }
-
-    ol.notifications>li ul.causes>li li {
-        padding: 10px 0 0 0;
-        display: inline;
-    }
-
-ol.notifications table.failures {
-    border-collapse: collapse;
-    table-layout: fixed;
-    font-size: 11px;
-    width: 350px;
-}
-
-    ol.notifications table.failures thead tr td:first-child {
-        visibility: hidden;
-    }
-
-    ol.notifications table.failures tbody tr {
-        border-top: 1px solid #eee;
-    }
-
-    ol.notifications table.failures tbody td:first-child {
-        width: 20%;
-    }
-
-    ol.notifications table.failures tbody td {
-        width: 40%;
-        padding: 2px;
-    }
-
-    ol.notifications table.failures tbody tr td:first-child {
-        vertical-align: top;
-    }
-
-    ol.notifications table.failures tbody tr td:first-child span {
-        padding: 0 2px;
-    }
-
-    ol.notifications table.failures tbody tr.TIMEOUT td:first-child span {
-        background-color: #fffc6c;
-    }
-
-    ol.notifications table.failures tbody tr.TEXT td:first-child span {
-        background-color: #e98080;
-    }
-
-    ol.notifications table.failures tbody tr.CRASH td:first-child span {
-        background-color: #ffc343;
-    }
-
-    ol.notifications table.failures tbody tr.AUDIO td:first-child span {
-        background-color: #bfdfff;
-    }
-
-    ol.notifications table.failures tbody tr.IMAGE td:first-child span {
-        background-color: #69f;
-    }
-
-    ol.notifications table.failures tbody tr.IMAGE\+TEXT td:first-child span {
-        background-color: #96f;
-    }
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/summary-mock.html b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/summary-mock.html
deleted file mode 100644
index 510545c..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/summary-mock.html
+++ /dev/null
@@ -1,56 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright (C) 2011 Google Inc. All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions
-are met:
-1. Redistributions of source code must retain the above copyright
-   notice, this list of conditions and the following disclaimer.
-2. Redistributions in binary form must reproduce the above copyright
-   notice, this list of conditions and the following disclaimer in the
-   documentation and/or other materials provided with the distribution.
-
-THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
-AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
-BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-THE POSSIBILITY OF SUCH DAMAGE.
-
-The favicons are from the awesome famfamfam.com, which is the website of Mark
-James, a web developer from Birmingham, UK.
--->
-<html>
-<head>
-<title>Mock Summary View</title>
-<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:400,700">
-<link rel="stylesheet" href="styles/common.css">
-<link rel="stylesheet" href="styles/results.css">
-<link rel="stylesheet" href="styles/notifications.css">
-</head>
-<body>
-<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
-<script src="scripts/config.js"></script>
-<script src="scripts/base.js"></script>
-<script src="scripts/net.js"></script>
-<script src="scripts/Trac.js"></script>
-<script src="scripts/Bugzilla.js"></script>
-<script src="scripts/builders.js"></script>
-<script src="scripts/checkout.js"></script>
-<script src="scripts/results.js"></script>
-<script src="scripts/ui.js"></script>
-<script src="scripts/model.js"></script>
-<script src="scripts/ui/actions.js"></script>
-<script src="scripts/ui/failures.js"></script>
-<script src="scripts/ui/notifications.js"></script>
-<script src="scripts/ui/results.js"></script>
-<script src="scripts/controllers.js"></script>
-<script src="scripts/summary-mock.js"></script>
-</body>
-</html>
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/buildbot.css b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/buildbot.css
deleted file mode 100644
index a71c81f..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/buildbot.css
+++ /dev/null
@@ -1,382 +0,0 @@
-body {
-	margin-bottom:50px;
-}
-
-body, td {
-	font-family: Verdana, Cursor;
-	font-size: 10px;
-	font-weight: bold;
-}
-
-a:link,a:visited,a:active {
-	color: #444;
-}
-
-a:hover {
-	color: #000000;
-}
-
-table {
-	border-spacing: 1px 1px;
-}
-
-table td {
-	padding: 3px 0px 3px 0px;
-	text-align: center;
-}
-
-.Project {
-	width: 100px;
-}
-
-.LastBuild, .Activity {
-	padding: 0 0 0 4px;
-}
-
-.LastBuild, .Activity, .Builder, .BuildStep {
-        width: 155px;
-        max-width: 155px;
-}
-
-td.Time {
-	color: #000;
-	border-bottom: 1px solid #aaa;
-	background-color: #eee;
-}
-
-td.Activity, td.Change, td.Builder {
-	color: #333333;
-	background-color: #CCCCCC;
-}
-
-td.Change {
-	border-radius: 5px;
-	-webkit-border-radius: 5px;
-	-moz-border-radius: 5px;
-}
-td.Event {
-	color: #777;
-	background-color: #ddd;
-	border-radius: 5px;
-	-webkit-border-radius: 5px;
-	-moz-border-radius: 5px;
-}
-
-td.Activity {
-	border-top-left-radius: 10px;
-	-webkit-border-top-left-radius: 10px;
-	-moz-border-radius-topleft: 10px;
-	min-height: 20px;
-	padding: 2px 0 2px 0;
-}
-
-td.idle, td.waiting, td.offline, td.building {
-	border-top-left-radius: 0px;
-	-webkit-border-top-left-radius: 0px;
-	-moz-border-radius-topleft: 0px;
-}
-
-.LastBuild {
-	border-top-left-radius: 5px;
-	-webkit-border-top-left-radius: 5px;
-	-moz-border-radius-topleft: 5px;
-	border-top-right-radius: 5px;
-	-webkit-border-top-right-radius: 5px;
-	-moz-border-radius-topright: 5px;
-}
-
-/* Console view styles */
-
-td.DevRev {
-        padding: 4px 8px 4px 8px;
-        color: #333333;
-        border-top-left-radius: 5px;
-        -webkit-border-top-left-radius: 5px;
-        -moz-border-radius-topleft: 5px;
-        background-color: #eee;
-        width: 1%;
-}
-
-td.DevRevCollapse {
-        border-bottom-left-radius: 5px;
-        -webkit-border-bottom-left-radius: 5px;
-        -moz-border-radius-bottomleft: 5px;
-}
-
-td.DevName {
-        padding: 4px 8px 4px 8px;
-        color: #333333;
-        background-color: #eee;
-        width: 1%;
-        text-align: left;
-}
-
-td.DevStatus {
-        padding: 4px 4px 4px 4px;
-        color: #333333;
-        background-color: #eee;
-}
-
-td.DevSlave {
-        padding: 4px 4px 4px 4px;
-        color: #333333;
-        background-color: #eee;
-}
-
-td.first {
-        border-top-left-radius: 5px;
-        -webkit-border-top-left-radius: 5px;
-        -moz-border-radius-topleft: 5px;
-}
-
-td.last {
-        border-top-right-radius: 5px;
-        -webkit-border-top-right-radius: 5px;
-        -moz-border-radius-topright: 5px;
-}
-
-td.DevStatusCategory {
-        border-radius: 5px;
-        -webkit-border-radius: 5px;
-        -moz-border-radius: 5px;
-        border-width:1px;
-        border-style:solid;
-}
-
-td.DevStatusCollapse {
-        border-bottom-right-radius: 5px;
-        -webkit-border-bottom-right-radius: 5px;
-        -moz-border-radius-bottomright: 5px;
-}
-
-td.DevDetails {
-        font-weight: normal;
-        padding: 8px 8px 8px 8px;
-        color: #333333;
-        background-color: #eee;
-        text-align: left;
-}
-
-td.DevComment {
-        font-weight: normal;
-        padding: 8px 8px 8px 8px;
-        color: #333333;
-        border-bottom-right-radius: 5px;
-        -webkit-border-bottom-right-radius: 5px;
-        -moz-border-radius-bottomright: 5px;
-        border-bottom-left-radius: 5px;
-        -webkit-border-bottom-left-radius: 5px;
-        -moz-border-radius-bottomleft: 5px;
-        background-color: #eee;
-        text-align: left;
-}
-
-td.Alt {
-        background-color: #CCCCCC;
-}
-
-.legend {
-        border-radius: 5px;
-        -webkit-border-radius: 5px;
-        -moz-border-radius: 5px;
-        width: 100px;
-        max-width: 100px;
-        text-align:center;
-        padding: 2px 2px 2px 2px;
-        height:14px;
-        white-space:nowrap;
-}
-
-.DevStatusBox {
-        text-align:center;
-        height:20px;
-        padding:0 2px;
-        line-height:0;
-        white-space:nowrap;
-}
-
-.DevStatusBox a {
-        opacity: 0.85;
-        border-width:1px;
-        border-style:solid;
-        border-radius: 4px;
-        -webkit-border-radius: 4px;
-        -moz-border-radius: 4px;
-        display:block;
-        width:90%;
-        height:20px;
-        line-height:20px;
-        margin-left: auto;
-        margin-right: auto;
-}
-
-.DevSlaveBox {
-        text-align:center;
-        height:10px;
-        padding:0 2px;
-        line-height:0;
-        white-space:nowrap;
-}
-
-.DevSlaveBox a {
-        opacity: 0.85;
-        border-width:1px;
-        border-style:solid;
-        border-radius: 4px;
-        -webkit-border-radius: 4px;
-        -moz-border-radius: 4px;
-        display:block;
-        width:90%;
-        height:10px;
-        line-height:20px;
-        margin-left: auto;
-        margin-right: auto;
-}
-
-a.noround {
-        border-radius: 0px;
-        -webkit-border-radius: 0px;
-        -moz-border-radius: 0px;
-        position: relative;
-        margin-top: -8px;
-        margin-bottom: -8px;
-        height: 36px;
-        border-top-width: 0;
-        border-bottom-width: 0;
-}
-
-a.begin {
-        border-top-width:1px;
-        position: relative;
-        margin-top: 0px;
-        margin-bottom: -7px;
-        height: 27px;
-	border-top-left-radius: 4px;
-	-webkit-border-top-left-radius: 4px;
-        -moz-border-radius-topleft: 4px;
-	border-top-right-radius: 4px;
-	-webkit-border-top-right-radius: 4px;
-        -moz-border-radius-topright: 4px;
-}
-
-a.end {
-        border-bottom-width:1px;
-        position: relative;
-        margin-top: -7px;
-        margin-bottom: 0px;
-        height: 27px;
-	border-bottom-left-radius: 4px;
-	-webkit-border-bottom-left-radius: 4px;
-        -moz-border-radius-bottomleft: 4px;
-	border-bottom-right-radius: 4px;
-	-webkit-border-bottom-right-radius: 4px;
-        -moz-border-radius-bottomright: 4px;
-}
-
-.center_align {
-        text-align: center;
-}
-
-.right_align {
-        text-align: right;
-}
-
-.left_align {
-        text-align: left;
-}
-
-div.BuildWaterfall {
-	border-radius: 7px;
-	-webkit-border-radius: 7px;
-	-moz-border-radius: 7px;
-        position: absolute;
-        left: 0px;
-        top: 0px;
-        background-color: #FFFFFF;
-        padding: 4px 4px 4px 4px;
-        float: left;
-        display: none;
-        border-width: 1px;
-        border-style: solid;
-}
-
-/* LastBuild, BuildStep states */
-.success {
-	color: #FFFFFF;
-	background-color: #8fdf5f;
-        border-color: #4F8530;
-}
-
-.failure {
-	color: #FFFFFF;
-	background-color: #e98080;
-        border-color: #A77272;
-}
-
-.warnings {
-	color: #FFFFFF;
-	background-color: #ffc343;
-        border-color: #C29D46;
-}
-
-.exception, td.offline {
-	color: #FFFFFF;
-	background-color: #e0b0ff;
-        border-color: #ACA0B3;
-}
-
-.start,.running, td.building {
-	color: #666666;
-	background-color: #fffc6c;
-        border-color: #C5C56D;
-}
-
-.start {
-	border-bottom-left-radius: 10px;
-	-webkit-border-bottom-left-radius: 10px;
-	-moz-border-radius-bottomleft: 10px;
-	border-bottom-right-radius: 10px;
-	-webkit-border-bottom-right-radius: 10px;
-	-moz-border-radius-bottomright: 10px;
-}
-
-.notstarted {
-        border-width:1px;
-        border-style:solid;
-        border-color:#aaa;
-}
-
-td.Project a:hover, td.start a:hover {
-        color: #000;
-}
-
-/* grid styles */
-
-table.Grid {
-        border-collapse: collapse;
-}
-
-table.Grid tr td {
-        padding: 0.2em;
-        margin: 0px;
-        text-align: center;
-}
-
-table.Grid tr td.title {
-        font-size: 90%;
-        border-right: 1px gray solid;
-        border-bottom: 1px gray solid;
-}
-
-table.Grid tr td.sourcestamp {
-        font-size: 90%;
-}
-
-table.Grid tr td.builder {
-        text-align: right;
-        font-size: 90%;
-}
-
-table.Grid tr td.build {
-        border: 1px gray solid;
-}
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/default.css b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/default.css
deleted file mode 100644
index f493a8e..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/default.css
+++ /dev/null
@@ -1,538 +0,0 @@
-body > hr { display: none; }
-div.content h1 { display: none; }
-
-body.interface {
-    margin-top: 20px;
-    background: url(bg_gradient.jpg) repeat-x;
-    font-family: Verdana, Cursor;
-    font-size: 10px;
-    font-weight: bold;
-    background-color: #fff;
-    color: #333;
-}
-
-small {
-  font-size: 9px;
-}
-
-.auth {
-    position: absolute;
-    top: 5px;
-    right: 40px;
-}
-
-a:link,a:visited,a:active {
-    color: #333;
-}
-
-a:visited {
-    color: #557;
-}
-
-table {
-    border-spacing: 1px 1px;
-}
-
-table td {
-    padding: 3px 2px 3px 2px;
-}
-
-.Project {
-    min-width: 6em;
-}
-
-.LastBuild,.Activity {
-    padding: 0 0 0 4px;
-}
-
-/* Chromium Specific styles */
-div.BuildResultInfo {
-    color: #444;
-}
-
-div.Announcement {
-    margin-bottom: 1em;
-}
-
-div.Announcement>a:hover {
-    color: black;
-}
-
-div.Announcement>div.Notice {
-    background-color: #afdaff;
-    padding: 0.5em;
-    font-size: 16px;
-    text-align: center;
-}
-
-div.Announcement>div.Open {
-    border: 3px solid #8fdf5f;
-    padding: 0.5em;
-    font-size: 16px;
-    text-align: center;
-}
-
-div.Announcement>div.Closed {
-    border: 5px solid #e98080;
-    padding: 0.5em;
-    font-size: 24px;
-    font-weight: bold;
-    text-align: center;
-}
-
-td.Time {
-    color: #000;
-    border-bottom: 1px solid #aaa;
-    background-color: #eee;
-}
-
-td.Activity,td.Change,td.Builder {
-    color: #333333;
-    background-color: #CCCCCC;
-}
-
-td.Change {
-    border-radius: 5px;
-    -webkit-border-radius: 5px;
-    -moz-border-radius: 5px;
-}
-
-td.Event {
-    color: #777;
-    background-color: #ddd;
-    border-radius: 5px;
-    -webkit-border-radius: 5px;
-    -moz-border-radius: 5px;
-}
-
-td.Activity {
-    border-top-left-radius: 10px;
-    -webkit-border-top-left-radius: 10px;
-    -moz-border-radius-topleft: 10px;
-    min-height: 20px;
-    padding: 2px 0 2px 0;
-}
-
-td.idle,td.waiting,td.offline,td.building {
-    border-top-left-radius: 0px;
-    -webkit-border-top-left-radius: 0px;
-    -moz-border-radius-topleft: 0px;
-}
-
-.LastBuild {
-    border-top-left-radius: 5px;
-    -webkit-border-top-left-radius: 5px;
-    -moz-border-radius-topleft: 5px;
-    border-top-right-radius: 5px;
-    -webkit-border-top-right-radius: 5px;
-    -moz-border-radius-topright: 5px;
-}
-
-/* Console view styles */
-td.DevRev {
-    padding: 4px 8px 4px 8px;
-    color: #333333;
-    border-top-left-radius: 5px;
-    -webkit-border-top-left-radius: 5px;
-    -moz-border-radius-topleft: 5px;
-    background-color: #eee;
-    width: 1%;
-}
-
-td.DevRevCollapse {
-    border-bottom-left-radius: 5px;
-    -webkit-border-bottom-left-radius: 5px;
-    -moz-border-radius-bottomleft: 5px;
-}
-
-td.DevName {
-    padding: 4px 8px 4px 8px;
-    color: #333333;
-    background-color: #eee;
-    width: 1%;
-    text-align: left;
-}
-
-td.DevStatus {
-    padding: 4px 4px 4px 4px;
-    color: #333333;
-    background-color: #eee;
-}
-
-td.DevSlave {
-    padding: 4px 4px 4px 4px;
-    color: #333333;
-    background-color: #eee;
-}
-
-td.first {
-    border-top-left-radius: 5px;
-    -webkit-border-top-left-radius: 5px;
-    -moz-border-radius-topleft: 5px;
-}
-
-td.last {
-    border-top-right-radius: 5px;
-    -webkit-border-top-right-radius: 5px;
-    -moz-border-radius-topright: 5px;
-}
-
-td.DevStatusCategory {
-    border-radius: 5px;
-    -webkit-border-radius: 5px;
-    -moz-border-radius: 5px;
-    border-width: 1px;
-    border-style: solid;
-}
-
-td.DevStatusCollapse {
-    border-bottom-right-radius: 5px;
-    -webkit-border-bottom-right-radius: 5px;
-    -moz-border-radius-bottomright: 5px;
-}
-
-td.DevDetails {
-    font-weight: normal;
-    padding: 8px 8px 8px 8px;
-    color: #333333;
-    background-color: #eee;
-    text-align: left;
-}
-
-td.DevComment {
-    font-weight: normal;
-    padding: 8px 8px 8px 8px;
-    color: #333333;
-    border-bottom-right-radius: 5px;
-    -webkit-border-bottom-right-radius: 5px;
-    -moz-border-radius-bottomright: 5px;
-    border-bottom-left-radius: 5px;
-    -webkit-border-bottom-left-radius: 5px;
-    -moz-border-radius-bottomleft: 5px;
-    background-color: #eee;
-    text-align: left;
-}
-
-td.Alt {
-    background-color: #ddd;
-}
-
-.legend {
-    border-radius: 5px;
-    -webkit-border-radius: 5px;
-    -moz-border-radius: 5px;
-    width: 100px;
-    max-width: 100px;
-    text-align: center;
-    padding: 2px 2px 2px 2px;
-    height: 14px;
-    white-space: nowrap;
-}
-
-.DevStatusBox {
-    text-align: center;
-    height: 20px;
-    padding: 0 2px;
-    line-height: 0;
-    white-space: nowrap;
-}
-
-.DevStatusBox a {
-    opacity: 0.85;
-    border-width: 1px;
-    border-style: solid;
-    border-radius: 4px;
-    -webkit-border-radius: 4px;
-    -moz-border-radius: 4px;
-    display: block;
-    width: 90%;
-    height: 20px;
-    line-height: 20px;
-    margin-left: auto;
-    margin-right: auto;
-}
-
-.DevSlaveBox {
-    text-align: center;
-    height: 10px;
-    padding: 0 2px;
-    line-height: 0;
-    white-space: nowrap;
-}
-
-.DevSlaveBox a {
-    opacity: 0.85;
-    border-width: 1px;
-    border-style: solid;
-    border-radius: 4px;
-    -webkit-border-radius: 4px;
-    -moz-border-radius: 4px;
-    display: block;
-    width: 90%;
-    height: 10px;
-    line-height: 20px;
-    margin-left: auto;
-    margin-right: auto;
-}
-
-a.noround {
-    border-radius: 0px;
-    -webkit-border-radius: 0px;
-    -moz-border-radius: 0px;
-    position: relative;
-    margin-top: -8px;
-    margin-bottom: -8px;
-    height: 36px;
-    border-top-width: 0;
-    border-bottom-width: 0;
-}
-
-a.begin {
-    border-top-width: 1px;
-    position: relative;
-    margin-top: 0px;
-    margin-bottom: -7px;
-    height: 27px;
-    border-top-left-radius: 4px;
-    -webkit-border-top-left-radius: 4px;
-    -moz-border-radius-topleft: 4px;
-    border-top-right-radius: 4px;
-    -webkit-border-top-right-radius: 4px;
-    -moz-border-radius-topright: 4px;
-}
-
-a.end {
-    border-bottom-width: 1px;
-    position: relative;
-    margin-top: -7px;
-    margin-bottom: 0px;
-    height: 27px;
-    border-bottom-left-radius: 4px;
-    -webkit-border-bottom-left-radius: 4px;
-    -moz-border-radius-bottomleft: 4px;
-    border-bottom-right-radius: 4px;
-    -webkit-border-bottom-right-radius: 4px;
-    -moz-border-radius-bottomright: 4px;
-}
-
-.center_align {
-    text-align: center;
-}
-
-.right_align {
-    text-align: right;
-}
-
-.left_align {
-    text-align: left;
-}
-
-div.BuildWaterfall {
-    border-radius: 7px;
-    -webkit-border-radius: 7px;
-    -moz-border-radius: 7px;
-    position: absolute;
-    left: 0px;
-    top: 0px;
-    background-color: #FFFFFF;
-    padding: 4px 4px 4px 4px;
-    float: left;
-    display: none;
-    border-width: 1px;
-    border-style: solid;
-}
-
-/* LastBuild, BuildStep states */
-.success {
-    color: #FFFFFF;
-    background-color: #8FDF5F;
-    border-color: #4F8530;
-}
-
-.failure {
-    color: #FFFFFF;
-    background-color: #E98080;
-    border-color: #A77272;
-}
-
-.warnings {
-    color: #FFFFFF;
-    background-color: #FFC343;
-    border-color: #C29D46;
-}
-
-.exception {
-    color: #FFFFFF;
-    background-color: #E0B0FF;
-    border-color: #ACA0B3;
-}
-
-.start,.running,td.building {
-    color: #666666;
-    background-color: #FFFC6C;
-    border-color: #C5C56D;
-}
-
-.offline,td.offline {
-    color: #FFFFFF;
-    background-color: #E0B0FF;
-    border-color: #dddddd;
-}
-
-
-.start {
-    border-bottom-left-radius: 10px;
-    -webkit-border-bottom-left-radius: 10px;
-    -moz-border-radius-bottomleft: 10px;
-    border-bottom-right-radius: 10px;
-    -webkit-border-bottom-right-radius: 10px;
-    -moz-border-radius-bottomright: 10px;
-}
-
-.notstarted {
-    border-width: 1px;
-    border-style: solid;
-    border-color: #aaa;
-    background-color: #fff;
-}
-
-.closed {
-    background-color: #ff0000;
-}
-
-.closed .large {
-    font-size: 1.5em;
-    font-weight: bolder;
-}
-
-td.Project a:hover,td.start a:hover {
-    color: #000;
-}
-
-.mini-box {
-    text-align: center;
-    height: 20px;
-    padding: 0 2px;
-    line-height: 0;
-    white-space: nowrap;
-}
-
-.mini-box a {
-    border-radius: 0;
-    -webkit-border-radius: 0;
-    -moz-border-radius: 0;
-    display: block;
-    width: 100%;
-    height: 20px;
-    line-height: 20px;
-    margin-top: -30px;
-}
-
-.mini-closed {
-    -box-sizing: border-box;
-    -webkit-box-sizing: border-box;
-    border: 4px solid red;
-}
-
-/* grid styles */
-table.Grid {
-    border-collapse: collapse;
-}
-
-table.Grid tr td {
-    padding: 0.2em;
-    margin: 0px;
-    text-align: center;
-}
-
-table.Grid tr td.title {
-    font-size: 90%;
-    border-right: 1px gray solid;
-    border-bottom: 1px gray solid;
-}
-
-table.Grid tr td.sourcestamp {
-    font-size: 90%;
-}
-
-table.Grid tr td.builder {
-    text-align: right;
-    font-size: 90%;
-}
-
-table.Grid tr td.build {
-    border: 1px gray solid;
-}
-
-/* column container */
-div.column {
-    margin: 0 2em 2em 0;
-    float: left;
-}
-
-/* info tables */
-table.info {
-    border-spacing: 1px;
-}
-
-table.info td {
-    padding: 0.1em 1em 0.1em 1em;
-    text-align: center;
-}
-
-table.info th {
-    padding: 0.2em 1.5em 0.2em 1.5em;
-    text-align: center;
-}
-
-table.info td.left {
-    text-align: left
-}
-
-.alt {
-    background-color: #d6d6d6;
-}
-
-li {
-    padding: 0.1em 1em 0.1em 1em;
-}
-
-.result {
-    padding: 0.3em 1em 0.3em 1em;
-}
-
-/* log view */
-.log * {
-    vlink: #800080;
-    font-family: "Courier New", courier, monotype;
-}
-
-span.stdout {
-    color: black;
-}
-
-span.stderr {
-    color: red;
-}
-
-span.header {
-    color: blue;
-}
-
-/* revision & email */
-.revision .full {
-    display: none;
-}
-
-.user .email {
-    display: none;
-}
-
-/* change comments (use regular colors here) */
-pre.comments>a:link,pre.comments>a:visited {
-    color: blue;
-}
-
-pre.comments>a:active {
-    color: purple;
-}
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/robots.txt b/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/robots.txt
deleted file mode 100644
index 579297c..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/robots.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-User-agent: *
-Disallow: /waterfall
-Disallow: /builders
-Disallow: /changes
-Disallow: /buildslaves
-Disallow: /schedulers
-Disallow: /one_line_per_build
-Disallow: /one_box_per_builder
-Disallow: /xmlrpc
-Disallow: /grid
-Disallow: /tgrid
-Disallow: /console
-Disallow: /results
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/templates/builder.html b/Tools/BuildSlaveSupport/build.webkit.org-config/templates/builder.html
deleted file mode 100644
index f8cf4b8..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/templates/builder.html
+++ /dev/null
@@ -1,118 +0,0 @@
-{% from 'build_line.html' import build_table %}
-{% import 'forms.html' as forms %}
-
-{% extends "layout.html" %}
-{% block content %}
-
-<h1>Builder {{ name }}</h1>
-
-<p>(<a href="{{ path_to_root }}waterfall?show={{ name }}">view in waterfall</a>)</p>
-
-<div class="column">
-
-{% if current %}
-  <h2>Current Builds:</h2>
-  <ul>
-  {% for b in current %}
-    <li><a href="{{ b.link }}">{{ b.num }}</a>
-    {% if b.when %}
-      ETA: {{ b.when_time }} [{{ b.when }}]
-    {% endif %}
-
-    {{ b.current_step }}
-
-    {% if authz.advertiseAction('stopBuild', request) %}
-      {{ forms.stop_build(b.stop_url, authz, on_all=False, short=True, label='Build') }}
-    {% endif %}
-    </li>
-  {% endfor %}
-  </ul>
-{% else %}
-  <h2>No current builds</h2>
-{% endif %}
-
-{% if pending %}
-  <h2>Pending Build Requests:</h2>
-  <ul>
-  {% for b in pending %}
-    <li><small>({{ b.when }}, waiting {{ b.delay }})</small>
-
-    {% if authz.advertiseAction('cancelPendingBuild', request) %}
-      {{ forms.cancel_pending_build(builder_url+"/cancelbuild", authz, short=True, id=b.id) }}
-    {% endif %}
-
-    {% if b.num_changes < 4 %}
-        {% for c in b.changes %}{{ c.revision|shortrev(c.repo) }}
-        (<a href="{{ c.url }}">{{ c.who }}</a>){% if not loop.last %},{% endif %}
-        {% endfor %}
-    {% else %}
-        ({{ b.num_changes }} changes)
-    {% endif %}
-
-      {% if 'owner' in b.properties %}
-        <b>Forced build</b>
-        by {{b.properties['owner'][0]}}
-        <small>{{b.properties['reason'][0]}}</small>
-      {% endif %}
-    </li>
-  {% endfor %}
-  </ul>
-
-  {% if authz.advertiseAction('cancelPendingBuild', request) %}
-    {{ forms.cancel_pending_build(builder_url+"/cancelbuild", authz, short=False, id='all') }}
-  {% endif %}
-
-{% else %}
-  <h2>No Pending Build Requests</h2>
-{% endif %}
-
-<h2>Recent Builds:</h2>
-
-{{ build_table(recent) }}
-( Show: <a href="{{ builder_url }}">default</a>
-{% for count in [25, 50, 100, 200] %}
-<a href="{{ builder_url }}?numbuilds={{ count }}">{{ count }}</a>
-{% endfor %})
-
-</div>
-<div class="column">
-
-<h2>Buildslaves:</h2>
-<table class="info">
-{% if slaves %}
-<tr>
-  <th>Name</th>
-  <th>Status</th>
-  <th>Admin</th>
-</tr>
-{% endif %}
-{% for s in slaves %}
-  <tr class="{{ loop.cycle('alt', '') }}">
-  <td><b><a href="{{ s.link|e }}">{{ s.name|e }}</a></b></td>
-  {% if s.connected %}
-    <td class="idle">connected</td>
-    <td>{{ s.admin|email if s.admin else ""}}</td>
-  {% else %}
-    <td class="offline">offline</td>
-    <td/>
-  {% endif %}
-  </tr>
-{% else %}
-  <td>no slaves attached</td>
-{% endfor %}
-</table>
-
-{% if authz.advertiseAction('pingBuilder', request) %}
-  <h2>Ping slaves</h2>
-  {{ forms.ping_builder(builder_url+"/ping", authz) }}
-{% endif %}
-
-{% if authz.advertiseAction('forceBuild', request) and force_schedulers != {} %}
-  <h2>Force build</h2>
-  {{ forms.force_build(builder_url+"/force", authz, request, False, force_schedulers=force_schedulers,default_props=default_props) }}
-{% endif %}
-
-</div>
-
-{% endblock %}
-
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/templates/root.html b/Tools/BuildSlaveSupport/build.webkit.org-config/templates/root.html
deleted file mode 100755
index eafdaa6..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/templates/root.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<title>Welcome to the Buildbot</title>
-</head>
-
-<body>
-<h1>Welcome to the Buildbot!</h1>
-
-<ul>
-  <li><a href="console">Console</a> - <a href="console?category=AppleMac">Apple Mac</a>, <a href="console?category=AppleWin">Apple Windows</a>,
-  <a href="console?category=GTK">GTK+</a>, <a href="console?category=Qt">Qt</a>, <a href="console?category=Chromium">Chromium</a>, <a href="console?category=EFL">EFL</a>
-  and <a href="console?category=misc">miscellaneous</a></li>
-  <li><a href="waterfall">Waterfall Display</a>, a time-oriented summary of recent buildbot activity
-  - <a href="waterfall?category=AppleMac">Apple Mac</a>, <a href="waterfall?category=AppleWin">Apple Windows</a>,
-  <a href="waterfall?category=GTK">GTK+</a>, <a href="waterfall?category=Qt">Qt</a>, <a href="waterfall?category=Chromium">Chromium</a>, <a href="waterfall?category=EFL">EFL</a>
-  and <a href="waterfall?category=misc">miscellaneous</a></li>
-  <li><a href="one_box_per_builder">Latest Build</a> for each builder is here.</li>
-  <li><a href="one_line_per_build">Recent Builds</a> are summarized here, one per line.</li>
-  <li><a href="buildslaves">Buildslave</a> information</li>
-  <li><a href="http://webkit-commit-queue.appspot.com/">Commit Queue Status</a> information.</li>
-  <li><a href="changes">ChangeSource</a> information.</li>
-  <li><a href="results">Test Results</a></li>
-  <li><a href="LeaksViewer">Leaks Viewer</a></li>
-  <li><a href="TestFailures">Test Failures</a></li>
-  <li><a href="http://perf.webkit.org/">WebKit Perf Monitor</a> results submitted by <a href="http://build.webkit.org/waterfall?show=Apple%20Lion%20Release%20%28Perf%29&show=Apple%20MountainLion%20Release%20%28Perf%29&show=Chromium%20Android%20Release%20%28Perf%29&show=Chromium%20Linux%20Release%20%28Perf%29&show=Chromium%20Mac%20Release%20%28Perf%29&show=Chromium%20Win%20Release%20%28Perf%29&show=Qt%20Linux%2064-bit%20Release%20%28Perf%29&show=Qt%20Linux%2064-bit%20Release%20%28WebKit2%20Perf%29&show=EFL%20Linux%2064-bit%20Release%20WK2%20%28Perf%29">performance bots</a></li>
-</ul>
-</body>
-</html>
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/wkbuild.py b/Tools/BuildSlaveSupport/build.webkit.org-config/wkbuild.py
deleted file mode 100644
index 52bc467..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/wkbuild.py
+++ /dev/null
@@ -1,135 +0,0 @@
-# Copyright (C) 2010 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer.
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND
-# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR
-# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
-# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
-# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-"""Functions relating to building WebKit"""
-
-import re
-
-
-def _should_file_trigger_build(target_platform, file):
-    # The directories and patterns lists below map directory names or
-    # regexp patterns to the bot platforms for which they should trigger a
-    # build. Mapping to the empty list means that no builds should be
-    # triggered on any platforms. Earlier directories/patterns take
-    # precendence over later ones.
-
-    # FIXME: The patterns below have only been verified to be correct on
-    # the platforms listed below. We should implement this for other platforms
-    # and start using it for their bots. Someone familiar with each platform
-    # will have to figure out what the right set of directories/patterns is for
-    # that platform.
-    assert(target_platform in ("mac-leopard", "mac-lion", "mac-mountainlion", "mac-snowleopard", "win"))
-
-    directories = [
-        # Directories that shouldn't trigger builds on any bots.
-        ("Examples", []),
-        ("PerformanceTests", []),
-        ("ManualTests", []),
-        ("Tools/BuildSlaveSupport/build.webkit.org-config/public_html", []),
-        ("Websites", []),
-        ("efl", []),
-        ("iphone", []),
-        ("opengl", []),
-        ("opentype", []),
-        ("openvg", []),
-        ("wince", []),
-        ("wx", []),
-
-        # Directories that should trigger builds on only some bots.
-        ("Source/WebCore/image-decoders", ["chromium"]),
-        ("LayoutTests/platform/mac", ["mac", "win"]),
-        ("cairo", ["gtk", "wincairo"]),
-        ("cf", ["chromium-mac", "mac", "qt", "win"]),
-        ("chromium", ["chromium"]),
-        ("cocoa", ["chromium-mac", "mac"]),
-        ("curl", ["gtk", "wincairo"]),
-        ("gobject", ["gtk"]),
-        ("gpu", ["chromium", "mac"]),
-        ("gstreamer", ["gtk"]),
-        ("gtk", ["gtk"]),
-        ("mac", ["chromium-mac", "mac"]),
-        ("mac-leopard", ["mac-leopard"]),
-        ("mac-lion", ["mac-leopard", "mac-lion", "mac-snowleopard", "win"]),
-        ("mac-snowleopard", ["mac-leopard", "mac-snowleopard"]),
-        ("mac-wk2", ["mac-lion", "mac-snowleopard", "mac-mountainlion", "win"]),
-        ("objc", ["mac"]),
-        ("qt", ["qt"]),
-        ("skia", ["chromium"]),
-        ("soup", ["gtk"]),
-        ("v8", ["chromium"]),
-        ("win", ["chromium-win", "win"]),
-    ]
-    patterns = [
-        # Patterns that shouldn't trigger builds on any bots.
-        (r"(?:^|/)ChangeLog.*$", []),
-        (r"(?:^|/)Makefile$", []),
-        (r"/ARM", []),
-        (r"/CMake.*", []),
-        (r"/LICENSE[^/]+$", []),
-        (r"ARM(?:v7)?\.(?:cpp|h)$", []),
-        (r"MIPS\.(?:cpp|h)$", []),
-        (r"WinCE\.(?:cpp|h|mm)$", []),
-        (r"\.(?:bkl|mk)$", []),
-
-        # Patterns that should trigger builds on only some bots.
-        (r"(?:^|/)GNUmakefile\.am$", ["gtk"]),
-        (r"/\w+Chromium\w*\.(?:cpp|h|mm)$", ["chromium"]),
-        (r"Mac\.(?:cpp|h|mm)$", ["mac"]),
-        (r"\.(?:vcproj|vsprops|sln|vcxproj|props|filters)$", ["win"]),
-        (r"\.exp(?:\.in)?$", ["mac"]),
-        (r"\.gypi?", ["chromium"]),
-        (r"\.order$", ["mac"]),
-        (r"\.pr[io]$", ["qt"]),
-        (r"\.(?:vcproj|vcxproj)/", ["win"]),
-        (r"\.xcconfig$", ["mac"]),
-        (r"\.xcodeproj/", ["mac"]),
-    ]
-
-    base_platform = target_platform.split("-")[0]
-
-    # See if the file is in one of the known directories.
-    for directory, platforms in directories:
-        if re.search(r"(?:^|/)%s/" % directory, file):
-            return target_platform in platforms or base_platform in platforms
-
-    # See if the file matches a known pattern.
-    for pattern, platforms in patterns:
-        if re.search(pattern, file):
-            return target_platform in platforms or base_platform in platforms
-
-    # See if the file is a platform-specific test result.
-    match = re.match("LayoutTests/platform/(?P<platform>[^/]+)/", file)
-    if match:
-        # See if the file is a test result for this platform, our base
-        # platform, or one of our sub-platforms.
-        return match.group("platform") in (target_platform, base_platform) or match.group("platform").startswith("%s-" % target_platform)
-
-    # The file isn't one we know about specifically, so we should assume we
-    # have to build.
-    return True
-
-
-def should_build(target_platform, changed_files):
-    """Returns true if the changed files affect the given platform, and
-    thus a build should be performed. target_platform should be one of the
-    platforms used in the build.webkit.org master's config.json file."""
-    return any(_should_file_trigger_build(target_platform, file) for file in changed_files)
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/wkbuild_unittest.py b/Tools/BuildSlaveSupport/build.webkit.org-config/wkbuild_unittest.py
deleted file mode 100644
index 5b4556a..0000000
--- a/Tools/BuildSlaveSupport/build.webkit.org-config/wkbuild_unittest.py
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright (C) 2010 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer.
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND
-# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR
-# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
-# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
-# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import unittest2 as unittest
-
-import wkbuild
-
-
-class ShouldBuildTest(unittest.TestCase):
-    _should_build_tests = [
-        (["ChangeLog", "Source/WebCore/ChangeLog", "Source/WebKit2/ChangeLog-2011-02-11"], []),
-        (["GNUmakefile.am", "Source/WebCore/GNUmakefile.am"], ["gtk"]),
-        (["Websites/bugs.webkit.org/foo", "Source/WebCore/bar"], ["*"]),
-        (["Websites/bugs.webkit.org/foo"], []),
-        (["Source/JavaScriptCore/JavaScriptCore.xcodeproj/foo"], ["mac-leopard", "mac-lion",  "mac-mountainlion", "mac-snowleopard"]),
-        (["Source/JavaScriptCore/JavaScriptCore.vcproj/foo", "Source/WebKit2/win/WebKit2.vcproj", "Source/WebKit/win/WebKit.sln", "Tools/WebKitTestRunner/Configurations/WebKitTestRunnerCommon.vsprops"], ["win"]),
-        (["LayoutTests/platform/mac/foo", "Source/WebCore/bar"], ["*"]),
-        (["LayoutTests/foo"], ["*"]),
-        (["LayoutTests/canvas/philip/tests/size.attributes.parse.exp-expected.txt", "LayoutTests/canvas/philip/tests/size.attributes.parse.exp.html"], ["*"]),
-        (["LayoutTests/platform/chromium-linux/foo"], ["chromium-linux"]),
-        (["LayoutTests/platform/chromium-win/fast/compact/001-expected.txt"], ["chromium-win"]),
-        (["LayoutTests/platform/mac-leopard/foo"], ["mac-leopard"]),
-        (["LayoutTests/platform/mac-lion/foo"], ["mac-leopard", "mac-lion", "mac-snowleopard", "win"]),
-        (["LayoutTests/platform/mac-snowleopard/foo"], ["mac-leopard", "mac-snowleopard"]),
-        (["LayoutTests/platform/mac-wk2/Skipped"], ["mac-lion",  "mac-mountainlion", "mac-snowleopard", "win"]),
-        (["LayoutTests/platform/mac/foo"], ["mac-leopard", "mac-lion", "mac-mountainlion", "mac-snowleopard", "win"]),
-        (["LayoutTests/platform/win-xp/foo"], ["win"]),
-        (["LayoutTests/platform/win-wk2/foo"], ["win"]),
-        (["LayoutTests/platform/win/foo"], ["win"]),
-        (["Source/WebCore.exp.in", "Source/WebKit/mac/WebKit.exp"], ["mac-leopard", "mac-lion",  "mac-mountainlion", "mac-snowleopard"]),
-        (["Source/WebCore/mac/foo"], ["chromium-mac", "mac-leopard", "mac-lion",  "mac-mountainlion", "mac-snowleopard"]),
-        (["Source/WebCore/win/foo"], ["chromium-win", "win"]),
-        (["Source/WebCore/platform/graphics/gpu/foo"], ["mac-leopard", "mac-lion",  "mac-mountainlion", "mac-snowleopard"]),
-        (["Source/WebCore/platform/wx/wxcode/win/foo"], []),
-        (["Source/WebCore/rendering/RenderThemeMac.mm", "Source/WebCore/rendering/RenderThemeMac.h"], ["mac-leopard", "mac-lion",  "mac-mountainlion", "mac-snowleopard"]),
-        (["Source/WebCore/rendering/RenderThemeChromiumDefault.h"], ["chromium-linux"]),
-        (["Source/WebCore/rendering/RenderThemeWinCE.h"], []),
-        (["Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksViewer.js"], []),
-    ]
-
-    def test_should_build(self):
-        for files, platforms in self._should_build_tests:
-            # FIXME: We should test more platforms here once
-            # wkbuild._should_file_trigger_build is implemented for them.
-            for platform in ["mac-leopard", "mac-lion",  "mac-mountainlion", "mac-snowleopard", "win"]:
-                should_build = platform in platforms or "*" in platforms
-                self.assertEqual(wkbuild.should_build(platform, files), should_build, "%s should%s have built but did%s (files: %s)" % (platform, "" if should_build else "n't", "n't" if should_build else "", str(files)))
-
-# FIXME: We should run this file as part of test-rm .
-# Unfortunately test-rm  currently requires that unittests
-# be located in a directory with a valid module name.
-# 'build.webkit.org-config' is not a valid module name (due to '.' and '-')
-# so for now this is a stand-alone test harness.
-if __name__ == '__main__':
-    unittest.main()
diff --git a/Tools/BuildSlaveSupport/built-product-archive b/Tools/BuildSlaveSupport/built-product-archive
deleted file mode 100644
index ba74fd7..0000000
--- a/Tools/BuildSlaveSupport/built-product-archive
+++ /dev/null
@@ -1,232 +0,0 @@
-#!/usr/bin/python
-
-# Copyright (C) 2009 Apple Inc.  All rights reserved.
-# Copyright (C) 2012 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import optparse
-import os
-import shutil
-import subprocess
-import sys
-import zipfile
-
-_buildDirectory = None
-
-
-def main():
-    parser = optparse.OptionParser("usage: %prog [options] [action]")
-    parser.add_option("--platform", dest="platform")
-    parser.add_option("--debug", action="store_const", const="debug", dest="configuration")
-    parser.add_option("--release", action="store_const", const="release", dest="configuration")
-
-    options, (action, ) = parser.parse_args()
-    if not options.platform:
-        parser.error("Platform is required")
-        return 1
-    if not options.configuration:
-        parser.error("Configuration is required")
-        return 1
-    if action not in ('archive', 'extract'):
-        parser.error("Action is required")
-        return 1
-
-    genericPlatform = options.platform.split('-', 1)[0]
-    if not determineWebKitBuildDirectory(genericPlatform, options.configuration):
-        print >> sys.stderr, "Could not determine build directory"
-        return 1
-
-    if action == 'archive':
-        return archiveBuiltProduct(options.configuration, genericPlatform, options.platform)
-    else:
-        return extractBuiltProduct(options.configuration, genericPlatform)
-
-
-def determineWebKitBuildDirectory(platform, configuration):
-    global _buildDirectory
-    _buildDirectory = subprocess.Popen(['perl', os.path.join(os.path.dirname(__file__), "..", "Scripts", "webkit-build-directory"),
-        "--" + platform, "--" + configuration, '--top-level'], stdout=subprocess.PIPE).communicate()[0].strip()
-    return _buildDirectory
-
-
-def removeDirectoryIfExists(thinDirectory):
-    if os.path.isdir(thinDirectory):
-        shutil.rmtree(thinDirectory)
-
-
-def copyBuildFiles(source, destination, patterns):
-    shutil.copytree(source, destination, ignore=shutil.ignore_patterns(*patterns))
-
-
-def createZipManually(directoryToZip, archiveFile):
-    archiveZip = zipfile.ZipFile(archiveFile, "w")
-
-    for path, dirNames, fileNames in os.walk(directoryToZip):
-        relativePath = os.path.relpath(path, directoryToZip)
-        for fileName in fileNames:
-            archiveZip.write(os.path.join(path, fileName), os.path.join(relativePath, fileName))
-
-    archiveZip.close()
-
-
-def createZip(directoryToZip, configuration, archiveConfigurationOnMac=False):
-    archiveDir = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..", "WebKitBuild"))
-
-    # Chromium bots may not have this directory
-    if not os.path.isdir(archiveDir):
-        os.mkdir(archiveDir)
-
-    archiveFile = os.path.join(archiveDir, configuration + ".zip")
-
-    try:
-        os.unlink(archiveFile)
-    except OSError, e:
-        if e.errno != 2:
-            raise
-
-    if sys.platform == 'darwin':
-        if archiveConfigurationOnMac:
-            return subprocess.call(["ditto", "-c", "-k", "--keepParent", "--sequesterRsrc", directoryToZip, archiveFile])
-        return subprocess.call(["ditto", "-c", "-k", "--sequesterRsrc", directoryToZip, archiveFile])
-    elif sys.platform == 'cygwin':
-        return subprocess.call(["zip", "-r", archiveFile, "bin"], cwd=directoryToZip)
-    elif sys.platform == 'win32':
-        createZipManually(directoryToZip, archiveFile)
-        return 0
-    elif sys.platform.startswith('linux'):
-        return subprocess.call(["zip", "-y", "-r", archiveFile, "."], cwd=directoryToZip)
-
-
-def archiveBuiltProduct(configuration, platform, fullPlatform):
-    assert platform in ('mac', 'win', 'qt', 'gtk', 'efl', 'chromium')
-
-    configurationBuildDirectory = os.path.join(_buildDirectory, configuration.title())
-
-    if platform == 'mac':
-        return createZip(configurationBuildDirectory, configuration, archiveConfigurationOnMac=True)
-    elif platform == 'win':
-        binDirectory = os.path.join(configurationBuildDirectory, "bin")
-        thinDirectory = os.path.join(configurationBuildDirectory, "thin")
-        thinBinDirectory = os.path.join(thinDirectory, "bin")
-
-        removeDirectoryIfExists(thinDirectory)
-        copyBuildFiles(binDirectory, thinBinDirectory, ['*.ilk'])
-        if createZip(thinDirectory, configuration):
-            return 1
-
-        shutil.rmtree(thinDirectory)
-
-    elif platform == 'qt' or platform == 'gtk' or platform == 'efl':
-        thinDirectory = os.path.join(configurationBuildDirectory, "thin")
-
-        removeDirectoryIfExists(thinDirectory)
-        os.mkdir(thinDirectory)
-
-        if platform == 'qt' or platform == 'efl':
-            neededDirectories = ["bin", "lib"]
-        elif platform == 'gtk':
-            neededDirectories = ["Programs", ".libs", "Libraries", "TestNetscapePlugin"]
-
-        for dirname in neededDirectories:
-            fromDir = os.path.join(configurationBuildDirectory, dirname, ".")
-            toDir = os.path.join(thinDirectory, dirname)
-            os.makedirs(toDir)
-            if subprocess.call('cp -R %s %s' % (fromDir, toDir), shell=True):
-                return 1
-
-        for root, dirs, files in os.walk(thinDirectory, topdown=False):
-            for name in files:
-                if name.endswith(".o"):
-                    os.remove(os.path.join(root, name))
-
-        if createZip(thinDirectory, configuration):
-            return 1
-
-    elif platform == 'chromium':
-        print "Archiving", configurationBuildDirectory
-        thinDirectory = os.path.join(configurationBuildDirectory, "thin")
-
-        # The scripts use the existence of out/Release/build.ninja to decide
-        # if this is a ninja build, so don't exclude build.ninja from the
-        # archive.
-        ignorePatterns = ['.svn', '*.a', '*.d', '*.dSYM', '*.o', '*.ilk', '*.lib', '*.idb',
-                          'BuildLog.htm', '*.obj', '*.pdb', '*.pch', '*.tlog', '*.lastbuildstate',
-                          '*.h', '*.c', '*.cc', '*.cpp', '*.stamp']
-
-        if fullPlatform and fullPlatform == 'chromium-android':
-            ignorePatterns.extend(['*.so', '*-unaligned.apk', '*-unsigned.apk'])
-
-        removeDirectoryIfExists(thinDirectory)
-        copyBuildFiles(configurationBuildDirectory, thinDirectory, ignorePatterns)
-        if createZip(thinDirectory, configuration):
-            return 1
-
-
-def unzipArchive(directoryToExtractTo, configuration):
-    archiveDir = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..", "WebKitBuild"))
-    assert os.path.isdir(archiveDir)
-    archiveFile = os.path.join(archiveDir, configuration + ".zip")
-
-    if sys.platform == 'darwin':
-        if subprocess.call(["ditto", "-x", "-k", archiveFile, directoryToExtractTo]):
-            return 1
-    elif sys.platform == 'cygwin' or sys.platform.startswith('linux'):
-        if subprocess.call(["unzip", "-o", archiveFile], cwd=directoryToExtractTo):
-            return 1
-    elif sys.platform == 'win32':
-        archive = zipfile.ZipFile(archiveFile, "r")
-        archive.extractall(directoryToExtractTo)
-        archive.close()
-
-    os.unlink(archiveFile)
-
-
-def extractBuiltProduct(configuration, platform):
-    assert platform in ('mac', 'win', 'qt', 'gtk', 'efl', 'chromium')
-
-    archiveFile = os.path.join(_buildDirectory, configuration + ".zip")
-    configurationBuildDirectory = os.path.join(_buildDirectory, configuration.title())
-
-    removeDirectoryIfExists(configurationBuildDirectory)
-    os.makedirs(configurationBuildDirectory)
-
-    if platform == 'mac':
-        return unzipArchive(_buildDirectory, configuration)
-    elif platform == 'win':
-        binDirectory = os.path.join(configurationBuildDirectory, "bin")
-        os.makedirs(binDirectory)
-
-        safariPath = subprocess.Popen('cygpath -w "$PROGRAMFILES"/Safari',
-                                      shell=True, stdout=subprocess.PIPE).communicate()[0].strip()
-
-        if subprocess.call('cp -R "%s"/*.dll "%s"/*.resources %s' % (safariPath, safariPath, binDirectory), shell=True):
-            return 1
-
-        return unzipArchive(configurationBuildDirectory, configuration)
-    elif platform == 'qt' or platform == 'gtk' or platform == 'efl' or platform == 'chromium':
-        print "Extracting", configurationBuildDirectory
-        return unzipArchive(configurationBuildDirectory, configuration)
-
-
-if __name__ == '__main__':
-    sys.exit(main())
diff --git a/Tools/BuildSlaveSupport/chromium/output-android-device-status b/Tools/BuildSlaveSupport/chromium/output-android-device-status
deleted file mode 100755
index d716c02..0000000
--- a/Tools/BuildSlaveSupport/chromium/output-android-device-status
+++ /dev/null
@@ -1,81 +0,0 @@
-#!/usr/bin/env python
-# Copyright (C) 2012 Google Inc. All Rights Reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
-# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import re
-import subprocess
-import sys
-
-def GetAttachedDevices():
-    re_device = re.compile('^([a-zA-Z0-9_:.-]+)\tdevice$', re.MULTILINE)
-    process = subprocess.Popen(['adb', 'devices'], stdout=subprocess.PIPE)
-    return re_device.findall(process.communicate()[0])
-
-
-class AndroidDeviceStatus(object):
-    def __init__(self, device_serial):
-        self._device_serial = device_serial
-
-    def _run_adb_command(self, command):
-        full_command = ['adb', '-s', self._device_serial] + command
-        stdout, _ = subprocess.Popen(full_command, stdout=subprocess.PIPE).communicate()
-        return stdout.strip()
-
-    def device_type(self):
-        return self._run_adb_command(['shell', 'getprop', 'ro.build.product'])
-
-    def device_build(self):
-        return self._run_adb_command(['shell', 'getprop', 'ro.build.id'])
-
-    def device_fingerprint(self):
-        return self._run_adb_command(['shell', 'getprop', 'ro.build.fingerprint'])
-
-    def battery_level(self):
-        return self._run_adb_command(['shell', 'cat', '/sys/class/power_supply/battery/capacity'])
-
-    def battery_temperature(self):
-        temperature = self._run_adb_command(['shell', 'dumpsys', 'battery'])
-        re_temperature = re.compile('temperature:\s+(\d+)')
-        return re_temperature.findall(temperature)[0]
-
-    def username(self):
-        username = self._run_adb_command(['shell', 'id'])
-        re_username = re.compile('uid=\d+\((.+?)\)')
-        return re_username.findall(username)[0]
-
-
-def main():
-    devices = GetAttachedDevices()
-    for device_serial in devices:
-        device_status = AndroidDeviceStatus(device_serial)
-
-        print 'Device %s (%s)' % (device_serial, device_status.device_type())
-        print '  Build: %s (%s)' % (device_status.device_build(), device_status.device_fingerprint())
-        print '  Battery: %s%%' % device_status.battery_level()
-        print '  Battery temp: %s' % device_status.battery_temperature()
-        print '  Username: %s' % device_status.username()
-        print ''
-
-
-if __name__ == '__main__':
-    sys.exit(main())
diff --git a/Tools/BuildSlaveSupport/chromium/remove-crash-logs b/Tools/BuildSlaveSupport/chromium/remove-crash-logs
deleted file mode 100755
index 4f999c4..0000000
--- a/Tools/BuildSlaveSupport/chromium/remove-crash-logs
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/usr/bin/env python
-# Copyright (c) 2011 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import os
-import sys
-
-if __name__ == '__main__':
-    if sys.platform == 'linux2':
-        os.system('rm -rf /tmp/.org.chromium.*')
-    elif sys.platform == 'darwin':
-        import Foundation
-        os.system('rm -rf %s' % os.path.join(Foundation.NSTemporaryDirectory(),
-                                             '.org.chromium.*'))
-    elif 'win' in sys.platform:
-        os.system('for /d %d in (%TEMP%\scoped_dir*) do rd /s /q "%d"')
diff --git a/Tools/BuildSlaveSupport/delete-stale-build-files b/Tools/BuildSlaveSupport/delete-stale-build-files
deleted file mode 100755
index 8933d3b..0000000
--- a/Tools/BuildSlaveSupport/delete-stale-build-files
+++ /dev/null
@@ -1,87 +0,0 @@
-#!/usr/bin/python
-# Copyright (C) 2013 Apple Inc.  All rights reserved.
-# Copyright (C) 2012 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer.
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import optparse
-import os
-import subprocess
-import sys
-
-
-def main():
-    parser = optparse.OptionParser("usage: %prog [options]")
-    parser.add_option("--platform")
-    parser.add_option("--build-directory")
-    parser.add_option("--debug", action="store_const", const="debug", dest="configuration")
-    parser.add_option("--release", action="store_const", const="release", dest="configuration")
-
-    options, parameters = parser.parse_args()
-    if not options.platform:
-        parser.error("Platform is required")
-        return -1
-    if not options.configuration:
-        parser.error("Configuration is required")
-        return -2
-
-    genericPlatform = options.platform.split('-', 1)[0]
-    if genericPlatform != 'mac':
-        print 'Exited without removing any files.'
-        return 0
-
-    if options.build_directory:
-        buildDirectory = options.build_directory
-    else:
-        buildDirectory = webkitBuildDirectory(genericPlatform, options.configuration)
-
-    exit_code = 0
-
-    for root, _, files in os.walk(buildDirectory):
-        for name in files:
-            full_path = os.path.join(root, name)
-            ext = os.path.splitext(full_path)[1]
-
-            try:
-                if ext not in ('.o',) or os.path.getsize(full_path):
-                    continue
-            except OSError as exception:
-                print exception
-                continue
-
-            try:
-                os.remove(full_path)
-                print 'Removed', full_path
-            except OSError as exception:
-                print exception
-                exit_code += 1
-
-    return exit_code
-
-
-def webkitBuildDirectory(platform, configuration):
-    return subprocess.Popen(['perl', os.path.join(os.path.dirname(__file__), "..", "Scripts", "webkit-build-directory"),
-        "--" + platform, "--" + configuration, '--top-level'], stdout=subprocess.PIPE).communicate()[0].strip()
-
-
-if __name__ == '__main__':
-    sys.exit(main())
diff --git a/Tools/BuildSlaveSupport/download-built-product b/Tools/BuildSlaveSupport/download-built-product
deleted file mode 100644
index 4be30a1..0000000
--- a/Tools/BuildSlaveSupport/download-built-product
+++ /dev/null
@@ -1,56 +0,0 @@
-#!/usr/bin/python
-#
-# Copyright (C) 2009 Apple Inc.  All rights reserved.
-# Copyright (C) 2012 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
-import optparse
-import os
-import subprocess
-import sys
-import urllib
-
-
-def main():
-    parser = optparse.OptionParser("usage: %prog [options] [url]")
-    parser.add_option("--platform", dest="platform")
-    parser.add_option("--debug", action="store_const", const="debug", dest="configuration")
-    parser.add_option("--release", action="store_const", const="release", dest="configuration")
-
-    options, (url, ) = parser.parse_args()
-
-    archiveDir = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..", "WebKitBuild"))
-    if not os.path.isdir(archiveDir):
-        os.makedirs(archiveDir)
-    archivePath = os.path.join(archiveDir, "%s.zip" % options.configuration)
-
-    if sys.platform == 'win32':  # curl is not availble on Windows (outside of cygwin)
-        urllib.urlretrieve(url, archivePath)
-        return 0
-
-    return subprocess.call(["curl", "--fail", "--output", archivePath, url])
-
-
-if __name__ == '__main__':
-    sys.exit(main())
diff --git a/Tools/BuildSlaveSupport/gtk/README b/Tools/BuildSlaveSupport/gtk/README
deleted file mode 100644
index 16fa9e7..0000000
--- a/Tools/BuildSlaveSupport/gtk/README
+++ /dev/null
@@ -1,48 +0,0 @@
-==============================================
- Running a GTK+ build slave under daemontools
-==============================================
-
-This directory contains several scripts which can be used to run a WebKitGTK+
-build slave under daemontools [1]. This is convenient because daemontools
-will automatically restart services when they die, and that means less human
-intervention is needed.
-
-
-Dependencies
-============
-
-In order to use the provided service control files, you will need the
-following:
-
-* The GNU Bash shell (the scripts contain some bash-isms)
-
-* The daemontools package (or one of its drop-in replacements, like runit
-  or freedt; but only daemontools has been tested so far).
-
-In short, in a Debian-based system you can ensure you have the needed bits
-with the following command:
-
-  apt-get install daemontools-run
-
-
-Setup
-=====
-
-1. Follow the instructions at http://trac.webkit.org/wiki/BuildBot
-
-2. Install the dependencies outlined above.
-
-3. Copy "daemontools-buildbot.conf" to "/etc/daemontools-buildbot.conf"
-
-4. Edit the configuration file to suit your needs, the comments should
-   be self-explanatory.
-
-5. Drop the "buildbot" and "pulseaudio" directories to the service control directory of
-   daemontools; for Debian-based setups that would be "/etc/service"
-
-
-References
-==========
-
-[1] http://cr.yp.to/daemontools.html
-
diff --git a/Tools/BuildSlaveSupport/gtk/buildbot/log/run b/Tools/BuildSlaveSupport/gtk/buildbot/log/run
deleted file mode 100755
index cc2c87e..0000000
--- a/Tools/BuildSlaveSupport/gtk/buildbot/log/run
+++ /dev/null
@@ -1,38 +0,0 @@
-#! /bin/bash
-#
-# Copyright (C) 2010 Igalia S.L. All rights reserved.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Library General Public
-# License as published by the Free Software Foundation; either
-# version 2 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Library General Public License for more details.
-#
-# You should have received a copy of the GNU Library General Public License
-# along with this library; see the file COPYING.LIB.  If not, write to
-# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-# Boston, MA 02110-1301, USA.
-
-: ${BUILDBOT_CONFIG:=/etc/daemontools-buildbot.conf}
-
-# Read configuration file
-[ -r "${BUILDBOT_CONFIG}" ] && . "${BUILDBOT_CONFIG}"
-
-: ${buildbot_user:=${HOME}}
-: ${buildbot_log_path:=/var/log/buildbot}
-
-# Expand all "env_*" environment variables
-for varname in ${!env_*} ; do
-	eval "export ${varname#env_}=\${${varname}}"
-done
-
-mkdir -p "${buildbot_log_path}"
-chown "${buildbot_user}" "${buildbot_log_path}"
-
-exec /usr/bin/setuidgid "${buildbot_user}" \
-     /usr/bin/multilog t "${buildbot_log_path}"
-
diff --git a/Tools/BuildSlaveSupport/gtk/buildbot/run b/Tools/BuildSlaveSupport/gtk/buildbot/run
deleted file mode 100755
index b26fe58..0000000
--- a/Tools/BuildSlaveSupport/gtk/buildbot/run
+++ /dev/null
@@ -1,77 +0,0 @@
-#! /bin/bash
-#
-# Copyright (C) 2010 Igalia S.L. All rights reserved.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Library General Public
-# License as published by the Free Software Foundation; either
-# version 2 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Library General Public License for more details.
-#
-# You should have received a copy of the GNU Library General Public License
-# along with this library; see the file COPYING.LIB.  If not, write to
-# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-# Boston, MA 02110-1301, USA.
-
-exec 2>&1
-
-: ${BUILDBOT_CONFIG:=/etc/daemontools-buildbot.conf}
-
-# Read configuration file
-[ -r "${BUILDBOT_CONFIG}" ] && . "${BUILDBOT_CONFIG}"
-
-# Expand all "env_*" environment variables
-for varname in ${!env_*} ; do
-	eval "export ${varname#env_}=\${${varname}}"
-done
-
-
-if ! [ "${buildbot_path}" ] ; then
-	echo "No \${buildbot_path} defined! (will sleep for 5 minutes)"
-	sleep 300
-	exit 111
-fi
-
-
-if ! [ "${WEBKIT_TESTFONTS}" ] ; then
-	echo "No \${WEBKIT_TESTFONTS} environment variable! (will sleep for 5 minutes)"
-	sleep 300
-	exit 111
-fi
-
-
-if [ "${coredump_output:=''}" ] ; then
-	# Ensure that the output directory exists.
-	if [[ ! -d ${crashmon_output} ]] ; then
-		mkdir -p "${crashmon_output}"
-	fi
-
-	ulimit -c "${crashmon_max_size:=unlimited}"
-fi
-
-
-if [ "${ccache_path}" ] ; then
-	export PATH="${ccache_path}:${PATH}"
-fi
-
-: ${buildbot_user:=${USER}}
-
-cd "${buildbot_path}"
-exec /usr/bin/env -          \
-		TERM=dumb                 \
-		TZ=PST8PDT                 \
-		PATH="${PATH}"              \
-		SHELL=/bin/bash              \
-		LANG=en_US.UTF-8              \
-		USER="${buildbot_user}"        \
-		LOGNAME="${buildbot_user}"      \
-		HOME="/home/${buildbot_user}"    \
-		DISPLAY="${xvfb_display:-':10'}"  \
-		MAIL="/var/mail/${buildbot_user}"  \
-	/usr/bin/setuidgid "${buildbot_user}" \
-	/usr/bin/twistd -noy buildbot.tac
-
diff --git a/Tools/BuildSlaveSupport/gtk/daemontools-buildbot.conf b/Tools/BuildSlaveSupport/gtk/daemontools-buildbot.conf
deleted file mode 100644
index 06af29f..0000000
--- a/Tools/BuildSlaveSupport/gtk/daemontools-buildbot.conf
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright (C) 2010 Igalia S.L. All rights reserved.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Library General Public
-# License as published by the Free Software Foundation; either
-# version 2 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Library General Public License for more details.
-#
-# You should have received a copy of the GNU Library General Public License
-# along with this library; see the file COPYING.LIB.  If not, write to
-# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-# Boston, MA 02110-1301, USA.
-
-
-# Path to the Buildbot slave directory
-#
-buildbot_path="/home/slave/webkitgtk"
-
-# User account used to run Buildbot.
-#
-buildbot_user="slave"
-
-# Path to a directory where to log Buildbot output
-#
-buildbot_log_path="/var/log/buildbot"
-
-
-# If you want to use ccache, set a path to where synlinks with tool
-# names pointing to ccache are installed. In Debian systems this
-# would be /usr/lib/ccache. Set to empty to disable.
-#
-ccache_path="/usr/lib/ccache"
-
-
-# Environment variables. Prefix them with "env_".
-#
-env_CFLAGS="-pipe"
-env_CXXFLAGS="-pipe"
-env_LDFLAGS="-no-install -no-fast-install"
-env_WEBKIT_TESTFONTS="/home/${buildbot_user}/testfonts"
-
diff --git a/Tools/BuildSlaveSupport/gtk/pulseaudio/run b/Tools/BuildSlaveSupport/gtk/pulseaudio/run
deleted file mode 100755
index 37ba0de..0000000
--- a/Tools/BuildSlaveSupport/gtk/pulseaudio/run
+++ /dev/null
@@ -1,24 +0,0 @@
-#! /bin/bash
-#
-# Copyright (C) 2010 Igalia S.L. All rights reserved.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Library General Public
-# License as published by the Free Software Foundation; either
-# version 2 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Library General Public License for more details.
-#
-# You should have received a copy of the GNU Library General Public License
-# along with this library; see the file COPYING.LIB.  If not, write to
-# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-# Boston, MA 02110-1301, USA.
-
-exec 2>&1
-exec /usr/bin/pulseaudio --system \
-	--disallow-exit --disallow-module-loading \
-	--log-target=syslog
-
diff --git a/Tools/BuildSlaveSupport/kill-old-processes b/Tools/BuildSlaveSupport/kill-old-processes
deleted file mode 100755
index 359967f..0000000
--- a/Tools/BuildSlaveSupport/kill-old-processes
+++ /dev/null
@@ -1,119 +0,0 @@
-#!/usr/bin/python
-# Copyright (C) 2010 Apple Inc.  All rights reserved.
-# Copyright (C) 2011 Google Inc.  All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer.
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import os, sys
-
-
-def main():
-    tasksToKillWin = [
-        "cl.exe",
-        "devenv.com",
-        "devenv.exe",
-        "DumpRenderTree.exe",
-        "DumpRenderTree_debug.exe",
-        "httpd.exe",
-        "imagediff.exe",
-        "imagediff_debug.exe",
-        "jsc.exe",
-        "jsc_debug.exe",
-        "LightTPD.exe",
-        "link.exe",
-        "midl.exe",
-        "perl.exe",
-        "Safari.exe",
-        "svn.exe",
-        "testapi.exe",
-        "testapi_debug.exe",
-        "VcBuildHelper.exe",
-        "wdiff.exe",
-        "WebKit2WebProcess.exe",
-        "WebKit2WebProcess_debug.exe",
-        "WebKitTestRunner.exe",
-        "WebKitTestRunner_debug.exe",
-    ]
-
-    tasksToKillMac = [
-        "apache2",
-        "cc1plus",
-        "cc1objplus",
-        "clang",
-        r"clang\\+\\+",
-        "gcc-4.2",
-        "httpd",
-        "i686-apple-darwin10-gcc-4.2.1",
-        "jsc",
-        "make",
-        "pboard", # FIXME: https://bugs.webkit.org/show_bug.cgi?id=81012
-        "per5.12",
-        "perl",
-        "Problem Reporter",
-        "ruby",
-        "Safari Web Content",
-        "Safari",
-        "svn",
-        "DumpRenderTree",
-        "TestWebKitAPI Web Content",
-        "TestWebKitAPI",
-        "WebKitPluginAgen", # FIXME: Why no 't'?
-        "WebKitTestRunner Web Content",
-        "WebKitTestRunner",
-        "WebProcess",
-        "xcodebuild",
-    ]
-
-    taskToKillUnix = [
-        "apache2",
-        "cc1plus",
-        "DumpRenderTree",
-        "gold",
-        "httpd",
-        "ld",
-        "make",
-        "ruby",
-        "svn",
-        "webkit_unit_tests",
-        "WebKitTestRunner",
-        "Xvfb",
-    ]
-
-    if sys.platform == 'darwin':
-        for task in tasksToKillMac:
-            os.system("killall -9 -v -m " + task)
-        # Kill all instances of python executing run-webkit-tests
-        os.system("ps aux | grep -E '.+/Python .+(run_webkit_tests|run-webkit-tests)' | grep -v grep | awk '{print $2}' | xargs kill")
-    elif sys.platform == 'cygwin' or sys.platform == 'win32':
-        for task in tasksToKillWin:
-            os.system("taskkill /t /f /im " + task)
-    elif sys.platform.startswith('linux'):
-        for task in taskToKillUnix:
-            os.system("killall -9 -v " + task)
-        os.system("ps aux | grep -P '.+/python .+(run_webkit_tests|run-webkit-tests)' | grep -v grep | awk '{print $2}' | xargs kill")
-    else:
-        sys.exit()
-        # FIXME: Should we return an exit code based on how the kills went?
-
-
-if __name__ == '__main__':
-    sys.exit(main())
diff --git a/Tools/BuildSlaveSupport/run-performance-tests b/Tools/BuildSlaveSupport/run-performance-tests
deleted file mode 100755
index 5d6ea44..0000000
--- a/Tools/BuildSlaveSupport/run-performance-tests
+++ /dev/null
@@ -1,80 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2006 Apple Computer, Inc.  All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Script used by WebKit build slave to kick off performance tests.
-
-use strict;
-
-use FindBin;
-use lib "$FindBin::Bin/../Scripts";
-use webkitdirs;
-
-use Getopt::Long;
-use IO::Socket;
-my $shouldPrebuild = 1;
-
-my $perfMaster = "webkit-build-1.local";
-my $perfSlave = "webkit-build-2.local";
-my $slaveUser = "buildbot";
-my $reportPort = 54481; # Something that looks sorta like SAFARI
-my $slaveDirectory = "/ToTest";
-
-my $buildDirectory = determineConfigurationProductDir();
-
-my $userAndHost = $slaveUser . "@" . $perfSlave;
-my $resultsUploadDestination;
-
-GetOptions('upload-results=s' => \$resultsUploadDestination);
-
-print "Copying built frameworks to PLT slave...\n";
-my @frameworks = ("$buildDirectory/JavaScriptCore.framework", "$buildDirectory/WebCore.framework", "$buildDirectory/WebKit.framework");
-die "Failed to copy to slave\n" unless (system("rsync", "-avz", @frameworks, "$userAndHost:$slaveDirectory") == 0);
-
-print "Opening reponse port for PLT slave...\n";
-my $sock = new IO::Socket::INET(LocalHost => $perfMaster,
-                                LocalPort => $reportPort,
-                                Proto => 'tcp',
-                                Listen => 1,
-                                Reuse => 1);
-die "Could not create socket for port $reportPort: $!\n" unless $sock;
-
-print "Starting performance tests on PLT slave...\n";
-die "Failed to start slave!\n" unless (system("ssh", $userAndHost, "autovicki", $slaveDirectory, "--safari", "$slaveDirectory/Safari.app", "--count", 5, "--clean-exit", "--webkit-revision", currentSVNRevision(), "--show-results", "send-completed-results.command") == 0);
-
-print "Waiting for PLT slave to respond...\n";
-my $new_sock = $sock->accept();
-while(<$new_sock>) {
-   print $_;
-}
-close($sock);
-
-if ($resultsUploadDestination) {
-    print "Uploading results to $resultsUploadDestination\n";
-    die "Failed to upload xml results file." unless (system("scp", "$userAndHost:/Results/PerformanceReportSummary.xml", $resultsUploadDestination) == 0);
-    die "Failed to upload svg results file." unless (system("scp", "$userAndHost:/Results/PerformanceGraph.svg", $resultsUploadDestination) == 0);
-}
diff --git a/Tools/BuildSlaveSupport/test-result-archive b/Tools/BuildSlaveSupport/test-result-archive
deleted file mode 100644
index 4f1f75e..0000000
--- a/Tools/BuildSlaveSupport/test-result-archive
+++ /dev/null
@@ -1,116 +0,0 @@
-#!/usr/bin/python
-
-# Copyright (C) 2009 Apple Inc.  All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import optparse, os, shutil, subprocess, sys, zipfile
-
-sourceRootDirectory = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", ".."))
-archiveFile = os.path.join(sourceRootDirectory, "layout-test-results.zip")
-
-def main():
-    parser = optparse.OptionParser("usage: %prog [options] [action]")
-    parser.add_option("--platform", dest="platform")
-    parser.add_option("--debug", action="store_const", const="debug", dest="configuration")
-    parser.add_option("--release", action="store_const", const="release", dest="configuration")
-
-    options, (action, ) = parser.parse_args()
-    if not options.platform:
-        parser.error("Platform is required")
-    if not options.configuration:
-        parser.error("Configuration is required")
-    if action not in ('archive'):
-        parser.error("Action is required")
-
-    layoutTestResultsDir = os.path.abspath(os.path.join(sourceRootDirectory, "layout-test-results"))
-    return archiveTestResults(options.configuration, options.platform, layoutTestResultsDir)
-
-def archiveTestResults(configuration, platform, layoutTestResultsDir):
-    assert platform in ('mac', 'win', 'wincairo', 'gtk', 'qt', 'chromium', 'efl')
-
-    try:
-        os.unlink(archiveFile)
-    except OSError, e:
-        if e.errno != 2:
-            raise
-
-    try:
-        # Ensure that layoutTestResultsDir exists since we cannot archive a directory that does not exist
-        os.makedirs(layoutTestResultsDir)
-    except OSError, e:
-        if e.errno != 17:
-            raise
-
-    open(os.path.join(layoutTestResultsDir, '.placeholder'), 'w').close()
-
-    if platform == 'mac':
-        if subprocess.call(["ditto", "-c", "-k", "--sequesterRsrc", layoutTestResultsDir, archiveFile]):
-            return 1
-    elif platform in ('win', 'wincairo', 'gtk', 'qt', 'efl'):
-        if subprocess.call(["zip", "-r", archiveFile, "."], cwd=layoutTestResultsDir):
-            return 1
-    elif platform == 'chromium':
-        cwd = os.getcwd()
-        os.chdir(layoutTestResultsDir)
-        zipFilesRecursively(archiveFile, ["."])
-        os.chdir(cwd)
-
-    try:
-        shutil.rmtree(layoutTestResultsDir)
-    except OSError, e:
-
-        # Python in Cygwin throws a mysterious exception with errno of 90
-        # when removing the layout test result directory after successfully
-        # deleting its contents, claiming "Directory not empty".
-        # We can safely ignore this since it was the directory contents that
-        # we are most interested in deleting.
-        # Python in Cygwin will also sometimes throw errno 2 if a process is
-        # holding a file open. There's no point in failing to create the
-        # archive just because some other process is behaving badly. See
-        # <http://webkit.org/b/55581>.
-        if e.errno != 90 and e.errno != 2:
-            raise
-
-def zipFilesRecursively(archiveFile, files):
-    """Make a zip archive.
-
-    Args:
-        archiveFile: The resultant zip archive file name.
-        files: A list of files to be archived.  If a list item is a directory,
-            files in the directory are archived recursively."""
-    zipper = zipfile.ZipFile(archiveFile, 'w', zipfile.ZIP_DEFLATED)
-    for file in files:
-        if os.path.isdir(file):
-            for dirPath, dirNames, fileNames in os.walk(file):
-                for fileName in fileNames:
-                    relativePath = os.path.join(dirPath, fileName)
-                    print "Adding", relativePath
-                    zipper.write(relativePath)
-        else:
-            print "Adding", file
-            zipper.write(file)
-    zipper.close()
-    print "Created zip archive: ", archiveFile
-
-if __name__ == '__main__':
-    sys.exit(main())
diff --git a/Tools/BuildSlaveSupport/wait-for-SVN-server.py b/Tools/BuildSlaveSupport/wait-for-SVN-server.py
deleted file mode 100755
index f093024..0000000
--- a/Tools/BuildSlaveSupport/wait-for-SVN-server.py
+++ /dev/null
@@ -1,68 +0,0 @@
-#!/usr/bin/env python
-#
-# Copyright (C) 2006 John Pye
-# Copyright (C) 2012 University of Szeged
-#
-# This script is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-# USA
-
-from optparse import OptionParser
-import exceptions
-import sys
-import time
-import xml.dom.minidom
-import os
-import subprocess
-
-
-def getLatestSVNRevision(SVNServer):
-    try:
-        p = subprocess.Popen(["svn", "log", "--non-interactive", "--verbose", "--xml", "--limit=1", SVNServer], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
-        response = p.communicate()[0]
-        doc = xml.dom.minidom.parseString(response)
-        el = doc.getElementsByTagName("logentry")[0]
-        return el.getAttribute("revision")
-    except xml.parsers.expat.ExpatError, e:
-        print "FAILED TO PARSE 'svn log' XML:"
-        print str(e)
-        print "----"
-        print "RECEIVED TEXT:"
-        print response
-        sys.exit(1)
-
-
-def waitForSVNRevision(SVNServer, revision):
-    if not revision or not revision.isdigit():
-        latestRevision = int(getLatestSVNRevision(SVNServer))
-        print "Latest SVN revision on %s is r%d. Don't wait, because revision argument isn't a valid SVN revision." % (SVNServer, latestRevision)
-        return
-
-    revision = int(revision)
-    while True:
-        latestRevision = int(getLatestSVNRevision(SVNServer))
-        if latestRevision < revision:
-            print "Latest SVN revision on %s is r%d, but we are waiting for r%d. Sleeping for 5 seconds." % (SVNServer, latestRevision, revision)
-            time.sleep(5)
-        else:
-            print "Latest SVN revision on %s is r%d, which is newer or equal than r%d." % (SVNServer, latestRevision, revision)
-            break
-
-
-if __name__ == '__main__':
-    parser = OptionParser()
-    parser.add_option("-r", "--revision", dest="revision", help="SVN revision number")
-    parser.add_option("-s", "--svn-server", dest="SVNServer", help="SVN server")
-    options, args = parser.parse_args()
-    waitForSVNRevision(options.SVNServer, options.revision)
diff --git a/Tools/BuildSlaveSupport/win/kill-old-processes b/Tools/BuildSlaveSupport/win/kill-old-processes
deleted file mode 100755
index d04b990..0000000
--- a/Tools/BuildSlaveSupport/win/kill-old-processes
+++ /dev/null
@@ -1,58 +0,0 @@
-#!/usr/bin/python

-

-# Copyright (C) 2010 Apple Inc.  All rights reserved.

-#

-# Redistribution and use in source and binary forms, with or without

-# modification, are permitted provided that the following conditions

-# are met:

-#

-# 1.  Redistributions of source code must retain the above copyright

-#     notice, this list of conditions and the following disclaimer. 

-# 2.  Redistributions in binary form must reproduce the above copyright

-#     notice, this list of conditions and the following disclaimer in the

-#     documentation and/or other materials provided with the distribution. 

-#

-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY

-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED

-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE

-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY

-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES

-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;

-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND

-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT

-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF

-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

-

-import os, sys

-

-def main():

-    tasksToKill = [ "cl.exe", 

-					"devenv.com", 

-					"devenv.exe", 

-					"DumpRenderTree.exe", 

-					"DumpRenderTree_debug.exe",

-					"httpd.exe", 

-					"imagediff.exe", 

-					"imagediff_debug.exe", 

-					"jsc.exe", 

-					"jsc_debug.exe",

-					"LightTPD.exe", 

-					"link.exe", 

-					"midl.exe", 

-					"perl.exe", 

-					"Safari.exe", 

-					"svn.exe", 

-					"testapi.exe", 

-					"testapi_debug.exe", 

-					"VcBuildHelper.exe", 

-					"wdiff.exe", 

-					"WebKit2WebProcess.exe", 

-					"WebKit2WebProcess_debug.exe", 

-					"WebKitTestRunner.exe", 

-					"WebKitTestRunner_debug.exe"]

-					

-    for task in tasksToKill:

-        os.system("taskkill /t /f /im " + task)

-

-if __name__ == '__main__':

-    sys.exit(main())

diff --git a/Tools/CLWrapper/CLWrapper.cpp b/Tools/CLWrapper/CLWrapper.cpp
deleted file mode 100644
index 7d41f2b..0000000
--- a/Tools/CLWrapper/CLWrapper.cpp
+++ /dev/null
@@ -1,52 +0,0 @@
-// CLWrapper.cpp : Calls the perl script parallelcl to perform parallel compilation
-
-#define WIN32_LEAN_AND_MEAN    // Exclude rarely-used stuff from Windows headers
-#include <process.h>
-#include <stdio.h>
-#include <string>
-#include <windows.h>
-
-using namespace std;
-
-int wmain(int argc, wchar_t* argv[])
-{
-    const int numArgs = 3;
-
-#ifndef NDEBUG
-    fwprintf(stderr, L"######### im in ur IDE, compiling ur c0des ########\n");
-#endif
-
-    wstring** args = new wstring*[numArgs];
-
-    args[0] = new wstring(L"sh");
-    args[1] = new wstring(L"-c");
-
-    args[2] = new wstring(L"\"parallelcl");
-    for (int i = 1; i < argc; ++i) {
-        args[2]->append(L" '");
-        args[2]->append(argv[i]);
-        if (i < argc - 1)
-            args[2]->append(L"' ");
-        else
-            args[2]->append(L"'");
-    }
-    args[2]->append(L"\"");
-
-    for (unsigned i = 0; i < args[2]->length(); i++) {
-       if (args[2]->at(i) == '\\')
-            args[2]->at(i) = '/';
-    }
-
-    wchar_t** newArgv = new wchar_t*[numArgs + 1];
-    for (int i = 0; i < numArgs; i++)
-        newArgv[i] = (wchar_t*)args[i]->c_str();
-
-    newArgv[numArgs] = 0;
-
-#ifndef NDEBUG
-    fwprintf(stderr, L"exec(\"%s\", \"%s\", \"%s\", \"%s\")\n", L"sh", newArgv[0], newArgv[1], newArgv[2]);
-#endif
-
-    return _wspawnvp(_P_WAIT, L"sh", newArgv);
-}
-
diff --git a/Tools/CLWrapper/CLWrapper.sln b/Tools/CLWrapper/CLWrapper.sln
deleted file mode 100644
index 7501ea6..0000000
--- a/Tools/CLWrapper/CLWrapper.sln
+++ /dev/null
@@ -1,20 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 9.00
-# Visual Studio 2005
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CLWrapper", "CLWrapper.vcproj", "{230BF635-9BD8-434A-8857-0B096EBC7233}"
-EndProject
-Global
-	GlobalSection(SolutionConfigurationPlatforms) = preSolution
-		Debug|Win32 = Debug|Win32
-		Release|Win32 = Release|Win32
-	EndGlobalSection
-	GlobalSection(ProjectConfigurationPlatforms) = postSolution
-		{230BF635-9BD8-434A-8857-0B096EBC7233}.Debug|Win32.ActiveCfg = Debug|Win32
-		{230BF635-9BD8-434A-8857-0B096EBC7233}.Debug|Win32.Build.0 = Debug|Win32
-		{230BF635-9BD8-434A-8857-0B096EBC7233}.Release|Win32.ActiveCfg = Release|Win32
-		{230BF635-9BD8-434A-8857-0B096EBC7233}.Release|Win32.Build.0 = Release|Win32
-	EndGlobalSection
-	GlobalSection(SolutionProperties) = preSolution
-		HideSolutionNode = FALSE
-	EndGlobalSection
-EndGlobal
diff --git a/Tools/CLWrapper/CLWrapper.vcproj b/Tools/CLWrapper/CLWrapper.vcproj
deleted file mode 100644
index 3563692..0000000
--- a/Tools/CLWrapper/CLWrapper.vcproj
+++ /dev/null
@@ -1,201 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="CLWrapper"
-	ProjectGUID="{230BF635-9BD8-434A-8857-0B096EBC7233}"
-	RootNamespace="CLWrapper"
-	Keyword="Win32Proj"
-	>
-	<Platforms>
-		<Platform
-			Name="Win32"
-		/>
-	</Platforms>
-	<ToolFiles>
-	</ToolFiles>
-	<Configurations>
-		<Configuration
-			Name="Debug|Win32"
-			OutputDirectory="..\vcbin"
-			IntermediateDirectory="$(ConfigurationName)"
-			ConfigurationType="1"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				Optimization="0"
-				PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
-				MinimalRebuild="true"
-				BasicRuntimeChecks="3"
-				RuntimeLibrary="3"
-				UsePrecompiledHeader="0"
-				WarningLevel="3"
-				Detect64BitPortabilityProblems="true"
-				DebugInformationFormat="4"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/SAFESEH"
-				OutputFile="$(OutDir)\cl.exe"
-				LinkIncremental="2"
-				GenerateDebugInformation="true"
-				SubSystem="1"
-				TargetMachine="1"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release|Win32"
-			OutputDirectory="..\vcbin"
-			IntermediateDirectory="$(ConfigurationName)"
-			ConfigurationType="1"
-			CharacterSet="1"
-			WholeProgramOptimization="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
-				RuntimeLibrary="2"
-				UsePrecompiledHeader="0"
-				WarningLevel="3"
-				Detect64BitPortabilityProblems="true"
-				DebugInformationFormat="3"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/SAFESEH"
-				OutputFile="$(OutDir)\cl.exe"
-				LinkIncremental="1"
-				GenerateDebugInformation="true"
-				SubSystem="1"
-				OptimizeReferences="2"
-				EnableCOMDATFolding="2"
-				TargetMachine="1"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-	</Configurations>
-	<References>
-	</References>
-	<Files>
-		<Filter
-			Name="Source Files"
-			Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
-			UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
-			>
-			<File
-				RelativePath=".\CLWrapper.cpp"
-				>
-			</File>
-		</Filter>
-		<Filter
-			Name="Header Files"
-			Filter="h;hpp;hxx;hm;inl;inc;xsd"
-			UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
-			>
-		</Filter>
-		<Filter
-			Name="Resource Files"
-			Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
-			UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
-			>
-		</Filter>
-	</Files>
-	<Globals>
-	</Globals>
-</VisualStudioProject>
diff --git a/Tools/CMakeLists.txt b/Tools/CMakeLists.txt
deleted file mode 100644
index d0527d4..0000000
--- a/Tools/CMakeLists.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-if (ENABLE_WEBKIT2)
-    add_subdirectory(WebKitTestRunner)
-endif ()
-
-if ("${PORT}" STREQUAL "Efl")
-    add_subdirectory(ImageDiff)
-    add_subdirectory(EWebLauncher/ControlTheme)
-
-    if (ENABLE_WEBKIT)
-        add_subdirectory(DumpRenderTree/efl)
-        add_subdirectory(EWebLauncher)
-    endif ()
-
-    if (ENABLE_WEBKIT2)
-        add_subdirectory(MiniBrowser/efl)
-    endif ()
-    add_subdirectory(DumpRenderTree/TestNetscapePlugIn)
-elseif ("${PORT}" STREQUAL "WinCE")
-    add_subdirectory(WinCELauncher)
-endif ()
-
-if (ENABLE_WEBKIT2 AND ENABLE_API_TESTS)
-    add_subdirectory(TestWebKitAPI)
-endif ()
diff --git a/Tools/CSSTestSuiteHarness/harness/harness.css b/Tools/CSSTestSuiteHarness/harness/harness.css
deleted file mode 100644
index 3f4c97d..0000000
--- a/Tools/CSSTestSuiteHarness/harness/harness.css
+++ /dev/null
@@ -1,308 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-body {
-  font-family: Helvetica, sans-serif;
-  background-color: #DDD;
-}
-
-.controls {
-  border: 1px solid black;
-  width: 300px;
-  height: 660px;
-  float: left;
-  font-size: smaller;
-  padding: 4px;
-}
-
-.controls div {
-  margin: 4px;
-}
-
-.controls select {
-  width: 100%;
-}
-
-.details > div {
-  margin: 4px 0;
-}
-
-.test-type {
-  float: left;
-}
-
-.name > button {
-  margin-top: 20px;
-  float: right;
-}
-
-.actions {
-  margin-left: 320px;
-  border: 1px solid black;
-  font-size: smaller;
-  height: 30px;
-  padding: 4px;
-  margin-bottom: 8px;
-}
-
-.actions button {
-  font-size: 13px;
-  width: 5em;
-}
-
-.note {
-  display: inline-block;
-  font-size: 10px;
-  margin-left: 5px;
-  color: gray;
-}
-.action-buttons {
-  float: right;
-}
-
-#test-content {
-  margin-left: 320px;
-  height: 612px;
-  border: 1px solid black;
-  padding: 4px;
-  background-color: white;
-}
-
-.info > div {
-  margin: 6px 0;
-}
-
-.info .title {
-  font-size: larger;
-  font-weight: bold;
-}
-
-.info .url {
-  font-family: monospace;
-}
-
-.info .assertion, .info .flags {
-  font-size: smaller;
-}
-
-#warning {
-  padding-left: 1em;
-  color: red;
-  display: none;
-}
-
-#print-button {
-  float: right;
-  display: none;
-}
-
-#test-content.print {
-}
-
-#test-content.print #print-button {
-  display: inline;
-}
-
-#test-content.warn #warning {
-  display: inline;
-}
-
-#test-content iframe {
-  border: 1px solid gray;
-  margin: 2px;
-}
-
-#test-content h2 {
-  font-size: 11pt;
-  margin: 2px 0 2px 0;
-  color: darkgray;
-}
-
-#test-list > option.untested {
-}
-
-#test-list > option.pass {
-  color: rgba(0, 128, 0, 0.6);
-}
-
-#test-list > option.fail {
-  color: rgba(255, 0, 0, 0.6);
-}
-
-#test-list > option.skipped {
-  color: rgba(255, 128, 0, 0.6);
-}
-
-#test-content.with-ref {
-}
-
-.frame-wrapper {
-
-}
-
-.frame-wrapper iframe {
-  width: 98%;
-  height: 460px;
-}
-
-.frame-wrapper {
-  height: 500px;
-  width: 99%;
-  display: inline-block;
-}
-
-.with-ref > .frame-wrapper {
-  width: 49%;
-}
-
-#ref-wrapper {
-  height: 500px;
-  width: 49%;
-  display: none;
-}
-
-.with-ref > #ref-wrapper {
-  display: inline-block;
-}
-
-.results {
-  border: 1px solid black;
-  padding: 4px;
-  margin-top: 6px;
-}
-
-#output {
-  border: 1px solid black;
-  font-size: smaller;
-  height: 220px;
-  margin: 4px;
-  padding: 4px;
-  overflow-y: auto;
-  background-color: white;
-}
-
-#output > p {
-  margin: 0;
-}
-#output .pass {
-  color: green;
-}
-
-#output .fail {
-  color: red;
-}
-
-#output .skipped {
-  color: orange;
-}
-
-#output .invalid {
-  background: red;
-}
-
-.output-options {
-  float: right;
-  border: 1px solid black;
-  width: 200px;
-  height: 220px;
-  margin: 4px;
-  padding: 4px;
-  font-size: smaller;
-}
-
-.output-options select {
-  width: 90%;
-}
-
-.summary {
-  font-size: smaller;
-  margin: 4px;
-}
-
-.summary .label {
-  display: inline-block;
-  min-width: 5em;
-  margin: 0;
-}
-
-.summary span {
-  display: inline-block;
-  min-width: 3em;
-  text-align: right;
-  margin: 0;
-}
-
-.summary td {
-  text-align: right;
-  padding: 4px;
-}
-
-.custom button {
-  display: block;
-  margin: 12px 0;
-}
-
-/* Overlay */
-
-#overlay {
-  position: fixed;
-  top: 0;
-  left: 0;
-  bottom: 0;
-  right: 0;
-  background-color: rgba(0, 0, 0, 0.6);
-  display: none;
-}
-
-#overlay.visible {
-  display: block;
-}
-
-.overlay-contents {
-  position: relative;
-  background-color: white;
-  margin: 50px auto;
-  width: 1000px;
-  padding: 20px;
-}
-
-.overlay-contents textarea {
-  width: 90em;
-  height: 50em;
-}
-.overlay-contents .buttons {
-  text-align: right;
-}
-
-.overlay-contents .note {
-  float: left;
-}
-
-.overlay-contents .buttons button {
-  font-size: 13px;
-  width: 6em;
-  margin: 12px 8px;
-}
-
diff --git a/Tools/CSSTestSuiteHarness/harness/harness.html b/Tools/CSSTestSuiteHarness/harness/harness.html
deleted file mode 100644
index 3877f49..0000000
--- a/Tools/CSSTestSuiteHarness/harness/harness.html
+++ /dev/null
@@ -1,262 +0,0 @@
-<!--
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
--->
-
-<!DOCTYPE html>
-<html>
-  <head>
-  <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
-  <title>CSS 2.1 Test Harness</title>
-  <link rel="stylesheet" href="harness.css" type="text/css" media="screen" charset="utf-8">
-
-  <script src="http://code.jquery.com/jquery-1.4.2.min.js" type="text/javascript" charset="utf-8"></script>
-  <script src="harness.js" type="text/javascript" charset="utf-8"></script>
-  
-  <script type="text/javascript" charset="utf-8">
-    var gTestSuite;
-    function setupTests()
-    {
-      gTestSuite = new TestSuite();
-    }
-    
-    window.addEventListener('load', setupTests, false);
-    
-    function skipTest()
-    {
-      gTestSuite.skipTest(document.getElementById('skip-reason').value);
-    }
-    
-    function invalidTest()
-    {
-      gTestSuite.invalidTest();
-    }
-
-    function failTest()
-    {
-      gTestSuite.failTest();
-    }
-
-    function passTest()
-    {
-      gTestSuite.passTest();
-    }
-    
-    function goToNextUntested()
-    {
-      gTestSuite.goToNextIncompleteTest();
-    }
-
-    function goToTest()
-    {
-      var testName = prompt('Go to test:', '');
-      
-      // This accepts any of the following:
-      // at-charset-010
-      // at-charset-010.xht
-      // xhtml1/at-charset-010
-      // xhtml1/at-charset-010.xht
-      // and will choose the format if specified.
-      if (!gTestSuite.goToTestByName(testName))
-        alert('Failed to find test ' + testName);
-    }
-    
-    function formatChanged()
-    {
-      var newFormat;
-      if (document.harness.format.html4.checked)
-        newFormat = 'html4';
-      else
-        newFormat = 'xhtml1';
-      gTestSuite.formatChanged(newFormat);
-    }
-    
-    function testSelected()
-    {
-      var list = document.getElementById('test-list')
-      if (list.selectedIndex >= 0)
-        gTestSuite.goToTestIndex(list.selectedIndex);
-      else
-        gTestSuite.clearTest();
-    }
-
-    function resultsPopupChanged(popup)
-    {
-      gTestSuite.resultsPopupChanged(popup.selectedIndex);
-    }
-    
-    function doExport()
-    {
-      gTestSuite.exportResults(document.getElementById('results-popup').selectedIndex);
-    }
-    
-    function printTestIframe()
-    {
-      var testFrame = document.getElementById('test-frame');
-      testFrame.contentWindow.print();
-    }
-
-    var gOverlayConfirmCallback;
-    function showOverlay(overlayConfirmCallback)
-    {
-      document.getElementById('overlay-data').value = '';
-      gOverlayConfirmCallback = overlayConfirmCallback;
-      $('#overlay').addClass('visible');
-    }
-
-    function overlayCancel()
-    {
-      $('#overlay').removeClass('visible');
-    }
-    
-    function overlayConfirm()
-    {
-      var data = document.getElementById('overlay-data').value;
-      gOverlayConfirmCallback(data);
-      $('#overlay').removeClass('visible');
-    }
-    
-    function doImport()
-    {
-      document.getElementById('overlay-action').innerText = 'Enter results to import (in the same format as the exported results):';
-      showOverlay(function(data) {
-        gTestSuite.importResults(data);
-      });
-    }
-    
-    function doClear()
-    {
-      document.getElementById('overlay-action').innerText = 'Enter list of tests for which to clear results (so they can be re-tested):';
-      showOverlay(function(data) {
-        gTestSuite.clearResults(data);
-      });
-    }
-  </script>
-
-</head>
-<body>
-
-  <div class="controls">
-    <form name="harness" onsubmit="return false;">
-    <select id="chapters">
-      <option>Test category</option>
-    </select>
-    <div class="progress">
-      <div><span id="test-index">1</span> of <span id="chapter-test-count">200</span> unique tests</div>
-    </div>
-    <div class="details">
-      <div class="name">
-        <div class="test-type">
-          <input type="radio" name="format" id="html4" onchange="formatChanged()" checked><label for="html4">HTML4</label><br>
-          <input type="radio" name="format" id="xhtml1" onchange="formatChanged()"><label for="xhtml1">XHTML1</label>
-        </div>
-        <button onclick="goToNextUntested()" accesskey="n"><strong>N</strong>ext Untested</button>
-        <button onclick="goToTest()" accesskey="g">Go to Test...</button>
-      </div>
-    </div>
-    
-    <div>
-      <select id="test-list" size="40" onchange="testSelected()"></select>
-    </div>
-    </form>
-  </div>
-  
-  <div class="actions">
-    <span>Skip reason:</span> <input type="text" id="skip-reason" size="50">
-    <button onclick="skipTest()" accesskey="s"><strong>S</strong>kip</button>
-    <div class="note">Use <i>Control-Option-letter</i> to<br> trigger buttons via the keyboard.</div>
-    <div class="action-buttons">
-      <button onclick="invalidTest()" accesskey="i">Invalid</button>
-      <button onclick="failTest()" accesskey="f"><strong>F</strong>ail</button>
-      <button onclick="passTest()" accesskey="p"><strong>P</strong>ass</button>
-    </div>
-  </div>
-  <div id="test-content">
-    <div class="info">
-      <div class="title">Title: <span id="test-title"></span></div>
-      <div class="url">URL: <span id="test-url"></span></div>
-      <div class="assertion">Assertion: <span id="test-assertion"></span></div>
-      <div class="flags">Flags: <span id="test-flags"></span>
-        <span id="warning">This test must be run over HTTP.</span>
-        <button id="print-button" onclick="printTestIframe()">Print Preview</button>
-      </div>
-    </div>
-    
-    <div id="test-wrapper" class="frame-wrapper">
-      <h2>Test</h2>
-      <iframe id="test-frame"></iframe>
-    </div>
-    <div id="ref-wrapper" class="frame-wrapper">
-      <h2>Reference</h2>
-      <iframe id="ref-frame"></iframe>
-    </div>
-  </div>
-
-  <div class="results">
-
-    <div class="output-options">
-      <p>Show results for:</p>
-      <select id="results-popup" onchange="resultsPopupChanged(this)">
-      </select>
-      <div>
-        <button id="export-button" onclick="doExport()">Export...</button>
-      </div>
-
-      <div class="custom">
-        <button id="import-button" onclick="doImport()">Import...</button>
-        <button id="import-button" onclick="doClear()">Clear Results...</button>
-      </div>
-    </div>
-
-    <div id="output"></div>
-    <div class="summary">
-      <table>
-        <tr>
-          <th></th><th>Passed</th><th>Failed</th><th>Skipped</th><th>Invalid</th><th>Tested</th><th>Total</th><th>% done</th>
-        </tr>
-        <tr>
-          <td class="label">HTML4:</td><td id="h-passed"></td><td id="h-failed"></td><td id="h-skipped"></td><td id="h-invalid"></td><td id="h-tested"></td><td id="h-total"></td><td id="h-percent"></td>
-        </tr>
-        <tr>
-          <td class="label">XHTML1:</td><td id="x-passed"></td><td id="x-failed"></td><td id="x-skipped"></td><td id="x-invalid"></td><td id="x-tested"></td><td id="x-total"></td><td id="x-percent"></td>
-        </tr>
-      </table>
-    </div>
-  </div>
-
-  <div id="overlay">
-    
-    <div class="overlay-contents">
-      <p id="overlay-action"></p>
-      <textarea id="overlay-data"></textarea>
-      <p class="note">Pasting many lines of text here can be very slow in Safari 5. You can quit Safari and use a <a href="http://nightly.webkit.org/" title="WebKit Nightly Builds">WebKit nightly build</a> for importing or clearing.</p>
-      <div class="buttons">
-        <button onclick="overlayCancel()">Cancel</button><button onclick="overlayConfirm()">OK</button>
-      </div>
-    </div>
-    
-  </div>
-</body>
-</html>
\ No newline at end of file
diff --git a/Tools/CSSTestSuiteHarness/harness/harness.js b/Tools/CSSTestSuiteHarness/harness/harness.js
deleted file mode 100644
index ed7cb7d..0000000
--- a/Tools/CSSTestSuiteHarness/harness/harness.js
+++ /dev/null
@@ -1,1902 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-// requires jQuery
-
-const kTestSuiteVersion = '20101001';
-const kTestSuiteHome = '../' + kTestSuiteVersion + '/';
-const kTestInfoDataFile = 'testinfo.data';
-
-const kChapterData = [
-  {
-    'file' : 'about.html',
-    'title' : 'About the CSS 2.1 Specification',
-  },
-  {
-    'file' : 'intro.html',
-    'title' : 'Introduction to CSS 2.1',
-  },
-  {
-    'file' : 'conform.html',
-    'title' : 'Conformance: Requirements and Recommendations',
-  },
-  {
-    'file' : "syndata.html",
-    'title' : 'Syntax and basic data types',
-  },
-  {
-    'file' : 'selector.html' ,
-    'title' : 'Selectors',
-  },
-  {
-    'file' : 'cascade.html',
-    'title' : 'Assigning property values, Cascading, and Inheritance',
-  },
-  {
-    'file' : 'media.html',
-    'title' : 'Media types',
-  },
-  {
-    'file' : 'box.html' ,
-    'title' : 'Box model',
-  },
-  {
-    'file' : 'visuren.html',
-    'title' : 'Visual formatting model',
-  },
-  {
-    'file' :'visudet.html',
-    'title' : 'Visual formatting model details',
-  },
-  {
-    'file' : 'visufx.html',
-    'title' : 'Visual effects',
-  },
-  {
-    'file' : 'generate.html',
-    'title' : 'Generated content, automatic numbering, and lists',
-  },
-  {
-    'file' : 'page.html',
-    'title' : 'Paged media',
-  },
-  {
-    'file' : 'colors.html',
-    'title' : 'Colors and Backgrounds',
-  },
-  {
-    'file' : 'fonts.html',
-    'title' : 'Fonts',
-  },
-  {
-    'file' : 'text.html',
-    'title' : 'Text',
-  },
-  {
-    'file' : 'tables.html',
-    'title' : 'Tables',
-  },
-  {
-    'file' : 'ui.html',
-    'title' : 'User interface',
-  },
-  {
-    'file' : 'aural.html',
-    'title' : 'Appendix A. Aural style sheets',
-  },
-  {
-    'file' : 'refs.html',
-    'title' : 'Appendix B. Bibliography',
-  },
-  {
-    'file' : 'changes.html',
-    'title' : 'Appendix C. Changes',
-  },
-  {
-    'file' : 'sample.html',
-    'title' : 'Appendix D. Default style sheet for HTML 4',
-  },
-  {
-    'file' : 'zindex.html',
-    'title' : 'Appendix E. Elaborate description of Stacking Contexts',
-  },
-  {
-    'file' : 'propidx.html',
-    'title' : 'Appendix F. Full property table',
-  },
-  {
-    'file' : 'grammar.html',
-    'title' : 'Appendix G. Grammar of CSS',
-  },
-  {
-    'file' : 'other.html',
-    'title' : 'Other',
-  },
-];
-
-
-const kHTML4Data = {
-  'path' : 'html4',
-  'suffix' : '.htm'
-};
-
-const kXHTML1Data = {
-  'path' : 'xhtml1',
-  'suffix' : '.xht'
-};
-
-// Results popup
-const kResultsSelector = [
-  {
-    'name': 'All Tests',
-    'handler' : function(self) { self.showResultsForAllTests(); },
-    'exporter' : function(self) { self.exportResultsForAllTests(); }
-  },
-  {
-    'name': 'Completed Tests',
-    'handler' : function(self) { self.showResultsForCompletedTests(); },
-    'exporter' : function(self) { self.exportResultsForCompletedTests(); }
-  },
-  {
-    'name': 'Passing Tests',
-    'handler' : function(self) { self.showResultsForTestsWithStatus('pass'); },
-    'exporter' : function(self) { self.exportResultsForTestsWithStatus('pass'); }
-  },
-  {
-    'name': 'Failing Tests',
-    'handler' : function(self) { self.showResultsForTestsWithStatus('fail'); },
-    'exporter' : function(self) { self.exportResultsForTestsWithStatus('fail'); }
-  },
-  {
-    'name': 'Skipped Tests',
-    'handler' : function(self) { self.showResultsForTestsWithStatus('skipped'); },
-    'exporter' : function(self) { self.exportResultsForTestsWithStatus('skipped'); }
-  },
-  {
-    'name': 'Invalid Tests',
-    'handler' : function(self) { self.showResultsForTestsWithStatus('invalid'); },
-    'exporter' : function(self) { self.exportResultsForTestsWithStatus('invalid'); }
-  },
-  {
-    'name': 'Tests where HTML4 and XHTML1 results differ',
-    'handler' : function(self) { self.showResultsForTestsWithMismatchedResults(); },
-    'exporter' : function(self) { self.exportResultsForTestsWithMismatchedResults(); }
-  },
-  {
-    'name': 'Tests Not Run',
-    'handler' : function(self) { self.showResultsForTestsNotRun(); },
-    'exporter' : function(self) { self.exportResultsForTestsNotRun(); }
-  }
-];
-
-function Test(testInfoLine)
-{
-  var fields = testInfoLine.split('\t');
-  
-  this.id = fields[0];
-  this.reference = fields[1];
-  this.title = fields[2];
-  this.flags = fields[3];
-  this.links = fields[4];
-  this.assertion = fields[5];
-
-  this.paged = false;
-  this.testHTML = true;
-  this.testXHTML = true;
-
-  if (this.flags) {
-    this.paged = this.flags.indexOf('paged') != -1;
-  
-    if (this.flags.indexOf('nonHTML') != -1)
-      this.testHTML = false;
-
-    if (this.flags.indexOf('HTMLonly') != -1)
-      this.testXHTML = false;
-  }
-  
-  this.completedHTML = false; // true if this test has a result (pass, fail or skip)
-  this.completedXHTML = false; // true if this test has a result (pass, fail or skip)
-
-  this.statusHTML = '';
-  this.statusXHTML = '';
-  
-  if (!this.links)
-    this.links = "other.html"
-}
-
-Test.prototype.runForFormat = function(format)
-{
-  if (format == 'html4')
-    return this.testHTML;
-
-  if (format == 'xhtml1')
-    return this.testXHTML;
-
-  return true;
-}
-
-Test.prototype.completedForFormat = function(format)
-{
-  if (format == 'html4')
-    return this.completedHTML;
-
-  if (format == 'xhtml1')
-    return this.completedXHTML;
-
-  return true;
-}
-
-Test.prototype.statusForFormat = function(format)
-{
-  if (format == 'html4')
-    return this.statusHTML;
-
-  if (format == 'xhtml1')
-    return this.statusXHTML;
-
-  return true;
-}
-
-function ChapterSection(link)
-{
-  var result= link.match(/^([.\w]+)(#.+)?$/);
-  if (result != null) {
-    this.file = result[1];
-    this.anchor = result[2];
-  }
-
-  this.testCountHTML = 0;
-  this.testCountXHTML = 0;
-
-  this.tests = [];
-}
-
-ChapterSection.prototype.countTests = function()
-{
-  this.testCountHTML = 0;
-  this.testCountXHTML = 0;
-
-  for (var i = 0; i < this.tests.length; ++i) {
-    var currTest = this.tests[i];
-
-    if (currTest.testHTML)
-      ++this.testCountHTML;
-
-    if (currTest.testXHTML)
-      ++this.testCountXHTML;
-  }
-}
-
-function Chapter(chapterInfo)
-{
-  this.file = chapterInfo.file;
-  this.title = chapterInfo.title;
-  this.testCountHTML = 0;
-  this.testCountXHTML = 0;
-  this.sections = []; // array of ChapterSection
-}
-
-Chapter.prototype.description = function(format)
-{
-  
-  
-  return this.title + ' (' + this.testCount(format) + ' tests, ' + this.untestedCount(format) + ' untested)';
-}
-
-Chapter.prototype.countTests = function()
-{
-  this.testCountHTML = 0;
-  this.testCountXHTML = 0;
-
-  for (var i = 0; i < this.sections.length; ++i) {
-    var currSection = this.sections[i];
-
-    currSection.countTests();
-
-    this.testCountHTML += currSection.testCountHTML;
-    this.testCountXHTML += currSection.testCountXHTML;
-  }
-}
-
-Chapter.prototype.testCount = function(format)
-{
-  if (format == 'html4')
-    return this.testCountHTML;
-
-  if (format == 'xhtml1')
-    return this.testCountXHTML;
-
-  return 0;
-}
-
-Chapter.prototype.untestedCount = function(format)
-{
-  var completedProperty = format == 'html4' ? 'completedHTML' : 'completedXHTML';
-  
-  var count = 0;
-  for (var i = 0; i < this.sections.length; ++i) {
-    var currSection = this.sections[i];
-    for (var j = 0; j < currSection.tests.length; ++j) {
-      count += currSection.tests[j].completedForFormat(format) ? 0 : 1;
-    }
-  }
-  return count;
-  
-}
-
-// Utils
-String.prototype.trim = function() { return this.replace(/^\s+|\s+$/g, ''); }
-
-function TestSuite()
-{
-  this.chapterSections = {}; // map of links to ChapterSections
-  this.tests = {}; // map of test id to test info
-  
-  this.chapters = {}; // map of file name to chapter
-  this.currentChapter = null;
-  
-  this.currentChapterTests = []; // array of tests for the current chapter.
-  this.currChapterTestIndex = -1; // index of test in the current chapter
-  
-  this.format = '';
-  this.formatChanged('html4');
-  
-  this.testInfoLoaded = false;
-
-  this.populatingDatabase = false;
-  
-  var testInfoPath = kTestSuiteHome + kTestInfoDataFile;
-  this.loadTestInfo(testInfoPath);
-}
-
-TestSuite.prototype.loadTestInfo = function(testInfoPath)
-{
-  var _self = this;
-  this.asyncLoad(testInfoPath, 'data', function(data, status) {
-    _self.testInfoDataLoaded(data, status);
-  });
-}
-
-TestSuite.prototype.testInfoDataLoaded = function(data, status)
-{
-  if (status != 'success') {
-    alert("Failed to load testinfo.data. Database of tests will not be initialized.");
-    return;
-  }
-
-  this.parseTests(data);
-  this.buildChapters();
-
-  this.testInfoLoaded = true;
-  
-  this.fillChapterPopup();
-
-  this.initializeControls();
-
-  this.openDatabase();
-}
-
-TestSuite.prototype.parseTests = function(data)
-{
-  var lines = data.split('\n');
-  
-  // First line is column labels
-  for (var i = 1; i < lines.length; ++i) {
-    var test = new Test(lines[i]);
-    if (test.id.length > 0)
-      this.tests[test.id] = test;
-  }
-}
-
-TestSuite.prototype.buildChapters = function()
-{
-  for (var testID in this.tests) {
-    var currTest = this.tests[testID];
-
-    // FIXME: tests with more than one link will be presented to the user
-    // twice. Be smarter about avoiding this.
-    var testLinks = currTest.links.split(',');
-    for (var i = 0; i < testLinks.length; ++i) {
-      var link = testLinks[i];
-      var section = this.chapterSections[link];
-      if (!section) {
-        section = new ChapterSection(link);
-        this.chapterSections[link] = section;
-      }
-      
-      section.tests.push(currTest);
-    }
-  }
-  
-  for (var i = 0; i < kChapterData.length; ++i) {
-    var chapter = new Chapter(kChapterData[i]);
-    chapter.index = i;
-    this.chapters[chapter.file] = chapter;
-  }
-  
-  for (var sectionName in this.chapterSections) {
-    var section = this.chapterSections[sectionName];
-
-    var file = section.file;
-    var chapter = this.chapters[file];
-    if (!chapter)
-      window.console.log('failed to find chapter ' + file + ' in chapter data.');
-    chapter.sections.push(section);
-  }
-  
-  for (var chapterName in this.chapters) {
-    var currChapter = this.chapters[chapterName];
-    currChapter.sections.sort();
-    currChapter.countTests();
-  }
-}
-
-TestSuite.prototype.indexOfChapter = function(chapter)
-{
-  for (var i = 0; i < kChapterData.length; ++i) {
-    if (kChapterData[i].file == chapter.file)
-      return i;
-  }
-  
-  window.console.log('indexOfChapter for ' + chapter.file + ' failed');
-  return -1;
-}
-
-TestSuite.prototype.chapterAtIndex = function(index)
-{
-  if (index < 0 || index >= kChapterData.length)
-    return null;
-
-  return this.chapters[kChapterData[index].file];
-}
-
-TestSuite.prototype.fillChapterPopup = function()
-{
-  var select = document.getElementById('chapters')
-  select.innerHTML = ''; // Remove all children.
-  
-  for (var i = 0; i < kChapterData.length; ++i) {
-    var chapterData = kChapterData[i];
-    var chapter = this.chapters[chapterData.file];
-    
-    var option = document.createElement('option');
-    option.innerText = chapter.description(this.format);
-    option._chapter = chapter;
-    
-    select.appendChild(option);
-  }
-}
-
-TestSuite.prototype.updateChapterPopup = function()
-{
-  var select = document.getElementById('chapters')
-  var currOption = select.firstChild;
-  
-  for (var i = 0; i < kChapterData.length; ++i) {
-    var chapterData = kChapterData[i];
-    var chapter = this.chapters[chapterData.file];
-    if (!chapter)
-      continue;
-    currOption.innerText = chapter.description(this.format);
-    currOption = currOption.nextSibling;
-  }
-}
-
-TestSuite.prototype.buildTestListForChapter = function(chapter)
-{
-  this.currentChapterTests = this.testListForChapter(chapter);
-}
-
-TestSuite.prototype.testListForChapter = function(chapter)
-{
-  var testList = [];
-  
-  for (var i in chapter.sections) {
-    var currSection = chapter.sections[i];
-    
-    for (var j = 0; j < currSection.tests.length; ++j) {
-      var currTest = currSection.tests[j];
-      if (currTest.runForFormat(this.format))
-        testList.push(currTest);
-    }
-  }
-  
-  // FIXME: test may occur more than once.
-  testList.sort(function(a, b) {
-    return a.id.localeCompare(b.id);
-  });
-  
-  return testList;
-}
-
-TestSuite.prototype.initializeControls = function()
-{
-  var chaptersPopup = document.getElementById('chapters');
-
-  var _self = this;
-  chaptersPopup.addEventListener('change', function() {
-    _self.chapterPopupChanged();
-  }, false);
-
-  this.chapterPopupChanged();
-  
-  // Results popup
-  var resultsPopup = document.getElementById('results-popup');
-  resultsPopup.innerHTML = '';
-  
-  for (var i = 0; i < kResultsSelector.length; ++i) {
-    var option = document.createElement('option');
-    option.innerText =  kResultsSelector[i].name;
-    
-    resultsPopup.appendChild(option);
-  }
-}
-
-TestSuite.prototype.chapterPopupChanged = function()
-{
-  var chaptersPopup = document.getElementById('chapters');
-  var selectedChapter = chaptersPopup.options[chaptersPopup.selectedIndex]._chapter;
-
-  this.setSelectedChapter(selectedChapter);
-}
-
-TestSuite.prototype.fillTestList = function()
-{
-  var statusProperty = this.format == 'html4' ? 'statusHTML' : 'statusXHTML';
-
-  var testList = document.getElementById('test-list');
-  testList.innerHTML = '';
-  
-  for (var i = 0; i < this.currentChapterTests.length; ++i) {
-    var currTest = this.currentChapterTests[i];
-
-    var option = document.createElement('option');
-    option.innerText = currTest.id;
-    option.className = currTest[statusProperty];
-    option._test = currTest;
-    testList.appendChild(option);
-  }
-}
-
-TestSuite.prototype.updateTestList = function()
-{
-  var statusProperty = this.format == 'html4' ? 'statusHTML' : 'statusXHTML';
-  var testList = document.getElementById('test-list');
-  
-  var options = testList.getElementsByTagName('option');
-  for (var i = 0; i < options.length; ++i) {
-    var currOption = options[i];
-    currOption.className = currOption._test[statusProperty];
-  }
-}
-
-TestSuite.prototype.setSelectedChapter = function(chapter)
-{
-  this.currentChapter = chapter;
-  this.buildTestListForChapter(this.currentChapter);
-  this.currChapterTestIndex = -1;
-  
-  this.fillTestList();
-  this.goToTestIndex(0);
-  
-  var chaptersPopup = document.getElementById('chapters');
-  chaptersPopup.selectedIndex = this.indexOfChapter(chapter);
-}
-
-/* ------------------------------------------------------- */
-
-TestSuite.prototype.passTest = function()
-{
-  this.recordResult(this.currentTestName(), 'pass');
-  this.nextTest();
-}
-
-TestSuite.prototype.failTest = function()
-{
-  this.recordResult(this.currentTestName(), 'fail');
-  this.nextTest();
-}
-
-TestSuite.prototype.invalidTest = function()
-{
-  this.recordResult(this.currentTestName(), 'invalid');
-  this.nextTest();
-}
-
-TestSuite.prototype.skipTest = function(reason)
-{
-  this.recordResult(this.currentTestName(), 'skipped', reason);
-  this.nextTest();
-}
-
-TestSuite.prototype.nextTest = function()
-{
-  if (this.currChapterTestIndex < this.currentChapterTests.length - 1)
-    this.goToTestIndex(this.currChapterTestIndex + 1);
-  else {
-    var currChapterIndex = this.indexOfChapter(this.currentChapter);
-    this.goToChapterIndex(currChapterIndex + 1);
-  }
-}
-
-TestSuite.prototype.previousTest = function()
-{
-  if (this.currChapterTestIndex > 0)
-    this.goToTestIndex(this.currChapterTestIndex - 1);
-  else {
-    var currChapterIndex = this.indexOfChapter(this.currentChapter);
-    if (currChapterIndex > 0)
-      this.goToChapterIndex(currChapterIndex - 1);
-  }
-}
-
-TestSuite.prototype.goToNextIncompleteTest = function()
-{
-  var completedProperty = this.format == 'html4' ? 'completedHTML' : 'completedXHTML';
-
-  // Look to the end of this chapter.
-  for (var i = this.currChapterTestIndex + 1; i < this.currentChapterTests.length; ++i) {
-    if (!this.currentChapterTests[i][completedProperty]) {
-      this.goToTestIndex(i);
-      return;
-    }
-  }
-
-  // Start looking through later chapter
-  var currChapterIndex = this.indexOfChapter(this.currentChapter);
-  for (var c = currChapterIndex + 1; c < kChapterData.length; ++c) {
-    var chapterData = this.chapterAtIndex(c);
-    
-    var testIndex = this.firstIncompleteTestIndex(chapterData);
-    if (testIndex != -1) {
-      this.goToChapterIndex(c);
-      this.goToTestIndex(testIndex);
-      break;
-    }
-  }
-}
-
-TestSuite.prototype.firstIncompleteTestIndex = function(chapter)
-{
-  var completedProperty = this.format == 'html4' ? 'completedHTML' : 'completedXHTML';
-
-  var chapterTests = this.testListForChapter(chapter);
-  for (var i = 0; i < chapterTests.length; ++i) {
-    if (!chapterTests[i][completedProperty])
-      return i;
-  }
-  
-  return -1;
-}
-
-/* ------------------------------------------------------- */
-
-TestSuite.prototype.goToTestByName = function(testName)
-{
-  var match = testName.match(/^(?:(html4|xhtml1)\/)?([\w-_]+)(\.xht|\.htm)?/);
-  if (!match)
-    return false;
-
-  var prefix = match[1];
-  var testId = match[2];
-  var extension = match[3];
-  
-  var format = this.format;
-  if (prefix)
-    format = prefix;
-  else if (extension) {
-    if (extension == kXHTML1Data.suffix)
-      format = kXHTML1Data.path;
-    else if (extension == kHTML4Data.suffix)
-      format = kHTML4Data.path;
-  }
-  
-  this.switchToFormat(format);
-  
-  var test = this.tests[testId];
-  if (!test)
-    return false;
-
-  // Find the first chapter.
-  var links = test.links.split(',');
-  if (links.length == 0) {
-    window.console.log('test ' + test.id + 'had no links.');
-    return false;
-  }
-
-  var firstLink = links[0];
-  var result = firstLink.match(/^([.\w]+)(#.+)?$/);
-  if (result)
-    firstLink = result[1];
-
-  // Find the chapter and index of the test.
-  for (var i = 0; i < kChapterData.length; ++i) {
-    var chapterData = kChapterData[i];
-    if (chapterData.file == firstLink) {
-
-      this.goToChapterIndex(i);
-      
-      for (var j = 0; j < this.currentChapterTests.length; ++j) {
-        var currTest = this.currentChapterTests[j];
-        if (currTest.id == testId) {
-          this.goToTestIndex(j);
-          return true;
-        }
-      }
-    }
-  }
-
-  return false;
-}
-
-TestSuite.prototype.goToTestIndex = function(index)
-{
-  if (index >= 0 && index < this.currentChapterTests.length) {
-    this.currChapterTestIndex = index;
-    this.loadCurrentTest();
-  }
-}
-
-TestSuite.prototype.goToChapterIndex = function(chapterIndex)
-{
-  if (chapterIndex >= 0 && chapterIndex < kChapterData.length) {
-    var chapterFile = kChapterData[chapterIndex].file;
-    this.setSelectedChapter(this.chapters[chapterFile]);
-  }
-}
-
-TestSuite.prototype.currentTestName = function()
-{
-  if (this.currChapterTestIndex < 0 || this.currChapterTestIndex >= this.currentChapterTests.length)
-    return undefined;
-
-  return this.currentChapterTests[this.currChapterTestIndex].id;
-}
-
-TestSuite.prototype.loadCurrentTest = function()
-{
-  var theTest = this.currentChapterTests[this.currChapterTestIndex];
-  if (!theTest) {
-    this.configureForManualTest();
-    this.clearTest();
-    return;
-  }
-
-  if (theTest.reference) {
-    this.configureForRefTest();
-    this.loadRef(theTest);
-  } else {
-    this.configureForManualTest();
-  }
-
-  this.loadTest(theTest);
-
-  this.updateProgressLabel();
-  
-  document.getElementById('test-list').selectedIndex = this.currChapterTestIndex;
-}
-
-TestSuite.prototype.updateProgressLabel = function()
-{
-  document.getElementById('test-index').innerText = this.currChapterTestIndex + 1;
-  document.getElementById('chapter-test-count').innerText = this.currentChapterTests.length;
-}
-
-TestSuite.prototype.configureForRefTest = function()
-{
-  $('#test-content').addClass('with-ref');
-}
-
-TestSuite.prototype.configureForManualTest = function()
-{
-  $('#test-content').removeClass('with-ref');
-}
-
-TestSuite.prototype.loadTest = function(test)
-{
-  var iframe = document.getElementById('test-frame');
-  iframe.src = 'about:blank';
-  
-  var url = this.urlForTest(test.id);
-  window.setTimeout(function() {
-    iframe.src = url;
-  }, 0);
-  
-  document.getElementById('test-title').innerText = test.title;
-  document.getElementById('test-url').innerText = this.pathForTest(test.id);
-  document.getElementById('test-assertion').innerText = test.assertion;
-  document.getElementById('test-flags').innerText = test.flags;
-  
-  this.processFlags(test);
-}
-
-TestSuite.prototype.processFlags = function(test)
-{ 
-  if (test.paged)
-    $('#test-content').addClass('print');
-  else
-    $('#test-content').removeClass('print');
-
-  var showWarning = false;
-  var warning = '';
-  if (test.flags.indexOf('font') != -1)
-    warning = 'Requires a specific font to be installed.';
-  
-  if (test.flags.indexOf('http') != -1) {
-    if (warning != '')
-      warning += ' ';
-    warning += 'Must be tested over HTTP, with custom HTTP headers.';
-  }
-  
-  if (test.paged) {
-    if (warning != '')
-      warning += ' ';
-    warning += 'Test via the browser\'s Print Preview.';
-  }
-
-  document.getElementById('warning').innerText = warning;
-
-  if (warning.length > 0)
-    $('#test-content').addClass('warn');
-  else
-    $('#test-content').removeClass('warn');
-
-}
-
-TestSuite.prototype.clearTest = function()
-{
-  var iframe = document.getElementById('test-frame');
-  iframe.src = 'about:blank';
-  
-  document.getElementById('test-title').innerText = '';
-  document.getElementById('test-url').innerText = '';
-  document.getElementById('test-assertion').innerText = '';
-  document.getElementById('test-flags').innerText = '';
-
-  $('#test-content').removeClass('print');
-  $('#test-content').removeClass('warn');
-  document.getElementById('warning').innerText = '';
-}
-
-TestSuite.prototype.loadRef = function(test)
-{
-  // Suites 20101001 and earlier used .xht refs, even for HTML tests, so strip off
-  // the extension and use the same format as the test.
-  var ref = test.reference.replace(/(\.xht)?$/, '');
-  
-  var iframe = document.getElementById('ref-frame');
-  iframe.src = this.urlForTest(ref);
-}
-
-TestSuite.prototype.pathForTest = function(testName)
-{
-  var prefix = this.formatInfo.path;
-  var suffix = this.formatInfo.suffix;
-  
-  return prefix + '/' + testName + suffix;
-}
-
-TestSuite.prototype.urlForTest = function(testName)
-{
-  return kTestSuiteHome + this.pathForTest(testName);
-}
-
-/* ------------------------------------------------------- */
-
-TestSuite.prototype.recordResult = function(testName, resolution, comment)
-{
-  if (!testName)
-    return;
-
-  this.beginAppendingOutput();
-  this.appendResultToOutput(this.formatInfo, testName, resolution, comment);
-  this.endAppendingOutput();
-  
-  if (comment == undefined)
-    comment = '';
-  
-  this.storeTestResult(testName, this.format, resolution, comment, navigator.userAgent);
-  
-  var htmlStatus = null;
-  var xhtmlStatus = null;
-  if (this.format == 'html4')
-    htmlStatus = resolution;
-  if (this.format == 'xhtml1')
-    xhtmlStatus = resolution;
-
-  this.markTestCompleted(testName, htmlStatus, xhtmlStatus);
-  this.updateTestList();
-
-  this.updateSummaryData();
-  this.updateChapterPopup();
-}
-
-TestSuite.prototype.beginAppendingOutput = function()
-{
-}
-
-TestSuite.prototype.endAppendingOutput = function()
-{
-  var output = document.getElementById('output');
-  output.scrollTop = output.scrollHeight;
-}
-
-TestSuite.prototype.appendResultToOutput = function(formatData, testName, resolution, comment)
-{
-  var output = document.getElementById('output');
-  
-  var result = formatData.path + '/' + testName + formatData.suffix + '\t' + resolution;
-  if (comment)
-    result += '\t(' + comment + ')';
-
-  var line = document.createElement('p');
-  line.className = resolution;
-  line.appendChild(document.createTextNode(result));
-  output.appendChild(line);
-}
-
-TestSuite.prototype.clearOutput = function()
-{
-  document.getElementById('output').innerHTML = '';
-}
-
-/* ------------------------------------------------------- */
-
-TestSuite.prototype.switchToFormat = function(formatString)
-{
-  if (formatString == 'html4')
-    document.harness.format.html4.checked = true;
-  else
-    document.harness.format.xhtml1.checked = true;
-
-  this.formatChanged(formatString);
-}
-
-TestSuite.prototype.formatChanged = function(formatString)
-{
-  if (this.format == formatString)
-    return;
-  
-  this.format = formatString;
-
-  if (formatString == 'html4')
-    this.formatInfo = kHTML4Data;
-  else
-    this.formatInfo = kXHTML1Data;
-
-  // try to keep the current test selected
-  var selectedTestName;
-  if (this.currChapterTestIndex >= 0 && this.currChapterTestIndex < this.currentChapterTests.length)
-    selectedTestName = this.currentChapterTests[this.currChapterTestIndex].id;
-  
-  if (this.currentChapter) {
-    this.buildTestListForChapter(this.currentChapter);
-    this.fillTestList();
-    this.goToTestByName(selectedTestName);
-  }
-
-  this.updateChapterPopup();
-  this.updateTestList();
-  this.updateProgressLabel();
-}
-
-/* ------------------------------------------------------- */
-
-TestSuite.prototype.asyncLoad = function(url, type, handler)
-{
-  $.get(url, handler, type);
-}
-
-/* ------------------------------------------------------- */
-
-TestSuite.prototype.exportResults = function(resultTypeIndex)
-{
-  var resultInfo = kResultsSelector[resultTypeIndex];
-  if (!resultInfo)
-    return;
-
-  resultInfo.exporter(this);
-}
-
-TestSuite.prototype.exportHeader = function()
-{
-  var result = '# Safari 5.0.2' + ' ' + navigator.platform + '\n';
-  result += '# ' + navigator.userAgent + '\n';
-  result += '# http://test.csswg.org/suites/css2.1/' + kTestSuiteVersion + '/\n';
-  result += 'testname\tresult\n';
-
-  return result;
-}
-
-TestSuite.prototype.createExportLine = function(formatData, testName, resolution, comment)
-{
-  var result = formatData.path + '/' + testName + '\t' + resolution;
-  if (comment)
-    result += '\t(' + comment + ')';
-  return result;
-}
-
-TestSuite.prototype.exportQueryComplete = function(data)
-{
-  window.open("data:text/plain," + escape(data))
-}
-
-TestSuite.prototype.resultsPopupChanged = function(index)
-{
-  var resultInfo = kResultsSelector[index];
-  if (!resultInfo)
-    return;
-
-  this.clearOutput();
-  resultInfo.handler(this);
-  
-  var enableExport = resultInfo.exporter != undefined;
-  document.getElementById('export-button').disabled = !enableExport;
-}
-
-/* ------------------------- Import ------------------------------- */
-/*
-  Import format is the same as the export format, namely:
-  
-  testname<tab>result
-
-  with optional trailing <tab>comment.
-
-html4/absolute-non-replaced-height-002<tab>pass
-xhtml1/absolute-non-replaced-height-002<tab>?
-  
-  Lines starting with # are ignored.
-  The "testname<tab>result" line is ignored.
-*/
-TestSuite.prototype.importResults = function(data)
-{
-  var testsToImport = [];
-
-  var lines = data.split('\n');
-  for (var i = 0; i < lines.length; ++i) {
-    var currLine = lines[i];
-    if (currLine.length == 0 || currLine.charAt(0) == '#')
-      continue;
-
-    var match = currLine.match(/^(html4|xhtml1)\/([\w-_]+)\t([\w?]+)\t?(.+)?$/);
-    if (match) {
-      var test = { 'id' : match[2] };
-      test.format =  match[1];
-      test.result = match[3];
-      test.comment = match[4];
-      
-      if (test.result != '?')
-        testsToImport.push(test);
-    } else {
-      window.console.log('failed to match line \'' + currLine + '\'');
-    }
-  }
-
-  this.importTestResults(testsToImport);
-  
-  this.resetTestStatus();
-  this.updateSummaryData();
-}
-
-
-
-/* --------------------- Clear Results --------------------------- */
-/*
-  Clear results format is either same as the export format, or
-  a list of bare test IDs (e.g. absolute-non-replaced-height-001)
-  in which case both HTML4 and XHTML1 results are cleared.
-*/
-TestSuite.prototype.clearResults = function(data)
-{
-  var testsToClear = [];
-
-  var lines = data.split('\n');
-  for (var i = 0; i < lines.length; ++i) {
-    var currLine = lines[i];
-    if (currLine.length == 0 || currLine.charAt(0) == '#')
-      continue;
-
-    // Look for format/test with possible extension
-    var result = currLine.match(/^((html4|xhtml1)?)\/?([\w-_]+)/);
-    if (result) {
-      var testId = result[3];
-      var format = result[1];
-      
-      var clearHTML = format.length == 0 || format == 'html4';
-      var clearXHTML = format.length == 0 || format == 'xhtml1';
-      
-      var result = { 'id' : testId };
-      result.clearHTML = clearHTML;
-      result.clearXHTML = clearXHTML;
-
-      testsToClear.push(result);
-    } else {
-      window.console.log('failed to match line ' + currLine);
-    }
-  }
-  
-  this.clearTestResults(testsToClear);
-  
-  this.resetTestStatus();
-  this.updateSummaryData();
-}
-
-/* -------------------------------------------------------- */
-
-TestSuite.prototype.exportResultsCompletion = function(exportTests)
-{
-  // Lame workaround for ORDER BY not working
-  exportTests.sort(function(a, b) {
-      return a.test.localeCompare(b.test);
-  });
-  
-  var exportLines = [];
-  for (var i = 0; i < exportTests.length; ++i) {
-    var currTest = exportTests[i];
-    if (currTest.html4 != '')
-      exportLines.push(currTest.html4);
-    if (currTest.xhtml1 != '')
-      exportLines.push(currTest.xhtml1);
-  }
-  
-  var exportString = this.exportHeader() + exportLines.join('\n');
-  this.exportQueryComplete(exportString);
-}
-
-/* -------------------------------------------------------- */
-
-TestSuite.prototype.showResultsForCompletedTests = function()
-{
-  this.beginAppendingOutput();
-  
-  var _self = this;
-  this.queryDatabaseForCompletedTests(
-      function(item) {
-        if (item.hstatus)
-          _self.appendResultToOutput(kHTML4Data, item.test, item.hstatus, item.hcomment);
-
-        if (item.xstatus)
-          _self.appendResultToOutput(kXHTML1Data, item.test, item.xstatus, item.xcomment);
-      },
-      function() {
-        _self.endAppendingOutput();
-      }
-    );
-}
-
-TestSuite.prototype.exportResultsForCompletedTests = function()
-{
-  var exportTests = []; // each test will have html and xhtml items on it
-
-  var _self = this;
-  this.queryDatabaseForCompletedTests(
-      function(item) {
-        var htmlLine = '';
-        if (item.hstatus)
-          htmlLine= _self.createExportLine(kHTML4Data, item.test, item.hstatus, item.hcomment);
-
-        var xhtmlLine = '';
-        if (item.xstatus)
-          xhtmlLine = _self.createExportLine(kXHTML1Data, item.test, item.xstatus, item.xcomment);
-
-        exportTests.push({
-          'test' : item.test,
-          'html4' : htmlLine,
-          'xhtml1' : xhtmlLine });
-      },
-      function() {
-        _self.exportResultsCompletion(exportTests);
-      }
-    );
-}
-
-
-/* -------------------------------------------------------- */
-
-TestSuite.prototype.showResultsForAllTests = function()
-{
-  this.beginAppendingOutput();
-
-  var _self = this;
-  this.queryDatabaseForAllTests('test',
-    function(item) {
-      _self.appendResultToOutput(kHTML4Data, item.test, item.hstatus, item.hcomment);
-      _self.appendResultToOutput(kXHTML1Data, item.test, item.xstatus, item.xcomment);
-    },
-    function() {
-      _self.endAppendingOutput();
-    });
-}
-
-TestSuite.prototype.exportResultsForAllTests = function()
-{
-  var exportTests = [];
-
-  var _self = this;
-  this.queryDatabaseForAllTests('test',
-      function(item) {
-        var htmlLine= _self.createExportLine(kHTML4Data, item.test, item.hstatus ? item.hstatus : '?', item.hcomment);
-        var xhtmlLine = _self.createExportLine(kXHTML1Data, item.test, item.xstatus ? item.xstatus : '?', item.xcomment);
-        exportTests.push({
-          'test' : item.test,
-          'html4' : htmlLine,
-          'xhtml1' : xhtmlLine });
-      },
-      function() {
-        _self.exportResultsCompletion(exportTests);
-      }
-    );
-}
-
-/* -------------------------------------------------------- */
-
-TestSuite.prototype.showResultsForTestsNotRun = function()
-{
-  this.beginAppendingOutput();
-
-  var _self = this;
-  this.queryDatabaseForTestsNotRun(
-      function(item) {
-        if (!item.hstatus)
-          _self.appendResultToOutput(kHTML4Data, item.test, '?', item.hcomment);
-        if (!item.xstatus)
-          _self.appendResultToOutput(kXHTML1Data, item.test, '?', item.xcomment);
-      },
-      function() {
-        _self.endAppendingOutput();
-      }
-    );
-}
-
-TestSuite.prototype.exportResultsForTestsNotRun = function()
-{
-  var exportTests = [];
-
-  var _self = this;
-  this.queryDatabaseForTestsNotRun(
-      function(item) {
-        var htmlLine = '';
-        if (!item.hstatus)
-          htmlLine= _self.createExportLine(kHTML4Data, item.test, '?', item.hcomment);
-
-        var xhtmlLine = '';
-        if (!item.xstatus)
-          xhtmlLine = _self.createExportLine(kXHTML1Data, item.test, '?', item.xcomment);
-
-        exportTests.push({
-          'test' : item.test,
-          'html4' : htmlLine,
-          'xhtml1' : xhtmlLine });
-      },
-      function() {
-        _self.exportResultsCompletion(exportTests);
-      }
-    );
-}
-
-/* -------------------------------------------------------- */
-
-TestSuite.prototype.showResultsForTestsWithStatus = function(status)
-{
-  this.beginAppendingOutput();
-
-  var _self = this;
-  this.queryDatabaseForTestsWithStatus(status,
-      function(item) {
-        if (item.hstatus == status)
-          _self.appendResultToOutput(kHTML4Data, item.test, item.hstatus, item.hcomment);
-        if (item.xstatus == status)
-          _self.appendResultToOutput(kXHTML1Data, item.test, item.xstatus, item.xcomment);
-      },
-      function() {
-        _self.endAppendingOutput();
-      }
-    );
-}
-
-TestSuite.prototype.exportResultsForTestsWithStatus = function(status)
-{
-  var exportTests = [];
-
-  var _self = this;
-  this.queryDatabaseForTestsWithStatus(status,
-      function(item) {
-        var htmlLine = '';
-        if (item.hstatus == status)
-          htmlLine= _self.createExportLine(kHTML4Data, item.test, item.hstatus, item.hcomment);
-
-        var xhtmlLine = '';
-        if (item.xstatus == status)
-          xhtmlLine = _self.createExportLine(kXHTML1Data, item.test, item.xstatus, item.xcomment);
-
-        exportTests.push({
-          'test' : item.test,
-          'html4' : htmlLine,
-          'xhtml1' : xhtmlLine });
-      },
-      function() {
-        _self.exportResultsCompletion(exportTests);
-      }
-    );
-}
-
-/* -------------------------------------------------------- */
-
-TestSuite.prototype.showResultsForTestsWithMismatchedResults = function()
-{
-  this.beginAppendingOutput();
-
-  var _self = this;
-  this.queryDatabaseForTestsWithMixedStatus(
-      function(item) {
-        _self.appendResultToOutput(kHTML4Data, item.test, item.hstatus, item.hcomment);
-        _self.appendResultToOutput(kXHTML1Data, item.test, item.xstatus, item.xcomment);
-      },
-      function() {
-        _self.endAppendingOutput();
-      }
-    );
-}
-
-TestSuite.prototype.exportResultsForTestsWithMismatchedResults = function()
-{
-  var exportTests = [];
-
-  var _self = this;
-  this.queryDatabaseForTestsWithMixedStatus(
-      function(item) {
-        var htmlLine= _self.createExportLine(kHTML4Data, item.test, item.hstatus ? item.hstatus : '?', item.hcomment);
-        var xhtmlLine = _self.createExportLine(kXHTML1Data, item.test, item.xstatus ? item.xstatus : '?', item.xcomment);
-        exportTests.push({
-          'test' : item.test,
-          'html4' : htmlLine,
-          'xhtml1' : xhtmlLine });
-      },
-      function() {
-        _self.exportResultsCompletion(exportTests);
-      }
-    );
-}
-
-/* -------------------------------------------------------- */
-
-TestSuite.prototype.markTestCompleted = function(testID, htmlStatus, xhtmlStatus)
-{
-  var test = this.tests[testID];
-  if (!test) {
-    window.console.log('markTestCompleted failed to find test ' + testID);
-    return;
-  }
-
-  if (htmlStatus) {
-    test.completedHTML = true;
-    test.statusHTML = htmlStatus;
-  }
-  if (xhtmlStatus) {
-    test.completedXHTML = true;
-    test.statusXHTML = xhtmlStatus;
-  }
-}
-
-TestSuite.prototype.testCompletionStateChanged = function()
-{
-  this.updateTestList();
-  this.updateChapterPopup();
-}
-
-TestSuite.prototype.loadTestStatus = function()
-{
-  var _self = this;
-  this.queryDatabaseForCompletedTests(
-      function(item) {
-      _self.markTestCompleted(item.test, item.hstatus, item.xstatus);
-      },
-      function() {
-        _self.testCompletionStateChanged();
-      }
-    );
-    
-    this.updateChapterPopup();
-}
-
-TestSuite.prototype.resetTestStatus = function()
-{
-  for (var testID in this.tests) {
-    var currTest = this.tests[testID];
-    currTest.completedHTML = false;
-    currTest.completedXHTML = false;
-  }
-  this.loadTestStatus();
-}
-
-/* -------------------------------------------------------- */
-
-TestSuite.prototype.updateSummaryData = function()
-{
-  this.queryDatabaseForSummary(
-      function(results) {
-        
-        var hTotal, xTotal;
-        var hDone, xDone;
-        
-        for (var i = 0; i < results.length; ++i) {
-          var result = results[i];
-          
-          switch (result.name) {
-            case 'h-total': hTotal = result.count; break;
-            case 'x-total': xTotal = result.count; break;
-            case 'h-tested': hDone = result.count; break;
-            case 'x-tested': xDone = result.count; break;
-          }
-
-          document.getElementById(result.name).innerText = result.count;
-        }
-        
-        // We should get these all together.
-        if (hTotal) {
-          document.getElementById('h-percent').innerText = Math.round(100.0 * hDone / hTotal);
-          document.getElementById('x-percent').innerText = Math.round(100.0 * xDone / xTotal);
-        }
-      }
-    );
-}
-
-/* ------------------------------------------------------- */
-// Database stuff
-
-function errorHandler(transaction, error)
-{
-  alert('Database error: ' + error.message);
-  window.console.log('Database error: ' + error.message);
-}
-
-TestSuite.prototype.openDatabase = function()
-{
-  if (!'openDatabase' in window) {
-    alert('Your browser does not support client-side SQL databases, so results will not be stored.');
-    return;
-  }
-  
-  var _self = this;
-  this.db = window.openDatabase('css21testsuite', '', 'CSS 2.1 test suite results', 10 * 1024 * 1024);
-
-  // Migration handling. We assume migration will happen whenever the suite version changes,
-  // so that we can check for new or obsoleted tests.
-  function creation(tx) {
-    _self.databaseCreated(tx);
-  }
-
-  function migration1_0To1_1(tx) {
-    window.console.log('updating 1.0 to 1.1');
-    // We'll use the 'seen' column to cross-check with testinfo.data.
-    tx.executeSql('ALTER TABLE tests ADD COLUMN seen BOOLEAN DEFAULT \"FALSE\"', null, function() {
-      _self.syncDatabaseWithTestInfoData();
-    }, errorHandler);
-  }
-
-  if (this.db.version == '') {
-    _self.db.changeVersion('', '1.0', creation, null, function() {
-      _self.db.changeVersion('1.0', '1.1', migration1_0To1_1, null, function() {
-        _self.databaseReady();
-      }, errorHandler);
-    }, errorHandler);
-
-    return;
-  }
-
-  if (this.db.version == '1.0') {
-    _self.db.changeVersion('1.0', '1.1', migration1_0To1_1, null, function() {
-      window.console.log('ready')
-      _self.databaseReady();
-    }, errorHandler);
-    return;
-  }
-
-  this.databaseReady();
-}
-
-TestSuite.prototype.databaseCreated = function(tx)
-{
-  window.console.log('databaseCreated');
-  this.populatingDatabase = true;
-
-  // hstatus: HTML4 result
-  // xstatus: XHTML1 result
-  var _self = this;
-  tx.executeSql('CREATE TABLE tests (test PRIMARY KEY UNIQUE, ref, title, flags, links, assertion, hstatus, hcomment, xstatus, xcomment)', null,
-    function(tx, results) {
-      _self.populateDatabaseFromTestInfoData();
-    }, errorHandler);
-}
-
-TestSuite.prototype.databaseReady = function()
-{
-  this.updateSummaryData();
-  this.loadTestStatus();
-}
-
-TestSuite.prototype.storeTestResult = function(test, format, result, comment, useragent)
-{
-  if (!this.db)
-    return;
-
-  this.db.transaction(function (tx) {
-    if (format == 'html4')
-      tx.executeSql('UPDATE tests SET hstatus=?, hcomment=? WHERE test=?\n', [result, comment, test], null, errorHandler);
-    else if (format == 'xhtml1')
-      tx.executeSql('UPDATE tests SET xstatus=?, xcomment=? WHERE test=?\n', [result, comment, test], null, errorHandler);
-  });
-}
-
-TestSuite.prototype.importTestResults = function(results)
-{
-  if (!this.db)
-    return;
-
-  this.db.transaction(function (tx) {
-
-    for (var i = 0; i < results.length; ++i) {
-      var currResult = results[i];
-
-      var query;
-      if (currResult.format == 'html4')
-        query = 'UPDATE tests SET hstatus=?, hcomment=? WHERE test=?\n';
-      else if (currResult.format == 'xhtml1')
-        query = 'UPDATE tests SET xstatus=?, xcomment=? WHERE test=?\n';
-
-      tx.executeSql(query, [currResult.result, currResult.comment, currResult.id], null, errorHandler);
-    }
-  });
-}
-
-TestSuite.prototype.clearTestResults = function(results)
-{
-  if (!this.db)
-    return;
-
-  this.db.transaction(function (tx) {
-    
-    for (var i = 0; i < results.length; ++i) {
-      var currResult = results[i];
-
-      if (currResult.clearHTML)
-        tx.executeSql('UPDATE tests SET hstatus=NULL, hcomment=NULL WHERE test=?\n', [currResult.id], null, errorHandler);
-
-      if (currResult.clearXHTML)
-        tx.executeSql('UPDATE tests SET xstatus=NULL, xcomment=NULL WHERE test=?\n', [currResult.id], null, errorHandler);
-      
-    }
-  });
-}
-
-TestSuite.prototype.populateDatabaseFromTestInfoData = function()
-{
-  if (!this.testInfoLoaded) {
-    window.console.log('Tring to populate database before testinfo.data has been loaded');
-    return;
-  }
-  
-  window.console.log('populateDatabaseFromTestInfoData')
-  var _self = this;
-  this.db.transaction(function (tx) {
-    for (var testID in _self.tests) {
-      var test = _self.tests[testID];
-      // Version 1.0, so no 'seen' column.
-      tx.executeSql('INSERT INTO tests (test, ref, title, flags, links, assertion) VALUES (?, ?, ?, ?, ?, ?)',
-        [test.id, test.reference, test.title, test.flags, test.links, test.assertion], null, errorHandler);
-    }
-    _self.populatingDatabase = false;
-  });
-
-}
-
-TestSuite.prototype.insertTest = function(tx, test)
-{
-  tx.executeSql('INSERT INTO tests (test, ref, title, flags, links, assertion, seen) VALUES (?, ?, ?, ?, ?, ?, ?)',
-    [test.id, test.reference, test.title, test.flags, test.links, test.assertion, 'TRUE'], null, errorHandler);
-}
-
-// Deal with removed/renamed tests in a new version of the suite.
-// self.tests is canonical; the database may contain stale entries.
-TestSuite.prototype.syncDatabaseWithTestInfoData = function()
-{
-  if (!this.testInfoLoaded) {
-    window.console.log('Trying to sync database before testinfo.data has been loaded');
-    return;
-  }
-
-  // Make an object with all tests that we'll use to track new tests.
-  var testsToInsert = {};
-  for (var testId in this.tests) {
-    var currTest = this.tests[testId];
-    testsToInsert[currTest.id] = currTest;
-  }
-  
-  var _self = this;
-  this.db.transaction(function (tx) {
-    // Find tests that are not in the database yet.
-    // (Wasn't able to get INSERT ... IF NOT working.)
-    tx.executeSql('SELECT * FROM tests', [], function(tx, results) {
-      var len = results.rows.length;
-      for (var i = 0; i < len; ++i) {
-        var item = results.rows.item(i);
-        delete testsToInsert[item.test];
-      }
-    }, errorHandler);
-  });
-
-  this.db.transaction(function (tx) {
-    for (var testId in testsToInsert) {
-      var currTest = testsToInsert[testId];
-      window.console.log(currTest.id + ' is new; inserting');
-      _self.insertTest(tx, currTest);
-    }
-  });
-    
-  this.db.transaction(function (tx) {
-    for (var testID in _self.tests)
-      tx.executeSql('UPDATE tests SET seen=\"TRUE\" WHERE test=?\n', [testID], null, errorHandler);
-
-    tx.executeSql('SELECT * FROM tests WHERE seen=\"FALSE\"', [], function(tx, results) {
-      var len = results.rows.length;
-      for (var i = 0; i < len; ++i) {
-        var item = results.rows.item(i);
-        window.console.log('Test ' + item.test + ' was in the database but is no longer in the suite; deleting.');
-      }
-    }, errorHandler);
-
-    // Delete rows for disappeared tests.
-    tx.executeSql('DELETE FROM tests WHERE seen=\"FALSE\"', [], function(tx, results) {
-      _self.populatingDatabase = false;
-      _self.databaseReady();
-    }, errorHandler);
-  });
-}
-
-TestSuite.prototype.queryDatabaseForAllTests = function(sortKey, perRowHandler, completionHandler)
-{
-  if (this.populatingDatabase)
-    return;
-
-  var _self = this;
-  this.db.transaction(function (tx) {
-    if (_self.populatingDatabase)
-      return;
-    var query;
-    var args = [];
-    if (sortKey != '') {
-      query = 'SELECT * FROM tests ORDER BY ? ASC';  // ORDER BY doesn't seem to work
-      args.push(sortKey);
-    }
-    else
-      query = 'SELECT * FROM tests';
-
-    tx.executeSql(query, args, function(tx, results) {
-
-      var len = results.rows.length;
-      for (var i = 0; i < len; ++i)
-        perRowHandler(results.rows.item(i));
-      
-      completionHandler();
-    }, errorHandler);
-  });  
-}
-
-TestSuite.prototype.queryDatabaseForTestsWithStatus = function(status, perRowHandler, completionHandler)
-{
-  if (this.populatingDatabase)
-    return;
-
-  var _self = this;
-  this.db.transaction(function (tx) {
-    if (_self.populatingDatabase)
-      return;
-    tx.executeSql('SELECT * FROM tests WHERE hstatus=? OR xstatus=?', [status, status], function(tx, results) {
-
-      var len = results.rows.length;
-      for (var i = 0; i < len; ++i)
-        perRowHandler(results.rows.item(i));
-      
-      completionHandler();
-    }, errorHandler);
-  });  
-}
-
-TestSuite.prototype.queryDatabaseForTestsWithMixedStatus = function(perRowHandler, completionHandler)
-{
-  if (this.populatingDatabase)
-    return;
-
-  var _self = this;
-  this.db.transaction(function (tx) {
-    if (_self.populatingDatabase)
-      return;
-    tx.executeSql('SELECT * FROM tests WHERE hstatus IS NOT NULL AND xstatus IS NOT NULL AND hstatus <> xstatus', [], function(tx, results) {
-
-      var len = results.rows.length;
-      for (var i = 0; i < len; ++i)
-        perRowHandler(results.rows.item(i));
-      
-      completionHandler();
-    }, errorHandler);
-  });  
-}
-
-TestSuite.prototype.queryDatabaseForCompletedTests = function(perRowHandler, completionHandler)
-{
-  if (this.populatingDatabase)
-    return;
-
-  var _self = this;
-  this.db.transaction(function (tx) {
-    
-    if (_self.populatingDatabase)
-      return;
-
-    tx.executeSql('SELECT * FROM tests WHERE hstatus IS NOT NULL OR xstatus IS NOT NULL', [], function(tx, results) {
-      var len = results.rows.length;
-      for (var i = 0; i < len; ++i)
-        perRowHandler(results.rows.item(i));
-      
-      completionHandler();
-    }, errorHandler);
-  });  
-}
-
-TestSuite.prototype.queryDatabaseForTestsNotRun = function(perRowHandler, completionHandler)
-{
-  if (this.populatingDatabase)
-    return;
-
-  var _self = this;
-  this.db.transaction(function (tx) {
-    if (_self.populatingDatabase)
-      return;
-
-    tx.executeSql('SELECT * FROM tests WHERE hstatus IS NULL OR xstatus IS NULL', [], function(tx, results) {
-
-      var len = results.rows.length;
-      for (var i = 0; i < len; ++i)
-        perRowHandler(results.rows.item(i));
-
-      completionHandler();
-    }, errorHandler);
-  });  
-}
-
-/*
-
-  completionHandler gets called an array of results,
-  which may be some or all of:
-  
-  data = [
-    { 'name' : ,
-      'count' : 
-    },
-  ]
-  
-  where name is one of:
-  
-    'h-total'
-    'h-tested'
-    'h-passed'
-    'h-failed'
-    'h-skipped'
-
-    'x-total'
-    'x-tested'
-    'x-passed'
-    'x-failed'
-    'x-skipped'
-
- */
-
-
-TestSuite.prototype.countTestsWithColumnValue = function(tx, completionHandler, column, value, label)
-{  
-  var allRowsCount = 'COUNT(*)';
-
-  tx.executeSql('SELECT COUNT(*) FROM tests WHERE ' + column + '=?', [value], function(tx, results) {
-    var data = [];
-    if (results.rows.length > 0)
-      data.push({ 'name' : label, 'count' : results.rows.item(0)[allRowsCount] })
-    completionHandler(data);
-  }, errorHandler);
-}
-
-TestSuite.prototype.countTestsWithFlag = function(tx, completionHandler, flag)
-{  
-  var allRowsCount = 'COUNT(*)';
-
-  tx.executeSql('SELECT COUNT(*) FROM tests WHERE flags LIKE \"%' + flag + '%\"', [], function(tx, results) {
-    var rowCount = 0;
-    if (results.rows.length > 0)
-      rowCount = results.rows.item(0)[allRowsCount];
-    completionHandler(rowCount);
-  }, errorHandler);
-}
-
-TestSuite.prototype.queryDatabaseForSummary = function(completionHandler)
-{
-  if (!this.db || this.populatingDatabase)
-    return;
-
-  var _self = this;
-
-  var htmlOnlyTestCount = 0;
-  var xHtmlOnlyTestCount = 0;
-
-  this.db.transaction(function (tx) {
-    if (_self.populatingDatabase)
-      return;
-
-    var allRowsCount = 'COUNT(*)';
-      
-    _self.countTestsWithFlag(tx, function(count) {
-      htmlOnlyTestCount = count;
-    }, 'htmlOnly');
-
-    _self.countTestsWithFlag(tx, function(count) {
-      xHtmlOnlyTestCount = count;
-    }, 'nonHTML');
-  });
-  
-  this.db.transaction(function (tx) {
-    if (_self.populatingDatabase)
-      return;
-
-    var allRowsCount = 'COUNT(*)';
-    var html4RowsCount = 'COUNT(hstatus)';
-    var xhtml1RowsCount = 'COUNT(xstatus)';
-    
-    tx.executeSql('SELECT COUNT(*), COUNT(hstatus), COUNT(xstatus) FROM tests', [], function(tx, results) {
-
-      var data = [];
-      if (results.rows.length > 0) {
-        var rowItem = results.rows.item(0);
-        data.push({ 'name' : 'h-total' , 'count' : rowItem[allRowsCount] - xHtmlOnlyTestCount })
-        data.push({ 'name' : 'x-total' , 'count' : rowItem[allRowsCount] - htmlOnlyTestCount })
-        data.push({ 'name' : 'h-tested', 'count' : rowItem[html4RowsCount] })
-        data.push({ 'name' : 'x-tested', 'count' : rowItem[xhtml1RowsCount] })
-      }
-      completionHandler(data);
-      
-    }, errorHandler);
-
-
-    _self.countTestsWithColumnValue(tx, completionHandler, 'hstatus', 'pass', 'h-passed');
-    _self.countTestsWithColumnValue(tx, completionHandler, 'xstatus', 'pass', 'x-passed');
-
-    _self.countTestsWithColumnValue(tx, completionHandler, 'hstatus', 'fail', 'h-failed');
-    _self.countTestsWithColumnValue(tx, completionHandler, 'xstatus', 'fail', 'x-failed');
-
-    _self.countTestsWithColumnValue(tx, completionHandler, 'hstatus', 'skipped', 'h-skipped');
-    _self.countTestsWithColumnValue(tx, completionHandler, 'xstatus', 'skipped', 'x-skipped');
-
-    _self.countTestsWithColumnValue(tx, completionHandler, 'hstatus', 'invalid', 'h-invalid');
-    _self.countTestsWithColumnValue(tx, completionHandler, 'xstatus', 'invalid', 'x-invalid');
-  });
-}
-
diff --git a/Tools/ChangeLog b/Tools/ChangeLog
deleted file mode 100644
index 675c97d..0000000
--- a/Tools/ChangeLog
+++ /dev/null
@@ -1,35444 +0,0 @@
-2013-03-25  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Remove one more line that was intended to be removed in r146657.
-
-        * Scripts/webkitpy/layout_tests/models/test_run_results.py:
-        (summarize_results):
-
-2013-03-25  Roger Fong  <roger_fong@apple.com>
-
-        No longer run bindings tests on WinEWS bots which are causing hangs on the bots.
-        Re-enable WinEWS tests.
-
-        * Scripts/webkitpy/common/config/ports.py:
-        (WinPort.run_bindings_tests_command):
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (WinEWS):
-
-2013-03-25  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r146793.
-        http://trac.webkit.org/changeset/146793
-        https://bugs.webkit.org/show_bug.cgi?id=113248
-
-        Fix did not work (Requested by rfong on #webkit).
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (WinEWS):
-
-2013-03-25  Ryosuke Niwa  <rniwa@webkit.org>
-
-        REGRESSION(r146657): Test failures reported incorrectly
-        https://bugs.webkit.org/show_bug.cgi?id=113223
-
-        Reviewed by Dirk Pranke.
-
-        The bug was caused by BuildBotPrinter not taking the new behavior into account.
-
-        Fixed the bug by exposing enabled_pixel_tests_in_retry flag via ResultDetails object and have BuildBotPrinter
-        treat ['TEXT', 'IMAGE+TEXT'] as a regular failure when the flag is set true.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.run):
-
-        * Scripts/webkitpy/layout_tests/models/test_run_results.py:
-        (RunDetails.__init__):
-        (summarize_results): Remove the line I intended to remove in r146657.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (logging_run): Return details instead of the exit code.
-        (run_and_capture): Ditto.
-
-        (RunTest.test_full_results_html):
-        (RunTest.test_hung_thread):
-        (RunTest.test_no_tests_found):
-        (RunTest.test_no_tests_found_2):
-        (RunTest.test_repeat_each_iterations_num_tests):
-        (RunTest.test_run_singly_actually_runs_tests):
-        (RunTest.test_test_list):
-        (RunTest.test_missing_and_unexpected_results):
-        (RunTest.test_pixel_test_directories):
-        (RunTest.test_missing_and_unexpected_results_with_custom_exit_code):
-        (RunTest.test_crash_with_stderr):
-        (RunTest.test_no_image_failure_with_image_diff):
-        (RunTest.test_crash_log):
-        (RunTest.test_exit_after_n_failures_upload):
-        (RunTest.test_results_directory_absolute):
-        (RunTest.test_results_directory_relative):
-        (RunTest.test_retrying_and_flaky_tests):
-        (RunTest.test_retrying_force_pixel_tests): Added a test case to ensure enabled_pixel_tests_in_retry is set.
-        (RunTest.test_retrying_uses_retries_directory):
-        (RunTest.test_reftest_should_not_use_naming_convention_if_not_listed_in_reftestlist):
-        (RunTest.test_output_diffs):
-        (EndToEndTest.test_reftest_with_two_notrefs):
-        (RebaselineTest.test_reset_results):
-        (RebaselineTest.test_missing_results):
-        (RebaselineTest.test_new_baseline):
-
-        * Scripts/webkitpy/layout_tests/views/buildbot_results.py:
-        (BuildBotPrinter.print_results):
-        (BuildBotPrinter.print_unexpected_results):
-        (BuildBotPrinter.print_unexpected_results.add_result): Don't treat ['TEXT', 'IMAGE+TEXT'] as flaky
-        when we forced pixel tests in retry (i.e. pixel test was initially disabled).
-
-2013-03-25  Julie Parent  <jparent@chromium.org>
-
-        Dashboard refactor: Move cross dashboard history related code into history.js.
-        https://bugs.webkit.org/show_bug.cgi?id=113104
-
-        Reviewed by Ojan Vafai.
-
-        All functions relating to cross dashboard behavior move from being
-        globals to methods on the history.History object. Names stay the same,
-        except many are made private, ones that should have been constants now
-        are, and the long standing TODO to change "currentState" to 
-        dashboardSpecificState is done.
-        
-        We now create a global history object in dashboard_base, as an 
-        intermediate measure.  Once the dashboard specific code is
-        added to history, each DB will need to create its own, and this
-        global will be eliminated.
-        
-        * TestResultServer/static-dashboards/aggregate_results.js:
-        (handleValidHashParameter):
-        (htmlForBuilder):
-        (rawValuesHTML):
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (parseDashboardSpecificParameters):
-        (defaultValue):
-        (currentBuilderGroupCategory):
-        (currentBuilderGroupName):
-        (handleLocationChange):
-        (expectationsMap):
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (generatePage):
-        (.switch.return):
-        (platformAndBuildType):
-        (individualTests):
-        (substringList):
-        (processMissingAndExtraExpectations):
-        (pathToFailureLog):
-        (showPopupForBuild):
-        (htmlForTestsWithExpectationsButNoFailures):
-        (shouldHideTest):
-        (isCrossBuilderView):
-        (tableHeaders):
-        (htmlForSingleTestRow):
-        (htmlForTableColumnHeader):
-        (generatePageForExpectationsUpdate):
-        (handleUpdate):
-        (nextUpdate):
-        (setUpdateIndex):
-        (htmlForIndividualTestOnAllBuildersWithResultsLinks):
-        (.appendExpectationsItem):
-        (loadExpectations):
-        (.dummyNode.onload):
-        (loadExpectationsLayoutTests):
-        (appendExpectations):
-        (htmlForNavBar):
-        (checkBoxToToggleState):
-        (linkHTMLToToggleState):
-        (generatePageForBuilder):
-        (isInvalidKeyForCrossBuilderView):
-        (handleQueryParameterChange):
-        (showLegend):
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-        (resetGlobals):
-        (test):
-        * TestResultServer/static-dashboards/history.js:
-        (.):
-        * TestResultServer/static-dashboards/history_unittests.js:
-        * TestResultServer/static-dashboards/loader.js:
-        (.):
-        * TestResultServer/static-dashboards/loader_unittests.js:
-        * TestResultServer/static-dashboards/timeline_explorer.js:
-        (generatePage):
-        (initCurrentBuilderTestResults):
-        (selectBuild):
-        (showResultsDelta):
-        * TestResultServer/static-dashboards/treemap.js:
-        (generatePage):
-        (.switch.return):
-        (handleFocus):
-        * TestResultServer/static-dashboards/ui.js:
-
-2013-03-25  Roger Fong  <roger_fong@apple.com>
-
-        Unreviewed. Enable WinEWS tests again.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (WinEWS):
-
-2013-03-25  Dominik Röttsches  <dominik.rottsches@intel.com>
-
-        [HarfBuzz] ICU detection fix in HarfBuzz obsoletes our workaround
-        https://bugs.webkit.org/show_bug.cgi?id=112166
-
-        HarfBuzz 0.9.14 merged my patch for icu detection without
-        pkg-config files, as needed by for example Ubuntu 12.04.
-        This obsoletes our local workaround. Removed it for GTK and EFL.
-
-        Reviewed by Martin Robinson.
-
-        * efl/jhbuild.modules: Patch reference removed, version bumped to 0.9.14.
-        * efl/patches/harfbuzz-icu-detection-fix.patch: Removed.
-        * gtk/jhbuild.modules: Patch reference removed, version bumped to 0.9.14.
-        * gtk/patches/harfbuzz-icu-detection-fix.patch: Removed.
-
-2013-03-22  Kiran Muppala  <cmuppala@apple.com>
-
-        Unreviewed.  Move self from contributor to committer list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-03-22  Ryosuke Niwa  <rniwa@webkit.org>
-
-        EWS should use a human readable port name when uploading layout test archives
-        https://bugs.webkit.org/show_bug.cgi?id=113099
-
-        Reviewed by Dirk Pranke.
-
-        Use new port's object's name() method to report human readable port names.
-        This will also help us resolving the bug to apply layout test results posted by EWS.
-
-        * Scripts/webkitpy/tool/bot/botinfo.py:
-        (BotInfo.__init__): Take port's name.
-        (BotInfo.summary_text):
-
-        * Scripts/webkitpy/tool/bot/botinfo_unittest.py:
-        (BotInfoTest.test_summary_text):
-
-        * Scripts/webkitpy/tool/bot/flakytestreporter.py:
-        (FlakyTestReporter.__init__): Preserve the old behavior since we don't have a real port object here.
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-        (PatchProcessingQueue.__init__): Initialize self._port.
-        (PatchProcessingQueue._upload_results_archive_for_patch): Intansitate a real port object if needed,
-        and use that for the attachment filename and the comment posted.
-
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        (PatchProcessingQueueTest.test_upload_results_archive_for_patch): Port name is updated to be
-        "mac-snowleopard" as expected for TestPort.
-
-2013-03-22  Roger Fong  <roger_fong@apple.com>
-
-        Unreviewed. Turn off EWS test on Win again.
-        The battle continues.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (WinEWS):
-
-2013-03-22  Ryosuke Niwa  <rniwa@webkit.org>
-
-        NRWT: Enable pixel tests when retrying tests
-        https://bugs.webkit.org/show_bug.cgi?id=112898
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.run): Call _force_pixel_tests_if_needed before retrying tests and set pixel_tests False
-        if we've forced pixel tests in the retry.
-        (Manager._run_tests):
-        (Manager._clean_up_run): Fixed the capitalizations.
-        (Manager._force_pixel_tests_if_needed): Added.
-
-        * Scripts/webkitpy/layout_tests/models/test_run_results.py:
-        (_interpret_test_failures): Now that this function maybe called multiple times, only set
-        'image_diff_percent' if it doesn't already exist.
-
-        (summarize_results): When the first attempt resulted in a text failure and the second attempt
-        resulted in image and text failures and we've forced to run pixel tests in the retry run,
-        treat this as a regular regression instead of a flakiness.
-
-        Also update test_dict with retry_result so that image_diff_percent maybe filled in if retry
-        run had image diffs.
-
-        * Scripts/webkitpy/layout_tests/models/test_run_results_unittest.py:
-        (summarized_results):
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (parse_full_results): Moved out of EndToEndTest to be used in test_retrying_force_pixel_tests.
-        Also removed some dead code.
-
-        (RunTest.test_retrying_force_pixel_tests): Added. Assert that we generate and only generate
-        pixel results in retries when pixel tests is turned off. Also assert that image_diff_percent
-        is set and pixel_tests_enabled is set to false.
-        (EndToEndTest.test_reftest_with_two_notrefs):
-
-2013-03-22  Tim Horton  <timothy_horton@apple.com>
-
-        Make it possible to run layout tests on Retina MBP
-        https://bugs.webkit.org/show_bug.cgi?id=93673
-
-        Reviewed by Ryosuke Niwa.
-
-        Use NSWindow SPI and override -backingScaleFactor so that WKTR and DRT
-        windows on 2x machines still run at 1x.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (createWebViewAndOffscreenWindow):
-        Reset the window resolution to 1x on creation.
-        * DumpRenderTree/mac/DumpRenderTreeWindow.h: Add NSWindow details.
-        * DumpRenderTree/mac/DumpRenderTreeWindow.mm:
-        (-[DumpRenderTreeWindow backingScaleFactor]): Override, always return 1.
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (-[WebKitTestRunnerWindow backingScaleFactor]): Override, always return 1.
-        (WTR::PlatformWebView::PlatformWebView):
-        Add NSWindow details, reset the window resolution to 1x on creation.
-
-2013-03-19  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Leak bots shouldn't build
-        https://bugs.webkit.org/show_bug.cgi?id=112774
-
-        Reviewed by Simon Fraser.
-
-        Since leak bots use regular debug builds, there is no need to build on these bots.
-        Simply downloading builds will dramatically improve the cycle time of these bots.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (TestLeaksFactory): Renamed from BuildAndTestLeaksFactory and changed to inherit from
-        TestFactory instead of BuildAndTestFactory.
-
-2013-03-22  Jocelyn Turcotte  <jocelyn.turcotte@digia.com>
-
-        [Qt] Fix the TestWebKitAPI build
-        https://bugs.webkit.org/show_bug.cgi?id=113044
-
-        Reviewed by Tor Arne Vestbø.
-
-        The generate-forwarding-headers script would only be run
-        after the targets in InjectedBundle.pri since the second
-        addStrictSubdirOrderBetween call in
-        Tools/TestWebKitAPI/TestWebKitAPI.pro would overwrite
-        the derived_sources -> injected_bundle order in SUBDIRS.
-
-        Fix it by only moving the dependent target at the end of
-        SUBDIRS, don't touch its dependency.
-
-        * qmake/mkspecs/features/functions.prf:
-
-2013-03-22  Sudarsana Nagineni  <sudarsana.nagineni@intel.com>
-
-        [EFL][WK2] View is not focused when fullscreen mode toggled
-        https://bugs.webkit.org/show_bug.cgi?id=113009
-
-        Reviewed by Laszlo Gombos.
-
-        Set focus on view when fullscreen mode enabled/disabled
-        by FullScreen API.
-
-        * MiniBrowser/efl/main.c:
-        (on_fullscreen_accept):
-        (on_fullscreen_deny):
-
-2013-03-21  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt is no longer saving retry results in the retries/ subdirectory
-        https://bugs.webkit.org/show_bug.cgi?id=112995
-
-        Reviewed by Ojan Vafai.
-
-        I think this has been broken a long time, unfortunately. This
-        patch should fix that.
-
-        In order to do so, I had to pass the directory to use from
-        the Worker object through the SingleTestWriter to the
-        TestResultWriter. While I was plumbing that through, I rationalized
-        the order of the parameter arguments a bit ...
-
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner.py:
-        (Worker._run_single_test):
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (run_single_test):
-        (SingleTestRunner.__init__):
-        (SingleTestRunner._run_compare_test):
-        (SingleTestRunner._run_rebaseline):
-        (SingleTestRunner._run_reftest):
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer.py:
-        (write_test_result):
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer_unittest.py:
-        (TestResultWriterTest.test_reftest_diff_image):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (RunTest.test_retrying_uses_retries_directory):
-
-2013-03-21  Filip Pizlo  <fpizlo@apple.com>
-
-        JSC profiler should have an at-a-glance report of the success of DFG optimization
-        https://bugs.webkit.org/show_bug.cgi?id=112988
-
-        Reviewed by Geoffrey Garen.
-
-        * Scripts/display-profiler-output:
-
-2013-03-21  Dirk Pranke  <dpranke@chromium.org>
-
-        [chromium] Linux ASAN WebKit canary is running out of memory
-        https://bugs.webkit.org/show_bug.cgi?id=112978
-
-        Reviewed by Tony Chang.
-
-        Running the AddressSanitizer on a crash takes a lot of
-        memory, so we should serialize access to it to avoid running
-        out of memory on a machine.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort._get_crash_log):
-        * Scripts/webkitpy/layout_tests/port/http_lock.py:
-        (HttpLock.__init__):
-        (HttpLock.wait_for_httpd_lock):
-
-2013-03-21  Min Qin  <qinmin@chromium.org>
-
-        Cleanup android media layout test code
-        https://bugs.webkit.org/show_bug.cgi?id=112944
-
-        Reviewed by Adam Barth.
-
-        Chromium change: https://codereview.chromium.org/12892010/
-        The current android layout tests are using WebmediaPlayerInProcessAndroid class.
-        The code path has been largely diverged from that of the WebMediaPlayerImplAndroid.
-        It is not worth the effort to keep the code path, and the layout tests will not reflect the actual behavior on the browser.
-        Instead, we should switch to use content shell for layout tests.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetTestController):
-
-2013-03-21  Dirk Pranke  <dpranke@chromium.org>
-
-        [chromium] add missing project dependencies to DRT to fix Mac Valgrind
-        https://bugs.webkit.org/show_bug.cgi?id=112953
-
-        Reviewed by Tony Chang.
-
-        When I created the DumpRenderTree_resources target in r144863 I
-        forgot to declare the needed dependencies on the other resource
-        targets. Due to a quirk of ordering, this appears to have been fine
-        w/ ninja but not w/ Xcode (which is still being used on the chromium
-        mac valgrind bots). Declaring the dependencies fixes the build
-        failures.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2013-03-21  Brent Fulgham  <bfulgham@webkit.org>
-
-        [WinCairo] Correct assert in Empty BitmapImage Test.
-        https://bugs.webkit.org/show_bug.cgi?id=112934
-
-        Reviewed by Tim Horton.
-
-        * TestWebKitAPI/Tests/WebCore/win/BitmapImage.cpp:
-        (TestWebKitAPI::TEST): Use proper RefPtr and adoptRef
-        to avoid ref counting assertion when leaving test scope.
-
-2013-03-21  Zan Dobersek  <zdobersek@igalia.com>
-
-        [GTK] generate-feature-defines-files is incompatible with Python3
-        https://bugs.webkit.org/show_bug.cgi?id=112956
-
-        Reviewed by Martin Robinson.
-
-        Make the generate-feature-defines-files compatible with Python3 by calling the items()
-        method on the dictionary objects when iterating through said dictionaries.
-
-        * gtk/generate-feature-defines-files:
-        (write_feature_defines_header):
-        (write_flattened_feature_defines_file):
-
-2013-03-20  Ryosuke Niwa  <rniwa@webkit.org>
-
-        kill-old-processes spits out error messages on Mac
-        https://bugs.webkit.org/show_bug.cgi?id=112878
-
-        Reviewed by Jessie Berlin.
-
-        Use grep -E instead of grep -P since grep on Mac doesn't seem to support the latter even though it's
-        included in the list of options grep --help shows.
-
-        Also use double-slash in escaping ++ in clang++ since the slashes needs to escape + inside the shell.
-
-        * BuildSlaveSupport/kill-old-processes:
-        (main):
-
-2013-03-21  Alberto Garcia  <agarcia@igalia.com>
-
-        [BlackBerry] AccessibilityUIElement: add dummy implementations of scroll methods
-        https://bugs.webkit.org/show_bug.cgi?id=112597
-
-        Reviewed by Xan Lopez.
-
-        These were introduced for the Chromium port in r105295. We need
-        dummy implementations in order to compile the BlackBerry port.
-
-        * DumpRenderTree/blackberry/AccessibilityUIElementBlackBerry.cpp:
-        (AccessibilityUIElement::scrollToMakeVisible):
-        (AccessibilityUIElement::scrollToMakeVisibleWithSubFocus):
-        (AccessibilityUIElement::scrollToGlobalPoint):
-
-2013-03-21  Roger Fong  <roger_fong@apple.com>
-
-        Re-enable WinEWS tests following r146376.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (WinEWS):
-
-2013-03-21  Zoltan Horvath  <zoltan@webkit.org>
-
-        Unreviewed. Add Bem Jones-Bey to the list of contributors.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-03-21  Claudio Saavedra  <csaavedra@igalia.com>
-
-        [GTK] Missing atk in install-dependencies script
-        https://bugs.webkit.org/show_bug.cgi?id=112272
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * gtk/install-dependencies: Add missing atk dependency.
-
-2013-03-21  Claudio Saavedra  <csaavedra@igalia.com>
-
-        [GTK] Missing backslash in install-dependencies script
-        https://bugs.webkit.org/show_bug.cgi?id=112907
-
-        Reviewed by Philippe Normand.
-
-        * gtk/install-dependencies: Add missing backslash to dependencies
-        list.
-
-2013-03-20  Ryosuke Niwa  <rniwa@webkit.org>
-
-        EWS bots have stopped uploading results to bugzilla
-        https://bugs.webkit.org/show_bug.cgi?id=101091
-
-        Reviewed by Adam Barth.
-
-        The bug was caused by LayoutTestResultsReader passing a relative file path to the archive zip
-        to workspace.archive_zip. Because archive_zip uses the results directory as the working directory,
-        this relative file path resoled to a file inside a non-existent directory for "zip".
-
-        Fixed the bug by resolving both test results directory and zip archive paths in
-        LayoutTestResultsReader.archive.
-
-        Also made workspace.create_zip print the source_path so that we may debug these issues more easily
-        in the future.
-
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        (MockFileSystem.splitext): Don't assume the entire file path is a file extension when there is no ".".
-
-        * Scripts/webkitpy/common/system/workspace.py:
-        (Workspace.create_zip): Log the source path when "zip" failed.
-
-        * Scripts/webkitpy/common/system/workspace_mock.py:
-        (MockWorkspace.create_zip): Record zip_path and source_path for testing.
-
-        * Scripts/webkitpy/common/system/workspace_unittest.py:
-        (WorkspaceTest.test_create_zip_exception): Test that.
-
-        * Scripts/webkitpy/tool/bot/layouttestresultsreader.py:
-        (LayoutTestResultsReader.archive): Resolve paths before passing them to workspace.create_zip.
-        This is the actual bug fix.
-
-        * Scripts/webkitpy/tool/bot/layouttestresultsreader_unittest.py:
-        (test_archive_last_layout_test_results_with_relative_path): Added a test case.
-
-2013-03-20  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move WebThemeEngine implementations to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=112751
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h:
-        (WebKit):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        (WebTestRunner::TestInterfaces::themeEngine):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.h:
-        (WebKit):
-        (TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestRunner::WebTestInterfaces::themeEngine):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestThemeControlWin.cpp: Renamed from Tools/DumpRenderTree/chromium/WebThemeControlDRTWin.cpp.
-        (WebTestRunner::WebTestThemeControlWin::WebTestThemeControlWin):
-        (WebTestRunner):
-        (WebTestRunner::WebTestThemeControlWin::~WebTestThemeControlWin):
-        (WebTestRunner::WebTestThemeControlWin::box):
-        (WebTestRunner::WebTestThemeControlWin::line):
-        (WebTestRunner::WebTestThemeControlWin::triangle):
-        (WebTestRunner::WebTestThemeControlWin::roundRect):
-        (WebTestRunner::WebTestThemeControlWin::oval):
-        (WebTestRunner::WebTestThemeControlWin::circle):
-        (WebTestRunner::WebTestThemeControlWin::nestedBoxes):
-        (WebTestRunner::WebTestThemeControlWin::markState):
-        (WebTestRunner::WebTestThemeControlWin::draw):
-        (WebTestRunner::WebTestThemeControlWin::drawTextField):
-        (WebTestRunner::WebTestThemeControlWin::drawProgressBar):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestThemeControlWin.h: Renamed from Tools/DumpRenderTree/chromium/WebThemeControlDRTWin.h.
-        (WebTestRunner):
-        (WebTestThemeControlWin):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestThemeEngineMac.h: Renamed from Tools/DumpRenderTree/chromium/WebThemeEngineDRTMac.h.
-        (WebTestRunner):
-        (WebTestThemeEngineMac):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestThemeEngineMac.mm: Renamed from Tools/DumpRenderTree/chromium/WebThemeEngineDRTMac.mm.
-        (+[FakeActiveWindow alwaysActiveWindow]):
-        (+[FakeActiveWindow alwaysInactiveWindow]):
-        (-[FakeActiveWindow initWithActiveControls:]):
-        (-[FakeActiveWindow _hasActiveControls]):
-        (WebTestRunner::WebTestThemeEngineMac::paintScrollbarThumb):
-        (WebTestRunner):
-        (WebTestRunner::WebTestThemeEngineMac::paintHIThemeScrollbarThumb):
-        (WebTestRunner::WebTestThemeEngineMac::paintNSScrollerScrollbarThumb):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestThemeEngineWin.cpp: Added.
-        (WebTestRunner::WebTestThemeEngineWin::paintButton):
-        (WebTestRunner):
-        (WebTestRunner::WebTestThemeEngineWin::paintMenuList):
-        (WebTestRunner::WebTestThemeEngineWin::paintScrollbarArrow):
-        (WebTestRunner::WebTestThemeEngineWin::paintScrollbarThumb):
-        (WebTestRunner::WebTestThemeEngineWin::paintScrollbarTrack):
-        (WebTestRunner::WebTestThemeEngineWin::paintSpinButton):
-        (WebTestRunner::WebTestThemeEngineWin::paintTextField):
-        (WebTestRunner::WebTestThemeEngineWin::paintTrackbar):
-        (WebTestRunner::WebTestThemeEngineWin::paintProgressBar):
-        (WebTestRunner::WebTestThemeEngineWin::getSize):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestThemeEngineWin.h: Renamed from Tools/DumpRenderTree/chromium/WebThemeEngineDRTWin.h.
-        (WebTestRunner):
-        (WebTestThemeEngineWin):
-        (WebTestRunner::WebTestThemeEngineWin::WebTestThemeEngineWin):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::initialize):
-        * DumpRenderTree/chromium/TestShell.h:
-        (WebKit):
-        * DumpRenderTree/chromium/TestShellMac.mm:
-        (platformInit):
-        * DumpRenderTree/chromium/TestShellWin.cpp:
-        (platformInit):
-        * DumpRenderTree/chromium/WebThemeEngineDRTWin.cpp: Removed.
-
-2013-03-20  Brent Fulgham  <bfulgham@webkit.org>
-
-        [WinCairo] Unreviewed build fix for TestWebKitAPI under VS2010
-
-        * TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPICommonWinCairo.props: Added.
-        New property sheet that does not link against CoreFoundation and
-        CFNetwork.
-        * TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIDebugWinCairo.props:
-        Use new TestWebKitAPICommonWinCairo property sheet.
-        * TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIReleaseWinCairo.props:
-        Ditto.
-
-2013-03-20  Brent Fulgham  <bfulgham@webkit.org>
-
-        [WinCairo] Unreviewed build fix for VS2010.
-
-        Had to add WinCairo-specific property sheets to deal with some
-        library and path differences with the main Apple port.
-
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTree.vcxproj:
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeDebugWinCairo.props:
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeReleaseWinCairo.props:
-        * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffCommonWinCairo.props: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffDebugWinCairo.props: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffReleaseWinCairo.props: Added.
-
-2013-03-20  Benjamin Poulain  <bpoulain@apple.com>
-
-        [WK2] Remove VIEW_MODE_CSS_MEDIA from WebKit2
-        https://bugs.webkit.org/show_bug.cgi?id=112849
-
-        Reviewed by Sam Weinig.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-
-2013-03-20  Brent Fulgham  <bfulgham@webkit.org>
-
-        [WinCairo] Build WebKit Tools under VS2010
-        https://bugs.webkit.org/show_bug.cgi?id=112821
-
-        Reviewed by Tim Horton.
-
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTree.vcxproj:
-        Add WinCairo-specific build target.
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeDebugWinCairo.props: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncher.vcxproj: Add WinCairo-specific build target.
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeReleaseWinCairo.props: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeWinCairo.props: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiff.vcxproj:
-        Add WinCairo-specific build target.
-        * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncher.vcxproj:
-        * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePlugin.vcxproj:
-        Add WinCairo-specific build target.
-        * TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPI.vcxproj: Add
-        WinCairo-specific build target.
-        * TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIDebugWinCairo.props: Added.
-        * TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIReleaseWinCairo.props: Added.
-        * WinLauncher/WinLauncher.vcxproj/WinLauncher.vcxproj: Add WinCairo-
-        specific build target.
-        * WinLauncher/WinLauncher.vcxproj/WinLauncherLib.vcxproj: Add
-        WinCairo-specific build target.
-        * win/record-memory/record-memory.vcxproj: Add WinCairo target.
-        * win/record-memory/record-memoryDebugWinCairo.props: Added.
-        * win/record-memory/record-memoryReleaseWinCairo.props: Added.
-
-2013-03-20  Roger Fong  <roger_fong@apple.com>
-
-        API test gardening AppleWin port.
-
-        The BitmapImageEmptyFrameTest should only be tested on Cairo not on AppleWin port.
-
-        * TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPI.vcxproj:
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-
-2013-03-20  Roger Fong  <roger_fong@apple.com>
-
-        Test fix for Win EWS bots, catch various errors and restart script if necessary.
-
-        * EWSTools/start-queue-win.sh:
-
-2013-03-20  Sami Kyostila  <skyostil@chromium.org>
-
-        Unreviewed, add myself to committers.py.
-
-2013-03-20  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
-
-        Unreviewed. Adding another email for me.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-03-20  Justin Novosad  <junov@google.com>
-
-        [Chromium] Code cleanup: removing support for non-deferred 2d canvas rendering
-        https://bugs.webkit.org/show_bug.cgi?id=112605
-
-        Reviewed by James Robinson.
-
-        Deleting all the code that was used for propagating and supporting
-        the Chromium setting for disabling deferred 2d canvas rendering.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/TestRunner/public/WebPreferences.h:
-        * DumpRenderTree/chromium/TestRunner/src/WebPreferences.cpp:
-        (WebTestRunner::WebPreferences::reset):
-        (WebTestRunner::WebPreferences::applyTo):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::resetWebSettings):
-        (TestShell::runFileTest):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell):
-
-2013-03-20  Ádám Kallai  <kadam@inf.u-szeged.hu>
-
-        [Qt] Qt 4.8 tool related stuff removal from webkitpy.
-        https://bugs.webkit.org/show_bug.cgi?id=112699.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort._search_paths):
-        (QtPort._port_specific_expectations_files):
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        (QtPortTest):
-        (QtPortTest._assert_search_path):
-        (QtPortTest._assert_expectations_files):
-
-2013-03-19  Allan Sandfeld Jensen  <allan.jensen@digia.com>
-
-        [Qt] Enable kerning by default
-        https://bugs.webkit.org/show_bug.cgi?id=112704
-
-        Reviewed by Jocelyn Turcotte.
-
-        Disable kerning by default, since some reference test expectations
-        expect kerning to be default off.
-
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        (TestRunnerQt::reset):
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-        (WTR::activateFonts):
-
-2013-03-20  Zeno Albisser  <zeno@webkit.org>
-
-        [Qt] Remove empty function stubs from TestRunnerQt.
-        https://bugs.webkit.org/show_bug.cgi?id=112799
-
-        We are reducing the code in TestRunnerQt step by step,
-        in order to finally replace all of it with the generic
-        TestRunner implementation.
-        This patch removes several simple function stubs that
-        currently do not implement any actual functionality.
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunnerQt):
-
-2013-03-20  Sudarsana Nagineni  <sudarsana.nagineni@intel.com>
-
-        [EFL][WK2] Don't show the SearchBar by default when MiniBrowser opened
-        https://bugs.webkit.org/show_bug.cgi?id=112687
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Hide the SearchBar by default on window creation.
-
-        * MiniBrowser/efl/main.c:
-        (window_create):
-
-2013-03-20  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r146304.
-        http://trac.webkit.org/changeset/146304
-        https://bugs.webkit.org/show_bug.cgi?id=112788
-
-        to many expectations to update (Requested by antonm on
-        #webkit).
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h:
-        (WebKit):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.h:
-        (TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/WebTestThemeEngineWin.cpp: Removed.
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::initialize):
-        * DumpRenderTree/chromium/TestShell.h:
-        (WebKit):
-        * DumpRenderTree/chromium/TestShellMac.mm:
-        (platformInit):
-        * DumpRenderTree/chromium/TestShellWin.cpp:
-        (platformInit):
-        * DumpRenderTree/chromium/WebThemeControlDRTWin.cpp: Renamed from Tools/DumpRenderTree/chromium/TestRunner/src/WebTestThemeControlWin.cpp.
-        (WebThemeControlDRTWin::WebThemeControlDRTWin):
-        (WebThemeControlDRTWin::~WebThemeControlDRTWin):
-        (WebThemeControlDRTWin::box):
-        (WebThemeControlDRTWin::line):
-        (WebThemeControlDRTWin::triangle):
-        (WebThemeControlDRTWin::roundRect):
-        (WebThemeControlDRTWin::oval):
-        (WebThemeControlDRTWin::circle):
-        (WebThemeControlDRTWin::nestedBoxes):
-        (WebThemeControlDRTWin::markState):
-        (WebThemeControlDRTWin::draw):
-        (WebThemeControlDRTWin::drawTextField):
-        (WebThemeControlDRTWin::drawProgressBar):
-        * DumpRenderTree/chromium/WebThemeControlDRTWin.h: Renamed from Tools/DumpRenderTree/chromium/TestRunner/src/WebTestThemeControlWin.h.
-        (WebThemeControlDRTWin):
-        * DumpRenderTree/chromium/WebThemeEngineDRTMac.h: Renamed from Tools/DumpRenderTree/chromium/TestRunner/src/WebTestThemeEngineMac.h.
-        (WebThemeEngineDRTMac):
-        * DumpRenderTree/chromium/WebThemeEngineDRTMac.mm: Renamed from Tools/DumpRenderTree/chromium/TestRunner/src/WebTestThemeEngineMac.mm.
-        (+[FakeActiveWindow alwaysActiveWindow]):
-        (+[FakeActiveWindow alwaysInactiveWindow]):
-        (-[FakeActiveWindow initWithActiveControls:]):
-        (-[FakeActiveWindow _hasActiveControls]):
-        (WebThemeEngineDRTMac::paintScrollbarThumb):
-        (stateToHIEnableState):
-        (WebThemeEngineDRTMac::paintHIThemeScrollbarThumb):
-        (WebThemeEngineDRTMac::paintNSScrollerScrollbarThumb):
-        * DumpRenderTree/chromium/WebThemeEngineDRTWin.cpp: Added.
-        (webRectToSkIRect):
-        (drawControl):
-        (drawTextField):
-        (drawProgressBar):
-        (WebThemeEngineDRTWin::paintButton):
-        (WebThemeEngineDRTWin::paintMenuList):
-        (WebThemeEngineDRTWin::paintScrollbarArrow):
-        (WebThemeEngineDRTWin::paintScrollbarThumb):
-        (WebThemeEngineDRTWin::paintScrollbarTrack):
-        (WebThemeEngineDRTWin::paintSpinButton):
-        (WebThemeEngineDRTWin::paintTextField):
-        (WebThemeEngineDRTWin::paintTrackbar):
-        (WebThemeEngineDRTWin::paintProgressBar):
-        (WebThemeEngineDRTWin::getSize):
-        * DumpRenderTree/chromium/WebThemeEngineDRTWin.h: Renamed from Tools/DumpRenderTree/chromium/TestRunner/src/WebTestThemeEngineWin.h.
-        (WebThemeEngineDRTWin):
-        (WebThemeEngineDRTWin::WebThemeEngineDRTWin):
-
-2013-03-19  Allan Sandfeld Jensen  <allan.jensen@digia.com>
-
-        [Qt] Support -webkit-font-smoothing
-        https://bugs.webkit.org/show_bug.cgi?id=106009
-
-        Reviewed by Jocelyn Turcotte.
-
-        Set shouldUseFontSmoothing to false to match WebKitTestRunner.
-
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        (TestRunnerQt::reset):
-
-2013-03-20  Krzysztof Czech  <k.czech@samsung.com>
-
-        [GTK] accessibility/aria-scrollbar-role.html is failing
-        https://bugs.webkit.org/show_bug.cgi?id=98358
-
-        Reviewed by Martin Robinson.
-
-        Adds support for checking accessibility object's orientation.
-        Orientation is checked by retrieving proper state of accessibility object.
-
-        * DumpRenderTree/atk/AccessibilityUIElementAtk.cpp:
-        (checkElementState):
-        (AccessibilityUIElement::orientation):
-        * WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp:
-        (WTR::AccessibilityUIElement::orientation):
-
-2013-03-19  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move WebThemeEngine implementations to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=112751
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h:
-        (WebKit):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        (WebTestRunner::TestInterfaces::themeEngine):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.h:
-        (WebKit):
-        (TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestRunner::WebTestInterfaces::themeEngine):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestThemeControlWin.cpp: Renamed from Tools/DumpRenderTree/chromium/WebThemeControlDRTWin.cpp.
-        (WebTestRunner::WebTestThemeControlWin::WebTestThemeControlWin):
-        (WebTestRunner):
-        (WebTestRunner::WebTestThemeControlWin::~WebTestThemeControlWin):
-        (WebTestRunner::WebTestThemeControlWin::box):
-        (WebTestRunner::WebTestThemeControlWin::line):
-        (WebTestRunner::WebTestThemeControlWin::triangle):
-        (WebTestRunner::WebTestThemeControlWin::roundRect):
-        (WebTestRunner::WebTestThemeControlWin::oval):
-        (WebTestRunner::WebTestThemeControlWin::circle):
-        (WebTestRunner::WebTestThemeControlWin::nestedBoxes):
-        (WebTestRunner::WebTestThemeControlWin::markState):
-        (WebTestRunner::WebTestThemeControlWin::draw):
-        (WebTestRunner::WebTestThemeControlWin::drawTextField):
-        (WebTestRunner::WebTestThemeControlWin::drawProgressBar):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestThemeControlWin.h: Renamed from Tools/DumpRenderTree/chromium/WebThemeControlDRTWin.h.
-        (WebTestRunner):
-        (WebTestThemeControlWin):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestThemeEngineMac.h: Renamed from Tools/DumpRenderTree/chromium/WebThemeEngineDRTMac.h.
-        (WebTestRunner):
-        (WebTestThemeEngineMac):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestThemeEngineMac.mm: Renamed from Tools/DumpRenderTree/chromium/WebThemeEngineDRTMac.mm.
-        (+[FakeActiveWindow alwaysActiveWindow]):
-        (+[FakeActiveWindow alwaysInactiveWindow]):
-        (-[FakeActiveWindow initWithActiveControls:]):
-        (-[FakeActiveWindow _hasActiveControls]):
-        (WebTestRunner::WebTestThemeEngineMac::paintScrollbarThumb):
-        (WebTestRunner):
-        (WebTestRunner::WebTestThemeEngineMac::paintHIThemeScrollbarThumb):
-        (WebTestRunner::WebTestThemeEngineMac::paintNSScrollerScrollbarThumb):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestThemeEngineWin.cpp: Added.
-        (WebTestRunner::WebTestThemeEngineWin::paintButton):
-        (WebTestRunner):
-        (WebTestRunner::WebTestThemeEngineWin::paintMenuList):
-        (WebTestRunner::WebTestThemeEngineWin::paintScrollbarArrow):
-        (WebTestRunner::WebTestThemeEngineWin::paintScrollbarThumb):
-        (WebTestRunner::WebTestThemeEngineWin::paintScrollbarTrack):
-        (WebTestRunner::WebTestThemeEngineWin::paintSpinButton):
-        (WebTestRunner::WebTestThemeEngineWin::paintTextField):
-        (WebTestRunner::WebTestThemeEngineWin::paintTrackbar):
-        (WebTestRunner::WebTestThemeEngineWin::paintProgressBar):
-        (WebTestRunner::WebTestThemeEngineWin::getSize):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestThemeEngineWin.h: Renamed from Tools/DumpRenderTree/chromium/WebThemeEngineDRTWin.h.
-        (WebTestRunner):
-        (WebTestThemeEngineWin):
-        (WebTestRunner::WebTestThemeEngineWin::WebTestThemeEngineWin):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::initialize):
-        * DumpRenderTree/chromium/TestShell.h:
-        (WebKit):
-        * DumpRenderTree/chromium/TestShellMac.mm:
-        (platformInit):
-        * DumpRenderTree/chromium/TestShellWin.cpp:
-        (platformInit):
-        * DumpRenderTree/chromium/WebThemeEngineDRTWin.cpp: Removed.
-
-2013-03-19  Tony Chang  <tony@chromium.org>
-
-        Move testRunner.setTouchDragDropEnabled to internals.settings
-        https://bugs.webkit.org/show_bug.cgi?id=112739
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner): Remove unnecessary code.
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner): Remove unnecessary code.
-        * DumpRenderTree/chromium/TestRunner/src/WebPreferences.cpp:
-        (WebTestRunner::WebPreferences::reset):
-        (WebTestRunner::WebPreferences::applyTo): Always set to false.
-
-2013-03-19  Mark Pilgrim  <pilgrim@chromium.org>
-
-        [Chromium] Migrate to WEBKIT_USE_NEW_WEBFILESYSTEMTYPE
-        https://bugs.webkit.org/show_bug.cgi?id=112754
-
-        Reviewed by Darin Fisher.
-
-        Remove old code behind ifndef WEBKIT_USE_NEW_WEBFILESYSTEMTYPE
-        now that it's always defined.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-03-19  Kenneth Russell  <kbr@google.com>
-
-        Unreviewed, rolling out r146290.
-        http://trac.webkit.org/changeset/146290
-        https://bugs.webkit.org/show_bug.cgi?id=112751
-
-        Broke Chromium Mac build.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h:
-        (WebKit):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.h:
-        (TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/WebTestThemeEngineWin.cpp: Removed.
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::initialize):
-        * DumpRenderTree/chromium/TestShell.h:
-        (WebKit):
-        * DumpRenderTree/chromium/TestShellMac.mm:
-        (platformInit):
-        * DumpRenderTree/chromium/TestShellWin.cpp:
-        (platformInit):
-        * DumpRenderTree/chromium/WebThemeControlDRTWin.cpp: Renamed from Tools/DumpRenderTree/chromium/TestRunner/src/WebTestThemeControlWin.cpp.
-        (WebThemeControlDRTWin::WebThemeControlDRTWin):
-        (WebThemeControlDRTWin::~WebThemeControlDRTWin):
-        (WebThemeControlDRTWin::box):
-        (WebThemeControlDRTWin::line):
-        (WebThemeControlDRTWin::triangle):
-        (WebThemeControlDRTWin::roundRect):
-        (WebThemeControlDRTWin::oval):
-        (WebThemeControlDRTWin::circle):
-        (WebThemeControlDRTWin::nestedBoxes):
-        (WebThemeControlDRTWin::markState):
-        (WebThemeControlDRTWin::draw):
-        (WebThemeControlDRTWin::drawTextField):
-        (WebThemeControlDRTWin::drawProgressBar):
-        * DumpRenderTree/chromium/WebThemeControlDRTWin.h: Renamed from Tools/DumpRenderTree/chromium/TestRunner/src/WebTestThemeControlWin.h.
-        (WebThemeControlDRTWin):
-        * DumpRenderTree/chromium/WebThemeEngineDRTMac.h: Renamed from Tools/DumpRenderTree/chromium/TestRunner/src/WebTestThemeEngineMac.h.
-        (WebThemeEngineDRTMac):
-        * DumpRenderTree/chromium/WebThemeEngineDRTMac.mm: Renamed from Tools/DumpRenderTree/chromium/TestRunner/src/WebTestThemeEngineMac.mm.
-        (+[FakeActiveWindow alwaysActiveWindow]):
-        (+[FakeActiveWindow alwaysInactiveWindow]):
-        (-[FakeActiveWindow initWithActiveControls:]):
-        (-[FakeActiveWindow _hasActiveControls]):
-        (WebThemeEngineDRTMac::paintScrollbarThumb):
-        (stateToHIEnableState):
-        (WebThemeEngineDRTMac::paintHIThemeScrollbarThumb):
-        (WebThemeEngineDRTMac::paintNSScrollerScrollbarThumb):
-        * DumpRenderTree/chromium/WebThemeEngineDRTWin.cpp: Added.
-        (webRectToSkIRect):
-        (drawControl):
-        (drawTextField):
-        (drawProgressBar):
-        (WebThemeEngineDRTWin::paintButton):
-        (WebThemeEngineDRTWin::paintMenuList):
-        (WebThemeEngineDRTWin::paintScrollbarArrow):
-        (WebThemeEngineDRTWin::paintScrollbarThumb):
-        (WebThemeEngineDRTWin::paintScrollbarTrack):
-        (WebThemeEngineDRTWin::paintSpinButton):
-        (WebThemeEngineDRTWin::paintTextField):
-        (WebThemeEngineDRTWin::paintTrackbar):
-        (WebThemeEngineDRTWin::paintProgressBar):
-        (WebThemeEngineDRTWin::getSize):
-        * DumpRenderTree/chromium/WebThemeEngineDRTWin.h: Renamed from Tools/DumpRenderTree/chromium/TestRunner/src/WebTestThemeEngineWin.h.
-        (WebThemeEngineDRTWin):
-        (WebThemeEngineDRTWin::WebThemeEngineDRTWin):
-
-2013-03-19  Krzysztof Czech  <k.czech@samsung.com>
-
-        [EFL] canvas-fallback-content.html is failing
-        https://bugs.webkit.org/show_bug.cgi?id=111998
-
-        Reviewed by Chris Fleizach.
-
-        Adds support for getting platform name.
-
-        * DumpRenderTree/TestRunner.cpp:
-        (TestRunner::staticValues):
-        * DumpRenderTree/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        (TestRunner::platformName):
-
-2013-03-19  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move WebThemeEngine implementations to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=112751
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h:
-        (WebKit):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        (WebTestRunner::TestInterfaces::themeEngine):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.h:
-        (WebKit):
-        (TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestRunner::WebTestInterfaces::themeEngine):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestThemeControlWin.cpp: Renamed from Tools/DumpRenderTree/chromium/WebThemeControlDRTWin.cpp.
-        (WebTestRunner::WebTestThemeControlWin::WebTestThemeControlWin):
-        (WebTestRunner):
-        (WebTestRunner::WebTestThemeControlWin::~WebTestThemeControlWin):
-        (WebTestRunner::WebTestThemeControlWin::box):
-        (WebTestRunner::WebTestThemeControlWin::line):
-        (WebTestRunner::WebTestThemeControlWin::triangle):
-        (WebTestRunner::WebTestThemeControlWin::roundRect):
-        (WebTestRunner::WebTestThemeControlWin::oval):
-        (WebTestRunner::WebTestThemeControlWin::circle):
-        (WebTestRunner::WebTestThemeControlWin::nestedBoxes):
-        (WebTestRunner::WebTestThemeControlWin::markState):
-        (WebTestRunner::WebTestThemeControlWin::draw):
-        (WebTestRunner::WebTestThemeControlWin::drawTextField):
-        (WebTestRunner::WebTestThemeControlWin::drawProgressBar):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestThemeControlWin.h: Renamed from Tools/DumpRenderTree/chromium/WebThemeControlDRTWin.h.
-        (WebTestRunner):
-        (WebTestThemeControlWin):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestThemeEngineMac.h: Renamed from Tools/DumpRenderTree/chromium/WebThemeEngineDRTMac.h.
-        (WebTestRunner):
-        (WebTestThemeEngineMac):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestThemeEngineMac.mm: Renamed from Tools/DumpRenderTree/chromium/WebThemeEngineDRTMac.mm.
-        (+[FakeActiveWindow alwaysActiveWindow]):
-        (+[FakeActiveWindow alwaysInactiveWindow]):
-        (-[FakeActiveWindow initWithActiveControls:]):
-        (-[FakeActiveWindow _hasActiveControls]):
-        (WebTestRunner::WebTestThemeEngineMac::paintScrollbarThumb):
-        (WebTestRunner):
-        (WebTestRunner::WebTestThemeEngineMac::paintHIThemeScrollbarThumb):
-        (WebTestRunner::WebTestThemeEngineMac::paintNSScrollerScrollbarThumb):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestThemeEngineWin.cpp: Added.
-        (WebTestRunner::WebTestThemeEngineWin::paintButton):
-        (WebTestRunner):
-        (WebTestRunner::WebTestThemeEngineWin::paintMenuList):
-        (WebTestRunner::WebTestThemeEngineWin::paintScrollbarArrow):
-        (WebTestRunner::WebTestThemeEngineWin::paintScrollbarThumb):
-        (WebTestRunner::WebTestThemeEngineWin::paintScrollbarTrack):
-        (WebTestRunner::WebTestThemeEngineWin::paintSpinButton):
-        (WebTestRunner::WebTestThemeEngineWin::paintTextField):
-        (WebTestRunner::WebTestThemeEngineWin::paintTrackbar):
-        (WebTestRunner::WebTestThemeEngineWin::paintProgressBar):
-        (WebTestRunner::WebTestThemeEngineWin::getSize):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestThemeEngineWin.h: Renamed from Tools/DumpRenderTree/chromium/WebThemeEngineDRTWin.h.
-        (WebTestRunner):
-        (WebTestThemeEngineWin):
-        (WebTestRunner::WebTestThemeEngineWin::WebTestThemeEngineWin):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::initialize):
-        * DumpRenderTree/chromium/TestShell.h:
-        (WebKit):
-        * DumpRenderTree/chromium/TestShellMac.mm:
-        (platformInit):
-        * DumpRenderTree/chromium/TestShellWin.cpp:
-        (platformInit):
-        * DumpRenderTree/chromium/WebThemeEngineDRTWin.cpp: Removed.
-
-2013-03-19  Kenneth Rohde Christiansen  <kenneth@webkit.org> and Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL][WK2] Separate WebView further from EwkView
-        https://bugs.webkit.org/show_bug.cgi?id=111591
-
-        Reviewed by Caio Marcelo de Oliveira Filho.
-
-        Updated EFL PlatformWebView to meet the new WKView API and ewk view private API.
-        PlatformWKView is pointer to Evas_Object for EFL, as this is more natural and
-        since we can afford it having EWKViewGetWKView() private API to access WKView.
-
-        * TestWebKitAPI/PlatformWebView.h:
-        * TestWebKitAPI/Tests/WebKit2/efl/WKViewClientWebProcessCallbacks.cpp:
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/efl/PlatformWebView.cpp:
-        (TestWebKitAPI::PlatformWebView::PlatformWebView):
-        (TestWebKitAPI::PlatformWebView::~PlatformWebView):
-        (TestWebKitAPI::PlatformWebView::resizeTo):
-        (TestWebKitAPI::PlatformWebView::page):
-        (TestWebKitAPI::PlatformWebView::simulateSpacebarKeyPress):
-        (TestWebKitAPI::PlatformWebView::simulateMouseMove):
-        (TestWebKitAPI::PlatformWebView::simulateRightClick):
-        * WebKitTestRunner/PlatformWebView.h:
-        * WebKitTestRunner/efl/EventSenderProxyEfl.cpp:
-        (WTR::EventSenderProxy::dispatchEvent):
-        (WTR::EventSenderProxy::keyDown):
-        (WTR::EventSenderProxy::sendTouchEvent):
-        (WTR::EventSenderProxy::setTouchModifier):
-        * WebKitTestRunner/efl/PlatformWebViewEfl.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-        (WTR::PlatformWebView::~PlatformWebView):
-        (WTR::PlatformWebView::resizeTo):
-        (WTR::PlatformWebView::page):
-        (WTR::PlatformWebView::focus):
-        (WTR::PlatformWebView::windowSnapshotImage):
-
-2013-03-19  Roger Fong  <roger_fong@apple.com>
-
-        Changes to VS2010 project files should only trigger builds on Windows bots.
-        https://bugs.webkit.org/show_bug.cgi?id=112731
-
-        Reviewed by Timothy Horton.
-
-        * BuildSlaveSupport/build.webkit.org-config/wkbuild.py:
-        (_should_file_trigger_build):
-
-2013-03-19  Roger Fong  <roger_fong@apple.com>
-
-        Unreviewed. webkitpy tests fix for Windows, runtests.py run-webkit-tests arguments changed.
-
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        (RunTests.run):
-        * Scripts/webkitpy/tool/steps/runtests_unittest.py:
-        (RunTestsTest.test_webkit_run_unit_tests):
-
-2013-03-19  Julie Parent  <jparent@chromium.org>
-
-        Dashboards: Introduce history namespace and unit tests.
-        https://bugs.webkit.org/show_bug.cgi?id=112645
-
-        Reviewed by Ojan Vafai.
-        
-        Laying the framework for introducing the new history object and
-        namespace.  This moves only static functions into the history
-        namespace, and moves corresponding unit tests into seperate
-        unit test file.
-
-        * TestResultServer/static-dashboards/aggregate_results.html:
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (parseCrossDashboardParameters):
-        (parseDashboardSpecificParameters):
-        (parseParameters):
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (.switch.return):
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-        * TestResultServer/static-dashboards/history.js: Added.
-        * TestResultServer/static-dashboards/history_unittests.js: Added.
-        * TestResultServer/static-dashboards/loader.js:
-        (.):
-        * TestResultServer/static-dashboards/run-embedded-unittests.html:
-        * TestResultServer/static-dashboards/run-unittests.html:
-        * TestResultServer/static-dashboards/timeline_explorer.html:
-        * TestResultServer/static-dashboards/timeline_explorer.js:
-        * TestResultServer/static-dashboards/treemap.html:
-        * TestResultServer/static-dashboards/treemap.js:
-        (.switch.return):
-        * TestResultServer/static-dashboards/ui.js:
-
-2013-03-19  Daniel Bates  <dbates@webkit.org>
-
-        svn-apply has trouble applying a patch that adds a Windows newline to EOF
-        https://bugs.webkit.org/show_bug.cgi?id=112732
-
-        Reviewed by Eric Seidel.
-
-        Fixes an issues where a diff that adds a Windows line ending (CRLF) to the end
-        of an existing file cannot be applied.
-
-        In particular, svn-{apply, unapply} compensate for differences in line endings
-        by converting the line endings in a diff to match the line endings in the target
-        file. The diff(1) command precedes the last line of a diff that adds a newline
-        character to the end of a file with the special character sequence "\n \\ No newline at end of file\n"
-        Svn-{apply, unapply} converts the newline characters (\n) in this character sequence
-        to \r\n (CRLF) when the target file has Windows line endings and patch(1) complains
-        when applying this modified diff. Instead, svn-{apply, unapply} should not modify
-        the newline characters in this special character sequence to match the line endings
-        in the target file.
-
-        * Scripts/VCSUtils.pm:
-        (parseDiff):
-        * Scripts/webkitperl/VCSUtils_unittest/parseDiffWithMockFiles.pl:
-        Added tests:
-            - "SVN: Patch adds Windows newline to EOF and IndexPath has Windows line endings"
-            - "SVN: Patch adds Mac newline to EOF and IndexPath has Mac line endings"
-            - "Git: Patch adds Windows newline to EOF and IndexPath has Windows line endings"
-            - "Git: Patch adds Mac newline to EOF and IndexPath has Mac line endings"
-        (escapeNewLineCharacters): Added.
-        (toMacLineEndings): Added.
-
-2013-03-19  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Remove compositor settings that don't go through WebKit
-        https://bugs.webkit.org/show_bug.cgi?id=112718
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/TestRunner/public/WebPreferences.h:
-        * DumpRenderTree/chromium/TestRunner/src/WebPreferences.cpp:
-        (WebTestRunner::WebPreferences::reset):
-        (WebTestRunner::WebPreferences::applyTo):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::resetWebSettings):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell):
-
-2013-03-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, rolling out r146101.
-        https://bugs.webkit.org/show_bug.cgi?id=111884
-
-        re-enable custom freetype on asan; this needs to be on
-        now that the bot is running lucid.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2013-03-19  Alberto Garcia  <agarcia@igalia.com>
-
-        [BlackBerry] Enable USE_SYSTEM_MALLOC by default
-        https://bugs.webkit.org/show_bug.cgi?id=112365
-
-        Reviewed by Benjamin Poulain.
-
-        Enable USE_SYSTEM_MALLOC by default via FeatureList.pm instead of
-        harcoding it in wtf/Platform.h
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2013-03-19  Allan Sandfeld Jensen  <allan.jensen@digia.com>
-
-        [Qt] Make ImageDiff similar to Chromium's ImageDiff
-        https://bugs.webkit.org/show_bug.cgi?id=94782
-
-        Based on patch by Csaba Osztrogonác.
-        Reviewed by Jocelyn Turcotte.
-
-        The diff image is generated with bright red indicating errors, but letting the base image
-        shine through so the context of the error-pixel can be identified.
-
-        * DumpRenderTree/qt/ImageDiff.cpp:
-        (main):
-
-2013-03-18  Andras Becsi  <andras.becsi@digia.com>
-
-        [Qt] Fix the build of QtTestBrowser if the print preview dialog is disabled in Qt
-
-        Rubber-stamped by Csaba Osztrogonác.
-
-        Check for QT_NO_PRINTPREVIEWDIALOG instead of QT_NO_PRINTER
-        since the latter might not cover the former.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::print):
-
-2013-03-18  Simon Fraser  <simon.fraser@apple.com>
-
-        Style tweeks to default.css.
-        
-        Rubber-stamped by David Kilzer.
-        
-        Give visited links a different color to other links, so you can
-        see which builds you've viewed.
-        
-        Make the <small> text less tiny.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/default.css:
-        (small):
-        (a:link,a:visited,a:active):
-        (a:visited):
-
-2013-03-18  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Remove the temporary hack for webkit-perf.appspot.com and cleanup the code
-        https://bugs.webkit.org/show_bug.cgi?id=112494
-
-        Reviewed by Dirk Pranke.
-
-        Removed the code to override webkit-perf.appspot.com by perf.webkit.org.
-        Also merged two pairs of methods to cleanup the code.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner.run): Merged _upload_and_show_results.
-        (PerfTestsRunner._generate_results): Merged _generate_output_files.
-
-2013-03-18  Dirk Pranke  <dpranke@chromium.org>
-
-        [chromium] build xdisplaycheck when building DRT
-        https://bugs.webkit.org/show_bug.cgi?id=112636
-
-        Reviewed by Tony Chang.
-
-        It appears that we need xdisplaycheck to be built in order for
-        Xvfb to be started correctly on the bots, and DRT was missing
-        a dependency on it. This may be the cause of the ASAN bot not
-        starting up properly (it only builds DRT).
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2013-03-18  David Levin  <levin@chromium.org>
-
-        Implement icon change notification dump for Chromium's test shell.
-        https://bugs.webkit.org/show_bug.cgi?id=112614
-
-        This was previously implemented for some other platforms in r58111
-        and r116547.
-
-        In r122806, fast/dom/icon-url-property.html stopped using it, but
-        it is useful for tests, so I plan to re-add it to that test again.
-
-        Reviewed by Jochen Eisinger.
-
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebTestRunner::WebTestProxy::didChangeIcon): Add handler so that
-         icon change notifications from WebKit may be logged in test output.
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner): Expose dumpIconChanges.
-        (WebTestRunner::TestRunner::reset): Clear the new dump variable.
-        (WebTestRunner::TestRunner::shouldDumpIconChanges): Expose the dump vairable.
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::dumpIconChanges): Implement the test method.
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::didChangeIcon):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::didChangeIcon): Add the output about changing the icon.
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-03-18  Julie Parent  <jparent@chromium.org>
-
-        Cleanup: Move js for treemap and aggregate_results into own js files.
-        https://bugs.webkit.org/show_bug.cgi?id=112618
-
-        Reviewed by Dirk Pranke.
-        
-        No functional changes, just moving the code into separate js file
-        rather than inlined in the html, so we can test it, make it more
-        modular, etc.  Other dashboard types are already done this way.
-
-        * TestResultServer/static-dashboards/aggregate_results.html:
-        * TestResultServer/static-dashboards/aggregate_results.js: Copied from Tools/TestResultServer/static-dashboards/aggregate_results.html.
-        (generatePage):
-        (handleValidHashParameter):
-        (htmlForBuilder):
-        (rawValuesHTML):
-        (chartHTML):
-        (filteredValues):
-        (chart):
-        (htmlForRevisionRows):
-        (wrapHTMLInTable):
-        (htmlForSummaryTable):
-        (valuesPerExpectation):
-        (htmlForTestType):
-        (htmlForTableRow):
-        (extendedEncode):
-        * TestResultServer/static-dashboards/treemap.html:
-        * TestResultServer/static-dashboards/treemap.js: Copied from Tools/TestResultServer/static-dashboards/treemap.html.
-        (humanReadableTime):
-        (convertToWebTreemapFormat):
-        (reverseSortByAverage):
-        (generatePage):
-        (focusPath):
-        (.switch.return):
-        (handleQueryParameterChange):
-        (extractName):
-        (fullName):
-        (handleFocus.):
-        (handleFocus):
-
-2013-03-18  Zan Dobersek  <zdobersek@igalia.com>
-
-        [webkitpy] '/usr/bin/interdiff' output while running test-webkitpy
-        https://bugs.webkit.org/show_bug.cgi?id=112622
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/tool/steps/haslanded_unittest.py:
-        (HasLandedTest): Pipe the stdout and stderr output of the subprocess call to subprocess.PIPE, eliminating unnecessary output.
-
-2013-03-18  Zan Dobersek  <zdobersek@igalia.com>
-
-        [NRWT][GTK] Add gtk-wk1 directory to the list of baseline search paths when using DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=112619
-
-        Reviewed by Dirk Pranke.
-
-        When using DumpRenderTree on the Gtk port, NRWT should look for baselines first in the LayoutTests/platform/gtk-wk1
-        directory and then fall back to the generic LayoutTests/platform/gtk directory.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort.default_baseline_search_path): Implement the method on the GtkPort class, mapping every search path to the
-        Port._webkit_baseline_path method.
-        * Scripts/webkitpy/layout_tests/port/gtk_unittest.py:
-        (GtkPortTest.test_default_baseline_search_path): Add a test for the changes that are being introduced.
-        (GtkPortTest.test_port_specific_expectations_files): Wrap a couple of long lines.
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (TestRebaselineTest.test_baseline_directory): Enhance one and add an additional test case for baseline directories
-        that are expected based on the builder name.
-
-2013-03-18  Mark Pilgrim  <pilgrim@chromium.org>
-
-        [Chromium] Create WebFileSystemType enum to allow easier filesystem refactoring
-        https://bugs.webkit.org/show_bug.cgi?id=112571
-
-        Reviewed by Adam Barth.
-
-        Update function declarations for new WebFileSystemType enum. (All
-        changes are behind an #ifdef so we can sync required changes in embedders.)
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::openFileSystem):
-        (WebViewHost::deleteFileSystem):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-03-18  Julie Parent  <jparent@chromium.org>
-
-        Cleanup: Move timeline_exporer js out of html file into js.
-        https://bugs.webkit.org/show_bug.cgi?id=112188
-
-        Reviewed by Dirk Pranke.
-        
-        Moves the javascript out of the html file and into a new js file.
-        This follows the format of flakiness_dashboard.{html|js}.
-        
-        Also moves code from dashboard_base that is used only by this one
-        dashboard, and makes it private to the dashboard.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        * TestResultServer/static-dashboards/timeline_explorer.html:
-        * TestResultServer/static-dashboards/timeline_explorer.js: Copied from Tools/TestResultServer/static-dashboards/timeline_explorer.html.
-        (generatePage):
-        (initCurrentBuilderTestResults):
-        (shouldShowWebKitRevisionsOnly):
-        (updateTimelineForBuilder.):
-        (updateTimelineForBuilder):
-        (selectBuild):
-        (updateBuildIndicator):
-        (.addRow):
-        (.addNumberRow):
-        (.inspectorNode.getElementsByTagName.0.onclick):
-        (.inspectorNode.getElementsByTagName.1.onclick):
-        (.inspectorNode.getElementsByTagName.2.onclick):
-        (updateBuildInspector):
-        (showResultsDelta):
-        (decompressResults.addFlakyDelta):
-        (decompressResults):
-
-2013-03-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, rolling out r145272.
-        http://trac.webkit.org/changeset/145272
-        https://bugs.webkit.org/show_bug.cgi?id=111884
-
-        Turns out the ASAN build is still broken; possibly there's
-        something still setting LD_LIBRARY_PATH, or possibly there's
-        something else wrong. In the meantime, we need it to work again.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2013-03-18  Ryosuke Niwa  <rniwa@webkit.org>
-
-        delete-stale-build-files is too aggressive
-        https://bugs.webkit.org/show_bug.cgi?id=112595
-
-        Reviewed by Tim Horton.
-
-        It appears that whitelisting file extensions to keep is not a good idea.
-        Blacklist files to delete instead, and only delete .o files for now.
-        We can add more file extensions as needed.
-
-        * BuildSlaveSupport/delete-stale-build-files:
-
-2013-03-18  Simon Fraser  <simon.fraser@apple.com>
-
-        Disable accessibility notifications after each test
-        https://bugs.webkit.org/show_bug.cgi?id=112579
-
-        Reviewed by Tim Horton.
-        
-        In WebKitTestRunner, if any tests triggered accessibility notifications,
-        the global notification handler would thereafter be active, and fire
-        notifications for all subsequent tests.
-        
-        Fix by implementing AccessibilityController::resetToConsistentState() for
-        Mac, and using it to clear the global notification handler.
-
-        * WebKitTestRunner/InjectedBundle/AccessibilityController.cpp:
-        * WebKitTestRunner/InjectedBundle/mac/AccessibilityControllerMac.mm:
-        (WTR::AccessibilityController::addNotificationListener): Remove stupid comment.
-        (WTR::AccessibilityController::removeNotificationListener): Explicitly call
-        -stopObserving so that unregistering the observer doesn't rely on object lifetimes
-        (e.g. because of -autorelease).
-        (WTR::AccessibilityController::logAccessibilityEvents): Stub.
-        (WTR::AccessibilityController::resetToConsistentState): Remove the notification listener
-        if there is one.
-        * WebKitTestRunner/InjectedBundle/mac/AccessibilityNotificationHandler.h:
-        Add -stopObserving
-        * WebKitTestRunner/InjectedBundle/mac/AccessibilityNotificationHandler.mm:
-        (-[AccessibilityNotificationHandler dealloc]): Call -stopObserving
-        (-[AccessibilityNotificationHandler stopObserving]): Unregister from the notification
-        center.
-
-2013-03-18  Dana Jansens  <danakj@chromium.org>
-
-        [chromium] Remove WebGraphicsContext3DInProcessImpl support from DRT.
-        https://bugs.webkit.org/show_bug.cgi?id=112392
-
-        Reviewed by James Robinson.
-
-        Removes the command line flag option from DRT.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-
-2013-03-18  Zan Dobersek  <zdobersek@igalia.com>
-
-        [GTK] plugins/plugin-clip-subframe.html is failing
-        https://bugs.webkit.org/show_bug.cgi?id=112570
-
-        Reviewed by Martin Robinson.
-
-        * GNUmakefile.am: Add the LogNPPSetWindow.cpp file to the build.
-
-2013-03-17  Morten Stenshorne  <mstensho@opera.com>
-
-        Add reload button (and F5 accelerator) to the GtkLauncher toolbar
-        https://bugs.webkit.org/show_bug.cgi?id=112442
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * GtkLauncher/main.c:
-        (reloadCb):
-        (createToolbar):
-        (createWindow):
-
-2013-03-15  Simon Fraser  <simon.fraser@apple.com>
-
-        REGRESSION (r144884?): WebKit2.DOMWindowExtensionBasic API test is asserting
-        https://bugs.webkit.org/show_bug.cgi?id=112205
-
-        Disable this API test until Geoff can fix it.
-
-        * TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionBasic.cpp:
-        (TestWebKitAPI::TEST):
-
-2013-03-15  Jochen Eisinger  <jochen@chromium.org>
-
-        plugins/netscape-plugin-setwindow-size*.html and plugins/pass-different-npp-struct.html should be async
-        https://bugs.webkit.org/show_bug.cgi?id=112478
-
-        Reviewed by Tony Chang.
-
-        There is nothing that ensures that the log messages from the plugin
-        come in before the layout test finished loading.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/PassDifferentNPPStruct.cpp:
-        (PassDifferentNPPStruct::NPP_SetWindow):
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_SetWindow):
-
-2013-03-15  Simon Fraser  <simon.fraser@apple.com>
-
-        Have the mac port support per_test_timeout in webkitpy
-        https://bugs.webkit.org/show_bug.cgi?id=112466
-
-        Reviewed by Dirk Pranke.
-        
-        Both WTR and DRT handle --timeout arguments, so we can
-        have the scripts pass the timeout values down to the tools.
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.supports_per_test_timeout):
-
-2013-03-15  Rouslan Solomakhin  <rouslan@chromium.org>
-
-        Remove setAsynchronousSpellCheckingEnabled from test runners
-        https://bugs.webkit.org/show_bug.cgi?id=112362
-
-        Reviewed by Tony Chang.
-
-        Remove setAsynchronousSpellCheckingEnabled from test runners. The setting is now
-        in internals.settings, so all ports can share it.
-
-        * DumpRenderTree/TestRunner.cpp: Remove setAsynchronousSpellCheckingEnabled() method.
-        * DumpRenderTree/TestRunner.h: Remove setAsynchronousSpellCheckingEnabled() method.
-        * DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp: Remove setAsynchronousSpellCheckingEnabled() method.
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp: Remove setAsynchronousSpellCheckingEnabled() method.
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h: Remove setAsynchronousSpellCheckingEnabled() method.
-        * DumpRenderTree/efl/TestRunnerEfl.cpp: Remove setAsynchronousSpellCheckingEnabled() method.
-        * DumpRenderTree/gtk/TestRunnerGtk.cpp: Remove setAsynchronousSpellCheckingEnabled() method.
-        * DumpRenderTree/mac/TestRunnerMac.mm: Remove setAsynchronousSpellCheckingEnabled() method.
-        * DumpRenderTree/qt/TestRunnerQt.cpp: Remove setAsynchronousSpellCheckingEnabled() method.
-        * DumpRenderTree/qt/TestRunnerQt.h: Remove setAsynchronousSpellCheckingEnabled() method.
-        * DumpRenderTree/win/TestRunnerWin.cpp: Remove setAsynchronousSpellCheckingEnabled() method.
-        * DumpRenderTree/wx/TestRunnerWx.cpp: Remove setAsynchronousSpellCheckingEnabled() method.
-
-2013-03-15  Simon Fraser  <simon.fraser@apple.com>
-
-        Fix the stupid unit tests.
-
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        (test_sample_process):
-
-2013-03-14  Simon Fraser  <simon.fraser@apple.com>
-
-        Collect samples for unresponsive web processes
-        https://bugs.webkit.org/show_bug.cgi?id=112409
-
-        Reviewed by Tim Horton.
-        
-        When we detect that a subprocess was unresponsive, run the 'sample'
-        tool on that process, for the Mac port.
-        
-        The sample will be linked to from the results.html page, next
-        to the crash log link.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._look_for_new_crash_logs): Before looking for crash logs,
-        look for samples on disk.
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer.py:
-        (TestResultWriter):
-        (TestResultWriter.copy_sample_file): Teach TestResultWriter about
-        -sample.txt files, and have it copy their contents to a new file
-        next to the test that spawned them (as we do for crash logs).
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.look_for_new_samples): Base class does nothing for sampling.
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver._check_for_driver_crash): Kick off a sample if we detected
-        that the subprocess was unresponsive.
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.sample_file_path): Utility to generate the file path
-        to the generated sample files at the top level of layout-test-results.
-        (MacPort.look_for_new_crash_logs): Fix typo
-        (MacPort.look_for_new_samples): New function to find sample files.
-        (MacPort.sample_process): Use the utility function to get the file path.
-
-2013-03-15  Zeno Albisser  <zeno@webkit.org>
-
-        [Qt] Remove simple getters and setters from TestRunnerQt
-        https://bugs.webkit.org/show_bug.cgi?id=112343
-
-        Reviewed by Benjamin Poulain.
-
-        The removed functions and boolean members
-        are being replaced by the implementations in the
-        generic TestRunner.h.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (DumpRenderTree::dumpFrameScrollPosition):
-        (DumpRenderTree::dumpFramesAsText):
-        (DumpRenderTree::dump):
-        (DumpRenderTree::titleChanged):
-        (DumpRenderTree::dumpDatabaseQuota):
-        (DumpRenderTree::dumpApplicationCacheQuota):
-        (DumpRenderTree::statusBarMessage):
-        (DumpRenderTree::createWindow):
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        (TestRunnerQt::reset):
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunnerQt):
-
-2013-03-15  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Update the link on build.webkit.org to refer to perf.webkit.org
-        https://bugs.webkit.org/show_bug.cgi?id=112416
-
-        Reviewed by Philip Rogers.
-
-        Updated the link. Also updated the template to use HTML5 DOCTYPE.
-
-        * BuildSlaveSupport/build.webkit.org-config/templates/root.html:
-
-2013-03-15  Tobias Mueller  <tobiasmue@gnome.org>
-
-        Build fix for Tools/GtkLauncher/Programs_GtkLauncher-main.o if gstreamer is not installed
-        https://bugs.webkit.org/show_bug.cgi?id=112394
-
-        Reviewed by Philippe Normand.
-
-        * GtkLauncher/main.c:
-        (main): Guard using the gstreamer function with #ifdef WTF_USE_GSTREAMER
-
-2013-03-14  Andreas Kling  <akling@apple.com>
-
-        REGRESSION(r145169): [Mac][WK2] http/tests/security/cross-frame-access-put.html fails.
-        <http://webkit.org/b/111815>
-        <rdar://problem/13380145>
-
-        Reviewed by Anders Carlsson.
-
-        Add PlatformWebView::didInitializeClients() and call it after setting up all the clients
-        after creating a PlatformWebView. Otherwise, the initial WindowAndViewFramesChanged message
-        will be sent before there's a UI client set up to adjust the frame with WTR's fake origin.
-
-        * WebKitTestRunner/PlatformWebView.h:
-        (PlatformWebView):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::createOtherPage):
-        (WTR::TestController::createWebViewWithOptions):
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (WTR::PlatformWebView::didInitializeClients):
-
-2013-03-14  Jinwoo Song  <jinwoo7.song@samsung.com>
-
-        [EFL][MiniBrowser] Add a search field to the MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=112122
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Implement a search field to test API ewk_view_text_find() and add a shortcut 'ctrl' + f.
-
-        * MiniBrowser/efl/main.c:
-        (_Browser_Window):
-        (search_box_show):
-        (search_box_hide):
-        (on_key_down):
-        (on_url_changed):
-        (on_search_field_aborted):
-        (on_search_field_activated):
-        (on_search_field_clicked):
-        (on_search_backward_button_clicked):
-        (on_search_forward_button_clicked):
-        (window_create):
-
-2013-03-14  Julie Parent  <jparent@chromium.org>
-
-        Cleanup: Remove g_resourceLoader.
-        https://bugs.webkit.org/show_bug.cgi?id=112305
-
-        Reviewed by Dirk Pranke.
-        
-        Removing another global.
-        
-        Now, each dashboard creates its own loader, rather than having
-        a general global one.
-        
-        Remove usage of g_resourceLoader.isLoadingComplete from 
-        handleLocationChange by ensuring that handleLocationChange is
-        never called before the loader is done.  It was called in two
-        places before: 1 was from the callback when the loader is done,
-        so that was obviously true, and the other was from onhashchange,
-        where it would just return rather than running.  Instead, lets
-        only register the onhashchange handler once the loader is
-        setup, so the check is no longer necessary.
-        
-        Remove isLoadingComplete since it is now unused.
-        
-        Callback for loader is now initializeHistory, rather than just
-        handleLocationChange which will set up the hashchange handler now.
-        This will all eventually be moving to a new History object.
-
-        * TestResultServer/static-dashboards/aggregate_results.html:
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (handleLocationChange):
-        (intializeHistory):
-        (decompressResults):
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (generatePage):
-        * TestResultServer/static-dashboards/loader.js:
-        (.):
-        * TestResultServer/static-dashboards/loader_unittests.js:
-        * TestResultServer/static-dashboards/timeline_explorer.html:
-        * TestResultServer/static-dashboards/treemap.html:
-
-2013-03-14  Manuel Rego Casasnovas  <rego@igalia.com>
-
-        Add selectTrailingWhitespaceEnabled setting to WebCore::Page
-        https://bugs.webkit.org/show_bug.cgi?id=109404
-
-        Reviewed by Tony Chang.
-
-        Removes all the code related to smartInsertDeleteEnabled and
-        selectTrailingWhitespaceEnabled settings as they will be managed from
-        internals from now on.
-
-        * DumpRenderTree/TestRunner.cpp:
-        (TestRunner::staticFunctions):
-        * DumpRenderTree/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/blackberry/DumpRenderTree.cpp:
-        (WebKit):
-        (BlackBerry::WebKit::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        * DumpRenderTree/blackberry/DumpRenderTreeBlackBerry.h:
-        (DumpRenderTree):
-        * DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebTestRunner::WebTestProxy::didStopLoading):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebPreferences.cpp:
-        (WebTestRunner::WebPreferences::applyTo): Set default values for
-        smartInsertDeleteEnabled and selectTrailingWhitespaceEnabled settings as
-        Chromium DRT default values are different from Chromium browser.
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/gtk/TestRunnerGtk.cpp:
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/mac/TestRunnerMac.mm:
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::resetSettings):
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunnerQt):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/win/TestRunnerWin.cpp:
-        * DumpRenderTree/wx/TestRunnerWx.cpp:
-
-2013-03-14  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Disable DRT on Windows
-
-        Reviewed by Jocelyn Turcotte.
-
-        We don't run and maintain DRT on Windows, so let's not try to maintain the build of it.
-
-        * qmake/mkspecs/features/configure.prf:
-
-2013-03-14  Jinwoo Song  <jinwoo7.song@samsung.com>
-
-        [EFL][WK2] Add an API for adding and removing user style sheets from a page group
-        https://bugs.webkit.org/show_bug.cgi?id=110728
-
-        Reviewed by Gyuyoung Kim.
-
-        Use the page group to create the view object.
-
-        * MiniBrowser/efl/main.c:
-        (window_create):
-
-2013-03-14  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Improve the handling of mock geolocation, device orientation and motion clients
-
-        Reviewed by Tor Arne Vestbø.
-
-        The mock versions of these web facing features should be instantiated when
-        running in DumpRenderTree only. In order for them to work, no extra Qt modules
-        such as QtLocation are actually needed.
-
-        This patch decouples enabling device orientation/motion and geolocation from
-        the underlying Qt modules and makes them available in developer builds
-        (!production_build) and backed by mock backends when running in drt.
-
-        So if the Qt 5 modules are available, they'll be used (unless drtRun). For
-        developers the web facing features are always enabled (although requests will
-        time out) and the mock backends are enabled inside DRT, allowing for the layout
-        tests to run with less dependencies.
-
-        In addition this also enables the mock device motion client, which was
-        previously never instantiated.
-
-        * qmake/mkspecs/features/features.prf:
-
-2013-03-14  Zeno Albisser  <zeno@webkit.org>
-
-        [Qt] Removing no-ops and simple setters/getters from TestRunnerQt
-        https://bugs.webkit.org/show_bug.cgi?id=112340
-
-        Reviewed by Simon Hausmann.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (DumpRenderTree::dump):
-            Replace shouldDumpBackForwardList() with TestController:dumpBackForwardList().
-        (DumpRenderTree::dumpApplicationCacheQuota):
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        (TestRunnerQt::reset):
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunnerQt):
-
-2013-03-14  Zeno Albisser  <zeno@webkit.org>
-
-        [Qt] Port DRT to use TestRunner::dumpAsText()
-        https://bugs.webkit.org/show_bug.cgi?id=112260
-
-        Reviewed by Benjamin Poulain.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::open):
-        (WebCore::methodNameStringForFailedTest):
-            Change parameter from type TestRunnerQt* to TestRunner*.
-        (WebCore::DumpRenderTree::dump):
-            TestRunnerQt::shouldDumpPixels() always returned true in our case.
-            Instead we should rely on TestRunner::generatePixelResults().
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        (TestRunnerQt::reset):
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunnerQt):
-
-2013-03-13  Kunihiko Sakamoto  <ksakamoto@chromium.org>
-
-        Implement FontLoader interface
-        https://bugs.webkit.org/show_bug.cgi?id=98395
-
-        Reviewed by Eric Seidel.
-
-        Enable FontLoadEvents runtime flag for TestShell.
-
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        (WebTestRunner::TestInterfaces::TestInterfaces):
-
-2013-03-13  Julie Parent  <jparent@chromium.org>
-
-        CLeanup: remove unnecessary call to parseParameters.
-        https://bugs.webkit.org/show_bug.cgi?id=112309
-
-        Reviewed by Ojan Vafai.
-        
-        We call parseCrossDashboardParameters when the dashboard initially
-        loads to set the state required for loadBuildersList, and then we
-        call it again once we are fully done with loading, so there is no
-        reason to call it in the middle of the loading process here.
-
-        * TestResultServer/static-dashboards/loader.js:
-        (.):
-
-2013-03-13  Elliott Sprehn  <esprehn@chromium.org>
-
-        Unreviewed. Now I'm a reviewer :)
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-03-13  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Threaded HTML Parser is missing feature define flags in all but Chromium port's build files
-        https://bugs.webkit.org/show_bug.cgi?id=112277
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2013-03-13  Adam Barth  <abarth@webkit.org>
-
-        run-perf-tests should support content_shell
-        https://bugs.webkit.org/show_bug.cgi?id=112291
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._parse_args):
-
-2013-03-13  Oliver Hunt  <oliver@apple.com>
-
-        Simplify Checked<> multiplication
-        https://bugs.webkit.org/show_bug.cgi?id=112286
-
-        Reviewed by James Robinson.
-
-        Add tests for multiplication by zero and max to ensure we don't
-        mess them up should we ever make changes to Checked<> in future.
-
-        * TestWebKitAPI/Tests/WTF/CheckedArithmeticOperations.cpp:
-        (TestWebKitAPI):
-
-2013-03-13  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Unreviewed prospective Windows build fix
-
-        Do the usual thing, include the moc generated code in the .cpp file instead
-        of compiling it standalone, to ensure that config.h is included, too, and
-        NOMINMAX is defined to avoid the min/max conflict when also including qdatetime.h.
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-
-2013-03-13  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Port TestRunner::findString to shared interface
-        https://bugs.webkit.org/show_bug.cgi?id=112147
-
-        Reviewed by Jocelyn Turcotte.
-
-        This patch also removes DumpRenderTree and some other helper classes from
-        the WebCore namespace, to which they do not really belong.
-
-        * DumpRenderTree/qt/DumpRenderTreeMain.cpp:
-        (main):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (DumpRenderTree::DumpRenderTree):
-        (DumpRenderTree::~DumpRenderTree):
-        (DumpRenderTree::instance):
-        (DumpRenderTree::setShouldTimeout):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        (DumpRenderTree):
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::contextClick):
-        (EventSender::sendEvent):
-        (EventSender::postEvent):
-        * DumpRenderTree/qt/EventSenderQt.h:
-        (EventSender::isGraphicsBased):
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        (TestRunnerQt::TestRunnerQt):
-        (TestRunner::findString):
-        (TestRunnerQt::setMockDeviceOrientation):
-        (TestRunnerQt::setGeolocationPermission):
-        (TestRunnerQt::numberOfPendingGeolocationPermissionRequests):
-        (TestRunnerQt::setMockGeolocationPositionUnavailableError):
-        (TestRunnerQt::setMockGeolocationPosition):
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunnerQt):
-
-2013-03-13  Mikhail Naganov  <mnaganov@chromium.org>
-
-        [Chromium] Rename android_build_type to android_webview_build in .gyp files.
-        https://bugs.webkit.org/show_bug.cgi?id=112129
-
-        Reviewed by Adam Barth.
-
-        Following Chromium
-        http://src.chromium.org/viewvc/chrome?view=rev&revision=187556
-        this is being renamed to better explain what it does.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2013-03-13  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Unreviewed trivial typo fix
-
-        * DumpRenderTree/qt/DumpRenderTree.pro: It's TestRunner.h, not
-        TextRunner.h. Thanks Zeno :)
-
-2013-03-12  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Prepare DRT for transition to shared TestRunner interface
-        https://bugs.webkit.org/show_bug.cgi?id=112144
-
-        Reviewed by Benjamin Poulain.
-
-        Prepare Qt's DRT for a transition from the QObject based TestRunner to
-        the JSC C API based one.
-
-        This is impplemented by instantiating the QObject based testRunner in
-        the global object, then instantiating the JSC C based TestRunner
-        separately and placing it "behind" the QObject based testRunner through
-        injection of the individual functions through proxies. (prototype
-        chaining doesn't work due to the this object and Function.prototype.bind
-        doesn't work due to the native function)
-
-        This allows for porting over method by method by removing the method
-        from the QObject TestRunnerQt and implementing it in the JSC C based
-        TestRunner.
-
-        In order for this to link and run dummy implementations of all the
-        necessary TestRunner functions are provided.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/DumpRenderTreeMain.cpp:
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        (WebCore::DumpRenderTree::initJSObjects):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        (DumpRenderTree):
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        (TestRunner::~TestRunner):
-        (TestRunner::addDisallowedURL):
-        (TestRunner::queueLoad):
-        (TestRunner::removeAllVisitedLinks):
-        (TestRunner::setAcceptsEditing):
-        (TestRunner::simulateLegacyWebNotificationClick):
-        (TestRunner::setWindowIsKey):
-        (TestRunner::setAlwaysAcceptCookies):
-        (TestRunner::addOriginAccessWhitelistEntry):
-        (TestRunner::setWebViewEditable):
-        (TestRunner::clearAllApplicationCaches):
-        (TestRunner::setTextDirection):
-        (TestRunner::notifyDone):
-        (TestRunner::numberOfPendingGeolocationPermissionRequests):
-        (TestRunner::overridePreference):
-        (TestRunner::pathToLocalResource):
-        (TestRunner::removeAllWebNotificationPermissions):
-        (TestRunner::simulateWebNotificationClick):
-        (TestRunner::closeIdleLocalStorageDatabases):
-        (TestRunner::focusWebView):
-        (TestRunner::setBackingScaleFactor):
-        (TestRunner::removeChromeInputField):
-        (TestRunner::addChromeInputField):
-        (TestRunner::originsWithLocalStorage):
-        (TestRunner::deleteAllLocalStorage):
-        (TestRunner::deleteLocalStorageForOrigin):
-        (TestRunner::observeStorageTrackerNotifications):
-        (TestRunner::syncLocalStorage):
-        (TestRunner::windowCount):
-        (TestRunner::setWaitToDump):
-        (TestRunner::waitForPolicyDelegate):
-        (TestRunner::webHistoryItemCount):
-        (TestRunner::showWebInspector):
-        (TestRunner::closeWebInspector):
-        (TestRunner::evaluateInWebInspector):
-        (TestRunner::setSerializeHTTPLoads):
-        (TestRunner::apiTestNewWindowDataLoadBaseURL):
-        (TestRunner::setCustomPolicyDelegate):
-        (TestRunner::setDatabaseQuota):
-        (TestRunner::setDomainRelaxationForbiddenForURLScheme):
-        (TestRunner::resetPageVisibility):
-        (TestRunner::keepWebHistory):
-        (TestRunner::goBack):
-        (TestRunner::originsWithApplicationCache):
-        (TestRunner::applicationCacheDiskUsageForOrigin):
-        (TestRunner::display):
-        (TestRunner::dispatchPendingLoadRequests):
-        (TestRunner::clearPersistentUserStyleSheet):
-        (TestRunner::callShouldCloseOnWebView):
-        (TestRunner::copyDecodedHostName):
-        (TestRunner::clearBackForwardList):
-        (TestRunner::clearAllDatabases):
-        (TestRunner::clearApplicationCacheForOrigin):
-        (TestRunner::apiTestGoToCurrentBackForwardItem):
-        (TestRunner::authenticateSession):
-        (TestRunner::abortModal):
-        (TestRunner::setStorageDatabaseIdleInterval):
-        (TestRunner::setAsynchronousSpellCheckingEnabled):
-        (TestRunner::setXSSAuditorEnabled):
-        (TestRunner::setSpatialNavigationEnabled):
-        (TestRunner::setScrollbarPolicy):
-        (TestRunner::setJavaScriptCanAccessClipboard):
-        (TestRunner::setAutomaticLinkDetectionEnabled):
-        (TestRunner::setUserStyleSheetEnabled):
-        (TestRunner::setUserStyleSheetLocation):
-        (TestRunner::setUseDashboardCompatibilityMode):
-        (TestRunner::setTabKeyCyclesThroughElements):
-        (TestRunner::setSmartInsertDeleteEnabled):
-        (TestRunner::setSelectTrailingWhitespaceEnabled):
-        (TestRunner::setPrivateBrowsingEnabled):
-        (TestRunner::setPluginsEnabled):
-        (TestRunner::setPopupBlockingEnabled):
-        (TestRunner::setMockSpeechInputDumpRect):
-        (TestRunner::setPersistentUserStyleSheetLocation):
-        (TestRunner::setMockGeolocationPosition):
-        (TestRunner::setMockGeolocationPositionUnavailableError):
-        (TestRunner::setMockDeviceOrientation):
-        (TestRunner::setMainFrameIsFirstResponder):
-        (TestRunner::setIconDatabaseEnabled):
-        (TestRunner::setGeolocationPermission):
-        (TestRunner::setDefersLoading):
-        (TestRunner::setCacheModel):
-        (TestRunner::setAuthorAndUserStylesEnabled):
-        (TestRunner::setAllowFileAccessFromFileURLs):
-        (TestRunner::setAppCacheMaximumSize):
-        (TestRunner::setAllowUniversalAccessFromFileURLs):
-        (TestRunner::setApplicationCacheOriginQuota):
-        (TestRunner::denyWebNotificationPermission):
-        (TestRunner::grantWebNotificationPermission):
-        (TestRunner::setValueForUser):
-        (TestRunner::setViewModeMediaFeature):
-        (TestRunner::setPageVisibility):
-        (TestRunner::addMockSpeechInputResult):
-        (TestRunner::removeOriginAccessWhitelistEntry):
-        (TestRunner::addUserScript):
-        (TestRunner::isCommandEnabled):
-        (TestRunner::evaluateScriptInIsolatedWorld):
-        (TestRunner::evaluateScriptInIsolatedWorldAndReturnValue):
-        (TestRunner::copyEncodedHostName):
-        (TestRunner::addUserStyleSheet):
-        (TestRunner::findString):
-        (TestRunner::execCommand):
-        (TestRunner::localStorageDiskUsageForOrigin):
-
-2013-03-12  Julie Parent  <jparent@chromium.org>
-
-        Cleanup: Move flatten-trie to loader.
-        https://bugs.webkit.org/show_bug.cgi?id=112196
-
-        Reviewed by Dirk Pranke.
-
-        flatten-trie is used only by the loader, so move it there and make it
-        private, rather than global in dashbaord_base. Moved the corresponding
-        unit test from flakiness_dashboard_unittests to loader_unittests.
-        
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-        * TestResultServer/static-dashboards/loader.js:
-        (.):
-        * TestResultServer/static-dashboards/loader_unittests.js:
-
-2013-03-12  Oliver Hunt  <oliver@apple.com>
-
-        Unbreak api tests
-
-        * TestWebKitAPI/Tests/WTF/CheckedArithmeticOperations.cpp:
-        (TestWebKitAPI):
-
-2013-03-12  Tim Horton  <timothy_horton@apple.com>
-
-        Unreviewed, disabling tests for Win EWS.
-
-        win-ews obviously cannot keep up with running tests, it's >300 behind.
-        Probably doesn't help that its (likely) running tests serially.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (WinEWS):
-
-2013-03-12  Tim Horton  <timothy_horton@apple.com>
-
-        Add a --build-directory argument to delete-stale-build-files
-        https://bugs.webkit.org/show_bug.cgi?id=112198
-
-        Reviewed by Ryosuke Niwa.
-
-        * BuildSlaveSupport/delete-stale-build-files:
-        (main): Add --build-directory argument.
-
-2013-03-12  Oliver Hunt  <oliver@apple.com>
-
-        Appease MSVC
-
-        * TestWebKitAPI/Tests/WTF/CheckedArithmeticOperations.cpp:
-        (TestWebKitAPI):
-
-2013-03-12  Oliver Hunt  <oliver@apple.com>
-
-        Add more Checked<> tests
-        https://bugs.webkit.org/show_bug.cgi?id=112190
-
-        Reviewed by Geoffrey Garen.
-
-        Tests!
-
-        * TestWebKitAPI/Tests/WTF/CheckedArithmeticOperations.cpp:
-        (TestWebKitAPI):
-
-2013-03-12  Julie Parent  <jparent@chromium.org>
-
-        Cleanup: Move loading complete function into callback, rather than global.
-        https://bugs.webkit.org/show_bug.cgi?id=112167
-
-        Reviewed by Dirk Pranke.
-        
-        Stop calling global functions, pass in proper handler to Loader
-        constructor. Note that the callback is optional, as tests, and
-        some potential dashboards, do not need one.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        * TestResultServer/static-dashboards/loader.js:
-        (.):
-        * TestResultServer/static-dashboards/loader_unittests.js:
-
-2013-03-12  Christophe Dumez  <ch.dumez@sisa.samsung.com>
-
-        [EFL][WK2] Add popup menu support to MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=108934
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Implement popup menu support in MiniBrowser by handling popup_menu_show
-        and popup_menu_hide smart functions on the view and using the Ewk popup
-        menu API.
-
-        * MiniBrowser/efl/main.c:
-        (_Browser_Window):
-        (on_popup_menu_discarded):
-        (on_popup_menu_item_clicked):
-        (popup_menu_populate):
-        (on_popup_menu_show):
-        (on_popup_menu_hide):
-        (window_create): Use calloc() instead of malloc() to allocate memory for
-        Browser_Window. This makes sure all the structs members are initialized
-        to 0 (such as the new elm_popup_menu pointer).
-
-2013-03-12  Zan Dobersek  <zdobersek@igalia.com>
-
-        [GTK] Set up the libPlatformGtk.la library
-        https://bugs.webkit.org/show_bug.cgi?id=111738
-
-        Reviewed by Martin Robinson.
-
-        * GNUmakefile.am: Reference platformgtk_cppflags variable along with webcoregtk_cppflags variable.
-        Adjust the path to GtkVersioning.c, the file has moved under Source/Platform.
-        * TestWebKitAPI/GNUmakefile.am: Reference platformgtk_cppflags variable along with webcoregtk_cppflags variable.
-
-2013-03-12  Zan Dobersek  <zdobersek@igalia.com>
-
-        [GTK] Enable Web Audio in development builds
-        https://bugs.webkit.org/show_bug.cgi?id=111831
-
-        Reviewed by Philippe Normand.
-
-        Web Audio is already quite well supported on the GTK port but still has a few issues
-        that must be addressed before it is enabled by default. Despite that it should be enabled
-        in development builds just so we are up-to-date with future feature infrastructure changes.
-        The Web Audio-related layout tests are not run yet due to missing support in DRT/WKTR, but
-        that's an obvious goal before enabling the feature in release builds.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2013-03-11  Andreas Kling  <akling@apple.com>
-
-        [Mac][WK1] Add support for alert() in MiniBrowser.
-        <http://webkit.org/b/112090>
-
-        Reviewed by Anders Carlsson.
-
-        * MiniBrowser/mac/WK1BrowserWindowController.m:
-        (-[WK1BrowserWindowController webView:runJavaScriptAlertPanelWithMessage:initiatedByFrame:]):
-
-2013-03-11  Julie Parent  <jparent@chromium.org>
-
-        Dashboard cleanup: Create ui.Errors
-        https://bugs.webkit.org/show_bug.cgi?id=111785
-
-        Reviewed by Ojan Vafai.
-        
-        Create ui.Errors for handling errors the dashboards
-        encounter. Loader now has a Error object that it can add to,
-        and individual dashboards can show errors when desired.
-        Currently, only flakiness_db shows errors, but this is 
-        generic and there is no reason why other dbs wouldn't want to
-        show errors.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (resourceLoadingComplete):
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (generatePage):
-        * TestResultServer/static-dashboards/loader.js:
-        (.):
-        * TestResultServer/static-dashboards/ui.js:
-        (.):
-
-2013-03-08  Geoffrey Garen  <ggaren@apple.com>
-
-        Some StringHasher tests are broken because of missing null termination
-        https://bugs.webkit.org/show_bug.cgi?id=111284
-
-        Reviewed by Darin Adler.
-
-        * TestWebKitAPI/Tests/WTF/StringHasher.cpp:
-        (TestWebKitAPI): Added null termination since C strings are null-terminated.
-        (TestWebKitAPI::TEST): Removed #ifdef's that disabled this testing since
-        the bug caught by it is now fixed.
-
-2013-03-11  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r145200.
-        http://trac.webkit.org/changeset/145200
-        https://bugs.webkit.org/show_bug.cgi?id=112063
-
-        Broke a couple of unit tests (Requested by zdobersek on
-        #webkit).
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2013-03-11  Zan Dobersek  <zdobersek@igalia.com>
-
-        [GTK] WebKit2-only build fails
-        https://bugs.webkit.org/show_bug.cgi?id=112033
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * GNUmakefile.am: Split the list of files the docs-build.stamp target depends on into the
-        generic part, WebKit1-specific part and WebKit2-specific part.
-        * TestWebKitAPI/GNUmakefile.am: The TestGtk executable should not link agains libwebkitgtk
-        as it is not WebKit1-specific, but should rather link to libWebCore.la and libWebCoreGtk.la
-        directly.
-
-2013-03-11  Dima Gorbik  <dgorbik@apple.com>
-
-        Adding myself to the committers list.
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-03-11  Jeff Rogers  <jrogers@rim.com>
-
-        [BlackBerry] Disable MathML support
-        https://bugs.webkit.org/show_bug.cgi?id=111929
-
-        Reviewed by Rob Buis.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2013-03-11  Christophe Dumez  <ch.dumez@sisa.samsung.com>
-
-        [EFL][GTK][WKTR] Regression(r145231): Undefined symbol in libTestRunnerInjectedBundle.so
-        https://bugs.webkit.org/show_bug.cgi?id=111970
-
-        Reviewed by Chris Fleizach.
-
-        Provide dummy implementation for AccessibilityUIElement::supportedActions() in ATK
-        or libTestRunnerInjectedBundle.so cannot be loaded in EFL / GTK otherwise, due to
-        undefined symbol.
-
-        * WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp:
-        (WTR::AccessibilityUIElement::supportedActions):
-        (WTR):
-
-2013-03-11  Chris Hopman  <cjhopman@chromium.org>
-
-        [chromium] Android apk targets should depend directly on Java library targets
-        https://bugs.webkit.org/show_bug.cgi?id=111746
-
-        Reviewed by Eric Seidel.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        Make DumpRenderTree_apk depend directly on base_java and net_java.
-        * TestWebKitAPI/TestWebKitAPI.gyp/TestWebKitAPI.gyp:
-        Make TestWebKitAPI_apk depend directly on base_java.
-
-2013-03-11  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] remove obsolete user gesture methods from WebFrame
-        https://bugs.webkit.org/show_bug.cgi?id=111696
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/TestRunner/src/TestPlugin.cpp:
-        (WebTestRunner::TestPlugin::handleInputEvent):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-
-2013-03-10  Silvia Pfeiffer  <silviapf@chromium.org>
-
-        Unreviewed, add myself to commiters.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-03-08  Julie Parent  <jparent@chromium.org>
-
-        Cleanup: Remove dead code.
-        https://bugs.webkit.org/show_bug.cgi?id=111900
-
-        Reviewed by Dirk Pranke.
-        
-        Treemap overrides a global function that used to be in 
-        dashboard_base, but was removed months ago in
-        https://bugs.webkit.org/show_bug.cgi?id=99246, so this code has
-        no caller. 
-
-        * TestResultServer/static-dashboards/treemap.html:
-
-2013-03-08  Harald Alvestrand  <hta@chromium.org>
-
-        Implemented new API for RTCStatsReport object.
-        https://bugs.webkit.org/show_bug.cgi?id=110333
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/TestRunner/src/MockWebRTCPeerConnectionHandler.cpp:
-        (WebTestRunner::MockWebRTCPeerConnectionHandler::getStats):
-
-2013-03-08  Dirk Pranke  <dpranke@chromium.org>
-
-        [chromium] use custom freetype on linux asan builds again
-        https://bugs.webkit.org/show_bug.cgi?id=111884
-
-        Reviewed by Tony Chang.
-
-        We no longer need the workaround after chromium r186540.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2013-03-08  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Warning about the user not having edit rights on Bugzilla is confusing new contributors
-        https://bugs.webkit.org/show_bug.cgi?id=111798
-
-        Reviewed by Dirk Pranke.
-
-        Don't scare people by the warning. Instead, tell them to ignore it if they don't have EditBugs privileges.
-
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-
-2013-03-08  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Remove WebLayerTreeViewClient and WebLayerTreeView::Settings
-        https://bugs.webkit.org/show_bug.cgi?id=111632
-
-        Reviewed by Adrienne Walker.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::initializeLayerTreeView):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-03-08  Benjamin Poulain  <benjamin@webkit.org>
-
-        [Mac] Add a feature flag for 'view-mode' Media Feature, disable it on Mac
-        https://bugs.webkit.org/show_bug.cgi?id=111297
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::setViewModeMediaFeature):
-
-2013-03-08  Chris Fleizach  <cfleizach@apple.com>
-
-        [Mac] [WK2] platform/mac/accessibility/press-action-is-first.html fails
-        https://bugs.webkit.org/show_bug.cgi?id=111814
-
-        Reviewed by Ryosuke Niwa.
-
-        Add the needed supportedActions() attribute to WKTestRunner.
-
-        * WebKitTestRunner/InjectedBundle/AccessibilityUIElement.cpp:
-        (WTR::AccessibilityUIElement::supportedActions):
-        * WebKitTestRunner/InjectedBundle/AccessibilityUIElement.h:
-        (AccessibilityUIElement):
-        * WebKitTestRunner/InjectedBundle/Bindings/AccessibilityUIElement.idl:
-        * WebKitTestRunner/InjectedBundle/mac/AccessibilityUIElementMac.mm:
-        (WTR::AccessibilityUIElement::supportedActions):
-
-2013-03-08  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL] Memory leak at WKViewClientWebProcessCallbacks API test
-        https://bugs.webkit.org/show_bug.cgi?id=111851
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * TestWebKitAPI/Tests/WebKit2/efl/WKViewClientWebProcessCallbacks.cpp:
-        (TestWebKitAPI::TEST):
-
-            Fixed WKURLRef instance leaking.
-
-2013-03-08  Christophe Dumez  <ch.dumez@sisa.samsung.com>
-
-        [EFL] [WK2] Some authentication tests fail in WebKit2
-        https://bugs.webkit.org/show_bug.cgi?id=106407
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add patch from upstream for libsoup 2.40 to fix several authentication
-        test cases.
-
-        * efl/jhbuild.modules:
-        * efl/patches/libsoup-2.40-auth-fix.patch: Added.
-
-2013-03-08  Zan Dobersek  <zdobersek@igalia.com>
-
-        [GTK] Enable Web Audio in development builds
-        https://bugs.webkit.org/show_bug.cgi?id=111831
-
-        Reviewed by Philippe Normand.
-
-        Web Audio is already quite well supported on the GTK port but still has a few issues
-        that must be addressed before it is enabled by default. Despite that it should be enabled
-        in development builds just so we are up-to-date with future feature infrastructure changes.
-        The Web Audio-related layout tests are not run yet due to missing support in DRT/WKTR, but
-        that's an obvious goal before enabling the feature in release builds.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2013-03-07  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] delay clearing the TestRunners until the main view was deleted
-        https://bugs.webkit.org/show_bug.cgi?id=111823
-
-        Reviewed by Eric Seidel.
-
-        During WebViewHost::shutdown, we navigate the WebView to about:blank.
-        This may call into the test runners which assume that the delegate is
-        always non-NULL.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::~TestShell):
-
-2013-03-07  Alan Cutter  <alancutter@chromium.org>
-
-        Sheriffbot whois command can't search by full name
-        https://bugs.webkit.org/show_bug.cgi?id=111825
-
-        Reviewed by Eric Seidel.
-
-        Allowed multiple arguments to Sheriffbot's whois command.
-        Updated test expectations.
-
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        (Whois.execute):
-        * Scripts/webkitpy/tool/bot/irc_command_unittest.py:
-        (IRCCommandTest.test_whois):
-
-2013-03-07  Nils Barth  <nbarth@chromium.org>
-
-        Add Nils Barth and Koji Hara to committers.py
-        https://bugs.webkit.org/show_bug.cgi?id=111806
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-03-07  Glenn Adams  <glenn@skynav.com>
-
-        run-pert-tests should have a --test-runner-count option
-        https://bugs.webkit.org/show_bug.cgi?id=111726
-
-        Reviewed by Ryosuke Niwa.
-
-        Add --test-runner-count option to run-perf-tests, with default value of 4.
-        This option allows command line configuration of the number of times to invoke
-        the test runner (serially, not in parallel) when running a specific test in
-        a test set.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest): Add DEFAULT_TEST_RUNNER_COUNT constant.
-        (PerfTest.__init__): Rename process_run_count to test_runner_count (throughout).
-        (PerfTest.run): Rename process_run_count to test_runner_count.
-        (SingleProcessPerfTest.__init__): Add test_runner_count optional argument.
-        (ChromiumStylePerfTest.__init__): Add test_runner_count optional argument.
-        (ReplayPerfTest.__init__): Add test_runner_count optional argument.
-        (PerfTestFactory.create_perf_test): Add test_runner_count optional argument.
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._parse_args): Add '--test-runner-count' option.
-        (PerfTestsRunner._collect_tests): Use test_runner_count when creating PerfTest.
-        * Scripts/webkitpy/performance_tests/perftestsrunner_integrationtest.py:
-        (MainTest._test_run_with_json_output): Add optional compare_logs argument.
-        (MainTest.test_run_with_repeat):
-        (MainTest.test_run_with_test_runner_count): Add new test for test-runner-count option semantics.
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (MainTest.test_default_args): Add test for default option argument values.
-        (MainTest.test_parse_args): Add test for test-runner-count option parsing.
-
-2013-03-07  Christian Biesinger  <cbiesinger@chromium.org>
-
-        Add myself to reviewers.py
-        https://bugs.webkit.org/show_bug.cgi?id=111757
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-03-07  Glenn Adams  <glenn@skynav.com>
-
-        run-perf-tests should have a --repeat option
-        https://bugs.webkit.org/show_bug.cgi?id=100030
-
-        Reviewed by Ryosuke Niwa.
-
-        Add --repeat option to run-perf-tests, with default value of 1. When greater
-        than 1, runs test set specified number of times. Note that multiple runs are
-        not aggregated for statistical purposes.
-
-        Incidentally fixed typo: s/suceeds/succeeds/.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._parse_args): Add repeat option.
-        (PerfTestsRunner.run): Add outer repeat loop.
-        (PerfTestsRunner._generate_results): Split from original _generate_and_show_results.
-        (PerfTestsRunner._upload_and_show_results): Split from original _generate_and_show_results.
-        * Scripts/webkitpy/performance_tests/perftestsrunner_integrationtest.py:
-        (MainTest._test_run_with_json_output): Add repeat optional argument for generating expected logs. Fix typo.
-        (MainTest._test_run_with_json_output.mock_upload_json): Fix typo.
-        (MainTest.test_run_with_json_output): Fix typo.
-        (MainTest.test_run_with_description): Fix typo.
-        (MainTest.test_run_respects_no_results): Fix typo.
-        (MainTest.test_run_with_slave_config_json): Fix typo.
-        (MainTest.test_run_with_multiple_repositories): Fix typo.
-        (MainTest.test_run_with_upload_json): Fix typo.
-        (MainTest.test_run_with_upload_json_should_generate_perf_webkit_json): Fix typo.
-        (MainTest.test_run_with_repeat): Added new test for repeat count semantics.
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (MainTest.test_parse_args): Add test for repeat option parsing.
-
-2013-03-07  Julie Parent  <jparent@chromium.org>
-
-        showAllRuns checkbox no longer works on the stats dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=111673
-
-        Reviewed by Ojan Vafai.
-
-        Stats dashboard does not have any DB_SPECIFIC_INVALIDATING_PARAMETERS,
-        so we were trying to index into an undefined object.
-        
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (invalidateQueryParameters):
-
-2013-03-07  Mark Pilgrim  <pilgrim@chromium.org>
-
-        [Chromium] Update #include for WebStorageNamespace.h
-        https://bugs.webkit.org/show_bug.cgi?id=111748
-
-        Reviewed by Adam Barth.
-
-        In anticipation of removing
-        WK/chromium/public/WebStorageNamespace.h (once downstream
-        references have been updated)
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-
-2013-03-07  Dirk Pranke  <dpranke@chromium.org>
-
-        run-perf-tests fails due to svn_revision not working on a pure git clone
-        https://bugs.webkit.org/show_bug.cgi?id=110839
-
-        Reviewed by Ryosuke Niwa.
-
-        Previously we would call git svn find-rev to look up the commit for
-        a given revision, and that'll hang in a pure git checkout.
-
-        This patch changes the way we look up svn revisions in a git
-        repository to use git log --grep 'git-svn-id', which is much faster
-        than grepping ourselves. It also renames timestamp_of_latest_commit()
-        to timestamp_of_revision() in order to accurately reflect what
-        the method is doing. Note that this patch only changes the logic
-        inside latest_revision() and svn_revision(). I'll file a separate
-        bug to change git_commit_from_svn_revision().
-
-        This patch also contains some fixes to unit tests that had bit-rotted
-        or were otherwise fragile, so that test-webkitpy --all would pass
-        cleanly, and a fix to outputcapture so that
-        test-webkitpy -p would work correctly again.
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        (Git.svn_revision):
-        (Git.timestamp_of_revision):
-        * Scripts/webkitpy/common/checkout/scm/scm.py:
-        (SCM.svn_revision):
-        (SCM.timestamp_of_revision):
-        * Scripts/webkitpy/common/checkout/scm/scm_mock.py:
-        (MockSCM.timestamp_of_revision):
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-        (_shared_test_commit_with_message):
-        (test_commit_without_authorization):
-        (test_timestamp_of_revision):
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-        (SVN.timestamp_of_revision):
-        * Scripts/webkitpy/common/system/outputcapture.py:
-          Importing unittest2 directly may not be safe if this module is
-          imported before the autoinstaller gets a chance to set things up
-          properly. We don't actually need unittest2 here.
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._generate_results_dict):
-
-2013-03-07  Christophe Dumez  <ch.dumez@sisa.samsung.com>
-
-        [EFL] Bump libsoup dependency to 2.40.3 to fix regressions
-        https://bugs.webkit.org/show_bug.cgi?id=111756
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Bump libsoup to v2.40.3 to fix the regressions introduced by
-        previous v2.40.0 bump.
-
-        * efl/jhbuild.modules:
-
-2013-03-07  Roger Fong  <roger_fong@apple.com>
-
-        Re-enable Win EWS tests.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (WinEWS):
-
-2013-03-07  Dirk Pranke  <dpranke@chromium.org>
-
-        [nrwt] handle corrupt http server pid files cleanly
-        https://bugs.webkit.org/show_bug.cgi?id=111628
-
-        Reviewed by Eric Seidel.
-
-        If the pid file from a previous http server is corrupt for some
-        reason, NRWT will just raise errors and not clean it up or recover.
-        This patch fixes that to at least delete the pid file and
-        not throw; not that we may still have stale http servers left on
-        the system, since there's no way to know which pid to kill if
-        the file was corrupted.
-
-        * Scripts/webkitpy/layout_tests/servers/http_server_base.py:
-        (HttpServerBase.start):
-        (HttpServerBase.stop):
-        (HttpServerBase._remove_pid_file):
-        * Scripts/webkitpy/layout_tests/servers/http_server_base_unittest.py: Added.
-        (TestHttpServerBase):
-        (TestHttpServerBase.test_corrupt_pid_file):
-
-2013-03-07  Chris Fleizach  <cfleizach@apple.com>
-
-        AX: Can't activate links with VoiceOver in Safari
-        https://bugs.webkit.org/show_bug.cgi?id=111755
-
-        Reviewed by Tim Horton.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (supportedActionsCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        (AccessibilityUIElement):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::supportedActions):
-
-2013-03-07  Roger Fong  <roger_fong@apple.com>
-
-        Windows debug layout tests are crashing like crazy again.
-        Disable tests on Win EWS bots temporarily.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (WinEWS):
-
-2013-03-07  Roger Fong  <roger_fong@apple.com>
-
-        Make EWS bots build and test in release.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (WinEWS):
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        (RunTests.run):
-
-2013-03-07  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] don't track the top loading frame if no layout test is currently running
-        https://bugs.webkit.org/show_bug.cgi?id=111716
-
-        Reviewed by Kentaro Hara.
-
-        In DRT, we synchronously stop the test and start loading the next test
-        URL. However, in content_shell, this happens asynchronously. It's
-        important that the top loading frame is not changed due to stray
-        navigation events before the next test starts.
-
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::setTopLoadingFrame):
-
-2013-03-06  Julie Parent  <jparent@chromium.org>
-
-        Dashboard cleanup: Move all dashboard ui related code into ui.js.
-        https://bugs.webkit.org/show_bug.cgi?id=111621
-
-        Reviewed by Ojan Vafai.
-        
-        Creates ui.js, a package for the common UI code the various
-        dashboards use. HTML generation is now in the ui.html namespace
-        and popup handling is in ui.popup.
-        Also moves the event listening for popups to ui.popup.show and
-        removes it on ui.popup.hid rather than having listener always
-        around.
-
-        * TestResultServer/static-dashboards/aggregate_results.html:
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (showPopupForBuild):
-        (htmlForNavBar):
-        (generatePageForIndividualTests.if):
-        (generatePageForIndividualTests):
-        * TestResultServer/static-dashboards/flakiness_dashboard_embedded_unittests.js:
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-        * TestResultServer/static-dashboards/run-embedded-unittests.html:
-        * TestResultServer/static-dashboards/run-unittests.html:
-        * TestResultServer/static-dashboards/timeline_explorer.html:
-        * TestResultServer/static-dashboards/treemap.html:
-        * TestResultServer/static-dashboards/ui.js: Added.
-        (.):
-
-2013-03-06  Krzysztof Czech  <k.czech@samsung.com>
-
-        [EFL] Missing implementation of AccessibilityControllerEfl and AccessibilityUIElementEfl files
-        https://bugs.webkit.org/show_bug.cgi?id=110584
-
-        Reviewed by Gyuyoung Kim.
-
-        Adds missing implementation of AccessibilityControllerEfl
-        and AccessibilityUIElementEfl files. Modify DumpRenderTreeChrome
-        so that it can make accessibilityController as a js object.
-
-        * DumpRenderTree/AccessibilityController.h:
-        (AccessibilityController):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/atk/AccessibilityControllerAtk.cpp:
-        (AccessibilityController::childElementById): Moved declaration to base class.
-        Implementation can be shared among other ports.
-        * DumpRenderTree/efl/AccessibilityControllerEfl.cpp: Copied from Tools/DumpRenderTree/gtk/AccessibilityControllerGtk.cpp.
-        (AccessibilityController::focusedElement):
-        (AccessibilityController::rootElement):
-        (AccessibilityController::accessibleElementById):
-        * DumpRenderTree/efl/AccessibilityUIElementEfl.cpp: Copied from Tools/DumpRenderTree/atk/AccessibilityControllerAtk.cpp.
-        (AccessibilityUIElement::helpText):
-        * DumpRenderTree/efl/CMakeLists.txt:
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::DumpRenderTreeChrome):
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        (DumpRenderTreeChrome::onWindowObjectCleared):
-        (DumpRenderTreeChrome::accessibilityController):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.h:
-        (DumpRenderTreeChrome):
-        * DumpRenderTree/gtk/AccessibilityControllerGtk.cpp:
-
-2013-03-06  Benjamin Poulain  <benjamin@webkit.org>
-
-        WebKitTestRunner needs layoutTestController.elementDoesAutoCompleteForElementWithId
-        https://bugs.webkit.org/show_bug.cgi?id=42696
-
-        Reviewed by Andreas Kling.
-
-        * DumpRenderTree/TestRunner.cpp:
-        (TestRunner::staticFunctions):
-        * DumpRenderTree/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        * DumpRenderTree/gtk/TestRunnerGtk.cpp:
-        * DumpRenderTree/mac/TestRunnerMac.mm:
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunnerQt):
-        * DumpRenderTree/win/TestRunnerWin.cpp:
-        * DumpRenderTree/wx/TestRunnerWx.cpp:
-
-2013-03-06  Roger Fong  <roger_fong@apple.com>
-
-        Re-enable WinEWS test and decrease iterations before clean build back to 10.
-
-        * EWSTools/start-queue-win.sh:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (WinEWS):
-
-2013-03-06  Manuel Rego Casasnovas  <rego@igalia.com>
-
-        [WK2][GTK] Fix unit test WebKit2APITests/WebKitWebView/mouse-target
-        https://bugs.webkit.org/show_bug.cgi?id=82866
-
-        Reviewed by Martin Robinson.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner): Unflag WebKit2APITests/WebKitWebView/mouse-target test as
-        it is passing now.
-
-2013-03-06  Julie Parent  <jparent@chromium.org>
-
-        Dashboard cleanup: remove dashboard time logging.
-        https://bugs.webkit.org/show_bug.cgi?id=111608
-
-        Reviewed by Dirk Pranke.
-
-        Remove logTime.  It was never accurate, and the dev tools
-        have better ways to measure this if anyone cares to look
-        into dashboard perf.
-        
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (processTestRunsForBuilder):
-        (appendHTML):
-
-2013-03-06  Tony Chang  <tony@chromium.org>
-
-        [chromium] making DumpRenderTree_resources a separate bundle breaks xcode
-        https://bugs.webkit.org/show_bug.cgi?id=111509
-
-        Reviewed by Dirk Pranke.
-
-        Add DumpRenderTree.pak to DumpRenderTree.app again.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2013-03-06  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] introduce WebUserGestureIndicator
-        https://bugs.webkit.org/show_bug.cgi?id=111531
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createView):
-
-2013-03-06  Alan Cutter  <alancutter@chromium.org>
-
-        sheriffbot roll-chromium-deps shouldn't create a bug with None as the new revision.
-        https://bugs.webkit.org/show_bug.cgi?id=73482
-
-        Reviewed by Ryosuke Niwa.
-
-        Added input checking to the UpdateChromiumDEPS step.
-        Removed the default use of LKGR when the revision input is invalid. "LKGR" must be explicitly given instead.
-
-        * Scripts/webkitpy/tool/bot/irc_command.py: Updated input validation and error message handling.
-        (RollChromiumDEPS):
-        (RollChromiumDEPS._parse_args):
-        (RollChromiumDEPS.execute):
-        * Scripts/webkitpy/tool/bot/irc_command_unittest.py: Updated unit tests.
-        (IRCCommandTest.test_roll_chromium_deps):
-        * Scripts/webkitpy/tool/bot/ircbot_unittest.py: Updated unit tests.
-        (IRCBotTest.test_roll_chromium_deps_to_lkgr):
-        * Scripts/webkitpy/tool/commands/roll_unittest.py: Updated unit tests.
-        * Scripts/webkitpy/tool/steps/updatechromiumdeps.py: Added input validation and added new error handling cases. Changed the logic of deciding to use LKGR to be only when the input is "LKGR".
-        (UpdateChromiumDEPS._fetch_last_known_good_revision):
-        (UpdateChromiumDEPS):
-        (UpdateChromiumDEPS._parse_revision_number):
-        (UpdateChromiumDEPS._validate_revisions):
-        (UpdateChromiumDEPS.run):
-        * Scripts/webkitpy/tool/steps/updatechromiumdeps_unittest.py: Added unit tests.
-        (UpdateChromiumDEPSTest):
-        (UpdateChromiumDEPSTest.test_parse_revision_number):
-        * Scripts/webkitpy/tool/commands/roll.py: Updated help text.
-        (RollChromiumDEPS):
-        (PostChromiumDEPSRoll):
-
-2013-03-06  Andras Becsi  <andras.becsi@digia.com>
-
-        [Qt][MiniBrowser] Touch mocking broken for chained getures
-        https://bugs.webkit.org/show_bug.cgi?id=111430
-
-        Reviewed by Jocelyn Turcotte.
-
-        Make it possible again to use touch mocking to test gesture chains
-        like pan->pinch->pan->pinch without lifting the primary "finger".
-        For this to work we need to track the pressed mouse buttons and
-        only synthesize touch release events when the ctrl key is released
-        if no mouse button is pressed. Else the pressed mouse button(s)
-        should result in a stationary touch point in a touch update event.
-        Since it has been fixed in Qt 5.0.1 use QGuiApplication::keyboardModifiers()
-        to check for the state of the ctrl key modifier instead of getting
-        it from the mouse events.
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::MiniBrowserApplication):
-        (MiniBrowserApplication::notify):
-
-2013-03-05  Dirk Pranke  <dpranke@chromium.org>
-
-        [chromium] don't use custom freetype on linux asan for now
-        https://bugs.webkit.org/show_bug.cgi?id=111516
-
-        Unreviewed, build fix.
-
-        Turns out the custom lib is getting picked up by other binaries
-        on our bot, which is bad.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2013-03-05  Dirk Pranke  <dpranke@chromium.org>
-
-        [chromium] making DumpRenderTree_resources a separate bundle breaks xcode
-        https://bugs.webkit.org/show_bug.cgi?id=111509
-
-        Unreviewed, build fix.
-
-        Actually comment out the flag :(.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2013-03-05  Dirk Pranke  <dpranke@chromium.org>
-
-        [chromium] making DumpRenderTree_resources a separate bundle breaks xcode
-        https://bugs.webkit.org/show_bug.cgi?id=111509
-
-        Unreviewed, build fix.
-
-        r144863 appears to have broken the xcode build; I'm temporarily
-        trying this instead, and if this doesn't work, I'll revert the
-        other changes.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2013-03-05  Dirk Pranke  <dpranke@chromium.org>
-
-        [chromium] build a DumpRenderTree.pak even on windows
-        https://bugs.webkit.org/show_bug.cgi?id=111504
-
-        Reviewed by Tony Chang.
-
-        The Chromium Aura build uses the default theme to draw
-        controls, and that theme requires the ui ResourceBundle
-        to be initialized. On every other platform, we build
-        a DumpRenderTree.pak that works for this, but on Windows we
-        still compile the resources directly into DRT. As a first step,
-        let's build the pak file. I will then need to land a patch
-        in Chromium to actually load it. Then I can go back and move
-        the resources over to just use the .pak file and no longer need
-        the .rc's.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2013-03-05  Julie Parent  <jparent@chromium.org>
-        Dashboard cleanup: move string utilities into their own namespace.
-        
-        https://bugs.webkit.org/show_bug.cgi?id=111485
-
-        Reviewed by Ojan Vafai.
-        
-        One of many pieces to clean up dashboard_base.
-        
-        Moves string utility functions into separate file (string.js) and into their own namespace rather than cluttering up the global scope.
-
-        * TestResultServer/static-dashboards/aggregate_results.html:
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (isTreeMap):
-        (isFlakinessDashboard):
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (determineWKPlatform):
-        (chromiumPlatform):
-        (platformAndBuildType):
-        (substringList):
-        (individualTestsForSubstringList):
-        (filterBugs):
-        (populateExpectationsData):
-        (processMissingTestsWithExpectations):
-        (processMissingAndExtraExpectations):
-        (htmlForSingleTestRow):
-        (.dummyNode.onload):
-        (expectationsTitle):
-        * TestResultServer/static-dashboards/run-embedded-unittests.html:
-        * TestResultServer/static-dashboards/run-unittests.html:
-        * TestResultServer/static-dashboards/string.js: Added.
-        * TestResultServer/static-dashboards/timeline_explorer.html:
-        * TestResultServer/static-dashboards/treemap.html:
-
-2013-03-05  Ryuan Choi  <ryuan.choi@samsung.com>
-
-        [EFL] Build break with latest EFL libraries
-        https://bugs.webkit.org/show_bug.cgi?id=111028
-
-        Reviewed by Dirk Pranke.
-
-        * MiniBrowser/efl/CMakeLists.txt: Added ECORE_XXX_INCLUDE_DIRS.
-        * TestWebKitAPI/PlatformEfl.cmake: Ditto.
-        * WebKitTestRunner/PlatformEfl.cmake: Ditto.
-
-2013-03-05  Roger Fong  <roger_fong@apple.com>
-
-        Increase number of WinEWS iterations to 20.
-        Don't reboot after each iteration set.
-        Make EWS bots just build temporarily so that the queue catches up again.
-
-        * EWSTools/start-queue-win.sh:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (WinEWS):
-
-2013-03-04  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Move check for threaded compositing from WebCompositorSupport to Platform
-        https://bugs.webkit.org/show_bug.cgi?id=111386
-
-        Reviewed by Adrienne Walker.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::initialize):
-
-2013-03-05  Min Qin  <qinmin@chromium.org>
-
-        Copy dictionary to the external storage before running layout test on android
-        https://bugs.webkit.org/show_bug.cgi?id=111480
-
-        Reviewed by Adam Barth.
-
-        TestWebKitPlatformSupport now needs to read an external dictionary file.
-        This file does not exist on the device. We need to copy it before running layout tests.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidDriver._setup_md5sum_and_push_data_if_needed):
-        (ChromiumAndroidDriver._push_platform_resources):
-
-2013-03-05  Dirk Pranke  <dpranke@chromium.org>
-
-        [chromium] DRT crashes in an Aura/Win build
-        https://bugs.webkit.org/show_bug.cgi?id=111394
-
-        Reviewed by Tony Chang.
-
-        When building (and running) with use_aura=1, we assume that
-        we're using the default theme engine, but DRT creates the
-        DRTWin theme engine and overwrites the default, leading to crashes
-        in basically every test from the mismatch.
-
-        This fix gets us down to at least "lots of crashes" :).
-
-        * DumpRenderTree/chromium/TestShellWin.cpp:
-        (platformInit):
-
-2013-03-05  Eric Seidel  <eric@webkit.org>
-
-        Add html-parser-threaded perf test now that the threaded parser is enabled by default
-        https://bugs.webkit.org/show_bug.cgi?id=111200
-
-        Reviewed by Ryosuke Niwa.
-
-        Had to teach run-perf-tests to ignore one more warning.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest):
-
-2013-03-05  Jochen Eisinger  <jochen@chromium.org>
-
-        Update list of builders for test results server
-        https://bugs.webkit.org/show_bug.cgi?id=111166
-
-        Reviewed by Ojan Vafai.
-
-        * TestResultServer/static-dashboards/builders.jsonp:
-
-2013-03-05  Martin Robinson  <mrobinson@igalia.com> and Tomas Popela  <tpopela@redhat.com>
-
-        [GTK] Move basic dependency installation to a script
-        https://bugs.webkit.org/show_bug.cgi?id=110692
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * gtk/install-dependencies: Added. A Script which installs all dependencies
-        necessary for building for Debian-based distributions and Fedora.
-
-2013-03-05  James Robinson  <jamesr@chromium.org>
-
-        Chromium DumpRenderTree dumps a core every time it's run (Linux/Debug)
-        https://bugs.webkit.org/show_bug.cgi?id=111440
-
-        Reviewed by Adrienne Walker.
-
-        Remove unnecessary WebCompositorSupport::shutdown call
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-
-2013-03-05  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Unreviewed build fix.
-
-        * GNUmakefile.am: add generate-feature-defines-files scripts to EXTRA_DIST.
-
-2013-03-05  Andras Becsi  <andras.becsi@digia.com>
-
-        [Qt][MiniBrowser] Improve the update of touch indicators
-        https://bugs.webkit.org/show_bug.cgi?id=111429
-
-        Reviewed by Jocelyn Turcotte.
-
-        MiniBrowserApplication::sendTouchEvent sends an empty list
-        to BrowserWindow::updateVisualMockTouchPoints if the control
-        button is released, in which case the touch indicators should
-        be hidden so that we never end up with a leftover indicator
-        sticking on the screen.
-        This patch also simplifies the lookup of the indicator items by
-        replacing the findChild search in the item tree with a QHash
-        that stores the touch ID's and the pointers to the corresponding
-        indicator items.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::updateVisualMockTouchPoints):
-        * MiniBrowser/qt/BrowserWindow.h:
-        (BrowserWindow):
-
-2013-03-05  Tim Horton  <timothy_horton@apple.com>, Grzegorz Czajkowski  <g.czajkowski@samsung.com>
-
-        [WK2] WTR needs an implementation of setAsynchronousSpellCheckingEnabled
-        https://bugs.webkit.org/show_bug.cgi?id=81042
-
-        Reviewed by Enrica Casucci.
-
-        Add setAsynchronousSpellCheckingEnabled implementation for
-        WebKitTestRunner to have the possibility to test asynchronous
-        spell checking implementation from bug 109577.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::setAsynchronousSpellCheckingEnabled):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-
-2013-03-05  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: Add the getStreamById method on RTCPeerConnection
-        https://bugs.webkit.org/show_bug.cgi?id=111311
-
-        Reviewed by Adam Barth.
-
-        Changing mocks to be more realistic.
-
-        * DumpRenderTree/chromium/TestRunner/src/MockWebRTCPeerConnectionHandler.cpp:
-        (WebTestRunner::MockWebRTCPeerConnectionHandler::addStream):
-        (WebTestRunner::MockWebRTCPeerConnectionHandler::removeStream):
-        * DumpRenderTree/chromium/TestRunner/src/WebUserMediaClientMock.cpp:
-        (WebTestRunner::WebUserMediaClientMock::requestUserMedia):
-
-2013-03-05  Jochen Eisinger  <jochen@chromium.org>
-
-        Add content shell bots to garden-o-matic for general failurse
-        https://bugs.webkit.org/show_bug.cgi?id=111168
-
-        Reviewed by Adam Barth.
-
-        All but the WebKit (Content Shell) Android bot is stable enough. While
-        they're not green yet, there must not be any non-layout test failures on
-        them.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-        (.):
-
-2013-03-04  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] remove deprecated WebTestRunner::setFocus API
-        https://bugs.webkit.org/show_bug.cgi?id=111354
-
-        Reviewed by James Robinson.
-
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestDelegate):
-
-2013-03-04  Jochen Eisinger  <jochen@chromium.org>
-
-        Run the bindings generation tests on EWS and CQ bots
-        https://bugs.webkit.org/show_bug.cgi?id=111358
-
-        Reviewed by Adam Barth.
-
-        The tests are super fast and not flaky.
-
-        * Scripts/webkitpy/common/config/ports.py:
-        (DeprecatedPort.run_bindings_tests_command):
-        * Scripts/webkitpy/common/config/ports_mock.py:
-        (MockPort.run_webkit_tests_command):
-        (MockPort):
-        (MockPort.run_bindings_tests_command):
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        (RunTests.run):
-        * Scripts/webkitpy/tool/steps/runtests_unittest.py:
-        (RunTestsTest.test_webkit_run_unit_tests):
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-
-2013-03-04  Eric Seidel  <eric@webkit.org>
-
-        run-webkit-tests should support --profile and --profiler= just like run-perf-tests does
-        https://bugs.webkit.org/show_bug.cgi?id=111384
-
-        Reviewed by Ryosuke Niwa.
-
-        Sometimes I want to know why various LayoutTests are slow
-        without having to convert them into PerformanceTests in order
-        to use our fancy profiling.  The Driver already knows how to
-        do the right thing, we just need to expose the options to the user.
-
-        Handling of these options is already unittested in the perftests_unittest.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-
-2013-03-04  Alan Cutter  <alancutter@chromium.org>
-
-        check-webkit-style says "Have to enable auto props in the subversion config file"
-        https://bugs.webkit.org/show_bug.cgi?id=107724
-
-        Reviewed by Tony Chang.
-
-        Added a standard svn config file for WebKit developers to use.
-        Updated the style and commit queue bot build scripts to load this file.
-
-        * EWSTools/GoogleComputeEngine/build-commit-queue.sh:
-        * EWSTools/GoogleComputeEngine/build-feeder-style-sheriffbot.sh:
-        * EWSTools/configure-svn-config.sh: Copied from Tools/EWSTools/GoogleComputeEngine/build-commit-queue.sh.
-        * svn-config: Added.
-
-2013-03-04  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Switch to new webkit_support::CreateLayerTreeView interface
-        https://bugs.webkit.org/show_bug.cgi?id=111285
-
-        Reviewed by Adrienne Walker.
-
-        This removes the need for WebCompositorSupport::initialize and exposes
-        slightly fewer entry points across the repository boundary.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::initialize):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::webCompositorThread):
-        (TestShell):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::initializeLayerTreeView):
-
-2013-03-04  Roger Fong  <roger_fong@apple.com>
-
-        Unreviewed. Get rid of some AppleWin VS2010 build warnings.
-
-        * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginCommon.props:
-
-2013-03-04  David Kilzer  <ddkilzer@apple.com>
-
-        BUILD FIX (r144657): Fix DumpRenderTree build failure on iOS
-
-            Tools/DumpRenderTree/ios/AccessibilityControllerIOS.mm:95:29: error: class method '+stringWithJSStringRef:' not found (return type defaults to 'id') [-Werror,-Wobjc-method-access]
-                NSString *idAttribute = [NSString stringWithJSStringRef:idAttributeRef];
-                                        ^         ~~~~~~~~~~~~~~~~~~~~~
-            1 error generated.
-
-        * DumpRenderTree/ios/AccessibilityControllerIOS.mm: Import
-        AccessibilityCommonMac.h.
-
-2013-03-04  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [WK2][EFL] Add callbacks to the WKViewClient to handle Web Process crash and relaunch
-        https://bugs.webkit.org/show_bug.cgi?id=109828
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Added API test for newly added Web Process crash and Web Process relaunch WKViewClient
-        callbacks.
-
-        * TestWebKitAPI/CMakeLists.txt:
-
-            Tests located in 'TestWebKitAPI/Tests/WebKit2' subdirectories are also
-            considered.
-
-        * TestWebKitAPI/PlatformEfl.cmake:
-        * TestWebKitAPI/Tests/WebKit2/efl/WKViewClientWebProcessCallbacks.cpp: Added.
-        (TestWebKitAPI):
-        (TestWebKitAPI::didFinishLoadForFrame):
-        (TestWebKitAPI::setPageLoaderClient):
-        (TestWebKitAPI::webProcessCrashed):
-        (TestWebKitAPI::webProcessDidRelaunch):
-        (TestWebKitAPI::setViewClient):
-        (TestWebKitAPI::TEST):
-
-2013-03-04  Chris Fleizach  <cfleizach@apple.com>
-
-        AX: Upstream iOS Accessibility DumpRenderTree changes
-        https://bugs.webkit.org/show_bug.cgi?id=111220
-
-        Reviewed by David Kilzer.
-
-        Upstream the iOS changes for accessibility in DumpRenderTree.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (headerElementAtIndexCallback):
-        (linkedElementCallback):
-        (elementsForRangeCallback):
-        (increaseTextSelectionCallback):
-        (decreaseTextSelectionCallback):
-        (assistiveTechnologySimulatedFocusCallback):
-        (stringForSelectionCallback):
-        (getIPhoneLabelCallback):
-        (getIPhoneHintCallback):
-        (getIPhoneValueCallback):
-        (getIPhoneIdentifierCallback):
-        (getIPhoneTraitsCallback):
-        (getIPhoneIsElementCallback):
-        (getIPhoneElementTextPositionCallback):
-        (getIPhoneElementTextLengthCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        (AccessibilityUIElement):
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/ios: Added.
-        * DumpRenderTree/ios/AccessibilityControllerIOS.mm: Added.
-        (AccessibilityController::AccessibilityController):
-        (AccessibilityController::~AccessibilityController):
-        (AccessibilityController::elementAtPoint):
-        (AccessibilityController::focusedElement):
-        (AccessibilityController::rootElement):
-        (findAccessibleObjectById):
-        (AccessibilityController::accessibleElementById):
-        (AccessibilityController::setLogFocusEvents):
-        (AccessibilityController::setLogScrollingStartEvents):
-        (AccessibilityController::setLogValueChangeEvents):
-        (AccessibilityController::setLogAccessibilityEvents):
-        (AccessibilityController::addNotificationListener):
-        (AccessibilityController::removeNotificationListener):
-        * DumpRenderTree/ios/AccessibilityUIElementIOS.mm: Added.
-        (AccessibilityUIElement::AccessibilityUIElement):
-        (AccessibilityUIElement::~AccessibilityUIElement):
-        (concatenateAttributeAndValue):
-        (AccessibilityUIElement::iphoneLabel):
-        (AccessibilityUIElement::iphoneHint):
-        (AccessibilityUIElement::iphoneValue):
-        (AccessibilityUIElement::iphoneIdentifier):
-        (AccessibilityUIElement::iphoneTraits):
-        (AccessibilityUIElement::iphoneIsElement):
-        (AccessibilityUIElement::iphoneElementTextPosition):
-        (AccessibilityUIElement::iphoneElementTextLength):
-        (AccessibilityUIElement::url):
-        (AccessibilityUIElement::x):
-        (AccessibilityUIElement::y):
-        (AccessibilityUIElement::width):
-        (AccessibilityUIElement::height):
-        (AccessibilityUIElement::clickPointX):
-        (AccessibilityUIElement::clickPointY):
-        (AccessibilityUIElement::getChildren):
-        (AccessibilityUIElement::getChildrenWithRange):
-        (AccessibilityUIElement::childrenCount):
-        (AccessibilityUIElement::elementAtPoint):
-        (AccessibilityUIElement::indexOfChild):
-        (AccessibilityUIElement::getChildAtIndex):
-        (AccessibilityUIElement::headerElementAtIndex):
-        (AccessibilityUIElement::linkedElement):
-        (AccessibilityUIElement::linkedUIElementAtIndex):
-        (AccessibilityUIElement::ariaOwnsElementAtIndex):
-        (AccessibilityUIElement::ariaFlowToElementAtIndex):
-        (AccessibilityUIElement::disclosedRowAtIndex):
-        (AccessibilityUIElement::selectedRowAtIndex):
-        (AccessibilityUIElement::rowAtIndex):
-        (AccessibilityUIElement::titleUIElement):
-        (AccessibilityUIElement::parentElement):
-        (AccessibilityUIElement::disclosedByRow):
-        (AccessibilityUIElement::increaseTextSelection):
-        (AccessibilityUIElement::decreaseTextSelection):
-        (AccessibilityUIElement::stringForSelection):
-        (AccessibilityUIElement::stringForRange):
-        (AccessibilityUIElement::attributedStringForRange):
-        (AccessibilityUIElement::attributedStringRangeIsMisspelled):
-        (AccessibilityUIElement::elementsForRange):
-        (AccessibilityUIElement::getLinkedUIElements):
-        (AccessibilityUIElement::getDocumentLinks):
-        (AccessibilityUIElement::attributesOfLinkedUIElements):
-        (AccessibilityUIElement::attributesOfDocumentLinks):
-        (AccessibilityUIElement::attributesOfChildren):
-        (AccessibilityUIElement::allAttributes):
-        (AccessibilityUIElement::stringAttributeValue):
-        (AccessibilityUIElement::isPressActionSupported):
-        (AccessibilityUIElement::isIncrementActionSupported):
-        (AccessibilityUIElement::isDecrementActionSupported):
-        (AccessibilityUIElement::boolAttributeValue):
-        (AccessibilityUIElement::isAttributeSettable):
-        (AccessibilityUIElement::isAttributeSupported):
-        (AccessibilityUIElement::parameterizedAttributeNames):
-        (AccessibilityUIElement::role):
-        (AccessibilityUIElement::subrole):
-        (AccessibilityUIElement::roleDescription):
-        (AccessibilityUIElement::title):
-        (AccessibilityUIElement::description):
-        (AccessibilityUIElement::orientation):
-        (AccessibilityUIElement::stringValue):
-        (AccessibilityUIElement::language):
-        (AccessibilityUIElement::helpText):
-        (AccessibilityUIElement::intValue):
-        (AccessibilityUIElement::minValue):
-        (AccessibilityUIElement::maxValue):
-        (AccessibilityUIElement::valueDescription):
-        (AccessibilityUIElement::insertionPointLineNumber):
-        (AccessibilityUIElement::isEnabled):
-        (AccessibilityUIElement::isRequired):
-        (AccessibilityUIElement::isFocused):
-        (AccessibilityUIElement::isSelected):
-        (AccessibilityUIElement::isExpanded):
-        (AccessibilityUIElement::isChecked):
-        (AccessibilityUIElement::hierarchicalLevel):
-        (AccessibilityUIElement::ariaIsGrabbed):
-        (AccessibilityUIElement::ariaDropEffects):
-        (AccessibilityUIElement::lineForIndex):
-        (AccessibilityUIElement::boundsForRange):
-        (AccessibilityUIElement::attributesOfColumnHeaders):
-        (AccessibilityUIElement::attributesOfRowHeaders):
-        (AccessibilityUIElement::attributesOfColumns):
-        (AccessibilityUIElement::attributesOfRows):
-        (AccessibilityUIElement::attributesOfVisibleCells):
-        (AccessibilityUIElement::attributesOfHeader):
-        (AccessibilityUIElement::rowCount):
-        (AccessibilityUIElement::columnCount):
-        (AccessibilityUIElement::indexInTable):
-        (AccessibilityUIElement::rowIndexRange):
-        (AccessibilityUIElement::columnIndexRange):
-        (AccessibilityUIElement::cellForColumnAndRow):
-        (AccessibilityUIElement::selectedTextRange):
-        (AccessibilityUIElement::assistiveTechnologySimulatedFocus):
-        (AccessibilityUIElement::setSelectedTextRange):
-        (AccessibilityUIElement::increment):
-        (AccessibilityUIElement::decrement):
-        (AccessibilityUIElement::showMenu):
-        (AccessibilityUIElement::press):
-        (AccessibilityUIElement::accessibilityValue):
-        (AccessibilityUIElement::documentEncoding):
-        (AccessibilityUIElement::documentURI):
-        (_accessibilityNotificationCallback):
-        (AccessibilityUIElement::addNotificationListener):
-        (AccessibilityUIElement::removeNotificationListener):
-        (AccessibilityUIElement::isFocusable):
-        (AccessibilityUIElement::isSelectable):
-        (AccessibilityUIElement::isMultiSelectable):
-        (AccessibilityUIElement::isSelectedOptionActive):
-        (AccessibilityUIElement::isVisible):
-        (AccessibilityUIElement::isOffScreen):
-        (AccessibilityUIElement::isCollapsed):
-        (AccessibilityUIElement::isIgnored):
-        (AccessibilityUIElement::hasPopup):
-        (AccessibilityUIElement::takeFocus):
-        (AccessibilityUIElement::takeSelection):
-        (AccessibilityUIElement::addSelection):
-        (AccessibilityUIElement::removeSelection):
-        (AccessibilityUIElement::uiElementForSearchPredicate):
-        (AccessibilityUIElement::numberAttributeValue):
-
-2013-03-04  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] pass all focus handling methods through the WebTestDelegate
-        https://bugs.webkit.org/show_bug.cgi?id=111328
-
-        Reviewed by Nico Weber.
-
-        In content_shell, the focus handling is asynchronous. To allow for
-        switching the focus synchronously between WebViews, we need to intercept
-        didFocus and didBlur and forward it to the WebTestDelegate.
-
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestDelegate):
-        (WebTestRunner::WebTestDelegate::setFocus):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebTestRunner::WebTestProxy::didFocus):
-        (WebTestRunner::WebTestProxy::didBlur):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::setWindowIsKey):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::didFocus):
-        (WebTestRunner):
-        (WebTestRunner::WebTestProxyBase::didBlur):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::didFocus):
-        (WebViewHost::didBlur):
-        (WebViewHost::setFocus):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-03-04  Claudio Saavedra  <csaavedra@igalia.com>
-
-        [GTK] No need to manually add system paths to jhbuildrc
-        https://bugs.webkit.org/show_bug.cgi?id=110850
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * gtk/jhbuildrc: Remove calls to addpath() for items that jhbuild
-        already takes care of.
-
-2013-03-04  Kinuko Yasuda  <kinuko@chromium.org>
-
-        [chromium] TestWebKitAPI WTF.StringHasher_addCharacters is broken on Chromium Android
-        https://bugs.webkit.org/show_bug.cgi?id=111284
-
-        Disabling the failing two tests on Android.
-
-        Reviewed by Jochen Eisinger.
-
-        * TestWebKitAPI/Tests/WTF/StringHasher.cpp:
-        (TestWebKitAPI):
-        (TestWebKitAPI::TEST):
-
-2013-03-04  Kunihiko Sakamoto  <ksakamoto@chromium.org>
-
-        Add build flag for FontLoader
-        https://bugs.webkit.org/show_bug.cgi?id=111289
-
-        Reviewed by Benjamin Poulain.
-
-        Add ENABLE_FONT_LOAD_EVENTS build flag (disabled by default).
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2013-03-03  Benjamin Poulain  <benjamin@webkit.org>
-
-        [Mac] Get rid of a useless method from DOMHTMLInputElement
-        https://bugs.webkit.org/show_bug.cgi?id=111279
-
-        Reviewed by Sam Weinig.
-
-        * DumpRenderTree/mac/TestRunnerMac.mm:
-        (TestRunner::setValueForUser):
-        The method _setValueForUser: was added for testing. This feature is already
-        exposed by DOMHTMLInputElement as a private API and it is how this code is exercised
-        in real use cases. Get rid of the method created for testing, use the real thing
-        instead.
-
-2013-03-03  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Some perf. tests have variances that differ greatly between runs
-        https://bugs.webkit.org/show_bug.cgi?id=97510
-
-        Reviewed by Benjamin Poulain.
-
-        Use multiple instances of DumpRenderTree or WebKitTestRunner to amortize the effect of the runtime
-        environment on test results (we run each instance after one another, not in parallel).
-
-        We use 4 instances of the test runner, each executing 5 in-process iterations, for the total of 20
-        iterations as it was done previously in single process. These values are hard-coded in perftest.py
-        and runner.js but they are to be configurable in the future.
-
-        Set of 5 iterations obtained by the same test runner is treated as an "iteration group" and each
-        metric now reports an array of the length 4 with each element containing an array of 5 iteration
-        values obtained by each test runner instance as opposed to a flattened array of 20 iteration values.
-
-        Unfortunately, we can use the same trick on Dromaeo because we're already doing only 5 iterations
-        and repeating the entire Dromaeo 4 times will take too long. We need to disable more Dromaeo tests
-        as needed. To this end, added SingleProcessPerfTest to preserve the old behavior.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTestMetric.append_group): Renamed from append.
-        (PerfTestMetric.grouped_iteration_values): Added.
-        (PerfTestMetric.flattened_iteration_values): Renamed from iteration_values.
-
-        (PerfTest.__init__): Takes the number of processes (drivers) to run tests with.
-        This parameter is only used by SingleProcessPerfTest.
-
-        (PerfTest.run): Repeat tests using different driver processes.
-        (PerfTest._run_with_driver): Returns a boolean instead of a list of measured metrics
-        since metrics are shared between multiple drivers (i.e. multiple calls to _run_with_driver).
-        We instead use _ensure_metrics to obtain the matched metrics and store the data there.
-        (PerfTest._ensure_metrics): Added.
-
-        (SingleProcessPerfTest): Added. Used to run Dromaeo tests where running it on 4 different
-        instances of DumpRenderTree/WebKitTestRunner takes too long.
-        (SingleProcessPerfTest.__init__):
-
-        (ReplayPerfTest._run_with_driver): Updated to use _ensure_metrics.
-
-        (PerfTestFactory): Use SingleProcessPerfTest to run Dromaeo tests.
-
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py: Updated various tests that expect
-        _run_with_driver to return a list of metrics. Now it returns a boolean indicating whether
-        the test succeeded or not. Obtain the dictionary of metrics via test._metrics instead.
-
-        (TestPerfTestMetric.test_append): Updated per name and added some test cases for
-        grouped_iteration_values.
-
-        (TestPerfTest._assert_results_are_correct):
-
-        (TestSingleProcessPerfTest): Added.
-        (TestSingleProcessPerfTest.test_use_only_one_process):
-        (TestSingleProcessPerfTest.test_use_only_one_process.run_single):
-
-        (TestReplayPerfTest.test_run_with_driver_accumulates_results):
-        (TestReplayPerfTest.test_run_with_driver_accumulates_memory_results):
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner_integrationtest.py: Updated values of
-        sample standard deviations since we're now running tests 4 times.
-        (MainTest._test_run_with_json_output.mock_upload_json):
-        (MainTest.test_run_with_upload_json_should_generate_perf_webkit_json):
-
-2013-03-03  Alexandre Elias  <aelias@chromium.org>
-
-        [chromium] Remove WebLayerTreeView::setViewportSize call
-        https://bugs.webkit.org/show_bug.cgi?id=110727
-
-        Reviewed by James Robinson.
-
-        After https://codereview.chromium.org/12328080 lands,
-        setViewportSize is called from the Chromium side. The multiplication
-        by deviceScaleFactor here was prone to off-by-one errors.
-        The layoutSize() function was only used here so delete it as well.
-
-        DumpRenderTree WebViewHost must now call this method as well.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::initializeLayerTreeView):
-        (WebViewHost::setWindowRect):
-        (WebViewHost::setDeviceScaleFactor):
-        (WebViewHost::updateViewportSize):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-02-27  Darin Adler  <darin@apple.com>
-
-        StringHasher functions require alignment that call sites do not all guarantee
-        https://bugs.webkit.org/show_bug.cgi?id=110171
-
-        Reviewed by Benjamin Poulain.
-
-        * TestWebKitAPI/CMakeLists.txt:
-        * TestWebKitAPI/GNUmakefile.am:
-        * TestWebKitAPI/TestWebKitAPI.gypi:
-        * TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPI.vcxproj:
-        * TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPI.vcxproj.filters:
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WTF/WTF.pro:
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        Added the StringHasher.cpp file.
-
-        * TestWebKitAPI/Tests/WTF/StringHasher.cpp: Added. Contains a bunch of tests
-        for the functions in the StringHasher class.
-
-2013-03-02  Benjamin Poulain  <bpoulain@apple.com>
-
-        Move computedStyleIncludingVisitedInfo from TestRunner to Internals
-        https://bugs.webkit.org/show_bug.cgi?id=109772
-
-        Reviewed by Andreas Kling.
-
-        * DumpRenderTree/TestRunner.cpp:
-        (TestRunner::staticFunctions):
-        * DumpRenderTree/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp:
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        * DumpRenderTree/gtk/TestRunnerGtk.cpp:
-        * DumpRenderTree/mac/TestRunnerMac.mm:
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunner):
-        * DumpRenderTree/win/TestRunnerWin.cpp:
-        * DumpRenderTree/wx/TestRunnerWx.cpp:
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-
-2013-03-01  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Web Inspector: Native Memory Instrumentation: do not visit raw pointers by default.
-        https://bugs.webkit.org/show_bug.cgi?id=110943
-
-        Reviewed by Yury Semikhatsky.
-
-        Unfortunately in many cases raw pointer may point to an object that has been deleted.
-        There is no working solution to solve this problem in general.
-        It could be solved only on case by case basis.
-
-        * TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp:
-        * TestWebKitAPI/Tests/WebCore/HeapGraphSerializerTest.cpp:
-        (TestWebKitAPI::TEST):
-
-2013-03-01  Jason Anderssen  <janderssen@gmail.com>
-
-        Move markerTextForListItem from TestRunner to Internals
-        https://bugs.webkit.org/show_bug.cgi?id=110939
-
-        Reviewed by Benjamin Poulain.
-
-        * DumpRenderTree/TestRunner.cpp:
-        (TestRunner::staticFunctions):
-        * DumpRenderTree/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        * DumpRenderTree/gtk/TestRunnerGtk.cpp:
-        * DumpRenderTree/mac/TestRunnerMac.mm:
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunnerQt):
-        * DumpRenderTree/win/TestRunnerWin.cpp:
-        * DumpRenderTree/wx/TestRunnerWx.cpp:
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-
-2013-03-01  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Don't use legacy test names when returning results from PerfTest.run
-        https://bugs.webkit.org/show_bug.cgi?id=111148
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTestMetric.name): Renamed from metric.
-        (PerfTest.test_name_without_file_extension): Extracted from legacy_chromium_bot_compatible_test_name.
-        (PerfTest.run): Use metric name instead of the legacy name to store iteration values.
-        (ChromiumStylePerfTest.parse_and_log_output): Use the metric name to store results as done in PerfTest.run.
-
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py:
-        (TestPerfTestMetric.test_init_set_time_metric):
-        (TestPerfTestMetric.legacy_chromium_bot_compatible_test_name): Removed. The integration tests test this.
-        (TestReplayPerfTest.test_run_with_driver_accumulates_results):
-        (TestReplayPerfTest.test_run_with_driver_accumulates_memory_results):
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner.__init__):
-        (PerfTestsRunner._generate_results_dict): Updated to iterate over (test, metrics) pair. Use view_source_url
-        to obtain the trac URL instead of hard coding it.
-        (PerfTestsRunner._run_tests_set):
-
-2013-03-01  Roger Fong  <roger_fong@apple.com>
-
-        Unreviewed. Add an extra project that assembles all project build logs on Windows into a single file.
-        https://bugs.webkit.org/show_bug.cgi?id=111202
-
-        This is useful for running VCExpress builds from command line because there is
-        no unified solution output, only per project build logs.
-        The project will be run as the last project in the solution.
-
-        * win/AssembleBuildLogs: Added.
-        * win/AssembleBuildLogs/AssembleBuildLogs.vcxproj: Added.
-        * win/AssembleBuildLogs/AssembleBuildLogs.vcxproj.filters: Added.
-        * win/AssembleBuildLogs/AssembleLogs.cmd: Added.
-        * win/AssembleBuildLogs/README: Added.
-
-2013-03-01  Roger Fong  <roger_fong@apple.com>
-
-        Unreviewed. Increase number of patches processed before clean building on WinEWS bots.
-
-        * EWSTools/start-queue-win.sh:
-
-2013-03-01  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Don't return statistics in PerfTest.run
-        https://bugs.webkit.org/show_bug.cgi?id=111145
-
-        Reviewed by Dirk Pranke.
-
-        Simply return a list of values obtained in each iteration from PerfTest.run.
-        Also simplify various methods as needed.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTestMetric.__init__): Moved the code to convert 'Time' metric to 'FrameRate' and 'Runs'
-        as needed from PerfTestsRunner._generate_results_dict.
-
-        (PerfTestMetric.legacy_chromium_bot_compatible_test_name): Always append the metric name now
-        that we don't have to worry about the backward compatibility here.
-
-        (PerfTestMetric.iteration_values): Added.
-        (PerfTestMetric.unit): Added.
-        (PerfTestMetric.metric_to_unit):
-        (PerfTestMetric.time_unit_to_metric): Extracted from PerfTestsRunner._generate_results_dict.
-
-        (PerfTest.run):
-        (PerfTest.log_statistics): Merged compute_statistics and self.output_statistics.
-
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py:
-        (TestPerfTestMetric.test_init_set_missing_unit):
-        (TestPerfTestMetric.test_init_set_time_metric): Added.
-        (TestPerfTestMetric.test_legacy_chromium_bot_compatible_test_name):
-        (TestPerfTestMetric.test_append):
-        (TestPerfTestMetric.test_compute_statistics): Removed. Integration tests check some of these
-        test cases and it's not critical to keep math right as they're not used in output JSON anymore.
-        (TestPerfTest._assert_results_are_correct):
-        (TestReplayPerfTest.test_run_with_driver_accumulates_results):
-        (TestReplayPerfTest.test_run_with_driver_accumulates_memory_results):
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._generate_results_dict):
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner_integrationtest.py:
-        (EventTargetWrapperTestData): The metric name shows up at the end of the test name as expected.
-        (SomeParserTestData): Ditto.
-        (MemoryTestData): Ditto.
-
-2013-03-01  Allan Sandfeld Jensen  <allan.jensen@digia.com>
-
-        [Qt] Enable LINK_PREFETCH
-        https://bugs.webkit.org/show_bug.cgi?id=111158
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/features.pri:
-
-2013-03-01  Allan Sandfeld Jensen  <allan.jensen@digia.com>
-
-        [Qt] Update features.pri with new features
-        https://bugs.webkit.org/show_bug.cgi?id=111157
-
-        Reviewed by Jocelyn Turcotte.
-
-        * qmake/mkspecs/features/features.pri:
-
-2013-03-01  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] put WebTestProxy::scheduleComposite back in place
-        https://bugs.webkit.org/show_bug.cgi?id=111146
-
-        Reviewed by Nico Weber.
-
-        The call was removed in http://trac.webkit.org/changeset/144398 because
-        DRT doesn't need it. However, content shell depends on this call.
-
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebTestRunner::WebTestProxy::scheduleComposite):
-
-2013-02-28  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Merge PerfTestRunner._run_single_test into PerfTestRunner._run_tests_set
-        https://bugs.webkit.org/show_bug.cgi?id=111142
-
-        Reviewed by Adam Barth.
-
-        Merged _run_single_test into _run_tests_set. The code looks much cleaner now.
-
-        Also removed _print_status since it's never used anywhere.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner.run):
-        (PerfTestsRunner._run_tests_set):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_integrationtest.py:
-        (MainTest.run_test):
-        (MainTest.test_run_test_set):
-        (MainTest.test_run_test_set_kills_drt_per_run):
-        (MainTest.test_run_test_set_for_parser_tests):
-
-2013-02-28  Kiran Muppala  <cmuppala@apple.com>
-
-        Disable window occlusion detection for WebKitTestRunner Web View on Mac
-        https://bugs.webkit.org/show_bug.cgi?id=111116
-
-        Reviewed by Simon Fraser.
-
-        Window occlusion notifications were causing WebKitTestRunner's Web View
-        to be detected as occluded and causing a few JavaScript timer layout
-        tests to fail.  https://bugs.webkit.org/show_bug.cgi?id=111025, fixed this
-        by initializing the page visibility to "visible" after creating the view.
-        But a better solution is to disable window occlusion detection, so that
-        not only the page but also the view is treated as visible.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::createWebViewWithOptions): Remove call to
-        setVisibilityState, since it is no longer necessary.
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (WTR::PlatformWebView::PlatformWebView): Disable window occlusion
-        detection for the created WKView.
-
-2013-02-28  Li Yin  <li.yin@intel.com>
-
-        [chromium] Events can't be triggered on MediaStreamTrack
-        https://bugs.webkit.org/show_bug.cgi?id=110930
-
-        Reviewed by Kentaro Hara.
-
-        Related code was moved to MediaStreamCenterChromium::didStopLocalMediaStream
-
-        * DumpRenderTree/chromium/TestRunner/src/MockWebMediaStreamCenter.cpp:
-        (WebTestRunner::MockWebMediaStreamCenter::didStopLocalMediaStream):
-
-2013-02-27  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Use DumpRenderTree-specific interface for DRT's compositor embedding
-        https://bugs.webkit.org/show_bug.cgi?id=111017
-
-        Reviewed by Adam Barth.
-
-        This decouples DumpRenderTree from WebLayerTreeViewClient.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHostDRTLayerTreeViewClient):
-        (WebViewHostDRTLayerTreeViewClient::WebViewHostDRTLayerTreeViewClient):
-        (WebViewHostDRTLayerTreeViewClient::~WebViewHostDRTLayerTreeViewClient):
-        (WebViewHostDRTLayerTreeViewClient::Layout):
-        (WebViewHostDRTLayerTreeViewClient::ScheduleComposite):
-        (WebViewHost::initializeLayerTreeView):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (webkit_support):
-        (WebViewHost):
-
-2013-02-28  Ryuan Choi  <ryuan.choi@samsung.com>
-
-        Unreviewed, add my secondary email address to the list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-28  Philip Rogers  <pdr@google.com>
-
-        Add Philip Rogers as a reviewer.
-
-        Unreviewed update of committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-28  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Merge more methods on PerfTest
-        https://bugs.webkit.org/show_bug.cgi?id=111030
-
-        Reviewed by Dirk Pranke.
-
-        Merged parse_output into _run_with_driver as it was the only caller. Also merged _should_ignore_line_in_stderr
-        and _should_ignore_line_in_parser_test_result into _filter_output since it was their only caller.
-
-        This makes the control flow a lot more comprehensible.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest._run_with_driver):
-        (PerfTest._should_ignore_line):
-        (PerfTest._filter_output):
-
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py:
-        (TestPerfTest._assert_results_are_correct):
-        (test_ignored_stderr_lines):
-
-2013-02-28  Robert Hogan  <robert@webkit.org>
-
-        Update my IRC nick
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-28  Andras Becsi  <andras.becsi@digia.com>
-
-        [Qt] Enable thin archives before parsing the project files
-
-        Rubber-stamped by Simon Hausmann.
-
-        The targetSubDir() function can be called before default_post.prf has been
-        parsed therefore the gnu_thin_archives option has to be set in default_pre.prf
-        which is parsed before the main project file.
-        This issue was revealed by r144299 and fixes the clean build.
-
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/default_pre.prf:
-
-2013-02-28  Allan Sandfeld Jensen  <allan.jensen@digia.com>
-
-        [Qt] Enable CANVAS_PATH flag
-        https://bugs.webkit.org/show_bug.cgi?id=108508
-
-        Reviewed by Simon Hausmann.
-
-        Also enable CANVAS_PATH flag for Qt.
-
-        * qmake/mkspecs/features/features.pri:
-
-2013-02-28  Andras Becsi  <andras.becsi@digia.com>
-
-        [Qt][TestWebKitAPI] The activeBuildConfig() function has been replaced with targetSubDir()
-
-        Rubber-stamped by Csaba Osztrogonác.
-
-        Besides suppressing a warning about the non-existing function this
-        fixes the build if there is a subdirectory (eg. debug-and-release).
-
-        * TestWebKitAPI/InjectedBundle.pri:
-        * TestWebKitAPI/TestWebKitAPI.pri:
-
-2013-02-28  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL][WTR] WTR cannot load injected bundle
-        https://bugs.webkit.org/show_bug.cgi?id=111063
-
-        Reviewed by Csaba Osztrogonác.
-
-        WTR was not able to load injected bundle because of undefined 
-        symbols for AccessibilityUIElement::scrollToMakeVisible(). 
-        Adding empty implementation of this function to AccessibilityUIElementAtk.cpp
-        solves the problem.
-
-        * WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp:
-        (WTR::AccessibilityUIElement::scrollToMakeVisible):
-
-2013-02-28  Alberto Garcia  <albgarcia@rim.com>
-
-        [BlackBerry] TestRunnerBlackBerry: remove layerTreeAsText, it's gone from upstream
-        https://bugs.webkit.org/show_bug.cgi?id=110464
-
-        Reviewed by Rob Buis.
-
-        * DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp:
-
-2013-02-28  Xan Lopez  <xlopez@rim.com>
-
-        [BlackBerry] DumpRenderTreeSupport: update the set position methods
-        https://bugs.webkit.org/show_bug.cgi?id=110578
-
-        Reviewed by Rob Buis.
-
-        TestRunner::setMockGeolocationPosition() changed in r130416:
-        http://trac.webkit.org/changeset/130416/trunk/Tools/DumpRenderTree/TestRunner.h
-
-        DumpRenderTreeSupport::setMockGeolocationError() was renamed to
-        setMockGeolocationPositionUnavailableError() in r129444:
-        http://trac.webkit.org/changeset/129444/trunk/Source/WebKit/blackberry/WebKitSupport/DumpRenderTreeSupport.h
-
-        * DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp:
-        (TestRunner::setMockGeolocationPosition):
-        (TestRunner::setMockGeolocationPositionUnavailableError):
-
-2013-02-28  Xan Lopez  <xlopez@rim.com>
-
-        [BlackBerry] WorkQueueItemBlackBerry: use the new FrameLoader API
-        https://bugs.webkit.org/show_bug.cgi?id=110465
-
-        Reviewed by Rob Buis.
-
-        * DumpRenderTree/blackberry/WorkQueueItemBlackBerry.cpp:
-        (LoadItem::invoke):
-
-2013-02-27  Ryosuke Niwa  <rniwa@webkit.org>
-
-        PerfTestRunner doesn't need _needs_http and _has_http_lock
-        https://bugs.webkit.org/show_bug.cgi?id=111037
-
-        Reviewed by Adam Barth.
-
-        Delete these variables in favor of using a local variable.
-
-        Member variables are like global variables. They introduce implicit dependencies
-        between member functions.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner.__init__):
-        (PerfTestsRunner._start_http_servers):
-        (PerfTestsRunner):
-        (PerfTestsRunner._stop_http_servers):
-        (PerfTestsRunner.run):
-
-2013-02-27  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r144224.
-        http://trac.webkit.org/changeset/144224
-        https://bugs.webkit.org/show_bug.cgi?id=111045
-
-        Caused plugins/pass-different-npp-struct.html to time out
-        (Requested by abarth on #webkit).
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/PassDifferentNPPStruct.cpp:
-        (PassDifferentNPPStruct::NPP_SetWindow):
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_SetWindow):
-
-2013-02-27  Adam Barth  <abarth@webkit.org>
-
-        [Chromium] Enable threaded HTML parser by default in DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=110907
-
-        Reviewed by Eric Seidel.
-
-        This patch changes --enable-threaded-html-parser into
-        --disable-threaded-html-parser and thereby enables the threaded HTML
-        parser by default for the Chromium port.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/WebPreferences.cpp:
-        (WebTestRunner::WebPreferences::reset):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-
-2013-02-27  Kiran Muppala  <cmuppala@apple.com>
-
-        Initialize page visibility after creating WebKitTestRunner WebView on Mac
-        https://bugs.webkit.org/show_bug.cgi?id=111025
-
-        Reviewed by Simon Fraser.
-
-        Set page visibility to "visible" after creating WebView to override
-        visibility state inferred from window occlusion notifications on Mac.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::createWebViewWithOptions): Add call to
-        setVisibilityState.
-
-2013-02-27  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Merge PageLoadingPerfTest into ReplayPerfTest
-        https://bugs.webkit.org/show_bug.cgi?id=111027
-
-        Reviewed by Dirk Pranke.
-
-        Merged two classes.
-
-        We should really move ahead with the bug 100991 and get rid of PageLoadingPerfTest
-        part of ReplayPerfTest.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (ReplayPerfTest): Moved _FORCE_GC_FILE here.
-        (ReplayPerfTest.__init__):
-        (ReplayPerfTest._run_with_driver): Moved from PageLoadingPerfTest.
-        (ReplayPerfTest.run_single): Load the GC page as run_single on PageLoadingPerfTest did.
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py:
-        (TestReplayPerfTest):
-        (TestReplayPerfTest.test_run_single.run_test):
-        (TestReplayPerfTest.test_run_single): Make sure test_time is passed down properly from output.
-        (TestReplayPerfTest.test_run_with_driver_accumulates_results): Renamed from
-        TestPageLoadingPerfTest.test_run.
-        (TestReplayPerfTest.test_run_with_driver_accumulates_results.mock_run_signle):
-        (TestReplayPerfTest.test_run_with_driver_accumulates_memory_results): Renamed from
-        TestPageLoadingPerfTest.test_run_with_memory_output
-        (TestReplayPerfTest.test_run_with_driver_accumulates_memory_results.mock_run_signle):
-        (TestReplayPerfTest.test_prepare_calls_run_single):
-
-2013-02-27  Eric Seidel  <eric@webkit.org>
-
-        Add --additional-drt-flag option to run-perf-tests to make it easy to test runtime options
-        https://bugs.webkit.org/show_bug.cgi?id=111021
-
-        Reviewed by Dirk Pranke.
-
-        The underlying code (which is shared with run-webkit-tests)
-        already knew how to support this option, it just wasn't exposed
-        via the run-perf-tests front-end.  This patch fixes that.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._parse_args):
-
-2013-02-27  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Stop uploading results to webkit-perf.appspot.com
-        https://bugs.webkit.org/show_bug.cgi?id=110954
-
-        Reviewed by Benjamin Poulain.
-
-        Pass in perf.webkit.org instead of webkit-perf.appspot.com as the test results server.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (RunAndUploadPerfTests):
-
-2013-02-27  James Simonsen  <simonjam@chromium.org>
-
-        [chromium] Lower priority of preloaded images
-        https://bugs.webkit.org/show_bug.cgi?id=110527
-
-        Plumb the didChangePriority signal into DRT so it can be tested.
-
-        Reviewed by Nate Chapin.
-
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebKit):
-        (WebTestRunner::WebTestProxy::didChangeResourcePriority):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::shouldDumpResourcePriorities):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::dumpResourceRequestPriorities):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::assignIdentifierToRequest):
-        (WebTestRunner::WebTestProxyBase::willSendRequest):
-        (WebTestRunner::WebTestProxyBase::didChangeResourcePriority):
-        (WebTestRunner):
-
-2013-02-27  Chris Fleizach  <cfleizach@apple.com>
-
-        AX: Mac platform should support ability to scroll an element into visible
-        https://bugs.webkit.org/show_bug.cgi?id=109860
-
-        Reviewed by Beth Dakin.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (scrollToMakeVisibleCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::scrollToMakeVisible):
-        * WebKitTestRunner/InjectedBundle/AccessibilityUIElement.cpp:
-        (WTR::AccessibilityUIElement::scrollToMakeVisible):
-        * WebKitTestRunner/InjectedBundle/AccessibilityUIElement.h:
-        (AccessibilityUIElement):
-        * WebKitTestRunner/InjectedBundle/Bindings/AccessibilityUIElement.idl:
-        * WebKitTestRunner/InjectedBundle/mac/AccessibilityUIElementMac.mm:
-        (WTR::AccessibilityUIElement::scrollToMakeVisible):
-        (WTR):
-
-2013-02-27  John Bauman  <jbauman@chromium.org>
-
-        Plugin in iframe may not display
-        https://bugs.webkit.org/show_bug.cgi?id=109879
-
-        Reviewed by Simon Fraser.
-
-        LogNPPSetWindow will be used with other ports as well.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/TestNetscapePlugIn/CMakeLists.txt:
-
-2013-02-27  Jochen Eisinger  <jochen@chromium.org>
-
-        plugins/netscape-plugin-setwindow-size*.html and plugins/pass-different-npp-struct.html should be async
-        https://bugs.webkit.org/show_bug.cgi?id=110973
-
-        Reviewed by Adam Barth.
-
-        There is nothing that ensures that the log messages from the plugin
-        come in before the layout test finished loading.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/PassDifferentNPPStruct.cpp:
-        (PassDifferentNPPStruct::NPP_SetWindow):
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_SetWindow):
-
-2013-02-27  Glenn Adams  <glenn@skynav.com>
-
-        Add ENABLE_CSS3_TEXT_LINE_BREAK flag.
-        https://bugs.webkit.org/show_bug.cgi?id=110944
-
-        Reviewed by Dean Jackson.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2013-02-27  Yong Li  <yong.li.webkit@outlook.com>
-
-        Unreviewed. Remove myself from watchlist.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2013-02-27  Allan Sandfeld Jensen  <allan.jensen@digia.com>
-
-        Switch QtWebKit to GStreamer 1.0.
-        https://bugs.webkit.org/show_bug.cgi?id=106669.
-
-        Original patch by Sebastian Dröge.
-        Reviewed by Csaba Osztrogonác.
-
-        Build with GStreamer 1.0 if available, but support GStreamer 0.10 
-        temporarily to make upgrading easy and the patch suitable for Qt5.
-
-        * qmake/mkspecs/features/features.prf:
-
-2013-02-27  Szilard Ledan  <szledan@inf.u-szeged.hu>
-
-        Unreviewed. Added myself to committers.py
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-27  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r144192.
-        http://trac.webkit.org/changeset/144192
-        https://bugs.webkit.org/show_bug.cgi?id=110984
-
-        Stored svn password on wrong computer (Requested by kkristof
-        on #webkit).
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-27  Szilard Ledan  <szledan@inf.u-szeged.hu>
-
-        Unreviewed. Added myself to committers.py
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-27  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Build fix after r144155. The report page is located at /api/report, not /api/test/report.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._upload_json):
-
-2013-02-27  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Stop uploading results to webkit-perf.appspot.com
-        https://bugs.webkit.org/show_bug.cgi?id=110954
-
-        Reviewed by Benjamin Poulain.
-
-        When the specified test results server was webkit-perf.appspot.com, replace it by perf.webkit.org.
-        Also, always use the new JSON format. Removed the code to generate the old format.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._generate_and_show_results):
-        (PerfTestsRunner._generate_results_dict):
-        (PerfTestsRunner._merge_slave_config_json):
-        (PerfTestsRunner._generate_output_files):
-
-2013-02-27  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r144136, r144143, and r144147.
-        http://trac.webkit.org/changeset/144136
-        http://trac.webkit.org/changeset/144143
-        http://trac.webkit.org/changeset/144147
-        https://bugs.webkit.org/show_bug.cgi?id=110950
-
-        Caused some timeouts and flaky crashes (Requested by abarth on
-        #webkit).
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/TestRunner/src/WebPreferences.cpp:
-        (WebTestRunner::WebPreferences::reset):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-
-2013-02-25  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Use perf.webkit.org JSON format in results page
-        https://bugs.webkit.org/show_bug.cgi?id=110842
-
-        Reviewed by Benjamin Poulain.
-
-        Change the default JSON format from that of webkit-perf.appspot.com to that of perf.webkit.org.
-
-        A whole bunch of integration tests have been updated to use the new JSON format.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._generate_and_show_results): Renamed output and output_path to legacy_output
-        and legacy_output_json_path respectively.
-        (PerfTestsRunner._generate_results_dict): Don't assume meta build information is always available.
-        (PerfTestsRunner._generate_output_files): Make json_output, which is used to generate the default
-        JSON file and the results page out of perf_webkit_output instead of legacy_output.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner_integrationtest.py:
-        (MainTest.test_run_memory_test):
-        (MainTest._test_run_with_json_output.mock_upload_json):
-        (MainTest):
-        (MainTest.test_run_with_json_output):
-        (MainTest.test_run_with_description):
-        (MainTest.test_run_generates_json_by_default):
-        (MainTest.test_run_merges_output_by_default):
-        (MainTest.test_run_respects_reset_results):
-        (MainTest.test_run_generates_and_show_results_page):
-        (MainTest.test_run_with_slave_config_json):
-        (MainTest.test_run_with_multiple_repositories):
-        (MainTest.test_run_with_upload_json):
-        (MainTest.test_run_with_upload_json_should_generate_perf_webkit_json):
-
-2013-02-26  Adam Barth  <abarth@webkit.org>
-
-        [Chromium] Enable threaded HTML parser by default in DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=110907
-
-        Reviewed by Eric Seidel.
-
-        This patch changes --enable-threaded-html-parser into
-        --disable-threaded-html-parser and thereby enables the threaded HTML
-        parser by default for the Chromium port.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/WebPreferences.cpp:
-        (WebTestRunner::WebPreferences::reset):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-
-2013-02-26  Dirk Pranke  <dpranke@chromium.org>
-
-        [chromium] Re-enable the fixed version of freetype on linux
-        https://bugs.webkit.org/show_bug.cgi?id=110542
-
-        Reviewed by Tony Chang.
-
-        Re-land the change in r143794 to switch to building with a fixed
-        version of FreeType for just DumpRenderTree. This allows us to share
-        one version of pixel baselines for both Lucid and Precise, and run the
-        layout tests in a stock Precise install (instead of a Lucid chroot).
-        Going forward, this approach isolates us from os-level changes to the
-        version of FreeType. Note that Chromium itself still uses the system
-        FreeType and is unaffected by this change.
-        
-        This setting can still be turned off (at compile/gyp-time) by
-        manually setting use_custom_freetype=0.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2013-02-26  Nico Weber  <thakis@chromium.org>
-
-        [chromium] content shell drt: Enable WebKit::setLayoutTestMode()
-        https://bugs.webkit.org/show_bug.cgi?id=110890
-
-        Reviewed by Jochen Eisinger.
-
-        Several functions in webkit check that bit to change rendering
-        in layout test mode. For example, platform/graphics/skia/FrontSkia.cpp
-        disables font smoothing in this mode. TestShell and DRT both set
-        this flag, so content shell drt should set it too.
-
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        (WebTestRunner::TestInterfaces::TestInterfaces):
-
-2013-02-26  Vivek Galatage  <vivek.vg@samsung.com>
-
-        new-commit-bot: Fix the unit test newcommitbot-unittest.py due to r144040
-        https://bugs.webkit.org/show_bug.cgi?id=110884
-
-        Reviewed by Csaba Osztrogonác.
-
-        Adding the missing spaces before ':' in the unit test.
-
-        * Scripts/webkitpy/tool/commands/newcommitbot_unittest.py:
-
-2013-02-26  Vivek Galatage  <vivek.vg@samsung.com>
-
-        new-commit-bot: Some IRC clients doesn't linkify rollout messages
-        https://bugs.webkit.org/show_bug.cgi?id=110861
-
-        Reviewed by Ryosuke Niwa.
-
-        Adding the space before ':' in order to fix the links shown for the rollout message.
-
-        * Scripts/webkitpy/tool/commands/newcommitbot.py:
-        (NewCommitBot._summarize_commit_log):
-
-2013-02-26  Joone Hur  <joone.hur@intel.com>
-
-        [GTK] Add Clutter to jhbuild
-        https://bugs.webkit.org/show_bug.cgi?id=110245
-
-        Reviewed by Martin Robinson.
-
-        Add clutter, cogl, clutter-gtk, and atk to the optional moduleset.
-        This allows to build WebKitGtk+ with clutter as an acceleration backend
-        within the jhbuild environment. 
-
-        * gtk/jhbuild-optional.modules:
-
-2013-02-25  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Another fix attempt after r143991 since having \r? after a greedy match doesn't help.
-
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-        (SVN.value_from_svn_info):
-
-2013-02-25  Alan Cutter  <alancutter@chromium.org>
-
-        GCE EWS bots failing intermittently on HTTP 502 error while updating their status
-        https://bugs.webkit.org/show_bug.cgi?id=110845
-
-        Unreviewed EWS bot fix.
-
-        Switch the Queue Status Server address the EWS bots use to a more direct URL that
-        doesn't seem to be having problems from GCE like queues.webkit.org.
-
-        * Scripts/webkitpy/common/net/statusserver.py:
-        (StatusServer):
-
-2013-02-25  Dirk Pranke  <dpranke@chromium.org>
-
-        Forgot to delete a no-longer-needed unit test after r143980.
-
-        Unreviewed, build fix.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        (ChromiumWinTest.test_path_to_image_diff):
-
-2013-02-25  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Build fix. run-perf-tests was reporting with revision numbers ending with \r.
-        Don't include \r at the end of svn info lines on Windows.
-
-        This is similar to r143839.
-
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-        (SVN.value_from_svn_info):
-
-2013-02-25  James Simonsen  <simonjam@chromium.org>
-
-        [Resource Timing] Update test suite so it can be exported to the W3C
-        https://bugs.webkit.org/show_bug.cgi?id=107343
-
-        Reviewed by Tony Gentilcore.
-
-        * Scripts/export-w3c-performance-wg-tests: Clean up output.
-        * Scripts/import-w3c-performance-wg-tests:
-
-2013-02-25  Anders Carlsson  <andersca@apple.com>
-
-        Add a new unavailablePluginButtonClicked callback that takes a WKDictionary of plug-in information
-        https://bugs.webkit.org/show_bug.cgi?id=110821
-        <rdar://problem/13265303>
-
-        Reviewed by Beth Dakin.
-
-        Update for WebKit2 changes.
-
-        * MiniBrowser/mac/WK2BrowserWindowController.m:
-        (-[WK2BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::createOtherPage):
-        (WTR::TestController::createWebViewWithOptions):
-        (WTR::TestController::unavailablePluginButtonClicked):
-        * WebKitTestRunner/TestController.h:
-        (TestController):
-
-2013-02-21  Jeffrey Pfau  <jpfau@apple.com>
-
-        Optionally partition cache to prevent using cache for tracking
-        https://bugs.webkit.org/show_bug.cgi?id=110269
-
-        Reviewed by Maciej Stachowiak.
-
-        Add test suite for public suffix functions on Mac.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/mac/PublicSuffix.mm: Added.
-        (TestWebKitAPI):
-        (TestWebKitAPI::TEST_F):
-
-2013-02-25  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: reenable multiple http shards on chromium win
-        https://bugs.webkit.org/show_bug.cgi?id=110814
-
-        Reviewed by Tony Chang.
-
-        The underlying bug in DumpRenderTree that was causing us to look for a
-        pac file and timeout under load was fixed a while ago.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        (ChromiumWinPort.relative_test_filename):
-
-2013-02-25  Dirk Pranke  <dpranke@chromium.org>
-
-        Make ninja the default w/ build-webkit --chromium on windows.
-        https://bugs.webkit.org/show_bug.cgi?id=110731
-
-        Unreviewed - TBR'ing thakis :).
-
-        * Scripts/update-webkit-chromium:
-
-2013-02-25  Anders Carlsson  <andersca@apple.com>
-
-        Add a new pluginDidFail callback that takes a WKDictionary of plug-in information
-        https://bugs.webkit.org/show_bug.cgi?id=110793
-        <rdar://problem/13265303>
-
-        Reviewed by Sam Weinig.
-
-        Update for WebKit2 API changes.
-
-        * MiniBrowser/mac/WK2BrowserWindowController.m:
-        (-[WK2BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::createWebViewWithOptions):
-
-2013-02-25  Nico Weber  <thakis@chromium.org>
-
-        Fix python unit tests after yoli's email address update in http://trac.webkit.org/changeset/143922
-        https://bugs.webkit.org/show_bug.cgi?id=110775
-
-        Unreviewed, basically a rebaseline.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2013-02-25  Nico Weber  <thakis@chromium.org>
-
-        [chromium] Try to get the webkit builder to use msvs again
-        https://bugs.webkit.org/show_bug.cgi?id=110771
-
-        Reviewed by Eric Seidel.
-
-        The msvs gyp generator apparently doesn't write the sln file on every
-        run, so check the vcxproj file instead.
-
-        * Scripts/webkitdirs.pm:
-        (determineIsChromiumNinja):
-
-2013-02-25  Nico Weber  <thakis@chromium.org>
-
-        [chromium] try to unbreak run-chromium-webkit-unit-tests on the mac bots
-        https://bugs.webkit.org/show_bug.cgi?id=110767
-
-        Reviewed by Eric Seidel.
-
-        The tester runs gyp, which generates out/Release/build.ninja. The bot
-        scripts use existence (and timestamp) of that file to decide if the
-        current build is supposed to be ninja or xcodebuild. The file exists,
-        so the snapshot is extracted to out/Release. The snapshot doesn't
-        contain build.ninja however due to
-        http://trac.webkit.org/changeset/140375 , so after extracting the
-        snapshot the scripts think that this is an xcodebuild build. So remove
-        the part of that revision that removed ninja files from the archive,
-        and the bots should be happy again.
-
-        * BuildSlaveSupport/built-product-archive:
-        (archiveBuiltProduct):
-
-2013-02-25  Nico Weber  <thakis@chromium.org>
-
-        Fix tests after r143910
-        https://bugs.webkit.org/show_bug.cgi?id=110757
-
-        Reviewed by Andreas Kling.
-
-        While here, also add a test for the bug r143910 fixed.
-
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        (ScriptErrorTest.test_message_with_output):
-        (ScriptErrorTest):
-        (ScriptErrorTest.test_message_with_tuple):
-
-2013-02-25  Nico Weber  <thakis@chromium.org>
-
-        [chromium] Apparently built-product-archive is written in Python, not Perl :-/
-        https://bugs.webkit.org/show_bug.cgi?id=110755
-
-        Reviewed by Jochen Eisinger.
-
-        * BuildSlaveSupport/built-product-archive:
-        (archiveBuiltProduct):
-        (extractBuiltProduct):
-
-2013-02-25  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r143895.
-        http://trac.webkit.org/changeset/143895
-        https://bugs.webkit.org/show_bug.cgi?id=110758
-
-        broke a bunch of tests (Requested by thakis__ on #webkit).
-
-        * Scripts/update-webkit-chromium:
-
-2013-02-25  Andreas Kling  <akling@apple.com>
-
-        Unreviewed, fix simple mistake in r143903.
-        <http://webkit.org/b/110746>
-
-        Reviewed by Andreas Kling.
-
-        Pass git revision, not svn revision, to git shell command.
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        (Git.timestamp_of_latest_commit):
-
-2013-02-25  Nico Weber  <thakis@chromium.org>
-
-        [chromium] Let built-product-archive log which directory it's archiving from and extracting to
-        https://bugs.webkit.org/show_bug.cgi?id=110748
-
-        Reviewed by Jochen Eisinger.
-
-        One of the mac testers runs DRT from out/ but WebKitUnitTests from
-        xcodebuild. I'm trying to understand what's going on.
-
-        * BuildSlaveSupport/built-product-archive:
-        (archiveBuiltProduct):
-        (extractBuiltProduct):
-
-2013-02-23  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Web Inspector: Native Memory Instrumentation: replace String with const char* in MemoryObjectInfo
-        https://bugs.webkit.org/show_bug.cgi?id=110599
-
-        Reviewed by Yury Semikhatsky.
-
-        Due to potentially dynamic nature of names and classNames we need to make a copy of the strings
-        that were given us via MemoryInstrumentation calls.
-        So I extended client api with registerString method that pushes the strings
-        down to the serializer.
-
-        * TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp:
-        * TestWebKitAPI/Tests/WebCore/HeapGraphSerializerTest.cpp:
-        (TestWebKitAPI::Helper::Helper):
-        (Helper):
-        (TestWebKitAPI::Helper::addNode):
-        (TestWebKitAPI::TEST):
-
-2013-02-25  Nico Weber  <thakis@chromium.org>
-
-        Make ScriptError not crash when args is a tuple
-        https://bugs.webkit.org/show_bug.cgi?id=110747
-
-        Reviewed by Jochen Eisinger.
-
-        I'm trying to understand the error on
-        http://build.webkit.org/builders/Chromium%20Win%20Release%20%28Tests%29/builds/34563/steps/layout-test/logs/stdio
-        better. I'll likely have to revert the ninja switch on windows, but
-        having error reporting code that doesn't itself crash sounds like a
-        good thing to have anyways.
-
-        The problem is that '%s' % (1, 2) errors out, and args is sometimes a
-        tuple not a list.
-
-        * Scripts/run-chromium-webkit-unit-tests:
-        * Scripts/webkitpy/common/system/executive.py:
-        (ScriptError.__init__):
-
-2013-02-25  Laszlo Gombos  <l.gombos@samsung.com>
-
-        [EFL] Align feature defaults
-        https://bugs.webkit.org/show_bug.cgi?id=110715
-
-        Enable 3D_RENDERING in FeatureList.pm as it is enabled by default in
-        OptionsEfl.cmake.
-
-        Reviewed by Gyuyoung Kim.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2013-02-25  Ryosuke Niwa  <rniwa@webkit.org>
-
-        run-perf-tests reports wrong commit time
-        https://bugs.webkit.org/show_bug.cgi?id=110746
-
-        Reviewed by Andreas Kling.
-
-        The bug was caused by running "svn info" on a subdirectory, which returns a timestamp
-        of when the subdirectory was last modified.
-
-        Run "svn info -r <revision> <repository root>" instead. Specifying revision number is
-        insufficient since running "svn log -r <revision>" on a partial checkout only returns
-        an empty result if the revision didn't modify the subdirectory.
-
-        For git, there is no partial checkout, so we just need to pass in "-r" option to keep
-        the interface compatible with svn.
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        (Git.timestamp_of_latest_commit):
-        * Scripts/webkitpy/common/checkout/scm/scm.py:
-        (SCM.timestamp_of_latest_commit):
-        * Scripts/webkitpy/common/checkout/scm/scm_mock.py:
-        (MockSCM.timestamp_of_latest_commit):
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-        (test_timestamp_of_latest_commit):
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-        (SVN.timestamp_of_latest_commit):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._generate_results_dict):
-
-2013-02-25  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move WebRuntimeFeatures configuration to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=110712
-
-        Reviewed by Nico Weber.
-
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        (WebTestRunner::TestInterfaces::TestInterfaces):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-
-2013-02-25  Nico Weber  <thakis@chromium.org>
-
-        Make ninja the default build system for build-webkit --chromium on windows
-        https://bugs.webkit.org/show_bug.cgi?id=110731
-
-        Reviewed by Jochen Eisinger.
-
-        With http://crbug.com/169945 fixed, this should now work.
-
-        * Scripts/update-webkit-chromium:
-
-2013-02-24  Gustavo Noronha Silva  <gns@gnome.org>
-
-        [GTK] GTK+ 2 build broken since GTK_API_VERSION_2 moved to autoconfig.h
-        https://bugs.webkit.org/show_bug.cgi?id=110702
-
-        Reviewed by Martin Robinson.
-
-        * GtkLauncher/main.c: include autotoolsconfig.h.
-        * Scripts/webkitpy/style/checker.py: make GtkLauncher/main.c exempt of
-        the include ordering check, since it uses autotoolsconfig.h which needs to
-        come first.
-
-2013-02-24  Hajime Morrita  <morrita@google.com>
-
-        [Custom Elements] Implement bare-bone document.register()
-        https://bugs.webkit.org/show_bug.cgi?id=100229
-
-        Reviewed by Adam Barth.
-
-        Added enableCustomDOMElements flag.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-
-2013-02-23  Mark Pilgrim  <pilgrim@chromium.org>
-
-        [Chromium] DumpRenderTree TestShell::initialize should take Platform* now that WebKitPlatformSupport is empty
-        https://bugs.webkit.org/show_bug.cgi?id=110606
-
-        Reviewed by Adam Barth.
-
-        Part of a larger refactoring series; see tracking bug 82948.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (WebKitSupportTestEnvironment::WebKitSupportTestEnvironment):
-        (WebKitSupportTestEnvironment::mockPlatform):
-        (WebKitSupportTestEnvironment):
-        * DumpRenderTree/chromium/MockPlatform.cpp: Copied from Tools/DumpRenderTree/chromium/MockWebKitPlatformSupport.cpp.
-        (MockPlatform::create):
-        (MockPlatform::MockPlatform):
-        (MockPlatform::~MockPlatform):
-        (MockPlatform::setInterfaces):
-        (MockPlatform::cryptographicallyRandomValues):
-        (MockPlatform::createMediaStreamCenter):
-        (MockPlatform::createRTCPeerConnectionHandler):
-        * DumpRenderTree/chromium/MockPlatform.h: Copied from Tools/DumpRenderTree/chromium/MockWebKitPlatformSupport.h.
-        (MockPlatform):
-        * DumpRenderTree/chromium/MockWebKitPlatformSupport.cpp: Removed.
-        * DumpRenderTree/chromium/MockWebKitPlatformSupport.h: Removed.
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestDelegate):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::initialize):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell):
-
-2013-02-23  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Chromium Windows Perf bot fix. Tolerate CR at the end of the line that contains the timestamp.
-
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-        (SVN.timestamp_of_latest_commit):
-
-2013-02-23  Jason Anderssen  <janderssen@gmail.com>
-
-        Move setAutofilled from TestRunner to WebCore
-        https://bugs.webkit.org/show_bug.cgi?id=110521
-
-        Reviewed by Benjamin Poulain.
-
-        * DumpRenderTree/TestRunner.cpp:
-        (TestRunner::staticFunctions):
-        * DumpRenderTree/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        * DumpRenderTree/gtk/TestRunnerGtk.cpp:
-        * DumpRenderTree/mac/TestRunnerMac.mm:
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunnerQt):
-        * DumpRenderTree/win/TestRunnerWin.cpp:
-        * DumpRenderTree/wx/TestRunnerWx.cpp:
-
-2013-02-22  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Upload results to perf.webkit.org in addition to the one specified by --test-results-server
-        https://bugs.webkit.org/show_bug.cgi?id=108577
-
-        Reviewed by Dirk Pranke.
-
-        Upload results to perf.webkit.org using new JSON format as well as the host specified by
-        --test-results-server. The new format is needed to provide extra information perf.webkit.org
-        need such as the subversion commit time and test URLs. This is a temporarily measure until
-        we complete the transition and the old JSON format and the code to upload results to
-        webkit-perf.appspot.com can be deleted.
-
-        This patch adds scm.timestamp_of_latest_commit to obtain the timestamp of the latest commit present
-        in a svn checkout or a git clone. This information is embedded in JSON submitted to perf.webkit.org
-        so that the app can sort performance test results based on the timestamp of the last commit.
-
-        It also changes the repository names returned by port objects to be properly capitalized
-        human readable names such as WebKit instead of lowercased names such as webkit since these names
-        are displayed on perf.webkit.org for humans. Several users of this feature has been updated
-        to explicitly lowercase the names.
-
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        (Git.timestamp_of_latest_commit): Added. Obtains the timestamp of the last commit. Unfortunately,
-        git's timestamp granularity is seconds so we're losing some information compared to using a regular
-        subversion client. To make matters worse, git doesn't have any option to show ISO-format timestamp in
-        UTC so we're going to manually fiddle with timezone.
-
-        * Scripts/webkitpy/common/checkout/scm/scm.py:
-        (SCM.timestamp_of_latest_commit): Added.
-
-        * Scripts/webkitpy/common/checkout/scm/scm_mock.py:
-        (MockSCM.timestamp_of_latest_commit): Added.
-
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-        (test_timestamp_of_latest_commit): Added a test for Git.timestamp_of_latest_commit.
-
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-        (SVN.timestamp_of_latest_commit): Added. With svn, all we need to do is to use --xml option and parse
-        the timestamp which is always in UTC.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        (JSONResultsGeneratorBase._insert_generic_metadata): Lowercase the name. Note that the name
-        'chromium' needs to be substituted by 'chrome' for historical reasons.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.repository_paths): Return WebKit instead of webkit as noted above.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.repository_paths): Return Chromium instead of chromium as noted above.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner.__init__): Store the current time in UTC as well as in local time.
-        (PerfTestsRunner._collect_tests):
-
-        (PerfTestsRunner._generate_and_show_results): Retrieve both regular output and one for perf.webkit.org,
-        and upload them appropriately.
-
-        (PerfTestsRunner._generate_results_dict): Store WebKit and Chromium revisions at which tests were ran
-        in revisions_for_perf_webkit and construct an output for perf.webkit.org.
-
-        (PerfTestsRunner._datetime_in_ES5_compatible_iso_format): Added.
-
-        (PerfTestsRunner._merge_slave_config_json): Merge slave configuration files into both regular output
-        and one for perf.webkit.org. Here, we prefix each key with "builder" for perf.webkit.org.
-        e.g. "processor" would be renamed to "builderProcessor".
-
-        (PerfTestsRunner._generate_output_files):
-
-        (PerfTestsRunner._upload_json): Added a remote path as an argument since we upload JSONs to /api/report
-        on perf.webkit.org whereas we upload it to /api/test/report on webkit-perf.appspot.com. Also added the code
-        to parse response as JSON when possible since perf.webkit.org returns a JSON response as opposed to
-        webkit-perf.appspot.com which spits out a plaintext response.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner_integrationtest.py:
-        (MainTest._test_run_with_json_output.mock_upload_json): Tolerate perf.webkit.org/api/report for now.
-        (MainTest._test_run_with_json_output): Store a UTC time as perftestrunner would do.
-        (MainTest.test_run_with_upload_json_should_generate_perf_webkit_json): Added.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (MainTest.test_upload_json): Moved from itegrationtest.py since it really is a unit test. Also added test
-        cases to parse JSON responses.
-        (MainTest.test_upload_json.MockFileUploader): Refactored.
-        (MainTest.test_upload_json.MockFileUploader.reset): Added.
-        (MainTest.test_upload_json.MockFileUploader.__init__):
-        (MainTest.test_upload_json.MockFileUploader.upload_single_text_file):
-
-2013-02-22  Roger Fong  <roger_fong@apple.com>
-
-        Unreviewed. Update bot config for OpenSource bots to add two new Win7 Debug testers and get rid of WinXP Debug testers.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2013-02-22  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, rolling out r143794.
-        http://trac.webkit.org/changeset/143794
-        https://bugs.webkit.org/show_bug.cgi?id=110542
-
-        debug linux builds broken?
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2013-02-22  Dirk Pranke  <dpranke@chromium.org>
-
-        [chromium] enable the fixed version of freetype on linux
-        https://bugs.webkit.org/show_bug.cgi?id=110542
-
-        Reviewed by Tony Chang.
-
-        Switch to building with a fixed version of FreeType for
-        just DumpRenderTree. This allows us to share one version
-        of pixel baselines for both Lucid and Precise, and run
-        the layout tests in a stock Precise install (instead of a Lucid
-        chroot). Going forward, this approach isolates us from os-level
-        changes to the version of FreeType. Note that Chromium itself
-        still uses the system FreeType and is unaffected by this change.
-        
-        This setting can still be turned off (at compile/gyp-time) by
-        manually setting use_custom_freetype=0.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2013-02-22  Anders Carlsson  <andersca@apple.com>
-
-        Move pluginLoadPolicy to the page loader client
-        https://bugs.webkit.org/show_bug.cgi?id=110635
-
-        Reviewed by Sam Weinig.
-
-        * MiniBrowser/mac/WK2BrowserWindowController.m:
-        (-[WK2BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::createOtherPage):
-        (WTR::TestController::createWebViewWithOptions):
-
-2013-02-22  Kenneth Russell  <kbr@google.com>
-
-        Unreviewed. Changed gman's primary address for auto-complete in Bugzilla.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-22  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [WTR] Do not dump information about empty subframes.
-        https://bugs.webkit.org/show_bug.cgi?id=110585
-
-        Reviewed by Simon Fraser.
-
-        Follow DumpRenderTree more closely by skipping empty frames
-        (frames which have no document). We are not really interested in
-        showing anything about them.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::dumpDescendantFramesText): Do not print subframe names when they
-        have no associated Document.
-
-2013-02-21  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [EFL][DRT] Do not dump empty frames.
-        https://bugs.webkit.org/show_bug.cgi?id=110474
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Follow the original Mac implementation more closely by skipping
-        empty frames (frames which have no document). We are not really
-        interested in showing anything about them.
-
-        * DumpRenderTree/efl/DumpRenderTree.cpp:
-        (dumpFramesAsText):
-
-2013-02-21  Dirk Pranke  <dpranke@chromium.org>
-
-        [chromium] support the lucid version of freetype on precise in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=107338
-
-        Reviewed by Tony Chang.
-
-        Modify the DRT build so that we can optionally link against
-        a fixed version of Freetype2. This allows us to share pixel test
-        results across multiple versions of Ubuntu without having to
-        worry about differences in font rendering.
-
-        At the moment this feature is off by default. Eventually it will
-        be on by default on linux.
-
-        Note that this only affects DRT; the regular Chromium binary
-        (and, for now, content_shell) will still use the system version
-        of Freetype.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2013-02-21  Rouslan Solomakhin  <rouslan@chromium.org>
-
-        [Chromium] Remove the word "cheher" from the list of misspelled words
-        https://bugs.webkit.org/show_bug.cgi?id=110447
-
-        Reviewed by Tony Chang.
-
-        Other platforms do not mark "cheher" as a misspelled word in layout tests.
-        This change is to bring Chromium platform in line with the rest of the
-        platforms.
-
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.cpp:
-        (WebTestRunner::MockSpellCheck::hasInCache): Changed "cheher" to "wellcome".
-        (WebTestRunner::MockSpellCheck::fillSuggestionList): Removed "cheher" misspelling and "checker" suggestion.
-        (WebTestRunner::MockSpellCheck::initializeIfNeeded): Removed "cheher" misspelling.
-
-2013-02-21  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] document WebTestDelegate and WebTestRunner interfaces
-        https://bugs.webkit.org/show_bug.cgi?id=110472
-
-        Reviewed by Adam Barth.
-
-        Also remove the default implementation of the remaining WebTestDelegate
-        methods now that all embedders provide this interface.
-
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestDelegate):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestRunner.h:
-        (WebTestRunner):
-
-2013-02-19  Mark Hahnenberg  <mhahnenberg@apple.com>
-
-        Objective-C API: Need a way to use the Objective-C JavaScript API with WebKit
-        https://bugs.webkit.org/show_bug.cgi?id=106059
-
-        Reviewed by Geoffrey Garen.
-
-        Added new tests for the WebKit API portion of the JSC Objective-C API.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/mac/JSContextBackForwardCache1.html: Added.
-        * TestWebKitAPI/Tests/mac/JSContextBackForwardCache2.html: Added.
-        * TestWebKitAPI/Tests/mac/WebViewDidCreateJavaScriptContext.mm: Added.
-        (-[MyConsole log:]):
-        (-[MyConsole printHelloWorld]):
-        (-[MyConsole add:to:]):
-        (-[DidCreateJavaScriptContextFrameLoadDelegate webView:didFinishLoadForFrame:]):
-        (-[DidCreateJavaScriptContextFrameLoadDelegate webView:didCreateJavaScriptContext:forFrame:]):
-        (TestWebKitAPI):
-        (TestWebKitAPI::TEST):
-
-2013-02-21  Stephen Chenney  <schenney@chromium.org>
-
-        Unreviewed, add myself as a reviewer
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-21  Jer Noble  <jer.noble@apple.com>
-
-        Unreviewed; add myself to the Media watchlist and update my committers.py setting to Reviewer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-        * Scripts/webkitpy/common/config/watchlist:
-
-2013-02-21  Martin Robinson  <mrobinson@igalia.com>
-
-        gtk/DumpRenderTree.cpp is missing <locale.h> include
-        https://bugs.webkit.org/show_bug.cgi?id=109386
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp: Fix the WebKitGTK+ Mac build
-        by include locale.h when we use setlocale.
-
-2013-02-21  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Move feature overriding to the configure phase
-        https://bugs.webkit.org/show_bug.cgi?id=110293
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * Scripts/webkitdirs.pm:
-        (runAutogenForAutotoolsProjectIfNecessary): Rename the feature file to
-        WebKitFeatureOverrides.txt to better match the other filenames used in
-        the new feature processing.
-        * gtk/generate-feature-defines-files: Added. A script which takes as an argument
-        the default features, overrides them with the contents of WebKitFeatureOverrrides.txt
-        and writes WebKitFeatures.txt and WebKitFeatures.h.
-        * gtk/override-feature-defines: Removed.
-
-2013-02-21  Oswald Buddenhagen  <oswald.buddenhagen@digia.com>
-
-        [Qt] Remove obsolete DEPENDPATH assignment
-
-        Reviewed by Simon Hausmann
-
-        qmake now adds CONFIG+=depend_includepath by default, making manual
-        DEPENDPATH setup unnecessary.
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2013-02-20  Vivek Galatage  <vivekg@webkit.org>
-
-        Unreviewed. Changing primary email id.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-14  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Request WebLayerTreeView for DumpRenderTree via explicit testing path
-        https://bugs.webkit.org/show_bug.cgi?id=109634
-
-        Reviewed by Adrienne Walker.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createOutputSurface):
-        (WebViewHost::initializeLayerTreeView):
-
-2013-02-20  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Re-enable 3D CSS transforms when using build-webkit
-        https://bugs.webkit.org/show_bug.cgi?id=110402
-
-        Reviewed by Xan Lopez.
-
-        * Scripts/webkitperl/FeatureList.pm: Enable 3D rendering by default
-        when building WebKitGTK+.
-
-2013-02-20  Roger Fong  <roger_fong@apple.com>
-
-        Get VS2010 Solution B&I ready.
-        <rdar://problem/1322988>
-
-        Rubberstamped by Timothy Horton.        
-        
-        Add Production configurations.
-        
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTree.vcxproj:
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncher.vcxproj:
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncherProduction.props: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncherRelease.props:
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeProduction.props: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeRelease.props:
-        * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiff.vcxproj:
-        * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncher.vcxproj:
-        * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncherProduction.props: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncherRelease.props:
-        * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffProduction.props: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffRelease.props:
-        * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePlugin.vcxproj:
-        * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginProduction.props: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginRelease.props:
-        * TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPI.vcxproj:
-        * TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIProduction.props: Added.
-        * TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIRelease.props:
-        * WinLauncher/WinLauncher.vcxproj/WinLauncher.vcxproj:
-        * WinLauncher/WinLauncher.vcxproj/WinLauncherLib.vcxproj:
-        * WinLauncher/WinLauncher.vcxproj/WinLauncherLibProduction.props: Added.
-        * WinLauncher/WinLauncher.vcxproj/WinLauncherLibRelease.props:
-        * WinLauncher/WinLauncher.vcxproj/WinLauncherProduction.props: Added.
-        * WinLauncher/WinLauncher.vcxproj/WinLauncherRelease.props:
-        * win/record-memory/record-memory.vcxproj:
-        * win/record-memory/record-memoryProduction.props: Added.
-        * win/record-memory/record-memoryRelease.props:
-
-2013-02-20  Dirk Schulze  <krit@webkit.org>
-
-        Enable CANVAS_PATH flag
-        https://bugs.webkit.org/show_bug.cgi?id=108508
-
-        Reviewed by Simon Fraser.
-
-        Enable CANVAS_PATH flag on trunk.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2013-02-20  Tony Chang  <tony@chromium.org>
-
-        Parse author names with commas in ChangeLogs
-        https://bugs.webkit.org/show_bug.cgi?id=110356
-
-        Reviewed by Dirk Pranke.
-
-        Paweł's name has a comma in it, which was confusing the ChangeLog parser.
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        (ChangeLogEntry): Move name splitting regexp into a constant.
-        (ChangeLogEntry._parse_reviewer_text): Use _split_reviewer_names.
-        (ChangeLogEntry._split_reviewer_names): Rename to be more specific.
-        (ChangeLogEntry._split_author_names_with_emails): Rename to be more specific and require emails.
-        (ChangeLogEntry._parse_author_text): Use _split_author_names_with_emails.
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-        (test_parse_authors): Test case with Paweł's name.
-
-2013-02-15  Dirk Schulze  <krit@webkit.org>
-
-        [Chromium] Add runtime flag for CanvasPath
-        https://bugs.webkit.org/show_bug.cgi?id=109997
-
-        Reviewed by Adam Barth.
-
-        Added runtime flag for Canvas Path. Enabled it by default for TestShell. Otherwise
-        the constructor for Path on DOMWindow would never be activatable, since the script
-        is running after creating the DOMWindow object.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-
-2013-02-20  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] use a WebTestProxyBase pointer to identify the window we need the history for
-        https://bugs.webkit.org/show_bug.cgi?id=110346
-
-        Reviewed by Adam Barth.
-
-        Using an index is very brittle, as the TestRunner API does not define
-        any ordering of windows.
-
-        Also, make TestRunner::shouldDumpBackForwardList() so content shell can
-        trigger the capturing in the browser process before generating the
-        text dump.
-
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestRunner):
-        (WebTestRunner::WebTestDelegate::captureHistoryForWindow):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestRunner.h:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::captureTree):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::captureHistoryForWindow):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-02-19  Rouslan Solomakhin  <rouslan@chromium.org>
-
-        [Chromium] Serve spellcheck suggestions for editing/spelling/spelling-changed-text.html from cache
-        https://bugs.webkit.org/show_bug.cgi?id=109220
-
-        Reviewed by Tony Chang.
-
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.cpp:
-        (WebTestRunner::MockSpellCheck::hasInCache): Added a method to detect whether spellcheck results can be served from cache.
-        (WebTestRunner):
-        (WebTestRunner::MockSpellCheck::fillSuggestionList): Modified to suggest "checker" for the word "cheher".
-        (WebTestRunner::MockSpellCheck::initializeIfNeeded): Modified to mark "cheher" as misspelling.
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.h:
-        (MockSpellCheck):
-        * DumpRenderTree/chromium/TestRunner/src/SpellCheckClient.cpp:
-        (WebTestRunner::SpellCheckClient::requestCheckingOfText): Modified to serve spellcheck suggestions from cache when possible.
-
-2013-02-20  Xabier Rodriguez Calvar  <calvaris@igalia.com>
-
-        [Gtk] HTML5 Media controls require a design refresh
-        https://bugs.webkit.org/show_bug.cgi?id=83869
-
-        Reviewed by Philippe Normand.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (initializeGtkFontSettings): Added gnome as default icon theme for
-        the DRT.
-        * WebKitTestRunner/InjectedBundle/gtk/ActivateFontsGtk.cpp:
-        (WTR::initializeGtkSettings): Added gnome as default icon theme for
-        the WTR.
-        * gtk/jhbuild.modules: Added gnome-icon-theme-symbolic as external
-        dependency.
-
-2013-02-20  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move most of the remaining mocks to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=110217
-
-        Reviewed by Nico Weber.
-
-        While most of the functionality provided by these mocks is also
-        available in the content module, there is no straight forward way to
-        inject the mock results required for layout tests.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebKit):
-        (WebTestRunner):
-        (WebTestRunner::WebTestProxy::geolocationClient):
-        (WebTestRunner::WebTestProxy::speechInputController):
-        (WebTestRunner::WebTestProxy::speechRecognizer):
-        (WebTestRunner::WebTestProxy::deviceOrientationClient):
-        (WebTestRunner::WebTestProxy::requestPointerLock):
-        (WebTestRunner::WebTestProxy::requestPointerUnlock):
-        (WebTestRunner::WebTestProxy::isPointerLocked):
-        * DumpRenderTree/chromium/TestRunner/src/MockWebSpeechInputController.cpp: Renamed from Tools/DumpRenderTree/chromium/MockWebSpeechInputController.cpp.
-        (WebTestRunner::MockWebSpeechInputController::MockWebSpeechInputController):
-        (WebTestRunner):
-        (WebTestRunner::MockWebSpeechInputController::~MockWebSpeechInputController):
-        (WebTestRunner::MockWebSpeechInputController::setDelegate):
-        (WebTestRunner::MockWebSpeechInputController::addMockRecognitionResult):
-        (WebTestRunner::MockWebSpeechInputController::setDumpRect):
-        (WebTestRunner::MockWebSpeechInputController::clearResults):
-        (WebTestRunner::MockWebSpeechInputController::startRecognition):
-        (WebTestRunner::MockWebSpeechInputController::cancelRecognition):
-        (WebTestRunner::MockWebSpeechInputController::stopRecording):
-        (WebTestRunner::MockWebSpeechInputController::speechTaskFired):
-        (WebTestRunner::MockWebSpeechInputController::SpeechTask::SpeechTask):
-        (WebTestRunner::MockWebSpeechInputController::SpeechTask::stop):
-        (WebTestRunner::MockWebSpeechInputController::SpeechTask::runIfValid):
-        * DumpRenderTree/chromium/TestRunner/src/MockWebSpeechInputController.h: Renamed from Tools/DumpRenderTree/chromium/MockWebSpeechInputController.h.
-        (WebKit):
-        (WebTestRunner):
-        (MockWebSpeechInputController):
-        (WebTestRunner::MockWebSpeechInputController::taskList):
-        (SpeechTask):
-        * DumpRenderTree/chromium/TestRunner/src/MockWebSpeechRecognizer.cpp: Renamed from Tools/DumpRenderTree/chromium/MockWebSpeechRecognizer.cpp.
-        (WebTestRunner::MockWebSpeechRecognizer::MockWebSpeechRecognizer):
-        (WebTestRunner):
-        (WebTestRunner::MockWebSpeechRecognizer::~MockWebSpeechRecognizer):
-        (WebTestRunner::MockWebSpeechRecognizer::setDelegate):
-        (WebTestRunner::MockWebSpeechRecognizer::start):
-        (WebTestRunner::MockWebSpeechRecognizer::stop):
-        (WebTestRunner::MockWebSpeechRecognizer::abort):
-        (WebTestRunner::MockWebSpeechRecognizer::addMockResult):
-        (WebTestRunner::MockWebSpeechRecognizer::setError):
-        (WebTestRunner::MockWebSpeechRecognizer::startTaskQueue):
-        (WebTestRunner::MockWebSpeechRecognizer::clearTaskQueue):
-        (WebTestRunner::MockWebSpeechRecognizer::StepTask::runIfValid):
-        * DumpRenderTree/chromium/TestRunner/src/MockWebSpeechRecognizer.h: Renamed from Tools/DumpRenderTree/chromium/MockWebSpeechRecognizer.h.
-        (WebKit):
-        (WebTestRunner):
-        (MockWebSpeechRecognizer):
-        (WebTestRunner::MockWebSpeechRecognizer::wasAborted):
-        (WebTestRunner::MockWebSpeechRecognizer::client):
-        (WebTestRunner::MockWebSpeechRecognizer::handle):
-        (WebTestRunner::MockWebSpeechRecognizer::taskList):
-        (Task):
-        (WebTestRunner::MockWebSpeechRecognizer::Task::Task):
-        (WebTestRunner::MockWebSpeechRecognizer::Task::~Task):
-        (StepTask):
-        (WebTestRunner::MockWebSpeechRecognizer::StepTask::StepTask):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        (WebTestRunner::TestInterfaces::TestInterfaces):
-        (WebTestRunner::TestInterfaces::windowOpened):
-        (WebTestRunner):
-        (WebTestRunner::TestInterfaces::windowClosed):
-        (WebTestRunner::TestInterfaces::windowList):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.h:
-        (TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::requestPointerLock):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::requestPointerUnlock):
-        (WebTestRunner::TestRunner::isPointerLocked):
-        (WebTestRunner::TestRunner::didAcquirePointerLockInternal):
-        (WebTestRunner::TestRunner::didNotAcquirePointerLockInternal):
-        (WebTestRunner::TestRunner::didLosePointerLockInternal):
-        (WebTestRunner::TestRunner::windowCount):
-        (WebTestRunner::TestRunner::setMockDeviceOrientation):
-        (WebTestRunner::TestRunner::numberOfPendingGeolocationPermissionRequests):
-        (WebTestRunner::TestRunner::setGeolocationPermission):
-        (WebTestRunner::TestRunner::setMockGeolocationPosition):
-        (WebTestRunner::TestRunner::setMockGeolocationPositionUnavailableError):
-        (WebTestRunner::TestRunner::addMockSpeechInputResult):
-        (WebTestRunner::TestRunner::setMockSpeechInputDumpRect):
-        (WebTestRunner::TestRunner::addMockSpeechRecognitionResult):
-        (WebTestRunner::TestRunner::setMockSpeechRecognitionError):
-        (WebTestRunner::TestRunner::wasMockSpeechRecognitionAborted):
-        (WebTestRunner::TestRunner::didAcquirePointerLock):
-        (WebTestRunner::TestRunner::didNotAcquirePointerLock):
-        (WebTestRunner::TestRunner::didLosePointerLock):
-        (WebTestRunner::TestRunner::setPointerLockWillRespondAsynchronously):
-        (WebTestRunner::TestRunner::setPointerLockWillFailSynchronously):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (WebTestRunner):
-        (TestRunner):
-        (HostMethodTask):
-        (WebTestRunner::TestRunner::HostMethodTask::HostMethodTask):
-        (WebTestRunner::TestRunner::HostMethodTask::runIfValid):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::~WebTestProxyBase):
-        (WebTestRunner::WebTestProxyBase::setInterfaces):
-        (WebTestRunner::WebTestProxyBase::setDelegate):
-        (WebTestRunner::WebTestProxyBase::reset):
-        (WebTestRunner::WebTestProxyBase::captureTree):
-        (WebTestRunner::WebTestProxyBase::geolocationClientMock):
-        (WebTestRunner):
-        (WebTestRunner::WebTestProxyBase::deviceOrientationClientMock):
-        (WebTestRunner::WebTestProxyBase::speechInputControllerMock):
-        (WebTestRunner::WebTestProxyBase::speechRecognizerMock):
-        (WebTestRunner::WebTestProxyBase::geolocationClient):
-        (WebTestRunner::WebTestProxyBase::speechInputController):
-        (WebTestRunner::WebTestProxyBase::speechRecognizer):
-        (WebTestRunner::WebTestProxyBase::deviceOrientationClient):
-        (WebTestRunner::WebTestProxyBase::requestPointerLock):
-        (WebTestRunner::WebTestProxyBase::requestPointerUnlock):
-        (WebTestRunner::WebTestProxyBase::isPointerLocked):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::reset):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebKit):
-        (WebViewHost):
-
-2013-02-20  Andras Becsi  <andras.becsi@digia.com>
-
-        [Qt] Make debug builds possible on 32bit Linux
-        https://bugs.webkit.org/show_bug.cgi?id=110231
-
-        Reviewed by Tor Arne Vestbø.
-
-        Use the stabs format for debug builds to make the object files
-        a bit smaller so that they can be linked on a 32bit system.
-
-        * qmake/mkspecs/features/unix/default_post.prf:
-
-2013-02-20  Takashi Toyoshima  <toyoshim@chromium.org>
-
-        Unreviewed. Add myself to watch lists.
-
-        * Scripts/webkitpy/common/config/committers.py:
-        * Scripts/webkitpy/common/config/watchlist:
-
-2013-02-19  Joshua Bell  <jsbell@chromium.org>
-
-        Remove warning from run-bindings-tests
-        https://bugs.webkit.org/show_bug.cgi?id=110285
-
-        Reviewed by Kentaro Hara.
-
-        Since wkrev.com/139331 run-bindings-tests has been harmlessly emitting
-        "Unknown option: idlattributesfile". That option was removed from
-        bindings/scripts/preprocess-idls.pl but was still being passed by
-        the test script. Remove it.
-
-        * Scripts/webkitpy/bindings/main.py:
-        (BindingsTests.generate_supplemental_dependency): Remove unused arg.
-
-2013-02-19  Elliott Sprehn  <esprehn@chromium.org>
-
-        Unreviewed. Add myself to watch lists.
-
-        * Scripts/webkitpy/common/config/committers.py:
-        * Scripts/webkitpy/common/config/watchlist:
-
-2013-02-19  Hans Muller  <hmuller@adobe.com>
-
-        Unreviewed, corrected primary email.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-19  Hans Muller  <hmuller@adobe.com>
-
-        Unreviewed. Adding myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-19  Pravin D  <pravind@webkit.org>
-
-        Unreviewed, changing primary email.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-19  Alan Cutter  <alancutter@chromium.org>
-
-        REGRESSION: Sheriffbot is failing to process rollout requests
-        https://bugs.webkit.org/show_bug.cgi?id=106945
-
-        Reviewed by Adam Barth.
-
-        Modified Sheriffbot build script to track the svn repo from git and add bot user details to the git repo config file.
-        This resolves problems when Sheriffbot attempts to perform a rollout request.
-
-        * EWSTools/GoogleComputeEngine/build-feeder-style-sheriffbot.sh:
-        * EWSTools/configure-git-svn.sh: Copied from Tools/EWSTools/create-webkit-git.
-        * EWSTools/configure-git-user.sh: Renamed from Tools/EWSTools/create-webkit-git.
-
-2013-02-19  Claudio Saavedra  <csaavedra@igalia.com>
-
-        Unreviewed build fix.
-
-        * efl/jhbuild.modules:
-        * gtk/jhbuild.modules:
-
-        Bump harfbuzz module to 0.9.7. See related bug 110145.
-
-2013-02-19  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Skip the build with a warning if certain tools cannot be found in the PATH
-        https://bugs.webkit.org/show_bug.cgi?id=110215
-
-        Reviewed by Tor Arne Vestbø.
-
-        Check that gperf, python, ruby, perl, bison and flex are in the PATH before
-        continuing the build. Otherwise skip with an error message explaining which
-        programs are missing from the build.
-
-        * qmake/mkspecs/features/configure.prf:
-        * qmake/mkspecs/features/functions.prf:
-
-2013-02-19  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r143319.
-        http://trac.webkit.org/changeset/143319
-        https://bugs.webkit.org/show_bug.cgi?id=110214
-
-        Causes build issues on win32 (Requested by carewolf on
-        #webkit).
-
-        * qmake/mkspecs/features/features.pri:
-
-2013-02-19  Allan Sandfeld Jensen  <allan.jensen@digia.com>
-
-        [Qt] Enable MathML
-        https://bugs.webkit.org/show_bug.cgi?id=110205
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/features.pri:
-
-2013-02-17  Andrei Bucur  <abucur@adobe.com>
-
-        Unreviewed. Adding myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-19  Hajime Morrita  <morrita@google.com>
-
-        Unreviewed, updated spelling of my name.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-18  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Unreviewed. Adjust expectations.
-
-        * TestWebKitAPI/Tests/WebCore/HeapGraphSerializerTest.cpp:
-        (TestWebKitAPI::TEST):
-
-2013-02-18  Zan Dobersek  <zdobersek@igalia.com>
-
-        Unreviewed GTK gardening.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner): Skipped the ReloadPageAfterCrash unit test as it is flakily timing out.
-
-2013-02-18  Adenilson Cavalcanti  <cavalcantii@gmail.com>
-
-        [Qt][WK2] Remove duped test name and append new test in project file
-        https://bugs.webkit.org/show_bug.cgi?id=110117
-
-        A new WK2 API test has landed recently (ResizeWindowAfterCrash), this patch will
-        add this test into the runnable test suite and remove a duped test in project file.
-
-        Reviewed by Jocelyn Turcotte.
-
-        * TestWebKitAPI/Tests/WebKit2/WebKit2.pro:
-
-2013-02-18  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] remove log spew from dumpAllBackForwardLists
-        https://bugs.webkit.org/show_bug.cgi?id=110108
-
-        Reviewed by Nico Weber.
-
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-
-2013-02-18  Christophe Dumez  <ch.dumez@sisa.samsung.com>
-
-        [EFL][WK2] Disable failing API tests
-        https://bugs.webkit.org/show_bug.cgi?id=110081
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Disable DOMWindowExtensionBasic WK2 test on EFL port as it times out.
-
-        * TestWebKitAPI/PlatformEfl.cmake:
-
-2013-02-18  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Disable the build if certain configure checks fail
-        https://bugs.webkit.org/show_bug.cgi?id=110094
-
-        Reviewed by Tor Arne Vestbø.
-
-        Allow for the build to be skipped (clear out SUBDIRS) if certain
-        configure conditions aren't met.
-
-        * qmake/mkspecs/features/configure.prf:
-
-2013-02-15  Allan Sandfeld Jensen  <allan.jensen@digia.com>
-
-        [Qt][WK2] Support WK2 API tests
-        https://bugs.webkit.org/show_bug.cgi?id=109843
-
-        Reviewed by Jocelyn Turcotte.
-
-        * TestWebKitAPI/DerivedSources.pri: Added.
-        * TestWebKitAPI/InjectedBundle.pri: Added.
-        * TestWebKitAPI/PlatformWebView.h:
-        * TestWebKitAPI/TestWebKitAPI.pri:
-        * TestWebKitAPI/TestWebKitAPI.pro:
-        * TestWebKitAPI/Tests/JavaScriptCore/JavaScriptCore.pro: Added.
-        * TestWebKitAPI/Tests/WTF/WTF.pro:
-        * TestWebKitAPI/Tests/WebKit2/WebKit2.pro: Added.
-        * TestWebKitAPI/qt/PlatformUtilitiesQt.cpp:
-        (TestWebKitAPI::Util::sleep):
-        (TestWebKitAPI::Util::createInjectedBundlePath):
-        (TestWebKitAPI::Util::createURLForResource):
-        (TestWebKitAPI::Util::isKeyDown):
-        (Util):
-        * TestWebKitAPI/qt/PlatformWebViewQt.cpp: Added.
-        (TestWebKitAPI):
-        (WrapperWindow):
-        (TestWebKitAPI::WrapperWindow::WrapperWindow):
-        (TestWebKitAPI::WrapperWindow::handleStatusChanged):
-        (TestWebKitAPI::PlatformWebView::PlatformWebView):
-        (TestWebKitAPI::PlatformWebView::~PlatformWebView):
-        (TestWebKitAPI::PlatformWebView::resizeTo):
-        (TestWebKitAPI::PlatformWebView::page):
-        (TestWebKitAPI::PlatformWebView::focus):
-        (TestWebKitAPI::PlatformWebView::simulateSpacebarKeyPress):
-        (TestWebKitAPI::PlatformWebView::simulateAltKeyPress):
-        (TestWebKitAPI::PlatformWebView::simulateMouseMove):
-        (TestWebKitAPI::PlatformWebView::simulateRightClick):
-        * TestWebKitAPI/qt/main.cpp:
-        (addQtWebProcessToPath):
-        (main):
-
-2013-02-18  Christophe Dumez  <ch.dumez@sisa.samsung.com>
-
-        [EFL][WK2] Refactor Ewk_Favicon code and stop relying on internal C++ API
-        https://bugs.webkit.org/show_bug.cgi?id=108598
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Update EFL's MiniBrowser to make use of new Ewk_Favicon API.
-
-        * MiniBrowser/efl/main.c:
-        (update_view_favicon):
-        (on_view_favicon_changed):
-        (window_create):
-
-2013-02-18  Zoltan Arvai  <zarvai@inf.u-szeged.hu>
-
-        Unreviewed. Add myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-13  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Web Inspector: Native Memory Instrumentation: reportLeaf method doesn't report the leaf node properly.
-        https://bugs.webkit.org/show_bug.cgi?id=109554
-
-        In some cases leaves have no pointer so with the old schema we can't generate nodeId for them because we
-        can't insert 0 into hashmap. It happens when we call addPrivateBuffer method.
-
-        Drive by fix: I introduced a client interface for the HeapGraphSerializer.
-        It helps me to do the tests for the serializer.
-
-        Reviewed by Yury Semikhatsky.
-
-        It is covered by newly added tests in TestWebKitAPI.
-
-        * TestWebKitAPI/TestWebKitAPI.gypi:
-        * TestWebKitAPI/Tests/WebCore/HeapGraphSerializerTest.cpp: Added.
-        (TestWebKitAPI):
-        (HeapGraphReceiver):
-        (TestWebKitAPI::HeapGraphReceiver::HeapGraphReceiver):
-        (TestWebKitAPI::HeapGraphReceiver::printGraph):
-        (TestWebKitAPI::HeapGraphReceiver::dumpNodes):
-        (TestWebKitAPI::HeapGraphReceiver::dumpEdges):
-        (TestWebKitAPI::HeapGraphReceiver::dumpBaseToRealNodeId):
-        (TestWebKitAPI::HeapGraphReceiver::dumpStrings):
-        (TestWebKitAPI::HeapGraphReceiver::serializer):
-        (TestWebKitAPI::HeapGraphReceiver::chunkPart):
-        (TestWebKitAPI::HeapGraphReceiver::dumpPart):
-        (TestWebKitAPI::HeapGraphReceiver::stringValue):
-        (TestWebKitAPI::HeapGraphReceiver::intValue):
-        (TestWebKitAPI::HeapGraphReceiver::nodeToString):
-        (TestWebKitAPI::HeapGraphReceiver::edgeToString):
-        (TestWebKitAPI::HeapGraphReceiver::printNode):
-        (Helper):
-        (TestWebKitAPI::Helper::Helper):
-        (TestWebKitAPI::Helper::addNode):
-        (TestWebKitAPI::Helper::addEdge):
-        (TestWebKitAPI::Helper::done):
-        (Object):
-        (TestWebKitAPI::Helper::Object::Object):
-        (TestWebKitAPI::TEST):
-        (Owner):
-        (TestWebKitAPI::Owner::Owner):
-        (TestWebKitAPI::Owner::reportMemoryUsage):
-
-2013-02-18  Ryosuke Niwa  <rniwa@webkit.org>
-
-        WKR build fix. Always use ascii since irclib/ircbot doesn't support unicode.
-
-        * Scripts/webkitpy/tool/commands/newcommitbot.py:
-        (NewCommitBot.next_work_item):
-
-2013-02-17  Kangil Han  <kangil.han@samsung.com>
-
-        Unreviewed. Add myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-17  Alan Cutter  <alancutter@chromium.org>
-
-        GCE EWS bots are all offline
-        https://bugs.webkit.org/show_bug.cgi?id=110069
-
-        Reviewed by Eric Seidel.
-
-        Updated GCE EWS build scripts to use the gcel-10-04-v20130104 image instead of the obsoleted ubuntu-10-04-v20120621.
-        This changed the ephemeral disk path to /dev/sdb and required /etc/hosts to be chmodded to 644.
-
-        * EWSTools/GoogleComputeEngine/build-chromium-ews.sh:
-        * EWSTools/GoogleComputeEngine/build-commit-queue.sh:
-        * EWSTools/GoogleComputeEngine/build-cr-linux-debug-ews.sh:
-        * EWSTools/GoogleComputeEngine/build-feeder-style-sheriffbot.sh:
-        * EWSTools/build-vm.sh:
-        * EWSTools/start-queue.sh:
-
-2013-02-18  Eugene Klyuchnikov  <eustas@chromium.org>
-
-        Unreviewed, add myself to commiters.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-17  Dongwoo Joshua Im  <dw.im@samsung.com>
-
-        Unreviewed. Add myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-17  Roger Fong  <roger_fong@apple.com>
-
-        Unreviewed. Fix typo in script.
-
-        * EWSTools/start-queue-win.sh:
-
-2013-02-15  Roger Fong  <roger_fong@apple.com>
-
-        Pass in bot name as parameter to start-queue-win script.
-        https://bugs.webkit.org/show_bug.cgi?id=109998.
-
-        Reviewed by Darin Adler.
-
-        * EWSTools/start-queue-win.sh:
-
-2013-02-18  Byungwoo Lee  <bw80.lee@samsung.com>
-
-        Unreviewed. Add myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-17  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Rename new-commit-bot to WKR to disambiguate it from commit-queue.
-
-        Rubber-stamped by Andreas Kling.
-
-        * Scripts/webkitpy/tool/commands/newcommitbot.py:
-        (NewCommitBot.begin_work_queue):
-
-2013-02-16  Glenn Adams  <glenn@skynav.com>
-
-        Unreviewed. Add myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-16  Ryosuke Niwa  <rniwa@webkit.org>
-
-        new-commit-bot should report the full name of committer and reviewer instead of just nicks
-        https://bugs.webkit.org/show_bug.cgi?id=110040
-
-        Reviewed by Darin Adler.
-
-        Have it report names like "Ryosuke Niwa (rniwa)" instead of just "rniwa".
-
-        * Scripts/webkitpy/tool/commands/newcommitbot.py:
-        (NewCommitBot):
-        (NewCommitBot._summarize_commit_log):
-        * Scripts/webkitpy/tool/commands/newcommitbot_unittest.py:
-
-2013-02-16  Ryosuke Niwa  <rniwa@webkit.org>
-
-        We need a CIA replacement
-        https://bugs.webkit.org/show_bug.cgi?id=110008
-
-        Reviewed by Andreas Kling.
-
-        Added new-commit-bot.
-
-        * Scripts/webkitpy/tool/bot/queueengine.py:
-        (QueueEngine.__init__):
-        (QueueEngine): Made the sleep tiem configurable.
-        (QueueEngine._sleep_message):
-        (QueueEngine._sleep):
-        * Scripts/webkitpy/tool/bot/queueengine_unittest.py:
-        (QueueEngineTest.test_sleep_message):
-        * Scripts/webkitpy/tool/commands/__init__.py:
-        * Scripts/webkitpy/tool/commands/newcommitbot.py: Added.
-        (PingPong): Added. Implements the ping pong protocol.
-        (NewCommitBot):
-        (NewCommitBot.begin_work_queue):
-        (NewCommitBot.work_item_log_path):
-        (NewCommitBot.next_work_item): Update SVN revision and report any new commits made since
-        the last time we checked the head SVN revision.
-        (NewCommitBot.process_work_item):
-        (NewCommitBot._update_checkout): svn up.
-        (NewCommitBot._new_svn_revisions): Returns a range of new revisions.
-        (NewCommitBot._summarize_commit_log): Summarize a commit log to be posted on IRC.
-        (NewCommitBot.handle_unexpected_error):
-        (NewCommitBot.handle_script_error):
-        * Scripts/webkitpy/tool/commands/newcommitbot_unittest.py: Added.
-        (NewCommitBotTest.test_summarize_commit_log_basic): Tests for summarizing non-rollout commits.
-        (NewCommitBotTest.test_summarize_commit_log_rollout): Tests for summarizing rollouts.
-        * Scripts/webkitpy/tool/commands/queues.py:
-        (AbstractQueue.execute):
-        * Scripts/webkitpy/tool/commands/queuestest.py:
-        (MockQueueEngine.__init__):
-        * Scripts/webkitpy/tool/commands/sheriffbot_unittest.py:
-        (SheriffBotTest.test_command_aliases):
-        * Scripts/webkitpy/tool/main.py:
-        (WebKitPatch):
-
-2013-02-16  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] initialize all variables of TestRunner classes
-        https://bugs.webkit.org/show_bug.cgi?id=110013
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        (WebTestRunner::TestInterfaces::TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-
-2013-02-16  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] destroy the TestPlugin when the destroy() method is invoked.
-        https://bugs.webkit.org/show_bug.cgi?id=110012
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/TestRunner/src/TestPlugin.cpp:
-        (WebTestRunner::TestPlugin::destroy):
-
-2013-02-15  Adenilson Cavalcanti  <cavalcantii@gmail.com>
-
-        [WK2] Write a test to simulate crashed WebProcess followed by Window resize
-        https://bugs.webkit.org/show_bug.cgi?id=109842
-
-        Reviewed by Benjamin Poulain.
-
-        This new test will kill WebProcess, followed by next resizing the Window. It helps to
-        identify if the port is testing for WebPageProxy data members state (e.g. DrawingArea, Frames)
-        before making calls into them.
-
-        * TestWebKitAPI/GNUmakefile.am:
-        * TestWebKitAPI/PlatformEfl.cmake:
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2/ResizeWindowAfterCrash.cpp: Added.
-        (TestWebKitAPI):
-        (TestWebKitAPI::didFinishLoad):
-        (TestWebKitAPI::didCrash):
-        (TestWebKitAPI::TEST):
-
-2013-02-15  Christophe Dumez  <ch.dumez@sisa.samsung.com>
-
-        Add CString operators for comparison with const char*
-        https://bugs.webkit.org/show_bug.cgi?id=109947
-
-        Reviewed by Darin Adler.
-
-        Add tests for WTF::CString's comparison operators.
-
-        * TestWebKitAPI/Tests/WTF/CString.cpp:
-        (TEST):
-
-2013-02-15  Zan Dobersek  <zdobersek@igalia.com>
-
-        webkit-patch suggest-reviewers should limit itself to 5 reviewers
-        https://bugs.webkit.org/show_bug.cgi?id=107528
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/checkout/checkout.py:
-        (Checkout.suggested_reviewers): Iterate through the sorted commit info list,
-        scraping reviewers from the commit information and in the end producing a list
-        of reviewers that's sorted from the most to least recent activity of any reviewer
-        that has reviewed or authored patches for the changed files.
-        * Scripts/webkitpy/tool/commands/queries.py:
-        (SuggestReviewers): Use the SuggestReviewers step instead of reimplementing much of
-        the same logic.
-        (SuggestReviewers._prepare_state): Force the reviewer suggestion because the option
-        defaults to False.
-        * Scripts/webkitpy/tool/steps/suggestreviewers.py:
-        (SuggestReviewers.run): Only list the first five suggested reviewers, now printed out
-        on a single line.  Only ask for CC-ing the suggested reviewers to the bug if the
-        bug ID is located in the command's state.
-
-2013-02-15  Pablo Flouret  <pablof@motorola.com>
-
-        Unreviewed. Add myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-15  Roger Fong  <roger_fong@apple.com>
-
-        Get Win EWS startup script checked into tree so we can make changes to all the EWS bots more easily.
-
-        * EWSTools/start-queue-win.sh: Added.
-
-2013-02-15  Andreas Kling  <akling@apple.com>
-
-        Unbreak webkit-patch -- can't have both Committer and Contributor entry with same e-mail address.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-15  Joanmarie Diggs  <jdiggs@igalia.com>
-
-        Unreviewed. Add myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-15  Ryosuke Niwa  <rniwa@webkit.org>
-
-        NRWT: ML Debug Test bot is timing out after cleaning up ports
-        https://bugs.webkit.org/show_bug.cgi?id=109912
-
-        Reviewed by Simon Fraser.
-
-        Added more debug messgaes to diagnose the issue.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.run):
-
-2013-02-15  Claudio Saavedra  <csaavedra@igalia.com>
-
-        Unreviewed. Add myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-15  Christophe Dumez  <ch.dumez@sisa.samsung.com>
-
-        Unreviewed. Update Yi Shen, Antonio Gomes and Laszlo Gombos'
-        emails on their behalf.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-15  Andrey Lushnikov  <lushnikov@chromium.org>
-
-        Web Inspector: implement smart braces functionality
-        https://bugs.webkit.org/show_bug.cgi?id=109200
-
-        Reviewed by Pavel Feldman.
-
-        Fix eventSender.keyDown implementation to correctly process opening
-        round brace symbol.
-
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::keyDown):
-
-2013-02-15  Jochen Eisinger  <jochen@chromium.org>
-
-        Speculative build fix for chromium-win.
-
-        Unreviewed build fix.
-
-        Add declarations of the copy constructor and assignment operator to
-        WebTestProxyBase, so VS doesn't try to generate them.
-
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-
-2013-02-15  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Port GCController to JSC C API
-        https://bugs.webkit.org/show_bug.cgi?id=109690
-
-        Reviewed by Benjamin Poulain.
-
-        Rename TestRunner to TestRunnerQt to avoid conflict when
-        including TestRunner.h in the future.
-
-        Replaced QObject based GCController implementation with JSC C API
-        based one.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::open):
-        (WebCore::DumpRenderTree::initJSObjects):
-        (WebCore::methodNameStringForFailedTest):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        (WebCore::DumpRenderTree::testRunner):
-        (DumpRenderTree):
-        * DumpRenderTree/qt/GCControllerQt.cpp:
-        (GCController::getJSObjectCount):
-        * DumpRenderTree/qt/GCControllerQt.h: Removed.
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        (TestRunnerQt::TestRunnerQt):
-        (TestRunnerQt::reset):
-        (TestRunnerQt::dumpNotifications):
-        (TestRunnerQt::processWork):
-        (TestRunnerQt::maybeDump):
-        (TestRunnerQt::dumpAsText):
-        (TestRunnerQt::waitUntilDone):
-        (TestRunnerQt::setViewModeMediaFeature):
-        (TestRunnerQt::webHistoryItemCount):
-        (TestRunnerQt::keepWebHistory):
-        (TestRunnerQt::notifyDone):
-        (TestRunnerQt::windowCount):
-        (TestRunnerQt::grantWebNotificationPermission):
-        (TestRunnerQt::ignoreLegacyWebNotificationPermissionRequests):
-        (TestRunnerQt::denyWebNotificationPermission):
-        (TestRunnerQt::removeAllWebNotificationPermissions):
-        (TestRunnerQt::simulateWebNotificationClick):
-        (TestRunnerQt::simulateLegacyWebNotificationClick):
-        (TestRunnerQt::display):
-        (TestRunnerQt::displayInvalidatedRegion):
-        (TestRunnerQt::clearBackForwardList):
-        (TestRunnerQt::pathToLocalResource):
-        (TestRunnerQt::dumpEditingCallbacks):
-        (TestRunnerQt::dumpFrameLoadCallbacks):
-        (TestRunnerQt::dumpProgressFinishedCallback):
-        (TestRunnerQt::dumpUserGestureInFrameLoadCallbacks):
-        (TestRunnerQt::dumpResourceLoadCallbacks):
-        (TestRunnerQt::dumpResourceResponseMIMETypes):
-        (TestRunnerQt::dumpWillCacheResponse):
-        (TestRunnerQt::dumpHistoryCallbacks):
-        (TestRunnerQt::setWillSendRequestReturnsNullOnRedirect):
-        (TestRunnerQt::setWillSendRequestReturnsNull):
-        (TestRunnerQt::setWillSendRequestClearHeader):
-        (TestRunnerQt::setDeferMainResourceDataLoad):
-        (TestRunnerQt::queueBackNavigation):
-        (TestRunnerQt::queueForwardNavigation):
-        (TestRunnerQt::queueLoad):
-        (TestRunnerQt::queueLoadHTMLString):
-        (TestRunnerQt::queueReload):
-        (TestRunnerQt::queueLoadingScript):
-        (TestRunnerQt::queueNonLoadingScript):
-        (TestRunnerQt::provisionalLoad):
-        (TestRunnerQt::timerEvent):
-        (TestRunnerQt::encodeHostName):
-        (TestRunnerQt::decodeHostName):
-        (TestRunnerQt::closeWebInspector):
-        (TestRunnerQt::setDeveloperExtrasEnabled):
-        (TestRunnerQt::setAsynchronousSpellCheckingEnabled):
-        (TestRunnerQt::showWebInspector):
-        (TestRunnerQt::evaluateInWebInspector):
-        (TestRunnerQt::goBack):
-        (TestRunnerQt::setDefersLoading):
-        (TestRunnerQt::setAllowUniversalAccessFromFileURLs):
-        (TestRunnerQt::setAllowFileAccessFromFileURLs):
-        (TestRunnerQt::setAppCacheMaximumSize):
-        (TestRunnerQt::setAutofilled):
-        (TestRunnerQt::setValueForUser):
-        (TestRunnerQt::setFixedContentsSize):
-        (TestRunnerQt::setPrivateBrowsingEnabled):
-        (TestRunnerQt::setSpatialNavigationEnabled):
-        (TestRunnerQt::setPopupBlockingEnabled):
-        (TestRunnerQt::setPluginsEnabled):
-        (TestRunnerQt::setPOSIXLocale):
-        (TestRunnerQt::setWindowIsKey):
-        (TestRunnerQt::setMainFrameIsFirstResponder):
-        (TestRunnerQt::setJavaScriptCanAccessClipboard):
-        (TestRunnerQt::setXSSAuditorEnabled):
-        (TestRunnerQt::dispatchPendingLoadRequests):
-        (TestRunnerQt::clearAllApplicationCaches):
-        (TestRunnerQt::clearApplicationCacheForOrigin):
-        (TestRunnerQt::localStorageDiskUsageForOrigin):
-        (TestRunnerQt::setApplicationCacheOriginQuota):
-        (TestRunnerQt::applicationCacheDiskUsageForOrigin):
-        (TestRunnerQt::originsWithApplicationCache):
-        (TestRunnerQt::setCacheModel):
-        (TestRunnerQt::setDatabaseQuota):
-        (TestRunnerQt::clearAllDatabases):
-        (TestRunnerQt::addOriginAccessWhitelistEntry):
-        (TestRunnerQt::removeOriginAccessWhitelistEntry):
-        (TestRunnerQt::setCustomPolicyDelegate):
-        (TestRunnerQt::waitForPolicyDelegate):
-        (TestRunnerQt::overridePreference):
-        (TestRunnerQt::setUserStyleSheetLocation):
-        (TestRunnerQt::setCaretBrowsingEnabled):
-        (TestRunnerQt::setAuthorAndUserStylesEnabled):
-        (TestRunnerQt::setUserStyleSheetEnabled):
-        (TestRunnerQt::setDomainRelaxationForbiddenForURLScheme):
-        (TestRunnerQt::callShouldCloseOnWebView):
-        (TestRunnerQt::setScrollbarPolicy):
-        (TestRunnerQt::setSmartInsertDeleteEnabled):
-        (TestRunnerQt::setSelectTrailingWhitespaceEnabled):
-        (TestRunnerQt::execCommand):
-        (TestRunnerQt::isCommandEnabled):
-        (TestRunnerQt::findString):
-        (TestRunnerQt::markerTextForListItem):
-        (TestRunnerQt::computedStyleIncludingVisitedInfo):
-        (TestRunnerQt::elementDoesAutoCompleteForElementWithId):
-        (TestRunnerQt::authenticateSession):
-        (TestRunnerQt::setIconDatabaseEnabled):
-        (TestRunnerQt::setMockDeviceOrientation):
-        (TestRunnerQt::setGeolocationPermission):
-        (TestRunnerQt::numberOfPendingGeolocationPermissionRequests):
-        (TestRunnerQt::setGeolocationPermissionCommon):
-        (TestRunnerQt::setMockGeolocationPositionUnavailableError):
-        (TestRunnerQt::setMockGeolocationPosition):
-        (TestRunnerQt::addMockSpeechInputResult):
-        (TestRunnerQt::setMockSpeechInputDumpRect):
-        (TestRunnerQt::startSpeechInput):
-        (TestRunnerQt::evaluateScriptInIsolatedWorldAndReturnValue):
-        (TestRunnerQt::evaluateScriptInIsolatedWorld):
-        (TestRunnerQt::addUserStyleSheet):
-        (TestRunnerQt::removeAllVisitedLinks):
-        (TestRunnerQt::addURLToRedirect):
-        (TestRunnerQt::originsWithLocalStorage):
-        (TestRunnerQt::deleteAllLocalStorage):
-        (TestRunnerQt::deleteLocalStorageForOrigin):
-        (TestRunnerQt::observeStorageTrackerNotifications):
-        (TestRunnerQt::syncLocalStorage):
-        (TestRunnerQt::resetPageVisibility):
-        (TestRunnerQt::setPageVisibility):
-        (TestRunnerQt::setAutomaticLinkDetectionEnabled):
-        (TestRunnerQt::setTextDirection):
-        (TestRunnerQt::setAlwaysAcceptCookies):
-        (TestRunnerQt::setAlwaysBlockCookies):
-        (TestRunnerQt::setAudioData):
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunnerQt):
-
-2013-02-14  Karen Grunberg  <kareng@chromium.org>
-
-        adding myself as a committer
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-14  Glenn Adams  <glenn@skynav.com>
-
-        new-run-webkit-tests needs a shared TestExpectations between all WebKit ports
-        https://bugs.webkit.org/show_bug.cgi?id=37565
-
-        Introduce generic TestExpectations file that applies as a fallback for all ports, the location of which
-        is LayoutTests/TestExpectations.
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/lint_test_expectations_unittest.py:
-        (FakePort.path_to_generic_test_expectations_file):
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectations.__init__):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.path_to_generic_test_expectations_file):
-        (Port):
-        (Port._port_specific_expectations_files):
-        (Port.expectations_files):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort._port_specific_expectations_files):
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort._port_specific_expectations_files):
-        * Scripts/webkitpy/layout_tests/port/chromium_port_testcase.py:
-        (ChromiumPortTestCase.test_expectations_files):
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort._port_specific_expectations_files):
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort._port_specific_expectations_files):
-        * Scripts/webkitpy/layout_tests/port/gtk_unittest.py:
-        (GtkPortTest.test_expectations_files):
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort._port_specific_expectations_files):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (PortTestCase.test_expectations_ordering):
-        (test_expectations_files):
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort._port_specific_expectations_files):
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        (QtPortTest.test_expectations_files):
-        * Scripts/webkitpy/layout_tests/port/win_unittest.py:
-        (WinPortTest.test_expectations_files):
-        * Scripts/webkitpy/tool/commands/queries_unittest.py:
-        (PrintExpectationsTest.test_paths):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineTest._update_expectations_file):
-
-2013-02-14  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move pixel generation logic to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=109686
-
-        Reviewed by Stephen White.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestRunner.h:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        (WebTestRunner::TestInterfaces::~TestInterfaces):
-        (WebTestRunner::TestInterfaces::setWebView):
-        (WebTestRunner::TestInterfaces::proxy):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.h:
-        (WebTestRunner):
-        (TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::setWebView):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::setBackingScaleFactor):
-        (WebTestRunner::TestRunner::display):
-        (WebTestRunner::TestRunner::displayInvalidatedRegion):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (WebTestRunner):
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestRunner::WebTestInterfaces::setWebView):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::reset):
-        (WebTestRunner::WebTestProxyBase::capturePixels):
-        (WebTestRunner):
-        (WebTestRunner::WebTestProxyBase::paintRect):
-        (WebTestRunner::WebTestProxyBase::paintInvalidatedRegion):
-        (WebTestRunner::WebTestProxyBase::paintPagesWithBoundaries):
-        (WebTestRunner::WebTestProxyBase::canvas):
-        (WebTestRunner::WebTestProxyBase::displayRepaintMask):
-        (WebTestRunner::WebTestProxyBase::display):
-        (WebTestRunner::WebTestProxyBase::displayInvalidatedRegion):
-        (WebTestRunner::WebTestProxyBase::discardBackingStore):
-        (WebTestRunner::WebTestProxyBase::setWindowRect):
-        (WebTestRunner::WebTestProxyBase::userMediaClient):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::createMainWindow):
-        (TestShell::~TestShell):
-        (TestShell::showDevTools):
-        (TestShell::closeDevTools):
-        (TestShell::dump):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::setWindowRect):
-        (WebViewHost::setDeviceScaleFactor):
-        (WebViewHost::reset):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-02-14  Tony Chang  <tony@chromium.org>
-
-        Unreviewed, set svn:eol-style native for .sln, .vcproj, and .vsprops files.
-        https://bugs.webkit.org/show_bug.cgi?id=96934
-
-        * CLWrapper/CLWrapper.sln: Modified property svn:eol-style.
-        * DumpRenderTree/DumpRenderTree.sln: Modified property svn:eol-style.
-        * DumpRenderTree/win/DumpRenderTreeLauncherCommon.vsprops: Added property svn:eol-style.
-        * DumpRenderTree/win/DumpRenderTreeLauncherDebug.vsprops: Added property svn:eol-style.
-        * DumpRenderTree/win/DumpRenderTreeLauncherDebugAll.vsprops: Added property svn:eol-style.
-        * DumpRenderTree/win/DumpRenderTreeLauncherDebugCairoCFLite.vsprops: Added property svn:eol-style.
-        * DumpRenderTree/win/DumpRenderTreeLauncherProduction.vsprops: Added property svn:eol-style.
-        * DumpRenderTree/win/DumpRenderTreeLauncherRelease.vsprops: Added property svn:eol-style.
-        * DumpRenderTree/win/DumpRenderTreeLauncherReleaseCairoCFLite.vsprops: Added property svn:eol-style.
-        * DumpRenderTree/win/ImageDiffLauncherCommon.vsprops: Added property svn:eol-style.
-        * DumpRenderTree/win/ImageDiffLauncherDebug.vsprops: Added property svn:eol-style.
-        * DumpRenderTree/win/ImageDiffLauncherDebugAll.vsprops: Added property svn:eol-style.
-        * DumpRenderTree/win/ImageDiffLauncherDebugCairoCFLite.vsprops: Added property svn:eol-style.
-        * DumpRenderTree/win/ImageDiffLauncherProduction.vsprops: Added property svn:eol-style.
-        * DumpRenderTree/win/ImageDiffLauncherRelease.vsprops: Added property svn:eol-style.
-        * DumpRenderTree/win/ImageDiffLauncherReleaseCairoCFLite.vsprops: Added property svn:eol-style.
-        * DumpRenderTree/win/ImageDiffWinCairoCommon.vsprops: Added property svn:eol-style.
-        * MIDLWrapper/MIDLWrapper.sln: Modified property svn:eol-style.
-        * MiniBrowser/Configurations/MiniBrowserLauncherCommon.vsprops: Added property svn:eol-style.
-        * MiniBrowser/Configurations/MiniBrowserLauncherDebug.vsprops: Added property svn:eol-style.
-        * MiniBrowser/Configurations/MiniBrowserLauncherDebugAll.vsprops: Added property svn:eol-style.
-        * MiniBrowser/Configurations/MiniBrowserLauncherDebugCairoCFLite.vsprops: Added property svn:eol-style.
-        * MiniBrowser/Configurations/MiniBrowserLauncherProduction.vsprops: Added property svn:eol-style.
-        * MiniBrowser/Configurations/MiniBrowserLauncherRelease.vsprops: Added property svn:eol-style.
-        * MiniBrowser/Configurations/MiniBrowserLauncherReleaseCairoCFLite.vsprops: Added property svn:eol-style.
-        * TestWebKitAPI/Configurations/TestWebKitAPICFNetwork.vsprops: Added property svn:eol-style.
-        * TestWebKitAPI/Configurations/TestWebKitAPIDebug.vsprops: Added property svn:eol-style.
-        * TestWebKitAPI/Configurations/TestWebKitAPIDebugAll.vsprops: Added property svn:eol-style.
-        * TestWebKitAPI/Configurations/TestWebKitAPIDebugCairoCFLite.vsprops: Added property svn:eol-style.
-        * TestWebKitAPI/Configurations/TestWebKitAPIInjectedBundleCommon.vsprops: Added property svn:eol-style.
-        * TestWebKitAPI/Configurations/TestWebKitAPIRelease.vsprops: Added property svn:eol-style.
-        * TestWebKitAPI/Configurations/TestWebKitAPIReleaseCairoCFLite.vsprops: Added property svn:eol-style.
-        * WebKitTestRunner/Configurations/WebKitTestRunnerCoreGraphics.vsprops: Added property svn:eol-style.
-        * WebKitTestRunner/WebKitTestRunner.sln: Modified property svn:eol-style.
-        * WebKitTestRunner/win/WebKitTestRunnerLauncherCommon.vsprops: Added property svn:eol-style.
-        * WebKitTestRunner/win/WebKitTestRunnerLauncherDebug.vsprops: Added property svn:eol-style.
-        * WebKitTestRunner/win/WebKitTestRunnerLauncherDebugAll.vsprops: Added property svn:eol-style.
-        * WebKitTestRunner/win/WebKitTestRunnerLauncherDebugCairoCFLite.vsprops: Added property svn:eol-style.
-        * WebKitTestRunner/win/WebKitTestRunnerLauncherProduction.vsprops: Added property svn:eol-style.
-        * WebKitTestRunner/win/WebKitTestRunnerLauncherRelease.vsprops: Added property svn:eol-style.
-        * WebKitTestRunner/win/WebKitTestRunnerLauncherReleaseCairoCFLite.vsprops: Added property svn:eol-style.
-        * WinLauncher/WinLauncherLauncherCommon.vsprops: Added property svn:eol-style.
-        * WinLauncher/WinLauncherLauncherDebug.vsprops: Added property svn:eol-style.
-        * WinLauncher/WinLauncherLauncherDebugAll.vsprops: Added property svn:eol-style.
-        * WinLauncher/WinLauncherLauncherDebugCairoCFLite.vsprops: Added property svn:eol-style.
-        * WinLauncher/WinLauncherLauncherProduction.vsprops: Added property svn:eol-style.
-        * WinLauncher/WinLauncherLauncherRelease.vsprops: Added property svn:eol-style.
-        * WinLauncher/WinLauncherLauncherReleaseCairoCFLite.vsprops: Added property svn:eol-style.
-
-2013-02-14  Tony Chang  <tony@chromium.org>
-
-        Unreviewed, set svn:eol-style CRLF for .sln files.
-
-        * CLWrapper/CLWrapper.sln: Modified property svn:eol-style.
-        * DumpRenderTree/DumpRenderTree.sln: Modified property svn:eol-style.
-        * MIDLWrapper/MIDLWrapper.sln: Modified property svn:eol-style.
-        * WebKitTestRunner/WebKitTestRunner.sln: Modified property svn:eol-style.
-
-2013-02-14  Zan Dobersek  <zdobersek@igalia.com>
-
-        [GTK] Errors when building WebKit2 with Clang
-        https://bugs.webkit.org/show_bug.cgi?id=109603
-
-        Reviewed by Alexey Proskuryakov.
-
-        * WebKitTestRunner/gtk/PlatformWebViewGtk.cpp:
-        (WTR::PlatformWebView::resizeTo): Cast the width and height parameters to the integer
-        type when constructing the GtkAllocation.
-
-        * CLWrapper/CLWrapper.sln: Modified property svn:eol-style.
-        * DumpRenderTree/DumpRenderTree.sln: Modified property svn:eol-style.
-        * MIDLWrapper/MIDLWrapper.sln: Modified property svn:eol-style.
-        * WebKitTestRunner/WebKitTestRunner.sln: Modified property svn:eol-style.
-
-2013-02-14  Roger Fong  <roger_fong@apple.com>
-
-        Add eol-style=native to solution files. Add a new solution file.
-
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree.sln: Added property svn:eol-style.
-        * TestWebKitAPI/TestWebKitAPI.vcxproj: Added property svn:eol-style. Modified property svn:ignore.
-        * TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPI.sln: Added.
-
-2013-02-14  Mario Sanchez Prada  <mario.prada@samsung.com>
-
-        [GTK] Missing call to g_object_ref while retrieving accessible table cells
-        https://bugs.webkit.org/show_bug.cgi?id=106903
-
-        Reviewed by Martin Robinson.
-
-        Both DRT and WKTR need to call g_object_unref() now that an extra
-        reference is added in the implementation of atk_table_ref_at().
-
-        * DumpRenderTree/atk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::cellForColumnAndRow): Call g_object_unref
-        before returning the new instance of AccessibilityUIElement.
-        * WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp:
-        (WTR::AccessibilityUIElement::cellForColumnAndRow): Ditto.
-
-2013-02-14  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r142841.
-        http://trac.webkit.org/changeset/142841
-        https://bugs.webkit.org/show_bug.cgi?id=109791
-
-        Caused webkit_unit_tests to crash on chromium bots. (Requested
-        by atwilson_ on #webkit).
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createOutputSurface):
-        (WebViewHost::initializeLayerTreeView):
-
-2013-02-13  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [EFL][jhbuild] Silence GSettings-related warning.
-        https://bugs.webkit.org/show_bug.cgi?id=109749
-
-        Reviewed by Martin Robinson.
-
-        Apply the same change done to the GTK+ port in r109127; this
-        silences the warnings printed by glib about the memory GSettings
-        backend being used.
-
-        Not only does this make the bots (as well as manual runs of, say,
-        WebKitTestRunner) much more silent, but it also removes an stderr
-        line (which run-perf-tests considers as a failure).
-
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort.setup_environ_for_server): Explicitly set the
-        GSETTINGS_BACKEND environment variable to "memory".
-
-2013-02-14  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move mock notification presenter to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=109706
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebKit):
-        (WebTestRunner::WebTestProxy::notificationPresenter):
-        * DumpRenderTree/chromium/TestRunner/src/NotificationPresenter.cpp: Renamed from Tools/DumpRenderTree/chromium/NotificationPresenter.cpp.
-        (WebTestRunner::NotificationPresenter::NotificationPresenter):
-        (WebTestRunner):
-        (WebTestRunner::NotificationPresenter::~NotificationPresenter):
-        (WebTestRunner::NotificationPresenter::grantPermission):
-        (WebTestRunner::NotificationPresenter::simulateClick):
-        (WebTestRunner::NotificationPresenter::show):
-        (WebTestRunner::NotificationPresenter::cancel):
-        (WebTestRunner::NotificationPresenter::objectDestroyed):
-        (WebTestRunner::NotificationPresenter::checkPermission):
-        (WebTestRunner::NotificationPresenter::requestPermission):
-        * DumpRenderTree/chromium/TestRunner/src/NotificationPresenter.h: Renamed from Tools/DumpRenderTree/chromium/NotificationPresenter.h.
-        (WebTestRunner):
-        (NotificationPresenter):
-        (WebTestRunner::NotificationPresenter::setDelegate):
-        (WebTestRunner::NotificationPresenter::reset):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::setDelegate):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::notificationPresenter):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::grantWebNotificationPermission):
-        (WebTestRunner::TestRunner::simulateLegacyWebNotificationClick):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (WebKit):
-        (WebTestRunner):
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::notificationPresenter):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::initialize):
-        (TestShell::resetTestController):
-        * DumpRenderTree/chromium/TestShell.h:
-        (WebKit):
-        (TestShell):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2013-02-13  Roger Fong  <roger_fong@apple.com>
-
-        Unreviewed. Add separate DumpRenderTree VS2010 solution file.
-
-        * DumpRenderTree/DumpRenderTree.vcxproj: Added property svn:ignore.
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree.sln: Added.
-
-2013-02-12  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Request WebLayerTreeView for DumpRenderTree via explicit testing path
-        https://bugs.webkit.org/show_bug.cgi?id=109634
-
-        Reviewed by Adrienne Walker.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createOutputSurface):
-        (WebViewHost::initializeLayerTreeView):
-
-2013-02-13  David Farler  <dfarler@apple.com>
-
-        TestWebKitAPI fails to build for iphonesimulator: 'CFNetwork/CFNetworkDefs.h' file not found
-        https://bugs.webkit.org/show_bug.cgi?id=109766
-
-        Reviewed by David Kilzer.
-
-        * TestWebKitAPI/Configurations/Base.xcconfig:
-        - Don't search Mac OS X header search paths when building on iOS
-
-2013-02-13  Zan Dobersek  <zdobersek@igalia.com>
-
-        The 'global isinf/isnan' compiler quirk required when using clang with libstdc++
-        https://bugs.webkit.org/show_bug.cgi?id=109325
-
-        Reviewed by Anders Carlsson.
-
-        Prefix calls to the isinf and isnan methods with std::, declaring we want to use the
-        two methods as they're provided by the C++ standard library being used.
-
-        * DumpRenderTree/TestRunner.cpp:
-        (setAppCacheMaximumSizeCallback):
-        (setApplicationCacheOriginQuotaCallback):
-        (setDatabaseQuotaCallback):
-
-2013-02-13  Alan Cutter  <alancutter@chromium.org>
-
-        cr-linux debug should use clang and maybe be a components build
-        https://bugs.webkit.org/show_bug.cgi?id=108512
-
-        Reviewed by Adam Barth.
-
-        Modified GCE cr-linux-debug-ews bot build scripts to configure clang over gcc for build performance.
-        Build bots will update clang with each bot cycle.
-        Updated GCE image paths to suit gcutil 1.6.1.
-
-        * EWSTools/GoogleComputeEngine/build-chromium-ews.sh:
-        * EWSTools/GoogleComputeEngine/build-commit-queue.sh:
-        * EWSTools/GoogleComputeEngine/build-cr-linux-debug-ews.sh:
-        * EWSTools/GoogleComputeEngine/build-feeder-style-sheriffbot.sh:
-        * EWSTools/configure-clang-linux.sh: Copied from Tools/EWSTools/GoogleComputeEngine/build-chromium-ews.sh.
-        * EWSTools/start-queue.sh:
-
-2013-02-13  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r142747.
-        http://trac.webkit.org/changeset/142747
-        https://bugs.webkit.org/show_bug.cgi?id=109746
-
-        broke component build (Requested by alecf_gardening on
-        #webkit).
-
-        * TestWebKitAPI/TestWebKitAPI.gypi:
-        * TestWebKitAPI/Tests/WebCore/HeapGraphSerializerTest.cpp: Removed.
-
-2013-02-13  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] fix TestRunner build with enable_webrtc=0
-        https://bugs.webkit.org/show_bug.cgi?id=109700
-
-        Reviewed by Tony Chang.
-
-        We can't use ENABLE() macros in the TestRunner library, however,
-        ENABLE_WEBRTC is defined by build/common.gypi, so we can use it.
-
-        * DumpRenderTree/chromium/TestRunner/src/MockConstraints.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/MockWebMediaStreamCenter.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/MockWebRTCDTMFSenderHandler.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/MockWebRTCDataChannelHandler.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/MockWebRTCPeerConnectionHandler.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::userMediaClient):
-        * DumpRenderTree/chromium/TestRunner/src/WebUserMediaClientMock.cpp:
-
-2013-02-12  Roger Fong  <roger_fong@apple.com>
-
-        TestWebKitAPI and record-memory projects and property sheets for VS2010.
-        https://bugs.webkit.org/show_bug.cgi?id=107034
-
-        Reviewed by Brent Fulgham.
-
-        * TestWebKitAPI/TestWebKitAPI.vcxproj: Added.
-        * TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPI.vcxproj: Added.
-        * TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPI.vcxproj.filters: Added.
-        * TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIPostBuild.cmd: Copied from Tools/TestWebKitAPI/win/TestWebKitAPIPostBuild.cmd.
-        * TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIPreBuild.cmd: Copied from Tools/TestWebKitAPI/win/TestWebKitAPIPreBuild.cmd.
-        * win/record-memory: Added.
-        * win/record-memory/main.cpp: Copied from Tools/record-memory-win/main.cpp.
-        * win/record-memory/record-memory.vcxproj: Added.
-        * win/record-memory/record-memory.vcxproj.filters: Added.
-        * win/record-memory/record-memoryCommon.props: Added.
-        * win/record-memory/record-memoryDebug.props: Added.
-        * win/record-memory/record-memoryRelease.props: Added.
-
-2013-02-13  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: Use the source id when creating new tracks
-        https://bugs.webkit.org/show_bug.cgi?id=109688
-
-        Reviewed by Adam Barth.
-
-        Switching mock to new API.
-
-        * DumpRenderTree/chromium/TestRunner/src/WebUserMediaClientMock.cpp:
-        (WebTestRunner::WebUserMediaClientMock::requestUserMedia):
-
-2013-02-13  Brent Fulgham  <bfulgham@webkit.org>
-
-        [Windows] Unreviewed VS2010 fix to add $(ConfigurationBuildDir)/private
-        to include paths, to match VS2005 build behavior.
-
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncherCommon.props:
-        * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncherCommon.props:
-        * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginCommon.props:
-        * WinLauncher/WinLauncher.vcxproj/WinLauncherCommon.props:
-        * WinLauncher/WinLauncher.vcxproj/WinLauncherLibCommon.props:
-
-2013-02-13  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r142736.
-        http://trac.webkit.org/changeset/142736
-        https://bugs.webkit.org/show_bug.cgi?id=109716
-
-        Broke ABI, nightly builds crash on launch (Requested by ap on
-        #webkit).
-
-        * MiniBrowser/mac/WK2BrowserWindowController.m:
-        (-[WK2BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::createWebViewWithOptions):
-
-2013-02-13  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [WK2][EFL][WTR] Regression(r141836): WTR crashes on exit
-        https://bugs.webkit.org/show_bug.cgi?id=109456
-
-        Reviewed by Anders Carlsson.
-
-        WebView instance must not live longer than EwkView, as EwkView owns
-        objects that page proxy refers to, doing otherwise leads to a crash.
-
-        Test controller has own ptr containing WebView. Invoking of ewk_shutdown()
-        leads to evas objects deletion. So, the problem was that test controller was
-        deleted after ewk_shutdown() had been called in main() function causing
-        crashes on WTR exit.
-
-        The patch introduces a scope for test controller so that it is deleted first.
-
-        * WebKitTestRunner/efl/main.cpp:
-        (main):
-
-2013-02-13  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Web Inspector: Native Memory Instrumentation: reportLeaf method doesn't report the leaf node properly.
-        https://bugs.webkit.org/show_bug.cgi?id=109554
-
-        In some cases leaves have no pointer so with the old schema we can't generate nodeId for them because we
-        can't insert 0 into hashmap. It happens when we call addPrivateBuffer method.
-
-        Drive by fix: I introduced a client interface for the HeapGraphSerializer.
-        It helps me to do the tests for the serializer.
-
-        Reviewed by Yury Semikhatsky.
-
-        It is covered by newly added tests in TestWebKitAPI.
-
-        * TestWebKitAPI/TestWebKitAPI.gypi:
-        * TestWebKitAPI/Tests/WebCore/HeapGraphSerializerTest.cpp: Added.
-        (TestWebKitAPI):
-        (HeapGraphReceiver):
-        (TestWebKitAPI::HeapGraphReceiver::HeapGraphReceiver):
-        (TestWebKitAPI::HeapGraphReceiver::printGraph):
-        (TestWebKitAPI::HeapGraphReceiver::dumpNodes):
-        (TestWebKitAPI::HeapGraphReceiver::dumpEdges):
-        (TestWebKitAPI::HeapGraphReceiver::dumpBaseToRealNodeId):
-        (TestWebKitAPI::HeapGraphReceiver::dumpStrings):
-        (TestWebKitAPI::HeapGraphReceiver::serializer):
-        (TestWebKitAPI::HeapGraphReceiver::chunkPart):
-        (TestWebKitAPI::HeapGraphReceiver::dumpPart):
-        (TestWebKitAPI::HeapGraphReceiver::stringValue):
-        (TestWebKitAPI::HeapGraphReceiver::intValue):
-        (TestWebKitAPI::HeapGraphReceiver::nodeToString):
-        (TestWebKitAPI::HeapGraphReceiver::edgeToString):
-        (TestWebKitAPI::HeapGraphReceiver::printNode):
-        (Helper):
-        (TestWebKitAPI::Helper::Helper):
-        (TestWebKitAPI::Helper::addNode):
-        (TestWebKitAPI::Helper::addEdge):
-        (TestWebKitAPI::Helper::done):
-        (Object):
-        (TestWebKitAPI::Helper::Object::Object):
-        (TestWebKitAPI::TEST):
-        (Owner):
-        (TestWebKitAPI::Owner::Owner):
-        (TestWebKitAPI::Owner::reportMemoryUsage):
-
-2013-02-13  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        [WK2] Remove web intents callbacks
-        https://bugs.webkit.org/show_bug.cgi?id=109654
-
-        Reviewed by Benjamin Poulain.
-
-        Web intents was removed by r142549.
-
-        * MiniBrowser/mac/WK2BrowserWindowController.m:
-        (-[WK2BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::createWebViewWithOptions):
-
-2013-02-12  Adenilson Cavalcanti  <cavalcantii@gmail.com>
-
-        [WK2] Page reloading will crash UIProcess after WebProcess was killed
-        https://bugs.webkit.org/show_bug.cgi?id=109305
-
-        Reviewed by Benjamin Poulain.
-
-        Adding a new test to simulate the case of WebProcess crash followed by a trying
-        to load a new page.
-
-        * TestWebKitAPI/GNUmakefile.am:
-        * TestWebKitAPI/PlatformEfl.cmake:
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2/ReloadPageAfterCrash.cpp: Added.
-        (TestWebKitAPI):
-        (TestWebKitAPI::didFinishLoad):
-        (TestWebKitAPI::TEST):
-
-2013-02-11  Brent Fulgham  <bfulgham@webkit.org>
-
-        Update WebKitDirs.pm for new Windows paths
-        https://bugs.webkit.org/show_bug.cgi?id=107714
-
-        Reviewed by Daniel Bates.
-
-        * Scripts/webkitdirs.pm: For each existing Windows environment
-        variable, also include creation of the 'new' variables. The
-        'old' variables will be removed in a future update.
-        (windowsSourceSourceDir): New helper routine to return the
-        actual 'Source' folder of the WebKit source tree.
-
-2013-02-12  Alec Flett  <alecflett@chromium.org>
-
-        Fix signedness in WebTestProxy
-        https://bugs.webkit.org/show_bug.cgi?id=109623
-
-        Reviewed by Adam Barth.
-
-        Fix signedness problem, using size_t instead of int.
-
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-
-2013-02-12  Raymond Toy  <rtoy@google.com>
-
-        Add alias
-        https://bugs.webkit.org/show_bug.cgi?id=109621
-
-        No review needed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-12  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move text dump generation to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=109575
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebKit):
-        (WebTestRunner::WebTestDelegate::captureHistoryForWindow):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestRunner.h:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestCommon.cpp: Copied from Tools/DumpRenderTree/chromium/TestRunner/src/TestCommon.h.
-        (WebTestRunner::normalizeLayoutTestURL):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestCommon.h:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::checkResponseMimeType):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::shouldDumpAsText):
-        (WebTestRunner::TestRunner::shouldGeneratePixelResults):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebPermissions.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::captureTree):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::dump):
-        (TestShell::captureHistoryForWindow):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::captureHistoryForWindow):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2013-02-12  Jessie Berlin  <jberlin@apple.com>
-
-        Rollout r142618, it broke all the Mac builds.
-
-        * TestWebKitAPI/TestWebKitAPI.gypi:
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebCore/HeapGraphSerializerTest.cpp: Removed.
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-
-2013-02-12  Yury Semikhatsky  <yurys@chromium.org>
-
-        Unreviewed. Fix Chromium compilation after r142618.
-
-        * TestWebKitAPI/Tests/WebCore/HeapGraphSerializerTest.cpp:
-        (TestWebKitAPI::HeapGraphReceiver::printNode):
-
-2013-02-12  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Add an optional moduleset with hard to get packages (including libsecret)
-        https://bugs.webkit.org/show_bug.cgi?id=109195
-
-        Reviewed by Philippe Normand.
-
-        Add an optional moduleset that includes libsecret. This moduleset will
-        be used to install some annoyingly hard to obtain dependencies on older
-        distributions.
-
-        * gtk/jhbuild-optional.modules: Added.
-        * gtk/jhbuild.modules: Add a reference to the new moduleset file.
-
-2013-02-12  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Web Inspector: Native Memory Instrumentation: reportLeaf method doesn't report the leaf node properly.
-        https://bugs.webkit.org/show_bug.cgi?id=109554
-
-        In some cases leaves have no pointer. As example when we report a leaf via addPrivateBuffer.
-        This patch has new set of tests for HeapGraphSerializer.
-
-        Reviewed by Yury Semikhatsky.
-
-        * TestWebKitAPI/TestWebKitAPI.gypi:
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebCore/HeapGraphSerializerTest.cpp: Added.
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-
-2013-02-12  Zan Dobersek  <zdobersek@igalia.com>
-
-        Unreviewed followup to r142606, the EFL port also enables the CSS image-set
-        feature so the new configuration option's default value should reflect that.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2013-02-12  Zan Dobersek  <zdobersek@igalia.com>
-
-        [GTK] Enable CSS Variables feature in development builds
-        https://bugs.webkit.org/show_bug.cgi?id=109474
-
-        Reviewed by Martin Robinson.
-
-        * Scripts/webkitperl/FeatureList.pm: Enable the feature on development
-        builds of the GTK port.
-
-2013-02-12  Zan Dobersek  <zdobersek@igalia.com>
-
-        [GTK] Enable CSS image-set support in development builds
-        https://bugs.webkit.org/show_bug.cgi?id=109475
-
-        Reviewed by Martin Robinson.
-
-        * Scripts/webkitperl/FeatureList.pm: Add the configuration option for the feature.
-        Note that the Mac port also enables the feature but does so in Platform.h as the feature
-        is also enabled for the iOS port which can't at the moment be detected via webkitperl.
-
-2013-02-12  Zan Dobersek  <zdobersek@igalia.com>
-
-        [GTK] Enable DOM4 events constructors in development builds
-        https://bugs.webkit.org/show_bug.cgi?id=109471
-
-        Reviewed by Martin Robinson.
-
-        * Scripts/webkitperl/FeatureList.pm: Enable the feature for the GTK port as well.
-
-2013-02-12  Zan Dobersek  <zdobersek@igalia.com>
-
-        Remove unnecessary variables from FeatureList.pm
-        https://bugs.webkit.org/show_bug.cgi?id=109558
-
-        Reviewed by Daniel Bates.
-
-        A small cleanup, removing unused variables for which the related configuration
-        options were already removed.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2013-02-12  Zan Dobersek  <zdobersek@igalia.com>
-
-        Remove ENABLE_XHR_RESPONSE_BLOB handling from various build systems
-        https://bugs.webkit.org/show_bug.cgi?id=109481
-
-        Reviewed by Daniel Bates.
-
-        The ENABLE_XHR_RESPONSE_BLOB feature define was removed from the code
-        back in r120574. There are still occurrences of it in various build systems
-        which should all be removed as they are useless.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2013-02-12  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move webrtc mocks to testrunner library
-        https://bugs.webkit.org/show_bug.cgi?id=109041
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (WebKitSupportTestEnvironment):
-        (WebKitSupportTestEnvironment::mockPlatform):
-        (main):
-        * DumpRenderTree/chromium/MockWebKitPlatformSupport.cpp:
-        (MockWebKitPlatformSupport::setInterfaces):
-        (MockWebKitPlatformSupport::createMediaStreamCenter):
-        (MockWebKitPlatformSupport::createRTCPeerConnectionHandler):
-        * DumpRenderTree/chromium/MockWebKitPlatformSupport.h:
-        (WebTestRunner):
-        (MockWebKitPlatformSupport):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h:
-        (WebKit):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebKit):
-        (WebTestRunner):
-        (WebTestRunner::WebTestProxy::showContextMenu):
-        (WebTestRunner::WebTestProxy::userMediaClient):
-        * DumpRenderTree/chromium/TestRunner/src/MockConstraints.cpp: Renamed from Tools/DumpRenderTree/chromium/MockConstraints.cpp.
-        (WebTestRunner::MockConstraints::verifyConstraints):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/MockConstraints.h: Renamed from Tools/DumpRenderTree/chromium/MockConstraints.h.
-        (WebKit):
-        (WebTestRunner):
-        (MockConstraints):
-        * DumpRenderTree/chromium/TestRunner/src/MockWebMediaStreamCenter.cpp: Renamed from Tools/DumpRenderTree/chromium/MockWebMediaStreamCenter.cpp.
-        (WebTestRunner):
-        (WebTestRunner::MockWebMediaStreamCenter::MockWebMediaStreamCenter):
-        (WebTestRunner::MockWebMediaStreamCenter::queryMediaStreamSources):
-        (WebTestRunner::MockWebMediaStreamCenter::didEnableMediaStreamTrack):
-        (WebTestRunner::MockWebMediaStreamCenter::didDisableMediaStreamTrack):
-        (WebTestRunner::MockWebMediaStreamCenter::didAddMediaStreamTrack):
-        (WebTestRunner::MockWebMediaStreamCenter::didRemoveMediaStreamTrack):
-        (WebTestRunner::MockWebMediaStreamCenter::didStopLocalMediaStream):
-        (MockWebAudioDestinationConsumer):
-        (WebTestRunner::MockWebAudioDestinationConsumer::~MockWebAudioDestinationConsumer):
-        (WebTestRunner::MockWebMediaStreamCenter::didCreateMediaStream):
-        * DumpRenderTree/chromium/TestRunner/src/MockWebMediaStreamCenter.h: Renamed from Tools/DumpRenderTree/chromium/MockWebMediaStreamCenter.h.
-        (WebKit):
-        (WebTestRunner):
-        (MockWebMediaStreamCenter):
-        (WebTestRunner::MockWebMediaStreamCenter::MockWebMediaStreamCenter):
-        * DumpRenderTree/chromium/TestRunner/src/MockWebRTCDTMFSenderHandler.cpp: Renamed from Tools/DumpRenderTree/chromium/MockWebRTCDTMFSenderHandler.cpp.
-        (WebTestRunner):
-        (DTMFSenderToneTask):
-        (WebTestRunner::DTMFSenderToneTask::DTMFSenderToneTask):
-        (WebTestRunner::MockWebRTCDTMFSenderHandler::MockWebRTCDTMFSenderHandler):
-        (WebTestRunner::MockWebRTCDTMFSenderHandler::setClient):
-        (WebTestRunner::MockWebRTCDTMFSenderHandler::currentToneBuffer):
-        (WebTestRunner::MockWebRTCDTMFSenderHandler::canInsertDTMF):
-        (WebTestRunner::MockWebRTCDTMFSenderHandler::insertDTMF):
-        * DumpRenderTree/chromium/TestRunner/src/MockWebRTCDTMFSenderHandler.h: Renamed from Tools/DumpRenderTree/chromium/MockWebRTCDTMFSenderHandler.h.
-        (WebTestRunner):
-        (MockWebRTCDTMFSenderHandler):
-        (WebTestRunner::MockWebRTCDTMFSenderHandler::taskList):
-        (WebTestRunner::MockWebRTCDTMFSenderHandler::clearToneBuffer):
-        * DumpRenderTree/chromium/TestRunner/src/MockWebRTCDataChannelHandler.cpp: Renamed from Tools/DumpRenderTree/chromium/MockWebRTCDataChannelHandler.cpp.
-        (WebTestRunner):
-        (DataChannelReadyStateTask):
-        (WebTestRunner::DataChannelReadyStateTask::DataChannelReadyStateTask):
-        (WebTestRunner::MockWebRTCDataChannelHandler::MockWebRTCDataChannelHandler):
-        (WebTestRunner::MockWebRTCDataChannelHandler::setClient):
-        (WebTestRunner::MockWebRTCDataChannelHandler::bufferedAmount):
-        (WebTestRunner::MockWebRTCDataChannelHandler::sendStringData):
-        (WebTestRunner::MockWebRTCDataChannelHandler::sendRawData):
-        (WebTestRunner::MockWebRTCDataChannelHandler::close):
-        * DumpRenderTree/chromium/TestRunner/src/MockWebRTCDataChannelHandler.h: Renamed from Tools/DumpRenderTree/chromium/MockWebRTCDataChannelHandler.h.
-        (WebTestRunner):
-        (MockWebRTCDataChannelHandler):
-        (WebTestRunner::MockWebRTCDataChannelHandler::taskList):
-        * DumpRenderTree/chromium/TestRunner/src/MockWebRTCPeerConnectionHandler.cpp: Renamed from Tools/DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp.
-        (WebTestRunner):
-        (RTCSessionDescriptionRequestSuccededTask):
-        (WebTestRunner::RTCSessionDescriptionRequestSuccededTask::RTCSessionDescriptionRequestSuccededTask):
-        (RTCSessionDescriptionRequestFailedTask):
-        (WebTestRunner::RTCSessionDescriptionRequestFailedTask::RTCSessionDescriptionRequestFailedTask):
-        (RTCStatsRequestSucceededTask):
-        (WebTestRunner::RTCStatsRequestSucceededTask::RTCStatsRequestSucceededTask):
-        (RTCVoidRequestTask):
-        (WebTestRunner::RTCVoidRequestTask::RTCVoidRequestTask):
-        (RTCPeerConnectionStateTask):
-        (WebTestRunner::RTCPeerConnectionStateTask::RTCPeerConnectionStateTask):
-        (RemoteDataChannelTask):
-        (WebTestRunner::RemoteDataChannelTask::RemoteDataChannelTask):
-        (WebTestRunner::MockWebRTCPeerConnectionHandler::MockWebRTCPeerConnectionHandler):
-        (WebTestRunner::MockWebRTCPeerConnectionHandler::initialize):
-        (WebTestRunner::MockWebRTCPeerConnectionHandler::createOffer):
-        (WebTestRunner::MockWebRTCPeerConnectionHandler::createAnswer):
-        (WebTestRunner::MockWebRTCPeerConnectionHandler::setLocalDescription):
-        (WebTestRunner::MockWebRTCPeerConnectionHandler::setRemoteDescription):
-        (WebTestRunner::MockWebRTCPeerConnectionHandler::localDescription):
-        (WebTestRunner::MockWebRTCPeerConnectionHandler::remoteDescription):
-        (WebTestRunner::MockWebRTCPeerConnectionHandler::updateICE):
-        (WebTestRunner::MockWebRTCPeerConnectionHandler::addICECandidate):
-        (WebTestRunner::MockWebRTCPeerConnectionHandler::addStream):
-        (WebTestRunner::MockWebRTCPeerConnectionHandler::removeStream):
-        (WebTestRunner::MockWebRTCPeerConnectionHandler::getStats):
-        (WebTestRunner::MockWebRTCPeerConnectionHandler::createDataChannel):
-        (WebTestRunner::MockWebRTCPeerConnectionHandler::createDTMFSender):
-        (WebTestRunner::MockWebRTCPeerConnectionHandler::stop):
-        * DumpRenderTree/chromium/TestRunner/src/MockWebRTCPeerConnectionHandler.h: Renamed from Tools/DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.h.
-        (WebKit):
-        (WebTestRunner):
-        (MockWebRTCPeerConnectionHandler):
-        (WebTestRunner::MockWebRTCPeerConnectionHandler::taskList):
-        (WebTestRunner::MockWebRTCPeerConnectionHandler::MockWebRTCPeerConnectionHandler):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        (WebTestRunner::TestInterfaces::TestInterfaces):
-        (WebTestRunner::TestInterfaces::setDelegate):
-        (WebTestRunner::TestInterfaces::delegate):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.h:
-        (TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestRunner::WebTestInterfaces::createMediaStreamCenter):
-        (WebTestRunner):
-        (WebTestRunner::WebTestInterfaces::createWebRTCPeerConnectionHandler):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::userMediaClient):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebUserMediaClientMock.cpp: Renamed from Tools/DumpRenderTree/chromium/WebUserMediaClientMock.cpp.
-        (WebTestRunner):
-        (UserMediaRequestTask):
-        (WebTestRunner::UserMediaRequestTask::UserMediaRequestTask):
-        (MockExtraData):
-        (WebTestRunner::WebUserMediaClientMock::WebUserMediaClientMock):
-        (WebTestRunner::WebUserMediaClientMock::requestUserMedia):
-        (WebTestRunner::WebUserMediaClientMock::cancelUserMediaRequest):
-        * DumpRenderTree/chromium/TestRunner/src/WebUserMediaClientMock.h: Renamed from Tools/DumpRenderTree/chromium/WebUserMediaClientMock.h.
-        (WebTestRunner):
-        (WebUserMediaClientMock):
-        (WebTestRunner::WebUserMediaClientMock::~WebUserMediaClientMock):
-        (WebTestRunner::WebUserMediaClientMock::taskList):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::initialize):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-02-11  Timothy Loh  <timloh@chromium.com>
-
-        webkit-patch upload regenerates the WebCore ChangeLog every time it's called
-        https://bugs.webkit.org/show_bug.cgi?id=108983
-
-        Reviewed by Ryosuke Niwa.
-
-        This patch puts the behaviour from Bug 74358 behind the flag (default=OFF)
-        `--update-changelogs', and removes the flag `--no-prepare-changelogs'.
-        The flag name change from prepare to update is since we still want to
-        prepare changelogs in the default case when none currently exist.
-
-        * Scripts/webkitpy/tool/commands/commandtest.py:
-        (CommandsTest.assert_execute_outputs):
-        * Scripts/webkitpy/tool/steps/options.py:
-        (Options):
-        * Scripts/webkitpy/tool/steps/preparechangelog.py:
-        (PrepareChangeLog.options):
-        (PrepareChangeLog.run):
-
-2013-02-11  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move printPage() implementation to testRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=109436
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebTestRunner::WebTestProxy::showContextMenu):
-        (WebTestRunner::WebTestProxy::printPage):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner):
-        (WebTestRunner::WebTestProxyBase::printPage):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2013-02-11  James Robinson  <jamesr@chromium.org>
-
-        [Chromium] Get rid of WebAnimationController
-        https://bugs.webkit.org/show_bug.cgi?id=109235
-
-        Reviewed by Benjamin Poulain.
-
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-
-2013-02-11  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Disable delete button controller on non-Mac ports and delete EditorClient::shouldShowDeleteInterface
-        https://bugs.webkit.org/show_bug.cgi?id=109534
-
-        Reviewed by Anders Carlsson.
-
-        * DumpRenderTree/gtk/EditingCallbacks.cpp:
-        (shouldShowDeleteInterfaceForElement):
-
-2013-02-11  Nico Weber  <thakis@chromium.org>
-
-        Remove web intents code
-        https://bugs.webkit.org/show_bug.cgi?id=109501
-
-        Reviewed by Eric Seidel.
-
-        See thread "Removing ENABLE(WEB_INTENTS) code" on webkit-dev.
-
-        * DumpRenderTree/TestRunner.cpp:
-        (TestRunner::staticFunctions):
-        * DumpRenderTree/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebKit):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebKit):
-        (WebTestRunner::WebTestProxy::didEndEditing):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        * DumpRenderTree/gtk/TestRunnerGtk.cpp:
-        * DumpRenderTree/mac/TestRunnerMac.mm:
-        * DumpRenderTree/win/TestRunnerWin.cpp:
-        * DumpRenderTree/wx/TestRunnerWx.cpp:
-        * Scripts/webkitperl/FeatureList.pm:
-
-2013-02-11  Benjamin Poulain  <benjamin@webkit.org>
-
-        Kill TestRunner::setMinimumTimerInterval; implement the feature with InternalSettings
-        https://bugs.webkit.org/show_bug.cgi?id=109349
-
-        Reviewed by Sam Weinig.
-
-        Get rid of TestRunner's setMinimumTimerInterval and all the related functions.
-
-        This also fixes an oddity:
-        TestRunners were initialized with a minimum timer interval of 10 milliseconds instead
-        of using the default value. All with the same copy of an outdated comment.
-
-        * DumpRenderTree/TestRunner.cpp:
-        (TestRunner::staticFunctions):
-        * DumpRenderTree/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp:
-        * DumpRenderTree/chromium/TestRunner/public/WebPreferences.h:
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebPreferences.cpp:
-        (WebTestRunner::WebPreferences::reset):
-        (WebTestRunner::WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::reset):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/gtk/TestRunnerGtk.cpp:
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/mac/TestRunnerMac.mm:
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::resetSettings):
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunner):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/win/TestRunnerWin.cpp:
-        * DumpRenderTree/wx/TestRunnerWx.cpp:
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-
-2013-02-11  Dean Jackson  <dino@apple.com>
-
-        Remove use of plugInStartLabelImage
-        https://bugs.webkit.org/show_bug.cgi?id=108273
-
-        Reviewed by Simon Fraser.
-
-        Take two - after rollout in r142405.
-        Removed plugInStartLabelImage entry from client structure.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-
-2013-02-11  Tony Chang  <tony@chromium.org>
-
-        Move setFrameFlatteningEnabled from layoutTestController to window.internals.settings
-        https://bugs.webkit.org/show_bug.cgi?id=87149
-
-        Reviewed by Simon Fraser.
-
-        Remove testRunner.setFrameFlatteningEnabled from DRT and WTR. WebKit API
-        methods are left because there may be users of it. Add a test for Apple Mac
-        to ensure that the API for the preference still works using overridePreference.
-
-        * DumpRenderTree/TestRunner.cpp:
-        (TestRunner::staticFunctions):
-        * DumpRenderTree/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/blackberry/DumpRenderTree.cpp:
-        (BlackBerry::WebKit::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        * DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp:
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/gtk/TestRunnerGtk.cpp:
-        * DumpRenderTree/mac/TestRunnerMac.mm:
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::resetSettings):
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunner):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/win/TestRunnerWin.cpp:
-        * DumpRenderTree/wx/TestRunnerWx.cpp:
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-
-2013-02-11  Roger Fong  <roger_fong@apple.com>
-
-        Unreviewed. Windows 7 Debug mode build fix.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-
-2013-02-11  Tiancheng Jiang  <tijiang@rim.com>
-
-        [BlackBerry] Set mouse document position for mouse event in DRT.
-        https://bugs.webkit.org/show_bug.cgi?id=109094.
-
-        Reviewed by Rob Buis.
-
-        RIM PR 246976.
-        Internally Reviewed by Nima Ghanavatian & Genevieve Mak.
-
-        Set mouse document position when we create mouse event in DRT.
-
-        * DumpRenderTree/blackberry/EventSender.cpp:
-        (setMouseEventDocumentPos):
-        (mouseDownCallback):
-        (mouseUpCallback):
-        (mouseMoveToCallback):
-
-2013-02-11  Mike Lattanzio  <mlattanzio@rim.com>
-
-        [BlackBerry] Add graphics subdirectory to include path.
-        https://bugs.webkit.org/show_bug.cgi?id=109437
-
-        Reviewed by Rob Buis.
-
-        Add browser/platform/graphics to include path.
-
-        Internal review by Jeff Rogers.
-
-        * Scripts/webkitdirs.pm:
-        (blackberryCMakeArguments):
-
-2013-02-11  Christophe Dumez  <ch.dumez@sisa.samsung.com>
-
-        [EFL][WKTR] Regression(r141836) fast/dom/Window/mozilla-focus-blur.html started failing
-        https://bugs.webkit.org/show_bug.cgi?id=109438
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Some refactoring in r141836 caused the view not to get focus if the focused
-        frame is not the main one. The idea of the code was to remove focus from the
-        view if the focused frame was not the main one, and then focus the view again.
-        However, after the refactoring, the second step never happened: Focus was
-        removed but not given again.
-
-        * WebKitTestRunner/efl/PlatformWebViewEfl.cpp:
-        (WTR::PlatformWebView::focus):
-
-2013-02-11  Zan Dobersek  <zdobersek@igalia.com>
-
-        [GTK] Don't generate documentation if building neither WebKit1 nor WebKit2
-        https://bugs.webkit.org/show_bug.cgi?id=109420
-
-        Reviewed by Philippe Normand.
-
-        Don't generate the GTK documentation if neither of the WebKit1 and WebKit2
-        layers was built. This just results in unnecessary errors being spewed out
-        by the gtkdoc utilities.
-
-        * Scripts/webkitdirs.pm:
-        (buildAutotoolsProject):
-
-2013-02-11  Antoine Quint  <graouts@apple.com>
-
-        Unreviewed change to add myself to the Inspector IDLs watchlist.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2013-02-11  Krzysztof Czech  <k.czech@samsung.com>
-
-        [GTK][EFL] Shares WebKit-GTK's DumpRenderTree accessibility implementation with other Webkit ports
-        https://bugs.webkit.org/show_bug.cgi?id=105007
-
-        Reviewed by Martin Robinson.
-
-        Shares specific ATK's accessibility implementation.
-        Keeps platform specific methods in EFL and GTK's directories.
-
-        * DumpRenderTree/atk/AccessibilityCallbacks.h: Renamed from Tools/DumpRenderTree/gtk/AccessibilityCallbacks.h.
-        * DumpRenderTree/atk/AccessibilityCallbacksAtk.cpp: Renamed from Tools/DumpRenderTree/gtk/AccessibilityCallbacks.cpp.
-        (printAccessibilityEvent):
-        (axObjectEventListener):
-        (connectAccessibilityCallbacks):
-        (disconnectAccessibilityCallbacks):
-        * DumpRenderTree/atk/AccessibilityControllerAtk.cpp: Copied from Tools/DumpRenderTree/gtk/AccessibilityControllerGtk.cpp.
-        (AccessibilityController::AccessibilityController):
-        (AccessibilityController::~AccessibilityController):
-        (AccessibilityController::elementAtPoint):
-        (AccessibilityController::setLogFocusEvents):
-        (AccessibilityController::setLogScrollingStartEvents):
-        (AccessibilityController::setLogValueChangeEvents):
-        (AccessibilityController::setLogAccessibilityEvents):
-        (AccessibilityController::addNotificationListener):
-        (AccessibilityController::removeNotificationListener):
-        * DumpRenderTree/atk/AccessibilityUIElementAtk.cpp: Copied from Tools/DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp.
-        (coreAttributeToAtkAttribute):
-        (roleToString):
-        (replaceCharactersForResults):
-        (AccessibilityUIElement::AccessibilityUIElement):
-        (AccessibilityUIElement::~AccessibilityUIElement):
-        (AccessibilityUIElement::getLinkedUIElements):
-        (AccessibilityUIElement::getDocumentLinks):
-        (AccessibilityUIElement::getChildren):
-        (AccessibilityUIElement::getChildrenWithRange):
-        (AccessibilityUIElement::rowCount):
-        (AccessibilityUIElement::columnCount):
-        (AccessibilityUIElement::childrenCount):
-        (AccessibilityUIElement::elementAtPoint):
-        (AccessibilityUIElement::linkedUIElementAtIndex):
-        (AccessibilityUIElement::getChildAtIndex):
-        (AccessibilityUIElement::indexOfChild):
-        (attributeSetToString):
-        (AccessibilityUIElement::allAttributes):
-        (AccessibilityUIElement::attributesOfLinkedUIElements):
-        (AccessibilityUIElement::attributesOfDocumentLinks):
-        (AccessibilityUIElement::titleUIElement):
-        (AccessibilityUIElement::parentElement):
-        (AccessibilityUIElement::attributesOfChildren):
-        (AccessibilityUIElement::parameterizedAttributeNames):
-        (AccessibilityUIElement::role):
-        (AccessibilityUIElement::subrole):
-        (AccessibilityUIElement::roleDescription):
-        (AccessibilityUIElement::title):
-        (AccessibilityUIElement::description):
-        (AccessibilityUIElement::stringValue):
-        (AccessibilityUIElement::language):
-        (AccessibilityUIElement::x):
-        (AccessibilityUIElement::y):
-        (AccessibilityUIElement::width):
-        (AccessibilityUIElement::height):
-        (AccessibilityUIElement::clickPointX):
-        (AccessibilityUIElement::clickPointY):
-        (AccessibilityUIElement::orientation):
-        (AccessibilityUIElement::intValue):
-        (AccessibilityUIElement::minValue):
-        (AccessibilityUIElement::maxValue):
-        (AccessibilityUIElement::valueDescription):
-        (checkElementState):
-        (AccessibilityUIElement::isEnabled):
-        (AccessibilityUIElement::insertionPointLineNumber):
-        (AccessibilityUIElement::isPressActionSupported):
-        (AccessibilityUIElement::isIncrementActionSupported):
-        (AccessibilityUIElement::isDecrementActionSupported):
-        (AccessibilityUIElement::isRequired):
-        (AccessibilityUIElement::isFocused):
-        (AccessibilityUIElement::isSelected):
-        (AccessibilityUIElement::hierarchicalLevel):
-        (AccessibilityUIElement::ariaIsGrabbed):
-        (AccessibilityUIElement::ariaDropEffects):
-        (AccessibilityUIElement::isExpanded):
-        (AccessibilityUIElement::isChecked):
-        (AccessibilityUIElement::attributesOfColumnHeaders):
-        (AccessibilityUIElement::attributesOfRowHeaders):
-        (AccessibilityUIElement::attributesOfColumns):
-        (AccessibilityUIElement::attributesOfRows):
-        (AccessibilityUIElement::attributesOfVisibleCells):
-        (AccessibilityUIElement::attributesOfHeader):
-        (AccessibilityUIElement::indexInTable):
-        (indexRangeInTable):
-        (AccessibilityUIElement::rowIndexRange):
-        (AccessibilityUIElement::columnIndexRange):
-        (AccessibilityUIElement::lineForIndex):
-        (AccessibilityUIElement::boundsForRange):
-        (AccessibilityUIElement::stringForRange):
-        (AccessibilityUIElement::attributedStringForRange):
-        (AccessibilityUIElement::attributedStringRangeIsMisspelled):
-        (AccessibilityUIElement::uiElementForSearchPredicate):
-        (AccessibilityUIElement::cellForColumnAndRow):
-        (AccessibilityUIElement::selectedTextRange):
-        (AccessibilityUIElement::setSelectedTextRange):
-        (AccessibilityUIElement::stringAttributeValue):
-        (AccessibilityUIElement::numberAttributeValue):
-        (AccessibilityUIElement::boolAttributeValue):
-        (AccessibilityUIElement::isAttributeSettable):
-        (AccessibilityUIElement::isAttributeSupported):
-        (alterCurrentValue):
-        (AccessibilityUIElement::increment):
-        (AccessibilityUIElement::decrement):
-        (AccessibilityUIElement::press):
-        (AccessibilityUIElement::showMenu):
-        (AccessibilityUIElement::disclosedRowAtIndex):
-        (AccessibilityUIElement::ariaOwnsElementAtIndex):
-        (AccessibilityUIElement::ariaFlowToElementAtIndex):
-        (AccessibilityUIElement::selectedRowAtIndex):
-        (AccessibilityUIElement::rowAtIndex):
-        (AccessibilityUIElement::disclosedByRow):
-        (AccessibilityUIElement::accessibilityValue):
-        (AccessibilityUIElement::documentEncoding):
-        (AccessibilityUIElement::documentURI):
-        (AccessibilityUIElement::url):
-        (AccessibilityUIElement::addNotificationListener):
-        (AccessibilityUIElement::removeNotificationListener):
-        (AccessibilityUIElement::isFocusable):
-        (AccessibilityUIElement::isSelectable):
-        (AccessibilityUIElement::isMultiSelectable):
-        (AccessibilityUIElement::isSelectedOptionActive):
-        (AccessibilityUIElement::isVisible):
-        (AccessibilityUIElement::isOffScreen):
-        (AccessibilityUIElement::isCollapsed):
-        (AccessibilityUIElement::isIgnored):
-        (AccessibilityUIElement::hasPopup):
-        (AccessibilityUIElement::takeFocus):
-        (AccessibilityUIElement::takeSelection):
-        (AccessibilityUIElement::addSelection):
-        (AccessibilityUIElement::removeSelection):
-        (AccessibilityUIElement::scrollToMakeVisible):
-        (AccessibilityUIElement::scrollToMakeVisibleWithSubFocus):
-        (AccessibilityUIElement::scrollToGlobalPoint):
-        * DumpRenderTree/efl/CMakeLists.txt: Adds ATK headers, libraries, new sources.
-        * DumpRenderTree/gtk/AccessibilityControllerGtk.cpp:
-        (AccessibilityController::focusedElement):
-        (AccessibilityController::rootElement):
-        (AccessibilityController::accessibleElementById):
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::helpText):
-        * GNUmakefile.am: Adds renamed sources.
-
-2013-02-11  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] clear the webcache from within the TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=109405
-
-        Reviewed by Kentaro Hara.
-
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        (WebTestRunner::TestInterfaces::resetAll):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetTestController):
-
-2013-02-11  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] add a destructor to EventSender
-        https://bugs.webkit.org/show_bug.cgi?id=109401
-
-        Reviewed by Kentaro Hara.
-
-        Otherwise, the compiler will automatically generate a destructor, for
-        which we need to unnecessarily include WebContextMenuData.h in the
-        header.
-
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::~EventSender):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.h:
-        (WebKit):
-        (EventSender):
-
-2013-02-10  Tim Horton  <timothy_horton@apple.com>
-
-        Unreviewed attempted build fix for Gtk after r142412
-
-        * WebKitTestRunner/gtk/PlatformWebViewGtk.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-
-2013-02-10  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r142413.
-        http://trac.webkit.org/changeset/142413
-        https://bugs.webkit.org/show_bug.cgi?id=109383
-
-        didn't fix the gtk build (Requested by thorton on #webkit).
-
-        * WebKitTestRunner/gtk/PlatformWebViewGtk.cpp:
-
-2013-02-10  Tim Horton  <timothy_horton@apple.com>
-
-        Unreviewed attempted build fix for Gtk after r142412
-        * WebKitTestRunner/gtk/PlatformWebViewGtk.cpp:
-
-2013-02-10  Tim Horton  <timothy_horton@apple.com>
-
-        WKTR should propagate view creation options to opened windows
-        https://bugs.webkit.org/show_bug.cgi?id=109381
-
-        Reviewed by Simon Fraser.
-
-        * WebKitTestRunner/PlatformWebView.h:
-        (WTR::PlatformWebView::options):
-        Add storage and a getter for PlatformWebView's creation options dictionary.
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::createOtherPage):
-        Propagate creation options from parent to child PlatformWebView when creating subwindows.
-        * WebKitTestRunner/efl/PlatformWebViewEfl.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-        * WebKitTestRunner/gtk/PlatformWebViewGtk.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (WTR::PlatformWebView::PlatformWebView):
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-        Store creation options on the PlatformWebView.
-
-2013-02-10  Kent Tamura  <tkent@chromium.org>
-
-        Unreviewed, rolling out r142347.
-        http://trac.webkit.org/changeset/142347
-        https://bugs.webkit.org/show_bug.cgi?id=108273
-
-        Because a depending change r142343 was rolled out.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-
-2013-02-10  Kent Tamura  <tkent@chromium.org>
-
-        [Chromium] Build fix for r142371
-        https://bugs.webkit.org/show_bug.cgi?id=109313
-
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.h:
-        (WebKit):
-
-2013-02-10  Zan Dobersek  <zdobersek@igalia.com>
-
-        gtkdoc-scangobj throwing warnings when using Clang, causes generate-gtkdoc to fail
-        https://bugs.webkit.org/show_bug.cgi?id=109315
-
-        Reviewed by Philippe Normand.
-
-        * GNUmakefile.am: Define the CC environment variable to the CC compiler that the whole
-        project was configured to use. This ensures both the regular build and the gtkdoc-scangobj
-        program use the same compiler.
-        * gtk/generate-gtkdoc: Add '-Qunused-arguments' to the CFLAGS in case we're using Clang. This
-        forces Clang to suppress unused arguments warnings that can unnecessarily cause generate-gtkdoc
-        script to fail.
-
-2013-02-09  David Farler  <dfarler@apple.com>
-
-        Make TestWebKitAPI work for iOS
-        https://bugs.webkit.org/show_bug.cgi?id=108978
-
-        Reviewed by Joseph Pecoraro.
-
-        * TestWebKitAPI/Configurations/Base.xcconfig:
-        Added back FRAMEWORK_SEARCH_PATHS for Lion builds.
-
-2013-02-09  David Farler  <dfarler@apple.com>
-
-        Make TestWebKitAPI work for iOS
-        https://bugs.webkit.org/show_bug.cgi?id=108978
-
-        Reviewed by David Kilzer.
-
-        * Makefile: Added TestWebKitAPI to iOS MODULES list.
-        * TestWebKitAPI/Configurations/Base.xcconfig:
-        - Include FeatureDefines
-        - Removed VALID_ARCHS
-        - Removed FRAMEWORK_SEARCH_PATHS - allows building against other SDKs
-        - Excluded source files per platform
-        * TestWebKitAPI/Configurations/TestWebKitAPI.xcconfig:
-        - framework and library switches per platform
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        - Remove explicit framework and library linking (moved to xcconfigs)
-        - Added iOS main.mm
-        * TestWebKitAPI/config.h:
-        - Guard importing Cocoa.h and WebKit2_C.h on iOS
-        * TestWebKitAPI/ios/mainIOS.mm: Copied from Tools/TestWebKitAPI/mac/main.mm.
-        * TestWebKitAPI/mac/mainMac.mm: Renamed from Tools/TestWebKitAPI/mac/main.mm.
-
-2013-02-09  Justin Schuh  <jschuh@chromium.org>
-
-        [CHROMIUM] Suppress c4267 build warnings for Win64 tests
-        https://bugs.webkit.org/show_bug.cgi?id=109359
-
-        Reviewed by Abhishek Arya.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2013-02-09  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Add a link to EFL perf bot on build.webkit.org
-        https://bugs.webkit.org/show_bug.cgi?id=109342
-
-        Reviewed by Gyuyoung Kim.
-
-        Added.
-
-        * BuildSlaveSupport/build.webkit.org-config/templates/root.html:
-
-2013-02-09  Christophe Dumez  <ch.dumez@sisa.samsung.com>
-
-        Unreviewed. Update my IRC nickname in committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-09  David Farler  <dfarler@apple.com>
-
-        build-webkit: document sdk, debug, release, device, and simulator options
-        https://bugs.webkit.org/show_bug.cgi?id=109221
-
-        Reviewed by David Kilzer.
-
-        * Scripts/build-webkit: Add options to usage
-        * Scripts/webkitdirs.pm: Remove --deploy and --devel checks
-
-2013-02-09  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move context menu data tracking to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=109313
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebKit):
-        (WebTestDelegate):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebKit):
-        (WebTestRunner::WebTestProxy::showContextMenu):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::setContextMenuData):
-        (WebTestRunner::EventSender::contextClick):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.h:
-        (WebKit):
-        (EventSender):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::showContextMenu):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::showContextMenu):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-02-09  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move methods that change initial testRunner state to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=109043
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h:
-        (WebKit):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestRunner.h:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        (WebTestRunner::TestInterfaces::configureForTestWithURL):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.h:
-        (WebKit):
-        (TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::showDevTools):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::showWebInspector):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestRunner::WebTestInterfaces::configureForTestWithURL):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::runFileTest):
-
-2013-02-09  Nico Weber  <thakis@chromium.org>
-
-        Add myself as a reviewer. (Yay!!!!!)
-        https://bugs.webkit.org/show_bug.cgi?id=109110
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-08  Benjamin Poulain  <bpoulain@apple.com>
-
-        Move workerThreadCount from TestRunner to WebCore Internals
-        https://bugs.webkit.org/show_bug.cgi?id=109239
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/TestRunner.cpp:
-        (TestRunner::staticValues):
-        * DumpRenderTree/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        * DumpRenderTree/gtk/TestRunnerGtk.cpp:
-        * DumpRenderTree/mac/TestRunnerMac.mm:
-        (TestRunner::webHistoryItemCount):
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunner):
-        * DumpRenderTree/win/TestRunnerWin.cpp:
-        * DumpRenderTree/wx/TestRunnerWx.cpp:
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-
-2013-02-08  Dean Jackson  <dino@apple.com>
-
-        Remove use of plugInStartLabelImage
-        https://bugs.webkit.org/show_bug.cgi?id=108273
-
-        Reviewed by Simon Fraser.
-
-        Removed plugInStartLabelImage entry from client structure.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-
-2013-02-07  Timothy Hatcher  <timothy@apple.com>
-
-        Fix the WebInspectorAPI watch list.
-
-        Reviewed by Joseph Pecoraro.
-
-        * Scripts/webkitpy/common/config/watchlist: Fix the regrexs.
-        Added InjectedScriptSource.js and Console.idl.
-
-2013-02-08  Roger Fong  <roger_fong@apple.com>
-
-        DumpRenderTree, ImageDiff and TestNetscapePlugin projects, property sheets and resources for VS2010 solution.
-        https://bugs.webkit.org/show_bug.cgi?id=107034.
-
-        Reviewed by Brent Fulgham.
-
-        * DumpRenderTree/DumpRenderTree.vcxproj: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTree.vcxproj: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTree.vcxproj.filters: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeApple.props: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeCommon.props: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeDebug.props: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncher.vcxproj: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncherCommon.props: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncherDebug.props: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncherRelease.props: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreePostBuild.cmd: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreePreBuild.cmd: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeRelease.props: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiff.vcxproj: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffCommon.props: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffDebug.props: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncher.vcxproj: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncherCommon.props: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncherDebug.props: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncherRelease.props: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffPostBuild.cmd: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffPreBuild.cmd: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffRelease.props: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePlugin.def: Copied from DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.def.
-        * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePlugin.rc: Copied from DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.rc.
-        * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePlugin.vcxproj: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePlugin.vcxproj.filters: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginCommon.props: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginDebug.props: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginPostBuild.cmd: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginPreBuild.cmd: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginRelease.props: Added.
-        * DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/resource.h: Copied from DumpRenderTree/TestNetscapePlugIn/win/resource.h.
-        * DumpRenderTree/TestNetscapePlugIn/Tests/win/CallJSThatDestroysPlugin.cpp: Copied from DumpRenderTree/TestNetscapePlugIn/win/CallJSThatDestroysPlugin.cpp.
-        * DumpRenderTree/TestNetscapePlugIn/win/CallJSThatDestroysPlugin.cpp: Removed.
-
-2013-02-08  Harald Alvestrand  <hta@google.com>
-
-        Fix and test for missing return
-
-        RTCPeerConnection.getStats() fails when remote stats are instantiated.
-        https://bugs.webkit.org/show_bug.cgi?id=109292
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (MockWebRTCPeerConnectionHandler::getStats):
-
-2013-02-08  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: Removing the deprecated WebMediaStreamDescriptor and WebMediaStreamComponent shims
-        https://bugs.webkit.org/show_bug.cgi?id=109296
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/MockWebRTCDTMFSenderHandler.cpp:
-        (MockWebRTCDTMFSenderHandler::MockWebRTCDTMFSenderHandler):
-        * DumpRenderTree/chromium/MockWebRTCDTMFSenderHandler.h:
-        (MockWebRTCDTMFSenderHandler):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (MockWebRTCPeerConnectionHandler::createDTMFSender):
-
-2013-02-08  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
-
-        Update my entries in the watchlist
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2013-02-08  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] copy normalizeLayoutTestURL code to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=109269
-
-        Reviewed by Kent Tamura.
-
-        The method doesn't have any external dependencies, so there's no reason
-        it should be on the delegate. It's still required by TestShell, however,
-        by making a copy, we can avoid implementing this in content shell.
-
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestDelegate):
-        * DumpRenderTree/chromium/TestRunner/src/WebPermissions.cpp:
-        (WebTestRunner::WebPermissions::allowImage):
-        (WebTestRunner::WebPermissions::allowScriptFromSource):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::windowCount):
-        * DumpRenderTree/chromium/TestShell.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-02-08  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [EFL] Make the Performance bot also build WebKit.
-        https://bugs.webkit.org/show_bug.cgi?id=109273
-
-        Reviewed by Philippe Normand.
-
-        There has not been much benefit in fetching binaries compiled by
-        another bot; it makes the build bot take 6 to 7 minutes to upload
-        the binaries to build.webkit.org, we need to manually override
-        LD_LIBRARY_PATH to find the compiled libraries and still have
-        other path-related problems.
-
-        Since we have enough horsepower in the perf bot, let's experiment
-        with building WebKit there instead.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2013-02-07  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] turn TestRunner library into a component build
-        https://bugs.webkit.org/show_bug.cgi?id=108466
-
-        Reviewed by Adam Barth.
-
-        To achieve this, we need to drop all dependencies on WTF.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/public/WebPreferences.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTask.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestCommon.h: Copied from Tools/DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h.
-        * DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.cpp:
-        (WebTestRunner::AccessibilityUIElement::AccessibilityUIElement):
-        (WebTestRunner::AccessibilityUIElementList::getOrCreate):
-        (WebTestRunner::AccessibilityUIElementList::createRoot):
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.h:
-        (AccessibilityUIElementList):
-        * DumpRenderTree/chromium/TestRunner/src/CppBoundClass.cpp:
-        (WebTestRunner::CppBoundClass::~CppBoundClass):
-        (WebTestRunner::CppBoundClass::invoke):
-        (WebTestRunner::CppBoundClass::getProperty):
-        (WebTestRunner::CppBoundClass::setProperty):
-        (WebTestRunner::CppBoundClass::bindCallback):
-        (WebTestRunner::CppBoundClass::bindGetterCallback):
-        (WebTestRunner::CppBoundClass::bindProperty):
-        (WebTestRunner::CppBoundClass::getAsCppVariant):
-        * DumpRenderTree/chromium/TestRunner/src/CppBoundClass.h:
-        (WebTestRunner):
-        (CppBoundClass):
-        (WebTestRunner::CppBoundClass::bindProperty):
-        (WebTestRunner::CppBoundClass::bindFallbackCallback):
-        (WebTestRunner::CppBoundClass::bindFallbackMethod):
-        * DumpRenderTree/chromium/TestRunner/src/CppVariant.cpp:
-        (WebTestRunner::CppVariant::toString):
-        (WebTestRunner::CppVariant::toInt32):
-        (WebTestRunner::CppVariant::toDouble):
-        (WebTestRunner::CppVariant::toBoolean):
-        (WebTestRunner::CppVariant::toStringVector):
-        (WebTestRunner::CppVariant::invoke):
-        (WebTestRunner::CppVariant::invokeDefault):
-        * DumpRenderTree/chromium/TestRunner/src/CppVariant.h:
-        (CppVariant):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::EventSender):
-        (WebTestRunner::EventSender::reset):
-        (WebTestRunner::EventSender::mouseDown):
-        (WebTestRunner::EventSender::mouseUp):
-        (WebTestRunner::EventSender::mouseMoveTo):
-        (WebTestRunner::EventSender::keyDown):
-        (WebTestRunner::EventSender::dispatchMessage):
-        (WebTestRunner::EventSender::leapForward):
-        (WebTestRunner::EventSender::replaySavedEvents):
-        (WebTestRunner::makeMenuItemStringsFor):
-        (WebTestRunner::EventSender::contextClick):
-        (WebTestRunner::EventSender::beginDragWithFiles):
-        (WebTestRunner::EventSender::addTouchPoint):
-        (WebTestRunner::EventSender::releaseTouchPoint):
-        (WebTestRunner::EventSender::updateTouchPoint):
-        (WebTestRunner::EventSender::cancelTouchPoint):
-        (WebTestRunner::EventSender::sendCurrentTouchEvent):
-        (WebTestRunner::EventSender::gestureEvent):
-        * DumpRenderTree/chromium/TestRunner/src/KeyCodeMapping.cpp:
-        (WebTestRunner::NativeKeyCodeForWindowsKeyCode):
-        * DumpRenderTree/chromium/TestRunner/src/MockGrammarCheck.cpp:
-        (WebTestRunner::MockGrammarCheck::checkGrammarOfString):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/MockGrammarCheck.h:
-        (WebTestRunner):
-        (MockGrammarCheck):
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.cpp:
-        (WebTestRunner::MockSpellCheck::spellCheckWord):
-        (WebTestRunner::MockSpellCheck::initializeIfNeeded):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.h:
-        (MockSpellCheck):
-        * DumpRenderTree/chromium/TestRunner/src/SpellCheckClient.cpp:
-        (WebTestRunner::SpellCheckClient::checkTextOfParagraph):
-        (WebTestRunner::SpellCheckClient::finishLastTextCheck):
-        * DumpRenderTree/chromium/TestRunner/src/TestCommon.h: Copied from Tools/DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h.
-        (isASCIIAlpha):
-        (isNotASCIIAlpha):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        (WebTestRunner::TestInterfaces::TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.h:
-        (TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/TestPlugin.cpp:
-        (WebTestRunner::TestPlugin::TestPlugin):
-        (WebTestRunner::TestPlugin::initialize):
-        (WebTestRunner::TestPlugin::destroy):
-        (WebTestRunner::TestPlugin::parsePrimitive):
-        (WebTestRunner::TestPlugin::parseColor):
-        (WebTestRunner::TestPlugin::initProgram):
-        (WebTestRunner::TestPlugin::initPrimitive):
-        (WebTestRunner::TestPlugin::drawPrimitive):
-        (WebTestRunner::TestPlugin::loadShader):
-        (WebTestRunner::TestPlugin::loadProgram):
-        (WebTestRunner::TestPlugin::handleDragStatusUpdate):
-        * DumpRenderTree/chromium/TestRunner/src/TestPlugin.h:
-        (TestPlugin):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::WorkQueue::processWorkSoon):
-        (WebTestRunner::TestRunner::WorkQueue::processWork):
-        (WebTestRunner::TestRunner::WorkQueue::reset):
-        (WebTestRunner::TestRunner::WorkQueue::addWork):
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::policyDelegateDone):
-        (WebTestRunner::TestRunner::findString):
-        (WebTestRunner::TestRunner::setTextSubpixelPositioning):
-        (WebTestRunner::TestRunner::overridePreference):
-        (WebTestRunner::TestRunner::deliverWebIntent):
-        (WebTestRunner::TestRunner::setBackingScaleFactor):
-        (WebTestRunner::TestRunner::simulateLegacyWebNotificationClick):
-        (WebTestRunner::TestRunner::setMockSpeechInputDumpRect):
-        (WebTestRunner::TestRunner::wasMockSpeechRecognitionAborted):
-        (WebTestRunner::TestRunner::setPointerLockWillFailSynchronously):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (WebTestRunner::TestRunner::WorkQueue::isEmpty):
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TextInputController.cpp:
-        (WebTestRunner::TextInputController::markedRange):
-        (WebTestRunner::TextInputController::selectedRange):
-        (WebTestRunner::TextInputController::firstRectForCharacterRange):
-        * DumpRenderTree/chromium/TestRunner/src/WebPreferences.cpp:
-        (WebTestRunner::WebPreferences::reset):
-        * DumpRenderTree/chromium/TestRunner/src/WebTask.cpp:
-        (WebTestRunner::WebTaskList::~WebTaskList):
-        (WebTestRunner::WebTaskList::registerTask):
-        (WebTestRunner::WebTaskList::unregisterTask):
-        (WebTestRunner::WebTaskList::revokeAll):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestRunner::WebTestInterfaces::WebTestInterfaces):
-        (WebTestRunner::WebTestInterfaces::~WebTestInterfaces):
-        (WebTestRunner::WebTestInterfaces::testInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::~WebTestProxyBase):
-        (WebTestRunner::WebTestProxyBase::spellCheckClient):
-        (WebTestRunner::WebTestProxyBase::registerIntentService):
-        (WebTestRunner::WebTestProxyBase::dispatchIntent):
-        (WebTestRunner::WebTestProxyBase::assignIdentifierToRequest):
-        * DumpRenderTree/chromium/TestRunner/src/config.h: Copied from Tools/DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h.
-
-2013-02-07  Zan Dobersek  <zdobersek@igalia.com>
-
-        Unreviewed followup to r142232.
-
-        Work around a bug in jhbuild that was incorrectly composing the source
-        package URL by adjusting slightly the repository and module paths.
-
-        * gtk/jhbuild.modules:
-
-2013-02-07  Zan Dobersek  <zdobersek@igalia.com>
-
-        Use a mirror for the sourceware.org repo used in jhbuild
-
-        Unreviewed.
-
-        The ftp://sourceware.org site is down, causing errors when running jhbuild
-        and subsequently failing complete builds on the builders. Use the mirrors.kernel.org
-        mirror to get sources for the desired libffi dependency.
-
-        * gtk/jhbuild.modules:
-
-2013-02-07  David Farler  <dfarler@apple.com>
-
-        Makefiles should work for arbitrary SDKs and architectures on Apple ports
-        https://bugs.webkit.org/show_bug.cgi?id=107863
-
-        Reviewed by Mark Rowe.
-
-        * DumpRenderTree/Makefile: SDKROOT=iphone* => -target All-iOS
-        * Makefile: Only build some projects for iOS
-
-2013-02-07  Roger Fong  <roger_fong@apple.com>
-
-        Unreviewed. Another temporary EWS bot fix. It'll totally work this time.
-
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        (RunTests.run):
-
-2013-02-07  Roger Fong  <roger_fong@apple.com>
-
-        Unreviewed. Fix syntax error in runtests.py.
-
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        (RunTests.run):
-
-2013-02-07  Roger Fong  <roger_fong@apple.com>
-
-        Temporary fix for Win EWS bots.
-        Don't build DRT since it has already been built in the build step.
-
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        (RunTests.run):
-
-2013-02-07  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Cleanup command-line defines
-        https://bugs.webkit.org/show_bug.cgi?id=109213
-
-        Reviewed by Xan Lopez.
-
-        * TestWebKitAPI/config.h: Include the autotoolsconfig.h header to pick
-        up defines from autoconf.
-
-2013-02-07  Ryosuke Niwa  <rniwa@webkit.org>
-
-        git.svn_revision doesn't fetch the same revision as svn.svn_revision
-        https://bugs.webkit.org/show_bug.cgi?id=108684
-
-        Reviewed by Dirk Pranke.
-
-        Always call git log on the checkout root.
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        (Git.svn_revision):
-
-2013-02-07  Roger Fong  <roger_fong@apple.com>
-
-        Unreviewed. Patch for testing Win EWS bots.
-
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        (RunTests.run):
-
-2013-02-07  Gavin Peters  <gavinp@chromium.org>
-
-        Unreviewed, rolling out r142165.
-        http://trac.webkit.org/changeset/142165
-        https://bugs.webkit.org/show_bug.cgi?id=108466
-
-        Broke linux_aura builds.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/public/WebPreferences.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTask.h:
-        (WebTaskList):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestCommon.h: Removed.
-        * DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h:
-        (WebTestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebTestProxyBase):
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.cpp:
-        (WebTestRunner::AccessibilityUIElement::AccessibilityUIElement):
-        (WebTestRunner::AccessibilityUIElementList::getOrCreate):
-        (WebTestRunner::AccessibilityUIElementList::createRoot):
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.h:
-        (AccessibilityUIElementList):
-        * DumpRenderTree/chromium/TestRunner/src/CppBoundClass.cpp:
-        (WebTestRunner::CppBoundClass::~CppBoundClass):
-        (WebTestRunner::CppBoundClass::invoke):
-        (WebTestRunner::CppBoundClass::getProperty):
-        (WebTestRunner::CppBoundClass::setProperty):
-        (WebTestRunner::CppBoundClass::bindCallback):
-        (WebTestRunner::CppBoundClass::bindGetterCallback):
-        (WebTestRunner::CppBoundClass::bindProperty):
-        (WebTestRunner::CppBoundClass::getAsCppVariant):
-        * DumpRenderTree/chromium/TestRunner/src/CppBoundClass.h:
-        (WebTestRunner):
-        (CppBoundClass):
-        (WebTestRunner::CppBoundClass::bindProperty):
-        (WebTestRunner::CppBoundClass::bindFallbackCallback):
-        (WebTestRunner::CppBoundClass::bindFallbackMethod):
-        * DumpRenderTree/chromium/TestRunner/src/CppVariant.cpp:
-        (WebTestRunner::CppVariant::toString):
-        (WebTestRunner::CppVariant::toInt32):
-        (WebTestRunner::CppVariant::toDouble):
-        (WebTestRunner::CppVariant::toBoolean):
-        (WebTestRunner::CppVariant::toStringVector):
-        (WebTestRunner::CppVariant::invoke):
-        (WebTestRunner::CppVariant::invokeDefault):
-        * DumpRenderTree/chromium/TestRunner/src/CppVariant.h:
-        (CppVariant):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::EventSender):
-        (WebTestRunner::EventSender::reset):
-        (WebTestRunner::EventSender::mouseDown):
-        (WebTestRunner::EventSender::mouseUp):
-        (WebTestRunner::EventSender::mouseMoveTo):
-        (WebTestRunner::EventSender::keyDown):
-        (WebTestRunner::EventSender::dispatchMessage):
-        (WebTestRunner::EventSender::leapForward):
-        (WebTestRunner::EventSender::replaySavedEvents):
-        (WebTestRunner::makeMenuItemStringsFor):
-        (WebTestRunner::EventSender::contextClick):
-        (WebTestRunner::EventSender::beginDragWithFiles):
-        (WebTestRunner::EventSender::addTouchPoint):
-        (WebTestRunner::EventSender::releaseTouchPoint):
-        (WebTestRunner::EventSender::updateTouchPoint):
-        (WebTestRunner::EventSender::cancelTouchPoint):
-        (WebTestRunner::EventSender::sendCurrentTouchEvent):
-        (WebTestRunner::EventSender::gestureEvent):
-        * DumpRenderTree/chromium/TestRunner/src/KeyCodeMapping.cpp:
-        (WebTestRunner::NativeKeyCodeForWindowsKeyCode):
-        * DumpRenderTree/chromium/TestRunner/src/MockGrammarCheck.cpp:
-        (MockGrammarCheck::checkGrammarOfString):
-        * DumpRenderTree/chromium/TestRunner/src/MockGrammarCheck.h:
-        (MockGrammarCheck):
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.cpp:
-        (append):
-        (isNotASCIIAlpha):
-        (MockSpellCheck::spellCheckWord):
-        (MockSpellCheck::initializeIfNeeded):
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.h:
-        (MockSpellCheck):
-        * DumpRenderTree/chromium/TestRunner/src/SpellCheckClient.cpp:
-        (WebTestRunner::SpellCheckClient::checkTextOfParagraph):
-        (WebTestRunner::SpellCheckClient::finishLastTextCheck):
-        * DumpRenderTree/chromium/TestRunner/src/TestCommon.h: Removed.
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        (WebTestRunner::TestInterfaces::TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.h:
-        (TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/TestPlugin.cpp:
-        (WebTestRunner::TestPlugin::TestPlugin):
-        (WebTestRunner::TestPlugin::initialize):
-        (WebTestRunner::TestPlugin::destroy):
-        (WebTestRunner::TestPlugin::parsePrimitive):
-        (WebTestRunner::TestPlugin::parseColor):
-        (WebTestRunner::TestPlugin::initProgram):
-        (WebTestRunner::TestPlugin::initPrimitive):
-        (WebTestRunner::TestPlugin::drawPrimitive):
-        (WebTestRunner::TestPlugin::loadShader):
-        (WebTestRunner::TestPlugin::loadProgram):
-        (WebTestRunner::TestPlugin::handleDragStatusUpdate):
-        * DumpRenderTree/chromium/TestRunner/src/TestPlugin.h:
-        (TestPlugin):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::WorkQueue::processWorkSoon):
-        (WebTestRunner::TestRunner::WorkQueue::processWork):
-        (WebTestRunner::TestRunner::WorkQueue::reset):
-        (WebTestRunner::TestRunner::WorkQueue::addWork):
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::policyDelegateDone):
-        (WebTestRunner::TestRunner::findString):
-        (WebTestRunner::TestRunner::setTextSubpixelPositioning):
-        (WebTestRunner::TestRunner::overridePreference):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::setBackingScaleFactor):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (WebTestRunner::TestRunner::WorkQueue::isEmpty):
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TextInputController.cpp:
-        (WebTestRunner::TextInputController::markedRange):
-        (WebTestRunner::TextInputController::selectedRange):
-        (WebTestRunner::TextInputController::firstRectForCharacterRange):
-        * DumpRenderTree/chromium/TestRunner/src/WebPreferences.cpp:
-        (WebTestRunner::WebPreferences::reset):
-        * DumpRenderTree/chromium/TestRunner/src/WebTask.cpp:
-        (WebTestRunner):
-        (WebTestRunner::WebTaskList::WebTaskList):
-        (WebTestRunner::WebTaskList::~WebTaskList):
-        (WebTestRunner::WebTaskList::registerTask):
-        (WebTestRunner::WebTaskList::unregisterTask):
-        (WebTestRunner::WebTaskList::revokeAll):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestRunner::WebTestInterfaces::WebTestInterfaces):
-        (WebTestRunner::WebTestInterfaces::~WebTestInterfaces):
-        (WebTestRunner::WebTestInterfaces::testInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::~WebTestProxyBase):
-        (WebTestRunner::WebTestProxyBase::spellCheckClient):
-        (WebTestRunner::WebTestProxyBase::registerIntentService):
-        (WebTestRunner::WebTestProxyBase::dispatchIntent):
-        (WebTestRunner::WebTestProxyBase::assignIdentifierToRequest):
-        * DumpRenderTree/chromium/TestRunner/src/config.h: Removed.
-
-2013-02-07  Benjamin Poulain  <bpoulain@apple.com>
-
-        Move pauseAnimation/pauseTransition from TestRunner to Internals
-        https://bugs.webkit.org/show_bug.cgi?id=109107
-
-        Reviewed by Anders Carlsson.
-
-        * DumpRenderTree/TestRunner.cpp:
-        (TestRunner::staticFunctions):
-        * DumpRenderTree/TestRunner.h:
-        * DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        * DumpRenderTree/gtk/TestRunnerGtk.cpp:
-        * DumpRenderTree/mac/TestRunnerMac.mm:
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunner):
-        * DumpRenderTree/win/TestRunnerWin.cpp:
-        * DumpRenderTree/wx/TestRunnerWx.cpp:
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-
-2013-02-07  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] turn TestRunner library into a component build
-        https://bugs.webkit.org/show_bug.cgi?id=108466
-
-        Reviewed by Adam Barth.
-
-        To achieve this, we need to drop all dependencies on WTF.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/public/WebPreferences.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTask.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestCommon.h: Copied from Tools/DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h.
-        * DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.cpp:
-        (WebTestRunner::AccessibilityUIElement::AccessibilityUIElement):
-        (WebTestRunner::AccessibilityUIElementList::getOrCreate):
-        (WebTestRunner::AccessibilityUIElementList::createRoot):
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.h:
-        (AccessibilityUIElementList):
-        * DumpRenderTree/chromium/TestRunner/src/CppBoundClass.cpp:
-        (WebTestRunner::CppBoundClass::~CppBoundClass):
-        (WebTestRunner::CppBoundClass::invoke):
-        (WebTestRunner::CppBoundClass::getProperty):
-        (WebTestRunner::CppBoundClass::setProperty):
-        (WebTestRunner::CppBoundClass::bindCallback):
-        (WebTestRunner::CppBoundClass::bindGetterCallback):
-        (WebTestRunner::CppBoundClass::bindProperty):
-        (WebTestRunner::CppBoundClass::getAsCppVariant):
-        * DumpRenderTree/chromium/TestRunner/src/CppBoundClass.h:
-        (WebTestRunner):
-        (CppBoundClass):
-        (WebTestRunner::CppBoundClass::bindProperty):
-        (WebTestRunner::CppBoundClass::bindFallbackCallback):
-        (WebTestRunner::CppBoundClass::bindFallbackMethod):
-        * DumpRenderTree/chromium/TestRunner/src/CppVariant.cpp:
-        (WebTestRunner::CppVariant::toString):
-        (WebTestRunner::CppVariant::toInt32):
-        (WebTestRunner::CppVariant::toDouble):
-        (WebTestRunner::CppVariant::toBoolean):
-        (WebTestRunner::CppVariant::toStringVector):
-        (WebTestRunner::CppVariant::invoke):
-        (WebTestRunner::CppVariant::invokeDefault):
-        * DumpRenderTree/chromium/TestRunner/src/CppVariant.h:
-        (CppVariant):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::EventSender):
-        (WebTestRunner::EventSender::reset):
-        (WebTestRunner::EventSender::mouseDown):
-        (WebTestRunner::EventSender::mouseUp):
-        (WebTestRunner::EventSender::mouseMoveTo):
-        (WebTestRunner::EventSender::keyDown):
-        (WebTestRunner::EventSender::dispatchMessage):
-        (WebTestRunner::EventSender::leapForward):
-        (WebTestRunner::EventSender::replaySavedEvents):
-        (WebTestRunner::makeMenuItemStringsFor):
-        (WebTestRunner::EventSender::contextClick):
-        (WebTestRunner::EventSender::beginDragWithFiles):
-        (WebTestRunner::EventSender::addTouchPoint):
-        (WebTestRunner::EventSender::releaseTouchPoint):
-        (WebTestRunner::EventSender::updateTouchPoint):
-        (WebTestRunner::EventSender::cancelTouchPoint):
-        (WebTestRunner::EventSender::sendCurrentTouchEvent):
-        (WebTestRunner::EventSender::gestureEvent):
-        * DumpRenderTree/chromium/TestRunner/src/KeyCodeMapping.cpp:
-        (WebTestRunner::NativeKeyCodeForWindowsKeyCode):
-        * DumpRenderTree/chromium/TestRunner/src/MockGrammarCheck.cpp:
-        (WebTestRunner::MockGrammarCheck::checkGrammarOfString):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/MockGrammarCheck.h:
-        (WebTestRunner):
-        (MockGrammarCheck):
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.cpp:
-        (WebTestRunner::MockSpellCheck::spellCheckWord):
-        (WebTestRunner::MockSpellCheck::initializeIfNeeded):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.h:
-        (MockSpellCheck):
-        * DumpRenderTree/chromium/TestRunner/src/SpellCheckClient.cpp:
-        (WebTestRunner::SpellCheckClient::checkTextOfParagraph):
-        (WebTestRunner::SpellCheckClient::finishLastTextCheck):
-        * DumpRenderTree/chromium/TestRunner/src/TestCommon.h: Copied from Tools/DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h.
-        (isASCIIAlpha):
-        (isNotASCIIAlpha):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        (WebTestRunner::TestInterfaces::TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.h:
-        (TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/TestPlugin.cpp:
-        (WebTestRunner::TestPlugin::TestPlugin):
-        (WebTestRunner::TestPlugin::initialize):
-        (WebTestRunner::TestPlugin::destroy):
-        (WebTestRunner::TestPlugin::parsePrimitive):
-        (WebTestRunner::TestPlugin::parseColor):
-        (WebTestRunner::TestPlugin::initProgram):
-        (WebTestRunner::TestPlugin::initPrimitive):
-        (WebTestRunner::TestPlugin::drawPrimitive):
-        (WebTestRunner::TestPlugin::loadShader):
-        (WebTestRunner::TestPlugin::loadProgram):
-        (WebTestRunner::TestPlugin::handleDragStatusUpdate):
-        * DumpRenderTree/chromium/TestRunner/src/TestPlugin.h:
-        (TestPlugin):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::WorkQueue::processWorkSoon):
-        (WebTestRunner::TestRunner::WorkQueue::processWork):
-        (WebTestRunner::TestRunner::WorkQueue::reset):
-        (WebTestRunner::TestRunner::WorkQueue::addWork):
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::policyDelegateDone):
-        (WebTestRunner::TestRunner::findString):
-        (WebTestRunner::TestRunner::setTextSubpixelPositioning):
-        (WebTestRunner::TestRunner::overridePreference):
-        (WebTestRunner::TestRunner::deliverWebIntent):
-        (WebTestRunner::TestRunner::setBackingScaleFactor):
-        (WebTestRunner::TestRunner::simulateLegacyWebNotificationClick):
-        (WebTestRunner::TestRunner::setMockSpeechInputDumpRect):
-        (WebTestRunner::TestRunner::wasMockSpeechRecognitionAborted):
-        (WebTestRunner::TestRunner::setPointerLockWillFailSynchronously):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (WebTestRunner::TestRunner::WorkQueue::isEmpty):
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TextInputController.cpp:
-        (WebTestRunner::TextInputController::markedRange):
-        (WebTestRunner::TextInputController::selectedRange):
-        (WebTestRunner::TextInputController::firstRectForCharacterRange):
-        * DumpRenderTree/chromium/TestRunner/src/WebPreferences.cpp:
-        (WebTestRunner::WebPreferences::reset):
-        * DumpRenderTree/chromium/TestRunner/src/WebTask.cpp:
-        (WebTestRunner::WebTaskList::~WebTaskList):
-        (WebTestRunner::WebTaskList::registerTask):
-        (WebTestRunner::WebTaskList::unregisterTask):
-        (WebTestRunner::WebTaskList::revokeAll):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestRunner::WebTestInterfaces::WebTestInterfaces):
-        (WebTestRunner::WebTestInterfaces::~WebTestInterfaces):
-        (WebTestRunner::WebTestInterfaces::testInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::~WebTestProxyBase):
-        (WebTestRunner::WebTestProxyBase::spellCheckClient):
-        (WebTestRunner::WebTestProxyBase::registerIntentService):
-        (WebTestRunner::WebTestProxyBase::dispatchIntent):
-        (WebTestRunner::WebTestProxyBase::assignIdentifierToRequest):
-        * DumpRenderTree/chromium/TestRunner/src/config.h: Copied from Tools/DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h.
-
-2013-02-07  Eunmi Lee  <eunmi15.lee@samsung.com>
-
-        Do not check enum's casing for WebKit2 C API.
-        https://bugs.webkit.org/show_bug.cgi?id=109128
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add "-readability/enum_casing" for WebKit2 C APIs because we use word
-        which starts with non-capital letter 'k' for types of enums.
-
-        * Scripts/webkitpy/style/checker.py:
-
-2013-02-07  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed warning fix.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (BuildAndTestFactory.__init__):
-        (DownloadAndPerfTestWebKit2Factory.__init__):
-
-2013-02-07  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed typo fix after r142121.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2013-02-07  Vivek Galatage  <vivek.vg@samsung.com>
-
-        [Qt] QtTestBrowser should provide option to enable/disable Javascript
-        https://bugs.webkit.org/show_bug.cgi?id=107461
-
-        Reviewed by Jocelyn Turcotte.
-
-        Option to enable/disable Javascript would be handy option to test
-        certain functionalities of web pages with/without Javascript.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::createChrome):
-        (LauncherWindow::toggleJavaScriptEnabled):
-        * QtTestBrowser/launcherwindow.h:
-        (LauncherWindow):
-
-2013-02-07  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [EFL] Add a WebKit2 Performance bot.
-        https://bugs.webkit.org/show_bug.cgi?id=109188
-
-        Reviewed by Csaba Osztrogonác.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Add the
-        efl-linux-perf-1 slave (a 64-bit Release WK2 Perf bot), and make
-        the "EFL Linux 64-bit Release" bot trigger it.
-
-2013-02-07  Xiaobo Wang  <xbwang@torchmobile.com.cn>
-
-        [BlackBerry] CHHW - Characters that are using 32 bits encoding get trunked to 16bits
-        https://bugs.webkit.org/show_bug.cgi?id=109126
-        PR 292540
-
-        Reviewed by Yong Li.
-
-        Change char code to 4 bytes.
-
-        * DumpRenderTree/blackberry/EventSender.cpp:
-        (keyDownCallback):
-
-2013-02-07  Gavin Peters  <gavinp@chromium.org>
-
-        Unreviewed, rolling out r142090.
-        http://trac.webkit.org/changeset/142090
-        https://bugs.webkit.org/show_bug.cgi?id=108466
-
-        lots of selection expectations failures
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/public/WebPreferences.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTask.h:
-        (WebTaskList):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestCommon.h: Removed.
-        * DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h:
-        (WebTestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebTestProxyBase):
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.cpp:
-        (WebTestRunner::AccessibilityUIElement::AccessibilityUIElement):
-        (WebTestRunner::AccessibilityUIElementList::getOrCreate):
-        (WebTestRunner::AccessibilityUIElementList::createRoot):
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.h:
-        (AccessibilityUIElementList):
-        * DumpRenderTree/chromium/TestRunner/src/CppBoundClass.cpp:
-        (WebTestRunner::CppBoundClass::~CppBoundClass):
-        (WebTestRunner::CppBoundClass::invoke):
-        (WebTestRunner::CppBoundClass::getProperty):
-        (WebTestRunner::CppBoundClass::setProperty):
-        (WebTestRunner::CppBoundClass::bindCallback):
-        (WebTestRunner::CppBoundClass::bindGetterCallback):
-        (WebTestRunner::CppBoundClass::bindProperty):
-        (WebTestRunner::CppBoundClass::getAsCppVariant):
-        * DumpRenderTree/chromium/TestRunner/src/CppBoundClass.h:
-        (WebTestRunner):
-        (CppBoundClass):
-        (WebTestRunner::CppBoundClass::bindProperty):
-        (WebTestRunner::CppBoundClass::bindFallbackCallback):
-        (WebTestRunner::CppBoundClass::bindFallbackMethod):
-        * DumpRenderTree/chromium/TestRunner/src/CppVariant.cpp:
-        (WebTestRunner::CppVariant::toString):
-        (WebTestRunner::CppVariant::toInt32):
-        (WebTestRunner::CppVariant::toDouble):
-        (WebTestRunner::CppVariant::toBoolean):
-        (WebTestRunner::CppVariant::toStringVector):
-        (WebTestRunner::CppVariant::invoke):
-        (WebTestRunner::CppVariant::invokeDefault):
-        * DumpRenderTree/chromium/TestRunner/src/CppVariant.h:
-        (CppVariant):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::EventSender):
-        (WebTestRunner::EventSender::reset):
-        (WebTestRunner::EventSender::mouseDown):
-        (WebTestRunner::EventSender::mouseUp):
-        (WebTestRunner::EventSender::mouseMoveTo):
-        (WebTestRunner::EventSender::keyDown):
-        (WebTestRunner::EventSender::dispatchMessage):
-        (WebTestRunner::EventSender::leapForward):
-        (WebTestRunner::EventSender::replaySavedEvents):
-        (WebTestRunner::makeMenuItemStringsFor):
-        (WebTestRunner::EventSender::contextClick):
-        (WebTestRunner::EventSender::beginDragWithFiles):
-        (WebTestRunner::EventSender::addTouchPoint):
-        (WebTestRunner::EventSender::releaseTouchPoint):
-        (WebTestRunner::EventSender::updateTouchPoint):
-        (WebTestRunner::EventSender::cancelTouchPoint):
-        (WebTestRunner::EventSender::sendCurrentTouchEvent):
-        (WebTestRunner::EventSender::gestureEvent):
-        * DumpRenderTree/chromium/TestRunner/src/KeyCodeMapping.cpp:
-        (WebTestRunner::NativeKeyCodeForWindowsKeyCode):
-        * DumpRenderTree/chromium/TestRunner/src/MockGrammarCheck.cpp:
-        (MockGrammarCheck::checkGrammarOfString):
-        * DumpRenderTree/chromium/TestRunner/src/MockGrammarCheck.h:
-        (MockGrammarCheck):
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.cpp:
-        (append):
-        (isNotASCIIAlpha):
-        (MockSpellCheck::spellCheckWord):
-        (MockSpellCheck::initializeIfNeeded):
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.h:
-        (MockSpellCheck):
-        * DumpRenderTree/chromium/TestRunner/src/SpellCheckClient.cpp:
-        (WebTestRunner::SpellCheckClient::checkTextOfParagraph):
-        (WebTestRunner::SpellCheckClient::finishLastTextCheck):
-        * DumpRenderTree/chromium/TestRunner/src/TestCommon.h: Removed.
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        (WebTestRunner::TestInterfaces::TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.h:
-        (TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/TestPlugin.cpp:
-        (WebTestRunner::TestPlugin::TestPlugin):
-        (WebTestRunner::TestPlugin::initialize):
-        (WebTestRunner::TestPlugin::destroy):
-        (WebTestRunner::TestPlugin::parsePrimitive):
-        (WebTestRunner::TestPlugin::parseColor):
-        (WebTestRunner::TestPlugin::initProgram):
-        (WebTestRunner::TestPlugin::initPrimitive):
-        (WebTestRunner::TestPlugin::drawPrimitive):
-        (WebTestRunner::TestPlugin::loadShader):
-        (WebTestRunner::TestPlugin::loadProgram):
-        (WebTestRunner::TestPlugin::handleDragStatusUpdate):
-        * DumpRenderTree/chromium/TestRunner/src/TestPlugin.h:
-        (TestPlugin):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::WorkQueue::processWorkSoon):
-        (WebTestRunner::TestRunner::WorkQueue::processWork):
-        (WebTestRunner::TestRunner::WorkQueue::reset):
-        (WebTestRunner::TestRunner::WorkQueue::addWork):
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::policyDelegateDone):
-        (WebTestRunner::TestRunner::findString):
-        (WebTestRunner::TestRunner::setTextSubpixelPositioning):
-        (WebTestRunner::TestRunner::overridePreference):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::setBackingScaleFactor):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (WebTestRunner::TestRunner::WorkQueue::isEmpty):
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TextInputController.cpp:
-        (WebTestRunner::TextInputController::markedRange):
-        (WebTestRunner::TextInputController::selectedRange):
-        (WebTestRunner::TextInputController::firstRectForCharacterRange):
-        * DumpRenderTree/chromium/TestRunner/src/WebPreferences.cpp:
-        (WebTestRunner::WebPreferences::reset):
-        * DumpRenderTree/chromium/TestRunner/src/WebTask.cpp:
-        (WebTestRunner):
-        (WebTestRunner::WebTaskList::WebTaskList):
-        (WebTestRunner::WebTaskList::~WebTaskList):
-        (WebTestRunner::WebTaskList::registerTask):
-        (WebTestRunner::WebTaskList::unregisterTask):
-        (WebTestRunner::WebTaskList::revokeAll):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestRunner::WebTestInterfaces::WebTestInterfaces):
-        (WebTestRunner::WebTestInterfaces::~WebTestInterfaces):
-        (WebTestRunner::WebTestInterfaces::testInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::~WebTestProxyBase):
-        (WebTestRunner::WebTestProxyBase::spellCheckClient):
-        (WebTestRunner::WebTestProxyBase::registerIntentService):
-        (WebTestRunner::WebTestProxyBase::dispatchIntent):
-        (WebTestRunner::WebTestProxyBase::assignIdentifierToRequest):
-        * DumpRenderTree/chromium/TestRunner/src/config.h: Removed.
-
-2013-02-07  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] turn TestRunner library into a component build
-        https://bugs.webkit.org/show_bug.cgi?id=108466
-
-        Reviewed by Adam Barth.
-
-        To achieve this, we need to drop all dependencies on WTF.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/public/WebPreferences.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTask.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestCommon.h: Copied from Tools/DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h.
-        * DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.cpp:
-        (WebTestRunner::AccessibilityUIElement::AccessibilityUIElement):
-        (WebTestRunner::AccessibilityUIElementList::getOrCreate):
-        (WebTestRunner::AccessibilityUIElementList::createRoot):
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.h:
-        (AccessibilityUIElementList):
-        * DumpRenderTree/chromium/TestRunner/src/CppBoundClass.cpp:
-        (WebTestRunner::CppBoundClass::~CppBoundClass):
-        (WebTestRunner::CppBoundClass::invoke):
-        (WebTestRunner::CppBoundClass::getProperty):
-        (WebTestRunner::CppBoundClass::setProperty):
-        (WebTestRunner::CppBoundClass::bindCallback):
-        (WebTestRunner::CppBoundClass::bindGetterCallback):
-        (WebTestRunner::CppBoundClass::bindProperty):
-        (WebTestRunner::CppBoundClass::getAsCppVariant):
-        * DumpRenderTree/chromium/TestRunner/src/CppBoundClass.h:
-        (WebTestRunner):
-        (CppBoundClass):
-        (WebTestRunner::CppBoundClass::bindProperty):
-        (WebTestRunner::CppBoundClass::bindFallbackCallback):
-        (WebTestRunner::CppBoundClass::bindFallbackMethod):
-        * DumpRenderTree/chromium/TestRunner/src/CppVariant.cpp:
-        (WebTestRunner::CppVariant::toString):
-        (WebTestRunner::CppVariant::toInt32):
-        (WebTestRunner::CppVariant::toDouble):
-        (WebTestRunner::CppVariant::toBoolean):
-        (WebTestRunner::CppVariant::toStringVector):
-        (WebTestRunner::CppVariant::invoke):
-        (WebTestRunner::CppVariant::invokeDefault):
-        * DumpRenderTree/chromium/TestRunner/src/CppVariant.h:
-        (CppVariant):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::EventSender):
-        (WebTestRunner::EventSender::reset):
-        (WebTestRunner::EventSender::mouseDown):
-        (WebTestRunner::EventSender::mouseUp):
-        (WebTestRunner::EventSender::mouseMoveTo):
-        (WebTestRunner::EventSender::keyDown):
-        (WebTestRunner::EventSender::dispatchMessage):
-        (WebTestRunner::EventSender::leapForward):
-        (WebTestRunner::EventSender::replaySavedEvents):
-        (WebTestRunner::makeMenuItemStringsFor):
-        (WebTestRunner::EventSender::contextClick):
-        (WebTestRunner::EventSender::beginDragWithFiles):
-        (WebTestRunner::EventSender::addTouchPoint):
-        (WebTestRunner::EventSender::releaseTouchPoint):
-        (WebTestRunner::EventSender::updateTouchPoint):
-        (WebTestRunner::EventSender::cancelTouchPoint):
-        (WebTestRunner::EventSender::sendCurrentTouchEvent):
-        (WebTestRunner::EventSender::gestureEvent):
-        * DumpRenderTree/chromium/TestRunner/src/KeyCodeMapping.cpp:
-        (WebTestRunner::NativeKeyCodeForWindowsKeyCode):
-        * DumpRenderTree/chromium/TestRunner/src/MockGrammarCheck.cpp:
-        (WebTestRunner::MockGrammarCheck::checkGrammarOfString):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/MockGrammarCheck.h:
-        (WebTestRunner):
-        (MockGrammarCheck):
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.cpp:
-        (WebTestRunner::MockSpellCheck::spellCheckWord):
-        (WebTestRunner::MockSpellCheck::initializeIfNeeded):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.h:
-        (MockSpellCheck):
-        * DumpRenderTree/chromium/TestRunner/src/SpellCheckClient.cpp:
-        (WebTestRunner::SpellCheckClient::checkTextOfParagraph):
-        (WebTestRunner::SpellCheckClient::finishLastTextCheck):
-        * DumpRenderTree/chromium/TestRunner/src/TestCommon.h: Copied from Tools/DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h.
-        (isASCIIAlpha):
-        (isNotASCIIAlpha):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        (WebTestRunner::TestInterfaces::TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.h:
-        (TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/TestPlugin.cpp:
-        (WebTestRunner::TestPlugin::TestPlugin):
-        (WebTestRunner::TestPlugin::initialize):
-        (WebTestRunner::TestPlugin::destroy):
-        (WebTestRunner::TestPlugin::parsePrimitive):
-        (WebTestRunner::TestPlugin::parseColor):
-        (WebTestRunner::TestPlugin::initProgram):
-        (WebTestRunner::TestPlugin::initPrimitive):
-        (WebTestRunner::TestPlugin::drawPrimitive):
-        (WebTestRunner::TestPlugin::loadShader):
-        (WebTestRunner::TestPlugin::loadProgram):
-        (WebTestRunner::TestPlugin::handleDragStatusUpdate):
-        * DumpRenderTree/chromium/TestRunner/src/TestPlugin.h:
-        (TestPlugin):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::WorkQueue::processWorkSoon):
-        (WebTestRunner::TestRunner::WorkQueue::processWork):
-        (WebTestRunner::TestRunner::WorkQueue::reset):
-        (WebTestRunner::TestRunner::WorkQueue::addWork):
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::policyDelegateDone):
-        (WebTestRunner::TestRunner::findString):
-        (WebTestRunner::TestRunner::setTextSubpixelPositioning):
-        (WebTestRunner::TestRunner::overridePreference):
-        (WebTestRunner::TestRunner::deliverWebIntent):
-        (WebTestRunner::TestRunner::setBackingScaleFactor):
-        (WebTestRunner::TestRunner::simulateLegacyWebNotificationClick):
-        (WebTestRunner::TestRunner::setMockSpeechInputDumpRect):
-        (WebTestRunner::TestRunner::wasMockSpeechRecognitionAborted):
-        (WebTestRunner::TestRunner::setPointerLockWillFailSynchronously):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (WebTestRunner::TestRunner::WorkQueue::isEmpty):
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TextInputController.cpp:
-        (WebTestRunner::TextInputController::markedRange):
-        (WebTestRunner::TextInputController::selectedRange):
-        (WebTestRunner::TextInputController::firstRectForCharacterRange):
-        * DumpRenderTree/chromium/TestRunner/src/WebPreferences.cpp:
-        (WebTestRunner::WebPreferences::reset):
-        * DumpRenderTree/chromium/TestRunner/src/WebTask.cpp:
-        (WebTestRunner::WebTaskList::~WebTaskList):
-        (WebTestRunner::WebTaskList::registerTask):
-        (WebTestRunner::WebTaskList::unregisterTask):
-        (WebTestRunner::WebTaskList::revokeAll):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestRunner::WebTestInterfaces::WebTestInterfaces):
-        (WebTestRunner::WebTestInterfaces::~WebTestInterfaces):
-        (WebTestRunner::WebTestInterfaces::testInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::~WebTestProxyBase):
-        (WebTestRunner::WebTestProxyBase::spellCheckClient):
-        (WebTestRunner::WebTestProxyBase::registerIntentService):
-        (WebTestRunner::WebTestProxyBase::dispatchIntent):
-        (WebTestRunner::WebTestProxyBase::assignIdentifierToRequest):
-        * DumpRenderTree/chromium/TestRunner/src/config.h: Copied from Tools/DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h.
-
-2013-02-07  Andras Becsi  <andras.becsi@digia.com>
-
-        [Qt] Use GNU ar's thin archive format for intermediate static libs
-        https://bugs.webkit.org/show_bug.cgi?id=109052
-
-        Reviewed by Jocelyn Turcotte.
-
-        With debug builds we exceed the 4GiB limit of GNU ar when creating the WebCore
-        intermediate static library which results in build failure even with a x86_64
-        toolchain (http://sourceware.org/bugzilla/show_bug.cgi?id=14625).
-
-        When using a GNU toolchain we can use the thin archive format for these static
-        libraries which also has the benefit of not copying the object files, thus
-        drastically reducing disk usage and overall compile time.
-
-        Currently qmake does not support GNU ar's thin archive format so for
-        now we need to do the magic in the build system as a stopgap solution.
-
-        * qmake/mkspecs/features/configure.prf:
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/functions.prf:
-
-2013-02-05  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Compile WTF tests of TestWebKitAPI
-        https://bugs.webkit.org/show_bug.cgi?id=108935
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add initial stubs and files for building at least the WTF tests.
-        The WK2 tests need more platform code, in particular PlatformWebView
-        and injected bundle support.
-
-        * TestWebKitAPI/TestWebKitAPI.pri: Added.
-        * TestWebKitAPI/TestWebKitAPI.pro: Added.
-        * TestWebKitAPI/Tests/WTF/WTF.pro: Added.
-        * TestWebKitAPI/qt/InjectedBundleControllerQt.cpp: Added.
-        (TestWebKitAPI):
-        (TestWebKitAPI::InjectedBundleController::platformInitialize):
-        * TestWebKitAPI/qt/PlatformUtilitiesQt.cpp: Added.
-        (Util):
-        (TestWebKitAPI::Util::run):
-        (TestWebKitAPI::Util::sleep):
-        (TestWebKitAPI::Util::createInjectedBundlePath):
-        (TestWebKitAPI::Util::createURLForResource):
-        (TestWebKitAPI::Util::URLForNonExistentResource):
-        * TestWebKitAPI/qt/main.cpp: Added.
-        (main):
-        * Tools.pro:
-        * qmake/mkspecs/features/default_post.prf:
-
-2013-02-06  Roger Fong  <roger_fong@apple.com>
-
-        VS2010 WinLauncher project, property sheets and resources.
-        https://bugs.webkit.org/show_bug.cgi?id=107037.
-
-        Reviewed by Brent Fulgham.
-
-        * WinLauncher/WinLauncher.vcxproj: Added.
-        * WinLauncher/WinLauncher.vcxproj/WinLauncher.ico: Copied from WinLauncher/WinLauncher.ico.
-        * WinLauncher/WinLauncher.vcxproj/WinLauncher.rc: Copied from WinLauncher/WinLauncherLauncher.rc.
-        * WinLauncher/WinLauncher.vcxproj/WinLauncher.vcxproj: Added.
-        * WinLauncher/WinLauncher.vcxproj/WinLauncher.vcxproj.filters: Added.
-        * WinLauncher/WinLauncher.vcxproj/WinLauncher.vcxproj.user: Added.
-        * WinLauncher/WinLauncher.vcxproj/WinLauncherCommon.props: Added.
-        * WinLauncher/WinLauncher.vcxproj/WinLauncherDebug.props: Added.
-        * WinLauncher/WinLauncher.vcxproj/WinLauncherLib.rc: Copied from WinLauncher/WinLauncher.rc.
-        * WinLauncher/WinLauncher.vcxproj/WinLauncherLib.vcxproj: Added.
-        * WinLauncher/WinLauncher.vcxproj/WinLauncherLib.vcxproj.filters: Added.
-        * WinLauncher/WinLauncher.vcxproj/WinLauncherLib.vcxproj.user: Added.
-        * WinLauncher/WinLauncher.vcxproj/WinLauncherLibCommon.props: Added.
-        * WinLauncher/WinLauncher.vcxproj/WinLauncherLibDebug.props: Added.
-        * WinLauncher/WinLauncher.vcxproj/WinLauncherLibPostBuild.cmd: Copied from WinLauncher/WinLauncherPostBuild.cmd.
-        * WinLauncher/WinLauncher.vcxproj/WinLauncherLibPreBuild.cmd: Copied from WinLauncher/WinLauncherPreBuild.cmd.
-        * WinLauncher/WinLauncher.vcxproj/WinLauncherLibRelease.props: Added.
-        * WinLauncher/WinLauncher.vcxproj/WinLauncherLibResource.h: Copied from WinLauncher/resource.h.
-        * WinLauncher/WinLauncher.vcxproj/WinLauncherPostBuild.cmd: Added.
-        * WinLauncher/WinLauncher.vcxproj/WinLauncherPreBuild.cmd: Added.
-        * WinLauncher/WinLauncher.vcxproj/WinLauncherRelease.props: Added.
-        * WinLauncher/WinLauncher.vcxproj/WinLauncherResource.h: Copied from WinLauncher/WinLauncherLauncherResource.h.
-        * WinLauncher/WinLauncher.vcxproj/small.ico: Copied from WinLauncher/small.ico.
-
-2013-02-06  Terry Anderson  <tdanderson@chromium.org>
-
-        Add support for gesture scroll events that do not propagate to enclosing scrollables
-        https://bugs.webkit.org/show_bug.cgi?id=108849
-
-        Reviewed by Antonio Gomes.
-
-        Modify chromium's DRT EventSender to support the new event type
-        GestureScrollUpdateWithoutPropagation.
-
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::EventSender):
-        (WebTestRunner::EventSender::gestureScrollUpdateWithoutPropagation):
-        (WebTestRunner::EventSender::gestureEvent):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.h:
-        (EventSender):
-        * DumpRenderTree/chromium/TestRunner/src/TestPlugin.cpp:
-        (WebTestRunner::TestPlugin::handleInputEvent):
-
-2013-02-06  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r142032.
-        http://trac.webkit.org/changeset/142032
-        https://bugs.webkit.org/show_bug.cgi?id=109095
-
-        component build still broken (Requested by jochen__ on
-        #webkit).
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/public/WebPreferences.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTask.h:
-        (WebTaskList):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestCommon.h: Removed.
-        * DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h:
-        (WebTestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebTestProxyBase):
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.cpp:
-        (WebTestRunner::AccessibilityUIElement::AccessibilityUIElement):
-        (WebTestRunner::AccessibilityUIElementList::getOrCreate):
-        (WebTestRunner::AccessibilityUIElementList::createRoot):
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.h:
-        (AccessibilityUIElementList):
-        * DumpRenderTree/chromium/TestRunner/src/CppBoundClass.cpp:
-        (WebTestRunner::CppBoundClass::~CppBoundClass):
-        (WebTestRunner::CppBoundClass::invoke):
-        (WebTestRunner::CppBoundClass::getProperty):
-        (WebTestRunner::CppBoundClass::setProperty):
-        (WebTestRunner::CppBoundClass::bindCallback):
-        (WebTestRunner::CppBoundClass::bindGetterCallback):
-        (WebTestRunner::CppBoundClass::bindProperty):
-        (WebTestRunner::CppBoundClass::getAsCppVariant):
-        * DumpRenderTree/chromium/TestRunner/src/CppBoundClass.h:
-        (WebTestRunner):
-        (CppBoundClass):
-        (WebTestRunner::CppBoundClass::bindProperty):
-        (WebTestRunner::CppBoundClass::bindFallbackCallback):
-        (WebTestRunner::CppBoundClass::bindFallbackMethod):
-        * DumpRenderTree/chromium/TestRunner/src/CppVariant.cpp:
-        (WebTestRunner::CppVariant::toString):
-        (WebTestRunner::CppVariant::toInt32):
-        (WebTestRunner::CppVariant::toDouble):
-        (WebTestRunner::CppVariant::toBoolean):
-        (WebTestRunner::CppVariant::toStringVector):
-        (WebTestRunner::CppVariant::invoke):
-        (WebTestRunner::CppVariant::invokeDefault):
-        * DumpRenderTree/chromium/TestRunner/src/CppVariant.h:
-        (CppVariant):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::EventSender):
-        (WebTestRunner::EventSender::reset):
-        (WebTestRunner::EventSender::mouseDown):
-        (WebTestRunner::EventSender::mouseUp):
-        (WebTestRunner::EventSender::mouseMoveTo):
-        (WebTestRunner::EventSender::keyDown):
-        (WebTestRunner::EventSender::dispatchMessage):
-        (WebTestRunner::EventSender::leapForward):
-        (WebTestRunner::EventSender::replaySavedEvents):
-        (WebTestRunner::makeMenuItemStringsFor):
-        (WebTestRunner::EventSender::contextClick):
-        (WebTestRunner::EventSender::beginDragWithFiles):
-        (WebTestRunner::EventSender::addTouchPoint):
-        (WebTestRunner::EventSender::releaseTouchPoint):
-        (WebTestRunner::EventSender::updateTouchPoint):
-        (WebTestRunner::EventSender::cancelTouchPoint):
-        (WebTestRunner::EventSender::sendCurrentTouchEvent):
-        (WebTestRunner::EventSender::gestureEvent):
-        * DumpRenderTree/chromium/TestRunner/src/KeyCodeMapping.cpp:
-        (WebTestRunner::NativeKeyCodeForWindowsKeyCode):
-        * DumpRenderTree/chromium/TestRunner/src/MockGrammarCheck.cpp:
-        (MockGrammarCheck::checkGrammarOfString):
-        * DumpRenderTree/chromium/TestRunner/src/MockGrammarCheck.h:
-        (MockGrammarCheck):
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.cpp:
-        (append):
-        (isNotASCIIAlpha):
-        (MockSpellCheck::spellCheckWord):
-        (MockSpellCheck::initializeIfNeeded):
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.h:
-        (MockSpellCheck):
-        * DumpRenderTree/chromium/TestRunner/src/SpellCheckClient.cpp:
-        (WebTestRunner::SpellCheckClient::checkTextOfParagraph):
-        (WebTestRunner::SpellCheckClient::finishLastTextCheck):
-        * DumpRenderTree/chromium/TestRunner/src/TestCommon.h: Removed.
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        (WebTestRunner::TestInterfaces::TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.h:
-        (TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/TestPlugin.cpp:
-        (WebTestRunner::TestPlugin::TestPlugin):
-        (WebTestRunner::TestPlugin::initialize):
-        (WebTestRunner::TestPlugin::destroy):
-        (WebTestRunner::TestPlugin::parsePrimitive):
-        (WebTestRunner::TestPlugin::parseColor):
-        (WebTestRunner::TestPlugin::initProgram):
-        (WebTestRunner::TestPlugin::initPrimitive):
-        (WebTestRunner::TestPlugin::drawPrimitive):
-        (WebTestRunner::TestPlugin::loadShader):
-        (WebTestRunner::TestPlugin::loadProgram):
-        (WebTestRunner::TestPlugin::handleDragStatusUpdate):
-        * DumpRenderTree/chromium/TestRunner/src/TestPlugin.h:
-        (TestPlugin):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::WorkQueue::processWorkSoon):
-        (WebTestRunner::TestRunner::WorkQueue::processWork):
-        (WebTestRunner::TestRunner::WorkQueue::reset):
-        (WebTestRunner::TestRunner::WorkQueue::addWork):
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::policyDelegateDone):
-        (WebTestRunner::TestRunner::findString):
-        (WebTestRunner::TestRunner::setTextSubpixelPositioning):
-        (WebTestRunner::TestRunner::overridePreference):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::setBackingScaleFactor):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (WebTestRunner::TestRunner::WorkQueue::isEmpty):
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TextInputController.cpp:
-        (WebTestRunner::TextInputController::markedRange):
-        (WebTestRunner::TextInputController::selectedRange):
-        (WebTestRunner::TextInputController::firstRectForCharacterRange):
-        * DumpRenderTree/chromium/TestRunner/src/WebPreferences.cpp:
-        (WebTestRunner::WebPreferences::reset):
-        * DumpRenderTree/chromium/TestRunner/src/WebTask.cpp:
-        (WebTestRunner):
-        (WebTestRunner::WebTaskList::WebTaskList):
-        (WebTestRunner::WebTaskList::~WebTaskList):
-        (WebTestRunner::WebTaskList::registerTask):
-        (WebTestRunner::WebTaskList::unregisterTask):
-        (WebTestRunner::WebTaskList::revokeAll):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestRunner::WebTestInterfaces::WebTestInterfaces):
-        (WebTestRunner::WebTestInterfaces::~WebTestInterfaces):
-        (WebTestRunner::WebTestInterfaces::testInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::~WebTestProxyBase):
-        (WebTestRunner::WebTestProxyBase::spellCheckClient):
-        (WebTestRunner::WebTestProxyBase::registerIntentService):
-        (WebTestRunner::WebTestProxyBase::dispatchIntent):
-        (WebTestRunner::WebTestProxyBase::assignIdentifierToRequest):
-        * DumpRenderTree/chromium/TestRunner/src/config.h: Removed.
-
-2013-02-06  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] turn TestRunner library into a component build
-        https://bugs.webkit.org/show_bug.cgi?id=108466
-
-        Reviewed by Adam Barth.
-
-        To achieve this, we need to drop all dependencies on WTF.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/public/WebPreferences.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTask.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestCommon.h: Copied from Tools/DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h.
-        * DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.cpp:
-        (WebTestRunner::AccessibilityUIElement::AccessibilityUIElement):
-        (WebTestRunner::AccessibilityUIElementList::getOrCreate):
-        (WebTestRunner::AccessibilityUIElementList::createRoot):
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.h:
-        (AccessibilityUIElementList):
-        * DumpRenderTree/chromium/TestRunner/src/CppBoundClass.cpp:
-        (WebTestRunner::CppBoundClass::~CppBoundClass):
-        (WebTestRunner::CppBoundClass::invoke):
-        (WebTestRunner::CppBoundClass::getProperty):
-        (WebTestRunner::CppBoundClass::setProperty):
-        (WebTestRunner::CppBoundClass::bindCallback):
-        (WebTestRunner::CppBoundClass::bindGetterCallback):
-        (WebTestRunner::CppBoundClass::bindProperty):
-        (WebTestRunner::CppBoundClass::getAsCppVariant):
-        * DumpRenderTree/chromium/TestRunner/src/CppBoundClass.h:
-        (WebTestRunner):
-        (CppBoundClass):
-        (WebTestRunner::CppBoundClass::bindProperty):
-        (WebTestRunner::CppBoundClass::bindFallbackCallback):
-        (WebTestRunner::CppBoundClass::bindFallbackMethod):
-        * DumpRenderTree/chromium/TestRunner/src/CppVariant.cpp:
-        (WebTestRunner::CppVariant::toString):
-        (WebTestRunner::CppVariant::toInt32):
-        (WebTestRunner::CppVariant::toDouble):
-        (WebTestRunner::CppVariant::toBoolean):
-        (WebTestRunner::CppVariant::toStringVector):
-        (WebTestRunner::CppVariant::invoke):
-        (WebTestRunner::CppVariant::invokeDefault):
-        * DumpRenderTree/chromium/TestRunner/src/CppVariant.h:
-        (CppVariant):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::EventSender):
-        (WebTestRunner::EventSender::reset):
-        (WebTestRunner::EventSender::mouseDown):
-        (WebTestRunner::EventSender::mouseUp):
-        (WebTestRunner::EventSender::mouseMoveTo):
-        (WebTestRunner::EventSender::keyDown):
-        (WebTestRunner::EventSender::dispatchMessage):
-        (WebTestRunner::EventSender::leapForward):
-        (WebTestRunner::EventSender::replaySavedEvents):
-        (WebTestRunner::makeMenuItemStringsFor):
-        (WebTestRunner::EventSender::contextClick):
-        (WebTestRunner::EventSender::beginDragWithFiles):
-        (WebTestRunner::EventSender::addTouchPoint):
-        (WebTestRunner::EventSender::releaseTouchPoint):
-        (WebTestRunner::EventSender::updateTouchPoint):
-        (WebTestRunner::EventSender::cancelTouchPoint):
-        (WebTestRunner::EventSender::sendCurrentTouchEvent):
-        (WebTestRunner::EventSender::gestureEvent):
-        * DumpRenderTree/chromium/TestRunner/src/KeyCodeMapping.cpp:
-        (WebTestRunner::NativeKeyCodeForWindowsKeyCode):
-        * DumpRenderTree/chromium/TestRunner/src/MockGrammarCheck.cpp:
-        (WebTestRunner::MockGrammarCheck::checkGrammarOfString):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/MockGrammarCheck.h:
-        (WebTestRunner):
-        (MockGrammarCheck):
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.cpp:
-        (WebTestRunner::MockSpellCheck::spellCheckWord):
-        (WebTestRunner::MockSpellCheck::initializeIfNeeded):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.h:
-        (MockSpellCheck):
-        * DumpRenderTree/chromium/TestRunner/src/SpellCheckClient.cpp:
-        (WebTestRunner::SpellCheckClient::checkTextOfParagraph):
-        (WebTestRunner::SpellCheckClient::finishLastTextCheck):
-        * DumpRenderTree/chromium/TestRunner/src/TestCommon.h: Copied from Tools/DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h.
-        (isASCIIAlpha):
-        (isNotASCIIAlpha):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        (WebTestRunner::TestInterfaces::TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.h:
-        (TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/TestPlugin.cpp:
-        (WebTestRunner::TestPlugin::TestPlugin):
-        (WebTestRunner::TestPlugin::initialize):
-        (WebTestRunner::TestPlugin::destroy):
-        (WebTestRunner::TestPlugin::parsePrimitive):
-        (WebTestRunner::TestPlugin::parseColor):
-        (WebTestRunner::TestPlugin::initProgram):
-        (WebTestRunner::TestPlugin::initPrimitive):
-        (WebTestRunner::TestPlugin::drawPrimitive):
-        (WebTestRunner::TestPlugin::loadShader):
-        (WebTestRunner::TestPlugin::loadProgram):
-        (WebTestRunner::TestPlugin::handleDragStatusUpdate):
-        * DumpRenderTree/chromium/TestRunner/src/TestPlugin.h:
-        (TestPlugin):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::WorkQueue::processWorkSoon):
-        (WebTestRunner::TestRunner::WorkQueue::processWork):
-        (WebTestRunner::TestRunner::WorkQueue::reset):
-        (WebTestRunner::TestRunner::WorkQueue::addWork):
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::policyDelegateDone):
-        (WebTestRunner::TestRunner::findString):
-        (WebTestRunner::TestRunner::setTextSubpixelPositioning):
-        (WebTestRunner::TestRunner::overridePreference):
-        (WebTestRunner::TestRunner::deliverWebIntent):
-        (WebTestRunner::TestRunner::setBackingScaleFactor):
-        (WebTestRunner::TestRunner::simulateLegacyWebNotificationClick):
-        (WebTestRunner::TestRunner::setMockSpeechInputDumpRect):
-        (WebTestRunner::TestRunner::wasMockSpeechRecognitionAborted):
-        (WebTestRunner::TestRunner::setPointerLockWillFailSynchronously):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (WebTestRunner::TestRunner::WorkQueue::isEmpty):
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TextInputController.cpp:
-        (WebTestRunner::TextInputController::markedRange):
-        (WebTestRunner::TextInputController::selectedRange):
-        (WebTestRunner::TextInputController::firstRectForCharacterRange):
-        * DumpRenderTree/chromium/TestRunner/src/WebPreferences.cpp:
-        (WebTestRunner::WebPreferences::reset):
-        * DumpRenderTree/chromium/TestRunner/src/WebTask.cpp:
-        (WebTestRunner::WebTaskList::~WebTaskList):
-        (WebTestRunner::WebTaskList::registerTask):
-        (WebTestRunner::WebTaskList::unregisterTask):
-        (WebTestRunner::WebTaskList::revokeAll):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestRunner::WebTestInterfaces::WebTestInterfaces):
-        (WebTestRunner::WebTestInterfaces::~WebTestInterfaces):
-        (WebTestRunner::WebTestInterfaces::testInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::~WebTestProxyBase):
-        (WebTestRunner::WebTestProxyBase::spellCheckClient):
-        (WebTestRunner::WebTestProxyBase::registerIntentService):
-        (WebTestRunner::WebTestProxyBase::dispatchIntent):
-        (WebTestRunner::WebTestProxyBase::assignIdentifierToRequest):
-        * DumpRenderTree/chromium/TestRunner/src/config.h: Copied from Tools/DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h.
-
-2013-02-06  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r142025.
-        http://trac.webkit.org/changeset/142025
-        https://bugs.webkit.org/show_bug.cgi?id=109091
-
-        broke the build (Requested by tdanderson on #webkit).
-
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::EventSender):
-        (WebTestRunner::EventSender::gestureEvent):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.h:
-        (EventSender):
-
-2013-02-06  Terry Anderson  <tdanderson@chromium.org>
-
-        Add support for gesture scroll events that do not propagate to enclosing scrollables
-        https://bugs.webkit.org/show_bug.cgi?id=108849
-
-        Reviewed by Antonio Gomes.
-
-        Modify chromium's DRT EventSender to support the new event type
-        GestureScrollUpdateWithoutPropagation.
-
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::EventSender):
-        (WebTestRunner::EventSender::gestureScrollUpdateWithoutPropagation):
-        (WebTestRunner::EventSender::gestureEvent):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.h:
-        (EventSender):
-
-2013-02-06  Zan Dobersek  <zdobersek@igalia.com>
-
-        [TestResultServer] Adjust the name of the GTK 64-bit debug builder
-        https://bugs.webkit.org/show_bug.cgi?id=109016
-
-        Reviewed by Ojan Vafai.
-
-        * TestResultServer/static-dashboards/builders.jsonp: The GTK 64-bit debug
-        builder was adjusted to build WebKit1 only, with the name changed accordingly.
-        Reflect that change here as well.
-
-2013-02-06  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r141991.
-        http://trac.webkit.org/changeset/141991
-        https://bugs.webkit.org/show_bug.cgi?id=109047
-
-        Fails to compile on all Chromium platforms (Requested by
-        schenney on #webkit).
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/public/WebPreferences.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTask.h:
-        (WebTaskList):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestCommon.h: Removed.
-        * DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h:
-        (WebTestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebTestProxyBase):
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.cpp:
-        (WebTestRunner::AccessibilityUIElement::AccessibilityUIElement):
-        (WebTestRunner::AccessibilityUIElementList::getOrCreate):
-        (WebTestRunner::AccessibilityUIElementList::createRoot):
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.h:
-        (AccessibilityUIElementList):
-        * DumpRenderTree/chromium/TestRunner/src/CppBoundClass.cpp:
-        (WebTestRunner::CppBoundClass::~CppBoundClass):
-        (WebTestRunner::CppBoundClass::invoke):
-        (WebTestRunner::CppBoundClass::getProperty):
-        (WebTestRunner::CppBoundClass::setProperty):
-        (WebTestRunner::CppBoundClass::bindCallback):
-        (WebTestRunner::CppBoundClass::bindGetterCallback):
-        (WebTestRunner::CppBoundClass::bindProperty):
-        (WebTestRunner::CppBoundClass::getAsCppVariant):
-        * DumpRenderTree/chromium/TestRunner/src/CppBoundClass.h:
-        (WebTestRunner):
-        (CppBoundClass):
-        (WebTestRunner::CppBoundClass::bindProperty):
-        (WebTestRunner::CppBoundClass::bindFallbackCallback):
-        (WebTestRunner::CppBoundClass::bindFallbackMethod):
-        * DumpRenderTree/chromium/TestRunner/src/CppVariant.cpp:
-        (WebTestRunner::CppVariant::toString):
-        (WebTestRunner::CppVariant::toInt32):
-        (WebTestRunner::CppVariant::toDouble):
-        (WebTestRunner::CppVariant::toBoolean):
-        (WebTestRunner::CppVariant::toStringVector):
-        (WebTestRunner::CppVariant::invoke):
-        (WebTestRunner::CppVariant::invokeDefault):
-        * DumpRenderTree/chromium/TestRunner/src/CppVariant.h:
-        (CppVariant):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::EventSender):
-        (WebTestRunner::EventSender::reset):
-        (WebTestRunner::EventSender::mouseDown):
-        (WebTestRunner::EventSender::mouseUp):
-        (WebTestRunner::EventSender::mouseMoveTo):
-        (WebTestRunner::EventSender::keyDown):
-        (WebTestRunner::EventSender::dispatchMessage):
-        (WebTestRunner::EventSender::leapForward):
-        (WebTestRunner::EventSender::replaySavedEvents):
-        (WebTestRunner::makeMenuItemStringsFor):
-        (WebTestRunner::EventSender::contextClick):
-        (WebTestRunner::EventSender::beginDragWithFiles):
-        (WebTestRunner::EventSender::addTouchPoint):
-        (WebTestRunner::EventSender::releaseTouchPoint):
-        (WebTestRunner::EventSender::updateTouchPoint):
-        (WebTestRunner::EventSender::cancelTouchPoint):
-        (WebTestRunner::EventSender::sendCurrentTouchEvent):
-        (WebTestRunner::EventSender::gestureEvent):
-        * DumpRenderTree/chromium/TestRunner/src/KeyCodeMapping.cpp:
-        (WebTestRunner::NativeKeyCodeForWindowsKeyCode):
-        * DumpRenderTree/chromium/TestRunner/src/MockGrammarCheck.cpp:
-        (MockGrammarCheck::checkGrammarOfString):
-        * DumpRenderTree/chromium/TestRunner/src/MockGrammarCheck.h:
-        (MockGrammarCheck):
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.cpp:
-        (append):
-        (isNotASCIIAlpha):
-        (MockSpellCheck::spellCheckWord):
-        (MockSpellCheck::initializeIfNeeded):
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.h:
-        (MockSpellCheck):
-        * DumpRenderTree/chromium/TestRunner/src/SpellCheckClient.cpp:
-        (WebTestRunner::SpellCheckClient::checkTextOfParagraph):
-        (WebTestRunner::SpellCheckClient::finishLastTextCheck):
-        * DumpRenderTree/chromium/TestRunner/src/TestCommon.h: Removed.
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        (WebTestRunner::TestInterfaces::TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.h:
-        (TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/TestPlugin.cpp:
-        (WebTestRunner::TestPlugin::TestPlugin):
-        (WebTestRunner::TestPlugin::initialize):
-        (WebTestRunner::TestPlugin::destroy):
-        (WebTestRunner::TestPlugin::parsePrimitive):
-        (WebTestRunner::TestPlugin::parseColor):
-        (WebTestRunner::TestPlugin::initProgram):
-        (WebTestRunner::TestPlugin::initPrimitive):
-        (WebTestRunner::TestPlugin::drawPrimitive):
-        (WebTestRunner::TestPlugin::loadShader):
-        (WebTestRunner::TestPlugin::loadProgram):
-        (WebTestRunner::TestPlugin::handleDragStatusUpdate):
-        * DumpRenderTree/chromium/TestRunner/src/TestPlugin.h:
-        (TestPlugin):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::WorkQueue::processWorkSoon):
-        (WebTestRunner::TestRunner::WorkQueue::processWork):
-        (WebTestRunner::TestRunner::WorkQueue::reset):
-        (WebTestRunner::TestRunner::WorkQueue::addWork):
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::policyDelegateDone):
-        (WebTestRunner::TestRunner::findString):
-        (WebTestRunner::TestRunner::setTextSubpixelPositioning):
-        (WebTestRunner::TestRunner::overridePreference):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::setBackingScaleFactor):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (WebTestRunner::TestRunner::WorkQueue::isEmpty):
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TextInputController.cpp:
-        (WebTestRunner::TextInputController::markedRange):
-        (WebTestRunner::TextInputController::selectedRange):
-        (WebTestRunner::TextInputController::firstRectForCharacterRange):
-        * DumpRenderTree/chromium/TestRunner/src/WebPreferences.cpp:
-        (WebTestRunner::WebPreferences::reset):
-        * DumpRenderTree/chromium/TestRunner/src/WebTask.cpp:
-        (WebTestRunner):
-        (WebTestRunner::WebTaskList::WebTaskList):
-        (WebTestRunner::WebTaskList::~WebTaskList):
-        (WebTestRunner::WebTaskList::registerTask):
-        (WebTestRunner::WebTaskList::unregisterTask):
-        (WebTestRunner::WebTaskList::revokeAll):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestRunner::WebTestInterfaces::WebTestInterfaces):
-        (WebTestRunner::WebTestInterfaces::~WebTestInterfaces):
-        (WebTestRunner::WebTestInterfaces::testInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::~WebTestProxyBase):
-        (WebTestRunner::WebTestProxyBase::spellCheckClient):
-        (WebTestRunner::WebTestProxyBase::registerIntentService):
-        (WebTestRunner::WebTestProxyBase::dispatchIntent):
-        (WebTestRunner::WebTestProxyBase::assignIdentifierToRequest):
-        * DumpRenderTree/chromium/TestRunner/src/config.h: Removed.
-
-2013-02-06  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r141995.
-        http://trac.webkit.org/changeset/141995
-        https://bugs.webkit.org/show_bug.cgi?id=109046
-
-        May allow me to roll out the real problem (Requested by
-        schenney on #webkit).
-
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::sendWebIntentResponse):
-        (WebTestRunner::TestRunner::deliverWebIntent):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::registerIntentService):
-        (WebTestRunner::WebTestProxyBase::dispatchIntent):
-
-2013-02-06  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] fix android build which doesn't support intents
-
-        Unreviewed build fix.
-
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::sendWebIntentResponse):
-        (WebTestRunner::TestRunner::deliverWebIntent):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::registerIntentService):
-        (WebTestRunner::WebTestProxyBase::dispatchIntent):
-
-2013-02-06  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] turn TestRunner library into a component build
-        https://bugs.webkit.org/show_bug.cgi?id=108466
-
-        Reviewed by Adam Barth.
-
-        To achieve this, we need to drop all dependencies on WTF.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/public/WebPreferences.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTask.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestCommon.h: Copied from Tools/DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h.
-        * DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.cpp:
-        (WebTestRunner::AccessibilityUIElement::AccessibilityUIElement):
-        (WebTestRunner::AccessibilityUIElementList::getOrCreate):
-        (WebTestRunner::AccessibilityUIElementList::createRoot):
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.h:
-        (AccessibilityUIElementList):
-        * DumpRenderTree/chromium/TestRunner/src/CppBoundClass.cpp:
-        (WebTestRunner::CppBoundClass::~CppBoundClass):
-        (WebTestRunner::CppBoundClass::invoke):
-        (WebTestRunner::CppBoundClass::getProperty):
-        (WebTestRunner::CppBoundClass::setProperty):
-        (WebTestRunner::CppBoundClass::bindCallback):
-        (WebTestRunner::CppBoundClass::bindGetterCallback):
-        (WebTestRunner::CppBoundClass::bindProperty):
-        (WebTestRunner::CppBoundClass::getAsCppVariant):
-        * DumpRenderTree/chromium/TestRunner/src/CppBoundClass.h:
-        (WebTestRunner):
-        (CppBoundClass):
-        (WebTestRunner::CppBoundClass::bindProperty):
-        (WebTestRunner::CppBoundClass::bindFallbackCallback):
-        (WebTestRunner::CppBoundClass::bindFallbackMethod):
-        * DumpRenderTree/chromium/TestRunner/src/CppVariant.cpp:
-        (WebTestRunner::CppVariant::toString):
-        (WebTestRunner::CppVariant::toInt32):
-        (WebTestRunner::CppVariant::toDouble):
-        (WebTestRunner::CppVariant::toBoolean):
-        (WebTestRunner::CppVariant::toStringVector):
-        (WebTestRunner::CppVariant::invoke):
-        (WebTestRunner::CppVariant::invokeDefault):
-        * DumpRenderTree/chromium/TestRunner/src/CppVariant.h:
-        (CppVariant):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::EventSender):
-        (WebTestRunner::EventSender::reset):
-        (WebTestRunner::EventSender::mouseDown):
-        (WebTestRunner::EventSender::mouseUp):
-        (WebTestRunner::EventSender::mouseMoveTo):
-        (WebTestRunner::EventSender::keyDown):
-        (WebTestRunner::EventSender::dispatchMessage):
-        (WebTestRunner::EventSender::leapForward):
-        (WebTestRunner::EventSender::replaySavedEvents):
-        (WebTestRunner::makeMenuItemStringsFor):
-        (WebTestRunner::EventSender::contextClick):
-        (WebTestRunner::EventSender::beginDragWithFiles):
-        (WebTestRunner::EventSender::addTouchPoint):
-        (WebTestRunner::EventSender::releaseTouchPoint):
-        (WebTestRunner::EventSender::updateTouchPoint):
-        (WebTestRunner::EventSender::cancelTouchPoint):
-        (WebTestRunner::EventSender::sendCurrentTouchEvent):
-        (WebTestRunner::EventSender::gestureEvent):
-        * DumpRenderTree/chromium/TestRunner/src/KeyCodeMapping.cpp:
-        (WebTestRunner::NativeKeyCodeForWindowsKeyCode):
-        * DumpRenderTree/chromium/TestRunner/src/MockGrammarCheck.cpp:
-        (WebTestRunner::MockGrammarCheck::checkGrammarOfString):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/MockGrammarCheck.h:
-        (WebTestRunner):
-        (MockGrammarCheck):
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.cpp:
-        (WebTestRunner::MockSpellCheck::spellCheckWord):
-        (WebTestRunner::MockSpellCheck::initializeIfNeeded):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.h:
-        (MockSpellCheck):
-        * DumpRenderTree/chromium/TestRunner/src/SpellCheckClient.cpp:
-        (WebTestRunner::SpellCheckClient::checkTextOfParagraph):
-        (WebTestRunner::SpellCheckClient::finishLastTextCheck):
-        * DumpRenderTree/chromium/TestRunner/src/TestCommon.h: Copied from Tools/DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h.
-        (isASCIIAlpha):
-        (isNotASCIIAlpha):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        (WebTestRunner::TestInterfaces::TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.h:
-        (TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/TestPlugin.cpp:
-        (WebTestRunner::TestPlugin::TestPlugin):
-        (WebTestRunner::TestPlugin::initialize):
-        (WebTestRunner::TestPlugin::destroy):
-        (WebTestRunner::TestPlugin::parsePrimitive):
-        (WebTestRunner::TestPlugin::parseColor):
-        (WebTestRunner::TestPlugin::initProgram):
-        (WebTestRunner::TestPlugin::initPrimitive):
-        (WebTestRunner::TestPlugin::drawPrimitive):
-        (WebTestRunner::TestPlugin::loadShader):
-        (WebTestRunner::TestPlugin::loadProgram):
-        (WebTestRunner::TestPlugin::handleDragStatusUpdate):
-        * DumpRenderTree/chromium/TestRunner/src/TestPlugin.h:
-        (TestPlugin):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::WorkQueue::processWorkSoon):
-        (WebTestRunner::TestRunner::WorkQueue::processWork):
-        (WebTestRunner::TestRunner::WorkQueue::reset):
-        (WebTestRunner::TestRunner::WorkQueue::addWork):
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::policyDelegateDone):
-        (WebTestRunner::TestRunner::findString):
-        (WebTestRunner::TestRunner::setTextSubpixelPositioning):
-        (WebTestRunner::TestRunner::overridePreference):
-        (WebTestRunner::TestRunner::deliverWebIntent):
-        (WebTestRunner::TestRunner::setBackingScaleFactor):
-        (WebTestRunner::TestRunner::simulateLegacyWebNotificationClick):
-        (WebTestRunner::TestRunner::setMockSpeechInputDumpRect):
-        (WebTestRunner::TestRunner::wasMockSpeechRecognitionAborted):
-        (WebTestRunner::TestRunner::setPointerLockWillFailSynchronously):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (WebTestRunner::TestRunner::WorkQueue::isEmpty):
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TextInputController.cpp:
-        (WebTestRunner::TextInputController::markedRange):
-        (WebTestRunner::TextInputController::selectedRange):
-        (WebTestRunner::TextInputController::firstRectForCharacterRange):
-        * DumpRenderTree/chromium/TestRunner/src/WebPreferences.cpp:
-        (WebTestRunner::WebPreferences::reset):
-        * DumpRenderTree/chromium/TestRunner/src/WebTask.cpp:
-        (WebTestRunner::WebTaskList::~WebTaskList):
-        (WebTestRunner::WebTaskList::registerTask):
-        (WebTestRunner::WebTaskList::unregisterTask):
-        (WebTestRunner::WebTaskList::revokeAll):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestRunner::WebTestInterfaces::WebTestInterfaces):
-        (WebTestRunner::WebTestInterfaces::~WebTestInterfaces):
-        (WebTestRunner::WebTestInterfaces::testInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::~WebTestProxyBase):
-        (WebTestRunner::WebTestProxyBase::spellCheckClient):
-        (WebTestRunner::WebTestProxyBase::registerIntentService):
-        (WebTestRunner::WebTestProxyBase::dispatchIntent):
-        (WebTestRunner::WebTestProxyBase::assignIdentifierToRequest):
-        * DumpRenderTree/chromium/TestRunner/src/config.h: Copied from Tools/DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h.
-
-2013-02-06  Mike West  <mkwst@chromium.org>
-
-        Add an ENABLE_NOSNIFF feature flag.
-        https://bugs.webkit.org/show_bug.cgi?id=109029
-
-        Reviewed by Jochen Eisinger.
-
-        This new flag will control the behavior of 'X-Content-Type-Options: nosniff'
-        when processing script and other resource types.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2013-02-06  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: Implement DTMF support in RTCPeerConnection
-        https://bugs.webkit.org/show_bug.cgi?id=106782
-
-        Reviewed by Adam Barth.
-
-        Adding Mock functionality for the DTMFSender.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/MockWebRTCDTMFSenderHandler.cpp: Added.
-        (DTMFSenderToneTask):
-        (DTMFSenderToneTask::DTMFSenderToneTask):
-        (MockWebRTCDTMFSenderHandler::MockWebRTCDTMFSenderHandler):
-        (MockWebRTCDTMFSenderHandler::setClient):
-        (MockWebRTCDTMFSenderHandler::currentToneBuffer):
-        (MockWebRTCDTMFSenderHandler::canInsertDTMF):
-        (MockWebRTCDTMFSenderHandler::insertDTMF):
-        * DumpRenderTree/chromium/MockWebRTCDTMFSenderHandler.h: Copied from Source/Platform/chromium/public/WebMediaStreamTrack.h.
-        (MockWebRTCDTMFSenderHandler):
-        (MockWebRTCDTMFSenderHandler::taskList):
-        (MockWebRTCDTMFSenderHandler::clearToneBuffer):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (MockWebRTCPeerConnectionHandler::createDTMFSender):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.h:
-        (MockWebRTCPeerConnectionHandler):
-
-2013-02-06  Christophe Dumez  <ch.dumez@sisa.samsung.com>
-
-        Unreviewed. Update my email address in committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-05  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        [CMake] Don't warn unused cmake variables which aren't used by cmake ports
-        https://bugs.webkit.org/show_bug.cgi?id=108761
-
-        Reviewed by Laszlo Gombos.
-
-        Ignore unused macro variables which aren't used by cmake ports.
-
-        * Scripts/webkitdirs.pm:
-        (generateBuildSystemFromCMakeProject):
-
-2013-02-05  Julie Parent  <jparent@chromium.org>
-
-        Add cc_unittests to the dashboards
-        https://bugs.webkit.org/show_bug.cgi?id=108878
-
-        Reviewed by Dirk Pranke.
-
-        * TestResultServer/static-dashboards/builders.js:
-        (loadBuildersList):
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (currentBuilderGroupCategory):
-
-2013-02-05  Adam Barth  <abarth@webkit.org>
-
-        DumpRenderTree should be able to enable the threaded parser
-        https://bugs.webkit.org/show_bug.cgi?id=108970
-
-        Reviewed by Eric Seidel.
-
-        We can now enable the parser at runtime using --enable-threaded-html-parser.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/TestRunner/public/WebPreferences.h:
-        (WebPreferences):
-        * DumpRenderTree/chromium/TestRunner/src/WebPreferences.cpp:
-        (WebTestRunner::WebPreferences::reset):
-        (WebTestRunner::WebPreferences::applyTo):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::resetWebSettings):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::setThreadedHTMLParser):
-        (TestShell):
-
-2013-02-05  Benjamin Poulain  <bpoulain@apple.com>
-
-        Make StringBuilder::toAtomicString() consistent with StringBuilder::toString() for strings of null length
-        https://bugs.webkit.org/show_bug.cgi?id=108894
-
-        Reviewed by Andreas Kling.
-
-        * TestWebKitAPI/Tests/WTF/StringBuilder.cpp:
-        Extend the tests to check toAtomicString() on an empty builder.
-
-2013-02-05  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] remove methods from the WebTestRunner interface that are only used by WebTestProxyBase
-        https://bugs.webkit.org/show_bug.cgi?id=108926
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/TestRunner/public/WebTestRunner.h:
-        (WebKit):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-
-2013-02-05  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] remove unneccessary 0 checks for testRunner now that the TestRunner library owns it
-        https://bugs.webkit.org/show_bug.cgi?id=108923
-
-        Reviewed by Kentaro Hara.
-
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner):
-        (WebTestRunner::WebTestProxyBase::shouldBeginEditing):
-        (WebTestRunner::WebTestProxyBase::shouldEndEditing):
-        (WebTestRunner::WebTestProxyBase::shouldInsertNode):
-        (WebTestRunner::WebTestProxyBase::shouldInsertText):
-        (WebTestRunner::WebTestProxyBase::shouldChangeSelectedRange):
-        (WebTestRunner::WebTestProxyBase::shouldDeleteRange):
-        (WebTestRunner::WebTestProxyBase::shouldApplyStyle):
-        (WebTestRunner::WebTestProxyBase::didBeginEditing):
-        (WebTestRunner::WebTestProxyBase::didChangeSelection):
-        (WebTestRunner::WebTestProxyBase::didChangeContents):
-        (WebTestRunner::WebTestProxyBase::didEndEditing):
-        (WebTestRunner::WebTestProxyBase::createView):
-        (WebTestRunner::WebTestProxyBase::setStatusText):
-        (WebTestRunner::WebTestProxyBase::didStopLoading):
-        (WebTestRunner::WebTestProxyBase::isSmartInsertDeleteEnabled):
-        (WebTestRunner::WebTestProxyBase::isSelectTrailingWhitespaceEnabled):
-        (WebTestRunner::WebTestProxyBase::willPerformClientRedirect):
-        (WebTestRunner::WebTestProxyBase::didCancelClientRedirect):
-        (WebTestRunner::WebTestProxyBase::didStartProvisionalLoad):
-        (WebTestRunner::WebTestProxyBase::didReceiveServerRedirectForProvisionalLoad):
-        (WebTestRunner::WebTestProxyBase::didFailProvisionalLoad):
-        (WebTestRunner::WebTestProxyBase::didCommitProvisionalLoad):
-        (WebTestRunner::WebTestProxyBase::didReceiveTitle):
-        (WebTestRunner::WebTestProxyBase::didFinishDocumentLoad):
-        (WebTestRunner::WebTestProxyBase::didHandleOnloadEvents):
-        (WebTestRunner::WebTestProxyBase::didFailLoad):
-        (WebTestRunner::WebTestProxyBase::didFinishLoad):
-        (WebTestRunner::WebTestProxyBase::didChangeLocationWithinPage):
-        (WebTestRunner::WebTestProxyBase::didDisplayInsecureContent):
-        (WebTestRunner::WebTestProxyBase::didRunInsecureContent):
-        (WebTestRunner::WebTestProxyBase::didDetectXSS):
-        (WebTestRunner::WebTestProxyBase::assignIdentifierToRequest):
-        (WebTestRunner::WebTestProxyBase::willRequestResource):
-        (WebTestRunner::WebTestProxyBase::didCreateDataSource):
-        (WebTestRunner::WebTestProxyBase::willSendRequest):
-        (WebTestRunner::WebTestProxyBase::didReceiveResponse):
-        (WebTestRunner::WebTestProxyBase::didFinishResourceLoad):
-        (WebTestRunner::WebTestProxyBase::didFailResourceLoad):
-        (WebTestRunner::WebTestProxyBase::runModalBeforeUnloadDialog):
-        (WebTestRunner::WebTestProxyBase::locationChangeDone):
-        (WebTestRunner::WebTestProxyBase::decidePolicyForNavigation):
-        (WebTestRunner::WebTestProxyBase::willCheckAndDispatchMessageEvent):
-
-2013-02-04  Alan Cutter  <alancutter@chromium.org>
-
-        EWS bots don't remove untracked files after processing a patch
-        https://bugs.webkit.org/show_bug.cgi?id=108891
-
-        Reviewed by Adam Barth.
-
-        Added option to remove untracked files in the bot's repo.
-
-        * EWSTools/start-queue.sh:
-
-2013-02-04  Benjamin Poulain  <bpoulain@apple.com>
-
-        Kill suspendAnimation(), resumeAnimation() and numberOfActiveAnimations() from DRT/WTR; use Internals
-        https://bugs.webkit.org/show_bug.cgi?id=108741
-
-        Reviewed by Tony Chang.
-
-        Remove all support for suspendAnimation(), resumeAnimation() and numberOfActiveAnimations().
-
-        * DumpRenderTree/TestRunner.cpp:
-        (TestRunner::staticFunctions):
-        * DumpRenderTree/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        * DumpRenderTree/gtk/TestRunnerGtk.cpp:
-        * DumpRenderTree/mac/TestRunnerMac.mm:
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunner):
-        * DumpRenderTree/win/TestRunnerWin.cpp:
-        * DumpRenderTree/wx/TestRunnerWx.cpp:
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-
-2013-02-04  Nico Weber  <thakis@chromium.org>
-
-        [chromium] Try to get WebKit building with enable_web_intents set to 0 on Windows too.
-        https://bugs.webkit.org/show_bug.cgi?id=108887
-
-        Reviewed by Kentaro Hara.
-
-        This is a follow-up to http://trac.webkit.org/changeset/141614. The
-        Mac and Linux linkers didn't complain about the reference to
-        WebIntent in that function for some reason (probably because it's
-        a dead function that's stripped).
-
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-
-2013-02-04  Julie Parent  <jparent@chromium.org>
-
-        Dashboard cleanup: Make builder a real dashboardSpecificParameter.
-        https://bugs.webkit.org/show_bug.cgi?id=108706
-
-        Reviewed by Dirk Pranke.
-        
-        Add builder to g_defaultDashboardSpecificParameter maps for the
-        dashboards where it is used (flakiness, timeline, treemap).
-        Default it to null, and then update reads of it to check the
-        builder group's default if one is not set, rather than trying to
-        set and track this everywhere.
-        This allows us to remove tons of special-casing of builder parsing,
-        including where we used to add it to the query string even when the
-        user did not specify it.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (parseParameters):
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (generatePage):
-        (handleQueryParameterChange):
-        * TestResultServer/static-dashboards/loader.js:
-        (.):
-        * TestResultServer/static-dashboards/timeline_explorer.html:
-        * TestResultServer/static-dashboards/treemap.html:
-
-2013-02-04  Julie Parent  <jparent@chromium.org>
-
-        Setting tests on flakiness dashboard should invalidate builder.
-        https://bugs.webkit.org/show_bug.cgi?id=108521
-
-        Reviewed by Dirk Pranke.
-        
-        When you move into a cross builder view, builder should not still be
-        set.  Currently, it is deleted from the internal state, but still shows
-        up in the url, causing the current state and the hash to not match.
-        
-        To see this in action, load the flakiness dashboard, select a builder,
-        and then click on an individual test, to get into individual test view.
-        The url will still have the builder you selected listed, even though it
-        is cleared in the UI.
-        
-        The fix is to consider 'tests' to be a parameter that invalidates builder.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-
-2013-02-04  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        [EFL][WK2] Introduce a WebView class as counterpart for WKViewRef
-        https://bugs.webkit.org/show_bug.cgi?id=107931
-
-        Reviewed by Anders Carlsson.
-
-        Change platformView to be a WKView and use WKViewGetEvasObject
-        for the places where an Evas_Object is needed.
-
-        Instead of extracting the Ecore_Evas* from the m_view we use
-        the m_window instead, which actually holds the it.
-
-        * TestWebKitAPI/PlatformWebView.h:
-        * TestWebKitAPI/efl/PlatformWebView.cpp:
-        (TestWebKitAPI::PlatformWebView::PlatformWebView):
-        (TestWebKitAPI::PlatformWebView::~PlatformWebView):
-        (TestWebKitAPI::PlatformWebView::resizeTo):
-        (TestWebKitAPI::PlatformWebView::page):
-        (TestWebKitAPI::PlatformWebView::simulateSpacebarKeyPress):
-        (TestWebKitAPI::PlatformWebView::simulateMouseMove):
-        (TestWebKitAPI::PlatformWebView::simulateRightClick):
-        * WebKitTestRunner/PlatformWebView.h:
-        * WebKitTestRunner/efl/EventSenderProxyEfl.cpp:
-        (WTR::EventSenderProxy::sendTouchEvent):
-        (WTR::EventSenderProxy::setTouchModifier):
-        * WebKitTestRunner/efl/PlatformWebViewEfl.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-        (WTR::PlatformWebView::~PlatformWebView):
-        (WTR::PlatformWebView::resizeTo):
-        (WTR::PlatformWebView::page):
-        (WTR::PlatformWebView::focus):
-        (WTR::PlatformWebView::windowFrame):
-        (WTR::PlatformWebView::setWindowFrame):
-        (WTR::PlatformWebView::windowSnapshotImage):
-
-2013-02-04  Timothy Loh  <timloh@chromium.com>
-
-        Don't update author info in PrepareChangeLog and allow users to skip the PrepareChangeLog step entirely.
-        https://bugs.webkit.org/show_bug.cgi?id=108788
-
-        Reviewed by Ryosuke Niwa.
-
-        As per discussion in Bug 74358, it's probably preferable to remove the
-        behaviour of updating the author details in a ChangeLog entry. We also
-        want to be able to skip preparing change logs (e.g. rebaselining many
-        tests), so a --no-prepare-changelogs option is added to webkit-patch.
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        (ChangeLogEntry._parse_entry):
-        (ChangeLogEntry.date): Added
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-        (test_parse_log_entries_from_changelog):
-        * Scripts/webkitpy/tool/commands/commandtest.py:
-        (CommandsTest.assert_execute_outputs):
-        * Scripts/webkitpy/tool/steps/options.py:
-        (Options): Added --no-prepare-changelogs
-        * Scripts/webkitpy/tool/steps/preparechangelog.py:
-        (PrepareChangeLog.options):
-        (PrepareChangeLog._merge_entries): date_line() gets the entire line, including
-        the author's name and email, but we only want to replace the date.
-        (PrepareChangeLog.run):
-        * Scripts/webkitpy/tool/steps/preparechangelog_unittest.py:
-        (PrepareChangeLogTest.test_resolve_existing_entry): Added tests for changed
-        authors. Removed unneeded variable.
-
-2013-02-04  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] Remove WebEventSender and WebAccessibilityController from public TestRunner API
-        https://bugs.webkit.org/show_bug.cgi?id=108467
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/public/WebAccessibilityController.h: Removed.
-        * DumpRenderTree/chromium/TestRunner/public/WebEventSender.h: Removed.
-        * DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h:
-        (WebTestRunner):
-        (WebTestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebTestRunner):
-        (WebTestProxyBase):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestRunner.h:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        (WebTestRunner::TestInterfaces::TestInterfaces):
-        (WebTestRunner::TestInterfaces::setWebView):
-        (WebTestRunner::TestInterfaces::webView):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.h:
-        (TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebAccessibilityController.cpp: Removed.
-        * DumpRenderTree/chromium/TestRunner/src/WebEventSender.cpp: Removed.
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestRunner::WebTestInterfaces::WebTestInterfaces):
-        (WebTestRunner::WebTestInterfaces::~WebTestInterfaces):
-        (WebTestRunner::WebTestInterfaces::setWebView):
-        (WebTestRunner::WebTestInterfaces::setDelegate):
-        (WebTestRunner::WebTestInterfaces::bindTo):
-        (WebTestRunner::WebTestInterfaces::resetAll):
-        (WebTestRunner::WebTestInterfaces::setTestIsRunning):
-        (WebTestRunner::WebTestInterfaces::webView):
-        (WebTestRunner::WebTestInterfaces::testRunner):
-        (WebTestRunner::WebTestInterfaces::testInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::setInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestRunner.cpp: Removed.
-        * DumpRenderTree/chromium/TestShell.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2013-02-04  Bruno de Oliveira Abinader  <bruno.abinader@basyskom.com>
-
-        [EFL] Add "full screen" parameter to MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=108850
-
-        Reviewed by Antonio Gomes.
-
-        Implements the {-F,--full-screen}={true,false} parameter to WebKit EFL's
-        MiniBrowser.
-
-        * MiniBrowser/efl/main.c:
-        (window_create):
-        (elm_main):
-        Added '-F/--full-screen' parameter functionality.
-
-2013-02-04  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] remove WebTestPlugin from the public TestRunner API
-        https://bugs.webkit.org/show_bug.cgi?id=108467
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestPlugin.h: Removed.
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebKit):
-        (WebTestProxyBase):
-        (WebTestRunner::WebTestProxy::createPlugin):
-        * DumpRenderTree/chromium/TestRunner/src/TestPlugin.cpp: Renamed from Tools/DumpRenderTree/chromium/TestRunner/src/WebTestPlugin.cpp.
-        (WebTestRunner::TestPlugin::TestPlugin):
-        (WebTestRunner):
-        (WebTestRunner::TestPlugin::~TestPlugin):
-        (WebTestRunner::TestPlugin::initialize):
-        (WebTestRunner::TestPlugin::destroy):
-        (WebTestRunner::TestPlugin::updateGeometry):
-        (WebTestRunner::TestPlugin::parsePrimitive):
-        (WebTestRunner::TestPlugin::parseColor):
-        (WebTestRunner::TestPlugin::parseOpacity):
-        (WebTestRunner::TestPlugin::parseBoolean):
-        (WebTestRunner::TestPlugin::initScene):
-        (WebTestRunner::TestPlugin::drawScene):
-        (WebTestRunner::TestPlugin::destroyScene):
-        (WebTestRunner::TestPlugin::initProgram):
-        (WebTestRunner::TestPlugin::initPrimitive):
-        (WebTestRunner::TestPlugin::drawPrimitive):
-        (WebTestRunner::TestPlugin::loadShader):
-        (WebTestRunner::TestPlugin::loadProgram):
-        (WebTestRunner::TestPlugin::handleInputEvent):
-        (WebTestRunner::TestPlugin::handleDragStatusUpdate):
-        (WebTestRunner::TestPlugin::create):
-        (WebTestRunner::TestPlugin::mimeType):
-        * DumpRenderTree/chromium/TestRunner/src/TestPlugin.h: Added.
-        (WebTestRunner):
-        (TestPlugin):
-        (WebTestRunner::TestPlugin::scriptableObject):
-        (WebTestRunner::TestPlugin::canProcessDrag):
-        (WebTestRunner::TestPlugin::paint):
-        (WebTestRunner::TestPlugin::updateFocus):
-        (WebTestRunner::TestPlugin::updateVisibility):
-        (WebTestRunner::TestPlugin::acceptsInputEvents):
-        (WebTestRunner::TestPlugin::didReceiveResponse):
-        (WebTestRunner::TestPlugin::didReceiveData):
-        (WebTestRunner::TestPlugin::didFinishLoading):
-        (WebTestRunner::TestPlugin::didFailLoading):
-        (WebTestRunner::TestPlugin::didFinishLoadingFrameRequest):
-        (WebTestRunner::TestPlugin::didFailLoadingFrameRequest):
-        (WebTestRunner::TestPlugin::isPlaceholder):
-        (WebTestRunner::TestPlugin::prepareTexture):
-        (WebTestRunner::TestPlugin::context):
-        (Scene):
-        (WebTestRunner::TestPlugin::Scene::Scene):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::createPlugin):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createPlugin):
-
-2013-02-04  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Add a new method for obtaining a build-type-dependent path,
-        instead of modifying all call sites to pass it in.
-
-        Reviewed by Martin Robinson.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner.__init__): use the new method, which takes a tuple.
-        (TestRunner._setup_testing_environment): ditto.
-        * gtk/common.py:
-        (get_build_path): accept a tuple that may include Release and
-        Debug as build types, for searching.
-        (build_path_for_build_types): new method that finds the path when
-        it is dependent on the build type.
-        (build_path): restore its original behaviour.
-
-2013-02-04  David Kilzer  <ddkilzer@apple.com>
-
-        Remove duplicate entry from DumpRenderTree Xcode project
-
-            $ uniq Tools/DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj | diff -u - Tools/DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj | patch -p0 -R
-            patching file Tools/DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        Remove duplicate.
-
-2013-02-04  David Kilzer  <ddkilzer@apple.com>
-
-        Sort TestWebKitAPI Xcode project file
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-
-2013-02-03  Alan Cutter  <alancutter@chromium.org>
-
-        PatchLogs are not getting created on QueueStatusServer
-        https://bugs.webkit.org/show_bug.cgi?id=108593
-
-        Reviewed by Eric Seidel.
-
-        Added missing "added" patch event to submit-to-ews handler.
-
-        * QueueStatusServer/app.yaml:
-        * QueueStatusServer/handlers/submittoews.py:
-        (SubmitToEWS._add_attachment_to_ews_queues):
-
-2013-02-03  Douglas Stockwell  <dstockwell@chromium.org>
-
-        Unreviewed. Add dstockwell as a contributor in comitters.py and to the watchlist for animation
-        https://bugs.webkit.org/show_bug.cgi?id=108777
-
-        * Scripts/webkitpy/common/config/committers.py:
-        * Scripts/webkitpy/common/config/watchlist:
-
-2013-02-03  Sam Weinig  <sam@webkit.org>
-
-        Fix failing test.
-
-        * TestWebKitAPI/Tests/WebKit2/ShouldGoToBackForwardListItem.cpp:
-        (TestWebKitAPI::didFinishLoadForFrame):
-
-2013-02-03  Timothy Loh  <timloh@chromium.com>
-
-        Make ChangeLogEntry detect annotations by prepare-ChangeLog (Added/Removed/Copied from/Renamed from) as clean.
-        https://bugs.webkit.org/show_bug.cgi?id=108433
-
-        Reviewed by Eric Seidel.
-
-        PrepareChangeLog is supposed to update the file/function list if we
-        haven't touched it, but the existing regex doesn't handle the
-        annotations prepare-ChangeLog adds (e.g. "Added.")
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        (ChangeLogEntry.is_touched_files_text_clean):
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-        (test_is_touched_files_text_clean):
-
-2013-02-02  Dean Jackson  <dino@apple.com>
-
-        Add Antoine Quint to the list of committers
-        https://bugs.webkit.org/show_bug.cgi?id=108750
-
-        No review necessary.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-02  Patrick Gansterer  <paroga@webkit.org>
-
-        [CMake] Adopt the WinCE port to new CMake
-        https://bugs.webkit.org/show_bug.cgi?id=108754
-
-        Reviewed by Laszlo Gombos.
-
-        * WinCELauncher/CMakeLists.txt: Mark WinCELauncher
-        as WIN32 target to use the correct entry point.
-
-2013-02-02  Alexey Proskuryakov  <ap@apple.com>
-
-        One is not allowed to use commit-queue to make oneself a committer.
-
-        * Scripts/webkitpy/common/config/committers.py: Rolled out r141693.
-        Also, changed e-mail order for Yongjun Zhang, so that Bugzilla autocomplete works.
-
-2013-02-02  Antoine Quint  <graouts@apple.com>
-
-        Add Antoine Quint to the list of committers
-        https://bugs.webkit.org/show_bug.cgi?id=108750
-
-        Reviewed by Dean Jackson.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-02-01  Adrian Perez de Castro  <aperez@igalia.com>
-
-        [GTK] Building fails in an armv5tel board
-        https://bugs.webkit.org/show_bug.cgi?id=108083
-
-        Reviewed by Martin Robinson.
-
-        In some systems in which $architecture is filled-in from "uname -m"
-        the value may not start with "arm-", but with "armvN", where "N" is
-        an architecture version number. The regexp in isARM() is modified
-        so it covers these kind of cases.
-
-        * Scripts/webkitdirs.pm:
-        (isARM):
-
-2013-02-01  Gregg Tavares  <gman@google.com>
-
-        Update LayoutTests scripts to skip webgl folder on ports
-        https://bugs.webkit.org/show_bug.cgi?id=108705
-
-        Reviewed by Dirk Pranke.
-
-        I'm working on checking in the WebGL Conformance Tests
-        as layout tests into LayoutTests/webgl. For ports
-        that do not have WebGL enabled this changes will
-        skip tests in the "webgl" folder.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port._missing_symbol_to_skipped_tests):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (PortTestCase.test_skipped_directories_for_symbols):
-
-2013-02-01  Roger Fong  <roger_fong@apple.com>
-
-        Unreviewed. Fix for webkitpy tests.
-
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        (RunTests.run):
-        * Scripts/webkitpy/tool/steps/runtests_unittest.py:
-
-2013-02-01  Jer Noble  <jer.noble@apple.com>
-
-        LLDB: add synthetic provider for WTF::HashTable
-        https://bugs.webkit.org/show_bug.cgi?id=108718
-
-        Reviewed by Darin Adler.
-
-        Add a synthetic provider which will emit the contents of a given
-        WTF::HashTable. This allows clients using Xcode/lldb to enumerate
-        the hash contents.
-
-        * lldb/lldb_webkit.py:
-        (__lldb_init_module):
-        (__lldb_init_module.lldb_webkit):
-        (WTFHashTable_SummaryProvider):
-        (WTFVectorProvider.has_children):
-        (WTFHashTableProvider):
-        (WTFHashTableProvider.__init__):
-        (WTFHashTableProvider.num_children):
-        (WTFHashTableProvider.get_child_index):
-        (WTFHashTableProvider.get_child_at_index):
-        (WTFHashTableProvider.tableSize):
-        (WTFHashTableProvider.keyCount):
-        (WTFHashTableProvider.update):
-        (WTFHashTableProvider.has_children):
-
-2013-02-01  Roger Fong  <roger_fong@apple.com>
-
-        Unreviewed. Fix webkitpy tests since a build_style is not specified in some cases.
-
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        (RunTests.run):
-
-2013-02-01  Roger Fong  <roger_fong@apple.com>
-
-        Unreviewed. Re-try enabling Win-EWS tests for the third time. 
-        https://bugs.webkit.org/show_bug.cgi?id=107968
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (WinEWS):
-
-2013-01-31  Roger Fong  <roger_fong@apple.com>
-
-        Fix test scripts for EWS bots to get them running once and for all.
-        https://bugs.webkit.org/show_bug.cgi?id=108422
-
-        Reviewed by Timothy Horton.
-
-        Disabling --quiet option on Windows for now because that fails when we try to use /dev/null.
-        runtests.py was not passing in a configuration to run-webkit-tests which causes DRT to build in release by default.
-        However, we build in Debug only on the EWS Windows bots, which caused the build to fail.
-
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        (RunTests.options):
-        (RunTests.run):
-
-2013-02-01  Nico Weber  <thakis@chromium.org>
-
-        [chromium] Build webkit with enable_web_intents set to 0.
-        https://bugs.webkit.org/show_bug.cgi?id=108408
-
-        Reviewed by Tony Chang.
-
-        I'll then make chromium build fine with that, then switch
-        enable_web_intents to 0, roll that into webkit, and then
-        actually remove the code hidden behind this flag.
-
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::registerIntentService):
-        (WebTestRunner::WebTestProxyBase::dispatchIntent):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-02-01  Zan Dobersek  <zdobersek@igalia.com>
-
-        Set the GTK 64-bit Debug builder to build and test only WebKit1
-        https://bugs.webkit.org/show_bug.cgi?id=108648
-
-        Reviewed by Philippe Normand.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Change the builder name, type and
-        build directory to note that the builder builds and tests only the WebKit1 port on the GTK platform.
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (CompileWebKit1Only): Add the new build class that builds only the WebKit1 port of the builder's platform.
-        (BuildAndTestWebKit1OnlyFactory): Add the new factory that uses the CompileWebKit1Only build class
-        for building and testing only WebKit1 on the builder's platform.
-
-2013-02-01  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move ownership of TestRunner object to TestInterfaces
-        https://bugs.webkit.org/show_bug.cgi?id=108464
-
-        Reviewed by Adam Barth.
-
-        Before, TestShell owned the class. This also removes the last include
-        from DumpRenderTree to TestRunner/src.
-
-        This also deletes TestDelegate and uses WebTestDelegate everywhere
-        instead.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h:
-        (WebTestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestRunner.h:
-        (WebKit):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityControllerChromium.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityControllerChromium.h:
-        (WebTestRunner):
-        (WebTestRunner::AccessibilityController::setDelegate):
-        (AccessibilityController):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::makeMenuItemStringsFor):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.h:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::setDelegate):
-        (EventSender):
-        * DumpRenderTree/chromium/TestRunner/src/GamepadController.cpp:
-        (WebTestRunner::GamepadController::setDelegate):
-        * DumpRenderTree/chromium/TestRunner/src/GamepadController.h:
-        (WebTestRunner):
-        (GamepadController):
-        * DumpRenderTree/chromium/TestRunner/src/TestDelegate.h: Removed.
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        (WebTestRunner::TestInterfaces::TestInterfaces):
-        (WebTestRunner::TestInterfaces::~TestInterfaces):
-        (WebTestRunner::TestInterfaces::setWebView):
-        (WebTestRunner::TestInterfaces::setDelegate):
-        (WebTestRunner::TestInterfaces::bindTo):
-        (WebTestRunner::TestInterfaces::resetAll):
-        (WebTestRunner):
-        (WebTestRunner::TestInterfaces::setTestIsRunning):
-        (WebTestRunner::TestInterfaces::testRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.h:
-        (WebTestRunner):
-        (TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (WebKit):
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestRunner::WebTestInterfaces::Internal::testRunner):
-        (WebTestInterfaces::Internal):
-        (WebTestRunner::WebTestInterfaces::Internal::Internal):
-        (WebTestRunner::WebTestInterfaces::Internal::setDelegate):
-        (WebTestRunner::WebTestInterfaces::Internal::setTestIsRunning):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestRunner.cpp: Added.
-        (WebTestRunner):
-        (WebTestRunner::WebTestRunner::WebTestRunner):
-        (WebTestRunner::WebTestRunner::shouldDumpEditingCallbacks):
-        (WebTestRunner::WebTestRunner::shouldDumpAsText):
-        (WebTestRunner::WebTestRunner::setShouldDumpAsText):
-        (WebTestRunner::WebTestRunner::shouldGeneratePixelResults):
-        (WebTestRunner::WebTestRunner::setShouldGeneratePixelResults):
-        (WebTestRunner::WebTestRunner::shouldDumpChildFrameScrollPositions):
-        (WebTestRunner::WebTestRunner::shouldDumpChildFramesAsText):
-        (WebTestRunner::WebTestRunner::shouldDumpAsAudio):
-        (WebTestRunner::WebTestRunner::audioData):
-        (WebTestRunner::WebTestRunner::shouldDumpFrameLoadCallbacks):
-        (WebTestRunner::WebTestRunner::setShouldDumpFrameLoadCallbacks):
-        (WebTestRunner::WebTestRunner::shouldDumpUserGestureInFrameLoadCallbacks):
-        (WebTestRunner::WebTestRunner::stopProvisionalFrameLoads):
-        (WebTestRunner::WebTestRunner::shouldDumpTitleChanges):
-        (WebTestRunner::WebTestRunner::shouldDumpCreateView):
-        (WebTestRunner::WebTestRunner::canOpenWindows):
-        (WebTestRunner::WebTestRunner::shouldDumpResourceLoadCallbacks):
-        (WebTestRunner::WebTestRunner::shouldDumpResourceRequestCallbacks):
-        (WebTestRunner::WebTestRunner::shouldDumpResourceResponseMIMETypes):
-        (WebTestRunner::WebTestRunner::webPermissions):
-        (WebTestRunner::WebTestRunner::shouldDumpStatusCallbacks):
-        (WebTestRunner::WebTestRunner::shouldDumpProgressFinishedCallback):
-        (WebTestRunner::WebTestRunner::shouldDumpBackForwardList):
-        (WebTestRunner::WebTestRunner::deferMainResourceDataLoad):
-        (WebTestRunner::WebTestRunner::shouldDumpSelectionRect):
-        (WebTestRunner::WebTestRunner::testRepaint):
-        (WebTestRunner::WebTestRunner::sweepHorizontally):
-        (WebTestRunner::WebTestRunner::isPrinting):
-        (WebTestRunner::WebTestRunner::shouldStayOnPageAfterHandlingBeforeUnload):
-        (WebTestRunner::WebTestRunner::setTitleTextDirection):
-        (WebTestRunner::WebTestRunner::httpHeadersToClear):
-        (WebTestRunner::WebTestRunner::shouldBlockRedirects):
-        (WebTestRunner::WebTestRunner::willSendRequestShouldReturnNull):
-        (WebTestRunner::WebTestRunner::setTopLoadingFrame):
-        (WebTestRunner::WebTestRunner::topLoadingFrame):
-        (WebTestRunner::WebTestRunner::policyDelegateDone):
-        (WebTestRunner::WebTestRunner::policyDelegateEnabled):
-        (WebTestRunner::WebTestRunner::policyDelegateIsPermissive):
-        (WebTestRunner::WebTestRunner::policyDelegateShouldNotifyDone):
-        (WebTestRunner::WebTestRunner::shouldInterceptPostMessage):
-        (WebTestRunner::WebTestRunner::isSmartInsertDeleteEnabled):
-        (WebTestRunner::WebTestRunner::isSelectTrailingWhitespaceEnabled):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::initialize):
-        (TestShell::createMainWindow):
-        (TestShell::~TestShell):
-        (TestShell::runFileTest):
-        (TestShell::resetTestController):
-        (TestShell::dump):
-        (TestShell::bindJSObjectsToWindow):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::testRunner):
-        (TestShell):
-
-2013-02-01  Alan Cutter  <alancutter@chromium.org>
-
-        PatchLog process durations are increasing linearly with time (faulty data logging)
-        https://bugs.webkit.org/show_bug.cgi?id=108621
-
-        Reviewed by Eric Seidel.
-
-        Added a check to prevent a stop event from happening to the same patch multiple times.
-
-        * QueueStatusServer/loggers/recordpatchevent.py:
-        (RecordPatchEvent.stopped):
-
-2013-02-01  Manuel Rego Casasnovas  <rego@igalia.com>
-
-        [GTK][WK2] MiniBrowser fullscreen signals support
-        https://bugs.webkit.org/show_bug.cgi?id=108005
-
-        Reviewed by Carlos Garcia Campos.
-
-        Shows a label for 2 seconds using overlay (if GTK >= 3.2.0) and hides
-        the toolbar when entering fullscreen. When leaving fullscreen the
-        label is hidden (if it's not hidden yet) and the toolbar is shown again.
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (_BrowserWindow):
-        (fullScreenMessageTimeoutCallback):
-        (webViewEnterFullScreen):
-        (webViewLeaveFullScreen):
-        (browserWindowFinalize):
-        (browserWindowConstructed):
-
-2013-02-01  Alexis Menard  <alexis@webkit.org>
-
-        Enable unprefixed CSS transitions by default.
-        https://bugs.webkit.org/show_bug.cgi?id=108216
-
-        Reviewed by Dean Jackson.
-
-        Rename the flag CSS_TRANSFORMS_ANIMATIONS_TRANSITIONS_UNPREFIXED
-        to CSS_TRANSFORMS_ANIMATIONS_UNPREFIXED which will be used later to 
-        guard the unprefixing work for CSS Transforms and animations.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2013-01-31  David Farler  <dfarler@apple.com>
-
-        Provide a sensible default architecture when building on iOS SDKs
-        https://bugs.webkit.org/show_bug.cgi?id=108395
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/webkitdirs.pm:
-        (determineArchitecture): Anchor SDK regex matches at the beginning.
-
-2013-01-31  Ryosuke Niwa  <rniwa@webkit.org>
-
-        buildbot should not rely on webkitpy
-        https://bugs.webkit.org/show_bug.cgi?id=107379
-
-        Reviewed by Eric Seidel.
-
-        Move all Python files used in buildbot configuration into BuildSlaveSupport directory.
-        Once this patch is landed, we can stop restarting the master on webkitpy changes.
-
-        * BuildSlaveSupport/build.webkit.org-config/committer_auth.py:
-        * BuildSlaveSupport/build.webkit.org-config/htdigestparser.py: Copied from Tools/Scripts/webkitpy/common/net/htdigestparser.py.
-        * BuildSlaveSupport/build.webkit.org-config/htdigestparser_unittest.py: Copied from Tools/Scripts/webkitpy/common/net/htdigestparser_unittest.py.
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        * BuildSlaveSupport/build.webkit.org-config/wkbuild.py: Copied from Tools/Scripts/webkitpy/common/config/build.py.
-        * BuildSlaveSupport/build.webkit.org-config/wkbuild_unittest.py: Copied from Tools/Scripts/webkitpy/common/config/build_unittest.py.
-        (ShouldBuildTest.test_should_build):
-        * Scripts/webkitpy/common/config/build.py: Removed.
-        * Scripts/webkitpy/common/config/build_unittest.py: Removed.
-        * Scripts/webkitpy/common/net/htdigestparser.py: Removed.
-        * Scripts/webkitpy/common/net/htdigestparser_unittest.py: Removed.
-
-2013-01-31  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r141349.
-        http://trac.webkit.org/changeset/141349
-        https://bugs.webkit.org/show_bug.cgi?id=108422
-
-        "yet another windows ews fix needed" (Requested by lforschler
-        on #webkit).
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (WinEWS):
-
-2013-01-31  Rouslan Solomakhin  <rouslan@chromium.org>
-
-        [Chromium] Suggest 'uppercase' for multi-word misspelling 'upper case'
-        https://bugs.webkit.org/show_bug.cgi?id=108509
-
-        Reviewed by Tony Chang.
-
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.cpp:
-        (append): Added utility function to append WebString to WebVector.
-        (MockSpellCheck::fillSuggestionList): Suggest 'uppercase' for misspelling 'upper case'.
-
-2013-01-31  David Farler  <dfarler@apple.com>
-
-        Provide a sensible default architecture when building on iOS SDKs
-        https://bugs.webkit.org/show_bug.cgi?id=108395
-
-        Reviewed by Joseph Pecoraro.
-
-        * Scripts/webkitdirs.pm:
-        (determineArchitecture):
-        Check for iphoneos and iphonesimulator SDKs for a default arch.
-        (determineXcodeSDK): Added.
-        (xcodeSDK): Added.
-        (XcodeOptions): Add ARCHS= if defined.
-
-2013-01-31  Christopher Cameron  <ccameron@chromium.org>
-
-        Fix rubber-band effect on non-scrollable pages
-        https://bugs.webkit.org/show_bug.cgi?id=107611
-
-        Add mouseWheelBegin function to EventSender to allow
-        event-based rubber-banding tests.
-
-        Reviewed by Antonio Gomes.
-
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::EventSender):
-        (WebTestRunner::EventSender::mouseDragBegin):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.h:
-        (EventSender):
-
-2013-01-31  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Notify the WebWidget when the WebViewHost is about to tear down compositing support
-        https://bugs.webkit.org/show_bug.cgi?id=108518
-
-        Reviewed by Adrienne Walker.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::shutdown):
-
-2013-01-31  Pratik Solanki  <psolanki@apple.com>
-
-        DumpRenderTree should put NSSound calls inside USE(APPKIT)
-        https://bugs.webkit.org/show_bug.cgi?id=108499
-
-        Reviewed by Andy Estes.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dumpRenderTree):
-
-2013-01-30  Brian Weinstein  <bweinstein@apple.com>
-
-        Add a call to the page UI client to determine if a plug-in should load
-        https://bugs.webkit.org/show_bug.cgi?id=108407
-        <rdar://problem/13066332>
-
-        Add entries for the new function in the necessary structs.
-
-        Reviewed by Anders Carlsson.
-
-        * MiniBrowser/mac/WK2BrowserWindowController.m:
-        (-[WK2BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::createOtherPage):
-        (WTR::TestController::createWebViewWithOptions):
-
-2013-01-31  Florin Malita  <fmalita@chromium.org>
-
-        [Chromium] Unreviewed gardening.
-
-        Win build fix after http://trac.webkit.org/changeset/141471.
-
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.cpp:
-        (MockSpellCheck::spellCheckWord):
-
-2013-01-31  Enrica Casucci  <enrica@apple.com>
-
-        WebKit2: provide new bundle APIs to allow bundle clients to be notified of pasteboard access.
-        https://bugs.webkit.org/show_bug.cgi?id=108396.
-        <rdar://problem/12920461>
-
-        Reviewed by Alexey Proskuryakov.
-        
-        Adding new WebKit2 test with relevant bundle, to test the new APIs.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2/PasteboardNotifications.mm: Added.
-        (TestWebKitAPI::didReceiveMessageFromInjectedBundle):
-        (TestWebKitAPI::setInjectedBundleClient):
-        * TestWebKitAPI/Tests/WebKit2/PasteboardNotifications_Bundle.cpp: Added.
-        (PasteboardNotificationsTest):
-        (TestWebKitAPI::willWriteToPasteboard):
-        (TestWebKitAPI::getPasteboardDataForRange):
-        (TestWebKitAPI::didWriteToPasteboard):
-        (TestWebKitAPI::PasteboardNotificationsTest::PasteboardNotificationsTest):
-        (TestWebKitAPI::PasteboardNotificationsTest::didCreatePage):
-        * TestWebKitAPI/Tests/WebKit2/execCopy.html: Added.
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp: Updated to reflect
-        changes in InjectedBundleEditorClient.
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-
-2013-01-31  Rouslan Solomakhin  <rouslan@chromium.org>
-
-        [Chromium] Add two-word misspelling to mock spellchecker
-        https://bugs.webkit.org/show_bug.cgi?id=108498
-
-        Reviewed by Tony Chang.
-
-        Some layout tests verify spellcheck behavior when multiple words are
-        marked as a single misspelling. This change adds a two-word misspelling
-        'upper case' to the mock spellchecker used by layout tests.
-
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.cpp:
-        (MockSpellCheck::spellCheckWord): Modified to handle spaces in misspellings.
-        (MockSpellCheck::initializeIfNeeded):  Modified to use a vector instead of a hash table.
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.h:
-        (MockSpellCheck): Changed misspellings container from hash table to vector.
-
-2013-01-31  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Prospective build fix.
-
-        Reviewed by Jocelyn Turcotte.
-
-        Don't create .prl files for intermediate libs as their contents get
-        injected within -Wl,-whole-archive -lFoo -wl,-no-whole-archive.
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2013-01-31  Alan Cutter  <alancutter@chromium.org>
-
-        EWS graphs have unusual data for patch waiting times
-        https://bugs.webkit.org/show_bug.cgi?id=108427
-
-        Reviewed by Eric Seidel.
-
-        The max_patches_waiting QueueLog property may have missed recording patches waiting in idle times when no events are fired to update it. I added a cron job to take care of this issue.
-        The patch wait duration in PatchLogs was being incorrectly updated after a patch expired and was picked up again from the queue. That period should really count towards the processing time instead.
-        Added a WarningLog to record if any erroneous situations occur due to invalid contents in the datastore. These basically highlight if any "impossible" execution paths get executed.
-
-        * QueueStatusServer/app.yaml:
-        * QueueStatusServer/cron.yaml:
-        * QueueStatusServer/handlers/syncqueuelogs.py: Copied from Tools/QueueStatusServer/model/patchlog.py.
-        (SyncQueueLogs):
-        (SyncQueueLogs.get):
-        * QueueStatusServer/loggers/recordpatchevent.py:
-        (RecordPatchEvent.added):
-        (RecordPatchEvent.retrying):
-        (RecordPatchEvent.started):
-        (RecordPatchEvent.stopped):
-        (RecordPatchEvent.updated):
-        * QueueStatusServer/main.py:
-        * QueueStatusServer/model/patchlog.py:
-        (PatchLog.lookup):
-        (PatchLog):
-        (PatchLog.lookup_if_exists):
-        (PatchLog.calculate_process_duration):
-        (PatchLog._generate_key):
-        * QueueStatusServer/model/queuelog.py:
-        (QueueLog.update_max_patches_waiting):
-        (QueueLog._get_or_create_txn):
-        (QueueLog):
-        (QueueLog._get_patches_waiting):
-        * QueueStatusServer/model/warninglog.py: Copied from Tools/QueueStatusServer/model/patchlog.py.
-        (WarningLog):
-        (WarningLog.record):
-
-2013-01-31  Anders Carlsson  <andersca@apple.com>
-
-        Remove Web Intents code from WebKit2
-        https://bugs.webkit.org/show_bug.cgi?id=108506
-
-        Reviewed by Simon Fraser.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-        (InjectedBundlePage):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-
-2013-01-31  Tommy Widenflycht  <tommyw@google.com>
-
-        [chromium] MediaStream API: Rename WebMediaStreamDescriptor and WebMediaStreamComponent to WebMediaStream and WebMediaStreamTrack
-        https://bugs.webkit.org/show_bug.cgi?id=108458
-
-        Reviewed by Adam Barth.
-
-        Only renames, no other code changes.
-
-        * DumpRenderTree/chromium/MockWebMediaStreamCenter.cpp:
-        (MockWebMediaStreamCenter::didEnableMediaStreamTrack):
-        (MockWebMediaStreamCenter::didDisableMediaStreamTrack):
-        (MockWebMediaStreamCenter::didAddMediaStreamTrack):
-        (MockWebMediaStreamCenter::didRemoveMediaStreamTrack):
-        (MockWebMediaStreamCenter::didStopLocalMediaStream):
-        (MockWebMediaStreamCenter::didCreateMediaStream):
-        * DumpRenderTree/chromium/MockWebMediaStreamCenter.h:
-        (MockWebMediaStreamCenter):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (MockWebRTCPeerConnectionHandler::addStream):
-        (MockWebRTCPeerConnectionHandler::removeStream):
-        (MockWebRTCPeerConnectionHandler::getStats):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.h:
-        (MockWebRTCPeerConnectionHandler):
-        * DumpRenderTree/chromium/WebUserMediaClientMock.cpp:
-        (UserMediaRequestTask::UserMediaRequestTask):
-        (WebUserMediaClientMock::requestUserMedia):
-
-2013-01-31  Zan Dobersek  <zdobersek@igalia.com>
-
-        REGRESSION (r141402): incorrectly set injected bundle path when running GTK unit tests
-        https://bugs.webkit.org/show_bug.cgi?id=108496
-
-        Reviewed by Philippe Normand.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner.__init__): Add the build type as a member on the TestRunner interface.
-        (TestRunner._setup_testing_environment): Use the build type member to determine correct path
-        to the injected bundle.
-
-2013-01-31  Christophe Dumez  <dchris@gmail.com>
-
-        [EFL] Disable Web Intents
-        https://bugs.webkit.org/show_bug.cgi?id=108457
-
-        Reviewed by Alexey Proskuryakov.
-
-        Remove EFL DRT code related to Web intents.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::createView):
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        (DumpRenderTreeChrome::onFrameCreated):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.h:
-        (DumpRenderTreeChrome):
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        (TestRunner::sendWebIntentResponse):
-        (TestRunner::deliverWebIntent):
-        * Scripts/webkitperl/FeatureList.pm: Turn off WEB_INTENTS flag
-        for EFL port.
-
-2013-01-31  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Disable force_static_libs_as_shared in developer builds if wk2 is enabled
-
-        Reviewed by Jocelyn Turcotte.
-
-        This is a temporary workaround during the development of #108471, where we move files around
-        but some link time dependencies might remain.
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2013-01-31  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Make it possible to compile WebKit2 Qt related files without access to internal WK2 C++ API
-        https://bugs.webkit.org/show_bug.cgi?id=108472
-
-        Reviewed by Andreas Kling.
-
-        Add a new module to the qmake build system that represents the part of the WebKit2 Qt integration
-        that doesn't depend on WebKit2 internals.
-
-        * qmake/mkspecs/features/webkit_modules.prf:
-        * qmake/mkspecs/modules/webkit2qml.prf: Copied from Source/WebKit2/WebKit2.pro.
-
-2013-01-31  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Remove dead transitional code from WebViewImpl
-        https://bugs.webkit.org/show_bug.cgi?id=107889
-
-        Reviewed by Adam Barth.
-
-        ScrollingCoordinatorChromiumTests need to initialize compositing, so its implementation of
-        WebWidgetClient has to support the new compositor initialization path.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::initializeLayerTreeView):
-        (WebViewHost::setWebWidget):
-
-2013-01-31  Gustavo Noronha Silva  <gns@gnome.org>
-
-        [GTK] run-gtk-tests does not respect the -d argument
-        https://bugs.webkit.org/show_bug.cgi?id=107822
-
-        Reviewed by Philippe Normand.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner.__init__): use the value for the debug option to decide what
-        build_type to request a path for.
-        * gtk/common.py:
-        (get_build_path): now accepts a build_type argument instead of trying both
-        Release and Debug in order, defaults to release.
-        (build_path): takes and passes a build_type argument, no default value.
-
-2013-01-31  Christophe Dumez  <dchris@gmail.com>
-
-        Update Christophe Dumez's email address
-        https://bugs.webkit.org/show_bug.cgi?id=108453
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Update my email address in committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-01-31  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move runModalBeforeUnloadDialog to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=108442
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebTestRunner::WebTestProxy::runModalBeforeUnloadDialog):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::runModalBeforeUnloadDialog):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2013-01-31  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move postMessage related methods to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=108343
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebKit):
-        (WebTestProxyBase):
-        (WebTestRunner::WebTestProxy::willCheckAndDispatchMessageEvent):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::willCheckAndDispatchMessageEvent):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::willCheckAndDispatchMessageEvent):
-
-2013-01-30  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move remaining resource load related methods to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=108334
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestRunner::WebTestDelegate::allowExternalPages):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebKit):
-        (WebTestProxyBase):
-        (WebTestRunner::WebTestProxy::canHandleRequest):
-        (WebTestRunner::WebTestProxy::cannotHandleRequestError):
-        (WebTestRunner::WebTestProxy::didCreateDataSource):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::canHandleRequest):
-        (WebTestRunner):
-        (WebTestRunner::WebTestProxyBase::cannotHandleRequestError):
-        (WebTestRunner::WebTestProxyBase::didCreateDataSource):
-        (WebTestRunner::WebTestProxyBase::willSendRequest):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::canHandleRequest):
-        (WebViewHost::didCreateDataSource):
-        (WebViewHost::willSendRequest):
-        (WebViewHost::allowExternalPages):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2013-01-30  Hajime Morrita  <morrita@google.com>
-
-        Unreviewed test failure fix for r141341.
-
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        (RunTests.run):
-        * Scripts/webkitpy/tool/steps/runtests_unittest.py:
-
-2013-01-30  Levi Weintraub  <leviw@chromium.org>
-
-        [Chromium] WebPluginContainerImpl adding imbalanced touch handler refs
-        https://bugs.webkit.org/show_bug.cgi?id=108381
-
-        Reviewed by James Robinson.
-
-        * DumpRenderTree/chromium/TestRunner/src/WebTestPlugin.cpp: Adding an attribute that
-        tickles the case in WebPluginContainerImpl that imbalanced touch handler refs in Document.
-
-2013-01-30  Julie Parent  <jparent@chromium.org>
-
-        Add a concept of dashboard parameters that invalidate others
-        https://bugs.webkit.org/show_bug.cgi?id=108362
-
-        Reviewed by Dirk Pranke.
-
-        There are certain parameters to the dashboards, that when selected,
-        invalidate others, such as selecting the test type invalidates the
-        builder group. Add this concept to dashboard_base and allow specifc
-        dashboard to add their own invalidating parameters.
-        
-        The result is that when the user takes a specific action, like changing
-        the test type, the builder would get reset to the default for the new
-        test type, rather than erroring or not matching the query param, as is
-        the current behavior.
-        
-        Also deletes some unused code (selectBuilder).
-        
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (invalidateQueryParameters):
-        (setQueryParameter):
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-        * TestResultServer/static-dashboards/timeline_explorer.html:
-        * TestResultServer/static-dashboards/treemap.html:
-
-2013-01-30  Kiran Muppala  <cmuppala@apple.com>
-
-        Disable process suppression of DumpRenderTree on Mac
-        https://bugs.webkit.org/show_bug.cgi?id=108400
-
-        Reviewed by Jessie Berlin.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (prepareConsistentTestingEnvironment): Take assertion to prevent
-        process suppression.
-
-2013-01-30  Roger Fong  <roger_fong@apple.com>
-
-        Enable tests for Windows EWS!
-        https://bugs.webkit.org/show_bug.cgi?id=107968.
-        Patch by Lucas Forschler.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (WinEWS):
-
-2013-01-30  Christophe Dumez  <christophe.dumez@intel.com>
-
-        Add a StringTypeAdapter for ASCIILiteral
-        https://bugs.webkit.org/show_bug.cgi?id=108338
-
-        Reviewed by Benjamin Poulain.
-
-        Add API tests for operator+() taking an ASCIILiteral.
-
-        * TestWebKitAPI/Tests/WTF/StringOperators.cpp:
-        (TestWebKitAPI::TEST):
-
-2013-01-30  Roger Fong  <roger_fong@apple.com>
-
-        Modify runtests.py script so that --skip-failing-tests option is not added when platform is cygwin.
-
-        Rubberstamped by Timothy Horton.
-
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        (RunTests.run):
-
-2013-01-30  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r141205.
-        http://trac.webkit.org/changeset/141205
-        https://bugs.webkit.org/show_bug.cgi?id=108353
-
-        Command for running tests on windows needs to be investigated.
-        (Requested by lforschler on #webkit).
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (WinEWS):
-
-2013-01-30  Tony Chang  <tony@chromium.org>
-
-        [Chromium] Enable textarea resize corner for tests
-        https://bugs.webkit.org/show_bug.cgi?id=108385
-
-        Reviewed by Ojan Vafai.
-
-        We should test what we ship. Also, this makes us pass more tests in content_shell.
-
-        * DumpRenderTree/chromium/TestRunner/src/WebPreferences.cpp:
-        (WebTestRunner::WebPreferences::reset): Turn on resize corner.
-
-2013-01-30  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move custom policy delegate to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=108328
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebTestProxyBase):
-        (WebTestRunner::WebTestProxy::decidePolicyForNavigation):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestRunner.h:
-        (WebTestRunner::WebTestRunner::policyDelegateEnabled):
-        (WebTestRunner::WebTestRunner::policyDelegateIsPermissive):
-        (WebTestRunner::WebTestRunner::policyDelegateShouldNotifyDone):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::policyDelegateEnabled):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::policyDelegateIsPermissive):
-        (WebTestRunner::TestRunner::policyDelegateShouldNotifyDone):
-        (WebTestRunner::TestRunner::setCustomPolicyDelegate):
-        (WebTestRunner::TestRunner::waitForPolicyDelegate):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::decidePolicyForNavigation):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::decidePolicyForNavigation):
-        (WebViewHost::reset):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-01-30  Allan Sandfeld Jensen  <allan.jensen@digia.com>
-
-        [Qt][WK1] Support better testing of Web Notifications
-        https://bugs.webkit.org/show_bug.cgi?id=107696
-
-        Reviewed by Jocelyn Turcotte.
-
-        Do not dump notification output to the console by default, instead allow the 
-        tests that need this feature to enable it.
-
-        Implement denyWebNotificationPermission and removeAllWebNotificationPermissions.
-        Remove unused m_desktopNotificationAllowedOrigins variable.
-
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        (TestRunner::TestRunner):
-        (TestRunner::reset):
-        (TestRunner::dumpNotifications):
-        (TestRunner::grantWebNotificationPermission):
-        (TestRunner::denyWebNotificationPermission):
-        (TestRunner::removeAllWebNotificationPermissions):
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunner):
-
-2013-01-30  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move methods from WebTestDelegate to WebTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=108309
-
-        Reviewed by Adam Barth.
-
-        By moving more logic to the TestRunner library, we can share more
-        code with content shell.
-
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebTestProxyBase):
-        (WebTestRunner::WebTestProxy::createView):
-        (WebTestRunner::WebTestProxy::isSmartInsertDeleteEnabled):
-        (WebTestRunner::WebTestProxy::isSelectTrailingWhitespaceEnabled):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestRunner.h:
-        (WebTestRunner::WebTestRunner::isSmartInsertDeleteEnabled):
-        (WebTestRunner::WebTestRunner::isSelectTrailingWhitespaceEnabled):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::isSmartInsertDeleteEnabled):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::isSelectTrailingWhitespaceEnabled):
-        (WebTestRunner::TestRunner::setSmartInsertDeleteEnabled):
-        (WebTestRunner::TestRunner::setSelectTrailingWhitespaceEnabled):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::createView):
-        (WebTestRunner::WebTestProxyBase::isSmartInsertDeleteEnabled):
-        (WebTestRunner):
-        (WebTestRunner::WebTestProxyBase::isSelectTrailingWhitespaceEnabled):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createView):
-        (WebViewHost::didStartLoading):
-        (WebViewHost::didStopLoading):
-        (WebViewHost::isSmartInsertDeleteEnabled):
-        (WebViewHost::isSelectTrailingWhitespaceEnabled):
-        (WebViewHost::reset):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-01-30  Kwang Yul Seo  <skyul@company100.net>
-
-        Unreviewed. Add Jae Hyun Park to contributor list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-01-29  Alan Cutter  <alancutter@chromium.org>
-
-        Need a cr-linux debug EWS bot
-        https://bugs.webkit.org/show_bug.cgi?id=98957
-
-        Reviewed by Eric Seidel.
-
-        Added cr-linux-debug-ews bot to webkit-patch, QueueStatusServer and GCE build scripts.
-
-        * EWSTools/GoogleComputeEngine/build-cr-linux-debug-ews.sh: Added.
-        * QueueStatusServer/app.yaml:
-        * QueueStatusServer/config/queues.py: Added.
-        * QueueStatusServer/model/queues.py:
-        (Queue.__init__):
-        (Queue.queue_with_name):
-        (Queue.all):
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (ChromiumLinuxDebugEWS):
-
-2013-01-29  Alan Cutter  <alancutter@chromium.org>
-
-        Tidy up Sheriffbot's Sheriffs command's unit tests
-        https://bugs.webkit.org/show_bug.cgi?id=108262
-
-        Reviewed by Eric Seidel.
-
-        Added the use of MockWeb instead of the filesystem to test the sheriffs command.
-
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        (Sheriffs._retrieve_webkit_sheriffs):
-        (Sheriffs.execute):
-        * Scripts/webkitpy/tool/bot/irc_command_unittest.py:
-        (IRCCommandTest.test_sheriffs):
-        * Scripts/webkitpy/tool/bot/testdata/webkit_sheriff_0.js: Removed.
-        * Scripts/webkitpy/tool/bot/testdata/webkit_sheriff_1.js: Removed.
-        * Scripts/webkitpy/tool/bot/testdata/webkit_sheriff_2.js: Removed.
-        * Scripts/webkitpy/tool/bot/testdata/webkit_sheriff_malformed.js: Removed.
-        * Scripts/webkitpy/tool/bot/testdata/webkit_sheriff_zero.js: Removed.
-
-2013-01-29  Lucas Forschler  <lforschler@apple.com>
-
-        Enable tests for Windows EWS!
-        https://bugs.webkit.org/show_bug.cgi?id=107968
-        
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (WinEWS):
-
-2013-01-29  Alan Cutter  <alancutter@chromium.org>
-
-        MockWeb should be able to serve mock web content
-        https://bugs.webkit.org/show_bug.cgi?id=108240
-
-        Reviewed by Dirk Pranke.
-
-        Added the ability to have MockWeb serve mock web data.
-
-        * Scripts/webkitpy/common/host_mock.py:
-        (MockHost.__init__):
-        * Scripts/webkitpy/common/net/web_mock.py:
-        (MockWeb.__init__):
-        (MockWeb.get_binary):
-
-2013-01-29  Jessie Berlin  <jberlin@apple.com>
-
-        run-api-tests should have an option to specify root
-        https://bugs.webkit.org/show_bug.cgi?id=108210
-
-        Reviewed by Ryosuke Niwa.
-
-        * Scripts/run-api-tests:
-        Add the option and use it to set the configuration product directory. Since it is supposed
-        to point to the built products, do not build the products if root is specified (this mimics
-        the behavior of run-javascriptcore-tests).
-
-2013-01-29  Bruno de Oliveira Abinader  <bruno.abinader@basyskom.com>
-
-        [EFL] Add Toggle fullscreen (F11) to MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=108122
-
-        Reviewed by Antonio Gomes.
-
-        Adds fullscreen mode toggle (F11) option to MiniBrowser using native API.
-
-        * MiniBrowser/efl/main.c:
-        (on_key_down): Add 'F11' key handler.
-
-2013-01-29  Patrick Gansterer  <paroga@webkit.org>
-
-        [CMake] Use offical Windows CE support
-        https://bugs.webkit.org/show_bug.cgi?id=108061
-
-        Reviewed by Laszlo Gombos.
-
-        Recent version of CMake has added Windows CE support, but uses a
-        slightly different interface than the patched version used before.
-        Change the command line parameters to use the offical CMake binaries.
-
-        * Scripts/webkitdirs.pm:
-        (cmakeBasedPortArguments):
-
-2013-01-29  Alan Cutter  <alancutter@chromium.org>
-
-        QueueStatusServer needs pages to display historical queue data
-        https://bugs.webkit.org/show_bug.cgi?id=107659
-
-        Reviewed by Eric Seidel.
-
-        Created a /queue-charts/<queue-name> handler to present queue and patch data using Google Chart Tools.
-
-        * QueueStatusServer/app.yaml:
-        * QueueStatusServer/config/charts.py: Copied from Tools/QueueStatusServer/model/queuelog.py.
-        (get_time_unit):
-        * QueueStatusServer/filters/webkit_extras.py:
-        (webkit_linkify):
-        (webkit_bug_id):
-        (webkit_attachment_id):
-        (results_link):
-        (queue_status_link):
-        (queue_charts_link):
-        * QueueStatusServer/handlers/queuecharts.py: Added.
-        (QueueCharts):
-        (QueueCharts.get):
-        (QueueCharts._get_min_med_max):
-        (QueueCharts._get_patch_data):
-        (QueueCharts._get_patch_logs):
-        (QueueCharts._get_queue_data):
-        (QueueCharts._get_queue_logs):
-        (QueueCharts._get_time_unit):
-        (QueueCharts._get_timestamp):
-        (QueueCharts._get_view_range):
-        * QueueStatusServer/handlers/queuestatus.py:
-        (QueueStatus.get):
-        * QueueStatusServer/index.yaml:
-        * QueueStatusServer/main.py:
-        * QueueStatusServer/model/queuelog.py:
-        (QueueLog):
-        (QueueLog.create_key):
-        (QueueLog.get_at):
-        (QueueLog.get_current):
-        (QueueLog.get_or_create):
-        (QueueLog._get_or_create_txn):
-        * QueueStatusServer/stylesheets/charts.css: Added.
-        (.chart):
-        (.choices):
-        * QueueStatusServer/templates/queuecharts.html: Added.
-        * QueueStatusServer/templates/queuestatus.html:
-
-2013-01-29  Mario Sanchez Prada  <mario.prada@samsung.com>
-
-        [GTK] Missing build flags when building with Harfbuzz
-        https://bugs.webkit.org/show_bug.cgi?id=108174
-
-        Reviewed by Martin Robinson.
-
-        Add FREETYPE_CFLAGS and FREETYPE_LIBS to makefiles so -lharfbuzz
-        parameter will be added to linking lines when needed.
-
-        * GNUmakefile.am: Added FREETYPE_CFLAGS and FREETYPE_LIBS.
-        * MiniBrowser/gtk/GNUmakefile.am: Ditto.
-        * TestWebKitAPI/GNUmakefile.am: Ditto.
-
-2013-01-29  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Implement resources API using injected bundle
-        https://bugs.webkit.org/show_bug.cgi?id=107457
-
-        Reviewed by Sam Weinig.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner): Unksip resources unit tests.
-
-2013-01-29  Michael Brüning  <michael.bruning@digia.com>
-
-        Unreviewed, updated my email information.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-01-29  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] delete DRTTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=108082
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/DRTTestRunner.cpp: Removed.
-        * DumpRenderTree/chromium/DRTTestRunner.h: Removed.
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestRunner::WebTestDelegate::testFinished):
-        (WebTestRunner::WebTestDelegate::testTimedOut):
-        (WebTestRunner::WebTestDelegate::isBeingDebugged):
-        (WebTestRunner::WebTestDelegate::layoutTestTimeout):
-        (WebTestRunner::WebTestDelegate::closeRemainingWindows):
-        (WebTestRunner::WebTestDelegate::navigationEntryCount):
-        (WebTestRunner::WebTestDelegate::windowCount):
-        (WebTestRunner::WebTestDelegate::setCustomPolicyDelegate):
-        (WebTestRunner::WebTestDelegate::waitForPolicyDelegate):
-        (WebTestRunner::WebTestDelegate::goToOffset):
-        (WebTestRunner::WebTestDelegate::reload):
-        (WebTestRunner::WebTestDelegate::loadURLForFrame):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestRunner.h:
-        (WebTestRunner::WebTestRunner::policyDelegateDone):
-        (WebTestRunner::WebTestRunner::shouldInterceptPostMessage):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::WorkQueue::~WorkQueue):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::WorkQueue::processWorkSoon):
-        (WebTestRunner::TestRunner::WorkQueue::processWork):
-        (WebTestRunner::TestRunner::WorkQueue::reset):
-        (WebTestRunner::TestRunner::WorkQueue::addWork):
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::policyDelegateDone):
-        (WebTestRunner::TestRunner::shouldInterceptPostMessage):
-        (WebTestRunner::TestRunner::waitUntilDone):
-        (WebTestRunner::TestRunner::notifyDone):
-        (WebTestRunner::TestRunner::completeNotifyDone):
-        (WorkItemBackForward):
-        (WebTestRunner::WorkItemBackForward::WorkItemBackForward):
-        (WebTestRunner::WorkItemBackForward::run):
-        (WebTestRunner::TestRunner::queueBackNavigation):
-        (WebTestRunner::TestRunner::queueForwardNavigation):
-        (WorkItemReload):
-        (WebTestRunner::WorkItemReload::run):
-        (WebTestRunner::TestRunner::queueReload):
-        (WorkItemLoadingScript):
-        (WebTestRunner::WorkItemLoadingScript::WorkItemLoadingScript):
-        (WebTestRunner::WorkItemLoadingScript::run):
-        (WorkItemNonLoadingScript):
-        (WebTestRunner::WorkItemNonLoadingScript::WorkItemNonLoadingScript):
-        (WebTestRunner::WorkItemNonLoadingScript::run):
-        (WebTestRunner::TestRunner::queueLoadingScript):
-        (WebTestRunner::TestRunner::queueNonLoadingScript):
-        (WorkItemLoad):
-        (WebTestRunner::WorkItemLoad::WorkItemLoad):
-        (WebTestRunner::WorkItemLoad::run):
-        (WebTestRunner::TestRunner::queueLoad):
-        (WorkItemLoadHTMLString):
-        (WebTestRunner::WorkItemLoadHTMLString::WorkItemLoadHTMLString):
-        (WebTestRunner::WorkItemLoadHTMLString::run):
-        (WebTestRunner::TestRunner::queueLoadHTMLString):
-        (WebTestRunner::TestRunner::locationChangeDone):
-        (WebTestRunner::TestRunner::windowCount):
-        (WebTestRunner::TestRunner::setCloseRemainingWindowsWhenComplete):
-        (WebTestRunner::TestRunner::setCustomPolicyDelegate):
-        (WebTestRunner::TestRunner::waitForPolicyDelegate):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        (WorkItem):
-        (WebTestRunner::TestRunner::WorkItem::~WorkItem):
-        (WorkQueue):
-        (WebTestRunner::TestRunner::WorkQueue::WorkQueue):
-        (WebTestRunner::TestRunner::WorkQueue::setFrozen):
-        (WebTestRunner::TestRunner::WorkQueue::isEmpty):
-        (WebTestRunner::TestRunner::WorkQueue::taskList):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::initialize):
-        (TestShell::runFileTest):
-        (TestShell::loadURL):
-        (TestShell::createNewWindow):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::testRunner):
-        (TestShell):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::testFinished):
-        (WebViewHost::testTimedOut):
-        (WebViewHost::isBeingDebugged):
-        (WebViewHost::layoutTestTimeout):
-        (WebViewHost::closeRemainingWindows):
-        (WebViewHost::navigationEntryCount):
-        (WebViewHost::windowCount):
-        (WebViewHost::setCustomPolicyDelegate):
-        (WebViewHost::waitForPolicyDelegate):
-        (WebViewHost::goToOffset):
-        (WebViewHost::reload):
-        (WebViewHost::loadURLForFrame):
-        (WebViewHost::shutdown):
-        (WebViewHost::testRunner):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebTestRunner):
-        (WebViewHost):
-
-2013-01-28  Timothy Loh  <timloh@chromium.com>
-
-        Refactor ChangeLog and PrepareChangeLog to use FileSystem objects
-        https://bugs.webkit.org/show_bug.cgi?id=107903
-
-        Reviewed by Eric Seidel.
-
-        To make ChangeLog and PrepareChangeLog easier to test, we can use
-        FileSystem objects instead of just passing around paths.
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        (ChangeLog.__init__):
-        (ChangeLog.parse_latest_entry_from_file):
-        (ChangeLog.parse_entries_from_file):
-        (ChangeLog.latest_entry):
-        (ChangeLog.update_with_unreviewed_message):
-        (ChangeLog.set_reviewer):
-        (ChangeLog.set_short_description_and_bug_url):
-        (ChangeLog.delete_entries):
-        (ChangeLog.prepend_text):
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-        (ChangeLogTest):
-        (test_parse_log_entries_from_changelog):
-        (test_latest_entry_parse_single_entry):
-        (test_set_reviewer):
-        (test_set_short_description_and_bug_url):
-        (test_delete_entries):
-        (test_prepend_text):
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        (ReadableTextFileObject.__init__):
-        * Scripts/webkitpy/tool/steps/preparechangelog.py:
-        (PrepareChangeLog._ensure_bug_url):
-        (PrepareChangeLog._resolve_existing_entry):
-        (PrepareChangeLog.run):
-        * Scripts/webkitpy/tool/steps/preparechangelog_unittest.py:
-        (test_ensure_bug_url):
-        * Scripts/webkitpy/tool/steps/preparechangelogforrevert_unittest.py:
-        (_assert_message_for_revert_output):
-
-2013-01-28  Raymond Toy  <rtoy@google.com>
-
-        Add myself to committers.py
-        https://bugs.webkit.org/show_bug.cgi?id=107992
-
-        Reviewed by kbr@google.com.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-01-28  Joseph Pecoraro  <pecoraro@apple.com>
-
-        [Mac] Update PageVisibilityState when WebView is hidden / visible
-        https://bugs.webkit.org/show_bug.cgi?id=107509
-
-        Reviewed by Sam Weinig.
-
-        Add a test that PageVisibility of WK1 WebViews and WK2 WKViews
-        automatically changes between hidden and visible as the view is added
-        and removed from window, or when it is in a window that changes
-        visibility, for instance by minimizing / deminimizing.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/mac/PageVisibilityStateWithWindowChanges.html: Added.
-        * TestWebKitAPI/Tests/mac/PageVisibilityStateWithWindowChanges.mm: Added.
-        (-[PageVisibilityStateDelegate webView:runJavaScriptAlertPanelWithMessage:initiatedByFrame:]):
-        (runJavaScriptAlert):
-        (PageVisibilityStateWithWindowChanges):
-        (TestWebKitAPI::PageVisibilityStateWithWindowChanges::initializeView):
-        (TestWebKitAPI::PageVisibilityStateWithWindowChanges::teardownView):
-        (TestWebKitAPI::PageVisibilityStateWithWindowChanges::runTest):
-        (TestWebKitAPI::TEST_F):
-        Test visibility state of a page in a WebView/WKView with different window states.
-
-        * TestWebKitAPI/mac/WebKitAgnosticTest.h:
-        * TestWebKitAPI/mac/WebKitAgnosticTest.mm:
-        (TestWebKitAPI::WebKitAgnosticTest::teardownView):
-        (TestWebKitAPI::WebKitAgnosticTest::runWebKit1Test):
-        (TestWebKitAPI::WebKitAgnosticTest::runWebKit2Test):
-        Add a WK1 and WK2 teardownView to balance initializeView.
-
-2013-01-28  Joseph Pecoraro  <pecoraro@apple.com>
-
-        Improve PageVisibility API with enums
-        https://bugs.webkit.org/show_bug.cgi?id=107364
-
-        Reviewed by Sam Weinig.
-
-        * DumpRenderTree/mac/TestRunnerMac.mm:
-        (TestRunner::resetPageVisibility):
-        (TestRunner::setPageVisibility):
-        Update the WK1 test code to use the new WK1 enums.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::setVisibilityState):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (InjectedBundle):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::setPageVisibility):
-        (WTR::TestRunner::resetPageVisibility):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::setVisibilityState):
-        * WebKitTestRunner/TestController.h:
-        (TestController):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-        Update the WK2 test code to use the new WK2 API and enums.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2/PageVisibilityState.cpp: Added.
-        (TestWebKitAPI):
-        (TestWebKitAPI::setPageVisibilityStateWithEvalContinuation):
-        (TestWebKitAPI::assertSerializedScriptValueIsStringValue):
-        (TestWebKitAPI::didRunStep1StateChangeVisibleToHidden):
-        (TestWebKitAPI::didRunStep2StateChangeHiddenToPrerender):
-        (TestWebKitAPI::didRunStep3StateChangePrerenderToPreview):
-        (TestWebKitAPI::didRunStep4InStatePreview):
-        (TestWebKitAPI::TEST):
-        Test the new WK2 API with all enum types.
-
-2013-01-28  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] remove temporary define used for updating TestRunner API
-
-        Unreviewed. Clean-up change.
-
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-
-2013-01-28  James Craig  <james@cookiecrook.com>
-
-        HTML5 promotes DL from specific 'definition list' to superset 'description list'; accessibility strings and accessors should be updated to match.
-        https://bugs.webkit.org/show_bug.cgi?id=107650
-
-        Reviewed by Chris Fleizach.
-
-        Updating accessibility strings and accessors for DL/DT/DD.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Utilities.js:
-        (createDescriptionList):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ViewController.js:
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.cpp:
-
-2013-01-28  Manuel Rego Casasnovas  <rego@igalia.com>
-
-        [GTK][WTR] Update layoutTestController.pathToLocalResource
-        https://bugs.webkit.org/show_bug.cgi?id=107538
-
-        Reviewed by Martin Robinson.
-
-        * WebKitTestRunner/InjectedBundle/gtk/TestRunnerGtk.cpp:
-        (WTR::TestRunner::pathToLocalResource): Update implementation based on
-        DRT code.
-
-2013-01-28  Manuel Rego Casasnovas  <rego@igalia.com>
-
-        [GTK][WTR] Move getTopLevelPath() to utilities file
-        https://bugs.webkit.org/show_bug.cgi?id=107541
-
-        Reviewed by Martin Robinson.
-
-        * WebKitTestRunner/GNUmakefile.am: Add new files.
-        * WebKitTestRunner/InjectedBundle/gtk/ActivateFontsGtk.cpp:
-        (WTR::getOutputDir): Uses the moved method from InjectedBundleUtilities.
-        * WebKitTestRunner/InjectedBundle/gtk/InjectedBundleUtilities.cpp: Added.
-        (WTR):
-        (WTR::topLevelPath): Implementation moved from ActivateFontsGtk.
-        * WebKitTestRunner/InjectedBundle/gtk/InjectedBundleUtilities.h: Added.
-        (WTR): Add new method header and documentation.
-
-2013-01-28  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [EFL] Include Ecore_Getopt.h in MiniBrowser.
-        https://bugs.webkit.org/show_bug.cgi?id=108067
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Be explicit and include Ecore_Getopt.h since we use it for parsing
-        command line options. It is safer than relying on other headers
-        including it for us.
-
-        * MiniBrowser/efl/main.c:
-
-2013-01-28  Renata Hodovan  <reni@webkit.org>
-
-        [WK2] Putting QtWebProcess into a chrooted sandbox
-        https://bugs.webkit.org/show_bug.cgi?id=90005
-
-        Reviewed by Anders Carlsson and  Zoltan Herczeg.
-
-        Add feature flag for suid sandbox in linux.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2013-01-27  David Farler  <dfarler@apple.com>
-
-        REGRESSION (r140912): Broke specifying non-trivial ARCHS value to make / build-webkit
-        https://bugs.webkit.org/show_bug.cgi?id=108028
-
-        Reviewed by Dan Bernstein.
-
-        * DumpRenderTree/Makefile: Reverted.
-        * Makefile: Reverted.
-        * Scripts/webkitdirs.pm: Reverted.
-
-2013-01-27  Zoltan Arvai  <zarvai@inf.u-szeged.hu>
-
-        Fixing atomicIncrement implementation for Windows by dropping support before XP SP2.
-        https://bugs.webkit.org/show_bug.cgi?id=106740
-
-        Reviewed by Benjamin Poulain.
-
-        * DumpRenderTree/config.h:
-        * WinLauncher/stdafx.h:
-
-2013-01-26  David Farler  <dfarler@apple.com>
-
-        Makefiles should work for arbitrary SDKs and architectures on Apple ports
-        https://bugs.webkit.org/show_bug.cgi?id=107863
-
-        Reviewed by David Kilzer.
-
-        * Makefile:
-        Added temporary filters for projects not yet building on iOS.
-        * DumpRenderTree/Makefile:
-        Building with iOS SDKs -> -target All-iOS
-        * Scripts/webkitdirs.pm:
-        (determineConfiguration):
-        Added --configuration switch detection.
-        (determineArchitecture):
-        Added --architecture and ARCH=(.*) switch detection.
-        (argumentsForConfiguration):
-        (determineXcodeSDK):
-        Look for --device, --simulator, and --sdk switches.
-        (xcodeSDK):
-        Added.
-        (XcodeOptions):
-        Determine Xcode SDK and generate -arch switches.
-
-2013-01-25  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move tracking of the top loading frame to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=107948
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::WorkQueue::processWorkSoon):
-        (DRTTestRunner::WorkQueue::processWork):
-        (DRTTestRunner::completeNotifyDone):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebTestProxyBase):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestRunner.h:
-        (WebTestRunner::WebTestRunner::setTopLoadingFrame):
-        (WebTestRunner::WebTestRunner::topLoadingFrame):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::setTopLoadingFrame):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::topLoadingFrame):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        (WebTestRunner::TestRunner::locationChangeDone):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::didStartProvisionalLoad):
-        (WebTestRunner::WebTestProxyBase::didFailProvisionalLoad):
-        (WebTestRunner::WebTestProxyBase::didFailLoad):
-        (WebTestRunner::WebTestProxyBase::didFinishLoad):
-        (WebTestRunner::WebTestProxyBase::locationChangeDone):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::reset):
-        (WebViewHost::updateURL):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-01-25  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r140774.
-        http://trac.webkit.org/changeset/140774
-        https://bugs.webkit.org/show_bug.cgi?id=107932
-
-         Tests ScrollingCoordinatorChromiumTest.fastScrollingByDefault
-        and fastScrollingForFixedPosition are failing (Requested by
-        keishi on #webkit).
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::initializeLayerTreeView):
-        (WebViewHost::setWebWidget):
-
-2013-01-25  Alan Cutter  <alancutter@chromium.org>
-
-        Quick fix for Chromium EWS bots running out of space due to a tmp file leak
-        https://bugs.webkit.org/show_bug.cgi?id=107905
-
-        Reviewed by Eric Seidel.
-
-        Added line to EWS loop to clear /tmp of known Chromium test leak.
-        Directories named ".org.chromium.Chromium.XXXXXX" not getting cleaned up.
-
-        * EWSTools/start-queue.sh:
-
-2013-01-25  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Update Anne's email address
-        https://bugs.webkit.org/show_bug.cgi?id=107866
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-01-24  Alan Cutter  <alancutter@chromium.org>
-
-        HTTP 500 error between QueueStatusServer and bot(s)
-        https://bugs.webkit.org/show_bug.cgi?id=107184
-
-        Reviewed by Adam Barth.
-
-        Removed the use of memcache which was the source of the exception.
-
-        * QueueStatusServer/handlers/updatestatus.py:
-        (UpdateStatus.post):
-        * QueueStatusServer/model/attachment.py:
-        (Attachment):
-        (Attachment.summary):
-
-2013-01-24  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r140653.
-        http://trac.webkit.org/changeset/140653
-        https://bugs.webkit.org/show_bug.cgi?id=107916
-
-        Causes a temp file leak on the bots (Requested by abarth on
-        #webkit).
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetTestController):
-
-2013-01-24  Eric Seidel  <eric@webkit.org>
-
-        Skip haslanded_unittest.py on systems which do not have interdiff installed
-        https://bugs.webkit.org/show_bug.cgi?id=106402
-
-        Unreviewed.
-
-        * Scripts/webkitpy/tool/steps/haslanded_unittest.py:
-        (HasLandedTest):
-
-2013-01-24  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Disable the failing webkitpy test for now.
-
-        * Scripts/webkitpy/tool/steps/haslanded_unittest.py:
-
-2013-01-24  Tim 'mithro' Ansell  <mithro@mithis.com>
-
-        Fixing the diff_parser to correctly identify git diffs even with leading comments.
-        https://bugs.webkit.org/show_bug.cgi?id=107871
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/checkout/diff_parser.py:
-        * Scripts/webkitpy/common/checkout/diff_parser_unittest.py:
-        * Scripts/webkitpy/tool/steps/haslanded.py:
-
-2013-01-24  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Remove dead transitional code from WebViewImpl
-        https://bugs.webkit.org/show_bug.cgi?id=107889
-
-        Reviewed by Adrienne Walker.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::initializeLayerTreeView):
-        (WebViewHost::setWebWidget):
-
-2013-01-24  Joshua Bell  <jsbell@chromium.org>
-
-        Add watchlist for IndexedDB development, and add myself and others.
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2013-01-24  Martin Robinson  <mrobinson@igalia.com>
-
-        Abstract the logic for appending a UChar32 onto StringBuilder
-        https://bugs.webkit.org/show_bug.cgi?id=107505
-
-        Reviewed by Darin Adler.
-
-        * TestWebKitAPI/Tests/WTF/StringBuilder.cpp:
-        (TestWebKitAPI::TEST): Added a simple test for appending UChar32.
-
-2013-01-24  Erik Arvidsson  <arv@chromium.org>
-
-        Unreviewed, rolling out r140703.
-        http://trac.webkit.org/changeset/140703
-        https://bugs.webkit.org/show_bug.cgi?id=107556
-
-        r140561 was not the reason for the Android breakage
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::~TestShell):
-        (TestShell::closeWindow):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::WebViewHost):
-        (WebViewHost::~WebViewHost):
-        (WebViewHost::shutdown):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-01-24  Dean Jackson  <dino@apple.com>
-
-        Allow some plugin snapshot UI content to come from Injected Bundle
-        https://bugs.webkit.org/show_bug.cgi?id=107852
-
-        Reviewed by Anders Carlsson.
-
-        Null implementations of plugInStartLabelTitle, plugInStartLabelSubtitle and
-        plugInExtraStyleSheet.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-
-2013-01-24  Erik Arvidsson  <arv@chromium.org>
-
-        Unreviewed, rolling out r140561.
-        http://trac.webkit.org/changeset/140561
-        https://bugs.webkit.org/show_bug.cgi?id=107556
-
-        Suspected to break Android which prevens WebKit roll
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::~TestShell):
-        (TestShell::closeWindow):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::WebViewHost):
-        (WebViewHost::~WebViewHost):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-01-24  Tim 'mithro' Ansell  <mithro@mithis.com>
-
-        Adding "has-landed" command to webkit-patch which compares a
-        committed patch to the changes which exist locally (ignoring the
-        ChangeLog file).
-
-        https://bugs.webkit.org/show_bug.cgi?id=106402
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/checkout/diff_parser.py:
-        (git_diff_to_svn_diff):
-        * Scripts/webkitpy/common/net/bugzilla/bug.py:
-        (Bug.commit_revision):
-        * Scripts/webkitpy/common/net/bugzilla/bug_unittest.py:
-        (BugTest.test_is_in_comments):
-        (BugTest):
-        (BugTest.test_commit_revision):
-        * Scripts/webkitpy/tool/commands/upload.py:
-        (HasLanded):
-        * Scripts/webkitpy/tool/steps/__init__.py:
-        * Scripts/webkitpy/tool/steps/haslanded.py: Added.
-        (HasLanded):
-        (HasLanded.convert_to_svn):
-        (HasLanded.strip_change_log):
-        (run):
-
-        * Scripts/webkitpy/common/net/bugzilla/bug.py:
-        (Bug.commit_revision):
-        * Scripts/webkitpy/common/net/bugzilla/bug_unittest.py:
-        (BugTest.test_is_in_comments):
-        (BugTest):
-        (BugTest.test_commit_revision):
-        * Scripts/webkitpy/tool/commands/upload.py:
-        (HasLanded):
-        * Scripts/webkitpy/tool/steps/__init__.py:
-        * Scripts/webkitpy/tool/steps/haslanded.py: Added.
-        (HasLanded):
-        (HasLanded.convert_to_svn):
-        (HasLanded.strip_change_log):
-        (HasLanded.diff_diff):
-        (HasLanded.run):
-        * Scripts/webkitpy/tool/steps/haslanded_unittest.py: Added.
-        (HasLandedTest):
-        (HasLandedTest.test_run):
-        (test_convert_to_svn_and_strip_change_log):
-
-2013-01-24  Dan Carney  <dcarney@google.com>
-
-        [chromium] move most WebViewHost printf calls to WebTestProxy
-        https://bugs.webkit.org/show_bug.cgi?id=107553
-
-        Reviewed by Jochen Eisinger.
-
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebKit):
-        (WebTestProxyBase):
-        (WebTestRunner::WebTestProxy::unableToImplementPolicyWithError):
-        (WebTestRunner::WebTestProxy::didAddMessageToConsole):
-        (WebTestRunner::WebTestProxy::runModalAlertDialog):
-        (WebTestRunner::WebTestProxy::runModalConfirmDialog):
-        (WebTestRunner::WebTestProxy::runModalPromptDialog):
-        (WebTestRunner::WebTestProxy::runModalBeforeUnloadDialog):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::WebTestProxyBase):
-        (WebTestRunner::WebTestProxyBase::reset):
-        (WebTestRunner::WebTestProxyBase::setLogConsoleOutput):
-        (WebTestRunner):
-        (WebTestRunner::WebTestProxyBase::unableToImplementPolicyWithError):
-        (WebTestRunner::WebTestProxyBase::didAddMessageToConsole):
-        (WebTestRunner::WebTestProxyBase::runModalAlertDialog):
-        (WebTestRunner::WebTestProxyBase::runModalConfirmDialog):
-        (WebTestRunner::WebTestProxyBase::runModalPromptDialog):
-        (WebTestRunner::WebTestProxyBase::runModalBeforeUnloadDialog):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::showDevTools):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::didAddMessageToConsole):
-        (WebViewHost::runModalAlertDialog):
-        (WebViewHost::runModalConfirmDialog):
-        (WebViewHost::runModalPromptDialog):
-        (WebViewHost::runModalBeforeUnloadDialog):
-        (WebViewHost::unableToImplementPolicyWithError):
-        (WebViewHost::reset):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-01-23  Mark Pilgrim  <pilgrim@chromium.org>
-
-        [Chromium] Give webkit_support a chance to reset state between layout test runs
-        https://bugs.webkit.org/show_bug.cgi?id=107132
-
-        Reviewed by Adam Barth.
-
-        We currently only have need for this on OS(ANDROID), but now it
-        would be useful to have a hook for resetting state on all
-        platforms. Will soon be using this for IDBFactory initialization.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetTestController): Call webkit_support::ResetTestEnvironment()
-
-2013-01-23  Alan Cutter  <alancutter@chromium.org>
-
-        QueueStatusServer crashes in production on next-patch
-        https://bugs.webkit.org/show_bug.cgi?id=107775
-
-        Reviewed by Adam Barth.
-
-        Replaced Python 2.5 incompatible call to timedelta.total_seconds().
-
-        * QueueStatusServer/app.yaml:
-        * QueueStatusServer/model/patchlog.py:
-        (PatchLog.calculate_wait_duration):
-        (PatchLog.calculate_process_duration):
-        (PatchLog):
-        (PatchLog._time_delta_to_seconds):
-
-2013-01-23  Ryosuke Niwa  <rniwa@webkit.org>
-
-        The previous patch wasn't complete. Finish reverting r139998 for real.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/WebInspectorShims.js:
-        (ProfilerAgent.getProfile):
-
-2013-01-23  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Revert r139998 for now since the Leaks Viewer pulls in a specific version of Inspector code.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/WebInspectorShims.js:
-        (ProfilerAgent.getProfile):
-
-2013-01-23  Mark Pilgrim  <pilgrim@chromium.org>
-
-        [Chromium] Remove unused header files in chromium/public/platform/
-        https://bugs.webkit.org/show_bug.cgi?id=107741
-
-        Reviewed by James Robinson.
-
-        These header files have migrated to the new Platform directory.
-        This patch updates the remaining #include references and removes
-        the old files that did nothing but redirect to the new ones.
-
-        * DumpRenderTree/chromium/TestRunner/src/MockGrammarCheck.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.h:
-
-2013-01-23  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Bump webkitgtk-test-fonts dependency to cover fallbacks for Tamil, Bengali, and others
-        https://bugs.webkit.org/show_bug.cgi?id=107727
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * gtk/jhbuild.modules: Update the JHBuild moduleset to point to the new webkitgtk-test-fonts.
-        We are using the git repository now that github has deprecated the downloads feature.
-
-2013-01-23  Tony Chang  <tony@chromium.org>
-
-        Unreviewed, set svn:eol-style to CRLF on Windows .sln files.
-
-        * CLWrapper/CLWrapper.sln: Modified property svn:eol-style.
-        * DumpRenderTree/DumpRenderTree.sln: Modified property svn:eol-style.
-        * MIDLWrapper/MIDLWrapper.sln: Modified property svn:eol-style.
-        * WebKitTestRunner/WebKitTestRunner.sln: Modified property svn:eol-style.
-
-2013-01-23  Mark Pilgrim  <pilgrim@chromium.org>
-
-        [Chromium] Update some #includes in DumpRenderTree for headers in the new Platform directory
-        https://bugs.webkit.org/show_bug.cgi?id=107145
-
-        Reviewed by Adam Barth.
-
-        Part of a larger refactoring series; see tracking bug 82948.
-        
-        * DumpRenderTree/chromium/DRTDevToolsAgent.cpp:
-        * DumpRenderTree/chromium/DRTDevToolsAgent.h:
-        * DumpRenderTree/chromium/DRTDevToolsClient.h:
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        * DumpRenderTree/chromium/MockWebPrerenderingSupport.h:
-        * DumpRenderTree/chromium/MockWebSpeechInputController.cpp:
-        * DumpRenderTree/chromium/MockWebSpeechInputController.h:
-        * DumpRenderTree/chromium/NotificationPresenter.cpp:
-        * DumpRenderTree/chromium/TestNavigationController.h:
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityControllerChromium.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/CppBoundClass.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.h:
-        * DumpRenderTree/chromium/TestRunner/src/GamepadController.h:
-        * DumpRenderTree/chromium/TestRunner/src/TestDelegate.h:
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        * DumpRenderTree/chromium/TestRunner/src/TextInputController.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/WebPermissions.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/WebTestPlugin.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        * DumpRenderTree/chromium/TestShell.cpp:
-        * DumpRenderTree/chromium/WebThemeEngineDRTMac.h:
-        * DumpRenderTree/chromium/WebThemeEngineDRTMac.mm:
-        * DumpRenderTree/chromium/WebThemeEngineDRTWin.cpp:
-        * DumpRenderTree/chromium/WebThemeEngineDRTWin.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-
-2013-01-23  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] Use after free in plugins/geturlnotify-during-document-teardown.html
-        https://bugs.webkit.org/show_bug.cgi?id=107556
-
-        Reviewed by Tony Chang.
-
-        WebViewHost initiates a navigation to about:blank in its destructor.
-        However, since WebTestProxy inherits from WebViewHost, at this point
-        the WebViewClient and WebFrameClient interfaces are already partially
-        destructed resulting in the use after free.
-
-        This does not affect the chromium implementation since it doesn't
-        invoke WebKit API methods in its destructor.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::~TestShell):
-        (TestShell::closeWindow):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::WebViewHost):
-        (WebViewHost::~WebViewHost):
-        (WebViewHost::shutdown):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-01-23  Andrei Bucur  <abucur@adobe.com>
-
-        [CSS Regions] Create Regions watchlist
-        https://bugs.webkit.org/show_bug.cgi?id=107281
-
-        Reviewed by Adam Barth.
-
-        This patch adds 4 new definitions:
-        - RegionsDevelopment - used to track the development progress for regions
-        - RegionsExpectationsMore and RegionsExpectationsLess - used to track expectations changes for the regions tests
-        - RegionsUsage - used to track changes that make use of regions in all the code base
-
-        For now, the Adobe internal tracker is the only email address listening for these patterns.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2013-01-22  Pavel Feldman  <pfeldman@chromium.org>
-
-        Web Inspector: only allow evaluateForTestInFrontend for front-ends under test.
-        https://bugs.webkit.org/show_bug.cgi?id=107523
-
-        Reviewed by Yury Semikhatsky.
-
-        * DumpRenderTree/chromium/DRTDevToolsClient.cpp:
-        (DRTDevToolsClient::isUnderTest):
-        (DRTDevToolsClient::call):
-        * DumpRenderTree/chromium/DRTDevToolsClient.h:
-        (DRTDevToolsClient):
-
-2013-01-23  Tim 'mithro' Ansell  <mithro@mithis.com>
-
-        Removing command line shortening as it makes it difficult to see the command during errors.
-        https://bugs.webkit.org/show_bug.cgi?id=107643
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/system/executive.py:
-        (ScriptError):
-        (ScriptError.__init__):
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-
-2013-01-23  Tim 'mithro' Ansell  <mithro@mithis.com>
-
-        Adding myself as contributor in committers.py (as requested by eseidel).
-        https://bugs.webkit.org/show_bug.cgi?id=107647
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-01-22  Alan Cutter  <alancutter@chromium.org>
-
-        Add monitoring of patches and queues to the QueueStatusServer
-        https://bugs.webkit.org/show_bug.cgi?id=107612
-
-        Reviewed by Adam Barth.
-
-        Created classes for recording events into the datastore and integrated them into the existing handlers.
-        Code for presenting the recorded data will come in a separate patch.
-
-        * QueueStatusServer/app.yaml:
-        * QueueStatusServer/config/__init__.py: Added.
-        * QueueStatusServer/config/logging.py: Copied from Tools/QueueStatusServer/model/queuestatus.py.
-        * QueueStatusServer/config/messages.py: Copied from Tools/QueueStatusServer/model/queuestatus.py.
-        * QueueStatusServer/handlers/nextpatch.py:
-        (NextPatch.get):
-        (NextPatch._assign_patch):
-        * QueueStatusServer/handlers/releasepatch.py:
-        (ReleasePatch.post):
-        * QueueStatusServer/handlers/updatestatus.py:
-        (UpdateStatus.post):
-        * QueueStatusServer/handlers/updateworkitems.py:
-        (UpdateWorkItems._parse_work_items_string):
-        (UpdateWorkItems):
-        (UpdateWorkItems._update_work_items_from_request):
-        (UpdateWorkItems._queue_from_request):
-        (UpdateWorkItems.post):
-        * QueueStatusServer/loggers/__init__.py: Added.
-        * QueueStatusServer/loggers/recordbotevent.py: Copied from Tools/QueueStatusServer/model/queuestatus.py.
-        (RecordBotEvent):
-        (RecordBotEvent.activity):
-        * QueueStatusServer/loggers/recordpatchevent.py: Added.
-        (RecordPatchEvent):
-        (RecordPatchEvent.added):
-        (RecordPatchEvent.retrying):
-        (RecordPatchEvent.started):
-        (RecordPatchEvent.stopped):
-        (RecordPatchEvent.updated):
-        (RecordPatchEvent._get_patches_waiting):
-        * QueueStatusServer/model/patchlog.py: Copied from Tools/QueueStatusServer/model/queuestatus.py.
-        (PatchLog):
-        (PatchLog.lookup):
-        (PatchLog.calculate_wait_duration):
-        (PatchLog.calculate_process_duration):
-        * QueueStatusServer/model/queuelog.py: Copied from Tools/QueueStatusServer/handlers/nextpatch.py.
-        (QueueLog):
-        (QueueLog.get_current):
-        (QueueLog.create_key):
-        * QueueStatusServer/model/queuestatus.py:
-        (QueueStatus.is_retry_request):
-
-2013-01-22  Timothy Loh  <timloh@chromium.com>
-
-        prepare-Changelog should support updating the list of changed files
-        https://bugs.webkit.org/show_bug.cgi?id=74358
-
-        Reviewed by Eric Seidel.
-
-        Needing to re-make ChangeLog entries when the list of files/functions
-        changes is a bit annoying, it'd be nice to have this more automated.
-        This patch makes `webkit-patch update' update the date line and bug
-        description if needed, and if the list of changed files/functions has
-        changed, either updates the list (if there are no annotations), or
-        otherwise appends the new list below.
-
-        * Scripts/webkitpy/tool/steps/preparechangelog.py:
-        (PrepareChangeLog._resolve_existing_entry):
-        (PrepareChangeLog):
-        (PrepareChangeLog._merge_entries):
-        (PrepareChangeLog.run):
-        * Scripts/webkitpy/tool/steps/preparechangelog_unittest.py:
-        (PrepareChangeLogTest.test_resolve_existing_entry):
-        (make_entry):
-        (test_ensure_bug_url):
-
-2013-01-22  Tim 'mithro' Ansell  <mithro@mithis.com>
-
-        Use Python 2.7 unittest syntax in our unittests
-        https://bugs.webkit.org/show_bug.cgi?id=105607
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/**/*_unittest.py:
-
-2013-01-22  Tim 'mithro' Ansell  <mithro@mithis.com>
-
-        Convert disable-msg to disable for new pylint.
-        https://bugs.webkit.org/show_bug.cgi?id=107627
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-        (SVNRepository.has_authorization_for_realm):
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        (Builder.force_build):
-        * Scripts/webkitpy/common/system/executive_mock.py:
-        (MockExecutive2.run_command):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.reference_files):
-        * Scripts/webkitpy/layout_tests/port/chromium_port_testcase.py:
-        (ChromiumPortTestCase.test_default_configuration):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (PortTestCase.test_expectations_ordering):
-        * Scripts/webkitpy/layout_tests/servers/http_server_base.py:
-        (HttpServerBase._check_that_all_ports_are_available):
-        * Scripts/webkitpy/tool/commands/abstractlocalservercommand.py:
-        (AbstractLocalServerCommand.execute):
-        * Scripts/webkitpy/tool/commands/download.py:
-        (AbstractPatchProcessingCommand):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (AbstractRebaseliningCommand):
-        (AbstractParallelRebaselineCommand):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (_BaseTestCase.setUp):
-        (TestAnalyzeBaselines.setUp):
-
-2013-01-22  Frank Farzan  <frankf@chromium.org>
-
-        Flakiness dashboard: update builders.jsonp
-        https://bugs.webkit.org/show_bug.cgi?id=107610
-
-        Reviewed by Ojan Vafai.
-
-        * TestResultServer/static-dashboards/builders.jsonp:
-
-2013-01-22  Frank Farzan  <frankf@chromium.org>
-
-        Add Android instrumentation tests from ChromiumLinux waterfall
-        https://bugs.webkit.org/show_bug.cgi?id=107597
-
-        Reviewed by Ojan Vafai.
-
-        * TestResultServer/static-dashboards/builders.js:
-        (loadBuildersList):
-
-2013-01-21  Kentaro Hara  <haraken@chromium.org>
-
-        Implement UIEvent constructor
-        https://bugs.webkit.org/show_bug.cgi?id=107430
-
-        Reviewed by Adam Barth.
-
-        Editor's draft: https://dvcs.w3.org/hg/d4e/raw-file/tip/source_respec.htm
-
-        UIEvent constructor is implemented under a DOM4_EVENTS_CONSTRUCTOR flag,
-        which is enabled on Safari and Chromium for now.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2013-01-22  Timothy Loh  <timloh@chromium.com>
-
-        Add functions to ChangeLog - parse bug desc/changed functions, delete/prepend entries
-        https://bugs.webkit.org/show_bug.cgi?id=107478
-
-        Reviewed by Eric Seidel.
-
-        On the road to resolving Bug 74358, we need a few more functions in
-        changelog.py.
-        To make things easier to mock, change @staticmethods to @classmethods.
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        (ChangeLogEntry):
-        (ChangeLogEntry._parse_reviewer_text):
-        (ChangeLogEntry._split_contributor_names):
-        (ChangeLogEntry._parse_author_name_and_email):
-        (ChangeLogEntry._parse_author_text):
-        (ChangeLogEntry._parse_touched_functions):
-        (ChangeLogEntry._parse_bug_description):
-        (ChangeLogEntry._parse_entry):
-        (ChangeLogEntry.date_line):
-        (ChangeLogEntry.bug_description):
-        (ChangeLogEntry.touched_functions):
-        (ChangeLogEntry.touched_files_text):
-        (ChangeLogEntry.is_touched_files_text_clean):
-        (ChangeLog):
-        (ChangeLog.parse_latest_entry_from_file):
-        (ChangeLog._separate_revision_and_line):
-        (ChangeLog.parse_entries_from_file):
-        (ChangeLog.set_short_description_and_bug_url):
-        (ChangeLog.delete_entries):
-        (ChangeLog.prepend_text):
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-        (test_parse_log_entries_from_changelog):
-        (test_latest_entry_parse):
-        (test_set_short_description_and_bug_url):
-        (test_delete_entries):
-        (test_prepend_text):
-
-2013-01-22  Lucas Forschler  <lforschler@apple.com>
-
-        Create a MAC EWS startup shell script.
-
-        Reviewed by Ryosuke Niwa.
-
-        * EWSTools/start-queue-mac.sh: Added.
-
-2013-01-22  Joseph Pecoraro  <pecoraro@apple.com>
-
-        [Mac] Enable Page Visibility (PAGE_VISIBILITY_API)
-        https://bugs.webkit.org/show_bug.cgi?id=107230
-
-        Reviewed by David Kilzer.
-
-        * DumpRenderTree/mac/TestRunnerMac.mm:
-        (TestRunner::resetPageVisibility):
-        Fix a typo in the original implementation. resetPageVisibility should
-        pass initialState YES so an event is not dispatched, which causes
-        issues in multiple tests. This now matches other ports.
-
-2013-01-22  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] Enable CSS Image Orientation feature
-        https://bugs.webkit.org/show_bug.cgi?id=99040
-
-        Reviewed by Martin Robinson.
-
-        Enable the CSS Image Orientation feature in the development
-        builds of the GTK port. The feature is still disabled in the release
-        builds.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2013-01-22  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] Enable the <template> element support in development builds
-        https://bugs.webkit.org/show_bug.cgi?id=106575
-
-        Reviewed by Martin Robinson.
-
-        Enable the <template> element support in the development builds of the GTK port.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2013-01-22  Zan Dobersek  <zandobersek@gmail.com>
-
-        Prettify the output of the override-feature-defines script
-        https://bugs.webkit.org/show_bug.cgi?id=106542
-
-        Reviewed by Martin Robinson.
-
-        The output now clearly lists the feature defines being overridden
-        along with the default and overriding values for each feature define.
-
-        * gtk/override-feature-defines:
-        (adjust_feature_defines_makefile):
-        (adjust_feature_defines_makefile.override_feature_define):
-
-2013-01-22  Zan Dobersek  <zdobersek@igalia.com>
-
-        Remove uses of deprecated unittest.TestCase aliases
-        https://bugs.webkit.org/show_bug.cgi?id=102252
-
-        Reviewed by Adam Barth.
-
-        Replace the deprecated assertEquals method of the TestCase interface
-        used in some webkitpy unittests with the assertEqual method.
-
-        * Scripts/webkitpy/common/system/profiler_unittest.py:
-        (ProfilerFactoryTest._assert_default_profiler_name):
-        (ProfilerFactoryTest.test_default_profiler_output):
-        * Scripts/webkitpy/layout_tests/port/gtk_unittest.py:
-        (GtkPortTest.test_expectations_files):
-        * Scripts/webkitpy/layout_tests/servers/http_server_unittest.py:
-        (TestHttpServer.test_win32_start_and_stop):
-
-2013-01-22  Jer Noble  <jer.noble@apple.com>
-
-        REGRESSION(r140344): Repeated crashes in WKTR PlatformWebView::viewSupportsOptions().
-        https://bugs.webkit.org/show_bug.cgi?id=107562
-
-        Rubber-stamped by Alexy Proskuryakov.
-
-        The input to WKBooleanGetValue() is not NULL-safe, so NULL check its inputs before calling.
-
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (WTR::PlatformWebView::PlatformWebView):
-        (WTR::PlatformWebView::viewSupportsOptions):
-
-2013-01-22  Alexey Proskuryakov  <ap@apple.com>
-
-        One is not allowed to use commit-queue to make oneself a committer.
-
-        * Scripts/webkitpy/common/config/committers.py: Removing eustas@chromium.org.
-
-2013-01-22  Eugene Klyuchnikov  <eustas@chromium.org>
-
-        Add myself to commiters.py
-        https://bugs.webkit.org/show_bug.cgi?id=107546
-
-        Reviewed by Kentaro Hara.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-01-22  Manuel Rego Casasnovas  <rego@igalia.com>
-
-        [GTK] Implement TestRunner::setTextDirection
-        https://bugs.webkit.org/show_bug.cgi?id=107131
-
-        Reviewed by Philippe Normand.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues): Reset direction to default value.
-        * DumpRenderTree/gtk/TestRunnerGtk.cpp:
-        (TestRunner::setTextDirection): Implement method using
-        gtk_widget_set_direction.
-
-2013-01-22  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move spell checking mocks to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=107455
-
-        Reviewed by Kent Tamura.
-
-        The content module doesn't provide its own WebSpellCheckClient.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestRunner::WebTestDelegate::fillSpellingSuggestionList):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebKit):
-        (WebTestRunner):
-        (WebTestProxyBase):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::makeMenuItemStringsFor):
-        * DumpRenderTree/chromium/TestRunner/src/MockGrammarCheck.cpp: Renamed from Tools/DumpRenderTree/chromium/MockGrammarCheck.cpp.
-        (MockGrammarCheck::checkGrammarOfString):
-        * DumpRenderTree/chromium/TestRunner/src/MockGrammarCheck.h: Renamed from Tools/DumpRenderTree/chromium/MockGrammarCheck.h.
-        (WebKit):
-        (MockGrammarCheck):
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.cpp: Renamed from Tools/DumpRenderTree/chromium/MockSpellCheck.cpp.
-        (MockSpellCheck::MockSpellCheck):
-        (MockSpellCheck::~MockSpellCheck):
-        (isNotASCIIAlpha):
-        (MockSpellCheck::spellCheckWord):
-        (MockSpellCheck::fillSuggestionList):
-        (MockSpellCheck::initializeIfNeeded):
-        * DumpRenderTree/chromium/TestRunner/src/MockSpellCheck.h: Renamed from Tools/DumpRenderTree/chromium/MockSpellCheck.h.
-        (MockSpellCheck):
-        * DumpRenderTree/chromium/TestRunner/src/SpellCheckClient.cpp: Added.
-        (WebTestRunner::SpellCheckClient::SpellCheckClient):
-        (WebTestRunner):
-        (WebTestRunner::SpellCheckClient::~SpellCheckClient):
-        (WebTestRunner::SpellCheckClient::setDelegate):
-        (WebTestRunner::SpellCheckClient::spellCheck):
-        (WebTestRunner::SpellCheckClient::checkTextOfParagraph):
-        (WebTestRunner::SpellCheckClient::requestCheckingOfText):
-        (WebTestRunner::SpellCheckClient::finishLastTextCheck):
-        (WebTestRunner::SpellCheckClient::autoCorrectWord):
-        * DumpRenderTree/chromium/TestRunner/src/SpellCheckClient.h: Copied from Tools/DumpRenderTree/chromium/TestRunner/src/TestDelegate.h.
-        (WebTestRunner):
-        (SpellCheckClient):
-        (WebTestRunner::SpellCheckClient::taskList):
-        (WebTestRunner::SpellCheckClient::mockSpellCheck):
-        * DumpRenderTree/chromium/TestRunner/src/TestDelegate.h:
-        (TestDelegate):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestInterfaces::Internal):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::WebTestProxyBase):
-        (WebTestRunner::WebTestProxyBase::~WebTestProxyBase):
-        (WebTestRunner::WebTestProxyBase::setDelegate):
-        (WebTestRunner::WebTestProxyBase::spellCheckClient):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::WebViewHost):
-        (WebViewHost::setWebWidget):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-01-22  Krzysztof Czech  <k.czech@samsung.com>
-
-        [EFL] Adds Accessibility support to wk1
-        https://bugs.webkit.org/show_bug.cgi?id=107440
-
-        Reviewed by Gyuyoung Kim.
-
-        * DumpRenderTree/efl/CMakeLists.txt: Adds ATK headers and libraries.
-
-2013-01-21  Joseph Pecoraro  <pecoraro@apple.com>
-
-        [Mac] WK1 MiniBrowser should clear delegates before releasing webview
-        https://bugs.webkit.org/show_bug.cgi?id=107506
-
-        Reviewed by Dan Bernstein.
-
-        * MiniBrowser/mac/WK1BrowserWindowController.m:
-        (-[WK1BrowserWindowController dealloc]):
-
-2013-01-21  Dirk Schulze  <dschulze@adobe.com>
-
-        Add build flag for Canvas's Path object (disabled by default)
-        https://bugs.webkit.org/show_bug.cgi?id=107473
-
-        Reviewed by Dean Jackson.
-
-        Add CANVAS_PATH build flag to build systems.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2013-01-21  Jinwoo Song  <jinwoo7.song@samsung.com>
-
-        [EFL][WK2] Add APIs to set/get view source mode
-        https://bugs.webkit.org/show_bug.cgi?id=106633
-
-        Reviewed by Gyuyoung Kim.
-
-        Added a shotcut 'F8' in Minibrowser to display a source code
-        of the web page in a new window.
-
-       * MiniBrowser/efl/main.c:
-        (on_key_down):
-        (on_window_create):
-        (window_create):
-        (elm_main):
-
-2013-01-21  Nico Weber  <thakis@chromium.org>
-
-        [chromium] Don't archive generated source files.
-        https://bugs.webkit.org/show_bug.cgi?id=106736
-
-        Reviewed by Eric Seidel.
-
-        They shouldn't be needed to run tests. They don't need a lot of space,
-        but add many lines to the "extracting" stdout. This attempts to reduce
-        that noise a bit.
-
-        * BuildSlaveSupport/built-product-archive:
-        (archiveBuiltProduct):
-
-2013-01-21  Benjamin Poulain  <benjamin@webkit.org>
-
-        Mac DumpRenderTree's installSignalHandlers() is unreachable code
-        https://bugs.webkit.org/show_bug.cgi?id=107383
-
-        Reviewed by Sam Weinig.
-
-        The CrashHandler of DumpRenderTree were originally used for restoring
-        the color profile of the main display even if DRT crashes.
-
-        That feature was later limited to pixel tests only in r29999.
-
-        In r104351, the DRT was changed to use device color space. Making the crash
-        handlers useless, but they were left in the code since the error reporting
-        code was still reachable.
-
-        Later, r124581 refactored the code and dumpPixelsForCurrentTest
-        is being used before being assigned its value.
-        This did cause any regression because the code had become useless with the previous change.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        Remove crashHandler() and installSignalHandlers() as they have become useless and
-        have been unreachable code for 6 months.
-        (dumpRenderTree):
-        Remove the code that was unreachable due to dumpPixelsForCurrentTest being always false
-        at those points.
-
-2013-01-21  Nico Weber  <thakis@chromium.org>
-
-        Make ninja the default build system for build-webkit --chromium on mac
-        https://bugs.webkit.org/show_bug.cgi?id=106737
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/update-webkit-chromium:
-
-2013-01-21  Christophe Dumez  <christophe.dumez@intel.com>
-
-        Regression(r140262): Causes a lot of flakiness
-        https://bugs.webkit.org/show_bug.cgi?id=107454
-
-        Reviewed by Alexey Proskuryakov.
-
-        r140262 introduced a lot of flakiness due to fixed layout mode
-        not getting disabled on the view after being enabled for
-        specific test cases. This patch makes sure fixed layout mode
-        properly gets reset in WebKitTestRunner to avoid flakiness.
-
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::updateLayoutType):
-
-2013-01-21  Gustavo Noronha Silva  <gns@gnome.org>
-
-        REGRESSION (r140285): GTK uses WKPageResourceLoadClient which was removed
-        https://bugs.webkit.org/show_bug.cgi?id=107421
-
-        Unreviewed build fix.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner): skip Resource tests.
-
-2013-01-21  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][WKTR] platformRunUntil() should keep the main loop running
-        https://bugs.webkit.org/show_bug.cgi?id=107442
-
-        Reviewed by Noam Rosenthal.
-
-        EFL's implementation of platformRunUntil() should keep the main loop
-        running and avoid calling sleep() between calls to
-        ecore_main_loop_iterate(). This call to sleep seems to be a source
-        of deadlocks (see Bug 106884).
-
-        * WebKitTestRunner/efl/TestControllerEfl.cpp:
-        (WTR::TestController::platformRunUntil):
-
-2013-01-21  Vivek Galatage  <vivek.vg@samsung.com>
-
-        QtTestBrowser should provide way to clear selected elements
-        https://bugs.webkit.org/show_bug.cgi?id=107437
-
-        Reviewed by Simon Hausmann.
-
-        Provide a way to "Clear selection" in the "Develop" menu to clear the previous search highlight.
-        Invoke the clearSelection prior to highlighting new elements.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (ElementHighlight):
-        (LauncherWindow::createChrome):
-        (LauncherWindow::selectElements):
-        (LauncherWindow::clearSelection):
-        * QtTestBrowser/launcherwindow.h:
-        (LauncherWindow):
-
-2013-01-21  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move methods interacting with willSendRequest to TestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=107270
-
-        Reviewed by Kent Tamura.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        (DRTTestRunner::waitForPolicyDelegate):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestRunner.h:
-        (WebTestRunner::WebTestRunner::shouldStayOnPageAfterHandlingBeforeUnload):
-        (WebTestRunner::WebTestRunner::httpHeadersToClear):
-        (WebTestRunner::WebTestRunner::shouldBlockRedirects):
-        (WebTestRunner::WebTestRunner::willSendRequestShouldReturnNull):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::httpHeadersToClear):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::shouldBlockRedirects):
-        (WebTestRunner::TestRunner::willSendRequestShouldReturnNull):
-        (WebTestRunner::TestRunner::setWillSendRequestClearHeader):
-        (WebTestRunner::TestRunner::setWillSendRequestReturnsNullOnRedirect):
-        (WebTestRunner::TestRunner::setWillSendRequestReturnsNull):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::willSendRequest):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::willSendRequest):
-        (WebViewHost::reset):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-01-21  Zan Dobersek  <zdobersek@igalia.com>
-
-        [GTK] Stop building WebKit2 on GTK EWSs
-        https://bugs.webkit.org/show_bug.cgi?id=107435
-
-        Reviewed by Philippe Normand.
-
-        The WebKit2 build of the GTK is at the moment not efficiently maintainable,
-        so stop building it on GTK EWSs.
-
-        * Scripts/webkitpy/common/config/ports.py:
-        (GtkPort.build_webkit_command):
-        * Scripts/webkitpy/common/config/ports_unittest.py:
-        (DeprecatedPortTest.test_gtk_port):
-
-2013-01-21  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: Update the RTCPeerConnection states to match the latest specification
-        https://bugs.webkit.org/show_bug.cgi?id=107120
-
-        Reviewed by Adam Barth.
-
-        Updating mock to use the new states.
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (RTCPeerConnectionStateTask::RTCPeerConnectionStateTask):
-        (MockWebRTCPeerConnectionHandler::initialize):
-        (MockWebRTCPeerConnectionHandler::updateICE):
-
-2013-01-20  Tim 'mithro' Ansell  <mithro@mithis.com>
-
-        Extend diff_parser to support the --full-index output.
-        https://bugs.webkit.org/show_bug.cgi?id=107408
-
-        Reviewed by Maciej Stachowiak.
-
-        * Scripts/webkitpy/common/checkout/diff_parser.py:
-        (git_diff_to_svn_diff):
-        * Scripts/webkitpy/common/checkout/diff_parser_unittest.py:
-        (DiffParserTest):
-        (DiffParserTest.test_git_diff_to_svn_diff):
-        (git_diff_to_svn_diff):
-
-2013-01-20  Yoshifumi Inoue  <yosin@chromium.org>
-
-        Dragging over an element with scrollbars should scroll the element when dragging near edges
-        https://bugs.webkit.org/show_bug.cgi?id=39725
-
-        Reviewed by Hajime Morita.
-
-        This patch introduces canceling drag-and-drop by escape key for testing
-        behavior after cancellation drag-and-drop.
-
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::doMouseUp):
-        (WebTestRunner::EventSender::finishDragAndDrop):
-        (WebTestRunner::EventSender::keyDown):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.h:
-        (EventSender):
-        * DumpRenderTree/chromium/TestRunner/src/KeyCodeMapping.h: Added VKEY_ESCAPE.
-
-2013-01-20  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move frame generation related methods to TestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=107268
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        (DRTTestRunner::setWillSendRequestReturnsNull):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestRunner::WebTestDelegate::display):
-        (WebTestRunner::WebTestDelegate::displayInvalidatedRegion):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::display):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::displayInvalidatedRegion):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::display):
-        (WebViewHost::displayInvalidatedRegion):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2013-01-20  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move speech related methods to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=107266
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        (DRTTestRunner::displayInvalidatedRegion):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestDelegate):
-        (WebTestRunner::WebTestDelegate::addMockSpeechInputResult):
-        (WebTestRunner::WebTestDelegate::setMockSpeechInputDumpRect):
-        (WebTestRunner::WebTestDelegate::addMockSpeechRecognitionResult):
-        (WebTestRunner::WebTestDelegate::setMockSpeechRecognitionError):
-        (WebTestRunner::WebTestDelegate::wasMockSpeechRecognitionAborted):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::addMockSpeechInputResult):
-        (WebTestRunner::TestRunner::setMockSpeechInputDumpRect):
-        (WebTestRunner::TestRunner::addMockSpeechRecognitionResult):
-        (WebTestRunner::TestRunner::setMockSpeechRecognitionError):
-        (WebTestRunner::TestRunner::wasMockSpeechRecognitionAborted):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::addMockSpeechInputResult):
-        (WebViewHost::setMockSpeechInputDumpRect):
-        (WebViewHost::addMockSpeechRecognitionResult):
-        (WebViewHost::setMockSpeechRecognitionError):
-        (WebViewHost::wasMockSpeechRecognitionAborted):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2013-01-20  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move notification related methods to TestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=107269
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestDelegate):
-        (WebTestRunner::WebTestDelegate::grantWebNotificationPermission):
-        (WebTestRunner::WebTestDelegate::simulateLegacyWebNotificationClick):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::grantWebNotificationPermission):
-        (WebTestRunner::TestRunner::simulateLegacyWebNotificationClick):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::grantWebNotificationPermission):
-        (WebViewHost::simulateLegacyWebNotificationClick):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2013-01-20  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move geolocation related methods to TestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=107267
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestRunner::WebTestDelegate::numberOfPendingGeolocationPermissionRequests):
-        (WebTestRunner::WebTestDelegate::setGeolocationPermission):
-        (WebTestRunner::WebTestDelegate::setMockGeolocationPosition):
-        (WebTestRunner::WebTestDelegate::setMockGeolocationPositionUnavailableError):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::numberOfPendingGeolocationPermissionRequests):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::setGeolocationPermission):
-        (WebTestRunner::TestRunner::setMockGeolocationPosition):
-        (WebTestRunner::TestRunner::setMockGeolocationPositionUnavailableError):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::numberOfPendingGeolocationPermissionRequests):
-        (WebViewHost::setGeolocationPermission):
-        (WebViewHost::setMockGeolocationPosition):
-        (WebViewHost::setMockGeolocationPositionUnavailableError):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2013-01-19  Zan Dobersek  <zdobersek@igalia.com>
-
-        Unreviewed build fix for Qt WK2 after r140258.
-        Use the size_t type instead of unsigned for the variable
-        which holds the position of the first null character in the
-        console message.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::willAddMessageToConsole):
-
-2013-01-19  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r140260.
-        http://trac.webkit.org/changeset/140260
-        https://bugs.webkit.org/show_bug.cgi?id=107387
-
-        breaks fast/text/hyphens.html, fast/text/hyphenate-* (but
-        nothing else) (Requested by thakis__ on #webkit).
-
-        * Scripts/update-webkit-chromium:
-
-2013-01-19  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        Delegated scrolling: Assertion on attempt to show a CSS sticky element
-        https://bugs.webkit.org/show_bug.cgi?id=106890
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Enabled fixed layout mode in WTR for 'fast/css/sticky' tests.
-
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::shouldUseFixedLayout):
-        (WTR):
-        (WTR::updateLayoutType):
-
-2013-01-19  Nico Weber  <thakis@chromium.org>
-
-        Make ninja the default build system for build-webkit --chromium on mac
-        https://bugs.webkit.org/show_bug.cgi?id=106737
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/update-webkit-chromium:
-
-2013-01-19  Zan Dobersek  <zdobersek@igalia.com>
-
-        [WK2] svg/dom/fuzz-path-parser.html is failing
-        https://bugs.webkit.org/show_bug.cgi?id=107133
-
-        Reviewed by Alexey Proskuryakov.
-
-        Console messages can contain null characters before the end of string.
-        Appending such message to the StringBuilder as a WTFString appends the
-        complete string, including the null character. This later cuts off everything
-        after the null character when the string is being printed out to the test
-        output.
-
-        To avoid this, truncate the string up to the first null character. This
-        preserves the newline character appended immediately after this and
-        stops giving incorrect output.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::willAddMessageToConsole):
-
-2013-01-19  Eric Seidel  <eric@webkit.org>
-
-        Update error regexps so that Parser/html-parser-srcdoc.html can "pass"
-        https://bugs.webkit.org/show_bug.cgi?id=107367
-
-        Reviewed by Ryosuke Niwa.
-
-        Using srcdoc instead of document.write changes the error output
-        ever so slightly.  Clearly we were already trying to ignore these
-        messages, just not succeeding.  This change makes this new test "pass" correctly.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest):
-
-2013-01-18  Dan Winship  <danw@gnome.org>
-
-        REGRESSION (r139071): run-webkit-httpd complains at launch
-        https://bugs.webkit.org/show_bug.cgi?id=107310
-
-        Reviewed by Alexey Proskuryakov.
-
-        * Scripts/webkitperl/httpd.pm:
-        (getApacheVersion): use preferred perl syntax
-
-2013-01-18  Julie Parent  <jparent@chromium.org>
-
-        Add back 'group' as a default cross dashboard parameter, but with null as its value.
-        https://bugs.webkit.org/show_bug.cgi?id=107336
-
-        We need to have 'group' listed as a parameter, else we never parse it,
-        as we only parse parameters with defaults.
-        
-        Reviewed by Ojan Vafai.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-
-2013-01-18  Emil A Eklund  <eae@chromium.org>
-
-        Update LayoutUnit rounding unit test
-        https://bugs.webkit.org/show_bug.cgi?id=107322
-
-        Reviewed by Levi Weintraub.
-        
-        Update the LayoutUnitRounding test to use fromFloatRound for
-        values that cannot accurately be represented as a LayoutUnit
-        (the default behavior is to floor the value to the nearest
-        LayoutUnit).
-
-        * TestWebKitAPI/Tests/WebCore/LayoutUnit.cpp:
-        (TestWebKitAPI::TEST):
-
-2013-01-18  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        VCSUtils.pm: Stop calling git repo-config.
-        https://bugs.webkit.org/show_bug.cgi?id=107294
-
-        Reviewed by Dirk Pranke.
-
-        The `repo-config' git command has been deprecated since early
-        2008, and recent versions have started warning it is deprecated.
-
-        Basically revert r27870 and use the `config' command all the time.
-
-        * Scripts/VCSUtils.pm:
-        (gitConfig):
-
-2013-01-18  Levi Weintraub  <leviw@chromium.org>
-
-        LayoutUnit should round half consistently, not away from zero
-        https://bugs.webkit.org/show_bug.cgi?id=107208
-
-        Reviewed by Eric Seidel.
-
-        * TestWebKitAPI/Tests/WebCore/LayoutUnit.cpp: Updating to reflect and
-        cover this change in rounding behavior.
-
-2013-01-18  Tim Horton  <timothy_horton@apple.com>
-
-        [mac] DumpRenderTree/WebKitTestRunner should not participate in Exposé/Mission Control
-        https://bugs.webkit.org/show_bug.cgi?id=107234
-
-        Reviewed by Simon Fraser.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (createWebViewAndOffscreenWindow): Disable participation in Exposé via NSWindowCollectionBehaviorStationary.
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (WTR::PlatformWebView::PlatformWebView): Ditto.
-
-2013-01-18  Tim Horton  <timothy_horton@apple.com>
-
-        [mac] DumpRenderTree/WebKitTestRunner should disable NSBeep
-        https://bugs.webkit.org/show_bug.cgi?id=107251
-
-        Reviewed by Simon Fraser.
-
-        Disable NSBeep in DumpRenderTree and WebKitTestRunner using NSSound SPI.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dumpRenderTree):
-        * WebKitTestRunner/InjectedBundle/mac/InjectedBundleMac.mm:
-        (WTR::InjectedBundle::platformInitialize):
-
-2013-01-18  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Enable indexed database for development builds
-        https://bugs.webkit.org/show_bug.cgi?id=107299
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * Scripts/webkitperl/FeatureList.pm: Enable indexed database by default
-        for GTK+ development builds.
-
-2013-01-18  Dominic Mazzoni  <dmazzoni@google.com>
-
-        AX: Improve table-guessing heuristics
-        https://bugs.webkit.org/show_bug.cgi?id=107042
-
-        Reviewed by Chris Fleizach.
-
-        Implement parentElementCallback on Chromium to make testing easier.
-
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.cpp:
-        (WebTestRunner::AccessibilityUIElement::parentElementCallback):
-
-2013-01-18  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Add property for IndexedDB database path to WebKitGTK+
-        https://bugs.webkit.org/show_bug.cgi?id=106136
-
-        Reviewed by Gustavo Noronha Silva.
-
-        During testing, set the web database directory to DUMPRENDERTREE_TEMP
-        before falling back to the old default. This is necessary because
-        indexed database tests require that each DRT shard is using a different
-        IDB database location.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (temporaryDatabaseDirectory): Added this helper for getting the
-        database directory.
-        (setDefaultsToConsistentStateValuesForTesting): Use the new helper.
-
-2013-01-18  Sudarsana Nagineni  <sudarsana.nagineni@intel.com>
-
-        [EFL][WK2] Enable API test InjectedBundleFrameHitTest on EFL
-        https://bugs.webkit.org/show_bug.cgi?id=107264
-
-        Reviewed by Laszlo Gombos.
-
-        Enable API test InjectedBundleFrameHitTest for hit-testing,
-        since it is now passing on both Debug and Release builds.
-
-        * TestWebKitAPI/CMakeLists.txt:
-        * TestWebKitAPI/PlatformEfl.cmake:
-
-2013-01-18  Manuel Rego Casasnovas  <rego@igalia.com>
-
-        [GTK] Implement TestRunner::addUserScript
-        https://bugs.webkit.org/show_bug.cgi?id=107275
-
-        Reviewed by Philippe Normand.
-
-        * DumpRenderTree/gtk/TestRunnerGtk.cpp:
-        (TestRunner::addUserScript): Implement method using
-        DumpRenderTreeSupportGtk::addUserScript.
-
-2013-01-18  Sudarsana Nagineni  <sudarsana.nagineni@intel.com>
-
-        Unreviewed, add my secondary email address to the list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-01-18  Dan Carney  <dcarney@google.com>
-
-        [chromium] move pointerlock functions to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=107241
-
-        Reviewed by Jochen Eisinger.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestRunner::WebTestDelegate::didAcquirePointerLock):
-        (WebTestRunner::WebTestDelegate::didNotAcquirePointerLock):
-        (WebTestRunner::WebTestDelegate::didLosePointerLock):
-        (WebTestRunner::WebTestDelegate::setPointerLockWillRespondAsynchronously):
-        (WebTestRunner::WebTestDelegate::setPointerLockWillFailSynchronously):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::didAcquirePointerLock):
-        (WebTestRunner::TestRunner::didNotAcquirePointerLock):
-        (WebTestRunner::TestRunner::didLosePointerLock):
-        (WebTestRunner::TestRunner::setPointerLockWillRespondAsynchronously):
-        (WebTestRunner::TestRunner::setPointerLockWillFailSynchronously):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-01-14  Dominik Röttsches  <dominik.rottsches@intel.com>
-
-        [EFL] Update freetype in jhbuild to 2.4.11 and activate subpixel layout
-        https://bugs.webkit.org/show_bug.cgi?id=106774
-
-        Reviewed by Martin Robinson.
-
-        In order to fix a long standing linespacing/font ascent & descent issue
-        we found that FreeType commit b0962ac34e660 solves that problem.
-        Let's update FreeType accordingly, but bump it to 2.4.11 due to the
-        maintainer recommending several security updates after that said commit.
-
-        Also, in order to avoid extra rebaselining, let's activate subpixel
-        layout at the same time.
-
-        * efl/jhbuild.modules: New freetype 2.4.11
-
-2013-01-17  Xiaobo Wang  <xbwang@torchmobile.com.cn>
-
-        [BlackBerry] DRT - Accept http/file URL when running drt-launcher from command line
-        https://bugs.webkit.org/show_bug.cgi?id=107107
-        PR 282192
-
-        Reviewed by Rob Buis.
-
-        The DRT application will convert relative/absolute file path to
-        file://<real-file-path> format, so we only check for http/file prefix.
-
-        * DumpRenderTree/blackberry/DumpRenderTree.cpp:
-        (BlackBerry::WebKit::isFullUrl):
-        (WebKit):
-        (BlackBerry::WebKit::DumpRenderTree::runCurrentTest):
-
-2013-01-17  Frank Farzan  <frankf@chromium.org>
-
-        Flakiness dashboard: Add ChromiumFYI master
-        https://bugs.webkit.org/show_bug.cgi?id=107180
-
-        Reviewed by Ojan Vafai.
-
-        This is needed to enable Chrome Android bots
-        to upload results for instrumentation tests.
-
-        * TestResultServer/generate_builders_json.py:
-        (main):
-        * TestResultServer/static-dashboards/builders.jsonp:
-
-2013-01-17  Frank Farzan  <frankf@chromium.org>
-
-        Add Chrome on Android instrumentation test types to flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=106964
-
-        Reviewed by Ojan Vafai.
-
-        Specifically, add these test types:
-        
-         androidwebview_instrumentation_tests
-         chromiumtestshell_instrumentation_tests
-         contentshell_instrumentation_tests
-        
-        Also, add ChromiumFYI to the list of masters.
-
-        * TestResultServer/static-dashboards/builders.js:
-        (loadBuildersList):
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (currentBuilderGroupCategory):
-
-2013-01-17  Tim 'mithro' Ansell  <mithro@mithis.com>
-
-        Fixing webkitpy's SCM unit tests.
-        https://bugs.webkit.org/show_bug.cgi?id=106429
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/checkout/scm/detection_unittest.py:
-        (SCMDetectorTest.test_detect_scm_system):
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        (Git.in_working_directory):
-        (Git.read_git_config):
-        (Git._assert_can_squash):
-        (Git.remote_branch_ref):
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-        (GitSVNTest.test_commit_with_message_multiple_local_commits_always_squash):
-        (GitTestWithMock):
-        (GitTestWithMock.make_scm):
-        (GitTestWithMock.test_create_patch):
-        * Scripts/webkitpy/common/system/outputcapture.py:
-        (OutputCapture.assert_outputs):
-        (OutputCaptureTestCaseBase):
-        * Scripts/webkitpy/test/printer.py:
-        (Printer.configure):
-
-2013-01-17  Julie Parent  <jparent@chromium.org>
-
-        Flakiness dashboard assumes there must be ToT tests
-        https://bugs.webkit.org/show_bug.cgi?id=107155
-
-        Remove group as a default parameter, since we can't actually know
-        the name of a group initially.  Instead, introduces 
-        currentBuilderGroupName which returns the current builder group
-        if it has been explicitly set, or picks the first one available
-        as a default. Allows us to remove some extra code tracking this
-        stuff as well.
-        
-        Reviewed by Ojan Vafai.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (parseCrossDashboardParameters):
-        (currentBuilderGroupName):
-        (currentBuilderGroup):
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (platformAndBuildType):
-        * TestResultServer/static-dashboards/loader.js:
-        (.):
-
-2013-01-16  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Remove NodeListsNodeData when it's no longer needed
-        https://bugs.webkit.org/show_bug.cgi?id=107074
-
-        Reviewed by Darin Adler.
-
-        Generalize the warning a little so that it's also ignored on PerformanceTests/DOM/TraverseChildNodes.html
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest):
-
-2013-01-17  Simon Fraser  <simon.fraser@apple.com>
-
-        Ref test images are upside-down in WebKit2
-        https://bugs.webkit.org/show_bug.cgi?id=105457
-
-        Reviewed by Sam "Speedy" Weinig.
-        
-        The bitmap context created in TestInvocation::dumpPixelsAndCompareWithExpected()
-        from the window snapshot contained a flipped copy of the image, causing all ref
-        and pixel images to be upside-down.
-
-        * WebKitTestRunner/cg/TestInvocationCG.cpp:
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-
-2013-01-17  Timothy Loh  <timloh@google.com>
-
-        Replaced specifiers variable with is_debug in builders.py
-        https://bugs.webkit.org/show_bug.cgi?id=107057
-
-        Reviewed by Dirk Pranke.
-
-        Replaced specifiers variable with is_debug in builders.py to simplify
-        Bug 106259. The other specifiers are not used elsewhere in the code.
-        Fixed builder_name_for_port_name to return a debug builder if we don't
-        have a release builder.
-
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        (all_port_names):
-        (builder_name_for_port_name):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (TestRebaselineExpectations.test_rebaseline_expectations):
-
-2013-01-17  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Build with LevelDB when IndexedDB is enabled
-        https://bugs.webkit.org/show_bug.cgi?id=103220
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * Scripts/webkitpy/style/checker.py: Do not style check the leveldb source code
-        as it does not conform to WebKit style.
-
-2013-01-17  Sudarsana Nagineni  <sudarsana.nagineni@intel.com>
-
-        [EFL][WK2] Fix misuse of ASSERT on ecore_evas_init()
-        https://bugs.webkit.org/show_bug.cgi?id=107119
-
-        Reviewed by Laszlo Gombos.
-
-        Do not use ASSERT on ecore_evas_init(), since the expression inside
-        the macro compiles out of release builds.
-
-        * TestWebKitAPI/PlatformEfl.cmake: Enable API test UserMessage.
-        * TestWebKitAPI/efl/PlatformWebView.cpp:
-        (TestWebKitAPI::initEcoreEvas): Remove ASSERT on ecore_evas_init().
-
-2013-01-17  Eugene Klyuchnikov  <eustas@chromium.org>
-
-        Web Inspector: Profiler: split "getProfile" to "getCPUProfile" and "loadHeapSnapshot"
-        https://bugs.webkit.org/show_bug.cgi?id=104545
-
-        Reviewed by Yury Semikhatsky.
-
-        Adopt signature changes.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/WebInspectorShims.js:
-        (ProfilerAgent.getCPUProfile): Renamed.
-        (ProfilerAgent.getHeapSnapshot): Added.
-
-2013-01-17  Zan Dobersek  <zdobersek@igalia.com>
-
-        [GTK][EFL] NWRT should check that Xvfb is installed
-        https://bugs.webkit.org/show_bug.cgi?id=71767
-
-        Reviewed by Dirk Pranke.
-
-        EFL and GTK ports now check that Xvfb is installed before running
-        layout tests. The command line used to check whether Xvfb is present
-        is a simple `which Xvfb` that should return 0 as the exit code upon
-        success.
-
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort.show_results_html_file):
-        (EflPort):
-        (EflPort.check_sys_deps):
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort.check_sys_deps):
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver.py:
-        (XvfbDriver):
-        (XvfbDriver.check_xvfb):
-
-2013-01-16  Alan Cutter  <alancutter@chromium.org>
-
-        sheriffbot can't tell me who "kov" is
-        https://bugs.webkit.org/show_bug.cgi?id=106184
-
-        Reviewed by Eric Seidel.
-
-        Added glob style searching to the CommitterList contributors_by_search_string function so exact matches are favoured.
-
-        * Scripts/webkitpy/common/config/committers.py:
-        (Account.matches_glob):
-        (CommitterList.contributors_by_search_string):
-        * Scripts/webkitpy/common/config/committers_unittest.py:
-        (CommittersTest.test_committer_lookup):
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        (Whois):
-
-2013-01-16  David Kilzer  <ddkilzer@apple.com>
-
-        Use xcrun to find path to make for Mac port
-        <http://webkit.org/b/107091>
-
-        Reviewed by Dan Bernstein.
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort._build_java_test_support): Call self.make_command().
-        (MacPort.make_command): Add.  Call xcrun_find().
-        (MacPort.nm_command): Use self.xcrun_find().
-        (MacPort.xcrun_find): Add.  Extract from nm_command().
-
-2013-01-16  Sam Weinig  <sam@webkit.org>
-
-        Make debug-safari --target-web-process work again
-        https://bugs.webkit.org/show_bug.cgi?id=107088
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/webkitdirs.pm:
-        (execMacWebKitAppForDebugging):
-        The shim is now called SecItemShim.
-
-2013-01-16  Alan Cutter  <alancutter@chromium.org>
-
-        GCE build scripts don't take working directory into account when calling findzone.sh
-        https://bugs.webkit.org/show_bug.cgi?id=106962
-
-        Reviewed by Adam Barth.
-
-        * EWSTools/GoogleComputeEngine/build-chromium-ews.sh:
-        * EWSTools/GoogleComputeEngine/build-commit-queue.sh:
-        * EWSTools/GoogleComputeEngine/build-feeder-style-sheriffbot.sh:
-
-2013-01-16  Alan Cutter  <alancutter@chromium.org>
-
-        start-queue.sh does not pass remaining parameters correctly
-        https://bugs.webkit.org/show_bug.cgi?id=107054
-
-        Reviewed by Adam Barth.
-
-        start-queue.sh now passes all remaining params to the webkit-patch command.
-        Previously only one additional queue parameter could be sent.
-
-        * EWSTools/start-queue.sh:
-
-2013-01-16  Xueqing Huang  <huangxueqing@baidu.com>
-
-        check-webkit-style script cannot running in Chinese windows.
-        https://bugs.webkit.org/show_bug.cgi?id=87548
-
-        Reviewed by Darin Adler.
-
-        * Scripts/webkitpy/common/system/platforminfo.py:
-        (PlatformInfo._win_version_tuple_from_cmd):
-
-2013-01-16  Dirk Pranke  <dpranke@chromium.org>
-
-        Delete an extraneous print statement.
-        https://bugs.webkit.org/show_bug.cgi?id=106562
-
-        Delete the extraneous print statement introduced in r139841.
-
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (Printer.print_found):
-
-2013-01-16  Zan Dobersek  <zdobersek@igalia.com>
-
-        Please reinstate --pixel
-        https://bugs.webkit.org/show_bug.cgi?id=101995
-
-        Reviewed by Dirk Pranke.
-
-        Add the '--pixel' and '--no-pixel' options for NRWT as aliases for
-        the '--pixel-tests' (or '-p') and '--no-pixel-tests' options respectively.
-        Some developers are still used to these options that were available in the ORWT.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-
-2013-01-16  Eric Seidel  <eric@webkit.org>
-
-        Remove --shark* support from sunspider/run-sunspider now that Shark is dead
-        https://bugs.webkit.org/show_bug.cgi?id=99512
-
-        Reviewed by Darin Adler.
-
-        * Scripts/run-sunspider:
-
-2013-01-16  Eric Seidel  <eric@webkit.org>
-
-        Remove webkitpy Visual Studio files, as core developers are not interested in maintaining them
-        https://bugs.webkit.org/show_bug.cgi?id=106036
-
-        Reviewed by Darin Adler.
-
-        * Scripts/webkitpy/webkitpy.pyproj: Removed.
-        * Scripts/webkitpy/webkitpy.sln: Removed.
-
-2013-01-16  Chris Hopman  <cjhopman@chromium.org>
-
-        [Chromium] Remove hardcoded chromium_*.jar in gyp files
-        https://bugs.webkit.org/show_bug.cgi?id=104049
-
-        Reviewed by Eric Seidel.
-
-        Targets with dependencies (direct/indirect) on a java target receive
-        the chromium_*.jar paths in the variable input_jars_paths. Targets
-        should use that rather than hardcoding where they think the jar will
-        be. These can be passed directly to ant as INPUT_JARS_PATHS rather
-        than as --jars to generate_native_test.py.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * TestWebKitAPI/TestWebKitAPI.gyp/TestWebKitAPI.gyp:
-
-2013-01-16  Dan Carney  <dcarney@google.com>
-
-        [chromium] move setMockDeviceOrientation to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=106895
-
-        Reviewed by Jochen Eisinger.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebKit):
-        (WebTestRunner::WebTestDelegate::setDeviceOrientation):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::setMockDeviceOrientation):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::setDeviceOrientation):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-01-16  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] route more webkit_support and webviewhost callbacks through WebTestDelegate
-        https://bugs.webkit.org/show_bug.cgi?id=106904
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        (DRTTestRunner::notifyDone):
-        (DRTTestRunner::reset):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestRunner::WebTestDelegate::setDeviceScaleFactor):
-        (WebTestRunner::WebTestDelegate::setFocus):
-        (WebTestRunner::WebTestDelegate::setAcceptAllCookies):
-        (WebTestRunner::WebTestDelegate::pathToLocalResource):
-        (WebTestRunner::WebTestDelegate::setLocale):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::setAlwaysAcceptCookies):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::setWindowIsKey):
-        (WebTestRunner::TestRunner::pathToLocalResource):
-        (WebTestRunner::TestRunner::setBackingScaleFactor):
-        (WebTestRunner::TestRunner::setPOSIXLocale):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (WebTestRunner::TestRunner::taskList):
-        (TestRunner):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::setDeviceScaleFactor):
-        (WebViewHost::setFocus):
-        (WebViewHost::setAcceptAllCookies):
-        (WebViewHost::pathToLocalResource):
-        (WebViewHost::setLocale):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-01-16  Sergio Villar Senin  <svillar@igalia.com>
-
-        [GTK] build-webkit fails if the jhbuild wrapper is not used
-        https://bugs.webkit.org/show_bug.cgi?id=106769
-
-        Reviewed by Martin Robinson.
-
-        Return an empty array instead of "" in
-        jhbuildWrapperPrefixIfNeeded() because otherwise that empty string
-        will not be recognized as a valid command when the returned array
-        is directly passed to perl's system() call.
-
-        * Scripts/webkitdirs.pm:
-        (jhbuildWrapperPrefixIfNeeded):
-
-2013-01-16  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] add title text direction attribute to TestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=106907
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        (DRTTestRunner::reset):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestRunner.h:
-        (WebTestRunner::WebTestRunner::setTitleTextDirection):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::setTitleTextDirection):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::didReceiveTitle):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::didReceiveTitle):
-
-2013-01-16  Jussi Kukkonen  <jussi.kukkonen@intel.com>
-
-        NRWT still confused about test count with --repeat-each and --iterations
-        https://bugs.webkit.org/show_bug.cgi?id=106562
-
-        Reviewed by Dirk Pranke.
-
-        Fix the printed unique test count and skipped count. This
-        seems to have broken in r127688 ("NRWT lies about the number
-        of tests that it's skipping when used with --repeat-each").
-
-        Also add a test for print_found()
-
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (Printer.print_found):
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-        (Testprinter.test_details):
-        (Testprinter):
-        (Testprinter.test_found):
-
-2013-01-15  Zan Dobersek  <zdobersek@igalia.com>
-
-        Unreviewed follow-up to r139769.
-
-        Note that omitting the WebKit1 code from the build now
-        works for GTK as well.
-
-        * Scripts/build-webkit:
-
-2013-01-15  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: truncate output to the terminal width when necessary
-        https://bugs.webkit.org/show_bug.cgi?id=106973
-
-        Reviewed by Ojan Vafai.
-
-        this implements the same logic for test-webkitpy that we have
-        for run-webkit-tests (and ninja).
-
-        No tests written as this is exercised by running test-webkitpy itself.
-
-        * Scripts/webkitpy/test/printer.py:
-        (Printer.configure):
-        (Printer._test_line):
-
-2013-01-15  Dirk Pranke  <dpranke@chromium.org>
-
-        remove extraneous output in test-webkitpy
-        https://bugs.webkit.org/show_bug.cgi?id=106971
-
-        Reviewed by Ojan Vafai.
-
-        We weren't ignoring or capturing the echoed output from
-        these two tests, and getting noise in the logs as a result.
-
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        (ExecutiveTest.test_auto_stringify_args):
-        (ExecutiveTest.test_popen_args):
-
-2013-01-15  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy.layout_tests.servers.http_server_unittest.TestHttpServer.test_win32_start_and_stop is flaky
-        https://bugs.webkit.org/show_bug.cgi?id=106974
-
-        Reviewed by Ryosuke Niwa.
-
-        I forgot to stub out the call to check to ensure that the ports were
-        available, so this test could fail if something was listening on 8000 or
-        8443 on the machine.
-
-        * Scripts/webkitpy/layout_tests/servers/http_server_unittest.py:
-        (TestHttpServer.test_win32_start_and_stop):
-
-2013-01-15  Levi Weintraub  <leviw@chromium.org>
-
-        Unreviewed, rolling out r139792.
-        http://trac.webkit.org/changeset/139792
-        https://bugs.webkit.org/show_bug.cgi?id=106970
-
-        Broke the windows build.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        (DRTTestRunner::notifyDone):
-        (DRTTestRunner::reset):
-        (DRTTestRunner::setAlwaysAcceptCookies):
-        (DRTTestRunner::setWindowIsKey):
-        (DRTTestRunner::pathToLocalResource):
-        (DRTTestRunner::setPOSIXLocale):
-        (InvokeCallbackTask):
-        (InvokeCallbackTask::InvokeCallbackTask):
-        (InvokeCallbackTask::runIfValid):
-        (DRTTestRunner::setBackingScaleFactor):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        (DRTTestRunner::taskList):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestRunner::WebTestDelegate::setDatabaseQuota):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::setDatabaseQuota):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::setPendingExtraData):
-        (WebViewHost::setDeviceScaleFactor):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-01-15  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Build fix after r139357. The port name of MacWK2EWS should be 'mac-wk2'.
-
-        * Scripts/webkitpy/common/config/ports.py:
-        (MacWK2Port):
-
-2013-01-15  Alan Cutter  <alancutter@chromium.org>
-
-        Extend sheriffbot's "help" command to be able to get help on individual commands
-        https://bugs.webkit.org/show_bug.cgi?id=106629
-
-        Reviewed by Eric Seidel.
-
-        Added a help command to sheriffbot.
-        Fixed some style issues and ordered the commands alphabetically.
-
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        (IRCCommand):
-        (IRCCommand.execute):
-        (IRCCommand.usage):
-        (IRCCommand.help):
-        (CreateBug):
-        (CreateBug.execute):
-        (Help):
-        (Help.execute):
-        (Help._post_command_help):
-        (Hi):
-        (Hi.execute):
-        (Restart):
-        (RollChromiumDEPS):
-        (RollChromiumDEPS._parse_args):
-        (RollChromiumDEPS._expand_irc_nickname):
-        (RollChromiumDEPS.execute):
-        (Rollout):
-        (Rollout._extract_revisions):
-        (Rollout.execute):
-        (Sheriffs):
-        (Sheriffs.execute):
-        (Whois):
-        (Whois.execute):
-        * Scripts/webkitpy/tool/bot/ircbot_unittest.py:
-        (IRCBotTest.test_help):
-
-2013-01-15  Enrica Casucci  <enrica@apple.com>
-
-        Add a new set of WebKit2 APIs for text search and
-        search results management.
-        https://bugs.webkit.org/show_bug.cgi?id=106834.
-        <rdar://problem/12597159>
-
-        Added new test for the new WebKit2 API for
-        text search.
-        
-        Reviewed by Simon Fraser.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2/FindMatches.mm: Added.
-
-2013-01-15  Levi Weintraub  <leviw@chromium.org>
-
-        [chromium] route more webkit_support and webviewhost callbacks through WebTestDelegate
-        https://bugs.webkit.org/show_bug.cgi?id=106904
-
-        Reverting 139794. It broke the build. It appears that a header file,
-        WebTextDirection.h, was left out.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        (DRTTestRunner::reset):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner::setTitleTextDirection):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestRunner.h:
-        (WebTestRunner::WebTestRunner::shouldStayOnPageAfterHandlingBeforeUnload):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::shouldStayOnPageAfterHandlingBeforeUnload):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::didReceiveTitle):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::didReceiveTitle):
-
-2013-01-15  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] route more webkit_support and webviewhost callbacks through WebTestDelegate
-        https://bugs.webkit.org/show_bug.cgi?id=106904
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        (DRTTestRunner::notifyDone):
-        (DRTTestRunner::reset):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestRunner::WebTestDelegate::setDeviceScaleFactor):
-        (WebTestRunner::WebTestDelegate::setFocus):
-        (WebTestRunner::WebTestDelegate::setAcceptAllCookies):
-        (WebTestRunner::WebTestDelegate::pathToLocalResource):
-        (WebTestRunner::WebTestDelegate::setLocale):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::setAlwaysAcceptCookies):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::setWindowIsKey):
-        (WebTestRunner::TestRunner::pathToLocalResource):
-        (WebTestRunner::TestRunner::setBackingScaleFactor):
-        (WebTestRunner::TestRunner::setPOSIXLocale):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (WebTestRunner::TestRunner::taskList):
-        (TestRunner):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::setDeviceScaleFactor):
-        (WebViewHost::setFocus):
-        (WebViewHost::setAcceptAllCookies):
-        (WebViewHost::pathToLocalResource):
-        (WebViewHost::setLocale):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-01-15  Zan Dobersek  <zdobersek@igalia.com>
-
-        Tests with WontFix expectation are (indirectly) skipped
-        https://bugs.webkit.org/show_bug.cgi?id=105860
-
-        Reviewed by Dirk Pranke.
-
-        Only skip the WontFix expectation if there are no other layout test
-        expectations (like Failure, ImageOnlyFailure) listed for the test.
-        This makes it possible to run an expected failure for which there
-        is no reason or interest to fix. There are some ports that would like
-        to exercise this behavior as well as specific test cases that should use
-        such expectations.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectationParser._tokenize_line): Only add the SKIP modifier for a
-        WONTFIX test if there are no expectations listed. The warning is adjusted
-        to reflect the new behavior.
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py: Add
-        and adjust test cases for these changes.
-        (ExpectationSyntaxTests.test_wontfix):
-        (SemanticTests.test_skip_and_wontfix):
-
-2013-01-15  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] add title text direction attribute to TestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=106907
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        (DRTTestRunner::reset):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestRunner.h:
-        (WebTestRunner::WebTestRunner::setTitleTextDirection):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::setTitleTextDirection):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::didReceiveTitle):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::didReceiveTitle):
-
-2013-01-15  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: change the default # of locked shards on chromium_win to 1
-        https://bugs.webkit.org/show_bug.cgi?id=106938
-
-        Reviewed by Eric Seidel.
-
-        It looks like LigHTTPd might be buggy or unstable if we are
-        running multiple http tests in parallel; see
-        http://code.google.com/p/chromium/issues/detail?id=169530 for more
-        context as well. This change will stop running http tests in parallel
-        and we can see if this fixes things.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        (ChromiumWinPort.default_max_locked_shards):
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        (ChromiumWinTest.test_path_to_image_diff):
-        (ChromiumWinTest):
-        (ChromiumWinTest.test_default_max_locked_shards):
-
-2013-01-15  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move WebDatabase related methods to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=106905
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        (DRTTestRunner::reset):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestRunner::WebTestDelegate::clearAllDatabases):
-        (WebTestRunner::WebTestDelegate::setDatabaseQuota):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::clearAllDatabases):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::setDatabaseQuota):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::clearAllDatabases):
-        (WebViewHost::setDatabaseQuota):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-01-15  Tim 'mithro' Ansell  <mithro@mithis.com>
-
-        Renaming CleanWorkingDirectory step to DiscardLocalChanges to make
-        functionality match the name.
-        https://bugs.webkit.org/show_bug.cgi?id=106870
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/tool/commands/download.py:
-        (Clean):
-        (Update):
-        (Build):
-        (BuildAndTest):
-        (CheckStyle):
-        (BuildAttachment):
-        (BuildAndTestAttachment):
-        (AbstractPatchApplyingCommand):
-        (ApplyWatchList):
-        (AbstractPatchLandingCommand):
-        (CreateRollout):
-        * Scripts/webkitpy/tool/steps/__init__.py:
-        * Scripts/webkitpy/tool/steps/cleanworkingdirectory.py:
-        (CleanWorkingDirectory.options):
-        (CleanWorkingDirectory.run):
-        * Scripts/webkitpy/tool/steps/cleanworkingdirectory_unittest.py:
-        * Scripts/webkitpy/tool/steps/discardlocalchanges.py: Copied from Tools/Scripts/webkitpy/tool/steps/cleanworkingdirectory.py.
-        * Scripts/webkitpy/tool/steps/discardlocalchanges_unittest.py: Copied from Tools/Scripts/webkitpy/tool/steps/cleanworkingdirectory_unittest.py.
-
-2013-01-15  Zan Dobersek  <zandobersek@gmail.com>
-
-        [Autotools] Add support for WebKit2-only builds
-        https://bugs.webkit.org/show_bug.cgi?id=106889
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * GNUmakefile.am: Only build the GtkLauncher and DumpRenderTree if building WebKit1.
-        * Scripts/build-webkit: Pass along the information on whether to build WebKit1 when
-        building the GTK port through build-webkit.
-        * Scripts/webkitdirs.pm:
-        (buildAutotoolsProject): Add the --disable-webkit1 configuration flag to the build
-        arguments when not building WebKit1.
-        (buildGtkProject): Pass along the information on whether to build WebKit1 when building
-        through the Autotools build system.
-
-2013-01-15  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] Enable Performance Timeline, Resource Timing, Navigation Timing features
-        https://bugs.webkit.org/show_bug.cgi?id=106197
-
-        Reviewed by Martin Robinson.
-
-        * Scripts/webkitperl/FeatureList.pm: Add the configuration options for all three
-        features. Enable them on GTK, meaning they will be enabled in development builds
-        (i.e. when building with build-webkit).
-
-2013-01-15  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] Enable CSS Image Resolution feature
-        https://bugs.webkit.org/show_bug.cgi?id=99038
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Enable the CSS Image Resolution feature for the development
-        builds of the GTK port.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2013-01-15  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] Stop passing the unstable features flag to configure script when using build-webkit
-        https://bugs.webkit.org/show_bug.cgi?id=106579
-
-        Reviewed by Gustavo Noronha Silva.
-
-        The --enable-unstable-features flag is not required to be passed anymore
-        to the configure script as it was removed in r138252.
-
-        * Scripts/webkitdirs.pm:
-        (buildAutotoolsProject):
-
-2013-01-15  Tony Chang  <tony@chromium.org>
-
-        [chromium] Unreviewed, fix a bug where we don't properly shutdown lighttpd.
-
-        * Scripts/webkitpy/layout_tests/servers/http_server.py:
-        (Lighttpd._check_and_kill): Pass /pid so taskkill.exe doesn't error out on us.
-        * Scripts/webkitpy/layout_tests/servers/http_server_unittest.py:
-        (TestHttpServer.test_win32_start_and_stop):
-
-2013-01-15  Joshua Bell  <jsbell@chromium.org>
-
-        Unreviewed. Adding Michael Pruett as contributor.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-01-15  Victor Carbune  <victor@rosedu.org>
-
-        Unreviewed. Update my email addresses.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-01-15  Zan Dobersek  <zdobersek@igalia.com>
-
-        [GTK] Waiting on the gdb process will lead to deadlock
-        https://bugs.webkit.org/show_bug.cgi?id=106906
-
-        Reviewed by Philippe Normand.
-
-        Use communicate() rather than wait() on the Popen object that's running the gdb
-        command. This avoids the deadlock that occurs on the GTK builders.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort._get_gdb_output):
-
-2013-01-15  Zan Dobersek  <zdobersek@igalia.com>
-
-        [GTK] Limit the number of frames printed out when backtracing with gdb
-        https://bugs.webkit.org/show_bug.cgi?id=106901
-
-        Reviewed by Philippe Normand.
-
-        Printing an unlimited number of frames when dumping the gdb backtracing
-        output can cause timeouts in the builders. This patch limits the number
-        of frames that are printed out to 1024.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort._get_gdb_output):
-
-2013-01-15  Andras Becsi  <andras.becsi@digia.com>
-
-        [Qt] Fix ImageDiff's image format conversion
-        https://bugs.webkit.org/show_bug.cgi?id=106880
-
-        Reviewed by Csaba Osztrogonác.
-
-        Besides actually doing the conversion this also silences the suspicious warning:
-        "ignoring return value of function declared with warn_unused_result attribute".
-
-        * ImageDiff/qt/ImageDiff.cpp:
-        (main): QImage::convertToFormat, contrary to the assumed behaviour, returns a
-        copy of the image in the given format and does not alter the image itself.
-
-2013-01-15  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move remaining methods that just set a boolean flag to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=106823
-
-        Reviewed by Darin Fisher.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        (DRTTestRunner::reset):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestRunner.h:
-        (WebTestRunner::WebTestRunner::shouldDumpBackForwardList):
-        (WebTestRunner::WebTestRunner::deferMainResourceDataLoad):
-        (WebTestRunner::WebTestRunner::shouldDumpSelectionRect):
-        (WebTestRunner::WebTestRunner::testRepaint):
-        (WebTestRunner::WebTestRunner::sweepHorizontally):
-        (WebTestRunner::WebTestRunner::isPrinting):
-        (WebTestRunner::WebTestRunner::shouldStayOnPageAfterHandlingBeforeUnload):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::shouldDumpBackForwardList):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::deferMainResourceDataLoad):
-        (WebTestRunner::TestRunner::shouldDumpSelectionRect):
-        (WebTestRunner::TestRunner::testRepaint):
-        (WebTestRunner::TestRunner::sweepHorizontally):
-        (WebTestRunner::TestRunner::isPrinting):
-        (WebTestRunner::TestRunner::shouldStayOnPageAfterHandlingBeforeUnload):
-        (WebTestRunner::TestRunner::dumpBackForwardList):
-        (WebTestRunner::TestRunner::setDeferMainResourceDataLoad):
-        (WebTestRunner::TestRunner::dumpSelectionRect):
-        (WebTestRunner::TestRunner::repaintSweepHorizontally):
-        (WebTestRunner::TestRunner::setPrinting):
-        (WebTestRunner::TestRunner::setShouldStayOnPageAfterHandlingBeforeUnload):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-
-2013-01-14  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: stub out show_results_html for mock ports
-        https://bugs.webkit.org/show_bug.cgi?id=106848
-
-        Reviewed by Ojan Vafai.
-
-        We were accidentally using the underlying ports'
-        show_results_html_file() implementation, which would, unsurprisingly,
-        fail in many cases (e.g., running mock-efl on the mac).
-
-        No test added since we don't generally add tests for the mock
-        implementation.
-
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py:
-        (MockDRTPort.show_results_html_file):
-
-2013-01-14  Tim 'mithro' Ansell  <mithro@mithis.com>
-
-        Changing clean_working_directory/clean_local_commits and related
-        functions to have consistent naming.
-
-        https://bugs.webkit.org/show_bug.cgi?id=104198
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        * Scripts/webkitpy/common/checkout/scm/scm.py:
-        * Scripts/webkitpy/common/checkout/scm/scm_mock.py:
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-        * Scripts/webkitpy/tool/steps/cleanworkingdirectory.py:
-        * Scripts/webkitpy/tool/steps/cleanworkingdirectory_unittest.py:
-
-2013-01-14  Alan Cutter  <alancutter@chromium.org>
-
-        Fix EWS GCE build scripts to detect which zone is available
-        https://bugs.webkit.org/show_bug.cgi?id=106524
-
-        Reviewed by Adam Barth.
-
-        * EWSTools/GoogleComputeEngine/build-chromium-ews.sh:
-        * EWSTools/GoogleComputeEngine/build-commit-queue.sh:
-        * EWSTools/GoogleComputeEngine/build-feeder-style-sheriffbot.sh:
-        * EWSTools/GoogleComputeEngine/findzone.sh: Added.
-
-2013-01-14  Tim 'mithro' Ansell  <mithro@mithis.com>
-
-        Adding an error string to AmbiguousCommitError.
-        https://bugs.webkit.org/show_bug.cgi?id=106846
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        (AmbiguousCommitError.__init__):
-
-2013-01-14  Dirk Pranke  <dpranke@chromium.org>
-
-        kill whole lighttpd process tree for chromium win
-        https://bugs.webkit.org/show_bug.cgi?id=106838
-
-        Reviewed by Tony Chang.
-
-        Land a speculative fix for lighttpd.exe hanging on some chromium bots;
-        I think a test is causing a httpd server child process to wedge and
-        killing the parent httpd server process isn't sufficient to ensure
-        that the children are also killed.
-
-        * Scripts/webkitpy/layout_tests/servers/http_server.py:
-        (Lighttpd._check_and_kill):
-        * Scripts/webkitpy/layout_tests/servers/http_server_unittest.py:
-        (TestHttpServer.test_start_cmd):
-        (TestHttpServer):
-        (TestHttpServer.test_win32_start_and_stop):
-        (TestHttpServer.test_win32_start_and_stop.wait_for_action):
-        (TestHttpServer.test_win32_start_and_stop.mock_returns):
-        (TestHttpServer.test_win32_start_and_stop.mock_returns.return_value_thunk):
-
-2013-01-14  Nico Weber  <thakis@chromium.org>
-
-        [chromium] Enable `update-webkit --chromium --ninja` on windows
-        https://bugs.webkit.org/show_bug.cgi?id=106836
-
-        Reviewed by Eric Seidel.
-
-        After running this, build-webkit --chromium will use ninja to build.
-        Apparently there are some minor issues with that still, so it's
-        not quite ready for use yet.
-
-        * Scripts/webkitdirs.pm:
-        (determineIsChromiumNinja):
-        (buildChromium):
-
-2013-01-14  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: use the same search path for baselines and TestExpectations on apple mac
-        https://bugs.webkit.org/show_bug.cgi?id=105599
-
-        Reviewed by Ryosuke Niwa.
-
-        Bug 105583 revealed some confusion due to the fact that the Apple
-        Mac port used a different list of directories to search for baselines
-        and TestExpectations files (actually, pretty much every port does).
-
-        It seems like a good idea to use the same list for both by default, but
-        making this happen will affect every port in slightly different ways, so
-        we'll try this on the Apple Mac port first.
-
-        Note that the effective changes for this are that:
-        1) The apple mac port will look in platform/wk2 for baselines where
-        it didn't before (it will look after looking in mac-wk2 but before
-        the non-wk2 dirs)
-        2) The apple mac-snowleopard port will use the expectations in
-        mac-lion as well as the expectations in mac-snowleopard, although
-        I'm not even sure if mac-snowleopard is still supported ...
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.default_baseline_search_path):
-        (MacPort.expectations_files):
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        (test_baseline_search_path):
-
-2013-01-14  Dominic Mazzoni  <dmazzoni@google.com>
-
-        AX: Need to implement ColorWellRole
-        https://bugs.webkit.org/show_bug.cgi?id=106756
-
-        Reviewed by Chris Fleizach.
-
-        Returns a string representation of the value of a color
-        when the role is Color Well, to make it easy to write layout
-        tests for color controls.
-
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.cpp:
-
-2013-01-14  Dominic Mazzoni  <dmazzoni@google.com>
-
-        Chromium: Error in AccessibilityUIElement::intValueGetterCallback
-        https://bugs.webkit.org/show_bug.cgi?id=106682
-
-        Reviewed by Chris Fleizach.
-
-        Modify Chromium's DRT implementation of intValue to return a
-        different value depending on the role.
-
-        There are actually platform-specific differences in what should
-        be returned in the "value" of an object, so Chromium normally keeps
-        these separate (i.e. valueForRange, headingLevel, hierarchicalLevel, etc.)
-        but this is a fine simplification to make cross-platform tests easier.
-
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.cpp:
-        (WebTestRunner::AccessibilityUIElement::intValueGetterCallback):
-
-2013-01-14  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move remaining methods to dump WebViewClient callbacks to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=106785
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        (DRTTestRunner::reset):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebTestProxyBase):
-        (WebTestRunner::WebTestProxy::setStatusText):
-        (WebTestRunner::WebTestProxy::didStopLoading):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestRunner.h:
-        (WebTestRunner::WebTestRunner::shouldDumpStatusCallbacks):
-        (WebTestRunner::WebTestRunner::shouldDumpProgressFinishedCallback):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::shouldDumpStatusCallbacks):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::shouldDumpProgressFinishedCallback):
-        (WebTestRunner::TestRunner::dumpWindowStatusChanges):
-        (WebTestRunner::TestRunner::dumpProgressFinishedCallback):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::setStatusText):
-        (WebTestRunner):
-        (WebTestRunner::WebTestProxyBase::didStopLoading):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::didStopLoading):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-01-14  Andrey Lushnikov  <lushnikov@chromium.org>
-
-        Web Inspector: devtools front-end doesn't have focus in TestShell
-        https://bugs.webkit.org/show_bug.cgi?id=106778
-
-        Reviewed by Pavel Feldman.
-
-        Focus devTools window after loadURL method.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::runFileTest):
-
-2013-01-14  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [EFL][jhbuild] Build the GStreamer-related dependencies with the "configure" script
-        https://bugs.webkit.org/show_bug.cgi?id=106573
-
-        Reviewed by Philippe Normand.
-
-        Similarly to what's been described in bug 106569, we're building
-        from release tarballs, so there's no reason to regenerate the
-        autoconf-related stuff with autogen.sh, especially since we might
-        run into trouble with automake 1.13 and deprecated macros.
-
-        * efl/jhbuild.modules:
-
-2013-01-14  Jocelyn Turcotte  <jocelyn.turcotte@digia.com>
-
-        [Qt] The Qt's configuration isn't honoured regarding the use of the system libpng and libjpeg
-        https://bugs.webkit.org/show_bug.cgi?id=104909
-
-        Reviewed by Simon Hausmann.
-
-        To be able to build redistribuable binary packages, Qt's configure switches
-        -qt-libpng and -qt-libjpeg are used to avoid having the binaries trying to
-        dynamically link to optional system libraries.
-        QtWebKit is doing its own configure checks for those libraries, thus adding a
-        runtime dependency that might not be fulfilled if the packager's machine had
-        those libraries while the user's machine won't.
-
-        Since in most cases where WebKit will want to use those system libraries, Qt will
-        also be using them, remove these configure tests from WebKit.
-
-        * qmake/config.tests/libjpeg/libjpeg.cpp: Removed.
-        * qmake/config.tests/libjpeg/libjpeg.pro: Removed.
-        * qmake/config.tests/libpng/libpng.cpp: Removed.
-        * qmake/config.tests/libpng/libpng.pro: Removed.
-        * qmake/mkspecs/features/features.prf:
-
-2013-01-09  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [EFL][jhbuild] Bump the EFL dependencies in jhbuild to 1.7.5.
-        https://bugs.webkit.org/show_bug.cgi?id=106574
-
-        Reviewed by Laszlo Gombos.
-
-        Rely on a more recent stable release, which includes support for
-        Lua 5.2 in Edje and other assorted minor fixes.
-
-        While here, also use the "configure" script to build the libraries
-        instead of relying on autogen.sh, which is not really needed with
-        a release tarball and may have problems with automake 1.13.
-
-        * efl/jhbuild.modules:
-
-2013-01-14  Andrey Lushnikov  <lushnikov@chromium.org>
-
-        Web Inspector: fix DRT to deliver simulated events to devtools front-end
-        https://bugs.webkit.org/show_bug.cgi?id=106650
-
-        Reviewed by Pavel Feldman.
-
-        Add separated m_devToolsTestInterfaces object to testShell which is
-        bind to devTools webview.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::initialize):
-        (TestShell::createMainWindow):
-        (TestShell::~TestShell):
-        (TestShell::showDevTools):
-        (TestShell::resetTestController):
-        (TestShell::bindJSObjectsToWindow):
-        (TestShell::createNewWindow):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell):
-
-2013-01-14  Alan Cutter  <alancutter@chromium.org>
-
-        Sheriffbot command aliases need test cases
-        https://bugs.webkit.org/show_bug.cgi?id=106754
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/tool/commands/sheriffbot_unittest.py:
-        (SheriffBotTest.test_command_aliases):
-
-2013-01-13  Alan Cutter  <alancutter@chromium.org>
-
-        Allow users to misspell the "sheriffs" command in sheriffbot
-        https://bugs.webkit.org/show_bug.cgi?id=106628
-
-        Reviewed by Steve Block.
-
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-
-2013-01-13  Alan Cutter  <alancutter@chromium.org>
-
-        Make "gardeners" an alias for "sheriffs" in sherrifbot
-        https://bugs.webkit.org/show_bug.cgi?id=106627
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-
-2013-01-13  Dirk Pranke  <dpranke@chromium.org>
-
-        [chromium] webkitpy-test: executive.py stringify_args error on the release test bot
-        https://bugs.webkit.org/show_bug.cgi?id=105380
-
-        Reviewed by Eric Seidel.
-
-        Fix a regression introduced in r137692 where we were double-encoding
-        the arguments to popen(); this was only an issue on windows, where
-        we would try to encode something to mbcs, then try to encode it
-        to unicode as if the input as ascii.
-
-        * Scripts/webkitpy/common/system/executive.py:
-        (Executive.run_command):
-
-2013-01-13  Alan Cutter  <alancutter@chromium.org>
-
-        State who told sheriffbot to roll the Chromium deps and to what revision
-        https://bugs.webkit.org/show_bug.cgi?id=106626
-
-        Reviewed by Eric Seidel.
-
-        Added optional argument to post-chromium-deps-roll so Sheriffbot can specify ChangeLog message.
-
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        (RollChromiumDEPS._expand_irc_nickname):
-        (RollChromiumDEPS.execute):
-        * Scripts/webkitpy/tool/bot/irc_command_unittest.py:
-        (IRCCommandTest.test_roll_chromium_deps):
-        * Scripts/webkitpy/tool/bot/sheriff.py:
-        (Sheriff.post_chromium_deps_roll):
-        * Scripts/webkitpy/tool/commands/roll.py:
-        (RollChromiumDEPS._prepare_state):
-        (PostChromiumDEPSRoll):
-        (PostChromiumDEPSRoll._prepare_state):
-        * Scripts/webkitpy/tool/commands/roll_unittest.py:
-        (PostRollCommandsTest.test_prepare_state):
-        * Scripts/webkitpy/tool/steps/preparechangelogfordepsroll.py:
-        (PrepareChangeLogForDEPSRoll.run):
-
-2013-01-13  Alan Cutter  <alancutter@chromium.org>
-
-        Add Alan Cutter as contributor
-        https://bugs.webkit.org/show_bug.cgi?id=106747
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-01-13  Jonathan Liu  <net147@gmail.com>
-
-        Fix CONFIG missing link_pkgconfig on Windows
-        https://bugs.webkit.org/show_bug.cgi?id=106647
-
-        Some libraries (e.g. libxslt, libxml2 and sqlite3) fail to link
-        properly on Windows because they are added to PKGCONFIG but
-        CONFIG does not contain link_pkgconfig.
-
-        This is because link_pkgconfig is added in unix/default_pre.prf
-        which is only used for UNIX platforms. To fix this, move it to
-        the general default_pre.prf.
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/default_pre.prf:
-        * qmake/mkspecs/features/unix/default_pre.prf:
-
-2013-01-12  Nico Weber  <thakis@chromium.org>
-
-        nrwt/chromium: Don't prefer chromium over webkit build directories
-        https://bugs.webkit.org/show_bug.cgi?id=105597
-
-        Reviewed by Dirk Pranke.
-
-        Rely on the new timestamp logic instead. Requested by dpranke in
-        https://bugs.webkit.org/show_bug.cgi?id=105498
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort._static_build_path):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux_unittest.py:
-        (ChromiumLinuxPortTest.test_build_path):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        (ChromiumMacPortTest.test_build_path):
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        (ChromiumWinTest.test_build_path):
-
-2013-01-12  Nico Weber  <thakis@chromium.org>
-
-        Use ninja by default on Linux for build-webkit --chromium, bot edition
-        https://bugs.webkit.org/show_bug.cgi?id=104434
-
-        Reviewed by Eric Seidel.
-
-        r139557 changed update-webkit to pick ninja by default on linux, but
-        the bots run update-webkit-chromium directly so they didn't see this.
-        Move the default for ninja into update-webkit-chromium so that it's
-        picked up by the bots, and let update-webkit forward non-default
-        options to there.
-
-        This way, the default is in one place only and both developers (who
-        usually use update-webkit which then shells out to
-        updat-webkit-chromium) and bots (which use update-webkit-chromium
-        directly) see the same behavior.
-
-        * Scripts/update-webkit:
-        * Scripts/update-webkit-chromium:
-
-2013-01-12  Nico Weber  <thakis@chromium.org>
-
-        Make ninja the default build system on Linux for build-webkit --chromium
-        https://bugs.webkit.org/show_bug.cgi?id=104434
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/update-webkit:
-
-2013-01-12  Alan Cutter  <alancutter@chromium.org>
-
-        Migrate the remaining bots in EC2 to Google Compute Engine
-        https://bugs.webkit.org/show_bug.cgi?id=106005
-
-        Reviewed by Eric Seidel.
-
-        Updated bot scripts for launching feeder-queue, style-queue and sheriffbot on GCE.
-
-        * EWSTools/GoogleComputeEngine/build-feeder-style-sheriffbot.sh: Copied from Tools/EWSTools/build-repo.sh.
-        * EWSTools/boot.sh:
-        * EWSTools/build-repo.sh:
-        * EWSTools/start-queue.sh:
-
-2013-01-12  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move inspector related methods to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=106654
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestRunner::WebTestDelegate::showDevTools):
-        (WebTestRunner::WebTestDelegate::closeDevTools):
-        (WebTestRunner::WebTestDelegate::evaluateInWebInspector):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::showWebInspector):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::closeWebInspector):
-        (WebTestRunner::TestRunner::evaluateInWebInspector):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::showDevTools):
-        (WebViewHost::closeDevTools):
-        (WebViewHost::evaluateInWebInspector):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-01-11  Julie Parent  <jparent@chromium.org>
-
-        Builder should not be a valid parameter for stats dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=106698
-
-        Reviewed by Dirk Pranke.
-        
-        Since builder is a dashboard specific parameter, dashboard_base
-        should not be handling it in handleValidHashParameterWrapper, rather,
-        each specific dashboard should in its handleValidHashParameter function.
-    
-        Note that the FIXME in dashboard_base about this was actually wrong -
-        we don't want to move it to g_crossDashboardState, because it isn't
-        actually cross dashboard state.
-        
-        In fact, flakiness and treemap have the code in 
-        handleValidHashParameter, but it is currently dead code because 
-        dashboard_base gets to it first.
-        
-        Added the proper handling to timeline_explorer, since builder is
-        valid there.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        * TestResultServer/static-dashboards/timeline_explorer.html:
-
-2013-01-11  Ryosuke Niwa  <rniwa@webkit.org>
-
-        REGRESSION: buildbot mangles error messages with timestamps run-webkit-tests outputs
-        https://bugs.webkit.org/show_bug.cgi?id=106688
-
-        Reviewed by Eric Seidel.
-
-        Update the regular expression used to strip the garbage at the beginning.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (RunWebKitTests.nrwt_log_message_regexp):
-
-2013-01-11  Pratik Solanki  <psolanki@apple.com>
-
-        TestRunner leaks when running tests
-        https://bugs.webkit.org/show_bug.cgi?id=106683
-
-        Reviewed by Simon Fraser.
-
-        Remove extra ref() that we missed out on deleting when refactoring window.layoutTestController
-        to window.testRunner in r124705. This caused the TestRunner object to be leaked when running
-        tests.
-
-        * DumpRenderTree/TestRunner.cpp:
-        (TestRunner::makeWindowObject):
-
-2013-01-11  Julie Parent  <jparent@chromium.org>
-
-        Dashboard Cleanup: Add isLoadingComplete to the loader.Loader object.
-        https://bugs.webkit.org/show_bug.cgi?id=106247
-
-        Old code nulled out the loader instance when it completed loading and
-        then later used the fact that it was null to determine if it had loaded
-        or not.  This is not only unintuitive, but it also prevents using the
-        loader object later on.
-        
-        Added new method, used it, added unit test for it.
-        
-        Reviewed by Dirk Pranke.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (resourceLoadingComplete):
-        (handleLocationChange):
-        * TestResultServer/static-dashboards/loader.js:
-        (.):
-        * TestResultServer/static-dashboards/loader_unittests.js:
-
-2013-01-11  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Try CRLF to LF change in r139407 again.
-
-        * BuildSlaveSupport/delete-stale-build-files:
-        (main):
-        (webkitBuildDirectory):
-        * BuildSlaveSupport/kill-old-processes:
-        (main):
-
-2013-01-11  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Disable the unit tests timeout when running from make check
-        https://bugs.webkit.org/show_bug.cgi?id=106670
-
-        Reviewed by Philippe Normand.
-
-        * GNUmakefile.am: Pass --timeout=-1 to run-gtk-test.
-
-2013-01-11  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        Yet another unreviewed fix after r139431.
-
-        * Scripts/run-launcher: Pass the arguments to `jhbuild-wrapper' in
-        the correct order.
-
-2013-01-11  Dan Carney  <dcarney@google.com>
-
-        [chromium] move some whitespace and resize related methods to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=106655
-
-        Reviewed by Jochen Eisinger.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebKit):
-        (WebTestRunner::WebTestDelegate::setClientWindowRect):
-        (WebTestRunner::WebTestDelegate::setSelectTrailingWhitespaceEnabled):
-        (WebTestRunner::WebTestDelegate::setSmartInsertDeleteEnabled):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::setSmartInsertDeleteEnabled):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::setSelectTrailingWhitespaceEnabled):
-        (WebTestRunner::TestRunner::enableAutoResizeMode):
-        (WebTestRunner::TestRunner::disableAutoResizeMode):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::setClientWindowRect):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-01-11  Mario Sanchez Prada  <mario.prada@samsung.com>
-
-        Unreviewed. Update my e-mail addresses.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-01-11  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        Another unreviewed fix after r139431.
-
-        In a way, this is also a generic bug fix, since previously isEfl()
-        would fail when called from run-efl-tests and we thus did not use
-        jhbuild to run our tests. This now resulted in us calling
-        "jhbuild-wrapper run" without specifying a platform.
-
-        * Scripts/run-efl-tests: Pass "--efl" to ARGV manually for isEfl()
-        to work.
-
-2013-01-11  Allan Sandfeld Jensen  <allan.jensen@digia.com>
-
-        [Qt][WK1] Web Audio support
-        https://bugs.webkit.org/show_bug.cgi?id=106651
-
-        Reviewed by Jocelyn Turcotte.
-
-        Implements support for dumping audio data in DumpRenderTree.
-
-        Adds WebAudio to toggleable features in QtTestBrowser.
-
-        Enables LEGACY_WEB_AUDIO. This feature is required for 2/3 of the web audio regression tests. It is enabled by default
-        because it has no effect when WEB_AUDIO is not enabled. This combination matches the settings in FeatureList.pm.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::dump):
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        (TestRunner::reset):
-        (TestRunner::overridePreference):
-        (TestRunner::setAudioData):
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunner::shouldDumpAsAudio):
-        (TestRunner::audioData):
-        (TestRunner):
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::applyPrefs):
-        (LauncherWindow::createChrome):
-        (LauncherWindow::toggleWebAudio):
-        * QtTestBrowser/launcherwindow.h:
-        (WindowOptions::WindowOptions):
-        (WindowOptions):
-        (LauncherWindow):
-        * qmake/mkspecs/features/features.prf:
-        * qmake/mkspecs/features/features.pri:
-
-2013-01-11  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        Unreviewed jhbuild-related fix after r139431.
-
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort.__init__): Pass a string to set_option_default(), since
-        shlex.split() will be called on it later.
-
-2013-01-11  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed typo fixes after r139431.
-
-        * Scripts/run-javascriptcore-tests:
-
-2013-01-11  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [jhbuild] Remove the "run-with-jhbuild" scripts.
-        https://bugs.webkit.org/show_bug.cgi?id=106572
-
-        Reviewed by Martin Robinson.
-
-        Both ports which use jhbuild were mostly duplicating the
-        `run-with-jhbuild' script in their own directories for no clear reason.
-
-        The script itself was just a thin wrapper around the `jhbuild-wrapper',
-        so just start using that directly and get rid of a useless middle man.
-
-        Adjust scripts which called run-with-jhbuild to call jhbuild-wrapper
-        instead.
-
-        * Scripts/run-javascriptcore-tests:
-        * Scripts/run-launcher:
-        * Scripts/webkitdirs.pm:
-        (runAutogenForAutotoolsProjectIfNecessary):
-        (buildAutotoolsProject):
-        (jhbuildWrapperPrefixIfNeeded):
-        (generateBuildSystemFromCMakeProject):
-        (buildCMakeGeneratedProject):
-        * Scripts/webkitpy/common/multiprocessing_bootstrap.py:
-        (run):
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort.__init__):
-        (EflPort._image_diff_command):
-        * efl/run-with-jhbuild: Removed.
-        * gtk/run-with-jhbuild: Removed.
-
-2013-01-11  Alan Cutter  <alancutter@chromium.org>
-
-        Allow arbitrary queue launch parameters in EWSTools/start-queue.sh
-        https://bugs.webkit.org/show_bug.cgi?id=106636
-
-        Reviewed by Adam Barth.
-
-        This parameter will allow the bot boot script to use start-queue.sh and provide an IRC password for sheriffbot.
-
-        * EWSTools/GoogleComputeEngine/build-chromium-ews.sh:
-        * EWSTools/GoogleComputeEngine/build-commit-queue.sh:
-        * EWSTools/screen-config:
-        * EWSTools/start-queue.sh:
-
-2013-01-10  Ryosuke Niwa  <rniwa@webkit.org>
-
-        kill-old-processes and delete-stale-build-files use CRLF linebreaks
-        https://bugs.webkit.org/show_bug.cgi?id=106622
-
-        Reviewed by Simon Fraser.
-
-        Use LF instead of CRLF in kill-old-processes and delete-stale-build-files.
-        Also escape clang\+\+ correctly in kill-old-processes.
-
-        * BuildSlaveSupport/delete-stale-build-files:
-        * BuildSlaveSupport/kill-old-processes:
-
-2013-01-10  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Build fix after r139357. It was missing a comma.
-
-        * QueueStatusServer/model/queues.py:
-        (Queue):
-
-2013-01-10  Tim 'mithro' Ansell  <mithro@mithis.com>
-
-        Fixing AuthenticationError when running test-webkitpy as a non-committer.
-        https://bugs.webkit.org/show_bug.cgi?id=106420
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        (Git.push_local_commits_to_server):
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-        (SVNRepository):
-        (SVNRepository.has_authorization_for_realm):
-
-2013-01-10  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][jhbuild] Use tarballs for gstreamer instead of git
-        https://bugs.webkit.org/show_bug.cgi?id=106552
-
-        Reviewed by Laszlo Gombos.
-
-        Use tarballs for gstreamer instead of git in EFL's jhbuild
-        to work around intermittent network issues on our build
-        bots. Tarballs are fully cached and require no network
-        operation if their checksum matches.
-
-        * efl/jhbuild.modules:
-
-2013-01-10  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Add Mac WK2 EWS bots
-        https://bugs.webkit.org/show_bug.cgi?id=106590
-
-        Reviewed by Adam Barth.
-
-        Added MacWK2EWS, and made myself a watcher for MacEWS and MacWK2EWS.
-        Also add a deprecated MacWK2Port class.
-
-        * QueueStatusServer/model/queues.py:
-        (Queue):
-        * Scripts/webkitpy/common/config/ports.py:
-        (DeprecatedPort.port):
-        (MacWK2Port):
-        (MacWK2Port.run_webkit_tests_command):
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (MacEWS):
-        (MacWK2EWS):
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-        (_test_ewses):
-
-2013-01-10  Dan Carney  <dcarney@google.com>
-
-        [chromium] move webpermissionclient related methods to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=106548
-
-        Reviewed by Jochen Eisinger.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        (DRTTestRunner::reset):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestRunner::WebTestDelegate::normalizeLayoutTestURL):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestRunner.h:
-        (WebKit):
-        (WebTestRunner::WebTestRunner::webPermissions):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::setDelegate):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::webPermissions):
-        (WebTestRunner::TestRunner::dumpPermissionClientCallbacks):
-        (WebTestRunner::TestRunner::setImagesAllowed):
-        (WebTestRunner::TestRunner::setScriptsAllowed):
-        (WebTestRunner::TestRunner::setStorageAllowed):
-        (WebTestRunner::TestRunner::setPluginsAllowed):
-        (WebTestRunner::TestRunner::setAllowDisplayOfInsecureContent):
-        (WebTestRunner::TestRunner::setAllowRunningOfInsecureContent):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (WebTestRunner):
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebPermissions.cpp: Renamed from Tools/DumpRenderTree/chromium/WebPermissions.cpp.
-        (WebTestRunner):
-        (WebTestRunner::WebPermissions::WebPermissions):
-        (WebTestRunner::WebPermissions::~WebPermissions):
-        (WebTestRunner::WebPermissions::allowImage):
-        (WebTestRunner::WebPermissions::allowScriptFromSource):
-        (WebTestRunner::WebPermissions::allowStorage):
-        (WebTestRunner::WebPermissions::allowPlugins):
-        (WebTestRunner::WebPermissions::allowDisplayingInsecureContent):
-        (WebTestRunner::WebPermissions::allowRunningInsecureContent):
-        (WebTestRunner::WebPermissions::setImagesAllowed):
-        (WebTestRunner::WebPermissions::setScriptsAllowed):
-        (WebTestRunner::WebPermissions::setStorageAllowed):
-        (WebTestRunner::WebPermissions::setPluginsAllowed):
-        (WebTestRunner::WebPermissions::setDisplayingInsecureContentAllowed):
-        (WebTestRunner::WebPermissions::setRunningInsecureContentAllowed):
-        (WebTestRunner::WebPermissions::setDelegate):
-        (WebTestRunner::WebPermissions::setDumpCallbacks):
-        (WebTestRunner::WebPermissions::reset):
-        * DumpRenderTree/chromium/TestRunner/src/WebPermissions.h: Renamed from Tools/DumpRenderTree/chromium/WebPermissions.h.
-        (WebTestRunner):
-        (WebPermissions):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::initialize):
-        (TestShell::resetTestController):
-        (TestShell::createNewWindow):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::normalizeLayoutTestURL):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-01-10  Alan Cutter  <alancutter@chromium.org>
-
-        Split EWS tool cold-boot.sh into modular components
-        https://bugs.webkit.org/show_bug.cgi?id=106527
-
-        Reviewed by Adam Barth.
-
-        Split cold-boot.sh script up into build-vm.sh, build-repo.sh and build-boot-cmd.sh.
-        Updated GCE bot build scripts to match.
-        Unable to test scripts directly as they depend on being in the repository to work!
-
-        * EWSTools/GoogleComputeEngine/build-chromium-ews.sh:
-        * EWSTools/GoogleComputeEngine/build-commit-queue.sh:
-        * EWSTools/build-boot-cmd.sh: Copied from Tools/EWSTools/GoogleComputeEngine/build-chromium-ews.sh.
-        * EWSTools/build-repo.sh: Copied from Tools/EWSTools/cold-boot.sh.
-        * EWSTools/build-vm.sh: Renamed from Tools/EWSTools/cold-boot.sh.
-
-2013-01-10  Julie Parent  <jparent@chromium.org>
-
-        Dashboard Cleanup: Do not generate the page if we are about to reload.
-        https://bugs.webkit.org/show_bug.cgi?id=106584
-
-        Reviewed by Dirk Pranke.
-
-        Move the logic to determine if we should generate the page into
-        parseParameters() since that is where we have the knowledge to
-        determine it, and return that value to handleLocationChange, 
-        rather than passing the changed parameters back to handleLocationChange
-        and having it make the decision.
-        
-        This is logically equivalent, save one case: when we are about to do
-        a reload, we know that there is no reason to generate the page.  Old
-        code was causing an extra page generation in this case.
-        
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (parseParameters):
-        (handleLocationChange):
-
-2013-01-10  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [jhbuild] Use the "configure" script to build glib
-        https://bugs.webkit.org/show_bug.cgi?id=106569
-
-        Reviewed by Martin Robinson.
-
-        So far both EFL and GTK have been using autogen.sh to build glib.
-        While that does work most of the time, it's not really needed since
-        we are downloading and building stable releases from tarballs.
-        Additionally, autogen.sh fails to work with automake 1.13 due to the
-        usage of some macros that have been removed (this has already been
-        fixed in glib master).
-
-        * efl/jhbuild.modules:
-        * gtk/jhbuild.modules:
-
-2013-01-10  Tim 'mithro' Ansell  <mithro@mithis.com>
-
-        Changing tests to be consistent and use self.scm rather then recreating the scm object.
-        (Missed a couple)
-        https://bugs.webkit.org/show_bug.cgi?id=106536
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-
-2013-01-10  Tony Chang  <tony@chromium.org>
-
-        Speed up supplemental dependency computation
-        https://bugs.webkit.org/show_bug.cgi?id=106503
-
-        Reviewed by Adam Barth.
-
-        Pass the IDL attributes file for generating the bindings in WebKitTestRunner.
-
-        * WebKitTestRunner/CMakeLists.txt:
-
-2013-01-10  Zan Dobersek  <zandobersek@gmail.com>
-
-        Remove the ENABLE_ANIMATION_API feature define occurences
-        https://bugs.webkit.org/show_bug.cgi?id=106544
-
-        Reviewed by Simon Fraser.
-
-        The Animation API code was removed in r137243. The ENABLE_ANIMATION_API
-        feature define handling still lingers in various build systems and configurations
-        but is of no use, so it should be removed.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2013-01-10  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Add support for loading web process extensions
-        https://bugs.webkit.org/show_bug.cgi?id=105631
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * MiniBrowser/gtk/GNUmakefile.am:
-        * MiniBrowser/gtk/main.c:
-        (main): Set WEBKIT_INJECTED_BUNDLE env var to use the injected
-        bundle lib from build dir.
-        * Scripts/webkitpy/style/checker.py: Add exceptions for GTK+ API
-        located in WebProcess/InjectedBundle/API/gtk.
-        * gtk/generate-gtkdoc:
-        (get_webkit2_options): Scan also files in
-        WebProcess/InjectedBundle/API/gtk to generate API docs.
-        (get_webkit2_options.injected_bundle_src_path): Helper function to
-        build paths in WebProcess/InjectedBundle/API/gtk.
-
-2013-01-10  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL][WK2] Writing immediately to created windows (open) fails
-        https://bugs.webkit.org/show_bug.cgi?id=105276
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Do not reset 'about:blank' url for the new pages in mini browser.
-
-        * MiniBrowser/efl/main.c:
-        (window_create):
-
-2013-01-10  Tim 'mithro' Ansell  <mithro@mithis.com>
-
-        Changing tests to be consistent and use self.scm rather then recreating the scm object.
-        https://bugs.webkit.org/show_bug.cgi?id=106536
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-
-2013-01-10  Tim 'mithro' Ansell  <mithro@mithis.com>
-
-        Converting to unittest2 so we can use assertItemsEqual, making tests
-        not dependent on order of items.
-        https://bugs.webkit.org/show_bug.cgi?id=106532
-
-        Before:
-        Ran 1733 tests in 38.385s
-        FAILED (failures=1, errors=22)
-
-        After:
-        Ran 1733 tests in 32.298s
-        FAILED (failures=0, errors=22)
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-        * Scripts/webkitpy/thirdparty/__init__.py:
-        (AutoinstallImportHook._install_unittest2):
-
-2013-01-10  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Add gstreamer 1.0.5 to jhbuild
-        https://bugs.webkit.org/show_bug.cgi?id=106178
-
-        Reviewed by Laszlo Gombos.
-
-        Add gstreamer 1.0.5 to EFL's jhbuild configuration.
-
-        * efl/jhbuild.modules:
-
-2013-01-09  Alan Cutter  <alancutter@chromium.org>
-
-        Updated parameters in GCE build scripts so they now work.
-        https://bugs.webkit.org/show_bug.cgi?id=106523
-
-        Reviewed by Adam Barth.
-
-        * EWSTools/GoogleComputeEngine/build-chromium-ews.sh:
-        * EWSTools/GoogleComputeEngine/build-commit-queue.sh:
-        * EWSTools/cold-boot.sh:
-
-2013-01-09  Mark Pilgrim  <pilgrim@chromium.org>
-
-        [Chromium] Remove some stray references to WebKitPlatformSupport.h in DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=106520
-
-        Reviewed by James Robinson.
-
-        Part of a larger refactoring series. See tracking bug 82948.
-
-        * DumpRenderTree/chromium/WebThemeEngineDRTMac.h:
-        * DumpRenderTree/chromium/WebThemeEngineDRTMac.mm:
-
-2013-01-09  Julie Parent  <jparent@chromium.org>
-
-        Dashboard cleanup: Remove code for currentState and window.location.hash getting out of state
-        https://bugs.webkit.org/show_bug.cgi?id=106514
-
-        This is old code, as these can no longer get out of sync.
-        permmaLinkURLHash is generated from currentState, which is set only
-        from the location.  The commment about how these can get out of sync
-        refers to a function that no longer exists.
-        
-        Reviewed by Dirk Pranke.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (handleLocationChange):
-
-2013-01-09  Julie Parent  <jparent@chromium.org>
-
-        Dashboard Cleanup: Reload the page as soon as we know we need to.
-        https://bugs.webkit.org/show_bug.cgi?id=106515
-
-        No need to continue parsing all of the data once we know that
-        we need to do a reload.
-        
-        Reviewed by Dirk Pranke.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (parseParameters):
-
-2013-01-09  Eric Seidel  <eric@webkit.org>
-
-        run-perf-tests --chromium-android --profile should show symbols for the kernel
-        https://bugs.webkit.org/show_bug.cgi?id=106498
-
-        Reviewed by Adam Barth.
-
-        Turns out this was easy, once I finally read the output from "perf report".
-        It appears there may be a bug in "perf record" on android, as it complains
-        about not being able to read from /proc/kallsyms even when
-        /proc/sys/kernel/kptr_restrict is 0.  For now I've not bothered
-        to keep /proc/sys/kernel/kptr_restrict as 0 during the actual record
-        but rather just flip it to 0 long enough to grab the /proc/kallsyms
-        and then flip it back to whatever the device had.
-
-        /proc/sys/kernel/kptr_restrict controls what /proc/kallsyms returns
-        on Linux.  /proc/kallsyms contains a mapping of kernel addresses
-        to symbol names.  Its world-readable, but will return all 0s if you
-        don't have permission to see the kernel symbols.  kptr_restrict
-        supports values 0, 1, 2.  Where 0 means "everyone can see the real symbols"
-        1 is only a specific group, and 2 is "no one, not even root".
-        By default kptr_restrict is 2 on Android it seems.
-        More kptr_restrict docs: http://lwn.net/Articles/420403/
-
-        I also took this opportunity to clean up how the perf record command
-        was built for use/display in AndroidPerf.profile_after_exit and
-        change to always using long-form names for the arguments (to hopefully help readability).
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (AndroidPerf.__init__):
-        (profile_after_exit):
-        (ChromiumAndroidDriver.__init__):
-        (ChromiumAndroidDriver._update_kallsyms_cache):
-        * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:
-
-2013-01-09  Julie Parent  <jparent@chromium.org>
-
-        Dashboard cleanup: remove dead code.
-        https://bugs.webkit.org/show_bug.cgi?id=106509
-
-        Reviewed by Dirk Pranke.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (parseParameters):
-
-2013-01-09  Joanmarie Diggs  <jdiggs@igalia.com>
-
-        [GTK] accessibility/aria-labelledby-overrides-label.html requires a proper baseline
-        https://bugs.webkit.org/show_bug.cgi?id=105638
-
-        Reviewed by Martin Robinson.
-
-        The test was failing for two reasons:
-        - AccessibilityRenderObject::correspondingLabelForControlElement() was
-          not ignoring the ARIA labelled-by property
-        - AccessibilityController::accessibleElementById() was not implemented
-
-        Because getting an element by ID cannot be done in the UIProcess, the
-        decision was made to expose the element's ID as an accessible attribute
-        of the object.
-
-        In addition, fixing the bug in AccessibilityRenderObject made it possible
-        to eliminate the Gtk platform-specific expectations for another test.
-
-        * DumpRenderTree/gtk/AccessibilityControllerGtk.cpp:
-        (childElementById): Added. Walks the tree looking for the AtkObject
-        Attribute which exposes the HTML element's ID.
-        (AccessibilityController::accessibleElementById): Implemented.
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::title): Modified to print out "AXTitle: " even
-        when there is no title, as is done with the Mac port.
-        * WebKitTestRunner/InjectedBundle/AccessibilityController.cpp:
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/atk/AccessibilityControllerAtk.cpp:
-        (WTR::childElementById): Added. Walks the tree looking for the AtkObject
-        Attribute which exposes the HTML element's ID.
-        (WTR):
-        (WTR::AccessibilityController::accessibleElementById): Implemented.
-        * WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp:
-        (WTR::AccessibilityUIElement::title): Modified to print out "AXTitle: "
-        even when there is no title, as is done with the Mac port.
-
-2013-01-09  Gregg Tavares  <gman@google.com>
-
-        Add Gregg Tavares as a committer
-        https://bugs.webkit.org/show_bug.cgi?id=106492
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-01-09  Roger Fong  <roger_fong@apple.com>
-
-        Enable seamless iFrames for Windows DRT.
-        https://bugs.webkit.org/show_bug.cgi?id=106468.
-
-        Rubberstamped by Timothy Horton.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-
-2013-01-09  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2] Implement eventSender.scheduleAsynchronousKeyDown
-        https://bugs.webkit.org/show_bug.cgi?id=93979
-
-        Reviewed by Benjamin Poulain.
-
-        Implement eventSender.scheduleAsynchronousKeyDown() in
-        WebKitTestRunner.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/EventSendingController.idl:
-        * WebKitTestRunner/InjectedBundle/EventSendingController.cpp:
-        (WTR::createKeyDownMessageBody):
-        (WTR::EventSendingController::keyDown):
-        (WTR::EventSendingController::scheduleAsynchronousKeyDown):
-        * WebKitTestRunner/InjectedBundle/EventSendingController.h:
-        (EventSendingController):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::didReceiveKeyDownMessageFromInjectedBundle):
-        (WTR::TestController::didReceiveMessageFromInjectedBundle):
-        (WTR::TestController::didReceiveSynchronousMessageFromInjectedBundle):
-        * WebKitTestRunner/TestController.h:
-        (TestController):
-
-2013-01-09  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move resource load callback dumping to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=106449
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        (DRTTestRunner::reset):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebKit):
-        (WebTestRunner::WebTestDelegate::makeURLErrorDescription):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebKit):
-        (WebTestProxyBase):
-        (WebTestRunner::WebTestProxy::assignIdentifierToRequest):
-        (WebTestRunner::WebTestProxy::willRequestResource):
-        (WebTestRunner::WebTestProxy::willSendRequest):
-        (WebTestRunner::WebTestProxy::didReceiveResponse):
-        (WebTestRunner::WebTestProxy::didFinishResourceLoad):
-        (WebTestRunner::WebTestProxy::didFailResourceLoad):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestRunner.h:
-        (WebTestRunner::WebTestRunner::shouldDumpResourceLoadCallbacks):
-        (WebTestRunner::WebTestRunner::shouldDumpResourceRequestCallbacks):
-        (WebTestRunner::WebTestRunner::shouldDumpResourceResponseMIMETypes):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::shouldDumpResourceLoadCallbacks):
-        (WebTestRunner::TestRunner::shouldDumpResourceRequestCallbacks):
-        (WebTestRunner::TestRunner::shouldDumpResourceResponseMIMETypes):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::dumpResourceLoadCallbacks):
-        (WebTestRunner::TestRunner::dumpResourceRequestCallbacks):
-        (WebTestRunner::TestRunner::dumpResourceResponseMIMETypes):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::reset):
-        (WebTestRunner):
-        (WebTestRunner::WebTestProxyBase::assignIdentifierToRequest):
-        (WebTestRunner::WebTestProxyBase::willRequestResource):
-        (WebTestRunner::WebTestProxyBase::willSendRequest):
-        (WebTestRunner::WebTestProxyBase::didReceiveResponse):
-        (WebTestRunner::WebTestProxyBase::didFinishResourceLoad):
-        (WebTestRunner::WebTestProxyBase::didFailResourceLoad):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::willSendRequest):
-        (WebViewHost::makeURLErrorDescription):
-        (WebViewHost::reset):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-01-09  Dan Carney  <dcarney@google.com>
-
-        [chromium] move dumpcreateview methods to testrunner library
-        https://bugs.webkit.org/show_bug.cgi?id=106434
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        (DRTTestRunner::reset):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestRunner.h:
-        (WebTestRunner::WebTestRunner::shouldDumpCreateView):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::shouldDumpCreateView):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::dumpCreateView):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-
-2013-01-09  Csaba Osztrogonác  <ossy@webkit.org>
-
-        webkitpy cleanup: Merge additional_comment_text into comment_text
-        https://bugs.webkit.org/show_bug.cgi?id=106421
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/config/committervalidator.py:
-        (CommitterValidator.reject_patch_from_commit_queue):
-        (CommitterValidator.reject_patch_from_review_queue):
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        (Bugzilla.set_flag_on_attachment):
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla_mock.py:
-        (MockBugzilla.set_flag_on_attachment):
-        * Scripts/webkitpy/tool/bot/feeders_unittest.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (AbstractEarlyWarningSystem._post_reject_message_on_bug):
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2013-01-09  Mario Sanchez Prada  <mario.prada@samsung.com>
-
-        [GTK] Raise version of gdk-pixbuf in jhbuild up to 2.26.5
-        https://bugs.webkit.org/show_bug.cgi?id=106464
-
-        Reviewed by Martin Robinson.
-
-        Current version in jhbuild.modules (2.26.0) is giving trouble to
-        when trying to build WebKitGTK from scratch, due to a segmentation
-        fault error in gdk-pixbuf-query-loader during the 'make'
-        phase. Raising the version to 2.26.5 fixes this issue.
-
-        * gtk/jhbuild.modules: Version raised, checksums updated.
-
-2013-01-09  János Badics  <jbadics@inf.u-szeged.hu>
-
-        [Qt][NRWT] Pass --timeout to DRT/WTR if a test is marked as SLOW.
-        https://bugs.webkit.org/show_bug.cgi?id=90968.
-
-        Reviewed by Csaba Osztrogonác.
-
-        Added functionality in DRT and WTR to use any timeout value while running
-        slow tests (eventually, any test). Now NRWT --time-out-ms determines the
-        timeout value for the test. Added a flag in NRWT (supports_per_test_timeout)
-        to indicate whether the current port supports setting timeout value
-        per test (it's False by default; I enabled it only on Qt).
-        Also corrected a typo in driver.py
-
-        * DumpRenderTree/DumpRenderTree.h:
-        (TestCommand::TestCommand):
-        (TestCommand):
-        * DumpRenderTree/DumpRenderTreeCommon.cpp:
-        (parseInputLine):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::processLine):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.supports_per_test_timeout):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.run_test):
-        (Driver._command_from_driver_input):
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort.supports_per_test_timeout):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::InjectedBundle):
-        (WTR::InjectedBundle::didReceiveMessage):
-        (WTR::InjectedBundle::beginTesting):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::setCustomTimeout):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-        * WebKitTestRunner/InjectedBundle/qt/TestRunnerQt.cpp:
-        (WTR::TestRunner::initializeWaitToDumpWatchdogTimerIfNeeded):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::TestController):
-        (WTR::TestController::getCustomTimeout):
-        (WTR):
-        (WTR::TestCommand::TestCommand):
-        (TestCommand):
-        (WTR::parseInputLine):
-        (WTR::TestController::runTest):
-        (WTR::TestController::runUntil):
-        * WebKitTestRunner/TestController.h:
-        (TestController):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::TestInvocation):
-        (WTR::TestInvocation::setCustomTimeout):
-        (WTR):
-        (WTR::TestInvocation::invoke):
-        * WebKitTestRunner/TestInvocation.h:
-        (TestInvocation):
-
-2013-01-08  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Regression(r138681): Add HAVE(ACCESSIBILITY) guard to atk files
-        https://bugs.webkit.org/show_bug.cgi?id=106290
-
-        Reviewed by Martin Robinson.
-
-        Some atk files don't use HAVE(ACCESSIBILITY). It might make build errors when
-        the macro isn't enabled.
-
-        * WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp:
-
-2013-01-08  Martin Robinson  <mrobinson@igalia.com>
-
-        WebKitTestRunner needs support for setHandlesAuthenticationChallenges
-        https://bugs.webkit.org/show_bug.cgi?id=103653
-
-        Reviewed by Anders Carlsson.
-
-        Implement setHandlesAuthenticationChallenges in the UIProcess by sending credentials
-        and the enabled boolean to the UIProcess and then implementing the didReceiveAuthenticationChallengeInFrame
-        client callback.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl: Exposed the new TestRunner
-        methods to the JavaScript API.
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::setHandlesAuthenticationChallenges): Added this callback for the JavaScript API.
-        (WTR::TestRunner::setAuthenticationUsername): Ditto.
-        (WTR::TestRunner::setAuthenticationPassword): Ditto.
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner): Added new declarations for the above.
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::createWebViewWithOptions): Hook up the new didReceiveSynchronousMessageFromInjectedBundle
-        callback.
-        (WTR::TestController::resetStateToConsistentValues): Reset the credentials and enabled boolean between tests.
-        (WTR::TestController::didReceiveAuthenticationChallengeInFrame): Handle the callback by using
-        the authentication information passed from the InjectedBundle.
-        * WebKitTestRunner/TestController.h:
-        (WTR::TestController::setHandlesAuthenticationChallenges): Added setter to allow TestInvocation
-        to communicate with the TestController.
-        (WTR::TestController::setAuthenticationUsername): Ditto.
-        (WTR::TestController::setAuthenticationPassword): Ditto.
-        (TestController):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle): Handle the messages sending authentication
-        information from the InjectedBundle.
-        (WTR::TestInvocation::outputText): Added this method so that the TestController can output
-        text to the TestInvocation text output.
-        * WebKitTestRunner/TestInvocation.h:
-        (TestInvocation): Added declaration for new method.
-
-2013-01-08  Benjamin Poulain  <benjamin@webkit.org>
-
-        Add myself as a watcher for Web Geolocation
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2013-01-08  Zan Dobersek  <zandobersek@gmail.com>
-
-        [webkitpy] Call setup_test_run method of the parent Port interface when method is called on subclasses
-        https://bugs.webkit.org/show_bug.cgi?id=106364
-
-        Reviewed by Eric Seidel.
-
-        When the setup_test_run method is called on the subclasses of the base Port
-        interface, the parent method should also be called via super(), despite the
-        parent method not doing anything at the moment.
-
-        The according calls to super() are required in the ChromiumPort, EflPort
-        and GtkPort implementations.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.setup_test_run):
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort.setup_test_run):
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort.setup_test_run):
-
-2013-01-08  Julie Parent  <jparent@chromium.org>
-
-        Dashboard cleanup: Remove globals g_buildersThatFailedToLoad and g_staleBuilders
-        https://bugs.webkit.org/show_bug.cgi?id=106356
-
-        g_buildersThatFailedToLoad and g_staleBuilders were globals defined in
-        dashboard_base, assigned by Loader, and used only by dashboard_base to
-        create error messages.  Moved the variables to be privates on the Loader
-        object, moved error message creation to _getLoadingErrorMessages on the
-        Loader object, and now pass the errors back to dashboard base via the
-        resourceLoadingComplete callback.
-        
-        Also removed the now unused clearError function, it was only being used
-        by unit tests to clean up global state.
-        
-        Reviewed by Dirk Pranke.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (resourceLoadingComplete):
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-        * TestResultServer/static-dashboards/loader.js:
-        (.):
-        * TestResultServer/static-dashboards/loader_unittests.js:
-
-2013-01-08  Zan Dobersek  <zandobersek@gmail.com>
-
-        [EFL][GTK] Make the PulseAudioSanitizer an object on the EflPort, GtkPort
-        https://bugs.webkit.org/show_bug.cgi?id=106354
-
-        Reviewed by Eric Seidel.
-
-        Put the PulseAudioSanitizer object on the EflPort and GtkPort interfaces
-        instead of those two inheriting from it. Also add a mock object of the
-        sanitizer that's used in unit tests.
-
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort):
-        (EflPort.__init__):
-        (EflPort.setup_test_run):
-        (EflPort.clean_up_test_run):
-        * Scripts/webkitpy/layout_tests/port/efl_unittest.py: Also correct the
-        importing order.
-        (EflPortTest.make_port): Put a mock PulseAudioSanitizer on the instance.
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort):
-        (GtkPort.__init__):
-        (GtkPort.setup_test_run):
-        (GtkPort.clean_up_test_run):
-        * Scripts/webkitpy/layout_tests/port/gtk_unittest.py: Also correct the
-        importing order.
-        (GtkPortTest.make_port): Put a mock PulseAudioSanitizer on the instance.
-        * Scripts/webkitpy/layout_tests/port/pulseaudio_sanitizer.py:
-        (PulseAudioSanitizer.unload_pulseaudio_module): Stylize the method as public.
-        (PulseAudioSanitizer.restore_pulseaudio_module): Ditto.
-        * Scripts/webkitpy/layout_tests/port/pulseaudio_sanitizer_mock.py: Added.
-        (PulseAudioSanitizerMock): A simple mock interface for PulseAudioSanitizer.
-        (PulseAudioSanitizerMock.unload_pulseaudio_module):
-        (PulseAudioSanitizerMock.restore_pulseaudio_module):
-
-2013-01-08  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move dumpFrameLoadCallbacks and friends to the TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=106324
-
-        Reviewed by Adam Barth.
-
-        Since the frame load callbacks are part of the WebFrameClient, the
-        WebTestProxy is now intercepting both WebViewClient and WebFrameClient
-        methods.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        (DRTTestRunner::reset):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h:
-        (WebTestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebKit):
-        (WebTestProxyBase):
-        (WebTestRunner):
-        (WebTestRunner::WebTestProxy::WebTestProxy):
-        (WebTestProxy):
-        (WebTestRunner::WebTestProxy::didInvalidateRect):
-        (WebTestRunner::WebTestProxy::didScrollRect):
-        (WebTestRunner::WebTestProxy::scheduleComposite):
-        (WebTestRunner::WebTestProxy::scheduleAnimation):
-        (WebTestRunner::WebTestProxy::setWindowRect):
-        (WebTestRunner::WebTestProxy::show):
-        (WebTestRunner::WebTestProxy::didAutoResize):
-        (WebTestRunner::WebTestProxy::postAccessibilityNotification):
-        (WebTestRunner::WebTestProxy::startDragging):
-        (WebTestRunner::WebTestProxy::shouldBeginEditing):
-        (WebTestRunner::WebTestProxy::shouldEndEditing):
-        (WebTestRunner::WebTestProxy::shouldInsertNode):
-        (WebTestRunner::WebTestProxy::shouldInsertText):
-        (WebTestRunner::WebTestProxy::shouldChangeSelectedRange):
-        (WebTestRunner::WebTestProxy::shouldDeleteRange):
-        (WebTestRunner::WebTestProxy::shouldApplyStyle):
-        (WebTestRunner::WebTestProxy::didBeginEditing):
-        (WebTestRunner::WebTestProxy::didChangeSelection):
-        (WebTestRunner::WebTestProxy::didChangeContents):
-        (WebTestRunner::WebTestProxy::didEndEditing):
-        (WebTestRunner::WebTestProxy::registerIntentService):
-        (WebTestRunner::WebTestProxy::dispatchIntent):
-        (WebTestRunner::WebTestProxy::willPerformClientRedirect):
-        (WebTestRunner::WebTestProxy::didCancelClientRedirect):
-        (WebTestRunner::WebTestProxy::didStartProvisionalLoad):
-        (WebTestRunner::WebTestProxy::didReceiveServerRedirectForProvisionalLoad):
-        (WebTestRunner::WebTestProxy::didFailProvisionalLoad):
-        (WebTestRunner::WebTestProxy::didCommitProvisionalLoad):
-        (WebTestRunner::WebTestProxy::didReceiveTitle):
-        (WebTestRunner::WebTestProxy::didFinishDocumentLoad):
-        (WebTestRunner::WebTestProxy::didHandleOnloadEvents):
-        (WebTestRunner::WebTestProxy::didFailLoad):
-        (WebTestRunner::WebTestProxy::didFinishLoad):
-        (WebTestRunner::WebTestProxy::didChangeLocationWithinPage):
-        (WebTestRunner::WebTestProxy::didDisplayInsecureContent):
-        (WebTestRunner::WebTestProxy::didRunInsecureContent):
-        (WebTestRunner::WebTestProxy::didDetectXSS):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestRunner.h:
-        (WebTestRunner::WebTestRunner::setTestIsRunning):
-        (WebTestRunner::WebTestRunner::shouldDumpFrameLoadCallbacks):
-        (WebTestRunner::WebTestRunner::setShouldDumpFrameLoadCallbacks):
-        (WebTestRunner::WebTestRunner::shouldDumpUserGestureInFrameLoadCallbacks):
-        (WebTestRunner::WebTestRunner::stopProvisionalFrameLoads):
-        (WebTestRunner::WebTestRunner::shouldDumpTitleChanges):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::setTestIsRunning):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::shouldDumpFrameLoadCallbacks):
-        (WebTestRunner::TestRunner::setShouldDumpFrameLoadCallbacks):
-        (WebTestRunner::TestRunner::shouldDumpUserGestureInFrameLoadCallbacks):
-        (WebTestRunner::TestRunner::stopProvisionalFrameLoads):
-        (WebTestRunner::TestRunner::shouldDumpTitleChanges):
-        (WebTestRunner::TestRunner::dumpFrameLoadCallbacks):
-        (WebTestRunner::TestRunner::dumpUserGestureInFrameLoadCallbacks):
-        (WebTestRunner::TestRunner::setStopProvisionalFrameLoads):
-        (WebTestRunner::TestRunner::dumpTitleChanges):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestInterfaces::Internal):
-        (WebTestRunner::WebTestInterfaces::Internal::webView):
-        (WebTestRunner::WebTestInterfaces::Internal::Internal):
-        (WebTestRunner::WebTestInterfaces::Internal::setWebView):
-        (WebTestRunner):
-        (WebTestRunner::WebTestInterfaces::Internal::setTestIsRunning):
-        (WebTestRunner::WebTestInterfaces::setWebView):
-        (WebTestRunner::WebTestInterfaces::setTestIsRunning):
-        (WebTestRunner::WebTestInterfaces::webView):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::willPerformClientRedirect):
-        (WebTestRunner):
-        (WebTestRunner::WebTestProxyBase::didCancelClientRedirect):
-        (WebTestRunner::WebTestProxyBase::didStartProvisionalLoad):
-        (WebTestRunner::WebTestProxyBase::didReceiveServerRedirectForProvisionalLoad):
-        (WebTestRunner::WebTestProxyBase::didFailProvisionalLoad):
-        (WebTestRunner::WebTestProxyBase::didCommitProvisionalLoad):
-        (WebTestRunner::WebTestProxyBase::didReceiveTitle):
-        (WebTestRunner::WebTestProxyBase::didFinishDocumentLoad):
-        (WebTestRunner::WebTestProxyBase::didHandleOnloadEvents):
-        (WebTestRunner::WebTestProxyBase::didFailLoad):
-        (WebTestRunner::WebTestProxyBase::didFinishLoad):
-        (WebTestRunner::WebTestProxyBase::didChangeLocationWithinPage):
-        (WebTestRunner::WebTestProxyBase::didDisplayInsecureContent):
-        (WebTestRunner::WebTestProxyBase::didRunInsecureContent):
-        (WebTestRunner::WebTestProxyBase::didDetectXSS):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::runFileTest):
-        (TestShell::testFinished):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::didStartProvisionalLoad):
-        (WebViewHost::didReceiveServerRedirectForProvisionalLoad):
-        (WebViewHost::didFailProvisionalLoad):
-        (WebViewHost::didCommitProvisionalLoad):
-        (WebViewHost::didReceiveTitle):
-        (WebViewHost::didFailLoad):
-        (WebViewHost::didFinishLoad):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2013-01-08  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] Lower the default timeout value for WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=106353
-
-        Reviewed by Dirk Pranke.
-
-        The default timeout value for WebKitTestRunner should be lowered.
-        The current value (80 seconds) is irrational and just leads to producing
-        text failures for layout tests that genuinely time out. This just leads
-        to more deviation from the GTK WK1 port in terms of test expectations.
-
-        The value used is the same as when running the DumpRenderTree, that's
-        6 seconds in release builds and 12 seconds in debug builds.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        * Scripts/webkitpy/layout_tests/port/gtk_unittest.py:
-        (GtkPortTest.test_default_timeout_ms):
-
-2013-01-08  Zan Dobersek  <zandobersek@gmail.com>
-
-        test-webkitpy shows failure output on my linux box
-        https://bugs.webkit.org/show_bug.cgi?id=101261
-
-        Reviewed by Eric Seidel.
-
-        Mock out the PulseAudioSanitizer methods when creating testing instances
-        of EflPort and GtkPort interfaces in unit tests. This stops throwing up
-        PulseAudio output when the sanitizer was trying to unload modules which
-        were already unloaded by another unit test that was being run in parallel.
-
-        * Scripts/webkitpy/layout_tests/port/efl_unittest.py:
-        (EflPortTest):
-        (EflPortTest.make_port):
-        * Scripts/webkitpy/layout_tests/port/gtk_unittest.py:
-        (GtkPortTest):
-        (GtkPortTest.make_port):
-
-2013-01-08  Julie Parent  <jparent@chromium.org>
-
-        Dashboard Cleanup: Remove g_hasDoneInitialPageGeneration
-        https://bugs.webkit.org/show_bug.cgi?id=106254
-
-        Remove the global variable g_hasDoneInitialPageGeneration.  It was used
-        only to figure out if we should call addBuilderLoadErrors during
-        handleLocationChange, which was called when the loader completed and on
-        any hash change, but we only ever wanted to call addBuilderLoadErrors
-        on the initial loader load.  Moved the call of addBuilderLoadErrors to
-        resourceLoadingComplete rather than handleLocationChange, so now we
-        only call it when we want to, and the check can go away completely.
-
-        Reviewed by Dirk Pranke.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (addBuilderLoadErrors):
-        (resourceLoadingComplete):
-        (handleLocationChange):
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-
-2013-01-08  Dominic Mazzoni  <dmazzoni@google.com>
-
-        Add aboxhall@chromium.org to accessibility watchlist.
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2013-01-08  Dan Winship  <danw@gnome.org>
-
-        Add Apache 2.4 support for Fedora 18
-        https://bugs.webkit.org/show_bug.cgi?id=104478
-
-        Reviewed by Martin Robinson.
-
-        Apache 2.4's httpd.conf is slightly incompatible with 2.2's, so we
-        need a separate config.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port._apache_version):
-        (Port._apache_config_file_name_for_platform):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/run-webkit-httpd:
-        * Scripts/webkitperl/httpd.pm:
-        (getApacheVersion):
-        (getDefaultConfigForTestDirectory):
-        (getHTTPDConfigPathForTestDirectory):
-
-2013-01-08  Zan Dobersek  <zandobersek@gmail.com>
-
-        Make the override-feature-defines script compatible with Python v3
-        https://bugs.webkit.org/show_bug.cgi?id=105742
-
-        Reviewed by Martin Robinson.
-
-        Instead of printing output through a statement, use the print function and format
-        the output using the str.format method. This makes the script runnable with Python v3.
-
-        * gtk/override-feature-defines:
-        (adjust_feature_defines_makefile):
-
-2013-01-08  Heikki Paajanen  <heikki.paajanen@palm.com>
-
-        [Qt] Fix libxml2 config test
-        https://bugs.webkit.org/show_bug.cgi?id=106317
-
-        Reviewed by Simon Hausmann.
-
-        Don't assume standard include/libxml2, libxml-2.0.pc should know
-        where it's headers are.
-
-        * qmake/config.tests/libxml2/libxml2.cpp: Fix include
-
-2013-01-08  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] Make Tools/gtk/generate-gtkdoc compatible with Python 3
-        https://bugs.webkit.org/show_bug.cgi?id=106195
-
-        Reviewed by Philippe Normand.
-
-        Perform changes in the generate-gtkdoc script and common and gtkdoc modules
-        to make the Python code compatible with Python 3. This includes modifying
-        print statements, exception handling, dictionary iteration and
-        byte-sequence-to-string conversion.
-
-        * gtk/common.py:
-        (get_build_path):
-        (pkg_config_file_variable):
-        (gtk_version_of_pkg_config_file):
-        * gtk/generate-gtkdoc:
-        (print_missing_api):
-        * gtk/gtkdoc.py:
-        (GTKDoc.__init__):
-        (GTKDoc._run_command):
-
-2013-01-02  Steve Block  <steveblock@chromium.org>
-
-        Add chromium.org email address for Steve Block.
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2013-01-07  Filip Pizlo  <fpizlo@apple.com>
-
-        Rationalize closure call heuristics and profiling
-        https://bugs.webkit.org/show_bug.cgi?id=106270
-
-        Reviewed by Oliver Hunt.
-        
-        Add ability to use display-profiler-output via a pipe, and add the ability to dump
-        all generated code ('display *' or 'd *').
-
-        * Scripts/display-profiler-output:
-
-2013-01-07  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Sorted more xcodeproj files.
-
-        * MiniBrowser/MiniBrowser.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * WebKitLauncher/WebKitLauncher.xcodeproj/project.pbxproj:
-
-2013-01-07  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Sorted xcodeproj files.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-
-2013-01-07  Dan Bernstein  <mitz@apple.com>
-
-        [mac] WebKit1 clients can’t tell when a frame has been removed from the hierarchy
-        https://bugs.webkit.org/show_bug.cgi?id=106261
-
-        Reviewed by Simon Fraser.
-
-        Added a test for -[WebFrameLoadDelegate webView:didRemoveFrameFromHierarchy:].
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/mac/WebViewDidRemoveFrameFromHierarchy.mm: Added.
-        (-[DidRemoveFrameFromHierarchyFrameLoadDelegate webView:didFinishLoadForFrame:]):
-        (-[DidRemoveFrameFromHierarchyFrameLoadDelegate webView:didRemoveFrameFromHierarchy:]):
-        (TestWebKitAPI):
-        (TestWebKitAPI::TEST):
-
-2013-01-07  Ojan Vafai  <ojan@chromium.org>
-
-        Add the Apple MountainLion bots to garden-o-matic.
-        Eventually, we really should move away from hardcoding
-        the list of bots.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-
-2013-01-07  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move web audio related methods to testrunner library
-        https://bugs.webkit.org/show_bug.cgi?id=106211
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        (DRTTestRunner::reset):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestRunner.h:
-        (WebKit):
-        (WebTestRunner::WebTestRunner::shouldDumpAsAudio):
-        (WebTestRunner::WebTestRunner::audioData):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::shouldDumpAsAudio):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::audioData):
-        (WebTestRunner::TestRunner::setAudioData):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::dump):
-
-2013-01-07  Mike West  <mkwst@chromium.org>
-
-        Make the IFRAME_SEAMLESS flag runtime-enabled.
-        https://bugs.webkit.org/show_bug.cgi?id=106213
-
-        Reviewed by Ojan Vafai.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::resetSettings):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-            Ensure that seamless IFrames are enabled for layout tests in each of
-            the ports that support seamless IFrames.
-
-2013-01-07  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move dumpAsText and friends to the TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=106222
-
-        Reviewed by Adam Barth.
-
-        This moves dumpAsText, dumpChildFramesAsText, and dumpChildFrameScrollPositions to the TestRunner library.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        (DRTTestRunner::reset):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestRunner.h:
-        (WebTestRunner::WebTestRunner::shouldDumpAsText):
-        (WebTestRunner::WebTestRunner::setShouldDumpAsText):
-        (WebTestRunner::WebTestRunner::shouldGeneratePixelResults):
-        (WebTestRunner::WebTestRunner::setShouldGeneratePixelResults):
-        (WebTestRunner::WebTestRunner::shouldDumpChildFrameScrollPositions):
-        (WebTestRunner::WebTestRunner::shouldDumpChildFramesAsText):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::shouldDumpAsText):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::setShouldDumpAsText):
-        (WebTestRunner::TestRunner::shouldGeneratePixelResults):
-        (WebTestRunner::TestRunner::setShouldGeneratePixelResults):
-        (WebTestRunner::TestRunner::shouldDumpChildFrameScrollPositions):
-        (WebTestRunner::TestRunner::shouldDumpChildFramesAsText):
-        (WebTestRunner::TestRunner::dumpAsText):
-        (WebTestRunner::TestRunner::dumpChildFrameScrollPositions):
-        (WebTestRunner::TestRunner::dumpChildFramesAsText):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-
-2013-01-07  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Build fix attempt after r138810.
-
-        Apparently python 2.6 is really bad at floating point computation.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner_integrationtest.py:
-        (MainTest.test_run_memory_test):
-
-2013-01-07  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Extract a class to represent a test result to simplify PerfTest.parse_output and PageLoadPerfTest._run_with_driver
-        https://bugs.webkit.org/show_bug.cgi?id=106172
-
-        Reviewed by Tony Chang.
-
-        Extracted PerfTestMetric, which represents a test result and knows how to compute statistics and convert itself
-        to a dictionary. A metric is a type of measurement each test makes such as "Time", "Malloc", and "JSHeap".
-        A single test (e.g. html5-full-render.html) may have multiple metrics, each of which is reported as a separate
-        test on perf-o-matic and perf. test's results page.
-
-        Also, use python's compute_statistics instead of reading statistics off of DriverOutput to simplify the code.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTestMetric): Added.
-        (PerfTestMetric.__init__): Added.
-        (PerfTestMetric.metric): Added.
-        (PerfTestMetric.has_values): Added.
-        (PerfTestMetric.legacy_chromium_bot_compatible_test_name): Added. Following the legacy convention, "Malloc" and
-        "JSHeap" will use "test_name:Malloc" whereas "Time" uses "test_name" itself. We should eventually move these
-        conversions to be done on the client side (perf-o-matic and results page).
-        (PerfTestMetric.append): Added.
-        (PerfTestMetric.to_dict): Added. Computes the statistics and generates the dictionary object that represents
-        a result for this metric.
-        (PerfTestMetric.metric_to_unit): Added. Each metric maps to exactly one unit (it's not one-to-one).
-        (PerfTestMetric.compute_statistics): Moved from PerfTest.
-
-        (PerfTest._create_driver): Extracted from PerfTest.run.
-        (PerfTest.run): Given an array of PerfTestMetric, generate the results dictionary. Also print out results
-        as needed.
-        (PerfTest._run_with_driver):
-        (PerfTest): Removed _result_classes and _result_class_regex. "result class" is the old name for "metric".
-        (PerfTest.parse_output): Dramatically simplified. We now just return an array of PerfTestMetric's. Also ignore
-        all keys except "values". We rely on PerfTestMetric to compute the statistics for us.
-
-        (ChromiumStylePerfTest.run): Added and merged _run_with_driver. Since chromium style perf tests are so different
-        from other perf tests, there isn't much point in sharing the code here.
-
-        (PageLoadingPerfTest._run_with_driver): Simplified. Just create an array of PerfTestMetric's without computing
-        statistics for the measured values.
-
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py:
-        (TestPerfTestMetric): Added.
-        (TestPerfTestMetric.test_init_set_missing_unit): Added.
-        (TestPerfTestMetric.test_legacy_chromium_bot_compatible_test_name): Added.
-        (TestPerfTestMetric.test_has_values): Added.
-        (TestPerfTestMetric.test_append): Added.
-        (TestPerfTestMetric.test_compute_statistics.compute_statistics):
-        (TestPerfTestMetric.test_compute_statistics): Added a trivial test case.
-
-        (TestPerfTest._assert_results_are_correct): Updated as needed.
-        (TestPageLoadingPerfTest.test_run): Ditto. Notice that we no longer log anything in _run_with_driver. It's done
-        in PerfTest.run now after generating the results dictionary.
-        (TestPageLoadingPerfTest.test_run_with_memory_output): Ditto.
-
-2013-01-07  Julien Chaffraix  <jchaffraix@webkit.org>
-
-        Support size_t multiplication and division operators on LayoutUnit
-        https://bugs.webkit.org/show_bug.cgi?id=83848
-
-        Reviewed by Emil A Eklund.
-
-        * TestWebKitAPI/Tests/WebCore/LayoutUnit.cpp:
-        Added some simple tests for the new operators using size_t.
-
-2013-01-07  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] run-webkit-tests cleanup for parallel NRWT
-        https://bugs.webkit.org/show_bug.cgi?id=106220
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/run-webkit-tests:
-        (useNewRunWebKitTests):
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort):
-        (QtPort.default_child_processes):
-
-2013-01-07  Philippe Normand  <pnormand@igalia.com>
-
-        Create a GStreamerAudio watchlist and add myself to it.
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2013-01-05  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Add svn:executable to a bunch of scripts in BuildSlaveSupport.
-        Also removed the empty mac directory.
-
-        * BuildSlaveSupport/built-product-archive: Added property svn:executable.
-        * BuildSlaveSupport/download-built-product: Added property svn:executable.
-        * BuildSlaveSupport/mac: Removed.
-        * BuildSlaveSupport/test-result-archive: Added property svn:executable.
-
-2013-01-04  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Add a script to delete stale zero-byte build files
-        https://bugs.webkit.org/show_bug.cgi?id=106131
-
-        Reviewed by Tony Chang.
-
-        Delete zero-byte build files on Mac port for now. It doesn't do anything on other ports.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (DeleteStaleBuildFiles): Added.
-        (Factory.__init__): Add DeleteStaleBuildFiles step.
-        * BuildSlaveSupport/delete-stale-build-files: Added.
-        (main): Delete zero-byte files except ones intentionally generated by our build process.
-        (webkitBuildDirectory): Copied from build-product-archive.
-
-2013-01-04  Michael Pruett  <michael@68k.org>
-
-        [GTK] Fix build error on GTK due to r138836
-        https://bugs.webkit.org/show_bug.cgi?id=106154
-
-        Reviewed by Kentaro Hara.
-
-        * GNUmakefile.am:
-
-2013-01-04  Dan Bernstein  <mitz@apple.com>
-
-        [mac] WebKit1 has no equivalent of WKBundleNodeHandleCopyHTMLTableCellElementCellAbove
-        https://bugs.webkit.org/show_bug.cgi?id=106121
-
-        Reviewed by Adele Peterson.
-
-        Added test for -[DOMTHMLTableCellElement _cellAbove].
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/mac/DOMHTMLTableCellCellAbove.mm: Added.
-        (-[HTMLTableCellElementCellAboveTest webView:didFinishLoadForFrame:]):
-        (TestWebKitAPI):
-        (TestWebKitAPI::expectCellAboveCell):
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/mac/DOMHTMLTableCellElementCellAbove.html: Added.
-
-2013-01-04  Eric Seidel  <eric@webkit.org>
-
-        FlakyTestReporter should be re-enabled and taught how to post patches
-        https://bugs.webkit.org/show_bug.cgi?id=103839
-
-        Reviewed by Adam Barth.
-
-        This moves LayoutTestResultsReader off of the DeprecatedPort object.
-        It also adds a real Port object to the EWS and CommitQueue objects
-        using a new PatchProcessingQueue superclass.
-        PatchProcessingQueue doesn't seem to be the cleanest insertion point
-        but works for this purpose.
-        I also moved _upload_results_archive_for_patch into PatchProcessingQueue
-        to resolve a FIXME.
-
-        This required some hacks/shiming between the non-specific "old"
-        port names which the EWS system is currently using, and the new
-        port objects.  This shimming is done in PatchProcessingQueue._new_port_name_from_old.
-
-        Hopefully this will fix the flaky test reporter and results uploading.
-        Certainly it's another small step towards getting rid of the old ports.py
-        infrastructure and making the NRWT Port class common webkitpy infrastructure.
-
-        Now that DeprecatedPort is no longer used for the results directory
-        I removed all the explicit results-dir code which webkit-patch was using
-        in --non-interactive mode to tell NRWT to use a results-dir it understood. :)
-
-        * Scripts/webkitpy/common/config/ports.py:
-        (DeprecatedPort.run_perl_unittests_command):
-        * Scripts/webkitpy/common/config/ports_mock.py:
-        (MockPort.name):
-        * Scripts/webkitpy/common/system/outputcapture.py:
-        (OutputCapture.assert_outputs):
-        * Scripts/webkitpy/layout_tests/port/apple.py:
-        (ApplePort.determine_full_port_name):
-        * Scripts/webkitpy/tool/bot/layouttestresultsreader.py:
-        (LayoutTestResultsReader.__init__):
-        (LayoutTestResultsReader):
-        (LayoutTestResultsReader._read_file_contents):
-        (LayoutTestResultsReader._create_layout_test_results):
-        (LayoutTestResultsReader._create_unit_test_results):
-        (LayoutTestResultsReader.results):
-        (LayoutTestResultsReader.archive):
-        * Scripts/webkitpy/tool/bot/layouttestresultsreader_unittest.py:
-        (LayoutTestResultsReaderTest.test_missing_layout_test_results):
-        (LayoutTestResultsReaderTest.test_create_unit_test_results):
-        (test_missing_unit_test_results_path):
-        (test_layout_test_results):
-        (test_archive_last_layout_test_results):
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (AbstractEarlyWarningSystem):
-        (AbstractEarlyWarningSystem.__init__):
-        (AbstractEarlyWarningSystem.begin_work_queue):
-        (AbstractEarlyWarningSystem.run_command):
-        * Scripts/webkitpy/tool/commands/queues.py:
-        (AbstractPatchQueue.work_item_log_path):
-        (PatchProcessingQueue):
-        (PatchProcessingQueue._new_port_name_from_old):
-        (PatchProcessingQueue.begin_work_queue):
-        (PatchProcessingQueue._upload_results_archive_for_patch):
-        (CommitQueue):
-        (CommitQueue.begin_work_queue):
-        (CommitQueue.run_command):
-        (AbstractReviewQueue):
-        (AbstractReviewQueue.__init__):
-        (AbstractReviewQueue.begin_work_queue):
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        (AbstractPatchQueueTest.test_next_patch):
-        (PatchProcessingQueueTest):
-        (PatchProcessingQueueTest.test_upload_results_archive_for_patch):
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        (RunTests.run):
-        * Scripts/webkitpy/tool/steps/runtests_unittest.py:
-
-2013-01-04  Dana Jansens  <danakj@chromium.org>
-
-        [chromium] Remove lost-compositor-context layout tests
-        https://bugs.webkit.org/show_bug.cgi?id=106089
-
-        Reviewed by James Robinson.
-
-        Remove the loseCompositorContext() test function.
-
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-
-2013-01-04  Adam Klein  <adamk@chromium.org>
-
-        Remove ENABLE_MUTATION_OBSERVERS #define
-        https://bugs.webkit.org/show_bug.cgi?id=105459
-
-        Reviewed by Ryosuke Niwa.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2013-01-04  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Statistics used in perftest_unittest.py and perftest_integrationtest.py are bogus
-        https://bugs.webkit.org/show_bug.cgi?id=106078
-
-        Reviewed by Tony Chang.
-
-        This patch updates values for individual iterations in dummy performance tests used in
-        perftest_unittest.py and perftest_integrationtest.py so that they match up with
-        statistics such as stdev and median reported in those tests. This change is required
-        to resolve the bug 97510.
-
-        This patch also refactors integration tests by extracting *TestData classes that
-        centralizes the definitions of each dummy performance test's text (DRT output),
-        runner output, and parsed results (JSON) so that we may share more data between
-        python tests.
-
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py:
-        (MainTest._assert_results_are_correct): Extracted from test_parse_output.
-        Use self.assertAlmostEqual when comparing the standard deviation.
-        (MainTest.test_parse_output):
-        (test_parse_output_with_failing_line):
-        (test_parse_output_with_description): Use _assert_results_are_correct.
-        (test_parse_output_with_subtests): Ditto.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner_integrationtest.py:
-        (InspectorPassTestData): Extracted from tests below.
-        (EventTargetWrapperTestData): Ditto.
-        (SomeParserTestData): Ditto.
-        (MemoryTestData): Ditto.
-        (TestDriver.run_test): Moved test definitions out of the method.
-        (MainTest._normalize_output): Truncate standard deviations at 5th decimal point.
-        (MainTest._load_output_json): Extracted from create_runner.
-        (MainTest.create_runner):
-        (MainTest.test_run_test_set_for_parser_tests):
-        (MainTest.test_run_memory_test):
-        (MainTest._test_run_with_json_output):
-        (MainTest.test_run_with_json_output):
-        (MainTest.test_run_with_description):
-        (MainTest.test_run_generates_json_by_default):
-        (MainTest.test_run_merges_output_by_default):
-        (MainTest.test_run_respects_reset_results):
-        (MainTest.test_run_generates_and_show_results_page):
-        (MainTest.test_run_with_slave_config_json):
-        (MainTest.test_run_with_multiple_repositories):
-
-2013-01-04  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] [WebKit2] Clicking on a word that is selected in an editable area deletes it
-        https://bugs.webkit.org/show_bug.cgi?id=106045
-
-        Reviewed by Carlos Garcia Campos.
-
-        Update test results to confirm that compositions without preedits do not trigger
-        a composition confirmation.
-
-        * TestWebKitAPI/Tests/gtk/InputMethodFilter.cpp:
-        (TestWebKitAPI::verifyCanceledComposition):
-
-2013-01-04  Sailesh Agrawal  <sail@chromium.org>
-
-        [Mac] [WK2] platform/mac/fast/events/numpad-keycode-mapping.html fails
-        https://bugs.webkit.org/show_bug.cgi?id=105958
-
-        Reviewed by Alexey Proskuryakov.
-
-        Ported code from DumpRenderTree to WebKitTestRunner to map all numpad keys.
-
-        * WebKitTestRunner/mac/EventSenderProxy.mm:
-        (KeyMappingEntry):
-        (WTR):
-        (WTR::EventSenderProxy::keyDown): Added all numpad keys.
-
-2013-01-03  Chris Fleizach  <cfleizach@apple.com>
-
-        REGRESSION: [Mac] Intermittent crash in WTR::AccessibilityUIElement::isEqual
-        https://bugs.webkit.org/show_bug.cgi?id=106073
-
-        Reviewed by Ryosuke Niwa.
-
-        Check that the element being compared to is not nil. 
-        This crash is happening because one of the accessibility tests does an isEqual comparison within a callback function.
-        It looks like occasionally, one of the elements passed in to the isEqual is nil because the notification handler is on the accessibility
-        controller, and the notification is being delivered after the document objects are cleared. This shouldn't happen but I've seen it 
-        sometimes before on parallel WebKitTestRunner runs.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (AccessibilityUIElement::isEqual):
-        * WebKitTestRunner/InjectedBundle/mac/AccessibilityUIElementMac.mm:
-        (WTR::AccessibilityUIElement::isEqual):
-
-2013-01-03  Tim 'mithro' Ansell  <mithro@mithis.com>
-
-        Downloads can be flaky, so try downloading multiple times.
-        https://bugs.webkit.org/show_bug.cgi?id=105976
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/system/autoinstall.py:
-        (AutoInstaller._download_to_stream):
-
-2013-01-03  Eric Seidel  <eric@webkit.org>
-
-        Rename Tool.port to deprecated_port in preparation for removing more callers
-        https://bugs.webkit.org/show_bug.cgi?id=106076
-
-        Reviewed by Ryosuke Niwa.
-
-        This resolves a long-standing FIXME to rename this method. :)
-
-        * Scripts/webkitpy/tool/bot/botinfo.py:
-        (BotInfo.summary_text):
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        (Rollout._update_working_copy):
-        * Scripts/webkitpy/tool/bot/layouttestresultsreader.py:
-        (LayoutTestResultsReader._create_layout_test_results):
-        (LayoutTestResultsReader._create_unit_test_results):
-        (LayoutTestResultsReader._results_directory):
-        * Scripts/webkitpy/tool/bot/layouttestresultsreader_unittest.py:
-        (test_missing_unit_test_results_path):
-        * Scripts/webkitpy/tool/main.py:
-        (WebKitPatch.deprecated_port):
-        * Scripts/webkitpy/tool/mocktool.py:
-        (MockTool.deprecated_port):
-        * Scripts/webkitpy/tool/steps/build.py:
-        (Build.build):
-        * Scripts/webkitpy/tool/steps/checkstyle.py:
-        (CheckStyle.run):
-        * Scripts/webkitpy/tool/steps/commit.py:
-        (Commit._check_test_expectations):
-        * Scripts/webkitpy/tool/steps/preparechangelog.py:
-        (PrepareChangeLog.run):
-        * Scripts/webkitpy/tool/steps/preparechangelogfordepsroll.py:
-        (PrepareChangeLogForDEPSRoll.run):
-        * Scripts/webkitpy/tool/steps/preparechangelogforrevert.py:
-        (PrepareChangeLogForRevert.run):
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        (RunTests.run):
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-        (StepsTest.test_runtests_args):
-        * Scripts/webkitpy/tool/steps/update.py:
-        (Update._update_command):
-
-2013-01-03  Eric Seidel  <eric@webkit.org>
-
-        Add myself to the webkitpy watchlist.
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2013-01-03  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Cleanup perftest* tests and add a test for computing statistics
-        https://bugs.webkit.org/show_bug.cgi?id=105685
-
-        Reviewed by Eric Seidel.
-
-        Add a test for PerfTest.compute_statistics (moved and renamed from PageLoadingPerfTest.calculate_statistics) and
-        extracted perftestsrunner_itegrationtests.py from perftestsrunner_unittests.py.
-
-        Also fixed a bug in compute_statistics that the mean ('avg') value can have a large rounding errors in some cases.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest.compute_statistics): Moved from PageLoadingPerfTest to prepare for the bug 97510. Also compute the mean
-        directly from sorted_values instead of using the one from Knuth's online algorithm. This approach gives more
-        accurate result for the mean.
-        (PageLoadingPerfTest.run_single):
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py:
-        (MainTest.test_compute_statistics):
-        (MainTest.test_compute_statistics.compute_statistics): Added.
-        (TestPageLoadingPerfTest.test_run): floatify values.
-        (TestPageLoadingPerfTest.test_run_with_memory_output): Ditto. Also got rid of ".0" from mean values now that Python
-        correctly recognizes them as integers.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner_integrationtest.py: Copied from
-        Tools/Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py.
-        (TestDriver): Moved out of MainTest.
-        (MainTest): Got rid of assertWritten and all unit tests.
-        (MainTest._normalize_output): Renamed from normalizeFinishedTime to match the PEP8 naming convention.
-        (MainTest.test_run_test_set_kills_drt_per_run.TestDriverWithStopCount):
-        (MainTest.test_run_test_set_for_parser_tests):
-        (MainTest.test_run_memory_test):
-        (MainTest._test_run_with_json_output):
-        (MainTest.test_run_generates_json_by_default):
-        (MainTest.test_run_merges_output_by_default):
-        (MainTest.test_run_respects_reset_results):
-        (MainTest.test_run_generates_and_show_results_page): Use runner.load_output_json() instead of manually loading and
-        parsing output JSON files. Just verify that the output path is correct instead.
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (MainTest): Removed all integration tests.
-        (MainTest.create_runner): Simplified.
-
-2013-01-03  Julie Parent  <jparent@chromium.org>
-
-        Dashboard cleanup: remove usage of global g_defaultBuilderName
-        https://bugs.webkit.org/show_bug.cgi?id=106043
-
-        Use now public defaultBuilder() from the BuilderGroup, rather
-        than global variable.
-
-        Also eliminates the setup() and initBuilders() functions since we
-        no longer need to track the global.
-
-        Reviewed by Adam Barth.
-
-        * TestResultServer/static-dashboards/builders.js:
-        (BuilderGroup.prototype.defaultBuilder):
-        (BuilderGroup.prototype.master):
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (parseParameters):
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (updateDefaultBuilderState):
-        * TestResultServer/static-dashboards/loader.js:
-        (.):
-        * TestResultServer/static-dashboards/loader_unittests.js:
-
-2013-01-03  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Disable an intermittently failing unit test for now.
-        The failure is tracked by the bug 106051.
-
-        * TestWebKitAPI/Tests/mac/MemoryCachePruneWithinResourceLoadDelegate.mm:
-        (TestWebKitAPI::TEST):
-
-2013-01-03  Dan Bernstein  <mitz@apple.com>
-
-        No way to obtain a DOMNode given a JS wrapper for a Node
-        https://bugs.webkit.org/show_bug.cgi?id=106033
-
-        Added a test for +[DOMNode _nodeFromJSWrapper:].
-
-        Reviewed by Sam Weinig.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/mac/DOMNodeFromJSObject.mm: Added.
-        (TestWebKitAPI):
-        (TestWebKitAPI::TEST):
-
-2013-01-03  Emil A Eklund  <eae@chromium.org>
-
-        Fix overflow in LayoutUnit::ceil and floor for SATURATED_LAYOUT_ARITHMETIC
-        https://bugs.webkit.org/show_bug.cgi?id=105961
-
-        Reviewed by Levi Weintraub.
-        
-        Add tests for LayoutUnit::ceil and floor.
-
-        * TestWebKitAPI/Tests/WebCore/LayoutUnit.cpp:
-        (TestWebKitAPI::TEST):
-        (TestWebKitAPI):
-
-2013-01-03  Julie Parent  <jparent@chromium.org>
-
-        Add unit test for default builder for the dashboards.
-        https://bugs.webkit.org/show_bug.cgi?id=105972
-
-        Reviewed by Dirk Pranke.
-
-        * TestResultServer/static-dashboards/loader_unittests.js:
-
-2013-01-03  Tony Chang  <tony@chromium.org>
-
-        Generate internal.settings from Settings.in
-        https://bugs.webkit.org/show_bug.cgi?id=104740
-
-        Reviewed by Adam Barth.
-
-        * GNUmakefile.am: Compile new generated files on GTK+.
-        * qmake/mkspecs/features/default_post.prf: Qt: Make it so an action
-        with both extra_sources and add_output_to_sources=false will still
-        compile the files in extra_sources. This makes it possible to compile
-        InternalSettingsGenerated.cpp and not be confused by
-        InternalSettingsGenerated.idl.
-
-2013-01-03  Zan Dobersek  <zandobersek@gmail.com>
-
-        [style] WebIDL-reflecting uppercase enums reported as style violation
-        https://bugs.webkit.org/show_bug.cgi?id=105832
-
-        Reviewed by Tony Chang.
-
-        Recognize the enum as WebIDL-reflecting one if there's a comment present that
-        indicates this. In enums spanning over multiple lines, the comment is expected
-        on the first line. In enums placed in one line, the comment is expected at the
-        end of that line.
-
-        WebIDL-reflecting enum values are required to be written in uppercase and as such
-        violate the common rule of these values being written in InterCaps. Annotating
-        enums this way makes it possible to avoid false style violation reports.
-
-        The comment is of form '// Web(?:Kit)?IDL enum'.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (_EnumState.__init__):
-        (_EnumState.process_clean_line):
-        (check_enum_casing):
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (NoNonVirtualDestructorsTest.test_enum_casing):
-
-2013-01-03  Tim 'mithro' Ansell  <mithro@mithis.com>
-
-        Adding favicon.ico to the garden-o-matic.
-        https://bugs.webkit.org/show_bug.cgi?id=105982
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/favicon.ico:
-
-2013-01-03  Jonathan Liu  <net147@gmail.com>
-
-        [Qt] Fix library linking order
-        https://bugs.webkit.org/show_bug.cgi?id=105818
-
-        Some Qt libraries are linked before the private static libraries
-        that depend on them which results in QtWebKit failing to link.
-
-        Copy Qt module dependencies from QT to QT_PRIVATE when creating
-        module to ensure the Qt libraries are linked after the private
-        static libraries that depend on them.
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2013-01-02  Byungwoo Lee  <bw80.lee@samsung.com>
-
-        [EFL][WK2] Fix tooltip bugs in MiniBrowser.
-        https://bugs.webkit.org/show_bug.cgi?id=102209
-
-        Reviewed by Gyuyoung Kim.
-
-        Set tooltip on the elm_window instead of ewk_view, and add delay to
-        show the tooltip window.
-
-        Setting tooltip on the ewk_view makes elementary error message because
-        ewk_view is not an elementary widget. To remove the error message,
-        tooltip should be set on the elm_window.
-
-        Most browsers show the tooltip after a mouse pointer stays on an
-        element object that has tooltip text.
-        But elm_tooltip widget itself doesn't have delay or handle mouse
-        events to show/hide.
-
-        So additional codes are added to show/hide tooltip widget along with
-        mouse events.
-          1) When a mouse pointer stays for a second on an element which has
-             tooltip text, then tooltip widget is displayed.
-          2) When a mouse pointer is moved or out of ewk_view, hide the tooltip
-             widget.
-
-        * MiniBrowser/efl/main.c:
-        (_Tooltip_Information):
-        (_Browser_Window):
-        (on_tooltip_show):
-        (window_tooltip_hide):
-        (window_tooltip_update):
-        (on_mouse_in):
-        (on_mouse_move):
-        (on_mouse_out):
-        (window_free):
-        (on_tooltip_text_set):
-        (on_tooltip_text_unset):
-        (window_create):
-
-2013-01-02  Tony Chang  <tony@chromium.org>
-
-        Unreviewed, rolling out r138661.
-        http://trac.webkit.org/changeset/138661
-        https://bugs.webkit.org/show_bug.cgi?id=104740
-
-        Compile problems on EFL
-
-        * GNUmakefile.am:
-        * qmake/mkspecs/features/default_post.prf:
-
-2013-01-02  Tony Chang  <tony@chromium.org>
-
-        Generate internal.settings from Settings.in
-        https://bugs.webkit.org/show_bug.cgi?id=104740
-
-        Reviewed by Adam Barth.
-
-        * GNUmakefile.am: Compile new generated files on GTK+.
-        * qmake/mkspecs/features/default_post.prf: Qt: Make it so an action
-        with both extra_sources and add_output_to_sources=false will still
-        compile the files in extra_sources. This makes it possible to compile
-        InternalSettingsGenerated.cpp and not be confused by
-        InternalSettingsGenerated.idl.
-
-2013-01-02  Adam Barth  <abarth@webkit.org>
-
-        Remove old-run-webkit-tests support from webkitpy
-        https://bugs.webkit.org/show_bug.cgi?id=105619
-
-        Reviewed by Eric Seidel.
-
-        This patch removes support for webkitpy parsing the
-        old-run-webkit-tests results format. There doesn't seem to be any
-        reason to keep this code around anymore now that most bots have
-        switched to new-run-webkit-tests.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        (Builder.fetch_layout_test_results):
-        * Scripts/webkitpy/common/net/layouttestresults.py:
-        (path_for_layout_test):
-        (LayoutTestResults.results_from_string):
-        (LayoutTestResults):
-        * Scripts/webkitpy/common/net/layouttestresults_unittest.py:
-        (LayoutTestResultsTest.test_results_from_string):
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-        (test_flaky_test_failure):
-        * Scripts/webkitpy/tool/bot/layouttestresultsreader_unittest.py:
-        (LayoutTestResultsReaderTest.test_missing_layout_test_results):
-        * Scripts/webkitpy/tool/bot/patchanalysistask.py:
-        (PatchAnalysisTask._test_patch):
-        * Scripts/webkitpy/tool/commands/queuestest.py:
-        (QueuesTest.assert_queue_outputs):
-
-2013-01-02  Heikki Paajanen  <heikki.paajanen@palm.com>
-
-        [Qt][WK2] Add simple UI to find text from page
-        https://bugs.webkit.org/show_bug.cgi?id=96481
-
-        Reviewed by Jocelyn Turcotte.
-
-        Find bar that slides between navigation bar and WebView.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::toggleFind):
-        * MiniBrowser/qt/BrowserWindow.h:
-        (BrowserWindow):
-        * MiniBrowser/qt/MiniBrowser.qrc:
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::notify):
-        * MiniBrowser/qt/icons/find.png: Added.
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-
-2013-01-02  Christophe Dumez  <christophe.dumez@intel.com>
-
-        Regression(r138603): Caused 2 webkitpy tests to fail
-        https://bugs.webkit.org/show_bug.cgi?id=105913
-
-        Reviewed by Kentaro Hara.
-
-        Fix 2 webkitpy tests that started to fail after
-        r138603.
-
-        * Scripts/webkitpy/tool/bot/irc_command_unittest.py:
-        (IRCCommandTest._sheriff_test_data_url): Make sure the
-        returned test file URL is valid no matter what the
-        current working directory is.
-        * Scripts/webkitpy/tool/bot/ircbot_unittest.py:
-        (IRCBotTest.test_help): Add "sheriffs" command to the
-        list of available commands.
-
-2013-01-01  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2] plugins/clicking-missing-plugin-fires-delegate.html is failing
-        https://bugs.webkit.org/show_bug.cgi?id=105897
-
-        Reviewed by Alexey Proskuryakov.
-
-        Dump in WebKitTestRunner the message that is expected by layout tests
-        when the missing plugin button is clicked.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::createWebViewWithOptions):
-        (WTR::TestController::unavailablePluginButtonClicked):
-        (WTR):
-        * WebKitTestRunner/TestController.h:
-        (TestController):
-
-2013-01-01  KwangYong Choi  <ky0.choi@samsung.com>
-
-        [EFL] Enable MHTML feature
-        https://bugs.webkit.org/show_bug.cgi?id=105815
-
-        Reviewed by Laszlo Gombos.
-
-        Enable MHTML feature for EFL port by default.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2013-01-01  Alan Cutter  <alancutter@chromium.org>
-
-        sheriff-bot should know who the gardeners/sheriffs are
-        https://bugs.webkit.org/show_bug.cgi?id=105698
-
-        Reviewed by Eric Seidel.
-
-        Added a "sheriffs" command to sheriffbot to fetch the current Chromium Webkit sheriffs.
-
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        (Current):
-        (Current._retrieve_webkit_sheriffs):
-        (Current.execute):
-        * Scripts/webkitpy/tool/bot/irc_command_unittest.py:
-        (IRCCommandTest.test_current):
-        * Scripts/webkitpy/tool/bot/testdata/webkit_sheriff_0.js: Added.
-        * Scripts/webkitpy/tool/bot/testdata/webkit_sheriff_1.js: Added.
-        * Scripts/webkitpy/tool/bot/testdata/webkit_sheriff_2.js: Added.
-        * Scripts/webkitpy/tool/bot/testdata/webkit_sheriff_malformed.js: Added.
-        * Scripts/webkitpy/tool/bot/testdata/webkit_sheriff_zero.js: Added.
-
-2012-12-31  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Move ImageDiff to the Tools directory root
-        https://bugs.webkit.org/show_bug.cgi?id=105421
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * DumpRenderTree/gtk/GNUmakefile.ImageDiff.am: Removed.
-        * GNUmakefile.am:
-        * ImageDiff/gtk/ImageDiff.cpp: Renamed from Tools/DumpRenderTree/gtk/ImageDiff.cpp.
-
-2012-12-30  Mike West  <mkwst@chromium.org>
-
-        Add myself to watchlists for CSP and console logs.
-        https://bugs.webkit.org/show_bug.cgi?id=105874
-
-        Reviewed by Dirk Pranke.
-
-        Because I really, really, really need more email.
-
-        * Scripts/webkitpy/common/config/committers.py:
-            Add mkwst+watchlist@chromium.org as a contributor.
-        * Scripts/webkitpy/common/config/watchlist:
-            Create watchlist categories for 1) the various mechanisms used to
-            generate console messages, and 2) CSP usage and files.
-
-2012-12-30  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        [EFL] Enable TEMPLATE_ELEMENT feature
-        https://bugs.webkit.org/show_bug.cgi?id=105865
-        
-        Reviewed by Laszlo Gombos.
-
-        * Scripts/webkitperl/FeatureList.pm: Enable template element feature for EFL port.
-
-2012-12-30  Zan Dobersek  <zandobersek@gmail.com>
-
-        Unreviewed GTK gardening of the unit tests.
-
-        Skip the TestInspectorServer unit test that's timing out completely.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner):
-
-2012-12-29  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Web Inspector: Native Memory Instrumentation plugin: do not generate 'not instrumented' warning for instrumented mutable members.
-        https://bugs.webkit.org/show_bug.cgi?id=105855
-
-        Reviewed by Vsevolod Vlasov.
-
-        Extract MemberExpr from ImplicitCastExpr. It happens when we instrument a mutable member because
-        addMember expects const T& and the mutable ref to member implicitly converts into const ref to member.
-
-        * clang/ReportMemoryUsagePlugin/ReportMemoryUsage.cpp:
-        (ReportMemoryUsageVisitor):
-        (clang::AddMemberCallVisitor::VisitCallExpr):
-        (clang::ReportMemoryUsageVisitor::VisitCXXMethodDecl):
-        (clang::ReportMemoryUsageVisitor::checkMembersCoverage):
-
-2012-12-29  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Web Inspector: Native Memory Instrumentation plugin: move function bodies out of class declarations.
-        https://bugs.webkit.org/show_bug.cgi?id=105852
-
-        Reviewed by Alexander Pavlov.
-
-        * clang/ReportMemoryUsagePlugin/ReportMemoryUsage.cpp:
-        (clang):
-        (AddMemberCallVisitor):
-        (ReportMemoryUsageVisitor):
-        (clang::ReportMemoryUsageAction::ParseArgs):
-        (clang::AddMemberCallVisitor::VisitCallExpr):
-        (clang::ReportMemoryUsageVisitor::VisitCXXMethodDecl):
-        (clang::ReportMemoryUsageVisitor::emitWarning):
-        (clang::ReportMemoryUsageVisitor::findInstrumentationMethod):
-        (clang::ReportMemoryUsageVisitor::needsToBeInstrumented):
-        (clang::ReportMemoryUsageVisitor::CheckMembersCoverage):
-
-2012-12-29  Zan Dobersek  <zandobersek@gmail.com>
-
-        [webkitpy] Omit webkitpy/thirdparty/BeautifulSoup.py from code coverage checking
-        https://bugs.webkit.org/show_bug.cgi?id=105835
-
-        Reviewed by Dirk Pranke.
-
-        The BeautifulSoup module is a third-party import and as such we don't have much control
-        over its testing. Because of that it should be omitted from code coverage checking.
-
-        * Scripts/webkitpy/test/main.py:
-        (Tester._run_tests):
-
-2012-12-28  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK][WK2] Add support for IME Composition
-        https://bugs.webkit.org/show_bug.cgi?id=65093
-
-        Reviewed by Carlos Garcia Campos.
-
-        Update unit tests for GtkInputMethodFilter to note whether or not an event
-        was a fake event synthesized for composition purposes. This is now used
-        for WebKit2.
-
-        * TestWebKitAPI/Tests/gtk/InputMethodFilter.cpp:
-        (TestWebKitAPI::TestInputMethodFilter::sendSimpleKeyEvent):
-        (TestWebKitAPI::TestInputMethodFilter::sendKeyEventWithCompositionResults):
-        (TestWebKitAPI::TEST):
-        * gtk/generate-gtkdoc:
-        (get_webkit2_options): Skip new files in the WebKit2 source directory for documentation
-        generation.
-
-2012-12-27  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Web Inspector: Native Memory Instrumentation. Update clang plugin according to the current state of memory instrumentation code.
-        https://bugs.webkit.org/show_bug.cgi?id=105800
-
-        Reviewed by Yury Semikhatsky.
-
-        * clang/ReportMemoryUsagePlugin/ReportMemoryUsage.cpp:
-        (clang::ReportMemoryUsageConsumer::ReportMemoryUsageConsumer):
-        (clang):
-
-2012-12-27  Zan Dobersek  <zandobersek@gmail.com>
-
-        Create a GTK build system watchlist and add myself to it
-        https://bugs.webkit.org/show_bug.cgi?id=105769
-
-        Reviewed by Dirk Pranke.
-
-        Add a GTK build system watchlist, watching the configure.ac, GNUmakefile.am files
-        and the input GNUmakefile.features.am.in file. The GNUmakefile.list.am files are
-        omitted on purpose due to relatively high change rate they are exposed to.
-
-        The new watchlist would be of use to me as the GTK build system recently went
-        through a series of changes that included a changed policy on adding configuration
-        flags to configure.ac and subsequent additions to GNUmakefile.am files. A PSA on the
-        mailing list about this change will be published later, but I'd also like to be
-        notified of any pending changes to these files just so I can check the changes are
-        in compliance with the new policy.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-12-26  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Unreviewed. Replace find("Tools") with rfind("Tools") because base dir of WebKit may have Tools word.
-        As example ..../DevTools/src/third_party/WebKit
-
-        * Scripts/webkitpy/common/webkit_finder.py:
-        (WebKitFinder.webkit_base):
-
-2012-12-25  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][WK2] Refactor snapshot taking code
-        https://bugs.webkit.org/show_bug.cgi?id=105687
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Call WKViewCreateSnapshot() instead of WKViewGetSnapshot()
-        since the function was renamed to follow naming style.
-
-        * WebKitTestRunner/efl/PlatformWebViewEfl.cpp:
-        (WTR::PlatformWebView::windowSnapshotImage):
-
-2012-12-24  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Web Inspector: Native Memory Instrumentation: propagate member type as edge type to the serialized heap graph.
-        https://bugs.webkit.org/show_bug.cgi?id=105725
-
-        Reviewed by Yury Semikhatsky.
-
-        MemberType value names were adjusted according to Style Guide.
-        Existing tests were extended with link type validation.
-
-        * TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp:
-
-2012-12-24  Xiaobo Wang  <xbwang@torchmobile.com.cn>
-
-        [BlackBerry] DRT - Crashed when running pixels tests
-        https://bugs.webkit.org/show_bug.cgi?id=105711
-
-        RIM PR 270003
-
-        Reviewed by George Staikos.
-
-        Calling window->post() here will result in buffer swapping which is
-        only allowed in UI thread now, and I found we don't need to call it
-        for GL renderer.
-
-        * DumpRenderTree/blackberry/PixelDumpSupportBlackBerry.cpp:
-        (createBitmapContextFromWebView):
-
-2012-12-22  Dan Winship  <danw@gnome.org>
-
-        Add a patch to fix libxml2 2.9.0 regression
-        https://bugs.webkit.org/show_bug.cgi?id=104494
-
-        Reviewed by Martin Robinson.
-
-        * gtk/jhbuild.modules:
-        * gtk/patches/libxml2-2.9.0-dtd.patch: patch from upstream
-
-2012-12-23  Allan Sandfeld Jensen  <allan.jensen@digia.com>
-
-        Unreviewed update of status to reviewer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-12-23  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK][jhbuild] Bump GStreamer to 1.0.4
-        https://bugs.webkit.org/show_bug.cgi?id=105640
-
-        Reviewed by Martin Robinson.
-
-        * gtk/jhbuild.modules: Update GStreamer modules to 1.0.4.
-
-2012-12-21  Nico Weber  <thakis@chromium.org>
-
-        chromium: webkit-build-directory doesn't handle ninja output dirs
-        https://bugs.webkit.org/show_bug.cgi?id=105671
-
-        Reviewed by Daniel Bates.
-
-        Teach webkit-build-directory to detect the ninja build directory.
-
-        * Scripts/webkitdirs.pm:
-        (determineBaseProductDir):
-        (determineIsChromiumNinja):
-
-2012-12-21  Ryosuke Niwa  <rniwa@webkit.org>
-
-        [Mountain Lion] platform/mac/editing/spelling/removing-underline-after-accepting-autocorrection-using-punctuation.html failing
-        https://bugs.webkit.org/show_bug.cgi?id=95477
-
-        Reviewed by Sam Weinig.
-
-        Co-authored by Jia Pu.
-
-        Specify a fixed autocorrection dictionary in resetDefaultsToConsistentValues() so that
-        we can have consistent autocorrection behavior when running tests.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * WebKitTestRunner/InjectedBundle/mac/InjectedBundleMac.mm:
-        (WTR::InjectedBundle::platformInitialize):
-
-2012-12-21  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] Add WebKit1-specific TestExpectations file
-        https://bugs.webkit.org/show_bug.cgi?id=97562
-
-        Reviewed by Dirk Pranke.
-
-        Implement the expectations_files method inside the GtkPort class that
-        returns the list of the TestExpectations files the current test configuration
-        requires. The method is implemented in a similar way as on the EFL port.
-        A unit test is also added.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort._search_paths):
-        (GtkPort):
-        (GtkPort.expectations_files):
-        * Scripts/webkitpy/layout_tests/port/gtk_unittest.py:
-        (GtkPortTest.test_expectations_files):
-
-2012-12-21  Sudarsana Nagineni  <sudarsana.nagineni@intel.com>
-
-        [EFL] Enable feature option for the CSS sticky position
-        https://bugs.webkit.org/show_bug.cgi?id=105630
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Enable CSS sticky position feature by default for the
-        EFL port. This feature option was added in r138252.
-
-        No new tests. Existing layout tests pass.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-12-21  Jussi Kukkonen  <jussi.kukkonen@intel.com>
-
-        [WK2] REGRESSION(r138232): It made 4 tests timeout
-        https://bugs.webkit.org/show_bug.cgi?id=105623
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        r138232 changed functionality so that empty text output
-        no longer leads to a dump() call, which leads to a timeout.
-        Instead do a text dump if there is text output or if there
-        is no audio output.
-
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::dumpResults):
-
-2012-12-21  Zeno Albisser  <zeno@webkit.org>
-
-        [Qt][Mac] run-launcher cannot find Qt5WebKitWidgets.
-        https://bugs.webkit.org/show_bug.cgi?id=105309
-
-        On Windows the library name is Qt5WebKitWidgets as well.
-        So r138136 should not have adjusted the library name for Windows.
-
-        Reviewed by Simon Hausmann.
-
-        * Scripts/webkitdirs.pm:
-        (builtDylibPathForName):
-
-2012-12-21  Zeno Albisser  <zeno@webkit.org>
-
-        [Qt] Add new TestExpectations for qt-5.0-mac-wk2.
-        https://bugs.webkit.org/show_bug.cgi?id=105424
-
-        This change will allow us to run a very specific
-        subset of the available LayoutTests on a mac buildbot.
-        The new baseline search path for mac will look as follows:
-        qt-5.0-mac-wk2 -> qt-5.0-wk2 -> qt-5.0 -> qt-mac -> qt
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort._search_paths):
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        (QtPortTest):
-
-2012-12-20  Ryuan Choi  <ryuan.choi@samsung.com>
-
-        [EFL] Build break with latest EFL libraries.
-        https://bugs.webkit.org/show_bug.cgi?id=104827
-
-        Reviewed by Laszlo Gombos.
-
-        The eo EFL package is introduced and evas and ecore use it since 1.8.
-        While introducing Eo, EFL changed several structures of Evas and Ecore
-        from own specific class to Eo.
-
-        So, this patch adds FindEo and changes declaration of Evas, Evas_Object,
-        Ecore_Timer to build with latest EFL libraries.
-
-        * DumpRenderTree/efl/CMakeLists.txt: Includes eo EFL library.
-        * EWebLauncher/CMakeLists.txt: Ditto.
-        * MiniBrowser/efl/CMakeLists.txt: Ditto.
-        * ImageDiff/PlatformEfl.cmake: Ditto.
-        * TestWebKitAPI/PlatformEfl.cmake: Ditto.
-        * TestWebKitAPI/PlatformWebView.h: Modified declaration of Evas_Object.
-        * WebKitTestRunner/InjectedBundle/TestRunner.h: Modified declaration of Ecore_Timer.
-        * WebKitTestRunner/PlatformEfl.cmake: Includes eo EFL library.
-        * WebKitTestRunner/PlatformWebView.h: Modified declaration of Evas_Object.
-
-2012-12-20  Dirk Pranke  <dpranke@chromium.org>
-
-        TestExpectation fallback is broken
-        https://bugs.webkit.org/show_bug.cgi?id=105583
-
-        Reviewed by Ryosuke Niwa.
-
-        When I added support for the -wk2 in port names, it looks
-        like I broke the way we computed the list of TestExpectations
-        files so that the implementation-version directory was left out :(.
-        Fixed and cleaned up the tests.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.expectations_files):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (TestWebKitPort.__init__):
-        (PortTestCase.test_skipped_directories_for_symbols):
-        (test_skipped_directories_for_features):
-        (test_skipped_directories_for_features_no_matching_tests_in_test_list):
-        (test_skipped_tests_for_unsupported_features_empty_test_list):
-        (test_skipped_layout_tests):
-        (test_expectations_files):
-
-2012-12-20  Anders Carlsson  <andersca@apple.com>
-
-        Don't include WebKit2 headers when building TestWebKitAPI on windows
-        https://bugs.webkit.org/show_bug.cgi?id=105582
-
-        Reviewed by Tim Horton.
-
-        * TestWebKitAPI/config.h:
-        * TestWebKitAPI/win/main.cpp:
-
-2012-12-20  Ryosuke Niwa  <rniwa@webkit.org>
-
-        REGRESSION(r133820?): SimplifyMarkupTest API test asserts
-        https://bugs.webkit.org/show_bug.cgi?id=105370
-
-        Reviewed by Simon Fraser.
-
-        Re-enable the test.
-
-        * TestWebKitAPI/Tests/mac/SimplifyMarkup.mm:
-        (TestWebKitAPI::TEST):
-
-2012-12-20  Nico Weber  <thakis@chromium.org>
-
-        chromium nrwt: Pick the newest binary found in DEFAULT_BUILD_DIRECTORIES, not the first
-        https://bugs.webkit.org/show_bug.cgi?id=105498
-
-        Reviewed by Dirk Pranke.
-
-        Use the newest binary available rather than an than always picking one
-        build directory over another based on iteration order.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort._static_build_path):
-        Check for timestamps.
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        (ChromiumMacPortTest.test_build_path_timestamps):
-        Test that out / xcodebuild selection happens based on timestamps
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        (ChromiumWinPortTest.test_build_path_timestamps):
-        Test that out / build selection happens based on timestamps
-
-2012-12-19  Simon Fraser  <simon.fraser@apple.com>
-
-        Lots of sticky tests failing in WK2
-        https://bugs.webkit.org/show_bug.cgi?id=105464
-
-        Reviewed by Beth Dakin.
-
-        WebKitTestRunner had a race between snapshotting in the UI process,
-        and resettting after the test in the web process. InjectedBundle::done()
-        was a bad place to call page()->resetAfterTest(), because of this race;
-        it could reset the scroll position before the UI snapshot had been obtained.
-        
-        Fix by moving the call to page()->resetAfterTest() into didReceiveMessage(),
-        for the "Reset" message which will come in before the next test.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::didReceiveMessage):
-        (WTR::InjectedBundle::done):
-
-2012-12-19  Filip Pizlo  <fpizlo@apple.com>
-
-        DFG speculation checks that take JumpList should consolidate OSRExits
-        https://bugs.webkit.org/show_bug.cgi?id=105401
-
-        Reviewed by Oliver Hunt.
-
-        Update the profiler to understand that an OSR exit may have multiple
-        candidate exit sites.
-
-        * Scripts/display-profiler-output:
-
-2012-12-20  Eric Seidel  <eric@webkit.org>
-
-        EWSes do not need to dump build/test logs when things pass
-        https://bugs.webkit.org/show_bug.cgi?id=105402
-
-        Reviewed by Dirk Pranke.
-
-        When we were first writing the commit-queue and EWS system
-        and running them locally, we thought it was important to see the
-        build/test output as it happened.  Now these queues have been running
-        for years, and we don't use this feature anymore.  So this patch
-        makes us stop tee-ing the output directly to stdout, and instead
-        only print any output from commands when they fail.
-
-        I also added some logging when we execute each command
-        since we are no longer printing the command output itself.
-        This should make it much easier to see errors with the EWS
-        system itself, now that all the passing-build output is removed.
-
-        This required updating a zillion unittests, since we have a bunch of
-        "integration" style testing of the queue-bots.  Many of the unittests for the bots were
-        already approximating this behavior by using a "logging" Executive.
-        I disabled logging in those cases to avoid redundant logging in those tests.
-
-        * Scripts/webkitpy/common/system/executive.py:
-        (Executive.command_for_printing):
-        (Executive.run_command):
-        * Scripts/webkitpy/common/system/executive_mock.py:
-        (MockExecutive.command_for_printing):
-        (MockExecutive.run_command):
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        (ExecutiveTest.test_auto_stringify_args):
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-        (EarlyWarningSytemTest._default_expected_logs):
-        (_test_ews):
-        (_test_ewses):
-        * Scripts/webkitpy/tool/commands/queues.py:
-        (AbstractQueue.run_webkit_patch):
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        (AbstractQueueTest._assert_run_webkit_patch):
-        (CommitQueueTest.test_commit_queue):
-        (test_rollout):
-        (test_rollout_lands):
-        (test_manual_reject_during_processing):
-        (StyleQueueTest.test_style_queue_with_style_exception):
-        (test_style_queue_with_watch_list_exception):
-
-2012-12-20  Dominic Mazzoni  <dmazzoni@google.com>
-
-        AX: support clickPoint in DRT for chromium
-        https://bugs.webkit.org/show_bug.cgi?id=97359
-
-        Reviewed by Chris Fleizach.
-
-        Implement clickPointX, clickPointY, and elementAtPoint for Chromium, so that
-        several more tests can pass.
-
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.cpp:
-        (WebTestRunner::AccessibilityUIElement::AccessibilityUIElement):
-        (WebTestRunner::AccessibilityUIElement::clickPointXGetterCallback):
-        (WebTestRunner):
-        (WebTestRunner::AccessibilityUIElement::clickPointYGetterCallback):
-        (WebTestRunner::AccessibilityUIElement::elementAtPointCallback):
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.h:
-        (AccessibilityUIElement):
-
-2012-12-20  Dan Bernstein  <mitz@apple.com>
-
-        prepare-ChangeLog adds "Additional information of the change such as approach, rationale" where it doesn't make sense
-        https://bugs.webkit.org/show_bug.cgi?id=99268
-
-        Reviewed by Alexey Proskuryakov.
-
-        * Scripts/prepare-ChangeLog:
-        (generateNewChangeLogs): Removed the "Additional information of the change" line.
-
-2012-12-20  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed. Skip unit test /webkit/atk/getTextInParagraphAndBodyModerate
-
-        * Scripts/run-gtk-tests:
-        (TestRunner):
-
-2012-12-20  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [Qt] Move ImageDiff to the Tools directory root
-        https://bugs.webkit.org/show_bug.cgi?id=105420
-
-        Reviewed by Tor Arne Vestbø.
-
-        Moved ImageDiff from outside DumpRenderTree because it is also a
-        dependency when running pixel tests for WebKit2.
-
-        * ImageDiff/ImageDiff.pro: Renamed from Tools/DumpRenderTree/qt/ImageDiff.pro.
-        * ImageDiff/qt/ImageDiff.cpp: Renamed from Tools/DumpRenderTree/qt/ImageDiff.cpp.
-        * Tools.pro:
-
-2012-12-20  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] Remove the --enable-unstable-features configuration option
-        https://bugs.webkit.org/show_bug.cgi?id=105327
-
-        Reviewed by Martin Robinson.
-
-        Add a missing feature option for the CSS sticky position feature.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-12-20  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed. Skip unit test WebKit2.ForceRepaint that times out
-
-        * Scripts/run-gtk-tests:
-        (TestRunner):
-
-2012-12-20  Dominik Röttsches  <dominik.rottsches@intel.com>
-
-        [EFL] MiniBrowser does not play Infinite Gangnam Style
-        https://bugs.webkit.org/show_bug.cgi?id=103531
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        For EFL we would like this feature to be built by default.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-12-20  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] EWS bots should call qmake always
-        https://bugs.webkit.org/show_bug.cgi?id=90049
-
-        Reviewed by Simon Hausmann.
-
-        * Scripts/webkitdirs.pm:
-        (buildQMakeProjects):
-
-2012-12-20  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] fix stray printf in TestRunner's WebTestProxy
-        https://bugs.webkit.org/show_bug.cgi?id=105515
-
-        Reviewed by Ryosuke Niwa.
-
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::shouldInsertNode):
-
-2012-12-20  Dominik Röttsches  <dominik.rottsches@intel.com>
-
-        [WK2] WebAudio WKTR support
-        https://bugs.webkit.org/show_bug.cgi?id=95084
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Implementing audio data dump support for WebKitTestRunner,
-        by adding the API to the IDL, enabling IPC for transferring
-        the audio data as bytebuffer and dumping it according
-        to run-webkit-tests script's expectations.
-        This enables audio testing on WebKit2 ports.
-        Based on initial wip-patch from Philippe Normand - thanks.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl: Adding setAudioData API.
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp: Assign audio buffer data to a local WKDataRef after extracting it from WK2 using WKBundleDataFromUint8Array bundle API.
-        (WTR::TestRunner::setAudioData):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h: Add a whatToDump state for dumping Audio.
-        (TestRunner):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp: Add audio to the message that's transferred to the WKTR process.
-        (WTR::InjectedBundle::done):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h: Allow setting and audio result handle to be transferred.
-        (WTR::InjectedBundle::setAudioResult):
-        (InjectedBundle):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::dump): Dummy handling the Audio case in the switch, build fix for Mac.
-        * WebKitTestRunner/TestInvocation.cpp: Audio dump support, dump audio if we haven't received a text dump from the web process.
-        (WTR::TestInvocation::dumpResults):
-        (WTR):
-        (WTR::TestInvocation::dumpAudio):
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle): Storing received audio data before dumping.
-        * WebKitTestRunner/TestInvocation.h:
-        (TestInvocation):
-
-2012-12-20  Alberto Garcia  <agarcia@igalia.com>
-
-        [GTK] Count failed and timed out tests separately
-        https://bugs.webkit.org/show_bug.cgi?id=105448
-
-        Reviewed by Carlos Garcia Campos.
-
-        Display the number of tests that fail, time out and are skipped
-        separately in the buildbot page.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (RunGtkAPITests.commandComplete):
-        (RunGtkAPITests.evaluateCommand):
-        (RunGtkAPITests.getText2):
-        * Scripts/run-gtk-tests:
-        (TestRunner.run_tests):
-
-2012-12-19  Ryosuke Niwa  <rniwa@webkit.org>
-
-        PerfTest.parse_output does too much
-        https://bugs.webkit.org/show_bug.cgi?id=105391
-
-        Reviewed by Tony Chang.
-
-        Moved the code to filter lines into PerfTest._filter_output, which has been renamed from _filter_stderr.
-        Also moved the code to output test results into PerfTest._run_with_driver.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest.__init__): Added _description.
-        (PerfTest.description): Added.
-        (PerfTest._run_with_driver): Moved the code to output test description and test results.
-        (PerfTest._filter_output): Moved and renamed from PerfTest._filter_stderr.
-        (PerfTest.parse_output): Removed the code to output test results. Return test results and description
-        respectively. Also removed the code that allowed some tests to omit values since all tests report each
-        iteration now since r136492.
-        (PerfTest.output_statistics): Removed the code to print test description, now done in _run_with_driver.
-        (ChromiumStylePerfTest._run_with_driver): Added. Chromium style tests are sufficiently different from
-        regular PerfTest that it doesn't make much sense to share _run_with_driver. But really, we should just
-        get rid of this type of test altogether in favor of regular performance tests that uses runner.js.
-        (ChromiumStylePerfTest.parse_and_log_output): Renamed from parse_output.
-        (PageLoadingPerfTest._run_with_driver): Removed the explicit '' for the test description.
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py:
-        (MainTest.test_parse_output): Removed the expected logs since parse_output no longer prints out results.
-        Also added a call to _filter_output since parse_output doesn't filter the output text anymore.
-        (MainTest.test_parse_output_with_failing_line): Added a call to _filter_output. Also added ',' after 'Time:'
-        so that it's not string-concatenated with the next line.
-        (MainTest.test_parse_output_with_description): Added; a test for PerfTest.description().
-        (MainTest.test_parse_output_with_subtests): Removed the expected logs, and added a call to _filter_output.
-
-2012-12-19  Alexis Menard  <alexis@webkit.org>
-
-        Implement CSS parsing for CSS transitions unprefixed.
-        https://bugs.webkit.org/show_bug.cgi?id=104804
-
-        Reviewed by Dean Jackson.
-
-        Add a new flag ENABLE_CSS_TRANSFORMS_ANIMATIONS_TRANSITIONS_UNPREFIXED
-        to cover the work of unprefixing Transforms, Animations and 
-        Transitions. It will let the possibility of each ports to turn it off 
-        in their release branches until we're confident that these CSS 
-        properties are ready to be unprefixed.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2012-12-19  Julien Chaffraix  <jchaffraix@webkit.org>
-
-        2 clampTo unit tests are failing
-        https://bugs.webkit.org/show_bug.cgi?id=105253
-
-        Reviewed by Emil A Eklund.
-
-        Removed clampToUnsigned as it was actually testing exactly what
-        clampToUnsignedLong was doing. Also made clampToIntFloat more robust
-        to precision loss (fix suggested by Emil).
-
-        * TestWebKitAPI/Tests/WTF/MathExtras.cpp:
-
-2012-12-19  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [EFL] Move ImageDiff to the Tools directory root
-        https://bugs.webkit.org/show_bug.cgi?id=105305
-
-        Reviewed by Laszlo Gombos.
-
-        We previously moved this directory from the DRT directory to
-        efl/ImageDiff. The major reason for doing so was because ImageDiff does
-        not depend on DumpRenderTree but for legacy reasons was living inside the
-        DRT folder, even though it is needed when running pixel tests for WK2.
-
-        Now we are moving to Tool directory root as other ports agreed to do the same.
-
-        * CMakeLists.txt:
-        * ImageDiff/CMakeLists.txt: Added.
-        * ImageDiff/PlatformEfl.cmake: Added.
-        * ImageDiff/efl/ImageDiff.cpp: Renamed from Tools/efl/ImageDiff/ImageDiff.cpp.
-        * efl/ImageDiff/CMakeLists.txt: Removed.
-
-2012-12-19  Zeno Albisser  <zeno@webkit.org>
-
-        [Qt][Mac] run-launcher cannot find Qt5WebKitWidgets.
-        https://bugs.webkit.org/show_bug.cgi?id=105309
-
-        The version number is only used as a part
-        of the library name on Linux.
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * Scripts/webkitdirs.pm:
-        (builtDylibPathForName):
-
-2012-12-19  Alberto Garcia  <agarcia@igalia.com>
-
-        [GTK] Tests that time out are not considered as failures.
-        https://bugs.webkit.org/show_bug.cgi?id=105318
-
-        Reviewed by Martin Robinson.
-
-        Fix parsing of the GTK API tests log files.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (RunGtkAPITests.commandComplete):
-
-2012-12-18  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Unreviewed, rolling out r138061.
-        https://bugs.webkit.org/show_bug.cgi?id=105396
-
-        Original patch:
-        http://trac.webkit.org/changeset/138061
-        https://bugs.webkit.org/show_bug.cgi?id=97359
-
-        It is crashing on Debug bots
-
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.cpp:
-        (WebTestRunner::AccessibilityUIElement::AccessibilityUIElement):
-        (WebTestRunner::AccessibilityUIElement::elementAtPointCallback):
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.h:
-        (AccessibilityUIElement):
-
-2012-12-18  Alice Liu  <alice.liu@apple.com>
-
-        Test for https://bugs.webkit.org/show_bug.cgi?id=105106
-        Add SPI to WebKit1 WebFrame for hit testing
-
-        Reviewed by Dan Bernstein.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj: Added file Tests/mac/ElementAtPointInWebFrame.mm
-        * TestWebKitAPI/Tests/mac/ElementAtPointInWebFrame.mm: Added.
-        (TestWebKitAPI::TEST): Loads html with two divs positioned in the 2nd and 4th quadrants of the webview.
-        Then hit-tests at three points, expecting to hit the two divs and body element. 
-
-2012-12-18  Alice Liu  <alice.liu@apple.com>
-
-        Test for https://bugs.webkit.org/show_bug.cgi?id=105262
-        Add SPI to WebKit1 WebFrame for node conversion to JSValueRef
-
-        Reviewed by Anders Carlsson.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj: Added file Tests/mac/JSWrapperForNodeInWebFrame.mm.mm
-        * TestWebKitAPI/Tests/mac/JSWrapperForNodeInWebFrame.mm.mm: Added.
-        (TestWebKitAPI::TEST): Tests for the correct JS wrapper for a DOMNode, provided a WebScriptWorld.
-        Loads html with a single div element. In an isolated world, creates a property on that node.
-        Also, in the standard world, creates a different property on that node.  Then tests for 4 things:
-            - Existence of the isolated property in the isolated world.
-            - Existence of the standard property in the standard world.
-            - Non-existence of the isolated property in the standard world.
-            - Non-existence of the standard property in the isolated world.
-
-2012-12-18  Simon Fraser  <simon.fraser@apple.com>
-
-        Disable the SimplifyMarkup API test, wich asserts in debug builds.
-        Tracked by https://bugs.webkit.org/show_bug.cgi?id=105370.
-        
-        * TestWebKitAPI/Tests/mac/SimplifyMarkup.mm:
-        (TestWebKitAPI::TEST):
-
-2012-12-18  Joseph Pecoraro  <pecoraro@apple.com>
-
-        [Mac] Add Build Phase to Check Headers for Inappropriate Macros (Platform.h macros)
-        https://bugs.webkit.org/show_bug.cgi?id=104279
-
-        Reviewed by David Kilzer.
-
-        Add a build phase script that checks a framework's header files for
-        Platform.h and Compiler.h macros. Also add some tests for the script.
-
-        * Scripts/check-for-inappropriate-macros-in-external-headers: Added.
-        Script to be used in build phases to check for inappropriate macros in headers.
-
-        * Scripts/test-webkitruby: Added.
-        Script that can be used to run all webkitruby tests.
-
-        * Scripts/test-webkit-scripts:
-        Also run the ruby tests.
-
-        * Scripts/webkitruby/check-for-inappropriate-macros-in-external-headers-tests/fake-data-failing-expected.txt: Added.
-        * Scripts/webkitruby/check-for-inappropriate-macros-in-external-headers-tests/pass-expected.txt: Added.
-        * Scripts/webkitruby/check-for-inappropriate-macros-in-external-headers-tests/resources/Fake.framework/Headers/Fail.h: Added.
-        * Scripts/webkitruby/check-for-inappropriate-macros-in-external-headers-tests/resources/Fake.framework/Headers/Pass.h: Added.
-        * Scripts/webkitruby/check-for-inappropriate-macros-in-external-headers-tests/run-test.rb: Added.
-        Tests for the new script.
-
-2012-12-18  Dominic Mazzoni  <dmazzoni@google.com>
-
-        AX: support clickPoint in DRT for chromium
-        https://bugs.webkit.org/show_bug.cgi?id=97359
-
-        Reviewed by Chris Fleizach.
-
-        Implement clickPointX, clickPointY, and elementAtPoint for Chromium, so that
-        several more tests can pass.
-
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.cpp:
-        (WebTestRunner::AccessibilityUIElement::AccessibilityUIElement):
-        (WebTestRunner::AccessibilityUIElement::clickPointXGetterCallback):
-        (WebTestRunner):
-        (WebTestRunner::AccessibilityUIElement::clickPointYGetterCallback):
-        (WebTestRunner::AccessibilityUIElement::elementAtPointCallback):
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.h:
-        (AccessibilityUIElement):
-
-2012-12-18  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Build fix after r138045.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._collect_tests): Use relative_path. We skip only when this path
-        is not explicitly specified. The condition was backwards but never matched so we
-        always ran the test regardless of whether it's listed in the skipped list or not.
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (test_collect_tests_with_ignored_skipped_list): Renamed so that it actually runs.
-
-2012-12-18  Emil A Eklund  <eae@chromium.org>
-
-        TestWebKitAPI/Tests/WebCore/LayoutUnit fails on mac
-        https://bugs.webkit.org/show_bug.cgi?id=105332
-        
-        Reviewed by Levi Weintraub.
-        
-        Create new test suite for LayoutUnit tests as the KURL tests are
-        of the incompatible TEST_F type.
-
-        * TestWebKitAPI/Tests/WebCore/LayoutUnit.cpp:
-        (TestWebKitAPI):
-        (TestWebKitAPI::TEST_F):
-
-2012-12-18  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Running a skipped test with run-perf-tests could alert the user
-        https://bugs.webkit.org/show_bug.cgi?id=105219
-
-        Reviewed by Eric Seidel.
-
-        Force run skipped performance tests explicitly specified in the command line.
-        Also warn the user when the specified paths don't exist.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.relative_test_filename):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._parse_args):
-        (PerfTestsRunner._collect_tests):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (test_collect_tests_with_skipped_list_and_files):
-
-2012-12-18  Yaron Friedman  <yfriedman@chromium.org>
-
-        Chrome Android java output is too verbose
-        https://bugs.webkit.org/show_bug.cgi?id=105247
-
-        Reviewed by Tony Chang.
-
-        Pass -quiet to ant to suppress extraneous output.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * TestWebKitAPI/TestWebKitAPI.gyp/TestWebKitAPI.gyp:
-
-2012-12-18  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Consider removing --pause-before-testing option
-        https://bugs.webkit.org/show_bug.cgi?id=105248
-
-        Reviewed by Eric Seidel.
-
-        Remove --pause-before-testing option.
-
-        * Tools/Scripts/webkitpy/layout_tests/port/driver.py:
-        (DriverProxy.start): Removed.
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest.__init__):
-        (PerfTest.test_path): Renamed from path_or_url.
-        (PerfTest.run):
-        (PerfTest): Removed "driver" argument.
-        (PerfTest._run_with_driver):
-        (PerfTest.run_single):
-        (ChromiumStylePerfTest.__init__):
-        (PageLoadingPerfTest.__init__):
-        (PageLoadingPerfTest.run_single):
-        (PageLoadingPerfTest._run_with_driver): Renamed from run so that PerfTest.run can create a driver for us.
-        (ReplayPerfTest.__init__):
-        (ReplayPerfTest.prepare):
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py:
-        (TestPageLoadingPerfTest.test_run):
-        (TestPageLoadingPerfTest.test_run_with_memory_output):
-        (TestPageLoadingPerfTest.test_run_with_bad_output):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._parse_args):
-        (PerfTestsRunner._run_tests_set): Removed the code to create a driver and pause before running the test.
-        (PerfTestsRunner._run_single_test): Removed "driver" argument.
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (run_test):
-        (test_run_test_pause_before_testing): Removed.
-
-2012-12-18  Alberto Garcia  <agarcia@igalia.com>
-
-        [GTK] Tests that time out are not considered as failures.
-        https://bugs.webkit.org/show_bug.cgi?id=105318
-
-        Reviewed by Martin Robinson.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (RunGtkAPITests.commandComplete):
-        Consider log lines that end with TIMEOUT as errors.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner.run_tests):
-        Consider timeouts as failures when returning the number of failed
-        tests.
-
-2012-12-18  Pravin D  <pravin.d@samsung.com>
-
-        Unreviewed, adding secondary email.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-12-18  Pravin D  <pravin.d@samsung.com>
-
-        Unreviewed, promoting myself to committer's list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-12-18  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [EFL] ImageDiff does not build on WebKit2 only builds
-        https://bugs.webkit.org/show_bug.cgi?id=105288
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Moved ImageDiff to the efl/ folder inside Tools/ (so we don't pollute
-        the folder with things which are EFL-specific.
-
-        ImageDiff will be built by default now regardless of WebKit API flavor
-        you choose.
-
-        * CMakeLists.txt:
-        * DumpRenderTree/efl/CMakeLists.txt:
-        * efl/ImageDiff/CMakeLists.txt: Added.
-        * efl/ImageDiff/ImageDiff.cpp: Renamed from Tools/DumpRenderTree/efl/ImageDiff.cpp.
-
-2012-12-18  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        [EFL][WK2] When creating new windows, use the opener's context
-        https://bugs.webkit.org/show_bug.cgi?id=105283
-
-        Reviewed by Laszlo Gombos.
-
-        Use the context of the opener if exists.
-
-        * MiniBrowser/efl/main.c:
-        (on_key_down):
-        (on_window_create):
-        (window_create):
-        (elm_main):
-
-2012-12-18  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [EFL][WK2] Gardening of TestWebKitAPI tests
-        https://bugs.webkit.org/show_bug.cgi?id=105268
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Some tests were marked as failing but are passing and the newly added
-        LayoutUnit should have it's own binary because it conflicts with the
-        fixture used by KURL and is failing on the bots because of that.
-
-        * TestWebKitAPI/CMakeLists.txt:
-        * TestWebKitAPI/PlatformEfl.cmake:
-
-2012-12-18  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move webintent related methods to TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=105164
-
-        Reviewed by Darin Fisher.
-
-        Also deleted the unused deliveredIntentFailure and
-        deliveredIntentResult methods.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebKit):
-        (WebTestRunner::WebTestDelegate::setCurrentWebIntentRequest):
-        (WebTestRunner::WebTestDelegate::currentWebIntentRequest):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebKit):
-        (WebTestProxyBase):
-        (WebTestRunner::WebTestProxy::registerIntentService):
-        (WebTestRunner::WebTestProxy::dispatchIntent):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::sendWebIntentResponse):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::deliverWebIntent):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::postAccessibilityNotification):
-        (WebTestRunner::WebTestProxyBase::registerIntentService):
-        (WebTestRunner):
-        (WebTestRunner::WebTestProxyBase::dispatchIntent):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::setCurrentWebIntentRequest):
-        (WebViewHost::currentWebIntentRequest):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebKit):
-        (WebViewHost):
-
-2012-12-18  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move editing callback dumping to the WebTestProxy
-        https://bugs.webkit.org/show_bug.cgi?id=105013
-
-        Reviewed by Darin Fisher.
-
-        To decide whether or not to dump the editing callbacks, the WebTestProxy
-        needs to query the TestRunner. For this purpose, I introduce a
-        WebTestRunner class that just exposes the shouldDumpEditingCallbacks
-        method. In contrast to e.g. WebEventSender, the WebTestRunner is just
-        an interface, and it is not owned by the WebTestInterfaces, but the
-        embedder of the TestRunner library must provide it. This will change
-        once all TestRunner methods are in the library.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        (DRTTestRunner::reset):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        (DRTTestRunner::taskList):
-        (DRTTestRunner::WorkQueue::taskList):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h:
-        (WebTestRunner):
-        (WebTestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebKit):
-        (WebTestRunner):
-        (WebTestProxyBase):
-        (WebTestRunner::WebTestProxy::shouldBeginEditing):
-        (WebTestRunner::WebTestProxy::shouldEndEditing):
-        (WebTestRunner::WebTestProxy::shouldInsertNode):
-        (WebTestRunner::WebTestProxy::shouldInsertText):
-        (WebTestRunner::WebTestProxy::shouldChangeSelectedRange):
-        (WebTestRunner::WebTestProxy::shouldDeleteRange):
-        (WebTestRunner::WebTestProxy::shouldApplyStyle):
-        (WebTestRunner::WebTestProxy::didBeginEditing):
-        (WebTestRunner::WebTestProxy::didChangeSelection):
-        (WebTestRunner::WebTestProxy::didChangeContents):
-        (WebTestRunner::WebTestProxy::didEndEditing):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestRunner.h: Copied from Tools/DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h.
-        (WebTestRunner):
-        (WebTestRunner::WebTestRunner::shouldDumpEditingCallbacks):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::~TestRunner):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::shouldDumpEditingCallbacks):
-        (WebTestRunner::TestRunner::dumpEditingCallbacks):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestRunner::WebTestInterfaces::Internal::testRunner):
-        (WebTestRunner::WebTestInterfaces::Internal::setTestRunner):
-        (WebTestInterfaces::Internal):
-        (WebTestRunner::WebTestInterfaces::Internal::Internal):
-        (WebTestRunner::WebTestInterfaces::testRunner):
-        (WebTestRunner):
-        (WebTestRunner::WebTestInterfaces::setTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::postAccessibilityNotification):
-        (WebTestRunner):
-        (WebTestRunner::WebTestProxyBase::shouldBeginEditing):
-        (WebTestRunner::WebTestProxyBase::shouldEndEditing):
-        (WebTestRunner::WebTestProxyBase::shouldInsertNode):
-        (WebTestRunner::WebTestProxyBase::shouldInsertText):
-        (WebTestRunner::WebTestProxyBase::shouldChangeSelectedRange):
-        (WebTestRunner::WebTestProxyBase::shouldDeleteRange):
-        (WebTestRunner::WebTestProxyBase::shouldApplyStyle):
-        (WebTestRunner::WebTestProxyBase::didBeginEditing):
-        (WebTestRunner::WebTestProxyBase::didChangeSelection):
-        (WebTestRunner::WebTestProxyBase::didChangeContents):
-        (WebTestRunner::WebTestProxyBase::didEndEditing):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::initialize):
-        (TestShell::createNewWindow):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::shouldBeginEditing):
-        (WebViewHost::shouldEndEditing):
-        (WebViewHost::shouldInsertNode):
-        (WebViewHost::shouldInsertText):
-        (WebViewHost::shouldChangeSelectedRange):
-        (WebViewHost::shouldDeleteRange):
-        (WebViewHost::shouldApplyStyle):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-12-17  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] Fix methods in TestRunner that directly modify the settings instead of going through WebPreferences
-        https://bugs.webkit.org/show_bug.cgi?id=105154
-
-        Reviewed by Tony Chang.
-
-        If the settings are modified directly, the embedder can't keep track of
-        them and might accidentially override the changed settings.
-
-        * DumpRenderTree/chromium/TestRunner/public/WebPreferences.h:
-        (WebPreferences):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::setAsynchronousSpellCheckingEnabled):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::setMinimumTimerInterval):
-        (WebTestRunner::TestRunner::setTouchDragDropEnabled):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebPreferences.cpp:
-        (WebTestRunner::WebPreferences::reset):
-        (WebTestRunner::WebPreferences::applyTo):
-
-2012-12-17  Julien Chaffraix  <jchaffraix@webkit.org>
-
-        Unreviewed unit test skipping.
-
-        Filed https://bugs.webkit.org/show_bug.cgi?id=105253 to re-enable them.
-
-        * TestWebKitAPI/Tests/WTF/MathExtras.cpp:
-        (TestWebKitAPI):
-        (TestWebKitAPI::TEST):
-
-2012-12-17  Dean Jackson  <dino@apple.com>
-
-        Unreviewed. Add Silvia Pfeiffer to contributor list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-12-17  Dirk Pranke  <dpranke@chromium.org>
-
-        build.webkit.org - add more google windows bots
-        https://bugs.webkit.org/show_bug.cgi?id=105225
-
-        Reviewed by Eric Seidel.
-
-        Adds two more windows bots (google-windows-3, a builder, and
-        google-windows-4, a tester) for the Chromium configs.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-12-17  Eric Seidel  <eric@webkit.org>
-
-        Cleanup --profiler=perf code a little and allow up to 1000 report files (instead of 100)
-        https://bugs.webkit.org/show_bug.cgi?id=105217
-
-        Reviewed by Dirk Pranke.
-
-        Previously --profile would fail strangely if find_unused_filename returned None
-        (which would happen as soon as we had 100 report files).
-        Now we'll search through 1000 filenames before giving up (and assert if we failed to find one).
-        I also made some minor cleanups to the output of perf, and tried to make the
-        commands more self-documenting by using long-names for args.
-
-        * Scripts/webkitpy/common/system/profiler.py:
-        (SingleFileOutputProfiler.__init__):
-        (Perf.attach_to_pid):
-        (Perf.profile_after_exit):
-
-2012-12-17  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r137198.
-        http://trac.webkit.org/changeset/137198
-        https://bugs.webkit.org/show_bug.cgi?id=105212
-
-        This patch is causing API behavior compatibility problems
-        (Requested by zdobersek on #webkit).
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (willSendRequestCallback):
-
-2012-12-17  Elliott Sprehn  <esprehn@chromium.org>
-
-        Unreviewed. Adding myself to committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-12-17  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: shuffle code around for cleanup in run_webkit_tests.py
-        https://bugs.webkit.org/show_bug.cgi?id=105078
-
-        Reviewed by Ojan Vafai.
-
-        This patch reorders functions so that run_webkit_tests can be
-        understood in a top-down matter better, and to make things slightly
-        more sensible when I merge manager.py into it.
-
-        Also, this adds tests for the actual main() routine, which had several
-        bugs get through testing a week or two ago.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (main):
-        (parse_args):
-        (_set_up_derived_options):
-        (run):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (RunTest):
-        (RunTest.test_no_http_tests):
-        (PortTest.disabled_test_mac_lion):
-        (MainTest):
-        (MainTest.test_exception_handling):
-        (MainTest.test_exception_handling.interrupting_run):
-        (MainTest.test_exception_handling.successful_run):
-        (MainTest.test_exception_handling.successful_run.FakeRunDetails):
-        (MainTest.test_exception_handling.exception_raising_run):
-
-2012-12-17  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: move --lint-test-files code into its own module
-        https://bugs.webkit.org/show_bug.cgi?id=105077
-
-        Reviewed by Eric Seidel.
-
-        It really didn't need to be in run_webkit_tests.py anymore.
-        This patch adds a new lint-test-expectations scripts to Tools/Scripts;
-        rwt --lint-test-files is still supported for backwards compatibility
-        for now.
-
-        * Scripts/lint-test-expectations: Added.
-        * Scripts/webkitpy/layout_tests/lint_test_expectations.py: Added.
-        (lint):
-        (main):
-        * Scripts/webkitpy/layout_tests/lint_test_expectations_unittest.py: Added.
-        (FakePort):
-        (FakePort.__init__):
-        (FakePort.test_configuration):
-        (FakePort.expectations_dict):
-        (FakePort.skipped_layout_tests):
-        (FakePort.all_test_configurations):
-        (FakePort.configuration_specifier_macros):
-        (FakePort.get_option):
-        (FakeFactory):
-        (FakeFactory.__init__):
-        (FakeFactory.get):
-        (FakeFactory.all_port_names):
-        (LintTest):
-        (LintTest.test_all_configurations):
-        (LintTest.test_lint_test_files):
-        (LintTest.test_lint_test_files__errors):
-        (MainTest):
-        (MainTest.test_success):
-        (MainTest.test_success.interrupting_lint):
-        (MainTest.test_success.successful_lint):
-        (MainTest.test_success.exception_raising_lint):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (main):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (StreamTestingMixin.assertNotEmpty):
-
-2012-12-17  Adam Klein  <adamk@chromium.org>
-
-        build-webkit: rename --template-tag to --template-element to match ENABLE #define name
-        https://bugs.webkit.org/show_bug.cgi?id=105072
-
-        Reviewed by Laszlo Gombos.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-12-17  Julien Chaffraix  <jchaffraix@webkit.org>
-
-        Add some unit testing for WTF::clampTo* functions
-        https://bugs.webkit.org/show_bug.cgi?id=105060
-
-        Reviewed by Emil A Eklund.
-
-        The new tests are targeted at clamping to int / unsigned and float as those are
-        the one explicitely exposed through more dedicated functions (like clampToInteger,
-        clampToPositiveInteger and clampToFloat).
-
-        * TestWebKitAPI/Tests/WTF/MathExtras.cpp:
-
-2012-12-17  Eric Seidel  <eric@webkit.org>
-
-        rpt --profile --chromium-android throws exception
-        https://bugs.webkit.org/show_bug.cgi?id=105061
-
-        Reviewed by Daniel Bates.
-
-        Somehow popen(args) got turned into popen(*args) at some point,
-        which caused my new stringify code to fail when args was passed by name.
-        Fixed and tested.
-
-        * Scripts/webkitpy/common/system/executive.py:
-        (Executive._stringify_args):
-        (Executive):
-        (Executive.popen):
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        (ExecutiveTest.test_popen_args):
-
-2012-12-17  Mark Pilgrim  <pilgrim@chromium.org>
-
-        Use Platform::current() instead of webKitPlatformSupport() in DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=105054
-
-        Reviewed by Jochen Eisinger.
-
-        Part of a refactoring series; see tracking bug 82948.
-
-        * DumpRenderTree/chromium/NotificationPresenter.cpp:
-        (NotificationPresenter::show):
-        * DumpRenderTree/chromium/Task.cpp:
-        (postTask):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestPlugin.cpp:
-
-2012-12-17  Emil A Eklund  <eae@chromium.org>
-
-        Clamp values in LayoutUnit::operator/ when SATURATED_LAYOUT_ARITHMETIC is enabled
-        https://bugs.webkit.org/show_bug.cgi?id=104955
-
-        Reviewed by Julien Chaffraix.
-
-        Add tests for LayoutUnit.
-
-        * TestWebKitAPI/CMakeLists.txt:
-        * TestWebKitAPI/ForwardingHeaders: Added.
-        * TestWebKitAPI/ForwardingHeaders/WebCore: Added.
-        * TestWebKitAPI/ForwardingHeaders/WebCore/LayoutUnit.h: Added.
-        * TestWebKitAPI/TestWebKitAPI.gyp/TestWebKitAPI.gyp:
-        * TestWebKitAPI/TestWebKitAPI.gypi:
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebCore/LayoutUnit.cpp: Added.
-        (TestWebKitAPI):
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-
-2012-12-17  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] removed unused preferences from testRunner.overridePreference
-        https://bugs.webkit.org/show_bug.cgi?id=105169
-
-        Reviewed by Tony Chang.
-
-        Most notably this removes the code related to font family maps which is
-        now handled via window.internals.settings
-
-        * DumpRenderTree/chromium/TestRunner/public/WebPreferences.h:
-        (WebPreferences):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::overridePreference):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebPreferences.cpp:
-        (WebTestRunner::WebPreferences::applyTo):
-
-2012-12-17  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Move creation of WebLayerTreeView to WebWidgetClient
-        https://bugs.webkit.org/show_bug.cgi?id=105071
-
-        Reviewed by Adrienne Walker.
-
-        Update WebViewHost for the new WebWidgetClient interface.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::initializeLayerTreeView):
-        (WebViewHost::layerTreeView):
-        (WebViewHost::~WebViewHost):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-12-17  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        [EFL][WK2] window_create doesn't receive the url
-        https://bugs.webkit.org/show_bug.cgi?id=105184
-
-        Reviewed by Alexis Menard.
-
-        * MiniBrowser/efl/main.c: Use the url supplied to window_create
-        (on_window_create):
-
-2012-12-17  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Web Inspector: Native Memory Instrumentation: MemoryInstrumentation doesn't detect reportMemoryUsage method defined in a base class.
-        https://bugs.webkit.org/show_bug.cgi?id=105026
-
-        Reviewed by Yury Semikhatsky.
-
-        Old SFINAE test was replaced with new one based on this article:
-        http://stackoverflow.com/questions/1966362/sfinae-to-check-for-inherited-member-functions
-
-        New test which covers this problem was added.
-
-        * TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp:
-
-2012-12-17  Anthony Scian  <ascian@rim.com>
-
-        [Blackberry] Static code analysis warning fixes
-        https://bugs.webkit.org/show_bug.cgi?id=105129
-
-        Reviewed by Rob Buis.
-
-        Added null checks for fopen calls, no recovery attempted; access fault prevention only.
-
-        * DumpRenderTree/blackberry/DumpRenderTree.cpp:
-        (BlackBerry::WebKit::createFile):
-        (BlackBerry::WebKit::DumpRenderTree::runTest):
-
-2012-12-17  John Mellor  <johnme@chromium.org>
-
-        Add Anton Vayvod and Tim Volodine as contributors in committers.py
-        https://bugs.webkit.org/show_bug.cgi?id=105025
-
-        Unreviewed. Adds two contributors to committers.py.
-        They are initially contributing to the Text Autosizing feature (master bug: 84186).
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-12-17  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        Unreviewed, add myself to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-12-17  Oswald Buddenhagen  <oswald.buddenhagen@digia.com>
-
-        [Qt] remove some unnecessary CONFIG additions
-
-        Reviewed by Simon Hausmann.
-
-        qt is already added by spec_pre.prf, warn_on and depend_includepath by
-        default_pre.prf.
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2012-12-17  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Unreviewed, rolling out r137892.
-        http://trac.webkit.org/changeset/137892
-        https://bugs.webkit.org/show_bug.cgi?id=105026
-
-        it broke compilation on windows
-
-        * TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp:
-
-2012-12-14  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Web Inspector: Native Memory Instrumentation: MemoryInstrumentation doesn't detect reportMemoryUsage method defined in a base class.
-        https://bugs.webkit.org/show_bug.cgi?id=105026
-
-        Reviewed by Yury Semikhatsky.
-
-        Old SFINAE test was replaced with new one based on this article:
-        http://stackoverflow.com/questions/1966362/sfinae-to-check-for-inherited-member-functions
-
-        New test which covers this problem was added.
-
-        * TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp:
-
-2012-12-17  Oswald Buddenhagen  <oswald.buddenhagen@digia.com>
-
-        [Qt] rely on automatic output directory setup
-
-        Reviewed by Simon Hausmann.
-
-        Now being a proper qt module (by virtue of having load(qt_build_config)
-        in .qmake.conf), webkit gets the path setup goodies for free.
-
-        This also fixes Makefile.api.Debug/Release trying to generate qrc_WebKit.cpp
-        at the same time, instead of the debug and release version ending up in different
-        directories as they should.
-
-        * qmake/mkspecs/features/default_pre.prf:
-
-2012-12-17  Charles Wei  <charles.wei@torchmobile.com.cn>
-
-        [BlackBerry] Need to re-enable video track
-        https://bugs.webkit.org/show_bug.cgi?id=105155
-
-        Reviewed by George Staikos.
-
-        Just enable Video Track for BlackBerry.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-12-17  János Badics  <jbadics@inf.u-szeged.hu>
-
-        Unreviewed. Added myself to committers.py
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-12-17  Jonathan Liu  <net147@gmail.com>
-
-        Fix linking of libraries with -Wl,-whole-archive
-        https://bugs.webkit.org/show_bug.cgi?id=104436
-
-        Reviewed by Simon Hausmann.
-
-        If there is more than one library in LIBS linked with
-        -Wl,-whole-archive -l... -Wl,-no-whole-archive, qmake tries to
-        merge the duplicate flags in LIBS which causes linking to fail.
-
-        Add no_smart_library_merge to CONFIG to prevent the duplicate
-        flags from being removed when using -Wl,-whole-archive.
-
-        * qmake/mkspecs/features/functions.prf:
-
-2012-12-16  Arvid Nilsson  <anilsson@rim.com>
-
-        [BlackBerry] Adapt to new BlackBerry::Platform::TouchPoint API
-        https://bugs.webkit.org/show_bug.cgi?id=105143
-        RIM PR 171941
-
-        Reviewed by Rob Buis.
-        Internally reviewed by George Staikos.
-
-        Adapt to new method names and encapsulation of TouchPoint data members.
-
-        * DumpRenderTree/blackberry/EventSender.cpp:
-        (addTouchPointCallback):
-        (updateTouchPointCallback):
-        (touchEndCallback):
-        (releaseTouchPointCallback):
-        (sendTouchEvent):
-
-2012-12-16  Maciej Stachowiak  <mjs@apple.com>
-
-        Add a script to compute the mean and 95% confidence interval (using two-sided t-test) of a sample set
-        https://bugs.webkit.org/show_bug.cgi?id=105148
-
-        Reviewed by Filip Pizlo.
-
-        Usage examples:
-        
-        $ sampstat --help
-        Usage: sampstat [options] [FILES]
-          Compute the mean and 95% confidence interval of a sample set.
-          Standard input or files must contain two or more decimal numbers, one per line.
-        
-        Options:
-          -h, --help            show this help message and exit
-          -u UNIT, --unit=UNIT  assume values are in units of UNIT
-          -v, --verbose         print all values (with units)
-        
-        $ sampstat -u MB memresults.txt
-        2356.90 MB +/- 101.34 MB (4.3%)
-        
-        $ sampstat -v -u MB memresults.txt
-              2318.21 MB
-              2399.56 MB
-              2352.93 MB
-        ----------------
-        Mean: 2356.90 MB +/- 101.34 MB (4.3%)
-        
-
-        * Scripts/sampstat: Added.
-        (sum): Helper function to compute the sum of a list.
-        (arithmeticMean): Compute the meam of a list.
-        (standardDeviation): Compute the sample standard deviation (unbiased estimator).
-        (standardError): Compute the sample standard error.
-        (tDist): Compute t(.025, n-1), the t-value for atwo-sided 95% confidence interval. 
-        (twoSidedConfidenceInterval): Compute the two-sided confidence interval range about the mean.
-
-2012-12-15  Nima Ghanavatian  <nghanavatian@rim.com>
-
-        [BlackBerry] Pass key modifiers with touch and mouse events
-        https://bugs.webkit.org/show_bug.cgi?id=105108
-
-        Reviewed by Rob Buis.
-
-        Update DRT to new api.
-
-        Internally reviewed by Gen Mak.
-
-        * DumpRenderTree/blackberry/EventSender.cpp:
-        (mouseDownCallback):
-        (mouseUpCallback):
-        (mouseMoveToCallback):
-
-2012-12-15  Zan Dobersek  <zandobersek@gmail.com>
-
-        Stop the XvfbDriver before proceeding with its starting setup
-        https://bugs.webkit.org/show_bug.cgi?id=105006
-
-        Reviewed by Philippe Normand.
-
-        Just as with the base Driver implementation, stop the XvfbDriver
-        before proceeding with setting up lock files and a new Xvfb instance.
-        This forces any driver or Xvfb instances that are currently under
-        the driver's control to be closed/killed and cleaned up after.
-
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver.py:
-        (XvfbDriver._start):
-
-2012-12-14  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: make port_name a required parameter to the non-test ports
-        https://bugs.webkit.org/show_bug.cgi?id=105057
-
-        Reviewed by Eric Seidel.
-
-        This is just minor code cleanup along the path to making Port
-        constructors simpler and pushing more logic into the port factory.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.__init__):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.make_port):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (TestWebKitPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort):
-        (TestPort.determine_full_port_name):
-        (TestPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver_unittest.py:
-        (XvfbDriverTest.make_driver):
-        (XvfbDriverTest.test_stop):
-
-2012-12-14  Dirk Pranke  <dpranke@chromium.org>
-
-        garden-o-matic doesn't know about reftests
-        https://bugs.webkit.org/show_bug.cgi?id=101976
-
-        Reviewed by Eric Seidel.
-
-        Attempt to make garden-o-matic properly aware of reftests again.
-
-        This is re-landing r137407 with a change to
-        rebaselineWithStatusUpdates() to actually pass the filtered
-        failureInofLost to checkout.rebaseline().
-
-        Unfortunately, the testing coverage for this whole module is almost
-        non-existent, and it's not obvious that there's a good way to
-        stub out checkout.rebaseline() to test that the right thing
-        happens. I verified the change manually.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        (.):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
-        (.):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results_unittests.js:
-
-2012-12-14  Ryosuke Niwa  <rniwa@webkit.org>
-
-        "Running 1 DumpRenderTree over X shards" is not a helpful output
-        https://bugs.webkit.org/show_bug.cgi?id=104858
-
-        Reviewed by Dirk Pranke.
-
-        The word "shard" is not typically used in test frameworks. This word is confusing for many WebKit
-        contributors who typically don't have much experience on distributed computations and databases.
-        So only print this message out in the debug mode.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (Printer.print_workers_and_shards):
-
-2012-12-13  Eric Seidel  <eric@webkit.org>
-
-        Add --profiler=PROFILER option to run-perf-tests to allow specifying which profiler to use on platforms with many
-        https://bugs.webkit.org/show_bug.cgi?id=104891
-
-        Reviewed by Ryosuke Niwa.
-
-        I also implemented a very simple "Sample" Profiler using
-        Mac OS X's /usr/bin/sample command line tool.
-
-        The real reason for this abstraction is to make it easy
-        to support both perf and pprof on linux which seem to
-        be about equally popular among those I ask in the Chrome team.
-
-        * Scripts/webkitpy/common/system/profiler.py:
-        (ProfilerFactory.create_profiler):
-        (ProfilerFactory):
-        (ProfilerFactory.available_profilers_by_name):
-        (ProfilerFactory.default_profiler_name):
-        (Sample):
-        (Sample.__init__):
-        (Sample.attach_to_pid):
-        (Sample.profile_after_exit):
-        (IProfiler.attach_to_pid):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.__init__):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._parse_args):
-
-2012-12-13  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, fixing typo in python unittest.
-
-        I changed the default profiler on linux from pprof to perf in
-        bug 104971.  I failed to update the unittest results at that time.
-
-        * Scripts/webkitpy/common/system/profiler_unittest.py:
-        (ProfilerFactoryTest.test_basic):
-
-2012-12-13  Ian Vollick  <vollick@chromium.org>
-
-        [chromium] Add a virtual test suite for enabling opt-in to composited scrolling
-        https://bugs.webkit.org/show_bug.cgi?id=104911
-
-        Reviewed by Dirk Pranke.
-
-        Adds two virtual tests suites to run the tests in
-        compositing/overflow/ and scrollbars/ with the flag
-        --enable-accelerated-overflow-scroll, which I've also plumbed through
-        in the usual way.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/TestRunner/public/WebPreferences.h:
-        (WebPreferences):
-        * DumpRenderTree/chromium/TestRunner/src/WebPreferences.cpp:
-        (WebTestRunner::WebPreferences::reset):
-        (WebTestRunner::WebPreferences::applyTo):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::resetWebSettings):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::setAcceleratedCompositingForOverflowScrollEnabled):
-        (TestShell):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.virtual_test_suites):
-
-2012-12-13  Eric Seidel  <eric@webkit.org>
-
-        Use 'perf' to profile on linux instead of google-pprof by default
-        https://bugs.webkit.org/show_bug.cgi?id=104971
-
-        Reviewed by Dirk Pranke.
-
-        This makes Chromium Linux match Chromium Android and use the perf
-        tool by default.  Once https://bugs.webkit.org/show_bug.cgi?id=104891
-        lands it will be possible to use pprof again on Linux.
-
-        This is slightly more advanced than the AndroidPerf profiler as
-        instead of using a timeout on "perf record" I instead watch
-        for the termination of the target process and then control-C
-        the 'perf record' process.  This required me to add two new
-        methods to Executive, one to have a limited-time wait() and
-        the second to be able to send a control-C.  I chose to add
-        these to Executive to make them easier to mock/fix-for-win32
-        at a later time if needed.
-
-        * Scripts/webkitpy/common/system/executive.py:
-        (Executive.wait_limited):
-        (Executive.interrupt):
-        * Scripts/webkitpy/common/system/profiler.py:
-        (ProfilerFactory.create_profiler):
-        (Perf):
-        (Perf.__init__):
-        (Perf._perf_path):
-        (Perf.attach_to_pid):
-        (Perf._first_ten_lines_of_profile):
-        (Perf.profile_after_exit):
-
-2012-12-13  Julie Parent  <jparent@chromium.org>
-
-        Dashboard cleanup: remove usage of global g_builders.
-        https://bugs.webkit.org/show_bug.cgi?id=104941
-
-        Reviewed by Dirk Pranke.
-
-        The dashboards use a lot of global state, which makes hacking on them
-        complicated. This change removes the use of one such global: g_builders.
-        In most cases, we can just use currentBuilderGroup().builders instead,
-        which is now currentBuilders().
-        Surprisingly, the most changes were required to the unit tests, since
-        they were even bigger offenders of bad hygiene, relying on global state
-        set by other tests, randomly clobbering global variables in ways the
-        real code doesn't, etc.
-
-        * TestResultServer/static-dashboards/builders.js:
-        (BuilderGroup.prototype.setup):
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (.switch.return):
-        (htmlForTestTypeSwitcher):
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (generatePage):
-        (getAllTestsTrie):
-        (processTestRunsForAllBuilders):
-        (showPopupForBuild):
-        (generatePageForExpectationsUpdate):
-        (loadExpectationsLayoutTests):
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-        (resetGlobals):
-        (stubResultsByBuilder):
-        (test):
-        * TestResultServer/static-dashboards/loader.js:
-        (.):
-        * TestResultServer/static-dashboards/loader_unittests.js:
-
-2012-12-13  Eric Seidel  <eric@webkit.org>
-
-        Callers should not have to stringify args before calling Executive run_command/popen
-        https://bugs.webkit.org/show_bug.cgi?id=104975
-
-        Reviewed by Dirk Pranke.
-
-        One could argue that we should match the python call syntax here,
-        but I think it's a more friendly API if we automagically handle
-        stringification of args in run_command, etc.
-        This removes map(unicode, args) from several callsites.
-
-        When I first tried to land this change, I didn't realize that
-        Executive._command_for_printing depended on this behavior
-        having been applied to args in run_command.  The fix is to
-        call _stringify_args in both run_command and popen.
-        This is slightly redundant, but given how short args have to be
-        (due to shell limits), I don't think the double-encode check
-        matters in practice.
-
-        This is slightly complicated by the fact that apache_http_server.py
-        is the one caller in our codebase which uses shell=True.
-        shell=True is a well-documented trail-of-tears:
-        http://stackoverflow.com/questions/3172470/actual-meaning-of-shell-true-in-subprocess
-        but to support this legacy (windows-only) code (which I can't easily test)
-        I've added an if-hack to avoid stringifying the the popen(shell=True) case.
-
-        * Scripts/webkitpy/common/system/executive.py:
-        (Executive.run_command):
-        (Executive._stringify_args):
-        (Executive.popen):
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        (ExecutiveTest.test_auto_stringify_args):
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (attach_to_pid):
-
-2012-12-13  Adrienne Walker  <enne@chromium.org>
-
-        Unreviewed, rolling out r137645, r137646, and r137667.
-        http://trac.webkit.org/changeset/137645
-        http://trac.webkit.org/changeset/137646
-        http://trac.webkit.org/changeset/137667
-        https://bugs.webkit.org/show_bug.cgi?id=104911
-
-        Breaks some overflow layout tests
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.virtual_test_suites):
-
-2012-12-13  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, rolling out r137661.
-        http://trac.webkit.org/changeset/137661
-        https://bugs.webkit.org/show_bug.cgi?id=104891
-
-        broke unit tests, run-webkit-tests
-
-        * Scripts/webkitpy/common/system/executive.py:
-        (Executive._run_command_with_teed_output):
-        (Executive.run_command):
-        (Executive.popen):
-        * Scripts/webkitpy/common/system/profiler.py:
-        (ProfilerFactory.create_profiler):
-        (GooglePProf.profile_after_exit):
-        (IProfiler.attach_to_pid):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.__init__):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._parse_args):
-
-2012-12-13  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: move rundetails, summarize_results into test_run_results
-        https://bugs.webkit.org/show_bug.cgi?id=104963
-
-        Reviewed by Eric Seidel.
-
-        More cleanup; this the plain-old-data functions out of manager.py
-        and into test_run_results next to the other aggregate data structures.
-
-        Also this cleans up a bunch of test code and reduces duplication.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.run):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ManagerTest.test_look_for_new_crash_logs):
-        * Scripts/webkitpy/layout_tests/models/test_run_results.py:
-        (TestRunResults.__init__):
-        (TestRunResults.add):
-        (RunDetails):
-        (RunDetails.__init__):
-        (_interpret_test_failures):
-        (summarize_results):
-        * Scripts/webkitpy/layout_tests/models/test_run_results_unittest.py: Added.
-        (get_result):
-        (run_results):
-        (summarized_results):
-        (InterpretTestFailuresTest):
-        (InterpretTestFailuresTest.setUp):
-        (InterpretTestFailuresTest.test_interpret_test_failures):
-        (SummarizedResultsTest):
-        (SummarizedResultsTest.setUp):
-        (SummarizedResultsTest.test_no_svn_revision):
-        (SummarizedResultsTest.test_svn_revision):
-        (SummarizedResultsTest.test_summarized_results_wontfix):
-        * Scripts/webkitpy/layout_tests/views/buildbot_results_unittest.py:
-        (BuildBotPrinterTests.get_printer):
-        (BuildBotPrinterTests.test_print_unexpected_results):
-        (BuildBotPrinterTests.test_print_results):
-
-2012-12-13  Eric Seidel  <eric@webkit.org>
-
-        Make --profile output easier to understand for pprof on linux
-        https://bugs.webkit.org/show_bug.cgi?id=104957
-
-        Reviewed by Dirk Pranke.
-
-        pprof is kinda mysterious, so we print some information
-        on how to use it, and how to learn how to read the sample dump.
-        This is similar to what we've done for perf output for Chromium Android.
-
-        * Scripts/webkitpy/common/system/profiler.py:
-        (GooglePProf._pprof_path):
-        (GooglePProf.profile_after_exit):
-
-2012-12-13  Dirk Pranke  <dpranke@chromium.org>
-
-        Revert r137407 - it didn't actually work right.
-        https://bugs.webkit.org/show_bug.cgi?id=101976
-
-        Unreviewed, build fix.
-
-        Turns out that rebaselining was completely broken with this change :(
-        We're passing in a list of test names rather than the list of
-        failureInfo objects.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        (.):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
-        (.):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results_unittests.js:
-
-2012-12-13  Antoine Labour  <piman@chromium.org>
-
-        [chromium] Small fixes for WebPluginContainer::setWebLayer
-        https://bugs.webkit.org/show_bug.cgi?id=104953
-
-        Reviewed by James Robinson.
-
-        * DumpRenderTree/chromium/TestRunner/src/WebTestPlugin.cpp: Clean up
-        dangling pointers, force correct invalidation of the layer.
-
-2012-12-13  Eric Seidel  <eric@webkit.org>
-
-        Add --profiler=PROFILER option to run-perf-tests to allow specifying which profiler to use on platforms with many
-        https://bugs.webkit.org/show_bug.cgi?id=104891
-
-        Reviewed by Dirk Pranke.
-
-        I also implemented a very simple "Sample" Profiler using
-        Mac OS X's /usr/bin/sample command line tool.
-
-        I also moved the map(unicode, args) call into Executive.popen
-        so that all callers don't have to do it themselves.
-
-        The real reason for this abstraction is to make it easy
-        to support both perf and pprof on linux which seem to
-        be about equally popular among those I ask in the Chrome team.
-
-        * Scripts/webkitpy/common/system/executive.py:
-        (Executive.popen):
-        * Scripts/webkitpy/common/system/profiler.py:
-        (ProfilerFactory.create_profiler):
-        (ProfilerFactory):
-        (ProfilerFactory.available_profilers_by_name):
-        (ProfilerFactory.default_profiler_name):
-        (Sample):
-        (Sample.__init__):
-        (Sample.attach_to_pid):
-        (Sample.profile_after_exit):
-        (IProfiler.attach_to_pid):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.__init__):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._parse_args):
-
-2012-12-13  Dirk Pranke  <dpranke@chromium.org>
-
-        support -wk2 port names properly in webkitpy.layout_tests.port
-        https://bugs.webkit.org/show_bug.cgi?id=104761
-
-        Reviewed by Eric Seidel.
-
-        Our support for WK2 port names was inconsistent at best; this patch
-        modifies the code so that <port_name>-wk2 is supported for all ports that
-        have WK2 implementations and is equivalent to specifying <port_name>
-        and -2/--webkit-test-runner. In addition, this modifies
-        builders.all_port_names() to include the wk2 variants.
-
-        * Scripts/webkitpy/common/checkout/baselineoptimizer.py:
-        * Scripts/webkitpy/layout_tests/port/apple.py:
-        (ApplePort.determine_full_port_name):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.determine_full_port_name):
-        (Port.__init__):
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        * Scripts/webkitpy/layout_tests/port/driver_unittest.py:
-        (DriverTest.make_port):
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.default_baseline_search_path):
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        (WinPort.default_baseline_search_path):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (TestRebaselineExpectations.test_rebaseline_expectations):
-
-2012-12-13  Ian Vollick  <vollick@chromium.org>
-
-        [chromium] Add a virtual test suite for enabling opt-in to composited scrolling
-        https://bugs.webkit.org/show_bug.cgi?id=104911
-
-        Reviewed by Adrienne Walker.
-
-        Adds two virtual tests suites to run the tests in
-        compositing/overflow/ and scrollbars/ with the flag
-        --enable-accelerated-compositing-for-overflow-scroll
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.virtual_test_suites):
-
-2012-12-13  Dirk Pranke  <dpranke@chromium.org>
-
-        delete extraneous self.fail in mastercfg_unittest.py
-        https://bugs.webkit.org/show_bug.cgi?id=104940
-
-        Reviewed by Eric Seidel.
-
-        This was accidentally introduced in r137404.
-
-        * BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py:
-
-2012-12-13  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix a mis-named variable after r137621.
-        https://bugs.webkit.org/show_bug.cgi?id=104871
-
-        Unreviewed, build fix.
-
-        * Scripts/webkitpy/layout_tests/views/buildbot_results.py:
-        (BuildBotPrinter.print_results):
-        * Scripts/webkitpy/layout_tests/views/buildbot_results_unittest.py:
-
-2012-12-13  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: rename ResultSummary
-        https://bugs.webkit.org/show_bug.cgi?id=104871
-
-        Reviewed by Eric Seidel.
-
-        This patch changes the names of ResultSummary and related modules,
-        classes, and variables as a part of the larger clean up in bug 103824.
-
-        This change is basically a bunch of search and replaces:
-        - result_summary.py -> test_run_results.py
-        - class ResultSummary -> class TestRunResults
-        - "result_summary" or "rs" as a generic variable name -> "run_results",
-          when it doesn't matter (or we don't know) if this refers to the
-          initial pass over the tests or the retry pass.
-        - "result_summary" as a variable containing the results of the initial,
-          complete test run -> "initial_results"
-        - "retry_summary" as a variable containing the results of retried
-          results -> "retry_results"
-        - ResultSummary.results (the property) -> TestRunResults.results_by_name
-        - ResultSummary.failures (the property) -> TestRunResults.failures_by_name
-        - RunDetails.result_summary -> RunDetails.initial_results
-        - RunDetails.retry_summary -> RunDetails.retry_results
-
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner.py:
-        (LayoutTestRunner.__init__):
-        (LayoutTestRunner.run_tests):
-        (LayoutTestRunner._mark_interrupted_tests_as_skipped):
-        (LayoutTestRunner._interrupt_if_at_failure_limits):
-        (LayoutTestRunner._interrupt_if_at_failure_limits.interrupt_if_at_failure_limit):
-        (LayoutTestRunner._update_summary_with_result):
-        (LayoutTestRunner._handle_finished_test):
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner_unittest.py:
-        (FakePrinter.print_expected):
-        (LayoutTestRunnerTests.test_interrupt_if_at_failure_limits):
-        (LayoutTestRunnerTests.test_update_summary_with_result):
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (RunDetails.__init__):
-        (summarize_results):
-        (Manager.run):
-        (Manager._look_for_new_crash_logs):
-        (Manager._tests_to_retry):
-        (Manager._upload_json_files):
-        (Manager._stats_trie):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ManagerTest.test_look_for_new_crash_logs):
-        (SummarizeResultsTest):
-        (SummarizeResultsTest.get_run_results):
-        (SummarizeResultsTest.summarized_results):
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        (JSONLayoutResultsGenerator.__init__):
-        (JSONLayoutResultsGenerator._get_modifier_char):
-        (JSONLayoutResultsGenerator._insert_failure_summaries):
-        (JSONLayoutResultsGenerator._get_failure_summary_entry):
-        * Scripts/webkitpy/layout_tests/models/test_run_results.py: Renamed from Tools/Scripts/webkitpy/layout_tests/models/result_summary.py.
-        (TestRunResults):
-        (TestRunResults.__init__):
-        (TestRunResults.add):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (get_test_results):
-        (MainTest.test_basic):
-        * Scripts/webkitpy/layout_tests/views/buildbot_results.py:
-        (BuildBotPrinter.print_results):
-        (BuildBotPrinter.print_run_results):
-        (BuildBotPrinter._print_run_results_entry):
-        * Scripts/webkitpy/layout_tests/views/buildbot_results_unittest.py:
-        (BuildBotPrinterTests.get_run_results):
-        (BuildBotPrinterTests.test_print_unexpected_results.get_unexpected_results):
-        (BuildBotPrinterTests):
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (Printer.print_expected):
-        (Printer._print_expected_results_of_type):
-        (Printer.print_results):
-        (Printer._print_timing_statistics):
-        (Printer._print_worker_statistics):
-        (Printer._print_aggregate_test_statistics):
-        (Printer._print_individual_test_times):
-        (Printer._print_directory_timings):
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-
-2012-12-13  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [EFL] The WebKit2 bots are building and executing WebKit1 tests
-        https://bugs.webkit.org/show_bug.cgi?id=104690
-
-        Reviewed by Csaba Osztrogonác.
-
-        Pass --no-webkit1 option to the EFL WK2 bots when building. This
-        will disable WK1 API and thus, the WK1 API tests.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (CompileWebKit2Only):
-        (BuildAndTestFactory):
-        (BuildAndTestFactory.__init__):
-        (BuildAndTestWebKit2OnlyFactory):
-        Now bots using BuildAndTestWebKit2OnlyFactory (for instance only EFL) will
-        get --no-webkit1 as a parameter on the build-webkit script.
-        * Scripts/build-webkit:
-        Added support for -no-webkit1 for the Qt and EFL port.
-
-2012-12-13  Eric Seidel  <eric@webkit.org>
-
-        build-webkit --chromium-android forces Make even when update-webkit used --ninja
-        https://bugs.webkit.org/show_bug.cgi?id=104839
-
-        Reviewed by Tony Chang.
-
-        This was recommended by Peter as part of:
-        https://bugs.webkit.org/show_bug.cgi?id=104434#c4
-        Fixing this makes build-webkit --chromium-android work for the common (ninja) case.
-
-        * Scripts/webkitdirs.pm:
-        (buildChromium):
-
-2012-12-13  Julie Parent  <jparent@chromium.org>
-
-        Loader_unittests should reset state between runs.
-        https://bugs.webkit.org/show_bug.cgi?id=104862
-
-        Reviewed by Dirk Pranke.
-
-        The loader_unittests were not resetting state between runs, leaving
-        a lot of data behind in global objects that the dashboard and tests
-        rely on.  A handful were resetting just a few objects.  Use the common
-        resetGlobals() method instead.
-
-        * TestResultServer/static-dashboards/loader_unittests.js:
-
-2012-12-13  Andras Becsi  <andras.becsi@digia.com>
-
-        [Qt][WK2] Fix painting on Mac with retina display
-        https://bugs.webkit.org/show_bug.cgi?id=104574
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Remove setting the devicePixelRatio experimental property
-        since the value is now automatically picked up from Qt.
-
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-
-2012-12-13  Jussi Kukkonen  <jussi.kukkonen@intel.com>
-
-        [EFL][GTK] Don't call deprecated g_type_init when glib => 2.35
-        https://bugs.webkit.org/show_bug.cgi?id=103209
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        g_type_init() is deprecated from 2.35.0 onwards. Don't call it
-        in that case to avoid warnings and/or build failure.
-
-        * DumpRenderTree/gtk/ImageDiff.cpp:
-        (main):
-
-2012-12-13  Claudio Saavedra  <csaavedra@igalia.com>
-
-        [Tools] Add exception for gtk_style_context_get()
-        https://bugs.webkit.org/show_bug.cgi?id=104896
-
-        Reviewed by Martin Robinson.
-
-        Add new exception for gtk_style_context_get().
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (check_for_null): Add exception for gtk_style_context_get().
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (WebKitStyleTest.test_null_false_zero): Add a unit
-        test for the new exception.
-
-2012-12-13  Joaquim Rocha  <jrocha@igalia.com>
-
-        REGRESSION (r137432): The /webkit2/WebKitCookieManager/accept-policy unit test is failing
-        https://bugs.webkit.org/show_bug.cgi?id=104790
-
-        Reviewed by Carlos Garcia Campos.
-
-        Unskip the GTK accept policy test.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner):
-
-2012-12-13  Xingnan Wang  <xingnan.wang@intel.com>
-
-        Unreviewed. Adding myself to committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-12-12  Roger Fong  <roger_fong@apple.com>
-
-        Unreviewed. Fix typo in NRWT.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.is_reference_html_file):
-
-2012-12-12  Roger Fong  <roger_fong@apple.com>
-
-        Fix detection of ref test files in old and new run webkit tests.
-        https://bugs.webkit.org/show_bug.cgi?id=104850.
-
-        Reviewed by Timothy Horton.
-
-        * Scripts/old-run-webkit-tests:
-        (isUsedInReftest): 
-        Add notref and ref prefix and suffix cases to isUsedinReftest.
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port):
-        (Port.is_reference_html_file): 
-        Typo in NRWT.
-
-2012-12-12  Dirk Pranke  <dpranke@chromium.org>
-
-        rework ChromiumAndroidDriver.start() et. al to avoid funky layering
-        https://bugs.webkit.org/show_bug.cgi?id=104856
-
-        Reviewed by Eric Seidel.
-
-        r137523 / bug 10357 introduced some back-and-forth hopping during
-        driver.start() in the chromium android port. This patch cleans it
-        up a bit.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidDriver.__init__):
-        (ChromiumAndroidDriver._start_once):
-        * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.start):
-        (Driver._start):
-
-2012-12-12  Eric Seidel  <eric@webkit.org>
-
-        Add support for run-perf-tests --chromium-android --profile
-        https://bugs.webkit.org/show_bug.cgi?id=103587
-
-        Reviewed by Dirk Pranke.
-
-        This makes it possible to profile PerformanceTests on an Android device
-        using run-perf-tests --chromium-android --profile.
-        CPU profiling on Android is sadly non-trivial, but this goes a long
-        ways towards making it more accessible to non-Android developers.
-
-        Although this script requires your device to be flashed with a
-        userdebug build (an annoyingly non-trivial endeavor for external contributors)
-        it endeavors to detect and explain the common errors encountered
-        while trying to setup a device for perf-based profiling.
-
-        * Scripts/webkitpy/common/system/profiler.py:
-        (GooglePProf.profile_after_exit): Discovered that pprof will just hang if passed a missing file.
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (AndroidPerf):
-        (AndroidPerf.__init__):
-        (AndroidPerf.check_configuration):
-        (AndroidPerf.print_setup_instructions):
-        (_file_exists_on_device):
-        (_run_adb_command):
-        (attach_to_pid):
-        (_perf_version_string):
-        (_find_perfhost_binary):
-        (_perfhost_path):
-        (_first_ten_lines_of_profile):
-        (profile_after_exit):
-        (ChromiumAndroidDriver.__init__):
-        (ChromiumAndroidDriver.__init__.methods):
-        (ChromiumAndroidDriver._find_or_create_symfs):
-        (ChromiumAndroidDriver._start_once):
-        (ChromiumAndroidDriver):
-        (ChromiumAndroidDriver._run_post_start_tasks):
-        (ChromiumAndroidDriver._pid_from_android_ps_output):
-        (ChromiumAndroidDriver._pid_on_target):
-        * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:
-        (ChromiumAndroidDriverTest.test_pid_from_android_ps_output):
-        (AndroidPerfTest):
-        (AndroidPerfTest.test_perf_output_regexp):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver._setup_environ_for_driver):
-        (Driver):
-        (Driver._start):
-        (Driver._run_post_start_tasks):
-        (Driver._pid_on_target):
-
-2012-12-12  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: remove deprecated ORWT compatibility command line flags
-        https://bugs.webkit.org/show_bug.cgi?id=104301
-
-        Reviewed by Eric Seidel.
-
-        The command line flags for --noshow-results, --[no-]launch-safari,
-        and --use-remote-links-to-tests were for compatibility with
-        old-run-webkit-tests, but the compatibility is not needed any more
-        since NRWT is basically default and the scripts that passed the
-        old flags have been updated.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (_set_up_derived_options):
-        (parse_args):
-
-2012-12-12  John Griggs  <jgriggs@rim.com>
-
-        2012-12-12  John Griggs  <jgriggs@rim.com>
-
-        [BlackBerry] Update Media Controls
-        https://bugs.webkit.org/show_bug.cgi?id=104443
-        https://przilla.ott.qnx.com/bugzilla/show_bug.cgi?id=204748
-
-        Update Media Controls for BlackBerry platform to allow audio, embedded video and fullscreen video controls to be positioned and styled differently.
-
-        Reviewed by Rob Buis.
-
-        BlackBerry-specific update to Media Controls - No new tests required.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-12-12  Justin Novosad  <junov@google.com>
-
-        Adding myself to SkiaGraphics watchlist
-
-        Unreviewed
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-12-12  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Add authentication support to DRT and fix exposed issues in the libsoup backend
-        https://bugs.webkit.org/show_bug.cgi?id=104285
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Add support to DumpRenderTree for running authentication tests. Since the DRT
-        expects an authentication callback, we add one to DRTSupport to avoid #ifdefs
-        in platform-independent code for GTK+.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues): Reset the authentication password and username.
-        (authenticationCallback): Added.
-        (createWebView): Attach the authentiation callback during startup.
-        * DumpRenderTree/gtk/TestRunnerGtk.cpp:
-        (soupURIToKURL): soup_uri_to_string does not preserve passwords embedded
-        in the URL so we add a somewhat messy method of re-adding them when they exist.
-        It would be nice to use soupURIToKURL here, but it seems we cannot use KURL without
-        pulling in lots of WebCore code so we use string search and replace.
-        (TestRunner::queueLoad): Use the new helper.
-
-2012-12-12  Dirk Pranke  <dpranke@chromium.org>
-
-        garden-o-matic should prefer efl/ over efl-wk1/ and efl-wk2/ when rebaselining
-        https://bugs.webkit.org/show_bug.cgi?id=102389
-
-        Reviewed by Tony Chang.
-
-        The code wasn't aware of both the efl-wk1 and efl-wk2 variants,
-        because all_port_names() by itself doesn't tell you about the
-        variants. Work around this for now, and filed bug 104761 to
-        address the underlying problem.
-
-        * Scripts/webkitpy/common/checkout/baselineoptimizer.py:
-        * Scripts/webkitpy/common/checkout/baselineoptimizer_unittest.py:
-        (BaselineOptimizerTest.test_efl):
-
-2012-12-12  Krzysztof Czech  <k.czech@samsung.com>
-
-        [EFL] Possibility to turn off accessibility feature for WebKit-EFL.
-        https://bugs.webkit.org/show_bug.cgi?id=103036
-
-        Reviewed by Laszlo Gombos.
-
-        Guard dependencies for accessibility (ATK), so that they can be turned off.
-
-        * WebKitTestRunner/InjectedBundle/AccessibilityUIElement.h:
-        (AccessibilityUIElement):
-        * WebKitTestRunner/PlatformEfl.cmake:
-
-2012-12-12  Simon Fraser  <simon.fraser@apple.com>
-
-        Add some entries in the watchlist, and register me for them.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-12-12  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Web Inspector: Native Memory Instrumentation: remove fake root MemoryObjectInfo.
-        https://bugs.webkit.org/show_bug.cgi?id=104796
-
-        Reviewed by Yury Semikhatsky.
-
-        It was not a good idea to introduce a fake root MemoryObjectInfo.
-        It makes a problem when we visit an object without its own MemoryObjectType.
-
-        Example: RenderBox has a global pointer to a hash map.
-        HashMap doesn't have its own object type because it is a generic container.
-        It will inherit object type from the fake root memory object info.
-        The same could happen for another container in another class with other MemoryObjectType.
-
-        This fact forces me to create custom process method for root objects
-        because they need to have their own MemoryObjectInfo with customisable memory object type.
-
-        * TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp:
-
-        Drive by fix: InstrumentedPointer* was replaced with Wrapper* because actually it is using
-        for instrumented and not instrumented object classes.
-
-2012-12-12  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] Remove the last of unnecessary configuration options in configure.ac
-        https://bugs.webkit.org/show_bug.cgi?id=104793
-
-        Reviewed by Martin Robinson.
-
-        Removing the filters and indexed database features from the list of features
-        being configurable through the configure script. This is not the case anymore
-        as the corresponding configuration options are being removed.
-
-        * Scripts/webkitdirs.pm:
-        (buildAutotoolsProject):
-
-2012-12-12  Mario Sanchez Prada  <mario@webkit.org>
-
-        [GTK][WK2] New API to detect display/execution of insecure content
-        https://bugs.webkit.org/show_bug.cgi?id=104578
-
-        Reviewed by Martin Robinson.
-
-        Add coding style exception for 'readability/enum_casing' in GTK.
-
-        The GTK+ API use upper case, underscore separated, words in
-        certain types of enums (e.g. signals, properties).
-
-        * Scripts/webkitpy/style/checker.py: Added exception, both for
-        WebKitGTK+ and WebKit2GTK+.
-
-2012-12-12  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] Fix build on chromium-win
-
-        Unreviewed build-fix.
-
-        MSVS indeed doesn't have snprintf, adding wtf/StringExtras.h include
-        to work around that.
-
-        * DumpRenderTree/chromium/TestRunner/src/WebTestPlugin.cpp:
-
-2012-12-12  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Fix build on Mac
-
-        Reviewed by Csaba Osztrogonác.
-
-        On Mac OS X we have sqlite as a system library available.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-12-12  Zan Dobersek  <zandobersek@gmail.com>
-
-        Unreviewed GTK gardening.
-
-        Skipping another unit test that regressed in r137432.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner):
-
-2012-12-12  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Fix linkage against SQLite
-        https://bugs.webkit.org/show_bug.cgi?id=104781
-
-        Reviewed by Csaba Osztrogonác.
-
-        Detect SQLite either through pkg-config, from the SQLITE3SRCDIR
-        environment variable or from qtbase via a qt5.git build. Bail out early
-        with an error message if neither option applies.
-
-        This removes the usage of $$QT.core.sources and the dependency on Qt's
-        system-sqlite configure setting. We should always favour a system
-        library over a copy in Qt.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-12-12  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: Change the data channel descriptor pattern to a handler pattern
-        https://bugs.webkit.org/show_bug.cgi?id=104543
-
-        Reviewed by Kent Tamura.
-
-        Adding mocks to be able to test this refactoring.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/MockWebRTCDataChannelHandler.cpp: Added.
-        (DataChannelReadyStateTask):
-        (DataChannelReadyStateTask::DataChannelReadyStateTask):
-        (MockWebRTCDataChannelHandler::MockWebRTCDataChannelHandler):
-        (MockWebRTCDataChannelHandler::setClient):
-        (MockWebRTCDataChannelHandler::bufferedAmount):
-        (MockWebRTCDataChannelHandler::sendStringData):
-        (MockWebRTCDataChannelHandler::sendRawData):
-        (MockWebRTCDataChannelHandler::close):
-        * DumpRenderTree/chromium/MockWebRTCDataChannelHandler.h: Added.
-        (MockWebRTCDataChannelHandler):
-        (MockWebRTCDataChannelHandler::taskList):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (RTCPeerConnectionReadyStateTask::RTCPeerConnectionReadyStateTask):
-        (RemoteDataChannelTask::RemoteDataChannelTask):
-        (MockWebRTCPeerConnectionHandler::createDataChannel):
-        (MockWebRTCPeerConnectionHandler::stop):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.h:
-        (MockWebRTCPeerConnectionHandler):
-
-2012-12-12  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] WebTestPlugin must not depend on WTF::String
-        https://bugs.webkit.org/show_bug.cgi?id=104783
-
-        Reviewed by Kent Tamura.
-
-        In a component build, we can't access the WTF that is part of the
-        WebKit component. Accessing WTF instead will pull in a separate copy
-        into the TestRunner library. Instead of WTF::String::number use
-        snprintf() to print numbers.
-
-        * DumpRenderTree/chromium/TestRunner/src/WebTestPlugin.cpp:
-
-2012-12-12  Jocelyn Turcotte  <jocelyn.turcotte@digia.com>
-
-        [Qt] Do not automatically enable force_static_libs_as_shared when using debug_and_release
-        https://bugs.webkit.org/show_bug.cgi?id=104562
-
-        Reviewed by Tor Arne Vestbø.
-
-        force_static_libs_as_shared creates issues on Mac if QtWebKit is built as a framework.
-        QtWebProcess, for example, will link to the framework's release library and will rely
-        on DYLD_IMAGE_SUFFIX to switch to the debug build. Since QtWebProcess will also links
-        directly to the debug build of WebCore, and that QtWebKit release will link in the
-        release build of WebCore, both the debug and release version will be loaded.
-
-        To fix this properly we should make sure that applications always link to the release
-        build of dependent libraries by bypassing resolveFinalLibraryName.
-        Disable it for now as force_static_libs_as_shared is mainly for development while
-        debug_and_release is mainly for production builds.
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2012-12-12  Zan Dobersek  <zandobersek@gmail.com>
-
-        Unreviewed GTK gardening of the unit tests.
-
-        Skip two unit tests that regressed during the hackfest.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner):
-
-2012-12-11  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Add Koji Ishii to the list of contributors.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-12-11  Dominic Mazzoni  <dmazzoni@google.com>
-
-        AX: Make isActionSupported cross-platform.
-        https://bugs.webkit.org/show_bug.cgi?id=104681
-
-        Reviewed by Chris Fleizach.
-
-        Replace isActionSupported, which takes a platform-specific
-        argument, with three cross-platform methods.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (isPressActionSupportedCallback):
-        (isIncrementActionSupportedCallback):
-        (isDecrementActionSupportedCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        (AccessibilityUIElement):
-        * DumpRenderTree/blackberry/AccessibilityUIElementBlackBerry.cpp:
-        (AccessibilityUIElement::isPressActionSupported):
-        (AccessibilityUIElement::isIncrementActionSupported):
-        (AccessibilityUIElement::isDecrementActionSupported):
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.cpp:
-        (WebTestRunner::AccessibilityUIElement::AccessibilityUIElement):
-        (WebTestRunner::AccessibilityUIElement::isPressActionSupportedCallback):
-        (WebTestRunner):
-        (WebTestRunner::AccessibilityUIElement::isIncrementActionSupportedCallback):
-        (WebTestRunner::AccessibilityUIElement::isDecrementActionSupportedCallback):
-        (WebTestRunner::AccessibilityUIElement::incrementCallback):
-        (WebTestRunner::AccessibilityUIElement::decrementCallback):
-        (WebTestRunner::AccessibilityUIElement::pressCallback):
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.h:
-        (AccessibilityUIElement):
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::isPressActionSupported):
-        (AccessibilityUIElement::isIncrementActionSupported):
-        (AccessibilityUIElement::isDecrementActionSupported):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::isPressActionSupported):
-        (AccessibilityUIElement::isIncrementActionSupported):
-        (AccessibilityUIElement::isDecrementActionSupported):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::isPressActionSupported):
-        (AccessibilityUIElement::isIncrementActionSupported):
-        (AccessibilityUIElement::isDecrementActionSupported):
-        * WebKitTestRunner/InjectedBundle/AccessibilityUIElement.cpp:
-        (WTR::AccessibilityUIElement::isPressActionSupported):
-        (WTR::AccessibilityUIElement::isIncrementActionSupported):
-        (WTR::AccessibilityUIElement::isDecrementActionSupported):
-        * WebKitTestRunner/InjectedBundle/AccessibilityUIElement.h:
-        (AccessibilityUIElement):
-        * WebKitTestRunner/InjectedBundle/Bindings/AccessibilityUIElement.idl:
-        * WebKitTestRunner/InjectedBundle/mac/AccessibilityUIElementMac.mm:
-        (WTR::AccessibilityUIElement::isPressActionSupported):
-        (WTR):
-        (WTR::AccessibilityUIElement::isIncrementActionSupported):
-        (WTR::AccessibilityUIElement::isDecrementActionSupported):
-
-2012-12-11  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: remove result_summary.total_tests_by_expectation
-        https://bugs.webkit.org/show_bug.cgi?id=104756
-
-        Reviewed by Eric Seidel.
-
-        This field wasn't being used by anything.
-
-        * Scripts/webkitpy/layout_tests/models/result_summary.py:
-        (ResultSummary.__init__):
-
-2012-12-11  Dirk Pranke  <dpranke@chromium.org>
-
-        garden-o-matic doesn't know about reftests
-        https://bugs.webkit.org/show_bug.cgi?id=101976
-
-        Reviewed by Ojan Vafai.
-
-        This is a first attempt at fixing this, sort of a "stop-the-bleeding"
-        fix. We will now look at the list of tests we're asked to rebaseline,
-        and log which ones are reftests into the status area, and rebaseline
-        the rest.
-
-        Longer-term, we should display feedback in the results area based on
-        which tests we're looking at. If the test list contains no reftests,
-        we should behave as today; if the list is all reftest, we should
-        probably disable the button, and if the list is a mix, we should
-        probably display an alert next to the button or something. It would
-        also be nice to annotate which tests were reftests, maybe with a
-        "(reftest)" next to the test name or something.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        (.):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
-        (.):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results_unittests.js:
-
-2012-12-11  Dirk Pranke  <dpranke@chromium.org>
-
-        REGRESSION(r133380): new tests without expected file reported as failing tests on the bots
-        https://bugs.webkit.org/show_bug.cgi?id=101469
-
-        Reviewed by Ryosuke Niwa.
-
-        Fix parsing of NRWT's output to identify missing results separately
-        from other regressions.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (RunWebKitTests._parseNewRunWebKitTestsOutput):
-        * BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py:
-        (MasterCfgTest.test_nrwt_leaks_parsing):
-        (test_nrwt_missing_results):
-
-2012-12-11  Dirk Pranke  <dpranke@chromium.org>
-
-        buildbot: change run-webkit-tests --no-launch-safari to --no-show-results
-        https://bugs.webkit.org/show_bug.cgi?id=104299
-
-        Reviewed by Ryosuke Niwa.
-
-        Since --no-show-results is the more generically-named flag that NRWT uses.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (RunWebKitTests):
-
-2012-12-11  Dirk Pranke  <dpranke@chromium.org>
-
-        remove --use-remote-links-to-tests from buildbot configs (except apple win)
-        https://bugs.webkit.org/show_bug.cgi?id=104291
-
-        Reviewed by Csaba Osztrogonác.
-
-        This flag is ignored by NRWT and was just implemented for compatibility.
-        ORWT still uses it, though.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (RunWebKitTests):
-        (RunWebKitTests.start):
-
-2012-12-11  Anders Carlsson  <andersca@apple.com>
-
-        ASSERT running platform/mac/plugins/convert-point.html on the WK2 bots
-        https://bugs.webkit.org/show_bug.cgi?id=104735
-
-        Reviewed by Jon Honeycutt.
-
-        Do the testing from within NPP_New instead of NPN_SetWindow. Plug-ins aren't supposed to do any real work inside NPP_SetWindow,
-        and doing so will more easily trigger the assertion failure. Ideally we should get rid of the initial sync painting pass, but this
-        gets the test passing again!
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/mac/ConvertPoint.cpp:
-        (ConvertPoint::NPP_New):
-
-2012-12-11  Julie Parent  <jparent@chromium.org>
-
-        Dashboard unit tests should not make xhrs.
-        https://bugs.webkit.org/show_bug.cgi?id=104598
-
-        Reviewed by Dirk Pranke.
-
-        The unit test were requesting 25 files that they did not use.
-        Stub out loader.request to avoid making the xhrs.
-        Result: order of magnitude speed improvement in test run time (from ~1600ms to 160ms on my machine).
-        
-        * TestResultServer/static-dashboards/run-embedded-unittests.html:
-        * TestResultServer/static-dashboards/run-unittests.html:
-
-2012-12-11  Filip Pizlo  <fpizlo@apple.com>
-
-        Profiler should show bytecode dumps as they would have been visible to the JITs, including the profiling data that the JITs would see
-        https://bugs.webkit.org/show_bug.cgi?id=104647
-
-        Reviewed by Oliver Hunt.
-
-        Added a "profiling" (or "p") command to show the profiling data that the JITs saw
-        for each JIT compilation of a code block.
-        
-        Also added instruction counts in the "full" display and made the "full" display the
-        default thing you see.
-
-        * Scripts/display-profiler-output:
-
-2012-12-11  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, rolling out r137371.
-        http://trac.webkit.org/changeset/137371
-        https://bugs.webkit.org/show_bug.cgi?id=104434
-
-        Various scripts are not ready for out/ as the build directory,
-        this can't work as written.
-
-        * Scripts/update-webkit:
-        * Scripts/webkitdirs.pm:
-        (buildChromium):
-
-2012-12-11  Zan Dobersek  <zandobersek@gmail.com>
-
-        Unreviewed GTK build functionality fix.
-
-        Turns out the CSP feature was not enabled, that's why all the tests were failing.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-12-11  Eric Seidel  <eric@webkit.org>
-
-        Make Ninja the default build system for build-webkit --chromium
-        https://bugs.webkit.org/show_bug.cgi?id=104434
-
-        Reviewed by Daniel Bates.
-
-        As far as I can tell, most Chromium developers are now using Ninja
-        as their default build system instead of the native Xcode/Visual Studio/Make.
-        This change makes Ninja the default for developers as well as all Chromium webkit bots.
-
-        Developers can pass --no-ninja to get the platform-native buildsystem instead of Ninja.
-        It's possible we may wish to make this a per-platform default, and have
-        Ninja only be the default for Mac/Linux.
-
-        There was a thread on webkit-dev discussing this change:
-        http://lists.webkit.org/pipermail/webkit-dev/2012-December/023113.html
-
-        * Scripts/update-webkit:
-
-2012-12-11  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: record the order and run times of all of the tests in a single file
-        https://bugs.webkit.org/show_bug.cgi?id=104184
-
-        Reviewed by Ryosuke Niwa.
-
-        Replace the N tests_run*.txt files that we output into
-        layout-test-results with a single packed JSON trie that contains
-        the test ordering and run statistics. This can eventually be uploaded
-        to the TestResultsServer to replace the times.json file we currently
-        upload as well, and will let us replay the results of a previous
-        run fairly deterministically.
-
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner.py:
-        (Worker.__init__):
-        (Worker.start):
-        (Worker._run_test):
-        (Worker.stop):
-        (Worker._clean_up_after_test):
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._upload_json_files):
-        (Manager._copy_results_html_file):
-        (Manager):
-        (Manager._stats_trie):
-        (Manager._stats_trie._worker_number):
-        * Scripts/webkitpy/layout_tests/models/test_results.py:
-        (TestResult.__init__):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_missing_and_unexpected_results):
-        (MainTest.test_retrying_and_flaky_tests):
-        (EndToEndTest.test_end_to_end):
-        (EndToEndTest.test_reftest_with_two_notrefs):
-        (RebaselineTest.test_reset_results):
-        (RebaselineTest.test_missing_results):
-        (RebaselineTest.test_new_baseline):
-
-2012-12-11  Dirk Pranke  <dpranke@chromium.org>
-
-        check-webkit-style complaining about TestExpectations lines a patch didn't modify
-        https://bugs.webkit.org/show_bug.cgi?id=104687
-
-        Reviewed by Ojan Vafai.
-
-        Way back in bug 60466 / r86165, we changed the style checker
-        for TestExpectations to ensure that the entire file linted, not
-        just the lines modified by a patch, in order to ensure that a
-        new line didn't cause errors elsewhere in the file (e.g., by
-        introducing duplicate lines). At the time, errors in the
-        expectations files were fatal and we didn't have a separate step
-        on the bots that would lint the files to ensure things were still
-        okay, so this was probably the right thing to do, but it could
-        cause some patches to fail the style check even though the patches
-        themselves were fine.
-
-        However, now errors aren't always fatal, and we have a separate build
-        step to lint the files. So, we should probably not punish the
-        patches and the style checker should filter out "unrelated" errors.
-
-        In theory we should be comparing the output pre- and post-patch
-        to filter out pre-existing errors, but I don't think the style
-        checker has that ability.
-
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-        (TestExpectationsChecker.__init__):
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-        (TestExpectationsTestCase.assert_lines_lint):
-
-2012-12-11  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt isn't rejecting unrecognized expectations
-        https://bugs.webkit.org/show_bug.cgi?id=104701
-
-        Reviewed by Ojan Vafai.
-
-        NRWT is silently ignoring unrecognized expectations like "Text"
-        and "Audio" (largely because I haven't fully removed support for
-        the old syntax and keywords and restructured the code to do the
-        proper checking). Temporarily change the tokenizer to reject
-        unrecognized expectations until I can make those changes.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectationParser._tokenize_line):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (ExpectationSyntaxTests.test_unknown_expectation):
-        (TestExpectationSerializationTests.disabled_test_string_whitespace_stripping):
-
-2012-12-11  Martin Robinson  <mrobinson@igalia.com>
-
-        Fix a typo in my previous commit that is causing test failures.
-
-        Reviewed by Gustavo Noronha Silva.
-
-        There was an extra bit of statement appended after the end of a conditional. Somehow
-        this compiled and caused test failures.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (continuousMouseScrollByCallback):
-
-2012-12-11  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Spurious stderr output from the event sender
-        https://bugs.webkit.org/show_bug.cgi?id=104678
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Eliminate some spurious stderr output from the EventSender by using an early return
-        instead of an assertion that prints a warning to the console.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (continuousMouseScrollByCallback): We don't support continuous scroll events that
-        move by page, but we should just fail silently instead of printing an error.
-
-2012-12-11  Joone Hur  <joone.hur@intel.com>
-
-        [GTK] Add GraphicsLayerActor
-        https://bugs.webkit.org/show_bug.cgi?id=91940
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Add GraphicsLayerActor to the list of classes that contain GObjects
-        in the style checker script so that it does not complain about GObject
-        coding style.
-
-        * Scripts/webkitpy/style/checker.py:
-
-2012-12-11  Oswald Buddenhagen  <oswald.buddenhagen@digia.com>
-
-        [Qt] remove hack which avoids unused .obj directories all over the place
-
-        Reviewed by Simon Hausmann.
-
-        The feature is subject to upstreaming in Qt itself in
-        https://codereview.qt-project.org/#change,42011
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2012-12-11  Oswald Buddenhagen  <oswald.buddenhagen@digia.com>
-
-        [Qt] move SQLITE3SRCDIR assignment to only use site
-
-        Reviewed by Simon Hausmann.
-
-        Target.pri includes WebCore.pri the almost first thing, so that is
-        covered as well.
-
-        * qmake/mkspecs/features/default_pre.prf:
-
-2012-12-11  Oswald Buddenhagen  <oswald.buddenhagen@digia.com>
-
-        [Qt] delete dead include paths
-
-        Reviewed by Simon Hausmann.
-
-        followup to https://bugs.webkit.org/show_bug.cgi?id=93446
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-
-2012-12-11  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Implement some missing FrameLoaderClient message in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=104444
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Install a FrameLoadEvent callback that prints the necessary output for some
-        missing FrameLoader events.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (frameLoadEventCallback): Added.
-        (createWebView): Install the FrameLoader event callback.
-
-2012-12-11  Oswald Buddenhagen  <oswald.buddenhagen@digia.com>
-
-        [Qt] change setup of QMAKE_MOC
-
-        Reviewed by Simon Hausmann.
-
-        don't load(moc) explicitly - turns out that this breaks
-        debug_and_release builds (the feature does not like being loaded before
-        default_post has been loaded).
-        so instead just do a minimal call to find the moc executable.
-
-        as it's in fact only two files which need it, so de-centralize this call
-        for the sake of saving some cpu cycles spent in qmake.
-
-        * WebKitTestRunner/InjectedBundle/DerivedSources.pri:
-        * qmake/mkspecs/features/default_pre.prf:
-
-2012-12-11  Jocelyn Turcotte  <jocelyn.turcotte@digia.com>
-
-        [Qt] Fix the linking of debug builds on Mac with force_static_libs_as_shared
-        https://bugs.webkit.org/show_bug.cgi?id=104559
-
-        Reviewed by Tor Arne Vestbø.
-
-        "contains(libraries, $$TARGET): return(true)" fails for intermediate libraries since
-        at this point TARGET may contain the "_debug" suffix.
-
-        Fix it by moving the TARGET adjustment later in the file.
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2012-12-11  Martin Robinson  <mrobinson@igalia.com>
-
-        [Coverity] [GTK] Remove some redundant null checks in DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=104570
-
-        Reviewed by Daniel Bates.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (descriptionSuitableForTestResult): Remove a redundant null check.
-
-2012-12-11  Alberto Garcia  <agarcia@igalia.com>
-
-        Remove unused GErrors
-        https://bugs.webkit.org/show_bug.cgi?id=104657
-
-        Reviewed by Martin Robinson.
-
-        Replace unused GErrors with null pointers.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (initializeFonts):
-        * DumpRenderTree/gtk/EditingCallbacks.cpp:
-        (dumpRange):
-        * WebKitTestRunner/InjectedBundle/gtk/ActivateFontsGtk.cpp:
-        (WTR::inititializeFontConfigSetting):
-
-2012-12-11  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Bump the jhbuild libsoup version to fix an authentication issue
-        https://bugs.webkit.org/show_bug.cgi?id=104448
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Bump the libsoup version to one from the git repository. This requires updating
-        GLib as well which in turn requires adjusting the CFLAGS we pass when compiling
-        the scanobj step of the gtkdoc generation.
-
-        * gtk/generate-gtkdoc:
-        * gtk/jhbuild.modules:
-
-2012-12-11  Zan Dobersek  <zandobersek@gmail.com>
-
-        Unreviewed functionality fix for the GTK port.
-
-        Enable the MicroData feature support for the GTK port in the FeatureList module.
-        This feature listing now again affects which features are enabled and which disabled
-        on the development builds of the GTK port.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-12-11  Jinwoo Song  <jinwoo7.song@samsung.com>
-
-        [EFL][WK2] MiniBrowser is not built
-        https://bugs.webkit.org/show_bug.cgi?id=104629
-
-        Reviewed by Gyuyoung Kim.
-
-        As we are finding an elementary package in Tools/MiniBrowser/efl/CMakeList.txt since r137203,
-        we need to check if the package is found in the same place not in the Tools/CMakeList.txt.
-
-        * CMakeLists.txt:
-        * MiniBrowser/efl/CMakeLists.txt:
-
-2012-12-11  Xabier Rodriguez Calvar  <calvaris@igalia.com>
-
-        [GTK][jhbuild] Switch to GStreamer 1.0 build
-        https://bugs.webkit.org/show_bug.cgi?id=91727
-
-        Reviewed by Philippe Normand.
-
-        Switch build-webkit --gtk to GStreamer 1.0 support and build the
-        necessary GStreamer git modules from JHBuild.
-
-        * gtk/jhbuild.modules: Added GStreamer 1.0.3 build support.
-
-2012-12-11  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] Feature enabling/disabling should be possible through build-webkit
-        https://bugs.webkit.org/show_bug.cgi?id=99271
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Refactor the code in webkitdirs.pm that builds an autotools project to generate
-        autogen.sh arguments, make arguments and installation prefix from the passed-in
-        parameters rather than generating all of that in build-webkit. The autogen.sh
-        arguments now contain only enable/disable flags for options that are actually
-        configurable in configure.ac, the flag value actually reflecting whether the feature
-        is enabled or disabled in the feature list.
-
-        Other features are overridable through modifying the GNUmakefile.features.am file.
-        All these features are now stored in the build directory and upon change trigger
-        a rerun of the autogen.sh script, pretty much like the autogen.sh arguments do.
-
-        The override-feature-defines script is called by autogen.sh, before GNUmakefile.in is
-        generated when calling autoreconf. Its task is to copy the GNUmakefile.features.am.in
-        into GNUmakefile.features.am and modify it if there's a text file in the build directory
-        that contains all the feature defines the build-webkit script has written. If the build
-        is not done through build-webkit (and there's no file in build directory listing all the
-        feature defines) the script does not advance further from copying.
-
-        This approach is taken to overcome the rigidness of the automake system as it's impossible
-        to effectively generate and use GNUmakefile.features.am or even GNUmakefile.features file
-        after the autoreconf command execution in autogen.sh.
-
-        * Scripts/build-jsc:
-        (buildMyProject):
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-        (runAutogenForAutotoolsProjectIfNecessary):
-        (mustReRunAutogen):
-        (buildAutotoolsProject):
-        (buildGtkProject):
-        * Scripts/webkitperl/FeatureList.pm: Update the features that are currently enabled in
-        Source/WebCore/GNUmakefile.features.am.in but aren't in the feature list.
-        * Scripts/webkitpy/style/checker.py: Source/WebCore/GNUmakefile.features.am.in is recognized
-        as a text file and tabulation errors are reported. Skip the file to suppress them.
-        * gtk/override-feature-defines: Added.
-        (copy_feature_defines_makefile):
-        (adjust_feature_defines_makefile):
-        (adjust_feature_defines_makefile.override_feature_define):
-        (override_feature_defines):
-
-2012-12-10  Yury Semikhatsky  <yurys@chromium.org>
-
-        Memory instrumentation: make sure each edge is reported only once
-        https://bugs.webkit.org/show_bug.cgi?id=104630
-
-        Reviewed by Pavel Feldman.
-
-        Test that outgoing edges are reported only once if we come to the same
-        object twice: first by an address of a base class and then by a real address
-        of the object.
-
-        * TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp:
-
-2012-12-10  Dana Jansens  <danakj@chromium.org>
-
-        [chromium] Remove WebCompositorOutputSurface implementations from DRT
-        https://bugs.webkit.org/show_bug.cgi?id=104046
-
-        Reviewed by Darin Fisher.
-
-        The classes are now provided through WebCompositorSupport.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createOutputSurface):
-        * DumpRenderTree/chromium/WebViewHostOutputSurface.cpp: Removed.
-        * DumpRenderTree/chromium/WebViewHostOutputSurface.h: Removed.
-        * DumpRenderTree/chromium/WebViewHostSoftwareOutputDevice.cpp: Removed.
-        * DumpRenderTree/chromium/WebViewHostSoftwareOutputDevice.h: Removed.
-
-2012-12-10  Dirk Pranke  <dpranke@chromium.org>
-
-        change --no-launch-safari to --no-show-results in scripts
-        https://bugs.webkit.org/show_bug.cgi?id=104298
-
-        Reviewed by Eric Seidel.
-
-        Since Safari only exists on the Apple ports, NRWT calls the
-        command line flag --[no-]show-results instead. This updates
-        the scripts to use the new flag (but not the buildbot config yet).
-
-        * Scripts/generate-coverage-data:
-        * Scripts/webkit-tools-completion.sh:
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        (RunTests.run):
-        * Scripts/webkitpy/tool/steps/runtests_unittest.py:
-
-2012-12-10  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: fix mapping of AUDIO onto FAIL when printing unexpected results
-        https://bugs.webkit.org/show_bug.cgi?id=104597
-
-        Reviewed by Ojan Vafai.
-
-        This was broken in the recent printer refactoring.
-
-        * Scripts/webkitpy/layout_tests/views/buildbot_results.py:
-        (BuildBotPrinter.print_unexpected_results.add_result.is_expected):
-        * Scripts/webkitpy/layout_tests/views/buildbot_results_unittest.py:
-        (BuildBotPrinterTests.get_result):
-        (BuildBotPrinterTests.test_print_unexpected_results):
-        (BuildBotPrinterTests.test_print_unexpected_results.get_unexpected_results):
-        (BuildBotPrinterTests):
-
-2012-12-10  Dirk Pranke  <dpranke@chromium.org>
-
-        old-run-webkit-tests: add --show-results properly
-        https://bugs.webkit.org/show_bug.cgi?id=104608
-
-        Reviewed by Eric Seidel.
-
-        Rework r137219 / bug 104601 to use the correct perl idiom.
-
-        * Scripts/old-run-webkit-tests:
-
-2012-12-10  Aaron Colwell  <acolwell@chromium.org>
-
-        Unreviewed. Adding Aaron Colwell to the contributor list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-12-10  Anders Carlsson  <andersca@apple.com>
-
-        Remove WebKit2 tests on Windows
-        https://bugs.webkit.org/show_bug.cgi?id=104607
-
-        Reviewed by Tim Horton.
-
-        Stop building WebKit2 tests and remove associated files.
-
-        * TestWebKitAPI/win/InjectedBundleControllerWin.cpp: Removed.
-        * TestWebKitAPI/win/PlatformUtilitiesWin.cpp: Removed.
-        * TestWebKitAPI/win/PlatformWebViewWin.cpp: Removed.
-        * TestWebKitAPI/win/TestWebKitAPI.sln: Removed.
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        * TestWebKitAPI/win/TestWebKitAPIGenerated.vcproj: Removed.
-        * TestWebKitAPI/win/TestWebKitAPIGeneratedCommon.vsprops: Removed.
-        * TestWebKitAPI/win/TestWebKitAPIInjectedBundle.vcproj: Removed.
-        * TestWebKitAPI/win/WindowMessageObserver.h: Removed.
-        * TestWebKitAPI/win/copy-resources.cmd: Removed.
-
-2012-12-10  Dirk Pranke  <dpranke@chromium.org>
-
-        old-run-webkit-tests: support --no-show-results for compatibility w/ NRWT
-        https://bugs.webkit.org/show_bug.cgi?id=104601
-
-        Reviewed by Eric Siedel.
-
-        This flag is being added so we can move all of the calling scripts
-        over to using --no-show-results instead of --no-launch-safari.
-
-        * Scripts/old-run-webkit-tests:
-
-2012-12-10  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: use the default logic for skipping platform-specific tests for chromium
-        https://bugs.webkit.org/show_bug.cgi?id=104403
-
-        Reviewed by Stephen White.
-
-        I thought I had fixed this a while ago, but the chromium port was
-        using custom logic to figure out which platform/* tests to run (or
-        skip) and as a result we were getting some odd behavior (like running
-        tests in chromium-linux on chromium-mac, but only when there was
-        an expectation listed for the test).
-
-        Ports are supposed to only run the tests found under their
-        baseline_search_path() by default.
-
-        Not writing a test for this; theoretically there shouldn't been a
-        test checking that the behavior for Chromium was *different* than
-        the other ports before.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort._missing_symbol_to_skipped_tests):
-
-2012-12-10  Dirk Pranke  <dpranke@chromium.org>
-
-        fix regression in test-webkitpy after r137189
-        https://bugs.webkit.org/show_bug.cgi?id=104589
-
-        Reviewed by Eric Seidel.
-
-        Need to specify full port names.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_build_check):
-
-2012-12-10  Laszlo Gombos  <l.gombos@samsung.com>
-
-        [EFL] Change the minimum required EFL version to 1.6
-        https://bugs.webkit.org/show_bug.cgi?id=104431
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Change the minimum required EFL version to 1.6 from 1.7.
-        The elementary EFL package is only required to build MiniBrowser,
-        so I moved the required only to the Minibrowser CMake file.
-
-        * MiniBrowser/efl/CMakeLists.txt: In addition removed
-        ENABLE_GLIB_SUPPORT as it is obsolete and it was always set to be on.
-
-2012-12-10  Dean Jackson  <dino@apple.com>
-
-        Unreviewed. Adding Antoine to the contributor list so his name autocompletes in bugzilla.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-12-10  Zan Dobersek  <zandobersek@gmail.com>
-
-        REGRESSION (r118735): svg/dom/complex-svgView-specification.html, svg/dom/SVGViewSpec.html, svg/dom/viewspec-parser.html failing on GTK Linux 64-bit Release
-        https://bugs.webkit.org/show_bug.cgi?id=87734
-
-        Reviewed by Martin Robinson.
-
-        When willSendRequest should return null in testing, cancel the SoupMessage
-        instead of setting the request's URI to about:blank.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (willSendRequestCallback):
-
-2012-12-10  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] Move the test implementation of WebKit::WebPlugin to the TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=104537
-
-        Reviewed by Tony Chang.
-
-        In order to hide implementation details from the public TestRunner API,
-        I moved the plugin to WebTestPluginImpl and added a static create
-        method to WebTestPlugin. Also, I renamed the plugin from TestWebPlugin
-        to WebTestPlugin to be more in line with other classes in the
-        TestRunner API.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestPlugin.h: Added.
-        (WebTestRunner):
-        (WebTestPlugin):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestPlugin.cpp: Renamed from Tools/DumpRenderTree/chromium/TestWebPlugin.cpp.
-        (WebTestRunner::WebTestPlugin::create):
-        (WebTestRunner):
-        (WebTestRunner::WebTestPlugin::WebTestPlugin):
-        (WebTestRunner::WebTestPlugin::~WebTestPlugin):
-        (WebTestRunner::WebTestPlugin::mimeType):
-        * DumpRenderTree/chromium/TestWebPlugin.h: Removed.
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createPlugin):
-
-2012-12-10  Dirk Pranke  <dpranke@chromium.org>
-
-        run_webkit_tests throws exception when DRT is not present
-        https://bugs.webkit.org/show_bug.cgi?id=104565
-
-        Reviewed by Jochen Eisinger.
-
-        Don't actually try to print the bot results if there aren't
-        any because we exited before running any tests.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (main):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_build_check):
-
-2012-12-10  Benjamin Poulain  <benjamin@webkit.org>
-
-        Add convenience methods to use ListHashSet for a LRU cache
-        https://bugs.webkit.org/show_bug.cgi?id=104499
-
-        Reviewed by Sam Weinig.
-
-        Test the new methods added to ListHashSet.
-
-        * TestWebKitAPI/CMakeLists.txt:
-        * TestWebKitAPI/GNUmakefile.am:
-        * TestWebKitAPI/TestWebKitAPI.gypi:
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WTF/ListHashSet.cpp: Added.
-        (TestWebKitAPI):
-        (TestWebKitAPI::TEST):
-
-2012-12-10  Dirk Pranke  <dpranke@chromium.org>
-
-        webkit-patch print-expectations doesn't work right for platforms w/ shared expectations
-        https://bugs.webkit.org/show_bug.cgi?id=104405
-
-        Reviewed by Eric Seidel.
-
-        If multiple ports shared a TestExpectations file, webkit-patch
-        print-expectations would use the expectation for the first port
-        using that file and print the result for all ports, rather than
-        re-parse and print each port separately (e.g., we might print
-        the chromium-linux expectation for a file for both chromium-linux
-        and chromium-mac). Discovered while testing/debugging the fix
-        for bug 104403.
-
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort._skipped_tests_for_unsupported_features):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (lint):
-        * Scripts/webkitpy/tool/commands/queries.py:
-        (PrintExpectations._model):
-        * Scripts/webkitpy/tool/commands/queries_unittest.py:
-        (PrintExpectationsTest.test_platform):
-
-2012-12-10  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: fix total number of tests computed in the result summary
-        https://bugs.webkit.org/show_bug.cgi?id=104061
-
-        Reviewed by Jochen Eisinger.
-
-        Good thing I left this open, because I actually broke it again
-        the same way in a merge. Fix the computation of the one_line_summary
-        again, and add tests for it (also clean up some redundant tests).
-
-        Also, add constants into the test port code so that the knowledge
-        of how many tests should fail and how is next to the list of tests,
-        rather than a totally different place.
-
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner.py:
-        (LayoutTestRunner.run_tests):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestList.__getitem__):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (get_test_results):
-        (MainTest.setUp):
-        (MainTest.test_basic):
-        (MainTest.test_run_singly_actually_runs_tests):
-        (MainTest.test_test_list_with_prefix):
-        (MainTest.test_missing_and_unexpected_results_with_custom_exit_code.CustomExitCodePort):
-        (MainTest.test_tolerance.ImageDiffTestPort):
-        (EndToEndTest.parse_full_results):
-
-2012-12-10  Mike West  <mkwst@chromium.org>
-
-        Log to console when script is blocked by sandbox attributes.
-        https://bugs.webkit.org/show_bug.cgi?id=104365
-
-        Reviewed by Ojan Vafai.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest):
-            Ignoring the new console message in perftests, as it broke parsing
-            for the Parser/html-parser.html microbenchmark.
-
-2012-12-10  Filip Pizlo  <fpizlo@apple.com>
-
-        JSC profiling and debug dump code should use inferred names when possible
-        https://bugs.webkit.org/show_bug.cgi?id=104519
-
-        Reviewed by Oliver Hunt.
-
-        The format I'm using for referring to a code block is now name#hash. For example,
-        v8-crypto has something called bnpSquareTo#B5QFbU. The profiler allows you to use
-        either the hash, the inferred name, or the combined hash and full name when referring
-        to blocks.
-
-        * Scripts/display-profiler-output:
-
-2012-12-09  Filip Pizlo  <fpizlo@apple.com>
-
-        Profiler should say things about OSR exits
-        https://bugs.webkit.org/show_bug.cgi?id=104497
-
-        Reviewed by Oliver Hunt.
-
-        Adds support for displaying OSR exit information for full summary (just displays the
-        counts and the number of recompilations), bytecode display (says which bytecodes
-        exited), and DFG display (annotates disassembly with taken OSR exits and their
-        counts).
-
-        * Scripts/display-profiler-output:
-
-2012-12-10  Alexis Menard  <alexis@webkit.org>
-
-        [CSS3 Backgrounds and Borders] Remove CSS3_BACKGROUND feature flag.
-        https://bugs.webkit.org/show_bug.cgi?id=104539
-
-        Reviewed by Antonio Gomes.
-
-        As discussed on webkit-dev it is not needed to keep this feature flag 
-        as support for <position> type is a small feature that is already 
-        implemented by three other UAs. It was useful while landing this 
-        feature as partial bits were landed one after one.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2012-12-10  Martin Robinson  <mrobinson@igalia.com>
-
-        Build fix.
-
-        Add a patchfile missing from my previous commit.
-
-        * gtk/patches/harfbuzz-icu-detection-fix.patch: Added.
-
-2012-12-10  Martin Robinson  <mrobinson@igalia.com>
-
-        REGRESSION(137127): Causes assertion failures on the debug bots
-        https://bugs.webkit.org/show_bug.cgi?id=104549
-
-        Reviewed by Alejandro G. Castro.
-
-        After handling the new TextOutput message we should return the method
-        handling messages received.
-
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle): Fix a missing early return.
-
-2012-12-09  Gustavo Noronha Silva  <gustavo.noronha@collabora.com>
-
-        [Soup] utilize multipart/x-mixed-replace support recently added to libsoup
-        https://bugs.webkit.org/show_bug.cgi?id=94515
-
-        Reviewed by Martin Robinson.
-
-        This change requires a very recent libsoup, so update our jhbuild
-        requirements.
-
-        * gtk/jhbuild.modules: depend on soup version that adds the multipart/x-mixed-replace
-        support
-        * efl/jhbuild.modules: ditto
-
-2012-12-10  Zoltan Nyul  <zoltan.nyul@intel.com>
-
-        Implement testRunner.setViewModeMediaFeature() in WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=103886
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Implement testRunner.setViewModeMediaFeature() in WebKitTestRunner.
-        This API is required by layout tests.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::setViewModeMediaFeature):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-
-2012-12-10  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Bring Harfbuzz-ng support to Gtk
-        https://bugs.webkit.org/show_bug.cgi?id=92098
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Add HarfBuzz dependency.
-
-        * GNUmakefile.am: Add FreeType/HarfBuzz CFLAGS to the WebCore Internals library.
-        * gtk/jhbuild.modules: Add HarfBuzz to the JHbuild and remove Pango, since it
-        should no longer affect layout test results.
-
-2012-12-10  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Use QLibraryInfo::LibraryExecutablesPath unconditionally
-        https://bugs.webkit.org/show_bug.cgi?id=104541
-
-        Reviewed by Jocelyn Turcotte.
-
-        We now depend on a Qt 5 version that is guaranteed to have this API, so we
-        can remove the configure checks for it.
-
-        * qmake/config.tests/libexecdir/libexecdir.cpp: Removed.
-        * qmake/config.tests/libexecdir/libexecdir.pro: Removed.
-        * qmake/mkspecs/features/features.prf:
-
-2012-12-10  Víctor Manuel Jáquez Leal  <vjaquez@igalia.com>
-
-        REGRESSION(r135863): GtkLauncher --help no longer displays all help options
-        https://bugs.webkit.org/show_bug.cgi?id=104382
-
-        Reviewed by Philippe Normand.
-
-        Remove gst_init() because it steals the GOptionContext.
-        gst_init_get_option_group() already does the initialization job.
-
-        * GtkLauncher/main.c:
-        (main):
-
-2012-12-10  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK][WTR] Implement AccessibilityUIElement::titleUIElement
-        https://bugs.webkit.org/show_bug.cgi?id=102953
-
-        Reviewed by Martin Robinson.
-
-        Implement AccessibilityUIElement::titleUIElement in the ATK backend
-        in the same manner it is implemented in DumpRenderTree. Both implementations
-        are updated to unref the relation set before the final function return
-        rather than at the end of each loop through the relations held in the said
-        relation set.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::titleUIElement):
-        * WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp:
-        (WTR::AccessibilityUIElement::titleUIElement):
-
-2012-12-10  Martin Robinson  <mrobinson@igalia.com>
-
-        Fix the WebKit2 debug build
-
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle): Fix a typo of WKStringGetTypeID().
-
-2012-12-10  Martin Robinson  <mrobinson@igalia.com>
-
-        [WTR] Move text output accumulation to the UIProcess
-        https://bugs.webkit.org/show_bug.cgi?id=104214
-
-        Reviewed by Darin Adler.
-
-        Instead of accumulating text output in the InjectedBundle and then sending it to the UIProcess 
-        once a test is finished, immediately send any text output to the UIProcess. This will allow
-        WebKitTestRunner to output text from the UIProcess as well.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp: Remove the handling of the text output
-        StringBuilder. Add a method to send output to the UIProcess.
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (InjectedBundle):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp: Change code that appends to the StringBuilder
-        to use the new outputText method.
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp: Ditto.
-        * WebKitTestRunner/InjectedBundle/atk/AccessibilityControllerAtk.cpp: Ditto.
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::TestInvocation): Intialize the StringBuilder.
-        (WTR::TestInvocation::invoke): Clear the StringBuilder when a new tests starts.
-        (WTR::TestInvocation::dumpResults): m_textOutput is a StringBuilder now so the
-        method of printing the text is slightly different.
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle): Handle the new TextOutput
-        message by appending the results to the StringBuilder.
-        * WebKitTestRunner/TestInvocation.h:
-        (TestInvocation): Switch the type of m_textOutput.
-
-2012-12-10  Mihnea Ovidenie  <mihnea@adobe.com>
-
-        Unreviewed. Adding Mihai Maerean to the list of contributors, working on CSSRegions.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-12-10  Joanmarie Diggs  <jdiggs@igalia.com>
-
-        [GTK] accessibility/language-attribute.html is failing
-        https://bugs.webkit.org/show_bug.cgi?id=98369
-
-        Reviewed by Chris Fleizach.
-
-        The test is failing for two reasons: Not exposing the language
-        for accessible objects and AccessibilityUIElement::language() not
-        being implemented.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::language): Implemented.
-
-2012-12-10  Joanmarie Diggs  <jdiggs@igalia.com>
-
-        [GTK] accessibility/editable-webarea-context-menu-point.html is failing
-        https://bugs.webkit.org/show_bug.cgi?id=98364
-
-        Reviewed by Chris Fleizach.
-
-        The test is failing because the clickPoint values remain unchanged. The
-        values remain unchanged because ATK lacks a means to keep track of this
-        information.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::clickPointX): Added comment that ATK doesn't have clickPoint details
-        (AccessibilityUIElement::clickPointY): Added comment that ATK doesn't have clickPoint details
-
-2012-12-09  Alejandro Piñeiro  <apinheiro@igalia.com>
-
-        [GTK] lack of implemention of AccessibilityUIElementGtk::isSelectable and AccessibilityUIElementGtk::isMultiSelectable
-        https://bugs.webkit.org/show_bug.cgi?id=104481
-
-        Reviewed by Martin Robinson.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::isSelectable): Implement this by checking
-        the current state of the AtkObject.
-        (AccessibilityUIElement::isMultiSelectable): Implement this by
-        checking the current state of the AtkObject.
-
-2012-12-09  Joanmarie Diggs  <jdiggs@igalia.com>
-
-        [GTK] accessibility/placeholder.html is failing
-        https://bugs.webkit.org/show_bug.cgi?id=98373
-
-        Reviewed by Martin Robinson.
-
-        The test was failing because the placeholder text was not supported and
-        AccessibilityUIElement::stringAttributeValue() was not implemented.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (coreAttributeToAtkAttribute): New convenience method to convert WebCore attribute
-        names into AtkObject attribute names
-        (AccessibilityUIElement::stringAttributeValue): implemented
-
-2012-12-09  Dan Winship  <danw@gnome.org>
-
-        [GTK] Bump libxml2 requirement in jhbuild.modules
-        https://bugs.webkit.org/show_bug.cgi?id=104477
-
-        Reviewed by Martin Robinson.
-
-        Fedora 18's Apache depends on symbols in libxml2 2.9.0, so the
-        tests won't run if we only have libxml2 2.8.0 installed in the
-        jhbuild root.
-
-        * gtk/jhbuild.modules:
-
-2012-12-09  Zan Dobersek  <zandobersek@gmail.com>
-
-        Remove testRunner.disableImageLoading()
-        https://bugs.webkit.org/show_bug.cgi?id=98083
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Remove the disableImageLoading methods and callback.
-        No tests use the method anymore and all ports except Wx
-        now support this behavior through overriding the
-        WebKitDisplayImagesKey preference.
-
-        * DumpRenderTree/TestRunner.cpp:
-        (TestRunner::staticFunctions):
-        * DumpRenderTree/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp:
-        (TestRunner::overridePreference): Add support for overriding the
-        WebKitDisplayImagesKey preference which is now the preferred way
-        of disabling image loading.
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        * DumpRenderTree/gtk/TestRunnerGtk.cpp:
-        * DumpRenderTree/mac/TestRunnerMac.mm:
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunner):
-        * DumpRenderTree/win/TestRunnerWin.cpp:
-        * DumpRenderTree/wx/TestRunnerWx.cpp:
-
-2012-12-09  Joanmarie Diggs  <jdiggs@igalia.com>
-
-        [GTK] accessibility/label-for-control-hittest.html is failing
-        https://bugs.webkit.org/show_bug.cgi?id=98368
-
-        Reviewed by Martin Robinson.
-
-        The test was failing because AccessibilityUIElement::elementAtPoint was
-        not implemented.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::elementAtPoint): implemented
-
-2012-12-09  Jon Lee  <jonlee@apple.com>
-
-        [WK2] Move button image to injected bundle
-        https://bugs.webkit.org/show_bug.cgi?id=104107
-        <rdar://problem/12813842>
-
-        Reviewed by Simon Fraser.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage): Update the bundle page UI client.
-
-2012-12-08  Halton Huo  <halton.huo@intel.com>
-
-        [CMake] Add CMake style checker
-        https://bugs.webkit.org/show_bug.cgi?id=104240
-
-        Reviewed by Eric Seidel.
-
-        The CMake style checker is followed by existing style checkers like cpp, python.
-        Unit test is added as well.
-
-        * Scripts/webkitpy/style/checker.py: Use CMakeChecker CMAKE type files(.cmake or CMakeLists.txt)
-        (FileType):
-        (CheckerDispatcher._file_type):
-        (CheckerDispatcher._create_checker):
-        * Scripts/webkitpy/style/checkers/cmake.py: Added.
-        (CMakeChecker):
-        (CMakeChecker.__init__): 
-        (CMakeChecker.check):
-        (CMakeChecker._process_line):
-        (CMakeChecker._check_trailing_whitespace):
-        (CMakeChecker._check_no_space_cmds):
-        (CMakeChecker._check_one_space_cmds):
-        (CMakeChecker._check_non_lowercase_cmd):
-        (CMakeChecker._check_indent):
-        * Scripts/webkitpy/style/checkers/cmake_unittest.py: Added.
-        (CMakeCheckerTest):
-        (CMakeCheckerTest.test_init):
-        (CMakeCheckerTest.test_init._mock_handle_style_error):
-        (CMakeCheckerTest.test_check):
-        (CMakeCheckerTest.test_check._mock_handle_style_error):
-
-2012-12-08  Kondapally Kalyan  <kalyan.kondapally@intel.com>
-
-        [EFL] Enable WebGL by default.
-        https://bugs.webkit.org/show_bug.cgi?id=102991.
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Enable WebGL by default.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-12-07  Scott Violet  <sky@chromium.org>
-
-        [chromium] Remove linux theme related files and switch to default
-        https://bugs.webkit.org/show_bug.cgi?id=103897
-
-        Reviewed by Dimitri Glazkov.
-
-        * Scripts/webkitpy/common/config/build_unittest.py:
-        (ShouldBuildTest): linux->default
-
-2012-12-07  Mike Lattanzio  <mlattanzio@rim.com>
-
-        [BlackBerry] Update BlackBerry Port to use new Graphics::createBuffer BufferType enum values.
-        https://bugs.webkit.org/show_bug.cgi?id=104121
-
-        Reviewed by Rob Buis.
-
-        Update createBuffer call to reflect new BufferType enum.
-        Internal PR 254649
-        Internal Review: Jakob Petsovits
-
-        DRT is always backed for maximum compatibility.
-
-        * DumpRenderTree/blackberry/PixelDumpSupportBlackBerry.cpp:
-        (createBitmapContextFromWebView):
-
-2012-12-07  Jochen Eisinger  <jochen@chromium.org>
-
-        Add 'CHROMIUM_DEVEL_SANDBOX' to the environment variables to copy for layout test drivers
-        https://bugs.webkit.org/show_bug.cgi?id=104355
-
-        Reviewed by Dirk Pranke.
-
-        This enables chromium's content_shell driver to run with the full SUID
-        sandbox.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.to.setup_environ_for_server):
-
-2012-12-07  KyungTae Kim  <ktf.kim@samsung.com>
-
-        [EFL] Fix tools for WebKit2-only builds
-        https://bugs.webkit.org/show_bug.cgi?id=103904
-
-        Reviewed by Laszlo Gombos.
-
-        The libewebkit2.so should be used for library path for EFL WebKit2.
-
-        * Scripts/webkitdirs.pm:
-        (builtDylibPathForName):
-
-2012-12-07  Xiaobo Wang  <xbwang@torchmobile.com.cn>
-
-        [BlackBerry] DRT - Update implementation of TestRunner.setCustomPolicyDelegate()
-        https://bugs.webkit.org/show_bug.cgi?id=104243
-
-        RIM PR 259337
-
-        Reviewed by Rob Buis.
-
-        1. Implement calculation of navigation originating in
-        didDecidePolicyForNavigationAction().
-        2. Implement policy delegate for resource response.
-        3. Enable customPolicyDelegate if waitForPolicyDelegate() is called.
-        4. Minor optional updates in dump() and dumpFrameLoadCallbacks().
-
-        The patch fixed the following tests:
-        - http/tests/download
-        - fast/forms/mailto/formenctype-attribute-button-html.html
-        - fast/forms/mailto/formenctype-attribute-input-html.html
-        - fast/encoding/mailto-always-utf-8.html
-
-        * DumpRenderTree/blackberry/DumpRenderTree.cpp:
-        (BlackBerry::WebKit::DumpRenderTree::DumpRenderTree):
-        (BlackBerry::WebKit::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        (BlackBerry::WebKit::DumpRenderTree::dump):
-        (BlackBerry::WebKit::DumpRenderTree::didFinishLoadForFrame):
-        (BlackBerry::WebKit::DumpRenderTree::didDecidePolicyForNavigationAction):
-        (BlackBerry::WebKit::DumpRenderTree::didDecidePolicyForResponse):
-        (BlackBerry::WebKit::DumpRenderTree::setCustomPolicyDelegate):
-        * DumpRenderTree/blackberry/DumpRenderTreeBlackBerry.h:
-        (DumpRenderTree):
-        * DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp:
-        (TestRunner::setCustomPolicyDelegate):
-        (TestRunner::waitForPolicyDelegate):
-        (TestRunner::overridePreference):
-
-2012-12-07  Gwang Yoon Hwang  <ryumiel@company100.net>
-
-        [Qt] Adjust library name in layout_tests/port/qt.py after Qt5-r40
-        https://bugs.webkit.org/show_bug.cgi?id=104348
-
-        Reviewed by Csaba Osztrogonác.
-
-        After Qt-5.0.0-r40, the library was renamed from QtWebKitWidgets to
-        Qt5WebKitWidgets. run-webkit-tests were still looking for QtWebKitWidgets
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort._path_to_webcore_library):
-
-2012-12-07  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed fix, unbreak run-launcher after library renaming.
-
-        * Scripts/webkitdirs.pm:
-        (builtDylibPathForName):
-
-2012-12-06  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed fix after r136896, unbreak --debug-rwt to make bots result verbose again.
-        https://bugs.webkit.org/show_bug.cgi?id=104296
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (main):
-
-2012-12-06  Rick Byers  <rbyers@chromium.org>
-
-        CSS cursor property should support webkit-image-set
-        https://bugs.webkit.org/show_bug.cgi?id=99493
-
-        Reviewed by Beth Dakin.
-
-        Add ENABLE_MOUSE_CURSOR_SCALE - disabled by default
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2012-12-06  Vivek Galatage  <vivek.vg@samsung.com>
-
-        Unreviewed. Fixing the email address order to work correctly with bugzilla.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-12-06  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] when forwarding events through the WebPluginContainer, create a UserGestureIndicator if processing a user gesture
-        https://bugs.webkit.org/show_bug.cgi?id=104306
-
-        Reviewed by Dimitri Glazkov.
-
-        * DumpRenderTree/chromium/TestWebPlugin.cpp:
-        (TestWebPlugin::TestWebPlugin):
-        (TestWebPlugin::handleInputEvent): add support for printing the user gesture status
-        * DumpRenderTree/chromium/TestWebPlugin.h:
-        (TestWebPlugin):
-
-2012-12-06  Dirk Pranke  <dpranke@chromium.org>
-
-        new-run-webkit-tests --lint-test-files seems to be broken
-        https://bugs.webkit.org/show_bug.cgi?id=104296
-
-        Unreviewed, build fix.
-
-        My recent refactoring caused me to not initialize the printer
-        before calling lint(); this patch restructures the code to make
-        the lint routine self-contained and do all the work necessary.
-        This will also make it easier to move this code out into a standalone
-        file.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (lint):
-        (main):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (LintTest.test_all_configurations):
-        (LintTest.test_lint_test_files):
-        (LintTest.test_lint_test_files__errors):
-
-2012-12-05  Filip Pizlo  <fpizlo@apple.com>
-
-        DFG profiler should be helpful about gem installation
-        https://bugs.webkit.org/show_bug.cgi?id=104217
-
-        Reviewed by Oliver Hunt.
-        
-        'json' and 'highline' are not installed by default on the ruby distributions with
-        which I am familiar, and the default error messages don't make me happy. This makes
-        display-profiler-output print a helpful message if those gems are not found.
-
-        * Scripts/display-profiler-output:
-
-2012-12-05  Filip Pizlo  <fpizlo@apple.com>
-
-        Profiler should print a helpful message if you pass the wrong arguments
-        https://bugs.webkit.org/show_bug.cgi?id=104222
-
-        Reviewed by Oliver Hunt.
-
-        * Scripts/display-profiler-output:
-
-2012-12-06  Ojan Vafai  <ojan@chromium.org>
-
-        Allow for CCing a secondary email address from watchlists
-        https://bugs.webkit.org/show_bug.cgi?id=104286
-
-        Reviewed by Dirk Pranke.
-
-        Change my watchlist CC address so I can filter these separately from
-        when people explicitly CC me and update the watchlist parser to allow that.
-
-        * Scripts/webkitpy/common/config/committers.py:
-        * Scripts/webkitpy/common/config/watchlist:
-        * Scripts/webkitpy/common/watchlist/watchlistparser.py:
-        (WatchListParser._validate):
-        * Scripts/webkitpy/common/watchlist/watchlistparser_unittest.py:
-        (WatchListParserTest.test_cc_rule_with_invalid_email):
-        (WatchListParserTest.test_cc_rule_with_secondary_email):
-
-2012-12-06  Max Vujovic  <mvujovic@adobe.com>
-
-        Unreviewed. Add myself to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-12-06  Yael Aharon  <yael.aharon@intel.com>
-
-        [EFL] [WK2] fast/dom/vertical-scrollbar-in-rtl.html makes fast/regions tests flaky
-        https://bugs.webkit.org/show_bug.cgi?id=104139
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Resize the window back to 800x600 between tests.
-        This should be a no-op if the test did not resize the window.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-
-2012-12-06  Tommy Widenflycht  <tommyw@google.com>
-
-        Speech Recognition API: Change the error code to a string on SpeechRecognitionError
-        https://bugs.webkit.org/show_bug.cgi?id=104254
-
-        Reviewed by Adam Barth.
-
-        Changes the mock error function to take a string instead of an int.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::setMockSpeechRecognitionError):
-        * DumpRenderTree/chromium/MockWebSpeechRecognizer.cpp:
-        (WebTestRunner::ErrorTask::ErrorTask):
-        (MockWebSpeechRecognizer::setError):
-        * DumpRenderTree/chromium/MockWebSpeechRecognizer.h:
-        (MockWebSpeechRecognizer):
-
-2012-12-06  Andras Becsi  <andras.becsi@digia.com>
-
-        [Qt][Mac] Fix libxslt and libxml2 config tests
-        https://bugs.webkit.org/show_bug.cgi?id=104164
-
-        Reviewed by Simon Hausmann.
-
-        We should not use pkg-config on Mac instead use direct include
-        paths and add needed libraries to the linker options to detect
-        libxslt and libxml2 provided by the system.
-        Previously we would always fall back to qtxmlpatterns.
-
-        * qmake/config.tests/libxml2/libxml2.pro:
-        * qmake/config.tests/libxslt/libxslt.pro:
-
-2012-12-06  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Fix the build if the path contains "+" character
-        https://bugs.webkit.org/show_bug.cgi?id=104120
-
-        Reviewed by Tor Arne Vestbø.
-
-        The second parameter of qmake's replace() is regular expression, so
-        we have to escape special characters in paths passed to replace().
-
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/default_pre.prf:
-        * qmake/mkspecs/features/functions.prf:
-
-2012-12-06  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r136825.
-        http://trac.webkit.org/changeset/136825
-        https://bugs.webkit.org/show_bug.cgi?id=104251
-
-        It made 100+ test fail on Qt-WK2 pixel bot, and 1800+ test
-        flakey on Qt-WK2 non-pixel bot (Requested by Ossy on #webkit).
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-
-2012-12-06  Yael Aharon  <yael.aharon@intel.com>
-
-        [EFL] [WK2] fast/dom/vertical-scrollbar-in-rtl.html makes fast/regions tests flaky
-        https://bugs.webkit.org/show_bug.cgi?id=104139
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Resize the window back to 800x600 between tests.
-        This should be a no-op if the test did not resize the window.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-
-2012-12-06  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r136784 and r136802.
-        http://trac.webkit.org/changeset/136784
-        http://trac.webkit.org/changeset/136802
-        https://bugs.webkit.org/show_bug.cgi?id=104231
-
-        breaks chromium canary (Requested by morrita on #webkit).
-
-        * Scripts/webkitpy/common/config/build_unittest.py:
-        (ShouldBuildTest):
-
-2012-12-05  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Add myself to watch changes in PerformanceTests/*.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-12-05  Shinya Kawanaka  <shinyak@chromium.org>
-
-        [Chromium] DRT on Windows crashes when a testcase has a progress element in indeterminate state
-        https://bugs.webkit.org/show_bug.cgi?id=102459
-
-        Reviewed by Dimitri Glazkov.
-
-        Since WebThemeControlDRTWin::markState does not consider indeterminate state, DRT caused a crash.
-
-        * DumpRenderTree/chromium/WebThemeControlDRTWin.cpp:
-        (WebThemeControlDRTWin::markState):
-
-2012-12-05  Filip Pizlo  <fpizlo@apple.com>
-
-        DFG profiler should be able to display where a code block was inlined into, and what it inlined
-        https://bugs.webkit.org/show_bug.cgi?id=104216
-
-        Reviewed by Oliver Hunt.
-
-        Added an "inlines" command that shows the inline stacks that a code block participated
-        in. Also cleaned up some of the ways we print compilation units.
-
-        * Scripts/display-profiler-output:
-
-2012-12-05  Halton Huo  <halton.huo@intel.com>
-
-        [CMake] Unify coding style for CMake files
-        https://bugs.webkit.org/show_bug.cgi?id=103605
-
-        Reviewed by Laszlo Gombos.
-
-        Update cmake files(.cmake, CMakeLists.txt) with following style rules:
-        1. Indentation
-        1.1 Use spaces, not tabs.
-        1.2 Four spaces as indent.
-        2. Spacing
-        2.1 Place one space between control statements and their parentheses.
-            For eg, if (), else (), elseif (), endif (), foreach (),
-            endforeach (), while (), endwhile (), break ().
-        2.2 Do not place spaces between function and macro statements and
-            their parentheses. For eg, macro(), endmacro(), function(),
-            endfunction().
-        2.3 Do not place spaces between a command or function or macro and its
-            parentheses, or between a parenthesis and its content. For eg,
-            message("testing") not message( "testing") or message ("testing" )
-        2.4 No space at line ending.
-        3. Lowercase when call commands macros and functions. For eg,
-           add_executable() not ADD_EXECUTABLE(), set() not SET().
-
-        * CMakeLists.txt:
-        * DumpRenderTree/TestNetscapePlugIn/CMakeLists.txt:
-        * DumpRenderTree/efl/CMakeLists.txt:
-        * EWebLauncher/CMakeLists.txt:
-        * EWebLauncher/ControlTheme/CMakeLists.txt:
-        * MiniBrowser/efl/CMakeLists.txt:
-        * TestWebKitAPI/CMakeLists.txt:
-        * TestWebKitAPI/PlatformEfl.cmake:
-        * WebKitTestRunner/CMakeLists.txt:
-        * WebKitTestRunner/PlatformEfl.cmake:
-        * WinCELauncher/CMakeLists.txt:
-        * clang/ReportMemoryUsagePlugin/CMakeLists.txt:
-
-2012-12-05  Scott Violet  <sky@chromium.org>
-
-        [chromium] Remove linux theme related files and switch to default
-        https://bugs.webkit.org/show_bug.cgi?id=103897
-
-        Reviewed by Tony Chang.
-
-        * Scripts/webkitpy/common/config/build_unittest.py:
-        (ShouldBuildTest): linux->default
-
-2012-12-05  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: run_webkit_tests_integrationtest.py depends on being able to share a port w/ between master and worker
-        https://bugs.webkit.org/show_bug.cgi?id=78168
-
-        Reviewed by Ojan Vafai.
-
-        This patch adds a single ordered list to ResultSummary that contains
-        the results of every test run in order of result received, and
-        modifies the TestResults class to contain the list of references used
-        for each test as well as the pid of the driver; this allows us to stop
-        having to override the test drivers to record the tests, and makes the
-        integration tests that test rdering, retries, restarts, etc. black-box
-        tests.
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner._run_rebaseline):
-        (SingleTestRunner._compare_output):
-        (SingleTestRunner._run_reftest):
-        (SingleTestRunner._compare_output_with_reference):
-        * Scripts/webkitpy/layout_tests/models/result_summary.py:
-        (ResultSummary.__init__):
-        (ResultSummary.add):
-        * Scripts/webkitpy/layout_tests/models/test_results.py:
-        (TestResult.__init__):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (DriverOutput.__init__):
-        (Driver.run_test):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestDriver):
-        (TestDriver.__init__):
-        (TestDriver.run_test):
-        (TestDriver.stop):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (get_tests_run):
-        (get_test_batches):
-        (get_test_results):
-        (MainTest.test_batch_size):
-        (MainTest.test_dryrun):
-        (MainTest.test_natural_order):
-        (MainTest.test_natural_order_test_specified_multiple_times):
-        (MainTest.test_random_order):
-        (MainTest.test_random_order_test_specified_multiple_times):
-        (MainTest.test_no_order):
-        (MainTest.test_no_order_test_specified_multiple_times):
-        (MainTest.test_no_order_with_directory_entries_in_natural_order):
-        (MainTest.test_repeat_each):
-        (MainTest.test_ignore_flag):
-        (MainTest.test_skipped_flag):
-        (MainTest.test_iterations):
-        (MainTest.test_run_chunk):
-        (MainTest.test_run_part):
-        (MainTest.test_run_singly):
-        (MainTest.test_skip_failing_tests):
-        (MainTest.test_single_file):
-        (MainTest.test_single_file_with_prefix):
-        (MainTest.test_single_skipped_file):
-        (MainTest.test_test_list):
-        (MainTest.test_test_list_with_prefix):
-        (MainTest.test_exit_after_n_failures):
-        (MainTest.test_exit_after_n_crashes):
-        (MainTest.test_run_order__inline):
-        (MainTest.test_reftest_run):
-        (MainTest.test_reftest_run_reftests_if_pixel_tests_are_disabled):
-        (MainTest.test_reftest_skip_reftests_if_no_ref_tests):
-        (MainTest.test_reftest_expected_html_should_be_ignored):
-        (MainTest.test_reftest_driver_should_run_expected_html):
-        (MainTest.test_reftest_driver_should_run_expected_mismatch_html):
-        (MainTest.test_no_http_tests):
-        (MainTest.test_platform_tests_are_found):
-
-2012-12-05  Dana Jansens  <danakj@chromium.org>
-
-        [chromium] Make WebCompositorOutputSurface an empty class when USE_CC_OUTPUT_SURFACE is defined.
-        https://bugs.webkit.org/show_bug.cgi?id=103967
-
-        Reviewed by James Robinson.
-
-        Use the WebCompositorSupport methods to create an OutputSurface. If they
-        fail, then fall back to the WebViewHost methods.
-
-        Once the chromium side lands, the WebCompositorSupport methods will stop
-        failing, and will replace the WebViewHost ones.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createOutputSurface):
-
-2012-12-05  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: split all of the buildbot-specific output into its own file
-        https://bugs.webkit.org/show_bug.cgi?id=104165
-
-        Reviewed by Ojan Vafai.
-
-        Now that we have the RunDetails object we can move all of the
-        buildbot-specific knowledge out of the core test-running code
-        and into the outermost run_webkit_tests layer.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (run):
-        (main):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (passing_run):
-        (logging_run):
-        (run_and_capture):
-        (MainTest.test_all):
-        (MainTest.test_max_locked_shards):
-        (MainTest.test_child_processes_2):
-        (MainTest.test_child_processes_min):
-        (MainTest.test_full_results_html):
-        (MainTest.test_hung_thread):
-        (MainTest.test_keyboard_interrupt):
-        (MainTest.test_no_tests_found):
-        (MainTest.test_no_tests_found_2):
-        (MainTest.test_repeat_each_iterations_num_tests):
-        (MainTest.test_run_singly_actually_runs_tests):
-        (MainTest.test_test_list):
-        (MainTest.test_unexpected_failures):
-        (MainTest.test_missing_and_unexpected_results):
-        (MainTest.test_pixel_test_directories):
-        (MainTest.test_missing_and_unexpected_results_with_custom_exit_code):
-        (MainTest.test_crash_with_stderr):
-        (MainTest.test_no_image_failure_with_image_diff):
-        (MainTest.test_crash_log):
-        (MainTest.test_web_process_crash_log):
-        (MainTest.test_exit_after_n_failures_upload):
-        (MainTest.test_results_directory_absolute):
-        (MainTest.test_results_directory_default):
-        (MainTest.test_results_directory_relative):
-        (MainTest.test_retrying_and_flaky_tests):
-        (MainTest.test_reftest_should_not_use_naming_convention_if_not_listed_in_reftestlist):
-        (MainTest.test_output_diffs):
-        (MainTest.test_unsupported_platform):
-        (MainTest.test_verbose_in_child_processes):
-        (EndToEndTest.test_end_to_end):
-        (EndToEndTest.test_reftest_with_two_notrefs):
-        (RebaselineTest.test_reset_results):
-        (RebaselineTest.test_missing_results):
-        (RebaselineTest.test_new_baseline):
-        * Scripts/webkitpy/layout_tests/views/buildbot_results.py: Added.
-        (BuildBotPrinter):
-        (BuildBotPrinter.__init__):
-        (BuildBotPrinter.print_results):
-        (BuildBotPrinter._print):
-        (BuildBotPrinter.print_result_summary):
-        (BuildBotPrinter._print_result_summary_entry):
-        (BuildBotPrinter.print_unexpected_results):
-        (BuildBotPrinter.print_unexpected_results.add_to_dict_of_lists):
-        (BuildBotPrinter.print_unexpected_results.add_result):
-        * Scripts/webkitpy/layout_tests/views/buildbot_results_unittest.py: Added.
-        (BuildBotPrinterTests):
-        (BuildBotPrinterTests.assertEmpty):
-        (BuildBotPrinterTests.assertNotEmpty):
-        (BuildBotPrinterTests.get_printer):
-        (BuildBotPrinterTests.get_result):
-        (BuildBotPrinterTests.get_result_summary):
-        (BuildBotPrinterTests.test_print_unexpected_results):
-        (BuildBotPrinterTests.test_print_unexpected_results.get_unexpected_results):
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (Printer):
-        (Printer.__init__):
-        (Printer.print_results):
-        (Printer._print_statistics_for_test_timings):
-        (Printer._print_baseline):
-        (Printer._print_debug):
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-        (Testprinter.get_printer):
-        (Testprinter.get_result):
-        (Testprinter.test_configure_and_cleanup):
-        (Testprinter.test_print_config):
-        (Testprinter.test_print_one_line_summary):
-        (Testprinter.test_test_status_line):
-        (Testprinter.test_details):
-
-2012-12-05  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: collect all of the information about a run into a new RunDetails class
-        https://bugs.webkit.org/show_bug.cgi?id=104158
-
-        Reviewed by Ojan Vafai.
-
-        This patch collects the information from both test passes (the
-        main one and the retries) as well as the summarized results and
-        the exit code into a RunDetails class, so that the integration
-        tests can more easily tell what happened.
-
-        Also, change the way the --lint-test-files works slightly so that
-        we don't need to create a printer object (and hence we need to
-        rework the tests that are testing logging).
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (RunDetails):
-        (RunDetails.__init__):
-        (Manager.run):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (run):
-        (main):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (passing_run):
-        (run_and_capture):
-        (LintTest.test_lint_test_files):
-        (LintTest.test_lint_test_files__errors):
-        (MainTest.test_verbose_in_child_processes):
-
-2012-12-05  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: remove --no-record-results
-        https://bugs.webkit.org/show_bug.cgi?id=104072
-
-        Reviewed by Ojan Vafai.
-
-        The command line flag was only being used in the unit tests and
-        wasn't really needed once we started using a mock filesystem.
-
-        Also, reformat a bunch of long lines ...
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.run):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (parse_args):
-        (passing_run):
-        (logging_run):
-        (MainTest.test_repeat_each_iterations_num_tests):
-        (MainTest.test_test_list):
-        (MainTest.test_missing_and_unexpected_results):
-        (MainTest.test_pixel_test_directories):
-        (MainTest.test_missing_and_unexpected_results_with_custom_exit_code):
-        (MainTest.test_crash_with_stderr):
-        (MainTest.test_no_image_failure_with_image_diff):
-        (MainTest.test_crash_log):
-        (MainTest.test_web_process_crash_log):
-        (MainTest.test_exit_after_n_failures_upload):
-        (MainTest.test_results_directory_absolute):
-        (MainTest.test_results_directory_relative):
-        (MainTest.test_reftest_should_not_use_naming_convention_if_not_listed_in_reftestlist):
-        (MainTest.test_additional_expectations):
-        (MainTest.test_output_diffs):
-        (EndToEndTest.test_end_to_end):
-        (EndToEndTest.test_reftest_with_two_notrefs):
-        (RebaselineTest.test_reset_results):
-        (RebaselineTest.test_missing_results):
-        (RebaselineTest.test_new_baseline):
-
-2012-12-05  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: only summarize the results one way
-        https://bugs.webkit.org/show_bug.cgi?id=104064
-
-        Reviewed by Ojan Vafai.
-
-        Change manager.summarize_results so that we always (and only)
-        include both expected and unexpected results. Previously we
-        would summarize the results twice, once with expected results
-        and once without. This made the code much more confusing than
-        it needed to be.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (summarize_results):
-        (Manager.run):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ResultSummaryTest.summarized_results):
-        (ResultSummaryTest.test_no_svn_revision):
-        (ResultSummaryTest.test_svn_revision):
-        (ResultSummaryTest.test_summarized_results_wontfix):
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (Printer.print_results):
-        (Printer._print_unexpected_results):
-        (Printer._print_unexpected_results.add_result):
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-        (Testprinter.test_print_unexpected_results.get_unexpected_results):
-        (Testprinter):
-
-2012-12-05  Filip Pizlo  <fpizlo@apple.com>
-
-        DFG profiler should display more information
-        https://bugs.webkit.org/show_bug.cgi?id=104163
-
-        Reviewed by Gavin Barraclough.
-
-        Added the following:
-        
-        - Distinguish between source counts and bytecode counts.
-        
-        - Add a "full" summary view that shows both kinds of counts, plus inline counts.
-        
-        - Add a "source" command to see the source.
-        
-        - Add a "bytecode" command to see the bytecode and counts.
-
-        * Scripts/display-profiler-output:
-
-2012-12-05  Yong Li  <yoli@rim.com>
-
-        [BlackBerry] Build with libjpegturbo
-        https://bugs.webkit.org/show_bug.cgi?id=104152
-
-        Reviewed by Rob Buis.
-
-        RIM PR# 196975.
-        Make sure the right include path for libjpeg is included.
-
-        * Scripts/webkitdirs.pm:
-        (blackberryCMakeArguments):
-
-2012-12-05  Joseph Pecoraro  <pecoraro@apple.com>
-
-        Remove stale check in check-for-webkit-framework-include-consistency
-        https://bugs.webkit.org/show_bug.cgi?id=103775
-
-        Reviewed by David Kilzer.
-
-        The underlying issue was fixed in r81173.
-
-        * Scripts/check-for-webkit-framework-include-consistency:
-
-2012-12-05  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: simplify the finding of tests to retry
-        https://bugs.webkit.org/show_bug.cgi?id=104067
-
-        Reviewed by Ryosuke Niwa.
-
-        I think this makes the code a little clearer; note that
-        we were no longer using the include_missing flag.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.run):
-        (Manager._failed_test_names):
-
-2012-12-05  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: remove two unused parameters from a function
-        https://bugs.webkit.org/show_bug.cgi?id=104059
-
-        Reviewed by Ryosuke Niwa.
-
-        Also remove an old, stale FIXME.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (interpret_test_failures):
-        (summarize_results):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ResultSummaryTest.test_interpret_test_failures):
-
-2012-12-05  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: return result_summaries from LayoutTestRunner.run_tests()
-        https://bugs.webkit.org/show_bug.cgi?id=104051
-
-        Reviewed by Ojan Vafai.
-
-        This patch completes the refactoring that makes the result summary      
-        an object returned from the layout test runner, rather than having      
-        it passed in and modified. This makes the split of duties between       
-        the manager and runner clearer and makes the data flow more             
-        functionally.                                                           
-
-        Also clean up some minor lint issues.
-
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner.py:
-        (LayoutTestRunner.__init__):
-        (LayoutTestRunner.run_tests):
-        (LayoutTestRunner._mark_interrupted_tests_as_skipped):
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner_unittest.py:
-        (FakePrinter.print_expected):
-        (LockCheckingRunner.__init__):
-        (LayoutTestRunnerTests._runner):
-        (LayoutTestRunnerTests._run_tests):
-        (LayoutTestRunnerTests.test_interrupt_if_at_failure_limits):
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.__init__):
-        (Manager.run):
-        (Manager._run_tests):
-
-2012-12-05  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: move creation of the resultsummary objects into Manager._run_tests()
-        https://bugs.webkit.org/show_bug.cgi?id=104048
-
-        Reviewed by Ojan Vafai.
-
-        This is a preparatory step to making the resultsummary just get
-        returned from the layout_test_runner; this does most of manager-side
-        changes.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._prepare_lists):
-        (Manager.run):
-        (Manager._run_tests):
-
-2012-12-05  Leo Yang  <leoyang@rim.com>
-
-        [BlackBerry] Enable CSS_IMAGE_RESOLUTION
-        https://bugs.webkit.org/show_bug.cgi?id=104132
-
-        Reviewed by Yong Li.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-12-05  Filip Pizlo  <fpizlo@apple.com>
-
-        JSC profiler should not count executions of op_call_put_result because doing so changes DFG codegen
-        https://bugs.webkit.org/show_bug.cgi?id=104102
-
-        Reviewed by Oliver Hunt.
-
-        Modify the profiler to not output counts for op_call_put_result, since there
-        won't be any. Also fix a few weird bugs, like providing better error reporting
-        when you type something incorrectly and not reporting counts for slow paths
-        in the old JIT since those counts are actually not what you think they are
-        (we don't actually count slow path executions separately).
-
-        * Scripts/display-profiler-output:
-
-2012-12-05  Andras Becsi  <andras.becsi@digia.com>
-
-        Fix compilation for Qt5.0.0 stable branch.
-        https://bugs.webkit.org/show_bug.cgi?id=103870
-
-        Reviewed by Simon Hausmann.
-
-        Fix the use of renamed QWindow functions.
-        Patch by Andras Becsi <andras.becsi@digia.com>
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::onTitleChanged):
-        * MiniBrowser/qt/raw/View.cpp:
-        (View::View):
-
-2012-12-05  Jussi Kukkonen  <jussi.kukkonen@intel.com>
-
-        [WK2] InjectedBundle should check Intent url for null
-        https://bugs.webkit.org/show_bug.cgi?id=104117
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        WKIntentServiceInfoCopyHref() can return null, we need to check
-        for that in InjectedBundlePage::registerIntentServiceForFrame()
-        to avoid crashing.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::registerIntentServiceForFrame):
-
-2012-12-04  Jonathan Dong  <jonathan.dong@torchmobile.com.cn>
-
-        Change email address of Jonathan Dong
-        https://bugs.webkit.org/show_bug.cgi?id=103976
-
-        Unreviewed, change my email address from jonathan.dong@torchmobile.com.cn
-        to jonathan.dong.webkit@gmail.com in committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-12-04  Xiaobo Wang  <xbwang@torchmobile.com.cn>
-
-        [BlackBerry] DRT - Tests under "dumpAsText" directory should be dumped as text
-        https://bugs.webkit.org/show_bug.cgi?id=103986
-
-        Reviewed by Rob Buis.
-
-        Also move declaration of webSettingTransaction to before any WebSettings
-        ::setXXX() calls so that it works as expected (commit only once in the
-        function scope).
-
-        * DumpRenderTree/blackberry/DumpRenderTree.cpp:
-        (shouldDumpAsText):
-        (BlackBerry::WebKit::DumpRenderTree::resetToConsistentStateBeforeTesting):
-
-2012-12-04  Filip Pizlo  <fpizlo@apple.com>
-
-        display-profiler-output should be able to show source code
-        https://bugs.webkit.org/show_bug.cgi?id=104073
-
-        Reviewed by Oliver Hunt.
-
-        Display source code in the summary, using a one-line shortening.
-
-        * Scripts/display-profiler-output:
-
-2012-12-04  Filip Pizlo  <fpizlo@apple.com>
-
-        display-profiler-output should not use reflective infocation to resolve command names
-
-        Rubber stamped by Mark Hahnenberg.
-
-        Reflection is amazing, but here it was just kind of a bit much.
-
-        * Scripts/display-profiler-output:
-
-2012-12-02  Filip Pizlo  <fpizlo@apple.com>
-
-        JSC should be able to report profiling data associated with the IR dumps and disassembly
-        https://bugs.webkit.org/show_bug.cgi?id=102999
-
-        Reviewed by Gavin Barraclough.
-
-        Added a tool that allows you to grok the output from JSC's new profiler. Currently,
-        this still gets confused a bit about the execution counts of a method running
-        standalone versus a method running inlined, but other than that, it's pretty cool.
-        See the attached "sampling profiling session" attached to the bug to see it in
-        action.
-        
-        Also had to feed EFL's build system.
-
-        * DumpRenderTree/efl/CMakeLists.txt:
-        * Scripts/display-profiler-output: Added.
-
-2012-12-04  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: fix total number of tests computed in the result summary
-        https://bugs.webkit.org/show_bug.cgi?id=104061
-
-        Unreviewed, build fix.
-
-        One of the recent changes to the resultsummary refactoring caused
-        us to not include the number of skipped tests in the total number
-        of tests, throwing off the totals printed in print_one_line_summary().
-
-        Unfortunately, given the current state of the code it is difficult
-        to construct an accurate unit test for this. I have verified the
-        fix by hand, and will write a test once the remaining refactoring
-        patches land, at which point it will be trivial to test it.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._prepare_lists):
-
-2012-12-04  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt is not returning the exit status properly
-        https://bugs.webkit.org/show_bug.cgi?id=103830
-
-        Unreviewed, build fix.
-
-        The fix in r136474 wasn't quite right either, and would return
-        the correct exceptional status, but not the correct failing status.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2012-12-04  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: make paths and test_names passed arguments in Manager._prepare_lists et al
-        https://bugs.webkit.org/show_bug.cgi?id=104047
-
-        Reviewed by Eric Seidel.
-
-        The code becomes cleaner if we are just passing values around rather
-        than hanging them off the manager object, helps move _prepare_lists()
-        to a pure function, and is needed to eventually make the
-        result_summary object something returned from runner.run_tests()
-        (note that two more patches are needed for that to happen).
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.__init__):
-        (Manager._http_tests):
-        (Manager._prepare_lists):
-        (Manager.needs_servers):
-        (Manager._set_up_run):
-        (Manager.run):
-        (Manager._run_tests):
-        (Manager._upload_json_files):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ManagerTest.test_needs_servers.get_manager):
-        (ManagerTest.test_needs_servers):
-        (ManagerTest.integration_test_needs_servers.get_manager):
-        (ManagerTest.integration_test_needs_servers):
-        (ManagerTest.test_look_for_new_crash_logs.get_manager):
-        (ManagerTest):
-        (ManagerTest.test_look_for_new_crash_logs):
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        (JSONLayoutResultsGenerator.__init__):
-        (JSONLayoutResultsGenerator._get_modifier_char):
-
-2012-12-04  Adam Barth  <abarth@webkit.org>
-
-        commit-queue can get stuck with a local commit
-        https://bugs.webkit.org/show_bug.cgi?id=104032
-
-        Reviewed by Dirk Pranke.
-
-        Previously the commit-queue would only clean down to HEAD. If the
-        commit-queue gets interrupted in the middle of a commit (e.g., after
-        the local commit but before the dcommit), then it can end up with a
-        patch locally committed. That patch will then prevent the commit-queue
-        from functioning.
-
-        This patch teaches the commit-queue to clean down to the merge base,
-        which will remove any local commits.
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        (Git.working_directory_is_clean):
-        (Git.clean_working_directory):
-        * Scripts/webkitpy/tool/commands/roll_unittest.py:
-        * Scripts/webkitpy/tool/steps/commit.py:
-        (Commit._commit_warning):
-        (Commit.run):
-
-2012-12-04  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: store only the total number of tests in the result summary
-        https://bugs.webkit.org/show_bug.cgi?id=103963
-
-        Reviewed by Ryosuke Niwa.
-
-        The result summary only needs the total number of tests that will
-        be run (including repetitions) in order to provide the correct stats;
-        it doesn't actually need to know how many unique tests there are, or
-        or how many repetitions there are.
-
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner_unittest.py:
-        (LayoutTestRunnerTests._result_summary):
-        (LayoutTestRunnerTests.test_update_summary_with_result):
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._prepare_lists):
-        (Manager.run):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ManagerTest.test_look_for_new_crash_logs):
-        (ResultSummaryTest.get_result_summary):
-        * Scripts/webkitpy/layout_tests/models/result_summary.py:
-        (ResultSummary.__init__):
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-        (Testprinter.get_result_summary):
-
-2012-12-04  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: do less work when ctrl-c'ed
-        https://bugs.webkit.org/show_bug.cgi?id=103961
-
-        Reviewed by Ryosuke Niwa.
-
-        Do less work when we are ctrl-c'ed, because the statistics aren't
-        that useful anyway. While we're at it, modify summarize_results
-        to be aware that we don't always retry results (instead of pretending
-        that the retry produced the same results the initial run did).
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (summarize_results):
-        (Manager.run):
-
-2012-12-04  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: result summaries should not require a list of tests to skip
-        https://bugs.webkit.org/show_bug.cgi?id=103951
-
-        Reviewed by Ryosuke Niwa.
-
-        We shouldn't really be passing a list of tests to skip to the
-        ResultSummary objects; they should be handled like any other
-        test result as much as possible.
-
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner_unittest.py:
-        (LayoutTestRunnerTests._result_summary):
-        (LayoutTestRunnerTests.test_update_summary_with_result):
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._prepare_lists):
-        (Manager.run):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ManagerTest.test_look_for_new_crash_logs):
-        (ResultSummaryTest.get_result_summary):
-        * Scripts/webkitpy/layout_tests/models/result_summary.py:
-        (ResultSummary.__init__):
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectations):
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-        (Testprinter.get_result_summary):
-
-2012-12-04  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: derive per-thread, per-worker stats from result summaries
-        https://bugs.webkit.org/show_bug.cgi?id=103943
-
-        Reviewed by Ojan Vafai.
-
-        This patch changes the manager and printing code to pull more           
-        information from the ResultSummary object rather than tracking          
-        additional statistics on the side. This allows us to consolidate        
-        a bunch of logic and remove a bunch of free-floating lists and dicts of 
-        of values. We add the shard_name and worker_name to each TestResult,    
-        and then modify print_timing_statistics() and upload_json_files()       
-        to just need the result summaries.                                      
-
-        Note that this patch also changes the timing statistics slightly
-        so that the individual test times are the times to run just the
-        tests themselves (TestResult.test_run_time) and do not include the
-        times taken to run the ref tests, compute diffs, etc. The aggregated
-        per-worker and per-shard statistics still use the total time to
-        process each test (TestResult.total_run_time).
-
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner.py:
-        (LayoutTestRunner.__init__):
-        (LayoutTestRunner.run_tests):
-        (LayoutTestRunner._handle_finished_test_list):
-        (LayoutTestRunner._handle_finished_test):
-        (Worker.handle):
-        (Worker._run_test):
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (summarize_results):
-        (Manager.run):
-        (Manager._upload_json_files):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ResultSummaryTest.summarized_results):
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        (JSONLayoutResultsGenerator.__init__):
-        (JSONLayoutResultsGenerator._get_test_timing):
-        * Scripts/webkitpy/layout_tests/models/test_results.py:
-        (TestResult.__init__):
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (Printer.print_results):
-        (Printer._print_timing_statistics):
-        (Printer):
-        (Printer._print_worker_statistics):
-        (Printer._print_aggregate_test_statistics):
-        (Printer._print_individual_test_times):
-        (Printer._print_directory_timings):
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-        (Testprinter.test_print_unexpected_results.get_unexpected_results):
-        (Testprinter):
-
-2012-12-04  Adam Barth  <abarth@webkit.org>
-
-        Remove obsolete code from webkitpy
-        https://bugs.webkit.org/show_bug.cgi?id=104029
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/tool/bot/commitqueuetask.py:
-        (CommitQueueTask.run):
-        * Scripts/webkitpy/tool/steps/commit.py:
-        (Commit.options):
-        * Scripts/webkitpy/tool/steps/options.py:
-        (Options):
-
-2012-12-04  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move WebPreferences and methods for modifying them to the TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=103841
-
-        Reviewed by Darin Fisher.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        (DRTTestRunner::reset):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/TestRunner/public/WebPreferences.h: Renamed from Tools/DumpRenderTree/chromium/WebPreferences.h.
-        (WebKit):
-        (WebTestRunner):
-        (WebPreferences):
-        (WebTestRunner::WebPreferences::WebPreferences):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestRunner):
-        (WebTestDelegate):
-        (WebTestRunner::WebTestDelegate::localFileToDataURL):
-        (WebTestRunner::WebTestDelegate::rewriteLayoutTestsURL):
-        (WebTestRunner::WebTestDelegate::preferences):
-        (WebTestRunner::WebTestDelegate::applyPreferences):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner::TestRunner::setUserStyleSheetEnabled):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::setUserStyleSheetLocation):
-        (WebTestRunner::TestRunner::setAuthorAndUserStylesEnabled):
-        (WebTestRunner::TestRunner::setPopupBlockingEnabled):
-        (WebTestRunner::TestRunner::setJavaScriptCanAccessClipboard):
-        (WebTestRunner::TestRunner::setXSSAuditorEnabled):
-        (WebTestRunner::TestRunner::setAllowUniversalAccessFromFileURLs):
-        (WebTestRunner::TestRunner::setAllowFileAccessFromFileURLs):
-        (WebTestRunner::TestRunner::overridePreference):
-        (WebTestRunner::TestRunner::setPluginsEnabled):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/WebPreferences.cpp: Renamed from Tools/DumpRenderTree/chromium/WebPreferences.cpp.
-        (WebTestRunner::WebPreferences::reset):
-        (WebTestRunner):
-        (WebTestRunner::WebPreferences::applyTo):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::preferences):
-        (TestShell):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::localFileToDataURL):
-        (WebViewHost::rewriteLayoutTestsURL):
-        (WebViewHost::preferences):
-        (WebViewHost::applyPreferences):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-12-04  Zan Dobersek  <zandobersek@gmail.com>
-
-        Many webkitpy unit tests can be run standalone, are executable
-        https://bugs.webkit.org/show_bug.cgi?id=103900
-
-        Reviewed by Eric Seidel.
-
-        There's no need anymore to run unit tests in standalone mode as they
-        are now handled by test-webkitpy in a formidable fashion. This makes
-        it possible for this patch to remove the following unnecessary bits:
-        - remove shebang lines from unit test files,
-        - remove calls to unittest.main(),
-        - make unit test files non-executable.
-
-        * Scripts/webkitpy/common/checkout/diff_parser_unittest.py:
-        (DiffParserTest.test_git_mnemonicprefix):
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-        (GitTestWithMock.test_push_local_commits_to_server_without_username_and_with_password):
-        * Scripts/webkitpy/common/config/build_unittest.py:
-        (ShouldBuildTest.test_should_build):
-        * Scripts/webkitpy/common/config/ports_unittest.py:
-        (DeprecatedPortTest.test_chromium_xvfb_port):
-        * Scripts/webkitpy/common/find_files_unittest.py:
-        (TestWinNormalize.test_win):
-        * Scripts/webkitpy/common/lru_cache_unittest.py:
-        (LRUCacheTest.test_set_again):
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-        (test_results_zip_url):
-        * Scripts/webkitpy/common/net/credentials_unittest.py:
-        (test_keyring_without_git_repo_nor_keychain):
-        * Scripts/webkitpy/common/net/omahaproxy_unittest.py:
-        (OmahaProxyTest.test_get_revisions):
-        * Scripts/webkitpy/common/net/unittestresults_unittest.py:
-        * Scripts/webkitpy/common/newstringio_unittest.py:
-        (NewStringIOTest.test_with):
-        * Scripts/webkitpy/common/read_checksum_from_png_unittest.py:
-        (ReadChecksumFromPngTest.test_read_checksum):
-        * Scripts/webkitpy/common/system/file_lock_integrationtest.py:
-        * Scripts/webkitpy/common/system/filesystem_mock_unittest.py:
-        (MockFileSystemTest.test_normpath):
-        * Scripts/webkitpy/common/system/filesystem_unittest.py:
-        (RealFileSystemTest.test_sep):
-        * Scripts/webkitpy/common/system/platforminfo_unittest.py:
-        (TestPlatformInfo.test_total_bytes_memory):
-        * Scripts/webkitpy/common/system/zipfileset_unittest.py:
-        (ZipFileSetTest.test_namelist):
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner_unittest.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer_unittest.py:
-        (TestResultWriterTest.test_reftest_diff_image):
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator_unittest.py:
-        (JSONGeneratorTest.test_test_timings_trie):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (TestExpectationSerializationTests.test_string_whitespace_stripping):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (KeyCompareTest.test_test_key):
-        * Scripts/webkitpy/layout_tests/port/builders_unittest.py:
-        (BuildersTest.test_path_from_name):
-        * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:
-        (ChromiumAndroidTwoPortsTest.test_options_with_two_ports):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux_unittest.py:
-        (ChromiumLinuxPortTest.test_path_to_image_diff):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        (ChromiumMacPortTest.test_path_to_image_diff):
-        * Scripts/webkitpy/layout_tests/port/chromium_port_testcase.py:
-        (ChromiumPortLoggingTest.test_check_sys_deps):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumPortLoggingTest.test_check_sys_deps):
-        * Scripts/webkitpy/layout_tests/port/config_unittest.py:
-        (ConfigTest.test_default_configuration__scripterror):
-        * Scripts/webkitpy/layout_tests/port/driver_unittest.py:
-        (DriverTest.test_start_actually_starts):
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-        (FactoryTest.test_get_from_builder_name):
-        * Scripts/webkitpy/layout_tests/port/http_lock_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/image_diff_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        * Scripts/webkitpy/layout_tests/reftests/extract_reference_link_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (PortTest.disabled_test_mac_lion):
-        * Scripts/webkitpy/layout_tests/servers/http_server_integrationtest.py:
-        * Scripts/webkitpy/layout_tests/views/metered_stream_unittest.py:
-        (VerboseTest.test_log_args):
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-        (test_details):
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py:
-        (TestPerfTestFactory.test_inspector_test):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (test_parse_args):
-        * Scripts/webkitpy/style/checker_unittest.py:
-        * Scripts/webkitpy/style/checkers/changelog_unittest.py:
-        (ChangeLogCheckerTest.test_no_error):
-        * Scripts/webkitpy/style/checkers/common_unittest.py:
-        (TabCheckerTest.test_tab):
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (CppCheckerTest.test_ne):
-        * Scripts/webkitpy/style/checkers/jsonchecker_unittest.py:
-        * Scripts/webkitpy/style/checkers/png_unittest.py:
-        (PNGCheckerTest.test_check):
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-        * Scripts/webkitpy/style/checkers/text_unittest.py:
-        (TextCheckerTest.test_init):
-        * Scripts/webkitpy/style/checkers/watchlist_unittest.py:
-        * Scripts/webkitpy/style/checkers/xcodeproj_unittest.py:
-        (XcodeProjectFileCheckerTest.test_detect_development_region):
-        * Scripts/webkitpy/style/checkers/xml_unittest.py:
-        (XMLCheckerTest.test_no_error):
-        * Scripts/webkitpy/style/patchreader_unittest.py:
-        * Scripts/webkitpy/test/finder_unittest.py:
-        (FinderTest.test_paths):
-        * Scripts/webkitpy/test/runner_unittest.py:
-        (RunnerTest.test_run):
-        * Scripts/webkitpy/test/skip_unittest.py:
-        (SkipTest.test_skip_if_true):
-        * Scripts/webkitpy/thirdparty/__init___unittest.py:
-        (ThirdpartyTest.test_imports):
-        * Scripts/webkitpy/to_be_moved/update_webgl_conformance_tests_unittest.py:
-        (TestTranslation.test_include_rewriting):
-        * Scripts/webkitpy/tool/bot/queueengine_unittest.py:
-        (QueueEngineTest.tearDown):
-        * Scripts/webkitpy/tool/grammar_unittest.py:
-        (GrammarTest.test_join_with_separators):
-        * Scripts/webkitpy/tool/mocktool_unittest.py:
-        (MockOptionsTest.test_kwarg__set):
-        * Scripts/webkitpy/tool/multicommandtool_unittest.py:
-        (test_command_help):
-
-2012-12-04  Zan Dobersek  <zandobersek@gmail.com>
-
-        Many webkitpy module files are executable, have shebang line
-        https://bugs.webkit.org/show_bug.cgi?id=103985
-
-        Reviewed by Dirk Pranke.
-
-        Remove the executable bit from webkitpy module files that are
-        unnecessarily executable. Remove the shebang line from webkitpy
-        module files, they are of no use. Only non-third-party files are
-        changed.
-
-        * Scripts/webkitpy/bindings/main.py:
-        * Scripts/webkitpy/common/config/watchlist:
-        * Scripts/webkitpy/common/find_files.py:
-        * Scripts/webkitpy/common/lru_cache.py:
-        * Scripts/webkitpy/common/multiprocessing_bootstrap.py:
-        * Scripts/webkitpy/common/net/file_uploader.py:
-        * Scripts/webkitpy/common/newstringio.py:
-        * Scripts/webkitpy/common/read_checksum_from_png.py:
-        * Scripts/webkitpy/common/system/autoinstall.py:
-        * Scripts/webkitpy/common/system/file_lock.py:
-        * Scripts/webkitpy/common/system/file_lock_mock.py:
-        * Scripts/webkitpy/common/version_check.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/models/test_failures.py:
-        * Scripts/webkitpy/layout_tests/models/test_input.py:
-        * Scripts/webkitpy/layout_tests/port/__init__.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/config.py:
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        * Scripts/webkitpy/layout_tests/port/http_lock.py:
-        * Scripts/webkitpy/layout_tests/port/image_diff.py:
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/servers/apache_http_server.py:
-        * Scripts/webkitpy/layout_tests/servers/http_server.py:
-        * Scripts/webkitpy/layout_tests/servers/http_server_base.py:
-        * Scripts/webkitpy/layout_tests/servers/websocket_server.py:
-        * Scripts/webkitpy/layout_tests/views/metered_stream.py:
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        * Scripts/webkitpy/style/checkers/changelog.py:
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        * Scripts/webkitpy/style/checkers/xcodeproj.py:
-        * Scripts/webkitpy/to_be_moved/update_webgl_conformance_tests.py:
-        (main): There's no need to run this module in standalone because
-        it's wrapped by the Tools/Scripts/update-webgl-conformance-tests script.
-        * Scripts/webkitpy/tool/commands/upload.py:
-        * Scripts/webkitpy/tool/comments.py:
-        * Scripts/webkitpy/tool/main.py:
-
-2012-12-04  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Add a Chromium Android Release (Perf) to the list of perf. bots.
-
-        * BuildSlaveSupport/build.webkit.org-config/templates/root.html:
-
-2012-12-04  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] Insert the jhbuild wrapper command at the beginning of the command list
-        https://bugs.webkit.org/show_bug.cgi?id=103991
-
-        Reviewed by Martin Robinson.
-
-        Insert the Tools/gtk/run-with-jhbuild wrapper at the beginning of the
-        command that's being formed in multiprocessing bootstrap. The wrapper is
-        an executable Python script while the command being wrapped perhaps isn't
-        and therefore requires the Python interpreter to be listed at the beginning
-        of the command sublist that is then executed by the wrapper.
-
-        Specifically, the webkitpy/layout_tests/run_webkit_tests.py module file
-        is about to lose the executable bit and the Python-signaling shebang line.
-        The Jhbuild wrapper simply executes the command that's passed, but that errs
-        in this case unless the Python executable is executed and the module file
-        is passed to it as an argument.
-
-        * Scripts/webkitpy/common/multiprocessing_bootstrap.py:
-        (run):
-
-2012-12-04  Peter Beverloo  <peter@chromium.org>
-
-        Add the Chromium Android Release (Perf) bot
-        https://bugs.webkit.org/show_bug.cgi?id=103891
-
-        Reviewed by Eric Seidel.
-
-        Add configuration for the bot itself. It will be triggered by the Chromium
-        Android Release builder. When running for Android, the DownloadAndPerfTest
-        factory will also add the OutputAndroidDeviceStatus step.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (DownloadAndPerfTestFactory.__init__):
-
-2012-12-04  Peter Beverloo  <peter@chromium.org>
-
-        [Chromium] The ChromiumAndroidDriver constructor should not rely on adb being available
-        https://bugs.webkit.org/show_bug.cgi?id=103758
-
-        Reviewed by Eric Seidel.
-
-        Lazily initialize the adb command parameters rather than initializing it in the
-        constructor now that there is an assert if adb is not available on the system and
-        we're not in a Chromium Android checkout.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidDriver.__init__):
-        (ChromiumAndroidDriver._push_file_if_needed):
-        (ChromiumAndroidDriver._run_adb_command):
-        (ChromiumAndroidDriver.cmd_line):
-        (ChromiumAndroidDriver._start_once):
-        (ChromiumAndroidDriver._read_prompt):
-        (ChromiumAndroidDriver):
-        (ChromiumAndroidDriver._adb_command):
-
-2012-12-03  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Dromaeo should report individual test result
-        https://bugs.webkit.org/show_bug.cgi?id=99800
-
-        Reviewed by Eric Seidel.
-
-        Ignore subtest results spit out by Dromaeo tests.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest): Added a line to ignore.
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py:
-        (MainTest.test_parse_output_with_subtests): Added.
-
-2012-12-03  Zan Dobersek  <zandobersek@gmail.com>
-
-        Unreviewed, functionality fix after r136437.
-
-        Calling sys.exit actually raises a SystemExit exception that
-        is then handled in the second block and causes the script to
-        return an 'exceptional' exit code rather than the code presenting
-        the number of failed tests.
-
-        This is just a temporary fix to get the faultless bots green while
-        they are unnecessarily red at the moment. The problem and a proper
-        fix will be properly addressed.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2012-12-03  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r136460.
-        http://trac.webkit.org/changeset/136460
-        https://bugs.webkit.org/show_bug.cgi?id=103958
-
-        This patch caused compile error when building DumpRenderTree
-        (Requested by tasak on #webkit).
-
-        * Scripts/webkitpy/common/config/build_unittest.py:
-        (ShouldBuildTest):
-
-2012-12-03  Scott Violet  <sky@chromium.org>
-
-        [chromium] Remove linux theme related files and switch to default
-        https://bugs.webkit.org/show_bug.cgi?id=103897
-
-        Reviewed by Darin Fisher.
-
-        * Scripts/webkitpy/common/config/build_unittest.py:
-        (ShouldBuildTest): linux->default
-
-2012-12-03  Roger Fong  <roger_fong@apple.com>
-
-        Disable WebKit2 API tests on Apple Windows port.
-        https://bugs.webkit.org/show_bug.cgi?id=103929.
-
-        Reviewed by Timothy Horton.
-
-        * Scripts/run-api-tests:
-        (runTestsBySuite):
-
-2012-12-03  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy's run_webkit_tests should initialize the printer earlier on
-        https://bugs.webkit.org/show_bug.cgi?id=103661
-
-        Reviewed by Eric Seidel.
-
-        Initialize the printer before computing the derived options
-        from the command line arguments, so that we can safely log from
-        port methods.
-
-        Also clean up a few miscellaneous lint warnings.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.path_to_adb):
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.default_child_processes):
-        (MacPort.sample_process):
-        (MacPort.start_helper):
-        (MacPort.stop_helper):
-        (MacPort.nm_command):
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        (test_default_child_processes):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (run):
-        (_set_up_derived_options):
-
-2012-12-03  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: autoinstaller is failing on windows
-        https://bugs.webkit.org/show_bug.cgi?id=103699
-
-        Reviewed by Tony Chang.
-
-        Attempt to fix the python autoinstaller to work for pylint on win32
-        again ... it turns out one of the dependent packages contains
-        a write-protected test file and windows will choke when it tries to move
-        it into place. Fortunately we can just delete the file prior to
-        installing it in the final location, but we have to jump through
-        a couple of hoops to do so.
-
-        Also, make sure that we're flattening nested module names like
-        "logilab/common" into either safe basenames (logilab_common) or
-        host-specific subdirs (logilab\common) as needed.
-
-        * Scripts/webkitpy/common/system/autoinstall.py:
-        (AutoInstaller._url_downloaded_path):
-        (AutoInstaller._install):
-        (AutoInstaller.install):
-        * Scripts/webkitpy/thirdparty/__init__.py:
-        (AutoinstallImportHook._install_pylint):
-
-2012-12-03  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: clean up exception propagation / handling for interrupts and early exits
-        https://bugs.webkit.org/show_bug.cgi?id=103830
-
-        Reviewed by Ojan Vafai.
-
-        The code for propagating early exits out of the test run was
-        convoluted and hard to follow. By adjusting the WorkerException to
-        derive from BaseException rather than Exception (which is a fair
-        way of representing an error that was really unexpected/unrecoverable
-        anyway) and pushing the TestRunInterruptedException into the
-        ResultSummary (which is also fair since it was more of a result
-        than an exception) this allows us to consolidate and clean up
-        a bunch of the try/catch logic and pass fewer state flags around.
-
-        There are no real functional changes to this patch; there's an
-        API change in that we stop exporting TestRunInterruptedException
-        and WorkerException out of the Manager, and the existence of the
-        MessagePool is now completely hidden.
-
-        * Scripts/webkitpy/common/message_pool.py:
-        (WorkerException):
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner.py:
-        (LayoutTestRunner.run_tests):
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (summarize_results):
-        (Manager.run):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ResultSummaryTest.summarized_results):
-        * Scripts/webkitpy/layout_tests/models/result_summary.py:
-        (ResultSummary.__init__):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (run):
-        (main):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_exception_raised.of):
-        (MainTest.test_exception_raised):
-        (MainTest.test_run_force):
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-        (Testprinter.test_print_unexpected_results.get_unexpected_results):
-        (Testprinter):
-
-2012-12-03  Julien BRIANCEAU   <jbrianceau@nds.com>
-
-        Add Qt/SH4 build slave to build.webkit.org
-        https://bugs.webkit.org/show_bug.cgi?id=103384
-
-        Reviewed by Csaba Osztrogonác.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-12-03  Alexis Menard  <alexis@webkit.org>
-
-        Enable CSS3 background-position offset by default
-        https://bugs.webkit.org/show_bug.cgi?id=103917
-
-        Reviewed by Benjamin Poulain.
-
-        Even though each port may enable or not the feature we still need
-        to pass it at configure time otherwise it will be disabled.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-12-03  Sudarsana Nagineni  <sudarsana.nagineni@intel.com>
-
-        Unreviewed. Adding myself to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-12-03  Laszlo Gombos  <l.gombos@samsung.com>
-
-        [CMake] Enable building WebKit2-only build for the EFL port
-        https://bugs.webkit.org/show_bug.cgi?id=103820
-
-        Reviewed by Gyuyoung Kim.
-
-        Set ENABLE_WEBKIT2 to OFF if build-webkit was run with --no-webkit2.
-        Never set ENABLE_WEBKIT in build-webkit. This will simplyfy invoking
-        cmake directly. Initialize $cmakeArgs to avoid potential
-        warnings when running the script.
-
-        * Scripts/build-webkit:
-
-2012-12-03  Tommy Widenflycht  <tommyw@google.com>
-
-        Speech Recognition API: Update SpeechRecognitionEvent to match the specification
-        https://bugs.webkit.org/show_bug.cgi?id=103407
-
-        Reviewed by Kentaro Hara.
-
-        Changing the mock to use the new results delivery API.
-
-        * DumpRenderTree/chromium/MockWebSpeechRecognizer.cpp:
-
-2012-12-03  Alexis Menard  <alexis@webkit.org>
-
-        [Qt] Enable CSS3 background-position offsets by default.
-        https://bugs.webkit.org/show_bug.cgi?id=103877
-
-        Reviewed by Tor Arne Vestbø.
-
-        Enable by default CSS3 background-position offsets.
-
-        * qmake/mkspecs/features/features.pri:
-
-2012-12-03  KyungTae Kim  <ktf.kim@samsung.com>
-
-        [EFL][WK2] Use float variable for zoom levels for MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=103863
-
-        Reviewed by Gyuyoung Kim.
-
-        Use float instead of int for zoomLevels variables for a clearer expression
-
-        * MiniBrowser/efl/main.c:
-        (on_key_down):
-
-2012-12-02  KyungTae Kim  <ktf.kim@samsung.com>
-
-        [EFL][WK2] Add support for a zoom level setting to MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=99285
-
-        Reviewed by Gyuyoung Kim.
-
-         Add support for a zoom level setting to MiniBrowser.
-         Shortcuts for setting operations are same as common browsers:
-         Ctrl + '+' to zoom in, Ctrl + '-' to zoom out and Ctrl + '0' to zoom to default.
-
-        * MiniBrowser/efl/main.c:
-        (on_key_down):
-
-2012-12-02  KyungTae Kim  <ktf.kim@samsung.com>
-
-        [EFL][WK2] ECORE_GETOPT_VALUE_BOOL need to be used for Eina_Bool
-        https://bugs.webkit.org/show_bug.cgi?id=103835
-
-        Reviewed by Kentaro Hara.
-
-        Because legacy_behavior_enabled is Eina_Bool, ECORE_GETOPT_VALUE_BOOL need to be used
-
-        * MiniBrowser/efl/main.c:
-        (elm_main):
-
-2012-12-02  Mike West  <mkwst@chromium.org>
-
-        Garden-o-matic shouldn't die when blank JSON results are received.
-        https://bugs.webkit.org/show_bug.cgi?id=103838
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base.js:
-            If the JSONP string doesn't contain '(' or ')', return an empty object.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base_unittests.js:
-            Check that this behavior stays in place.
-
-2012-12-02  Eric Seidel  <eric@webkit.org>
-
-        run-perf-tests --profile should use iprofiler instead of instruments on Mac
-        https://bugs.webkit.org/show_bug.cgi?id=103765
-
-        Unreviewed.  Updating the unittests after my previous change.
-
-        * Scripts/webkitpy/common/system/profiler_unittest.py:
-        (ProfilerFactoryTest.test_basic):
-
-2012-12-02  Julie Parent  <jparent@chromium.org>
-
-        Remove dead code in flakiness dashboard for obsolete buildDir option
-        https://bugs.webkit.org/show_bug.cgi?id=103792
-
-        Reviewed by Dirk Pranke.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (initBuilders):
-
-2012-12-02  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: clean up logic for retrying failed tests a bit
-        https://bugs.webkit.org/show_bug.cgi?id=103829
-
-        Reviewed by Ojan Vafai.
-
-        The code for determining when to retry test failures and
-        show the results.html file was awkward and could stand some
-        cleaning up. This patch should have no functional changes.
-
-        The routine called _get_failures() returned a dict of test names
-        to failure types, but we only ever used the names, so I've converted
-        it to return a list (and renamed it); also, the show_results_html()
-        file was calling that routine to figure out if anything failed, when
-        the information was already in the result_summary (as either
-        unexpected_results or total_failures), so we were doing unnecessary work.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.__init__):
-        (Manager.run):
-        (Manager._run_tests):
-        (Manager._failed_test_names):
-        (Manager._copy_results_html_file):
-
-2012-12-02  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: remove unused methods in manager.py
-        https://bugs.webkit.org/show_bug.cgi?id=103828
-
-        Reviewed by Eric Seidel.
-
-        These two methods weren't being called by anything and were no
-        longer needed.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._get_failures):
-        (Manager._upload_json_files):
-
-2012-12-02  Laszlo Gombos  <l.gombos@samsung.com>
-
-        Correct the spelling of the cmakeargs argument
-        https://bugs.webkit.org/show_bug.cgi?id=103814
-
-        Reviewed by Darin Adler.
-
-        The script expects cmakeargs (plural), so lets get the
-        documentation of the script report the same.
-
-        * Scripts/build-webkit:
-
-2012-12-02  Mike West  <mkwst@chromium.org>
-
-        [gtk] Enable the CSP_NEXT runtime flag.
-        https://bugs.webkit.org/show_bug.cgi?id=103810
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-            Turn on the CSP_NEXT runtime flag when running tests under GTK.
-
-2012-12-02  Eric Seidel  <eric@webkit.org>
-
-        run-perf-tests --profile should use iprofiler instead of instruments on Mac
-        https://bugs.webkit.org/show_bug.cgi?id=103765
-
-        Reviewed by Ryosuke Niwa.
-
-        Stephanie pointed out that iprofiler is the newer command-line interface
-        to replace /usr/bin/instruments in Instruments 4 (which according to the
-        interblags is supported on everything since 10.6.6), so I've moved --profile
-        to use iprofiler on Mac.
-
-        I also made the IProfiler class wait for iprofiler to complete so that
-        iprofiler won't continue running after run-perf-tests is complete (and
-        spam over the top of your shell output).
-
-        There are a couple of "got-chas" to this approach:
-        1.  iprofiler will ask for your password the first time you run it, which may
-            cause your first test to fail.  /usr/bin/instruments doesn't seem to do that.
-        2.  iprofiler has nice (but kinda awkward for our purposes) support for separate
-            directory and basename arguments, making IProfiler a somewhat awkward
-            baseclass of SingleFileOutputProfiler
-
-        I suspect we'll iterate from here.  It does seem slightly faster than
-        /usr/bin/instruments was.
-
-        * Scripts/webkitpy/common/system/profiler.py:
-        (ProfilerFactory.create_profiler):
-        (IProfiler):
-        (IProfiler.__init__):
-        (IProfiler.attach_to_pid):
-
-2012-12-02  Yongjun Zhang  <yongjun_zhang@apple.com>
-
-        Need a method to close all idle localstorage databases immediately.
-        https://bugs.webkit.org/show_bug.cgi?id=103469
-
-        Reviewed by David Kilzer.
-
-        Add an JS method to TestRunner, to enable testing closing idle local storage databases in
-        DumpRenderTree layout tests.
-
-        * DumpRenderTree/TestRunner.cpp:
-        (closeIdleLocalStorageDatabasesCallback):
-        (TestRunner::staticFunctions):
-        * DumpRenderTree/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp:
-        (TestRunner::closeIdleLocalStorageDatabases):
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        (TestRunner::closeIdleLocalStorageDatabases):
-        * DumpRenderTree/gtk/TestRunnerGtk.cpp:
-        (TestRunner::closeIdleLocalStorageDatabases):
-        * DumpRenderTree/mac/TestRunnerMac.mm:
-        (TestRunner::closeIdleLocalStorageDatabases):
-        * DumpRenderTree/win/TestRunnerWin.cpp:
-        (TestRunner::closeIdleLocalStorageDatabases):
-        * DumpRenderTree/wx/TestRunnerWx.cpp:
-        (TestRunner::closeIdleLocalStorageDatabases):
-
-2012-12-02  Yael Aharon  <yael.aharon@intel.com>
-
-        [EFL][WK2] MiniBrowser should have a legacy mode
-        https://bugs.webkit.org/show_bug.cgi?id=103679
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add an option to start MiniBrowser in legacy mode.
-
-        * MiniBrowser/efl/main.c:
-        (window_create):
-        (elm_main):
-
-2012-12-02  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r136236.
-        http://trac.webkit.org/changeset/136236
-        https://bugs.webkit.org/show_bug.cgi?id=103833
-
-        [chromium] Flakey crashes in SpeechRecognitionEvent::emma
-        during GC. (Requested by mkwst on #webkit).
-
-        * DumpRenderTree/chromium/MockWebSpeechRecognizer.cpp:
-
-2012-12-01  Zan Dobersek  <zandobersek@gmail.com>
-
-        [XvfbDriver] XvfbDriverTest.test_next_free_display is flaky on builders using XvfbDriver
-        https://bugs.webkit.org/show_bug.cgi?id=103806
-
-        Reviewed by Dirk Pranke.
-
-        There are occasional mishaps on builders where XvfbDriver doesn't properly
-        clean up the Xvfb instance it was managing so the related guard lock files
-        are still existing when the webkitpy unit tests are run. This can cause failures
-        in XvfbDriverTest.test_next_free_display as the test tries to acquire displays
-        with a specific number but is unable to due to the stale locks.
-
-        The solution to this is to use MockFileLock when inside unit test. This is achievable
-        by creating a file lock through the SystemHost instance connected to the Port object,
-        the latter available to the Driver.
-
-        * Scripts/webkitpy/common/system/file_lock_mock.py:
-        (MockFileLock.acquire_lock): Return True to signal lock acquiring succeeded.
-        (MockFileLock.release_lock): Return True to signal lock releasing succeeded.
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver.py:
-        (XvfbDriver._next_free_display): Create the file lock through a mockable way.
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver_unittest.py:
-        (XvfbDriverTest.test_next_free_display): Enable back the unit test.
-
-2012-12-01  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] A11y tests in WK2 report badly-formatted AX roles
-        https://bugs.webkit.org/show_bug.cgi?id=102947
-
-        Reviewed by Xan Lopez.
-
-        As in DRT, convert the ATK accessibility roles to corresponding AXRoles.
-        These are expected in both tests and their baselines.
-
-        * WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp:
-        (WTR::roleToString):
-        (WTR):
-        (WTR::AccessibilityUIElement::role):
-
-2012-11-30  Mike West  <mkwst@chromium.org>
-
-        CSP 1.1: Make the CSP_NEXT flag runtime enabled.
-        https://bugs.webkit.org/show_bug.cgi?id=103652
-
-        Reviewed by Adam Barth.
-
-        Ensures that the new SecurityPolicy runtime flag is enabled for Chromium's tests.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-
-2012-11-30  Roger Fong  <roger_fong@apple.com>
-
-        Unreviewed. Removed temporary debugging change from DRT (r136300).
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (dump):
-
-2012-11-30  Roger Fong  <roger_fong@apple.com>
-
-        Unreviewed. Temporary change to DRT for debugging purposes.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (dump):
-
-2012-11-29  Tommy Widenflycht  <tommyw@google.com>
-
-        Speech Recognition API: Update SpeechRecognitionEvent to match the specification
-        https://bugs.webkit.org/show_bug.cgi?id=103407
-
-        Reviewed by Adam Barth.
-
-        Changing the mock to use the new results delivery API.
-
-        * DumpRenderTree/chromium/MockWebSpeechRecognizer.cpp:
-
-2012-11-30  Simon Hausmann  <simon.hausmann@digia.com>, Pierre Rossi  <pierre.rossi@digia.com>
-
-        [Qt] Separate Qt WebKit into Qt WebKit and Qt WebKit Widgets
-        https://bugs.webkit.org/show_bug.cgi?id=99314
-
-        Reviewed by Tor Arne Vestbø.
-
-        This big change separates QtWebKit into QtWebKit and QtWebKitWidgets as
-        shared libraries.
-
-        It's a big refactoring that mostly involves moving WebCore dependent
-        code into QtWebKit and accessing it through exported QWebFrameAdapter
-        and QWebPageAdapter classes.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::dump): Adapt to internal API changes.
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * Scripts/webkitpy/style/checker.py: Adapt Qt exceptions to new paths.
-        * Scripts/webkitpy/style/checker_unittest.py:
-        (GlobalVariablesTest.test_path_rules_specifier):
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/webkit_modules.prf:
-        * qmake/mkspecs/modules/webkitwidgets.prf: Removed.
-
-2012-11-30  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Unreviewed trivial fix.
-
-        Add empty.cpp back, it was removed accidentally by r129092.
-
-        * qmake/config.tests/gccdepends/empty.cpp: Added.
-
-2012-11-30  Tor Arne Vestbø  <tor.arne.vestbo@digia.com>
-
-        [Qt] Add support for prepare_docs and generate_docs
-
-        Follow-up to changes in Qt in how documentation is built.
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2012-11-30  Zan Dobersek  <zandobersek@gmail.com>
-
-        Finally remove webkitpy.common.system.deprecated_logging
-        https://bugs.webkit.org/show_bug.cgi?id=103624
-
-        Reviewed by Adam Barth.
-
-        Remove the deprecated logging module and its unit tests now that such logging is not
-        used anymore in webkitpy.
-
-        The tee and OutputTee classes are moved into a new module, webkitpy.common.system.outputtee.
-        The tee class is renamed to Tee to conform with the usual guidelines.
-
-        Only unit test for the Tee class is currently provided as the OutputTee is not currently
-        using the webkitpy Filesystem abstraction that would make its functionality testable.
-
-        * Scripts/webkitpy/common/system/executive.py: tee (now Tee) is now in a new module.
-        (Executive.run_and_throw_if_fail):
-        * Scripts/webkitpy/common/system/outputtee.py: Renamed from Tools/Scripts/webkitpy/common/system/deprecated_logging.py.
-        (Tee):
-        (Tee.__init__):
-        (Tee.write):
-        (OutputTee):
-        (OutputTee.__init__):
-        (OutputTee.add_log):
-        (OutputTee.remove_log):
-        (OutputTee._open_log_file):
-        (OutputTee._tee_outputs_to_files):
-        * Scripts/webkitpy/common/system/outputtee_unittest.py: Renamed from Tools/Scripts/webkitpy/common/system/deprecated_logging_unittest.py.
-        (SimpleTeeTest):
-        (SimpleTeeTest.test_simple_tee):
-        * Scripts/webkitpy/tool/bot/queueengine.py: OutputTee is now in a new module.
-        * Scripts/webkitpy/webkitpy.pyproj: Remove the deprecated_logging module and related unit test file.
-
-2012-11-30  Sudarsana Nagineni  <sudarsana.nagineni@intel.com>
-
-        [EFL][WK2] Add support for PlatformWebView::simulateRightClick() in TestWebKitAPI
-        https://bugs.webkit.org/show_bug.cgi?id=103634
-
-        Reviewed by Gyuyoung Kim.
-
-        Add support for PlatformWebView::simulateRightClick() and enable
-        WebKit2 API test HitTestResultNodeHandle.
-
-        * TestWebKitAPI/PlatformEfl.cmake:
-        * TestWebKitAPI/efl/PlatformWebView.cpp:
-        (TestWebKitAPI::PlatformWebView::simulateRightClick):
-        (TestWebKitAPI):
-
-2012-11-30  Mihai Maerean  <mmaerean@adobe.com>
-
-        [CSSRegions] when WebKit uses V8, there should be a single variable to store if the CSS Regions feature is enabled
-        https://bugs.webkit.org/show_bug.cgi?id=101192
-
-        Reviewed by Hajime Morita.
-
-        Removed the CSS Regions flag in Settings and switched to using the new flag I have added in RuntimeEnabledFeatures.
-
-        Tests: No new tests because there is no functional change.
-
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::applyTo):
-
-2012-11-29  Rafael Weinstein  <rafaelw@chromium.org>
-
-        [HTMLTemplateElement] Add feature flag
-        https://bugs.webkit.org/show_bug.cgi?id=103694
-
-        Reviewed by Adam Barth.
-
-        This flag will guard the implementation of the HTMLTemplateElement.
-        http://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/templates/index.html
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-11-29  Dirk Pranke  <dpranke@chromium.org>
-
-        Ignore errors when removing directories on win32 during autoinstall
-        https://bugs.webkit.org/show_bug.cgi?id=103699
-
-        Unreviewed, build fix.
-
-        I think this will work on win32; if not, I'll have to actually
-        reproduce this :). The problem is that the logilab files
-        appear to contain a write-protected file, and deleting those
-        is problematic on windows.
-
-        * Scripts/webkitpy/common/system/autoinstall.py:
-        (AutoInstaller._install):
-        (AutoInstaller.install):
-
-2012-11-29  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: autoinstaller is failing on windows
-        https://bugs.webkit.org/show_bug.cgi?id=103699
-
-        Unreviewed, build fix.
-
-        We're attempting to create directories with forward slashes in them;
-        this is a no-no on windows.
-
-        * Scripts/webkitpy/common/system/autoinstall.py:
-        (AutoInstaller._create_scratch_directory_inner):
-
-2012-11-29  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix python unit tests after r136158 (android port tests failing)
-        https://bugs.webkit.org/show_bug.cgi?id=103581
-
-        Unreviewed, build fix.
-
-        The unit tests apparently weren't ran for this patch; we failed
-        to update the mock executive calls out to adb to determine various
-        aspects of the environment, and were failing to create drivers.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:
-        (MockRunCommand.mock_run_command_fn):
-
-2012-11-29  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r136175 and r136177.
-        http://trac.webkit.org/changeset/136175
-        http://trac.webkit.org/changeset/136177
-        https://bugs.webkit.org/show_bug.cgi?id=103683
-
-        Changes did not correct Windows build. (Requested by bfulgham
-        on #webkit).
-
-        * TestWebKitAPI/Tests/WebCore/win/BitmapImage.cpp:
-
-2012-11-29  Brent Fulgham  <bfulgham@webkit.org>
-
-        [Windows, WinCairo] Unreviewed build correction. Correct debug
-        build case on build machine.
-
-        * TestWebKitAPI/Tests/WebCore/win/BitmapImage.cpp:
-
-2012-11-29  Brent Fulgham  <bfulgham@webkit.org>
-
-        [Windows, WinCairo] Unreviewed build correction. Hide the
-        unexported 'notSolidColor' symbol when testing against
-        the BitmapImage class to avoid having to deal with a
-        debug-only symbol in the Windows export definition file.
-
-        * TestWebKitAPI/Tests/WebCore/win/BitmapImage.cpp: 
-
-2012-11-29  Peter Beverloo  <peter@chromium.org>
-
-        run-perf-tests --chromium-android should not require adb in my path
-        https://bugs.webkit.org/show_bug.cgi?id=103581
-
-        Reviewed by Eric Seidel.
-
-        Remove the need to have "adb" available in the path for Layout and Performance
-        tests. We'll determine the versions of the "adb" version in path (if any) and
-        the one provided in the Chromium Android checkout. Unless the "adb" available
-        in the path is newer, the provided version will be used.
-
-        Some other minor nits addressed:
-        - The path_to_forwarder/path_to_md5sum should not be in the "private overrides"
-          section, as they're not overriding anything and are used by the driver.
-        - Make _restart_adb_as_root slightly more robust by waiting for the device
-          to come back online regardless of the output.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.__init__):
-        (ChromiumAndroidPort.check_build):
-        (ChromiumAndroidPort.path_to_adb):
-        (ChromiumAndroidPort):
-        (ChromiumAndroidPort.path_to_forwarder):
-        (ChromiumAndroidPort.path_to_md5sum):
-        (ChromiumAndroidPort._path_to_helper):
-        (ChromiumAndroidPort._determine_adb_version):
-        (ChromiumAndroidPort._get_devices):
-        (ChromiumAndroidDriver.__init__):
-        (ChromiumAndroidDriver._setup_md5sum_and_push_data_if_needed):
-        (ChromiumAndroidDriver._push_executable):
-        (ChromiumAndroidDriver._restart_adb_as_root):
-
-2012-11-29  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] [WebKit2] Embed the HTTP authentication dialog into the WebView
-        https://bugs.webkit.org/show_bug.cgi?id=103277
-
-        Reviewed by Carlos Garcia Campos.
-
-        Skip the new WebKit2GtkAuthenticationDialog files so that they are not processed
-        during gtkdoc generation.
-
-        * gtk/generate-gtkdoc:
-        (get_webkit2_options):
-
-2012-11-29  Eric Seidel  <eric@webkit.org>
-
-        run-perf-tests --chromium-android fails due to Skia INFO logging
-        https://bugs.webkit.org/show_bug.cgi?id=103585
-
-        Reviewed by Adam Barth.
-
-        Ignore all INFO logging from Chromium code.
-        Also added some basic testing of the ignored-stderr lines code.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest):
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py:
-        (MainTest.test_ignored_stderr_lines):
-
-2012-11-29  Sudarsana Nagineni  <sudarsana.nagineni@intel.com>
-
-        [EFL][WK2] Add support for PlatformWebView::simulateMouseMove() in TestWebKitAPI
-        https://bugs.webkit.org/show_bug.cgi?id=103252
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add support for PlatformWebView::simulateMouseMove() and enable
-        WebKit2 API test MouseMoveAfterCrash.
-
-        * TestWebKitAPI/PlatformEfl.cmake: Enable MouseMoveAfterCrash API
-        test.
-        * TestWebKitAPI/efl/PlatformWebView.cpp:
-        (TestWebKitAPI::onWebProcessCrashed): Handle 'webprocess,crashed' signal
-        to prevent loading an error page since the test case is reloading actual
-        page after web process has terminated and recovered.
-        (TestWebKitAPI):
-        (TestWebKitAPI::PlatformWebView::PlatformWebView):
-        (TestWebKitAPI::PlatformWebView::simulateMouseMove): Implemented.
-
-2012-11-29  Andras Becsi  <andras.becsi@digia.com>
-
-        [Qt] Fix installation of QtWebProcess binary
-        https://bugs.webkit.org/show_bug.cgi?id=101735
-
-        Reviewed by Simon Hausmann.
-
-        Add config test to detect the availability of support
-        for "program executables" in Qt (libexec).
-
-        This test can be removed after the Qt5 release.
-
-        * Tools.pro:
-        * qmake/mkspecs/features/features.prf:
-        * qmake/config.tests/libexecdir/libexecdir.cpp:
-        * qmake/config.tests/libexecdir/libexecdir.pro:
-
-2012-11-29  Eric Seidel  <eric@webkit.org>
-
-        run-perf-tests does not work when the layout test directory does not exist
-        https://bugs.webkit.org/show_bug.cgi?id=103572
-
-        Reviewed by Ryosuke Niwa.
-
-        Make sure that Profiler() calls maybe_make_directory for the output_dir
-        before ever using it.  It's a little awkward to create the directory
-        from the constructor, but its simplest that way as the various subclasses
-        all use the directory at different times.
-
-        Since this required having a filesystem in Profiler (and I didn't want
-        to grab inside Workspace to get one), I just made Profiler expect a
-        SystemHost instead of a separate filesystem, executive and workspace.
-
-        * Scripts/webkitpy/common/system/profiler.py:
-        (ProfilerFactory.create_profiler):
-        (Profiler.__init__):
-        (SingleFileOutputProfiler.__init__):
-        (GooglePProf.__init__):
-        (GooglePProf.profile_after_exit):
-        (Instruments.__init__):
-        (Instruments.attach_to_pid):
-        * Scripts/webkitpy/common/system/profiler_unittest.py:
-        (ProfilerFactoryTest.test_basic):
-
-2012-11-28  Vivek Galatage  <vivek.vg@samsung.com>
-
-        Adding secondary email id
-        https://bugs.webkit.org/show_bug.cgi?id=103594
-
-        Unreviewed. Adding secondary email.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-11-28  Kent Tamura  <tkent@chromium.org>
-
-        garden-o-matic: Use indeterminate <progress> in the status area
-        https://bugs.webkit.org/show_bug.cgi?id=103494
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js:
-        Wrap the "Processing..." message with an indeterminate progress bar.
-        We keep the message as a fallback content.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui_unittests.js:
-        Follow the above change.
-
-2012-11-28  Nima Ghanavatian  <nghanavatian@rim.com>
-
-        Adding Nima Ghanavatian to committers.py
-        https://bugs.webkit.org/show_bug.cgi?id=103533
-
-        Reviewed by Rob Buis.
-
-        Adding myself to committers.py as a Committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-11-28  peavo@outlook.com  <peavo@outlook.com>
-
-        [WinCairo] Crash when requesting favicon.
-        https://bugs.webkit.org/show_bug.cgi?id=102689
-
-        Reviewed by Brent Fulgham.
-
-        * TestWebKitAPI/Tests/WebCore/win: Added.
-        * TestWebKitAPI/Tests/WebCore/win/BitmapImage.cpp: Added.
-        (TestWebKitAPI::BitmapImageTest::BitmapImageTest): Allocate frame in constructor.
-        (TestWebKitAPI::BitmapImageTest::frameCount): Override frameCount() method.
-        (TestWebKitAPI::TEST): Added new test.
-        * TestWebKitAPI/config.h: Make sure defines are correct for WinCairo.
-       * TestWebKitAPI/win/TestWebKitAPI.vcproj: Added new test.
-
-2012-11-28  Eric Seidel  <eric@webkit.org>
-
-        run-perf-tests should have a --profile option for easy profiling
-        https://bugs.webkit.org/show_bug.cgi?id=99517
-
-        Reviewed by Adam Barth.
-
-        This is a very basic implementation which works on Mac and Linux
-        and makes it trivial for anyone to profile a PerformanceTest.
-
-        Currently it's not "hard" to profile a PerformanceTest
-        but lowering the barriers to entry here allows all of us to focus
-        less on the tools and more on the code.
-
-        This also paves the way for adding easy mobile-profiling (e.g. chromium-android)
-        which is actually "hard", and this option will make much easier.
-
-        * Scripts/webkitpy/common/system/profiler.py: Added.
-        (ProfilerFactory):
-        (ProfilerFactory.create_profiler):
-        (Profiler):
-        (Profiler.__init__):
-        (Profiler.adjusted_environment):
-        (Profiler.attach_to_pid):
-        (Profiler.did_stop):
-        (SingleFileOutputProfiler):
-        (SingleFileOutputProfiler.__init__):
-        (GooglePProf):
-        (GooglePProf.__init__):
-        (GooglePProf.adjusted_environment):
-        (GooglePProf.did_stop):
-        (Instruments):
-        (Instruments.__init__):
-        (Instruments.attach_to_pid):
-        * Scripts/webkitpy/common/system/profiler_unittest.py: Added.
-        (ProfilerFactoryTest):
-        (ProfilerFactoryTest.test_basic):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.__init__):
-        (Driver._start):
-        (Driver.stop):
-        (Driver.cmd_line):
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest.parse_output):
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py:
-        (MainTest.test_parse_output):
-        (MainTest.test_parse_output_with_failing_line):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._parse_args):
-        (PerfTestsRunner.run):
-
-2012-11-28  Zan Dobersek  <zandobersek@gmail.com>
-
-        Remove deprecated logging usage from QueueEngine
-        https://bugs.webkit.org/show_bug.cgi?id=103532
-
-        Reviewed by Dirk Pranke.
-
-        Replace usage of deprecated logging in webkitpy.tool.bot.queueengine with
-        logging through the Logger object. The unit test is modified to reflect
-        these changes.
-
-        After these changes the deprecated logging (i.e. logging to stderr) is not
-        used anymore through webkitpy and can be removed.
-
-        * Scripts/webkitpy/tool/bot/queueengine.py:
-        (QueueEngine.exit_after_handled_error):
-        (QueueEngine.run):
-        (QueueEngine._stopping):
-        (QueueEngine._sleep):
-        * Scripts/webkitpy/tool/bot/queueengine_unittest.py:
-        (QueueEngineTest._run_engine):
-
-2012-11-28  Nate Chapin  <japhet@chromium.org>
-
-        Move empty loading to DocumentLoader, simplify FrameLoader::init()
-        https://bugs.webkit.org/show_bug.cgi?id=101512
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::updateForCommittedLoad): This function doesn't play nicely with empty urls and incorrectly
-            interprets them as a non-empty load. This change is required for
-             http/tests/navigation/new-window-redirect-history.html to continue to pass in chromium.
-        * TestWebKitAPI/Tests/WebKit2/AboutBlankLoad.cpp: This test relies on a callback that no longer
-             is sent for about:blank loads.  Hook into didFinishLoadForFrame() instead.
-        (TestWebKitAPI::didFinishLoadForFrame):
-        (TestWebKitAPI::TEST):
-
-2012-11-28  Sadrul Habib Chowdhury  <sadrul@chromium.org>
-
-        [chromium] Allow plugins to opt-in to receive synthetic mouse events out of touch events.
-        https://bugs.webkit.org/show_bug.cgi?id=103092
-
-        Reviewed by Tony Chang.
-
-        Update the test web-plugin to be able to opt-in to receive synthesized mouse events created
-        from touch events.
-
-        * DumpRenderTree/chromium/TestWebPlugin.cpp:
-        (parseTouchEventRequestType):
-        (TestWebPlugin::TestWebPlugin):
-        (TestWebPlugin::initialize):
-        * DumpRenderTree/chromium/TestWebPlugin.h:
-        (TestWebPlugin):
-
-2012-11-28  Sudarsana Nagineni  <sudarsana.nagineni@intel.com>
-
-        [EFL][WK2] Add support for PlatformWebView::simulateSpacebarKeyPress() in TestWebKitAPI
-        https://bugs.webkit.org/show_bug.cgi?id=103123
-
-        Reviewed by Laszlo Gombos.
-
-        Add support for PlatformWebView::simulateSpacebarKeyPress().
-        This functionality is needed by WebKit2 API test MouseMoveAfterCrash
-        which is going to be unskipped in bug #103252.
-
-        * TestWebKitAPI/efl/PlatformUtilities.cpp:
-        (TestWebKitAPI::Util::sleep):
-        * TestWebKitAPI/efl/PlatformWebView.cpp: Use usleep() instead of
-        sleep().
-        (TestWebKitAPI::PlatformWebView::simulateSpacebarKeyPress):
-        (TestWebKitAPI):
-
-2012-11-28  Yael Aharon  <yael.aharon@intel.com>
-
-        Minor cleanup in TestInvocation
-        https://bugs.webkit.org/show_bug.cgi?id=103512
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Remove a function declaration that is not defined and not used.
-        Fix spelling error in m_webProcessIsUnresponsive.
-
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::TestInvocation):
-        (WTR::TestInvocation::invoke):
-        * WebKitTestRunner/TestInvocation.h:
-        (TestInvocation):
-        * WebKitTestRunner/cairo/TestInvocationCairo.cpp:
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-        * WebKitTestRunner/qt/TestInvocationQt.cpp:
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-
-2012-11-28  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        Unreviewed. Use my personal email as bugzilla email.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-11-28  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        Unreviewed. Adding myself to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-11-26  Andrey Adaikin  <aandrey@chromium.org>
-
-        Unreviewed. Adding myself to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-11-28  Tommy Widenflycht  <tommyw@google.com>
-
-        Add basic implementation for MediaStreamAudioDestinationNode
-        https://bugs.webkit.org/show_bug.cgi?id=101815
-
-        Reviewed by Chris Rogers.
-
-        Adds a bit of code that exercises the WebKit API.
-
-        * DumpRenderTree/chromium/MockWebMediaStreamCenter.cpp:
-        (MockWebMediaStreamSourceConsumer):
-        (MockWebMediaStreamSourceConsumer::~MockWebMediaStreamSourceConsumer):
-        (MockWebMediaStreamCenter::didCreateMediaStream):
-
-2012-11-28  Matt Falkenhagen  <falken@chromium.org>
-
-        Unreviewed. Adding myself to committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-11-27  Li Yin  <li.yin@intel.com>
-
-        Unreviewed. Adding myself to committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-11-27  Christophe Dumez  <christophe.dumez@intel.com>
-
-        Unreviewed. Adding myself to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-11-27  Vivek Galatage  <vivek.vg@samsung.com>
-
-        Unreviewd. Adding myself to committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-11-27  Tony Chang  <tony@chromium.org>
-
-        Bring back partytime!
-        https://bugs.webkit.org/show_bug.cgi?id=103466
-
-        Reviewed by Adam Barth.
-
-        "code 404, message Unknown function images/partytime_gif" since we didn't
-        allow .gif or .png files to be served.
-
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        (GardeningHTTPRequestHandler):
-
-2012-11-27  Adam Barth  <abarth@webkit.org>
-
-        run-perf-tests fails on Android because of stderr output
-        https://bugs.webkit.org/show_bug.cgi?id=103462
-
-        Reviewed by Ryosuke Niwa.
-
-        The chromium-android port produces some stderr output that causes
-        run-perf-tests to get sad and not record the results of the performance
-        test. This patch teaches run-perf-test to ignore this output much in
-        the same way that it currently ignores some stdout messages.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest.run):
-        (PerfTest._should_ignore_line):
-        (PerfTest):
-        (PerfTest._should_ignore_line_in_stderr):
-        (PerfTest._filter_stderr):
-        (PerfTest._should_ignore_line_in_parser_test_result):
-
-2012-11-27  Tony Chang  <tony@chromium.org>
-
-        Fix garden-o-matic for non-chromium ports
-        https://bugs.webkit.org/show_bug.cgi?id=103458
-
-        Reviewed by Adam Barth.
-
-        I was getting a 403 error when trying to select any non-chromium port.
-
-        * Scripts/webkitpy/tool/servers/reflectionhandler.py:
-        (ReflectionHandler._handle_request): Use the path without query params.
-
-2012-11-27  Yael Aharon  <yael.aharon@intel.com>
-
-        [EFL][WK2] 3D pixel tests are failing
-        https://bugs.webkit.org/show_bug.cgi?id=102833
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Generate a snapshot of the view in the UI process instead of the web process.
-        We have to use Texture Mapper in order to correctly paint 3D transforms etc.
-
-        * WebKitTestRunner/TestInvocation.h:
-        (TestInvocation):
-        * WebKitTestRunner/cairo/TestInvocationCairo.cpp:
-        (WTR::writeFunction):
-        (WTR::paintRepaintRectOverlay):
-        (WTR):
-        (WTR::TestInvocation::forceRepaintDoneCallback):
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-        * WebKitTestRunner/efl/PlatformWebViewEfl.cpp:
-        (WTR::PlatformWebView::windowSnapshotImage):
-
-2012-11-27  Adam Barth  <abarth@webkit.org>
-
-        Make it possible to run performance tests on Chromium Android
-        https://bugs.webkit.org/show_bug.cgi?id=103268
-
-        Reviewed by Ryosuke Niwa.
-
-        Based on a patch by Peter Beverloo.
-
-        This patch (almost) makes it possible to run WebKit performance tests
-        on the Chromium port for Android. There are a few things I had to do
-        in order to make this happen:
-
-        1) The worker number when creating a driver for a port is zero-based
-           for layout tests and elsewhere. Android uses this to determine
-           which device it has to run on, so make it zero based for performance
-           tests as well.
-
-        2) Tests aren't available on the Android device, so we start an HTTP
-           server that serves the tests to the device or emulator.
-
-        The one shortcoming of this patch is that chromium-android produces
-        some stderr output that confuses run-perf-tests. I'll address that
-        issue in a subsequent CL. This patch also depends on
-        https://codereview.chromium.org/11416182 in order to work.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.start_http_server):
-        (ChromiumAndroidDriver._command_from_driver_input):
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (ReplayPerfTest.prepare):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner.__init__):
-        (PerfTestsRunner._parse_args):
-        (PerfTestsRunner._start_servers):
-        (PerfTestsRunner):
-        (PerfTestsRunner._stop_servers):
-        (PerfTestsRunner.run):
-        (PerfTestsRunner._run_tests_set):
-
-2012-11-27  Zan Dobersek  <zandobersek@gmail.com>
-
-        Remove use of deprecated logging from webkitpy.common and webkitpy.layout_tests
-        https://bugs.webkit.org/show_bug.cgi?id=103408
-
-        Reviewed by Dirk Pranke.
-
-        Remove the use of the deprecated log and error methods by replacing them with
-        logging through Python's logging.Logger objects.
-
-        This patch covers such changes in webkitpy.common and webkitpy.layout_tests and also
-        updates any affected unit test.
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        (ChangeLogEntry._parse_entry):
-        * Scripts/webkitpy/common/checkout/checkout.py:
-        * Scripts/webkitpy/common/checkout/checkout_unittest.py:
-        (CheckoutTest.test_apply_patch):
-        * Scripts/webkitpy/common/checkout/deps_mock.py:
-        (MockDEPS.write_variable):
-        * Scripts/webkitpy/common/checkout/scm/detection.py:
-        (SCMDetector.default_scm):
-        * Scripts/webkitpy/common/checkout/scm/detection_unittest.py:
-        (SCMDetectorTest.test_detect_scm_system):
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        (Git._check_git_architecture):
-        (Git._commit_on_branch):
-        * Scripts/webkitpy/common/checkout/scm/scm.py:
-        (SCM.ensure_clean_working_directory):
-        (SCM.ensure_no_local_commits):
-        (SCM.will.commit_locally_with_message):
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-        (SVN.apply_reverse_diff):
-        * Scripts/webkitpy/common/net/bugzilla/attachment.py:
-        (Attachment._validate_flag_value):
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        (Bugzilla._fetch_bug_page):
-        (Bugzilla.bug_id_for_attachment_id):
-        (Bugzilla.authenticate):
-        (Bugzilla._commit_queue_flag):
-        (Bugzilla.add_attachment_to_bug):
-        (Bugzilla.add_patch_to_bug):
-        (Bugzilla.create_bug):
-        (Bugzilla.clear_attachment_flags):
-        (Bugzilla.set_flag_on_attachment):
-        (Bugzilla.obsolete_attachment):
-        (Bugzilla.add_cc_to_bug):
-        (Bugzilla.post_comment_to_bug):
-        (Bugzilla.close_bug_as_fixed):
-        (Bugzilla.reassign_bug):
-        (reopen_bug):
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla_mock.py:
-        (MockBugzilla.create_bug):
-        (MockBugzilla.reassign_bug):
-        (MockBugzilla.set_flag_on_attachment):
-        (MockBugzilla.post_comment_to_bug):
-        (MockBugzilla.add_attachment_to_bug):
-        (MockBugzilla.add_patch_to_bug):
-        (MockBugzilla.reopen_bug):
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla_unittest.py:
-        (test_add_cc_to_bug):
-        (_assert_reopen):
-        (test_reopen_bug):
-        * Scripts/webkitpy/common/net/buildbot/buildbot_mock.py:
-        (MockBuilder.force_build):
-        * Scripts/webkitpy/common/net/credentials.py:
-        (Credentials._run_security_tool):
-        * Scripts/webkitpy/common/net/credentials_unittest.py:
-        (_assert_security_call):
-        * Scripts/webkitpy/common/net/irc/irc_mock.py:
-        (MockIRC.post):
-        (MockIRC.disconnect):
-        * Scripts/webkitpy/common/net/irc/ircproxy.py:
-        (IRCProxy.__init__):
-        (IRCProxy.disconnect):
-        * Scripts/webkitpy/common/net/irc/ircproxy_unittest.py:
-        (IRCProxyTest.test_trivial):
-        * Scripts/webkitpy/common/net/layouttestresults.py:
-        (ORWTResultsHTMLParser._failures_from_fail_row):
-        * Scripts/webkitpy/common/net/layouttestresults_unittest.py:
-        (test_failures_from_fail_row):
-        * Scripts/webkitpy/common/net/networktransaction.py:
-        * Scripts/webkitpy/common/net/resultsjsonparser.py:
-        (JSONTestResult._tokenize):
-        (JSONTestResult._failure_types_from_actual_result):
-        * Scripts/webkitpy/common/net/statusserver.py:
-        (StatusServer.update_status):
-        (StatusServer.update_svn_revision):
-        * Scripts/webkitpy/common/net/statusserver_mock.py:
-        (MockStatusServer.release_work_item):
-        (MockStatusServer.update_work_items):
-        (MockStatusServer.submit_to_ews):
-        (MockStatusServer.update_status):
-        * Scripts/webkitpy/common/net/unittestresults.py:
-        (UnitTestResults.results_from_string):
-        * Scripts/webkitpy/common/system/executive_mock.py:
-        (MockExecutive.running_pids):
-        (MockExecutive.run_and_throw_if_fail):
-        (MockExecutive.run_command):
-        (MockExecutive.popen):
-        * Scripts/webkitpy/common/system/user_mock.py:
-        (MockUser.confirm):
-        (MockUser.open_url):
-        * Scripts/webkitpy/common/system/workspace_unittest.py:
-        (WorkspaceTest.test_create_zip):
-        (WorkspaceTest.test_create_zip_exception):
-        * Scripts/webkitpy/common/watchlist/watchlist_mock.py:
-        (MockWatchList.determine_cc_and_messages):
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        (ChromiumWinTest.test_setup_environ_for_server_register_cygwin):
-        * Scripts/webkitpy/layout_tests/port/efl_unittest.py:
-        (EflPortTest.test_show_results_html_file):
-        * Scripts/webkitpy/layout_tests/port/gtk_unittest.py:
-        (GtkPortTest.test_show_results_html_file):
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        (test_show_results_html_file):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (test_build_driver):
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        (QtPortTest.test_show_results_html_file):
-        * Scripts/webkitpy/layout_tests/port/win_unittest.py:
-        (WinPortTest.test_show_results_html_file):
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver_unittest.py:
-        (XvfbDriverTest.assertDriverStartSuccessful):
-        (XvfbDriverTest.test_start_no_pixel_tests):
-        (XvfbDriverTest.test_start_pixel_tests):
-        (XvfbDriverTest.test_start_arbitrary_worker_number):
-        (XvfbDriverTest.test_start_next_worker):
-        (XvfbDriverTest.test_stop):
-        * Scripts/webkitpy/layout_tests/servers/apache_http_server_unittest.py:
-        (TestLayoutTestApacheHttpd.test_start_cmd):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (test_run_test_pause_before_testing):
-        (test_run_memory_test):
-        (_test_run_with_json_output):
-        (test_run_respects_no_results):
-        (test_run_generates_and_show_results_page):
-        (test_run_respects_no_show_results):
-        * Scripts/webkitpy/tool/bot/feeders_unittest.py:
-        (FeedersTest.test_commit_queue_feeder):
-        * Scripts/webkitpy/tool/bot/flakytestreporter_unittest.py:
-        (FlakyTestReporterTest.test_create_bug_for_flaky_test):
-        (test_report_flaky_tests_creating_bug):
-        * Scripts/webkitpy/tool/bot/irc_command_unittest.py:
-        (IRCCommandTest.test_rollout_updates_working_copy):
-        * Scripts/webkitpy/tool/bot/ircbot_unittest.py:
-        (IRCBotTest.test_exception_during_command):
-        (IRCBotTest.test_hi):
-        (IRCBotTest.test_help):
-        (IRCBotTest.test_restart):
-        (IRCBotTest.test_rollout):
-        (IRCBotTest.test_revert):
-        (IRCBotTest.test_roll_chromium_deps):
-        (IRCBotTest.test_roll_chromium_deps_to_lkgr):
-        (IRCBotTest.test_multi_rollout):
-        (IRCBotTest.test_rollout_with_r_in_svn_revision):
-        (IRCBotTest.test_multi_rollout_with_r_in_svn_revision):
-        (IRCBotTest.test_rollout_bananas):
-        (IRCBotTest.test_rollout_invalidate_revision):
-        (IRCBotTest.test_rollout_invalidate_reason):
-        (test_multi_rollout_invalidate_reason):
-        (test_rollout_no_reason):
-        (test_multi_rollout_no_reason):
-        * Scripts/webkitpy/tool/bot/sheriff_unittest.py:
-        (SheriffTest.test_post_blame_comment_on_bug):
-        * Scripts/webkitpy/tool/commands/applywatchlistlocal_unittest.py:
-        (ApplyWatchListLocalTest.test_args_parsing):
-        (test_args_parsing_with_bug):
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        (test_land_cowboy):
-        (test_check_style):
-        (test_create_rollout):
-        (test_create_rollout_resolved):
-        (test_rollout):
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-        (AbstractEarlyWarningSystemTest.test_failing_tests_message):
-        (EarlyWarningSytemTest._default_expected_logs):
-        (EarlyWarningSytemTest._test_builder_ews):
-        (EarlyWarningSytemTest._test_testing_ews):
-        * Scripts/webkitpy/tool/commands/openbugs_unittest.py:
-        (OpenBugsTest.test_args_parsing):
-        * Scripts/webkitpy/tool/commands/queries_unittest.py:
-        (QueryCommandsTest.test_bugs_to_commit):
-        (QueryCommandsTest.test_patches_in_commit_queue):
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        (FeederQueueTest.test_feeder_queue):
-        (AbstractPatchQueueTest.test_next_patch):
-        (AbstractPatchQueueTest.test_upload_results_archive_for_patch):
-        (CommitQueueTest.test_commit_queue):
-        (test_commit_queue_failure):
-        (test_commit_queue_failure_with_failing_tests):
-        (test_rollout):
-        (test_rollout_lands):
-        (test_auto_retry):
-        (test_manual_reject_during_processing):
-        (test_report_flaky_tests):
-        (StyleQueueTest.test_style_queue_with_style_exception):
-        (test_style_queue_with_watch_list_exception):
-        * Scripts/webkitpy/tool/commands/queuestest.py:
-        (QueuesTest._default_begin_work_queue_logs):
-        * Scripts/webkitpy/tool/commands/roll_unittest.py:
-        (RollCommandsTest.test_update_chromium_deps):
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-        (UploadCommandsTest.test_assign_to_committer):
-        (test_post):
-        (test_attach_to_bug):
-        (test_attach_to_bug_no_description_or_comment):
-        (test_land_safely):
-        (test_prepare):
-        (test_upload):
-        (test_mark_bug_fixed):
-        * Scripts/webkitpy/tool/steps/applywatchlist_unittest.py:
-        (ApplyWatchListTest.test_apply_watch_list_local):
-        * Scripts/webkitpy/tool/steps/commit_unittest.py:
-        (CommitTest._test_check_test_expectations):
-        * Scripts/webkitpy/tool/steps/runtests_unittest.py:
-        (RunTestsTest.test_webkit_run_unit_tests):
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-        (StepsTest._assert_step_output_with_bug):
-        (StepsTest._assert_post_diff_output_for_bug):
-        (StepsTest.test_post_diff):
-        (StepsTest.test_post_diff_for_commit):
-        (StepsTest.test_ensure_bug_is_open_and_assigned):
-        (StepsTest.test_runtests_args):
-        * Scripts/webkitpy/tool/steps/suggestreviewers_unittest.py:
-        (SuggestReviewersTest.test_basic):
-        * Scripts/webkitpy/tool/steps/validatechangelogs_unittest.py:
-        (ValidateChangeLogsTest._assert_start_line_produces_output):
-
-2012-11-27  Pratik Solanki  <psolanki@apple.com>
-
-        objc/objc-runtime.h does not exist on all PLATFORM(MAC)
-        https://bugs.webkit.org/show_bug.cgi?id=101780
-
-        Reviewed by Brent Fulgham.
-
-        Clean up header includes so we don't include objc/objc-runtime.h.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        * DumpRenderTree/mac/ObjCPlugin.m:
-        * TestWebKitAPI/mac/InstanceMethodSwizzler.h:
-        * WebKitTestRunner/InjectedBundle/mac/ActivateFonts.mm:
-
-2012-11-27  Marja Hölttä  <marja@chromium.org>
-
-        Add callbacks to the FrameLoaderClient when a resource is requested
-        https://bugs.webkit.org/show_bug.cgi?id=92761
-
-        Reviewed by Adam Barth.
-
-        In Chromium, when an extension script cancels a network
-        request (which happens out of process), we'd like to
-        notify content scripts running on the current page about
-        which elements failed to load because the requests were
-        cancelled (as opposed to e.g. the network request just
-        didn't work). Since the resource request itself does not
-        carry any information what DOM element is was made for,
-        currently a content script has to search the DOM tree and
-        guess which requests will be cancelled by its counter
-        part. By adding these callbacks, the embedder can make
-        this connection explictly.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        (DRTTestRunner::dumpResourceRequestCallbacks):
-        (DRTTestRunner::reset):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        (DRTTestRunner::setShouldDumpResourceRequestCallbacks):
-        (DRTTestRunner::shouldDumpResourceRequestCallbacks):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::shouldDumpResourceRequestCallbacks):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::willRequestResource):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-11-27  Víctor Manuel Jáquez Leal  <vjaquez@igalia.com>
-
-        [GStreamer] Verify if GStreamer was previously initialized
-        https://bugs.webkit.org/show_bug.cgi?id=103151
-
-        Reviewed by Philippe Normand.
-
-        This patch adds the gst_init() in GtkLauncher, so we can add the
-        GStreamer options in the command line through
-        gst_init_get_option_group().
-
-        This approach is not valid for MiniBrowser because it uses WebKit2,
-        where the GStreamer backend lives in the web process, which is
-        different from the UI process.
-
-        * GNUmakefile.am:
-        * GtkLauncher/main.c:
-        (main):
-
-2012-11-27  Andras Becsi  <andras.becsi@digia.com>
-
-        [Qt] Fix the build with new Qt5 hash
-        https://bugs.webkit.org/show_bug.cgi?id=103406
-
-        Reviewed by Csaba Osztrogonác.
-
-        Remove references to deprecated QApplication::GuiServer which
-        has been removed, and use QStyleFactory::create instead of
-        instantiating a QWindowsStyle directly since it is about to
-        become an internal class.
-
-        * DumpRenderTree/qt/DumpRenderTreeMain.cpp:
-        (main):
-        * QtTestBrowser/qttestbrowser.cpp:
-        (LauncherApplication::LauncherApplication):
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundleQt.cpp:
-        (WTR::InjectedBundle::platformInitialize):
-
-2012-11-27  Sadrul Habib Chowdhury  <sadrul@chromium.org>
-
-        [style] Add a style-check for enum-member names
-        https://bugs.webkit.org/show_bug.cgi?id=103157
-
-        Reviewed by Daniel Bates.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (_EnumState):
-        (_EnumState.__init__):
-        (_EnumState.process_clean_line):
-        (check_enum_casing):
-        (check_style):
-        (process_line):
-        (_process_lines):
-        (CppChecker):
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (NoNonVirtualDestructorsTest.test_enum_casing):
-        (NoNonVirtualDestructorsTest.test_internal_braces.Foo):
-
-2012-11-26  Ryuan Choi  <ryuan.choi@gmail.com>
-
-        [EFL][jhbuild] Disable unnecessary options of elementary module
-        https://bugs.webkit.org/show_bug.cgi?id=103360
-
-        Reviewed by Gyuyoung Kim.
-
-        When jhbuild configures elementary, unnecessary options may be enabled by
-        user installed modules and it causes build break.
-
-        * efl/jhbuild.modules:
-        Added --disable-emap --disable-ethumb --disable-eweather to elementary.
-
-2012-11-26  Varun Jain  <varunjain@chromium.org>
-
-        LongPress and LongTap gestures should start drag/drop and open context menu respectively.
-        https://bugs.webkit.org/show_bug.cgi?id=101545
-
-        Reviewed by Antonio Gomes.
-
-        For LongPress, we simulate drag by sending a mouse down and mouse drag
-        events. If a drag is not started (because maybe there is no draggable
-        element), then we show context menu instead (which is the current
-        behavior for LongPress). For LongTap, we use the existing functions that
-        LongPress uses to summon the context menu. LongPress initiated drag and
-        drop can be enabled/disabled by the platform using the Setting
-        touchDragDropEnabled which is disabled by default.
-
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::EventSender):
-        (WebTestRunner::EventSender::gestureLongTap):
-        (WebTestRunner::EventSender::gestureEvent):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.h:
-        (EventSender):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::setTouchDragDropEnabled):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (TestRunner):
-
-2012-11-26  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][WK2] Add setting to enable / disable HTML5 local storage functionality
-        https://bugs.webkit.org/show_bug.cgi?id=103224
-
-        Reviewed by Laszlo Gombos.
-
-        Add --local-storage command line argument to MiniBrowser to
-        explicitely disable HTML5 local storage functionality. This
-        is useful for testing purposes.
-
-        * MiniBrowser/efl/main.c:
-        (window_create):
-        (elm_main):
-
-2012-11-26  Zan Dobersek  <zandobersek@gmail.com>
-
-        Remove use of deprecated logging from most of webkitpy.tool
-        https://bugs.webkit.org/show_bug.cgi?id=103180
-
-        Reviewed by Dirk Pranke.
-
-        Remove calls to log and error methods of the deprecated_logging module, replacing them
-        by using Python's Logger objects. This patch covers the switch in all of webkitpy.tool
-        except the QueueEngine.
-
-        Unit tests are adjusted for these changes, moving output from expected stderr to expected logs.
-
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-        (MockCommitQueue.run_command):
-        (MockCommitQueue.command_passed):
-        (MockCommitQueue.command_failed):
-        (MockCommitQueue.report_flaky_tests):
-        (MockCommitQueue.archive_last_test_results):
-        (CommitQueueTaskTest._run_through_task):
-        (CommitQueueTaskTest.test_success_case):
-        (test_fast_success_case):
-        (test_clean_failure):
-        (test_update_failure):
-        (test_apply_failure):
-        (test_validate_changelog_failure):
-        (test_build_failure):
-        (test_red_build_failure):
-        (test_flaky_test_failure):
-        (test_failed_archive):
-        (test_double_flaky_test_failure):
-        (test_test_failure):
-        (test_red_test_failure):
-        (test_very_red_tree_retry):
-        (test_red_tree_patch_rejection):
-        (test_land_failure):
-        * Scripts/webkitpy/tool/bot/feeders.py:
-        (CommitQueueFeeder._update_work_items):
-        (EWSFeeder.feed):
-        * Scripts/webkitpy/tool/bot/feeders_unittest.py:
-        * Scripts/webkitpy/tool/bot/layouttestresultsreader.py:
-        (LayoutTestResultsReader.archive):
-        * Scripts/webkitpy/tool/bot/layouttestresultsreader_unittest.py:
-        (test_archive_last_layout_test_results):
-        * Scripts/webkitpy/tool/bot/sheriff.py:
-        * Scripts/webkitpy/tool/commands/abstractsequencedcommand.py:
-        (AbstractSequencedCommand.execute):
-        * Scripts/webkitpy/tool/commands/commandtest.py:
-        (CommandsTest.assert_execute_outputs):
-        * Scripts/webkitpy/tool/commands/download.py:
-        (AbstractPatchProcessingCommand._process_patch.execute):
-        (ProcessBugsMixin._fetch_list_of_patches_to_process):
-        (ProcessURLsMixin._fetch_list_of_patches_to_process):
-        (AbstractRolloutPrepCommand._commit_info):
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        (AbstractRolloutPrepCommandTest.test_commit_info):
-        (DownloadCommandsTest.test_build):
-        (DownloadCommandsTest.test_build_and_test):
-        (test_apply_attachment):
-        (test_apply_from_bug):
-        (test_apply_watch_list):
-        (test_land):
-        (test_land_red_builders):
-        (test_check_style):
-        (test_build_attachment):
-        (test_land_attachment):
-        (test_land_from_bug):
-        (test_land_from_url):
-        (test_prepare_rollout):
-        (test_create_rollout):
-        (test_create_rollout_resolved):
-        (test_rollout):
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (AbstractEarlyWarningSystem.handle_script_error.does):
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-        (EarlyWarningSytemTest._default_expected_stderr):
-        (EarlyWarningSytemTest._default_expected_logs):
-        (EarlyWarningSytemTest._test_testing_ews):
-        * Scripts/webkitpy/tool/commands/openbugs.py:
-        (OpenBugs.execute):
-        * Scripts/webkitpy/tool/commands/openbugs_unittest.py:
-        (OpenBugsTest.test_args_parsing):
-        * Scripts/webkitpy/tool/commands/perfalizer.py:
-        (Perfalizer.handle_unexpected_error):
-        * Scripts/webkitpy/tool/commands/queries.py:
-        (PatchesInCommitQueue.execute):
-        (PatchesToCommitQueue._needs_commit_queue):
-        * Scripts/webkitpy/tool/commands/queries_unittest.py:
-        (QueryCommandsTest.test_bugs_to_commit):
-        (QueryCommandsTest.test_patches_in_commit_queue):
-        (QueryCommandsTest.test_patches_to_commit_queue):
-        * Scripts/webkitpy/tool/commands/queues.py:
-        (AbstractQueue._cc_watchers):
-        (AbstractQueue.begin_work_queue):
-        (FeederQueue.handle_unexpected_error):
-        (CommitQueue.handle_script_error):
-        (AbstractReviewQueue.handle_unexpected_error):
-        (AbstractReviewQueue.handle_script_error):
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        (test_auto_retry):
-        * Scripts/webkitpy/tool/commands/queuestest.py:
-        (QueuesTest.assert_outputs):
-        (QueuesTest._default_begin_work_queue_stderr):
-        (QueuesTest):
-        (QueuesTest._default_begin_work_queue_logs):
-        (QueuesTest.assert_queue_outputs):
-        * Scripts/webkitpy/tool/commands/roll_unittest.py:
-        (RollCommandsTest.test_update_chromium_deps):
-        (test_update_chromium_deps_older_revision):
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-        (SheriffBot.handle_unexpected_error):
-        * Scripts/webkitpy/tool/commands/stepsequence.py:
-        (StepSequence.run_and_handle_errors):
-        * Scripts/webkitpy/tool/commands/upload.py:
-        (AssignToCommitter._assign_bug_to_last_patch_attacher):
-        (AbstractPatchUploadingCommand._prepare_state):
-        (PostCommits.execute):
-        (MarkBugFixed._determine_bug_id_and_svn_revision):
-        (MarkBugFixed.execute):
-        (CreateBug.create_bug_from_commit):
-        (CreateBug.execute):
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-        (test_obsolete_attachments):
-        (test_land_safely):
-        (test_mark_bug_fixed):
-        * Scripts/webkitpy/tool/multicommandtool.py:
-        (Command.check_arguments_and_execute):
-        (MultiCommandTool.main):
-        * Scripts/webkitpy/tool/multicommandtool_unittest.py:
-        (CommandTest.test_required_arguments):
-        * Scripts/webkitpy/tool/steps/addsvnmimetypeforpng.py:
-        (AddSvnMimetypeForPng.run):
-        * Scripts/webkitpy/tool/steps/applypatch.py:
-        (ApplyPatch.run):
-        * Scripts/webkitpy/tool/steps/build.py:
-        (Build.run):
-        * Scripts/webkitpy/tool/steps/checkstyle.py:
-        * Scripts/webkitpy/tool/steps/closebug.py:
-        (CloseBug.run):
-        * Scripts/webkitpy/tool/steps/closebugforlanddiff.py:
-        (CloseBugForLandDiff.run):
-        * Scripts/webkitpy/tool/steps/closebugforlanddiff_unittest.py:
-        (CloseBugForLandDiffTest.test_empty_state):
-        * Scripts/webkitpy/tool/steps/commit.py:
-        (Commit.run):
-        * Scripts/webkitpy/tool/steps/commit_unittest.py:
-        (CommitTest._test_check_test_expectations):
-        * Scripts/webkitpy/tool/steps/ensurelocalcommitifneeded.py:
-        (EnsureLocalCommitIfNeeded.run):
-        * Scripts/webkitpy/tool/steps/obsoletepatches.py:
-        (ObsoletePatches.run):
-        * Scripts/webkitpy/tool/steps/preparechangelog.py:
-        (PrepareChangeLog.run):
-        * Scripts/webkitpy/tool/steps/reopenbugafterrollout.py:
-        (ReopenBugAfterRollout.run):
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        (RunTests.run):
-        * Scripts/webkitpy/tool/steps/runtests_unittest.py:
-        (RunTestsTest.test_webkit_run_unit_tests):
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-        (StepsTest.test_update_step):
-        (StepsTest.test_runtests_args):
-        * Scripts/webkitpy/tool/steps/update.py:
-        (Update.run):
-        * Scripts/webkitpy/tool/steps/updatechangelogswithreview_unittest.py:
-        (UpdateChangeLogsWithReviewerTest.test_guess_reviewer_from_bug):
-        (UpdateChangeLogsWithReviewerTest.test_guess_reviewer_from_multipatch_bug):
-        * Scripts/webkitpy/tool/steps/updatechangelogswithreviewer.py:
-        (UpdateChangeLogsWithReviewer._guess_reviewer_from_bug):
-        (UpdateChangeLogsWithReviewer.run):
-        * Scripts/webkitpy/tool/steps/updatechromiumdeps.py:
-        (UpdateChromiumDEPS._validate_revisions):
-        (UpdateChromiumDEPS.run):
-        * Scripts/webkitpy/tool/steps/validatechangelogs.py:
-        (ValidateChangeLogs._check_changelog_diff):
-        (ValidateChangeLogs.run):
-        * Scripts/webkitpy/tool/steps/validatechangelogs_unittest.py:
-        (ValidateChangeLogsTest._assert_start_line_produces_output):
-        * Scripts/webkitpy/tool/steps/validatereviewer.py:
-        (ValidateReviewer.run):
-
-2012-11-26  Zan Dobersek  <zandobersek@gmail.com>
-
-        Coverage testing in webkitpy should omit some paths
-        https://bugs.webkit.org/show_bug.cgi?id=103267
-
-        Reviewed by Dirk Pranke.
-
-        Omit testing coverage of any file under /usr directory and any file
-        that is of third party origin and was autoinstalled.
-
-        * Scripts/webkitpy/test/main.py:
-        (Tester._run_tests):
-
-2012-11-26  Jaehun Lim  <ljaehun.lim@samsung.com>
-
-        Text Autosizing: Add Text Autosizing APIs for WK2
-        https://bugs.webkit.org/show_bug.cgi?id=100633
-
-        Reviewed by Sam Weinig.
-
-        Add test cases for Text Autosizing in WKPreferences.
-
-        * TestWebKitAPI/Tests/WebKit2/WKPreferences.cpp:
-        (TestWebKitAPI::TEST):
-
-2012-11-26  Pierre Rossi  <pierre.rossi@gmail.com>
-
-        [Qt] REGRESSION(r135575): It made all tests assert
-        https://bugs.webkit.org/show_bug.cgi?id=103169
-
-        Reviewed by Simon Hausmann.
-
-        This fixes another regression introduced in r135515:
-        initializeWebKitQt shouldn't implicitely call initializeWebCoreQt
-        since it can be called from WebKit2 to initialize QStyle for testing.
-        This would then lead to things such as PlatformStrategies being
-        initialized twice.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp: Also propagate the change to DRT this time.
-        (WebCore::DumpRenderTree::DumpRenderTree):
-
-2012-11-24  Zan Dobersek  <zandobersek@gmail.com>
-
-        Add the --order option to NRWT
-        https://bugs.webkit.org/show_bug.cgi?id=102229
-
-        Reviewed by Dirk Pranke.
-
-        The --order option controls in what order the gathered tests will be run.
-        There are 3 options:
-        - natural, the tests are sorted in natural order,
-        - random, the tests are sorted in random order,
-        - none, the tests are kept in the order in which they were specified through
-        arguments or the test list.
-
-        The natural option is the default one and maintains the current behavior.
-
-        The none option is primarily intended to be used with the --test-list option,
-        with the test list file expected to list specific test names.
-        When a directory is specified as one of the paths from under which tests should
-        be gathered and the none option is used, that path will expand to all the tests
-        under it, with these tests sorted in the natural order.
-
-        Using --order=random duplicated the behavior of the --randomize-order option, so
-        the latter is removed.
-
-        This patch also incorporates the change with which makes it is possible to specify
-        a test via arguments or the test list multiple tests and then have the test run
-        that many times.
-
-        * Scripts/webkitpy/common/find_files.py:
-        (find): Accept an optional sorting key that is used to sort files found in the directories
-        that the given paths specify.
-        (_normalized_find): Both paths that are then searched for the tests and the tests that
-        were found are now kept in lists. This makes it possible to run a test multiple times
-        by specifying it multiple times through arguments or the test list file.
-        (_normalized_find.sort_by_directory_key):
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_finder.py:
-        (LayoutTestFinder.find_tests): Keep the paths where we should search for tests in a list.
-        (LayoutTestFinder.skip_tests): Subtracting from a set of paths is necessary.
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner.py:
-        (LayoutTestRunner.__init__): The Sharder class no longer needs a test path separator.
-        (Sharder.__init__): Ditto.
-        (Sharder._resize_shards):
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner_unittest.py:
-        (SharderTests.get_shards): Modify the Shader initializing as required.
-        (SharderTests.test_multiple_locked_shards): The natural sorting and test name key unit tests
-        are now moved to the base Port unit tests.
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._prepare_lists): Keep the test names in a list. Order that list as specified by
-        the new --order option.
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.tests): This method should now return a list of all the tests found in the specified
-        paths.
-        (Port._real_tests): A list is required, so no conversion to a set is made.
-        (Port):
-        (Port.test_key): Place this method here for now, but it should really move into a separate
-        module.
-        (Port._natural_sort_key): Ditto.
-        (Port._natural_sort_key.tryint):
-        (Port._virtual_tests): A list is required, so the function now operates on that rather than
-        on a set.
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_find_with_skipped_directories_2): Adjust the test case to check for an empty
-        list rather than an empty set.
-        (PortTest.test_dont_require_http_server):
-        (NaturalCompareTest): The natural sorting unit tests are placed here for now.
-        (NaturalCompareTest.assert_cmp):
-        (NaturalCompareTest.test_natural_compare):
-        (KeyCompareTest): The test name key unit tests are placed here for now.
-        (KeyCompareTest.assert_cmp):
-        (KeyCompareTest.test_test_key):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args): Remove the --randomize-order option, it's now possible to replicate its behavior
-        by using --order=random.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py: Add unit tests covering
-        various aspects of this change.
-        (MainTest.test_natural_order):
-        (MainTest):
-        (MainTest.test_natural_order_test_specified_multiple_times):
-        (MainTest.test_random_order):
-        (MainTest.test_random_order_test_specified_multiple_times):
-        (MainTest.test_no_order):
-        (MainTest.test_no_order_test_specified_multiple_times):
-        (MainTest.test_no_order_with_directory_entries_in_natural_order):
-        * Scripts/webkitpy/tool/commands/queries.py:
-        (PrintExpectations.execute): Operate on a set of tests when printing out expectations.
-
-2012-11-24  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r135600.
-        http://trac.webkit.org/changeset/135600
-        https://bugs.webkit.org/show_bug.cgi?id=103173
-
-        It made EFL API test is failed (Requested by gyuyoung_mbp on
-        #webkit).
-
-        * TestWebKitAPI/PlatformEfl.cmake:
-        * TestWebKitAPI/efl/PlatformUtilities.cpp:
-        (TestWebKitAPI::Util::sleep):
-        * TestWebKitAPI/efl/PlatformWebView.cpp:
-
-2012-11-23  Alexis Menard  <alexis@webkit.org>
-
-        [CSS3 Backgrounds and Borders] Implement new CSS3 background-position parsing.
-        https://bugs.webkit.org/show_bug.cgi?id=102104
-
-        Reviewed by Julien Chaffraix.
-
-        Protect the new feature behind a feature flag.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2012-11-23  Mario Sanchez Prada  <mario@webkit.org>
-
-        Unreviewed. Update my e-mail address.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-11-23  Mateusz Leszko  <m.leszko@samsung.com>
-
-        [EFL][GTK] Adapt accessibility feature to WebKitTestRunner.
-        https://bugs.webkit.org/show_bug.cgi?id=100757
-
-        Reviewed by Laszlo Gombos.
-
-        Allow to build accessibility feature in WebkitTestRunner for EFL Platform.
-        Updating CMake files due to changes from Bug 99011.
-
-        * WebKitTestRunner/InjectedBundle/AccessibilityController.cpp:
-        (WTR::AccessibilityController::AccessibilityController):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/AccessibilityController.h:
-        (AccessibilityController):
-        * WebKitTestRunner/InjectedBundle/AccessibilityUIElement.cpp:
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/AccessibilityUIElement.h:
-        (AccessibilityUIElement):
-        * WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp: - Removed gtk/gtk.h dependency.
-        * WebKitTestRunner/PlatformEfl.cmake: - Adding atk includes.
-
-2012-11-16  Yury Semikhatsky  <yurys@chromium.org>
-
-        Memory instrumentation: extract MemoryObjectInfo declaration into a separate file
-        https://bugs.webkit.org/show_bug.cgi?id=102510
-
-        Reviewed by Pavel Feldman.
-
-        Added missing includes.
-
-        * TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp:
-
-2012-11-23  Sudarsana Nagineni  <sudarsana.nagineni@intel.com>
-
-        [EFL][WK2] Add support for PlatformWebView::simulateSpacebarKeyPress() in TestWebKitAPI
-        https://bugs.webkit.org/show_bug.cgi?id=103123
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add support for PlatformWebView::simulateSpacebarKeyPress() and enable
-        WebKit2 API test ResponsivenessTimerDoesntFireEarly.
-
-        * TestWebKitAPI/PlatformEfl.cmake: Enable ResponsivenessTimerDoesntFireEarly
-        test.
-        * TestWebKitAPI/efl/PlatformUtilities.cpp:
-        (TestWebKitAPI::Util::sleep): Use usleep() instead of sleep since the
-        test case is passing 0.5 seconds to sleep.
-        * TestWebKitAPI/efl/PlatformWebView.cpp:
-        (TestWebKitAPI::PlatformWebView::simulateSpacebarKeyPress): Implemented.
-        (TestWebKitAPI):
-
-2012-11-23  Wojciech Bielawski  <w.bielawski@samsung.com>
-
-        [WK2][WKTR] WebKitTestRunner needs eventSender.contextClick()
-        https://bugs.webkit.org/show_bug.cgi?id=86881
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        eventSender object extended with contextClick() method in WebKitTestRunner.
-        contextClick() method returns an array of menu items objects with field 'title' containing title of single
-        context menu entry. According to some tests menu items objects shall also support 'click()' method, but it's not
-        delivered in this patch.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/EventSendingController.idl:
-        * WebKitTestRunner/InjectedBundle/EventSendingController.cpp:
-        (WTR::EventSendingController::contextClick):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/EventSendingController.h:
-        (EventSendingController):
-
-2012-11-23  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Compiling against QtWebkit API requires QT_DLL to be defined
-        https://bugs.webkit.org/show_bug.cgi?id=102942
-
-        Reviewed by Tor Arne Vestbø.
-
-        Remove the requirement of having QT_DLL defined in order for the QWEBKIT_EXPORT
-        macro to be defined as Q_DECL_IMPORT. Instead unify the export macro definition
-        to follow the same rules as other Qt 5 modules, with the exception that instead of
-        QT_BUILD_WEBKIT_LIB we continue to use BUILDING_WEBKIT, because that's used also
-        in other cross-platform header files to determine the correct meaning of export
-        macros.
-
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/win32/default_post.prf:
-
-2012-11-23  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] QWebPage::shouldInterruptJavaScript should be virtual in Qt 5
-        https://bugs.webkit.org/show_bug.cgi?id=103111
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        This function was added as a slot during Qt 4.x times because adding
-        virtual functions breaks binary compatibility. This constraint is gone
-        with the initial release of WebKit with Qt 5, and therefore we can
-        make it virtual now.
-
-        The change is fully source compatible as existing "re-implementations"
-        as slots will now be called through it being a virtual function. They
-        become unused slots.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        (WebCore::WebPage::shouldInterruptJavaScript):
-        (WebPage):
-        * QtTestBrowser/webpage.h:
-        (WebPage):
-
-2012-11-22  Peter Beverloo  <peter@chromium.org>
-
-        [Chromium] Return an accurate exit code when running Android suites, and wait after restarting adb as root
-        https://bugs.webkit.org/show_bug.cgi?id=103065
-
-        Reviewed by Dirk Pranke.
-
-        This addresses two further reliability issues in the Android test running
-        scripts. Firstly, the run_tests.py script needs to have the --exit_code
-        argument passed in order to return non-zero codes, which we need for the
-        build master to distinguish failures from successful runs.
-
-        Secondly, it modifies the layout test runner to briefly wait (through
-        the wait-for-device command) after requesting a device to switch to root
-        mode. Without this waiting period, commands might get lost and thereby
-        unexpectedly fail.
-
-        * Scripts/run-api-tests:
-        * Scripts/run-chromium-webkit-unit-tests:
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidDriver._setup_test):
-        (ChromiumAndroidDriver._restart_adb_as_root):
-
-2012-11-22  Simon Hausmann  <simon.hausmann@digia.com>, Pierre Rossi <pierre.rossi@digia.com>
-
-        [Qt] Separate QWidget dependant code into separate WebKitWidgets static library
-        https://bugs.webkit.org/show_bug.cgi?id=102800
-
-        Reviewed by Tor Arne Vestbø.
-
-        This patch separates code that needs to use QWidget related APIs in
-        WebKit/qt/WebCoreSupport and Api from code that doesn't. This means for
-        example FrameLoaderClientQt.cpp remains in the WebKit1 static library,
-        while qwebpage.cpp and qwebframe.cpp become part of the WebKitWidgets
-        static library. WebKit1 is compiled without QT += widgets and therefore
-        any widget related dependency has been moved "up" and out of WebKit1 into
-        the WebKitWidgets library.
-
-        Between the code in WebKit.a and WebKitWidgets.a new adapters and
-        interfaces have been introduced, such as QWebPageAdapter and
-        QWebFrameAdapter. QWebPageAdapter, when used from WebKit1, is a way to
-        call out into the API layer, implemented by QWebPage (QWebPagePrivate).
-        The other way around if QWebPage wants to access WebCore or
-        WebCoreSupport related functionality, it will go through
-        QWebPageAdapater (as base class). The separation in the direction up
-        into the API layer is complete with this patch, no code in WebKit1
-        depends on QtWidgets. The separation the other way around, code in the
-        API layer not using any WebCore types, is not complete yet.
-
-        Some classes such as QWebSettings, QWebElement or
-        DumpRenderTreeSupportQt remain in WebKit1. While they are API layer,
-        they do not depend on widget related Qt APIs and they make much more
-        use of WebCore internal APIs and therefore are easier to keep in
-        WebKit1.
-
-        In the future we plan to place a real shared library boundary between
-        WebKit1 and WebKitWidgets, by keeping the WebKit1 static library as
-        part of the QtWebKit shared library and by turning the WebKitWidgets
-        static library into a shared one.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::resetSettings):
-        (WebCore::WebPage::createWindow):
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        (WebCore::DumpRenderTree::initJSObjects):
-        (WebCore::DumpRenderTree::dumpFrameScrollPosition):
-        (WebCore::DumpRenderTree::dumpFramesAsText):
-        (WebCore::DumpRenderTree::dump):
-        (WebCore::DumpRenderTree::createWindow):
-        (WebCore::DumpRenderTree::pageAdapter):
-        (WebCore):
-        (WebCore::DumpRenderTree::mainFrameAdapter):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        (DumpRenderTree):
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::contextClick):
-        (EventSender::scalePageBy):
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        (TestRunner::reset):
-        (TestRunner::display):
-        (TestRunner::closeWebInspector):
-        (TestRunner::showWebInspector):
-        (TestRunner::evaluateInWebInspector):
-        (TestRunner::setFrameFlatteningEnabled):
-        (TestRunner::goBack):
-        (TestRunner::setDefersLoading):
-        (TestRunner::pauseAnimationAtTimeOnElementWithId):
-        (TestRunner::pauseTransitionAtTimeOnElementWithId):
-        (TestRunner::numberOfActiveAnimations):
-        (TestRunner::setCaretBrowsingEnabled):
-        (TestRunner::setAuthorAndUserStylesEnabled):
-        (TestRunner::callShouldCloseOnWebView):
-        (TestRunner::setSmartInsertDeleteEnabled):
-        (TestRunner::setSelectTrailingWhitespaceEnabled):
-        (TestRunner::execCommand):
-        (TestRunner::isCommandEnabled):
-        (TestRunner::findString):
-        (TestRunner::elementDoesAutoCompleteForElementWithId):
-        (TestRunner::setMockDeviceOrientation):
-        (TestRunner::setGeolocationPermission):
-        (TestRunner::numberOfPendingGeolocationPermissionRequests):
-        (TestRunner::setMockGeolocationPositionUnavailableError):
-        (TestRunner::setMockGeolocationPosition):
-        (TestRunner::evaluateScriptInIsolatedWorld):
-        (TestRunner::addUserStyleSheet):
-        (TestRunner::setMinimumTimerInterval):
-        * DumpRenderTree/qt/TextInputControllerQt.cpp:
-        (TextInputController::selectedRange):
-        (TextInputController::firstRectForCharacterRange):
-        (TextInputController::unmarkText):
-        * DumpRenderTree/qt/WorkQueueItemQt.cpp:
-        (LoadAlternateHTMLStringItem::invoke):
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/production_build.prf:
-        * qmake/mkspecs/features/webkit_modules.prf:
-        * qmake/mkspecs/modules/webkitwidgets.prf: Added.
-
-2012-11-22  Christophe Dumez  <christophe.dumez@intel.com>
-
-        WebKitTestRunner needs layoutTestController.setCacheModel
-        https://bugs.webkit.org/show_bug.cgi?id=42684
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add support for testRunner.setCacheModel to WebKitTestRunner.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::setCacheModel):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-
-2012-11-22  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt][WTR] TestController::platformRunUntil should not do busy waiting
-        https://bugs.webkit.org/show_bug.cgi?id=101327
-
-        Reviewed by Simon Hausmann.
-
-        Avoid busy waiting for events in platformRunUntil while making
-        sure we don't change the behavior of modal event loops.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::~TestController):
-        * WebKitTestRunner/TestController.h:
-        (TestController):
-        * WebKitTestRunner/efl/TestControllerEfl.cpp:
-        (WTR::TestController::platformDestroy):
-        (WTR):
-        * WebKitTestRunner/gtk/TestControllerGtk.cpp:
-        (WTR::TestController::platformDestroy):
-        (WTR):
-        * WebKitTestRunner/mac/TestControllerMac.mm:
-        (WTR::TestController::platformDestroy):
-        (WTR):
-        * WebKitTestRunner/qt/TestControllerQt.cpp:
-        (TestController::RunLoop): Helper class to handle
-        the event loop logic
-        (WTR):
-        (WTR::TestController::RunLoop::RunLoop):
-        (WTR::TestController::RunLoop::runUntil): Use QEventLoop to implement
-        the run loop. This is the appropriate API to push the WaitForMoreEvents
-        flag to QCoreApplication::processEvents and also being able to exit the
-        loop if we have timed out.
-        (WTR::TestController::RunLoop::notifyDone):
-        (WTR::TestController::RunLoop::timerFired):
-        (WTR::TestController::RunLoop::runModal):
-        (WTR::TestController::notifyDone):
-        (WTR::TestController::platformInitialize):
-        (WTR::TestController::platformDestroy):
-        (WTR::TestController::platformRunUntil):
-        (WTR::TestController::runModal):
-        * WebKitTestRunner/win/TestControllerWin.cpp:
-        (WTR::TestController::platformDestroy):
-        (WTR):
-
-2012-11-22  Sudarsana Nagineni  <sudarsana.nagineni@intel.com>
-
-        [EFL][WK2] Enable WKPreferences and AboutBlankLoad API tests
-        https://bugs.webkit.org/show_bug.cgi?id=102926
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add missing bits needed by WKPreferences and AboutBlankLoad API
-        tests in the test harness and enable these tests on EFL port.
-
-        * TestWebKitAPI/PlatformEfl.cmake:
-        * TestWebKitAPI/Tests/WebKit2/WKPreferences.cpp:
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/efl/PlatformUtilities.cpp:
-        (TestWebKitAPI::Util::MIMETypeForWKURLResponse):
-        (Util):
-
-2012-11-21  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK][WTR] Implement AccessibilityUIElement::stringValue
-        https://bugs.webkit.org/show_bug.cgi?id=102951
-
-        Reviewed by Martin Robinson.
-
-        Implement AccessibilityUIElement::stringValue in the ATK backend
-        in the same manner it is implemented in DumpRenderTree.
-
-        * WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp:
-        (WTR::replaceCharactersForResults):
-        (WTR):
-        (WTR::AccessibilityUIElement::stringValue):
-
-2012-11-21  Vineet Chaudhary  <rgf748@motorola.com>
-
-        Unreviewed. Adding myself to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-11-21  Tien-Ren Chen  <trchen@chromium.org>
-
-        [chromium] Device scale factor should be no-op when applyDeviceScaleFactorInCompositor == 0
-        https://bugs.webkit.org/show_bug.cgi?id=100061
-
-        Reviewed by Adam Barth.
-
-        On Android we're using a different pixel scaling implementation
-        (WebCore::Settings::applyDefaultDeviceScaleFactorInCompositor() == 0) than other
-        platforms. In this mode, we don't make use of device-independent pixels. Device
-        scale factor is provided to WebKit and get merged into page scale factor. Other
-        than that device scale factor should have no effects on rendering.
-
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::applyTo):
-
-2012-11-21  Fady Samuel  <fsamuel@chromium.org>
-
-        Clear MousePressed state on context menu to avoid initiating a drag
-        https://bugs.webkit.org/show_bug.cgi?id=101786
-
-        Reviewed by Ojan Vafai.
-
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::EventSender):
-        (WebTestRunner::EventSender::contextClick):
-        Only send a MouseUp on Windows. Keep the current mouse pressed state when
-        calling up a context menu.
-
-2012-11-21  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [EFL] KURL unit test crashing when tiled backing store is enabled on Release Bots
-        https://bugs.webkit.org/show_bug.cgi?id=102895
-
-        Reviewed by Gyuyoung Kim.
-
-        Change the link order so it wont override the new operator on gtest.
-        Looks like it was crashing because an allocator mismatch (using libc's
-        new and later fastMalloc delete. Thanks to Kangil Han for hinting on
-        the fastMalloc issue.
-
-        * TestWebKitAPI/CMakeLists.txt:
-
-2012-11-21  Kentaro Hara  <haraken@chromium.org>
-
-        Unreviewed, rolling out r135340.
-        http://trac.webkit.org/changeset/135340
-        https://bugs.webkit.org/show_bug.cgi?id=102492
-
-        It broke Safari's internal build
-
-        * WebKitTestRunner/InjectedBundle/Bindings/CodeGeneratorTestRunner.pm:
-        (new):
-        (GenerateModule):
-        (GenerateInterface):
-        (finish):
-
-2012-11-21  Yael Aharon  <yael.aharon@intel.com>, Gyuyoung Kim <gyuyoung.kim@samsung.com>
-
-        [EFL] Turn on WTF_USE_TILED_BACKING_STORE by default
-        https://bugs.webkit.org/show_bug.cgi?id=101526
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Turn on WTF_USE_TILED_BACKING_STORE for EFL port.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * TestWebKitAPI/CMakeLists.txt: No include KURL.cpp because of API test crash.
-
-2012-11-21  Jongseok Yang  <js45.yang@samsung.com>
-
-        [EFL][WK2] Rename ewk_view_setting_encoding_custom_XXX to ewk_view_custom_encoding_XXX
-        https://bugs.webkit.org/show_bug.cgi?id=102867
-
-        Reviewed by Gyuyoung Kim.
-
-        Rename ewk_view_setting_encoding_custom_XXX to ewk_view_custom_encoding_XXX.
-
-        ewk_view_setting_encoding_custom_XXX APIs might be misunderstanded as the "setting" word
-        because ewk_view_setting_encoding_custom_set triggers the "reload" operation.
-        And ewk_view_setting_XXX is not correct because there is ewk_settings object for settings.
-
-        * MiniBrowser/efl/main.c:
-        (on_key_down):
-
-2012-11-20  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r133859.
-        http://trac.webkit.org/changeset/133859
-        https://bugs.webkit.org/show_bug.cgi?id=102875
-
-        This patch makes API test broken (Requested by gyuyoung on
-        #webkit).
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-11-20  Jinwoo Song  <jinwoo7.song@samsung.com>
-
-        [EFL][WK2] Add Ewk_Window_Features API and related UI callbacks
-        https://bugs.webkit.org/show_bug.cgi?id=99114
-
-        Reviewed by Gyuyoung Kim.
-
-        Implemented window_create and window_close smartcallback functions.
-
-        * MiniBrowser/efl/main.c:
-        (on_window_create):
-        (on_window_close):
-        (window_create):
-
-2012-11-20  Ojan Vafai  <ojan@chromium.org>
-
-        Simplify builder filters now that we have lists of which builders run which tests
-        https://bugs.webkit.org/show_bug.cgi?id=102849
-
-        Reviewed by Dirk Pranke.
-
-        We only need filters when we load the same master for multiple groups in the
-        same test type, i.e. when we need to only include some of the builders that run
-        a given test suite on a given master.
-
-        Also, get rid of the DEFAULT_BUILDER enum. We were always using the first builder anyways.
-        Now just make it a method on BuilderGroup.
-
-        * TestResultServer/static-dashboards/builders.js:
-        (BuilderGroup.prototype.append):
-        (BuilderGroup.prototype.setup):
-        (BuilderGroup.prototype._defaultBuilder):
-        (BuilderGroup.prototype.master):
-        (requestBuilderList):
-        (isChromiumWebkitTipOfTreeTestRunner):
-        (isChromiumWebkitDepsTestRunner):
-        (loadBuildersList):
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-        (test):
-
-2012-11-20  Ojan Vafai  <ojan@chromium.org>
-
-        Remove perfav master for webkit_unit_tests and test_shell_tests.
-        There are no bots on this master that run these tests.
-        * TestResultServer/static-dashboards/builders.js:
-
-2012-11-20  Ojan Vafai  <ojan@chromium.org>
-
-        Remove special case for layout tests when builders fail to load
-        https://bugs.webkit.org/show_bug.cgi?id=102842
-
-        Reviewed by Tony Chang.
-
-        Now that we load only builders that actually run the given test
-        type, we can reliably show errors to the users because it
-        represents a broken bot.
-        * TestResultServer/static-dashboards/loader.js:
-
-2012-11-15  Ojan Vafai  <ojan@chromium.org>
-
-        Generate a list of builders/test suites from the buildbot json
-        https://bugs.webkit.org/show_bug.cgi?id=102443
-
-        Reviewed by Dirk Pranke.
-
-        Instead of the cludgy things we do now to track which bots run which tests,
-        we generate all that data from the buildbots' json files.
-        This is the minimal amount to keep everything working. Once this lands,
-        we can also do a bunch of followup cleanup.
-
-        For now we commit the generated data. In theory, in the future, we could
-        have the test results server generate the data on the fly.
-
-        For the sake of easily understanding what changes when we run the generate script,
-        also checkin a pretty printed version of the output. The pretty printed version
-        is too large to serve as part of the flakiness dashboard though.
-
-        This also has the benefit of making the dashboard load much faster since
-        we no longer ever need to block on requests to buildbot.
-
-        * TestResultServer/generate_builders_json.py: Added.
-        (master_json_url):
-        (builder_json_url):
-        (cached_build_json_url):
-        (fetch_json):
-        (insert_builder_and_test_data):
-        (main):
-        * TestResultServer/generate_builders_json_unittest.py: Added.
-        (GenerateBuildersJsonTest):
-        (GenerateBuildersJsonTest.test_master_json_url):
-        (GenerateBuildersJsonTest.test_builder_json_url):
-        (GenerateBuildersJsonTest.test_cached_build_json_url):
-        (GenerateBuildersJsonTest.test_generate_json_data):
-        (GenerateBuildersJsonTest.test_generate_json_data.dummy_fetch_json):
-        * TestResultServer/static-dashboards/builders-pretty.jsonp: Added.
-        * TestResultServer/static-dashboards/builders.js:
-        (LOAD_BUILDBOT_DATA):
-        (BuilderGroup):
-        (BuilderGroup.prototype.append):
-        (BuilderGroup.prototype.master):
-        (requestBuilderList):
-        * TestResultServer/static-dashboards/builders.jsonp: Added.
-        * TestResultServer/static-dashboards/builders_unittests.js: Added.
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (showPopupForBuild):
-        (htmlForTestResults):
-        (htmlForIndividualTestOnAllBuildersWithResultsLinks):
-        (loadExpectationsLayoutTests):
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-        (resetGlobals):
-        (test):
-        * TestResultServer/static-dashboards/loader.js:
-        * TestResultServer/static-dashboards/loader_unittests.js:
-        * TestResultServer/static-dashboards/run-embedded-unittests.html:
-        * TestResultServer/static-dashboards/run-unittests.html:
-        * TestResultServer/static-dashboards/timeline_explorer.html:
-
-2012-11-20  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [WTR][Qt] Enable fixedLayout when needed by the test
-        https://bugs.webkit.org/show_bug.cgi?id=102811
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Create a flickable view for CSS Device Adaptation tests. This is
-        crucial for testing them since they will change the size of the
-        viewport.
-
-        * WebKitTestRunner/PlatformWebView.h:
-        (PlatformWebView):
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-        (WTR::PlatformWebView::viewSupportsOptions):
-        (WTR):
-        * WebKitTestRunner/qt/main.cpp:
-        (main):
-
-2012-11-20  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [WTR] WebKitTestRunner should be able to run tests using fixed layout
-        https://bugs.webkit.org/show_bug.cgi?id=102517
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        WTR will now request the creation of a view that has a page using
-        fixed layout for CSS Device Adaptation tests, but this feature might
-        be used in the future by any other test that requires a mobile-like type
-        of viewport (i.e. Viewport META tests should be ported).
-
-        The viewport type of the other tests remains unchanged and is restored
-        when the runner leaves the device-adapt/ folder.
-
-        * WebKitTestRunner/PlatformWebView.h:
-        (PlatformWebView):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR):
-        (WTR::shouldUseFixedLayout):
-        (WTR::updateLayoutType):
-        (WTR::TestInvocation::invoke):
-        * WebKitTestRunner/efl/PlatformWebViewEfl.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-        (WTR::PlatformWebView::viewSupportsOptions):
-        (WTR):
-
-2012-11-20  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] REGRESSION(r128174): Fast build path doesn't work now
-        https://bugs.webkit.org/show_bug.cgi?id=100360
-
-        Reviewed by Tor Arne Vestbø.
-
-        Use a separated .builtRevisions.cache file instead of .qmake.cache to cache built SVN revisions.
-
-        * Scripts/webkitdirs.pm:
-        (buildQMakeProjects):
-
-2012-11-20  Mateusz Leszko  <m.leszko@samsung.com>
-
-        [EFL][GTK]Sharing accessibility support in WebKitTestRunner.
-        https://bugs.webkit.org/show_bug.cgi?id=99011
-
-        Reviewed by Martin Robinson.
-
-        Accessibility files from gtk folder are moved to atk folder due to common implementation. Event Type naming changed to default, from Gtk to ATK.
-
-        * WebKitTestRunner/InjectedBundle/atk/AccessibilityControllerAtk.cpp: Renamed from Tools/WebKitTestRunner/InjectedBundle/gtk/AccessibilityControllerGtk.cpp.
-        (WTR::AccessibilityController::logAccessibilityEvents):
-        * WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp: Renamed from Tools/WebKitTestRunner/InjectedBundle/gtk/AccessibilityUIElementGtk.cpp.
-
-2012-11-20  Zan Dobersek  <zandobersek@gmail.com>
-
-        webkitpy unit tests should run serially when checking code coverage
-        https://bugs.webkit.org/show_bug.cgi?id=102693
-
-        Reviewed by Dirk Pranke.
-
-        When checking code coverage, the unit tests should not be run in parallel
-        as this causes the tracing functions (set via sys.settrace in the coverage
-        module) being overriden, resulting in incorrect coverage reports.
-
-        * Scripts/webkitpy/test/main.py:
-        (Tester._run_tests):
-
-2012-11-19  Viatcheslav Ostapenko  <v.ostapenko@samsung.com>
-
-        [EFL] Add fallback for WebkitTestRunner if opengl is not available.
-        https://bugs.webkit.org/show_bug.cgi?id=102704
-
-        Reviewed by Laszlo Gombos.
-
-        Add fallback to non-opengl evas engine in WebkitTestRunner if opengl is not available.
-
-        * WebKitTestRunner/efl/PlatformWebViewEfl.cpp:
-        (WTR::initEcoreEvas):
-
-2012-11-19  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        [garden-o-matic] Switch frontend to use the gardeningserver.
-        https://bugs.webkit.org/show_bug.cgi?id=102712
-
-        Reviewed by Dirk Pranke.
-
-        Instead of serving garden-o-matic frontend as file, we now serve it from the gardening server. This enables
-        using garden-o-matic in a Chrome OS device, with a separate machine as a headless server.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html: Changed CSP policy to use 'self'.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout.js: Removed now-unnecessary references to kLocalServerURL.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout_unittests.js: Tweaked the test expectation.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js: Removed kLocalServerURL.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js: Spuriously updated the name of the webkit-patch command.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results.js: Removed kLocalServerURL.
-        * Scripts/webkitpy/tool/servers/gardeningserver.py: Changed to use the new launch URL.
-
-2012-11-19  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r135172.
-        http://trac.webkit.org/changeset/135172
-        https://bugs.webkit.org/show_bug.cgi?id=102710
-
-        Broke some WebKit2 api tests :( (Requested by japhet on
-        #webkit).
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::updateForCommittedLoad):
-
-2012-11-19  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        [garden-o-matic] Enable serving garden-o-matic with gardeningserver.
-        https://bugs.webkit.org/show_bug.cgi?id=102703
-
-        Reviewed by Ojan Vafai.
-
-        To enable gardening from a Chrome OS device, we need the ability to serve garden-o-matic
-        from the same origin as the gardening server. This change gently massages the current
-        logic to adapt an extension-sniffing-based approach of identifying static files,
-        rather than requiring an explicit list.
-
-        * Scripts/webkitpy/tool/servers/reflectionhandler.py:
-        (ReflectionHandler): Replaced STATIC_FILE_NAMES with STATIC_FILE_EXTENSIONS.
-        (ReflectionHandler._handle_request): Changed the logic to smell for extensions, rather than specific files.
-        * Scripts/webkitpy/tool/servers/reflectionhandler_unittest.py: Added.
-
-2012-11-19  Ojan Vafai  <ojan@chromium.org>
-
-        Add DOM and HTML watchlists and add myself to a bunch of lists
-        https://bugs.webkit.org/show_bug.cgi?id=102707
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-11-19  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move methods that only use the WebKit API from DRTTestRunner to TestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=102676
-
-        Reviewed by Tony Chang.
-
-        In addition, I've replaced parsePageNumber with the more commonly used
-        cppVariantToInt32, moved abortModal to the list of stubbed out methods,
-        and removed setAutomaticLinkDetectionEnabled which wasn't used
-        anywhere.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        (DRTTestRunner::reset):
-        (DRTTestRunner::overridePreference):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner::TestRunner::reset):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::setTabKeyCyclesThroughElements):
-        (WebTestRunner::TestRunner::setAsynchronousSpellCheckingEnabled):
-        (WebTestRunner::TestRunner::execCommand):
-        (WebTestRunner::TestRunner::isCommandEnabled):
-        (WebTestRunner::TestRunner::pauseAnimationAtTimeOnElementWithId):
-        (WebTestRunner::TestRunner::pauseTransitionAtTimeOnElementWithId):
-        (WebTestRunner::TestRunner::elementDoesAutoCompleteForElementWithId):
-        (WebTestRunner::TestRunner::numberOfActiveAnimations):
-        (WebTestRunner::TestRunner::callShouldCloseOnWebView):
-        (WebTestRunner::TestRunner::setDomainRelaxationForbiddenForURLScheme):
-        (WebTestRunner::TestRunner::evaluateScriptInIsolatedWorldAndReturnValue):
-        (WebTestRunner::TestRunner::evaluateScriptInIsolatedWorld):
-        (WebTestRunner::TestRunner::setIsolatedWorldSecurityOrigin):
-        (WebTestRunner::TestRunner::setIsolatedWorldContentSecurityPolicy):
-        (WebTestRunner::TestRunner::addOriginAccessWhitelistEntry):
-        (WebTestRunner::TestRunner::removeOriginAccessWhitelistEntry):
-        (WebTestRunner::TestRunner::hasCustomPageSizeStyle):
-        (WebTestRunner::TestRunner::forceRedSelectionColors):
-        (WebTestRunner::TestRunner::addUserScript):
-        (WebTestRunner::TestRunner::addUserStyleSheet):
-        (WebTestRunner::TestRunner::startSpeechInput):
-        (WebTestRunner::TestRunner::loseCompositorContext):
-        (WebTestRunner::TestRunner::markerTextForListItem):
-        (WebTestRunner::TestRunner::findString):
-        (WebTestRunner::TestRunner::setMinimumTimerInterval):
-        (WebTestRunner::TestRunner::setAutofilled):
-        (WebTestRunner::TestRunner::setValueForUser):
-        (WebTestRunner::TestRunner::enableFixedLayoutMode):
-        (WebTestRunner::TestRunner::setFixedLayoutSize):
-        (WebTestRunner::TestRunner::selectionAsMarkup):
-        (WebTestRunner::TestRunner::setTextSubpixelPositioning):
-        (WebTestRunner::TestRunner::resetPageVisibility):
-        (WebTestRunner::TestRunner::setPageVisibility):
-        (WebTestRunner::TestRunner::setTextDirection):
-        (WebTestRunner::TestRunner::textSurroundingNode):
-        (WebTestRunner::TestRunner::workerThreadCount):
-        (WebTestRunner::TestRunner::cppVariantToBool):
-        (WebTestRunner::TestRunner::cppVariantToInt32):
-        (WebTestRunner::TestRunner::cppVariantToWebString):
-        (WebTestRunner::TestRunner::cppVariantToWebStringArray):
-        (WebTestRunner::TestRunner::printErrorMessage): formerly logErrorToConsole
-        (WebTestRunner::TestRunner::fallbackMethod):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (WebKit):
-        (WebTestRunner::TestRunner::setWebView):
-        (TestRunner):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::createMainWindow):
-        (TestShell::~TestShell):
-
-2012-11-19  Yusuke Sato  <yusukes@chromium.org>
-
-        [Chromium] Flash cannot receive scroll events when threaded compositing is in use
-        https://bugs.webkit.org/show_bug.cgi?id=101423
-
-        Reviewed by James Robinson.
-
-        Call setWantsWheelEvents(true) in initialize() so that gesture-events and transformed-events tests in
-        LayoutTests/platform/chromium/plugins/ will not fail even if a buildbot introduces threaded compositing
-        in the future.
-
-        * DumpRenderTree/chromium/TestWebPlugin.cpp:
-        (TestWebPlugin::initialize):
-
-2012-11-19  Nate Chapin  <japhet@chromium.org>
-
-        Move empty loading to DocumentLoader, simplify FrameLoader::init()
-        https://bugs.webkit.org/show_bug.cgi?id=101512
-
-        Reviewed by Adam Barth.
-
-        Chromium DRT has some code that doesn't play nicely with empty urls and incorrectly
-        interprets them as a non-empty load. This ensures
-        http/tests/navigation/new-window-redirect-history.html continues to pass
-        in chromium.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::updateForCommittedLoad):
-
-2012-11-19  Vincent Scheib  <scheib@chromium.org>
-
-        [Chromium] Remove WebKit::WebRuntimeFeatures::enablePointerLock.
-        https://bugs.webkit.org/show_bug.cgi?id=96946
-
-        Reviewed by Adam Barth.
-
-        The runtime flag functionality has already been removed.
-        Now that Chromium no longer has a compile dependency on this
-        API, it can be removed as well.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-
-2012-11-19  Kihong Kwon  <kihong.kwon@samsung.com>
-
-        Add PROXIMITY_EVENTS feature
-        https://bugs.webkit.org/show_bug.cgi?id=102658
-
-        Reviewed by Kentaro Hara.
-
-        Add PROXIMITY_EVENTS feature to FeatureList and qmake.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2012-11-19  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2][WTR] Memory leak in TestController::initialize()
-        https://bugs.webkit.org/show_bug.cgi?id=102616
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Remove call to WKStringCreateWithUTF8CString() to construct
-        the icon database path which was leaking memory since the
-        returned WKStringRef was not adopted. The code now uses
-        WTF::String instead of std::string and converts it to a
-        WKStringRef using toWK().
-
-        * WebKitTestRunner/StringFunctions.h:
-        (WTR::toWK): Overload toWK() to take a WTF::String in
-        argument.
-        (WTR):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-
-2012-11-19  Kentaro Hara  <haraken@chromium.org>
-
-        Remove IDLStructure.pm
-        https://bugs.webkit.org/show_bug.cgi?id=102642
-
-        Reviewed by Adam Barth.
-
-        Previously IDLStructure.pm was full of regular expressions to
-        parse IDL files. Now a new IDL parser is implemented, IDLStructure.pm
-        just contains several data structures for the IDL parser. We can
-        move them to IDLParser.pm and thus remove IDLStructure.pm.
-
-        No tests. No change in generated code.
-
-        * WebKitTestRunner/DerivedSources.make:
-        * WebKitTestRunner/GNUmakefile.am:
-        * WebKitTestRunner/InjectedBundle/DerivedSources.pri:
-
-2012-11-18  KyungTae Kim  <ktf.kim@samsung.com>
-
-        [EFL] Not to include "ewk_view_private.h" in Tools
-        https://bugs.webkit.org/show_bug.cgi?id=102644
-
-        Reviewed by Gyuyoung Kim.
-
-        Include ewk_view.h instead of ewk_view_private.h in Tools
-
-        * DumpRenderTree/efl/PixelDumpSupportEfl.cpp:
-
-2012-11-18  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r135104.
-        http://trac.webkit.org/changeset/135104
-        https://bugs.webkit.org/show_bug.cgi?id=102638
-
-        Should not use commit queue to add people to committer list.
-        (Requested by ap_ on #webkit).
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-11-18  Vivek Galatage  <vivek.vg@samsung.com>
-
-        Add myself to committers.py
-        https://bugs.webkit.org/show_bug.cgi?id=102636
-
-        Reviewed by Laszlo Gombos.
-
-        Add myself to committers.py
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-11-18  Genevieve Mak  <gmak@rim.com>
-
-        [BlackBerry] Enable Touch Sliders
-        https://bugs.webkit.org/show_bug.cgi?id=102516
-
-        Reviewed by Rob Buis.
-
-        Enabled for BlackBerry only
-        PR #242781
-        PR #176014
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-11-17  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Remove unused code I wrote a long time ago from gardeningserver.py
-        https://bugs.webkit.org/show_bug.cgi?id=102605
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/tool/servers/gardeningserver.py: Removed.
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py: Removed.
-
-2012-11-16  Tony Chang  <tony@chromium.org>
-
-        Remove ENABLE_CSS_HIERARCHIES since it's no longer in use
-        https://bugs.webkit.org/show_bug.cgi?id=102554
-
-        Reviewed by Andreas Kling.
-
-        As mentioned in https://bugs.webkit.org/show_bug.cgi?id=79939#c41 ,
-        we're going to revist this feature once additional vendor support is
-        achieved.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-11-16  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move stubs from DRTTestRunner to TestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=102489
-
-        Reviewed by Adam Barth.
-
-        This is part of moving all methods from DRTTestRunner to TestRunner.
-        Instead of keeping one stub per method, I'm using a shared stub to
-        clean up the code.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner::TestRunner::TestRunner):
-        (WebTestRunner):
-        (WebTestRunner::TestRunner::fallbackMethod):
-        (WebTestRunner::TestRunner::notImplemented):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (WebTestRunner):
-        (TestRunner):
-        (WebTestRunner::TestRunner::setDelegate):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::createMainWindow):
-        (TestShell::~TestShell):
-
-2012-11-16  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] fake drag drop operations in the WebTestProxyBase instead of the WebViewHost
-        https://bugs.webkit.org/show_bug.cgi?id=102495
-
-        Reviewed by Adam Barth.
-
-        When a drag operation is initiated in a layout test, we need to
-        simulate a corresponding drop event, otherwise the WebViewImpl will sit
-        there waiting for it. Instead of having the embedder taking care of
-        this, move this into the TestRunner library.
-
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebKit):
-        (WebTestProxyBase):
-        (WebTestRunner::WebTestProxy::startDragging):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::startDragging):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-11-16  Tien-Ren Chen  <trchen@chromium.org>
-
-        Rename applyDefaultDeviceScaleFactorInCompositor to setApplyDeviceScaleFactorInCompositor
-        https://bugs.webkit.org/show_bug.cgi?id=102462
-
-        Reviewed by James Robinson.
-
-        As we no longer have this "default" device scale factor.
-
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::applyTo):
-
-2012-11-15  Takashi Sakamoto  <tasak@google.com>
-
-        [Win] key event's location does not work on Windows platform.
-        https://bugs.webkit.org/show_bug.cgi?id=89742
-
-        Reviewed by Brent Fulgham.
-
-        Modified keyDownCallback to use lparam to specify left-hand keys or
-        right-hand keys.
-
-        * DumpRenderTree/win/EventSender.cpp:
-        (makeKeyDataForScanCode):
-        Given a virtual keycode, generate scancode and extended key bit of
-        lparam.
-        (keyDownCallback):
-        Use lparam for left-hand and right-hand keys, because Windows doesn't
-        directly provide a virtual keycode which distinguishes between
-        left-hand and right-hand. For example, when control key is pressed,
-        wparam has VK_CONTROL, neither VK_RCONTROL nor VK_LCONTROL.
-
-2012-11-16  Tommy Widenflycht  <tommyw@google.com>
-
-        [chromium] MediaStream API: Add missing WebRTCPeerConnectionHandlerClient::didAddRemoteDataChannel
-        https://bugs.webkit.org/show_bug.cgi?id=102386
-
-        Reviewed by Adam Barth.
-
-        Adding mock data channel functionality.
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (MockWebRTCPeerConnectionHandler::openDataChannel):
-
-2012-11-16  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] delete unused testRunner methods
-        https://bugs.webkit.org/show_bug.cgi?id=102479
-
-        Reviewed by Adam Barth.
-
-        These methods aren't used by any layout test. Remove them to avoid bit rot
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        (DRTTestRunner::reset):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::shouldBeginEditing):
-        (WebViewHost::shouldEndEditing):
-        (WebViewHost::shouldInsertNode):
-        (WebViewHost::shouldInsertText):
-        (WebViewHost::shouldChangeSelectedRange):
-        (WebViewHost::shouldDeleteRange):
-        (WebViewHost::shouldApplyStyle):
-        (WebViewHost::startDragging):
-        (WebViewHost::enterFullScreenNow):
-        (WebViewHost::exitFullScreenNow):
-
-2012-11-15  Alexey Proskuryakov  <ap@apple.com>
-
-        Private Browsing is a per-page setting that sets a global value
-        https://bugs.webkit.org/show_bug.cgi?id=67870
-
-        Reviewed by Sam Weinig.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm: (setDefaultsToConsistentValuesForTesting):
-        Call _switchNetworkLoaderToNewTestingSession before making other settings, so that
-        they would actually apply to the testing session.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::initialize):
-        (WTR::InjectedBundle::beginTesting):
-        Only call WKBundleSwitchNetworkLoaderToNewTestingSession once per process, matching
-        WebKit1. I'm not fully sure what is going wrong, but apparently creating mutiple
-        sessions with the same identifier doesn't quite work.
-
-2012-11-16  Yael Aharon  <yael.aharon@intel.com>
-
-        Unreviewed. Help bugzilla find me.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-11-16  Peter Beverloo  <peter@chromium.org>
-
-        Running TestWebKitAPI and webkit_unit_tests for Chromium Android should defer to the Chromium-sided test runner
-        https://bugs.webkit.org/show_bug.cgi?id=102245
-
-        Reviewed by Tony Chang.
-
-        When running TestWebKitAPI and webkit_unit_test for Chromium Android, defer
-        the actual running part to the test runner which lives on the Chromium side.
-        Re-implementing or even generalizing the device-interaction part in WebKit
-        is error prone and not worth the effort.
-
-        * Scripts/run-api-tests:
-        * Scripts/run-chromium-webkit-unit-tests:
-
-2012-11-15  Yury Semikhatsky  <yurys@chromium.org>
-
-        Memory instrumentation: add code for reporting stack traces of unknown instrumented objects
-        https://bugs.webkit.org/show_bug.cgi?id=102384
-
-        Reviewed by Pavel Feldman.
-
-        Updated return type in accord with the changes in MemoryInstrumentationClient.
-
-        * TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp:
-
-2012-11-15  Gustavo Noronha Silva  <gns@gnome.org>
-
-        [GTK] Split WebCore/platform into a separate library
-        https://bugs.webkit.org/show_bug.cgi?id=94435
-
-        Reviewed by Martin Robinson.
-
-        More people have been reporting problems when linking WebCore because
-        the command line limit is being exceeded. Splitting WebCore a bit more
-        is in order.
-
-        * GNUmakefile.am: link libWebCorePlatform into DRT
-
-2012-11-15  Dana Jansens  <danakj@chromium.org>
-
-        [chromium] Stop using the WebCompositorSupport methods for changing settings
-        https://bugs.webkit.org/show_bug.cgi?id=101968
-
-        Reviewed by James Robinson.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::setPerTilePaintingEnabled):
-        (TestShell::setAcceleratedAnimationEnabled):
-
-2012-11-15  Tony Chang  <tony@chromium.org>
-
-        Generate Settings from a .in file
-        https://bugs.webkit.org/show_bug.cgi?id=100393
-
-        Reviewed by Adam Barth.
-
-        Add the generated WebCore files to the include dir.
-
-        * TestWebKitAPI/CMakeLists.txt:
-        * WebKitTestRunner/CMakeLists.txt:
-
-2012-11-15  Roger Fong  <roger_fong@apple.com>
-
-        Make old-run-webkit-tests handle setting the results directory properly.
-        https://bugs.webkit.org/show_bug.cgi?id=102273
-        <rdar://problem/11571607>
-
-        Reviewed by Timothy Horton.
-
-        A call to chdirWebkit in old-run-webkit-tests set the current working directory to the OpenSource folder.
-        Thus setting --results-directory to OpenSource/layout-test-results would create OpenSource/layout-test-results inside the main OpenSource folder.
-        This caused many other problems including failure to upload test results and failed future test runs.
-        The solution is to save the current working directory before calling chdirWebKit and then reconstructing the full path to the results directory 
-        using the saved directory when setting $testResultsDirectory.
-
-        * Scripts/old-run-webkit-tests:
-
-2012-11-15  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r134800 and r134805.
-        http://trac.webkit.org/changeset/134800
-        http://trac.webkit.org/changeset/134805
-        https://bugs.webkit.org/show_bug.cgi?id=102417
-
-        This patch broke chromium port (Requested by jianli on
-        #webkit).
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (MockWebRTCPeerConnectionHandler::openDataChannel):
-
-2012-11-15  Tommy Widenflycht  <tommyw@google.com>
-
-        [chromium] MediaStream API: Add missing WebRTCPeerConnectionHandlerClient::didAddRemoteDataChannel
-        https://bugs.webkit.org/show_bug.cgi?id=102386
-
-        Reviewed by Adam Barth.
-
-        Adding mock data channel functionality.
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (MockWebRTCPeerConnectionHandler::openDataChannel):
-
-2012-11-15  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r134649 and r134665.
-        http://trac.webkit.org/changeset/134649
-        http://trac.webkit.org/changeset/134665
-        https://bugs.webkit.org/show_bug.cgi?id=102413
-
-        Broke a ton of downstream chromium tests (Requested by japhet
-        on #webkit).
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::updateForCommittedLoad):
-
-2012-11-15  Andreas Kling  <akling@apple.com>
-
-        Update my e-mail address.
-
-        Rubber-stamped by Anders Koivisto.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-11-15  Dominik Röttsches  <dominik.rottsches@intel.com>
-
-        [EFL] Bump Harfbuzz to allow fixing bug 101009 on EFL
-        https://bugs.webkit.org/show_bug.cgi?id=101323
-
-        Reviewed by Martin Robinson.
-
-        Bumping Harfbuzz to newer version so that we can remove the
-        ifdef round the fix for bug 101009 for EFL, too.
-        We're using the zip snapshot since jhbuild can fallback to the previously
-        downloaded blob in case of network failures which leads to better
-        buildbot robustness. This zip snapshot currently needs to be locally
-        patched to fix ICU detection on systems that don't have icu pkg-config files.
-        The patch is suggested for merging into HarfBuzz. We can remove it locally
-        once it's accepted into HarfBuzz upstream.
-
-        * efl/patches/harfbuzz-icu-detection-fix.patch: Applied after retrieving source to fix harfbuzz detection on systems that don't have pkg-config files for it.
-        * efl/jhbuild.modules: Bumping harfbuzz version.
-
-2012-11-15  Alexey Proskuryakov  <ap@apple.com>
-
-        [Mac] Implement WTR --no-timeout-at-all option
-        https://bugs.webkit.org/show_bug.cgi?id=102251
-
-        Reviewed by Eric Carlson.
-
-        * WebKitTestRunner/mac/TestControllerMac.mm: (WTR::TestController::platformRunUntil):
-        Just do it, and convert to Objective C on the way for simplicity.
-
-2012-11-14  Ryuan Choi  <ryuan.choi@gmail.com>
-
-        [EFL] Port tiled backing store
-        https://bugs.webkit.org/show_bug.cgi?id=71352
-
-        Reviewed by Gyuyoung Kim.
-
-        * EWebLauncher/main.c: Added option to test the WebCore's tiled backing store.
-        (_User_Arguments):
-        (windowCreate):
-        (parseUserArguments):
-
-2012-11-14  Andy Estes  <aestes@apple.com>
-
-        Fix the build.
-
-        * TestWebKitAPI/mac/TestBrowsingContextLoadDelegate.h:
-
-2012-11-14  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: consolidate webkit-base-finding code
-        https://bugs.webkit.org/show_bug.cgi?id=102007
-
-        Reviewed by Eric Seidel.
-
-        This patch creates a new "WebKitFinder" class that other
-        modules can use to find the top of the WebKit tree and
-        commonly used subdirectories. This logic was in the
-        webkitpy.layout_test.port classes but wasn't specific to those
-        classes and now can be used by other modules without needing a port
-        (e.g., by the check-webkit-style python linter).
-
-        This code is somewhat redundant with the code for find_checkout_root()
-        in the scm modules, but it does not rely on the presence of a version
-        control system to work. This is a requirement for some uses of the
-        tree (e.g., Chromium tester checkouts).
-
-        This patch removes most of the logic from the layout_tests.port.config
-        module and makes that as private as possible. Now we just need to move
-        the default_configuration and flag_from_configuration logic into
-        DeprecatedPort (or someplace else appropriate) and we can finish
-        getting rid of the Config class (but that is a separate patch).
-
-        * Scripts/webkitpy/common/webkit_finder.py: Added.
-        (WebKitFinder):
-        (WebKitFinder.__init__):
-        (WebKitFinder.webkit_base):
-        (WebKitFinder.path_from_webkit_base):
-        (WebKitFinder.path_to_script):
-        (WebKitFinder.layout_tests_dir):
-        (WebKitFinder.perf_tests_dir):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.__init__):
-        (Port):
-        (Port.webkit_base):
-        (Port.path_from_webkit_base):
-        (Port.path_to_script):
-        (Port.layout_tests_dir):
-        (Port.perf_tests_dir):
-        (Port.set_option_default):
-        (Port._run_script):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_diff_text):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        (ChromiumLinuxPort._determine_driver_path_statically):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/config.py:
-        (Config.__init__):
-        (Config.build_directory):
-        (Config.default_configuration):
-        (Config._read_configuration):
-        * Scripts/webkitpy/layout_tests/port/config_mock.py: Removed.
-        * Scripts/webkitpy/layout_tests/port/config_unittest.py:
-        (ConfigTest.test_default_configuration__standalone):
-        (ConfigTest.test_default_configuration__scripterror):
-        * Scripts/webkitpy/layout_tests/port/driver_unittest.py:
-        (DriverTest.make_port):
-        (DriverTest.test_no_timeout):
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort.setup_environ_for_server):
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.show_results_html_file):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (TestWebKitPort.__init__):
-        (PortTestCase.make_port):
-        * Scripts/webkitpy/layout_tests/port/win_unittest.py:
-        (WinPortTest.test_expectations_files):
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver_unittest.py:
-        (XvfbDriverTest.make_driver):
-        (XvfbDriverTest.test_stop):
-        * Scripts/webkitpy/style/checkers/python.py:
-        (Pylinter.__init__):
-
-2012-11-14  Dana Jansens  <danakj@chromium.org>
-
-        [chromium] WebPreferences reset() should set perTilePainting and acceleratedAnimation settings to false.
-        https://bugs.webkit.org/show_bug.cgi?id=102296
-
-        Reviewed by James Robinson.
-
-        These settings are always set by TestShell anyhow, but we should be
-        setting them to false here along with everything else.
-
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-
-2012-11-08  Andy Estes  <aestes@apple.com>
-
-        [WebKit2] Need API in UIProcess to enable loading of custom protocols
-        https://bugs.webkit.org/show_bug.cgi?id=101674
-
-        Reviewed by Brady Eidson.
-
-        Add an API test that implements a custom protocol and attempts to load
-        a resource requiring that protocol in a WKView. The test passes only if
-        didFinishLoadForFrame: fires.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2ObjC/CustomProtocolsTest.mm: Added.
-        (+[TestProtocol canInitWithRequest:]):
-        (+[TestProtocol canonicalRequestForRequest:]):
-        (+[TestProtocol requestIsCacheEquivalent:toRequest:]):
-        (-[TestProtocol startLoading]):
-        (-[TestProtocol stopLoading]):
-        * TestWebKitAPI/Tests/WebKit2ObjC/UserContentTest.mm:
-        * TestWebKitAPI/mac/TestBrowsingContextLoadDelegate.h: Copied from Source/WebKit2/UIProcess/API/mac/WKBrowsingContextControllerInternal.h.
-        * TestWebKitAPI/mac/TestBrowsingContextLoadDelegate.mm: Copied from Source/WebKit2/UIProcess/API/mac/WKBrowsingContextControllerInternal.h.
-        (-[TestBrowsingContextLoadDelegate initWithBlockToRunOnLoad:]):
-        (-[TestBrowsingContextLoadDelegate browsingContextControllerDidFinishLoad:]):
-
-2012-11-14  Ojan Vafai  <ojan@chromium.org>
-
-        Fix some defuct flakiness dashboard unittests.
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-
-2012-11-14  Glenn Adams  <glenn@skynav.com>
-
-        webkitpy: print-expectations - add --paths option to print only paths of test expectation files
-        https://bugs.webkit.org/show_bug.cgi?id=102269
-
-        Reviewed by Dirk Pranke.
-
-        Add --paths option to print-expectations command in order to obtain list of applicable
-        test expectation file paths.
-
-        * Scripts/webkitpy/tool/commands/queries.py:
-        (PrintExpectations.__init__):
-        (PrintExpectations.execute):
-        * Scripts/webkitpy/tool/commands/queries_unittest.py:
-        (PrintExpectationsTest.run_test):
-        (PrintExpectationsTest.test_paths):
-
-2012-11-14  James Robinson  <jamesr@chromium.org>
-
-        webgl-background-color.html started failing
-        https://bugs.webkit.org/show_bug.cgi?id=102247
-
-        Reviewed by Adrienne Walker.
-
-        The compositor thread should outlive the WebView.
-
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell):
-
-2012-11-14  Nate Chapin  <japhet@chromium.org>
-
-        Move empty loading to DocumentLoader, simplify FrameLoader::init()
-        https://bugs.webkit.org/show_bug.cgi?id=101512
-
-        Reviewed by Adam Barth.
-
-        Chromium DRT has some code that doesn't play nicely with empty urls and incorrectly
-        interprets them as a non-empty load. This ensures
-        http/tests/navigation/new-window-redirect-history.html continues to pass
-        in chromium.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::updateForCommittedLoad):
-
-2012-11-14  Zan Dobersek  <zandobersek@gmail.com>
-
-        Remove uses of deprecated unittest.TestCase aliases
-        https://bugs.webkit.org/show_bug.cgi?id=102253
-
-        Reviewed by Dirk Pranke.
-
-        Replace the deprecated unittest.TestCase methods with the corresponding methods
-        everywhere inside the Tools directory. The following replacements are done:
-        - assertEquals -> assertEqual
-        - assert_ -> assertTrue
-        - failUnlessRaises -> assertRaises
-
-        * BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py:
-        (SVNMirrorTest.test_CheckOutSource):
-        * QueueStatusServer/model/queuepropertymixin_unittest.py:
-        (QueuePropertyMixinTest.test_queue_property):
-        * QueueStatusServer/model/queues_unittest.py:
-        (QueueTest._assert_short_name):
-        (QueueTest._assert_display_name):
-        (QueueTest._assert_name_with_underscores):
-        * QueueStatusServer/model/workitems_unittest.py:
-        (WorkItemsTest.test_display_position_for_attachment):
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-        (test_parse_log_entries_from_changelog):
-        (test_parse_log_entries_from_annotated_file):
-        (_assert_parse_reviewer_text_and_list):
-        (_assert_parse_reviewer_text_list):
-        (_assert_fuzzy_reviewer_match):
-        (_assert_parse_authors):
-        (test_latest_entry_parse):
-        (test_latest_entry_parse_single_entry):
-        (test_set_reviewer):
-        (test_set_short_description_and_bug_url):
-        * Scripts/webkitpy/common/checkout/diff_parser_unittest.py:
-        (DiffParserTest.test_diff_parser):
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-        (GitSVNTest.test_revisions_changing_files_with_local_commit):
-        (GitSVNTest.test_upstream_branch):
-        (GitSVNTest.test_create_patch_with_rm_and_changed_files):
-        (GitTestWithMock.test_push_local_commits_to_server_with_username_and_password):
-        * Scripts/webkitpy/common/config/ports_unittest.py:
-        (DeprecatedPortTest.test_mac_port):
-        (DeprecatedPortTest.test_gtk_port):
-        (DeprecatedPortTest.test_efl_port):
-        (DeprecatedPortTest.test_qt_port):
-        (DeprecatedPortTest.test_chromium_port):
-        (DeprecatedPortTest.test_chromium_android_port):
-        (DeprecatedPortTest.test_chromium_xvfb_port):
-        * Scripts/webkitpy/common/config/urls_unittest.py:
-        (URLsTest.test_parse_bug_id):
-        (URLsTest.test_parse_attachment_id):
-        * Scripts/webkitpy/common/find_files_unittest.py:
-        (TestWinNormalize.assert_filesystem_normalizes):
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla_unittest.py:
-        (test_url_creation):
-        (test_parse_bug_id):
-        (_assert_dictionaries_equal):
-        (test_parse_bugs_from_xml):
-        (test_attachment_detail_bug_parsing):
-        (_assert_result_count):
-        (test_request_page_parsing):
-        (test_quip_page_parsing):
-        (EditUsersParserTest._assert_login_userid_pairs):
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-        (test_status_parsing):
-        (test_latest_cached_build):
-        (test_results_zip_url):
-        * Scripts/webkitpy/common/net/credentials_unittest.py:
-        (test_credentials_from_environment):
-        * Scripts/webkitpy/common/net/failuremap_unittest.py:
-        (FailureMapTest.test_failing_revisions):
-        (FailureMapTest.test_new_failures):
-        (FailureMapTest.test_new_failures_with_old_revisions):
-        (FailureMapTest.test_new_failures_with_more_old_revisions):
-        (FailureMapTest.test_tests_failing_for):
-        (FailureMapTest.test_failing_tests):
-        * Scripts/webkitpy/common/net/layouttestresults_unittest.py:
-        (LayoutTestResultsTest.test_set_failure_limit_count):
-        * Scripts/webkitpy/common/net/unittestresults_unittest.py:
-        (UnitTestResultsTest.test_nostring):
-        (UnitTestResultsTest.test_emptystring):
-        * Scripts/webkitpy/common/read_checksum_from_png_unittest.py:
-        (ReadChecksumFromPngTest.test_read_checksum):
-        * Scripts/webkitpy/common/system/deprecated_logging_unittest.py:
-        (LoggingTest.assert_log_equals):
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        (ScriptErrorTest.test_string_from_args):
-        (ScriptErrorTest.test_message_with_output):
-        (ExecutiveTest.test_run_command_with_bad_command):
-        (ExecutiveTest.test_run_command_with_unicode):
-        (ExecutiveTest.serial_test_run_in_parallel):
-        * Scripts/webkitpy/common/system/filesystem_mock_unittest.py:
-        (MockFileSystemTest.quick_check):
-        * Scripts/webkitpy/common/system/filesystem_unittest.py:
-        (GenericFileSystemTests.test_glob__trailing_asterisk):
-        (GenericFileSystemTests.test_glob__leading_asterisk):
-        (GenericFileSystemTests.test_glob__middle_asterisk):
-        (GenericFileSystemTests.test_glob__period_is_escaped):
-        (RealFileSystemTest.test_chdir):
-        (RealFileSystemTest.test_remove_file_with_retry):
-        (RealFileSystemTest.test_sep):
-        * Scripts/webkitpy/common/system/logtesting.py:
-        (TestLogStream.assertMessages):
-        * Scripts/webkitpy/common/system/logutils_unittest.py:
-        (GetLoggerTest.test_get_logger_in_webkitpy):
-        (GetLoggerTest.test_get_logger_not_in_webkitpy):
-        * Scripts/webkitpy/common/system/outputcapture.py:
-        (OutputCaptureTestCaseBase.assertStdout):
-        (OutputCaptureTestCaseBase.assertStderr):
-        * Scripts/webkitpy/common/system/path_unittest.py:
-        (AbspathTest.test_abspath_to_uri_cygwin):
-        (AbspathTest.test_abspath_to_uri_unixy):
-        (AbspathTest.test_abspath_to_uri_win):
-        (AbspathTest.test_abspath_to_uri_escaping_unixy):
-        (AbspathTest.test_abspath_to_uri_escaping_cygwin):
-        * Scripts/webkitpy/common/system/platforminfo_unittest.py:
-        (TestPlatformInfo.test_real_code):
-        (TestPlatformInfo.test_os_name_and_wrappers):
-        (TestPlatformInfo.test_os_version):
-        (TestPlatformInfo.test_total_bytes_memory):
-        * Scripts/webkitpy/common/system/user_unittest.py:
-        (UserTest.test_confirm.mock_raw_input):
-        (UserTest.test_confirm):
-        * Scripts/webkitpy/common/system/zipfileset_unittest.py:
-        (ZipFileSetTest.test_open):
-        (ZipFileSetTest.test_read):
-        * Scripts/webkitpy/common/watchlist/watchlist_unittest.py:
-        (WatchListTest.test_filename_definition_no_matches):
-        (WatchListTest.test_filename_definition):
-        (WatchListTest.test_cc_rules_simple):
-        (WatchListTest.test_cc_rules_complex):
-        (WatchListTest.test_cc_and_message_rules_complex):
-        (WatchListTest.test_cc_and_message_rules_no_matches):
-        (WatchListTest.test_added_match):
-        (WatchListTest.test_deleted_match):
-        (WatchListTest.test_more_and_less_match):
-        (WatchListTest.test_complex_match):
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner_unittest.py:
-        (LockCheckingRunner.handle_finished_list):
-        (LayoutTestRunnerTests.test_interrupt_if_at_failure_limits):
-        (LayoutTestRunnerTests.test_update_summary_with_result):
-        (LayoutTestRunnerTests.test_servers_started):
-        (SharderTests.assert_shards):
-        (SharderTests.test_shard_in_two_has_no_locked_shards):
-        (SharderTests.test_shard_in_two_has_no_unlocked_shards):
-        (NaturalCompareTest.assert_cmp):
-        (KeyCompareTest.assert_cmp):
-        * Scripts/webkitpy/layout_tests/models/test_configuration_unittest.py:
-        (TestConfigurationTest.test_items):
-        (TestConfigurationTest.test_keys):
-        (TestConfigurationTest.test_str):
-        (TestConfigurationTest.test_repr):
-        (TestConfigurationTest.test_hash):
-        (TestConfigurationTest.test_eq):
-        (TestConfigurationTest.test_values):
-        (SpecifierSorterTest.test_init):
-        (SpecifierSorterTest.test_add_specifier):
-        (SpecifierSorterTest.test_add_macros):
-        (SpecifierSorterTest.test_category_priority):
-        (SpecifierSorterTest.test_specifier_priority):
-        (SpecifierSorterTest.test_sort_specifiers):
-        (TestConfigurationConverterTest.test_symmetric_difference):
-        (TestConfigurationConverterTest.test_to_config_set):
-        (TestConfigurationConverterTest.test_macro_expansion):
-        (TestConfigurationConverterTest.test_to_specifier_lists):
-        (TestConfigurationConverterTest.test_macro_collapsing):
-        (TestConfigurationConverterTest.test_converter_macro_collapsing):
-        (TestConfigurationConverterTest.test_specifier_converter_access):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (assert_exp):
-        (MiscTests.test_result_was_expected):
-        (MiscTests.test_remove_pixel_failures):
-        (MiscTests.test_suffixes_for_expectations):
-        (MiscTests.test_get_expectations_string):
-        (SkippedTests.check):
-        (ExpectationSyntaxTests.assert_tokenize_exp):
-        (SemanticTests.test_bad_bugid):
-        (SemanticTests.test_missing_bugid):
-        (TestExpectationSerializationTests.test_reconstitute_only_these):
-        * Scripts/webkitpy/layout_tests/models/test_failures_unittest.py:
-        (TestFailuresTest.test_crashes):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_nonexistant_expectations):
-        (PortTest.test_additional_expectations):
-        * Scripts/webkitpy/layout_tests/port/builders_unittest.py:
-        (BuildersTest.test_path_from_name):
-        * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:
-        (ChromiumAndroidPortTest.test_attributes):
-        (ChromiumAndroidPortTest.test_default_timeout_ms):
-        (ChromiumAndroidPortTest.test_get_devices_one_device):
-        (ChromiumAndroidPortTest.test_get_devices_two_devices):
-        (ChromiumAndroidPortTest.test_get_device_serial_one_device):
-        (ChromiumAndroidPortTest.test_get_device_serial_two_devices):
-        (ChromiumAndroidPortTest.test_must_require_http_server):
-        (ChromiumAndroidDriverTest.test_get_last_stacktrace):
-        (ChromiumAndroidDriverTest.test_get_crash_log):
-        (ChromiumAndroidDriverTest.test_cmd_line):
-        (ChromiumAndroidDriverTest.test_read_prompt):
-        (ChromiumAndroidDriverTest.test_command_from_driver_input):
-        (ChromiumAndroidDriverTwoDriversTest.test_two_drivers):
-        (ChromiumAndroidTwoPortsTest.test_options_with_two_ports):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux_unittest.py:
-        (ChromiumLinuxPortTest.assert_architecture):
-        (ChromiumLinuxPortTest.test_determine_architecture_fails):
-        (ChromiumLinuxPortTest.test_path_to_image_diff):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        (ChromiumMacPortTest.assert_name):
-        (ChromiumMacPortTest.test_baseline_path):
-        (ChromiumMacPortTest.test_path_to_image_diff):
-        * Scripts/webkitpy/layout_tests/port/chromium_port_testcase.py:
-        (ChromiumPortTestCase.test_default_max_locked_shards):
-        (ChromiumPortTestCase.test_default_timeout_ms):
-        (ChromiumPortTestCase.test_default_pixel_tests):
-        (ChromiumPortTestCase.test_all_test_configurations):
-        (ChromiumPortTestCase.test_default_configuration):
-        (ChromiumPortTestCase.test_diff_image):
-        (ChromiumPortTestCase.test_diff_image_crashed):
-        (ChromiumPortTestCase.test_expectations_files):
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        (ChromiumWinTest.test_setup_environ_for_server_cygpath):
-        (ChromiumWinTest.assert_name):
-        (ChromiumWinTest.test_baseline_path):
-        (ChromiumWinTest.test_path_to_image_diff):
-        * Scripts/webkitpy/layout_tests/port/driver_unittest.py:
-        (DriverTest.test_read_block):
-        (DriverTest.test_read_binary_block):
-        (DriverTest.test_read_base64_block):
-        (DriverTest.test_no_timeout):
-        (DriverTest.test_check_for_driver_crash.assert_crash):
-        (DriverTest.test_creating_a_port_does_not_write_to_the_filesystem):
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-        (FactoryTest.test_get_from_builder_name):
-        * Scripts/webkitpy/layout_tests/port/gtk_unittest.py:
-        (GtkPortTest.test_default_timeout_ms):
-        * Scripts/webkitpy/layout_tests/port/http_lock_unittest.py:
-        (HttpLockTest.test_current_lock_pid):
-        * Scripts/webkitpy/layout_tests/port/image_diff_unittest.py:
-        (TestImageDiffer.test_diff_image_failed):
-        (TestImageDiffer.test_diff_image_passed):
-        * Scripts/webkitpy/layout_tests/port/leakdetector_unittest.py:
-        (LeakDetectorTest.test_leaks_args):
-        (test_parse_leaks_output):
-        (test_leaks_files_in_directory):
-        (test_count_total_leaks):
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        (MacTest.test_default_timeout_ms):
-        (assert_name):
-        (test_setup_environ_for_server):
-        (_assert_search_path):
-        (test_32bit):
-        (test_64bit):
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        (MockTestShellTest.test_pixeltest__fails):
-        (MockTestShellTest.test_test_shell_parse_options):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (PortTestCase.test_default_max_locked_shards):
-        (PortTestCase.test_default_timeout_ms):
-        (PortTestCase.test_default_pixel_tests):
-        (PortTestCase.test_diff_image):
-        (PortTestCase.test_diff_image_crashed):
-        (PortTestCase.test_get_crash_log):
-        (PortTestCase.assert_build_path):
-        (PortTestCase.test_expectations_ordering):
-        (_assert_config_file_for_platform):
-        (test_path_to_apache_config_file):
-        (test_additional_platform_directory):
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        (QtPortTest._assert_search_path):
-        (QtPortTest._assert_expectations_files):
-        (QtPortTest.test_setup_environ_for_server):
-        * Scripts/webkitpy/layout_tests/port/server_process_unittest.py:
-        (TestServerProcess.test_basic):
-        (TestServerProcess.test_broken_pipe):
-        * Scripts/webkitpy/layout_tests/port/win_unittest.py:
-        (WinPortTest._assert_search_path):
-        (WinPortTest._assert_version):
-        (WinPortTest.test_runtime_feature_list):
-        (WinPortTest.test_expectations_files):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (LintTest.test_all_configurations):
-        (MainTest.test_all):
-        (MainTest.test_repeat_each):
-        (MainTest.test_skipped_flag):
-        (MainTest.test_iterations):
-        (MainTest.test_run_chunk):
-        (MainTest.test_run_part):
-        (MainTest.test_run_singly):
-        (MainTest.test_run_singly_actually_runs_tests):
-        (MainTest.test_single_file):
-        (MainTest.test_single_file_with_prefix):
-        (MainTest.test_single_skipped_file):
-        (MainTest.test_stderr_is_saved):
-        (MainTest.test_test_list):
-        (MainTest.test_test_list_with_prefix):
-        (MainTest.test_missing_and_unexpected_results):
-        (MainTest.test_pixel_test_directories):
-        (MainTest.test_missing_and_unexpected_results_with_custom_exit_code):
-        (MainTest.test_crash_log):
-        (MainTest.test_web_process_crash_log):
-        (MainTest.test_exit_after_n_failures_upload):
-        (MainTest.test_exit_after_n_failures):
-        (MainTest.test_exit_after_n_crashes):
-        (MainTest.test_retrying_and_flaky_tests):
-        (MainTest.test_run_order__inline):
-        (MainTest.test_reftest_run):
-        (MainTest.test_reftest_run_reftests_if_pixel_tests_are_disabled):
-        (MainTest.test_reftest_skip_reftests_if_no_ref_tests):
-        (MainTest.test_reftest_expected_html_should_be_ignored):
-        (MainTest.test_reftest_driver_should_run_expected_html):
-        (MainTest.test_reftest_driver_should_run_expected_mismatch_html):
-        (MainTest.test_output_diffs):
-        (MainTest.test_unsupported_platform):
-        (EndToEndTest.test_end_to_end):
-        (RebaselineTest.test_reset_results):
-        (RebaselineTest.test_missing_results):
-        (RebaselineTest.test_new_baseline):
-        * Scripts/webkitpy/layout_tests/servers/http_server_integrationtest.py:
-        (BaseTest.integration_test_server__normal):
-        (BaseTest.integration_test_server__fails):
-        (BaseTest.integration_test_port_and_root):
-        * Scripts/webkitpy/layout_tests/servers/http_server_unittest.py:
-        (TestHttpServer.test_start_cmd):
-        * Scripts/webkitpy/layout_tests/views/metered_stream_unittest.py:
-        (RegularTest.test_logging_not_included):
-        (RegularTest._basic):
-        (RegularTest.test_basic):
-        (RegularTest.test_log_after_update):
-        (RegularTest.test_log_args):
-        (TtyTest.test_basic):
-        (TtyTest.test_log_after_update):
-        (VerboseTest.test_basic):
-        (VerboseTest.test_log_after_update):
-        (VerboseTest.test_log_args):
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-        (Testprinter.assertWritten):
-        (test_test_status_line):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (MainTest.assertWritten):
-        * Scripts/webkitpy/style/checker_unittest.py:
-        (GlobalVariablesTest.test_webkit_base_filter_rules):
-        (CheckerDispatcherSkipTest._assert_should_skip_without_warning):
-        (CheckerDispatcherCarriageReturnTest.test_should_check_and_strip_carriage_returns):
-        (CheckerDispatcherDispatchTest.assert_checker):
-        (CheckerDispatcherDispatchTest.test_changelog_paths):
-        (CheckerDispatcherDispatchTest.test_cpp_paths):
-        (CheckerDispatcherDispatchTest.test_json_paths):
-        (CheckerDispatcherDispatchTest.test_python_paths):
-        (CheckerDispatcherDispatchTest.test_text_paths):
-        (CheckerDispatcherDispatchTest.test_xml_paths):
-        (StyleProcessorConfigurationTest.test_init):
-        (StyleProcessorConfigurationTest.test_write_style_error_emacs):
-        (StyleProcessorConfigurationTest.test_write_style_error_vs7):
-        (StyleProcessor_EndToEndTest.test_init):
-        (StyleProcessor_EndToEndTest.test_process):
-        (StyleProcessor_CodeCoverageTest.test_process__checker_dispatched):
-        * Scripts/webkitpy/style/checkers/changelog_unittest.py:
-        (ChangeLogCheckerTest.assert_error.handle_style_error):
-        (ChangeLogCheckerTest.test_init):
-        * Scripts/webkitpy/style/checkers/common_unittest.py:
-        (CarriageReturnCheckerTest.assert_carriage_return):
-        (TabCheckerTest.assert_tab):
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (CppFunctionsTest.test_convert_to_lower_with_underscores):
-        (CppFunctionsTest.test_create_acronym):
-        (CppFunctionsTest.test_parameter):
-        (CppFunctionsTest.test_single_line_view):
-        (CppFunctionsTest.test_create_skeleton_parameters):
-        (CppFunctionsTest.test_find_parameter_name_index):
-        (CppFunctionsTest.test_parameter_list):
-        (CppFunctionsTest.test_check_parameter_against_text):
-        (CppStyleTestBase.perform_lint):
-        (CppStyleTestBase.assert_lint):
-        (CppStyleTestBase.assert_lint_one_of_many_errors_re):
-        (CppStyleTestBase.assert_multi_line_lint):
-        (CppStyleTestBase.assert_language_rules_check):
-        (CppStyleTestBase.assert_include_what_you_use):
-        (CppStyleTestBase.assert_blank_lines_check):
-        (CppStyleTestBase.assert_positions_equal):
-        (FunctionDetectionTest.perform_function_detection):
-        (CppStyleTest.test_get_line_width):
-        (CppStyleTest.test_find_next_multi_line_comment_start):
-        (CppStyleTest.test_find_next_multi_line_comment_end):
-        (CppStyleTest.test_remove_multi_line_comments_from_range):
-        (CppStyleTest.test_position):
-        (CppStyleTest.test_rfind_in_lines):
-        (CppStyleTest.test_close_expression):
-        (CppStyleTest.test_include_what_you_use_no_implementation_files):
-        (CppStyleTest.test_include_what_you_use):
-        (CppStyleTest.test_files_belong_to_same_module):
-        (CppStyleTest.test_cleanse_line):
-        (CppStyleTest.test_multiline_strings):
-        (CppStyleTest.test_newline_at_eof.do_test):
-        (CppStyleTest.test_invalid_utf8.do_test):
-        (CppStyleTest.test_is_blank_line):
-        (CppStyleTest.test_allow_blank_line_before_closing_namespace):
-        (CppStyleTest.test_allow_blank_line_before_if_else_chain):
-        (CppStyleTest.test_else_on_same_line_as_closing_braces):
-        (CppStyleTest.test_build_header_guard):
-        (CppStyleTest.test_legal_copyright):
-        (CleansedLinesTest.test_init):
-        (CleansedLinesTest.test_init_empty):
-        (CleansedLinesTest.test_collapse_strings):
-        (CheckForFunctionLengthsTest.assert_function_lengths_check):
-        (PassPtrTest.assert_pass_ptr_check):
-        (LeakyPatternTest.assert_leaky_pattern_check):
-        (WebKitStyleTest.test_parameter_names):
-        (WebKitStyleTest.test_webkit_export_check):
-        (CppCheckerTest.test_init):
-        * Scripts/webkitpy/style/checkers/jsonchecker_unittest.py:
-        (JSONCheckerTest.assert_error.handle_style_error):
-        (JSONCheckerTest.test_init):
-        * Scripts/webkitpy/style/checkers/png_unittest.py:
-        (PNGCheckerTest.test_init):
-        (PNGCheckerTest.test_check):
-        * Scripts/webkitpy/style/checkers/python_unittest.py:
-        (PythonCheckerTest.test_init):
-        (PythonCheckerTest.test_check):
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-        (TestExpectationsTestCase._expect_port_for_expectations_path):
-        (TestExpectationsTestCase.assert_lines_lint):
-        * Scripts/webkitpy/style/checkers/text_unittest.py:
-        (TextStyleTestCase.assertNoError):
-        (TextStyleTestCase.assertError.error_for_test):
-        (TextStyleTestCase.assertError):
-        (TextCheckerTest.test_init):
-        * Scripts/webkitpy/style/checkers/watchlist_unittest.py:
-        (WatchListTest.test_basic_error_message.handle_style_error):
-        (WatchListTest):
-        * Scripts/webkitpy/style/checkers/xcodeproj_unittest.py:
-        (XcodeProjectFileCheckerTest.assert_error):
-        * Scripts/webkitpy/style/checkers/xml_unittest.py:
-        (XMLCheckerTest.assert_error.handle_style_error):
-        (XMLCheckerTest.test_init):
-        * Scripts/webkitpy/style/error_handlers_unittest.py:
-        (DefaultStyleErrorHandlerTest._check_initialized):
-        (DefaultStyleErrorHandlerTest.test_non_reportable_error):
-        (DefaultStyleErrorHandlerTest.test_max_reports_per_category):
-        (DefaultStyleErrorHandlerTest.test_line_numbers):
-        * Scripts/webkitpy/style/filereader_unittest.py:
-        (TextFileReaderTest._assert_file_reader):
-        (TextFileReaderTest.test_process_file__does_not_exist):
-        (TextFileReaderTest.test_count_delete_only_file):
-        * Scripts/webkitpy/style/filter_unittest.py:
-        (CategoryFilterTest.test_init):
-        (CategoryFilterTest.test_init_default_arguments):
-        (CategoryFilterTest.test_str):
-        (FilterConfigurationTest.test_init):
-        (FilterConfigurationTest.test_default_arguments):
-        * Scripts/webkitpy/style/main_unittest.py:
-        (ChangeDirectoryTest._assert_result):
-        * Scripts/webkitpy/style/optparser_unittest.py:
-        (ArgumentPrinterTest.test_to_flag_string):
-        (ArgumentParserTest.test_parse_default_arguments):
-        (ArgumentParserTest.test_parse_explicit_arguments):
-        (ArgumentParserTest.test_parse_files):
-        (CommandOptionValuesTest.test_init):
-        * Scripts/webkitpy/style/patchreader_unittest.py:
-        (PatchReaderTest._assert_checked):
-        * Scripts/webkitpy/test/finder_unittest.py:
-        (FinderTest.test_additional_system_paths):
-        (FinderTest.test_to_module):
-        (FinderTest.check_names):
-        * Scripts/webkitpy/test/main_unittest.py:
-        (TesterTest.test_individual_names_are_not_run_twice):
-        (TesterTest.test_integration_tests_are_not_found_by_default):
-        (TesterTest.test_integration_tests_are_found):
-        (TesterTest.integration_test_coverage_works):
-        * Scripts/webkitpy/test/runner_unittest.py:
-        (RunnerTest.test_run):
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-        (_expect_validate):
-        * Scripts/webkitpy/tool/bot/expectedfailures_unittest.py:
-        (ExpectedFailuresTest._assert_can_trust):
-        (ExpectedFailuresTest.test_unexpected_failures_observed):
-        (ExpectedFailuresTest.test_unexpected_failures_observed_when_tree_is_hosed):
-        * Scripts/webkitpy/tool/bot/feeders_unittest.py:
-        (test_patches_with_acceptable_review_flag):
-        * Scripts/webkitpy/tool/bot/irc_command_unittest.py:
-        (IRCCommandTest.test_whois):
-        (IRCCommandTest.test_create_bug):
-        (IRCCommandTest.test_roll_chromium_deps):
-        (IRCCommandTest.test_rollout):
-        * Scripts/webkitpy/tool/bot/layouttestresultsreader_unittest.py:
-        (LayoutTestResultsReaderTest.test_missing_layout_test_results):
-        (test_missing_unit_test_results_path):
-        (test_layout_test_results):
-        * Scripts/webkitpy/tool/bot/queueengine_unittest.py:
-        (LoggingDelegate.process_work_item):
-        (LoggingDelegate.handle_unexpected_error):
-        (QueueEngineTest.test_trivial):
-        (QueueEngineTest.test_unexpected_error):
-        (QueueEngineTest.test_handled_error):
-        (QueueEngineTest._test_terminating_queue):
-        * Scripts/webkitpy/tool/commands/openbugs_unittest.py:
-        (OpenBugsTest.test_find_bugs_in_string):
-        * Scripts/webkitpy/tool/commands/queries_unittest.py:
-        (FailureReasonTest.test_blame_line_for_revision):
-        (PrintExpectationsTest.run_test):
-        (PrintBaselinesTest.test_basic):
-        (PrintBaselinesTest.test_multiple):
-        (PrintBaselinesTest.test_csv):
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        (AbstractQueueTest.test_log_directory):
-        (AbstractPatchQueueTest.test_next_patch):
-        (test_auto_retry):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (test_rebaseline_updates_expectations_file):
-        (test_rebaseline_does_not_include_overrides):
-        (test_rebaseline_test):
-        (test_rebaseline_test_with_results_directory):
-        (test_rebaseline_test_and_print_scm_changes):
-        (test_rebaseline_and_copy_test):
-        (test_rebaseline_and_copy_test_no_existing_result):
-        (test_rebaseline_and_copy_test_with_lion_result):
-        (test_rebaseline_and_copy_no_overwrite_test):
-        (test_rebaseline_test_internal_with_move_overwritten_baselines_to):
-        (TestRebaselineJson.test_rebaseline_all):
-        (TestRebaselineJson.test_rebaseline_debug):
-        (TestRebaselineJson.test_move_overwritten):
-        (TestRebaselineJson.test_no_optimize):
-        (TestRebaselineJson.test_results_directory):
-        (TestRebaseline.test_rebaseline):
-        (TestRebaselineExpectations.test_rebaseline_expectations_noop):
-        (TestRebaselineExpectations.disabled_test_overrides_are_included_correctly):
-        (TestAnalyzeBaselines.test_default):
-        (TestAnalyzeBaselines.test_missing_baselines):
-        * Scripts/webkitpy/tool/commands/roll_unittest.py:
-        (PostRollCommandsTest.test_prepare_state):
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-        (BuildCoverageExtrapolatorTest.test_extrapolate):
-        * Scripts/webkitpy/tool/steps/addsvnmimetypeforpng_unittest.py:
-        (AddSvnMimetypeForPngTest.test_run):
-        * Scripts/webkitpy/tool/steps/preparechangelog_unittest.py:
-        (PrepareChangeLogTest.test_ensure_bug_url):
-        * Scripts/webkitpy/tool/steps/preparechangelogforrevert_unittest.py:
-        (_assert_message_for_revert_output):
-        * TestResultServer/model/jsonresults_unittest.py:
-        (JsonResultsTest._test_merge):
-        (JsonResultsTest._test_get_test_list):
-
-2012-11-14  János Badics  <jbadics@inf.u-szeged.hu>
-
-        [Qt][ARM] Fix 'nullptr' is a keyword in C++11 [-Wc++0x-compat] warning
-        https://bugs.webkit.org/show_bug.cgi?id=102083
-
-        Reviewed by Csaba Osztrogonác.
-
-        Modified compiler name regex in condition that tests if -std=c++0x, c++11,
-        gnu++0x or gnu++11 are enabled in order to match linux-arm-gnueabi-g++ too,
-        thus enabling -Wno-c++0x-compat also on ARM compiler.
-
-        * qmake/mkspecs/features/unix/default_post.prf:
-
-2012-11-14  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        REGRESSION(r133757): Causing webkitpy unit tests to fail
-        https://bugs.webkit.org/show_bug.cgi?id=101444
-
-        Reviewed by Csaba Osztrogonác.
-
-        Updated the bot name on the unit tests.
-
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (TestRebaselineTest.test_baseline_directory):
-
-2012-11-14  Byungwoo Lee  <bw80.lee@samsung.com>
-
-        [EFL][WK2] Rename variables, structures and functions of the MiniBrowser.
-        https://bugs.webkit.org/show_bug.cgi?id=101517
-
-        Reviewed by Gyuyoung Kim.
-
-        Rename variables, structures and functions of the MiniBrowser
-        for the naming consistency.
-
-        1) Browser_Window* {app_data|browser_window|window} -> window
-
-        2) Browser_Window::webview -> Browser_Window::ewk_view
-             The webkit API functions are ewk_view_xxx not webview_xxx.
-             So using ewk_view will be better than webview.
-
-        3) Browser_Window::window -> Browser_Window::elm_window
-             The name is changed to be distinguished with 'Browser_Window *window'
-
-        4) browser_{window|view}_find() -> window_find_with_{elm_window|ewk_view}()
-             This is changed because the name of the function can be confused.
-             Currently, browser_window_find() returns Browser_Window*. And
-             browser_view_find() also returns Browser_Window*.
-
-        5) FileSelectorData -> File_Selector_Data / AuthData -> Auth_Data
-             The type definition is moved to the top of the source file
-             and the name is changed to follow EFL style.
-
-        * MiniBrowser/efl/main.c:
-        (miniBrowserViewSmartClass):
-        (_Browser_Window):
-        (_File_Selector_Data):
-        (_Auth_Data):
-        (window_find_with_ewk_view):
-        (window_free):
-        (on_key_down):
-        (view_focus_set):
-        (on_mouse_down):
-        (title_set):
-        (on_title_changed):
-        (on_url_changed):
-        (on_back_forward_list_changed):
-        (on_new_window):
-        (on_close_window):
-        (on_progress):
-        (on_error):
-        (on_download_request):
-        (close_file_picker):
-        (on_filepicker_parent_deletion):
-        (on_filepicker_deletion):
-        (on_fileselector_done):
-        (on_file_chooser_request):
-        (on_download_finished):
-        (on_download_failed):
-        (on_favicon_received):
-        (on_view_icon_changed):
-        (on_url_bar_activated):
-        (on_url_bar_clicked):
-        (on_back_button_clicked):
-        (on_forward_button_clicked):
-        (on_refresh_button_clicked):
-        (on_javascript_alert):
-        (on_javascript_confirm):
-        (on_javascript_prompt):
-        (on_window_geometry_get):
-        (on_window_geometry_set):
-        (on_fullscreen_deny):
-        (on_fullscreen_enter):
-        (on_fullscreen_exit):
-        (auth_popup_close):
-        (on_auth_cancel):
-        (on_auth_ok):
-        (on_authentication_request):
-        (on_tooltip_text_set):
-        (on_tooltip_text_unset):
-        (on_home_button_clicked):
-        (on_window_deletion):
-        (window_create):
-
-2012-11-14  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        webkitpy: Update the EFL list of bots
-        https://bugs.webkit.org/show_bug.cgi?id=102121
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Update the EFL bots so we can use garden-o-matic.
-
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-
-2012-11-13  Yael Aharon  <yael.aharon@intel.com>
-
-        [EFL][WK2] New window size should consult the window attributes
-        https://bugs.webkit.org/show_bug.cgi?id=102122
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Take into account the size that was specified in window.open
-        when creating a new window. This avoids ugly flashing on the screen.
-
-        * MiniBrowser/efl/main.c:
-        (on_key_down):
-        (on_new_window):
-        (window_create):
-        (elm_main):
-
-2012-11-13  Dana Jansens  <danakj@chromium.org>
-
-        [chromium] Plumb WebCompositorSupport settings through WebLayerTreeSettings as well, in preparation for removing the settings from WebCompositorSupport
-        https://bugs.webkit.org/show_bug.cgi?id=102146
-
-        Reviewed by James Robinson.
-
-        Pass settings that go through WebCompositorSupport also through
-        WebLayerTreeSettings. When the compositor starts using those instead,
-        we can remove the callers to the WebCompositorSupport setters.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::resetWebSettings):
-        (TestShell::setPerTilePaintingEnabled):
-        (TestShell::setAcceleratedAnimationEnabled):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-        (WebPreferences):
-
-2012-11-13  Kentaro Hara  <haraken@chromium.org>
-
-        Unreviewed, rolling out r134503.
-        http://trac.webkit.org/changeset/134503
-
-        Roll out a patch that was landed just to investigate svn
-        trouble
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-11-13  Kentaro Hara  <haraken@chromium.org>
-
-        Unreviewed. Investigating svn trouble. Test commit.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-11-13  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Unreviewed, rolling out r134446.
-        http://trac.webkit.org/changeset/134446
-        https://bugs.webkit.org/show_bug.cgi?id=101968
-
-        Need to try a different strategy for landing a two-sided patch
-        (3/3).
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::resetWebSettings):
-        (TestShell::setPerTilePaintingEnabled):
-        (TestShell::setAcceleratedAnimationEnabled):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-        (WebPreferences):
-
-2012-11-13  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Unreviewed, rolling out r134449.
-        http://trac.webkit.org/changeset/134449
-        https://bugs.webkit.org/show_bug.cgi?id=102076
-
-        Re-rolling in the patch, it was innocent.
-
-        * TestWebKitAPI/PlatformEfl.cmake:
-
-2012-11-13  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Unreviewed, rolling out r134424.
-        http://trac.webkit.org/changeset/134424
-        https://bugs.webkit.org/show_bug.cgi?id=102076
-
-        Made fast/dom/Window/open-window-min-size.html crash.
-
-        * TestWebKitAPI/PlatformEfl.cmake:
-
-2012-11-12  Dana Jansens  <danakj@chromium.org>
-
-        [chromium] Remove the WebCompositorSupport methods for changing settings, plumb everything through WebLayerTreeSettings
-        https://bugs.webkit.org/show_bug.cgi?id=101968
-
-        Reviewed by James Robinson.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::resetWebSettings):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::setPerTilePaintingEnabled):
-        (TestShell::setAcceleratedAnimationEnabled):
-        (TestShell):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-        (WebPreferences):
-
-2012-11-13  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix webkitpy issues arising from a partially-installed pylint.
-        Unreviewed, build fix.
-
-        This patch ensures that we will re-install the pylint and logilab
-        packages if any of them are missing, not just the pylint package.
-
-        * Scripts/webkitpy/thirdparty/__init__.py:
-        (AutoinstallImportHook._install_pylint):
-
-2012-11-13  No'am Rosenthal  <noam.rosenthal@nokia.com>
-
-        Unreviewed, adding my new email address to committers.py and watchlist.
-
-        * Scripts/webkitpy/common/config/committers.py:
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-11-13  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [CMake] Incorrect dependency calculation when generating forwarding headers
-        https://bugs.webkit.org/show_bug.cgi?id=102076
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Explicitly call generate-forwarding-headers.pl on ${WEBKIT2_DIR} as
-        well, since some dependencies pulled in via the WebKit2/WebKit2_C.h
-        include in config.h are only generated from there.
-
-        This is a bit redundant since this is also done in WebKit2's
-        PlatformEfl.cmake, however the WTF and WebCore API tests do not depend
-        on WebKit2 so the script may not have been called when these tests are
-        being built.
-
-        * TestWebKitAPI/PlatformEfl.cmake:
-
-2012-11-13  Zeno Albisser  <zeno@webkit.org>
-
-        Unreviewed: Adding watchlist definition for CoordinatedGraphics.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-11-13  Hugo Parente Lima  <hugo.lima@openbossa.org>
-
-        [cmake] Do not use GLOB to add WTR IDL files to buildsystem.
-        https://bugs.webkit.org/show_bug.cgi?id=101785
-
-        Reviewed by Caio Marcelo de Oliveira Filho.
-
-        Using *.idl makes impossible to add IDL files depending on compiler flags,
-        like a possible GamepadController.idl file found on Chromium.
-
-        * WebKitTestRunner/CMakeLists.txt:
-
-2012-11-13  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] TestRunner should depend on webkit_wtf_support instead of compiling the files itself
-        https://bugs.webkit.org/show_bug.cgi?id=102075
-
-        Reviewed by Pavel Feldman.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-11-13  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [EFL][DRT] Remove extra layoutFrame() call when preparing to send an event via EventSender.
-        https://bugs.webkit.org/show_bug.cgi?id=102074
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * DumpRenderTree/efl/EventSender.cpp:
-        (feedMouseEvent): Do not call DumpRenderTreeSupportEfl::layoutFrame()
-        when sending an event, as it causes additional repaints that create
-        wrong pixel results for tests such as
-        fast/repaint/overflow-auto-in-overflow-auto-scrolled.html.
-
-2012-11-13  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Enable Mutation observer
-        https://bugs.webkit.org/show_bug.cgi?id=102066
-
-        Reviewed by Pavel Feldman.
-
-        * qmake/mkspecs/features/features.pri:
-
-2012-11-13  Xiaobo Wang  <xbwang@torchmobile.com.cn>
-
-        [BlackBerry] DRT - platform/blackberry/editing/text-iterator/findString-markers.html failed
-        https://bugs.webkit.org/show_bug.cgi?id=102056
-
-        Reviewed by Rob Buis.
-
-        RIM PR 235836
-
-        TestRunner::findString() was changed to call Page::findString() instead
-        of WebPage::findNextString(). Page::findString() doesn't update
-        TextMatch markers.
-        Work-around by calling both Page::findString() and WebPage::findNextString().
-
-        * DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp:
-        (TestRunner::findString):
-
-2012-11-12  Jochen Eisinger  <jochen@chromium.org>
-
-        Add the TestRunner public API to the ChromiumPublicApi watchlist, and introduce an entry for ChromiumTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=101957
-
-        Reviewed by Adam Barth.
-
-        Chromium now also depends on the TestRunner public API, and as such, similar rules as for the Chromium WebKit API should apply.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-11-13  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move tracking of damaged regions from WebViewHost to WebTestProxy
-        https://bugs.webkit.org/show_bug.cgi?id=101927
-
-        Reviewed by Adam Barth.
-
-        This will allow for sharing the code with content_shell
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::display):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h:
-        (WebKit):
-        (WebTestProxyBase):
-        (WebTestRunner::WebTestProxy::didInvalidateRect):
-        (WebTestRunner::WebTestProxy::didScrollRect):
-        (WebTestRunner::WebTestProxy::scheduleComposite):
-        (WebTestRunner::WebTestProxy::scheduleAnimation):
-        (WebTestRunner::WebTestProxy::setWindowRect):
-        (WebTestRunner::WebTestProxy::show):
-        (WebTestRunner::WebTestProxy::didAutoResize):
-        (WebTestRunner::WebTestProxy::postAccessibilityNotification):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
-        (WebTestRunner::WebTestProxyBase::setPaintRect):
-        (WebTestRunner):
-        (WebTestRunner::WebTestProxyBase::paintRect):
-        (WebTestRunner::WebTestProxyBase::didInvalidateRect):
-        (WebTestRunner::WebTestProxyBase::didScrollRect):
-        (WebTestRunner::WebTestProxyBase::scheduleComposite):
-        (WebTestRunner::WebTestProxyBase::scheduleAnimation):
-        (WebTestRunner::WebTestProxyBase::show):
-        (WebTestRunner::WebTestProxyBase::setWindowRect):
-        (WebTestRunner::WebTestProxyBase::didAutoResize):
-        (WebTestRunner::WebTestProxyBase::postAccessibilityNotification):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::createNewWindow):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::scheduleAnimation):
-        (WebViewHost::show):
-        (WebViewHost::setWindowRect):
-        (WebViewHost::WebViewHost):
-        (WebViewHost::proxy):
-        (WebViewHost::setProxy):
-        (WebViewHost::reset):
-        (WebViewHost::paintInvalidatedRegion):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-11-12  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: clean up lint errors, part 1
-        https://bugs.webkit.org/show_bug.cgi?id=102024
-
-        Reviewed by Adam Barth.
-
-        This patch cleans up a lot of miscellaneous minor lint errors that
-        apparently aren't caught by unit tests, and suppresses a few
-        false positives.
-
-        Also, this patch removes the garden-o-matic "rollout" entry point
-        since it's no longer being used by the frontend (rather than
-        fix it to not generate lint errors).
-
-        * Scripts/webkitpy/common/system/executive_mock.py:
-        (MockExecutive2.run_command):
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        (MockFileSystem.copyfile):
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._http_tests):
-        * Scripts/webkitpy/layout_tests/port/apple.py:
-        (ApplePort):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.reference_files):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort):
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidDriver._teardown_performance):
-        * Scripts/webkitpy/layout_tests/port/chromium_port_testcase.py:
-        (ChromiumPortTestCase.TestAndroidPort.__init__):
-        (ChromiumPortTestCase.test_default_configuration):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (PortTestCase):
-        (PortTestCase.test_driver_cmd_line):
-        (PortTestCase.test_expectations_ordering):
-        * Scripts/webkitpy/layout_tests/servers/http_server_base.py:
-        (HttpServerBase._check_that_all_ports_are_available):
-        * Scripts/webkitpy/style/checkers/python.py:
-        (Pylinter):
-        * Scripts/webkitpy/tool/commands/gardenomatic.py:
-        (GardenOMatic.__init__):
-        * Scripts/webkitpy/tool/commands/queues.py:
-        (CommitQueue):
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        (GardeningHTTPRequestHandler):
-        (GardeningHTTPRequestHandler.localresult):
-
-2012-11-12  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: clean up lint errors, part 2
-        https://bugs.webkit.org/show_bug.cgi?id=102029
-
-        Reviewed by Adam Barth.
-
-        This cleans up the remaining lint errors in webkitpy with four exceptions:
-        1) we don't lint thirdparty/ autoinstalled code, obviously
-        2) there's an intentional error in the unit tests for pylint itself
-        3) the implementation of webkit-patch optimize-expectations has
-        an error but I think we can and should just remove that command as well.
-        4) I have not yet linted the test code
-
-        * Scripts/webkitpy/common/newstringio.py:
-        * Scripts/webkitpy/common/checkout/scm/scm.py:
-        (SCM.find_checkout_root):
-        (SCM.will.remote_merge_base):
-        * Scripts/webkitpy/common/checkout/scm/scm_mock.py:
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-        (SVNRepository.has_authorization_for_realm):
-        (SVN.__init__):
-        * Scripts/webkitpy/common/config/contributionareas.py:
-        (ContributionAreas.names):
-        * Scripts/webkitpy/common/config/ports.py:
-        (DeprecatedPort):
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        (Builder.force_build):
-        * Scripts/webkitpy/common/net/buildbot/buildbot_mock.py:
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (check_posix_threading):
-        (check_spacing):
-        * Scripts/webkitpy/style/optparser.py:
-        (ArgumentParser._create_option_parser):
-        * Scripts/webkitpy/tool/commands/abstractlocalservercommand.py:
-        (AbstractLocalServerCommand.execute):
-        * Scripts/webkitpy/tool/commands/download.py:
-        (AbstractPatchProcessingCommand):
-        (AbstractPatchProcessingCommand._process_patch):
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (AbstractEarlyWarningSystem):
-
-2012-11-12  Dirk Pranke  <dpranke@chromium.org>
-
-        remove 'webkit-patch optimize-expectations'
-        https://bugs.webkit.org/show_bug.cgi?id=102032
-
-        Reviewed by Adam Barth.
-
-        Removing this command because it is totally broken (probably
-        broke when I added support for multiple files in a cascade)
-        and doesn't seem to do anything much useful. It certainly
-        didn't actually optimize things.
-
-        * Scripts/webkitpy/tool/commands/expectations.py: Removed.
-
-2012-11-12  Xiaobo Wang  <xbwang@torchmobile.com.cn>
-
-        [BlackBerry] DRT - Update Pixel Dump Support for OpenGL renderer
-        https://bugs.webkit.org/show_bug.cgi?id=101894
-
-        Reviewed by Rob Buis.
-
-        RIM PR 241686
-        Also remove an un-needed pixel lock, and fix a klocwork error in SKIA
-        code path.
-
-        * DumpRenderTree/blackberry/PixelDumpSupportBlackBerry.cpp:
-        (readPixelsUserInterfaceThread):
-        (createBitmapContextFromWebView):
-
-2012-11-12  Daniel Bates  <dbates@webkit.org>
-
-        Perl errors from Tools/Scripts/copy-webkitlibraries-to-product-directory
-        https://bugs.webkit.org/show_bug.cgi?id=101980
-
-        Reviewed by Mark Rowe.
-
-        Remove library libWebKitSystemInterfaceLeopard.a and libWebKitSystemInterfaceSnowLeopard.a
-        from the list of libraries to copy to the specified built products directory
-        as these libraries were removed from the repository in <http://trac.webkit.org/changeset/133670>.
-
-        * Scripts/copy-webkitlibraries-to-product-directory:
-
-2012-11-12  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: integrate pylint into check-webkit-style, part I
-        https://bugs.webkit.org/show_bug.cgi?id=101285
-
-        Reviewed by Ojan Vafai.
-
-        This patch re-works lint-webkitpy so that the logic is pushed
-        into check-webkit-style (mostly); we don't yet control which
-        messages are displayed using the rules in webkitpy/style/checker.py
-        (we're still using the pylintrc to suppress messages instead),
-        but otherwise things work. For now we will only report pylint
-        "errors", not warnings.
-
-        * Scripts/lint-webkitpy:
-        * Scripts/webkitpy/style/checker.py:
-        * Scripts/webkitpy/style/checkers/python.py:
-        (PythonChecker):
-        (PythonChecker.check):
-        (PythonChecker._check_pep8):
-        (PythonChecker._check_pylint):
-        (Pylinter):
-        (Pylinter.__init__):
-        (Pylinter.run):
-        (_FilteredStringIO):
-        (_FilteredStringIO.__init__):
-        (_FilteredStringIO.write):
-        (_FilteredStringIO._filter):
-        * Scripts/webkitpy/style/checkers/python_unittest.py:
-        (PythonCheckerTest.test_check):
-        * Scripts/webkitpy/style/checkers/python_unittest_input.py:
-
-2012-11-12  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: remove a bunch of broken chromium-specific flags
-        https://bugs.webkit.org/show_bug.cgi?id=101979
-
-        Reviewed by Tony Chang.
-
-        There were a bunch of chromium-specific flags that used to be
-        supported by NRWT (and handled and passed on to DRT) but have
-        probably been broken for a long time and are currently ignored.
-
-        This patch removes all of those flags; the rule of thumb going forward
-        is that we should only add flags that affect how the python code functions.
-        If a flag is just passed verbatim to DRT, the user can use --additional-drt-flag
-        for that.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.setUp):
-
-2012-11-12  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL][WK2] Add --device-pixel-ratio command line option to EFL MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=101930
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Added --device-pixel-ratio command line option to EFL MiniBrowser which sets
-        the ratio between the CSS units and device pixels when the content is unscaled.
-        Option is applied for all the views created by mini browser.
-
-        * MiniBrowser/efl/main.c:
-        (window_create):
-        (elm_main):
-
-2012-11-12  Dirk Pranke  <dpranke@chromium.org>
-
-        remove the chromium-mac-mountainlion TestExpectations file
-        https://bugs.webkit.org/show_bug.cgi?id=101789
-
-        Reviewed by Ojan Vafai.
-
-        Nearly all of the tests have been updated for 10.8 and the remaining
-        failures have been merged into the main TestExpectations file. We
-        don't need this hook any more.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        (ChromiumMacPort.operating_system):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        (ChromiumMacPortTest.test_path_to_image_diff):
-
-2012-11-12  Peter Beverloo  <peter@chromium.org>
-
-        [Chromium-Android] Restart the device's shell in root before pushing data
-        https://bugs.webkit.org/show_bug.cgi?id=101944
-
-        Reviewed by Adam Barth.
-
-        Setting up md5sum and pushing the executable, fonts and test resources was
-        unintentionally being done prior to executing the "adb root" command,
-        which restarts the device's shell to be root. Since test data is still
-        being pushed to /data/local/tmp, writing to which requires root access,
-        devices not running as root would throw a ScriptError.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidDriver._setup_test):
-
-2012-11-12  Allan Sandfeld Jensen  <allan.jensen@digia.com>
-
-        [Qt] Support ResourceRequest's setTimeoutInterval
-        https://bugs.webkit.org/show_bug.cgi?id=101731
-
-        Reviewed by Simon Hausmann.
-
-        Enable XHR_TIMEOUT now that we support the necessary feature.
-
-        * qmake/mkspecs/features/features.pri:
-
-2012-11-12  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Unreviewed. Removing myself from the list of address to CC on EWS
-        build failure; the CC turned out to just be too noisy so I'm
-        tracking those in a different way.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (GtkEWS):
-
-2012-11-12  Allan Sandfeld Jensen  <allan.jensen@digia.com>
-
-        [Qt] Can not load MHTML documents
-        https://bugs.webkit.org/show_bug.cgi?id=101765
-
-        Reviewed by Simon Hausmann.
-
-        Enable MHTML feature.
-
-        * qmake/mkspecs/features/features.pri:
-
-2012-11-12  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: Schedule the RTCDataChannel events to be triggered at idle state
-        https://bugs.webkit.org/show_bug.cgi?id=101751
-
-        Reviewed by Adam Barth.
-
-        Makes the data channel mocks to be synchronous instead of asynchronous to be able to
-        properly test RTCDataChannel event handling.
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (MockWebRTCPeerConnectionHandler::sendStringData):
-        (MockWebRTCPeerConnectionHandler::sendRawData):
-
-2012-11-12  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move TestRunner implementation into WebTestRunner namespace
-        https://bugs.webkit.org/show_bug.cgi?id=101837
-
-        Reviewed by Adam Barth.
-
-        That way, we don't get collisions when linking e.g. against chromium's
-        net test support library.
-
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityControllerChromium.h:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.cpp:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.h:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/CppBoundClass.cpp:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/CppBoundClass.h:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/CppVariant.cpp:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/CppVariant.h:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.h:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/GamepadController.cpp:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/GamepadController.h:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestDelegate.h:
-        (WebTestRunner):
-        (TestDelegate):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.h:
-        (WebTestRunner):
-        (TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TextInputController.cpp:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TextInputController.h:
-        (WebTestRunner):
-
-2012-11-12  Zeno Albisser  <zeno@webkit.org>
-
-        [Qt] MiniBrowser should not strongly depend on QtTestSupport.
-        https://bugs.webkit.org/show_bug.cgi?id=101775
-
-        Introducing HAVE(QTTESTSUPPORT) to allow building
-        MiniBrowser without QtTestSupport.
-        This is necessary when using a production build.
-
-        Reviewed by Tor Arne Vestbø.
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::handleUserOptions):
-        * qmake/mkspecs/features/configure.prf:
-        * qmake/mkspecs/features/features.prf:
-
-2012-11-11  Kangil Han  <kangil.han@samsung.com>
-
-        Change build congratulation message in EFL
-        https://bugs.webkit.org/show_bug.cgi?id=101833
-
-        Reviewed by Gyuyoung Kim.
-
-        EFL port is currently supporting both WK1 and WK2.
-        But, build congratulation message still shows WK1(EWebLauncher) only.
-        Therefore, this patch adopts WK2 reference execution(MiniBrowser) in its message.
-
-        From 'To run EWebLauncher with this newly-built code, use the'
-        to 'To run EWebLauncher/MiniBrowser with this newly-built code, use the'.
-
-        * Scripts/build-webkit:
-        (writeCongrats):
-        * Scripts/webkitdirs.pm:
-        (launcherName):
-
-2012-11-09  Ryosuke Niwa  <rniwa@webkit.org>
-
-        People with dichromacy can't tell crashes and passes on flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=101711
-
-        Reviewed by Ojan Vafai.
-
-        Lower the brightness of orange, and raise the brightness of green so that
-        people with color blindnes can still distinguish passes and crashes easily.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.css:
-        (.P):
-        (.C):
-
-2012-11-09  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: Deleting all files relating to the deprecated PeerConnection00
-        https://bugs.webkit.org/show_bug.cgi?id=101730
-
-        Reviewed by Adam Barth.
-
-        Since RTCPeerConenction has superseeded PeerConnection00 this patch removes all
-        files relating to the old API.
-
-        * DumpRenderTree/chromium/MockWebMediaStreamCenter.cpp:
-        * DumpRenderTree/chromium/MockWebMediaStreamCenter.h:
-        (MockWebMediaStreamCenter):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-
-2012-11-09  Yael Aharon  <yael.aharon@intel.com>
-
-        [EFL] Give the view a size in TestWebKitAPI
-        https://bugs.webkit.org/show_bug.cgi?id=101770
-
-        Reviewed by Laszlo Gombos.
-
-        2 tests are currently failing, because they expect us to paint, but we don't paint if the view size is empty.
-
-        * TestWebKitAPI/efl/PlatformWebView.cpp:
-        (TestWebKitAPI::PlatformWebView::PlatformWebView):
-        (TestWebKitAPI::PlatformWebView::~PlatformWebView):
-        (TestWebKitAPI):
-        (TestWebKitAPI::PlatformWebView::resizeTo):
-
-2012-11-09  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r134068.
-        http://trac.webkit.org/changeset/134068
-        https://bugs.webkit.org/show_bug.cgi?id=101766
-
-        Caused crashes on the bots. (Requested by rakuco on #webkit).
-
-        * WebKitTestRunner/cairo/TestInvocationCairo.cpp:
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-
-2012-11-09  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] Bump the jhbuild Cairo version to 1.12.8
-        https://bugs.webkit.org/show_bug.cgi?id=101721
-
-        Bump the Cairo version in Jhbuild moduleset to 1.12.8. This version
-        should fix multiple failures in canvas tests and also contains
-        fixes for X-related crashes that occurred from the 1.12.4 version onwards.
-
-        * gtk/jhbuild.modules:
-
-2012-11-09  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [WTR][Cairo] Do not call paintRepaintRectOverlay() when there is no repaint rect.
-        https://bugs.webkit.org/show_bug.cgi?id=101759
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * WebKitTestRunner/cairo/TestInvocationCairo.cpp:
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected): Improve
-        the check for an empty repaintRect -- we need to check if the
-        WKArrayRef has any items. `if (repaintRect)' will return true
-        regardless of whether the array is empty or not.
-
-
-2012-11-09  Tor Arne Vestbø  <tor.arne.vestbo@digia.com>
-
-        [Qt] Stop watchlist from triggering QtBuildSystem rule on DerivedSources
-
-        Having DerivedSources.pri in the watchlist regexp was creating too much
-        noise.
-
-        Reviewed by Ossy.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-11-09  Dominik Röttsches  <dominik.rottsches@intel.com>
-
-        webkitpy/layouttests integration test fails if high shards/processes environment variables are used
-        https://bugs.webkit.org/show_bug.cgi?id=101455
-
-        Reviewed by Dirk Pranke.
-
-        Updating test to disregard WEBKIT_TEST_MAX_LOCKED_SHARDS environment variable.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_max_locked_shards):
-
-2012-11-09  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [EFL][DRT] Force a repaint before tracking repaint rects.
-        https://bugs.webkit.org/show_bug.cgi?id=101743
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Do like other ports and force a repaint before we start tracking
-        repaints so that the pixel results generated look more in line
-        with what's expected.
-
-        * DumpRenderTree/efl/DumpRenderTree.cpp:
-        (displayWebView): Call DRTSupport::forceLayout() before start
-        tracking repaints.
-
-2012-11-09  Xiaobo Wang  <xbwang@torchmobile.com.cn>
-
-        [BlackBerry] DRT - eventSender.keyDown() needs to support pageUp, pageDown, home, end key
-        https://bugs.webkit.org/show_bug.cgi?id=100937
-
-        Reviewed by Rob Buis.
-
-        1. Translate these keys to their corresponding BlackBerry key code.
-        2. Break down a KeyChar event to a KeyDown/KeyUp pair. This is required
-        because we only handle scrolling on a KeyDown event in WebPage::keyEvent()
-        , and internally a KeyChar event is interpreted as a KeyDown event + a
-        KeyUp event in InputHandler::handleKeyboardInput().
-
-        Tests fixed:
-        1. editing/input/scroll-viewport-page-up-down.html
-        2. editing/selection/move-begin-end.html
-        3. fast/forms/select-popup-pagekeys.html
-
-        * DumpRenderTree/blackberry/EventSender.cpp:
-        (keyDownCallback):
-
-2012-11-09  Simon Hausmann  <simon.hausmann@digia.com>
-
-        Unreviewed prospective Qt/Windows build bot fix:
-
-        Make determination of qmake mkspec work with older versions of Qt that
-        still create a "mkspecs/default" directory.
-
-        * Scripts/webkitdirs.pm:
-        (qtMakeCommand):
-
-2012-11-09  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] Introduce a WebTestProxy to override methods in WebViewClient for layout tests
-        https://bugs.webkit.org/show_bug.cgi?id=101452
-
-        Reviewed by Adam Barth.
-
-        The WebTestProxy is template, so it can derive from an implementation
-        of the WebViewClient interface. That way, WebTestProxy can hook into
-        individual methods of the WebViewClient and forward all the rest to the
-        actual implementation.
-
-        To demonstrate how I want to use this, I moved the
-        postAccessibilityNotification method from WebViewHost to WebTestProxy.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h: Added.
-        (WebKit):
-        (WebTestRunner):
-        (WebTestProxyBase):
-        (WebTestProxy):
-        (WebTestRunner::WebTestProxy::WebTestProxy):
-        (WebTestRunner::WebTestProxy::~WebTestProxy):
-        (WebTestRunner::WebTestProxy::postAccessibilityNotification):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp: Added.
-        (WebTestRunner):
-        (WebTestRunner::WebTestProxyBase::WebTestProxyBase):
-        (WebTestRunner::WebTestProxyBase::~WebTestProxyBase):
-        (WebTestRunner::WebTestProxyBase::setInterfaces):
-        (WebTestRunner::WebTestProxyBase::setDelegate):
-        (WebTestRunner::WebTestProxyBase::doPostAccessibilityNotification):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::createNewWindow):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-11-09  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Build with MSVC fails to use nmake instead of make
-        https://bugs.webkit.org/show_bug.cgi?id=98645
-
-        Reviewed by Tor Arne Vestbø.
-
-        Don't rely on the "default" mkspec but instead query the target
-        mkspec variable from qmake to find the right qmake.conf.
-
-        * Scripts/webkitdirs.pm:
-        (qtMakeCommand):
-
-2012-11-08  Sudarsana Nagineni  <sudarsana.nagineni@intel.com>
-
-        [EFL] about:blank should display the blank page
-        https://bugs.webkit.org/show_bug.cgi?id=101566
-
-        Reviewed by Laszlo Gombos.
-
-        Add a check to return early without prepending http:// scheme, if the
-        URL is 'about:blank'.
-
-        * EWebLauncher/url_utils.c:
-        (url_from_user_input):
-
-2012-11-08  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][WK2] Add proper support for fullscreen API to MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=101615
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Implement fullscreen API support in MiniBrowser. When entering
-        fullscreen a popup is shown to notify the user that something
-        is displayed in fullscreen and to advertise that the Escape
-        key can be used to exit fullscreen. This behavior is according
-        to specification.
-
-        * MiniBrowser/efl/main.c:
-        (on_key_down):
-        (on_fullscreen_accept):
-        (on_fullscreen_deny):
-        (on_fullscreen_enter):
-        (on_fullscreen_exit):
-        (window_create):
-
-2012-11-08  Slavomir Kaslev  <skaslev@google.com>
-
-        [Chromium] DumpRenderTree fix for canvas in software compositing
-        https://bugs.webkit.org/show_bug.cgi?id=101509
-
-        Reviewed by Adrienne Walker.
-
-        Don't use accelerated canvas 2d when in software compositing mode.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::runFileTest):
-
-2012-11-08  Jakob Petsovits  <jpetsovits@rim.com>
-
-        [BlackBerry] Rework the API to use document coordinates
-        https://bugs.webkit.org/show_bug.cgi?id=101608
-        RIM PR 173292
-
-        Reviewed by Adam Treat.
-
-        Adapt to changed WebPage API.
-        See Source/WebKit/blackberry/ChangeLog for details.
-
-        * DumpRenderTree/blackberry/DumpRenderTree.cpp:
-        (BlackBerry::WebKit::DumpRenderTree::DumpRenderTree):
-        (BlackBerry::WebKit::DumpRenderTree::resetToConsistentStateBeforeTesting):
-
-2012-11-08  Yael Aharon  <yael.aharon@intel.com>
-
-        [EFL] Turn on WTF_USE_TILED_BACKING_STORE by default
-        https://bugs.webkit.org/show_bug.cgi?id=101526
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Turn on WTF_USE_TILED_BACKING_STORE for EFL port.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-11-08  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Fix build with MSVC 2012 and Angle
-        https://bugs.webkit.org/show_bug.cgi?id=101588
-
-        Reviewed by Tor Arne Vestbø.
-
-        Angle includes STL's <memory> header file, which with MSVC 2012 includes stdint.h. MSVC 2012
-        does ship stdint.h, but it's lacking other headers such as inttypes.h.
-
-        So for the rest of WebKit we have to continue to use our own versions of these files from
-        JavaScriptCore/os-win32. But for Angle we are just including a shipped STL header file (memory)
-        and so it's up to the compiler to make that work, i.e. using the stdint.h it ships.
-
-        This patch moves the addition of JavaScriptCore/os-win32 out of default_post.prf, so that it
-        doesn't apply to each and every target anymore. In particular it won't apply to Angle anymore,
-        because its presence causes a build issue where due to the addition of os-win32/ we end up
-        including our own stdint.h but are lacking WTF/ to be in the include search path (which our own
-        stdint.h requires). So out of default_post.prf and into WTF.pri, our own wrappers are now only
-        used where WTF is also needed, and since os-win32/stdint.h depends on wtf/Platform.h, it seems
-        like a logical location.
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2012-11-08  Dominik Röttsches  <dominik.rottsches@intel.com>
-
-        Unreviewed, rolling out r133859.
-        http://trac.webkit.org/changeset/133859
-        https://bugs.webkit.org/show_bug.cgi?id=101526
-
-        Breaks EFL bots test execution.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-11-08  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Reduce the number of clean builds
-        https://bugs.webkit.org/show_bug.cgi?id=100844
-
-        Reviewed by Tor Arne Vestbø.
-
-        A change in any Qt project file shouldn't trigger clean
-        build always, but only if the incremental build failed.
-
-        * Scripts/webkitdirs.pm:
-        (buildQMakeProjects):
-
-2012-11-08  Kangil Han  <kangil.han@samsung.com>
-
-        [EFL][MiniBrowser] Add encoding detector option.
-        https://bugs.webkit.org/show_bug.cgi?id=100931
-
-        Reviewed by Gyuyoung Kim.
-
-        Add a runtime option to enable/disable encoding detector.
-
-        * MiniBrowser/efl/main.c:
-        (window_create):
-        (elm_main):
-
-2012-11-08  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt] DumpRenderTree does not honor the shouldDumpPixels boolean argument of dumpAsText
-        https://bugs.webkit.org/show_bug.cgi?id=101485
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt] DumpRenderTree does not honor the shouldDumpPixels boolean argument of dumpAsText
-
-        Support dumpAsText(true) which means we should not dump a render tree
-        but should dump pixels. All other platforms already support it.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::dump):
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        (TestRunner::reset):
-        (TestRunner::dumpAsText):
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunner::shouldDumpPixels):
-        (TestRunner):
-
-2012-11-08  Yael Aharon  <yael.aharon@intel.com>
-
-        [EFL] Turn on WTF_USE_TILED_BACKING_STORE by default
-        https://bugs.webkit.org/show_bug.cgi?id=101526
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Turn on WTF_USE_TILED_BACKING_STORE for EFL port.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-11-07  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Make wait-for-SVN-server.py accept empty string as revision
-        https://bugs.webkit.org/show_bug.cgi?id=98014
-
-        Reviewed by Dirk Pranke.
-
-        * BuildSlaveSupport/wait-for-SVN-server.py:
-        (waitForSVNRevision):
-
-2012-11-07  Dirk Pranke  <dpranke@chromium.org>
-
-        garden-o-matic should handle concurrent requests
-        https://bugs.webkit.org/show_bug.cgi?id=101407
-
-        Reviewed by Ojan Vafai.
-
-        Garden-o-Matic is implemented on top of the BaseHttpServer
-        python library, which implements a single-threaded (one request at
-        a time) server. This means that we can only rebaseline one test at
-        a time, and when using a local results file, even fetching the results
-        for diffs is single-threaded.
-
-        Mixing in the ThreadingMixin enables concurrent requests (subject
-        to the global python interpreter lock). Given that we're doing all
-        of the work in webkit-patch subprocesses, I think this is safe.
-
-        Of course, it may not be safe to do some of the subprocesses in
-        parallel (e.g., rollout), but I think as long as we don't issue
-        commands that touch overlapping sets of files things should be fine.
-        The file locking over modifying testexpectations should keep that
-        from being corrupted.
-
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        (GardeningHTTPServer):
-        (GardeningHTTPRequestHandler):
-
-2012-11-07  Andreas Kling  <akling@apple.com>
-
-        Remove build-webkit dependency on Java SDK for Apple Mac WebKit.
-        <http://webkit.org/b/101492>
-
-        Reviewed by Anders Carlsson.
-
-        Don't check for a Java SDK before building the Apple Mac port. It's no longer needed for
-        the build after the Java bridge was removed.
-
-        * Scripts/build-webkit:
-        (cMakeArgsFromFeatures):
-
-2012-11-07  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][WK2] Allow client to override setWindowFrame() / getWindowFrame()
-        https://bugs.webkit.org/show_bug.cgi?id=101496
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Provide implementation for on_window_geometry_get() / on_window_geometry_set()
-        smart functions that interact with the elm_win widget.
-
-        * MiniBrowser/efl/main.c:
-        (on_window_geometry_get):
-        (on_window_geometry_set):
-        (window_create):
-
-2012-11-07  Yael Aharon  <yael.aharon@intel.com>
-
-        [EFL][WK2][AC] API tests crash
-        https://bugs.webkit.org/show_bug.cgi?id=101480
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        When AC is enabled, 8 API tests are crashing. We need to properly set the evas engine for these tests.
-
-        * TestWebKitAPI/efl/PlatformWebView.cpp:
-        (TestWebKitAPI::initEcoreEvas):
-
-2012-11-07  Peter Beverloo  <peter@chromium.org>
-
-        Don't show the Android tester in garden-o-matic yet
-        https://bugs.webkit.org/show_bug.cgi?id=101476
-
-        Reviewed by Adam Barth.
-
-        The Android tester just started running layout tests, and doesn't upload its
-        results yet. Don't show it for now. This exception will be removed once it
-        has a baseline of greenness.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-        (.):
-
-2012-11-07  Balazs Kelemen  <kbalazs@webkit.org>
-
-        WebKitTestRunner flakily hangs when running pixel tests on Qt
-        https://bugs.webkit.org/show_bug.cgi?id=100686
-
-        Reviewed by Csaba Osztrogonác.
-
-        Make WebKitTestRunner harden against the situation when the coordinated
-        graphics rendering synchronisation fails. If we time out when waiting
-        for the forced repaint to finish it usually a symptom of the synchronisation
-        has been broken. In this case all other tests will fail with the same error.
-        The underlying problem is not yet known. Ths patch make us report this situation
-        as web process unresponsiveness, so the test harness will kill us and launch
-        a new instance. This will make our pixel test bot usable while it should not limit
-        us debugging the underlying bug.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::run):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::TestInvocation):
-        (WTR::TestInvocation::invoke):
-        (WTR::TestInvocation::dumpWebProcessUnresponsiveness):
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-        * WebKitTestRunner/TestInvocation.h:
-        (TestInvocation): Introduce new members to hold our state
-        that was local to invoke() so far.
-        * WebKitTestRunner/qt/TestInvocationQt.cpp:
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-
-2012-11-07  Allan Sandfeld Jensen  <allan.jensen@digia.com>
-
-        [Qt] Open link in this window action
-        https://bugs.webkit.org/show_bug.cgi?id=101226
-
-        Reviewed by Simon Hausmann.
-
-        Populates the context-menu with the new action when the default action is to open in a new window.
-
-        * QtTestBrowser/webview.cpp:
-        (createContextMenu):
-
-2012-11-07  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL][WK2] Add ewk_settings_preferred_minimum_contents_width_get/set API
-        https://bugs.webkit.org/show_bug.cgi?id=101467
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Added ewk_settings_preferred_minimum_contents_width_get/set API which is used for setting/getting
-        of default minimum contents width for non viewport meta element sites.
-        Set default minimum contents width to '0' for MiniBrowser as it should behave like desktop browser.
-
-        * MiniBrowser/efl/main.c:
-        (window_create):
-
-2012-11-07  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [EFL] Add EFL to garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=101444
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Added the EFL bots running layout tests to the garden-o-matic report
-        page. We are skipping here the bot that just builds WebKit EFL to make
-        the data fetching faster.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-        (.):
-
-2012-11-07  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL][WK2] Make EWK classes Ewk_Objects
-        https://bugs.webkit.org/show_bug.cgi?id=101057
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Now all the existing EWK classes share common Ewk_Object ref/unref API.
-
-        * MiniBrowser/efl/main.c:
-        (close_file_picker):
-        (on_file_chooser_request):
-
-2012-11-07  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Unreviewed. Add Qt EWS bots to the watchers list.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (QtEWS):
-        (QtWK2EWS):
-
-2012-11-07  Grzegorz Czajkowski  <g.czajkowski@samsung.com>
-
-        WebKitTestRunner needs to turn on 'setContinuousSpellCheckingEnabled'
-        https://bugs.webkit.org/show_bug.cgi?id=93611
-
-        Reviewed by Gyuyoung Kim.
-
-        WebKitTestRunner enables spelling feature to pass the layout tests from editing/spelling.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-        Enables spelling by WebKit2 C API.
-
-2012-11-07  Dominik Röttsches  <dominik.rottsches@intel.com>
-
-        [EFL] Switch the efl-linux-slave-2 to Wk2 Release
-        https://bugs.webkit.org/show_bug.cgi?id=101345
-
-        Reviewed by Gyuyoung Kim.
-
-        Switching efl-linux-slave-2 to Wk2 Release.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-11-07  Christophe Dumez  <christophe.dumez@intel.com>
-
-        Add replaceWithLiteral() method to WTF::String
-        https://bugs.webkit.org/show_bug.cgi?id=101257
-
-        Reviewed by Benjamin Poulain.
-
-        Add API tests for String::replaceWithLiteral() and corresponding
-        StringImpl methods.
-
-        * TestWebKitAPI/CMakeLists.txt: Add WTFString API tests to CMake.
-        * TestWebKitAPI/Tests/WTF/StringImpl.cpp:
-        (TestWebKitAPI::TEST):
-        (TestWebKitAPI):
-        * TestWebKitAPI/Tests/WTF/WTFString.cpp:
-        (TestWebKitAPI::TEST):
-
-2012-11-07  Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
-
-        [Qt] Fix build of modules depending on QtWebKit when using prefix
-        https://bugs.webkit.org/show_bug.cgi?id=101437
-
-        Reviewed by Simon Hausmann.
-
-        Remove setting of MODULE_QMAKE_OUTDIR from here, it's been moved to .qmake.conf.
-
-        * qmake/mkspecs/features/default_pre.prf:
-
-2012-11-06  Dan Beam  <dbeam@chromium.org>
-
-        Enable REQUEST_AUTOCOMPLETE for chromium port
-        https://bugs.webkit.org/show_bug.cgi?id=101376
-
-        Reviewed by Adam Barth.
-
-        This patch enables the feature flag REQUEST_AUTOCOMPLETE in WebKit/chromium only to allow web authors to start to use
-        HTMLFormElement#requestAutocomplete as the chrome-side work progresses further.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-
-        Enables the requestAutocomplete runtime feature flag during tests.
-
-2012-11-06  KyungTae Kim  <ktf.kim@samsung.com>
-
-        [WK2][EFL] Add shortcut for setting a pagination mode on Minibrowser
-        https://bugs.webkit.org/show_bug.cgi?id=100301
-
-        Reviewed by Gyuyoung Kim.
-
-        Setting pagination modes is for a paginated view - left to right / right to left / top to bottom / bottom to top.
-        Assign a shortcut "F7" to set pagination modes for tests.
-
-        * MiniBrowser/efl/main.c:
-        (on_key_down):
-
-2012-11-06  KyungTae Kim  <ktf.kim@samsung.com>
-
-        [EFL][EWebLauncher] Use Ctrl +/-  to zoom in EWebLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=100207
-
-        Reviewed by Gyuyoung Kim.
-
-        Use "Ctrl -" instead of "F7" to zoom out, and use "Ctrl +" instead of "F8" to zoom in, 
-        and use "Ctrl 0" to set to default zoom level.
-        They are more common shortcuts on usual browsers.
-
-        * EWebLauncher/main.c:
-        (on_key_down):
-
-2012-11-06  Oliver Hunt  <oliver@apple.com>
-
-        Don't warn about RefPtr* parameters
-        https://bugs.webkit.org/show_bug.cgi?id=101403
-
-        Reviewed by Gavin Barraclough.
-
-        RefPtr<>* is a valid parameter type.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (check_function_definition_and_pass_ptr):
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (PassPtrTest.test_ref_ptr_parameter_value):
-
-2012-11-06  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [WTR] Reset EventSender before running each test.
-        https://bugs.webkit.org/show_bug.cgi?id=101353
-
-        Reviewed by Simon Fraser.
-
-        Contrary to what was done to at least some ports in DumpRenderTree,
-        EventSender did not currently reset its values in WTR. This caused
-        flakiness if a test such as editing/selection/fake-doubleclick.html was
-        run twice in a row, since the click count was not reset across each
-        run.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::TestController): Do not create m_eventSenderProxy
-        in the constructor anymore, it is created in
-        resetStateToConsistentValues now.
-        (WTR::TestController::resetStateToConsistentValues): Recreate
-        m_eventSenderProxy every time this method is run.
-        * WebKitTestRunner/TestController.h: Make m_eventSenderProxy an OwnPtr
-        and guard it with a platform #ifdef.
-        * WebKitTestRunner/gtk/EventSenderProxyGtk.cpp:
-        (WTR::EventSenderProxy::~EventSenderProxy): Add an empty
-        implementation.
-        * WebKitTestRunner/mac/EventSenderProxy.mm:
-        (WTR::EventSenderProxy::~EventSenderProxy): Ditto.
-        * WebKitTestRunner/qt/EventSenderProxyQt.cpp:
-        (WTR::EventSenderProxy::~EventSenderProxy): Ditto.
-
-2012-11-06  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL][WK2] Refactor Ewk_Auth_Request, Ewk_Url_Scheme_Request and Ewk_Download_Job to be Ewk_Objects
-        https://bugs.webkit.org/show_bug.cgi?id=101383
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Ewk_Auth_Request, Ewk_Url_Scheme_Request and Ewk_Download_Job are Ewk_Objects now.
-
-        * MiniBrowser/efl/main.c:
-        (auth_popup_close):
-        (on_authentication_request):
-
-2012-11-06  Tommy Widenflycht  <tommyw@google.com>
-
-        [chromium] MediaStream API: Remove the valgrind issue with MockWebRTCPeerConnectionHandler
-        https://bugs.webkit.org/show_bug.cgi?id=101336
-
-        Reviewed by Andreas Kling.
-
-        This patch changes the delete to delete [] to match the new[].
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-
-2012-11-06  Mihai Balan  <mibalan@adobe.com>
-
-        Add Adobe's bug tracker to committers.py
-        https://bugs.webkit.org/show_bug.cgi?id=101338
-
-        Reviewed by Kentaro Hara.
-
-        Adding Adobe's bug tracker mailing list to committers.py
-        to enable its inclusion in the autocomplete list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-11-06  Sami Kyostila  <skyostil@chromium.org>
-
-        [chromium] Enable fixed position compositing on Android DRT
-        https://bugs.webkit.org/show_bug.cgi?id=100263
-
-        Reviewed by James Robinson.
-
-        Chrome on Android forces composited mode for every page and creates
-        stacking contexts and graphics layers for fixed positioned elements.
-        Change the DumpRenderTree settings to match this.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::resetWebSettings):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::setAcceleratedCompositingForFixedPositionEnabled):
-        (TestShell):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-        (WebPreferences):
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.additional_drt_flag):
-
-2012-11-06  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [EFL][WTR] EventSender: Get rid of the WTRMouseButton enum.
-        https://bugs.webkit.org/show_bug.cgi?id=101340
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Get rid of an enum which was basically a duplicate of the
-        WKEventMouseButton one in the shared API.
-
-        The only difference is that it also had a case for a 4th mouse
-        button that we treat in a special way in evasMouseButton() now.
-
-        * WebKitTestRunner/EventSenderProxy.h:
-        (EventSenderProxy):
-        * WebKitTestRunner/efl/EventSenderProxyEfl.cpp:
-        (WTR::evasMouseButton):
-        (WTR::EventSenderProxy::EventSenderProxy):
-        (WTR::EventSenderProxy::mouseUp):
-        (WTR::EventSenderProxy::mouseMoveTo):
-        (WTR::EventSenderProxy::mouseScrollBy):
-        (WTR::EventSenderProxy::leapForward):
-
-2012-11-06  Jussi Kukkonen  <jussi.kukkonen@intel.com>
-
-        [EFL][WK2] Minibrowser forgets http variables when url includes ampersand
-        https://bugs.webkit.org/show_bug.cgi?id=101061
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Elementary entry only returns 'markup' text, meaning ampersands
-        in a url will become "&amp;". Use elm_entry_markup_to_utf8() and
-        elm_entry_utf8_to_markup() when interacting with the entry.
-
-        * MiniBrowser/efl/main.c:
-        (on_url_changed):
-        (on_url_bar_activated):
-
-2012-11-06  Balazs Kelemen  <kbalazs@webkit.org>
-
-        DumpRenderTree should have --pixel-tests option again
-        https://bugs.webkit.org/show_bug.cgi?id=98648
-
-        Reviewed by Dirk Pranke.
-
-        Add back the --pixel-tests command line option to DumpRenderTree.
-        It was removed r124581 because tools don't use it after that patch.
-        However, it turned out that it is useful for debugging and working
-        with pixel tests.
-
-        * DumpRenderTree/efl/DumpRenderTree.cpp:
-        (parseCommandLineOptions):
-        (runTest):
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (initializeGlobalsFromCommandLineOptions):
-        (runTest):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (initializeGlobalsFromCommandLineOptions):
-        (runTest):
-        * DumpRenderTree/qt/DumpRenderTreeMain.cpp:
-        (isOption):
-        (printUsage):
-        (main):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::processLine):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        (WebCore::DumpRenderTree::setShouldDumpPixelsForAllTests):
-        (DumpRenderTree):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (runTest):
-        (dllLauncherEntryPoint):
-        * DumpRenderTree/wx/DumpRenderTreeWx.cpp:
-        (runTest):
-        (MyApp::OnInit):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::TestController):
-        (WTR::TestController::initialize):
-        (WTR::TestController::runTest):
-        * WebKitTestRunner/TestController.h:
-        (TestController):
-
-2012-11-05  Dirk Pranke  <dpranke@chromium.org>
-
-        webkit-patch rebaseline*: fix typo for --results-directory
-        https://bugs.webkit.org/show_bug.cgi?id=101295
-
-        Reviewed by Ojan Vafai.
-
-        Had --results_directory instead of --results-directory in both the
-        code and the unit test.
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (AbstractParallelRebaselineCommand._rebaseline_commands):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (TestRebaselineJson.test_results_directory):
-
-2012-11-05  Dirk Pranke  <dpranke@chromium.org>
-
-        webkit-patch rebaseline*: fix handling of local file urls
-        https://bugs.webkit.org/show_bug.cgi?id=101296
-
-        Reviewed by Ojan Vafai.
-
-        When using --results-directory, we need to make sure we're converting
-        paths to file:/// urls for urllib to work correctly. Also, this
-        patch reworks the unit tests to get better coverage (of the execute()
-        command) and reduce copy/pasting of mock options.
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineTest._rebaseline_test_and_update_expectations):
-        (RebaselineTest.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (TestRebaselineTest.setUp):
-        (test_rebaseline_updates_expectations_file):
-        (test_rebaseline_does_not_include_overrides):
-        (test_rebaseline_test_with_results_directory):
-        (test_rebaseline_test_internal_with_move_overwritten_baselines_to):
-
-2012-11-05  Kenneth Russell  <kbr@google.com>
-
-        Added secondary email address and IRC nick.
-        https://bugs.webkit.org/show_bug.cgi?id=101290
-
-        Unreviewed change to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-11-05  Glenn Adams  <glenn@skynav.com>
-
-        Add IRC alias for Glenn Adams
-        https://bugs.webkit.org/show_bug.cgi?id=101262
-
-        Reviewed by Eric Seidel.
-
-        Add IRC alias for Glenn Adams.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-11-05  Dima Gorbik  <dgorbik@apple.com>
-
-        Back out controversial changes from Bug 98665.
-        https://bugs.webkit.org/show_bug.cgi?id=101244
-
-        Reviewed by David Kilzer.
-
-        Backing out changes from Bug 98665 until further discussions take place on rules for including Platform.h in Assertions.h.
-
-        * DumpRenderTree/mac/MockGeolocationProvider.mm:
-
-2012-11-05  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: lint, clean up rebaseline.py
-        https://bugs.webkit.org/show_bug.cgi?id=101240
-
-        Reviewed by Ojan Vafai.
-
-        Miscellaneous cleanup of lint errors and warnings.
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (AbstractRebaseliningCommand):
-        (RebaselineTest._test_root):
-        (OptimizeBaselines._optimize_baseline):
-        (OptimizeBaselines.execute):
-        (AnalyzeBaselines.__init__):
-        (AbstractParallelRebaselineCommand):
-        (AbstractParallelRebaselineCommand._builders_to_fetch_from):
-        (AbstractParallelRebaselineCommand._files_to_add):
-        (AbstractParallelRebaselineCommand._rebaseline):
-        (RebaselineExpectations.__init__):
-        (Rebaseline.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (_BaseTestCase.setUp):
-        (TestAnalyzeBaselines.setUp):
-
-2012-11-05  Dirk Pranke  <dpranke@chromium.org>
-
-        webkit-patch optimize-baselines should take a --platform arg
-        https://bugs.webkit.org/show_bug.cgi?id=97623
-
-        Reviewed by Ojan Vafai.
-
-        So that we can optionally limit/control which platforms' results
-        are affected.
-
-        This patch adds --platform to analyze-baselines as well.
-
-        * Scripts/webkitpy/common/checkout/baselineoptimizer.py:
-        (_baseline_search_hypergraph):
-        (BaselineOptimizer.__init__):
-        * Scripts/webkitpy/common/checkout/baselineoptimizer_unittest.py:
-        (TestBaselineOptimizer.__init__):
-        (BaselineOptimizerTest.test_move_baselines):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (OptimizeBaselines.__init__):
-        (OptimizeBaselines.execute):
-        (AnalyzeBaselines.__init__):
-        (AnalyzeBaselines.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (TestAnalyzeBaselines.test_default):
-        (TestAnalyzeBaselines.test_missing_baselines):
-
-2012-11-05  Dirk Pranke  <dpranke@chromium.org>
-
-        webkit-patch rebaseline-expectations should take a --platform arg
-        https://bugs.webkit.org/show_bug.cgi?id=97621
-
-        Reviewed by Ojan Vafai.
-
-        So that we can limit which platforms we attempt to rebaseline;
-        this can reduce the noise the command produces if some ports
-        have errors or warnings in their TestExpectations files and/or
-        help produce more predictable results.
-
-        In testing this patch, I realized that the rebaseline-in-parallel
-        commands (rebaseline-json, rebaseline-expectations, etc.) can
-        cause multiple rebaseline-test-internal commands to attempt to
-        modify the TestExpectations files concurrently, and that we needed
-        to lock the files to prevent corruption; it would be nice if
-        we can split the updating-the-expectations-files out separately
-        from updating the filesystem (much like we do with the scm updates)
-        to avoid this concurrency.
-
-        * Scripts/webkitpy/common/system/file_lock_mock.py: Added.
-        (MockFileLock):
-        (MockFileLock.__init__):
-        (MockFileLock.acquire_lock):
-        (MockFileLock.release_lock):
-        * Scripts/webkitpy/common/system/systemhost.py:
-        (SystemHost.copy_current_environment):
-        (SystemHost):
-        (SystemHost.make_file_lock):
-        * Scripts/webkitpy/common/system/systemhost_mock.py:
-        (MockSystemHost.copy_current_environment):
-        (MockSystemHost):
-        (MockSystemHost.make_file_lock):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineTest._update_expectations_file):
-        (RebaselineExpectations.__init__):
-        (RebaselineExpectations._add_tests_to_rebaseline_for_port):
-        (RebaselineExpectations.execute):
-
-2012-11-05  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: clean up options for specifying multiple platforms at once
-        https://bugs.webkit.org/show_bug.cgi?id=101140
-
-        Reviewed by Ojan Vafai.
-
-        This patch reworks how we display the help strings for --platform
-        options and how we filter out platforms matching a glob. This will
-        be useful as I add patches to ensure that all the webkit-patch
-        commands are using --platform consistently to filter ports.
-
-        There should be no functional changes resulting from this patch.
-
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        (platform_options):
-        (PortFactory.all_port_names):
-        (PortFactory.get_from_builder_name):
-        * Scripts/webkitpy/tool/commands/queries.py:
-        (PrintExpectations.__init__):
-        (PrintBaselines.__init__):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (AbstractRebaseliningCommand):
-        (RebaselineJson.__init__):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (TestRebaselineExpectations.setUp):
-        (TestRebaselineExpectations.test_rebaseline_expectations):
-
-2012-11-05  Peter Beverloo  <peter@chromium.org>
-
-        The layout test runner shouldn't wait for data if stdout/stderr have been closed
-        https://bugs.webkit.org/show_bug.cgi?id=101233
-
-        Reviewed by Dirk Pranke.
-
-        Trying to read the file descriptor for the stdout or stderr pipes when DumpRenderTree
-        has crashed during a Chromium Android layout test-run, which uses FIFOs for
-        communication, causes the File.fileno() method to raise a ValueError. Return early
-        if either of the pipes has already been closed.
-
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        (ServerProcess._wait_for_data_and_update_buffers_using_select):
-
-2012-11-05  Dirk Pranke  <dpranke@chromium.org>
-
-        webkit-patch rebaseline is broken
-        https://bugs.webkit.org/show_bug.cgi?id=101235
-
-        Reviewed by Ojan Vafai.
-
-        It didn't get updated to handle the change in parsing --suffixes
-        properly, and the unit test didn't get updated either, masking the
-        problem.
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (Rebaseline._tests_to_update):
-        (Rebaseline.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (TestRebaseline.test_rebaseline):
-
-2012-11-05  Dirk Pranke  <dpranke@chromium.org>
-
-        lint-webkitpy doesn't autoinstall pylint properly.
-        https://bugs.webkit.org/show_bug.cgi?id=101106
-
-        Reviewed by Ojan Vafai.
-
-        Re-land r133381 with fix; ironically, lint-webkitpy would've
-        complained about the problem. Also modify pylintrc and clean up
-        any other lint errors in the modified files.
-
-        * Scripts/webkitpy/common/system/autoinstall.py:
-        (AutoInstaller._set_up_target_dir):
-        (AutoInstaller):
-        (AutoInstaller._make_package):
-        (AutoInstaller._create_scratch_directory):
-        (AutoInstaller._install):
-        (AutoInstaller.install):
-        * Scripts/webkitpy/pylintrc:
-        * Scripts/webkitpy/thirdparty/__init__.py:
-        (AutoinstallImportHook._ensure_autoinstalled_dir_is_in_sys_path):
-        (AutoinstallImportHook):
-        (AutoinstallImportHook.find_module):
-        (AutoinstallImportHook._install_pylint):
-        (AutoinstallImportHook._install_coverage):
-        (AutoinstallImportHook._install_eliza):
-        (AutoinstallImportHook._install_webpagereplay):
-        (AutoinstallImportHook._install):
-        * Scripts/webkitpy/thirdparty/__init___unittest.py:
-        (ThirdpartyTest.test_import_hook.MockImportHook.__init__):
-        (ThirdpartyTest.test_import_hook):
-        (ThirdpartyTest.test_imports):
-
-2012-11-05  KyungTae Kim  <ktf.kim@samsung.com>
-
-        [EFL] Fix build warning in EWebLauncher/main.c
-        https://bugs.webkit.org/show_bug.cgi?id=101197
-
-        Reviewed by Kentaro Hara.
-
-        Because the strp of _Ecore_Getopt_Value is char** (Ecore_Getopt.h),
-        The parameter of ECORE_GETOPT_VALUE_STR should be char*
-
-        * EWebLauncher/main.c:
-        (_User_Arguments):
-
-2012-11-05  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL][WK2] Add --window-size command line option to EFL MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=100942
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Added window-size (-s) command line option to EFL MiniBrowser.
-
-        * MiniBrowser/efl/main.c:
-        (window_create):
-        (parse_window_size):
-        (elm_main):
-
-2012-11-05  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][WK2] The icon database path should be set by the client
-        https://bugs.webkit.org/show_bug.cgi?id=101182
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Enable favicon database functionality in MiniBrowser since
-        it is used and it is no longer enabled by default.
-
-        * MiniBrowser/efl/main.c:
-        (elm_main):
-
-2012-11-03  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt][WK2] setPlatformStrategies always asserts after r132744
-        https://bugs.webkit.org/show_bug.cgi?id=100838
-
-        Reviewed by Simon Hausmann.
-
-        Reland with build fixes.
-
-        Turned test runners to use the new QtTestSupport.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/DumpRenderTreeMain.cpp:
-        (main):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::open):
-        * DumpRenderTree/qt/QtInitializeTestFonts.h: Removed.
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * QtTestBrowser/QtTestBrowser.pro:
-        * QtTestBrowser/qttestbrowser.cpp:
-        (LauncherApplication::handleUserOptions):
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-        (WTR::activateFonts):
-        * WebKitTestRunner/InjectedBundle/qt/QtInitializeTestFonts.cpp: Removed.
-        * WebKitTestRunner/InjectedBundle/qt/QtInitializeTestFonts.h: Removed.
-        * WebKitTestRunner/InjectedBundle/qt/TestRunnerQt.cpp:
-        (WTR::TestRunner::platformInitialize):  Removed the comment from here
-        because it was just lying, apparently two times. First, it is not incorrect
-        to reinitialize our font set and clear font caches, it is what the tests
-        expect. Second, the use of QRawFont has nothing to do with the font cache.
-        * WebKitTestRunner/Target.pri:
-        * WebKitTestRunner/qt/main.cpp:
-        (main):
-
-2012-11-04  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r133381.
-        http://trac.webkit.org/changeset/133381
-        https://bugs.webkit.org/show_bug.cgi?id=101161
-
-        It made webkit-patch useless (Requested by Ossy_weekend on
-        #webkit).
-
-        * Scripts/webkitpy/common/system/autoinstall.py:
-        (AutoInstaller._create_scratch_directory):
-        (AutoInstaller._install):
-        (AutoInstaller.install):
-        * Scripts/webkitpy/thirdparty/__init__.py:
-        (AutoinstallImportHook.__init__):
-        (AutoinstallImportHook._install_pylint):
-        (AutoinstallImportHook._install_coverage):
-        (AutoinstallImportHook._install_eliza):
-        (AutoinstallImportHook._install):
-        * Scripts/webkitpy/thirdparty/__init___unittest.py:
-        (ThirdpartyTest.test_import_hook.MockImportHook.__init__):
-        (ThirdpartyTest.test_import_hook):
-
-2012-11-03  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r133403, r133404, and r133409.
-        http://trac.webkit.org/changeset/133403
-        http://trac.webkit.org/changeset/133404
-        http://trac.webkit.org/changeset/133409
-        https://bugs.webkit.org/show_bug.cgi?id=101158
-
-        "Broke tests" (Requested by kbalazs on #webkit).
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/DumpRenderTreeMain.cpp:
-        (main):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::open):
-        * DumpRenderTree/qt/QtInitializeTestFonts.cpp: Renamed from Source/WebCore/platform/qt/QtTestSupport.cpp.
-        (WebKit):
-        (WebKit::initializeTestFonts):
-        * DumpRenderTree/qt/QtInitializeTestFonts.h: Copied from Tools/WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp.
-        (WebKit):
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::handleUserOptions):
-        * QtTestBrowser/QtTestBrowser.pro:
-        * QtTestBrowser/qttestbrowser.cpp:
-        (LauncherApplication::handleUserOptions):
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-        (WTR::activateFonts):
-        * WebKitTestRunner/InjectedBundle/qt/QtInitializeTestFonts.cpp: Copied from Tools/WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp.
-        * WebKitTestRunner/InjectedBundle/qt/QtInitializeTestFonts.h: Copied from Tools/WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp.
-        * WebKitTestRunner/InjectedBundle/qt/TestRunnerQt.cpp:
-        (WTR::TestRunner::platformInitialize):
-        * WebKitTestRunner/Target.pri:
-        * WebKitTestRunner/qt/main.cpp:
-        (main):
-
-2012-11-03  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt][WK2] setPlatformStrategies always asserts after r132744
-        https://bugs.webkit.org/show_bug.cgi?id=100838
-
-        2nd unreviewed buildfix.
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-
-2012-11-03  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt][WK2] setPlatformStrategies always asserts after r132744
-        https://bugs.webkit.org/show_bug.cgi?id=100838
-
-        Unreviewed buildfix.
-
-        * WebKitTestRunner/Target.pri:
-
-2012-11-03  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt][WK2] setPlatformStrategies always asserts after r132744
-        https://bugs.webkit.org/show_bug.cgi?id=100838
-
-        Reviewed by Simon Hausmann.
-
-        Reland with build fix.
-
-        Turned test runners to use the new QtTestSupport.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/DumpRenderTreeMain.cpp:
-        (main):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::open):
-        * DumpRenderTree/qt/QtInitializeTestFonts.h: Removed.
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * QtTestBrowser/QtTestBrowser.pro:
-        * QtTestBrowser/qttestbrowser.cpp:
-        (LauncherApplication::handleUserOptions):
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-        (WTR::activateFonts):
-        * WebKitTestRunner/InjectedBundle/qt/QtInitializeTestFonts.cpp: Removed.
-        * WebKitTestRunner/InjectedBundle/qt/QtInitializeTestFonts.h: Removed.
-        * WebKitTestRunner/InjectedBundle/qt/TestRunnerQt.cpp:
-        (WTR::TestRunner::platformInitialize):  Removed the comment from here
-        because it was just lying, apparently two times. First, it is not incorrect
-        to reinitialize our font set and clear font caches, it is what the tests
-        expect. Second, the use of QRawFont has nothing to do with the font cache.
-        * WebKitTestRunner/Target.pri:
-        * WebKitTestRunner/qt/main.cpp:
-        (main):
-
-2012-11-03  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r133397.
-        http://trac.webkit.org/changeset/133397
-        https://bugs.webkit.org/show_bug.cgi?id=101155
-
-        "Broke Qt. No way to force the damn bots to do a clean build.
-        I'm giving up." (Requested by kbalazs on #webkit).
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/DumpRenderTreeMain.cpp:
-        (main):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::open):
-        * DumpRenderTree/qt/QtInitializeTestFonts.cpp: Renamed from Source/WebCore/platform/qt/QtTestSupport.cpp.
-        (WebKit):
-        (WebKit::initializeTestFonts):
-        * DumpRenderTree/qt/QtInitializeTestFonts.h: Copied from Tools/WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp.
-        (WebKit):
-        * QtTestBrowser/QtTestBrowser.pro:
-        * QtTestBrowser/qttestbrowser.cpp:
-        (LauncherApplication::handleUserOptions):
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-        (WTR::activateFonts):
-        * WebKitTestRunner/InjectedBundle/qt/QtInitializeTestFonts.cpp: Copied from Tools/WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp.
-        * WebKitTestRunner/InjectedBundle/qt/QtInitializeTestFonts.h: Copied from Tools/WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp.
-        * WebKitTestRunner/InjectedBundle/qt/TestRunnerQt.cpp:
-        (WTR::TestRunner::platformInitialize):
-        * WebKitTestRunner/Target.pri:
-        * WebKitTestRunner/qt/main.cpp:
-        (main):
-
-2012-11-03  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt][WK2] setPlatformStrategies always asserts after r132744
-        https://bugs.webkit.org/show_bug.cgi?id=100838
-
-        Reviewed by Simon Hausmann.
-
-        Turned test runners to use the new QtTestSupport.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/DumpRenderTreeMain.cpp:
-        (main):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::open):
-        * QtTestBrowser/QtTestBrowser.pro:
-        * QtTestBrowser/qttestbrowser.cpp:
-        (LauncherApplication::handleUserOptions):
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-        (WTR::activateFonts):
-        * WebKitTestRunner/InjectedBundle/qt/QtInitializeTestFonts.cpp: Removed.
-        * WebKitTestRunner/InjectedBundle/qt/QtInitializeTestFonts.h: Removed.
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundleQt.cpp:
-        * WebKitTestRunner/InjectedBundle/qt/TestRunnerQt.cpp:
-        (WTR::TestRunner::platformInitialize): Removed the comment from here
-        because it was just lying, apparently two times. First, it is not incorrect
-        to reinitialize our font set and clear font caches, it is what the tests
-        expect. Second, the use of QRawFont has nothing to do with the font cache.
-        * WebKitTestRunner/Target.pri:
-        * WebKitTestRunner/qt/main.cpp:
-        (main):
-
-2012-11-02  Dirk Pranke  <dpranke@chromium.org>
-
-        webkit-patch rebaseline is broken
-        https://bugs.webkit.org/show_bug.cgi?id=101081
-
-        Reviewed by Ojan Vafai.
-
-        I broke this in r133061 and the unit tests weren't covering this
-        code path. Fixed the issue and the tests. --results-directory
-        doesn't make sense for either 'webkit-patch rebaseline' or
-        'webkit-patch rebaseline-expectations', so we don't want to expose
-        that as a command line option, but they all call a common
-        _rebaseline() routine that references options.results_directory,
-        so we need to set a default value.
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineExpectations.execute):
-        (Rebaseline.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (TestRebaseline):
-        (TestRebaseline.test_rebaseline):
-
-2012-11-02  Dirk Pranke  <dpranke@chromium.org>
-
-        lint-webkitpy doesn't autoinstall pylint properly
-        https://bugs.webkit.org/show_bug.cgi?id=101106
-
-        Reviewed by Ojan Vafai.
-
-        Turns out the autoinstalling code for pylint didn't install
-        pylint's dependencies, and the autoinstaller code didn't work
-        using nested directories (e.g., "logilab/astng"). Fix those issues,
-        clean up the autoinstaller code, and add tests to make sure everything
-        imports successfully.
-
-        * Scripts/webkitpy/common/system/autoinstall.py:
-        (AutoInstaller._create_scratch_directory):
-        (AutoInstaller._install):
-        (AutoInstaller.install):
-        * Scripts/webkitpy/thirdparty/__init__.py:
-        (AutoinstallImportHook._ensure_autoinstalled_dir_is_in_sys_path):
-        (AutoinstallImportHook._install_pylint):
-        (AutoinstallImportHook._install_coverage):
-        (AutoinstallImportHook._install_eliza):
-        (AutoinstallImportHook._install):
-        * Scripts/webkitpy/thirdparty/__init___unittest.py:
-        (ThirdpartyTest.test_import_hook.MockImportHook.__init__):
-        (ThirdpartyTest.test_import_hook):
-        (ThirdpartyTest.test_imports):
-
-2012-11-02  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt prints an awkward result message for missing results
-        https://bugs.webkit.org/show_bug.cgi?id=100915
-
-        Reviewed by Ojan Vafai.
-
-        Completely rework how we print out the description of
-        each tests's result - we now will print either "passed" or "failed",
-        followed by " unexpectedly" if we weren't expecting the result,
-        followed by a short description of each type of failure that happened
-        (in parentheses). Also reworked the description of each type of
-        failure slightly to be clearer.
-
-        Also rework the tests to make sure we have coverage of all of the
-        messages. Examples of the new output are posted as an attachment to
-        the bug.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectations):
-        * Scripts/webkitpy/layout_tests/models/test_failures.py:
-        (FailureTimeout.message):
-        (FailureMissingResult.message):
-        (FailureTextMismatch.message):
-        (FailureMissingImageHash.message):
-        (FailureMissingImage.message):
-        (FailureImageHashMismatch.message):
-        (FailureImageHashIncorrect.message):
-        (FailureReftestMismatch.message):
-        (FailureReftestMismatchDidNotOccur.message):
-        (FailureReftestNoImagesGenerated.message):
-        (FailureMissingAudio.message):
-        (FailureAudioMismatch.message):
-        (FailureEarlyExit.message):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_run_singly_actually_runs_tests):
-        (MainTest.test_missing_and_unexpected_results):
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (Printer._print_result_summary_entry):
-        (Printer.print_finished_test):
-        (Printer._result_message):
-        (Printer._print_unexpected_results):
-        * Scripts/webkitpy/tool/bot/flakytestreporter_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2012-11-02  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: clean up logging in common.system.autoinstall
-        https://bugs.webkit.org/show_bug.cgi?id=101090
-
-        Reviewed by Ojan Vafai.
-
-        This module logged way too much, much of which was logging that
-        was either really redundant or useful only during initial development.
-        This patch deletes a lot of code and tweaks the remaining log messages
-        to be more useful now.
-
-        Also, clean up a bunch of lint errors and warnings.
-
-        * Scripts/webkitpy/common/system/autoinstall.py:
-        (AutoInstaller.__init__):
-        (AutoInstaller._write_file):
-        (AutoInstaller._set_up_target_dir):
-        (AutoInstaller._create_scratch_directory):
-        (AutoInstaller._url_downloaded_path):
-        (AutoInstaller._is_downloaded):
-        (AutoInstaller._record_url_downloaded):
-        (AutoInstaller._extract_targz):
-        (AutoInstaller._extract_all):
-        (AutoInstaller._unzip):
-        (AutoInstaller._download_to_stream):
-        (AutoInstaller._download):
-        (AutoInstaller._install):
-        (AutoInstaller.install):
-
-2012-11-02  Dirk Pranke  <dpranke@chromium.org>
-
-        webkit-patch analyze-baselines output is weak
-        https://bugs.webkit.org/show_bug.cgi?id=100998
-
-        Reviewed by Ojan Vafai.
-
-        Currently analyze-baselines prints a list of baselines that have
-        the same checksum per line, but the format is hard to read;
-        this patch cleans up the output to print by directory instead
-        and use the same format I recently added for debugging optimize-baselines,
-        then refactors the code so that we share and adds tests for
-        analyze-baselines (which was untested).
-
-        Also, I got rid of a couple of unnecessarily-hardcoded port names,
-        and modified the baseline optimizer to log the current world when
-        optimize fails.
-
-        * Scripts/webkitpy/common/checkout/baselineoptimizer.py:
-        (BaselineOptimizer.read_results_by_directory):
-        (BaselineOptimizer.write_by_directory):
-        (BaselineOptimizer.optimize):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (OptimizeBaselines.execute):
-        (AnalyzeBaselines.__init__):
-        (AnalyzeBaselines._write):
-        (AnalyzeBaselines._analyze_baseline):
-        (AnalyzeBaselines.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (_FakeOptimizer):
-        (_FakeOptimizer.read_results_by_directory):
-        (TestAnalyzeBaselines):
-        (TestAnalyzeBaselines.setUp):
-        (TestAnalyzeBaselines.test_default):
-        (TestAnalyzeBaselines.test_missing_baselines):
-
-2012-11-02  Adam Barth  <abarth@webkit.org>
-
-        ENABLE(UNDO_MANAGER) is disabled everywhere and is not under active development
-        https://bugs.webkit.org/show_bug.cgi?id=100711
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2012-11-02  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r133303.
-        http://trac.webkit.org/changeset/133303
-        https://bugs.webkit.org/show_bug.cgi?id=101068
-
-        "Broke qt wk2 build (seems like bots fails to rerun qmake if
-        needed)" (Requested by kbalazs on #webkit).
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/DumpRenderTreeMain.cpp:
-        (main):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::open):
-        * DumpRenderTree/qt/QtInitializeTestFonts.cpp: Renamed from Source/WebCore/platform/qt/QtTestSupport.cpp.
-        (WebKit):
-        (WebKit::initializeTestFonts):
-        * DumpRenderTree/qt/QtInitializeTestFonts.h: Copied from Tools/WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp.
-        (WebKit):
-        * QtTestBrowser/QtTestBrowser.pro:
-        * QtTestBrowser/qttestbrowser.cpp:
-        (LauncherApplication::handleUserOptions):
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-        (WTR::activateFonts):
-        * WebKitTestRunner/InjectedBundle/qt/QtInitializeTestFonts.cpp: Copied from Tools/WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp.
-        * WebKitTestRunner/InjectedBundle/qt/QtInitializeTestFonts.h: Copied from Tools/WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp.
-        * WebKitTestRunner/InjectedBundle/qt/TestRunnerQt.cpp:
-        (WTR::TestRunner::platformInitialize):
-        * WebKitTestRunner/Target.pri:
-        * WebKitTestRunner/qt/main.cpp:
-        (main):
-
-2012-11-02  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt][WK2] setPlatformStrategies always asserts after r132744
-        https://bugs.webkit.org/show_bug.cgi?id=100838
-
-        Reviewed by Simon Hausmann.
-
-        Turned test runners to use the new QtTestSupport.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/DumpRenderTreeMain.cpp:
-        (main):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::open):
-        * QtTestBrowser/QtTestBrowser.pro:
-        * QtTestBrowser/qttestbrowser.cpp:
-        (LauncherApplication::handleUserOptions):
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-        (WTR::activateFonts):
-        * WebKitTestRunner/InjectedBundle/qt/QtInitializeTestFonts.cpp: Removed.
-        * WebKitTestRunner/InjectedBundle/qt/QtInitializeTestFonts.h: Removed.
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundleQt.cpp:
-        * WebKitTestRunner/InjectedBundle/qt/TestRunnerQt.cpp:
-        (WTR::TestRunner::platformInitialize): Removed the comment from here
-        because it was just lying, apparently two times. First, it is not incorrect
-        to reinitialize our font set and clear font caches, it is what the tests
-        expect. Second, the use of QRawFont has nothing to do with the font cache.
-        * WebKitTestRunner/Target.pri:
-        * WebKitTestRunner/qt/main.cpp:
-        (main):
-
-2012-11-02  Peter Beverloo  <peter@chromium.org>
-
-        Output Android's device status before running tests on the bots
-        https://bugs.webkit.org/show_bug.cgi?id=100944
-
-        Reviewed by Dirk Pranke.
-
-        This adds a new step to the build master which will be run prior to the
-        actual tests-suites on the Chromium Android tester, and soon the Chromium
-        Android Perf bot. For each attached device, it outputs the build
-        information, battery level, battery temperature and username.
-
-        The Android tester currently is very flaky, and this will help tremendously
-        in being able to figure out what's wrong with the bot.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (OutputAndroidDeviceStatus):
-        (TestFactory.__init__):
-        * BuildSlaveSupport/chromium/output-android-device-status: Added.
-        (GetAttachedDevices):
-        (AndroidDeviceStatus):
-        (AndroidDeviceStatus.__init__):
-        (AndroidDeviceStatus._run_adb_command):
-        (AndroidDeviceStatus.device_type):
-        (AndroidDeviceStatus.device_build):
-        (AndroidDeviceStatus.device_fingerprint):
-        (AndroidDeviceStatus.battery_level):
-        (AndroidDeviceStatus.battery_temperature):
-        (AndroidDeviceStatus.username):
-        (main):
-
-2012-11-02  Jocelyn Turcotte  <jocelyn.turcotte@digia.com>
-
-        [Qt] WTR: Make sure that eventSender.mouseDown sends a press event for the second press
-        https://bugs.webkit.org/show_bug.cgi?id=101033
-
-        Reviewed by Simon Hausmann.
-
-        eventSender.mouseDown doesn't work properly since r133153 where
-        MouseButtonDblClick events aren't interpreted as Press events anymore.
-        The problem is that mouseDown sends a DblClick event instead of a Press,
-        while the correct way is to send both events.
-
-        Since QQuickWebView isn't doing anything with DblClick events anymore,
-        simply send Press events all the time and let WebCore figure out
-        where the double clicks are.
-
-        * WebKitTestRunner/qt/EventSenderProxyQt.cpp:
-        (WTR::EventSenderProxy::updateClickCountForButton):
-        (WTR::EventSenderProxy::mouseDown):
-
-2012-11-02  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][WK2] Add HTTP authentication support to MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=100953
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add HTTP authentication support to MiniBrowser. An authentication
-        dialog now pops up to ask the user for credentials whenever
-        a Web site requires authentication.
-
-        * MiniBrowser/efl/main.c:
-        (auth_popup_close):
-        (on_auth_cancel):
-        (on_auth_ok):
-        (on_authentication_request):
-        (window_create):
-
-2012-11-01  Yury Semikhatsky  <yurys@chromium.org>
-
-        Memory instrumentation: do not call checkCountedObject with wrong pointers
-        https://bugs.webkit.org/show_bug.cgi?id=100958
-
-        Reviewed by Alexander Pavlov.
-
-        * TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp: test that if there
-        if there is class A derived from classes B and C and we have pointer B* to an
-        object of class A then MemoryInstrumentationClient::checkoutCountedObject won't
-        be called for B* but only for A*
-
-        Also MemoryInstrumentation implementation used in the test was refactored to
-        allow passing client as a parameter. The client implementation was extracted into
-        a top-level class MemoryInstrumentationTestClient.
-
-2012-11-01  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][WK2] Make File Chooser dialog modal in MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=100962
-
-        Reviewed by Gyuyoung Kim.
-
-        Make File Chooser dialog modal in MiniBrowser and make
-        sure it is closed and freed when its parent window is
-        closed.
-
-        * MiniBrowser/efl/main.c:
-        (close_file_picker):
-        (on_filepicker_parent_deletion):
-        (on_file_chooser_request):
-
-2012-11-01  Seonae Kim  <sunaeluv.kim@samsung.com>
-
-        [EFL][DRT] Support Geolocation
-        https://bugs.webkit.org/show_bug.cgi?id=97427
-
-        Reviewed by Gyuyoung Kim. 
-
-        Implement methods to use GeolocationClientMock in DumpRenderTree.
-        This client attaches to the page whenever a view is created.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::createView):
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        (TestRunner::setMockGeolocationPosition):
-        (TestRunner::setMockGeolocationPositionUnavailableError):
-        (TestRunner::setGeolocationPermission):
-        (TestRunner::numberOfPendingGeolocationPermissionRequests):
-
-2012-11-01  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Remove tests no longer needed after r133229.
-
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py:
-        (TestPerfTestFactory.test_inspector_test):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (test_collect_tests_with_skipped_list):
-
-2012-11-01  Nico Weber  <thakis@chromium.org>
-
-        [chromium] Try to find ninja if it's not in the path already
-        https://bugs.webkit.org/show_bug.cgi?id=100988
-
-        Reviewed by Ryosuke Niwa.
-
-        Similar to the gclient detection logic in update-webkit-chromium
-
-        * Scripts/webkitdirs.pm:
-        (buildChromiumNinja):
-
-2012-11-01  Eric Seidel  <eric@webkit.org>
-
-        Add Glenn Adams to the Contributor list
-        https://bugs.webkit.org/show_bug.cgi?id=100982
-
-        Reviewed by Adam Barth.
-
-        I CC him enough on bugs it would help me to have him listed here.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-11-01  Jer Noble  <jer.noble@apple.com>
-
-        Add Python-LLDB support for WTF::Vector types.
-        https://bugs.webkit.org/show_bug.cgi?id=100980
-
-        Reviewed by Anders Carlsson.
-
-        Add a synthetic child provider for WTF::Vector types.
-
-        * lldb/lldb_webkit.py:
-        (__lldb_init_module): Add both the summary and synthetic providers for WTF::Vector
-        (WTFVector_SummaryProvider): Wrapper around WTFVectorProvider
-        (WTFVectorProvider):
-        (WTFVectorProvider.__init__):
-        (WTFVectorProvider.num_children): Return m_size+2 children to account for synthesized children.
-        (WTFVectorProvider.get_child_index): Synthesize child indexes for each entry in the Vector.
-        (WTFVectorProvider.get_child_at_index): Synthesize children for each entry in the Vector.
-        (WTFVectorProvider.update): Retrieve state from the underlying Vector.
-        (WTFVectorProvider.has_children): Vectors always have children.
-
-2012-11-01  Zoltan Horvath  <zoltan@webkit.org>
-
-        Remove PageLoad directory entry from PerformanceTests pattern_map
-        https://bugs.webkit.org/show_bug.cgi?id=100989
-
-        Reviewed by Ryosuke Niwa.
-
-        Since we removed PageLoad directory from PerformanceTests we don't need this entry in pattern_map.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTestFactory):
-
-2012-11-01  Jer Noble  <jer.noble@apple.com>
-
-        Add LLDB-Python scripts to support WebKit data types.
-        https://bugs.webkit.org/show_bug.cgi?id=100898
-
-        Reviewed by Anders Carlsson.
-
-        Add Summary providers for common WebKit string types.
-
-        * lldb/lldb_webkit.py: Added.
-        (__lldb_init_module): Register these providers with the debugger.
-        (WTFString_SummaryProvider): Wrapper around WTFStringProvider.
-        (WTFStringImpl_SummaryProvider): Wrapper around WTFStringImplProvider.
-        (WTFAtomicString_SummaryProvider): Ditto.
-        (guess_string_length): Walk through the string looking for a null-byte(s).
-        (ustring_to_string): Walk through the string, extracting two-byte values, and concatenate them.
-        (lstring_to_string): Walk through the string, extracting byte values, and concatenate them.
-        (WTFStringImplProvider): 
-        (WTFStringImplProvider.__init__):
-        (WTFStringImplProvider.get_length): Extract the m_length variable.
-        (WTFStringImplProvider.get_data8): Extract the m_data8 variable.
-        (WTFStringImplProvider.get_data16): Extract the m_data16 variable.
-        (WTFStringImplProvider.to_string): Pass the appropriate data variable to {u,l}string_to_string.
-        (WTFStringImplProvider.is_8bit): Check the m_hashAndFlags variable.
-        (WTFStringProvider):
-        (WTFStringProvider.__init__):
-        (WTFStringProvider.stringimpl): Extract the m_impl variable.
-        (WTFStringProvider.get_length): Pass through to WTFStringImplProvider.
-        (WTFStringProvider.to_string): Ditto.
-
-2012-11-01  Peter Beverloo  <peter@chromium.org>
-
-        [Chromium-Android] Apache doesn't properly clean up ipc semaphores after a layout test run
-        https://bugs.webkit.org/show_bug.cgi?id=100950
-
-        Reviewed by Dirk Pranke.
-
-        When a test run would fail to complete due to an exception in one of
-        the workers, the HTTP server wouldn't get a chance to gracefully shut
-        down. This caused too much IPC semaphores to be left on the server,
-        causing Apache to fail to start in subsequent runs.
-
-        By unifying the Android-specific code with other ports, we no longer
-        fail to call the ChromiumPort/Base setup_test_run() and clean_up_test_run()
-        methods either. Furthermore, the number_of_servers argument for starting
-        the HTTP server is now available as well.
-
-        Because not all tests require an HTTP server, it's not guaranteed that
-        it will be started. Android depends on this, so add a new method to Port
-        and override it for Android: requires_http_server().
-
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner.py:
-        (LayoutTestRunner.run_tests):
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._run_tests):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.to.requires_http_server):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_dont_require_http_server):
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.requires_http_server):
-        (ChromiumAndroidPort.start_http_server):
-        * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:
-        (ChromiumAndroidPortTest.test_must_require_http_server):
-
-2012-11-01  Adam Roben  <aroben@webkit.org>
-
-        Crash beneath WKRelease after failed load in MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=100954
-
-        Reviewed by Sam Weinig.
-
-        There were just some simple retain/release bugs.
-
-        * MiniBrowser/mac/WK2BrowserWindowController.m:
-        (-[WK2BrowserWindowController updateTextFieldFromURL:]):
-        (-[WK2BrowserWindowController updateProvisionalURLForFrame:]):
-        Don't try to release null URLs.
-
-        (-[WK2BrowserWindowController updateCommittedURLForFrame:]): Don't
-        release a URL for which we don't have ownership.
-
-2012-10-31  Rob Buis  <rbuis@rim.com>
-
-        [BlackBerry] Fix editing/text-iterator/findString-expected.html fail
-        https://bugs.webkit.org/show_bug.cgi?id=100902
-
-        Reviewed by Yong Li.
-
-        PR 210039
-
-        Fix the test my using the Page::findString method instead of our own in-page searcher.
-        This also syncs some of the changes we did regarding String usage.
-
-        * DumpRenderTree/blackberry/DumpRenderTree.cpp:
-        (BlackBerry::WebKit::DumpRenderTree::dumpFramesAsText):
-        (BlackBerry::WebKit::dumpHistoryItem):
-        (BlackBerry::WebKit::dumpBackForwardListForWebView):
-        (BlackBerry::WebKit::DumpRenderTree::dump):
-        (BlackBerry::WebKit::DumpRenderTree::didFinishDocumentLoadForFrame):
-        (BlackBerry::WebKit::DumpRenderTree::didReceiveTitleForFrame):
-        (BlackBerry::WebKit::DumpRenderTree::runJavaScriptAlert):
-        * DumpRenderTree/blackberry/DumpRenderTreeBlackBerry.h:
-        (DumpRenderTree):
-        * DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp:
-        (TestRunner::setMockGeolocationError):
-        (TestRunner::layerTreeAsText):
-        (TestRunner::findString):
-        (TestRunner::setStorageDatabaseIdleInterval):
-
-2012-11-01  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][WK2] Add File Chooser dialog support to MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=100822
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add very basic file picker dialog to MiniBrowser so that
-        the user can select a file from the file system when
-        clicking an input element of type "file".
-
-        * MiniBrowser/efl/main.c:
-        (close_file_picker):
-        (on_filepicker_deletion):
-        (on_fileselector_done):
-        (on_file_chooser_request):
-        (window_create):
-
-2012-11-01  Yael Aharon  <yael.aharon@intel.com>
-
-        Unreviewed. Change my email address.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-11-01  Jocelyn Turcotte  <jocelyn.turcotte@digia.com>
-
-        [Qt] Double clicks/taps aren't passed down to the page
-        https://bugs.webkit.org/show_bug.cgi?id=100949
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Touch mocking shouldn't transform double click events as well,
-        this adds an extra touch update between clicks which prevents
-        double-tap detection from triggering on web pages.
-
-        Tested on the mobile version of Google maps.
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::notify):
-
-2012-10-31  Dirk Pranke  <dpranke@chromium.org>
-
-        NRWT: lint warnings don't show up by default
-        https://bugs.webkit.org/show_bug.cgi?id=100914
-
-        Reviewed by Ryosuke Niwa.
-
-        NRWT wasn't printing any warnings if you had errors in your
-        TestExpectations files; this means you would only notice this
-        with --lint-test-files, which is probably bad. I'm not sure
-        when this requested, but perhaps when we changed the
-        warnings to not be fatal if you weren't linting the files.
-
-        Now they're still not fatal, but at least we print them.
-
-        Also fix one warning message where we were printing the test name twice.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectationsModel._already_seen_better_match):
-        (TestExpectations._report_warnings):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (MiscTests.test_parse_warnings_are_logged_if_not_in_lint_mode(self): Added.
-
-2012-10-31  Terry Anderson  <tdanderson@chromium.org>
-
-        Missing stderr output when using run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=100709
-
-        Reviewed by Dirk Pranke.
-
-        Appends #EOF to the end of the stderr output only at the end of a test,
-        not possibly part-way through. This will allow all of the stderr output 
-        to appear on the results page after running run-webkit-tests.
-
-        * DumpRenderTree/chromium/TestEventPrinter.cpp:
-        (TestEventPrinter::handleTextFooter):
-        (TestEventPrinter::handleTestFooter):
-
-2012-10-30  Mark Lam  <mark.lam@apple.com>
-
-        A JSC printf (support for %J+s and %b).
-        https://bugs.webkit.org/show_bug.cgi?id=100566.
-
-        Reviewed by Michael Saboff.
-
-        Added regression tests for VMInspector::fprintf() sprintf() and snprintf().
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/JavaScriptCore: Added.
-        * TestWebKitAPI/Tests/JavaScriptCore/VMInspector.cpp: Added.
-
-2012-10-31  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        Added viewport at-rule to the CSS parser and tokenizer
-        https://bugs.webkit.org/show_bug.cgi?id=95961
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Enable CSS Device Adaptation by default on EFL.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-10-31  Terry Anderson  <tdanderson@chromium.org>
-
-        [touchadjustment] touch-links-two-finger-tap test pass incorrectly
-        https://bugs.webkit.org/show_bug.cgi?id=100619
-
-        Reviewed by Antonio Gomes.
-
-        Store the touch area when sending a GestureTwoFingerTap event.
-
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::gestureEvent):
-
-2012-10-31  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt is not killing stuck DRTs on chromium win
-        https://bugs.webkit.org/show_bug.cgi?id=100886
-
-        Unreviewed, build fix.
-
-        In the original implementation of NRWT for Chromium, we used
-        to assume that DRT would always manage to exit on its own and
-        so NRWT wouldn't attempt to kill DRT if it was stuck (this was the
-        "hung worker" problem, and meant that if DRT hung, NRWT would hang).
-
-        Eventually, we merged the chromium code with the other ports and
-        now will always try to shut down DRTs if a test times out, but as
-        part of that merge we left in a code path where we wouldn't
-        shut the driver down on windows. This was resulting in stray
-        DRTs being left around, and NRWT sometimes not exiting cleanly as
-        a result.
-
-        No unit tests added because this was a windows-only code path (hence
-        hard to test) and that is now gone.
-
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        (ServerProcess.stop):
-
-2012-10-31  Ami Fischman  <fischman@chromium.org>
-
-        [chromium] DRT and WTR should clear the cache between tests
-        https://bugs.webkit.org/show_bug.cgi?id=93195
-
-        Reviewed by Tony Chang.
-
-        This change makes chromium DRT match the GTK+, Qt, and EFL ports.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetTestController): added a WebCache::clear() call to achieve the goal of the bug.
-
-2012-10-31  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix typos introduced in r133061.
-        Unreviewed, build fix.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results.js:
-        * Scripts/webkitpy/tool/servers/reflectionhandler.py:
-        (ReflectionHandler._serve_file):
-
-2012-10-31  Dirk Pranke  <dpranke@chromium.org>
-
-        garden-o-matic should work for local results
-        https://bugs.webkit.org/show_bug.cgi?id=100805
-
-        Reviewed by Adam Barth.
-
-        This is the next step in making garden-o-matic replace
-        'webkit-patch rebaseline-server' and be able to deal with local
-        results. garden-o-matic now accepts a '--results-directory' option
-        that will point to a layout-test-results directory. At the moment
-        this will only work if you are also filtering to a single bot/
-        platform at a time (we can't handle multiple bots' worth of local
-        results, but that is a logical next step).
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results.js:
-        * Scripts/webkitpy/tool/commands/gardenomatic.py:
-        (GardenOMatic.__init__):
-        (GardenOMatic.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (AbstractRebaseliningCommand):
-        (RebaselineTest.__init__):
-        (RebaselineTest._rebaseline_test):
-        (RebaselineTest._rebaseline_test_and_update_expectations):
-        (RebaselineTest.execute):
-        (AbstractParallelRebaselineCommand._rebaseline_commands):
-        (AbstractParallelRebaselineCommand._rebaseline):
-        (RebaselineJson.__init__):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (_BaseTestCase):
-        (test_rebaseline_updates_expectations_file):
-        (test_rebaseline_does_not_include_overrides):
-        (test_rebaseline_test):
-        (test_rebaseline_test_and_print_scm_changes):
-        (test_rebaseline_and_copy_test):
-        (test_rebaseline_and_copy_test_no_existing_result):
-        (test_rebaseline_and_copy_test_with_lion_result):
-        (test_rebaseline_and_copy_no_overwrite_test):
-        (test_rebaseline_test_internal_with_move_overwritten_baselines_to):
-        (TestRebaselineJson.test_rebaseline_all):
-        (TestRebaselineJson.test_rebaseline_debug):
-        (TestRebaselineJson.test_move_overwritten):
-        (TestRebaselineJson.test_no_optimize):
-        (TestRebaselineExpectations.test_rebaseline_expectations):
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        (GardeningHTTPRequestHandler.rebaselineall):
-        (GardeningHTTPRequestHandler):
-        (GardeningHTTPRequestHandler.localresult):
-        * Scripts/webkitpy/tool/servers/reflectionhandler.py:
-        (ReflectionHandler.do_POST):
-        (ReflectionHandler):
-        (ReflectionHandler.do_HEAD):
-
-2012-10-31  Dirk Pranke  <dpranke@chromium.org>
-
-        garden-o-matic should support gardening a single port and specifying how to deal with overwritten baselines
-        https://bugs.webkit.org/show_bug.cgi?id=100563
-
-        Reviewed by Ojan Vafai.
-
-        This patch starts the process of making garden-o-matic more useful for
-        bringing up a single new port in two ways. The goal is to fully
-        obsolete webkit-patch rebaseline-server.
-        
-        First, it adds support for the --platform arguments to garden-o-matic
-        (so that the UI will default to the right cluster of bots), and if the platform arg
-        specifies a single bot, filters the results down to just that bot.
-
-        Second, it adds support for --move-overwritten-baselines and changes
-        the implementation of the move_overwritten_baselines setting in builders.py
-        so that it is only used if this flag is provided.
-
-        Future patches will make it possible to use local copies of the build
-        results (rather than going to the bots) and other optimizations to make
-        it faster to review lots of changes on a single bot.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-        (.):
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        * Scripts/webkitpy/tool/commands/gardenomatic.py:
-        (GardenOMatic):
-        (GardenOMatic.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (AbstractRebaseliningCommand):
-        (AbstractRebaseliningCommand.__init__):
-        (RebaselineTest):
-        (OptimizeBaselines):
-        (AnalyzeBaselines):
-        (AbstractParallelRebaselineCommand):
-        (AbstractParallelRebaselineCommand._rebaseline_commands):
-        (AbstractParallelRebaselineCommand._rebaseline):
-        (Rebaseline.__init__):
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        (GardeningHTTPServer.url):
-        (GardeningHTTPRequestHandler.rebaselineall):
-
-2012-10-31  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: fix running modules and classes on the command line
-        https://bugs.webkit.org/show_bug.cgi?id=100787
-
-        Reviewed by Eric Seidel.
-
-        Handling modules and classes are arguments on the command line
-        was broken due to the way we were parsing test names looking for
-        parallel and serial tests.
-
-        * Scripts/webkitpy/test/main.py:
-        (Tester._test_names):
-        (_Loader):
-        * Scripts/webkitpy/test/main_unittest.py:
-        (TestStubs.integration_test_empty):
-        (TestStubs):
-        (TestStubs.serial_test_empty):
-        (TestStubs.serial_integration_test_empty):
-        (TesterTest._find_test_names):
-        (TesterTest):
-        (TesterTest.test_individual_names_are_not_run_twice):
-        (TesterTest.test_integration_tests_are_not_found_by_default):
-        (TesterTest.test_integration_tests_are_found):
-
-2012-10-31  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: refactor common command line arguments for --platform, rebaseline commands
-        https://bugs.webkit.org/show_bug.cgi?id=100800
-
-        Reviewed by Ojan Vafai.
-
-        This change shuffles around how we share command-line options
-        between NRWT and the various webkit-patch rebaselining commands.
-
-        There are no functional changes in this patch but it should make
-        things clearer and will be useful in a couple of upcoming patches.
-
-        * Scripts/webkitpy/layout_tests/port/__init__.py:
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        (platform_options):
-        (configuration_options):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-        * Scripts/webkitpy/tool/commands/queries.py:
-        (PrintExpectations.__init__):
-        (PrintBaselines.__init__):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (AbstractRebaseliningCommand):
-        (AbstractRebaseliningCommand.__init__):
-        (RebaselineTest.__init__):
-        (OptimizeBaselines.__init__):
-        (AnalyzeBaselines.__init__):
-        (AbstractParallelRebaselineCommand):
-        (RebaselineJson.__init__):
-        (RebaselineExpectations.__init__):
-        (Rebaseline.__init__):
-
-2012-10-31  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [NRWT] Xvfb driver is leaking application cache files
-        https://bugs.webkit.org/show_bug.cgi?id=100864
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Application Cache looks for XDG_CACHE_HOME which is now
-        prepended with DUMPRENDERTREE_TEMP and cleaned up when
-        the test worker finishes his job.
-
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver.py:
-        (XvfbDriver._start):
-
-2012-10-31  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [EFL] DRT doesn't clean up after itself
-        https://bugs.webkit.org/show_bug.cgi?id=100346
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        The test driver exports an environment variable DUMPRENDERTREE_TEMP
-        which is used by both DRT and WTR as the folder for storing icons,
-        databases, application cache, etc, overriding the default XDG_* path.
-
-        We don't need to create these folders because in fact, they are never
-        used and also never cleaned. Things created inside DUMPRENDERTREE_TEMP
-        are automatically removed after the test run.
-
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort.setup_environ_for_server):
-
-2012-10-31  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [WTR] WebKitTestRunner is not cleaning up the icon database
-        https://bugs.webkit.org/show_bug.cgi?id=100678
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        The icon database was not being set to the temporary folder created for
-        the test runner by the test driver, which is removed automatically
-        after the run.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-
-2012-10-31  Mike West  <mkwst@chromium.org>
-
-        Script run from an isolated world should bypass a page's CSP.
-        https://bugs.webkit.org/show_bug.cgi?id=97398
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        (DRTTestRunner::setIsolatedWorldContentSecurityPolicy):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-            Adding a mechanism to set the Content Security Policy for an
-            isolated world to Chromium's testRunner.
-
-2012-10-31  Michał Pakuła vel Rutka  <m.pakula@samsung.com>
-
-        [EFL][DRT] EventSender requires contextClick implementation
-        https://bugs.webkit.org/show_bug.cgi?id=86091
-
-        Reviewed by Gyuyoung Kim.
-
-        Add contextClick for DumpRenderTreeEventSender basing on WebKit GTK
-        implementation.
-
-        * DumpRenderTree/efl/EventSender.cpp:
-        (getMenuItemTitleCallback):
-        (setMenuItemTitleCallback):
-        (menuItemClickCallback):
-        (contextClickCallback):
-
-2012-10-30  Sudarsana Nagineni  <sudarsana.nagineni@intel.com>
-
-        [WTR] Memory leaks in TestWebKitAPI::didReceiveMessageFromInjectedBundle()
-        https://bugs.webkit.org/show_bug.cgi?id=100770
-
-        Reviewed by Sam Weinig.
-
-        Adopt strings returned by WKStringCreateWithUTF8CString() in
-        didReceiveMessageFromInjectedBundle() to avoid memory leaks.
-
-        * TestWebKitAPI/Tests/WebKit2/WillSendSubmitEvent.cpp:
-        (TestWebKitAPI::didReceiveMessageFromInjectedBundle):
-
-2012-10-30  Kangil Han  <kangil.han@samsung.com>
-
-        Fix broken python unit test
-        https://bugs.webkit.org/show_bug.cgi?id=100810
-
-        Reviewed by Dirk Pranke.
-
-        BUG 100755 has broken python unit test, e.g. assertion fail, since it modified baseline path.
-        Therefore, this patch fixes it.
-
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (TestRebaselineTest.test_baseline_directory):
-
-2012-10-30  Dirk Pranke  <dpranke@chromium.org>
-
-        webkit-patch rebaseline*: add more helpful logging
-        https://bugs.webkit.org/show_bug.cgi?id=100562
-
-        Reviewed by Ojan Vafai.
-
-        This change rewires the garden-o-matic and rebaseline* commands
-        in webkit-patch so that --verbose propagates through all the
-        subcommand invocations properly, and cleans up the logging so
-        that you can actually tell what is happening. For now, we
-        leave all of the logging at the logging.DEBUG level, which
-        means that it gets mixed in will all the other debug logging noise
-        and is harder to read, but we'll fix that in subsequent patches.
-
-        * Scripts/webkitpy/common/checkout/baselineoptimizer.py:
-        (BaselineOptimizer._platform):
-        (BaselineOptimizer._move_baselines):
-        (BaselineOptimizer.optimize):
-        * Scripts/webkitpy/tool/commands/gardenomatic.py:
-        (GardenOMatic.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineTest._copy_existing_baseline):
-        (RebaselineTest._rebaseline_test):
-        (OptimizeBaselines._optimize_baseline):
-        (OptimizeBaselines.execute):
-        (AbstractParallelRebaselineCommand._run_webkit_patch):
-        (AbstractParallelRebaselineCommand._rebaseline_commands):
-        (AbstractParallelRebaselineCommand._files_to_add):
-        (AbstractParallelRebaselineCommand._optimize_baselines):
-        (AbstractParallelRebaselineCommand._rebaseline):
-        (RebaselineExpectations._add_tests_to_rebaseline_for_port):
-        (Rebaseline.execute):
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        (GardeningHTTPServer.__init__):
-        (GardeningHTTPRequestHandler):
-        (GardeningHTTPRequestHandler._run_webkit_patch):
-        (GardeningHTTPRequestHandler.rebaselineall):
-
-2012-10-30  Dirk Pranke  <dpranke@chromium.org>
-
-        clean up tests for webkit-patch rebaseline* commands
-        https://bugs.webkit.org/show_bug.cgi?id=100793
-
-        Reviewed by Ojan Vafai.
-
-        The tests in rebaseline_unittest.py had a lot of code cloning,
-        and many of the tests tested whether things passed or failed by
-        looking at what was logged instead of what was actually done;
-        as a result the tests were kinda hard to understand and harder to
-        maintain.
-
-        This patch adds hooks to MockWeb() and MockExecutive() so we can
-        directly see which URLs were fetched and calls invoked, and
-        then reworks all of the unit tests to be easier to follow and
-        maintain and not sensitive to the logging. Also there were a
-        couple of tests that were redundant.
-
-        There are no functional changes in this patch, and I verified that
-        the coverage remains the same.
-
-        * Scripts/webkitpy/common/net/web_mock.py:
-        (MockWeb.__init__):
-        (MockWeb.get_binary):
-        * Scripts/webkitpy/common/system/executive_mock.py:
-        (MockExecutive.__init__):
-        (MockExecutive.run_command):
-        (MockExecutive.kill_all):
-        (MockExecutive):
-        (MockExecutive.kill_process):
-        (MockExecutive.popen):
-        (MockExecutive.run_in_parallel):
-        (MockExecutive2):
-        (MockExecutive2.__init__):
-        (MockExecutive2.run_command):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (_BaseTestCase):
-        (_BaseTestCase.setUp):
-        (_BaseTestCase._expand):
-        (_BaseTestCase._read):
-        (_BaseTestCase._write):
-        (_BaseTestCase._zero_out_test_expectations):
-        (TestRebaselineTest):
-        (TestRebaselineTest.test_baseline_directory):
-        (TestRebaselineTest.test_rebaseline_updates_expectations_file_noop):
-        (test_rebaseline_updates_expectations_file):
-        (test_rebaseline_does_not_include_overrides):
-        (test_rebaseline_test):
-        (test_rebaseline_test_and_print_scm_changes):
-        (test_rebaseline_and_copy_test):
-        (test_rebaseline_and_copy_test_no_existing_result):
-        (test_rebaseline_and_copy_test_with_lion_result):
-        (test_rebaseline_and_copy_no_overwrite_test):
-        (test_rebaseline_test_internal_with_move_overwritten_baselines_to):
-        (TestRebaselineJson):
-        (TestRebaselineJson.setUp):
-        (TestRebaselineJson.tearDown):
-        (TestRebaselineJson.test_rebaseline_all):
-        (TestRebaselineJson.test_rebaseline_debug):
-        (TestRebaseline):
-        (TestRebaseline.test_tests_to_update):
-        (TestRebaseline.test_rebaseline):
-        (TestRebaseline.test_rebaseline.rebaseline_stub):
-        (TestRebaselineExpectations):
-        (TestRebaselineExpectations.setUp):
-        (TestRebaselineExpectations.test_rebaseline_expectations):
-        (TestRebaselineExpectations.test_rebaseline_expectations_noop):
-        (TestRebaselineExpectations.disabled_test_overrides_are_included_correctly):
-
-2012-10-30  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: fix import of coverage so that it works in a clean install
-        https://bugs.webkit.org/show_bug.cgi?id=100780
-
-        Reviewed by Tony Chang.
-
-        The coverage module is written so that the parent directory needs
-        to be in PYTHONPATH; work around that ...
-
-        * Scripts/webkitpy/test/main_unittest.py:
-        (TestStubs.test_empty):
-        (TesterTest.test_individual_names_are_not_run_twice):
-        (TesterTest):
-        (TesterTest.integration_test_coverage_works):
-        * Scripts/webkitpy/thirdparty/__init__.py:
-        (AutoinstallImportHook._install_coverage):
-
-2012-10-30  Anders Carlsson  <andersca@apple.com>
-
-        Another build fix.
-
-        * TestWebKitAPI/Tests/WebKit2/WebArchive.cpp:
-        (TestWebKitAPI::didReceiveMessageFromInjectedBundle):
-
-2012-10-30  Anders Carlsson  <andersca@apple.com>
-
-        Build fix.
-
-        * WebKitTestRunner/mac/EventSenderProxy.mm:
-        (WTR::EventSenderProxy::mouseScrollBy):
-
-2012-10-30  Rick Byers  <rbyers@chromium.org>
-
-        [touchadjustment] touch-links-longpress tests passes incorrectly
-        https://bugs.webkit.org/show_bug.cgi?id=96810
-
-        Reviewed by Antonio Gomes.
-
-        Add support for suppling width/height information for longpress
-        gesture (as for other gestures like tapDown) for the purposes
-        of touch adjustment.
-
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::gestureEvent):
-
-2012-10-29  Anders Carlsson  <andersca@apple.com>
-
-        Build WebKit as C++11 on Mac
-        https://bugs.webkit.org/show_bug.cgi?id=100720
-
-        Reviewed by Daniel Bates.
-
-        * DumpRenderTree/mac/Configurations/Base.xcconfig:
-        * MiniBrowser/Configurations/Base.xcconfig:
-        * TestWebKitAPI/Configurations/Base.xcconfig:
-        * WebKitTestRunner/Configurations/Base.xcconfig:
-        Add CLANG_CXX_LANGUAGE_STANDARD=gnu++0x.
-
-2012-10-30  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][JHBUILD] Update EFL libraries to v1.7.1 stable release
-        https://bugs.webkit.org/show_bug.cgi?id=100759
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Update Bump EFL libraries to the new stable release (v1.7.1)
-        in JHBuild to pull the latest bug fixes.
-
-        * efl/jhbuild.modules:
-
-2012-10-29  Anders Carlsson  <andersca@apple.com>
-
-        String::createCFString should return a RetainPtr
-        https://bugs.webkit.org/show_bug.cgi?id=100419
-
-        Reviewed by Andreas Kling.
-
-        Update callers of String::createCFString.
-
-        * WebKitTestRunner/InjectedBundle/mac/InjectedBundlePageMac.mm:
-        (WTR::InjectedBundlePage::platformDidStartProvisionalLoadForFrame):
-
-2012-10-30  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [WK2][WTR] WebKitTestRunner needs testRunner.queueLoadHTMLString
-        https://bugs.webkit.org/show_bug.cgi?id=100747
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Added testRunner.queueLoadHTMLString implementation.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::queueLoadHTMLString):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (InjectedBundle):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::queueLoadHTMLString):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-        * WebKitTestRunner/WorkQueueManager.cpp:
-        (WTR::WorkQueueManager::queueLoadHTMLString):
-        (WTR):
-        * WebKitTestRunner/WorkQueueManager.h:
-        (WorkQueueManager):
-
-2012-10-30  Kangil Han  <kangil.han@samsung.com>
-
-        [EFL] Baseline search path should consider both WK1 and WK2 on layout test.
-        https://bugs.webkit.org/show_bug.cgi?id=100755
-
-        Reviewed by Gyuyoung Kim.
-
-        Current implementation doesn't consider WK1 case in baseline search path.
-        Therefore, this patch fixes it.
-
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort.default_baseline_search_path):
-
-2012-10-30  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [QT][DRT] Remove unneeded testRunner.setMediaType() implementation
-        https://bugs.webkit.org/show_bug.cgi?id=100740
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Removed unneeded testRunner.setMediaType() implementation, as tests use
-        cross-platform window.internals.settings.setMediaTypeOverride instead.
-
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunner):
-
-2012-10-30  Kangil Han  <kangil.han@samsung.com>
-
-        [EFL][DRT] Bitmap should show whole view area.
-        https://bugs.webkit.org/show_bug.cgi?id=100642
-
-        Reviewed by Gyuyoung Kim.
-
-        css sticky position test cases haven't been passed even though implementation has been landed by BUG 95182.
-        This is because current create bitmap implementation refers to geometry position that considers scroll movement even though
-        paint does it. Therefore, this patch always reflects current view size and remove duplicated graphic operation to dump correct bitmap image.
-
-        * DumpRenderTree/efl/PixelDumpSupportEfl.cpp:
-        (createBitmapContextFromWebView):
-
-2012-10-30  Jinwoo Song  <jinwoo7.song@samsung.com>
-
-        [EFL] Refactor tooltip callback signal in WebKit1
-        https://bugs.webkit.org/show_bug.cgi?id=100571
-
-        Reviewed by Gyuyoung Kim.
-
-        Separate tooltip callback signal into 'tooltip,text,set'
-        and 'tooltip,text,unset' to be consistent with WebKit2.
-
-        * EWebLauncher/main.c:
-        (on_tooltip_text_set):
-        (on_tooltip_text_unset):
-        (browserCreate):
-
-2012-10-29  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed, rolling out r132819.
-        http://trac.webkit.org/changeset/132819
-        https://bugs.webkit.org/show_bug.cgi?id=100388
-
-        It made layout testing 40% slower and storage tests assert
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        (WebCore::DumpRenderTree::dump):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        (DumpRenderTree):
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        (TestRunner::reset):
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunner):
-
-2012-10-29  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] TestRunner needs to compile ChromiumCurrentTime and ChromiumThreading in components build
-        https://bugs.webkit.org/show_bug.cgi?id=100658
-
-        Reviewed by Tony Chang.
-
-        Before, this was compiled into DumpRenderTree. I also dropped the
-        include_dirs and dependencies block as TestRunner already has them.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-10-29  Takashi Sakamoto  <tasak@google.com>
-
-        Unreviewed. Adding myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-10-28  Mark Rowe  <mrowe@apple.com>
-
-        Simplify Xcode configuration settings that used to vary between OS versions.
-
-        Reviewed by Dan Bernstein.
-
-        * DumpRenderTree/mac/Configurations/Base.xcconfig:
-        * DumpRenderTree/mac/Configurations/DebugRelease.xcconfig:
-        * MiniBrowser/Configurations/Base.xcconfig:
-        * MiniBrowser/Configurations/DebugRelease.xcconfig:
-        * TestWebKitAPI/Configurations/Base.xcconfig:
-        * TestWebKitAPI/Configurations/DebugRelease.xcconfig:
-        * WebKitTestRunner/Configurations/Base.xcconfig:
-        * WebKitTestRunner/Configurations/DebugRelease.xcconfig:
-
-2012-10-28  Mark Rowe  <mrowe@apple.com>
-
-        Remove references to unsupported OS and Xcode versions.
-
-        Reviewed by Anders Carlsson.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/mac/Configurations/Base.xcconfig:
-        * DumpRenderTree/mac/Configurations/CompilerVersion.xcconfig: Removed.
-        * DumpRenderTree/mac/Configurations/DebugRelease.xcconfig:
-        * MiniBrowser/Configurations/Base.xcconfig:
-        * MiniBrowser/Configurations/CompilerVersion.xcconfig: Removed.
-        * MiniBrowser/Configurations/DebugRelease.xcconfig:
-        * TestWebKitAPI/Configurations/Base.xcconfig:
-        * TestWebKitAPI/Configurations/CompilerVersion.xcconfig: Removed.
-        * TestWebKitAPI/Configurations/DebugRelease.xcconfig:
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * WebKitTestRunner/Configurations/Base.xcconfig:
-        * WebKitTestRunner/Configurations/CompilerVersion.xcconfig: Removed.
-        * WebKitTestRunner/Configurations/DebugRelease.xcconfig:
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-
-2012-10-26  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: change non-verbose log format for webkit-patch
-        https://bugs.webkit.org/show_bug.cgi?id=100561
-
-        Reviewed by Ojan Vafai.
-
-        Logging the module name and the log level is annoying and nearly useless.
-        For starters, this change removes that unless you are doing verbose/
-        debug logging. In the future we should split out the concepts of
-        verbose and debug logging (like we did in test-webkitpy and
-        run-webkit-tests) so that you could get this in debug logging.
-
-        * Scripts/webkitpy/common/system/logutils.py:
-        (_default_handlers):
-        (configure_logging):
-        * Scripts/webkitpy/common/system/logutils_unittest.py:
-        (ConfigureLoggingTest.test_info_message):
-        (ConfigureLoggingTest):
-        (ConfigureLoggingTest.test_debug_message):
-        (ConfigureLoggingTest.test_two_messages):
-        (ConfigureLoggingVerboseTest):
-        (ConfigureLoggingVerboseTest._logging_level):
-        (ConfigureLoggingVerboseTest.test_info_message):
-        (ConfigureLoggingVerboseTest.test_debug_message):
-        (ConfigureLoggingCustomLevelTest.test_logged_message):
-
-2012-10-29  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [CMAKE] Add TestNetscapePlugIn/Tests/NPRuntimeCallsWithNullNPP.cpp to CMakeLists.txt
-        https://bugs.webkit.org/show_bug.cgi?id=100681
-
-        Reviewed by Anders Carlsson.
-
-        Add TestNetscapePlugIn/Tests/NPRuntimeCallsWithNullNPP.cpp to CMake since
-        it is needed by plugins/npruntime/npruntime-calls-with-null-npp.html
-        layout test.
-
-        * DumpRenderTree/TestNetscapePlugIn/CMakeLists.txt:
-
-2012-10-29  Allan Sandfeld Jensen  <allan.jensen@digia.com>
-
-        [Qt] Flaky security tests
-        https://bugs.webkit.org/show_bug.cgi?id=100388
-
-        Reviewed by Jocelyn Turcotte.
-
-        Disable text dumping and load a blank URL to ensure the documentLoader is cleared 
-        before we start dumping text for the new page. Otherwise messages from the old page
-        may end up in the text output of the new test.
-
-        This matches what WebKitTestRunner does, and reuses the Qt code for waiting for flag.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::runUntil):
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        (WebCore::DumpRenderTree::finishedResetting):
-        (WebCore::DumpRenderTree::dump):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        (DumpRenderTree):
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        (TestRunner::resetDumping):
-        (TestRunner::reset):
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunner):
-
-2012-10-29  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2][WKTR] Enable Shadow DOM at runtime if compiled with SHADOW_DOM support
-        https://bugs.webkit.org/show_bug.cgi?id=100668
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Enable Shadow DOM functionality at run time in WebKitTestRunner
-        if compiled with SHADOW_DOM flag set. This is needed to run
-        the Shadow DOM layout tests.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-
-2012-10-29  Yael Aharon  <yael.aharon@intel.com>
-
-        [EFL][AC] Fix bugs preventing us from running layout tests with AC turned on
-        https://bugs.webkit.org/show_bug.cgi?id=100598
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Make sure to use opengl_x11 engine when AC is turned on and X11 is in use.
-        We cannot create a gl context otherwise.
-
-        * MiniBrowser/efl/main.c:
-        (elm_main):
-        * WebKitTestRunner/efl/PlatformWebViewEfl.cpp:
-        (WTR::initEcoreEvas):
-        * DumpRenderTree/efl/DumpRenderTree.cpp:
-        (initEcoreEvas):
-        * EWebLauncher/efl/main.c:
-        (windowCreate):
-
-2012-10-29  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [EFL][WK2] REGRESSION(r132342): fast/events/frame-tab-focus.html fails
-        https://bugs.webkit.org/show_bug.cgi?id=100646
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * WebKitTestRunner/efl/PlatformWebViewEfl.cpp:
-        (WTR::PlatformWebView::focus): Improve the check we perform to
-        decide whether the focus should be taken out of the view before
-        focusing it again so that we do not unnecessarily unfocus it and
-        cause blur/focus events to be triggered. Instead of just verifying
-        if the Evas_Object representing the view has focus, use the WK C
-        API to check that the currently focused frame is not the main
-        frame.
-
-2012-10-29  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r132782.
-        http://trac.webkit.org/changeset/132782
-        https://bugs.webkit.org/show_bug.cgi?id=100653
-
-        It made 400+ tests fail and 180 tests flakey on Qt (Requested
-        by Ossy on #webkit).
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-
-2012-10-29  Allan Sandfeld Jensen  <allan.jensen@digia.com>
-
-        [Qt] Flaky security tests
-        https://bugs.webkit.org/show_bug.cgi?id=100388
-
-        Reviewed by Jocelyn Turcotte.
-
-        Disable text output and load a blank URL to ensure the documentLoader is cleared
-        before we start dumping text for the new page. Otherwise messages from the old page
-        may end up in the text output of the new test.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-
-2012-10-29  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] remove remaining usages of webkit_support from the TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=100344
-
-        Reviewed by Adam Barth.
-
-        The most important part is to not rely on calling out to gdk/X11 to
-        translate keycodes to hardware keycodes, as this is not possible inside
-        the sandbox.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (WebKit):
-        (webkit_support):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestDelegate):
-        * DumpRenderTree/chromium/TestRunner/src/CppVariant.h:
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::doDragDrop):
-        (WebTestRunner::EventSender::updateClickCountForButton):
-        (WebTestRunner::EventSender::mouseDown):
-        (WebTestRunner::EventSender::mouseUp):
-        (WebTestRunner::EventSender::mouseMoveTo):
-        (WebTestRunner::EventSender::keyDown):
-        (WebTestRunner::EventSender::replaySavedEvents):
-        (WebTestRunner::EventSender::contextClick):
-        (WebTestRunner::EventSender::beginDragWithFiles):
-        (WebTestRunner::EventSender::sendCurrentTouchEvent):
-        (WebTestRunner::EventSender::handleMouseWheel):
-        (WebTestRunner::EventSender::gestureEvent):
-        (WebTestRunner::EventSender::gestureFlingCancel):
-        (WebTestRunner::EventSender::gestureFlingStart):
-        * DumpRenderTree/chromium/TestRunner/src/KeyCodeMapping.cpp: Added.
-        (WebTestRunner):
-        (WebTestRunner::NativeKeyCodeForWindowsKeyCode):
-        * DumpRenderTree/chromium/TestRunner/src/KeyCodeMapping.h: Copied from Tools/DumpRenderTree/chromium/TestRunner/src/TestRunner.h.
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestDelegate.h:
-        (TestDelegate):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestInterfaces::Internal):
-        (WebTestRunner::WebTestInterfaces::Internal::getCurrentTimeInMillisecond):
-        (WebTestRunner):
-        (WebTestRunner::WebTestInterfaces::Internal::getAbsoluteWebStringFromUTF8Path):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::getCurrentTimeInMillisecond):
-        (WebViewHost::getAbsoluteWebStringFromUTF8Path):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-10-29  Jonathan Dong  <jonathan.dong@torchmobile.com.cn>
-
-        Unreviewed. Add jonathan.dong@torchmobile.com.cn as a committer.
-        https://bugs.webkit.org/show_bug.cgi?id=100629
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-10-27  Dan Bernstein  <mitz@apple.com>
-
-        REAL_PLATFORM_NAME build setting is no longer needed
-        https://bugs.webkit.org/show_bug.cgi?id=100587
-
-        Reviewed by Mark Rowe.
-
-        Removed the definition of REAL_PLATFORM_NAME and replaced references to it with references
-        to PLATFORM_NAME.
-
-        * DumpRenderTree/mac/Configurations/Base.xcconfig:
-        * DumpRenderTree/mac/Configurations/CompilerVersion.xcconfig:
-        * DumpRenderTree/mac/Configurations/DebugRelease.xcconfig:
-        * MiniBrowser/Configurations/Base.xcconfig:
-        * MiniBrowser/Configurations/CompilerVersion.xcconfig:
-        * TestWebKitAPI/Configurations/Base.xcconfig:
-        * TestWebKitAPI/Configurations/CompilerVersion.xcconfig:
-        * WebKitTestRunner/Configurations/Base.xcconfig:
-        * WebKitTestRunner/Configurations/CompilerVersion.xcconfig:
-        * WebKitTestRunner/Configurations/DebugRelease.xcconfig:
-
-2012-10-26  Anders Carlsson  <andersca@apple.com>
-
-        Crash when making NPRuntime calls with a null NPP pointer
-        https://bugs.webkit.org/show_bug.cgi?id=100569
-
-        Reviewed by Darin Adler.
-
-        Add new NPRuntimeCallsWithNullNPP plug-in test.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-        (PluginTest::NPN_ReleaseVariantValue):
-        (PluginTest::netscapeFuncs):
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.h:
-        (PluginTest):
-        * DumpRenderTree/TestNetscapePlugIn/Tests/NPRuntimeCallsWithNullNPP.cpp: Added.
-        (NPRuntimeCallsWithNullNPP):
-        (NPRuntimeCallsWithNullNPP::NPRuntimeCallsWithNullNPP):
-        (NPRuntimeCallsWithNullNPP::NPP_New):
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * GNUmakefile.am:
-
-2012-10-26  Dominic Mazzoni  <dmazzoni@google.com>
-
-        AX: Notification should be sent when accessibilityIsIgnored changes
-        https://bugs.webkit.org/show_bug.cgi?id=99547
-
-        Reviewed by Chris Fleizach.
-
-        Add additional accessibility notifications.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::postAccessibilityNotification):
-
-2012-10-25  Roger Fong  <roger_fong@apple.com>
-
-        Get rid of (<X%) failing output for old-run-webkit-tests.
-        https://bugs.webkit.org/show_bug.cgi?id=100447
-
-        Reviewed by Jessie Berlin.
-
-        Not a particularly useful piece of information. It's pretty much never above 1%.
-        new-run-webkit-tests does not output this either.
-
-        * Scripts/old-run-webkit-tests:
-        (printResults):
-
-2012-10-26  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        Build bot gives incorrect link to EWS build failure
-        https://bugs.webkit.org/show_bug.cgi?id=100436
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-        (MockCommitQueue.__init__):
-        (MockCommitQueue.command_failed): Return incremental failure_status_id
-        (CommitQueueTaskTest.test_red_tree_patch_rejection): Check failure_status_id
-        * Scripts/webkitpy/tool/bot/patchanalysistask.py:
-        (PatchAnalysisTask._test_patch): Use the failure_status_id of test with patch when test without patch fails and test with patch has unexpected failures.
-
-2012-10-26  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        webkitpy: Pass the `Listen' Apache directive from webkitpy, not the httpd.conf files.
-        https://bugs.webkit.org/show_bug.cgi?id=98602
-
-        Reviewed by Dirk Pranke.
-
-        Unify all the different `Listen' directives present in the several
-        httpd.conf files we have in LayoutTests/http/conf. For one, we
-        were already passing `Listen 127.0.0.1:8000' via webkitpy before,
-        and opening the other ports from the conf files.
-
-        The configuration files differed mostly in the way they handled
-        IPV6 ports. Some of them did not listen to IPV6 ports because the
-        systems which used them sometimes did not have IPV6 support. The
-        `http_server_supports_ipv6' method has been added to Port to
-        address that. cygwin, on its turn, still seems to use Apache 1.3,
-        which does not support IPV6 at all; the newly-added method has a
-        special case for that. Plus, perform a socket.getaddrinfo() call
-        the same way Apache itself does so we are sure we only enable IPV6
-        when setting that up in the httpd server is not going to fail.
-
-        * Scripts/webkitpy/common/system/platforminfo_mock.py:
-        (MockPlatformInfo.is_cygwin):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.baseline_version_dir):
-        (Port.to.start_websocket_server):
-        (Port.to):
-        (Port.to.http_server_supports_ipv6):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_http_server_supports_ipv6):
-        (PortTest.test_build_path):
-        * Scripts/webkitpy/layout_tests/servers/apache_http_server.py:
-        (LayoutTestApacheHttpd):
-        (LayoutTestApacheHttpd.__init__):
-
-2012-10-26  David Barton  <dbarton@mathscribe.com>
-
-        Unreviewed. Update my IRC nickname to a registered one.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-10-26  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Fix the LLInt build on Windows
-        https://bugs.webkit.org/show_bug.cgi?id=97648
-
-        Reviewed by Tor Arne Vestbø.
-
-        Added BIN_EXTENSION variable - similar to automake - that expands to .exe as suffix for
-        executable programs on Windows. Empty otherwise. Also added support for force_build_all
-        to allow overriding us disabling build_all for TEMPLATE = app.
-
-        * qmake/mkspecs/features/default_pre.prf:
-
-2012-10-26  Xiaobo Wang  <xbwang@torchmobile.com.cn>
-
-        [BlackBerry] Support pixel tests for BlackBerry DRT
-        https://bugs.webkit.org/show_bug.cgi?id=100210
-
-        Reviewed by Rob Buis.
-
-        (The following 2 files are missed in previous patch(r132582), adding them
-        again.)
-
-        * DumpRenderTree/blackberry/build: Added.
-        * DumpRenderTree/blackberry/src.pro: Added.
-        Adds 2 files for building ImageDiff, by Christopher Wells.
-
-2012-10-26  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        Add feature flags for CSS Device Adaptation
-        https://bugs.webkit.org/show_bug.cgi?id=95960
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-10-26  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r132552.
-        http://trac.webkit.org/changeset/132552
-        https://bugs.webkit.org/show_bug.cgi?id=100486
-
-        Makes typeahead tests crash in debug. (Requested by pfeldman
-        on #webkit).
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestDelegate):
-        * DumpRenderTree/chromium/TestRunner/src/CppVariant.h:
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::doDragDrop):
-        (WebTestRunner::EventSender::updateClickCountForButton):
-        (WebTestRunner::EventSender::mouseDown):
-        (WebTestRunner::EventSender::mouseUp):
-        (WebTestRunner::EventSender::mouseMoveTo):
-        (WebTestRunner::EventSender::keyDown):
-        (WebTestRunner::EventSender::replaySavedEvents):
-        (WebTestRunner::EventSender::contextClick):
-        (WebTestRunner::EventSender::beginDragWithFiles):
-        (WebTestRunner::EventSender::sendCurrentTouchEvent):
-        (WebTestRunner::EventSender::handleMouseWheel):
-        (WebTestRunner::EventSender::gestureEvent):
-        (WebTestRunner::EventSender::gestureFlingCancel):
-        (WebTestRunner::EventSender::gestureFlingStart):
-        * DumpRenderTree/chromium/TestRunner/src/KeyCodeMapping.cpp: Removed.
-        * DumpRenderTree/chromium/TestRunner/src/KeyCodeMapping.h: Removed.
-        * DumpRenderTree/chromium/TestRunner/src/TestDelegate.h:
-        (TestDelegate):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        (WebKit):
-        (webkit_support):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestInterfaces::Internal):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-10-26  Xiaobo Wang  <xbwang@torchmobile.com.cn>
-
-        [BlackBerry] Support pixel tests for BlackBerry DRT
-        https://bugs.webkit.org/show_bug.cgi?id=100210
-
-        Reviewed by Rob Buis.
-
-        The implementation is based on the patch from Christopher Wells.
-
-        * DumpRenderTree/blackberry/DumpRenderTree.cpp:
-        (BlackBerry::WebKit::DumpRenderTree::DumpRenderTree):
-        (BlackBerry::WebKit::DumpRenderTree::runTest):
-        (BlackBerry::WebKit::DumpRenderTree::runCurrentTest):
-        (BlackBerry::WebKit::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        (BlackBerry::WebKit::DumpRenderTree::runTests):
-        (BlackBerry::WebKit::DumpRenderTree::dump):
-        * DumpRenderTree/blackberry/DumpRenderTreeBlackBerry.h:
-        (DumpRenderTree):
-
-        * DumpRenderTree/blackberry/PNGImageEncoder.cpp:
-        (BGRAtoRGBA):
-        (encodeBitmapToPNG):
-        * DumpRenderTree/blackberry/PNGImageEncoder.h:
-        The changes to PNGImageEncoder files are from master_40, patched by Tyler
-        Abbott and Rob Buis.
-
-        * DumpRenderTree/blackberry/PixelDumpSupportBlackBerry.cpp:
-        (createBitmapContextFromWebView):
-        (computeMD5HashStringForBitmapContext):
-        (printPNG):
-        (dumpBitmap):
-        * DumpRenderTree/blackberry/PixelDumpSupportBlackBerry.h:
-        (BitmapContext::createByAdoptingData):
-        (BitmapContext::~BitmapContext):
-        (BitmapContext):
-        (BitmapContext::BitmapContext):
-
-        * DumpRenderTree/blackberry/build: Added.
-        * DumpRenderTree/blackberry/src.pro: Added.
-        Adds 2 files for building ImageDiff, by Christopher Wells.
-
-2012-10-25  Min Qin  <qinmin@chromium.org>
-
-        Fix a layout test crash if a TestWebkitPlugin is put inside an iframe
-        https://bugs.webkit.org/show_bug.cgi?id=100406
-
-        Reviewed by Adam Barth.
-
-        Resize the context with an empty rect will cause a gl_error in gles2_cmd_decoder.cc.
-        Don't paint the plugin if m_rect is empty.
-
-        * DumpRenderTree/chromium/TestWebPlugin.cpp:
-        (TestWebPlugin::updateGeometry):
-
-2012-10-25  Jinwoo Song  <jinwoo7.song@samsung.com>
-
-        [EFL][WK2] Display tooltip in MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=99322
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Display tooltip in MiniBrowser using elm_object_tooltip_text_set().
-
-        * MiniBrowser/efl/main.c:
-        (on_tooltip_text_set):
-        (on_tooltip_text_unset):
-        (window_create):
-
-2012-10-25  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] remove remaining usages of webkit_support from the TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=100344
-
-        Reviewed by Adam Barth.
-
-        The most important part is to not rely on calling out to gdk/X11 to
-        translate keycodes to hardware keycodes, as this is not possible inside
-        the sandbox.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (WebKit):
-        (webkit_support):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestDelegate):
-        * DumpRenderTree/chromium/TestRunner/src/CppVariant.h:
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::doDragDrop):
-        (WebTestRunner::EventSender::updateClickCountForButton):
-        (WebTestRunner::EventSender::mouseDown):
-        (WebTestRunner::EventSender::mouseUp):
-        (WebTestRunner::EventSender::mouseMoveTo):
-        (WebTestRunner::EventSender::keyDown):
-        (WebTestRunner::EventSender::replaySavedEvents):
-        (WebTestRunner::EventSender::contextClick):
-        (WebTestRunner::EventSender::beginDragWithFiles):
-        (WebTestRunner::EventSender::sendCurrentTouchEvent):
-        (WebTestRunner::EventSender::handleMouseWheel):
-        (WebTestRunner::EventSender::gestureEvent):
-        (WebTestRunner::EventSender::gestureFlingCancel):
-        (WebTestRunner::EventSender::gestureFlingStart):
-        * DumpRenderTree/chromium/TestRunner/src/KeyCodeMapping.cpp: Added.
-        (WebTestRunner):
-        (WebTestRunner::NativeKeyCodeForWindowsKeyCode):
-        * DumpRenderTree/chromium/TestRunner/src/KeyCodeMapping.h: Copied from Tools/DumpRenderTree/chromium/TestRunner/src/TestRunner.h.
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestDelegate.h:
-        (TestDelegate):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestInterfaces::Internal):
-        (WebTestRunner::WebTestInterfaces::Internal::getCurrentTimeInMillisecond):
-        (WebTestRunner):
-        (WebTestRunner::WebTestInterfaces::Internal::getAbsoluteWebStringFromUTF8Path):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::getCurrentTimeInMillisecond):
-        (WebViewHost::getAbsoluteWebStringFromUTF8Path):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-10-25  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r132514.
-        http://trac.webkit.org/changeset/132514
-        https://bugs.webkit.org/show_bug.cgi?id=100440
-
-        "Broke chromium content_browsertests AccessibilityAriaMenu
-        AccessibilityInputRange AccessibilityListMarkers" (Requested
-        by scheib on #webkit).
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::postAccessibilityNotification):
-
-2012-10-25  Dirk Pranke  <dpranke@chromium.org>
-
-        rwt --lint-test-files doesn't handle the cascade properly
-        https://bugs.webkit.org/show_bug.cgi?id=100315
-
-        Reviewed by Ojan Vafai.
-
-        We were only linting the first file in each port's list of
-        expectations.
-
-        This change pushes more of the logic for linting files into
-        the TestExpectations classes themselves, but it's still a bit of
-        a hack. A better solution will require splitting out the actual
-        parsing of the files from the TestExpectations constructor.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectations):
-        (TestExpectations.__init__):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (parse_exp):
-        (SkippedTests.check):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (lint):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (LintTest.test_all_configurations.FakePort.__init__):
-        (LintTest.test_all_configurations):
-        (LintTest.test_lint_test_files__errors):
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-        (TestExpectationsChecker.check_test_expectations):
-
-2012-10-25  Zan Dobersek  <zandobersek@gmail.com>
-
-        Unreviewed GTK gardening.
-
-        Skipping the atspi-basic-hierarchy test case in the TestWebKitAccessibility
-        WebKit2 API test since the test is currently failing.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner):
-
-2012-10-25  Dominic Mazzoni  <dmazzoni@google.com>
-
-        AX: Notification should be sent when accessibilityIsIgnored changes
-        https://bugs.webkit.org/show_bug.cgi?id=99547
-
-        Reviewed by Chris Fleizach.
-
-        Add additional accessibility notifications.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::postAccessibilityNotification):
-
-2012-10-25  Dominik Röttsches  <dominik.rottsches@intel.com>
-
-        Conditionalize XHR timeout support
-        https://bugs.webkit.org/show_bug.cgi?id=100356
-
-        Reviewed by Adam Barth.
-
-        Adding XHR_TIMEOUT feature in perl and qmake files.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2012-10-25  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Unreviewed. Update my contact info.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-10-25  Terry Anderson  <tdanderson@chromium.org>
-
-        Unreviewed. Adding myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-10-25  Zeno Albisser  <zeno@webkit.org>
-
-        [Qt] Adjust library name in webkitdirs.pm after r131300.
-        https://bugs.webkit.org/show_bug.cgi?id=100376
-
-        The library was renamed from QtWebKit to QtWebKitWidgets.
-        run-launcher was still looking for QtWebKit.
-
-        Reviewed by Simon Hausmann.
-
-        * Scripts/webkitdirs.pm:
-        (builtDylibPathForName):
-
-2012-10-22  Mikhail Naganov  <mnaganov@chromium.org>
-
-        [Chromium] Add supportMultipleWindows setting, needed for Android
-        https://bugs.webkit.org/show_bug.cgi?id=99716
-
-        Reviewed by Adam Barth.
-
-        Add supportMultipleWindows settings for reusing the same view when
-        opening popups. This is required for emulating the behavior of
-        Android WebView. Adding into WebCore, as other ports might want to
-        use this setting in the future.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::overridePreference):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-        (WebPreferences):
-
-2012-10-25  Sudarsana Nagineni  <sudarsana.nagineni@intel.com>
-
-        [EFL][WK2] JavaScript popups are not focused when opened
-        https://bugs.webkit.org/show_bug.cgi?id=100354
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Move focus to the JavaScript popups when opened so that the key events
-        are forwarded to the popups instead of web view.
-
-        * MiniBrowser/efl/main.c:
-        (on_javascript_alert):
-        (on_javascript_confirm):
-        (on_javascript_prompt):
-
-2012-10-25  Eugene Klyuchnikov  <eustas.bug@gmail.com>
-
-        Web Inspector: Fix "check-inspector-strings" script and fix localized strings.
-        https://bugs.webkit.org/show_bug.cgi?id=100090
-
-        Reviewed by Vsevolod Vlasov.
-
-        Script "check-inspector-strings" seems to be broken.
-        Fixed it, refined search algorithm.
-
-        * Scripts/check-inspector-strings: Fixed and refined.
-
-2012-10-24  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: fix a couple of minor crashing issues under cygwin
-        https://bugs.webkit.org/show_bug.cgi?id=100309
-
-        Reviewed by Ojan Vafai.
-
-        Cygwin was crashing on a null object reference and then
-        an oserror in kill().
-
-        * Scripts/webkitpy/common/system/executive.py:
-        (Executive.kill_process):
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        (ServerProcess.stop):
-
-2012-10-24  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: truncate meter lines properly on windows
-        https://bugs.webkit.org/show_bug.cgi?id=100062
-
-        Reviewed by Tony Chang.
-
-        This change adds the code to figure out the terminal width
-        on windows (it was already there for Unixen) and moves it
-        to a platform-specific object.
-
-        * Scripts/webkitpy/common/system/platforminfo.py:
-        (PlatformInfo.terminal_width):
-        * Scripts/webkitpy/common/system/platforminfo_mock.py:
-        (MockPlatformInfo.total_bytes_memory):
-        (MockPlatformInfo):
-        (MockPlatformInfo.terminal_width):
-        * Scripts/webkitpy/layout_tests/views/metered_stream.py:
-        (MeteredStream.__init__):
-        (MeteredStream.number_of_columns):
-        (MeteredStream.flush):
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (Printer.__init__):
-        (Printer._test_status_line):
-
-2012-10-24  Dirk Pranke  <dpranke@chromium.org>
-
-        tweak debug logging in webkit-patch optimize-baselines
-        https://bugs.webkit.org/show_bug.cgi?id=100294
-
-        Reviewed by Ojan Vafai.
-
-        This changes the logging to print out the baselines found
-        (and their checksums) even when we don't do anything.
-
-        * Scripts/webkitpy/common/checkout/baselineoptimizer.py:
-        (BaselineOptimizer.optimize):
-
-2012-10-24  Sailesh Agrawal  <sail@chromium.org>
-
-        Incorrect keycodes for numpad /, -, +, .
-        https://bugs.webkit.org/show_bug.cgi?id=99188
-
-        Reviewed by Tony Chang.
-
-        Add key mappings for all numpad keys.
-
-        * DumpRenderTree/mac/EventSendingController.mm:
-        (KeyMappingEntry):
-        (-[EventSendingController keyDown:withModifiers:withLocation:]): Added all numpad keys.
-
-2012-10-24  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: clean up references to Skipped files
-        https://bugs.webkit.org/show_bug.cgi?id=100045
-
-        Reviewed by Ojan Vafai.
-
-        Since they are no longer used or needed ...
-
-        * Scripts/webkitpy/layout_tests/port/apple.py:
-        (ApplePort._generate_all_test_configurations):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.skipped_layout_tests):
-        (Port.expectations_files):
-        (Port._wk2_port_name):
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort):
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        (MacTest.test_default_timeout_ms):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (test_expectations_files):
-        (test_expectations_files.platform_dirs):
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort.__init__):
-
-2012-10-24  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] Use include paths relative to Source/ in the TestRunner's public API
-        https://bugs.webkit.org/show_bug.cgi?id=100079
-
-        Reviewed by Adam Barth.
-
-        For a inside-chromium build, we usually don't add the WebKit API paths
-        as include paths, so including files by name only does not work.
-
-        Eventually we might want to move to a model where all includes are
-        relative to Source/, so we're using that here already now.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/chromium/TestRunner/public/WebEventSender.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-
-2012-10-24  Ojan Vafai  <ojan@chromium.org>
-
-        Show an error when there are no completed builds in the past 20 runs
-        https://bugs.webkit.org/show_bug.cgi?id=100266
-
-        Reviewed by Dimitri Glazkov.
-
-        Right now we get a cryptic JS error in the console when loading the gtk port. This at least gives an error in
-        the notification stream. We should probably tweak this UI to make it so we can make
-        errors in the notification stream stick out (e.g. make the text red).
-
-        We should also consider making the number of runs to load dynamic (e.g. if 20 runs don't work,
-        try 40).
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/garden-o-matic.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results_unittests.js:
-
-2012-10-24  Ian Vollick  <vollick@chromium.org>
-
-        [chromium] Explicitly disable accelerated animations in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=100241
-
-        Reviewed by Adrienne Walker.
-
-        Disable accelerated animations by default in DRT.        
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::setAcceleratedAnimationEnabled):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell):
-
-2012-10-24  Jocelyn Turcotte  <jocelyn.turcotte@digia.com>
-
-        [Qt] Move the QQuickWebViewExperimental pointer to QQuickWebViewPrivate
-        https://bugs.webkit.org/show_bug.cgi?id=100253
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::WrapperWindow::handleStatusChanged):
-        Use QQuickWebView::experimental rather than creating a new instance.
-
-2012-10-24  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [EFL] run-webkit-tests writes garbage on stderr when running on Xvfb
-        https://bugs.webkit.org/show_bug.cgi?id=100243
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        These errors generate noise on the reports and in some cases, like when
-        running perf tests, makes the test fail. By using Xext, we can add a
-        dummy handler to ignore these errors.
-
-        We could have added this handler on the top level EWK API, but that
-        would be intrusive and could override handlers defined by the user.
-
-        * WebKitTestRunner/PlatformEfl.cmake:
-        * WebKitTestRunner/efl/main.cpp:
-        (dummyExtensionErrorHandler):
-        (main):
-
-2012-10-24  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed. Fix the GTK+ build.
-
-        * TestWebKitAPI/GNUmakefile.am: Add GTK_FLAGS to
-        libTestWebKitAPIMain and webcore cflags to TestGtk.
-
-2012-10-24  Zeno Albisser  <zeno@webkit.org>
-
-        Implement GraphicsSurface for Windows.
-        https://bugs.webkit.org/show_bug.cgi?id=98147
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * qmake/mkspecs/features/features.prf:
-                Activate GraphicsSurface on windows in case opengles2 (ANGLE)
-                is available in QT_CONFIG.
-
-2012-10-24  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [EFL][WK2] fast/repaint/delete-into-nested-block.html and fast/repaint/4776765.html are flaky
-        https://bugs.webkit.org/show_bug.cgi?id=100010
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Force the main view to receive focus even if Evas already
-        considers it to be focused.
-
-        It might happen that a different frame is focused by a page and
-        the focus change notification does not reach Evas. When another
-        test is run, the main frame is then not considered to be focused
-        by WebCore, and things such as focus rings are not drawn as
-        expected.
-
-        * WebKitTestRunner/efl/PlatformWebViewEfl.cpp:
-        (WTR::PlatformWebView::focus):
-
-2012-10-24  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r132333.
-        http://trac.webkit.org/changeset/132333
-        https://bugs.webkit.org/show_bug.cgi?id=100234
-
-        Crashes many tests on the EFL-WK2 bot. (Requested by rakuco on
-        #webkit).
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-        * WebKitTestRunner/efl/TestControllerEfl.cpp:
-        (WTR::TestController::platformInitializeContext):
-
-2012-10-24  Dongwoo Joshua Im  <dw.im@samsung.com>
-
-        [GTK] Fix build break - undefined reference to 'gtk_init'
-        https://bugs.webkit.org/show_bug.cgi?id=100221
-
-        Unreviewed build fix.
-
-        GTK_LIBS is needed for TestWTF.
-
-        * TestWebKitAPI/GNUmakefile.am:
-
-2012-10-24  Grzegorz Czajkowski  <g.czajkowski@samsung.com>
-
-        WebKitTestRunner needs to turn on 'setContinuousSpellCheckingEnabled'
-        https://bugs.webkit.org/show_bug.cgi?id=93611
-
-        Reviewed by Hajime Morita.
-
-        WebKitTestRunner enables spelling feature to pass the layout tests from editing/spelling.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-        Enables spelling by WebKit2 C API.
-
-        * WebKitTestRunner/efl/TestControllerEfl.cpp:
-        (WTR::TestController::platformInitializeContext):
-        Attaches WKTextChecker's client and sets default language for WebKit2-EFL port.
-
-2012-10-24  Mario Sanchez Prada  <mario@webkit.org>
-
-        [WK2] [GTK] TestWebKitAccessibility is not being run
-        https://bugs.webkit.org/show_bug.cgi?id=100102
-
-        Reviewed by Carlos Garcia Campos.
-
-        Removed wrong early return in _start_accessibility_daemons().
-
-        * Scripts/run-gtk-tests:
-        (TestRunner._lookup_atspi2_binary): Removed wrong line.
-
-2012-10-24  Noel Gordon  <noel.gordon@gmail.com>
-
-        [chromium] Plumb DRT WebkitShouldRespectImageOrientation through to page settings 
-        https://bugs.webkit.org/show_bug.cgi?id=100197
-
-        Reviewed by Kent Tamura.
-
-        fast/images/exif-orientation.html and fast/images/exif-orientation-css.html require a DRT
-        WebkitShouldRespectImageOrientation preference.  Add the chromium implementation for this
-        preference and plumb it through to page settings.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::overridePreference): Update the tests WebkitShouldRespectImageOrientation
-        setting in DRT prefs.
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset): Disable the preference before and after each test.
-        (WebPreferences::applyTo): Apply the preference to the page settings of each test.
-        * DumpRenderTree/chromium/WebPreferences.h:
-        (WebPreferences):
-
-2012-10-23  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] TestWebKitAPI/TestWebKit2 and TestWebKitAPI/TestGtk link to the installed libs
-        https://bugs.webkit.org/show_bug.cgi?id=100134
-
-        Reviewed by Martin Robinson.
-
-        Do not share the LDADD variable among TestWTF, TestWebKit2 and
-        TestGtk.
-
-        * TestWebKitAPI/GNUmakefile.am:
-
-2012-10-23  Kihong Kwon  <kihong.kwon@samsung.com>
-
-        Unreviewed. Adding myself as committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-10-23  Dan Bernstein  <mitz@apple.com>
-
-        Tools changes for <rdar://problem/2966974> [mac] Kerning and ligatures are not enabled by default
-        https://bugs.webkit.org/show_bug.cgi?id=100188
-
-        Reviewed by Sam Weinig.
-
-        Disable kerning and ligatures by default when running the tests.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues): Set a value of NO for the
-        WebKitKerningAndLigaturesEnabledByDefault user default.
-        * WebKitTestRunner/mac/main.mm:
-        (main): Register a value of NO for the WebKitKerningAndLigaturesEnabledByDefault user
-        default.
-
-2012-10-23  Simon Fraser  <simon.fraser@apple.com>
-
-        Allow tests to run with a tile cache, and optionally dump the tile cache via layerTreeAsText()
-        https://bugs.webkit.org/show_bug.cgi?id=100159
-
-        Reviewed by Tim Horton.
-
-        Make WebKitTestRunner use a WKView with a tile cache for tests run in a directory
-        whose path includes "tiled-drawing". It does this by passing around a WKDictionary 
-        of options, and if the current PlatformWebView doesn't support those options, it will
-        create a new one.
-
-        * WebKitTestRunner/PlatformWebView.h:
-        (PlatformWebView): Add a WKDictionaryRef options dictionary argument.
-        (WTR::PlatformWebView::viewSupportsOptions): Returns true if the view
-        supports the options in the WKDictionaryRef.
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize): Call createWebViewWithOptions() with
-        no options in the normal case.
-        (WTR::TestController::createWebViewWithOptions): Moved code into this fuction
-        so we can call it in two places.
-        (WTR::TestController::ensureViewSupportsOptions): If the current view
-        doesn't support the given options, throw it away and makea  new one that does.
-        * WebKitTestRunner/TestController.h:
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::shouldUseTiledDrawing): Return true if the directory contains "tiled-drawing".
-        (WTR::updateTiledDrawingForCurrentTest): Tell the TestController to check whether
-        the view supports the given options. No-op for non-Mac platforms.
-        (WTR::TestInvocation::invoke): Call updateTiledDrawingForCurrentTest().
-        * WebKitTestRunner/efl/PlatformWebViewEfl.cpp:
-        (WTR::PlatformWebView::PlatformWebView): New constructor parameter.
-        * WebKitTestRunner/gtk/PlatformWebViewGtk.cpp:
-        (WTR::PlatformWebView::PlatformWebView):  New constructor parameter.
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (-[TestRunnerWKView initWithFrame:contextRef:pageGroupRef:useTiledDrawing:]):
-        (-[TestRunnerWKView _shouldUseTiledDrawingArea]): Subclass the WKView so we can return
-        a custom value from this method.
-        (WTR::PlatformWebView::PlatformWebView):
-        (WTR::PlatformWebView::viewSupportsOptions):
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::PlatformWebView): New constructor parameter.
-        * WebKitTestRunner/win/PlatformWebViewWin.cpp:
-        (WTR::PlatformWebView::PlatformWebView): New constructor parameter.
-
-2012-10-23  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r132276.
-        http://trac.webkit.org/changeset/132276
-        https://bugs.webkit.org/show_bug.cgi?id=100189
-
-        It broke the Qt-WK2 build intentionally (Requested by
-        Ossy_night on #webkit).
-
-        * WebKitTestRunner/PlatformWebView.h:
-        (PlatformWebView):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-        * WebKitTestRunner/TestController.h:
-        (TestController):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR):
-        (WTR::TestInvocation::invoke):
-        * WebKitTestRunner/efl/PlatformWebViewEfl.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-        * WebKitTestRunner/gtk/PlatformWebViewGtk.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (WTR::PlatformWebView::PlatformWebView):
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-        * WebKitTestRunner/win/PlatformWebViewWin.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-
-2012-10-23  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK][Soup] Implement the default authentication dialog via WebCoreSupport
-        https://bugs.webkit.org/show_bug.cgi?id=99351
-
-        Reviewed by Carlos Garcia Campos.
-
-        We no longer need to turn off the soup authentication dialog soup feature,
-        because it's not installed.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (setDefaultsToConsistentStateValuesForTesting): Don't turn off the feature any longer.
-
-2012-10-23  Simon Fraser  <simon.fraser@apple.com>
-
-        Allow tests to run with a tile cache, and optionally dump the tile cache via layerTreeAsText()
-        https://bugs.webkit.org/show_bug.cgi?id=100159
-
-        Reviewed by Tim Horton.
-
-        Make WebKitTestRunner use a WKView with a tile cache for tests run in a directory
-        whose path includes "tiled-drawing". It does this by passing around a WKDictionary 
-        of options, and if the current PlatformWebView doesn't support those options, it will
-        create a new one.
-
-        * WebKitTestRunner/PlatformWebView.h:
-        (PlatformWebView): Add a WKDictionaryRef options dictionary argument.
-        (WTR::PlatformWebView::viewSupportsOptions): Returns true if the view
-        supports the options in the WKDictionaryRef.
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize): Call createWebViewWithOptions() with
-        no options in the normal case.
-        (WTR::TestController::createWebViewWithOptions): Moved code into this fuction
-        so we can call it in two places.
-        (WTR::TestController::ensureViewSupportsOptions): If the current view
-        doesn't support the given options, throw it away and makea  new one that does.
-        * WebKitTestRunner/TestController.h:
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::shouldUseTiledDrawing): Return true if the directory contains "tiled-drawing".
-        (WTR::updateTiledDrawingForCurrentTest): Tell the TestController to check whether
-        the view supports the given options. No-op for non-Mac platforms.
-        (WTR::TestInvocation::invoke): Call updateTiledDrawingForCurrentTest().
-        * WebKitTestRunner/efl/PlatformWebViewEfl.cpp:
-        (WTR::PlatformWebView::PlatformWebView): New constructor parameter.
-        * WebKitTestRunner/gtk/PlatformWebViewGtk.cpp:
-        (WTR::PlatformWebView::PlatformWebView):  New constructor parameter.
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (-[TestRunnerWKView initWithFrame:contextRef:pageGroupRef:useTiledDrawing:]):
-        (-[TestRunnerWKView _shouldUseTiledDrawingArea]): Subclass the WKView so we can return
-        a custom value from this method.
-        (WTR::PlatformWebView::PlatformWebView):
-        (WTR::PlatformWebView::viewSupportsOptions):
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::PlatformWebView): New constructor parameter.
-        * WebKitTestRunner/win/PlatformWebViewWin.cpp:
-        (WTR::PlatformWebView::PlatformWebView): New constructor parameter.
-
-2012-10-23  David Barton  <dbarton@mathscribe.com>
-
-        [MathML] Symbol font uses greek letters for roman ones on linux and Windows
-        https://bugs.webkit.org/show_bug.cgi?id=99921
-
-        Reviewed by Eric Seidel.
-
-        Enable the STIXSizeOneSym font for testing.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (allowedFontFamilySet):
-        * WebKitTestRunner/InjectedBundle/mac/ActivateFonts.mm:
-        (WTR::allowedFontFamilySet):
-
-2012-10-23  Tony Chang  <tony@chromium.org>
-
-        [chromium] Chromium window build system does not rebuild correctly when enabling/disabling a feature
-        https://bugs.webkit.org/show_bug.cgi?id=38926
-
-        Reviewed by Eric Seidel.
-
-        Remove hack for clobbering build when features.gypi changes. Now that
-        Chromium requires VS2010 or newer, this bug has gone away.
-
-        * Scripts/update-webkit:
-
-2012-10-23  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] remove the const qualifier from WebTestDelegate::printMessage
-        https://bugs.webkit.org/show_bug.cgi?id=100082
-
-        Reviewed by Adam Barth.
-
-        There's no reason the method should be const, and indeed for
-        content_shell we want to send an IPC which is a non-const operation.
-
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestDelegate):
-        * DumpRenderTree/chromium/TestRunner/src/TestDelegate.h:
-        (TestDelegate):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestInterfaces::Internal):
-        (WebTestRunner::WebTestInterfaces::Internal::printMessage):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::printMessage):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-10-23  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Add support for resolution media query
-        https://bugs.webkit.org/show_bug.cgi?id=99077
-
-        Reviewed by Antti Koivisto.
-
-        Add support for the RESOLUTION_MEDIA_QUERY feature flag.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2012-10-23  Bruno de Oliveira Abinader  <bruno.abinader@basyskom.com>
-
-        Adding myself to commiters.py
-        https://bugs.webkit.org/show_bug.cgi?id=100122
-
-        Unreviewed update to commiters.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-10-23  Timothy Hatcher  <timothy@apple.com>
-
-        Unreviewed watchlist change to monitor Inspector IDLs.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-10-23  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [WK2] [WTR] WebKitTestRunner needs testRunner.queueForwardNavigation
-        https://bugs.webkit.org/show_bug.cgi?id=99700
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Implemented testRunner.queueForwardNavigation, made little refactoring in Work Queue
-        to obviate code duplication.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::queueBackNavigation):
-        (WTR):
-        (WTR::InjectedBundle::queueForwardNavigation):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (InjectedBundle):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::queueForwardNavigation):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-        * WebKitTestRunner/WorkQueueManager.cpp:
-        (NavigationItem):
-        (WTR::NavigationItem::NavigationItem):
-        (WTR::NavigationItem::invoke):
-        (WTR):
-        (WTR::WorkQueueManager::queueBackNavigation):
-        (WTR::WorkQueueManager::queueForwardNavigation):
-        * WebKitTestRunner/WorkQueueManager.h:
-        (WorkQueueManager):
-
-2012-10-23  Simon Hausmann  <simon.hausmann@digia.com>
-
-        Unreviewed trivial Qt build fix: Fix build without USE_3D_GRAPHICS
-
-        Disable USE_GRAPHICS_SURFACE if we don't have USE_3D_GRAPHICS because
-        GraphicsSurface.h needs GraphicsContext3D.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-10-23  Simon Pena  <spena@igalia.com>
-
-        Unreviewed. Adding myself as committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-10-22  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] Move the call to RegisterIsolatedFileSystem to the WebTestDelegate interface
-        https://bugs.webkit.org/show_bug.cgi?id=100048
-
-        Reviewed by Adam Barth.
-
-        The call needs to be done outside of the sandbox.
-
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestDelegate):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::beginDragWithFiles):
-        * DumpRenderTree/chromium/TestRunner/src/TestDelegate.h:
-        (TestDelegate):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestInterfaces::Internal):
-        (WebTestRunner::WebTestInterfaces::Internal::registerIsolatedFileSystem):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::registerIsolatedFileSystem):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-10-22  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: remove unneeded debug messages from find_files()
-        https://bugs.webkit.org/show_bug.cgi?id=100041
-
-        Reviewed by Adam Barth.
-
-        This routine gets called all the time when loading the virtual
-        suites, and the debug messages were spamming me.
-
-        * Scripts/webkitpy/common/find_files.py:
-        (_normalized_find):
-
-2012-10-22  Tony Chang  <tony@chromium.org>
-
-        [chromium] Add Mac 10.7 Debug bot since it's on the waterfall
-        https://bugs.webkit.org/show_bug.cgi?id=100028
-
-        Reviewed by Eric Seidel.
-
-        garden-o-matic can't baseline without this entry.
-
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-
-2012-10-22  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] introduce WebTask to the TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=99964
-
-        Reviewed by Adam Barth.
-
-        I'm also removing the dependency on webkit_support, and instead go
-        through the WebTestDelegate interface.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/DRTDevToolsAgent.cpp:
-        * DumpRenderTree/chromium/DRTDevToolsAgent.h:
-        (DRTDevToolsAgent::taskList):
-        * DumpRenderTree/chromium/DRTDevToolsClient.cpp:
-        * DumpRenderTree/chromium/DRTDevToolsClient.h:
-        (DRTDevToolsClient::taskList):
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (InvokeCallbackTask::InvokeCallbackTask):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner::taskList):
-        (DRTTestRunner::WorkQueue::taskList):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (RTCSessionDescriptionRequestSuccededTask::RTCSessionDescriptionRequestSuccededTask):
-        (RTCSessionDescriptionRequestFailedTask::RTCSessionDescriptionRequestFailedTask):
-        (RTCStatsRequestSucceededTask::RTCStatsRequestSucceededTask):
-        (RTCVoidRequestTask::RTCVoidRequestTask):
-        (StringDataTask::StringDataTask):
-        (CharPtrDataTask::CharPtrDataTask):
-        (DataChannelReadyStateTask::DataChannelReadyStateTask):
-        (RTCPeerConnectionReadyStateTask::RTCPeerConnectionReadyStateTask):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.h:
-        (MockWebRTCPeerConnectionHandler):
-        (MockWebRTCPeerConnectionHandler::taskList):
-        * DumpRenderTree/chromium/MockWebSpeechInputController.cpp:
-        (MockWebSpeechInputController::SpeechTask::SpeechTask):
-        * DumpRenderTree/chromium/MockWebSpeechInputController.h:
-        (MockWebSpeechInputController::taskList):
-        (MockWebSpeechInputController):
-        * DumpRenderTree/chromium/MockWebSpeechRecognizer.cpp:
-        * DumpRenderTree/chromium/MockWebSpeechRecognizer.h:
-        (MockWebSpeechRecognizer::taskList):
-        (MockWebSpeechRecognizer):
-        (MockWebSpeechRecognizer::StepTask::StepTask):
-        * DumpRenderTree/chromium/Task.cpp: Copied from Tools/DumpRenderTree/chromium/TestRunner/src/Task.cpp.
-        (WebTestRunner):
-        (WebTestRunner::invokeTask):
-        (TaskWrapper):
-        (WebTestRunner::TaskWrapper::TaskWrapper):
-        (WebTestRunner::TaskWrapper::~TaskWrapper):
-        (WebTestRunner::TaskWrapper::Run):
-        (postTask):
-        (postDelayedTask):
-        * DumpRenderTree/chromium/Task.h: Copied from Tools/DumpRenderTree/chromium/TestRunner/src/TestRunner.h.
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/public/WebTask.h: Renamed from Tools/DumpRenderTree/chromium/TestRunner/src/Task.h.
-        (WebTestRunner):
-        (WebTask):
-        (WebTaskList):
-        (WebMethodTask):
-        (WebTestRunner::WebMethodTask::WebMethodTask):
-        (WebTestRunner::WebMethodTask::~WebMethodTask):
-        (WebTestRunner::WebMethodTask::run):
-        (WebTestRunner::WebMethodTask::cancel):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestRunner):
-        (WebTestDelegate):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::scheduleAsynchronousClick):
-        (WebTestRunner::KeyDownTask::KeyDownTask):
-        (WebTestRunner::EventSender::scheduleAsynchronousKeyDown):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.h:
-        (WebTestRunner::EventSender::taskList):
-        (EventSender):
-        * DumpRenderTree/chromium/TestRunner/src/TestDelegate.h:
-        (WebTestRunner):
-        (TestDelegate):
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h:
-        * DumpRenderTree/chromium/TestRunner/src/WebTask.cpp: Renamed from Tools/DumpRenderTree/chromium/TestRunner/src/Task.cpp.
-        (WebTestRunner):
-        (WebTestRunner::WebTask::WebTask):
-        (WebTestRunner::WebTask::~WebTask):
-        (WebTestRunner::WebTaskList::WebTaskList):
-        (WebTestRunner::WebTaskList::~WebTaskList):
-        (WebTestRunner::WebTaskList::registerTask):
-        (WebTestRunner::WebTaskList::unregisterTask):
-        (WebTestRunner::WebTaskList::revokeAll):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestInterfaces::Internal):
-        (WebTestRunner::WebTestInterfaces::Internal::postTask):
-        (WebTestRunner):
-        (WebTestRunner::WebTestInterfaces::Internal::postDelayedTask):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::initialize):
-        * DumpRenderTree/chromium/WebUserMediaClientMock.cpp:
-        (UserMediaRequestTask::UserMediaRequestTask):
-        * DumpRenderTree/chromium/WebUserMediaClientMock.h:
-        (WebUserMediaClientMock::taskList):
-        (WebUserMediaClientMock):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::postTask):
-        (WebViewHost::postDelayedTask):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-        (WebViewHost::taskList):
-        (WebViewHost::HostMethodTask::HostMethodTask):
-
-2012-10-22  Ojan Vafai  <ojan@chromium.org>
-
-        Update flakiness dashboard to match the state of the builders.
-        * TestResultServer/static-dashboards/builders.js:
-        (isChromiumDepsGTestRunner):
-        Broaden the filter since Chromium naming scheme is not consistent.
-        (loadBuildersList):
-        The main Chromium master now only runs builders, no tests.
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        Remove test suites that no longer run on any of these masters.
-
-2012-10-22  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] add a method for printing message to the WebTestDelegate
-        https://bugs.webkit.org/show_bug.cgi?id=99960
-
-        Reviewed by Adam Barth.
-
-        When using the TestRunner library from the content_shell, we can't print
-        message directly but need to send them to the browser process.
-
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h:
-        (WebTestDelegate):
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityControllerChromium.cpp:
-        (WebTestRunner::AccessibilityController::fallbackCallback):
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityControllerChromium.h:
-        (WebTestRunner::AccessibilityController::setDelegate):
-        (AccessibilityController):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::EventSender::dumpFilenameBeingDragged):
-        * DumpRenderTree/chromium/TestRunner/src/GamepadController.cpp:
-        (GamepadController::connect):
-        (GamepadController::disconnect):
-        (GamepadController::setId):
-        (GamepadController::setButtonCount):
-        (GamepadController::setButtonData):
-        (GamepadController::setAxisCount):
-        (GamepadController::setAxisData):
-        (GamepadController::fallbackCallback):
-        * DumpRenderTree/chromium/TestRunner/src/TestDelegate.h:
-        (TestDelegate):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        (TestInterfaces::~TestInterfaces):
-        (TestInterfaces::setDelegate):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp:
-        (WebTestInterfaces::Internal):
-        (WebTestRunner::WebTestInterfaces::Internal::printMessage):
-        (WebTestRunner):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::didBeginEditing):
-        (WebViewHost::lastContextMenuData):
-        (WebViewHost::clearContextMenuData):
-        (WebViewHost::setEditCommand):
-        (WebViewHost::clearEditCommand):
-        (WebViewHost::fillSpellingSuggestionList):
-        (WebViewHost::setGamepadData):
-        (WebViewHost::printMessage):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-10-22  Allan Sandfeld Jensen  <allan.jensen@digia.com>
-
-        I now only watch Selectors instead of all of CSS.
-
-        Unreviewed update of watchlist.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-10-22  Yury Semikhatsky  <yurys@chromium.org>
-
-        Make sure base and derived class pointers are different in MemoryInstrumentationTest.instrumentedWithMultipleAncestors
-        https://bugs.webkit.org/show_bug.cgi?id=99987
-
-        Reviewed by Alexander Pavlov.
-
-        * TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp: changed first parent
-        class in the list so that it has virtual table as well as the second one. This
-        way we may be sure that pointer to the second ancestor class will differ from
-        the pointer to the derived class.
-
-2012-10-22  Yury Semikhatsky  <yurys@chromium.org>
-
-        Unreviewed. Fix compilation after r132059.
-
-        * TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp:
-
-2012-10-22  Dominik Röttsches  <dominik.rottsches@intel.com>
-
-        Adding Cairo and Harfbuzz watchlist entries
-
-        Unreviewed watchlist update.
-
-        Added myself to these new ones and SVG.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-10-22  Yury Semikhatsky  <yurys@chromium.org>
-
-        Web Inspector: do not double count memory of objects with multiple ancestors
-        https://bugs.webkit.org/show_bug.cgi?id=99958
-
-        Reviewed by Alexander Pavlov.
-
-        * TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp: Test that there
-        is no double counting in case of multiple inheritance.
-
-2012-10-22  Allan Sandfeld Jensen  <allan.jensen@digia.com>
-
-        [Qt] Basic gesture event handling
-        https://bugs.webkit.org/show_bug.cgi?id=66173
-
-        Reviewed by Simon Hausmann.
-
-        Add support for eventSender.gestureLongPress.
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::EventSender):
-        (EventSender::gestureLongPress):
-        * DumpRenderTree/qt/EventSenderQt.h:
-        (EventSender):
-
-2012-10-22  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [WTR] Properly initialize TestRunner::m_dumpSelectionRect.
-        https://bugs.webkit.org/show_bug.cgi?id=99970
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Follow-up to r131476: actually initialize m_dumpSelectionRect to
-        some value to avoid some flakyness in the tests.
-
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::TestRunner):
-
-2012-10-22  Tor Arne Vestbø  <tor.arne.vestbo@digia.com>
-
-        [Qt] Don't build any of the tools in production_build
-
-        Reviewed by Simon Hausmann.
-
-        * Tools.pro:
-        * qmake/mkspecs/features/configure.prf:
-
-2012-10-22  Tor Arne Vestbø  <tor.arne.vestbo@digia.com>
-
-        [Qt] Move OBJECTS_DIR and friends to default_pre.prf
-
-        The introduction of load(qt_build_config) in .qmake.conf meant
-        that we started loading qtmodule.pri, which in turn set both
-        MOC_DIR, RCC_DIR, and OBJECTS_DIR.
-
-        We were setting OBJECTS_DIR in default_post under a isEmpty() guard
-        so that project files could override the objects dir. Instead of
-        using the isEmpty() check we move it to defaul_pre, which will
-        override the qtmodule.pri settings, but still allow project files
-        to override it.
-
-        Reviewed by Ossy.
-
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/default_pre.prf:
-
-2012-10-22  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        WebKitTestRunner needs testRunner.queueLoadingScript and testRunner.queueNonLoadingScript
-        https://bugs.webkit.org/show_bug.cgi?id=42675
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Added implementation of testRunner.queueLoadingScript and testRunner.queueNonLoadingScript.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::queueLoadingScript):
-        (WTR):
-        (WTR::InjectedBundle::queueNonLoadingScript):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (InjectedBundle):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::queueLoadingScript):
-        (WTR):
-        (WTR::TestRunner::queueNonLoadingScript):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-        * WebKitTestRunner/WorkQueueManager.cpp:
-        (WTR):
-        (WTR::runJavaScriptFunction):
-        (ScriptItem):
-        (WTR::ScriptItem::ScriptItem):
-        (WTR::ScriptItem::invoke):
-        (WTR::WorkQueueManager::queueBackNavigation):
-        (WTR::WorkQueueManager::queueLoadingScript):
-        (WTR::WorkQueueManager::queueNonLoadingScript):
-        * WebKitTestRunner/WorkQueueManager.h:
-        (WorkQueueManager):
-
-2012-10-22  Zan Dobersek  <zandobersek@gmail.com>
-
-        Unreviewed, a follow-up to r132034 where I forgot to address
-        Ojan's review comment about the race condition in handleLocationChange.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (handleLocationChange):
-
-2012-10-22  Zan Dobersek  <zandobersek@gmail.com>
-
-        [TestResultServer] Move the resource loading into a dedicated class
-        https://bugs.webkit.org/show_bug.cgi?id=99246
-
-        Reviewed by Ojan Vafai.
-
-        A new 'loader' namespace is created, containing the request method (previously located in dashboard_base.js)
-        and the new Loader object, which handles the loading of all the necessary data the dashboard might require.
-
-        * TestResultServer/static-dashboards/aggregate_results.html: Include the loader.js source file.
-        * TestResultServer/static-dashboards/builders.js:
-        (requestBuilderList): Use the request method located in the loader namespace instead of the removed doXHR method.
-        (onBuilderListLoad): Now parses the response text of the passed-in XHR. When all the builder lists are loaded the
-        resource loader object is notified appropriately.
-        (onErrorLoadingBuilderList): The partial function that calls this function also adds an XHR parameter.
-        * TestResultServer/static-dashboards/dashboard_base.js: Much of the resource loading-related code is moved to loader.js.
-        The Loader object is now used to load all the required resources.
-        (parseParameters): Don't push the 'builder' parameter into the current state if the unit tests are being run.
-        (resourceLoadingComplete): This method gets called when all the resources are loaded and the dashboard should
-        proceed with generating the page.
-        (handleLocationChange):
-        * TestResultServer/static-dashboards/flakiness_dashboard.html: Include the loader.js source file.
-        * TestResultServer/static-dashboards/flakiness_dashboard.js: The request method has been relocated to the loader namespace.
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js: The affected test cases are modified appropriately.
-        (test):
-        * TestResultServer/static-dashboards/loader.js: Added.
-        (.): A new namespace is introduced, publicly exporting the request method that performs an XHR operation and a Loader object
-        which oversees resource loading. The loading is done in steps, first loading the builders list, after that the results files
-        the current dashboard needs, and lastly the TestExpectations files if they are required by the dashboard. When done the loader
-        calls the resourceLoadingComplete method located in dashboard_base.js. This signals the dashboard all resources are available
-        and it can proceed with generating the dashboard page.
-        * TestResultServer/static-dashboards/loader_unittests.js: Added. Contains unit tests for the Loader object, covering the
-        incremental loading and the loading of results files and TestExpectations files. The builders list loading is currently not
-        tested as the unit tests page overrides related methods that possibly affect other tests' behavior.
-        * TestResultServer/static-dashboards/run-unittests.html: Now includes the loader.js and loader_unittests.js source file.
-        Refactors the code a bit due to changes in how onBuilderListLoad behaves.
-        * TestResultServer/static-dashboards/timeline_explorer.html: Now includes the loader.js source file.
-        * TestResultServer/static-dashboards/treemap.html: Ditto. Also refactors the code to take into account
-        that all the test files are now loaded before generating the dashboard page.
-
-2012-10-21  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] introduce a public API for the TestRunner library
-        https://bugs.webkit.org/show_bug.cgi?id=99904
-
-        Reviewed by Adam Barth.
-
-        The API decouples the public API from the underlying implementation, so
-        embedders can depend on it. I'm also changing DRT to consume the
-        TestRunner API through the public API, except for DRTTestRunner and all
-        places that require Task.h. These two will be migrated in later changes.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/DRTDevToolsAgent.h:
-        * DumpRenderTree/chromium/DRTDevToolsClient.h:
-        * DumpRenderTree/chromium/MockSpellCheck.cpp:
-        (MockSpellCheck::fillSuggestionList):
-        * DumpRenderTree/chromium/MockSpellCheck.h:
-        (MockSpellCheck):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.h:
-        * DumpRenderTree/chromium/MockWebSpeechInputController.h:
-        * DumpRenderTree/chromium/MockWebSpeechRecognizer.h:
-        * DumpRenderTree/chromium/TestRunner/public/WebAccessibilityController.h: Copied from Tools/DumpRenderTree/chromium/TestRunner/src/TestDelegate.h.
-        (WebKit):
-        (WebTestRunner):
-        (WebAccessibilityController):
-        * DumpRenderTree/chromium/TestRunner/public/WebEventSender.h: Copied from Tools/DumpRenderTree/chromium/TestRunner/src/TestDelegate.h.
-        (WebKit):
-        (WebTestRunner):
-        (WebEventSender):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h: Copied from Tools/DumpRenderTree/chromium/TestRunner/src/TestDelegate.h.
-        (WebKit):
-        (WebTestRunner):
-        (WebTestDelegate):
-        * DumpRenderTree/chromium/TestRunner/public/WebTestInterfaces.h: Copied from Tools/DumpRenderTree/chromium/TestRunner/src/TestInterfaces.h.
-        (WebKit):
-        (WebTestRunner):
-        (WebTestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityControllerChromium.cpp:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityControllerChromium.h:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp:
-        (WebTestRunner):
-        (WebTestRunner::makeMenuItemStringsFor):
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.h:
-        (WebTestRunner):
-        * DumpRenderTree/chromium/TestRunner/src/TestDelegate.h:
-        (TestDelegate):
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.h:
-        (TestInterfaces):
-        * DumpRenderTree/chromium/TestRunner/src/WebAccessibilityController.cpp: Copied from Tools/DumpRenderTree/chromium/TestRunner/src/TestDelegate.h.
-        (WebTestRunner):
-        (WebTestRunner::WebAccessibilityController::WebAccessibilityController):
-        (WebTestRunner::WebAccessibilityController::setFocusedElement):
-        (WebTestRunner::WebAccessibilityController::notificationReceived):
-        (WebTestRunner::WebAccessibilityController::shouldLogAccessibilityEvents):
-        * DumpRenderTree/chromium/TestRunner/src/WebEventSender.cpp: Copied from Tools/DumpRenderTree/chromium/TestRunner/src/TestDelegate.h.
-        (WebTestRunner):
-        (WebTestRunner::WebEventSender::WebEventSender):
-        (WebTestRunner::WebEventSender::doDragDrop):
-        * DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp: Added.
-        (WebTestRunner):
-        (WebTestInterfaces::Internal):
-        (WebTestRunner::WebTestInterfaces::Internal::testInterfaces):
-        (WebTestRunner::WebTestInterfaces::Internal::accessibilityController):
-        (WebTestRunner::WebTestInterfaces::Internal::eventSender):
-        (WebTestRunner::WebTestInterfaces::Internal::Internal):
-        (WebTestRunner::WebTestInterfaces::Internal::~Internal):
-        (WebTestRunner::WebTestInterfaces::Internal::setDelegate):
-        (WebTestRunner::WebTestInterfaces::Internal::clearContextMenuData):
-        (WebTestRunner::WebTestInterfaces::Internal::clearEditCommand):
-        (WebTestRunner::WebTestInterfaces::Internal::fillSpellingSuggestionList):
-        (WebTestRunner::WebTestInterfaces::Internal::setEditCommand):
-        (WebTestRunner::WebTestInterfaces::Internal::lastContextMenuData):
-        (WebTestRunner::WebTestInterfaces::Internal::setGamepadData):
-        (WebTestRunner::WebTestInterfaces::WebTestInterfaces):
-        (WebTestRunner::WebTestInterfaces::~WebTestInterfaces):
-        (WebTestRunner::WebTestInterfaces::setWebView):
-        (WebTestRunner::WebTestInterfaces::setDelegate):
-        (WebTestRunner::WebTestInterfaces::bindTo):
-        (WebTestRunner::WebTestInterfaces::resetAll):
-        (WebTestRunner::WebTestInterfaces::accessibilityController):
-        (WebTestRunner::WebTestInterfaces::eventSender):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::initialize):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::eventSender):
-        (TestShell::accessibilityController):
-        (TestShell):
-        * DumpRenderTree/chromium/WebUserMediaClientMock.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::finishLastTextCheck):
-        (WebViewHost::fillSpellingSuggestionList):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-10-21  Viatcheslav Ostapenko  <v.ostapenko@samsung.com>
-
-        Unreviewed. Updating my emails.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-10-20  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [EFL][DRT] Implement tracking and painting repaint rectangles.
-        https://bugs.webkit.org/show_bug.cgi?id=99838
-
-        Reviewed by Gyuyoung Kim.
-
-        Implement displayWebView() and start tracking/painting the repaint
-        rectangles for the repaint tests that rely on it.
-
-        * DumpRenderTree/efl/DumpRenderTree.cpp:
-        (displayWebView):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        * DumpRenderTree/efl/PixelDumpSupportEfl.cpp:
-        (createBitmapContextFromWebView):
-
-2012-10-19  Dan Bernstein  <mitz@apple.com>
-
-        Add bundle API for hit-testing
-        https://bugs.webkit.org/show_bug.cgi?id=99907
-
-        Reviewed by Sam Weinig.
-
-        Added an API test for WKBundleFrameCreateHitTest().
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj: Added InjectedBundleFrameHitTest.cpp,
-        InjectedBundleFrameHitTest_bundle.cpp, and link-with-title.html.
-
-        * TestWebKitAPI/Tests/WebKit2/InjectedBundleFrameHitTest.cpp: Added.
-        (TestWebKitAPI::didReceiveMessageFromInjectedBundle): Checks that the message contains the
-        title of the link in link-with-title.html.
-        (TestWebKitAPI::setInjectedBundleClient):
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/InjectedBundleFrameHitTest_Bundle.cpp: Added.
-        (TestWebKitAPI::InjectedBundleFrameHitTestTest::InjectedBundleFrameHitTestTest):
-        (TestWebKitAPI::didFinishLoadForFrameCallback): Hit tests at (50, 50) and sends the link title
-        from the result back to the UI process.
-        (TestWebKitAPI::InjectedBundleFrameHitTestTest::didCreatePage):
-        (TestWebKitAPI::InjectedBundleFrameHitTestTest::frameLoadFinished):
-        * TestWebKitAPI/Tests/WebKit2/link-with-title.html: Added.
-
-2012-10-19  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r131944.
-        http://trac.webkit.org/changeset/131944
-        https://bugs.webkit.org/show_bug.cgi?id=99891
-
-        On second thoughts, not such a great idea (Requested by jamesr
-        on #webkit).
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::createNewWindow):
-
-2012-10-19  Alexandre Elias  <aelias@chromium.org>
-
-        [chromium] API to pass impl thread via WebLayerTreeView
-        https://bugs.webkit.org/show_bug.cgi?id=99863
-
-        Reviewed by James Robinson.
-
-        This adds an API to pass the compositor impl thread via WebView and
-        WebLayerTreeView. This is currently a no-op change, but in the future
-        this codepath will supercede WebCompositor. The goal is to avoid statics
-        in compositor initialization.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::createNewWindow):
-
-2012-10-19  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [Cairo][WTR] Implement the painting of repaint rectangles.
-        https://bugs.webkit.org/show_bug.cgi?id=99839
-
-        Reviewed by Martin Robinson.
-
-        Implement the required code to paint the gray overlay with
-        transparent regions for the repaint rectangles, as other ports
-        already do and as is already done in most WK1 ports.
-
-        * WebKitTestRunner/cairo/TestInvocationCairo.cpp:
-        (WTR::paintRepaintRectOverlay):
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-
-2012-09-08  Alpha Lam  <hclam@chromium.org>
-
-        [chromium] Implement deferred image decoding
-        https://bugs.webkit.org/show_bug.cgi?id=94240
-
-        Reviewed by Stephen White.
-
-        Add --enable-deferred-image-decoding to DRT.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::resetWebSettings):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::setDeferredImageDecodingEnabled):
-        (TestShell):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-        (WebPreferences):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.virtual_test_suites):
-
-2012-10-19  Dongwoo Joshua Im  <dw.im@samsung.com>
-
-        Rename ENABLE_CSS3_TEXT_DECORATION to ENABLE_CSS3_TEXT
-        https://bugs.webkit.org/show_bug.cgi?id=99804
-
-        Reviewed by Julien Chaffraix.
-
-        CSS3 text related properties will be implemented under this flag,
-        including text decoration, text-align-last, and text-justify.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2012-10-19  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt][WTR] renderToOffscreenBuffer should not be set if the real render loop is active
-        https://bugs.webkit.org/show_bug.cgi?id=99831
-
-        Reviewed by Jocelyn Turcotte.
-
-        Do not set renderToOffscreenBuffer if we have called setRenderWithoutShowing.
-        We do not need it in this case and these things are actually conflicting.
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::WrapperWindow::handleStatusChanged):
-        (WTR::PlatformWebView::PlatformWebView):
-        (WTR::PlatformWebView::windowShapshotEnabled): Added a comment
-        describing why this workaround is needed.
-
-2012-10-19  Zan Dobersek  <zandobersek@gmail.com>
-
-        [WK2][GTK] Fullscreen tests timing out in bots
-        https://bugs.webkit.org/show_bug.cgi?id=93973
-
-        Reviewed by Philippe Normand.
-
-        Add webcore_cppflags to the CPPFLAGS for WebKitTestRunner and the
-        injected bundle library. webcore_cppflags contains all the feature
-        defines' macros so the ENABE(*) compilation guards should now work
-        properly (i.e. enable the code behind them when the feature is enabled).
-
-        * WebKitTestRunner/GNUmakefile.am:
-
-2012-10-19  Simon Hausmann  <simon.hausmann@digia.com>
-
-        Unreviewed, rolling out r131734.
-        http://trac.webkit.org/changeset/131734
-
-        Broke ANGLE build where we end up with @echo foo && @echo -n
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2012-10-19  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        REGRESSION (r130640 - r130644): TestCookieManager API test is failing
-        https://bugs.webkit.org/show_bug.cgi?id=98738
-
-        Reviewed by Philippe Normand.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner): Unskip /webkit2/WebKitCookieManager/accept-policy.
-
-2012-10-19  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: Update the RuntimeEnabledFeatures flags
-        https://bugs.webkit.org/show_bug.cgi?id=99714
-
-        Reviewed by Adam Barth.
-
-        Enabling the DeprecatedPeerConnection so that all tests still run.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-
-2012-10-18  Dominic Mazzoni  <dmazzoni@google.com>
-
-        AX: labelForElement is slow when there are a lot of DOM elements
-        https://bugs.webkit.org/show_bug.cgi?id=97825
-
-        Reviewed by Ryosuke Niwa.
-
-        Implement titleUIElement in the chromium port of DRT, and
-        fix getAccessibleElementById so that it ensures the backing store
-        is up-to-date.
-
-        * DumpRenderTree/chromium/TestRunner/AccessibilityControllerChromium.cpp:
-        (AccessibilityController::getAccessibleElementById):
-        * DumpRenderTree/chromium/TestRunner/AccessibilityUIElementChromium.cpp:
-        (AccessibilityUIElement::titleUIElementCallback):
-
-2012-10-17  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Web Inspector: NMI provide data for mixing with tcmalloc heap dumps.
-        https://bugs.webkit.org/show_bug.cgi?id=99457
-
-        Reviewed by Yury Semikhatsky.
-
-        countObjectSize now requires pointer to object as the first argument.
-
-        * TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp:
-
-2012-10-18  Dirk Pranke  <dpranke@chromium.org>
-
-        make move_overwritten_baselines_to work again while rebaselining
-        https://bugs.webkit.org/show_bug.cgi?id=99793
-
-        Reviewed by Ojan Vafai.
-
-        We used to have code that would help when rebaselining results
-        for new ports (e.g., when moving from Lion to Mountain Lion) but
-        it appears that code bitrotted during all the refactoring since
-        the last time we needed this. This patch makes things work
-        again, adds more tests that will hopefully make clearer what
-        is supposed to work, and renames various parameters to be
-        consistent.
-
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        (move_overwritten_baselines_to):
-        (builder_path_for_port_name):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineTest.__init__):
-        (RebaselineTest._copy_existing_baseline):
-        (RebaselineTest._rebaseline_test):
-        (RebaselineTest.execute):
-        (AbstractParallelRebaselineCommand._rebaseline_commands):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (test_rebaseline_json_with_move_overwritten_baselines_to):
-        (test_rebaseline_test_internal_with_move_overwritten_baselines_to):
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-        (GardeningServerTest.test_rebaselineall):
-
-2012-10-18  Roger Fong  <roger_fong@apple.com>
-
-        Unreviewed. Skip really old flaky failing jscore date test. 
-        There's a bug tracking it here: https://bugs.webkit.org/show_bug.cgi?id=53712.
-
-        * Scripts/run-javascriptcore-tests:
-
-2012-10-18  Byungwoo Lee  <bw80.lee@samsung.com>
-
-        Fix build warning.
-        https://bugs.webkit.org/show_bug.cgi?id=99788
-
-        Reviewed by Kentaro Hara.
-
-        Use return value of mktemp() for removing -Wunused-result.
-
-        * MiniBrowser/efl/main.c:
-        (on_download_request):
-
-2012-10-18  Benjamin Poulain  <bpoulain@apple.com>
-
-        [WK2] WebKit2 does not build without PLUGIN_PROCESS on Mac
-        https://bugs.webkit.org/show_bug.cgi?id=99771
-
-        Reviewed by Anders Carlsson.
-
-        * DumpRenderTree/mac/MockWebNotificationProvider.mm: The file was not including config.h,
-        effectively breaking feature flags.
-
-2012-10-18  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [EFL][DRT] Make textareas resizable by default.
-        https://bugs.webkit.org/show_bug.cgi?id=99719
-
-        Reviewed by Gyuyoung Kim.
-
-        Enable painting the textarea resizer at the corner by default,
-        just as it already is the case for WK2. This eases the work needed
-        to get the pixel tests in shape and run by the bots, as both the
-        WK1 and WK2 ports will have more similar results.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-
-2012-10-18  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] Add a webkit_test_support target that WebTestingSupport
-        https://bugs.webkit.org/show_bug.cgi?id=99772
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-10-18  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move TestRunner files into a src/ sub directory
-        https://bugs.webkit.org/show_bug.cgi?id=99776
-
-        Reviewed by Adam Barth.
-
-        This is in preparation of adding a public API to the TestRunner library.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityControllerChromium.cpp: Renamed from Tools/DumpRenderTree/chromium/TestRunner/AccessibilityControllerChromium.cpp.
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityControllerChromium.h: Renamed from Tools/DumpRenderTree/chromium/TestRunner/AccessibilityControllerChromium.h.
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.cpp: Renamed from Tools/DumpRenderTree/chromium/TestRunner/AccessibilityUIElementChromium.cpp.
-        * DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.h: Renamed from Tools/DumpRenderTree/chromium/TestRunner/AccessibilityUIElementChromium.h.
-        * DumpRenderTree/chromium/TestRunner/src/CppBoundClass.cpp: Renamed from Tools/DumpRenderTree/chromium/TestRunner/CppBoundClass.cpp.
-        * DumpRenderTree/chromium/TestRunner/src/CppBoundClass.h: Renamed from Tools/DumpRenderTree/chromium/TestRunner/CppBoundClass.h.
-        * DumpRenderTree/chromium/TestRunner/src/CppVariant.cpp: Renamed from Tools/DumpRenderTree/chromium/TestRunner/CppVariant.cpp.
-        * DumpRenderTree/chromium/TestRunner/src/CppVariant.h: Renamed from Tools/DumpRenderTree/chromium/TestRunner/CppVariant.h.
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.cpp: Renamed from Tools/DumpRenderTree/chromium/TestRunner/EventSender.cpp.
-        * DumpRenderTree/chromium/TestRunner/src/EventSender.h: Renamed from Tools/DumpRenderTree/chromium/TestRunner/EventSender.h.
-        * DumpRenderTree/chromium/TestRunner/src/GamepadController.cpp: Renamed from Tools/DumpRenderTree/chromium/TestRunner/GamepadController.cpp.
-        * DumpRenderTree/chromium/TestRunner/src/GamepadController.h: Renamed from Tools/DumpRenderTree/chromium/TestRunner/GamepadController.h.
-        * DumpRenderTree/chromium/TestRunner/src/Task.cpp: Renamed from Tools/DumpRenderTree/chromium/TestRunner/Task.cpp.
-        * DumpRenderTree/chromium/TestRunner/src/Task.h: Renamed from Tools/DumpRenderTree/chromium/TestRunner/Task.h.
-        * DumpRenderTree/chromium/TestRunner/src/TestDelegate.h: Renamed from Tools/DumpRenderTree/chromium/TestRunner/TestDelegate.h.
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp: Renamed from Tools/DumpRenderTree/chromium/TestRunner/TestInterfaces.cpp.
-        * DumpRenderTree/chromium/TestRunner/src/TestInterfaces.h: Renamed from Tools/DumpRenderTree/chromium/TestRunner/TestInterfaces.h.
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp: Renamed from Tools/DumpRenderTree/chromium/TestRunner/TestRunner.cpp.
-        * DumpRenderTree/chromium/TestRunner/src/TestRunner.h: Renamed from Tools/DumpRenderTree/chromium/TestRunner/TestRunner.h.
-        * DumpRenderTree/chromium/TestRunner/src/TextInputController.cpp: Renamed from Tools/DumpRenderTree/chromium/TestRunner/TextInputController.cpp.
-        * DumpRenderTree/chromium/TestRunner/src/TextInputController.h: Renamed from Tools/DumpRenderTree/chromium/TestRunner/TextInputController.h.
-
-2012-10-18  Dirk Pranke  <dpranke@chromium.org>
-
-        [chromium] garden-o-matic should ignore the 10.8 Tests bot
-        https://bugs.webkit.org/show_bug.cgi?id=99765
-
-        Reviewed by Adam Barth.
-
-        It's really more of an FYI bot at this point and can be safely
-        ignored like the Content Shell bots.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-        (.):
-
-2012-10-18  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] Simplify TestInterfaces, as this class won't be directly exposed in the TestRunner library's interface
-        https://bugs.webkit.org/show_bug.cgi?id=99766
-
-        Reviewed by Adam Barth.
-
-        This reverts http://trac.webkit.org/changeset/123240
-
-        * DumpRenderTree/chromium/TestRunner/TestInterfaces.cpp:
-        (TestInterfaces::TestInterfaces):
-        (TestInterfaces::~TestInterfaces):
-        (TestInterfaces::setWebView):
-        (TestInterfaces::setDelegate):
-        (TestInterfaces::bindTo):
-        (TestInterfaces::resetAll):
-        (TestInterfaces::accessibilityController):
-        (TestInterfaces::eventSender):
-        * DumpRenderTree/chromium/TestRunner/TestInterfaces.h:
-        (TestInterfaces):
-
-2012-10-18  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r131810.
-        http://trac.webkit.org/changeset/131810
-        https://bugs.webkit.org/show_bug.cgi?id=99762
-
-        Broke linux debug webkit_unit_tests (Requested by
-        danakj|gardening on #webkit).
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::resetWebSettings):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-        (WebPreferences):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.virtual_test_suites):
-
-2012-10-18  Alpha Lam  <hclam@chromium.org>
-
-        [chromium] Implement deferred image decoding
-        https://bugs.webkit.org/show_bug.cgi?id=94240
-
-        Reviewed by Stephen White.
-
-        Add --enable-deferred-image-decoding to DRT.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::resetWebSettings):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::setDeferredImageDecodingEnabled):
-        (TestShell):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-        (WebPreferences):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.virtual_test_suites):
-
-2012-10-18  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: fix chromium bot configs in builders.py
-        https://bugs.webkit.org/show_bug.cgi?id=99638
-
-        Reviewed by Ojan Vafai.
-
-        Updating after the great bot-renaming and deleting a test case
-        that is no longer needed.
-
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-        (BuildCoverageExtrapolatorTest.test_extrapolate):
-
-2012-10-18  Dirk Pranke  <dpranke@chromium.org>
-
-        [chromium] Add 10.8 bot into fallback path, make work with garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=99748
-
-        Reviewed by Ryosuke Niwa.
-
-        Subject pretty much says it all ...
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        (ChromiumMacPort):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        (ChromiumMacPortTest.test_versions):
-        (ChromiumMacPortTest.test_baseline_path):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (TestRebaseline.test_baseline_directory):
-        (test_rebaseline_and_copy_test_with_lion_result):
-        (test_rebaseline_expectations):
-
-2012-10-18  Timothy Hatcher  <timothy@apple.com>
-
-        Teach prepare-ChangeLog how to handle non-function properties in JavaScript prototypes.
-
-        https://bugs.webkit.org/show_bug.cgi?id=99747
-
-        Reviewed by Joseph Pecoraro.
-
-        * Scripts/prepare-ChangeLog:
-        (get_function_line_ranges_for_javascript): Clear currentIdentifiers when comma is encountered
-        so it does not tack those identifiers onto the next changed function.
-
-2012-10-18  James Simonsen  <simonjam@chromium.org>
-
-        Add a script for exporting http/tests/w3c/webperf/submission to W3C
-        https://bugs.webkit.org/show_bug.cgi?id=99675
-
-        Reviewed by Tony Gentilcore.
-
-        This does the inverse of Scripts/import-w3c-performance-wg-tests.
-
-        * Scripts/export-w3c-performance-wg-tests: Added.
-
-2012-10-18  Pablo Flouret  <pablof@motorola.com>
-
-        Implement css3-conditional's @supports rule
-        https://bugs.webkit.org/show_bug.cgi?id=86146
-
-        Reviewed by Antti Koivisto.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-            Add an ENABLE_CSS3_CONDITIONAL_RULES flag.
-
-2012-10-18  Xiaobo Wang  <xbwang@torchmobile.com.cn>
-
-        [BlackBerry] Dump DRT output to stdout if test is passed as command line argument
-        https://bugs.webkit.org/show_bug.cgi?id=99150
-
-        Reviewed by Rob Buis.
-
-        Fixed some code style errors as well.
-
-        * DumpRenderTree/blackberry/DumpRenderTree.cpp:
-        (BlackBerry::WebKit::DumpRenderTree::runTest):
-        (BlackBerry::WebKit::DumpRenderTree::runRemainingTests):
-        (BlackBerry::WebKit::DumpRenderTree::runTests):
-        (BlackBerry::WebKit::DumpRenderTree::isHTTPTest):
-        (BlackBerry::WebKit::DumpRenderTree::dump):
-        (BlackBerry::WebKit::DumpRenderTree::addMessageToConsole):
-        * DumpRenderTree/blackberry/DumpRenderTreeBlackBerry.h:
-        (DumpRenderTree):
-
-2012-10-18  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Improved support for silent builds
-
-        Reviewed by Tor Arne Vestbø.
-
-        Silence our extra compilers when CONFIG+=silent is set.
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2012-10-18  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Reduce memory pressure at link time with less compromise on speed of linking
-
-        Reviewed by Csaba Osztrogonác.
-
-        Revert r131718 that made us pass -fno-keep-memory to the linker for any
-        i386 builds. The downside of passing that option is that it slows down
-        the process of linking and as Ossy determined, release builds do _not_
-        take as much memory (2.x GB) for linking but much less (~350MB).
-
-        However there is one condition where even release builds do take up too
-        much memory, and that is when Qt is configured with
-        -separate-debug-info, because it adds a -g next to -O2. The recent
-        introduction of loading qt_build_config enabled us to read qmodule.pri,
-        which adds the -g if Qt is configured with -separate-debug-info. So
-        instead of playing with -fno-keep-memory (which is a last resort
-        measure for debug builds) we should tweak our existing mechanism of
-        dealing with the debug info:
-
-        production_build.prf tries to ensure that we use -g only in static
-        libraries that contain API facing code, so that we get nice backtraces
-        at least into the API layer. For other static libraries such as WebCore
-        we skip -g via CONFIG += no_debug_info. One of the conditions for
-        enabling this tweak is CONFIG(debug, debug|release). This patch adds
-        contains(QT_CONFIG,separate_debug_info) to the conditions.
-
-        The patch also extend the CONFIG += no_debug_info part with the removal
-        of no_separate_debug_info. There is no point in running an extra
-        build step to strip out debug info into a separate file if at the same
-        time we tell the compiler to not generate any debug info altogether.
-
-        * qmake/mkspecs/features/production_build.prf:
-        * qmake/mkspecs/features/unix/default_post.prf:
-
-2012-10-18  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt] OpenGL rendering is not possible on bots using Xvfb
-        https://bugs.webkit.org/show_bug.cgi?id=99463
-
-        Reviewed by Jocelyn Turcotte.
-
-        Added a workaround to be able to disallow UI side OpenGL rendering
-        if the environment is not suitable because it can be extremely slow
-        with a software backend.
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort.setup_environ_for_server): Let the environment variable
-        QT_WEBKIT_DISABLE_UIPROCESS_DUMPPIXELS reach the driver. This variable
-        should be defined on bots that don't have a suitable OpenGL environment.
-        * WebKitTestRunner/PlatformWebView.h:
-        (PlatformWebView):
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::WrapperWindow::handleStatusChanged): Don't try to create an OpenGL
-        surface and set the setRenderWithoutShowing flag on the window if the
-        variable is set.
-        (WTR::PlatformWebView::windowSnapshotImage):
-        (WTR::PlatformWebView::windowShapshotEnabled):
-        (WTR):
-        * WebKitTestRunner/qt/TestInvocationQt.cpp:
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected): Use the old method
-        of evaluating pixel results if the snapshot is not supported, that is to check
-        the image we got from the web process. This is necessary for the bots to be able
-        to run ref tests.
-
-2012-10-15  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt] Implement pixel snapshot generation in WTR
-        https://bugs.webkit.org/show_bug.cgi?id=95992
-
-        Reviewed by Jocelyn Turcotte.
-
-        Switch the Qt implementation of the PlatformWebView to use
-        QQuickWindow::grabWindow to generate the pixel results. This way
-        we will go through the scenegraph and test the actual rendering backend.
-        We use QQuickWindowPrivate::setRenderWithoutShowing to avoid the need of
-        showing the window.
-
-        * WebKitTestRunner/Target.pri: Had to added a bunch
-        of modules to be able to use QQuickWindowPrivate.
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::WrapperWindow::handleStatusChanged):
-        (WTR::PlatformWebView::windowSnapshotImage):
-
-2012-10-15  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt][WTR] Do a forced repaint before generating pixel results
-        https://bugs.webkit.org/show_bug.cgi?id=98654
-
-        Reviewed by Jocelyn Turcotte.
-
-        Do a forced repaint before grabbing the pixel snapshot. This extra
-        synchronisation is necessary with the CoordinatedGraphics rendering
-        backend because it has a fully asynchronous nature. This patch make
-        us using the window snapshot for pixel results which is necessary to
-        capture animations and other dynamic content. The actual grabbing of
-        the window has not been implemented in this patch. It will come in
-        a follow-up.
-
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::invoke):
-        (WTR::TestInvocation::dump): Store results in member variables.
-        Don't close output channels yet.
-        (WTR::TestInvocation::dumpResults): Added. This is where we dump
-        the results if no error happened.
-        (WTR):
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-        * WebKitTestRunner/TestInvocation.h:
-        (TestInvocation):
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::windowSnapshotImage):
-        * WebKitTestRunner/qt/TestInvocationQt.cpp:
-        (WTR::TestInvocation::forceRepaintDoneCallback):
-        (WTR):
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-
-2012-10-18  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Clean up variables controlling Qt module creation/handling
-
-        Reviewed by Tor Arne Vestbø.
-
-        We now depend on a Qt 5 version that is new enough to allow us to
-        clean this up. Qt's default_pre.prf uses MODULE_QMAKE_OUTDIR, but
-        the other MODULE_BASE_* variables are onl used in qmodule.prf.
-
-        * qmake/mkspecs/features/default_pre.prf:
-
-2012-10-18  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Reduce memory pressure during link time
-
-        Reviewed by Tor Arne Vestbø.
-
-        If possible always pass -fkeep-memory to the linker on i386. The
-        library has grown so big that we need this not only for i386 debug
-        builds but at least also for release.
-
-        * qmake/mkspecs/features/unix/default_post.prf:
-
-2012-10-17  Tor Arne Vestbø  <tor.arne.vestbo@digia.com>
-
-        [Qt] Modularize documentation for QtWebKit
-
-        Running 'make docs' would fail unless 'make qmake_all' was ran first,
-        but qmake_all involved generating all the derived sources, which seems
-        overly complex just for building documentation.
-
-        We solve this by preventing all subdirs except QtWebKit from having a
-        docs target. This would normally work fine on its own, but since we
-        use CONFIG += ordered, there's now a missing doc target for the
-        immediate dependency of the QtWebKit subdir. We solve this by adding
-        a dummy-target ourselves.
-
-        Finally, we clean up the qdocconf file to match the rest of the Qt
-        documentation modularization efforts.
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2012-10-17  Zoltan Horvath  <zoltan@webkit.org>
-
-        Remove the JSHeap memory measurement of the PageLoad performacetests since it creates bogus JSGlobalDatas
-        https://bugs.webkit.org/show_bug.cgi?id=99609 
-
-        Reviewed by Ryosuke Niwa.
-
-        Remove the implementation since it creates bogus JSGlobalDatas in the layout tests.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dump):
-
-2012-10-17  Dirk Pranke  <dpranke@chromium.org>
-
-        [chromium] stop falling back to platform/mac for LayoutTest results
-        https://bugs.webkit.org/show_bug.cgi?id=99666
-
-        Reviewed by James Robinson.
-
-        Previously the Chromium ports would fall back to results in
-        platform/mac if a result was not found in platform/chromium-*.
-        This allowed us to share a lot of results w/ the Apple Mac port,
-        but often surprised people (especially at Apple ;) when changing
-        something in that directory would break a Chromium build.
-
-        The tests that are deleted in baselineoptimizer were for cases
-        that are no longer relevant or possible in the current fallback
-        graph.
-
-        * Scripts/webkitpy/common/checkout/baselineoptimizer_unittest.py:
-        (BaselineOptimizerTest.test_move_baselines):
-        (BaselineOptimizerTest.test_chromium_covers_mac_win_linux):
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        (ChromiumLinuxPort):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        (ChromiumMacPort):
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        (ChromiumWinPort):
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-
-2012-10-17  Shashi Shekhar  <shashishekhar@google.com>
-
-        Remove redundant sdk_build parameter.
-        https://bugs.webkit.org/show_bug.cgi?id=99648
-
-        Reviewed by Adam Barth.
-
-        sdk_build parameter is no longer needed.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * TestWebKitAPI/TestWebKitAPI.gyp/TestWebKitAPI.gyp:
-
-2012-10-17  Joanmarie Diggs  <jdiggs@igalia.com>
-
-        [GTK] AccessibilityUIElement::role() should be consistent across platforms wherever possible
-        https://bugs.webkit.org/show_bug.cgi?id=99640
-
-        Reviewed by Chris Fleizach.
-
-        Convert AtkRole instances to the Mac/Safari-style AXRole string.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (roleToString): New method to convert AtkRole instances to the Mac/Safari-style AXRole string
-        (AccessibilityUIElement::role): Output the Mac/Safair-style AXRole string rather than the AtkRole's name
-
-2012-10-17  Anders Carlsson  <andersca@apple.com>
-
-        Clean up Vector.h
-        https://bugs.webkit.org/show_bug.cgi?id=99622
-
-        Reviewed by Benjamin Poulain.
-
-        Remove ReversedProxy test.
-
-        * TestWebKitAPI/Tests/WTF/Vector.cpp:
-
-2012-10-17  Scott Graham  <scottmg@chromium.org>
-
-        Integer overflows/underflows in all Gamepad controller api calls.
-        https://bugs.webkit.org/show_bug.cgi?id=97262
-
-        Reviewed by Abhishek Arya.
-
-        Range check controller inputs. This code is not exposed to the web,
-        but makes fuzzers try less hard to break uninteresting code.
-
-        * DumpRenderTree/chromium/TestRunner/GamepadController.cpp:
-        (GamepadController::setButtonCount):
-        (GamepadController::setButtonData):
-        (GamepadController::setAxisCount):
-        (GamepadController::setAxisData):
-
-2012-10-17  Joseph Pecoraro  <pecoraro@apple.com>
-
-        Unreviewed watchlist email change.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-10-17  Dan Carney  <dcarney@google.com>
-
-        Bind isolatedWorldSecurityOrigin to world
-        https://bugs.webkit.org/show_bug.cgi?id=99582
-
-        Reviewed by Adam Barth.
-
-        Added ability to unset isolatedWorldSecurityOrigin.
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::setIsolatedWorldSecurityOrigin):
-
-2012-10-17  Joseph Pecoraro  <pecoraro@apple.com>
-
-        Unreviewed watchlist addition.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-10-17  Sadrul Habib Chowdhury  <sadrul@chromium.org>
-
-        plugins: Allow a plugin to dictate whether it can receive drag events or not.
-        https://bugs.webkit.org/show_bug.cgi?id=99355
-
-        Reviewed by Tony Chang.
-
-        Update the TestWebPlugin to implement the new |canProcessDrag| interface.
-
-        * DumpRenderTree/chromium/TestWebPlugin.h:
-        (TestWebPlugin::canProcessDrag):
-
-2012-10-17  Dominic Mazzoni  <dmazzoni@google.com>
-
-        Unreviewed. Create an accessibility watchlist.
-
-        * Scripts/webkitpy/common/config/committers.py:
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-10-17  Jochen Eisinger  <jochen@chromium.org>
-
-        [gyp] fix bundle resources for DumpRenderTree on mac
-        https://bugs.webkit.org/show_bug.cgi?id=99558
-
-        Reviewed by Adam Barth.
-
-        mac_bundle_resources doesn't propagate to targets that depend on it,
-        so I'm wrapping it in an all_dependent_settings block.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-10-17  Harald Alvestrand  <hta@google.com>
-
-        Add myself to the MediaStream watchlist
-        https://bugs.webkit.org/show_bug.cgi?id=99589
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-10-17  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [WK2][WTR] InjectedBundlePage::decidePolicyForNavigationAction() should print only filename part of local URLs
-        https://bugs.webkit.org/show_bug.cgi?id=99581
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Now InjectedBundlePage::decidePolicyForNavigationAction() prints only filename part of local URLs (URLs where scheme
-        equals to 'file').
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::decidePolicyForNavigationAction):
-
-2012-10-17  Harald Alvestrand  <hta@google.com>
-
-        Implement the Selector argument to RTCPeerConnection.getStats
-        https://bugs.webkit.org/show_bug.cgi?id=99460
-
-        Reviewed by Adam Barth.
-
-        The MockWebRTCPeerConnectionHandler will return one object only
-        when it gets a selector, and an even number when there is no selector.
-        This allows to verify that the argument is passed, but not its value.
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (MockWebRTCPeerConnectionHandler::getStats):
-
-2012-10-17  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        WebKitTestRunner needs layoutTestController.queueReload
-        https://bugs.webkit.org/show_bug.cgi?id=42672
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Added implementation of testRunner.queueReload().
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::queueReload):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (InjectedBundle):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::queueReload):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-        * WebKitTestRunner/WorkQueueManager.cpp:
-        (WTR::WorkQueueManager::queueReload):
-        (WTR):
-        * WebKitTestRunner/WorkQueueManager.h:
-        (WorkQueueManager):
-
-2012-10-17  Mark Rowe  <mrowe@apple.com>
-
-        Fix the build with a newer version of clang.
-
-        Reviewed by Dan Bernstein.
-
-        Update to accommodate the renamed methods in WebCoreStatistics.
-
-        * DumpRenderTree/mac/PixelDumpSupportMac.mm:
-        (createPagedBitmapContext):
-
-2012-10-17  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        WebKitTestRunner needs testRunner.queueLoad
-        https://bugs.webkit.org/show_bug.cgi?id=42674
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Added testRunner.queueLoad() and testRunner.queueBackNavigation() implementation to WTR including
-        Work Queue implementation. Work Queue is managed by WorkQueueManager which belongs to UI process
-        (as the needed functionality, like loading initiation, has to be invoked from UI process) and
-        exchanges messages with Injected bundle.
-
-        * WebKitTestRunner/CMakeLists.txt:
-        * WebKitTestRunner/GNUmakefile.am:
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::InjectedBundle):
-        (WTR::InjectedBundle::didReceiveMessage):
-        (WTR::InjectedBundle::done):
-        (WTR::InjectedBundle::shouldProcessWorkQueue):
-        (WTR):
-        (WTR::InjectedBundle::processWorkQueue):
-        (WTR::InjectedBundle::queueBackNavigation):
-        (WTR::InjectedBundle::queueLoad):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (InjectedBundle):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::didFailProvisionalLoadWithErrorForFrame):
-        (WTR::InjectedBundlePage::didFinishLoadForFrame):
-        (WTR::InjectedBundlePage::didFailLoadWithErrorForFrame):
-        (WTR::InjectedBundlePage::locationChangeForFrame):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-        (InjectedBundlePage):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::queueBackNavigation):
-        (WTR):
-        (WTR::TestRunner::queueLoad):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-        * WebKitTestRunner/Target.pri:
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-        * WebKitTestRunner/TestController.h:
-        (WTR::TestController::workQueueManager):
-        (TestController):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-        (WTR::TestInvocation::didReceiveSynchronousMessageFromInjectedBundle):
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-        * WebKitTestRunner/WorkQueueManager.cpp: Added.
-        (WTR):
-        (WTR::mainPage):
-        (WTR::goToItemAtIndex):
-        (WTR::WorkQueueManager::WorkQueueManager):
-        (WTR::WorkQueueManager::clearWorkQueue):
-        (WTR::WorkQueueManager::processWorkQueue):
-        (WTR::WorkQueueManager::queueLoad):
-        (WTR::WorkQueueManager::queueBackNavigation):
-        (WTR::WorkQueueManager::enqueue):
-        * WebKitTestRunner/WorkQueueManager.h: Added.
-        (WTR):
-        (WorkQueueManager):
-        (WTR::WorkQueueManager::isWorkQueueEmpty):
-        (WorkQueueItem):
-        (WTR::WorkQueueManager::WorkQueueItem::~WorkQueueItem):
-        * WebKitTestRunner/win/WebKitTestRunner.vcproj:
-
-2012-10-16  Andy Estes  <aestes@apple.com>
-
-        [WebKit2] Create Objective-C API for adding and removing user scripts
-        https://bugs.webkit.org/show_bug.cgi?id=99528
-
-        Reviewed by Anders Carlsson.
-
-        Add three new API tests.
-
-        * TestWebKitAPI/Tests/WebKit2ObjC/UserContentTest.mm:
-        (expectScriptValueIsString):
-        (expectScriptValueIsBoolean):
-        (expectScriptValueIsUndefined):
-
-2012-10-16  Dirk Pranke  <dpranke@chromium.org>
-
-        [chromium] add Mountain Lion baselines
-        https://bugs.webkit.org/show_bug.cgi?id=99505
-
-        Reviewed by Ojan Vafai.
-
-        This change adds a temporary 10.8/MountainLion-specific
-        expectations file for Chromium so that the bot can be green
-        while we are updating all the baselines and triaging failures.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        (ChromiumMacPort.expectations_files):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        (ChromiumMacPortTest.test_ml_expectations):
-
-2012-10-16  Dima Gorbik  <dgorbik@apple.com>
-
-        Remove Platform.h include from the header files.
-        https://bugs.webkit.org/show_bug.cgi?id=98665
-
-        Reviewed by Eric Seidel.
-
-        We don't want other clients that include WebKit headers to know about Platform.h.
-
-        * DumpRenderTree/mac/MockGeolocationProvider.mm:
-
-2012-10-16  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: Add the chromium API for RTCDataChannel
-        https://bugs.webkit.org/show_bug.cgi?id=99435
-
-        Reviewed by Adam Barth.
-
-        Adding mock support for WebRTCDataChannel.
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (StringDataTask):
-        (StringDataTask::StringDataTask):
-        (CharPtrDataTask):
-        (CharPtrDataTask::CharPtrDataTask):
-        (DataChannelReadyStateTask):
-        (DataChannelReadyStateTask::DataChannelReadyStateTask):
-        (RTCPeerConnectionReadyStateTask):
-        (RTCPeerConnectionReadyStateTask::RTCPeerConnectionReadyStateTask):
-        (MockWebRTCPeerConnectionHandler::MockWebRTCPeerConnectionHandler):
-        (MockWebRTCPeerConnectionHandler::initialize):
-        (MockWebRTCPeerConnectionHandler::stop):
-        (MockWebRTCPeerConnectionHandler::openDataChannel):
-        (MockWebRTCPeerConnectionHandler::closeDataChannel):
-        (MockWebRTCPeerConnectionHandler::sendStringData):
-        (MockWebRTCPeerConnectionHandler::sendRawData):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.h:
-        (MockWebRTCPeerConnectionHandler):
-
-2012-10-16  Chris Rogers  <crogers@google.com>
-
-        Rename some AudioNodes
-        https://bugs.webkit.org/show_bug.cgi?id=99358
-
-        Reviewed by Daniel Bates.
-
-        * Scripts/do-webcore-rename:
-
-2012-10-16  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        Implement testRunner.dumpSelectionRect() in WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=69545
-
-        Reviewed by Simon Fraser.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::dump): Set the
-        kWKSnapshotOptionsPaintSelectionRectangle option if
-        testRunner.dumpSelectionRect() is called.
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (WTR::TestRunner::dumpSelectionRect):
-        (WTR::TestRunner::shouldDumpSelectionRect):
-        (TestRunner):
-
-2012-10-16  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r131461.
-        http://trac.webkit.org/changeset/131461
-        https://bugs.webkit.org/show_bug.cgi?id=99474
-
-        Broke win7 bots (Requested by danakj|gardening on #webkit).
-
-        * DumpRenderTree/chromium/TestEventPrinter.cpp:
-        * DumpRenderTree/chromium/TestEventPrinter.h:
-        (TestEventPrinter):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::dump):
-
-2012-10-16  Zoltan Horvath  <zoltan@webkit.org>
-
-        [chromium] Provide used JSHeap size in chromium's DRT for pageloadtest memory measurements
-        https://bugs.webkit.org/show_bug.cgi?id=99288
-
-        Reviewed by Ryosuke Niwa.
-
-        Provide used JSHeap size as we did it for the Apple port.
-
-        * DumpRenderTree/chromium/TestEventPrinter.cpp:
-        (TestEventPrinter::handleDumpMemoryHeader): Add new function to print the JSHeap memory result.
-        * DumpRenderTree/chromium/TestEventPrinter.h:
-        (TestEventPrinter): handleDumpMemoryHeader declaration.
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::dump): Dump JSHeap value.
-
-2012-10-16  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Fix nmake wipeclean on Windows
-
-        Reviewed by Tor Arne Vestbø.
-
-        Delete all subdirectories and no files instead of ".".
-
-        * qmake/mkspecs/features/configure.prf:
-
-2012-10-16  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Fix wipeclean on Windows
-
-        Reviewed by Csaba Osztrogonác.
-
-        Make sure to close the .qmake.cache file after opening it, otherwise it cannot be deleted on
-        a clean build because this process (build-webkit) is still using it due to Windows' exclusive
-        way of opening files.
-
-        * Scripts/webkitdirs.pm:
-        (buildQMakeProjects):
-
-2012-10-16  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Fix determination of changed files from SVN revisions
-
-        Reviewed by Csaba Osztrogonác.
-
-        isSVN() doesn't work from within the build directory, so change to the source directory before
-        doing any VCS operations.
-
-        * Scripts/VCSUtils.pm:
-        * Scripts/webkitdirs.pm:
-        (buildQMakeProjects):
-
-2012-10-16  Simon Hausmann  <simon.hausmann@digia.com>
-
-        Fix build-webkit bailing out of !isSVN() and !isGit()
-
-        Reviewed by Tor Arne Vestbø.
-
-        Added missing else case with early return.
-
-        * Scripts/VCSUtils.pm:
-
-2012-10-16  Simon Hausmann  <simon.hausmann@digia.com>, Tor Arne Vestbø <tor.arne.vestbo@digia.com>
-
-        [Qt] Add logic for triggering clean builds on changes to build system files
-
-        Reviewed by Csaba Osztrogonác.
-
-        Re-use the existing logic that gives us a range between old and new SVN revision and
-        parse the summarized output of diff to see if any of the changed files include files
-        that are part of the Qt build system. If they change we likely need a clean build and
-        trigger it just to be on the safe side and reduce the amount of manual intervention
-        needed on the Qt build bots.
-
-        * Scripts/VCSUtils.pm:
-        * Scripts/webkitdirs.pm:
-        (buildQMakeProjects):
-
-2012-10-16  Allan Sandfeld Jensen  <allan.jensen@digia.com>
-
-        Fix the paths for QtGraphics related WebKit2 files.
-
-        Unreviewed update of watchlist.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-10-16  Allan Sandfeld Jensen  <allan.jensen@digia.com>
-
-        CSS and TouchAdjustment - I am watching you!
-
-        Unreviewed update of watchlist.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-10-16  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Silence C++11 warnings with older versions of clang
-
-        Rubber-stamped by Tor Arne Vestbø.
-
-        Some clang versions support -Wno-c++11-extensions and some use -Wno-c++0x-extensions.
-        We cater both :)
-
-        * qmake/mkspecs/features/unix/default_post.prf:
-
-2012-10-16  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [WK2] Provide WKURL API for resolving the relative URL with the given base URL
-        https://bugs.webkit.org/show_bug.cgi?id=99317
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Added API test for newly added WKURLCreateWithBaseURL().
-
-        * TestWebKitAPI/PlatformEfl.cmake:
-        * TestWebKitAPI/Tests/WebKit2/WKURL.cpp: Added.
-        (TestWebKitAPI):
-        (TestWebKitAPI::TEST):
-
-2012-10-16  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] Decrease the Cario jhbuild dep version back to 1.10.2
-        https://bugs.webkit.org/show_bug.cgi?id=99443
-
-        Reviewed by Philippe Normand.
-
-        Crashes started to occur after the Cairo version in the JHBuild dependencies
-        was bumped up to 1.12.4. This change brings it back down to 1.10.2, which
-        worked fine.
-
-        * gtk/jhbuild.modules:
-
-2012-10-16  Szilard Ledan  <szledan@inf.u-szeged.hu>
-
-        Separate WebKit2 instances use the same local storage
-        https://bugs.webkit.org/show_bug.cgi?id=89666
-
-        Reviewed by Simon Hausmann.
-
-        TestController has been modified to get the local storage from
-        DUMPRENDERTREE_TEMP environment variable. If it's undefined
-        then it works with the default directory. The aim is for the parallelly
-        started WTRs to use separate directories. It was implemented for WK1
-        long time ago and it works fine.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-
-2012-10-15  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][WK2] Display page favicons in MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=99265
-
-        Reviewed by Gyuyoung Kim.
-
-        Display current page favicon in the URL bar.
-        This uses the new favicon database API in
-        EFL WebKit2.
-
-        * MiniBrowser/efl/main.c:
-        (on_favicon_received):
-        (on_view_icon_changed):
-        (window_create):
-
-2012-10-15  Simon Fraser  <simon.fraser@apple.com>
-
-        Update the url bar in MiniBrowser when getting the committed URL
-        https://bugs.webkit.org/show_bug.cgi?id=99388
-
-        Reviewed by Sam Weinig.
-
-        Fix both WK1 and WK2 window controllers to update the URL in the 
-        text field when transitioning to the committed URL. This fixes
-        the URL when dragging local files into the window.
-
-        * MiniBrowser/mac/WK1BrowserWindowController.m:
-        (-[WK1BrowserWindowController webView:didCommitLoadForFrame:]):
-        * MiniBrowser/mac/WK2BrowserWindowController.m:
-        (-[WK2BrowserWindowController updateTextFieldFromURL:]):
-        (-[WK2BrowserWindowController updateProvisionalURLForFrame:]):
-        (-[WK2BrowserWindowController updateCommittedURLForFrame:]):
-        (-[WK2BrowserWindowController didCommitLoadForFrame:]):
-
-2012-10-15  Ojan Vafai  <ojan@chromium.org>
-
-        Don't show the content shell and android test bots for webkit ToT
-        https://bugs.webkit.org/show_bug.cgi?id=99380
-
-        Reviewed by Dirk Pranke.
-
-        Content shell used to coincidentally be skipped because it spelled WebKit correctly.
-        Now skip it explicitly. The Android bot is up and running, but only has a stub for
-        running tests. Skip it so we don't show a false error.
-        * TestResultServer/static-dashboards/builders.js:
-        (isChromiumWebkitTipOfTreeTestRunner):
-
-2012-10-15  Zoltan Horvath  <zoltan@webkit.org>
-
-        Add MountainLion Performance-bot to the Performance bots waterfall link
-        https://bugs.webkit.org/show_bug.cgi?id=99378
-
-        Reviewed by Dirk Pranke.
-
-        Add MountainLion Performance-bot to the Performance bots waterfall link on the buildbots frontpage.
-
-        * BuildSlaveSupport/build.webkit.org-config/templates/root.html:
-
-2012-10-15  Yael Aharon  <yael.aharon@intel.com>
-
-        [EFL][WK2] Cannot set evas engine from command line
-        https://bugs.webkit.org/show_bug.cgi?id=99286
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        If an engine name is passed on the command line, pass it along to evas.
-
-        * MiniBrowser/efl/main.c:
-        (elm_main):
-
-2012-10-15  Ojan Vafai  <ojan@chromium.org>
-
-        Lower the minimum time required to keep a test in the test results json
-        https://bugs.webkit.org/show_bug.cgi?id=99346
-
-        Reviewed by Eric Seidel.
-
-        On the run-webkit-tests side, we floor the time. So, 5 seconds is too close to
-        the 6 second timeout. Lower the time so that we can get a better sense of tests
-        that are close to timing out.
-
-        * TestResultServer/model/jsonresults.py:
-        * TestResultServer/model/jsonresults_unittest.py:
-        (JsonResultsTest.test_merge_keep_test_with_all_pass_but_slow_time):
-
-2012-10-15  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r131306 and r131307.
-        http://trac.webkit.org/changeset/131306
-        http://trac.webkit.org/changeset/131307
-        https://bugs.webkit.org/show_bug.cgi?id=99354
-
-        It made layout testing extremely slow again (Requested by
-        Ossy_night on #webkit).
-
-        * WebKitTestRunner/Target.pri:
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::invoke):
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-        * WebKitTestRunner/TestInvocation.h:
-        (TestInvocation):
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::WrapperWindow::handleStatusChanged):
-        (WTR::PlatformWebView::windowSnapshotImage):
-        * WebKitTestRunner/qt/TestInvocationQt.cpp:
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-
-2012-10-15  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r131327.
-        http://trac.webkit.org/changeset/131327
-        https://bugs.webkit.org/show_bug.cgi?id=99353
-
-        broke the build (Requested by danakj|gardening on #webkit).
-
-        * DumpRenderTree/chromium/TestEventPrinter.cpp:
-        * DumpRenderTree/chromium/TestEventPrinter.h:
-        (TestEventPrinter):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::dump):
-
-2012-10-15  Kenichi Ishibashi  <bashi@chromium.org>
-
-        [WebSocket] Update pywebsocket to 0.7.8
-        https://bugs.webkit.org/show_bug.cgi?id=99293
-
-        Reviewed by Yuta Kitamura.
-
-        Version 0.7.8 supports WebSocket frames and messages compression
-        with blocks in which BFINAL bit is set to 1.
-        We need this feature to add a test case of compression extension.
-
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/extensions.py:
-        (DeflateFrameExtensionProcessor.__init__):
-        (DeflateFrameExtensionProcessor.set_bfinal):
-        (DeflateFrameExtensionProcessor._outgoing_filter):
-        (DeflateMessageProcessor.__init__):
-        (DeflateMessageProcessor.set_bfinal):
-        (DeflateMessageProcessor._process_outgoing_message):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/util.py:
-        (_Deflater.compress_and_finish):
-        (_RFC1979Deflater.filter):
-
-2012-10-15  Zan Dobersek  <zandobersek@gmail.com>
-
-        [TestResultServer] TestExpectations should only be loaded for the flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=99245
-
-        Reviewed by Ojan Vafai.
-
-        Only load the TestExpectations when using the flakiness dashboard. Other dashboards
-        don't need them so there's no reason to load them.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (isFlakinessDashboard):
-        (appendJSONScriptElements):
-
-2012-10-15  Zoltan Horvath  <zoltan@webkit.org>
-
-        [chromium] Provide used JSHeap size in chromium's DRT for pageloadtest memory measurements 
-        https://bugs.webkit.org/show_bug.cgi?id=99288
-
-        Reviewed by Ryosuke Niwa.
-
-        Provide used JSHeap size as we did it for the Apple port.
-
-        * DumpRenderTree/chromium/TestEventPrinter.cpp:
-        (TestEventPrinter::handleDumpMemoryHeader): Add new function to print the JSHeap memory result.
-        * DumpRenderTree/chromium/TestEventPrinter.h:
-        (TestEventPrinter): handleDumpMemoryHeader declaration.
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::dump): Dump JSHeap value.
-
-2012-10-15  George Staikos  <staikos@webkit.org>
-
-        [BlackBerry] Adapt to Platform API changes in string handling
-        https://bugs.webkit.org/show_bug.cgi?id=99248
-
-        Reviewed by Yong Li.
-
-        Convert usage of WebString, char* and std::string to BlackBerry::Platform::String.
-
-        * DumpRenderTree/blackberry/DumpRenderTree.cpp:
-        (BlackBerry::WebKit::DumpRenderTree::runTest):
-        * DumpRenderTree/blackberry/WorkQueueItemBlackBerry.cpp:
-        (LoadHTMLStringItem::invoke):
-        (ScriptItem::invoke):
-
-2012-10-15  Kangil Han  <kangil.han@samsung.com>
-
-        [EFL][EWebLauncher] Add encoding detector option.
-        https://bugs.webkit.org/show_bug.cgi?id=98726
-
-        Reviewed by Gyuyoung Kim.
-
-        Added an option to test WebCore's encoding detector functionality on EWebLauncher.
-        With this patch, EWebLauncher would display text correctly even if web page wouldn't specify charset information.
-
-        * EWebLauncher/main.c:
-        (_User_Arguments):
-        (windowCreate):
-        (parseUserArguments):
-
-2012-10-15  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Build fix for Mac debug build.
-
-        * TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp:
-
-2012-10-15  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt] Implement pixel snapshot generation in WTR
-        https://bugs.webkit.org/show_bug.cgi?id=95992
-
-        Reviewed by Jocelyn Turcotte.
-
-        Switch the Qt implementation of the PlatformWebView to use
-        QQuickWindow::grabWindow to generate the pixel results. This way
-        we will go through the scenegraph and test the actual rendering backend.
-        We use QQuickWindowPrivate::setRenderWithoutShowing to avoid the need of
-        showing the window.
-
-        * WebKitTestRunner/Target.pri: Had to added a bunch
-        of modules to be able to use QQuickWindowPrivate.
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::WrapperWindow::handleStatusChanged):
-        (WTR::PlatformWebView::windowSnapshotImage):
-
-2012-10-15  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt][WTR] Do a forced repaint before generating pixel results
-        https://bugs.webkit.org/show_bug.cgi?id=98654
-
-        Reviewed by Jocelyn Turcotte.
-
-        Do a forced repaint before grabbing the pixel snapshot. This extra
-        synchronisation is necessary with the CoordinatedGraphics rendering
-        backend because it has a fully asynchronous nature. This patch make
-        us using the window snapshot for pixel results which is necessary to
-        capture animations and other dynamic content. The actual grabbing of
-        the window has not been implemented in this patch. It will come in
-        a follow-up.
-
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::invoke):
-        (WTR::TestInvocation::dump): Store results in member variables.
-        Don't close output channels yet.
-        (WTR::TestInvocation::dumpResults): Added. This is where we dump
-        the results if no error happened.
-        (WTR):
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-        * WebKitTestRunner/TestInvocation.h:
-        (TestInvocation):
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::windowSnapshotImage):
-        * WebKitTestRunner/qt/TestInvocationQt.cpp:
-        (WTR::TestInvocation::forceRepaintDoneCallback):
-        (WTR):
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-
-2012-10-15  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Separate Qt WebKit into Qt WebKit and Qt WebKit Widgets
-        https://bugs.webkit.org/show_bug.cgi?id=88162
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Rename the QtWebKit module to QtWebKitWidgets.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * MiniBrowser/qt/raw/Target.pri:
-        * QtTestBrowser/QtTestBrowser.pro:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort._path_to_webcore_library):
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-        * WebKitTestRunner/Target.pri:
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/webkit_modules.prf:
-        * qmake/mkspecs/features/win32/default_post.prf:
-
-2012-10-11  Kinuko Yasuda  <kinuko@chromium.org>
-
-        [chromium] Removes unnecessary dependencies in DumpRenderTree.gyp
-        https://bugs.webkit.org/show_bug.cgi?id=99132
-
-        Reviewed by Kent Tamura.
-
-        Removing webkit_support:blob dependency for DumpRenderTree target as it doesn't seem necessary.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-10-15  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt][WK2] Buildfix for newer Qt5.
-        https://bugs.webkit.org/show_bug.cgi?id=99303
-
-        Reviewed by Simon Hausmann.
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::resizeTo):
-
-2012-10-14  Jon Lee  <jonlee@apple.com>
-
-        Allow notification origin permission request when no js callback is provided
-        https://bugs.webkit.org/show_bug.cgi?id=63615
-        <rdar://problem/11059590>
-
-        Reviewed by Sam Weinig.
-
-        Teach DRT to look at the existing entries in the permission hash map when permission is requested.
-
-        * DumpRenderTree/mac/MockWebNotificationProvider.h: Expose policyForOrigin.
-        * DumpRenderTree/mac/MockWebNotificationProvider.mm:
-        (-[MockWebNotificationProvider setWebNotificationOrigin:permission:]):
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:decidePolicyForNotificationRequestFromOrigin:listener:]): Look at whether a
-        policy for the origin already exists. If so, accept or deny the request as appropriate. Otherwise,
-        accept by default.
-
-2012-10-13  Zan Dobersek  <zandobersek@gmail.com>
-
-        [TestResultServer] Unit tests require an update after r131239
-        https://bugs.webkit.org/show_bug.cgi?id=99236
-
-        Reviewed by Ojan Vafai.
-
-        Replacing 'Webkit' with 'WebKit' in builder names througout the unit tests
-        after the Chromium builders have been renamed recently.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-
-2012-10-12  Zan Dobersek  <zandobersek@gmail.com>
-
-        [TestResultServer] Add support for non-Chromium TestExpectations files
-        https://bugs.webkit.org/show_bug.cgi?id=98422
-
-        Reviewed by Ojan Vafai.
-
-        Loads TestExpectations files for several other non-Chromium ports, parses them and
-        properly distributes them per various platforms.
-
-        * TestResultServer/static-dashboards/dashboard_base.js: g_expectations is replaced by
-        g_expectationsByPlatform, an object that holds raw TestExpectations file contents for
-        various platforms.
-        (requestExpectationsFiles): First traverses through the platforms tree to gather all
-        the TestExpectations files that should be loaded, then loads them in parallel.
-        (appendJSONScriptElements):
-        * TestResultServer/static-dashboards/flakiness_dashboard.js: The platforms tree is reorganized
-        to describe each platform and possible subplatforms plainly yet in detail. The PLATFORM_FALLBACKS
-        object is removed as it's not used anywhere. g_allTestsByPlatformAndBuildType is now filled by
-        traversing the platforms tree.
-        (traversePlatformsTree.traverse):
-        (traversePlatformsTree): A helper function that traverses the platforms tree, invoking
-        callback on each leaf node.
-        (determineWKPlatform): A helper function to determine whether the builder is running WebKit1 or
-        WebKit2 layer of a given platform.
-        (chromiumPlatform): Chromium-specific platforms are now properly prefixed with 'CHROMIUM_'.
-        (TestTrie): A new class that holds all the tests in a trie. The trie is constructed by iterating
-        through the tests for each builder, adding each test to the trie.
-        (TestTrie.prototype.forEach.traverse):
-        (TestTrie.prototype.forEach): A helper function that traverses the tests trie, invoking callback on each leaf.
-        (TestTrie.prototype._addTest): Aligns the test into the specified trie based on the test's path.
-        (getAllTestsTrie): Instead of in list, the problematic tests from each builder are now stored in a trie.
-        (individualTestsForSubstringList): Modified to traverse the trie instead of iterating the list.
-        (allTestsWithResult): Ditto.
-        (platformObjectForName): Splits the platform name by underscores and finds the appropriate platform object.
-        (getParsedExpectations): Now operates on the passed-in parameter rather than on a global variable.
-        (addTestToAllExpectationsForPlatform): Links expectations and modifiers to the test on the specified platform
-        and any build type the modifiers might apply to (or all build types if there are no such modifiers).
-        (processExpectationsForPlatform): Determines if the expectation should actually be processed for the given
-        platform by checking if any platform's fallback platforms support platform modifier unions and if any modifiers
-        represent such an union. If so, the expectation is then only processed if the given platform is in the union
-        the modifier presents or there are no such modifiers.
-        (processExpectations): Processes all acquired expectations by traversing the platforms tree and taking into
-        account possible fallback platforms.
-        (processTestRunsForBuilder):
-        (realModifiers.return.modifiers.filter):
-        (realModifiers): Modifiers other than build configurations and bug handles are now filtered out only if they
-        are present in the platform's platform modifier unions or represent subplatforms of a platform that supports
-        platform modifier unions.
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js: The test cases are updated and expanded
-        where necessary to cover the changes.
-        (resetGlobals):
-        (test): Added a TestTrie test.
-
-2012-10-12  Dirk Pranke  <dpranke@chromium.org>
-
-        Update chromium bot names in garden-o-matic.
-
-        Unreviewed, build fix.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-
-2012-10-12  Ojan Vafai  <ojan@chromium.org>
-
-        Fix bot name filters now that the Chromium bots have been renamed.
-        * TestResultServer/static-dashboards/builders.js:
-        (isChromiumWebkitTipOfTreeTestRunner):
-        (isChromiumWebkitDepsTestRunner):
-        (isChromiumTipOfTreeGTestRunner):
-
-2012-10-12  Dirk Pranke  <dpranke@chromium.org>
-
-        [chromium] add ML bot and update bot names
-        https://bugs.webkit.org/show_bug.cgi?id=99209
-
-        Reviewed by Eric Seidel.
-
-        This change adds proper baseline support for Mac10.8 (Mountain
-        Lion or ML) to chromium and updates the bot names from "Webkit" 
-        to "WebKit" and ensures that all the bots have the OS version in
-        the name on Mac and Win.
-
-        We don't yet include a ML bot in garden-o-matic since it isn't
-        green yet.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders_unittests.js:
-        (.):
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort):
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-        (FactoryTest.test_get_from_builder_name):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (TestRebaseline.test_baseline_directory):
-        (TestRebaseline.test_rebaseline_updates_expectations_file_noop):
-        (test_rebaseline_updates_expectations_file):
-        (test_rebaseline_does_not_include_overrides):
-        (test_rebaseline_test):
-        (test_rebaseline_test_and_print_scm_changes):
-        (test_rebaseline_and_copy_test):
-        (test_rebaseline_and_copy_test_with_lion_result):
-        (test_rebaseline_and_copy_no_overwrite_test):
-        (test_rebaseline_expectations):
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-        (BuildCoverageExtrapolatorTest.test_extrapolate):
-
-2012-10-12  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [Qt][WK2] REGRESSION(r131057): It made plugins/plugin-document-back-forward.html timeout
-        https://bugs.webkit.org/show_bug.cgi?id=99152
-
-        Reviewed by Simon Fraser.
-
-        Even though Response was already checked in WTR WKBundlePagePolicyClient decidePolicyForResponse callback,
-        this check did not take plugins into consideration when deciding whether we can show the given MIME type or not
-        so added another check in WTR UI process which also includes plugins.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::decidePolicyForResponse):
-        * WebKitTestRunner/TestController.h:
-        (TestController):
-
-2012-10-12  Rob Buis  <rbuis@rim.com>
-
-        [BlackBerry] Add tests of WebSocketEnabled preference
-        https://bugs.webkit.org/show_bug.cgi?id=84982
-
-        Reviewed by Yong Li.
-
-        PR 209265.
-
-        Allow WebSocketsEnabled preference setting.
-
-        * DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp:
-        (TestRunner::overridePreference):
-
-2012-10-12  Tommy Widenflycht  <tommyw@google.com>
-
-        Creating a MediaStream subscription in watchlist
-        https://bugs.webkit.org/show_bug.cgi?id=99172
-
-        Reviewed by Yuta Kitamura.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-10-12  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r131160.
-        http://trac.webkit.org/changeset/131160
-        https://bugs.webkit.org/show_bug.cgi?id=99163
-
-        "It should not be landed without it's follow-up because it
-        break pixal and ref tests without it." (Requested by kbalazs
-        on #webkit).
-
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::invoke):
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-        * WebKitTestRunner/TestInvocation.h:
-        (TestInvocation):
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::windowSnapshotImage):
-        * WebKitTestRunner/qt/TestInvocationQt.cpp:
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-
-2012-10-12  Jochen Eisinger  <jochen@chromium.org>
-
-        Create a separate gyp target for dependencies of DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=99023
-
-        Reviewed by Tony Chang.
-
-        This allows for pulling in the fonts and helpers required to run layout
-        tests in the content_shell without depending on DumpRenderTree.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-10-12  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt][WTR] Do a forced repaint before generating pixel results
-        https://bugs.webkit.org/show_bug.cgi?id=98654
-
-        Reviewed by Jocelyn Turcotte.
-
-        Do a forced repaint before grabbing the pixel snapshot. This extra
-        synchronisation is necessary with the CoordinatedGraphics rendering
-        backend because it has a fully asynchronous nature. This patch make
-        us using the window snapshot for pixel results which is necessary to
-        capture animations and other dynamic content. The actual grabbing of
-        the window has not been implemented in this patch. It will come in
-        a follow-up.
-
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::invoke):
-        (WTR::TestInvocation::dump): Store results in member variables.
-        Don't close output channels yet.
-        (WTR::TestInvocation::dumpResults): Added. This is where we dump
-        the results if no error happened.
-        (WTR):
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-        * WebKitTestRunner/TestInvocation.h:
-        (TestInvocation):
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::windowSnapshotImage):
-        * WebKitTestRunner/qt/TestInvocationQt.cpp:
-        (WTR::TestInvocation::forceRepaintDoneCallback):
-        (WTR):
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-
-2012-10-12  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Unreviewed compile error fix for chromium windows bot.
-
-        * TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp:
-
-2012-10-12  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Another unreviewed fix for clang builders.
-
-        * TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp:
-
-2012-10-12  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Unreviewed compile error fix for clang builders.
-
-        * TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp:
-
-2012-10-11  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Web Inspector: NMI move instrumentation tests from chromium test set to the cross platform test set.
-        https://bugs.webkit.org/show_bug.cgi?id=99046
-
-        Reviewed by Yury Semikhatsky.
-
-        * TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp:
-
-2012-10-11  Takashi Sakamoto  <tasak@google.com>
-
-        [WebKit IDL] remove all module from idl files.
-        https://bugs.webkit.org/show_bug.cgi?id=99007
-
-        Reviewed by Kentaro Hara.
-
-        Since current WebIDL spec doesn't support "module", remove
-        module from all idl files.
-
-        No new tests. I ran run-bindings-tests and no error was reported.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/AccessibilityController.idl:
-        * WebKitTestRunner/InjectedBundle/Bindings/AccessibilityTextMarker.idl:
-        * WebKitTestRunner/InjectedBundle/Bindings/AccessibilityTextMarkerRange.idl:
-        * WebKitTestRunner/InjectedBundle/Bindings/AccessibilityUIElement.idl:
-        * WebKitTestRunner/InjectedBundle/Bindings/EventSendingController.idl:
-        * WebKitTestRunner/InjectedBundle/Bindings/GCController.idl:
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/Bindings/TextInputController.idl:
-        Removed "module".
-
-2012-10-11  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r131107.
-        http://trac.webkit.org/changeset/131107
-        https://bugs.webkit.org/show_bug.cgi?id=99126
-
-        Causes an ASSERT (Requested by abarth|gardening on #webkit).
-
-        * DumpRenderTree/chromium/TestRunner/AccessibilityControllerChromium.cpp:
-        (AccessibilityController::getAccessibleElementById):
-        * DumpRenderTree/chromium/TestRunner/AccessibilityUIElementChromium.cpp:
-        (AccessibilityUIElement::titleUIElementCallback):
-
-2012-10-11  Seokju Kwon  <seokju.kwon@samsung.com>
-
-        [EFL][WK2] Add support for Inspector
-        https://bugs.webkit.org/show_bug.cgi?id=98639
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Enable developer extensions when browser is created.
-        And Inspector can be opened by pressing Ctrl+i on browser.
-
-        * MiniBrowser/efl/main.c:
-        (on_key_down):
-        (window_create):
-
-2012-10-11  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        [EFL] Remove "web" word in web inspector
-        https://bugs.webkit.org/show_bug.cgi?id=98724
-
-        Reviewed by Laszlo Gombos.
-
-        *web* word is redundant in web inspector. Beside r130494 and r130479 removed *web* from EFL WK2.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::createInspectorView):
-        (DumpRenderTreeChrome::removeInspectorView):
-        (DumpRenderTreeChrome::waitInspectorLoadFinished):
-        (DumpRenderTreeChrome::onInspectorViewCreate):
-        (DumpRenderTreeChrome::onInspectorViewClose):
-        (DumpRenderTreeChrome::onInspectorFrameLoadFinished):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.h:
-        (DumpRenderTreeChrome):
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        (TestRunner::showWebInspector):
-        (TestRunner::closeWebInspector):
-        * EWebLauncher/main.c:
-        (on_inspector_ecore_evas_resize):
-        (on_key_down):
-        (on_inspector_view_create):
-        (on_inspector_view_close):
-        (on_inspector_view_destroyed):
-        (browserCreate):
-        (webInspectorCreate):
-        (closeWindow):
-        (main_signal_exit):
-
-2012-10-11  Timothy Hatcher  <timothy@apple.com>
-
-        Unreviewed watch list addition for Inspector.json.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-10-11  Dominic Mazzoni  <dmazzoni@google.com>
-
-        AX: labelForElement is slow when there are a lot of DOM elements
-        https://bugs.webkit.org/show_bug.cgi?id=97825
-
-        Reviewed by Ryosuke Niwa.
-
-        Implement titleUIElement in the chromium port of DRT, and
-        fix getAccessibleElementById so that it ensures the backing store
-        is up-to-date.
-
-        * DumpRenderTree/chromium/TestRunner/AccessibilityControllerChromium.cpp:
-        (AccessibilityController::getAccessibleElementById):
-        * DumpRenderTree/chromium/TestRunner/AccessibilityUIElementChromium.cpp:
-        (AccessibilityUIElement::titleUIElementCallback):
-
-2012-10-11  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy runs individual tests twice
-        https://bugs.webkit.org/show_bug.cgi?id=99098
-
-        Reviewed by Adam Barth.
-
-        If you were to run 'test-webkitpy webkitpy.test.main_unittests.TesterTests.test_no_tests_found',
-        it would actually run the test twice. This fixes that.
-
-        * Scripts/webkitpy/test/main.py:
-        (Tester._parse_args):
-        (Tester._test_names):
-        * Scripts/webkitpy/test/main_unittest.py:
-        (TesterTest.test_no_tests_found):
-        (TesterTest):
-        (TesterTest.test_individual_names_are_not_run_twice):
-
-2012-10-11  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] Exception when the layout test driver is stopped
-        https://bugs.webkit.org/show_bug.cgi?id=99084
-
-        Reviewed by Dirk Pranke.
-
-        On chromium-android, the process is killed directly in ServerProcess.stop() as the pipes are closed first.
-        Should not try to read data from the pipes after the process is killed.
-
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        (ServerProcess.stop): Don't read data after the process is killed.
-
-2012-10-11  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        [GTK] REGRESSION(r131033): Favicons don't work in MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=99019
-
-        Reviewed by Carlos Garcia Campos.
-
-        Enable the favicons database by specifying the default path for
-        the directory where the actual data will be stored.
-
-        * MiniBrowser/gtk/main.c:
-        (main): Set the default directory for the favicon database calling
-        webkit_web_context_set_favicon_database_directory().
-
-2012-10-11  Sudarsana Nagineni  <sudarsana.nagineni@intel.com>
-
-        [EFL][WK2] NWTR should launch MiniBrowser instead of EWebLauncher after test run
-        https://bugs.webkit.org/show_bug.cgi?id=99075
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Pass the '-2' flag when executing run-launcher script after
-        testing with WebKitTestRunner.
-
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort.show_results_html_file):
-
-2012-10-11  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][WK2] Add support for Javascript popup boxes to MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=99021
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add support for JavaScript popups (alert, confirm, prompt)
-        to MiniBrowser.
-
-        * MiniBrowser/efl/main.c:
-        (miniBrowserViewSmartClass):
-        (browser_view_find):
-        (quit_event_loop):
-        (on_ok_clicked):
-        (on_javascript_alert):
-        (on_javascript_confirm):
-        (on_javascript_prompt):
-        (window_create):
-        (elm_main):
-
-2012-10-11  Ryuan Choi  <ryuan.choi@samsung.com>
-
-        [EFL][jhbuild] Disable elm-web in elementary
-        https://bugs.webkit.org/show_bug.cgi?id=99005
-
-        Reviewed by Laszlo Gombos.
-
-        * efl/jhbuild.modules: Added --disable-web to elementary.
-
-2012-10-11  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        REGRESSION (r129478-r129480): http/tests/loading/text-content-type-with-binary-extension.html failing on Apple MountainLion Debug WK2 (Tests)
-        https://bugs.webkit.org/show_bug.cgi?id=98527
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Added decidePolicyForResponse callback for WTR PagePolicyClient.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-        (WTR::TestController::decidePolicyForResponse):
-        (WTR):
-        * WebKitTestRunner/TestController.h:
-        (TestController):
-
-2012-10-11  Jocelyn Turcotte  <jocelyn.turcotte@digia.com>
-
-        [Qt] Make sure that -Wno-c++0x-compat is set even with production_build
-
-        Reviewed by Simon Hausmann.
-
-        This makes sure that QtWebKit can be built inside Qt without nullptr
-        and narrowing warnings producing noise during compilation.
-
-        * qmake/mkspecs/features/unix/default_post.prf:
-
-2012-10-11  Jinwoo Song  <jinwoo7.song@samsung.com>
-
-        [EFL][WK2] Revisit setting API names and documentation
-        https://bugs.webkit.org/show_bug.cgi?id=98793
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Make frame flattening setting APIs to be consistent with others.
-
-        * MiniBrowser/efl/main.c:
-        (window_create):
-
-2012-10-11 Vivek Galatage <vivekgalatage@gmail.com>
-
-        Fix committers.py for the names of contributors to appear on webkit.org/team.html
-        https://bugs.webkit.org/show_bug.cgi?id=99004
-
-        Reviewed by Yuta Kitamura
-
-        Some of the nicknames in the committers.py file are using the single quotes (')
-        but while parsing these, JSON throws an error: Single quotes (') are not allowed in JSON
-        Hence coverting these single quotes to (") so as the contributor names appear properly
-        on http://www.webkit.org/team.html
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-10-10  Lucas Forschler  <lforschler@apple.com>
-
-        Remove Apple Mac Snow Leopard bots.
-        
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-10-10  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][WK2] Add toolbar buttons to MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=98883
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add toolbar buttons to MiniBrowser to support
-        navigation back / forward, refresh and go
-        to home page.
-
-        * MiniBrowser/efl/main.c:
-        (_Browser_Window):
-        (on_back_forward_list_changed):
-        (on_back_button_clicked):
-        (on_forward_button_clicked):
-        (on_refresh_button_clicked):
-        (on_home_button_clicked):
-        (create_toolbar_button):
-        (window_create):
-
-2012-10-10  Andy Estes  <aestes@apple.com>
-
-        Fix the Lion build after r130948.
-
-        * TestWebKitAPI/Tests/WebKit2ObjC/UserContentTest.mm:
-
-2012-10-10  Andy Estes  <aestes@apple.com>
-
-        Speculative build fix for Snow Leopard after r130948.
-
-        * TestWebKitAPI/Tests/WebKit2ObjC/UserContentTest.mm: Pull the
-        declaration of backgroundColorQuery out of a block to appease GCC.
-
-2012-10-10  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [WK2][WTR] WebKitTestRunner UI process should be aware of Custom Policy Delegate
-        https://bugs.webkit.org/show_bug.cgi?id=95974
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Added TestController::decidePolicyForNavigationAction() function as a 'decidePolicyForNavigationAction' WKPagePolicyClient callback
-        for WTR UI process. WTR bundle client notifies UI process about Custom Policy Delegate via newly added message,
-        so that TestController is aware of whether Custom Policy Delegate as enabled and
-        permissive. This data is used then in TestController::decidePolicyForNavigationAction for making policy decision.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::setCustomPolicyDelegate):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (InjectedBundle):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::setCustomPolicyDelegate):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::TestController):
-        (WTR::TestController::initialize):
-        (WTR::TestController::resetStateToConsistentValues):
-        (WTR::TestController::setCustomPolicyDelegate):
-        (WTR):
-        (WTR::TestController::decidePolicyForNavigationAction):
-        * WebKitTestRunner/TestController.h:
-        (TestController):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-
-2012-10-10  Zoltan Horvath  <zoltan@webkit.org>
-
-        Pageload tests should measure memory usage
-        https://bugs.webkit.org/show_bug.cgi?id=93958
-
-        Reviewed by Ryosuke Niwa.
-
-        Add JS Heap and Heap memory measurement to PageLoad tests.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dump): Print memory results with DRT.
-        * Scripts/old-run-webkit-tests:
-        (readFromDumpToolWithTimer): Hadle memory results.
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (DriverOutput.__init__): Add new parameter for the results.
-        (Driver.__init__): Initialize the new parameter.
-        (Driver.run_test):
-        (Driver._read_first_block): Add support for the new headers.
-        (Driver._process_stdout_line):
-        (ContentBlock.__init__):
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PageLoadingPerfTest.calculate_statistics): Move statistics calculation into a function.
-        (PageLoadingPerfTest.run): Handle the new memory results.
-        (PageLoadingPerfTest.run.in):
-        (PageLoadingPerfTest):
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py: Add test for memory results of pageloadtests.
-        (TestPageLoadingPerfTest.MockDriver.__init__):
-        (TestPageLoadingPerfTest.MockDriver.run_test):
-        (TestPageLoadingPerfTest.test_run_with_memory_output):
-
-2012-10-04  Andy Estes  <aestes@apple.com>
-
-        [WebKit2] Create an API for adding and removing user stylesheets from a page group
-        https://bugs.webkit.org/show_bug.cgi?id=98432
-
-        Reviewed by Sam Weinig.
-
-        Add three new API tests:
-
-        - Test adding a user stylesheet before a page is created. This tests
-        the code path where the sheet is sent to the web process as part of
-        the new page's WebPageCreationParameters.
-        - Test adding a user stylesheet after a page is created. This tests the
-        code patch where the sheet is sent as a separate message to all
-        processes containing the given page group.
-        - Test removing all user stylesheets.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2ObjC/UserContentTest.mm: Added.
-        (-[UserContentTestLoadDelegate initWithBlockToRunOnLoad:]):
-        (-[UserContentTestLoadDelegate browsingContextControllerDidFinishLoad:]):
-        (expectScriptValue):
-        * TestWebKitAPI/Tests/WebKit2ObjC/WKBrowsingContextGroupTest.mm:
-
-2012-10-10  Dan Bernstein  <mitz@apple.com>
-
-        Changed debug-safari, debug-minibrowser and debug-test-runner to use LLDB by default when
-        using Xcode 4.5 or later.
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/webkitdirs.pm:
-        (determineDebugger): Changed the default debugger from GDB to LLDB when the Xcode version
-        is 4.5 or later. Added a --use-gdb switch for overriding this.
-        (printHelpAndExitForRunAndDebugWebKitAppIfNeeded): Updated to mention --use-gdb and the
-        how the default debugger choice depends on the Xcode version. Also changed the description
-        of --no-saved-state to use the same terminology Xcode’s scheme editor uses to describe this
-        option, and clarified to which OS X versions it applies.
-
-2012-10-10  Antonio Gomes  <agomes@rim.com>
-
-        Unreviewed watch list addition.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-10-10  Dirk Pranke  <dpranke@chromium.org>
-
-        NRWT crashes on too many timeouts
-        https://bugs.webkit.org/show_bug.cgi?id=97047
-
-        Reviewed by Tony Chang.
-
-        Apparently if you kill a subprocess directly python doesn't
-        auto-close the file descriptors.
-
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        (ServerProcess._reset):
-        * Scripts/webkitpy/layout_tests/port/server_process_unittest.py:
-
-2012-10-10  Zan Dobersek  <zandobersek@gmail.com>
-
-        [TestResultServer] Enable CORS for test files
-        https://bugs.webkit.org/show_bug.cgi?id=98918
-
-        Reviewed by Dirk Pranke.
-
-        Serve the JSON test files with the Access-Control-Allow-Origin
-        response header to enable cross-origin sharing of these files.
-        This eases up hacking on TestResultServer.
-
-        * TestResultServer/handlers/testfilehandler.py:
-        (GetFile._serve_json):
-
-2012-10-10  Andreas Kling  <kling@webkit.org>
-
-        Future-proof the WTF.DoubleHashCollisions test.
-        <http://webkit.org/b/98853>
-
-        Reviewed by Anders Carlsson.
-
-        Add a check that the two keys that are supposed to clobber each other actually end up
-        in the same bucket with the DefaultHash<double> hash function.
-
-        * TestWebKitAPI/Tests/WTF/HashMap.cpp:
-        (TestWebKitAPI::bucketForKey):
-        (TestWebKitAPI):
-        (TestWebKitAPI::TEST):
-
-2012-10-10  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt] Test drivers should handle repaint rects
-        https://bugs.webkit.org/show_bug.cgi?id=68870
-
-        Reviewed by Zoltan Herczeg.
-
-        Implemented masking the area not covered by repaint rects.
-        This is equivalent with the implementation for Mac.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::dump):
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        (TestRunner::display):
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        * WebKitTestRunner/qt/TestInvocationQt.cpp:
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-
-2012-10-10  Vivek Galatage  <vivekgalatage@gmail.com>
-
-        [Qt]QtTestBrowser should have default url(google.com) when no command line args
-        https://bugs.webkit.org/show_bug.cgi?id=98880
-
-        Reviewed by Simon Hausmann.
-
-        Making QtTestBrowser use www.google.com as default url when no arguments are passed
-
-        * QtTestBrowser/qttestbrowser.cpp:
-        (main):
-
-2012-10-10  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][WK2] Port MiniBrowser to Elementary
-        https://bugs.webkit.org/show_bug.cgi?id=98748
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Port MiniBrowser to Elementary to simplify the
-        code and make future improvements easier. The
-        URL bar is now an Elementary Entry widget and
-        supports additional functionality like copy /
-        paste.
-
-        * CMakeLists.txt:
-        * EWebLauncher/url_bar.c:
-        (on_urlbar_key_down): Remove WK2-specific code
-        now that this file is no longer used by MiniBrowser.
-        * MiniBrowser/efl/CMakeLists.txt:
-        * MiniBrowser/efl/main.c:
-        (_Browser_Window):
-        (window_free):
-        (window_close):
-        (view_focus_set):
-        (on_mouse_down):
-        (title_set):
-        (on_title_changed):
-        (on_url_changed):
-        (on_close_window):
-        (on_progress):
-        (quit):
-        (on_url_bar_activated):
-        (on_url_bar_clicked):
-        (on_window_deletion):
-        (window_create):
-        (elm_main):
-        * efl/jhbuild.modules: Add Elementary to jhbuild and bump
-        EFL dependencies to 1.7.
-
-2012-10-10  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2][SOUP] ResourceError.isCancellation() is not carried over IPC
-        https://bugs.webkit.org/show_bug.cgi?id=98882
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Do not display the error page in MiniBrowser if the loading
-        error corresponds to a cancellation.
-
-        * MiniBrowser/efl/main.c:
-        (on_error):
-
-2012-10-09  Jocelyn Turcotte  <jocelyn.turcotte@digia.com>
-
-        [Qt] WTR: Fix an assert triggered by EventSenderProxy::touchEnd
-        https://bugs.webkit.org/show_bug.cgi?id=98735
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        ASSERT: "itemForTouchPointId.isEmpty()" in file qt5/qtdeclarative/src/quick/items/qquickwindow.cpp, line 1563
-        This assert is caused by QQuickWindow not registering our TouchPointReleased
-        since it expects QTouchEvent::touchPointStates() to be filled by the event's sender.
-
-        This patch calculates the touchPointStates like QQuickWindowPrivate::touchEventWithPoints does.
-
-        * WebKitTestRunner/qt/EventSenderProxyQt.cpp:
-        (WTR::EventSenderProxy::sendTouchEvent):
-
-2012-10-10  Allan Sandfeld Jensen  <allan.jensen@digia.com>
-
-        [Qt] DumpRenderTree needs a beginDragWithFiles implementation
-        https://bugs.webkit.org/show_bug.cgi?id=50902
-
-        Reviewed by Simon Hausmann.
-
-        Implement support for beginDragWithFiles. This function similates dragging without going
-        though regular event handling. Which allows us to test effects of dropping files on
-        different elements.
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::EventSender):
-        (EventSender::mouseUp):
-        (EventSender::mouseMoveTo):
-        (EventSender::beginDragWithFiles):
-        * DumpRenderTree/qt/EventSenderQt.h:
-        (EventSender):
-
-2012-10-10  KwangYong Choi  <ky0.choi@samsung.com>
-
-        [EFL][WTR][CMake] Add a missing TestNetscapePlugin file
-        https://bugs.webkit.org/show_bug.cgi?id=98637
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        PluginScriptableObjectOverridesAllProperties.cpp is used during
-        plugins/npruntime/overrides-all-properties.html test introduced by r123936.
-
-        * DumpRenderTree/TestNetscapePlugIn/CMakeLists.txt:
-
-2012-10-10  Kenichi Ishibashi  <bashi@chromium.org>
-
-        Update pywebsocket to 0.7.7
-        https://bugs.webkit.org/show_bug.cgi?id=98872
-
-        Reviewed by Yuta Kitamura.
-
-        This version contains server-side permessage-compress extension support.
-        We need this version to add tests for permessage-compress extension.
-
-        I confirmed all tests under http/tests/websocket passed.
-
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/__init__.py:
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/_stream_hixie75.py:
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/_stream_hybi.py:
-        (parse_frame):
-        (FragmentedFrameBuilder.__init__):
-        (FragmentedFrameBuilder.build):
-        (create_closing_handshake_body):
-        (StreamOptions.__init__):
-        (Stream.__init__):
-        (Stream._receive_frame._receive_bytes):
-        (Stream._receive_frame):
-        (Stream.receive_filtered_frame):
-        (Stream.send_message):
-        (Stream._get_message_from_frame):
-        (Stream):
-        (Stream._process_close_message):
-        (Stream._process_ping_message):
-        (Stream._process_pong_message):
-        (Stream.receive_message):
-        (Stream._send_closing_handshake):
-        (Stream.get_last_received_opcode):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/common.py:
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/dispatch.py:
-        (Dispatcher.transfer_data):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/extensions.py:
-        (ExtensionProcessorInterface.name):
-        (DeflateStreamExtensionProcessor):
-        (DeflateStreamExtensionProcessor.name):
-        (_log_compression_ratio):
-        (_log_decompression_ratio):
-        (DeflateFrameExtensionProcessor):
-        (DeflateFrameExtensionProcessor.name):
-        (DeflateFrameExtensionProcessor._outgoing_filter):
-        (DeflateFrameExtensionProcessor._incoming_filter):
-        (CompressionExtensionProcessorBase):
-        (CompressionExtensionProcessorBase.for):
-        (CompressionExtensionProcessorBase.__init__):
-        (CompressionExtensionProcessorBase.name):
-        (CompressionExtensionProcessorBase._get_compression_processor_response):
-        (CompressionExtensionProcessorBase.set_compression_processor_hook):
-        (PerFrameCompressionExtensionProcessor):
-        (PerFrameCompressionExtensionProcessor.__init__):
-        (PerFrameCompressionExtensionProcessor.name):
-        (PerFrameCompressionExtensionProcessor._lookup_compression_processor):
-        (DeflateMessageProcessor):
-        (DeflateMessageProcessor.__init__):
-        (DeflateMessageProcessor.name):
-        (DeflateMessageProcessor.get_extension_response):
-        (DeflateMessageProcessor.setup_stream_options):
-        (DeflateMessageProcessor.setup_stream_options._OutgoingMessageFilter):
-        (DeflateMessageProcessor.setup_stream_options._OutgoingMessageFilter.__init__):
-        (DeflateMessageProcessor.setup_stream_options._OutgoingMessageFilter.filter):
-        (DeflateMessageProcessor.setup_stream_options._IncomingMessageFilter):
-        (DeflateMessageProcessor.setup_stream_options._IncomingMessageFilter.__init__):
-        (DeflateMessageProcessor.setup_stream_options._IncomingMessageFilter.decompress_next_message):
-        (DeflateMessageProcessor.setup_stream_options._IncomingMessageFilter.filter):
-        (DeflateMessageProcessor.setup_stream_options._OutgoingFrameFilter):
-        (DeflateMessageProcessor.setup_stream_options._OutgoingFrameFilter.__init__):
-        (DeflateMessageProcessor.setup_stream_options._OutgoingFrameFilter.set_compression_bit):
-        (DeflateMessageProcessor.setup_stream_options._OutgoingFrameFilter.filter):
-        (DeflateMessageProcessor.setup_stream_options._IncomingFrameFilter):
-        (DeflateMessageProcessor.setup_stream_options._IncomingFrameFilter.__init__):
-        (DeflateMessageProcessor.setup_stream_options._IncomingFrameFilter.filter):
-        (DeflateMessageProcessor.set_c2s_max_window_bits):
-        (DeflateMessageProcessor.set_c2s_no_context_takeover):
-        (DeflateMessageProcessor.enable_outgoing_compression):
-        (DeflateMessageProcessor.disable_outgoing_compression):
-        (DeflateMessageProcessor._process_incoming_message):
-        (DeflateMessageProcessor._process_outgoing_message):
-        (DeflateMessageProcessor._process_incoming_frame):
-        (DeflateMessageProcessor._process_outgoing_frame):
-        (PerMessageCompressionExtensionProcessor):
-        (PerMessageCompressionExtensionProcessor.__init__):
-        (PerMessageCompressionExtensionProcessor.name):
-        (PerMessageCompressionExtensionProcessor._lookup_compression_processor):
-        (MuxExtensionProcessor):
-        (MuxExtensionProcessor.__init__):
-        (MuxExtensionProcessor.name):
-        (MuxExtensionProcessor.get_extension_response):
-        (MuxExtensionProcessor.setup_stream_options):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/__init__.py:
-        (do_handshake):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/_base.py:
-        (validate_subprotocol):
-        (check_request_line):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/draft75.py: Removed.
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/hybi.py:
-        (Handshaker.do_handshake):
-        (Handshaker._set_protocol):
-        (Handshaker._create_stream):
-        (Handshaker):
-        (Handshaker._create_handshake_response):
-        (Handshaker._send_handshake):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/headerparserhandler.py:
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/msgutil.py:
-        (send_message):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/mux.py: Added.
-        (MuxUnexpectedException):
-        (MuxNotImplementedException):
-        (LogicalConnectionClosedException):
-        (PhysicalConnectionError):
-        (PhysicalConnectionError.__init__):
-        (LogicalChannelError):
-        (LogicalChannelError.__init__):
-        (_encode_channel_id):
-        (_encode_number):
-        (_create_add_channel_response):
-        (_create_drop_channel):
-        (_create_flow_control):
-        (_create_new_channel_slot):
-        (_create_fallback_new_channel_slot):
-        (_parse_request_text):
-        (_ControlBlock):
-        (_ControlBlock.__init__):
-        (_MuxFramePayloadParser):
-        (_MuxFramePayloadParser.that):
-        (_MuxFramePayloadParser.__init__):
-        (_MuxFramePayloadParser.read_channel_id):
-        (_MuxFramePayloadParser.read_inner_frame):
-        (_MuxFramePayloadParser._read_number):
-        (_MuxFramePayloadParser._read_size_and_contents):
-        (_MuxFramePayloadParser._read_add_channel_request):
-        (_MuxFramePayloadParser._read_add_channel_response):
-        (_MuxFramePayloadParser._read_flow_control):
-        (_MuxFramePayloadParser._read_drop_channel):
-        (_MuxFramePayloadParser._read_new_channel_slot):
-        (_MuxFramePayloadParser.read_control_blocks):
-        (_MuxFramePayloadParser.remaining_data):
-        (_LogicalRequest):
-        (_LogicalRequest.__init__):
-        (_LogicalRequest.is_https):
-        (_LogicalConnection):
-        (_LogicalConnection.__init__):
-        (_LogicalConnection.get_local_addr):
-        (_LogicalConnection.get_remote_addr):
-        (_LogicalConnection.get_memorized_lines):
-        (_LogicalConnection.write):
-        (_LogicalConnection.write_control_data):
-        (_LogicalConnection.notify_write_done):
-        (_LogicalConnection.append_frame_data):
-        (_LogicalConnection.read):
-        (_LogicalConnection.set_read_state):
-        (_LogicalStream):
-        (_LogicalStream.interprets):
-        (_LogicalStream.__init__):
-        (_LogicalStream._create_inner_frame):
-        (_LogicalStream._write_inner_frame):
-        (_LogicalStream.replenish_send_quota):
-        (_LogicalStream.consume_receive_quota):
-        (_LogicalStream.send_message):
-        (_LogicalStream._receive_frame):
-        (_LogicalStream.receive_message):
-        (_LogicalStream._send_closing_handshake):
-        (_LogicalStream.send_ping):
-        (_LogicalStream._send_pong):
-        (_LogicalStream.close_connection):
-        (_LogicalStream._drain_received_data):
-        (_OutgoingData):
-        (_OutgoingData.__init__):
-        (_PhysicalConnectionWriter):
-        (_PhysicalConnectionWriter.__init__):
-        (_PhysicalConnectionWriter.put_outgoing_data):
-        (_PhysicalConnectionWriter._write_data):
-        (_PhysicalConnectionWriter.run):
-        (_PhysicalConnectionWriter.stop):
-        (_PhysicalConnectionReader):
-        (_PhysicalConnectionReader.__init__):
-        (_PhysicalConnectionReader.run):
-        (_Worker):
-        (_Worker.__init__):
-        (_Worker.run):
-        (_MuxHandshaker):
-        (_MuxHandshaker.__init__):
-        (_MuxHandshaker._create_stream):
-        (_MuxHandshaker._create_handshake_response):
-        (_MuxHandshaker._send_handshake):
-        (_LogicalChannelData):
-        (_LogicalChannelData.__init__):
-        (_HandshakeDeltaBase):
-        (_HandshakeDeltaBase.that):
-        (_HandshakeDeltaBase.__init__):
-        (_HandshakeDeltaBase.create_headers):
-        (_MuxHandler):
-        (_MuxHandler.are):
-        (_MuxHandler.__init__):
-        (_MuxHandler.start):
-        (_MuxHandler.add_channel_slots):
-        (_MuxHandler.wait_until_done):
-        (_MuxHandler.notify_write_done):
-        (_MuxHandler.send_control_data):
-        (_MuxHandler.send_data):
-        (_MuxHandler._send_drop_channel):
-        (_MuxHandler._send_error_add_channel_response):
-        (_MuxHandler._create_logical_request):
-        (_MuxHandler._do_handshake_for_logical_request):
-        (_MuxHandler._add_logical_channel):
-        (_MuxHandler._process_add_channel_request):
-        (_MuxHandler._process_flow_control):
-        (_MuxHandler._process_drop_channel):
-        (_MuxHandler._process_control_blocks):
-        (_MuxHandler._process_logical_frame):
-        (_MuxHandler.dispatch_message):
-        (_MuxHandler.notify_worker_done):
-        (_MuxHandler.notify_reader_done):
-        (_MuxHandler.fail_physical_connection):
-        (_MuxHandler.fail_logical_channel):
-        (use_mux):
-        (start):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/standalone.py:
-        (_StandaloneRequest.get_protocol):
-        (_StandaloneRequest):
-        (_alias_handlers):
-        (WebSocketServer.__init__):
-        (WebSocketServer._create_sockets):
-        (WebSocketServer.server_bind):
-        (WebSocketServer.server_activate):
-        (WebSocketRequestHandler.parse_request):
-        (_configure_logging):
-        (_build_option_parser):
-        (_main):
-        (_main.if):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/stream.py:
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/util.py:
-        (_Deflater.compress):
-        (_RFC1979Deflater.filter):
-
-2012-10-09  Damian Kaleta  <dkaleta@apple.com>
-
-        extract-localizable-strings script should be able to handle paths to files containing whitespaces.
-        https://bugs.webkit.org/show_bug.cgi?id=98844
-
-        Reviewed by Dan Bernstein.
-
-        * Scripts/extract-localizable-strings: Added ability to handle whitespace.
-
-2012-10-09  Sudarsana Nagineni  <sudarsana.nagineni@intel.com>
-
-        [Cairo] Bump Cairo to fix more canvas/philip tests
-        https://bugs.webkit.org/show_bug.cgi?id=97658
-
-        Reviewed by Martin Robinson.
-
-        Bumping cairo to version 1.12.4 which fixes more canvas/philip tests.
-
-        * efl/jhbuild.modules:
-        * gtk/jhbuild.modules:
-
-2012-10-09  Julien Chaffraix  <jchaffraix@webkit.org>
-
-        Unreviewed Chromium Windows build fix after r130823.
-
-        * DumpRenderTree/chromium/TestRunner/AccessibilityUIElementChromium.cpp:
-        (roleToString): Re-added the 'default' label as some cases are not handled.
-
-2012-10-09  Sadrul Habib Chowdhury  <sadrul@chromium.org>
-
-        [chromium] Add drop event for plugins.
-        https://bugs.webkit.org/show_bug.cgi?id=98827
-
-        Reviewed by Adam Barth.
-
-        Update the test plugin to receive drop events.
-
-        * DumpRenderTree/chromium/TestWebPlugin.cpp:
-        (TestWebPlugin::handleDragStatusUpdate):
-
-2012-10-09  Dominic Mazzoni  <dmazzoni@google.com>
-
-        AX: 5 accessibility tests just need minor tweaks to pass on chromium
-        https://bugs.webkit.org/show_bug.cgi?id=98311
-
-        Reviewed by Chris Fleizach.
-
-        Update roleToString on Chromium to include all missing roles,
-        which enables some layout tests to pass.
-
-        * DumpRenderTree/chromium/TestRunner/AccessibilityUIElementChromium.cpp:
-        (roleToString):
-
-2012-10-09  Dirk Pranke  <dpranke@chromium.org>
-
-        webkit-patch rebaseline-expectations doesn't work w/o failures specified
-        https://bugs.webkit.org/show_bug.cgi?id=98810
-
-        Reviewed by Ojan Vafai.
-
-        If you try to mark a test as foo.html [ Rebaseline ] it wasn't
-        getting picked up for rebaselining; we needed to think the test
-        was failing.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectations.get_rebaselining_failures):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (RebaseliningTest.test_get_rebaselining_failures):
-
-2012-10-09  Daniel Bates  <dbates@webkit.org>
-
-        VCSUtils.pm doesn't support SVN 1.7 diff files
-        <https://bugs.webkit.org/show_bug.cgi?id=80762>
-
-        Reviewed by Eric Seidel.
-
-        Implement support for the SVN 1.7 diff format.
-
-        * Scripts/VCSUtils.pm:
-        (parseChunkRange): Modified to support parsing an SVN 1.7 chunk range
-        that begins and ends with "##" (e.g. ## -0,0 +1,7 ##). For comparison,
-        earlier versions of SVN parsed chunk ranges of the form "@@ -0,0 +1,7 @@".
-
-        (parseSvnDiffHeader): Modified to parse an SVN 1.7 binary diff; SVN 1.7
-        has an unusual display format for a binary diff. It repeats the first
-        two lines of the diff header.
-
-        (parseSvnProperty): Modified to ignore both an SVN 1.7 chunk range and
-        lines of the form "\ No newline at end of property". SVN 1.7 emits the latter
-        message after a property value that doesn't end in a newline.
-
-        (parseSvnPropertyValue): Stop parsing an SVN property value when we encounter
-        a line of the form "\ No newline at end of property" (emitted by svn diff as of
-        SVN 1.7).
-
-        * Scripts/webkitperl/VCSUtils_unittest/parseChunkRange.pl:
-          - Added the following unit tests:
-          "Line count is 0"
-          "New line count is 1"
-
-        * Scripts/webkitperl/VCSUtils_unittest/parseSvnDiffFooter.pl:
-          - Added the following unit tests:
-          "svn:executable followed by custom property using SVN 1.7 syntax"
-          "svn:executable followed by custom property without newline using SVN 1.7 syntax"
-
-        * Scripts/webkitperl/VCSUtils_unittest/parseSvnDiffHeader.pl:
-          - Updated test results for test "binary file".
-          - Added unit test "binary file using SVN 1.7 syntax".
-
-        * Scripts/webkitperl/VCSUtils_unittest/parseSvnProperty.pl:
-          - Added the following unit tests:
-          "simple: add svn:executable using SVN 1.7 syntax"
-          "simple: delete svn:executable using SVN 1.7 syntax"
-          "add svn:mime-type and add svn:executable using SVN 1.7 syntax"
-
-        * Scripts/webkitperl/VCSUtils_unittest/parseSvnPropertyValue.pl:
-          - Added the following unit tests:
-          "singe-line '+' change using SVN 1.7 syntax"
-          "single-line '-' change using SVN 1.7 syntax"
-
-2012-10-09  James Robinson  <jamesr@chromium.org>
-
-        Unreviewed, rolling out r128488.
-        http://trac.webkit.org/changeset/128488
-        https://bugs.webkit.org/show_bug.cgi?id=96678
-
-        The bot is fixed now
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-        (.):
-
-2012-10-09  Zan Dobersek  <zandobersek@gmail.com>
-
-        XvfbDriver unit test is flaky on Linux builders
-        https://bugs.webkit.org/show_bug.cgi?id=98346
-
-        Reviewed by Adam Barth.
-
-        Temporarily skip the XvfbDriver test case that tests
-        the display number of the next free display. The test
-        is flaky on Linux builders.
-
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver_unittest.py:
-        (XvfbDriverTest.disabled_test_next_free_display):
-
-2012-10-09  Ojan Vafai  <ojan@chromium.org>
-
-        Don't duplicated build numbers when merging flakiness dashboard JSON
-        https://bugs.webkit.org/show_bug.cgi?id=98812
-
-        Reviewed by Dirk Pranke.
-
-        In general, build numbers are not unique, but we should basically never
-        get the same build number uploaded twice in a row. This is a workaround
-        for https://bugs.webkit.org/show_bug.cgi?id=97643, which frequently hits this
-        because we update results_small.json and timeout updating results.json and then
-        we retry the whole request.
-
-        * TestResultServer/model/jsonresults.py:
-        (JsonResults.merge):
-        * TestResultServer/model/jsonresults_unittest.py:
-        (JsonResultsTest.test_merge_duplicate_build_number):
-
-2012-10-09  Alexis Menard  <alexis@webkit.org>
-
-        [GTK] Shadow builds are not working anymore.
-        https://bugs.webkit.org/show_bug.cgi?id=98785
-
-        Reviewed by Martin Robinson.
-
-        When setting WEBKITOUTPUTDIR the build was failing with a python
-        error : the os.execve expect three arguments. Also the condition
-        to check whether we build the GTK port with jhbuild or not was buggy
-        as it was always assuming an in source build. We can use now jhbuildutils
-        which has a convenient function to locate the directory where 
-        the dependencies built with jhbuild are and take into account WEBKITOUTPUTDIR.
-        If the Dependencies path does not exist then the build was not done using
-        jhbuild so we can fallback to a regular build against system libraries.
-
-        * gtk/run-with-jhbuild:
-
-2012-10-08  Simon Fraser  <simon.fraser@apple.com>
-
-        Remove DRT/WTR implementations of layerTreeAsText
-        https://bugs.webkit.org/show_bug.cgi?id=98697
-
-        Reviewed by Tim Horton, James Robinson, Alexey Proskuryakov.
-
-        Remove code related to layerTreeAsText(), which is now on window.internals.
-
-        * DumpRenderTree/TestRunner.cpp:
-        (TestRunner::staticFunctions):
-        * DumpRenderTree/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp:
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        * DumpRenderTree/gtk/TestRunnerGtk.cpp:
-        * DumpRenderTree/mac/TestRunnerMac.mm:
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunner):
-        * DumpRenderTree/win/TestRunnerWin.cpp:
-        * DumpRenderTree/wx/TestRunnerWx.cpp:
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-
-2012-10-09  Zoltan Horvath  <zoltan@webkit.org>
-
-        Unreviewed. Remove myself from QtWebKit2 subscriptions.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-10-09  Harald Alvestrand  <hta@google.com>
-
-        Change PeerConnection getStats function to single value local / remote
-        elements in RTCStatsReport.
-        https://bugs.webkit.org/show_bug.cgi?id=98753
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (MockWebRTCPeerConnectionHandler::getStats):
-
-2012-10-09  Sadrul Habib Chowdhury  <sadrul@chromium.org>
-
-        [chromium] Make sure events are transformed correctly for plugins.
-        https://bugs.webkit.org/show_bug.cgi?id=89250
-
-        Reviewed by Tony Chang.
-
-        Update the test plugin to print event details for mouse and gesture events.
-
-        * DumpRenderTree/chromium/TestWebPlugin.cpp:
-        (printEventDetails):
-
-2012-10-09  Simon Hausmann  <simon.hausmann@digia.com>
-
-        Unreviewed trivial Qt build fix: Remove stray closing braces from r130758.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-10-09  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Clean up Qt module detection
-
-        Reviewed by Tor Arne Vestbø.
-
-        Replace the use of MOBILITY_CONFIG (not supported anymore) with modern use of haveQtModule.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-10-09  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [GTK] Respect WEBKITOUTPUTDIR in run-with-jhbuild.
-        https://bugs.webkit.org/show_bug.cgi?id=98732
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Follow-up to r113066: if the WEBKITOUTPUTDIR environment variable
-        was used when running update-webkitgtk-libs,
-        WebKitBuild/Dependencies will not exist, so we now check its
-        contents first and then fall back to WebKitBuild/.
-
-        * gtk/run-with-jhbuild:
-
-2012-10-09  Zan Dobersek  <zandobersek@gmail.com>
-
-        Unreviewed GTK gardening.
-
-        Skipping the accept-policy test in TestCookieManager API test that's
-        currently failing. The test failure is covered by
-        https://bugs.webkit.org/show_bug.cgi?id=98738.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner):
-
-2012-10-09  Laszlo Gombos  <l.gombos@samsung.com>
-
-        [Qt] Remove redundant JAVASCRIPTCORE_JIT variable
-        https://bugs.webkit.org/show_bug.cgi?id=50000
-
-        Reviewed by Simon Hausmann.
-
-        Use ENABLE_JIT instead.
-
-        * qmake/mkspecs/features/valgrind.prf:
-
-2012-10-08  Kiran Muppala  <cmuppala@apple.com>
-
-        Throttle DOM timers on hidden pages.
-        https://bugs.webkit.org/show_bug.cgi?id=98474
-
-        Reviewed by Maciej Stachowiak.
-
-        Implement testRunner.setPageVisibility on mac for testing throttling
-        of timers on hidden pages using DumpRenderTree.
-
-        * DumpRenderTree/mac/Configurations/Base.xcconfig:
-        Fix build error on mac-ews bot.  Add JSC copy of ICU headers to search path.
-
-        * DumpRenderTree/mac/TestRunnerMac.mm:
-        (TestRunner::resetPageVisibility):
-        (TestRunner::setPageVisibility):
-
-2012-10-08  Dirk Pranke  <dpranke@chromium.org>
-
-        results.html and garden-o-matic are ignoring IMAGE failures when expected to FAIL
-        https://bugs.webkit.org/show_bug.cgi?id=98706
-
-        Reviewed by Ojan Vafai.
-
-        FAIL is supposed to map onto Failure which is supposed to map
-        onto the old [ TEXT, IMAGE_PLUS_TEXT, AUDIO ] mapping.
-        results.html was including IMAGE in this and garden-o-matic was
-        including CRASH and TIMEOUT as well :(.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results_unittests.js:
-
-2012-10-08  Ryuan Choi  <ryuan.choi@samsung.com>
-
-        [EFL] Build ControlTheme only when necessary
-        https://bugs.webkit.org/show_bug.cgi?id=98519
-
-        Reviewed by Eric Seidel.
-
-        * EWebLauncher/ControlTheme/CMakeLists.txt:
-        Added custom command keyword not to build ControlTheme every time.
-        In addition, removed `ALL` keyword because targets, which use ControlTheme,
-        already have dependency.
-
-2012-10-08  Peter Rybin  <peter.rybin@gmail.com>
-
-        Do not swallow fatal messages in qt/DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=98211
-
-        Reviewed by Eric Seidel.
-
-        Fix condition in message type filtering.
-
-        * DumpRenderTree/qt/DumpRenderTreeMain.cpp:
-        (messageHandler):
-
-2012-10-08  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
-
-        Unreviewed. Moving myself from Committer to Reviewer list.
-        http://lists.webkit.org/pipermail/webkit-dev/2012-October/022460.html
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-10-08  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: [chromium] run http tests in parallel on bigger machines
-        https://bugs.webkit.org/show_bug.cgi?id=98562
-
-        Reviewed by Eric Seidel.
-
-        The "locked tests" shard (which includes the http tests and the
-        perf tests) is the long pole on machines where we have 4 or more
-        workers, so we should start making sure that
-        we can run http tests in parallel, following the normal sharding
-        rules (all tests in the same directory are in the same shard by
-        default). We should still probably limit the number of workers
-        hitting the web server in parallel where we can; a heuristic of
-        no more than 25% of them seems okay for a start. This will
-        likely only affect developer workstations and a couple of bots
-        at first, so should be low risk and a good reward.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.default_max_locked_shards):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.default_max_locked_shards):
-        * Scripts/webkitpy/layout_tests/port/chromium_port_testcase.py:
-        (ChromiumPortTestCase.test_default_max_locked_shards):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (PortTestCase.test_default_max_locked_shards):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (_set_up_derived_options):
-        (parse_args):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_max_locked_shards):
-
-2012-10-08  Zan Dobersek  <zandobersek@gmail.com>
-
-        GTK port should warn if bug modifier is missing in TestExpectations
-        https://bugs.webkit.org/show_bug.cgi?id=98678
-
-        Reviewed by Dirk Pranke.
-
-        Reimplement the warn_if_bug_missing_in_test_expectations method in
-        GtkPort, returning True for producing a warning in such cases.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort.warn_if_bug_missing_in_test_expectations):
-
-2012-10-08  Ryuan Choi  <ryuan.choi@samsung.com>
-
-        [EFL][DRT] Switch default backing store to single
-        https://bugs.webkit.org/show_bug.cgi?id=98591
-
-        Reviewed by Eric Seidel.
-
-        There are two backing stores for WebKit/Efl, Single Backing Store(SBS) and
-        Tiled Backing Store(TBS), and DRT/Efl has used TBS.
-        But, TBS is not suitable to run pixel tests because it does not have a good way
-        to render mock scrollbars well.
-
-        So, this patch changes the default backing store to SBS.
-        In addition, this changes the environment variable from DRT_USE_SINGLE_BACKING_STORE
-        to DRT_USE_TILED_BACKING_STORE.
-
-        * DumpRenderTree/efl/DumpRenderTreeView.cpp:
-        (shouldUseTiledBackingStore):
-        (chooseAndInitializeAppropriateSmartClass):
-
-2012-10-08  Sudarsana Nagineni  <sudarsana.nagineni@intel.com>
-
-        [WK2][WTR] WebKitTestRunner needs testRunner.dispatchPendingLoadRequests
-        https://bugs.webkit.org/show_bug.cgi?id=98638
-
-        Reviewed by Eric Seidel.
-
-        Add implementation for testRunner.dispatchPendingLoadRequests in
-        WebKitTestRunner.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::dispatchPendingLoadRequests):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-
-2012-10-08  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][WK2] Add support for window.close in Minibrowser
-        https://bugs.webkit.org/show_bug.cgi?id=98667
-
-        Reviewed by Laszlo Gombos.
-
-        When calling window.close() from JavaScript, MiniBrowser
-        now closes the given window.
-
-        * MiniBrowser/efl/main.c:
-        (window_close):
-        (on_ecore_evas_delete):
-        (on_close_window):
-        (window_create):
-
-2012-10-08  Ojan Vafai  <ojan@chromium.org>
-
-        Properly strip new tests from the test results json if they are pass/nodata/skip.
-        https://bugs.webkit.org/show_bug.cgi?id=98669
-
-        Reviewed by Eric Seidel.
-
-        In _merge_json, we had a codepath that didn't call _normalize_results_json
-        for tests that aren't already in the aggregated results.
-        Instead, now do all the merging first and then normalize the aggregated results.
-
-        * TestResultServer/model/jsonresults.py:
-        (JsonResults._merge_json):
-        (JsonResults._merge_tests):
-        (JsonResults._normalize_results):
-        (JsonResults):
-        (JsonResults._should_delete_leaf):
-        * TestResultServer/model/jsonresults_unittest.py:
-        Removed test_merge_build_directory_hierarchy_old_version since there is
-        no longer any version 3 json to support.
-        (JsonResultsTest.test_merge_remove_new_test):
-        (JsonResultsTest.test_merge_prune_extra_results_with_new_result_of_same_type):
-
-2012-10-08  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][WK2] Simplify frame flattening support in MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=98657
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Simplify frame flattening support code in MiniBrowser to
-        avoid passing the setting around to window_create()
-        function().
-
-        * MiniBrowser/efl/main.c:
-        (on_key_down):
-        (on_new_window):
-        (window_create):
-        (main):
-
-2012-10-08  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Use Ctrl+n shortcut to create a new window in MiniBrowser / EWebLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=98655
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Use "Ctrl+n" shortcut instead of "F9" to open a new window in
-        MiniBrowser and EWebLauncher. This is the shortcut that is
-        commonly used for this action.
-
-        * EWebLauncher/main.c:
-        (on_key_down):
-        * MiniBrowser/efl/main.c:
-        (on_key_down):
-
-2012-10-08  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][WK2] Add support for window.create in Minibrowser
-        https://bugs.webkit.org/show_bug.cgi?id=98649
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Calling window.create() from JavaScript now creates a
-        new window in Minibrowser, as directed.
-
-        * MiniBrowser/efl/main.c:
-        (on_new_window):
-        (window_create):
-
-2012-10-08  Andreas Kling  <kling@webkit.org>
-
-        Using float/double as WTF hash table key is unreliable.
-        <http://webkit.org/b/98627>
-
-        Reviewed by Geoffrey Garen.
-
-        Add a test case checking that using double as the hash table key type won't
-        have problems distinguishing between keys that are considered equal by operator==
-        but have different binary representations.
-
-        * TestWebKitAPI/Tests/WTF/HashMap.cpp:
-        (TestDoubleHashTraits):
-
-2012-10-08  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][WK2] Use URL instead of URI in the API
-        https://bugs.webkit.org/show_bug.cgi?id=98643
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Update Minibrowser to reflect API changes. We now
-        use URL instead of URI in WK2 EFL API.
-
-        * EWebLauncher/url_bar.c:
-        (on_urlbar_key_down):
-        * MiniBrowser/efl/CMakeLists.txt:
-        * MiniBrowser/efl/main.c:
-        (on_url_changed):
-        (window_create):
-
-2012-10-08  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt] Reenable plugin tests
-        https://bugs.webkit.org/show_bug.cgi?id=98528
-
-        Reviewed by Csaba Osztrogonác.
-
-        Uncomment this function so we can pick up the test plugin.
-        It was commented out because of https://bugs.webkit.org/show_bug.cgi?id=86620
-        and that bug seems to be fixed now.
-
-        * WebKitTestRunner/qt/TestControllerQt.cpp:
-        (WTR::TestController::initializeTestPluginDirectory):
-
-2012-10-08  Jinwoo Song  <jinwoo7.song@samsung.com>
-
-        [EFL][WK2] Support multiple window creation for MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=97884
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Implement the multiple window creation for MiniBrowser and bind the 'F9' key for opening a new window.
-        Also, refactored MiniBrowser codes according to EFL coding style.
-
-        * MiniBrowser/efl/main.c:
-        (_Browser_Window):
-        (window_free):
-        (main_signal_exit):
-        (on_ecore_evas_delete):
-        (on_ecore_evas_resize):
-        (on_key_down):
-        (on_title_changed):
-        (on_url_changed):
-        (on_progress):
-        (window_create):
-        (main):
-
-2012-10-07  Seokju Kwon  <seokju.kwon@samsung.com>
-
-        [EFL] Add Web Inspector to EWebLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=91718
-
-        Reviewed by Gyuyoung Kim.
-
-        Implementation of Web Inspector in EWebLauncher.
-        The Web Inspector can be opened or closed by pressing ctrl+i on web page.
-
-        * EWebLauncher/main.c:
-        (on_browser_ecore_evas_resize):
-        (on_web_inspector_ecore_evas_resize):
-        (on_key_down):
-        (on_web_inspector_view_create):
-        (on_web_inspector_view_close):
-        (on_web_inspector_view_destroyed):
-        (browserCreate):
-        (webInspectorCreate):
-        (windowCreate):
-        (closeWindow):
-        (main_signal_exit):
-        (parseUserArguments):
-
-2012-10-07  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
-
-        Rename first/second to key/value in HashMap iterators
-        https://bugs.webkit.org/show_bug.cgi?id=82784
-
-        Reviewed by Eric Seidel.
-
-        * DumpRenderTree/chromium/MockWebSpeechInputController.cpp:
-        (MockWebSpeechInputController::addMockRecognitionResult):
-        * DumpRenderTree/chromium/NotificationPresenter.cpp:
-        (NotificationPresenter::simulateClick):
-        (NotificationPresenter::show):
-        * DumpRenderTree/chromium/TestRunner/CppBoundClass.cpp:
-        (CppBoundClass::~CppBoundClass):
-        (CppBoundClass::invoke):
-        (CppBoundClass::getProperty):
-        (CppBoundClass::setProperty):
-        (CppBoundClass::bindCallback):
-        (CppBoundClass::bindProperty):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (applyFontMap):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::printResourceDescription):
-        * DumpRenderTree/mac/TestRunnerMac.mm:
-        (worldIDForWorld):
-        (TestRunner::evaluateScriptInIsolatedWorld):
-        * DumpRenderTree/win/AccessibilityControllerWin.cpp:
-        (AccessibilityController::~AccessibilityController):
-        (AccessibilityController::winNotificationReceived):
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp:
-        (ResourceLoadDelegate::descriptionSuitableForTestResult):
-        * DumpRenderTree/win/TestRunnerWin.cpp:
-        (worldIDForWorld):
-        (TestRunner::evaluateScriptInIsolatedWorld):
-        * TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionBasic_Bundle.cpp:
-        (TestWebKitAPI::DOMWindowExtensionBasic::willDestroyPage):
-        * TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionNoCache_Bundle.cpp:
-        (TestWebKitAPI::DOMWindowExtensionNoCache::willDestroyPage):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::worldIDForWorld):
-        (WTR::TestRunner::evaluateScriptInIsolatedWorld):
-
-2012-10-07  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        Unreviewed, rolling out r130596.
-        http://trac.webkit.org/changeset/130596
-        https://bugs.webkit.org/show_bug.cgi?id=98616
-
-        Broke build bots without IPV6 support
-
-        * Scripts/webkitpy/common/system/platforminfo_mock.py:
-        (MockPlatformInfo.is_cygwin):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.baseline_version_dir):
-        (Port.to.start_websocket_server):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_operating_system):
-        (PortTest.test_build_path):
-        * Scripts/webkitpy/layout_tests/servers/apache_http_server.py:
-        (LayoutTestApacheHttpd):
-        (LayoutTestApacheHttpd.__init__):
-
-2012-10-07  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        webkitpy: Pass the `Listen' Apache directive from Apache, not the httpd.conf files.
-        https://bugs.webkit.org/show_bug.cgi?id=98602
-
-        Reviewed by Eric Seidel.
-
-        Unify all the different `Listen' directives present in the several
-        httpd.conf files we have in LayoutTests/http/conf. For one, we
-        were already passing `Listen 127.0.0.1:8000' via webkitpy before,
-        and opening the other ports from the conf files.
-
-        The configuration files differed mostly in the way they handled
-        IPV6 ports. Some of them did not listen to IPV6 ports because the
-        systems which used them sometimes did not have IPV6 support. The
-        `http_server_supports_ipv6' method has been added to Port to
-        address that. cygwin, on its turn, still seems to use Apache 1.3,
-        which does not support IPV6 at all; the newly-added method has a
-        special case for that.
-
-        * Scripts/webkitpy/common/system/platforminfo_mock.py:
-        (MockPlatformInfo.is_cygwin):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.baseline_version_dir):
-        (Port.to.start_websocket_server):
-        (Port.to):
-        (Port.to.http_server_supports_ipv6):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_http_server_supports_ipv6):
-        (PortTest.test_build_path):
-        * Scripts/webkitpy/layout_tests/servers/apache_http_server.py:
-        (LayoutTestApacheHttpd):
-        (LayoutTestApacheHttpd.__init__):
-
-2012-10-05  Simon Fraser  <simon.fraser@apple.com>
-
-        Attempt to fix the SnowLeopard build to making the implementation of
-        -isPaginated come before its use.
-
-        * MiniBrowser/mac/WK1BrowserWindowController.m:
-        (-[WK1BrowserWindowController reload:]):
-        (-[WK1BrowserWindowController forceRepaint:]):
-        (-[WK1BrowserWindowController goBack:]):
-        (-[WK1BrowserWindowController goForward:]):
-        (-[WK1BrowserWindowController isPaginated]):
-
-2012-10-05  Simon Fraser  <simon.fraser@apple.com>
-
-        Provide a way to run WebKit1
-        https://bugs.webkit.org/show_bug.cgi?id=98568
-
-        Reviewed by Tim Horton.
-
-        Make it possible to create both WebKit1 and WebKit2 windows in MiniBrowser.
-        
-        Turn BrowserWindowController into a base class; subclassed by
-        WK1BrowserWindowController and WK2BrowserWindowController, each of
-        which implement the BrowserController protocol.
-        
-        Use Command-N to get a WebKit1 window, and Command-Option-N to
-        get a WK2 window. Also add "Open Location" to focus the URL bar,
-        and code to add an http:// if missing.
-        
-        Hook up window title callbacks; append " [WK1/2]" to window title
-        as appropriate.
-
-        * MiniBrowser/MiniBrowser.xcodeproj/project.pbxproj:
-        * MiniBrowser/mac/AppDelegate.m:
-        (-[BrowserAppDelegate newWindow:]):
-        (-[BrowserAppDelegate openPanelDidEnd:returnCode:contextInfo:]):
-        * MiniBrowser/mac/BrowserWindowController.h:
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController initWithWindow:]):
-        (-[BrowserWindowController windowDidLoad]):
-        (-[BrowserWindowController openLocation:]):
-        (-[BrowserWindowController loadURLString:]):
-        (-[BrowserWindowController applicationTerminating]):
-        (-[BrowserWindowController addProtocolIfNecessary:]):
-        * MiniBrowser/mac/MainMenu.xib:
-        * MiniBrowser/mac/WK1BrowserWindowController.h: Copied from Tools/MiniBrowser/mac/BrowserWindowController.h.
-        (WebView):
-        * MiniBrowser/mac/WK1BrowserWindowController.m: Added.
-        (-[WK1BrowserWindowController awakeFromNib]):
-        (-[WK1BrowserWindowController dealloc]):
-        (-[WK1BrowserWindowController loadURLString:]):
-        (-[WK1BrowserWindowController fetch:]):
-        (-[WK1BrowserWindowController showHideWebView:]):
-        (-[WK1BrowserWindowController removeReinsertWebView:]):
-        (-[WK1BrowserWindowController validateMenuItem:]):
-        (-[WK1BrowserWindowController reload:]):
-        (-[WK1BrowserWindowController forceRepaint:]):
-        (-[WK1BrowserWindowController goBack:]):
-        (-[WK1BrowserWindowController goForward:]):
-        (-[WK1BrowserWindowController validateUserInterfaceItem:]):
-        (-[WK1BrowserWindowController validateToolbar]):
-        (-[WK1BrowserWindowController windowShouldClose:]):
-        (-[WK1BrowserWindowController windowWillClose:]):
-        (-[WK1BrowserWindowController applicationTerminating]):
-        (-[WK1BrowserWindowController currentZoomFactor]):
-        (-[WK1BrowserWindowController canZoomIn]):
-        (-[WK1BrowserWindowController zoomIn:]):
-        (-[WK1BrowserWindowController canZoomOut]):
-        (-[WK1BrowserWindowController zoomOut:]):
-        (-[WK1BrowserWindowController canResetZoom]):
-        (-[WK1BrowserWindowController resetZoom:]):
-        (-[WK1BrowserWindowController toggleZoomMode:]):
-        (-[WK1BrowserWindowController isPaginated]):
-        (-[WK1BrowserWindowController togglePaginationMode:]):
-        (-[WK1BrowserWindowController find:]):
-        (-[WK1BrowserWindowController dumpSourceToConsole:]):
-        (-[WK1BrowserWindowController webView:didStartProvisionalLoadForFrame:]):
-        (-[WK1BrowserWindowController webView:didReceiveTitle:forFrame:]):
-        * MiniBrowser/mac/WK2BrowserWindowController.h: Copied from Tools/MiniBrowser/mac/BrowserWindowController.h.
-        * MiniBrowser/mac/WK2BrowserWindowController.m: Copied from Tools/MiniBrowser/mac/BrowserWindowController.m.
-        (-[WK2BrowserWindowController initWithContext:pageGroup:]):
-        (-[WK2BrowserWindowController dealloc]):
-        (-[WK2BrowserWindowController fetch:]):
-        (-[WK2BrowserWindowController showHideWebView:]):
-        (-[WK2BrowserWindowController removeReinsertWebView:]):
-        (-[WK2BrowserWindowController validateMenuItem:]):
-        (-[WK2BrowserWindowController reload:]):
-        (-[WK2BrowserWindowController forceRepaint:]):
-        (-[WK2BrowserWindowController goBack:]):
-        (-[WK2BrowserWindowController goForward:]):
-        (-[WK2BrowserWindowController validateUserInterfaceItem:]):
-        (-[WK2BrowserWindowController validateToolbar]):
-        (-[WK2BrowserWindowController windowShouldClose:]):
-        (-[WK2BrowserWindowController windowWillClose:]):
-        (-[WK2BrowserWindowController applicationTerminating]):
-        (-[WK2BrowserWindowController currentZoomFactor]):
-        (-[WK2BrowserWindowController setCurrentZoomFactor:]):
-        (-[WK2BrowserWindowController canZoomIn]):
-        (-[WK2BrowserWindowController zoomIn:]):
-        (-[WK2BrowserWindowController canZoomOut]):
-        (-[WK2BrowserWindowController zoomOut:]):
-        (-[WK2BrowserWindowController canResetZoom]):
-        (-[WK2BrowserWindowController resetZoom:]):
-        (-[WK2BrowserWindowController toggleZoomMode:]):
-        (-[WK2BrowserWindowController isPaginated]):
-        (-[WK2BrowserWindowController togglePaginationMode:]):
-        (-[WK2BrowserWindowController dumpSourceToConsole:]):
-        (didStartProvisionalLoadForFrame):
-        (didReceiveServerRedirectForProvisionalLoadForFrame):
-        (didFailProvisionalLoadWithErrorForFrame):
-        (didCommitLoadForFrame):
-        (didFinishDocumentLoadForFrame):
-        (didFinishLoadForFrame):
-        (didFailLoadWithErrorForFrame):
-        (didSameDocumentNavigationForFrame):
-        (didReceiveTitleForFrame):
-        (didFirstLayoutForFrame):
-        (didFirstVisuallyNonEmptyLayoutForFrame):
-        (didRemoveFrameFromHierarchy):
-        (didDisplayInsecureContentForFrame):
-        (didRunInsecureContentForFrame):
-        (didDetectXSSForFrame):
-        (didStartProgress):
-        (didChangeProgress):
-        (didFinishProgress):
-        (didBecomeUnresponsive):
-        (didBecomeResponsive):
-        (processDidExit):
-        (didChangeBackForwardList):
-        (decidePolicyForNavigationAction):
-        (decidePolicyForNewWindowAction):
-        (decidePolicyForResponse):
-        (createNewPage):
-        (showPage):
-        (closePage):
-        (runJavaScriptAlert):
-        (runJavaScriptConfirm):
-        (runJavaScriptPrompt):
-        (setStatusText):
-        (mouseDidMoveOverElement):
-        (getWindowFrame):
-        (setWindowFrame):
-        (runBeforeUnloadConfirmPanel):
-        (runOpenPanel):
-        (-[WK2BrowserWindowController awakeFromNib]):
-        (-[WK2BrowserWindowController didStartProgress]):
-        (-[WK2BrowserWindowController didChangeProgress:]):
-        (-[WK2BrowserWindowController didFinishProgress]):
-        (-[WK2BrowserWindowController updateProvisionalURLForFrame:]):
-        (-[WK2BrowserWindowController didStartProvisionalLoadForFrame:]):
-        (-[WK2BrowserWindowController didReceiveServerRedirectForProvisionalLoadForFrame:]):
-        (-[WK2BrowserWindowController didFailProvisionalLoadWithErrorForFrame:]):
-        (-[WK2BrowserWindowController didFailLoadWithErrorForFrame:]):
-        (-[WK2BrowserWindowController didSameDocumentNavigationForFrame:]):
-        (-[WK2BrowserWindowController didCommitLoadForFrame:]):
-        (-[WK2BrowserWindowController loadURLString:]):
-        (-[WK2BrowserWindowController performFindPanelAction:]):
-        (-[WK2BrowserWindowController find:]):
-
-2012-10-05  Sudarsana Nagineni  <sudarsana.nagineni@intel.com>
-
-        [WK2][WTR] WebKitTestRunner needs testRunner.setSerializeHTTPLoads
-        https://bugs.webkit.org/show_bug.cgi?id=98524
-
-        Reviewed by Alexey Proskuryakov.
-
-        Add implementation for testRunner.setSerializeHTTPLoads in
-        WebKitTestRunner.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::setSerializeHTTPLoads):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-
-2012-10-05  Richard Larocque  <rlarocque@chromium.org>
-
-        TestResultsServer does not display sync_integration_tests results
-        https://bugs.webkit.org/show_bug.cgi?id=98551
-
-        Reviewed by Ojan Vafai.
-
-        Allow builders whose name contains "Sync" to pass through the
-        isChromiumWebkitDepsTestRunner filter.
-
-        The test expectations in flakiness_dashboard_unittests.js have been
-        updated to match the new behaviour.
-
-        * TestResultServer/static-dashboards/builders.js:
-        (isChromiumDepsGTestRunner):
-
-2012-10-05  Roger Fong  <roger_fong@apple.com>
-
-        Tests in webkitpy involving child processes are flaky. 
-        Skipping run_webkit_tests_integrationtest.py.
-        https://bugs.webkit.org/show_bug.cgi?id=98559
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_verbose_in_child_processes):
-
-2012-10-05  Zan Dobersek  <zandobersek@gmail.com>
-
-        [Gtk] fast/xsl/xslt-missing-namespace-in-xslt.xml is failing on the 64-bit Debug builder
-        https://bugs.webkit.org/show_bug.cgi?id=91009
-
-        Reviewed by Martin Robinson.
-
-        Include libxml2 into the jhbuild module. Version 2.8.0 introduces
-        a more correct (but not completely correct) behavior in the
-        fast/xsl/xslt-missing-namespace-in-xslt.html test.
-
-        * gtk/jhbuild.modules:
-
-2012-10-05  Rob Buis  <rbuis@rim.com>
-
-        [BlackBerry] Implement TestRunner.setMockDeviceOrientation
-        https://bugs.webkit.org/show_bug.cgi?id=98542
-
-        Reviewed by Antonio Gomes.
-
-        PR 120681
-
-        This fixes tests in fast/dom/DeviceOrientation.
-
-        * DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp:
-        (TestRunner::setMockDeviceOrientation):
-
-2012-10-05  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2][WKTR] Implement UIClient focus callbacks in WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=98256
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Implement UIClient's focus callbacks for the main page in
-        WebKitTestRunner.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::focus):
-        (WTR::TestController::initialize):
-
-2012-10-05  Mark Hahnenberg  <mhahnenberg@apple.com>
-
-        JSC should have a way to gather and log Heap memory use and pause times
-        https://bugs.webkit.org/show_bug.cgi?id=98431
-
-        Reviewed by Geoffrey Garen.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (main): Added a check as to whether we should dump our JSC Heap statistics on exit.
-
-2012-10-05  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][WK2] Fix mktemp() compilation warning in Minibrowser
-        https://bugs.webkit.org/show_bug.cgi?id=98493
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Fix wrong mktemp usage causing a compilation warning
-        in MiniBrowser.
-
-        * MiniBrowser/efl/main.c:
-        (on_download_request):
-
-2012-10-05  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2][WKTR] Avoid duplication of UIClient callbacks for main page and other pages
-        https://bugs.webkit.org/show_bug.cgi?id=98503
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Avoid the need for duplicating UIClient callbacks for main page
-        and other pages by passing the view as clientInfo
-        for those callbacks.
-
-        Previously, callbacks for the main page were passed the
-        TestController as clientInfo while the callbacks for other pages
-        were passed the PlatformWebView as clientInfo. This was error prone
-        and leads to useless code duplication.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::getWindowFrame):
-        (WTR::setWindowFrame):
-        (WTR::runBeforeUnloadConfirmPanel):
-        (WTR::TestController::createOtherPage):
-        (WTR::TestController::initialize):
-        (WTR::TestController::decidePolicyForNotificationPermissionRequest):
-
-2012-10-05  Sadrul Habib Chowdhury  <sadrul@chromium.org>
-
-        [chromium] Allow dragging into plugins.
-        https://bugs.webkit.org/show_bug.cgi?id=98277
-
-        Reviewed by Tony Chang.
-
-        Update the TestWebPlugin to receive drag events and print them out.
-
-        * DumpRenderTree/chromium/TestWebPlugin.cpp:
-        (TestWebPlugin::handleDragStatusUpdate):
-        * DumpRenderTree/chromium/TestWebPlugin.h:
-        (TestWebPlugin):
-
-2012-10-05  Jongseok Yang  <js45.yang@samsung.com>
-
-        [EFL][WK2] Remove "web" word from ewk_web_error APIs
-        https://bugs.webkit.org/show_bug.cgi?id=97886
-
-        Reviewed by Gyuyoung Kim.
-
-        Remove "web" word from ewk_web_error APIs.
-        "web" word was redundant because "ewk" means "EFL WebKit" and WK APIs for error does not have "web" word.
-
-        * MiniBrowser/efl/main.c:
-        (on_error):
-
-2012-10-05  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Enable CSS compositing by default
-        https://bugs.webkit.org/show_bug.cgi?id=98490
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/features.pri:
-
-2012-10-05  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r130466.
-        http://trac.webkit.org/changeset/130466
-        https://bugs.webkit.org/show_bug.cgi?id=98495
-
-        It made 12 tests crash on Qt-WK2 (Requested by Ossy on
-        #webkit).
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::focus):
-        (WTR::TestController::initialize):
-
-2012-10-05  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Fix window resizing / moving in WK1 and WKTR
-        https://bugs.webkit.org/show_bug.cgi?id=98486
-
-        Reviewed by Gyuyoung Kim.
-
-        Fix PlatformWebView::windowFrame() and
-        PlatformWebView::setWindowFrame() in EFL's WKTR so
-        that it resizes / moves the window, not the view.
-
-        The new code matches the implementation in EwkView's
-        UIClient.
-
-        * WebKitTestRunner/efl/PlatformWebViewEfl.cpp:
-        (WTR::PlatformWebView::windowFrame):
-        (WTR::PlatformWebView::setWindowFrame):
-
-2012-10-04  KyungTae Kim  <ktf.kim@samsung.com>
-
-        [EFL][WK2] Fix destination path when download with suggested filename on the Minibrowser
-        https://bugs.webkit.org/show_bug.cgi?id=98334
-
-        Reviewed by Gyuyoung Kim.
-
-        Add callback functions for download requests to Minibrowser to set the destination path for download.
-        Set the destination path with suggested file name as (destination folder) + (suggested file name).
-        The 'destination folder' should be a specific folder user selected, but is set to '/tmp' for now.
-
-        Additionally, for printing out the download status, 
-        use the info macro and set the verbose variable to 1 to enable it.
-
-        * MiniBrowser/efl/main.c:
-        (on_download_request):
-        (on_download_finished):
-        (on_download_failed):
-        (browserCreate):
-
-2012-10-04  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2][WKTR] Implement UIClient focus callbacks in WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=98256
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Implement UIClient's focus callbacks in WebKitTestRunner.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::focus):
-        (WTR::TestController::initialize):
-
-2012-10-04  Rik Cabanier  <cabanier@adobe.com>
-
-        Turn Compositing on by default in WebKit build
-        https://bugs.webkit.org/show_bug.cgi?id=98315
-
-        Reviewed by Simon Fraser.
-
-        enable -webkit-blend-mode on trunk.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-10-04  Ryuan Choi  <ryuan.choi@samsung.com>
-
-        [EFL][WK2] Add APIs to get/set the frame flattening.
-        https://bugs.webkit.org/show_bug.cgi?id=95982
-
-        Reviewed by Gyuyoung Kim.
-
-        * MiniBrowser/efl/main.c: Added frame flattening option to test.
-        (browserCreate):
-        (main):
-
-2012-10-04  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Add libxml 2.8.0 to jhbuild
-        https://bugs.webkit.org/show_bug.cgi?id=98418
-
-        Reviewed by Laszlo Gombos.
-
-        Add libxml 2.8.0 to EFL's jhbuild for consistency.
-
-        * efl/jhbuild.modules:
-
-2012-10-03  Benjamin Poulain  <bpoulain@apple.com>
-
-        [WK2] Support all attributes of GeolocationPosition
-        https://bugs.webkit.org/show_bug.cgi?id=98212
-
-        Reviewed by Sam Weinig.
-
-        Expand WebKitTestRunner and DumpRenderTree to test all the attributes
-        of GeolocationPosition.
-
-        * DumpRenderTree/TestRunner.cpp:
-        (setMockGeolocationPositionCallback):
-        * DumpRenderTree/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        (TestRunner::setMockGeolocationPosition):
-        * DumpRenderTree/gtk/TestRunnerGtk.cpp:
-        (TestRunner::setMockGeolocationPosition):
-        * DumpRenderTree/mac/TestRunnerMac.mm:
-        (TestRunner::setMockGeolocationPosition):
-        * DumpRenderTree/win/TestRunnerWin.cpp:
-        (TestRunner::setMockGeolocationPosition):
-        * DumpRenderTree/wx/TestRunnerWx.cpp:
-        (TestRunner::setMockGeolocationPosition):
-        * WebKitTestRunner/GeolocationProviderMock.cpp:
-        (WTR::GeolocationProviderMock::setPosition):
-        * WebKitTestRunner/GeolocationProviderMock.h:
-        (GeolocationProviderMock):
-        * WebKitTestRunner/InjectedBundle/Bindings/CodeGeneratorTestRunner.pm:
-        (_platformTypeVariableDeclaration):
-        Use a proper constructor for the JSValueRef, it is an opaque type, we are not supposed
-        to build the pointer outself.
-        This is necessary to support optional JSValueRef properly.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::setMockGeolocationPosition):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (InjectedBundle):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::setMockGeolocationPosition):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::setMockGeolocationPosition):
-        * WebKitTestRunner/TestController.h:
-        (TestController):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-
-2012-10-04  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        Make the Xvfb driver recognize `X' as a valid X server binary.
-        https://bugs.webkit.org/show_bug.cgi?id=98434
-
-        Reviewed by Dirk Pranke.
-
-        The X server binary can also be called `X', so account for that
-        possibility in the _next_free_display regexp.
-
-        Additionally, make the regular expression require at least one
-        space character after the `ps comm' part.
-
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver.py:
-        (XvfbDriver._next_free_display):
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver_unittest.py:
-        (XvfbDriverTest.test_next_free_display):
-
-2012-10-04  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        webkitpy: Accept WEBKITOUTPUTDIR in Port._setup_environ_for_server.
-        https://bugs.webkit.org/show_bug.cgi?id=98436
-
-        Reviewed by Dirk Pranke.
-
-        The Xvfb driver (ab)uses Port._setup_environ_for_server() to set
-        the environment for the server process, and the WEBKITOUTPUTDIR
-        environment variable was not being passed through, causing the
-        build directory to be wrongfully set to WebKitBuild/ all the time.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.to.setup_environ_for_server):
-
-2012-10-04  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][WK2] Add setting to allow file access from file:// URLs
-        https://bugs.webkit.org/show_bug.cgi?id=98121
-
-        Reviewed by Laszlo Gombos.
-
-        Allow file access from file:// URLs by default in Minibrowser
-        to facilitate testing.
-
-        * MiniBrowser/efl/main.c:
-        (browserCreate):
-
-2012-10-04  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Run unit tests with Xvfb
-        https://bugs.webkit.org/show_bug.cgi?id=98389
-
-        Reviewed by Laszlo Gombos.
-
-        Run EFL unit tests with Xvfb, similarly to GTK port.
-
-        * Scripts/run-efl-tests:
-
-2012-10-04  Adrian Perez de Castro  <aperez@igalia.com>
-
-        [GTK] Enable inspector by default in GtkLauncher/MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=98333
-
-        Reviewed by Xan Lopez.
-
-        Both MiniBrowser and GtkLauncher are tools for testing, so in
-        the end every time we want to test the inspector we have to
-        manually enable enable the “developer extras” setting when using
-        them. It make sense to have this setting enabled by default.
-
-        * GtkLauncher/main.c:
-        (main):
-        * MiniBrowser/gtk/main.c:
-        (main):
-
-2012-10-04  Harald Alvestrand  <hta@google.com>
-
-        Change RTCPeerConnection GetStats to use Date timestamp format
-        https://bugs.webkit.org/show_bug.cgi?id=98263
-
-        Reviewed by Yury Semikhatsky.
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (MockWebRTCPeerConnectionHandler::getStats):
-
-2012-10-04  Dirk Pranke  <dpranke@chromium.org>
-
-        [NRWT] --skipped option is ignored when --test-list is used
-        https://bugs.webkit.org/show_bug.cgi?id=98260
-
-        Reviewed by Ojan Vafai.
-
-        Adds a --skipped=always flag that will skip any tests listed in
-        TestExpectations even if they're listed explicitly on the
-        command line.
-
-        This is most useful if you are using --test-list to specify a
-        long list of files but you still want to skip some of them
-        depending on what's in TestExpectations.
-
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_finder.py:
-        (LayoutTestFinder.skip_tests):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_skipped_flag):
-
-2012-10-04  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r130377.
-        http://trac.webkit.org/changeset/130377
-        https://bugs.webkit.org/show_bug.cgi?id=98392
-
-        Chromium Win compilation is broken (Requested by yurys on
-        #webkit).
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (MockWebRTCPeerConnectionHandler::getStats):
-
-2012-10-04  Harald Alvestrand  <hta@google.com>
-
-        Change RTCPeerConnection GetStats to use Date timestamp format
-        https://bugs.webkit.org/show_bug.cgi?id=98263
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (MockWebRTCPeerConnectionHandler::getStats):
-
-2012-10-04  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        Unreviewed, remove unused $legacyWebKitBlobBuilderSupport variable after r130343.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-10-03  Philip Rogers  <pdr@google.com>
-
-        Force GC between PageLoad tests.
-        https://bugs.webkit.org/show_bug.cgi?id=98203
-
-        Reviewed by Ryosuke Niwa.
-
-        Previously, our PageLoad PerfTests had multi-modal distributions,
-        typically with a small cluster at 1-2x the median. This turned out
-        to be caused by not garbage collecting between tests!
-
-        This patch adds a new file, force-gc.html, and loads this file between
-        PageLoad tests to force a GC. I manually verified that this cleans up
-        our perf test outliers.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PageLoadingPerfTest.__init__):
-        (PageLoadingPerfTest):
-        (PageLoadingPerfTest.run_single):
-
-            This function now loads two pages: one to force a gc and
-            then the test to run.
-
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py:
-
-            Modified several existing tests to show that the force-gc file
-            is loaded.
-
-        (MockPort):
-        (MockPort.__init__):
-        (MockPort.perf_tests_dir):
-        (TestPageLoadingPerfTest.MockDriver.__init__):
-        (TestPageLoadingPerfTest.MockDriver.run_test):
-        (TestPageLoadingPerfTest.test_run):
-        (TestPageLoadingPerfTest.test_run_with_bad_output):
-        (TestReplayPerfTest.ReplayTestPort):
-        (TestReplayPerfTest.ReplayTestPort.__init__):
-        (TestReplayPerfTest.test_run_single.run_test):
-        (TestReplayPerfTest.test_run_single):
-        (TestReplayPerfTest.test_run_single_fails_when_output_has_error):
-        (TestPerfTestFactory.test_regular_test):
-        (TestPerfTestFactory.test_inspector_test):
-        (TestPerfTestFactory.test_page_loading_test):
-
-2012-10-03  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Enable use of X11 in DumpRenderTree / WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=98231
-
-        Reviewed by Gyuyoung Kim.
-
-        Enable use of X11 in DumpRenderTree / WebKitTestRunner.
-        Call ecore_evas_new() instead of ecore_evas_buffer_new()
-        in EFL's DumpRenderTree and WebKitTestRunner.
-        It is safe to do this now that we are using XvfbDriver
-        for the layout tests.
-
-        * DumpRenderTree/efl/DumpRenderTree.cpp:
-        (parseCommandLineOptions):
-        (initEcoreEvas):
-        * WebKitTestRunner/efl/PlatformWebViewEfl.cpp:
-        (WTR::initEcoreEvas):
-        * WebKitTestRunner/efl/main.cpp:
-        (main):
-
-2012-10-03  Dirk Pranke  <dpranke@chromium.org>
-
-        run-webkit-tests tests on win32 after r127302
-        https://bugs.webkit.org/show_bug.cgi?id=98323
-
-        Reviewed by Eric Seidel.
-
-        run-webkit-tests tests on win32 after r127302
-        https://bugs.webkit.org/show_bug.cgi?id=98323
-
-        Reviewed by Eric Seidel.
-
-        Looks like when we converted the json-building logic to use scm
-        to try and get the svn revision, we missed a win32-ism and
-        didn't check to make sure had initialized the scm subsystem.
-
-        This change fixes that and renames _initialize_scm to be a public method.
-
-        * Scripts/webkitpy/common/host.py:
-        (Host.initialize_scm):
-        * Scripts/webkitpy/common/host_mock.py:
-        (MockHost.__init__):
-        (MockHost.initialize_scm):
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (summarize_results):
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        (JSONResultsGeneratorBase.get_json):
-        (JSONResultsGeneratorBase._get_result_char):
-        (JSONResultsGeneratorBase._get_svn_revision):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner.__init__):
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-        (TestExpectationsChecker.__init__):
-        * Scripts/webkitpy/style/main.py:
-        (CheckWebKitStyle.main):
-        * Scripts/webkitpy/tool/main.py:
-        (WebKitPatch.handle_global_options):
-        * Scripts/webkitpy/tool/servers/rebaselineserver.py:
-        (get_test_baselines):
-
-2012-10-03  Adrian Perez de Castro  <aperez@igalia.com>
-
-        [GTK] Make inspector directly useable in GtkLauncher/MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=98310
-
-        Reviewed by Martin Robinson.
-
-        Make MiniBrowser/GtkLauncher define the path to the inspector
-        resources by setting the WEBKIT_INSPECTOR_PATH environment
-        variable pointing to the copy of the inspector resources in
-        the build directory. If the environment variable is already
-        defined, its value is not overwritten. The path is derived
-        from the WEBKIT_EXEC_PATH macro defined in the makefiles.
-
-        * GNUmakefile.am:
-        * GtkLauncher/main.c:
-        (main):
-        * MiniBrowser/gtk/main.c:
-        (main):
-
-2012-10-03  Benjamin Poulain  <bpoulain@apple.com>
-
-        Fix Geolocation/window-close-crash.html and harden WebKitTestRunner for Geolocation
-        https://bugs.webkit.org/show_bug.cgi?id=97608
-
-        Reviewed by Sam Weinig.
-
-        The test fast/dom/Geolocation/window-close-crash.html was crashing because
-        handleGeolocationPermissionRequest() was executed on the wrong pointer. Depending on how
-        the page was created, the void* clientInfo can either be a PlatformWebView or
-        a TestController.
-
-        Using the global TestController fixes the issue.
-
-        * WebKitTestRunner/GeolocationProviderMock.cpp:
-        (WTR::GeolocationProviderMock::setPosition):
-        (WTR::GeolocationProviderMock::setPositionUnavailableError):
-        To be reliable, the test fast/dom/Geolocation/maximum-age.html needs the setting the position
-        to clear the error and vice versa.
-        This is the same behavior as GeolocationClientMock and MockGeolocationProvider of WebKit1.
-
-        (WTR::GeolocationProviderMock::sendPositionIfNeeded):
-        (WTR::GeolocationProviderMock::sendErrorIfNeeded):
-        Some tests expect the position/error cant be sent multiple time,
-        just keep the position after sending.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::decidePolicyForGeolocationPermissionRequest):
-        (WTR::TestController::decidePolicyForGeolocationPermissionRequestIfPossible):
-        * WebKitTestRunner/TestController.h:
-        Let's play as if we did not know what is in GeolocationPermissionRequestManagerProxy like a real
-        client would have to do.
-
-2012-10-03  Otto Derek Cheung  <otcheung@rim.com>
-
-        [BlackBerry] Implementing the NetworkInfo API for BB port
-        https://bugs.webkit.org/show_bug.cgi?id=98273
-
-        Reviewed by Rob Buis.
-
-        Enabling NetworkInfo API for the BlackBerry port.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-10-03  Anders Carlsson  <andersca@apple.com>
-
-        Exception thrown when running accessibility/container-node-delete-causes-crash.html test
-        https://bugs.webkit.org/show_bug.cgi?id=98291
-
-        Reviewed by Andreas Kling.
-
-        The accessibility/container-node-delete-causes-crash.html test will cause a full accessibility tree
-        to be created by trying to look up an element with a non-existent ID. This caused an exception to be thrown
-        when trying to access the children of an element that didn't have any children. Fix this by adding
-        BEGIN_AX_OBJC_EXCEPTIONS/END_AX_OBJC_EXCEPTIONS around the call to get the children.
-
-        * DumpRenderTree/mac/AccessibilityControllerMac.mm:
-        (findAccessibleObjectById):
-
-2012-10-03  Ojan Vafai  <ojan@chromium.org>
-
-        Make partytime work when loading garden-o-matic from trac.webkit.org
-        https://bugs.webkit.org/show_bug.cgi?id=98283
-
-        Reviewed by Adam Barth.
-
-        CSP was blocking the reqest for partytime.gif because 'self' wasn't on the img-src directive.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-
-2012-10-03  Roger Fong  <roger_fong@apple.com>
-
-        Unreviewed. Adding sys.platform check to skip a failing assert on the Apple Windows platform.
-        https://bugs.webkit.org/show_bug.cgi?id=98288
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:
-        (ChromiumAndroidDriverTest.test_command_from_driver_input):
-
-2012-10-03  Ojan Vafai  <ojan@chromium.org>
-
-        Get rid of warning about non-existant platform name when loading garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=98282
-
-        Reviewed by Adam Barth.
-
-        If you loaded without a platform query parameter we'd return "null" as the platform name
-        instead of null.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base_unittests.js:
-
-2012-10-03  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt] Enable mock scrollbars
-        https://bugs.webkit.org/show_bug.cgi?id=98011
-
-        Reviewed by Csaba Osztrogonác.
-
-        Enable mock scrollbars for the Qt port. This patch will require a huge rebaseline.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-
-2012-10-03  Alberto Garcia  <agarcia@igalia.com>
-
-        [GTK] [WK2] Add favicon support to the MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=98063
-
-        Reviewed by Carlos Garcia Campos.
-
-        Set the icon in the URI text entry using the favicon property of
-        the WebKitWebView.
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (_BrowserWindow):
-        (updateUriEntryIcon):
-        (uriEntryTextChanged):
-        (faviconChanged):
-        (browserWindowFinalize):
-        (browser_window_init):
-        (browserWindowConstructed):
-
-2012-10-03  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [Qt][DRT] Add support for overriding the "WebKitDisplayImagesKey" preference.
-        https://bugs.webkit.org/show_bug.cgi?id=98200
-
-        Reviewed by Csaba Osztrogonác.
-
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        (TestRunner::overridePreference):
-
-2012-10-03  Zoltan Arvai  <zarvai@inf.u-szeged.hu>
-
-        [Qt][WRT] Fix build error with MSVC on Windows.
-        https://bugs.webkit.org/show_bug.cgi?id=97697
-
-        Reviewed by Simon Hausmann.
-
-        WTR build is failing when WebKit directory is located on a longer path.
-        This seems to caused by source files that has the same name in
-        WTR and DRT directories. The solution is removing referencies 
-        from Target.pri to DRT directory and adding an alternate version of
-        the required files to WTR. Those files simply include the real ones from DRT.
-
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-        * WebKitTestRunner/InjectedBundle/qt/QtInitializeTestFonts.cpp: Added.
-        * WebKitTestRunner/InjectedBundle/qt/QtInitializeTestFonts.h: Added.
-
-2012-10-03  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2][WKTR] TestRunner.setAlwaysAcceptCookies() causes flakiness
-        https://bugs.webkit.org/show_bug.cgi?id=98238
-
-        Reviewed by Csaba Osztrogonác.
-
-        Reset AlwaysAcceptCookies setting between tests to avoid
-        flakiness due to TestRunner.setAlwaysAcceptCookies().
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-
-2012-10-03  Harald Alvestrand  <hta@google.com>
-
-        Add data passing to the GetStats interface of RTCPeerConnection
-        https://bugs.webkit.org/show_bug.cgi?id=98003
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (RTCStatsRequestSucceededTask::RTCStatsRequestSucceededTask):
-        (MockWebRTCPeerConnectionHandler::MockWebRTCPeerConnectionHandler):
-        (MockWebRTCPeerConnectionHandler::addStream):
-        (MockWebRTCPeerConnectionHandler::removeStream):
-        (MockWebRTCPeerConnectionHandler::getStats):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.h:
-        (MockWebRTCPeerConnectionHandler):
-
-== Rolled over to ChangeLog-2012-10-02 ==
diff --git a/Tools/ChangeLog-2009-06-16 b/Tools/ChangeLog-2009-06-16
deleted file mode 100644
index 534b2e6..0000000
--- a/Tools/ChangeLog-2009-06-16
+++ /dev/null
@@ -1,25221 +0,0 @@
-2009-06-15  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        Add a script to automate the rolling over of ChangeLog files when they grow too large.
-
-        * Scripts/roll-over-ChangeLogs: Added.
-
-2009-06-15  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Mark Rowe.
-        
-        <rdar://problem/6974857>
-        
-        Build with ENABLE_3D_RENDERING turned on by default on SnowLeopard.
-
-        * Scripts/build-webkit:
-
-2009-06-12  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Mark Rowe.
-        Reviewed by Simon Hausmann.
-
-        Refactor handling of options in the build-webkit script
-        
-        Options are now defined in one place, and then reused when creating
-        the usage help text, the arguments to GetOptions(), and when passing
-        the options on to the underlying port-dependent build systems.
-        
-        This allows the Qt port to read the defaults for the options from the
-        pro file (dynamically), and to pass the options on to qmake at build.
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-
-2009-06-15  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Cameron Zwarich.
-
-        Fix <https://bugs.webkit.org/show_bug.cgi?id=26312>.
-        Bug 26312: Multiple copies of Safari opened with WebKit nightly and Safari 3.2.3
-
-        Skip the trampoline detection for versions of Safari < 4.0 as they don't play these
-        tricks, and having WebKitNightlyEnabler assume that we were in the trampoline was
-        preventing our LaunchServices trickery from being run.  This led to fresh copies of
-        WebKit.app being launched when a URL or file was opened from an external application
-        rather than the existing instance being reused.
-
-        * WebKitLauncher/WebKitNightlyEnabler.m:
-        (insideSafari4OnTigerTrampoline):
-        (enableWebKitNightlyBehaviour):
-
-2009-06-13  Sam Weinig  <sam@webkit.org>
-
-        Rubber-stamped by Mark "Snowy" Rowe.
-
-        Update iExploder/htdocs/cssproperties.in by running update-iexploder-cssproperties.
-
-        * iExploder/htdocs/cssproperties.in:
-
-2009-06-13  John Abd-El-Malek  <jam@chromium.org>
-
-        Reviewed by Eric Seidel.  Landed by Adam Barth.
-
-        Removed dead file.
-        https://bugs.webkit.org/show_bug.cgi?id=26308
-
-        * DumpRenderTree/win/TestNetscapePlugin/main.c: Removed.
-
-2009-06-12  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Reviewed by Gustavo Noronha.
-
-        [Gtk] use strlen instead of g_utf8_strlen so we can enable more tests.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (dumpHistoryItem):
-
-2009-06-12  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Reviewed by Jan Alonzo.
-
-        https://bugs.webkit.org/show_bug.cgi?id=25599
-        [GTK] Enable more tests
-
-        Implement dumping of status callback.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webViewStatusBarTextChanged):
-        (main):
-
-2009-06-11  John Abd-El-Malek  <jam@chromium.org>
-
-        Reviewed by Steve Falkenburg.
-
-        https://bugs.webkit.org/show_bug.cgi?id=26306
-
-        Revert 42565 as it leads to DumpRenderTree crashing on startup because
-        Windows can't find CFURLCacheCopySharedURLCache in CoreNetwork.dll.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-
-2009-06-10  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Reviewed by Jan Alonzo.
-
-        [gtk] Change DumpRenderTree to use a GtkScrolledWindow instead of GtkFixed
-
-        Change the code to use GtkScrolledWindow and resize the GtkScrolledWindow
-        to pass more tests. Make sure the content is bigger than a thumbnail.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (runTest):
-        (main):
-
-2009-06-10  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Reviewed by Gustavo Noronha.
-
-        Clear the frame name before we run each tests so we don't get
-        "someFloaString" or "3" in the target frame name.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting):
-
-2009-06-10  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Adele Peterson.
-
-        - add a LayoutTestController method for temporarily changing the WebKit
-          cache model
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setCacheModelCallback): Added. Calls
-        LayoutTestController::setCacheModel() with the first argument as an
-        integer.
-        (LayoutTestController::staticFunctions): Added setCacheModel.
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setCacheModel):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (setDefaultsToConsistentValuesForTesting): Reset the cache model to
-        WebCacheModelDocumentBrowser.
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setCacheModel): Added. Calls -[WebPreferences
-        setCacheModel:].
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setCacheModel):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setCacheModel):
-
-2009-06-09  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Have sunspider-compare-results use the system version of the jsc
-        command line binary as there's no good reason to rebuild from source
-        to simply compare results.
-
-        * Scripts/sunspider-compare-results:
-
-2009-06-09  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Reviewed by Ariya Hidayat.
-
-        Removed setUseFixedLayout and renamed setFixedLayoutSize to
-        setFixedContentsSize.
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::setFixedContentsSize):
-        * DumpRenderTree/qt/jsobjects.h:
-
-2009-06-09  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Fix the Qt build, add missing function declaration.
-
-        * DumpRenderTree/qt/jsobjects.h:
-
-2009-06-09  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        Fix <https://bugs.webkit.org/show_bug.cgi?id=24642>.
-        Bug 24642: REGRESSION: Nightly builds sometimes erroneously display a message about failing to launch successfully
-
-        Safari 4 on Tiger plays some shenanigans during launch that can confuse the nightly launcher application
-        in to running its initialization code too soon.
-
-        * WebKitLauncher/WebKitNightlyEnabler.m:
-        (insideSafariOnTigerTrampoline): Detect these shenanigans.
-        (enableWebKitNightlyBehaviour): Delay initialization when needed.
-
-2009-06-08  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Antti Koivisto
-
-        Add dispatchPendingLoadRequests() to test fix for <rdar://problem/6727495>
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (dispatchPendingLoadRequestsCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::dispatchPendingLoadRequests): Implement using [WebView _dispatchPendingLoadRequests] SPI
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::dispatchPendingLoadRequests): Need implementations.
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::dispatchPendingLoadRequests): Ditto.
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::dispatchPendingLoadRequests): Ditto.
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::dispatchPendingLoadRequests): Ditto.
-
-2009-06-07  Mark Rowe  <mrowe@apple.com>
-
-        Rubber-stamped by Cameron Zwarich.
-
-        Delete the AccessibilityController that we allocated in -init.
-
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate dealloc]):
-
-2009-06-06  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        Factor out the code to check whether a library contains a given symbol in to a helper function.
-
-        * Scripts/webkitdirs.pm:
-
-2009-06-06  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Detect when XHTML MP and WCSS are disabled and skip their associated regression tests.
-
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2009-06-06  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Brady Eidson.
-
-        <rdar://problem/6778101> Four SSL-related test failures
-
-        With newer versions of CFNetwork we receive a NSURLErrorServerCertificateUntrusted error
-        code rather than the more specific NSURLErrorServerCertificateHasUnknownRoot that DumpRenderTree
-        was looking for.  Update DumpRenderTree to accommodate the different error code.
-
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate webView:didFailProvisionalLoadWithError:forFrame:]):
-
-2009-06-03  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Rubber-stamped by Simon Hausmann.
-
-        [Qt] Fix Perl warning when calling chdir with an empty/undefined path
-        
-        This happened when the included makespec was in the same directory as
-        the parent makespec, so the relative path between the two was empty.
-
-        * Scripts/webkitdirs.pm:
-
-2009-06-04  Darin Adler  <darin@apple.com>
-
-        Reviewed by Tim Hatcher.
-
-        Fix crashes due to unbalanced start/stop observer calls.
-
-        * DumpRenderTree/mac/DumpRenderTreeWindow.h: Added observingWebView.
-        * DumpRenderTree/mac/DumpRenderTreeWindow.mm:
-        (-[DumpRenderTreeWindow startObservingWebView]): Call stopObservingWebView
-        in case we're already observing some other WebView. Set observingWebView.
-        (-[DumpRenderTreeWindow stopObservingWebView]): Do nothing if
-        observingWebView is already NO. Clear observingWebView.
-
-2009-06-03  David Hyatt  <hyatt@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate webView:didCommitLoadForFrame:]):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setMainFrameIsFirstResponder):
-        Remove explicit calls to _updateFocusedActiveState when the view is made first responder.
-        Focused state already properly updates when views become first responders, so these calls
-        are unnecessary.
-
-        (LayoutTestController::setWindowIsKey):
-        Explicitly call _updateActiveState when our window becomes key, since we're just faking it
-        and the notification won't be sent.
-
-2009-06-02  Jessie Berlin  <jberlin@apple.com>
-
-        Reviewed by Mark Rowe.
-        
-        Add "replace" behavior so that it shows the addition part of the
-        replacement of the file first, and then shows the changes.
-        
-        Future: Add in showing the removal part of the replacement.
-
-        * Scripts/svn-create-patch:
-
-2009-06-02  Brent Fulgham  <bfulgham@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Update WinLauncher for WebKitCreateInstance.
-        https://bugs.webkit.org/show_bug.cgi?id=26136
-
-        * WinLauncher/WinLauncher.cpp: Revise implementation to
-          use WebKitCreateInstance (rather than CoCreateInstance).
-        * WinLauncher/WinLauncher.h: Modify include path for
-          WebKit.h to match DumpRenderTree style.
-        * WinLauncher/WinLauncher.vcproj: Remove unnecessary
-          WebKit.tlb and EmbeddedIDL flags from build.
-
-2009-06-02  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Rubber-stamped by Adam Roben.
-
-        [Qt] Fix Perl warning about uninitialized value (passedConfiguration())
-
-        * Scripts/webkitdirs.pm:
-
-2009-06-02  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Rubber-stamped by Simon Hausmann.
-
-        Use File::Spec->tmpdir instead of hardcoded paths for tempfile() dir
-        
-        This fixes the Windows-build if the user does not have a /tmp directory.
-
-        * Scripts/bisect-builds:
-
-2009-06-01  Yongjun Zhang  <yongjun.zhang@nokia.com>>
-
-        Reviewed by Holger Freyther.  Landed by Adam Barth.
-
-        <https://bugs.webkit.org/show_bug.cgi?id=26070>
-
-        [Qt] EventSender.keyDown doesn't support Arrow Up and Down keys.
-        Add Down and Up key support.
-        
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (EventSender::keyDown):
-
-2009-06-01  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        svn-create-patch displays confusing "Broken pipe" errors from Subversion
-        when files have been renamed in local working copy.  This was happening
-        because we invoke 'svn info' to determine the URL that the file was copied
-        from, but we were closing the pipe to the subprocess before SVN had finished
-        writing its output.
-
-        * Scripts/prepare-ChangeLog: Consume all 'svn info' output before closing the file handle.
-        * Scripts/svn-create-patch: Ditto.
-
-2009-05-31  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Dan Bernstein.
-
-        - implement LayoutTestController::clearAllDatabases() on
-          Windows.
-
-        Needed for storage/transaction-error-callback.html.
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::clearAllDatabases):
-
-2009-05-28  Dirk Schulze  <krit@webkit.org>
-
-        Reviewed by Nikolas Zimmermann.
-
-        Added new build flag --filters. More details in WebCore/ChangeLog.
-
-        * Scripts/build-webkit:
-
-2009-05-28  Olivier DOLE  <odole@pleyo.com>
-
-        Reviewed by Maciej.
-
-        Add options to sunspider-compare-results to know which test suite to
-        compare (see bug #15941).
-
-        * Scripts/sunspider-compare-results:
-
-2009-05-27  Mark Rowe  <mrowe@apple.com>
-
-        Rubber-stamped by Dan Bernstein.
-
-        Update build-webkit to handle a new version of WebKitSystemInterface.
-
-        * Scripts/build-webkit:
-
-2009-05-27  Fridrich Strba  <fridrich.strba@bluewin.ch>
-
-        Reviewed by Maciej Stachowiak.
-
-        When building with MinGW, don't use the __declspec(dl{import,export})
-        decorations and rely on the linker to use its nifty auto-import feature.
-        It is extremely hard to get the decorations right with MinGW in general
-        and impossible in WebKit, where the resulting shared library is linking
-        together some static libraries.
-
-        * DumpRenderTree/config.h:
-
-2009-05-23  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        Land the updated version of WebKitLauncher that the nightly builds have been using.
-
-        Changes include:
-        1) Support for self-updating via Sparkle.
-        2) Now respects the "Open using Rosetta" preference.
-        3) Passes environment variables through to the spawned Safari process.
-        4) Logs a list of extensions that are detected to the system console.
-        5) Disables extensions that are known to cause crashes too early in the
-           launch process to be detected by the extension-detection code.
-
-        * WebKitLauncher/Configurations/Base.xcconfig: Added.
-        * WebKitLauncher/Configurations/WebKitLauncher.xcconfig: Added.
-        * WebKitLauncher/Configurations/WebKitNightlyEnabler.xcconfig: Added.
-        * WebKitLauncher/Info.plist:
-        * WebKitLauncher/WebKitLauncher.xcodeproj/project.pbxproj:
-        * WebKitLauncher/WebKitNightlyEnabler.h: Added.
-        * WebKitLauncher/WebKitNightlyEnabler.m:
-        (myBundleDidLoad):
-        (myApplicationWillFinishLaunching):
-        (poseAsWebKitApp):
-        (webKitLauncherBundle):
-        (enableWebKitNightlyBehaviour):
-        * WebKitLauncher/WebKitNightlyEnablerSparkle.h: Added.
-        * WebKitLauncher/WebKitNightlyEnablerSparkle.m: Added.
-        (initializeSparkle):
-        (updatePermissionPromptDescription):
-        (skipSignatureVerificationInDownloadDidFinish):
-        (updateAlertPanel):
-        (updateAlertInitForAlertPanel):
-        (-[NSAlert webKitHandleButtonPress:]):
-        (setMethodImplementation):
-        * WebKitLauncher/main.m:
-        (displayErrorAndQuit):
-        (getLastVersionShown):
-        (saveLastVersionShown):
-        (getPathForStartPage):
-        (getCurrentVersion):
-        (getShowStartPageVersion):
-        (startPageDisabled):
-        (addStartPageToArgumentsIfNeeded):
-        (preferredArchitecture):
-        (myExecve):
-        (locateSafariBundle):
-        (currentMacOSXVersion):
-        (checkFrameworkPath):
-        (main):
-
-2009-05-23  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Reviewed by Gustavo Noronha and Xan Lopez.
-
-        [Gtk] Enable database and localStorage support
-        https://bugs.webkit.org/show_bug.cgi?id=25629
-
-        Enable database and localStorage for running the storage/ tests.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting):
-
-2009-05-23  David Kilzer  <ddkilzer@apple.com>
-
-        Part 1 of 2: Bug 25495: Implement PassOwnPtr and replace uses of std::auto_ptr
-
-        <https://bugs.webkit.org/show_bug.cgi?id=25495>
-
-        Reviewed by Oliver Hunt.
-
-        * DumpRenderTree/ForwardingHeaders/wtf/OwnPtrCommon.h: Added.
-        * DumpRenderTree/ForwardingHeaders/wtf/PassOwnPtr.h: Added.
-
-2009-05-23  David Kilzer  <ddkilzer@apple.com>
-
-        resolve-ChangeLogs: Add missing newline to status message
-
-        * Scripts/resolve-ChangeLogs: Added newline to status message
-        that is printed when the -c|--continue switch is used but there
-        are unmerged files remaining in the git working directory.
-
-2009-05-23  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        Add an error message to a die statement in run-webkit-tests
-        I hit this die when two users tried to run-webkit-tests at the same time. :(
-
-        * Scripts/run-webkit-tests:
-
-2009-05-22  Andre Pedralho  <andre.pedralho@openbossa.org>
-
-        Reviewed by Simon Hausmann.
-
-        Fixed --makeargs usage in Qt build.
-
-        * Scripts/build-webkit:
-
-2009-05-22  Zoltan Horvath  <horvath.zoltan.6@stud.u-szeged.hu>
-
-        Reviewed by Simon Hausmann.
-
-        Correcting error message on missing WEBKIT_TESTFONTS
-        environment varible in Qt-port.
-
-        * DumpRenderTree/qt/main.cpp:
-        (main):
-
-2009-05-21  Eric Seidel  <eric@webkit.org>
-
-        Rubber-stamped by Antti Koivisto.
-
-        Make it possible to write js-only http tests by exposing a /js-test-resources alias.
-        https://bugs.webkit.org/show_bug.cgi?id=25915
-
-        Second attempt at landing, now using -c instead of -C to make sure
-        that mod_alias is loaded on Apache 1.x instances before using Alias.
-
-        * Scripts/run-webkit-httpd:
-        * Scripts/run-webkit-tests:
-
-2009-05-21  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
-
-        Reviewed by Xan Lopez.
-
-        Default to running HTTP tests for GTK+.
-
-        * Scripts/run-webkit-tests:
-
-2009-05-21  Darin Adler  <darin@apple.com>
-
-        Rolled the httpd changes out, since many machines (including the bots)
-        have an older version of Apache that does not support the Alias command.
-        Or maybe it's something else, but the bots are failing.
-
-        * Scripts/run-webkit-httpd: Rolled back.
-        * Scripts/run-webkit-tests: Ditto.
-
-2009-05-21  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Geoffrey Garen.
-
-        Make it possible to write js-only http tests by exposing a /js-test-resources alias.
-        https://bugs.webkit.org/show_bug.cgi?id=25915
-
-        * Scripts/run-webkit-httpd:
-        * Scripts/run-webkit-tests:
-
-2009-05-21  Andre Pedralho  <andre.pedralho@openbossa.org>
-
-        Reviewed by Gustavo Noronha.
-
-        Added --makeargs flag to the build script.
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-
-2009-05-14  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Reviewed by Anders Carlsson.
-
-        https://bugs.webkit.org/show_bug.cgi?id=24510 where
-
-        Add testHasProperty and testHasMethod to the existing functions
-        of the PluginObject to be able to test the browser hasproperty
-        and hasmethod implementation. Invoke them from pluginInvoke.
-
-        Change the defines to an enum to avoid manually updating
-        NUM_METHOD_IDENTIFIERS and assigning numbers.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (testHasProperty): test hasproperty
-        (testHasMethod): test hasmethod
-        (pluginInvoke): invoke the two
-
-2009-05-20  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by George Staikos.
-
-        BUG 25843: [Qt] Remove qt-port build flag
-        <https://bugs.webkit.org/show_bug.cgi?id=25843>
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * Scripts/webkitdirs.pm:
-
-2009-05-18  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Oliver Hunt.
-
-        Remove layoutTestController.addFileToPasteboardOnDrag and add eventSender.beginDragWithFiles
-        https://bugs.webkit.org/show_bug.cgi?id=25852
-
-        This allows us to now test multi-file file drags in DumpRenderTree per:
-        https://bugs.webkit.org/show_bug.cgi?id=25862
-
-        I removed the existing tests using addFileToPasteboardOnDrag()
-        and replaced them with a new test (editing/pasteboard/file-input-files-access)
-        which covers several more drag-drop cases.
-
-        I added a DumpRenderTreeFileDraggingSource class to avoid
-        the hack of if (!draggingSource) in [DumpRenderTreeDraggingInfo draggingSourceOperationMask]
-
-        New Test: editing/pasteboard/file-input-files-access.html
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/DumpRenderTreeFileDraggingSource.h: Added.
-        * DumpRenderTree/DumpRenderTreeFileDraggingSource.m: Added.
-        (-[DumpRenderTreeFileDraggingSource draggingSourceOperationMaskForLocal:]):
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::staticValues): removed addFileToPasteboardOnDrag support
-        (LayoutTestController::staticFunctions): removed addFileToPasteboardOnDrag support
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (runTest): ASSERT that draggingInfo has been cleared
-        * DumpRenderTree/mac/EventSendingController.mm:
-        (+[EventSendingController isSelectorExcludedFromWebScript:]): Sorted selectors.
-        (+[EventSendingController webScriptNameForSelector:]): Sorted selectors.
-        (-[EventSendingController beginDragWithFiles:]):
-        (-[EventSendingController mouseMoveToX:Y:]):
-        (-[EventSendingController keyDown:withModifiers:]):
-        (-[EventSendingController fireKeyboardEventsToElement:]): removed spurious { }
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:dragImage:at:offset:event:pasteboard:source:slideBack:forView:]): removed addFileToPasteboardOnDrag support
-
-2009-05-19  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wxMSW build fixes for DRT.
-
-        * DumpRenderTree/wx/DumpRenderTreeWx.cpp:
-        (runTest):
-        * DumpRenderTree/wx/WorkQueueItemWx.cpp:
-        (LoadItem::invoke):
-        (ReloadItem::invoke):
-        (ScriptItem::invoke):
-        (BackForwardItem::invoke):
-
-2009-05-18  Julien Chaffraix  <jchaffraix@webkit.org>
-
-        Bug 24569: Add some cookies tests
-
-        <https://bugs.webkit.org/show_bug.cgi?id=24569>
-
-        Patch by David Kilzer.
-
-        * Scripts/make-js-test-wrappers: Added regex to skip
-        cookies-test-(post|pre).js files.
-
-2009-05-18  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix. Use python-config to get Python linking info on Unix OSes. 
-
-        * wx/build-wxwebkit:
-
-2009-05-18  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix, initialize variable that doesn't get set on Windows.
-
-        * DumpRenderTree/wx/DumpRenderTreeWx.cpp:
-        (MyApp::OnInit):
-
-2009-05-18  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Reviewed by Xan Lopez.
-
-        [Gtk] Various autotools build refactoring and fixes
-        https://bugs.webkit.org/show_bug.cgi?id=25286
-
-        Add -no-install and -no-fast-install to programs and tests that we
-        don't install. Also remove -O2 since this is already handled at
-        configure time.
-
-        * GNUmakefile.am:
-
-2009-05-18  Julie Parent  <jparent@google.com>
-
-        Reviewed by Oliver Hunt.
-
-        https://bugs.webkit.org/show_bug.cgi?id=25846
-        Make eventSender dispatch a drag over event.
-
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:dragImage:at:offset:event:pasteboard:source:slideBack:forView:]):
-
-2009-05-18  Julie Parent  <jparent@google.com>
-
-        Reviewed by Eric Seidel.
-
-        https://bugs.webkit.org/show_bug.cgi?id=25716
-
-        * Scripts/make-js-test-wrappers: Added exception to avoid overwriting a custom-written test.
-
-2009-05-18  Julie Parent  <jparent@google.com>
-
-        Reviewed by Eric Seidel.
-
-        https://bugs.webkit.org/show_bug.cgi?id=25716
-
-        * Scripts/make-js-test-wrappers: Added exception to avoid overwriting a custom-written test.
-
-2009-05-11  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Reviewed by Jan Michael Alonzo.
-
-        https://bugs.webkit.org/show_bug.cgi?id=25787
-
-        Merge r41819 into Gtk. Do not use printf but send messages
-        through the log command.
-
-        * DumpRenderTree/gtk/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (log):
-        (webkit_test_plugin_new_instance):
-        (webkit_test_plugin_destroy_instance):
-        (webkit_test_plugin_set_window):
-        (webkit_test_plugin_handle_event):
-
-2009-05-11  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Reviewed by Jan Michael Alonzo.
-
-        https://bugs.webkit.org/show_bug.cgi?id=25787
-
-        Forward port r39877 from main.c of OSX to TestNetscapePlugin
-        of Gtk.
-
-        * DumpRenderTree/gtk/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_new_instance):
-
-2009-05-15  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix. Don't parse args using getopt since it isn't available on Windows.
-
-        * DumpRenderTree/wx/DumpRenderTreeWx.cpp:
-        (MyApp::OnInit):
-
-2009-05-15  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Reviewed by Holger Freyther.
-
-        [GTK] Implement layoutTestController.waitForPolicyDelegate
-        https://bugs.webkit.org/show_bug.cgi?id=25036
-
-        Connect to 'navigation-policy-decision-requested' and handle
-        waitForPolicy in the callback.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (invalidateAnyPreviousWaitToDumpWatchdog):
-        (webViewNavigationPolicyDecisionRequested):
-        (main):
-        * DumpRenderTree/gtk/DumpRenderTreeGtk.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::notifyDone):
-        (LayoutTestController::waitForPolicyDelegate):
-
-2009-05-14  David Levin  <levin@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        https://bugs.webkit.org/show_bug.cgi?id=24704
-
-        Make paths where data is saved be scoped to the ~ directory,
-        so that one can run independent instances by setting CFFIXED_USER_HOME.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (libraryPath):
-        (setDefaultsToConsistentValuesForTesting):
-        (dumpFrameAsPDF):
-
-2009-05-13  David Kilzer  <ddkilzer@apple.com>
-
-        Fix resolve-ChangeLogs when used with Subversion
-
-        Reviewed by Darin Adler.
-
-        Fixes the following issue when run on a Subversion repository:
-
-            $ ./WebKitTools/Scripts/resolve-ChangeLogs
-            ERROR: --continue may only be used with a git repository
-
-        * Scripts/resolve-ChangeLogs: Check for the boolean value of
-        $gitRebaseContinue, not whether it's defined, when validating
-        command-line switches.
-
-2009-05-12  David Kilzer  <ddkilzer@apple.com>
-
-        Bug 21418: resolve-ChangeLogs should have a --continue option which does git rebase --continue
-
-        <https://bugs.webkit.org/show_bug.cgi?id=21418>
-
-        Reviewed by Darin Adler.
-
-        * Scripts/resolve-ChangeLogs: Added -c|--continue switch that
-        runs "git rebase --continue" before exiting the script.
-        (hasGitUnmergedFiles): Added.  Returns true if there are
-        unmerged files in the git repository.
-
-2009-05-11  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Holger Freyther.
-
-        [Qt] Make sure that public APIs are properly exported on all Qt platforms
-        https://bugs.webkit.org/show_bug.cgi?id=25601
-
-        * Scripts/webkitdirs.pm: Remove QT_SHARED define from Qt builds, define QT_MAKEDLL in WebCore.pro instead
-
-2009-05-07  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fixes for Python extension and DRT.
-
-        * DumpRenderTree/wx/DumpRenderTreeWx.cpp:
-        (MyApp::OnInit):
-        * wx/build-wxwebkit:
-
-2009-05-07  Steve Falkenburg  <sfalken@apple.com>
-
-        Remove manifest fixup from r42729 to fix clean builds.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-
-2009-05-06  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix, fixes for wx trunk builds.
-
-        * DumpRenderTree/wx/DumpRenderTreeWx.cpp:
-        (MyApp::OnInit):
-        * wx/build-wxwebkit:
-
-2009-05-06  Steve Falkenburg  <sfalken@apple.com>
-
-        Explicitly set WebKitPaintNativeControls to false to allow Windows results to match Mac.
-
-        Reviewed by Adam Roben.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting):
-
-2009-05-06  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        Build QtWebKit as a framework on Mac
-
-        This implies both debug and release build by default, unless
-        one of the --debug or --release config options are passed to
-        the build-webkit script.
-
-        Frameworks can be disabled by passing CONFIG+=webkit_no_framework
-        to the build-webkit script.
-
-        To be able to build both debug and release targets in parallel
-        we have to use separate output directories for the generated
-        sources, which is not optimal, but required to avoid race conditions.
-
-        An optimization would be to only require this spit-up on Mac.
-
-        * Scripts/webkitdirs.pm:
-
-2009-05-05  Darin Adler  <darin@apple.com>
-
-        Try to fix Mac build.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp: (elementAtPointCallback): Initialize x and y.
-
-2009-05-05  Maclolm MacLeod  <mmacleod@webmail.co.za>
-
-        Reviewed by Kevin Ollivier.
-
-        Have wxWebkit make use of gcc(4 and greater) hidden visibility feature
-        
-        https://bugs.webkit.org/show_bug.cgi?id=24345
-
-        * wx/build-wxwebkit:
-
-2009-05-05  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Beth Dakin.
-
-        Bug 25574: AXImageMap children links don't respond properly to accessibilityHitTest:
-        https://bugs.webkit.org/show_bug.cgi?id=25574
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (elementAtPointCallback):
-        (getXCallback):
-        (getYCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (descriptionOfValue):
-        (AccessibilityUIElement::elementAtPoint):
-        (AccessibilityUIElement::role):
-        (AccessibilityUIElement::title):
-        (AccessibilityUIElement::description):
-        (AccessibilityUIElement::x):
-        (AccessibilityUIElement::y):
-        (AccessibilityUIElement::width):
-        (AccessibilityUIElement::height):
-        (AccessibilityUIElement::intValue):
-        (AccessibilityUIElement::minValue):
-        (AccessibilityUIElement::maxValue):
-        (AccessibilityUIElement::insertionPointLineNumber):
-        (AccessibilityUIElement::supportsPressAction):
-        (AccessibilityUIElement::lineForIndex):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::elementAtPoint):
-        (AccessibilityUIElement::x):
-        (AccessibilityUIElement::y):
-
-2009-05-06  Christian Dywan  <christian@twotoasts.de>
-
-        Reviewed by Gustavo Noronha.
-
-        http://bugs.webkit.org/show_bug.cgi?id=17066
-        [GTK] Improve frameloader signals
-
-        Update GtkLauncher to use the new load-status and progress properties
-        instead of the previous loading signals.
-
-        * GtkLauncher/main.c:
-        (update_title):
-        (notify_load_status_cb):
-        (notify_progress_cb):
-        (create_browser):
-        (create_window):
-
-2009-05-05  Adam Roben  <aroben@apple.com>
-
-        Don't use pdevenv when building with VC++ Express
-
-        Fixes Bug 25308: REGRESSION (r42182): Build fails after following
-        build instructions on webkit.org fail when using VC++ Express
-        <https://bugs.webkit.org/show_bug.cgi?id=25308>
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitdirs.pm:
-        (setupCygwinEnv): When Visual Studio is installed, set $vcBuildPath to
-        point to pdevenv. When VC++ Express is installed, set $vcBuildPath to
-        point to VC++ Express, as before.
-        (buildVisualStudioProject): Use $vcBuildPath to build instead of
-        hard-coding pdevenv.
-
-2009-05-05  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Rubber-stamped by Simon Hausmann.
-
-        Mention --qt as an option in the build-webkit help
-
-        * Scripts/build-webkit:
-
-2009-05-04  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Enable spell-checking in DumpRenderTree.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting):
-
-2009-05-04  Kevin Ollivier  <kevino@theolliviers.com>
-
-        Reviewed by Eric Seidel.
-        
-        Initial DRT implementation for wx.
-
-        * DumpRenderTree/DumpRenderTree.h:
-        * DumpRenderTree/wx: Added.
-        * DumpRenderTree/wx/DumpRenderTree.bkl: Added.
-        * DumpRenderTree/wx/DumpRenderTreeWx.cpp: Added.
-        (LayoutWebViewEventHandler::LayoutWebViewEventHandler):
-        (LayoutWebViewEventHandler::bindEvents):
-        (LayoutWebViewEventHandler::OnLoadEvent):
-        (LayoutWebViewEventHandler::OnAlertEvent):
-        (LayoutWebViewEventHandler::OnConfirmEvent):
-        (LayoutWebViewEventHandler::OnPromptEvent):
-        (LayoutWebViewEventHandler::OnConsoleMessageEvent):
-        (LayoutWebViewEventHandler::OnReceivedTitleEvent):
-        (LayoutWebViewEventHandler::OnWindowObjectClearedEvent):
-        (notifyDoneFired):
-        (dumpFramesAsText):
-        (dump):
-        (runTest):
-        (MyApp::OnInit):
-        * DumpRenderTree/wx/DumpRenderTreeWx.h: Added.
-        * DumpRenderTree/wx/GCControllerWx.cpp: Added.
-        (GCController::collect):
-        (GCController::collectOnAlternateThread):
-        (GCController::getJSObjectCount):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp: Added.
-        (LayoutTestController::~LayoutTestController):
-        (LayoutTestController::addDisallowedURL):
-        (LayoutTestController::clearBackForwardList):
-        (LayoutTestController::copyDecodedHostName):
-        (LayoutTestController::copyEncodedHostName):
-        (LayoutTestController::display):
-        (LayoutTestController::keepWebHistory):
-        (LayoutTestController::notifyDone):
-        (LayoutTestController::pathToLocalResource):
-        (LayoutTestController::queueLoad):
-        (LayoutTestController::setAcceptsEditing):
-        (LayoutTestController::setCustomPolicyDelegate):
-        (LayoutTestController::setMainFrameIsFirstResponder):
-        (LayoutTestController::setTabKeyCyclesThroughElements):
-        (LayoutTestController::setUseDashboardCompatibilityMode):
-        (LayoutTestController::setUserStyleSheetEnabled):
-        (LayoutTestController::setUserStyleSheetLocation):
-        (LayoutTestController::setWindowIsKey):
-        (LayoutTestController::setSmartInsertDeleteEnabled):
-        (LayoutTestController::setJavaScriptProfilingEnabled):
-        (LayoutTestController::setWaitToDump):
-        (LayoutTestController::windowCount):
-        (LayoutTestController::setPrivateBrowsingEnabled):
-        (LayoutTestController::setAuthorAndUserStylesEnabled):
-        (LayoutTestController::setPopupBlockingEnabled):
-        (LayoutTestController::elementDoesAutoCompleteForElementWithId):
-        (LayoutTestController::execCommand):
-        (LayoutTestController::setPersistentUserStyleSheetLocation):
-        (LayoutTestController::clearPersistentUserStyleSheet):
-        (LayoutTestController::clearAllDatabases):
-        (LayoutTestController::setDatabaseQuota):
-        (LayoutTestController::numberOfActiveAnimations):
-        (LayoutTestController::setSelectTrailingWhitespaceEnabled):
-        (LayoutTestController::pauseTransitionAtTimeOnElementWithId):
-        (LayoutTestController::setIconDatabaseEnabled):
-        (LayoutTestController::pauseAnimationAtTimeOnElementWithId):
-        (LayoutTestController::isCommandEnabled):
-        (LayoutTestController::webHistoryItemCount):
-        (LayoutTestController::waitForPolicyDelegate):
-        * DumpRenderTree/wx/WorkQueueItemWx.cpp: Added.
-        (LoadItem::invoke):
-        (ReloadItem::invoke):
-        (ScriptItem::invoke):
-        (BackForwardItem::invoke):
-        * Scripts/build-dumprendertree:
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-        * wx/build-wxwebkit:
-
-2009-05-03  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Geoffrey Garen.
-
-        Don't pass an exception parameter if we don't care about the value.
-
-        * DumpRenderTree/win/EventSender.cpp:
-        (keyDownCallback):
-
-2009-05-02  Darin Adler  <darin@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Another cut at getting tests passing on Windows again.
-
-        * DumpRenderTree/win/FrameLoadDelegate.cpp:
-        (FrameLoadDelegate::didStartProvisionalLoadForFrame): Tweak formatting.
-        (FrameLoadDelegate::didFailProvisionalLoadWithError): Ditto.
-        (FrameLoadDelegate::didCommitLoadForFrame): Ditto.
-        (FrameLoadDelegate::didFinishLoadForFrame): Ditto.
-        (FrameLoadDelegate::didFailLoadWithError): Added missing logging.
-
-2009-05-02  Darin Adler  <darin@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Try to get tests passing on Windows again.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (shouldLogFrameLoadDelegates): Allow either "/" or "\" as a path
-        separator. Also require separator before as well as after path name.
-
-2009-04-30  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix, define ENABLE_JAVASCRIPT_DEBUGGER.
-
-        * wx/build-wxwebkit:
-
-2009-04-30  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Reviewed by Timothy Hatcher.
-
-        https://bugs.webkit.org/show_bug.cgi?id=25470
-        Extend the cover of ENABLE_JAVASCRIPT_DEBUGGER to profiler.
-
-        * Scripts/build-webkit: Added ENABLE_JAVASCRIPT_DEBUGGER define.
-
-2009-04-29  Mark Rowe  <mrowe@apple.com>
-
-        Update build.webkit.org configuration for the addition of the new GTK buildbot.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2009-04-29  Mark Rowe  <mrowe@apple.com>
-
-        Ignore the --use-remote-links-to-tests option for GTK as it leads to
-        perl errors being spewed at the end of run-webkit-tests.
-
-        * Scripts/run-webkit-tests:
-
-2009-04-29  Mark Rowe  <mrowe@apple.com>
-
-        Implement test-result-archive for GTK.
-
-        * BuildSlaveSupport/test-result-archive:
-
-2009-04-28  Pierre d'Herbemont  <pdherbemont@apple.com>
-
-        Reviewed by David Kilzer.
-
-        https://bugs.webkit.org/show_bug.cgi?id=25462
-
-        Make sure "--pixel --add-platform-exceptions" produces platform
-        specific pixel test results.
-
-        * Scripts/run-webkit-tests: Support "--pixel
-        --add-platform-exceptions"
-
-2009-04-28  Steve Falkenburg  <sfalken@apple.com>
-
-        Fix link warnings building TestNetscapePlugin on Windows due to mismatched
-        DLL name vs. LIBRARY directive name.
-        
-        Reviewed by Jon Honeycutt.
-
-        * DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin.def:
-        * DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin_debug.def: Added.
-
-2009-04-28  Steve Falkenburg  <sfalken@apple.com>
-
-        Fix warnings about PRODUCTION and ARCHIVE_BUILD on Windows builds
-        of ImageDiff and DumpRenderTree.
-        
-        Rubber stamped by Adam Roben.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/ImageDiff.vcproj:
-
-2009-04-28  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Add ability to get the children count of an AX element.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (getChildrenCountCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::childrenCount):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::childrenCount):
-
-2009-04-27  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Reviewed by Gustavo Noronha.
-
-        [GTK] Make layout tests / jsc tests usable without build-webkit
-        https://bugs.webkit.org/show_bug.cgi?id=21784
-
-        This requires WEBKITOUTPUTDIR to be set to the build directory.
-        Set the location of the product dir to the location pointed to by
-        WEBKITOUTPUTDIR.
-
-        * Scripts/webkitdirs.pm:
-
-2009-04-27  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Reviewed by Adam Roben.
-
-        Use libsoup's facilities to resolve relative URLs, instead, since
-        it is a more robust method.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::queueLoad):
-
-2009-04-26  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Reviewed by Xan Lopez.
-
-        Resolve relative URLs when queueing loads. This fixes
-        post-goback-same-url.html timing out.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::queueLoad):
-
-2009-04-24  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix. Switching JSCore from a static lib to a dynamic lib
-        to match the Apple build and fix symbol exports.
-
-        * wx/build-wxwebkit:
-
-2009-04-24  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Add PrettyPatch support to run-webkit-tests
-
-        * Scripts/run-webkit-tests:
-
-2009-04-24  Steve Falkenburg  <sfalken@apple.com>
-
-        Fix nightly for Windows x64 users.
-        Installed browser location is written to a slightly different registry key in that case.
-        
-        * FindSafari/FindSafari.cpp:
-        (getInstalledWebKitDirectory):
-
-2009-04-23  Mark Rowe  <mrowe@apple.com>
-
-        Fix the Windows DRT build.
-
-        * DumpRenderTree/win/PolicyDelegate.h:
-
-2009-04-23  Brady Eidson  <beidson@apple.com>
-
-        Fix Windows DRT build.
-
-        * DumpRenderTree/win/PolicyDelegate.cpp:
-        (PolicyDelegate::unableToImplementPolicyWithError):
-
-2009-04-22  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Maciej Stachowiak
-
-        Add additional support for test:
-        <rdar://problem/5689748> - Cannot redirect to protocols handled by external applications.
-
-        * DumpRenderTree/mac/PolicyDelegate.mm:
-        (-[PolicyDelegate webView:unableToImplementPolicyWithError:frame:]): Dump formatted information when
-          a policy cannot be implemented.
-
-        * DumpRenderTree/win/PolicyDelegate.cpp:
-        (PolicyDelegate::unableToImplementPolicyWithError): Ditto.
-        * DumpRenderTree/win/PolicyDelegate.h:
-
-2009-04-22  Sam Weinig  <sam@webkit.org>
-
-        Rubber-stamped by Darin Adler.
-
-        Fix for <rdar://problem/6816957>
-        Turn off Geolocation by default
-
-        * Scripts/build-webkit:
-
-2009-04-21  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Jon Honeycutt.
-
-        - dump the node in the element dictionary in the action information
-          passed to the policy delegate
-
-        * DumpRenderTree/mac/PolicyDelegate.mm:
-        (-[PolicyDelegate webView:decidePolicyForNavigationAction:request:frame:decisionListener:]):
-        * DumpRenderTree/win/PolicyDelegate.cpp:
-        (dumpPath):
-        (PolicyDelegate::decidePolicyForNavigationAction):
-
-2009-04-21  Adam Roben  <aroben@apple.com>
-
-        Windows build fix after r42726
-
-        * DumpRenderTree/win/DumpRenderTree.cpp: Touched to force a rebuild.
-        * DumpRenderTree/win/DumpRenderTree.vcproj: Delete any pre-r42726
-        manifest files during the pre-build event.
-
-2009-04-21  Steve Falkenburg  <sfalken@apple.com>
-
-        Use new WebKitCreateInstance API instead of CoCreateInstance
-        or COMPtr's createInstance to instantiate WebKit COM objects.
-
-        Reviewed by Adam Roben.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (initialize):
-        (runTest):
-        (createWebViewAndOffscreenWindow):
-        (main):
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/GCControllerWin.cpp:
-        (GCController::collect):
-        (GCController::collectOnAlternateThread):
-        (GCController::getJSObjectCount):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::keepWebHistory):
-        (LayoutTestController::webHistoryItemCount):
-        (LayoutTestController::setIconDatabaseEnabled):
-        * DumpRenderTree/win/WorkQueueItemWin.cpp:
-        (LoadItem::invoke):
-
-2009-04-20  Timothy Hatcher  <timothy@apple.com>
-
-        Stop using the fullDocumentTeardownEnabled WebPreference methods.
-        Just set the WebKitEnableFullDocumentTeardownPreferenceKey default.
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (setDefaultsToConsistentValuesForTesting):
-        (resetWebViewToConsistentStateBeforeTesting):
-
-2009-04-21  Geoffrey Garen  <ggaren@apple.com>
-
-        Rubber-stamped by Adam Roben.
-        
-        Disabled one more Mozilla JS test because it fails intermittently on Windows.
-        (See https://bugs.webkit.org/show_bug.cgi?id=25160.)
-
-        * Scripts/run-javascriptcore-tests:
-
-2009-04-21  Adam Roben  <aroben@apple.com>
-
-        Fix running run-safari and run-webkit-tests from the paths recommended
-        on webkit.org
-
-        Reviewed by Steve Falkenburg and Sam Weinig.
-
-        * Scripts/run-webkit-nightly.cmd: Moved quotes from variable
-        definitions to variable uses. Otherwise cmd.exe can get confused about
-        the quoting.
-        * Scripts/run-webkit-tests: Changed to use an absolute path to
-        execAppWithEnv so that run-webkit-tests will work when run from
-        outside the source tree.
-
-2009-04-21  Adam Roben  <aroben@apple.com>
-
-        Rename JavaScriptCore_debug.dll to JavaScriptCore.dll in the Debug
-        configuration
-
-        This matches the naming scheme for WebKit.dll, and will be necessary
-        once Safari links against JavaScriptCore.dll. This change also causes
-        run-safari not to fail (because the launcher printed by FindSafari was
-        always looking for JavaScriptCore.dll, never
-        JavaScriptCore_debug.dll).
-
-        Part of Bug 25305: can't run safari or drt on windows
-        <https://bugs.webkit.org/show_bug.cgi?id=25305>
-
-        Reviewed by Steve Falkenburg and Sam Weinig.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj: Use
-        $(WebKitDLLConfigSuffix) for naming JavaScriptCore.{dll,lib}.
-
-2009-04-21  Steve Falkenburg  <sfalken@apple.com>
-
-        Update FindSafari for JavaScriptCore DLL changes.
-        Also removed code previously needed to support running nightlies against Safari 3 on Windows.
-        
-        Reviewed by Mark Rowe.
-
-        * FindSafari/FindSafari.cpp:
-        (getStringValue):
-        (getInstalledWebKitDirectory):
-        (_tmain):
-
-2009-04-20  Darin Adler  <darin@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Added PlainTextController.h
-        and PlainTextController.mm.
-
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate webView:didClearWindowObject:forFrame:]): Added PlainTextController
-        as "window.plainText".
-
-        * DumpRenderTree/mac/PlainTextController.h: Added.
-        * DumpRenderTree/mac/PlainTextController.mm: Added.
-
-2009-04-20  Steve Falkenburg  <sfalken@apple.com>
-
-        Separate JavaScriptCore.dll from WebKit.dll.
-        Slight performance improvement or no change on benchmarks.
-        
-        Allows us to break a circular dependency between CFNetwork and WebKit on Windows,
-        and simplifies standalone JavaScriptCore builds.
-
-        Reviewed by Oliver Hunt.
-
-        * DumpRenderTree/config.h: Specify JS, WebKit exported data as __declspec(dllimport)
-        * DumpRenderTree/win/DumpRenderTree.vcproj: Link against JavaScriptCore.dll
-
-2009-04-20  Sam Weinig  <sam@webkit.org>
-
-        Rubber-stamped by Tim Hatcher.
-
-        Add licenses for xcconfig files.
-
-        * DumpRenderTree/mac/Configurations/Base.xcconfig:
-        * DumpRenderTree/mac/Configurations/DebugRelease.xcconfig:
-        * DumpRenderTree/mac/Configurations/DumpRenderTree.xcconfig:
-        * DumpRenderTree/mac/Configurations/ImageDiff.xcconfig:
-        * DumpRenderTree/mac/Configurations/TestNetscapePlugIn.xcconfig:
-
-2009-04-19  David Kilzer  <ddkilzer@apple.com>
-
-        Make FEATURE_DEFINES completely dynamic
-
-        Reviewed by Darin Adler.
-
-        Make FEATURE_DEFINES depend on individual ENABLE_FEATURE_NAME
-        variables for each feature, making it possible to remove all
-        knowledge of FEATURE_DEFINES from build-webkit.
-
-        * Scripts/build-webkit: Define individual ENABLE_FEATURE_NAME
-        variables instead of the whole FEATURE_DEFINES string when
-        building with Xcode.  Miscellaneous clean up:
-        - Reordered/sorted command-line switch variables.
-        - Reordered/sorted command-line switches in $usage.
-        - Reordered/sorted command-line switches in GetOptions().
-        - Defined $svgSupport to true if any --svg-feature switch is
-          set in order to match "Implies SVG Support" claim.
-        - Build JavaScriptGlue after JavaScriptCore again!
-        - Fixed --[no-]geolocation for GTK+ port and sorted GTK+
-          command-line switches.
-        - Added "exit 0" statement at the end of the script.
-
-2009-04-17  David Kilzer  <ddkilzer@apple.com>
-
-        Simplify FEATURE_DEFINES definition
-
-        Reviewed by Darin Adler.
-
-        This moves FEATURE_DEFINES and its related ENABLE_FEATURE_NAME
-        variables to their own FeatureDefines.xcconfig file.  It also
-        extracts a new ENABLE_GEOLOCATION variable so that
-        FEATURE_DEFINES only needs to be defined once.
-
-        * Scripts/build-webkit: Realphabetized code related to enabling
-        Geolation features for WebKit.  Also set ENABLE_GEOLOCATION
-        variable for xcodebuild.
-
-2009-04-16  Darin Fisher  <darin@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=25223
-        REGRESSION: Back button after form submission to the same URL fails to navigate.
-
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate processWork:]): Need to defer processing the work
-        queue if a navigation started between locationChangeDone and our
-        delayed processWork call.  This can happen when using queueLoadingScript
-        to load script that simulates a click on a link or submit button since
-        those clicks happen asynchronously.
-        * DumpRenderTree/win/FrameLoadDelegate.cpp:
-        (FrameLoadDelegate::processWork): Same as above.
-
-2009-04-16  Geoffrey Garen  <ggaren@apple.com>
-
-        Build fix: updated check-for-global-initializers to account for code motion.
-
-        * Scripts/check-for-global-initializers:
-
-2009-04-16  Zan Dobersek  <zandobersek@gmail.com>
-
-        Reviewed by Adam Roben.
-
-        Compare test's response mime type and dump test as text properly.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (dump):
-
-
-2009-04-16  Adam Roben  <aroben@apple.com>
-
-        Skip yet another JavaScriptCore test that sometimes fails on Windows
-
-        See Bug 25160: Various ecma/Date tests sometimes fail on Windows (but
-        not Mac)
-        <https://bugs.webkit.org/show_bug.cgi?id=25160>
-
-        * Scripts/run-javascriptcore-tests: Skip ecma/Date/15.9.2.2-6.js.
-
-2009-04-15  Steve Falkenburg  <sfalken@apple.com>
-
-        Redo last build fix in a more straightforward way.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (sharedCFURLCache):
-
-2009-04-15  Steve Falkenburg  <sfalken@apple.com>
-
-        Fix Windows build of DumpRenderTree.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (sharedCFURLCache):
-        (main):
-
-2009-04-15  Adam Roben  <aroben@apple.com>
-
-        Skip yet another JavaScriptCore test that sometimes fails on Windows
-
-        See Bug 25160: Various ecma/Date tests sometimes fail on Windows (but
-        not Mac)
-        <https://bugs.webkit.org/show_bug.cgi?id=25160>
-
-        * Scripts/run-javascriptcore-tests: Skip ecma/Date/15.9.2.2-2.js (who
-        didn't see it coming?).
-
-2009-04-14  Adam Roben  <aroben@apple.com>
-
-        Skip another JavaScriptCore test that sometimes fails on Windows
-
-        See Bug 25160: Various ecma/Date tests sometimes fail on Windows (but
-        not Mac)
-        <https://bugs.webkit.org/show_bug.cgi?id=25160>
-
-        Rubber-stamped by Geoff Garen.
-
-        * Scripts/run-javascriptcore-tests: Skip ecma/Date/15.9.2.2-3.js.
-
-2009-04-14  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix. Move the DerivedSources.make calls into build-wxwebkit so that
-        the FEATURE_DEFINES are parsed properly.
-
-        * wx/build-wxwebkit:
-
-2009-04-14  Adam Roben  <aroben@apple.com>
-
-        Small run-javascriptcore-tests cleanup
-
-        Reviewed by Cameron Zwarich.
-
-        * Scripts/run-javascriptcore-tests: Move the list of tests to skip
-        into its own variable, annotated with the bugs that are filed about
-        the various failures.
-
-2009-04-14  Adam Roben  <aroben@apple.com>
-
-        Skip another sometimes-failing ecma/Date test on Windows
-
-        These failing tests are covered by Bug 25160: Various ecma/Date tests
-        sometimes fail on Windows (but not Mac)
-        <https://bugs.webkit.org/show_bug.cgi?id=25160>
-
-        Reviewed by Cameron Zwarich.
-
-        * Scripts/run-javascriptcore-tests: Added ecma/Date/15.9.2.1.js to the
-        list of tests to skip.
-
-2009-04-14  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Reviewed by Holger Freyther.
-
-        [Gtk] disable soup auth dialog when running DRT
-        https://bugs.webkit.org/show_bug.cgi?id=24598
-
-        Disable soup's auth dialog when running the tests.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (setDefaultsToConsistentStateValuesForTesting):
-        * GNUmakefile.am:
-
-2009-04-13  Darin Adler  <darin@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        * Scripts/check-for-exit-time-destructors: Add ERROR: and WARNING: prefixes to
-        make these scripts work better with the build window in new versions of Xcode.
-        * Scripts/check-for-global-initializers: Ditto.
-        * Scripts/check-for-weak-vtables: Ditto.
-
-2009-04-13  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Disabled another JavaScriptCore test because it fails on Windows but
-        not Mac, so it makes the bots red.
-
-        * Scripts/run-javascriptcore-tests:
-
-2009-04-13  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Disabled two JavaScriptCore tests because they fail on Window or Mac but
-        not both, so they make the bots red.
-
-        * Scripts/run-javascriptcore-tests:
-
-2009-04-13  Darin Adler  <darin@apple.com>
-
-        * Scripts/make-js-test-wrappers: Added another exception.
-
-2009-04-10  Adam Roben  <aroben@apple.com>
-
-        Add our new test font to the list that DRT knows about
-
-        Reviewed by Dan Bernstein.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (initialize): Added WebKit Layout Tests 2.ttf.
-
-2009-04-09  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Unreviewed Gtk build fix for undefined reference: g_thread_init.
-        Add GLIB_LIBS to DRT and GtkLauncher build config.
-
-        * GNUmakefile.am:
-
-2009-04-09  David Kilzer  <ddkilzer@apple.com>
-
-        Reinstating <rdar://problem/6718589> Option to turn off SVG DOM Objective-C bindings
-
-        Rolled r42345 back in.  The build failure was caused by an
-        internal script which had not been updated the same way that
-        build-webkit was updated.
-
-        * Scripts/build-webkit:
-
-2009-04-09  David Levin  <levin@chromium.org>
-
-        Reviewed by David Kilzer.
-
-        https://bugs.webkit.org/show_bug.cgi?id=25101
-
-        Launch DumpRenderTree and the image diff tool in a way that will work from perl threads.
-        This is a workaround due to a perl limitation. When perl does open* calls on a thread, it ignores
-        the environment of the current thread and simply uses the environment of the main thread instead.
-
-        * Scripts/execAppWithEnv: Added.
-        * Scripts/run-webkit-tests:
-
-2009-04-09  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reverting <rdar://problem/6718589> Option to turn off SVG DOM Objective-C bindings.
-        It broke Mac build, and I don't know how to fix it.
-
-        * Scripts/build-webkit:
-
-2009-04-08  David Kilzer  <ddkilzer@apple.com>
-
-        <rdar://problem/6718589> Option to turn off SVG DOM Objective-C bindings
-
-        Reviewed by Darin Adler and Maciej Stachowiak.
-
-        Introduce the ENABLE_SVG_DOM_OBJC_BINDINGS feature define so
-        that SVG DOM Objective-C bindings may be optionally disabled.
-
-        * Scripts/build-webkit: Added --[no-]svg-dom-objc-bindings
-        command-line argument.  Set special ENABLE_SVG_DOM_OBJC_BINDINGS
-        Xcode variable required by WebCore.xcconfig.
-
-2009-04-07  Adam Roben  <aroben@apple.com>
-
-        Print the number of files being compiled when using pdevenv
-
-        * Scripts/parallelcl:
-
-2009-04-07  Mark Rowe  <mrowe@apple.com>
-
-        Land the current build.webkit.org configuration for safekeeping.
-
-        * BuildSlaveSupport/build.webkit.org-config/README: Added.
-        * BuildSlaveSupport/build.webkit.org-config/Makefile:
-        * BuildSlaveSupport/build.webkit.org-config/buildbot.tac:
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Added.
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/buildbot.css: Renamed from BuildSlaveSupport/build.webkit.org-config/buildbot.css.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/index.html: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/robots.txt: Added.
-        * BuildSlaveSupport/build.webkit.org-config/webkit/__init__.py: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/webkit/auth.py: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/webkit/basesteps.py: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/webkit/builders.py: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/webkit/factories.py: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/webkit/schedulers.py: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/webkit/status.py: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/webkit/steps.py: Removed.
-
-2009-04-07  Mark Rowe  <mrowe@apple.com>
-
-        Ignore the mysterious exception that Cygwin's Python is throwing when attempting
-        to remove the layout-test-results directory.
-
-        * BuildSlaveSupport/test-result-archive:
-
-2009-04-07  Mark Rowe  <mrowe@apple.com>
-
-        Change the working directory before removing the test result directory
-        in the hopes of making the Windows build slaves happier.
-
-        * BuildSlaveSupport/test-result-archive:
-
-2009-04-07  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Make the links to tests in the uploaded results.html files on build.webkit.org point to the test files.
-
-        * Scripts/VCSUtils.pm: Add a function that will return the location of a file relative to the root of the working copy.
-        * Scripts/run-webkit-tests: Convert the path in to a remote URL if the path is below the layout tests directory.
-
-2009-04-07  Mark Rowe  <mrowe@apple.com>
-
-        Remove the layout-test-results directory after we have archived it so that
-        log files and results are reset between runs of the tests.
-
-        * BuildSlaveSupport/test-result-archive:
-
-2009-04-07  Mark Rowe  <mrowe@apple.com>
-
-        Helper script for uploading layout test results for display on build.webkit.org.
-
-        * BuildSlaveSupport/test-result-archive: Copied from WebKitTools/BuildSlaveSupport/built-product-archive.
-
-2009-04-11  Brian Weinstein  <bweinstein@gmail.com>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=24908
-
-        Allows timeout to be set in run-webkit-tests as a command line argument.
-
-        * Scripts/run-webkit-tests:
-
-2009-04-06  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
-
-        Rubber-stamped by Tor Arne Vestbø.
-
-        Add /Programs to the productDir for GTK+, instead of adding
-        /JavaScriptCore, when running jsc.
-
-        * Scripts/run-sunspider:
-
-2009-04-04  Kevin Ollivier  <kevino@theolliviers.com>
-
-        Build fixes for wxMac/Tiger and PPC builds.
-
-        * wx/build-wxwebkit:
-
-2009-04-04  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix. Update the version of ICU dlls.
-
-        * wx/build-wxwebkit:
-
-2009-04-03  Stephanie Lewis  <slewis@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        Fix running DumpRenderTree with a root.
-
-        * Scripts/run-webkit-tests:
-
-2009-04-02  Adam Roben  <aroben@apple.com>
-
-        Build fix for Windows machines that don't have WebKitTools/Scipts in
-        their PATH
-
-        * Scripts/pdevenv: Add WebKitTools/Scripts to PATH when launching
-        Visual Studio/VC++ Express.
-
-2009-04-02  Adam Roben  <aroben@apple.com>
-
-        Use pdevenv when building .vcproj files via our scripts
-
-        Reviewed by Mark Rowe.
-
-        * Scripts/webkitdirs.pm:
-        (sub buildVisualStudioProject): Use pdevenv instead of invoking Visual
-        Studio/VC++ Express directly.
-
-2009-04-01  Mark Rowe  <mrowe@apple.com>
-
-        Windows support for built-product-archive.
-
-        * BuildSlaveSupport/built-product-archive:
-
-2009-03-31  Adam Roben  <aroben@apple.com>
-
-        Make resolve-ChangeLogs -f work when the working tree has spaces in
-        its path
-
-        Reviewed by Mark Rowe and David Kilzer.
-
-        * Scripts/resolve-ChangeLogs:
-        (sub fixMergedChangeLogs): Quote the path to resolve-ChangeLogs in
-        case it contains spaces.
-
-2009-03-31  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=24777
-        WebKit tools are broken on Tiger
-
-        * Scripts/webkitdirs.pm: Don't use arch command with options on Tiger.
-
-2009-03-31  Darin Adler  <darin@apple.com>
-
-        * Scripts/add-include: Added.
-
-2009-03-31  Mark Rowe  <mrowe@apple.com>
-
-        Fix use of incorrect constant.
-
-        * BuildSlaveSupport/built-product-archive:
-
-2009-03-30  Mark Rowe  <mrowe@apple.com>
-
-        Rubber-stamped by Stephanie Lewis.
-
-        Add a script in support of the new build.webkit.org configuration.
-
-        * BuildSlaveSupport/built-product-archive: Added.
-
-2009-03-30  Darin Adler  <darin@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Make policy-delegate logging work even for local files by processing the URLs as we
-        do for other delegates.
-
-        * DumpRenderTree/mac/PolicyDelegate.mm:
-        (-[PolicyDelegate webView:decidePolicyForNavigationAction:request:frame:decisionListener:]):
-        Use _drt_descriptionSuitableForTestResult on the URL.
-
-        * DumpRenderTree/win/PolicyDelegate.cpp:
-        (PolicyDelegate::decidePolicyForNavigationAction): Use urlSuitableForTestResult on the URL.
-
-2009-03-30  Adam Roben  <aroben@apple.com>
-
-        Windows build fix
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::waitForPolicyDelegate): Added this empty stub.
-
-        * DumpRenderTree/win/WorkQueueItemWin.cpp:
-        (LoadItem::invoke):
-        (ScriptItem::invoke):
-        Changed to use data members instead of removed member functions.
-
-2009-03-30  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Gtk DRT build fix per changeset
-        http://trac.webkit.org/changeset/42082. Not reviewed.
-
-        * DumpRenderTree/gtk/WorkQueueItemGtk.cpp:
-        (LoadItem::invoke):
-        (ScriptItem::invoke):
-
-2009-03-29  Darin Adler  <darin@apple.com>
-
-        * DumpRenderTree/qt/jsobjects.cpp: Rolled out changes to this file. Maybe this will fix
-        Qt building of DumpRenderTree.
-
-2009-03-29  Darin Adler  <darin@apple.com>
-
-        Reviewed by Cameron Zwarich.
-
-        Bug 24922: change WorkQueue-based navigation tests to not depend on synchronous form submission
-        https://bugs.webkit.org/show_bug.cgi?id=24922
-
-        Don't rely on delegate methods to guess whether a queued step starts a load or not, because
-        script-triggered loads can't be detected that way. Instead have the steps themselves indicate
-        whether or not a load was triggered.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (queueLoadingScriptCallback): Added. Version for scripts that perform loads.
-        (queueNonLoadingScriptCallback): Added. Version for scripts that do not perform loads.
-        (LayoutTestController::staticFunctions): Replaced queueScript with queueLoadingScript and
-        queueNonLoadingScript.
-        (LayoutTestController::queueBackNavigation): Moved here since it's platform-independent now.
-        (LayoutTestController::queueForwardNavigation): Ditto.
-        (LayoutTestController::queueLoadingScript): Replacement for queueScript. Here since it's
-        platform-independent.
-        (LayoutTestController::queueNonLoadingScript): Ditto.
-        (LayoutTestController::queueReload): Moved here since it's platform-independent now.
-        * DumpRenderTree/LayoutTestController.h: Ditto.
-
-        * DumpRenderTree/WorkQueue.cpp:
-        (WorkQueue::processWork): Added. Shared by the different platform's work queue implementations.
-        * DumpRenderTree/WorkQueue.h: Ditto.
-
-        * DumpRenderTree/WorkQueueItem.h: Changed the invoke function to return true if the item
-        started a load. Removed unused getter functions. Made invoke functions private.
-        Added LoadingScriptItem and NonLoadingScriptItem, making ScriptItem an abstract base.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (processWork): Use the new WorkQueue::processWork function to implement the new rule.
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp: Removed queue functions that are now
-        platform-independent and in LayoutTestController.cpp.
-        * DumpRenderTree/gtk/WorkQueueItemGtk.cpp:
-        (LoadItem::invoke): Return true.
-        (ReloadItem::invoke): Ditto.
-        (ScriptItem::invoke): Ditto.
-        (BackForwardItem::invoke): Ditto.
-
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate processWork:]): Use the new WorkQueue::processWork function to implement
-        the new rule.
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm: Removed queue functions that are now
-        platform-independent and in LayoutTestController.cpp.
-        * DumpRenderTree/mac/WorkQueueItemMac.mm:
-        (LoadItem::invoke): Return true.
-        (ReloadItem::invoke): Ditto.
-        (ScriptItem::invoke): Ditto.
-        (BackForwardItem::invoke): Ditto.
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::processWork): Use the new WorkQueue::processWork function to implement
-        the new rule. Removed queue functions that are now platform-independent and in
-        LayoutTestController.cpp.
-
-        * DumpRenderTree/win/FrameLoadDelegate.cpp:
-        (FrameLoadDelegate::processWork): Use the new WorkQueue::processWork function to implement
-        the new rule.
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp: Removed queue functions that are now
-        platform-independent and in LayoutTestController.cpp.
-        * DumpRenderTree/win/WorkQueueItemWin.cpp:
-        (LoadItem::invoke): Return false when we fail, true when we succeed.
-        (ReloadItem::invoke): Ditto.
-        (ScriptItem::invoke): Ditto.
-        (BackForwardItem::invoke): Ditto.
-
-2009-03-28  Kevin Ollivier  <kevino@theolliviers.com>
-
-        Reviewed by Eric Seidel.
-        
-        Always use wxGraphicsContext on Mac to ensure path, matrix, etc. support.
-
-        * wx/build-wxwebkit:
-
-2009-03-27  Darin Adler  <darin@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        * Scripts/extract-localizable-strings: Fixed version check for perl 5.10 compatibility.
-
-2009-03-27  Darin Adler  <darin@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Added waitForPolicyDelegate, a more-reliable way to make our mailto form submission
-        tests work.
-
-        * DumpRenderTree/AccessibilityController.cpp:
-        (getFocusedElementCallback): Use static_cast instead of reinterpret_cast because there's
-        no reason to use reinterpret_cast just to get from void* to a specific type.
-        (getRootElementCallback): Ditto.
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (toAXElement): Ditto.
-        * DumpRenderTree/GCController.cpp:
-        (collectCallback): Ditto.
-        (collectOnAlternateThreadCallback): Ditto.
-        (getJSObjectCountCallback): Ditto.
-        * DumpRenderTree/LayoutTestController.cpp:
-        (many functions):  Ditto.
-        (waitForPolicyDelegateCallback): Added.
-        (LayoutTestController::staticFunctions): Sorted functions by name.
-        Added waitForPolicyDelegate.
-
-        * DumpRenderTree/LayoutTestController.h: Sorted functions by name.
-        Added waitForPolicyDelegate.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting): Added code to reset the state of the
-        policy delegate.
-        (runTest): Added an additional call to resetWebViewToConsistentStateBeforeTesting just
-        before loading an empty page. This prevents extra policy delegate calls from being logged.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::waitForPolicyDelegate): Added. Puts us into wait mode, and then
-        tells the policy delegate to notify when done, then points the web view at the policy delegate.
-
-        * DumpRenderTree/mac/PolicyDelegate.h: Added setControllerToNotifyDone: method.
-
-        * DumpRenderTree/mac/PolicyDelegate.mm:
-        (-[PolicyDelegate webView:decidePolicyForNavigationAction:request:frame:decisionListener:]):
-        Added code to do notifyDone if controllerToNotifyDone is set.
-        (-[PolicyDelegate setControllerToNotifyDone:]): Added.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting): Added code to reset the state of the
-        policy delegate. Also moved the call to resetUndoManager in here.
-        (runTest): Removed the call to resetUndoManager (see above). Added an additional call to
-        resetWebViewToConsistentStateBeforeTesting to match the Mac code.
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setCustomPolicyDelegate): 0, not NULL.
-
-        * DumpRenderTree/win/PolicyDelegate.cpp:
-        (PolicyDelegate::PolicyDelegate): Initialize m_controllerToNotifyDone to 0.
-        (PolicyDelegate::decidePolicyForNavigationAction): Added code to do notifyDone if
-        m_controllerToNotifyDone is set.
-
-        * DumpRenderTree/win/PolicyDelegate.h: Added setControllerToNotifyDone and
-        m_controllerToNotifyDone.
-
-2009-03-27  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Gavin Barraclough.
-
-        Fix for https://bugs.webkit.org/show_bug.cgi?id=24765
-        prepare-ChangeLog and svn-create-patch doesn't work with svn 1.6
-
-        * Scripts/prepare-ChangeLog:
-        * Scripts/svn-create-patch:
-
-2009-03-26  Darin Adler  <darin@apple.com>
-
-        Reviewed by Geoff Garen.
-
-        * Scripts/do-webcore-rename:Update for rename of JSUnprotectedEventListener to
-        JSEventListener.
-
-2009-03-26  Darin Adler  <darin@apple.com>
-
-        Reviewed by Geoff Garen.
-
-        * Scripts/do-webcore-rename: Update for rename of JSEventListener to
-        JSProtectedEventListener. This includes all the related renames, but
-        not that one because that one renames the file.
-
-2009-03-26  Adam Roben  <aroben@apple.com>
-
-        Reduce run-webkit-tests's time out limit to 15 seconds (or 2.5 minutes
-        under GuardMalloc)
-
-        The previous limit was 60 seconds (or 10 minutes under GuardMalloc).
-        There's no evidence that we need the limit to be this long, and having
-        it be so long just makes timed-out tests take forever to complete.
-        DRT's watchdog timer is 10 seconds, so still has time to fire before
-        run-webkit-tests will cut it off.
-
-        Reviewed by Simon Fraser.
-
-        * Scripts/run-webkit-tests:
-        (sub readFromDumpToolWithTimer): Reduced the limit to 15 seconds (or
-        2.5 mintues under GuardMalloc).
-
-2009-03-26  Adam Roben  <aroben@apple.com>
-
-        Make DRT's watchdog timer actually work on Windows
-
-        We were previously trying to use a CFRunLoopTimer for the watchdog
-        timer on Windows. This doesn't work because we don't use a CFRunLoop
-        on the main thread on Windows.
-
-        This patch changes the watchdog timer on Windows be a normal Windows
-        timer.
-
-        Reviewed by Simon Fraser.
-
-        * DumpRenderTree/DumpRenderTree.h: Moved declaration of
-        waitToDumpWatchdog from here...
-        * DumpRenderTree/mac/DumpRenderTreeMac.h: ...to here.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (invalidateAnyPreviousWaitToDumpWatchdog): Added. This function
-        cancels an existing watchdog timer.
-        (dump): Call invalidateAnyPreviousWaitToDumpWatchdog. This will
-        prevent watchdogs from previous tests firing during subsequent ones.
-        This matches Mac's behavior.
-
-        * DumpRenderTree/win/DumpRenderTreeWin.h: Added a declaration of
-        waitToDumpWatchdog.
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (waitUntilDoneWatchdogFired): Converted this to be a Windows
-        TIMERPROC.
-        (LayoutTestController::setWaitToDump): Changed to use SetTimer instead
-        of CFRunLoopAddTimer.
-
-2009-03-25  Mark Rowe  <mrowe@apple.com>
-
-        Rubber-stamped by Steve Falkenburg.
-
-        Update test result search path for Windows now that it has updated versions of ICU, libxml2, and friends.
-
-        * Scripts/run-webkit-tests:
-
-2009-03-24  Mark Rowe  <mrowe@apple.com>
-
-        Fix the Tiger build some more.
-
-        * DumpRenderTree/mac/TextInputController.m:
-
-2009-03-24  Mark Rowe  <mrowe@apple.com>
-
-        Fix the Tiger build.
-
-        * DumpRenderTree/mac/TextInputController.m:
-
-2009-03-24  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Jon "The Most Boring Man in the World" Honeycutt.
-
-        Explicitly map NSNotFound to -1 so that the result of-characterIndexForPointX:Y: does
-        not differ between 32- and 64-bit.
-
-        * DumpRenderTree/mac/TextInputController.m:
-        (-[TextInputController characterIndexForPointX:Y:]):
-
-2009-03-24  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Use a different platform search path for tests and skip lists, so that Tiger doesn't end up
-        using the Leopard skip list.  Tests and skip lists are now looked for in the directory for
-        the current OS and the generic "mac" directory.  Tests and skip lists for newer OS versions are
-        ignored.
-
-        * Scripts/run-webkit-tests:
-
-2009-03-23  Stephanie  <slewis@apple.com>
-
-        Fix root build.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-
-2009-03-23  Stephanie Lewis  <slewis@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        Add production configuration for creating roots of WebKitTools.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-
-2009-03-23  Oliver Hunt  <oliver@apple.com>
-
-        Reviewed by Geoff Garen.
-
-        Make testapi run as part of the standard JavaScriptCore tests.
-
-        We only run testapi on the mac as currently windows webkit doesn't
-        place all the necessary files for testapi, and we also test the
-        JSC/CF APIs as well.
-
-        * Scripts/run-javascriptcore-tests:
-
-2009-03-21  Oliver Hunt  <oliver@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        Make build-jsc build testapi and minidom in addition to jsc itself.
-
-        * Scripts/build-jsc:
-
-2009-03-20  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Only release the result NPVariant if the call to NPN_Invoke was successful.
-        
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (testNPRuntime):
-
-2009-03-19  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Reviewed by Mark Rowe.
-
-        Make determinePassedArchitecture always consume the --32-bit
-        option, also in non-AppleMacWebkit platforms. Solution pointed out
-        by Mark Rowe.
-
-        * Scripts/webkitdirs.pm:
-
-2009-03-19  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        Work around <rdar://problem/6698023> by activating fonts from disk.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Copy fonts into DumpRenderTree.resources
-        in the built products directory.
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (activateFonts): Activate the fonts from disk.
-
-2009-03-18  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        <rdar://problem/6693300> Don't rely on printf from TestNetscapePlugIn appearing in test results
-
-        Switch from using printf to using the NPAPI to invoke console.log so that plug-in messages appear
-        in test results even when the plug-in's stdout differs from DumpRenderTree's stdout.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.cpp:
-        (log): Invoke console.log via the NPAPI.
-        (NPP_Destroy): Call log instead of printf.
-        (NPP_SetWindow): Ditto.
-        (handleEventCarbon): Ditto.
-        (handleEventCocoa): Ditto.
-        (NPP_HandleEvent): Pass the instance in to the event handler.
-
-2009-03-17  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        Use the normal search rules for tests inside the platform directory.
-
-        This allows tests inside the platform directory to have different results
-        on different versions of Mac OS X.
-
-        * Scripts/run-webkit-tests:
-
-2009-03-17  David Kilzer  <ddkilzer@apple.com>
-
-        resolve-ChangeLogs should not die on unmerged non-ChangeLog files
-
-        Reviewed by Adam Roben.
-
-        Fixes the following bug in resolve-ChangeLogs:
-
-            Use of uninitialized value in -e at ./WebKitTools/Scripts/resolve-ChangeLogs line 132.
-            Died at ./WebKitTools/Scripts/resolve-ChangeLogs line 164.
-
-        * Scripts/resolve-ChangeLogs:
-        (findUnmergedChangeLogs): Check the result of findChangeLog() to
-        make sure we don't add undef values to the list of files being
-        returned.
-
-2009-03-17  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Reviewed by Simon Fraser.
-
-        Fix the usage of the $architecture variable for non-Apple-Mac
-        ports.
-
-        * Scripts/webkitdirs.pm:
-
-2009-03-17  David Kilzer  <ddkilzer@apple.com>
-
-        Bug 24645: bisect-builds script doesn't work with Safari 4 Public Beta (version string)
-
-        <https://bugs.webkit.org/show_bug.cgi?id=24645>
-
-        Reviewed by Mark Rowe.
-
-        * Scripts/bisect-builds:
-        (makeNightlyList): Added checks for Safari 4 Public Beta on
-        Tiger and Leopard.
-
-2009-03-17  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Darin Adler
-
-        https://bugs.webkit.org/show_bug.cgi?id=24396
-
-        Change the terminology from '3D transforms' to '3D rendering'.
-
-        * Scripts/build-webkit:
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2009-03-17  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Reviewed by Mark Rowe.
-
-        Enable HTML5 media elements support by default also for the GTK+
-        port.
-
-        * Scripts/build-webkit:
-
-2009-03-17  Kevin Ollivier  <kevino@theolliviers.com>
-
-        Reviewed by Mark Rowe.
-        
-        Tweak the BUILDING_ON_* defines so that they work with the default values set by
-        AvailabilityMacros.h.
-        
-        https://bugs.webkit.org/show_bug.cgi?id=24630
-
-        * DumpRenderTree/mac/DumpRenderTreeMac.h:
-
-2009-03-17  Oliver Hunt  <oliver@apple.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Make coverage testing more reliable by ensuring --coverage does not
-        clobber configuration settings, and by removing the unnecessary 
-        dependency on matplotlib.
-
-        * CodeCoverage/regenerate-coverage-display:
-        * Scripts/webkitdirs.pm:
-
-2009-03-16  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Darin Adler and John Sullivan.
-
-        When a plug-in instance is torn down, all plug-in objects will first be invalidated and then deallocated.
-        Since objects can be deallocated in any order, it is not safe to call NPN_ReleaseObject on member variables.
-        
-        Instead, just zero out the member variable in invalidate.
-        
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (pluginInvalidate):
-        (pluginDeallocate):
-
-2009-03-16  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Sam Weinig.
-        
-        REGRESSION: undo-iframe-location-change.html is failing on the buildbots
-        https://bugs.webkit.org/show_bug.cgi?id=24626
-        
-        Added a call to [[webview undoManager] removeAllActions]
-        to make sure anything left on the undo stack after one test
-        will not affect any later test.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting):
-
-2009-03-14  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        Change the layout test result search policy for Mac OS X to fit better with the idea of
-        newer OS versions improving on previous OS versions.
-
-        The results for the latest version of Mac OS X are placed in the "mac" directory.  The
-        results for older versions of Mac OS X are structured as a series of overlays.  When
-        running on Leopard, the results in "mac-leopard" are searched before those in "mac".
-        When running on Tiger, the results in "mac-tiger" are searched before those in
-        "mac-leopard" and "mac".
-
-        * Scripts/run-webkit-tests:
-
-2009-03-13  Mark Rowe  <mrowe@apple.com>
-
-        Rubber-stamped by Dan Bernstein.
-
-        Take advantage of the ability of recent versions of Xcode to easily switch the active
-        architecture.
-
-        * DumpRenderTree/mac/Configurations/DebugRelease.xcconfig:
-
-2009-03-13  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Timothy Hatcher.
-
-        Remove the --64-bit argument from scripts in favor of them detecting when 64-bit should be preferred.
-
-        The scripts will automatically target 64-bit if the system and hardware support it.  This can be
-        overridden by passing --32-bit to individual scripts, or using set-webkit-configuration --32-bit
-        to make the override persistent.
-
-        * Scripts/build-webkit: Remove architecture-related code.
-        * Scripts/gdb-safari: Remove architecture-related code, and clean up how the environment variables are passed to gdb.
-        * Scripts/run-javascriptcore-tests: Remove architecture-related code.
-        * Scripts/run-safari: Ditto.
-        * Scripts/run-webkit-tests: Ditto.
-        * Scripts/set-webkit-configuration: Handle the --32-bit and --64-bit arguments.  The --32-bit argument will set the
-        architecture preference to the 32-bit architecture of the machine.  The --64-bit argument will remove any architecture
-        override that is in effect so that 64-bit support will be automatically detected.
-        * Scripts/webkitdirs.pm: Add auto-detection of the best architecture for the machine, and the ability to override the
-        auto-detection.
-
-2009-03-13  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        <rdar://problem/6610666> Revise the Cocoa event model text API
-
-        Add a case statement for NPCocoaEventTextInput.
-        
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.cpp:
-        (handleEventCocoa):
-
-2009-03-12  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix. Let DerivedSources.make know we want database APIs.
-
-        * wx/build-wxwebkit:
-
-2009-03-12  David Kilzer  <ddkilzer@apple.com>
-
-        Bug 24378: resolve-ChangeLogs should use git status or svn status to find and fix unmerged ChangeLogs
-
-        <https://bugs.webkit.org/show_bug.cgi?id=24378>
-
-        Reviewed by Adam Roben.
-
-        * Scripts/resolve-ChangeLogs: If -f|--fix-merged is not passed
-        and no file or directory names are specified on the command-line
-        then try to find unmerged ChangeLog files based on 'svn stat' or
-        'git diff'.  Added global $isGit and $isSVN variables so that
-        isGit() and isSVN() only have to be called once.
-        (findUnmergedChangeLogs): Added.
-
-2009-03-11  David Kilzer  <ddkilzer@apple.com>
-
-        Clarify comments regarding order of FEATURE_DEFINES
-
-        Rubber-stamped by Mark Rowe.
-
-        * Scripts/build-webkit: Added warning about keeping
-        FEATURE_DEFINES in order and the consequences when they are not.
-
-2009-03-11  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Reviewed by Holger Freyther.
-
-        Gtk] Implement LayoutTestControllerGtk::setPrivateBrowsingEnabled
-        https://bugs.webkit.org/show_bug.cgi?id=24487
-
-        Also reset WebSettings to its default state for JavaScript
-        profiling, Developer Extras and Private Browsing before running
-        the test (can be after each test but we want to be consistent with
-        other ports in this regard)
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting):
-        (runTest):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setPrivateBrowsingEnabled):
-
-2009-03-11  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Reviewed by Holger Freyther.
-
-        [GTK]DumpRenderTree doesn't compile for non-X11 GTK ports anymore
-        https://bugs.webkit.org/show_bug.cgi?id=2260
-
-        Add plugin support only for X11 builds
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (setDefaultsToConsistentStateValuesForTesting):
-        * GNUmakefile.am:
-
-2009-03-08  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Reviewed by Mark Rowe.
-
-        Implement setJavaScriptProfilingEnabled by enabling the Developer
-        Extras and the JavaScript profiling on the WebKitWebInspector. After
-        this change we pass the three enabled tests in fast/profiler.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (runTest): Reset setJavaScriptProfilingEnabled after each test run
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setJavaScriptProfilingEnabled):
-
-2009-03-07  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Reviewed by Holger Freyther.
-
-        [Gtk] Enable http history tests
-        https://bugs.webkit.org/show_bug.cgi?id=24394
-
-        Get the index of the current item from the list of (history) items
-        to print before adding the back history items to the list. This
-        will make the 'curr' pointer point to the correct item in the
-        actual results, therefore, passing some of the http/tests/history
-        tests.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (dumpBackForwardListForWebView):
-
-2009-03-06  Adam Treat  <adam.treat@torchmobile.com>
-
-        Reviewed by George Staikos.
-
-        When building QtWebKit in release mode make sure that QT_SHARED is defined
-        otherwise none of the public API will be exported.  This leads to missing
-        symbols and link errors if hidden-visibility is used.
-
-        * Scripts/webkitdirs.pm:
-
-2009-03-06  Adam Roben  <aroben@apple.com>
-
-        Change the isCygwin check in update-webkit to isAppleWinWebKit
-
-        This matches a similar check in build-webkit, and is more correct.
-
-        Reviewed by Alexey Proskuryakov.
-
-        * Scripts/update-webkit: Only call update-webkit-auxiliary-libs if
-        isAppleWinWebKit is true.
-
-2009-03-06  Adam Roben  <aroben@apple.com>
-
-        Make update-webkit-support-libs fail if WebKitSupportLibrary.zip is
-        present but out of date
-
-        Reviewed by Alexey Proskuryakov.
-
-        * Scripts/update-webkit-support-libs: Changed to use
-        dieAndInstructToDownload when the zip file doesn't exist. Added an MD5
-        check to make sure the file is up-to-date. If it is out of date, print
-        an error message and quit.
-        (sub dieAndInstructToDownload): Added. Prints an error message and
-        quits with an error.
-
-2009-03-03  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by John Sullivan.
-
-        https://bugs.webkit.org/show_bug.cgi?id=22884
-        <rdar://problem/6449783>
-        modified layout test crashes Safari
-
-        Add destroyNullStream test function to the test plug-in.
-        
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (destroyNullStream):
-        (pluginInvoke):
-
-2009-03-03  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Darin Adler
-
-        Support layout test covering <rdar://problem/6616664>
-
-        Change NSURLRequest/IWebURLRequest dumping to include the mainDocumentURL
-
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        (-[NSURLRequest _drt_descriptionSuitableForTestResult]): Return both the request URL and the 
-          mainDocumentURL.
-        
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp:
-        (descriptionSuitableForTestResult): Return both the request URL and the mainDocumentURL.
-
-2009-03-02  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        Enable Geolocation (except on Tiger and Leopard).
-
-        * Scripts/build-webkit:
-
-2009-03-02  Kevin Ollivier  <kevino@theolliviers.com>
-
-        Build fixes for wxWidgets Mac trunk build.
-
-        * wx/build-wxwebkit:
-
-2009-03-02  Timothy Hatcher  <timothy@apple.com>
-
-        Allow for multiline quoted text in JavaScript files when looking for function names.
-
-        https://bugs.webkit.org/show_bug.cgi?id=24296
-
-        Reviewed by David Kilzer.
-
-        * Scripts/prepare-ChangeLog:
-
-2009-03-02  Adam Treat  <adam.treat@torchmobile.com>
-
-        Reviewed by Eric Seidel.
-
-        Add three new drt helper functions that enable all of the tests in
-        LayoutTests/animation/* and LayoutTests/transitions/* to now pass.
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::pauseAnimationAtTimeOnElementWithId):
-        (LayoutTestController::pauseTransitionAtTimeOnElementWithId):
-        (LayoutTestController::numberOfActiveAnimations):
-        * DumpRenderTree/qt/jsobjects.h:
-
-2009-03-02  Adam Roben  <aroben@apple.com>
-
-        Windows build fix after r41349
-
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::getChildrenWithRange):
-
-2009-03-01  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        Bug 24282: AX Palindrome error when asking for a specific index of the AXChildren array
-
-        Change getChildAtIndex() to get a range of children instead of all the children.
-        This exercises code in WebCore that returns elements when asked for from a range.
-
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::getChildrenWithRange):
-        (AccessibilityUIElement::getChildAtIndex):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::getChildrenWithRange):
-
-2009-03-01  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Reviewed by Holger Freyther.
-
-         [Gtk] get the HTTP layout tests going
-         https://bugs.webkit.org/show_bug.cgi?id=24259
-
-        Determine the frame's response and decide whether to dump as text
-        or the render tree
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (dump):
-
-2009-03-01  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Reviewed by Holger Freyther.
-
-        [Gtk] get the HTTP layout tests going
-        https://bugs.webkit.org/show_bug.cgi?id=24259
-
-         Implement dumping of WebKitWebBackForwardList and its history
-         items.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (compareHistoryItems):
-        (dumpHistoryItem):
-        (dumpBackForwardListForWebView):
-        (dump):
-        (runTest):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::clearBackForwardList):
-        * DumpRenderTree/gtk/WorkQueueItemGtk.cpp:
-        (BackForwardItem::invoke):
-
-2009-02-28  Zan Dobersek  <zandobersek@gmail.com>
-
-         Reviewed by Holger Freyther.
-
-         Set the resolution for the default screen to 72.0.
-         This way, setting font sizes results in expected values.
-
-         * DumpRenderTree/gtk/DumpRenderTree.cpp:
-         (setDefaultsToConsistentStateValuesForTesting):
-
-2009-02-28  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Reviewed by Holger Freyther.
-
-        Adds a WebKitMakeArguments environment variable to enable passing
-        of arguments such as '-j2' to make for the autotools build.
-
-        * Scripts/webkitdirs.pm:
-
-2009-02-28  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Reviewed by Holger Freyther.
-
-        Add a GTK+-only option to enable GNOME Keyring when building.
-
-        * Scripts/build-webkit:
-
-2009-02-28  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Reviewed by Holger Freyther.
-
-        [Gtk] webkitdirs.pm modify path in when detecting 3D transforms and accelerated compositing
-        https://bugs.webkit.org/show_bug.cgi?id=24076
-
-        Refactor gtk lib detection and put it in builtDylibPathForName
-
-        * Scripts/webkitdirs.pm:
-
-2009-02-28  Christian Dywan  <christian@twotoasts.de>
-
-        Rubber-stamped by Holger Freyther.
-
-        * GtkLauncher/main.c:
-        (activate_uri_entry_cb):
-        (main): Use the new webkit_web_view_load_uri to open URIs.
-
-2009-02-27  Xan Lopez  <xan@gnome.org>
-
-        Rubber-stamped by Alexey Proskuryakov.
-
-        https://bugs.webkit.org/show_bug.cgi?id=24222
-        [GTK] Remove checks for old glib versions
-
-        libsoup, which is a hard dependency, needs at least glib 2.15.3,
-        so remove all glib checks for versions older than that.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setWaitToDump):
-
-2009-02-25  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Eric Seidel
-
-        Fix spew about a WebView being deallocated while key value observers are
-        still registered with it by making sure that we always stop observing
-        _isUsingAcceleratedCompositing in -[DumpRenderTreeWindow close].
-        
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dumpRenderTree):
-        * DumpRenderTree/mac/DumpRenderTreeWindow.mm:
-        (-[DumpRenderTreeWindow close]):
-
-2009-02-25  Adam Treat  <adam.treat@torchmobile.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Do not queue the calls to 'DumpRenderTree::dump()' as this can result
-        in more than one call as a test that calls 'notifyDone()' can then be
-        subsequently fully loaded and initiate a second dump.  Also make sure
-        to stop any existing page load that is happening before running the next
-        test.  Combined this serves to produce 217 more passing tests for the
-        Qt port or roughly 5% at this point.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::open):
-
-2009-02-25  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Dan Bernstein
-
-        https://bugs.webkit.org/show_bug.cgi?id=23854
-
-        Have the DumpRenderTreeWindow observe the -_isUsingAcceleratedCompositing
-        property of the WebView, and use that to turn -autodisplay on and off.
-        This is necessary so that accelerated animations start correctly.
-        We can thus remove the -display hack in createBitmapContextFromWebView().
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (createWebViewAndOffscreenWindow):
-        (dumpRenderTree):
-        * DumpRenderTree/mac/DumpRenderTreeWindow.h:
-        * DumpRenderTree/mac/DumpRenderTreeWindow.mm:
-        (-[DumpRenderTreeWindow close]):
-        (-[DumpRenderTreeWindow webView]):
-        (-[DumpRenderTreeWindow startObservingWebView]):
-        (-[DumpRenderTreeWindow stopObservingWebView]):
-        (-[DumpRenderTreeWindow observeValueForKeyPath:ofObject:change:context:]):
-        * DumpRenderTree/mac/PixelDumpSupportMac.mm:
-        (createBitmapContextFromWebView):
-
-2009-02-25  Adam Treat  <adam.treat@torchmobile.com>
-
-        Reviewed by Zack Rusin.
-
-        https://bugs.webkit.org/show_bug.cgi?id=24158
-        Implement the queue*() methods of the layoutTestController and begin
-        implementing the dump of the back/forward list.  This results in 2% more
-        tests passing as well as 23 currently skipped tests now passing.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::dumpBackForwardList):
-        (WebCore::DumpRenderTree::dump):
-        * DumpRenderTree/qt/DumpRenderTree.h:
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (findFrameNamed):
-        (LoadItem::invoke):
-        (ReloadItem::invoke):
-        (ScriptItem::invoke):
-        (BackForwardItem::invoke):
-        (LayoutTestController::reset):
-        (LayoutTestController::processWork):
-        (LayoutTestController::maybeDump):
-        (LayoutTestController::queueBackNavigation):
-        (LayoutTestController::queueForwardNavigation):
-        (LayoutTestController::queueLoad):
-        (LayoutTestController::queueReload):
-        (LayoutTestController::queueScript):
-        * DumpRenderTree/qt/jsobjects.h:
-        (LayoutTestController::shouldDumpBackForwardList):
-        (LayoutTestController::dumpBackForwardList):
-
-2009-02-24  Adam Treat  <adam.treat@torchmobile.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Don't print out that you are generating new results if you are not in fact
-        generating new results and disable generating new results by default for
-        the all ports other than the canonical Apple Mac port since this can litter
-        the source directory with hundreds of new results since other ports
-        are not as up to date.
-
-        * Scripts/run-webkit-tests:
-
-2009-02-24  Adam Treat  <adam.treat@torchmobile.com>
-
-        Reviewed by Cameron Zwarich.
-
-        The Qt port does not support these yet nor does the nm check work with
-        QMake based build.
-
-        * Scripts/webkitdirs.pm:
-
-2009-02-24  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Reviewed by Alexey Proskuryakov.
-
-        [Gtk] add options for 3D transforms and HTML5 channel messaging to the build
-        https://bugs.webkit.org/show_bug.cgi?id=24072
-
-        Allow toggling of 3D transforms and HTML5 channel messaging
-        support for the Autotools (Gtk) build.
-
-        Also add '--gtk' in the build-webkit help doc and fix autotools
-        option for web-workers support.
-
-        * Scripts/build-webkit:
-
-2009-02-23  Xan Lopez  <xan@gnome.org>
-
-        Reviewed by Alexey Proskuryakov.
-
-        https://bugs.webkit.org/show_bug.cgi?id=22624
-        [SOUP][GTK] Need API to get SoupSession from WebKit.
-
-        Add soup flags now that dependency is explicit.
-
-        * GNUmakefile.am:
-
-2009-02-22  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        Fix assertion failures in editing/pasteboard/paste-RTFD.html and editing/pasteboard/paste-TIFF.html in 64-bit.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (swizzleAllMethods): When adding a new method to a class, use the implementation and type of the new method rather
-        than of an arbitrary existing method on the class.
-
-2009-02-13  Eric Seidel  <eric@webkit.org>
-
-        Rubber-stamped by Alexey Proskuryakov.
-
-        Add a few ignores to make-js-test-wrappers.
-
-        * Scripts/make-js-test-wrappers:
-
-2009-02-17  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Prepend file:// to the test result filename to make
-        GtkLauncher display the result page.
-
-        * Scripts/run-webkit-tests:
-
-2009-02-16  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Reviewed by Adam Roben
-
-        Actually use the installation prefix defined in WebKitInstallationPrefix,
-        in autotools builds.
-
-        * Scripts/webkitdirs.pm:
-
-2009-02-12  Simon Fraser  <simon.fraser@apple.com>
-
-        No review.
-
-        Remove debugging code which was committed by mistake.
-
-        * Scripts/run-webkit-tests:
-
-2009-02-12  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Adam Roben
-
-        https://bugs.webkit.org/show_bug.cgi?id=23928
-
-        Add detection of accelerated compositing and 3d transforms,
-        and add various directories to $ignoredDirectories when these
-        features are off.
-
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2009-02-12  Adam Roben  <aroben@apple.com>
-
-        Fix Bug 23922: Warning message from run-webkit-tests when Skipped file
-        contains non-existent tests is confusing and is given for disabled
-        tests
-
-        <https://bugs.webkit.org/show_bug.cgi?id=23922>
-
-        We now no longer warn about disabled tests. The warning now reads:
-
-        Skipped list contained '$item', but no file of that name could be
-        found
-
-        Reviewed by John Sullivan.
-
-        * Scripts/run-webkit-tests:
-        (top level): Pass the list name to processIgnoreTests so it can print
-        out a reasonable warning message.
-        (processIgnoreTests): Take a list name as a second parameter and use
-        it to display a better warning message. Also check for a "-disabled"
-        version of the test before warning about it not existing.
-
-2009-02-11  Adam Roben  <aroben@apple.com>
-
-        Windows fix for Bug 22239: Implement missing animation & transition
-        APIs on LayoutTestController for non-mac platforms
-
-        <https://bugs.webkit.org/show_bug.cgi?id=22239>
-
-        Reviewed by Simon Fraser.
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::pauseAnimationAtTimeOnElementWithId):
-        (LayoutTestController::pauseTransitionAtTimeOnElementWithId):
-        (LayoutTestController::numberOfActiveAnimations):
-        Implemented these by calling through to IWebFramePrivate.
-
-2009-02-10  Chris Marrin  <cmarrin@apple.com>
-
-        Reviewed by Simon Fraser.
-
-        * Scripts/build-webkit:
-
-        https://bugs.webkit.org/show_bug.cgi?id=23883
-
-        Added support --3d-transforms. Defaults to off
-
-2009-02-11  Adam Roben  <aroben@apple.com>
-
-        Fix crashes in http/tests/history/redirect-301.pl and friends on
-        Windows
-
-        Reviewed by Alexey Proskuryakov.
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::webHistoryItemCount): Null-check the shared
-        WebHistory instance before dereferencing it.
-
-2009-02-10  Adam Roben  <aroben@apple.com>
-
-        Fix Bug 23869: Pixel tests can't be run on Windows
-
-        <https://bugs.webkit.org/show_bug.cgi?id=23869>
-
-        This patch gets the pixel tests limping along on Windows again.
-
-        Reviewed by Dan Bernstein.
-
-        * DumpRenderTree/DumpRenderTree.sln: Changed to use the new
-        Debug_Internal configuration of ImageDiff in the Debug_Internal
-        configuration of this solution.
-
-        * DumpRenderTree/cg/PixelDumpSupportCG.cpp:
-        (printPNG): Changed to call fwrite in a loop, since this call was
-        failing due to the buffer being too large on Windows.
-        (dumpWebViewAsPixelsAndCompareWithExpected): Removed an unnecessary
-        #if PLATFORM(MAC)/#endif.
-
-        * DumpRenderTree/win/ImageDiff.vcproj: Added a Debug_Internal
-        configuration that matches the Debug configuration but also references
-        debug_internal.vsprops.
-
-        * DumpRenderTree/win/PixelDumpSupportWin.cpp:
-        (createBitmapContextFromWebView): Renamed from
-        getBitmapContextFromWebView to match the name used in the
-        cross-platform code.
-
-2009-02-10  Adam Roben  <aroben@apple.com>
-
-        Robustify DumpRenderTree/win a little
-
-        DumpRenderTree was previously not holding a ref to the WebViews it
-        created via window.open. It was getting away with this because
-        WebViews get reffed by being preference notification observers and by
-        registering for drag-n-drop messages. Now DRT does hold a ref, in case
-        this situation changes in the future.
-
-        Reviewed by Alexey Proskuryakov.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (dumpBackForwardListForAllWindows): Added a .get().
-        (windowToWebViewMap): Changed to use the WindowToWebViewMap typedef.
-        * DumpRenderTree/win/DumpRenderTreeWin.h: Changed the
-        windowToWebViewMap() to hold a ref to the WebViews it contains.
-
-2009-02-05  Simon Fraser  <simon.fraser@apple.com>
-
-        Fix the #include file order, per review comments.
-
-        * DumpRenderTree/mac/PixelDumpSupportMac.mm:
-
-2009-02-05  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Dan Bernstein
-
-        https://bugs.webkit.org/show_bug.cgi?id=23362
-
-        If the WebHTMLView uses accelerated compositing, we need for force
-        the on-screen capture path and also force animations to start with -display
-        since the DRT window has autodisplay disabled.
-
-        * DumpRenderTree/mac/PixelDumpSupportMac.mm:
-        (createBitmapContextFromWebView):
-
-2009-02-03  miggilin  <mr.diggilin@gmail.com>
-
-        Reviewed by Darin Adler.
-
-        Change the way wxWidgets build gets arguments.
-        Change "checkForArgumentAndRemoveFromARGV" in build-webkit to check if the
-        argument passed matches one in ARGV exactly (allows, ie, --wx-args not to be
-        removed when --wx is checked for).
-
-        https://bugs.webkit.org/show_bug.cgi?id=23701
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-
-2009-01-30  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        Catch exceptions thrown by AppKit when accessing an attribute than an element
-        doesn't return.
-
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (attributesOfElement):
-
-2009-01-29  David Kilzer  <ddkilzer@apple.com>
-
-        Remove semi-colons from the end of ObjC method implementations
-
-        Rubber-stamped by Adam Roben.
-
-        $ find WebKitTools -name \*.m -o -name \*.mm -exec perl -e 'undef $/; $s = <>; while ($s =~ m/[\n\r][-+].*;[\s\r\n]+\{/g) { print "$ARGV: $&\n"; }' {} \;
-
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate webView:didFailLoadWithError:forFrame:]):
-        (-[FrameLoadDelegate webView:windowScriptObjectAvailable:]):
-        (-[FrameLoadDelegate webView:didFinishDocumentLoadForFrame:]):
-        (-[FrameLoadDelegate webView:didHandleOnloadEventsForFrame:]):
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webViewFrame:]):
-
-2009-01-28  Geoffrey Garen  <ggaren@apple.com>
-
-        Build fix for GTK.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::webHistoryItemCount):
-
-2009-01-28  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Added support for querying how many history items were created during a
-        layout test.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (getWebHistoryItemCountCallback):
-        (LayoutTestController::staticValues):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::webHistoryItemCount):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::webHistoryItemCount):
-
-2009-01-26  Pierre-Olivier Latour  <pol@apple.com>
-
-        Tweaked again earlier fix, this time just to print a warning and not abort if
-        attempting to generate pixel results and Perian is installed.
-
-        https://bugs.webkit.org/show_bug.cgi?id=22615
-
-        * Scripts/run-webkit-tests:
-
-2009-01-26  Christian Dywan  <christian@twotoasts.de>
-
-        Rubber stamped by Holger Freyther.
-
-        * GtkLauncher/main.c:
-        (main): Initialize threads, which is required for libSoup.
-
-2009-01-23  David Kilzer  <ddkilzer@apple.com>
-
-        * Scripts/do-webcore-rename: Removed 10 header guard renames that
-        had already been fixed, and updated 4 renames whose original values
-        had changed.
-
-2009-01-22  Anders Carlsson  <andersca@apple.com>
-
-        Fix Windows build.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.h:
-
-2009-01-22  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Clean up the test plug-in code. We now always use the CG drawing model and the
-        Cocoa event model. It is however possible to revert to the old Carbon event model by
-        specifying forcecarbon=true in the embed/object tag.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.h:
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.cpp:
-        (NPP_New):
-        (handleEventCarbon):
-        (handleEventCocoa):
-        (NPP_HandleEvent):
-
-2009-01-21  Pierre-Olivier Latour  <pol@apple.com>
-
-        Tweaked earlier fix to only print a warning when Perian is installed,
-        and fail completely only if attempting to generate new pixel test results.
-
-        https://bugs.webkit.org/show_bug.cgi?id=23392
-
-        * Scripts/run-webkit-tests:
-
-2009-01-20  Darin Adler  <darin@apple.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Bug 23450: string leaks seen in DumpRenderTree accessibility test code
-        https://bugs.webkit.org/show_bug.cgi?id=23450
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (isAttributeSettableCallback): Add the missing JSStringRelease call.
-        (attributeValueCallback): Ditto.
-
-2009-01-20  Pierre-Olivier Latour  <pol@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Print warning regarding display color profile change in run-webkit-tests instead of DRT.
-
-        https://bugs.webkit.org/show_bug.cgi?id=23392
-
-        * DumpRenderTree/mac/PixelDumpSupportMac.mm:
-        (setupMainDisplayColorProfile):
-        * Scripts/run-webkit-tests:
-
-2009-01-20  Pierre-Olivier Latour  <pol@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Changed run-webkit-tests to abort on the Mac if pixel tests are enabled and Perian is installed,
-        in order to avoid result differences in some media tests.
-
-        https://bugs.webkit.org/show_bug.cgi?id=22615
-
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2009-01-19  Sam Weinig  <sam@webkit.org>
-
-        * Scripts/do-webcore-rename: Add JSValuePtr and ProtectedJSValuePtr.
-
-2009-01-16  Gabor Loki  <loki@inf.u-szeged.hu>
-
-        Reviewed by Darin Adler.
-
-        * Scripts/webkitdirs.pm: Added '--makeargs' parameter which can pass additional
-        parameters to make command in QMake projects.
-
-2009-01-16  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Beth Dakin.
-
-        Add AX methods to retrieve the parent of an element.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (parentElementCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::parentElement):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::parentElement):
-
-2009-01-16  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Set the count to the right number of elements.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/TestObject.cpp:
-        (testEnumerate):
-
-2009-01-14  David Kilzer  <ddkilzer@apple.com>
-
-        BUILD FIX: Use COM API on Windows in LayoutTestController::setIconDatabaseEnabled()
-
-        Rubber-stamped by Alice Liu.
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setIconDatabaseEnabled): Use COM API
-        to get the shared WebIconDatabase.
-
-2009-01-14  Jeremy Moskovich  <jeremy@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        <https://bugs.webkit.org/show_bug.cgi?id=16829>
-        Implement NPN_SetException()
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (pluginInvoke):
-        * DumpRenderTree/TestNetscapePlugIn.subproj/TestObject.cpp:
-        (initializeIdentifiers):
-        (testHasMethod):
-        (testInvoke):
-
-2009-01-13  Dmitry Titov  <dimich@chromium.org>
-
-        Reviewed by David Kilzer.
-
-        https://bugs.webkit.org/show_bug.cgi?id=23304
-        Fix svn-apply to match svn-unapply to recognize added files in 'git diff' patches.
-
-        * Scripts/svn-apply: Added a check (similar to svn-unapply) to recognize added files.
-
-2009-01-14  David Kilzer  <ddkilzer@apple.com>
-
-        BUILD FIX: Implement LayoutTestController::setIconDatabaseEnabled(bool) for GTK
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (runTest): Added call to reset the icon database to match Mac
-        and Windows ports.
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setIconDatabaseEnabled): Implemented
-        stub method.
-
-2009-01-14  David Kilzer  <ddkilzer@apple.com>
-
-        Bug 22795: favicons should be saved to webarchives
-
-        <https://bugs.webkit.org/show_bug.cgi?id=22795>
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setIconDatabaseEnabledCallback): Added.
-        (setJavaScriptProfilingEnabledCallback): Realphabetized.
-        (LayoutTestController::staticFunctions): Added entry for calling
-        LayoutTestController.setIconDatabaseEnabled(bool) from JavaScript.
-        * DumpRenderTree/LayoutTestController.h:
-        (setIconDatabaseEnabledCallback): Added declaration.
-        (setJavaScriptProfilingEnabledCallback): Realphabetized.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (runTest): Disable the icon database before each test.
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setIconDatabaseEnabled): Added.
-        (LayoutTestController::setJavaScriptProfilingEnabled): Realphabetized.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (runTest): Disable the icon database before each test.
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setIconDatabaseEnabled): Added.
-
-2009-01-14  Steve Falkenburg  <sfalken@apple.com>
-
-        Update copyright year in version resources.
-
-        Reviewed by Adam Roben.
-
-        * DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin.rc:
-
-2009-01-14  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by John Sullivan.
-
-        - update copyright
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/Info.plist:
-        * WebKitLauncher/Info.plist:
-
-2009-01-13  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Add NPRuntime test.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (testNPRuntime):
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.h:
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.cpp:
-        (NPP_New):
-        (NPP_GetValue):
-
-2009-01-12  Mark Rowe  <mrowe@apple.com>
-
-        Use the modern spelling of WebKit.
-
-        * Scripts/find-extra-includes:
-        * Scripts/report-include-statistics:
-        * Scripts/run-webkit-app:
-        * Scripts/svn-unapply:
-        * Scripts/update-webkit:
-
-2009-01-11  Darin Adler  <darin@apple.com>
-
-        * Scripts/make-js-test-wrappers: Updated so it won't overwrite tests in the svg/dom
-        directory that aren't using standard wrappers.
-
-2009-01-11  Robert Blaut  <webkit@blaut.biz>
-
-        Reviewed by Eric Seidel.
-
-        <https://bugs.webkit.org/show_bug.cgi?id=23134>
-        Update bisect-builds for Safari 3.2 to prevent crashes
-
-        * Scripts/bisect-builds: Added Safari 3.2 and the corresponding minimal revision, r37348.
-
-2009-01-08  Adam Treat  <adam.treat@torchmobile.com>
-
-        Reviewed by Simon Hausmann.
-
-        Explicitly set these so that the layout tests do not break.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::WebPage::WebPage):
-
-2009-01-07  Glenn Wilson  <gwilson@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Changed DumpRenderTree to re-enable Javascript in web preferences on every test.
-        This fixes the case when a user mistakenly disables Javascript, and all layout tests crash.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (testStringByEvaluatingJavaScriptFromString):
-        (setDefaultsToConsistentValuesForTesting):
-
-2009-01-07  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Reviewed by Maciej Stachowiak.
-
-        Implement numberOfActiveAnimations to fix the build
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::numberOfActiveAnimations):
-
-2009-01-07  Adam Treat  <adam.treat@torchmobile.com>
-
-        Reviewed by George Staikos.
-
-        Fix unused variable warnings
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::WebPage::javaScriptAlert):
-        (WebCore::WebPage::javaScriptConfirm):
-        (WebCore::WebPage::javaScriptPrompt):
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::maybeDump):
-        * DumpRenderTree/qt/main.cpp:
-        (get_backtrace):
-        * DumpRenderTree/qt/testplugin.cpp:
-        (TestPlugin::create):
-
-2009-01-06  Pierre-Olivier Latour  <pol@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Added new JS API numberOfActiveAnimations() that returns the number of active CSS transitions & animations.
-        This effectively exposes the new AnimationController::numberOfActiveAnimations() API from WebCore.
-
-        https://bugs.webkit.org/show_bug.cgi?id=23126
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (numberOfActiveAnimationsCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::numberOfActiveAnimations):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::numberOfActiveAnimations):
-
-2009-01-04  David Kilzer  <ddkilzer@apple.com>
-
-        Don't install internal headers in WebKit framework
-
-        Reviewed by Darin Adler.
-
-        Since WebHTMLRepresentationInternal.h and WebTypesInternal.h are
-        no longer installed in WebKit.framework/PrivateHeaders, use the
-        special relationship of DumpRenderTree within the WebKit source
-        tree to include the internal headers through relative paths.
-        Created the concept of mac/InternalHeaders to hide the ugly
-        paths.
-
-        * DumpRenderTree/mac/Configurations/Base.xcconfig: Added
-        mac/InternalHeaders to HEADER_SEARCH_PATHS.
-        * DumpRenderTree/mac/InternalHeaders/WebKit/WebHTMLRepresentationInternal.h: Added.
-        * DumpRenderTree/mac/InternalHeaders/WebKit/WebTypesInternal.h: Added.
-
-2009-01-02  Adam Treat  <treat@kde.org>
-
-        Reviewed by George Staikos.
-
-        Add support for fixedLayoutSize to the qt DRT
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::setFixedLayoutSize):
-        (LayoutTestController::setUseFixedLayout):
-        * DumpRenderTree/qt/jsobjects.h:
-
-2009-01-03  David D. Kilzer  <ddkilzer@webkit.org>
-
-        Bug 23091: Some webarchive http tests intermittently fail due to Connection/Keep-Alive header differences
-
-        <https://bugs.webkit.org/show_bug.cgi?id=23091>
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (normalizeHTTPResponseHeaderFields): Remove Keep-Alive and
-        Connection headers from webarchive results.
-
-2008-12-31  Zan Dobersek  <zandobersek@gmail.com>
-
-        Reviewed by Holger Freyther.
-
-        https://bugs.webkit.org/show_bug.cgi?id=22812
-
-        Prevent TestNetscapePlugin from installing system-wide.
-
-        * GNUmakefile.am:
-
-2008-12-31  Zan Dobersek  <zandobersek@gmail.com>
-
-        Reviewed by Holger Freyther.
-
-        https://bugs.webkit.org/show_bug.cgi?id=22842
-
-        Move WebKitWebView's size allocation into a proper place.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (dump):
-        (runTest):
-
-2008-12-24  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Timothy Hatcher.
-
-        Move the guts of determineCurrentSVNRevision to VCSUtils as svnRevisionForDirectory,
-        and make it work for git too.
-
-        * Scripts/VCSUtils.pm:
-        * Scripts/webkitdirs.pm:
-
-2008-12-22  Nikolas Zimmermann  <nikolas.zimmermann@torchmobile.com>
-
-        Reviewed by George Staikos.
-
-        Ignore http/tests/wml, if no WML support is present.
-        Add http/tests/wml to list of HTTP tests, allowed to access local resources.
-
-        * Scripts/run-webkit-tests:
-
-2008-12-19  David Levin  <levin@chromium.org>
-
-        Reviewed by Mark Rowe.
-
-        https://bugs.webkit.org/show_bug.cgi?id=22930
-
-        Make the git diff command used for preparing the change log avoid using any external diff tools.
-
-        * Scripts/prepare-ChangeLog:
-
-2008-12-19  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Reviewed by Holger Freyther.
-
-        https://bugs.webkit.org/show_bug.cgi?id=22686
-
-        Added files which were missing from the TestNetscapePlugin
-        directory to the SOURCES variable, so that they will be
-        distributed in a make dist.
-
-        * GNUMakefile.am:
-
-2008-12-18  Cameron Zwarich  <zwarich@apple.com>
-
-        Reviewed by Geoff Garen.
-
-        Add tests for bug 21855: REGRESSION (r37323): Gmail complains about popup blocking when opening a link
-        <https://bugs.webkit.org/show_bug.cgi?id=21855>
-        <rdar://problem/6278244>
-
-        Add support for scheduling asynchronous clicks to DumpRenderTree, but
-        only on the Mac.
-
-        * DumpRenderTree/mac/EventSendingController.h:
-        * DumpRenderTree/mac/EventSendingController.mm:
-        (+[EventSendingController isSelectorExcludedFromWebScript:]): Expose
-        scheduleAsynchronousClick to JavaScript.
-        (-[EventSendingController scheduleAsynchronousClick]): Add.
-
-2008-12-15  Darin Adler  <darin@apple.com>
-
-        * Scripts/make-js-test-wrappers: Added another exception to avoid overwriting
-        a custom-written test.
-
-2008-12-15  Simon Hausmann  <hausmann@webkit.org>
-
-        Reviewed by Holger Freyther.
-
-        Implement setJavaScriptProfilingEnabled in the Qt DRT to pass fast/profiler.
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::setJavaScriptProfilingEnabled):
-        * DumpRenderTree/qt/jsobjects.h:
-
-2008-12-13  Zan Dobersek  <zandobersek@gmail.com>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=22039
-
-        Implement animation and transition pausing.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::pauseAnimationAtTimeOnElementWithId):
-        (LayoutTestController::pauseTransitionAtTimeOnElementWithId):
-
-2008-12-12  Brent Fulgham  <bfulgham@gmail.com>
-
-        Reviewed by Adam Roben.
-
-        https://bugs.webkit.org/show_bug.cgi?id=22809
-
-        Increase timeout in call to initWithURL so that people actually see
-        new web pages when they type URLs rather than a blank screen.
-
-        * WinLauncher/WinLauncher.cpp:
-        (loadURL):  Increase timeout in initWithURL from 0 to 60 seconds.
-
-2008-12-12  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Add a renaming idea.
-
-2008-12-12  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Reviewed by Simon Hausmann.
-
-        Update the WebKit.qrc and add a script to automatically generate the file.
-
-        With the way rcc and qmake work this can not be done at build time
-        as the WebKit.qrc must sit inside the directory that contains the files
-        and at build time we may not change the content of the source directory.
-
-        * Scripts/generate-qt-inspector-resource: Added.
-
-2008-12-11  Cameron Zwarich  <zwarich@apple.com>
-
-        Rubber-stamped by Mark Rowe.
-
-        Roll out r39212 due to assertion failures during layout tests, multiple
-        layout test failures, memory leaks, and obvious incorrectness.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::pauseTransitionAtTimeOnElementWithId):
-
-2008-12-10  Glenn Wilson  <gwilson@google.com>
-
-        Reviewed by Adam Roben.
-
-        Changed LayoutTestController and DumpRenderTree to allow for manual
-        overriding of default preferences at test time.  Also added support for
-        resetting the preferences after each test.
-        https://bugs.webkit.org/show_bug.cgi?id=20534
-
-        * DumpRenderTree/LayoutTestController.cpp: Added callback method for overriding preferences
-        * DumpRenderTree/LayoutTestController.h: Added signature for callback
-        * DumpRenderTree/win/DumpRenderTree.cpp: Added calls to reset preferences after each test if necessary
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp: Added JS override function
-        * DumpRenderTree/mac/DumpRenderTree.mm: Added calls to reset preferences after each test if necessary
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm: Added JS override function
-
-2008-12-10  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Implement the new policy delegate (including navigation type and permissive mode) for DRT/win
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        * DumpRenderTree/win/DumpRenderTreeWin.h:
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setCustomPolicyDelegate):
-
-        * DumpRenderTree/win/PolicyDelegate.cpp:
-        (PolicyDelegate::PolicyDelegate):
-        (PolicyDelegate::decidePolicyForNavigationAction):
-        * DumpRenderTree/win/PolicyDelegate.h:
-        (PolicyDelegate::setPermissive):
-
-2008-12-10  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Darin
-
-        Change the custom policy delegate to actually allow navigation for tests that need it.
-        The new behavior is opt-in and doesn't require any changes in old tests.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setCustomPolicyDelegateCallback):  Allow for a second boolean argument to set the permissive flag on the custom
-          policy delegate, which will be false by default to maintain original behavior.
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setCustomPolicyDelegate):
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setCustomPolicyDelegate):  Partially stubbed out for now.
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setCustomPolicyDelegate):  Still stubbed out, but with new param.
-
-        * DumpRenderTree/mac/PolicyDelegate.h:
-        * DumpRenderTree/mac/PolicyDelegate.mm:
-        (-[PolicyDelegate webView:decidePolicyForNavigationAction:request:frame:decisionListener:]):  If the permissive flag
-          is set, allow the navigation.
-        (-[PolicyDelegate setPermissive:]):  Change the behavior between "use" and "ignore" - allowing navigation or not.
-
-2008-12-09  Mark Rowe  <mrowe@apple.com>
-
-        Rubber-stamped by Ada Chan.
-
-        Fix gdb-safari on Tiger.
-
-        gdb on Tiger does not take the -arch flag, so do not pass it.
-
-        * Scripts/gdb-safari:
-
-2008-12-09  Nikolas Zimmermann  <nikolas.zimmermann@torchmobile.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Ignore WML tests, if no WML support available.
-
-        * Scripts/run-webkit-tests:
-
-2008-12-08  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        Added a shortcut for --jsDriver-args, which I use a lot.
-
-        * Scripts/run-javascriptcore-tests:
-
-2008-12-08  Stephanie Lewis  <slewis@apple.com>
-
-        Fix Tiger build.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-
-2008-12-08  Darin Adler  <darin@apple.com>
-
-        Reviewed by John Sullivan.
-
-        - test machinery for https://bugs.webkit.org/show_bug.cgi?id=22409
-          REGRESSION: cmd-shift-left/right don't switch tabs, instead select text
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (isCommandEnabledCallback): Added.
-        (LayoutTestController::staticFunctions): Added "isCommandEnabled".
-        * DumpRenderTree/LayoutTestController.h: Ditto.
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::isCommandEnabled): Ditto.
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (-[CommandValidationTarget initWithAction:]): Added. Used to get the
-        command validation system to tell us if a comment is enabled.
-        (-[CommandValidationTarget action]): Ditto.
-        (-[CommandValidationTarget tag]): Ditto.
-        (LayoutTestController::isCommandEnabled): Ditto.
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::isCommandEnabled): Ditto.
-
-2008-12-08  David Kilzer  <ddkilzer@apple.com>
-
-        Bug 22555: Sort "children" sections in Xcode project files
-
-        <https://bugs.webkit.org/show_bug.cgi?id=22555>
-
-        Reviewed by Eric Seidel.
-
-        * DrawTest/DrawTest.xcodeproj/project.pbxproj: Sorted.
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Sorted.
-        * WebKitLauncher/WebKitLauncher.xcodeproj/project.pbxproj: Sorted.
-
-2008-12-08  David Kilzer  <ddkilzer@apple.com>
-
-        Bug 22555: Sort "children" sections in Xcode project files
-
-        <https://bugs.webkit.org/show_bug.cgi?id=22555>
-
-        Reviewed by Timothy Hatcher.
-
-        * Scripts/sort-Xcode-project-file: By popular request, don't sort
-        the mainGroup in the project (the list of items below the top-level
-        project file).
-
-2008-12-05  David Kilzer  <ddkilzer@apple.com>
-
-        Bug 22555: Sort "children" sections in Xcode project files
-
-        <https://bugs.webkit.org/show_bug.cgi?id=22555>
-
-        Reviewed by Darin Adler.
-
-        Sort "children" sections alphabetically, moving groups (folders) to
-        the top of each of the lists.  Files are assumed to have extensions,
-        so %isFile is used to override this behavior.
-
-        * Scripts/sort-Xcode-project-file:
-        (sortChildrenByFileName): Added.
-        (sortFilesByFileName): Renamed from sortByFileName().
-
-2008-12-05  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Geoff Garen.
-
-        https://bugs.webkit.org/show_bug.cgi?id=22683
-        Fix gtk and qt builds which depend on --qt and --gtk being removed from ARGV
-        Add a new argumentsForConfiguration() function and clean up some old code to use it.
-        Rename checkArgV to checkForArgumentAndRemoveFromARGV to be more self-documenting.
-
-        * Scripts/run-javascriptcore-tests:
-        * Scripts/run-launcher:
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2008-12-03  Nikolas Zimmermann  <nikolas.zimmermann@torchmobile.com>
-
-        Reviewed by Cameron Zwarich.
-
-        Further preparations for WML layout tests.
-        Ignore WMLTestCase.js, that's going to be in trunk soon.
-
-        * Scripts/make-js-test-wrappers:
-
-2008-12-03  Eric Seidel  <eric@webkit.org>
-
-        Build fix for --gtk and --chromium, no review.
-
-        Fix run-javascriptcore-tests to pass --gtk, --qt, --chromium, etc.
-        through to build-jsc.
-
-        * Scripts/build-jsc:
-        * Scripts/webkitdirs.pm:
-
-2008-12-03  Eric Seidel  <eric@webkit.org>
-
-        Build fix only, no review.
-
-        Remove support for build-webkit --svg-experimental.
-        All of the "experimental" svg features have their own toggles anyway.
-        I broke --svg-experimental in my last commit (which then broke clean builds)
-        I can't find any use of --svg-experimental in our source tree, so removing it.
-
-        * Scripts/build-webkit:
-
-2008-12-02  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Hyatt (and Mark Rowe).
-
-        Move --coverage support from build-webkit to webkitdirs.pm to share it with build-jsc
-        Move --coverage support out of run-javascriptcore-tests and into build-jsc
-
-        Finally add a buildXCodeProject function to webkitdirs.pm and move --clean support
-        there from build-webkit (to allow future sharing with other build-* scripts)
-
-        Change run-javascriptcore-tests to expect a --jsDriver-args= argument instead of
-        picking through ARGV with a blacklist of what arguments weren't jsDriver args
-        this makes run-javascriptcore-tests transparently support all arguments which
-        webkitdirs.pm gives it support for.
-
-        Make run-javascriptcore-tests actually print what commands it's running before running them.
-
-        Add --help support to build-jsc and run-javascriptcore-tests!
-
-        Make code to support --svg-experimental defaults take up half as many lines.
-
-        * Scripts/build-jsc:
-        * Scripts/build-webkit:
-        * Scripts/run-javascriptcore-tests:
-        * Scripts/webkitdirs.pm:
-
-2008-12-03  Adam Roben  <aroben@apple.com>
-
-        Fix a leak in WinLauncher shutdown
-
-        Reviewed by Sam Weinig.
-
-        * WinLauncher/WinLauncher.cpp:
-        (_tWinMain): Replaced a delete with a Release. We can't delete the
-        WebView properly since we only have a pointer to one of its
-        interfaces. We also shouldn't be deleting COM objects directly anyway,
-        for a number of reasons.
-
-2008-12-03  Adam Roben  <aroben@apple.com>
-
-        Fix a crash on exit in WinLauncher
-
-        Reviewed by Sam Weinig.
-
-        * WinLauncher/WinLauncher.cpp:
-        (_tWinMain): Call shutDownWebKit before exiting.
-
-2008-12-03  Adam Roben  <aroben@apple.com>
-
-        Add a Debug_Internal configuration to WinLauncher
-
-        This matches our other projects.
-
-        Reviewed by Sam Weinig.
-
-        * WinLauncher/WinLauncher.vcproj: Added a Debug_Internal
-        configuration, which is identical to Debug except that it also
-        references debug_internal.vsprops. Also removed some settings that we
-        should be picking up from the .vsprops files.
-
-2008-12-02  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Kilzer.
-
-        Hack build-webkit --chromium to use Win32 python instead
-        of using the default cygwin python.  Scons + CYGWIN tries
-        to build with GCC by default, we force MSVC in our file
-        but that just results in errors from Scons.  Until we can fix
-        this latest round of errors, at least make build-webkit --chromium
-        actually "work" under CYGWIN instead of forcing users to use
-        a cmd shell directly.
-
-        This is working around a Scons bug:
-        http://scons.tigris.org/issues/show_bug.cgi?id=2266
-
-        * Scripts/webkitdirs.pm:
-
-2008-12-01  David Kilzer  <ddkilzer@apple.com>
-
-        Bug 22466: REGRESSION (35867): Many resources missing when saving webarchive of webkit.org
-
-        <https://bugs.webkit.org/show_bug.cgi?id=22466>
-        <rdar://problem/6403593>
-
-        Reviewed by Brady Eidson.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (normalizeHTTPResponseHeaderFields): Added.  Normalizes Date, Etag,
-        Keep-Alive, Last-Modified and Server header fields to prevent false
-        positive test failures.
-        (convertWebResourceResponseToDictionary): Call
-        normalizeHTTPResponseHeaderFields() to noramlize HTTP response
-        header fields.
-
-2008-12-01  David D. Kilzer  <ddkilzer@webkit.org>
-
-        Bug 22559: Report builds left to test in bisect-builds (like git-bisect)
-
-        <https://bugs.webkit.org/show_bug.cgi?id=22559>
-
-        Reviewed by Adam Roben.
-
-        * Scripts/bisect-builds: Updated status message to report the
-        maximum number of builds left to test after the current one.
-        (max): Added.
-
-2008-11-27  Alp Toker  <alp@nuanti.com>
-
-        Build GtkLauncher and minidom with the '-ansi' compiler flag to detect
-        API header breakage at build time.
-
-        * GNUmakefile.am:
-
-2008-11-26  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Nikolas Zimmermann and Mark Rowe.
-
-        Add support for build-webkit --chromium
-        https://bugs.webkit.org/show_bug.cgi?id=22515
-        More cleanups changing isCygwin calls to isAppleWinWebKit and deploying isAppleWebKit where necessary.
-
-        * Scripts/build-dumprendertree:
-        * Scripts/build-jsc:
-        * Scripts/build-webkit:
-        * Scripts/gdb-safari:
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2008-11-26  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Nikolas Zimmermann.
-
-        Add support for build-webkit --chromium (tested on mac)
-        https://bugs.webkit.org/show_bug.cgi?id=22515
-        Also simplified some code using checkArgv
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-
-2008-11-26  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Nikolas Zimmermann.
-
-        More pre-work for adding a build-webkit --chromium which works on Mac and Windows
-        https://bugs.webkit.org/show_bug.cgi?id=22515
-        Change a few calls to isCygwin to isAppleWinWebKit and a few calls to isAppleMacWebKit to isDarwin
-        in preparation for having a chromium cygwin and chromium mac build
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-
-2008-11-26  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Nikolas Zimmermann.
-
-        Pre-work for getting build-webkit --chromium to work
-        https://bugs.webkit.org/show_bug.cgi?id=22515
-        Rename isOSX to isAppleMacWebKit to match what the code does, and add isChromium()
-
-        * Scripts/build-dumprendertree:
-        * Scripts/build-jsc:
-        * Scripts/build-webkit:
-        * Scripts/gdb-safari:
-        * Scripts/run-javascriptcore-tests:
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2008-11-26  David Kilzer  <ddkilzer@apple.com>
-
-        Bug 22488: Make DRT smarter about charset encoding when post-processing webarchive content
-
-        <https://bugs.webkit.org/show_bug.cgi?id=22488>
-
-        Reviewed by Brady Eidson.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (convertWebResourceDataToString): If an IANA charset encoding string
-        is provided, convert it to a CFStringEncoding value and then to an
-        NSStringEncoding value, else fall back to NSUTF8StringEncoding.  We
-        also nil-check dataAsString, so the worst-case scenario is that the
-        data won't be decoded to a string (versus crashing DumpRenderTree).
-
-2008-11-26  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Reviewed by Holger Freyther.
-
-        [Gtk] add/remove tests from Skipped and fix netscape plugin test
-        https://bugs.webkit.org/show_bug.cgi?id=22484
-
-        Remove print'ing to stderr
-
-        * DumpRenderTree/gtk/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (NP_Initialize):
-        (NP_Shutdown):
-
-2008-11-25  Steve Falkenburg  <sfalken@apple.com>
-
-        Windows build fix.
-
-        * DumpRenderTree/cg/PixelDumpSupportCG.h:
-
-2008-11-25  Steve Falkenburg  <sfalken@apple.com>
-
-        Windows build fix.
-
-        * DumpRenderTree/cg/ImageDiffCG.cpp:
-
-2008-11-24  Darin Fisher  <darin@chromium.org>
-
-        Fix bustage.
-
-        https://bugs.webkit.org/show_bug.cgi?id=15643
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setSelectTrailingWhitespaceEnabled):
-
-2008-11-24  Glenn Wilson  <gwilson@chromium.org>
-
-        Reviewed by Alexey Proskuryakov.
-
-        http://bugs.webkit.org/show_bug.cgi?id=15643
-
-        Added support for changing the "trailing whitespace" work-around
-        in LayoutTestController (so layout tests can verify this functionality)
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setSelectTrailingWhitespaceEnabledCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setSelectTrailingWhitespaceEnabled):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setSelectTrailingWhitespaceEnabled):
-
-2008-11-24  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Darin Adler
-
-        https://bugs.webkit.org/show_bug.cgi?id=22433
-
-        Add script that attempts to detect virtual methods
-        whose signatures differ only by constness (which can
-        indicate a programming error).
-
-        * Scripts/detect-mismatched-virtual-const: Added.
-
-2008-11-24  Zan Dobersek  <zandobersek@gmail.com>
-
-        Reviewed by Holger Freyther.
-
-        https://bugs.webkit.org/show_bug.cgi?id=22039
-
-        [Gtk+] Implement TestNetscapePlugin for Gtk+ port and add it to the
-        build.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        * DumpRenderTree/TestNetscapePlugIn.subproj/TestObject.cpp:
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (setDefaultsToConsistentStateValuesForTesting):
-        * DumpRenderTree/gtk/TestNetscapePlugin/ForwardingHeaders/WebKit/npapi.h: Added.
-        * DumpRenderTree/gtk/TestNetscapePlugin/ForwardingHeaders/WebKit/npfunctions.h: Added.
-        * DumpRenderTree/gtk/TestNetscapePlugin/ForwardingHeaders/WebKit/npruntime.h: Added.
-        * GNUmakefile.am:
-
-2008-11-24  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Reviewed by Mark Rowe.
-
-        [Gtk+] Add configure option to enable Web Workers and enable it by default
-
-        Add --enable-workers to the buildsystem (used by build-webkit) add
-        the to be build files to the GNUmakefile.am and change build-webkit
-        to enable Web Workers by default.
-
-        * Scripts/build-webkit:
-
-2008-11-24  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Let gdb-safari accept the --debug and --release options once more.
-
-        * Scripts/gdb-safari:
-
-2008-11-23  Zan Dobersek  <zandobersek@gmail.com>
-
-        Reviewed by Holger Freyther. Landed by Jan Alonzo.
-
-        Get SVG tests tested on GTK port.
-
-        * Scripts/webkitdirs.pm:
-
-2008-11-19  Greg Bolsinga  <bolsinga@apple.com>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=21810
-        Remove use of static C++ objects that are destroyed at exit time (destructors)
-
-        All static C++ objects that create atexit calls are gone. Update script
-        to indicate how to fix the problem should a new one appear.
-
-        * Scripts/check-for-exit-time-destructors:
-
-2008-11-18  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=22337
-        Enable workers by default
-
-        * Scripts/build-webkit: Changed the default to enabled.
-
-2008-11-18  Alexey Proskuryakov  <ap@webkit.org>
-
-        Rubber-stamped by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=22306
-        Disable channel messaging support
-
-        * Scripts/build-webkit: Add an option to enable channel messaging.
-
-2008-11-17  Nikolas Zimmermann  <nikolas.zimmermann@torchmobile.com>
-
-        Reviewed by George Staikos.
-
-        Add --(no-)wml build flags.
-
-        * Scripts/build-webkit:
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2008-11-17  Geoffrey Garen  <ggaren@apple.com>
-
-        Not reviewed.
-
-        Try to fix gtk build.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::pauseAnimationAtTimeOnElementWithId):
-        (LayoutTestController::pauseTransitionAtTimeOnElementWithId):
-
-2008-11-17  Pierre-Olivier Latour  <pol@apple.com>
-
-        Reviewed by Maciej.
-
-        Pixel tests should use a default tolerance of 0.1% on Leopard and 1.0%
-        on Tiger.
-
-        https://bugs.webkit.org/show_bug.cgi?id=22271
-
-        * Scripts/run-webkit-tests:
-
-2008-11-17  Pierre-Olivier Latour  <pol@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Added new JavaScript API on LayoutController to pause a running
-        CSS transition or animation at a given time.
-
-        https://bugs.webkit.org/show_bug.cgi?id=21261
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (pauseAnimationAtTimeOnElementWithIdCallback):
-        (pauseTransitionAtTimeOnElementWithIdCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::pauseAnimationAtTimeOnElementWithId):
-        (LayoutTestController::pauseTransitionAtTimeOnElementWithId):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::pauseAnimationAtTimeOnElementWithId):
-        (LayoutTestController::pauseTransitionAtTimeOnElementWithId):
-
-2008-11-17  Gabor Loki  <loki@inf.u-szeged.hu>
-
-        Reviewed by Darin Adler.
-
-        <https://bugs.webkit.org/show_bug.cgi?id=22309>
-        Pass the remaining options to build system on Qt-port
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-
-2008-11-16  Greg Bolsinga  <bolsinga@apple.com>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=21810
-        Remove use of static C++ objects that are destroyed at exit time (destructors)
-
-        Remove .o files from the exclude list that have had their exit-time destructors removed.
-        Handle case when there is no current symbol.
-
-        * Scripts/check-for-exit-time-destructors:
-
-2008-11-16  Sam Weinig  <sam@webkit.org>
-
-        * Scripts/do-webcore-rename: Remove now fixed renames.
-
-2008-11-16  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Plan some future renames.
-
-2008-11-15  Darin Adler  <darin@apple.com>
-
-        Rubber stamped by Geoff Garen.
-
-        - do the long-planned StructureID -> Structure rename
-
-        * Scripts/check-for-global-initializers: Update name of StructureID.o.
-        * Scripts/do-webcore-rename: Renaming script that I used.
-
-2008-11-15  Greg Bolsinga  <bolsinga@apple.com>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=21810
-        Remove use of static C++ objects that are destroyed at exit time (destructors)
-
-        Create DEFINE_STATIC_LOCAL macro. Change static local objects to leak to avoid
-        exit-time destructor. Update code that was changed to fix this issue that ran
-        into a gcc bug (<rdar://problem/6354696> Codegen issue with C++ static reference
-        in gcc build 5465). Also typdefs for template types needed to be added in some
-        cases so the type could make it through the macro successfully.
-
-        Basically code of the form:
-        static T m;
-        becomes:
-        DEFINE_STATIC_LOCAL(T, m, ());
-
-        Also any code of the form:
-        static T& m = *new T;
-        also becomes:
-        DEFINE_STATIC_LOCAL(T, m, ());
-
-        Remove .o files from the exclude list that have had their exit-time destructors removed.
-
-        * Scripts/check-for-exit-time-destructors:
-
-2008-11-14  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx mac buildbot fix. Also, make sure we don't keep hitting this problem.
-
-        * wx/install-unix-extras:
-
-2008-11-14  Alp Toker  <alp@nuanti.com>
-
-        GTK DRT build fix for gcc 4.4 snapshot. Add missing stdio include.
-
-        Fixes Debian bug #505723
-        http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=505723
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-
-2008-11-14  Krishna <krishnamurty.podipireddy@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        Fix hanging DRT with Qt.
-
-        https://bugs.webkit.org/show_bug.cgi?id=22209
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::dump):
-        Send empty pixel test data 'block', which is now
-        expected by run-layout-tests.
-
-2008-11-12  Dmitry Titov  <dimich@chromium.org>
-
-        Reviewed by Alexey Proskuryakov.
-
-        https://bugs.webkit.org/show_bug.cgi?id=22216
-
-        * Scripts/build-webkit:
-        Addes ENABLE_WORKERS to build-webkit so it's possible to build with workers enabled.
-
-2008-11-06  David Kilzer  <ddkilzer@apple.com>
-
-        BUILD FIX: Backed out r38189 (and r38203) for Xcode 3.0.
-
-        Apparently older versions of gcc have issues with this patch.
-        Backing out a second time until the issues are resolved.
-
-2008-11-06  David Kilzer  <ddkilzer@apple.com>
-
-        BUILD WAS NOT BROKEN: Rolling r38189 back in.
-
-        Please perform a clean build if you see crashes.
-
-2008-11-06  David Kilzer  <ddkilzer@apple.com>
-
-        BUILD FIX: Backed out r38189 since it apparently broke the world.
-
-2008-11-06  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Beth Dakin.
-
-        Add ability to query an attribute's settable status and the
-        ability to retrieve a single attribute from an AXObject
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (isAttributeSettableCallback):
-        (attributeValueCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (+[NSString stringWithJSStringRef:]):
-        (AccessibilityUIElement::attributeValue):
-        (AccessibilityUIElement::isAttributeSettable):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::attributeValue):
-        (AccessibilityUIElement::isAttributeSettable):
-
-2008-11-06  Greg Bolsinga  <bolsinga@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Bug 21810: Remove use of static C++ objects that are destroyed at exit time (destructors)
-        https://bugs.webkit.org/show_bug.cgi?id=21810
-
-        Remove .o files from the exclude list that have had their exit-time destructors removed.
-
-        * Scripts/check-for-exit-time-destructors:
-
-2008-11-05  Alp Toker  <alp@nuanti.com>
-
-        GTK build script tweak.
-
-        Make the path relative since it will appear in all -I compiler flags.
-        Long argument lists cause bizarre slowdowns in libtool and result
-        in huge build logs.
-
-        * Scripts/webkitdirs.pm:
-
-2008-11-05  Anders Carlsson  <andersca@apple.com>
-
-        Fix 64-bit build.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (setDefaultsToConsistentValuesForTesting):
-
-2008-11-04  Simon Fraser  <simon.fraser@apple.com>
-
-        Add AccessibilityObject.o to the exclude list for the
-        check for global destructors.
-
-        * Scripts/check-for-exit-time-destructors:
-
-2008-11-04  Darin Adler  <darin@apple.com>
-
-        * Scripts/check-for-exit-time-destructors: Fix failures seen on the
-        bot, but for some reason not on my computer.
-
-2008-11-03  Darin Adler  <darin@apple.com>
-
-        Reviewed by Tim Hatcher.
-
-        - https://bugs.webkit.org/show_bug.cgi?id=22061
-          create script to check for exit-time destructors
-
-        * Scripts/check-for-exit-time-destructors: Added.
-        Started as a copy of check-for-global-initializers.
-
-        * Scripts/check-for-global-initializers: Added code to make
-        this script rerun any time it's modified, and also to properly
-        run again after the first time it reports an error.
-
-2008-11-03  Pierre-Olivier Latour  <pol@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        Fixed the override of the "AppleScrollBarVariant" system setting to also work with HIToolbox.
-
-        https://bugs.webkit.org/show_bug.cgi?id=22054
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (setDefaultsToConsistentValuesForTesting):
-
-2008-10-31  Cameron Zwarich  <zwarich@apple.com>
-
-        Not reviewed.
-
-        * Scripts/do-webcore-rename:
-
-        Add some renames to contemplate for the future.
-
-2008-10-31  Darin Adler  <darin@apple.com>
-
-        Requested by Mark Rowe.
-
-        * Scripts/check-for-global-initializers: s/Web Kit/WebKit/.
-
-2008-10-31  David Kilzer  <ddkilzer@apple.com>
-
-        Bug 21997: prepare-ChangeLog should filter out ChangeLog files
-
-        <https://bugs.webkit.org/show_bug.cgi?id=21997>
-
-        Reviewed by Darin Adler.
-
-        * Scripts/prepare-ChangeLog:
-        (generateFileList): Don't add ChangeLog files to %{$functionLists}.
-        This prevents them from showing up in the new ChangeLog entry.  They
-        were already excluded from @{$changedFiles}.
-
-2008-10-30  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Jon Homeycutt.
-
-        Explicitly default to building for only the native architecture in debug and release builds.
-
-        * DumpRenderTree/mac/Configurations/DebugRelease.xcconfig:
-
-2008-10-30  Pierre-Olivier Latour  <pol@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        Fixed 64 bit build failure.
-
-        * DumpRenderTree/mac/PixelDumpSupportMac.mm:
-        (setupMainDisplayColorProfile):
-        (createBitmapContextFromWebView):
-
-2008-10-28  Alp Toker  <alp@nuanti.com>
-
-        Fix GTK DRT following build breakage in r37928.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (dump):
-        (runTest):
-        (main):
-
-2008-10-28  Alp Toker  <alp@nuanti.com>
-
-        Reviewed by Mark Rowe.
-
-        Fix recently introduced double-free crashes in GTK DRT.
-
-        LayoutTestController was made ref-counted in r36606 and Mac/Win DRT
-        were updated to call ->deref() but GTK DRT was still deleting
-        gLayoutTestController manually. This patch updates GTK to match the
-        other ports and resolves the memory allocation issues.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (runTest):
-
-2008-10-28  Alp Toker  <alp@nuanti.com>
-
-        Reviewed by Mark Rowe.
-
-        Fix GTK DRT hang when running the tests.
-
-        Update output from the DRT tool to print an additional '#EOF' to match
-        breaking changes that were made in r37434.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (dump):
-
-2008-10-28  Adele Peterson  <adele@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Specify which Localizable.strings to update since we don't always want to update the file in the same
-        directory where we're searching for the strings to localize.
-
-        * Scripts/extract-localizable-strings:
-        * Scripts/update-webkit-localizable-strings:
-
-2008-10-28  Timothy Hatcher  <timothy@apple.com>
-
-        Add support for enabling the profiler, so the profiling tests can continue
-        work now that the profiler is not always enabled.
-
-        https://bugs.webkit.org/show_bug.cgi?id=21927
-
-        <rdar://problem/6211578> Make the JavaScript profiler opt-in, so it does
-        not slow down JavaScript all the time
-
-        Reviewed by Darin Adler and Kevin McCullough.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Make the editor use spaces.
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setJavaScriptProfilingEnabledCallback): Added. Calls LayoutTestController::setJavaScriptProfilingEnabled.
-        (LayoutTestController::staticFunctions): Added setJavaScriptProfilingEnabled to the script class.
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setJavaScriptProfilingEnabled): Stubbed out with a FIXME.
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting): Disables the developer extras and disables the profiler.
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setJavaScriptProfilingEnabled): Toggles the developer extras and profiler.
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting): Disables the developer extras and disables the profiler.
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setJavaScriptProfilingEnabled): Toggles the developer extras and profiler.
-
-2008-10-28  Pierre-Olivier Latour  <pol@apple.com>
-
-        Reviewed by Dan Bernstein
-
-        Primary changes in DumpRenderTree:
-        - Ensure font smoothing is disabled (this is also called LCD anti-aliasing and
-        is different from regular font CG anti-aliasing) as font-smoothing settings
-        depends on the display and can also be changed by the user
-        - Use a new cleared buffer for each test instead of the reusing same one to
-        avoid potential result corruption across tests
-        - Can now receive the expected pixel hash as a suffix to the test path or
-        url as "path'hash"
-        - Make sure hash is computed in a endian-independent way
-        - Improve the code that sets/restores the screen color profile
-        - Make the code more cross-platformy with std::string goodness
-        - Added an "on-screen" mode where the snapshot will take into account surfaces
-        on the window (like OpenGL content): this uses the new CG APIs on 10.5 or
-        reading from the display framebuffer on 10.4. This mode is not active by
-        default for performance reason, but must be explicitly activated from the test
-        file using the new "testOnscreen()" JS API.
-
-        Primary changes in ImageDiff:
-        - Provide a new comparison algorithm that is more tolerant to "acceptable"
-        failures (i.e. very small differences in font rendering, which --threshold is
-        not really good at handling)
-        - Generate normalized intensity-only diff images
-
-        Primary changes in run-webkit-tests:
-        - Take advantage of hashes for pixel tests which makes them much faster by
-        minimizing image comparisons
-        - Removed repaint options as these should be set from within test files using
-        JS API
-        - Replaced "threshold" option in  by "tolerance" expressed in percents
-        - Added more logging when in "verbose" mode
-
-        https://bugs.webkit.org/show_bug.cgi?id=21322
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/ForwardingHeaders/wtf/PassRefPtr.h: Copied from JavaScriptGlue/ForwardingHeaders/wtf/PassRefPtr.h.
-        * DumpRenderTree/ForwardingHeaders/wtf/RefPtr.h: Copied from JavaScriptGlue/ForwardingHeaders/wtf/RefPtr.h.
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (testOnscreenCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::testOnscreen):
-        (LayoutTestController::setTestOnscreen):
-        (LayoutTestController::testPathOrURL):
-        (LayoutTestController::expectedPixelHash):
-        * DumpRenderTree/PixelDumpSupport.h:
-        * DumpRenderTree/cg/ImageDiffCG.cpp:
-        (strtof):
-        (releaseMallocBuffer):
-        (createDifferenceImage):
-        (imageHasAlpha):
-        (main):
-        * DumpRenderTree/cg/PixelDumpSupportCG.cpp:
-        (computeMD5HashStringForBitmapContext):
-        (dumpWebViewAsPixelsAndCompareWithExpected):
-        * DumpRenderTree/cg/PixelDumpSupportCG.h:
-        (BitmapContext::createByAdoptingBitmapAndContext):
-        (BitmapContext::~BitmapContext):
-        (BitmapContext::cgContext):
-        (BitmapContext::BitmapContext):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (shouldIgnoreWebCoreNodeLeaks):
-        (setDefaultsToConsistentValuesForTesting):
-        (crashHandler):
-        (initializeGlobalsFromCommandLineOptions):
-        (prepareConsistentTestingEnvironment):
-        (dumpRenderTree):
-        (sizeWebViewForCurrentTest):
-        (dump):
-        (runTest):
-        * DumpRenderTree/mac/PixelDumpSupportMac.mm:
-        (restoreMainDisplayColorProfile):
-        (setupMainDisplayColorProfile):
-        (createBitmapContextFromWebView):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (dump):
-        (runTest):
-        * DumpRenderTree/win/PixelDumpSupportWin.cpp:
-        (getBitmapContextFromWebView):
-        * Scripts/run-webkit-tests:
-
-2008-10-27  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix on Linux/GTK. Enable support for #include <JavaScriptCore/XYZ.h> style includes.
-
-        * wx/build-wxwebkit:
-
-2008-10-24  Anders Carlsson  <andersca@apple.com>
-
-        Try fixing the 64-bit build.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/TestObject.cpp:
-        (testGetProperty):
-
-2008-10-24  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        <rdar://problem/5440917> Support NPN_Construct
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (testCallback):
-        Fix a memory leak.
-
-        (testConstruct):
-        New test method that treats it first argument as a constructor and invokes it with the rest of the arguments.
-
-        (pluginInvoke):
-        Handle testConstruct.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/TestObject.cpp:
-        (testGetProperty):
-        Add objectPointer property.
-
-        (testEnumerate):
-        Only enumerate the two first properties.
-
-        (testConstruct):
-        Add a simple construct implementation that just returns the test object.
-
-2008-10-24  David Kilzer  <ddkilzer@apple.com>
-
-        Bug 21850: svn-apply and svn-unapply should preserve patch line endings
-
-        <https://bugs.webkit.org/show_bug.cgi?id=21850>
-
-        Reviewed by Adam Roben.
-
-        * Scripts/svn-apply: Save end-of-line characters when stripping them
-        off each line of a patch so that they may be restored after
-        processing the line.
-        * Scripts/svn-unapply: Ditto.
-
-2008-10-23  David Kilzer  <ddkilzer@apple.com>
-
-        Bug 21832: Fix scripts using 'new File::Temp' for Perl 5.10
-
-        <https://bugs.webkit.org/show_bug.cgi?id=21832>
-
-        Reviewed by Sam Weinig.
-
-        * Scripts/bisect-builds: Use imported tempfile() from File::Temp
-        instead of 'new File::Temp' to make the script work with Perl 5.10.
-        * Scripts/sort-Xcode-project-file: Ditto.
-
-2008-10-22  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Adam Roben
-
-        <rdar://6261773> - autocomplete="off" doesn't work on Windows
-
-        Implement LayoutTestController::elementDoesAutoCompleteForElementWithId() on Windows
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-
-2008-10-22  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: More renaming plans.
-
-2008-10-21  Steve Falkenburg  <sfalken@apple.com>
-
-        Exclude strings marked with UNLOCALIZED_STRING or UNLOCALIZED_LPCTSTR.
-
-        * Scripts/extract-localizable-strings:
-
-2008-10-17  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        - default to 1000 tests per dump tool instance again, now that CTI no longer causes
-        excess different stack logs.
-
-        (Also fix a small bug in my last change.)
-
-        * Scripts/run-webkit-tests:
-
-2008-10-17  Stephanie Lewis  <slewis@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        Fix layout tests that use prologues and epilogues.
-
-        * Scripts/run-webkit-tests:
-
-2008-10-17  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        - make sure MallocStackLogging is only on for tools we want to
-        leak check, not other random stuff as well.
-
-        * Scripts/run-webkit-tests:
-
-2008-10-17  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Stephanie Lewis.
-
-        - make run-webkit-tests --leaks default to 100 tests per run instead of 1000
-
-        This should reduce or eliminate crashes on the buildbot due to
-        running out of memory while stack logging.
-
-        * Scripts/run-webkit-tests:
-
-2008-10-16  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Gtk build fix. Not reviewed.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setSmartInsertDeleteEnabled):
-
-2008-10-15  Glenn Wilson  <gwilson@google.com>
-
-        Added new method to allow tests to disable smart editing in the course of a test.
-        This is a possible solution to bug .20655
-
-        Reviewed by Tim Hatcher.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setSmartInsertDeleteEnabledCallback): new method
-        (LayoutTestController::staticFunctions): added new method to static list of callbacks
-        * DumpRenderTree/LayoutTestController.h: added signature of new method
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting): added state resetting
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setSmartInsertDeleteEnabled): added new method
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting): added state resetting
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setSmartInsertDeleteEnabled): added new method
-
-2008-10-14  Ada Chan  <adachan@apple.com>
-
-        Fix windows build.
-
-        Reviewed by Sam Weinig.
-
-        * DumpRenderTree/cg/PixelDumpSupportCG.cpp:
-        * DumpRenderTree/config.h:
-        * DumpRenderTree/win/DumpRenderTreeWin.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        * DumpRenderTree/win/UIDelegate.cpp:
-
-2008-10-13  Timothy Hatcher  <timothy@apple.com>
-
-        Make prepare-ChangeLog populate the changed functions for JavaScript files.
-
-        https://bugs.webkit.org/show_bug.cgi?id=21567
-
-        Reviewed by David Kilzer.
-
-        * Scripts/prepare-ChangeLog:
-        (get_function_line_ranges): Call get_function_line_ranges_for_javascript for
-        files that end with ".js".
-        (get_function_line_ranges_for_javascript): Find functions, anonymous functions
-        and getters/setters.
-
-2008-10-14  Alp Toker  <alp@nuanti.com>
-
-        Reviewed by Sam Weinig.
-
-        https://bugs.webkit.org/show_bug.cgi?id=16299
-        Add a config.h file to DRT
-
-        Add a config.h to DumpRenderTree and reduce use of DumpRenderTree.h as
-        an ad-hoc config header.
-
-        * DumpRenderTree/AccessibilityController.cpp:
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/DumpRenderTree.h:
-        * DumpRenderTree/GCController.cpp:
-        * DumpRenderTree/LayoutTestController.cpp:
-        * DumpRenderTree/WorkQueue.cpp:
-        * DumpRenderTree/config.h: Added.
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        * DumpRenderTree/gtk/GCControllerGtk.cpp:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        * DumpRenderTree/gtk/WorkQueueItemGtk.cpp:
-        * DumpRenderTree/win/AccessibilityControllerWin.cpp:
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        * DumpRenderTree/win/DumpRenderTreeWin.h:
-        * DumpRenderTree/win/EditingDelegate.cpp:
-        * DumpRenderTree/win/EventSender.cpp:
-        * DumpRenderTree/win/FrameLoadDelegate.cpp:
-        * DumpRenderTree/win/GCControllerWin.cpp:
-        * DumpRenderTree/win/MD5.cpp:
-        * DumpRenderTree/win/PixelDumpSupportWin.cpp:
-        * DumpRenderTree/win/PolicyDelegate.cpp:
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp:
-        * DumpRenderTree/win/WorkQueueItemWin.cpp:
-        * GNUmakefile.am:
-
-2008-10-13  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Beth Dakin.
-
-        Added a method to get the links in a webpage
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (attributesOfDocumentLinksCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::getDocumentLinks):
-        (AccessibilityUIElement::attributesOfDocumentLinks):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::getDocumentLinks):
-        (AccessibilityUIElement::attributesOfDocumentLinks):
-
-2008-10-13  David Kilzer  <ddkilzer@apple.com>
-
-        Bug 21457: resolve-ChangeLogs should be able to operate on a git revision range
-
-        <https://bugs.webkit.org/show_bug.cgi?id=21457>
-
-        Reviewed by Adam.
-
-        * Scripts/resolve-ChangeLogs: Added optional parameter to
-        -f|--fix-merged switch to run the script on a revision range.
-        Updated command-line validation checks.
-        (findChangeLog): Fixed long-standing bug that should have used
-        $_[0] instead of $_.
-        (fixMergedChangeLog): Renamed to fixOneMergedChangeLog($).  Updated
-        to work when called from git filter-branch.  It always restores a
-        copy of the previous revision before reapplying the patch.
-        (fixMergedChangeLogs): Added.  Calls itself through git filter-branch
-        to re-merge ChangeLog files across a revision range.  Removes
-        .git/refs/original directory on success.
-        (parseFixMerged): Added.  Custom method to parse the -f|--fix-merged
-        switch.
-        (removeChangeLogArguments): Added.  Removes items from @ARGV when
-        they are ChangeLog paths, and return a list of paths.  This makes it
-        easier to validate the command-line.
-        (resolveChangeLog): Added.  Extracted from main code block.  Runs
-        the traditional single-file merge algorithm.
-        (usageAndExit): Added.  Extracted from main code block.  Prints
-        usage statement and exits with error status.
-
-2008-10-12  Darin Adler  <darin@apple.com>
-
-        * Scripts/make-js-test-wrappers: Update exceptions list so the script
-        won't overwrite files and mangle tests.
-
-2008-10-11  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Sam Weinig and Anders Carlsson.
-
-        - update Mac DumpRenderTree to use the new WebView SPI for forcing the
-          complex text code path
-        - add --complex-text support to Windows DumpRenderTree
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dumpRenderTree):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (createWebViewAndOffscreenWindow):
-        (main):
-        * Scripts/run-webkit-tests:
-
-2008-10-09  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Oliver Hunt.
-
-        https://bugs.webkit.org/show_bug.cgi?id=21498
-
-        * Scripts/make-js-test-wrappers: ignore resources/shadow-offset.js
-
-2008-10-09  Cameron Zwarich  <zwarich@apple.com>
-
-        Not reviewed.
-
-        Add StructureID.o to the exclusion list in the global initializers
-        script to fix the Debug build.
-
-        * Scripts/check-for-global-initializers:
-
-2008-10-08  Mark Rowe  <mrowe@apple.com>
-
-        Fix the Windows build after r37434.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (dump): Update code to approximate valid C++ syntax.
-
-2008-10-08  Timothy Hatcher  <timothy@apple.com>
-
-        Add SVGElementInstance to the list of exceptions that have
-        global initializers in debug builds.
-
-        Rubber-stamped by Mark Rowe.
-
-        * Scripts/check-for-global-initializers: Add SVGElementInstance.o.
-
-2008-10-08  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Dan Bernstein
-
-        Avoid disconnect between DRT and run-webkit-tests
-        about whether to expect PNG dumps by having DRT always
-        print two blocks terminated by #EOF, the second of which
-        may be empty.
-
-        https://bugs.webkit.org/show_bug.cgi?id=21483
-
-        * DumpRenderTree/cg/PixelDumpSupportCG.cpp:
-        (printPNG):
-        (dumpWebViewAsPixelsAndCompareWithExpected):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dump):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (dump):
-        * Scripts/run-webkit-tests:
-
-2008-10-07  Adam Roben  <aroben@apple.com>
-
-        Make sure short functions get included in ChangeLog output for git
-        repositories
-
-        Reviewed by Dave Kilzer.
-
-        * Scripts/prepare-ChangeLog:
-        (sub diffCommand): Pass -U0 to git diff so that each contiguous change
-        will get its own chunk without any surrounding context.
-        (sub extractLineRange): Use the line numbers from the chunk header
-        without modifying them now that they're accurate.
-
-2008-10-04  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Tim Hatcher.
-
-        Update check-for-weak-vtables to check only the final linked image for weak vtables.
-        This gives more useful results than checking each object file independently.
-
-        * Scripts/check-for-weak-vtables:
-
-2008-10-03  Pierre-Olivier Latour <pol@apple.com>
-
-        Reviewed by Darin Adler
-
-        Render images to RGBA8 bitmaps independently of platform endianness.
-
-        Create image difference bitmap in reference image colorspace instead of device colorspace
-        (which depends on the main display profile), so that no color matching happens.
-
-        https://bugs.webkit.org/show_bug.cgi?id=21336
-
-        * DumpRenderTree/cg/ImageDiffCG.cpp:
-        (createDifferenceBitmap):
-        (computePercentageDifferent):
-        (compareImages):
-
-2008-10-02  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Darin Adler
-
-        Fix hang when running with --pixel --reset, which occurs
-        because DRT spews PNG data when the script does not expect it.
-
-        https://bugs.webkit.org/show_bug.cgi?id=21323
-
-        * Scripts/run-webkit-tests:
-
-2008-09-30  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        Add a leak counter for CachedResources since we've had two recent leaks involving them.
-
-        * Scripts/check-for-global-initializers:
-
-2008-09-30  Mark Rowe  <mrowe@apple.com>
-
-        Rubber-stamped by Dan Bernstein.
-
-        Fix many leaks seen on fast/backgrounds/svg-as-background-1.html.
-
-        JavaScript wrappers were keeping DOM objects alive, which was leading to the SVG background image
-        being kept alive in the memory cache past our last attempt to empty the cache prior to quitting.
-        We need to empty the memory cache after forcing a JavaScript garbage collection to ensure that
-        any live JavaScript wrappers are collected and their corresponding DOM objects have a chance to be
-        torn down before we exit.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dumpRenderTree):
-        (main):
-
-2008-09-30  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Dan Bernstein
-
-        Don't run pixel comparison for text-only tests.
-        https://bugs.webkit.org/show_bug.cgi?id=21124
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dump):
-        * Scripts/run-webkit-tests:
-
-2008-09-29  Thiago Macieira  <thiago.macieira@nokia.com>
-
-        Reviewed by Simon.
-
-        Changed copyright from Trolltech ASA to Nokia.
-
-        Nokia acquired Trolltech ASA, assets were transferred on September 26th 2008.
-
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        * DumpRenderTree/qt/jsobjects.cpp:
-        * DumpRenderTree/qt/jsobjects.h:
-        * DumpRenderTree/qt/main.cpp:
-        * DumpRenderTree/qt/testplugin.cpp:
-        * DumpRenderTree/qt/testplugin.h:
-
-2008-09-28  David Kilzer  <ddkilzer@apple.com>
-
-        Bug 21185: resolve-ChangeLogs should be able to fix poorly merged ChangeLog entries after a git svn rebase
-
-        <https://bugs.webkit.org/show_bug.cgi?id=21185>
-
-        Reviewed by Adam.
-
-        * Scripts/resolve-ChangeLogs: Added new -f|--fix-merge switch that
-        will attempt to reapply the last commit to a ChangeLog file such
-        that the ChangeLog entry appears at the top of the file.
-        (findChangeLog): Added prototype and moved method below the exit
-        statement.
-        (fixMergedChangeLog): Added.  Method to fix incorrectly merged
-        ChangeLog entries.
-
-2008-09-27  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        https://bugs.webkit.org/show_bug.cgi?id=21178
-        <rdar://problem/6248651>
-
-        Return the result value from getURL.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (getURL):
-
-2008-09-26  Matt Lilek  <webkit@mattlilek.com>
-
-        Reviewed by Tim Hatcher.
-
-        Update FEATURE_DEFINES after ENABLE_CROSS_DOCUMENT_MESSAGING was removed.
-
-        * Scripts/build-webkit:
-
-2008-09-26  Alice Liu  <alice.liu@apple.com>
-
-        Remove usage of atlstr.h and CString for VCExpress compatibility
-
-        Reviewed by Stephanie Lewis.
-
-        * record-memory-win/main.cpp:
-        (ProcessArgs):
-        (UseImage):
-        (QueryContinuously):
-        (OneQuery):
-        (OneQueryMP):
-
-2008-09-26  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix. Update the version of libpng.
-
-        * wx/install-unix-extras:
-
-2008-09-24  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Fix for https://bugs.webkit.org/show_bug.cgi?id=21080
-        <rdar://problem/6243534>
-        Crash below Function.apply when using a runtime array as the argument list
-
-        Add method to ObjCController to return a runtime array.
-
-        * DumpRenderTree/mac/ObjCController.m:
-        (+[ObjCController isSelectorExcludedFromWebScript:]):
-        (+[ObjCController webScriptNameForSelector:]):
-        (-[ObjCController testArray]):
-
-2008-09-24  Beth Dakin  <bdakin@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Speculative build fix.
-
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::supportsPressAction):
-
-2008-09-23  Beth Dakin  <bdakin@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        This patch extends DumpRenderTree's AccessibilityController to ask
-        if the focused element supports the press action.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (getSupportsPressActionCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::supportsPressAction):
-
-2008-09-22  Alice Liu  <alice.liu@apple.com>
-
-        Adding a stand-alone Windows console application to record a process's memory usage
-
-        Reviewed by Steve Falkenburg.
-
-        * record-memory-win: Added.
-        * record-memory-win/main.cpp: Added.
-        * record-memory-win/record-memory-win.vcproj: Added.
-
-2008-09-22  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Support ability to get/set selected text ranges for text controls through AX.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (setSelectedTextRangeCallback):
-        (getSelectedTextRangeCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::attributesOfRowHeaders):
-        (AccessibilityUIElement::attributesOfVisibleCells):
-        (AccessibilityUIElement::rowIndexRange):
-        (AccessibilityUIElement::columnIndexRange):
-        (AccessibilityUIElement::cellForColumnAndRow):
-        (AccessibilityUIElement::selectedTextRange):
-        (AccessibilityUIElement::setSelectedTextRange):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::selectedTextRange):
-        (AccessibilityUIElement::setSelectedTextRange):
-
-2008-09-20  Darin Adler  <darin@apple.com>
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (convertMIMEType): Turn on Stephanie's workaround for Tiger too.
-
-2008-09-19  Alp Toker  <alp@nuanti.com>
-
-        Build fix for the 'gold' linker and recent binutils. New behaviour
-        requires that we link to used libraries explicitly.
-
-        * GNUmakefile.am:
-
-2008-09-19  Stephanie Lewis  <slewis@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        Implement a workaround for an incorrect mime-type on machines with
-        Dashcode 2.0.1.  Dashcode is overriding the UTI type for .js files.
-        See radar <rdar://problem/6234318>.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (convertMIMEType):
-
-2008-09-19  Chris Fleizach  <cfleizach@apple.com>
-
-        Fixed Windows bustage
-
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::titleUIElement):
-
-2008-09-18  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Expose titleUIElement call for DumpRenderTree
-
-        * ChangeLog:
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (titleUIElementCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::titleUIElement):
-
-2008-09-18  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: More renaming plans.
-
-2008-09-18  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        Clear the main frame's name between tests to get more consistent test results
-        when running the WebKit tests with --nthly.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting):
-
-2008-09-18  Stephanie Lewis  <slewis@apple.com>
-
-        Really fix tiger jsc tests.
-
-        * Scripts/run-javascriptcore-tests:
-
-2008-09-18  Stephanie Lewis  <slewis@apple.com>
-
-        Reviewed by Maciej Stachowiak.
-
-        Fix jsc tests on Tiger.  Make jsc tests smarter about when to use the arch flag.
-
-        * Scripts/run-javascriptcore-tests:
-        * Scripts/webkitdirs.pm:
-
-2008-09-18  Mark Rowe  <mrowe@apple.com>
-
-        Rubber-stamped by Sam Weinig.
-
-        Print warning to stdout rather than stderr when a test attempts to access a remote resource.
-        This should make it more obvious when a test does this, as stderr output tends to be obscured
-        by noise in the test results.
-
-        Also fixes some coding style issues in ResourceLoadDelegate.mm.
-
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        (-[NSError _drt_descriptionSuitableForTestResult]):
-        (-[NSURL _drt_descriptionSuitableForTestResult]):
-        (-[ResourceLoadDelegate webView:identifierForInitialRequest:fromDataSource:]):
-        (-[ResourceLoadDelegate webView:resource:willSendRequest:redirectResponse:fromDataSource:]):
-        (-[ResourceLoadDelegate webView:resource:didReceiveResponse:fromDataSource:]):
-        (-[ResourceLoadDelegate webView:resource:didFinishLoadingFromDataSource:]):
-        (-[ResourceLoadDelegate webView:resource:didFailLoadingWithError:fromDataSource:]):
-        (-[ResourceLoadDelegate webView:resource:willCacheResponse:fromDataSource:]):
-
-2008-09-18  Stephanie Lewis  <slewis@apple.com>
-
-        Reviewed by Mark Rowe and Maciej Stachowiak..
-
-        add a --64-bit option and specify which architecture to run on Mac.
-
-        * Scripts/run-javascriptcore-tests:
-
-2008-09-17  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Fix a crash seen running DumpRenderTree on fast/dom/null-document-window-open-crash.html under guard malloc.
-
-        The JS wrapper for LayoutTestController could outlive the wrapped instance, and would crash when
-        attempting to access the wrapped instance within layoutTestControllerObjectFinalize. We fix this by making
-        LayoutTestController ref-counted to ensure that it is not outlived by the JS wrapper.
-
-        * DumpRenderTree/ForwardingHeaders/wtf/RefCounted.h: Copied from JavaScriptGlue/ForwardingHeaders/wtf/RefCounted.h.
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (notifyDoneCallback): Remove code that is no longer needed now that we must always have a wrapped instance.
-        (layoutTestControllerObjectFinalize): Deref the wrapped object.
-        (LayoutTestController::makeWindowObject): Ref the wrapped object.
-        * DumpRenderTree/LayoutTestController.h: Make LayoutTestController RefCounted.
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (runTest): Deref the LayoutTestController object rather than explicitly deleting it.
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm: Remove code that is no longer needed.
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (runTest): Deref the LayoutTestController object rather than explicitly deleting it.
-
-2008-09-16  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        Add flag to disable running sample on tests that timeout.
-
-        * Scripts/run-webkit-tests:
-
-2008-09-16  Adam Roben  <aroben@apple.com>
-
-        Windows build fix after r36511
-
-        Update for rename of layoutTestController to gLayoutTestController.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        * DumpRenderTree/win/EditingDelegate.cpp:
-        * DumpRenderTree/win/FrameLoadDelegate.cpp:
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp:
-        * DumpRenderTree/win/UIDelegate.cpp:
-
-2008-09-16  Adam Roben  <aroben@apple.com>
-
-        Add a script to print out the dependency tree of a Visual Studio
-        solution file
-
-        * Scripts/print-msvc-project-dependencies: Added.
-
-2008-09-16  Mark Rowe  <mrowe@apple.com>
-
-        Fix the build.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (notifyDoneCallback): Call fprintf in a safer manner.
-
-2008-09-16  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Eric Seidel
-
-        Protect against tests that call layoutTestController.notifyDone()
-        more than once, which would lead to memory corruption, by nulling
-        out the LayoutTestController on the JSObjectRef on destruction. Also
-        add a finalize callback on the class so that if the LTC outlives
-        the JSObjectRef, the JSObjectRef backpointer on the LTC can be
-        nulled out.
-
-        https://bugs.webkit.org/show_bug.cgi?id=20875
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (notifyDoneCallback):
-        (layoutTestControllerObjectFinalize):
-        (LayoutTestController::makeWindowObject):
-        (LayoutTestController::getJSClass):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::~LayoutTestController):
-
-2008-09-16  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Eric Seidel
-
-        Step 1 patch: rename global variable for clarity.
-        https://bugs.webkit.org/show_bug.cgi?id=20875
-
-        * DumpRenderTree/DumpRenderTree.h:
-        * DumpRenderTree/cg/PixelDumpSupportCG.cpp:
-        (dumpWebViewAsPixelsAndCompareWithExpected):
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (dumpFramesAsText):
-        (dump):
-        (runTest):
-        (processWork):
-        (webViewLoadFinished):
-        (webViewWindowObjectCleared):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (allocateGlobalControllers):
-        (dumpFrameScrollPosition):
-        (dumpFramesAsText):
-        (methodNameStringForFailedTest):
-        (dump):
-        (runTest):
-        * DumpRenderTree/mac/DumpRenderTreeMac.h:
-        * DumpRenderTree/mac/DumpRenderTreeWindow.mm:
-        * DumpRenderTree/mac/EditingDelegate.mm:
-        (-[EditingDelegate webView:shouldBeginEditingInDOMRange:]):
-        (-[EditingDelegate webView:shouldInsertNode:replacingDOMRange:givenAction:]):
-        (-[EditingDelegate webView:shouldInsertText:replacingDOMRange:givenAction:]):
-        (-[EditingDelegate webView:shouldChangeSelectedDOMRange:toDOMRange:affinity:stillSelecting:]):
-        (-[EditingDelegate webView:shouldApplyStyle:toElementsInDOMRange:]):
-        (-[EditingDelegate webView:shouldChangeTypingStyle:toStyle:]):
-        (-[EditingDelegate webViewDidBeginEditing:]):
-        (-[EditingDelegate webViewDidChange:]):
-        (-[EditingDelegate webViewDidEndEditing:]):
-        (-[EditingDelegate webViewDidChangeTypingStyle:]):
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate processWork:]):
-        (-[FrameLoadDelegate webView:locationChangeDone:forDataSource:]):
-        (-[FrameLoadDelegate webView:didStartProvisionalLoadForFrame:]):
-        (-[FrameLoadDelegate webView:didCommitLoadForFrame:]):
-        (-[FrameLoadDelegate webView:didFinishLoadForFrame:]):
-        (-[FrameLoadDelegate webView:didClearWindowObject:forFrame:]):
-        (-[FrameLoadDelegate webView:didReceiveTitle:forFrame:]):
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        (-[ResourceLoadDelegate webView:identifierForInitialRequest:fromDataSource:]):
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:dragImage:at:offset:event:pasteboard:source:slideBack:forView:]):
-        (-[UIDelegate webViewFocus:]):
-        (-[UIDelegate webViewUnfocus:]):
-        (-[UIDelegate webView:createWebViewWithRequest:]):
-        (-[UIDelegate webViewClose:]):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (dumpFrameScrollPosition):
-        (dumpFramesAsText):
-        (dump):
-        (runTest):
-
-2008-09-15  Alice Liu  <alice.liu@apple.com>
-
-        A change needed to make PPC bots pass accessibility/table-cell-spans.html layout test
-
-        Reviewed by Stephanie Lewis.
-
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        Calling -[NSValue rangeValue] on nil object was returning bogus results on PPC,
-        but not Intel.  Add a check for nil before calling.
-        (AccessibilityUIElement::rowIndexRange):
-        (AccessibilityUIElement::columnIndexRange):
-
-2008-09-14  Mark Rowe  <mrowe@apple.com>
-
-        Build fix.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (waitUntilDoneWatchdogFired):
-        * DumpRenderTree/mac/ObjCPlugin.m:
-
-2008-09-08  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        - add an option to run-webkit-tests to always use the complex text code path
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (initializeGlobalsFromCommandLineOptions):
-        (dumpRenderTree):
-        * Scripts/run-webkit-tests:
-
-2008-09-08  Steve Falkenburg  <sfalken@apple.com>
-
-        Another Windows nightly build fix.
-
-        Reviewed by Sam Weinig.
-
-        * FindSafari/FindSafari.cpp:
-        (_tmain): Delete existing WebKitNightly directory in temp.
-        * FindSafari/Safari.exe.manifest: Add PROGIDs for each COM class. Remove non-production classes.
-
-2008-09-07  Stephanie Lewis  <slewis@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        Fix DRT build
-
-        * DumpRenderTree/DumpRenderTreePrefix.h:
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-
-2008-09-06  Steve Falkenburg  <sfalken@apple.com>
-
-        Fix Windows nightlies.
-
-        Copy WebKit.dll alongside application so registry-free COM can find it.
-        Update embedded manifest to force use registry-free COM.
-
-        Reviewed by Dave Hyatt.
-
-        * FindSafari/FindSafari.cpp:
-        (copyManifest):
-        (replaceManifest):
-        (_tmain):
-        * FindSafari/FindSafari.rc: Added.
-        * FindSafari/FindSafari.vcproj:
-        * FindSafari/Safari.exe.manifest: Added.
-        * FindSafari/resource.h: Added.
-
-=== End merge of squirrelfish-extreme ===
-
-2008-08-31  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Maciej Stachowiak.
-
-        Add a --profile flag to run-sunspider.
-
-        * Scripts/webkitdirs.pm: Detect --profile or --profiling passed as a command-line argument
-        to build scripts as indicating that we should use the "Profiling" configuration.  At present
-        this is only supported by JavaScriptCore, so using this argument to build any other project
-        will likely result in unexpected behaviour.
-
-2008-08-27  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        Fix run-webkit-tests to handle DRT exiting early.
-
-        * Scripts/run-webkit-tests: Initialize $expectedResultPaths{$base} before it will be used.
-
-=== Start merge of squirrelfish-extreme ===
-
-2008-09-04  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Eric Seidel.
-
-        Fix https://bugs.webkit.org/show_bug.cgi?id=20639.
-        Bug 20639: ENABLE_DASHBOARD_SUPPORT does not need to be a FEATURE_DEFINE
-
-        * Scripts/build-webkit: Remove ENABLE_DASHBOARD_SUPPORT-related code.
-
-2008-09-04  Cameron Zwarich  <cwzwarich@uwaterloo.ca>
-
-        Reviewed by Oliver Hunt.
-
-        Bug 20616: Incorporate V8 benchmarks in testing
-        <https://bugs.webkit.org/show_bug.cgi?id=20616>
-
-        Add support for the --v8 option to run-sunspider.
-
-        * Scripts/run-sunspider:
-
-2008-09-04  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx buildbot fix. More robust handling of clean when makefiles are not built or
-        are not completely made.
-
-        * wx/build-wxwebkit:
-
-2008-09-03  Mark Rowe  <mrowe@apple.com>
-
-        More Mac build fixes.
-
-        Set ENABLE_DASHBOARD_SUPPORT when building for Mac via build-webkit.
-        Also set ENABLE_CROSS_DOCUMENT_MESSAGING in order to match the
-        default configuration specified in the .xcconfig files.
-
-        * Scripts/build-webkit:
-
-2008-09-03  Mark Rowe  <mrowe@apple.com>
-
-        Mac build fix.  Ensure that dashboard support is enabled.
-
-        * DumpRenderTree/mac/Configurations/Base.xcconfig:
-
-2008-08-25  Steve Falkenburg  <sfalken@apple.com>
-
-        Build fix. Copy correct version of ICU.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-
-2008-08-25  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Reviewed by Simon.
-
-        [run-webkit-tests] Use QtLauncher to show the results of the tests
-        konqueror might not be installed, xdg-open might not be installed but the
-        QtLauncher should be present.
-
-        * Scripts/run-webkit-tests:
-
-2008-08-24  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        Initial support for accessibility layout tests on Windows.
-        https://bugs.webkit.org/show_bug.cgi?id=20497
-
-        Reviewed by Sam Weinig.
-
-        * DumpRenderTree/AccessibilityController.h: Fix typos.
-        * DumpRenderTree/AccessibilityUIElement.cpp: Change #import to #include.
-        * DumpRenderTree/AccessibilityUIElement.h: Define _WINSOCKAPI_ to
-        prevent oleacc.h, which includes windows.h, from including winsock.h.
-        Fixed typos.
-        * DumpRenderTree/win/AccessibilityControllerWin.cpp: Added.
-        (AccessibilityController::AccessibilityController):
-        (AccessibilityController::~AccessibilityController):
-        (AccessibilityController::focusedElement): Get the root element, and
-        request its focused object.
-        (AccessibilityController::rootElement): Query Windows for the
-        accessible client object for the WebView's window.
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp: Added.
-        (AccessibilityUIElement::AccessibilityUIElement):
-        (AccessibilityUIElement::~AccessibilityUIElement):
-        (AccessibilityUIElement::getLinkedUIElements): Not implemented.
-        (AccessibilityUIElement::getChildren): Get the child count, and append
-        each child.
-        (AccessibilityUIElement::getChildAtIndex): Get the child at the given
-        index offset by 1. In MSAA, child 0 is the object itself.
-        (AccessibilityUIElement::allAttributes): Not implemented.
-        (AccessibilityUIElement::attributesOfLinkedUIElements): Same.
-        (AccessibilityUIElement::attributesOfChildren): Same.
-        (AccessibilityUIElement::parameterizedAttributeNames): Same.
-        (self): Return a VARIANT representing the "self" object. This is used
-        when calling methods that require a child variant.
-        (AccessibilityUIElement::role): Get the MSAA role, a long value, and
-        convert it into a string with GetRoleText().
-        (AccessibilityUIElement::title): Get the element's title, and convert
-        it to a JS String.
-        (AccessibilityUIElement::description): Same, for description.
-        (AccessibilityUIElement::width):
-        (AccessibilityUIElement::height):
-        (AccessibilityUIElement::intValue): Get the object's value as a string,
-        and convert the string to a double.
-        (AccessibilityUIElement::minValue): Not implemented.
-        (AccessibilityUIElement::maxValue): Same.
-        (AccessibilityUIElement::insertionPointLineNumber): Same.
-        (AccessibilityUIElement::attributesOfColumnHeaders): Same.
-        (AccessibilityUIElement::attributesOfRowHeaders): Same.
-        (AccessibilityUIElement::attributesOfColumns): Same.
-        (AccessibilityUIElement::attributesOfRows): Same.
-        (AccessibilityUIElement::attributesOfVisibleCells): Same.
-        (AccessibilityUIElement::attributesOfHeader): Same.
-        (AccessibilityUIElement::indexInTable): Same.
-        (AccessibilityUIElement::rowIndexRange): Same.
-        (AccessibilityUIElement::columnIndexRange): Same.
-        (AccessibilityUIElement::lineForIndex): Same.
-        (AccessibilityUIElement::boundsForRange): Same.
-        (AccessibilityUIElement::cellForColumnAndRow): Same.
-        * DumpRenderTree/win/DumpRenderTree.vcproj: Add accessibility files to
-        project.  Link to oleacc.lib, the MSAA library.
-        * DumpRenderTree/win/FrameLoadDelegate.cpp:
-        (FrameLoadDelegate::FrameLoadDelegate): Initialize the accessibility
-        controller.
-        (FrameLoadDelegate::didClearWindowObject): Create a new window object
-        for the accessibility controller.
-        * DumpRenderTree/win/FrameLoadDelegate.h:
-
-2008-08-21  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Mark Rowe
-
-        Make build-launcher-app work when run from a git repository.
-        https://bugs.webkit.org/show_bug.cgi?id=20478
-
-        * BuildSlaveSupport/build-launcher-app:
-
-2008-08-20  Maxime Britto  <britto@apple.com>
-
-        Reviewed by Ada Chan.
-
-         rdar://5259746
-        Mouse events are sent to page while resizing window (affects Gmail)
-
-        * DumpRenderTree/win/UIDelegate.h:
-        (UIDelegate::webViewSendResizeMessage): Add the new interface method, not implemented.
-
-2008-08-19  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Beth Dakin.
-
-        Add snowleopard platform in layout tests
-
-        Added support for accessing the attributes of
-        accessibility tables through the accessibility controller
-        in DumpRenderTree
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (attributesOfColumnHeadersCallback):
-        (attributesOfRowHeadersCallback):
-        (attributesOfColumnsCallback):
-        (attributesOfRowsCallback):
-        (attributesOfVisibleCellsCallback):
-        (attributesOfHeaderCallback):
-        (indexInTableCallback):
-        (rowIndexRangeCallback):
-        (columnIndexRangeCallback):
-        (childAtIndexCallback):
-        (cellForColumnAndRowCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (convertNSArrayToVector):
-        (descriptionOfElements):
-        (AccessibilityUIElement::getLinkedUIElements):
-        (AccessibilityUIElement::getChildren):
-        (AccessibilityUIElement::attributesOfLinkedUIElements):
-        (AccessibilityUIElement::attributesOfChildren):
-        (AccessibilityUIElement::attributesOfColumnHeaders):
-        (AccessibilityUIElement::attributesOfRowHeaders):
-        (AccessibilityUIElement::attributesOfColumns):
-        (AccessibilityUIElement::attributesOfRows):
-        (AccessibilityUIElement::attributesOfVisibleCells):
-        (AccessibilityUIElement::attributesOfHeader):
-        (AccessibilityUIElement::indexInTable):
-        (AccessibilityUIElement::rowIndexRange):
-        (AccessibilityUIElement::columnIndexRange):
-        (AccessibilityUIElement::cellForColumnAndRow):
-        * Scripts/run-webkit-tests:
-
-2008-08-19  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Fix run-webkit-tests misreporting crashed tests as timed out ones because DumpRenderTree
-        is waiting for crash reporter to let it exit.
-
-        The fix does not work on Tiger, because the state of the process is indistinguishable from
-        other waiting processes, at least not with this technique.
-
-        * Scripts/run-webkit-tests:
-
-2008-08-18  Alp Toker  <alp@nuanti.com>
-
-        Reviewed by Holger Freyther.
-
-        https://bugs.webkit.org/show_bug.cgi?id=20350
-        [GTK] Get DumpRenderTree working
-
-        Fixes and enhancements to DumpRenderTree. With these changes, the test
-        suite can now complete a run producing text and render tree dumps.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (dumpFramesAsText):
-        (dump):
-        (runTest):
-        (webViewLoadFinished):
-        (webViewWindowObjectCleared):
-        (webViewConsoleMessage):
-        (webViewScriptAlert):
-        (webViewScriptPrompt):
-        (webViewScriptConfirm):
-        (webViewTitleChanged):
-        (main):
-        * DumpRenderTree/gtk/DumpRenderTreeGtk.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::clearBackForwardList):
-        (LayoutTestController::pathToLocalResource):
-        (LayoutTestController::setAcceptsEditing):
-        (LayoutTestController::setUserStyleSheetEnabled):
-        (LayoutTestController::setUserStyleSheetLocation):
-        (waitToDumpWatchdogFired):
-        (LayoutTestController::windowCount):
-        * DumpRenderTree/gtk/WorkQueueItemGtk.cpp:
-        (JSStringCopyUTF8CString):
-        (ScriptItem::invoke):
-
-2008-08-17  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Cameron Zwarich.
-
-        Updated project files to XCode 3.1.
-
-        * DrawTest/DrawTest.xcodeproj/project.pbxproj:
-        * WebKitLauncher/WebKitLauncher.xcodeproj/project.pbxproj:
-
-2008-08-15  Mark Rowe  <mrowe@apple.com>
-
-        Rubber-stamped by Geoff Garen.
-
-        <rdar://problem/6139914> Please include a _debug version of JavaScriptCore framework
-
-        * Scripts/check-for-global-initializers: Ignore initializers when building the debug variant.
-
-2008-08-13  Simon Hausmann  <hausmann@webkit.org>
-
-        Rubber-stamped by Holger.
-
-        Revert r31585 and disable http tests for the Qt build again unless
-        explicitly enabled.
-
-        Running the http tests unfortunately currently still triggers
-        failures in non-http tests due to side-effects. Disable them by default for
-        now, for more reliable results.
-
-        * Scripts/run-webkit-tests:
-
-2008-08-10  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Reviewed (and updated) by Alp Toker.
-
-        https://bugs.webkit.org/show_bug.cgi?id=16620
-        [GTK] Autotools make dist and make check support
-
-        Get make dist working.
-
-        Note that not all possible configurations have been tested yet.
-
-        * GNUmakefile.am:
-
-2008-08-10  Alp Toker  <alp@nuanti.com>
-
-        Remove leftover qmake/GTK+ build files.
-
-        * DumpRenderTree/gtk/DumpRenderTree.pro: Removed.
-        * GtkLauncher/GtkLauncher.pro: Removed.
-
-2008-08-06  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Beth Dakin
-
-        AX functions shouldn't return position information because it changes
-        based on the platform
-
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::boundsForRange):
-
-2008-08-06  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by darin.
-
-        Fix leaks seen on build-bot by fixing memory management of AccessibilityUIElement.
-        <https://bugs.webkit.org/show_bug.cgi?id=20297>
-        <rdar://problem/6093153>
-
-        I've made AccessibilityUIElement a stack object for now.  It could be
-        made RefCounted, but I figured that might be overkill for the moment.
-        Essentially it's just a RefPtr itself. :)
-
-        I also fixed a few typos, such as AccessibilityUIElement() instead of ~AccessibilityUIElement()
-        which was causing additional leaks. :)
-
-        I added toAXElement to remove a bunch of copy/paste code.
-
-        * DumpRenderTree/AccessibilityController.h:
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (toAXElement):
-        (allAttributesCallback):
-        (attributesOfLinkedUIElementsCallback):
-        (attributesOfChildrenCallback):
-        (lineForIndexCallback):
-        (boundsForRangeCallback):
-        (childAtIndexCallback):
-        (getRoleCallback):
-        (getTitleCallback):
-        (getDescriptionCallback):
-        (getWidthCallback):
-        (getHeightCallback):
-        (getIntValueCallback):
-        (getMinValueCallback):
-        (getMaxValueCallback):
-        (getInsertionPointLineNumberCallback):
-        (finalize):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        (AccessibilityUIElement::platformUIElement):
-        * DumpRenderTree/mac/AccessibilityControllerMac.mm:
-        (AccessibilityController::focusedElement):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::AccessibilityUIElement):
-        (AccessibilityUIElement::getLinkedUIElements):
-        (AccessibilityUIElement::getChildren):
-        (AccessibilityUIElement::getChildAtIndex):
-        (AccessibilityUIElement::attributesOfLinkedUIElements):
-        (AccessibilityUIElement::attributesOfChildren):
-
-2008-08-06  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Cameron Zwarich.
-
-        Speculative fix for an error I keep seeing in my Cygwin build
-
-        * Scripts/webkitdirs.pm: make determineConfigurationProductDir() always call determineConfiguration() even on cygwin
-
-2008-08-02  Kevin Ollivier  <kevino@theolliviers.com>
-
-        Forgot to commit licensing correction in last commit.
-
-        * wx/packaging/wxWebKitInstaller.iss.in:
-
-2008-08-02  Kevin Ollivier  <kevino@theolliviers.com>
-
-        Reviewed by Eric Seidel.
-
-        Scripts for building a wxWebKit installer for wxPython on Win, eventually will
-        be used for nightlies.
-
-        https://bugs.webkit.org/show_bug.cgi?id=20036
-
-        * wx/packaging: Added.
-        * wx/packaging/build-win-installer.py: Added.
-        * wx/packaging/wxWebKitInstaller.iss.in: Added.
-
-2008-07-31  Adam Roben  <aroben@apple.com>
-
-        Follow-up to r35500
-
-        * WinLauncher/WinLauncher.vcproj: Set the manifest properties for the
-        Release configuration, too.
-
-2008-07-31  Stefan Landvogt <stefan.landvogt@gmail.com>
-
-        Fix Bug 20245: WinLauncher does not start in WebKit-debug right out of
-        the box
-
-        <https://bugs.webkit.org/show_bug.cgi?id=20245>
-
-        Reviewed by Adam Roben.
-
-        * WinLauncher/WinLauncher.vcproj: adding the following properties to
-        WinLauncher > Properties > Manifest Tool > Isolated COM
-        Type Library File: $(WebKitOutputDir)\lib\WebKit.tlb
-        Component File Name: WebKit$(WebKitDLLConfigSuffix)
-        Doing the change on "All Configurations"
-
-2008-07-31  Adam Roben  <aroben@apple.com>
-
-        Windows build bot fix
-
-        * DumpRenderTree/win/ImageDiff.vcproj: Don't fail if files that only
-        exist for people at Apple can't be found. Also updated the ICU version
-        to 3.8.
-
-2008-07-31  David Kilzer  <ddkilzer@apple.com>
-
-        Fix layout test results for webarchive/test-xml-stylesheet.xml
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (convertMIMEType): Work around the "text/xml" local file type
-        regression in Leopard using the BUILDING_ON_LEOPARD macro.  Also
-        stop mangling "application/x-javascript" into "text/javascript".
-        (convertWebResourceDataToString): When checking whether to dump a
-        resource as text, also check to see if the MIME type is in the
-        -[WebHTMLRepresentation supportedNonImageMIMETypes] array.
-        * DumpRenderTree/mac/DumpRenderTreeMac.h: Added BUILDING_ON_LEOPARD
-        macro.
-
-2008-07-31  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Alice Liu
-
-        Add AX support to get the bounds for a range of text
-        Add AX support to get the child of an element
-        Add AX support to get all the parameterized attribute names of an element
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (parameterizedAttributeNamesCallback):
-        (boundsForRangeCallback):
-        (childAtIndexCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::getChildAtIndex):
-        (AccessibilityUIElement::parameterizedAttributeNames):
-        (AccessibilityUIElement::boundsForRange):
-
-2008-07-31  Erik Bunce  <elbunce@thehive.com>
-
-        Reviewed by Simon.
-
-        Make run-launcher set DYLD_LIBRARY_PATH to make things work on Mac OS X.
-
-        * Scripts/run-launcher:
-
-2008-07-30  Jessica Kahn  <jess@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Slightly stricter checking for previous change, suggested by Adam.
-
-        * Scripts/extract-localizable-strings:
-
-2008-07-30  Jessica Kahn  <jess@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Added support for UI_STRING and UI_STRING_KEY macros with flexible prefixes.
-
-        * Scripts/extract-localizable-strings:
-
-2008-07-30  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Adam.
-
-        Copy icu38* files instead of icu36* files.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-
-2008-07-25  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        DRT/Gtk build fix for r35362
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::elementDoesAutoCompleteForElementWithId):
-
-2008-07-25  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Sam
-
-        Add the ability to dump whether-or-not an element should have autocomplete enabled,
-        from the perspective of the WebKit API
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (elementDoesAutoCompleteForElementWithIdCallback):
-        (LayoutTestController::staticFunctions):
-
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::elementDoesAutoCompleteForElementWithId):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::elementDoesAutoCompleteForElementWithId): Stub for now until I can get on Windows
-
-2008-07-25  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Beth Dakin
-
-        Add support for AXLineForIndex and AXInsertionPointIndex through the
-        accessibility controller
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (lineForIndexCallback):
-        (getInsertionPointLineNumberCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::insertionPointLineNumber):
-        (AccessibilityUIElement::lineForIndex):
-
-2008-07-25  Adam Roben  <aroben@apple.com>
-
-        Try to fix the Windows build bot
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj: Don't try to copy files
-        that don't exist for people outside of Apple.
-
-2008-07-18  Landry Breuil  <landry@openbsd.org>
-
-        Bug 19975: [OpenBSD] Patches to enable build of WebKit
-
-        <https://bugs.webkit.org/show_bug.cgi?id=19975>
-
-        Reviewed by David Kilzer.
-
-        * DumpRenderTree/DumpRenderTree.h: OpenBSD doesn't support wide characters.
-
-2008-07-16  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        CygwinDownloader fails to install necessary packages
-        https://bugs.webkit.org/show_bug.cgi?id=20075
-
-        Reviewed by Mark Rowe.
-
-        * CygwinDownloader/cygwin-downloader.zip: Rebuilt after two broken
-        mirrors removed in r34116. Set MIME type to application/octet-stream.
-
-2008-07-16  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        CygwinDownloader's make-zip.sh script fails
-        https://bugs.webkit.org/show_bug.cgi?id=20074
-
-        Reviewed by Mark Rowe.
-
-        * CygwinDownloader/cygwin-downloader.py:
-
-2008-07-15  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Refactor accessibility testing code.
-
-        We now have:
-        - AccessibilityController
-          Controller which has access to the WebView and can provide the focused element, root element
-          and in the future, elementAtPoint.
-
-        - AccessibilityUIElement
-          Object which provides access to the data provided by the Accessibility APIs.
-
-        * DumpRenderTree/AccessibilityController.cpp:
-        (getFocusedElementCallback):
-        (getRootElementCallback):
-        (AccessibilityController::getJSClass):
-        * DumpRenderTree/AccessibilityController.h:
-        * DumpRenderTree/AccessibilityUIElement.cpp: Added.
-        (allAttributesCallback):
-        (attributesOfLinkedUIElementsCallback):
-        (attributesOfChildrenCallback):
-        (getRoleCallback):
-        (getTitleCallback):
-        (getDescriptionCallback):
-        (getWidthCallback):
-        (getHeightCallback):
-        (getIntValueCallback):
-        (getMinValueCallback):
-        (getMaxValueCallback):
-        (finalize):
-        (AccessibilityUIElement::makeJSAccessibilityUIElement):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h: Added.
-        (AccessibilityUIElement::platformUIElement):
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/mac/AccessibilityControllerMac.mm:
-        (AccessibilityController::AccessibilityController):
-        (AccessibilityController::~AccessibilityController):
-        (AccessibilityController::focusedElement):
-        (AccessibilityController::rootElement):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm: Added.
-        (AccessibilityUIElement::AccessibilityUIElement):
-        (descriptionOfValue):
-        (attributesOfElement):
-        (nsStringToJSStringRef):
-        (concatenateAttributeAndValue):
-        (AccessibilityUIElement::getLinkedUIElements):
-        (AccessibilityUIElement::getChildren):
-        (AccessibilityUIElement::attributesOfLinkedUIElements):
-        (AccessibilityUIElement::attributesOfChildren):
-        (AccessibilityUIElement::allAttributes):
-        (AccessibilityUIElement::role):
-        (AccessibilityUIElement::title):
-        (AccessibilityUIElement::description):
-        (AccessibilityUIElement::width):
-        (AccessibilityUIElement::height):
-        (AccessibilityUIElement::intValue):
-        (AccessibilityUIElement::minValue):
-        (AccessibilityUIElement::maxValue):
-
-2008-07-14  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Beth Dakin
-
-        Add support to get attributes of the AXChildren of an objecty
-
-        * DumpRenderTree/AccessibilityController.cpp:
-        (attributesOfChildrenForFocusedElementCallback):
-        (AccessibilityController::staticFunctions):
-        * DumpRenderTree/AccessibilityController.h:
-        * DumpRenderTree/mac/AccessibilityControllerMac.mm:
-        (descriptionOfValue):
-        (AccessibilityController::attributesOfChildrenForFocusedElement):
-
-2008-07-14  Steve Falkenburg  <sfalken@apple.com>
-
-        Build fix.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-
-2008-07-14  Adam Roben  <aroben@apple.com>
-
-        Attempted Windows build fix
-
-        * DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin.vcproj: Add
-        CoreFoundation/OSXCompatibilityHeaders[/GNUCompatibility] to the
-        include path.
-
-2008-07-14  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reviewed by Geoff Garen.
-
-        Eliminate per-thread JavaScript global data instance support and make arbitrary
-        global data/global object combinations possible.
-
-        * DumpRenderTree/pthreads/JavaScriptThreadingPthreads.cpp:
-        (runJavaScriptThread): Don't pass a released context reference to JSGarbageCollect.
-        In this scenario, it was causing crashes after each 10-20 tests, because there was a large
-        chance for a different thread to cause GC after the context was released.
-
-2008-07-11  Stephanie Lewis  <slewis@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Make sure we read WebCore Leak messages.  Force full document teardown for DumpRenderTree.
-
-        Up timeout limit, some slower machines were timing out before crashtracer finished writing out to disk and quitting DRT.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (setDefaultsToConsistentValuesForTesting):
-        (resetWebViewToConsistentStateBeforeTesting):
-        * Scripts/run-webkit-tests:
-
-2008-07-10  Steve Falkenburg  <sfalken@apple.com>
-
-        Build fix.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-
-2008-07-09  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        Print <div> backgrounds when printing from DRT.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (setDefaultsToConsistentValuesForTesting):
-
-2008-07-09  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        Fix copying of expected results to correct location
-
-        * Scripts/run-webkit-tests:
-
-2008-07-09  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by aroben.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (dumpAsPDFCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::dumpAsPDF):
-        (LayoutTestController::setDumpAsPDF):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dumpFrameAsPDF):
-        (dump):
-
-2008-07-09  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by weinig.
-
-        Add Content-Type support to DumpRenderTree and run-webkit-tests
-        and move expected.txt files to expected.webarchive
-
-        https://bugs.webkit.org/show_bug.cgi?id=15565
-
-        * DumpRenderTree/cg/ImageDiffCG.cpp:
-        (compareImages):
-        (main):
-        * DumpRenderTree/cg/PixelDumpSupportCG.cpp:
-        (printPNG):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dump):
-        * Scripts/run-webkit-tests:
-
-2008-07-08  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        Reviewed by Anders.
-
-        Port r34988 to Mac: allow tests to define JavaScript to execute when
-        NPP_DestroyStream or NPP_URLNotify is called.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.cpp:
-        (NPP_New): Remove initialization that happens in pluginAllocate. Look
-        for new arguments onStreamDestroy and onURLNotify.
-        (NPP_Destroy): Free onStreamDestroy and onURLNotify.
-        (executeScript): Code moved from onStreamLoad.
-        (NPP_NewStream): Call executeScript.
-        (NPP_DestroyStream): Same.
-        (NPP_URLNotify): Same.
-
-2008-07-07  Beth Dakin  <bdakin@apple.com>
-
-        Reviewed by Anders.
-
-        This patch extends DRT accessibility tests to add the ability to
-        query the intValue, minValue, and maxValue of the focused element.
-
-        * DumpRenderTree/AccessibilityController.cpp:
-        (intValueOfFocusedElementCallback):
-        (minValueOfFocusedElementCallback):
-        (maxValueOfFocusedElementCallback):
-        (AccessibilityController::staticFunctions):
-        * DumpRenderTree/AccessibilityController.h:
-        * DumpRenderTree/mac/AccessibilityControllerMac.mm:
-        (AccessibilityController::intValueOfFocusedElement):
-        (AccessibilityController::minValueOfFocusedElement):
-        (AccessibilityController::maxValueOfFocusedElement):
-
-2008-07-07  Steve Falkenburg  <sfalken@apple.com>
-
-        Fix build.
-
-        * DumpRenderTree/win/ImageDiff.vcproj:
-
-2008-07-02  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        Allow tests to define JavaScript to execute when NPP_DestroyStream or
-        NPP_URLNotify is called.
-
-        Reviewed by Anders.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp: Add a new
-        property, "returnErrorFromNewStream." This is to support the test for
-        <rdar://5983747> Safari crashes trying to load the SilverLight plugin,
-        caused by WebKit calling NPP_DestroyStream after a plug-in returns an
-        error from NPP_NewStream.
-        (pluginGetProperty):
-        (pluginSetProperty):
-        (pluginAllocate):
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.h: Added new
-        members, onStreamDestroy and onURLNotify.
-        * DumpRenderTree/win/TestNetscapePlugin/main.cpp:
-        (NPP_New): Remove initialization of onStreamLoad; this was moved to
-        pluginAllocate. Look for new arguments onStreamDestroy and
-        onURLNotify, and store their values.
-        (NPP_Destroy): Free new members.
-        (executeScript): Code moved from onStreamLoad
-        (NPP_NewStream): If returnErrorFromNewStream has been set to true,
-        return a generic error code. If onStreamLoad is set, execute it as
-        JavaScript.
-        (NPP_DestroyStream): If onStreamDestroy is set, execute it as JS.
-        (NPP_URLNotify): Same, for onURLNotify.
-
-2008-07-02  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Mitz Pettel and John Sullivan
-
-        Add the ability to tell DRT to call stopLoading on a WebFrame inside of a didStartProvisionalLoadForFrame
-        load delegate.
-
-        Required to add a layout test for the fix for <rdar://problem/5549871>
-
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate webView:didStartProvisionalLoadForFrame:]): If stopProvisionalFrameLoads is set, call
-          [WebFrame stopLoading] to test for the crash reflected in 5549871
-
-        All of the following are infrastructure to add the layoutTestController.setStopProvisionalFrameLoads() call:
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (setStopProvisionalFrameLoadsCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::stopProvisionalFrameLoads):
-        (LayoutTestController::setStopProvisionalFrameLoads):
-
-2008-07-01  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Beth Dakin
-
-        Support ability to get width and height of an element through accessibility
-
-        * DumpRenderTree/AccessibilityController.cpp:
-        (widthOfFocusedElementCallback):
-        (heightOfFocusedElementCallback):
-        (AccessibilityController::staticFunctions):
-        * DumpRenderTree/AccessibilityController.h:
-        * DumpRenderTree/mac/AccessibilityControllerMac.mm:
-        (AccessibilityController::widthOfFocusedElement):
-        (AccessibilityController::heightOfFocusedElement):
-
-2008-06-30  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Beth Dakin
-
-        Support the ability to get the linked ui elements of an object
-
-        * DumpRenderTree/AccessibilityController.cpp:
-        (attributesOfLinkedUIElementsForFocusedElementCallback):
-        (AccessibilityController::staticFunctions):
-        * DumpRenderTree/AccessibilityController.h:
-        * DumpRenderTree/mac/AccessibilityControllerMac.mm:
-        (AccessibilityController::attributesOfLinkedUIElementsForFocusedElement):
-        (AccessibilityController::allAttributesOfFocusedElement):
-        (attributesOfElement):
-        (nsStringToJSStringRef):
-
-2008-06-29  Sam Weinig  <sam@webkit.org>
-
-        Fix Tiger build.
-
-        * DumpRenderTree/mac/EventSendingController.mm:
-        (eventTypeForMouseButtonAndAction):
-
-2008-06-27  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by darin.
-
-        Add multi-button mouseevent support to DRT
-        https://bugs.webkit.org/show_bug.cgi?id=15173
-
-        It's now possible to specify the mouse button with:
-        eventSender.mouseDown(1); eventSender.mouseUp(1); etc.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/mac/EventSendingController.h:
-        * DumpRenderTree/mac/EventSendingController.mm:
-        (+[EventSendingController isSelectorExcludedFromWebScript:]):
-        (+[EventSendingController webScriptNameForSelector:]):
-        (eventTypeForMouseButtonAndAction):
-        (-[EventSendingController updateClickCountForButton:]):
-        (-[EventSendingController mouseDown:]):
-        (-[EventSendingController mouseUp:]):
-        (-[EventSendingController mouseMoveToX:Y:]):
-        (-[EventSendingController contextClick]):
-
-2008-06-28  Nikolas Zimmermann  <zimmermann@kde.org>
-
-        Reviewed by Oliver.
-
-        Copy <test>-expected.png from the right location to /tmp/layout-test-results.
-        Use $expectedPixelDir instead of $expectedDir. Allows using SVG pixel tests again.
-
-        * Scripts/run-webkit-tests:
-
-2008-06-27  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Reviewed by Christian Dywan.
-
-        [Gtk] Initialize webview settings before running DRT tests
-        http://bugs.webkit.org/show_bug.cgi?id=19778
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (setDefaultsToConsistentStateValuesForTesting):
-        (main):
-
-2008-06-26  Darin Adler  <darin@apple.com>
-
-        * Scripts/check-for-weak-vtables: Fixed comment.
-
-2008-06-26  Darin Adler  <darin@apple.com>
-
-        * Scripts/check-for-weak-vtables: Added.
-
-2008-06-26  Beth Dakin  <bdakin@apple.com>
-
-        Reviewed by Sam.
-
-        Do not include AXPosition in the dump of all of the accessibility
-        attributes since it is screen-specific.
-
-        * DumpRenderTree/mac/AccessibilityControllerMac.mm:
-        (AccessibilityController::allAttributesOfFocusedElement):
-
-2008-06-26  Beth Dakin  <bdakin@apple.com>
-
-        Reviewed by Anders.
-
-        This is a speculative fix for the failing layout test on the build
-        bot. It seems that the problem that the Build Bot is having is
-        Tiger-specific. On Tiger, [NSValue description] was not very smart.
-        So I replaced our call to description with a hand-rolled equivalent
-        that will match on both platforms.
-
-        * DumpRenderTree/mac/AccessibilityControllerMac.mm:
-        (descriptionOfValue):
-
-2008-06-25  Beth Dakin  <bdakin@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        This patch adds support to the AccessibilityController to query the
-        following attributes specifically, without a full attribute dump:
-        AXRole, AXTitle, and AXDescription.
-
-        * DumpRenderTree/AccessibilityController.cpp:
-        (allAttributesForFocusedElementCallback):
-        (roleOfFocusedElementCallback):
-        (titleOfFocusedElementCallback):
-        (descriptionOfFocusedElementCallback):
-        (AccessibilityController::staticFunctions):
-        * DumpRenderTree/AccessibilityController.h:
-        * DumpRenderTree/mac/AccessibilityControllerMac.mm:
-        (AccessibilityController::allAttributesForFocusedElement):
-        (concatenateAttributeAndValue):
-        (AccessibilityController::roleOfFocusedElement):
-        (AccessibilityController::titleOfFocusedElement):
-        (AccessibilityController::descriptionOfFocusedElement):
-
-2008-06-24  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Stephanie Lewis.
-
-        - move the linker flags from the debug configuration in the project
-          to the shared configuration
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/mac/Configurations/DumpRenderTree.xcconfig:
-
-2008-06-24  Dan Bernstein  <mitz@apple.com>
-
-        - try to fix the Tiger build
-
-        * DumpRenderTree/mac/AccessibilityControllerMac.mm:
-
-2008-06-24  Sam Weinig and Beth Dakin  <bdakin@apple.com and sam@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Fix for <rdar://problem/5884881> Make DumpRenderTree support
-        accessibility tests
-
-        This patch adds some basic support for accessibility layout tests
-        on the Mac.
-
-        * DumpRenderTree/AccessibilityController.cpp: Added.
-        (AccessibilityController::AccessibilityController):
-        (AccessibilityController::~AccessibilityController):
-        (dumpCurrentAttributesCallback):
-        (AccessibilityController::makeWindowObject):
-        (AccessibilityController::getJSClass):
-        (AccessibilityController::staticFunctions):
-        * DumpRenderTree/AccessibilityController.h: Added.
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/mac/AccessibilityControllerMac.mm: Added.
-        (descriptionOfValue):
-        (AccessibilityController::dumpCurrentAttributes):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        * DumpRenderTree/mac/FrameLoadDelegate.h:
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate init]):
-        (-[FrameLoadDelegate webView:didClearWindowObject:forFrame:]):
-
-2008-06-24  John Sullivan  <sullivan@apple.com>
-
-        Reviewed by Dan Bernstein
-
-        * Scripts/extract-localizable-strings:
-        add UI_STRING_LOCALIZE_LATER, LPCTSTR_UI_STRING_LOCALIZE_LATER, and LOG_WARNING to the
-        list of debugging macros, to avoid noise when keeping the list of localized string
-        exceptions up to date
-
-2008-06-24  Dan Bernstein  <mitz@apple.com>
-
-        Rubber-stamped by Darin Adler.
-
-        - add a font family for testing font-weight
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Added linker
-        flags to create data sections for the WeightWatcher fonts.
-        * DumpRenderTree/fonts: Added.
-        * DumpRenderTree/fonts/WebKitWeightWatcher100.ttf: Added.
-        * DumpRenderTree/fonts/WebKitWeightWatcher200.ttf: Added.
-        * DumpRenderTree/fonts/WebKitWeightWatcher300.ttf: Added.
-        * DumpRenderTree/fonts/WebKitWeightWatcher400.ttf: Added.
-        * DumpRenderTree/fonts/WebKitWeightWatcher500.ttf: Added.
-        * DumpRenderTree/fonts/WebKitWeightWatcher600.ttf: Added.
-        * DumpRenderTree/fonts/WebKitWeightWatcher700.ttf: Added.
-        * DumpRenderTree/fonts/WebKitWeightWatcher800.ttf: Added.
-        * DumpRenderTree/fonts/WebKitWeightWatcher900.ttf: Added.
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (activateFonts): Renamed activateAhemFont to this and made it activate
-        the WeightWatcher fonts in addition to Ahem.
-        (prepareConsistentTestingEnvironment): Adjusted for the name change.
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (initialize): Added the WeightWatcher fonts.
-
-2008-06-20  Brent Fulgham  <bfulgham@gmail.com>
-
-        Reviewed by Darin Adler.
-
-        Extend the build-webkit (and set-webkit-configuration) script to
-        support Cairo-based webkit builds.  (see http://bugs.webkit.org/show_bug.cgi?17952)
-
-        * Scripts/build-webkit:  Add --cairo-win32 to the help message
-        * Scripts/webkitdirs.pm:  Extend the 'determinePassedConfiguration
-          subroutine to recognize the --cairo-win32 flag.  When present,
-          the build configuration is changed from Debug/Release to
-          Debug_Cairo/Release_Cairo.  This flag is only active when the
-          isCygwin() test is true.
-
-2008-06-17  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Justin Garcia.
-
-        - prefer Leopard results when running on Snow Leopard.
-
-        * Scripts/run-webkit-tests: Added a mapping of Snow Leopard to
-          mac-leopard.
-        * Scripts/webkitdirs.pm: Added isSnowLeopard().
-
-2008-06-15  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Updated for the latest round of renaming.
-
-2008-06-15  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Updated for the latest round of renaming.
-
-2008-06-15  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Updated for the latest round of renaming.
-
-2008-06-15  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Updated for the latest round of renaming.
-
-2008-06-15  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-file-rename: Updated.
-        * Scripts/do-webcore-rename: Updated for the latest round of renaming.
-
-2008-06-15  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-file-rename: Updated for the latest round of renaming.
-        * Scripts/do-webcore-rename: Tweaked and reorganized a bit.
-
-2008-06-15  Darin Adler  <darin@apple.com>
-
-        * Scripts/create-exports: Added.
-        * Scripts/do-file-rename: Added some planned renames.
-        * Scripts/do-webcore-rename: Updated for the latest round of renaming.
-
-2008-06-15  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Updated for the latest round of renaming.
-
-2008-06-15  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Oliver.
-
-        - rename testkjs to jsc
-
-        * Scripts/build-jsc: Copied from Scripts/build-testkjs.
-        * Scripts/build-testkjs: Removed.
-        * Scripts/run-javascriptcore-tests:
-        * Scripts/run-jsc: Copied from Scripts/run-testkjs.
-        * Scripts/run-sunspider:
-        * Scripts/run-testkjs: Removed.
-        * Scripts/sunspider-compare-results:
-
-2008-06-14  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Moved planned renames into a separate hash
-        from the actual renames. Removed many renames that are either done or
-        no longer planned.
-
-2008-06-14  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Fixed obvious typo.
-
-2008-06-13  Darin Adler  <darin@apple.com>
-
-        * Scripts/make-js-test-wrappers: Added three more exceptions.
-
-2008-06-10  Joerg Bornemann  <joerg.bornemann@trolltech.com>
-
-        Reviewed by Simon.
-
-        For the qmake based build make it possible to build against makespecs where
-        QMAKE_CC is defined in a configuration file included from qmake.conf.
-
-        * Scripts/webkitdirs.pm: Added support for include() statements in
-        qmake.conf.
-
-2008-06-09  Alp Toker  <alp@nuanti.com>
-
-        gcc3/autotools build fix. Add explicit -O2 -fno-strict-aliasing to
-        each of the tools since these are no longer set globally.
-
-        * GNUmakefile.am:
-
-2008-06-08  Darin Adler  <darin@apple.com>
-
-        * Scripts/make-js-test-wrappers: Added another exception.
-
-2008-06-07  Cameron Zwarich  <cwzwarich@uwaterloo.ca>
-
-        Reviewed by Timothy.
-
-        Remove the --squirrelfish option from SunSpider, as it is no longer needed.
-
-        * Scripts/run-sunspider:
-
-2008-06-05  Alp Toker  <alp@nuanti.com>
-
-        Build fix for r34387.
-
-        * GNUmakefile.am:
-
-2008-06-04  Cameron Zwarich  <cwzwarich@uwaterloo.ca>
-
-        Reviewed by Oliver.
-
-        Add an exception for Opcode.o to the global initializers check so that
-        we can dump instruction statistics in the JavaScript virtual machine.
-
-        * Scripts/check-for-global-initializers:
-
-2008-05-30  Steve Falkenburg  <sfalken@apple.com>
-
-        Generate an isolated COM manifest for registry free COM.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-
-2008-06-02  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by David Hyatt and Mitz.
-
-        <rdar://problem/5704119>
-        repro crash in WebCore::RenderPart::setWidget (plugin-related?)
-
-        Call -[WebView display] in the "plug-in" failed delegate method, simulating
-        the sheet that Safari puts up.
-
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        (-[ResourceLoadDelegate webView:plugInFailedWithError:dataSource:]):
-
-2008-05-30  Timothy Hatcher  <timothy@apple.com>
-
-        Made the starting line number of scripts be 1-based throughout the engine.
-        This cleans up script line numbers so they are all consistent now.
-
-        Reviewed by Oliver Hunt.
-
-        * DumpRenderTree/mac/ObjCController.m:
-        (runJavaScriptThread): Pass a line number of 1 instead of 0 to JSEvaluateScript.
-        * DumpRenderTree/pthreads/JavaScriptThreadingPthreads.cpp:
-        (runJavaScriptThread): Ditto.
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (runJavaScriptThread): Ditto.
-
-2008-05-29  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Fixed VCSUtils.pm to work with git repositories inside symlinks.
-
-        * Scripts/VCSUtils.pm: Compute a relative path from the git repository
-        root, instead of the root of the filesystem, to work around a bug in
-        abs2rel when traversing symlinked home directories.
-
-2008-05-29  Kevin Ollivier  <kevino@theolliviers.com>
-
-        Reviewed by Darin Adler.
-
-        Restore original behavior of isOSX() referring to the Mac port, not the OS itself.
-
-        https://bugs.webkit.org/show_bug.cgi?id=19311
-
-        * Scripts/webkitdirs.pm:
-
-2008-05-29  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Fix run-iexploder-tests and run-mangleme-tests to work with updated shared scripts and
-        configuration files.
-
-        * Scripts/run-iexploder-tests:
-        * Scripts/run-mangleme-tests:
-        Renamed runSafari to not conflict with the one in webkitdirs.
-        Added SSLCertificateFile option for httpd, as now needed.
-
-2008-05-27  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix. Update the sample app after wxWebFrame->wxWebBrowserShell rename.
-
-        * wx/browser/browser.cpp:
-        (MyApp::OnInit):
-
-2008-05-24  Andreia Gaita  <shana@isninja.com>
-
-        Reviewed by Alp Toker.
-
-        cygwin-downloader.py fixes.
-
-        Remove two non-working mirrors. Add a check for missing dependency
-        packages to avoid bailing out on an inconsistent Cygwin package list.
-
-        * CygwinDownloader/cygwin-downloader.py:
-
-2008-05-24  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Remove useQmake usage. QMake build doesn't support Gtk port
-        anymore.
-
-        Also fix 2 occurences of "Web Kit". Should be WebKit.
-
-        * Scripts/build-webkit:
-        * Scripts/run-javascriptcore-tests:
-        * Scripts/run-launcher:
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2008-05-22  Stephanie Lewis  <slewis@apple.com>
-
-        Reviewed by Dan.
-
-        implement the beforeUnload UI delegate so that DRT will dispatch beforeunload events.
-
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:runBeforeUnloadConfirmPanelWithMessage:initiatedByFrame:]):
-        * DumpRenderTree/win/UIDelegate.cpp:
-        (SearchableWebViewHost::runBeforeUnloadConfirmPanelWithMessage):
-
-2008-05-21  Adele Peterson  <adele@apple.com>
-
-        Reviewed by Adam.
-
-        DumpRenderTree support for <rdar://problem/5787733> fast/dom/HTMLDocument/hasFocus.html fails on Windows
-
-        * DumpRenderTree/win/UIDelegate.cpp:
-        (UIDelegate::webViewFocus): Added.
-        (UIDelegate::webViewUnfocus): Added.
-        * DumpRenderTree/win/UIDelegate.h:
-
-2008-05-21  Mark Rowe  <mrowe@apple.com>
-
-        Rubber-stamped by Stephanie Lewis.
-
-        Set the pass_through flag on Getopt so that extra arguments can be passed through to Safari,
-        rather than trigger an unknown argument message.  This allows run-webkit-tests to display results
-        once more.
-
-        * Scripts/run-safari:
-
-2008-05-21  Stephanie Lewis  <slewis@apple.com>
-
-        Reviewed by Maciej, Mark.
-
-        arch doesn't take arguments on tiger.  expand DRT timeout for guardMalloc.
-
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2008-05-20  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Stephanie Lewis.
-
-        Improve the behavior of run-webkit-tests with 64-bit WebKit by automatically inferring whether to run 64-bit.
-
-        If --64-bit is not passed to run-webkit-tests, attempt to guess whether we should run 64-bit.
-        This decision is made based on the 64-bitness of the built WebKit framework if it exists, and
-        can be manually overridden by passing --64-bit or --no-64-bit.  This removes the need to always
-        pass an argument to run-webkit-tests after having built with "make x86_64".
-
-        * Scripts/gdb-safari:
-        * Scripts/run-safari:
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm: Split the setting of the 64-bit flag, the determination of the
-        preferred architecture, and exporting of the environment variables for 'arch' out into
-        separate subroutines.
-
-2008-05-20  Mark Rowe  <mrowe@apple.com>
-
-        Fix "make x86_64" by adding x86_64 target to WebKitTools Makefile.
-
-        * Makefile:
-
-=== End merge of squirrelfish ===
-
-2008-04-14  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Oliver.
-
-        - added support for --ubench mode
-
-        * Scripts/run-sunspider:
-
-2008-03-26  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        --squirrelfish mode: pared down tests for squirrelfish to chew on.
-
-        * Scripts/run-sunspider:
-
-=== Start merge of squirrelfish ===
-
-2008-05-21  Darin Adler  <darin@apple.com>
-
-        * Scripts/make-js-test-wrappers: Added another exception.
-
-2008-05-19  Stephanie Lewis  <slewis@apple.com>
-
-        Reviewed by Adam.
-
-        Explicitly set run mode to 32bit unless overridden to avoid
-        confusion when running tests
-
-        * Scripts/build-dumprendertree:
-        * Scripts/gdb-safari:
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2008-05-16  Stephanie Lewis  <slewis@apple.com>
-
-        Reviewed by Steve.
-
-        Print out pending unload event count. Also print out main frame name to match Mac.
-
-        * DumpRenderTree/win/FrameLoadDelegate.cpp:
-        (descriptionSuitableForTestResult):
-        (FrameLoadDelegate::didFinishDocumentLoadForFrame):
-
-2008-05-16  Timothy Hatcher  <timothy@apple.com>
-
-        Remove the Drosera project, code and resources since it has been
-        replaced with the Web Inspector's debugger. Removes references to
-        Drosera in various scripts and makefiles.
-
-        Rubber-stamped by Mark Rowe.
-
-        * BuildSlaveSupport/build-launcher-app:
-        * Drosera/DebuggerDocument.cpp: Removed.
-        * Drosera/DebuggerDocument.h: Removed.
-        * Drosera/Drosera.icns: Removed.
-        * Drosera/DroseraWin.make: Removed.
-        * Drosera/English.lproj/Debugger.nib/classes.nib: Removed.
-        * Drosera/English.lproj/Debugger.nib/info.nib: Removed.
-        * Drosera/English.lproj/Debugger.nib/keyedobjects.nib: Removed.
-        * Drosera/English.lproj/MainMenu.nib/classes.nib: Removed.
-        * Drosera/English.lproj/MainMenu.nib/info.nib: Removed.
-        * Drosera/English.lproj/MainMenu.nib/keyedobjects.nib: Removed.
-        * Drosera/ForwardingHeaders/wtf/Assertions.h: Removed.
-        * Drosera/ForwardingHeaders/wtf/HashTraits.h: Removed.
-        * Drosera/ForwardingHeaders/wtf/Noncopyable.h: Removed.
-        * Drosera/ForwardingHeaders/wtf/OwnPtr.h: Removed.
-        * Drosera/ForwardingHeaders/wtf/Platform.h: Removed.
-        * Drosera/ForwardingHeaders/wtf/RetainPtr.h: Removed.
-        * Drosera/Images/Drosera.ico: Removed.
-        * Drosera/Images/SourceArrow.png: Removed.
-        * Drosera/Images/SourceArrowBlank.png: Removed.
-        * Drosera/Images/SourceArrowOpen.png: Removed.
-        * Drosera/Images/background_stripe.png: Removed.
-        * Drosera/Images/breakPoint.tif: Removed.
-        * Drosera/Images/breakPointDisabled.tif: Removed.
-        * Drosera/Images/breakpointeditor.png: Removed.
-        * Drosera/Images/close.tif: Removed.
-        * Drosera/Images/close_active.tif: Removed.
-        * Drosera/Images/close_hover.tif: Removed.
-        * Drosera/Images/console.png: Removed.
-        * Drosera/Images/continue.tif: Removed.
-        * Drosera/Images/fileIcon.jpg: Removed.
-        * Drosera/Images/finishFunction.tif: Removed.
-        * Drosera/Images/glossyFooterFill.tif: Removed.
-        * Drosera/Images/glossyHeader.png: Removed.
-        * Drosera/Images/glossyHeaderPressed.png: Removed.
-        * Drosera/Images/gradientBackground.png: Removed.
-        * Drosera/Images/gutter.png: Removed.
-        * Drosera/Images/navLeftDisabled.png: Removed.
-        * Drosera/Images/navLeftNormal.png: Removed.
-        * Drosera/Images/navLeftPressed.png: Removed.
-        * Drosera/Images/navRightDisabled.png: Removed.
-        * Drosera/Images/navRightNormal.png: Removed.
-        * Drosera/Images/navRightPressed.png: Removed.
-        * Drosera/Images/pause.tif: Removed.
-        * Drosera/Images/popUpArrows.png: Removed.
-        * Drosera/Images/programCounter.tif: Removed.
-        * Drosera/Images/programCounterBreakPoint.tif: Removed.
-        * Drosera/Images/programCounterBreakPointDisabled.tif: Removed.
-        * Drosera/Images/run.tif: Removed.
-        * Drosera/Images/siteCollapsed.tif: Removed.
-        * Drosera/Images/siteExpanded.tif: Removed.
-        * Drosera/Images/siteIcon.tif: Removed.
-        * Drosera/Images/small.ico: Removed.
-        * Drosera/Images/splitterBar.tif: Removed.
-        * Drosera/Images/splitterDimple.tif: Removed.
-        * Drosera/Images/step.tif: Removed.
-        * Drosera/Images/stepOut.tif: Removed.
-        * Drosera/Images/stepOver.tif: Removed.
-        * Drosera/Images/stop.tif: Removed.
-        * Drosera/Images/toolbarBackground.png: Removed.
-        * Drosera/Images/verticalSplitterBar.tiff: Removed.
-        * Drosera/Images/verticalSplitterDimple.tiff: Removed.
-        * Drosera/Makefile: Removed.
-        * Drosera/breakpointEditor.html: Removed.
-        * Drosera/config.h: Removed.
-        * Drosera/console.css: Removed.
-        * Drosera/console.html: Removed.
-        * Drosera/console.js: Removed.
-        * Drosera/debugger.css: Removed.
-        * Drosera/debugger.html: Removed.
-        * Drosera/debugger.js: Removed.
-        * Drosera/mac/DebuggerApplication.h: Removed.
-        * Drosera/mac/DebuggerApplication.mm: Removed.
-        * Drosera/mac/DebuggerClient.h: Removed.
-        * Drosera/mac/DebuggerClient.mm: Removed.
-        * Drosera/mac/DebuggerDocumentPlatform.mm: Removed.
-        * Drosera/mac/Drosera.xcodeproj/project.pbxproj: Removed.
-        * Drosera/mac/Info.plist: Removed.
-        * Drosera/mac/LauncherInfo.plist: Removed.
-        * Drosera/mac/Makefile: Removed.
-        * Drosera/mac/ServerConnection.h: Removed.
-        * Drosera/mac/ServerConnection.mm: Removed.
-        * Drosera/mac/launcher.m: Removed.
-        * Drosera/mac/main.m: Removed.
-        * Drosera/viewer.css: Removed.
-        * Drosera/viewer.html: Removed.
-        * Drosera/win/BaseDelegate.h: Removed.
-        * Drosera/win/DebuggerClient.cpp: Removed.
-        * Drosera/win/DebuggerClient.h: Removed.
-        * Drosera/win/DebuggerDocumentPlatform.cpp: Removed.
-        * Drosera/win/Drosera.cpp: Removed.
-        * Drosera/win/Drosera.h: Removed.
-        * Drosera/win/Drosera.vcproj/Drosera.rc: Removed.
-        * Drosera/win/Drosera.vcproj/Drosera.vcproj: Removed.
-        * Drosera/win/DroseraPrefix.cpp: Removed.
-        * Drosera/win/DroseraPrefix.h: Removed.
-        * Drosera/win/Info.plist: Removed.
-        * Drosera/win/ServerConnection.cpp: Removed.
-        * Drosera/win/ServerConnection.h: Removed.
-        * Drosera/win/resource.h: Removed.
-        * Makefile:
-        * Scripts/build-drosera: Removed.
-        * Scripts/gdb-drosera: Removed.
-        * Scripts/run-drosera: Removed.
-        * Scripts/run-drosera-nightly.cmd: Removed.
-        * Scripts/run-drosera.cmd: Removed.
-        * Scripts/webkitdirs.pm:
-
-2008-05-15  Stephanie Lewis  <slewis@apple.com>
-
-        Reviewed by Anders.
-
-        Dump the unload count for a frame after parsing is finished.
-
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate webView:didFinishDocumentLoadForFrame:]):
-
-2008-05-15  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reviewed by Dan Bernstein.
-
-        https://bugs.webkit.org/show_bug.cgi?id=10707
-        DumpRenderTree should not be able to access non-local resources
-
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        (-[ResourceLoadDelegate webView:resource:willSendRequest:redirectResponse:fromDataSource:]):
-        Block them, and complain.
-
-2008-05-15  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix. Update the version of libpng to download and instsall.
-
-        * wx/install-unix-extras:
-
-2008-05-14  Julien Chaffraix  <jchaffraix@webkit.org>
-
-        Reviewed by Eric.
-
-        - isDarwin() and isCygwin() returned an empty string if the platform equality check fails.
-          We now force the return value to be numeric.
-
-        - Removed platform checks as it was a work around the previous issue.
-
-        - Replaced isDarwin() by isOSX() as they have now the same behaviour.
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-
-2008-05-12  Adam Roben  <aroben@apple.com>
-
-        Support for testing NPN_PostURL
-
-        Reviewed by Anders Carlsson.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (toCString): Added this helper function.
-        (testPostURLFile): Added. Writes the passed-in content to the
-        passed-in file and calls NPN_PostURL with the passed-in URL and
-        target.
-        (pluginInvoke): Added a case for testPostURLFile.
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (followShortcuts): Changed to allow paths that don't yet exist.
-
-2008-05-12  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Minor cleanup of the DRT Xcode project.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:  Use GCC_OPTIMIZATION_LEVEL rather than
-        OPTIMIZATION_CFLAGS.  Don't include Info.plist in the "Copy Bundle Resources" build phase as it does
-        not need to be there.
-
-2008-05-12  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Adam.
-
-        Add support for testing application caches.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dumpRenderTree):
-        Empty the cache.
-
-        (resetWebViewToConsistentStateBeforeTesting):
-        Turn on support for the application cache.
-
-2008-05-09  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Anders Carlsson.
-
-        Update TestNetscapePlugIn to build 64-bit using the Cocoa event model.
-
-        It currently does not attempt to print events which means that plugins/mouse-events.html
-        will fail when run 64-bit.  All other tests that use this plugin pass.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (testGetIntIdentifier):
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.cpp:
-        (NPP_New):
-        (NPP_HandleEvent):
-
-2008-05-09  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Adam Roben
-
-        Explicitly call shutDownWebKit() before quitting.
-
-        * Drosera/win/Drosera.cpp:
-        (_tWinMain):
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (main):
-
-2008-05-09  Mark Rowe  <mrowe@apple.com>
-
-        Fix the Tiger build of Drosera.
-
-        * Drosera/config.h: Define BUILDING_ON_TIGER when building on Tiger.
-
-2008-05-09  Sam Weinig  <sam@webkit.org>
-
-        Rubber-stamped by Mark Rowe.
-
-        Remove the ENABLE_CROSS_DOCUMENT_MESSAGING #ifdefs.
-
-        * Scripts/build-webkit:
-
-2008-05-08  Mark Rowe  <mrowe@apple.com>
-
-        Another attempt at a Tiger build fix.
-
-        Use DumpRenderTreeMac.h rather than DumpRenderTree.h as DumpRenderTreePasteboard is not an Obj-C++ file.
-
-        * DumpRenderTree/mac/DumpRenderTreePasteboard.m:
-
-2008-05-08  Mark Rowe  <mrowe@apple.com>
-
-        Tiger build fix.  Include DumpRenderTree.h so that BUILDING_ON_TIGER will be defined.
-
-        * DumpRenderTree/mac/DumpRenderTreePasteboard.m:
-
-2008-05-08  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Oliver Hunt and Dan Bernstein.
-
-        Update DumpRenderTree to build 64-bit.
-
-        The three major changes here are:
-        1) Use NSInteger in the appropriate places.
-        2) Use ColorSync API that is available in 64-bit to switch display profiles.
-        3) Use method-swizzling to achieve similar results to class posing when using the Obj-C 2.0 runtime.
-
-        The build of DumpRenderTree will still fail in 64-bit for now as the TestNetscapePlugIn target also
-        needs updated to successfully build.
-
-        * DumpRenderTree/mac/Configurations/Base.xcconfig: Don't prevent Xcode from building 64-bit.
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (swizzleAllMethods):
-        (poseAsClass):
-        (prepareConsistentTestingEnvironment):
-        * DumpRenderTree/mac/DumpRenderTreeMac.h:
-        * DumpRenderTree/mac/DumpRenderTreePasteboard.h:
-        * DumpRenderTree/mac/DumpRenderTreePasteboard.m:
-        * DumpRenderTree/mac/DumpRenderTreeWindow.mm:
-        * DumpRenderTree/mac/PixelDumpSupportMac.mm:
-        (restoreColorSpace):
-        (failedGettingCurrentProfile):
-        (setDefaultColorProfileToRGB):
-
-2008-05-08  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Clean up Drosera so that it will build 64-bit.
-
-        * Drosera/mac/DebuggerApplication.mm:
-        (-[DebuggerApplication numberOfRowsInTableView:]): Use NSInteger rather than int.
-        (-[DebuggerApplication tableView:objectValueForTableColumn:row:]): Ditto.
-        * Drosera/mac/Drosera.xcodeproj/project.pbxproj: Use the default value for VALID_ARCHS.
-
-2008-05-07  David Kilzer  <ddkilzer@apple.com>
-
-        Use File::Find and Getopt::Long in make-js-test-wrappers
-
-        Reviewed by Darin Adler.
-
-        * Scripts/make-js-test-wrappers:
-        - Updated Apple copyright statement.
-        - Added command-line switch parsing and -h|--help switch.
-        - Allowed user to pass list of files/directories on which to do
-          a restricted search for TEMPLATE.html files.  The default
-          behavior is still to search the entire LayoutTests directory.
-        - Removed duplicate 'use strict' statement.
-        - Replaced use of `find` statements with File::Find::find().
-        - Remove unneeded chomp() calls now that we use File::Find.
-        (directoryFilter): Added.  Filters .svn directories when used
-        with File::Find::find().
-        (findTemplateFiles): Added.  Returns a list of TEMPLATE.html
-        files found.
-
-2008-05-05  Steve Falkenburg  <sfalken@apple.com>
-
-        Copy dependencies of ImageDiff, DumpRenderTree in post-build step.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/ImageDiff.vcproj:
-
-2008-05-05  Adele Peterson  <adele@apple.com>
-
-        Reviewed by Adam.
-
-        Look for the right ImageDiff executable for debug builds.
-
-        * Scripts/run-webkit-tests:
-
-2008-05-05  Darin Adler  <darin@apple.com>
-
-        * Scripts/run-webkit-tests: Ignore a Java leak showing up in the WebKit
-        leak tests.
-
-2008-05-05  Ariya Hidayat  <ariya.hidayat@trolltech.com>
-
-        Reviewed by Simon.
-
-        In the Qt's DumpRenderTree, adjust the web view properly (because W3C SVG
-        tests expect to be 480x360)
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::open):
-
-2008-05-02  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Adam Roben.
-
-        - add an option to svn-apply to set the reviewer name in change logs
-
-        * Scripts/svn-apply: Added a [-r|--reviewer name] option.
-
-2008-05-01  David Kilzer  <ddkilzer@apple.com>
-
-        Clean up configuration usage in run-webkit-tests
-
-        Reviewed by Adam.
-
-        * Scripts/run-webkit-tests: Parse configuration switches using
-        passedConfiguration() from webkitdirs.pm like every other script.
-        Note that we must still call setConfiguration() afterwards in
-        case the --configuration switch was used.  Use $configurationOption
-        when running build-dumprendertree instead of recreating the switch.
-
-2008-04-29  Adam Roben  <aroben@apple.com>
-
-        Restore the beloved COMPtr::operator&
-
-2008-04-29  Adam Roben  <aroben@apple.com>
-
-        Windows build fixes
-
-        Replace COMPtr::operator& with COMPtr::adoptionPointer.
-
-2008-04-25  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Fix run-webkit-tests --threading
-        and provisionally fix <https://bugs.webkit.org/show_bug.cgi?id=18661>
-        Proxy server issue in Sunday's Nightly
-
-        * DumpRenderTree/pthreads/JavaScriptThreadingPthreads.cpp:
-        (runJavaScriptThread):
-        (startJavaScriptThreads):
-        (stopJavaScriptThreads):
-        Spawned threads were immediately detached, unlike the original ones, so joining them
-        made no sense. Now, all threads are created detached, and stopJavaScriptThreads() just
-        waits for them all to exit.
-
-2008-04-28  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Reviewed by Simon.
-
-        Reset dumping resource load callbacks to false for the next test
-
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::reset):
-
-2008-04-28  Tor Arne Vestbø  <tavestbo@trolltech.com>
-
-        Reviewed by Simon.
-
-        Adapt to the latest API changes in WebKit/qt/Api.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        * DumpRenderTree/qt/jsobjects.cpp:
-
-2008-04-26  Robin Dunn  <robin@alldunn.com>
-
-        Reviewed by Kevin Ollivier.
-
-        Delete the DerivedSources after make clean has been done so that the DerivedSources
-        don't get re-created. Also, use the proper extension for the Win wxPython extension.
-
-        https://bugs.webkit.org/show_bug.cgi?id=18756
-
-        * wx/build-wxwebkit:
-
-2008-04-26  Adam Barth <hk9565@gmail.com>
-
-        Reviewed by Adam Roben and Sam Weinig.
-
-        Updates LayoutTestController to use host instead of domain.
-
-        Collin Jackson <collinj-webkit@collinjackson.com> also contributed to this patch.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setDatabaseQuota):
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:frame:exceededDatabaseQuotaForSecurityOrigin:database:]):
-
-2008-04-26  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix. Need the latest libpng. (Somehow my initial test passed without it.)
-
-        * wx/install-unix-extras:
-
-2008-04-26  Robin Dunn  <robin@alldunn.com>
-
-        Reviewed by Kevin Ollivier.
-
-        Allow the user to set the path to SWIG using an environment variable.
-
-        https://bugs.webkit.org/show_bug.cgi?id=18660
-
-        * wx/build-wxwebkit:
-
-2008-04-26  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix. Download the latest libpng version for building the
-        dependencies.
-
-        * wx/install-unix-extras:
-
-2008-04-25  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Reviewed by Simon.
-
-        Implement dumping of resource load callbacks to pass http/tests/xmlhttprequest/abort-should-cancel-load.html
-
-        Similar to Editing and Frameloading we do the dumping within WebCore
-
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::dumpResourceLoadCallbacks):
-        * DumpRenderTree/qt/jsobjects.h:
-
-2008-04-24  Jan Michael Alonzo  <jmalonzo@unpluggable.com>
-
-        Reviewed by Maciej Stachowiak.
-
-        http://bugs.webkit.org/show_bug.cgi?id=18485
-        Typo and documentation fix for build-webkit
-
-        * Scripts/build-webkit:
-
-2008-04-24  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam.
-
-        Don't call fprintf from the signal handler.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (crashHandler):
-
-2008-04-23  Adam Roben  <aroben@apple.com>
-
-        Make crashes be reported as crashes, not hangs
-
-        Reviewed by David Kilzer.
-
-        * Scripts/run-webkit-tests:
-        (top level): Use the new status field of the output from
-        readFromDumpToolWithTimer to determine if the test crashed or hung.
-        (sub readFromDumpToolWithTimer):
-          - If we fail to read a line and $! is not EAGAIN, then we've crashed
-            and should not try to read any more.
-          - Changed the timedout field to a more general status field.
-
-2008-04-22  David Kilzer  <ddkilzer@apple.com>
-
-        Bug 18683: update-webkit returns 0 even if it fails
-
-        <https://bugs.webkit.org/show_bug.cgi?id=18683>
-
-        Reviewed by Mitz Pettel.
-
-        * Scripts/update-webkit:
-        (runSvnUpdate): Die if close() fails.
-
-2008-04-21  Adam Roben  <aroben@apple.com>
-
-        Flush stdout/stderr after printing every #EOF separator
-
-        This fixes a hang when running the pixel tests on Windows
-
-        Reviewed by Mitz Pettel.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (dump):
-        (main): We don't have to flush stdout/stderr in the arguments loop
-        anymore, as runTest flushes for us.
-
-2008-04-21  Adam Roben  <aroben@apple.com>
-
-        Fix pixel tests
-
-        * Scripts/run-webkit-tests:
-        (sub readFromDumpToolWithTimer): Use readline instead of read to
-        ensure that we don't read past the #EOF marker.
-
-2008-04-21  Holger Hans Peter Freyther  <holger.freyther@trolltech.com>
-
-        Reviewed by Simon.
-
-        Build fix for Qt 4.3
-
-        * When building WebCore/internal make sure the QT_[BEGIN,END]_NAMESPACE is
-        always defined. Do this by adding defines to the compiler line
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-
-2008-04-19  Mike Hommey  <glandium@debian.org>
-
-        Reviewed by Alp Toker.
-
-        Don't build GtkLauncher and DumpRenderTree with rpath.
-
-        * GNUmakefile.am:
-
-2008-04-18  Jan Michael Alonzo  <jmalonzo@unpluggable.com>
-
-        Reviewed by Alp Toker.
-
-        http://bugs.webkit.org/show_bug.cgi?id=16620
-        [GTK] Autotools make dist and make check support
-
-        Cleanups.
-
-        * GNUmakefile.am:
-
-2008-04-18  Adam Roben  <aroben@apple.com>
-
-        Drop the hang timer to 30 seconds
-
-        This matches what DRT/mac was using.
-
-        Reviewed by Mitz Pettel.
-
-        * Scripts/run-webkit-tests:
-
-2008-04-18  Adam Roben  <aroben@apple.com>
-
-        Get rid of DRT's Watchdog
-
-        run-webkit-tests now detects hangs and samples DRT as needed.
-
-        Reviewed by Mitz Pettel.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Removed
-        Watchdog* files from the project.
-        * DumpRenderTree/Watchdog.cpp: Removed.
-        * DumpRenderTree/Watchdog.h: Removed.
-        * DumpRenderTree/mac/DumpRenderTree.mm: Removed uses of Watchdog
-        (dumpRenderTree):
-        (runTest):
-        * DumpRenderTree/mac/WatchdogMac.h: Removed.
-        * DumpRenderTree/mac/WatchdogMac.mm: Removed.
-        * Scripts/run-webkit-tests:
-        (sub testCrashedOrTimedOut): Call sampleDumpTool() if we timed out.
-        (sub sampleDumpTool): Added. Writes a sample report to
-        ~/Library/Logs/DumpRenderTree/HangReport.txt.
-
-2008-04-18  Simon Hausmann  <hausmann@webkit.org>
-
-        Reviewed by Holger.
-
-        Adapt to the API changes in WebKit/qt
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::WebPage::WebPage):
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::initJSObjects):
-        (WebCore::DumpRenderTree::dumpFramesAsText):
-        (WebCore::DumpRenderTree::dump):
-
-2008-04-17  Adam Roben  <aroben@apple.com>
-
-        Fix many tests on Windows
-
-        * Scripts/run-webkit-tests:
-        (readFromDumpToolWithTimer):
-         - Use read instead of sysread to ensure that we don't interfere with
-           other uses of buffered IO in this script.
-        (setFileHandleNonBlocking): Actually set the filehandle to blocking
-        when specified.
-
-2008-04-17  Adam Roben  <aroben@apple.com>
-
-        Fix ~10 tests
-
-        * Scripts/run-webkit-tests: Only remove the newline after #EOF, not
-        whatever newline happens to be at the end of what we've read.
-
-2008-04-17  Adam Roben  <aroben@apple.com>
-
-        Remove DRT/win's hang timer
-
-        run-webkit-tests takes care of this for us now
-
-        Reviewed by Anders Carlsson.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-
-2008-04-17  Adam Roben  <aroben@apple.com>
-
-        Don't wait for the hang timer twice in the case of a hang
-
-        Previously we'd wait for a hang while reading both stdout and stderr
-        from DRT. Now we'll only wait for one or the other.
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/run-webkit-tests:
-        (top level): Don't wait for stderr to time out if stdout already timed
-        out.
-        (readFromDumpToolWithTimer): If $dontWaitForTimeOut is true, quit
-        after the first read that returns no data.
-
-2008-04-17  Adam Roben  <aroben@apple.com>
-
-        Don't throw away the output from timed out tests
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/run-webkit-tests:
-        (top level): Updated for changes to readFromDumpToolWithTimer.
-        (readFromDumpToolWithTimer): Return a hash that contains both the
-        output and whether or not the test timed out.
-
-2008-04-17  Adam Roben  <aroben@apple.com>
-
-        Make the hang timer 60 seconds
-
-        * Scripts/run-webkit-tests:
-
-2008-04-17  Adam Roben  <aroben@apple.com>
-
-        Get rid of carriage returns in DRT/win's stderr
-
-        Reviewed by Eric Seidel.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (main): Mark stderr as binary like we already do for stdout.
-
-2008-04-17  Adam Roben  <aroben@apple.com>
-
-        Fix Bug 17678: run-webkit-tests should have a watchdog timer (and
-        timeout long tests)
-
-        <https://bugs.webkit.org/show_bug.cgi?id=17678>
-
-        We now abort tests that take longer than 60 seconds to produce output.
-        This matches the watchdog timer in DRT/mac and DRT/win (which we can
-        now remove).
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/run-webkit-tests:
-        (top level): Read DRT's output using the new readFromDumpToolWithTimer
-        subroutine. If readFromDumpToolWithTimer returns undefined it means
-        the test timed out, so we register the test as a hang and move on.
-        (sub testCrashedOrTimedOut): Renamed from testCrashed. Now handles
-        both crashed and timed out tests. If the test timed out, we kill DRT
-        before returning.
-        (sub linksForTimedOutTest): Added. We don't have any output to link to for
-        tests that timed out.
-        (sub recordActualResultsAndDiff): Don't call length on undefined.
-        (sub readFromDumpToolWithTimer): Added. Performs non-blocking reads
-        from a filehandle until an #EOF is reached or
-        $maximumSecondsWithoutOutput have elapsed.
-        (sub setFileHandleNonBlocking): Marks a filehandle as blocking or
-        non-blocking.
-
-2008-04-17  Adam Roben  <aroben@apple.com>
-
-        Refactor test results page generation
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/run-webkit-tests:
-        (sub htmlForResultsSection): Added. Takes a set of tests, a
-        description, and a subroutine to generate the links for each test, and
-        creates a HTML string containing a table of the tests and their
-        links.
-        (sub linksForExpectedAndActualResults): Added. Replaces the
-        htmlForExpectedAndActualResults subroutine.
-        (sub linksForMismatchTest): Added.
-        (sub linksForCrashOrErrorTest): Added.
-        (sub linksForNewTest): Added.
-
-2008-04-17  Adam Roben  <aroben@apple.com>
-
-        Print the extension for all tests in the test results page
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/run-webkit-tests:
-
-2008-04-17  Adam Roben  <aroben@apple.com>
-
-        Move code that counts finished tests into a subroutine
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/run-webkit-tests:
-        (sub countFinishedTest): Added.
-
-2008-04-17  Adam Roben  <aroben@apple.com>
-
-        Move code that handles a crash into a subroutine
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/run-webkit-tests:
-        (sub testCrashed): Added.
-
-2008-04-17  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by hyatt.
-
-        Rename RenderView to RenderViewport in the next rename patch.
-
-        * Scripts/do-webcore-rename:
-
-2008-04-17  Mario Bensi  <mbensi@pleyo.com>
-
-        Reviewed by Alp Toker.
-
-        http://bugs.webkit.org/show_bug.cgi?id=18543
-        DumpRenderTree gtk freeze
-
-        fix DumpRenderTree gtk freeze
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (dump):
-
-2008-04-15  Anders Carlsson  <andersca@apple.com>
-
-        Add missing ;
-
-        * Scripts/build-webkit:
-
-2008-04-15  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Adam.
-
-        Add ENABLE_OFFLINE_WEB_APPLICATIONS to FEATURE_DEFINES.
-
-        * Scripts/build-webkit:
-
-2008-04-15  Andre Poenitz  <andre.poenitz@trolltech.com>
-
-        Reviewed by Simon.
-
-        Fix compilation with Qt namespaces
-
-        Qt can be configured to have all of its classes inside a specified namespaces.
-        This is for example used in plugin/component environments like Eclipse.
-
-        This change makes it possible to let the Qt port compile against a namespaced
-        Qt by the use of macros Qt provides to properly forward declare Qt classes in
-        the namespace.
-
-        * DumpRenderTree/qt/DumpRenderTree.h:
-
-2008-04-08  Kevin Ollivier  <kevino@theolliviers.com>
-
-        Reviewed by Darin Adler.
-
-        Add a script that propagates any file changes made to the Bakefiles
-        over to GTK and Qt build systems. Still needs to be wired into
-        those ports though.
-
-        * Scripts/update-sources-list.py: Added.
-
-2008-04-08  Mark Rowe  <mrowe@apple.com>
-
-        Clean up after Brady.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm: Add an include so that NSInteger can be found.
-
-2008-04-08  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Mitzpettel
-
-        Fixed http://bugs.webkit.org/show_bug.cgi?id=18302
-        -WebArchive subresources dump in random order, intermittent failures
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (compareResourceURLs): Sorting function based on the resource URLs
-        (serializeWebArchiveToXML): Sort the subresource array
-
-2008-04-07  Brady Eidson  <beidson@apple.com>
-
-        OMG, BUILD - please!
-
-        * Scripts/build-webkit:
-
-2008-04-03  Holger Hans Peter Freyther  <holger.freyther@trolltech.com>
-
-        Reviewed by Simon.
-
-        * Enable running http tests for Qt again. Failing tests can be put into the skipped list.
-        * Running these tests on windows and other platforms might need some work.
-
-        * Scripts/run-webkit-tests:
-
-2008-04-03  Holger Hans Peter Freyther  <holger.freyther@trolltech.com>
-
-        Reviewed by Simon.
-
-        * For the http tests we need the output of the FrameLoaderClient. The QtWebKit API
-        is not exporting enough to create the output in DRT itself. Settle with the approach
-        Lars has taken for the Editing support and add branches to our FrameLoaderClient code.
-        * run-webkit-tests http/tests(/loading) can now be executed.
-        * For tests in loading/ directories we are going to throw away the dirty
-        QWebPage to start with something clean.
-
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-
-2008-04-03  Holger Hans Peter Freyther  <holger.freyther@trolltech.com>
-
-        Reviewed by Simon.
-
-        * Treat http and https as special URLs as well. Change the main.cpp and
-        DumpRenderTree.cpp to handle http and https URIs as input.
-        * I'm not doing the clean up and merging of these two checks now.
-
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::readStdin):
-        * DumpRenderTree/qt/main.cpp:
-        (main):
-
-2008-04-03  Holger Hans Peter Freyther  <holger.freyther@trolltech.com>
-
-        Reviewed by Simon.
-
-        * Remove dumpFrameLoadCallbacks from simple-subframe.html because it is
-        located in a directory with the name "loading". And this will autoamtically
-        enable dumping.
-        * Remove this method from the LayoutTestController as it is unused now and this
-        avoids adding it to the DRT of the Qt port.
-
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setPrivateBrowsingEnabledCallback):
-
-2008-04-01  Christian Dywan  <christian@imendio.com>
-
-        Build fix for GCC 4.3.
-
-        * DumpRenderTree/gtk/WorkQueueItemGtk.cpp: include string.h
-
-2008-04-01  Simon Hausmann  <hausmann@webkit.org>
-
-        Reviewed by Holger.
-
-        Fix Qt DRT run by also printing EOF on stderr, as expected by
-        run-webkit-tests.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::dump):
-
-2008-03-31  Julien Chaffraix  <julien.chaffraix@gmail.com>
-
-        Reviewed by Darin Adler.
-
-        Bug 17665: determineSourceDir() dies if $sourceDir has a trailing backslash
-
-        Remove trailing '/' in $sourceDir in determineSourceDir().
-
-        Fix suggested by Dmitriy Kazachkov.
-
-        * Scripts/webkitdirs.pm:
-
-2008-03-29  Adam Roben  <aroben@apple.com>
-
-        Update for rename of an IWebViewPrivate method
-
-        Reviewed by Mitz Pettel.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (createWebViewAndOffscreenWindow):
-
-2008-03-26  Antti Koivisto  <antti@apple.com>
-
-        Reviewed by Anders.
-
-        Enable SVG animation support by default.
-
-        * Scripts/build-webkit:
-
-2008-03-25  Adam Roben  <aroben@apple.com>
-
-        Windows build fix
-
-        * DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin.vcproj:
-        Add $(WebKitLibrariesDir)\include to the include path so we can find
-        stdint.h there.
-
-2008-03-24  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Mark.
-
-        Clean up SVG features message to be less confusing.
-
-        * Scripts/build-webkit:
-
-2008-03-24  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Dave Hyatt.
-
-        Add EventSender.zoomPageIn/zoomPageOut support to DRT.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/mac/EventSendingController.mm:
-        (+[EventSendingController isSelectorExcludedFromWebScript:]):
-        (-[EventSendingController zoomPageIn]):
-        (-[EventSendingController zoomPageOut]):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/win/EventSender.cpp:
-        (textZoomInCallback):
-        (textZoomOutCallback):
-        (zoomPageInCallback):
-        (zoomPageOutCallback):
-
-2008-03-24  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        - update bisect-builds for Safari 3.1
-
-        * Scripts/bisect-builds: Added Safari 3.1 and the corresponding minimal
-        revision, r29711.
-
-2008-03-21  Rodney Dawes  <dobey@wayofthemonkey.com>
-
-        Reviewed by Holger.
-
-        http://bugs.webkit.org/show_bug.cgi?id=17981
-
-        Add webcore and javascriptcore cppflags to programs' _CPPFLAGS.
-
-        * GNUmakefile.am:
-
-2008-03-21  Adam Roben  <aroben@apple.com>
-
-        Remove a non-working mirror from cygwin-downloader and add the ruby package
-
-        * CygwinDownloader/cygwin-downloader.py:
-        * CygwinDownloader/cygwin-downloader.zip: Updated.
-
-2008-03-20  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Ensure that the defines generated for FEATURE_DEFINES are sorted so that they will match the default settings of each project.
-        This will prevent the world from being rebuilt if you happen to switch between building in Xcode and with build-webkit on the
-        command-line.
-
-        * Scripts/build-webkit:
-
-2008-03-17  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Dan Bernstein.
-
-        Fix bogus argCount check breaking plugin test.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-
-2008-03-17  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by darin.
-
-        Cleanup PluginObject.cpp and add support for testing
-        converting from int -> identifier -> string
-        and from string -> identifier -> int
-        as well as round-tripping ints and stings through identifiers
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (pluginGetProperty):
-        (pluginSetProperty):
-        (testDOMAccess):
-        (stringVariantToIdentifier):
-        (int32VariantToIdentifier):
-        (doubleVariantToIdentifier):
-        (variantToIdentifier):
-        (testIdentifierToString):
-        (testIdentifierToInt):
-        (testCallback):
-        (getURL):
-        (removeDefaultMethod):
-        (getURLNotify):
-        (testInvokeDefault):
-        (destroyStream):
-        (testEnumerate):
-        (testGetIntIdentifier):
-        (testGetProperty):
-        (testEvaluate):
-        (testGetPropertyReturnValue):
-        (pluginInvoke):
-        (pluginInvokeDefault):
-        (pluginInvalidate):
-        (pluginAllocate):
-        (pluginDeallocate):
-        (handleCallback):
-
-2008-03-16  Kevin Ollivier  <kevino@theolliviers.com>
-
-        Rubber stamped by Darin Adler.
-
-        Add set-webkit-configuration support for wx port, and centralize
-        build dir location setting.
-
-        http://bugs.webkit.org/show_bug.cgi?id=17790
-
-        * wx/browser/browser.bkl:
-        * wx/build-wxwebkit:
-
-2008-03-15  Darin Adler  <darin@apple.com>
-
-        * Scripts/commit-log-editor: Include the name line of the change log entry.
-        A long time ago I designed this script to not include the name because I
-        thought it was redundant (same as the name of the person checking in), but
-        nowadays it's more common for someone to check something in done by someone
-        else.
-
-        * Scripts/do-webcore-rename: Added some more planned renames and removed
-        some that were already done "by hand".
-
-2008-03-13  Brent Fulgham  <bfulgham@gmail.com>
-
-        Reviewed by Darin Adler.
-
-        Correct paths to vsprops files so they use the environment
-        variable, rather than hard-coded path.
-        http://bugs.webkit.org/show_bug.cgi?id=17797.
-
-        * WinLauncher/WinLauncher.vcproj:  Correct paths to vsprops.
-
-2008-03-12  Steve Falkenburg  <sfalken@apple.com>
-
-        VSExpress build fix
-
-        * WinLauncher/WinLauncher.vcproj:
-
-2008-03-12  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Reviewed by Alp Toker.
-
-        Run testkjs in the correct productsDir in the GTK+ port.
-
-        * Scripts/run-javascriptcore-tests:
-
-2008-03-11  Brent Fulgham  <bfulgham@gmail.com>
-
-        Reviewed by Adam Roben.
-
-        Enabled WinLauncher as part of normal Windows build.
-        http://bugs.webkit.org/show_bug.cgi?id=17715.
-
-        * WinLauncher/WinLauncher.vcproj: Update to use vsprops so that
-          it can find the proper libraries to link against.
-
-2008-03-10  Julien Chaffraix  <julien.chaffraix@gmail.com>
-
-        Reviewed and landed by Darin Adler.
-
-        http://bugs.webkit.org/show_bug.cgi?id=17581
-        Bug 17581: Use of uninitialized value in string ne at WebKitTools/Scripts/run-webkit-tests line 1576.
-
-        Remove the previous warning which occurs when the --random option is used.
-
-        * Scripts/run-webkit-tests: verify that $component[0] is defined before checking for
-        its inequality
-
-2008-03-07  Simon Hausmann  <hausmann@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Done with Lars.
-
-        Ported the netscape test plugin to QWebPluginFactory.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::WebPage::WebPage):
-        * DumpRenderTree/qt/main.cpp:
-        * DumpRenderTree/qt/testplugin.cpp:
-        (TestPlugin::plugins):
-        (TestPlugin::create):
-        * DumpRenderTree/qt/testplugin.h:
-
-2008-03-09  Steve Falkenburg  <sfalken@apple.com>
-
-        Stop Windows build if an error occurs in a prior project.
-
-        Rubber stamped by Darin Adler.
-
-        * Drosera/win/Drosera.vcproj/Drosera.vcproj:
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/ImageDiff.vcproj:
-        * DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin.vcproj:
-
-2008-03-08  Julien Chaffraix  <julien.chaffraix@gmail.com>
-
-        Reviewed by Mark Rowe.
-
-        DRT build fix for Tiger.
-
-        * DumpRenderTree/mac/DumpRenderTreeMac.h: Define BUILDING_ON_TIGER.
-
-2008-03-07  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        Fix WebKit build with GCC 4.2.
-
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm: Use correct argument type in method signature.
-
-2008-03-07  Stephanie Lewis <slewis@apple.com>
-
-        Reviewed by Oliver.
-
-        Add Windows part of <rdar://problem/5693690>
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (dump):
-        (main):
-
-2008-03-07  Alp Toker  <alp@atoker.com>
-
-        Back out the r30818, r30819 build fix attempts now the GTK+ build
-        server has been upgraded.
-
-        * Scripts/webkitdirs.pm:
-
-2008-03-07  Stephanie Lewis <slewis@apple.com>
-
-        Reviewed by Geoff.
-
-        <rdar://problem/5693690> run-webkit-tests swallows STDERR output, including WebCore LEAK messages
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dump): push EOF to stderr after every test
-        * Scripts/run-webkit-tests: collect stderr output and print it
-
-2008-03-07  Steve Falkenburg  <sfalken@apple.com>
-
-        Get pdevenv working with Visual Studio Express.
-
-        Reviewed by Adam.
-
-        * Scripts/pdevenv:
-
-2008-03-06  Adele Peterson  <adele@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Updated for testing <rdar://problem/5785895> Implement hasFocus() for HTMLDocument (HTML5)
-
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webViewFocus:]): Remove duplicate code that was also in LayoutTestController::setWindowIsKey
-        (-[UIDelegate webViewUnfocus:]): Added.  In Safari, the default is to focus another window if there is one.
-         To easily test cases where the window is unfocused, I made this just call setWindowIsKey(false).
-
-2008-03-06  Matt Lilek  <webkit@mattlilek.com>
-
-        Reviewed by Adam Roben.
-
-        Bug 17691: REGRESSION: FindSafari doesn't work
-        http://bugs.webkit.org/show_bug.cgi?id=17691
-
-        Swap my change from r30394 to use the Release libraries instead of Debug
-        since some machines don't have the Debug version.
-
-        * FindSafari/FindSafari.vcproj:
-
-2008-03-06  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Sam and Tim.
-
-        <rdar://5631450> Drosera: breakpoint indicators disappear after the
-        script is finished running.
-        - If there is a pre-existing breakpoint on a line when the file is
-        updated we need to redraw it.
-
-        * Drosera/debugger.js:
-
-2008-03-06  Brady Eidson  <beidson@apple.com>
-
-        Tiger build fix...?
-
-        * DumpRenderTree/mac/WatchdogMac.mm:
-
-2008-03-06  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Darin
-
-        Added a cross-platform Watchdog thread to DRT.
-
-        The current watchdog in both DRTWin and DRTMac is Timer based.  Therefore, deadlocks and long running
-        main thread hangs still affect DRT.
-
-        By placing the watchdog on a thread and having DRT "check in" after each test, long-running hangs
-        and true deadlocks can be caught.
-
-        There is one hook for platform specific code.  As I did my development and testing on Mac, and Mac has
-        `sample` available, the Mac implementation of this hook samples the process before it is killed.
-
-        I arbitrarily chose 30 seconds as the timeout for now - this can be tweaked easily if we find a need.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/mac/Configurations/Base.xcconfig: Added LINKER_DISPLAYS_MANGLED_NAMES
-
-        * DumpRenderTree/ForwardingHeaders/wtf/Locker.h: Added.
-        * DumpRenderTree/ForwardingHeaders/wtf/Threading.h: Added.
-
-        * DumpRenderTree/Watchdog.cpp: Added.
-        (Watchdog::Watchdog):
-        (Watchdog::~Watchdog):
-        (Watchdog::start):
-        (Watchdog::stop):
-        (Watchdog::checkIn):
-        (Watchdog::setWatchdogInterval):
-        (Watchdog::handleHang):
-        (Watchdog::watchdogThreadStart):
-        (Watchdog::watchdogThread):
-        * DumpRenderTree/Watchdog.h: Added.
-
-        * DumpRenderTree/mac/WatchdogMac.h: Added.
-        * DumpRenderTree/mac/WatchdogMac.mm: Added.
-        (WatchdogMac::handleHang): Sample the process and write it out to a file
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dumpRenderTree): Setup and start the watchdog before running any tests
-        (runTest): Checkin with the watchdog after each test
-
-2008-03-05  Alp Toker  <alp@atoker.com>
-
-        Attempt to get the autotools build working again on the bot with
-        build-webkit.
-
-        Force the use of /bin/bash since we seem to have bash-isms in the
-        configure script right now.
-
-        * Scripts/webkitdirs.pm:
-
-2008-03-05  Alp Toker  <alp@atoker.com>
-
-        Re-attempt to switch to the autotools build system for GTK+.
-
-        Change scripts to continue when distclean fails.
-
-        * Scripts/webkitdirs.pm:
-
-2008-03-05  Alp Toker  <alp@atoker.com>
-
-        Force qmake for the GTK+ build until we get the build bot to succeed
-        with autotools (currently dies at make distclean)
-
-        * Scripts/webkitdirs.pm:
-
-2008-03-04  Alp Toker  <alp@atoker.com>
-
-        Reviewed by Mark Rowe.
-
-        Switch the default GTK+ build system from qmake to autotools.
-
-        qmake can still be used by defining WEBKIT_BUILD_SYSTEM=qmake
-
-        * Scripts/build-webkit:
-        * Scripts/run-launcher:
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2008-03-04  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        * Scripts/do-webcore-rename: Update renaming plan.
-
-2008-03-02  Brent Fulgham  <bfulgham@gmail.com>
-
-        Reviewed by Alp Toker.
-
-        Remove some needless LIBS.
-
-        * GNUmakefile.am:
-
-2008-03-02  Alp Toker  <alp@atoker.com>
-
-        Reviewed by Mark Rowe.
-
-        Split the WebKit GTK+ build out of the WebCore build and change the
-        shared object name to match the package name.
-
-        * GNUmakefile.am:
-
-2008-03-01  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Tim Hatcher.
-
-        Update Xcode configuration to support building debug and release from the mysterious future.
-
-        * DumpRenderTree/mac/Configurations/Base.xcconfig:
-
-2008-02-29  David Kilzer  <ddkilzer@apple.com>
-
-        Pass the correct configuration switch (--Debug|--Release) to build-testkjs.
-
-        Reviewed by Dan.
-
-        Originally broken in r26838.
-
-        * Scripts/run-javascriptcore-tests: Push configuration switch onto @xcodeArgs
-        not local, unused @args variable.
-
-2008-02-29  David Kilzer  <ddkilzer@apple.com>
-
-        Bug 15754: webarchive layout tests fail when WebKit directory path contains symlinks
-
-        <http://bugs.webkit.org/show_bug.cgi?id=15754>
-
-        Reviewed by Geoff and Darin.
-
-        We were using -[NSFileManager currentDirectoryPath] to get the current working directory,
-        then removing that path from all file:/// URLs in the WebArchive output so these tests
-        would pass no matter where they were run.
-
-        The problem was that -[NSFileManager currentDirectoryPath] resolves symlinks in the
-        current working directory, but the WebArchive does not.  This left the current working
-        directory in all file:/// URLs in the test output, and thus all tests failed, for any
-        developer that used symlinks to get to their WebKit source directory.
-
-        The fix is to look backwards for "/LayoutTests/" in the URL we're passed, and simply
-        remove the current working directory path (no matter what it is) after "file://" but
-        before "/LayoutTests/".
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (normalizeWebResourceURL): Removed unused oldURLBase argument.  We now replace the
-        current working directory as described above.
-        (convertWebResourceResponseToDictionary): Remove unused oldURLBase argument.  Update
-        calls to normalizeWebResourceURL().
-        (serializeWebArchiveToXML): Removed now unused cwdURL variable.  Update calls to
-        normalizeWebResourceURL() and convertWebResourceResponseToDictionary().
-
-2008-02-26  Robin Dunn <robin@alldunn.com>
-
-        Reviewed by Kevin Ollivier.
-
-        Improvements to the wx build script.
-
-        http://bugs.webkit.org/show_bug.cgi?id=17492
-
-        * wx/build-wxwebkit:
-        - Update the Windows dll copying logic to copy dlls inside WebKitLibraries/win
-        - Allow the build script to properly find wxPython includes under different setups
-        - Make sure WX_PREFIX is set to WXWIN (wxWindows dir environment var.) if not defined
-
-2008-02-26  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Darin Adler.
-
-        * Scripts/build-webkit: Add --universal and --64-bit flags to make building
-        64-bit architectures easy. Combine the two flags to build 4-way universal.
-        * Makefile: Add "64" and "64u" make rules. Fix the universal rule to return
-        non-zero when the build failes.
-
-2008-02-26  Jessica Kahn  <jess@apple.com>
-
-        Reviewed by Darin Adler.
-
-        * Scripts/gdb-safari: Set WEBKIT_UNSET_DYLD_FRAMEWORK_PATH in gdb's environment,
-        so that Safari inherits it when launched. Preexisting code in WebKit checks this
-        environment variable, and if set, unsets DYLD_FRAMEWORK_PATH, so that applications
-        launched by Safari continue to use the standard system WebKit.
-
-2008-02-25  Adam Roben  <aroben@apple.com>
-
-        Fix run-webkit-tests after r30394
-
-        * Scripts/webkitdirs.pm: Never append _debug to FindSafari's
-        executable name.
-
-2008-02-24  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Make some updates based on a trial run of
-        the renaming script.
-
-2008-02-24  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: More renaming plans.
-
-2008-02-23  Jan Michael Alonzo  <jmalonzo@unpluggable.com>
-
-        Rubber stamped by Darin Adler.
-
-        Add separator '\' after libJavaScriptCore_la_LIBADD and cleanup
-        whitespaces introduced in the previous commit.
-
-        * GNUmakefile.am:
-
-2008-02-23  Jan Michael Alonzo  <jmalonzo@unpluggable.com>
-
-        Rubber-stamped by Darin Adler.
-
-        * GNUmakefile.am: Add both GLOBALDEPS and WEBKITDEPS instead of DEPENDENCIES.
-
-2008-02-23  David Kilzer  <ddkilzer@apple.com>
-
-        Please clarify licensing for some files
-        <http://bugs.webkit.org/show_bug.cgi?id=14970>
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp: Added
-        copyright statement.  Replaced license with newer Apple BSD-style license.
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.h: Ditto.
-        * DumpRenderTree/TestNetscapePlugIn.subproj/TestObject.cpp: Ditto.
-        * DumpRenderTree/TestNetscapePlugIn.subproj/TestObject.h: Ditto.
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.cpp: Ditto.
-        * DumpRenderTree/win/TestNetscapePlugin/main.c: Ditto.
-        * mangleme/LICENSE: Added (LGPL).
-
-2008-02-22  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Adam.
-
-        <rdar://problem/5748781>
-        https://bugs.webkit.org/show_bug.cgi?id=17413
-        REGRESSION: Latest Nightly doesn't load Java plugin w/Safari 3.1b
-
-        Copy the Java plug-in over to the new location.
-
-        * FindSafari/FindSafari.cpp:
-        (_tmain):
-
-2008-02-22  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Adam.
-
-        <rdar://problem/5747325> REGRESSION: HTTP layout tests hang
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (runTest):
-        Init the URL request with the correct timeout.
-
-2008-02-21  Mike Auty  <mike.auty@gmail.com>
-
-        Reviewed by Alp Toker.
-
-        http://bugs.webkit.org/show_bug.cgi?id=17445
-        [GTK] WebKit doesn't compile with LDFLAGS="-Wl,--as-needed"
-
-        GTK+/autotools build system improvements
-
-        The GNUmakefile.am files make use of the LDFLAGS variable to include library
-        additions such as -ljpeg etc.  Unfortunately, if these inclusions aren't made
-        in LIBADD/LDADD variables, then they are mis-ordered during the linking.
-
-        The as-needed flag discards libraries whose functions have not been needed by
-        earlier libraries, which therefore makes the ordering important.
-
-        This moves all -l library inclusion statements from LDFLAGS variables to
-        LIBADD/LDADD variables.
-
-        * GNUmakefile.am:
-
-2008-02-20  Brent Fulgham  <bfulgham@gmail.com>
-
-        Reviewed by Alp.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=17428
-          Reenable a Windows-based launcher
-
-        This patch reenables the venerable Spinneret application,
-        changing its name to match the other lanch applications.
-
-        * WinLauncher: Added.
-        * WinLauncher/WinLauncher.cpp: Added.
-        (WinLauncherWebHost::updateAddressBar):
-        (WinLauncherWebHost::QueryInterface):
-        (WinLauncherWebHost::AddRef):
-        (WinLauncherWebHost::Release):
-        (resizeSubViews):
-        (_tWinMain):
-        (MyRegisterClass):
-        (InitInstance):
-        (WndProc):
-        (MyEditProc):
-        (About):
-        (loadURL):
-        * WinLauncher/WinLauncher.h: Added.
-        (WinLauncherWebHost::WinLauncherWebHost):
-        (WinLauncherWebHost::didStartProvisionalLoadForFrame):
-        (WinLauncherWebHost::didReceiveServerRedirectForProvisionalLoadForFrame):
-        (WinLauncherWebHost::didFailProvisionalLoadWithError):
-        (WinLauncherWebHost::didCommitLoadForFrame):
-        (WinLauncherWebHost::didReceiveTitle):
-        (WinLauncherWebHost::didReceiveIcon):
-        (WinLauncherWebHost::didFinishLoadForFrame):
-        (WinLauncherWebHost::didFailLoadWithError):
-        (WinLauncherWebHost::didChangeLocationWithinPageForFrame):
-        (WinLauncherWebHost::willPerformClientRedirectToURL):
-        (WinLauncherWebHost::didCancelClientRedirectForFrame):
-        (WinLauncherWebHost::willCloseFrame):
-        (WinLauncherWebHost::windowScriptObjectAvailable):
-        * WinLauncher/WinLauncher.ico: Added.
-        * WinLauncher/WinLauncher.rc: Added.
-        * WinLauncher/WinLauncher.vcproj: Added.
-        * WinLauncher/resource.h: Added.
-        * WinLauncher/small.ico: Added.
-        * WinLauncher/stdafx.cpp: Added.
-        * WinLauncher/stdafx.h: Added.
-
-2008-02-19  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Geoff
-
-        Fixed a bug in DRT --threaded mode
-
-        * DumpRenderTree/pthreads/JavaScriptThreadingPthreads.cpp:
-        (startJavaScriptThreads): Don't detach the newly created thread.  The later call to stopJavaScriptThreads() tries
-          to pthread_join() each thread that had been created, but you can't join a detached thread!
-
-2008-02-18  Brady Eidson  <beidson@apple.com>
-
-        Changes by Geoff Garen, Reviewed by Darin
-
-        Fix for <rdar://5747529> - ObjC Exception can cause JSLock to never be released
-
-        DRT changes for test: platform/mac/plugins/webScriptObject-exception-deadlock.html
-
-        [WebScriptObject valueForKey:] might throw an exception, and previously might have "leaked" the global JSLock
-        This test calls valueForKey, then runs some arbitrary Javascript on a 2ndary thread.  If the lock has leaked,
-        this series of method calls will deadlock.  If things are good, it will complete successfully.
-
-        * DumpRenderTree/mac/ObjCController.m:
-        (runJavaScriptThread):
-        (+[ObjCController isSelectorExcludedFromWebScript:]):
-        (+[ObjCController webScriptNameForSelector:]):
-        (-[ObjCController testValueForKey]):
-
-2008-02-18  Matt Lilek  <webkit@mattlilek.com>
-
-        Reviewed by Adam.
-
-        Remove FindSafari's Release configuration.
-
-        * FindSafari/FindSafari.vcproj:
-
-2008-02-15  Adam Roben  <aroben@apple.com>
-
-        Fix a typo that broke the Mac build
-
-        Reviewed by Mark.
-
-        * Scripts/build-webkit:
-
-2008-02-14  Adam Roben  <aroben@apple.com>
-
-        Turn on cross-document messaging support by default
-
-        Reviewed by Darin Adler.
-
-        * Scripts/build-webkit:
-
-2008-02-14  Adam Roben  <aroben@apple.com>
-
-        Conditionalize cross-document messaging support
-
-        The cross-document messaging parts of HTML 5 are in flux and we want
-        ports to be able to turn off the support as needed.
-
-        Note that the support is turned off by default right now. A subsequent
-        commit will turn it on by default.
-
-        Reviewed by Darin Adler.
-
-        * Scripts/build-webkit:
-
-2008-02-14  Darin Adler  <darin@apple.com>
-
-       - fix Windows build
-
-        * DumpRenderTree/win/UIDelegate.cpp:
-        (UIDelegate::setStatusText): Update parameter types to match declaration.
-
-2008-02-14  Oliver Hunt  <oliver@apple.com>
-
-        Reviewed by Geoff G and Weinig.
-
-        Add ability for DRT to report tests setting the status text.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (dumpStatusCallbacksCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:setStatusText:]):
-        * DumpRenderTree/win/UIDelegate.cpp:
-        * DumpRenderTree/win/UIDelegate.h:
-
-2008-02-13  Adam Roben  <aroben@apple.com>
-
-        Windows build fix
-
-        * DumpRenderTree/ForwardingHeaders/wtf/MathExtras.h: Added.
-
-2008-02-13  Adam Roben  <aroben@apple.com>
-
-        Windows/GTK+ build fix
-
-        * DumpRenderTree/LayoutTestController.cpp: #include MathExtras.h to
-        get isnan.
-
-2008-02-13  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Darin Adler
-
-        Add some much needed Database support to DRT
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (dumpDatabaseCallbacksCallback): Flag to control if the UIDelegate methods related to
-          databases are called
-        (clearAllDatabasesCallback): Allow a test to delete all databases
-        (setDatabaseQuotaCallback): Allow a test to set the quota new origins will get
-        (LayoutTestController::staticFunctions):
-
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::dumpDatabaseCallbacks):
-        (LayoutTestController::setDumpDatabaseCallbacks):
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::clearAllDatabases):
-        (LayoutTestController::setDatabaseQuota):
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::clearAllDatabases): Stubbed out
-        (LayoutTestController::setDatabaseQuota): Ditto
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::clearAllDatabases): Stubbed out with error message
-        (LayoutTestController::setDatabaseQuota): Ditto
-
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:frame:exceededDatabaseQuotaForSecurityOrigin:database:]): Print a
-          message with details about the event then return a 5mb quota like before
-
-
-2008-02-12  Steve Falkenburg  <sfalken@apple.com>
-
-        Changes to support merged MIDL output.
-
-        All COM interfaces are now generated to WebKit.h.
-
-        Reviewed by Sam, Ada.
-
-        * Drosera/win/BaseDelegate.h:
-        * Drosera/win/DebuggerClient.cpp:
-        * Drosera/win/DebuggerDocumentPlatform.cpp:
-        * Drosera/win/Drosera.cpp:
-        * Drosera/win/ServerConnection.cpp:
-        * Drosera/win/ServerConnection.h:
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        * DumpRenderTree/win/EditingDelegate.h:
-        * DumpRenderTree/win/EventSender.cpp:
-        * DumpRenderTree/win/FrameLoadDelegate.cpp:
-        * DumpRenderTree/win/FrameLoadDelegate.h:
-        * DumpRenderTree/win/GCControllerWin.cpp:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        * DumpRenderTree/win/PolicyDelegate.h:
-        * DumpRenderTree/win/ResourceLoadDelegate.h:
-        * DumpRenderTree/win/UIDelegate.cpp:
-        * DumpRenderTree/win/UIDelegate.h:
-        * DumpRenderTree/win/WorkQueueItemWin.cpp:
-
-2008-02-10  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        - fix a memory leak
-
-        * DumpRenderTree/cg/ImageDiffCG.cpp:
-        (getDifferenceBitmap): Use a static CFMutableData instead of allocating
-        and leaking the buffer each time.
-
-2008-02-07  Adam Roben  <aroben@apple.com>
-
-        Fix error in bisect-builds when responding "broken" for the first
-        build
-
-        Reviewed by Dave Kilzer.
-
-        * Scripts/bisect-builds: Only try to test the build if the nightly
-        info for the current index has not been deleted.
-
-2008-02-07  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Fixed two minor typos in the --root option, to get it working.
-
-        * Scripts/run-sunspider:
-            1. Actually assign the function argument to our local variable.
-            2. Actually set the $root variable, so we don't try to build later.
-
-2008-02-05  Oliver Hunt  <oliver@apple.com>
-
-        RS=Eric.
-
-        Re-enable foreignObject by default as it is needed for a number of non-fO
-        related SVG tests and none of the old known crashes occur anymore.
-
-        * Scripts/build-webkit:
-
-2008-02-05  Steve Falkenburg  <sfalken@apple.com>
-
-        Build fix.  Don't override intermediate directory.
-
-        * Drosera/win/Drosera.vcproj/Drosera.vcproj:
-
-2008-02-05  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Build fix for Windows. willCloseFrame is a pure virtual and we are
-        forced to have an implementation.
-
-        This partially reverts r30014.
-
-        * DumpRenderTree/win/FrameLoadDelegate.cpp:
-        (FrameLoadDelegate::willCloseFrame):
-        * DumpRenderTree/win/FrameLoadDelegate.h:
-
-2008-02-05  Nikolas Zimmermann  <zimmermann@kde.org>
-
-        Reviewed by Holger.
-
-        Don't build wrapper for SVGTestCase.js (special file for svg/dynamic-updates)
-
-        * Scripts/make-js-test-wrappers:
-
-2008-02-05  Holger Freyther  <zecke@selfish.org>
-
-        Reviewed by Darin Adler.
-
-        In http://bugs.webkit.org/show_bug.cgi?id=16853 it was identified that the
-        the output of the willCloseFrame and didClearWindowObject FrameLoadDelegate
-        depends on the order the tests are executed.
-
-        Propose to remove willCloseFrame and didlCearWindowObject output from the
-        FrameLoadDelegate and update the test results. The output of didClearWindowObject
-        is not interesting for any of the current tests and we have other ways to find
-        out if a frame was closed or not.
-
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        * DumpRenderTree/win/FrameLoadDelegate.cpp:
-        (FrameLoadDelegate::didClearWindowObject):
-        * DumpRenderTree/win/FrameLoadDelegate.h:
-
-2008-02-04  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        Workaround for http://bugs.webkit.org/show_bug.cgi?id=16842
-        Bug 16842: Hang in DRT in leaks mode due to signal handler doing unsafe things
-
-        Don't install the signal handler unless we are running the pixel tests.
-        It is currently only used to restore the color profile, but by catching
-        signals we can trigger a deadlock in DRT while running leak tests.
-        The deadlock is tracked by http://bugs.webkit.org/show_bug.cgi?id=16842,
-        and a more complete fix will need to be developed to address this for
-        pixel tests as well.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dumpRenderTree):
-
-2008-02-04  Mark Rowe  <mrowe@apple.com>
-
-       Gtk qmake build fix.
-
-        * Scripts/webkitdirs.pm:  Fix perl's complaint about an odd number of elements in anonymous hash.
-
-2008-02-04  Jan Michael Alonzo  <jmalonzo@unpluggable.com>
-
-        Reviewed by Alp Toker and Mark Rowe.
-
-        http://bugs.webkit.org/show_bug.cgi?id=16618
-        [GTK] build-webkit and run-webkit-tests autootools support
-
-        * Scripts/build-webkit: added --database and --icon-database options
-        * Scripts/run-launcher:
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2008-02-04  Oliver Hunt  <oliver@apple.com>
-
-        Reviewed by Steve F.
-
-        Partial fix for <rdar://5621244> Drag & Drop doesn't work correctly in DRT
-
-        Implement required DRT functionality to allow majority of Drag and Drop testcases to work.
-        Issues include:
-          * Uses Sleep() to implement leapForward reliably.
-          * 3 DND tests still fail for reasons that i have not yet determined
-          * Has to explicitly ignore an extraneous WM_MOUSELEAVE that i am at a loss to explain
-
-        * DumpRenderTree/win/EventSender.cpp:
-        (leapForwardCallback):
-        (mouseDownCallback):
-        (doMouseUp):
-        (mouseUpCallback):
-        (doMouseMove):
-        (mouseMoveToCallback):
-          Minor updates to these functions to handle the different message queue structure.
-
-        (replaySavedEvents):
-          More complicated now.  Where possible we just use the old while-loop model of execution,
-          but when leapForward has been used we have to jump through some hoops and set up an
-          inner event loop so that we can ensure messages get the correct time stamp.
-
-        * DumpRenderTree/win/UIDelegate.cpp:
-        (UIDelegate::doDragDrop):
-          Call replaySavedEvents directly to force synchronous handling of drag and drop.
-
-2008-02-04  Rodney Dawes  <dobey@wayofthemonkey.com>
-
-        Reviewed by Alp Toker and Mark Rowe.
-
-        Fix http://bugs.webkit.org/show_bug.cgi?id=17175.
-        Bug 17175: Use of C++ compiler flags in CFLAGS
-
-        * GNUmakefile.am: Use global_cxxflags as well as global_cflags in CXXFLAGS.
-
-2008-02-04  Darin Adler  <darin@apple.com>
-
-        Reviewed by Geoff.
-
-        * Scripts/make-js-test-wrappers: Look at the whole LayoutTests tree, not just the fast
-        and svg subdirectories. Added some more exceptions for the benefit of the fast/dom
-        subdirectory.
-
-2008-02-04  Adam Roben  <aroben@apple.com>
-
-        Windows Apple-only build fix
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj: Added a new include
-        directory.
-
-2008-02-04  Alp Toker  <alp@atoker.com>
-
-        Rubber-stamped by Mark Rowe.
-
-        Remove all trailing whitespace in the GTK+ port and related
-        components.
-
-        * DumpRenderTree/gtk/DumpRenderTreeGtk.h:
-        * DumpRenderTree/gtk/GCControllerGtk.cpp:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        * GNUmakefile.am:
-
-2008-02-01  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Oliver.
-
-        Also search LayoutTests/svg for js-based tests.
-
-        * Scripts/make-js-test-wrappers:
-
-2008-01-31  Alp Toker  <alp@atoker.com>
-
-        Rubber-stamped by Adam Roben.
-
-        http://bugs.webkit.org/show_bug.cgi?id=17006
-        [GTK] Header path should be webkit/webkit.h
-
-        Move the GTK+ API sources as needed and update the build systems.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        * DumpRenderTree/gtk/DumpRenderTreeGtk.h:
-        * DumpRenderTree/gtk/WorkQueueItemGtk.cpp:
-        * GNUmakefile.am:
-        * GtkLauncher/main.c:
-
-2008-01-30  Stephanie  <slewis@apple.com>
-
-        Reviewed by Geoff.
-
-        Add an option to run-webkit-tests to merge leaks results and print the number of unique leaks found under a certain call depth.  This should make it easier for the buildbots to track new leaks.
-
-        * Scripts/run-webkit-tests:
-
-2008-01-30  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        One more debug (external) fix.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp: TestNetscapePlugin is built with a _debug suffix in both DebugInternal
-        and Debug configurations.
-
-2008-01-29  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Sam Weinig. Sam Weinig.
-
-        Fixed <rdar://problem/5692566> fast/encoding/mailto-always-utf-8.html
-        fails when run after fast/dom/Window/window-property-shadowing.html (16902)
-
-        Modified our policy delegates not to output window.name. Since a
-        previous test may have explicitly set window.name, we can't rely on its
-        implicit value in test results.
-
-        * DumpRenderTree/mac/PolicyDelegate.mm:
-        (-[PolicyDelegate webView:decidePolicyForNavigationAction:request:frame:decisionListener:]):
-
-        * DumpRenderTree/win/PolicyDelegate.cpp:
-        (PolicyDelegate::decidePolicyForNavigationAction):
-
-2008-01-29  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Tim Hatcher.
-
-        <rdar://problem/5600926> WebCore on Tiger must link to its own copy of SQLite 3.4 or newer (so HTML database behavior will be correct).
-
-        * Scripts/build-webkit: Copy SQLite static library and headers into the build directory.
-
-2008-01-29  David Kilzer  <ddkilzer@apple.com>
-
-        Refactor ChangeLog path code
-
-        Reviewed by Adam.
-
-        * Scripts/prepare-ChangeLog: Simplify code in one foreach() loop, and extract
-        duplicate code in another foreach() loop.
-
-2008-01-29  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        <rdar://problem/5710692> All storage tests fail/crash
-
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:frame:exceededDatabaseQuotaForSecurityOrigin:database:]): Set an
-        arbitrary quota of 5 megabytes.
-
-        (-[UIDelegate webView:frame:quotaForSecurityOrigin:toCreateDatabase:withEstimatedSize:]):
-        (-[UIDelegate webView:frame:quotaForSecurityOrigin:fromProposedQuota:database:]):
-        Removed unused (I think) code.
-
-        * DumpRenderTree/win/UIDelegate.cpp:
-        (UIDelegate::QueryInterface): IWebUIDelegatePrivate3 is now supported.
-        (UIDelegate::webViewPainted): A stub implementation.
-        (UIDelegate::exceededDatabaseQuota): Set an arbitrary quota of 5 megabytes.
-        * DumpRenderTree/win/UIDelegate.h:
-
-2008-01-27  Jan Michael Alonzo  <jmalonzo@unpluggable.com>
-
-        GTK+ DRT build fix for breakage introduced in r29822.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setPersistentUserStyleSheetLocation):
-        (LayoutTestController::clearPersistentUserStyleSheet):
-
-2008-01-27  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Darin Adler.
-
-        - add support for directory prologues and epilogues to run-webkit-tests
-        - allow setting a persistent user style sheet in DumpRenderTree
-        - activate the WebKit Layout Tests font in Windows DumpRenderTree
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (clearPersistentUserStyleSheetCallback): Added.
-        (setPersistentUserStyleSheetLocationCallback): Added.
-        (LayoutTestController::staticFunctions): Added.
-        clearPersistentUserStyleSheet and setPersistentUserStyleSheet.
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (setPersistentUserStyleSheetLocation): Added.
-        (resetWebViewToConsistentStateBeforeTesting): Added the user style sheet
-        to the set of things this function resets. Now it either disables the
-        user style sheet or sets it to the persistent user style sheet and
-        enables it.
-        * DumpRenderTree/mac/DumpRenderTreeMac.h:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setPersistentUserStyleSheetLocation): Added.
-        (LayoutTestController::clearPersistentUserStyleSheet): Added.
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (setPersistentUserStyleSheetLocation): Added.
-        (initialize): Added the WebKit Layout Tests font to the set of fonts to
-        install.
-        (resetWebViewToConsistentStateBeforeTesting): See DumpRenderTree.mm.
-        * DumpRenderTree/win/DumpRenderTreeWin.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setPersistentUserStyleSheetLocation): Added.
-        (LayoutTestController::clearPersistentUserStyleSheet): Added.
-        * Scripts/run-webkit-tests: Changed to look for, and if found process in
-        DumpRenderTree, files named run-webkit-tests-prologue.html and
-        run-webkit-tests-epilogue.html in the resources subdirectory of any
-        test directory and platform test results directory. The prologues are
-        processed before the first test from the directory (and its
-        subdirectories) is run, and the epilogues are processed after the last
-        test from the directory is run. Platform-specific prologues and
-        epilogues are processed in order of specificity.
-
-2008-01-25  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        <rdar://problem/5699933> http/tests/security/cross-frame-access-get.html is still failing
-
-        * DumpRenderTree/win/DumpRenderTree.cpp: (main): Clear HTTP cache to ensure consistent test environment
-        (matching Mac DRT).
-        * DumpRenderTree/win/DumpRenderTree.vcproj: Link to CFNetwork.
-
-2008-01-24  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Ada Chan.
-
-        Fix for <rdar://5131975> DumpRenderTree doesn't support undo/redo
-
-        - Adds simplified UndoManager to windows DRT to allow testing the
-          undo/redo code paths in WebCore and WebKit.  This is a temporary
-          solution to an issue that should eventually be solved by having a
-          shared UndoManager in WebKit.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (runTest):
-        * DumpRenderTree/win/UIDelegate.cpp:
-        (DRTUndoObject::DRTUndoObject):
-        (DRTUndoObject::invoke):
-        (DRTUndoStack::~DRTUndoStack):
-        (DRTUndoStack::isEmpty):
-        (DRTUndoStack::clear):
-        (DRTUndoStack::push):
-        (DRTUndoStack::pop):
-        (DRTUndoManager::canRedo):
-        (DRTUndoManager::canUndo):
-        (DRTUndoManager::DRTUndoManager):
-        (DRTUndoManager::removeAllActions):
-        (DRTUndoManager::registerUndoWithTarget):
-        (DRTUndoManager::redo):
-        (DRTUndoManager::undo):
-        (UIDelegate::UIDelegate):
-        (UIDelegate::resetUndoManager):
-        (UIDelegate::registerUndoWithTarget):
-        (UIDelegate::removeAllActionsWithTarget):
-        (UIDelegate::setActionTitle):
-        (UIDelegate::undo):
-        (UIDelegate::redo):
-        (UIDelegate::canUndo):
-        (UIDelegate::canRedo):
-        * DumpRenderTree/win/UIDelegate.h:
-
-2008-01-23  Adam Roben  <aroben@apple.com>
-
-        Allow directories containing ChangeLogs to be passed to
-        resolve-ChangeLogs
-
-        Reviewed by David Kilzer.
-
-        * Scripts/resolve-ChangeLogs:
-        (sub findChangeLog): Return a ChangeLog contained within the specified
-        directory if one exists.
-
-2008-01-23  Steve Falkenburg  <sfalken@apple.com>
-
-        <rdar://problem/5698732> Copyright strings should include 2008
-
-        Reviewed by Sam.
-
-        * Drosera/win/Drosera.vcproj/Drosera.rc:
-        * DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin.rc:
-
-2008-01-23  Alp Toker  <alp@atoker.com>
-
-        Rubber-stamped by Mark Rowe.
-
-        Remove whitespace after -I in automake include lists.
-
-        * GNUmakefile.am:
-
-2008-01-23  Michael Goddard <michael.goddard@trolltech.com>
-
-        Reviewed by Lars Knoll <lars@trolltech.com>.
-
-        Reworked the JavaScriptCore Qt bindings:
-
-        * Update JS DRT controller for Qt JS binding changes.
-        There were two functions that needed some changes
-        so that the layout tests would work, so this makes
-        a few tests pass again.
-
-        * Bump the timeout for layout tests up to 11s.
-        At least some tests have an internal timeout of
-        10 seconds, so make the waitUntilDone approach
-        wait at least 11s.  fast/dom/open-and-close-by-DOM.html
-        is one of these - now the failure message is more
-        accurate.
-
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::waitUntilDone):
-        * DumpRenderTree/qt/jsobjects.h:
-
-2008-01-22  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Darin and Adam.
-
-        <rdar://problem/5688975>
-        div element on microsoft site has wrong left offset.
-
-        Add new method for testing the return vale of NPN_GetProperty.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (pluginInvoke):
-
-2008-01-22  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        <rdar://problem/5670257> editing/selection/4895428-3.html makes editing/selection/5131716-2.html fail
-
-        * DumpRenderTree/win/EventSender.cpp: (makeEventSender): Reset static variables for a new test.
-
-2008-01-21  Jan Michael Alonzo  <jmalonzo@unpluggable.com>
-
-        Reviewed by Alp Toker.
-
-        http://bugs.webkit.org/show_bug.cgi?id=16955
-        Get errors when cross-compile webkit-gtk
-
-        * GNUmakefile.am: Removed ICU_CFLAGS
-
-2008-01-21  Darin Adler  <darin@apple.com>
-
-        Reviewed by Mitz and Adam.
-
-        * Scripts/svn-create-patch: Sort ChangeLog files first. Also slightly improved the
-        sorting speed by doing all sort criteria in a single pass instead of three sorts.
-
-2008-01-21  Simon Hausmann  <hausmann@webkit.org>
-
-        Reviewed by Holger.
-
-        Fix focus chain handling and cycling through focusable objects (links) using tab/backtab.
-
-        * Fix GraphicsContext::drawFocusRing to also draw single focus rects.
-        * Implemented QWebPage::focusNextPrevChild by sending fake tab/shift-tab events
-        and make the return value depend on whether we successfully determined a focusable
-        node or not.
-        * Changed QWebView::focusNextPrevChild() to call the base QWidget implementation correctly
-        if we could not handle the focus chain ourselves.
-        * Changed the focus policy of QWebView to correctly use WheelFocus instead of ClickFocus.
-        * Made ChromeClientQt::canTakeFocus() and takeFocus() dummy method since they are only
-        used to control the situation of stepping out of the focus chain inside the page.
-        * Made inclusion of links in the focus chain configurable through QWebSettings::LinksIncludedInFocusChain.
-        The layout tests expect this to be disabled but for the user it seems sensible to have it
-        on by default, hence the default in qwebsettings.cpp
-
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::WebPage::WebPage):
-
-2008-01-19  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Alp Toker.
-
-        Allow the --http flag to run-webkit-tests to override
-        the default behaviour of disabling HTTP tests for Qt,
-        Gtk and Wx.
-
-        * Scripts/run-webkit-tests:
-
-2008-01-19  David Kilzer  <ddkilzer@apple.com>
-
-        <rdar://problem/5695344> check-for-global-initializers script never checks any object files
-
-        Reviewed by Darin Adler.
-
-        We now touch a check-for-global-initializers.timestamp file in
-        the TARGET_TEMP_DIR directory to determine when new object files
-        have been compiled and thus need to be checked.  If the timestamp
-        file doesn't exist, all object files will be checked.
-
-        Previously the modification time of the "executable" (the
-        framework binary, e.g., WebKit.framework/WebKit) was used, but
-        since this was the last file modified at the end of the compile
-        phase, no object files would ever get checked!
-
-        Also added JSCustomSQLTransactionCallback.o to the list of files
-        since it has static initializers in Debug builds of WebCore.
-
-        * Scripts/check-for-global-initializers:
-
-2008-01-18  Adam Roben  <aroben@apple.com>
-
-        Build fix
-
-        * Scripts/build-webkit:
-
-2008-01-18  Beth Dakin  <bdakin@apple.com>
-
-        Reviewed by Oliver.
-
-        Update build-webkit to account for foreign-object being disabled by
-        default.
-
-        * Scripts/build-webkit:
-
-2008-01-18  Adam Roben  <aroben@apple.com>
-
-        Updated for method renames
-
-        Reviewed by Adele.
-
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate webView:didCommitLoadForFrame:]):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setMainFrameIsFirstResponder):
-        (LayoutTestController::setWindowIsKey):
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webViewFocus:]):
-        * DumpRenderTree/win/FrameLoadDelegate.cpp:
-        (FrameLoadDelegate::didCommitLoadForFrame):
-
-2008-01-18  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Fix plugin-related tests in Debug_Internal configuration, which are failing because of CRT version mismatch
-        between DRT and TestNetscapePlugin.
-
-        * DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin.vcproj: Added a Debug_Internal configuration.
-        * DumpRenderTree/DumpRenderTree.sln: Use this configuration.
-
-2008-01-18  Simon Hausmann  <hausmann@webkit.org>
-
-        Reviewed by Holger.
-
-        Fix fast/dom/Window/window-resize.html
-
-        In DRT connect the page's geometryChangeRequest signal to a slot that
-        sets the geometry of the view widget.
-
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::WebPage::setViewGeometry):
-        (WebCore::WebPage::WebPage):
-
-2008-01-17  Steve Falkenburg  <sfalken@apple.com>
-
-        Build fix.
-
-        * Drosera/DroseraWin.make:
-
-2008-01-17  Darin Adler  <darin@apple.com>
-
-        * Scripts/run-webkit-tests: Fixed a bug number.
-
-2008-01-17  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        http://bugs.webkit.org/show_bug.cgi?id=16908
-        run-webkit-tests complains about missing FindSafari.exe
-
-        * Scripts/webkitdirs.pm: Append _debug as appropriate.
-
-2008-01-17  Steve Falkenburg  <sfalken@apple.com>
-
-        Re-add DEBUG_WEBKIT_HAS_SUFFIX.
-
-        Rubber-stamped by Jon Honeycutt.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-
-2008-01-16  Alp Toker  <alp@atoker.com>
-
-        Reviewed by Mark Rowe.
-
-        http://bugs.webkit.org/show_bug.cgi?id=16218
-        [GTK] API: Should this entry point be called go_back rather than go_backward?
-
-        Track back/forward API changes in the tools.
-
-        * DumpRenderTree/gtk/WorkQueueItemGtk.cpp:
-        (BackForwardItem::invoke):
-        * GtkLauncher/main.c:
-        (go_back_cb):
-
-2008-01-16  Adam Roben  <aroben@apple.com>
-
-        Windows build fix after r29488
-
-        * DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin.vcproj:
-        Build into a subdirectory of $WebKitOutputDir\bin to match where DRT
-        expects to find the plugin.
-
-2008-01-11  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Fixed the waitUntilDone watchdog timer -- the old code never added the
-        timer to the run loop, so it didn't do anything.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setWaitToDump):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setWaitToDump):
-
-2008-01-14  Steve Falkenburg  <sfalken@apple.com>
-
-        Use shared vsprops for most vcproj properties.
-
-        Reviewed by Darin Adler.
-
-        * Drosera/win/Drosera.vcproj/Drosera.vcproj:
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/ImageDiff.vcproj:
-        * DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin.vcproj:
-        * FindSafari/FindSafari.vcproj:
-
-2008-01-14  Stephanie  <slewis@apple.com>
-
-       Reviewed by NOBODY.
-
-       revert accidental character.
-
-       * Scripts/run-webkit-tests:
-
-2008-01-14  Stephanie  <slewis@apple.com>
-
-        RS=Oliver
-
-        add Quicktime PPC only leaks to Leopard exclude list. See <rdar://problem/5667132>
-
-        * Scripts/run-webkit-tests:
-
-2008-01-14  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Queue up another rename.
-
-2008-01-14  Holger Hans Peter Freyther  <holger.freyther@trolltech.com>
-
-        Reviewed by Darin Adler.
-
-        * Allow to run the tests in reverse order to spot test cases where the result depends on the order
-        the tests were ran.
-        * This is from http://bugs.webkit.org/show_bug.cgi?id=16869
-
-        * Scripts/run-webkit-tests:
-
-2008-01-14  Holger Hans Peter Freyther  <holger.freyther@trolltech.com>
-
-        Reviewed by Darin Adler.
-
-        * Randomize tests array to spot test cases where the results depends on the order
-        the tests are ran.
-        * This is from http://bugs.webkit.org/show_bug.cgi?id=16869
-
-        * Scripts/run-webkit-tests:
-
-2008-01-14  Darin Adler  <darin@apple.com>
-
-        * Scripts/run-webkit-tests: More ignore list tweaking.
-
-2008-01-14  Darin Adler  <darin@apple.com>
-
-        * Scripts/run-webkit-tests: Add another leak to the ignore list.
-
-2008-01-14  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Adam Roben.
-
-        - try to fix failure in fast/dom/Window/window-onFocus.html seen on the
-          build bots
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting): Focus the web view.
-
-2008-01-13  Steve Falkenburg  <sfalken@apple.com>
-
-        Share common files across projects.
-
-        Unify vsprops files
-        Debug:          common.vsprops, debug.vsprops
-        Debug_Internal: common.vsprops, debug.vsprops, debug_internal.vsprops
-        Release:        common.vsprops, release.vsprops
-
-        Shared properties can go into common.vsprops, shared debug settings can go into debug.vsprops.
-        debug_internal.vsprops will be mostly empty except for file path prefix modifiers.
-
-        Pull auto-version.sh, VERSION, and PRODUCTVERSION from tools.
-
-        Reviewed by Adam Roben.
-
-        * Drosera/win/Drosera.vcproj/Drosera.vcproj:
-        * Drosera/win/Drosera.vcproj/PRODUCTVERSION: Removed.
-        * Drosera/win/Drosera.vcproj/VERSION: Removed.
-        * Drosera/win/Drosera.vcproj/auto-version.sh: Removed.
-        * Drosera/win/Drosera.vcproj/debug.vsprops: Removed.
-        * Drosera/win/Drosera.vcproj/debug_internal.vsprops: Removed.
-        * Drosera/win/Drosera.vcproj/release.vsprops: Removed.
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/win/debug.vsprops: Removed.
-        * DumpRenderTree/win/debug_internal.vsprops: Removed.
-        * DumpRenderTree/win/release.vsprops: Removed.
-
-2008-01-13  Brent Fulgham  <bfulgham@gmail.com>
-
-        Reviewed by Maciej.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=16314
-          Script to launch Drosera
-
-        * Scripts/gdb-drosera: Added.
-        * Scripts/run-drosera: Added.
-        * Scripts/run-drosera-nightly.cmd: Added.
-        * Scripts/webkitdirs.pm: Added runDrosera function.
-
-2008-01-13  Dan Bernstein  <mitz@apple.com>
-
-        - fix breakage due to last-minute change
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (runTest): Declare the loop variable.
-
-2008-01-13  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Adam Roben.
-
-        - fix <rdar://problem/5132009> Windows DRT does not support multiple windows
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (DumpRenderTreeWndProc):
-        (initialize):
-        (dumpBackForwardList):
-        (dumpBackForwardListForAllWindows):
-        (dump):
-        (resetWebViewToConsistentStateBeforeTesting): Factored out of
-        runTest().
-        (runTest):
-        (allWindows): Added. Returns a vector of all open windows.
-        (windowToWebViewMap): Added. Returns a map from open windows to their
-        WebViews.
-        (createWebViewAndOffscreenWindow): Factored out of main() to be
-        reusable for creating extra windows.
-        (main):
-        * DumpRenderTree/win/DumpRenderTreeWin.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::windowCount): Implemented.
-        * DumpRenderTree/win/UIDelegate.cpp:
-        (UIDelegate::createWebViewWithRequest): Implemented.
-        (UIDelegate::webViewClose): Implemented.
-        * DumpRenderTree/win/UIDelegate.h:
-
-2008-01-12  Alp Toker  <alp@atoker.com>
-
-        Reviewed by Mark Rowe.
-
-        Hide non-public symbols in GTK+/autotools release builds.
-
-        * GNUmakefile.am:
-
-2008-01-12  Holger Hans Peter Freyther  <holger.freyther@trolltech.com>
-
-        Reviewed by Ap.
-
-        * Make launching of the WebKit httpd work on GNU/Debian/Linux
-
-        The configuration of Apache2 and installation does not depend on
-        the kernel but on the distribution policy. Make launching of httpd
-        work for Debian derived distributions.
-
-        * Scripts/run-webkit-httpd:
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2008-01-12  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Maciej Stachowiak.
-
-        Fix crash in http/tests/security/local-JavaScript-from-remote.html under guard malloc.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm: Retain string before returning it to
-        match the callers expectations that it can take ownership of the string.
-
-2008-01-11  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        <rdar://problem/5667275> fast/dynamic/layer-hit-test-crash.html is failing
-
-        * DumpRenderTree/win/DumpRenderTree.cpp: (runTest): Ignore WM_MOUSELEAVE events,
-        as these are only posted because the test window is not a normal visible one, and
-        they confuse drag&drop machinery.
-
-2008-01-11  Adam Roben  <aroben@apple.com>
-
-        Fix a crash when pathToLocalResource fails and a leak
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (pathToLocalResourceCallback): Dont leak the JSStringRef, and make
-        sure not to pass null to JSValueMakeString.
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::pathToLocalResource): Print an error message if
-        the conversion fails so it's clear what happened.
-
-2008-01-11  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by John Sullivan.
-
-        * DumpRenderTree/mac/GCControllerMac.mm:
-        (GCController::collectOnAlternateThread): Updated for name change.
-
-2008-01-10  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix. Don't build dftables any longer since it's now a Perl
-        script.
-
-        * wx/build-wxwebkit:
-
-2008-01-10  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Make DRT track open windows instead of allocated windows so that
-        we can avoid ASSERTION due to late deallocs out of our control.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dumpBackForwardListForAllWindows):
-        (runTest):
-        * DumpRenderTree/mac/DumpRenderTreeMac.h:
-        * DumpRenderTree/mac/DumpRenderTreeWindow.h:
-        * DumpRenderTree/mac/DumpRenderTreeWindow.mm:
-        (+[DumpRenderTreeWindow openWindows]):
-        (-[DumpRenderTreeWindow initWithContentRect:styleMask:backing:defer:]):
-        (-[DumpRenderTreeWindow close]):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::windowCount):
-
-2008-01-10  Ada Chan  <adachan@apple.com>
-
-        Meta key is not the same as Alt key on windows.
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/win/EventSender.cpp:
-        (keyDownCallback):
-
-2008-01-09  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Darin, Sam and Adam.
-
-        -<rdar://problem/5654486> REGRESSION (Safari 3.0.4-TOT): clicking on
-        link in gmail message displays JavaScript alert falsely complaining
-        about pop-up blocking.
-        - Added the ability to enable the pop-up blocker via the
-        LayoutTestController.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setPopupBlockingEnabledCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (setDefaultsToConsistentValuesForTesting):
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setPopupBlockingEnabled):
-
-2008-01-10  Lars Knoll  <lars@trolltech.com>
-
-        Reviewed by Simon.
-
-        rename QWebPageHistory to QWebHistory.
-
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-
-2008-01-09  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Darin Adler.
-
-        - add some more renames, adjust some
-
-        * Scripts/do-webcore-rename:
-
-2008-01-07  Nikolas Zimmermann  <zimmermann@kde.org>
-
-        Reviewed by Oliver.
-
-        Enable SVG Fonts support by default.
-
-        * Scripts/build-webkit:
-
-2008-01-07  Nikolas Zimmermann  <zimmermann@kde.org>
-
-        Reviewed by Adam.
-
-        Fixes: http://bugs.webkit.org/show_bug.cgi?id=16244
-        DRT doesn't handle platform specific pixel test results correctly.
-
-        <test>-expected.txt files and <test>-expected.png files may now live
-        in different directories (ie. a cross-platform <test>-expected.txt file
-        and a platform-specific <test>-expected.png file).
-
-        * Scripts/run-webkit-tests:
-
-2008-01-04  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Darin Adler.
-
-        - <rdar://problem/5666914> fast/regex/test{1,4}.html are failing
-        DRT did not correctly handle printing the '\0' char.  Now it does.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (dumpFramesAsText):
-        (dump):
-
-2008-01-07  Simon Hausmann  <hausmann@webkit.org>
-
-        Reviewed by Lars.
-
-        Ported of the network backend of the Qt platform to Qt 4.4's new networking API.
-
-
-        * DumpRenderTree/qt/main.cpp:
-        * DumpRenderTree/qt/testplugin.cpp:
-        * DumpRenderTree/qt/testplugin.h:
-
-2008-01-05  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Alp Toker.
-
-        Fix hang in fast/frames/frame-display-none-focus.html during Gtk layout tests.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (processWork): Process pending work.
-        (webViewLoadFinished): Schedule processing of pending work.
-        * DumpRenderTree/gtk/WorkQueueItemGtk.cpp: Use webkit_web_frame_reload.
-
-2008-01-05  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Some more renaming plans.
-
-2008-01-04  Alice Liu  <alice.liu@apple.com>
-
-        Reviewed by Alexey and Darin.
-
-        Adding "home" and "end" to DRT's keydown since
-        DOM key events can't handle keyIdentifiers at this point.
-
-        * DumpRenderTree/mac/EventSendingController.mm:
-        (-[EventSendingController keyDown:withModifiers:]):
-        * DumpRenderTree/win/EventSender.cpp:
-        (keyDownCallback):
-
-2008-01-04  Lars Knoll  <lars@trolltech.com>
-
-        Reviewed by Simon.
-
-        fix DRT after the changes to QWebPage.
-
-        The great thing is that we actually don't have
-        any regressions from the QWebPage change :)
-
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-
-2008-01-04  Lars Knoll  <lars@trolltech.com>
-
-        Reviewed by Simon.
-
-        make QWebPage a QObject and get things to compile.
-
-        Nothing works currently though.
-
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-
-2008-01-04  Lars Knoll  <lars@trolltech.com>
-
-        Reviewed by Simon.
-
-        take a QString as identifier in QWebFrame::addToJSWindowObject.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::initJSObjects):
-
-2008-01-04  Alp Toker  <alp@atoker.com>
-
-        GTK+ DRT build fix for breakage introduced in r29149.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::execCommand):
-
-2008-01-03  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        <rdar://problem/5463489> A number of layout tests should be using execCommand instead of textInputController
-
-        Added layoutTestController.execCommand to access editor commands that are not available
-        via document.execCommand.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (execCommandCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::execCommand):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::queueLoad):
-        (LayoutTestController::execCommand):
-
-2008-01-03  Alice Liu  <alice.liu@apple.com>
-
-        Reviewed by Darin, Mitz.
-
-        fixed <rdar://5130762> mousedowns in different locations increase the clickcount incorrectly
-
-        the clickcount should not increase if the last click was at a different location.  it's a new click.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (runTest):
-        * DumpRenderTree/mac/EventSendingController.h:
-        * DumpRenderTree/mac/EventSendingController.mm:
-        (-[EventSendingController mouseDown]):
-        (-[EventSendingController mouseUp]):
-
-2008-01-03  Darin Adler  <darin@apple.com>
-
-        Reviewed by Adam.
-
-        * Scripts/update-webkit: Make this work a little better for the people at Apple
-        who have a directory named Internal.
-
-2008-01-03  Adam Roben  <aroben@apple.com>
-
-        Use HTTP::Date instead of Date::Parse because it's installed by Cygwin by default
-
-        Rubberstamped by Mark.
-
-        * Scripts/update-webkit-auxiliary-libs:
-
-2008-01-03  Adam Roben  <aroben@apple.com>
-
-        Fix Bug 15663: update-webkit re-downloads WebKitAuxiliaryLibrary unnecessarily
-
-        http://bugs.webkit.org/show_bug.cgi?id=15663
-
-        Added a fuzz factor into the Last-Modified comparison for downloading
-        WebKitAuxiliaryLibrary.zip.
-
-        The zip file is served from a set of mirrors who give Last-Modified
-        times that are off by 1-3 seconds from each other. This was causing
-        the build bots to redownload WebKitAuxiliaryLibrary for every build,
-        which would then cause all of WebCore to rebuild each time.
-
-        Reviewed by Mark.
-
-        * Scripts/update-webkit-auxiliary-libs: Check if the new zip file is
-        at least 30 seconds newer than the old one -- otherwise we assume that
-        the difference in time is due to the mirrors being slightly offset
-        from each other.
-        (sub lastModifiedToUnixTime): Added.
-
-2008-01-03  Alexey Proskuryakov  <ap@webkit.org>
-
-        Windows build fix.
-
-        * DumpRenderTree/ForwardingHeaders/wtf/HashTraits.h: Added (needed by COMPtr.h).
-
-2008-01-03  Simon Hausmann  <hausmann@webkit.org>
-
-        Reviewed by Lars.
-
-        Moved QWebPage::open to QWebFrame::load and added setHtml.
-
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::open):
-
-2008-01-03  Simon Hausmann  <hausmann@webkit.org>
-
-        Reviewed by Lars.
-
-        Added the first revision of QWebView and started moving functionality from QWebPave over to QWebView and QWebFrame.
-
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-
-2008-01-02  Sam Weinig  <sam@webkit.org>
-
-        * Scripts/do-webcore-rename: Yet more renaming ideas.
-
-2008-01-02  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: More renaming ideas. (Maciej, please merge yours with mine.)
-
-2008-01-02  Alice Liu  <alice.liu@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        fixing assertion hit with editing/selection/move-begin-end.html
-
-        * DumpRenderTree/ForwardingHeaders/wtf/ASCIICType.h: Added.
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/EventSender.cpp:
-        (keyDownCallback):
-        using isupper will cause an assertion for inputs outside of ascii range. use isASCIIUpper instead.
-
-2008-01-02  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Some more name change plans.
-
-2008-01-02  Alice Liu  <alice.liu@apple.com>
-
-        Reviewed by Maciej.
-
-        Added handling for page up and page down in EventSender
-
-        * DumpRenderTree/mac/EventSendingController.mm:
-        (-[EventSendingController keyDown:withModifiers:]):
-        * DumpRenderTree/win/EventSender.cpp:
-        (keyDownCallback):
-
-2008-01-02  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Fix fast/events/arrow-keys-on-body.html for real.
-
-        * DumpRenderTree/win/EventSender.cpp: (keyDownCallback): Pass proper keyData for WM_KEYUP, too.
-
-2008-01-02  Luca Bruno  <lethalman88@gmail.com>
-
-        Reviewed by Darin Adler.
-
-        http://bugs.webkit.org/show_bug.cgi?id=16674
-        [GTK] run-launcher sets wrong LD_LIBRARY_PATH
-
-        * Scripts/run-launcher:
-
-2007-12-31  Darin Adler  <darin@apple.com>
-
-        Suggested by Antti.
-
-        * Scripts/webkitdirs.pm: Turned off the QuickTime requirement for Windows until
-        we get it installed on the build bots.
-
-2007-12-30  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Sam.
-
-        * Scripts/do-webcore-rename: Add a few more planned renames s/(\w+)Imp/\1/
-
-2007-12-29  Darin Adler  <darin@apple.com>
-
-        Reviewed by Oliver.
-
-        - fix http://bugs.webkit.org/show_bug.cgi?id=16663
-          leak bot shows createCStringFromNPVariant result leaking
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (pluginInvoke): Added a missing free.
-
-2007-12-26  Jan Michael Alonzo  <jmalonzo@unpluggable.com>
-
-        Reviewed by Alp Toker.
-
-        http://bugs.webkit.org/show_bug.cgi?id=16390
-        Use autotools or GNU make as the build system for the GTK port
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp: include glib.h
-        * GNUmakefile.am: Added.
-
-2007-12-24  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reviewed by Oliver.
-
-        Fix fast/events/arrow-keys-on-body.html, failing on Windows.
-
-        * DumpRenderTree/win/EventSender.cpp:
-        (keyDownCallback): Add KF_EXTENDED flag to arrow keys. Also add a count
-        of 1, even though WebKit currently ignores it.
-
-2007-12-23  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx buildbot fix. Update libpng dl script to the latest version.
-
-        * wx/install-unix-extras:
-
-2007-12-22  Antti Koivisto  <antti@apple.com>
-
-        Fix a typo.
-
-        * Scripts/webkitdirs.pm:
-
-2007-12-21  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        - Disable the back/forward cache using the new WebPreferences API
-          instead of through the BackForwardList.  This makes us match what
-          we do on Windows.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (createWebViewAndOffscreenWindow):
-        (setDefaultsToConsistentValuesForTesting):
-
-2007-12-21  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        - disable the back/forward cache in Windows DumpRenderTree. It is
-          already disabled in Mac DumpRenderTree.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (initializePreferences):
-
-2007-12-13  Antti Koivisto  <antti@apple.com>
-
-        Reviewed by Darin and Steve.
-
-        - check for QuickTime SDK on Windows.
-        - build media support on Windows by default
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-
-2007-12-21  Kevin Ollivier  <kevino@theolliviers.com>
-
-        Build script fix for buildbot.
-
-        * wx/build-wxwebkit:
-
-2007-12-20  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by mjs.
-
-        * Scripts/run-sunspider: change --runs default to 10 for better accuracy
-
-2007-12-20  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Steve.
-
-        - <rdar://5656485> Drosera: Win: Nightly does not reliably connect to
-        WebKit.
-
-        - Drosera and Safari need to use the same ProgIDs in order for
-        CoCreateInstance to work properly.  The most robust way to do this is
-        for WebKit to dynamically publish those ProgIDs.
-
-        * Drosera/win/DebuggerClient.cpp: Use the published ProgIDs
-        (DebuggerClient::createWebViewWithRequest):
-        * Drosera/win/Drosera.cpp: Use the published ProgIDs and rename some
-        statics.
-        (Drosera::initUI):
-        (Drosera::attach):
-        (Drosera::attemptToCreateServerConnection):
-        * Drosera/win/Drosera.vcproj/Drosera.vcproj: Fix a runtime failure.
-        * Drosera/win/ServerConnection.cpp: Reformat the connection function and
-        make use of the published ProgIDs.
-        (ServerConnection::attemptToCreateServerConnection):
-
-2007-12-20  Kevin McCullough  <kmccullough@apple.com>
-
-        - <rdar://problem/5658317> REGRESSION: 20+ leaks seen on buildbots.
-        - Build bot and leak fix.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (pathToLocalResourceCallback):
-
-2007-12-19  David Kilzer  <ddkilzer@apple.com>
-
-        Make svn-apply/svn-unapply work with patches from git-format-patch.
-
-        Reviewed by Darin Adler.
-
-        * Scripts/svn-apply:
-        (patch): If 'Index:' can't be found in the text passed in, print it
-        out with a warning and return early.
-        * Scripts/svn-unapply:
-        (patch): Ditto.
-
-2007-12-18  Kevin Ollivier  <kevino@theolliviers.com>
-
-        Reviewed by Alp Toker.
-
-        Build related fixes.
-
-        * wx/build-wxwebkit:
-        - Check to make sure the user is running a supported wx port
-        - More robust checks for Cygwin
-        - Only run install-unix-extras on Mac, it's not the right solution
-          for Linux distros.
-        - Remove outdated Linux instructions after successful build
-        - Clean Bakefile-generated files during a clean operation
-
-2007-12-18  Darin Adler  <darin@apple.com>
-
-        * Scripts/make-js-test-wrappers: Don't generate a wrapper for select-options-remove.js.
-
-2007-12-18  Steve Falkenburg  <sfalken@apple.com>
-
-        Add script to run Drosera as part of the nightly.
-
-        Reviewed by Kevin M.
-
-        * Scripts/run-drosera.cmd: Added.
-
-2007-12-18  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Remove a stray K.
-
-2007-12-18  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Plan more renaming.
-
-2007-12-14  Juan A. Suarez Romero  <jasuarez@igalia.com>
-
-        Reviewed by Alp Toker.
-
-        http://bugs.webkit.org/show_bug.cgi?id=16042
-        [GTK] Eliminate webkit_init()
-
-        Moving webkit initialization to WebView class init.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (main):
-        * GtkLauncher/main.c:
-        (main):
-
-2007-12-17  Luca Bruno  <lethalman88@gmail.com>
-
-        Reviewed by Alp Toker.
-
-        http://bugs.webkit.org/show_bug.cgi?id=13542
-        gdklauncher doesnt change URL in adress GTKEntry.
-
-        * GtkLauncher/main.c:
-        (load_commit_cb): added
-        (title_change_cb):
-        (create_browser):
-
-2007-12-16  Dimitri Glazkov  <dimitri@glazkov.com>
-
-        Reviewed by Adam Roben.
-
-        Remove the double-quotes around the PATH variable value, in order to make it work in Windows shell.
-
-        * FindSafari/FindSafari.cpp:
-        (_tmain):
-
-2007-12-16  Brent Fulgham  <bfulgham@gmail.com>
-
-        Reviewed by Adam Roben.
-
-        http://bugs.webkit.org/show_bug.cgi?id=16315
-        FindSafari needs a path-only option.
-
-        * FindSafari/FindSafari.cpp:
-        (_tmain):
-
-2007-12-16  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        http://bugs.webkit.org/show_bug.cgi?id=16462
-        REGRESSION: access keys broken on Windows
-
-        * DumpRenderTree/win/EventSender.cpp: (keyDownCallback): Send system key events
-        if Alt is pressed.
-
-2007-12-15  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        Fix urlSuitableForTestResult to correctly identify wstring::npos as
-        the case when wstring.find doesn't find anything.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (urlSuitableForTestResult):
-
-2007-12-15  Alp Toker  <alp@atoker.com>
-
-        GTK+ DRT build fix for GLib < 2.14.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setWaitToDump):
-
-2007-12-05  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Alp Toker.
-
-        Add a watchdog timer to Gtk DumpRenderTree, and implement alert/prompt/confirm.  This prevents
-        many layout tests from hanging while waiting on user responses to dialogs.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (invalidateAnyPreviousWaitToDumpWatchdog):
-        (webViewScriptAlert):
-        (webViewScriptPrompt):
-        (webViewScriptConfirm):
-        (main):
-        * DumpRenderTree/gtk/DumpRenderTreeGtk.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (waitToDumpWatchdogFired):
-        (LayoutTestController::setWaitToDump):
-
-2007-12-05  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Alp Toker.
-
-        Flesh out DumpRenderTree for Gtk.  After these changes, the majority of the tests in fast/js pass.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (dumpFramesAsText): Don't print the frame name when dumping the main frame as text.
-        (dump):
-        (runTest):
-        (webViewLoadStarted): Store the top frame when it starts loading so we can use it to determine when to dump.
-        (webViewLoadFinished): Dump when the top frame load completes if we're not waiting for a JS callback and the
-        work queue is empty.
-        (webViewWindowObjectCleared): Set up window.layoutTestController.
-        (webViewConsoleMessage): Match the console message format expected by the layout test results.
-        (main): Hook up the new signals.
-        * DumpRenderTree/gtk/DumpRenderTreeGtk.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp: Only notify done if the top frame has completed loading to avoid
-        dumping multiple times.
-        * Scripts/build-dumprendertree: Ensure build-dumprendertree is a no-op for Gtk too.
-        * Scripts/run-webkit-tests: Teach run-webkit-tests that Gtk is like Qt in many ways.  Use run-launcher to open test results.
-
-2007-12-14  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Brady.
-
-        Assert that a web frame that's loading a resource always has either a data source or
-        a provisional data source.
-
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        (-[ResourceLoadDelegate webView:identifierForInitialRequest:fromDataSource:]):
-
-2007-12-14  Darin Adler  <darin@apple.com>
-
-        - fix mistake causing nearly all tests to fail on Windows
-
-        * DumpRenderTree/win/UIDelegate.cpp:
-        (UIDelegate::webViewAddMessageToConsole): Need to compare the result of find with
-        npos, not 0. Also pass URL in to URL function rather than passing the entire message.
-
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:addMessageToConsole:]): Pass path only to path function rather
-        than passing the entire message.
-
-2007-12-14  Darin Adler  <darin@apple.com>
-
-        - fix Tiger build
-
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:addMessageToConsole:]): Re-implement this without using any
-        new-to-Leopard methods.
-
-2007-12-14  Darin Adler  <darin@apple.com>
-
-        * DumpRenderTree/mac/FrameLoadDelegate.mm: Don't implement didReceiveIcon delegate method
-        since it now triggers unwanted icon loading. We only had it because we implemented "all"
-        delegate methods here.
-
-2007-12-14  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Darin and Geoff.
-
-        <rdar://problem/5619295>
-        REGRESSION: 303-304: Embedded YouTube video fails to render- JS errors (16150) (Flash 9)
-
-        Add property getting methods to the plug-in.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (pluginInvoke):
-
-2007-12-14  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Darin Adler.
-
-        - Layout test fix for mac. When dumped to the console local file paths
-        now only show the name of the resource not the whole path.  This is to
-        make the results machine and OS independent.
-
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:addMessageToConsole:]):
-
-2007-12-13  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Adam.
-
-        - Layout tests fix.  We need a way to remove machine-dependent
-        information from paths in layout test results. The UIDelegate now does
-        this.
-
-        * DumpRenderTree/DumpRenderTree.h:
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (urlSuitableForTestResult):
-        * DumpRenderTree/win/DumpRenderTreeWin.h:
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp:
-        * DumpRenderTree/win/UIDelegate.cpp:
-        (UIDelegate::webViewAddMessageToConsole):
-
-2007-12-13  Alp Toker  <alp@atoker.com>
-
-        Build fix for DRT breakage introduced in r28690.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::pathToLocalResource):
-
-2007-12-12  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Alice and Sam.
-
-        - <rdar://5621435> Need a way to specify local resources (being loaded
-        from HTTP tests) on Windows.
-        - Implemented pathToLocalResource which exposes the functionality of
-        converting a given unix path to the correct location on Windows.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (pathToLocalResourceCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::pathToLocalResource):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::pathToLocalResource):
-
-2007-12-12  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam.
-
-        <rdar://problem/5132003>
-        dumpResourceLoadCallbacks is not implemented in DRT on Windows.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (main):
-        Set the resource load delegate.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp: Added.
-        * DumpRenderTree/win/ResourceLoadDelegate.h: Added.
-
-2007-12-12  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Fix conversion from double to LPARAM in dispatchMessage().
-
-        * DumpRenderTree/win/EventSender.cpp:
-        (dispatchMessageCallback):
-
-2007-12-11  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Mark Rowe and Sam Weinig too!
-
-        - added Helvetica Oblique and Helvetica Bold Oblique to the list of
-          fonts DumpRenderTree registers.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (initialize):
-
-2007-12-11  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Anders
-
-        Make DumpRenderTree on mac use its own path for Databases testing
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (setDefaultsToConsistentValuesForTesting): Keep a string to ~/Library/Application Support/DumpRenderTree
-          for future DRT-only use, then use it to construct the Databases path and set that default
-
-2007-12-07  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        <rdar://problem/5535636>
-        Have to press 4 times instead of 2 times to get the expected result of ^^ with german keyboard.
-
-        http://bugs.webkit.org/show_bug.cgi?id=13916
-        JavaScript detects Tab as a character input on a textfield validation
-
-        * DumpRenderTree/mac/EventSendingController.mm:
-        (-[EventSendingController keyDown:withModifiers:]): Added a few more named keys.
-        Dispatch a keyup to better match what happens when a key is physically pressed.
-
-        * DumpRenderTree/win/EventSender.cpp:
-        (keyDownCallback): Ditto. Also make sure that WM_CHAR is consistently dispatched before
-        returning from keyDown().
-        (getConstantCallback): Fixed a couple copy/paste mistakes.
-
-2007-12-07  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Oliver.
-
-        - <rdar://5599845> Drosera: Does not show loal files in the file list
-        on the left side.
-
-        * Drosera/debugger.js: - Updated url dividing regex to handle %s and :s.
-        * Drosera/win/Drosera.vcproj/Drosera.vcproj: - Updated Debug settings
-        so the open source community can build.
-
-2007-12-10  Brady Eidson  <beidson@apple.com>
-
-        Rubberstamped by Sam Weinig
-
-        Update DRT Mac to reflect the new UI Delegate methods I just checked into WebKit/mac
-
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:frame:quotaForSecurityOrigin:toCreateDatabase:withEstimatedSize:]):
-        (-[UIDelegate webView:frame:quotaForSecurityOrigin:fromProposedQuota:database:]):
-
-2007-12-08  Oliver Hunt  <oliver@apple.com>
-
-        Reviewed by Sam W.
-
-        Split the ENABLE_SVG_EXPERIMENTAL_FEATURES flag into separate flags.
-
-        Fixes <rdar://problem/5620249> Must disable SVG animation
-        <rdar://problem/5612772> Disable SVG filters on Mac to match Windows behavior
-
-        In order to allow finer grained control over the set of SVG features
-        this patch splits ENABLE_SVG_EXPERIMENTAL_FEATURES into the following
-        distinct flags:
-        ENABLE_SVG_ANIMATION
-        ENABLE_SVG_FILTERS
-        ENABLE_SVG_FONTS
-        ENABLE_SVG_AS_IMAGE
-        ENABLE_SVG_USE
-
-        by default only ENABLE_SVG_AS_IMAGE and ENABLE_SVG_USE are set.
-
-        Script handles all the new build flags, and allows --svg-experimental
-        to automatically enable all features.
-
-        * Scripts/build-webkit:
-
-2007-12-07  Steve Falkenburg  <sfalken@apple.com>
-
-        Fix version parsing.
-
-        Rubber-stamped by Oliver.
-
-        * Drosera/win/Drosera.vcproj/auto-version.sh:
-
-2007-12-07  Steve Falkenburg  <sfalken@apple.com>
-
-        Build modifications for Drosera.
-
-        Reviewed by Adam.
-
-        * Drosera/DroseraWin.make: Added.
-        * Drosera/win/Drosera.vcproj/Drosera.rc:
-        * Drosera/win/Drosera.vcproj/Drosera.vcproj:
-        * Drosera/win/Drosera.vcproj/PRODUCTVERSION: Added.
-        * Drosera/win/Drosera.vcproj/VERSION: Added.
-        * Drosera/win/Drosera.vcproj/auto-version.sh: Added.
-
-2007-12-06  Adam Roben  <aroben@apple.com>
-
-        Explicitly turn on the Mac font ascent hack on Windows
-
-        This keeps our font metrics matching those from Mac.
-
-        Reviewed by Hyatt.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (main):
-
-2007-12-06  Anders Carlsson  <andersca@apple.com>
-
-        Rename main.c to main.cpp here too.
-
-        * DumpRenderTree/win/TestNetscapePlugin/main.cpp: Copied from DumpRenderTree/win/TestNetscapePlugin/main.c.
-
-2007-12-06  Sam Weinig  <sam@webkit.org>
-
-        Rubber stamped by Geoff.
-
-        * Scripts/do-webcore-rename: Don't rename kjs_css twice.
-
-2007-12-06  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Some more renaming plans.
-
-2007-12-06  Anders Carlsson  <andersca@apple.com>
-
-        Restore implementation of testGetIntIdentifier that was accidentally
-        removed somehow (possibly when I made PluginObject be a cpp file).
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (pluginInvoke):
-
-2007-12-05  Anders Carlsson  <andersca@apple.com>
-
-        Make the entry points extern "C".
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.cpp:
-
-2007-12-05  Anders Carlsson  <andersca@apple.com>
-
-        C++ warning fixes.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.cpp:
-        (NPP_New):
-        (NPP_Destroy):
-        (NPP_SetWindow):
-        (NPP_NewStream):
-        (NPP_HandleEvent):
-        (NPP_URLNotify):
-        (NPP_GetValue):
-
-2007-12-05  Anders Carlsson  <andersca@apple.com>
-
-        Add the .cpp files to the TestNetscapePlugIn target.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-
-2007-12-05  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Geoff.
-
-        Rename the TestNetscapePlugIn .c files to be .cpp.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.c: Removed.
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp: Copied from DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.c.
-        * DumpRenderTree/TestNetscapePlugIn.subproj/TestObject.c: Removed.
-        * DumpRenderTree/TestNetscapePlugIn.subproj/TestObject.cpp: Copied from DumpRenderTree/TestNetscapePlugIn.subproj/TestObject.c.
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.c: Removed.
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.cpp: Copied from DumpRenderTree/TestNetscapePlugIn.subproj/main.c.
-        * DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin.vcproj:
-
-2007-12-05  Adam Roben  <aroben@apple.com>
-
-        Fix case of keypresses from the Windows implementation of eventSender.keyDown
-
-        This fixes several regression tests.
-
-        Reviewed by Alice.
-
-        * DumpRenderTree/win/EventSender.cpp:
-        (keyDownCallback): Virtual keycodes for ASCII characters are always
-        uppercase, so we need to check the case of the original character
-        passed in to eventSender.keyDown.
-
-2007-12-05  Adam Roben  <aroben@apple.com>
-
-        Learn from Tim's mistakes
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (runTest): Reset the authorAndUserStylesEnabled preference for each
-        test.
-
-2007-12-05  Alp Toker  <alp@atoker.com>
-
-        Reviewed by Mark Rowe.
-
-        Initialize GTK+ and WebKit so the tests can run.
-
-        Reorganize the headers a little.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (main):
-
-2007-12-04  Anders Carlsson  <andersca@apple.com>
-
-        Remove IWebScriptScope include.
-
-        * Drosera/win/DebuggerDocumentPlatform.cpp:
-
-2007-12-04  Sam Weinig  <sam@webkit.org>
-
-        Rubber stamped by Mark Rowe.
-
-        Define CF as platform for mac and revert r28409
-
-        * DumpRenderTree/DumpRenderTree.h:
-        * DumpRenderTree/mac/DumpRenderTreeMac.h:
-
-2007-12-04  Sam Weinig  <sam@webkit.org>
-
-        Define CF as platform for windows.
-
-        Reviewed by Adam Roben.
-
-        * DumpRenderTree/win/DumpRenderTreeWin.h:
-
-2007-12-04  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Adam and Darin.
-
-        - Removed a needless BSTR cleanup.
-
-        * Drosera/win/DebuggerDocumentPlatform.cpp:
-        (DebuggerDocument::getPlatformCurrentFunctionStack):
-
-2007-11-27  Adam Roben  <aroben@apple.com>
-
-        Fix <rdar://5614497> setAuthorAndUserStylesEnabled is not implemented in DRT
-
-        Reviewed by Maciej.
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setAuthorAndUserStylesEnabled): Implemented.
-
-2007-12-04  Alp Toker  <alp@atoker.com>
-
-        Prospective Win DRT build fix.
-
-        * DumpRenderTree/DumpRenderTree.h:
-
-2007-12-04  Alp Toker  <alp@atoker.com>
-
-        Fix a clobbered copyright header.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-
-2007-12-04  Xan Lopez  <xan@gnome.org>
-
-        Reviewed by Alp Toker.
-
-        http://bugs.webkit.org/show_bug.cgi?id=15561
-        GTK port needs DumpRenderTree implementation
-
-        Start work on the GTK+ DRT.
-
-        This does not work yet, and there are a few lingering style issues
-        (nothing major) but this patch has been stuck in the bug tracker for
-        too long already.
-
-        * DumpRenderTree/DumpRenderTree.h:
-        * DumpRenderTree/gtk: Added.
-        * DumpRenderTree/gtk/DumpRenderTree.cpp: Added.
-        (autocorrectURL):
-        (shouldLogFrameLoadDelegates):
-        (dumpFrameScrollPosition):
-        (displayWebView):
-        (appendString):
-        (dumpFramesAsText):
-        (dumpRenderTreeAsText):
-        (dump):
-        (runTest):
-        (main):
-        * DumpRenderTree/gtk/DumpRenderTree.pro: Added.
-        * DumpRenderTree/gtk/DumpRenderTreeGtk.h: Added.
-        * DumpRenderTree/gtk/GCControllerGtk.cpp: Added.
-        (GCController::collect):
-        (GCController::collectOnAlternateThread):
-        (GCController::getJSObjectCount):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp: Added.
-        (LayoutTestController::~LayoutTestController):
-        (LayoutTestController::addDisallowedURL):
-        (LayoutTestController::clearBackForwardList):
-        (LayoutTestController::copyDecodedHostName):
-        (LayoutTestController::copyEncodedHostName):
-        (LayoutTestController::display):
-        (LayoutTestController::keepWebHistory):
-        (LayoutTestController::notifyDone):
-        (LayoutTestController::queueBackNavigation):
-        (LayoutTestController::queueForwardNavigation):
-        (LayoutTestController::queueLoad):
-        (LayoutTestController::queueReload):
-        (LayoutTestController::queueScript):
-        (LayoutTestController::setAcceptsEditing):
-        (LayoutTestController::setCustomPolicyDelegate):
-        (LayoutTestController::setMainFrameIsFirstResponder):
-        (LayoutTestController::setTabKeyCyclesThroughElements):
-        (LayoutTestController::setUseDashboardCompatibilityMode):
-        (LayoutTestController::setUserStyleSheetEnabled):
-        (LayoutTestController::setUserStyleSheetLocation):
-        (LayoutTestController::setWindowIsKey):
-        (LayoutTestController::setWaitToDump):
-        (LayoutTestController::windowCount):
-        (LayoutTestController::setPrivateBrowsingEnabled):
-        (LayoutTestController::setAuthorAndUserStylesEnabled):
-        * DumpRenderTree/gtk/WorkQueueItemGtk.cpp: Added.
-        (JSStringCopyUTF8CString):
-        (LoadItem::invoke):
-        (ReloadItem::invoke):
-        (ScriptItem::invoke):
-        (BackForwardItem::invoke):
-
-2007-12-03  Sam Weinig  <sam@webkit.org>
-
-        Move JavaScriptCore thread testing code to pthread specific directory
-        and remove the dependance on CoreFoundation by using WTF::HashSet.
-
-        Reviewed by Geoff and Oliver.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/ForwardingHeaders/wtf/HashMap.h: Added.
-        * DumpRenderTree/ForwardingHeaders/wtf/HashSet.h: Added.
-        * DumpRenderTree/ForwardingHeaders/wtf/Vector.h: Added.
-        * DumpRenderTree/JavaScriptThreading.h: Copied from DumpRenderTree/mac/JavaScriptThreading.h.
-        * DumpRenderTree/mac/JavaScriptThreading.cpp: Removed.
-        * DumpRenderTree/mac/JavaScriptThreading.h: Removed.
-        * DumpRenderTree/pthreads: Added.
-        * DumpRenderTree/pthreads/JavaScriptThreadingPthreads.cpp: Copied from DumpRenderTree/mac/JavaScriptThreading.cpp.
-        (javaScriptThreads):
-        (runJavaScriptThread):
-        (startJavaScriptThreads):
-        (stopJavaScriptThreads):
-
-2007-12-03  Andrew Bonventre  <andybons@google.com>
-
-        Reviewed by Darin Adler.
-
-        - fix http://bugs.webkit.org/show_bug.cgi?id=16267
-        Symbol lookup menu broken in debugger view
-
-        * Drosera/debugger.js: Fixed javascript error where document property
-        should have been used instead of contentDocument in switchFunction that
-        was breaking the select symbol dropdown menu.  This is because
-        window.frames will return a Window object and not a frame object like
-        the author was originally expecting.
-
-2007-12-03  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Adam.
-
-        - <rdar://5618942> Drosera: Console window does not process everything
-        correctly.
-        - <rdar://5619005> Drosera: could be sped up by moving the
-        WebScriptScope stuff into the WebScriptCallFrame.
-        - Now the console can correctly process objects and does not receive
-        notifications from JavaScriptCore about the JavaScript in Drosera's
-        own process.
-
-        * Drosera/win/DebuggerDocumentPlatform.cpp:
-        (DebuggerDocument::getPlatformLocalScopeVariableNamesForCallFrame):
-        (DebuggerDocument::platformValueForScopeVariableNamed):
-
-2007-12-03  Stephanie  <slewis@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Check to see if we are building a debug root
-
-        * Scripts/check-for-global-initializers:
-
-2007-12-03  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Darin Adler.
-
-        - added a testGetIntIdentifier() method to TestNetscapePlugIn
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.c:
-        (pluginInvoke):
-
-2007-12-03  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reviewed by Oliver.
-
-        Added eventSender.dispatchMessage() - will be used to test Windows keyboard input
-        in a more fine-grained manner than eventSender.keyDown().
-
-        * DumpRenderTree/win/EventSender.cpp:
-        (getConstantCallback):
-        (dispatchMessageCallback):
-
-2007-12-02  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: More planned renaming.
-
-2007-12-02  Sam Weinig  <sam@webkit.org>
-
-        Rubber stamped by Anders.
-
-        Use [NSURL absoluteString] instead of [NSURL description] in order to get
-        more uniform results cross platform.
-
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        (-[NSURL _drt_descriptionSuitableForTestResult]):
-
-2007-12-02  Sam Weinig  <sam@webkit.org>
-
-        Rubber stamped by Niko.
-
-        Rename FrameLoaderDelegate.h/cpp to FrameLoadDelegate.h/cpp.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/FrameLoadDelegate.cpp: Copied from DumpRenderTree/win/FrameLoaderDelegate.cpp.
-        * DumpRenderTree/win/FrameLoadDelegate.h: Copied from DumpRenderTree/win/FrameLoaderDelegate.h.
-        * DumpRenderTree/win/FrameLoaderDelegate.cpp: Removed.
-        * DumpRenderTree/win/FrameLoaderDelegate.h: Removed.
-
-2007-12-01  Alp Toker  <alp@atoker.com>
-
-        Reviewed by Adam Roben.
-
-        Make use of the newly introduced webkit.h convenience header.
-
-        * GtkLauncher/main.c:
-
-2007-12-01  Adam Treat  <treat@kde.org>
-
-        Reviewed by Simon.
-
-        * Check to see if the directory exists and exit if not.
-
-        * DumpRenderTree/qt/main.cpp:
-        (main):
-
-2007-12-01  Adam Treat  <treat@kde.org>
-
-        Reviewed by Simon.
-
-        * Don't hide symbols when in Debug mode
-        * On Linux (glibc) provide a backtrace in the test output for debugging purposes
-
-
-        * DumpRenderTree/qt/main.cpp:
-        (messageHandler):
-
-2007-11-30  Alp Toker  <alp@atoker.com>
-
-        Reviewed by Adam Roben.
-
-        http://bugs.webkit.org/show_bug.cgi?id=15691
-        [GTK] Public API does not follow GTK+ conventions
-
-        Refactor the WebKit/GTK+ public API. Changes:
-          WebKitPage -> WebKitWebView
-          WebKitFrame -> WebKitWebFrame
-
-        Public API source and header names have been updated to mirror the API
-        changes.
-
-        The API is now kept in WebKit/gtk/WebView to match other ports in the
-        same class such as Mac and Win.
-
-        * GtkLauncher/main.c:
-        (activate_uri_entry_cb):
-        (link_hover_cb):
-        (title_change_cb):
-        (progress_change_cb):
-        (go_back_cb):
-        (go_forward_cb):
-        (create_browser):
-        (main):
-
-2007-11-30  Adam Roben  <aroben@apple.com>
-
-        Hopefully the final build fix
-
-        * Drosera/win/Drosera.vcproj/Drosera.vcproj: Link against WTF.lib to
-        pull in WTF's assertion/logging functions.
-
-2007-11-30  Adam Roben  <aroben@apple.com>
-
-        Another build fix
-
-        * Drosera/win/Drosera.vcproj/Drosera.vcproj: Use the right suffix for
-        WebKit.lib.
-
-2007-11-30  Adam Roben  <aroben@apple.com>
-
-        Debug build fix
-
-        * Drosera/win/Drosera.vcproj/Drosera.vcproj: Added a Debug_Internal
-        configuration.
-        * Drosera/win/Drosera.vcproj/debug.vsprops: Updated to match other
-        projects.
-        * Drosera/win/Drosera.vcproj/release.vsprops: Ditto.
-        * Drosera/win/Drosera.vcproj/debug_internal.vsprops: Copied from
-        WebKitTools/DumpRenderTree/win/debug_internal.vsprops.
-
-2007-11-30  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Fix drawSelectionRect to actually draw the selection rect.
-
-        * DumpRenderTree/cg/PixelDumpSupportCG.cpp:
-        (drawSelectionRect):
-
-2007-11-30  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: WildFox already did the TextStyle -> FontStyle one.
-
-2007-11-30  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Get ready for some future renaming.
-
-2007-11-29  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Adam.
-
-        - Removed some unnecessary functions and changed an unused return type.
-
-        * Drosera/win/DebuggerClient.cpp:
-        (registerConsoleClass):
-        * Drosera/win/DebuggerClient.h:
-        * Drosera/win/Drosera.cpp:
-        (registerDroseraClass):
-
-2007-11-28  Alp Toker  <alp@atoker.com>
-
-        Reviewed by Timothy Hatcher.
-
-        http://bugs.webkit.org/show_bug.cgi?id=16174
-        [GTK] Use "URI" not "URL" in public API
-
-        Replace use of the term "URL" with "URI" in public headers,
-        documentation and some internal code to match GLib/GTK+ convention.
-
-        This is now mentioned in the API guidelines:
-          http://trac.webkit.org/projects/webkit/wiki/HackingGtk
-
-        * GtkLauncher/main.c:
-        (activate_uri_entry_cb):
-        (title_change_cb):
-        (create_toolbar):
-        (main):
-
-2007-11-29  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam.
-
-        <rdar://problem/5230478>
-        FrameLoadDelegate callbacks are not dumped in DRT.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (shouldLogFrameLoadDelegates):
-        (runTest):
-        (main):
-        * DumpRenderTree/win/FrameLoaderDelegate.cpp:
-        (BSTRtoString):
-        (descriptionSuitableForTestResult):
-        (FrameLoadDelegate::QueryInterface):
-        (FrameLoadDelegate::didStartProvisionalLoadForFrame):
-        (FrameLoadDelegate::didFailProvisionalLoadWithError):
-        (FrameLoadDelegate::didCommitLoadForFrame):
-        (FrameLoadDelegate::didFinishLoadForFrame):
-        (FrameLoadDelegate::willCloseFrame):
-        (FrameLoadDelegate::didClearWindowObject):
-        (FrameLoadDelegate::didFinishDocumentLoadForFrame):
-        (FrameLoadDelegate::didHandleOnloadEventsForFrame):
-        * DumpRenderTree/win/FrameLoaderDelegate.h:
-        (FrameLoadDelegate::windowScriptObjectAvailable):
-        (FrameLoadDelegate::didFirstLayoutInFrame):
-
-2007-11-29  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders.
-
-        Add database quota UIDelegates methods to DRT UIDelegate.
-
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:quotaForSecurityOrigin:toCreateDatabase:withEstimatedSize:]):
-        (-[UIDelegate webView:quotaForSecurityOrigin:fromProposedQuota:database:]):
-
-2007-11-29  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Sam.
-
-        - <rdar://5618976> Drosera: should listen for the WebScriptDebugServer
-        dying and vice versa.
-        - This fix will allow Drosera and Safari to reconnect if either of them
-        closes correctly, but does not fix the case where one of them dies
-        silently.
-
-        * Drosera/win/ServerConnection.cpp:
-        (ServerConnection::attemptToCreateServerConnection): Added a safety
-        check, because it's possilbe to try to connect to a server that's dying.
-        (ServerConnection::serverDidDie): Implemented. This resets Drosera when
-        the server has died.
-        * Drosera/win/ServerConnection.h: Added the new function and removed
-        an unnecessary member.
-
-2007-11-29  Anders Carlsson  <andersca@apple.com>
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        Add shlwapi.lib to all configurations.
-
-2007-11-29  Kevin McCullough  <kmccullough@apple.com>
-
-        - Build fix.  Added additional includes for VS Express to the Release
-        project.
-
-        * Drosera/win/Drosera.vcproj/Drosera.vcproj:
-
-2007-11-29  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Adam.
-
-        <rdar://problem/5132005>
-        setUserStyleSheetEnabled is not fully implemented in Windows DRT.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        Add shlwapi.lib
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setUserStyleSheetEnabled):
-        Implement this.
-
-        (appendComponentToPath):
-        New method which wraps the Win32 API PathAppend.
-
-        (followShortcuts):
-        New method which checks if a file points to a shortcut and
-        follows the shortcut.
-
-        (resolveCygwinPath):
-        New method that takes a cygwin unix-style path and returns the Win32 path.
-
-        (cfStringRefToWString):
-
-        (LayoutTestController::setUserStyleSheetLocation):
-        Implement this.
-
-2007-11-29  Alice Liu  <alice.liu@apple.com>
-
-        Reviewed by Adam.
-
-        Fixed <rdar://5133828> fast/frames/iframe-window-focus.html output is lowercase
-
-        * DumpRenderTree/win/EventSender.cpp:
-        (keyDownCallback):
-        uppercase letters were being sent as lowercase letters without the shift key down.
-
-2007-11-29  Kevin McCullough  <kmccullough@apple.com>
-
-        - Windows build fix. VS express needs some love.
-
-        * Drosera/win/Drosera.vcproj/Drosera.vcproj:
-
-2007-11-28  Darin Adler  <darin@apple.com>
-
-        Reviewed by Adam Roben.
-
-        * DumpRenderTree/mac/EventSendingController.mm:
-        (-[EventSendingController keyDown:withModifiers:]):
-        Send capital letters through as lowercase letters with the shift key down
-        rather than sending them as if they were highly unusual "capital letter keys".
-
-        * Scripts/update-javascriptcore-test-results: Add a "--force" option for cases
-        where you need to update results and more tests are failing than before.
-
-2007-11-28  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Darin Adler.
-
-        <rdar://problem/5132001>
-        contextClick is not implemented in DRT on Windows.
-
-        * DumpRenderTree/win/EventSender.cpp:
-        (contextClickCallback):
-        Add a callback for contextClick, which sends a WM_RBUTTONDOWN message followed
-        by a WM_RBUTTONUP message.
-
-        * DumpRenderTree/win/UIDelegate.cpp:
-        (UIDelegate::hasCustomMenuImplementation):
-        (UIDelegate::trackCustomPopupMenu):
-        * DumpRenderTree/win/UIDelegate.h:
-        Add a no-op implementation of trackCustomPopupMenu, to prevent the default popup
-        menu from being shown (and causing the DRT to hang).
-
-2007-11-27  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Fix DumpRenderTree ObjC bug comparing strings.
-
-        * DumpRenderTree/mac/ObjCController.m:
-        (-[ObjCController identityIsEqual::]): Compare strings with string
-        equality instead of identiy equality.
-
-2007-11-27  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Sam.
-
-        Reset the authorAndUserStylesEnabled preference
-        back to YES for each test. Fixes the broken tests.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting):
-
-2007-11-27  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Adam.
-
-        - Drosera now displays the console window, although it cannot currently
-        process JavaScript.
-
-        * Drosera/win/DebuggerClient.cpp: Shows the console window.
-        (registerConsoleClass): Implemented.
-        (consoleWndProc): Implemented.
-        (DebuggerClient::onSize): Implemented.
-        (DebuggerClient::createWebViewWithRequest): Implemented, now creates a
-        new window.
-        * Drosera/win/DebuggerClient.h: Added needed method and members for
-        creating and maintaining a new window.
-        * Drosera/win/Drosera.cpp: Fixed some minor bugs, and moved a couple of
-        lines of code to more appropriate places.
-        (Drosera::handleCommand):
-        (Drosera::initUI):
-        (Drosera::onSize):
-        (Drosera::attach):
-
-2007-11-27  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Dave Hyatt.
-
-        <rdar://problem/5569233> Add the ability to disable author and user CSS styles
-
-        Add support for disabling author and user styles for testing.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setAuthorAndUserStylesEnabledCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setAuthorAndUserStylesEnabled):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setAuthorAndUserStylesEnabled):
-
-2007-11-26  Dan Bernstein  <mitz@apple.com>
-
-        - Tiger build fix.
-
-        * DumpRenderTree/mac/Configurations/Base.xcconfig:
-
-2007-11-26  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Maciej.
-
-        - Implemented displaying variables for Drosera on Win.
-
-        * Drosera/win/DebuggerDocumentPlatform.cpp: Changed Drosera functions
-        that retrieve variables to not hold onto the return value since it's
-        not returned.  Also changed to use the new signatures of the retrieval
-        functions.
-        (DebuggerDocument::getPlatformLocalScopeVariableNamesForCallFrame):
-        (DebuggerDocument::platformValueForScopeVariableNamed):
-        * Drosera/win/Drosera.cpp: Removed a needless TODO.
-        (droseraWndProc):
-
-2007-11-26  Sam Weinig  <sam@webkit.org>
-
-        Cleanup names of painting and repainting functions.
-
-        Reviewed by Adam Roben.
-
-        * DumpRenderTree/cg/PixelDumpSupportCG.cpp:
-        (drawSelectionRect): was drawSelectionRectIntoContext.
-        (dumpWebViewAsPixelsAndCompareWithExpected):
-        * DumpRenderTree/cg/PixelDumpSupportCG.h:
-        * DumpRenderTree/mac/PixelDumpSupportMac.mm:
-        (paintWebView): was drawWebViewIntoContext.
-        (repaintWebView): was repaintWithVerticalSweep and repaintWithHorizontalSweep.
-
-2007-11-26  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Dan Bernstein.
-
-        - Leopard build fix
-
-        * DumpRenderTree/mac/Configurations/Base.xcconfig:
-
-2007-11-26  Sam Weinig  <sam@webkit.org>
-
-        Fix for http://bugs.webkit.org/show_bug.cgi?id=16136
-        Use shared PixelDumpSupport for Mac DRT
-
-        Reviewed by Adam Roben.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/PixelDumpSupport.h: Copied from DumpRenderTree/win/PixelDumpSupport.h.
-        * DumpRenderTree/cg/ImageDiffCG.cpp:
-        * DumpRenderTree/cg/PixelDumpSupportCG.cpp:
-        (drawSelectionRectIntoContext):
-        (dumpWebViewAsPixelsAndCompareWithExpected):
-        * DumpRenderTree/cg/PixelDumpSupportCG.h:
-        * DumpRenderTree/mac/Configurations/Base.xcconfig:
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dump):
-        * DumpRenderTree/mac/ImageDiff.m: Removed.
-        * DumpRenderTree/mac/PixelDumpSupport.h: Removed.
-        * DumpRenderTree/mac/PixelDumpSupport.mm: Removed.
-        * DumpRenderTree/mac/PixelDumpSupportMac.mm: Copied from DumpRenderTree/mac/PixelDumpSupport.mm.
-        (setDefaultColorProfileToRGB):
-        (getBitmapContextFromWebView):
-        (drawWebViewIntoContext):
-        (repaintWithVerticalSweep):
-        (repaintWithHorizontalSweep):
-        (getSelectionRect):
-        * DumpRenderTree/win/PixelDumpSupport.h: Removed.
-
-2007-11-25  David D. Kilzer  <ddkilzer@webkit.org>
-
-        Bug 16052: prepare-ChangeLog doesn't report deleted files
-        <http://bugs.webkit.org/show_bug.cgi?id=16052>
-
-        Reviewed by Sam.
-
-        * Scripts/prepare-ChangeLog: Fixed logic that checks for removed files.
-
-2007-11-25  David Kilzer  <ddkilzer@webkit.org>
-
-        Bug 15864: Replace merge-changelog with resolve-ChangeLogs
-        <http://bugs.webkit.org/show_bug.cgi?id=15864>
-
-        Reviewed by Adam.
-
-        Roll functionality of merge-changelog into resolve-ChangeLogs
-        script.  The script now checks for ChangeLog.rej and
-        ChangeLog.orig files first.  If it finds them, it uses the
-        ChangeLog.rej file as a patch (in old contextual diff format) to
-        apply with --fuzz=3.
-
-        * Scripts/merge-changelog: Removed.
-        * Scripts/resolve-ChangeLogs: Handle traditional rejected patches.
-
-2007-11-25  Sam Weinig  <sam@webkit.org>
-
-        Add .xcconfig files for the ImageDiff and TestNetscapePlugIn targets of the DumpRenderTree.
-
-        Reviewed by Mark Rowe.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/mac/Configurations/Base.xcconfig:
-        * DumpRenderTree/mac/Configurations/DumpRenderTree.xcconfig:
-        * DumpRenderTree/mac/Configurations/ImageDiff.xcconfig: Added.
-        * DumpRenderTree/mac/Configurations/TestNetscapePlugIn.xcconfig: Added.
-
-2007-11-25  Sam Weinig  <sam@webkit.org>
-
-        Convert DumpRenderTree to ues .xcconfig files.
-
-        Reviewed by Mark Rowe.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/mac/Configurations: Added.
-        * DumpRenderTree/mac/Configurations/Base.xcconfig: Added.
-        * DumpRenderTree/mac/Configurations/DebugRelease.xcconfig: Added.
-        * DumpRenderTree/mac/Configurations/DumpRenderTree.xcconfig: Added.
-
-2007-11-25  Sam Weinig  <sam@webkit.org>
-
-        Add ForwardingHeaders to wtf for DumpRenderTree.
-
-        Reviewed by Mark Rowe.
-
-        * DumpRenderTree/DumpRenderTree.h:
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/ForwardingHeaders: Added.
-        * DumpRenderTree/ForwardingHeaders/wtf: Added.
-        * DumpRenderTree/ForwardingHeaders/wtf/Assertions.h: Added.
-        * DumpRenderTree/ForwardingHeaders/wtf/Noncopyable.h: Added.
-        * DumpRenderTree/ForwardingHeaders/wtf/OwnPtr.h: Added.
-        * DumpRenderTree/ForwardingHeaders/wtf/Platform.h: Added.
-        * DumpRenderTree/ForwardingHeaders/wtf/RetainPtr.h: Added.
-        * DumpRenderTree/ForwardingHeaders/wtf/StringExtras.h: Added.
-        * DumpRenderTree/LayoutTestController.cpp:
-        * DumpRenderTree/WorkQueue.cpp:
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        * DumpRenderTree/mac/JavaScriptThreading.cpp:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        * DumpRenderTree/mac/ObjCController.m:
-        * DumpRenderTree/mac/UIDelegate.mm:
-        * DumpRenderTree/mac/WorkQueueItemMac.mm:
-
-2007-11-25  Adam Roben  <aroben@apple.com>
-
-        Fix some test failures caused by r28019
-
-        Now that stdout is in binary mode, we need to always use printf
-        instead of wprintf. Otherwise we'll end up with UTF-16 characters in
-        the output.
-
-        Reviewed by Sam.
-
-        * DumpRenderTree/win/UIDelegate.cpp: Replaced uses of wprintf with
-        printf.
-        (UIDelegate::runJavaScriptAlertPanelWithMessage):
-        (UIDelegate::runJavaScriptConfirmPanelWithMessage):
-        (UIDelegate::runJavaScriptTextInputPanelWithPrompt):
-        (UIDelegate::webViewAddMessageToConsole):
-
-2007-11-25  Adam Roben  <aroben@apple.com>
-
-        Set the font smoothing preference in DRT
-
-        This makes the pixel results on Windows closer to the Mac results.
-
-        Reviewed by Mitz.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (initializePreferences):
-
-2007-11-25  Adam Roben  <aroben@apple.com>
-
-        Port ImageDiff to CG and C++
-
-        Final part of http://bugs.webkit.org/show_bug.cgi?id=16133
-        <rdar://5071708>
-
-        Reviewed by Sam.
-
-        * DumpRenderTree/DumpRenderTree.sln: Added ImageDiff.vcproj.
-        * DumpRenderTree/cg/ImageDiffCG.cpp: Added.
-        (main):
-        (createImageFromStdin):
-        (compareImages):
-        (getDifferenceBitmap):
-        (computePercentageDifferent):
-        * DumpRenderTree/win/ImageDiff.vcproj: Added.
-
-2007-11-25  Adam Roben  <aroben@apple.com>
-
-        Fix image diff link generation on Windows
-
-        Reviewed by Sam.
-
-        * Scripts/run-webkit-tests: Removed unnecessary and incorrect calls
-        to toURL.
-
-2007-11-25  Adam Roben  <aroben@apple.com>
-
-        Implement pixel dumping in Windows DRT
-
-        Part of http://bugs.webkit.org/show_bug.cgi?id=16133
-        <rdar://5071708>
-
-        Reviewed by Sam.
-
-        * DumpRenderTree/cg/PixelDumpSupportCG.cpp: Added.
-        (printPNG): Dumps a CGImageRef as a PNG to stdout, along with a
-        Content-Length header.
-        (getMD5HashStringForBitmap):
-        (dumpWebViewAsPixelsAndCompareWithExpected):
-        * DumpRenderTree/cg/PixelDumpSupportCG.h: Copied from WebKitTools/DumpRenderTree/mac/DumpRenderTreePasteboard.h.
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (dump): Do a pixel dump if requested.
-        (main): Parse pixel test options.
-        * DumpRenderTree/win/DumpRenderTree.vcproj: Added new files and added
-        the cg/ subdirectory to the include path.
-        * DumpRenderTree/win/MD5.cpp: Added. Windows MD5 functions aren't
-        available in a header or import library, so we have to go through this
-        LoadLibrary/GetProcAddress dance to use them.
-        (cryptDLL):
-        (init):
-        (update):
-        (final):
-        (MD5_Init):
-        (MD5_Update):
-        (MD5_Final):
-        * DumpRenderTree/win/MD5.h: Added.
-        * DumpRenderTree/win/PixelDumpSupport.h: Added. This file should be
-        moved up to the top level to share it with Mac eventually.
-        * DumpRenderTree/win/PixelDumpSupportWin.cpp: Added.
-        (getBitmapContextFromWebView): Forces the WebView to paint using a
-        WM_PRINTCLIENT message, and puts the result in a CGBitmapContext.
-
-2007-11-25  Adam Roben  <aroben@apple.com>
-
-        Clean up Windows DRT's option parsing a little bit
-
-        Reviewed by Sam.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (main): Put non-option arguments into a Vector.
-
-2007-11-25  Adam Roben  <aroben@apple.com>
-
-        Make Windows DRT stop changing LF into CRLF
-
-        Reviewed by Sam.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (main): Put stdout in binary mode.
-        * Scripts/run-webkit-tests: Remove the CRLF hack.
-
-2007-11-24  David Kilzer  <ddkilzer@webkit.org>
-
-        Removed empty directory.
-
-        * Scripts/resources: Removed.
-
-2007-11-23  David D. Kilzer  <ddkilzer@webkit.org>
-
-        Fix bisect-builds to work with recent WebKit nightly builds.
-
-        Reviewed by Dan.
-
-        * Scripts/bisect-builds: Check for the
-        WebKit.app/Contents/Frameworks/10.[45] directory. If it exists, use
-        it for the DYLD_FRAMEWORK_PATH environment variable, else fallback
-        to WebKit.app/Contents/Resources.
-
-2007-11-23  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reviewed by Maciej.
-
-        <rdar://problem/5539306> REGRESSION: redirect fails when subframe's document is opened but
-        not closed (affects digg.com)
-
-        * DumpRenderTree/mac/DumpRenderTree.mm: (runTest): Replace the current document with a blank
-        one after finishing with a test to avoid having its delayed onload handler firing when
-        replaced with the next one. This is ugly and still unreliable (see LayoutTests ChangeLog),
-        but it helps somewhat.
-
-2007-11-22  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Alp Toker.
-
-        Fix build-webkit to propagate make's exit status if it fails.
-
-        * Scripts/webkitdirs.pm:
-
-2007-11-22  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        - fix crash when running pixel tests
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dumpRenderTree): Parse the command line options before setting up the
-        environment so that we know if we need to set up the pixel dump
-        machinery.
-
-2007-11-21  Eric Seidel  <eric@webkit.org>
-
-        Speculative build fix for Tiger.
-
-        * DumpRenderTree/mac/PixelDumpSupport.mm: include unistd.h
-
-2007-11-21  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Tim Hatcher.
-
-        Break out more of DumpRenderTree.mm into individual files
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/mac/CheckedMalloc.cpp: Added.
-        (checkedMalloc):
-        (checkedRealloc):
-        (makeLargeMallocFailSilently):
-        * DumpRenderTree/mac/CheckedMalloc.h: Added.
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (crashHandler):
-        (dump):
-        * DumpRenderTree/mac/DumpRenderTreeMac.h:
-        * DumpRenderTree/mac/DumpRenderTreePasteboard.h:
-        * DumpRenderTree/mac/DumpRenderTreePasteboard.m:
-        * DumpRenderTree/mac/DumpRenderTreeWindow.h:
-        * DumpRenderTree/mac/DumpRenderTreeWindow.mm:
-        * DumpRenderTree/mac/JavaScriptThreading.cpp: Added.
-        (javaScriptThreads):
-        (runJavaScriptThread):
-        (startJavaScriptThreads):
-        (stopJavaScriptThreads):
-        * DumpRenderTree/mac/JavaScriptThreading.h: Added.
-        * DumpRenderTree/mac/PixelDumpSupport.h: Added.
-        * DumpRenderTree/mac/PixelDumpSupport.mm: Added.
-        (restoreColorSpace):
-        (setDefaultColorProfileToRGB):
-        (initializeColorSpaceAndScreeBufferForPixelTests):
-        (md5HashStringForBitmap):
-        (dumpWebViewAsPixelsAndCompareWithExpected):
-
-2007-11-21  Kevin Ollivier  <kevino@theolliviers.com>
-
-        Move install-unix-extras to wx directory as it seems only to be used by that
-        port now. It now supports universal binaries on Mac and adds libpng and libjpeg.
-        Also, have build-wxwebkit run it in order to fix the Mac buildbot, and
-        have install-unix-extras install into WebKitLibraries as per
-        convention.
-
-        Reviewed by Mark Rowe.
-
-        * Scripts/install-unix-extras: Removed.
-        * wx/build-wxwebkit:
-        * wx/install-unix-extras: Copied from WebKitTools/Scripts/install-unix-extras.
-
-2007-11-21  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam.
-
-        More refactoring for greater code readability
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (initializeGlobalsFromCommandLineOptions):
-        (initializeColorSpaceAndScreeBufferForPixelTests):
-        (addTestPluginsToPluginSearchPath):
-        (useLongRunningServerMode):
-        (runTestingServerLoop):
-        (prepareConsistentTestingEnvironment):
-        (dumpRenderTree):
-        (main):
-        (dumpFramesAsText):
-        (dumpBackForwardListForWebView):
-        (sizeWebViewForCurrentTest):
-        (methodNameStringForFailedTest):
-        (dumpBackForwardListForAllWindows):
-        (dumpWebViewAsPixelsAndCompareWithExpected):
-        (invalidateAnyPreviousWaitToDumpWatchdog):
-        (dump):
-        * DumpRenderTree/mac/DumpRenderTreeMac.h:
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:createWebViewWithRequest:]):
-
-2007-11-21  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Tim Hatcher.
-
-        Abstract more of DRT into static methods
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (setDefaultsToConsistentValuesForTesting):
-        (setupSignalHandlers):
-        (allocateGlobalControllers):
-        (releaseAndZero):
-        (releaseGlobalControllers):
-        (dumpRenderTree):
-        (shouldLogFrameLoadDelegates):
-        (createCFURLFromPathOrURL):
-        (resetWebViewToConsistentStateBeforeTesting):
-        (runTest):
-
-2007-11-21  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Tim Hatcher.
-
-        Pull DumpRenderTreeWindow and DumpRenderTreePasteboard out into their own files
-
-        * DumpRenderTree/DumpRenderTree.h:
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dumpRenderTree):
-        (dump):
-        (runTest):
-        * DumpRenderTree/mac/DumpRenderTreePasteboard.h: Added.
-        * DumpRenderTree/mac/DumpRenderTreePasteboard.m: Added.
-        (+[DumpRenderTreePasteboard _pasteboardWithName:]):
-        (+[DumpRenderTreePasteboard releaseLocalPasteboards]):
-        (-[DumpRenderTreePasteboard declareType:owner:]):
-        (+[LocalPasteboard alloc]):
-        (-[LocalPasteboard init]):
-        (-[LocalPasteboard dealloc]):
-        (-[LocalPasteboard name]):
-        (-[LocalPasteboard releaseGlobally]):
-        (-[LocalPasteboard declareTypes:owner:]):
-        (-[LocalPasteboard addTypes:owner:]):
-        (-[LocalPasteboard changeCount]):
-        (-[LocalPasteboard types]):
-        (-[LocalPasteboard availableTypeFromArray:]):
-        (-[LocalPasteboard setData:forType:]):
-        (-[LocalPasteboard dataForType:]):
-        (-[LocalPasteboard setPropertyList:forType:]):
-        (-[LocalPasteboard setString:forType:]):
-        * DumpRenderTree/mac/DumpRenderTreeWindow.h: Added.
-        * DumpRenderTree/mac/DumpRenderTreeWindow.mm: Added.
-        (+[DumpRenderTreeWindow allWindows]):
-        (-[DumpRenderTreeWindow initWithContentRect:styleMask:backing:defer:]):
-        (-[DumpRenderTreeWindow dealloc]):
-        (-[DumpRenderTreeWindow isKeyWindow]):
-        (-[DumpRenderTreeWindow keyDown:]):
-
-2007-11-20  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix for Windows. Don't use WebCore/move-js-headers.sh as
-        it indiscriminately copies any headers inside JavaScriptCore,
-        which includes Tiger ICU headers.
-
-        * wx/build-wxwebkit:
-        Don't run WebCore/move-js-headers.sh any longer.
-
-2007-11-20  Adam Treat  <treat@kde.org>
-
-        Reviewed by David Kilzer.
-
-        * Prepend git branch name to $baseProductDir
-
-        * Scripts/VCSUtils.pm:
-        * Scripts/webkitdirs.pm:
-
-2007-11-20  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Simon Hausmann.
-
-        * Scripts/build-webkit:  Pass "clean" flag down into buildQMakeProject.
-        * Scripts/webkitdirs.pm: Respect the "clean" flag passed down from build-webkit.
-        Have it trigger a "make distclean" rather than "make clean" to ensure that the
-        built product and generated Makefile's are removed.
-
-2007-11-19  Alp Toker  <alp@atoker.com>
-
-        Reviewed by Mark Rowe.
-
-        http://bugs.webkit.org/show_bug.cgi?id=16040
-        [GTK] GtkLauncher should be written in C
-
-        Port GtkLauncher to plain C.
-
-        Use a more conventional GTK+ coding style.
-
-        Use a toolbar instead of menus.
-
-        Various signature fixes and cleanups.
-
-        Add a license header. Assume all previous modifications were copyright
-        assigned to Apple Inc. by default.
-
-        * GtkLauncher/GtkLauncher.pro:
-        * GtkLauncher/main.c: Added.
-        (activate_url_entry_cb):
-        (update_title):
-        (link_hover_cb):
-        (title_change_cb):
-        (progress_change_cb):
-        (destroy_cb):
-        (go_back_cb):
-        (go_forward_cb):
-        (create_browser):
-        (create_statusbar):
-        (create_toolbar):
-        (create_window):
-        (main):
-        * GtkLauncher/main.cpp: Removed.
-
-2007-11-19  Kevin Ollivier  <kevino@theolliviers.com>
-
-        Build script fixes to ensure they do the right thing for the
-        wx port, and update build-wxwebkit to reflect the way the
-        build scripts now work.
-
-        Reviewed by Adam.
-
-        * Scripts/build-testkjs:
-        * Scripts/build-webkit:
-        * Scripts/run-javascriptcore-tests:
-        * Scripts/webkitdirs.pm:
-        * wx/build-wxwebkit:
-
-2007-11-18  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Anders.
-
-        Make run-javascriptcore-tests report failures on exit (to support git bisect)
-
-        * Scripts/run-javascriptcore-tests:
-
-2007-11-18  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Make run-webkit-tests work with Windows debug build.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp: (main): Only use memory checks with debug CRT.
-        * DumpRenderTree/win/DumpRenderTree.vcproj: Switched Debug configuration to release CRT,
-        as it is supposed to run with release Apple libraries. Removed _DEBUG preprocessor
-        symbol, as it goes with debug CRT (AFAIK, it is supposed to be added automatically,
-        and shouldn't be needed in Debug_internal configuration, but I didn't dare to change that).
-
-2007-11-18  Kevin Ollivier  <kevino@theolliviers.com>
-
-        Add wxWebKit sample and build script, and integrate it with
-        build-webkit. Also make build-webkit --clean work for all
-        ports.
-
-        Reviewed by Darin Adler.
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-        * wx: Added.
-        * wx/browser: Added.
-        * wx/browser/browser.bkl: Added.
-        * wx/browser/browser.cpp: Added.
-        * wx/build-wxwebkit: Added.
-
-2007-11-17  Adam Roben  <aroben@apple.com>
-
-        Make it easy to run Safari in the debugger on Windows
-
-        I've added a new script, debug-safari, which launches Safari in the
-        debugger. On OS X it just calls gdb-safari.
-
-        Reviewed by Mark Rowe.
-
-        * FindSafari/FindSafari.cpp:
-        (_tmain): Added a /debugger flag, which in combination with
-        /printSafariLauncher will print a script that launches Safari in the
-        debugger.
-        * Scripts/debug-safari: Added.
-        * Scripts/run-safari: Changed to call runSafari().
-        * Scripts/run-webkit-nightly.cmd: Prepends the launcher script with
-        vsvars32.bat, which will let us find VS/VC++ Express, and passes the
-        first argument along to FindSafari.
-        * Scripts/webkitdirs.pm:
-        (sub runSafari): Added.
-
-2007-11-16  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        * Scripts/run-webkit-tests: Avoid an uninitialized warning if WEBKIT_TESTFONTS is not defined.
-
-2007-11-16  Ryan Leavengood  <leavengood@gmail.com>
-
-        Reviewed by David Kilzer.
-
-        The git config command was renamed to repo-config at some point. This
-        change tries git config and then git repo-config if the first fails.
-
-        * Scripts/prepare-ChangeLog:
-        (gitConfig):
-
-2007-11-16  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Darin Adler and Sam Weinig.
-
-        - fix <rdar://problem/5134075> fast/forms/select-type-ahead-non-latin.html fails on Windows
-
-        * DumpRenderTree/win/EventSender.cpp:
-        (keyDownCallback): For characters that cannot be entered on the active
-        keyboard layout, send a WM_CHAR message with the character along with
-        a WM_KEYDOWN message with a virtual key code of 255.
-
-2007-11-16  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Tim Hatcher.
-
-        Don't weak link against WebCore now that it is a sub-framework of WebKit in all configurations.
-
-        * Drosera/mac/Drosera.xcodeproj/project.pbxproj:
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-
-2007-11-15  Adam Roben  <aroben@apple.com>
-
-        Make run-safari actually work on Windows
-
-        * Scripts/run-safari: Fixed the order of arguments to cp, and added a
-        chdir call.
-
-2007-11-14  Adam Roben  <aroben@apple.com>
-
-        Updates to Safari launching now that 3.0.4 is released
-
-        Reviewed by Sam.
-
-        * FindSafari/FindSafari.cpp:
-        (getWebViewCLSID): Use version-independent ProgID.
-        * Scripts/run-safari: Use run-webkit-nightly.cmd.
-
-2007-11-14  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Adam.
-
-        <rdar://problem/5309081>
-        In DRT, "plugin.logDestroy = true" not working on Windows.
-
-        * DumpRenderTree/win/TestNetscapePlugin/main.c:
-        (NPP_Destroy):
-
-2007-11-14  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Sam.
-
-        * Scripts/run-sunspider: add --shark-cache for L2 Cache Miss profiling
-
-2007-11-14  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Adam.
-
-        <rdar://problem/5141186>
-        window.layoutTestController.setWindowIsKey is not implemented in DRT.
-
-        Implement setWindowIsKey.
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setWindowIsKey):
-
-2007-11-13  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Fix for <rdar://problem/5382579>
-        http/tests/security/cross-frame-access-put.html reports large
-        negative numbers for screenLeft and screenTop (Mac reports "0")
-
-        * DumpRenderTree/win/UIDelegate.cpp:
-        (UIDelegate::UIDelegate): Initialize the RECT.
-        (UIDelegate::setFrame): copy the contents of the rect, not the pointer.
-        (UIDelegate::webViewFrame): ditto.
-        * DumpRenderTree/win/UIDelegate.h: Use a RECT not a RECT*
-
-2007-11-13  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Adam.
-
-        - Make Drosera show source, source URLs, and function stack on Windows,
-        and some minor fixes.
-
-        * Drosera/DebuggerDocument.cpp: Force source to always update display.
-        (DebuggerDocument::updateFileSource):
-        * Drosera/debugger.js: Force source to always update display.
-        * Drosera/win/DebuggerClient.cpp: Create the needed functions for the
-        menu controls.
-        (DebuggerClient::resume):
-        (DebuggerClient::pause):
-        (DebuggerClient::stepInto):
-        (DebuggerClient::stepOver):
-        (DebuggerClient::stepOut):
-        (DebuggerClient::showConsole):
-        (DebuggerClient::closeCurrentFile):
-        * Drosera/win/DebuggerClient.h: Ditto.
-        * Drosera/win/DebuggerDocumentPlatform.cpp: Changed
-        getPlatformCurrentFunctionStack to not use an unecessary HRESULT and
-        removed two bugs.  1) caller could be in a bad state when asked to
-        assign into it. 2) BSTRs were not created correctly.
-        (DebuggerDocument::getPlatformCurrentFunctionStack):
-        * Drosera/win/Drosera.cpp: Hook up the menu controls.
-        (droseraWndProc):
-        (handleCommand):
-        (Drosera::resume):
-        (Drosera::pause):
-        (Drosera::stepInto):
-        (Drosera::stepOver):
-        (Drosera::stepOut):
-        (Drosera::showConsole):
-        (Drosera::closeCurrentFile):
-        * Drosera/win/Drosera.h: Hook up the menu controls.
-        * Drosera/win/ServerConnection.cpp: Removed unncessary server connection
-        functions, added a null check, and fixed another bug where caller could
-        be in a bad state when asked to assign into it.
-        (ServerConnection::didLoadMainResourceForDataSource):
-        (ServerConnection::getCallerFrame):
-        * Drosera/win/ServerConnection.h: Safety first.
-
-2007-11-13  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Darin Adler.
-
-        - fix <http://bugs.webkit.org/show_bug.cgi?id=13371>
-          DumpRenderTree --pixel-tests renders each test twice
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dumpRenderTree): Removed the --paint option because the painting code
-        is always exercised as a result of
-        -[FrameLoadDelegate webView:didFinishLoadFromFrame:]
-        calling -displayIfNeeded.
-        (dump): Changed to always grab the image from the window since the view
-        is always displayed.
-        (runTest):
-        (displayWebView):
-        * Scripts/run-webkit-tests: No need to pass --paint to DumpRenderTree
-        because it always paints.
-
-2007-11-12  Antti Koivisto  <antti@apple.com>
-
-        Reviewed by Adele.
-
-        Add support for http media tests
-
-        * Scripts/run-webkit-tests:
-
-2007-11-12  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Implement LayoutTestController.setPrivateBrowsingEnabled(bool) for windows.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (runTest):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setPrivateBrowsingEnabled):
-
-2007-11-12  Adam Roben  <aroben@apple.com>
-
-        * Scripts/update-webkit-localizable-strings: Changed to only scan the
-        mac and win subdirectories.
-
-2007-11-11  Adam Roben  <aroben@apple.com>
-
-        Fix <rdar://5133816> keepWebHistory is not implemented
-
-        Fixes fast/history/clicked-link-is-visited.html.
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (runTest): Clear the optionalSharedHistory.
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::keepWebHistory): Set the optionalSharedHistory.
-
-2007-11-10  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Tim Hatcher.
-
-        Follow up to <rdar://problem/5394877> Safari should not log unsafe JavaScript
-        attempts when in private browsing mode (only an issue if Log JavaScript Exceptions
-        is turned on)
-
-        - Add LayoutTestController.setPrivateBrowsingEnabled(bool) (stub out implementation for windows)
-
-        Added test: http/tests/security/cross-frame-access-private-browsing.html
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setPrivateBrowsingEnabledCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (runTest): Default to private browsing disabled.
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setPrivateBrowsingEnabled):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setPrivateBrowsingEnabled):
-
-2007-11-08  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Adam.
-
-        - Changed the vcproj file to use Drosera's ForwardingHeaders and not
-        WebCore's!
-
-        * Drosera/ForwardingHeaders/wtf/Assertions.h: Added.
-        * Drosera/ForwardingHeaders/wtf/HashTraits.h: Added.
-        * Drosera/ForwardingHeaders/wtf/Noncopyable.h: Added.
-        * Drosera/ForwardingHeaders/wtf/OwnPtr.h: Added.
-        * Drosera/ForwardingHeaders/wtf/RetainPtr.h: Added.
-        * Drosera/win/Drosera.cpp:
-        * Drosera/win/Drosera.vcproj/Drosera.vcproj:
-
-2007-11-08  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Sam.
-
-        - Use the new IWebFrame [local] function signature and get the shared
-        server correctly.
-
-        * Drosera/win/DebuggerClient.cpp:
-        (DebuggerClient::didFinishLoadForFrame):
-        * Drosera/win/ServerConnection.cpp:
-        (ServerConnection::attemptToCreateServerConnection):
-
-2007-11-07  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Darin Adler.
-
-        - add an option to run-webkit-tests to ignore pixel test failures where
-          all pixels differ by no more than a specified threshold
-
-        * DumpRenderTree/mac/ImageDiff.m:
-        (main):
-        (compareImages):
-        (computePercentageDifferent):
-        * Scripts/run-webkit-tests:
-
-2007-11-07  Simon Hausmann  <hausmann@kde.org>
-
-        Reviewed by Lars.
-
-        Make the setting of letting Javascript access the clipboard configurable through QWebSettings, turn it off by default and turn it on in DumpRenderTree.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-
-2007-11-07  Simon Hausmann  <hausmann@kde.org>
-
-        Reviewed by Lars.
-
-        Reworked the QWebSettings API.
-        QWebPage now returns a pointer to its mutable QWebSettings object and the settings of newly created QWebPageObjects are initialized from QWebSettings::defaultSettings().
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-
-2007-11-07  Simon Hausmann  <hausmann@kde.org>
-
-        Reviewed by Lars.
-
-        Make QWebHistory an explicitly shared object, returned as a pointer by QWebPage::history().
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-
-2007-11-07  Simon Hausmann  <hausmann@kde.org>
-
-        Reviewed by Lars Knoll <lars@trolltech.com>.
-
-        Add a QWebPage::frameCreated() signal and fix DRT
-
-        The removal of createFrame in QWebPage broke the re-implementation
-        in DumpRenderTree. Instead emit a frameCreated() signal and
-        connect to it in DumpRenderTree.
-
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::WebPage::WebPage):
-        (WebCore::DumpRenderTree::dump):
-        (WebCore::DumpRenderTree::connectFrame):
-        * DumpRenderTree/qt/DumpRenderTree.h:
-
-2007-11-07  Simon Hausmann  <hausmann@kde.org>
-
-        Reviewed by Lars Knoll <lars@trolltech.com>.
-
-        Moved all the event handlers from QWebFrame into QWebPage.
-
-        This cleans up the public API and allows us to remove the
-        HackWebFrame hack in DumpRenderTree.
-
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (EventSender::mouseDown):
-        (EventSender::mouseUp):
-        (EventSender::mouseMoveTo):
-
-2007-11-07  Simon Hausmann  <hausmann@kde.org>
-
-        Reviewed by Mark.
-
-        Implemented the two Javascript prompt callbacks in qt/DumpRenderTree
-        to prevent the default implementation from popping up messageboxes.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::WebPage::javaScriptConfirm):
-        (WebCore::WebPage::javaScriptPrompt):
-
-2007-11-06  Eric Seidel  <eric@webkit.org>
-
-        * Scripts/build-testkjs: build fix... too many $$
-
-2007-11-06  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        * Scripts/build-testkjs: return xcodebuild's exit status, instead of grep's
-
-2007-11-05  Adam Roben  <aroben@apple.com>
-
-        Add support on Windows for WEBKIT_TESTFONTS
-
-        This environment variable lets you specify where the fonts to be used
-        by DumpRenderTree reside. The Qt port is already using this, so I'm
-        just following their lead.
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (exePath): Refactored code out of initialize().
-        (fontsPath): Returns either $WEBKIT_TESTFONTS or
-        DumpRenderTree.resources.
-        (initialize): Use the new fontsPath function.
-        (main): Use the new exePath function.
-        * Scripts/run-webkit-tests: Propagate the WEBKIT_TESTFONTS environment
-        variable to DRT, like Qt does.
-
-2007-11-05  Mark Rowe  <mrowe@apple.com>
-
-        Rubber-stamped by Alp Toker.
-
-        Remove buggy "autocomplete" from GtkLauncher as it causes more problems than it solves.
-
-        * GtkLauncher/main.cpp:
-        (goToURLBarText):
-        (main):
-
-2007-11-04  David D. Kilzer  <ddkilzer@webkit.org>
-
-        bisect-builds doesn't work with nightly build r19992 or newer on Leopard
-        <http://bugs.webkit.org/show_bug.cgi?id=15830>
-
-        Reviewed by Timothy.
-
-        Restrict the range of nightly builds used by the bisect-builds script
-        based on the version of Safari and the version of Mac OS X being used.
-
-        Mac OS X 10.4: Safari 2.0: r11976 or newer
-        Mac OS X 10.4: Safari 3.0: r19992 or newer
-
-        Mac OS X 10.5: Safari 2.0: r19594 or newer
-        Mac OS X 10.5: Safari 3.0: r25124 or newer
-
-        * Scripts/bisect-builds:
-        (findMacOSXVersion): Added.
-        (makeNightlyList): Added argument to provide version of Mac OS X.
-        Restrict range of nightly builds based on Safari and Mac OS X versions.
-
-2007-11-04  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Maciej.
-
-        - This patch involves several changes, all of them were noticed that
-        they were needed by the work being done in WebKit to get Drosera and
-        WebKit working together on Windows.
-        - The changes are:
-        1) Added a debugger console for output messages.
-        2) Drosera now listens for the WebKit server (before, the server would
-        have to be running before Drosera was started.)
-        3) Fixed a bug where the WebView started out as 0x0 pixels.
-        4) Fixed a bug when there is no scope.
-        5) Added the HTML, JS, and CSS to the project file to make them easy to
-        find.
-        6) Made the ServerConnection functions virtual.
-
-        * Drosera/win/DebuggerClient.cpp: This is part of how Drosera listens
-        for the WebKit server.
-        (DebuggerClient::DebuggerClient):
-        (DebuggerClient::~DebuggerClient):
-        (DebuggerClient::didFinishLoadForFrame):
-        (DebuggerClient::serverConnected):
-        (DebuggerClient::attemptToCreateServerConnection):
-        * Drosera/win/DebuggerClient.h: Ditto.
-        * Drosera/win/DebuggerDocumentPlatform.cpp: Fixed a bug when there is no
-        scope.
-        (DebuggerDocument::getPlatformLocalScopeVariableNamesForCallFrame):
-        (DebuggerDocument::platformValueForScopeVariableNamed):
-        * Drosera/win/Drosera.cpp:
-        (_tWinMain): Added a console in debug for output messages.
-        (Drosera::Drosera): Listen for server.
-        (Drosera::initUI): The server now Initializes COM.
-        (Drosera::serverConnected): Part of the listening for the server.
-        (Drosera::attemptToCreateServerConnection): Ditto.
-        * Drosera/win/Drosera.h: New interface for listening for the server.
-        * Drosera/win/Drosera.vcproj/Drosera.vcproj: Added HTML, JS, and CSS
-        files to the VS project.
-        * Drosera/win/ServerConnection.cpp: Part of listening for the server
-        connection.
-        (ServerConnection::ServerConnection):
-        (ServerConnection::attemptToCreateServerConnection):
-        * Drosera/win/ServerConnection.h: Ditto and virtualized the Interface
-        methods.
-        (ServerConnection::serverConnected):
-
-2007-11-04  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reviewed by Maciej.
-
-        http://bugs.webkit.org/show_bug.cgi?id=15832
-        fast/dom/gc-10.html crashes when run alone
-
-        Check for !done before using objects that can be already deallocated.
-
-        * DumpRenderTree/mac/EditingDelegate.mm:
-        (-[EditingDelegate webView:shouldBeginEditingInDOMRange:]):
-        (-[EditingDelegate webView:shouldEndEditingInDOMRange:]):
-        (-[EditingDelegate webView:shouldInsertNode:replacingDOMRange:givenAction:]):
-        (-[EditingDelegate webView:shouldInsertText:replacingDOMRange:givenAction:]):
-        (-[EditingDelegate webView:shouldDeleteDOMRange:]):
-        (-[EditingDelegate webView:shouldChangeSelectedDOMRange:toDOMRange:affinity:stillSelecting:]):
-        (-[EditingDelegate webView:shouldApplyStyle:toElementsInDOMRange:]):
-        (-[EditingDelegate webView:shouldChangeTypingStyle:toStyle:]):
-        (-[EditingDelegate webViewDidBeginEditing:]):
-        (-[EditingDelegate webViewDidChange:]):
-        (-[EditingDelegate webViewDidEndEditing:]):
-        (-[EditingDelegate webViewDidChangeTypingStyle:]):
-        (-[EditingDelegate webViewDidChangeSelection:]):
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate webView:didStartProvisionalLoadForFrame:]):
-        (-[FrameLoadDelegate webView:didCommitLoadForFrame:]):
-        (-[FrameLoadDelegate webView:didFailProvisionalLoadWithError:forFrame:]):
-        (-[FrameLoadDelegate webView:didFinishLoadForFrame:]):
-        (-[FrameLoadDelegate webView:didFailLoadWithError:forFrame:]):
-        (-[FrameLoadDelegate webView:windowScriptObjectAvailable:]):
-        (-[FrameLoadDelegate webView:didClearWindowObject:forFrame:]):
-        (-[FrameLoadDelegate webView:didReceiveTitle:forFrame:]):
-        (-[FrameLoadDelegate webView:didReceiveServerRedirectForProvisionalLoadForFrame:]):
-        (-[FrameLoadDelegate webView:didReceiveIcon:forFrame:]):
-        (-[FrameLoadDelegate webView:didChangeLocationWithinPageForFrame:]):
-        (-[FrameLoadDelegate webView:willPerformClientRedirectToURL:delay:fireDate:forFrame:]):
-        (-[FrameLoadDelegate webView:didCancelClientRedirectForFrame:]):
-        (-[FrameLoadDelegate webView:willCloseFrame:]):
-        (-[FrameLoadDelegate webView:didFinishDocumentLoadForFrame:]):
-        (-[FrameLoadDelegate webView:didHandleOnloadEventsForFrame:]):
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        (-[ResourceLoadDelegate webView:identifierForInitialRequest:fromDataSource:]):
-        (-[ResourceLoadDelegate webView:resource:willSendRequest:redirectResponse:fromDataSource:]):
-        (-[ResourceLoadDelegate webView:resource:didReceiveResponse:fromDataSource:]):
-        (-[ResourceLoadDelegate webView:resource:didFinishLoadingFromDataSource:]):
-        (-[ResourceLoadDelegate webView:resource:didFailLoadingWithError:fromDataSource:]):
-        (-[ResourceLoadDelegate webView:resource:willCacheResponse:fromDataSource:]):
-
-2007-11-04  Mark Rowe  <mrowe@apple.com>
-
-        Build fix.  Don't use Carbon.h as the prefix header as it triggers
-        warnings that would otherwise be suppressed due to it being a system header.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-
-2007-11-03  Maciej Stachowiak  <mjs@apple.com>
-
-        Rubber stamped by Adam.
-
-        - Turn off deprecated function warnings for TestNetscapePlugin because Carbon.h triggers them
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-
-2007-11-03  David D. Kilzer  <ddkilzer@webkit.org>
-
-        Sort files(...); sections of Xcode project files.
-
-        Rubber-stamped by Darin Adler.
-
-        * DrawTest/DrawTest.xcodeproj/project.pbxproj:
-        * Drosera/mac/Drosera.xcodeproj/project.pbxproj:
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * WebKitLauncher/WebKitLauncher.xcodeproj/project.pbxproj:
-
-2007-11-03  David D. Kilzer  <ddkilzer@webkit.org>
-
-        Script to sort "files(...);" sections in Xcode project.pbxproj files.
-
-        Reviewed by Darin Adler.
-
-        * Scripts/sort-Xcode-project-file: Added.
-
-2007-11-02  Darin Adler  <darin@apple.com>
-
-        * Scripts/run-sunspider: Changed "--base" to "--set-baseline".
-
-2007-11-02  Darin Adler  <darin@apple.com>
-
-        Reviewed by Maciej.
-
-        * Scripts/run-sunspider: Pass the "--base" option through.
-
-        * Scripts/sunspider-compare-results: Don't check the number of parameters; let
-        the real script do that. Default configuration to Release to match run-sunspider
-        so we don't end up building Debug just to compare results.
-
-2007-11-01  Adam Roben  <aroben@apple.com>
-
-        Make changes in WebKit/win show up under "WebKit/win:" instead of just "win:"
-
-        Reviewed by Sam.
-
-        * Scripts/commit-log-editor: Show all the directories beneath the
-        source root, instead of just the last one.
-
-2007-11-01  Kevin Ollivier  <kevino@theolliviers.com>
-
-        Reviewed by Adam Roben.
-
-        Print out an error message when the Windows build fails
-        and provide guidance on how to find out what went wrong.
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-
-2007-11-01  Alexey Proskuryakov  <ap@webkit.org>
-
-        Rubber-stamped by Adam Roben.
-
-        Rolled out r27326 - debug CRT seems to cause no problems after all.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-
-2007-10-31  Adam Roben  <aroben@apple.com>
-
-        Switch the Debug configuration to using the non-debug CRT
-
-        This matches WebKit.
-
-        Reviewed by Steve.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-
-2007-10-31  Antti Koivisto  <antti@apple.com>
-
-        Reviewed by bdash.
-
-        Disable media tests when doing leak checking on Tiger.
-        They crash in QuickTime (rdar://problem/5537157).
-
-        * Scripts/run-webkit-tests:
-
-2007-10-29  Antti Koivisto  <antti@apple.com>
-
-        Reviewed by Maciej.
-
-        Build media support by default on OSX only.
-
-        * Scripts/build-webkit:
-
-2007-10-30  Kevin McCullough  <kmccullough@apple.com>
-
-        - Made Adam the reviewer for a previous checkin. Not sure how it didn't
-        get caught by the pre-commit hooks.
-
-2007-10-30  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Adam.
-
-        - This is a collection of relatively unrelated changes and cleanups
-        to Drosera to prepare it for interacting with WebKit.  A lot of these
-        changes are just correcting mistakes, for example removing included
-        headers that are no longer needed.
-
-        * Drosera/DebuggerDocument.h: Added accessor for the ServerConnection
-        this will be needed by the DebuggerClient.
-        (DebuggerDocument::server):
-        * Drosera/win/BaseDelegate.h: Removed unnecessary include.
-        * Drosera/win/DebuggerClient.cpp:
-        (DebuggerClient::didFinishLoadForFrame): Finished implementing.
-        (DebuggerClient::didReceiveTitle): Added comment about its purpose.
-        (DebuggerClient::createWebViewWithRequest): Added comment about its
-        purpose.
-        * Drosera/win/DebuggerClient.h: Removed unnecessary include, and forward
-        declarations.
-        (DebuggerClient::webViewLoaded): Moved.
-        * Drosera/win/Drosera.cpp: Moved a function from the HelperFunctions
-        file, since this was the only place it was used.
-        (cfStringToBSTR):
-        * Drosera/win/Drosera.h: Cleaned up the includes.
-        * Drosera/win/Drosera.vcproj/Drosera.vcproj: Removed HelperFunctions.h
-        * Drosera/win/HelperFunctions.h: Removed.
-
-2007-10-30  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Adam.
-
-        - Small cleanup in the ServerConnection class.
-
-        * Drosera/win/ServerConnection.cpp: Added comments, moved some functions
-        and added an include.
-        (ServerConnection::currentFrame):
-        (ServerConnection::getCallerFrame):
-        * Drosera/win/ServerConnection.h: Added comments, moved some functions,
-        made a pointer into a COMPtr, and cleaned up the includes.
-
-2007-10-29  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by John Sullivan.
-
-        - Place the Localizable.strings file in mac or win directories
-          if that location exists.
-        - Also look for UI_STRING in .c files.
-
-        * Scripts/extract-localizable-strings:
-
-2007-10-30  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Adam.
-
-        - Set the eol-style to native and made all the line endings the same
-        so that I avoid messy diffs that show eol changes.
-
-        * Drosera/win/ServerConnection.cpp:
-        (ServerConnection::didParseSource):
-        (ServerConnection::didEnterCallFrame):
-        (ServerConnection::willExecuteStatement):
-        (ServerConnection::willLeaveCallFrame):
-        (ServerConnection::exceptionWasRaised):
-
-2007-10-30  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Adam.
-
-        * Drosera/win/DebuggerDocumentPlatform.cpp:Implemented much of the
-        functionality that could not have existed previously without the new
-        interfaces.
-        (JSValueRefCreateWithBSTR): Added a helper function to easily convert
-        from a BSTR to a JSValueRef.
-        (DebuggerDocument::platformEvaluateScript): Implemented.
-        (DebuggerDocument::getPlatformCurrentFunctionStack): Implemented.
-        (DebuggerDocument::getPlatformLocalScopeVariableNamesForCallFrame):
-        Implemented.
-        (DebuggerDocument::platformValueForScopeVariableNamed): Implemented.
-        * Drosera/win/HelperFunctions.h: Cleaned up some comments.
-        * Drosera/win/ServerConnection.cpp: Added a helper function.
-        (ServerConnection::getCallerFrame):
-        * Drosera/win/ServerConnection.h: Added a helper function.
-
-2007-10-29  Kevin McCullough  <kmccullough@apple.com>
-
-        updated reviewers for my previous changelog.
-
-2007-10-29  Kevin McCullough  <kmccullough@apple.com>
-        Reviewed by Maciej and Adam and Geoff.
-
-        - Minor mac-side improvements including moving a function to a more
-        appropriate location, fixing a warning, and correctly checking
-        exceptions.
-
-        * Drosera/DebuggerDocument.cpp: Corrected the exception checking.
-        (DebuggerDocument::willExecuteStatement):
-        (DebuggerDocument::didEnterCallFrame):
-        (DebuggerDocument::willLeaveCallFrame):
-        (DebuggerDocument::windowScriptObjectAvailable):
-        (DebuggerDocument::callFunctionOnObject):
-        * Drosera/mac/DebuggerClient.mm: Fixes a warning.
-        * Drosera/mac/DebuggerDocumentPlatform.mm: Moved
-        webScriptAttributeKeysForScriptObject to DebuggerDocumentPlatform
-        because it doesn't require the ServerConnection at all.
-        (NSStringCreateWithJSStringRef): Made an argument const.
-        (JSValueRefCreateWithNSString): Made an argument const.
-        (+[WebScriptObject webScriptAttributeKeysForScriptObject:]):
-        (DebuggerDocument::getPlatformLocalScopeVariableNamesForCallFrame):
-        * Drosera/mac/ServerConnection.h: Moved aforementioned function.
-        * Drosera/mac/ServerConnection.mm: Ditto.
-        (-[ServerConnection webView:didLoadMainResourceForDataSource:]):
-
-2007-10-29  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Add a globalFlag property to the LayoutTestController to allow cross-domain indications.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (getGlobalFlagCallback):
-        (setGlobalFlagCallback):
-        (LayoutTestController::getJSClass):
-        (LayoutTestController::staticValues):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::globalFlag):
-        (LayoutTestController::setGlobalFlag):
-
-2007-10-29  Darin Adler  <darin@apple.com>
-
-        Reviewed by Maciej.
-
-        * Scripts/run-sunspider: Added --shark20 option, to run Shark at its highest sample
-        resolution instead of its default.
-
-2007-10-29  David Kilzer  <ddkilzer@webkit.org>
-
-        Fixed showStatus() to print status for successfully resolved conflicts when using git.
-
-        Reviewed by Mark Rowe.
-
-        Previously showStatus() would run "git diff --name-status" after a ChangeLog conflict
-        was successfully resolved, but this would not show any status because the change had
-        already been cached in the index using "git add".  The solution is to add an optional
-        second argument to showStatus() which adds the "--cached" switch to the command.
-
-        * Scripts/resolve-ChangeLogs:
-        (showStatus):
-
-2007-10-28  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Maciej and Geoff, in unison.
-
-        * Scripts/run-webkit-tests: remove broken --svg option
-
-2007-10-28  Darin Adler  <darin@apple.com>
-
-        Reviewed by Adam.
-
-        * Scripts/run-sunspider: Default to "Release" configuration rather than
-        defaulting to the last configuration used as other scripts do. This can
-        still be overriden on the command line with "--debug" if there's some
-        reason to do so. Also fix a typo.
-
-        * Scripts/sunspider-compare-results: Fix a typo.
-
-2007-10-26  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Adam.
-
-        - Implemented the WebScriptDebugListener functions now that the
-        WebScriptDebugServer exists
-
-        * Drosera/win/ServerConnection.cpp: Implemented WebScriptDebugListener
-        functions.
-        (ServerConnection::currentFrame):
-        (ServerConnection::didLoadMainResourceForDataSource):
-        (ServerConnection::didParseSource):
-        (ServerConnection::failedToParseSource):
-        (ServerConnection::didEnterCallFrame):
-        (ServerConnection::willExecuteStatement):
-        (ServerConnection::willLeaveCallFrame):
-        (ServerConnection::exceptionWasRaised):
-        * Drosera/win/ServerConnection.h: Removed unused arguments from the
-        members arguments list.
-
-2007-10-26  David Kilzer  <ddkilzer@webkit.org>
-
-        prepare-ChangeLog and update-webkit create needless ChangeLog conflicts
-        <http://bugs.webkit.org/show_bug.cgi?id=15600>
-
-        Reviewed by Darin Adler.
-
-        The resolve-ChangeLog script merges conflicted ChangeLogs in svn or git by creating
-        a patch of the local changes and applying it with a fuzz level of 3 to the new file.
-        If the patch is successful, it runs 'svn resolved' or 'git add' on the new ChangeLog
-        file.  Note that it may also be used as a stand-alone script.
-
-        * Scripts/prepare-ChangeLog: Call resolve-ChangeLogs for conflicted ChangeLog files.
-        * Scripts/resolve-ChangeLogs: Added.
-        * Scripts/update-webkit: Call resolve-ChangeLogs for conflicted ChangeLog files.
-
-2007-10-26  Mark Rowe  <mrowe@apple.com>
-
-        Qt build fix.  r27084 added a destructor implementation for LayoutTestController
-        to the Qt port on the assumption that it was an implementation of the cross-platform
-        LayoutTestController class.  It is not, so it did not need to be changed.
-
-        * DumpRenderTree/qt/jsobjects.cpp: Remove empty destructor.
-
-2007-10-25  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Maciej.
-
-        Fix builds with code coverage enabled.
-
-        * Scripts/build-webkit: Don't overwrite the existing value of OTHER_LDFLAGS.
-
-2007-10-25  Darin Adler  <darin@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        * Scripts/make-js-test-wrappers: Don't generate a wrapper for intersectsNode.js.
-        * Scripts/prepare-ChangeLog: Add a special case for prefix of empty string.
-
-2007-10-25  Stephanie  <slewis@apple.com>
-
-        build Fix
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-
-2007-10-25  Stephanie  <slewis@apple.com>
-
-        Reviewed by Mark Rowe, Adam Roben.
-
-        Weak link against WebCore so DumpRenderTree can be bundled with production roots.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-
-2007-10-25  Alice Liu  <alice.liu@apple.com>
-
-        Reviewed by Adam.
-
-        Fixed <rdar://5549689> 2 tests in fast/forms fail when run with other tests on Windows
-
-        Moving destructor into platform-specific files
-        * DumpRenderTree/LayoutTestController.cpp:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::~LayoutTestController):
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::~LayoutTestController):
-
-        LayoutTestController wasn't being destroyed
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (runTest):
-
-        Added declspec
-        * DumpRenderTree/win/EditingDelegate.h:
-
-        Reset certain values on the webview (or related delegate) that might
-        have changed while running a test
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::~LayoutTestController):
-
-2007-10-25  Adam Roben  <aroben@apple.com>
-
-        Make sunspider-compare-results work with relative paths
-
-        Reviewed by Sam.
-
-        * Scripts/sunspider-compare-results: Convert arguments to absolute
-        paths before we chdir.
-
-2007-10-25  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Sam.
-
-        - Implemented server calls now the WebScriptDebugServer exists.
-        - Also removed no longer needed call to initialize CG.
-
-        * Drosera/win/Drosera.cpp: No longer initializes CG because this happens
-        automatically now.
-        (_tWinMain):
-        * Drosera/win/ServerConnection.cpp: Now uses the COM class.
-        (ServerConnection::ServerConnection):
-        (ServerConnection::~ServerConnection):
-        (ServerConnection::pause):
-        (ServerConnection::resume):
-        (ServerConnection::stepInto):
-        (ServerConnection::applicationTerminating):
-        (ServerConnection::serverConnectionDidDie):
-        * Drosera/win/ServerConnection.h: Now uses the COM class.
-
-2007-10-24  George Staikos  <staikos@kde.org>
-
-        Unbreak Qt build.
-
-        * Scripts/build-webkit:
-
-2007-10-24  Adam Roben  <aroben@apple.com>
-
-        Remove now-unnecessary call to InitializeCoreGraphics
-
-        WebKit takes care of this now.
-
-        Reviewed by Ada.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (initialize):
-
-2007-10-24  Adam Roben  <aroben@apple.com>
-
-        Use WebTextRenderer in DRT
-
-        Reviewed by Ada.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (initialize): Use WebTextRenderer instead of using AddFontResourceEx.
-
-2007-10-24  Sven Herzberg  <sven@imendio.com>
-
-        Reviewed by Mark Rowe.
-
-        Fixes http://bugs.webkit.org/show_bug.cgi?id=15614
-        Bug 15614: [GTK] qmake based backends don't build on OS X
-
-        * Scripts/build-webkit: set QMAKESPEC correctly if building the QT or
-        GTK backend on a Mac
-        * Scripts/webkitdirs.pm: extracted the darwin-test from isOSX() into
-        isDarwin() to make it reusable in other places (like the workaround-
-        for-prebuilt-qmake in build-webkit)
-
-2007-10-24  David Kilzer  <ddkilzer@webkit.org>
-
-        Refurbish update-webkit script.
-
-        Reviewed by Adam.
-
-        * Scripts/update-webkit: Add -h|--help switch and usage statement.  Check result of
-        GetOptions() call.  Fix -q|--quiet switch to be passed to svn command properly.  Use
-        multi-argument version of system() for flexibility and security.  Check for existence
-        of Internal directory using -d test instead of -x.
-
-2007-10-24  David Kilzer  <ddkilzer@webkit.org>
-
-        Minor clean-up of prepare-ChangeLog script.
-
-        Reviewed by Adam.
-
-        * Scripts/prepare-ChangeLog: Keep list of updated ChangeLog files in an array instead
-        of a string.  Use multi-argument versions of open() and system() for flexibility and
-        security.
-
-2007-10-24  Alice Liu  <alice.liu@apple.com>
-
-        Reviewed by Oliver.
-
-        Fix <rdar://5410959>  editing/selection/drag-to-contenteditable-iframe.html fails on Windows
-
-        Move the call to replaySavedEvents from doDragDrop to doMouseMove because we don't want to
-        replay the saved events when we're still processing the mousedown that starts the drag
-        * DumpRenderTree/win/EventSender.cpp:
-        (doMouseMove):
-        * DumpRenderTree/win/UIDelegate.cpp:
-        (UIDelegate::doDragDrop):
-
-2007-10-24  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Sam, Steve and Darin.
-
-        - Stubbed out the WebScriptDebugListener functionality in the Server
-        Connection class to prepare it for receiving those callbacks.
-        - Also I changed the instantiation of DebuggerClient, DebuggerDocument
-        and the ServerConnection to not need to be initialized with a server
-        name, since that is not the way we connect to the WebKit server.
-
-        * Drosera/DebuggerDocument.cpp: Fixed a bug where I was always logging
-        no exception.  Now it only loggs when there is an exception
-        (DebuggerDocument::willExecuteStatement):
-        (DebuggerDocument::didEnterCallFrame):
-        (DebuggerDocument::willLeaveCallFrame):
-        (DebuggerDocument::windowScriptObjectAvailable):
-        (DebuggerDocument::callFunctionOnObject):
-        * Drosera/win/DebuggerClient.cpp: No longer needs the ServerConnection
-        to be instantiated with a server's name.
-        (DebuggerClient::DebuggerClient):
-        (DebuggerClient::didFinishLoadForFrame):
-        * Drosera/win/DebuggerClient.h: Removed unsued variable.
-        * Drosera/win/Drosera.cpp: Client no longer needs to be initialized with
-        a server name.
-        (Drosera::init):
-        (Drosera::initServer):
-        * Drosera/win/Drosera.h: No longer need the ServerConnection to be
-        instantiated with a server's name.
-        * Drosera/win/ServerConnection.cpp:
-        (ServerConnection::ServerConnection): No longer needs a server name
-        (ServerConnection::~ServerConnection): Only release the global context
-        if there is one.
-        (ServerConnection::serverConnectionDidDie): Stub for
-        IWebScriptDebugListener
-        (ServerConnection::QueryInterface): ditto
-        (ServerConnection::AddRef): ditto
-        (ServerConnection::Release): ditto
-        (ServerConnection::didLoadMainResourceForDataSource): ditto
-        (ServerConnection::didParseSource): ditto
-        (ServerConnection::failedToParseSource): ditto
-        (ServerConnection::didEnterCallFrame): ditto
-        (ServerConnection::willExecuteStatement): ditto
-        (ServerConnection::willLeaveCallFrame): ditto
-        (ServerConnection::exceptionWasRaised): ditto
-        * Drosera/win/ServerConnection.h: Stubbed out the
-        IWebScriptDebugListener functions, and this class no longer needs to be
-        instantiated with a server name.
-
-2007-10-24  Lars Knoll  <lars@trolltech.com>
-
-        Reviewed by Simon.
-
-        add a layoutTestController.dumpSelectionRect() dummy. It only has an effect on mac pixel tests anyway. Makes us pass another 5 test cases.
-
-        * DumpRenderTree/qt/jsobjects.h:
-
-2007-10-24  Lars Knoll  <lars@trolltech.com>
-
-        Reviewed by Simon.
-
-        add another command.
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (TextInputController::doCommand):
-
-2007-10-24  Lars Knoll  <lars@trolltech.com>
-
-        Reviewed by Simon.
-
-        add empty eventSender.clearKillRing(), and map some of the special keys used in eventSender.keyDown() to things that work on Qt/X11.
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (EventSender::keyDown):
-        * DumpRenderTree/qt/jsobjects.h:
-
-2007-10-24  Lars Knoll  <lars@trolltech.com>
-
-        Reviewed by Simon.
-
-        implement eventSender.keyDown().
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (EventSender::keyDown):
-
-2007-10-24  Lars Knoll  <lars@trolltech.com>
-
-        Reviewed by Simon.
-
-        some smaller fixes to the editing support in DRT. Makes another few tests pass.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::initJSObjects):
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (TextInputController::doCommand):
-
-2007-10-24  Lars Knoll  <lars@trolltech.com>
-
-        Reviewed by Simon.
-
-        first bit of implementation for the textinputcontroller.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        * DumpRenderTree/qt/DumpRenderTree.h:
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (TextInputController::TextInputController):
-        (TextInputController::doCommand):
-        * DumpRenderTree/qt/jsobjects.h:
-
-2007-10-24  Lars Knoll  <lars@trolltech.com>
-
-        Reviewed by Simon.
-
-        make the man webpage believe it has focus, so the editing tests work correctly.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-
-2007-10-24  Lars Knoll  <lars@trolltech.com>
-
-        Reviewed by Simon.
-
-        implement layoutTestController.dumpEditingCallbacks() correctly.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::dumpEditingCallbacks):
-
-2007-10-24  Lars Knoll  <lars@trolltech.com>
-
-        Reviewed by Simon.
-
-        Implement support for testing editing.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-
-2007-10-23  Sam Weinig  <sam@webkit.org>
-
-        Check for null BSTR that can be passed to the UIDelegate methods
-        from javascript null and undefined.  Fixes a failing test case on
-        Windows (fast/dom/Window/alert-undefined.html)
-
-        Reviewed by Eric Seidel.
-
-        * DumpRenderTree/win/UIDelegate.cpp:
-        (UIDelegate::runJavaScriptAlertPanelWithMessage):
-        (UIDelegate::runJavaScriptConfirmPanelWithMessage):
-        (UIDelegate::runJavaScriptTextInputPanelWithPrompt):
-        (UIDelegate::webViewAddMessageToConsole):
-
-2007-10-23  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Don't print a massive pile of setenvs from tools that automatically build testkjs.
-
-        * Scripts/build-testkjs:
-
-2007-10-23  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Darin Adler.
-
-        - add wrapper that finds the right copy of testkjs
-
-        * Scripts/sunspider-compare-results: Added.
-
-2007-10-23  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Sam.
-
-        - After talking with Steve I now see that the WebKit server must be
-        running for DCOM to create the distributed objects, which makes sense
-        and currently WebKit only allows one instance to be running at a time
-        which avoids accidentally connecting to the wrong server
-        - In light of this I have removed the code for the attach box and
-        NotificationServer and known server names, since they are all extranious
-        now.
-
-        * Drosera/win/Drosera.cpp: Removed notification classes and known server
-        names.
-        (_tWinMain): Uses init instead of initUI.
-        (droseraWndProc): No longer creats an attach dialog box.
-        (Drosera::Drosera): Does the OleInitialize so COM is ready to go and
-        it's not manditory to call init before doing COM stuff.
-        (Drosera::init): calls initUI and will call attach when the
-        functionality exists.
-        (Drosera::initUI): Has changed very little.
-        (Drosera::attach): Changed the signature to reflect that we no longer
-        need the dictionary of known server names.
-        * Drosera/win/Drosera.h: Removed notification classes and known server
-        names.  Also renamed and moved some functions.
-        * Drosera/win/Drosera.vcproj/Drosera.rc: Removed the Attach box.
-        * Drosera/win/Drosera.vcproj/Drosera.vcproj: Moved resource.h from the
-        headers to the resources folder.
-        * Drosera/win/resource.h: Removed the Attach box.
-
-2007-10-22  Adam Roben  <aroben@apple.com>
-
-        Windows build fix
-
-        * Scripts/build-dumprendertree: Fix path to DumpRenderTree.sln.
-
-2007-10-22  Kevin McCullough  <kmccullough@apple.com>
-
-        - Removed a leak that was fixed.
-
-        * Scripts/run-webkit-tests:
-
-2007-10-19  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Darin Adler.
-
-        - Changed the Client so that the DebuggerDocument now own the
-        ServerConnection.  This simplifies ownership and cleanup.
-
-        * Drosera/win/DebuggerClient.cpp: The DebuggerDocument now owns the
-        ServerConnection.
-        (DebuggerClient::initWithServerName):
-        (DebuggerClient::didFinishLoadForFrame):
-        * Drosera/win/DebuggerClient.h: DebuggerDocument now owns the
-        ServerConnection.
-        * Drosera/win/Drosera.cpp: Moved some WebFrame initialization logic to
-        until after we have a server which we are attached to.
-        (Drosera::initUI):
-        (Drosera::attach):
-        * Drosera/win/Drosera.h: Removed two needless pointers I forgot to take
-        out previously.
-
-2007-10-22  Simon Hausmann  <hausmann@kde.org>
-
-        Reviewed by Nikolas.
-
-        When running build-testkjs make sure it's called through the perl interpreter, to fix the build for Qt/Windows.
-
-        * Scripts/run-javascriptcore-tests:
-
-2007-10-22  Simon Hausmann  <hausmann@kde.org>
-
-        Reviewed by Nikolas.
-
-        Wrap WEXITSTATUS with a little exitStatus() helper function that falls back to the use of $returnvalue >> 8 on Windows to determine the exit status on platforms without WEXITSTATUS.
-
-        * Scripts/build-drosera:
-        * Scripts/build-dumprendertree:
-        * Scripts/build-testkjs:
-        * Scripts/build-webkit:
-        * Scripts/run-javascriptcore-tests:
-        * Scripts/run-sunspider:
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2007-10-22  Andrew Wellington  <proton@wiretapped.net>
-
-        Reviewed by Mark Rowe.
-
-        Fix for local database support after r26879
-        Ensure that ENABLE_DATABASE and ENABLE_ICONDATABASE are correctly set
-
-        * Scripts/build-webkit:
-
-2007-10-22  Holger Freyther  <zecke@selfish.org>
-
-        Reviewed by Simon Hausmann <hausmann@kde.org>.
-
-        - Do not build testkjs as an application bundle. This is
-        needed for run-javascriptcore-tests on OSX.
-        - Also, based on r26633, allow to test the WebKit/Qt port on OSX.
-        - Set DYLD_LIBRARY_PATH if it was set in the environment. It must be set
-        as we do not have -rpath on OSX.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * Scripts/run-webkit-tests:
-
-2007-10-22  Simon Hausmann  <hausmann@kde.org>
-
-        Reviewed by aroben.
-
-        Fix support for Signed-off-by detection in prepare-ChangeLog
-        --git-commit. The Signed-off-by tag does not appear in the header
-        but usually at the end.
-
-        * Scripts/prepare-ChangeLog:
-
-2007-10-21  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Eric.
-
-        Fix run-javascriptcore-tests for Gtk.
-
-        * Scripts/build-testkjs: testkjs is built by build-webkit for Gtk.
-
-2007-10-20  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by aroben.
-
-        * Scripts/find-extra-includes: fix path matching regex to not match ".patch"
-
-2007-10-20  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by darin.
-
-        Add improved argument handling to run-sunspider, including
-        --runs=<number>, --shell=<path>, --tests=<pattern>, --shark, and --help
-        Also re-factor code into subroutines
-
-        * Scripts/build-dumprendertree: removed bogus comments
-        * Scripts/build-testkjs: Added.
-        * Scripts/run-javascriptcore-tests: use build-testkjs
-        * Scripts/run-sunspider: improved argument handling, abstraction
-        * Scripts/run-webkit-tests: improved abstraction
-
-2007-10-20  Matt Lilek  <webkit@mattlilek.com>
-
-        Not reviewed, Windows build fix.
-
-        * DumpRenderTree/win/EventSender.cpp:
-        (keyDownCallback):
-
-2007-10-20  Darin Adler  <darin@apple.com>
-
-        Reviewed by Tim Hatcher.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=15544
-          <rdar://problem/5076426> fast/events/arrow-navigation.html needs to
-          not rely on Apple-specific key codes
-
-        * DumpRenderTree/mac/EventSendingController.mm:
-        (-[EventSendingController keyDown:withModifiers:]):
-        Added named key "rightArrow". Later we could have a whole table of these.
-        Also tweaked modifiers code a little.
-
-        * DumpRenderTree/win/EventSender.cpp: (keyDownCallback): Ditto.
-
-2007-10-19  Darin Adler  <darin@apple.com>
-
-        Reviewed by Eric.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=15566
-          possible fix for leak seen in DumpRenderTree
-
-        * DumpRenderTree/WorkQueue.cpp: (WorkQueue::queue):
-        Delete the item if it's not put on the queue, since the caller has
-        no way of knowing that. Would be better to have the parameter type
-        be auto_ptr to express the fact that we take ownership.
-
-        - unrelated change
-
-        * Drosera/mac/main.m: Add missing include.
-
-2007-10-19  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Adam.
-
-        - This change should be identical but for some reason was not working
-        on my machine.
-
-        * Scripts/prepare-ChangeLog:
-
-2007-10-19  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Oliver and Tim.
-
-        - Made use of RetainPtr to avoid retain and release issues and moved the
-        log function to DebuggerDocumentPlatform, which seems to be a more
-        logical place for it to live.
-        - Also moved knownServers from the ServerConnection to
-        DebuggerApplication to match the Windows code and because it makes sense
-        that a connection knows its own server but not all of them.
-
-        * Drosera/mac/DebuggerClient.h: Moved the log function to
-          DebuggerDocumentPlatform.
-        * Drosera/mac/DebuggerClient.mm: Ditto. Also do not release the server
-          Because it's owned by an own Ptr in DebuggerDocument.  Also moved the
-          call for the server name up from the ServerConnection class.
-        (-[DebuggerClient dealloc]):
-        (-[DebuggerClient webView:didReceiveTitle:forFrame:]): Moved the call
-          for the server name up from the ServerConnection.
-        * Drosera/mac/DebuggerDocumentPlatform.mm: Made the server an OwnPtr.
-        (DebuggerDocument::platformPause):
-        (DebuggerDocument::platformResume):
-        (DebuggerDocument::platformStepInto):
-        (DebuggerDocument::platformEvaluateScript):
-        (DebuggerDocument::getPlatformCurrentFunctionStack):
-        (DebuggerDocument::getPlatformLocalScopeVariableNamesForCallFrame):
-        (DebuggerDocument::platformValueForScopeVariableNamed):
-        (DebuggerDocument::platformLog): Log directly from here. No need to call
-          DebuggerClient.
-        * Drosera/mac/ServerConnection.h: Removed the knownServers function. The
-          way I see it, a ServerConnection should only know about its connection
-          and the group of all possible servers should be kept by the
-          application.
-        * Drosera/mac/ServerConnection.mm: Removed knownServer but added
-          currentServerName, it makes sense that the connection should know that
-          name.
-        (-[ServerConnection currentServerName]):
-
-2007-10-19  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Adam.
-
-        - Integrated changes from mac drosera.  Recently I've encapsulated
-        out the server connection object from the rest of Drosera because
-        it is very platform dependent right now and RPC is not implemented on
-        windows.  This functionality, of communicating with the WebKit server
-        is the next area I will be focusing on in Windows.
-
-        - Other changes and cleanup were made to organize the code and add notes
-        on which parts still need work.  Also some mac code is added and
-        commented out, to act as pseudocode for the logic of those parts.
-
-        * Drosera/DebuggerDocument.h: Make the ServerConnection live in a smart
-          pointer.
-        * Drosera/config.h: Added whitespace.
-        * Drosera/win/DebuggerApplication.cpp: Removed. The functionality of
-          these files got moved into Drosera.h/cpp
-        * Drosera/win/DebuggerApplication.h: Removed.
-        * Drosera/win/DebuggerClient.cpp: Lots of cleanup and restructuring
-          happened here to better match the logic flow of the same code on the
-          mac side and to use the new ServerConnection class.
-        (DebuggerClient::DebuggerClient): Constructor that takes a server name.
-        (DebuggerClient::initWithServerName): Initializer that will set up the
-          class to use a ServerConnection object.  This was necessary so I could
-          create a DebuggerClient without having to initilaize it at
-          construction.
-        (DebuggerClient::QueryInterface): Moved from Drosera.cpp, the Client
-          will be the UIDelegate and FrameLoadDelegate.
-        (DebuggerClient::AddRef): For IUnknown.
-        (DebuggerClient::Release): For IUnknown.
-        (DebuggerClient::didFinishLoadForFrame): Part of the FrameLoadDelegate
-          this still needs to set the global context of the server, but
-          IWebFrame does not have an accessor for the global context yet.
-        (DebuggerClient::windowScriptObjectAvailable): Part of FrameLoadDelegate
-          this is a pass through for the same function in the document.
-        (DebuggerClient::didReceiveTitle): Unimplemented part of
-          FrameLoadDelegate this would change the title of the window.
-        (DebuggerClient::createWebViewWithRequest): Part of the
-          FrameLoadDelegate.  This is about new windows via Window.open() and
-          how their delegates are set.
-        (DebuggerClient::runJavaScriptAlertPanelWithMessage): Part of the
-          UIDelegate.  Just a debug function for printing messages.
-        * Drosera/win/DebuggerClient.h: Moved functionality from Drosera.h
-          because the Client should be the UIDelegate and FrameLoadDelegate
-          to match the delegates on mac.
-        (DebuggerClient::webViewLoaded): Added accessor method.
-        * Drosera/win/DebuggerDocumentPlatform.cpp: Added. I had apperently
-          forgotten to add this file before.  This is where the platform
-          dependent versions of the Documents functions live. Most of these are
-          unimplemented because some piece of functionality does not exist on
-          Windows yet.
-        (DebuggerDocument::platformPause):
-        (DebuggerDocument::platformResume):
-        (DebuggerDocument::platformStepInto):
-        (DebuggerDocument::platformEvaluateScript):
-        (DebuggerDocument::getPlatformCurrentFunctionStack):
-        (DebuggerDocument::getPlatformLocalScopeVariableNamesForCallFrame):
-        (DebuggerDocument::platformValueForScopeVariableNamed):
-        (DebuggerDocument::platformLog):
-        * Drosera/win/Drosera.cpp: Removed UIDelegate and FrameLoadDelegate
-          responsibilities becaue they belong in the Client. Also I laid the
-          groundwork for attaching Drosera to a WebKit process
-        (attachWndProc): Now if a server is selected the Client becomes it's
-          delegate.
-        (Drosera::Drosera): Added the construction of the Client and dictionary
-          of server names.
-        (Drosera::initUI): This is no longer the delegates, the Client is.
-        (Drosera::webViewLoaded): Now asks the Client instead of holding local
-          state.
-        (Drosera::applicationDidFinishLaunching): Placeholder for needed
-          notification registration when it's possible to implement.
-        (Drosera::serverLoaded): Ditto
-        (Drosera::serverUnloaded): Ditto
-        (Drosera::attach): Attach Drosera to the WebKit server.
-        * Drosera/win/Drosera.h: Ditto for Drosera.cpp comment.
-        (Drosera::getInst):
-        (Drosera::setInst):
-        (Drosera::knownServers):
-        * Drosera/win/Drosera.vcproj/Drosera.vcproj: Removed DebuggerApplication
-          and added the ServerConnection.
-        * Drosera/win/DroseraPrefix.h: Added an ifndef check.
-        * Drosera/win/ServerConnection.cpp: Added. This is the interesting part
-          Most of the functions are completely unimlemented because they cannot
-          connect with the WebKit server, because one does not exist on Windows
-          yet.
-        (ServerConnection::initWithServerName):
-        (ServerConnection::~ServerConnection):
-        (ServerConnection::setGlobalContext):
-        (ServerConnection::pause):
-        (ServerConnection::resume):
-        (ServerConnection::stepInto):
-        (ServerConnection::switchToServerNamed):
-        (ServerConnection::applicationTerminating):
-        (ServerConnection::serverConnectionDidDie):
-        (ServerConnection::currentFrame):
-        * Drosera/win/ServerConnection.h: Added. Ditto.
-        (ServerConnection::ServerConnection):
-
-2007-10-19  Alice Liu  <alice.liu@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Fix for these broken layout tests on Windows:
-
-        fast/forms/focus-selection-input.html
-        fast/forms/focus-selection-textarea.html
-        fast/forms/select-accesskey.html
-
-        * DumpRenderTree/win/EventSender.cpp:
-        (keyDownCallback):
-        correct the VK code for alt key.
-
-2007-10-19  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        Make the GtkLauncher code slightly more readable.
-
-        * GtkLauncher/main.cpp:
-        (setupMainMenu): Added.
-        (setupMainWindowUI): Added.
-        (main):
-
-2007-10-19  Maciej Stachowiak  <mjs@apple.com>
-
-        Rubber stamped by Adam.
-
-        - don't delay-load WebKit in DumpRenderTree.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-
-2007-10-18  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Adam Roben.
-
-        - fix <rdar://problem/5313523>
-        REGRESSION(Leopard): http/tests/incremental/slow-utf8-text.pl fails on Leopard
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dump): Changed to use _responseMIMEType.
-
-2007-10-17  Adam Roben  <aroben@apple.com>
-
-        Make it possible to have Windows-specific tests and results
-
-        When searching for tests to run and the Skipped file, we will only
-        look in platform/win and the cross-platform directory. When looking
-        for expected results, we will look in platform/win, then
-        platform/mac-leopard, then platform/mac, then finally the
-        cross-platform directory.
-
-        Reviewed by Sam.
-
-        * Scripts/run-webkit-tests:
-        (sub expectedDirectoryForTest): Search in mac-leopard and mac before
-        searching in the cross-platform directory.
-        (sub buildPlatformHierarchy): Removed some unneeded calls to
-        dirname/basename.
-
-2007-10-17  Adam Roben  <aroben@apple.com>
-
-        Add back the call to register WebKit that we had before WebKitInitializer existed
-
-        This is needed to ensure that the right WebKit is used when
-        instantiating COM objects.
-
-        Reviewed by Oliver.
-
-        * DumpRenderTree/win/debug_internal.vsprops: Define
-        DEBUG_WEBKIT_HAS_SUFFIX.
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (initialize):
-
-2007-10-17  Adam Roben  <aroben@apple.com>
-
-        Import File::Basename in webkitdirs since we use it
-
-        * Scripts/webkitdirs.pm:
-
-2007-10-17  Kevin McCullough  <kmccullough@apple.com>
-
-        - Updated the tiger leaks list to make the internal bots green.
-
-        * Scripts/run-webkit-tests:
-
-2007-10-17  Adam Roben  <aroben@apple.com>
-
-        Build fix for VC++ Express
-
-        * FindSafari/FindSafari.vcproj: Explicitly link against advapi32.lib
-        and ole32.lib.
-
-2007-10-16  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Sam.
-
-        - Minor mac improvements based on observations I made while implementing the
-        Windows code.
-
-        * Drosera/mac/DebuggerApplication.mm: Attach does not need to create the server
-        then hand it to the Client who will retain it, it should just be the client who
-        creates and owns the server.
-        (-[DebuggerApplication attach:]):
-        * Drosera/mac/DebuggerClient.h: Can now be created with just a server name.
-        * Drosera/mac/DebuggerClient.mm: Creates the server.
-        (-[DebuggerClient initWithServerName:]):
-        * Drosera/mac/ServerConnection.mm: Does not need to include 2 header files, but
-        can instead forward declare what it needs.
-
-2007-10-16  Darin Adler  <darin@apple.com>
-
-        Reviewed by Geoff Garen.
-
-        * Scripts/run-webkit-tests: Added --add-platform-exceptions; useful when you
-        want to turn failing tests into platform-specific test results. Also did a
-        number of tweaks, including fixing a potential bug where expectedDirectoryForTest
-        would take the type of results into account only some of the time.
-
-2007-10-16  Adam Roben  <aroben@apple.com>
-
-        Add a new nightly launcher script for Windows
-
-        This new script is for versions of Safari that don't delay-load
-        WebKit. I had to make FindSafari be able to print out the nightly
-        launcher script on stdout because Windows shell scripts can't capture
-        the output from a command into an environment variable.
-
-        Reviewed by Steve.
-
-        * FindSafari/FindSafari.cpp:
-        (_tmain): Added /printSafariLauncher option.
-        * Scripts/run-webkit-nightly.cmd: Added.
-
-2007-10-16  Adam Roben  <aroben@apple.com>
-
-        Replace WebKitInitializer with FindSafari
-
-        We now rely on setting the PATH environment variable to tell Windows
-        where to find WebKit and its dependencies (similar to
-        DYLD_FRAMEWORK_PATH on Mac).
-
-        This change also make DumpRenderTree no longer delay-load WebKit.
-
-        Reviewed by Sam.
-
-        * DumpRenderTree/DumpRenderTree.sln: Removed WebKitInitializer, added
-        FindSafari.
-        * DumpRenderTree/win/DumpRenderTree.cpp: Don't use WebKitInitializer.
-        * DumpRenderTree/win/DumpRenderTree.vcproj: Don't link against
-        WebKitInitializer, don't delay-load WebKit.
-        * Scripts/run-javascriptcore-tests: Call setPathForRunningWebKitApp.
-        * Scripts/run-webkit-tests: Ditto.
-        * Scripts/webkitdirs.pm:
-        (sub setPathForRunningWebKitApp): Added.
-        * WebKitInitializer/WebKitInitializer.cpp: Removed.
-        * WebKitInitializer/WebKitInitializer.h: Removed.
-        * WebKitInitializer/WebKitInitializer.vcproj: Removed.
-        * WebKitInitializer/debug.vsprops: Removed.
-        * WebKitInitializer/debug_internal.vsprops: Removed.
-        * WebKitInitializer/release.vsprops: Removed.
-
-2007-10-16  Adam Roben  <aroben@apple.com>
-
-        Fix Bug 15532: run-safari fails if Safari is installed in a non-default location
-
-        http://bugs.webkit.org/show_bug.cgi?id=15532
-
-        FindSafari simply prints the location of an installed Safari.exe on
-        stdout.
-
-        Reviewed by Darin Adler.
-
-        * FindSafari/FindSafari.cpp: Copied from WebKitTools/WebKitInitializer/WebKitInitializer.cpp.
-        (getStringValue):
-        (getWebViewCLSID):
-        (getInstalledWebKitDirectory):
-        (_tmain):
-        * FindSafari/FindSafari.vcproj: Added.
-        * Scripts/webkitdirs.pm:
-        (sub installedSafariPath): Added. Calls FindSafari on Windows.
-
-2007-10-16  Adam Roben  <aroben@apple.com>
-
-        Updated for rename of WebKit_debug.dll to WebKit.dll for the Debug configuration
-
-        Reviewed by Kevin McCullough.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj: Use WebKitDLLConfigSuffix
-        when referring to WebKit.dll.
-        * DumpRenderTree/win/debug.vsprops: Added WebKitDLLConfigSuffix.
-        * DumpRenderTree/win/debug_internal.vsprops: Ditto.
-        * DumpRenderTree/win/release.vsprops: Ditto.
-        * Scripts/run-safari: Don't pass /debug to Safari anymore because we
-        never have a _debug suffix on WebKit.dll.
-        * WebKitInitializer/WebKitInitializer.cpp:
-        (initializeWebKit): Only use the _debug suffix for WebKit.dll when
-        specified.
-        * WebKitInitializer/debug_internal.vsprops: Added
-        DEBUG_WEBKIT_HAS_SUFFIX preprocessor definition.
-
-2007-10-16  Darin Adler  <darin@apple.com>
-
-        Reviewed by Adele.
-
-        * DumpRenderTree/win/EventSender.cpp: (keyDownCallback):
-        Remove now-unneeded control/alt key hack; the tests have been updated.
-
-2007-10-16  Kevin McCullough  <kmccullough@apple.com>
-
-        - Updated leaks list because our internal bot upgraded it's version of leopard and
-        one of the leaks was fixed between that revision and the bot's previous version of
-        leopard.
-
-        * Scripts/run-webkit-tests:
-
-2007-10-15  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Tim.
-
-        - I encapsulated out the server connecton functionality because it is a specific part
-        of Drosera that will be platform dependant until the WebScriptDebugServer can be moved
-        into WebCore and C++.  But if it is encapsulated out it can be easily replaced on
-        Windows.  So the majority of this patch is moving preexisting functionality.
-
-        - Also I removed the prefix header and changed to use config.h because it is more
-        standard on how we use config.h in windows and it didn't make much sense to keep
-        the prefix header and the config.h
-
-        * Drosera/DebuggerDocument.cpp:
-        (DebuggerDocument::DebuggerDocument):
-        * Drosera/DebuggerDocument.h:
-        * Drosera/config.h:
-        * Drosera/mac/DebuggerApplication.mm:
-        (-[DebuggerApplication attach:]):
-        * Drosera/mac/DebuggerClient.h:
-        * Drosera/mac/DebuggerClient.mm:
-        (-[DebuggerClient initWithServerConnection:]):
-        (-[DebuggerClient dealloc]):
-        (-[DebuggerClient windowDidLoad]):
-        (-[DebuggerClient windowWillClose:]):
-        (-[DebuggerClient webView:didFinishLoadForFrame:]):
-        (-[DebuggerClient webView:didReceiveTitle:forFrame:]):
-        * Drosera/mac/DebuggerDocumentPlatform.mm:
-        (DebuggerDocument::platformPause):
-        (DebuggerDocument::platformResume):
-        (DebuggerDocument::platformStepInto):
-        (DebuggerDocument::platformEvaluateScript):
-        (DebuggerDocument::getPlatformCurrentFunctionStack):
-        (DebuggerDocument::getPlatformLocalScopeVariableNamesForCallFrame):
-        (DebuggerDocument::platformValueForScopeVariableNamed):
-        (DebuggerDocument::platformLog):
-        * Drosera/mac/Drosera.pch: Removed.
-        * Drosera/mac/Drosera.xcodeproj/project.pbxproj:
-        * Drosera/mac/ServerConnection.h: Added.
-        * Drosera/mac/ServerConnection.mm: Added.
-        (-[ServerConnection initWithServerName:]):
-        (-[ServerConnection dealloc]):
-        (-[ServerConnection setGlobalContext:]):
-        (-[ServerConnection pause]):
-        (-[ServerConnection resume]):
-        (-[ServerConnection stepInto]):
-        (-[ServerConnection switchToServerNamed:]):
-        (-[ServerConnection applicationTerminating:]):
-        (-[ServerConnection serverConnectionDidDie:]):
-        (-[ServerConnection webView:didLoadMainResourceForDataSource:]):
-        (-[ServerConnection webView:didParseSource:baseLineNumber:fromURL:sourceId:forWebFrame:]):
-        (-[ServerConnection webView:failedToParseSource:baseLineNumber:fromURL:withError:forWebFrame:]):
-        (-[ServerConnection webView:didEnterCallFrame:sourceId:line:forWebFrame:]):
-        (-[ServerConnection webView:willExecuteStatement:sourceId:line:forWebFrame:]):
-        (-[ServerConnection webView:willLeaveCallFrame:sourceId:line:forWebFrame:]):
-        (-[ServerConnection webView:exceptionWasRaised:sourceId:line:forWebFrame:]):
-        (-[ServerConnection currentFrame]):
-        (-[ServerConnection webScriptAttributeKeysForScriptObject:]):
-        (-[ServerConnection knownServers]):
-
-2007-10-15  David Kilzer  <ddkilzer@webkit.org>
-
-        Reviewed by Eric.
-
-        - fix http://bugs.webkit.org/show_bug.cgi?id=15002
-          Script to automatically search nightly builds for regressions (bisect-builds)
-
-        * Scripts/bisect-builds: Added.
-
-2007-10-14  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Darin Adler.
-
-        - New JavaScript benchmark
-        http://bugs.webkit.org/show_bug.cgi?id=15515
-
-        * Scripts/run-sunspider: Added. Wrapper to run sunspider on the
-        current development or release build of JavaScriptCore.
-
-2007-10-15  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Sam.
-
-        Fix 'run-webkit-tests --qt' complaining about the --qt argument.
-
-        * Scripts/webkitdirs.pm:
-        - Change checkArgv to remove the options from @ARGV to prevent
-        them from interfering with further option processing.
-        - Fix logic error in determineIsQt that would prevent it from bailing out early.
-        - Change isOSX to mean OS X and not Qt or Gtk.  Most of our uses of isOSX assume that this is the meaning
-        already, so this change fixes several broken areas of the scripts including 'run-webkit-tests --qt' on a Mac
-        incorrectly using the Mac results, and 'run-webkit-tests --gtk' attempting to build the Mac DumpRenderTree.
-
-2007-10-15  Darin Adler  <darin@apple.com>
-
-        Reviewed by Sam.
-
-        - added logging of window.prompt and window.confirm
-
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:runJavaScriptAlertPanelWithMessage:initiatedByFrame:]):
-        Implement the recommended delegate rather than the deprecated one.
-        (-[UIDelegate webView:runJavaScriptConfirmPanelWithMessage:initiatedByFrame:]):
-        Added.
-        (-[UIDelegate webView:runJavaScriptTextInputPanelWithPrompt:defaultText:initiatedByFrame:]):
-        Added.
-
-        * DumpRenderTree/win/UIDelegate.h:
-        * DumpRenderTree/win/UIDelegate.cpp:
-        (UIDelegate::runJavaScriptAlertPanelWithMessage): Got rid of unnecessary check for null string.
-        (UIDelegate::runJavaScriptConfirmPanelWithMessage): Added.
-        (UIDelegate::runJavaScriptTextInputPanelWithPrompt): Added.
-        (UIDelegate::webViewAddMessageToConsole): Got rid of unnecessary check for null string.
-
-2007-10-15  Alice Liu  <alice.liu@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Fixed <rdar://5382546> layoutTestController.setCustomPolicyDelegate is unimplemented causing tests to fail
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (runTest): Like on mac, before running each test, set the webview's policy delegate to null
-        (main): allocate the global policy delegate for DRT's custom use
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        Adding files to project
-        * DumpRenderTree/win/DumpRenderTreeWin.h: declaring global DRT policy delegate
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setCustomPolicyDelegate):
-        set the webview's policy delegate to DRT's custom one if the test requests it.
-        * DumpRenderTree/win/PolicyDelegate.cpp: Added.
-        Implementation is a direct port of DumpRenderTree/mac/PolicyDelegate.mm
-        (PolicyDelegate::PolicyDelegate):
-        (PolicyDelegate::QueryInterface):
-        (PolicyDelegate::AddRef):
-        (PolicyDelegate::Release):
-        (PolicyDelegate::decidePolicyForNavigationAction):
-        * DumpRenderTree/win/PolicyDelegate.h: Added.
-        (PolicyDelegate::decidePolicyForNewWindowAction):
-        (PolicyDelegate::decidePolicyForMIMEType):
-        (PolicyDelegate::unableToImplementPolicyWithError):
-
-2007-10-14  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Reviewed by Mark.
-
-        * Scripts/webkitdirs.pm: Use qmake binary specified via --qmake on command-line
-        when querying for QMAKE_MKSPECS.
-
-2007-10-14  Andrew Wellington  <proton@wiretapped.net>
-
-        Reviewed by Adam Roben.
-
-        Fix run-webkit-tests is too greedy calculating platform hierarchy
-        http://bugs.webkit.org/show_bug.cgi?id=15465
-
-        Fix run-webkit-tests being too greedy in trying to split the platform name up
-        causing it to try and find tests in every directory above the first "-" in the
-        path to the LayoutTests
-
-        * Scripts/run-webkit-tests:
-
-2007-10-14  Oleg Sukhodolsky <son.two@gmail.com>
-
-        Reviewed by Darin Adler.
-
-        http://bugs.webkit.org/show_bug.cgi?id=15006
-        Refactoring of buildQMakeGdkProject()/buildQMakeQtProject() and isGdk()/isQt()
-        to reduce code duplication.
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-        buildQMakeProject() renamed to buildQMakeQtProject().
-        buildQMakeGdkProject()/buildQMakeQtProject() now take just one parameter (directory),
-        unused $colorize has been removed.
-
-=== Start merge of feature-branch 2007-10-12 ===
-
-2007-10-08  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        * Scripts/build-webkit: add --help, remove unused --color
-
-2007-10-07  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by darin.
-
-        * Drosera/mac/DebuggerDocumentPlatform.mm:
-        (DebuggerDocument::platformEvaluateScript): null check before trying to make a JSString
-
-2007-10-03  Rob Buis  <buis@kde.org>
-
-        Reviewed by Olliej.
-
-        Adapt to changed location of Ahem font.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-
-2007-10-02  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Make pixel tests more useful!
-        Finally fix the image diff 0.00% mystery problem
-        Highlight any image differences in the image diff.
-        Add a link from image diffs back to original test file.
-
-        * DumpRenderTree/mac/ImageDiff.m:
-        (compareImages): highlight any differences
-        (computePercentageDifferent): round to two decimal places
-        * Scripts/run-webkit-tests: add a few more toURL calls for the windows folks
-
-2007-10-02  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Alexey Proskuryakov.
-
-        * Scripts/run-webkit-tests: print the % image difference on main results page
-
-2007-10-02  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Oliver.
-
-        Update WebKitLauncher to notify you of new builds from the correct branch, rather than always checking trunk.
-
-        * BuildSlaveSupport/build-launcher-app: Generate a file named BRANCH into WebKit.app so that it knows which branch it was built from.
-        * WebKitLauncher/start.html: Use the new URL format that includes the branch we were built from.
-
-2007-10-01  Mark Rowe  <mrowe@apple.com>
-
-        * BuildSlaveSupport/build-launcher-dmg: Tweak once more to handle nightly builds for branches.
-
-2007-09-25  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        DerivedSources.make was finding "ENABLE_SVG" in the string
-        "ENABLE_SVG_EXPERIMENTAL_FEATURES" thus --no-svg wasn't functioning
-        quite correctly.
-
-        * Scripts/build-webkit: make --no-svg imply --no-svg-experimental
-
-2007-09-25  Mark Rowe  <mrowe@apple.com>
-
-        Rubber-stamped by Eric.
-
-        * BuildSlaveSupport/build-launcher-dmg: Allow the platform tag to be specified on the command line.
-        This makes it possible to automate nightly builds for the feature-branch.
-
-2007-07-11  Nikolas Zimmermann  <zimmermann@kde.org>
-
-        Rubber stamped by Mark.
-
-        Enable svg experimental features as default here in feature-branch.
-
-        * Scripts/build-webkit:
-
-2007-06-29  Antti Koivisto  <antti@apple.com>
-
-        Reviewed by Weinig.
-
-        Add VIDEO flag for timed media features
-
-        * Scripts/build-webkit
-
-=== End merge of feature-branch 2007-10-12 ===
-
-2007-10-11  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Darin Adler.
-
-        - Updated rational for the leaks list to be more clear.
-
-        * Scripts/run-webkit-tests:
-
-2007-10-11  Kevin McCullough  <kmccullough@apple.com>
-
-        Rubber Stamp by Sam.
-
-        Adding a known Leopard leak that is already fixed but the bot is on an old version of Leopard.
-        I believe there was a radar on this leak, it looks familiar to me, but I could not find it.
-
-        * Scripts/run-webkit-tests:
-
-2007-10-10  Simon Hausmann  <hausmann@kde.org>
-
-        Reviewed by Lars.
-
-        Fix compilation using gcc 4.3. Header files have been reorganized and as a result some extra
-        includes are needed for INT_MAX, std::auto_ptr and the like.
-
-        * DumpRenderTree/qt/main.cpp:
-
-2007-10-09  Lars Knoll  <lars@trolltech.com>
-
-        Reviewed by Simon.
-
-        implement layoutTestController.encode/decodeHostName. We still don't pass fast/encoding/idn-security.html, since our QUrl::from/toACE is somewhat stricter than ICU.
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::encodeHostName):
-        (LayoutTestController::decodeHostName):
-        * DumpRenderTree/qt/jsobjects.h:
-
-2007-10-09  Lars Knoll  <lars@trolltech.com>
-
-        Reviewed by Simon.
-
-        Don't set up connections inside QWebPage::createFrame, as users might be reimplementing that method. Make sure we get only one titleChanged() signal per title change, and implement the support for testing this in DRT.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::WebPage::createFrame):
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::titleChanged):
-        * DumpRenderTree/qt/DumpRenderTree.h:
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::reset):
-        * DumpRenderTree/qt/jsobjects.h:
-
-2007-10-09  Lars Knoll  <lars@trolltech.com>
-
-        Reviewed by Simon.
-
-        add a dummy implementation for layoutTestController.display() and implement layoutTestController.clearBackForwardList().
-
-        * DumpRenderTree/qt/DumpRenderTree.h:
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::clearBackForwardList):
-        * DumpRenderTree/qt/jsobjects.h:
-
-2007-10-09  Lars Knoll  <lars@trolltech.com>
-
-        Reviewed by Simon.
-
-        make --git-reviewer work again.
-
-        * Scripts/prepare-ChangeLog:
-
-2007-10-07  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Rubber stamped by Eric.
-
-        Connect to the "hovering-over-link" signal emitted by WebKitPage and
-        show the current link inside the statusbar.
-        This shows how to make use of this signal and allows to easily test
-        http://bugs.webkit.org/show_bug.cgi?id=15299.
-
-        * GtkLauncher/main.cpp:
-        (hoveringOverLink):
-        (main):
-
-2007-10-05  Lars Knoll  <lars@trolltech.com>
-
-        add proper error messages to the FrameLoaderClient.
-        Implement ChromeClientQt::closeWindowSoon and
-        FrameLoaderClientQt::dispatchCreatePage (which should go away IMO).
-        Some fixes in DRT to make it work correctly with multiple windows.
-
-        Reviewed by Maciej.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::createWindow):
-        (WebCore::DumpRenderTree::windowCount):
-        * DumpRenderTree/qt/DumpRenderTree.h:
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::maybeDump):
-        (LayoutTestController::windowCount):
-        * DumpRenderTree/qt/jsobjects.h:
-
-2007-10-05  Lars Knoll  <lars@trolltech.com>
-
-        Add a dummy plugin to DRT  to fix fast/dom/Window/Plug-Ins.html.
-        Add support for layoutTextController.setCanOpenWindows() to DRT
-        fixing another 2 test cases in fast/dom/Window.
-
-        Reviewed by Maciej.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::WebPage::WebPage):
-        (WebCore::WebPage::createWindow):
-        (WebCore::DumpRenderTree::resetJSObjects):
-        (WebCore::DumpRenderTree::createWindow):
-        * DumpRenderTree/qt/DumpRenderTree.h:
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::reset):
-        * DumpRenderTree/qt/jsobjects.h:
-        * DumpRenderTree/qt/main.cpp:
-        * DumpRenderTree/qt/testplugin.cpp: Added.
-        * DumpRenderTree/qt/testplugin.h: Added.
-
-2007-10-04  Sam Weinig  <sam@webkit.org>
-
-        Rubber stamped by Adam.
-
-        Remove empty directories.
-
-        * DumpRenderTree/DumpRenderTree.qtproj: Removed.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts: Removed.
-
-2007-10-03  Darin Adler  <darin@apple.com>
-
-        Reviewed by Adam.
-
-        * Scripts/webkitdirs.pm: Automatically use "Debug_Internal" if
-        we find the internal libraries in the libraries directory. This
-        is helpful for Safari team engineers at Apple.
-
-2007-10-03  Adam Roben  <aroben@apple.com>
-
-        Update the location of AHEM___.TTF after r25968
-
-        Reviewed by Sam.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-
-2007-10-03  Alp Toker  <alp@atoker.com>
-
-        Reviewed by Adam.
-
-        http://bugs.webkit.org/show_bug.cgi?id=14726
-        [gtk] API design. Mapping the WebView delegates to signals.
-
-        Change the API namespace of the Gtk+ port from 'WebKitGtk' to 'WebKit'.
-
-        * GtkLauncher/main.cpp:
-        (goToURLBarText):
-        (titleChanged):
-        (progressChanged):
-        (menuMainBackCallback):
-        (menuMainForwardCallback):
-        (main):
-
-2007-10-03  Lars Knoll  <lars@trolltech.com>
-
-        Reviewed by Rob.
-
-        This fixes --strict mode in run-webkit-tests again after
-        the platform dependent test results have been moved.
-
-        * Scripts/run-webkit-tests:
-
-2007-10-03  Lars Knoll  <lars@trolltech.com>
-
-        Reviewed by bdash.
-
-        remove the hack in run-webkit-tests that forced text only test
-        to be taken from the platform independent dir. It was only left
-        there from early days.
-
-        Remove platform dependent results for tests that are text only nowadays,
-        and add one platform dependent result for a text only test that requires it.
-
-        * Scripts/run-webkit-tests:
-
-2007-10-03  Lars Knoll  <lars@trolltech.com>
-
-        Reviewed by olliej.
-
-        Move the Qt version of DRT into the correct place and put the binary into BUILDDIR/bin.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp: Renamed from WebKitTools/DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp.
-        (WebCore::WebFrame::WebFrame):
-        (WebCore::WebPage::WebPage):
-        (WebCore::WebPage::createFrame):
-        (WebCore::WebPage::javaScriptAlert):
-        (WebCore::WebPage::javaScriptConsoleMessage):
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::~DumpRenderTree):
-        (WebCore::DumpRenderTree::open):
-        (WebCore::DumpRenderTree::readStdin):
-        (WebCore::DumpRenderTree::resetJSObjects):
-        (WebCore::DumpRenderTree::initJSObjects):
-        (WebCore::DumpRenderTree::dumpFramesAsText):
-        (WebCore::DumpRenderTree::dump):
-        * DumpRenderTree/qt/DumpRenderTree.h: Renamed from WebKitTools/DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.h.
-        (WebCore::DumpRenderTree::layoutTestController):
-        (WebCore::DumpRenderTree::eventSender):
-        * DumpRenderTree/qt/DumpRenderTree.pro: Renamed from WebKitTools/DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.pro.
-        * DumpRenderTree/qt/fonts.conf: Renamed from WebKitTools/DumpRenderTree/DumpRenderTree.qtproj/fonts.conf.
-        * DumpRenderTree/qt/fonts/AHEM____.TTF: Renamed from WebKitTools/DumpRenderTree/DumpRenderTree.qtproj/fonts/AHEM____.TTF.
-        * DumpRenderTree/qt/jsobjects.cpp: Renamed from WebKitTools/DumpRenderTree/DumpRenderTree.qtproj/jsobjects.cpp.
-        (HackWebFrame::mousePressEvent):
-        (HackWebFrame::mouseReleaseEvent):
-        (HackWebFrame::mouseMoveEvent):
-        (HackWebFrame::HackWebFrame):
-        (HackWebFrame::~HackWebFrame):
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::reset):
-        (LayoutTestController::maybeDump):
-        (LayoutTestController::waitUntilDone):
-        (LayoutTestController::notifyDone):
-        (LayoutTestController::dumpEditingCallbacks):
-        (LayoutTestController::queueReload):
-        (LayoutTestController::provisionalLoad):
-        (LayoutTestController::timerEvent):
-        (EventSender::EventSender):
-        (EventSender::mouseDown):
-        (EventSender::mouseUp):
-        (EventSender::mouseMoveTo):
-        (EventSender::leapForward):
-        (EventSender::keyDown):
-        (EventSender::frameUnderMouse):
-        * DumpRenderTree/qt/jsobjects.h: Renamed from WebKitTools/DumpRenderTree/DumpRenderTree.qtproj/jsobjects.h.
-        (LayoutTestController::isLoading):
-        (LayoutTestController::setLoading):
-        (LayoutTestController::shouldDumpAsText):
-        (LayoutTestController::shouldDumpChildrenAsText):
-        (LayoutTestController::shouldWaitUntilDone):
-        (LayoutTestController::dumpAsText):
-        (LayoutTestController::dumpChildFramesAsText):
-        * DumpRenderTree/qt/main.cpp: Renamed from WebKitTools/DumpRenderTree/DumpRenderTree.qtproj/main.cpp.
-        (messageHandler):
-        (crashHandler):
-        (main):
-        * Scripts/run-webkit-tests:
-
-2007-10-03  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Alp Toker.
-
-        Fix build-webkit when both QTDIR and --gtk are set.  The presence of --gtk
-        should take precedence over QTDIR when determining which port we are working with.
-
-        * Scripts/webkitdirs.pm:
-
-2007-10-02  Adam Roben  <aroben@apple.com>
-
-        Add keychain to the list of default packages to install
-
-        Rubberstamped by Sam.
-
-        * CygwinDownloader/cygwin-downloader.py:
-        * CygwinDownloader/cygwin-downloader.zip: Regenerated.
-
-2007-10-02  David Kilzer  <ddkilzer@webkit.org>
-
-        Reviewed by Adam.
-
-        Make "--git-commit trunk..HEAD" work with prepare-ChangeLog.
-        Also makes WebCore regression test case logic work when using git.
-
-        * Scripts/prepare-ChangeLog:
-        (reviewerAndDescriptionForGitCommit): Added.
-
-2007-10-02  Lars Knoll  <lars@trolltech.com>
-
-        Reviewed by bdash.
-
-        Add API to retrieve the frame name from QWebFrame.
-        Implement support for DRT::dumpChildrenAsText.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::dumpFramesAsText):
-        (WebCore::DumpRenderTree::dump):
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.h:
-        * DumpRenderTree/DumpRenderTree.qtproj/jsobjects.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::reset):
-        * DumpRenderTree/DumpRenderTree.qtproj/jsobjects.h:
-
-2007-10-02  Lars Knoll  <lars@trolltech.com>
-
-        Reviewed by bdash.
-
-        Fix the handling of the response header for data urls. Make sure we always pass absolute URLs to WebKit from both DRT and QtLauncher.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::readStdin):
-
-2007-10-02  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Oliver.
-
-        Update WebKitLauncher to notify you of new builds from the correct branch, rather than always checking trunk.
-
-        * BuildSlaveSupport/build-launcher-app: Generate a file named BRANCH into WebKit.app so that it knows which branch it was built from.
-        * WebKitLauncher/start.html: Use the new URL format that includes the branch we were built from.
-
-2007-10-02  Mark Rowe  <mrowe@apple.com>
-
-        Rubber-stamped by Maciej.
-
-        Configuration changes from build.webkit.org.  The major change is refactoring to work
-        with Buildbot 0.7.6, but it does include other smaller changes that have been made in the
-        last few weeks.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        * BuildSlaveSupport/build.webkit.org-config/webkit/auth.py:
-        * BuildSlaveSupport/build.webkit.org-config/webkit/basesteps.py:
-        * BuildSlaveSupport/build.webkit.org-config/webkit/builders.py:
-        * BuildSlaveSupport/build.webkit.org-config/webkit/factories.py:
-        * BuildSlaveSupport/build.webkit.org-config/webkit/schedulers.py:
-        * BuildSlaveSupport/build.webkit.org-config/webkit/status.py:
-        * BuildSlaveSupport/build.webkit.org-config/webkit/steps.py:
-
-2007-10-02  Lars Knoll  <lars@trolltech.com>
-
-        Reviewed by Maciej.
-
-        Add support for eventSender.mouseMove to DRT.
-        Fixes fast/css/hover-affects-child.html
-
-        * DumpRenderTree/DumpRenderTree.qtproj/jsobjects.cpp:
-        (EventSender::mouseMoveTo):
-
-2007-10-01  Mark Rowe  <mrowe@apple.com>
-
-        * BuildSlaveSupport/build-launcher-dmg: Tweak once more to handle nightly builds for branches.
-
-2007-10-01  David Kilzer  <ddkilzer@webkit.org>
-
-        Reviewed by Hyatt.
-
-        Make svn-apply and svn-unapply work with added files in git-diff formatted patches.
-
-        * Scripts/svn-apply:
-        (gitdiff2svndiff): Ignore lines beginning with "new file".
-        * Scripts/svn-unapply:
-        (gitdiff2svndiff): Ditto.
-
-2007-09-30  George Staikos  <staikos@kde.org>
-
-        Qt build fix (Mac OS X specific)
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.pro:
-
-2007-09-29  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Reviewed by Mark.
-
-        -Fix http://bugs.webkit.org/show_bug.cgi?id=13226.
-        Remove Bakefiles from svn.
-
-        * GtkLauncher/Bakefiles.bkgen: Removed.
-        * GtkLauncher/ENV: Removed.
-        * GtkLauncher/gdklauncher.bkl: Removed.
-        * GtkLauncher/mk: Removed.
-        * Scripts/regenerate-makefiles: Removed.
-
-2007-09-25  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by John.
-
-        - Updating leopard leak list to refelct bugs that have been fixed and no longer leak.
-
-        * Scripts/run-webkit-tests:
-
-2007-09-26  Adam Roben  <aroben@apple.com>
-
-        Make not finding an installed WebKit non-fatal
-
-        What really matters is that we are able to load WebKit and its
-        dependencies, not whether we think we've found an installed WebKit.
-
-        Reviewed by Sam.
-
-        * WebKitInitializer/WebKitInitializer.cpp:
-        (getWebViewCLSID): Use new LOG_WARNING macro.
-        (getInstalledWebKitDirectory): Ditto.
-        (initializeWebKit): Don't die if we didn't find an installed WebKit,
-        and use new macros.
-        * WebKitInitializer/WebKitInitializer.vcproj: Disabled a warning.
-
-2007-09-26  Adam Roben  <aroben@apple.com>
-
-        Committed this file before saving it
-
-        * WebKitInitializer/debug_internal.vsprops:
-
-2007-09-26  Adam Roben  <aroben@apple.com>
-
-        Load WebKit and its dependencies manually so they come from DllDirectory
-
-        I had to change WebKitInitializer to use malloc/free instead of
-        new/delete to avoid pulling in WebKit (and its dependencies) early
-        through use of fastMalloc.
-
-        Reviewed by Oliver.
-
-        * WebKitInitializer/WebKitInitializer.cpp:
-        (getStringValue): Changed to use malloc/free.
-        (getInstalledWebKitDirectory): Ditto.
-        (initializeWebKit): Call SetDllDirectory first, then load all of
-        WebKit's dependencies manually, finally followed by WebKit itself.
-        * WebKitInitializer/WebKitInitializer.vcproj: Added a new
-        configuration to match our other projects.
-        * WebKitInitializer/debug_internal.vsprops: Added.
-
-2007-09-25  Adam Roben  <aroben@apple.com>
-
-        Actually define DEBUG/NDEBUG so that we load WebKit correctly
-
-        Rubberstamped by Sam.
-
-        * WebKitInitializer/WebKitInitializer.vcproj:
-
-2007-09-25  Adam Roben  <aroben@apple.com>
-
-        Make DumpRenderTree delay-load its dependencies
-
-        This lets WebKitInitializer re-route the dependencies to be loaded out
-        of the Safari installation directory.
-
-        Also replaced all uses of kCFAllocatorDefault with 0 (which means the
-        same thing), since we can't import the kCFAllocatorDefault symbol when
-        delay-loading CoreFoundation.dll.
-
-        Rubberstamped by Sam.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (runTest):
-        (javaScriptThreads):
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setWaitToDump):
-
-2007-09-25  Adam Roben  <aroben@apple.com>
-
-        Pull ole32.lib into WebKitInitializer
-
-        Rubberstamped by Sam.
-
-        * WebKitInitializer/WebKitInitializer.vcproj:
-
-2007-09-25  David Kilzer  <ddkilzer@webkit.org>
-
-        Reviewed by Adam.
-
-        - Fix http://bugs.webkit.org/show_bug.cgi?id=14885
-          LGPL'ed files contain incorrect FSF address
-
-        * Drosera/config.h:
-
-2007-09-25  David Kilzer  <ddkilzer@webkit.org>
-
-        Reviewed by Adam.
-
-        Make svn-apply and svn-unapply work with git-diff formatted patches.
-
-        * Scripts/svn-apply: Apply a filter to the input if we find a git-diff marker before a patch.
-        (gitdiff2svndiff): Added.
-        * Scripts/svn-unapply: Ditto.
-        (gitdiff2svndiff): Added.
-
-2007-09-25  Adam Roben  <aroben@apple.com>
-
-        Pull advapi32.lib into WebKitInitializer
-
-        This is needed to get the registry functions we use.
-
-        Rubberstamped by Sam.
-
-        * WebKitInitializer/WebKitInitializer.vcproj:
-
-2007-09-25  Adam Roben  <aroben@apple.com>
-
-        Add python and rsync to cygwin-downloader
-
-        Our build slaves need this, and it can't hurt for everyone else to
-        have it, too.
-
-        Reviewed by Sam.
-
-        * CygwinDownloader/cygwin-downloader.py: Added python and rsync.
-        * CygwinDownloader/cygwin-downloader.zip: Regenerated.
-
-2007-09-25  Adam Roben  <aroben@apple.com>
-
-        Add WebKitInitializer and use it in DumpRenderTree
-
-        WebKitInitializer is a static library that has one function,
-        initializeWebKit(). This registers WebKit and sets up the DLL search
-        path so that WebKit's dependencies that are installed with Safari can
-        be found.
-
-        Reviewed by Sam.
-
-        * DumpRenderTree/DumpRenderTree.sln: Added WebKitInitializer and made
-        DumpRenderTree depend on it.
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (initialize): Call initializeWebKit.
-        * DumpRenderTree/win/DumpRenderTree.vcproj: Link against
-        WebKitInitializer.lib.
-        * WebKitInitializer/WebKitInitializer.cpp: Added.
-        (getStringValue):
-        (getWebViewCLSID):
-        (getInstalledWebKitDirectory):
-        (initializeWebKit):
-        * WebKitInitializer/WebKitInitializer.h: Added.
-        * WebKitInitializer/WebKitInitializer.vcproj: Added.
-        * WebKitInitializer/debug.vsprops: Added.
-        * WebKitInitializer/release.vsprops: Added.
-
-2007-09-25  Adam Roben  <aroben@apple.com>
-
-        Make run-webkit-tests respect set-webkit-configuration
-
-        Reviewed by Sam.
-
-        * Scripts/run-webkit-tests: Initialize $configuration to whatever
-        set-webkit-configuration was last set to.
-
-2007-09-25  Mark Rowe  <mrowe@apple.com>
-
-        Rubber-stamped by Eric.
-
-        * BuildSlaveSupport/build-launcher-dmg: Allow the platform tag to be specified on the command line.
-        This makes it possible to automate nightly builds for the feature-branch.
-
-2007-09-25  Adam Roben  <aroben@apple.com>
-
-        A couple of fixes/enhancements to update-webkit-*-libs
-
-        You can now specify WEBKITSUPPORTLIBRARIESZIPDIR=C:\my\special\place
-        to tell update-webkit-support-libraries where it should find the
-        WebKitSupportLibrary.zip file you downloaded.
-
-        These scripts also now correctly interpret WEBKITLIBRARIESDIR as a
-        Windows-style path.
-
-        Reviewed by Sam.
-
-        * Scripts/update-webkit-auxiliary-libs: Also renamed $supportLibsURL
-        to $auxiliaryLibsURL and removed an irrelevant comment.
-        * Scripts/update-webkit-support-libs:
-
-2007-09-25  Adam Treat  <treat@kde.org>
-
-        Reviewed by Simon and Lars.
-
-        Refactors and cleans up Qt DRT member variable names, member variable
-        initialization, style fixes and general code cleanup.
-
-        Adds queueReload slot to LayoutTestController that some tests require.
-
-        Subclasses QWebFrame to make sure that all frames have an associated
-        LayoutTestController JS window object.
-
-        Takes advantage of new QWebFrame provisionalLoad signal to ensure frames
-        aren't dumped twice.
-
-        EOF fixes.
-
-        Together, this patch fixes some 20+ layout tests in QtWebKit.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::WebFrame::WebFrame):
-        (WebCore::WebPage::WebPage):
-        (WebCore::WebPage::createFrame):
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::open):
-        (WebCore::DumpRenderTree::readStdin):
-        (WebCore::DumpRenderTree::initJSObjects):
-        (WebCore::DumpRenderTree::dump):
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.h:
-        (WebCore::DumpRenderTree::layoutTestController):
-        (WebCore::DumpRenderTree::eventSender):
-        * DumpRenderTree/DumpRenderTree.qtproj/jsobjects.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::reset):
-        (LayoutTestController::maybeDump):
-        (LayoutTestController::waitUntilDone):
-        (LayoutTestController::notifyDone):
-        (LayoutTestController::queueReload):
-        (LayoutTestController::provisionalLoad):
-        (EventSender::EventSender):
-        (EventSender::mouseDown):
-        (EventSender::mouseUp):
-        (EventSender::mouseMoveTo):
-        (EventSender::frameUnderMouse):
-        * DumpRenderTree/DumpRenderTree.qtproj/jsobjects.h:
-        (LayoutTestController::isLoading):
-        (LayoutTestController::setLoading):
-        (LayoutTestController::dumpAsText):
-        * DumpRenderTree/DumpRenderTree.qtproj/main.cpp:
-        (main):
-
-2007-09-24  Kevin McCullough  <kmccullough@apple.com>
-
-
-        - Reverted an accidentally checked in file.
-
-        * Drosera/win/DebuggerDocumentPlatform.cpp: Removed.
-
-2007-09-24  Kevin McCullough  <kmccullough@apple.com>
-        Reviewed by Sam.
-
-        - Updated project files to not use Edit and Continue for Debug Information since it doesn't work and breaks some functionality.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin.vcproj:
-
-2007-09-20  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Rubber stamped by Adam.
-
-        * GdkLauncher: Removed.
-        * GdkLauncher/Bakefiles.bkgen: Removed.
-        * GdkLauncher/ENV: Removed.
-        * GdkLauncher/GdkLauncher.pro: Removed.
-        * GdkLauncher/gdklauncher.bkl: Removed.
-        * GdkLauncher/main.cpp: Removed.
-        * GdkLauncher/mk: Removed.
-        * GdkLauncher/simple.svg: Removed.
-        * GdkLauncher/text.html: Removed.
-        * GtkLauncher: Added.
-        * GtkLauncher/GdkLauncher.pro: Removed.
-        * GtkLauncher/GtkLauncher.pro: Added.
-        * GtkLauncher/main.cpp:
-        (updateWindowTitle):
-        (main):
-        * Scripts/build-webkit:
-        * Scripts/regenerate-makefiles:
-        * Scripts/run-javascriptcore-tests:
-        * Scripts/run-launcher:
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2007-09-21  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Darin Adler.
-
-        <rdar://problem/5491013> REGRESSION: -[WebView windowScriptObject] returns a dummy object or nil if a page hasn't loaded (breaks EA Sports Online)
-
-        Assert that the -[WebScriptObject JSObject] return value is only NULL for non-window objects.
-        This is tested by plugins/root-object-premature-delete-crash.html.
-
-        * DumpRenderTree/mac/ObjCController.m:
-        (-[ObjCController accessStoredWebScriptObject]):
-
-2007-09-21  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Oliver.
-
-        - We need to initialize the ref count to 1 at initialization so that objects are not garbage collected. (actual patch written by Oliver)
-
-        * DumpRenderTree/win/FrameLoaderDelegate.cpp:
-        (FrameLoadDelegate::FrameLoadDelegate):
-
-2007-09-20  Julien Chaffraix  <julien.chaffraix@gmail.com>
-
-        Reviewed by Adam.
-
-        Fix: http://bugs.webkit.org/show_bug.cgi?id=15223
-        webkitdir.pm::isQt() is not working properly in run-webkit-tests under Linux/Qt
-
-        Added determineIsQt() and determineIsGdk() to webkitdirs.pm.
-        Now isQt() and isGdk() use global variables that are only set once.
-
-        An array of all the parameters is now given to build-dumprender which includes
-        the platform on linux.
-
-        * Scripts/build-dumprendertree:
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2007-09-19  Adam Roben  <aroben@apple.com>
-
-        Rubberstamped by Hyatt.
-
-        * Spinneret: Removed.
-
-2007-09-19  Tuukka Hastrup  <Tuukka.Hastrup@iki.fi>
-
-        Reviewed by David Kilzer.
-
-        * Scripts/webkitdirs.pm: On Gdk and Qt, check that flex, bison, gperf are available.
-
-2007-09-18  Sam Weinig  <sam@webkit.org>
-
-        Add JSRetainPtr.h #include to fix some builds.
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-
-2007-09-18  Mike Hommey  <glandium@debian.org>
-
-        Reviewed by Adam.
-
-        * Scripts/prepare-ChangeLog:
-        - Properly parse GECOS field.
-        - Use git configuration for user name and email when appropriate.
-
-2007-09-17  Sam Weinig  <sam@webkit.org>
-
-        Build fix.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-
-2007-09-17  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Share more code between mac and windows DRT.
-            - GCController is now shared.
-            - Rename WaitUntilDoneDelegate to FrameLoadDelegate for consistency.
-
-        * DumpRenderTree/GCController.cpp:
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/FrameLoaderDelegate.cpp: Copied from DumpRenderTree/win/WaitUntilDoneDelegate.cpp.
-        (FrameLoadDelegate::FrameLoadDelegate):
-        (FrameLoadDelegate::~FrameLoadDelegate):
-        (FrameLoadDelegate::windowScriptObjectAvailable):
-        * DumpRenderTree/win/FrameLoaderDelegate.h: Copied from DumpRenderTree/win/WaitUntilDoneDelegate.h.
-        * DumpRenderTree/win/GCController.cpp: Removed.
-        * DumpRenderTree/win/GCController.h: Removed.
-        * DumpRenderTree/win/GCControllerWin.cpp: Copied from DumpRenderTree/win/GCController.cpp.
-        (GCController::collect):
-        (GCController::collectOnAlternateThread):
-        (GCController::getJSObjectCount):
-        * DumpRenderTree/win/WaitUntilDoneDelegate.cpp: Removed.
-        * DumpRenderTree/win/WaitUntilDoneDelegate.h: Removed.
-
-2007-09-17  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Begin sharing code between mac and windows DRT.
-            - both now share LayoutTestController.h/cpp and implement platform dependant
-              operations in LayoutTestControllerMac/Win.
-            - DumpRenderTree.h is now shared.
-            - WorkQueue and WorkQueueItem are also shared.
-
-        * DumpRenderTree/DumpRenderTree.h:
-        * DumpRenderTree/LayoutTestController.cpp:
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (displayWebView):
-        (dumpFrameScrollPosition):
-        (dumpFramesAsText):
-        (dump):
-        (runTest):
-        * DumpRenderTree/win/DumpRenderTree.h: Removed.
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/DumpRenderTreeWin.h: Copied from DumpRenderTree/win/DumpRenderTree.h.
-        * DumpRenderTree/win/EditingDelegate.cpp:
-        (EditingDelegate::shouldBeginEditingInDOMRange):
-        (EditingDelegate::shouldEndEditingInDOMRange):
-        (EditingDelegate::shouldInsertNode):
-        (EditingDelegate::shouldInsertText):
-        (EditingDelegate::shouldDeleteDOMRange):
-        (EditingDelegate::shouldChangeSelectedDOMRange):
-        (EditingDelegate::shouldApplyStyle):
-        (EditingDelegate::shouldChangeTypingStyle):
-        (EditingDelegate::doPlatformCommand):
-        (EditingDelegate::webViewDidBeginEditing):
-        (EditingDelegate::webViewDidChange):
-        (EditingDelegate::webViewDidEndEditing):
-        (EditingDelegate::webViewDidChangeTypingStyle):
-        (EditingDelegate::webViewDidChangeSelection):
-        * DumpRenderTree/win/LayoutTestController.cpp: Removed.
-        * DumpRenderTree/win/LayoutTestController.h: Removed.
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp: Copied from DumpRenderTree/win/LayoutTestController.cpp.
-        (LayoutTestController::addDisallowedURL):
-        (LayoutTestController::clearBackForwardList):
-        (LayoutTestController::copyDecodedHostName):
-        (LayoutTestController::copyEncodedHostName):
-        (LayoutTestController::display):
-        (LayoutTestController::keepWebHistory):
-        (LayoutTestController::notifyDone):
-        (LayoutTestController::queueBackNavigation):
-        (LayoutTestController::queueForwardNavigation):
-        (jsStringRefToWString):
-        (LayoutTestController::queueLoad):
-        (LayoutTestController::queueReload):
-        (LayoutTestController::queueScript):
-        (LayoutTestController::setAcceptsEditing):
-        (LayoutTestController::setCustomPolicyDelegate):
-        (LayoutTestController::setMainFrameIsFirstResponder):
-        (LayoutTestController::setTabKeyCyclesThroughElements):
-        (LayoutTestController::setUseDashboardCompatibilityMode):
-        (LayoutTestController::setUserStyleSheetEnabled):
-        (LayoutTestController::setUserStyleSheetLocation):
-        (LayoutTestController::setWindowIsKey):
-        (waitUntilDoneWatchdogFired):
-        (LayoutTestController::setWaitToDump):
-        (LayoutTestController::windowCount):
-        * DumpRenderTree/win/WaitUntilDoneDelegate.cpp:
-        (FrameLoadDelegate::didReceiveTitle):
-        (FrameLoadDelegate::processWork):
-        (FrameLoadDelegate::locationChangeDone):
-        (FrameLoadDelegate::windowScriptObjectAvailable):
-        * DumpRenderTree/win/WorkQueue.cpp: Removed.
-        * DumpRenderTree/win/WorkQueue.h: Removed.
-        * DumpRenderTree/win/WorkQueueItem.cpp: Removed.
-        * DumpRenderTree/win/WorkQueueItem.h: Removed.
-        * DumpRenderTree/win/WorkQueueItemWin.cpp: Copied from DumpRenderTree/win/WorkQueueItem.cpp.
-        (jsStringRefToWString):
-        (LoadItem::invoke):
-        (ScriptItem::invoke):
-
-2007-09-17  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        - Move Windows DumpRenderTree and TestNetscapePlugin to WebCoreTools/DumpRenderTree/win
-
-        * DumpRenderTree/DumpRenderTree.sln: Copied from DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree.sln.
-        * DumpRenderTree/DumpRenderTree.vcproj: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree.sln: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DraggingInfo.h: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.cpp: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.h: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.vcproj: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/EditingDelegate.cpp: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/EditingDelegate.h: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/EventSender.cpp: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/EventSender.h: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/GCController.cpp: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/GCController.h: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/LayoutTestController.cpp: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/LayoutTestController.h: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/UIDelegate.cpp: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/UIDelegate.h: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/WaitUntilDoneDelegate.cpp: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/WaitUntilDoneDelegate.h: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/WorkQueue.cpp: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/WorkQueue.h: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/WorkQueueItem.cpp: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/WorkQueueItem.h: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/debug.vsprops: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/debug_internal.vsprops: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/release.vsprops: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/TestNetscapePlugin: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/TestNetscapePlugin/TestNetscapePlugin.def: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/TestNetscapePlugin/TestNetscapePlugin.rc: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/TestNetscapePlugin/TestNetscapePlugin.vcproj: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/TestNetscapePlugin/main.c: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/TestNetscapePlugin/resource.h: Removed.
-        * DumpRenderTree/win: Added.
-        * DumpRenderTree/win/DraggingInfo.h: Copied from DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DraggingInfo.h.
-        * DumpRenderTree/win/DumpRenderTree.cpp: Copied from DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.cpp.
-        * DumpRenderTree/win/DumpRenderTree.h: Copied from DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.h.
-        * DumpRenderTree/win/DumpRenderTree.vcproj: Copied from DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.vcproj.
-        * DumpRenderTree/win/EditingDelegate.cpp: Copied from DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/EditingDelegate.cpp.
-        * DumpRenderTree/win/EditingDelegate.h: Copied from DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/EditingDelegate.h.
-        * DumpRenderTree/win/EventSender.cpp: Copied from DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/EventSender.cpp.
-        * DumpRenderTree/win/EventSender.h: Copied from DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/EventSender.h.
-        * DumpRenderTree/win/GCController.cpp: Copied from DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/GCController.cpp.
-        * DumpRenderTree/win/GCController.h: Copied from DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/GCController.h.
-        * DumpRenderTree/win/LayoutTestController.cpp: Copied from DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/LayoutTestController.cpp.
-        * DumpRenderTree/win/LayoutTestController.h: Copied from DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/LayoutTestController.h.
-        * DumpRenderTree/win/TestNetscapePlugin: Copied from DumpRenderTree/DumpRenderTree.vcproj/TestNetscapePlugin.
-        * DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/win/UIDelegate.cpp: Copied from DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/UIDelegate.cpp.
-        * DumpRenderTree/win/UIDelegate.h: Copied from DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/UIDelegate.h.
-        * DumpRenderTree/win/WaitUntilDoneDelegate.cpp: Copied from DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/WaitUntilDoneDelegate.cpp.
-        * DumpRenderTree/win/WaitUntilDoneDelegate.h: Copied from DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/WaitUntilDoneDelegate.h.
-        * DumpRenderTree/win/WorkQueue.cpp: Copied from DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/WorkQueue.cpp.
-        * DumpRenderTree/win/WorkQueue.h: Copied from DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/WorkQueue.h.
-        * DumpRenderTree/win/WorkQueueItem.cpp: Copied from DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/WorkQueueItem.cpp.
-        * DumpRenderTree/win/WorkQueueItem.h: Copied from DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/WorkQueueItem.h.
-        * DumpRenderTree/win/debug.vsprops: Copied from DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/debug.vsprops.
-        * DumpRenderTree/win/debug_internal.vsprops: Copied from DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/debug_internal.vsprops.
-        * DumpRenderTree/win/release.vsprops: Copied from DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/release.vsprops.
-        * Scripts/run-webkit-tests: Update to point to the new location of the sln.
-
-2007-09-15  Mark Rowe  <mrowe@apple.com>
-
-        Build fix for DumpRenderTree.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:  Reinstate -Wno-deprecated-declarations on DumpRenderTree.mm.
-
-2007-09-14  Sam Weinig  <sam@webkit.org>
-
-        Rubber stamped by Adam Roben.
-
-        Split the WaitUntilDoneDelegate into a UIDelegate and a FrameLoadDelegate.
-          - The UIDelegate was put into a new file while the FrameLoadDelegate was
-            kept in the WaitUntilDoneDelegate file for the time being.
-
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.vcproj:
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/UIDelegate.cpp: Added.
-        (UIDelegate::QueryInterface):
-        (UIDelegate::AddRef):
-        (UIDelegate::Release):
-        (UIDelegate::hasCustomMenuImplementation):
-        (UIDelegate::setFrame):
-        (UIDelegate::webViewFrame):
-        (UIDelegate::runJavaScriptAlertPanelWithMessage):
-        (UIDelegate::webViewAddMessageToConsole):
-        (UIDelegate::doDragDrop):
-        (UIDelegate::webViewGetDlgCode):
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/UIDelegate.h: Added.
-        (UIDelegate::UIDelegate):
-        (UIDelegate::createWebViewWithRequest):
-        (UIDelegate::webViewShow):
-        (UIDelegate::webViewClose):
-        (UIDelegate::webViewFocus):
-        (UIDelegate::webViewUnfocus):
-        (UIDelegate::webViewFirstResponder):
-        (UIDelegate::makeFirstResponder):
-        (UIDelegate::setStatusText):
-        (UIDelegate::webViewStatusText):
-        (UIDelegate::webViewAreToolbarsVisible):
-        (UIDelegate::setToolbarsVisible):
-        (UIDelegate::webViewIsStatusBarVisible):
-        (UIDelegate::setStatusBarVisible):
-        (UIDelegate::webViewIsResizable):
-        (UIDelegate::setResizable):
-        (UIDelegate::setContentRect):
-        (UIDelegate::webViewContentRect):
-        (UIDelegate::runJavaScriptConfirmPanelWithMessage):
-        (UIDelegate::runJavaScriptTextInputPanelWithPrompt):
-        (UIDelegate::runBeforeUnloadConfirmPanelWithMessage):
-        (UIDelegate::runOpenPanelForFileButtonWithResultListener):
-        (UIDelegate::mouseDidMoveOverElement):
-        (UIDelegate::contextMenuItemsForElement):
-        (UIDelegate::validateUserInterfaceItem):
-        (UIDelegate::shouldPerformAction):
-        (UIDelegate::dragDestinationActionMaskForDraggingInfo):
-        (UIDelegate::willPerformDragDestinationAction):
-        (UIDelegate::dragSourceActionMaskForPoint):
-        (UIDelegate::willPerformDragSourceAction):
-        (UIDelegate::contextMenuItemSelected):
-        (UIDelegate::trackCustomPopupMenu):
-        (UIDelegate::measureCustomMenuItem):
-        (UIDelegate::drawCustomMenuItem):
-        (UIDelegate::addCustomMenuDrawingData):
-        (UIDelegate::cleanUpCustomMenuDrawingData):
-        (UIDelegate::canTakeFocus):
-        (UIDelegate::takeFocus):
-        (UIDelegate::registerUndoWithTarget):
-        (UIDelegate::removeAllActionsWithTarget):
-        (UIDelegate::setActionTitle):
-        (UIDelegate::undo):
-        (UIDelegate::redo):
-        (UIDelegate::canUndo):
-        (UIDelegate::canRedo):
-        (UIDelegate::webViewResizerRect):
-        (UIDelegate::webViewDrawResizer):
-        (UIDelegate::webViewScrolled):
-        (UIDelegate::webViewShouldInterruptJavaScript):
-        (UIDelegate::webViewReceivedFocus):
-        (UIDelegate::webViewLostFocus):
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/WaitUntilDoneDelegate.cpp:
-        (FrameLoadDelegate::QueryInterface):
-        (FrameLoadDelegate::AddRef):
-        (FrameLoadDelegate::Release):
-        (FrameLoadDelegate::didStartProvisionalLoadForFrame):
-        (FrameLoadDelegate::didCommitLoadForFrame):
-        (FrameLoadDelegate::didReceiveTitle):
-        (FrameLoadDelegate::processWork):
-        (processWorkTimer):
-        (FrameLoadDelegate::locationChangeDone):
-        (FrameLoadDelegate::didFinishLoadForFrame):
-        (FrameLoadDelegate::didFailLoadWithError):
-        (FrameLoadDelegate::windowScriptObjectAvailable):
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/WaitUntilDoneDelegate.h:
-        (FrameLoadDelegate::FrameLoadDelegate):
-
-2007-09-14  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Kevin McCullough.
-
-        Move mac specific globals in to mac/DumpRenderTreeMac.h
-
-        * DumpRenderTree/DumpRenderTree.h:
-        * DumpRenderTree/DumpRenderTree.mm: Removed.
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/mac/DumpRenderTree.mm: Copied from DumpRenderTree/DumpRenderTree.mm.
-        * DumpRenderTree/mac/DumpRenderTreeMac.h: Added.
-
-2007-09-14  Brady Eidson  <beidson@apple.com>
-
-        Rubberstamped by Weinig
-
-        You know, Sam, some of us use case-sensitve filesystems...
-
-        * DumpRenderTree/DumpRenderTree.h:
-        * DumpRenderTree/mac/UIDelegate.mm:
-
-2007-09-14  Sam Weinig  <sam@webkit.org>
-
-        Rubber stamped by Adam Roben.
-
-        - Move dump state data to LayoutTestContoller and add getter/setters to accommodate.
-        - Move mac specific DumpRenderTree files to DumpRenderTree/mac
-
-        * DumpRenderTree/AppleScriptController.h: Removed.
-        * DumpRenderTree/AppleScriptController.m: Removed.
-        * DumpRenderTree/DumpRenderTree.h:
-        * DumpRenderTree/DumpRenderTree.mm:
-        (startJavaScriptThreads):
-        (stopJavaScriptThreads):
-        (activateAhemFont):
-        (setDefaultColorProfileToRGB):
-        (makeLargeMallocFailSilently):
-        (dumpFrameScrollPosition):
-        (dumpFramesAsText):
-        (dump):
-        (runTest):
-        (-[DumpRenderTreeWindow isKeyWindow]):
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/DumpRenderTreeDraggingInfo.h: Removed.
-        * DumpRenderTree/DumpRenderTreeDraggingInfo.m: Removed.
-        * DumpRenderTree/EditingDelegate.h: Removed.
-        * DumpRenderTree/EditingDelegate.m: Removed.
-        * DumpRenderTree/EventSendingController.h: Removed.
-        * DumpRenderTree/EventSendingController.m: Removed.
-        * DumpRenderTree/FrameLoadDelegate.h: Removed.
-        * DumpRenderTree/FrameLoadDelegate.mm: Removed.
-        * DumpRenderTree/GCController.mm: Removed.
-        * DumpRenderTree/ImageDiff.m: Removed.
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (dumpAsTextCallback):
-        (dumpBackForwardListCallback):
-        (dumpChildFramesAsTextCallback):
-        (dumpChildFrameScrollPositionsCallback):
-        (dumpDOMAsWebArchiveCallback):
-        (dumpEditingCallbacksCallback):
-        (dumpFrameLoadCallbacksCallback):
-        (dumpResourceLoadCallbacksCallback):
-        (dumpSelectionRectCallback):
-        (dumpSourceAsWebArchiveCallback):
-        (dumpTitleChangesCallback):
-        (repaintSweepHorizontallyCallback):
-        (setCallCloseOnWebViewsCallback):
-        (setCanOpenWindowsCallback):
-        (setCloseRemainingWindowsWhenCompleteCallback):
-        (testRepaintCallback):
-        (addFileToPasteboardOnDragCallback):
-        (waitUntilDoneCallback):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::dumpAsText):
-        (LayoutTestController::setDumpAsText):
-        (LayoutTestController::dumpBackForwardList):
-        (LayoutTestController::setDumpBackForwardList):
-        (LayoutTestController::dumpChildFrameScrollPositions):
-        (LayoutTestController::setDumpChildFrameScrollPositions):
-        (LayoutTestController::dumpChildFramesAsText):
-        (LayoutTestController::setDumpChildFramesAsText):
-        (LayoutTestController::dumpDOMAsWebArchive):
-        (LayoutTestController::setDumpDOMAsWebArchive):
-        (LayoutTestController::dumpSelectionRect):
-        (LayoutTestController::setDumpSelectionRect):
-        (LayoutTestController::dumpSourceAsWebArchive):
-        (LayoutTestController::setDumpSourceAsWebArchive):
-        (LayoutTestController::dumpTitleChanges):
-        (LayoutTestController::setDumpTitleChanges):
-        (LayoutTestController::dumpEditingCallbacks):
-        (LayoutTestController::setDumpEditingCallbacks):
-        (LayoutTestController::dumpResourceLoadCallbacks):
-        (LayoutTestController::setDumpResourceLoadCallbacks):
-        (LayoutTestController::dumpFrameLoadCallbacks):
-        (LayoutTestController::setDumpFrameLoadCallbacks):
-        (LayoutTestController::addFileToPasteboardOnDrag):
-        (LayoutTestController::setAddFileToPasteboardOnDrag):
-        (LayoutTestController::callCloseOnWebViews):
-        (LayoutTestController::setCallCloseOnWebViews):
-        (LayoutTestController::canOpenWindows):
-        (LayoutTestController::setCanOpenWindows):
-        (LayoutTestController::closeRemainingWindowsWhenComplete):
-        (LayoutTestController::setCloseRemainingWindowsWhenComplete):
-        (LayoutTestController::testRepaint):
-        (LayoutTestController::setTestRepaint):
-        (LayoutTestController::testRepaintSweepHorizontally):
-        (LayoutTestController::setTestRepaintSweepHorizontally):
-        (LayoutTestController::waitToDump):
-        (LayoutTestController::windowIsKey):
-        * DumpRenderTree/LayoutTestControllerMac.mm: Removed.
-        * DumpRenderTree/NavigationController.h: Removed.
-        * DumpRenderTree/NavigationController.m: Removed.
-        * DumpRenderTree/ObjCController.h: Removed.
-        * DumpRenderTree/ObjCController.m: Removed.
-        * DumpRenderTree/ObjCPlugin.h: Removed.
-        * DumpRenderTree/ObjCPlugin.m: Removed.
-        * DumpRenderTree/ObjCPluginFunction.h: Removed.
-        * DumpRenderTree/ObjCPluginFunction.m: Removed.
-        * DumpRenderTree/PolicyDelegate.h: Removed.
-        * DumpRenderTree/PolicyDelegate.m: Removed.
-        * DumpRenderTree/ResourceLoadDelegate.h: Removed.
-        * DumpRenderTree/ResourceLoadDelegate.m: Removed.
-        * DumpRenderTree/TextInputController.h: Removed.
-        * DumpRenderTree/TextInputController.m: Removed.
-        * DumpRenderTree/UIDelegate.h: Removed.
-        * DumpRenderTree/UIDelegate.mm: Removed.
-        * DumpRenderTree/WorkQueueItemMac.mm: Removed.
-        * DumpRenderTree/mac: Added.
-        * DumpRenderTree/mac/AppleScriptController.h: Copied from DumpRenderTree/AppleScriptController.h.
-        * DumpRenderTree/mac/AppleScriptController.m: Copied from DumpRenderTree/AppleScriptController.m.
-        * DumpRenderTree/mac/DumpRenderTreeDraggingInfo.h: Copied from DumpRenderTree/DumpRenderTreeDraggingInfo.h.
-        * DumpRenderTree/mac/DumpRenderTreeDraggingInfo.mm: Copied from DumpRenderTree/DumpRenderTreeDraggingInfo.m.
-        * DumpRenderTree/mac/EditingDelegate.h: Copied from DumpRenderTree/EditingDelegate.h.
-        * DumpRenderTree/mac/EditingDelegate.mm: Copied from DumpRenderTree/EditingDelegate.m.
-        (-[EditingDelegate webView:shouldBeginEditingInDOMRange:]):
-        (-[EditingDelegate webView:shouldEndEditingInDOMRange:]):
-        (-[EditingDelegate webView:shouldInsertNode:replacingDOMRange:givenAction:]):
-        (-[EditingDelegate webView:shouldInsertText:replacingDOMRange:givenAction:]):
-        (-[EditingDelegate webView:shouldDeleteDOMRange:]):
-        (-[EditingDelegate webView:shouldChangeSelectedDOMRange:toDOMRange:affinity:stillSelecting:]):
-        (-[EditingDelegate webView:shouldApplyStyle:toElementsInDOMRange:]):
-        (-[EditingDelegate webView:shouldChangeTypingStyle:toStyle:]):
-        (-[EditingDelegate webViewDidBeginEditing:]):
-        (-[EditingDelegate webViewDidChange:]):
-        (-[EditingDelegate webViewDidEndEditing:]):
-        (-[EditingDelegate webViewDidChangeTypingStyle:]):
-        (-[EditingDelegate webViewDidChangeSelection:]):
-        * DumpRenderTree/mac/EventSendingController.h: Copied from DumpRenderTree/EventSendingController.h.
-        * DumpRenderTree/mac/EventSendingController.mm: Copied from DumpRenderTree/EventSendingController.m.
-        * DumpRenderTree/mac/FrameLoadDelegate.h: Copied from DumpRenderTree/FrameLoadDelegate.h.
-        * DumpRenderTree/mac/FrameLoadDelegate.mm: Copied from DumpRenderTree/FrameLoadDelegate.mm.
-        (-[FrameLoadDelegate init]):
-        (-[FrameLoadDelegate dealloc]):
-        (-[FrameLoadDelegate processWork:]):
-        (-[FrameLoadDelegate webView:locationChangeDone:forDataSource:]):
-        (-[FrameLoadDelegate webView:didStartProvisionalLoadForFrame:]):
-        (-[FrameLoadDelegate webView:didCommitLoadForFrame:]):
-        (-[FrameLoadDelegate webView:didFailProvisionalLoadWithError:forFrame:]):
-        (-[FrameLoadDelegate webView:didFinishLoadForFrame:]):
-        (-[FrameLoadDelegate webView:didFailLoadWithError:forFrame:]):
-        (-[FrameLoadDelegate webView:windowScriptObjectAvailable:]):
-        (-[FrameLoadDelegate webView:didClearWindowObject:forFrame:]):
-        (-[FrameLoadDelegate webView:didReceiveTitle:forFrame:]):
-        (-[FrameLoadDelegate webView:didReceiveServerRedirectForProvisionalLoadForFrame:]):
-        (-[FrameLoadDelegate webView:didReceiveIcon:forFrame:]):
-        (-[FrameLoadDelegate webView:didChangeLocationWithinPageForFrame:]):
-        (-[FrameLoadDelegate webView:willPerformClientRedirectToURL:delay:fireDate:forFrame:]):
-        (-[FrameLoadDelegate webView:didCancelClientRedirectForFrame:]):
-        (-[FrameLoadDelegate webView:willCloseFrame:]):
-        (-[FrameLoadDelegate webView:didFinishDocumentLoadForFrame:]):
-        (-[FrameLoadDelegate webView:didHandleOnloadEventsForFrame:]):
-        * DumpRenderTree/mac/GCControllerMac.mm: Copied from DumpRenderTree/GCController.mm.
-        * DumpRenderTree/mac/ImageDiff.m: Copied from DumpRenderTree/ImageDiff.m.
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm: Copied from DumpRenderTree/LayoutTestControllerMac.mm.
-        (LayoutTestController::notifyDone):
-        (LayoutTestController::setWindowIsKey):
-        (LayoutTestController::setWaitToDump):
-        * DumpRenderTree/mac/NavigationController.h: Copied from DumpRenderTree/NavigationController.h.
-        * DumpRenderTree/mac/NavigationController.m: Copied from DumpRenderTree/NavigationController.m.
-        * DumpRenderTree/mac/ObjCController.h: Copied from DumpRenderTree/ObjCController.h.
-        * DumpRenderTree/mac/ObjCController.m: Copied from DumpRenderTree/ObjCController.m.
-        * DumpRenderTree/mac/ObjCPlugin.h: Copied from DumpRenderTree/ObjCPlugin.h.
-        * DumpRenderTree/mac/ObjCPlugin.m: Copied from DumpRenderTree/ObjCPlugin.m.
-        * DumpRenderTree/mac/ObjCPluginFunction.h: Copied from DumpRenderTree/ObjCPluginFunction.h.
-        * DumpRenderTree/mac/ObjCPluginFunction.m: Copied from DumpRenderTree/ObjCPluginFunction.m.
-        * DumpRenderTree/mac/PolicyDelegate.h: Copied from DumpRenderTree/PolicyDelegate.h.
-        * DumpRenderTree/mac/PolicyDelegate.mm: Copied from DumpRenderTree/PolicyDelegate.m.
-        * DumpRenderTree/mac/ResourceLoadDelegate.h: Copied from DumpRenderTree/ResourceLoadDelegate.h.
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm: Copied from DumpRenderTree/ResourceLoadDelegate.m.
-        (-[ResourceLoadDelegate webView:identifierForInitialRequest:fromDataSource:]):
-        (-[ResourceLoadDelegate webView:resource:willSendRequest:redirectResponse:fromDataSource:]):
-        (-[ResourceLoadDelegate webView:resource:didReceiveResponse:fromDataSource:]):
-        (-[ResourceLoadDelegate webView:resource:didFinishLoadingFromDataSource:]):
-        (-[ResourceLoadDelegate webView:resource:didFailLoadingWithError:fromDataSource:]):
-        (-[ResourceLoadDelegate webView:resource:willCacheResponse:fromDataSource:]):
-        * DumpRenderTree/mac/TextInputController.h: Copied from DumpRenderTree/TextInputController.h.
-        * DumpRenderTree/mac/TextInputController.m: Copied from DumpRenderTree/TextInputController.m.
-        * DumpRenderTree/mac/UIDelegate.h: Copied from DumpRenderTree/UIDelegate.h.
-        * DumpRenderTree/mac/UIDelegate.mm: Copied from DumpRenderTree/UIDelegate.mm.
-        (-[UIDelegate webView:dragImage:at:offset:event:pasteboard:source:slideBack:forView:]):
-        (-[UIDelegate webViewFocus:]):
-        (-[UIDelegate webView:createWebViewWithRequest:]):
-        (-[UIDelegate webViewClose:]):
-        * DumpRenderTree/mac/WorkQueueItemMac.mm: Copied from DumpRenderTree/WorkQueueItemMac.mm.
-
-2007-09-14  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Adam.
-
-        - Changing Win version of Drosera work with recent changes.
-
-        * Drosera/DebuggerDocument.cpp:
-        * Drosera/DebuggerDocument.h:
-        * Drosera/mac/DebuggerDocumentPlatform.mm:
-        (NSStringCreateWithJSStringRef):
-        (JSValueRefCreateWithNSString):
-        * Drosera/win/DebuggerClient.cpp:
-        (DebuggerClient::stepInto):
-        * Drosera/win/Drosera.vcproj/Drosera.vcproj:
-
-2007-09-13  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Tim.
-
-        - Moved isPaused into the JS for efficiency and simplicity.
-
-        * Drosera/DebuggerDocument.cpp:
-        (DebuggerDocument::DebuggerDocument):
-        (DebuggerDocument::pauseCallback):
-        (DebuggerDocument::resumeCallback):
-        (DebuggerDocument::isPaused):
-        (DebuggerDocument::staticFunctions):
-        * Drosera/DebuggerDocument.h:
-        * Drosera/console.js:
-        * Drosera/debugger.js:
-        * Drosera/mac/DebuggerClient.mm:
-        (-[DebuggerClient validateUserInterfaceItem:]):
-
-2007-09-13  Sam Weinig  <sam@webkit.org>
-
-        Rubber stamped by Darin Adler.
-
-        Make DumpRenderTree more cross platform ready.
-        - Convert GCController to use the JSCore API instead of the WebScriptObject.
-        - Use CF types instead of NS objects.
-        - General cleanup.
-
-        * DumpRenderTree/DumpRenderTree.h:
-        * DumpRenderTree/DumpRenderTree.mm:
-        (dumpRenderTree):
-        (dump):
-        (runTest):
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/EditingDelegate.m:
-        * DumpRenderTree/FrameLoadDelegate.h:
-        * DumpRenderTree/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate init]):
-        (-[FrameLoadDelegate dealloc]):
-        (-[FrameLoadDelegate webView:didClearWindowObject:forFrame:]):
-        * DumpRenderTree/GCController.cpp: Added.
-        (GCController::GCController):
-        (GCController::~GCController):
-        (collectCallback):
-        (collectOnAlternateThreadCallback):
-        (getJSObjectCountCallback):
-        (GCController::makeWindowObject):
-        (GCController::getJSClass):
-        (GCController::staticFunctions):
-        * DumpRenderTree/GCController.h:
-        * DumpRenderTree/GCController.mm:
-        (GCController::collect):
-        (GCController::collectOnAlternateThread):
-        (GCController::getJSObjectCount):
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::makeWindowObject):
-        (LayoutTestController::getJSClass):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/LayoutTestControllerMac.mm:
-        (LayoutTestController::addDisallowedURL):
-        (waitUntilDoneWatchdogFired):
-        (LayoutTestController::waitUntilDone):
-        * DumpRenderTree/ResourceLoadDelegate.m:
-        (-[ResourceLoadDelegate webView:resource:willSendRequest:redirectResponse:fromDataSource:]):
-
-2007-09-12  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Stephanie.
-
-        Fix leaks in mac DumpRenderTree.
-
-        * DumpRenderTree/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate init]): Initalize in the correct order.
-        (-[FrameLoadDelegate processWork:]): Delete WorkQueueItem's after dequeueing them.
-        * DumpRenderTree/LayoutTestController.cpp:
-        (decodeHostNameCallback): Put return value in a temporary JSRetainPtr to ensure it gets released.
-        (encodeHostNameCallback): ditto.
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/LayoutTestControllerMac.mm:
-        (LayoutTestController::copyDecodedHostName): Rename function to signal that it follows the Create rule.
-        (LayoutTestController::copyEncodedHostName): ditto
-        (LayoutTestController::queueLoad): Use a JSRetainPtr to ensure the url gets released.
-
-2007-09-12  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Geof.
-
-        - Updated Leopard leak list to include a leak which appears to be fixed in 9A549 but not the version the bot is on.  This will allow us to get the bot green, but later we should remove it.
-
-        * Scripts/run-webkit-tests:
-
-2007-09-12  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Darin Adler.
-
-        - Simplified code paths and extracted out functions to increase encapsulation.
-
-        * Drosera/DebuggerDocument.cpp:
-        (DebuggerDocument::breakpointEditorHTMLCallback):
-        (DebuggerDocument::isPausedCallback):
-        (DebuggerDocument::pauseCallback):
-        (DebuggerDocument::resumeCallback):
-        (DebuggerDocument::stepIntoCallback):
-        (DebuggerDocument::evaluateScriptCallback):
-        (DebuggerDocument::currentFunctionStackCallback):
-        (DebuggerDocument::localScopeVariableNamesForCallFrameCallback):
-        (DebuggerDocument::valueForScopeVariableNamedCallback):
-        (DebuggerDocument::logCallback):
-        * Drosera/DebuggerDocument.h:
-        (DebuggerDocument::getPaused):
-        * Drosera/mac/DebuggerClient.mm:
-        (-[DebuggerClient pause:]):
-        (-[DebuggerClient resume:]):
-        (-[DebuggerClient stepInto:]):
-        (-[DebuggerClient stepOver:]):
-        (-[DebuggerClient stepOut:]):
-        (-[DebuggerClient showConsole:]):
-        (-[DebuggerClient closeCurrentFile:]):
-        (-[DebuggerClient validateUserInterfaceItem:]):
-        * Drosera/mac/DebuggerDocumentPlatform.mm: Added.
-        (+[NSString stringOrNilFromWebScriptResult:]):
-        (DebuggerDocument::platformPause):
-        (DebuggerDocument::platformResume):
-        (DebuggerDocument::platformStepInto):
-        (DebuggerDocument::platformEvaluateScript):
-        (DebuggerDocument::getPlatformCurrentFunctionStack):
-        (DebuggerDocument::getPlatformLocalScopeVariableNamesForCallFrame):
-        (DebuggerDocument::platformValueForScopeVariableNamed):
-        (DebuggerDocument::platformLog):
-        * Drosera/mac/Drosera.xcodeproj/project.pbxproj:
-
-2007-09-12  Sam Weinig  <sam@webkit.org>
-
-        Build fix for Buildbot.
-
-        * DumpRenderTree/DumpRenderTree.mm:
-        (dump):
-
-2007-09-12  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Geoff.
-
-        - Updated the leaks list for leopard to help identify regressions.
-
-        * Scripts/run-webkit-tests:
-
-2007-09-12  Sam Weinig  <sam@webkit.org>
-
-        Rubber stamped by Darin Adler.
-
-        Convert the LayoutTestController to use the JSCore API instead of WebScriptObject.
-
-        * DumpRenderTree/DumpRenderTree.h: Re-order variables.
-        * DumpRenderTree/DumpRenderTree.m: Removed.
-        * DumpRenderTree/DumpRenderTree.mm: Copied from DumpRenderTree/DumpRenderTree.m.
-        (stopJavaScriptThreads): Fix initialization.
-        (setDefaultColorProfileToRGB): Add explicit cast from void*.
-        (dumpRenderTree): Ditto.
-        (runTest):
-        Used the WorkQueue from the windows DRT instead of the old NSMutableArray one.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/FrameLoadDelegate.h: Add LayoutTestController instance variable.
-        * DumpRenderTree/FrameLoadDelegate.m: Removed.
-        * DumpRenderTree/FrameLoadDelegate.mm: Copied from DumpRenderTree/FrameLoadDelegate.m.
-        (-[FrameLoadDelegate init]):
-        (-[FrameLoadDelegate dealloc]):
-        (-[FrameLoadDelegate processWork:]):
-        (-[FrameLoadDelegate webView:locationChangeDone:forDataSource:]):
-        (-[FrameLoadDelegate webView:didClearWindowObject:forFrame:]):
-        Convert to use the new JSCore based LayoutTestController and the new WorkQueue.
-
-        * DumpRenderTree/LayoutTestController.cpp: Added.
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::~LayoutTestController):
-        (dumpAsTextCallback):
-        (dumpBackForwardListCallback):
-        (dumpChildFramesAsTextCallback):
-        (dumpChildFrameScrollPositionsCallback):
-        (dumpDOMAsWebArchiveCallback):
-        (dumpEditingCallbacksCallback):
-        (dumpFrameLoadCallbacksCallback):
-        (dumpResourceLoadCallbacksCallback):
-        (dumpSelectionRectCallback):
-        (dumpSourceAsWebArchiveCallback):
-        (dumpTitleChangesCallback):
-        (repaintSweepHorizontallyCallback):
-        (setCallCloseOnWebViewsCallback):
-        (setCanOpenWindowsCallback):
-        (setCloseRemainingWindowsWhenCompleteCallback):
-        (testRepaintCallback):
-        (addFileToPasteboardOnDragCallback):
-        (addDisallowedURLCallback):
-        (clearBackForwardListCallback):
-        (decodeHostNameCallback):
-        (displayCallback):
-        (encodeHostNameCallback):
-        (keepWebHistoryCallback):
-        (notifyDoneCallback):
-        (queueBackNavigationCallback):
-        (queueForwardNavigationCallback):
-        (queueLoadCallback):
-        (queueReloadCallback):
-        (queueScriptCallback):
-        (setAcceptsEditingCallback):
-        (setCustomPolicyDelegateCallback):
-        (setMainFrameIsFirstResponderCallback):
-        (setTabKeyCyclesThroughElementsCallback):
-        (setUseDashboardCompatibilityModeCallback):
-        (setUserStyleSheetEnabledCallback):
-        (setUserStyleSheetLocationCallback):
-        (setWindowIsKeyCallback):
-        (waitUntilDoneCallback):
-        (windowCountCallback):
-        (LayoutTestController::makeWindowObject):
-        (LayoutTestController::getLayoutTestControllerJSClass):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h: Replaced.
-        * DumpRenderTree/LayoutTestController.m: Removed.
-        * DumpRenderTree/LayoutTestControllerMac.mm: Added.
-        (LayoutTestController::dumpAsText):
-        (LayoutTestController::dumpBackForwardList):
-        (LayoutTestController::dumpChildFramesAsText):
-        (LayoutTestController::dumpChildFrameScrollPositions):
-        (LayoutTestController::dumpDOMAsWebArchive):
-        (LayoutTestController::dumpEditingCallbacks):
-        (LayoutTestController::dumpFrameLoadCallbacks):
-        (LayoutTestController::dumpResourceLoadCallbacks):
-        (LayoutTestController::dumpSelectionRect):
-        (LayoutTestController::dumpSourceAsWebArchive):
-        (LayoutTestController::dumpTitleChanges):
-        (LayoutTestController::repaintSweepHorizontally):
-        (LayoutTestController::setCallCloseOnWebViews):
-        (LayoutTestController::setCanOpenWindows):
-        (LayoutTestController::setCloseRemainingWindowsWhenComplete):
-        (LayoutTestController::testRepaint):
-        (LayoutTestController::addFileToPasteboardOnDrag):
-        (LayoutTestController::addDisallowedURL):
-        (LayoutTestController::clearBackForwardList):
-        (LayoutTestController::decodeHostName):
-        (LayoutTestController::encodeHostName):
-        (LayoutTestController::display):
-        (LayoutTestController::keepWebHistory):
-        (LayoutTestController::notifyDone):
-        (LayoutTestController::queueBackNavigation):
-        (LayoutTestController::queueForwardNavigation):
-        (LayoutTestController::queueLoad):
-        (LayoutTestController::queueReload):
-        (LayoutTestController::queueScript):
-        (LayoutTestController::setAcceptsEditing):
-        (LayoutTestController::setCustomPolicyDelegate):
-        (LayoutTestController::setMainFrameIsFirstResponder):
-        (LayoutTestController::setTabKeyCyclesThroughElements):
-        (LayoutTestController::setUseDashboardCompatibilityMode):
-        (LayoutTestController::setUserStyleSheetEnabled):
-        (LayoutTestController::setUserStyleSheetLocation):
-        (LayoutTestController::setWindowIsKey):
-        (+[WaitToDumpWatchdog waitUntilDoneWatchdogFired]):
-        (LayoutTestController::waitUntilDone):
-        (LayoutTestController::windowCount):
-        Use the JSCore API to implement the LayoutTestController.
-
-        * DumpRenderTree/ObjCController.h:
-        * DumpRenderTree/ObjCController.m:
-        (+[ObjCController isSelectorExcludedFromWebScript:]):
-        (+[ObjCController webScriptNameForSelector:]):
-        (-[ObjCController accessStoredWebScriptObject]):
-        (-[ObjCController storeWebScriptObject:]):
-        (-[ObjCController dealloc]):
-        (-[ObjCController invokeUndefinedMethodFromWebScript:withArguments:]):
-        Move WebScriptObject tests to ObjCController.
-
-        * DumpRenderTree/UIDelegate.m: Removed.
-        * DumpRenderTree/UIDelegate.mm: Copied from DumpRenderTree/UIDelegate.m.
-
-        * DumpRenderTree/WorkQueue.cpp: Copied from DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/WorkQueue.cpp.
-        * DumpRenderTree/WorkQueue.h: Copied from DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/WorkQueue.h.
-        * DumpRenderTree/WorkQueueItem.h: Copied from DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/WorkQueueItem.h.
-        (WorkQueueItem::~WorkQueueItem):
-        (LoadItem::LoadItem):
-        (LoadItem::url):
-        (LoadItem::target):
-        (ScriptItem::ScriptItem):
-        (ScriptItem::script):
-        * DumpRenderTree/WorkQueueItemMac.mm: Added.
-        (LoadItem::invoke):
-        (ReloadItem::invoke):
-        (ScriptItem::invoke):
-        (BackForwardItem::invoke):
-        Copy WorkQueue and WorkQueueItem from windows DRT. Changed the WorkQueueItem to use JSStringRefs instead of wstrings
-        to avoid conversion until the last possible moment.  These changes will be merged with the windows DRT when we start
-        sharing code.
-
-2007-09-11  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Maciej.
-
-        - Updated Win side to take advantage of the platform separating changes.
-
-        * Drosera/DebuggerDocument.cpp:
-        (DebuggerDocument::localScopeVariableNamesForCallFrame):
-        * Drosera/DebuggerDocument.h:
-        * Drosera/win/DebuggerClient.cpp:
-        (DebuggerClient::pause):
-        (DebuggerClient::resume):
-        (DebuggerClient::stepInto):
-        (DebuggerDocument::platformPause):
-        (DebuggerDocument::platformResume):
-        (DebuggerDocument::platformStepInto):
-        (DebuggerDocument::platformEvaluateScript):
-        (DebuggerDocument::getPlatformCurrentFunctionStack):
-        (DebuggerDocument::getPlatformLocalScopeVariableNamesForCallFrame):
-        (DebuggerDocument::platformValueForScopeVariableNamed):
-        (DebuggerDocument::platformLog):
-        * Drosera/win/DebuggerClient.h:
-        * Drosera/win/Drosera.cpp:
-        (Drosera::Drosera):
-        (Drosera::windowScriptObjectAvailable):
-        (Drosera::initWithServerName):
-        (Drosera::switchToServerNamed):
-        * Drosera/win/Drosera.h:
-        * Drosera/win/Drosera.vcproj/Drosera.vcproj:
-
-2007-09-11  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Adam.
-
-        - Just doing the moves in a separate patch so the changes are easier to see.
-
-        * Drosera/win/DebuggerClient.cpp: Copied from Drosera/win/DebuggerDocumentWin.cpp.
-        * Drosera/win/DebuggerClient.h: Copied from Drosera/win/DebuggerDocumentWin.h.
-        * Drosera/win/DebuggerDocumentWin.cpp: Removed.
-        * Drosera/win/DebuggerDocumentWin.h: Removed.
-        * Drosera/win/Drosera.vcproj/Drosera.vcproj:
-
-2007-09-11  Sven Herzberg  <sven@imendio.com>
-
-        Don't overwrite LD_LIBRARY_PATH, prepend to it. Fixes:
-        http://bugs.webkit.org/show_bug.cgi?id=15176
-
-        * Scripts/run-launcher: don't replace LD_LIBRARY_PATH with
-        $projectDir, but prepend $projectDir to LD_LIBRARY_PATH (to preserve
-        other paths eg. from jhbuild)
-
-2007-09-10  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Adam.
-
-        - Made an order-of-deletion mistake.
-
-        * Drosera/DebuggerDocument.h:
-        * Drosera/ForwardingHeaders/wtf/Assertions.h: Removed.
-        * Drosera/ForwardingHeaders/wtf/Noncopyable.h: Removed.
-        * Drosera/ForwardingHeaders/wtf/OwnPtr.h: Removed.
-        * Drosera/mac/DebuggerClient.mm:
-        (DebuggerDocument::platformPause):
-        (DebuggerDocument::platformResume):
-        (DebuggerDocument::platformStepInto):
-        (DebuggerDocument::platformEvaluateScript):
-        (DebuggerDocument::getPlatformCurrentFunctionStack):
-        (DebuggerDocument::getPlatformLocalScopeVariableNamesForCallFrame):
-        (DebuggerDocument::platformValueForScopeVariableNamed):
-        * Drosera/mac/Drosera.xcodeproj/project.pbxproj:
-
-2007-09-10  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Darin Adler.
-
-        - Renaming DebuggerDocument[platform] to DebuggerClient to be more clear.
-
-        * Drosera/DebuggerDocument.cpp:
-        (DebuggerDocument::DebuggerDocument):
-        * Drosera/DebuggerDocument.h:
-        * Drosera/ForwardingHeaders/wtf/Assertions.h: Added.
-        * Drosera/ForwardingHeaders/wtf/Noncopyable.h: Added.
-        * Drosera/ForwardingHeaders/wtf/OwnPtr.h: Added.
-        * Drosera/mac/DebuggerApplication.mm:
-        (-[DebuggerApplication attach:]):
-        * Drosera/mac/DebuggerClient.h: Copied from Drosera/mac/DebuggerDocumentMac.h.
-        * Drosera/mac/DebuggerClient.mm: Copied from Drosera/mac/DebuggerDocumentMac.mm.
-        (DebuggerDocument::platformPause):
-        (DebuggerDocument::platformResume):
-        (DebuggerDocument::platformStepInto):
-        (DebuggerDocument::platformEvaluateScript):
-        (DebuggerDocument::getPlatformCurrentFunctionStack):
-        (DebuggerDocument::getPlatformLocalScopeVariableNamesForCallFrame):
-        (DebuggerDocument::platformValueForScopeVariableNamed):
-        (DebuggerDocument::platformLog):
-        * Drosera/mac/DebuggerDocumentMac.h: Removed.
-        * Drosera/mac/DebuggerDocumentMac.mm: Removed.
-        * Drosera/mac/Drosera.xcodeproj/project.pbxproj:
-
-2007-09-09  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        Remove 'objC' prefix from methods now in the ObjCController.
-
-        * DumpRenderTree/ObjCController.m:
-        (+[ObjCController isSelectorExcludedFromWebScript:]):
-        (+[ObjCController webScriptNameForSelector:]):
-        (-[ObjCController classNameOf:]):
-        (-[ObjCController objectOfClass:]):
-        (-[ObjCController identityIsEqual::]):
-        (-[ObjCController longLongRoundTrip:]):
-        (-[ObjCController unsignedLongLongRoundTrip:]):
-
-2007-09-09  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Oliver.
-
-        Initial refactor of DumpRenderTree in preparation of making it more platform independent.
-        - Move LayoutTestController into its own file.
-        - Move Objective-C only functions on LayoutTestController into a new controller called the
-          ObjCController.
-
-        * DumpRenderTree/DumpRenderTree.h:
-        * DumpRenderTree/DumpRenderTree.m:
-        (displayWebView):
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/FrameLoadDelegate.m:
-        (-[FrameLoadDelegate webView:didClearWindowObject:forFrame:]):
-        * DumpRenderTree/LayoutTestController.h: Added.
-        * DumpRenderTree/LayoutTestController.m: Added.
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (+[LayoutTestController webScriptNameForSelector:]):
-        (-[LayoutTestController clearBackForwardList]):
-        (-[LayoutTestController setUseDashboardCompatibilityMode:]):
-        (-[LayoutTestController setCloseRemainingWindowsWhenComplete:]):
-        (-[LayoutTestController setCustomPolicyDelegate:]):
-        (-[LayoutTestController keepWebHistory]):
-        (-[LayoutTestController setCallCloseOnWebViews:]):
-        (-[LayoutTestController setCanOpenWindows]):
-        (-[LayoutTestController waitUntilDone]):
-        (-[LayoutTestController waitUntilDoneWatchdogFired]):
-        (-[LayoutTestController notifyDone]):
-        (-[LayoutTestController dumpAsText]):
-        (-[LayoutTestController addFileToPasteboardOnDrag]):
-        (-[LayoutTestController addDisallowedURL:]):
-        (-[LayoutTestController setUserStyleSheetLocation:]):
-        (-[LayoutTestController setUserStyleSheetEnabled:]):
-        (-[LayoutTestController dumpDOMAsWebArchive]):
-        (-[LayoutTestController dumpSourceAsWebArchive]):
-        (-[LayoutTestController dumpSelectionRect]):
-        (-[LayoutTestController dumpTitleChanges]):
-        (-[LayoutTestController dumpBackForwardList]):
-        (-[LayoutTestController windowCount]):
-        (-[LayoutTestController dumpChildFrameScrollPositions]):
-        (-[LayoutTestController dumpChildFramesAsText]):
-        (-[LayoutTestController dumpEditingCallbacks]):
-        (-[LayoutTestController dumpResourceLoadCallbacks]):
-        (-[LayoutTestController dumpFrameLoadCallbacks]):
-        (-[LayoutTestController setWindowIsKey:]):
-        (-[LayoutTestController setMainFrameIsFirstResponder:]):
-        (-[LayoutTestController display]):
-        (-[LayoutTestController testRepaint]):
-        (-[LayoutTestController repaintSweepHorizontally]):
-        (-[LayoutTestController invokeUndefinedMethodFromWebScript:withArguments:]):
-        (-[LayoutTestController _addWorkForTarget:selector:arg1:arg2:]):
-        (-[LayoutTestController _doLoad:target:]):
-        (-[LayoutTestController _doBackOrForwardNavigation:]):
-        (-[LayoutTestController queueBackNavigation:]):
-        (-[LayoutTestController queueForwardNavigation:]):
-        (-[LayoutTestController queueReload]):
-        (-[LayoutTestController queueScript:]):
-        (-[LayoutTestController queueLoad:target:]):
-        (-[LayoutTestController setAcceptsEditing:]):
-        (-[LayoutTestController setTabKeyCyclesThroughElements:]):
-        (-[LayoutTestController storeWebScriptObject:]):
-        (-[LayoutTestController accessStoredWebScriptObject]):
-        (-[LayoutTestController dealloc]):
-        (-[LayoutTestController decodeHostName:]):
-        (-[LayoutTestController encodeHostName:]):
-        * DumpRenderTree/ObjCController.h: Added.
-        * DumpRenderTree/ObjCController.m: Added.
-        (+[ObjCController isSelectorExcludedFromWebScript:]):
-        (+[ObjCController webScriptNameForSelector:]):
-        (-[ObjCController objCClassNameOf:]):
-        (-[ObjCController objCObjectOfClass:]):
-        (-[ObjCController objCIdentityIsEqual::]):
-        (-[ObjCController objCLongLongRoundTrip:]):
-        (-[ObjCController objCUnsignedLongLongRoundTrip:]):
-        (-[ObjCController testWrapperRoundTripping:]):
-
-2007-09-07  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Alice.
-
-        Strip trailing and leading space/newline characters from skiplist file names.
-
-        * Scripts/run-webkit-tests:
-
-2007-09-06  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Maciej.
-
-        - Changed Drosera to take advantage of the JSRetainPtr changes.
-
-        * Drosera/DebuggerDocument.cpp:
-        (DebuggerDocument::breakpointEditorHTML):
-        (DebuggerDocument::evaluateScript):
-        (DebuggerDocument::valueForScopeVariableNamed):
-        (DebuggerDocument::log):
-        (DebuggerDocument::windowScriptObjectAvailable):
-        (DebuggerDocument::toJSArray):
-        (DebuggerDocument::callFunctionOnObject):
-        (DebuggerDocument::logException):
-        * Drosera/mac/DebuggerDocumentMac.mm:
-        (-[DebuggerClientMac webView:didLoadMainResourceForDataSource:]):
-        (-[DebuggerClientMac webView:didParseSource:baseLineNumber:fromURL:sourceId:forWebFrame:]):
-        (DebuggerDocument::platformEvaluateScript):
-        (DebuggerDocument::getPlatformCurrentFunctionStack):
-        (DebuggerDocument::getPlatformLocalScopeVariableNamesForCallFrame):
-        (DebuggerDocument::platformValueForScopeVariableNamed):
-
-2007-09-05  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Adam, Sam, Darin.
-
-        - Separated what is platform dependant from what is not.  Creating the structure needed for Drosera for Win.
-
-        * Drosera/Debugger.h: Added.
-        * Drosera/DebuggerDocument.cpp:
-        (DebuggerDocument::breakpointEditorHTMLCallback):
-        (DebuggerDocument::isPausedCallback):
-        (DebuggerDocument::pauseCallback):
-        (DebuggerDocument::resumeCallback):
-        (DebuggerDocument::stepIntoCallback):
-        (DebuggerDocument::evaluateScriptCallback):
-        (DebuggerDocument::currentFunctionStackCallback):
-        (DebuggerDocument::localScopeVariableNamesForCallFrameCallback):
-        (DebuggerDocument::valueForScopeVariableNamedCallback):
-        (DebuggerDocument::logCallback):
-        (DebuggerDocument::breakpointEditorHTML):
-        (DebuggerDocument::isPaused):
-        (DebuggerDocument::pause):
-        (DebuggerDocument::resume):
-        (DebuggerDocument::stepInto):
-        (DebuggerDocument::evaluateScript):
-        (DebuggerDocument::currentFunctionStack):
-        (DebuggerDocument::localScopeVariableNamesForCallFrame):
-        (DebuggerDocument::valueForScopeVariableNamed):
-        (DebuggerDocument::log):
-        (DebuggerDocument::toolbarPause):
-        (DebuggerDocument::toolbarResume):
-        (DebuggerDocument::toolbarStepInto):
-        (DebuggerDocument::toolbarStepOver):
-        (DebuggerDocument::toolbarStepOut):
-        (DebuggerDocument::toolbarShowConsole):
-        (DebuggerDocument::toolbarCloseCurrentFile):
-        (DebuggerDocument::updateFileSource):
-        (DebuggerDocument::didParseScript):
-        (DebuggerDocument::willExecuteStatement):
-        (DebuggerDocument::didEnterCallFrame):
-        (DebuggerDocument::willLeaveCallFrame):
-        (DebuggerDocument::exceptionWasRaised):
-        (DebuggerDocument::windowScriptObjectAvailable):
-        (DebuggerDocument::toJSArray):
-        (DebuggerDocument::callGlobalFunction):
-        (DebuggerDocument::callFunctionOnObject):
-        (DebuggerDocument::getDroseraJSClass):
-        (DebuggerDocument::staticFunctions):
-        (DebuggerDocument::logException):
-        * Drosera/DebuggerDocument.h:
-        (DebuggerDocument::DebuggerDocument):
-        * Drosera/ForwardingHeaders: Added.
-        * Drosera/ForwardingHeaders/wtf: Added.
-        * Drosera/ForwardingHeaders/wtf/Platform.h: Added.
-        * Drosera/config.h:
-        * Drosera/console.html:
-        * Drosera/console.js:
-        * Drosera/debugger.js:
-        * Drosera/mac/DebuggerApplication.mm:
-        (-[DebuggerApplication attach:]):
-        * Drosera/mac/DebuggerDocumentMac.h:
-        * Drosera/mac/DebuggerDocumentMac.mm:
-        (+[NSString stringOrNilFromWebScriptResult:]):
-        (+[DebuggerClientMac log:]):
-        (-[DebuggerClientMac initWithServerName:]):
-        (-[DebuggerClientMac dealloc]):
-        (-[DebuggerClientMac pause]):
-        (-[DebuggerClientMac resume]):
-        (-[DebuggerClientMac pause:]):
-        (-[DebuggerClientMac resume:]):
-        (-[DebuggerClientMac stepInto:]):
-        (-[DebuggerClientMac stepOver:]):
-        (-[DebuggerClientMac stepOut:]):
-        (-[DebuggerClientMac showConsole:]):
-        (-[DebuggerClientMac closeCurrentFile:]):
-        (-[DebuggerClientMac validateUserInterfaceItem:]):
-        (-[DebuggerClientMac webView:windowScriptObjectAvailable:]):
-        (-[DebuggerClientMac webView:didEnterCallFrame:sourceId:line:forWebFrame:]):
-        (-[DebuggerClientMac webView:willExecuteStatement:sourceId:line:forWebFrame:]):
-        (-[DebuggerClientMac webView:willLeaveCallFrame:sourceId:line:forWebFrame:]):
-        (-[DebuggerClientMac webView:exceptionWasRaised:sourceId:line:forWebFrame:]):
-        (DebuggerDocument::platformPause):
-        (DebuggerDocument::platformResume):
-        (DebuggerDocument::platformStepInto):
-        (DebuggerDocument::platformEvaluateScript):
-        (DebuggerDocument::platformCurrentFunctionStack):
-        (DebuggerDocument::platformLocalScopeVariableNamesForCallFrame):
-        (DebuggerDocument::platformValueForScopeVariableNamed):
-        (DebuggerDocument::platformLog):
-        * Drosera/mac/Drosera.xcodeproj/project.pbxproj:
-
-2007-09-06  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Register the WebKit DLL on initialization of the DumpRenderTree.
-
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.cpp:
-        (initialize):
-
-2007-09-05  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Oliver.
-
-        Fix many layout test failures caused by r25364.
-        Set text size to standand size at the begining of each test matching the mac.
-
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.cpp:
-        (runTest):
-
-2007-09-04  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Adam.
-
-        Fix for <rdar://problem/5382277>
-        Implement eventSender.textZoomIn and eventSender.textZoomOut for windows DRT.
-
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/EventSender.cpp:
-        (textZoomInCallback):
-        (textZoomOutCallback):
-
-2007-08-29  David Kilzer  <ddkilzer@apple.com>
-
-        Reviewed by Adam.
-
-        Added case-insensitivity to checks for adding regression tests.
-
-        * Scripts/prepare-ChangeLog:
-        (generateFileList):
-
-2007-08-28  David Kilzer  <ddkilzer@apple.com>
-
-        Reviewed by Maciej.
-
-        Ignore files in /resources/ subdirectories when creating a list of added tests.
-
-        * Scripts/prepare-ChangeLog:
-        (generateFileList):
-
-2007-08-27  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by John.
-
-        - Removed Leopard leaks list since all of those radars were fixed.
-
-        * Scripts/run-webkit-tests:
-
-2007-08-27  Adam Roben  <aroben@apple.com>
-
-        Rubberstamped by Mark.
-
-        * Scripts/pdevenv: Pass arguments along to devenv.com.
-
-2007-08-26  David Kilzer  <ddkilzer@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        Update prepare-ChangeLog to generate the datestamp in the correct timezone.
-
-        * Scripts/prepare-ChangeLog:
-        (changeLogDate): Added.
-
-2007-08-24  Sam Weinig  <sam@webkit.org>
-
-        Revert r25216 which renamed the COM DOM bindings to use Deprecated prefix.
-
-2007-08-24  Sam Weinig  <sam@webkit.org>
-
-        Rubber-stamped by Adam Roben.
-
-        <rdar://problem/5434593> Deprecate current manually written COM DOM bindings in anticipation of autogeneration
-
-        Rename COM DOM bindings to use Deprecated prefix.
-
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.cpp:
-        (dumpFramesAsText):
-        (dump):
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/EditingDelegate.cpp:
-        (dumpPath):
-        (dump):
-        (EditingDelegate::shouldBeginEditingInDOMRange):
-        (EditingDelegate::shouldEndEditingInDOMRange):
-        (EditingDelegate::shouldInsertNode):
-        (EditingDelegate::shouldInsertText):
-        (EditingDelegate::shouldDeleteDOMRange):
-        (EditingDelegate::shouldChangeSelectedDOMRange):
-        (EditingDelegate::shouldApplyStyle):
-        (EditingDelegate::shouldChangeTypingStyle):
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/EditingDelegate.h:
-
-2007-08-24  Oliver Hunt  <oliver@apple.com>
-
-        Reviewed by John H.
-
-        WebDataSource::response can legitimately have a null response, so we
-        must check that case.
-
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/LayoutTestController.cpp:
-        (queueLoadCallback):
-
-2007-08-23  Mitz Pettel  <mitz@webkit.org>
-
-        Reviewed by Darin and Adam.
-
-        - DumpRenderTree changes to allow testing for
-          http://bugs.webkit.org/show_bug.cgi?id=11756
-          REGRESSION: link targeting a frame in another window does not work
-          <rdar://problem/5286420>
-
-        Use a frame group name for all WebViews created by DumpRenderTree to
-        allow testing of cross-page frame lookup.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (createWebView): Pass group name to -[WebView initWithFrame:frameName:groupName:].
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.cpp:
-        (main): Pass group name to WebView::initWithFrame(RECT, BSTR, BSTR).
-
-2007-08-23  David Kilzer  <ddkilzer@webkit.org>
-
-        Reviewed by Adam.
-
-        Quote the $sslCertificate path in case it contains a space.
-
-        * Scripts/run-webkit-httpd:
-        * Scripts/run-webkit-tests:
-
-2007-08-22  Oliver Hunt  <oliver@apple.com>
-
-        Reviewed by John and Adam.
-
-        WebDataSource::response can legitimately have a null response, so we
-        must check that case.
-
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.cpp:
-        (dump):
-
-2007-08-21  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Geof.
-
-        - Changing the usage to be more clear.
-
-        * Scripts/run-testkjs:
-
-2007-08-20  John Sullivan  <sullivan@apple.com>
-
-        Reviewed by Adam Roben
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (runTest):
-        call new +[WebView _setUsesTestModeFocusRingColor:YES] so we get the same focus ring colors
-        in layout tests on Tiger and Leopard
-
-2007-08-20  Adam Roben  <aroben@apple.com>
-
-        Put LayoutTests after all other ChangeLogs in commit logs
-
-        We use "~" to sort LayoutTests after all the other ChangeLogs because
-        "~" is the last ASCII character (other than "DEL").
-
-        Reviewed by Sam.
-
-        * Scripts/commit-log-editor:
-
-2007-08-20  Adam Roben  <aroben@apple.com>
-
-        Detect that DRT crashed even if a crash dialog is running
-
-        On Windows, when DRT crashes a crash dialog commonly appears. The DRT
-        process is still running at this point, so run-webkit-tests wouldn't
-        detect that DRT had crashed. We now record the crash in our SIGPIPE
-        handler so that we know if DRT crashed even if the crash dialog is up.
-
-        Reviewed by Sam.
-
-        * Scripts/run-webkit-tests:
-        (sub catch_pipe): Set the crashed bit.
-        (sub openDumpTool): Reset the crashed bit.
-        (sub dumpToolDidCrash): Check the crashed bit.
-
-2007-08-20  Adam Roben  <aroben@apple.com>
-
-        Fix Bug 15026: prepare-ChangeLog should list new tests in WebCore/ChangeLog
-
-        http://bugs.webkit.org/show_bug.cgi?id=15026
-
-        Reviewed by David Kilzer and Darin Adler.
-
-        * Scripts/prepare-ChangeLog:
-        (sub isModifiedStatus): Split out from isModifiedOrAddedStatus.
-        (sub isAddedStatus): Ditto.
-        (sub testListForChangeLog): Added.
-
-2007-08-19  Oleg Sukhodolsky  <son.two@gmail.com>
-
-        Reviewed by Mark.
-
-        -fixes http://bugs.webkit.org/show_bug.cgi?id=14632
-
-        * Scripts/webkitdirs.pm:
-        qt and gtk ports now explicitly pass debug (or release) mode to qmake.
-
-2007-08-17  Darin Adler  <darin@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        - don't look for Apple-style localizable strings in the GTK version of WebKit
-
-        * Scripts/extract-localizable-strings: Add a feature where you can pass in the
-        name of subdirectories to skip.
-        * Scripts/update-webkit-localizable-strings: Pass WebKit/gtk as a subdirectory
-        to skip.
-
-2007-08-17  Anders Carlsson  <andersca@apple.com>
-
-        Build fix.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.c:
-        (NPP_SetWindow):
-
-2007-08-17  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Dave Hyatt.
-
-        <rdar://problem/5379040>
-        REGRESSION (Tiger-Leopard): ADOBE: Safari calls NPP_SetWindow with bad values sometimes
-
-        Add a way for the plug-in to dump the width and height when it gets its  NPP_SetWindow call.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.c:
-        (pluginAllocate):
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.h:
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.c:
-        (NPP_New):
-        (NPP_SetWindow):
-
-2007-08-16  Alice Liu  <alice.liu@apple.com>
-
-        Reviewed by Maciej.
-
-        Fix <rdar://problem/5360135> REGRESSION (Leopard only): editing/selection/5354455-1.html is causing subsequent tests to fail
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (createWebView):
-        Create a DumpRenderTreeWindow instead of a NSWindow, now that a DumpRenderTreeWindow no longer poses as a NSWindow.
-        (dumpRenderTree):
-        Don't pose as a NSWindow, since when the spelling panel gets created, it creates an NSWindow which ends up creating a DumpRenderTreeWindow.
-
-2007-08-16  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Adam.
-
-        - Added tests for regressions in other components.  In this case we also need to add a skipped list for Tiger since this functionality didn't exist in 10.4.
-
-        * Scripts/run-webkit-tests:
-
-2007-08-15  Timothy Hatcher  <timothy@apple.com>
-
-        Look for the new Xcode 3 preference key (PBXApplicationwideBuildSettings) for the global build locations.
-        The value of PBXApplicationwideBuildSettings is a dictionary, so we have to pull the SYMROOT out of it.
-
-        Also pass xcodebuild OBJROOT with the same value as SYMROOT if we fallback to the default WebKitBuild,
-        this prevents making "build" directories in each project folder.
-
-        * Scripts/webkitdirs.pm:
-
-2007-08-14  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Kevin Mccullough.
-
-        Removed special case that didn't belong. (It would allow a global
-        initializer to sneak into production builds, which would cause a
-        system-wide performance regression on Mac OS X.)
-
-        * Scripts/check-for-global-initializers:
-
-2007-08-14  Justin Garcia  <justin.garcia@apple.com>
-
-        Reviewed by Tim.
-
-        <rdar://problem/5408255> REGRESSION: In Mail, clicking the containing element's UI closebox doesn't delete element
-
-        * DumpRenderTree/EditingDelegate.m:
-        (-[EditingDelegate webView:shouldShowDeleteInterfaceForElement:]): Added, return YES
-        only for elements with the class needsDeletionUI.
-
-2007-08-14  David Kilzer  <ddkilzer@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        - fix http://bugs.webkit.org/show_bug.cgi?id=14965
-          svn-create-patch uses deprecated tail switch
-
-        * Scripts/svn-create-patch: Use 'tail -n +3' instead of 'tail +3'.
-
-2007-08-13  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Use the cygwin specific Apache config file under cygwin.
-
-        * Scripts/run-webkit-httpd:
-
-2007-08-12  Adam Roben  <aroben@apple.com>
-
-        Generate results for new tests in a more logical location
-
-        New platform-specific tests always have their results generated right
-        next to the test. New cross-platform tests will have their results
-        generated a) in the cross-platform directory, if they are text-only,
-        or b) in the least-specific platform directory, if they are render
-        tree dumps.
-
-        Reviewed by Lars.
-
-        * Scripts/run-webkit-tests:
-
-2007-08-12  Adam Roben  <aroben@apple.com>
-
-        Print the actual directory where new results are generated.
-
-        Before, we were printing an unpredictable, context-specific substring
-        of the directory.
-
-        Reviewed by Lars.
-
-        * Scripts/run-webkit-tests:
-
-2007-08-12  Adam Roben  <aroben@apple.com>
-
-        Factor some common code into a stripExtension() subroutine.
-
-        Reviewed by Lars.
-
-        * Scripts/run-webkit-tests: Also removed some debugging output.
-
-2007-08-11  Matt Lilek  <pewtermoose@gmail.com>
-
-        Reviewed over and over and over by Adam Roben.
-
-        Bug 14740: Hierarchical layout tests and platform organization
-        http://bugs.webkit.org/show_bug.cgi?id=14740
-
-        Add support for platform-specific layout tests and results.
-
-        * Scripts/run-webkit-tests:
-
-2007-08-11  David Kilzer  <ddkilzer@webkit.org>
-
-        Reviewed by Adam.
-
-        Refactored svn-create-path to use a hash-of-hashes data structure to keep
-        track of changed files.  In the top level hash, keys are paths to files and
-        values are 'fileData' hashes with the following keys and values:
-
-        - isBinary: boolean value (set to true for non-text files like images, etc.)
-        - isTestFile: boolean value (set to true if file exists within a known test
-          directory)
-        - modificationType: string equal to one of 'addition', 'additionWithHistory',
-          'modification' or 'deletion'
-        - path: string equal to the path to the file (this may seem redundant, but it
-          is required to use the second-level 'fileData' hash independent of the
-          top-level hash)
-        - sourceFile: [optional] string equal to the path of the original file that was
-          copied or moved
-        - sourceRevision: [optional] string equal to the revision of the original file
-          that was copied or moved
-
-        * Scripts/svn-create-patch: Moved call to GetOptions() to its own statement
-        that saves the return value in $result, then checks it before printing help.
-        Combined sourceFiles, %testFiles, and %binaryFiles into single %diffFiles hash
-        and eliminated two for() loops.
-        (binarycmp): Added.  Used with sort() to order non-binary files before binary
-        files.
-        (findBaseUrl): Added.  Extracted from findSourceFileAndRevision().
-        (findMimeType): Added optional second argument that takes a revision number.
-        (generateDiff): Updated to take one fileData argument instead of three ($file,
-        $modificationType, $isBinary).
-        (generateFileList): Updated to take one hash ref argument (%diffFiles)
-        instead of three (%sourceFiles, %testFiles, %binaryFiles).  Populates
-        %diffFiles using paths for keys and fileData hashes for values.
-        (manufacturePatchForAdditionWithHistory): Updated to take one fileData
-        argument.
-        (pathcmp): Updated to take two fileData arguments instead of two strings.
-        (testfilecmp): Added.  Used with sort() to order non-test files before test
-        files.
-
-2007-08-11  Darin Adler  <darin@apple.com>
-
-        * Scripts/run-webkit-tests: Give a different message when only the pixel test failed.
-
-2007-08-06  Nigel Tao  <nigeltao@gnome.org>
-
-        Reviewed by David Kilzer.
-
-        Fix bug 14745: WebKitTools/Scripts/run-launcher doesn't speak --gdk
-        http://bugs.webkit.org/show_bug.cgi?id=14745
-
-        * Scripts/run-launcher:
-        Scrub the "--gdk" out of the command line args, if given, so that
-        GdkLauncher doesn't try to interpret it as a URL.
-
-2007-08-03  Adam Roben  <aroben@apple.com>
-
-        Catch SIGPIPE on Windows so that run-webkit-tests doesn't quit when DRT crashes
-
-        Reviewed by Sam.
-
-        * Scripts/run-webkit-tests: Also close ERROR when we finish running the tests.
-
-2007-08-03  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Recursively dump all frames as text using new
-        layoutTestController.dumpChildFramesAsText() function.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (dumpFramesAsText):
-        (dump):
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (-[LayoutTestController dumpChildFramesAsText]):
-        (runTest):
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.cpp:
-        (dumpFramesAsText):
-        (dump):
-        (runTest):
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.h:
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/LayoutTestController.cpp:
-        (dumpChildFramesAsTextCallback):
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-
-2007-08-02  Adam Roben  <aroben@apple.com>
-
-        Fix fast/dom/Window/alert-undefined.html
-
-        Reviewed by Sam.
-
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/WaitUntilDoneDelegate.cpp:
-        (WaitUntilDoneDelegate::runJavaScriptAlertPanelWithMessage): Don't let
-        Windows translate a null BSTR into "(null)"
-
-2007-08-02  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Tim.
-
-        - It would help if I actually called the right function.
-
-        * Drosera/DebuggerDocument.cpp:
-        (DebuggerDocument::showConsole):
-
-2007-08-02  Adam Roben  <aroben@apple.com>
-
-        Don't delete the stderr file right after creating it
-
-        * Scripts/run-webkit-tests:
-
-2007-08-01  Adam Roben  <aroben@apple.com>
-
-        When DRT crashes, record stderr and restart DRT
-
-        This prevents a DRT crash from causing the next few hundred tests to
-        "fail" because DRT is no longer running.
-
-        I also changed the terminology that run-webkit-tests uses in its
-        output a bit, so that crashing tests are referred to as "crashes"
-        instead of "failures".
-
-        Reviewed by Mark.
-
-        * Scripts/run-webkit-tests: Detect a crash and record it as a tool
-        failure.
-        (sub openDumpTool): Use open3 so that we can access stderr.
-        (sub dumpToolCrashed): Added.
-        (sub printFailureMessageForTest): Added.
-        (sub htmlForExpectedAndActualResults): Added.
-        (sub deleteExpectedAndActualResults): Added.
-        (sub recordActualResultsAndDiff): Added.
-
-2007-07-30  Darin Adler  <darin@apple.com>
-
-        Reviewed by Tim Hatcher.
-
-        * DumpRenderTree/DumpRenderTree.m: (dump): Fix dumping for documents that include null
-        characters. This turned out not to be needed for the test case that motivated me to
-        do it, but it's nice to have this for the future.
-
-2007-07-30  Simon Hausmann  <hausmann@kde.org>
-
-        Reviewed by Lars.
-
-        Link QtLauncher into $$OUTPUT_DIR/bin
-
-        * Scripts/run-launcher:
-
-2007-07-27  David Kilzer  <ddkilzer@apple.com>
-
-        Reviewed by Geoff and Darin.
-
-        Use a subroutine for validating the --skipped switch.
-
-        * Scripts/run-webkit-tests:
-
-2007-07-27  Darin Adler  <darin@apple.com>
-
-        Reviewed by Sam.
-
-        * Scripts/run-webkit-tests: Remove exception for leaks bug that has been fixed on Leopard.
-
-2007-07-27  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Reviewed by Mark.
-
-        Correct the path of GdkLauncher and make checkFrameworks work on OSX
-        when building the Qt or Gtk+ port.
-
-        * GdkLauncher/GdkLauncher.pro: Don't create an app bundle on OSX
-        * Scripts/run-launcher:
-        * Scripts/webkitdirs.pm: Don't add WebKit if we build the Qt or Gtk+ port.
-
-2007-07-27  Simon Hausmann  <hausmann@kde.org>
-
-        Done with and reviewed by Lars and Zack.
-
-        Fix build-webkit for the Qt build on Windows with msvc/nmake by trying to detect the Qt mkspec and using "nmake" instead of "make" as build command.
-
-        * Scripts/webkitdirs.pm:
-
-2007-07-27  Simon Hausmann  <hausmann@kde.org>
-
-        Done with and reviewed by Lars and Zack.
-
-        For detecting the SVG support for the Qt build don't do the nm hack. Just always claim SVG support is enabled because that's what it is. The nm hack doesn't work on Windows anyway.
-
-        * Scripts/webkitdirs.pm:
-
-2007-07-26  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Darin, Geoff, Sam.
-
-        - <rdar://problem/5150461> Resizing the window larger than the screen causes no resize.
-
-        - Added delegate methods to intercept and fake the frame location so methods like resizeTo and moveTo can change the window location without actually making the window appear on-screen.
-
-        * DumpRenderTree/UIDelegate.h:
-        * DumpRenderTree/UIDelegate.m:
-        (-[UIDelegate webView:setFrame:]):
-        (-[UIDelegate webViewFrame:]):
-
-2007-07-26  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Adam.
-
-        - Lars wanted this check for Qt but it breaks platform specific layout tests.
-
-        * Scripts/run-webkit-tests:
-
-2007-07-25  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Tim, Darin, Oliver.
-
-        - <rdar://problem/5329440> REGRESSION: Clicking links with the feed:// protocol in Safari 3 does nothing
-        - Change DRT to be able to intercept the requst to load so it can check if a scheme was allowed or not.
-
-        * ChangeLog:
-        * DumpRenderTree/DumpRenderTree.m:
-        (createWebView):
-        (dumpRenderTree):
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (+[LayoutTestController webScriptNameForSelector:]):
-        (-[LayoutTestController setCustomPolicyDelegate:]):
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/FrameLoadDelegate.h:
-        * DumpRenderTree/PolicyDelegate.h: Added.
-        * DumpRenderTree/PolicyDelegate.m: Added.
-        (-[PolicyDelegate webView:decidePolicyForNavigationAction:request:frame:decisionListener:]):
-        * DumpRenderTree/ResourceLoadDelegate.h:
-
-2007-07-25  Adam Treat  <treat@kde.org>
-
-        Reviewed by Niko.
-
-        Fix build for some reported systems.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/jsobjects.cpp:
-
-2007-07-23  Adam Treat  <treat@kde.org>
-
-        Reviewed by Nikolas.
-
-        Fix qt DRT to suppress js popup alerts and log instead.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::WebPage::javaScriptAlert):
-
-2007-07-22  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Reviewed by Adam.
-
-        Make the GdkLauncher use the new WebKit/Gtk API. Change webkitdirs.pm to
-        honor --qmakearg for the Gdk/Gtk build as well.
-
-        * GdkLauncher/main.cpp: Switch to the new API
-        * Scripts/webkitdirs.pm: Allow to specify --qmakearg, e.g. to control the WEBKIT_{INC,LIB}_DIR
-
-2007-07-22  Darin Adler  <darin@apple.com>
-
-        * DumpRenderTree/TextInputController.m: (-[TextInputController interpretKeyEvents:withSender:]):
-        Fix a leak by releasing the array used here.
-
-2007-07-22  David Kilzer  <ddkilzer@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        - fix http://bugs.webkit.org/show_bug.cgi?id=14713
-          Script to update iExploder cssproperties.in file based on CSSPropertyNames.in
-
-        Added script to update WebKitTools/iExploder/htdocs/cssproperties.in based on the contents
-        of WebCore/css/CSSPropertyNames.in.  Also updated cssproperties.in.
-
-        * Scripts/update-iexploder-cssproperties: Added.
-        * iExploder/htdocs/cssproperties.in: Updated by running update-iexploder-cssproperties script.
-        Added new CSS3 property section and Moved box-sizing property to it.
-
-2007-07-22  Oliver Hunt  <oliver@apple.com>
-
-        Reviewed by Darin Adler.
-
-        http://bugs.webkit.org/show_bug.cgi?id=14710
-
-        Add preliminary support for testing Input Method/WebKit behaviour and interaction
-        in DRT.  This provides the NSTextInput API which is most of what should be necessary
-        to mimic the event sequences Input Methods trigger.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/TextInputController.h:
-        * DumpRenderTree/TextInputController.m:
-        (-[WebHTMLView interpretKeyEvents:]):
-        (+[TextInputController isSelectorExcludedFromWebScript:]):
-        (+[TextInputController webScriptNameForSelector:]):
-        (-[TextInputController initWithWebView:]):
-        (-[TextInputController dealloc]):
-        (-[TextInputController textInput]):
-        (-[TextInputController setInputMethodHandler:]):
-        (-[TextInputController interpretKeyEvents:withSender:]):
-
-2007-07-20  Adam Roben  <aroben@apple.com>
-
-        * Scripts/commit-log-editor: Small fix to make an all-whitespace log
-        message not count as an existing log.
-
-2007-07-19  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Updated DumpRenderTree for <rdar://problem/5348384> Restore old return
-        value behavior of stringByEvaluatingJavaScriptFromString
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (testStringByEvaluatingJavaScriptFromString):
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-
-2007-07-19  Adam Roben  <aroben@apple.com>
-
-        Make commit-log-editor work with git
-
-        Reviewed by Sam.
-
-        * Scripts/commit-log-editor: Use VCSUtils and accept a git-style
-        commit message template. Also removed the unused $breakPoint variable.
-
-2007-07-19  Adam Roben  <aroben@apple.com>
-
-        Move generally-useful VCS code into a new VCSUtils.pm module
-
-        This is in preparation for making commit-log-editor git-friendly.
-
-        Reviewed by Sam.
-
-        * Scripts/VCSUtils.pm: Added. Code moved here from prepare-ChangeLog.
-        * Scripts/prepare-ChangeLog: Use VCSUtils.
-
-2007-07-19  Lars Knoll <lars@trolltech.com>
-
-        Fix a crash on exit when running DRT against a current
-        Qt 4.4 snapshot.
-
-        Reviewed by Zack
-
-        * DumpRenderTree/DumpRenderTree.qtproj/main.cpp:
-        (main):
-
-2007-07-18  Adam Roben  <aroben@apple.com>
-
-        Don't try to use an SSL certificate on Windows until <rdar://problem/5345985> is fixed
-
-        Reviewed by Mark.
-
-        * Scripts/run-webkit-httpd:
-        * Scripts/run-webkit-tests:
-
-2007-07-18  Adam Roben  <aroben@apple.com>
-
-        More git friendliness for prepare-ChangeLog
-
-        The overall change is to remove the use of git-status and replace it
-        with git-diff --name-status (which we were already using in the
-        --git-commit case).
-
-        This lets us respect directories specified on the command line when
-        using git, just as we do for Subversion. It also speeds things up a
-        bit, especially in the subdirectory case, as git-status is pretty slow.
-
-        I also fixed some issues where we wouldn't detect copied files and
-        would reverse the new filename and the original filename for renamed files.
-
-        Reviewed by Mark.
-
-        * Scripts/prepare-ChangeLog:
-        (sub diffFromToString): Added.
-        (sub diffCommand): Don't append the paths in the --git-commit case, as
-        we should be operating on the entire commit.
-        (sub statusCommand): Always use git-diff --name-status, and added an
-        extra -C option to git-diff to make it find a few more copied files.
-        (sub createPatchCommand): Collapsed the two git cases a bit, and added
-        the extra -C option as above.
-        (sub generateFileList): Remove the git-status codepath, and recognize
-        file copies in the --name-status output.
-        (sub isModifiedOrAddedStatus): Collapsed the status codes into one
-        dictionary.
-        (sub isConflictStatus): Updated the git dictionary.
-        (sub statusDescription): Updated the git dictionary.
-
-2007-07-18  Timothy Hatcher  <timothy@apple.com>
-
-        * Scripts/build-drosera: Update where we look for the Xcode project.
-
-2007-07-18  Adam Treat <treat@kde.org>
-
-        Reviewed by bdash.
-
-        Use the old wording for Safari.
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-
-2007-07-18  Adam Treat <treat@kde.org>
-
-        Reviewed by bdash.
-
-        Add convenience script for launching test apps for Qt and Gdk ports.
-        Change the build-webkit script accordingly.
-
-        * Scripts/build-webkit:
-        * Scripts/run-launcher: Added.
-        * Scripts/webkitdirs.pm:
-
-2007-07-18  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Adam.
-
-        Make the Page with the now required InspectorClient.
-
-        * GdkLauncher/main.cpp:
-        (main):
-
-2007-07-18  Timothy Hatcher  <timothy@apple.com>
-
-        Remove the redundant copies of Makefile.shared and the new Makefile.Drosera.
-        Now included the main Makefile.shared and change the SCRIPTS_PATH variable as needed.
-
-        * Drosera/Makefile: Added.
-        * Drosera/mac/Makefile:
-        * DumpRenderTree/Makefile:
-        * Makefile:
-        * Makefile.Drosera: Removed.
-        * Makefile.shared: Removed.
-
-2007-07-18  Timothy Hatcher  <timothy@apple.com>
-
-        The console log was 20px down from the top for no reason, move it up.
-
-        * Drosera/console.css:
-
-2007-07-18  Timothy Hatcher  <timothy@apple.com>
-
-        Use contentDocument to get the source view's iframe document.
-        Also adds a null/undefined check for localVariableNames.
-
-        * Drosera/debugger.js:
-
-2007-07-18  Lars Knoll <lars@trolltech.com>
-
-        We really don't want to compare non text only tests to the
-        Mac results if we don't have a result for Qt, as this would
-        give a failure and not a notification that the test is new.
-
-        Reviewed by Zack
-
-        * Scripts/run-webkit-tests:
-
-2007-07-18  Lars Knoll <lars@trolltech.com>
-
-        Reviewed by Zack & Simon
-
-        Adjust to changed API in QWebFrame
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-
-2007-07-18  Mark Rowe  <mrowe@apple.com>
-
-        Update path to the Drosera Xcode project now that it has moved into a subdirectory.
-
-        * BuildSlaveSupport/build-launcher-app:
-
-2007-07-17  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Antti Koivisto.
-
-        Added watchdog timer to waitUntilDone to prevent a run-away test from
-        hanging the test harness.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (dump):
-        (-[LayoutTestController waitUntilDone]):
-        (-[LayoutTestController waitUntilDoneWatchdogFired]):
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-
-2007-07-17  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Adam.
-
-        - Implemented cross-platform code for functions calling into the JavaScript.
-
-        * Drosera/DebuggerDocument.cpp:
-        (DebuggerDocument::callAsFunction):
-        (DebuggerDocument::pauseJS):
-        (DebuggerDocument::resumeJS):
-        (DebuggerDocument::stepIntoJS):
-        (DebuggerDocument::stepOverJS):
-        (DebuggerDocument::stepOutJS):
-        (DebuggerDocument::showConsoleJS):
-        (DebuggerDocument::closeCurrentFileJS):
-        (DebuggerDocument::updateFileSource):
-        (DebuggerDocument::didParseScript):
-        (DebuggerDocument::willExecuteStatement):
-        (DebuggerDocument::didEnterCallFrame):
-        (DebuggerDocument::willLeaveCallFrame):
-        (DebuggerDocument::exceptionWasRaised):
-        * Drosera/DebuggerDocument.h:
-        * Drosera/mac/DebuggerDocumentMac.mm:
-        (-[DebuggerDocumentMac pause:]):
-        (-[DebuggerDocumentMac resume:]):
-        (-[DebuggerDocumentMac stepInto:]):
-        (-[DebuggerDocumentMac stepOver:]):
-        (-[DebuggerDocumentMac stepOut:]):
-        (-[DebuggerDocumentMac showConsole:]):
-        (-[DebuggerDocumentMac closeCurrentFile:]):
-        (-[DebuggerDocumentMac webView:didLoadMainResourceForDataSource:]):
-        (-[DebuggerDocumentMac webView:didParseSource:baseLineNumber:fromURL:sourceId:forWebFrame:]):
-        (-[DebuggerDocumentMac webView:didEnterCallFrame:sourceId:line:forWebFrame:]):
-        (-[DebuggerDocumentMac webView:willExecuteStatement:sourceId:line:forWebFrame:]):
-        (-[DebuggerDocumentMac webView:willLeaveCallFrame:sourceId:line:forWebFrame:]):
-        (-[DebuggerDocumentMac webView:exceptionWasRaised:sourceId:line:forWebFrame:]):
-
-2007-07-16  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Darin Adler.
-
-        - Continued x-platform modifications.
-
-        * Drosera/win/DebuggerDocumentWin.cpp: Copied from Drosera/win/DebuggerObjectCallbacks.cpp.
-        * Drosera/win/DebuggerDocumentWin.h: Copied from Drosera/win/DebuggerObjectCallbacks.h.
-        * Drosera/win/DebuggerObjectCallbacks.cpp: Removed.
-        * Drosera/win/DebuggerObjectCallbacks.h: Removed.
-        * Drosera/win/Drosera.cpp:
-        * Drosera/win/Drosera.vcproj/Drosera.vcproj:
-        * Drosera/win/stdafx.cpp: Removed.
-        * Drosera/win/stdafx.h: Removed.
-
-2007-07-16  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Sam.
-
-        - Modified files to use cross-platform code.
-
-        * Drosera/DebuggerDocument.cpp: Added.
-        (DebuggerDocument::breakpointEditorHTML):
-        (DebuggerDocument::isPaused):
-        (DebuggerDocument::pause):
-        (DebuggerDocument::resume):
-        (DebuggerDocument::stepInto):
-        (DebuggerDocument::evaluateScript):
-        (DebuggerDocument::currentFunctionStack):
-        (DebuggerDocument::localScopeVariableNamesForCallFrame):
-        (DebuggerDocument::valueForScopeVariableNamed):
-        * Drosera/DebuggerDocument.h: Added.
-        (DebuggerDocument::DebuggerDocument):
-        * Drosera/config.h: Added.
-        * Drosera/mac/DebuggerApplication.mm:
-        (-[DebuggerApplication attach:]):
-        * Drosera/mac/DebuggerDocument.h: Removed.
-        * Drosera/mac/DebuggerDocument.mm: Removed.
-        * Drosera/mac/DebuggerDocumentMac.h: Copied from Drosera/mac/DebuggerDocument.h.
-        * Drosera/mac/DebuggerDocumentMac.mm: Copied from Drosera/mac/DebuggerDocument.mm.
-        (-[DebuggerDocumentMac initWithServerName:]):
-        (-[DebuggerDocumentMac dealloc]):
-        (-[DebuggerDocumentMac breakpointEditorHTML]):
-        (-[DebuggerDocumentMac isPaused]):
-        (-[DebuggerDocumentMac pause]):
-        (-[DebuggerDocumentMac resume]):
-        * Drosera/mac/Drosera.xcodeproj/project.pbxproj:
-        * Drosera/win/DebuggerApplication.cpp:
-        * Drosera/win/DebuggerObjectCallbacks.cpp:
-        (breakpointEditorHTMLCallback):
-        (currentFunctionStackCallback):
-        (evaluateScript_inCallFrame_Callback):
-        (isPausedCallback):
-        (localScopeVariableNamesForCallFrame_Callback):
-        (pauseCallback):
-        (resumeCallback):
-        (stepIntoCallback):
-        (valueForScopeVariableNamed_inCallFrame_Callback):
-        (staticFunctions):
-        * Drosera/win/Drosera.cpp:
-        * Drosera/win/DroseraPrefix.cpp: Added.
-        * Drosera/win/DroseraPrefix.h: Added.
-
-2007-07-16  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Adam, Sam and Tim.
-
-        - Moving files to prepare for cross-platform architecture.
-
-        * Drosera/DebuggerApplication.h: Removed.
-        * Drosera/DebuggerApplication.m: Removed.
-        * Drosera/DebuggerDocument.h: Removed.
-        * Drosera/DebuggerDocument.m: Removed.
-        * Drosera/Drosera.pch: Removed.
-        * Drosera/Drosera.xcodeproj: Removed.
-        * Drosera/Drosera.xcodeproj/project.pbxproj: Removed.
-        * Drosera/Info.plist: Removed.
-        * Drosera/LauncherInfo.plist: Removed.
-        * Drosera/Makefile: Removed.
-        * Drosera/launcher.m: Removed.
-        * Drosera/mac: Added.
-        * Drosera/mac/DebuggerApplication.h: Copied from Drosera/DebuggerApplication.h.
-        * Drosera/mac/DebuggerApplication.mm: Copied from Drosera/DebuggerApplication.m.
-        * Drosera/mac/DebuggerDocument.h: Copied from Drosera/DebuggerDocument.h.
-        * Drosera/mac/DebuggerDocument.mm: Copied from Drosera/DebuggerDocument.m.
-        * Drosera/mac/Drosera.pch: Copied from Drosera/Drosera.pch.
-        * Drosera/mac/Drosera.xcodeproj: Copied from Drosera/Drosera.xcodeproj.
-        * Drosera/mac/Drosera.xcodeproj/project.pbxproj:
-        * Drosera/mac/Info.plist: Copied from Drosera/Info.plist.
-        * Drosera/mac/LauncherInfo.plist: Copied from Drosera/LauncherInfo.plist.
-        * Drosera/mac/Makefile: Copied from Drosera/Makefile.
-        * Drosera/mac/launcher.m: Copied from Drosera/launcher.m.
-        * Drosera/mac/main.m: Copied from Drosera/main.m.
-        * Drosera/main.m: Removed.
-        * Makefile:
-        * Makefile.Drosera: Added.
-
-2007-07-15  Mark Rowe  <mrowe@apple.com>
-
-        * Scripts/generate-coverage-data: Don't fail if WebKitBuild directory does not exist.
-
-2007-07-13  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Geoff Garen.
-
-        Add support for running SSL tests over HTTPS.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (runTest):
-        * DumpRenderTree/FrameLoadDelegate.m:
-        (-[FrameLoadDelegate webView:didFailProvisionalLoadWithError:forFrame:]):
-        * Scripts/run-webkit-httpd:
-        * Scripts/run-webkit-tests:
-
-2007-07-13  David Kilzer  <ddkilzer@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Added support for -h|--help argument and verify that all command line arguments parse
-        correctly.
-
-        * Scripts/run-webkit-httpd:
-
-2007-07-12  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Ada.
-
-        Remove leak suppression for xmlDocPtrForString now that <rdar://problem/5329877> is fixed.
-
-        * Scripts/run-webkit-tests:
-
-2007-07-12  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        Made the leaks tests pass on Leopard.
-
-        * Scripts/run-webkit-tests: Added some leaks to exclude on Leopard.
-        * Scripts/run-leaks: Updated parser for slight change in text output.
-
-2007-07-11  David Kilzer  <ddkilzer@apple.com>
-
-        Reviewed by Maciej.
-
-        Update the iExploder list of CSS properties after box-sizing was renamed to
-        -webkit-box-sizing in r21026 to fix <rdar://problem/4667227>.
-
-        * iExploder/htdocs/cssproperties.in:  Added -webkit-box-sizing.  Both box-sizing and
-        -moz-box-sizing remain.
-
-2007-07-10  Darin Adler  <darin@apple.com>
-
-        * Scripts/run-webkit-tests: Add an ignore item for a leak in Tiger's
-        Foundation's multipart/mixed-replace support -- I already verified that
-        the bug has been fixed.
-
-2007-07-10  Alice Liu  <alice.liu@apple.com>
-
-        rubber stamped by Maciej.
-
-        fixed <rdar://5137972> editing/selection/editable-links.html fails on Windows
-
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.cpp:
-        (initializePreferences):
-        set editable link behavior to match Mac DRT.
-
-2007-07-10  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Tim Hatcher.
-
-        Ignore Page.o in debug builds because it now has a static PageCounter
-        object.
-
-        * Scripts/check-for-global-initializers:
-
-2007-07-09  Darin Adler  <darin@apple.com>
-
-        * Scripts/run-webkit-tests: Moved leaks from Tiger that are marked as fixed in Leopard to a Tiger-only section.
-
-2007-07-09  Alice Liu  <alice.liu@apple.com>
-
-        Reviewed by Adam Roben.
-
-        setting DOM Paste Allowed Pref
-
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.cpp:
-        (initializePreferences):
-
-2007-07-05  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Adam, Sam, and Ada.
-
-        - Inital checkin of Drosera for Win.  This isn't pretty and doesn't connect to Safari but debug builds and runs.
-
-        * Drosera/Images/Drosera.ico: Added.
-        * Drosera/Images/small.ico: Added.
-        * Drosera/win: Added.
-        * Drosera/win/BaseDelegate.h: Added.
-        (BaseDelegate::QueryInterface):
-        (BaseDelegate::didFinishLoadForFrame):
-        (BaseDelegate::windowScriptObjectAvailable):
-        (BaseDelegate::didStartProvisionalLoadForFrame):
-        (BaseDelegate::didReceiveServerRedirectForProvisionalLoadForFrame):
-        (BaseDelegate::didFailProvisionalLoadWithError):
-        (BaseDelegate::didCommitLoadForFrame):
-        (BaseDelegate::didReceiveTitle):
-        (BaseDelegate::didReceiveIcon):
-        (BaseDelegate::didFailLoadWithError):
-        (BaseDelegate::didChangeLocationWithinPageForFrame):
-        (BaseDelegate::willPerformClientRedirectToURL):
-        (BaseDelegate::didCancelClientRedirectForFrame):
-        (BaseDelegate::willCloseFrame):
-        (BaseDelegate::createWebViewWithRequest):
-        (BaseDelegate::webViewShow):
-        (BaseDelegate::webViewClose):
-        (BaseDelegate::webViewFocus):
-        (BaseDelegate::webViewUnfocus):
-        (BaseDelegate::webViewFirstResponder):
-        (BaseDelegate::makeFirstResponder):
-        (BaseDelegate::setStatusText):
-        (BaseDelegate::webViewStatusText):
-        (BaseDelegate::webViewAreToolbarsVisible):
-        (BaseDelegate::setToolbarsVisible):
-        (BaseDelegate::webViewIsStatusBarVisible):
-        (BaseDelegate::setStatusBarVisible):
-        (BaseDelegate::webViewIsResizable):
-        (BaseDelegate::setResizable):
-        (BaseDelegate::setFrame):
-        (BaseDelegate::webViewFrame):
-        (BaseDelegate::setContentRect):
-        (BaseDelegate::webViewContentRect):
-        (BaseDelegate::runJavaScriptAlertPanelWithMessage):
-        (BaseDelegate::runJavaScriptConfirmPanelWithMessage):
-        (BaseDelegate::runJavaScriptTextInputPanelWithPrompt):
-        (BaseDelegate::runBeforeUnloadConfirmPanelWithMessage):
-        (BaseDelegate::runOpenPanelForFileButtonWithResultListener):
-        (BaseDelegate::mouseDidMoveOverElement):
-        (BaseDelegate::contextMenuItemsForElement):
-        (BaseDelegate::validateUserInterfaceItem):
-        (BaseDelegate::shouldPerformAction):
-        (BaseDelegate::dragDestinationActionMaskForDraggingInfo):
-        (BaseDelegate::willPerformDragDestinationAction):
-        (BaseDelegate::dragSourceActionMaskForPoint):
-        (BaseDelegate::willPerformDragSourceAction):
-        (BaseDelegate::contextMenuItemSelected):
-        (BaseDelegate::hasCustomMenuImplementation):
-        (BaseDelegate::trackCustomPopupMenu):
-        (BaseDelegate::measureCustomMenuItem):
-        (BaseDelegate::drawCustomMenuItem):
-        (BaseDelegate::addCustomMenuDrawingData):
-        (BaseDelegate::cleanUpCustomMenuDrawingData):
-        (BaseDelegate::canTakeFocus):
-        (BaseDelegate::takeFocus):
-        (BaseDelegate::registerUndoWithTarget):
-        (BaseDelegate::removeAllActionsWithTarget):
-        (BaseDelegate::setActionTitle):
-        (BaseDelegate::undo):
-        (BaseDelegate::redo):
-        (BaseDelegate::canUndo):
-        (BaseDelegate::canRedo):
-        * Drosera/win/DebuggerApplication.cpp: Added.
-        (DebuggerApplication::serverLoaded):
-        (DebuggerApplication::serverUnloaded):
-        (DebuggerApplication::attach):
-        (DebuggerApplication::numberOfRowsInTableView):
-        (DebuggerApplication::tableView):
-        * Drosera/win/DebuggerApplication.h: Added.
-        (DebuggerApplication::DebuggerApplication):
-        (DebuggerApplication::knownServers):
-        * Drosera/win/DebuggerObjectCallbacks.cpp: Added.
-        (breakpointEditorHTMLCallback):
-        (currentFunctionStackCallback):
-        (doubleClickMillisecondsCallback):
-        (evaluateScript_inCallFrame_Callback):
-        (isPausedCallback):
-        (localScopeVariableNamesForCallFrame_Callback):
-        (pauseCallback):
-        (resumeCallback):
-        (stepIntoCallback):
-        (valueForScopeVariableNamed_inCallFrame_Callback):
-        (staticFunctions):
-        * Drosera/win/DebuggerObjectCallbacks.h: Added.
-        * Drosera/win/Drosera.cpp: Added.
-        (_tWinMain):
-        (RegisterDroseraClass):
-        (DroseraWndProc):
-        (About):
-        (Attach):
-        (Drosera::Drosera):
-        (Drosera::initUI):
-        (Drosera::QueryInterface):
-        (Drosera::AddRef):
-        (Drosera::Release):
-        (Drosera::didFinishLoadForFrame):
-        (getDroseraJSClass):
-        (Drosera::windowScriptObjectAvailable):
-        (Drosera::webViewClose):
-        (Drosera::validateUserInterfaceItem):
-        (Drosera::runJavaScriptAlertPanelWithMessage):
-        (Drosera::onSize):
-        * Drosera/win/Drosera.h: Added.
-        (Drosera::webViewLoaded):
-        * Drosera/win/Drosera.vcproj: Added.
-        * Drosera/win/Drosera.vcproj/Drosera.rc: Added.
-        * Drosera/win/Drosera.vcproj/Drosera.vcproj: Added.
-        * Drosera/win/Drosera.vcproj/debug.vsprops: Added.
-        * Drosera/win/Drosera.vcproj/release.vsprops: Added.
-        * Drosera/win/HelperFunctions.h: Added.
-        (CFStringToBSTR):
-        * Drosera/win/Info.plist: Added.
-        * Drosera/win/resource.h: Added.
-        * Drosera/win/stdafx.cpp: Added.
-        * Drosera/win/stdafx.h: Added.
-
-2007-07-09  Adam Treat  <adam@staikos.net>
-
-        Reviewed by George Staikos.
-
-        Convert QWebFrame from a QFrame to a pure QObject to eliminate all
-        traces of widgets.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-
-2007-07-09  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Oliver.
-
-        <rdar://problem/4954319>
-        Acrobat 7 / Safari crash: CrashTracer: 99 crashes in Safari at
-        com.apple.WebCore: WebCore::NetscapePlugInStreamLoader::isDone const + 0
-
-        If the src url is "data:application/x-webkit-test-netscape,returnerrorfromnewstream",
-        return an error from NPP_NewStream.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.c:
-        (pluginAllocate):
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.h:
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.c:
-        (NPP_New):
-        (NPP_NewStream):
-
-2007-07-08  Mark Rowe  <mrowe@apple.com>
-
-        Change name from WebKit/Qt to WebKit.
-
-        * CodeCoverage/regenerate-coverage-display:
-
-2007-07-08  Rob Buis  <buis@kde.org>
-
-        Reviewed by Mitz.
-
-        http://bugs.webkit.org/show_bug.cgi?id=14209
-        DRT should be able to deal with text zoom
-
-        Allow increasing/decreasing text zoom using eventSender.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (runTest):
-        * DumpRenderTree/EventSendingController.m:
-        (+[EventSendingController initialize]):
-        (+[EventSendingController isSelectorExcludedFromWebScript:]):
-        (-[EventSendingController textZoomIn]):
-        (-[EventSendingController textZoomOut]):
-
-2007-07-07  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Oliver.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (convertWebResourceResponseToDictionary): Fix leak of two NSMutableString's introduced in r24076.
-
-2007-07-06  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by David Kilzer.
-
-        <rdar://problem/5313502>
-        Many webarchive tests fail due to different NSURLResponse serialization on Leopard
-
-        Don't dump the serialized form of NSURLResponse. Instead, create a dictionary with the
-        response's attributes. Also change the JavaScript MIME type to be "text/javascript".
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (convertMIMEType):
-        (convertWebResourceDataToString):
-        (convertWebResourceResponseToDictionary):
-        (serializeWebArchiveToXML):
-
-2007-07-06  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Oliver.
-
-        Initialize the NSMutableAttributedString directly instead of creating
-        a NSAttributedString first.
-
-        * DumpRenderTree/TextInputController.m:
-        (-[TextInputController attributedStringWithString:]):
-
-2007-07-06  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by David Kilzer.
-
-        Replace "Apple Computer" with "Apple" in the DTD declaration.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (serializeWebArchiveToXML):
-
-2007-07-06  Adam Treat  <adam@staikos.net>
-
-        Reviewed by George Staikos.
-
-        Adjust for conversion of QWebFrame to a QFrame from a scroll area.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-
-2007-07-06  George Staikos  <staikos@kde.org>
-
-        Reviewed by Anders.
-
-        Allow passing of additional arguments to qmake with --qmakearg=
-
-        * Scripts/webkitdirs.pm:
-
-2007-07-05  George Staikos  <staikos@kde.org>
-
-        Reviewed by Maciej.
-
-        Add --qt and --qmake= to force Qt even when QTDIR isn't present and to
-        give a path to a specific qmake binary.  Both are optional.
-
-        * Scripts/webkitdirs.pm:
-
-2007-07-05  Adam Roben  <aroben@apple.com>
-
-        Warn about tests in the Skipped file that succeeded
-
-        * Scripts/run-webkit-tests:
-
-2007-07-05  Adam Roben  <aroben@apple.com>
-
-        Removed unused install-win-extras script
-
-        Rubberstamped by Mark.
-
-        * Scripts/install-win-extras: Removed.
-
-2007-07-05  Adam Roben  <aroben@apple.com>
-
-        Show the test's extension in the results page
-
-        * Scripts/run-webkit-tests:
-
-2007-07-05  Adam Roben  <aroben@apple.com>
-
-        Add more options for controlling the interpretation of the Skipped file
-
-        Reviewed by Mark.
-
-        * Scripts/run-webkit-tests:
-
-2007-07-04  Adam Roben  <aroben@apple.com>
-
-        Add --skipped-only option to run-webkit-tests
-
-        When this option is specified, only those tests listed in the Skipped
-        file are run.
-
-        Reviewed by Mark.
-
-        * Scripts/run-webkit-tests:
-
-2007-07-04  Adam Roben  <aroben@apple.com>
-
-        Clean up/alphabetize the run-webkit-tests help message
-
-        * Scripts/run-webkit-tests:
-
-2007-07-04  Adam Roben  <aroben@apple.com>
-
-        Enable a Leopard-specific Skipped list.
-
-        Reviewed by Mark.
-
-        * Scripts/run-webkit-tests: Check for Leopard.
-        * Scripts/webkitdirs.pm: Added isTiger/isLeopard.
-
-2007-07-03  Adam Roben  <aroben@apple.com>
-
-        Fixed update-webkit-localizable-strings to work with new extract-localizable-strings
-
-        Got rid of extract-webkit-localizable-strings because it was trying to
-        do update-webkit-localizable-strings' job.
-
-        Rubberstamped by Darin Adler.
-
-        * Scripts/extract-webkit-localizable-strings: Removed.
-        * Scripts/update-webkit-localizable-strings: Renamed from
-        extract-localizable-strings.
-
-2007-07-03  Adam Roben  <aroben@apple.com>
-
-        Modify scripts to keep Mac/Windows localized strings in sync
-
-        extract-webkit-localizable-strings now handles extracting strings from
-        both the Mac and Windows WebKit ports and updating their respective
-        Localizable.strings files. extract-localizable-strings is now really a
-        piece of plumbing rather than a top-level tool.
-
-        Reviewed by Darin and Anders.
-
-        * Scripts/extract-localizable-strings: Changed to handle multiple
-        directories.
-        * Scripts/extract-webkit-localizable-strings: Added.
-
-2007-07-03  Adele Peterson  <adele@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Extended DumpRenderTree to test encoding and decoding host names.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]): Added cases for encodeHostName and decodeHostName.
-        (+[LayoutTestController webScriptNameForSelector:]): ditto.
-        (-[LayoutTestController decodeHostName:]): Added.
-        (-[LayoutTestController encodeHostName:]): Added.
-
-2007-07-03  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Eleventh round of fixes for implicit 64-32 bit conversion errors.
-        <rdar://problem/5292262>
-
-        Add functions to test long long and unsigned long long.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (+[LayoutTestController webScriptNameForSelector:]):
-        (-[LayoutTestController objCLongLongRoundTrip:]):
-        (-[LayoutTestController objCUnsignedLongLongRoundTrip:]):
-
-2007-07-01  Adam Roben  <aroben@apple.com>
-
-        Fix some paths to make http tests work again on Windows
-
-        Rubberstamped by Sam.
-
-        * Scripts/run-webkit-tests:
-
-2007-06-28  Stephanie  <slewis@apple.com>
-
-        Reviewed by Adam,
-
-        Allow tests to use pre-built roots instead of building the tests.
-
-        * Scripts/run-javascriptcore-tests: added --root option
-        * Scripts/run-webkit-tests: added --root option
-        * Scripts/webkitdirs.pm: added support for using a root
-
-2007-06-25  Adam Roben  <aroben@apple.com>
-
-        Fix Bug 14405: LayoutTestResults/qt should be in LayoutTests/qt
-        http://bugs.webkit.org/show_bug.cgi?id=14405
-
-        Reviewed by Anders.
-
-        * Scripts/run-webkit-tests:
-
-2007-06-25  Adam Roben  <aroben@apple.com>
-
-        Enable running the regression tests on Windows.
-
-        These changes were developed alongside the Windows WebKit port and
-        have been well tested.
-
-        Rubberstamped by Sam.
-
-        * Scripts/run-webkit-tests:
-
-2007-06-25  Adam Roben  <aroben@apple.com>
-
-        Fix Bug 14403: prepare-ChangeLog --git-commit doesn't support --diff
-        http://bugs.webkit.org/show_bug.cgi?id=14403
-
-        Reviewed by Mark Rowe.
-
-        * Scripts/prepare-ChangeLog: Don't spew to stdout, use stderr instead.
-        (sub createPatchCommand): Generate a correct diff in the $gitCommit
-        case.
-
-2007-06-25  Adam Roben  <aroben@apple.com>
-
-        Land pdevenv and supporting scripts/programs
-
-        pdevenv is a script that will open an instance of Visual Studio that
-        can compile multiple files in parallel, similar to make -jN. It uses
-        the following scripts/programs to accomplish this:
-
-        CLWrapper: Compiles to vcbin/cl.exe. Calls Scripts/parallelcl.
-
-        parallelcl: Actually performs the parallel compilation by forking
-        multiple instances of the Microsoft-supplied cl.exe.
-
-        MIDLWrapper: Compiles to vcbin/midl.exe. Calls through to the
-        Microsoft-supplied midl.exe. This avoids having to invoke perl for
-        every invocation of midl.exe, which would be quite slow.
-
-        Rubberstamped by Sam.
-
-        * CLWrapper/CLWrapper.cpp: Added.
-        (wmain):
-        * CLWrapper/CLWrapper.sln: Added.
-        * CLWrapper/CLWrapper.vcproj: Added.
-        * MIDLWrapper/MIDLWrapper.cpp: Added.
-        (wmain):
-        * MIDLWrapper/MIDLWrapper.sln: Added.
-        * MIDLWrapper/MIDLWrapper.vcproj: Added.
-        * Scripts/parallelcl: Added.
-        * Scripts/pdevenv: Added.
-        * vcbin/cl.exe: Added.
-        * vcbin/midl.exe: Added.
-
-2007-06-23  Adam Roben  <aroben@apple.com>
-
-        Land num-cpus for the Windows build.
-
-        Reviewed by Mark Rowe.
-
-        * Scripts/num-cpus: Added.
-
-2007-06-22  Simon Hausmann  <hausmann@kde.org>
-
-        Reviewed by Adam Roben.
-
-        Added support for populating ChangeLog entries from given git commits
-        using --git-commit=<commitish> and --git-reviewer=<name>.
-
-        * Scripts/prepare-ChangeLog:
-
-2007-06-22  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Anders.
-
-        <rdar://problem/5228168> Leopard regression test failures: fast/applescript
-
-        There were some changes in Leopard that made our test output inconsistent with Tiger.
-
-        NSAppleEventDescriptor no longer returns a stringValue for typeType descriptors
-        on Leopard, so output our own readable string for typeType descriptors.
-
-        NSArray's description also changed on Leopard to output more whitespace, so
-        make our own string representation for typeAEList descriptors. This requires
-        a special case typeUnicodeText too, so the output is a quoted string.
-
-        * DumpRenderTree/AppleScriptController.m:
-        (convertAEDescToObject):
-
-2007-06-21  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Geoff.
-
-        Don't dump didFirstLayout callbacks, they happen intermittently.
-
-        * DumpRenderTree/FrameLoadDelegate.m:
-
-2007-06-21  Lars Knoll  <lars@trolltech.com>
-
-        Reviewed by Simon.
-
-        look for the Qt library in the installed location
-
-        * Scripts/webkitdirs.pm:
-
-2007-06-20  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Adele Peterson, Oliver Hunt, Anders Carlsson.
-
-        Added tests for stringByEvaluatingJavaScriptFromString.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (testStringByEvaluatingJavaScriptFromString):
-        (dumpRenderTree):
-
-2007-06-19  Andrew Wellington  <proton@wiretapped.net>
-
-        Reviewed by Mark Rowe.
-
-        Support applications with spaces or special characters in their names
-
-        * Scripts/run-webkit-app:
-
-2007-06-18  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by John Sullivan.
-
-        Assert that the frame has a dataSource.
-
-        * DumpRenderTree/FrameLoadDelegate.m:
-        (-[FrameLoadDelegate webView:didFinishLoadForFrame:]):
-
-2007-06-18  Adam Treat <adam@staikos.net>
-
-        Reviewed by George.
-
-        Reflect the library name change.
-
-        * Scripts/webkitdirs.pm:
-
-2007-06-18  Jake Helfert  <jake@jakeonthenet.com>
-
-        Reviewed by Adam.
-
-        - fix http://bugs.webkit.org/show_bug.cgi?id=14154
-          Spinneret doesn't build against the new Win32 port.
-
-        * Spinneret/Spinneret/Spinneret.cpp:
-        (_tWinMain):
-            -Changed IWebViewExt to IWebViewPrivate
-            -Changed Co[Un]initialize to Ole[Un]initialize because WebKit now calls
-             the WIN32 function RegisterDragDrop which requires the Ole* calls.
-        * Spinneret/Spinneret/Spinneret.h:
-        (SpinneretWebHost::didReceiveIcon): Updated method signature.
-        (SpinneretWebHost::willPerformClientRedirectToURL): Updated method signature.
-        (SpinneretWebHost::windowScriptObjectAvailable): Updated method signature.
-
-2007-06-14  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Brady.
-
-        Update set of files to download for cygwin to include
-        diffutils and regenerate the zip file.  This should fix
-        an issue on vista where svn-create-patch doesn't work.
-
-        * CygwinDownloader/cygwin-downloader.py:
-        * CygwinDownloader/cygwin-downloader.zip:
-
-2007-06-14  Mark Rowe  <mrowe@apple.com>
-
-        Update script to match new nightly.webkit.org infrastructure.
-
-        * BuildSlaveSupport/build-launcher-dmg:  Upload to the live web server, not the caching proxy.  Let the server know it's a Mac build.
-
-2007-06-12  Adam Roben  <aroben@apple.com>
-
-        Land CygwinDownloader.
-
-        Rubberstamped by Hyatt.
-
-        * CygwinDownloader/cygwin-downloader.py: Added.
-        * CygwinDownloader/cygwin-downloader.zip: Added.
-        * CygwinDownloader/make-zip.sh: Added.
-        * CygwinDownloader/setup.py: Added.
-
-2007-06-06  Vladimir Olexa  <vladimir.olexa@gmail.com>
-
-        Reviewed by Mark Rowe.
-
-        Fixes Bug 13996: http://bugs.webkit.org/show_bug.cgi?id=13996
-        [Drosera] Items in the file list don't get un-highlighted when
-        files are selected from the file drop-down
-
-        * Drosera/debugger.js: currentFile was getting modified before file in the file
-        browser got un-highlighted. Changed the order in which the functions execute.
-
-2007-06-06  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Maciej.
-
-        http://bugs.webkit.org/show_bug.cgi?id=13988
-        Bug 13988: Colon in file path crashes WebKit Nightly
-
-        The WebKit launcher makes use of two `dyld' variables to coerce Safari into running with
-        the bundled WebKit framework.  Both of these variables are interpreted as containing a
-        colon-delimited list of paths.  There is no escaping mechanism defined, so if we detect
-        a path with a colon in it we need to bail out to prevent `dyld' from throwing an error
-        when we execute Safari.
-
-        * WebKitLauncher/main.m:
-        (main):
-
-2007-06-05  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Anders.
-
-        * WebKitLauncher/Info.plist: Update CFBundleGetInfoString, and add CFBundleShortVersionString.
-
-2007-05-30  Alp Toker  <alp.toker@collabora.co.uk>
-
-        Reviewed by Brady.
-
-        Enable logging in the Gdk port.
-        http://bugs.webkit.org/show_bug.cgi?id=13936
-
-        * GdkLauncher/main.cpp:
-        (main):
-
-2007-05-29  Holger Freyther  <zecke@selfish.org>
-
-        Reviewed by Anders.
-
-        Create a GtkLayout and pass it to the FrameView/ScrollView. Embed the GtkLayout into a GtkScrolledWindow
-        to provide ScrollBars for the FrameView.
-
-        * GdkLauncher/main.cpp:
-        (registerRenderingAreaEvents):
-        (layout_realize_callback): Only after realization we can access the GtkLayout::bin_window
-        (frameResizeCallback): Inform the ScrollView about its new viewport size, and ask the FrameView to adjust
-        (main):
-
-2007-05-29  David Kilzer  <ddkilzer@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        - fix http://bugs.webkit.org/show_bug.cgi?id=13901
-          run-pageloadtest does not obey testName on command-line
-
-        * Scripts/run-pageloadtest: Grab $testName from the command-line if it is present,
-        otherwise default to "svg".  Added dummy check to make sure $testName.pltsuite
-        exists.
-
-2007-05-29  David Kilzer  <ddkilzer@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        - fix http://bugs.webkit.org/show_bug.cgi?id=13900
-          svnStatus($) subroutine in svn-[un]apply does not work properly with directories
-
-        This patch also fixes an instance of the "broken pipe" warning that happened when
-        a directory contained modified files that were not part of an applied or unapplied
-        patch.
-
-        * Scripts/svn-apply:
-        (svnStatus($)): If we're trying to get status on a directory (instead of a file),
-        make sure we actually get the directory's status (if it has one), not the first
-        file's status reported within the directory.  Fix "broken pipe" warnings by
-        reading all of the output from the SVN filehandle before closing it.
-        * Scripts/svn-unapply:
-        (svnStatus($)): Ditto.
-
-2007-05-28  David Kilzer  <ddkilzer@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        - fix http://bugs.webkit.org/show_bug.cgi?id=10342
-          prepare-ChangeLog only shows removed files but not added files when files are moved
-        - fix prepare-ChangeLog part of http://bugs.webkit.org/show_bug.cgi?id=13408
-          prepare-ChangeLog and svn-create-patch don't show replaced files
-
-        Switched method used to find list of changed files from "diff" to "status".  This
-        makes added and replaced files with history appear in the changed file list for svn.
-        Added check for "+" in output from the svn status command to detect file history, and
-        handle it in the generateFileList(\@\@\%) and in statusDescription($$) subroutines.
-
-        * Scripts/prepare-ChangeLog:
-        (diffCommand(@)): Switched argument from hash ref to array to match statusCommand(@).
-        (statusCommand(@)): Switched argument from array ref to array.  Necessary to use
-        the output of "keys $paths" without creating a temporary array variable.
-        (findOriginalFileFromSvn($)): Added.  Based on findSourceFileAndRevision($)
-        subroutine in svn-create-patch.
-        (generateFileList(\@\@\%)): Added.  Extracted from main body of script.  Runs status
-        command using command-line arguments instead of list of changed files from the diff
-        command.  Changed svn regex to only accept file statuses that we know how to handle.
-        Identify original file when an added/replaced status with history is present.
-        (statusDescription($$)): Handled added/replaced statuses with history.  Added
-        fall-through return statement.
-
-2007-05-28  Holger Freyther  <zecke@selfish.org>
-
-        Reviewed by Mark Rowe.
-
-        Add scripts and data to generate a coverage data for WebKit.
-
-        * CodeCoverage/README: Added.
-        * CodeCoverage/amber.png: Added.
-        * CodeCoverage/cov.py: Added.
-        * CodeCoverage/emerald.png: Added.
-        * CodeCoverage/gcov.css: Added.
-        * CodeCoverage/glass.png: Added.
-        * CodeCoverage/regenerate-coverage-display: Added.
-        * CodeCoverage/ruby.png: Added.
-        * CodeCoverage/run-generate-coverage-data: Added.
-        * CodeCoverage/snow.png: Added.
-        * Scripts/build-webkit: Add --coverage by Niko
-        * Scripts/check-for-global-initializers: Skip the check on coverage builds
-        * Scripts/generate-coverage-data: Added.
-        * Scripts/run-javascriptcore-tests: Add --coverage by Niko
-
-2007-05-29  Mark Rowe  <mrowe@apple.com>
-
-        Build fix after r21745.
-
-        * Scripts/check-for-global-initializers: Skip CachedPage.o as it now has a global initializer in debug builds.
-
-2007-05-25  Anders Carlsson  <andersca@apple.com>
-
-        Fix build.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        * DumpRenderTree/FrameLoadDelegate.m:
-
-2007-05-25  Simon Hausmann  <hausmann@kde.org>
-
-        Reviewed by Zack.
-
-        For the keyDown binding use QStringList instead of QList<QString>. The former is a default
-        registered metatype. Also print out critical messages in dumprendertree's qt message handler.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/jsobjects.cpp:
-        * DumpRenderTree/DumpRenderTree.qtproj/jsobjects.h:
-        * DumpRenderTree/DumpRenderTree.qtproj/main.cpp:
-
-2007-05-20  David Kilzer  <ddkilzer@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        - fix http://bugs.webkit.org/show_bug.cgi?id=13565
-          Change svn-create-patch to put LayoutTests in the end
-
-        In addition to reordering test files under the LayoutTests directory so that they
-        appear after source code files, this patch fixes an issue with prepare-ChangeLog
-        if the first argument passed to it is a file name instead of a directory name.
-
-        * Scripts/prepare-ChangeLog:
-        (isGIT()): If first value in @dirs array is a file, use dirname() to get the directory.
-        (isSVN()): Ditto.
-        * Scripts/svn-create-patch:
-        (generateFileList($\%\%\%)): Differentiate test files in the LayoutTests directory from
-        source code files.
-
-2007-05-18  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Oliver.
-
-        Force LC_ALL to C when parsing locale-specific strings in 'svn' output.
-
-        * Scripts/svn-create-patch:
-        * Scripts/webkitdirs.pm:
-
-2007-05-18  Holger Freyther  <zecke@selfish.org>
-
-        Reviewed by Maciej.
-
-        * GdkLauncher/main.cpp: Call setGtkWidget
-        (main):
-
-2007-05-18  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Reviewed by Mark Rowe.
-
-        * GdkLauncher/main.cpp:
-        (main): Call Frame::init to catch up with Maciej's changes.
-        * Scripts/run-javascriptcore-tests: Remove --gdk from the command line
-        passed to the helper scripts.
-
-2007-05-16  Brady Eidson  <beidson@apple.com>
-
-        Build fix for some dev configurations
-
-        * DumpRenderTree/DumpRenderTree.m:
-
-2007-05-16  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Justin.
-
-        - created a new mechanism to log FrameLoadDelegate callbacks in directories named "loading"
-
-        The reason for doing things in this slightly odd way is to make sure we don't miss the load delegates
-        that happen before the load commits.
-
-        Basically I moved WaitUntilDoneDelegate into a separate file (FrameLoadDelegate.m) and added
-        optional logging for every FrameLoadDelegate callback, including SPI callbacks.
-
-        * DumpRenderTree/DumpRenderTree.h:
-        * DumpRenderTree/DumpRenderTree.m:
-        (createWebView):
-        (dumpRenderTree):
-        (dump):
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (-[LayoutTestController clearBackForwardList]):
-        (-[LayoutTestController setUseDashboardCompatibilityMode:]):
-        (-[LayoutTestController dumpFrameLoadCallbacks]):
-        (-[LayoutTestController setWindowIsKey:]):
-        (-[LayoutTestController setMainFrameIsFirstResponder:]):
-        (-[LayoutTestController _doLoad:target:]):
-        (-[LayoutTestController _doBackOrForwardNavigation:]):
-        (-[LayoutTestController queueReload]):
-        (-[LayoutTestController queueScript:]):
-        (-[LayoutTestController queueLoad:target:]):
-        (-[LayoutTestController setAcceptsEditing:]):
-        (-[LayoutTestController setTabKeyCyclesThroughElements:]):
-        (shouldLogFrameLoadDelegates):
-        (runTest):
-        (displayWebView):
-        (+[DumpRenderTreeEvent mouseLocation]):
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/DumpRenderTreeDraggingInfo.m:
-        (-[DumpRenderTreeDraggingInfo draggingDestinationWindow]):
-        * DumpRenderTree/EventSendingController.m:
-        (-[EventSendingController mouseDown]):
-        (-[EventSendingController mouseUp]):
-        (-[EventSendingController mouseMoveToX:Y:]):
-        (-[EventSendingController contextClick]):
-        * DumpRenderTree/FrameLoadDelegate.h: Added.
-        * DumpRenderTree/FrameLoadDelegate.m: Added.
-        (-[WebFrame _drt_descriptionSuitableForTestResult]):
-        (-[FrameLoadDelegate processWork:]):
-        (-[FrameLoadDelegate webView:locationChangeDone:forDataSource:]):
-        (-[FrameLoadDelegate webView:didStartProvisionalLoadForFrame:]):
-        (-[FrameLoadDelegate webView:didCommitLoadForFrame:]):
-        (-[FrameLoadDelegate webView:didFailProvisionalLoadWithError:forFrame:]):
-        (-[FrameLoadDelegate webView:didFinishLoadForFrame:]):
-        (-[FrameLoadDelegate webView:didFailLoadWithError:forFrame:]):
-        (-[FrameLoadDelegate webView:windowScriptObjectAvailable:]):
-        (-[FrameLoadDelegate webView:didClearWindowObject:forFrame:]):
-        (-[FrameLoadDelegate webView:didReceiveTitle:forFrame:]):
-        (-[FrameLoadDelegate webView:didReceiveServerRedirectForProvisionalLoadForFrame:]):
-        (-[FrameLoadDelegate webView:didReceiveIcon:forFrame:]):
-        (-[FrameLoadDelegate webView:didChangeLocationWithinPageForFrame:]):
-        (-[FrameLoadDelegate webView:willPerformClientRedirectToURL:delay:fireDate:forFrame:]):
-        (-[FrameLoadDelegate webView:didCancelClientRedirectForFrame:]):
-        (-[FrameLoadDelegate webView:willCloseFrame:]):
-        (-[FrameLoadDelegate webView:didFirstLayoutInFrame:]):
-        (-[FrameLoadDelegate webView:didFinishDocumentLoadForFrame:]):
-        (-[FrameLoadDelegate webView:didHandleOnloadEventsForFrame:]):
-        * DumpRenderTree/ResourceLoadDelegate.m:
-        (-[NSURL _drt_descriptionSuitableForTestResult]):
-        * DumpRenderTree/UIDelegate.m:
-        (-[UIDelegate webViewFocus:]):
-
-2007-05-16  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Darin and Geoff.
-
-        - rdar://problem/4981886
-        - Now windows opened by the DOM can be closed by JS.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (-[LayoutTestController windowCount]):
-
-2007-05-15  Adam Roben  <aroben@apple.com>
-
-        Reviewed by David Kilzer.
-
-        http://bugs.webkit.org/show_bug.cgi?id=13732
-        prepare-ChangeLog should work with git
-
-        * Scripts/prepare-ChangeLog: Added support for Git.
-
-2007-05-15  Lars Knoll <lars@trolltech.com>
-
-        Reviewed by Zack
-
-        Add the EventSender object to DRT. Currently it implements
-        mouseDown, mouseUp and mouseMoveTo.
-
-        Make run-webkit-tests --strict work somewhat better for form elements.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::initJSObjects):
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.h:
-        * DumpRenderTree/DumpRenderTree.qtproj/jsobjects.cpp:
-        (HackWebFrame::mousePressEvent):
-        (HackWebFrame::mouseReleaseEvent):
-        (EventSender::EventSender):
-        (EventSender::mouseDown):
-        (EventSender::mouseUp):
-        (EventSender::mouseMoveTo):
-        (EventSender::leapForward):
-        (EventSender::keyDown):
-        (EventSender::frameUnderMouse):
-        * DumpRenderTree/DumpRenderTree.qtproj/jsobjects.h:
-        * Scripts/run-webkit-tests:
-
-2007-05-12  Oliver Hunt  <oliver@apple.com>
-
-        Reviewed by Hyatt.
-
-        Add new api to DRT to allow us to test a file being dragged
-        onto <input type="file">
-
-        * DumpRenderTree/DumpRenderTree.h:
-        * DumpRenderTree/DumpRenderTree.m:
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (-[LayoutTestController addFileToPasteboardOnDrag]):
-        (runTest):
-        * DumpRenderTree/UIDelegate.m:
-        (-[UIDelegate webView:dragImage:at:offset:event:pasteboard:source:slideBack:forView:]):
-
-2007-05-11  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Reviewed by Maciej.
-
-        Bug 13656: [gdk] Resize the drawing area of the GdkLauncher
-        http://bugs.webkit.org/show_bug.cgi?id=13656
-
-        * GdkLauncher/main.cpp: Handle resizing the drawing area
-        (frameResizeCallback):
-        (main):
-
-2007-05-11  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Updated test now that +[WebScriptObject scriptObjectForJSObject:frame:]
-        is gone.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (-[WaitUntilDoneDelegate webView:didClearWindowObject:forFrame:]):
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (+[LayoutTestController webScriptNameForSelector:]):
-        (-[LayoutTestController testWrapperRoundTripping:]):
-
-2007-05-08  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Oliver.
-
-        - don't clear events whenever an EventSendingController goes away, only do it at predictable times,
-        since destroying a subframe can make one go away
-
-        (Discovered while fixing:
-
-        <rdar://problem/5063277> blank screen after login to Citibank Online (accessing document before frame starts loading cancels load)
-        <rdar://problem/5159541> REGRESSION (r20972): Wall Street Journal pages replaced by advertisements (13465)
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (runTest): explicitly clear saved events after every page load
-        * DumpRenderTree/EventSendingController.h:
-        * DumpRenderTree/EventSendingController.m:
-        (-[EventSendingController dealloc]): don't clear saved events here...
-        (+[EventSendingController clearSavedEvents]): do it here
-        * Scripts/check-for-global-initializers:
-
-2007-05-10  Mark Rowe  <mrowe@apple.com>
-
-        Build fix for DumpRenderTree. Enable Objective-C exceptions in Release configuration.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-
-2007-05-09  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Maciej Stachowiak.
-
-        Added support for testing ObjC/JS type bridging.
-
-        Added ASSERT that -JSObject returns nil when the underlying JSObject
-        is no longer GC protected.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (returnThisCallback):
-        (returnThisClass):
-        (-[WaitUntilDoneDelegate webView:didClearWindowObject:forFrame:]):
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (+[LayoutTestController webScriptNameForSelector:]):
-        (-[LayoutTestController accessStoredWebScriptObject]):
-        (-[LayoutTestController testWrapperRoundTripping]):
-        (-[LayoutTestController objCClassNameOf:]):
-        (-[LayoutTestController objCObjectOfClass:]):
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-
-2007-05-10  Lars Knoll <lars@trolltech.com>
-
-        Reviewed by Simon
-
-        Move setting of the DPI value a few lines up. Should fix
-        the last two remaining failures in the layout tests.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/main.cpp:
-        (main):
-
-2007-05-09  Holger Freyther <zecke@selfish.org>
-
-        Reviewed by Mark Rowe.
-
-        * GdkLauncher/main.cpp: Always include config.h.
-
-2007-05-08  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Added support for testing ObjC object identity.
-
-        Added ASSERT to verify that you can round-trip the object passed to you
-        in -didClearWindowObject:forFrame:.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (-[WaitUntilDoneDelegate webView:didClearWindowObject:forFrame:]):
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (+[LayoutTestController webScriptNameForSelector:]):
-        (-[LayoutTestController accessStoredWebScriptObject]):
-        (-[LayoutTestController objCIdentityIsEqual::]):
-
-2007-05-07  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Maciej Stachowiak.
-
-        Added tests for new APIs: -[WebFrame windowObject], -[WebFrame globalContext],
-        and - (void)webView:(WebView *)webView didClearWindowObject:(WebScriptObject *)windowObject
-        forFrame:(WebFrame *)frame, in the form of ASSERTs.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (runJavaScriptThread): Fixed quote mismatch that prepare-changelog likes
-        to complain about.
-
-        (-[WaitUntilDoneDelegate webView:windowScriptObjectAvailable:]):
-        (-[WaitUntilDoneDelegate webView:didClearWindowObject:forFrame:]):
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-
-2007-05-08  Lars Knoll <lars@trolltech.com>
-
-        Reviewed by Zack.
-
-        Dump JavaScript console messages as well. Also requires a slight
-        change in run-webkit-tests, so we still correctly differentiate
-        between text only and rendertree tests.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::WebPage::WebPage):
-        (WebCore::WebPage::javaScriptConsoleMessage):
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::dump):
-        * Scripts/run-webkit-tests:
-
-2007-05-08  Lars Knoll <lars@trolltech.com>
-
-        Reviewed by Zack
-
-        Specify what the serif, sans-serif and monospace aliases
-        should map to and explicitly select the Gui style of
-        DRT to be plastique.
-
-        Fixes most of the test failures still seen on the build bot.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts.conf:
-        * DumpRenderTree/DumpRenderTree.qtproj/main.cpp:
-        (main):
-
-2007-05-07  Lars Knoll <lars@trolltech.com>
-
-        Reviewed by Zack
-
-        Fix the default font to 9pt Sans Serif.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/main.cpp:
-        (main):
-
-2007-05-04  Lars Knoll <lars@trolltech.com>
-
-        Reviewed by Zack
-
-        Revert on line of the last commit. We still want to keep the RPATH
-        support in the pro file.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.pro:
-
-2007-05-04  Lars Knoll <lars@trolltech.com>
-
-        Reviewed by Zack
-
-        Remove the old bitmap fonts I tried using to get reliable results from
-        DumpRenderTree on X11. Instead we now use the URW Type1 fonts from
-        ghostscript. I've added a mirror to simply check them out at
-        svn://labs.trolltech.com/svn/webkit/testfonts.
-
-        Fixed DumpRenderTree to make sure these fonts are the only ones we use
-        on X11 and added a fonts.conf file to get a well defined fontconfig
-        configuration.
-
-        Made sure run-webkit-tests forwards the WEBKIT_TESTFONTS environment variable
-        I use to find the fonts to DumpRenderTree.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.pro:
-        * DumpRenderTree/DumpRenderTree.qtproj/fontoverload.cpp: Removed.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/COPYING: Removed.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/CourierBold.ttf: Removed.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/CourierBoldOblique.ttf: Removed.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/CourierMedium.ttf: Removed.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/CourierMediumOblique.ttf: Removed.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/HelveticaBold.ttf: Removed.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/HelveticaBoldOblique.ttf: Removed.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/HelveticaMedium.ttf: Removed.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/HelveticaMediumOblique.ttf: Removed.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/SymbolMedium.ttf: Removed.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/TimesBold.ttf: Removed.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/TimesBoldItalic.ttf: Removed.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/TimesMedium.ttf: Removed.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/TimesMediumItalic.ttf: Removed.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts.conf: Added.
-        * DumpRenderTree/DumpRenderTree.qtproj/main.cpp:
-        (main):
-        * Scripts/run-webkit-tests:
-
-2007-05-03  Holger Freyther <freyther@kde.org>
-
-        Reviewed by Zack, landed by Simon.
-        This is bugzilla bug 13499.
-
-        * GdkLauncher/GdkLauncher.pro: Build the GdkLauncher using qmake
-        * GdkLauncher/main.cpp: We don't have a config.h with the qmake build
-        * Scripts/build-webkit: Add --gdk for the Gdk port
-        * Scripts/webkitdirs.pm: Add helper methods for the Gdk port
-
-2007-05-03  Geoffrey Garen  <ggaren@apple.com>
-
-        Build fix: Add AllInOneFile.o to the ignore list, since it includes files
-        in the ignore list.
-
-        * Scripts/check-for-global-initializers:
-
-2007-05-02  Holger Freyther <freyther@kde.org>
-
-        Reviewed by Mark Rowe.
-
-        * Scripts/build-webkit: Remove the CMake call.
-        * Scripts/webkitdirs.pm: Remove isQtWithQMake as QMake is now the only
-        buildsystem for the Qt port.
-
-2007-04-27  Kevin McCullough  <kmccullough@apple.com>
-
-        - Removed debugging statements and took out the removal of the deletion
-          of the symlink.  This is because multiple instances of run-webkit-tests
-          can be running at the same time.
-        * Scripts/run-webkit-tests:
-
-2007-04-27  Adam Roben <aroben@apple.com>
-
-        Reviewed by Maciej.
-
-        Cleaned up prepare-ChangeLog
-
-        * Scripts/prepare-ChangeLog: No code changes, but style now matches
-        the prevalent style of our perl scripts.
-
-2007-04-27  Nazar Kulyk  <schamane@myeburg.net>
-
-        Reviewed by Mark Rowe.
-
-        Basic auto-correction of user-entered URLs.
-
-        * GdkLauncher/main.cpp:
-        (autocorrectURL):
-        (goToURLBarText):
-        (main):
-
-2007-04-28  Mark Rowe  <mrowe@apple.com>
-
-        Rubber-stamped by Anders.
-
-        Rename some methods and variables to match the style guidelines.
-
-        * GdkLauncher/main.cpp:
-        (stringIsEmpty):
-        (stringIsEqual):
-        (goToURLBarText):
-        (goButtonClickedCallback):
-        (urlBarEnterCallback):
-        (frameResizeCallback):
-        (frameDestroyCallback):
-        (menuMainBackCallback):
-        (menuMainForwardCallback):
-        (menuMainQuitCallback):
-        (main):
-
-2007-04-27  Holger Freyther <freyther@kde.org>
-
-        Reviewed by Maciej.
-
-        Remove unmaintained CMake build system.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/CMakeLists.txt: Removed.
-        * Scripts/build-webkit: Remove references to CMake.
-        * Scripts/webkitdirs.pm: Remove references to CMake.
-
-2007-04-26  Alp Toker  <alp@atoker.com>
-
-        Reviewed by Mark Rowe.
-
-        * GdkLauncher/main.cpp:
-        (main): Avoid use of deprecated API.
-
-2007-04-26  Kevin McCullough  <kmccullough@apple.com>
-
-        - Changed debugging statements for more information.
-
-        * Scripts/run-webkit-tests:
-
-2007-04-26  Kevin McCullough  <kmccullough@apple.com>
-
-        - Adding debugging statements to see why these tests fail.  These will be removed.
-
-        * Scripts/run-webkit-tests:
-
-2007-04-25  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Mitz.
-
-        Add a setUseDashboardCompatibilityMode method to LayoutTestController which is used to toggle
-        the dashboard compatibility mode.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (+[LayoutTestController webScriptNameForSelector:]):
-        (-[LayoutTestController setUseDashboardCompatibilityMode:]):
-        (runTest):
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-
-2007-04-24  Timothy Hatcher  <timothy@apple.com>
-
-        Setting the valid architectures to 32-bit only, so these projects
-        will ignore requests to build them 64-bit. Once they can be built 64-bit,
-        the valid architectures can be updated.
-
-        * Drosera/Drosera.xcodeproj/project.pbxproj:
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-
-2007-04-23  Adam Roben  <aroben@apple.com>
-
-        Reviewed by Mark Rowe and David Kilzer.
-
-        * Scripts/build-webkit: Print the path to the run-safari script when
-        finished building so that users can copy-and-paste the command to
-        execute it.
-
-2007-04-23  Darin Adler  <darin@apple.com>
-
-        Reviewed by Hyatt.
-
-        - rename box-sizing to -webkit-box-sizing
-
-        * Drosera/console.css: Here.
-        * Drosera/debugger.css: And here.
-        * Drosera/viewer.css: And here.
-
-2007-04-21  Mitz Pettel  <mitz@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=13350
-          Build Ahem into DumpRenderTree
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (activateAhemFont): Added. Activates the copy of Ahem included in the
-        DumpRenderTree binary.
-        (dumpRenderTree): Replaced the check that Ahem is available with a call
-        to activateAhemFont().
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-          Added linker options to include Ahem in the data section of the
-          DumpRenderTree binary.
-
-2007-04-20  Adam Roben  <aroben@apple.com>
-
-        Reviewed by Darin Adler.
-
-        http://bugs.webkit.org/show_bug.cgi?id=13421
-        Bug 13421: prepare-ChangeLog should use svn-create-patch when spewing diffs
-
-        * Scripts/prepare-ChangeLog: Use svn-create-patch instead of svn diff.
-
-2007-04-18  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Tim
-
-        <rdar://problem/5008925>
-        Expose the NSURLConnection delegate willCacheResponse API to WebResourceLoadDelegate
-
-        * DumpRenderTree/ResourceLoadDelegate.m:
-        (-[ResourceLoadDelegate webView:resource:willCacheResponse:fromDataSource:]):
-          Add the willCacheResponse delegate call
-
-2007-04-18  Adam Roben  <aroben@apple.com>
-
-        Reviewed by David Kilzer.
-
-        * Scripts/webkitdirs.pm:
-        (sub setConfiguration): Added an optional argument to set the
-        configuration instead of parsing it from ARGV.
-
-2007-04-17  Adam Roben  <aroben@apple.com>
-
-        * Scripts/find-included-framework-headers: Search Obj-C and Obj-C++
-        files as well.
-
-2007-04-17  Adam Roben  <aroben@apple.com>
-
-        Added a simple shell script to find all the headers from a specified
-        framework or frameworks that are included by files beneath the working
-        directory.
-
-        * Scripts/find-included-framework-headers: Added.
-
-2007-04-16  Timothy Hatcher  <timothy@apple.com>
-
-        * Drosera/debugger.css: hide the borders for iframes
-
-2007-04-13  Adam Roben  <aroben@apple.com>
-
-        Rubberstamped by Anders.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.c: #include
-        stdio.h so that snprintf is defined.
-
-2007-04-13  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Anders
-
-        Add the ability to dump the back/forward history of all windows open at the end of a test
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (dumpBackForwardListForWebView): Dump B/F list for the given WebView
-        (dump): Call dumpBackForwardListForWebView for each WebView open after the test
-
-2007-04-13  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Brady.
-
-        By default, close any windows that have been opened during a test. This can be overridden by
-        calling setCloseRemainingWindowsWhenComplete(false).
-
-        Change the windows set to an array so we can gurantee the enumeration order.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (+[LayoutTestController webScriptNameForSelector:]):
-        (-[LayoutTestController setCloseRemainingWindowsWhenComplete:]):
-        (runTest):
-        (-[DumpRenderTreeWindow initWithContentRect:styleMask:backing:defer:]):
-        (-[DumpRenderTreeWindow dealloc]):
-
-2007-04-13  Geoffrey Garen  <ggaren@apple.com>
-
-        Build fix.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.c:
-        (handleCallback): Explicitly cast the void* returned by malloc.
-
-2007-04-12  Deneb Meketa  <dmeketa@adobe.com>
-
-        Reviewed by Darin Adler.
-
-        http://bugs.webkit.org/show_bug.cgi?id=13029
-        rdar://problem/4994849
-        Bug 13029: Permit NPAPI plug-ins to see HTTP response headers.
-        Changes in WebKitTools are only for the NPAPI test plugin.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.c: main test logic.
-        (pluginInvoke): support null window argument for NPStream creation.
-        (pluginAllocate): initialization.
-        (pluginDeallocate): cleanup.
-        (handleCallback): add second JS callback arg: header dump.
-        (notifyStream): added; hook from NPP_NewStream to record headers.
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.h: declarations.
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.c: call new header hook.
-        (NPP_NewStream): call new header hook.
-
-2007-04-09  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Maciej Stachowiak.
-
-        Fixed fast/forms/textarea-paste-newline.html.
-
-        This failure was pretty funny. run-webkit-tests kills and respawns
-        DumpRenderTree once every 1000 runs. Adding a few tests caused
-        textarea-paste-newline.html to run right at the beginning of DumpRenderTree's
-        lifetime, before any render tree dumps had occurred. However, WebCore
-        used a render tree dump as the hook that set a global flag to allow
-        pasting through the DOM API, so running before any render tree dumps had
-        occurred caused this test to fail.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (dumpRenderTree): Explicitly tell WebKit to allow pasting through the DOM
-        API, instead of hoping it will read the tea leaves.
-
-2007-04-07  Mark Rowe  <mrowe@apple.com>
-
-        Not reviewed.  Update to match some configuration changes that have been active on build.webkit.org.
-
-        * BuildSlaveSupport/build.webkit.org-config/webkit/status.py:
-
-2007-04-05  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Adam.
-
-        Add support for opening new windows in DumpRenderTree.
-
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (+[LayoutTestController webScriptNameForSelector:]):
-        (-[LayoutTestController setCallCloseOnWebViews:]):
-        (-[LayoutTestController setCanOpenWindows]):
-        Add two new methods callable from JavaScript. setCanOpenWindows controls whether a test
-        can open new windows, and setCallCloseOnWebViews controls whether -[WebView close] should be called on
-        web views that are about to be closed.
-
-        (runTest):
-        Make sure that only the main window is around when a test has finished running.
-
-        (-[DumpRenderTreeWindow initWithContentRect:styleMask:backing:defer:]):
-        (-[DumpRenderTreeWindow dealloc]):
-        Manage the set of windows.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.c:
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.h:
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.c:
-        (NPP_Destroy):
-        Add a "logDestroy" property which controls whether plugins should print when they are destroyed or not.
-
-        * DumpRenderTree/UIDelegate.m:
-        (-[UIDelegate webView:createWebViewWithRequest:]):
-        Create new windows.
-
-        (-[UIDelegate webViewClose:]):
-        Close windows.
-
-2007-04-05  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Maciej.
-
-        Move WebView and NSWindow creation to a separate function in preparation of supporting opening new
-        windows in DRT.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (createWebView):
-        (dumpRenderTree):
-
-2007-04-03  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Add the notion of a "disallowed URL", which the resource loader won't allow to be loaded.
-
-        * DumpRenderTree/DumpRenderTree.h:
-        * DumpRenderTree/DumpRenderTree.m:
-        (dumpRenderTree):
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (+[LayoutTestController webScriptNameForSelector:]):
-        (-[LayoutTestController addDisallowedURL:]):
-        (runTest):
-        * DumpRenderTree/ResourceLoadDelegate.m:
-        (-[ResourceLoadDelegate webView:resource:willSendRequest:redirectResponse:fromDataSource:]):
-
-2007-04-03  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Antti.
-
-        * BuildSlaveSupport/build-launcher-dmg: Use bzip2 compression in nightly build disk images rather than gzip.
-
-2007-04-02  Anders Carlsson  <andersca@apple.com>
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.h:
-        Don't use #import in a header included by C files.
-
-2007-03-31  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Mitz.
-
-        Fix http://bugs.webkit.org/show_bug.cgi?id=13239
-        Bug 13239: REGRESSION (r20343): Drosera hits exception trying to call "count" cross-process
-
-        Use -[WebScriptObject valueForKey:@"length"] to retrieve the length of a JavaScript array
-        rather than -[WebScriptObject count].
-
-        * Drosera/DebuggerDocument.m:
-        (-[DebuggerDocument webScriptAttributeKeysForScriptObject:]):
-
-2007-03-30  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Geoff.
-
-        Add an "onstreamload" attribute to the plugin which is called when a stream starts loading.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.h:
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.c:
-        (NPP_New):
-        Look for the onstreamload attribute.
-
-        (NPP_Destroy):
-        Free the onstreamload attribute.
-
-        (NPP_NewStream):
-        Call the onstreamload handler.
-
-2007-03-30  Geoffrey Garen  <ggaren@apple.com>
-
-        Removing an assertion I just added because it's crashing the Leopard
-        buildbot. The related layout test will still report a failure, so we
-        don't really need this assertion.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.c:
-        (pluginInvoke):
-
-2007-03-30  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Geoff.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/TestObject.c:
-        (testAllocate):
-        (testEnumerate):
-        Add casts.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/TestObject.h:
-        Don't use #import, use #include.
-
-2007-03-30  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Alexey.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.c:
-        (pluginInvoke):
-        Free the identifier string.
-
-2007-03-30  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Geoff.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        Add TestObject.c and TestObject.h
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.c:
-        (pluginGetProperty):
-        Implement the testObject property.
-
-        (pluginInvoke):
-        Implement testEnumerate which takes an object and an array and enumerates
-        the properties of the object and adds them to the array.
-
-        (pluginAllocate):
-        Allocate the test object.
-
-        (pluginDeallocate):
-        Free the test object.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/TestObject.c: Added.
-        * DumpRenderTree/TestNetscapePlugIn.subproj/TestObject.h: Added.
-        Add a test object with two enumerable properties.
-
-2007-03-29  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Beth Dakin.
-
-        Layout test for <rdar://problem/5091330> REGRESSION: Repro crash in
-        -[WebBaseNetscapePluginView(WebNPPCallbacks) destroyStream:reason:]
-        navigating away from page with DivX movie plug-in (13203)
-
-        Added hasStream property and destroyStream function, used by layout test.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.c:
-        (pluginGetProperty):
-        (pluginInvoke):
-        (pluginAllocate):
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.h:
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.c:
-        (NPP_NewStream):
-
-2007-03-27  Anders Carlsson  <acarlsson@apple.com>
-
-        Reviewed by Geoff.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.c:
-        (pluginInvoke):
-        Add new function which takes a function and calls it using NPN_InvokeDefault.
-
-2007-03-27  Adele Peterson  <adele@apple.com>
-
-        Adding comment.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (-[WaitUntilDoneDelegate webView:didFinishLoadForFrame:]):
-
-2007-03-27  Adele Peterson  <adele@apple.com>
-
-        Fix svg tests by calling displayIfNeeded.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (-[WaitUntilDoneDelegate webView:didFinishLoadForFrame:]):
-
-2007-03-26  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Upload crash logs from DumpRenderTree as part of the test results to ease debugging
-        of hard-to-reproduce crashes.
-
-        * BuildSlaveSupport/build.webkit.org-config/webkit/steps.py:
-
-2007-03-23  Adam Treat  <adam@staikos.net>
-
-        Reviewed and committed by George.
-
-        Patch by Adam Treat.  Removes hardcoded path to .pro file.
-
-2007-03-22  Adam Roben  <aroben@apple.com>
-
-        Reviewed by Geoff.
-
-        Removed eventSender.mouseClick because it was only useful for AppKit
-        controls, which we don't use anymore.
-
-        * DumpRenderTree/EventSendingController.m:
-        (+[EventSendingController isSelectorExcludedFromWebScript:]): Removed
-        mouseClick.
-
-2007-03-22  Adam Roben  <aroben@apple.com>
-
-        Reviewed by Ada.
-
-        Make eventSender.mouseClick actually send a mouse up event.
-
-        * DumpRenderTree/EventSendingController.m:
-        (-[EventSendingController mouseClick]):
-
-2007-03-19  David Hyatt  <hyatt@apple.com>
-
-        Update the minimum font size pref to match the actual default setting in Safari.  It should have been 1
-        all this time and not 9.
-
-        Reviewed by aroben
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (dumpRenderTree):
-
-2007-03-18  Dan Waylonis  <waylonis@mac.com>
-
-        Reviewed by Tim Hatcher.
-
-        DumpRenderTree changes for http://bugs.webkit.org/show_bug.cgi?id=13005
-        Bug 13005: WebScriptObject +throwException needs NULL check.
-
-        Add tests to ensure that a plugin can safely throw an exception in dealloc.
-
-        * DumpRenderTree/ObjCPlugin.h:
-        * DumpRenderTree/ObjCPlugin.m:
-        (+[ObjCPlugin webScriptNameForKey:]):
-        (+[ObjCPlugin isKeyExcludedFromWebScript:]):
-        (-[ObjCPlugin dealloc]):
-
-2007-03-13  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Maciej.
-
-        Have the nightly launcher prefer Safari found in /Applications or ~/Applications
-        if present, otherwise fall back on using LaunchServices to locate it elsewhere
-        on the system.  The motivation for this is to make the behaviour of the nightly
-        builds more predictable on machines with multiple copies of Safari present.
-
-        * WebKitLauncher/main.m:
-        (locateSafariBundle):
-        (main):
-
-2007-03-12  Darin Adler  <darin@apple.com>
-
-        Reviewed by Tim Hatcher.
-
-        - add a DumpRenderTree feature where you can get the Objective-C
-          class name of a JavaScript object
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]): Add the
-        objCClassNameOf: selector.
-        (+[LayoutTestController webScriptNameForSelector:]): Add the
-        objCClassNameOf: selector, with the name "objCClassName".
-        (-[LayoutTestController objCClassNameOf:]): Added.
-
-2007-03-11  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        Beefed up --threaded mode in light of <rdar://problem/4681051> Installer
-        crashes in KJS::Collector::markOtherThreadConservatively(KJS::Collector::Thread*)
-        trying to install iLife 06 using Rosetta on an Intel Machine
-
-        --threaded mode now runs a bunch of different JavaScript threads, randomly
-        killing and respawning them. This was sufficient for reproducing the
-        bug on my MacBook Pro.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (javaScriptThreads):
-        (runJavaScriptThread):
-        (startJavaScriptThreads):
-        (stopJavaScriptThreads):
-        (dumpRenderTree):
-
-2007-03-11  Krzysztof Kowalczyk  <kkowalczyk@gmail.com>
-
-        Reviewed by Brady Eidson.
-
-        Add forward/backward/quit menus for easier testing.
-
-        * GdkLauncher/main.cpp:
-        (menuMainBackCb):
-        (menuMainForwardCb):
-        (menuMainQuitCb):
-        (main):
-
-2007-03-09  Andrew Wellington  <proton@wiretapped.net>
-
-        Reviewed by Darin Adler.
-
-        - fix http://bugs.webkit.org/show_bug.cgi?id=13007
-          svn-create-patch doesn't handle UTF files with BOMs as text
-
-        Force diff to treat files that svn-create-patch thinks are text as text.
-
-        * Scripts/svn-create-patch: Added -a switch to diff command.
-
-2007-03-09  Mark Rowe  <mrowe@apple.com>
-
-        Unreviewed.  Use the new SVN URL on the buildbot.
-
-        * BuildSlaveSupport/build.webkit.org-config/webkit/steps.py:
-
-2007-03-08  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Antti.
-
-        Fix compiler warnings when building Drosera as 64-bit.
-
-        * Drosera/DebuggerDocument.m:
-        (-[DebuggerDocument breakpointEditorHTML]): Move away from deprecated NSString method.
-        (-[DebuggerDocument scriptConfirmSheetDidEnd:returnCode:contextInfo:]): Update type.
-        (-[DebuggerDocument webView:runJavaScriptConfirmPanelWithMessage:initiatedByFrame:]): Update type to accommodate constant.
-
-2007-03-07  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Maciej.
-
-        Update check-for-global-initializers to ignore new debug initializers in bidi.o and kjs_events.o.
-
-        * Scripts/check-for-global-initializers:
-
-2007-03-07  Anders Carlsson  <acarlsson@apple.com>
-
-        Reviewed by Adam.
-
-        Add some assertions.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (-[WaitUntilDoneDelegate webView:didStartProvisionalLoadForFrame:]):
-        (-[WaitUntilDoneDelegate webView:didCommitLoadForFrame:]):
-        (-[WaitUntilDoneDelegate webView:didFailProvisionalLoadWithError:forFrame:]):
-        (-[WaitUntilDoneDelegate webView:didFailLoadWithError:forFrame:]):
-
-2007-03-07  David Kilzer  <ddkilzer@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        - WebKitTools part of fix for http://bugs.webkit.org/show_bug.cgi?id=12463
-          WebArchiver - attempt to insert nil exception when archive empty iframe
-
-        The dumpDOMAsWebArchive() test method uses the DOMDocument as a basis for creating
-        a webarchive while the dumpSourceAsWebArchive() test method uses the original
-        dataSource (page source) to create a webarchive.  Most tests currently use
-        dumpDOMAsWebArchive() since this is what Safari does when saving a web page as a
-        webarchive.
-
-        * DumpRenderTree/DumpRenderTree.m: Renamed dumpAsWebArchive to dumpDOMAsWebArchive.
-        Added dumpSourceAsWebArchive.
-        (dump):
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (-[LayoutTestController dumpDOMAsWebArchive]):
-        (-[LayoutTestController dumpSourceAsWebArchive]):
-        (runTest):
-
-2007-03-05  Kevin McCullough  <kmccullough@apple.com>
-
-        Reviewed by Mark and Dave H.
-
-        - rdar://problem/4922454
-        - This fixes a security issue by making remote referrers not able to access local
-        resources, unless they register their schemes to be treated as local. The result is
-        that those schemes can access local resources and cannot be accessed by remote
-        referrers.
-        Because this behavior is new a link-on-or-after check is made to determine if the
-        app should use the older, less safe, behavior.
-
-        * DumpRenderTree/DumpRenderTree.m: Add ability to set user style sheet to DRT.
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (+[LayoutTestController webScriptNameForSelector:]):
-        (-[LayoutTestController setUserStyleSheetLocation:]):
-        (-[LayoutTestController setUserStyleSheetEnabled:]):
-
-2007-03-05  Anders Carlsson  <acarlsson@apple.com>
-
-        Reviewed by Adam, Darin.
-
-        <rdar://problem/5025212>
-        In Mail, a crash occurs at WebCore::Frame::tree() when clicking on embedded flash object
-
-        Add a "getURLNotify" method to the plugin object. This lets you pass a URL, a target and a callback function
-        to be run when the URL has finished (or failed) loading.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.c:
-        (pluginInvoke):
-        (handleCallback):
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.h:
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.c:
-        (NPP_URLNotify):
-
-2007-03-04  Krzysztof Kowalczyk  <kkowalczyk@gmail.com>
-
-        Reviewed by Nikolas Zimmermann.
-
-        Load a url given on a command line in a way that also
-        works for local (file://) urls.
-
-        * GdkLauncher/main.cpp:
-        (main):
-
-2007-03-02  Geoffrey Garen  <ggaren@apple.com>
-
-        Tweaked parse-malloc-history to work with new malloc_history output format.
-
-        * Scripts/parse-malloc-history:
-
-2007-02-28  Vladimir Olexa  <vladimir.olexa@gmail.com>
-
-        Reviewed by Tim H.
-
-        Fixes: http://bugs.webkit.org/show_bug.cgi?id=12887
-        Bug#12887: [Drosera] Add ability to close loaded files
-
-        * Drosera/DebuggerDocument.h:
-        * Drosera/DebuggerDocument.m:
-        (-[DebuggerDocument closeCurrentFile:]): Adds delegation to call a JS script to close files
-        * Drosera/Drosera.xcodeproj/project.pbxproj:
-        * Drosera/English.lproj/MainMenu.nib/classes.nib:
-        * Drosera/English.lproj/MainMenu.nib/info.nib:
-        * Drosera/English.lproj/MainMenu.nib/keyedobjects.nib: Adds Close Current File menu item
-        * Drosera/debugger.html: Changed "no files loaded" to "<No files loaded>" to match Xcode style
-        * Drosera/debugger.js: Adds implementation of closeFile() to unload currently loaded file
-
-2007-02-28  Nikolas Zimmermann  <zimmermann@kde.org>
-
-        Reviewed by Maciej.
-
-        Add new flags to build-webkit to be able to switch on/off xpath, xslt, etc. easily.
-
-        * Scripts/build-webkit:
-
-2007-02-27  Geoffrey Garen  <ggaren@apple.com>
-
-        Small tweak to run-webkit-tests.
-
-        * Scripts/run-webkit-tests: Allow people with lots of RAM to run more than
-        1000 MallocStackLogging tests at a time.
-
-2007-02-26  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Lars.
-
-        - set ENABLE_XSLT even when compiling without SVG support, since that is no
-        longer hardcoded into config.h.
-
-        * Scripts/build-webkit:
-
-2007-02-26  Krzysztof Kowalczyk  <kkowalczyk@gmail.com>
-
-        Reviewed by Adam Roben.
-
-        Rename *_SUPPORT defines to ENABLE_*.
-
-        * GdkLauncher/gdklauncher.bkl:
-
-2007-02-24  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Darin Adler.
-
-        * Scripts/run-webkit-tests: Stop ignoring BidiRun leaks, now that they're
-        fixed.
-
-2007-02-24  Krzysztof Kowalczyk  <kkowalczyk@gmail.com>
-
-        Reviewed by Adam Roben.
-
-        Improve gdklauncher: add text field for entering url.
-
-        * GdkLauncher/gdklauncher.bkl:
-        * GdkLauncher/main.cpp:
-        (strEmpty):
-        (strEq):
-        (handleGdkEvent):
-        (goToUrlBarText):
-        (goButtonClickedCb):
-        (urlBarEnterCb):
-        (registerRenderingAreaEvents):
-        (frameResizeCb):
-        (frameDestroyCb):
-        (main):
-
-2007-02-22  Vladimir Olexa  <vladimir.olexa@gmail.com>
-
-        Reviewed by Tim H.
-
-        Fixes: http://bugs.webkit.org/show_bug.cgi?id=12852
-        Bug#12852: Drosera should select function name, not "function" keyword when selecting from function list pop-up
-        * Drosera/debugger.js: Fixed some logic errors resulting in generating double IDs and names.
-
-2007-02-22  Adele Peterson  <adele@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Added option in layoutTestController to setTabKeyCyclesThroughElements, so we
-        can test <rdar://problem/5014970> 9A374: Tabs don't work in the message body
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (+[LayoutTestController webScriptNameForSelector:]):
-        (-[LayoutTestController setTabKeyCyclesThroughElements:]):
-
-2007-02-22  Geoffrey Garen  <ggaren@apple.com>
-
-        Used svn merge -r19786:19785 to roll out previous hack to work around
-        SVG painting issue in DRT.
-
-        Implemented new work-around, which makes --paint paint *after* dumping
-        the render tree instead of before, so that painting doesn't influence
-        the SVG render tree.
-
-        This should fix the ~400 new pixel failures introduced in r19786.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (dump):
-        * Scripts/run-webkit-tests:
-
-2007-02-22  Geoffrey Garen  <ggaren@apple.com>
-
-        Resetting --leaks mode default to run 1000 tests at a time because setting it
-        to 750 didn't stop the stack logging related crashes, and running more tests
-        at a time is faster. The crashes seem to be a real bug in stack logging,
-        not an out of memory condition.
-
-        * Scripts/run-webkit-tests:
-
-2007-02-21  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Added hack to force painting when running an SVG test. This is a work-around
-        for http://bugs.webkit.org/show_bug.cgi?id=12849 SVG renderers update at
-        paint time instead of style resolution time.
-
-        We need this so that --leaks mode, which always paints, doesn't appear to
-        fail SVG tests. We also need this if we ever want to test style application
-        in SVG, since many SVGs don't apply style to their renderers until they paint.
-
-        * Scripts/run-webkit-tests:
-
-2007-02-21  Geoffrey Garen  <ggaren@apple.com>
-
-        Reduced --leaks mode to running only 750 tests at a time, in the hopes
-        of fixing intermittent crasher that may be caused by out of memory
-        conditions.
-
-        * Scripts/run-webkit-tests:
-
-2007-02-21  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Made DRT paint when running run-webkit-tests in --leaks mode, to check
-        for painting leaks.
-
-        * DumpRenderTree/DumpRenderTree.m: Removed some "NO" initializations, since
-        that's the default for statics.
-        (dumpRenderTree): Added --paint command line option, which specifies that
-        DRT should paint at the end of every test.
-        (displayWebView): New function, called by dump() and -[LayoutTestController display].
-        * Scripts/run-webkit-tests: Use the --paint command line option when checking
-        for leaks.
-
-        * Scripts/run-webkit-tests: Added a new, painting leak to the ignore list.
-        Removed stale comment about THRD leaks -- we now ignore them reliably.
-
-2007-02-21  Geoffrey Garen  <ggaren@apple.com>
-
-        Tools tweak. No review necessary.
-
-        * Scripts/parse-malloc-history: Enabled multiple merge-regexp command line
-        arguments. Changed command line argument variables from special implicit
-        no-op values to specific empty values that we test explicitly.
-
-2007-02-21  Vladimir Olexa  <vladimir.olexa@gmail.com>
-
-        Reviewed by Tim H.
-
-        Bug 12834: Drosera should remember scroll position of open files like Xcode
-        http://bugs.webkit.org/show_bug.cgi?id=12834
-
-        * Drosera/debugger.js: Implemented scrolling memory
-
-2007-02-20  Geoffrey Garen  <ggaren@apple.com>
-
-        Tools tweak. No review necessary.
-
-        Made parse-malloc-history executable. (Oops!)
-
-        Made parse-malloc-history parse 'leaks' output in addition to 'malloc_history"
-        output.
-
-        Added the ability to merge callstacks by regexp, not just depth, so you
-        can ask questions like, "How many of these allocations were due to that one
-        call to ...?"
-
-        * Scripts/parse-malloc-history:
-
-2007-02-20  Geoffrey Garen  <ggaren@apple.com>
-
-        * Scripts/parse-malloc-history: Added copyright info.
-
-2007-02-20  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Darin Adler.
-
-        New script to parse the output from malloc_history, so we can determine
-        what's using memory in WebKit.
-
-        * Scripts/parse-malloc-history: Added.
-
-2007-02-20  Graham Dennis  <graham.dennis@gmail.com>
-
-        Reviewed by Darin Adler.
-
-        Fix for http://bugs.webkit.org/show_bug.cgi?id=12802
-        WebKit.framework is built with SVG_SUPPORT for No-SVG build
-
-        * Scripts/build-webkit: Pass the "FEATURE_DEFINES=" option when building WebKit as well.
-
-2007-02-19  Geoffrey Garen  <ggaren@apple.com>
-
-        Build fix.
-
-        * Scripts/check-for-global-initializers: Ignore the global counter I added
-        for SubresourceLoaders.
-
-2007-02-19  Darin Adler  <darin@apple.com>
-
-        Reviewed by Tim Hatcher.
-
-        * Scripts/check-for-global-initializers: Delete the linked executable if the check fails.
-        Without this, you only see the global initializer error once, which makes it very easy
-        to miss them.
-
-2007-02-16  Mark Rowe  <mrowe@apple.com>
-
-        Not reviewed.
-
-        <rdar://problem/4982312> leaks bot should run in normal mode, rather than quiet mode
-
-        * BuildSlaveSupport/build.webkit.org-config/webkit/steps.py: Switch back to default verbosity for output of leaks tests.
-
-2007-02-15  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Beth Dakin.
-
-        * DumpRenderTree/DumpRenderTree.m: Don't ignore NSAttributedString WebCore::Node
-        leaks anymore, either, since r19486 fixed them, too.
-        (shouldIgnoreWebCoreNodeLeaks):
-
-2007-02-15  Darin Adler  <darin@apple.com>
-
-        * Scripts/run-webkit-tests: Don't ignore NSAttributedString leaks any more. Those were
-        fixed by change 19486.
-
-2007-02-15  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Beth Dakin.
-
-        Ignore another leak, seen recently on the buildbot.
-
-        * Scripts/run-webkit-tests:
-
-2007-02-14  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Beth Dakin.
-
-        Ignore another leak, seen recently on the buildbot.
-
-        * Scripts/run-webkit-tests:
-
-2007-02-13  Darin Adler  <darin@apple.com>
-
-        * Scripts/run-webkit-tests: Fix a bug where --reset-results output would all go in one
-        giant line.
-
-2007-02-11  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Mitz.
-
-        - add contextClick() operation to eventSender to be able to test this
-
-        * DumpRenderTree/EventSendingController.m:
-        (+[EventSendingController isSelectorExcludedFromWebScript:]):
-        (-[EventSendingController contextClick]):
-
-2007-02-11  Darin Adler  <darin@apple.com>
-
-        * Scripts/check-for-global-initializers: Fix case where executable doesn't exist at all
-        so it doesn't give a perl exception (happens in clean builds, for example).
-
-2007-02-10  David Kilzer  <ddkilzer@webkit.org>
-
-        Reviewed by Adam.
-
-        * Scripts/svn-create-patch:
-        (findSourceFileAndRevision($)): Use File::Spec->abs2rel() instead of substr() to generate
-        a relative path to the copied file.
-
-2007-02-10  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        * Drosera/Drosera.icns: updated the icon with 512px and 256px variants
-
-2007-02-10  David Kilzer  <ddkilzer@webkit.org>
-
-        Reviewed by Timothy.
-
-        * Scripts/svn-apply:
-        (handleBinaryChange($$)): Binary patches don't need a trailing newline after the base64
-        encoded text.
-
-2007-02-10  Brady Eidson <beidson@apple.com>
-
-        Reviewed by Maciej
-
-        <rdar://problem/4965133> WebKit sends file:// url referrers
-
-        * Scripts/run-webkit-tests: Enhanced the http tests so that we can run layout tests
-          on local files, but have an httpd for remote resources
-
-2007-02-08  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Beth Dakin.
-
-        Ignore another false leak report.
-
-        * Scripts/run-webkit-tests:
-
-2007-02-08  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Kevin McCullough.
-
-        * Scripts/run-webkit-tests: Don't try to create /tmp/LayoutTests if it
-        already exists, to avoid confusing error message.
-
-        Also, remove /tmp/LayoutTests after running so unsupecting fools don't
-        try to rm -rf it, only later to discover that they have completely hosed
-        their machines.
-
-2007-02-08  Krzysztof Kowalczyk  <kkowalczyk@gmail.com>
-
-        Reviewed by Adam Roben.
-
-        Linux/gdk build fixes.
-
-        * GdkLauncher/main.cpp: Add -exit-after-loading and
-        -dump-render-tree as debugging aid.
-        (strEq):
-        (main):
-
-2007-02-08  Geoffrey Garen  <ggaren@apple.com>
-
-        Minor fixup based on Maciej's review last night.
-
-        * Scripts/run-webkit-tests: Use normal "increment at end of loop" behavior,
-        and do a little math to make it work.
-
-2007-02-08  Krzysztof Kowalczyk  <kkowalczyk@gmail.com>
-
-        Reviewed by Adam Roben.
-
-        Linux/gdk build fixes.
-
-        * GdkLauncher/gdklauncher.bkl:
-
-2007-02-08  Kevin McCullough  <KMcCullough@apple.com>
-
-        - Fix layout test failures.
-
-        * Scripts/run-webkit-tests:
-
-2007-02-08  Darin Adler  <darin@apple.com>
-
-        Reviewed by Anders.
-
-        * Scripts/check-for-global-initializers: For speed, only check files that
-        have been modified since the last time we linked. For tidiness, capture
-        stderr from nm, and prevent "nm: no name list" messages from going out.
-
-2007-02-08  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Maciej Stachowiak, Adam Roben.
-
-        Added 'nthly' support to run-webkit-tests. It's like 'singly', for an
-        arbitrary number n.
-
-        Plus some renames:
-            - DumpRenderTree => "dumpTool" (to match abstraction elsewhere)
-            - checkLeaks => "shouldCheckLeaks" (to match style guidelines)
-            - tool => dumpTool (to match abstraction elsewhere)
-            - httpdOpen => isHttpdOpen (to match style guidelines)
-
-        Plus a few logic fixups:
-            - Don't check isDumpToolOpen when we know we've called openDumpTool().
-            - Use a single code path to decide when to shut down dumpTool and
-              when to check for leaks, since the operations are coincidental.
-            - Use a single code path for running the leaks tool, since the only
-              thing that varies between configurations is the output file name.
-            - Increment $count after each test finishes, instead of at the end
-              of the loop, to help with comparing to the length of the array
-              and %-ing by n.
-            - Use a more robust test inside the loop to determine if we need to
-              close dumpTool, instead of copying the closing code outside the loop.
-
-        Layout tests pass.
-
-        * Scripts/run-webkit-tests:
-
-2007-02-06  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Beth Dakin, evil twin to Bethany P. Dakin.
-
-        Ignore known leaks in CFRunLoop. Exclude THRD leaks by type so that we can
-        catch all reports of them, not just those inside pthread_create.
-
-        Also, use "\\" instead of "\" because we need the actual \ to get into the
-        regexp string if it's going to do any escaping. (Oops!)
-
-        * Scripts/run-webkit-tests:
-
-2007-02-06  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Bethany P. Dakin.
-
-        The 's' is optional when the leaks tool reports 'leaks'.
-
-        * Scripts/run-leaks:
-
-2007-02-06  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Bethany P. Dakin.
-
-        Hooked up run-webkit-tests to the run-leaks script. No change in behavior yet.
-
-        * Scripts/run-webkit-tests: Changed symbol names to valid regular expressions.
-
-2007-02-06  David Smith  <catfish.man@gmail.com>
-
-        Reviewed by Darin Adler.
-
-        Patch for http://bugs.webkit.org/show_bug.cgi?id=12566
-        [Drosera] Console history fixups
-
-        * Drosera/console.js: assorted cleanups and fixes
-
-2007-02-05  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Darin Adler.
-
-        New script that allows you to ignore leaks by regular expression.
-
-        * Scripts/run-leaks: Added.
-
-2007-02-03  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Mark.
-
-        Patch for http://bugs.webkit.org/show_bug.cgi?id=12555
-        Drosera doesn't handle CR ( carriage returns ) well
-
-        - Normalize all the line endings.
-
-        * Drosera/debugger.js:
-
-2007-02-02  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Added some more known leaks to the leaks ignore list.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Why does XCode
-        hate itself so much?
-        * Scripts/run-webkit-tests:
-
-2007-02-02  Geoffrey Garen  <ggaren@apple.com>
-
-        Even better build fix than the last.
-
-        * ChangeLog:
-        * DumpRenderTree/DumpRenderTree.m:
-        (shouldIgnoreWebCoreNodeLeaks):
-
-2007-02-02  Geoffrey Garen  <ggaren@apple.com>
-
-        Fixed build. Added work-around for GCC bug.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (shouldIgnoreWebCoreNodeLeaks):
-
-2007-02-01  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Maciej Stachowiak.
-
-        Added support for selectively ignoring WebCore::Node leaks during layout
-        tests, so that we can ignore known leaks in other components.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (shouldIgnoreWebCoreNodeLeaks): Implements a black list of tests whose
-        WebCore::Node leaks we have to ignore. Does this CFString gobbledy-gook
-        confuse anyone else?
-        (runTest):
-
-2007-02-01  Anders Carlsson  <acarlsson@apple.com>
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/UIDelegate.m:
-        (-[UIDelegate webView:addMessageToConsole:]):
-        Dump console messages.
-
-2007-01-31  Anders Carlsson  <acarlsson@apple.com>
-
-        * DumpRenderTree/ResourceLoadDelegate.m:
-        (-[ResourceLoadDelegate webView:identifierForInitialRequest:fromDataSource:]):
-        Use an NSString here so we can guarantee that -description always returns the same value.
-
-2007-01-31  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Added Selection::toRange to the leaks -exclude list, since it comes up
-        as a false positive (Radar 4967949).
-
-        Also added RangeCounter to the global initializer exclude list. I added
-        a RangeCounter since leaks won't detect all Range leaks anymore.
-
-        * Scripts/check-for-global-initializers:
-        * Scripts/run-webkit-tests:
-
-2007-01-31  Anders Carlsson  <acarlsson@apple.com>
-
-        * DumpRenderTree/ResourceLoadDelegate.m:
-        (-[ResourceLoadDelegate webView:identifierForInitialRequest:fromDataSource:]):
-        Don't try to create an identifier if resource loads shouldn't be dumped.
-
-2007-01-31  Anders Carlsson  <acarlsson@apple.com>
-
-        Reviewed by Geoff.
-
-        Add dumping of resource loads. This isn't completely tweaked yet since the test results would
-        rely on resources being delivered in the same order which might not always be true. However, it works good
-        enough for the simple webarchive tests I want to do right now.
-
-        * DumpRenderTree/DumpRenderTree.h:
-        * DumpRenderTree/DumpRenderTree.m:
-        (dumpRenderTree):
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (-[LayoutTestController dumpResourceLoadCallbacks]):
-        (runTest):
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/ResourceLoadDelegate.h: Added.
-        * DumpRenderTree/ResourceLoadDelegate.m: Added.
-        Add new resource load delegate.
-
-2007-01-31  Geoffrey Garen  <ggaren@apple.com>
-
-        Backing out the CFRunLoopRunSpecific exclude command because it was overly
-        broad. We'll either need to work around this leak in DRT, or do some
-        custom grep-based leak ignoring.
-
-        * Scripts/run-webkit-tests:
-
-2007-01-30  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Beth Dakin.
-
-        Filed some more Radars in other components, added some more leaks to the
-        exclusion list.
-
-        * Scripts/run-webkit-tests: Ignore leaks in CFNotificationCenterAddObserver,
-        CFRunLoopRunSpecific, and NSSpellChecker.
-
-2007-01-30  David Kilzer  <ddkilzer@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        http://bugs.webkit.org/show_bug.cgi?id=11882
-        Need a way to regression test .webarchive output files
-
-        Implement layoutTestController.dumpAsWebArchive() to test WebArchive format.
-        Alters WebResourceResponse and WebResourceURL properties within WebArchive format
-        to normalize URLs to remove path where WebKit was checked out.  Also converts
-        WebDataResource properties from data to string if the corresponding
-        WebResourceMIMEType property starts with "text/" or equals
-        "application/x-javascript".
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (convertWebResourceDataToString): Added.
-        (normalizeWebResourceURL): Added.
-        (normalizeWebResourceResponse): Added.
-        (serializeWebArchiveToXML): Added.
-        (dump):
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (-[LayoutTestController dumpAsWebArchive]): Added.
-        (runTest):
-
-2007-01-30  David Kilzer  <ddkilzer@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        http://bugs.webkit.org/show_bug.cgi?id=12470
-        svn-create-patch creates duplicate patches for files within an added/modified directory
-
-        * Scripts/svn-create-patch:
-        (sub generateFileList($\%\%)): Ignore directories when generating the file list.
-
-2007-01-29  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Maciej Stachowiak.
-
-        Fixed <rdar://problem/4485644> REGRESSION: JavaScriptCore has init routines
-
-        No more mollycoddling for you, FastMalloc.o!
-
-        * Scripts/check-for-global-initializers:
-
-2007-01-29  Graham Dennis  <graham.dennis@gmail.com>
-
-        Reviewed by Maciej.
-
-        Enables layout test for: http://bugs.webkit.org/show_bug.cgi?id=10725
-        Image data in from RTFD clipboard data thrown away
-
-        - This method is needed because NSArrays are bridged to JS Arrays,
-          which in turn are bridged back to WebScriptObjects when passed from
-          JS to ObjC. Hence it is not possbile to pass an NSArray from JS.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (-[DumpRenderTreePasteboard declareType:owner:]): Added a convenience method for JS.
-
-2007-01-25  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Maciej Stachowiak.
-
-        Added support for test for <rdar://problem/4608404> WebScriptObject's
-        _rootObject lack of ownership policy causes crashes (e.g., in Dashcode)
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (+[LayoutTestController webScriptNameForSelector:]):
-        (-[LayoutTestController storeWebScriptObject:]):
-        (-[LayoutTestController accessStoredWebScriptObject]):
-        (-[LayoutTestController dealloc]):
-
-2007-01-26  Lars Knoll <lars@trolltech.com>
-
-        Reviewed by Zack
-
-        Small hack to ensure that our top level frame actually has the
-        correct size. Unfortunately this means I'll have to regenerate
-        all test cases :/
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-
-2007-01-25  Lars Knoll <lars@trolltech.com>
-
-        Reviewed by Darin and Zack
-
-        Move the test results for Qt into a directory of it's own
-        (WebKit/LayoutTestResults/qt). Leave the Mac results where
-        they are for now and share the text only results between
-        Mac and Qt.
-
-        Add support for a LayoutTestResults/platform/Skipped file
-        to run-webkit-tests to be able to ignore certain tests
-
-        Remove the old tests-skipped.txt from Qts DumpRenderTree
-        implementation.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::open):
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.h:
-        * DumpRenderTree/DumpRenderTree.qtproj/tests-skipped.txt: Removed.
-        * Scripts/run-webkit-tests:
-
-2007-01-24  Darin Adler  <darin@apple.com>
-
-        Reviewed by Oliver.
-
-        - fix crash seen in layout tests
-
-        * DumpRenderTree/EventSendingController.m: (-[EventSendingController dealloc]):
-        Add back the line of code that sets savedMouseEvents to nil. I thought it was
-        a field of the EventSendingController, but it's actually a global.
-
-2007-01-24  Darin Adler  <darin@apple.com>
-
-        Reviewed by Maciej.
-
-        - changed dragMode to be a property instead of a function
-
-        * DumpRenderTree/EventSendingController.h: Renamed inDragMode to dragMode.
-        * DumpRenderTree/EventSendingController.m:
-        (+[EventSendingController isSelectorExcludedFromWebScript:]): Removed setDragMode.
-        (+[EventSendingController isKeyExcludedFromWebScript:]): Added dragMode.
-        (-[EventSendingController init]): Updated for name change.
-        (-[EventSendingController leapForward:]): Ditto.
-        (-[EventSendingController mouseUp]): Ditto.
-        (-[EventSendingController mouseMoveToX:Y:]): Ditto.
-
-2007-01-24  Darin Adler  <darin@apple.com>
-
-        Reviewed by Maciej.
-
-        - made the deferral of mouse events until drag completes conditional
-          it's needed for drag testing, and harmful for selection testing
-
-        * DumpRenderTree/EventSendingController.h: Added inDragMode boolean.
-        * DumpRenderTree/EventSendingController.m:
-        (+[EventSendingController isSelectorExcludedFromWebScript:]): Added setDragMode:.
-        (+[EventSendingController webScriptNameForSelector:]): Added name for setDragMode,
-        and remove unneeded clearKillRing name.
-        (-[EventSendingController init]): Initialize inDragMode to true.
-        (-[EventSendingController dealloc]): Removed overzealous assertions -- we should
-        not be asserting things that are dependent on the test content!
-        (-[EventSendingController leapForward:]): Only queue events in drag mode.
-        (-[EventSendingController setDragMode:]): Added.
-        (-[EventSendingController mouseDown]): Removed overzealous assertion.
-        (-[EventSendingController mouseUp]): Removed overzealous assertions.
-        Only queue events in drag mode.
-        (-[EventSendingController mouseMoveToX:Y:]): Only queue events in drag mode.
-
-2007-01-24  Lars Knoll <lars@trolltech.com>
-
-        Reviewed by Zack
-
-        Add a signal handler, always dump immediately if we get an
-        error during a page load and raise the timeout to 5 seconds
-        (as we get a lot less such failures now)
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::maybeDump):
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.h:
-        * DumpRenderTree/DumpRenderTree.qtproj/jsobjects.cpp:
-        (LayoutTestController::waitUntilDone):
-        * DumpRenderTree/DumpRenderTree.qtproj/main.cpp:
-        (crashHandler):
-        (main):
-        * DumpRenderTree/DumpRenderTree.qtproj/tests-skipped.txt:
-
-2007-01-22  Darin Adler  <darin@apple.com>
-
-        Reviewed by Mitz.
-
-        - a couple tiny tweaks to make --reset-results work better
-
-        * Scripts/run-webkit-tests: Always generate results when --reset-results is specified.
-        Don't make a separate "new" entry while generating results when --reset-results
-        is specified since new results are the norm in that case.
-
-2007-01-21  Sanjay Madhav  <sanjay12@gmail.com>
-
-        Reviewed by Darin Adler.
-
-        Test support for: <rdar://problem/4928583> Memory usage grows when reloading google.com/ig
-
-        This adds a getJSObjectCount test-accessible function to allow test scripts to track JSObject usage.
-
-        * DumpRenderTree/GCController.h:
-        * DumpRenderTree/GCController.mm:
-        (+[GCController isSelectorExcludedFromWebScript:]):
-        (-[GCController getJSObjectCount]):
-
-2007-01-20  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Maciej.
-
-        * BuildSlaveSupport/build.webkit.org-config/webkit/steps.py: Track the output of run-javascriptcore-tests,
-        catch single regressions, and don't generate tests results for new tests.
-
-2007-01-20  Adam Roben  <aroben@apple.com>
-
-        Rubberstamped by Maciej.
-
-        * Scripts/run-webkit-tests: Change the default behavior back to
-        generating results for new tests (this can be disabled with
-        --no-new-test-results)
-
-2007-01-19  Lars Knoll <lars@trolltech.com>
-
-        Reviewed by Adam Roben.
-
-        run-webkit-tests does now not generate new results by default anymore.
-        You'll have to pass the --new-tests flag to it to force it to do so.
-
-        This is required to make it possible to have tests running on multiple
-        platforms peacefully together.
-
-        * Scripts/run-webkit-tests:
-
-2007-01-18  Darin Adler  <darin@apple.com>
-
-        Reviewed by John Sullivan.
-
-        * Scripts/run-webkit-tests: Fix handling of configuration so it
-        does the right thing when no explicit configuration is passed in.
-        The old code assumed that the result of setConfiguration() was the
-        configuration, but it's undefined when no configuration is
-        explicitly passed in. The correct function to use is
-        configuration(), and I also streamlined the code.
-
-2007-01-17  Lars Knoll <lars@trolltech.com>
-
-        Fix my last commit to actually work in all cases.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::readStdin):
-
-2007-01-17  Lars Knoll <lars@trolltech.com>
-
-        Reviewed by Maciej
-
-        Make sure DumpRenderTree exits when run-webkit-tests
-        is done.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::readStdin):
-
-2007-01-17  Lars Knoll <lars@trolltech.com>
-
-        Reviewed by Zack
-
-        Small fixes in DumpRenderTree, so we don't by
-        accident dump twice for the same test.
-
-        Exclude one more test as it currently causes DumpRenderTree to
-        hang forever.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::readStdin):
-        (WebCore::DumpRenderTree::dump):
-        * DumpRenderTree/DumpRenderTree.qtproj/jsobjects.cpp:
-        (LayoutTestController::notifyDone):
-        * DumpRenderTree/DumpRenderTree.qtproj/tests-skipped.txt:
-
-2007-01-17  Lars Knoll <lars@trolltech.com>
-
-        Reviewed by Zack
-
-        Add a message handler to DumpRenderTree that will
-        suppress all debug output coming from qDebug() statements.
-        Like this we can get rid of all the noise coming
-        from the notImplemented() macro when running the
-        layout tests. You can get it back by adding -v to
-        DumpRenderTree's command line.
-
-        Changed run-webkit-tests slightly, so we by default
-        don't fail anymore when our output differs from what
-        is generated on the Mac. Added a --strict option, so
-        that we can still see this cases and fix them one by one.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/main.cpp:
-        (messageHandler):
-        (main):
-        * Scripts/run-webkit-tests:
-
-2007-01-16  Lars Knoll <lars@trolltech.com>
-
-        Reviewed by Zack
-
-        Use the new public API for the Qt build, and don't rely on
-        WebKit internals anymore.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::~DumpRenderTree):
-        (WebCore::DumpRenderTree::open):
-        (WebCore::DumpRenderTree::readStdin):
-        (WebCore::DumpRenderTree::initJSObjects):
-        (WebCore::DumpRenderTree::dump):
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.h:
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.pro:
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTreeClient.cpp: Removed.
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTreeClient.h: Removed.
-        * DumpRenderTree/DumpRenderTree.qtproj/jsobjects.cpp:
-        (LayoutTestController::notifyDone):
-        (LayoutTestController::timerEvent):
-        * DumpRenderTree/DumpRenderTree.qtproj/main.cpp:
-        (main):
-        * DumpRenderTree/DumpRenderTree.qtproj/tests-skipped.txt:
-
-2007-01-15  Justin Garcia  <justin.garcia@apple.com>
-
-        Reviewed by mjs
-
-        <rdar://problem/4810960>
-        Gmail Editor: window.focus() called on keyDown (9640)
-
-        * DumpRenderTree/EventSendingController.m: Send the keyDown event
-        to the firstResponder, not the event's locationInWindow.  A
-        key press's locationInWindow is meaningless and just a dummy
-        coordinate.
-
-2007-01-15  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by bdash.
-
-        Add a script to keep our header guards squeaky clean.
-
-        * Scripts/clean-header-guards: Added.
-
-2007-01-15  Lars Knoll <lars@trolltech.com>
-
-        Reviewed by Zack
-
-        Fix a few smaller issues in here, and update
-        our list of skipped tests.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::readStdin):
-        (WebCore::DumpRenderTree::dump):
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.h:
-        * DumpRenderTree/DumpRenderTree.qtproj/jsobjects.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::reset):
-        (LayoutTestController::waitUntilDone):
-        (LayoutTestController::notifyDone):
-        (LayoutTestController::dumpEditingCallbacks):
-        (LayoutTestController::timerEvent):
-        * DumpRenderTree/DumpRenderTree.qtproj/jsobjects.h:
-        * DumpRenderTree/DumpRenderTree.qtproj/tests-skipped.txt:
-
-2007-01-14  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Adam.
-
-        <rdar://problem/4908909> Need to create Leopard nightly build
-
-        * WebKitLauncher/WebKitLauncher.xcodeproj/project.pbxproj: Always use the 10.4 Universal SDK.  The disk images don't mount pre-10.4 so we aren't losing anything here.
-        * WebKitLauncher/WebKitNightlyEnabler.m:
-        (poseAsWebKitApp): Simplify CoreFoundation-related hackery by using _CFGetProcessPath instead of walking the mach-o symbol tables.  The smaller timeframe where the
-        CFProcessPath environment variable is set allows this to work correctly on Leopard where the old code failed.
-        (enableWebKitNightlyBehaviour):
-        * WebKitLauncher/main.m:
-        (main): Pass executable path as WebKitAppPath rather than CFProcessPath to prevent it being picked up too early by CoreFoundation.
-        * Drosera/launcher.m:
-        (main): Ditto
-
-2007-01-12  Lars Knoll <lars@trolltech.com>
-
-        Reviewed by Zack
-
-        Get DumpRenderTree to work again for the Qt build.
-
-        Make run-webkit-tests a little less verbose when testing
-        Qt, and add an option to run DumpRenderTree inside valgrind
-        (useful for debugging)
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::~DumpRenderTree):
-        (WebCore::DumpRenderTree::open):
-        (WebCore::DumpRenderTree::dump):
-        (WebCore::DumpRenderTree::maybeDump):
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.h:
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTreeClient.cpp:
-        (WebCore::DumpRenderTreeClient::dispatchDidHandleOnloadEvents):
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTreeClient.h:
-        * DumpRenderTree/DumpRenderTree.qtproj/tests-skipped.txt:
-        * Scripts/run-webkit-tests:
-
-2007-01-12  Zack Rusin  <zack@kde.org>
-
-        Add WEBKIT_FULLBUILD env variable to get the
-        build do a make clean before make to cleanout the
-        stale depenendencies (for buildbot mainly).
-
-        * Scripts/webkitdirs.pm:
-
-2007-01-11  Mitz Pettel  <mitz@webkit.org>
-
-        Reviewed by Hyatt.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=10249
-          Temporarily disable tests that are causing kernel panics
-
-        Changed the ImageDiff tool not to use CoreImage filters.
-
-        * DumpRenderTree/ImageDiff.m:
-        (main):
-        (createImageFromStdin):
-        (compareImages):
-        (getDifferenceBitmap):
-
-2007-01-11  Lars Knoll <lars@trolltech.com>
-
-        Fix compilation
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.pro:
-
-2007-01-11  Lars Knoll <lars@trolltech.com>
-
-        Reviewed by Darin Adler.
-
-        Adjust to loader changes.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-
-2007-01-06  George Staikos  <staikos@kde.org>
-
-        This doesn't build on all unix platforms!
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.pro:
-
-2007-01-05  Zack Rusin  <zack@kde.org>
-
-        Reviewed by Simon.
-
-        Fix the undefined warnings and try to detect
-        the DISPLAY properly.
-
-        * Scripts/run-webkit-tests:
-
-2007-01-05  David Kilzer  <ddkilzer@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        Speed up svn-create-patch for copied and moved files.
-
-        * Scripts/svn-create-patch:
-        (manufacturePatchForAdditionWithHistory($$)): Use 'svn cat' instead of 'svn cat -rNNNNN'
-        so svn pulls original from local disk.
-
-2007-01-04  Lars Knoll <lars@trolltech.com>
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.pro:
-              Link with RPATH to (hopefully) get the automatic tests working.
-
-2007-01-03  Mark Rowe  <bdash@webkit.org>
-
-        Reviewed by Anders.
-
-        * Scripts/run-webkit-tests: Launch Safari using the same WebKit build configuration as the layout tests used.
-
-2007-01-02  Zack Rusin  <zack@kde.org>
-
-        Make it work after javascriptcore/bindings changes.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::initJSObjects):
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.pro:
-
-2007-01-01  David Kilzer  <ddkilzer@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        http://bugs.webkit.org/show_bug.cgi?id=12023
-        svn-create-patch and friends should handle moved/copied files
-
-        * Scripts/svn-apply: Identify copied files and handle those before all other patches.
-        * Scripts/svn-create-patch: Generate patches with subtle changes for copied files.
-        (findMimeType($)): Added.
-        (findModificationTime($)): Added.
-        (findSourceFileAndRevision($)): Added.
-        (generateDiff($$$)): Changed to use svn stat instead of svn diff.
-        (isBinaryMimeType($)): Added.
-        (manufacturePatchForAdditionWithHistory($$)): Added.
-        * Scripts/svn-unapply: Identify copied files and handle those after unapplying all other patches.
-
-2006-12-29  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by olliej.
-
-        Stop DumpRenderTree from reporting false Frame/Node leaks due to new SVGImage
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (dumpRenderTree): clear WebCore cache before exiting
-
-2006-12-29  David Kilzer  <ddkilzer@webkit.org>
-
-        Reverted last commit until WebResourceData issue is fixed.
-
-        http://bugs.webkit.org/show_bug.cgi?id=11882
-        Need a way to regression test .webarchive output files
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (serializeWebArchiveToXML): Removed.
-        (dump):
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (-[LayoutTestController dumpAsWebArchive]): Removed.
-        (runTest):
-
-2006-12-28  David Kilzer  <ddkilzer@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        http://bugs.webkit.org/show_bug.cgi?id=11882
-        Need a way to regression test .webarchive output files
-
-        Implement layoutTestController.dumpAsWebArchive() to test WebArchive format.
-        Saves WebArchive plist in xml format, then alters file:// URLs to remove path
-        where WebKit was checked out.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (serializeWebArchiveToXML): Added.
-        (dump):
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (-[LayoutTestController dumpAsWebArchive]): Added.
-        (runTest):
-
-2006-12-28  George Staikos  <staikos@kde.org>
-
-        Reviewed by Olliej.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.pro: don't build on non-X11
-
-2006-12-27  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Eric Seidel. Prose edited by Mitz Pettel.
-
-        Some cleanup I did while debugging the regression in plugins/netscape-dom-access.html.
-
-        No behavior change. Layout tests pass.
-
-        * DumpRenderTree/DumpRenderTree.h: Exported the done BOOL in place of the
-        doneLoading() accessor function. This matches the rest of DRT's exports and
-        makes it easier to search for clients who check (!done).
-
-        * DumpRenderTree/DumpRenderTree.m: Moved fflush() call to runTest() so
-        it would cover both code paths for calling runTest().
-
-        (dumpRenderTree): "doneLoading()" => "done"
-        (dump): ditto
-        * DumpRenderTree/EditingDelegate.m: ditto
-        (-[EditingDelegate webView:shouldBeginEditingInDOMRange:]): ditto
-        (-[EditingDelegate webView:shouldEndEditingInDOMRange:]): ditto
-        (-[EditingDelegate webView:shouldInsertNode:replacingDOMRange:givenAction:]): ditto
-        (-[EditingDelegate webView:shouldInsertText:replacingDOMRange:givenAction:]): ditto
-        (-[EditingDelegate webView:shouldDeleteDOMRange:]): ditto
-        (-[EditingDelegate webView:shouldChangeSelectedDOMRange:toDOMRange:affinity:stillSelecting:]): ditto
-        (-[EditingDelegate webView:shouldApplyStyle:toElementsInDOMRange:]): ditto
-        (-[EditingDelegate webView:shouldChangeTypingStyle:toStyle:]): ditto
-        (-[EditingDelegate webViewDidBeginEditing:]): ditto
-        (-[EditingDelegate webViewDidChange:]): ditto
-        (-[EditingDelegate webViewDidEndEditing:]): ditto
-        (-[EditingDelegate webViewDidChangeTypingStyle:]): ditto
-        (-[EditingDelegate webViewDidChangeSelection:]): ditto
-        * DumpRenderTree/UIDelegate.m: ditto
-        (-[UIDelegate webView:runJavaScriptAlertPanelWithMessage:]): ditto
-
-2006-12-26  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by bradee-oh.
-
-        Add very simple run-pageloadtest script for running SVG page load test.
-
-        * Scripts/run-pageloadtest: Added.
-
-2006-12-26  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Eric Seidel.
-
-        Some cleanup in preparation for fixing <rdar://problem/4740328> Safari
-        crash on quit in _NPN_ReleaseObject from KJS::Bindings::CInstance::~CInstance
-
-        (dumpRenderTree): Renamed "installedPlugins" to "sharedDatabase."
-
-2006-12-23  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Maciej Stachowiak.
-
-        Added --threaded support to run-webkit-tests and DumpRenderTree.
-
-        In "threaded" mode, DRT runs a concurrent JavaScript thread with each test,
-        stressing the thread safety of JavaScriptCore and the JavaScriptCore/WebCore
-        interface. This is useful for tracking down bugs you might see on a system
-        configured to use a PAC file.
-
-        Ironically, I can proudly state that very few layout tests pass.
-
-        * DumpRenderTree/DumpRenderTree.m: Added javaScriptThread and helper functions
-        for starting and stopping it.
-        (runJavaScriptThread): helper function
-        (startJavaScriptThread): helper function
-        (stopJavaScriptThread): helper function
-
-        (dumpRenderTree): Added --threaded command line argument.
-        * Scripts/run-webkit-tests: ditto
-
-2006-12-22  Mark Rowe  <bdash@webkit.org>
-
-        Reviewed by Brady.
-
-        Fix for <rdar://problem/4265976>
-        prepare-ChangeLog sometimes lists the wrong Objective-C class name for a changed method
-
-        * Scripts/prepare-ChangeLog: Treat @end as the end of both the interface and the method declaration.
-
-2006-12-21  Mark Rowe  <bdash@webkit.org>
-
-        Reviewed by Tim Hatcher.
-
-        http://bugs.webkit.org/show_bug.cgi?id=11922
-        Bug 11922: REGRESSION(r17128): Drosera no longer shows local variables in stack frame
-
-        * Drosera/DebuggerDocument.m:
-        (-[WebScriptObject webScriptAttributeKeysForScriptObject:]): Use an anonymous function with function.call to
-        ensure that the properties are being retrieved from the correct scope object.
-
-2006-12-21  Lars Knoll <lars@trolltech.com>
-
-        Reviewed by Zack
-
-        Add support for the layoutTestController JavaScript object
-        to be able to get textOnly dumps.
-        Added a Qt specific hack to always get the same fonts (the ones
-        added in this submit) and the same dpi when running the layout tests.
-        Modified the run-webkit-tests script to also do a comparison to the
-        Mac generated outputs (by stripping out positioning information).
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::open):
-        (WebCore::DumpRenderTree::resetJSObjects):
-        (WebCore::DumpRenderTree::initJSObjects):
-        (WebCore::DumpRenderTree::dump):
-        (WebCore::DumpRenderTree::checkLoaded):
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.h:
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.pro:
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTreeClient.cpp:
-        (WebCore::DumpRenderTreeClient::DumpRenderTreeClient):
-        (WebCore::DumpRenderTreeClient::partClearedInBegin):
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTreeClient.h:
-        * DumpRenderTree/DumpRenderTree.qtproj/fontoverload.cpp: Added.
-        (QX11Info::appDpiY):
-        (QX11Info::appDpiX):
-        (qt_x11ft_convert_pattern):
-        (LayoutTestController::LayoutTestController):
-        * DumpRenderTree/DumpRenderTree.qtproj/jsobjects.h: Added.
-        * DumpRenderTree/DumpRenderTree.qtproj/jsobjects.cpp: Added.
-        (LayoutTestController::shouldDumpAsText):
-        (LayoutTestController::shouldWaitUntilDone):
-        (LayoutTestController::reset):
-        (LayoutTestController::dumpAsText):
-        (LayoutTestController::waitUntilDone):
-        (LayoutTestController::notifyDone):
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/AHEM____.TTF: Added.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/COPYING: Added.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/CourierBold.ttf: Added.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/CourierBoldOblique.ttf: Added.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/CourierMedium.ttf: Added.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/CourierMediumOblique.ttf: Added.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/HelveticaBold.ttf: Added.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/HelveticaBoldOblique.ttf: Added.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/HelveticaMedium.ttf: Added.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/HelveticaMediumOblique.ttf: Added.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/SymbolMedium.ttf: Added.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/TimesBold.ttf: Added.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/TimesBoldItalic.ttf: Added.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/TimesMedium.ttf: Added.
-        * DumpRenderTree/DumpRenderTree.qtproj/fonts/TimesMediumItalic.ttf: Added.
-        * Scripts/run-webkit-tests:
-
-2006-12-21  Mark Rowe  <bdash@webkit.org>
-
-        Reviewed by Geoff.
-
-        http://bugs.webkit.org/show_bug.cgi?id=11888
-        Bug 11888: REGRESSION (r18320): Web Inspector panes broken
-
-        * Drosera/debugger.js: Use removeProperty to reset a style property to its initial value.
-
-2006-12-18  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Beth Dakin.
-
-        Updated EventSender to be able to send mouse up events outside the WebView.
-        This is a minor tweak to a hackish implementation. The real solution
-        should be to use NSApplication's event sending model instead of rolling
-        our own, but I don't have time for that right now.
-
-        * DumpRenderTree/EventSendingController.m:
-        (-[EventSendingController mouseUp]):
-
-2006-12-15  Marvin Decker  <marv.decker@gmail.com>
-
-        Reviewed by Darin and Alexey.
-
-        Fix the Windows build, move various Client implementations out of
-        WebCore and into WebKit.
-
-        * Spinneret/Spinneret.sln:
-
-2006-12-14  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Brady.
-
-        * Makefile.shared: use $PIPESTATUS[0] and a sub-shell to exit with xcodebuild's exit status
-
-2006-12-13  Zack Rusin  <zack@kde.org>
-
-        Reviewed by rwlbuis
-
-        Use the qmake build by default with Qt - it's the one that works
-        currently.
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-
-2006-12-10  Lars Knoll <lars@trolltech.com>
-
-        Reviewed by Zack
-
-        Some more fixes to the dumprendertree application.
-        Fix the run-webkit-tests script for Qt.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::open):
-        (WebCore::DumpRenderTree::readStdin):
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.h:
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.pro: Added.
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2006-12-10  Rob Buis  <buis@kde.org>
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (dump):
-
-2006-12-10  Lars Knoll <lars@trolltech.com>
-
-        Reviewed by Zack
-
-        Get the DumpRenderTree app to compile again
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::open):
-        (WebCore::DumpRenderTree::readStdin):
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.pro: Added.
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTreeClient.cpp:
-        (WebCore::DumpRenderTreeClient::DumpRenderTreeClient):
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTreeClient.h:
-        * DumpRenderTree/DumpRenderTree.qtproj/main.cpp:
-        (main):
-
-2006-12-09  George Staikos  <staikos@kde.org>
-
-        Reviewed by Zack.
-
-        Repair QMake build on OS X.
-
-        * Scripts/build-webkit:
-
-2006-12-09  Zack Rusin  <zack@kde.org>
-
-        Fixing small mistakes in the build scripts for
-        the qmake builds.
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-
-2006-12-09  Simon Hausmann  <hausmann@kde.org>
-
-        Reviewed by hyatt.
-
-        Add support for a QMake build using build-webkit --qmake
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-
-2006-12-09  George Staikos  <staikos@kde.org>
-
-        Reviewed by Zack.
-
-        Remove reference to Unity.
-
-        * Scripts/webkitdirs.pm:
-
-2006-12-08  Zack Rusin  <zack@kde.org>
-
-        Reviewed by Maciej.
-
-        Fix the compile after recent API changes.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        * DumpRenderTree/DumpRenderTree.qtproj/main.cpp:
-        (main):
-
-2006-12-08  George Staikos  <staikos@kde.org>
-
-        Reviewed by Maciej.
-
-        Build Qt webkit on non-linux, and prefer it if $QTDIR is set
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-
-2006-12-06  Steve Falkenburg  <sfalken@apple.com>
-
-        Support C strings for localization
-
-        * Scripts/extract-localizable-strings:
-
-2006-12-04  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Make extract-localizable-strings compatible with cpp file extensions.
-
-        * Scripts/extract-localizable-strings:
-
-2006-11-21  Darin Adler  <darin@apple.com>
-
-        Reviewed by Maciej.
-
-        - a couple changes to reduce the chance of false positives on the leakbot
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (dumpRenderTree): Move the main function into a separate function so we can run
-        a final garbage collect afterward without any stray values on the stack. Replaced
-        the old way of closing down a WebView (setting the delegates to nil) with the new
-        way (calling the close method), which does a more complete job of shutting
-        everything down without waiting for the WebView object to be deallocated.
-        (main): Put auto-release pool here and added an explicit call to garbage collect.
-        With a separate function, we greatly reduce the chance that a stray address on the
-        stack will keep an object alive.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Let Xcode do its thing,
-        because I don't have what it takes to fight the power.
-
-2006-11-17  Zack Rusin  <zack@kde.org>
-
-        Reviewed by Mitz. Landed by Niko.
-
-        Fixing compilation.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree): Adding
-        ContextMenuClient to the constructor
-
-2006-11-12  Mark Rowe  <bdash@webkit.org>
-
-        Reviewed by Mitz.
-
-        Clean up of GdkLauncher bakefile.
-
-        * GdkLauncher/gdklauncher.bkl:
-
-2006-11-11  Nikolas Zimmermann  <zimmermann@kde.org>
-
-        Reviewed and landed by Anders.
-
-        Make DRT work again on Qt/Linux.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-
-2006-11-10  Zack Rusin  <zack@kde.org>
-
-        Reviewed and landed by Anders.
-
-        Adjusting to the recent loader changes, making it compile
-        and work.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::checkLoaded):
-        * DumpRenderTree/DumpRenderTree.qtproj/main.cpp:
-
-2006-11-10  Zack Rusin  <zack@kde.org>
-
-        Reviewed by Anders.
-
-        Making the Qt code work after refactorings in WebCore.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::checkLoaded):
-        * DumpRenderTree/DumpRenderTree.qtproj/main.cpp:
-
-2006-11-08  Darin Adler  <darin@apple.com>
-
-        Reviewed by Anders.
-
-        - same change as below, only tested this time
-
-        * DumpRenderTree/DumpRenderTree.m: (main): Explicitly turn "tab to links"
-        mode off. I think we need to do this because WebPreferences saves things
-        for us automatically. It would be good to turn that off for DumpRenderTree,
-        but for now lets handle this like the other preferences (set it explicitly
-        each time).
-
-2006-11-08  Darin Adler  <darin@apple.com>
-
-        Reviewed by Anders.
-
-        * DumpRenderTree/DumpRenderTree.m: (main): Get rid of code to turn on
-        "tab to links" mode. No current tests depend on this, and there's a new
-        test I want to land that depends on the default setting.
-
-2006-11-06  Krzysztof Kowalczyk  <kkowalczyk@gmail.com>
-
-        Reviewed by Maciej.
-
-        Linux\gdk build fixes.
-
-        * GdkLauncher/main.cpp:
-        (LauncherFrameGdk::LauncherFrameGdk):
-        (main):
-
-2006-11-06  Alexey Proskuryakov  <ap@nypop.com>
-
-        Build fix, approved in principle by Tim H.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        Disable deprecated warnings for main.c (TestNetscapePlugin),
-        as it now uses QuickDraw to convert mouse event coordinates.
-
-2006-11-05  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Maciej.
-
-        Bug 11525: [Drosera] function menu doesn't understand object.method = function() {} syntax
-        http://bugs.webkit.org/show_bug.cgi?id=11525
-
-        * Drosera/debugger.js: imporved the function name code
-
-2006-11-06  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reviewed by Maciej.
-
-        Make sure that alerts and delegate output made after notifyDone() are ignored, rather than
-        being attributed to the next test.
-
-        * DumpRenderTree/EditingDelegate.m:
-        (-[EditingDelegate webView:shouldBeginEditingInDOMRange:]):
-        (-[EditingDelegate webView:shouldEndEditingInDOMRange:]):
-        (-[EditingDelegate webView:shouldInsertNode:replacingDOMRange:givenAction:]):
-        (-[EditingDelegate webView:shouldInsertText:replacingDOMRange:givenAction:]):
-        (-[EditingDelegate webView:shouldDeleteDOMRange:]):
-        (-[EditingDelegate webView:shouldChangeSelectedDOMRange:toDOMRange:affinity:stillSelecting:]):
-        (-[EditingDelegate webView:shouldApplyStyle:toElementsInDOMRange:]):
-        (-[EditingDelegate webView:shouldChangeTypingStyle:toStyle:]):
-        (-[EditingDelegate webViewDidBeginEditing:]):
-        (-[EditingDelegate webViewDidChange:]):
-        (-[EditingDelegate webViewDidEndEditing:]):
-        (-[EditingDelegate webViewDidChangeTypingStyle:]):
-        (-[EditingDelegate webViewDidChangeSelection:]):
-        * DumpRenderTree/UIDelegate.m:
-        (-[UIDelegate webView:runJavaScriptAlertPanelWithMessage:]):
-
-2006-11-06  Mark Rowe  <bdash@webkit.org>
-
-        Reviewed by Alexey.
-
-        Fix "Undefined subroutine &main::WEXITSTATUS" when build-dumprendertree fails.
-
-        * Scripts/run-webkit-tests: import the POSIX module.
-
-2006-11-06  Alexey Proskuryakov  <ap@webkit.org>
-
-        Reviewed by Maciej.
-
-        Test for http://bugs.webkit.org/show_bug.cgi?id=11517
-        REGRESSION: Flash clicks/interactivity not working properly
-
-        Teach TestNetscapePlugin to log events passed to it. To enable, set eventLoggingEnabled to true:
-
-        <embed name="plg" type="application/x-webkit-test-netscape" width=100 height=100></embed>
-        <script>
-            plg.eventLoggingEnabled = true;
-            // use eventSender to simulate events...
-        </script>
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.c:
-        (pluginGetProperty):
-        (pluginSetProperty):
-        (pluginAllocate):
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.h:
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.c:
-        (NPP_HandleEvent):
-
-2006-11-04  David Smith  <catfish.man@gmail.com>
-
-        Reviewed by Tim H.
-
-        Fixes: http://bugs.webkit.org/show_bug.cgi?id=11521
-        Bug 11521: [Drosera] Breakpoint editor UI behaves incorrectly when multiple editors are open
-
-        * Drosera/debugger.js: Use .// instead of // so that it doesn't root the search at the document.
-
-2006-11-04  David Smith  <catfish.man@gmail.com>
-
-        Reviewed by Tim H.
-
-        Fixes: http://bugs.webkit.org/show_bug.cgi?id=11513
-        Bug 11513: [Drosera] Function popup fails to appear when clicking supposedly valid areas.
-
-        * Drosera/debugger.css: Stick a min-width on the menu to keep it from becoming smaller than the control.
-
-2006-11-04  David Smith  <catfish.man@gmail.com>
-
-        Reviewed by Tim H.
-
-        Fixes: http://bugs.webkit.org/show_bug.cgi?id=11512
-        Bug 11512: [Drosera] Scrolling via keyboard breaks after clicking in function popup.
-
-        * Drosera/debugger.js: blur() the function popup when we're done with it.
-
-2006-11-04  Mark Rowe  <bdash@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Fix use of uninitialized value in pattern match.
-
-        * Scripts/webkitdirs.pm:
-
-2006-11-04  Darin Adler  <darin@apple.com>
-
-        Reviewed by Tim Hatcher.
-
-        * Scripts/webkitdirs.pm: Don't try to use the Xcode build setting if it's project-relative.
-
-2006-11-03  David Smith  <catfish.man@gmail.com>
-
-        Reviewed by Tim H.
-
-        Fixes: http://bugs.webkit.org/show_bug.cgi?id=11510
-        Bug 11510: [Drosera] Doubleclicking the attach table should attach to the clicked item.
-
-        * Drosera/DebuggerApplication.m:
-        (-[DebuggerApplication showAttachPanel:]): Set the doubleAction for the table view
-
-2006-11-03  Vladimir Olexa  <vladimir.olexa@gmail.com>
-
-        Reviewed by Tim H.
-
-        Fixes: http://bugs.webkit.org/show_bug.cgi?id=9596
-        Bug 9596: [Drosera] add a function popup to the source pane
-
-        * Drosera/debugger.css: Added styles for function popup
-        * Drosera/debugger.html: Added function popup button and select
-        * Drosera/debugger.js: Added function popup functionality
-
-2006-11-03  Michael Emmel  <mike.emmel@gmail.com>
-
-        Reviewed by Maciej.
-
-        http://bugs.webkit.org/show_bug.cgi?id=9671
-
-        * Scripts/wkstyle:
-        Adds astyle sed script formats according to most of the style guidelines.
-
-2006-11-03  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed by Adele.
-
-        http://bugs.webkit.org/show_bug.cgi?id=7323
-        REGRESSION (10.4.4): ondrag* events don't fire on page in a frame
-
-        When dragging, do not send EventSendingController's events immediately. Dragging
-        is supposed to be modal, so we need to perform it from within the delegate, without
-        returning to JS to make the next mouse movement.
-
-        When the mouse is down, mouse events are now recorded, and executed when mouseUp is sent.
-
-        * DumpRenderTree/EventSendingController.h:
-        * DumpRenderTree/EventSendingController.m:
-        (-[EventSendingController dealloc]):
-        (-[EventSendingController leapForward:]):
-        (-[EventSendingController mouseDown]):
-        (-[EventSendingController mouseUp]):
-        (-[EventSendingController mouseMoveToX:Y:]):
-        (+[EventSendingController saveEvent:]):
-        (+[EventSendingController replaySavedEvents]):
-        * DumpRenderTree/UIDelegate.m:
-        (-[UIDelegate webView:dragImage:at:offset:event:pasteboard:source:slideBack:forView:]):
-
-2006-11-02  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Justin Garcia.
-
-        Made dumping of editing callbacks opt-in, so that editing spew doesn't
-        cloud non-editing tests.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (-[LayoutTestController shouldDumpEditingCallbacks]):
-        (runTest):
-        * DumpRenderTree/EditingDelegate.m:
-        (-[EditingDelegate webView:shouldBeginEditingInDOMRange:]):
-        (-[EditingDelegate webView:shouldEndEditingInDOMRange:]):
-        (-[EditingDelegate webView:shouldInsertNode:replacingDOMRange:givenAction:]):
-        (-[EditingDelegate webView:shouldInsertText:replacingDOMRange:givenAction:]):
-        (-[EditingDelegate webView:shouldDeleteDOMRange:]):
-        (-[EditingDelegate webView:shouldChangeSelectedDOMRange:toDOMRange:affinity:stillSelecting:]):
-        (-[EditingDelegate webView:shouldApplyStyle:toElementsInDOMRange:]):
-        (-[EditingDelegate webView:shouldChangeTypingStyle:toStyle:]):
-        (-[EditingDelegate webViewDidBeginEditing:]):
-        (-[EditingDelegate webViewDidChange:]):
-        (-[EditingDelegate webViewDidEndEditing:]):
-        (-[EditingDelegate webViewDidChangeTypingStyle:]):
-        (-[EditingDelegate webViewDidChangeSelection:]):
-
-2006-11-02  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed by Maciej, landed by Anders.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=7802
-          devenv.com not available in VC++ Express installations
-
-        * Scripts/webkitdirs.pm: Make Windows build work with Visual C++ Express.
-        * Scripts/install-win-extras: Make setx.exe actually run.
-
-2006-11-01  Stephanie Lewis  <slewis@apple.com>
-
-        Reviewed by Kevin.
-
-        Fixed bug where additional arguments got fed to xcode and jsdriver.pl
-        Since testkjs is being built before the tests are run, we don't need
-        to build it with webkit.
-
-        Fixes bugs
-        http://bugs.webkit.org/show_bug.cgi?id=11462
-        http://bugs.webkit.org/show_bug.cgi?id=6168
-
-        * Scripts/build-webkit:
-        * Scripts/run-javascriptcore-tests:
-
-2006-11-01  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Tim Hatcher
-
-        Added accessor to get the source directory for use in client scripts
-
-        * Scripts/webkitdirs.pm:
-
-2006-11-01  Mark Rowe  <bdash@webkit.org>
-
-        Reviewed by Mitz.
-
-        Update references to webkit.opendarwin.org to webkit.org in Spinneret and WebKit.app.
-
-        * Spinneret/Spinneret/Spinneret.cpp:
-        (_tWinMain):
-        * WebKitLauncher/WebKitNightlyEnabler.m:
-        (cleanUpAfterOurselves):
-
-2006-10-31  Mark Rowe  <bdash@webkit.org>
-
-        Reviewed by Stephanie.
-
-        Limit build slaves to a single build to prevent concurrent builds on a single slave from significantly increasing build time.
-
-        * BuildSlaveSupport/build.webkit.org-config/webkit/builders.py: Adjust slave distribution, and make use of a SlaveLock.
-        * BuildSlaveSupport/build.webkit.org-config/webkit/factories.py: Remove unused Qt build factory.
-
-2006-10-31  Darin Adler  <darin@apple.com>
-
-        * DumpRenderTree/DumpRenderTree.m: Instead of allocating a single local
-        pasteboard, allocate any number of local pasteboards.
-        (main): Allocate the dictionary of pasteboards.
-        (+[DumpRenderTreePasteboard _pasteboardWithName:]): Allocate a pasteboard,
-        given a name.
-        (+[LocalPasteboard alloc]): Added, so we don't have to call NSAllocateObject
-        explicitly elsewhere.
-        (-[LocalPasteboard addTypes:owner:]): Added a check that the owner responds
-        to the selector rather than calling unconditionally.
-
-2006-10-30  Darin Adler  <darin@apple.com>
-
-        - fixed build
-
-        * DumpRenderTree/DumpRenderTree.m: (-[LocalPasteboard setString:forType:]):
-        Don't use CFPasteboard.
-
-2006-10-30  Vladimir Olexa  <vladimir.olexa@gmail.com>
-
-        Reviewed by Tim H.
-
-        Fixes: http://bugs.webkit.org/show_bug.cgi?id=11353
-
-        * Drosera/debugger.js: ParsedURL() object now recognizes local files
-
-2006-10-30  Darin Adler  <darin@apple.com>
-
-        Reviewed by Tim Hatcher.
-
-        * DumpRenderTree/DumpRenderTree.m: Changed to allocate a local pasteboard.
-        This should make our buildbot tests no longer need a pasteboard server.
-
-2006-10-30  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Beth.
-
-        Reorganized project file into Delegates and Controllers groups, and split
-        UIDelegate stuff into a UIDelegate class.
-
-        A little birdy told me that I might end up adding some UIDelegate methods
-        to DRT soon.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main):
-        (runTest):
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-
-2006-10-31  Nikolas Zimmermann  <zimmermann@kde.org>
-
-        Reviewed by Oliver.
-
-        Add new platform/graphics include directory.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/CMakeLists.txt:
-
-2006-10-30  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Stephanie.
-
-        Add a special case for the Internal makefiles, so it can find the OepnSource.
-
-        * Scripts/webkitdirs.pm:
-
-2006-10-30  Stephanie Lewis  <slewis@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Change Makefiles to return non-zero when module make fails.
-        Fix bug where if xcode options are not set, modules can build in the
-        wrong directory.
-
-        * Makefile:
-        * Scripts/webkitdirs.pm:
-
-2006-10-30  Matt Lilek  <pewtermoose@gmail.com>
-
-        Reviewed by Tim H.
-
-        Fix for http://bugs.webkit.org/show_bug.cgi?id=10468
-        [Drosera] The Console toolbar button should bring the console window to the front.
-
-        The console now gets focus when its activated but already open.  Command + L also
-        now activates/focuses the console.
-
-        * Drosera/English.lproj/MainMenu.nib/classes.nib:
-        * Drosera/English.lproj/MainMenu.nib/info.nib:
-        * Drosera/English.lproj/MainMenu.nib/keyedobjects.nib:
-        * Drosera/debugger.js:
-
-2006-10-29  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-file-rename: Renames done, ready for the next round.
-        * Scripts/do-webcore-rename: Ditto.
-
-2006-10-29  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-file-rename: And again.
-
-2006-10-29  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Tweaked plans for renaming again.
-
-2006-10-29  Darin Adler  <darin@apple.com>
-
-        Reviewed by Mitz.
-
-        * DumpRenderTree/DumpRenderTree.m: (-[DumpRenderTreeWindow keyDown:]):
-        Added. Does nothing, which prevents a beep.
-
-        * Scripts/do-webcore-rename: Tweaked plans for renaming a bit.
-
-2006-10-27  Brady Eidson  <beidson@apple.com>
-
-        Rubber stamped by Tim Hatcher
-
-        Added "make universal" to build universal binaries
-
-        * Makefile:
-        * Makefile.shared:
-
-2006-10-26  Sam Weinig  <sam.weinig@gmail.com>
-
-        Reviewed by Geoff.
-
-        Fix for http://bugs.webkit.org/show_bug.cgi?id=11419
-        REGRESSION (r17299): Assertion failure in -[WebHTMLView(WebPrivate) _topHTMLView]
-        ([view isKindOfClass:[WebHTMLView class]]) when running the layout tests
-
-        * DumpRenderTree/EventSendingController.m:
-        (-[EventSendingController mouseMoveToX:Y:]):
-
-2006-10-26  Nikolas Zimmermann  <zimmermann@kde.org>
-
-        Reviewed by Darin Adler.
-
-        Fix Qt/Linux build.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::open):
-
-2006-10-24  Stephanie Lewis  <slewis@apple.com>
-
-        Reviewed by Maciej.
-
-        - Changed run-javascriptcore tests to build testkjs before running.
-
-        * Scripts/run-javascriptcore-tests:
-
-2006-10-24  Nikolas Zimmermann  <zimmermann@kde.org>
-
-        Reviewed by Maciej.
-
-        Fix Qt/Linux build.
-
-        - Remove BrowserExtensionQt, move it's methods to Page/FrameQt.
-        - Fix CMakeLists.txt to include platform/network.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/CMakeLists.txt:
-
-2006-10-24  David Smith  <catfish.man@gmail.com>
-
-        Reviewed by Tim H.
-
-        Bug 11382: [Drosera] Dragging breakpoints onto each other can mess up inline editor
-        http://bugs.webkit.org/show_bug.cgi?id=11382
-
-        * Drosera/debugger.js: Breakpoint dragging now ensures that editors aren't orphaned.
-
-2006-10-21  Darin Adler  <darin@apple.com>
-
-        * Scripts/commit-log-editor: Use baseProductDir() to find the base product directory.
-        This was still using "symroots" so it almost never worked!
-
-2006-10-21  Darin Adler  <darin@apple.com>
-
-        * Makefile: Build DumpRenderTree too.
-        * Scripts/do-webcore-rename: Removed bogus comment.
-
-2006-10-20  David Smith  <catfish.man@gmail.com>
-
-        Reviewed by Tim H.
-
-        Bug 11367: Inline Breakpoint Editor Improvements: Act III
-        http://bugs.webkit.org/show_bug.cgi?id=11367
-
-        Major breakpoint editor changes:
-        * Breakpoints can now either pause or log to console
-        * Code cleanup through use of XPath and converting breakpoints to objects
-        * Breakpoints now track how many times they've been reached
-        * UI tweaks
-        * The breakpoint editor now saves changes as they're entered
-        * Because changes are auto-saved now, the save button has been converted to a close button (images from PSMTabBarControl, BSD licensed)
-        * If an expression with no return is entered as a condition, it will be wrapped transparently with a return statement.
-
-        * Drosera/DebuggerDocument.m:
-        (-[WebScriptObject breakpointEditorHTML]): A way of loading this from an external file, as it was getting too complex to include inline.
-        * Drosera/Drosera.xcodeproj/project.pbxproj:
-        * Drosera/Images/close.tif: Added.
-        * Drosera/Images/close_active.tif: Added.
-        * Drosera/Images/close_hover.tif: Added.
-        * Drosera/breakpointEditor.html: Added.
-        * Drosera/console.js: Added a way to append messages from outside the console window.
-        * Drosera/debugger.js:
-        * Drosera/viewer.css:
-        * Drosera/viewer.html:
-
-2006-10-18  David Smith  <catfish.man@gmail.com>
-
-        Reviewed by Tim H.
-
-        Improve the doubleclick behavior of breakpoints, and make breakpoints with no custom condition set appear blank instead of return [-1, 1] depending on enabled state.
-
-        * Drosera/DebuggerDocument.m:
-        (-[WebScriptObject getDoubleClickMillis]): Add an ObjC wrapper for GetDblTime() so that JS can call it
-        * Drosera/Drosera.xcodeproj/project.pbxproj: link Carbon for GetDblTime()
-        * Drosera/debugger.js:
-
-2006-10-18  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Anders.
-
-        Bug 10851: Crash with Drosera
-        http://bugs.webkit.org/show_bug.cgi?id=10851
-
-        This crash results in an assert in debug builds.
-
-        assert(implementsCall());
-
-        The __drosera_introspection propery was not callable. Now we just assign
-        this.__drosera_introspection in the evaluateWebScript call.
-        This change also removes one DO message.
-
-        * Drosera/DebuggerDocument.m:
-        (-[WebScriptObject webScriptAttributeKeysForScriptObject:]):
-
-2006-10-18  Mark Rowe  <bdash@webkit.org>
-
-        Reviewed by Tim H.
-
-        http://bugs.webkit.org/show_bug.cgi?id=11304
-        Bug 11304: Drosera fails to link as universal binary on PowerPC machine
-
-        * Drosera/Drosera.xcodeproj/project.pbxproj: Use -weak_framework to link against JavaScriptCore and WebCore directly
-        when they are not part of the WebKit umbrella framework.
-
-2006-10-18  Adam Roben  <aroben@apple.com>
-
-        fixo el buildo II: Release's Pride.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-
-2006-10-18  Geoffrey Garen  <ggaren@apple.com>
-
-        fixo el buildo.
-
-        Work around #import of <PDFKit/PDFView.h>.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-
-2006-10-18  David Smith  <catfish.man@gmail.com>
-
-        Reviewed by Tim H.
-
-        Add Xcode 3 style inline breakpoint editor. Credit to xenon for the CSS wizardry to get the appearance working properly.
-
-        * Drosera/Drosera.xcodeproj/project.pbxproj:
-        * Drosera/Images/breakpointeditor.png: Added.
-        * Drosera/breakpointEditor.css: Removed.
-        * Drosera/breakpointEditor.html: Removed.
-        * Drosera/breakpointEditor.js: Removed.
-        * Drosera/debugger.js:
-        * Drosera/viewer.css:
-
-2006-10-18  David Harrison  <harrison@apple.com>
-
-        Reviewed by Tim H.
-
-        Bug 11341: REGRESSION (r16760): editing/selection/editable-links is failing
-        http://bugs.webkit.org/show_bug.cgi?id=11341
-
-        Link editing behavior became a preference. DumpRenderTree needs to specify the
-        non-default behavior it wants (WebKitEditableLinkOnlyLiveWithShiftKey).
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main):
-
-2006-10-15  Krzysztof Kowalczyk  <kkowalczyk@gmail.com>
-
-        Reviewed by Anders.
-
-        Make compiler not complain about unused gk. SpinneretWebHost was not setting
-        initial refcount upon creation, so it is completely bogus.
-
-        * GdkLauncher/main.cpp:
-        (main):
-        * Spinneret/Spinneret/Spinneret.h:
-        (SpinneretWebHost::SpinneretWebHost):
-
-2006-10-15  Nikolas Zimmermann  <zimmermann@kde.org>
-
-        Reviewed by Oliver.
-
-        Add another hanging test, to the "to be skipped" list.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/tests-skipped.txt:
-
-2006-10-14  Nikolas Zimmermann  <zimmermann@kde.org>
-
-        Reviewed by Anders.
-
-        Some fixes to get the Qt BuildSlave to run the LayoutTests.
-
-        * Scripts/build-dumprendertree: No need to call cmake again.
-        * Scripts/run-webkit-tests: Expose LD_LIBRARY_PATH.
-
-2006-10-13  Nikolas Zimmermann  <zimmermann@kde.org>
-
-        Reviewed by Eric.
-
-        Force --no-http on Qt/Linux.
-
-        * Scripts/run-webkit-tests:
-
-2006-10-13  Kevin McCullough  <KMcCullough@apple.com>
-
-        Reviewed by Adam.
-
-        Gets JavaScripCore tests running on windows.
-
-        * Scripts/run-javascriptcore-tests:
-        * Scripts/webkitdirs.pm:
-
-2006-10-12  Nikolas Zimmermann  <zimmermann@kde.org>
-
-        Reviewed by Maciej.
-
-        Exclude some tests which crash or hang from Qt/Linux DRT.
-        These are known to fail, and will be fixed at some point :-)
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::open):
-        (WebCore::DumpRenderTree::readStdin):
-        (WebCore::DumpRenderTree::readSkipFile):
-        (WebCore::DumpRenderTree::checkLoaded):
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.h:
-        * DumpRenderTree/DumpRenderTree.qtproj/tests-skipped.txt: Added.
-
-2006-10-12  Nikolas Zimmermann  <zimmermann@kde.org>
-
-        Reviewed by Maciej.
-
-        Specialization of alert() for DumpRenderTree - just log the output, don't show any message box.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTreeClient.cpp:
-        (WebCore::DumpRenderTreeClient::runJavaScriptAlert):
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTreeClient.h:
-
-2006-10-12  Krzysztof Kowalczyk  <kkowalczyk@gmail.com>
-
-        Reviewed by Maciej.
-
-        Also regenerate GdkLauncher makefiles, since not doing that might
-        lead to mismatch between WebCore and GdkLauncher compiler settings.
-
-        * Scripts/regenerate-makefiles:
-
-2006-10-10  David Smith  <catfish.man@gmail.com>
-
-        Reviewed by Tim H.
-
-        Bug 11246: Minor Drosera code cleanup
-        http://bugs.webkit.org/show_bug.cgi?id=11246
-
-        * Drosera/debugger.js: Change [has, add, remove]StyleClass to be a function on Element rather than taking an Element as an argument.
-
-2006-10-10  Vladimir Olexa  <vladimir.olexa@gmail.com>
-
-        Reviewed by Tim H.
-
-        Bug 9778: http://bugs.webkit.org/show_bug.cgi?id=9778
-
-        * Drosera/Drosera.xcodeproj/project.pbxproj: Added files
-        * Drosera/English.lproj/Debugger.nib/info.nib: Resized the main window and WebView
-        * Drosera/English.lproj/Debugger.nib/keyedobjects.nib: Resized the main window and WebView
-        * Drosera/Images/SourceArrowOpen.png: Added.
-        * Drosera/Images/fileIcon.jpg: Added.
-        * Drosera/Images/siteCollapsed.tif: Added.
-        * Drosera/Images/siteExpanded.tif: Added.
-        * Drosera/Images/siteIcon.tif: Added.
-        * Drosera/debugger.css: Added File Browser styles
-        * Drosera/debugger.html: Added File Browser UI
-        * Drosera/debugger.js: Added File Browser functionality
-
-2006-10-10  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-file-rename: Added.
-
-2006-10-09  Krzysztof Kowalczyk  <kkowalczyk@gmail.com>
-
-        Reviewed by Geoff.
-
-        Add -exit-after-loading option to make gdklauncher quit after fully loading and rendering
-        a page. This allows automatic testing via e.g. valgrind.
-
-        * GdkLauncher/gdklauncher.bkl:
-        * GdkLauncher/main.cpp:
-        (LauncherFrameGdk::LauncherFrameGdk):
-        (LauncherFrameGdk::setExitAfterLoading):
-        (LauncherFrameGdk::handledOnloadEvents):
-        (handle_event):
-        (main):
-
-2006-10-06  David Smith  <catfish.man@gmail.com>
-
-        Reviewed by Timothy.
-
-        Bug 9665: [Drosera] Conditional breakpoints. http://bugs.webkit.org/show_bug.cgi?id=9665
-
-        * Drosera/Drosera.xcodeproj/project.pbxproj: Added new files
-        * Drosera/breakpointEditor.css: Added.
-        * Drosera/breakpointEditor.html: Added.
-        * Drosera/breakpointEditor.js: Added.
-        * Drosera/debugger.js: Added conditional breakpoint support, and the ability to open the breakpoint editor window on option-clicking a breakpoint.
-
-2006-10-06  Nikolas Zimmermann  <zimmermann@kde.org>
-
-        Reviewed by Tim H.
-
-        Fix Qt/Linux build by adapting the s/ScrollBar/Scrollbar/ changes.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-
-2006-10-05  Oliver Hunt  <ohunt@apple.com>
-
-        Reviewed by Anders.
-
-        * Scripts/run-webkit-tests:
-        Fix pixel tests.
-
-2006-10-04  Anders Carlsson  <acarlsson@apple.com>
-
-        Reviewed by Darin Adler.
-
-        * Scripts/run-webkit-tests:
-        Add an environment variable, WebKitExpectedTestResultsDirectory, which controls where expected test
-        results should be.
-
-2006-10-05  Nikolas Zimmermann  <zimmermann@kde.org>
-
-        Reviewed and landed by ap.
-
-        Cmake: make it possible to install the libraries after having built using 'build-webkit'.
-        Just set the "WebKitInstallationPrefix" environment variable to your desired prefix.
-
-        * Scripts/webkitdirs.pm:
-
-2006-10-04  Mark Rowe  <bdash@webkit.org>
-
-        Reviewed by Stephanie.
-
-        Switch the Qt buildbot to the standard set of build steps.
-        Have JavaScriptCoreTest check the output of run-javascriptcore-tests to
-        see if any regressions were spotted, and fail the test if so.
-
-        * BuildSlaveSupport/build.webkit.org-config/webkit/builders.py:
-        * BuildSlaveSupport/build.webkit.org-config/webkit/factories.py:
-        * BuildSlaveSupport/build.webkit.org-config/webkit/steps.py:
-
-2006-10-04  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Mitz Pettel!
-
-        Bug 10708: [Drosera] Make the console input plaintext-only
-        http://bugs.webkit.org/show_bug.cgi?id=10708
-
-        Change the console input -webkit-user-modify property to
-        read-write-plaintext-only.
-
-        * Drosera/console.css:
-
-2006-10-04  David Smith  <catfish.man@gmail.com>
-
-        Reviewed by Tim H.
-
-        Bug 10473: [Drosera] Overlapping text in JavaScript Console
-        http://bugs.webkit.org/show_bug.cgi?id=10473
-
-        Using min-height instead of height to avoid overlapping text.
-
-        * Drosera/console.css:
-
-2006-10-04  David Smith  <catfish.man@gmail.com>
-
-        Reviewed by Tim H.
-
-        Added a bash-style command history.
-
-        * Drosera/console.js:
-
-2006-10-03  Anders Carlsson  <acarlsson@apple.com>
-
-        Reviewed by Adam and Brady.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main):
-        Update URL to Ahem.ttf
-
-2006-10-03  Darin Adler  <darin@apple.com>
-
-        * Scripts/commit-log-editor: Added missing "close" call. Oops!
-
-2006-10-03  Nikolas Zimmermann  <zimmermann@kde.org>
-
-        Reviewed by eseidel.  Landed by eseidel.
-
-        Offer a way for BuildBot to not colorize the cmake output, when building
-        with the 'build-webkit' script. Add "--color" / "--no-color" option pair.
-
-        Default is colorize output, though only Qt platform handles this for now.
-
-        * Scripts/build-dumprendertree:
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-
-2006-10-03  Nikolas Zimmermann  <zimmermann@kde.org>
-
-        Reviewed by eseidel.  Landed by eseidel.
-
-        Make all important scripts work with Qt/Linux.
-
-        You can safely use this now:
-        set-configuration-release --debug && build-webkit && run-javascriptcore-tests && run-webkit-tests
-
-        * Scripts/build-dumprendertree:
-        * Scripts/run-javascriptcore-tests:
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2006-10-03  Nikolas Zimmermann  <zimmermann@kde.org>
-
-        Reviewed by Eric.
-
-        build-webkit tweak: Use WebKitBuild/$config as output dir (Release/Debug).
-
-        * Scripts/webkitdirs.pm:
-
-2006-10-02  Nikolas Zimmermann  <zimmermann@kde.org>
-
-        Reviewed/landed by Adam.
-
-        Proper build-webkit support for Qt/Linux.
-
-        Compilation process is similar to OSX now, aka.
-        the build directory is RootCheckoutDir/WebKitBuild now.
-
-        * Scripts/build-webkit: Recognize Qt.
-        * Scripts/webkitdirs.pm: Add buildCMakeProject() logic.
-
-2006-10-01  Mark Rowe  <opendarwin.org@bdash.net.nz>
-
-        Reviewed by Maciej.
-
-        Add QT build slave to Buildbot.
-
-        * BuildSlaveSupport/build.webkit.org-config/webkit/builders.py: Add QT build slave, fix existing errors.
-        * BuildSlaveSupport/build.webkit.org-config/webkit/factories.py: Add QT build factory.
-        * BuildSlaveSupport/build.webkit.org-config/webkit/status.py: Disable forcing of builds via web interface to prevent spamming.  Use the IRC bot in #webkit-build instead.
-        * BuildSlaveSupport/build.webkit.org-config/webkit/steps.py: Add CMake build step.
-
-2006-09-28  David Harrison  <harrison@apple.com>
-
-        Suggested by Darin Adler.
-
-        Moved an extern declaration from inside a method to the top of the file.
-
-        * DumpRenderTree/EventSendingController.m:
-        (-[EventSendingController clearKillRing]):
-
-2006-09-28  David Harrison  <harrison@apple.com>
-
-        Reviewed by Justin.
-
-        Add clearKillRing so we can test emacs support with empty kill ring.
-
-        * DumpRenderTree/EventSendingController.m:
-        (+[EventSendingController isSelectorExcludedFromWebScript:]):
-        (+[EventSendingController webScriptNameForSelector:]):
-        (-[EventSendingController clearKillRing]):
-
-2006-09-27  MorganL  <morganl.webkit@yahoo.com>
-
-        Reviewed by Maciej, landed by Brady
-
-        Fix URL bar updating.
-
-        * Spinneret/Spinneret/Spinneret.h:
-        (SpinneretWebHost::didStartProvisionalLoadForFrame):
-        (SpinneretWebHost::didCommitLoadForFrame):
-        (SpinneretWebHost::didFinishLoadForFrame):
-
-2006-09-23  Sam Weinig  <sam.weinig@gmail.com>
-
-        Reviewed by Eric.
-
-        Build Fix.
-
-        * DumpRenderTree/EventSendingController.m:
-        (-[EventSendingController enableDOMUIEventLogging:]):
-
-2006-09-22  Justin Garcia  <justin.garcia@apple.com>
-
-        Reviewed by darin
-
-        * Scripts/do-webcore-rename:
-
-2006-09-21  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Adam.
-
-        Bug 10923: Frame scroll layout test failures on the buildbot
-        http://bugs.webkit.org/show_bug.cgi?id=10923
-
-        Added a new method that will toggle on the recursive dump of
-        child frame scroll positions.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (dumpFrameScrollPosition):
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (-[LayoutTestController dumpChildFrameScrollPositions]):
-
-2006-09-19  Krzysztof Kowalczyk <kkowalczyk@gmail.com>
-
-        Reviewed by eseidel.  Landed by eseidel.
-
-        Detect that close button was pressed and exit cleanly.
-
-        * GdkLauncher/main.cpp:
-        (handle_event):
-        (main):
-
-2006-09-17  Adam Roben  <aroben@apple.com>
-
-        Reviewed by hyatt, sfalken.
-
-        Get DumpRenderTree compiling and limping along on Windows.
-
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.cpp:
-        (loadResourceIntoArray): Added this function that WebCore::ImageWin needs from WebKit
-        (main): Add NULL argument to Page constructor.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.vcproj: Remove incorrect "wininet.dll" argument to CC, fix JavaScriptCore.lib path, add *_SECURE_NO_DEPRECATE #defines
-        * Scripts/webkitdirs.pm: Fix JavaScriptCore.lib path
-
-2006-09-15  Mark Rowe  <opendarwin.org@bdash.net.nz>
-
-        Reviewed by Brady.
-
-        http://bugs.webkit.org/show_bug.cgi?id=10635
-        Bug 10635: Buildbot configuration in SVN is out of sync with build.webkit.org
-
-        * BuildSlaveSupport/build.webkit.org-config/webkit/builders.py: Reorder build slaves within build factories in an attempt to spread the load evenly.
-        * BuildSlaveSupport/build.webkit.org-config/webkit/status.py: Return to sending status emails to <svnuser>@opensource.apple.com addresses.
-        * BuildSlaveSupport/build.webkit.org-config/webkit/steps.py: Update configuration to match changes in Buildbot.  Always do clean SVG builds.
-
-2006-09-09  Sam Weinig  <sam.weinig@gmail.com>
-
-        Reviewed by Eric.
-
-        Patch for http://bugs.webkit.org/show_bug.cgi?id=10791
-        Even More Objective-C DOM auto-generation cleanup
-
-        - Change to use new, more Objectice-C'ish version of
-          DOMKeyboardEvent's initKeyboardEvent.  Fixes an error with
-          regression test for fast/events/dblclick-addEventListener.html.
-
-        * DumpRenderTree/EventSendingController.m:
-        (-[EventSendingController fireKeyboardEventsToElement:]):
-
-2006-09-04  Nikolas Zimmermann  <zimmermann@kde.org>
-
-        Reviewed by Tim H.
-
-        Fixes last part of: http://bugs.webkit.org/show_bug.cgi?id=10644
-        Move QtLauncher down to WebKitQt.
-
-        * QtLauncher/CMakeLists.txt: Removed.
-        * QtLauncher/main.cpp: Removed.
-
-2006-09-04  Nikolas Zimmermann  <zimmermann@kde.org>
-
-        Reviewed by Darin Adler.
-
-        Fixes parts of: http://bugs.webkit.org/show_bug.cgi?id=10644
-        Adjust DumpRenderTree to the FrameQtClient changes.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/CMakeLists.txt:
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::~DumpRenderTree):
-        (WebCore::DumpRenderTree::frame):
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.h:
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTreeClient.cpp: Added.
-        (WebCore::DumpRenderTreeClient::DumpRenderTreeClient):
-        (WebCore::DumpRenderTreeClient::~DumpRenderTreeClient):
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTreeClient.h: Added.
-
-2006-09-03  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: More renaming plans.
-
-2006-09-03  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed by Tim H.
-
-        http://bugs.webkit.org/show_bug.cgi?id=10693
-        Convert JavaScript arrays to AppleScript lists
-
-        * DumpRenderTree/AppleScriptController.m:
-        (convertAEDescToObject):
-        (-[AppleScriptController doJavaScript:]): Support printing AEDescLists.
-
-2006-08-31  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Prepare for another round of renaming.
-
-2006-08-29  Dan Waylonis  <waylonis@google.com>
-
-        Reviewed by ggaren.
-
-        - Verification of exceptions thrown in a plugin.  Test for bug 10114.
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/ObjCPlugin.m:
-        (+[ObjCPlugin isSelectorExcludedFromWebScript:]):
-        (+[ObjCPlugin webScriptNameForSelector:]):
-        (-[ObjCPlugin throwIfArgumentIsNotHello:]):
-
-2006-08-30  Nikolas Zimmermann  <zimmermann@kde.org>
-
-        Reviewed by Tim H.
-
-        Commit KDE related tweaks, to be able to
-        differentiate between a Qt-only or a KDE build.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/CMakeLists.txt: Add ksvg2/ includes.
-        * QtLauncher/CMakeLists.txt: Add ksvg2/ includes.
-
-2006-08-29  Darin Adler  <darin@apple.com>
-
-        Reviewed by Tim Hatcher.
-
-        * Scripts/gdb-safari: Set DYLD_FRAMEWORK_PATH inside gdb instead of setting it in gdb's environment
-        to work around what seems to be a bug in some versions of gdb.
-
-2006-08-16  Tim Omernick  <timo@apple.com>
-
-        Reviewed by John Sullivan.
-
-        Part of <rdar://problem/4481553> NetscapeMoviePlugIn example code scripting doesn't work in Firefox (4319)
-        <http://bugs.webkit.org/show_bug.cgi?id=4319>: NetscapeMoviePlugIn example code scripting doesn't work
-        in Firefox
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.c:
-        (NPP_GetValue):
-        WebKit's NPP_GetValue() reference counting behavior has been changed to match Firefox.  NPObject return values
-        are expected to be retained by the plug-in, and released by the caller.
-
-2006-08-28  Nikolas Zimmermann  <zimmermann@kde.org>
-
-        Reviewed by Tim Hatcher.
-
-        Fixes one chunk of: http://bugs.webkit.org/show_bug.cgi?id=10604
-
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::checkLoaded): Faster polling for isLoaded() in
-        Qt's DumpRenderTree.
-
-      * Scripts/run-webkit-tests:
-        Use -expected-qt.txt etc.. output in run-webkit-test if isQt().
-
-2006-08-28  Darin Adler  <darin@apple.com>
-
-        Reviewed by Tim Hatcher.
-
-        * Scripts/build-drosera: Fix behavior when there are multiple options.
-
-2006-08-27  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Anders.
-
-        Drosera will be built when you type make.
-
-        * Drosera/Makefile: Added.
-        * Makefile: Added.
-        * Makefile.shared: Added.
-
-2006-08-27  Anders Carlsson  <acarlsson@apple.com>
-
-        Forgot to add these.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/CMakeLists.txt: Added.
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp: Added.
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::~DumpRenderTree):
-        (WebCore::DumpRenderTree::open):
-        (WebCore::DumpRenderTree::readStdin):
-        (WebCore::DumpRenderTree::checkLoaded):
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.h: Added.
-        * DumpRenderTree/DumpRenderTree.qtproj/main.cpp: Added.
-        (main):
-
-2006-08-27  Nikolas Zimmermann  <zimmermann@kde.org>
-
-        Reviewed by Eric, landed by Anders.
-
-        Add DumpRenderTree support for Qt/Linux.
-
-        * DumpRenderTree/DumpRenderTree.qtproj/CMakeLists.txt: Added.
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.cpp: Added.
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::~DumpRenderTree):
-        (WebCore::DumpRenderTree::open):
-        (WebCore::DumpRenderTree::readStdin):
-        (WebCore::DumpRenderTree::checkLoaded):
-        * DumpRenderTree/DumpRenderTree.qtproj/DumpRenderTree.h: Added.
-        * DumpRenderTree/DumpRenderTree.qtproj/main.cpp: Added.
-        (main):
-        * Scripts/build-dumprendertree:
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2006-08-24  Nikolas Zimmermann  <zimmermann@kde.org>
-
-        Reviewed by Eric. Landed by rwlbuis.
-
-        Add QtLauncher (was testunity before), which provides a
-        standalone "browser" to test the Qt platform stuff.
-
-        * QtLauncher/CMakeLists.txt: Added.
-        * QtLauncher/main.cpp: Added.
-        (main):
-
-2006-08-22  Trey Matteson  <trey@usa.net>
-
-        Reviewed by ggaren.
-
-        Added support for a new set of browser navigation tests.  The main feature
-        is the ability for a test to queue up a set of future actions that will
-        happen after that first page is loaded.  This is used to simulate a sequence
-        of user actions such as filling out forms, loading additional pages or
-        going back.  In addition we can now dump out the state of the back/forward
-        list, and the scroll position is dumped if not at 0,0.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main):  Init new state
-        (compareHistoryItems):  New utility to support sorting.
-        (dumpHistoryItem):  Write out a WebHistoryItem and kids.
-        (dumpFrameScrollPosition):  Write out the scroll position.
-        (dump):  Optionally write b/f list or scroll position.
-        (-[WaitUntilDoneDelegate processWork:]):  Perform queued work.
-        (-[WaitUntilDoneDelegate webView:locationChangeDone:forDataSource:]):
-        Kick off any queued actions.  Fixed for the case of loads started in
-        a subframe instead of the root frame.
-        (-[WaitUntilDoneDelegate webView:didStartProvisionalLoadForFrame:]):
-        Grab the topmost frame that is being loaded.  Do this as early as possible,
-        instead of in didCommitLoadForFrame.
-        (-[WaitUntilDoneDelegate webView:didCommitLoadForFrame:]):
-        Noting a load has started now happens in previous method.
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):  Boilerplate
-        (+[LayoutTestController webScriptNameForSelector:]):  Boilerplate
-        (-[LayoutTestController notifyDone]):  readyToDump var is subsumed by
-        topFrameLoading
-        (-[LayoutTestController dumpBackForwardList]):  New impl, just set a bit.
-        (-[LayoutTestController _addWorkForTarget:selector:arg1:arg2:]):
-        Add new work to the queue.
-        (-[LayoutTestController _doLoad:target:]):  Do a queued load.
-        (-[LayoutTestController _doBackOrForwardNav:]):  Do a queued back/forward.
-        (-[LayoutTestController scheduleBackNav:]):  Ways for scripts to queue actions
-        (-[LayoutTestController scheduleForwardNav:]):
-        (-[LayoutTestController scheduleReload]):
-        (-[LayoutTestController scheduleScript:]):
-        (-[LayoutTestController scheduleLoad:target:]):
-        (runTest):  Clear new state for each test.  Renamed from "dumpRenderTree"
-        since it's not one of the functions that does any dumping.
-
-2006-08-15  Jonas Witt <jonas.witt@gmail.com>
-
-        Reviewed by Darin Adler.
-
-        - added a function to create a few DOMKeyboardEvents and dispatch
-          them to a specified HTML element
-          http://bugs.webkit.org/show_bug.cgi?id=9736
-
-        * DumpRenderTree/EventSendingController.m:
-        (+[EventSendingController isSelectorExcludedFromWebScript:]):
-        (+[EventSendingController webScriptNameForSelector:]):
-        (-[EventSendingController fireKeyboardEventsToElement:]):
-
-2006-08-15  Duncan Wilcox  <duncan@mclink.it>
-
-        Reviewed and tweaked by Darin Adler.
-
-        - added DumpRenderTree support so editing delegate can be made to refuse edits
-          to enable tests for http://bugs.webkit.org/show_bug.cgi?id=10129
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]): Add setAcceptsEditing:
-        to the list of methods.
-        (+[LayoutTestController webScriptNameForSelector:]): Use the name setAcceptsEditing,
-        without the colon, for the JavaScript name.
-        (-[LayoutTestController setAcceptsEditing:]): Added. Calls through to the editing
-        delegate.
-        (dumpRenderTree): Set the acceptsEditing flag to YES before each test.
-
-        * DumpRenderTree/EditingDelegate.h: Added an "acceptsEditing" flag and getter and
-        setter methods to the class.
-        * DumpRenderTree/EditingDelegate.m:
-        (-[EditingDelegate init]): Initialize acceptsEditing to YES.
-        (-[EditingDelegate webView:shouldBeginEditingInDOMRange:]): Instead of always returning YES,
-        return the value of acceptsEditing.
-        (-[EditingDelegate webView:shouldEndEditingInDOMRange:]): Ditto.
-        (-[EditingDelegate webView:shouldInsertNode:replacingDOMRange:givenAction:]): Ditto.
-        (-[EditingDelegate webView:shouldInsertText:replacingDOMRange:givenAction:]): Ditto.
-        (-[EditingDelegate webView:shouldDeleteDOMRange:]): Ditto.
-        (-[EditingDelegate webView:shouldChangeSelectedDOMRange:toDOMRange:affinity:stillSelecting:]):
-        Ditto.
-        (-[EditingDelegate webView:shouldApplyStyle:toElementsInDOMRange:]): Ditto.
-        (-[EditingDelegate webView:shouldChangeTypingStyle:toStyle:]): Ditto.
-        (-[EditingDelegate setAcceptsEditing:]): Added.
-
-2006-08-03  Mark Rowe  <opendarwin.org@bdash.net.nz>
-
-        Reviewed by Darin Adler.
-
-        Bug 10224: [Drosera] Drosera icon should be set on DroseraLauncher so it appears in nightly builds
-        http://bugs.webkit.org/show_bug.cgi?id=10224
-
-        * Drosera/Drosera.xcodeproj/project.pbxproj:
-        * Drosera/LauncherInfo.plist:
-
-2006-08-03  Mitz Pettel  <opendarwin.org@mitzpettel.com>
-
-        - fix ASSERTION FAILURE: draggingDocumentView == nil in -[WebViewPrivate dealloc]
-          when a test performs an unsuccessful drag and drop operation.
-
-        * DumpRenderTree/EventSendingController.m:
-        (-[EventSendingController mouseUp]): Added a call to -draggingExited: if the
-        drag operation for the mouse release is NSDragOperationNone.
-
-2006-08-02  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Bug 9632: [Drosera] syntax highlighting is slow (reproducible 40 second hang)
-        http://bugs.webkit.org/show_bug.cgi?id=9632
-
-        Do not change the file source when normalizing the line endings.
-        We use this file source to compare against new versions of the source
-        as it comes in, so we can skip re-syntax highlighting if they are the same.
-        The problem is apparent on yahoo.com since they have mixed line endings and
-        once we normalize them the source will always be different. This was
-        compounded by the fact that yahoo has around 40 inline scripts. Each
-        inline script causes us to check if the main document has more loaded,
-        that is when we compare the source strings. Since they are always different
-        we would syntax highlight yahoo.com 40 times! We do check source length before
-        doing a more expensive string comparison, but the lengths were the same.
-
-        * Drosera/debugger.js:
-
-2006-08-02  Niels Leenheer  <niels.leenheer@gmail.com>
-
-        Reviewed by Timothy.
-
-        Bug 9931: [Drosera] Needs a cool icon
-        http://bugs.webkit.org/show_bug.cgi?id=9931
-
-        * Drosera/Drosera.icns: Added.
-        * Drosera/Drosera.xcodeproj/project.pbxproj:
-        * Drosera/Info.plist:
-
-2006-08-01  Darin Adler  <darin@apple.com>
-
-        - fix a bug in my recent change where the mouse position at the end of
-          the last test would affect the results of the next test
-
-        * DumpRenderTree/DumpRenderTree.m: (dumpRenderTree): Set lastMousePosition to 0.
-
-2006-07-31  Mark Rowe  <opendarwin.org@bdash.net.nz>
-
-        Reviewed by Maciej.
-
-        http://bugs.webkit.org/show_bug.cgi?id=10182
-        Bug 10182: [Drosera] Evaluating expressions in Console is slow when current frame has many variables
-
-        * Drosera/console.js: String.indexOf returns -1 when the string is not found.
-        Correct the logic to not reload local variable list unless an '=' character is in the expression.
-
-2006-07-31  Darin Adler  <darin@apple.com>
-
-        Reviewed by Maciej.
-
-        - fix http://bugs.webkit.org/show_bug.cgi?id=10171
-          REGRESSION: failing layout test: fast/events/objc-event-api.html
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main): Add pose so we can implement +[NSEvent mouseLocation]. Put the window at a predictable
-        location in flipped coordinates, since those are the coordinates that we use.
-        (+[DumpRenderTreeEvent mouseLocation]): Implement this, since it's used for mouse event handling
-        inside WebHTMLView.
-
-        * DumpRenderTree/EventSendingController.m:
-        (+[EventSendingController initialize]): Removed unused webkitDomEventProperties array.
-        (-[EventSendingController init]): Removed, since the whole thing was a no-op.
-        (-[EventSendingController mouseMoveToX:Y:]): Convert the x,y pair to window coordinates. The old code
-        probably worked OK, but this is needed to be correct.
-        (-[EventSendingController handleEvent:]): Put clientX/Y before screenX/Y and removed the flipping
-        code from screenY. We didn't really need to flip screenY -- what was actually happening was that the
-        position that DumpRenderTree chose was in non-flipped coordinates, and with that fixed we can just
-        dump the screenY as-is.
-
-2006-07-31  Mark Rowe  <opendarwin.org@bdash.net.nz>
-
-        Reviewed by Darin Adler.
-
-        http://bugs.webkit.org/show_bug.cgi?id=10178
-        Bug 10178: [Drosera] Selecting a frame in the stack list should take you to that location in the source
-
-        * Drosera/debugger.js:  Keep a stack that contains the source file and line number references for outer
-        frames.  Use this stack to determine which file and line to highlight when a stack frame is selected.
-
-2006-07-31  Mark Rowe  <opendarwin.org@bdash.net.nz>
-
-        Reviewed by Darin Adler.
-
-        http://bugs.webkit.org/show_bug.cgi?id=10175
-        Bug 10175: [Drosera] Anonymous functions show up as "(global scope)" in stack list
-
-        * Drosera/DebuggerDocument.m:
-        (-[WebScriptObject currentFunctionStack]): If the frame has a caller it isn't the global scope.
-
-2006-07-31  Mark Rowe  <opendarwin.org@bdash.net.nz>
-
-        Reviewed by Darin Adler.
-
-        http://bugs.webkit.org/show_bug.cgi?id=10167
-        Bug 10167: REGRESSION(r15688): ASSERTION FAILED: _private->mouseDownEvent != nil in layout tests
-
-        * DumpRenderTree/EventSendingController.m: Don't set the mouse down flag
-        in keyDown handler.
-
-2006-07-30  Mark Rowe  <opendarwin.org@bdash.net.nz>
-
-        Reviewed by Maciej.
-
-        Bug 9686: [Drosera] Need the ability to break into Drosera on Javascript exceptions
-        http://bugs.webkit.org/show_bug.cgi?id=9686
-
-        * Drosera/DebuggerDocument.m:
-        (-[WebScriptObject switchToServerNamed:]): Remove as listener before resuming to
-        ensure that the server does not try and notify us of events related to the resumption.
-        (-[WebScriptObject webView:exceptionWasRaised:sourceId:line:forWebFrame:]): Delegate
-        call through to JavaScript.
-        * Drosera/debugger.js: Pause debugger when exception is raised.
-
-2006-07-29  Mike Emmel  <mike.emmel@gmail.com>
-
-        Reviewed by Darin Adler.
-
-        - fixes for Linux build
-
-        * GdkLauncher/mk: Added call to bakefile_gen before calling make.
-        * GdkLauncher/gdklauncher.bkl: Tweak comment.
-
-2006-07-24  Dan Waylonis  <waylonis@google.com>
-
-        Reviewed and tweaked a bit by Darin Adler.
-
-        * DumpRenderTree/ObjCPlugin.m:
-        (+[ObjCPlugin isSelectorExcludedFromWebScript:]): Added "echo:".
-        (+[ObjCPlugin webScriptNameForSelector:]): Use the name "echo" for
-        "echo:" so it's nice to call from JavaScript.
-        (-[ObjCPlugin echo:]): Just returns the same object -- can be used
-        to test a round trip through Objective-C types.
-
-2006-07-24  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed by Darin Adler.
-
-        Fix http://bugs.webkit.org/show_bug.cgi?id=10060
-        Improve iExploder results parsing
-
-        * Scripts/run-iexploder-tests: Fix Apach logs parsing to produce a correct results
-        in random mode, too.
-
-2006-07-18  David Kilzer  <ddkilzer@kilzer.net>
-
-        Reviewed by Timothy.
-
-        - fix http://bugs.webkit.org/show_bug.cgi?id=9964
-          Add switch to prepare-ChangeLog to skip svn update of ChangeLog files
-
-        * Scripts/prepare-ChangeLog: Added --[no-]update switch.
-
-2006-07-16  David Kilzer  <ddkilzer@kilzer.net>
-
-        Reviewed by Darin Adler.
-
-        * BuildSlaveSupport/build.webkit.org-config/buildbot.css:
-        Removed "No newline at end of file" that snuck in as part of the "apply patch" process.
-        * GdkLauncher/mk:
-        Removed "Property changes" that snuck in as part of the "apply patch" process.
-
-2006-07-16  David Kilzer  <ddkilzer@kilzer.net>
-
-        Reviewed by Darin Adler.
-
-        - fix http://bugs.webkit.org/show_bug.cgi?id=9875
-          Teach svn-apply and svn-unapply to use patch(1) for additions and deletions
-
-        * Scripts/svn-apply:
-        (addDirectoriesIfNeeded): Don't try to add a directory that's already in svn.
-        (checksum): Added.
-        (patch): Use patch(1) for non-binary additions and deletions.
-        * Scripts/svn-unapply:
-        (checksum): Added.
-        (patch): Use patch(1) for reverting non-binary additions and deletions.
-        (revertDirectories): Don't try to revert a directory that hasn't changed in svn.
-
-2006-07-13  Mark Rowe  <opendarwin.org@bdash.net.nz>
-
-        Reviewed by Timothy.
-
-        Bug 9889: [Drosera] Stepping out when paused after last statement in function skips a frame
-        http://bugs.webkit.org/show_bug.cgi?id=9889
-
-        * Drosera/debugger.js:  Track whether we paused during the execution of willLeaveFrame.  If
-        so, have stepOut pause on the next call to willExecuteStatement rather than second.
-
-2006-07-12  David Kilzer  <ddkilzer@kilzer.net>
-
-        Reviewed by Darin Adler.
-
-        - fix http://bugs.webkit.org/show_bug.cgi?id=9848
-          Teach svn-create-patch and friends to fix ChangeLog patches
-
-        * Scripts/svn-apply: Added fixChangeLogPatch() and invoked it in the proper place.
-        * Scripts/svn-create-patch: Ditto.
-        * Scripts/svn-unapply: Ditto.
-
-2006-07-12  Mark Rowe  <opendarwin.org@bdash.net.nz>
-
-        Reviewed by ggaren.
-
-        Bug 9869: [Drosera] JS Console fails to evaluate input when paused in global scope
-        http://bugs.webkit.org/show_bug.cgi?id=9869
-
-        * Drosera/DebuggerDocument.m:
-        (-[WebScriptObject currentFunctionStack]): Include the global frame in the stack.
-
-2006-07-12  Mark Rowe  <opendarwin.org@bdash.net.nz>
-
-        Reviewed by ggaren.
-
-        Bug 9863: Drosera needs to show something at launch
-        http://bugs.webkit.org/show_bug.cgi?id=9863
-
-        * Drosera/DebuggerApplication.m:
-        (-[DebuggerApplication applicationDidFinishLaunching:]): Show the attach window on launch.
-
-2006-07-12  Mark Rowe  <opendarwin.org@bdash.net.nz>
-
-        Reviewed by Timothy.
-
-        Lets Drosera build universal for the nightlies. Right now it is not
-        possible to build a universal binary on a PPC machine because of a
-        conflict with the universal SDK.
-
-        * BuildSlaveSupport/build-launcher-app:
-        * WebKitLauncher/WebKitLauncher.xcodeproj/project.pbxproj:
-
-2006-07-11  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed by Tim O.
-
-        - test for http://bugs.webkit.org/show_bug.cgi?id=7808
-        Assertion failure in -[WebBaseNetscapePluginStream dealloc] when requesting an invalid URL
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.c:
-        (pluginInvoke): treat getURL() with one parameter as if the second parameter were NULL -
-        should open a new stream and deliver the data to the current instance.
-
-2006-07-11  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Bug 9598: [Drosera] add a JavaScript evaluator console
-        http://bugs.webkit.org/show_bug.cgi?id=9598
-
-        * Drosera/DebuggerApplication.h:
-        * Drosera/DebuggerApplication.m:
-        (-[DebuggerApplication knownServers]):
-        * Drosera/DebuggerDocument.h:
-        * Drosera/DebuggerDocument.m:
-        (-[WebScriptObject evaluateScript:inCallFrame:]):
-        (-[WebScriptObject showConsole:]):
-        (-[WebScriptObject toolbar:itemForItemIdentifier:willBeInsertedIntoToolbar:]):
-        (-[WebScriptObject toolbarDefaultItemIdentifiers:]):
-        (-[WebScriptObject toolbarAllowedItemIdentifiers:]):
-        (-[WebScriptObject webView:createWebViewWithRequest:]):
-        (-[WebScriptObject webViewShow:]):
-        (-[WebScriptObject webViewAreToolbarsVisible:]):
-        (-[WebScriptObject webView:setToolbarsVisible:]):
-        (-[WebScriptObject webView:setResizable:]):
-        (-[WebScriptObject webView:runJavaScriptAlertPanelWithMessage:initiatedByFrame:]):
-        (-[WebScriptObject scriptConfirmSheetDidEnd:returnCode:contextInfo:]):
-        (-[WebScriptObject webView:runJavaScriptConfirmPanelWithMessage:initiatedByFrame:]):
-        (-[WebScriptObject webView:windowScriptObjectAvailable:]):
-        (-[WebScriptObject webView:didFinishLoadForFrame:]):
-        (-[WebScriptObject webView:didReceiveTitle:forFrame:]):
-        * Drosera/Drosera.xcodeproj/project.pbxproj:
-        * Drosera/Images/console.png: Added.
-        * Drosera/console.css: Added.
-        * Drosera/console.html: Added.
-        * Drosera/console.js: Added.
-
-2006-07-11  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by a tired Geoff.
-
-        Bug 9597: [Drosera] hook up the variables table to show stack variables
-        http://bugs.webkit.org/show_bug.cgi?id=9597
-
-        * Drosera/DebuggerDocument.m:
-        (-[WebScriptObject isSelectorExcludedFromWebScript:]):
-        (-[WebScriptObject webScriptAttributeKeysForScriptObject:]):
-        (-[WebScriptObject localScopeVariableNamesForCallFrame:]):
-        (-[WebScriptObject valueForScopeVariableNamed:inCallFrame:]):
-        (-[WebScriptObject webView:didReceiveTitle:forFrame:]):
-        (-[WebScriptObject webView:didLoadMainResourceForDataSource:]):
-        (-[WebScriptObject webView:didParseSource:baseLineNumber:fromURL:sourceId:forWebFrame:]):
-        (-[WebScriptObject webView:didEnterCallFrame:sourceId:line:forWebFrame:]):
-        (-[WebScriptObject webView:willExecuteStatement:sourceId:line:forWebFrame:]):
-        (-[WebScriptObject webView:willLeaveCallFrame:sourceId:line:forWebFrame:]):
-        * Drosera/debugger.css:
-        * Drosera/debugger.html:
-        * Drosera/debugger.js:
-
-2006-07-10  Tim Omernick  <timo@apple.com>
-
-        Reviewed by Beth Dakin.
-
-        <http://bugs.webkit.org/show_bug.cgi?id=9844>:
-        Add DOM access test to DumpRenderTree's Netscape plug-in
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.c:
-        (testDOMAccess):
-        (pluginInvoke):
-
-2006-07-10  Mark Rowe  <opendarwin.org@bdash.net.nz>
-
-        Reviewed by Darin Adler.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=9839
-          Bug 9839: Nightly launcher fails to detect extensions when extension causes crash on load
-
-        Now track three states: initializing, running, and closed.  If we are launched and the previous
-        state was initializing then we likely just experienced a crash on launch.
-
-        * WebKitLauncher/WebKitNightlyEnabler.m:
-        (myApplicationWillFinishLaunching): Improve wording of dialog.  Update to set new running state.
-        (myApplicationWillTerminate): Update to use new states.
-        (cleanUpAfterOurselves): Display alert if previous state was initializing.  Set state as
-        initializing as early as practical.
-        (symbol_lookup): Bring code up to speed with formatting guidelines.
-        (GDSymbolLookup): Ditto.
-
-2006-07-10  Darin Adler  <darin@apple.com>
-
-        - try to fix Windows build
-
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.vcproj:
-        Remove include paths with "khtml" in them. Add one for "html" subdir or WebCore.
-
-2006-07-09  David Kilzer  <ddkilzer@kilzer.net>
-
-        Build fix.
-
-        - Backed out http://bugs.webkit.org/show_bug.cgi?id=7802
-          devenv.com not available in VC++ Express installations
-
-        * Scripts/webkitdirs.pm: Backed out previous change.
-
-2006-07-09  David Kilzer  <ddkilzer@kilzer.net>
-
-        Reviewed by Darin Adler.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=9693
-          svn-apply should set ChangeLog date correctly when applying patches
-
-        * Scripts/svn-apply: Set the ChangeLog entry date using a configurable timezone
-        before applying the patch.
-        * Scripts/svn-unapply: Reset the ChangeLog entry date before unapplying the patch.
-
-2006-07-09  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Final version of this round of renaming for posterity.
-
-2006-07-09  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Next round of renaming. (Last round was done.)
-
-2006-07-09  David Kilzer  <ddkilzer@kilzer.net>
-
-        - http://bugs.webkit.org/show_bug.cgi?id=7802
-          devenv.com not available in VC++ Express installations
-
-        * Scripts/webkitdirs.pm: Restore Hyatt's original logic to make buildbot
-        work again.  Add VC++ Express check as the fallback.
-
-2006-07-09  Bjoern Graf  <bjoern.graf@gmail.com>
-
-        Reviewed by Timothy Hatcher.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=7802
-          devenv.com not available in VC++ Express installations
-
-        * Scripts/webkitdirs.pm: Make Windows build work with Visual C++ Express.
-
-2006-07-09  Joost de Valk  <jdevalk@opendarwin.org>
-
-        Reviewed by Eric.
-
-        Fixes bug http://bugs.webkit.org/show_bug.cgi?id=9804 .
-        Patch by coldwinter@katamail.com.
-
-        In the congratulations message, "capatibilies" should be "capabilities".
-
-        * Scripts/build-webkit:
-
-2006-07-09  David Kilzer  <ddkilzer@kilzer.net>
-
-        Reviewed by Timothy Hatcher.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=9794
-          Teach run-webkit-tests how to ignore tests with performance improvements
-
-        * Scripts/run-webkit-tests: Speed up test list generation, implement --ignore-tests
-        feature, and minor clean up.
-
-2006-07-08  Darin Adler  <darin@apple.com>
-
-        Reviewed by Geoff (well, half of it at least).
-
-        - http://bugs.webkit.org/show_bug.cgi?id=9788
-          storage leaks in Objective-C tests
-
-        * DumpRenderTree/DumpRenderTree.m: (-[LayoutTestController keepWebHistory]):
-        * DumpRenderTree/ObjCPlugin.m: (-[ObjCPlugin removeBridgeRestrictions:]):
-        Add a release to fix a storage leak.
-
-2006-07-08  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: A few more.
-
-2006-07-08  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Another cut at renames. About ready to go (later today).
-
-2006-07-04  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Darin Adler.
-
-        http://bugs.webkit.org/show_bug.cgi?id=9734
-        - add support for dumping non-HTML as text - in this case use textContent
-        instead of innerText
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (dump):
-
-2006-07-02  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Eric.
-
-        Bug 9631: [Drosera] Add "Step Over" and "Step Out"
-        http://bugs.webkit.org/show_bug.cgi?id=9631
-
-        Adds step over and step out. Along with a little code cleanup
-        that was minor enough to piggyback on this fix.
-
-        * Drosera/DebuggerDocument.h:
-        * Drosera/DebuggerDocument.m:
-        (-[DebuggerDocument stepOver:]):
-        (-[DebuggerDocument stepOut:]):
-        (-[DebuggerDocument windowDidLoad]):
-        (-[DebuggerDocument windowWillClose:]):
-        (-[DebuggerDocument toolbar:itemForItemIdentifier:willBeInsertedIntoToolbar:]):
-        (-[DebuggerDocument toolbarDefaultItemIdentifiers:]):
-        (-[DebuggerDocument toolbarAllowedItemIdentifiers:]):
-        (-[DebuggerDocument validateUserInterfaceItem:]):
-        * Drosera/Drosera.xcodeproj/project.pbxproj:
-        * Drosera/debugger.html:
-        * Drosera/debugger.js:
-        * Drosera/viewer.css:
-
-2006-07-02  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Eric.
-
-        Bug 9628: [Drosera] Split Views acting oddly
-        http://bugs.webkit.org/show_bug.cgi?id=9628
-
-        Only update the last X or Y coordinate if the new
-        size was not constrained. Also adds the resize cursor to
-        the body during the drag incase there is a constrained
-        over drag off of the resizer element.
-
-        * Drosera/debugger.js:
-
-2006-07-02  Mark Rowe  <opendarwin.org@bdash.net.nz>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Bug 9692: Warning about Safari extensions on every launch is obnoxious
-        http://bugs.webkit.org/show_bug.cgi?id=9692
-
-        * WebKitLauncher/WebKitNightlyEnabler.m:
-        (myApplicationWillTerminate): Note that we are exiting cleanly.
-        (cleanUpAfterOurselves): Install bundle load tracking only if we failed
-         to exit cleanly on our last invocation.  This doesn't play nicely with
-         multiple concurrent instances of WebKit.app so it can be disabled via
-         defaults write com.apple.Safari WKNEShouldMonitorShutdowns -bool NO.
-
-2006-07-02  Mark Rowe  <opendarwin.org@bdash.net.nz>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Bug 9654: Refresh Loop when accessing feed URLs
-        http://bugs.webkit.org/show_bug.cgi?id=9654
-
-        * WebKitLauncher/Info.plist: Don't claim to handle feed:// URLs.
-
-2006-07-02  Mark Rowe  <opendarwin.org@bdash.net.nz>
-
-        Reviewed by Timothy Hatcher.
-
-        Bug 9689: Nightly builds should warn a user about potential problems when using
-        "Safari extensions"
-        http://bugs.webkit.org/show_bug.cgi?id=9689
-
-        * WebKitLauncher/WebKitLauncher.xcodeproj/project.pbxproj:
-        * WebKitLauncher/WebKitNightlyEnabler.m:
-        (myBundleDidLoad): Keep track of if any bundles that are loaded.
-        (myApplicationWillFinishLaunching):  Notify user if any bundles are loaded.
-        (cleanUpAfterOurselves): Register for NSBundleDidLoadNotification and
-        NSApplicationWillFinishLaunchingNotification notifications so that we can
-        track bundle loads and notify the user at launch completion.
-
-2006-06-30  Mike Emmel  <mike.emmel@gmail.com>
-
-        Reviewed by Darin Adler.
-
-        - first check-in of a Gdk shell for testing WebKit
-
-        * GdkLauncher: Added.
-
-2006-06-29  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Need to call window close so WebView tears-down completly.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main): call [window close]
-
-2006-06-29  Mark Rowe  <opendarwin.org@bdash.net.nz>
-
-        Reviewed by Darin Adler.
-
-        Bug 9615: Buildbot configuration should be in SVN repository
-        http://bugs.webkit.org/show_bug.cgi?id=9615
-
-        Import BuildBot configuration files as used by build.webkit.org.
-        auth.py has been stubbed out so that slave passwords are not disclosed.
-
-        * BuildSlaveSupport/build.webkit.org-config/Makefile: Added.
-        * BuildSlaveSupport/build.webkit.org-config/buildbot.css: Added.
-        * BuildSlaveSupport/build.webkit.org-config/buildbot.tac: Added.
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Added.
-        * BuildSlaveSupport/build.webkit.org-config/webkit/__init__.py: Added.
-        * BuildSlaveSupport/build.webkit.org-config/webkit/auth.py: Added.
-        * BuildSlaveSupport/build.webkit.org-config/webkit/basesteps.py: Added.
-        * BuildSlaveSupport/build.webkit.org-config/webkit/builders.py: Added.
-        * BuildSlaveSupport/build.webkit.org-config/webkit/factories.py: Added.
-        * BuildSlaveSupport/build.webkit.org-config/webkit/schedulers.py: Added.
-        * BuildSlaveSupport/build.webkit.org-config/webkit/status.py: Added.
-        * BuildSlaveSupport/build.webkit.org-config/webkit/steps.py: Added.
-
-2006-06-29  Mark Rowe  <opendarwin.org@bdash.net.nz>
-
-        Reviewed by Darin Adler.
-
-        Bug 9614: Nightly builds should notify user if a newer build is available
-        http://bugs.webkit.org/show_bug.cgi?id=9614
-
-        * BuildSlaveSupport/build-launcher-app: Write revision number to WebKit.app's VERSION file.
-        * BuildSlaveSupport/build-launcher-dmg: Pass revision number to server-side nightly maintenance
-        script so it can keep track of the latest revision.
-        * Scripts/run-webkit-tests: Pass build-dumprendertree's exit status through correctly.
-        * WebKitLauncher/VERSION: Added.  Placeholder for SVN revision number
-        * WebKitLauncher/WebKitLauncher.xcodeproj/project.pbxproj:
-        * WebKitLauncher/start.html: Retrieve revision number from VERSION file, and pass it through to
-        the nightly start page.
-
-2006-06-26  Jonas Witt  <jonas.witt@gmail.com>
-
-        Reviewed by Darin Adler.
-
-        Bug 9579: LayoutTests/fast/events/objc-event-api.html failing due to screenY output
-        http://bugs.webkit.org/show_bug.cgi?id=9579
-
-        Report screenY values as (height of zero screen - screenY)
-
-        * DumpRenderTree/EventSendingController.m: (-[EventSendingController handleEvent:]):
-
-2006-06-25  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Geoff.
-
-        Bug 9591: [Drosera] breakpoints should be dragable and deletable by dragging off the gutter
-        http://bugs.webkit.org/show_bug.cgi?id=9591
-
-        Makes breakpoints dragable. If dragged off the gutter they are deleted.
-
-        * Drosera/debugger.js:
-        * Drosera/viewer.css:
-
-2006-06-25  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Bug 9568: assertion failure in Safari after quitting Drosera
-        http://bugs.webkit.org/show_bug.cgi?id=9568
-
-        Call switchToServerNamed:nil and not removeLister to make sure
-        the server object is set to nil to prevent further removeListener calls.
-
-        * Drosera/DebuggerDocument.m:
-        (-[DebuggerDocument applicationTerminating:]):
-
-2006-06-25  David Kilzer  <ddkilzer@kilzer.net>
-
-        Reviewed by Darin Adler.
-
-        * Scripts/svn-apply: Speed up isDirectoryEmptyForRemoval() by returning as soon as we find
-        that the directory is not empty instead of reading in every single file and directory first,
-        then checking the count.  Avoid warning in removeDirectoriesIfNeeded() if $svnOutput is not
-        defined.
-
-2006-06-25  Darin Adler  <darin@apple.com>
-
-        * Scripts/svn-apply: Tweak comments.
-        * Scripts/svn-create-patch: Ditto.
-        * Scripts/svn-unapply: Ditto.
-
-2006-06-25  David Kilzer  <ddkilzer@kilzer.net>
-
-        Formatting fix per Bug 9571 Comment #2.
-
-        http://bugs.webkit.org/show_bug.cgi?id=9571#c2
-
-        * Scripts/svn-apply: Formatting fix.
-
-2006-06-25  David Kilzer  <ddkilzer@kilzer.net>
-
-        Reviewed by Darin Adler.
-
-        http://bugs.webkit.org/show_bug.cgi?id=9571
-        Teach svn-apply and svn-unapply to handle directory adds and removes better
-
-        * Scripts/svn-apply: Handle directory adds more intelligently.  Handle directory removes.
-        * Scripts/svn-unapply: Handle undoing both directory adds and removes.
-
-2006-06-25  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Bug 9574: Drosera should show inline scripts within the original HTML
-        http://bugs.webkit.org/show_bug.cgi?id=9574
-
-        Refactor the JavaScript code to have a distinction between files
-        and scripts. Show the script in the context of the HTML file if
-        it's URL is the same as the frame's main resource. At the time of
-        the disParseScript callback the main resource might not be completely
-        loaded, but Drosera needs to show whatever we have at the time. Once
-        the main resource is finished, update the file source and reload the file.
-
-        * Drosera/DebuggerDocument.m:
-        (-[DebuggerDocument pause]):
-        (-[DebuggerDocument webView:didLoadMainResourceForDataSource:]):
-        (-[DebuggerDocument webView:didParseSource:baseLineNumber:fromURL:sourceId:forWebFrame:]):
-        (-[DebuggerDocument webView:failedToParseSource:baseLineNumber:fromURL:withError:forWebFrame:]):
-        * Drosera/debugger.css:
-        * Drosera/debugger.js:
-
-2006-06-24  David Kilzer  <ddkilzer@kilzer.net>
-
-        Reviewed by Darin Adler.
-
-        http://bugs.webkit.org/show_bug.cgi?id=9570
-        Teach prepare-ChangeLog to operate on a list of files or directories
-
-        * Scripts/prepare-ChangeLog: Accept a list of files and/or directories when running.
-        * Scripts/svn-create-patch: Code refactoring.
-
-2006-06-24  James G. Speth  <speth@end.com>
-
-        Reviewed by Darin Adler.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=8843
-          add a way to build Objective-C test cases in HTML
-
-        Tests running in DumpRenderTree can choose to relax some restrictions of the JavaScript/Objective-C bridge
-        allowing more extensive testing of the Obj-C API.  (and by more extensive, I mean this lets scripts do
-        pretty much whatever they want, including acting as delegates, generating events, instantiating obj-c
-        objects, etc... )
-
-        * DumpRenderTree/ObjCPlugin.h:
-        * DumpRenderTree/ObjCPlugin.m: this ability is only exposed to scripts running in DumpRenderTree
-        (+[ObjCPlugin isSelectorExcludedFromWebScript:]):
-        (+[ObjCPlugin webScriptNameForSelector:]):
-        (-[ObjCPlugin removeBridgeRestrictions:]): scripts call this to open up obj-c for extensive testing
-        (+[NSObject setAllowsScriptsFullAccess:]): makes NSObject allow all selectors to be invoked from script
-        (+[NSObject allowsScriptsFullAccess]):
-        (+[NSObject isSelectorExcludedFromWebScript:]): when full access is enabled, no selector is excluded
-        (+[NSObject webScriptNameForSelector:]): always return nil for the default selector mutation
-        (-[JSObjC classNameOfObject:isSelectorExcludedFromWebScript:]):
-        (+[JSObjC webScriptNameForSelector:]):
-        (-[JSObjC invokeDefaultMethodWithArguments:]): shortcut for accessing classes
-        (-[JSObjC lookUpClass:]): allow scripts to retrieve obj-c classes by name
-        (-[JSObjC log:]): access to NSLog function
-        (-[JSObjC retainObject:]): useful obj-c functions that are otherwise hard to reach from javascript
-        (-[JSObjC classOfObject:]):
-        (-[JSObjC classNameOfObject:]):
-
-2006-06-24  David Kilzer  <ddkilzer@kilzer.net>
-
-        Reviewed by Timothy.
-
-        * DrawTest/Info.plist: Added copyright statement.
-        * Drosera/Info.plist: Ditto.
-        * DumpRenderTree/TestNetscapePlugIn.subproj/Info.plist: Ditto.
-        * WebKitLauncher/Info.plist: Ditto.
-
-2006-06-24  David Kilzer  <ddkilzer@kilzer.net>
-
-        Build fix.
-
-        - Backed out http://bugs.webkit.org/show_bug.cgi?id=7802
-          devenv.com not available in VC++ Express installations
-
-        * Scripts/webkitdirs.pm: Backed out previous change.
-
-2006-06-24  Bjoern Graf  <bjoern.graf@gmail.com>
-
-        Reviewed by Maciej.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=7802
-          devenv.com not available in VC++ Express installations
-
-        * Scripts/webkitdirs.pm: Make Windows build work with Visual C++ Express.
-
-2006-06-24  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed by Darin Adler.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=9564
-          A bunch of fixes to run-webkit-httpd
-
-        - Add an -all-interfaces (-a) flag to bind to all interfaces, not just
-          127.0.0.1. Useful for testing with WinIE running on another machine;
-        - don't call checkFrameworks() - we do not need a built WebKit here;
-        - changed tabs to spaces;
-        - disable HTTP keepalive (since Apache doesn't spawn sub-processes in
-          interactive mode, they were a hassle when testing with several browsers, as one
-          had to wait for connection to expire);
-        - remove httpd.pid when done, so that Apache doesn't complain next time.
-
-        * Scripts/run-webkit-httpd:
-
-2006-06-24  Jonas Witt <jonas.witt@gmail.com>
-
-        Reviewed by ggaren, landed by ap.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=9181
-          Complete DOMUIEvent Obj-C API to reflect UIEvent
-
-        Add function to enable logging of all events of one DOM node to stdout.
-
-        * DumpRenderTree/EventSendingController.h:
-        * DumpRenderTree/EventSendingController.m:
-        (+[EventSendingController initialize]):
-        (+[EventSendingController isSelectorExcludedFromWebScript:]):
-        (+[EventSendingController webScriptNameForSelector:]):
-        (-[EventSendingController enableDOMUIEventLogging:]):
-        (-[EventSendingController handleEvent:]):
-
-2006-06-23  Kevin Decker         <kdecker@apple.com>
-
-        Reviewed by Tim Hatcher.
-
-        - Made column headers in Drosera resizable.
-
-2006-06-22  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed by ggaren.
-
-        - see http://bugs.webkit.org/show_bug.cgi?id=9539
-        Another case error preventing build
-
-        * Scripts/webkitdirs.pm: Building WebKit now requires Xcode 2.3.
-
-2006-06-22  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Eric.
-
-        Adds a native toolbar to Drosera to be a good citizen.
-        Adds a Debug menu with key-commands for Continue, Pause and Step Into.
-        Fixes a dragging bug from an earlier fix to the divider code.
-        Fixes some poor indenting in debugger.js.
-
-        * Drosera/DebuggerDocument.h:
-        * Drosera/DebuggerDocument.m:
-        (-[DebuggerDocument stepInto]):
-        (-[DebuggerDocument pause:]):
-        (-[DebuggerDocument resume:]):
-        (-[DebuggerDocument stepInto:]):
-        (-[DebuggerDocument windowDidLoad]):
-        (-[DebuggerDocument toolbar:itemForItemIdentifier:willBeInsertedIntoToolbar:]):
-        (-[DebuggerDocument toolbarDefaultItemIdentifiers:]):
-        (-[DebuggerDocument toolbarAllowedItemIdentifiers:]):
-        (-[DebuggerDocument validateUserInterfaceItem:]):
-        * Drosera/English.lproj/MainMenu.nib/classes.nib:
-        * Drosera/English.lproj/MainMenu.nib/info.nib:
-        * Drosera/English.lproj/MainMenu.nib/keyedobjects.nib:
-        * Drosera/debugger.css:
-        * Drosera/debugger.html:
-        * Drosera/debugger.js:
-        * Drosera/viewer.html:
-
-2006-06-22  Kevin Decker         <kdecker@apple.com>
-
-        Reviewed by Anders.
-
-        - Added pressed column header image.
-        - Made column headers behave more like Xcode.
-
-2006-06-22  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Kevin Decker.
-
-        Code clean up. Adds the stackframe and makes only the body
-        of the tables scrollable keeping the header visible.
-        Shows the current function stack when paused or stepping.
-
-        * Drosera/DebuggerApplication.m:
-        (-[DebuggerApplication awakeFromNib]):
-        (-[DebuggerApplication numberOfRowsInTableView:]):
-        (-[DebuggerApplication tableView:objectValueForTableColumn:row:]):
-        * Drosera/DebuggerDocument.h:
-        * Drosera/DebuggerDocument.m:
-        (-[DebuggerDocument dealloc]):
-        (-[DebuggerDocument currentFrame]):
-        (-[DebuggerDocument currentFrameFunctionName]):
-        (-[DebuggerDocument currentFunctionStack]):
-        (-[DebuggerDocument log:]):
-        (-[DebuggerDocument windowWillClose:]):
-        (-[DebuggerDocument webView:didEnterCallFrame:sourceId:line:forWebFrame:]):
-        (-[DebuggerDocument webView:willLeaveCallFrame:sourceId:line:forWebFrame:]):
-        * Drosera/Drosera.xcodeproj/project.pbxproj:
-        * Drosera/debugger.css:
-        * Drosera/debugger.html:
-        * Drosera/debugger.js:
-
-2006-06-22  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed by Anders.
-
-        Teach run-webkit-httpd to properly look for webkitdirs.pm.
-
-        * Scripts/run-webkit-httpd:
-
-2006-06-22  Kevin Decker         <kdecker@apple.com>
-
-        Reviewed by Tim Hatcher.
-
-        - More progress toward Javascript Debugger.
-        - Added some new images to the project.
-
-2006-06-21  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed by Anders.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=9516
-          Would like a script to run a httpd server with the same configuration as run-webkit-tests http
-
-        * Scripts/run-webkit-httpd: Added.
-
-2006-06-20  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Eric.
-
-        Builds Drosera and a launcher to include with the nightly.
-
-        * BuildSlaveSupport/build-launcher-app:
-        * BuildSlaveSupport/build-launcher-dmg:
-        * Drosera/Drosera.xcodeproj/project.pbxproj:
-        * Drosera/Info.plist:
-        * Drosera/LauncherInfo.plist: Added.
-        * Drosera/launcher.m: Added.
-        (displayErrorAndQuit):
-        (checkMacOSXVersion):
-        (myExecve):
-        (main):
-        * Scripts/build-drosera
-        * WebKitLauncher/WebKitLauncher.xcodeproj/project.pbxproj:
-        * WebKitLauncher/main.m:
-        (main):
-
-2006-06-20  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Adds a JavaScript debugger, called Drosera. Named after
-        a genus of bug eating plants.
-
-        * Drosera/DebuggerApplication.h: Added.
-        * Drosera/DebuggerApplication.m: Added.
-        (-[DebuggerApplication applicationDidFinishLaunching:]):
-        (-[DebuggerApplication serverLoaded:]):
-        (-[DebuggerApplication serverUnloaded:]):
-        (-[DebuggerApplication awakeFromNib]):
-        (-[DebuggerApplication showAttachPanel:]):
-        (-[DebuggerApplication attach:]):
-        (-[DebuggerApplication numberOfRowsInTableView:]):
-        (-[DebuggerApplication tableView:objectValueForTableColumn:row:]):
-        (-[DebuggerApplication tableView:willDisplayCell:forTableColumn:row:]):
-        (-[DebuggerApplication tableViewSelectionDidChange:]):
-        * Drosera/DebuggerDocument.h: Added.
-        * Drosera/DebuggerDocument.m: Added.
-        (+[WebScriptCallFrame isSelectorExcludedFromWebScript:]):
-        (+[WebScriptCallFrame isKeyExcludedFromWebScript:]):
-        (+[DebuggerDocument isSelectorExcludedFromWebScript:]):
-        (+[DebuggerDocument isKeyExcludedFromWebScript:]):
-        (-[DebuggerDocument initWithServerName:]):
-        (-[DebuggerDocument windowWillClose:]):
-        (-[DebuggerDocument dealloc]):
-        (-[DebuggerDocument isPaused]):
-        (-[DebuggerDocument pause]):
-        (-[DebuggerDocument resume]):
-        (-[DebuggerDocument step]):
-        (-[DebuggerDocument windowNibName]):
-        (-[DebuggerDocument windowDidLoad]):
-        (-[DebuggerDocument switchToServerNamed:]):
-        (-[DebuggerDocument applicationTerminating:]):
-        (-[DebuggerDocument serverConnectionDidDie:]):
-        (-[DebuggerDocument webView:windowScriptObjectAvailable:]):
-        (-[DebuggerDocument webView:didFinishLoadForFrame:]):
-        (-[DebuggerDocument webView:didParseSource:fromURL:sourceId:forWebFrame:]):
-        (-[DebuggerDocument webView:didEnterCallFrame:sourceId:line:forWebFrame:]):
-        (-[DebuggerDocument webView:willExecuteStatement:sourceId:line:forWebFrame:]):
-        (-[DebuggerDocument webView:willLeaveCallFrame:sourceId:line:forWebFrame:]):
-        * Drosera/Drosera.pch: Added.
-        * Drosera/Drosera.xcodeproj/project.pbxproj: Added.
-        * Drosera/English.lproj/Debugger.nib/classes.nib: Added.
-        * Drosera/English.lproj/Debugger.nib/info.nib: Added.
-        * Drosera/English.lproj/Debugger.nib/keyedobjects.nib: Added.
-        * Drosera/English.lproj/MainMenu.nib/classes.nib: Added.
-        * Drosera/English.lproj/MainMenu.nib/info.nib: Added.
-        * Drosera/English.lproj/MainMenu.nib/keyedobjects.nib: Added.
-        * Drosera/Images/breakPoint.tif: Added.
-        * Drosera/Images/breakPointDisabled.tif: Added.
-        * Drosera/Images/continue.tif: Added.
-        * Drosera/Images/finishFunction.tif: Added.
-        * Drosera/Images/glossyFooterFill.tif: Added.
-        * Drosera/Images/glossyHeader.png: Added.
-        * Drosera/Images/gradientBackground.png: Added.
-        * Drosera/Images/gutter.png: Added.
-        * Drosera/Images/navLeftDisabled.png: Added.
-        * Drosera/Images/navLeftNormal.png: Added.
-        * Drosera/Images/navLeftPressed.png: Added.
-        * Drosera/Images/navRightDisabled.png: Added.
-        * Drosera/Images/navRightNormal.png: Added.
-        * Drosera/Images/navRightPressed.png: Added.
-        * Drosera/Images/pause.tif: Added.
-        * Drosera/Images/popUpArrows.png: Added.
-        * Drosera/Images/programCounter.tif: Added.
-        * Drosera/Images/programCounterBreakPoint.tif: Added.
-        * Drosera/Images/programCounterBreakPointDisabled.tif: Added.
-        * Drosera/Images/run.tif: Added.
-        * Drosera/Images/splitterBar.tif: Added.
-        * Drosera/Images/splitterDimple.tif: Added.
-        * Drosera/Images/step.tif: Added.
-        * Drosera/Images/stepOver.tif: Added.
-        * Drosera/Images/stop.tif: Added.
-        * Drosera/Images/toolbarBackground.png: Added.
-        * Drosera/Info.plist: Added.
-        * Drosera/debugger.css: Added.
-        * Drosera/debugger.html: Added.
-        * Drosera/debugger.js: Added.
-        * Drosera/main.m: Added.
-        (main):
-        * Drosera/viewer.css: Added.
-        * Drosera/viewer.html: Added.
-
-2006-06-18  David Kilzer  <ddkilzer@kilzer.net>
-
-        Reviewed by darin.
-
-        http://bugs.webkit.org/show_bug.cgi?id=9485
-        Teach svn-apply and svn-unapply to use full path names
-
-        * Scripts/svn-apply: Changed to use full path names.  Cleaned up code.
-        * Scripts/svn-unapply: Ditto.
-
-2006-06-18  David Kilzer  <ddkilzer@kilzer.net>
-
-        Reviewed by ggaren.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=9150
-          DumpRenderTree should be able to keep URL history during runs
-
-        Test: LayoutTests/fast/history/clicked-link-is-visited.html
-
-        * DumpRenderTree/DumpRenderTree.m: Add keepWebHistory function to layoutTestController
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]): Updated for keepWebHistory.
-        (-[LayoutTestController keepWebHistory]): Added.  We only set optional shared history if
-        it is currently nil since keepWebHistory() might be called more than once incidentally
-        for the same test.
-        (dumpRenderTree): Set optional shared history in WebHistory to nil by default.
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Xcode 2.3 clean up.
-
-2006-06-11  David Kilzer  <ddkilzer@kilzer.net>
-
-        Reviewed by darin.
-
-        http://bugs.webkit.org/show_bug.cgi?id=9395
-        Make prepare-ChangeLog faster
-
-        * Scripts/prepare-ChangeLog: Use "svn diff" instead of "svn stat" to find changed files,
-        then save the diff output for reuse.  Keep a status variable if changes are made to
-        LayoutTests so "svn diff LayoutTests" doesn't have to be run to check for changes when
-        WebCore is updated.  Added -h|--help command-line switch and help message.  Move test
-        for no changed files closer to the beginning of the program.
-
-2006-06-10  Mitz Pettel  <opendarwin.org@mitzpettel.com>
-
-        Reviewed and landed by ap.
-
-        - make DumpRenderTree build
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (-[WaitUntilDoneDelegate webView:didCommitLoadForFrame:]): Changed _updateFocusState to _updateActiveState
-        (-[WaitUntilDoneDelegate webViewFocus:]): Ditto.
-        (-[LayoutTestController setWindowIsKey:]): Ditto.
-        (-[LayoutTestController setMainFrameIsFirstResponder:]): Ditto.
-
-2006-06-09  David Kilzer  <ddkilzer@kilzer.net>
-
-        Reviewed by Darin, landed by Geoff.
-
-        http://bugs.webkit.org/show_bug.cgi?id=9350
-        Use pathcmp() when sorting paths in svn-create-patch
-
-        * Scripts/run-webkit-tests: Fixed splitpath() to use File::Basename subroutines instead of regex.
-        * Scripts/svn-create-patch: Copied numericcmp(), pathcmp() and splitpath() from run-webkit-tests.
-        Changed sort() functions to use pathcmp().  Added subroutine prototypes.  Added -h command-line
-        switch and printUsage() subroutine.
-
-2006-06-06  David Kilzer  <ddkilzer@kilzer.net>
-
-        Reviewed by darin.
-
-        http://bugs.webkit.org/show_bug.cgi?id=9322
-        Teach svn-create-patch to sort its output
-
-        * Scripts/svn-create-patch: Clean up perl code.  Sort patch output alphabetically
-        by text files first, then by binary files.
-
-2006-06-04  David Kilzer  <ddkilzer@kilzer.net>
-
-        Reviewed by darin.
-
-        http://bugs.webkit.org/show_bug.cgi?id=9299
-        Teach svn-create-patch and friends to work with binary files
-
-        * Scripts/svn-apply: Updated to use base64-encoded text for binary files when applying patches.
-        * Scripts/svn-create-patch: Updated to include binary file content as base64-encoded text in patches.
-        * Scripts/svn-unapply: Updated to recognize binary files when unapplying patches.
-
-2006-06-03  David Kilzer  <ddkilzer@kilzer.net>
-
-        Reviewed by Maciej.
-
-        http://bugs.webkit.org/show_bug.cgi?id=9296
-        Performance improvement for svn-create-patch
-
-        * Scripts/svn-create-patch: Undef $indexPath after all paths have been fixed for a given patch.
-
-2006-06-03  David Kilzer  <ddkilzer@kilzer.net>
-
-        Reviewed by darin.
-
-        http://bugs.webkit.org/show_bug.cgi?id=9290
-        Teach svn-apply and svn-unapply to patch ChangeLogs cleanly
-
-        * Scripts/svn-apply: Fixed to apply ChangeLog patches without failing.
-        * Scripts/svn-unapply: Ditto.  Also simplified reversing a deletion.
-
-2006-06-03  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by hyatt.
-
-        Switch Spinneret to new hosting mechanism
-
-        * Spinneret/Spinneret.sln:
-        * Spinneret/Spinneret/Spinneret.cpp:
-        (SpinneretWebHost::updateAddressBar):
-        (SpinneretWebHost::QueryInterface):
-        (SpinneretWebHost::AddRef):
-        (SpinneretWebHost::Release):
-        (resizeSubViews):
-        (_tWinMain):
-        (WndProc):
-        (MyEditProc):
-        (About):
-        (loadURL):
-        * Spinneret/Spinneret/Spinneret.h:
-        (SpinneretWebHost::didStartProvisionalLoadForFrame):
-        (SpinneretWebHost::didReceiveServerRedirectForProvisionalLoadForFrame):
-        (SpinneretWebHost::didFailProvisionalLoadWithError):
-        (SpinneretWebHost::didCommitLoadForFrame):
-        (SpinneretWebHost::didReceiveTitle):
-        (SpinneretWebHost::didReceiveIcon):
-        (SpinneretWebHost::didFinishLoadForFrame):
-        (SpinneretWebHost::didFailLoadWithError):
-        (SpinneretWebHost::didChangeLocationWithinPageForFrame):
-        (SpinneretWebHost::willPerformClientRedirectToURL):
-        (SpinneretWebHost::didCancelClientRedirectForFrame):
-        (SpinneretWebHost::willCloseFrame):
-        (SpinneretWebHost::windowScriptObjectAvailable):
-        * Spinneret/Spinneret/Spinneret.vcproj:
-
-2006-06-02  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by darin.
-
-        Updated build script
-
-        * Scripts/build-webkit:
-
-2006-06-01  Anders Carlsson  <acarlsson@apple.com>
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (-[LayoutTestController clearBackForwardList]):
-        Add clearBackForwardList function to layoutTestController
-
-2006-06-01  Anders Carlsson  <acarlsson@apple.com>
-
-        Reviewed by Darin Adler.
-
-        http://bugs.webkit.org/show_bug.cgi?id=8996
-        slow-utf8-text layout test case failing (no longer deterministic?)
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (dump):
-        Dump as text when the response MIME type is text/plain
-
-2006-05-26  Steve Falkenburg  <sfalken@apple.com>
-
-        Build fixes/tweaks
-
-        * Spinneret/Spinneret.sln:
-        * Spinneret/Spinneret/Spinneret.vcproj:
-
-2006-05-24  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by mjs.
-
-        Added 'GCController' to DRT to support garbage collection layout tests.
-
-        GCController.collect() and GCController.collectOnAlternateThread() do
-        what you would expect. The latter takes a boolean argument sepcifying
-        whether to wait for garbage collection to finish before continuing to
-        execute script.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (-[WaitUntilDoneDelegate webView:windowScriptObjectAvailable:]):
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/GCController.h: Added.
-        * DumpRenderTree/GCController.mm: Added.
-        (+[GCController isSelectorExcludedFromWebScript:]):
-        (+[GCController webScriptNameForSelector:]):
-        (-[GCController collect]):
-        (-[GCController collectOnAlternateThread:]):
-
-2006-05-23  John Sullivan  <sullivan@apple.com>
-
-        Reviewed by Maciej.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        Newer Xcode removed some obsolete cruft
-
-        * DumpRenderTree/TextInputController.m:
-        (-[TextInputController textInput]):
-        added (id) cast to make newer compiler happy
-
-2006-05-22  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by adele.
-
-        Fix build.
-
-        * Spinneret/Spinneret.sln:
-
-2006-05-18  Darin Adler  <darin@apple.com>
-
-        - try to fix no-SVG, no-XPATH build, again
-
-        * Scripts/build-webkit: Use FEATURE_DEFINES= instead of FEATURE_DEFINES=''.
-
-2006-05-18  Darin Adler  <darin@apple.com>
-
-        - try to fix no-SVG, no-XPATH build
-
-        * Scripts/build-webkit: Pass FEATURE_DEFINES rather than GCC_PREPROCESSOR_DEFINITIONS,
-        since the former is what's used in the WebCore project now.
-
-2006-05-17  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Some more future renames.
-
-2006-05-16  Adele Peterson  <adele@apple.com>
-
-        Reviewed by Hyatt.
-
-        * Scripts/do-webcore-rename: Added RenderTextField => RenderTextControl and
-        HTMLTextFieldInnerElement => HTMLTextControlInnerElement to list for future renames.
-
-2006-05-15  Alexey Proskuryakov  <ap@nypop.com>
-
-        * Scripts/install-unix-extras: Changed to be executable and removed
-        text in the file generated by "svn diff".
-        * Scripts/regenerate-makefiles: Ditto.
-
-2006-05-13  Kevin M. Ollivier  <kevino@theolliviers.com>
-
-        Reviewed by Darin, landed by ap.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=8528
-          Bakefiles (and generated Makefiles) for wx and gdk ports
-
-        * Scripts/install-unix-extras: Added.
-        * Scripts/regenerate-makefiles: Added.
-
-2006-05-10  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Maciej.
-
-        Fix registry usage from perl script.  Turns out libwin32's
-        SetRegValueEx, even for REG_DWORD, always takes its value as a string!
-
-        * Scripts/install-win-extras:
-
-2006-05-09  Steve Falkenburg  <sfalken@apple.com>
-
-        Fix Windows build.
-        Add load ended callback.
-
-        Reviewed by kevin.
-
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.vcproj: Fix include paths
-        * Scripts/build-webkit: Build WebKitWin instead of WebCore/JavaScriptCore (WebKitWin builds those indirectly).
-        * Spinneret/Spinneret/Spinneret.cpp:
-        (SpinneretWebHost::loadEnd): Add callback for loadEnd() to determine success/failure of page load.
-        (_tWinMain): Load built-in test content here instead of in lower-level code.
-        * Spinneret/Spinneret/Spinneret.h: Add loadEnd() callback.
-
-2006-05-08  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Anders.
-
-        * Scripts/extract-localizable-strings: Update for correct names of log macros.
-
-2006-05-09  Anders Carlsson  <acarlsson@apple.com>
-
-        Reviewed by Maciej.
-
-        * Scripts/check-dom-results:
-        Add XPath to the list of results.
-
-2006-05-08  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Add another rename.
-
-2006-05-01  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by eric.
-
-        Spinneret now links against the new separate lib.
-
-        * Spinneret/Spinneret.sln:
-        * Spinneret/Spinneret/Spinneret.cpp:
-        (SpinneretWebHost::updateLocationBar):
-        (_tWinMain):
-        * Spinneret/Spinneret/Spinneret.h:
-        * Spinneret/Spinneret/Spinneret.vcproj:
-        * Spinneret/Spinneret/WebFrame.cpp: Removed.
-        * Spinneret/Spinneret/WebFrame.h: Removed.
-        * Spinneret/Spinneret/WebView.cpp: Removed.
-        * Spinneret/Spinneret/WebView.h: Removed.
-
-2006-04-28  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by kdecker
-
-        Modify error reporting registry keys to disable Dr. Watson.
-        This allows Javascript test cases to complete without blocking UI.
-
-        * Scripts/install-win-extras:
-         - Use Perl Win32 registry functions to disable blocking UI
-
-
-2006-04-28  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by eric.
-
-        Turned off C++ exceptions, fixed memory leaks
-
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.vcproj:
-        * Spinneret/Spinneret.sln:
-        * Spinneret/Spinneret/Spinneret.cpp:
-        (_tWinMain):
-        * Spinneret/Spinneret/Spinneret.vcproj:
-        * Spinneret/Spinneret/WebFrame.cpp:
-        (WebKit::WebFrame::WebFramePrivate::~WebFramePrivate):
-        (WebKit::WebFrame::WebFrame):
-        (WebKit::WebFrame::~WebFrame):
-        (WebKit::WebFrame::impl):
-        * Spinneret/Spinneret/WebFrame.h:
-        * Spinneret/Spinneret/WebView.cpp:
-        * Spinneret/Spinneret/stdafx.h:
-
-2006-04-28  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed by Darin Adler.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=8633
-          DumpRenderTree should reset the URL cache
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main): Call [[NSURLCache sharedURLCache] removeAllCachedResponses].
-
-2006-04-28  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by andersca.
-
-        * Scripts/do-webcore-rename: rename KCanvasContainer too
-        * Scripts/run-webkit-tests: output total time
-
-2006-04-26  Mitz Pettel  <opendarwin.org@mitzpettel.com>
-
-        Reviewed by hyatt.  Landed by eseidel.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=8549
-          Enable detection of excessive repainting with DumpRenderTree
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (-[LayoutTestController display]):
-
-2006-04-23  Mitz Pettel  <opendarwin.org@mitzpettel.com>
-
-        Reviewed by Darin Adler.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=6905
-          DumpRenderTree needs a way to force painting (to allow invalidation tests)
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (dump): If display() has been called during the test, grab the pixels from
-        the view, after letting it repaint invalidated rects.
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (-[LayoutTestController display]): Added. Calls -display on the view
-        and changes the subsequent behavior of dump().
-        (dumpRenderTree):
-
-2006-04-22  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed by Maciej.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=8532
-          Update iExploder to 1.3.2
-
-        Test case numbers are not compatible with iExploder 1.2.
-
-        * Scripts/run-iexploder-tests: Print the numbers of the last five tests that were accessed.
-
-        * iExploder/CHANGELOG.txt: Added.
-        * iExploder/LICENSE.txt: Changed to a standard zlib/png license.
-        * iExploder/README.txt: Added some performance hints.
-
-        * iExploder/htdocs/config.rb: Added.
-        * iExploder/htdocs/cssproperties.in:
-        * iExploder/htdocs/cssvalues.in:
-        * iExploder/htdocs/htmlattrs.in:
-        * iExploder/htdocs/htmltags.in:
-        * iExploder/htdocs/iexploder.cgi:
-         - Updated to support the latest HTML & CSS tags, properties, and values from both
-           the WebKit and Mozilla CVS tree
-         - cssproperties.in cleanup
-         - Modularized the code a little bit.
-         - Fix subtest bug that was causing last 5 tags to be missed
-         - new subtest algorithm to deal better with larger tag counts
-         - default HTML_MAX_TAGS increased from 32 to 96
-
-        * iExploder/htdocs/index.html: Updated version to 1.3.2.
-        * iExploder/htdocs/webserver.rb: Added. New standalone webserver, can be used as an
-        alternative to our run-iexploder-tests.
-        * iExploder/tools/showtest.rb: Added. Similar to run-iexploder-tests --get.
-        * iExploder/htdocs/iexploder.rb: Added. Used by webserver.rb.
-        * iExploder/tools/osx_last_crash.rb: Find logs modified in the last two days.
-
-2006-04-22  Alexey Proskuryakov  <ap@nypop.com>
-
-        - commit Scripts/run-mangleme-tests (missed it the previous time).
-
-2006-04-18  Darin Adler  <darin@apple.com>
-
-        - attempt to fix Windows buildbot
-
-        * Scripts/install-win-extras: Temporarily changed URLs to fr.rpmfind.net.
-        We need a better long-term solution for this.
-
-2006-04-17  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed by Darin Adler.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=8444
-          Integrate mangleme test script.
-
-        Works in a similar way to run-iexploder-tests.
-
-        * Scripts/run-mangleme-tests: Added.
-        * mangleme: Added.
-        * mangleme/Makefile: Added.
-        * mangleme/README: Added.
-        * mangleme/mangle.cgi.c: Added.
-        * mangleme/remangle.cgi.c: Added.
-        * mangleme/tags.h: Added.
-
-2006-04-17  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed by Darin Adler.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=8443
-          An easier way to save iExploder tests.
-
-        * Scripts/run-iexploder-tests: Added a --get option to save a test into a file.
-
-2006-04-17  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed by Darin Adler.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=8421
-          Integrate iExploder test script.
-
-        This script generates artificially mangled HTML documents, to test that the browser
-        doesn't crash when handling ill-formed code.
-
-        How to use:
-         run-iexploder-tests             Open an interactive test page in Safari+ToT.
-         run-iexploder-tests nnnnn       Open test #nnnnn.
-
-        Command line options:
-         --guard-malloc (-g)              Use Guard Malloc.
-         --port=nnnn                      Run Apache on port nnnn (default is 8000).
-
-        To save a crashing test, you can use curl while the crash reporter dialog is on the screen
-        (thus, Apache is still running), e.g.:
-         curl -o iexploder293.html "http://127.0.0.1:8000/iexploder.cgi?lookup=1&test=293"
-
-        Additionally, there are some useful scripts in WebKitTools/iExploder/tools directory.
-
-        * Scripts/run-iexploder-tests: Added.
-        * iExploder: Added.
-        * iExploder/LICENSE.txt: Added.
-        * iExploder/README.txt: Added.
-        * iExploder/htdocs: Added.
-        * iExploder/htdocs/cssproperties.in: Added.
-        * iExploder/htdocs/cssvalues.in: Added.
-        * iExploder/htdocs/htmlattrs.in: Added.
-        * iExploder/htdocs/htmltags.in: Added.
-        * iExploder/htdocs/htmlvalues.in: Added.
-        * iExploder/htdocs/iexploder.cgi: Added.
-        * iExploder/htdocs/index.html: Added.
-        * iExploder/tools: Added.
-        * iExploder/tools/lasthit.rb: Added.
-        * iExploder/tools/osx_last_crash.rb: Added.
-
-2006-04-16  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed by Darin Adler.
-
-        - fix http://bugs.webkit.org/show_bug.cgi?id=8412
-          Restore color profile after a crash
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (crashHandler): Added a handler for signals that are raised on a crash. Keeping separate
-        from the existing handler for manual interruption (SIGINT/SIGHUP/SIGTERM), because
-        I'm trying to find a way to prevent the Crash Reporter dialog from appearing on crash,
-        and this code may change significantly.
-
-        (main): Install crashHandler.
-
-        (setDefaultColorProfileToRGB): Properly convert CFStringRef to a char buffer
-        (CFStringGetCStringPtr should NEVER EVER be used!).
-
-2006-04-15  Darin Adler  <darin@apple.com>
-
-        Reviewed by Eric.
-
-        * Scripts/install-win-extras: Try to fix the Windows build by fixing the URLs here.
-        Seems xmlsoft.org's HTTP no longer has what we need.
-
-2006-04-13  Mark Rowe  <opendarwin.org@bdash.net.nz>
-
-        Rubber-stamped by Darin Adler.
-
-        - fix http://bugs.webkit.org/show_bug.cgi?id=8348
-          upload-disk-image stage on buildslaves fail with "No space left on device"
-
-        * BuildSlaveSupport/build-launcher-dmg:  Use the -srcfolder option to
-          'hdiutil create'.   This creates the initial disk image based on the size of
-          the source folder, and copies the contents to the new disk image.  The file
-          extension on the temporary uncompressed disk image has also been altered from
-          ".uncompressed" to ".uncompressed.dmg" as hdiutil on 10.4.6 Intel fails when
-          the extension is not ".dmg".
-
-2006-04-12  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by Tim H.
-
-        * Scripts/update-webkit: Make this return non-zero when svn fails.
-
-2006-04-10  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed by Darin Adler.
-
-        - fix http://bugs.webkit.org/show_bug.cgi?id=8157
-          Make HTTP tests using Perl use .pl extension
-
-        * Scripts/run-webkit-tests: Added support for running .pl and .php tests,
-          removed support for .text. Reduced the number of places that explicitly list supported
-          extensions. Some of the changes come from bug 8121, the patch for which got landed only
-          partially.
-
-2006-04-06  Darin Adler  <darin@apple.com>
-
-        Changes requested by Mark Rowe.
-
-        * BuildSlaveSupport/build-launcher-app: Set executable bit, removed property change
-        trash at the end of the file.
-        * BuildSlaveSupport/build-launcher-dmg: Ditto.
-
-        * WebKitLauncher/main.m: Removed trash at end of file.
-
-        * WebKitLauncher/WebKitLauncher.xcodeproj/project.pbxproj: Let Xcode update comments
-        to make name match.
-
-2006-04-06  Mark Rowe  <opendarwin.org@bdash.net.nz>
-
-        Reviewed by Darin, landed by Maciej.
-
-        * BuildSlaveSupport/build-launcher-app: Added.  Builds WebKit.app from WebKitLauncher
-          and bundles the WebKit frameworks inside it.
-        * BuildSlaveSupport/build-launcher-dmg: Added.  Builds, and optionally uploads, a disk image
-          containing WebKit.app.
-        * BuildSlaveSupport/run-performance-tests:  Use currentSVNRevision.
-        * Scripts/webkitdirs.pm:  Add currentSVNRevision to retrieve the revision
-          number of the SVN working copy.
-        * WebKitLauncher: Added.
-        * WebKitLauncher/Info.plist: Added.
-        * WebKitLauncher/WebKitLauncher.xcodeproj: Added.
-        * WebKitLauncher/WebKitLauncher.xcodeproj/project.pbxproj: Added.
-        * WebKitLauncher/WebKitNightlyEnabler.m: Added.  This makes
-          up the WebKitNightlyEnabler dylib which is loaded into Safari's address space
-          to cause LaunchServices to treat Safari.app as WebKit.app when it is run from
-          the nightly launcher.
-        * WebKitLauncher/main.m: Added.  The WebKit.app launcher.
-          It sets up the environment to have Safari use the bundled frameworks
-          and load the WebKitNightlyEnabler dylib before exec'ing Safari
-        * WebKitLauncher/start.html: Added.
-        * WebKitLauncher/webkit.icns: Added.
-
-2006-04-05  Darin Adler  <darin@apple.com>
-
-        Reviewed by Maciej.
-
-        * Scripts/check-for-global-initializers: Remove StringImpl from the list of files that
-        are allowed to have global initializers.
-
-2006-04-05  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by OMG BETH
-
-        * Scripts/run-testkjs:
-        - pipe STDERR to /dev/null by default; new --verbose option overrides
-        this behavior
-        - set DYLD_FRAMEWORK_PATH to the webkit-configured path
-        - output run command in a format that can be copied and pasted into the
-        terminal to run manually
-
-2006-04-03  Justin Garcia  <justin.garcia@apple.com>
-
-        Reviewed by harrison
-
-        <http://bugs.webkit.org/show_bug.cgi?id=7567>
-        A drag and drop in DumpRenderTree copies the source, instead of cutting it
-
-        Tell the source that the drag is over after the drag is performed, not before.
-
-        * DumpRenderTree/EventSendingController.m:
-        (-[EventSendingController mouseUp]):
-
-2006-04-01  Darin Adler  <darin@apple.com>
-
-        Reviewed by Justin.
-
-        * DumpRenderTree/EventSendingController.m: (-[EventSendingController keyDown:withModifiers:]):
-        Fixed keyDown function so that it will work if you don't pass an array of modifiers or if
-        elements in that array are not strings.
-
-2006-03-31  Darin Adler  <darin@apple.com>
-
-        Reviewed by John Sullivan.
-
-        - added a "--reset-results" option to run-webkit-tests so you can reset
-          the results without first deleting expected results
-        - <rdar://problem/4185878> add scroll position to dumpRenderTree
-
-        * Scripts/run-webkit-tests: Rearranged the code a bit to make the sequence
-        more logical. Moved all the subroutines to the end of the file. Added a
-        "--force" option.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main): Added a new --dump-all-pixels option, used when forcing run-webkit-tests
-        to generate new output for all tests it runs.
-        (dump): Dump the scroll position if it's non-zero. Always dump the image when
-        the --dump-all-pixels option is passed. Also tightened up the image dumping
-        code and replaced the incorrect use of +[NSGraphicsContext saveGraphicsState]
-        with code to save and restore the context.
-
-        * DumpRenderTree/DumpRenderTree.h: Tweaked includes a bit and added (void).
-        * DumpRenderTree/EventSendingController.m: Added now-needed include.
-
-2006-03-30  Tim Omernick  <timo@apple.com>
-
-        * DumpRenderTree/ObjCPlugin.h:
-        Fixed copyright.
-        * DumpRenderTree/ObjCPlugin.m: ditto
-        * DumpRenderTree/ObjCPluginFunction.h: ditto
-        * DumpRenderTree/ObjCPluginFunction.m: ditto
-
-2006-03-30  Tim Omernick  <timo@apple.com>
-
-        Reviewed by Geoff.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (-[WaitUntilDoneDelegate webView:windowScriptObjectAvailable:]):
-        Add "objCPlugin", "objCPluginFunction" properties to the window.  objCPlugin simulates
-        an Objective C object exposed to JS; objCPluginFunction simulates an Objective C method
-        exposed to JS as a callable object.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        Added ObjCPlugin.[hm], ObjCPluginFunction.[hm].
-
-        * DumpRenderTree/ObjCPlugin.h: Added.
-        * DumpRenderTree/ObjCPlugin.m: Added.
-        * DumpRenderTree/ObjCPluginFunction.h: Added.
-        * DumpRenderTree/ObjCPluginFunction.m: Added.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.c:
-        Added a new method, "removeDefaultMethod", which removes the default method from the
-        plugin object's class.  The effect is that the plugin object is mutated from a callable
-        function to a simple object.
-        (pluginInvoke):
-        Handle "removeDefaultMethod".
-        (pluginInvokeDefault):
-        Made the default method actually do something (return 1).
-
-2006-03-30  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by ggaren.
-
-        Remove WebFrame::viewImpl(), setMainFrame on page.
-
-        * Spinneret/Spinneret/WebFrame.cpp:
-        (WebKit::WebFrame::WebFrame):
-        * Spinneret/Spinneret/WebFrame.h:
-        * Spinneret/Spinneret/WebView.cpp:
-        (WebKit::WebView::mouseMoved):
-        (WebKit::WebView::mouseDown):
-        (WebKit::WebView::mouseUp):
-        (WebKit::WebView::mouseDoubleClick):
-        (WebKit::WebViewWndProc):
-
-2006-03-30  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by hyatt.
-
-        Fix html editing input & basic form submission.
-
-        * Spinneret/Spinneret/WebFrame.cpp:
-        (WebKit::WebFrame::submitForm):
-        (WebKit::WebFrame::loadURL):
-        * Spinneret/Spinneret/WebFrame.h:
-        * Spinneret/Spinneret/WebView.cpp:
-        (WebKit::WebView::keyPress):
-        (WebKit::WebViewWndProc):
-
-2006-03-28  Justin Garcia  <justin.garcia@apple.com>
-
-        Reviewed by darin
-
-        <rdar://problem/4402375>
-        REGRESSION (417.8-TOT): selectionRect sometimes includes adjacent images
-
-        Added an option to draw the selectionRect.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (dump):
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (-[LayoutTestController dumpSelectionRect]):
-        (dumpRenderTree):
-
-2006-03-29  Darin Adler  <darin@apple.com>
-
-        Reviewed by Tim Hatcher.
-
-        - make the global initializer check work on Xcode 2.1 (although it's better on 2.2)
-
-        * Scripts/check-for-global-initializers: Use NATIVE_ARCH if there is no CURRENT_ARCH.
-
-2006-03-28  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by darin.
-
-        * Scripts/check-for-global-initializers: remove svg exceptions.
-
-2006-03-28  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Exit gracefully if $ENV{'CURRENT_ARCH'} is undefined. Rolling out my previous change.
-
-        * Scripts/check-for-global-initializers:
-
-2006-03-28  Timothy Hatcher  <timothy@apple.com>
-
-        Build fix. Turn off uninitialized warnings for the first block of code.
-
-        * Scripts/check-for-global-initializers:
-
-2006-03-28  Darin Adler  <darin@apple.com>
-
-        Reviewed by Geoff.
-
-        * Scripts/check-for-global-initializers: Added.
-
-2006-03-24  Mitz Pettel  <opendarwin.org@mitzpettel.com>
-
-        Reviewed by darin.  Landed by eseidel.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=7947
-          Add repaint testing support to run-webkit-tests
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main): Added --repaint and --horizontal-sweep options.
-        (dump): Repaint line-by-line or column-by-column when the appropriate option
-        is selected.
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]): Added testRepaint()
-        and repaintSweepHorizontally() methods to layoutTestController.
-        (-[LayoutTestController testRepaint]):
-        (-[LayoutTestController repaintSweepHorizontally]):
-        (dumpRenderTree):
-        * Scripts/run-webkit-tests: Added --repaint and --horizontal-sweep options
-        to force these settings on tests that do not ask for them.
-
-2006-03-24  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by mjs.
-
-        Build fix.
-
-        * Spinneret/Spinneret/WebFrame.cpp:
-        (WebKit::WebFrame::openURL): replace QString with DeprecatedString
-
-2006-03-21  Beth Dakin  <bdakin@apple.com>
-
-        Reviewed by Maciej
-
-        Add support for keyDown() to DumpRenderTree.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main): Set the preference for tabbing to links.
-        * DumpRenderTree/EventSendingController.m:
-        (+[EventSendingController isSelectorExcludedFromWebScript:]):
-        (+[EventSendingController webScriptNameForSelector:]):
-        (-[EventSendingController keyDown:withModifiers:]):
-
-2006-03-20  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by hyatt.
-
-        Fix win32 build.
-
-        * Spinneret/Spinneret/Spinneret.vcproj:
-        * Spinneret/Spinneret/WebFrame.h:
-        * Spinneret/Spinneret/WebView.cpp:
-        (WebKit::WebView::mouseMoved):
-        (WebKit::WebView::mouseDown):
-        (WebKit::WebView::mouseUp):
-        (WebKit::WebView::mouseDoubleClick):
-        (WebKit::WebView::keyPress):
-        (WebKit::WebViewWndProc):
-
-2006-03-19  Darin Adler  <darin@apple.com>
-
-        Reviewed by Anders.
-
-        * DumpRenderTree/DumpRenderTree.m: (main): Turn on pop-up blocking so that
-        we can test it in layout tests. We don't really need tests that run with
-        pop-up blocking off at the moment. If we do some day, we can add some
-        API for turning it off in the layout test controller.
-
-        * Scripts/run-webkit-tests: Since we don't use NSLanguage at all any more,
-        don't ignore the leak; it should no longer show up.
-
-2006-03-17  Anders Carlsson  <andersca@mac.com>
-
-        Reviewed by Eric.
-
-        * Scripts/install-win-extras:
-        Fetch "Program Files" location from the environment.
-
-2006-03-17  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by ggaren.
-
-        Fix Spinneret to pass Events as const & not as pointers.
-
-        * Spinneret/Spinneret/WebView.cpp:
-        (WebKit::WebView::mouseMoved):
-        (WebKit::WebView::mouseDown):
-        (WebKit::WebView::mouseUp):
-        (WebKit::WebView::mouseDoubleClick):
-        (WebKit::WebView::keyPress):
-
-2006-03-17  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by justing.
-
-        Add support for basic HTML editing.
-
-        * Spinneret/Spinneret/WebView.cpp:
-        (WebKit::WebView::WebView):
-        (WebKit::WebView::keyPress):
-
-2006-03-17  Eric Seidel  <eseidel@apple.com>
-
-        Rubber-stamped by ggaren.
-
-        Break DumpRenderTree.m up into several files to make the code more readable.
-
-        * DumpRenderTree/DumpRenderTree.h: Added.
-        * DumpRenderTree/DumpRenderTree.m:
-        (doneLoading): new accessor function for "done" global.
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/DumpRenderTreeDraggingInfo.h: Added.
-        * DumpRenderTree/DumpRenderTreeDraggingInfo.m: Added.
-        * DumpRenderTree/EditingDelegate.h: Added.
-        * DumpRenderTree/EditingDelegate.m: Added.
-        (-[EditingDelegate webViewDidChangeSelection:]):
-        * DumpRenderTree/EventSendingController.h: Added.
-        * DumpRenderTree/EventSendingController.m: Added.
-
-2006-03-16  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by darin.
-
-        Add resize, scroll event support.
-
-        * Spinneret/Spinneret/WebView.cpp:
-        (WebKit::WebView::mouseMoved):
-        (WebKit::WebView::mouseDown):
-        (WebKit::WebView::mouseUp):
-        (WebKit::WebView::mouseDoubleClick):
-        (WebKit::WebView::keyPress):
-        (WebKit::WebViewWndProc):
-        * Spinneret/Spinneret/WebView.h:
-
-2006-03-16  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by darin.
-
-        Make build-webkit print correctly to stdout on windows.
-
-        * Scripts/webkitdirs.pm: Fix to use devenv.com instead of devenv.exe
-
-2006-03-15  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by mjs.
-
-        Fix eventSender.mouseClick() to update lastClick timestamp.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (-[EventSendingController mouseClick]):
-
-2006-03-15  Darin Adler  <darin@apple.com>
-
-        Reviewed by Maciej.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Fix path
-        that had a lowercase "i" in it so this builds on case-sensitive
-        file systems.
-
-2006-03-15  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Eric.
-
-        Added run-testkjs and compare-timing-files scripts, to support super
-        accurate JS iBench.
-
-        * Scripts/compare-timing-files: Added.
-        * Scripts/run-testkjs: Added.
-
-2006-03-14  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by mjs.
-
-        Make the URL bar relinquish focus on page load.
-
-        * Spinneret/Spinneret/Spinneret.cpp:
-        (MyEditProc):
-
-2006-03-14  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by mjs.
-
-        Fix WebView to allow KeyFocus.
-        Add handling of space and shift-space for scrolling.
-
-        * Spinneret/Spinneret/WebView.cpp:
-        (WebKit::scrollMessageForKey):
-        (WebKit::WebViewWndProc):
-
-2006-03-10  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by hyatt.
-
-        Add scrolling support into Spinneret.
-
-        * Spinneret/Spinneret/WebFrame.cpp:
-        (WebKit::WebFrame::paint):
-        * Spinneret/Spinneret/WebView.cpp:
-        (WebKit::WebView::createWebView):
-        (WebKit::calculateScrollDelta):
-        (WebKit::scrollMessageForKey):
-        (WebKit::WebViewWndProc):
-
-2006-03-13  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by mjs.
-
-        Fix checksum generation on Intel machines.
-        Also moved to CGImage APIs instead of NSBitmapImageRep, may possibly
-        give a small speed boost now that it uses a shared buffer.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main):
-        (dump):
-        (md5HashStringForBitmap):
-        * DumpRenderTree/ImageDiff.m:
-        (computePercentageDifferent):
-
-2006-03-13  Darin Adler  <darin@apple.com>
-
-        Reviewed by Tim Hatcher.
-
-        * Scripts/run-webkit-tests: Fix httpd handling to work on systems that
-        have it named httpd-1.3 instead.
-
-2006-03-13  Alexey Proskuryakov  <ap@nypop.com>
-
-        Fix proposed by Mitz Pettel, reviewed by Darin Adler.
-
-        - fix http://bugs.webkit.org/show_bug.cgi?id=7718
-          run-webkit-tests fast/dom/HTMLObjectElement/ hangs
-
-        * Scripts/run-webkit-tests: Make test paths canonical, to form proper URLs
-        (sequences of slashes are equivalent to a single slash in POSIX paths, but not
-        in URLs).
-
-2006-03-09  Darin Adler  <darin@apple.com>
-
-        Reviewed by John Sullivan.
-
-        - fix http://bugs.webkit.org/show_bug.cgi?id=7681
-          memory leak in the plug-in tests
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.c:
-        (NPP_Destroy): Added code to release the plug-in object. This is the leak fix.
-        (NPP_SetWindow): Remove unneeded code to store the window pointer.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.c:
-        Moved the browser global in here since it's declared in this file's header.
-        Changed the code to set up the pluginClass structure to not use function
-        pointer casts. Those are dangerous because they can hide many types of mismatch.
-        And indeed when I did this I discovered that many functions were missing their
-        boolean return values or had parameter declarations with the wrong types.
-        (pluginGetProperty): Use STRINGZ_TO_NPVARIANT macro for greater simplicity and
-        clarity. Added boolean return value: return true when successful and false when not.
-        (pluginSetProperty): Added boolean return value, return false since we have no
-        properties we can set.
-        (pluginInvoke): Added boolean return value. Return true when successful and false
-        when not. Use NPVARIANT macros where appropriate. Added a missing release for the
-        return value from calling the browser. Changed code to put the strings in malloc
-        buffers instead of relying on GCC's extension that allows variable-sized arrays
-        on the stack.
-        (pluginInvokeDefault): Added boolean return value, return false since we have no
-        default function to call.
-        (pluginInvalidate): Added missing parameter. Removed comment.
-        (pluginAllocate): Removed unneeded cast. This is C code, not C++, so you don't have
-        to cast the result of malloc.
-        (pluginDeallocate): Removed uneeded cast.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.h: Removed some unneeded
-        includes. Changed our PluginObject to use NPObject instead of re-declaring fields
-        that match NPObject's fields. Removed unused NPWindow pointer.
-
-2006-03-09  Mitz Pettel  <opendarwin.org@mitzpettel.com>
-
-        Test: fast/events/event-sender-mouse-click.html
-
-        Reviewed by Darin Adler.
-
-        - fix http://bugs.webkit.org/show_bug.cgi?id=7583
-          DRT hangs when doing eventSender.mouseDown on native widgets
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (+[EventSendingController isSelectorExcludedFromWebScript:]):
-        (-[EventSendingController mouseClick]): Simulates a click in a native
-        widget by queueing a mouseUp before sending the mouseDown, so that
-        the widget's mouse tracking event loop doesn't hang indefinitely.
-
-2006-03-09  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Eric.
-
-        - make link clicks work by handling link click requests
-        from WebCore
-
-        * Spinneret/Spinneret/Spinneret.cpp:
-        (updateLocationBar):
-        * Spinneret/Spinneret/Spinneret.h:
-        * Spinneret/Spinneret/WebFrame.cpp:
-        (WebKit::WebFrame::WebFrame):
-        (WebKit::WebFrame::openURL):
-        (WebKit::WebFrame::loadURL):
-        * Spinneret/Spinneret/WebFrame.h:
-
-2006-03-08  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by mjs.
-
-        Focus URL bar on Spinneret launch, remove border from WebView.
-        Stop WebFrame from deleting the job (prevent crash).
-
-        * Spinneret/Spinneret/Spinneret.cpp:
-        (_tWinMain):
-        * Spinneret/Spinneret/WebFrame.cpp:
-        (WebKit::WebFrame::receivedAllData):
-        (WebKit::WebFrame::paint):
-        * Spinneret/Spinneret/WebView.cpp:
-        (WebKit::WebView::createWebView):
-
-2006-03-09  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.c:
-        (pluginInvoke): Added a method to test getURL.
-
-2006-03-08  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Eric.
-
-        - load URLs, not file paths, in Spinneret
-
-        * Spinneret/Spinneret/Spinneret.cpp:
-        (MyEditProc):
-        * Spinneret/Spinneret/Spinneret.vcproj:
-        * Spinneret/Spinneret/WebFrame.cpp:
-        (WebKit::WebFrame::loadURL):
-        (WebKit::WebFrame::receivedData):
-        (WebKit::WebFrame::receivedAllData):
-        * Spinneret/Spinneret/WebFrame.h:
-        * Spinneret/Spinneret/WebView.cpp:
-        (WebKit::WebView::WebView):
-
-2006-03-08  Darin Adler  <darin@apple.com>
-
-        Reviewed by Eric.
-
-        - fixed AppleScript layout test results to not be endian-dependent
-          (Hyatt complained to me about this one)
-
-        * DumpRenderTree/AppleScriptController.m: (-[AppleScriptController doJavaScript:]):
-        Added specific code for dumping LongDateTime, instead of dumping the raw bytes
-        (which are endian-dependent).
-
-2006-03-07  Darin Adler  <darin@apple.com>
-
-        Reviewed by Anders.
-
-        - fix http://bugs.webkit.org/show_bug.cgi?id=7655
-          unwanted output while running layout tests
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (checkedMalloc): Added.
-        (checkedRealloc): Added.
-        (makeLargeMallocFailSilently): Added.
-        (main): Call makeLargeMallocFailSilently.
-
-2006-03-06  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Add some more planned renaming.
-
-2006-03-06  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by hyatt.
-
-        * Spinneret/Spinneret/WebFrame.cpp:
-        (WebKit::WebFrame::paint): force layout before painting
-
-2006-03-06  Justin Garcia  <justin.garcia@apple.com>
-
-        Reviewed by darin
-
-        Sent the windowNumber when sending events.
-        Added leapForward so that we don't have to spend time waiting
-        in layout tests that do mouse operations that require delays.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (+[EventSendingController isSelectorExcludedFromWebScript:]):
-        (+[EventSendingController webScriptNameForSelector:]):
-        (-[EventSendingController currentEventTime]):
-        (-[EventSendingController leapForward:]):
-        (-[EventSendingController mouseDown]):
-        (-[EventSendingController mouseUp]):
-        (-[EventSendingController mouseMoveToX:Y:]):
-
-2006-03-05  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Fix a couple of things found while testing.
-        Script now works (after landing my two pending patches).
-
-2006-03-05  Darin Adler  <darin@apple.com>
-
-        - check in a script to do a "big" rename in WebCore
-          (can be run whenever we're ready to do it)
-
-        * Scripts/do-webcore-rename: Added.
-
-2006-03-05  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Eric.
-
-        * Spinneret/Spinneret/WebFrame.cpp:
-        (WebKit::WebFrame::loadFilePath): Close file when done.
-
-2006-03-05  Mitz Pettel  <opendarwin.org@mitzpettel.com>
-
-        Reviewed by Darin, landed by ap.
-
-        - fix http://bugs.webkit.org/show_bug.cgi?id=7589
-          Mouse moved events do not work in DumpRenderTree
-
-        Test: fast/events/event-sender-mouse-moved.html
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (-[EventSendingController mouseMoveToX:Y:]): Pass the correct windowNumber in the event.
-
-2006-03-04  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by hyatt.
-
-        Take advantage of new GraphicsContext constructor to implement double buffering to avoid tearing.
-        Disable background erase to avoid tearing.
-        Fix potential memory smasher from extra long urls.
-
-        * Spinneret/Spinneret/Spinneret.cpp:
-        (MyRegisterClass):
-        * Spinneret/Spinneret/Spinneret.vcproj:
-        * Spinneret/Spinneret/WebFrame.cpp:
-        (WebKit::WebFrame::loadFilePath):
-        (WebKit::WebFrame::paint):
-        * Spinneret/Spinneret/WebView.cpp:
-        (WebKit::registerWebViewWithInstance):
-
-2006-03-04  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by ggaren.
-
-        Hang WebView pointer off of HWND (gets rid of global hack).
-        Remove MessageBox displayed on url change.
-
-        * Spinneret/Spinneret/Spinneret.cpp:
-        (WndProc):
-        (MyEditProc):
-        * Spinneret/Spinneret/WebView.cpp:
-        (WebKit::registerWebViewWithInstance):
-        (WebKit::WebView::createWebView):
-        (WebKit::WebViewWndProc):
-
-2006-03-04  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed by Eric.
-
-        Automatically kill httpd if it appears to be already running.
-
-        * Scripts/run-webkit-tests:
-
-2006-03-04  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Eric.
-
-        * Spinneret/Spinneret/WebFrame.cpp:
-        (WebKit::WebFrame::loadFilePath): Improved local file loading.
-
-2006-03-03  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by hyatt.
-
-        A few more fixes to make run-webkit-tests really work on win32.
-
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.cpp:
-        (localFileTest):
-        * Scripts/run-webkit-tests:
-
-2006-03-03  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by darin.
-
-        Make run-webkit-tests work on win32.
-
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.cpp:
-        (localFileTest):
-        (dumpRenderTreeMain):
-        (dumpRenderTreeToStdOut):
-        (serializeToStdOut):
-        (main):
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-        * Spinneret/Spinneret/WebView.cpp:
-        (WebKit::WebView::WebView):
-
-2006-03-03  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by mjs.
-
-        Add WebFrame class (to hold Frame and FrameView).
-        Add Location bar support to Spinneret.
-
-        * Spinneret/Spinneret/Spinneret.cpp:
-        (resizeSubViews):
-        (_tWinMain):
-        (WndProc):
-        (MyEditProc):
-        * Spinneret/Spinneret/Spinneret.vcproj:
-        * Spinneret/Spinneret/WebFrame.cpp: Added.
-        (WebKit::WebFrame::WebFramePrivate::WebFramePrivate):
-        (WebKit::WebFrame::WebFramePrivate::~WebFramePrivate):
-        (WebKit::WebFrame::WebFrame):
-        (WebKit::WebFrame::loadFilePath):
-        (WebKit::WebFrame::loadHTMLString):
-        (WebKit::WebFrame::paint):
-        (WebKit::WebFrame::impl):
-        (WebKit::WebFrame::viewImpl):
-        * Spinneret/Spinneret/WebFrame.h: Added.
-        * Spinneret/Spinneret/WebView.cpp:
-        (WebKit::WebView::WebViewPrivate::~WebViewPrivate):
-        (WebKit::WebView::WebView):
-        (WebKit::WebView::windowHandle):
-        (WebKit::WebView::mainFrame):
-        (WebKit::WebView::mouseMoved):
-        (WebKit::WebView::mouseDown):
-        (WebKit::WebView::mouseUp):
-        (WebKit::WebView::mouseDoubleClick):
-        (WebKit::WebViewWndProc):
-        * Spinneret/Spinneret/WebView.h:
-
-2006-03-02  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by ggaren.
-
-        * Spinneret/Spinneret/WebView.cpp:
-        (WebKit::registerWebViewWithInstance):
-        (WebKit::WebView::WebView):
-        (WebKit::WebView::mouseMoved):
-        (WebKit::WebView::mouseDown):
-        (WebKit::WebView::mouseUp):
-        (WebKit::WebView::mouseDoubleClick):
-        (WebKit::WebViewWndProc):
-        * Spinneret/Spinneret/WebView.h:
-
-2006-03-01  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by andersca.
-
-        Make spinneret take advantage of the new GraphicsContextCairo.
-
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.cpp:
-        (main): updated to match style guidelines.
-        * Spinneret/Spinneret/Spinneret.cpp:
-        (_tWinMain):
-        * Spinneret/Spinneret/WebView.cpp:
-        (WebKit::registerWebViewWithInstance):
-        (WebKit::WebView::WebView):
-        (WebKit::WebView::~WebView):
-        (WebKit::WebView::drawRect):
-        (WebKit::WndProc):
-        * Spinneret/Spinneret/WebView.h:
-
-2006-03-01  Justin Garcia  <justin.garcia@apple.com>
-
-        Reviewed by darin
-
-        Give the events that eventSender sends a unique eventNumber
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (-[EventSendingController mouseDown]):
-        (-[EventSendingController mouseUp]):
-        (-[EventSendingController mouseMoveToX:Y:]):
-
-2006-03-01  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by hyatt.
-
-        Add a stub win32 application to test WebCore drawing on windows.
-
-        * Spinneret: Added.
-        * Spinneret/Spinneret: Added.
-        * Spinneret/Spinneret.sln: Added.
-        * Spinneret/Spinneret/Resource.h: Added.
-        * Spinneret/Spinneret/Spinneret.cpp: Added.
-        (_tWinMain):
-        (MyRegisterClass):
-        (InitInstance):
-        (WndProc):
-        (About):
-        * Spinneret/Spinneret/Spinneret.h: Added.
-        * Spinneret/Spinneret/Spinneret.ico: Added.
-        * Spinneret/Spinneret/Spinneret.rc: Added.
-        * Spinneret/Spinneret/Spinneret.vcproj: Added.
-        * Spinneret/Spinneret/WebView.cpp: Added.
-        (WebKit::WebView::WebViewPrivate::WebViewPrivate):
-        (WebKit::WebView::WebViewPrivate::~WebViewPrivate):
-        (WebKit::registerWebViewWithInstance):
-        (WebKit::WebView::createWebView):
-        (WebKit::WebView::WebView):
-        (WebKit::WebView::~WebView):
-        (WebKit::WebView::drawRect):
-        (WebKit::WebView::windowHandle):
-        (WebKit::WndProc):
-        * Spinneret/Spinneret/WebView.h: Added.
-        * Spinneret/Spinneret/small.ico: Added.
-        * Spinneret/Spinneret/stdafx.cpp: Added.
-        * Spinneret/Spinneret/stdafx.h: Added.
-
-2006-02-28  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by mjs.
-
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.cpp:
-        (main): add ability to dump render tree and read from a local file.
-
-2006-02-27  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by darin.
-
-        * Scripts/install-win-extras: fix dll permissions & download zlib too.
-
-2006-02-27  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by ggaren.
-
-        Test new KConfig -> PlugInInfoStore change.
-        http://bugs.webkit.org/show_bug.cgi?id=7498
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main): load test netscape plugin
-        * Scripts/run-webkit-tests: style update
-
-2006-02-24  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by mjs.
-
-        Make DumpRenderTree link against icu.
-
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.vcproj:
-
-2006-02-24  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by mjs.
-
-        Make DumpRenderTree link against libxml, etc.
-
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.vcproj:
-
-2006-02-24  Mitz Pettel  <opendarwin.org@mitzpettel.com>
-
-        Reviewed and landed by Anders.
-
-        Prevent rendering to the offscreen window. -[NSWindow displayIfNeeded] was
-        getting called from the run loop, making the view render each test and thus slowing
-        down the tests.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main): Set the offscreen window to not autodisplay.
-
-2006-02-23  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed by Darin Adler.
-
-        - Turn http tests back on by default.
-        - Wait for Apache to actually start serving requests.
-        - Get user id from a built-in variable rather than an external command;
-        don't pass the group.
-
-        * Scripts/run-webkit-tests:
-
-2006-02-23  Alexey Proskuryakov  <ap@nypop.com>
-
-        Suggested by Mitz Pettel, reviewed by Darin Adler.
-
-        * Scripts/run-webkit-tests: Pass User and Group directives, so that Apache
-        can run CGIs even if the permissions are 700 or 600.
-
-2006-02-23  Darin Adler  <darin@apple.com>
-
-        Collaborating with Alexey.
-
-        - turn off http tests by default until we figure out how to get them
-          to run even when permissions on CGI files are 700 instead of 755
-
-        * Scripts/run-webkit-tests: Set $testHTTP to 0 instead of 1 for now.
-
-2006-02-23  Eric Seidel  <eseidel@apple.com>
-
-        Add *.user to ignore list.
-
-2006-02-23  Eric Seidel  <eseidel@apple.com>
-
-        Remove binary file which shouldn't have been commited (and add to ignore list).
-
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree.ncb: Removed.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree.suo: Removed.
-
-2006-02-22  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed by Eric.
-
-        * Scripts/run-webkit-tests: Put Apache log files in the right directory.
-
-2006-02-22  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by Tim Hatcher.
-
-        Fix install-win-extras to not try to re-install setx if installed.
-
-        * Scripts/install-win-extras:
-
-2006-02-22  Eric Seidel  <eseidel@apple.com>
-
-        One more file possibly missing from previous commit?
-
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree.ncb:
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree.suo:
-
-2006-02-22  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by justing.
-
-        Files missing from previous commit.
-
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree.suo:
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.vcproj:
-
-2006-02-22  Eric Seidel  <eseidel@apple.com>
-
-        Rubber-stamped by justing.
-
-        Corrected path for DumpRenderTree.intermediate files
-
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree.suo:
-
-2006-02-22  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by justing.
-
-        Fixed build-dumprendertree to exit with correct error codes.
-
-        * Scripts/build-dumprendertree:
-
-2006-02-22  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by justing.
-
-        Update build scripts to generalize building on Win32, and allow
-        building of DumpRenderTree on Win32 from build-dumprendertree.
-
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.cpp:
-        (main):
-        * Scripts/build-dumprendertree:
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-
-2006-02-22  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by hyatt.
-
-        * DumpRenderTree/DumpRenderTree.vcproj: Added.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree: Added.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree.ncb: Added.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree.sln: Added.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree.suo: Added.
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.cpp: Added.
-        (_tmain):
-        * DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.vcproj: Added.
-        * Scripts/build-webkit: make build-webkit cleanup after itself
-
-2006-02-22  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed by Darin Adler.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=7409
-          Some minor fixes to http tests.
-
-        * Scripts/run-webkit-tests: Pass CustomLog and ErrorLog directives to httpd.
-
-2006-02-21  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed by Darin Adler.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=6197
-          Would like to use locally installed Apache for testing.
-
-        Added two run-webkit-tests options:
-          --http (--nohttp)  - whether to launch Apache (defaults to yes);
-          --port - which port to listen on (defaults to 8000).
-
-        Tests in LayoutTests/http are not run directly, and Apache is used instead.
-        For example, http/tests/xmlhttprequest/post-content-type.html is loaded as
-        http://127.0.0.1:8000/xmlhttprequest/post-content-type.html.
-
-        Also added support for .shtml and .text files. Text files give an empty
-        *-expected.txt, but a correct image.
-
-        Apache only listens on the loopback interface. It writes logs to /tmp/WebKit.
-
-        * Scripts/run-webkit-tests:
-
-2006-02-21  Darin Adler  <darin@apple.com>
-
-        Suggested by Mark Rowe.
-
-        * Scripts/run-webkit-tests: Don't include the number of excluded leaks when
-        reporting leak counts.
-
-2006-02-18  Maciej Stachowiak <mjs@apple.com>
-
-        Reviewed by Darin Adler.
-
-        - Added install-win-extras script which installs some extra
-        programs and libraries, and does Windows first-time setup.
-
-        * Scripts/build-webkit: Add a newline between build results.
-        * Scripts/install-win-extras: Added.
-
-2006-02-19  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed by Darin Adler.
-
-        - http://bugs.webkit.org/show_bug.cgi?id=7308
-          DumpRenderTree should be able to load files via HTTP
-
-        * DumpRenderTree/DumpRenderTree.m: (dumpRenderTree):
-        Handle tests starting with "http://" as real URLs, not file system paths.
-
-2006-02-19  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed by Maciej.
-
-        - fix http://bugs.webkit.org/show_bug.cgi?id=7357
-          REGRESSION: Warnings from WebKit scripts if PBXProductDirectory is undefined
-
-        * Scripts/webkitdirs.pm: only call chomp if PBXProductDirectory is configured.
-
-2006-02-18  Darin Adler  <darin@apple.com>
-
-        * Scripts/commit-log-editor: Added.
-
-2006-02-17  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by hyatt.
-
-        Make Win32 have the same default "WebKitBuild" directory behavior.
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-
-2006-02-17  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by Beth.
-
-        * Scripts/build-webkit: make win32 actually report errors
-
-2006-02-17  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by adele.
-
-        * Scripts/run-webkit-tests: Ignore quicktime plugin leaks
-
-2006-02-17  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by adele.
-
-        * Scripts/run-webkit-tests: Ignore flash leaks
-
-2006-02-15  Justin Garcia  <justin.garcia@apple.com>
-
-        Reviewed by darin
-
-        <http://bugs.webkit.org/show_bug.cgi?id=7148>
-        Add drag and drop support to DumpRenderTree
-
-        Intercept the drag start using the new UI delegate method, package an NSDraggingInfo,
-        and send dragging updates.  Put DumpRenderTree's WebView into an offscreen window.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main):
-        (-[WaitUntilDoneDelegate webView:didCommitLoadForFrame:]):
-        (-[WaitUntilDoneDelegate webView:dragImage:at:offset:event:pasteboard:source:slideBack:forView:]):
-        (-[WaitUntilDoneDelegate webViewFocus:]):
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (+[LayoutTestController webScriptNameForSelector:]):
-        (-[LayoutTestController setWindowIsKey:]):
-        (-[LayoutTestController setMainFrameIsFirstResponder:]):
-        (-[EventSendingController init]):
-        (-[EventSendingController mouseDown]):
-        (-[EventSendingController mouseUp]):
-        (-[EventSendingController mouseMoveToX:Y:]):
-        (dumpRenderTree):
-        (-[DumpRenderTreeWindow isKeyWindow]):
-        (-[DumpRenderTreeDraggingInfo initWithImage:offset:pasteboard:source:]):
-        (-[DumpRenderTreeDraggingInfo dealloc]):
-        (-[DumpRenderTreeDraggingInfo draggingDestinationWindow]):
-        (-[DumpRenderTreeDraggingInfo draggingSourceOperationMask]):
-        (-[DumpRenderTreeDraggingInfo draggingLocation]):
-        (-[DumpRenderTreeDraggingInfo draggedImageLocation]):
-        (-[DumpRenderTreeDraggingInfo draggedImage]):
-        (-[DumpRenderTreeDraggingInfo draggingPasteboard]):
-        (-[DumpRenderTreeDraggingInfo draggingSource]):
-        (-[DumpRenderTreeDraggingInfo draggingSequenceNumber]):
-        (-[DumpRenderTreeDraggingInfo slideDraggedImageTo:]):
-        (-[DumpRenderTreeDraggingInfo namesOfPromisedFilesDroppedAtDestination:]):
-        * DumpRenderTree/TextInputController.m:
-        (-[TextInputController firstRectForCharactersFrom:length:]):
-        (-[TextInputController characterIndexForPointX:Y:]):
-
-2006-02-15  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Eric.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (-[LayoutTestController invokeUndefinedMethodFromWebScript:withArguments:]):
-        Added a dummy method for the sake of LayoutTests/plugins/
-        undefined-property-crash.html. (It tests a crash due to fallback
-        object use. WebCore won't create a fallback object if the method is
-        not defined.)
-
-2006-02-14  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by adele.
-
-        * Scripts/run-webkit-tests: added --results-directory (-o) option
-
-2006-02-09  Eric Seidel  <eseidel@apple.com>
-
-        Rubber-stamped by mjs.
-
-        Renamed split-class to split-file-by-class.
-
-        * Scripts/build-webkit: Updated copyright.
-        * Scripts/split-class: Removed.
-        * Scripts/split-file-by-class: Added.
-
-2006-02-08  Eric Seidel  <eseidel@apple.com>
-
-        Rubber-stamped by mjs.
-
-        Adding new script for splitting multi-class files.
-        Also adding supporting perl module with space removing heuristics.
-
-        * Scripts/SpacingHeuristics.pm: Added.
-        * Scripts/build-drawtest: updated copyright header
-        * Scripts/split-class: Added.
-
-2006-02-08  Justin Garcia  <justin.garcia@apple.com>
-
-        Reviewed by thatcher
-
-        Changes to test fix for:
-        <http://bugs.webkit.org/show_bug.cgi?id=3982>
-        webViewDidBeginEditing, webViewDidEndEditing notification methods not called on delegate
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (-[WaitUntilDoneDelegate webView:didCommitLoadForFrame:]):
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]):
-        (+[LayoutTestController webScriptNameForSelector:]):
-        (-[LayoutTestController setWindowHasFocus:]):
-        (-[LayoutTestController setDisplaysWithFocusAttributes:]):
-
-2006-02-07  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed by Timothy.
-
-        Support automated testing of AppleScript "do JavaScript" command
-        http://bugs.webkit.org/show_bug.cgi?id=7012
-
-        * DumpRenderTree/AppleScriptController.h: Added.
-        * DumpRenderTree/AppleScriptController.m: Added.
-        * DumpRenderTree/DumpRenderTree.m:
-        (-[WaitUntilDoneDelegate webView:windowScriptObjectAvailable:]):
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-
-2006-02-06  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by hyatt.
-
-        Fix build-webkit for use on win32 (unblocks buildbot usage).
-        http://bugs.webkit.org/show_bug.cgi?id=7122
-
-        * Scripts/build-webkit: use ifCygwin() to conditionalize builds
-        * Scripts/webkitdirs.pm: add ifOSX() and ifCygwin()
-
-2006-02-06  Eric Seidel  <eseidel@apple.com>
-
-        Rubber-stamped by darin & mjs.
-
-        Added new support directory for build slave scripts.
-        Committing the first script, for use by the PLT's build slave.
-        This script is used to kick of the PLT (Page Load Test) slave.
-
-        * BuildSlaveSupport: Added.
-        * BuildSlaveSupport/run-performance-tests: Added.
-
-2006-02-06  Eric Seidel  <eseidel@apple.com>
-
-        Rubber-stamped by darin.
-
-        Adding setSourceDir for scripts stored in non-standard locations.
-
-        * Scripts/webkitdirs.pm:
-
-2006-02-04  Darin Adler  <darin@apple.com>
-
-        * Scripts/webkitdirs.pm: Add a compatibilty hack for people with old
-        Configuration files that say Development or Deployment in them.
-
-2006-02-04  Darin Adler  <darin@apple.com>
-
-        * Scripts/make-js-test-wrappers: Don't create a wrapper if there's a disabled
-        wrapper already in the directory.
-        * Scripts/svn-apply: Handle additions and deletions properly -- I've been noticing
-        these haven't been working at all.
-        * Scripts/svn-unapply: Ditto.
-
-2006-02-03  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Justin.
-
-        Renamed configuration names to Debug, Release and Production.
-
-        * DrawTest/DrawTest.xcodeproj/project.pbxproj:
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * Scripts/set-webkit-configuration:
-        * Scripts/webkitdirs.pm:
-
-2006-02-02  Justin Garcia  <justin.garcia@apple.com>
-
-        Reviewed by thatcher
-
-        Enabled spell checking for layout tests.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main):
-
-2006-01-29  Darin Adler  <darin@apple.com>
-
-        * Scripts/svn-apply: Added comments about things we should do to improve.
-        * Scripts/svn-create-patch: Ditto.
-        * Scripts/svn-unapply: Ditto.
-
-2006-01-28  Darin Adler  <darin@apple.com>
-
-        * DumpRenderTree/DumpRenderTree.m: (dump): Dump the image if it's not
-        already there, even if the checksum is correct.
-
-2006-01-27  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by adele.
-
-        * Scripts/run-webkit-tests: make new tests use absolute urls
-
-2006-01-27  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by mjs.
-
-        make run-webkit-tests output total leaks count
-
-        * Scripts/run-webkit-tests:
-
-2006-01-27  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by mjs.
-
-        run-webkit-test --leaks crashes (malloc logging runs out of memory)
-        http://bugs.webkit.org/show_bug.cgi?id=6869
-
-        * Scripts/run-webkit-tests: fix --leaks to not crash
-
-2006-01-26  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by darin.
-
-        run-webkit-tests should produce a self-contained results directory
-        http://bugs.webkit.org/show_bug.cgi?id=6864
-
-        * Scripts/run-webkit-tests: copy failing items to results dir.
-
-2006-01-23  Darin Adler  <darin@apple.com>
-
-         - fix http://bugs.webkit.org/show_bug.cgi?id=3608
-           need script to update localizable strings file in WebKit
-
-        * Scripts/update-webkit-localizable-strings: Added.
-
-2006-01-23  Darin Adler  <darin@apple.com>
-
-        - added a couple of scripts -- more about these two soon
-
-        * Scripts/extract-localizable-strings: Added.
-        * Scripts/merge-changelog: Added.
-
-2006-01-22  Mark Rowe  <opendarwin.org@bdash.net.nz>
-
-        Reviewed by Anders.
-
-        Build fix.  build-webkit dies with "invalid build action: (empty string)"
-
-        * Scripts/build-webkit:
-        Use svgOptions in an array context so xcodebuild doesn't choke on an empty argument.
-
-2006-01-22  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by anders.
-
-        Fix --no-svg option to use XCode flags instead of gcc flags.
-
-        * Scripts/build-webkit:
-
-2006-01-22  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by anders.
-
-        Update build-webkit to use -USVG_SUPPORT instead of -no-SVG target.
-
-        * Scripts/build-webkit:
-
-2006-01-20  David Kilzer  <ddkilzer@kilzer.net>
-
-        Reviewed by eseidel.
-
-        - fix for http://bugs.webkit.org/show_bug.cgi?id=6682
-        Call to checkWebCoreSVGSupport() broken in build-drawtest and run-drawtest
-
-        * Scripts/build-drawtest: Changed bareword 'true' to 1.
-        * Scripts/run-drawtest: Changed bareword 'true' to 1.
-
-2006-01-19  Darin Adler  <darin@apple.com>
-
-        * Scripts/report-include-statistics: Added a new script.
-
-2006-01-19  Timothy Hatcher  <timothy@apple.com>
-
-        * Scripts/build-webkit: include JavaScriptGlue in the build
-
-2006-01-19  Darin Adler  <darin@apple.com>
-
-        * Scripts/webkitdirs.pm: Changed SVG check to work even if the path has
-        spaces in it by using the form of open that treats each argument as a string
-        rather than backtick syntax for reading the output of the nm tool.
-
-2006-01-12  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Darin Adler.
-
-        - make prepare-ChangeLog way faster by using svn diff instead of svn status to
-        detect if there are any new tests
-
-        * Scripts/prepare-ChangeLog:
-
-2006-01-12  Darin Adler  <darin@apple.com>
-
-        - removed some of the cvs-specific scripts -- not needed for this project any more
-
-        * Scripts/cvs-abandon: Removed.
-        * Scripts/cvs-apply: Removed.
-        * Scripts/cvs-create-patch: Removed.
-        * Scripts/cvs-unapply: Removed.
-
-2006-01-10  Mark Rowe  <opendarwin.org@bdash.net.nz>
-
-        Reviewed by eseidel.  Committed by eseidel.
-
-        - run-webkit-tests always launches Safari when tests fail
-        http://bugs.webkit.org/show_bug.cgi?id=6456
-
-        * Scripts/run-webkit-tests:
-        Add a command-line flag to prevent Safari being launched to display failed
-        tests.  Always exit with non-zero status when tests have failed.
-
-2006-01-10  Mark Rowe  <opendarwin.org@bdash.net.nz>
-
-        Reviewed by eseidel.  Committed by eseidel.
-
-        - build-webkit should exit with non-zero status when build fails
-        http://bugs.webkit.org/show_bug.cgi?id=6459
-
-        * Scripts/build-webkit:
-        Use correct bits of subprocess exit code when passing back through
-        as build-webkit's exit code.
-
-2006-01-10  Eric Seidel  <eseidel@apple.com>
-
-        Restored corrupted nibs from TOT CVS.
-
-        * DrawTest/English.lproj/DrawTestDocument.nib: Replaced.
-        * DrawTest/English.lproj/DrawTestDocument.nib/classes.nib: Replaced.
-        * DrawTest/English.lproj/DrawTestDocument.nib/info.nib: Replaced.
-        * DrawTest/English.lproj/DrawTestDocument.nib/keyedobjects.nib: Replaced.
-        * DrawTest/English.lproj/Inspector.nib: Replaced.
-        * DrawTest/English.lproj/Inspector.nib/classes.nib: Replaced.
-        * DrawTest/English.lproj/Inspector.nib/info.nib: Replaced.
-        * DrawTest/English.lproj/Inspector.nib/keyedobjects.nib: Replaced.
-        * DrawTest/English.lproj/MainMenu.nib: Replaced.
-        * DrawTest/English.lproj/MainMenu.nib/classes.nib: Replaced.
-        * DrawTest/English.lproj/MainMenu.nib/info.nib: Replaced.
-        * DrawTest/English.lproj/MainMenu.nib/keyedobjects.nib: Replaced.
-        * DrawTest/English.lproj/TestViewer.nib: Replaced.
-        * DrawTest/English.lproj/TestViewer.nib/classes.nib: Replaced.
-        * DrawTest/English.lproj/TestViewer.nib/info.nib: Replaced.
-        * DrawTest/English.lproj/TestViewer.nib/keyedobjects.nib: Replaced.
-
-2006-01-10  Nefaur Khandker  <nefaurk@gmail.com>
-
-        Reviewed by eseidel.  Committed by eseidel.
-
-        DrawTestView now subclasses WebView instead of DrawView.
-
-        * DrawTest/DrawTest.xcodeproj/project.pbxproj:
-        * DrawTest/DrawTestDocument.h:
-        * DrawTest/DrawTestDocument.m:
-        (-[DrawTestDocument dealloc]):
-        (-[DrawTestDocument readFromFile:ofType:]):
-        (-[DrawTestDocument windowControllerDidLoadNib:]):
-        (-[DrawTestDocument dumpSVGToConsole:]):
-        (-[DrawTestDocument openSourceForSelection:]):
-        (-[DrawTestDocument dataRepresentationOfType:]):
-        * DrawTest/DrawTestToolbarController.h:
-        * DrawTest/DrawTestToolbarController.m:
-        (-[DrawTestToolbarController initWithDrawView:]):
-        (-[DrawTestToolbarController clickedToolbarItem:]):
-        (-[DrawTestToolbarController validateToolbarItem:]):
-        * DrawTest/DrawTestView.h:
-        * DrawTest/DrawTestView.m:
-        (-[DrawTestView initWithFrame:]):
-        (-[DrawTestView setDocument:]):
-        * DrawTest/SVGTest.h:
-        * DrawTest/SVGTest.m:
-        (+[SVGTest sharedDrawView]):
-        (-[SVGTest generateCompositeIfNecessary]):
-        * DrawTest/TestController.h:
-        * DrawTest/TestController.m:
-        (-[TestController awakeFromNib]):
-        (-[TestController setSelectedTest:]):
-        (-[TestController openTestViewerForSelection:]):
-        (-[TestController toggleViewersScaleRule:]):
-        * DrawTest/TestViewerSplitView.m:
-        (-[TestViewerSplitView drawRect:]):
-
-2006-01-10  Anders Carlsson  <andersca@mac.com>
-
-        Reviewed by Timothy.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main): Set the default language to "en", so language tests will work.
-
-2006-01-08  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Eric.
-
-        - script to generate HTML wrappers for JS tests
-        http://bugs.webkit.org/show_bug.cgi?id=6441
-
-        * Scripts/make-js-test-wrappers: Added.
-
-2006-01-08  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Eric.
-
-        * Scripts/svn-create-patch: Fix to work when passed directory names.
-
-2006-01-08  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Eric.
-
-        - Added back/forward navigation support to DumpRenderTree. Hopefully we
-        can start writing automated loader tests now. I have one in the works.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main): Construct global navigationController on entry, destroy on exit.
-        Set frame to nil on exit too, to match all the other global objects.
-        (Probably academic, since the process is exiting, anyway.)
-        (-[WaitUntilDoneDelegate webView:didFinishLoadForFrame:]): Notify the
-        navigationController, in case it wants to kick off a load.
-        (-[WaitUntilDoneDelegate webView:windowScriptObjectAvailable:]): Expose
-        the navigationController to scripting.
-
-        New class, should be straightforward:
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/NavigationController.h: Added.
-        * DumpRenderTree/NavigationController.m: Added.
-
-        (+[NavigationController isSelectorExcludedFromWebScript:]):
-        (+[NavigationController webScriptNameForSelector:]):
-        (-[NavigationController setPendingScript:]):
-        (-[NavigationController setPendingRequest:]):
-        (-[NavigationController evaluateWebScript:afterBackForwardNavigation:]):
-        (-[NavigationController webView:didFinishLoadForFrame:]):
-        (-[NavigationController dealloc]):
-
-2006-01-08  Timothy Hatcher  <timothy@apple.com>
-
-        Removed this script, no longer needs with the Subversion switch.
-
-        * checkout: Removed.
-
-2006-01-08  Timothy Hatcher  <timothy@apple.com>
-
-        Removes some stray tabs.
-
-        * Scripts/update-webkit:
-
-2005-01-07  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by darin.
-
-        build-webkit should pass on build arguments from command line
-        http://bugs.webkit.org/show_bug.cgi?id=5854
-
-        * Scripts/build-webkit:
-
-2006-01-07  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by mjs & xenon.
-
-        * Scripts/update-webkit: support Internal updates as well
-
-2006-01-06  Geoffrey Garen  <ggaren@apple.com>
-
-        Temporarily rolling out plugin support from DumpRenderTree because it
-        caused lots of layout test regressions.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main): Remove invisible window added to support plugins.
-
-2006-01-06  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by darin.
-
-        - Fixed http://bugs.webkit.org/show_bug.cgi?id=6361
-        Add plugin support to DumpRenderTree
-
-        Also wrote first test plugin.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main):
-        (1) Put the WebView in an invisible window, because PlugIns are
-        optimized not to load if there's no parent window.
-        (2) Tell WebKit to load any PlugIns in the directory from which we
-        loaded. This means we can build nasty PlugIns alongside DumpRenderTree
-        and they'll load automagically during layout testing, but they won't be
-        added to the user's system, hosing apps like Safari.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Added new
-        test PlugIn to project.
-
-        PlugIn added to project:
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/Info.plist: Added.
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.c: Added.
-        (getPluginClass):
-        (initializeIdentifiers):
-        (pluginHasProperty):
-        (pluginHasMethod):
-        (pluginGetProperty):
-        (pluginSetProperty):
-        (pluginInvoke):
-        (pluginInvokeDefault):
-        (pluginInvalidate):
-        (pluginAllocate):
-        (pluginDeallocate):
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.h: Added.
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.c: Added.
-        (NP_Initialize):
-        (NP_GetEntryPoints):
-        (NP_Shutdown):
-        (NPP_New):
-        (NPP_Destroy):
-        (NPP_SetWindow):
-        (NPP_NewStream):
-        (NPP_DestroyStream):
-        (NPP_WriteReady):
-        (NPP_Write):
-        (NPP_StreamAsFile):
-        (NPP_Print):
-        (NPP_HandleEvent):
-        (NPP_URLNotify):
-        (NPP_GetValue):
-        (NPP_SetValue):
-
-2006-01-04  Timothy Hatcher  <timothy@apple.com>
-
-        Reviewed by Darin Adler.
-        Created by Eric.
-        Tweaked and tested by me.
-
-        New scripts to work with Subversion when the switch happens.
-        These will replace cvs-apply, cvs-unapply, and cvs-create-patch.
-
-        * Scripts/svn-apply: Added.
-        * Scripts/svn-create-patch: Added.
-        * Scripts/svn-unapply: Added.
-
-2005-12-30  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by mjs.
-
-        Move WebView width/height logic into DumpRenderTree to support
-        running the W3C SVG 1.1 tests along side other tests.  The W3C
-        SVG 1.1 tests require a 480x360 view.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main): don't accept width/height
-        (dump): override width/height for SVG/W3C
-        * Scripts/run-webkit-tests: don't pass width/height
-
-2005-12-30  Eric Seidel  <eseidel@apple.com>
-
-        No review, only removing dead code.
-
-        * DumpKCanvasTree/DumpKCanvasTree.m: Removed.
-        * DumpKCanvasTree/DumpKCanvasTree.xcodeproj/project.pbxproj: Removed.
-
-2005-12-30  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by darin.
-
-        DumpRenderTree should set a consistent color profile while running
-        http://bugs.webkit.org/show_bug.cgi?id=6155
-
-        Creates consistent colormatched renderings on every test machine
-        using the only way possible with Tiger APIs: by setting the
-        system color profile on the test machine for the duration of the
-        tests.  This will (unfortunately) cause colors to change while
-        running DumpRenderTree.  This can also cause "permanent" color
-        changes to occur if DRT is to crash (SIGSEGV, etc.) while running.
-        This is far from ideal, but it's be best way we've found to deal
-        with the issue for now.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (restoreColorSpace):
-        (setDefaultColorProfileToRGB):
-        (main):
-
-2005-12-20  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed by Darin Adler.
-
-        - fix http://bugs.webkit.org/show_bug.cgi?id=5846
-          cvs-create-patch --include produces incorrect paths
-
-        * Scripts/cvs-create-patch: Handle newly-added directories using chdir.
-
-2005-12-19  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by darin.
-
-        * Scripts/run-webkit-tests: stop /etc/catalog warnings
-
-2005-12-19  Darin Adler  <darin@apple.com>
-
-        Reviewed by Eric Seidel.
-
-        - fix http://bugs.webkit.org/show_bug.cgi?id=4990
-          WebKit needs to use a local pasteboard during testing
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main): Call poseAs to substitute our NSPasteboard class for the default one.
-        Create a local pasteboard (really a global one with a unique name) and release
-        it when exiting from the function so we don't leave it in the pasteboard server.
-        (dumpRenderTree): Added an autorelease pool around one small bit of code that
-        ddn't have one. Fixed a leak in an unlikely error case.
-        (+[DumpRenderTreePasteboard generalPasteboard]): Override the default version
-        of this method to return our local pasteboard.
-
-2005-12-15  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by Tim Hatcher.
-
-        * Scripts/build-webkit: --svg is now default!
-
-2005-12-15  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by mjs.
-
-        Don't run svg test automatically if +SVG is built (yet).
-
-        * Scripts/run-webkit-tests:
-
-2005-12-15  Darin Adler  <darin@apple.com>
-
-        * Scripts/run-webkit-tests: Don't run tests in directories named "svg" if SVG
-        support is not compiled in. Report the 10 slowest tests if "--slowest" is
-        passed on the command line.
-
-2005-12-06  John Sullivan  <sullivan@apple.com>
-
-        Reviewed by Darin Adler.
-
-        * Scripts/prepare-ChangeLog:
-        Remove special-case handling for nib files. This avoided trouble with cvs diff
-        when we were using wrappers for nib files. Now that we aren't using wrappers,
-        there's no reason to avoid adding the modified nib files to the file list that
-        gets diffed.
-
-2005-12-05  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by mjs.
-
-        Script updates for SVG files move (remove references to SVGSupport)
-
-        * Scripts/build-webkit: remove SVGSupport
-        * Scripts/run-webkit-tests: Resources -> resources for --svg
-        * Scripts/update-webkit: remove SVGSupport
-
-2005-12-05  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed mjs.
-
-        * checkout: remove --svg support, SVG is now checked out by default
-
-2005-11-29  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by darin.
-
-        Update scripts to run SVG tests automatically (w/o --svg) if
-        WebCore is built with SVG support.
-
-        * Scripts/build-drawtest: SVG support required
-        * Scripts/build-dumpkcanvastree: Removed.
-        * Scripts/run-drawtest: SVG support required to run
-        * Scripts/run-webkit-tests: pass *.svg files if WebCore has support
-        * Scripts/webkitdirs.pm: changed CheckWebCoreSVGSupport
-
-2005-11-28  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed by Darin Adler. Committed by Maciej.
-
-        - fixed "DumpRenderTree should test for Ahem before doing anything else"
-        (http://bugs.webkit.org/show_bug.cgi?id=5838)
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main):
-
-2005-11-28  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by sullivan and GGAREN.
-
-        Minor additions to make error messages more clear from cvs-apply.
-
-        * Scripts/cvs-apply: make errors more clear
-
-2005-11-27  Oliver Hunt  <ojh16@student.canterbury.ac.nz>
-
-        Reviewed and committed by Maciej.
-
-        - fixed cvs-create-patch --include produces incorrect paths
-        (http://bugs.webkit.org/show_bug.cgi?id=5846)
-
-        * Scripts/cvs-create-patch: produce proper paths for new files.
-
-2005-11-21  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by hyatt.
-
-        Some simple fixes to the build/test scripts now that SVG uses the
-        WebCore DOM.  JSC+SVG is no longer needed, nor is RTTI support
-        or symlinks for KDOM.
-
-        * Scripts/build-webkit: No longer builds JavaScriptCore+SVG
-        * Scripts/prepare-ChangeLog: handles missing LayoutTests directory
-        * Scripts/run-webkit-tests: now runs SVG tests using DRT
-        * Scripts/webkitdirs.pm: use SVG symbols instead of RTTI
-        * checkout: no longer symlink kdom
-
-2005-11-10  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by ggaren.
-
-        * Scripts/build-webkit: Pass through options to xcodebuild
-
-2005-11-07  Darin Adler  <darin@apple.com>
-
-        * Scripts/cvs-apply: Fix case where the patch has files at the top level.
-
-2005-11-03  John Sullivan  <sullivan@apple.com>
-
-        Reviewed by Darin Adler.
-
-        * Scripts/run-safari:
-        changed message to say "Starting Safari" instead of odd "Start Safari"
-        * Scripts/run-webkit-tests:
-        changed the way we pass the file parameter to use -NSOpen rather than relying on
-        unlabeled arguments being treated as files. This was failing on some machines that
-        (mysteriously) had NSTreatUnknownArgumentsAsOpen set to NO in com.apple.Safari.plist.
-
-2005-10-27  Geoffrey Garen  <ggaren@apple.com>
-
-        Patch by Alexey Proskuryakov.
-
-        Reviewed by Maciej.
-
-        Fixes http://bugs.webkit.org/show_bug.cgi?id=5303
-        TextInputController should support attributed strings
-
-        * DumpRenderTree/TextInputController.m:
-        (+[NSMutableAttributedString isSelectorExcludedFromWebScript:]):
-        (+[NSMutableAttributedString webScriptNameForSelector:]):
-        (-[NSMutableAttributedString getLength]):
-        (-[NSMutableAttributedString attributeNamesAtIndex:]):
-        (-[NSMutableAttributedString valueOfAttribute:atIndex:]):
-        (-[NSMutableAttributedString addAttribute:value:]):
-        (-[NSMutableAttributedString addAttribute:value:from:length:]):
-        (-[NSMutableAttributedString addColorAttribute:red:green:blue:alpha:]):
-        (-[NSMutableAttributedString addColorAttribute:red:green:blue:alpha:from:length:]):
-        (-[NSMutableAttributedString addFontAttribute:fontName:size:]):
-        (-[NSMutableAttributedString addFontAttribute:fontName:size:from:length:]):
-        (+[TextInputController isSelectorExcludedFromWebScript:]):
-        (+[TextInputController webScriptNameForSelector:]):
-        (-[TextInputController insertText:]):
-        (-[TextInputController attributedSubstringFrom:length:]):
-        (-[TextInputController attributedStringWithString:]):
-
-2005-10-11  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by hyatt.
-
-        Checks for leaks in ImageDiff too.
-
-        * Scripts/run-webkit-tests:
-
-2005-10-09  Darin Adler  <darin@apple.com>
-
-        * Scripts/check-dom-results: Dump ".xhtml" for tests in the xhtml directory.
-        * Scripts/cvs-apply: Handle added/deleted files in the current directory.
-        * Scripts/cvs-unapply: Ditto.
-        * Scripts/run-webkit-tests: Add a few more false-positive leaks.
-
-2005-10-08  Alexey Proskuryakov  <ap@nypop.com>
-
-        Reviewed, rearranged and landed by Darin Adler.
-
-        - fixed http://bugs.webkit.org/show_bug.cgi?id=4707
-          Need a way to automatically test for regressions in NSTextInput implementation
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (-[WaitUntilDoneDelegate webView:windowScriptObjectAvailable:]):
-        Create a text input controller and put it in a property of the window object.
-
-        * DumpRenderTree/TextInputController.h: Added.
-        * DumpRenderTree/TextInputController.m: Added.
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Added files.
-
-2005-10-06  Darin Adler  <darin@apple.com>
-
-        * Scripts/cvs-apply: Fixed merge option to work better when not all directories
-        are controlled by cvs, or when changes cross multiple repositories.
-        * Scripts/update-webkit: Don't print messages if the "quiet" flag is set.
-
-2005-10-03  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by mjs.
-
-        Make mouseDown and mouseUp force layout before acting.
-        This is used by a new test case for 4233558.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (-[EventSendingController mouseDown]): force layout
-        (-[EventSendingController mouseUp]): force layout
-
-2005-09-30  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by xenon.
-
-        Updated all the scripts for the move:
-        WebCore/layout-tests -> LayoutTests
-
-        * Scripts/check-dom-results:
-        * Scripts/prepare-ChangeLog:
-        * Scripts/run-webkit-tests:
-        * Scripts/update-webkit: added --no-tests
-        * checkout: added --no-tests
-
-2005-09-28  Darin Adler  <darin@apple.com>
-
-        - fixed http://bugs.webkit.org/show_bug.cgi?id=5144
-          pixel test should run even if render trees differ
-
-        * Scripts/run-webkit-tests: Don't check if the text dump matches.
-
-2005-09-27  Eric Seidel  <eseidel@apple.com>
-
-        No review needed, SVG build fix only.
-
-        * DumpKCanvasTree/DumpKCanvasTree.m:
-        Missed one in my previous checkin.
-        http://bugs.webkit.org/show_bug.cgi?id=5141
-
-2005-09-26  Eric Seidel  <eseidel@apple.com>
-
-        No review needed, SVG build fix only.
-
-        * DrawTest/DrawTestDocument.m:
-        * DrawTest/DrawTestToolbarController.m:
-        * DrawTest/DrawTestView.h:
-        * DrawTest/DrawTestView.m:
-        * DrawTest/SVGTest.m:
-        * DrawTest/TestController.m:
-        Updated for WebCore+SVG -> WebCore rename.
-        http://bugs.webkit.org/show_bug.cgi?id=5141
-
-2005-09-26  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by hyatt.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (dump): updated error message
-        * Scripts/check-dom-results: now includes xhtml
-        Tool updates for xhtml.
-        http://bugs.webkit.org/show_bug.cgi?id=4907
-
-2005-09-22  Duncan Wilcox  <duncan@mclink.it>
-
-        Reviewed by Maciej.
-        Landed by Darin Adler.
-
-        - patch for <http://bugs.webkit.org/show_bug.cgi?id=4963>
-        "Would like to simulate human interaction with webview"
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (-[WaitUntilDoneDelegate webView:windowScriptObjectAvailable:]):
-        (+[EventSendingController isSelectorExcludedFromWebScript:]):
-        (+[EventSendingController webScriptNameForSelector:]):
-        (-[EventSendingController init]):
-        (-[EventSendingController mouseDown]):
-        (-[EventSendingController mouseUp]):
-        (-[EventSendingController mouseMoveToX:Y:]):
-        Add eventSender javascript object, that sends fake mouse events to the webview.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        link with Carbon.framework
-
-2005-09-22  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by mjs.
-
-        Update tools for WebCore+SVG -> WebCore rename.
-        Also fold several SVG specific tools into their original
-        WebCore counterparts.
-        http://bugs.webkit.org/show_bug.cgi?id=5003
-
-        * DrawTest/DrawTest.xcodeproj/project.pbxproj:
-        * DumpKCanvasTree/DumpKCanvasTree.xcodeproj/project.pbxproj:
-        * Scripts/build-drawtest:
-        * Scripts/build-dumpkcanvastree:
-        * Scripts/build-webcore-svg: Removed.
-        * Scripts/build-webkit: added --svg option
-        * Scripts/run-drawtest:
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm: various additions.
-        * checkout: added --svg option
-        * checkout-svg: Removed.
-
-2005-09-19  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by darin.
-
-        * Scripts/run-webkit-tests: added --guard-malloc option
-        http://bugs.webkit.org/show_bug.cgi?id=4613
-
-2005-09-16  Justin Garcia  <justin.garcia@apple.com>
-
-        Reviewed by geoff
-
-        Removed a script that is only used by apple internal developers
-
-        * Scripts/update-webkitsysteminterface: Removed.
-
-2005-09-16  Adele Peterson  <adele@apple.com>
-
-        Reviewed by Maciej.
-
-        * Scripts/prepare-ChangeLog: Allow semicolons for protocols too.
-
-2005-09-14  Darin Adler  <darin@apple.com>
-
-        - fixed http://bugs.webkit.org/show_bug.cgi?id=4291
-          dumpAsText doesn't work with XHTML documents
-
-        * DumpRenderTree/DumpRenderTree.m: (dump): Dump the innerText of the document element
-        rather than of the body element. This works with typical XHTML documents. We can probably
-        do something even better in the long run, but this fixes the immediate issue.
-
-        - separate tweak
-
-        * Scripts/run-webkit-tests: Show the results in the current built Safari by using
-        run-safari instead of just using "open", which often runs another copy of Safari instead.
-
-2005-09-11  Mark Rowe  <opendarwin.org@bdash.net.nz>
-
-        Reviewed, tweaked, and landed by Darin Adler.
-
-        - fixed http://bugs.webkit.org/show_bug.cgi?id=4286
-          .Mac prefpane crashes when Safari using CVS WebKit is running
-
-        * Scripts/run-safari: Set WEBKIT_UNSET_DYLD_FRAMEWORK_PATH.
-        * Scripts/run-webkit-app: Ditto.
-
-2005-09-11  Darin Adler  <darin@apple.com>
-
-        * Scripts/run-webkit-tests: Oops. Use spaces, not tabs.
-
-2005-09-11  Darin Adler  <darin@apple.com>
-
-        Reviewed by Eric.
-
-        * Scripts/run-webkit-tests: Sort tests with a new "pathcmp" function that's better in
-        two ways: 1) puts all files in a directory before any files in a subdirectory, and
-        2) sort file names with numeric digits in them in a logical way, so test-33 will come
-        before test-3.
-
-2005-09-08  Justin Garcia  <justin.garcia@apple.com>
-
-        Reviewed by darin
-
-        * Scripts/update-webkitsysteminterface: Added.
-        Builds webkitsysteminterface and moves the built product and header into WebKitLibraries
-
-2005-09-01  John Sullivan  <sullivan@apple.com>
-
-        * Scripts/run-webkit-tests:
-        Excluded a known system leak to reduce noise; added comments about which leaks
-        are being excluded.
-
-2005-09-01  Tim Omernick  <tomernick@apple.com>
-
-        Change made by Darin, reviewed by John and myself.
-
-        - Allow semicolons at the end of method declarations (this is for method implementations; the semicolon is required for interface declarations).
-
-        * Scripts/prepare-ChangeLog:
-
-2005-08-31  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Darin Adler.
-
-        - set color variant and font settings to a consistent value.
-        (http://bugs.webkit.org/show_bug.cgi?id=4769)
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main):
-
-2005-08-30  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by mjs.
-
-        * Scripts/build-svg2png: Removed.
-        * svg2png/ImageDiff.h: Removed.
-        * svg2png/ImageDiff.m: Removed.
-        * svg2png/svg2png.m: Removed.
-        * svg2png/svg2png.xcodeproj/project.pbxproj: Removed.
-        * svg2png/svg2png_Prefix.pch: Removed.
-        svg2png is no longer needed.
-
-2005-08-30  Darin Adler  <darin@apple.com>
-
-        * Scripts/check-dom-results: Special case 100% to say something nice.
-        * Scripts/cvs-apply: Added "--merge" which automatically rolls back the tree before
-        applying the patch (need a better name).
-        * Scripts/find-extra-includes: Added. Experimental tool to find unneeded includes.
-
-2005-08-30  Darin Adler  <darin@apple.com>
-
-        * Scripts/run-webkit-tests: Small formatting fix for leaks mode.
-
-2005-08-29  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Darin Adler.
-
-        - fixed http://bugs.webkit.org/show_bug.cgi?id=4723
-        (some pixel tests fail when AA settings are changed)
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main): set AA settings to the default values
-
-2005-08-29  Darin Adler  <darin@apple.com>
-
-        Reviewed by John Sullivan.
-
-        * Scripts/run-webkit-tests: Added a mode where each test is run with a separate
-        executable -- much slower but can help pinpoint leaks. Changed formatting of some
-        messages too.
-
-2005-08-28  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Eric.
-
-        - fixed http://bugs.webkit.org/show_bug.cgi?id=4720
-        (webkit pixel tests don't give consistent results with changed scrollbar arrow setting)
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main): set scrollbar arrow setting to a consistent value
-
-2005-08-27  Jussi Hagman  <juhagman@abo.fi>
-
-        Reviewed and landed by Darin Adler.
-
-        - fixed http://bugs.webkit.org/show_bug.cgi?id=4676
-          output of update-webkit is too verbose
-
-        * Scripts/update-webkit:
-        Added option --quiet (-q) to decrease the amount of output.
-
-2005-08-27  Darin Adler  <darin@apple.com>
-
-        - fixed http://bugs.webkit.org/show_bug.cgi?id=4596
-          cvs-create-patch --include-unknowns should ignore hidden files
-
-        * Scripts/cvs-create-patch: Add code to check for files starting with ".".
-
-2005-08-25  Ben La Monica  <ben.lamonica@gmail.com>
-
-        Reviewed, tweaked, and landed by Darin Adler.
-
-        - fixed http://bugs.webkit.org/show_bug.cgi?id=4585
-          update-webkit doesn't notice when you have SVGSupport and update properly
-
-        * Scripts/update-webkit: Build SVGSupport directory if it's present.
-
-2005-08-25  Anders Carlsson  <andersca@mac.com>
-
-        Reviewed and landed by Darin Adler.
-
-        - fixed http://bugs.webkit.org/show_bug.cgi?id=4572
-          layout test machinery can't handle tests with applets that have code attributes
-
-        * DumpRenderTree/DumpRenderTree.m: (main): Disable Java while running tests.
-
-2005-08-24  Darin Adler  <darin@apple.com>
-
-        Reviewed by Maciej.
-
-        - fixed http://bugs.webkit.org/show_bug.cgi?id=4625
-          DumpRenderTree --pixel-tests crash
-        - landed some other small changes I had sitting in my tree
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main): Don't bother saving and restoring the preferences. Not sure
-        why this was ever done since the preferences are specific to DumpRenderTree.
-        Clear delegates before releasing the WebView, because you can't count on the
-        order of object deallocation.
-        (dumpRenderTree): Fix code that releases a string before storing it in a
-        global variable.
-
-        * Scripts/run-webkit-tests: Use "-s" rather than a function to get the size
-        of a file. Fix lots of cases that were using tabs for indenting to use spaces instead.
-
-2005-08-23  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by mjs.
-
-        * Scripts/run-webkit-tests:
-        Made --leaks option more readable by printing to a file.
-        http://bugs.webkit.org/show_bug.cgi?id=4590
-
-2005-08-22  Eric Seidel  <eseidel@apple.com>
-        Fix by Tobias Lidskog <tobiaslidskog@mac.com>
-
-        Reviewed by darin.
-
-        * Scripts/run-webkit-tests: hides "expected actual diffs" links
-        when they are not needed (for pixel-only failures)
-        http://bugs.webkit.org/show_bug.cgi?id=4584
-
-2005-08-22  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by darin.
-
-        * Scripts/run-webkit-tests: Added the ability to display more than
-        just two images as part of the image-diff "slideshow".
-        Added display of "-w3c.png" baseline images for SVG.
-        http://bugs.webkit.org/show_bug.cgi?id=4581
-
-2005-08-20  Eric Seidel  <eseidel@apple.com>
-
-        * Scripts/run-webkit-tests:
-        "build" fix after committing incorrect version.
-
-2005-08-20  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by darin.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main): cleans up delegates
-        (dumpRenderTree): closes CFString/CFURL leak
-        * Scripts/run-webkit-tests:
-        Adds --leaks option to run-webkit-tests
-        http://bugs.webkit.org/show_bug.cgi?id=4542
-
-2005-08-19  Ben La Monica  <ben.lamonica@gmail.com>
-
-        Reviewed by Darin Adler.
-
-        * Scripts/cvs-create-patch: Add an --include-unknowns option that will cause
-        new files to be included in the patch even without "cvs add".
-
-2005-08-19  Darin Adler  <darin@apple.com>
-
-        * Scripts/cvs-apply: Fix to not garble patches that are mix of cvs-style and
-        non-cvs-generated patches. Anders has been creating these, so it's bad that
-        the script can't handle them.
-        * Scripts/cvs-unapply: Ditto.
-
-2005-08-18  Darin Adler  <darin@apple.com>
-
-        * Scripts/webkitdirs.pm: Fix version checking to work on Xcode versions with
-        "." in them -- based on complaint by someone here at Apple.
-
-2005-08-18  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by mjs.
-
-        * Scripts/run-webkit-tests:
-        Made --svg imply --pixel-tests (pixel tests on-by-default for svg).
-
-2005-08-17  Maciej Stachowiak  <mjs@apple.com>
-
-        - add file that I forgot in the last checkin
-
-        * DumpRenderTree/ImageDiff.m: Added.
-        (main):
-        (getImageFromStdin):
-        (compareImages):
-        (getDifferenceBitmap):
-        (computePercentageDifferent):
-
-2005-08-17  Maciej Stachowiak  <mjs@apple.com>
-
-        Changes by Ben Lamonica and Eric Seidel, reviewed mostly by Eric and
-        somewhat by me, and also tweaked by me a little bit.
-
-        - better support for pixel-dumping
-        - use checksums of the images so the tests are fast
-        - change output format to make the tests run faster
-        - don't dump pixel results for tests that dump as text
-
-        * DumpKCanvasTree/DumpKCanvasTree.m:
-        (main):
-        (dumpRenderTree):
-        (md5HashStringForBitmap):
-        (dumpPixelTests):
-        (constrainSizeToMaximum):
-        (getBitmapImageRepForSVGDocument):
-        * DumpKCanvasTree/DumpKCanvasTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/DumpRenderTree.m:
-        (main):
-        (dump):
-        (dumpRenderTree):
-        (md5HashStringForBitmap):
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * Scripts/run-webkit-tests:
-
-2005-08-17  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Darin Adler.
-
-        - hacked DumpRenderTree to make the scrollbars appear and disappear properly.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main):
-
-2005-08-14  Oliver Hunt  <ojh16@student.canterbury.ac.nz>
-
-        Reviewed and landed by Darin Adler.
-
-        - fixed http://bugs.webkit.org/show_bug.cgi?id=4251
-          Ideally would be able to pass arguments to apps using run-safari and run-webkit-app scripts
-
-        * Scripts/run-safari: Pass arguments through to Safari on command line.
-        * Scripts/run-webkit-app: Pass arguments through to "open" tool on command line.
-
-2005-08-11  Eric Seidel  <eseidel@apple.com>
-        Fix by Tobias Lidskog <tobiaslidskog@mac.com>
-
-        Reviewed by eseidel.
-
-        * DrawTest/TestController.m:
-        (-[TestController imagePathForSVGPath:]):
-        Fixed support for using TextViewer with the layout-tests.
-        http://bugs.webkit.org/show_bug.cgi?id=4385
-
-2005-08-11  Maciej Stachowiak  <mjs@apple.com>
-
-        At Least Roughly Glanced At by Anders.
-
-        - fix change with totally breaks the layout tests.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (-[WaitUntilDoneDelegate webView:didCommitLoadForFrame:]): Make tests unready if you start another
-        load, to avoid dumping twice accidentally.
-
-2005-08-10  Eric Seidel  <eseidel@apple.com>
-        Fixed made by Mitz Pettel <opendarwin.org@mitzpettel.com>
-
-        Reviewed by darin.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        Added support for rendering to a PNG file.
-        http://bugs.webkit.org/show_bug.cgi?id=3840
-
-2005-08-07  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by darin.
-
-        * Scripts/run-webkit-tests: added --svg option
-        * Scripts/run-webkit-tests-svg: Removed.
-        http://bugs.webkit.org/show_bug.cgi?id=4300
-
-2005-08-07  Eric Seidel  <eseidel@apple.com>
-        Changes by Ben La Monica <ben.lamonica@gmail.com>
-
-        Reviewed by darin.
-
-        * svg2png/ImageDiff.h: Added.
-        * svg2png/ImageDiff.m: Added.
-        (getDifferenceBitmap):
-        (computePercentageDifferent):
-        (saveAnimatedGIFToFile):
-        * svg2png/svg2png.m:
-        (usage): added several new options
-        (getBitmapForSVG): added NSBitmapImageRep generation
-        (main): various argument changes.
-        * svg2png/svg2png.xcodeproj/project.pbxproj:
-        Several additions to provide image differencing functionality.
-        http://bugs.webkit.org/show_bug.cgi?id=4193
-
-2005-08-07  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by darin.
-
-        * Scripts/run-webkit-tests-svg: now uses WebCore/svg-tests
-        * checkout-svg: links WebCore/svg-tests to SVGSupport/layout-tests
-        Adding the first SVG layout tests:
-        http://bugs.webkit.org/show_bug.cgi?id=4303
-
-2005-08-07  Darin Adler  <darin@apple.com>
-
-        * Scripts/cvs-create-patch: Do all the directories at once, for speed.
-
-2005-08-06  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by darin.
-
-        * DumpKCanvasTree/DumpKCanvasTree.m: Added.
-        * DumpKCanvasTree/DumpKCanvasTree.xcodeproj/project.pbxproj: Added.
-        * Scripts/build-dumpkcanvastree: Added.
-        * Scripts/run-webkit-tests-svg: Added.
-        Adds a DumpRenderTree-like tool for SVG which allows us to do
-        text-based layout regression testing.  This (like most of the
-        SVG specific stuff) is temporary and will be replaced by
-        DumpRenderTree once the DOMs and RenderTrees merge.
-        http://bugs.webkit.org/show_bug.cgi?id=3917
-
-2005-08-06  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by darin.
-
-        * DrawTest/DrawTestView.m:
-        (-[DrawTestView toggleFilterSupport:]): missing negation.
-        One half of fix for toggling filter support.
-        http://bugs.webkit.org/show_bug.cgi?id=4252
-
-2005-08-04  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by darin.
-
-        * Scripts/build-drawtest:
-        * Scripts/build-dumprendertree:
-        * Scripts/build-svg2png:
-        * Scripts/build-webcore-svg:
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm: added checkRequiredSystemConfig()
-        Added checkRequiredSystemConfig and made all the build-* scripts
-        use it to print a pretty warning when trying to compile on an
-        unsupported system (less than 10.4, Xcode 2.1).
-        http://bugs.webkit.org/show_bug.cgi?id=4280
-
-2005-08-04  Darin Adler  <darin@apple.com>
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Bring this file back from
-        the dead. It was removed by accident when someone was trying to work on the branch.
-
-2005-07-31  Darin Adler  <darin@apple.com>
-
-        - a little tools cleanup
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Moved options from target to
-        project as a whole. Removed unused Default configuration.
-
-        * Scripts/check-dom-results: Added license header, comment to explain purpose of tool.
-
-2005-07-31  Duncan Wilcox  <duncan@mclink.it>
-
-        Reviewed and landed by Darin Adler.
-
-        Add logging of editing delegate calls for regression checking.
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (main):
-          setup editing delegate
-
-        (-[DOMNode dumpPath]):
-        (-[DOMRange dump]):
-          utility for editing delegate logging
-
-        (-[EditingDelegate webView:shouldBeginEditingInDOMRange:]):
-        (-[EditingDelegate webView:shouldEndEditingInDOMRange:]):
-        (-[EditingDelegate webView:shouldInsertNode:replacingDOMRange:givenAction:]):
-        (-[EditingDelegate webView:shouldInsertText:replacingDOMRange:givenAction:]):
-        (-[EditingDelegate webView:shouldDeleteDOMRange:]):
-        (-[EditingDelegate webView:shouldChangeSelectedDOMRange:toDOMRange:affinity:stillSelecting:]):
-        (-[EditingDelegate webView:shouldApplyStyle:toElementsInDOMRange:]):
-        (-[EditingDelegate webView:shouldChangeTypingStyle:toStyle:]):
-        (-[EditingDelegate webViewDidBeginEditing:]):
-        (-[EditingDelegate webViewDidChange:]):
-        (-[EditingDelegate webViewDidEndEditing:]):
-        (-[EditingDelegate webViewDidChangeTypingStyle:]):
-          log corresponding editing delegate methods
-
-        (-[EditingDelegate webViewDidChangeSelection:]):
-          log selection except when clearing selection after end of test (uses existing "done" flag)
-
-        (dumpRenderTree):
-          added clearing of selection after test
-
-2005-07-31  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by hyatt.
-
-        * Scripts/build-drawtest: Added.
-        * Scripts/build-svg2png: Added.
-        * Scripts/build-webcore-svg: Added.
-        * Scripts/run-drawtest: Added.
-        * Scripts/webkitdirs.pm: added checkSVGFrameworks
-        Made it much easier to build WebCore+SVG.
-        http://bugs.webkit.org/show_bug.cgi?id=4208
-
-2005-07-29  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by vicki.
-
-        * DrawTest/DrawTest.xcodeproj/project.pbxproj:
-        Build fix.  Removed bad path.
-
-2005-07-29  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by sullivan.
-
-        * DrawTest/AppDelegate.h: Added.
-        * DrawTest/AppDelegate.m: Added.
-        * DrawTest/DrawTest.xcodeproj/project.pbxproj: Added.
-        * DrawTest/DrawTestDocument.h: Added.
-        * DrawTest/DrawTestDocument.m: Added.
-        * DrawTest/DrawTestInspectorController.h: Added.
-        * DrawTest/DrawTestInspectorController.m: Added.
-        * DrawTest/DrawTestToolbarController.h: Added.
-        * DrawTest/DrawTestToolbarController.m: Added.
-        * DrawTest/DrawTestView.h: Added.
-        * DrawTest/DrawTestView.m: Added.
-        * DrawTest/DrawTest_Prefix.pch: Added.
-        * DrawTest/English.lproj/DrawTestDocument.nib/classes.nib: Added.
-        * DrawTest/English.lproj/DrawTestDocument.nib/info.nib: Added.
-        * DrawTest/English.lproj/DrawTestDocument.nib/keyedobjects.nib: Added.
-        * DrawTest/English.lproj/InfoPlist.strings: Added.
-        * DrawTest/English.lproj/Inspector.nib/classes.nib: Added.
-        * DrawTest/English.lproj/Inspector.nib/info.nib: Added.
-        * DrawTest/English.lproj/Inspector.nib/keyedobjects.nib: Added.
-        * DrawTest/English.lproj/MainMenu.nib/classes.nib: Added.
-        * DrawTest/English.lproj/MainMenu.nib/info.nib: Added.
-        * DrawTest/English.lproj/MainMenu.nib/keyedobjects.nib: Added.
-        * DrawTest/English.lproj/TestViewer.nib/classes.nib: Added.
-        * DrawTest/English.lproj/TestViewer.nib/info.nib: Added.
-        * DrawTest/English.lproj/TestViewer.nib/keyedobjects.nib: Added.
-        * DrawTest/Info.plist: Added.
-        * DrawTest/SVGTest.h: Added.
-        * DrawTest/SVGTest.m: Added.
-        * DrawTest/ScalingImageView.h: Added.
-        * DrawTest/ScalingImageView.m: Added.
-        * DrawTest/TestController.h: Added.
-        * DrawTest/TestController.m: Added.
-        * DrawTest/TestViewerSplitView.h: Added.
-        * DrawTest/TestViewerSplitView.m: Added.
-        * DrawTest/main.m: Added.
-        Adding simple cocoa app for testing SVG rendering, interaction.
-        http://bugs.webkit.org/show_bug.cgi?id=4157
-
-2005-07-28  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by ggaren.
-
-        * svg2png/svg2png.m: Added.
-        * svg2png/svg2png.xcodeproj/project.pbxproj: Added.
-        * svg2png/svg2png_Prefix.pch: Added.
-        Added a simple test tool which dumps a PNG from an SVG using
-        WebCore+SVG's SVG rendering support.
-        http://bugs.webkit.org/show_bug.cgi?id=4156
-
-2005-07-26  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Darin Adler.
-
-        - new script to review the DOM layout test results and see where we stand
-        on actual success and failure
-
-        * Scripts/check-dom-results: Added.
-
-2005-07-25  Darin Adler  <darin@apple.com>
-
-        * Scripts/webkitdirs.pm: Check in missing line of code.
-
-2005-07-25  Darin Adler  <darin@apple.com>
-
-        - fixed problem that was causing JavaScriptCore test to fail
-          (except for people who had set DYLD_FRAMEWORK_PATH)
-
-        * Scripts/run-javascriptcore-tests: Add code to set DYLD_FRAMEWORK_PATH.
-        Add code to parse configuration parameter so you can pass --deployment if you like.
-        * Scripts/run-webkit-tests: Add code to parse configuration parameter.
-
-        * Scripts/update-javascriptcore-test-results: Add license header.
-
-        * Scripts/webkitdirs.pm: Change code that reads configuration option to remove it
-        from @ARGV. This lets us use this option in commands that take other options and
-        pass them along to a subsequent tool.
-
-2005-07-25  Darin Adler  <darin@apple.com>
-
-        Reviewed by Geoff Garen.
-
-        - Fixed run-safari and gdb-safari to use the Safari application in the build results
-          directory, if any, falling back to the one in the Applications directory otherwise.
-          Does no harm for open source contributors who don't build Safari, and helps out the
-          Safari team, since we do build Safari.
-
-        * Scripts/webkitdirs.pm: Added safariPath function that uses WEBKIT_SAFARI environment
-        variable, and if that's not present, looks in either the build results directory or
-        /Applications; factors code that was in both scripts before into a shared function.
-        Also removed some Xcode 2.0 support which is no longer relevant since our projects are
-        now in Xcode 2.1 format and incompatible with older versions of Xcode.
-
-        * Scripts/gdb-safari: Use safariPath.
-        * Scripts/run-safari: Use safariPath.
-
-2005-07-22  Geoffrey Garen  <ggaren@apple.com>
-
-        Moved Tools/Scripts/run-mozilla-tests to WebKitTools/Scripts/run-javascriptcore-tests.
-        run-javascriptcore-tests now passes its command-line arguments to jsDriver.pl
-
-        Moved Tools/Scripts/update-mozilla-js-test-results to
-        WebKitTools/Scripts/update-javascriptcore-test-results.
-
-        Reviewed by darin.
-
-        * Scripts/run-javascriptcore-tests: Added.
-
-2005-07-21  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Darin Adler.
-
-        * Scripts/build-dumprendertree: changed XCode 2.0 project file reference to 2.1
-
-2005-07-21  Geoffrey Garen  <ggaren@apple.com>
-
-        * DumpRenderTree/DumpRenderTree.xcode/.cvsignore: Removed.
-
-2005-07-21  Geoffrey Garen  <ggaren@apple.com>
-
-        * DumpRenderTree/DumpRenderTree.xcode/project.pbxproj: Removed.
-
-2005-07-21  Geoffrey Garen  <ggaren@apple.com>
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/.cvsignore: Added.
-
-2005-07-21  Geoffrey Garen  <ggaren@apple.com>
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Added.
-
-2005-07-21  Geoffrey Garen  <ggaren@apple.com>
-
-        * Scripts/build-webkit:
-
-2005-07-12  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by mjs.
-
-        * checkout-svg: Fixed error with symlink creation.
-
-2005-07-12  Eric Seidel  <eseidel@apple.com>
-
-        Reviewed by mjs.
-
-        * checkout-svg: Added.
-        Script to check out WebCore+SVG
-
-2005-06-30  Darin Adler  <darin@apple.com>
-
-        Changes based on input from Michael Kahl.
-
-        * Scripts/cvs-create-patch: Use "-f" so we are compatible with .cvsrc files that
-        specify different style of "diff".
-        * Scripts/webkitdirs.pm: Add missing call to determineBaseProductDir, so that
-        determineConfigurationProductDir works in all cases.
-
-2005-06-29  Darin Adler  <darin@apple.com>
-
-        - fixed bug which would result in multiple unwanted dumps in a single layout test
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (-[WaitUntilDoneDelegate webView:locationChangeDone:forDataSource:]): Set new
-        "readyToDump" flag.
-        (-[LayoutTestController waitUntilDone]): Update for name change.
-        (-[LayoutTestController notifyDone]): Dump only if ready.
-        (dumpRenderTree): Set up new boolean and update for name change.
-
-2005-06-29  Darin Adler  <darin@apple.com>
-
-        Changes by Timothy Hatcher.
-        Reviewed by me.
-
-        * Scripts/run-webkit-app: Added script to open an arbritrary application with
-        a CVS built WebKit. Example: ./run-webkit-app Colloquy
-
-        * Scripts/gdb-safari: Added support for WEBKIT_SAFARI environment variable to specify
-        a custom location to the Safari.app bundle. This is optional, script defaults to the stock location.
-        * Scripts/run-safari: Ditto.
-
-2005-06-26  Darin Adler  <darin@apple.com>
-
-        * Scripts/build-dumprendertree: Pass -project option so that having a second
-        copy of the project (like the one Xcode 2.1 offers to make for you) that's
-        out of date won't screw you up.
-        * Scripts/build-webkit: Ditto.
-
-2005-06-23  Darin Adler  <darin@apple.com>
-
-        * Scripts/webkitdirs.pm: Fixed a regular expression in the code I just landed.
-
-2005-06-23  Darin Adler  <darin@apple.com>
-
-        Changes based on input from Michael Kahl.
-
-        * Scripts/cvs-create-patch: Added code to handle getting changes in the top-level
-        directory passed in.
-
-        * Scripts/webkitdirs.pm: Eliminate use of changing the current directory and using
-        getcwd() in the code to find the base product dir. Added code to handle unusual
-        base product directory values that use SRCROOT.
-
-2005-06-22  Darin Adler  <darin@apple.com>
-
-        Change by Anders Carlsson.
-
-        - added support for dumping title changes
-
-        * DumpRenderTree/DumpRenderTree.m:
-        (-[WaitUntilDoneDelegate webView:didReceiveTitle:forFrame:]): Added. Dump title change
-        if requested by JavaScript.
-        (+[LayoutTestController isSelectorExcludedFromWebScript:]): Added dumpTitleChanges.
-        (-[LayoutTestController dumpTitleChanges]): Added, sets flag.
-        (dumpRenderTree): Start flag as NO.
-
-2005-06-20  Darin Adler  <darin@apple.com>
-
-        Reviewed by Justin Garcia.
-
-        * Scripts/run-webkit-tests: Report number of tests when they succeed.
-
-2005-06-18  Darin Adler  <darin@apple.com>
-
-        * DumpRenderTree/DumpRenderTree.m: (dumpRenderTree): Add more auto-release pools
-        in the hope of making the tool use less memory and run faster.
-
-2005-06-18  Darin Adler  <darin@apple.com>
-
-        * Scripts/cvs-apply: Improve handling of patches with CR characters in them.
-        * Scripts/cvs-unapply: Ditto.
-
-2005-06-17  Maciej Stachowiak  <mjs@apple.com>
-
-        - added prepare-ChangeLog script which we use internally to make ChangeLogs, for
-        benefit of all WebKit hackerdom
-
-        * Scripts/prepare-ChangeLog: Added.
-
-2005-06-16  Darin Adler  <darin@apple.com>
-
-        - recent changes to XcodeOptions made it depend on the current directory
-          The intent was to have the WebKitBuild directory be next to WebKitTools,
-          not inside the various build directories. Workaround for now is to call
-          XcodeOptions when the directory is set to the WebKit directory.
-
-        * Scripts/build-dumprendertree: Use a local variable for XcodeOptions and get it
-        at the start of the script.
-        * Scripts/build-webkit: Ditto.
-
-2005-06-15  Darin Adler  <darin@apple.com>
-
-        * Scripts/webkitdirs.pm: Recognize all 1.X versions of Xcode as old too, not just 2.0.
-
-2005-06-14  Darin Adler  <darin@apple.com>
-
-        Changes by Anders Carlsson.
-        Reviewed by me.
-
-        - fixed <http://bugs.webkit.org/show_bug.cgi?id=3496>
-          Add gdb-safari script to launch Safari under gdb
-
-        * Scripts/gdb-safari: Added.
-
-2005-06-12  Darin Adler  <darin@apple.com>
-
-        Changes by Stuart Morgan.
-        Reviewed by me.
-
-        * Scripts/cvs-abandon: Use cwd instead of `pwd`.
-        * Scripts/cvs-apply: Ditto.
-        * Scripts/cvs-create-patch: Ditto.
-        * Scripts/cvs-unapply: Ditto.
-        * Scripts/run-webkit-tests: Ditto.
-        * Scripts/webkitdirs.pm: Ditto. Also improve handling when there's no "Configuration" file.
-
-2005-06-12  Darin Adler  <darin@apple.com>
-
-        * Scripts/cvs-apply: Handle case of an empty patch better.
-        * Scripts/cvs-unapply: Ditto.
-
-2005-06-12  Darin Adler  <darin@apple.com>
-
-        Changes by Michael Gaiman.
-        Reviewed by me.
-
-        - fixed <http://bugs.webkit.org/show_bug.cgi?id=3487>
-          WebKit no longer builds after configuration supporting build changes
-
-        * Scripts/webkitdirs.pm: Chomp off the result of `pwd`, and don't die when no Configuration file.
-
-2005-06-12  Darin Adler  <darin@apple.com>
-
-        * Scripts/update-webkit: Make this script work when called from any directory.
-
-2005-06-12  Darin Adler  <darin@apple.com>
-
-        Reviewed by Maciej.
-        Includes changes by Stuart Morgan as well as my own.
-
-        * Scripts/build-dumprendertree: Call the new setConfiguration function, and use XcodeOptions instead of
-        symrootXcodeOptions to set the -buildstyle option.
-        * Scripts/build-webkit: Ditto. Also remove the old way of supporting Xcode 2.1 and the old --debug option.
-        The new --development option does the same thing.
-        * Scripts/run-safari: Ditto.
-        * Scripts/run-webkit-tests: Ditto.
-        * Scripts/update-webkit: Ditto.
-        * Scripts/set-webkit-configuration: Added. Sets the default configuration to Development or Deployment.
-
-        * Scripts/webkitdirs.pm: use FindBin to find the WebKit directory; works no matter what the current
-        directory is when invoking a script. Add code to determine the Xcode version so we can do the right
-        thing for 2.0 and 2.1. Change the productDir function to return the appropriate per-configuration
-        product directory. Read the default configuration from a file, overridable by a passed-in command-line
-        option.
-
-2005-06-11  Darin Adler  <darin@apple.com>
-
-        * Scripts/cvs-create-patch: Improve handling of directories with mixed CVS roots by going into each directory
-        to execute the cvs diff commands.
-
-2005-06-11  Darin Adler  <darin@apple.com>
-
-        - added first cuts at some cvs scripts
-
-            cvs-abandon is for throwing away changes; discards any local changes, reverting to the state in CVS
-            cvs-create-patch is for making patches; runs cvs diff with all the right options and handles added/deleted files
-            cvs-apply is for applying patches; runs patch and cvs add and cvs rm
-            cvs-unapply is for unapplying patches; does the opposite of cvs-apply
-
-          An argument against these is "waste of time if we switch to Subversion", but they should be good for a while.
-
-        * Scripts/cvs-abandon: Added.
-        * Scripts/cvs-apply: Added.
-        * Scripts/cvs-create-patch: Added.
-        * Scripts/cvs-unapply: Added.
-
-2005-06-09  Darin Adler  <darin@apple.com>
-
-        Reviewed by Maciej.
-
-        - fixed http://bugs.webkit.org/show_bug.cgi?id=3397
-          Build DumpRenderTree fails with unresolved NSAutoreleasePool, etc
-
-        * DumpRenderTree/DumpRenderTree.xcode/project.pbxproj: Change type from "folder" to "wrapper.framework"
-        for Foundation.framework. How was it ever wrong?
-
-        - finally, I tested making the default build directory work; it works now
-
-        * Scripts/webkitdirs.pm: Changed structure of the code a little bit, added symrootXcodeOptions function
-        that sets SYMROOT on the command line in case there's no product directory set in Xcode preferences.
-        * Scripts/build-webkit: Pass symrootXcodeOptions when invoking Xcode.
-        * Scripts/build-dumprendertree: Ditto.
-
-2005-06-09  Darin Adler  <darin@apple.com>
-
-        * Scripts/webkitdirs.pm: Another try at making the default build directory of ~/WebKitBuild
-        work. Someone should try building without setting the Xcode build product directory now,
-        and let me know if it works.
-
-2005-06-08  Darin Adler  <darin@apple.com>
-
-        - quick fix to try to get build scripts working again
-
-        * Scripts/build-dumprendertree: Add FindBin.
-        * Scripts/build-webkit: Ditto.
-        * Scripts/run-safari: Ditto.
-        * Scripts/run-webkit-tests: Ditto.
-        * Scripts/update-webkit: Ditto.
-
-2005-06-08  Darin Adler  <darin@apple.com>
-
-        Reviewed by Maciej.
-
-        - some build script enhancements
-
-        * Scripts/build-dumprendertree: Changed to use webkitdirs.
-        * Scripts/build-webkit: Changed to use webkitdirs, also only copy files from WebKitLibraries if
-        they are newer.
-        * Scripts/run-safari: Reduce number of log messages, change to respect "-d" flag and get Development
-        before Deplyment in that case.
-        * Scripts/run-webkit-tests: Changed to use webkitdirs.
-        * Scripts/update-webkit: Changed to use webkitdirs.
-
-        * Scripts/webkitdirs.pm: Added.
-
-2005-06-08  Maciej Stachowiak  <mjs@apple.com>
-
-        Code change by Toby Peterson <toby@opendarwin.org>
-        Reviewed by me.
-
-        * Scripts/run-safari: Fix to work with Xcode 2.0 again. The script would
-        get confused because build-webkit now makes even 2.0 build directories look
-        like 2.1.
-
-2005-06-07  Darin Adler  <darin@apple.com>
-
-        Reviewed by Adele Peterson.
-
-        * DumpRenderTree/DumpRenderTree.xcode/project.pbxproj: Added Deployment build style.
-        * Scripts/build-dumprendertree: For now, always use Deployment build style. This may fix things
-        so we can run tests with Xcode 2.1.
-
-2005-06-07  Darin Adler  <darin@apple.com>
-
-        Reviewed by Adele Peterson.
-
-        * Scripts/run-webkit-tests: Pass -L to find command to follow symlinks. This allows symlinks in the
-        layout-tests directory to include additional sets of tests.
-
-2005-06-07  Darin Adler  <darin@apple.com>
-
-        * checkout: Added license.
-        * Scripts/build-dumprendertree: Ditto.
-        * Scripts/run-webkit-tests: Ditto.
-        * Scripts/update-webkit: Ditto.
-
-2005-06-07  Darin Adler  <darin@apple.com>
-
-        Change by Toby Peterson <toby@opendarwin.org>.
-        Reviewed by me.
-
-        * Scripts/build-webkit: Changes so you can build with Xcode 2.1. (I also added a license to this file.)
-        * Scripts/run-safari: Ditto.
-
-2005-06-06  Maciej Stachowiak  <mjs@apple.com>
-
-        * Scripts/build-webkit: run ranlib on libWebKitSystemInterface.a
-
-2005-06-06  Maciej Stachowiak  <mjs@apple.com>
-
-        * Scripts/build-webkit: Chop newline off of $productDir to avoid problems with logic to copy files ther.
-
-2005-06-06  Maciej Stachowiak  <mjs@apple.com>
-
-        * Scripts/build-webkit: Install WebKitSystemInterface stuff into build products dir.
-
-2005-06-05  Darin Adler  <darin@apple.com>
-
-        * DumpRenderTree/DumpRenderTree.xcode/project.pbxproj: Tweak, simplify.
-        * Scripts/build-dumprendertree: Added.
-        * Scripts/build-webkit: Build All in the JavaScriptCore directory.
-        * Scripts/run-webkit-tests: Build DumpRenderTree before running.
-
-2005-06-05  Darin Adler  <darin@apple.com>
-
-        * Scripts/run-safari: Fix path to Safari executable. Add check for frameworks.
-
-2005-06-05  Darin Adler  <darin@apple.com>
-
-        - add run-webkit-tests script; not working yet but the pieces are there
-
-        * Scripts/run-webkit-tests: Added.
-
-        * DumpRenderTree/DumpRenderTree.m: Added.
-        * DumpRenderTree/DumpRenderTree.xcode/.cvsignore: Added.
-        * DumpRenderTree/DumpRenderTree.xcode/project.pbxproj: Added.
-        * DumpRenderTree/DumpRenderTreePrefix.h: Added.
-
-2005-06-05  Darin Adler  <darin@apple.com>
-
-        - created module, first cut at Web Kit Open Source Project scripts
-
-        * ChangeLog: Added.
-        * Scripts/build-webkit: Added.
-        * Scripts/run-safari: Added.
-        * Scripts/update-webkit: Added.
-        * checkout: Added.
-
-=== creation of WebKitTools module ===
diff --git a/Tools/ChangeLog-2010-05-24 b/Tools/ChangeLog-2010-05-24
deleted file mode 100644
index f3f21b2..0000000
--- a/Tools/ChangeLog-2010-05-24
+++ /dev/null
@@ -1,35303 +0,0 @@
-2010-05-24  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        add tests to ensure that --git-commit ranges are exclusive of the start of the range
-        https://bugs.webkit.org/show_bug.cgi?id=39612
-
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-
-2010-05-24  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add a temporary script for testing the html5 parser until it can run more layout tests
-        https://bugs.webkit.org/show_bug.cgi?id=39611
-
-        * Scripts/test-html5-parser: Added.
-
-2010-05-24  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Chris Jerdonek.
-
-        webkit-patch needs --verbose flag to enable DEBUG logging
-        https://bugs.webkit.org/show_bug.cgi?id=39208
-
-        I also added some code to print out how long commands take to run.
-
-        * Scripts/webkit-patch:
-         - Add hackish -v/--verbose parsing (similar to check-webkit-style)
-        * Scripts/webkitpy/common/system/executive.py:
-         - Log how long commands take to run.
-        * Scripts/webkitpy/tool/main.py:
-         - Add -v/--verbose option to global options.
-
-2010-05-23  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Daniel Bates.
-
-        Split PatchReader out into its own file
-        https://bugs.webkit.org/show_bug.cgi?id=39576
-
-        This is in preparation for making check-webkit-style
-        support being passed paths to patch files on the command line.
-
-        * Scripts/check-webkit-style:
-        * Scripts/webkitpy/style/checker.py:
-        * Scripts/webkitpy/style/checker_unittest.py:
-        * Scripts/webkitpy/style/patchreader.py: Added.
-        * Scripts/webkitpy/style/patchreader_unittest.py: Added.
-        * Scripts/webkitpy/style_references.py:
-
-2010-05-23  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Daniel Bates.
-
-        webkit-patch should let you add a comment when uploading a patch
-        https://bugs.webkit.org/show_bug.cgi?id=39552
-
-        As requested by Dan "the man" Bates.
-
-        * Scripts/webkitpy/tool/steps/options.py:
-        * Scripts/webkitpy/tool/steps/postdiff.py:
-
-2010-05-23  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        webkit-patch should assign newly created bugs to their creator
-        https://bugs.webkit.org/show_bug.cgi?id=39548
-
-        As requested on webkit-dev.
-
-        * Scripts/webkitpy/common/net/bugzilla.py:
-
-2010-05-23  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Hide prepare and post commands for webkit-patch
-        https://bugs.webkit.org/show_bug.cgi?id=39539
-
-        It turns out these commands aren't very popular and they confuse new
-        users.  They'll still be there for advanced users, however.
-
-        * Scripts/webkitpy/tool/commands/upload.py:
-
-2010-05-23  Jesus Sanchez-Palencia  <jesus@webkit.org>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt] QtTestBrowser has two graphicsview options that aren't enabled correctly
-        https://bugs.webkit.org/show_bug.cgi?id=39491
-
-        Making toggleResizesToContents and toggleTiledBackingStore checkable when
-        QtTestBrowser is started on graphics view mode.
-
-        * QtTestBrowser/main.cpp:
-        (LauncherWindow::createChrome):
-
-2010-05-23  Jesus Sanchez-Palencia  <jesus@webkit.org>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt] QtTestBrowser is still called QtLauncher in the code
-        https://bugs.webkit.org/show_bug.cgi?id=39488
-
-        Finish the name change of QtLauncher to QtTestBrowser.
-
-        * QtTestBrowser/main.cpp:
-        (LauncherApplication::LauncherApplication):
-        (LauncherApplication::handleUserOptions):
-        * QtTestBrowser/mainwindow.cpp:
-        (MainWindow::MainWindow):
-        * QtTestBrowser/useragentlist.txt:
-
-2010-05-23  Marcus Bulach  <bulach@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [chromium] Adds Geolocation support to DumpRenderTree.
-        https://bugs.webkit.org/show_bug.cgi?id=39440
-
-        Existing LayoutTests/fast/dom/Geolocation/* should pass.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setGeolocationPermission):
-        (LayoutTestController::setMockGeolocationPosition):
-        (LayoutTestController::setMockGeolocationError):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::geolocationService):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2010-05-22  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        Re-order Yong's email addresses because his gmail account is the one he
-        uses for bugs.webkit.org.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-05-22  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Chris Jerdonek.
-
-        Add infrastructure to parse SVN property changes
-        https://bugs.webkit.org/show_bug.cgi?id=38885
-
-        Adds function VCSUtils::parseSvnDiffFooter to parse an SVN footer
-        that consists of one or more properties.
-
-        Note, the first line of an SVN footer begins with "Property changes on".
-
-        * Scripts/VCSUtils.pm:
-          - Added function parseSvnDiffFooter. Will use this function
-            towards resolving Bug #39409 <https://bugs.webkit.org/show_bug.cgi?id=39409>.
-          - Removed FIXME comment above function parseSvnProperty, since
-            it is being used by parseSvnDiffFooter.
-        * Scripts/webkitperl/VCSUtils_unittest/parseSvnDiffFooter.pl: Added.
-          - Added unit tests.
-
-2010-05-22  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, fixing test results only.
-
-        Disable compositing tests on the commit-queue as a workaround for  bug 38912
-        https://bugs.webkit.org/show_bug.cgi?id=39067
-
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-         - Update test results after my previous change.
-
-2010-05-22  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.
-
-        Disable compositing tests on the commit-queue as a workaround for  bug 38912
-        https://bugs.webkit.org/show_bug.cgi?id=39067
-
-        * Scripts/webkitpy/tool/steps/runtests.py:
-         - Disable all of compositing, not just compositing/iframes
-
-2010-05-22  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Link resources and load Ahem font for Windows
-        https://bugs.webkit.org/show_bug.cgi?id=39473
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main): Call platformInit().
-        * DumpRenderTree/chromium/TestShell.h:
-         Declare platformInit(). It is not related to TestShell class, but the
-         implementation of paltformInit() is placed at TestShell*.{cpp,mm}.
-        * DumpRenderTree/chromium/TestShellGtk.cpp:
-        (platformInit):
-        * DumpRenderTree/chromium/TestShellMac.mm:
-        (platformInit):
-        * DumpRenderTree/chromium/TestShellWin.cpp:
-        (platformInit):
-         - Make stdout/stderr binary mode
-         - Load Ahem font
-
-2010-05-21  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, EWS build fix only.
-
-        QueueStatusServer returns 500 error when EWS bots post empty queues
-        https://bugs.webkit.org/show_bug.cgi?id=39523
-
-        Mac python seems to have some built-in timezone support
-        however other python installs don't.  So we need to ignore
-        timezones in our parsing.
-
-        Date parsing is tested by existing unit tests.
-
-        * QueueStatusServer/handlers/updateworkitems.py:
-         - Fix typo causing exception on server.
-        * Scripts/webkitpy/common/net/bugzilla.py:
-         - Fix exception due to python's lack of timezone support.
-
-2010-05-21  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        QueueStatusServer returns 500 error when EWS bots post empty queues
-        https://bugs.webkit.org/show_bug.cgi?id=39523
-
-        updateworkitems handler was raising an exception because
-        int() couldn't convert "" to a number.
-
-        I attempted to unit test this but we don't yet have a system by
-        which to load unit tests for appengine classes which depend on
-        google.appengine libraries which are not in the python default install.
-
-        We'll need to write a wrapper script to load those into the python path
-        and then run the unit test files.
-
-        * QueueStatusServer/handlers/statusbubble.py:
-         - Hide cr-win-ews since we're not currently running this bot.
-        * QueueStatusServer/handlers/updateworkitems.py:
-         - Fix the parsing logic to be able to understand "".
-        * Scripts/webkitpy/common/net/statusserver.py:
-         - Only log the work items posted to the server to the debug log channel.
-
-2010-05-21  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, fixing the commit-queue to run again.
-
-        Make the EWSes report queue position in white bubbles
-        https://bugs.webkit.org/show_bug.cgi?id=39519
-
-        * Scripts/webkitpy/common/net/statusserver.py:
-         - Fix exception in _post_work_items_to_server when passed
-           integers. Unfortunately we have no good way to mock
-           the Browser object yet, and after several attempts I was
-           not able to create a good one, so no tests. :(
-
-2010-05-14  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        webkit-patch land --squash commits too much if branch is not up to date
-        https://bugs.webkit.org/show_bug.cgi?id=38852
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-
-2010-05-21  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Make the EWSes report queue position in white bubbles
-        https://bugs.webkit.org/show_bug.cgi?id=39519
-
-        This also fixes sorting of commit-queue patches
-        to be in order of patch attachment.
-        https://bugs.webkit.org/show_bug.cgi?id=33395
-
-        This makes the various Queues post what patches they are about to process
-        so that we can display a list of patches on status server pages, as well
-        as report queue position in status bubbles.
-
-        This is the first step towards creating a control-channel for the queues.
-        Next step will be to have them read back the patches in order from the server
-        and finally we will add the ability for the server to control that order.
-
-        * Scripts/webkitpy/common/net/bugzilla.py:
-         - Teach bugzilla how to parse attach_date for attachments.
-        * Scripts/webkitpy/common/net/bugzilla_unittest.py:
-         - Test that we're parsing dates correctly.
-           This may have timezone issues for non-PST contributers, unsure.
-        * Scripts/webkitpy/common/net/statusserver.py:
-         - Post work items to the status server for display.
-        * Scripts/webkitpy/tool/bot/patchcollection.py:
-         - Call StatusServer.update_work_items
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-         - Update unit test results now that we're posting work item list.
-        * Scripts/webkitpy/tool/commands/queues.py:
-         - Call StatusSever.update_work_items
-         - Sort patches so that the server's list understands
-           that the commit-queue gives priority to rollout patches.
-         - I also fixed patch sorting per bug 33395 while I was here.
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-         - Update results after update_work_items changes.
-         - Test attachment sorting.
-        * Scripts/webkitpy/tool/mocktool.py:
-         - Add mock for update_work_items
-
-2010-05-21  Robin Cao  <robin.cao@torchmobile.com.cn>
-
-        Reviewed by Adam Roben.
-
-        fast/dom/HTMLObjectElement/children-changed.html times out on Windows run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=31315
-
-        * DumpRenderTree/win/FrameLoadDelegate.cpp:
-        (FrameLoadDelegate::didFailProvisionalLoadWithError): Need to invoke locationChangeDone here as mac port does.
-
-2010-05-20  Mark Rowe  <mrowe@apple.com>
-
-        Rubber-stamped by Dan Bernstein.
-
-        <rdar://problem/7848154> Remove the dependency on Foundation's private __COCOA_FORMAL_PROTOCOLS_2__ define.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-
-2010-05-20  Tony Gentilcore  <tonyg@chromium.org>
-
-        Reviewed by Daniel Bates.
-
-        Look in /proc/registry64 for the Platform SDK on 64-bit Windows.
-        https://bugs.webkit.org/show_bug.cgi?id=39296
-
-        The build-webkit script failed for me on Vista 64. A web search turned
-        up this blog post with a patch that worked for me:
-        http://www.nicholaswilson.me.uk/2010/04/hacking-webkit-fail/
-
-        * Scripts/webkitdirs.pm:
-
-2010-05-20  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        ThreadedMessageQueue should use with_statement for exception safety
-        https://bugs.webkit.org/show_bug.cgi?id=39233
-
-        * Scripts/webkitpy/common/thread/threadedmessagequeue.py:
-
-2010-05-20  Diego Gonzalez  <diegohcg@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] QtTestBrowser does not support websites which requires HTTP Authentication via dialogs
-        https://bugs.webkit.org/show_bug.cgi?id=38456
-
-        * QtTestBrowser/webpage.cpp:
-        (WebPage::WebPage):
-        (WebPage::authenticationRequired):
-        * QtTestBrowser/webpage.h:
-
-2010-05-20  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Eric Seidel.
-
-        editingBehavior settings needs to be set back to a reasonable default between tests
-        https://bugs.webkit.org/show_bug.cgi?id=39433
-
-        For now, hard code the default setting during reset, so that the serialized
-        version of the setting stays in sync with expectations.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues): Reset editing behavior to the appropriate platform default.
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues): Ditto.
-
-2010-05-20  Brent Fulgham  <bfulgham@webkit.org>
-
-        Build fix.  No review.
-
-        The WebKitAPITest targets do not use the "_debug" suffix needed
-        by the WinCairo port.  Added Debug_Cairo target to correct this.
-
-        * WebKitAPITest/WebKitAPITest.vcproj:
-
-2010-05-20  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Ojan Vafai.
-
-        editing/selection/extend-selection-after-double-click.html crashes on the Leopard Intel release bot
-        https://bugs.webkit.org/show_bug.cgi?id=39431
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setEditingBehavior):
-        Prevent a double-free by not having this variable be in the auto-release pool.
-
-2010-05-20  Martin Robinson  <mrobinson@webkit.org>
-
-        Reviewed by Ojan Vafai.
-
-        Expose the editing behavior setting in DRT to test all editing code paths
-        https://bugs.webkit.org/show_bug.cgi?id=38603
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setEditingBehaviorCallback): Added.
-        (LayoutTestController::staticFunctions): Expose the setEditingBehaviorCallback function.
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp: Add callback method for setting editing behavior.
-        * DumpRenderTree/chromium/LayoutTestController.h: Declaration for this method.
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp: 
-        (LayoutTestController::setEditingBehavior): Implementation of editing behavior control.
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setEditingBehavior): Ditto
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setEditingBehavior): Added stub implementation of editing behavior control.
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController::setEditingBehavior): Add slot for controlling editor behavior.
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setEditingBehavior): Implementation of editing behavior control.
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setEditingBehavior): Added stub implementation of editing behavior control.
-
-2010-05-20  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        [DRT/Chromium] Increase the time out value
-        https://bugs.webkit.org/show_bug.cgi?id=39203
-
-        Change the time out value of Chromium DRT to 30 seconds, which is
-        the same as other ports.
-        If a DRT process exits before new-run-webkit-tests detects time
-        out, new-run-webkit-tests assumes the DRT process crashed.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::layoutTestTimeout):
-          Change the time out value from 10 seconds to 30 seconds.
-
-2010-05-20  Chris Evans  <cevans@google.com>
-
-        Unreviewed.
-
-        Marking myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py: Add cevans@google.com.
-
-2010-05-20  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Reviewed by Tor Arne Vestbo.
-
-        [Qt] Weekly binary builds on Mac OS X don't work when launched in the Finder
-        https://bugs.webkit.org/show_bug.cgi?id=37273
-
-        * QtTestBrowser/QtTestBrowser.pro: Build QtLauncher as bundle in package builds
-
-2010-05-20  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Unreviewed fix for websocket test failures.
-
-        * Scripts/new-run-webkit-websocketserver:
-         options is named parameter for factory.get().
-
-2010-05-20  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Chromium: Add --chromium option to new-run-webkit-websocketserver
-        https://bugs.webkit.org/show_bug.cgi?id=37664
-
-        Missed to pass options to factory.get() in r59595
-
-        * Scripts/new-run-webkit-websocketserver:
-          Pass options to factory.get().
-
-2010-05-19  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        WinEWS should build Debug instead of Release
-        https://bugs.webkit.org/show_bug.cgi?id=39242
-
-        This is a workaround for
-        https://bugs.webkit.org/show_bug.cgi?id=39197
-        Adam Roben and Brian Weinstein believe this may
-        also make building faster since Debug builds
-        take less time to link.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-
-2010-05-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        * DumpRenderTree/chromium/NotificationPresenter.cpp:
-        (NotificationPresenter::show):
-
-2010-05-19  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        user.py throws exception when readline module is missing
-        https://bugs.webkit.org/show_bug.cgi?id=39239
-
-        * Scripts/webkitpy/common/system/user.py:
-         - The error handling path requires the "sys" module,
-           so added an import sys at the top of the file.
-
-2010-05-18  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Fix a repaint issue and textarea tests
-        https://bugs.webkit.org/show_bug.cgi?id=39054
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::canvas): Remove m_paintRect initialization in canvas().
-         This line updated m_paintRect unexpectedly during paintRect().
-         We don't need to initialize m_paintRect because show() does it.
-
-2010-05-18  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [chromium] new-run-webkit-tests --use-drt should run on Linux
-        https://bugs.webkit.org/show_bug.cgi?id=37845
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-
-2010-05-18  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Fix some initialization/reset issues
-        https://bugs.webkit.org/show_bug.cgi?id=39281
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::reset): Reset m_userStyleSheetLocation.
-        * DumpRenderTree/chromium/LayoutTestController.h:
-          Remove unused variable, m_workQueueFrozen.
-        (LayoutTestController::WorkQueue::WorkQueue): Initialize m_frozen.
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetTestController): Reset WebSettings too.
-
-2010-05-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: implement '--reset-results' flag to complement
-        the '--new-baseline' flag. '--new-baseline' will always write the
-        results into the platform directory; '--reset-results' will update the
-        existing baseline wherever it happens to be. Both sets of behavior
-        are useful in different circumstances.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38879
-
-        * Scripts/webkitpy/layout_tests/data/image/canvas-bg.html: Added.
-        * Scripts/webkitpy/layout_tests/data/image/canvas-zoom-expected.checksum: Added.
-        * Scripts/webkitpy/layout_tests/data/image/canvas-zoom-expected.png: Added.
-        * Scripts/webkitpy/layout_tests/data/image/canvas-zoom-expected.txt: Added.
-        * Scripts/webkitpy/layout_tests/data/image/canvas-zoom.html: Added.
-        * Scripts/webkitpy/layout_tests/data/misc/crash-expected.txt: Added.
-        * Scripts/webkitpy/layout_tests/data/misc/crash.html: Added.
-        * Scripts/webkitpy/layout_tests/data/misc/missing-expectation.html: Added.
-        * Scripts/webkitpy/layout_tests/data/misc/passing-expected.txt: Added.
-        * Scripts/webkitpy/layout_tests/data/misc/passing.html: Added.
-        * Scripts/webkitpy/layout_tests/data/platform/test/image/canvas-bg-expected.checksum: Added.
-        * Scripts/webkitpy/layout_tests/data/platform/test/image/canvas-bg-expected.png: Added.
-        * Scripts/webkitpy/layout_tests/data/platform/test/image/canvas-bg-expected.txt: Added.
-        * Scripts/webkitpy/layout_tests/data/platform/test/test_expectations.txt: Added.
-        * Scripts/webkitpy/layout_tests/data/text/article-element-expected.txt: Added.
-        * Scripts/webkitpy/layout_tests/data/text/article-element.html: Added.
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py:
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py:
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/dryrun.py:
-
-2010-05-18  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Add an --html5-parser option to DumpRenderTree to allow testing the new HTML5Lexer
-        https://bugs.webkit.org/show_bug.cgi?id=39311
-
-        This flag allows us to run the new HTML5Lexer code.
-        Right now all documents parse as empty documents, but
-        now that we're able to run the code we can fix that.
-
-        Once we're able to lex a few basic documents I'll add
-        an --html5-parser flag to run-webkit-tests so that we test
-        running all of the layout tests with the HTML5 parser.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        (initializeGlobalsFromCommandLineOptions):
-
-2010-05-08  Robert Hogan  <robert@roberthogan.net>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Fix http/tests/xmlhttprequest/cross-origin-no-authorization.html
-             and http/tests/xmlhttprequest/cross-origin-authorization.html
-
-        QHttpNetworkRequest adds Authorization and Cookie headers to XHRs
-        without knowing if this is valid behaviour or not. In order to allow
-        Qt to decide whether Cookie/Authorization headers should be added
-        to an XHR QtWebKit needs to use an attribute added to QNetworkRequest.
-        These new attributes are: QNetworkRequest::CookieLoadControlAttribute,
-        QNetworkRequest::CookieSaveControlAttribute,and
-        QNetworkRequest::AuthenticationReuseControlAttribute.
-
-        In order to properly support the tests, Qt's DRT needs to use one
-        NetworkAccessManager for all pages. This allows it to use cached
-        credentials where appropriate.
-
-        The tests now pass when run individually but there seems to be a problem with
-        leaking the results of requests across tests when run with the others in
-        http/tests. This will be addressed in a separate patch.
-
-        https://bugs.webkit.org/show_bug.cgi?id=32967
-
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::WebPage):
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-
-
-2010-05-18  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        run_webkit_tests_unittest fails on SnowLeopard
-        https://bugs.webkit.org/show_bug.cgi?id=39279
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-         Return copy of os.environ.
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-         Check os.environ was not modified.
-
-2010-05-18  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Chromium: new-run-webkit-httpd fails to setup_mount
-        https://bugs.webkit.org/show_bug.cgi?id=39257
-
-        * Scripts/webkitpy/common/system/executive.py:
-         Assert type of args in run_command.
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-         Add test_run_command_args_type
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-         Executive.run_command takes array for command line.
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-         Test if setup_environ_for_server() run setup_mount.bat.
-
-2010-05-17  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by David Levin.
-
-        Chromium Windows build system does not rebuild correctly when
-        enabling/disabling a feature
-        https://bugs.webkit.org/show_bug.cgi?id=38926
-
-        Add a workaround of this issue.
-
-        * Scripts/update-webkit:
-          Chromium-Windows only: If WebKit/chromium/features.gyp has been
-          updated, remove WebKit/chromium/Debug and WebKit/chromium/Release.
-
-2010-05-17  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r59631.
-        http://trac.webkit.org/changeset/59631
-        https://bugs.webkit.org/show_bug.cgi?id=39255
-
-        chromium canaries can no longer run webkit_tests, suspect this
-        change. (Requested by atwilson on #webkit).
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-05-17  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Attempt to make new-run-webkit-tests --help more sane
-        https://bugs.webkit.org/show_bug.cgi?id=37836
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-         - Add a FIXME about options.singly and options.batch_size being different.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-         - Add support for hidden options.
-         - Add option groupings to attempt to simplify --help.
-         - Fix a bunch of option helps to start with a capitalized verb.
-         - Hide a bunch of options which make no sense to users.
-         - Sort options in --help.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-         - Add tests for option sorting.
-
-2010-05-17  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Disable Icon Database by default in Qt DRT
-
-        Unskip:
-         http/tests/misc/favicon-loads-with-images-disabled.html
-         http/tests/security/XFrameOptions/x-frame-options-deny-meta-tag-in-body.html
-         http/tests/security/XFrameOptions/x-frame-options-deny-meta-tag-parent-same-origin-deny.html
-         http/tests/security/XFrameOptions/x-frame-options-deny-meta-tag.html
-
-        https://bugs.webkit.org/show_bug.cgi?id=37382
-
-        Add support for layoutTestController.setIconDatabaseEnabled and layoutTestController.disableImageLoading().
-        The XFrameOptions tests were failing because of an extra resource load callback for favicon.ico requests.
-        These extra callbacks are removed by supporting both of the above layoutTestContoller commands.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::resetSettings):
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        (WebCore::DumpRenderTree::drtStoragePath):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::disableImageLoading):
-        (LayoutTestController::setIconDatabaseEnabled):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-05-17  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Chromium: Add --chromium option to new-run-webkit-websocketserver
-        https://bugs.webkit.org/show_bug.cgi?id=37664
-
-        os.environ setup and setup_mount for cygwin are moved in ChromiumWinPort.setup_environ_for_server.
-
-        * Scripts/new-run-webkit-httpd:
-          Remove passing register_cygwin.
-        * Scripts/new-run-webkit-websocketserver:
-          Add --chromium flag.
-          Remove passing register_cygwin.
-          Create port object using options.
-        * Scripts/webkitpy/layout_tests/port/base.py:
-          Add setup_environ_for_server().
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-          Ditto.
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py: Added.
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-          Remove register_cygwin_parameter.
-          Call setup_environ_for_server().
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-          Ditto.
-
-2010-05-16  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Chris Jerdonek.
-
-        https://bugs.webkit.org/show_bug.cgi?id=39184
-
-        Adds function VCSUtils::parseSvnProperty to parse an SVN property with
-        either a single-line or multi-line value change.
-
-        * Scripts/VCSUtils.pm:
-          - Added function parseSvnProperty. We will use this function
-            towards resolving Bug #38885 <https://bugs.webkit.org/show_bug.cgi?id=38885>.
-          - Removed FIXME comment above function parseSvnPropertyValue, since
-            it is being used by parseSvnProperty.
-          - Modified function parseSvnPropertyValue to break out of "while (<$fileHandle>)"
-            loop when it encounters the start of the next property so that it can be
-            processed by its caller, parseSvnPropertyValue. We reference this bullet below
-            by (*).
-        * Scripts/webkitperl/VCSUtils_unittest/parseSvnProperty.pl: Added.
-          - Added unit tests.
-        * Scripts/webkitperl/VCSUtils_unittest/parseSvnPropertyValue.pl:
-          - Changed the name of the unit test "simple multi-line '-' change" to
-            "single-line '-' change followed by empty line" since the former was an
-            incorrect description of this test.
-          - Added unit test "single-line '-' change followed by the next property", and
-            "multi-line '-' change followed by the next property" to test (*) above.
-
-2010-05-16  Tony Chang  <tony@chromium.org>
-
-        Not reviewed, fixing layout test.
-
-        Don't output Inspect Element since this is not enabled on the bots,
-        but most developers probably have it installed.
-
-        * DumpRenderTree/mac/EventSendingController.mm:
-        (-[EventSendingController contextClick:]):
-
-2010-05-12  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        Spellcheck disabling does not disable context menu
-        https://bugs.webkit.org/show_bug.cgi?id=25639
-
-        * DumpRenderTree/mac/EventSendingController.mm:
-        (+[EventSendingController isSelectorExcludedFromWebScript:]):
-        (+[EventSendingController webScriptNameForSelector:]):
-        (-[EventSendingController contextClick:]): add a bool parameter that
-              when true, dumps the context menu items to stdout.
-
-2010-05-16  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Unskip fast/loader/main-document-url-for-non-http-loads.html
-
-        Update Qt DRT to use frame loader, editor client and notification presenter
-        functions in DumpRenderTreeSupportQt.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38867
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::open):
-        (WebCore::DumpRenderTree::dump):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::reset):
-        (LayoutTestController::dumpEditingCallbacks):
-        (LayoutTestController::dumpFrameLoadCallbacks):
-        (LayoutTestController::dumpResourceLoadCallbacks):
-        (LayoutTestController::setWillSendRequestReturnsNullOnRedirect):
-        (LayoutTestController::setWillSendRequestReturnsNull):
-        (LayoutTestController::setWillSendRequestClearHeader):
-
-2010-05-16  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, rolling out r59571.
-        http://trac.webkit.org/changeset/59571
-        https://bugs.webkit.org/show_bug.cgi?id=39054
-
-        Broke Cr Win, but we didn't notice immediately due to
-        https://bugs.webkit.org/show_bug.cgi?id=38926.  It's possible
-        that this didn't actually break Cr Win, but rather that bug
-        38926 necessitates a clean compile after this and sucessive
-        checkins only produced a partial recompile and thus failed to
-        build.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::canvas):
-
-2010-05-16  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt]Unskip security/set-form-autocomplete-attribute.html
-
-        Add support for layoutTestController.elementDoesAutoCompleteForElementWithId().
-
-        https://bugs.webkit.org/show_bug.cgi?id=38859
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::elementDoesAutoCompleteForElementWithId):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-05-16  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Fix repaint, WebGL, textarea tests
-        https://bugs.webkit.org/show_bug.cgi?id=39054
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::canvas): Remove m_paintRect initialization in canvas().
-         This line updated m_paintRect unexpectedly during paintRect().
-         We don't need to initialize m_paintRect because show() does it.
-
-2010-05-16  Sergio Villar Senin  <svillar@igalia.com>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        [GTK] Improve reporting of frame loader callbacks in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=36454
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webViewLoadStatusNotified):
-        (createWebView): added connection to notify::load-status and
-        signal callback
-
-2010-05-15  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Chris Jerdonek.
-
-        https://bugs.webkit.org/show_bug.cgi?id=39170
-
-        Add function parseSvnPropertyValue to parse single-line and multi-line
-        property values of an SVN property change.
-
-        * Scripts/VCSUtils.pm:
-            Added function parseSvnPropertyValue. We will use this as part of
-            Bug #38885 <https://bugs.webkit.org/show_bug.cgi?id=38885>.
-        * Scripts/webkitperl/VCSUtils_unittest/parseSvnPropertyValue.pl: Added.
-
-2010-05-15  Jochen Eisinger  <jochen@chromium.org>
-
-        Reviewed by Dmitry Titov.
-
-        Add allowDatabase method to TestWebWorker.
-        https://bugs.webkit.org/show_bug.cgi?id=38742
-
-        * DumpRenderTree/chromium/TestWebWorker.h:
-        (TestWebWorker::allowDatabase):
-
-2010-05-15  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Rubber-stamped by Antti Koivisto.
-
-        [Qt] Rename QtLauncher to QtTestBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=37665
-
-        Forgot to remove the original directory after the rename.
-
-        * QtLauncher: Removed.
-
-2010-05-15  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r59544.
-        http://trac.webkit.org/changeset/59544
-        https://bugs.webkit.org/show_bug.cgi?id=39165
-
-        Cased LayoutTest to start crashing (Requested by abarth on
-        #webkit).
-
-        * Scripts/old-run-webkit-tests:
-
-2010-05-15  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        Ensure DRT loads GAIL (Gtk+ module), for a11y tests
-        https://bugs.webkit.org/show_bug.cgi?id=38648
-
-        Add the GTK_MODULES envvar (set to "gail") to the clean
-        environment when running DRT for the Gtk+ port
-
-        * Scripts/old-run-webkit-tests:
-
-2010-05-15  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Maciej Stachowiak.
-
-        Add script to check for minimum python version and install if missing on Tiger
-        https://bugs.webkit.org/show_bug.cgi?id=38886
-
-        Per Maciej's request on webkit-dev:
-        https://lists.webkit.org/pipermail/webkit-dev/2010-May/012785.html
-        provide a script which can automatically install Python on Tiger where
-        the system provided version is too old to be of use.
-
-        Note this uses the official Mac Python installer from python.org.
-        This installs a copy of Python in /Library/Frameworks/Python.framework.
-        It also makes symlinks from /usr/local/bin to the Python.framework/bin.
-
-        I have tested this script on Leopard and it worked fine.  I have not
-        tested it on Tiger as I do not have access to a Tiger machine.  In
-        either case this should provide a great starting point for someone
-        wishing to upgrade their copy of Python on Tiger.
-
-        Future patches can make our scripts depend on a success return from this
-        script and then they can either skip tests/sections for which python is
-        insufficient, or they can fail themselves.
-
-        * Scripts/ensure-valid-python: Added.
-
-2010-05-15  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Display queue position inside EWS bubbles
-        https://bugs.webkit.org/show_bug.cgi?id=38979
-
-        This ended up being a lot of clean-up to our status server code.
-
-        Added a new WorkItems model, a form with which to fill it,
-        and taught the Attachment class how to calculate the current queue
-        postion for an attachment using the data in WorkItems.
-
-        I also finally made statusbubble.* and dashboard.* not use copy-paste code.
-
-        The Attachment class has this summary() method which is very
-        controller/view-like and does not belong in a model class.
-        This patch got rid of all direct uses of summary().
-
-        * QueueStatusServer/handlers/dashboard.py:
-          - Build row objects to hand off to the view instead of handing off a
-            summary object and expecting the view to process it directly.
-        * QueueStatusServer/handlers/statusbubble.py:
-          - Build bubble object and hand them off to the view.
-        * QueueStatusServer/handlers/updatestatus.py:
-          - Code cleanup.  Just move some code into _queue_status_from_request
-            to make the main put() handler easier to read.
-        * QueueStatusServer/handlers/updateworkitems.py: Added.
-          - Controller to handle storing WorkItems model objects.
-        * QueueStatusServer/main.py:
-          - Add route for /update-work-items
-        * QueueStatusServer/model/attachment.py:
-          - Add new methods to replace direct summary() access.
-          - Teach attachment how to calculate queue positions from WorkItems data.
-        * QueueStatusServer/model/queues.py:
-          - Move name_with_underscores here for easier re-use.
-        * QueueStatusServer/model/workitems.py: Added.
-         - New model for storing what items are currently queue for any bot.
-        * QueueStatusServer/templates/dashboard.html:
-         - Kill the copy/paste code!
-        * QueueStatusServer/templates/statusbubble.html:
-         - Kill the copy/paste code!
-        * QueueStatusServer/templates/updateworkitems.html: Added.
-         - Simple form for updating a queue's current work items.
-
-2010-05-15  Joanmarie Diggs  <joanmarie.diggs@gmail.com>
-
-        Reviewed by Xan Lopez.
-
-        https://bugs.webkit.org/show_bug.cgi?id=30500
-        [Gtk] Find a way for WebKit to "announce" itself so that ATs can readily distinguish it from true Gtk/Gail
-
-        The "announcement" is now made in the form of an object attribute
-        associated with the AtkObject.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::allAttributes):
-        (attributeSetToString):
-
-2010-05-15  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        Accessibility: Implement isSelected in DRT for GTK
-        https://bugs.webkit.org/show_bug.cgi?id=31018
-
-        Implement AccessibilityUIElement::isSelected() for Gtk
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::isSelected):
-
-2010-05-14  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        scm.py should use self.run instead of run_command
-        https://bugs.webkit.org/show_bug.cgi?id=38957
-
-        We've wanted to do this for a while, but it's a prerequiste for running
-        SVN from the cwd instead of the checkout_root.
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-
-2010-05-14  Anton Muhin  <antonm@chromium.org>
-
-        Reviewed by Darin Fisher.
-
-        [Chromium] Consider implementing addOriginAccessWhitelistEntry method
-        https://bugs.webkit.org/show_bug.cgi?id=37578
-
-        Remove deprecated methods.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp
-        * DumpRenderTree/chromium/LayoutTestController.h
-
-2010-05-14  Kenneth Russell  <kbr@google.com>
-
-        Reviewed by Darin Adler.
-
-        Rename WebGLArray types to TypedArray types
-        https://bugs.webkit.org/show_bug.cgi?id=39091
-
-        Extended functionality of do-webcore-rename script and used it to
-        rename the WebGLArray types to the TypedArray naming convention.
-        The only source files which were touched by hand, and which are
-        being manually reviewed, are:
-            WebCore/page/DOMWindow.idl
-            WebCore/bindings/generic/RuntimeEnabledFeatures.h (script's changes undone)
-            WebKit/WebCore/bindings/js/JSDOMWindowCustom.cpp
-            WebKit/WebCore/bindings/v8/custom/V8DOMWindowCustom.cpp
-        These only needed to be touched to update the aliases between the
-        WebGLArray and TypedArray names introduced in bug 39036. (It was
-        not feasible to have do-webcore-rename handle this as it would
-        introduce circular renamings.) These aliases will be removed in
-        roughly a month once existing WebGL content has been updated.
-
-        No new tests; covered under existing WebGL tests. Updated
-        constructed-objects-prototypes and prototype-inheritance-2 tests.
-        Ran all layout tests in Safari and all WebGL tests in Chromium.
-
-        * Scripts/do-webcore-rename:
-          Handle the case where some renames are substrings of others.
-          Support renaming files containing custom JS bindings. If
-          isDOMTypeRename is non-zero, expand the regexp which rewrites
-          the file's contents in order to support custom JS bindings.
-
-2010-05-14  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        webkit-patch rollout throws exception if bug is already open
-        https://bugs.webkit.org/show_bug.cgi?id=38803
-
-        This was caused by someone incorrectly wrapping the code. :p
-        I'm going to have to start demanding unit tests for wrapping changes...
-
-        I also fixed the code to be able to reopen bugs which were never confirmed.
-        Before it regressed, the code would just log in that case.  Now it actually
-        will reopen the bug, but there is a FIXME about how the logic is a bit backwards.
-
-        * Scripts/webkitpy/common/net/bugzilla.py:
-        * Scripts/webkitpy/common/net/bugzilla_unittest.py:
-         - Yay testing!
-
-2010-05-14  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Rubber-stamped by Antti Koivisto.
-
-        [Qt] Rename QtLauncher to QtTestBrowser
-
-        * QtTestBrowser: Copied from WebKitTools/QtLauncher.
-        * QtTestBrowser/QtLauncher.pro: Removed.
-        * QtTestBrowser/QtLauncher.qrc: Removed.
-        * QtTestBrowser/QtTestBrowser.pro: Copied from WebKitTools/QtLauncher/QtLauncher.pro.
-        * QtTestBrowser/QtTestBrowser.qrc: Copied from WebKitTools/QtLauncher/QtLauncher.qrc.
-        * Scripts/run-launcher:
-        * Scripts/webkitdirs.pm:
-
-2010-05-14  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Stop CCing webkit-bot-watchers
-        https://bugs.webkit.org/show_bug.cgi?id=39020
-
-        webkit-bot-watchers is somewhat of a failed experiment.  No one
-        subscribed to the list (not even me).  Removing it from the code
-        because wms says it bounces email sometimes.
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot_unittest.py:
-
-2010-05-14  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        REGRESSION: webkit-patch commit-message throws exception
-        https://bugs.webkit.org/show_bug.cgi?id=38997
-
-        * Scripts/webkitpy/tool/commands/upload.py:
-         - Fix to respect and pass the --squash and --git-commit options.
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-         - Fix the unit test to use the central MockCheckout instead of
-           its own custom Mock which didn't require enough parameters.
-
-2010-05-13  Diego Gonzalez  <diegohcg@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Improve QtLauncher user agent dialog resize
-        https://bugs.webkit.org/show_bug.cgi?id=39062
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::showUserAgentDialog):
-
-2010-05-13  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Ojan Vafai.
-
-        Disable compositing/iframes tests on the commit-queue as a workaround for  bug 38912
-        https://bugs.webkit.org/show_bug.cgi?id=39067
-
-        Fix yet another typo in my original hack.
-        I also added another unit test for this fix.
-
-        * Scripts/webkitpy/common/config/ports.py:
-        * Scripts/webkitpy/common/config/ports_unittest.py:
-
-2010-05-13  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Ojan Vafai.
-
-        Disable compositing/iframes tests on the commit-queue as a workaround for  bug 38912
-        https://bugs.webkit.org/show_bug.cgi?id=39067
-
-        My previous (unreviewed) hack didn't actually work due to checking "mac" instead of "Mac".
-        This change fixes my hack, and unit tests it.
-
-        * Scripts/webkitpy/tool/mocktool.py:
-         - Make it possible to make run_command log too.
-        * Scripts/webkitpy/tool/steps/runtests.py:
-         - Fix my hack to actually work.
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-         - Test my hack (and basic RunTests behavior as well).
-
-2010-05-13  Antonio Gomes  <tonikitoo@webkit.org>, Yi Shen <yi.4.shen@nokia.com>
-
-        Reviewed by Kenneth Christiansen.
-
-        [Qt] Add LayoutTestController interface: computedStyleIncludingVisitedInfo
-        https://bugs.webkit.org/show_bug.cgi?id=37759
-
-        WebKitTools:
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::computedStyleIncludingVisitedInfo):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-05-10  Adam Roben  <aroben@apple.com>
-
-        Convert status bar text to UTF-8 before logging it on Windows
-
-        We were previously logging the text using printf("%S", bstr). This
-        converts the UTF-16 BSTR to a multibyte string using wctomb, which
-        uses the codepage for the current locale to perform the conversion.
-        The conversion was failing, causing printf to bail and truncate the
-        string. By converting to UTF-8 manually before logging, we avoid this
-        issue (and also end up with UTF-8 output, which is what the expected
-        results contain). We may have to do this in other places in DRT,
-        eventually.
-
-        Fixes <http://webkit.org/b/38849> REGRESSION (r59016):
-        plugins/set-status.html fails on Windows
-
-        Reviewed by Alexey Proskuryakov.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (toUTF8): Moved this here from FrameLoadDelegate. Renamed from
-        BSTRtoString.
-
-        * DumpRenderTree/win/DumpRenderTreeWin.h: Added declaration of toUTF8.
-
-        * DumpRenderTree/win/FrameLoadDelegate.cpp: Removed BSTRtoString.
-        (descriptionSuitableForTestResult): Updated for rename.
-
-        * DumpRenderTree/win/UIDelegate.cpp:
-        (UIDelegate::setStatusText): Convert the status bar text to UTF-8
-        before logging it so that Windows won't try (and fail) to convert it
-        to the current locale's codepage.
-
-2010-05-13  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed hack, attempting to get the commit-queue running again.
-
-        Disable compositing/iframes tests on the commit-queue as a workaround for bug 38912
-        https://bugs.webkit.org/show_bug.cgi?id=39067
-
-        I had this hack locally on the commit-queue, but it's fragile
-        and broke this morning.  It will work much better if committed
-        to the repository.  In either case it's temporary while we
-        work up a real fix for bug 38912.
-
-        * Scripts/webkitpy/common/config/ports.py:
-         - Expose an is_leopard() method.
-        * Scripts/webkitpy/tool/steps/runtests.py:
-         - Don't run compositing/iframes tests on the commit-queue under leopard.
-
-2010-05-13  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Unreviewed fix.  Revert previous change.
-
-        Even if with-statments are changed in websocket_server.py, it also claims syntax error for with statement in http_server.py.
-        Until python 2.5 is installed on tiger bot, skips websocket/tests on tiger.
-
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py: use with statement
-
-2010-05-13  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Unreviewed fix.
-
-        On tiger bot, it claims syntax error for with statement.
-
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py: rewrite with statement with try-finally.
-
-2010-05-13  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Reviewed by David Levin.
-
-        WebSocket: pywebsocket 0.5
-        https://bugs.webkit.org/show_bug.cgi?id=38034
-
-        Remove pywebsocket from webkitpy/thirdparty.
-        Make pywebsocket autoinstalled.
-
-        * Scripts/new-run-webkit-websocketserver:
-          Add --output-dir option.
-        * Scripts/old-run-webkit-tests:
-          Use new-run-webkit-websocketserver, rather than directly run pywebsocket's standalone.py
-        * Scripts/run-webkit-websocketserver:
-          Ditto.
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-          Use autoinstalled pywebsocket.
-        * Scripts/webkitpy/thirdparty/__init__.py:
-          Autoinstall pywebsocket
-        * Scripts/webkitpy/thirdparty/pywebsocket: Removed.
-
-2010-05-12  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Daniel Bates.
-
-        Fixed a bug in svn-apply whereby the reviewer would not get set if
-        the portion of the patch for the ChangeLog contains "NOBODY (**PS!)"
-        in the leading junk.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38998
-
-        * Scripts/VCSUtils.pm:
-          - Added the $changeLogTimeZone variable from svn-apply.
-          - Added setChangeLogDateAndReviewer() from svn-apply.
-          - Added a localTimeInProjectTimeZone() subroutine.
-          - In setChangeLogDateAndReviewer():
-            - Added an $epochTime parameter to make the subroutine more testable.
-            - Made the "NOBODY (**PS!)" regular expression more specific so that
-              it will not apply to text in the leading junk.
-            - Updated to call localTimeInProjectTimeZone().
-        * Scripts/svn-apply:
-          - Removed the $changeLogTimeZone file variable.
-          - Added an $epochTime file variable to represent the current time.
-          - Removed the setChangeLogDateAndReviewer() subroutine.
-          - Updated patch() to use the new setChangeLogDateAndReviewer() syntax.
-        * Scripts/webkitperl/VCSUtils_unittest/setChangeLogDateAndReviewer.pl: Added.
-          - Added unit tests.
-
-2010-05-12  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        test-webkitpy fails on windows due to lack of readline module
-        https://bugs.webkit.org/show_bug.cgi?id=38884
-
-        Win32 Python does not have a readline module, so we should
-        not exit(1) if the import fails.
-
-        Also the failure message is mac-specific and doesn't need to be.
-        Only print the mac-specific install instructions on mac.
-
-        * Scripts/webkitpy/common/system/user.py:
-
-2010-05-12  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Nate Chapin.
-
-        [DRT/Chromium] Add a missing Sans-serif font setting
-        https://bugs.webkit.org/show_bug.cgi?id=38981
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetWebSettings):
-          Set "Helvetica" for Sans-serif. It is the same as the default setting of test_shell.
-
-2010-05-10  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        webkit-patch upload --fancy-review now uses the bugzilla bug ID as the rietveld ID
-        https://bugs.webkit.org/show_bug.cgi?id=38866
-
-        wkrietveld.appspot.com has already been updated to allow you to
-        pass --issue for the issue creation as well as subsequent uploads.
-
-        Also, remove the extra code for trying to read out the issue ID
-        from the changelog description since we just use the bugzilla ID now.
-
-        * Scripts/webkitpy/common/config/__init__.py:
-        * Scripts/webkitpy/common/net/rietveld.py:
-        * Scripts/webkitpy/tool/steps/postcodereview.py:
-        * Scripts/webkitpy/tool/steps/postdiff.py:
-
-2010-05-12  Ojan Vafai  <ojan@chromium.org>
-
-        No review needed.
-
-        Marking myself as a reviewer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-05-12  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        new-run-webkit-tests: add a --print default option so that you can
-        easily get the default output plus something (e.g., you can say
-        '--print default,config' instead of '--print misc,one-line-progress,
-        one-line-summary,unexpected,unexpected-results,updates,config'.
-
-        Also, add more unit tests for --verbose, --print everything, etc.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38877
-
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-
-2010-05-12  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Qt build failures cause SheriffBot false positives
-        https://bugs.webkit.org/show_bug.cgi?id=38969
-
-        Add Qt bots back to the core builders, because bug fixed by r59261.
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot_unittest.py:
-
-2010-05-12  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Slave losts cause build break on bots
-        https://bugs.webkit.org/show_bug.cgi?id=38980
-
-        * Scripts/build-webkit: Remove 0 byte sized files from productDir before build.
-
-2010-05-12  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed trivial fix after r59254.
-
-        * Scripts/old-run-webkit-tests:
-
-2010-05-12  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        run-webkit-tests --exit-after-N-failures should not count new tests as failures
-        https://bugs.webkit.org/show_bug.cgi?id=31829
-
-        * Scripts/old-run-webkit-tests:
-
-2010-05-12  James Robinson  <jamesr@chromium.org>
-
-        Reviewed by Simon Fraser.
-
-        Disable smooth scrolling on OS X when running tests
-        https://bugs.webkit.org/show_bug.cgi?id=38964
-
-        Some tests (like fast/repaint/fixed-move-after-keyboard-scroll.html)
-        depend on smooth scrolling behavior.  Since this is off by default
-        in Leopard and on by default in Snow Leopard, DRT should turn it
-        off always to ensure a consistent test environment.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-
-2010-05-10  Rodrigo Belem  <rodrigo.belem@openbossa.org>
-
-        Reviewed by Kenneth Christiansen , Simon Hausmann and Gustavo Noronha.
-
-        [Qt, Gtk] Allows build-webkit script to receive an install prefix as parameter
-        https://bugs.webkit.org/show_bug.cgi?id=26224
-
-        Added more parameters to build-webkit script, the --prefix for gkt
-        and --install-libs, --install-headers for qt. Now it is possible
-        to change the install prefix for gtk and install path for qt.
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-
-2010-05-12  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, added my IRC nickname.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-05-11  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Fixed two FIXME's in svn-apply: eliminated the unnecessary %copiedFiles
-        variable and changed gitKnowsOfFile() to use exitStatus().
-
-        https://bugs.webkit.org/show_bug.cgi?id=38862
-
-        * Scripts/svn-apply:
-
-2010-05-11  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, just fixing python typo.
-
-        EWS bots should poll more often than every 5 minutes
-        https://bugs.webkit.org/show_bug.cgi?id=38968
-
-        Typo in _now(), add a unittest to prove I fixed it.
-
-        * Scripts/webkitpy/tool/bot/queueengine.py:
-        * Scripts/webkitpy/tool/bot/queueengine_unittest.py:
-
-2010-05-11  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Qt build failures cause SheriffBot false positives
-        https://bugs.webkit.org/show_bug.cgi?id=38969
-
-        The Qt buildbot randomly fails to compile occasionally because its
-        network connection causes SVn to leave zero-byte files around.  These
-        compile failures confuse SheriffBot into thinking someone's patch
-        caused a build break.
-
-        In this patch, I've temporarily removed Qt from the list of core
-        builders.  Ossy is working on a script to clean up the zero byte files.
-        Once that goes in, we can add Qt back to the core builders.
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot_unittest.py:
-
-2010-05-11  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        sheriffbot is spammy.
-        https://bugs.webkit.org/show_bug.cgi?id=38936
-
-        Reduce sheriffbot spam by not warning about new blameworthy revisions
-        that can be explained by previously blamed revisions.  This might cause
-        us to not warn about some real failures, but we're getting too much
-        spam from slow builders that have large blamelists (and we've already
-        poked the responsible folks using data from a fast builder).
-
-        * Scripts/webkitpy/tool/bot/sheriff_unittest.py:
-            - Removed unneeded import
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-            - The logic change
-        * Scripts/webkitpy/tool/commands/sheriffbot_unittest.py:
-            - Tests of the change
-        * Scripts/webkitpy/tool/mocktool.py:
-            - Merged two declarations of MockBuilder
-
-2010-05-11  Tony Chang  <tony@chromium.org>
-
-        Reviewed by David Levin.
-
-        [chromium] detect num processors to pass to make -j on Linux
-        https://bugs.webkit.org/show_bug.cgi?id=38833
-
-        * Scripts/webkitdirs.pm:
-
-2010-05-11  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        EWS bots should poll more often than every 5 minutes
-        https://bugs.webkit.org/show_bug.cgi?id=38968
-
-        We'll make them poll every 2 minutes to start with.
-        I'm going to re-write how polling works soon, so this is
-        a stop-gap to try and make the bots more responsive.
-
-        If Bill notices any additional load on bugzilla we'll drop
-        the polling frequency back to 5 minutes.  He's historically said
-        that the EWS bots appear to be a drop in the bucket and thus
-        should be able to poll much more frequently w/o causing trouble.
-
-        * Scripts/webkitpy/tool/bot/queueengine.py:
-        * Scripts/webkitpy/tool/bot/queueengine_unittest.py:
-         - Add a test for sleep_message
-
-2010-05-11  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue should commit rollouts without running tests
-        https://bugs.webkit.org/show_bug.cgi?id=38940
-
-        Most of this change is improving our test coverage for the commit-queue.
-        The only functional change is removing the --test flag when the commit-queue
-        is running in rollouts mode.
-
-        I added test coverage for status updates, and updated the commit-queue status
-        messages to distinguish rollout vs. normal landing mode in its empty queue
-        and land patch messages.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-         - Got rid of a bunch of copy/paste code using _default_expected_stderr
-        * Scripts/webkitpy/tool/commands/queues.py:
-         - Moved rollout patch filtering out of _validate_patches_in_commit_queue
-           so that we only have to check if the builders are green in one place.
-         - Make the "empty queue" message note which queue it is referring to.
-         - Don't pass --text to land-attachment when in rollout mode.
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-         - Update results now that we're testing status updates.
-         - Test _can_build_and_test since I made a typo in that call while
-           writing this change and the unit tests failed to catch it!
-        * Scripts/webkitpy/tool/mocktool.py:
-         - Log status updates to make them testable in our unit tests.
-
-2010-05-11  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Apply recent changes of test_shell to DRT
-        https://bugs.webkit.org/show_bug.cgi?id=38895
-
-        Port the changes to test_shell during (r40492, r46810] of Chromium.
-        Highlights:
-        - Introduce NotificationPresenter
-        - Fix parameter mismatch of WebViewClient::startDragging()
-
-        This change fixes dozens of unexpected behaviors.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-          Add NotificationPresenter.{cpp,h}
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (applyKeyModifier):
-        (EventSender::EventSender):
-        (EventSender::reset):
-        (EventSender::webview):
-        (EventSender::doDragDrop):
-        (EventSender::keyDown):
-        (EventSender::addTouchPoint):
-        (EventSender::clearTouchPoints):
-        (EventSender::releaseTouchPoint):
-        (EventSender::setTouchModifier):
-        (EventSender::updateTouchPoint):
-        (EventSender::cancelTouchPoint):
-        (EventSender::sendCurrentTouchEvent):
-        (EventSender::touchEnd):
-        (EventSender::touchMove):
-        (EventSender::touchStart):
-        (EventSender::touchCancel):
-        * DumpRenderTree/chromium/EventSender.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::reset):
-        (LayoutTestController::showWebInspector):
-        (LayoutTestController::setAuthorAndUserStylesEnabled):
-        (LayoutTestController::setScrollbarPolicy):
-        (LayoutTestController::setWillSendRequestClearHeader):
-        (LayoutTestController::callShouldCloseOnWebView):
-        (LayoutTestController::grantDesktopNotificationPermission):
-        (LayoutTestController::removeOriginAccessWhitelistEntry):
-        (LayoutTestController::addUserScript):
-        (LayoutTestController::addUserStyleSheet):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/NotificationPresenter.cpp: Added.
-        * DumpRenderTree/chromium/NotificationPresenter.h: Added.
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::runFileTest):
-        (TestShell::resetTestController):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::eventSender):
-        (TestShell::notificationPresenter):
-        (TestShell::showDevTools):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createView):
-        (WebViewHost::createPopupMenu):
-        (WebViewHost::startDragging):
-        (WebViewHost::notificationPresenter):
-        (WebViewHost::createApplicationCacheHost):
-        (WebViewHost::willSendRequest):
-        (WebViewHost::updateAddressBar):
-        (WebViewHost::updateURL):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost::addClearHeader):
-        (WebViewHost::clearHeaders):
-
-2010-05-10  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        new-run-webkit-tests: fix a path-handling bug that was breaking the
-        dryrun ports on windows, and add a comment about why we don't run
-        the chromium dryrun tests by default on every port.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38796
-
-        * Scripts/webkitpy/layout_tests/port/dryrun.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-05-11  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Darin Adler.
-
-        <http://webkit.org/b/38941> build-webkit shouldn't always override ENABLE_FOO Xcode configuration settings
-
-        * Scripts/build-webkit: Don't pass the ENABLE setting to xcodebuild if the value matches the default.
-        This will lead to xcodebuild picking up the settings from FeatureDefines.xcconfig, and will aid in
-        revealing problems that are due to inconsistent values for settings across projects.
-
-2010-05-11  Mark Rowe  <mrowe@apple.com>
-
-        Build fix.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-
-2010-05-10  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by David Levin.
-
-        CheckStyle was eating script errors when there were local-commits and working copy changes
-        https://bugs.webkit.org/show_bug.cgi?id=38880
-
-        * Scripts/webkitpy/tool/steps/checkstyle.py:
-        * Scripts/webkitpy/tool/steps/checkstyle_unittest.py: Added.
-
-2010-05-11  Jian Li  <jianli@chromium.org>
-
-        Reviewed by Dmitry Titov.
-
-        Expose FileReader interface.
-        https://bugs.webkit.org/show_bug.cgi?id=38609
-
-        * Scripts/build-webkit: turn on building FileReader for Apple's WebKit.
-
-2010-05-10  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [chromium] Build DRT when running build-webkit --chromium
-        https://bugs.webkit.org/show_bug.cgi?id=38730
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp: Removed.
-        * Scripts/build-dumprendertree: This does nothing now.
-
-2010-05-10  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        REGRESSION(r59100): Added test is broken on many platforms.
-        https://bugs.webkit.org/show_bug.cgi?id=38881
-
-        Reviewed by Eric Seidel.
-
-        * DumpRenderTree/win/TestNetscapePlugin/main.cpp:
-        (NPP_Destroy):
-        Use pluginLog, rather than printf, to match other platforms.
-
-2010-05-10  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        Fix a build failure caused by assuming the default platform in
-        a unit test for new-run-webkit-tests instead of specifying
-        --platform test.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-05-10  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build-fix
-
-        new-run-webkit-tests: fix test failure caused by me failing to update
-        the expected output. Also, run '--platform test' instead of
-        'platform dryrun' since the former is guaranteed to work and the
-        latter isn't.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-05-10  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by David Levin.
-
-        new-run-webkit-tests: looks like the unicode conversion broke
-        --print-last-failures and --retest-last-failures. Fixing.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-05-10  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by David Levin.
-
-        Re-attempt to fix 38616 - newline handling in new-run-webkit-tests.
-        I didn't handle some cases correctly before and the solution was
-        confusing. The new patch assumes all calls to the printing module
-        don't have newlines, and will append newlines where necessary, just
-        like logging does.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38790
-
-        * Scripts/webkitpy/layout_tests/layout_package/metered_stream.py:
-        * Scripts/webkitpy/layout_tests/layout_package/metered_stream_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-05-10  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Make tkent a reviewer
-        https://bugs.webkit.org/show_bug.cgi?id=38875
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-05-07  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        Crash closing window containing Flash plug-in
-        https://bugs.webkit.org/show_bug.cgi?id=38797
-        <rdar://problem/7935266>
-
-        Reviewed by Eric Seidel.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (pluginAllocate):
-        Initialize new member to false.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.h:
-        Added a new member.
-
-        * DumpRenderTree/win/TestNetscapePlugin/main.cpp:
-        (NPP_New):
-        Check whether the element has the "testGetURLOnDestroy" attribute, and
-        record that.
-        (NPP_Destroy):
-        If "testGetURLOnDestroy" is set, perform a load while destroying the
-        plug-in.
-
-2010-05-10  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Levin.
-
-        Executive.kill_* do not work with windows python
-        https://bugs.webkit.org/show_bug.cgi?id=38872
-
-        http://trac.webkit.org/changeset/57444 is where the original
-        breakage occurred.
-        http://trac.webkit.org/changeset/58314 is where the regression
-        started affecting chromium.
-
-        I have since learned that sys.platform has no "windows" value.
-        "win32" is always the value, under 32 or 64 bit windows
-
-        The tests for this code are not run anywhere because
-        test-webkitpy does not yet work on "win32".  Mostly due to
-        depending on unixisms like "cat" and "yes".
-
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-
-2010-05-10  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Fix a bug in rebaseline-chromium-webkit-tests where we would crash
-        instead of logging an error and exiting if it couldn't find either a
-        debug or a release build of the image diff binary.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38692
-
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests_unittest.py: Added.
-
-2010-05-10  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        new-run-webkit-tests fails when run under sys.platform == "windows" due to undefined signal.SIGKILL
-        https://bugs.webkit.org/show_bug.cgi?id=38861
-
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-
-2010-05-10  Jer Noble  <jer.noble@apple.com>
-
-        Unreviewed.
-
-        Adding myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-05-10  Hans Wennborg  <hans@chromium.org>
-
-        Reviewed by Jeremy Orlow.
-
-        [Chromium] Add quota parameter to WebViewClient::createSessionStorageNamespace()
-        https://bugs.webkit.org/show_bug.cgi?id=38750
-
-        Put a per-origin quota on session storage since it is using memory in
-        the browser process, and should not be allowed to grow arbitrarily
-        large. See also http://trac.webkit.org/changeset/58828.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createSessionStorageNamespace):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2010-05-10  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Rubber-stamped by Simon Hausmann.
-
-        [Qt] Roll-out r59020 and r59021, because the Qt part of these changes
-        haven't been landed in Qt trunk yet. Should be rolled-in again after the merge.
-
-        https://bugs.webkit.org/show_bug.cgi?id=32967
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::WebPage):
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-
-2010-05-09  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Chris Jerdonek.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38812
-
-        Make the regular expressions for parsing the start of an SVN
-        and Git header global variables since they are used throughout
-        VCSUtils.pm.
-
-        * Scripts/VCSUtils.pm:
-
-2010-05-09  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Daniel Bates.
-
-        Finished moving the header-parsing logic from svn-apply and -unapply
-        to VCSUtils.pm's parsing methods.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38802
-
-        * Scripts/VCSUtils.pm:
-          - Added to parseGitDiffHeader() the ability to parse and store
-            whether a file is new or deleted.
-          - Also reordered in parseGitDiffHeader() some of the else statements
-            to a more readable ordering.
-          - Added to parseSvnDiffHeader() the ability to parse and store
-            whether a file is new.
-        * Scripts/svn-apply:
-          - Changed handleGitBinaryChange() to use the new "isNew" and "isDeletion"
-            diffHash key-values.
-          - Changed patch() to use the new "isNew" diffHash key-value.
-        * Scripts/svn-unapply:
-          - Changed patch() to use the new "isNew" and "isDeletion" diffHash key-values.
-        * Scripts/webkitperl/VCSUtils_unittest/parseDiff.pl:
-          - Added unit tests for new and deleted files.
-        * Scripts/webkitperl/VCSUtils_unittest/parseGitDiffHeader.pl:
-          - Updated the unit tests as necessary.
-          - Added a unit test for a deleted file.
-        * Scripts/webkitperl/VCSUtils_unittest/parseSvnDiffHeader.pl:
-          - Updated the unit tests as necessary.
-
-2010-05-08  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Daniel Bates.
-
-        Added to svn-apply support for git renames and copies with similarity
-        index less than 100%.
-
-        https://bugs.webkit.org/show_bug.cgi?id=32834
-
-        * Scripts/VCSUtils.pm:
-          - Added to parseGitDiffHeader() support for renames and similarity
-            index less than 100%.
-          - Added to parseDiff() support for processing renames, renames with
-            changes, and copies with changes.
-          - Added to parsePatch() the ability to process multiple return
-            values from parseDiff().
-        * Scripts/svn-apply:
-          - Added to patch() the ability to process diff hashes with the
-            isDeletion key-value set.
-        * Scripts/webkitperl/VCSUtils_unittest/parseDiff.pl:
-          - Updated the unit tests as necessary.
-          - Added unit tests for rename with similarity index 100%,
-            rename with similarity index < 100%, and rename with a change
-            to the executable bit.
-        * Scripts/webkitperl/VCSUtils_unittest/parseGitDiffHeader.pl:
-          - Added unit tests for rename with similarity index 100%,
-            rename with similarity index < 100%, and rename with a change
-            to the executable bit.
-        * Scripts/webkitperl/VCSUtils_unittest/parsePatch.pl:
-          - Updated the unit tests as necessary.
-        * Scripts/webkitperl/VCSUtils_unittest/parseSvnDiffHeader.pl:
-          - Simplified the carriage-return unit test to more narrowly test
-            only carriage returns.
-
-2010-05-08  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Daniel Bates.
-
-        This revision suppresses the misleading "error: pathspec..." messages
-        when using svn-apply to add a binary file from a Git diff.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38047
-
-        When adding a new binary file from a Git diff, svn-apply prints
-        a misleading error of the form -- "error: pathspec '<filename>' did
-        not match any file(s) known to git.  Did you forget to 'git add'?"
-        This patch suppresses these messages since they are normal.
-
-        * Scripts/VCSUtils.pm:
-          Added the callSilently() subroutine from runPatchCommand.pl, which
-          executes a Perl function while suppressing STDERR.
-        * Scripts/svn-apply:
-          Refactored the Git portion of scmKnowsOfFile() into a
-          gitKnowsOfFile(), and called this new subroutine using callSilently().
-        * Scripts/webkitperl/VCSUtils_unittest/runPatchCommand.pl:
-          Removed callSilently() since it was moved to VCSUtils.pm in this patch.
-
-2010-05-08  Victor Wang  <victorw@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        [chromium]: Upload test results json files to app engine server
-        Add an option to run_webkit_tests.py to upload generated
-        JSON files to app engine server. These JSON files will be used
-        by chromium layout test falkiness dashboard.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36063
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_results_uploader.py: Added.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-05-08  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Build the ImageDiff tool for all platforms including Windows and Symbian
-        https://bugs.webkit.org/show_bug.cgi?id=38706
-
-        Use qmath.h instead of math.h to make it portable.
-
-        * DumpRenderTree/qt/ImageDiff.cpp:
-        (main):
-
-2010-05-08  Robert Hogan  <robert@roberthogan.net>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Fix http/tests/xmlhttprequest/cross-origin-no-authorization.html
-             and http/tests/xmlhttprequest/cross-origin-authorization.html
-
-        QHttpNetworkRequest adds Authorization and Cookie headers to XHRs
-        without knowing if this is valid behaviour or not. In order to allow
-        Qt to decide whether Cookie/Authorization headers should be added
-        to an XHR QtWebKit needs to use an attribute added to QNetworkRequest.
-        These new attributes are: QNetworkRequest::CookieLoadControlAttribute,
-        QNetworkRequest::CookieSaveControlAttribute,and
-        QNetworkRequest::AuthenticationReuseControlAttribute.
-
-        In order to properly support the tests, Qt's DRT needs to use one
-        NetworkAccessManager for all pages. This allows it to use cached
-        credentials where appropriate.
-
-        The tests now pass when run individually but there seems to be a problem with
-        leaking the results of requests across tests when run with the others in
-        http/tests. This will be addressed in a separate patch.
-
-        https://bugs.webkit.org/show_bug.cgi?id=32967
-
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::WebPage):
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-
-
-2010-05-04  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [Qt] unskip http/tests/plugins/npapi-response-headers.html
-
-        Turns out this failed because run-webkit-tests was eating the first occurrence
-        of 'Content-Type: text/plain' in the test output as a header. Strange but true.
-        So do as Chromium does and preface all text dumps with the
-        'Content-Type: text/plain' header.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38541
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::dump):
-
-2010-05-08  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Daniel Bates.
-
-        test-webkitpy fails under cygwin
-        https://bugs.webkit.org/show_bug.cgi?id=38718
-
-        * Scripts/webkitpy/common/system/executive.py:
-         - Add _KILL_PROCESS_KILLED_PROCESS_EXIT_CODE and
-           _KILL_ALL_KILLED_PROCESS_EXIT_CODE to store the expected
-           exit codes of processes killed by kill_process and kill_all.
-           These two constants are only used by the unit tests but are
-           stored in executive.py so they can be right next to the platform ifs.
-         - Remove unnecessary str() conversion, run_command does that for us.
-         - Make os.kill retry on cygwin on EAGAIN.  It's unclear why CYGWIN
-           throws EAGAIN, but it only does so sometimes.  3 may not be enough
-           retries, but we'll try it to start with.
-         - Add _windows_image_name to automatically convert "yes" to "yes.exe"
-           for use with taskkill.exe /im.  Various callers to kill_all could
-           be updated to remove the .exe, but that can be done in another patch.
-         - Use taskkill.exe for killall on cygwin.
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-         - Use the new *_KILLED_PROCESS_EXIT_CODE constants which are correctly
-           set to 0 on windows/cygwin systems where taskkill.exe is used.
-         - Test _windows_image_name
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-         - Add FIXME about including mac-snowleopard in baseline_search_path.
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-         - Make default_configuration actually read from the Configuration file.
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py: Added.
-         - Test default_configuration
-        * Scripts/webkitpy/layout_tests/port/win.py:
-         - Need a basic baseline_search_path if --platform dryrun is to work.
-
-2010-05-08  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, just reverting commit.
-
-        REGRESSION(59000): r59000 contained all sorts of changes it should not have, needs revert.
-        https://bugs.webkit.org/show_bug.cgi?id=38798
-
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py: Removed.
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-
-2010-05-06  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Daniel Bates.
-
-        test-webkitpy fails under cygwin
-        https://bugs.webkit.org/show_bug.cgi?id=38718
-
-        * Scripts/webkitpy/common/system/executive.py:
-         - Add _KILL_PROCESS_KILLED_PROCESS_EXIT_CODE and
-           _KILL_ALL_KILLED_PROCESS_EXIT_CODE to store the expected
-           exit codes of processes killed by kill_process and kill_all.
-           These two constants are only used by the unit tests but are
-           stored in executive.py so they can be right next to the platform ifs.
-         - Remove unnecessary str() conversion, run_command does that for us.
-         - Make os.kill retry on cygwin on EAGAIN.  It's unclear why CYGWIN
-           throws EAGAIN, but it only does so sometimes.  3 may not be enough
-           retries, but we'll try it to start with.
-         - Add _windows_image_name to automatically convert "yes" to "yes.exe"
-           for use with taskkill.exe /im.  Various callers to kill_all could
-           be updated to remove the .exe, but that can be done in another patch.
-         - Use taskkill.exe for killall on cygwin.
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-         - Use the new *_KILLED_PROCESS_EXIT_CODE constants which are correctly
-           set to 0 on windows/cygwin systems where taskkill.exe is used.
-         - Test _windows_image_name
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-         - Add FIXME about including mac-snowleopard in baseline_search_path.
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-         - Make default_configuration actually read from the Configuration file.
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py: Added.
-         - Test default_configuration
-        * Scripts/webkitpy/layout_tests/port/win.py:
-         - Need a basic baseline_search_path if --platform dryrun is to work.
-
- 2010-05-07  Eric Seidel  <eric@webkit.org>
-
-         Reviewed by Nikolas Zimmermann.
-
-         DryrunTest fails on every platform other than mac
-         https://bugs.webkit.org/show_bug.cgi?id=38796
-
-         The test uses the port detection logic to find a suitable
-         port to use results from.  However that detection logic assumes
-         chromium on linux, which requires a chromium checkout which the
-         bots don't have.  The test is broken and we'll need to fix it.
-         For now I'm just going to disable the test on all platforms besides mac.
-
-         * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
- 2010-05-07  Eric Seidel  <eric@webkit.org>
-
-         Reviewed by Daniel Bates.
-
-         Clean up baseline_search_path to use map to reduce copy/paste code
-         https://bugs.webkit.org/show_bug.cgi?id=38792
-
-         Reading which portnames a port falls back to is easier if
-         we convert port names to paths with map instead of using copy/paste code.
-
-         * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-         * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-         * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-         * Scripts/webkitpy/layout_tests/port/mac.py:
-
- 2010-05-07  Eric Seidel  <eric@webkit.org>
-
-         Reviewed by Daniel Bates.
-
-         rollout commands fail when commit is missing bug number
-         https://bugs.webkit.org/show_bug.cgi?id=38791
-
-         * Scripts/webkitpy/tool/commands/download.py:
-          - _commit_info failed to actually return the CommitInfo in the no-bug-id case.
-         * Scripts/webkitpy/tool/commands/download_unittest.py:
-          - Test that the fix worked.
-
-2010-05-07  Darin Fisher  <darin@chromium.org>
-
-        Fix build bustage: toElement<T> should be to<T>.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::elementDoesAutoCompleteForElementWithId):
-
-2010-05-07  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Daniel Bates.
-
-        Refactored VCSUtils.pm's parse-related methods to leave inapplicable
-        hash values unset instead of setting them to "undef".
-
-        https://bugs.webkit.org/show_bug.cgi?id=38724
-
-        Preferring "not set" over "undef" keeps the unit tests smaller and
-        easier to maintain.  Otherwise, we would have to update every unit
-        test case each time we add support for a new key-value pair --
-        instead of just the relevant ones.
-
-        * Scripts/VCSUtils.pm:
-          - In parseGitDiffHeader(), adjusted the handling of these key-values:
-            executableBitDelta and isBinary.
-          - In parseSvnDiffHeader(), adjusted the handling of these key-values:
-            copiedFromPath, isBinary, and sourceRevision.
-          - In parseDiffHeader(), adjusted the handling of these key-values:
-            isGit and isSvn.
-          - In parseDiff(), adjusted the handling of these key-values:
-            isBinary, isGit, isSvn, and sourceRevision.
-
-        * Scripts/webkitperl/VCSUtils_unittest/parseDiff.pl:
-          - Updated the unit tests as necessary.
-
-        * Scripts/webkitperl/VCSUtils_unittest/parseDiffHeader.pl:
-          - Updated the unit tests as necessary.
-
-        * Scripts/webkitperl/VCSUtils_unittest/parseGitDiffHeader.pl:
-          - Updated the unit tests as necessary.
-
-        * Scripts/webkitperl/VCSUtils_unittest/parseSvnDiffHeader.pl:
-          - Updated the unit tests as necessary.
-
-2010-05-06  Mark Rowe  <mrowe@apple.com>
-
-        Rubber-stamped by Dan Bernstein.
-
-        Exclude leaks due to <rdar://problem/7815391> from the output.
-
-        * Scripts/old-run-webkit-tests:
-
-2010-05-06  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r58933.
-        http://trac.webkit.org/changeset/58933
-        https://bugs.webkit.org/show_bug.cgi?id=38717
-
-        "Broke all websocket tests on Tiger" (Requested by eseidel on
-        #webkit).
-
-        * Scripts/new-run-webkit-websocketserver:
-        * Scripts/old-run-webkit-tests:
-        * Scripts/run-webkit-websocketserver:
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-        * Scripts/webkitpy/thirdparty/__init__.py:
-        * Scripts/webkitpy/thirdparty/pywebsocket/COPYING: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/MANIFEST.in: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/README: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/README.webkit: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/example/echo_client.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/example/echo_wsh.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/example/handler_map.txt: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/mod_pywebsocket/__init__.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/mod_pywebsocket/dispatch.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/mod_pywebsocket/handshake.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/mod_pywebsocket/headerparserhandler.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/mod_pywebsocket/memorizingfile.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/mod_pywebsocket/msgutil.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/mod_pywebsocket/standalone.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/mod_pywebsocket/util.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/setup.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/test/config.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/test/mock.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/test/run_all.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/test/test_dispatch.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/test/test_handshake.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/test/test_memorizingfile.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/test/test_mock.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/test/test_msgutil.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/test/test_util.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/test/testdata/README: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/test/testdata/handlers/blank_wsh.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/test/testdata/handlers/origin_check_wsh.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/test/testdata/handlers/sub/exception_in_transfer_wsh.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/test/testdata/handlers/sub/no_wsh_at_the_end.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/test/testdata/handlers/sub/non_callable_wsh.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/test/testdata/handlers/sub/plain_wsh.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/test/testdata/handlers/sub/wrong_handshake_sig_wsh.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/test/testdata/handlers/sub/wrong_transfer_sig_wsh.py: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/test/testdata/hello.pl: Added.
-
-2010-05-06  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Reviewed by David Levin.
-
-        WebSocket: pywebsocket 0.5
-        https://bugs.webkit.org/show_bug.cgi?id=38034
-
-        Remove pywebsocket from webkitpy/thirdparty.
-        Make pywebsocket autoinstalled.
-
-        * Scripts/new-run-webkit-websocketserver:
-          Add --output-dir option.
-        * Scripts/old-run-webkit-tests:
-          Use new-run-webkit-websocketserver, rather than directly run pywebsocket's standalone.py
-        * Scripts/run-webkit-websocketserver:
-          Ditto.
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-          Use autoinstalled pywebsocket.
-        * Scripts/webkitpy/thirdparty/__init__.py:
-          Autoinstall pywebsocket
-        * Scripts/webkitpy/thirdparty/pywebsocket: Removed.
-
-2010-05-06  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Daniel Bates.
-
-        svn-apply now understands the Git diff "copy from" syntax when the
-        similarity index is 100%.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38628
-
-        * Scripts/VCSUtils.pm:
-          - Adjusted parseGitDiffHeader() to parse the "copy from" and
-            "similarity index" lines.
-
-        * Scripts/svn-unapply:
-          - Adjusted the patch() subroutine so that copies are recognized
-            as file additions.
-
-        * Scripts/webkitperl/VCSUtils_unittest/parseGitDiffHeader.pl:
-          - Added unit tests for the cases of a copy with similarity index
-            100% and less than 100%.
-
-2010-05-06  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Daniel Bates.
-
-        Removed the need for svn-apply and -unapply to re-parse whether
-        a diff is binary or not.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38320
-
-        * Scripts/VCSUtils.pm:
-          - Adjusted parseGitDiffHeader() to set the isBinary key.
-          - Adjusted parseSvnDiffHeader() to set the isBinary key.
-          - Adjusted parseDiffHeader() to set the isBinary key.
-          - Changed the scmFormat key set by parseDiffHeader() to
-            isGit and isSvn keys.
-          - Adjusted parseDiff() to set the isBinary, isGit, and isSvn keys.
-
-        * Scripts/svn-apply:
-          - Updated the patch() method to use the isBinary, isGit, and
-            isSvn keys.
-
-        * Scripts/svn-unapply:
-          - Updated the patch() method to use the isBinary and isSvn keys.
-
-        * Scripts/webkitperl/VCSUtils_unittest/parseDiff.pl:
-          - Updated the unit tests as necessary.
-          - Added a test case to test that the isBinary key is getting set properly.
-
-        * Scripts/webkitperl/VCSUtils_unittest/parseDiffHeader.pl:
-          - Updated the unit tests as necessary.
-
-        * Scripts/webkitperl/VCSUtils_unittest/parseGitDiffHeader.pl:
-          - Updated the unit tests as necessary.
-
-        * Scripts/webkitperl/VCSUtils_unittest/parseSvnDiffHeader.pl:
-          - Updated the unit tests as necessary.
-
-2010-05-06  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Add support for resources on Mac
-        https://bugs.webkit.org/show_bug.cgi?id=38637
-
-        Repack webkit_chromium_resources.pak, webkit_strings_en-US.pak,
-        and webkit_resources.pak, and put them as Mac bundle resource.
-        The 'actions' section is almost same as a part of test_shell.gypi.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2010-05-06  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Unreviewed buildfix after r58917.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.h: Missing function declaration added.
-
-2010-05-06  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Darin Adler and Dan Bernstein..
-
-        REGRESSION (r51617): when plugins are disabled, plugins show up as garbage characters
-        https://bugs.webkit.org/show_bug.cgi?id=38698
-        <rdar://problem/7942075>
-
-        Add a 'setPluginsEnabled' layoutTestController function for disabling plug-ins. This is only implemented on Mac currently
-        because the bug that needs this functionality is mac specific.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setPluginsEnabledCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setPluginsEnabled):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setPluginsEnabled):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setPluginsEnabled):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setPluginsEnabled):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setPluginsEnabled):
-
-2010-05-06  Jochen Eisinger  <jochen@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Make ImageDiff depend on WebKit. When compiled from within Chromium, WTF is not a standalone dynamic library but depends on WebKit.
-        https://bugs.webkit.org/show_bug.cgi?id=38632
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2010-05-06  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Replace public inspector url with private property for QtLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=35340
-
-        Replace the public API with a private dynamic property until this feature
-        is ready.
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::init):
-
-2010-05-05  Joseph Pecoraro  <joepeck@webkit.org>
-
-        Reviewed by Pavel Feldman.
-
-        Web Inspector: build-webkit --inspector-frontend Should Exclude *.re2js
-        https://bugs.webkit.org/show_bug.cgi?id=38449
-
-        * Scripts/webkitdirs.pm:
-
-2010-05-05  Charles Wei  <charles.wei@torchmobile.com.cn>
-
-        Reviewed by George Staikos
-
-        This patch adds WCSS -wap-input-format and -wap-input-required support to WebKit
-        Make the test cases in fast/wcss optionional only when  WCSS is enabled.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37848
-
-        * Scripts/old-run-webkit-tests:
-        * Scripts/webkitperl/features.pm:
-
-2010-05-05  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        [DRT/Chromium] Remove InitWebCoreSystemInterface() call
-        https://bugs.webkit.org/show_bug.cgi?id=38624
-
-        Chromium r45167 <http://src.chromium.org/viewvc/chrome?view=rev&revision=45167>
-        added InitWebCoreSystemInterface() to webkit/support/platform_support_mac.mm.
-        So we don't need to call it from DumpRenderTree.cpp anymore.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main): Remove InitWebCoreSystemInterface().
-
-2010-05-05  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        new-run-webkit-tests: clean up newline handling in printing
-
-        The new printing module seems to handle newlines somewhat
-        inconsistently, especially in --verbose mode. This change cleans up
-        the code to make things more consistent and adds a bunch of unit tests.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38616
-
-        * Scripts/webkitpy/common/array_stream.py: Added.
-        * Scripts/webkitpy/common/array_stream_unittest.py: Added.
-        * Scripts/webkitpy/layout_tests/layout_package/metered_stream.py:
-        * Scripts/webkitpy/layout_tests/layout_package/metered_stream_unittest.py: Added.
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-05-05  James Robinson  <jamesr@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Ban the single letter 'l' as an identifier name
-        http://trac.webkit.org/changeset/58844
-
-        Add a lint rule to ban the single letter 'l' as an identifier name
-        since it is very easy to confuse with the numeral '1', especially
-        in code like WebCore/css/CSSHelper.cpp.
-
-        See http://trac.webkit.org/changeset/58844 as an example of a bug
-        caused by confusing short variable names.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-
-2010-05-04  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        PrettyPatch.pretty_diff("") should not hang
-        https://bugs.webkit.org/show_bug.cgi?id=38552
-
-        Also found a bug in PrettyPatch.pretty_diff where it would
-        hang when passed "" as input.
-
-        I suspect there may be bugs in prettify.rb (or our use there-of)
-        where it can hang, which would then cause the testing thread to hang.
-
-        * Scripts/webkitpy/common/prettypatch.py:
-         - Don't hang when passed ""
-        * Scripts/webkitpy/common/prettypatch_unittest.py:
-         - Test that we don't hang when passed ""
-        * Scripts/webkitpy/layout_tests/port/base.py:
-         - Add a FIXME that we should share code with prettypatch.rb
-
-2010-05-04  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        new-run-webkit-tests: turn off threading on the Chromium Mac port until
-        we can stabilize the port more and figure out why it is hanging so
-        frequently.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38553
-
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-          - override default_child_processes() and log a warning
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-          - fix a typo that caused us to print a method object instead of the
-            value the method object returns in the case where there is only
-            one child process.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-          - Add unit tests for the output of run_webkit_tests - in this case,
-            the handling of --child-processes and --print config
-
-2010-05-04  Timothy Hatcher  <timothy@apple.com>
-
-        Fix the find command in extract-localizable-strings so skip
-        directories are correctly skipped and header files are searched.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38545
-        rdar://problem/7941295
-
-        Reviewed by Darin Adler.
-
-        * Scripts/extract-localizable-strings: Append -o after each -prune
-        so -and isn't implied. Surround all the -name arguments so they get
-        an implied -print action. Removed check for "icu". Skip any header that
-        ends in LocalizableStrings.h, so SafariLocalizableStrings.h is skipped.
-        * Scripts/update-webkit-localizable-strings: Add the two icu directories
-        to the skip list.
-
-2010-05-04  Jesus Sanchez-Palencia  <jesus@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Wrong documentation on 'webkit-patch help land'.
-        https://bugs.webkit.org/show_bug.cgi?id=37871
-
-        Small fix on the help documentation for webkit-patch
-        land.
-
-        * Scripts/webkitpy/tool/commands/download.py:
-
-2010-05-04  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] QWebPage viewMode property
-        https://bugs.webkit.org/show_bug.cgi?id=38119
-
-        Rename the property from wrt_viewMode to _q_viewMode.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setViewModeMediaFeature):
-
-2010-05-04  Jochen Eisinger  <jochen@chromium.org>
-
-        Reviewed by Jeremy Orlow.
-
-        Fix typo in run_webkit_tests.py: s/_print\./_printer./
-        https://bugs.webkit.org/show_bug.cgi?id=38515
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-05-04  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        This revision completes the terminology change from "processor" to
-        "checker" for the CarriageReturnProcessor, CppProcessor,
-        PythonProcessor, and TextProcessor classes, etc.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38262
-
-        The word "processor" currently has two uses in our code.  This
-        revision renames the lower-level use to "checker" and preserves the
-        word "processor" for higher-level, more general uses.  This
-        revision also makes whatever other name changes that logically
-        followed from this change.
-
-        * Scripts/check-webkit-style:
-          - Updated references to PatchChecker.
-
-        * Scripts/webkitpy/style/checker.py:
-          - Renamed the StyleCheckerConfiguration class to
-            StyleProcessorConfiguration.
-          - Renamed the ProcessorDispatcher class to CheckerDispatcher, and
-            made similar changes for the class's method names.
-          - Renamed the PatchChecker class to PatchReader.
-          - Updated the file as necessary to accommodate the other class
-            renames in this patch.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Updated the unit test code as necessary.
-
-        * Scripts/webkitpy/style/checkers/common.py:
-          - Renamed the CarriageReturnProcessor class to CarriageReturnChecker,
-            and changed its process() method to check().
-
-        * Scripts/webkitpy/style/checkers/common_unittest.py:
-          - Updated the unit test code as necessary.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-          - Renamed the CppProcessor class to CppChecker, and renamed its
-            process() method to check().
-
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-          - Updated the unit test code as necessary.
-
-        * Scripts/webkitpy/style/checkers/python.py:
-          - Renamed the PythonProcessor class to PythonChecker, and renamed
-            its process() method to check().
-
-        * Scripts/webkitpy/style/checkers/python_unittest.py:
-          - Updated the unit test code as necessary.
-
-        * Scripts/webkitpy/style/checkers/text.py:
-          - Renamed the TextProcessor class to TextChecker, and renamed
-            its process() method to check().
-
-        * Scripts/webkitpy/style/checkers/text_unittest.py:
-          - Updated the unit test code as necessary.
-
-        * Scripts/webkitpy/style/error_handlers.py:
-          - Updated the code as necessary.
-
-        * Scripts/webkitpy/style/error_handlers_unittest.py:
-          - Updated the unit test code as necessary.
-
-2010-05-04  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Adjusted svn-apply and -unapply to accept git diffs generated
-        using the --no-prefix flag.
-
-        https://bugs.webkit.org/show_bug.cgi?id=32438
-
-        * Scripts/VCSUtils.pm:
-          - Loosened the regular expression for the "diff --git" line to
-            match when the --no-prefix flag is used with "git diff".
-          - Also refactored the code parsing the first line so that the
-            script exits with an error message if the first line cannot
-            be parsed.
-        * Scripts/webkitperl/VCSUtils_unittest/parseGitDiffHeader.pl:
-          - Added a unit test case for the --no-prefix case.
-
-2010-05-04  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Daniel Bates.
-
-        Changed VCSUtils.pm's parseDiffHeader() to call the new
-        parseGitDiffHeader() method.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38454
-
-        This revision makes more progress towards adding executable-bit
-        support to svn-apply and svn-unapply.  It also makes more progress
-        towards refactoring the code into a more maintainable form.
-
-        * Scripts/VCSUtils.pm:
-          - Removed gitdiff2svndiff().
-          - Removed the Git-specific logic from parseDiffHeader() and
-            renamed it parseSvnDiffHeader().
-          - Added a new parseDiffHeader() subroutine which calls
-            parseSvnDiffHeader() or parseGitDiffHeader() depending on
-            the format of the first header line.
-
-        * Scripts/webkitperl/VCSUtils_unittest/gitdiff2svndiff.pl: Removed.
-        * Scripts/webkitperl/VCSUtils_unittest/parseDiffHeader.pl:
-          - Removed most of the test cases since these cases are now
-            covered by the unit tests for parseSvnDiffHeader() and
-            parseGitDiffHeader().
-
-        * Scripts/webkitperl/VCSUtils_unittest/parseSvnDiffHeader.pl: Added.
-          - Copied the SVN unit tests from parseDiffHeader.pl and updated
-            them as necessary.
-
-2010-05-03  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Builders should run the perl and python unit tests on every commit
-        https://bugs.webkit.org/show_bug.cgi?id=37976
-
-        The unit tests take a few seconds to run, so they should not
-        have any noticable effect on builder speed.
-
-        We're running the tests everywhere but Tiger as Tiger's
-        Python version is ancient.
-        I would have rather have detected the python version of the
-        slave but I couldn't find any API to do that, and I didn't want
-        to hack version detection into test-webkitpy (at least not yet).
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2010-05-03  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Fixed a recent REGRESSION that caused svn-apply and -unapply to
-        skip over changes to the first file in a diff if leading junk was
-        present (like in an e-mail diff) and if the --force option was used.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38507
-
-        * Scripts/svn-apply:
-          - Removed the bit of code at the beginning of the patch()
-            subroutine that checks for the "Index:" line at the beginning
-            of a file diff (since the parsePatch() subroutine already
-            checks this).
-
-        * Scripts/svn-unapply:
-          - Removed the bit of code at the beginning of the patch()
-            subroutine that checks for the "Index:" line at the beginning
-            of a file diff (since the parsePatch() subroutine already
-            checks this).
-
-2010-05-03  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Unreviewed.
-
-        Adjusted the ChangeLog entry below for r58732 (bug 35804) to reflect
-        the fact that the change will not become active until the patch
-        for bug 38454 lands.
-
-2010-05-03  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Added code for svn-apply and -unapply to display an instructive error
-        message if the --binary flag is left off the "git diff" command
-        for diffs containing binary file differences.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35804
-
-        This change will become active when parseDiffHeader() is modified
-        to call parseGitDiffHeader (see bug 38454).
-
-        * Scripts/VCSUtils.pm:
-          - Adjusted parseDiffHeader() to exit with an appropriate error message
-            if it encounters a line of the form "Binary files <path1> and
-            <path2> differ".
-
-2010-05-03  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        new-run-webkit-tests: r58728 broke the buildbot logic for parsing the
-        output of the log; specifying --verbose should basically be equivalent
-        to --print everything, but instead it was equivalent to not specifying
-        --print and getting the default set. Now, --verbose acts as if
-        --print everything was implicitly specified as the default (you can
-        still override it if you specify both; this is a somewhat debatable
-        call).
-
-        https://bugs.webkit.org/show_bug.cgi?id=38504
-
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-
-2010-05-03  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        new-run-webkit-tests: Fix minor precedence bug introduced in r58728 where we printed
-        "-\n" 78 times instead of "-" 78 times followed by a single "\n".
-
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-
-2010-05-03  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        new-run-webkit-tests: refactor a large chunk of the printing/logging
-        code out of run-webkit-tests py (almost 300 lines out of 1900).
-
-        This change also renames --log to --print (to be slightly more
-        descriptive). I've also added better help messages for printing.
-
-        The new code has unit tests!
-
-        There is still more code to be moved, but this patch is big enough as
-        it is. Namely, still to move are the printing of the actual results
-        and the timing statistics, which should move another 300-400 lines
-        out of the file.
-
-        Notable changes to run_webkit_tests.py beyond code simply moving:
-        * MeteredStream is now hidden under the new printing.Printer class.
-          All the references to self._meter now point to self._printer.
-        * All logging configuration is done in printing.configure_logging()
-        * Instead of using write() lambdas to control what is and isn't
-          printed, we use separate methods on the printer object. This will
-          make it easier to grep which print statements are printed
-          under protection of each flag.
-        * The print_results flag I added a few revs back to suppress printing
-          in the unit tests has been replaced with --print nothing.
-        * The ResultSummary class now stores the entire TestResult for each
-          test, not just the actual result type.
-        * summarize_unexpected_results() got moved from a method on TestRunner
-          to a standalone function. This should move into a separate file
-          along with the ResultSummary class and the TestResult class
-        * The --trace option added recently has been replaced by
-          '--print trace-everything' and '--print trace-unexpected'
-
-        https://bugs.webkit.org/show_bug.cgi?id=38018
-
-        * Scripts/new-run-webkit-tests:
-          - update to new entry points in run_webkit_tests.py
-        * Scripts/webkitpy/layout_tests/layout_package/metered_stream.py:
-          - fix a minor nit where we were printing an empty string where
-            we didn't need to
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py: Added.
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py: Added
-        * Scripts/webkitpy/layout_tests/port/test.py:
-          - implement relative_test_filename() and expected_filename() so
-            we can test printing unexpected results in a platform-neutral
-            way
-        * Scripts/webkitpy/run_webkit_test.py:
-          - move a lot of the printing code into printing.py
-          - change the signatures of the exported entry points for easier
-            unit testing
-        * Scripts/webkitpy/run_webkit_tests_unittest.py:
-          - update w/ changes to run_webkit_tests entry points.
-
-2010-05-03  Kevin Watters  <kevinwatters@gmail.com>
-
-        Reviewed by Kevin Ollivier.
-
-        [wx] Build and use Mac's ComplexTextController to support complex text in wx.
-        https://bugs.webkit.org/show_bug.cgi?id=38482
-
-        * wx/build/settings.py:
-
-2010-05-03  Abhishek Arya  <inferno@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Add support for controlling clipboard access from javascript.
-        Clipboard access from javascript is enabled in test framework.
-        https://bugs.webkit.org/show_bug.cgi?id=27751
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setJavaScriptCanAccessClipboardCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setJavaScriptCanAccessClipboard):
-        (LayoutTestController::overridePreference):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetWebSettings):
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setJavaScriptCanAccessClipboard):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setJavaScriptCanAccessClipboard):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::WebPage):
-        (WebCore::WebPage::resetSettings):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setJavaScriptCanAccessClipboard):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setJavaScriptCanAccessClipboard):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setJavaScriptCanAccessClipboard):
-
-2010-05-03  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Maui MiniBrowser: Add an option to show/hide the web view
-        https://bugs.webkit.org/show_bug.cgi?id=38486
-
-        * MiniBrowser/win/BrowserWindow.cpp:
-        (BrowserWindow::createWindow):
-        Set the background brush to something other than null.
-
-        (BrowserWindow::onCommand):
-        Show and hide the web view accordingly.
-        
-        * MiniBrowser/win/MiniBrowser.rc:
-        * MiniBrowser/win/resource.h:
-        Add new menu item.
-
-2010-05-03  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Daniel Bates.
-
-        Added a parseGitDiffHeader() subroutine to VCSUtils.pm that
-        parses any changes to the executable bit in a Git diff.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38425
-
-        This revision is more preparation towards adding "executable bit"
-        support to svn-apply and svn-unapply.  No code is going "live" in
-        this change except for the new unit tests in test-webkitperl.
-
-        * Scripts/VCSUtils.pm:
-          - Added isExecutable() to determine whether a file mode has the
-            executable bit set or not.
-          - Added parseGitDiffHeader() to parse the header of a Git diff.
-
-        * Scripts/webkitperl/VCSUtils_unittest/parseGitDiffHeader.pl: Added.
-          - Added unit tests for parseGitDiffHeader().
-
-2010-05-03  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Chris Jerdonek.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38447
-
-        Refactor the unit tests in VCSUtils_unittest/parseDiff.pl to use
-        Test::More::is_deeply like we do in VCSUtils_unittest/parseDiffHeader.pl.
-
-        * Scripts/webkitperl/VCSUtils_unittest/parseDiff.pl:
-
-2010-05-02  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Unreviewed.
-
-        Corrected a file path in the ChangeLog entry for r58663 (bug 38319) below.
-
-2010-05-02  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38319
-
-        * Scripts/VCSUtils.pm:
-          - In parseDiffHeader()--
-            - Added an "scmFormat" hash key to the return value to represent
-              whether the diff is Git or SVN formatted.
-            - Adjusted the code so the value of "copiedFromPath" will
-              be undef rather than "does not exist" if the file was not
-              copied.
-
-        * Scripts/webkitperl/VCSUtils_unittest/parseDiff.pl:
-          - Added a FIXME to refactor these unit tests to use is_deeply().
-
-        * Scripts/webkitperl/VCSUtils_unittest/parseDiffHeader.pl:
-          - Updated the unit tests to test the "scmFormat" value.
-          - Simplified the unit tests by refactoring them to use is_deeply().
-
-2010-05-01  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Chris Jerdonek.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38423
-
-        Adds infrastructure to change the file mode of a file using
-        the appropriate SCM-specific routines.
-
-        No functionality was changed, so no new tests.
-
-        * Scripts/VCSUtils.pm: Added subroutines scmToggleExecutableBit,
-        scmAddExecutableBit, and scmRemoveExecutableBit.
-        * Scripts/svn-apply: Check for the hash key executableBitDelta
-        and toggle the executable bit.
-        * Scripts/svn-unapply: Ditto.
-
-2010-04-30  Chris Marrin  <cmarrin@apple.com>
-
-        Reviewed by Simon Fraser.
-
-        Enabled accelerated compositing in DRT for Windows
-        https://bugs.webkit.org/show_bug.cgi?id=38404
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (main):
-
-2010-04-30  Anders Carlsson  <andersca@apple.com>
-
-        Try to fix GTK+ build.
-
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_new_stream):
-
-2010-04-30  Anders Carlsson  <andersca@apple.com>
-
-        Fix build.
-
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-
-2010-04-30  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Timothy Hatcher.
-
-        Next step towards fixing
-        
-        https://bugs.webkit.org/show_bug.cgi?id=20784
-        move npapi.h to C99 integer types
-
-        Use the C99 types everywhere. The "old" types are still around but will be removed
-        in a subsequent commit.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (int32VariantToIdentifier):
-        (doubleVariantToIdentifier):
-        (testIdentifierToInt):
-        (testGetIntIdentifier):
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.cpp:
-        (NPP_New):
-        (NPP_NewStream):
-        (NPP_WriteReady):
-        (NPP_Write):
-        (NPP_HandleEvent):
-        * DumpRenderTree/win/TestNetscapePlugin/main.cpp:
-        (NPP_New):
-        (NPP_NewStream):
-        (NPP_WriteReady):
-        (NPP_Write):
-        (NPP_HandleEvent):
-
-2010-04-30  Steve Block  <steveblock@google.com>
-
-        Reviewed by Jeremy Orlow.
-
-        Changed Steve Block from committer to reviewer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-04-28  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        webkit-patch doesn't work if a git repo is tracking multiple svn repos
-        https://bugs.webkit.org/show_bug.cgi?id=38290
-        
-        Getting the tests to pass required getting our SVN repo to more closely
-        match the real svn.webkit.org repo by having a trunk directory.
-        That involved adding an extra commit at the beginning and thus changing
-        all the commit numbers in the tests.
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-
-2010-04-29  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        new-run-webkit-tests can deadlock with Chromium's TestShell
-        https://bugs.webkit.org/show_bug.cgi?id=38298
-
-        Fix _write_command_and_read_line to never send unicode() to
-        test_shell, instead to always encode as utf-8.  This was causing
-        random hangs because if test_shell ever encounters a \0 in the
-        stream it can deadlock with NRWT.
-
-        There is still a deadlock bug to fix in NRWT/test_shell design, however
-        this fix should make the deadlock occur less often.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-
-2010-04-29  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Refactored svn-apply and svn-unapply to use the new
-        parsePatch() subroutine.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34033
-
-        * Scripts/VCSUtils.pm:
-          - Consolidated %diffHash documentation.
-          - Added prepareParsedPatch().
-
-        * Scripts/svn-apply:
-          - Replaced main while loop with calls to parsePatch() and
-            prepareParsedPatch().
-
-        * Scripts/svn-unapply:
-          - Replaced main while loop with calls to parsePatch() and
-            prepareParsedPatch().
-
-        * Scripts/test-webkitperl:
-          - Changed to render relative test paths rather than absolute
-            test paths.
-
-        * Scripts/webkitperl/VCSUtils_unittest/prepareParsedPatch.pl: Added.
-          - Added unit tests for prepareParsedPatch().
-
-2010-04-28  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Added to VCSUtils's parseDiffHeader() support for binary patches.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38094
-
-        The parseDiffHeader() function is part of new patch-parsing code
-        for svn-apply and svn-unapply that will go live in a subsequent
-        revision.
-
-        * Scripts/VCSUtils.pm:
-          - Added logic to parseDiffHeader() to recognize the ending of
-            the header portion of a binary diff.
-
-        * Scripts/webkitperl/VCSUtils_unittest/parseDiffHeader.pl:
-          - Added unit test cases for SVN and Git binary diffs.
-
-2010-04-28  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Levin.
-
-        Document that subprocess.poll/wait are not threadsafe
-        https://bugs.webkit.org/show_bug.cgi?id=38289
-
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-
-2010-04-28  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Daniel Bates.
-
-        Removed the dividing line (i.e. "====...") logic from the code
-        called by svn-apply and svn-unapply.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38093
-
-        The dividing line logic is unnecessary.  Removing it simplifies the
-        code and makes some subsequent changes easier.
-
-        * Scripts/VCSUtils.pm:
-          - Removed the logic in gitdiff2svndiff() to convert the git
-            "index" line to an SVN dividing line.
-          - Adjusted the logic similarly in parseDiffHeader().
-
-        * Scripts/webkitperl/VCSUtils_unittest/gitdiff2svndiff.pl:
-          - Updated the unit tests as necessary.
-
-        * Scripts/webkitperl/VCSUtils_unittest/parseDiff.pl:
-          - Updated the unit tests as necessary.
-          - Corrected an error in the unit tests whereby all elements
-            of an array were referencing the same element rather than
-            distinct elements -- causing unit test failures to be masked.
-
-        * Scripts/webkitperl/VCSUtils_unittest/parseDiffHeader.pl:
-          - Updated the unit tests as necessary.
-          - Made the same unit test correction as above for parseDiff.pl.
-
-2010-04-28  Evan Stade  <estade@chromium.org>
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py: adding myself as a committer
-
-2010-04-28  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        Add MiniBrowser to the lists of modules to build and only build it on
-        SnowLeopard and later.
-
-        * Makefile:
-        * MiniBrowser/Makefile:
-
-2010-04-28  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        Make running MiniBrowser.app without explicitly setting DYLD_FRAMEWORK_PATH.
-
-        * MiniBrowser/MiniBrowser.xcodeproj/project.pbxproj:
-        * MiniBrowser/mac/make-launchable.sh: Added.
-
-2010-04-28  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Levin.
-
-        Audit all uses of subprocess in webkitpy
-        https://bugs.webkit.org/show_bug.cgi?id=38284
-
-        After further discussions with Jeffrey Yasskin
-        about http://bugs.python.org/issue2320
-        and related issues of using subprocess from
-        multiple threads, I have learned that subprocess
-        is known to be non-threadsafe through recent
-        Python 2.7 builds.
-
-        I'm attempting to lessen our exposure to these
-        subprocess bugs by auditing each use of subprocess
-        in webkitpy.  I did not find any unsafe calls
-        in my audit, but I did remove numerous unneeded
-        import subprocess lines.
-
-        * Scripts/webkitpy/common/checkout/api.py:
-        * Scripts/webkitpy/common/net/bugzilla.py:
-        * Scripts/webkitpy/common/system/deprecated_logging_unittest.py:
-        * Scripts/webkitpy/common/system/user.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py: Added.
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/win.py:
-
-2010-04-28  Darin Adler  <darin@apple.com>
-
-        Ignore a directory the Python tools creates.
-
-        * Scripts/webkitpy/style: Modified property svn:ignore.
-
-2010-04-28  Darin Adler  <darin@apple.com>
-
-        * Scripts/extract-localizable-strings: Fix minor mistake in
-        argument checking.
-
-2010-04-28  Luiz Agostini  <luiz.agostini@openbossa.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] QWebPage viewMode property
-        https://bugs.webkit.org/show_bug.cgi?id=38119
-
-        Replacing method qt_wrt_setViewMode by wrt_viewMode property.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setViewModeMediaFeature):
-
-2010-04-28  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Adjusted check-webkit-style so that files with file type NONE
-        are automatically skipped without warning.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38197
-
-        This change simplifies configuring which files to skip.  It also
-        addresses an issue whereby check-webkit-style was unintentionally
-        checking .vcproj files for carriage returns.
-
-        * Scripts/webkitpy/style/checker.py:
-          - Moved the C++, Python, and text file extensions to new
-            module-level configuration variables.
-          - Removed .pyc from the _SKIPPED_FILES_WITHOUT_WARNING configuration
-            variable.
-          - Changed the numeric values of the FileType enum so that
-            FileType.NONE evaluates to False.
-          - For ProcessorDispatcher.should_skip_without_warning():
-            - Changed the method to return True for FileType.NONE files.
-            - Made ChangeLog files an exception to getting skipped.
-          - Changed the StyleProcessor.process() method to raise an
-            exception if given a file path that should not be processed.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Updated the unit tests and added more test cases as necessary.
-
-2010-04-28  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Jeremy Orlow.
-
-        webkitpy: ScriptError('Failed to run "[u\'taskkill.exe\', u\'/f\', u\'/im\', u\'httpd.exe\']" exit_code: 128',)
-        https://bugs.webkit.org/show_bug.cgi?id=38248
-
-        The previous code did not check the return code of taskkill.
-        When I moved that callsite from using subprocess.call to
-        Executive.run_command having a non-zero return code became an error.
-
-        In this change I've centralized our killall handling in executive,
-        and added tests for it to make sure it works.
-
-        Currently kill_process and kill_all swallow exceptions in the cases
-        where the process(es) to be killed do(es) not exist.
-
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/port/win.py:
-
-2010-04-28  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        wdiff_text throws ScriptError because wdiff returns non-zero when files differ
-        https://bugs.webkit.org/show_bug.cgi?id=38246
-
-        wdiff returns 0 when files are the same, 1 when they differ.
-        run_command by default raises ScriptError if the return code is non-zero.
-        Fixed this by adding a custom error handler which only raises if the
-        return code is not 1.
-
-        I broke up the huge wdiff_text() method into little pieces
-        for easier unit testing.  There is only one functional change here
-        and that is the addition of the custom error handler.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-
-2010-04-28  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Unreviewed build fix.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::dumpImage): format '%u' expects type 'unsigned int', but argument 2 has type 'size_t'.
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::willSendRequest): too few arguments for format.
-
-2010-04-27  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Darin Adler and Eric Seidel.
-
-        Add layoutTestController.setPrinting()
-        https://bugs.webkit.org/show_bug.cgi?id=37203
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (setPrintingCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::isPrinting):
-        (LayoutTestController::setIsPrinting):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dump):
-
-2010-04-27  Michael Nordman  <michaeln@google.com>
-
-        Reviewed by Dmitry Titov.
-
-        [Chromium] Add two things to the webkit API to support appcaches in workers.
-        1) WebURLRequest TargetTypes for worker and shared worker main resources.
-        2) Factory method on class WebCommonWorkerClient to
-           createApplicationCacheHost() for the associated worker.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38147
-
-        * DumpRenderTree/chromium/TestWebWorker.h add a stub impl of the factory method 
-        (TestWebWorker::createApplicationCacheHost):
-
-2010-04-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        run-bindings-tests doesn't work in an SVN checkout
-        https://bugs.webkit.org/show_bug.cgi?id=38225
-
-        Previously detect_scm_system needed an absolute path for SVN.  Now we
-        accept a relative path.
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-
-2010-04-27  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Stephanie Lewis.
-
-        Always build WebKit2 when building on SnowLeopard and later. 
-
-        * Scripts/build-webkit:
-
-2010-04-27  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Maciej Stachowiak.
-
-        Fix for https://bugs.webkit.org/show_bug.cgi?id=38238
-        Allow both WebKit and WebKit2 to link to the same WebCore.framework
-
-        * Scripts/build-webkit: Remove the UMBRELLA_LDFLAGS override when building
-        WebCore for WebKit2, it is no longer necessary.
-
-2010-04-27  James Robinson  <jamesr@chromium.org>
-
-        Reviewed by David Levin.
-
-        Fix a typo in chromium.py that causes NRWT to fail in --verbose
-        mode in a Chromium checkout.
-        https://bugs.webkit.org/show_bug.cgi?id=38234
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2010-04-27  Darin Fisher  <darin@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [Chromium] Remove deprecated form of didChangeLocationWithinPage
-        https://bugs.webkit.org/show_bug.cgi?id=38178
-
-        Switch over to implementing didNavigateWithinPage.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (TestWebViewDelegate::didNavigateWithinPage):
-        (WebViewHost::didChangeLocationWithinPage):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2010-04-27  Evan Martin  <evan@chromium.org>
-
-        Unreviewed.
-
-        Adding myself to commmitters list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-04-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        run-bindings-tests should use --reset-results instead of --overwrite
-        https://bugs.webkit.org/show_bug.cgi?id=38200
-
-        As requested by Ojan.
-
-        * Scripts/run-bindings-tests:
-
-2010-04-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        REGRESSION(r58261): webkit-patch edit-changelogs is broken
-        https://bugs.webkit.org/show_bug.cgi?id=38204
-
-        In 58261, we added code to abstract step that interrogates the squash
-        and git_commit options, but it doesn't declare that it uses those
-        options.  That means any command that doesn't happen to declare those
-        options might be broken if it uses the cached_lookup mechanism.
-
-        * Scripts/webkitpy/tool/steps/abstractstep.py:
-        * Scripts/webkitpy/tool/steps/applypatch.py:
-        * Scripts/webkitpy/tool/steps/applypatchwithlocalcommit.py:
-        * Scripts/webkitpy/tool/steps/build.py:
-        * Scripts/webkitpy/tool/steps/checkstyle.py:
-        * Scripts/webkitpy/tool/steps/cleanworkingdirectory.py:
-        * Scripts/webkitpy/tool/steps/closebug.py:
-        * Scripts/webkitpy/tool/steps/closebugforlanddiff.py:
-        * Scripts/webkitpy/tool/steps/commit.py:
-        * Scripts/webkitpy/tool/steps/confirmdiff.py:
-        * Scripts/webkitpy/tool/steps/createbug.py:
-        * Scripts/webkitpy/tool/steps/ensurebuildersaregreen.py:
-        * Scripts/webkitpy/tool/steps/ensurelocalcommitifneeded.py:
-        * Scripts/webkitpy/tool/steps/obsoletepatches.py:
-        * Scripts/webkitpy/tool/steps/postcodereview.py:
-        * Scripts/webkitpy/tool/steps/postdiff.py:
-        * Scripts/webkitpy/tool/steps/preparechangelog.py:
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        * Scripts/webkitpy/tool/steps/update.py:
-        * Scripts/webkitpy/tool/steps/updatechangelogswithreviewer.py:
-        * Scripts/webkitpy/tool/steps/validatereviewer.py:
-
-2010-04-27  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Levin.
-
-        prepare-ChangeLog --bug fails on some CYGWIN installs due to missing certs
-        https://bugs.webkit.org/show_bug.cgi?id=38212
-
-        * Scripts/prepare-ChangeLog:
-         - Pass --insecure to curl to work around CYGWIN missing certs.
-
-2010-04-27  Sam Weinig  <sam@webkit.org>
-
-        Rubber-stamped by Beth Dakin.
-
-        It is no longer necessary to set ENABLE_EXPERIMENTAL_SINGLE_VIEW_MODE
-        or WTF_USE_WEB_THREAD. Remove them.
-
-        * Scripts/build-webkit:
-
-2010-04-27  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by David Levin.
-
-        Changed Chris Jerdonek from committer to reviewer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-04-27  Benjamin Poulain  <benjamin.poulain@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] QGraphicsWebView: Arrow keys scroll the graphics-view instead of the web-page
-        https://bugs.webkit.org/show_bug.cgi?id=35834
-
-        The scene should always have the size of the web view otherwhise it is
-        possible to scroll the graphics view.
-
-        * QtLauncher/webview.cpp:
-        (WebViewGraphicsBased::resizeEvent):
-
-2010-04-27  Diego Gonzalez  <diegohcg@webkit.org>
-
-        Unreviewed.
-
-        Adding myself to committers.py
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-04-27  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        [chromium] new-run-webkit-tests hangs on Chromium Bots (OS X and Linux)
-        https://bugs.webkit.org/show_bug.cgi?id=37987
-
-        After further research, I believe the hang is caused by:
-        http://bugs.python.org/issue2320
-        Basically Popen() is not reentrant.
-        The workaround is to pass close_fds=True to Popen() on Mac/Linux.
-
-        I fixed our main Popen wrapper "Executive.run_command" to use close_fds=True
-        when appropriate.
-
-        I audited all places we call Popen() and either moved them to run_command
-        or left a FIXME that they are not thread safe.  A few places I added the
-        close_fds workaround there and left an explanitory note.
-
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-         - Added note that this Popen use is not threadsafe.
-        * Scripts/webkitpy/common/system/executive.py:
-         - Fixed our Executive.run_* to workaround python bug 2320.
-        * Scripts/webkitpy/common/system/user.py:
-         _ Added note that this Popen use is not threadsafe.
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py: ditto.
-        * Scripts/webkitpy/layout_tests/port/apache_http_server.py: ditto.
-        * Scripts/webkitpy/layout_tests/port/base.py:
-         - Change wdiff back to using run_command now that we believe it
-           to be threadsafe.
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-         - Fix to use Executive in places.
-         - Pass self._executive down to the Driver for easier unit testing.
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-         - Re-factor to use a _kill_all method.
-         - Made the _kill_all method use run_command to be threadsafe.
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-         - Add FIXME about using Executive.
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-         - Use Executive to be threadsafe.
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-         - Pass self._executive down to the Driver.
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-         - Add note about Popen not being threadsafe.
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-         - Move one caller to run_command add notes about moving others.
-
-2010-04-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Maciej Stachowiak.
-
-        REGRESSION(r58261): webkit-patch upload does not work in an SVN checkout.
-        https://bugs.webkit.org/show_bug.cgi?id=38186
-
-        Unfortunately, we don't have a good way of testing this change because
-        our test coverage of the scm.py API is poor...
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/tool/steps/preparechangelog.py:
-
-2010-04-26  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Remove unused code from text_diff.py
-        https://bugs.webkit.org/show_bug.cgi?id=38170
-
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-         - Remove is_render_tree_dump which appears unused.
-
-2010-04-26  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        webkit-patch pretty-diff is broken
-        https://bugs.webkit.org/show_bug.cgi?id=38172
-
-        We need to register for these options because they're used when we look
-        up the diff.
-
-        * Scripts/webkitpy/tool/steps/confirmdiff.py:
-
-2010-04-26  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add ObjC and GObject to run-bindings-test
-        https://bugs.webkit.org/show_bug.cgi?id=38168
-
-        * Scripts/run-bindings-tests:
-
-2010-04-26  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add testing infrastructure for JSC bindings generator
-        https://bugs.webkit.org/show_bug.cgi?id=38167
-
-        Add support for testing more than one bindings.  Also, converted the
-        script to PEP8 style.
-
-        * Scripts/run-bindings-tests:
-
-2010-04-26  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Refactor results.html generation out into a new method and test it
-        https://bugs.webkit.org/show_bug.cgi?id=38164
-
-        Hopefully this results in no change in functionality.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-04-26  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed, rolling out r58265.
-        http://trac.webkit.org/changeset/58265
-        https://bugs.webkit.org/show_bug.cgi?id=38021
-
-        This change prevents me from uploading patches.  It also breaks sheriff-bot.
-
-        * Scripts/webkitpy/tool/steps/options.py:
-
-2010-04-26  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        [chromium] new-run-webkit-tests hangs on Chromium Bots (OS X and Linux)
-        https://bugs.webkit.org/show_bug.cgi?id=37987
-
-        Rolled out:
-        http://trac.webkit.org/changeset/58062
-        http://trac.webkit.org/changeset/58060
-        http://trac.webkit.org/changeset/58059
-        http://trac.webkit.org/changeset/58055
-        http://trac.webkit.org/changeset/58054
-        and parts of:
-        http://trac.webkit.org/changeset/58050
-
-        I also wrote some new comments and a tiny amount of new
-        code to help make ChromiumDriver.run_test easier to read.
-
-        In order to unit-test my new code, I had to change ChromiumDriver
-        to not automatically start itself when created.  That ended up
-        being a lot of plumbing, but is hopefully easier to understand now.
-
-        There are no tests for the (restored) wdiff code.  wdiff does not
-        exist on all systems, so for now we will assume it worked since
-        it is just old code being reverted.
-
-         * Scripts/webkitpy/layout_tests/driver_test.py:
-          - Use create_driver instead of start_driver, and be sure to call .stop()
-         * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-          - Use create_driver instead of start_driver
-         * Scripts/webkitpy/layout_tests/port/base.py:
-          - Added a comment to explain that diffs are binary files.
-          - Various patch reverts relating to wdiff
-          - Add Driver._command_wrapper to share code between WebKitDriver and ChromiumDriver.
-          - Made _command_wrapper use shlex.split to get rid of the FIXME.
-         * Scripts/webkitpy/layout_tests/port/base_unittest.py: Added.
-          - test the new _command_wrapper
-         * Scripts/webkitpy/layout_tests/port/chromium.py:
-         - Use _command_wrapper to get rid of a bunch of ugly code.
-         - Make __init__ stop auto-starting.
-         - Rename create_driver to start_driver.
-         - Added _write_command_and_read_line to make it possible to
-           put a FIXME next to read_line() w/o having to put it in two places.
-         - Moved test_shell command building into _test_shell_command and tested it.
-         - Fix comments to say test_shell since ChromiumDriver is test_shell only.
-         * Scripts/webkitpy/layout_tests/port/chromium_unittest.py: Added.
-          - Test the new test_shell_command method.
-         * Scripts/webkitpy/layout_tests/port/dryrun.py:
-          - Rename create_driver to start_driver.
-         * Scripts/webkitpy/layout_tests/port/test.py:
-          - Rename create_driver to start_driver.
-         * Scripts/webkitpy/layout_tests/port/webkit.py:
-          - Rename create_driver to start_driver.
-          - Treat output as binary arrays.
-         * Scripts/webkitpy/layout_tests/test_types/test_type_base.py:
-          - Treat diff files as binary.
-         * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-          - Treat diff files as binary.
-
-2010-04-26  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Move bindings test directory into the scripts directory
-        https://bugs.webkit.org/show_bug.cgi?id=38161
-
-        Change script to point to the new location of these data files.
-
-        * Scripts/run-bindings-tests:
-
-2010-04-26  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Mark run-bindings-tests executable so we can execute it.
-
-        * Scripts/run-bindings-tests:
-
-2010-04-26  Tony Chang  <tony@chromium.org>
-
-        Reviewed by David Levin.
-
-        [chromium] build-webkit --chromium should build release by default
-        https://bugs.webkit.org/show_bug.cgi?id=38028
-
-        * Scripts/build-dumprendertree: Also should build release by default
-        * Scripts/build-webkit: Make sure to pass command line args through
-        * Scripts/webkitdirs.pm: Build the right configuration
-
-2010-04-26  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        complete rietveld bugzilla integration
-        https://bugs.webkit.org/show_bug.cgi?id=38021
-
-        Makes --fancy-review the default. All this means is that the patch will
-        be uploaded to rietveld in addition to bugs.webkit.org. 
-
-        * Scripts/webkitpy/tool/steps/options.py:
-
-2010-04-26  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        For check-webkit-style, renamed the style/processors/ directory
-        to style/checkers/.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38122
-
-        * Scripts/webkitpy/style/checker.py:
-          - Updated import statements.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Updated import statements.
-
-        * Scripts/webkitpy/style/checkers: Copied from WebKitTools/Scripts/webkitpy/style/processors.
-        * Scripts/webkitpy/style/processors: Removed.
-        * Scripts/webkitpy/style/processors/__init__.py: Removed.
-        * Scripts/webkitpy/style/processors/common.py: Removed.
-        * Scripts/webkitpy/style/processors/common_unittest.py: Removed.
-        * Scripts/webkitpy/style/processors/cpp.py: Removed.
-        * Scripts/webkitpy/style/processors/cpp_unittest.py: Removed.
-        * Scripts/webkitpy/style/processors/python.py: Removed.
-        * Scripts/webkitpy/style/processors/python_unittest.py: Removed.
-        * Scripts/webkitpy/style/processors/python_unittest_input.py: Removed.
-        * Scripts/webkitpy/style/processors/text.py: Removed.
-        * Scripts/webkitpy/style/processors/text_unittest.py: Removed.
-
-2010-04-06  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Include git commits in the diff for webkit-patch upload/land.
-        https://bugs.webkit.org/show_bug.cgi?id=36394
-
-        Adds --squash, --no-squash and --git-commit.
-
-        --git-commit will use a specific local commit for land/upload.
-        If a commit-range is specified, then that range is treated as
-        a single squashed commit.
-
-        --squash will squash all local changes including working copy changes
-        into a single patch.
-
-        --no-squash is the legacy behavior (upload only considers the working copy,
-        land commits the working copy and then each local commit separately to SVN)
-
-        If neither is specified, then an informative error is raised if there is
-        more than one local commit or when there are local commit(s) and working
-        copy changes.
-
-        If the webkit-patch.squash git config parameter is set, then
-        that will be respected instead of raising an error.
-
-        * Scripts/check-webkit-style:
-        * Scripts/webkitpy/common/checkout/api.py:
-        * Scripts/webkitpy/common/checkout/api_unittest.py:
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-        * Scripts/webkitpy/style/optparser.py:
-        --git-since is removed and --git-commit no longer implies commit_id..
-        Instead, it treats that individual commit, but also supports commit ranges
-        (e.g. commit_id..) as arguments.
-        * Scripts/webkitpy/style/optparser_unittest.py:
-        * Scripts/webkitpy/style_references.py:
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/upload.py:
-        * Scripts/webkitpy/tool/main.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/abstractstep.py:
-        * Scripts/webkitpy/tool/steps/applypatchwithlocalcommit.py:
-        * Scripts/webkitpy/tool/steps/checkstyle.py:
-        * Scripts/webkitpy/tool/steps/commit.py:
-        * Scripts/webkitpy/tool/steps/options.py:
-        * Scripts/webkitpy/tool/steps/postdiff.py:
-        * Scripts/webkitpy/tool/steps/preparechangelog.py:
-        * Scripts/webkitpy/tool/steps/preparechangelogforrevert.py:
-        * Scripts/webkitpy/tool/steps/updatechangelogswithreviewer.py:
-        * Scripts/webkitpy/tool/steps/validatereviewer.py:
-
-2010-04-26  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Deleted the StyleChecker-related classes that are no longer
-        being used.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38118
-
-        * Scripts/webkitpy/style/checker.py:
-          - Deleted the DeprecatedStyleChecker class.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Deleted the StyleCheckerTest, StyleCheckerCheckFileBase,
-            StyleCheckerCheckFileTest, and StyleCheckerCheckPathsTest classes.
-
-2010-04-26  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Changed the StyleChecker class to use the new TextFileReader class.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37066
-
-        This revision separates the code responsible for reading and iterating
-        over text files from the rest of check-webkit-style.
-
-        * Scripts/check-webkit-style:
-          - Changed the script to use the new StyleProcessor and
-            TextFileReader classes instead of the StyleChecker class.
-
-        * Scripts/webkitpy/style/checker.py:
-          - Added a FIXME to rename many of uses of the word "processor" to
-            "checker".  We did this to clarify the difference between
-            ProcessorBase instances passed to the TextFileReader and
-            classes that process and check lines for style.
-          - Added a FIXME to remove FileType.NONE as a possible return value
-            of ProcessorDispatcher._file_type().  This will better consolidate
-            the logic of which files should be skipped.
-          - Added a FIXME to delete the StyleChecker class.
-          - Added the StyleProcessor class which implements ProcessorBase.
-            This class is responsible for processing lines to check style
-            (but not for reading files).  For each file, this class creates
-            creates both a carriage-return checker and a format-specific
-            style checker (e.g. one of C++, Python, etc).
-          - Updated the PatchChecker class to use a TextFileReader instance
-            instead of a StyleChecker.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Added the StyleProcessor_EndToEndTest class to do "end-to-end"
-            tests of the StyleProcessor class.
-          - Added the StyleProcessor_CodeCoverageTest to test the
-            StyleProcessor class with more complete code coverage.
-            Unlike the StyleProcessor_EndToEndTest class, this class makes
-            heavy use of mock parameters.
-          - Added FIXME's to delete the unit test classes that are no
-            longer needed.
-          - Updated the PatchCheckerTest class to use a MockTextFileReader
-            instead of a MockStyleChecker.
-
-        * Scripts/webkitpy/style/filereader.py:
-          - Updated the TextFileReader class to use the preferred logic
-            of checking file existence at the beginning of the process_file()
-            method instead of in the except block, per
-            https://bugs.webkit.org/show_bug.cgi?id=37122
-
-        * Scripts/webkitpy/style/filereader_unittest.py:
-          - In the TextFileReaderTest class:
-            - Moved the test_process_file__should_not_process() method.
-            - Added a test_process_file__file_stdin() method to test
-              the file path "-".
-
-2010-04-20  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Add more support for textInputController
-
-        Add support for selectedRange(), setMarkedText(), insertText(),
-        and firstRectForCharacterRange().
-
-        Unskip tests:
-
-        fast/forms/input-maxlength-ime-preedit.html
-        fast/forms/input-maxlength-ime-completed.html
-        fast/text/international/thai-cursor-position.html
-        fast/events/ime-composition-events-001.html
-        editing/selection/5825350-1.html
-        editing/selection/5825350-2.html
-        editing/selection/mixed-editability-10.html
-
-        https://bugs.webkit.org/show_bug.cgi?id=35702
-
-        * DumpRenderTree/qt/TextInputControllerQt.cpp:
-        (TextInputController::setMarkedText):
-        (TextInputController::insertText):
-        (TextInputController::selectedRange):
-        (TextInputController::firstRectForCharacterRange):
-        * DumpRenderTree/qt/TextInputControllerQt.h:
-
-2010-04-23  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        check-webkit-style complains about non-utf8 data in layout test result
-        https://bugs.webkit.org/show_bug.cgi?id=38027
-
-        The problem was we were assuming patch files/diff output as utf-8.
-        Turns out they're not.  We have to treat them as binary data because
-        a single patch may have multiple text files in it with conflicting encodings!
-
-        * Scripts/webkitpy/common/checkout/api.py:
-         - contents_at_revision returns a byte array, so decode it to unicode
-           before passing it to parse_latest_entry_from_file
-        * Scripts/webkitpy/common/checkout/api_unittest.py:
-         - Update our mock mock_contents_at_revision to match the encoding
-           semantics of the real one.
-        * Scripts/webkitpy/common/checkout/scm.py:
-         - Be careful not to decode output which may contain file contents
-           (like diff, cat or show) as the encoding for that content is unknown.
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-         - Update our tests to use both latin1 and utf-8 encoded data.
-        * Scripts/webkitpy/common/net/bugzilla.py:
-         - _fill_attachment_form should not assume unicode data.  Callers
-           may wish to attach other types of files to bugs.
-        * Scripts/webkitpy/common/prettypatch.py:
-         - Diffs are byte arrays, deal with them as such.
-        * Scripts/webkitpy/common/prettypatch_unittest.py:
-         - Test to make sure we handle diffs with multiple conflicting encodings.
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-         - Make sure that our unicode support does not break our
-           byte array input support for run_command.
-
-2010-04-23  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by David Levin.
-
-        Fix for https://bugs.webkit.org/show_bug.cgi?id=38060
-        Split up Threading.h
-
-        Add necessary forwarding headers.
-
-        * DumpRenderTree/ForwardingHeaders/wtf/Atomics.h: Added.
-        * DumpRenderTree/ForwardingHeaders/wtf/ThreadSafeShared.h: Added.
-        * DumpRenderTree/ForwardingHeaders/wtf/ThreadingPrimitives.h: Added.
-
-2010-04-23  Xiaomei Ji  <xji@chromium.org>
-
-        No need to review.
-
-        Add xji as committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-04-23  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix, add platform stub for new LayoutTestController method.
-
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::markerTextForListItem):
-
-2010-04-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        new-run-webkit-tests: add a "--retry-failures" flag and a
-        "--no-retry-failures" flag (the former is the default). Also, rename
-        "--print-unexpected-results" and "--retry-unexpected-results" to
-        "--print-last-failures" and "--retry-last-failures" because the
-        retry flag was confusing. The new flag names aren't great, but
-        hopefully they're less confusing.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37838
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-04-22  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Fix for https://bugs.webkit.org/show_bug.cgi?id=38022
-        Move isMainThread predicate function to MainThread.h
-
-        Added forwarding header for MainThread.h
-
-        * DumpRenderTree/ForwardingHeaders/wtf/MainThread.h: Added.
-
-2010-04-23  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Disable Netscape plugin support for minimal configuration
-        https://bugs.webkit.org/show_bug.cgi?id=38026
-
-        Pass the minimal configuration option to Qt build system 
-        as part of the CONFIG variable.
-
-        * Scripts/build-webkit:
-
-2010-04-22  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Unreviewed fix.
-
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py: fix NameError: global name 'f' is not defined.
-
-2010-04-22  James Robinson  <jamesr@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Revert 58077 and follow-ups.  It's broken.
-        https://bugs.webkit.org/show_bug.cgi?id=37664
-
-        * Scripts/new-run-webkit-httpd:
-        * Scripts/new-run-webkit-websocketserver:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-
-2010-04-22  Yaar Schnitman  <yaar@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Integrate v8 testing utility with webkit tests
-        https://bugs.webkit.org/show_bug.cgi?id=37731
-
-        * Scripts/run-bindings-tests: Added.
-
-2010-04-22  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        new-run-webkit-tests --verbose shows ever-increasing #EOF lines
-        https://bugs.webkit.org/show_bug.cgi?id=37794
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-         - Remove the assert() since our ServerProcess code does not always
-           seem to be reading the full stderr output (or we're not waiting for it to).
-
-2010-04-22  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add code to help debug new-run-webkit-test hangs on the Chromium bots
-        https://bugs.webkit.org/show_bug.cgi?id=38011
-
-        I can see no reasonable way to test this change.
-        Stubbing out sys._current_frames() and traceback.extract_stack
-        seems folly.  Dumping real data would have line number
-        (and possibly other call stack) variance between runs.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-         - Add _dump_thread_states and _dump_thread_states_if_necessary
-           to have our main thread dump the states of all threads every
-           60 seconds when running in verbose mode.
-         - Better document what is going on in our main loop.
-
-2010-04-22  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Fix for https://bugs.webkit.org/show_bug.cgi?id=38002
-        Add rudimentary statistics gathering for WebKit2
-
-        * MiniBrowser/MiniBrowser.xcodeproj/project.pbxproj:
-        * MiniBrowser/mac/AppDelegate.h:
-        * MiniBrowser/mac/AppDelegate.m:
-        (-[BrowserAppDelegate init]):
-        (-[BrowserAppDelegate newWindow:]):
-        (-[BrowserAppDelegate getCurrentPageNamespace]):
-        (-[BrowserAppDelegate _setProcessModel:]):
-        (-[BrowserAppDelegate showStatisticsWindow:]):
-        (-[BrowserAppDelegate applicationWillTerminate:]):
-        * MiniBrowser/mac/BrowserStatisticsWindow.xib: Added.
-        * MiniBrowser/mac/BrowserStatisticsWindowController.h: Added.
-        * MiniBrowser/mac/BrowserStatisticsWindowController.m: Added.
-        (-[BrowserStatisticsWindowController initWithThreadedWKContextRef:processWKContextRef:]):
-        (-[BrowserStatisticsWindowController dealloc]):
-        (-[BrowserStatisticsWindowController windowDidLoad]):
-        (-[BrowserStatisticsWindowController refreshStatistics:]):
-        * MiniBrowser/mac/BrowserWindowController.h:
-        * MiniBrowser/mac/English.lproj/MainMenu.xib:
-        * MiniBrowser/mac/MiniBrowser_Prefix.pch:
-
-2010-04-22  Dave Moore  <davemoore@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Add test support for icon changes.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33812
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (dumpIconChangesCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::dumpIconChanges):
-        (LayoutTestController::setDumpIconChanges):
-        * DumpRenderTree/win/FrameLoadDelegate.cpp:
-        (FrameLoadDelegate::didChangeIcons):
-        * DumpRenderTree/win/FrameLoadDelegate.h:
-        * WinLauncher/WinLauncher.h:
-        (WinLauncherWebHost::didChangeIcons):
-
-2010-04-22  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Script fix.  Will ask dpranke to look tomorrow.
-
-        new-run-webkit-tests --verbose shows ever-increasing #EOF lines
-        https://bugs.webkit.org/show_bug.cgi?id=37794
-
-        The bots are seeing cases where .error is sometimes empty.
-        Lets make the code not crash in that case for now.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2010-04-22  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Unreviewed fix.
-
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py: fix NameError: global name 'f' is not defined.
-
-2010-04-22  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Unreviewed fix.
-
-        * Scripts/new-run-webkit-websocketserver: PyWebSocket no longer takes keyword argument 'register_cygwin'.
-
-2010-04-22  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Restore the Leopard bots to using
-        old-run-webkit-tests for now.
-
-        * Scripts/run-webkit-tests:
-
-2010-04-22  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Unreviewed fix.
-
-        * Scripts/webkitpy/layout_tests/port/http_server.py: fix NameError: global name 'env' is not defined.
-
-2010-04-22  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Unreviewed fix.
-
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py: fix NameError: global name 'env' is not defined.
-
-2010-04-22  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Chromium: Add --chromium option to new-run-webkit-websocketserver
-        https://bugs.webkit.org/show_bug.cgi?id=37664
-
-        Move cygwin setup logic in chromium_win.py.
-
-        * Scripts/new-run-webkit-httpd: remove register_cygwin parameter to pass http_server.
-        * Scripts/new-run-webkit-websocketserver: add --chromium flag
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py: setup for cygwin
-        * Scripts/webkitpy/layout_tests/port/http_server.py: remove cygwin setup logic
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py: remove cygwin setup logic
-
-2010-04-22  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        new-run-webkit-tests --verbose shows ever-increasing #EOF lines
-        https://bugs.webkit.org/show_bug.cgi?id=37794
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-         - Fix the log message to explain that this is stderr output, not test output.
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-         - Be sure to reset the server_process.error after reading (seems like the wrong
-           place to do this, but at least this fixes the bug and dpranke and I can talk
-           about better designs later).
-         - Also remove the #EOF from the stderr output before returning it.
-
-2010-04-22  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Fixing new-run-webkit-tests on the bots.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-         - Fixing _compat_shim_option to take variable keyword args.
-         - Turns out that nargs + callback is ignored unless type is specified.
-           So I added the type so that the option was properly consumed.
-           This was why new-run-webkit-tests couldn't find any tests, it
-           was looking for them under "20" because that was the argument
-           which should have been consumed by --exit-after-n-failures.
-
-2010-04-22  Tony Chang  <tony@chromium.org>
-
-        Not reviewed, build fix for chromium Windows.
-
-        [chromium] fix ImageDiff compile on windows
-        https://bugs.webkit.org/show_bug.cgi?id=37979
-
-        * DumpRenderTree/chromium/ImageDiff.cpp:
-
-2010-04-22  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed, rolling out r58069.
-        http://trac.webkit.org/changeset/58069
-        https://bugs.webkit.org/show_bug.cgi?id=27751
-
-        Broke compile on Windows.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::overridePreference):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetWebSettings):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::WebPage):
-        (WebCore::WebPage::resetSettings):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-
-2010-04-22  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Just adding logging.
-
-        Adding logging to help debug why the Leopard Bot
-        can't find any tests to run.
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_files.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-         - Make it a fatal error to have no tests to run.
-
-2010-04-22  Abhishek Arya  <inferno@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Add support for controlling clipboard access from javascript.
-        Clipboard access from javascript is enabled in test framework.
-        https://bugs.webkit.org/show_bug.cgi?id=27751
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setJavaScriptCanAccessClipboardCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setJavaScriptCanAccessClipboard):
-        (LayoutTestController::overridePreference):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetWebSettings):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setJavaScriptCanAccessClipboard):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setJavaScriptCanAccessClipboard):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::WebPage):
-        (WebCore::WebPage::resetSettings):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setJavaScriptCanAccessClipboard):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setJavaScriptCanAccessClipboard):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setJavaScriptCanAccessClipboard):
-
-2010-04-21  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        webkit-patch can't fetch attachments on security bugs
-        https://bugs.webkit.org/show_bug.cgi?id=37975
-
-        Instead of calling CURL, we just need to use our Mechanize object,
-        which understand bugs.webkit.org authentication.
-
-        * Scripts/webkitpy/common/checkout/api.py:
-        * Scripts/webkitpy/common/net/bugzilla.py:
-
-2010-04-21  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Temporary commit, will roll-out before morning.
-
-        Turning on new-run-webkit-tests for the Leopard build bot
-        for testing of the harness.
-        Users should not noctice (except for the results.html difference).
-
-        * Scripts/run-webkit-tests:
-
-2010-04-21  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Fix typo in my previous fix attempt.
-
-        REGRESSION(57531): the commit-queue still hates Tor Arne Vestbø
-        https://bugs.webkit.org/show_bug.cgi?id=37765
-
-        More on-the-bot debugging, sigh.  I wish I had a local build.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-
-2010-04-21  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Fix typo in my previous fix attempt.
-
-        REGRESSION(57531): the commit-queue still hates Tor Arne Vestbø
-        https://bugs.webkit.org/show_bug.cgi?id=37765
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-         - Add self. to class variable access.
-
-2010-04-21  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Another attempt to fix NRWT for chromium.
-
-        REGRESSION(57531): the commit-queue still hates Tor Arne Vestbø
-        https://bugs.webkit.org/show_bug.cgi?id=37765
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-         - wdiff_text was returning a byte array instead of a
-           unicode string.  The simple fix was to just decode
-           the result.  However, seeing so much duplicated code
-           with Executive made me cry, so I re-wrote the function
-           to be more like pretty_patch_text and use run_command
-           (which already knows how to handle unicode).
-
-2010-04-21  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Windows tests buildbots are too slow to be core builders
-        https://bugs.webkit.org/show_bug.cgi?id=37970
-
-        It's 10:45.  The Windows test bots are still hours behind.  They're too
-        slow to be core builders.  When they get fast, we can add them back.
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot_unittest.py:
-
-2010-04-21  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Attempt one more time to fix NRWT for chromium.
-
-        REGRESSION(57531): the commit-queue still hates Tor Arne Vestbø
-        https://bugs.webkit.org/show_bug.cgi?id=37765
-
-        I'm debugging in the blind because I don't have a chromium
-        build on this laptop.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-         - Apply the previous fix to a second caller.
-
-2010-04-21  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Attempt one more time to fix NRWT for chromium.
-
-        REGRESSION(57531): the commit-queue still hates Tor Arne Vestbø
-        https://bugs.webkit.org/show_bug.cgi?id=37765
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-         - Fix handling of test_shell output so that we always
-           decode it as utf-8.
-           Unlike DumpRenderTree test_shell does not ever return
-           pixel data.  It spits out the pixel dumps in a separate
-           file, thus all output over stdout is utf-8 text.
-
-2010-04-21  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Attempt one more time to fix NRWT for chromium.
-
-        REGRESSION(57531): the commit-queue still hates Tor Arne Vestbø
-        https://bugs.webkit.org/show_bug.cgi?id=37765
-
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py:
-         - Pass encoding to _save_baseline_data and write_output_files
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py:
-         - Make _save_baseline_data and write_output_files take an encoding.
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-        - Pass encoding to _save_baseline_data and write_output_files
-
-2010-04-21  No'am Rosenthal  <noam.rosenthal@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] QtLauncher: make FPS measurement accurate
-        https://bugs.webkit.org/show_bug.cgi?id=37934
-
-        Instead of counting paints, which are not interchangeable with frames that
-        the user sees, we now set an arbitrary timer for FPS measurements. The idea is
-        that if the main thread is delayed for any reason, that timer would be delayed
-        as well.
-
-        * QtLauncher/QtLauncher.pro:
-        * QtLauncher/fpstimer.cpp: Added.
-        (FpsTimer::FpsTimer):
-        (FpsTimer::numFrames):
-        (FpsTimer::start):
-        (FpsTimer::stop):
-        (FpsTimer::timerEvent):
-        * QtLauncher/fpstimer.h: Added.
-        * QtLauncher/webview.cpp:
-        (WebViewGraphicsBased::setFrameRateMeasurementEnabled):
-        (WebViewGraphicsBased::updateFrameRate):
-        (WebViewGraphicsBased::paintEvent):
-        * QtLauncher/webview.h:
-
-2010-04-21  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, just adding missing ":" in python file.
-
-        REGRESSION(57531): the commit-queue still hates Tor Arne Vestbø
-        https://bugs.webkit.org/show_bug.cgi?id=37765
-
-        new-run-webkit-tests --chromium was borked.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2010-04-21  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        REGRESSION(57531): the commit-queue still hates Tor Arne Vestbø
-        https://bugs.webkit.org/show_bug.cgi?id=37765
-
-        Third time is the charm.  I've fixed all the
-        new-run-webkit-tests regressions from previous attempts.
-
-        I fixed the queue to not ignore Tor as a reviwer in r57531,
-        but instead it throws an exception every time his name is in a patch.
-
-        This fixes our Executive.run_command code to work around a Popen
-        bug http://bugs.python.org/issue5290 whereby python versions before 2.6
-        do not correctly handle unicode objects as input or output to
-        Popen.communicate.
-
-        Following the advice of:
-        http://farmdev.com/talks/unicode/
-        I have changed all of webkitpy to use unicode() objects as strings
-        instead of str objects (which in Python 3 are renamed "bytes").
-
-        String literals were left as "foo" instead of converting to u"foo"
-        as u"foo" is only required if the string has a non-ascii code point.
-        Python is smart about comparing str() and unicode() values and will
-        log an error to the console if the comparison is ever invalid.
-
-        Executive.run* now correctly accept and return unicode() objects.
-        I attempted to fix all the places that we call .write() to make sure we
-        encode any unicode() objects into utf-8.
-
-        I removed several uses of StringIO.  StringIO should generally always be
-        passed a unicode() value.
-
-        Likewise I replaced most calls to open() with codecs.open().
-        codecs.open() matches Python 3 open semantics in requiring an encoding
-        parameter.  Files opened with codecs.open() with a unicode-compatible
-        encoding will vend unicode() objects from their read() calls, like how
-        StringIO created with a unicode() object will do.
-
-        I also deployed "with" statements wider (now that the project has
-        settled on Python 2.5) to close a bunch of file descriptor leaks.
-
-        * Scripts/webkitpy/common/checkout/api_unittest.py:
-         - Read/write utf-8 files instead of ascii.
-         - Update the tests to use test for proper unicode() handling.
-        * Scripts/webkitpy/common/checkout/changelog.py:
-         - Document that parse_latest_entry_from_file expects
-           file-like objects which return unicode strings.
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-         - Use unicode() strings instead of str() byte arrays.
-         - Deploy "with" to close file descriptor leaks.
-        * Scripts/webkitpy/common/checkout/commitinfo.py:
-         - Remove unneeded import.
-        * Scripts/webkitpy/common/checkout/scm.py:
-         - Remove use of str().
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-         - Read/write utf-8 files and use unicode() strings in testing.
-        * Scripts/webkitpy/common/config/committers.py:
-         - Use \u instead of \x to make slightly clearer what we're doing.
-        * Scripts/webkitpy/common/net/bugzilla.py:
-         - Add a new _string_contents() method and explain why
-            we have to call unicode() on the result of soup.string
-            and why it's safe to do so w/o needing to pass a codec name.
-          - Remove the (unused) support for passing a file object to add_patch_to_bug().
-        * Scripts/webkitpy/common/net/buildbot.py:
-         - Use unicode() instead of str() when needing to coax a
-            NavigableString object into a unicode() object.
-        * Scripts/webkitpy/common/net/buildbot_unittest.py:
-         - Add a test which contains a unicode builder name.
-        * Scripts/webkitpy/common/net/statusserver.py:
-         - Remove use of str()
-        * Scripts/webkitpy/common/prettypatch.py:
-         - Write out the patch file as utf-8.
-        * Scripts/webkitpy/common/system/autoinstall.py:
-         - Write out files with a explicit encodings.
-         - Deploy "with" to close file descriptor leaks.
-        * Scripts/webkitpy/common/system/deprecated_logging.py:
-         - Write out log files as utf-8.
-        * Scripts/webkitpy/common/system/executive.py:
-         - Make run* properly take and return unicode() objects.
-         - Cleaned up input handling in run_command a little by adding
-           a _compute_input() method which can return early instead of having
-           such a long/cluttered if-block.
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-         - Added a unit test to make sure we don't break Tor again!
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-         - Write out the test list as utf-8.
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-         - Write out json files as utf-8.
-        * Scripts/webkitpy/layout_tests/port/apache_http_server.py:
-         - Deploy "with" to close file descriptor leaks.
-        * Scripts/webkitpy/layout_tests/port/chromium.py: Add Executive.py FIXME.
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py: ditto.
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py: ditto.
-        * Scripts/webkitpy/layout_tests/port/gtk.py: ditto.
-        * Scripts/webkitpy/layout_tests/port/mac.py: ditto.
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-         - Make the skipped file parsing test unicode.
-        * Scripts/webkitpy/layout_tests/port/qt.py: Add Executive.py FIXME.
-        * Scripts/webkitpy/layout_tests/port/server_process.py: ditto.
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-         - Deploy "with" to close file descriptor leaks.
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-         - Make explicit the encodings of log files and pid files.
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-         - Make encodings explicit and deploy "with".
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py: ditto.
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py: ditto.
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py: ditto.
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py: ditto.
-        * Scripts/webkitpy/style/filereader_unittest.py: ditto.
-        * Scripts/webkitpy/thirdparty/__init__.py: ditto.
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-         - Removed extra import.
-        * Scripts/webkitpy/tool/commands/queues.py:
-         - No need to map args to strings now that run_command does.
-         - Update test results to match args changes.
-         - Document our global argument hacks.
-        * Scripts/webkitpy/tool/commands/upload.py:
-         - Pass the diff directly to add_patch_to_bug instead of creating a StringIO file wrapper.
-        * Scripts/webkitpy/tool/mocktool.py:
-         - Rename add_patch_to_bug argument to match bugzilla.py
-        * Scripts/webkitpy/tool/steps/abstractstep.py:
-         - Executive.run_* now require lists instead of strings.
-           The lack of this change was what broke webkit-patch
-           for svn users the first time this was landed.
-        * Scripts/webkitpy/tool/steps/postdiff.py:
-         - Pass the diff directly to add_patch_to_bug instead of creating a StringIO file wrapper.
-        * Scripts/webkitpy/tool/steps/postdiffforcommit.py: ditto
-        * Scripts/webkitpy/tool/steps/postdiffforrevert.py: ditto
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-         - Fixed spurious logging seen when running test-webkitpy
-
-2010-04-21  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        aria-liveregion-notifications.html fails on leopard release bot
-        https://bugs.webkit.org/show_bug.cgi?id=37112
-
-        Change the way that notifications are listened for by forcing clients
-        to call a remove listener as well to match the add listener. DRT will
-        assert if those are not done in the correct order. 
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (removeNotificationListenerCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::removeNotificationListener):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (-[AccessibilityNotificationHandler initWithPlatformElement:]):
-        (-[AccessibilityNotificationHandler dealloc]):
-        (-[AccessibilityNotificationHandler _notificationReceived:]):
-        (-[AccessibilityNotificationHandler setCallback:]):
-        (AccessibilityUIElement::AccessibilityUIElement):
-        (AccessibilityUIElement::~AccessibilityUIElement):
-        (AccessibilityUIElement::addNotificationListener):
-        (AccessibilityUIElement::removeNotificationListener):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::removeNotificationListener):
-
-2010-04-21  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Add debug menu items to show/hide the Web View.
-        https://bugs.webkit.org/show_bug.cgi?id=37958
-
-        * MiniBrowser/mac/BrowserWindowController.h:
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController showHideWebView:]):
-        (-[BrowserWindowController removeReinsertWebView:]):
-        (-[BrowserWindowController validateMenuItem:]):
-        * MiniBrowser/mac/English.lproj/MainMenu.xib:
-
-2010-04-21  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Rolling out unicode() changes as they broke NRWT for chromium.
-        Rolling out:
-        http://trac.webkit.org/changeset/58014
-        http://trac.webkit.org/changeset/58016
-        http://trac.webkit.org/changeset/58020
-
-        REGRESSION(57531): the commit-queue still hates Tor Arne Vestbo
-        https://bugs.webkit.org/show_bug.cgi?id=37765
-
-        * Scripts/webkitpy/common/checkout/api_unittest.py:
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-        * Scripts/webkitpy/common/checkout/commitinfo.py:
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-        * Scripts/webkitpy/common/config/committers.py:
-        * Scripts/webkitpy/common/net/bugzilla.py:
-        * Scripts/webkitpy/common/net/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot_unittest.py:
-        * Scripts/webkitpy/common/net/statusserver.py:
-        * Scripts/webkitpy/common/prettypatch.py:
-        * Scripts/webkitpy/common/system/autoinstall.py:
-        * Scripts/webkitpy/common/system/deprecated_logging.py:
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/port/apache_http_server.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py:
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py:
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-        * Scripts/webkitpy/style/filereader_unittest.py:
-        * Scripts/webkitpy/thirdparty/__init__.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/commands/upload.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/abstractstep.py:
-        * Scripts/webkitpy/tool/steps/postdiff.py:
-        * Scripts/webkitpy/tool/steps/postdiffforcommit.py:
-        * Scripts/webkitpy/tool/steps/postdiffforrevert.py:
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-
-2010-04-21  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, fixing NRWT for real this time.
-
-        REGRESSION(57531): the commit-queue still hates Tor Arne Vestbø
-        https://bugs.webkit.org/show_bug.cgi?id=37765
-
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py:
-         - Add a hack to fix new-run-webkit-tests
-           my understanding of codecs.open(encoding=None)
-           must have been wrong.
-
-2010-04-21  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, just fixing exception seen on builders.
-
-        REGRESSION(57531): the commit-queue still hates Tor Arne Vestbø
-        https://bugs.webkit.org/show_bug.cgi?id=37765
-
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py:
-         - Pass and encoding to _write_into_file_at_path
-
-2010-04-21  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        REGRESSION(57531): the commit-queue still hates Tor Arne Vestbø
-        https://bugs.webkit.org/show_bug.cgi?id=37765
-
-        I fixed the queue to not ignore Tor as a reviwer in r57531,
-        but instead it throws an exception every time his name is in a patch.
-
-        This fixes our Executive.run_command code to work around a Popen
-        bug http://bugs.python.org/issue5290 whereby python versions before 2.6
-        do not correctly handle unicode objects as input or output to
-        Popen.communicate.
-
-        Following the advice of:
-        http://farmdev.com/talks/unicode/
-        I have changed all of webkitpy to use unicode() objects as strings
-        instead of str objects (which in Python 3 are renamed "bytes").
-
-        String literals were left as "foo" instead of converting to u"foo"
-        as u"foo" is only required if the string has a non-ascii code point.
-        Python is smart about comparing str() and unicode() values and will
-        log an error to the console if the comparison is ever invalid.
-
-        Executive.run* now correctly accept and return unicode() objects.
-        I attempted to fix all the places that we call .write() to make sure we
-        encode any unicode() objects into utf-8.
-
-        I removed several uses of StringIO.  StringIO should generally always be
-        passed a unicode() value.
-
-        Likewise I replaced most calls to open() with codecs.open().
-        codecs.open() matches Python 3 open semantics in requiring an encoding
-        parameter.  Files opened with codecs.open() with a unicode-compatible
-        encoding will vend unicode() objects from their read() calls, like how
-        StringIO created with a unicode() object will do.
-
-        I also deployed "with" statements wider (now that the project has
-        settled on Python 2.5) to close a bunch of file descriptor leaks.
-
-        * Scripts/webkitpy/common/checkout/api_unittest.py:
-         - Read/write utf-8 files instead of ascii.
-         - Update the tests to use test for proper unicode() handling.
-        * Scripts/webkitpy/common/checkout/changelog.py:
-         - Document that parse_latest_entry_from_file expects
-           file-like objects which return unicode strings.
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-         - Use unicode() strings instead of str() byte arrays.
-         - Deploy "with" to close file descriptor leaks.
-        * Scripts/webkitpy/common/checkout/commitinfo.py:
-         - Remove unneeded import.
-        * Scripts/webkitpy/common/checkout/scm.py:
-         - Remove use of str().
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-         - Read/write utf-8 files and use unicode() strings in testing.
-        * Scripts/webkitpy/common/config/committers.py:
-         - Use \u instead of \x to make slightly clearer what we're doing.
-        * Scripts/webkitpy/common/net/bugzilla.py:
-         - Add a new _string_contents() method and explain why
-            we have to call unicode() on the result of soup.string
-            and why it's safe to do so w/o needing to pass a codec name.
-          - Remove the (unused) support for passing a file object to add_patch_to_bug().
-        * Scripts/webkitpy/common/net/buildbot.py:
-         - Use unicode() instead of str() when needing to coax a
-            NavigableString object into a unicode() object.
-        * Scripts/webkitpy/common/net/buildbot_unittest.py:
-         - Add a test which contains a unicode builder name.
-        * Scripts/webkitpy/common/net/statusserver.py:
-         - Remove use of str()
-        * Scripts/webkitpy/common/prettypatch.py:
-         - Write out the patch file as utf-8.
-        * Scripts/webkitpy/common/system/autoinstall.py:
-         - Write out files with a explicit encodings.
-         - Deploy "with" to close file descriptor leaks.
-        * Scripts/webkitpy/common/system/deprecated_logging.py:
-         - Write out log files as utf-8.
-        * Scripts/webkitpy/common/system/executive.py:
-         - Make run* properly take and return unicode() objects.
-         - Cleaned up input handling in run_command a little by adding
-           a _compute_input() method which can return early instead of having
-           such a long/cluttered if-block.
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-         - Added a unit test to make sure we don't break Tor again!
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-         - Write out the test list as utf-8.
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-         - Write out json files as utf-8.
-        * Scripts/webkitpy/layout_tests/port/apache_http_server.py:
-         - Deploy "with" to close file descriptor leaks.
-        * Scripts/webkitpy/layout_tests/port/chromium.py: Add Executive.py FIXME.
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py: ditto.
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py: ditto.
-        * Scripts/webkitpy/layout_tests/port/gtk.py: ditto.
-        * Scripts/webkitpy/layout_tests/port/mac.py: ditto.
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-         - Make the skipped file parsing test unicode.
-        * Scripts/webkitpy/layout_tests/port/qt.py: Add Executive.py FIXME.
-        * Scripts/webkitpy/layout_tests/port/server_process.py: ditto.
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-         - Deploy "with" to close file descriptor leaks.
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-         - Make explicit the encodings of log files and pid files.
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-         - Make encodings explicit and deploy "with".
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py: ditto.
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py: ditto.
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py: ditto.
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py: ditto.
-        * Scripts/webkitpy/style/filereader_unittest.py: ditto.
-        * Scripts/webkitpy/thirdparty/__init__.py: ditto.
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-         - Removed extra import.
-        * Scripts/webkitpy/tool/commands/queues.py:
-         - No need to map args to strings now that run_command does.
-         - Update test results to match args changes.
-         - Document our global argument hacks.
-        * Scripts/webkitpy/tool/commands/upload.py:
-         - Pass the diff directly to add_patch_to_bug instead of creating a StringIO file wrapper.
-        * Scripts/webkitpy/tool/mocktool.py:
-         - Rename add_patch_to_bug argument to match bugzilla.py
-        * Scripts/webkitpy/tool/steps/abstractstep.py:
-         - Executive.run_* now require lists instead of strings.
-           The lack of this change was what broke webkit-patch
-           for svn users the first time this was landed.
-        * Scripts/webkitpy/tool/steps/postdiff.py:
-         - Pass the diff directly to add_patch_to_bug instead of creating a StringIO file wrapper.
-        * Scripts/webkitpy/tool/steps/postdiffforcommit.py: ditto
-        * Scripts/webkitpy/tool/steps/postdiffforrevert.py: ditto
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-         - Fixed spurious logging seen when running test-webkitpy
-
-2010-04-21  Kinuko Yasuda  <kinuko@chromium.org>
-
-        Unreviewed.
-
-        Add myself in committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-04-21  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        new-run-webkit-tests: fix a bug in the Chromium port where we would
-        try to talk to a crashed test_shell and raise exceptions that weren't
-        being caught.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37941
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2010-04-21  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Unreviewed.
-
-        [Qt] [Symbian] Build fix.
-
-        Work around a Qt quirk. Some versions of Symbian port Qt
-        QFontDatabase::removeAllApplicationFonts symbol is not available.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::open):
-
-2010-04-21  Alexey Proskuryakov  <ap@apple.com>
-
-        Unreviewed.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37933
-        <rdar://problem/7719540> XMLHttpRequest.withCredentials should be better enforced.
-
-        Adding stub implementation of authenticateSession(). Depending on platform loader behavior,
-        a real implementation may or may not be necessary for the one test that currently uses it
-        to pass.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::authenticateSession):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-04-21  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Brady Eidson.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37933
-        <rdar://problem/7719540> XMLHttpRequest.withCredentials should be better enforced.
-
-        Adding authenticateSession() method that adds credentials to per-process credential storage
-        (for platforms that even have such). No Windows implementation, because writing another
-        loader for DRT is painful.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (authenticateSessionCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (-[SynchronousLoader dealloc]):
-        (-[SynchronousLoader connectionShouldUseCredentialStorage:]):
-        (-[SynchronousLoader connection:didReceiveAuthenticationChallenge:]):
-        (-[SynchronousLoader connection:didFailWithError:]):
-        (-[SynchronousLoader connectionDidFinishLoading:]):
-        (+[SynchronousLoader makeRequest:withUsername:password:]):
-        (LayoutTestController::authenticateSession):
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::authenticateSession):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::authenticateSession):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::authenticateSession):
-        Stub implementations.
-
-2010-04-21  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Make DRT compilable in Chromium tree
-        https://bugs.webkit.org/show_bug.cgi?id=37923
-
-        We need to use different GYPs in a case of WebKit-only checkout
-        and a case of whole Chromium checkout because the relative paths
-        from webkit/ to WebKit/chromium/features.gypi are different in
-        these cases and we can't use 'conditions' for 'includes' in GYPs.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2010-04-21  Jakub Wieczorek  <jwieczorek@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        List item markers are not always updated after changes in the DOM.
-        https://bugs.webkit.org/show_bug.cgi?id=37060
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (markerTextForListItemCallback): A function that returns the marker text for a given list item.
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::markerTextForListItem): Implement it in the GTK port.
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::markerTextForListItem): Add a stub.
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::markerTextForListItem): Implement it in the Qt port.
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::markerTextForListItem): Add a stub.
-
-2010-04-21  Adam Roben  <aroben@apple.com>
-
-        Exclude leaks in CGGradientCreateWithColorComponents from
-        run-webkit-tests leaks output
-
-        The leak in CG is covered by <rdar://problem/7888492>.
-
-        Fixes <http://webkit.org/b/37927>.
-
-        Reviewed by Eric Carlson.
-
-        * Scripts/old-run-webkit-tests:
-        (sub countAndPrintLeaks): Exclude leaks in
-        CGGradientCreateWithColorComponents on certain OSs.
-
-2010-04-21  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        [DRT/Chromium] Import MockSpellCheck from Chromium
-        https://bugs.webkit.org/show_bug.cgi?id=37910
-
-        Import webkit/tools/test_shell/mock_spellcheck.{cc,h} rev.37241 of Chromium.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-          Add ICU explicitly because WTFString.h includes ICU headers.
-          Add MockSpellCheck.{cpp,h}.
-        * DumpRenderTree/chromium/MockSpellCheck.cpp: Added.
-        * DumpRenderTree/chromium/MockSpellCheck.h: Added.
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::spellCheck):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        * DumpRenderTree/chromium/config.h: Define JS_EXPORTDATA, which is used
-          by wtf/text/AtomicString.h included by wtf/text/WTFString.h.
-
-2010-04-21  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add webkit-patch pretty-diff
-        https://bugs.webkit.org/show_bug.cgi?id=37892
-
-        This is slightly lame because it asks you whether the diff is correct,
-        but it's a starting point.
-
-        * Scripts/webkitpy/tool/commands/__init__.py:
-        * Scripts/webkitpy/tool/commands/prettydiff.py: Added.
-        * Scripts/webkitpy/tool/main.py:
-
-2010-04-21  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Remove mention of non-existant --no-build option
-        https://bugs.webkit.org/show_bug.cgi?id=37893
-
-        The option doesn't exist!
-
-        * Scripts/webkitpy/tool/commands/stepsequence.py:
-
-2010-04-21  Balazs Kelemen  <kb@inf.u-szeged.hu>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Interrupting JavaScript is cumbersome when you use QtLaucher for testing or profiling.
-        https://bugs.webkit.org/show_bug.cgi?id=37198
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::toggleInterruptingJavaScriptEnabled):
-        (LauncherWindow::newWindow):
-        (LauncherWindow::cloneWindow):
-        (LauncherWindow::createChrome):
-        (main):
-        * QtLauncher/webpage.cpp:
-        (WebPage::WebPage):
-        (WebPage::shouldInterruptJavaScript):
-        * QtLauncher/webpage.h:
-        (WebPage::setInterruptingJavaScriptEnabled):
-
-2010-04-21  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, rolling out r57963.
-        http://trac.webkit.org/changeset/57963
-        https://bugs.webkit.org/show_bug.cgi?id=37759
-
-        Three tests started crashing on the Qt bot.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-04-21  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Eric Seidel.
-
-        Make new-run-webkit-tests work for the Qt port
-        https://bugs.webkit.org/show_bug.cgi?id=37588
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-
-2010-04-21  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Eric Seidel.
-
-        new-run-webkit-tests: try to detect alternate apache path
-        https://bugs.webkit.org/show_bug.cgi?id=37587
-
-        _check_port_build() also needs to return true in the
-        base implementation to not fail the check_build step.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2010-04-21  Yi Shen  <yi.4.shen@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Add LayoutTestController interface: computedStyleIncludingVisitedInfo
-        https://bugs.webkit.org/show_bug.cgi?id=37759
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::computedStyleIncludingVisitedInfo):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-04-21  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, test fix only.
-
-        new-run-webkit-tests: implement a --log trace message to be able to display detailed output of an individual test run
-        https://bugs.webkit.org/show_bug.cgi?id=37726
-
-        This change seems to have broken a test.
-        Attempting to handle the case where we don't have any
-        timing information.  Dirk may have to correct this change.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-04-19  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        new-run-webkit-tests has much higher startup latency than run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=37643
-
-        I got rid of the -expected.checksum reads during startup.
-        This makes startup noticably better on my laptop.
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-         - Use image_hash() instead of .image_hash now that expected.checksum
-           file reads are done lazily.
-        * Scripts/webkitpy/layout_tests/port/http_server_base.py:
-         - Add debug logging for this sleep call.
-           In my testing I never saw this sleep() hit.
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-         - Sleep a shorter interval to make websocket server
-           startup more responsive.  On my machine startup was
-           taking around 1 second.
-         - Remove the unconditional .5s delay on startup.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-         - Make image_hash file reads done lazily in a new image_hash() function.
-         - Add a "Starting testing ..." meter update after DRT threads have
-           been started, but before we get updates from the first one.
-         - Rename variable "t" to a full english name to match WebKit style.
-
-2010-04-20  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Eric Seidel.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37748
-
-        Make Sheriffbot more inspirational.
-
-        * Scripts/webkitpy/common/net/bugzilla.py:
-        * Scripts/webkitpy/common/net/bugzilla_unittest.py:
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        * Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-04-20  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Import Chromium image_diff as ImageDiff
-        https://bugs.webkit.org/show_bug.cgi?id=37790
-
-        ImageDiff.cpp is based on tools/imagediff/image_diff.cc r41911 of Chromium.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/chromium/ImageDiff.cpp: Added.
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-
-2010-04-20  Dirk Pranke <dpranke@chromium.org>
-
-        This patch to new-run-webkit-tests adds a --log 'trace' option
-        that prints out detailed info about a given test as it executes
-        (where the baselines are, what the expectation is, what we got,
-        how long it took).
-
-        https://bugs.webkit.org/show_bug.cgi?id=37726
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-          - use the newly exposed TestResult class and implement
-            --log trace
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_thread.py:
-          - rename TestStats to TestResult and make it more public, resulting
-            in cleaner code
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-          - add expectation_to_string() as a separate callable function
-
-2010-04-20  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, rolling out r57907.
-        http://trac.webkit.org/changeset/57907
-        https://bugs.webkit.org/show_bug.cgi?id=37765
-
-        Appears to have broken MacEWS and possibly webkit-patch upload
-        for svn users.  Needs further investigation.
-
-        * Scripts/webkitpy/common/checkout/api.py:
-        * Scripts/webkitpy/common/checkout/api_unittest.py:
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-        * Scripts/webkitpy/common/checkout/commitinfo.py:
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-        * Scripts/webkitpy/common/config/committers.py:
-        * Scripts/webkitpy/common/net/bugzilla.py:
-        * Scripts/webkitpy/common/net/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot_unittest.py:
-        * Scripts/webkitpy/common/net/statusserver.py:
-        * Scripts/webkitpy/common/prettypatch.py:
-        * Scripts/webkitpy/common/system/autoinstall.py:
-        * Scripts/webkitpy/common/system/deprecated_logging.py:
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/metered_stream.py:
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/commands/upload.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/abstractstep.py:
-        * Scripts/webkitpy/tool/steps/postdiff.py:
-        * Scripts/webkitpy/tool/steps/postdiffforcommit.py:
-        * Scripts/webkitpy/tool/steps/postdiffforrevert.py:
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-
-2010-04-20  Nate Chapin  <japhet@chromium.org>
-
-        Unreviewed.
-
-        Update my irc handle in committers.py (natechapin -> japhet).
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-04-20  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        REGRESSION(57531): the commit-queue still hates Tor Arne Vestbø
-        https://bugs.webkit.org/show_bug.cgi?id=37765
-
-        I fixed the queue to not ignore Tor as a reviwer in r57531,
-        but instead it throws an exception every time his name is in a patch.
-
-        This fixes our Executive.run_command code to work around a Popen
-        bug http://bugs.python.org/issue5290 whereby python versions before 2.6
-        do not correctly handle unicode objects as input or output to
-        Popen.communicate.
-
-        Following the advice of:
-        http://farmdev.com/talks/unicode/
-        I'm attempting to take the python unicode plunge and use unicode()
-        objects as strings instead of str() objects everywhere in webkitpy.
-
-        We do not have to use u"" instead of "" because u"a" == "a" as expected
-        in Python.  Python will generate a warning to the console in cases where
-        a unicode() == str() operation cannot be performed.
-
-        I also cleaned up the input handling in run_command a little by adding
-        a new _compute_input() method which can return early instead of having
-        such a long/cluttered if-block.
-
-        Executive.run* now correctly accept and return unicode() objects.
-        I attempted to fix all the places that we call .write() to make sure we
-        encode any unicode() objects into utf-8.
-
-        All places which use StringIO need to be sure to pass StringIO a
-        pre-encoded byte-array (str object) instead of unicode so that
-        clients which read from the StringIO don't have encoding exceptions.
-        To make this easier, I removed the patch_file_object support from
-        add_patch_to_bug, and changed the 4 places which previously used
-        StringIO to create a fake patch file.
-
-        I attempted to document any places where we are not correctly converting
-        to/from bytes (str() objects) to strings (unicode() objects).
-
-        * Scripts/webkitpy/common/checkout/api_unittest.py:
-         - Read/write utf-8 files instead of ascii.
-         - Update the tests to use test for proper unicode() handling.
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-         - Use unicode() strings instead of str() byte arrays.
-        * Scripts/webkitpy/common/checkout/scm.py:
-         - Remove use of str().
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-         - Read/write utf-8 files and use unicode() strings in testing.
-        * Scripts/webkitpy/common/config/committers.py:
-         - Use \u instead of \x to make slightly clearer what we're doing.
-        * Scripts/webkitpy/common/net/bugzilla.py:
-         - Add a new _string_contents() method and explain why
-           we have to call unicode() on the result of soup.string
-           and why it's safe to do so w/o needing to pass a codec name.
-         - Remove the (unused) support for passing a file object to add_patch_to_bug().
-        * Scripts/webkitpy/common/net/buildbot.py:
-         - Use unicode() instead of str() when needing to coax a
-           NavigableString object into a unicode() object.
-        * Scripts/webkitpy/common/net/statusserver.py:
-         - Remove use of str()
-        * Scripts/webkitpy/common/prettypatch.py:
-         - Write out the patch file as utf-8.
-        * Scripts/webkitpy/common/system/autoinstall.py:
-         - Add a FIXME about encoding.
-        * Scripts/webkitpy/common/system/deprecated_logging.py:
-         - Document that tee() works on bytes, not strings.
-        * Scripts/webkitpy/common/system/executive.py:
-         - Make run* properly take and return unicode() objects.
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-         - Added a unit test to make sure we don't break Tor again!
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-         - Write out the test list as utf-8.
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-         - Write out json files as utf-8.
-        * Scripts/webkitpy/layout_tests/layout_package/metered_stream.py:
-         - Add FIXME about encoding handling.
-        * Scripts/webkitpy/tool/commands/upload.py:
-         - Pass the diff directly to add_patch_to_bug instead of creating a StringIO file wrapper.
-        * Scripts/webkitpy/tool/mocktool.py:
-         - Rename add_patch_to_bug argument to match bugzilla.py
-        * Scripts/webkitpy/tool/steps/postdiff.py:
-         - Pass the diff directly to add_patch_to_bug instead of creating a StringIO file wrapper.
-        * Scripts/webkitpy/tool/steps/postdiffforcommit.py: ditto.
-        * Scripts/webkitpy/tool/steps/postdiffforrevert.py: ditto.
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-         - Fixed spurious logging seen when running test-webkitpy
-
-2010-04-20  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        For check-webkit-style, implemented __eq__() and __ne__() (the
-        built-in equality and inequality methods) for the
-        DefaultStyleErrorHandler class.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37850
-
-        This will facilitate unit-testing for a subsequent patch,
-        namely for https://bugs.webkit.org/show_bug.cgi?id=37850
-
-        * Scripts/webkitpy/style/error_handlers.py:
-          - Added __eq__() and __ne__() to the DefaultStyleErrorHandler
-            class.
-
-        * Scripts/webkitpy/style/error_handlers_unittest.py:
-          - Added unit tests for __eq__() and __ne__().
-          - Also included a minor clean-up refactoring of combining the
-            StyleErrorHandlerTestBase class (which has not needed to
-            be separate due to previous changes) into the
-            DefaultStyleErrorHandlerTest class.
-
-2010-04-20  Jakub Wieczorek  <jwieczorek@webkit.org>
-
-        Unreviewed.
-
-        Add my IRC nick to the committers.py list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-04-20  Kim Grönholm  <kim.gronholm@nomovok.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Multitouch mocking in QtLauncher doesn't work with QGraphicsView
-        https://bugs.webkit.org/show_bug.cgi?id=37816
-        
-        Fix multi-touch mocking in QtLauncher when using QGraphicsView.
-        Test: https://bug-32434-attachments.webkit.org/attachment.cgi?id=44955
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::eventFilter):
-        (LauncherWindow::initializeView):
-
-2010-04-20  MORITA Hajime <morrita@google.com>
-
-        Unreviewed, add myself to the committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-04-20  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        [DRT/Chromium] Fix some unexpected results of editing
-        https://bugs.webkit.org/show_bug.cgi?id=37843
-
-        This change fixes about 70 unexpected results.
-        The original test_webview_delegate.cc doesn't have this bug.
-        The bug was introduced when I ported it to WebKit tree.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (printRangeDescription): Replace the latter startContainer() with endContainer().
-
-2010-04-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        Turn off some unit tests for now - the new-run-webkit-tests dryrun
-        tests for chromium won't work if you don't have a chromium checkout.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37841
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-04-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        (Re-)add dryrun.py; this was renamed from passing.py in the previous
-        CL but apparently somehow didn't get checked in.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37841
-
-        * Scripts/webkitpy/layout_tests/port/dryrun.py: Added.
-
-2010-04-19  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by David Levin.
-
-        check-webkit-style: exits when encountering a deleted file
-        https://bugs.webkit.org/show_bug.cgi?id=37122
-
-        This reverts the quick fix done by r57119 and makes check_patch
-        not call check_file for deleted files.
-
-        Also this change fixes the behavior for "-", which should mean
-        stdin.  Before this change, the style checker just ignored "-"
-        with a warning message.
-
-        * Scripts/webkitpy/style/checker.py:
-        * Scripts/webkitpy/style/checker_unittest.py:
-
-2010-04-19  Daniel Bates  <dbates@rim.com>
-
-        No review, rolling out 57868.
-        http://trac.webkit.org/changeset/57868
-        https://bugs.webkit.org/show_bug.cgi?id=37748
-
-        Sheriffbot wasn't very inspirational after this patch.
-        Instead, he was silent when you said hi :-(. Rolling
-        out this patch so that I can debug/test this some more.
-
-        * Scripts/webkitpy/common/net/bugzilla.py:
-        * Scripts/webkitpy/common/net/bugzilla_unittest.py:
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        * Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-04-19  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Adam Barth.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37748
-
-        Make Sheriffbot more inspirational.
-
-        * Scripts/webkitpy/common/net/bugzilla.py:
-        * Scripts/webkitpy/common/net/bugzilla_unittest.py:
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        * Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-04-19  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix, add missing header.
-
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-
-2010-04-19  Dirk Pranke  <dpranke@chromium.org>
- 
-         Reviewed by Adam Barth.
- 
-         new-run-webkit-tests - repurpose the "Passing" port as "Dryrun" port
-         that can be used to test platforms other than the one you are running
-         on. This can be useful for checking baselines and testing code
-         coverage.
- 
-         Note that running the code on the "wrong" port requires each
-         port-specific implementation to actually not require any
-         platform-specific python code (e.g., the chromium-win port must
-         test for the existence of windows functions before calling them).
- 
-         https://bugs.webkit.org/show_bug.cgi?id=37782
- 
-         * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-         * Scripts/webkitpy/layout_tests/port/dryrun.py: Renamed from WebKitTools/Scripts/webkitpy/layout_tests/port/passing.py.
-         * Scripts/webkitpy/layout_tests/port/factory.py:
-         * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-04-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        new-run-webkit-tests: add --build (default) and --no-build
-        options to make that step optional. This flag modifies what happens
-        in port.check_build().
-
-        https://bugs.webkit.org/show_bug.cgi?id=37786
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2010-04-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        new-run-webkit-tests - fix a typo in r57480 that caused us to stop
-        logging the actual list of unexpected results.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37831
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-04-19  Dirk Pranke <dpranke@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        From a patch by Tor Arne Vestbo  <tor.arne.vestbo@nokia.com>
-
-        new-run-webkit-tests: make the retry step more explicit
-        https://bugs.webkit.org/show_bug.cgi?id=37606
-
-        It might be confusing to see the test and percent counters
-        reset without any notice of what's going on, so we make the
-        message that a retry-run is started explicit.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-04-19  Sam Weinig  <weinig@apple.com>
-
-        Reviewed by Anders Carlsson.
-
-        Add support for opening a new window (File->New Window) to
-        Windows MiniBrowser. Accelerator doesn't work.
-
-        * MiniBrowser/win/BrowserView.cpp:
-        (createNewPage): Use BrowserView::create.
-        * MiniBrowser/win/BrowserWindow.cpp:
-        (BrowserWindow::onCommand): Respond to ID_FILE_NEW_WINDOW
-        by creating a new window.
-        * MiniBrowser/win/BrowserWindow.h:
-        (BrowserWindow::create): Added. Don't allow creating
-        BrowserWindows on the stack by making constructor
-        private and exposing the create function.
-        * MiniBrowser/win/MiniBrowser.cpp:
-        (MiniBrowser::createNewWindow): Move new window creation
-        logic here.
-        * MiniBrowser/win/MiniBrowser.h:
-        * MiniBrowser/win/MiniBrowser.rc: 
-        * MiniBrowser/win/main.cpp:
-        (_tWinMain): Use the new MiniBrowser::createNewWindow().
-
-2010-04-19  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Beth Dakin.
-
-        AX: aria-haspopup needs to be exposed
-        https://bugs.webkit.org/show_bug.cgi?id=37808
-
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::hasPopup):
-
-2010-04-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Submit a better workaround for r57806 than the one in r57831 - log
-        an error and exit if you try to run new-run-webkit-tests with --use-drt
-        on Windows.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37822
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2010-04-19  Jesus Sanchez-Palencia  <jesus@webkit.org>
-
-        Unreviewed.
-
-        Just adding myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-04-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Add slightly better logging to the websocket python wrapper script,
-        including a --verbose flag for debug output.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37233
-
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-        * Scripts/new-run-webkit-websocketserver:
-
-2010-04-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        new-run-webkit-tests: add a way (--print-unexpected-results) to
-        (re-)print out the tests that produced unexpected results in the
-        last run. Also add a way (--retry-unexpected-results) to
-        automatically re-test them.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37783
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-04-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Restructure the logging in new-run-webkit-tests so that many of log
-        messages that were logged to the MeteredStream also get logged in
-        --verbose mode.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37780
-
-        * Scripts/webkitpy/layout_tests/layout_package/metered_stream.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-04-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        new-run-webkit-tests: add 'summary' and 'unexpected-results' options
-        to the --log flag. Also add a 'progress' flag to enable the regular
-        progress bar (as opposed to 'detailed-progress', which enables the
-        dots). Also add a 'nothing' flag to allow you to be explicit that
-        you don't want any logging on the command line.
-
-        The default is
-        '--log detailed-progress,summary,unexpected,unexpected-results'
-
-        (The default logging is unchanged by this patch, this just makes things
-        properly configurable).
-
-        Note that 'nothing' doesn't work properly yet; I need a couple other
-        patches to land to avoid rewriting things several different ways.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37785
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-04-19  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        Make the URL change on committed load.
-
-        * QtLauncher/mainwindow.cpp:
-        (MainWindow::buildUI):
-        (MainWindow::setAddressUrl):
-        * QtLauncher/mainwindow.h:
-
-2010-04-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Fix a typo in the rebaselining tool that causes us to use "debug"
-        instead of "Debug" in a directory path, which fails on platforms with
-        case-sensitive filesystems.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37819
-
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-
-2010-04-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        Fix breakage of chromium-win canary bots caused by r57806. That patch
-        introduced the option of using Chrome's new port of DumpRenderTree,
-        but unfortunately that port relies on the webkit.py class
-        implementation which uses non-blocking I/O that isn't available on
-        Windows. This patch turns off that option and doesn't import the
-        class if we're running on Windows.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37817
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2010-04-19  James Robinson  <jamesr@chromium.org>
-
-        Reviewed by abarth.
-
-        Fix a typo
-
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-
-2010-04-19  Adam Roben  <aroben@apple.com>
-
-        Fix run-webkit-tests when there are spaces in the path
-
-        Fixes <http://webkit.org/b/37809>
-
-        Reviewed by Adam Barth.
-
-        * Scripts/run-webkit-tests: Use an "indirect object" to specify the
-        path to the harness to exec(). According to perldoc, this usage will
-        prohibit perl from parsing the arguments to exec() via the shell,
-        which would incorrectly split paths with spaces in them, etc.
-
-2010-04-19  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Reviewed by Adam Roben.
-
-        WinLauncher.h should use LF line-endings and use native line-endings style.
-        https://bugs.webkit.org/show_bug.cgi?id=37807
-
-        * WinLauncher/WinLauncher.h: Added property svn:eol-style, converted to LF line-endings.
-
-2010-04-19  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        [DRT/Chromium] Fix a test initialization problem
-        https://bugs.webkit.org/show_bug.cgi?id=37791
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (runTest): Call resetTestController() before runFileTest(). Some
-          controllers initialize their fields in reset() and not in their
-          constructors.
-
-2010-04-19  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        [Chromium] new-run-webkit-tests should use WebKitDriver for --use-drt
-        https://bugs.webkit.org/show_bug.cgi?id=37793
-
-        We need to use WebKitDriver instead of ChromiumDriver for Chromium
-        DRT because its interface is different from test_shell.
-
-        Chromium DRT has no UI.  So we can't use it to show test results.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2010-04-18  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Make failure-reason more forgiving
-        https://bugs.webkit.org/show_bug.cgi?id=37525
-
-        Removed search_limit, which wasn't very useful anyway.
-        Added a log about the long load time loading from the builders.
-        Prompt the user for what revision to start walking from (makes it easy to restart upon failure).
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-
-2010-04-18  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Created a class for check-webkit-style that encapsulates iterating
-        over text files and reading them.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37754
-
-        This revision is an intermediate step towards separating our
-        style-checking code from the logic of iterating over files and
-        reading them.
-
-        * Scripts/webkitpy/common/system/logtesting.py:
-          - Added a logMessages() method to the LoggingTestCase class.
-            This method provides unit tests with access to the raw list
-            of log messages in case the tester needs to do something more
-            than simply assert the list of existing messages.
-
-        * Scripts/webkitpy/style/checker.py:
-          - Added a ProcessorBase class that processors of lists of lines
-            should eventually inherit from.
-          - Also added a FIXME to use the ProcessorBase class and the
-            TextFileReader class added below.
-
-        * Scripts/webkitpy/style/filereader.py: Added.
-          - Created a TextFileReader class that encapsulates reading
-            and iterating over text files.
-
-        * Scripts/webkitpy/style/filereader_unittest.py: Added.
-          - Added a TextFileReaderTest class to unit-test the
-            new TextFileReader class.
-
-2010-04-15  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        [chromium] new-run-webkit-tests should be able to use chromium DRT
-        https://bugs.webkit.org/show_bug.cgi?id=37645
-
-        Make sure that the lack of a chromium checkout doesn't cause the script to
-        fail.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py: Fix up a few paths
-            to be relative to an upstream output dir.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py: Add --use-drt flag.
-
-2010-04-18  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, fixing the Qt bot.
-
-        Add a layer of indirection when calling run-webkit-tests to allow testing new-run-webkit-tests on various platforms
-        https://bugs.webkit.org/show_bug.cgi?id=37632
-
-        * Scripts/run-webkit-tests:
-         - Exit non-zero of launching the harness fails.
-
-2010-04-18  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, fixing the Qt bot.
-
-        Add a layer of indirection when calling run-webkit-tests to allow testing new-run-webkit-tests on various platforms
-        https://bugs.webkit.org/show_bug.cgi?id=37632
-
-        * Scripts/run-webkit-tests:
-         - Fix the wrapper to work for users who do not
-           have WebKitTools/Scripts in their path.
-
-2010-04-14  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add a layer of indirection when calling run-webkit-tests to
-        allow testing new-run-webkit-tests on various platforms.
-        https://bugs.webkit.org/show_bug.cgi?id=37632
-
-        This will let us test and fix bugs in new-run-webkit-tests
-        without needing to restart the buildbot master between tests.
-
-        Currently this change leaves run-webkit-tests as-is, but once
-        its landed we will easily be able to turn on/off
-        new-run-webkit-tests for various ports/configurations.
-
-        I will send a note out to webkit-dev about how we will
-        be using this launcher script to test on the bots.
-
-        * Scripts/old-run-webkit-tests: Copied from WebKitTools/Scripts/run-webkit-tests.
-        * Scripts/run-webkit-tests:
-         - A new script which decides whether to run new- or old-
-           run-webkit-tests based on the platform.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-         - Add some dummy argument handling for arguments which
-           old-run-webkit-tests supports but new-run-webkit-tests
-           does not yet.
-
-2010-04-18  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add Gtk bots to the list of "core builders" (builders which stop the commit-queue when they turn red)
-        https://bugs.webkit.org/show_bug.cgi?id=33295
-
-        The Gtk builders have been green every time I've looked
-        at them in the last 5 days or so.  It would appear webkit
-        is now keeping them green and we should update the core
-        builder list to match reality.
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot_unittest.py:
-
-2010-04-18  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Add support for LayoutTestController commands:
-                   setSmartInsertDeleteEnabled
-                   setSelectTrailingWhitespaceEnabled
-                   execCommand
-                   isCommandEnabled
-
-        https://bugs.webkit.org/show_bug.cgi?id=35844
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::resetSettings):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setSmartInsertDeleteEnabled):
-        (LayoutTestController::setSelectTrailingWhitespaceEnabled):
-        (LayoutTestController::execCommand):
-        (LayoutTestController::isCommandEnabled):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-04-17  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Remove steps_references and commands_references
-        https://bugs.webkit.org/show_bug.cgi?id=37758
-
-        We tried using the mumble_references convention to manage our
-        dependencies, but it doesn't seem to be providing much value for the
-        steps and commands module because these modules are small pieces of the
-        larger tool module.  In this patch, I've removed the references file
-        for these modules.
- 
-        I've left the style_references file for the style module because that
-        module seems better isolated from the rest of webkitpy and the
-        style_references file appears to be providing some value.
-
-        * Scripts/webkitpy/tool/commands/commandtest.py:
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-        * Scripts/webkitpy/tool/commands/queries_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/commands/queuestest.py:
-        * Scripts/webkitpy/tool/commands/upload.py:
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-        * Scripts/webkitpy/tool/commands_references.py: Removed.
-        * Scripts/webkitpy/tool/steps/closebugforlanddiff_unittest.py:
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-        * Scripts/webkitpy/tool/steps/updatechangelogswithreview_unittest.py:
-        * Scripts/webkitpy/tool/steps/validatereviewer_unittest.py:
-        * Scripts/webkitpy/tool/steps_references.py: Removed.
-
-2010-04-17  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        WebKit needs a Chromium Mac EWS Builder
-        https://bugs.webkit.org/show_bug.cgi?id=37742
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-
-2010-04-17  Adam Barth  <abarth@webkit.org>
-
-        Fix expected results for unit test broken by
-        http://trac.webkit.org/changeset/57772
-
-        * Scripts/webkitpy/common/net/buildbot_unittest.py:
-
-2010-04-17  Sam Weinig  <weinig@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Teach windows MiniBrowser how to work with window.open()
-        and targeted links.
-
-        * MiniBrowser/win/BrowserView.cpp:
-        (createNewPage): Create a new BrowserWindow and return its page.
-        (showPage): Show the page.
-        (closePage): Empty implementation.
-        (runJavaScriptAlert): Empty implementation.
-        (BrowserView::create): Register a UIClient.
-        * MiniBrowser/win/BrowserView.h:
-        (BrowserView::webView): Added.
-        Change create to take a BrowserWindow instead of an HWND.
-
-        * MiniBrowser/win/BrowserWindow.cpp:
-        (BrowserWindow::wndProc): Respond to WM_NCDESTROY.
-        (BrowserWindow::goToURL): Added. Forwards to BrowserView.
-        (BrowserWindow::onCreate): Don't always go to the default
-        url. Let the caller do this.
-        (BrowserWindow::onNCDestroy): Delete the window.
-        * MiniBrowser/win/BrowserWindow.h:
-        (BrowserWindow::view): Added.
-        (BrowserWindow::window): Added.
-
-        * MiniBrowser/win/main.cpp:
-        (_tWinMain):
-        Go to the default URL for the initial page. Allocate the initial
-        window on the heap for correctness.
-
-2010-04-16  Adam Roben  <aroben@apple.com>
-
-        Add the Windows Debug (Test) builder to the list of core builders
-
-        It's been green for a few days now, and all the known Windows
-        flakiness is Release-only.
-
-        Rubber-stamped by Mark Rowe.
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-        (BuildBot.core_builder_name_regexps): Added a regular expression to
-        match the "Windows Debug (Test)" builder.
-
-2010-04-16  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Fix window.open() and targeted links.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (_createNewPage): Use the correct initializer to and load the window.
-
-2010-04-16  Adam Roben  <aroben@apple.com>
-
-        Fix links to layout test results from build status pages
-
-        Reviewed by Mark Rowe.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (ExtractTestResults.finished): Prepend "/" on the URL of the test
-        results page so that it is treated as an absolute URL.
-
-2010-04-16  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [chromium] build DRT on Linux
-        https://bugs.webkit.org/show_bug.cgi?id=37690
-
-        * Scripts/build-dumprendertree: Add support for win and linux
-
-2010-04-16  Sam Weinig  <weinig@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Use the threaded process model for MiniBrowser if holding down
-        the shift key on startup.
-
-        * MiniBrowser/win/BrowserView.cpp:
-        (BrowserView::create): 
-
-2010-04-15  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [chromium] Add TestShellGtk.cpp so we can link on Linux
-        https://bugs.webkit.org/show_bug.cgi?id=37561
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp: Add new file and
-            add platform file exceptions.
-        * DumpRenderTree/chromium/TestShellGtk.cpp: Added.
-        (AlarmHandler):
-        (TestShell::waitTestFinished):
-
-2010-04-15  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        build DRT on chromium mac
-        https://bugs.webkit.org/show_bug.cgi?id=37639
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * Scripts/build-dumprendertree: enable build-dumprendertree --chromium
-
-2010-04-15  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Add LayoutTestHelper for Mac
-        https://bugs.webkit.org/show_bug.cgi?id=37668
-
-        LayouTestHelper.mm is based on webkit/tools/test_shell/mac/layout_test_helper.mm
-        of Chromium.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/chromium/LayoutTestHelper.mm: Added.
-
-2010-04-15  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Geoff Garen.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37494
-        <rdar://problem/7857060> REGRESSION (r57340): fast/events/mouse-drag-from-frame-to-other-frame.html
-        fails on Windows
-
-        * DumpRenderTree/win/EventSender.cpp: (makeEventSender):
-        * DumpRenderTree/win/EventSender.h:
-        Tell EventSender if it's being created for a top frame.
-        
-        * DumpRenderTree/win/FrameLoadDelegate.cpp:
-        (FrameLoadDelegate::didClearWindowObjectForFrameInStandardWorld): We only want to reset
-        EventSender machinery when a new test is loaded, not when an iframe (or just its global
-        object) is created.
-
-2010-04-15  Adam Roben  <aroben@apple.com>
-
-        Fix Windows WebKit2 build.
-
-        * MiniBrowser/win/MiniBrowser.cpp:
-
-2010-04-15  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Include codereview issue number in patch description
-        https://bugs.webkit.org/show_bug.cgi?id=37677
-
-        This lets us know which rietveld issue this patch is tied to.
-
-        Also, make it so that --fancy-review overrides --no-review.
-
-        * Scripts/webkitpy/tool/steps/postcodereview.py:
-        * Scripts/webkitpy/tool/steps/postdiff.py:
-
-2010-04-15  Adam Roben  <aroben@apple.com>
-
-        Make --exit-after-n-failures work when all tests are timing out or crashing
-
-        Fixes <http://webkit.org/b/37679>.
-
-        Reviewed by Jon Honeycutt.
-
-        * Scripts/run-webkit-tests:
-        (top level): When a test crashes or times out, break out of the main loop if
-        stopRunningTestsEarlyIfNeeded returns true. Moved some code from the bottom of the main loop
-        from here...
-        (stopRunningTestsEarlyIfNeeded): ...to here.
-
-2010-04-15  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Add WebHistoryClient support.
-        https://bugs.webkit.org/show_bug.cgi?id=37671
-
-        Add HistoryClient logging.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (_didNavigateWithNavigationData):
-        (_didPerformClientRedirect):
-        (_didPerformServerRedirect):
-        (_didUpdateHistoryTitle):
-        (-[BrowserWindowController awakeFromNib]):
-
-2010-04-15  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Start the mini browser in threaded mode if shift is pressed during startup.
-        https://bugs.webkit.org/show_bug.cgi?id=37670
-
-        * MiniBrowser/mac/AppDelegate.m:
-        (-[BrowserAppDelegate init]):
-
-2010-04-15  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Beth Dakin.
-
-        AXHelp is being appended from ancestors incorrectly
-        https://bugs.webkit.org/show_bug.cgi?id=37659
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (getHelpTextCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::helpText):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::helpText):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::helpText):
-
-2010-04-15  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Re-format run-webkit-tests to fit in 80-columns for PEP-8 compliance.
-        (broken by r57463 and r57381, at least). I've also filed bug 37477
-        to fix check-webkit-style to catch these things.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38586
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-04-15  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Add a way to override the user-visible name for the test binary since
-        some ports don't call it DumpRenderTree (e.g., Chromium Win uses
-        test_shell, Chromium Mac uses TestShell) by adding a driver_name()
-        method to the Port interface.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37631
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-04-14  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Add "Force Repaint" to debug menu.
-        https://bugs.webkit.org/show_bug.cgi?id=37627
-
-        * MiniBrowser/mac/BrowserWindowController.h:
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController forceRepaint:]):
-        * MiniBrowser/mac/English.lproj/MainMenu.xib:
-
-2010-04-15  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Add debug-minibrowser script.
-
-        * Scripts/debug-minibrowser: Copied from Scripts/run-minibrowser.
-        * Scripts/webkitdirs.pm:
-
-2010-04-15  Roland Steiner  <rolandsteiner@chromium.org>
- 
-        Reviewed by Dimitri Glazkov.
-
-        Bug 37636 - [DRT/Chromium] Implement DRT/Chromium for Windows
-        https://bugs.webkit.org/show_bug.cgi?id=37636
- 
-        Second patch: add Windows-specific implementation parts
-        of TestShell.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::finishedEvent):
-        * DumpRenderTree/chromium/TestShellWin.cpp:
-        (watchDogThread):
-        (TestShell::waitTestFinished):
-
-2010-04-15  Roland Steiner  <rolandsteiner@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Bug 37636 - [DRT/Chromium] Implement DRT/Chromium for Windows
-        https://bugs.webkit.org/show_bug.cgi?id=37636
-
-        First patch: fix compiler errors.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::reset):
-        (EventSender::dispatchMessage):
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::pathToLocalResource):
-        * DumpRenderTree/chromium/TestWebWorker.h:
-        * DumpRenderTree/chromium/TextInputController.cpp:
-        * DumpRenderTree/chromium/WebViewHost.h:
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2010-04-14  Luiz Agostini  <luiz.agostini@openbossa.org>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Moving setViewMode from DumpRenderTreeSupportQt to qwebpage.cpp
-        https://bugs.webkit.org/show_bug.cgi?id=37622
-
-        Method qt_wrt_setViewMode was removed from qwebpage.cpp by mistake in r57433
-        (bug 35844). Moving it back.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setViewModeMediaFeature):
-
-2010-04-15  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Add some very minimal unit tests for new-run-webkit-tests. This should
-        be enough to catch egregious brokenness like syntax errors and import
-        declaration issues.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37432
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py: Added.
-
-2010-04-14  Brian Weinstein  <bweinstein@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Add a way for the buildbot to kill any old processes that are running. This
-        is useful because the Windows bots can get in states where a process remains
-        running (httpd.exe, DumpRenderTree.exe), which causes the bots to get in a red
-        state, and the processes must be killed manually.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: If we are on Windows, kill
-            the old processes that might be running.
-        * BuildSlaveSupport/win/kill-old-processes: Added.
-
-2010-04-14  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Tear down WebKit more completely on window closing and application
-        termination. We still don't block application termination for pending
-        close, but this is a step in the right direction.
-
-        * MiniBrowser/mac/AppDelegate.m:
-        (-[BrowserAppDelegate applicationWillTerminate:]):
-        * MiniBrowser/mac/BrowserWindowController.h:
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController dealloc]):
-        (-[BrowserWindowController windowWillClose:]):
-        (-[BrowserWindowController applicationTerminating]):
-
-2010-04-14  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Use pretty patch for confirming webkit-patch diffs
-        https://bugs.webkit.org/show_bug.cgi?id=37489
-
-        * Scripts/webkitpy/common/prettypatch.py: Added.
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/confirmdiff.py:
-
-2010-04-14  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Teach webkit-patch how to handle revisions missing ChangeLogs
-        https://bugs.webkit.org/show_bug.cgi?id=37519
-
-        Make commit_info_for_revision return None when revision
-        is missing a ChangeLog.  Previously we would throw an array index
-        exception.
-        Teach callers how to handle None.
-
-        * Scripts/webkitpy/common/checkout/api.py:
-        * Scripts/webkitpy/common/checkout/api_unittest.py:
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-
-2010-04-13  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Add Qt Bot to the list of "core builders" (builders which block the commit-queue when red)
-        https://bugs.webkit.org/show_bug.cgi?id=33297
-
-        This is an experiment.  The bots have been green for
-        a while.  We'll see if adding them under sheriff-bot protection
-        will keep them green.
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot_unittest.py:
-
-2010-04-13  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, just fixing a constant in the Rietveld unit test.
-
-        * Scripts/webkitpy/common/net/rietveld_unittest.py
-
-2010-04-13  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, just adding missing Mock to fix python tests.
-
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-04-13  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by David Levin.
-
-        Add experimental prototype Rietveld integration to webkit-patch upload
-        https://bugs.webkit.org/show_bug.cgi?id=37418
-
-        This patch adds bare-bones integration with Rietveld for code reviews.
-        The behavior is hidden behind the --fancy-review command line flag.
-        Currently, there's no support for uploading more than one patch per
-        issue (which is a nice feature of Rietveld).  The plan is to play with
-        this for a bit and see if it's useful.
-
-        Modified from Adam's original patch to autoinstall the rietveld upload script.
-
-        * Scripts/webkitpy/common/config/__init__.py:
-        * Scripts/webkitpy/common/net/rietveld.py: Added.
-        * Scripts/webkitpy/common/net/rietveld_unitttest.py: Added.
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/commands/upload.py:
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-        * Scripts/webkitpy/tool/main.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/__init__.py:
-        * Scripts/webkitpy/tool/steps/options.py:
-        * Scripts/webkitpy/tool/steps/postcodereview.py: Added.
-        * Scripts/webkitpy/tool/steps/postdiff.py:
-
-2010-04-13  Sam Weinig  <sam@webkit.org>
-
-        Rubber-stamped by Mark Rowe.
-
-        Add Makefile to MiniBrowser.
-
-        * MiniBrowser/Makefile: Added.
-
-2010-04-13  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, just adding a sanity check.
-
-        Add check to make sure commit-queue can never commit too short a message
-        https://bugs.webkit.org/show_bug.cgi?id=37528
-
-        The commit-queue made bogus messages here:
-        http://trac.webkit.org/changeset/57532
-        http://trac.webkit.org/changeset/57534
-
-        This was a regression caused by adding unicode parsing for
-        our ChangeLog files.  Popen does not seem to play nice with
-        unicode strings.
-
-        I'm also adding an "assert" to make sure short ChangeLogs never happen again.
-
-        * Scripts/webkitpy/common/system/executive.py:
-         - Cast input to strings before passing to POpen
-        * Scripts/webkitpy/tool/steps/commit.py:
-         - Validate that commit messages are not to short.
-
-2010-04-13  Adam Roben  <aroben@apple.com>
-
-        Robustify new-run-webkit-tests against paths with spaces in them
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/layout_tests/port/apache_http_server.py:
-        (LayoutTestApacheHttpd.__init__): Quote all paths that we pass to
-        Apache to ensure that paths with spaces in them are interpreted
-        correctly.
-
-2010-04-13  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed buildfix after r57537.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.h: Declaration of removeOriginAccessWhitelistEntry() added.
-
-2010-04-13  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Maciej Stachowiak.
-
-        Make building new webkit API and MiniBrowser a little easier.
-
-        * Scripts/build-webkit: Make building with --webkit2 build the 
-        MiniBrowser as well and tell you how to use it.
-        * Scripts/run-minibrowser: Copied from Scripts/run-safari.
-        * Scripts/webkitdirs.pm: Add runMiniBrowser function.
-
-2010-04-12  Timothy Hatcher  <timothy@apple.com>
-
-        SecurityOrigin needs a way to remove individual OriginAccessEntries
-        https://bugs.webkit.org/show_bug.cgi?id=37449
-
-        Reviewed by Dave Hyatt.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (removeOriginAccessWhitelistEntryCallback): Added. Call LayoutTestController::removeOriginAccessWhitelistEntry.
-        (LayoutTestController::staticFunctions): Added removeOriginAccessWhitelistEntry.
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::removeOriginAccessWhitelistEntry): Added. FIXME to implement.
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::removeOriginAccessWhitelistEntry): Added.
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::removeOriginAccessWhitelistEntry): Added. FIXME to implement.
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::removeOriginAccessWhitelistEntry): Added.
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::whiteListAccessFromOrigin): FIXME to implement.
-        (LayoutTestController::removeOriginAccessWhitelistEntry): Added. FIXME to implement.
-
-2010-04-13  Timothy Hatcher  <timothy@apple.com>
-
-        Rename SecurityOrigin::whiteListAccessFromOrigin to addOriginAccessWhitelistEntry.
-        And LayoutTestController.whiteListAccessFromOrigin to addOriginAccessWhitelistEntry.
-        And SecurityOrigin::resetOriginAccessWhiteLists to resetOriginAccessWhitelists.
-
-        SecurityOrigin needs a way to remove individual OriginAccessEntries
-        https://bugs.webkit.org/show_bug.cgi?id=37449
-
-        Reviewed by Dave Hyatt.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (addOriginAccessWhitelistEntryCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::addOriginAccessWhitelistEntry):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::addOriginAccessWhitelistEntry):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::addOriginAccessWhitelistEntry):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::addOriginAccessWhitelistEntry):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::addOriginAccessWhitelistEntry):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::addOriginAccessWhitelistEntry):
-
-2010-04-13  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Eric Seidel.
-
-        Remove duplicate function for new-run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=37517
-
-        The version() function was already implemented.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2010-04-13  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Levin.
-
-        the commit-queue hates Tor Arne Vestbø
-        https://bugs.webkit.org/show_bug.cgi?id=37511
-
-        We were failing to read reviewers out of ChangeLogs
-        when the reviewer has unicode characters in his/her name.
-        I fixed this by explicitly decoding from utf8 every time we
-        read in a ChangeLog file (they are always UTF8).
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-
-2010-04-13  Adam Roben  <aroben@apple.com>
-
-        Fix run-webkit-tests on Windows with spaces in the path
-
-        Fixes <http://webkit.org/b/37509>.
-
-        Reviewed by Steve Falkenburg.
-
-        * Scripts/run-webkit-tests:
-        (convertPathUsingCygpath): Remove spaces from the path before passing
-        them to cygpath, then add them back in after conversion, as some
-        versions of cygpath seem to convert spaces into newlines.
-
-2010-04-13  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed, but approved by Dumitru Daniliuc.  (This patch is intended
-        to fix the downstream Chromium build bots.  Hopefully it will work!)
-
-        Add a driver script for the new websocket server
-        https://bugs.webkit.org/show_bug.cgi?id=37495
-
-        websocket_server.py can't be run directly because its a module and not
-        a standalone script.  This used to work by accident because it didn't
-        depend on any other modules.
-
-        * Scripts/new-run-webkit-websocketserver: Added.
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-
-2010-04-12  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Make new-run-webkit-test PrettyPatch failure reporting more awesome
-        https://bugs.webkit.org/show_bug.cgi?id=37487
-
-        I also fixed an Executive/executive typo.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-
-2010-04-12  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        new-run-webkit-tests should only build java support files on Mac
-        https://bugs.webkit.org/show_bug.cgi?id=37482
-
-        Only the mac needs java support files, so I pushed _build_java
-        down into the Mac port using a new hook "_check_port_build".
-        In the process I noticed a bunch of code which could be shared
-        between all ports and thus got rid of _tests_for_disabled_features
-        and version() copy/paste between all webkit ports.
-        I also made check_build only bother to check for ImageDiff if we're
-        using pixel tests.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/win.py:
-
-2010-04-12  Dumitru Daniliuc  <dumi@chromium.org>
-
-        Unreviewed, trying to make scripts work on machines without
-        Ruby...
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-
-2010-04-12  Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Eric Seidel.
-
-        Add stub files for running new-run-webkit-tests for the Qt port
-
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        * Scripts/webkitpy/layout_tests/port/qt.py: Added.
-
-2010-04-12  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Modify run_webkit_tests.py to not call sys.exit() at the end of test
-        run; doing so makes it more difficult to embed the routine for,
-        among other things, unit tests. We push the exit calling up into
-        new-run-webkit-tests.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37464
-
-        * Scripts/new-run-webkit-tests:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-04-12  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.
-
-        Add stub Gtk implementation for new-run-webkit-tests.
-
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        * Scripts/webkitpy/layout_tests/port/gtk.py: Added.
-
-2010-04-12  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        new-run-webkit-tests fails with exception on systems missing ruby
-        https://bugs.webkit.org/show_bug.cgi?id=37441
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-         - Catch failures similar to how wdiff code path does.
-         - After one failure, stop trying.
-
-2010-04-12  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Fix how we import simplejson based on how it's used in this file.
-        This fixes exceptions raised when trying to write the simplejson output.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-04-11  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Refactored check-webkit-style so that the StyleChecker class
-        has no dependencies on patch-related concepts.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37065
-
-        This patch is an intermediate step towards making the StyleChecker
-        class a generalized file processor that can do arbitary operations
-        on the files corresponding to a list of paths.  This patch
-        also simplifies the unit-testing of patch-checking code.
-
-        * Scripts/check-webkit-style:
-          - Updated to use the new PatchChecker class.
-
-        * Scripts/webkitpy/style/checker.py:
-          - Refactored the StyleChecker.check_patch() method into the
-            check() method of a new PatchChecker class.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Refactored the unit tests as necessary, changing the
-            StyleCheckerCheckPatchTest class to a PatchCheckerTest class.
-
-2010-04-11  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        Fix new-run-webkit-tests regressions cased by Eric's option parsing patch
-        https://bugs.webkit.org/show_bug.cgi?id=37430
-
-        We need some basic unit testing of this script, or we're going to keep
-        breaking it like this.  Added missing namespace qualifiers and
-        propagated renaming of an option.
-
-        * Scripts/webkitpy/common/config/ports.py:
-        * Scripts/webkitpy/layout_tests/driver_test.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-04-11  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Break new-run-webkit-tests options into groups for easier re-use and possible relocation
-        https://bugs.webkit.org/show_bug.cgi?id=37408
-
-        new-run-webkit-tests currently has one huge function for
-        dealing with all options-parsing. 
-        This patch is a first attempt at trying to split that large
-        function down into smaller (hopefully more readable?) chunks
-        dealing with the different areas of options.
-        For example, it would make sense to move configuration
-        options off into some module which deals with the vagries of
-        WebKit's configuration system.  It would also make sense to move
-        Chromium options off onto the Chromium port object (where they are used).
-        It may make sense to move results.json options over to the results.json code.
-        This change is a first iteration, and we will certainly need more
-        refinement to this code over time.  Hopefully I didn't make things
-        harder to read here.
-
-        * Scripts/webkitpy/layout_tests/driver_test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-04-11  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        create-rollout copy needs to be updated to reflect removal of --no-build
-        https://bugs.webkit.org/show_bug.cgi?id=37425
-
-        Removed --no-build and --no-test from the instructions because these
-        don't exist anymore.
-
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-            - Updated the expected results to reflect the new copy.
-        * Scripts/webkitpy/tool/steps/postdiffforrevert.py:
-
-2010-04-11  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r57460.
-        http://trac.webkit.org/changeset/57460
-        https://bugs.webkit.org/show_bug.cgi?id=37424
-
-        broke chromium builders (Requested by tony^work on #webkit).
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2010-04-11  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Darin Fisher.
-
-        [chromium] update chromium DEPS for upstream compile
-        https://bugs.webkit.org/show_bug.cgi?id=36578
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp: Small fix to avoid a circular dependency between
-          WebKit.gyp and webkit.gyp.
-
-2010-04-11  Joseph Pecoraro  <joepeck@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        svn-apply errors out when removing directories in git
-        https://bugs.webkit.org/show_bug.cgi?id=34871
-
-        * Scripts/svn-apply:
-        (isDirectoryEmptyForRemoval): early break if the directory doesn't exist
-        (scmRemove): have git ignore unmatched files
-
-2010-04-11  Daniel Bates  <dbates@rim.com>
-
-        No review, rolling out 57440.
-        http://trac.webkit.org/changeset/57440
-        https://bugs.webkit.org/show_bug.cgi?id=27204
-
-        Did not handle Git patches that included both file and property
-        changes to the same file. Rolling this change out while I look
-        into this.
-
-        * Scripts/VCSUtils.pm:
-        * Scripts/svn-apply:
-        * Scripts/svn-unapply:
-        * Scripts/webkitperl/VCSUtils_unittest/appendSVNExecutableBitChangeToPatch.pl: Removed.
-        * Scripts/webkitperl/VCSUtils_unittest/parseGitFileMode.pl: Removed.
-        * Scripts/webkitperl/VCSUtils_unittest/parseStartOfPatchOrPropertyChangeAndEndOfPropertyChange.pl: Removed.
-
-2010-04-11  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Fix typo in log path for AbstractQueue
-        https://bugs.webkit.org/show_bug.cgi?id=37414
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2010-04-11  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Add missing import statement.
-
-        * Scripts/webkitpy/common/system/executive.py:
-
-2010-04-11  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Add setWillSendRequestReturnsNull and setWillSendRequestClearHeader
-
-        https://bugs.webkit.org/show_bug.cgi?id=37410
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::setWillSendRequestReturnsNull):
-        (LayoutTestController::setWillSendRequestClearHeader):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-04-11  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Unreviewed buildfix for --debug build after r57433.
-
-        Refactor Qt DRT support in QtWebKit
-        https://bugs.webkit.org/show_bug.cgi?id=35844
-
-        * QtLauncher/main.cpp: qt_drt_garbageCollector_collect(); renamed to DumpRenderTreeSupportQt::garbageCollectorCollect();
-        (launcherMain):
-
-2010-04-11  Joseph Pecoraro  <joepeck@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        Make commit-log-editor Rubber-stamp aware. And other minor cleanups.
-        https://bugs.webkit.org/show_bug.cgi?id=37407
-
-        * Scripts/commit-log-editor:
-
-2010-04-11  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add PrettyPatch links to new-run-webkit-tests output
-        https://bugs.webkit.org/show_bug.cgi?id=37406
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-         - We're leaking a file handle here, add a FIXME.
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures.py:
-         - Add pretty diff links.
-        * Scripts/webkitpy/layout_tests/port/base.py:
-         - Add support for generating pretty diffs using PrettyPatch.
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-         - We're leaking another file handle here, another FIXME.
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py:
-         - Update write_output_files signature.
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py:
-         - Remove unused arguments from write_output_files.
-         - Add support for dumping pretty diffs to write_output_files.
-         - Fix a bunch of file descriptor leaks in this file.
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-         - Update write_output_files signature.
-
-2010-04-10  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        kill_process is copy/pasted in five places
-        https://bugs.webkit.org/show_bug.cgi?id=37405
-
-        We shouldn't replicate the kill_process logic in every port.  Instead,
-        we should move the process interaction to Executive.
-
-        Dirk mentioned that he wanted this abstraction to make it easier to
-        mock things out for testing.  It turns out this function is only used
-        in one place where it can't be used as a mock point for testing because
-        the corresponding create process actually creates a real process.  In
-        the long term, we should indirect both these calls through a non-static
-        Executive as a mock point.  However, we should wait on that until we
-        actually want to write the test.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-        * Scripts/webkitpy/layout_tests/port/win.py:
-
-2010-04-10  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        new-run-webkit-tests shouldn't alter its path to import packages
-        https://bugs.webkit.org/show_bug.cgi?id=37404
-
-        * Scripts/new-run-webkit-tests:
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/test_types/fuzzy_image_diff.py:
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py:
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-        * Scripts/webkitpy/thirdparty/simplejson/decoder.py:
-
-2010-04-10  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        new-run-webkit-tests should store results to a directory under the build tree
-        https://bugs.webkit.org/show_bug.cgi?id=37380
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2010-04-10  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Eric Seidel.
-
-        https://bugs.webkit.org/show_bug.cgi?id=27204
-
-        Implement support for changing the executable bit of a file.
-        The executable bit is among the most changed file properties.
-        Future support can include other property changes.
-
-        Currently, if a patch changes the executable bit of a file
-        it is not respected by svn-apply or svn-unapply. Since the
-        commit-queue bot uses these tools as part of its workflow,
-        such patches cannot be committed by it. That is, such patches
-        need to be committed by hand. Instead, we should add support
-        for the executable bit so that such patches can be committed
-        by the commit-queue bot.
-
-        * Scripts/VCSUtils.pm: Also change reference to Apple Computer, Inc.
-        in copyright to Apple, Inc.
-        * Scripts/svn-apply:
-        * Scripts/svn-unapply:
-        * Scripts/webkitperl/VCSUtils_unittest/appendSVNExecutableBitChangeToPatch.pl: Added.
-        * Scripts/webkitperl/VCSUtils_unittest/parseGitFileMode.pl: Added.
-        * Scripts/webkitperl/VCSUtils_unittest/parseStartOfPatchOrPropertyChangeAndEndOfPropertyChange.pl: Added.
-
-2010-04-10  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        WinEWS bot fails to svn update because scm.clean_working_directory leaves files around
-        https://bugs.webkit.org/show_bug.cgi?id=37401
-
-        The Git-based bots don't have this trouble because
-        Git.clean_working_directory fully removes files that were
-        marked as "add".  SVN.clean_working_directory previously just
-        called "svn revert" which would leave added files in the
-        working directory untracked.  This patch makes
-        SVN.clean_working_directory function more like
-        Git.clean_working_directory by removing added files after revert.
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-         - Add SCM.absolute_path for easy conversion between
-           repository-relative paths and absolute paths.
-         - Add SCM.add and SCM.added_files
-         - Make SVN.clean_working_directory remove any added_files after svn revert.
-         - The new unit tests found a bug in Git.status_command, change to use git diff --name-status instead.
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-         - Add tests for added code.
-
-2010-04-10  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        new-run-webkit-tests can't find ImageDiff on Windows
-        https://bugs.webkit.org/show_bug.cgi?id=37403
-
-        It turns out the build directory on Windows is structured differently
-        than it is on other platforms.  Instead of assuming the normal
-        structure, we should just ask perl to figure it out for us.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2010-04-10  Adam Barth  <abarth@webkit.org>
-
-        Rubber-stamped by Eric Seidel.
-
-        Change "Gathering files" status line to "Collecting tests".  Gathering
-        the files sounds silly to me.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-04-10  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Fix bugs to make new-run-webkit-tests almost run on windows
-        https://bugs.webkit.org/show_bug.cgi?id=37400
-
-        Fix some minor bugs that prevent new-run-webkit-tests from being run on
-        Windows.  I still haven't run it to completion, but I'm getting
-        further.
-
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2010-04-10  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Refactor Qt DRT support in QtWebKit
-
-        Update Qt DRT to use new DumpRenderTreeSupportQt static class.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35844
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        (WebCore::DumpRenderTree::dumpFramesAsText):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        * DumpRenderTree/qt/GCControllerQt.cpp:
-        (GCController::collect):
-        (GCController::collectOnAlternateThread):
-        (GCController::getJSObjectCount):
-        * DumpRenderTree/qt/GCControllerQt.h:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::counterValueForElementById):
-        (LayoutTestController::setViewModeMediaFeature):
-        (LayoutTestController::setMediaType):
-        (LayoutTestController::closeWebInspector):
-        (LayoutTestController::showWebInspector):
-        (LayoutTestController::evaluateInWebInspector):
-        (LayoutTestController::setFrameFlatteningEnabled):
-        (LayoutTestController::setJavaScriptProfilingEnabled):
-        (LayoutTestController::setTimelineProfilingEnabled):
-        (LayoutTestController::pauseAnimationAtTimeOnElementWithId):
-        (LayoutTestController::pauseTransitionAtTimeOnElementWithId):
-        (LayoutTestController::sampleSVGAnimationForElementAtTime):
-        (LayoutTestController::numberOfActiveAnimations):
-        (LayoutTestController::whiteListAccessFromOrigin):
-        (LayoutTestController::setCaretBrowsingEnabled):
-        (LayoutTestController::setDomainRelaxationForbiddenForURLScheme):
-        (LayoutTestController::workerThreadCount):
-        (LayoutTestController::pageNumberForElementById):
-        (LayoutTestController::numberOfPages):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-04-10  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Move global queue log to the logs directory so it survives git clean -f
-        https://bugs.webkit.org/show_bug.cgi?id=37395
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-
-2010-04-10  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        SheriffBot should spam when it encounters errors
-        https://bugs.webkit.org/show_bug.cgi?id=37329
-
-        We need to always update the status server so we don't get stuck in a
-        spam loop.  I tried writing a test for this change, but it kind of
-        got out of control.  We need a better way to do failure injection.
-
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-
-2010-04-10  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed attempt to fix the Chromium Mac canary.
-
-        * Scripts/webkitpy/common/config/ports.py:
-        * Scripts/webkitpy/common/config/ports_unittest.py:
-        * Scripts/webkitpy/common/system/executive.py:
-
-2010-04-10  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        Add the Apache bits to win.py for new-run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=37397
-
-        I still have run this yet, but I looked around to figure out what the
-        various paths appear to be.  I'll figure out a way to remove the
-        copy/paste code in a future patch.
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/win.py:
-
-2010-04-10  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Sketch out the win port for new-run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=37393
-
-        I haven't tried running this yet, but we've got to start somewhere.
-
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/win.py: Added.
-
-2010-04-10  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        webkit-patch land should not build and test by default
-        https://bugs.webkit.org/show_bug.cgi?id=33631
-
-        Reverse the sense of --no-build and --no-test to be --build and --test.
-        Also, decoupled the build and test options so you can test without
-        building.
-
-        (Patch manngled by Adam Barth.  All bugs are his fault.)
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/steps/options.py:
-        * Scripts/webkitpy/tool/steps/runtests.py:
-
-2010-04-10  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Factor WebKitPort out of MacPort to allow for WinPort
-        https://bugs.webkit.org/show_bug.cgi?id=37388
-
-        The split is a bit of a guess.  We might have to adjust things once we
-        actually have a second port to work with.
-
-        * Scripts/webkitpy/layout_tests/port/apache_http_server.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py: Added.
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-
-2010-04-10  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        run_webkit_tests.py shouldn't have platform-specific logic
-        https://bugs.webkit.org/show_bug.cgi?id=37387
-
-        Dirk Pranke pointed out that my last patch was wrong because I
-        introduced platform-specific logic into run_webkit_tests.py, limiting
-        the parallelism in Chromium to work around a bug in the main Mac port.
-
-        * Scripts/webkitpy/common/system/executive.py:
-            - Fix a typo pointed out by Chris Jerdonek.
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-04-10  Robert Hogan  <robert@webkit.org>
-
-        Unreviewed fix to regressions in r57416.
-
-        [Qt] Fix regressions in http/tests/navigation from r57416
-
-        Reset willSendRequestReturnsNullOnRedirect after each test to
-        prevent it leaking to subsequent tests.
-
-        Error pointed out by Jakub Wieczorek.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37237
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-
-2010-04-11  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Update layoutTestController.DumpResourceLoadCallbacks to match other ports.
-
-        Add support for layoutTestController.setWillSendRequestReturnsNullOnRedirect to Qt DRT.
-        Prevent dumping resource load callbacks once layout test has dumped.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37237
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::dump):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setWillSendRequestReturnsNullOnRedirect):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-04-10  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Implement Desktop Notifications API for QtWebKit
-        https://bugs.webkit.org/show_bug.cgi?id=35503
-
-        DRT stubs for notification. Enables to run and pass
-        3 (currently disabled) tests.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::grantDesktopNotificationPermission):
-        (LayoutTestController::checkDesktopNotificationPermission):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-04-09  Dumitru Daniliuc  <dumi@chromium.org>
-
-        Unreviewed, another change to executive.py to make it run with
-        python 2.4.
-
-        * Scripts/webkitpy/common/system/executive.py:
-
-2010-04-09  Dumitru Daniliuc  <dumi@chromium.org>
-
-        Unreviewed, attempting to make executive.py run with python 2.4
-        (which is still used on Chromium's Windows canary bot).
-
-        * Scripts/webkitpy/common/system/executive.py:
-
-2010-04-09  Kevin Watters  <kevinwatters@gmail.com>
-
-        Reviewed by Eric Seidel.
-
-        [wx] Basic implementation of SVG support for wx port.
-
-        * wx/build/settings.py:
-
-2010-04-09  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Don't reinvent Executive.cpu_count for every port
-        https://bugs.webkit.org/show_bug.cgi?id=37377
-
-        mac.py and chromium_mac.py had some copy/paste code.  This code doesn't
-        actually have anything to do with WebKit ports.  It's really just
-        something in the multiprocessing package.  The lame bit is that package
-        isn't available in older versions of Python, so we need to implement a
-        fallback.  However, we already have the fallback in common.  We don't
-        need to reinvent it specificly for layout_tests.
-
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-04-09  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        new-run-webkit-tests --release fails to build release DRT when global configuration is Debug
-        https://bugs.webkit.org/show_bug.cgi?id=37376
-
-        We need to explicitly pass the --release flag.  I bet there are more
-        instances of this bug.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-
-2010-04-09  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        [chromium] DRT compile fix on win/linux
-        https://bugs.webkit.org/show_bug.cgi?id=37314
-
-        Looks like this was missed when upstreaming.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (applyKeyModifier):
-
-2010-04-09  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed, but approved by Dirk Pranke.
-
-        rename test_expectations_test.py to test_expectations_unittest.py so it actually gets run
-        https://bugs.webkit.org/show_bug.cgi?id=37372
-
-        We need to end unit tests with _unittest.py for them to be autodetected
-        by the test harness.  +6 tests.
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations_unittest.py: Renamed from WebKitTools/Scripts/webkitpy/layout_tests/layout_package/test_expectations_test.py.
-
-2010-04-09  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        new-run-webkit-tests should talk about DumpRenderTree not test_shell
-        https://bugs.webkit.org/show_bug.cgi?id=37371
-
-        test_shell is some strange Chromium thing.
-        DumpRenderTree (tm) is the real deal.
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py: Added.
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_shell_thread.py: Removed.
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-04-09  Zoltan Horvath  <zoltan@webkit.org>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Fix 2 issues (what were introduced in r56524) in svn-create-patch's generateDiff()
-        https://bugs.webkit.org/show_bug.cgi?id=32582
-
-        Add missing return variable. Initialize $patch variable and remove unnecessary condition.
-
-        * Scripts/svn-create-patch:
-
-2010-04-09  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix after addition of LayoutTestController method.
-
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::computedStyleIncludingVisitedInfo):
-
-2010-04-09  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Fix for https://bugs.webkit.org/show_bug.cgi?id=37368
-        Add MiniBrowser.
-
-        * MiniBrowser: Added.
-        * MiniBrowser/MiniBrowser.vcproj: Added.
-        * MiniBrowser/MiniBrowser.xcodeproj: Added.
-        * MiniBrowser/MiniBrowser.xcodeproj/project.pbxproj: Added.
-        * MiniBrowser/mac: Added.
-        * MiniBrowser/mac/AppDelegate.h: Added.
-        * MiniBrowser/mac/AppDelegate.m: Added.
-        * MiniBrowser/mac/BrowserWindowController.h: Added.
-        * MiniBrowser/mac/BrowserWindowController.m: Added.
-        * MiniBrowser/mac/English.lproj: Added.
-        * MiniBrowser/mac/English.lproj/BrowserWindow.xib: Added.
-        * MiniBrowser/mac/English.lproj/InfoPlist.strings: Added.
-        * MiniBrowser/mac/English.lproj/MainMenu.xib: Added.
-        * MiniBrowser/mac/MiniBrowser-Info.plist: Added.
-        * MiniBrowser/mac/MiniBrowser_Prefix.pch: Added.
-        * MiniBrowser/mac/main.m: Added.
-        * MiniBrowser/win: Added.
-        * MiniBrowser/win/BrowserView.cpp: Added.
-        * MiniBrowser/win/BrowserView.h: Added.
-        * MiniBrowser/win/BrowserWindow.cpp: Added.
-        * MiniBrowser/win/BrowserWindow.h: Added.
-        * MiniBrowser/win/MiniBrowser.cpp: Added.
-        * MiniBrowser/win/MiniBrowser.h: Added.
-        * MiniBrowser/win/MiniBrowser.rc: Added.
-        * MiniBrowser/win/Resources: Added.
-        * MiniBrowser/win/main.cpp: Added.
-        * MiniBrowser/win/resource.h: Added.
-        * MiniBrowser/win/stdafx.cpp: Added.
-        * MiniBrowser/win/stdafx.h: Added.
-
-2010-04-09  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        webkit-patch attached my patch to the wrong bug
-        https://bugs.webkit.org/show_bug.cgi?id=37015
-
-        The problem here is that SVN was violating SCM's implicit
-        contract of always returning paths relative to the repository root.
-        That can easily be fixed by telling SVN that the CWD is the repository root.
-
-        When fixing this I realized there are a large number of places in SCM.py where
-        we want to consider explicitly passing self.checkout_root as the CWD.
-        That would allow scm methods to be executed even when the CWD is not inside
-        the scm tree at all, and would also make sure (in the case of SVN) that paths
-        returned are relative to the root.  Git (almost always) returns paths relative
-        to the repository root.
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-         - Explicitly pass self.checkout_root as cwd in run_status_and_extract_filenames
-         - Add a ton of FIXMEs about the need to go back and decide which methods require cwd=self.checkout_root
-           and which do not.  We'll probably add a helper function to scm (likely SCM._run) which
-           always passes cwd=self.checkout_root to Executive.run_command
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-         - Add a test for this change.
-        * Scripts/webkitpy/tool/commands/upload.py:
-         - Removed the explicit os.chdir to the repository root, since scm.py methods
-           should be robust against the cwd not being equal to the root.
-
-2010-04-09  Adam Roben  <aroben@apple.com>
-
-        Don't return 0 as a JSValueRef
-
-        That is an illegal use of the JSC API.
-
-        Fixes <http://webkit.org/b/37333> REGRESSION (r57292): :visited tests
-        are asserting on debug Windows and GTK builds
-
-        Reviewed by Anders Carlsson.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::computedStyleIncludingVisitedInfo):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::computedStyleIncludingVisitedInfo):
-        Return an "undefined" JSValueRef instead of 0.
-
-2010-04-09  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Make DumpRenderTree parallelizable
-        https://bugs.webkit.org/show_bug.cgi?id=36899
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (libraryPathForDumpRenderTree): Use DUMPRENDERTREE_TEMP if exist.
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree): Use DUMPRENDERTREE_TEMP if exist.
-        * Scripts/run-webkit-tests:
-          - Create a unique temporary directory and pass its path to
-          DumpRenderTree with DUMPRENDERTREE_TEMP environment variable.
-
-2010-04-09  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        <http://webkit.org/b/37326> IDL files are being copied in to the WebCore framework again
-
-        Add a script to detect the presence of inappropriate files in the frameworks.  At present
-        it only looks for .css, .idl and .in files in the top level of WebCore.framework/Resources,
-        as these are the only cases we've encountered recently.  It can be extended to check the
-        other frameworks or for other inappropriate files in the future.
-
-        * Scripts/check-for-inappropriate-files-in-framework: Added.
-
-2010-04-08  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Add option to build WebKit2 to build-webkit.
-
-        * Scripts/build-webkit:
-
-2010-04-08  Darin Adler  <darin@apple.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        run-webkit-tests should respect argument order
-        https://bugs.webkit.org/show_bug.cgi?id=37257
-
-        * Scripts/run-webkit-tests: Changed so that sorting is done only
-        on the results of iterating directories. Test order is based on
-        what's passed on the command line. Removed code that aimed to
-        eliminate duplicates since it can be useful to run the same test
-        more than once.
-
-2010-04-07  David Hyatt  <hyatt@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        https://bugs.webkit.org/show_bug.cgi?id=24300, don't expose history info via CSS.  Add a new method for
-        obtaining computed style with :visited info included.  This allows layout tests to actually tell that
-        :visited is in effect.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (computedStyleIncludingVisitedInfoCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::computedStyleIncludingVisitedInfo):
-
-2010-04-07  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Enable rebaseline-chromium-webkit-tests to run from a webkit-only
-        checkout (i.e., you don't need anything from the Chromium tree checked
-        out). This requires us to introduce the concept of a "target"
-        port/platform that we use to get configuration information from as well
-        as the "running" port that we use to make directories and diff images
-        and the "rebaselining" port we use to actually manage baselines.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37238
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-
-2010-04-05  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] REGRESSION:(r50665) QWebFrame::setScrollBarPolicy(Qt::Vertical,Qt::ScrollBarAlwaysOff) has no effect.
-        https://bugs.webkit.org/show_bug.cgi?id=29431
-
-        Added stubs for Mac, win, gtk and wx DRTs to implement setScrollbarPolicy method.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setScrollbarPolicyCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setScrollbarPolicy):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setScrollbarPolicy):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setScrollbarPolicy):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setScrollbarPolicy):
-
-2010-04-01  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by David Hyatt.
-
-        [Qt] REGRESSION:(r50665) QWebFrame::setScrollBarPolicy(Qt::Vertical,Qt::ScrollBarAlwaysOff) has no effect.
-        https://bugs.webkit.org/show_bug.cgi?id=29431
-
-        Make possible to DRT to set scrollbar policies (on, off or auto).
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setScrollbarPolicy):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * QtLauncher/main.cpp:
-        (LauncherWindow::toggleScrollbars):
-        (LauncherWindow::createChrome):
-
-2010-04-08  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        new-run-webkit-tests should give a percent complete indication
-        https://bugs.webkit.org/show_bug.cgi?id=37258
-
-        Because it's awesome.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-04-08  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        Add back the --target option because it's needed by the downstream
-        Chromium bots.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-04-08  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        new-run-webkit-tests should understand set-webkit-configuration
-        https://bugs.webkit.org/show_bug.cgi?id=37252
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-04-08  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Rename target to configuration in new-run-webkit-tests to match the rest of WebKit
-        https://bugs.webkit.org/show_bug.cgi?id=37251
-
-        The rest of our tools call --debug or --release the configuration.
-        It's confusing to call it target in this script.
-
-        * Scripts/webkitpy/layout_tests/driver_test.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_shell_thread.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/test_types/fuzzy_image_diff.py:
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py:
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py:
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-
-2010-04-07  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Remove depricated op.popen2 call in new-run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=37249
-
-        Python complains that this API is depricated.  We already solved this
-        problem in executive.py.
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-
-2010-04-07  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        new-run-webkit-tests crashes when run on a 64-bit machine
-        https://bugs.webkit.org/show_bug.cgi?id=37248
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-         - The code was trying to always run the 32-bit intel version
-           of the DumpRenderTree binary.  DRT does not build 32-bit on 64-bit
-           machines so that makes no sense.  This may have made sense for test_shell
-           at some point, but I think we should just remove this for DRT.
-
-2010-04-07  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        WebKit Apache configs only listen on IPv4 addresses, causing random timeouts
-        https://bugs.webkit.org/show_bug.cgi?id=37104
-
-        Add warnings that the partial support for specifying what port numbers
-        apache should bind to is even more broken after this fix.
-
-        * Scripts/run-webkit-httpd:
-        * Scripts/run-webkit-tests:
-
-2010-04-07  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        LayoutTestController::m_handlesAuthenticationChallenges isn't initialized
-        https://bugs.webkit.org/show_bug.cgi?id=37190
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-
-2010-03-31  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add webkit-patch command to crawl buildbot history and find when tests
-        started to fail.
-        https://bugs.webkit.org/show_bug.cgi?id=36911
-
-        This is a very bare-bones implementation, which works, but isn't pretty.
-        We will need further re-factoring and improvement to this code, but
-        after long discussions with Adam, I think it's best that we land this
-        and iterate from there.
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-         - Add revision_build_pairs_with_results for cleaner code and possible
-           optimization of this command.
-         - Return None if a build number can't be found for a revision in
-           build_for_revision
-         - Separate out suspect_revisions_for_transition for re-use by
-           FailureReason
-         - Add LayoutTestResults.failing_tests() and make our parsing code
-           explict about what tables it accepts.
-        * Scripts/webkitpy/tool/commands/queries.py:
-         - Move _print_blame_information_for_commit out of WhatBroke for re-use
-           by FailureReason.
-         - Add FailureReason command which can crawl a given builder and explain
-           why it is currently red on a per-test basis.
-
-2010-04-06  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Add DumpRenderTree.gyp, and some small fixes
-        https://bugs.webkit.org/show_bug.cgi?id=37137
-
-        - Add DumpRenderTree.gyp
-        - Remove some dependencies to base/string_util.h,
-          base/compiler_specific.h, base/file_path.h, base/file_util.h,
-          base/message_loop.h, base/sys_string_conversions.h,
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp: Added.
-        * DumpRenderTree/chromium/CppVariant.cpp:
-        (CppVariant::toStringVector):
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::EventSender):
-        (EventSender::keyDown):
-        (EventSender::scheduleAsynchronousClick):
-        (EventSender::beginDragWithFiles):
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::setUserStyleSheetLocation):
-        (LayoutTestController::pathToLocalResource):
-        * DumpRenderTree/chromium/TextInputController.cpp:
-        (TextInputController::markedRange):
-        (TextInputController::selectedRange):
-
-2010-04-06  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Write stack traces into the results directory for new-run-webkit-tests,
-        instead of writing them alongside the test file.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36504
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_shell_thread.py:
-
-2010-04-06  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed build fix.
-
-        Enable pixel tests by default in new-run-webkit-tests unless
-        explicitly set by the port or by the command line. This was broken in
-        the fix for bug 36801 (rev. 57173).
-
-        https://bugs.webkit.org/show_bug.cgi?id=37184
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-04-06  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Disable pixel tests on the mac port by default.
-
-        Also, revamp the way we check for pixel tests being enabled or
-        disabled. We now look for options.pixel_tests instead of
-        options.no_pixel_tests, and we have the "--pixel-tests" (force enable)
-        and "--no-pixel-tests" (force disable) flags.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36801
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations_test.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-04-06  Diego Gonzalez  <diego.gonzalez@openbossa.org>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt] Added the iPhone and iPad latest user agent in QtLauncher UA switcher
-        https://bugs.webkit.org/show_bug.cgi?id=37159
-
-        * QtLauncher/useragentlist.txt:
-
-2010-04-06  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Add current user-agent string for Symbian for QtLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=37131
-
-        * QtLauncher/useragentlist.txt:
-
-2010-04-06  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Explain how to handle rollout patches
-        https://bugs.webkit.org/show_bug.cgi?id=37139
-
-        We need to set expectations for how long landing rollout patches with
-        the commit-queue takes.  The commit-queue is optimized for safety, not
-        performance.  Also, give folks an alternative way to land patches
-        quickly.
-
-        In addition, improve our testing of add_patch_to_bug by having
-        MockBugzilla log.  This caused me to tighten a bunch of tests and
-        notice that one of our tests wasn't being run.
-
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/postdiffforrevert.py:
-
-2010-04-06  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Turns out commit_info.committer() can be None
-        https://bugs.webkit.org/show_bug.cgi?id=37106
-
-        When the committer isn't in committers.py, the committer() property on
-        commit_info can be None.  We need to handle that case gracefully.
-
-        * Scripts/webkitpy/common/checkout/commitinfo.py:
-        * Scripts/webkitpy/tool/bot/sheriff.py:
-        * Scripts/webkitpy/tool/bot/sheriff_unittest.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-
-2010-04-06  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] [Symbian] Build fix for Dumprendertree if Qt printing is not supported
-        https://bugs.webkit.org/show_bug.cgi?id=37082
-
-        Use the QT_NO_PRINTER guard to flag QPrinter dependent code.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::dryRunPrint):
-
-2010-04-05  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        SheriffBot should force_build builders that are idle and have failed exactly once
-        https://bugs.webkit.org/show_bug.cgi?id=37059
-
-        We can get into a deadlocked state where the commit-queue is stopped
-        because the builders are red but the SheriffBot hasn't taken action
-        because the builder has failed only once.  The SheriffBot should force
-        build idle builders that have failed exactly once to either turn the
-        tree green again (if the test was flaky) or trigger the "failed twice"
-        remedies (IRC and bug posts).
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-        * Scripts/webkitpy/tool/bot/sheriff.py:
-        * Scripts/webkitpy/tool/bot/sheriff_unittest.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-04-05  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Fixed check-webkit-style issue where the script was prematurely
-        exiting when encountering deleted files in patches.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37122
-
-        * Scripts/webkitpy/style/checker.py:
-          - Changed non-existent file message from ERROR to WARN.
-          - StyleChecker.check_file() no longer raises an exception when
-            a file is not found.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Updated unit tests as necessary.
-
-2010-04-05  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        SheriffBot should include blamelist when posting to bugs
-        https://bugs.webkit.org/show_bug.cgi?id=37113
-
-        When posting on bugs, we should include the full list of SVN revisions
-        that caused the regression to folks have a better sense of whether they
-        are to blame.
-
-        * Scripts/webkitpy/tool/bot/sheriff.py:
-        * Scripts/webkitpy/tool/bot/sheriff_unittest.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot_unittest.py:
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-04-05  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Unreviewed after discussion with Adam, Darin, and Eric.
-
-        Deleted the auto-install directory since it is no longer needed in
-        source control (it is auto-generated).
-
-        Also added webkitpy/thirdparty/autoinstalled to webkitpy/thirdparty's
-        svn:ignore property.
-
-        * Scripts/webkitpy/thirdparty/autoinstalled: Removed.
-
-2010-04-05  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Adele Peterson.
-
-        Test case for <http://webkit.org/b/37115> / <rdar://problem/7829331>.
-        REGRESSION(r56989): Crash in Mail in WebCore::Position::isCandidate when deleting block using block deletion UI
-
-        Add a JavaScript hook in DRT to call through to WebView's -setEditable:.  This is required in order to reproduce
-        the crash.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setWebViewEditableCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setWebViewEditable):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setWebViewEditable):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setWebViewEditable):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setWebViewEditable):
-        (LayoutTestController::layerTreeAsText):
-
-2010-04-05  Darin Adler  <darin@apple.com>
-
-        Ignore more files the Python tools strew about the working directory.
-
-        * Scripts/webkitpy: Added property svn:ignore.
-        * Scripts/webkitpy/common: Added property svn:ignore.
-        * Scripts/webkitpy/common/checkout: Added property svn:ignore.
-        * Scripts/webkitpy/common/config: Added property svn:ignore.
-        * Scripts/webkitpy/common/net: Added property svn:ignore.
-        * Scripts/webkitpy/common/thread: Added property svn:ignore.
-        * Scripts/webkitpy/python24: Added property svn:ignore.
-        * Scripts/webkitpy/thirdparty/autoinstalled: Modified property svn:ignore.
-        * Scripts/webkitpy/tool/bot: Added property svn:ignore.
-
-2010-04-05  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Add Vitaly Repeshko as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-04-05  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Update kenne's IRC nick to his registered nick.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-04-05  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        assorted helper functions and cleanup of git utilities
-        https://bugs.webkit.org/show_bug.cgi?id=37103
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-        No code currently uses the optional dry_run argument. So removing it.
-        Change all uses of "trunk" to read the correct value out of the git config.
-        Made the dcommit call actually get called when dry_run==true.
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-        * Scripts/webkitpy/common/net/credentials.py:
-        Move the git config call into scm.
-        * Scripts/webkitpy/common/net/credentials_unittest.py:
-        * Scripts/webkitpy/common/system/executive.py:
-        If return_exit_code==true, don't error out, just return the exit_code.
-
-2010-04-05  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        prepare-ChangeLog should take a merge-base for which git branch to diff against.
-        https://bugs.webkit.org/show_bug.cgi?id=36394
-
-        * Scripts/prepare-ChangeLog:
-
-2010-04-05  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Removed the PatchStyleErrorHandler class and incorporated its
-        functionality into the DefaultStyleErrorHandler class.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37067
-
-        * Scripts/webkitpy/style/checker.py:
-          - In the StyleChecker class:
-            - Added a line_number parameter to the check_file() method.
-            - Renamed the handle_style_error parameter to
-              mock_handle_style_error to be consistent with the other mock_*
-              parameter names.
-            - Added a mock_check_file parameter to the check_patch() method
-              to facilitate unit testing the changes in this patch.
-            - Rewrote the check_patch() method with the patch-parsing logic
-              taken from the PatchStyleErrorHandler class.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Added a StyleCheckerCheckFileBase class and sub-classed the
-            existing StyleCheckerCheckFileTest class from it.
-          - Added a StyleCheckerCheckPatchTest class to unit-test the
-            rewritten check_patch() method.
-          - Removed the vestigial __main__ code at the bottom of the file.
-            This is left over from when check-webkit-style was implemented
-            as a module and a wrapper module.
-
-        * Scripts/webkitpy/style/error_handlers.py:
-          - Added an optional line_numbers parameter to the
-            DefaultStyleErrorHandler class constructor and adjusted the
-            __call__() method as necessary.
-          - Removed the PatchStyleErrorHandler class.
-
-        * Scripts/webkitpy/style/error_handlers_unittest.py:
-          - Removed the PatchStyleErrorHandlerTest class which unit-tested
-            the PatchStyleErrorHandler class which is being removed in this
-            patch.
-          - Added a test_line_numbers() test method to the
-            DefaultStyleErrorHandlerTest class to test use of the
-            DefaultStyleErrorHandler's new line_numbers attribute.
-
-2010-04-05  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        Tighten SheriffBot's flaky test detector
-        https://bugs.webkit.org/show_bug.cgi?id=37063
-
-        Instead of just looking for two sequential red builds, look for two
-        sequential failures of the same test.  This should reduce sheriffbot
-        false positive substantially.
-
-        I'm landing this change unreviewed because I've noticed SheriffBot
-        triggering a lot more false positives now that we've expanded the set
-        of core builders.  I've tried to take Eric's comments on Bug 37063 into
-        account.  I'm happy to iterate on this patch tomorrow once Eric wakes
-        up.
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot_unittest.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-
-2010-04-04  John Gregg  <johnnyg@google.com>
-
-        Unreviewed, add myself to the committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-04-04  Robert Hogan  <robert@webkit.org>
-
-        Unreviewed, add myself to the committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-04-04  Dumitru Daniliuc  <dumi@chromium.org>
-
-        Unreviewed, adding my IRC nickname to committers.py
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-04-04  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Refactored check-webkit-style's option-parsing code.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37064
-
-        * Scripts/check-webkit-style:
-          - Moved the "WebKit checkout not found" check from
-            ArgumentParser.parse() to the calling code.
-          - Moved the --git-commit argument validation from the calling
-            code to ArgumentParser.parse().
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Updated a unit test as necessary.
-
-        * Scripts/webkitpy/style/optparser.py:
-          - Renamed ArgumentParser._exit_with_help() to _parse_error()
-            and made its error_message parameter required.
-          - Removed the found_checkout parameter from ArgumentParser.parse().
-          - Removed the "WebKit checkout not found" check and moved it
-            to the calling code.
-          - Added --git-commit argument checking.
-
-        * Scripts/webkitpy/style/optparser_unittest.py:
-          - Adjusted the import statements to be fully qualified.
-          - Changed the ArgumentParserTest class to inherit from
-            LoggingTestCase, and updated the class as necessary.
-          - Added a unit-test for the --git-commit validation.
-          - Added unit tests for the --git-diff and --git-since variants
-            of --git-commit.
-
-2010-04-03  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        The check-webkit-style script now logs an ERROR and exits when
-        encountering a file path that does not exist.  Previously, it failed
-        silently on such paths.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36957
-
-        * Scripts/webkitpy/common/system/logtesting.py:
-          - Added a FIXME to rename the LoggingTestCase class to
-            LoggingTestCaseBase.
-
-        * Scripts/webkitpy/style/checker.py:
-          - In the StyleChecker.check_file() method:
-            - Added a mock_os_path_exists parameter.
-            - Renamed the process_file parameter to mock_process_file.
-            - Added logic to log an error and exist if the given path does
-              not exist.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Refactored the StyleCheckerCheckFileTest class slightly to
-            inherit from LoggingTestCase.
-          - Added a test method to unit-test the case of a file that
-            does not exist.
-          - Adjusted the other test methods as necessary.
-
-2010-04-03  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add Tiger Bot to the list of "core builders" (builders which block the commit-queue when red)
-        https://bugs.webkit.org/show_bug.cgi?id=33289
-
-        Add Tiger and SnowLeopard Tests to the core builders.  This is a bit of
-        an experiment now that the bots are green.  Hopefully we can keep them
-        on the list and have the tree stay greener.
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-
-2010-04-02  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        Have Eric and Adam watch the SheriffBot
-        https://bugs.webkit.org/show_bug.cgi?id=37054
-
-        * Scripts/webkitpy/tool/bot/sheriff.py:
-        * Scripts/webkitpy/tool/bot/sheriff_unittest.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-
-2010-04-02  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        commit-queue should ignore builders when landing rollouts
-        https://bugs.webkit.org/show_bug.cgi?id=37051
-
-        When we moved the "builders are red" check into the master process, we
-        forgot about rollouts.  I thought we had a test covering this case, but
-        looking at the test, it was a bit too loose.  I added a new test and
-        introduced some new logging technology into MockTool to make the test
-        tighter.
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-04-02  David Levin  <levin@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        sherrifbot should ensure that the rollout reason doesn't start with - (and fix webkit-patch upload).
-        https://bugs.webkit.org/show_bug.cgi?id=37030
-
-        * Scripts/webkitpy/tool/bot/sheriff.py: Ensure that the rollout reason doesn't
-          start with -.
-        * Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py: A test with a rollout
-          reason which starts with -.
-        * Scripts/webkitpy/tool/steps/createbug.py: Fix webkit-patch upload.
-
-2010-04-02  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Unreviewed.
-
-        Fixed check-webkit-style to recognize the short form of the
-        --verbose option, as stated in --help.
-
-        * Scripts/check-webkit-style:
-          - Tweaked one line.
-
-2010-04-02  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix for DumpRenderTree after addition of layerTreeAsText.
-
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::layerTreeAsText):
-
-2010-04-02  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Eric Seidel.
-
-        Accept XHTML-MP content type as XHTML content
-        https://bugs.webkit.org/show_bug.cgi?id=34262
-
-        Register xhtmlmp file extension as the new type
-        for XHTML-MP test content.
-
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitpy/layout_tests/layout_package/test_files.py:
-        * Scripts/webkitpy/layout_tests/port/lighttpd.conf:
-
-2010-04-02  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        create-rollout doesn't fill out ChangeLog
-        https://bugs.webkit.org/show_bug.cgi?id=37010
-
-        The contract between apply_reverse_diff and PrepareChangeLogForRevert
-        was unclear.  I broke filling out the ChangeLog during rollout earlier
-        when I changed apply_reverse_diff to revert the ChangeLogs because
-        PrepareChangeLogForRevert thought that it was supposed to do that.
-        I've now taught PrepareChangeLogsForRevert the new contract.
-
-        It's unclear to me how to test this change because it's essentially an
-        integration issue that requires the file system.  At some point we
-        should think about a testing strategy for integration.  As the system
-        becomes larger, we're running into more of these issues.
-
-        * Scripts/webkitpy/common/checkout/api.py:
-        * Scripts/webkitpy/tool/steps/preparechangelogforrevert.py:
-
-2010-04-02  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add cr-win-ews to QueueStatusServer
-        https://bugs.webkit.org/show_bug.cgi?id=37004
-
-        * QueueStatusServer/model/queues.py:
-        * QueueStatusServer/templates/dashboard.html:
-        * QueueStatusServer/templates/statusbubble.html:
-
-2010-04-02  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Unit-test networktransaction.py's log messages, and add a base
-        class to make unit-testing log messages even easier.
-        
-        https://bugs.webkit.org/show_bug.cgi?id=36958
-
-        The purpose of this patch is also to provide a mini-tutorial on
-        how to unit-test Python logging.py messages.
-
-        * Scripts/webkitpy/common/net/networktransaction_unittest.py:
-          - Unit-tested the log messages in test_retry().
-
-        * Scripts/webkitpy/common/system/logtesting.py:
-          - Adjusted the LogTesting class by moving the code that clears
-            the array of log messages into a finally block.  This prevents
-            redundant AssertionErrors from getting rendered to the screen
-            while running unit tests.
-          - Added a LoggingTestCase class so the setUp() and tearDown()
-            methods do not need to be implemented in order to test logging.
-            Rather, TestCase classes can simply inherit from this class.
-
-2010-04-02  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Re-wrote check-webkit-style's argument parsing code to use
-        Python's optparser module and more uniform error-handling logic.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34676
-
-        * Scripts/webkitpy/style/optparser.py:
-          - Removed "option help" from check-webkit-style's usage string
-            since that is provided separately by the OptionParser class.
-          - Also changed the usage string from a function to a constant
-            string _USAGE.
-          - Added an _EPILOG string which renders after OptionParser's
-            usage string and option help.
-          - In the ArgumentParser class:
-            - Changed the constructor's stderr_write parameter to a
-              mock_stderr since the OptionParser accepts a sys.stderr
-              substitute rather than a sys.stderr.write substitute.
-            - Changed the constructor to set a _parser data attribute with
-              an OptionParser instance.
-            - Added a _create_option_parser() method which instantiates
-              the OptionParser.
-            - Updated _exit_with_help() to interact with the OptionParser's
-              help method.
-            - Updated the parse() method as necessary.  Also changed the
-              raising of ValueErrors to calls to _exit_with_help().
-
-        * Scripts/webkitpy/style/optparser_unittest.py:
-          - Removed the CreateUsageTest class since the create_usage method
-            was replaced by a constant string.
-          - Added a _MockStdErr class to the ArgumentParserTest class.
-          - Updated the unit tests as necessary.
-
-
-2010-04-02  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        The master commit-queue process should take responsibility for checking that the builders are green
-        https://bugs.webkit.org/show_bug.cgi?id=37009
-
-        We had a failure where the child process noticed that the builders were
-        red.  We've always had this race condition, but the new optimistic
-        design made it easier to trigger.
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-
-2010-04-02  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Tweak rollout changelog to pass ValidateReviewer check
-        https://bugs.webkit.org/show_bug.cgi?id=37019
-
-        We need to use the magic word "unreviewed" to make the commit-queue
-        happy when landing rollouts.
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-
-2010-04-02  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Unreviewed.
-
-        Removed duplicate ChangeLog entry.
-
-2010-04-02  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Rubber-stamped by Eric Seidel.
-
-        To the Python 2.4 error message, added a link to the wiki page
-        that contains instructions on how to upgrade.
-
-        * Scripts/test-webkitpy:
-          - Eliminated a use of the ternary operator in configure_logging()
-            to let the version warning display in case of Python 2.4.
-
-        * Scripts/webkitpy/python24/versioning.py:
-          - Added this link to the error text:
-            http://trac.webkit.org/wiki/PythonGuidelines
-
-        * Scripts/webkitpy/python24/versioning_unittest.py:
-          - Updated unit test text.
-
-2010-04-02  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Record the IRC nick of folks who request rollouts
-        https://bugs.webkit.org/show_bug.cgi?id=36999
-
-        * Scripts/webkitpy/common/net/irc/ircbot.py:
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        * Scripts/webkitpy/tool/bot/sheriffircbot.py:
-        * Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py:
-
-2010-04-01  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add cr-win-ews
-        https://bugs.webkit.org/show_bug.cgi?id=36974
-
-        Adds support for an Early Warning System for Chromium on Linux.  The
-        interface to the Chromium port is the same on every platform, so we
-        don't need to create a new Port object for this queue.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-
-2010-04-01  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Using a failure exit code when failing to load a required import
-        https://bugs.webkit.org/show_bug.cgi?id=37000
-
-        Well spotted by Mark Rowe.
-
-        * Scripts/webkitpy/common/system/user.py:
-
-2010-04-01  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Rewrote the revision (r56942) to disable the 79 character line
-        length limit Python/PEP8 style check.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33639#c39
-
-        This rewrite puts the disabling not in the PythonProcessor but
-        in the calling code's default filter rule configuration.  This
-        allows the user to check line-length style from the command-line
-        if desired.
-
-        * Scripts/webkitpy/style/checker.py:
-          - Added "-pep8/E501" to the _BASE_FILTER_RULES configuration
-            variable to disable the line-length check.
-          - Added "-pep8/E501" to the list of recognized style categories
-            to permit the category to be checked from the command line.
-
-        * Scripts/webkitpy/style/processors/python.py:
-          - Reverted r56942: http://trac.webkit.org/changeset/56942
-
-2010-04-01  Kinuko Yasuda  <kinuko@chromium.org>
-
-        Reviewed by Dmitry Titov.
-
-        Add FileThread for async file operation support in FileReader and FileWriter
-        https://bugs.webkit.org/show_bug.cgi?id=36896
-
-        Add options to enable FILE_READER and FILE_WRITER support.
-
-        * Scripts/build-webkit:
-
-2010-04-01  Kent Tamura  <tkent@chromium.org>
-
-        Unreviewed. Add missing license header.
-
-        * DumpRenderTree/chromium/TestShellMac.mm:
-
-2010-04-01  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Improve the error handling in rollout a bit
-        https://bugs.webkit.org/show_bug.cgi?id=36995
-
-        This patch does a few things to make the error handling in rollout a
-        bit more robust.
-
-        * Scripts/webkitpy/common/checkout/api.py:
-            The old logic here was wrong.  We don't want to resolve the
-            ChangeLogs (that would remove the old ChangeLog entry).  Instead,
-            we want to revert the ChangeLogs so we can fill them with the new
-            message.
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-            Update test expectations because we're using a different mock object.
-        * Scripts/webkitpy/tool/commands/download.py:
-            - Added an update command to make updating from the SheriffBot more
-              robust.
-            - Now that we have CommitInfo, we can automatically CC the
-              responsible parties on the bug we create.
-            - Re-ordered the steps in create-rollout.  Our original thinking
-              was that we always wanted to create the bug, but that's not
-              really true given how things appear to be playing out.  If we
-              fail to apply the reverse diff, we don't want to create the bug.
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-            - Use the new, more robust update command.
-        * Scripts/webkitpy/tool/steps/createbug.py:
-            Allow commands to pre-load who they want to be CCed on a new bug.
-
-2010-04-01  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Add TestShell and WebViewHost class, main(), and so on
-        https://bugs.webkit.org/show_bug.cgi?id=36814
-
-        This change introduces:
-        - WebViewHost class
-          It's an implementation of some delegates required by Chromium
-          WebKit API, and manages painting of a WebView. It's base on
-          src/webkit/tools/test_shell/test_webview_delegate.{cc,h} of
-          Chromium rev.40492.
-        - TestShell class
-          The TestShell instance holds global states of DumpRenderTree process.
-          Unlike TestShell class of Chromium test_shell, TestShell instance is
-          created just once.
-        - DumpRenderTree.cpp
-          The program entry.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp: Added.
-        * DumpRenderTree/chromium/TestShell.cpp: Added.
-        * DumpRenderTree/chromium/TestShell.h: Added.
-        * DumpRenderTree/chromium/TestShellMac.mm: Added.
-        * DumpRenderTree/chromium/WebViewHost.cpp: Added.
-        * DumpRenderTree/chromium/WebViewHost.h: Added.
-        * DumpRenderTree/chromium/config.h: Added.
-
-2010-04-01  David Levin  <levin@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        sheriffbot rollout should verify that the svn revision is a number.
-        https://bugs.webkit.org/show_bug.cgi?id=37001
-
-        * Scripts/webkitpy/common/net/bugzilla.py: Allow for the message to be None.
-        * Scripts/webkitpy/tool/bot/sheriff.py: Did verification that svn revision
-         is a number. Fixed the imports (since the files uses ScriptError and log)
-         and a typo.
-        * Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py: Added a test to verify
-         the behavior.
-
-2010-04-01  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Print an error message for readline bogosity in MacPorts
-        https://bugs.webkit.org/show_bug.cgi?id=36979
-
-        * Scripts/webkitpy/common/system/user.py:
-
-2010-04-01  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Don't pass --non-interactive to create-rollout
-        https://bugs.webkit.org/show_bug.cgi?id=36989
-
-        It turns out you can't pass --non-interactive to create-rollout.  Also,
-        improve our error reporting slighly to catch the case where we error
-        out after creating the rollout bug.
-
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        * Scripts/webkitpy/tool/bot/sheriff.py:
-
-2010-04-01  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        webkit-patch can incorrectly think the working directory is modified
-        https://bugs.webkit.org/show_bug.cgi?id=36985
-
-        If a file's modification time is modified, but the contents are not,
-        then diff-index will think the file has been modified unless you do
-        some crazy update-index call. Instead, call diff --name-only, which
-        has the index update builtin.
-
-        Tried to write a test, but could not reproduce this in a unittest.
-        To test manually:
-            touch file-in-repo
-            git diff-index HEAD
-            git diff HEAD --name-only
-
-        The diff-index call incorrectly shows file-in-repo as modified.
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-
-2010-04-01  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add rollout command to sheriffbot
-        https://bugs.webkit.org/show_bug.cgi?id=36986
-
-        This IRC command creates a new bug an attaches a rollout patch.  To
-        actually commit the rollout, a committer needs to mark the patch
-        commit-queue+ in bugs.webkit.org.
-
-        Also, factored out some of the logic from the queue into a separate
-        object for easier testing.
-
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        * Scripts/webkitpy/tool/bot/sheriff.py: Added.
-        * Scripts/webkitpy/tool/bot/sheriff_unittest.py: Added.
-        * Scripts/webkitpy/tool/bot/sheriffircbot.py:
-        * Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot_unittest.py:
-
-2010-04-01  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, only ignoring chatty style errors.
-
-        check-webkit-style: WebKit needs a python style checker
-        https://bugs.webkit.org/show_bug.cgi?id=33639
-
-        Remove the 79 char line limit by ignoring 
-        pep8/E501.  Because we have our own report_error
-        implementation we have to ignore E501 by hand
-        instead of passing --ignore=E501.
-
-        Right now over 1400 lines of our existing python
-        fail E501 so this rule just generates needless noise.
-        The rest of WebKit has no wrapping rule so it makes
-        little sense for our Python to differ here.
-
-        * Scripts/webkitpy/style/processors/python.py:
-
-2010-04-01  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Add cmarrin's IRC nickname.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-04-01  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        EWS spins hot when unable to build
-        https://bugs.webkit.org/show_bug.cgi?id=36981
-
-        The problem is that the queue engine things we have more work to do,
-        but the bot isn't actually able to do anything.  After this change, we
-        back off the usual amount.
-
-        * Scripts/webkitpy/tool/bot/queueengine.py:
-        * Scripts/webkitpy/tool/bot/queueengine_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-
-2010-04-01  Chris Marrin  <cmarrin@apple.com>
-
-        Reviewed by Simon Fraser.
-
-        Added layerTreeAsText function to DRT (for Mac)
-        https://bugs.webkit.org/show_bug.cgi?id=36782
-
-        This is the DRT side. It exposes the call to JavaScript
-        through the LayoutTestController.
-
-        * DumpRenderTree/LayoutTestController.cpp:Platform independent JavaScript shim
-        (layerTreeAsTextCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:Mac specific plumbing to WebKit
-        (LayoutTestController::layerTreeAsText):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:Windows specific plumbing to WebKit
-        (LayoutTestController::layerTreeAsText):
-
-2010-04-01  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix after addition of JavaScriptCore/wtf/text directory.
-
-        * wx/build/settings.py:
-
-2010-04-01  Jian Li  <jianli@chromium.org>
-
-        Rubber-stamped by David Levin.
-
-        Add myself to the reviewers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-04-01  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        Turns out the Chromium Windows bots don't have pdevenv installed.
-
-        * Scripts/webkitdirs.pm:
-
-2010-04-01  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Let Chromium Windows build with Visual Studio Express
-        https://bugs.webkit.org/show_bug.cgi?id=36919
-
-        This is horrible, horrible copy/paste code, but that seems to be the
-        way of webkitdirs.pm.  :(
-
-        Someone needs to go through an cleanup this code, but I don't have the
-        heart to do it in this patch.
-
-        * Scripts/webkitdirs.pm:
-
-2010-04-01  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Reviewed by Yury Semikhatsky.
-
-        Add myself to the committers list.
-        https://bugs.webkit.org/show_bug.cgi?id=36953
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-04-01  Eric Seidel  <eric@webkit.org>
-
-        Rubber-stamped by Adam Barth.
-
-        Add Snow Leopard Release bot to the list of "core builders" (builders which stop the commit-queue when they turn red)
-        https://bugs.webkit.org/show_bug.cgi?id=33292
-
-        Just adding the "Build" builder for now.
-        We'll add the "Test" builders when the tests
-        are less flaky.
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot_unittest.py:
-
-2010-04-01  Yury Semikhatsky  <yurys@chromium.org>
-
-        Reviewed by David Levin.
-
-        Add myself to the reviewers list.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36935
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-03-31  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Dave Levin.
-
-        Added Python style checking to check-webkit-style using
-        the third-party pep8 module (via autoinstall).
-
-        https://bugs.webkit.org/show_bug.cgi?id=33639
-
-        * Scripts/webkitpy/style/checker.py:
-          - Added PYTHON to FileType.
-          - Updated ProcessorDispatcher to return a PythonProcessor
-            for *.py files.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Updated the ProcessorDispatcher unit tests for *.py files.
-
-        * Scripts/webkitpy/style/processors/python.py: Added.
-          - Added PythonProcessor class.
-
-        * Scripts/webkitpy/style/processors/python_unittest.py: Added.
-          - Added PythonProcessor unit tests.
-
-        * Scripts/webkitpy/style/processors/python_unittest_input.py: Added.
-          - Added a sample Python file to test the PythonProcessor.process()
-            code path (since pep8 accepts a file path).
-
-        * Scripts/webkitpy/style/unittests.py:
-          - Updated the style unit test file to import python_unittest.py.
-
-        * Scripts/webkitpy/style_references.py:
-          - Adjusted style references to import pep8.
-
-2010-03-31  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Dave Levin.
-
-        Rewrote autoinstall.py to support unzipping *.zip files after
-        download, unzipping and extracting *.tar.gz files after download,
-        and copying installed files to a given destination directory.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35163
-
-        These changes will let us autoinstall pep8.py from the web and put
-        our third-party autoinstalled code in an explicit directory like
-        webkitpy/thirdparty/autoinstalled. These changes should also speed
-        up the execution of autoinstalled *.zip packages slightly since
-        *.pyc files cannot be generated when importing from zipped
-        packages using the current autoinstall.
-
-        * Scripts/test-webkitpy:
-          - Addressed the FIXME to enable auto-install logging once
-            autoinstall was rewritten not to log as verbosely.
-
-        * Scripts/webkitpy/common/net/bugzilla.py:
-          - Updated mechanize import statement.
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-          - Updated mechanize import statement.
-
-        * Scripts/webkitpy/common/net/irc/ircbot.py:
-          - Updated ircbot and irclib import statements.
-
-        * Scripts/webkitpy/common/net/networktransaction.py:
-          - Updated mechanize import statement.
-
-        * Scripts/webkitpy/common/net/networktransaction_unittest.py:
-          - Updated mechanize import statement.
-
-        * Scripts/webkitpy/common/net/statusserver.py:
-          - Updated mechanize import statement.
-
-        * Scripts/webkitpy/common/system/autoinstall.py: Added.
-          - Added AutoInstaller class.
-          - Added sample/testing usage to the __main__ block.
-
-        * Scripts/webkitpy/thirdparty/__init__.py:
-          - Updated the autoinstall lines to use the new autoinstall methods.
-          - Added pep8.py to the list of auto-installed packages.
-          - Added a README file to the target autoinstallation directory
-            so users know that the directory is safe to delete.
-
-        * Scripts/webkitpy/thirdparty/autoinstall.py: Removed.
-          - This is replaced by the rewritten autoinstall
-            webkitpy/common/system/autoinstall.py.
-
-        * Scripts/webkitpy/thirdparty/autoinstalled/__init__.py: Removed.
-          - The target autoinstallation directory is now auto-generated.
-
-2010-03-31  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Tweak webkitpy's logtesting.LogTesting class to get more mileage out
-        of our unit tests that test log messages.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36886
-
-        This patch adds to the LogTesting class's tearDown() method a line
-        asserting that the array of remaining log messages is empty.  This
-        ensures that no extra log messages are getting logged that the caller
-        might not be aware of or may have forgotten to check for.
-
-        * Scripts/webkitpy/common/system/logtesting.py:
-          - Modified the tearDown() method as described above.
-          - Also modified the assertMessages() method to clear the array
-            of log messages after asserting.
-
-2010-03-31  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Added support for a --verbose-logging flag to test-webkitpy.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36429
-
-        Verbose logging is useful for debugging test-webkitpy code that
-        runs before the actual unit tests -- things like autoinstalling and
-        unit-test auto-detection logic.  This is different from verbose
-        logging of the unit tests themselves (which corresponds to the
-        unittest module's --verbose flag).
-
-        * Scripts/test-webkitpy:
-          - In the configure_logging() method--
-            - Added an is_verbose_logging parameter that sets the logging
-              level to logging.DEBUG instead of logging.INFO.
-            - Changed the method to throttle the logging level on the
-              root logger's handler instead of directly on the root logger
-              itself.
-            - Enabled logging of the autoinstall module when the flag is set.
-
-        * Scripts/webkitpy/thirdparty/autoinstalled/__init__.py:
-          - Added a work-around for a bug in Python 2.6's logging module
-            that was discovered while working on this patch.
-
-2010-03-31  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Enabled Python's logging module for webkit-patch, and replaced
-        deprecated_logging with Python logging in networktransaction.py.
-        This eliminates some spurious output when running test-webkitpy.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36725
-
-        * Scripts/webkit-patch:
-          - Replaced the configure_logging() function with a call to
-            the new logutils.configure_logging() function.
-
-        * Scripts/webkitpy/common/net/networktransaction.py:
-          - Replaced the use of deprecated_logging with Python logging.
-
-        * Scripts/webkitpy/common/system/logutils.py:
-          - Added _default_handlers() which creates the default logging
-            handler for webkitpy.
-          - Added configure_logging() which configures default logging
-            for webkitpy.
-
-        * Scripts/webkitpy/common/system/logutils_unittest.py:
-          - Added unit tests for logutils.configure_logging().
-
-        * Scripts/webkitpy/style/checker.py:
-          - Refactored check-webkit-style's configure_logging() method
-            to call the new logutils.configure_logging().
-
-        * Scripts/webkitpy/style_references.py:
-          - Updated references as necessary.
-
-2010-03-31  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        webkit-patch land fails if not run from the root directory
-        https://bugs.webkit.org/show_bug.cgi?id=35822
-
-        The root of the problem was that ChangeLog.__init__ expects a path
-        relative to the current working directory, and SCM expects to
-        return paths relative to the SCM root.  Fix it by converting from
-        SCM-relative to absolute paths in Checkout.modified_changelogs
-
-        * Scripts/webkitpy/common/checkout/api.py:
-        * Scripts/webkitpy/common/checkout/api_unittest.py:
-
-2010-03-31  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add more tests for webkitpy.common.checkout
-        https://bugs.webkit.org/show_bug.cgi?id=36926
-
-        We don't have a great way of testing checkout, sadly.
-
-        * Scripts/webkitpy/common/checkout/api_unittest.py:
-
-2010-03-31  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        REGRESSION: EWS crashes on failure
-        https://bugs.webkit.org/show_bug.cgi?id=36924
-
-        Turns out we need to pass one more argument.  My test is kind of lame,
-        but at least it's there.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-
-2010-03-31  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Unreviewed.
-
-        Fixed typo in WebKitTools/ChangeLog: opsys -> ospath.
-
-2010-03-31  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Make the EWS go faster by being optimistic
-        https://bugs.webkit.org/show_bug.cgi?id=36916
-
-        Have the EWS be optimistic that a patch will correctly build.  This
-        should speed up the common case by not requiring two builds for every
-        patch.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-
-2010-03-31  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add the ability to restart sheriffbot from IRC
-        https://bugs.webkit.org/show_bug.cgi?id=36909
-
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        * Scripts/webkitpy/tool/bot/queueengine.py:
-        * Scripts/webkitpy/tool/bot/sheriffircbot.py:
-        * Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py:
-
-2010-03-31  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add win-ews to QueueStatusServer
-        https://bugs.webkit.org/show_bug.cgi?id=36876
-
-        The win-ews is still experimental, but it seems to be more or less
-        running.  We should show its results to the people.
-
-        * QueueStatusServer/model/queues.py:
-        * QueueStatusServer/templates/dashboard.html:
-        * QueueStatusServer/templates/statusbubble.html:
-
-2010-03-30  Victor Wang  <victorw@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Update rebaseline tool to check the release image diff binary and
-        fallback to debug if the release version does not exist.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36245
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-
-2010-03-31  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Teach buildbot.py how to parse builder activity from /one_box_per_builder
-        https://bugs.webkit.org/show_bug.cgi?id=36898
-
-        I also removed some obsolete FIXMEs and
-        refactored one_box_per_builder parsing into multiple
-        methods for easier reading.
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot_unittest.py:
-
-2010-03-31  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Fix logging in new-run-webkit-tests so that we don't report IMAGE
-        expected failures as unexpected passes when we run with pixel tests
-        disabled.
-
-        This change splits some of the logic embedded into the TestExpectations
-        classes out into separate pure functions (result_was_expected,
-        remove_image_failures) to make them easier to test. This also adds
-        a parameter to matches_an_expected_result() to indicate whether or
-        not pixel test results should be included in the expectations.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36771
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations_test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-03-31  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        In webkitpy, refactored two calls to os.path.relpath() replacements
-        to use a common method.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36891
-
-        * Scripts/webkitpy/common/net/bugzilla.py:
-          - Replaced the relpath implementation with a call to
-            webkitpy.common.system.ospath.relpath().
-
-        * Scripts/webkitpy/common/system/ospath.py: Added.
-          - Moved the relpath() implementation from style/main.py.
-
-        * Scripts/webkitpy/common/system/ospath_unittest.py: Added.
-          - Moved the relpath() unit tests from style/main_unittest.py.
-
-        * Scripts/webkitpy/style/main.py:
-          - Replaced the relpath implementation with a call to
-            webkitpy.common.system.ospath.relpath().
-
-        * Scripts/webkitpy/style/main_unittest.py:
-          - Moved the relpath unit tests to ospath_unittest.py.
-
-2010-03-31  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add a Builder.force_build method
-        https://bugs.webkit.org/show_bug.cgi?id=36875
-
-        We plan to eventually use this in SheriffBot to break deadlocks created
-        by flaky tests.
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-
-2010-03-31  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        webkit-patch reads wrong bug url from unified diff context
-        https://bugs.webkit.org/show_bug.cgi?id=36477
-
-        Instead of trying to figure out the bug_id from the diff, we should
-        just get the information from the Checkout object, which understands
-        these concepts.
-
-        * Scripts/webkitpy/common/checkout/api.py:
-        * Scripts/webkitpy/common/checkout/commitinfo.py:
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/upload.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-03-31  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        webkit-patch commit-queue should land patches optimistically
-        https://bugs.webkit.org/show_bug.cgi?id=34187
-
-        This patch adds an optimistic path to commit-queue and a "fail twice"
-        requirement for rejecting patches.  That means we'll land good patches
-        faster (via the optmistic first run) and we'll reject many fewer
-        patches due to flaky tests.
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-
-2010-03-31  Diego Gonzalez  <diego.gonzalez@openbossa.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Custom user agent for user agent switcher
-        https://bugs.webkit.org/show_bug.cgi?id=36757
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::showUserAgentDialog):
-
-2010-03-31  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        path to committers.py in commit-queue rejection message is wrong
-        https://bugs.webkit.org/show_bug.cgi?id=36865
-
-        This fix would have only been 3 lines long if we had
-        1. Had access to an SCM object or tool to give us the checkout root
-        2. Been able to depend on Python 2.6
-        Instead I've added a bunch of hack code, but at least now
-        we should never have to update this string again as the location
-        of committers.py is fully dynamically discovered. :p
-
-        * Scripts/webkitpy/common/net/bugzilla.py:
-        * Scripts/webkitpy/common/net/bugzilla_unittest.py:
-
-2010-03-31  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Unreviewed test fix for r56809.
-
-        webkit-patch what-broke throws exception
-        https://bugs.webkit.org/show_bug.cgi?id=36852
-
-        * Scripts/webkitpy/common/checkout/api_unittest.py:
-
-2010-03-30  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Rubber stamped by Dave Levin.
-
-        Made check-webkit-style less chatty.
-
-        Examples include:
-         - https://bugs.webkit.org/show_bug.cgi?id=36866#c4
-         - https://bugs.webkit.org/show_bug.cgi?id=36472#c9
-
-        * Scripts/webkitpy/style/checker.py:
-          - Changed unrecognized file type log message from info to debug.
-
-2010-03-30  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix after new method added.
-
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::callShouldCloseOnWebView):
-
-2010-03-30  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        webkit-patch what-broke throws exception
-        https://bugs.webkit.org/show_bug.cgi?id=36852
-
-        * Scripts/webkitpy/common/checkout/api.py: Add missing import StringIO.
-        * Scripts/webkitpy/common/checkout/api_unittest.py: Test the function which previously threw and exception.
-
-2010-03-30  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36616
-        Dvorak-Qwerty keyboard layout gives unexpected results in javascript keydown
-
-        https://bugs.webkit.org/show_bug.cgi?id=36797
-        For non-Roman layouts, keydown Event.keyCode is always 0
-
-        * DumpRenderTree/mac/EventSendingController.mm:
-        (-[EventSendingController keyDown:withModifiers:withLocation:]): Generate a correct keyCode
-        for keys used in tests (we used to always pass 0 for 'A').
-
-2010-03-30  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Implement win-ews
-        https://bugs.webkit.org/show_bug.cgi?id=36809
-
-        * Scripts/webkitpy/common/config/ports.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-
-2010-03-30  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Adjusted test-webkitpy to delete all orphaned *.pyc files
-        from webkitpy/ prior to importing any modules from webkitpy.
-        This ensures that no import statements in webkitpy falsely
-        succeed because of leftover *.pyc files.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36599
-
-        * Scripts/test-webkitpy:
-          - Added _clean_pyc_files() to delete orphaned *.pyc files
-            from a directory.
-          - Added _clean_webkitpy_with_test() to call and test
-            _clean_pyc_files().
-          - Moved the "import webkitpy.python24.versioning" statement
-            from the top of the module to the init() method -- immediately
-            after the call to _clean_webkitpy_with_test().
-
-2010-03-30  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        [Chromium-Win] subprocess.call should be called with stdin=open(os.devnull,'r')
-        https://bugs.webkit.org/show_bug.cgi?id=36811
-
-        subproess.Popen() on Python 2.4/Windows with stdout,stdout, but no stdin will fail, because it uses return value of GetStdHandle(STD_INPUT_HANDLE), but DuplicateHandle requires integer, not the handle.
-        We don't need stdin, so use devnull as stdin.
-        Same as https://bugs.webkit.org/show_bug.cgi?id=36586
-
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py: open os.devnull for stdin
-
-2010-03-29  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, build fix only.
-
-        * Scripts/webkitpy/tool/steps/validatereviewer.py: Add missing import.
-
-2010-03-29  Hayato Ito  <hayato@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Remove '_flymake' suffix from base part of file name so that
-        check-webkit-style uses a correct header guard name when it is called from Emacs's flymake.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36573
-
-        * Scripts/webkitpy/style/processors/cpp.py:
-        * Scripts/webkitpy/style/processors/cpp_unittest.py:
-
-2010-03-29  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Get the following test-webkitpy unit test working again:
-        scm_unittest.SVNTest.test_svn_apply().
-
-        https://bugs.webkit.org/show_bug.cgi?id=36696
-
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-          - Add leading spaces to the empty lines of the ChangeLog strings.
-          - Manually set the _reviewer attribute on the Attachment object
-            to get the tests to pass.
-
-2010-03-29  Martin Robinson  <mrobinson@webkit.org>
-
-        Reviewed by Holger Freyther.
-
-        [GTK] suppress (un)desired launcher output that can make layout test to fail with stderr
-        https://bugs.webkit.org/show_bug.cgi?id=36390
-
-        Suppress debugging messages sent to the GLib logger during DRT runs.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (logHandler): Added.
-        (main): Use logHandler as the default GLib log message handler.
-
-2010-03-29  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        sheriff-bot should comment on bugs when builders break
-        https://bugs.webkit.org/show_bug.cgi?id=36786
-
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-         - Add a new _post_blame_comment_to_bug and all it from process_work_item
-         - Move commit-queue logic into _post_rollout_patch to make its api match the other _post commands.
-        * Scripts/webkitpy/tool/commands/sheriffbot_unittest.py:
-         - Test the new _post_blame_comment_to_bug call
-
-2010-03-29  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        sheriff-bot fails to get information about certain builds
-        https://bugs.webkit.org/show_bug.cgi?id=36768
-
-        This seems to be caused by:
-        http://buildbot.net/trac/ticket/753
-        I have no work-around, but for now at least we're logging
-        the error better.  I also added allow_none to our ServerProxy
-        creation in case that fixes things for other versions of python.
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-
-2010-03-29  Victor Wang  <victorw@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Add sign in/out link to TestResults appengine
-
-        Add a link to main menu for sign in/out to this appengine.
-        People signed in with admin privilege could perform
-        actions that are only allowed to admins like deleting files.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36767
-
-        * TestResultServer/handlers/menu.py:
-        * TestResultServer/stylesheets/menu.css:
-        (.sign):
-        * TestResultServer/templates/menu.html:
-
-2010-03-29  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        ValidateReviewer step is draconian and un-tested
-        https://bugs.webkit.org/show_bug.cgi?id=36792
-
-        ValidateReviewer logic was commented out in
-        http://trac.webkit.org/changeset/56744
-        That was a symptom of the fact that validatereviewer.py
-        is too inflexible to be used when real humans are driving webkit-patch.
-        For now we just disable ValidateReviewer when humans are at the keyboard.
-
-        * Scripts/webkitpy/tool/steps/validatereviewer.py:
-         - Only run when in non-interactive mode.
-        * Scripts/webkitpy/tool/steps/validatereviewer_unittest.py: Added.
-         - Test our validation logic to make sure it's sane.
-
-2010-03-29  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Eliminate explicit slash characters from check-webkit-style's
-        _rel_path() method to make its implementation more platform
-        independent.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36759
-
-        * Scripts/webkitpy/style/main.py:
-          - Changed to use os.sep instead of slash_chars "/\\".  This can
-            be done since os.path.abspath() converts slashes to os.sep.
-
-2010-03-29  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Change new-run-webkit-tests to not use more than four threads by
-        default on the mac port until
-        https://bugs.webkit.org/show_bug.cgi?id=36622 is fixed.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36687
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-
-2010-03-29  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Reformat port/mac.py to fit witin 80 columns for PEP-8 compliance.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36691
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-
-2010-03-29  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        new-run-webkit-tests fails java/lc3 on a clean checkout
-        https://bugs.webkit.org/show_bug.cgi?id=36078
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-         - Build the java support files in check_build
-         - Unwrap a line which would still fit under 80col
-
-2010-02-26  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Simon Fraser.
-
-        Add support for Widgets 1.0: View Mode Media Feature
-        https://bugs.webkit.org/show_bug.cgi?id=35446
-
-        Add hooks to the Qt DRT for testing the view mode media feature.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setViewModeMediaFeature):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-03-29  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Update expected results for unit tests.
-
-        * Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot_unittest.py:
-
-2010-03-29  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  I think Eric meant svn_revision.
-
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-
-2010-03-26  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        webkit-patch commit-queue should notice if it breaks builders (and roll out its own changes)
-        https://bugs.webkit.org/show_bug.cgi?id=29311
-
-        Now that we have sheriff-bot watching the tree, it can post
-        rollout patches on behalf of the commit queue.
-
-        * Scripts/webkitpy/common/checkout/commitinfo.py: add responsible_parties()
-        * Scripts/webkitpy/common/checkout/commitinfo_unittest.py: test responsible_parties()
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-         - Break IRC logic out into _post_irc_warning for easier testing.
-         - Add _post_rollout_patch for posting rollout patches to bugzilla.
-        * Scripts/webkitpy/tool/commands/sheriffbot_unittest.py:
-         - Test _rollout_reason
-        * Scripts/webkitpy/tool/grammar.py:
-         - Fix join_with_separators to not add Adam's "oxford comma" for two item lists.
-        * Scripts/webkitpy/tool/grammar_unittest.py:
-         - Test join_with_separators
-
-2010-03-29  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Sheriffbot should actually run commands
-        https://bugs.webkit.org/show_bug.cgi?id=36776
-
-        Some minor changes to Sheriffbot:
-
-        1) We should actually run commands (by giving control back to the
-        command processing object.
-
-        2) Use URLs instead of just numbers to represent SVN revisions (making
-        it easier to folks in IRC ot followup).
-
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        * Scripts/webkitpy/tool/bot/queueengine.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-
-2010-03-26  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Antti Koivisto.
-
-        Renaming of frame flattening LayoutTestController method
-        to setFrameFlatteningEnabled(bool)
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setFrameFlatteningEnabledCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setFrameFlatteningEnabled):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setFrameFlatteningEnabled):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::resetSettings):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setFrameFlatteningEnabled):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setFrameFlatteningEnabled):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setFrameFlatteningEnabled):
-
-2010-03-28  Gustavo Noronha Silva  <gns@gnome.org>
-
-        No review, rolling out r56679.
-        http://trac.webkit.org/changeset/56679
-        https://bugs.webkit.org/show_bug.cgi?id=36454
-
-        Lots of tests broken.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (createWebView):
-
-2010-03-28  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Unreviewed.
-
-        Fixed typo in deprecated_logging_unittest.py, which is masking
-        sys.stderr while running test-webkitpy.
-
-        See also-- https://bugs.webkit.org/show_bug.cgi?id=36725#c3
-
-        * Scripts/webkitpy/common/system/deprecated_logging_unittest.py:
-
-2010-03-28  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Renamed check-webkit-style's --debug flag to --verbose to be more
-        in line with other WebKit scripts.  Also renamed the current
-        --verbose flag to --min-confidence to allow the --debug rename.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36521
-
-        We also renamed the internal "verbose" variables to "confidence" or
-        "min_confidence," as appropriate, to avoid confusion with the
-        --verbose flag, and because the new names are more accurate.
-
-        * Scripts/check-webkit-style:
-          - Renamed is_debug to is_verbose.
-
-        * Scripts/webkitpy/style/checker.py:
-          - Renamed _DEFAULT_VERBOSITY to _DEFAULT_CONFIDENCE.
-          - Renamed "verbosity" parameters to "min_confidence" throughout.
-          - Renamed configure_logging()'s is_debug parameter to is_verbose.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Updated the unit tests as necessary.
-
-        * Scripts/webkitpy/style/error_handlers.py:
-          - Updated the call to StyleCheckerConfiguration.write_style_error().
-
-        * Scripts/webkitpy/style/error_handlers_unittest.py:
-          - Updated the unit tests as necessary.
-
-        * Scripts/webkitpy/style/optparser.py:
-          - Updated the usage string with the new flag names.
-          - Renamed the verbosity parameter to min_confidence throughout.
-          - Renamed the is_debug parameter to is_verbose throughout.
-
-        * Scripts/webkitpy/style/optparser_unittest.py:
-          - Updated the unit tests as necessary.
-
-        * Scripts/webkitpy/style/processors/cpp.py:
-          - Renamed the verbosity parameter to min_confidence throughout.
-
-        * Scripts/webkitpy/style/processors/cpp_unittest.py:
-          - Updated the unit tests as necessary.
-
-2010-03-28  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Unreviewed.
-
-        Added back a line that accidentally got deleted in r56690.
-
-        * Scripts/check-webkit-style:
-
-2010-03-28  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Add to check-webkit-style support for checking directories.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35234
-
-        * Scripts/check-webkit-style:
-          - Replaced the call to check_file() with a call to check_paths().
-
-        * Scripts/webkitpy/style/checker.py:
-          - In the StyleChecker class:
-            - Added a check_paths() method that accepts a list of paths
-              to files and directories.
-            - Added a _check_directory() method that checks the files
-              in a directory.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Added a StyleCheckerCheckPathsTest to unit-test the new
-            check_paths() method.
-
-        * Scripts/webkitpy/style/optparser.py:
-          - Updated the usage string.
-
-2010-03-28  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Changed check-webkit-style to convert paths to paths relative to
-        the checkout root when invoking check-webkit-style with path
-        arguments.  Also added warning messages where appropriate.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35498
-
-        Converting paths to paths relative to the checkout root ensures
-        that style checking will behave as expected (since path-specific
-        rules assume input paths are relative to a source root).
-
-        * Scripts/check-webkit-style:
-          - Added debug logging of whether the current directory was found
-            to be in a WebKit checkout.
-          - Added the found_checkout parameter to the call to parser.parse().
-          - Renamed the files variable to paths.
-          - Added a call to change_directory() prior to checking style.
-
-        * Scripts/webkitpy/style/checker.py:
-          - For StyleChecker.check_file():
-            - Updated the docstring.
-            - Added two log messages.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Updated a call to parser.parse() with the found_checkout parameter.
-
-        * Scripts/webkitpy/style/main.py: Added.
-          - Added a new file so the code in this patch could be unit-tested,
-            as opposed to adding new code to check-webkit-style.
-          - Added the method _rel_path() as a substitute for os.path.relpath(),
-            which is available only in Python 2.6.
-          - Added the method change_directory(), which contains most of the
-            new functionality in this patch.
-
-        * Scripts/webkitpy/style/main_unittest.py: Added.
-          - Added RelPathTest to test main._rel_path().
-          - Added ChangeDirectoryTest to test main.change_directory().
-
-        * Scripts/webkitpy/style/optparser.py:
-          - Updated check-webkit-style's usage string.
-          - For the ArgumentParser.parse() method:
-            - Added a found_checkout parameter.
-            - Renamed filenames to paths.
-            - Added logic so that an error is raised if no paths are passed
-              if found_checkout is False.
-
-        * Scripts/webkitpy/style/optparser_unittest.py:
-          - Updated the ArgumentParser.parse() unit tests to include
-            coverage for the new found_checkout parameter.
-
-        * Scripts/webkitpy/style/unittests.py:
-          - Added an import statement for main_unittest.
-
-        * Scripts/webkitpy/style_references.py:
-          - Renamed SimpleScm to WebKitCheckout.
-          - Added a detect_checkout() function to allow returning None
-            instead of a WebKitCheckout instance if no checkout is found.
-          - Renamed checkout_root to root_path.
-
-2010-03-27  Sergio Villar Senin  <svillar@igalia.com>
-
-        Reviewed by Eric Seidel.
-
-        Print didHandleOnloadEventsForFrame in the callback of
-        onload-event signal comming from frame loader
-
-        [GTK] Improve reporting of frame loader callbacks in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=36454
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webViewOnloadEvent):
-        (createWebView): added connection to signal::onload-event and
-        signal callback
-
-2010-03-27  Sergio Villar Senin  <svillar@igalia.com>
-
-        Reviewed by Eric Seidel.
-
-        Print didCommitLoadForFrame in the callback of signal::load-committed
-
-        [GTK] Improve reporting of frame loader callbacks in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=36454
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webViewLoadCommitted):
-        (createWebView): added connection to sinal::load-committed and
-        signal callback
-
-2010-03-27  Sergio Villar Senin  <svillar@igalia.com>
-
-        Reviewed by Eric Seidel.
-
-        Print didStartProvisionalLoadForFrame in the callback of
-        notify::load-status property change notification
-
-        [GTK] Improve reporting of frame loader callbacks in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=36454
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webInspectorCloseWindow):
-        (webInspectorInspectWebView):
-        (createWebView): added connection to notify::load-status and
-        signal callback
-
-2010-03-27  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        In webkitpy/, deleted the /unittests.py files since test-webkitpy
-        now auto-detects all *_unittest.py files.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36712
-
-        * Scripts/webkitpy/common/net/irc/unittests.py: Removed.
-        * Scripts/webkitpy/common/system/unittests.py: Removed.
-        * Scripts/webkitpy/common/thread/unittests.py: Removed.
-        * Scripts/webkitpy/common/unittests.py: Removed.
-        * Scripts/webkitpy/python24/unittests.py: Removed.
-        * Scripts/webkitpy/style/unittests.py: Removed.
-        * Scripts/webkitpy/tool/unittests.py: Removed.
-        * Scripts/webkitpy/unittests.py: Removed.
-
-2010-03-27  Sergio Villar Senin  <svillar@igalia.com>
-
-        Reviewed by Eric Seidel.
-
-        Add a CR after printing didFinishDocumentLoadForFrame
-
-        [GTK] Improve reporting of frame loader callbacks in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=36454
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webViewLoadFinished):
-
-2010-03-27  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Rubber-stamped by Adam Barth.
-
-        Fixed the name of a unit test file in webkitpy.
-
-        * Scripts/webkitpy/tool/steps/updatechangelogswithreview_unittest.py: Copied from WebKitTools/Scripts/webkitpy/tool/steps/updatechangelogswithreview_unittests.py.
-        * Scripts/webkitpy/tool/steps/updatechangelogswithreview_unittests.py: Removed.
-
-2010-03-26  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        The test-webkitpy script now automatically detects all unit-test
-        files in webkitpy/.  This lets us eliminate the need to have and
-        maintain all of the unittests.py files.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36591
-
-        * Scripts/test-webkitpy:
-          - Replaced the "from webkitpy.unittests import *" with a call
-            to webkitpy.test.main.Tester().run_tests().
-
-        * Scripts/webkitpy/test/__init__.py: Copied from WebKitTools/QueueStatusServer/filters/__init__.py.
-          - Required file for the new webkitpy/test/ directory.
-
-        * Scripts/webkitpy/test/main.py: Added.
-          - Added a Tester class that contains the following methods:
-            - _find_unittest_files() to detect all the unit-test files.
-            - _modules_from_paths() to convert the paths to the unit-test
-              files to fully-qualified module names.
-            - run_tests() which calls the above two methods and then passes
-              the module names to Python's unittest module.
-
-2010-03-27  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Simon Fraser.
-
-        [Qt/Win] Add support to unix and windows NS plugin for executing scripts on setWindow.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36701
-
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_new_instance): Add onSetWindow.
-        (webkit_test_plugin_destroy_instance): Add onSetWindow.
-        (webkit_test_plugin_set_window): Add onSetWindow.
-        * DumpRenderTree/win/TestNetscapePlugin/main.cpp:
-        (NPP_New): Add onSetWindow.
-        (NPP_Destroy): Add onSetWindow.
-        (NPP_SetWindow): Add onSetWindow.
-
-2010-03-26  Robert Hogan  <robert@roberthogan.net>
-
-        Reviewed by Simon Hausmann.
-
-        Allow plugins implemented by the application, such as mimetype 'x-qt-plugin',
-         when pluginsEnabled is false.
-
-        Add support for LayoutTestController.WebKitPluginsEnabled
-
-        https://bugs.webkit.org/show_bug.cgi?id=32196
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (copyWebSettingKey):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::resetSettings):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::overridePreference):
-
-2010-03-26  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add some basic IRC commands to sheriffbot
-        https://bugs.webkit.org/show_bug.cgi?id=36684
-
-        Adds support for sheriffbot to respond to a "hi" command and a
-        "last-green-revision" command.  It's lame that we're rebuilding
-        MultiCommandTool, but as discussed in person we'll intergrate the two
-        once we see what the requirements are.
-
-        * Scripts/webkitpy/tool/bot/irc_command.py: Added.
-        * Scripts/webkitpy/tool/bot/queueengine.py:
-        * Scripts/webkitpy/tool/bot/queueengine_unittest.py:
-        * Scripts/webkitpy/tool/bot/sheriffircbot.py:
-        * Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py: Added.
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queuestest.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-        * Scripts/webkitpy/tool/main.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/unittests.py:
-
-2010-03-26  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  More errors in the IRC module.  I have no idea how to test
-        ircbot.py, which is too bad.  Hopefully we've abstracted it away enough
-        that we don't have to touch it very much after this patch.
-
-        * Scripts/webkitpy/common/net/irc/ircbot.py:
-
-2010-03-26  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Add a missing "_".
-
-        * Scripts/webkitpy/common/net/irc/ircproxy.py:
-        * Scripts/webkitpy/common/net/irc/ircproxy_unittest.py: Added.
-        * Scripts/webkitpy/common/net/irc/unittests.py:
-
-2010-03-26  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Fix a the commit queue after my recent change.
-
-        * Scripts/webkitpy/tool/bot/queueengine.py:
-
-2010-03-26  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed fix.
-
-        Fix the return value for port/base.diff_image (changed from 1/0 to
-        True/False in bug 34826.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-
-2010-03-26  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Change the Mac port of new-run-webkit-tests to look for a
-        test_expectations.txt file in addition to the Skipped files, so we
-        can track pixel failures.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36619
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-
-2010-03-26  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Implement pixel tests (image diff) properly on the Mac port.
-
-        This change introduces a new "ServerPocess" class that can be used
-        to manage processes that the run-webkit-tests harness forks off and
-        expects to stay up for longer than a single request/response session.
-        Both DumpRenderTree and ImageDiff use this style of communication,
-        although the current code forks off a new ImageDiff for each diff
-        (We need to restructure other parts of the code to be able to do this
-        safely in a multi-threaded environment).
-
-        Also, now that the ServerProcess abstraction exists, we can probably
-        clean up and simplify some of the thread management logic in
-        test_shell_thread as well.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34826
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py:
-
-2010-03-26  Sergio Villar Senin  <svillar@igalia.com>
-
-        Reviewed by Eric Seidel.
-
-        Print didFinishLoadForFrame outcome in DRT
-
-        [GTK] Improve reporting of frame loader callbacks in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=36454
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webViewLoadCommitted):
-
-2010-03-26  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed test fix.
-        My change conflicted with one of Adam's causing test-webkitpy to fail.
-
-        Move commit_message_for_this_commit from scm to checkout
-        https://bugs.webkit.org/show_bug.cgi?id=36629
-
-        * Scripts/webkitpy/common/checkout/api_unittest.py:
-         - modified_changelogs is now on Checkout instead of scm.
-
-2010-03-26  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Refactor IRCBot controller logic to allow for commands
-        https://bugs.webkit.org/show_bug.cgi?id=36676
-
-        We need to move the controller logic into the tool package so it can
-        know about commands.  The changes to queueengine could go in a
-        different patch, but we're going to need it anyway.
-
-        * Scripts/webkitpy/common/config/irc.py: Added.
-        * Scripts/webkitpy/common/net/irc/ircbot.py:
-        * Scripts/webkitpy/common/net/irc/ircproxy.py:
-        * Scripts/webkitpy/tool/bot/queueengine.py:
-        * Scripts/webkitpy/tool/bot/sheriffircbot.py: Added.
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-        * Scripts/webkitpy/tool/main.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-03-26  Adam Barth  <abarth@webkit.org>
-
-        Rubber stamped by Eric Seidel.
-
-        Move the threading code into its own module.  (It has nothing to do with IRC.)
-
-        * Scripts/webkitpy/common/net/irc/ircbot.py:
-        * Scripts/webkitpy/common/net/irc/ircproxy.py:
-        * Scripts/webkitpy/common/net/irc/messagepump.py: Removed.
-        * Scripts/webkitpy/common/net/irc/messagepump_unittest.py: Removed.
-        * Scripts/webkitpy/common/net/irc/threadedmessagequeue.py: Removed.
-        * Scripts/webkitpy/common/net/irc/threadedmessagequeue_unittest.py: Removed.
-        * Scripts/webkitpy/common/net/irc/unittests.py:
-        * Scripts/webkitpy/common/thread: Added.
-        * Scripts/webkitpy/common/thread/__init__.py: Added.
-        * Scripts/webkitpy/common/thread/messagepump.py: Copied from Scripts/webkitpy/common/net/irc/messagepump.py.
-        * Scripts/webkitpy/common/thread/messagepump_unittest.py: Copied from Scripts/webkitpy/common/net/irc/messagepump_unittest.py.
-        * Scripts/webkitpy/common/thread/threadedmessagequeue.py: Copied from Scripts/webkitpy/common/net/irc/threadedmessagequeue.py.
-        * Scripts/webkitpy/common/thread/threadedmessagequeue_unittest.py: Copied from Scripts/webkitpy/common/net/irc/threadedmessagequeue_unittest.py.
-        * Scripts/webkitpy/common/thread/unittests.py: Added.
-        * Scripts/webkitpy/common/unittests.py:
-
-2010-03-26  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Move commit_message_for_this_commit from scm to checkout
-        https://bugs.webkit.org/show_bug.cgi?id=36629
-
-        Finally add some basic unit testing for Checkout.commit_message_for_this_commit
-
-        * Scripts/webkitpy/common/checkout/api.py:
-        * Scripts/webkitpy/common/checkout/api_unittest.py: Added.
-        * Scripts/webkitpy/common/unittests.py:
-
-2010-03-26  Diego Gonzalez  <diego.gonzalez@openbossa.org>
-
-        [Qt] User Agent Switcher on QtLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=36451
-
-        Patch by Diego Gonzalez <diego.gonzalez@openbossa.org> on 2010-03-26
-        Reviewed by Simon Hausmann.
-
-        Make possible to change the QtLauncher user agent via
-        a predefined list.
-
-        * QtLauncher/QtLauncher.pro:
-        * QtLauncher/QtLauncher.qrc: Added.
-        * QtLauncher/main.cpp:
-        (LauncherWindow::showUserAgentDialog):
-        (LauncherWindow::createChrome):
-        * QtLauncher/useragentlist.txt: Added.
-        * QtLauncher/webpage.cpp:
-        (WebPage::userAgentForUrl):
-        * QtLauncher/webpage.h:
-        (WebPage::setUserAgent):
-
-2010-03-26  Victor Wang  <victorw@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Host layout test flakiness dashboard in TestResultServer appengine.
-
-        Flakiness dashboard is a tool to monitor layout test status and
-        help layout test regression diagnostics.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36195
-
-        * TestResultServer/handlers/dashboardhandler.py: Added.
-         - New handler to handle dashboard request
-        * TestResultServer/handlers/menu.py:
-         - Add new dashboard links
-        * TestResultServer/handlers/testfilehandler.py:
-         - Request routes refactory
-        * TestResultServer/index.yaml:
-        * TestResultServer/main.py:
-         - Add new dashboard request routes and refactor test result file rountes.
-        * TestResultServer/model/dashboardfile.py: Added.
-         - Model to access datastore for dashboard files
-        * TestResultServer/model/testfile.py:
-        * TestResultServer/stylesheets/dashboardfile.css: Added.
-        * TestResultServer/templates/dashboardfilelist.html: Added.
-        * TestResultServer/templates/showfilelist.html:
-
-2010-03-26  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Remove some evil statics from CommitInfo
-        https://bugs.webkit.org/show_bug.cgi?id=36637
-
-        These methods should really be on checkout.  You can tell because they
-        know about ChangeLogs and take an SCM as an argument.  :)
-
-        * Scripts/webkitpy/common/checkout/api.py:
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        * Scripts/webkitpy/common/checkout/commitinfo.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-
-2010-03-23  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        Reviewed by Simon Hausmann.
-
-        Add an option to QtLauncher to enable/disable a QGLWidget as Viewport
-        of the QGraphicsView when the launcher is running on graphicsview mode.
-
-        [Qt] QtLauncher needs an option to Enable/Disable a QGLWidget as Viewport
-        https://bugs.webkit.org/show_bug.cgi?id=36270
-
-        * QtLauncher/QtLauncher.pro:
-        * QtLauncher/main.cpp:
-        (LauncherWindow::toggleQGLWidgetViewport):
-        (LauncherWindow::createChrome):
-
-2010-03-26  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        [Chromium-Win] websocket_server.py failed to start
-        https://bugs.webkit.org/show_bug.cgi?id=36586
-        
-        subproess.Popen() on Python 2.4/Windows with stdout,stdout, but no stdin will fail, because it uses return value of GetStdHandle(STD_INPUT_HANDLE), but DuplicateHandle requires integer, not the handle.
-        We don't need stdin, so use devnull as stdin.
-
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py: open os.devnull for stdin
-
-2010-03-26  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Add TestNavigationController and TestWebWorker
-        https://bugs.webkit.org/show_bug.cgi?id=36520
-
-        Add LayoutTestController class, which is going to be used by
-        DumpRenderTree Chromium port. These files are based on:
-        - src/webkit/tools/test_shell/layout_test_controller.cc
-        - src/webkit/tools/test_shell/layout_test_controller.h
-        of Chromium rev.40492.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp: Added.
-        * DumpRenderTree/chromium/LayoutTestController.h: Added.
-
-2010-03-25  Charlie Reis  <creis@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        onbeforeunload not called at window close + frame or iframe focused
-        https://bugs.webkit.org/show_bug.cgi?id=27481
-
-        Adds a callShouldCloseOnWebView method to LayoutTestController,
-        to allow automated testing for bug 27481.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (callShouldCloseOnWebViewCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::callShouldCloseOnWebView):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::callShouldCloseOnWebView):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::callShouldCloseOnWebView):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::callShouldCloseOnWebView):
-
-2010-03-25  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add webkit-patch lkgr for finding last known good revision
-        https://bugs.webkit.org/show_bug.cgi?id=36626
-
-        This is rather slow for now because the command
-        has to compute this information from the buildbot.
-        A better long-term solution would be to have a server
-        somewhere store a pre-computed LKGR and then any
-        script (like webkit-patch) could just fetch it.
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-
-2010-03-25  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Move modified_changelogs (and friends) from scm to checkout
-        https://bugs.webkit.org/show_bug.cgi?id=36636
-
-        These functions know about ChangeLogs, which is forbidden knowledge in
-        scm.py.
-
-        * Scripts/webkitpy/common/checkout/api.py:
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/abstractstep.py:
-        * Scripts/webkitpy/tool/steps/preparechangelogforrevert.py:
-        * Scripts/webkitpy/tool/steps/revertrevision.py:
-        * Scripts/webkitpy/tool/steps/updatechangelogswithreviewer.py:
-        * Scripts/webkitpy/tool/steps/validatereviewer.py:
-
-2010-03-25  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Move apply_patch from scm to checkout
-        https://bugs.webkit.org/show_bug.cgi?id=36635
-
-        SCM shouldn't have any knowledge of WebKit scripts.
-
-        * Scripts/webkitpy/common/checkout/api.py:
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/applypatch.py:
-
-2010-03-25  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed build fix to un-break webkit-patch land.
-        Test-case coming in follow-up commit.
-
-        Move commit_message_for_this_commit from scm to checkout
-        https://bugs.webkit.org/show_bug.cgi?id=36629
-
-        * Scripts/webkitpy/common/checkout/api.py: import scm.CommitMessage
-
-2010-03-25  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Darin Adler.
-
-        <rdar://problem/7728903> Support color bitmap fonts
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Added ColorBits.ttf
-        and ColorBits-A.png.
-        * DumpRenderTree/fonts/ColorBits-A.png: Copied from WebCore/inspector/front-end/Images/successGreenDot.png.
-        * DumpRenderTree/fonts/ColorBits.ttf: Added.
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (activateFonts): Activate ColorBits.ttf.
-
-2010-03-25  Mark Rowe  <mrowe@apple.com>
-
-        Remove a printf that was causing commit-log-editor to spew the name of the editor
-        to the terminal many times during a commit.
-
-        * Scripts/commit-log-editor:
-
-2010-03-25  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Move commit_message_for_this_commit from scm to checkout
-        https://bugs.webkit.org/show_bug.cgi?id=36629
-
-        This function requires knowledge of ChangeLogs, but scm shouldn't know
-        about ChangeLogs.
-
-        * Scripts/webkitpy/common/checkout/api.py:
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/tool/commands/upload.py:
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/applypatchwithlocalcommit.py:
-        * Scripts/webkitpy/tool/steps/commit.py:
-
-2010-03-25  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        REGRESSION: webkit-patch land can't land "rubber-stamped" patches
-        https://bugs.webkit.org/show_bug.cgi?id=36582
-
-        Allow a "-" in rubber stamped.
-
-        * Scripts/webkitpy/tool/steps/validatereviewer.py:
-
-2010-03-25  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Fix some copyright lines to remove extraneous comma and
-        python directive.
-
-        * Scripts/webkitpy/tool/bot/patchcollection.py:
-        * Scripts/webkitpy/tool/bot/patchcollection_unittest.py:
-        * Scripts/webkitpy/tool/bot/queueengine.py:
-        * Scripts/webkitpy/tool/bot/queueengine_unittest.py:
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-        * Scripts/webkitpy/tool/comments.py:
-        * Scripts/webkitpy/tool/grammar.py:
-        * Scripts/webkitpy/tool/multicommandtool.py:
-        * Scripts/webkitpy/tool/multicommandtool_unittest.py:
-
-2010-03-25  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Darin Adler, Alexey Proskuryakov.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36631
-        Allow the test plugin to run scripts in response to NPP_SetWindow calls
-        
-        Hook up the ability for the TestNetscapePlugIn to run JavaScript in
-        response to NPP_SetWindow.
-        
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (pluginAllocate):
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.h:
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.cpp:
-        (NPP_New):
-        (NPP_Destroy):
-        (NPP_SetWindow):
-
-2010-03-25  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Unreviewed, build fix.
-
-        [Qt] Fix QtLauncher guards.
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::showFPS):
-        (LauncherWindow::updateFPS):
-
-2010-03-25  Yury Semikhatsky  <yurys@chromium.org>
-
-        Reviewed by Pavel Feldman.
-
-        Allow running tests with enabled developer extras and closed Web Inspector. Tests that have inspector-enabled/ in their path/url will have developer extras enabled.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36610
-
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (shouldEnableDeveloperExtras):
-        (runTest):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setJavaScriptProfilingEnabled):
-        (LayoutTestController::setDeveloperExtrasEnabled):
-        (LayoutTestController::showWebInspector):
-        (LayoutTestController::closeWebInspector):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (shouldEnableDeveloperExtras):
-        (runTest):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setJavaScriptProfilingEnabled):
-        (LayoutTestController::setDeveloperExtrasEnabled):
-        (LayoutTestController::showWebInspector):
-        (LayoutTestController::closeWebInspector):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::shouldEnableDeveloperExtras):
-        (WebCore::DumpRenderTree::open):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::closeWebInspector):
-        (LayoutTestController::setDeveloperExtrasEnabled):
-        (LayoutTestController::showWebInspector):
-        (LayoutTestController::setJavaScriptProfilingEnabled):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (shouldEnableDeveloperExtras):
-        (runTest):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setJavaScriptProfilingEnabled):
-        (LayoutTestController::setDeveloperExtrasEnabled):
-        (LayoutTestController::showWebInspector):
-        (LayoutTestController::closeWebInspector):
-
-2010-03-25  Adam Barth  <abarth@webkit.org>
-
-        Rubber stamped by Eric Seidel.
-
-        Tweaks to sheriffbot to improve latency by keeping the working copy up
-        to date even when there's no build break.  Also, officially move
-        sheriffbot to #webkit.
-
-        (Also teach ValidateReviewer to understand rubber stamps.)
-
-        * Scripts/webkitpy/common/net/irc/ircbot.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-        * Scripts/webkitpy/tool/steps/validatereviewer.py:
-
-2010-03-22  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        Reviewed by Simon Hausmann.
-
-        Not displaying FPS info on the terminal. On S60 and Maemo the
-        Window title will be used and Status bar will used on desktop.
-
-        [Qt] QtLauncher's FPS info should not be displayed on the terminal
-        https://bugs.webkit.org/show_bug.cgi?id=36244
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::initializeView):
-        (LauncherWindow::showFPS):
-        (LauncherWindow::updateFPS):
-        * QtLauncher/webview.cpp:
-        (WebViewGraphicsBased::setFrameRateMeasurementEnabled):
-        (WebViewGraphicsBased::updateFrameRate):
-        * QtLauncher/webview.h:
-        (WebViewGraphicsBased::frameRateMeasurementEnabled):
-
-2010-03-25  Diego Gonzalez  <diego.gonzalez@openbossa.org>
-
-        Reviewed by Kenneth Christiansen.
-
-        Added missing frame flattening activation on
-        fast/frames/flattening/frameset-flattening-grid.html;
-        removed unnecessary CONSOLE MESSAGE from the expected file;
-        reset the setFrameSetFlatteningEnabled for each test.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::resetSettings):
-
-2010-03-25  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Moved deprecated_logging unit test import statement from
-        webkitpy/unittests.py to webkitpy/common/system/unittests.py.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36093
-
-        This is part of the master bug to reorganize webkitpy.
-
-        * Scripts/webkitpy/common/system/unittests.py:
-        * Scripts/webkitpy/unittests.py:
-
-2010-03-25  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Moved webkit_logging.py to common/system/deprecated_logging.py
-        inside webkitpy.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36093
-
-        This is part of the master bug to reorganize webkitpy.
-
-        * Scripts/validate-committer-lists:
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/net/bugzilla.py:
-        * Scripts/webkitpy/common/net/buildbot.py:
-        * Scripts/webkitpy/common/net/credentials.py:
-        * Scripts/webkitpy/common/net/irc/ircproxy.py:
-        * Scripts/webkitpy/common/net/networktransaction.py:
-        * Scripts/webkitpy/common/net/statusserver.py:
-        * Scripts/webkitpy/common/system/deprecated_logging.py: Copied from WebKitTools/Scripts/webkitpy/webkit_logging.py.
-        * Scripts/webkitpy/common/system/deprecated_logging_unittest.py: Copied from WebKitTools/Scripts/webkitpy/webkit_logging_unittest.py.
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/tool/bot/queueengine.py:
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-        * Scripts/webkitpy/tool/commands/openbugs.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-        * Scripts/webkitpy/tool/commands/stepsequence.py:
-        * Scripts/webkitpy/tool/commands/upload.py:
-        * Scripts/webkitpy/tool/main.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/multicommandtool.py:
-        * Scripts/webkitpy/tool/steps/abstractstep.py:
-        * Scripts/webkitpy/tool/steps/applypatch.py:
-        * Scripts/webkitpy/tool/steps/build.py:
-        * Scripts/webkitpy/tool/steps/checkstyle.py:
-        * Scripts/webkitpy/tool/steps/closebug.py:
-        * Scripts/webkitpy/tool/steps/closebugforlanddiff.py:
-        * Scripts/webkitpy/tool/steps/confirmdiff.py:
-        * Scripts/webkitpy/tool/steps/ensurebuildersaregreen.py:
-        * Scripts/webkitpy/tool/steps/ensurelocalcommitifneeded.py:
-        * Scripts/webkitpy/tool/steps/obsoletepatches.py:
-        * Scripts/webkitpy/tool/steps/preparechangelog.py:
-        * Scripts/webkitpy/tool/steps/reopenbugafterrollout.py:
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        * Scripts/webkitpy/tool/steps/update.py:
-        * Scripts/webkitpy/tool/steps/updatechangelogswithreviewer.py:
-        * Scripts/webkitpy/tool/steps/validatereviewer.py:
-        * Scripts/webkitpy/unittests.py:
-        * Scripts/webkitpy/webkit_logging.py: Removed.
-        * Scripts/webkitpy/webkit_logging_unittest.py: Removed.
-
-2010-03-25  Julien Chaffraix  <jchaffraix@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        commit-log-editor can call itself in an infinite loop
-        https://bugs.webkit.org/show_bug.cgi?id=35291
-
-        if $editor ends up being commit-log-editor, the script will exec itself
-        in an infinite loop.
-
-        To avoid this, we now check that the $editor variable is not
-        commit-log-editor to avoid this case.
-
-        * Scripts/commit-log-editor: Added an isCommitLogEditor method and
-        reworked the $editor setting to add this check.
-
-2010-03-25  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add a Toggle Frame Flattening option to QtLauncher.
-        It will be enabled by default on Maemo5 and S60 platforms.
-
-        [Qt] Add enable/disable Frame Flattening option to QtLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=36558
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::applyPrefs):
-        (LauncherWindow::toggleFrameFlattening):
-        (LauncherWindow::createChrome):
-
-2010-03-25  Zoltan Horvath  <zoltan@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        svn-create-patch prints a warning for large patches
-        https://bugs.webkit.org/show_bug.cgi?id=32582
-
-        svn-create-patch prints a warning message for larger patches than 20k.
-
-        * Scripts/svn-create-patch:
-
-2010-03-25  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Renamed early_warning_system.py to earlywarningsystem.py.
-        https://bugs.webkit.org/show_bug.cgi?id=36093
-
-        * Scripts/webkitpy/tool/commands/early_warning_system.py: Removed.
-        * Scripts/webkitpy/tool/commands/early_warning_system_unittest.py: Removed.
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py: Copied from Scripts/webkitpy/tool/commands/early_warning_system.py.
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py: Copied from Scripts/webkitpy/tool/commands/early_warning_system_unittest.py.
-        * Scripts/webkitpy/tool/main.py:
-        * Scripts/webkitpy/tool/unittests.py:
-
-2010-03-25  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        In webkitpy, pushed the unit test import statements in
-        webkitpy/unittests.py into appropriate unittests.py files in the
-        new root-level packages beneath webkitpy.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36093
-
-        This is part of the master bug to reorganize webkitpy.
-
-        * Scripts/webkitpy/common/system/unittests.py:
-        * Scripts/webkitpy/common/unittests.py: Added.
-        * Scripts/webkitpy/python24/unittests.py: Added.
-        * Scripts/webkitpy/tool/unittests.py: Added.
-        * Scripts/webkitpy/unittests.py:
-
-2010-03-25  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Move WebKitCheckout into the webkitpy.common.checkout
-        package.
-        https://bugs.webkit.org/show_bug.cgi?id=36093
-
-        * Scripts/webkitpy/common/checkout/api.py: Copied from Scripts/webkitpy/webkitcheckout.py.
-        * Scripts/webkitpy/tool/main.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/webkitcheckout.py: Removed.
-
-2010-03-25  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Move OutputCapture to webkitpy.common.system.
-        https://bugs.webkit.org/show_bug.cgi?id=36093
-
-        * Scripts/webkitpy/common/net/bugzilla_unittest.py:
-        * Scripts/webkitpy/common/net/credentials_unittest.py:
-        * Scripts/webkitpy/common/system/outputcapture.py: Copied from Scripts/webkitpy/outputcapture.py.
-        * Scripts/webkitpy/outputcapture.py: Removed.
-        * Scripts/webkitpy/tool/commands/commandtest.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/commands/queuestest.py:
-        * Scripts/webkitpy/tool/multicommandtool_unittest.py:
-        * Scripts/webkitpy/tool/steps/closebugforlanddiff_unittest.py:
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-        * Scripts/webkitpy/tool/steps/updatechangelogswithreview_unittests.py:
-
-2010-03-25  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Move user.py to webkitpy.common.system.
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/net/bugzilla.py:
-        * Scripts/webkitpy/common/net/credentials.py:
-        * Scripts/webkitpy/common/system/user.py: Copied from Scripts/webkitpy/user.py.
-        * Scripts/webkitpy/common/system/user_unittest.py: Copied from Scripts/webkitpy/user_unittest.py.
-        * Scripts/webkitpy/tool/commands/upload.py:
-        * Scripts/webkitpy/tool/main.py:
-        * Scripts/webkitpy/unittests.py:
-        * Scripts/webkitpy/user.py: Removed.
-        * Scripts/webkitpy/user_unittest.py: Removed.
-
-2010-03-25  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Move executive.py to webkitpy.common.system.
-        https://bugs.webkit.org/show_bug.cgi?id=36093
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-        * Scripts/webkitpy/common/config/ports.py:
-        * Scripts/webkitpy/common/config/ports_unittest.py:
-        * Scripts/webkitpy/common/net/credentials.py:
-        * Scripts/webkitpy/common/net/credentials_unittest.py:
-        * Scripts/webkitpy/common/system/executive.py: Copied from Scripts/webkitpy/executive.py.
-        * Scripts/webkitpy/common/system/executive_unittest.py: Copied from Scripts/webkitpy/executive_unittest.py.
-        * Scripts/webkitpy/executive.py: Removed.
-        * Scripts/webkitpy/executive_unittest.py: Removed.
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/tool/bot/queueengine.py:
-        * Scripts/webkitpy/tool/bot/queueengine_unittest.py:
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/early_warning_system.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/stepsequence.py:
-        * Scripts/webkitpy/tool/main.py:
-        * Scripts/webkitpy/tool/steps/checkstyle.py:
-        * Scripts/webkitpy/tool/steps/preparechangelog.py:
-        * Scripts/webkitpy/unittests.py:
-        * Scripts/webkitpy/webkit_logging_unittest.py:
-
-2010-03-25  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Move grammary.py into webkitpy.tool.
-        https://bugs.webkit.org/show_bug.cgi?id=36093
-
-        * Scripts/webkitpy/grammar.py: Removed.
-        * Scripts/webkitpy/grammar_unittest.py: Removed.
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/upload.py:
-        * Scripts/webkitpy/tool/grammar.py: Copied from Scripts/webkitpy/grammar.py.
-        * Scripts/webkitpy/tool/grammar_unittest.py: Copied from Scripts/webkitpy/grammar_unittest.py.
-        * Scripts/webkitpy/tool/multicommandtool.py:
-        * Scripts/webkitpy/tool/steps/obsoletepatches.py:
-        * Scripts/webkitpy/tool/steps/updatechangelogswithreviewer.py:
-        * Scripts/webkitpy/unittests.py:
-
-2010-03-25  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        In webkitpy, moved init/ to common/system/.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36093
-
-        This is part of the master bug to reorganize webkitpy.
-
-        * Scripts/webkitpy/common/system: Copied from WebKitTools/Scripts/webkitpy/init.
-        * Scripts/webkitpy/common/system/logutils.py:
-        * Scripts/webkitpy/common/system/logutils_unittest.py:
-        * Scripts/webkitpy/init: Removed.
-        * Scripts/webkitpy/init/__init__.py: Removed.
-        * Scripts/webkitpy/init/logtesting.py: Removed.
-        * Scripts/webkitpy/init/logutils.py: Removed.
-        * Scripts/webkitpy/init/logutils_unittest.py: Removed.
-        * Scripts/webkitpy/init/unittests.py: Removed.
-        * Scripts/webkitpy/python24/versioning_unittest.py:
-        * Scripts/webkitpy/style_references.py:
-        * Scripts/webkitpy/unittests.py:
-
-2010-03-25  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Move stepsequence to webkitpy.tool.commands.
-        https://bugs.webkit.org/show_bug.cgi?id=36093
-
-        * Scripts/webkitpy/stepsequence.py: Removed.
-        * Scripts/webkitpy/tool/commands/abstractsequencedcommand.py:
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/stepsequence.py: Copied from Scripts/webkitpy/stepsequence.py.
-
-2010-03-25  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Create webkitpy.common.checkout as described in
-        https://bugs.webkit.org/show_bug.cgi?id=36093
-
-        * Scripts/webkitpy/changelogs.py: Removed.
-        * Scripts/webkitpy/changelogs_unittest.py: Removed.
-        * Scripts/webkitpy/commitinfo.py: Removed.
-        * Scripts/webkitpy/commitinfo_unittest.py: Removed.
-        * Scripts/webkitpy/common/checkout: Added.
-        * Scripts/webkitpy/common/checkout/__init__.py: Copied from Scripts/webkitpy/common/__init__.py.
-        * Scripts/webkitpy/common/checkout/changelog.py: Copied from Scripts/webkitpy/changelogs.py.
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py: Copied from Scripts/webkitpy/changelogs_unittest.py.
-        * Scripts/webkitpy/common/checkout/commitinfo.py: Copied from Scripts/webkitpy/commitinfo.py.
-        * Scripts/webkitpy/common/checkout/commitinfo_unittest.py: Copied from Scripts/webkitpy/commitinfo_unittest.py.
-        * Scripts/webkitpy/common/checkout/diff_parser.py: Copied from Scripts/webkitpy/diff_parser.py.
-        * Scripts/webkitpy/common/checkout/diff_parser_unittest.py: Copied from Scripts/webkitpy/diff_parser_unittest.py.
-        * Scripts/webkitpy/common/checkout/scm.py: Copied from Scripts/webkitpy/scm.py.
-        * Scripts/webkitpy/common/checkout/scm_unittest.py: Copied from Scripts/webkitpy/scm_unittest.py.
-        * Scripts/webkitpy/common/net/credentials.py:
-        * Scripts/webkitpy/diff_parser.py: Removed.
-        * Scripts/webkitpy/diff_parser_unittest.py: Removed.
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/scm.py: Removed.
-        * Scripts/webkitpy/scm_unittest.py: Removed.
-        * Scripts/webkitpy/stepsequence.py:
-        * Scripts/webkitpy/style_references.py:
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-        * Scripts/webkitpy/tool/comments.py:
-        * Scripts/webkitpy/tool/main.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/preparechangelogforrevert.py:
-        * Scripts/webkitpy/tool/steps/updatechangelogswithreviewer.py:
-        * Scripts/webkitpy/tool/steps/validatereviewer.py:
-        * Scripts/webkitpy/unittests.py:
-        * Scripts/webkitpy/webkitcheckout.py:
-
-2010-03-25  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        In webkitpy, moved init/versioning.py to python24/.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36093
-
-        This is part of the master bug to reorganize webkitpy.
-
-        * Scripts/test-webkitpy:
-        * Scripts/webkit-patch:
-        * Scripts/webkitpy/init/unittests.py:
-        * Scripts/webkitpy/init/versioning.py: Removed.
-        * Scripts/webkitpy/init/versioning_unittest.py: Removed.
-        * Scripts/webkitpy/python24: Added.
-        * Scripts/webkitpy/python24/__init__.py: Copied from WebKitTools/Scripts/webkitpy/tool/__init__.py.
-        * Scripts/webkitpy/python24/versioning.py: Copied from WebKitTools/Scripts/webkitpy/init/versioning.py.
-        * Scripts/webkitpy/python24/versioning_unittest.py: Copied from WebKitTools/Scripts/webkitpy/init/versioning_unittest.py.
-        * Scripts/webkitpy/unittests.py:
-
-2010-03-25  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        Create webkitpy.common.net as described in
-        https://bugs.webkit.org/show_bug.cgi?id=36093
-
-        * Scripts/webkitpy/bugzilla.py: Removed.
-        * Scripts/webkitpy/bugzilla_unittest.py: Removed.
-        * Scripts/webkitpy/buildbot.py: Removed.
-        * Scripts/webkitpy/buildbot_unittest.py: Removed.
-        * Scripts/webkitpy/commitinfo.py:
-        * Scripts/webkitpy/common/net: Added.
-        * Scripts/webkitpy/common/net/__init__.py: Added.
-        * Scripts/webkitpy/common/net/bugzilla.py: Copied from Scripts/webkitpy/bugzilla.py.
-        * Scripts/webkitpy/common/net/bugzilla_unittest.py: Copied from Scripts/webkitpy/bugzilla_unittest.py.
-        * Scripts/webkitpy/common/net/buildbot.py: Copied from Scripts/webkitpy/buildbot.py.
-        * Scripts/webkitpy/common/net/buildbot_unittest.py: Copied from Scripts/webkitpy/buildbot_unittest.py.
-        * Scripts/webkitpy/common/net/credentials.py: Copied from Scripts/webkitpy/credentials.py.
-        * Scripts/webkitpy/common/net/credentials_unittest.py: Copied from Scripts/webkitpy/credentials_unittest.py.
-        * Scripts/webkitpy/common/net/irc: Copied from Scripts/webkitpy/irc.
-        * Scripts/webkitpy/common/net/irc/ircbot.py:
-        * Scripts/webkitpy/common/net/irc/ircproxy.py:
-        * Scripts/webkitpy/common/net/irc/messagepump_unittest.py:
-        * Scripts/webkitpy/common/net/irc/threadedmessagequeue_unittest.py:
-        * Scripts/webkitpy/common/net/irc/unittests.py:
-        * Scripts/webkitpy/common/net/networktransaction.py: Copied from Scripts/webkitpy/networktransaction.py.
-        * Scripts/webkitpy/common/net/networktransaction_unittest.py: Copied from Scripts/webkitpy/networktransaction_unittest.py.
-        * Scripts/webkitpy/common/net/statusserver.py: Copied from Scripts/webkitpy/statusserver.py.
-        * Scripts/webkitpy/credentials.py: Removed.
-        * Scripts/webkitpy/credentials_unittest.py: Removed.
-        * Scripts/webkitpy/irc: Removed.
-        * Scripts/webkitpy/irc/__init__.py: Removed.
-        * Scripts/webkitpy/irc/ircbot.py: Removed.
-        * Scripts/webkitpy/irc/ircproxy.py: Removed.
-        * Scripts/webkitpy/irc/messagepump.py: Removed.
-        * Scripts/webkitpy/irc/messagepump_unittest.py: Removed.
-        * Scripts/webkitpy/irc/threadedmessagequeue.py: Removed.
-        * Scripts/webkitpy/irc/threadedmessagequeue_unittest.py: Removed.
-        * Scripts/webkitpy/irc/unittests.py: Removed.
-        * Scripts/webkitpy/networktransaction.py: Removed.
-        * Scripts/webkitpy/networktransaction_unittest.py: Removed.
-        * Scripts/webkitpy/scm_unittest.py:
-        * Scripts/webkitpy/statusserver.py: Removed.
-        * Scripts/webkitpy/tool/bot/queueengine.py:
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-        * Scripts/webkitpy/tool/commands/queries_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/commands/queuestest.py:
-        * Scripts/webkitpy/tool/commands/upload.py:
-        * Scripts/webkitpy/tool/main.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/postdiffforrevert.py:
-        * Scripts/webkitpy/unittests.py:
-
-2010-03-25  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        In webkitpy, renamed MockBugzillaTool to MockTool.
-
-        * Scripts/webkitpy/tool/commands/commandtest.py:
-        * Scripts/webkitpy/tool/commands/queries_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/commands/queuestest.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot_unittest.py:
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/closebugforlanddiff_unittest.py:
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-        * Scripts/webkitpy/tool/steps/updatechangelogswithreview_unittests.py:
-
-2010-03-25  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        In Scripts/webkitpy, moved webkitport.py and committers.py into
-        common/config/ (also creating common/config/).
-
-        https://bugs.webkit.org/show_bug.cgi?id=36093
-
-        This is part of the master bug to reorganize webkitpy.
-
-        * Scripts/validate-committer-lists:
-        * Scripts/webkitpy/bugzilla.py:
-        * Scripts/webkitpy/bugzilla_unittest.py:
-        * Scripts/webkitpy/changelogs.py:
-        * Scripts/webkitpy/commitinfo.py:
-        * Scripts/webkitpy/commitinfo_unittest.py:
-        * Scripts/webkitpy/committers.py: Removed.
-        * Scripts/webkitpy/committers_unittest.py: Removed.
-        * Scripts/webkitpy/common: Added.
-        * Scripts/webkitpy/common/__init__.py: Copied from WebKitTools/Scripts/webkitpy/style/__init__.py.
-        * Scripts/webkitpy/common/config: Added.
-        * Scripts/webkitpy/common/config/__init__.py: Copied from WebKitTools/Scripts/webkitpy/style/__init__.py.
-        * Scripts/webkitpy/common/config/committers.py: Copied from WebKitTools/Scripts/webkitpy/committers.py.
-        * Scripts/webkitpy/common/config/committers_unittest.py: Copied from WebKitTools/Scripts/webkitpy/committers_unittest.py.
-        * Scripts/webkitpy/common/config/ports.py: Copied from WebKitTools/Scripts/webkitpy/webkitport.py.
-        * Scripts/webkitpy/common/config/ports_unittest.py: Copied from WebKitTools/Scripts/webkitpy/webkitport_unittest.py.
-        * Scripts/webkitpy/mock_bugzillatool.py:
-        * Scripts/webkitpy/tool/commands/early_warning_system.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-        * Scripts/webkitpy/tool/commands/upload.py:
-        * Scripts/webkitpy/tool/steps/abstractstep.py:
-        * Scripts/webkitpy/unittests.py:
-        * Scripts/webkitpy/webkitport.py: Removed.
-        * Scripts/webkitpy/webkitport_unittest.py: Removed.
-
-2010-03-25  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Move mock_bugzillatool.py to tool/mocktool.py.
-
-        * Scripts/webkitpy/mock_bugzillatool.py: Removed.
-        * Scripts/webkitpy/tool/commands/commandtest.py:
-        * Scripts/webkitpy/tool/commands/queries_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/commands/queuestest.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot_unittest.py:
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py: Copied from Scripts/webkitpy/mock_bugzillatool.py.
-        * Scripts/webkitpy/tool/steps/closebugforlanddiff_unittest.py:
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-        * Scripts/webkitpy/tool/steps/updatechangelogswithreview_unittests.py:
-
-2010-03-24  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Move comments.py and multicommandtool.py to their new
-        home.
-
-        * Scripts/webkitpy/comments.py: Removed.
-        * Scripts/webkitpy/multicommandtool.py: Removed.
-        * Scripts/webkitpy/multicommandtool_unittest.py: Removed.
-        * Scripts/webkitpy/tool/commands/abstractsequencedcommand.py:
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/openbugs.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/upload.py:
-        * Scripts/webkitpy/tool/comments.py: Copied from Scripts/webkitpy/comments.py.
-        * Scripts/webkitpy/tool/main.py:
-        * Scripts/webkitpy/tool/multicommandtool.py: Copied from Scripts/webkitpy/multicommandtool.py.
-        * Scripts/webkitpy/tool/multicommandtool_unittest.py: Copied from Scripts/webkitpy/multicommandtool_unittest.py.
-        * Scripts/webkitpy/tool/steps/closebugforlanddiff.py:
-        * Scripts/webkitpy/tool/steps/closepatch.py:
-        * Scripts/webkitpy/tool/steps/reopenbugafterrollout.py:
-        * Scripts/webkitpy/unittests.py:
-
-2010-03-24  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Fixup one import statement I didn't find because the .pyc
-        masked the error.
-
-        * Scripts/webkitpy/stepsequence.py:
-
-2010-03-24  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Move queueengine.py to its new home.
-
-        * Scripts/webkitpy/queueengine.py: Removed.
-        * Scripts/webkitpy/queueengine_unittest.py: Removed.
-        * Scripts/webkitpy/tool/bot/queueengine.py: Copied from Scripts/webkitpy/queueengine.py.
-        * Scripts/webkitpy/tool/bot/queueengine_unittest.py: Copied from Scripts/webkitpy/queueengine_unittest.py.
-        * Scripts/webkitpy/tool/commands/early_warning_system.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/unittests.py:
-
-2010-03-24  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Move patchcollection.py to its new home.
-
-        * Scripts/webkitpy/patchcollection.py: Removed.
-        * Scripts/webkitpy/patchcollection_unittest.py: Removed.
-        * Scripts/webkitpy/tool/bot: Added.
-        * Scripts/webkitpy/tool/bot/__init__.py: Added.
-        * Scripts/webkitpy/tool/bot/patchcollection.py: Copied from WebKitTools/Scripts/webkitpy/patchcollection.py.
-        * Scripts/webkitpy/tool/bot/patchcollection_unittest.py: Copied from WebKitTools/Scripts/webkitpy/patchcollection_unittest.py.
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/unittests.py:
-
-2010-03-24  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        In Scripts/webkitpy, moved steps_references.py and the steps
-        folder into webkitpy/patch.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36093
-
-        * Scripts/webkitpy/steps: Removed.
-        * Scripts/webkitpy/steps/__init__.py: Removed.
-        * Scripts/webkitpy/steps/abstractstep.py: Removed.
-        * Scripts/webkitpy/steps/applypatch.py: Removed.
-        * Scripts/webkitpy/steps/applypatchwithlocalcommit.py: Removed.
-        * Scripts/webkitpy/steps/build.py: Removed.
-        * Scripts/webkitpy/steps/checkstyle.py: Removed.
-        * Scripts/webkitpy/steps/cleanworkingdirectory.py: Removed.
-        * Scripts/webkitpy/steps/cleanworkingdirectorywithlocalcommits.py: Removed.
-        * Scripts/webkitpy/steps/closebug.py: Removed.
-        * Scripts/webkitpy/steps/closebugforlanddiff.py: Removed.
-        * Scripts/webkitpy/steps/closebugforlanddiff_unittest.py: Removed.
-        * Scripts/webkitpy/steps/closepatch.py: Removed.
-        * Scripts/webkitpy/steps/commit.py: Removed.
-        * Scripts/webkitpy/steps/confirmdiff.py: Removed.
-        * Scripts/webkitpy/steps/createbug.py: Removed.
-        * Scripts/webkitpy/steps/editchangelog.py: Removed.
-        * Scripts/webkitpy/steps/ensurebuildersaregreen.py: Removed.
-        * Scripts/webkitpy/steps/ensurelocalcommitifneeded.py: Removed.
-        * Scripts/webkitpy/steps/metastep.py: Removed.
-        * Scripts/webkitpy/steps/obsoletepatches.py: Removed.
-        * Scripts/webkitpy/steps/options.py: Removed.
-        * Scripts/webkitpy/steps/postdiff.py: Removed.
-        * Scripts/webkitpy/steps/postdiffforcommit.py: Removed.
-        * Scripts/webkitpy/steps/postdiffforrevert.py: Removed.
-        * Scripts/webkitpy/steps/preparechangelog.py: Removed.
-        * Scripts/webkitpy/steps/preparechangelogforrevert.py: Removed.
-        * Scripts/webkitpy/steps/promptforbugortitle.py: Removed.
-        * Scripts/webkitpy/steps/reopenbugafterrollout.py: Removed.
-        * Scripts/webkitpy/steps/revertrevision.py: Removed.
-        * Scripts/webkitpy/steps/runtests.py: Removed.
-        * Scripts/webkitpy/steps/steps_unittest.py: Removed.
-        * Scripts/webkitpy/steps/update.py: Removed.
-        * Scripts/webkitpy/steps/updatechangelogswithreview_unittests.py: Removed.
-        * Scripts/webkitpy/steps/updatechangelogswithreviewer.py: Removed.
-        * Scripts/webkitpy/steps/validatereviewer.py: Removed.
-        * Scripts/webkitpy/steps_references.py: Removed.
-        * Scripts/webkitpy/stepsequence.py:
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/upload.py:
-        * Scripts/webkitpy/tool/steps: Copied from WebKitTools/Scripts/webkitpy/steps.
-        * Scripts/webkitpy/tool/steps/__init__.py:
-        * Scripts/webkitpy/tool/steps/applypatch.py:
-        * Scripts/webkitpy/tool/steps/applypatchwithlocalcommit.py:
-        * Scripts/webkitpy/tool/steps/build.py:
-        * Scripts/webkitpy/tool/steps/checkstyle.py:
-        * Scripts/webkitpy/tool/steps/cleanworkingdirectory.py:
-        * Scripts/webkitpy/tool/steps/cleanworkingdirectorywithlocalcommits.py:
-        * Scripts/webkitpy/tool/steps/closebug.py:
-        * Scripts/webkitpy/tool/steps/closebugforlanddiff.py:
-        * Scripts/webkitpy/tool/steps/closebugforlanddiff_unittest.py:
-        * Scripts/webkitpy/tool/steps/closepatch.py:
-        * Scripts/webkitpy/tool/steps/commit.py:
-        * Scripts/webkitpy/tool/steps/confirmdiff.py:
-        * Scripts/webkitpy/tool/steps/createbug.py:
-        * Scripts/webkitpy/tool/steps/editchangelog.py:
-        * Scripts/webkitpy/tool/steps/ensurebuildersaregreen.py:
-        * Scripts/webkitpy/tool/steps/ensurelocalcommitifneeded.py:
-        * Scripts/webkitpy/tool/steps/metastep.py:
-        * Scripts/webkitpy/tool/steps/obsoletepatches.py:
-        * Scripts/webkitpy/tool/steps/postdiff.py:
-        * Scripts/webkitpy/tool/steps/postdiffforcommit.py:
-        * Scripts/webkitpy/tool/steps/postdiffforrevert.py:
-        * Scripts/webkitpy/tool/steps/preparechangelog.py:
-        * Scripts/webkitpy/tool/steps/preparechangelogforrevert.py:
-        * Scripts/webkitpy/tool/steps/promptforbugortitle.py:
-        * Scripts/webkitpy/tool/steps/reopenbugafterrollout.py:
-        * Scripts/webkitpy/tool/steps/revertrevision.py:
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-        * Scripts/webkitpy/tool/steps/update.py:
-        * Scripts/webkitpy/tool/steps/updatechangelogswithreview_unittests.py:
-        * Scripts/webkitpy/tool/steps/updatechangelogswithreviewer.py:
-        * Scripts/webkitpy/tool/steps/validatereviewer.py:
-        * Scripts/webkitpy/tool/steps_references.py: Copied from WebKitTools/Scripts/webkitpy/steps_references.py.
-        * Scripts/webkitpy/unittests.py:
-
-2010-03-24  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, build fix only.
-
-        Abstract LayoutTestResults logic for easier reuse
-        https://bugs.webkit.org/show_bug.cgi?id=36579
-
-        * Scripts/webkitpy/buildbot_unittest.py: Add a missing import.
-
-2010-03-24  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Fix a stray comma to test landing an patch without review.
-
-        * Scripts/webkitpy/commitinfo.py:
-
-2010-03-24  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        In Scripts/webkitpy, moved commands_references.py and the commands
-        folder into webkitpy/patch.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36483
-
-        This is part of master bug 36093 to organize webkitpy.
-
-        * Scripts/webkitpy/commands: Removed.
-        * Scripts/webkitpy/commands/__init__.py: Removed.
-        * Scripts/webkitpy/commands/abstractsequencedcommand.py: Removed.
-        * Scripts/webkitpy/commands/commandtest.py: Removed.
-        * Scripts/webkitpy/commands/download.py: Removed.
-        * Scripts/webkitpy/commands/download_unittest.py: Removed.
-        * Scripts/webkitpy/commands/early_warning_system.py: Removed.
-        * Scripts/webkitpy/commands/early_warning_system_unittest.py: Removed.
-        * Scripts/webkitpy/commands/openbugs.py: Removed.
-        * Scripts/webkitpy/commands/openbugs_unittest.py: Removed.
-        * Scripts/webkitpy/commands/queries.py: Removed.
-        * Scripts/webkitpy/commands/queries_unittest.py: Removed.
-        * Scripts/webkitpy/commands/queues.py: Removed.
-        * Scripts/webkitpy/commands/queues_unittest.py: Removed.
-        * Scripts/webkitpy/commands/queuestest.py: Removed.
-        * Scripts/webkitpy/commands/sheriffbot.py: Removed.
-        * Scripts/webkitpy/commands/sheriffbot_unittest.py: Removed.
-        * Scripts/webkitpy/commands/upload.py: Removed.
-        * Scripts/webkitpy/commands/upload_unittest.py: Removed.
-        * Scripts/webkitpy/commands_references.py: Removed.
-        * Scripts/webkitpy/tool/commands: Copied from WebKitTools/Scripts/webkitpy/commands.
-        * Scripts/webkitpy/tool/commands/commandtest.py:
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/commands/early_warning_system.py:
-        * Scripts/webkitpy/tool/commands/early_warning_system_unittest.py:
-        * Scripts/webkitpy/tool/commands/openbugs_unittest.py:
-        * Scripts/webkitpy/tool/commands/queries_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/commands/queuestest.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot_unittest.py:
-        * Scripts/webkitpy/tool/commands/upload.py:
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-        * Scripts/webkitpy/tool/commands_references.py: Copied from WebKitTools/Scripts/webkitpy/commands_references.py.
-        * Scripts/webkitpy/tool/main.py:
-        * Scripts/webkitpy/unittests.py:
-
-2010-03-24  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Rename webkitpy.patch to webkitpy.tool
-        https://bugs.webkit.org/show_bug.cgi?id=36580
-
-        This is in preparation for the great webkitpy naming cleanup.
-
-        * Scripts/webkit-patch:
-        * Scripts/webkitpy/patch: Removed.
-        * Scripts/webkitpy/patch/__init__.py: Removed.
-        * Scripts/webkitpy/patch/patcher.py: Removed.
-        * Scripts/webkitpy/tool: Copied from WebKitTools/Scripts/webkitpy/patch.
-        * Scripts/webkitpy/tool/main.py: Copied from WebKitTools/Scripts/webkitpy/patch/patcher.py.
-        * Scripts/webkitpy/tool/patcher.py: Removed.
-
-2010-03-24  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Abstract LayoutTestResults logic for easier reuse
-        https://bugs.webkit.org/show_bug.cgi?id=36579
-
-        * Scripts/webkitpy/buildbot.py:
-         - Split out logic into new LayoutTestResults class.
-        * Scripts/webkitpy/buildbot_unittest.py:
-         - Rename the testing class to match.
-        * Scripts/webkitpy/commands/queries.py:
-         - Use the new LayoutTestResults class.
-
-2010-03-24  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Move Bugzilla.prompt_for_component to User.prompt_with_list for re-use
-        https://bugs.webkit.org/show_bug.cgi?id=36577
-
-        * Scripts/webkitpy/bugzilla.py:
-         - Move prompt_for_component to User
-        * Scripts/webkitpy/commands/queries.py:
-         - Add a missing argument_names declaration.
-        * Scripts/webkitpy/user.py:
-         - Add prompt_with_list
-         - Make staticmethods classmethods for easier mocking
-
-2010-03-24  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/36572> commit-log-editor: thinks mergeChangeLogs.pl is a ChangeLog file
-
-        Reviewed by Eric Seidel.
-
-        Fixes the following error when committing a file with
-        "ChangeLog" in the name that isn't a ChangeLog (like
-        mergeChangeLogs.pl from r56471 and r56472):
-
-            $ git commit .
-            Can't open WebKitTools/Scripts/webkitperl/VCSUtils_unittest/mergeChangeLog at commit-log-editor line 132.
-            error: There was a problem with the editor 'commit-log-editor'.
-            Please supply the message using either -m or -F option.
-
-        * Scripts/commit-log-editor: Added '$' to anchor "ChangeLog" to
-        the end of the file name when searching for ChangeLog files in a
-        commit.
-
-2010-03-24  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/36570> resolve-ChangeLogs: fall back to git-merge-file if ChangeLog can't be merged
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/resolve-ChangeLogs: Switched to exec git-merge-file if
-        the merge attempt fails.
-
-2010-03-24  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        webkit-patch or pre-commit hook should validate reviewer lines before committing
-        https://bugs.webkit.org/show_bug.cgi?id=26927
-
-        Validate that patches have valid reivewers listed in their ChangeLogs
-        before landing.  For patches without reviewers can be landed if their
-        ChangeLogs state that they are unreviewed.
-
-        * Scripts/webkitpy/changelogs.py:
-        * Scripts/webkitpy/commands/download.py:
-        * Scripts/webkitpy/commitinfo.py:
-        * Scripts/webkitpy/commitinfo_unittest.py:
-        * Scripts/webkitpy/mock_bugzillatool.py:
-        * Scripts/webkitpy/steps/__init__.py:
-        * Scripts/webkitpy/steps/validatereviewer.py: Added.
-
-2010-03-19  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Reviewed by David Levin.
-
-        Undefined names reported by pyflakes in python scripts
-        https://bugs.webkit.org/show_bug.cgi?id=36403
-
-        Attempt to use names that exist or can exist in the lexical
-        scope instead of not being available at all.
-
-        * Scripts/webkitpy/changelogs.py: Use self._content.
-        * Scripts/webkitpy/layout_tests/port/base.py: Use os.stat
-        * Scripts/webkitpy/layout_tests/test_types/fuzzy_image_diff.py: Use self._port
-        * Scripts/webkitpy/style/processors/cpp_unittest.py: Use expected_message_re
-
-2010-03-24  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/36560> resolve-ChangeLogs: git-rebase fails when resolve-ChangeLogs can't merge
-
-        Reviewed by Eric Seidel.
-
-        When resolve-ChangeLogs fails to merge a patch while running as
-        a git merge driver, it deletes the original file, which causes
-        an internal failure and stops git mid-merge:
-
-            fatal: Failed to execute internal merge
-
-        The fix is to use the --force switch with patch so that it will
-        always attempt to apply the patch.  (The change in
-        mergeChangeLogs() for the previous commit also fixed this, but
-        adding --force also prevents any potential user interaction that
-        patch may want to display.)
-
-        * Scripts/VCSUtils.pm:
-        (mergeChangeLogs): Added --force switch to patch command.  Also
-        changed to use the exit status from the patch command to
-        determine the return value for this method.
-        * Scripts/webkitperl/VCSUtils_unittest/mergeChangeLogs.pl: Added
-        test to cover this bug.
-
-2010-03-24  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/36560> resolve-ChangeLogs: move mergeChanges() into VCSUtils package
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/VCSUtils.pm:
-        (mergeChangeLogs): Copied from mergeChanges() in
-        resolve-ChangeLogs and renamed.  Added method documentation.
-        Fixed bug found by new tests where the original file to be
-        patched was deleted when cleaning up after a traditinal rejected
-        patch failed to apply.
-        * Scripts/resolve-ChangeLogs: Switched to using
-        mergeChangeLogs().
-        (mergeChanges): Moved to VCSUtils.pm and renamed to
-        mergeChangeLogs().
-        * Scripts/webkitperl/VCSUtils_unittest/mergeChangeLogs.pl: Added.
-
-2010-03-24  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add support for qt's unassigned list to webkit-patch assign-to-committer
-        https://bugs.webkit.org/show_bug.cgi?id=36559
-
-        * Scripts/webkitpy/bugzilla.py:
-         - Move Bugzilla.unassigned_email into Bug and make it a set.
-        * Scripts/webkitpy/bugzilla_unittest.py:
-         - Test the new Bug.is_unassigned method
-        * Scripts/webkitpy/commands/upload.py:
-         - Use the new Bug.is_unassigned method instead of an explicit ==
-        * Scripts/webkitpy/mock_bugzillatool.py:
-         - Bugzilla.unassigned_email no longer needs mocking
-
-2010-03-24  Kent Hansen  <kent.hansen@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Rename QWebSettings::XSSAuditorEnabled to XSSAuditingEnabled
-        https://bugs.webkit.org/show_bug.cgi?id=36522
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setXSSAuditorEnabled): Use the new name.
-
-2010-03-24  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Added to check-webkit-style support for a --debug flag.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36100
-
-        The --debug flag adjusts the logging level to DEBUG and
-        includes the logger name and level in each log message.
-
-        * Scripts/check-webkit-style:
-          - Changed the code to check for the --debug flag and pass
-            the result to the configure_logging() method.
-        * Scripts/webkitpy/style/checker.py:
-          - Added an is_debug parameter to configure_logging().
-          - Refactored configure_logging() by adding calls to
-            the following two methods: _create_log_handlers() and
-            _create_debug_log_handlers().
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Added unit tests for configure_logging() with is_debug True
-            by splitting the ConfigureLoggingTest class into
-            ConfigureLoggingTest and ConfigureLoggingTestBase, and
-            adding ConfigureLoggingDebugTest.
-        * Scripts/webkitpy/style/optparser.py:
-          - Updated the usage string.
-          - Added an is_debug data attribute to the CommandOptionValues
-            class.
-          - Added support for the --debug flag to the ArgumentParser.parse()
-            method.
-          - Also added extra error information to the parse() method in
-            the case of an invalid flag.
-        * Scripts/webkitpy/style/optparser_unittest.py:
-          - Updated the unit tests as necessary.
-          - Also fixed an issue with the CommandOptionValuesTest.test_eq()
-            unit test.
-
-2010-03-23  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Add TestNavigationController and TestWebWorker
-        https://bugs.webkit.org/show_bug.cgi?id=36489
-
-        Add TestNavigationController and TestWebWorker classes, which are
-        going to be used by DumpRenderTree Chromium port. These files are
-        based on:
-        - src/webkit/tools/test_shell/test_navigation_controller.{cc,h}
-        - src/webkit/tools/test_shell/test_web_worker.h
-        of Chromium rev.40492.
-
-        TestNavigationController has non-style changes.
-        - Change ContentState type: binary string -> WebHistoryItem
-        - Remove TestShell dependency by introducing NavigationHost interface.
-
-        * DumpRenderTree/chromium/TestNavigationController.cpp: Added.
-        * DumpRenderTree/chromium/TestNavigationController.h: Added.
-        * DumpRenderTree/chromium/TestWebWorker.h: Added.
-
-2010-03-23  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add support for revision -> build lookup in buildbot.py and layout test result parsing
-        https://bugs.webkit.org/show_bug.cgi?id=36474
-
-        * Scripts/webkitpy/bugzilla_unittest.py: Added a FIXME about sharing code.
-        * Scripts/webkitpy/buildbot.py: 
-         - Add support for looking up builds by revision number.
-         - Add support for fetching and parsing results.html files from buildbot.
-         - build_for_revision has an allow_failed_lookups option to work around the fact that
-           our buildbot's xmlrpc calls return failure on old revision numbers.
-         - Add parsing support for twisted directory listings.
-        * Scripts/webkitpy/buildbot_unittest.py:
-         - Unit test all the new code.
-        * Scripts/webkitpy/commands/queries.py:
-         - Add a new results-for command which prints all the results for a given revision (very slow due to slow revision lookup)
-
-2010-03-23  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Adam Roben.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36048
-
-        Detect if the Windows Platform SDK is missing when building with
-        Visual C++ Express Edition and inform the user to download it.
-
-        * Scripts/webkitdirs.pm:
-
-2010-03-23  Darin Adler  <darin@apple.com>
-
-        Tell Subversion about more directories that expect to have .pyc files.
-
-        * Scripts/webkitpy: Modified property svn:ignore.
-        * Scripts/webkitpy/irc: Added property svn:ignore.
-
-2010-03-23  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Adam Barth.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36149
-
-        Import the GNU readline interface to modify the behavior
-        of raw_input so as to provide line editing support. In
-        particular this will prevent "delete" characters from
-        appearing in the returned value for function raw_input.
-
-        * Scripts/webkitpy/user.py:
-
-2010-03-23  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Remove support for Qt v4.4
-        https://bugs.webkit.org/show_bug.cgi?id=36389
-
-        * DumpRenderTree/qt/main.cpp:
-        (main):
-        * QtLauncher/mainwindow.cpp:
-        (MainWindow::MainWindow):
-
-2010-03-22  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Make build_webkit_command() pass MAKEFLAGS environment variable to make.
-        https://bugs.webkit.org/show_bug.cgi?id=36440
-
-        * Scripts/webkitpy/webkitport.py:
-        * Scripts/webkitpy/webkitport_unittest.py:
-
-2010-03-22  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Change baseline_path() to point to the upstream locations for the
-        Chromium ports. Also change the reabselining scripts to use the
-        correct functions to get the baseline directories, and fix the
-        script's sys.path to pull in simplejson correctly.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36417
-
-        * Scripts/rebaseline-chromium-webkit-tests:
-          - fix sys.path to pick up simplejson properly
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-          - change baseline_path() to use webkit_baseline_path()
-          - error out correctly if we can't find the chromium base dir
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-          - call baseline_path(), not chromium_baseline_path()
-
-2010-03-22  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Refactored the cpu_count() code in executive.py.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36437
-
-        * Scripts/webkitpy/executive.py:
-          - Moved the import of the multiprocessing module to the top
-            of the file rather than importing from within a function.
-
-2010-03-22 Antonio Gomes <tonikitoo@webkit.org>
-
-        Unreviewed.
-
-        Rolling out r56183: http://trac.webkit.org/changeset/56183
-
-        https://bugs.webkit.org/show_bug.cgi?id=36244
-
-        Need to roll out because this patch will be re-worked by the author
-        and other reviewers agreed on it.
-
-2010-03-22  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Created a function for getting a module-specific logging.logger
-        based on the __file__ value of the module.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35821
-
-        This function allows us to get the module-specific logger for
-        a module without having to hard-code the fully-qualified name
-        of the module in the module itself.  The code can be the same
-        in every case: "_log = logutils.get_logger(__file__)".
-
-        * Scripts/webkitpy/init/logutils.py: Added.
-          - Added a module with a get_logger() function to return
-            a module-specific logger based on the module's __file__
-            variable.
-
-        * Scripts/webkitpy/init/logutils_unittest.py: Added.
-          - Added unit tests for logutils.py.
-
-        * Scripts/webkitpy/init/unittests.py:
-          - Added logutils_unittest to the list of imports.
-
-2010-03-22  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] REGRESSION (r56209): fast/media/print-restores-previous-mediatype.htm crashes
-        https://bugs.webkit.org/show_bug.cgi?id=36386
-
-        Fix the regression by implementing a null printer for Qt DRT.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::NullPrinter::NullPaintEngine::begin):
-        (WebCore::NullPrinter::NullPaintEngine::end):
-        (WebCore::NullPrinter::NullPaintEngine::type):
-        (WebCore::NullPrinter::NullPaintEngine::drawPixmap):
-        (WebCore::NullPrinter::NullPaintEngine::updateState):
-        (WebCore::NullPrinter::paintEngine):
-        (WebCore::DumpRenderTree::dryRunPrint):
-
-2010-03-20  Martin Robinson  <mrobinson@webkit.org>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] eventSender.zoomPageOut() bug?
-        https://bugs.webkit.org/show_bug.cgi?id=30575
-
-        Make zoomPage{In/Out}Callback respect the 1.2f zoom factor that DRT should be using.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (zoomIn): Added.
-        (zoomOut): Added.
-        (textZoomInCallback): Use zoomIn helper function.
-        (textZoomOutCallback): Use zoomOut helper function.
-        (zoomPageInCallback): Use zoomIn helper function, which respects zoom factor.
-        (zoomPageOutCallback): Use zoomOut helper function, which respects zoom factor.
-
-2010-03-20  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix after recent database API change.
-
-        * wx/browser/browser.cpp:
-        (MyApp::OnInit):
-
-2010-03-20  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Renamed UnitTestLogStream to TestLogStream in webkitpy.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36099
-
-        TestLogStream is more concise and more consistent with the name of
-        the module (logtesting rather than logunittesting) and its main
-        class (LogTesting rather than LogUnitTesting).
-
-        * Scripts/webkitpy/init/logtesting.py:
-          - Renamings.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Renamings.
-
-        * Scripts/webkitpy/style_references.py:
-          - Renamings.
-
-2010-03-20  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fixes for new method in LayoutTestController.
-
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setSpatialNavigationEnabled):
-        * wx/build/settings.py:
-
-2010-03-20  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Unreviewed, tool fix.
-
-        Remove vestiges of downstream directory names to unbreak rebaselining tool.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py: Changed paths to use WebKit repo.
-
-2010-03-20  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Re-enable the downstream test_expectations overrides file that was
-        disabled in bug 36396 / r56287.
-
-        https://bugs.chromium.org/show_bug.cgi?id=36401
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2010-03-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Disable the downstream override expectations temporarily to allow
-        us to test that we've upstreamed everything correctly. Also, stop
-        looking at the downstream baselines at all (now you will only be
-        able to update baselines upstream). In theory this should work, but
-        if we need to we can always add the downstream dirs back in.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36396
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-
-2010-03-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        fix typo in chromium test expectations overrides routine
-        https://bugs.webkit.org/show_bug.cgi?id=36397
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2010-03-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Flip the Chromium ports to look first for the test expectations
-        in LayoutTests/platform/chromium and only afterwards look in the
-        Chromium repo downstream for overrides.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36326
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2010-03-19  James Hawkins  <jhawkins@chromium.org>
-
-        Unreviewed.
-
-        Add myself to the committers list.
-
-        * Scripts/webkitpy/committers.py:
-
-2010-03-19  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        Fix SheriffBot exception lock when we can't retrieve the first build
-        from buildbot.  (I'll ask Eric to review this change after the fact,
-        but he's at lunch and I want to get the bot unlocked.)
-
-        * Scripts/webkitpy/buildbot.py:
-        * Scripts/webkitpy/buildbot_unittest.py:
-
-2010-03-19  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36380
-        websocket/tests/frame-lengths.html times out on Tiger bot
-
-        https://bugs.webkit.org/show_bug.cgi?id=35041
-        websocket/tests/frame-lengths.html / websocket/tests/simple-stress.html fail on Windows bot
-
-        Double the timeout (from 15 seconds to 30 seconds). We can increase it more, if necessary -
-        sampling the DRT process on Mac OS X takes much longer anyway, so it's better to avoid
-        timing out than to detect it early.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setWaitToDump):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::waitUntilDone):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        * Scripts/run-webkit-tests:
-
-2010-03-19  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Unreviewed.
-
-        Buildfix for Qt v4.5.
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::LauncherWindow):
-        (LauncherWindow::applyZoom):
-
-2010-03-19  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Operational tweaks to SheriffBot
-        https://bugs.webkit.org/show_bug.cgi?id=36385
-
-        These changes aren't pretty, but they're helpful to make SheriffBot
-        work operationally.  I plan to iterate in these areas, but I wanted to
-        get this patch landed so I could be running the bot against TOT.
-
-        * Scripts/webkitpy/commands/sheriffbot.py:
-        * Scripts/webkitpy/irc/ircbot.py:
-        * Scripts/webkitpy/thirdparty/autoinstalled/__init__.py:
-
-2010-03-19  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Help sheriff-bot avoid warning about flaky tests (and add more unit testing)
-        https://bugs.webkit.org/show_bug.cgi?id=36354
-
-        * Scripts/webkitpy/buildbot.py:
-         - Make Build creation easier to Mock and test
-        * Scripts/webkitpy/buildbot_unittest.py:
-         - Test finding green to red transitions and suspect revisions
-        * Scripts/webkitpy/commands/queries.py:
-         - Make what-broke note when builders have only failed once.
-
-2010-03-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Fix the rebaselining tool, which was broken by r36324 when I
-        added the concept of overridding expectations.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36374
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-
-2010-03-19  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Misc bug fixes to make the SheriffBot actually work
-        https://bugs.webkit.org/show_bug.cgi?id=36355
-
-        With these changes, I can actually run the sheriff-bot from start to
-        finish.
-
-        * Scripts/webkitpy/irc/ircproxy.py:
-        * Scripts/webkitpy/patch/patcher.py:
-        * Scripts/webkitpy/statusserver.py:
-
-2010-03-19  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        Actually import the sheriff-bot command so we can run it.  Also, move
-        the bot to #webkit-test so it doesn't cause a ruckus while we test it.
-
-        * Scripts/webkitpy/patch/patcher.py:
-        * Scripts/webkitpy/irc/ircbot.py:
-
-2010-03-19  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Second cut at SheriffBot
-        https://bugs.webkit.org/show_bug.cgi?id=36353
-
-        This patch should contain a complete SheriffBot that's capable of
-        saying reasonable things on IRC.  I had to refactor the use of
-        CommitInfo to make the SheriffBot testable, but I did the minimum
-        necessary.  We should grow webkitcheckout over time to contain the
-        knowledge of ChangeLogs from scm.
-
-        * Scripts/webkitpy/commands/sheriffbot.py:
-        * Scripts/webkitpy/commands/sheriffbot_unittest.py:
-        * Scripts/webkitpy/mock_bugzillatool.py:
-        * Scripts/webkitpy/patch/patcher.py:
-        * Scripts/webkitpy/webkitcheckout.py: Added.
-
-2010-03-19  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        Fix Hyatt's IRC nickname.
-
-        * Scripts/webkitpy/committers.py:
-
-2010-03-19  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        Add IRC nicknames for the non-reviewer committers.
-
-        * Scripts/webkitpy/committers.py:
-
-2010-03-19  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        More reviewer IRC nicknames.
-
-        * Scripts/webkitpy/committers.py:
-
-2010-03-19  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        Add a bunch of IRC nicknames for reviewers.
-
-        * Scripts/webkitpy/committers.py:
-
-2010-03-19  Zoltan Horvath  <zoltan@webkit.org>
-
-        Reviewed by Oliver Hunt.
-
-        Added USE_SYSTEM_MALLOC flag to build-webkit
-        https://bugs.webkit.org/show_bug.cgi?id=21272
-
-        Add system-alloc flag to build-webkit. It makes easy to switch
-        between system allocator and TCmalloc.
-
-        * Scripts/build-webkit:
-
-2010-03-19  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed "build" fix.
-
-        Of course, I caused a regression in the file that isn't tested.  :(
-
-        * Scripts/webkitpy/statusserver.py:
-
-2010-03-19  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add basic "who-broke-it" command and revision -> broken builder association code
-        https://bugs.webkit.org/show_bug.cgi?id=36352
-
-        The "what-broke" command prints builders and what revisions we suspect
-        broke them.  who-broke-it prints revisions and what builders we suspect
-        they broke.  The sheriff-bot needs this revision to broken builder mapping
-        so this change adds it!
-
-        * Scripts/webkitpy/buildbot.py:
-        * Scripts/webkitpy/commands/queries.py:
-
-2010-03-19  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Simplify BuildBot core builder code for easier re-use
-        https://bugs.webkit.org/show_bug.cgi?id=36350
-
-        I simply couldn't see anything through all this Yak-hair.
-
-        * Scripts/webkitpy/buildbot.py:
-        * Scripts/webkitpy/commands/queries.py:
-
-2010-03-19  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        committers.py should know IRC nicknames
-        https://bugs.webkit.org/show_bug.cgi?id=36349
-
-        I'll add the actual nicknames in another patch.
-
-        * Scripts/webkitpy/committers.py:
-        * Scripts/webkitpy/committers_unittest.py:
-
-2010-03-18  Anders Bakken  <agbakken@gmail.com>
-
-        Reviewed by Simon Hausmann.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36318
-
-        QtLauncher runs as a GuiClient by default in Qt Embedded which will
-        make it try to connect to an existing GuiServer. This patch makes it
-        run like a stand-alone app.
-
-        * QtLauncher/main.cpp:
-        (LauncherApplication::LauncherApplication):
-
-2010-03-19  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Move find_green_to_red_transition out of "what-broke" onto Builder for easier re-use
-        https://bugs.webkit.org/show_bug.cgi?id=36345
-
-        * Scripts/webkitpy/buildbot.py:
-        * Scripts/webkitpy/commands/queries.py:
-
-2010-03-19  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Actually pass the IRC password to the IRC object
-        https://bugs.webkit.org/show_bug.cgi?id=36346
-
-        I wanted to do this before, but both patches were in flight.  This
-        patch finally closes the loop and makes the IRCProxy system complete.
-
-        * Scripts/webkitpy/patch/patcher.py:
-
-2010-03-18  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add a StatusServer front end to the SVNRevision table on QueueStatusServer
-        https://bugs.webkit.org/show_bug.cgi?id=36344
-
-        No test because Browser was too hard to mock.  :(  I couldn't figure
-        out how to make Mock be a dictionary as well as an object.
-
-        * Scripts/webkitpy/statusserver.py:
-
-2010-03-18  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Split out CommitInfo class and add unit tests
-        https://bugs.webkit.org/show_bug.cgi?id=36343
-
-        Move more logic out of "what-broke" into a shared CommitInfo
-        class so that it can be used by other commands and unit tested.
-
-        * Scripts/webkitpy/commands/queries.py:
-        * Scripts/webkitpy/commitinfo.py: Added.
-        * Scripts/webkitpy/commitinfo_unittest.py: Added.
-        * Scripts/webkitpy/unittests.py:
-
-2010-03-18  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Fix LayoutTests/http/tests/appcache/max-size.html
-        https://bugs.webkit.org/show_bug.cgi?id=36207
-
-        Implement setAppCacheMaximumSize() for Qt.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setAppCacheMaximumSize):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-03-18  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        QueueStatusServer should be able to log broken bots
-        https://bugs.webkit.org/show_bug.cgi?id=36341
-
-        We need to add a new table to the QueueStatusServer to store persistent
-        information for the SheriffBot.  The new table will keep track of which
-        bots each SVN revision broke.
-
-        * QueueStatusServer/handlers/__init__.py:
-        * QueueStatusServer/handlers/svnrevision.py: Added.
-        * QueueStatusServer/handlers/updatebase.py: Added.
-        * QueueStatusServer/handlers/updatestatus.py:
-        * QueueStatusServer/handlers/updatesvnrevision.py: Added.
-        * QueueStatusServer/index.yaml:
-        * QueueStatusServer/main.py:
-        * QueueStatusServer/model/__init__.py:
-        * QueueStatusServer/model/svnrevision.py: Added.
-        * QueueStatusServer/templates/updatesvnrevision.html: Added.
-
-2010-03-18  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Add a new method to the Qt LayoutTestController for
-        changing media type and make the DRT support dry-run printing.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::dryRunPrint):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setMediaType):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-03-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Add upstream LayoutTests/platform/chromium* directories to the
-        baseline search path for new-run-webkit-tests in preparation for
-        upstreaming all of the Chromium baselines. Note that this does
-        not actually create the directories themselves, but that's okay.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36324
-
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-
-2010-03-18  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Anders Carlsson.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36327
-        Test that a plug-in can override Node methods of its element
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (normalizeOverride):
-        (pluginInvoke):
-        Override "normalize", and call back to let a test know that the plug-in was called.
-
-2010-03-17  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Add the concept of an "overrides" file for expectations so that we
-        can store test_expectations both upstream and downstream for a port
-        that runs both in webkit.org and in a separate repository (like
-        Chromium). Also add some unit tests for the expectations module.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36249
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations_test.py: Added.
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-03-18  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add an overlay QGraphicsTextItem to QtLauncher so we can display FPS info
-        on the launcher and not on the terminal anymore.
-
-        [Qt] QtLauncher's FPS info should be displayed on an overlay text item
-        https://bugs.webkit.org/show_bug.cgi?id=36244
-
-        * QtLauncher/webview.cpp:
-        (WebViewGraphicsBased::WebViewGraphicsBased):
-        (WebViewGraphicsBased::setFrameRateMeasurementEnabled):
-        (WebViewGraphicsBased::updateFrameRate):
-        * QtLauncher/webview.h:
-
-2010-03-18  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        First cut at SheriffBot
-        https://bugs.webkit.org/show_bug.cgi?id=36253
-
-        This patch contains a first attempt at writing a sheriff bot.
-        Currently, we're missing the logic that actually finds the SVN revision
-        numbers to complain about, but once we have that, we'll have the rest
-        of the infrustructure to ping IRC and to file bugs.
-
-        There's a lot to fill in for the SheriffBot, but this patch give us the
-        framework in which to do it.
-
-        This patch required a bit of refactoring of AbstractQueue because
-        SheriffBot is the first bot that doesn't process patches (it processes
-        SVN revisions).  Accordingly, I've factored out AbstractPatchQueue to
-        hold the parts of AbstractQueue that are specific to dealing with
-        patches.  Some of the choices here might not be obvious yet, but we can
-        tweak them as our needs become clearer.
-
-        * Scripts/webkitpy/commands/queues.py:
-        * Scripts/webkitpy/commands/queues_unittest.py:
-        * Scripts/webkitpy/commands/sheriffbot.py: Added.
-        * Scripts/webkitpy/commands/sheriffbot_unittest.py: Added.
-        * Scripts/webkitpy/mock_bugzillatool.py:
-            Added a MockIRC object to the mock tool.
-        * Scripts/webkitpy/multicommandtool.py:
-            Added a finalize method so the tool can disconnect from IRC
-            cleanly instead of just droping the socket.
-        * Scripts/webkitpy/multicommandtool_unittest.py:
-        * Scripts/webkitpy/patch/patcher.py:
-            Added support for talking to IRC.
-        * Scripts/webkitpy/unittests.py:
-            We should add a commands/unittests.py file at some point to make
-            the commands module more self-contained.
-
-2010-03-18  Antti Koivisto  <koivisto@iki.fi>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36102
-        [Qt] Scaling control API for tiled backing store
-        
-        Add animated smooth zooming to Qt launcher when in tiled mode.
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::LauncherWindow):
-        (LauncherWindow::zoomAnimationFinished):
-        (LauncherWindow::applyZoom):
-        (LauncherWindow::zoomIn):
-        (LauncherWindow::zoomOut):
-        * QtLauncher/webview.h:
-        (WebViewGraphicsBased::graphicsWebView):
-
-2010-03-18  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Support using IRC accounts with a password
-        https://bugs.webkit.org/show_bug.cgi?id=36287
-
-        Add a global option to specify an IRC password so we can use the
-        sheriffbot account (which needs a password).
-
-        * Scripts/webkitpy/irc/ircbot.py:
-        * Scripts/webkitpy/irc/ircproxy.py:
-        * Scripts/webkitpy/patch/patcher.py:
-
-2010-03-18  Eric Seidel  <eric@webkit.org>
-
-        Just fixing missing parenthesis typo, no review.
-
-        * Scripts/webkitpy/commands/queries.py: '%' has higher precedence than 'or', use parentheses.
-
-2010-03-18  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Adam Roben and Anders Carlsson.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36210
-        plugins/resize-from-plugin.html fails on some platforms
-
-        Turns out that most platforms don't use "cross-platform" main.cpp. Copied code added for
-        the test to their versions of the file.
-
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_set_window):
-        * DumpRenderTree/win/TestNetscapePlugin/main.cpp:
-        (NPP_SetWindow):
-
-2010-03-18  Leandro Pereira  <leandro@profusion.mobi>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add support to run-launcher to open the EFL example browser.
-        http://webkit.org/b/36181
-
-        * Scripts/webkitdirs.pm:
-        * Scripts/run-launcher:
-
-2010-03-18  Sergio Villar Senin  <svillar@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] Failing tests http/tests/misc/image-blocked-src-change.html
-        & http/tests/misc/image-blocked-src-no-change.html
-        https://bugs.webkit.org/show_bug.cgi?id=36227
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webViewConsoleMessage): print only the file name instead of the
-        whole URI when printing messages with local URI's
-
-2010-03-18  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Teach what-broke how to look up reviewer and author Committer objects by name
-        https://bugs.webkit.org/show_bug.cgi?id=36264
-
-        * Scripts/webkitpy/commands/queries.py:
-         - Add committer_by_name lookups for both reviewer and author
-         - Improve printing in the cases where lookups fail.
-        * Scripts/webkitpy/committers.py:
-         - Add committer_by_name
-        * Scripts/webkitpy/committers_unittest.py:
-         - Test committer_by_name
-
-2010-03-17  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        create-rollout should actually fill out the description
-        https://bugs.webkit.org/show_bug.cgi?id=36261
-
-        * Scripts/webkitpy/commands/download.py:
-            The % operator was applied to the wrong string.
-        * Scripts/webkitpy/commands/download_unittest.py:
-        * Scripts/webkitpy/commands/upload_unittest.py:
-        * Scripts/webkitpy/mock_bugzillatool.py:
-            Add support for seeing what we actually do with create_bug.
-
-2010-03-17  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Accelerated Compositing is now default on QtWebKit so the option
-        in QtLauncher must be true as default.
-
-        [Qt] QtLauncher's Accelerated Compositing option must be true as default
-        https://bugs.webkit.org/show_bug.cgi?id=36234
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::applyPrefs):
-        (LauncherWindow::toggleAcceleratedCompositing):
-        (LauncherApplication::handleUserOptions):
-
-2010-03-17  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Commit queue should ignore (probably red) builders when landing rollouts
-        https://bugs.webkit.org/show_bug.cgi?id=36169
-
-        When landing a rollout, the builders are probably red, so we need to
-        ignore them in the subprocess too.  Also, we might as well update the
-        working copy because we haven't validated anything about the current
-        revision prior to trying to land.
-
-        This change is testable, but it requires changing the mock executive to
-        log its arguments.  That will generate a lot of expectation changes, so
-        I'd like to do that in a separate patch.
-
-        * Scripts/webkitpy/commands/queues.py:
-
-2010-03-17  Chang Shu  <chang.shu@nokia.com>
-
-        Reviewed by Laszlo Gombos.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36139
-        [Qt] Clean up cache each time DumpRenderTree starts. This behavior 
-        matches other platforms, such as mac and gtk.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-
-2010-03-17  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        Turns out this needs to be a string.
-
-        * Scripts/webkitpy/bugzilla.py:
-
-2010-03-17  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add more infrastructure for sheriff-bot, including making what-broke more awesome
-        https://bugs.webkit.org/show_bug.cgi?id=36254
-
-        * Scripts/webkitpy/bugzilla.py:
-         - Made the various URL methods return None when passed None.
-        * Scripts/webkitpy/bugzilla_unittest.py:
-         - Test that the url methods work as expected.
-        * Scripts/webkitpy/buildbot.py:
-         - Add a static Build.build_url so that its possible to generate a build url without a Build object.
-         - Give users a URL in _fetch_xmlrpc_build_dictionary error message.
-        * Scripts/webkitpy/changelogs.py:
-         - Add a new ChangeLogEntry class to encapsulate entry-parsing logic.
-         - Add is_path_to_changelog to greatly simplify SCM.modified_changelogs code.
-         - Make ChangeLog.parse_latest_entry_from_file a public method.
-        * Scripts/webkitpy/changelogs_unittest.py:
-         - Add tests for new ChangeLog entry parsing.
-        * Scripts/webkitpy/commands/queries.py:
-         - Make "what-broke" not print "ok" builders, only failing ones.
-         - Print much more information on failing builders, including links and authorship/reviewer information.
-        * Scripts/webkitpy/commands/queues_unittest.py:
-         - Use a fake_checkout path since fixing the cwd (as part of fixing scm_unittests.py) was breaking tests.
-        * Scripts/webkitpy/mock_bugzillatool.py:
-         - Move MockSCM away from using os.getcwd() as that was fragile (and wrong).
-        * Scripts/webkitpy/patch/patcher.py:
-         - Remove code which was broken now that this file has moved.
-         - Code was also redundant now that SCM.find_checkout_root() exists.
-        * Scripts/webkitpy/scm.py:
-         - Greatly simplify modified_changelogs now that I understand list comprehensions.
-         - Expect ChangeLogEntry objects instead of raw strings.
-         - Add changed_files_for_revision, committer_email_for_revision and contents_at_revision
-         - Add commit_with_message argument to all sites since someone half-added it before. :(
-         - Get rid of copy/paste code using _status_regexp()
-        * Scripts/webkitpy/scm_unittest.py:
-         - Fix these tests!
-         - Add new tests for new scm code.
-         - Fix spelling of "awsome" to "awesome".
-
-2010-03-17  Daniel Bates  <dbates@rim.com>
-
-        Rubber-stamped by David Levin.
-
-        Add myself to the list of reviewers.
-
-        * Scripts/webkitpy/committers.py:
-
-2010-03-17  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Change post-rollout to create-rollout and have it make a new bug
-        instead of posting the rollout to the old bug.
-        https://bugs.webkit.org/show_bug.cgi?id=36250
-
-        The new bug blocks the old bug instead of adding more complexity to the
-        old bug.  One tricky question is whether to create the bug if we're
-        unable to create a rollout patch.  In this patch, we do create the bug,
-        but we might revist this question in the future.
-
-        * Scripts/webkitpy/bugzilla.py:
-        * Scripts/webkitpy/commands/download.py:
-        * Scripts/webkitpy/commands/download_unittest.py:
-        * Scripts/webkitpy/steps/createbug.py:
-
-2010-03-17  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add a way for the bots to send messages to IRC
-        https://bugs.webkit.org/show_bug.cgi?id=36235
-
-        We'll use these classes to notify #webkit about bad SVN revisions.
-        This patch just has some skeleton code for us to play with.
-
-        * Scripts/webkitpy/irc/__init__.py: Added.
-        * Scripts/webkitpy/irc/ircbot.py: Added.
-            A bot that knows how to talk to IRC.
-        * Scripts/webkitpy/irc/ircproxy.py: Added.
-            We need to run the bot on its own thread because the irclib needs
-            its own mainloop.  This class provides an abstraction of the
-            threading.
-        * Scripts/webkitpy/irc/messagepump.py: Added.
-        * Scripts/webkitpy/irc/messagepump_unittest.py: Added.
-        * Scripts/webkitpy/irc/threadedmessagequeue.py: Added.
-            A thread-safe message queue for sending messages from the main
-            thread to the IRC thread.
-        * Scripts/webkitpy/irc/threadedmessagequeue_unittest.py: Added.
-        * Scripts/webkitpy/irc/unittests.py: Added.
-        * Scripts/webkitpy/thirdparty/autoinstalled/__init__.py:
-            Autoinstall irclib
-        * Scripts/webkitpy/unittests.py:
-
-2010-03-17  Victor Wang  <victorw@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Fix image_diff syntax in webkitpy/port/base.py.
-        The syntax is wrong if diff_filename is specified.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36230
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-
-2010-03-16  Diego Gonzalez  <diego.gonzalez@openbossa.org>
-
-        Reviewed by Kenneth Christiansen.
-
-        Provide to QtLauncher a way to change the ViewportUpdateMode
-        when it's in graphics based mode.
-
-        [Qt] Make QtLaucher able to select the ViewportUpdateMode
-        https://bugs.webkit.org/show_bug.cgi?id=36175
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::selectViewportUpdateMode):
-        (LauncherWindow::createChrome):
-
-2010-03-17  Zoltan Horvath  <zoltan@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Ambiguous error message when building for unspecified platform
-        https://bugs.webkit.org/show_bug.cgi?id=30203
-
-        Add an extra line information to the error message.
-
-        * Scripts/webkitdirs.pm:
-
-2010-03-16  Adam Barth  <abarth@webkit.org>
-
-        No review, rolling out r56044.
-        http://trac.webkit.org/changeset/56044
-        https://bugs.webkit.org/show_bug.cgi?id=36048
-
-        This patch broke Windows Debug (Tests)
-
-        * Scripts/webkitdirs.pm:
-
-2010-03-16  John Abd-El-Malek  <jam@chromium.org>
-
-        Reviewed by Darin Fisher.
-
-        Give keyboard focus to PluginDocuments by default
-        https://bugs.webkit.org/show_bug.cgi?id=36147
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (pluginAllocate):
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.h:
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.cpp:
-        (NPP_New):
-        (NPP_SetWindow):
-        (handleEventCarbon):
-        (handleEventCocoa):
-
-2010-03-16  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        Fix run-webkit-httpd on Windows.
-
-        * Scripts/webkitperl/httpd.pm:
-
-2010-03-16  Alexey Proskuryakov  <ap@apple.com>
-
-        Tiger build fix.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp: (pluginGetProperty):
-        Added more type casts to shut down warnings.
-
-2010-03-16  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36184
-        YouTube video resizing doesn't work with OOP plug-ins
-
-        Added a resizeTo() method, which calls resizePlugin() in JS with the same arguments,
-        and a lastSetWindowArguments property, which returns a string describing the last NPWindow
-        passed to NPN_SetWindow.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (pluginGetProperty):
-        (testResizeTo):
-        (pluginInvoke):
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.h:
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.cpp:
-        (NPP_SetWindow):
-
-2010-03-16  Joanmarie Diggs  <joanmarie.diggs@gmail.com>
-
-        Reviewed by Xan Lopez.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35504
-        [Gtk] Evaluate and fix AtkTable for layout tables
-
-        Implements rowCount and columnCount for Gtk in DRT.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::rowCount):
-        (AccessibilityUIElement::columnCount):
-
-2010-03-15  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add "what-broke" command for debugging when the tree broke
-        https://bugs.webkit.org/show_bug.cgi?id=36157
-
-        This is another step towards automated sheriffing of the webkit tree.
-        With this logic our scripts are able to determine what revision broke the
-        tree.  Buildbot should do this for us, but unfortunately buildbot doesn't
-        expose this kind of aggregate information.
-
-        * Scripts/webkitpy/buildbot.py:
-         - Add new Builder and Build classes (which will eventually replace the custom dictionaries previously used).
-         - Split out more network logic into _fetch methods which will eventually be their own class for mocking.
-         - Use XMLRPC to communicate with the buildbot master instead of scraping build pages.
-        * Scripts/webkitpy/buildbot_unittest.py:
-         - Test the newly added buildbot classes.
-        * Scripts/webkitpy/commands/queries.py:
-         - Add an experimental what-broke command.
-
-2010-03-15  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Eric Seidel.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36048
-
-        Detect if the Windows Platform SDK is missing when building with
-        Visual C++ Express Edition and inform the user to download it.
-
-        * Scripts/webkitdirs.pm:
-
-2010-03-15  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Let commit-queue land rollout patches even when the tree is red
-        https://bugs.webkit.org/show_bug.cgi?id=36155
-
-        Now the commit-queue will land patches whose name begins with "ROLLOUT "
-        even if the tree is red.  The patches still go through the usual build
-        and test process, but they can be landed while the tree is on fire.
-
-        * Scripts/webkitpy/bugzilla.py:
-        * Scripts/webkitpy/commands/queues.py:
-        * Scripts/webkitpy/commands/queues_unittest.py:
-        * Scripts/webkitpy/commands/queuestest.py:
-        * Scripts/webkitpy/mock_bugzillatool.py:
-
-2010-03-15  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add webkit-patch post-rollout to upload rollouts to bugs.webkit.org for easy committing
-        https://bugs.webkit.org/show_bug.cgi?id=36154
-
-        This new command is a mashup of prepare-rollout and post.  This command
-        will be used by an experimental bot to post rollouts of patches that
-        break things to bugs.webkit.org where they can be landed with the
-        greatest of ease.
-
-        * Scripts/webkitpy/commands/download.py:
-        * Scripts/webkitpy/commands/download_unittest.py:
-        * Scripts/webkitpy/steps/__init__.py:
-        * Scripts/webkitpy/steps/postdiffforrevert.py: Added.
-
-2010-03-15  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        webkit-patch rollout should error out on conflicts
-        https://bugs.webkit.org/show_bug.cgi?id=36151
-
-        Instead of blindingly plowing ahead, we now throw an exception if there
-        are conflicts after applying a reverse diff.
-
-        * Scripts/webkitpy/scm.py:
-
-2010-03-15  Chris Fleizach  <cfleizach@apple.com>
-
-        Unreviewed layout test fix.
-
-        VO not able to perform a VO-spacebar on facebook links
-        https://bugs.webkit.org/show_bug.cgi?id=36132
-
-        GTK needs to implement press for this test to work.
-     
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::press):
-
-2010-03-15  Chris Fleizach  <cfleizach@apple.com>
-
-        Unreviewed layout test fix.
-
-        VO not able to perform a VO-spacebar on facebook links
-        https://bugs.webkit.org/show_bug.cgi?id=36132
-
-        Windows needs to implement press in DRT.
-
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::press):
-
-2010-03-15  Chris Fleizach  <cfleizach@apple.com>
-
-        Unreviewed. Fix break of layout tests on win and gtk.
-
-        VO not able to perform a VO-spacebar on facebook links
-        https://bugs.webkit.org/show_bug.cgi?id=36132
-
-        Attempting to implement press action for windows and gtk.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::press):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::press):
-
-2010-03-15  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Beth Dakin.
-
-        VO not able to perform a VO-spacebar on facebook links
-        https://bugs.webkit.org/show_bug.cgi?id=36132
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (pressCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::press):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::press):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::press):
-
-2010-03-15  Mark Rowe  <mrowe@apple.com>
-
-        Add a new build slave to replace the existing SnowLeopard Leaks build slave which
-        appears to be suffering a slow and painful death at the hands of its graphics hardware.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2010-03-15  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Fix a minor case where we'd deference a null pointer if we tried
-        to run new-run-webkit-tests on an unsupported platform (e.g.
-        Cygwin's python version).
-
-        https://bugs.webkit.org/show_bug.cgi?id=36076
-
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-
-2010-03-15  Darin Adler  <darin@apple.com>
-
-        Tell Subversion about more directories that expect to have .pyc files.
-
-        * Scripts/webkitpy/layout_tests: Added property svn:ignore.
-        * Scripts/webkitpy/layout_tests/port: Added property svn:ignore.
-
-2010-03-15  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Operational scripts from running the EWS
-        https://bugs.webkit.org/show_bug.cgi?id=36097
-
-        These are the scripts I use to manage the EWS on EC2.  If someone other
-        than me wants to run the EWS, these scripts might be helpful.
-
-        * EWSTools/boot.sh: Added.
-        * EWSTools/create-webkit-git: Added.
-        * EWSTools/screen-config: Added.
-        * EWSTools/start-queue.sh: Added.
-
-2010-03-14  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        Fix the webkit-patch bots.  Turns out they need the path of the main
-        script to run properly.
-
-        * Scripts/webkit-patch:
-        * Scripts/webkitpy/patch/patcher.py:
-
-2010-03-14  Darin Adler  <darin@apple.com>
-
-        Tell Subversion about more directories that expect to have .pyc files.
-
-        * Scripts/webkitpy/init: Added property svn:ignore.
-        * Scripts/webkitpy/patch: Added property svn:ignore.
-        * Scripts/webkitpy/thirdparty: Added property svn:ignore.
-        * Scripts/webkitpy/thirdparty/autoinstalled: Added property svn:ignore.
-
-2010-03-14  Antti Koivisto  <koivisto@iki.fi>
-
-        Reviewed by Simon Hausmann.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35146
-        Support tiled backing store
-
-        QtLauncher support and build flag in build-webkit.
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::applyPrefs):
-        (LauncherWindow::toggleTiledBackingStore):
-        (LauncherWindow::toggleResizesToContents):
-        (LauncherWindow::createChrome):
-        (LauncherApplication::handleUserOptions):
-        * QtLauncher/webview.cpp:
-        (WebViewGraphicsBased::WebViewGraphicsBased):
-        (WebViewGraphicsBased::setResizesToContents):
-        (WebViewGraphicsBased::resizeEvent):
-        * QtLauncher/webview.h:
-        * Scripts/build-webkit:
-
-2010-03-13  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        The webkit-patch script now displays a warning if run using
-        a version of Python less than 2.5.  This will help users
-        understand why webkit-patch is erroring out if they are
-        using Python 2.4, for example.
-
-        https://bugs.webkit.org/show_bug.cgi?id=31533
-
-        * Scripts/webkit-patch:
-          - Moved most of the file contents to webkitpy/patch/patcher.py
-            so the Python version can be checked before interpreting
-            any code that can cause the script to error out.
-          - Added a configure_logging() method to enable any version
-            warnings to show up.
-          - Added a main() method with calls to configure_logging(),
-            check_version(), and the main webkit patch method.
-
-        * Scripts/webkitpy/patch/__init__.py: Copied from WebKitTools/QueueStatusServer/filters/__init__.py.
-          - This file is required to make a folder a package.
-
-        * Scripts/webkitpy/patch/patcher.py: Added.
-          - Moved code from Scripts/webkit-patch.
-
-2010-03-13  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Changed test-webkitpy so that messages logged as a side-effect
-        of unit-testing code do not get displayed to the screen.  These
-        messages clutter up the unit test results if not filtered out.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35835
-
-        * Scripts/test-webkitpy:
-          - Adjusted the configure_logging() method to filter out any
-            log messages from webkitpy.
-          - Also added an INFO message stating that most console logging
-            is getting suppressed.
-
-        * Scripts/webkitpy/init/versioning.py:
-          - Added a log parameter to the check_version() method.
-
-        * Scripts/webkitpy/init/versioning_unittest.py:
-          - Qualified a call to check_version() with the parameter names.
-
-2010-03-13  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        The test-webkitpy script now warns the user if the script is
-        being run using a Python version different from the minimum
-        version the webkitpy package was meant to support.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35788
-
-        Warning developers if their Python version is too low will help
-        them understand why test-webkitpy is failing.  Secondly, warning
-        developers if their Python version is higher than the minimum will
-        help them understand that their changes may not be okay for the
-        minimum supported version, even if test-webkitpy is passing.
-
-        * Scripts/test-webkitpy:
-          - Moved the "from ..._unittest import *" lines to the new
-            file Scripts/webkitpy/unittests.py.  This will allow the
-            version-check warning to be displayed even if an error occurs
-            while interpreting (i.e. importing) the unit test code.
-          - Added configure_logging() to configur logging for test-webkitpy.
-          - Added an init() method to configure logging and check the
-            current Python version.
-
-        * Scripts/webkitpy/init/unittests.py: Added.
-          - Added a file to import all unit test modules in the
-            webkitpy.init package.
-
-        * Scripts/webkitpy/init/versioning.py: Added.
-          - Added a _MINIMUM_SUPPORTED_PYTHON_VERSION variable and set
-            it equal to 2.5.
-          - Added a compare_version() method to compare the current Python
-            version against a target version.
-          - Added a check_version() method to check the current Python
-            version against the current minimum supported version, and to
-            log a warning message if the check fails.
-
-        * Scripts/webkitpy/init/versioning_unittest.py: Added.
-          - Added unit tests for the functions in versioning.py.
-
-        * Scripts/webkitpy/style/unittests.py:
-          - Fixed/updated a code comment.
-
-        * Scripts/webkitpy/unittests.py: Added.
-          - Moved the "from ..._unittest import *" lines from test-webkitpy.
-
-2010-03-13  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Moved all code in webkitpy/__init__.py to another location.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35828
-
-        Keeping webkitpy/__init__.py free of non-trivial code allows
-        calling code to import initialization code from webkitpy
-        before any errors or log messages occur due to code in
-        __init__.py.  Such initialization code can include things like
-        version checking code and logging configuration code.  This
-        also lets us move the autoinstall initialization code to a
-        location where it only executes if it is needed -- something
-        we have done in this patch.
-
-        * Scripts/webkitpy/__init__.py:
-          - Moved all executable code to the following location:
-            webkitpy/thirdparty/autoinstalled/__init__.py
-          - Added a code comment to keep this file free of non-trivial
-            code.
-
-        * Scripts/webkitpy/bugzilla.py:
-          - Updated mechanize import statement.
-
-        * Scripts/webkitpy/networktransaction.py:
-          - Updated mechanize import statement.
-
-        * Scripts/webkitpy/networktransaction_unittest.py:
-          - Updated mechanize import statement.
-
-        * Scripts/webkitpy/statusserver.py:
-          - Updated mechanize import statement.
-
-        * Scripts/webkitpy/thirdparty/autoinstalled/__init__.py: Added.
-          - Copied the code from webkitpy/__init__.py and updated it
-            as necessary.
-
-2010-03-13  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Moved webkitpy/mock.py into webkitpy/thirdparty since it is
-        third-party code.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35499
-
-        Updated the import statement in all of the below except where noted.
-
-        * Scripts/webkitpy/bugzilla_unittest.py:
-        * Scripts/webkitpy/commands/commandtest.py:
-        * Scripts/webkitpy/commands/download_unittest.py:
-        * Scripts/webkitpy/commands/early_warning_system_unittest.py:
-        * Scripts/webkitpy/commands/queries_unittest.py:
-        * Scripts/webkitpy/commands/queues_unittest.py:
-        * Scripts/webkitpy/commands/queuestest.py:
-        * Scripts/webkitpy/commands/upload.py:
-        * Scripts/webkitpy/commands/upload_unittest.py:
-        * Scripts/webkitpy/commands_references.py: Added.
-          - Added a file containing an absolute import of Mock so that
-            the imports in the commands folder can import from this file
-            (similar to style_references.py).  This helps limit the
-            number of affected files in future refactorings.
-
-        * Scripts/webkitpy/credentials_unittest.py:
-        * Scripts/webkitpy/mock.py: Removed.
-          - Moved to Scripts/webkitpy/thirdparty.
-
-        * Scripts/webkitpy/mock_bugzillatool.py:
-        * Scripts/webkitpy/patchcollection_unittest.py:
-        * Scripts/webkitpy/steps/closebugforlanddiff_unittest.py:
-        * Scripts/webkitpy/steps/steps_unittest.py:
-        * Scripts/webkitpy/steps/updatechangelogswithreview_unittests.py:
-        * Scripts/webkitpy/steps_references.py: Added.
-          - Added a file containing an absolute import of Mock so that
-            the imports in the steps folder can import from this file
-            (similar to style_references.py).  This helps limit the
-            number of affected files in future refactorings.
-
-        * Scripts/webkitpy/thirdparty/mock.py: Copied from WebKitTools/Scripts/webkitpy/mock.py.
-          - Also eliminated trailing white space and carriage returns.
-
-2010-03-12  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Amend incorrect typo patch for QtLauncher.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35877
-
-        * QtLauncher/webview.cpp:
-        (WebViewGraphicsBased::setFrameRateMeasurementEnabled):
-
-2010-03-13  Victor Wang  <victorw@chromium.org>
-
-        Add appengine app to host and serve webkit layout test results.
-
-        The app allows you post test result files (json) and serve them up.
-        Chromium flakiness dashboard will first use this app to host results.json
-        and expectations.json, but the files hosted by this app are not limited
-        to chromium results or json files. It can be used to host other files if needed.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35944
-
-        * TestResultServer: Added.
-        * TestResultServer/app.yaml: Added.
-        * TestResultServer/handlers: Added.
-        * TestResultServer/handlers/__init__.py: Added.
-        * TestResultServer/handlers/menu.py: Added.
-        * TestResultServer/handlers/testfilehandler.py: Added.
-        * TestResultServer/index.yaml: Added.
-        * TestResultServer/main.py: Added.
-        * TestResultServer/model: Added.
-        * TestResultServer/model/__init__.py: Added.
-        * TestResultServer/model/testfile.py: Added.
-        * TestResultServer/stylesheets: Added.
-        * TestResultServer/stylesheets/form.css: Added.
-        * TestResultServer/stylesheets/menu.css: Added.
-        * TestResultServer/stylesheets/testfile.css: Added.
-        * TestResultServer/templates: Added.
-        * TestResultServer/templates/menu.html: Added.
-        * TestResultServer/templates/showfilelist.html: Added.
-        * TestResultServer/templates/uploadform.html: Added.
-
-2010-03-13  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Reviewed by David Levin.
-
-        new-run-webkit-tests fails with --debug option.
-        https://bugs.webkit.org/show_bug.cgi?id=36067
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-
-2010-03-13  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add "Show FPS" menu option to QtLauncher.
-
-        [Qt] QtLauncher need a menu option to show/hide FPS
-        https://bugs.webkit.org/show_bug.cgi?id=35794
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::showFPS):
-        (LauncherWindow::createChrome):
-
-2010-03-13  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add a "Toggle FullScreen" option to QtLauncher Menu.
-
-        [Qt] QtLauncher needs an option to toggle FullScreen Mode
-        https://bugs.webkit.org/show_bug.cgi?id=35755
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::init):
-        (LauncherWindow::eventFilter):
-        (LauncherWindow::initializeView):
-        (LauncherWindow::toggleFullScreenMode):
-        (LauncherWindow::createChrome):
-
-2010-03-12  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Fix typo in websocket_server (path_from_base instead of 
-        path_from_chromium_base).
-
-        https://bugs.webkit.org/show_bug.cgi?id=36074
-
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-
-2010-03-12  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        new-run-webkit-tests --new-baseline doesn't work at all.
-
-        It attempts to call a method that isn't defined. To fix it, I
-        removed the unnecessary and unnecessarily confusing 'platform'
-        argument to the test_type constructor and use the Port object that
-        is passed in instead, since we are only ever generating a baseline
-        from the port that is currently executing.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36046
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py:
-
-2010-03-12  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Fix new-run-webkit-tests --run-singly
-
-        This script option is currently broken - the script attempts to
-        dereference methods and variables that don't exist, which causes
-        the Chromium Linux valgrind bot to be quite unhappy. This has been
-        broken since r54449 when I renamed Port.start_test_driver to
-        Port.start_driver.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36042
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_shell_thread.py:
-
-2010-03-12  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
-
-        Fix critical being printed to stderr on every test. This is
-        because the jar is only being created when soup hits the HTTP
-        path. We should reconsider the time of its creation.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-
-2010-03-12  Adam Roben  <aroben@apple.com>
-
-        Teach prepare-ChangeLog to find modified selectors in CSS files
-
-        Reviewed by Tim Hatcher.
-
-        Fixes <http://webkit.org/b/36064> prepare-ChangeLog should extract
-        modified selectors from CSS files
-
-        * Scripts/prepare-ChangeLog:
-        (get_function_line_ranges): Call get_selector_line_ranges_for_css for
-        .css files.
-        (get_selector_line_ranges_for_css): Added. Finds selectors and their
-        line ranges and returns them.
-
-2010-03-12  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
-
-        Build fix (for EWS). Make sure the new code builds on older soup.
-
-        Thanks to Dan Winship.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setAlwaysAcceptCookies):
-
-2010-03-12  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
-
-        Reviewed by Eric Carlson.
-
-        [GTK] DRT does not handle cookie policy setting
-        https://bugs.webkit.org/show_bug.cgi?id=36056
-
-        Implement cookie accept policy setting for GTK+'s LayoutTestController.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setAlwaysAcceptCookies):
-
-2010-03-12  Adam Langley  <agl@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [chromium]: update Linux layout test scripts for RedHat like systems.
-
-        (Tested on Fedora 12.)
-
-        https://bugs.webkit.org/show_bug.cgi?id=35867
-
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-
-2010-03-12  Adam Roben  <aroben@apple.com>
-
-        Make svn-create-patch's diffs of ObjC header files more readable
-
-        Fixes <http://webkit.org/b/36055>.
-
-        Reviewed by John Sullivan.
-
-        * Scripts/svn-create-patch:
-        (diffOptionsForFile): Added. Returns the options that should be passed
-        to diff for the given file. All the options are the same for all
-        files, except for the option to specify which lines should be used as
-        hunk headers.
-        (generateDiff): Use diffOptionsForFile to get the options to pass to
-        diff.
-        (hunkHeaderLineRegExForFile): Added. Returns the regular expression
-        that should be used by diff to identify lines that should be included
-        after the "@@" in the hunk header lines of the diff. For ObjC[++]
-        source files, we use any lines starting with -, +, or
-        @implementation/@interface/@protocol. For ObjC[++] header files (which
-        we assume to be any .h files in a mac/ or objc/ directory), we use any
-        lines starting with @implementation/@interface/@protocol.
-
-2010-03-12  Jochen Eisinger  <jochen@chromium.org>
-
-        Reviewed by Jeremy Orlow.
-
-        Introduce setWillSendRequestClearHeader to LayoutTestController to selectively remove headers in willSendRequest. Used in http/tests/security/no-referrer.html
-        https://bugs.webkit.org/show_bug.cgi?id=35920
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setWillSendRequestClearHeaderCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::willSendRequestClearHeaders):
-        (LayoutTestController::setWillSendRequestClearHeader):
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        (-[ResourceLoadDelegate webView:resource:willSendRequest:redirectResponse:fromDataSource:]):
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp:
-        (ResourceLoadDelegate::willSendRequest):
-
-2010-03-11  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Unreviewed.
-
-        Fix typo in websocket_server.py
-
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-
-2010-03-11  Garret Kelly  <gdk@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        Fixing minor typo in the commit queue status page.
-        https://bugs.webkit.org/show_bug.cgi?id=35979
-
-        * Scripts/webkitpy/commands/queues.py:
-
-2010-03-11  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Unreviewed.
-
-        Fix for WebSocket layout test runner on chromium/win port.
-
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py: register_cygwin and set CYGWIN_PATH
-
-2010-03-11  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by David Kilzer.
-
-        <rdar://problem/7745082> Make it possible to build WebKit for older Mac OS X versions from the current Mac OS X version
-
-        Default to using the appropriate SDK if the target Mac OS X version is not the current Mac OS X version.
-
-        * DumpRenderTree/mac/Configurations/Base.xcconfig:
-
-2010-03-11  Victor Wang  <victorw@chromium.org>
-
-        Reviewed by dglazkov@chromium.org.
-
-        rebaseline_chromium_webkit_tests can generate new baselines for
-        all platforms so it needs to know two ports in order to work correctly:
-        the port that the script is running on and the port that it generates
-        new baselines for. Update rebaselining tool to handle both port correctly.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36032
-
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-
-2010-03-11  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Tim Hatcher.
-
-        <rdar://problem/7745082> Make it possible to build WebKit for older Mac OS X versions from the current Mac OS X version
-
-        Introduce TARGET_MAC_OS_X_VERSION_MAJOR to represent the Mac OS X version that is being targeted.  It defaults to the
-        current Mac OS X version unless otherwise specified.
-
-        Key off TARGET_MAC_OS_X_VERSION_MAJOR where we'd previously been keying off MAC_OS_X_VERSION_MAJOR.
-
-        Explicitly map from the target Mac OS X version to the preferred compiler since Xcode's default compiler choice
-        may not be usable when targetting a different Mac OS X version.
-
-        Key off TARGET_GCC_VERSION rather than MAC_OS_X_VERSION_MAJOR in locations where we'd previously been keying off
-        MAC_OS_X_VERSION_MAJOR but the decision is really related to the compiler version being used.
-
-        * DumpRenderTree/mac/Configurations/Base.xcconfig:
-        * DumpRenderTree/mac/Configurations/DebugRelease.xcconfig:
-        * DumpRenderTree/mac/DumpRenderTree.mm: Wrap the include of mach-o/getsect.h in 'extern "C"' as some versions of the
-        header in older SDKs do not do this inside the header.
-
-2010-03-11  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Geoff Garen.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35965
-        <rdar://problem/7742771> Crash when passing an object returned from plug-in back to the plug-in
-
-        Made rememberedObject a member of PluginObject. A plug-in must not use its references
-        to browser NPObjects after being destroyed, but this wasn't the case with static variable.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (pluginInvoke):
-        (pluginInvalidate):
-        (pluginAllocate):
-        (pluginDeallocate):
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.h:
-
-2010-03-11  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35905
-        REGRESSION(55699?): media/video-no-autoplay.html times out on Leopard Commit Bot
-
-        Make sure we reset the WebGL preference, so that WebGL doesn't get left
-        on after being enabled via layoutTestController.overridePreference(),
-        which in turn causes accelerated compositing to be enabled on Leopard
-        when we don't want it to be.
-        
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-
-2010-03-10  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        rebaseline_chromium_webkit_tests doesn't handle other plaforms
-        correctly (e.g., if you run on the Mac platform and try to
-        rebaseline the WIN results, the result gets written into
-        platform/mac instead of platform/chromium-win). Also, this script
-        doesn't work on non-Chromium ports, so we need to fix that at some
-        point.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35982
-
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-
-2010-03-10  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Simon Hausmann.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35840
-
-        Updates the subroutine builtDylibPathForName() so that it adds the "d" suffix to
-        the QtWebKit library name on Windows. This change makes run-launcher work again
-        under Windows. Moreover, this change corresponds to the change made in change-
-        set 53924 <http://trac.webkit.org/changeset/53924>.
-
-        * Scripts/webkitdirs.pm:
-
-2010-03-10  Adam Roben  <aroben@apple.com>
-
-        Roll out the prepare-ChangeLog part of r55870
-
-        This change wasn't needed (prepare-ChangeLog calls svn-create-patch
-        when it's asked to print out diffs for the user) and was screwing up
-        its ability to find changed function names.
-
-        * Scripts/prepare-ChangeLog:
-        (diffCommand): Change the options we pass to svn-diff back to their
-        pre-r55870 form.
-
-2010-03-10  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Add Support for WebKitEnableCaretBrowsing to Qt DRT
-
-        Unskip test fast/events/multiline-link-arrow-navigation.html
-
-        https://bugs.webkit.org/show_bug.cgi?id=35593
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::resetSettings):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::overridePreference):
-        (LayoutTestController::setCaretBrowsingEnabled):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-03-10  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Holger Freyther.
-
-        QtLauncher: Fix typo in conditional statement in
-                    WebViewGraphicsBased::setFrameRateMeasurementEnabled.
-
-        '=' should be '=='!
-
-        https://bugs.webkit.org/show_bug.cgi?id=35877
-
-        * QtLauncher/webview.cpp:
-        (WebViewGraphicsBased::setFrameRateMeasurementEnabled):
-
-2010-03-10  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Refactored and cleaned up the code for unit-testing logging.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35845
-
-        * Scripts/webkitpy/init/logtesting.py:
-          - Added more information to the module docstring.
-          - Added an assertMessages() method to the UnitTestLogStream
-            class.  This simplifies the calling code.
-          - Renamed the UnitTestLog class to LogTesting, and reformulated
-            it as follows:
-              - Moved the logging configuration code from the __init__
-                method to a new static setUp() method.
-              - Documented the __init__ method to be private.
-              - Improved the code so that the root logger does not have
-                its logging level changed.  Instead we set the handler's
-                level.  This makes the unit testing more unintrusive.
-              - Updated the assertMessages() method to call the
-                UnitTestLogStream class's assertMessages() method.
-              - More fully documented the class.
-
-        * Scripts/webkitpy/style/checker.py:
-          - Added a logger parameter to the configure_logging() method.
-            This allows us to prevent test messages from being sent
-            to the root logger during unit testing, which may be
-            rendering to the screen, etc.
-          - Simplified the code by removing the _LevelLoggingFilter class.
-          - Replaced the _LevelLoggingFilter class with a one-line lambda
-            expression in configure_logging().
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Changed relative imports to absolute to comply more with PEP8.
-          - In the ConfigureLoggingTest class:
-            - Changed the setUp() method to prevent test messages from
-              being propagated to the root logger.
-            - Changed the _log() method to a data attribute.
-            - Updated to accommodate changes to logtesting.py.
-
-        * Scripts/webkitpy/style_references.py:
-          - Updated an import statement.
-
-2010-03-10  Evan Martin  <evan@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        Python code for GDB 7 to support native printing of some WebCore types.
-
-        * gdb/webcore.py: Added.
-
-2010-03-10  Adam Roben  <aroben@apple.com>
-
-        Make svn-create-patch and prepare-ChangeLog show better section
-        headings for ObjC files
-
-        This makes the text at the end of each "@@" line in a diff actually
-        show the ObjC method or interface that contains the change, rather
-        than whatever the most-recently-defined C function was.
-
-        Fixes <http://webkit.org/b/35970>.
-
-        Reviewed by John Sullivan.
-
-        * Scripts/svn-create-patch: Pass -F'^[-+@]' to diff so that it will
-        treat any lines starting with -, +, or @ as section heading lines.
-        This works well for ObjC files, and shouldn't affect other types of
-        files.
-
-        * Scripts/prepare-ChangeLog: Changed the options passed to diff to
-        match those used in svn-create-patch.
-
-2010-03-10  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Reviewed by Tor Arne Vestbø.
-
-        Link QtLauncher against the WebKit library using a relative rpath.
-
-        This makes the launcher and the lib relocatable.
-
-        * QtLauncher/QtLauncher.pro:
-
-2010-03-10  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Rubber-stamped by Simon Hausmann.
-
-        [iExploder] Add new CSS Properties and HTML Attributes
-
-        The update-iexploder-cssproperties script was used to update
-        the various input files. The autobuffer HTML Attribute was removed
-        from WebKit and I manually added it back to the htmlattrs.in like
-        we have done it for other attributes in the past.
-
-        * iExploder/htdocs/cssproperties.in:
-        * iExploder/htdocs/htmlattrs.in:
-        * iExploder/htdocs/htmltags.in:
-
-2010-03-09  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Unreviewed.
-
-        Obvious fix for --cgi-paths of pywebsocket.
-
-        * Scripts/run-webkit-websocketserver:
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-
-2010-03-09  Jakub Wieczorek  <jwieczorek@webkit.org>
-
-        Unreviewed.
-
-        Adding myself to committers.py.
-
-        * Scripts/webkitpy/committers.py:
-
-2010-03-09  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Nate Chapin.
-
-        Fix --clobber-old-results in new-run-webkit-tests.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35778
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-03-09  Andy Estes  <aestes@apple.com>
-
-        Reviewed by Adele Peterson.
-
-        Add the ability to dispatch scroll wheel events in DRT.  This was
-        necessary in order to write a test for
-        https://bugs.webkit.org/show_bug.cgi?id=34700.
-
-        * DumpRenderTree/mac/EventSendingController.mm: Add support for two
-        new methods to EventSender: mouseScrollBy(x, y) and
-        continuousMouseScrollBy(x, y).  The API to generate scroll events on
-        the mac was added in 10.5, so these methods are NOOPs on Tiger.
-        (+[EventSendingController isSelectorExcludedFromWebScript:]):
-        Regiester mouseScrollByX:andY: and continuousMouseScrollByX:andY:
-        (+[EventSendingController webScriptNameForSelector:]): Map JavaScript
-        method names to ObjC selectors.
-        (-[EventSendingController mouseScrollByX:andY:continuously:]): Generate
-        a scroll wheel event using CGEventCreateScrollWheelEvent() and dispatch
-        it to WebKit.
-        (-[EventSendingController continuousMouseScrollByX:andY:]): Generate a
-        continuous scrolling event by x and y pixels.
-        (-[EventSendingController mouseScrollByX:andY:]): Generate a notchy
-        scrolling event by x and y lines.
-
-2010-03-09  Chris Fleizach  <cfleizach@apple.com>
-
-        DRT build fix for Tiger. No review.
-
-        AX: hit testing a list box doesn't work anymore
-        https://bugs.webkit.org/show_bug.cgi?id=35893
-
-        * DumpRenderTree/mac/AccessibilityControllerMac.mm:
-        (AccessibilityController::elementAtPoint):
-
-2010-03-09  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Darin Adler.
-
-        AX: hit testing a list box doesn't work anymore
-        https://bugs.webkit.org/show_bug.cgi?id=35893
-
-        * DumpRenderTree/AccessibilityController.cpp:
-        (getElementAtPointCallback):
-        (AccessibilityController::getJSClass):
-        * DumpRenderTree/AccessibilityController.h:
-        * DumpRenderTree/gtk/AccessibilityControllerGtk.cpp:
-        (AccessibilityController::elementAtPoint):
-        * DumpRenderTree/mac/AccessibilityControllerMac.mm:
-        (AccessibilityController::elementAtPoint):
-        * DumpRenderTree/win/AccessibilityControllerWin.cpp:
-        (AccessibilityController::elementAtPoint):
-
-2010-03-03  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Reviewed by Alexey Proskuryakov.
-
-        pywebsocket should support html and cgi in the same directory.
-        https://bugs.webkit.org/show_bug.cgi?id=34879
-
-        Import pywebsocket 0.4.9.2
-        Specify --server-host 127.0.0.1, so that it only binds listening socket
-        to 127.0.0.1 to prevent access from non-localhost.
-        Change --cgi-paths from /websocket/tests/cookies to /websocket/tests,
-        because pywebsocket 0.4.9.2 supports html and cgi in the same directory
-        and only executable (httponly-cookies.pl) will be handled as cgi
-        script.
-
-        * Scripts/run-webkit-tests:
-        * Scripts/run-webkit-websocketserver:
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-        * Scripts/webkitpy/thirdparty/pywebsocket/README.webkit:
-        * Scripts/webkitpy/thirdparty/pywebsocket/example/echo_client.py:
-        * Scripts/webkitpy/thirdparty/pywebsocket/example/handler_map.txt: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/mod_pywebsocket/standalone.py:
-        * Scripts/webkitpy/thirdparty/pywebsocket/mod_pywebsocket/util.py:
-        * Scripts/webkitpy/thirdparty/pywebsocket/setup.py:
-        * Scripts/webkitpy/thirdparty/pywebsocket/test/test_util.py:
-        * Scripts/webkitpy/thirdparty/pywebsocket/test/testdata/README: Added.
-        * Scripts/webkitpy/thirdparty/pywebsocket/test/testdata/hello.pl: Added.
-
-2010-03-09  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Simplified check-webkit-style's argument parsing code by removing
-        support for the vestigial "extra flag values" parameter.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34677
-
-        The "extra flag values" parameter was needed before WebKit
-        forked check-webkit-style from Google.  It was used to pass
-        through the option parser those command-line flags that WebKit
-        required but that Google's parser did not support (the --git-commit
-        flag in particular).
-            We can remove the parameter now because it is no longer
-        needed and unnecessarily clutters the argument-parsing code.
-
-        * Scripts/webkitpy/style/optparser.py:
-          - Removed the extra_flag_values parameter from the
-            CommandOptionValues class's constructor.
-          - Removed the extra_flags parameter from the ArgumentParser
-            class's parse() method.
-
-        * Scripts/webkitpy/style/optparser_unittest.py:
-          - Removed from the unit tests all references to the
-            extra_flag_values variable.
-
-2010-03-08  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Add EventSender
-        https://bugs.webkit.org/show_bug.cgi?id=35859
-
-        Add EventSender classes, which are going to be used by
-        DumpRenderTree Chromium port. These files are based on:
-        - src/webkit/tools/test_shell/event_sending_controller.cc
-        - src/webkit/tools/test_shell/event_sending_controller.h
-        of Chromium rev.40492.
-
-        * DumpRenderTree/chromium/EventSender.cpp: Added.
-        * DumpRenderTree/chromium/EventSender.h: Added.
-
-2010-03-08  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Add PlainTextController and TextInputController
-        https://bugs.webkit.org/show_bug.cgi?id=35852
-
-        Add PlainTextController and TextInputController classes, which are going
-        to be used by DumpRenderTree Chromium port. These files are based on:
-        - src/webkit/tools/test_shell/plain_text_controller.{cc,h} and
-        - src/webkit/tools/test_shell/text_input_controller.{cc,h}
-        of Chromium rev.40492.
-
-        * DumpRenderTree/chromium/PlainTextController.cpp: Added.
-        * DumpRenderTree/chromium/PlainTextController.h: Added.
-        * DumpRenderTree/chromium/TextInputController.cpp: Added.
-        * DumpRenderTree/chromium/TextInputController.h: Added.
-
-2010-03-08  Dumitru Daniliuc  <dumi@chromium.org>
-
-        Unreviewed, Chromium build fix.
-
-        Reverting r55689.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-03-08  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Fix webkit-patch post and land to work well with security bug
-        https://bugs.webkit.org/show_bug.cgi?id=35733
-
-        Bugzilla requires authentication to access security bug page,
-        so call authenticate() if it failed to fetch bug page.
-
-        * Scripts/webkitpy/bugzilla.py:
-
-2010-03-04  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Dimitry Glazkov.
-
-        Fix --clobber-old-results in new-run-webkit-tests.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35778
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-03-08  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by NOBODY (but suggested by Steve Falkenburg and fixing a boneheaded mistake on my part last week)
-
-        Followup to https://bugs.webkit.org/show_bug.cgi?id=35532
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::apiTestGoToCurrentBackForwardItem): Can't pass in a null BOOL to WebKit APIs.
-
-2010-03-08  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Unreviewed.
-
-        Fixed incorrect import statement in validate-committer-lists:
-        webkitpy.BeautifulSoup -> webkitpy.thirdparty.BeautifulSoup.
-
-        * Scripts/validate-committer-lists:
-
-2010-03-08  Jian Li  <jianli@chromium.org>
-
-        Reviewed by Dmitry Titov.
-
-        Blob.slice support.
-        https://bugs.webkit.org/show_bug.cgi?id=32993
-
-        Add ENABLE_BLOB_SLICE feature define and  flag for build-webkit. It is
-        currently only turned on for Mac.
-
-        * Scripts/build-webkit:
-
-2010-03-08  Gustavo Noronha Silva  <gns@gnome.org>
-
-        No review, rolling out r55662.
-        http://trac.webkit.org/changeset/55662
-        https://bugs.webkit.org/show_bug.cgi?id=35863
-
-        Need to be coordinated with bots setup
-
-        * Scripts/run-webkit-tests:
-
-2010-03-08  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
-
-        Reviewed by Holger Freyther.
-
-        [GTK] Tests fail when running with ipv6 addresses available, on Debian systems
-        https://bugs.webkit.org/show_bug.cgi?id=35863
-
-        If running on a Debian-based system, also listen on the ipv6 address.
-
-        * Scripts/run-webkit-tests:
-
-2010-03-08  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Reviewed by Darin Adler.
-
-        [iexploder] Automatically update htmltags.in and htmlattrs.in too
-        https://bugs.webkit.org/show_bug.cgi?id=33755
-
-        Change the update-iexploder-cssproperites script to update
-        the htmlattrs.in and htmltags.in of WebKitTools/iExploder/htdocs
-        automatically as well.
-
-        Change the reading and writing code to work with parameters
-        and extend the method that is parsing the .in files to handle
-        the HTMLTagNames.in and the HTMLAttributeNames.in files.
-
-        Remove custom code to determine the revision of files with a
-        utility of VCUtils.pm to determine the revision of the directory
-        these files are located in. This will also work with git checkout.
-
-        * Scripts/update-iexploder-cssproperties:
-
-2010-03-07  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        check-webkit-style: false positive for empty loop
-        https://bugs.webkit.org/show_bug.cgi?id=35717
-
-        * Scripts/webkitpy/style/processors/cpp.py:
-        * Scripts/webkitpy/style/processors/cpp_unittest.py:
-
-2010-03-07  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Add AccessibilityController and AccessibilityUIElement
-        https://bugs.webkit.org/show_bug.cgi?id=35774
-
-        Add AccessibilityController and AccessibilityUIElement classes,
-        which are going to be used by DumpRenderTree Chromium port. These
-        files are based on:
-        - src/webkit/tools/test_shell/accessibility_controller.{cc,h} and
-        - src/webkit/tools/test_shell/accessibility_ui_element.{cc,h}
-        of Chromium rev.40492.
-
-        * DumpRenderTree/chromium/AccessibilityController.cpp: Added.
-        * DumpRenderTree/chromium/AccessibilityController.h: Added.
-        * DumpRenderTree/chromium/AccessibilityUIElement.cpp: Added.
-        * DumpRenderTree/chromium/AccessibilityUIElement.h: Added.
-
-2010-03-06  Hironori Bono  <hbono@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        [Chromium] Typing into Flash with wmode = opaque|transparent and
-        non-latin language active outputs as if US keyboard layout active
-
-        https://bugs.webkit.org/show_bug.cgi?id=34936
-
-        To test keyboard events on the test plugin, this change implements
-        NPCocoaEventKeyDown and NPCocoaEventKeyUp handlers so the plugin
-        can write log messages.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.cpp:
-        (handleEventCocoa): Implemented the event handlers for NPCocoaKeyDown
-        and NPCocoaEventKeyUp.
-
-2010-03-05  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        Reviewed by Eric Seidel.
-
-        Fix Print option on QtLauncher by calling print directly from QWebFrame.
-
-        [Qt] QtLauncher Print option is not working on QGraphicsView mode
-        https://bugs.webkit.org/show_bug.cgi?id=35769
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::print):
-
-2010-03-05  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Changed the logging code for new-run-webkit-tests to use
-        module-specific loggers rather than the root logger. This is
-        a standard practice that allows logging specific to a package
-        to be configured independently of other modules.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35194
-
-        Added a line of the form "_log = logging.getLogger(<module>)"
-        to each module below, where <module> is the fully-qualified
-        name of the module, and updated the log lines to use the new
-        _log logger.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_shell_thread.py:
-        * Scripts/webkitpy/layout_tests/port/apache_http_server.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-        * Scripts/webkitpy/layout_tests/port/http_server_base.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/test_types/fuzzy_image_diff.py:
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py:
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py:
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-
-2010-03-05  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Siedel.
-
-        Split the command-line invocation of the Chromium/python LigHTTPd
-        server implementation out into its own top level script to make it
-        a more "public" interface and to resolve some awkward layering
-        issues. This script will be called directly by other test scripts in
-        the Chromium tree.
-
-        At some point this script should be made to work with Apache-based
-        implementations and on other ports. I have filed
-        https://bugs.webkit.org/show_bug.cgi?id=35820 for this.
-
-        Also fix a bug in port/factory where options.chromium could be
-        dereferenced even if it wasn't set, raising an exception.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35812
-
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-        * Scripts/new-run-webkit-httpd: Added
-
-2010-03-02  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Holger Freyther
-        Patch by Antonio Gomes <tonikitoo@webkit.org>
-
-        [Gtk] Implement setSpatialNavigationEnabled in DRT.
-        https://bugs.webkit.org/show_bug.cgi?id=35705
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setSpatialNavigationEnabled):
-
-2010-02-23  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Kenneth Christiansen.
-        Patch by Antonio Gomes <tonikitoo@webkit.org>
-
-        Add toggle on/off stub methods for Spatial Navigation in win, gtk and mac LayoutTestController class implementations.
-        https://bugs.webkit.org/show_bug.cgi?id=35699
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setSpatialNavigationEnabledCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setSpatialNavigationEnabled):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setSpatialNavigationEnabled):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setSpatialNavigationEnabled):
-
-2010-02-18  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Kenneth Christiansen.
-        Patch by Antonio Gomes <tonikitoo@webkit.org>
-
-        Add toggle on/off mechanism for Spatial Navigation in QtLauncher.
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::toggleSpatialNavigation):
-        (LauncherWindow::setupUI):
-
-2010-03-02  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Simon Hausmann.
-        Patch by Antonio Gomes <tonikitoo@webkit.org>
-
-        [Qt] Add setSpatialNavigationEnabled method DRT
-        https://bugs.webkit.org/show_bug.cgi?id=33715
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::WebPage):
-        (WebCore::WebPage::resetSettings):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setSpatialNavigationEnabled):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-        Unskipped fast/events/spatialnavigation/
-
-2010-03-04  Mark Rowe  <mrowe@apple.com>
-
-        Rubber-stamped by Alice Liu.
-
-        Find the framework relative to TARGET_BUILD_DIR as that has a more obvious value during production builds.
-
-        * Scripts/check-for-webkit-framework-include-consistency:
-
-2010-03-04  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Add CppVariant and CppBoundClass
-        https://bugs.webkit.org/show_bug.cgi?id=35634
-
-        Add CppVariant and CppBoundClass classes, which are going to be
-        used by DumpRenderTree Chromium port. These files are based on:
-        - src/webkit/glue/cpp_variant.{cc,h} and
-        - src/webkit/glue/cpp_bound_class.{cc,h}
-        of Chromium rev.40492.
-
-        * DumpRenderTree/chromium/CppBoundClass.cpp: Added.
-        * DumpRenderTree/chromium/CppBoundClass.h: Added.
-        * DumpRenderTree/chromium/CppVariant.cpp: Added.
-        * DumpRenderTree/chromium/CppVariant.h: Added.
-
-2010-03-04  Mark Rowe  <mrowe@apple.com>
-
-        Build fix for older versions of Ruby.
-
-        * Scripts/check-for-webkit-framework-include-consistency:
-
-2010-03-04  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Add a script to verify that WebKit framework headers are internally consistent.
-
-        This script detects the following problematic situations:
-        * An exported WebKit header that includes a header from WebCore.
-        * An exported WebKit header that includes a header that does not exist in the WebKit framework.
-        * A public WebKit header that includes a private WebKit header.
-
-        * Scripts/check-for-webkit-framework-include-consistency: Added.
-
-2010-03-04  Dumitru Daniliuc  <dumi@chromium.org>
-
-        Reviewed by Adam Roben.
-
-        Making sure that the correct path is set before invoking
-        DumpRenderTree on cygwin.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35768
-
-        * Scripts/run-webkit-tests:
-
-2010-03-04  Simon Fraser  <simon.fraser@apple.com>
-
-        Revert the exceptions I just added, and make the error clearer.
-
-        * Scripts/check-for-global-initializers:
-
-2010-03-04  Simon Fraser  <simon.fraser@apple.com>
-
-        Build fix: add exceptions to the check-for-global-initializers script
-        for FocusController and SpatialNavigation, and improve the script
-        to actually print out the globals found.
-
-        * Scripts/check-for-global-initializers:
-
-2010-03-04  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Fix dangling reference to "port" instead of "self._port_obj" that
-        was preventing the http_server from starting on Windows.
-
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-
-2010-03-04  Diego Gonzalez  <diego.gonzalez@openbossa.org>
-
-        Reviewed by Simon Hausmann.
-
-        Make Qt DumpRenderTree EventSender able to send double click events
-
-        LayoutTests:
-            fast/events/dblclick-addEventListener.html
-
-        [Qt] DRT: Send double click event from EventSender
-        https://bugs.webkit.org/show_bug.cgi?id=35255
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::EventSender):
-        (EventSender::mouseDown):
-        * DumpRenderTree/qt/EventSenderQt.h:
-        (EventSender::resetClickCount):
-
-2010-03-04  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        Reviewed by Tor Arne Vestbø.
-
-        [Qt] Make the OUTPUT_DIR variable in qmake projects independent of build-webkit's logic.
-
-        This also allows shadow builds relying only on qmake to work properly.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/ImageDiff.pro:
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * QtLauncher/QtLauncher.pro:
-
-2010-03-04  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Enable to use built-product-archive on Qt platform.
-
-        * BuildSlaveSupport/built-product-archive:
-
-2010-03-03  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        Reviewed by Simon Hausmann.
-
-        Add a missing 'm_' to class variables names.
-
-        [Qt] QtLauncher is not respecting class variable names
-        https://bugs.webkit.org/show_bug.cgi?id=35542
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::LauncherWindow):
-        (LauncherWindow::init):
-        (LauncherWindow::sendTouchEvent):
-        (LauncherWindow::eventFilter):
-        (LauncherWindow::zoomIn):
-        (LauncherWindow::zoomOut):
-        (LauncherWindow::resetZoom):
-        (LauncherWindow::setEditable):
-        (LauncherWindow::setTouchMocking):
-        (LauncherWindow::initializeView):
-        (LauncherWindow::createChrome):
-
-2010-03-03  Alexey Proskuryakov  <ap@apple.com>
-
-        Rubber-stamped by Mark Rowe.
-
-        Exclude leaks in Java that build bot complains about.
-
-        * Scripts/run-webkit-tests:
-
-2010-03-03  Chris Marrin  <cmarrin@apple.com>
-
-        Reviewed by Simon Fraser.
-
-        Additional change to separate Accelerated Compositing test from 3D Rendering test
-        https://bugs.webkit.org/show_bug.cgi?id=35610
-        
-        I am now using #if ENABLED(3D_RENDERING) to emit the 3DRendering string from
-        DRT or not. This allows these flags to set independently. I also improved
-        the code flow in run-webkit-tests a bit.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (main):
-        * Scripts/run-webkit-tests:
-
-2010-03-03  Chris Marrin  <cmarrin@apple.com>
-
-        Reviewed by Simon Fraser.
-
-        Added ability to print supported features to console to DRT
-        https://bugs.webkit.org/show_bug.cgi?id=35610
-        
-        This currently only prints whether or not Accelerated Compositing 
-        and 3D Rendering are supported, which is the only way to tell if you 
-        can run the compositing LayoutTests on Windows. But it can be expanded 
-        to give more information as needed. Currently it prints that both
-        AcceleratedCompositing and 3DRendering are available if accelerated compositing
-        is enabled since both have to be turned on together. This allows me to maintain
-        separate checks for them.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:Added --print-supported-features flag
-        (main):
-        * Scripts/run-webkit-tests:Runs DRT and enabled compositing tests if HW comp is available on Windows
-
-2010-03-03  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        Reviewed by Simon Hausmann.
-
-        Refactor QtLauncher so it respects command line arguments
-        and inherits settings when you clone or create a new window.
-
-        Implemented with help of Kenneth Rohde Christiansen.
-
-        [Qt] QtLauncher must be refactored to fix command line arguments usage
-        https://bugs.webkit.org/show_bug.cgi?id=35536
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::LauncherWindow):
-        (LauncherWindow::init):
-        (LauncherWindow::isGraphicsBased):
-        (applySetting):
-        (LauncherWindow::applyPrefs):
-        (LauncherWindow::initializeView):
-        (LauncherWindow::newWindow):
-        (LauncherWindow::cloneWindow):
-        (LauncherWindow::createChrome):
-        (main):
-        * QtLauncher/webview.cpp:
-        (WebViewGraphicsBased::WebViewGraphicsBased):
-        (WebViewGraphicsBased::setFrameRateMeasurementEnabled):
-        * QtLauncher/webview.h:
-        (WebViewGraphicsBased::itemCacheMode):
-        (WebViewGraphicsBased::frameRateMeasurementEnabled):
-
-2010-03-02  Arno Renevier  <arno@renevier.net>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        [Gtk] implements ChromeClient::requestGeolocationPermissionForFrame
-        https://bugs.webkit.org/show_bug.cgi?id=35210
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (geolocationPolicyDecisionRequested):
-        (createWebView):
-
-2010-03-02  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by David Levin.
-
-        Revert r55339 - the Chromium codebase downstream had a temporary
-        need for WebKitTools/pywebsocket to still exist after Chris Jerdonek
-        had moved it (scripts still referenced the old location). Those
-        scripts have been updated to the new location, so it should be safe
-        to delete this now.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35614
-
-        * pywebsocket/mod_pywebsocket/standalone.py: Removed.
-
-2010-03-02  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        new-run-webkit-tests on chromium-linux tests to see if
-        layout_test_helper exists, but we don't use layout_test_helper on
-        linux. The test derefences a None object, and we crash. This fixes
-        that.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35602
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
- 2010-03-02  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        r55388 (bug 35553) worked around a bug in Python's subprocess.Popen()
-        that was causing DRT to hang on exit in new-run-webkit-tests.
-        Unfortunately, that workaround doesn't work on chromium-win
-        (and the script fails completely). The good news is that the check
-        isn't actually necessary, and so this change makes it conditional.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35601
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2010-03-02  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Bug 35576: WebKit should tell plug-in instances when private browsing state changes
-        <http://webkit.org/b/35576>
-
-        TestNetscapePlugin is another bit of plug-in code where copy-paste was heavily used
-        when porting.  Update the Windows and UNIX implementations of NPP_New and NPP_SetValue
-        to provide the expected behavior related to NPNVprivateModeBool.  Hopefully this code
-        duplication can be cleaned up in the future.
-
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_new_instance):
-        (webkit_test_plugin_set_value):
-        * DumpRenderTree/win/TestNetscapePlugin/main.cpp:
-        (NPP_New):
-        (NPP_SetValue):
-
-2010-03-02  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Test plugin still has issues with releasing objects, and variants
-        https://bugs.webkit.org/show_bug.cgi?id=35587
-
-        Fix the conditions for releasing the variants after calling
-        invoke, and avoid having a number of objects leak.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (testDocumentOpen):
-        (testWindowOpen):
-
-2010-03-02  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Refactored the StyleChecker class's file-processing method
-        _process_file().  This will make it easier to add new
-        file-processing capabilities to check-webkit-style.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35490
-
-        * Scripts/webkitpy/style/checker.py:
-          - Added a _read_lines() method to the StyleChecker class
-            that extracts the lines from a file.
-          - Replaced part of _process_file() with a call to the new
-            _read_lines() method.
-          - Replaced another part of _process_file() with a call
-            to the new CarriageReturnProcessor.process() method.
-
-        * Scripts/webkitpy/style/processors/common.py:
-          - Replaced the check_no_carriage_return() function with a
-            new CarriageReturnProcessor class.
-
-        * Scripts/webkitpy/style/processors/common_unittest.py:
-          - Renamed the CarriageReturnTest class to
-            CarriageReturnProcessorTest and updated it as necessary.
-
-2010-03-02  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Started using the logging module in check-webkit-style.
-        This provides more options for debugging and a more flexible,
-        uniform way to report messages to the end-user.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35484
-
-        Also included classes in a central location to facilitate
-        the unit testing of logging code (setUp and tearDown of unit
-        test logging configurations, etc).
-
-        * Scripts/check-webkit-style:
-          - Added a call to configure_logging() in the beginning of main().
-          - Replaced two calls to sys.stderr.write() with appropriate
-            logging calls.
-
-        * Scripts/webkitpy/init/__init__.py: Copied from WebKitTools/QueueStatusServer/filters/__init__.py.
-
-        * Scripts/webkitpy/init/logtesting.py: Added.
-          - Added a UnitTestLogStream class to capture log output
-            during unit tests.
-          - Added a UnitTestLog class that provides convenience methods
-            for unit-testing logging code.
-
-        * Scripts/webkitpy/style/checker.py:
-          - Added a configure_logging() method.
-          - Added a _LevelLoggingFilter class to filter out log messages
-            above a certain logging level.
-          - Removed the _stderr_write() method from the StyleChecker class
-            and replaced its use with appropriate logging calls.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Added a ConfigureLoggingTest class to unit test the
-            configure_logging() method.
-          - Updated the StyleCheckerCheckFileTest class as necessary.
-
-        * Scripts/webkitpy/style_references.py:
-          - Added references to logtesting.UnitTestLog and
-            logtesting.UnitTestLogStream.
-
-2010-03-01  Chris Fleizach  <cfleizach@apple.com>
-
-        Fixing broken DRT on Leopard/Tiger. Second try.
-
-        AX: changes to WAI-ARIA grid aren't perceived correctly by VoiceOver
-        https://bugs.webkit.org/show_bug.cgi?id=35514
-
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-
-2010-03-01  Chris Fleizach  <cfleizach@apple.com>
-
-        Fixing broken DRT on Leopard/Tiger.
-
-        AX: changes to WAI-ARIA grid aren't perceived correctly by VoiceOver
-        https://bugs.webkit.org/show_bug.cgi?id=35514
-
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-
-2010-03-01  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
-
-        Reviewed by Eric Seidel.
-
-        [GTK] plugins/setProperty.html fails on 64bit Release
-        https://bugs.webkit.org/show_bug.cgi?id=35425
-
-        Check invoke's return code before releasing the variant, since
-        there's a chance it won't be properly initialized, leading to
-        memory corruption, in some cases.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (testCallback):
-        (testEnumerate):
-        (testDocumentOpen):
-        (testWindowOpen):
-        (handleCallback):
-
-2010-03-01  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by nobody. Build bustage :(
-
-        Fix stupid typo that I committed even after David Levin pointed
-        it out to me :(
-
-        https://bugs.webkit.org/show_bug.cgi?id=35553
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-
-2010-03-01  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Darin Adler.
-
-        AX: changes to WAI-ARIA grid aren't perceived correctly by VoiceOver
-        https://bugs.webkit.org/show_bug.cgi?id=35514
-
-        Add rowCount, columnCount for tables.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (rowCountCallback):
-        (columnCountCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::rowCount):
-        (AccessibilityUIElement::columnCount):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::rowCount):
-        (AccessibilityUIElement::columnCount):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::rowCount):
-        (AccessibilityUIElement::columnCount):
-
-2010-03-01  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Work around a bug in Python's subprocess.Popen() that keeps us from
-        cleaning up DumpRenderTree / test_shell properly when we finish the
-        tests in new-run-webkit-tests.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35553
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-
-2010-03-01  Arno Renevier  <arno@renevier.net>
-
-        Reviewed by Xan Lopez.
-
-        webkit-build could pass unknown arguments to autogen.sh
-        https://bugs.webkit.org/show_bug.cgi?id=35454
-
-        * Scripts/build-webkit:
-
-2010-03-01  Dirk Pranke  <dpranke@chromium.org>
-
-        Rubber-stamped by Dimitri Glazkov.
-
-        Fix breakage from r55372.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35549
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2010-03-01  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        EWS can hang for five hours when compile output is too big
-        https://bugs.webkit.org/show_bug.cgi?id=35545
-
-        * Scripts/webkitpy/commands/queues.py: Limit uploads to 1MB instead of
-        5MB.  AppEngine seems to not like 5MB uploads.  I'm not sure what the
-        limit is.  Let's try 1MB for a while and see how it goes.
-        * Scripts/webkitpy/networktransaction.py: Tune the default parameters
-        to our exponential backoff.  I'm not sure why I picked five hours as
-        the retry limit.  That seems way too large.
-
-2010-03-01  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        REGRESSION: Telling a WebView to go to its current WebHistoryItem is broken.
-        <rdar://problem/7699371> and https://bugs.webkit.org/show_bug.cgi?id=35532
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (apiTestGoToCurrentBackForwardItemCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::apiTestGoToCurrentBackForwardItem):
-
-        Stubs for now:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::apiTestGoToCurrentBackForwardItem):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::apiTestGoToCurrentBackForwardItem):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::apiTestGoToCurrentBackForwardItem):
-
-2010-03-01  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by David Levin.
-
-        General cleanup of error handling in new-run-webkit-tests.
-
-        Add Port.check_build() call that is separate from Port.check_sys_deps()
-        (and add a --nocheck-build flag to skip). This breaks a circular
-        dependency where you would start the layout test helper before
-        checking sys deps, but checking sys deps was the thing that told
-        you if your binaries where there.
-
-        Also, made Port.check_sys_deps(), start_helper() and stop_helper()
-        optional by providing default implementations in the base class
-        rather than requiring ports to implement the routines regardless
-        of whether or not they were needed.
-
-        Lastly, tweak a bunch of log messages to be cleaner, including
-        changing messages in thirdparty/autoinstall.py to be silent at
-        the default log level.
-
-        http://bugs.webkit.org/show_bug.cgi?id=35416
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/passing.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/thirdparty/autoinstall.py
-
-2010-03-01  Dirk Pranke <dpranke@chromium.org>
-
-         Reviewed by David Levin.
-
-         new-chromium-webkit-tests --platform=mac-leopard diffs are backwards
-         https://bugs.webkit.org/show_bug.cgi?id=35265
-
-         Some parts of the code passed arguments as
-         "actual, expected" and some passed as "expected, actual".
-         As you might imagine, this lead to great confusion and wrongness.
-         Standardize on "expected, actual" as that's the order which is
-         passed to the underlying diff tool.
-
-         Based on a patch by Eric Siedel <eric@webkit.org>.
-
-         * Scripts/webkitpy/layout_tests/port/base.py:
-         * Scripts/webkitpy/layout_tests/port/chromium.py:
-         * Scripts/webkitpy/layout_tests/port/test.py:
-         * Scripts/webkitpy/layout_tests/test_types/image_diff.py
-
-2010-03-01  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Unreviewed.
-
-        Rolling out: http://trac.webkit.org/changeset/55348
-
-        https://bugs.webkit.org/show_bug.cgi?id=35163
-
-        Rolling out since the changes to autoinstall do not work
-        with Python 2.4. In particular, ZipFile.extractall() was
-        added in Python 2.6.
-
-        * Scripts/webkitpy/__init__.py:
-        * Scripts/webkitpy/bugzilla.py:
-        * Scripts/webkitpy/init/__init__.py: Removed.
-        * Scripts/webkitpy/init/autoinstall.py: Removed.
-        * Scripts/webkitpy/networktransaction.py:
-        * Scripts/webkitpy/networktransaction_unittest.py:
-        * Scripts/webkitpy/statusserver.py:
-        * Scripts/webkitpy/thirdparty/autoinstall.py: Added.
-
-2010-03-01  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Unreviewed.
-
-        Rolling out r55350: http://trac.webkit.org/changeset/55350
-
-        https://bugs.webkit.org/show_bug.cgi?id=33639
-
-        Need to roll out because this patch (pep8) depends on the newly
-        rewritten autoinstall.py (r55348), which is breaking for people
-        with Python 2.4:
-
-        https://bugs.webkit.org/show_bug.cgi?id=35163#c21
-
-        That revision also needs to be rolled out and will be rolled out next.
-
-        * Scripts/webkitpy/style/checker.py:
-        * Scripts/webkitpy/style/checker_unittest.py:
-        * Scripts/webkitpy/style/processors/python.py: Removed.
-        * Scripts/webkitpy/style/processors/python_unittest.py: Removed.
-        * Scripts/webkitpy/style/processors/python_unittest_input.py: Removed.
-        * Scripts/webkitpy/style/unittests.py:
-        * Scripts/webkitpy/style_references.py:
-
-2010-02-28  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Exempted WebKitTools/Scripts/webkitpy/thirdparty from all
-        style checks except for the whitespace/carriage_return check
-        and the pep8 tab and trailing white space checks.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35497
-
-        * Scripts/webkitpy/style/checker.py:
-          - Adjusted the _PATH_RULES_SPECIFIER configuration as necessary.
-          - Added enough pep8 categories to _all_categories() for the
-            unit tests to pass.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Updated the test_path_rules_specifier() unit test.
-
-2010-02-27  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by David Levin.
-
-        Added Python style checking to check-webkit-style using
-        the third-party pep8 module (via autoinstall).
-
-        https://bugs.webkit.org/show_bug.cgi?id=33639
-
-        * Scripts/webkitpy/style/checker.py:
-          - Added PYTHON to FileType.
-          - Updated ProcessorDispatcher to return a PythonProcessor
-            for *.py files.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Updated the ProcessorDispatcher unit tests for *.py files.
-
-        * Scripts/webkitpy/style/processors/python.py: Added.
-          - Added PythonProcessor class.
-
-        * Scripts/webkitpy/style/processors/python_unittest.py: Added.
-          - Added PythonProcessor unit tests.
-
-        * Scripts/webkitpy/style/processors/python_unittest_input.py: Added.
-          - Added a sample Python file to test the PythonProcessor.process()
-            code path (since pep8 accepts a file path).
-
-        * Scripts/webkitpy/style/unittests.py:
-          - Updated the style unit test file to import python_unittest.py.
-
-        * Scripts/webkitpy/style_references.py:
-          - Adjusted style references to import pep8.
-
-2010-02-26  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by David Levin.
-
-        Rewrote autoinstall.py to support unzipping *.zip files after
-        download, unzipping and extracting *.tar.gz files after download,
-        and copying installed files to a destination directory.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35163
-
-        These changes will allow us to autoinstall pep8.py from the web
-        and to put our third-party autoinstalled code in an explicit
-        directory like webkitpy/thirdparty/autoinstalled. They should
-        also speed up imports from autoinstalled *.zip packages slightly
-        since *.pyc files cannot be generated when importing from
-        zipped packages.
-
-        * Scripts/webkitpy/__init__.py:
-          - Updated the autoinstall lines to use the new autoinstall methods.
-          - Added pep8.py to the list of auto-installed packages.
-
-        * Scripts/webkitpy/bugzilla.py:
-          - Updated mechanize import path.
-
-        * Scripts/webkitpy/init/__init__.py: Copied from WebKitTools/QueueStatusServer/filters/__init__.py.
-
-        * Scripts/webkitpy/init/autoinstall.py: Added.
-          - Added AutoInstaller class.
-          - Added sample testing usage to __main__.
-
-        * Scripts/webkitpy/networktransaction.py:
-          - Updated mechanize import path.
-
-        * Scripts/webkitpy/networktransaction_unittest.py:
-          - Updated mechanize import path.
-
-        * Scripts/webkitpy/statusserver.py:
-          - Updated mechanize import path.
-
-        * Scripts/webkitpy/thirdparty/autoinstall.py: Removed.
-          - Replaced with rewritten autoinstall in init/autoinstall.py.
-
-2010-02-26  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Change the default port for new-run-webkit-tests when running on
-        a Mac from 'chromium-mac' to 'mac'. Add a '--chromium' switch to
-        pick up the default platform-specific version of chromium instead.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35462
-
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-02-26  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix
-
-        third time's the charm getting this path right?
-
-        * pywebsocket/mod_pywebsocket/standalone.py:
-
-2010-02-26  Dumitru Daniliuc  <dumi@chromium.org>
-
-        Unreviewed, build fix.
-
-        * pywebsocket/mod_pywebsocket/standalone.py:
-
-2010-02-26  Dumitru Daniliuc  <dumi@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Moving the script to the right location.
-
-        * pywebsocket/mod_pywebsocket: Added.
-        * pywebsocket/mod_pywebsocket/standalone.py: Copied from WebKitTools/pywebsocket/standalone.py.
-        * pywebsocket/standalone.py: Removed.
-
-2010-02-26  Dumitru Daniliuc  <dumi@chromium.org>
-
-        Unreviewed, fixing the license.
-
-        * pywebsocket/standalone.py:
-
-2010-02-26  Dumitru Daniliuc  <dumi@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Adding pywebsocket/standalone.py back to fix the Chromium webkit
-        canaries. Once all layout tests pass, we can get in the patch that
-        moves this directorty to WebKitTools/Scripts, update all Chromium
-        scripts, and revert this patch.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35464
-
-        * pywebsocket: Added.
-        * pywebsocket/standalone.py: Added.
-
-2010-02-26  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] Needs proper reporting of frame loader callbacks, in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=32170
-
-        Fix reporting of unload handlers, so that it is emitted where
-        needed, not after it.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webViewLoadFinished):
-        (webViewDocumentLoadFinished):
-        (createWebView):
-
-2010-02-26  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Gustavo Noronha.
-        Patch by Antonio Gomes <tonikitoo@webkit.org>
-
-        [Gtk] Make DRT EventSender::keyDown to consider 'hardware_keycode' field when synthesizing an event.
-        https://bugs.webkit.org/show_bug.cgi?id=35432
-
-        When a directional key-press event (arrow keys, End, Home, PageUp,
-        PageDown, etc) is synthesized by DRT's EventSender and it targets
-        an editor (e.g. <input type=text>, <textare>, etc), event is processed
-        by WebCore::EventHandler. On the other hand, if event target is not
-        an editor, event is bubbled up to Gtk+ for processing. In such cases,
-        if 'hardware_keycode' is not provided at event synthesize time
-        its processing fails (at some point in gtk_bindings_activate_event),
-        and no scroll action is performed.
-
-        Unskip fast/events/node-event-anchor-lock.html
-
-        * DumpRenderTree/win/EventSender.cpp:
-        (keyDownCallback):
-        * platform/gtk/Skipped:
-
-2010-02-26  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Reviewed by David Levin.
-
-        new-webkit-run-tests: Extraneous parenthesis in websocket_server.py
-        https://bugs.webkit.org/show_bug.cgi?id=35436
-
-         * Scripts/webkitpy/layout_tests/port/websocket_server.py: Removed extra paren.
-
-2010-02-26  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by David Levin.
-
-        Moved pywebsocket into the webkitpy/thirdparty directory and added
-        an associated README.webkit file to the pywebsocket directory.
-        This makes pywebsocket more consistent with the other third-party
-        Python code in our repository.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35198
-
-        * Scripts/run-webkit-tests:
-          - Updated paths to pywebsocket.
-
-        * Scripts/run-webkit-websocketserver:
-          - Updated paths to pywebsocket.
-
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-          - Updated paths to pywebsocket.
-
-        * Scripts/webkitpy/thirdparty/pywebsocket: Copied from WebKitTools/pywebsocket.
-        * Scripts/webkitpy/thirdparty/pywebsocket/README.webkit: Added.
-          - Added a file containing information about the contents
-            of the pywebsocket directory. This will make it easier to
-            understand where the third-party code came from and what
-            local changes have been made.
-
-        * pywebsocket: Removed.
-        * pywebsocket/COPYING: Removed.
-        * pywebsocket/MANIFEST.in: Removed.
-        * pywebsocket/README: Removed.
-        * pywebsocket/example: Removed.
-        * pywebsocket/example/echo_client.py: Removed.
-        * pywebsocket/example/echo_wsh.py: Removed.
-        * pywebsocket/mod_pywebsocket: Removed.
-        * pywebsocket/mod_pywebsocket/__init__.py: Removed.
-        * pywebsocket/mod_pywebsocket/dispatch.py: Removed.
-        * pywebsocket/mod_pywebsocket/handshake.py: Removed.
-        * pywebsocket/mod_pywebsocket/headerparserhandler.py: Removed.
-        * pywebsocket/mod_pywebsocket/memorizingfile.py: Removed.
-        * pywebsocket/mod_pywebsocket/msgutil.py: Removed.
-        * pywebsocket/mod_pywebsocket/standalone.py: Removed.
-        * pywebsocket/mod_pywebsocket/util.py: Removed.
-        * pywebsocket/setup.py: Removed.
-        * pywebsocket/test: Removed.
-        * pywebsocket/test/config.py: Removed.
-        * pywebsocket/test/mock.py: Removed.
-        * pywebsocket/test/run_all.py: Removed.
-        * pywebsocket/test/test_dispatch.py: Removed.
-        * pywebsocket/test/test_handshake.py: Removed.
-        * pywebsocket/test/test_memorizingfile.py: Removed.
-        * pywebsocket/test/test_mock.py: Removed.
-        * pywebsocket/test/test_msgutil.py: Removed.
-        * pywebsocket/test/test_util.py: Removed.
-        * pywebsocket/test/testdata: Removed.
-        * pywebsocket/test/testdata/handlers: Removed.
-        * pywebsocket/test/testdata/handlers/blank_wsh.py: Removed.
-        * pywebsocket/test/testdata/handlers/origin_check_wsh.py: Removed.
-        * pywebsocket/test/testdata/handlers/sub: Removed.
-        * pywebsocket/test/testdata/handlers/sub/exception_in_transfer_wsh.py: Removed.
-        * pywebsocket/test/testdata/handlers/sub/no_wsh_at_the_end.py: Removed.
-        * pywebsocket/test/testdata/handlers/sub/non_callable_wsh.py: Removed.
-        * pywebsocket/test/testdata/handlers/sub/plain_wsh.py: Removed.
-        * pywebsocket/test/testdata/handlers/sub/wrong_handshake_sig_wsh.py: Removed.
-        * pywebsocket/test/testdata/handlers/sub/wrong_transfer_sig_wsh.py: Removed.
-
-2010-02-26  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Changed the diff_parser module to log to a module-specific
-        logging.logger rather than the root logger.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35391
-
-        * Scripts/webkitpy/diff_parser.py:
-
-2010-02-26  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] LayoutTestController.numberOfPages() should have default parameters
-        https://bugs.webkit.org/show_bug.cgi?id=35428
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp: maxViewWidth and maxViewHeight moved to
-        LayoutTestController to converge to platform independent implementation.
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::open):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp: Initialization of maxViewWidth and maxViewHeight added.
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-         - Default parameters for LayoutTestController.numberOfPages() added.
-         - maxViewWidth and maxViewHeight members added.
-
-2010-02-26  Jamey Hicks  <jamey.hicks@nokia.com>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt] added QWebSettings::setInspectorUrl() and QWebSettings::inspectorUrl()
-
-        Enables the use of alternate Web Inspector frontends by changing
-        the location of the frontend. The location is specified by providing 
-            -inspector-url url
-        as an argument to QtLauncher.
-
-        This is required so that the Web Inspector may be run from an
-        external process or an external tool such as Eclipse or Aptana may
-        be used instead of the in-process Web Inspector UI.
-        
-        https://bugs.webkit.org/show_bug.cgi?id=35340
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::init):
-        (LauncherApplication::handleUserOptions):
-
-2010-02-25  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Add a 'passing' port implementation to new-run-webkit-tests that
-        acts as a wrapper around an existing implementation but stubs out
-        the actual test invocations (instead, the expected results are echoed
-        back to the harness). This is useful for coverage and perf testing
-        of the harness (especially perf testing as it essentially provides
-        a lower bound on how fast the harness can run).
-
-        Also added a --nostart-helper flag to new-run-webkit-tests so that
-        you can skip starting the layout_test_helper and actually run the
-        harness even if you don't have a build of that port.
-
-        Also fix a bug in the 'test' port implementation to actually
-        create the results directory under /tmp instead of /.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35370
-
-        * Scripts/webkitpy/layout_tests/port/factory.py: Modified.
-        * Scripts/webkitpy/layout_tests/port/passing.py: Added.
-        * Scripts/webkitpy/layout_tests/port/test.py: Added.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py: Modified.
-
-2010-02-25  Eric Seidel  <eric@webkit.org>
-
-        Fix typo in my last change.  No review.
-
-        Rename run-chromium-webkit-tests to new-run-webkit-tests to stop confusion
-        https://bugs.webkit.org/show_bug.cgi?id=35408
-
-        * Scripts/new-run-webkit-tests:
-
-2010-02-25  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Rename run-chromium-webkit-tests to new-run-webkit-tests to stop confusion
-        https://bugs.webkit.org/show_bug.cgi?id=35408
-
-        * Scripts/new-run-webkit-tests: Added.
-        * Scripts/run-chromium-webkit-tests: Removed.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py: Renamed from WebKitTools/Scripts/webkitpy/layout_tests/run_chromium_webkit_tests.py.
-
-2010-02-25  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by David Levin.
-
-        EWS leaks memory slowly
-        https://bugs.webkit.org/show_bug.cgi?id=35395
-
-        The EWS bots leak memory very slowly.  If you run them for about a
-        month, each one will take up around 1 GB of virutal memory.  If you run
-        several of them on one machine, you'll eventually exhaust all available
-        memory and grind the bots to a halt.
-
-        This patch introduces a --exit-after-iteration option to the queues so
-        that we run them for a finite amount of time.  Once they exit and
-        restart, they'll reclaim the leaked memory.  I'm not sure how many
-        iterations I'll end up running them for.  I'll need to sort that out
-        operationally, but my initial guess is around 1000.
-
-        * Scripts/webkitpy/commands/queues.py:
-        * Scripts/webkitpy/commands/queues_unittest.py:
-
-2010-02-25  Jarkko Sakkinen  <jarkko.sakkinen@tieto.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Qt WebGL support
-
-        Adds toggling of WebGL support to QtLauncher.
-        https://bugs.webkit.org/show_bug.cgi?id=35153
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::toggleWebGL):
-        (LauncherWindow::setupUI):
-
-2010-02-25  Ben Murdoch  <benm@google.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        The target element of a Touch should be the target where that touch originated, not where it is now.
-        https://bugs.webkit.org/show_bug.cgi?id=34585
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::addTouchPoint): Fix a bug where touch points were not being given unique ids.
-
-2010-02-24  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] QtLauncher has a border when running on QGraphicsView mode
-        https://bugs.webkit.org/show_bug.cgi?id=35352
-
-        Fix 2-pixels frame on each border of QtLauncher when running on QGraphicsView mode.
-
-        * QtLauncher/webview.cpp:
-        (WebViewGraphicsBased::WebViewGraphicsBased):
-
-2010-02-23  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by David Levin.
-
-        When the run-chromium-webkit-tests code was landed and the code was
-        refactored into the 'port' package, I accidentally broke using
-        http_server.py or websocket_server.py as command-line scripts
-        (the constructors needed a port object they weren't getting). This
-        change fixes them so that --server start|stop actually works.
-
-        As a part of this, the two files need to be able to call port.get(),
-        but doing that is awkward from a file inside the package, so I moved
-        get() into factory.py and imported that into __init__.py so that
-        http_server.py and websocket_server.py can just import factory.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35316
-
-        * Scripts/webkitpy/layout_tests/port/__init__.py:
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-
-2010-02-24  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by David Levin.
-
-        Fix the function signature for check_sys_deps on the mac port, and
-        fix the ordering of port_obj.check_sys_deps() and
-        port_obj.start_helper() (helper needs to be started before we check
-        the system configuration).
-
-        http://bugs.webkit.org/show_bug.cgi?id=35367
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_chromium_webkit_tests.py:
-
-2010-02-24  James Robinson  <jamesr@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Provide default username parameter to SVN.commit_with_message().
-
-        * Scripts/webkitpy/scm.py:
-
-2010-02-24  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Siedel.
-
-        Check the proper directory for a WebKit SVN version (Chromium does
-        not check out the entire WebKit tree directly, but rather pulls
-        individual subdirectories. So, checking for the SVN version in
-        WebKit/WebCore rather than just in WebKit works more reliably across
-        different ports).
-
-        http://bugs.webkit.org/show_bug.cgi?id=35321
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-
-2010-02-24  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35357
-        Two editing tests fail after DumpRenderTree run loop changes
-
-        AppKit decided that it wanted to group all editing commands for some reason (and thus undo
-        reverted them all at once).
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dump): Reverted the change that made DumpRenderTree use -[NSApplication run].
-        (runTest): Ditto.
-        (-[DumpRenderTreeApplication isRunning]): Override isRunning with a function that always
-        returns YES. This is another way to make the Java plug-in work.
-
-2010-02-23  Adam Roben  <aroben@apple.com>
-
-        Make commit-log-editor find just-added ChangeLog files
-
-        Fixes <http://webkit.org/b/35294> commit-log-editor doesn't find
-        just-added ChangeLog files
-
-        Reviewed by Dave Levin.
-
-        * Scripts/commit-log-editor:
-        (top level): Modified the regular expression that's used to find
-        modified ChangeLog files to also look for just-added ChangeLog files.
-
-2010-02-24  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        check-webkit-style false positive for WebCore forwarding header
-        https://bugs.webkit.org/show_bug.cgi?id=34604
-
-        * Scripts/webkitpy/style/checker.py:
-        * Scripts/webkitpy/style/checker_unittest.py:
-
-2010-02-23  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        https://bugs.webkit.org/show_bug.cgi?id=22602
-        Enable Java in DumpRenderTree (on Mac)
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (exitApplicationRunLoop):
-        (dump):
-        (runTest):
-        DumpRenderTree now runs an NSApplication, not just an event loop. This way, the Java plug-in
-        can start without freezing.
-
-        * Scripts/run-webkit-tests: Compile java sources in LayputTests/java.
-
-2010-02-23  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Need a final integration between QtLauncher and QGVLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=35292
-
-        WebKit coding style fixes.
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::resetZoom):
-
-2010-02-23  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Need a final integration between QtLauncher and QGVLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=35292
-
-        Add cloneWindow feature to QtLauncher, when running on QGraphicsView mode.
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::LauncherWindow):
-        (LauncherWindow::~LauncherWindow):
-        (LauncherWindow::init):
-        (LauncherWindow::cloneWindow):
-        (LauncherWindow::setupUI):
-
-2010-02-23  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Fix handling of check_wdiff_install when wdiff isn't installed.
-
-        http://bugs.webkit.org/show_bug.cgi?id=35304
-
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-
-2010-02-23  Leandro Pereira  <leandro@profusion.mobi>
-
-        Reviewed by NOBODY.
-
-        Fix false positives for 'delete *pointer' statements.
-        http://webkit.org/b/35235
-
-        * WebKitTools/Scripts/webkitpy/style/processors/cpp.py:
-
-2010-02-23  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        [Gtk] Implement layoutTestController.numberOfPages
-        https://bugs.webkit.org/show_bug.cgi?id=35228
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::numberOfPages):
-
-2010-02-23  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] QtLauncher should not use internal JavaScriptCore and WebCore interfaces
-        https://bugs.webkit.org/show_bug.cgi?id=35248
-
-        * QtLauncher/QtLauncher.pro:
-        * QtLauncher/utils.h:
-
-2010-02-23  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Eric Seidel.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34439
-
-        Prompts a person for their SVN username if not already cached (by Subversion).
-
-        Currently, webkit-patch is unable to commit to the SVN repo. unless the
-        WebKit SVN username is already cached (from of a prior commit by hand)
-        because "svn commit" (called by webkit-patch) defaults to using the system
-        login name unless the username is already cached or specified on the
-        command line.
-
-        * Scripts/webkitpy/scm.py: Added methods SVN.has_authorization_for_realm and
-        modified SVN.commit_with_message to call it. Added optional username parameter
-        to method SVN.commit_with_message.
-        * Scripts/webkitpy/scm_unittest.py: Added unit test methods: SVNTest.test_commit_with_username,
-        SVNTest.test_has_authorization_for_realm, and SVNTest.test_not_have_authorization_for_realm.
-
-2010-02-22  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Siedel.
-
-        Add more checking for missing binaries and packages to check_sys_deps()
-
-        https://bugs.webkit.org/show_bug.cgi?id=35062
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/run_chromium_webkit_tests.py:
-
-2010-02-22  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by David Levin.
-
-        [Gtk] check-webkit-style: GTK style should be allowed in WebKitTools/DumpRenderTree/gtk
-        https://bugs.webkit.org/show_bug.cgi?id=35229
-
-        * Scripts/webkitpy/style/checker.py:
-        * Scripts/webkitpy/style/checker_unittest.py:
-
-2010-02-22  James Robinson  <jamesr@chromium.org>
-
-        Unreviewed. Adding myself to committers list.
-
-        * Scripts/webkitpy/committers.py:
-
-2010-02-22  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Remove DRT hack that turns off hardware acceleration with older QuickTimes
-        https://bugs.webkit.org/show_bug.cgi?id=35275
-        
-        Now that WebKit does a version check to avoid a QuickTime-related
-        crash (r55100), DumpRenderTree does not need to.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-
-2010-02-22  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Build the DRT in debug on Mac OS X
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-
-2010-02-22  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Add support for layout tests on Symbian
-        https://bugs.webkit.org/show_bug.cgi?id=31589
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        * DumpRenderTree/qt/main.cpp:
-        (main):
-
-2010-02-20  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Moved simplejson into webkitpy/thirdparty directory.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35196
-
-        * Scripts/run-chromium-webkit-tests:
-          - Added webkitpy/thirdparty to the script's search path.
-
-        * Scripts/webkitpy/thirdparty/simplejson: Copied from WebKitTools/simplejson.
-          - Copied simplejson directory.
-
-        * simplejson: Removed.
-        * simplejson/LICENSE.txt: Removed.
-        * simplejson/README.txt: Removed.
-        * simplejson/__init__.py: Removed.
-        * simplejson/_speedups.c: Removed.
-        * simplejson/decoder.py: Removed.
-        * simplejson/encoder.py: Removed.
-        * simplejson/jsonfilter.py: Removed.
-        * simplejson/scanner.py: Removed.
-
-2010-02-20  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Moved BeautifulSoup to webkitpy/thirdparty directory.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35195
-
-        * Scripts/webkitpy/BeautifulSoup.py: Removed.
-          - Moved to webkitpy/thirdparty.
-
-        * Scripts/webkitpy/bugzilla.py:
-          - Updated import statement.
-
-        * Scripts/webkitpy/bugzilla_unittest.py:
-          - Updated import statement.
-
-        * Scripts/webkitpy/buildbot.py:
-          - Updated import statement.
-
-        * Scripts/webkitpy/buildbot_unittest.py:
-          - Updated import statement.
-
-        * Scripts/webkitpy/statusserver.py:
-          - Updated import statement.
-
-        * Scripts/webkitpy/thirdparty/BeautifulSoup.py: Copied from WebKitTools/Scripts/webkitpy/BeautifulSoup.py.
-
-2010-02-20  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Created a directory for third-party Python code, and moved
-        autoinstall.py into it.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34540
-
-        * Scripts/webkitpy/__init__.py:
-          - Updated "import autoinstall" statement.
-
-        * Scripts/webkitpy/autoinstall.py: Removed.
-          - Moved to thirdparty/autoinstall.py.
-
-        * Scripts/webkitpy/thirdparty: Added.
-        * Scripts/webkitpy/thirdparty/__init__.py: Added.
-        * Scripts/webkitpy/thirdparty/autoinstall.py: Copied from WebKitTools/Scripts/webkitpy/autoinstall.py.
-
-2010-02-20  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Unreviewed, obvious fix for the python failure in our new buildbot
-        step:
-
-        http://build.webkit.org/builders/GTK Linux 32-bit Release/builds/9075/steps/API tests/logs/err.text
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2010-02-19  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by David Levin.
-
-        Add an ENABLE flag for sandboxed iframes to make it possible to disable it in releases
-        https://bugs.webkit.org/show_bug.cgi?id=35147
-
-        * Scripts/build-webkit: Handle new flag.
-
-2010-02-19  Leandro Pereira  <leandro@profusion.mobi>
-
-        Reviewed by Shinichiro Hamaji.
-
-        [style-queue] should not complain about identifier names with underscores under WebKit/efl/ewk/
-        https://bugs.webkit.org/show_bug.cgi?id=35091
-
-        White list unix_hacker_style names in WebKit/efl/ewk because these
-        are used in the EFL API.
-
-        * Scripts/webkitpy/style/checker.py:
-         - Filter out readability/naming on WebKit/efl/ewk.
-
-2010-02-19  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Split out "prepare-rollout" from "rollout" and make --complete-rollout default
-        https://bugs.webkit.org/show_bug.cgi?id=33745
-
-        * Scripts/webkitpy/commands/download.py:
-         - Add a new AbstractRolloutPrepCommand to share code between PrepareRollout and Rollout
-         - Add PrepareRollout
-        * Scripts/webkitpy/commands/download_unittest.py: Test PrepareRollout, remove CompleteRollout tests.
-        * Scripts/webkitpy/steps/__init__.py: include ReopenBugAfterRollout step.
-        * Scripts/webkitpy/steps/completerollout.py: Removed.
-        * Scripts/webkitpy/steps/options.py: remove complete_rollout
-        * Scripts/webkitpy/steps/reopenbugafterrollout.py: Added.
-
-2010-02-19  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Need a final integration between QtLauncher and QGVLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=35161
-
-        Add animated flip support to QtLauncher when running on QGraphicsView mode.
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::initializeView):
-        (LauncherWindow::setupUI):
-        * QtLauncher/webview.cpp:
-        (WebViewGraphicsBased::WebViewGraphicsBased):
-        (WebViewGraphicsBased::animatedFlip):
-        (WebViewGraphicsBased::animatedYFlip):
-        * QtLauncher/webview.h:
-        (WebViewGraphicsBased::setYRotation):
-        (WebViewGraphicsBased::yRotation):
-
-2010-02-19  Andras Becsi  <abecsi@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Implement textZoomIn() and textZoomOut() in DRT's EventSender, add results
-        for passing new tests and unskip the passing ones from the Skipped list.
-        https://bugs.webkit.org/show_bug.cgi?id=35159
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::textZoomIn):
-        (EventSender::textZoomOut):
-        * DumpRenderTree/qt/EventSenderQt.h:
-
-2010-02-19  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Eric Seidel.
-
-        [Qt] Clean-up the handling of HTML5 persistent data for LayoutTests
-        https://bugs.webkit.org/show_bug.cgi?id=35004
-
-        DumpRenderTreeQt.cpp calls QWebSettings::enablePersistentStorage which sets up 
-        and enables all HTML5 persistent data. All the other calls for setting the 
-        persistent path or enabling the persistent feature are redundant. 
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::WebPage): No need to enable AppCache again.
-        * DumpRenderTree/qt/main.cpp:
-        (main): No need to setup and enable HTML5 LocalStorage again.
-
-2010-02-19  Diego Gonzalez  <diego.gonzalez@openbossa.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Send the context menu event from contextClick() of EventSender
-        and do not show context menu in DRT.
-
-        LayoutTests:
-            fast/events/contextmenu-scrolled-page-with-frame.html
-
-        [Qt] DRT: Send context menu event from EventSender
-        https://bugs.webkit.org/show_bug.cgi?id=35131
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::contextClick):
-
-2010-02-18  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Moved parsing-related code to a separate file. Also increased
-        the unit test coverage in some affected areas.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34675
-
-        This revision contains no new functionality.
-
-        * Scripts/check-webkit-style:
-          - Adjusted to call check_webkit_style_parser().
-
-        * Scripts/webkitpy/style/checker.py:
-          - Added check_webkit_style_parser() to pass checker.py
-            configuration settings to optparser.py.
-          - Moved _create_usage() and the CommandOptionValues,
-            DefaultCommandOptionValues, ArgumentPrinter, and
-            ArgumentParser classes to optparser.py.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Moved the ProcessorOptionsTest, ArgumentPrinterTest, and
-            ArgumentParserTest classes to optparser.py.
-          - Added the CheckWebKitStyleFunctionTest class to check
-            the check_webkit_style_configuration() and
-            check_webkit_style_parser() code paths.
-
-        * Scripts/webkitpy/style/optparser.py: Added.
-          - From checker.py, added _create_usage() and the
-            CommandOptionValues, DefaultCommandOptionValues,
-            ArgumentPrinter, and ArgumentParser classes.
-          - In the ArgumentParser constructor--
-            - Added all_categories as a required parameter.
-            - Removed the default value from the default_options parameter.
-
-        * Scripts/webkitpy/style/optparser_unittest.py: Added.
-          - From checker_unittest.py, added the ProcessorOptionsTest,
-            ArgumentPrinterTest, and ArgumentParserTest classes.
-          - Added the CreateUsageTest class to test _create_usage().
-
-        * Scripts/webkitpy/style/unittests.py:
-          - Added optparser_unittest import.
-
-2010-02-18  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        https://bugs.webkit.org/show_bug.cgi?id=35134
-        <rdar://problem/7246280> Crash when a plugin calls NPN_SetStatus(0)
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (testSetStatus):
-        (pluginInvoke):
-        Added a setStatus() method.
-
-2010-02-18  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Particularly constructed WebFrames can try to access a null HistoryItem
-        <rdar://problem/7638892> and https://bugs.webkit.org/show_bug.cgi?id=35063
-
-        Add the specific ability to test this API pattern. 
-
-        For now only on Mac, perhaps on the main Windows port later, probably not relevant for other ports.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (apiTestNewWindowDataLoadBaseURLCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (-[APITestDelegate initWithCompletionCondition:]):
-        (-[APITestDelegate webView:didFailLoadWithError:forFrame:]):
-        (-[APITestDelegate webView:didFailProvisionalLoadWithError:forFrame:]):
-        (-[APITestDelegate webView:didFinishLoadForFrame:]):
-        (LayoutTestController::apiTestNewWindowDataLoadBaseURL): Create a WebView, do a loadData: in its
-          mainFrame, and synchronously wait for main load completion.
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::apiTestNewWindowDataLoadBaseURL):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::apiTestNewWindowDataLoadBaseURL):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::apiTestNewWindowDataLoadBaseURL):
-
-2010-02-18  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Eric Seidel.
-
-        Teach resolve-ChangeLogs to act as a merge-driver for Git
-
-        https://bugs.webkit.org/show_bug.cgi?id=28721
-
-        To enable automatic merging of ChangeLog files, use the following command:
-
-        git config merge.changelog.driver "resolve-ChangeLogs --merge-driver %O %A %B"
-
-        The driver always works in "downstream" merge mode, meaning
-        it will always put the user's changelog entries on top.
-
-        * Scripts/resolve-ChangeLogs:
-
-2009-12-05  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Reviewed by Eric Seidel.
-
-        Enable running of GTK+ API tests.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        * Scripts/run-gtk-tests: Added.
-
-2010-02-18  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        debug-safari doesn't pass --debug option to gdb-safari on MacOSX
-        https://bugs.webkit.org/show_bug.cgi?id=34411
-
-        * Scripts/webkitdirs.pm:
-
-2010-02-18  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        run-chromium-webkit-tests --platform=mac-leopard needs to run build-dumprendertree
-        https://bugs.webkit.org/show_bug.cgi?id=35053
-
-        * Scripts/webkitpy/layout_tests/port/base.py: Add script_path() function for finding scripts.
-        * Scripts/webkitpy/layout_tests/port/chromium.py: Remove unused argument.
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-         - Make sure that calling webkit-build-directory works even if Scripts/ is not in the user's path.
-         - Call build-dumprendertree (and make sure it succeeds) before running the tests.
-
-2010-02-16  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Refactored check-webkit-style's ProcessorOptions class into two
-        classes. This revision contains no new functionality.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34674
-
-        Divided the ProcessorOptions class into a CommandOptionValues
-        class (the result of parsing the command-line options) and
-        a StyleCheckerConfiguration class (which configures the main
-        StyleChecker).
-
-        * Scripts/check-webkit-style:
-          - Updated main() to convert the parsed command option values
-            to a StyleCheckConfiguration instance prior to constructing
-            a StyleChecker.
-
-        * Scripts/webkitpy/style/checker.py:
-          - Added check_webkit_style_configuration() to convert a
-            CommandOptionValues instance into a StyleCheckerConfiguration
-            instance.
-          - Renamed the ProcessorOptions class to CommandOptionValues.
-          - In the CommandOptionValues class--
-            - Replaced the filter_configuration attribute with the
-              simpler filter_rules attribute.
-            - Removed the max_reports_per_error attribute.
-            - Moved the is_reportable() method to the new
-              StyleCheckerConfiguration class.
-          - Removed the base_filter_rules attribute from the
-            DefaultCommandOptionValues class.
-          - In the ArgumentParser class--
-            - Added base_filter_rules to the constructor.
-            - Changed the parse() method to return a CommandOptionValues
-              instance instead of a ProcessorOptions instance.
-          - Created a StyleCheckerConfiguration class.
-            - Added the data attributes max_reports_per_category,
-              stderr_write, and verbosity.
-            - Added is_reportable() (moved from the ProcessorOptions
-              class) and write_style_error() (moved from the
-              DefaultStyleErrorHandler class).
-          - In the StyleChecker class--
-            - Replaced the ProcessorOptions options attribute with the
-              StyleCheckerConfiguration _configuration attribute.
-            - Removed the _stderr_write attribute.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Updated the existing unit test classes as necessary.
-          - Added a StyleCheckerConfigurationTest class.
-
-        * Scripts/webkitpy/style/error_handlers.py:
-          - Updated the DefaultStyleErrorHandler class to accept a
-            StyleCheckerConfiguration instance instead of a ProcessorOptions
-            instance and an stderr_write method.
-
-        * Scripts/webkitpy/style/error_handlers_unittest.py:
-          - Updated the unit test classes as necessary.
-
-        * Scripts/webkitpy/style/filter.py:
-          - Addressed the FIXME in the FilterConfiguration class to change
-            the user_rules attribute to _user_rules (since it is now
-            accessed only internally).
-
-        * Scripts/webkitpy/style/filter_unittest.py:
-          - Updated to reflect the change from user_rules to _user_rules.
-
-2010-02-17  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Share the DRT values maxViewWidth/Height among ports
-        https://bugs.webkit.org/show_bug.cgi?id=34474
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (pageNumberForElementByIdCallback):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::maxViewWidth):
-        (LayoutTestController::maxViewHeight):
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (runTest):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (createWebViewAndOffscreenWindow):
-        (sizeWebViewForCurrentTest):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (dump):
-        (createWebViewAndOffscreenWindow):
-
-2010-02-17  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        [Win] Implement test functions for printing
-        https://bugs.webkit.org/show_bug.cgi?id=34570
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::pageNumberForElementById):
-        (LayoutTestController::numberOfPages):
-
-2010-02-17  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        websocket/tests/cookies/httponly-cookie.pl fails every time under run-chromium-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=35001
-
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py: add -x flag to run pywebsocket.
-
-2010-02-17  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        check-webkit-style: Misses variables that contain underscores.
-        https://bugs.webkit.org/show_bug.cgi?id=33724
-
-        - Check identifiers whose types are unsigned.
-        - Check bitfields properly.
-
-        * Scripts/webkitpy/style/processors/cpp.py:
-        * Scripts/webkitpy/style/processors/cpp_unittest.py:
-
-2010-02-17  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        check-webkit-style should report the number of files checked
-        https://bugs.webkit.org/show_bug.cgi?id=34971
-
-        * Scripts/check-webkit-style:
-        * Scripts/webkitpy/style/checker.py:
-        * Scripts/webkitpy/style/checker_unittest.py:
-
-2010-02-17  Diego Gonzalez  <diego.gonzalez@openbossa.org>
-
-        Reviewed by Ariya Hidayat.
-
-        Make possible Qt DRT to get total number of pages to be printed
-
-        LayoutTests:
-            printing/numberOfPages.html
-
-        [Qt] DRT: Get total number of pages to be printed
-        https://bugs.webkit.org/show_bug.cgi?id=34955
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::numberOfPages):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-02-17  Xan Lopez  <xlopez@igalia.com>
-
-        Reviewed by Gustavo Noronha.
-
-        Update to use new property name.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-
-2010-02-17  Julien Chaffraix  <jchaffraix@webkit.org>
-
-        Reviewed by Ariya Hidayat.
-
-        Remove some warnings seen when building Qt
-        https://bugs.webkit.org/show_bug.cgi?id=35017
-
-        Using a machine without the needed tools to build WebKit leads to
-        several errors and warnings.
-
-        * Scripts/webkitdirs.pm: Refactored the code testing the command's
-        presence into a commandExists routine. While doing so removed, stderr
-        output as it usually does not give anything more than our message. Also
-        added a Qt check for qmake that was missing.
-
-2010-02-17  Xan Lopez  <xlopez@igalia.com>
-
-        Rubber-stamped by Gustavo Noronha.
-
-        Disable Java by default in DRT.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-
-2010-02-15  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Some minor check-webkit-style code clean-ups.  This revision
-        contains no new functionality.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34932
-
-        * Scripts/check-webkit-style:
-          - Replaced the call to webkit_argument_defaults() with a
-            default parameter in the ArgumentParser constructor.
-
-        * Scripts/webkitpy/style/checker.py:
-          - Removed the WEBKIT prefix from the default global variables.
-          - Prefixed several of the global variables with an underscore
-            to reflect that they are used internally.
-          - Renamed _DEFAULT_FILTER_RULES to _BASE_FILTER_RULES.
-          - Addressed a FIXME by changing the _PATH_RULES_SPECIFIER
-            configuration from list-tuple pairs to list-list pairs.
-          - Renamed style_categories() to _all_categories().
-          - Renamed webkit_argument_defaults() to _check_webkit_style_defaults().
-          - Renamed the ArgumentDefaults class to DefaultCommandOptionValues.
-          - In the ArgumentParser class--
-            - Renamed the doc_print attribute to stderr_write.
-            - Other minor updates.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Updated the import statements and unit test classes as necessary.
-          - Added assertions to test _PATH_RULES_SPECIFIER more fully.
-
-        * Scripts/webkitpy/style/error_handlers_unittest.py:
-          - Updated the unit test classes as necessary.
-          - Changed StyleErrorHandlerTestBase to store a list of error
-            messages rather than just the last one.
-
-        * Scripts/webkitpy/style/filter.py:
-          - Altered FilterConfiguration._path_rules_from_path()
-            to convert the path_rules list to a tuple.
-
-        * Scripts/webkitpy/style/filter_unittest.py:
-          - Updated the unit tests to reflect the change from tuples to
-            lists in the _PATH_RULES_SPECIFIER configuration variable.
-
-2010-02-16  Mark Rowe  <mrowe@apple.com>
-
-        Let's not check garbage in to common build scripts and hose the world now eh guys?
-
-        * Scripts/webkitdirs.pm:
-
-2010-02-16  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        re-factor Skipped list parsing code into multiple functions and unit test it
-        https://bugs.webkit.org/show_bug.cgi?id=34986
-
-        * Scripts/test-webkitpy: Add new unit test.
-        * Scripts/webkitpy/layout_tests/__init__.py: Copied from WebKitTools/QueueStatusServer/filters/__init__.py.
-        * Scripts/webkitpy/layout_tests/port/mac.py: Split parsing function into multiple functions for testing.
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py: Added.
-
-2010-02-16  Xan Lopez  <xlopez@igalia.com>
-
-        Reviewed by Gustavo Noronha.
-
-        Enable 'auto-resize-window' in our DRT.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-
-2010-02-15  Martin Robinson  <mrobinson@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        check-webkit-style should not complain about NULL sentinel in calls to g_strconcat and g_strjoin
-        https://bugs.webkit.org/show_bug.cgi?id=34834
-
-        * Scripts/webkitpy/style/processors/cpp.py:
-        * Scripts/webkitpy/style/processors/cpp_unittest.py:
-
-2010-02-12  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Kevin Decker.
-
-        <rdar://problem/7130641> Browser objects identity is not preserved by Safari
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (pluginInvoke): Added methods for checking object identity (via refcount).
-
-2010-02-15  Robert Hogan  <robert@roberthogan.net>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] DRT: Support evaluateInWebInspector(), setTimelineProfilingEnabled().
-
-        Support LayoutTestController.evaluateInWebInspector(), setTimelineProfilingEnabled() in Qt DRT.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33096
-
-        This allows the following tests to pass:
-
-        inspector/console-format-collections.html
-        inspector/styles-iframe.html
-        inspector/syntax-highlight-css.html
-        inspector/syntax-highlight-javascript.html
-        inspector/timeline-enum-stability.html
-        inspector/timeline-layout.html
-        inspector/timeline-mark-timeline.html
-        inspector/timeline-paint.html
-        inspector/timeline-parse-html.html
-        inspector/timeline-recalculate-styles.html
-        inspector/timeline-script-tag-1.html
-        inspector/timeline-script-tag-2.html
-        inspector/timeline-trivial.html
-        inspector/cookie-resource-match.html
-        inspector/elements-img-tooltip.html
-        inspector/elements-panel-selection-on-refresh.html
-        inspector/inspected-objects-not-overriden.html
-        inspector/timeline-event-dispatch.html
-        inspector/timeline-network-resource.html
-        inspector/elements-panel-rewrite-href.html
-        inspector/console-dir.html
-        inspector/console-dirxml.html
-        inspector/console-format.html
-        inspector/console-tests.html
-        inspector/elements-panel-structure.html
-        inspector/evaluate-in-frontend.html
-        inspector/console-clear.html
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        (WebCore::isWebInspectorTest):
-        (WebCore::DumpRenderTree::open):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        (WebCore::DumpRenderTree::display):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::closeWebInspector):
-        (LayoutTestController::showWebInspector):
-        (LayoutTestController::evaluateInWebInspector):
-        (LayoutTestController::setTimelineProfilingEnabled):
-        (LayoutTestController::display):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-02-14  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Update rebaseline-chromium-webkit-tests to work with the new code
-        structure (port objects instead of path_utils and platform_utils).
-
-        Added a path_to_test_expectations_file() to the Port interface.
-  
-        Fixed a bug in the chromium_* platform implementations where the
-        'target' option was assumed to be set.
-
-        * Scripts/rebaseline-chromium-webkit-tests:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-
-2010-02-14  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        webkit-build-directory misuses terms
-        https://bugs.webkit.org/show_bug.cgi?id=34822
-
-        * Scripts/webkit-build-directory:
-         - Add --top-level and --configuration options and make using one of them required.
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-         - Use --top-level instead of --base.
-
-2010-02-14  Chang Shu  <Chang.Shu@nokia.com>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt] Enable appcache feature.
-        https://bugs.webkit.org/show_bug.cgi?id=34713
-
-        Re-land r54543 without the change in DumpRenderTree/qt/main.cpp.
-        Persistent storage for AppCache is already initialized in
-        DumpRenderTreeQt.cpp.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::WebPage):
-
-2010-02-12  Chang Shu  <Chang.Shu@nokia.com>
-
-        Not Reviewed.
-
-        Change case of my email address as a work-around for the following bug.
-        https://bugs.webkit.org/show_bug.cgi?id=34717
-
-        * Scripts/webkitpy/committers.py:
-
-2010-02-12  Darin Adler  <darin@apple.com>
-
-        Ignore compiled Python in more of webkitpy.
-
-        * Scripts/webkitpy/style/processors: Added property svn:ignore.
-
-2010-02-12  Diego Gonzalez  <diego.gonzalez@openbossa.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Qt DRT now dump the frame loader callbacks when LayoutTestController()
-        method is called.
-
-        LayoutTests:
-            http/tests/security/mixedContent/data-url-script-in-iframe.html
-            http/tests/security/mixedContent/empty-url-plugin-in-frame.html
-            http/tests/security/mixedContent/insecure-css-in-iframe.html
-            http/tests/security/mixedContent/insecure-iframe-in-iframe.html
-            http/tests/security/mixedContent/insecure-image-in-iframe.html
-            http/tests/security/mixedContent/insecure-plugin-in-iframe.html
-            http/tests/security/mixedContent/insecure-script-in-iframe.html
-            http/tests/security/mixedContent/redirect-http-to-https-script-in-iframe.html
-            http/tests/security/mixedContent/redirect-https-to-http-script-in-iframe.html
-
-        [Qt] Make possible Qt DRT dump frame load callbacks
-        https://bugs.webkit.org/show_bug.cgi?id=34702
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::dumpFrameLoadCallbacks):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-02-12  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Reviewed by Antti Koivisto.
-
-        Make QtLauncher somewhat useable on S60.
-
-        Show the window fullscreen to make scrollbars appear, resize
-        the toolbar buttons to 16x16 to give more screen space to
-        web content and moved the location lineedit into a separate
-        line.
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::LauncherWindow):
-        * QtLauncher/mainwindow.cpp:
-        (MainWindow::buildUI):
-
-2010-02-12  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Support frameset flattening
-        https://bugs.webkit.org/show_bug.cgi?id=32717
-
-        Add FrameSet Flattening support to Mac DRT.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setFrameSetFlatteningEnabled):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setXSSAuditorEnabled):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setFrameSetFlatteningEnabled):
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setFrameSetFlatteningEnabledCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setFrameSetFlatteningEnabled):
-
-2010-02-12  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Fix typos in driver_test.py 
-
-        https://bugs.webkit.org/show_bug.cgi?id=34810
-
-        * Scripts/webkitpy/layout_tests/driver_test.py:
-
-2010-02-12  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Make it possible to toggle the use of QGraphicsView in QtLauncher at run-time
-        https://bugs.webkit.org/show_bug.cgi?id=34844
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::LauncherWindow):
-        (LauncherWindow::initializeView):
-        (LauncherWindow::setupUI):
-        * QtLauncher/webview.cpp:
-        (WebViewGraphicsBased::WebViewGraphicsBased):
-
-2010-02-11  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Reviewed by Alexey Proskuryakov.
-
-        WebSocket ignores HttpOnly cookies, but should use in Handshake.
-        https://bugs.webkit.org/show_bug.cgi?id=34289
-
-        Update pywebsocket to 0.4.8, which supports cgi directories.
-        run-webkit-tests and run-webkit-websocketserver will run
-        pywebsocket, specifying /websocket/test/cookies as cgi directory.
-
-        * Scripts/run-webkit-tests:
-        * Scripts/run-webkit-websocketserver:
-        * pywebsocket/mod_pywebsocket/standalone.py:
-        * pywebsocket/setup.py:
-
-2010-02-11  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        Reviewed by Dan Bernstein.
-
-        [Mac] Duplicated setXSSAuditorEnabled preference at Mac DRT
-        https://bugs.webkit.org/show_bug.cgi?id=34798
-
-        Remove duplicated setXSSAuditorEnabled preference at Mac DRT
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-
-2010-02-11  Eric Seidel  <eric@webkit.org>
-
-        No review, build fix only.
-
-        webkitdirs.pm has a crazy amount of duplicated feature detection code
-        https://bugs.webkit.org/show_bug.cgi?id=34869
-
-        * Scripts/build-webkit: Fix typo which broke bots.
-
-2010-02-11  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        webkitdirs.pm has a crazy amount of duplicated feature detection code
-        https://bugs.webkit.org/show_bug.cgi?id=34869
-
-        * Scripts/build-webkit: Use the new hotness.
-        * Scripts/run-webkit-tests: ditto
-        * Scripts/webkitdirs.pm: Remove a bunch of bad duplicate code.
-        * Scripts/webkitperl/features.pm: Added.
-         - Simplified the 10 methods in webkitdirs.pm into 2 exported methods in this new file.
-
-2010-02-11  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Adam Barth.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34830
-
-        Makes method User.prompt static and adds the parameter repeat
-        to prompt the user up to repeat times.
-
-        * Scripts/test-webkitpy:
-        * Scripts/webkitpy/bugzilla.py: Substituted method User.prompt for method raw_input.
-        * Scripts/webkitpy/commands/upload.py: Ditto
-        * Scripts/webkitpy/credentials.py: Ditto
-        * Scripts/mock_bugzillatool.py: Updated prototype of MockUser.prompt to match User.prompt.
-        * Scripts/webkitpy/user.py: Made method prompt static and added parameter repeat.
-        * Scripts/webkitpy/user_unittest.py: Added.
-
-2010-02-10  Yuzo Fujishima  <yuzo@google.com>
-
-        Reviewed by Darin Adler.
-
-        Allow underscored identifiers in CSSParser.cpp
-
-        Flex (http://flex.sourceforge.net/) uses identifiers named as yy_*.
-        WebCore/css/CSSParser.cpp needs to handle some such identifiers.
-        We should relax the style rule for the file to allow underscored identifiers.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34787
-
-        * Scripts/webkitpy/style/checker.py:
-
-2010-02-11  Eric Seidel  <eric@webkit.org>
-
-        Rubber-stamped by Adam Barth.
-
-        Remove DrawTest, the application I used when bringing up SVG support on the Mac.
-        The code hasn't been touched (or used) in years.  No sense in keeping it in trunk.
-
-        * Scripts/build-drawtest: Removed.
-        * Scripts/run-drawtest: Removed.
-        * DrawTest: Removed.
-
-2010-02-11  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Need a command to clear r+ on obsolete patches in the pending-commit queue.
-        https://bugs.webkit.org/show_bug.cgi?id=34863
-
-        Unfortunately our http://webkit.org/pending-commit bugzilla query is not
-        smart enough to ignore obsolete patches, so bugs show up there which are
-        still open, but do not have patches ready for landing on them.
-        This new command "clean-pending-commit" will remove r+ from obsolete patches
-        in the pending-commit list.
-
-        * Scripts/test-webkitpy: Add grammar_unittest
-        * Scripts/webkitpy/commands/upload.py: Add clean-pending-commit and make assign-to-committer ignore cq+'d patches.
-        * Scripts/webkitpy/grammar.py: Add join_with_separators
-        * Scripts/webkitpy/grammar_unittest.py: Added.
-
-2010-02-11  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        run-chromium-webkit-tests fails random pixel tests on Mac
-        https://bugs.webkit.org/show_bug.cgi?id=34862
-
-        This is due to the fact that the Mac port has an
-        invalid path to the image diff tool.  Currently it points
-        to image_diff even though ImageDiff would be correct.  We
-        can't change it to the right path yet without causing the
-        script to hang.  ImageDiff expects to be long-running and
-        be passed image data over stdin.  image_diff (chromium's fork)
-        expects to be passed command line arguments.
-        This fix works around the random failures by disabling pixel
-        tests on mac and logging if the user was trying to run with pixel
-        tests enabled.
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-
-2010-02-11  Nikolas Zimmermann  <nzimmermann@rim.com>
-
-        Reviewed by Adam Roben.
-        Try to fix build breakage from r54665.
-        
-        * Scripts/check-for-global-initializers:
-
-2010-02-11  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Reviewed by Tor Arne Vestbø.
-
-        Make it possible to toggle accelerated compositing from the menu
-        at run-time.
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::toggleAcceleratedCompositing):
-        (LauncherWindow::setupUI):
-
-2010-02-08  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Cameron Zwarich.
-
-        Restore ENABLE_RUBY flag so vendors can ship with Ruby disabled if they choose.
-        https://bugs.webkit.org/show_bug.cgi?id=34698
-
-        * Scripts/build-webkit:
-
-2010-02-10  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Fix various minor bugs keeping run-chromium-webkit-tests from actually
-        working on the linux and win ports of Chromium.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34739
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_shell_thread.py:
-        * Scripts/webkitpy/layout_tests/port/__init__.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-
-2010-02-10  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Levin.
-
-        run-chromium-webkit-tests --platform=mac-leopard crashes when using a custom build directory
-        https://bugs.webkit.org/show_bug.cgi?id=34817
-
-        This doesn't fix the root cause of us not
-        correctly failing when support binaries are missing.
-        This only causes the DumpRenderTree binary not to be
-        missing in the custom build directory case.
-        Later patches will make us correctly fail fast when
-        support binaries (like DumpRenderTree or ImageDiff) are missing.
-
-        * Scripts/webkit-build-directory: Added.
-         - Need a way to re-use the perl logic for finding build directories in non-perl scripts.
-        * Scripts/webkitpy/layout_tests/port/base.py: Add a FIXME.
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-         - Call webkit-build-directory to find the build directory instead of assuming "WebKitBuild"
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py: Add FIXMEs.
-
-2010-02-10  Kevin Watters  <kevinwatters@gmail.com>
-
-        Reviewed by Kevin Ollivier.
-
-        [wx] Add Windows complex text support.
-        
-        https://bugs.webkit.org/show_bug.cgi?id=34759
-
-        * wx/build/settings.py:
-
-2010-02-10  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix. Add stub for new LayoutTestController method.
-
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::numberOfPages):
-
-2010-02-10  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed. Roll out r54626, because it broke GTK and Win build.
-        https://bugs.webkit.org/show_bug.cgi?id=32717
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-
-2010-02-10  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Support frameset flattening
-        https://bugs.webkit.org/show_bug.cgi?id=32717
-
-        Add FrameSet Flattening support to Mac DRT.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setFrameSetFlatteningEnabledCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setFrameSetFlatteningEnabled):
-
-2010-02-08  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        <rdar://problem/7436875> Crash in Flash when visiting
-        http://www.cctv.com/default.shtml (WER ID 819298200) [watson 2502260]
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/win/TestNetscapePlugin/main.cpp:
-        (executeScript):
-        Moved to an earlier point in the file.
-        (NPP_New):
-        If the plug-in has an onDestroy attribute, store its value.
-        (NPP_Destroy):
-        If the plug-in has code to run on destruction, run it and free it.
-
-2010-02-10  Diego Gonzalez  <diego.gonzalez@openbossa.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Implement pageNumberForElementById() method in Qt DRT LayoutTestController,
-        to make Qt DRT able to get page number.
-
-        LayoutTests:
-            printing/page-break-always.html
-            printing/pageNumerForElementById.html
-            printing/css2.1/page-break-before-000.html
-            printing/css2.1/page-break-after-000.html
-            printing/css2.1/page-break-after-004.html
-            printing/css2.1/page-break-before-001.html
-            printing/css2.1/page-break-after-001.html
-            printing/css2.1/page-break-after-002.html
-            printing/css2.1/page-break-before-002.html
-            printing/css2.1/page-break-inside-000.html
-
-        [Qt] Make possible Qt DRT get a page number for element by ID
-        https://bugs.webkit.org/show_bug.cgi?id=34777
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::pageNumberForElementById):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-02-10  Andras Becsi  <abecsi@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Make run-iexploder-tests work on Linux.
-        https://bugs.webkit.org/show_bug.cgi?id=34748
-
-        Extract the platform dependant Apache configuration checking code in httpd.pm to a separate function
-        called getHTTPDConfigPathForTestDirectory and use run-launcher instead of run-safari if run on Linux.
-
-        * Scripts/run-iexploder-tests:
-        * Scripts/webkitperl/httpd.pm:
-
-2010-02-09  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Unreviewed. Roll-out r54543, because layout tests crash in debug mode.
-        https://bugs.webkit.org/show_bug.cgi?id=34713
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::WebPage):
-        * DumpRenderTree/qt/main.cpp:
-        (main):
-
-2010-02-09  Alejandro G. Castro  <alex@igalia.com>
-
-        Unreviewed; added myself to committers
-
-        * Scripts/webkitpy/committers.py:
-
-2010-02-09  Yael Aharon  <yael.aharon@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Webkit in Qt does not have window.showModalDialog
-        https://bugs.webkit.org/show_bug.cgi?id=25585
-
-        Set the modality flag when createWindow is called with window type WebWindowDialog.
-
-        * QtLauncher/main.cpp:
-        (WebPage::createWindow):
-
-2010-02-09  Andras Becsi  <abecsi@webkit.org>
-
-        Unreviewed trivial warning fix.
-
-        * Scripts/build-webkit:
-
-2010-02-09 Gabor Rapcsanyi <rgabor@inf.u-szeged.hu>
-
-        Reviewed by Tor Arne Vestbø.
-
-        Add possibility of passing parameters to build-webkit by environment variable,
-        because the buildbot slaves can't control the arguments.
-
-        * Scripts/build-webkit:
-
-2010-02-09  Chang Shu  <Chang.Shu@nokia.com>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt] Enable appcache feature.
-        https://bugs.webkit.org/show_bug.cgi?id=34713
-
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::WebPage):
-        * DumpRenderTree/qt/main.cpp:
-        (main):
-
-2010-02-09  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        Provide a way to get total number of pages to be printed
-        https://bugs.webkit.org/show_bug.cgi?id=34699
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (parsePageParameters):
-        (pageNumberForElementByIdCallback):
-        (numberOfPagesCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::numberOfPages):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::numberOfPages):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::numberOfPages):
-
-2010-02-08  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34727
-        Assertion crashes and freezes when plug-in property access results in an exception
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (pluginGetProperty): Raise an exception when accessing a particular property.
-        (pluginSetProperty): Ditto.
-        (pluginInvoke): Added methods to get and set host object properties.
-
-2010-02-08  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Ariya Hidayat.
-
-        [Qt] Backport No'am Rosenthal's frame rate measurement
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::LauncherWindow):
-        (LauncherApplication::handleUserOptions):
-        * QtLauncher/webview.cpp:
-        (WebViewGraphicsBased::WebViewGraphicsBased):
-        (WebViewGraphicsBased::enableFrameRateMeasurement):
-        (WebViewGraphicsBased::updateFrameRate):
-        (WebViewGraphicsBased::paintEvent):
-        * QtLauncher/webview.h:
-
-2010-02-08  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Tor Arne Vestbø.
-
-        [Qt] Make overridePreference complain when it does not
-        support the preference given.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::overridePreference):
-
-2010-02-08  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Set stdout/stderr to binary mode for DRT on Windows
-
-        This makes sure we don't end up with lots of CRLFs in the
-        DRT output, which breaks tons of results. Matches what
-        the Windows DRT does.
-
-        * DumpRenderTree/qt/main.cpp:
-
-2010-02-08  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Build fix for Qt on Windows.
-
-        Don't use noreturn directly since it's a gcc attribute.
-        Instead use the NO_RETURN macro from AlwaysInline.h
-
-        * QtLauncher/QtLauncher.pro:
-        * QtLauncher/utils.h:
-
-2010-02-05  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Suppressed check-webkit-style's underscore check in Qt's autotests.
-        Also made the path-specific filter check case-insensitive.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34574
-
-        * Scripts/webkitpy/style/checker.py:
-          - Added a list element to _PATH_RULES_SPECIFIER for
-            directories that should be excluded from the
-            "readability/naming" category (the category that relates to
-            underscores in identifiers, for example).
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Added an "end-to-end" test for "WebKit/qt/tests/".
-
-        * Scripts/webkitpy/style/filter.py:
-          - Altered FilterConfiguration's should_check() method to
-            check for path substring matches case-insensitively.
-
-        * Scripts/webkitpy/style/filter_unittest.py:
-          - Added a test to check case-insensitive path substring matching.
-
-        * Scripts/webkitpy/style/processors/cpp.py:
-          - Removed the hard-coded "WebKit/gtk/webkit/" path reference
-            since this is now taken care of by the _PATH_RULES_SPECIFIER
-            configuration variable.
-
-        * Scripts/webkitpy/style/processors/cpp_unittest.py:
-          - Removed the unit test for the GTK directory since this
-            is now taken care of by the checker._PATH_RULES_SPECIFIER
-            end-to-end tests.
-
-2010-02-08  Leith Bade  <leith@leithalweapon.geek.nz>
-
-        Reviewed by Darin Adler.
-
-        Fixes: https://bugs.webkit.org/show_bug.cgi?id=34637
-        Corrects the newline inserted into WebKitOutputDir, and WebKitLibrariesDir Windows
-        environemnt variables when there is a space in the user's /home path.
-
-        * Scripts/webkitdirs.pm:
-         - Added missing quotes around $sourceDir in argument list of cygpath in determineWindowsSourceDir().
-
-2010-02-05  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34670
-        TestNetscapePlugin should work with Firefox
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.cpp: (NPP_New): Default to Carbon if
-        browser doesn't tell what it supports.
-
-2010-02-05  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        [Gtk] Implement layoutTestController.pageNumberForElementById
-        https://bugs.webkit.org/show_bug.cgi?id=34572
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::pageNumberForElementById):
-
-2010-02-03  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Add a simple test implementation and the WebKit Mac implementation
-        for the layout_tests/port package. Also add a simple test driver of
-        that interface.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34511
-
-        * Scripts/webkitpy/layout_tests/driver_test.py: Added.
-        * Scripts/webkitpy/layout_tests/port/__init__.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py: Added.
-        * Scripts/webkitpy/layout_tests/port/test.py: Added.
-
-2010-02-03  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Siedel.
-
-        Refactor the port package into an object-oriented style and merge
-        path_utils into it. We add a 'base' and a 'chromium' object to the
-        port package; this will allow us to easily add new ports (like
-        WebKit Mac).
-
-        https://bugs.webkit.org/show_bug.cgi?id=34511
-
-        * Scripts/rebaseline-chromium-webkit-tests:
-        * Scripts/run-chromium-webkit-tests:
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_files.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_shell_thread.py:
-        * Scripts/webkitpy/layout_tests/port/__init__.py:
-        * Scripts/webkitpy/layout_tests/port/apache_http_server.py:
-        * Scripts/webkitpy/layout_tests/port/base.py: Added.
-        * Scripts/webkitpy/layout_tests/port/chromium.py: Added.
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-        * Scripts/webkitpy/layout_tests/port/http_server_base.py:
-        * Scripts/webkitpy/layout_tests/port/path_utils.py: Removed.
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_chromium_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/test_types/fuzzy_image_diff.py:
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py:
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py:
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-
-2010-01-19  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Dave Hyatt.
-
-        Implement flattening of framesets
-        https://bugs.webkit.org/show_bug.cgi?id=32717
-
-        Add support for testing frame flattening with the Qt DRT
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setFrameSetFlatteningEnabled):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-02-03  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Provided a way in check-webkit-style to specify filter rules
-        on a per file or folder basis, via a configuration variable.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33684
-
-        * Scripts/webkitpy/style/checker.py:
-          - Added _PATH_RULES_SPECIFIER configuration variable.
-          - In ProcessorOptions class--
-            - Changed the CategoryFilter attribute to FilterConfiguration.
-            - Added path parameter to is_reportable().
-          - Renamed ArgumentDefaults filter_rules attribute to
-            base_filter_rules.
-          - Updated ArgumentPrinter class.
-          - Added filter rule validation to ArgumentParser (instead of
-            in CategoryFilter constructor).
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Updated unit tests as necessary.
-          - Added unit tests for PATH_RULES_SPECIFIER.
-
-        * Scripts/webkitpy/style/error_handlers.py:
-          - Updated DefaultStyleErrorHandler to use file path when
-            calling is_reportable().
-
-        * Scripts/webkitpy/style/error_handlers_unittest.py:
-          - Updated unit tests as necessary.
-
-        * Scripts/webkitpy/style/filter.py:
-          - Marked CategoryFilter internal with an underscore.
-          - Removed argument validation from CategoryFilter.
-          - Added FilterConfiguration class.
-
-        * Scripts/webkitpy/style/filter_unittest.py:
-          - Updated CategoryFilterTest class.
-          - Added FilterConfigurationTest unit tests.
-
-        * Scripts/webkitpy/style/processors/cpp.py:
-          - Removed _is_test_filename() code.
-          - Removed hard-coded path checks from check_include_line().
-
-        * Scripts/webkitpy/style/processors/cpp_unittest.py:
-          - Removed three unit tests related to exempted files.
-
-2010-02-05  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Ariya Hidayat.
-
-        [Qt] Apply the command line options as settings to the
-        graphics system.
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::LauncherWindow):
-        (requiresGraphicsView):
-        (LauncherApplication::handleUserOptions):
-        * QtLauncher/webview.h:
-        (WebViewGraphicsBased::setItemCacheMode):
-
-2010-02-05  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        Notify user that run-webkit-tests has to be run under Cygwin
-
-        The script will bail out if run under Windows shell or Msys.
-
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2010-02-05  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Generate convenience headers (QWebView, etc) using qmake
-
-        In Qt this is done using syncqt, but we use a pro-file instead
-        that generates makefile-rules for each of the extra headers.
-
-        These extra headers are installed alongside the normal headers.
-
-        * Scripts/webkitdirs.pm: Run qmake and make on new API-DerivedSources
-
-2010-02-05  Andras Becsi  <abecsi@webkit.org>
-
-        Unreviewed typo fix.
-
-        Fix wrong whitespace alignment introduced in r54342.
-
-        * Scripts/run-webkit-tests:
-
-2010-02-04  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Timothy Hatcher.
-
-        Build fix.  Remove a symbol corresponding to an inline function from the linker export
-        file to prevent a weak external failure.
-
-        * Scripts/check-for-weak-vtables-and-externals: Renamed from WebKitTools/Scripts/check-for-weak-vtables.
-        Teach the script how to detect weak external symbols so that these errors can be caught immediately
-        in the future.
-
-2010-02-04  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Rubberstamped by Oliver Hunt.
-
-        [Qt] Make it possible to choose whether the launcher should
-        use the traditional QWidget based QWebView or the newer
-        QGraphics based QGraphicsWebView on a QGraphicsView.
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::LauncherWindow):
-        (LauncherWindow::eventFilter):
-        (LauncherWindow::loadStarted):
-        (LauncherWindow::print):
-        (LauncherWindow::screenshot):
-        (LauncherWindow::setEditable):
-        (LauncherWindow::setupUI):
-        (main):
-        * QtLauncher/webview.cpp:
-        (WebViewGraphicsBased::WebViewGraphicsBased):
-        (WebViewGraphicsBased::resizeEvent):
-        (GraphicsWebView::mousePressEvent):
-        (GraphicsWebView::contextMenuEvent):
-        * QtLauncher/webview.h:
-        (WebViewTraditional::WebViewTraditional):
-        (GraphicsWebView::GraphicsWebView):
-        (WebViewGraphicsBased::setPage):
-
-2010-02-04  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Rubberstamped by Oliver Hunt.
-
-        [Qt] QtLauncher cleanup.
-
-        Refactor option handling out in utility functions and make the
-        arguments more Qt compatible.
-
-        * QtLauncher/main.cpp:
-        (requiresGraphicsView):
-        (LauncherApplication::handleUserOptions):
-        * QtLauncher/utils.cpp:
-        (takeOptionValue):
-        (formatKeys):
-        (enumToKeys):
-        (appQuit):
-        * QtLauncher/utils.h:
-
-2010-02-04  Andras Becsi  <abecsi@inf.u-szeged.hu>
-
-        Reviewed by Tor Arne Vestbø.
-
-        Implement a locking and scheduling mechanism for http testing sessions to be able
-        to run multiple instances of run-webkit-tests parallel on the same machine.
-        If a test session wants to run http tests and this feature is enabled, the pending
-        sessions create lockfiles with sequential lock numbers. These locks are used to schedule
-        the running test sessions in first come first served order. An exclusive lock ensures
-        that the lock numbers are sequential to avoid deadlocks and starvation.
-        Because the buildbot master specifies the flags used by slaves we need an environment
-        variable too to be able to use the feature per-slave.
-        Exporting WEBKIT_WAIT_FOR_HTTPD=1 before testing or using the --wait-for-httpd
-        flag enables this feature, otherwise this patch has no effect on the testing whatsoever.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33153
-
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitperl/httpd.pm:
-
-2010-01-22  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        Make run-webkit-tests work under Cygwin for the Qt port
-
-        setPathForRunningWebKitApp() is implemented for the Qt port
-        by using qmake to query for the location of the Qt libraries.
-
-        This requires the original environment (%ENV) to be untouched,
-        so launchWithCurrentEnv() was refactored to launchWithEnv(),
-        and the code in openDumpTool() to not use %ENV but a %CLEAN_ENV
-        instead. This has the added benefit of getting rid of the temp
-        variables used for storing the current env.
-
-        openDumpTool() is also refactored a bit into platform-spesific,
-        port-spesific, and generic environment variables.
-
-        Checks for undef was added a few places to fix Perl concat
-        warnings when run-webkit-tests is aborted.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33895
-
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2010-02-04  Yuzo Fujishima  <yuzo@google.com>
-
-        Unreviewed.
-
-        Add Yuzo to the committers list.
-
-        * Scripts/webkitpy/committers.py:
-
-2010-02-03  Dirk Pranke  <dpranke@chromium.org>
-
-        Rubber-stamped by Eric Seidel.
-
-        Change "the Chromium name" to "the name of Google Inc." in the licenses
-
-        https://bugs.webkit.org/show_bug.cgi?id=34511
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/metered_stream.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_files.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_shell_thread.py:
-        * Scripts/webkitpy/layout_tests/port/__init__.py:
-        * Scripts/webkitpy/layout_tests/port/apache_http_server.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-        * Scripts/webkitpy/layout_tests/port/http_server_base.py:
-        * Scripts/webkitpy/layout_tests/port/path_utils.py:
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_chromium_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/test_types/fuzzy_image_diff.py:
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py:
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py:
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-
-2010-02-03  Dirk Pranke  <dpranke@chromium.org>
-
-        Rubber-stamped by Eric Siedel.
-
-        Rename files as part of refactoring the layout_tests package. All
-        the platform_utils* module, the path_utils.py module, and
-        the http server and web socket server modules are moved into a new
-        port/ package.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34511
-
-        * Scripts/webkitpy/layout_tests/layout_package/apache_http_server.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/http_server.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/http_server_base.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/httpd2.pem: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/lighttpd.conf: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/path_utils.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/platform_utils.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/platform_utils_linux.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/platform_utils_mac.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/platform_utils_win.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_files.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_shell_thread.py:
-        * Scripts/webkitpy/layout_tests/layout_package/websocket_server.py: Removed.
-        * Scripts/webkitpy/layout_tests/port: Added.
-        * Scripts/webkitpy/layout_tests/port/__init__.py: Copied from Scripts/webkitpy/layout_tests/layout_package/platform_utils.py.
-        * Scripts/webkitpy/layout_tests/port/apache_http_server.py: Copied from Scripts/webkitpy/layout_tests/layout_package/apache_http_server.py.
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py: Copied from Scripts/webkitpy/layout_tests/layout_package/platform_utils_linux.py.
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py: Copied from Scripts/webkitpy/layout_tests/layout_package/platform_utils_mac.py.
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py: Copied from Scripts/webkitpy/layout_tests/layout_package/platform_utils_win.py.
-        * Scripts/webkitpy/layout_tests/port/http_server.py: Copied from Scripts/webkitpy/layout_tests/layout_package/http_server.py.
-        * Scripts/webkitpy/layout_tests/port/http_server_base.py: Copied from Scripts/webkitpy/layout_tests/layout_package/http_server_base.py.
-        * Scripts/webkitpy/layout_tests/port/httpd2.pem: Copied from Scripts/webkitpy/layout_tests/layout_package/httpd2.pem.
-        * Scripts/webkitpy/layout_tests/port/lighttpd.conf: Copied from Scripts/webkitpy/layout_tests/layout_package/lighttpd.conf.
-        * Scripts/webkitpy/layout_tests/port/path_utils.py: Copied from Scripts/webkitpy/layout_tests/layout_package/path_utils.py.
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py: Copied from Scripts/webkitpy/layout_tests/layout_package/websocket_server.py.
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_chromium_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/test_types/fuzzy_image_diff.py:
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py:
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py:
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-
-
-2010-02-03  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Rubber-stamped by Eric Seidel.
-
-        Roll back r53559 and r54084 again, because roll out didn't solve flakeyness on the Windows Test bots
-        https://bugs.webkit.org/show_bug.cgi?id=34399
-
-        * Scripts/run-iexploder-tests:
-        * Scripts/run-webkit-httpd:
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitperl/httpd.pm: Added.
-
-2010-02-03  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Rubber-stamped by Eric Seidel.
-
-        Roll out r53559 and r54084, because it might caused flakeyness on the Windows Test bots
-
-        * Scripts/run-iexploder-tests:
-        * Scripts/run-webkit-httpd:
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitperl/httpd.pm: Removed.
-
-2010-02-03  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Rubber-stamped by Ariya Hidayat.
-
-        Roll back r53889 again, because roll out didn't solve flakeyness on the Windows Test bots
-        https://bugs.webkit.org/show_bug.cgi?id=34399
-
-        * DumpRenderTree/win/EventSender.cpp:
-        (buildModifierFlags):
-        (mouseDownCallback):
-        (mouseUpCallback):
-        (keyDownCallback):
-
-2010-02-03  Eric Seidel  <eric@webkit.org>
-
-        No review, just fixing copyrights.
-
-        Concerns were expressed about "The Chromium Authors" being
-        a valid legal entity for copyright assignment in the WebKit repository,
-        so this change removes all "The Chromium Authors".
-
-        I looked at the svn logs in src.chromium.org and failed to find any
-        non-google contributions to these files, so they are all now
-        marked as copyright "Google Inc" as all Google contributers assign
-        copyright to "Google Inc" as part of their employment agreement.
-
-        * Scripts/rebaseline-chromium-webkit-tests:
-        * Scripts/run-chromium-webkit-tests:
-        * Scripts/webkitpy/layout_tests/layout_package/apache_http_server.py:
-        * Scripts/webkitpy/layout_tests/layout_package/http_server.py:
-        * Scripts/webkitpy/layout_tests/layout_package/http_server_base.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/metered_stream.py:
-        * Scripts/webkitpy/layout_tests/layout_package/path_utils.py:
-        * Scripts/webkitpy/layout_tests/layout_package/platform_utils.py:
-        * Scripts/webkitpy/layout_tests/layout_package/platform_utils_linux.py:
-        * Scripts/webkitpy/layout_tests/layout_package/platform_utils_mac.py:
-        * Scripts/webkitpy/layout_tests/layout_package/platform_utils_win.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_files.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_shell_thread.py:
-        * Scripts/webkitpy/layout_tests/layout_package/websocket_server.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_chromium_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/test_types/fuzzy_image_diff.py:
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py:
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py:
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-
-2010-02-03  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Ariya Hidayat.
-
-        [Qt] QtLauncher, refactor argument handling in preparation of merge
-        with QGVLauncher
-
-        * QtLauncher/main.cpp:
-        (LauncherApplication::urls):
-        (LauncherApplication::isRobotized):
-        (LauncherApplication::applyDefaultSettings):
-        (LauncherApplication::LauncherApplication):
-        (LauncherApplication::formatKeys):
-        (LauncherApplication::enumToKeys):
-        (fail):
-        (LauncherApplication::handleUserOptions):
-        (main):
-
-2010-02-03  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Rubber-stamped by Ariya Hidayat.
-
-        Rolling out r53889, because it might caused flakeyness on the Windows Test bots
-        https://bugs.webkit.org/show_bug.cgi?id=34399
-
-        * DumpRenderTree/win/EventSender.cpp:
-        (mouseDownCallback):
-        (mouseUpCallback):
-        (keyDownCallback):
-
-2010-02-03  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Ariya Hidayat.
-
-        [Qt] Fix pixel tests support.
-        https://bugs.webkit.org/show_bug.cgi?id=27813
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::open):
-        (WebCore::DumpRenderTree::processLine):
-         - Hash processing mechanism moved from DumpRenderTree::open to DumpRenderTree::processLine.
-        (WebCore::DumpRenderTree::dump): Fixed and renamed variables.
-
-2010-02-03  Kevin Watters  <kevinwatters@gmail.com>
-
-        Reviewed by Kevin Ollivier.
-
-        [wx] Enable JIT compilation for wx.
-        
-        https://bugs.webkit.org/show_bug.cgi?id=34536
-
-        * wx/build/settings.py:
-
-2010-02-02  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix after introduction of pageNumberForElementById.
-
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::pageNumberForElementById):
-
-2010-02-02  Shu Chang  <Chang.Shu@nokia.com>
-
-        Unreviewed.
-
-        Add myself to list of committers.
-
-        * Scripts/webkitpy/committers.py:
-
-2010-02-02  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Moved filter-related check-webkit-style code into a separate
-        filter module.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34408
-
-        This is preparatory refactoring for Bug 33684, which will allow
-        file and folder-specific filter rules.
-
-        * Scripts/webkitpy/style/checker.py:
-          - Removed CategoryFilter class (moved to filter.py).
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Removed CategoryFilter unit tests (moved to filter_unittest.py).
-
-        * Scripts/webkitpy/style/filter.py: Added.
-          - Added CategoryFilter class (moved from checker.py).
-
-        * Scripts/webkitpy/style/filter_unittest.py: Added.
-          - Added CategoryFilter unit tests (moved from checker_unittest.py).
-
-        * Scripts/webkitpy/style/unittests.py:
-          - Added reference to filter_unittest.py.
-
-2010-02-01  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Addressed FIXME in check-webkit-style so that the carriage-return
-        check will work for patches.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34260
-
-        Also added support for limiting the number of errors reported
-        per category, per file.
-
-        * Scripts/webkitpy/style/checker.py:
-          - Added new "whitespace/carriage_return" category from common.py.
-          - Added MAX_REPORTS_PER_CATEGORY dictionary.
-          - Added max_reports_per_category attribute to ProcessorOptions class.
-          - Refactored StyleChecker._process_file().
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Updated ProcessorOptionsTest tests.
-          - Added test to check MAX_REPORTS_PER_CATEGORY.
-
-        * Scripts/webkitpy/style/error_handlers.py:
-          - Added support for suppressing the display of errors after
-            reaching a per-category maximum (from max_reports_per_category).
-
-        * Scripts/webkitpy/style/error_handlers_unittest.py:
-          - Added test for suppressing error display.
-
-        * Scripts/webkitpy/style/processors/common.py: Added.
-          - Moved carriage-return check to new file.
-
-        * Scripts/webkitpy/style/processors/common_unittest.py: Added.
-          - Added unit tests for carriage-return check.
-
-        * Scripts/webkitpy/style/unittests.py:
-          - Added reference to common_unittest.py.
-
-2010-02-01  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Provide a way to get page number with layoutTestController
-        https://bugs.webkit.org/show_bug.cgi?id=33840
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (pageNumberForElementByIdCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::pageNumberForElementById):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::pageNumberForElementById):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::pageNumberForElementById):
-
-2010-02-01  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Unreviewed fix for an invalid function call.
-
-        check-webkit-style: Remove filename parameter from all functions where no longer used
-        https://bugs.webkit.org/show_bug.cgi?id=34249
-
-        * Scripts/webkitpy/style/checker.py:
-
-2010-02-01  Diego Gonzalez  <diego.gonzalez@openbossa.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] DRT Provide global flag ability
-        https://bugs.webkit.org/show_bug.cgi?id=34418
-
-        Add the globalFlag property to the Qt LayoutTestController to allow
-        cross-domain indications.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController::globalFlag):
-        (LayoutTestController::setGlobalFlag):
-
-2010-02-01  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Adele Peterson.
-
-        Crash in Safari opening new tabs to "same page"
-        <rdar://problem/7593857> and https://bugs.webkit.org/show_bug.cgi?id=34444
-
-        Add a mode (Mac-only for now) that exercises the WebView SPI _loadBackForwardListFromOtherView:
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (setNewWindowsCopyBackForwardListCallback):
-        (LayoutTestController::staticFunctions):
-
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::newWindowsCopyBackForwardList):
-        (LayoutTestController::setNewWindowsCopyBackForwardList):
-
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:createWebViewWithRequest:]):
-
-2010-02-01  Carol Szabo  <carol.szabo@nokia.com>
-
-        Unreviewed.
-
-        Add myself to list of committers.
-
-        * Scripts/webkitpy/committers.py:
-
-2010-02-01  Nate Chapin  <japhet@chromium.org>
-
-        Rubber-stamped by David Levin.
-
-        Add myself to reviewer list.
-
-        * Scripts/webkitpy/committers.py:
-
-2010-01-31  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Moved style error handler code to their own classes, and
-        related refactoring. Increased unit test code coverage of
-        style error handling.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34379
-
-        * Scripts/check-webkit-style:
-          - Minor change: added error_count variable.
-
-        * Scripts/webkitpy/style/checker.py:
-          - Renamed ProcessorOptions.should_report_error() to is_reportable().
-          - In the StyleChecker class--
-            - Removed _default_style_error_handler().
-            - Added _increment_error_count().
-            - Refactored to use DefaultStyleErrorHandler and
-              PatchStyleErrorHandler constructors.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - In the StyleStyleCheckerTest class--
-            - Removed write_sample_error().
-            - Removed test_default_style_error_handler().
-
-        * Scripts/webkitpy/style/error_handlers.py: Added.
-          - Added DefaultStyleErrorHandler class.
-          - Added PatchStyleErrorHandler class.
-
-        * Scripts/webkitpy/style/error_handlers_unittest.py: Added.
-          - Added unit tests for DefaultStyleErrorHandler and
-            PatchStyleErrorHandler.
-
-        * Scripts/webkitpy/style/unittests.py:
-          - Added error_handlers unit tests.
-
-2010-01-29  Mark Rowe  <mrowe@apple.com>
-
-        Rubber-stamped by Stephanie Lewis.
-
-        Fix run-leaks with newer versions of the leaks tool.
-
-        * Scripts/run-leaks:
-
-2010-01-29  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Siedel.
-
-        Top-level test drivers for running the Chromium port of run-webkit-tests
-        and being able to rebaseline test results from the test bots.  The
-        files in the Scripts directory are simply wrappers around the files
-        in webkitpy/layout_tests for convenience.
- 
-        https://bugs.webkit.org/show_bug.cgi?id=31498
-
-        * Scripts/rebaseline-chromium-webkit-tests: Added.
-        * Scripts/run-chromium-webkit-tests: Added.
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py: Added.
-        * Scripts/webkitpy/layout_tests/run_chromium_webkit_tests.py: Added.
-
-2010-01-29  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Siedel.
-
-        Add in the second block of python code for the Chromium port
-        of run-webkit-tests. These files execute different diffs to classify
-        the various types of failures from a test.
-
-        * Scripts/webkitpy/layout_tests/test_types: Added.
-        * Scripts/webkitpy/layout_tests/test_types/__init__.py: Added.
-        * Scripts/webkitpy/layout_tests/test_types/fuzzy_image_diff.py: Added.
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py: Added.
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py: Added.
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py: Added.
-
-2010-01-29  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Siedel.
-
-        Check in the first part of the Chromium Python port of the 
-        run-webkit-tests test driver. The files under 
-        layout_tests/layout_layout constitute most of the implementation;
-        they can be roughly divided into code that parses the 
-        "test_expectations.txt" file that describes how we expect tests to
-        pass or fail, platform-specific hooks for the different Chromium 
-        ports (in platform_utils*), code for parsing the output of the
-        tests and generating results files and HTML and JSON for the
-        dashboards, auxiliary scripts for starting and stopping HTTP and
-        Web Socket servers, and then one of the actual driver files 
-        (test_shell_thread). Code for actually parsing test output for 
-        failures and the top-level driver scripts will follow shortly.
-
-        https://bugs.webkit.org/show_bug.cgi?id=31498
-
-        * Scripts/webkitpy/layout_tests: Added.
-        * Scripts/webkitpy/layout_tests/layout_package: Added.
-        * Scripts/webkitpy/layout_tests/layout_package/__init__.py: Added.
-        * Scripts/webkitpy/layout_tests/layout_package/apache_http_server.py: Added.
-        * Scripts/webkitpy/layout_tests/layout_package/http_server.py: Added.
-        * Scripts/webkitpy/layout_tests/layout_package/http_server_base.py: Added.
-        * Scripts/webkitpy/layout_tests/layout_package/httpd2.pem: Added.
-          - scripts to start and stop apache. Note that the apache file
-            generates a conf file dynamically, and we should switch to 
-            using the same static conf file that the regular run-webkit-tests
-            uses, and we can also use the same httpd2.pem file.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py: Added.
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py: Added.
-          - scripts to generate the JSON layout test dashboard and the
-            flakiness dashboard
-        * Scripts/webkitpy/layout_tests/layout_package/lighttpd.conf: Added.
-          - default configuration for LigHTTPd (used on Windows)
-        * Scripts/webkitpy/layout_tests/layout_package/metered_stream.py: Added.
-          - utility class that implements progress bars on the console to
-            be displayed while the tests are running
-        * Scripts/webkitpy/layout_tests/layout_package/path_utils.py: Added.
-          - various routines for manipulating paths and URIs
-        * Scripts/webkitpy/layout_tests/layout_package/platform_utils.py: Added.
-        * Scripts/webkitpy/layout_tests/layout_package/platform_utils_linux.py: Added.
-        * Scripts/webkitpy/layout_tests/layout_package/platform_utils_mac.py: Added.
-        * Scripts/webkitpy/layout_tests/layout_package/platform_utils_win.py: Added.
-          - platform-specific aspects of the drivers (binary names, paths,
-            process control, etc.)
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py: Added.
-          - code for parsing the 'test_expectations.txt' file to determine
-            which tests are expected to fail (and how) on which platforms
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures.py: Added.
-          - code for handling different kinds of failures (generating output
-            in the results, etc.)
-        * Scripts/webkitpy/layout_tests/layout_package/test_files.py: Added.
-          - code to gather the lists of tests
-        * Scripts/webkitpy/layout_tests/layout_package/test_shell_thread.py: Added.
-          - code to actually execute tests via TestShell and process
-            the output
-        * Scripts/webkitpy/layout_tests/layout_package/websocket_server.py: Added.
-          - scripts to start and stop the pywebsocket server
-
-2010-01-29  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Check in a copy of the simplejson library; it will be used by
-        the Chromium port of run-webkit-tests.
-        
-        https://bugs.webkit.org/show_bug.cgi?id=31498
-
-        * simplejson: Added.
-        * simplejson/LICENSE.txt: Added.
-        * simplejson/README.txt: Added.
-        * simplejson/__init__.py: Added.
-        * simplejson/_speedups.c: Added.
-        (ascii_escape_char):
-        (ascii_escape_unicode):
-        (ascii_escape_str):
-        (py_encode_basestring_ascii):
-        (init_speedups):
-        * simplejson/decoder.py: Added.
-        * simplejson/encoder.py: Added.
-        * simplejson/jsonfilter.py: Added.
-        * simplejson/scanner.py: Added.
-
-2010-01-29  Dirk Pranke  <dpranke@chromium.org>
-
-        No review
-
-        Add myself to the committers list
-
-        * Scripts/webkitpy/committers.py:
-
-2010-01-29  Jeremy Orlow  <jorlow@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        A first step towards the Indexed Database API
-        https://bugs.webkit.org/show_bug.cgi?id=34342
-
-        Add indexed database API.
-
-        * Scripts/build-webkit:
-
-2010-01-29  Andras Becsi  <abecsi@webkit.org>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Correct openHTTPD() to print requests to stdout if run-webkit-httpd is used.
-        This fixes a regression introduced in r53559.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34336
-
-        * Scripts/webkitperl/httpd.pm:
-
-2010-01-28  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        MSAA: Crash when posting a notification for a detached object
-
-        https://bugs.webkit.org/show_bug.cgi?id=34309
-        <rdar://problem/7409759>
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/AccessibilityController.h:
-        Declare new functions. Add new members to store the event hook and the
-        mapping of accessibility elements to their JS callbacks.
-
-        * DumpRenderTree/gtk/AccessibilityControllerGtk.cpp:
-        (AccessibilityController::notificationReceived):
-        Stubbed.
-        (AccessibilityController::addNotificationListener):
-        Stubbed.
-
-        * DumpRenderTree/mac/AccessibilityControllerMac.mm:
-        (AccessibilityController::notificationReceived):
-        Stubbed.
-        (AccessibilityController::addNotificationListener):
-        Stubbed.
-
-        * DumpRenderTree/win/AccessibilityControllerWin.cpp:
-        (AccessibilityController::AccessibilityController):
-        Initialize the event hook.
-        (AccessibilityController::~AccessibilityController):
-        Remove the event hook. Unprotect all of the JS functions that are stored
-        in the map.
-        (logEventProc):
-        Clean-up a variable.
-        (stringEvent):
-        Return a string description of the MSAA event code.
-        (notificationListenerProc):
-        Get the accessible object from the event, and query it for IAccessible.
-        Call the AccessibilityController's notificationReceived().
-        (comparableObject):
-        Use QueryService to obtain the IAccessibleComparable for the
-        IServiceProvider.
-        (AccessibilityController::notificationReceived):
-        Iterate the map of objects that have registered for notification
-        callbacks. Query each for IServiceProvider, then use comparableObject()
-        to get an IAccessibleComparable. If we find an object matching the
-        notified object, call its callback, passing the event that was received.
-        (AccessibilityController::addNotificationListener):
-        If we have not created the event hook, create it. Protect the JS
-        callback function object, and add the object and its callback to our
-        map.
-
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::addNotificationListener):
-        Call through to the AccessibilityController's addNotificationListener().
-
-        * DumpRenderTree/win/DumpRenderTreeWin.h:
-        Add an extern declaration for the shared FrameLoadDelegate extern, so we
-        can access it from AccessibilityController.
-
-        * DumpRenderTree/win/FrameLoadDelegate.h:
-        (FrameLoadDelegate::accessibilityController):
-        Return the AccessibilityController.
-
-2010-01-29  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        prepare-ChangeLog outputs useless messages for a nonexistent bug ID
-        https://bugs.webkit.org/show_bug.cgi?id=34313
-
-        * Scripts/prepare-ChangeLog:
-
-2010-01-29  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Rubberstamped by Simon Hausmann.
-
-        [Qt] Separate implementation from class definition.
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::webView):
-        (LauncherWindow::LauncherWindow):
-        (LauncherWindow::~LauncherWindow):
-        (LauncherWindow::keyPressEvent):
-        (LauncherWindow::grabZoomKeys):
-        (LauncherWindow::sendTouchEvent):
-        (LauncherWindow::eventFilter):
-        (LauncherWindow::loadStarted):
-        (LauncherWindow::loadFinished):
-        (LauncherWindow::showLinkHover):
-        (LauncherWindow::zoomIn):
-        (LauncherWindow::zoomOut):
-        (LauncherWindow::resetZoom):
-        (LauncherWindow::toggleZoomTextOnly):
-        (LauncherWindow::print):
-        (LauncherWindow::screenshot):
-        (LauncherWindow::setEditable):
-        (LauncherWindow::dumpHtml):
-        (LauncherWindow::selectElements):
-        (LauncherWindow::setTouchMocking):
-        (LauncherWindow::newWindow):
-        (LauncherWindow::setupUI):
-
-2010-01-29  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Ariya Hidayat.
-
-        [Qt] On Maemo5, a click/touch in the location bar (when unfocused)
-        should result in all text selected.
-
-        * QtLauncher/locationedit.cpp:
-        (LocationEdit::focusInEvent):
-        * QtLauncher/locationedit.h:
-
-2010-01-29  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Ariya Hidayat.
-
-        [Qt] Show progress reaching 100% for loads.
-
-        * QtLauncher/locationedit.cpp:
-        (LocationEdit::LocationEdit):
-        (LocationEdit::setProgress):
-        (LocationEdit::reset):
-        (LocationEdit::paintEvent):
-        * QtLauncher/locationedit.h:
-
-2010-01-29  Andreas Kling  <andreas.kling@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Disable the QtLauncher statusbar on Maemo
-
-        https://bugs.webkit.org/show_bug.cgi?id=34330
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::showLinkHover):
-        (LauncherWindow::selectElements):
-
-2010-01-29  Andreas Kling  <andreas.kling@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Display page loading progress inside the QtLauncher location bar
-
-        https://bugs.webkit.org/show_bug.cgi?id=34210
-
-        * QtLauncher/QtLauncher.pro:
-        * QtLauncher/locationedit.cpp: Added.
-        (LocationEdit::LocationEdit):
-        (LocationEdit::setProgress):
-        (LocationEdit::paintEvent):
-        * QtLauncher/locationedit.h: Added.
-        * QtLauncher/mainwindow.cpp:
-        (MainWindow::buildUI):
-        * QtLauncher/mainwindow.h:
-
-2010-01-29  Andreas Kling  <andreas.kling@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Add support for Maemo zoom keys in QtLauncher
-
-        https://bugs.webkit.org/show_bug.cgi?id=34160
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::LauncherWindow):
-        (LauncherWindow::~LauncherWindow):
-        (LauncherWindow::keyPressEvent):
-        (LauncherWindow::grabZoomKeys):
-
-2010-01-29  Benjamin Poulain  <benjamin.poulain@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Implement the display() method of the layout test controller
-        https://bugs.webkit.org/show_bug.cgi?id=34258
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::showPage):
-        (WebCore::DumpRenderTree::hidePage):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::display):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-01-28  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix for MSW, use ThreadingWin.cpp as the Windows pthreads implementation
-        implements pthread_t in a way that makes it impossible to check its validity,
-        which is needed by ThreadingPthreads.cpp.
-
-        * DumpRenderTree/wscript:
-        * wx/build/settings.py:
-
-2010-01-28  Andras Becsi  <abecsi@webkit.org>
-
-        Adding myself to the committer list. No review needed.
-
-        * Scripts/webkitpy/committers.py:
-
-2010-01-28  Hayato Ito  <hayato@chromium.org>
-
-        Reviewed by David Levin.
-
-        Remove NULL char from input JS file because 'grep' fails if the file contains NULL char.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34252
-
-        * Scripts/make-script-test-wrappers:
-
-2010-01-28  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix after removal of the zlib image decoder.
-
-        * wx/build/settings.py:
-
-2010-01-28  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Unreviewed, roll out r54000.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController::display):
-
-2010-01-28  Benjamin Poulain  <benjamin.poulain@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Implement the display() method of the layout test controller
-        https://bugs.webkit.org/show_bug.cgi?id=34258
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::showPage):
-        (WebCore::DumpRenderTree::hidePage):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::display):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-01-28  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Eliminated the filename parameter from functions in
-        check-webkit-style's cpp.py where it is no longer used.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34249
-
-        * Scripts/webkitpy/style/processors/cpp.py:
-          - Reduced number of occurrences of "filename" variable from
-            approximately 200 to 120.
-
-        * Scripts/webkitpy/style/processors/cpp_unittest.py:
-          - Refactored unit tests as necessary to accommodate changes to cpp.py.
-          - Fixed bug in CppStyleTestBase.perform_include_what_you_use()
-            where the incorrect file extension was getting passed to
-            cpp_style.check_language().
-
-2010-01-28  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        In check-webkit-style, eliminated the dependency of
-        processors/cpp_unittest.py on checker.py.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34205
-
-        * Scripts/webkitpy/style/checker.py:
-          - Addressed FIXME by removing STYLE_CATEGORIES data.
-          - Added style_categories().
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Minor changes.
-
-        * Scripts/webkitpy/style/processors/cpp.py:
-          - Added categories attribute to CppProcessor class (data
-            was originally checker.STYLE_CATEGORIES).
-
-        * Scripts/webkitpy/style/processors/cpp_unittest.py:
-          - Addressed FIXME by eliminating "import" from checker.py.
-
-2010-01-28  Anton Muhin  <antonm@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Improve treatment of conditions and rest of the line for if, else, switch and alikes
-        https://bugs.webkit.org/show_bug.cgi?id=34173
-
-        * Scripts/webkitpy/style/cpp_style.py:
-        * Scripts/webkitpy/style/cpp_style_unittest.py:
-
-2010-01-28  Joe Mason  <jmason@rim.com>
-
-        Reviewed by Adam Barth.
-
-        Limit login retries to 5
-        https://bugs.webkit.org/show_bug.cgi?id=34193
-
-        * Scripts/webkitpy/bugzilla.py:
-
-2010-01-27  Martin Robinson  <mrobinson@webkit.org>
-
-        Adding myself to the committer list. No review necessary.
-
-        * Scripts/webkitpy/committers.py:
-
-2010-01-27  George Wright  <gwright@rim.com>
-
-        Reviewed by Adam Treat.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34216
-
-        Add missing include for wtf/Platform.h
-
-        * DumpRenderTree/AccessibilityController.h:
-
-2010-01-27  Diego Gonzalez  <diego.gonzalez@openbossa.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] DRT Provide worker thread ability to track counters
-        https://bugs.webkit.org/show_bug.cgi?id=34221
-
-        Implement workerThreadCount() in LayoutTestController of Qt DRT
-
-        Tests:
-        fast/workers/dedicated-worker-lifecycle.html
-        fast/workers/shared-worker-frame-lifecycle.html
-        fast/workers/shared-worker-lifecycle.html
-        fast/workers/worker-lifecycle.html
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::workerThreadCount):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-01-27  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Rubberstamped by Simon Hausmann.
-
-        [Qt] QtLauncher refactoring:
-
-        Make the LauncherWindow depend less on the view, so that more
-        code can be shared in near future.
-
-        * QtLauncher/main.cpp:
-        (LauncherWindow::sendTouchEvent):
-        (LauncherWindow::loadFinished):
-        (LauncherWindow::zoomIn):
-        (LauncherWindow::zoomOut):
-        (LauncherWindow::resetZoom):
-        (LauncherWindow::toggleZoomTextOnly):
-        (LauncherWindow::dumpHtml):
-        (LauncherWindow::selectElements):
-        (LauncherWindow::setupUI):
-
-2010-01-27  Kinuko Yasuda  <kinuko@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Correctly handle the KeyLocation argument that has been introduced
-        recently to test location-dependent key events in EventSender.keyDown.
-        http://bugs.webkit.org/show_bug.cgi?id=28247
-
-        Test: fast/events/keydown-numpad-keys.html
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (keyDownCallback):
-
-2010-01-27  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Rubberstamped by Simon Hausmann.
-
-        [Qt] QtLauncher refactoring:
-
-        Move out code from the MainWindow (renamed to LauncherWindow)
-        that is not depending on the view, and add it to a new class
-        called MainWindow.
-
-        * QtLauncher/QtLauncher.pro:
-        * QtLauncher/main.cpp:
-        (LauncherWindow::LauncherWindow):
-        (LauncherWindow::eventFilter):
-        (LauncherWindow::loadStarted):
-        (LauncherWindow::loadFinished):
-        (LauncherWindow::newWindow):
-        (LauncherWindow::setupUI):
-        (WebPage::createWindow):
-        (main):
-        * QtLauncher/mainwindow.cpp: Added.
-        (MainWindow::MainWindow):
-        (MainWindow::buildUI):
-        (MainWindow::page):
-        (MainWindow::setAddressUrl):
-        (MainWindow::addCompleterEntry):
-        (MainWindow::load):
-        (MainWindow::changeLocation):
-        (MainWindow::openFile):
-        * QtLauncher/mainwindow.h: Added.
-
-2010-01-27  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Rubberstamped by Simon Hausmann.
-
-        [Qt] QtLauncher, coding style fixes.
-
-        * QtLauncher/main.cpp:
-        (MainWindow::MainWindow):
-        (MainWindow::sendTouchEvent):
-        (MainWindow::eventFilter):
-        (MainWindow::loadURL):
-        (MainWindow::setupUI):
-        (WebPage::createPlugin):
-
-2010-01-27  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Rubberstamped by Simon Hausmann.
-
-        [Qt] QtLauncher refactoring, separating the webview and
-        adding a QGraphicsWebView based version.
-
-        * QtLauncher/QtLauncher.pro:
-        * QtLauncher/main.cpp:
-        (MainWindow::MainWindow):
-        * QtLauncher/webpage.h:
-        * QtLauncher/webview.cpp: Added.
-        (createContextMenu):
-        (WebViewGraphicsBased::mousePressEvent):
-        (WebViewTraditional::mousePressEvent):
-        (WebViewGraphicsBased::contextMenuEvent):
-        (WebViewTraditional::contextMenuEvent):
-        * QtLauncher/webview.h: Added.
-        (WebViewGraphicsBased::WebViewGraphicsBased):
-        (WebViewTraditional::WebViewTraditional):
-
-2010-01-27  Alexander Pavlov  <apavlov@chromium.org>
-
-        Adding myself as committer. No review necessary.
-
-        * Scripts/webkitpy/committers.py:
-
-2010-01-27  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        webkit-patch needs an open-bugs command
-        https://bugs.webkit.org/show_bug.cgi?id=30793
-
-        * Scripts/test-webkitpy: import OpenBugsTest
-        * Scripts/webkit-patch: import OpenBugs
-        * Scripts/webkitpy/commands/download_unittest.py: don't import unittest
-        * Scripts/webkitpy/commands/early_warning_system_unittest.py: ditto
-        * Scripts/webkitpy/commands/queries_unittest.py: ditto
-        * Scripts/webkitpy/commands/queues_unittest.py: ditto
-        * Scripts/webkitpy/commands/upload_unittest.py: ditto
-        * Scripts/webkitpy/mock_bugzillatool.py: log when user.open_url is called.
-
-2010-01-27  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Rubberstamped by Simon Hausmann
-
-        [Qt] QtLauncher refactoring, separating utility methods.
-
-        * QtLauncher/QtLauncher.pro:
-        * QtLauncher/main.cpp:
-        * QtLauncher/utils.cpp: Added.
-        (urlFromUserInput):
-        * QtLauncher/utils.h: Added.
-
-2010-01-27  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Rubberstamped by Simon Hausmann
-
-        [Qt] Refactor the code in the QtLauncher dealing with HTTP proxy.
-
-        * QtLauncher/main.cpp:
-        (MainWindow::MainWindow):
-        * QtLauncher/webpage.cpp:
-        (WebPage::WebPage):
-        (WebPage::applyProxy):
-        * QtLauncher/webpage.h:
-
-2010-01-26  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        Reviewed by Tor Arne Vestbø.
-
-        [Qt] Corrects debug build of DumpRenderTree on Windows.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-
-2010-01-26  Daniel Bates  <dbates@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34070
-
-        Moves the try/catch for OSError exceptions in Executive.run_command
-        to Credentials.read_credentials() so that the unit test
-        webkitpy.scm_unittest.SCMClassTests.test_error_handlers can
-        assert that Executive.run_command throws an OSError exception.
-
-        * Scripts/webkitpy/credentials.py:
-        * Scripts/webkitpy/executive.py: Moved try/catch for OSError to
-        method Credentials.read_credentials().
-        * Scripts/webkitpy/executive_unittest.py: Removed tests that no longer
-        apply: test_run_command_with_bad_command_check_return_code and
-        test_run_command_with_bad_command_check_calls_error_handler. Added new
-        test to assert that run_command throws OSError exceptions.
-
-2010-01-26  Diego Gonzalez  <diego.gonzalez@openbossa.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] DRT WebHistory support
-        https://bugs.webkit.org/show_bug.cgi?id=34167
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::webHistoryItemCount):
-        (LayoutTestController::keepWebHistory):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-01-26  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        [Win] Add modifiers parameter support to Windows DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=34068
-
-        Add support for functional name modifiers; "addSelectionKey" and
-        "rangeSelectionKey", and modifiers parameter to eventSender.mouseDown()
-        and eventSender.mouseUp().
-        This change is similar to r53498 for Mac.
-        
-        * DumpRenderTree/win/EventSender.cpp:
-        (buildModifierFlags): New function to set MK_CONTROL or MK_SHIFT to WPARAM.
-        (mouseDownCallback): Call buidlModifiersFlags().
-        (mouseUpCallback): ditto.
-        (keyDownCallback): Add support for "addSelectionkey" and "rangeSelectionKey".
-
-2010-01-26  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        The Python autoinstall cache directory now only gets created
-        in the directory containing autoinstall.py.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33365
-
-        * Scripts/webkitpy/autoinstall.py:
-          - Also added a README file to the cache directory saying
-            where it came from.
-
-2010-01-26  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Moved the check-webkit-style processors into a new
-        webkitpy/style/processors directory.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34060
-
-        * Scripts/webkitpy/style/checker.py:
-        * Scripts/webkitpy/style/checker_unittest.py:
-        * Scripts/webkitpy/style/cpp_style.py: Removed.
-        * Scripts/webkitpy/style/cpp_style_unittest.py: Removed.
-        * Scripts/webkitpy/style/processors: Added.
-        * Scripts/webkitpy/style/processors/__init__.py: Added.
-        * Scripts/webkitpy/style/processors/cpp.py: Copied from WebKitTools/Scripts/webkitpy/style/cpp_style.py.
-        * Scripts/webkitpy/style/processors/cpp_unittest.py: Copied from WebKitTools/Scripts/webkitpy/style/cpp_style_unittest.py.
-        * Scripts/webkitpy/style/processors/text.py: Copied from WebKitTools/Scripts/webkitpy/style/text_style.py.
-        * Scripts/webkitpy/style/processors/text_unittest.py: Copied from WebKitTools/Scripts/webkitpy/style/text_style_unittest.py.
-        * Scripts/webkitpy/style/text_style.py: Removed.
-        * Scripts/webkitpy/style/text_style_unittest.py: Removed.
-        * Scripts/webkitpy/style/unittests.py:
-
-2010-01-26  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix, make sure stub function returns a value.
-
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::counterValueForElementById):
-
-2010-01-26  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        Windows build references non-existent include paths
-        https://bugs.webkit.org/show_bug.cgi?id=34175
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/ImageDiff.vcproj:
-        * DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin.vcproj:
-
-2010-01-26  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Ariya Hidayat.
-
-        [Qt] Separating out the UrlLoader from the QtLauncher in it's
-        own implementation and header file.
-
-        * QtLauncher/main.cpp:
-        (main):
-        * QtLauncher/urlloader.cpp: Added.
-        (UrlLoader::UrlLoader):
-        (UrlLoader::loadNext):
-        (UrlLoader::init):
-        (UrlLoader::getUrl):
-        * QtLauncher/urlloader.h: Added.
-
-2010-01-25  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Refactored check-webkit-style by removing the file path
-        parameter from the style error handler functions.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34031
-
-        * Scripts/webkitpy/style/checker.py:
-          - Added _default_style_error_handler() to StyleChecker class.
-          - Moved handle_style_error() to inside _default_style_error_handler().
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Removed file path from calls to error handler.
-
-        * Scripts/webkitpy/style/cpp_style.py:
-          - Removed file path from calls to error handler.
-
-        * Scripts/webkitpy/style/cpp_style_unittest.py:
-          - Removed file path from calls to error handler.
-
-        * Scripts/webkitpy/style/text_style.py:
-          - Removed file path from calls to error handler.
-
-        * Scripts/webkitpy/style/text_style_unittest.py:
-          - Removed file path from calls to error handler.
-
-2010-01-25  Jeremy Orlow  <jorlow@chromium.org>
-
-        Adding myself as reviewer.  No review necessary.
-
-        * Scripts/webkitpy/committers.py:
-
-2010-01-25  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Improved prepare-ChangeLog so that it preserves the relative
-        indentation of a git commit message.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34058
-
-        * Scripts/prepare-ChangeLog:
-          - Also adjusted the script so that it does not add white
-            space characters to empty lines.
-
-2010-01-24  Eric Seidel  <eric@webkit.org>
-
-        No review, rolling out r53763.
-        http://trac.webkit.org/changeset/53763
-        https://bugs.webkit.org/show_bug.cgi?id=33895
-
-        Broke 20+ tests on Windows.
-
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2010-01-24  Adam Barth  <abarth@webkit.org>
-
-        Rubber stamped by Eric Seidel.
-
-        More pep8 compliance.
-
-        * Scripts/webkitpy/mock_bugzillatool.py:
-
-2010-01-24  Adam Barth  <abarth@webkit.org>
-
-        Rubber stamped by Eric Seidel.
-
-        More pep8 compliance.
-
-        * Scripts/webkitpy/executive.py:
-        * Scripts/webkitpy/grammar.py:
-
-2010-01-24  Adam Barth  <abarth@webkit.org>
-
-        Rubber stamped by Eric Seidel.
-
-        More pep8 compliance.
-
-        * Scripts/webkitpy/comments.py:
-        * Scripts/webkitpy/committers.py:
-        * Scripts/webkitpy/credentials.py:
-
-2010-01-24  Adam Barth  <abarth@webkit.org>
-
-        Rubber stamped by Eric Seidel.
-
-        Make changelogs.py pass pep8.
-
-        * Scripts/webkitpy/changelogs.py:
-
-2010-01-23  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        [Qt] Unreviewed build fix
-
-        * QtLauncher/QtLauncher.pro:
-        * QtLauncher/webinspector.h:
-
-2010-01-23  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Rubberstamped by Simon Hausmann.
-
-        [Qt] Move the WebInspector class to it's own header file.
-
-        * QtLauncher/main.cpp:
-        * QtLauncher/webinspector.h: Added.
-        (WebInspector::WebInspector):
-        (WebInspector::showEvent):
-        (WebInspector::hideEvent):
-
-2010-01-23  Robert Hogan  <robert@roberthogan.net>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Qt DRT: respect window.close() and window.closed()
-        
-        Qt DRT needs to maintain a correct count of open windows
-        for windowCount(). It also needs to delete windows that
-        have been closed by window.close().
-        
-        This fixes the following tests:
-        
-        plugins/destroy-during-npp-new.html
-        fast/dom/Document/early-document-access.html
-        fast/dom/Window/window-early-properties.html
-        fast/events/open-window-from-another-frame.html
-        fast/events/popup-blocking-click-in-iframe.html
-        
-        https://bugs.webkit.org/show_bug.cgi?id=32953
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::createWindow):
-        (WebCore::DumpRenderTree::windowCloseRequested):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::maybeDump):
-
-2010-01-23  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        Added a user default for specifying a fallback frameworks path in case
-        the bundle does not contain frameworks for the current Mac OS X version.
-
-        * WebKitLauncher/main.m:
-        (fallbackMacOSXVersion): Added. Looks up the fallback version in a dictionary
-        keyed by the FallbackSystemVersions user default and returns it.
-        (main): If a frameworks directory for the current system version is not found,
-        try the fallback.
-
-2010-01-22  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        Make run-webkit-tests work under Cygwin for the Qt port
-
-        setPathForRunningWebKitApp() is implemented for the Qt port
-        by using qmake to query for the location of the Qt libraries.
-
-        This requires the original environment (%ENV) to be untouched,
-        so launchWithCurrentEnv() was refactored to launchWithEnv(),
-        and the code in openDumpTool() to not use %ENV but a %CLEAN_ENV
-        instead. This has the added benefit of getting rid of the temp
-        variables used for storing the current env.
-
-        openDumpTool() is also refactored a bit into platform-spesific,
-        port-spesific, and generic environment variables.
-
-        Checks for undef was added a few places to fix Perl concat
-        warnings when run-webkit-tests is aborted.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33895
-
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2010-01-22  Kevin Watters  <kevinwatters@gmail.com>
-
-        Reviewed by Kevin Ollivier.
-
-        [wx] Remove the Bakefile build system, which is no longer being used.
-        
-        https://bugs.webkit.org/show_bug.cgi?id=34022
-
-        * DumpRenderTree/wx/DumpRenderTree.bkl: Removed.
-        * wx/browser/browser.bkl: Removed.
-        * wx/build-wxwebkit: Removed.
-
-2010-01-22  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Reviewed by Simon Fraser.
-
-        Reset zoom level to 1.0 when resetting view state. This is causing
-        many tests to fail after svg/custom/text-zoom.xhtml changes the
-        zoom level.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-
-2010-01-22  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=34025
-        Enable client-based Geolocation abstraction for Mac, Windows AppleWebKit targets.
-
-        * Scripts/build-webkit:
-
-2010-01-22  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Arg.  Someone renamed limit to output_limit on me.
-
-        * Scripts/webkitpy/commands/queues.py:
-
-2010-01-22  Adam Barth  <abarth@webkit.org>
-
-        Rubber stamped by Eric Seidel.
-
-        Make __init__.py and buildbot.py pass pep8 style checker.
-
-        * Scripts/webkitpy/__init__.py:
-        * Scripts/webkitpy/buildbot.py:
-
-2010-01-21  Joe Mason  <jmason@rim.com>
-
-        Reviewed by Adam Barth.
-
-        webkit-patch should retry on invalid password
-        https://bugs.webkit.org/show_bug.cgi?id=33955
-
-        Ask for bugs.webkit.org authentication in a loop.
-
-        * Scripts/webkitpy/bugzilla.py:
-
-2010-01-22  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Don't call seek on a NoneType.
-
-        * Scripts/webkitpy/statusserver.py:
-
-2010-01-22  Petri Latvala  <petri.latvala@nomovok.com>
-
-        Reviewed by David Levin.
-
-        check-webkit-style breaks on files with unknown types
-        https://bugs.webkit.org/show_bug.cgi?id=34001
-
-        For files with type FileType.NONE, dispatch_processor returns None.
-
-        * Scripts/webkitpy/style/checker.py: Don't call process_file with a processor of value None.
-
-2010-01-22  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Make bugzilla.py and webkitport.py conform to pep8
-        https://bugs.webkit.org/show_bug.cgi?id=34015
-
-        This patch makes webkitport.py and bugzilla.py mostly conform to PEP8
-        style as enforced by pep8.py.  I wasn't able to get rid of all the
-        errors because I'm not sure how to wrap some lines properly.  Also,
-        there are a few deprication errors that I couldn't resolve easily.
-        However, this is a massive improvement in compliance.
-
-        * Scripts/webkitpy/bugzilla.py:
-        * Scripts/webkitpy/webkitport.py:
-
-2010-01-22  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Limit length of EWS results to 5MB
-        https://bugs.webkit.org/show_bug.cgi?id=34016
-
-        Hopefully this will fix the bug where the results link doesn't appear.
-        Our current theory is that the results blob is too big and the server
-        is rejecting the request with a 500 error.  That causes us to re-try
-        the post, but when we re-try the StringIO buffer has its seek pointer
-        at the end.
-
-        * Scripts/webkitpy/commands/queues.py:
-        * Scripts/webkitpy/statusserver.py:
-
-2010-01-22  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Made check-webkit-style able to check patches when script not
-        run from source root. Also consolidated external references
-        to a single file.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33791
-
-        * Scripts/check-webkit-style:
-          - Changed to import style_references.py.
-
-        * Scripts/webkitpy/style/__init__.py:
-          - Removed __path__ hack that allowed searching Scripts/ directory.
-
-        * Scripts/webkitpy/style/checker.py:
-          - Changed to import style_references.py.
-
-        * Scripts/webkitpy/style_references.py: Added.
-
-2010-01-22  Dmitry Titov  <dimich@chromium.org>
-
-        Reviewed by Maciej Stachowiak.
-
-        Fix the leak of ThreadIdentifiers in threadMap across threads.
-        https://bugs.webkit.org/show_bug.cgi?id=32689
-
-        Add a new test to verify the ThreadIdentifiers are not reused across threads.
-        The test runs in the beginning of DumpRenderTree and spawns 2 non-WTF treads sequentially,
-        waiting for the previous thread to terminate before starting the next.
-        The treads use WTF::currentThread() in their thread function. Without a fix, this
-        causes both threads to have the same ThreadIdentifier which triggers ASSERT in thread function.
-        It also starts another thread using WTF. Without the fix, this finds pthread handle from previous
-        threads in the WTF threadMap and asserts in WTF::establishIdentifierForPthreadHandle().
-        The test practically does not affect the DRT run time because the threads end immediately.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (runThread): Test thread function.
-        (testThreadIdentifierMap):
-        (dumpRenderTree):
-
-2010-01-22  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Maciej Stachowiak.
-
-        Fix a bug that mouseDown:withModifiers: is never called.
-        https://bugs.webkit.org/show_bug.cgi?id=33989
-
-        * DumpRenderTree/mac/EventSendingController.mm:
-        (+[EventSendingController isSelectorExcludedFromWebScript:]):
-        (+[EventSendingController webScriptNameForSelector:]):
-
-2010-01-22  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Rubberstamped by Antti Koivisto.
-
-        [Qt] Separate out the WebPage class into it's own
-        cpp/header files. Also, removed the assumption that
-        the view is a QWebView, in preparation of a merger
-        of the two Qt WebKit launchers.
-
-        * QtLauncher/QtLauncher.pro:
-        * QtLauncher/main.cpp:
-        (WebView::mousePressEvent):
-        * QtLauncher/webpage.cpp: Added.
-        (WebPage::supportsExtension):
-        (WebPage::extension):
-        (WebPage::acceptNavigationRequest):
-        (WebPage::openUrlInDefaultBrowser):
-        * QtLauncher/webpage.h: Added.
-        (WebPage::WebPage):
-
-2010-01-21  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Refactored to move file name and file-reading related code
-        from cpp_style.py and text_style.py to checker.py.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33775
-
-        * Scripts/check-webkit-style:
-          - Updates caused by changes to checker.py.
-
-        * Scripts/webkitpy/style/checker.py:
-          - Added SKIPPED_FILES_WITH_WARNING list.
-          - Added SKIPPED_FILES_WITHOUT_WARNING list.
-          - Added FileType class.
-          - Added ProcessorDispatcher class.
-          - In StyleChecker class:
-            - Renamed process_patch() to check_patch().
-            - Renamed process_file() to check_file().
-            - Added _process_file().
-            - Related refactoring.
-            - Addressed check_patch() FIXME to share code with process_file().
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Added ProcessorDispatcherSkipTest class.
-          - Added ProcessorDispatcherDispatchTest class.
-          - Added StyleCheckerCheckFileTest class.
-
-        * Scripts/webkitpy/style/cpp_style.py:
-          - Renamed process_file_data() to _process_lines.
-          - Removed process_file() (moved logic to checker.py).
-          - Removed can_handle() (moved logic to checker.py).
-          - Added CppProcessor class.
-          - Removed is_exempt() (moved logic to checker.py).
-          - Added process_file_data() back as a wrapper function.
-
-        * Scripts/webkitpy/style/cpp_style_unittest.py:
-          - Removed test_can_handle().
-          - Removed test_is_exempt().
-          - Added CppProcessorTest class.
-
-        * Scripts/webkitpy/style/text_style.py:
-          - Added TextProcessor class.
-          - Removed process_file().
-          - Removed can_handle().
-
-        * Scripts/webkitpy/style/text_style_unittest.py:
-          - Removed test_can_handle().
-          - Added TextProcessorTest class.
-
-2010-01-21  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by David Kilzer.
-
-        Create a unit-tested subroutine to parse patch files created
-        by svn-create-patch.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33475
-
-        * Scripts/VCSUtils.pm:
-          - Added parseDiff().
-          - Added parsePatch().
-
-        * Scripts/webkitperl/VCSUtils_unittest/parseDiff.pl: Added.
-          - Added unit tests for parseDiff().
-
-        * Scripts/webkitperl/VCSUtils_unittest/parseDiffHeader.pl:
-          - Total number of tests now computed dynamically.
-
-        * Scripts/webkitperl/VCSUtils_unittest/parsePatch.pl: Added.
-          - Added unit tests for parsePatch().
-
-2010-01-21  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix, add new directory to dir list.
-
-        * wx/build/settings.py:
-
-2010-01-21  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Make the EWS transactional
-        https://bugs.webkit.org/show_bug.cgi?id=33978
-
-        Now if the EWS gets interrupted in the middle of processing a patch,
-        the bots will re-process the patch.
-
-        * Scripts/test-webkitpy:
-        * Scripts/webkitpy/commands/queues.py:
-        * Scripts/webkitpy/commands/queues_unittest.py:
-        * Scripts/webkitpy/patchcollection.py:
-        * Scripts/webkitpy/patchcollection_unittest.py: Added.
-
-2010-01-21  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Add missing "ago" for style in the status bubble.
-
-        * QueueStatusServer/templates/statusbubble.html:
-
-2010-01-21  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by David Levin.
-
-        [style-queue] should not complain about identifier names with underscores under WebKit/gtk/webkit/
-        https://bugs.webkit.org/show_bug.cgi?id=33356
-
-        White list unix_hacker_style names in WebKit/gtk/webkit because these
-        are used in the GTK+ API.
-
-        * Scripts/webkitpy/style/cpp_style.py:
-        * Scripts/webkitpy/style/cpp_style_unittest.py:
-
-2010-01-21  Diego Gonzalez  <diego.gonzalez@openbossa.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] add setDomainRelaxationForbiddenForURLScheme in Qt DRT
-        https://bugs.webkit.org/show_bug.cgi?id=33945
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setDomainRelaxationForbiddenForURLScheme):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-01-21  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        No review, rolling out 53615 as it causes two
-        crashes on the bot.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::createWindow):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::maybeDump):
-
-2010-01-21  Robert Hogan  <robert@roberthogan.net>
-
-        Reviewed by Simon Hausmann.
-
-        Qt DRT: respect window.close() and window.closed()
-
-        Qt DRT needs to maintain a correct count of open windows
-        for windowCount(). It also needs to delete windows that
-        have been closed by window.close().
-
-        This fixes the following tests:
-
-        plugins/destroy-during-npp-new.html
-        fast/dom/Document/early-document-access.html
-        fast/dom/Window/window-early-properties.html
-        fast/events/open-window-from-another-frame.html
-        fast/events/popup-blocking-click-in-iframe.html
-
-        https://bugs.webkit.org/show_bug.cgi?id=32953
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::createWindow):
-        (WebCore::DumpRenderTree::windowCloseRequested):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::maybeDump):
-
-2010-01-20  Eric Seidel  <eric@webkit.org>
-
-        No review, rolling out r53593.
-        http://trac.webkit.org/changeset/53593
-        https://bugs.webkit.org/show_bug.cgi?id=33496
-
-        Re-rollout this patch, the commit-queue should not have landed
-        it again, but it did due to land-diff and rollout both not
-        clearing flags.
-
-        * Scripts/webkitpy/commands/early_warning_system.py:
-        * Scripts/webkitpy/commands/queues.py:
-        * Scripts/webkitpy/queueengine.py:
-        * Scripts/webkitpy/scm.py:
-        * Scripts/webkitpy/scm_unittest.py:
-
-2010-01-20  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        webkit-commit-queue status page is confusing
-        https://bugs.webkit.org/show_bug.cgi?id=33496
-
-        This should improve the status page by removing more Fail messages.
-        To do this, I re-factored the CommitQueue and the AbstractReviewQueues
-        to behave more like one another.  This meant moving where the failure reporting was done.
-        Previously the AbstractReviewQueue always used the parent process to report the error,
-        while CommitQueue used the subprocess when possible, and the parent only reported errors
-        that we didn't know how to handle (bugs in the commit-queue itself).
-        Now the AbstractReviewQueue follow's the commit-queue's model.  This got rid of a try-block
-        in both implementations and required teaching handle_script_error in each to post Fail messages
-        to the status server instead of calling exit(1).
-
-        This will also make the style-queue share more bug posting logic with other queues:
-        https://bugs.webkit.org/show_bug.cgi?id=33871
-
-        * Scripts/webkitpy/commands/early_warning_system.py:
-         - Don't exit(1) as that will cause the calling queue to also report Fail to the status server.
-           Implementors of handle_script_error are expected to update the status server if needed, but only exit if the error could not be handled.
-           So we instead pass patch_has_failed_this_queue=True to _update_status_for_script_error in the case that this was a real failure.
-           _update_status_for_script_error knows how to post the Fail message to the status server.
-         - Teach _update_status_for_script_error how to post Fail messages to the status server.
-        * Scripts/webkitpy/commands/queues.py:
-         - Remove the try block from process_work_item since the caller already has one.
-         - Only CC watchers on failure to cut down on commit-queue generated mail.
-         - handle_unexpected_error needs to mark _did_fail now that the try block is gone from process_work_item.
-         - Abstract _format_script_error_output_for_bug to share code between all queues.
-         - The new _format_script_error_output_for_bug allows the style-queue to share the posting limit with other queues, as well as support linking to the full output.
-         - Rename _can_build_and_test to _current_checkout_builds_and_passes_tests to better explain what revision it's testing.
-         - Move logging out of _can_build_and_test and make the logs explain what revision we're testing.
-         - handle_script_error now posts Fail instead of the try block in process_work_item handling it.
-        * Scripts/webkitpy/queueengine.py:
-         - QueueEngine is no longer used just by the commit-queue, update the logging to say "processing" instead of landing.
-        * Scripts/webkitpy/scm.py:
-         - Add new checkout_revision function.
-        * Scripts/webkitpy/scm_unittest.py:
-         - Test our new checkout_revision function.
-
-2010-01-20  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Reviewed by Alexey Proskuryakov.
-
-        WebSocket: Missing Request-URI, when no tralling slash in host
-        https://bugs.webkit.org/show_bug.cgi?id=33689
-
-        Update pywebsocket to 0.4.7.1, which supports alias for resource
-        name, so that we could test for ws://127.0.0.1:8880
-
-        * Scripts/run-webkit-tests:
-        * Scripts/run-webkit-websocketserver:
-        * pywebsocket/mod_pywebsocket/dispatch.py:
-        * pywebsocket/mod_pywebsocket/handshake.py:
-        * pywebsocket/mod_pywebsocket/standalone.py:
-        * pywebsocket/setup.py:
-        * pywebsocket/test/test_dispatch.py:
-        * pywebsocket/test/test_handshake.py:
-
-2010-01-20  Eric Seidel  <eric@webkit.org>
-
-        No review, rolling out r53537.
-        http://trac.webkit.org/changeset/53537
-        https://bugs.webkit.org/show_bug.cgi?id=33496
-
-        Added a failure condition to the commit-queue and looks to
-        have broken the EWS bots
-
-        * Scripts/webkitpy/commands/early_warning_system.py:
-        * Scripts/webkitpy/commands/queues.py:
-        * Scripts/webkitpy/queueengine.py:
-        * Scripts/webkitpy/scm.py:
-        * Scripts/webkitpy/scm_unittest.py:
-
-2010-01-20  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        MSAA: accSelect() is not implemented
-
-        https://bugs.webkit.org/show_bug.cgi?id=33918
-        <rdar://problem/7436861>
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (takeFocusCallback):
-        Call the object's takeFocus() function.
-        (takeSelectionCallback):
-        Call its takeSelection() function.
-        (addSelectionCallback):
-        Call its addSelection() function.
-        (removeSelectionCallback):
-        Call its removeSelection() function.
-        (AccessibilityUIElement::getJSClass):
-        Add new functions to the JS class definition.
-
-        * DumpRenderTree/AccessibilityUIElement.h:
-        Declare new functions.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::takeFocus):
-        Stubbed.
-        (AccessibilityUIElement::takeSelection):
-        Stubbed.
-        (AccessibilityUIElement::addSelection):
-        Stubbed.
-        (AccessibilityUIElement::removeSelection):
-        Stubbed.
-
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::takeFocus):
-        Stubbed.
-        (AccessibilityUIElement::takeSelection):
-        Stubbed.
-        (AccessibilityUIElement::addSelection):
-        Stubbed.
-        (AccessibilityUIElement::removeSelection):
-        Stubbed.
-
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::takeFocus):
-        Call the object's accSelect() function, passing the appropriate flag.
-        (AccessibilityUIElement::takeSelection):
-        Ditto.
-        (AccessibilityUIElement::addSelection):
-        Ditto.
-        (AccessibilityUIElement::removeSelection):
-        Ditto.
-
-2010-01-20  Andras Becsi  <abecsi@inf.u-szeged.hu>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Extract Apache handling to httpd.pm module and use the provided functionality
-        in scripts where Apache is needed.
-        The module httpd.pm stores the PID of Apache in a variable and cleans up
-        the PID directory after Apache properly shut down. Catching INT and TERM
-        signals allows the scripts to close Apache and clean up its PID directory
-        even if the testing was interrupted.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33153
-
-        * Scripts/webkitperl/httpd.pm: Added.
-        * Scripts/run-iexploder-tests:
-        * Scripts/run-webkit-httpd:
-        * Scripts/run-webkit-tests:
-
-2010-01-20  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Make DumpRenderTree build on Windows
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        * DumpRenderTree/qt/main.cpp:
-
-2010-01-20  Steve Block  <steveblock@google.com>
-
-        Reviewed by Eric Seidel.
-
-        Fix commit bot to land patches in order of the bug last modification date.
-        https://bugs.webkit.org/show_bug.cgi?id=33395
-
-        * Scripts/webkitpy/bugzilla.py: Modified. Added 'order=Last+Changed' to bugzilla commit queue URL.
-
-2010-01-20  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Teach check-webkit-style about WebKit/gtk/tests
-        https://bugs.webkit.org/show_bug.cgi?id=33892
-
-        Removes false positives found in
-        https://bugs.webkit.org/show_bug.cgi?id=30883
-
-        * Scripts/webkitpy/style/cpp_style.py:
-        * Scripts/webkitpy/style/cpp_style_unittest.py:
-
-2010-01-20  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Teach check-webkit-style about QGVLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=33890
-
-        Remove false positives found in
-        https://bugs.webkit.org/show_bug.cgi?id=33708
-
-        * Scripts/webkitpy/style/cpp_style.py:
-        * Scripts/webkitpy/style/cpp_style_unittest.py:
-
-2010-01-20  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        webkit-commit-queue status page is confusing
-        https://bugs.webkit.org/show_bug.cgi?id=33496
-
-        This should improve the status page by removing more Fail messages.
-        To do this, I re-factored the CommitQueue and the AbstractReviewQueues
-        to behave more like one another.  This meant moving where the failure reporting was done.
-        Previously the AbstractReviewQueue always used the parent process to report the error,
-        while CommitQueue used the subprocess when possible, and the parent only reported errors
-        that we didn't know how to handle (bugs in the commit-queue itself).
-        Now the AbstractReviewQueue follow's the commit-queue's model.  This got rid of a try-block
-        in both implementations and required teaching handle_script_error in each to post Fail messages
-        to the status server instead of calling exit(1).
-
-        This will also make the style-queue share more bug posting logic with other queues:
-        https://bugs.webkit.org/show_bug.cgi?id=33871
-
-        * Scripts/webkitpy/commands/early_warning_system.py:
-         - Don't exit(1) as that will cause the calling queue to also report Fail to the status server.
-           Implementors of handle_script_error are expected to update the status server if needed, but only exit if the error could not be handled.
-           So we instead pass patch_has_failed_this_queue=True to _update_status_for_script_error in the case that this was a real failure.
-           _update_status_for_script_error knows how to post the Fail message to the status server.
-         - Teach _update_status_for_script_error how to post Fail messages to the status server.
-        * Scripts/webkitpy/commands/queues.py:
-         - Remove the try block from process_work_item since the caller already has one.
-         - Only CC watchers on failure to cut down on commit-queue generated mail.
-         - handle_unexpected_error needs to mark _did_fail now that the try block is gone from process_work_item.
-         - Abstract _format_script_error_output_for_bug to share code between all queues.
-         - The new _format_script_error_output_for_bug allows the style-queue to share the posting limit with other queues, as well as support linking to the full output.
-         - Rename _can_build_and_test to _current_checkout_builds_and_passes_tests to better explain what revision it's testing.
-         - Move logging out of _can_build_and_test and make the logs explain what revision we're testing.
-         - handle_script_error now posts Fail instead of the try block in process_work_item handling it.
-        * Scripts/webkitpy/queueengine.py:
-         - QueueEngine is no longer used just by the commit-queue, update the logging to say "processing" instead of landing.
-        * Scripts/webkitpy/scm.py:
-         - Add new checkout_revision function.
-        * Scripts/webkitpy/scm_unittest.py:
-         - Test our new checkout_revision function.
-
-2010-01-20  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Exempt JavaScriptCore/qt/api from style checks
-        https://bugs.webkit.org/show_bug.cgi?id=33879
-
-        Apparently there is a JavaScriptCore API for Qt as well as a WebKit
-        API.
-
-        * Scripts/webkitpy/style/cpp_style.py:
-        * Scripts/webkitpy/style/cpp_style_unittest.py:
-
-2010-01-19  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Don't use QSocketNotifier in the DRT for reading stdin
-
-        QSocketNotifier is not available on Windows. Instead we read
-        stdin synchronously after each test using signals and slots.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        * DumpRenderTree/qt/main.cpp:
-
-2010-01-19  Adam Barth  <abarth@webkit.org>
-
-        Rubber stamped by Eric Seidel.
-
-        Move chromium-ews back to building release only to make the EWS faster.
-
-        * Scripts/webkitpy/commands/early_warning_system.py:
-
-2010-01-17  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        MSAA: The child <option> elements of a non-multiple <select> are not
-        exposed
-
-        https://bugs.webkit.org/show_bug.cgi?id=33773
-        <rdar://problem/7550556>
-
-        Reviewed by Alice Liu.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (getIsVisibleCallback):
-        Call the object's isVisible() function.
-        (getIsOffScreenCallback):
-        Ditto, for isOffScreen().
-        (getIsCollapsedCallback):
-        Ditto, for isCollapsed().
-        (getHasPopupCallback):
-        Ditto, for hasPopup().
-        (AccessibilityUIElement::getJSClass):
-        Add isVisible and isOffScreen attributes.
-
-        * DumpRenderTree/AccessibilityUIElement.h:
-        Declare new functions.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::isVisible):
-        Stubbed.
-        (AccessibilityUIElement::isOffScreen):
-        Stubbed.
-        (AccessibilityUIElement::isCollapsed):
-        Stubbed.
-        (AccessibilityUIElement::hasPopup):
-        Stubbed.
-
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::isVisible):
-        Stubbed.
-        (AccessibilityUIElement::isOffScreen):
-        Stubbed.
-        (AccessibilityUIElement::isCollapsed):
-        Stubbed.
-        (AccessibilityUIElement::hasPopup):
-        Stubbed.
-
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::showMenu):
-        Call the object's accDoDefaultAction() to show its popup menu.
-        (AccessibilityUIElement::isEnabled):
-        Check that the object does not have the "unavailable" state.
-        (AccessibilityUIElement::isVisible):
-        Check that the object does not have the "invisible" state.
-        (AccessibilityUIElement::isOffScreen):
-        Check whether the object has the "offscreen" state.
-        (AccessibilityUIElement::isCollapsed):
-        Check whether the object has the "collapsed" state.
-        (AccessibilityUIElement::hasPopup):
-        Check whether the object has the "has popup" state.
-
-2010-01-19  Victor Wang  <victorw@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Correct committer name.
-        https://bugs.webkit.org/show_bug.cgi?id=33868
-
-        * Scripts/webkitpy/committers.py:
-
-2010-01-19  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        [DRT][Mac] Add modifiers parameter to eventSender.mouseDown() and eventSender.mouseUp()
-        https://bugs.webkit.org/show_bug.cgi?id=33783
-
-        Some listbox tests check selection behavior by click events with
-        "meta" or "shift" keys. Behaviors for such modifier keys are
-        platform-dependent. The new parameter of mouseDown() and mouseUp()
-        allows to specify not only concrete modifier keys such as
-        "shiftKey" "metaKey", but also functional names like
-        "addSelectionKey" "rangeSelectionKey".
-
-        * DumpRenderTree/mac/EventSendingController.mm:
-        (+[EventSendingController isSelectorExcludedFromWebScript:]):
-        (+[EventSendingController webScriptNameForSelector:]):
-        (buildModifierFlags):
-        (-[EventSendingController mouseDown:withModifiers:]):
-        (-[EventSendingController mouseDown:]):
-        (-[EventSendingController mouseUp:withModifiers:]):
-        (-[EventSendingController mouseUp:]):
-        (-[EventSendingController keyDown:withModifiers:withLocation:]):
-
-2010-01-19  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Unbreak --request-commit
-        https://bugs.webkit.org/show_bug.cgi?id=33832
-
-        * Scripts/webkitpy/bugzilla.py:
-
-2010-01-19  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        validate-committer-lists throws exception and committers.py needs a refresh
-        https://bugs.webkit.org/show_bug.cgi?id=33831
-
-        * Scripts/validate-committer-lists: use webkit_logging
-        * Scripts/webkitpy/committers.py: Add recently minted committers.  Fix Simon Hausmanns email address list to include his webkit-committers@lists address.
-
-2010-01-18  Adam Roben  <aroben@apple.com>
-
-        Add LayoutTestController support for calling new WebKit SPI to
-        disallow setting document.domain
-
-        DRT part of fixing <http://webkit.org/b/33806>
-        <rdar://problem/7552837> Would like API to disallow setting of
-        document.domain for pages with certain URL schemes
-
-        Reviewed by Sam Weinig.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setDomainRelaxationForbiddenForURLSchemeCallback): Added. Calls
-        through to LayoutTestController.
-        (LayoutTestController::staticFunctions): Added
-        setDomainRelaxationForbiddenForURLScheme.
-
-        * DumpRenderTree/LayoutTestController.h: Added
-        setDomainRelaxationForbiddenForURLScheme.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setDomainRelaxationForbiddenForURLScheme):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setDomainRelaxationForbiddenForURLScheme):
-        Added. Calls through to WebKit.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setDomainRelaxationForbiddenForURLScheme):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setDomainRelaxationForbiddenForURLScheme):
-        Stubbed out.
-
-2010-01-18  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Rename patches-to-commit to patches-in-commit-queue
-        https://bugs.webkit.org/show_bug.cgi?id=33789
-
-        The command really lists the patches in the commit-queue not all the
-        patches that are pending-commit (as the FIXME commands).
-
-        * Scripts/webkitpy/commands/queries.py:
-        * Scripts/webkitpy/commands/queries_unittest.py:
-
-2010-01-18  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Force qmake to generate a single makefile for DerivedSources.pro
-
-        * Scripts/webkitdirs.pm:
-
-2010-01-18  Adam Roben  <aroben@apple.com>
-
-        Clean up use of /useenv when invoking Visual C++
-
-        This change reverts things to their pre-r49485 state. That revision
-        (and, subsequently, r49664 and r51788) started passing /useenv to
-        Visual C++, even in cases where we don't want to do so (such as when
-        invoking Visual C++ Express), in the name of making the Chromium build
-        work. Now that Chromium isn't using buildVisualStudioProject or
-        pdevenv, we can put things back they way they were.
-
-        Fixes <http://webkit.org/b/33797> build-webkit fails with VC++ Express
-        (due to /useenv flag)
-
-        Reviewed by Sam Weinig.
-
-        * Scripts/pdevenv: Always pass /useenv. Chromium doesn't use this
-        script anymore.
-        * Scripts/webkitdirs.pm:
-        (buildVisualStudioProject): Never pass /useenv anymore. pdevenv takes
-        care of this itself, and we don't want to pass /useenv when not using
-        pdevenv (e.g., when using VC++ Express, because that will cause it to
-        ignore the Platform SDK).
-
-2010-01-18  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        webkit-patch land-safely should obsolete old patches
-        https://bugs.webkit.org/show_bug.cgi?id=33788
-
-        When posting a commit-queue+ patch with land-safely, we should
-        obsolete the old patches on the bug.  They're really confusing
-        because the main use case is to address reviewer feedback on a
-        previous patch.
-
-        * Scripts/webkitpy/commands/upload.py:
-        * Scripts/webkitpy/commands/upload_unittest.py:
-
-2010-01-18  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by David Levin.
-
-        webkit-patch should authenticate more often
-        https://bugs.webkit.org/show_bug.cgi?id=33701
-
-        This makes it easier to work with security patches.
-
-        * Scripts/webkitpy/bugzilla.py:
-
-2010-01-18  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        style checker needs to know about GObject-specific requirements
-        inside WebCore/bindings/gobject/
-        https://bugs.webkit.org/show_bug.cgi?id=33606
-
-        Add an exception to the underscore rule for certain
-        GObject-specific names.
-
-        * Scripts/webkitpy/style/cpp_style.py:
-        * Scripts/webkitpy/style/cpp_style_unittest.py:
-
-2010-01-18  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        [check-webkit-style] does understand ResourceHandleWin.h
-        https://bugs.webkit.org/show_bug.cgi?id=32975
-
-        I'm not 100% convinced this fix is correct, but without more examples,
-        it's hard to generalize.  We can always generalize the fix in the
-        future.
-
-        * Scripts/webkitpy/style/cpp_style.py:
-        * Scripts/webkitpy/style/cpp_style_unittest.py:
-
-2010-01-18  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed "build" fix.
-
-        * Scripts/webkitpy/bugzilla.py:
-
-2010-01-18  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Actually make land-safely mark commit-queue+ as
-        discussed with Eric.
-
-        * Scripts/webkitpy/bugzilla.py:
-        * Scripts/webkitpy/steps/postdiffforcommit.py:
-
-2010-01-17  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        style-queue complains about one-line macros that include multiple statements
-        https://bugs.webkit.org/show_bug.cgi?id=33173
-
-        Add an exception for multiple statements on a line that starts a macro.
-
-        * Scripts/webkitpy/style/cpp_style.py:
-        * Scripts/webkitpy/style/cpp_style_unittest.py:
-
-2010-01-17  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        [check-webkit-style] qt unit testing false positives
-        https://bugs.webkit.org/show_bug.cgi?id=32833
-
-        Exempt the Qt API and unit tests from the style checker.
-
-        * Scripts/webkitpy/style/cpp_style.py:
-        * Scripts/webkitpy/style/cpp_style_unittest.py:
-
-2010-01-17  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        style-check script reports loads of errors on gtk2drawing.c
-        https://bugs.webkit.org/show_bug.cgi?id=33771
-
-        Exempt WebCore/platform/gtk/gtk2drawing.c and
-        WebCore/platform/gtk/gtk2drawing.h from style checks.
-
-        * Scripts/webkitpy/style/cpp_style.py:
-        * Scripts/webkitpy/style/cpp_style_unittest.py:
-
-2010-01-17  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Finished eliminating _cpp_style_state global state variable from
-        check-webkit-style code and eliminating _CppStyleState class.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33764
-
-        * Scripts/webkitpy/style/checker.py:
-          - Minor updates caused by changes to cpp_style.py.
-
-        * Scripts/webkitpy/style/cpp_style.py:
-          - Removed _CppStyleState class.
-          - Removed verbose_level functions.
-          - Added verbosity as a parameter to _FunctionState constructor.
-          - Added verbosity as a parameter to process_file().
-          - Added verbosity as a parameter to process_file_data().
-
-        * Scripts/webkitpy/style/cpp_style_unittest.py:
-          - Added helper functions to set verbosity while running tests.
-
-2010-01-17  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        check-webkit-style underscore check should be disabled for Qt methods starting with qt_
-        https://bugs.webkit.org/show_bug.cgi?id=33663
-
-        * Scripts/webkitpy/style/cpp_style.py:
-        * Scripts/webkitpy/style/cpp_style_unittest.py:
-
-2010-01-17  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        style-queue complains about missing #include of config.h for non-WebCore projects
-        https://bugs.webkit.org/show_bug.cgi?id=33170
-
-        WebKitAPITests are consumers of the WebKit API and therefore do not
-        need to follow the same include discipline as the rest of WebKit.  This
-        patch exempts them from the include checks.
-
-        * Scripts/webkitpy/style/cpp_style.py:
-        * Scripts/webkitpy/style/cpp_style_unittest.py:
-
-2010-01-17  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        EWS (Early Warning Systems) should build both debug and release
-        https://bugs.webkit.org/show_bug.cgi?id=33681
-
-        Build both debug and release for chromium-ews.
-
-        * Scripts/webkitpy/commands/early_warning_system.py:
-
-2010-01-17  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        style-queue should include instructions for how to file bugs against check-webkit-style
-        https://bugs.webkit.org/show_bug.cgi?id=32345
-
-        Added some text to the error message asking folks to file bugs against
-        false positives.
-
-        * Scripts/webkitpy/commands/queues.py:
-
-2010-01-17  Chris Jerdonek  <cjerdonek@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Eliminated the error_count global variable and related
-        check-webkit-style refactoring.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33678
-
-        * Scripts/check-webkit-style:
-          - Updated to use webkit_argument_defaults().
-          - Renamed styleChecker to style_checker.
-
-        * Scripts/webkitpy/style/checker.py:
-          - Prefixed the three default arguments with WEBKIT_DEFAULT.
-          - Added webkit_argument_defaults().
-          - Added default filter_rules parameter to CategoryFilter constructor.
-          - Added __ne__() to CategoryFilter class.
-          - Added __eq__() and __ne__() to ProcessorOptions class.
-          - Added error_count and _write_error attributes to StyleChecker class.
-          - Made StyleChecker._handle_error() increment the error count.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Improved CategoryFilterTest.test_eq().
-          - Added CategoryFilterTest.test_ne().
-          - Added test_eq() and test_ne() to ProcessorOptionsTest class.
-          - Updated unit tests to use webkit_argument_defaults().
-          - Added StyleCheckerTest class.
-
-        * Scripts/webkitpy/style/cpp_style.py:
-          - Removed references to global error_count.
-
-        * Scripts/webkitpy/style/cpp_style_unittest.py:
-          - Removed CppStyleStateTest class.
-
-2010-01-15  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        get_accParent should try to retrieve parent AccessibilityObject, before
-        calling upon window
-
-        https://bugs.webkit.org/show_bug.cgi?id=22893
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::parentElement):
-        Get the object's parent. Query it for IAccessible, and return it.
-
-2010-01-16  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        <rdar://problem/7529519> DumpRenderTree crashes in makeLargeMallocFailSilently()
-
-        * DumpRenderTree/mac/CheckedMalloc.cpp:
-        (makeLargeMallocFailSilently): Temporarily allow writing to the default
-        malloc zone structure while modifying it.
-
-2010-01-16  David Kilzer  <ddkilzer@apple.com>
-
-        Added back removed properties to iExploder input files
-
-        While the update-iexploder-cssproperties script works great to
-        add new properties, it has the side-effect of removing old
-        properties that once were parsed.
-
-        * iExploder/htdocs/cssproperties.in: Added back removed
-        properties into their own section.
-        * iExploder/htdocs/htmlattrs.in: Ditto.
-
-2010-01-16  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Reviewed by David Kilzer.
-
-        Update iExploder/htdocs/*.in by running update-iexploder-cssproperties 
-        https://bugs.webkit.org/show_bug.cgi?id=33756
-
-        * iExploder/htdocs/cssproperties.in: New CSS attributes
-        * iExploder/htdocs/htmlattrs.in: New HTML attributes
-        * iExploder/htdocs/htmltags.in: New HTML tags
-
-2010-01-15  Chris Jerdonek  <chris.jerdonek@gmail.com>
-
-        Reviewed by David Kilzer.
-
-        Altered parseDiffHeader() to skip unrecognized lines and
-        other minor clean-ups.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33476
-
-        * Scripts/VCSUtils.pm:
-          - Changed parseDiffHeader() as follows:
-            - Skips over unrecognized lines.
-            - Addressed FIXME to remove substitution for "diff" line.
-            - Renamed "version" header hash key to "sourceRevision".
-            - Eliminated "copiedFromVersion" header hash key.
-            - Included "sourceRevision" also for copied files.
-            - Checks that copy revision number matches "sourceRevision".
-            - No longer returns $foundHeaderEnding.
-            - Dies if header ending not found.
-            - Diff header dividing line now always added.
-
-        * Scripts/webkitperl/VCSUtils_unittest/parseDiffHeader.pl:
-          - Made necessary changes in parseDiffHeader() unit tests.
-          - Shortened the file paths in some test cases.
-
-2010-01-14  Yuzo Fujishima  <yuzo@google.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Update pywebsocket to 0.4.6
-        https://bugs.webkit.org/show_bug.cgi?id=32299
-        The newer pywebsocket can handle more simultaneous connections.
-
-        * pywebsocket/mod_pywebsocket/handshake.py:
-        * pywebsocket/mod_pywebsocket/standalone.py:
-        * pywebsocket/setup.py:
-        * pywebsocket/test/test_handshake.py:
-
-2010-01-14  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        REGRESSION(53133): commit-queue no longer rejects patches with invalid committers, instead it hangs
-        https://bugs.webkit.org/show_bug.cgi?id=33638
-
-        * Scripts/webkitpy/bugzilla.py:
-         - Add Bug.id() to match Attachment.id()
-         - Give Bug.reviewed_patches and commit_queued_patches the option to return patches with invalid committers/reviewers.
-         - Add back a missing variable to _validate_setter_email found by the new unit tests!
-        * Scripts/webkitpy/commands/queries.py:
-         - Add FIXMEs about the commands being confusingly named.
-        * Scripts/webkitpy/commands/queries_unittest.py:
-         - Update results to reflect the newly restructured mock bug cache.
-        * Scripts/webkitpy/commands/queues.py:
-         - Add a new _validate_patches_in_commit_queue method (this is what fixes the regression).
-         - Add a FIXME about eventually sorting the patches into some order.
-        * Scripts/webkitpy/commands/queues_unittest.py:
-         - Update results now that with the newly restructure mock bug cache we're testing cq+'d patches with an invalid committer.
-        * Scripts/webkitpy/commands/upload_unittest.py:
-         - Update results to match the newly restructured mock bug cache.
-        * Scripts/webkitpy/mock_bugzillatool.py:
-         - Restructure fetch_ methods to not use a manual list of ids, but rather use Bug and Attachment classes to make real queries from all of the Bugs.
-         - Add a few more attachments and bug dictionaries for use by the tests.
-
-2010-01-13  Diego Gonzalez  <diego.gonzalez@openbossa.org>
-
-        Reviewed by Kenneth Christiansen.
-
-        [Qt] DRT missing setUserStyleSheetLocation and setUserStyleSheetEnabled in LayoutTestController
-        https://bugs.webkit.org/show_bug.cgi?id=33617
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::resetSettings):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setUserStyleSheetLocation):
-        (LayoutTestController::setUserStyleSheetEnabled):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-01-14  Adam Roben  <aroben@apple.com>
-
-        Add LayoutTestController API to force
-        -webView:resource:willSendRequest:: to return null
-
-        Enables tests for <rdar://problem/7533333> <http://webkit.org/b/33533>
-        window.onload never fires if page contains an <iframe> with a bad
-        scheme or whose load is cancelled by returning null from resource load
-        delegate's willSendRequest
-
-        Reviewed by Brady Eidson.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController): Initialize new member.
-        (setWillSendRequestReturnsNullCallback): Call through to
-        LayoutTestController.
-        (LayoutTestController::staticFunctions): Added new function.
-
-        * DumpRenderTree/LayoutTestController.h: Added
-        m_willSendRequestReturnsNull.
-        (LayoutTestController::willSendRequestReturnsNull):
-        (LayoutTestController::setWillSendRequestReturnsNull):
-        Added standard accessors.
-
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        (-[ResourceLoadDelegate webView:resource:willSendRequest:redirectResponse:fromDataSource:]):
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp:
-        (ResourceLoadDelegate::willSendRequest):
-        Return null if LayoutTestController says to.
-
-2010-01-14  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix after removal of XBM support.
-
-        * wx/build/settings.py:
-
-2010-01-14  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        Add support for partial building on Symbian.
-
-        The build happens in the source directory as out of source builds are
-        not supported by qmake for Symbian.
-
-        Also the actual build isn't started but it is left to the developer
-        to choose the architecture/configuration.
-
-        * Scripts/webkitdirs.pm:
-
-2010-01-14  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add support for "detecting" Symbian environments by either
-        looking for the EPOCROOT environment variable or via --symbian
-        being passed on the commandline.
-
-        * Scripts/webkitdirs.pm:
-
-2010-01-14  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        Unreviewed.
-
-        [Qt] Use a different Makefile names for sources generation and compilation.
-        This prevents Makefile overwriting when running build-webkit twice.
-
-        * Scripts/webkitdirs.pm:
-
-2010-01-14  Andreas Kling  <andreas.kling@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Add an "alien_QLabel" classId for manual testing of alien widgets.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33373
-
-        * QtLauncher/main.cpp:
-        (WebPage::createPlugin):
-
-2010-01-14  Eric Seidel  <eric@webkit.org>
-
-        No review, rolling out r53249.
-        http://trac.webkit.org/changeset/53249
-        https://bugs.webkit.org/show_bug.cgi?id=33617
-
-        This caused http/tests/security/local-user-CSS-from-
-        remote.html to fail on the Qt Release Build Bot.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::resetSettings):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::overridePreference):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-01-14  Chris Jerdonek  <chris.jerdonek@gmail.com>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Moved error() from cpp_style.py to checker.py.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33620
-
-        * Scripts/check-webkit-style:
-          - Addressed FIXME to not set global state.
-
-        * Scripts/webkitpy/style/checker.py:
-          - Added argument validation to ProcessorOptions constructor.
-          - Added should_report_error() to ProcessorOptions class.
-          - Removed set_options().
-          - Added StyleChecker class.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Added unit test class for ProcessorOptions class.
-          - Added unit test to check that parse() strips white space.
-
-        * Scripts/webkitpy/style/cpp_style.py:
-          - Removed "filter" and "output_format" methods.
-          - Removed should_print_error() and error() functions.
-          - Removed default parameter value from process_file().
-
-        * Scripts/webkitpy/style/cpp_style_unittest.py:
-          - Removed call to cpp_style._should_print_error().
-          - Removed test_filter() and test_filter_appending().
-
-        * Scripts/webkitpy/style/text_style.py:
-          - Removed default parameter value from process_file().
-
-2010-01-14  Diego Gonzalez  <diego.gonzalez@openbossa.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] DRT missing setUserStyleSheetLocation and setUserStyleSheetEnabled in LayoutTestController
-        https://bugs.webkit.org/show_bug.cgi?id=33617
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::resetSettings):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setUserStyleSheetLocation):
-        (LayoutTestController::setUserStyleSheetEnabled):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-01-13  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Fix CloseBugForLandDiff unittest to actually run
-        https://bugs.webkit.org/show_bug.cgi?id=33640
-
-        * Scripts/webkitpy/mock_bugzillatool.py:
-        * Scripts/webkitpy/steps/closebugforlanddiff_unittest.py:
-
-2010-01-12  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        MSAA: selected, selectable, extended selectable, and multiple
-        selectable states are not reported
-
-        https://bugs.webkit.org/show_bug.cgi?id=33574
-        <rdar://problem/7536826>
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (getIsSelectableCallback):
-        Return the result of calling isSelectable().
-        (getIsMultiSelectableCallback):
-        Return the result of calling isMultiSelectable().
-        (AccessibilityUIElement::getJSClass):
-        Add isSelected and isMultiSelectable properties to the JSClass
-        definition.
-
-        * DumpRenderTree/AccessibilityUIElement.h:
-        Declare isSelectable() and isMultiSelectable().
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::isSelectable):
-        Stubbed.
-        (AccessibilityUIElement::isMultiSelectable):
-        Stubbed.
-
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::isSelectable):
-        Stubbed.
-        (AccessibilityUIElement::isMultiSelectable):
-        Stubbed.
-
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (accessibilityState):
-        Get the object's state, and return it.
-        (AccessibilityUIElement::isSelected):
-        Check the object's selected state.
-        (AccessibilityUIElement::isSelectable):
-        Check the object's selectable state.
-        (AccessibilityUIElement::isMultiSelectable):
-        Check the object's extended/multiple selectable state.
-
-2010-01-13  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Repeat the below for CloseBugForLandDiff.
-
-        * Scripts/test-webkitpy:
-        * Scripts/webkitpy/steps/closebugforlanddiff.py:
-        * Scripts/webkitpy/steps/closebugforlanddiff_unittest.py: Added.
-
-2010-01-13  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Turn the mac-ews status bubbles back on now that this bot
-        is running again.
-
-        * QueueStatusServer/templates/statusbubble.html:
-
-2010-01-13  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        REGRESSION(53133): webkit-patch land dies if it can't find a bug id.
-        https://bugs.webkit.org/show_bug.cgi?id=33634
-
-        Deal with the case of no bug patch object in the state.
-
-        * Scripts/webkitpy/steps/updatechangelogswithreview_unittests.py:
-        * Scripts/webkitpy/steps/updatechangelogswithreviewer.py:
-
-2010-01-13  Kenneth Russell  <kbr@google.com>
-
-        Unreviewed; added myself to the committers list.
-
-        * Scripts/webkitpy/committers.py:
-
-2010-01-13  Darin Adler  <darin@apple.com>
-
-        Ignore compiled Python in more of webkitpy.
-
-        * Scripts/webkitpy/commands: Added property svn:ignore.
-        * Scripts/webkitpy/steps: Added property svn:ignore.
-        * Scripts/webkitpy/style: Added property svn:ignore.
-
-2010-01-13  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Fix build problem related to the pushd command
-
-        * Scripts/webkitdirs.pm:
-
-2010-01-13  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Split the build process in two different .pro files.
-        This allows qmake to be run once all source files are available.
-
-        * Scripts/webkitdirs.pm: Add calls to make DerivedSources.pro in JSC and WC.
-
-2010-01-13  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Unreviewed tiny typo fix in docstrings.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-
-2010-01-13  Chris Jerdonek  <chris.jerdonek@gmail.com>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Created a CategoryFilter class to encapsulate the logic of
-        filter rules.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33454
-
-        * Scripts/webkitpy/style/checker.py:
-          - Added CategoryFilter class.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-          - Added CategoryFilter unit tests.
-
-        * Scripts/webkitpy/style/cpp_style.py:
-          - Updated filter methods to use CategoryFilter.
-
-        * Scripts/webkitpy/style/cpp_style_unittest.py:
-          - Updated references to filters.
-
-2010-01-12  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Unreviewed. Now I can review :)
-
-        * Scripts/webkitpy/committers.py:
-
-2010-01-12  Brent Fulgham  <bfulgham@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Extend WinLauncher example with better printing features.
-
-        * WinLauncher/PrintWebUIDelegate.cpp:
-        (PrintWebUIDelegate::webViewPrintingMarginRect): Provide slightly
-         larger margins.
-        (PrintWebUIDelegate::webViewHeaderHeight): Compute header height based
-         on text metrics.
-        (PrintWebUIDelegate::webViewFooterHeight): Compute footer height based
-         on text metrics.
-        (PrintWebUIDelegate::drawHeaderInRect): Write useful header, along
-         with separating line.
-        (PrintWebUIDelegate::drawFooterInRect):
-        * WinLauncher/PrintWebUIDelegate.h: Remove stubs.
-        * WinLauncher/WinLauncher.cpp:
-        (PrintView): Correct loop used to print individual pages.
-         Previously it started at 0, which is a wild-card to print all
-         pages at once.
-
-2010-01-12  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33540
-        Make it possible to build in debug mode with assertions disabled
-
-        * DumpRenderTree/mac/ObjCController.m: (-[ObjCController accessStoredWebScriptObject]):
-
-2010-01-11  Darin Fisher  <darin@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [Chromium] "build-webkit --chromium" should run "make all" on Linux
-        https://bugs.webkit.org/show_bug.cgi?id=33500
-
-        * Scripts/webkitdirs.pm:
-
-2010-01-12  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        AssignToCommitter does not need to fetch bugs twice
-        https://bugs.webkit.org/show_bug.cgi?id=33530
-
-        This is a no-brainer patch now that we've added Bug.reviewed_patches
-
-        * Scripts/webkitpy/commands/upload.py:
-
-2010-01-12  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla.py should have an Attachment object instead of passing around dictionaries
-        https://bugs.webkit.org/show_bug.cgi?id=31594
-
-        * Scripts/webkitpy/bugzilla.py:
-         - Add a new Attachment class, with accessor methods for all the necessary properties.
-         - Update Bug to carry a pointer back to bugzilla (attachments need to access Bugzilla for committer validation and url())
-         - Move reviewed_patches and commit_queued_patches out of Bugzilla custom methods and onto Bug
-         - Move committer validation logic into its own class.
-         - Committer rejection is only used in one place.  Make the new Bug reviewed_patches and commit_queued_patches
-           handle the common case (of returning "reviewer" or "committer" as None), and let CommitterValidation handle
-           the case where we want to reject patches in bugzilla.
-         - Simplify fetch_patches_from_commit_queue now that committer validation is simpler.
-         - Make all self.bugzilla.fetch_bug access go through BugzillaQueries._fetch_bug.
-         - Mark set_flag_on_attachment as non-private to denote that CommitterValidation depends on it.
-         - Move fetch_reviewed_patches_from_bug and fetch_commit_queue_patches_from_bug logic onto the Bug class.
-        * Scripts/webkitpy/bugzilla_unittest.py:
-         - Move test_flag_permission_rejection_message into a new CommitterValidationTest class.
-        * Scripts/webkitpy/commands/download.py:
-         - Store "bug_id" in state instead of making a fake patch object.
-         - Update to use Attachment and Bug objects.
-        * Scripts/webkitpy/commands/download_unittest.py:
-         - Update expected results now that our testing framework covers more code.
-        * Scripts/webkitpy/commands/early_warning_system.py: Update to use new Attachment class.
-        * Scripts/webkitpy/commands/queries.py: Remove unused ReviewedPatches class.
-        * Scripts/webkitpy/commands/queries_unittest.py: ditto.
-        * Scripts/webkitpy/commands/queues.py: Update to use new Attachment and CommitterValidator classes.
-        * Scripts/webkitpy/commands/queuestest.py: ditto.
-        * Scripts/webkitpy/commands/upload.py: ditto.
-        * Scripts/webkitpy/mock_bugzillatool.py:
-         - Now that more logic has moved into Attachment and Bug, we have to actually
-           provide real reviewer emails as well as real reviewer flags.
-         - Update mock methods to return Attachment objects.
-        * Scripts/webkitpy/scm.py: Update to use Attachment class.
-        * Scripts/webkitpy/scm_unittest.py: Update to use Attachment class.
-        * Scripts/webkitpy/statusserver.py: ditto.
-        * Scripts/webkitpy/steps/applypatch.py: ditto.
-        * Scripts/webkitpy/steps/applypatchwithlocalcommit.py: ditto.
-        * Scripts/webkitpy/steps/closebug.py: ditto.
-        * Scripts/webkitpy/steps/closebugforlanddiff.py: Handle either state["bug_id"] or state["patch"].bug_id()
-        * Scripts/webkitpy/steps/closepatch.py: Update to use Attachment class.
-        * Scripts/webkitpy/steps/obsoletepatches.py: ditto.
-        * Scripts/webkitpy/steps/updatechangelogswithreviewer.py: ditto.
-
-2010-01-12  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed typo fix.  :(
-
-        * Scripts/webkitpy/commands/early_warning_system.py:
-        * Scripts/webkitpy/commands/queues.py:
-
-2010-01-12  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Add "error" to the right part of the message.
-
-        * Scripts/webkitpy/commands/queues.py:
-
-2010-01-12  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        EWS should show purple when svn-apply fails
-        https://bugs.webkit.org/show_bug.cgi?id=33527
-
-        * Scripts/webkitpy/commands/early_warning_system.py:
-        * Scripts/webkitpy/commands/queues.py:
-
-2010-01-12  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Remove copy/paste code from subclasses of AbstractReviewQueue
-        https://bugs.webkit.org/show_bug.cgi?id=33525
-
-        * Scripts/webkitpy/commands/early_warning_system.py:
-        * Scripts/webkitpy/commands/queues.py:
-
-2010-01-12  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add Gustavo and Xan as gtk-ews watchers
-        https://bugs.webkit.org/show_bug.cgi?id=33519
-
-        * Scripts/webkitpy/commands/early_warning_system.py:
-
-2010-01-12  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        webkit-patch shouldn't waste my time for with a component prompt
-        https://bugs.webkit.org/show_bug.cgi?id=33521
-
-        The component field isn't very useful for bugs created with
-        webkit-patch because they're likely to be resolved quickly.  Instead of
-        always prompting for a component, we should just default to the "New
-        Bugs" component.  If the bug stays around for more than five minutes,
-        we can assign it a proper component.
-
-        * Scripts/webkitpy/bugzilla.py:
-
-2010-01-12  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add experimental "land-safely" command to webkit-patch
-        https://bugs.webkit.org/show_bug.cgi?id=33518
-
-        * Scripts/webkitpy/commands/upload.py:
-        * Scripts/webkitpy/commands/upload_unittest.py:
-        * Scripts/webkitpy/steps/__init__.py:
-        * Scripts/webkitpy/steps/postdiffforcommit.py: Added.
-
-2010-01-11  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix after introduction of JS_NO_EXPORT
-        
-        * wx/build/settings.py:
-
-2010-01-11  Eric Seidel  <eric@webkit.org>
-
-        No review, rolling out r53079.
-        http://trac.webkit.org/changeset/53079
-        https://bugs.webkit.org/show_bug.cgi?id=33197
-
-        Adam doens't think this actually works, and believe it caused
-        a regression https://bugs.webkit.org/show_bug.cgi?id=33488 so
-        rolling this out.
-
-        * Scripts/test-webkitpy:
-        * Scripts/webkitpy/commands/abstractdiffcommand.py: Removed.
-        * Scripts/webkitpy/commands/abstractdiffcommand_unittest.py: Removed.
-        * Scripts/webkitpy/commands/download.py:
-        * Scripts/webkitpy/commands/upload.py:
-        * Scripts/webkitpy/mock_bugzillatool.py:
-
-2010-01-10  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by David Kilzer.
-
-        bugzilla-tool submit-patch mistakenly picks up bug URLs in non-ChangeLog files
-        https://bugs.webkit.org/show_bug.cgi?id=33197
-
-        We should just search for bug numbers in the ChangeLogs instead of in
-        the whole diff.
- 
-        * Scripts/test-webkitpy:
-        * Scripts/webkitpy/commands/abstractdiffcommand.py: Added.
-        * Scripts/webkitpy/commands/abstractdiffcommand_unittest.py: Added.
-        * Scripts/webkitpy/commands/download.py:
-        * Scripts/webkitpy/commands/upload.py:
-        * Scripts/webkitpy/mock_bugzillatool.py:
-
-2010-01-11  Chris Jerdonek  <chris.jerdonek@gmail.com>
-
-        Reviewed by David Kilzer.
-
-        Created a unit-tested function to parse the header block of
-        a Git or SVN diff -- for future refactoring of svn-apply and
-        svn-unapply.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33447
-
-        * Scripts/VCSUtils.pm:
-          - Added parseDiffHeader().
-          - Removed irrelevant comment from gitdiff2svndiff().
-
-        * Scripts/webkitperl/VCSUtils_unittest/parseDiffHeader.pl: Added.
-          - Added 48 unit tests for parseDiffHeader().
-
-2010-01-10  Adam Barth  <abarth@webkit.org>
-
-        Rubber stamped by David Kilzer.
-
-        bugzilla-tool submit-patch mistakenly picks up bug URLs in non-ChangeLog files
-        https://bugs.webkit.org/show_bug.cgi?id=33197
-
-        Fix a typo: Commmand -> Command.
-
-        * Scripts/webkitpy/commands/abstractsequencedcommand.py:
-        * Scripts/webkitpy/commands/download.py:
-        * Scripts/webkitpy/commands/queries.py:
-        * Scripts/webkitpy/commands/upload.py:
-        * Scripts/webkitpy/multicommandtool.py:
-
-2010-01-10  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Let webkit-patch work with options in $EDITOR
-        https://bugs.webkit.org/show_bug.cgi?id=33414
-
-        The $EDITOR evironment variable might have command line options like
-        bbedit -w.  This patch lets us run those $EDITORs.
-
-        * Scripts/webkitpy/user.py:
-
-2010-01-10  Robert Hogan  <robert@roberthogan.net>
-
-        Reviewed by Adam Barth.
-
-        [Qt] Add enableXSSAuditor support to QWebSettings and DRT.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33419
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::WebPage):
-        (WebCore::WebPage::resetSettings):
-        (WebCore::DumpRenderTree::createWindow):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setXSSAuditorEnabled):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-01-10  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed cosmetic change.  Remove the status bubble for mac-ews
-        because we don't have hardware for it at the moment.
-
-        * QueueStatusServer/templates/statusbubble.html:
-
-2010-01-09  Daniel Bates  <dbates@webkit.org>
-
-        No review, rolling out r53044.
-        http://trac.webkit.org/changeset/53044
-        https://bugs.webkit.org/show_bug.cgi?id=33419
-        
-        We need to look into this some more because the Qt
-        bot is failing the XSSAuditor tests. See bug #33419
-        for more details.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::WebPage):
-        (WebCore::WebPage::resetSettings):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-01-09  Daniel Bates  <dbates@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33419
-
-        Adds support for the XSSAuditor to the Qt DRT.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::WebPage):
-        (WebCore::WebPage::resetSettings):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setXSSAuditorEnabled):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-01-09  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Retry writes to QueueStatusServer when we get 500 errors
-        https://bugs.webkit.org/show_bug.cgi?id=33412
-
-        This prevents the queues from failing to mark a patch as "pass" or
-        "fail" when AppEngine throws 500 errors.
-
-        * Scripts/test-webkitpy:
-        * Scripts/webkitpy/networktransaction.py: Added.
-        * Scripts/webkitpy/networktransaction_unittest.py: Added.
-        * Scripts/webkitpy/statusserver.py:
-        * Scripts/webkitpy/steps/closebugformarkbugfixed.py: Added.
-        * Scripts/webkitpy/steps/closebugregardlessofpatches.py: Added.
-        * Scripts/webkitpy/steps/findbugidfromsvnrevision.py: Added.
-
-2010-01-09  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/33430> Fix rounded borders in queue status on older Firefox and Safari browsers
-
-        Reviewed by Eric Seidel.
-
-        * QueueStatusServer/templates/statusbubble.html: Added
-        -moz-border-radius and -webkit-border-radius to provide rounded
-        borders in older Firefox and Safari browsers.
-
-2010-01-09  Chris Jerdonek  <chris.jerdonek@gmail.com>
-
-        Reviewed by David Kilzer.
-
-        Modified VCSUtils::gitdiff2svndiff() to accept strings that
-        end in vertical white space.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33415
-
-        * Scripts/VCSUtils.pm:
-        * Scripts/webkitperl/VCSUtils_unittest/gitdiff2svndiff.pl:
-
-2010-01-08  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        run-javascriptcore-tests needs a --quiet flag
-        https://bugs.webkit.org/show_bug.cgi?id=33399
-
-        Until run-javascriptcore-tests has a --quiet flag, lets just stiffle the output in webkit-patch.
-
-        * Scripts/webkitpy/steps/runtests.py:
-
-2010-01-08  Andras Becsi  <abecsi@inf.u-szeged.hu>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Only run http and websocket tests as last if no argument is given to be able to explicitly control the test order.
-
-        To be able to run multiple instances of run-webkit-tests besides each other on the same machine we need to minimize
-        the time when Apache and WebSocketServer is locked by tests.
-        Because closeHTTPD() and closeWebSocketServer() is only called at the end of the testing,
-        we need to run http and websocket tests after all other tests.
-        If one however explicitly specifies the tests to run in the argument list of run-webkit-tests
-        we need to preserve the given order.
-
-        * Scripts/run-webkit-tests:
-
-2010-01-08  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Don't post style-queue pass messages to bugs
-        https://bugs.webkit.org/show_bug.cgi?id=33404
-
-        These messages aren't needed any more now that we have the status
-        bubble reporting pass events passively.
-
-        * Scripts/webkitpy/commands/queues.py:
-
-2010-01-08  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Optimize the number of CPUs used for building Qt and Gtk
-        https://bugs.webkit.org/show_bug.cgi?id=33394
-
-        Instead of hardcoding the number 8, we should read the number of CPUs
-        from the environment.
-
-        * Scripts/webkitpy/executive.py:
-        * Scripts/webkitpy/webkitport.py:
-        * Scripts/webkitpy/webkitport_unittest.py:
-
-2010-01-08  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Eric Seidel.
-
-        REGRESSION(52819?): AXLoadComplete and AXLayoutComplete causes 4 tests fail on Snow Leopard Debug bot
-        https://bugs.webkit.org/show_bug.cgi?id=33300
-
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::AccessibilityUIElement):
-        (AccessibilityUIElement::~AccessibilityUIElement):
-        (_accessibilityNotificationCallback):
-        (AccessibilityUIElement::addNotificationListener):
-
-2010-01-08  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        commit-queue should run run-javascriptcore-tests
-        https://bugs.webkit.org/show_bug.cgi?id=33376
-
-        I also made it run the python and perl unit tests.
-
-        * Scripts/webkitpy/steps/runtests.py:
-        * Scripts/webkitpy/webkitport.py:
-
-2010-01-07  Andras Becsi  <abecsi@inf.u-szeged.hu>
-
-        Reviewed by Darin Adler.
-
-        Run the http and websocket tests after all other tests.
-        https://bugs.webkit.org/show_bug.cgi?id=33153
-
-        * Scripts/run-webkit-tests:
-
-2010-01-07  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Fix some test-webkitpy expectations
-        https://bugs.webkit.org/show_bug.cgi?id=33345
-
-        I forgot to change these when I added the CheckStyle step.
-
-        * Scripts/webkitpy/commands/upload_unittest.py:
-
-2010-01-07  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        webkit-patch edit-changelogs (or upload) will open blank files if run outside the root
-        https://bugs.webkit.org/show_bug.cgi?id=33341
-
-        Fix this by moving to the root directory before editing ChangeLogs.
-        There is a related bug with CheckStyle.
-
-        * Scripts/webkitpy/steps/checkstyle.py:
-        * Scripts/webkitpy/steps/editchangelog.py:
-
-2010-01-07  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Nikolas Zimmermann.
-
-        media/unsupported-tracks.html is failing on Snow Leopard Release bot
-        https://bugs.webkit.org/show_bug.cgi?id=32339
-
-        This is a speculative fix.  I do not have a Snow Leopard machine to test on
-        and I've not seen mention of someone being able to reproduce this locally.
-
-        Prevent watchdog timer from firing after a test completes but before
-        the next one starts, causing the error to appear in the next test.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dump): Stop the watchdog before printing #EOF for the test content.
-        We only need to care about the JavaScript of the test running too long
-        or some hang in WebCore.  Any other failures will be covered by the calling
-        script's own watchdog timer.
-
-2010-01-07  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue is stuck spinning due to exception
-        https://bugs.webkit.org/show_bug.cgi?id=33358
-
-        * Scripts/webkitpy/commands/queues.py:
-         - Don't try to stringify the exception.
-
-2010-01-07  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Jon Honeycutt.
-
-        Don't leak a JSStringRef within _accessibilityNotificationCallback.
-
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (_accessibilityNotificationCallback): Have a JSRetainPtr adopt the JSStringRef so that it will be cleaned up
-        when it goes out of scope.
-
-2010-01-07  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Add proposed rename of HTMLPlugInImageElement to HTMLEmbeddedObjectElement.
-
-        * Scripts/do-webcore-rename:
-
-2010-01-07  Kim Grönholm  <kim.gronholm@nomovok.com>
-
-        Reviewed by Antti Koivisto.
-
-        Wrong state and TouchLists in TouchEvents
-        https://bugs.webkit.org/show_bug.cgi?id=32878
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::touchStart):
-        (EventSender::touchEnd):
-        (EventSender::clearTouchPoints):
-        * DumpRenderTree/qt/EventSenderQt.h:
-
-2010-01-07  Chris Jerdonek  <chris.jerdonek@gmail.com>
-
-        Reviewed by Adam Barth.
-
-        Created a module that runs the style package unit tests.
-
-        https://bugs.webkit.org/show_bug.cgi?id=32973
-
-        * Scripts/test-webkitpy:
-        * Scripts/webkitpy/style/unittests.py: Added.
-
-2010-01-07  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Maciej Stachowiak.
-
-        Don't print a redundant message when confirming a diff
-        https://bugs.webkit.org/show_bug.cgi?id=33315
-
-        Instead of saying "ERROR: User declined" we should just exit because
-        the use knows they just declined!
-
-        * Scripts/webkitpy/steps/confirmdiff.py:
-
-2010-01-07  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Maciej Stachowiak.
-
-        Check style before uploading a patch
-        https://bugs.webkit.org/show_bug.cgi?id=33314
-
-        * Scripts/webkitpy/commands/upload.py:
-        * Scripts/webkitpy/steps/checkstyle.py:
-        * Scripts/webkitpy/steps/options.py:
-
-2010-01-07  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Maciej Stachowiak.
-
-        Add prepare and post to webkit-patch main help
-        https://bugs.webkit.org/show_bug.cgi?id=33313
-
-        * Scripts/webkitpy/commands/upload.py:
-
-2010-01-07  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add Chromium bots to the list of "core builders" (builders which stop the commit-queue when they turn red)
-        https://bugs.webkit.org/show_bug.cgi?id=33290
-
-        Add the Chromium builders to our list of core builders and test that our regexps work.
-        I also updated our regexp testing to make sure we cover all known builders at build.webkit.org.
-
-        * Scripts/webkitpy/buildbot.py:
-        * Scripts/webkitpy/buildbot_unittest.py:
-
-2010-01-07  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        bugzilla-tool needs a new name
-        https://bugs.webkit.org/show_bug.cgi?id=28459
-
-        Rename bugzilla-tool to webkit-patch.  Also, rename some commands to
-        make more sense with the new name.
-
-        * Scripts/bugzilla-tool: Removed.
-        * Scripts/webkit-patch: Added.
-        * Scripts/webkit-tools-completion.sh:
-        * Scripts/webkitpy/bugzilla_unittest.py:
-        * Scripts/webkitpy/commands/download.py:
-        * Scripts/webkitpy/commands/download_unittest.py:
-        * Scripts/webkitpy/commands/early_warning_system.py:
-        * Scripts/webkitpy/commands/queries.py:
-        * Scripts/webkitpy/commands/queues.py:
-        * Scripts/webkitpy/commands/queues_unittest.py:
-        * Scripts/webkitpy/commands/upload.py:
-        * Scripts/webkitpy/commands/upload_unittest.py:
-        * Scripts/webkitpy/queueengine.py:
-        * Scripts/webkitpy/steps/completerollout.py:
-
-2010-01-07  Chris Jerdonek  <chris.jerdonek@gmail.com>
-
-        Reviewed by Eric Seidel.
-
-        Moved style-related modules to webkitpy.style sub-package.
-
-        https://bugs.webkit.org/show_bug.cgi?id=32971
-
-        * Scripts/check-webkit-style:
-          - Updated import statement.
-
-        * Scripts/test-webkitpy:
-          - Updated import statements.
-
-        * Scripts/webkitpy/cpp_style.py: Removed.
-          - Moved to webkitpy/style.
-
-        * Scripts/webkitpy/cpp_style_unittest.py: Removed.
-          - Moved to webkitpy/style.
-
-        * Scripts/webkitpy/style.py: Removed.
-          - Moved to webkitpy/style/checker.py.
-
-        * Scripts/webkitpy/style/__init__.py: Added.
-          - Added containing webkitpy directory to package search path.
-
-        * Scripts/webkitpy/style/checker.py: Copied from Scripts/webkitpy/style.py.
-        * Scripts/webkitpy/style/checker_unittest.py: Copied from Scripts/webkitpy/style_unittest.py.
-          - Updated import statement.
-
-        * Scripts/webkitpy/style/cpp_style.py: Copied from Scripts/webkitpy/cpp_style.py.
-        * Scripts/webkitpy/style/cpp_style_unittest.py: Copied from Scripts/webkitpy/cpp_style_unittest.py.
-          - Update import statement.
-
-        * Scripts/webkitpy/style/text_style.py: Copied from Scripts/webkitpy/text_style.py.
-        * Scripts/webkitpy/style/text_style_unittest.py: Copied from Scripts/webkitpy/text_style_unittest.py.
-        * Scripts/webkitpy/style_unittest.py: Removed.
-          - Moved to webkitpy/style/checker_unittest.py.
-
-        * Scripts/webkitpy/text_style.py: Removed.
-          - Moved to webkitpy/style.
-
-        * Scripts/webkitpy/text_style_unittest.py: Removed.
-          - Moved to webkitpy/style.
-
-2010-01-06  Kinuko Yasuda  <kinuko@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        [Qt] Support the 3rd argument of EventSender.keyDown that
-        has been recently added to report keyLocation
-        (see also: https://bugs.webkit.org/show_bug.cgi?id=28247).
-        https://bugs.webkit.org/show_bug.cgi?id=33250
-
-        Test: fast/events/keydown-numpad-keys.html
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::keyDown):
-        * DumpRenderTree/qt/EventSenderQt.h:
-
-2010-01-06  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add long_help for all common commands.
-        https://bugs.webkit.org/show_bug.cgi?id=33261
-
-        For now these long_helps are pretty basic.
-        These were all written to just explain the steps
-        that each command runs.  This style long_help could
-        be made easier by using:
-        https://bugs.webkit.org/show_bug.cgi?id=33257
-
-        * Scripts/webkitpy/commands/download.py:
-        * Scripts/webkitpy/commands/queries.py:
-
-2010-01-06  Diego Gonzalez  <diego.gonzalez@openbossa.org>
-
-        Reviewed by Kenneth Christiansen.
-
-        [Qt] Add page zooming support to Qt DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=32898
-
-        Patch by Kim Grönholm  <kim.gronholm@nomovok.com>,
-                 Diego Gonzalez <diego.gonzalez@openbossa.org> and
-                 Afonso Costa <afonso.costa@openbossa.org>
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::zoomPageIn):
-        (EventSender::zoomPageOut):
-        * DumpRenderTree/qt/EventSenderQt.h:
-
-2010-01-06  Eric Seidel  <eric@webkit.org>
-
-        No review, just adding Mike Belshe's new bugzilla email at his request.
-
-        * Scripts/webkitpy/committers.py:
-
-2010-01-06  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Rolling out r52869 and r52853 due to bot
-        and local run-webkit-test failures
-
-        REGRESSION(52854?) fast/workers/shared-worker-constructor.html failed on Leopard Build Bot
-        https://bugs.webkit.org/show_bug.cgi?id=33256
-
-        The original bug was https://bugs.webkit.org/show_bug.cgi?id=33153
-
-        * Scripts/run-webkit-tests:
-
-2010-01-06  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed "build" fix.  Just adding missing include.
-
-        bugzilla-tool rollout --complete-rollout should make a nicer bug comment
-        https://bugs.webkit.org/show_bug.cgi?id=29212
-
-        * Scripts/webkitpy/steps/completerollout.py:
-
-2010-01-06  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool rollout --complete-rollout should make a nicer bug comment
-        https://bugs.webkit.org/show_bug.cgi?id=29212
-
-        * Scripts/webkitpy/bugzilla.py:
-         - Make reopen_bug robust against the bug already being open.
-        * Scripts/webkitpy/commands/download.py:
-         - Remove dead code from Rollout.
-        * Scripts/webkitpy/steps/completerollout.py:
-         - Improve the rollout comment.
-
-2010-01-06  Andras Becsi  <abecsi@inf.u-szeged.hu>
-
-        Reviewed by Darin Adler.
-
-        Set isHttpdOpen to 0 if pidfile does not exist for some reason.
-        Speculative fix for https://bugs.webkit.org/show_bug.cgi?id=33256.
-
-        * Scripts/run-webkit-tests:
-
-2010-01-06  Andras Becsi  <abecsi@inf.u-szeged.hu>
-
-        Reviewed by Darin Adler.
-
-        Change hardcoded /tmp in run-webkit-tests to File::Spec->tmpdir(),
-        and remove the httpd's pidfile directory if httpd terminated.
-
-        * Scripts/run-webkit-tests:
-
-2010-01-05  Chris Jerdonek  <chris.jerdonek@gmail.com>
-
-        Reviewed by David Levin.
-
-        Refactored check-webkit-style's argument parser to not rely
-        on global state, and improved its error handling and unit
-        test coverage.
-
-        https://bugs.webkit.org/show_bug.cgi?id=32966
-
-        * Scripts/check-webkit-style:
-          - Adjusted to use new argument parser.
-
-        * Scripts/webkitpy/cpp_style.py:
-          - Changed _CppStyleState to accept an array of filter rules
-            instead of a comma-delimited string.
-          - Eliminated cpp_style._DEFAULT_FILTER_RULES.
-          - Eliminated cpp_style._USAGE.
-
-        * Scripts/webkitpy/cpp_style_unittest.py:
-          - Updated test_filter() and test_default_filter().
-
-        * Scripts/webkitpy/style.py:
-          - Converted style._USAGE to create_usage().
-          - Corrected usage instructions by removing 0 as a valid
-            --verbose flag value.
-          - Removed use_webkit_styles().
-          - Added ProcessorOptions class.
-          - Added ArgumentDefaults class.
-          - Added ArgumentPrinter class.
-          - Removed parse_arguments and added ArgumentParser class.
-          - Moved exit_with_usage() and exit_with_categories() into
-            ArgumentParser.
-          - Refactored parse_arguments() as ArgumentParser.parse().
-          - Improved parser error handling.
-
-        * Scripts/webkitpy/style_unittest.py:
-          - Added DefaultArgumentsTest class.
-          - Addressed FIXME to check style.WEBKIT_FILTER_RULES
-            against style.STYLE_CATEGORIES.
-          - Added ArgumentPrinterTest class.
-          - Added ArgumentParserTest class and rewrote parser unit tests.
-
-2010-01-05  Adam Roben  <aroben@apple.com>
-
-        Test that it's safe to call IWebView::close when
-        IWebView::initWithFrame hasn't been called
-
-        Part of <http://webkit.org/b/32827> Crash when calling
-        IWebView::close, then releasing the WebView, without calling
-        DestroyWindow
-
-        Reviewed by Steve Falkenburg.
-
-        * WebKitAPITest/tests/WebViewDestruction.cpp:
-        (WebKitAPITest::CloseWithoutInitWithFrame): Calls IWebView::close
-        without ever calling IWebView::initWithFrame and tests that we don't
-        crash or leak.
-
-2010-01-05  Adam Roben  <aroben@apple.com>
-
-        Add more WebViewDestruction tests
-
-        Fixes <http://webkit.org/b/33216>.
-
-        Reviewed by Eric Seidel.
-
-        * WebKitAPITest/tests/WebViewDestruction.cpp:
-        (WebKitAPITest::NoInitWithFrame):
-        (WebKitAPITest::CloseThenDestroyViewWindow):
-        (WebKitAPITest::DestroyViewWindowThenClose):
-        (WebKitAPITest::DestroyHostWindow):
-        (WebKitAPITest::DestroyHostWindowThenClose):
-        (WebKitAPITest::CloseThenDestroyHostWindow):
-        Added these tests that exercise tearing down a WebView in various
-        ways, all of which we eventually want to have work. Some of them
-        currently crash or leak.
-
-2010-01-05  Robert Hogan  <robert@roberthogan.net>
-
-        Reviewed by Eric Seidel.
-
-        [Qt] fix DRT link failures on --no-svg builds when only making changes to DRT
-        
-        If you're working from a --minimal or --no-svg build and make changes to the
-        DRT, then recompile, the build will fail.
-        
-        This is because the current behavior at build time is to assume that the
-        previous Qt build supported SVG and consequently delete libQtWebKit.so.
-        Unfortunately, just deleting libQtWebKit.so will not cause the library to
-        re-link. Instead the build will see libQtWebKit.so.4 and co., pass over the
-        linking phase, and attempt to link the DRT with libQtWebKit.so absent. This
-        results in a link failure on the DRT.
-        
-        Since re-linking libQtWebKit can take up to ten minutes and should be avoided
-        in cases where not actually required, remove the assumption that
-        the previous Qt build supported SVG, and amend the symbol detection to look for
-        a symbol name that is not present in SVG builds. Currently webkitdirs.pm looks
-        for 'SVGElement' but even non-SVG builds contain the symbol 'isSVGElement'.
-        
-        https://bugs.webkit.org/show_bug.cgi?id=32992
-
-        * Scripts/webkitdirs.pm:
-
-2010-01-05  Chris Jerdonek  <chris.jerdonek@gmail.com>
-
-        Reviewed by David Kilzer.
-
-        Switched to generating list of Perl unit test files dynamically,
-        instead of explicitly.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33200
-
-        * Scripts/test-webkitperl:
-
-2010-01-05  Yael Aharon  <yael.aharon@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Reimplement EventSender::leapForward
-        https://bugs.webkit.org/show_bug.cgi?id=33114
-
-        Follow Windows implementation of leapForward. When leapForward is called, 
-        messages are queued and posted after the timeout. A new event loop is created to
-        handle those messages and the additional messages that are created as a result.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::EventSender):
-        (EventSender::mouseDown):
-        (EventSender::mouseUp):
-        (EventSender::mouseMoveTo):
-        (EventSender::leapForward):
-        (EventSender::sendOrQueueEvent):
-        (EventSender::replaySavedEvents):
-        (EventSender::eventFilter):
-        * DumpRenderTree/qt/EventSenderQt.h:
-
-2010-01-05  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Fix obscure queue crash in queueengine
-        https://bugs.webkit.org/show_bug.cgi?id=33196
-
-        Sometimes we get an exception that can't be stringified.  For example:
-
-        AttributeError: 'ParseError' object has no attribute 'msg'
-
-        In these cases, the whole queue dies because we're in the global
-        exception handler.  Instead of dieing here, we should just print a less
-        informative message to the console.  We're already printing the whole
-        backtrace anyway, so there's not much point to stringifying the
-        exception anyway.
-
-        * Scripts/webkitpy/queueengine.py:
-
-2010-01-05  Dominic Mazzoni  <dmazzoni@google.com>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=32571
-
-        For an object with an aria role of "checkbox" or "radiobutton",
-        use the "aria-checked" attribute to determine if it's checked.
-        These changes add an isChecked() method to AccessibilityUIElement
-        so that we can check for this property from a layout test.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (getIsCheckedCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::isChecked):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::isChecked):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::isChecked):
-
-2010-01-05  David Levin  <levin@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        Having a comment for the #endif for a header guard is not required WebKit style.
-        https://bugs.webkit.org/show_bug.cgi?id=33214
-
-        * Scripts/webkitpy/cpp_style.py: removed the check and made the loop exit
-          early when it has all the needed information to continue.
-        * Scripts/webkitpy/cpp_style_unittest.py: removed the corresponding tests.
-
-2010-01-05  Adam Roben  <aroben@apple.com>
-
-        Share more code in the WebViewDestruction tests
-
-        Part of <http://webkit.org/b/33212> Small fixes/improvements to
-        WebKitAPITest
-
-        Reviewed by Sam Weinig.
-
-        * WebKitAPITest/tests/WebViewDestruction.cpp:
-        (WebKitAPITest::createAndInitializeWebView): Renamed from
-        createWebView. Now initializes the HostWindow and returns the
-        WebView's HWND via an out-parameter.
-        (WebKitAPITest::finishWebViewDestructionTest): Added. Code came from
-        the CloseWithoutDestroyWindow test.
-        (WebKitAPITest::CloseWithoutDestroyViewWindow): Renamed from
-        CloseWithoutDestroyWindow and changed to use the new functions.
-        (WebKitAPITest::MainFrameAfterClose): Changed to use the new
-        functions.
-        (WebKitAPITest::NoCloseOrDestroyViewWindow): Renamed from
-        NoCloseOrDestroyWindow and changed to use the new functions.
-
-2010-01-05  Adam Roben  <aroben@apple.com>
-
-        Don't show HostWindows by default
-
-        This was making WebKitAPITest very flashy as windows appeared and
-        disappeared.
-
-        Part of <http://webkit.org/b/33212> Small fixes/improvements to
-        WebKitAPITest
-
-        Reviewed by Sam Weinig.
-
-        * WebKitAPITest/HostWindow.cpp:
-        (WebKitAPITest::HostWindow::initialize): Removed the WS_VISIBLE style
-        from the window.
-
-2010-01-05  Adam Roben  <aroben@apple.com>
-
-        Don't hang in WebKitAPITest if no messages have been posted
-
-        Part of <http://webkit.org/b/33212> Small fixes/improvements to
-        WebKitAPITest
-
-        Reviewed by Sam Weinig.
-
-        * WebKitAPITest/tests/WebViewDestruction.cpp:
-        (WebKitAPITest::runMessagePump): Use PeekMessage instead of GetMessage
-        to avoid hanging if no messages have been posted.
-
-2010-01-05  Adam Roben  <aroben@apple.com>
-
-        Fix WebKitCreateInstance helper
-
-        Part of <http://webkit.org/b/33212> Small fixes/improvements to
-        WebKitAPITest
-
-        Reviewed by Sam Weinig.
-
-        * WebKitAPITest/tests/WebViewDestruction.cpp:
-        (WebKitAPITest::WebKitCreateInstance): Pass the pointer straight
-        through, instead of taking its address.
-
-2010-01-04  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Darin Fisher.
-
-        Reorganize, document and rename OS() platform macros.
-        https://bugs.webkit.org/show_bug.cgi?id=33198
-
-        Adapt to name changes.
-        
-        * DumpRenderTree/DumpRenderTree.h:
-        * DumpRenderTree/config.h:
-
-2010-01-05  Chris Jerdonek  <chris.jerdonek@gmail.com>
-
-        Reviewed by Eric Seidel.
-
-        Minor improvements to test-webkit-scripts, as suggested
-        by an earlier review.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33125
-
-        * Scripts/test-webkit-scripts:
-          - Used OptionParser class instead of getopt.getopt().
-          - Created main() method for __main__ block.
-          - Enclosed functions in a class.
-
-2010-01-05  Chris Fleizach  <cfleizach@apple.com>
-
-        No review. Fix DRT breakage on Tiger/Leopard.
-
-        Add ARIA "Live Region" support
-        https://bugs.webkit.org/show_bug.cgi?id=33117
-
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-
-2010-01-04  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Add ARIA "Live Region" support
-        https://bugs.webkit.org/show_bug.cgi?id=33117
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (indexOfChildCallback):
-        (boolAttributeValueCallback):
-        (stringAttributeValueCallback):
-        (addNotificationListenerCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::indexOfChild):
-        (AccessibilityUIElement::stringAttributeValue):
-        (AccessibilityUIElement::boolAttributeValue):
-        (AccessibilityUIElement::addNotificationListener):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::indexOfChild):
-        (AccessibilityUIElement::stringAttributeValue):
-        (AccessibilityUIElement::boolAttributeValue):
-        (_accessibilityNotificationCallback):
-        (AccessibilityUIElement::addNotificationListener):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::indexOfChild):
-        (AccessibilityUIElement::stringAttributeValue):
-        (AccessibilityUIElement::boolAttributeValue):
-        (AccessibilityUIElement::addNotificationListener):
-
-2010-01-04  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool rollout should require a reason
-        https://bugs.webkit.org/show_bug.cgi?id=30810
-
-        * Scripts/webkitpy/changelogs.py: Add support for a reason, add auto-wrapping logic.
-        * Scripts/webkitpy/changelogs_unittest.py: Test reason support.
-        * Scripts/webkitpy/commands/download.py: rollout now requires a reason, remove unused BUGID argument
-        * Scripts/webkitpy/commands/download_unittest.py: pass required reason
-        * Scripts/webkitpy/steps/preparechangelogforrevert.py: pass reason to update_for_revert
-
-2010-01-04  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        MSAA: <select> elements should broadcast value change events
-
-        https://bugs.webkit.org/show_bug.cgi?id=33088
-
-        <rdar://problem/7332364>
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/AccessibilityController.cpp:
-        (logValueChangeEventsCallback):
-        Start logging value change events.
-        (AccessibilityController::getJSClass):
-        Add a "logValueChangeEvents" to the AccessibilityController's JS class
-        definition.
-        (AccessibilityController::resetToConsistentState):
-        Disable logging of value change events.
-
-        * DumpRenderTree/AccessibilityController.h:
-        Declare setLogValueChangeEvents(), and add a member variable for the
-        value change event hook.
-
-        * DumpRenderTree/gtk/AccessibilityControllerGtk.cpp:
-        (AccessibilityController::setLogValueChangeEvents):
-        Stubbed.
-
-        * DumpRenderTree/mac/AccessibilityControllerMac.mm:
-        (AccessibilityController::setLogValueChangeEvents):
-        Stubbed.
-
-        * DumpRenderTree/win/AccessibilityControllerWin.cpp:
-        (AccessibilityController::AccessibilityController):
-        Initialize new member var.
-        (AccessibilityController::~AccessibilityController):
-        Disable logging of value change events.
-        (logEventProc):
-        When we receive an EVENT_OBJECT_VALUECHANGE, log the name of the object
-        and its value.
-        (AccessibilityController::setLogValueChangeEvents):
-        If disabling logging, unhook the event, and clear the event hook
-        member var. Otherwise, query for the root element to enable
-        accessibility, and hook EVENT_OBJECT_VALUECHANGE.
-
-2010-01-04  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        long_help for submit-patch
-        https://bugs.webkit.org/show_bug.cgi?id=33184
-
-        * Scripts/webkitpy/commands/upload.py:
-
-2010-01-04  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        commit-queue can wrongly reject patches if the buildbots are behind
-        https://bugs.webkit.org/show_bug.cgi?id=30098
-
-        Check to make sure we can currently build and test before trying to
-        land a patch.
-
-        * Scripts/webkitpy/commands/queues.py:
-
-2010-01-04  Adam Roben  <aroben@apple.com>
-
-        Add a test harness for the Windows WebKit API, and a few tests
-
-        We currently only have tests for a handful of bugs regarding WebView
-        destruction, but more tests can easily be added later. Eventually
-        we'll run these tests as part of run-webkit-tests.
-
-        Fixes <http://webkit.org/b/33167>.
-
-        Reviewed by Sam Weinig.
-
-        * WebKitAPITest/HostWindow.cpp: Added.
-        (WebKitAPITest::HostWindow::HostWindow): Initialize m_window.
-        (WebKitAPITest::HostWindow::~HostWindow): Destroy our window if
-        needed.
-        (WebKitAPITest::HostWindow::initialize): Create our window.
-        (WebKitAPITest::HostWindow::clientRect): Return our window's client
-        rect.
-        (WebKitAPITest::HostWindow::registerWindowClass): Does what it says.
-        (WebKitAPITest::HostWindow::wndProc): Just call through to
-        DefWindowProcW.
-
-        * WebKitAPITest/HostWindow.h: Added.
-        (WebKitAPITest::HostWindow::window): Simple getter.
-
-        * WebKitAPITest/Test.h: Added. This file defines some macros useful
-        for writing tests.
-
-        * WebKitAPITest/TestsController.cpp: Added.
-        (WebKitAPITest::TestsController::TestsController): Initialize our
-        members.
-        (WebKitAPITest::TestsController::shared): Return the shared instance.
-        (WebKitAPITest::TestsController::runAllTests): Run a message pump
-        until a WM_QUIT message is received, then return whether all tests
-        succeeded.
-        (WebKitAPITest::TestsController::addTest): Add the test to m_tests and
-        start running tests soon.
-        (WebKitAPITest::TestsController::testFailed): Record the failure and
-        print a message about it to stdout.
-        (WebKitAPITest::TestsController::runNextTest): If we don't have any
-        tests to run, post a WM_QUIT message to stop the message pump.
-        Otherwise, run the test and print whether it passed, then schedule the
-        next test.
-        (WebKitAPITest::TestsController::runNextTestSoon): Set a 0-delay timer
-        to run the next test.
-        (WebKitAPITest::TestsController::registerWindowClass): Does what it
-        says.
-        (WebKitAPITest::TestsController::wndProc): If the runNextTestTimer
-        fired, call runNextTest(). Pass everything else through to
-        DefWindowProcW.
-
-        * WebKitAPITest/TestsController.h: Added.
-
-        * WebKitAPITest/WebKitAPITest.vcproj: Added.
-
-        * WebKitAPITest/WebKitAPITestCommon.vsprops: Added.
-
-        * WebKitAPITest/main.cpp: Added.
-        (main): (Mostly) just calls TestsController::runAllTests.
-
-        * WebKitAPITest/tests/WebViewDestruction.cpp: Added.
-        (WebKitAPITest::WebKitCreateInstance): Helper function template to
-        call through to the real WebKitCreateInstance.
-        (WebKitAPITest::webViewCount): Helper function to call through to
-        IWebKitStatistics::webViewCount.
-        (WebKitAPITest::createWebView): Helper function to create a WebView
-        and put it inside a HostWindow.
-        (WebKitAPITest::runMessagePump): Helper function to run a message pump
-        for a specified number of milliseconds, or until a WM_QUIT message is
-        received.
-        (WebKitAPITest::CloseWithoutDestroyWindow): Test for
-        <http://webkit.org/b/32827>.
-        (WebKitAPITest::MainFrameAfterClose): Test for
-        <http://webkit.org/b/32868>.
-        (WebKitAPITest::NoCloseOrDestroyWindow): Test for
-        <http://webkit.org/b/33162>.
-
-2010-01-04  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by David Kilzer.
-
-        Add support for Git's "diff.mnemonicprefix" config option to WebKitTools
-
-        https://bugs.webkit.org/show_bug.cgi?id=32820
-
-        * Scripts/VCSUtils.pm:
-        * Scripts/svn-apply:
-        * Scripts/svn-unapply:
-        * Scripts/test-webkitperl: Run gitdiff2svndiff test
-        * Scripts/webkitperl/VCSUtils_unittest/gitdiff2svndiff.pl: Added.
-        * Scripts/webkitpy/diff_parser.py:
-        * Scripts/webkitpy/diff_parser_unittest.py:
-
-2010-01-04  Chris Jerdonek  <chris.jerdonek@gmail.com>
-
-        Reviewed by David Kilzer.
-
-        Divided the Perl unit tests into separate files and put
-        them in a separate directory, and renamed test-webkit-perl
-        to test-webkitperl.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33124
-
-        * Scripts/VCSUtils.pm:
-          - Renamed generateRunPatchCommand() to generatePatchCommand().
-
-        * Scripts/VCSUtils_unittest.pl: Removed.
-          - Divided into three files in Scripts/webkitperl/VCSUtils_unittest.
-
-        * Scripts/test-webkit-perl: Removed.
-          - Renamed to test-webkitperl.
-
-        * Scripts/test-webkit-scripts:
-          - Updated paths to test-webkitpy and test-webkitperl.
-
-        * Scripts/test-webkitperl: Copied from Scripts/test-webkit-perl.
-          - Added paths to new test files.
-
-        * Scripts/webkitperl: Added.
-        * Scripts/webkitperl/VCSUtils_unittest: Added.
-        * Scripts/webkitperl/VCSUtils_unittest/fixChangeLogPatch.pl: Added.
-        * Scripts/webkitperl/VCSUtils_unittest/generatePatchCommand.pl: Added.
-        * Scripts/webkitperl/VCSUtils_unittest/runPatchCommand.pl: Copied from Scripts/VCSUtils_unittest.pl.
-
-2010-01-04  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Make bugzilla-tool rollout include a bug link in the ChangeLog entry
-        https://bugs.webkit.org/show_bug.cgi?id=33146
-
-        One more step towards better rollouts.
-
-        * Scripts/webkitpy/changelogs.py:
-        * Scripts/webkitpy/changelogs_unittest.py:
-        * Scripts/webkitpy/steps/preparechangelogforrevert.py:
-
-2010-01-04  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Sort the step options
-        https://bugs.webkit.org/show_bug.cgi?id=33144
-
-        * Scripts/webkitpy/steps/options.py:
-
-2010-01-04  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Need support for longer text in per-command help
-        https://bugs.webkit.org/show_bug.cgi?id=33143
-
-        Add some minimal additional help to land-diff and
-        pave the way for adding better help to all commands.
-
-        * Scripts/webkitpy/commands/download.py: Add small amount of additional help to land-diff
-        * Scripts/webkitpy/multicommandtool.py: support long_help
-        * Scripts/webkitpy/multicommandtool_unittest.py: test long_help
-
-2010-01-04  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add unit test for MarkBugFixed
-        https://bugs.webkit.org/show_bug.cgi?id=33142
-
-        MarkBugFixed is way behind in command technology, but it still needs a
-        unit test, as the FIXME commands.
-
-        Also, remove mark-bug-fixed and create-bug from main help since we have
-        more modern commands to replace them.
-
-        * Scripts/webkitpy/commands/upload.py:
-        * Scripts/webkitpy/commands/upload_unittest.py:
-        * Scripts/webkitpy/mock_bugzillatool.py:
-
-2010-01-04  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add missing unit test for CommitMessageForCurrentDiff
-        https://bugs.webkit.org/show_bug.cgi?id=33141
-
-        * Scripts/webkitpy/commands/upload.py:
-        * Scripts/webkitpy/commands/upload_unittest.py:
-
-2010-01-04  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Remove raw_input from queues in favor of user.prompt
-        https://bugs.webkit.org/show_bug.cgi?id=33140
-
-        This lets up properly mock out the user interaction instead of hacking
-        around it with the options.
-
-        * Scripts/webkitpy/commands/queues.py:
-        * Scripts/webkitpy/commands/queuestest.py:
-
-2010-01-04  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool should not require users to install mechanize
-        https://bugs.webkit.org/show_bug.cgi?id=32635
-
-        * Scripts/webkitpy/__init__.py: Add missing declaration for ClientForm (which mechanize requires).
-
-2010-01-04  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool should not require users to install mechanize
-        https://bugs.webkit.org/show_bug.cgi?id=32635
-
-        Use the nifty "autoinstall" module from Daniel Krech:
-        http://pypi.python.org/pypi/autoinstall/0.2
-        http://code.google.com/p/pyautoinstall/
-        It's available under a WebKit-compatible BSD license.
-
-        * Scripts/webkitpy/__init__.py:
-         - bind "mechanize" to an autoinstall importer which will
-           auto-download mechanize if necessary.
-        * Scripts/webkitpy/autoinstall.py: Added.
-        * Scripts/webkitpy/bugzilla.py: use "mechanize" instead of webkit_mechanize
-        * Scripts/webkitpy/statusbot.py: ditto.
-        * Scripts/webkitpy/webkit_mechanize.py: Removed.
-
-2010-01-04  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Move AbstractSequencedCommand to a more general location
-        https://bugs.webkit.org/show_bug.cgi?id=33137
-
-        I do what the FIXME tell me to do.
-
-        * Scripts/webkitpy/commands/abstractsequencedcommand.py: Added.
-        * Scripts/webkitpy/commands/download.py:
-        * Scripts/webkitpy/commands/upload.py:
-
-2010-01-04  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Rename StatusBot to StatusServer
-        https://bugs.webkit.org/show_bug.cgi?id=33139
-
-        It's not a bot.  It's a server.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/webkitpy/bugzilla.py:
-        * Scripts/webkitpy/commands/early_warning_system.py:
-        * Scripts/webkitpy/commands/queues.py:
-        * Scripts/webkitpy/mock_bugzillatool.py:
-        * Scripts/webkitpy/queueengine.py:
-        * Scripts/webkitpy/statusbot.py: Removed.
-
-2010-01-04  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] submit-pach should have a -o/--open option to open the bug after submit
-        https://bugs.webkit.org/show_bug.cgi?id=33136
-
-        Python makes this very easy.
-
-        * Scripts/webkitpy/mock_bugzillatool.py:
-        * Scripts/webkitpy/steps/options.py:
-        * Scripts/webkitpy/steps/postdiff.py:
-        * Scripts/webkitpy/user.py:
-
-2010-01-04  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Move steps to a submodule
-        https://bugs.webkit.org/show_bug.cgi?id=33135
-
-        For great victory.  This will probably introduce some regressions
-        because our test coverage isn't perfect, but I've tried to be careful.
-
-        * Scripts/test-webkitpy:
-        * Scripts/webkitpy/buildsteps.py: Removed.
-        * Scripts/webkitpy/buildsteps_unittest.py: Removed.
-        * Scripts/webkitpy/commands/download.py:
-        * Scripts/webkitpy/commands/upload.py:
-        * Scripts/webkitpy/steps/__init__.py: Added.
-        * Scripts/webkitpy/steps/abstractstep.py: Added.
-        * Scripts/webkitpy/steps/applypatch.py: Added.
-        * Scripts/webkitpy/steps/applypatchwithlocalcommit.py: Added.
-        * Scripts/webkitpy/steps/build.py: Added.
-        * Scripts/webkitpy/steps/checkstyle.py: Added.
-        * Scripts/webkitpy/steps/cleanworkingdirectory.py: Added.
-        * Scripts/webkitpy/steps/cleanworkingdirectorywithlocalcommits.py: Added.
-        * Scripts/webkitpy/steps/closebug.py: Added.
-        * Scripts/webkitpy/steps/closebugforlanddiff.py: Added.
-        * Scripts/webkitpy/steps/closepatch.py: Added.
-        * Scripts/webkitpy/steps/commit.py: Added.
-        * Scripts/webkitpy/steps/completerollout.py: Added.
-        * Scripts/webkitpy/steps/confirmdiff.py: Added.
-        * Scripts/webkitpy/steps/createbug.py: Added.
-        * Scripts/webkitpy/steps/editchangelog.py: Added.
-        * Scripts/webkitpy/steps/ensurebuildersaregreen.py: Added.
-        * Scripts/webkitpy/steps/ensurelocalcommitifneeded.py: Added.
-        * Scripts/webkitpy/steps/metastep.py: Added.
-        * Scripts/webkitpy/steps/obsoletepatches.py: Added.
-        * Scripts/webkitpy/steps/options.py: Added.
-        * Scripts/webkitpy/steps/postdiff.py: Added.
-        * Scripts/webkitpy/steps/preparechangelog.py: Added.
-        * Scripts/webkitpy/steps/preparechangelogforrevert.py: Added.
-        * Scripts/webkitpy/steps/promptforbugortitle.py: Added.
-        * Scripts/webkitpy/steps/revertrevision.py: Added.
-        * Scripts/webkitpy/steps/runtests.py: Added.
-        * Scripts/webkitpy/steps/steps_unittest.py: Added.
-        * Scripts/webkitpy/steps/update.py: Added.
-        * Scripts/webkitpy/steps/updatechangelogswithreview_unittests.py: Added.
-        * Scripts/webkitpy/steps/updatechangelogswithreviewer.py: Added.
-        * Scripts/webkitpy/stepsequence.py:
-
-2010-01-04  Daniel Bates  <dbates@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33097
-
-        Cleans up the File menu to better conform to the File menu in Safari
-        both in terms of options and keyboard shortcuts. Adds a "Quit" menu
-        options to close all open windows. Also, renames the Tools menu to
-        Develop.
-
-        * QtLauncher/main.cpp:
-        (MainWindow::setupUI):
-
-2010-01-04  Daniel Bates  <dbates@webkit.org>
-
-        https://bugs.webkit.org/show_bug.cgi?id=33039
-        
-        Unreviewed fix.
-
-        * Scripts/webkitpy/credentials.py:
-        * Scripts/webkitpy/credentials_unittest.py:
-
-2010-01-04  Daniel Bates  <dbates@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33039
-
-        [bzt] Second attempt to fix an issue where bugzilla-tool dies
-        when the keychain lookup fails to find an entry for bugs.webkit.org.
-
-        * Scripts/webkitpy/credentials.py:
-        * Scripts/webkitpy/credentials_unittest.py:
-
-2010-01-04  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Make Rollout an AbstractSequencedCommmand
-        https://bugs.webkit.org/show_bug.cgi?id=33133
-
-        As suggested by Adam in:
-        https://bugs.webkit.org/show_bug.cgi?id=33131#c2
-
-        * Scripts/webkitpy/commands/download.py:
-
-2010-01-04  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Make all commands AbstractDeclarativeCommmands instead of direct Command subclasses
-        https://bugs.webkit.org/show_bug.cgi?id=33131
-
-        Evenetually we'll probably roll AbstractDeclarativeCommmand directly into Command
-        but for now we just deploy it everywhere and don't try to fix up the few valid uses
-        of Command.
-
-        * Scripts/webkitpy/commands/download.py:
-        * Scripts/webkitpy/commands/queries.py:
-        * Scripts/webkitpy/commands/upload.py:
-        * Scripts/webkitpy/multicommandtool.py:
-
-2010-01-03  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed "build" fix.  Need to import ScriptError.
-
-        * Scripts/webkitpy/buildsteps.py:
-
-2010-01-03  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Make it easier to run submit-patch when previous run cancelled
-        https://bugs.webkit.org/show_bug.cgi?id=33070
-
-        This patch renames create-review to submit-patch (as requested by
-        Maciej).
-
-        This patch makes it easier to run submit-patch after the user has
-        already cancelled a previous run of submit-patch by detecting when we
-        already have ChangeLogs and reading the bug number from them (and not
-        attempting to recreate them).  Aside from performance and the extra
-        edit step, this command should not subsume post-dif.
-
-        Also, added a --email command line argument so that the output of
-        prepare-ChangeLog makes sense when it can't find the user's email
-        address.
-
-        * Scripts/webkitpy/bugzilla.py:
-        * Scripts/webkitpy/buildsteps.py:
-        * Scripts/webkitpy/commands/upload.py:
-        * Scripts/webkitpy/commands/upload_unittest.py:
-        * Scripts/webkitpy/mock_bugzillatool.py:
-        * Scripts/webkitpy/user.py:
-
-2010-01-03  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Rename Scripts/modules to Scripts/webkitpy
-        https://bugs.webkit.org/show_bug.cgi?id=33128
-
-        Just search-replace and svn mv commands.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/check-webkit-style:
-        * Scripts/modules: Removed.
-        * Scripts/modules/BeautifulSoup.py: Removed.
-        * Scripts/modules/__init__.py: Removed.
-        * Scripts/modules/bugzilla.py: Removed.
-        * Scripts/modules/bugzilla_unittest.py: Removed.
-        * Scripts/modules/buildbot.py: Removed.
-        * Scripts/modules/buildbot_unittest.py: Removed.
-        * Scripts/modules/buildsteps.py: Removed.
-        * Scripts/modules/buildsteps_unittest.py: Removed.
-        * Scripts/modules/changelogs.py: Removed.
-        * Scripts/modules/changelogs_unittest.py: Removed.
-        * Scripts/modules/commands: Removed.
-        * Scripts/modules/commands/__init__.py: Removed.
-        * Scripts/modules/commands/commandtest.py: Removed.
-        * Scripts/modules/commands/download.py: Removed.
-        * Scripts/modules/commands/download_unittest.py: Removed.
-        * Scripts/modules/commands/early_warning_system.py: Removed.
-        * Scripts/modules/commands/early_warning_system_unittest.py: Removed.
-        * Scripts/modules/commands/queries.py: Removed.
-        * Scripts/modules/commands/queries_unittest.py: Removed.
-        * Scripts/modules/commands/queues.py: Removed.
-        * Scripts/modules/commands/queues_unittest.py: Removed.
-        * Scripts/modules/commands/queuestest.py: Removed.
-        * Scripts/modules/commands/upload.py: Removed.
-        * Scripts/modules/commands/upload_unittest.py: Removed.
-        * Scripts/modules/comments.py: Removed.
-        * Scripts/modules/committers.py: Removed.
-        * Scripts/modules/committers_unittest.py: Removed.
-        * Scripts/modules/cpp_style.py: Removed.
-        * Scripts/modules/cpp_style_unittest.py: Removed.
-        * Scripts/modules/credentials.py: Removed.
-        * Scripts/modules/credentials_unittest.py: Removed.
-        * Scripts/modules/diff_parser.py: Removed.
-        * Scripts/modules/diff_parser_unittest.py: Removed.
-        * Scripts/modules/executive.py: Removed.
-        * Scripts/modules/executive_unittest.py: Removed.
-        * Scripts/modules/grammar.py: Removed.
-        * Scripts/modules/mock.py: Removed.
-        * Scripts/modules/mock_bugzillatool.py: Removed.
-        * Scripts/modules/multicommandtool.py: Removed.
-        * Scripts/modules/multicommandtool_unittest.py: Removed.
-        * Scripts/modules/outputcapture.py: Removed.
-        * Scripts/modules/patchcollection.py: Removed.
-        * Scripts/modules/queueengine.py: Removed.
-        * Scripts/modules/queueengine_unittest.py: Removed.
-        * Scripts/modules/scm.py: Removed.
-        * Scripts/modules/scm_unittest.py: Removed.
-        * Scripts/modules/statusbot.py: Removed.
-        * Scripts/modules/stepsequence.py: Removed.
-        * Scripts/modules/style: Removed.
-        * Scripts/modules/style.py: Removed.
-        * Scripts/modules/style_unittest.py: Removed.
-        * Scripts/modules/text_style.py: Removed.
-        * Scripts/modules/text_style_unittest.py: Removed.
-        * Scripts/modules/user.py: Removed.
-        * Scripts/modules/webkit_logging.py: Removed.
-        * Scripts/modules/webkit_logging_unittest.py: Removed.
-        * Scripts/modules/webkit_mechanize.py: Removed.
-        * Scripts/modules/webkitport.py: Removed.
-        * Scripts/modules/webkitport_unittest.py: Removed.
-        * Scripts/test-webkit-python: Removed.
-        * Scripts/test-webkitpy: Copied from WebKitTools/Scripts/test-webkit-python.
-        * Scripts/validate-committer-lists:
-        * Scripts/webkitpy: Copied from WebKitTools/Scripts/modules.
-        * Scripts/webkitpy/bugzilla.py:
-        * Scripts/webkitpy/bugzilla_unittest.py:
-        * Scripts/webkitpy/buildbot.py:
-        * Scripts/webkitpy/buildbot_unittest.py:
-        * Scripts/webkitpy/buildsteps.py:
-        * Scripts/webkitpy/buildsteps_unittest.py:
-        * Scripts/webkitpy/commands/commandtest.py:
-        * Scripts/webkitpy/commands/download.py:
-        * Scripts/webkitpy/commands/download_unittest.py:
-        * Scripts/webkitpy/commands/early_warning_system.py:
-        * Scripts/webkitpy/commands/early_warning_system_unittest.py:
-        * Scripts/webkitpy/commands/queries.py:
-        * Scripts/webkitpy/commands/queries_unittest.py:
-        * Scripts/webkitpy/commands/queues.py:
-        * Scripts/webkitpy/commands/queues_unittest.py:
-        * Scripts/webkitpy/commands/queuestest.py:
-        * Scripts/webkitpy/commands/upload.py:
-        * Scripts/webkitpy/commands/upload_unittest.py:
-        * Scripts/webkitpy/comments.py:
-        * Scripts/webkitpy/credentials.py:
-        * Scripts/webkitpy/credentials_unittest.py:
-        * Scripts/webkitpy/executive.py:
-        * Scripts/webkitpy/executive_unittest.py:
-        * Scripts/webkitpy/mock_bugzillatool.py:
-        * Scripts/webkitpy/multicommandtool.py:
-        * Scripts/webkitpy/multicommandtool_unittest.py:
-        * Scripts/webkitpy/queueengine.py:
-        * Scripts/webkitpy/queueengine_unittest.py:
-        * Scripts/webkitpy/scm.py:
-        * Scripts/webkitpy/scm_unittest.py:
-        * Scripts/webkitpy/statusbot.py:
-        * Scripts/webkitpy/stepsequence.py:
-        * Scripts/webkitpy/webkit_logging_unittest.py:
-        * Scripts/webkitpy/webkitport_unittest.py:
-
-2010-01-03  Chris Jerdonek  <chris.jerdonek@gmail.com>
-
-        Reviewed by Eric Seidel.
-
-        Added script to test both Perl and Python, and renamed
-        run-webkit-unittests to test-webkit-python.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33045
-
-        * Scripts/VCSUtils_unittest.pl:
-          - Tweaked so it can be run from outside Scripts directory.
-
-        * Scripts/run-webkit-unittests: Removed.
-          - Renamed to test-webkit-python.
-
-        * Scripts/test-webkit-perl:
-          - Tweaked so it can be run from outside Scripts directory.
-
-        * Scripts/test-webkit-python: Copied from Scripts/run-webkit-unittests.
-
-        * Scripts/test-webkit-scripts: Added.
-          - Runs both test-webkit-perl and test-webkit-python.
-
-2010-01-03  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        commit-queue/bugzilla-tool should build both Debug and Release
-        https://bugs.webkit.org/show_bug.cgi?id=28450
-
-        Add a --build-style command that lets the master process tell the child
-        process to build both debug and release.  Eventually we want to teach
-        the test step to understand this option too, but that's a patch for
-        another day.
-
-        * Scripts/modules/buildsteps.py:
-        * Scripts/modules/commands/queues.py:
-        * Scripts/modules/webkitport.py:
-        * Scripts/modules/webkitport_unittest.py:
-
-2010-01-03  Jakub Wieczorek  <faw217@gmail.com>
-
-        Reviewed by Eric Seidel.
-
-        [Qt] EventSender: add support for Enter key events
-        https://bugs.webkit.org/show_bug.cgi?id=33064
-
-        Unskip 5 tests that are fixed now.
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::keyDown):
-
-2010-01-03  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Add test for previous typo fix
-        https://bugs.webkit.org/show_bug.cgi?id=33083
-
-        A trivial test for a trivial fix, as requested by Eric.
-
-        * Scripts/modules/bugzilla_unittest.py:
-
-2010-01-03  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Implement mac-ews
-        https://bugs.webkit.org/show_bug.cgi?id=33072
-
-        The mac-ews is slightly different than the other early warning systems
-        because we can't run Mac OS X inside a VM.  For that reason, we only
-        process patches that were uploaded by committers.  This isn't as much
-        coverage as the other EWS bots, but it's better than nothing.
-
-        * Scripts/modules/commands/early_warning_system.py:
-        * Scripts/modules/commands/early_warning_system_unittest.py:
-        * Scripts/modules/commands/queues.py:
-        * Scripts/modules/commands/queuestest.py:
-        * Scripts/modules/mock_bugzillatool.py:
-
-2010-01-03  Chris Jerdonek  <chris.jerdonek@gmail.com>
-
-        Reviewed by David Kilzer.
-
-        Refactored svn-apply and svn-unapply to use a common "patch"
-        command method, and added unit tests for this new method.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33098
-
-        * Scripts/VCSUtils.pm:
-          - Added generateRunPatchCommand().
-          - Added runPatchCommand().
-          - Added exitStatus() from webkitdirs.pm to address FIXME.
-
-        * Scripts/VCSUtils_unittest.pl:
-          - Added 10 unit tests for generateRunPatchCommand().
-          - Added 4 unit tests for runPatchCommand().
-          - Added callSilently() method.
-
-        * Scripts/svn-apply:
-          - Refactored applyPatch().
-          - Removed $pathScriptWasRunFrom global variable.
-          - Addressed issue where "--force" option was getting added twice.
-
-        * Scripts/svn-unapply:
-          - Refactored applyPatch().
-          - Removed $pathScriptWasRunFrom global variable.
-          - Added support for --force option.
-          - Enhanced to return meaningful exit status.
-
-        * Scripts/webkitdirs.pm:
-          - Moved exitStatus() implementation to VCSUtils.pm.
-
-2009-12-31  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Implement build-and-test
-        https://bugs.webkit.org/show_bug.cgi?id=33073
-
-        Some of the early warning system bots want to use build-and-test so
-        they can cover LayoutTests in addition to just compilation.
-
-        * Scripts/modules/commands/download.py:
-        * Scripts/modules/commands/download_unittest.py:
-
-2009-12-31  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Show mac-ews status on QueueStatusServer
-        https://bugs.webkit.org/show_bug.cgi?id=33076
-
-        Also make error status purple.
-
-        * QueueStatusServer/model/attachment.py:
-        * QueueStatusServer/model/queues.py:
-        * QueueStatusServer/templates/dashboard.html:
-        * QueueStatusServer/templates/statusbubble.html:
-
-2009-12-31  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        [bzt] REGRESSION: Bugzila is a typo
-        https://bugs.webkit.org/show_bug.cgi?id=33074
-
-        Eric should test his code before landing!  :)
-
-        * Scripts/modules/bugzilla.py:
-
-2009-12-31  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Fix the unit tests!
-
-        * Scripts/run-webkit-unittests:
-
-2009-12-30  Kevin Watters  <kevinwatters@gmail.com>
-
-        Reviewed by Kevin Ollivier.
-
-        [wx] Alter a couple of default settings in the test app.
-        
-        https://bugs.webkit.org/show_bug.cgi?id=32956
-
-        * wx/browser/browser.cpp:
-        (MyApp::OnInit):
-
-2009-12-30  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        logging.py should be renamed to webkit_logging.py and eventually die
-        https://bugs.webkit.org/show_bug.cgi?id=33058
-
-        Change all imports of "logging" to webkit_logging,
-        except the ones which came from Google's cpp_lint.py and diff_parser.py
-        which clearly are assuming python's logging.py.
-
-        * Scripts/modules/bugzilla.py:
-        * Scripts/modules/buildbot.py:
-        * Scripts/modules/buildsteps.py:
-        * Scripts/modules/commands/download.py:
-        * Scripts/modules/commands/queries.py:
-        * Scripts/modules/commands/queues.py:
-        * Scripts/modules/commands/upload.py:
-        * Scripts/modules/credentials.py:
-        * Scripts/modules/executive.py:
-        * Scripts/modules/multicommandtool.py:
-        * Scripts/modules/queueengine.py:
-        * Scripts/modules/scm.py:
-        * Scripts/modules/statusbot.py:
-        * Scripts/modules/stepsequence.py:
-        * Scripts/modules/webkit_logging.py: Renamed from WebKitTools/Scripts/modules/logging.py.
-        * Scripts/modules/webkit_logging_unittest.py: Renamed from WebKitTools/Scripts/modules/logging_unittest.py.
-
-2009-12-30  Jakub Wieczorek  <faw217@gmail.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] layoutTestController.pathToLocalResource() should return a path, not an URL
-        https://bugs.webkit.org/show_bug.cgi?id=33051
-
-        Moreover, its primary function is to normalize the path in regard of platform
-        specific directory separators. Therefore, it can simply make use of the
-        QDir::toNativeSeparators function.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::pathToLocalResource):
-
-2009-12-30  David D. Kilzer  <ddkilzer@webkit.org>
-
-        Fix executable bits for r52646
-
-        * Scripts/VCSUtils_unittest.pl: Added property svn:executable.
-        * Scripts/test-webkit-perl: Ditto.
-
-2009-12-29  Chris Jerdonek  <chris.jerdonek@gmail.com>
-
-        Reviewed by David Kilzer.
-
-        Fixed a bug in fixChangeLogPatch, made it work correctly in
-        more circumstances, and added unit tests.
-
-        https://bugs.webkit.org/show_bug.cgi?id=32919
-
-        * Scripts/VCSUtils.pm:
-          Rewrote fixChangeLogPatch.
-          
-        * Scripts/VCSUtils_unittest.pl: Added.
-          Added 7 unit tests for fixChangeLogPatch.
-
-        * Scripts/test-webkit-perl: Added.
-          Added test harness for unit tests of Perl code.
-
-2009-12-29  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Split out BugzillaQueries class from Bugzilla
-        https://bugs.webkit.org/show_bug.cgi?id=33042
-
-        * Scripts/modules/bugzilla.py:
-         - Split out BugzillaQueries from Bugzilla.
-         - Try to isolate self.bugzilla usage into helper functions whenever possible.
-         - Add a bunch of FIXMEs.
-         - Rename fetch_bug_ids_from_needs_commit_list to fetch_bug_ids_from_pending_commit_list
-        * Scripts/modules/bugzilla_unittest.py:
-         - Create a new BugzillaQueriesTest testcase and move logic there.
-        * Scripts/modules/buildsteps_unittest.py:
-         - Use Bug 75 instead of 1 since bug 1 doesn't actually exist.
-        * Scripts/modules/commands/queries.py:
-         - Update to use bugzilla.queries
-        * Scripts/modules/commands/queues.py:
-         - Ditto.
-        * Scripts/modules/commands/upload.py:
-         - Ditto.
-        * Scripts/modules/mock_bugzillatool.py:
-         - Add a MockBugzillaQueries.
-         - Make patches and bugs global privates.
-         - Let _id_to_object_dictionary take a variable argument list instead of an array.
-
-2009-12-29  Daniel Bates  <dbates@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33041
-
-        Speed up the test method test_read_credentials_with_SVN by not actually
-        creating an SVN repository to test against (by default). Instead, it is
-        sufficient to create a temporary directory that does not contain a Git
-        repository.
-
-        Also, renamed method test_read_credentials_with_SVN to
-        test_read_credentials_without_git_repo, to better reflect what it is
-        testing.
-
-        * Scripts/modules/credentials_unittest.py:
-
-2009-12-29  Daniel Bates  <dbates@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33039
-
-        [bzt] Fixes an issue where bugzilla-tool dies when the keychain lookup
-        fails to find an entry for bugs.webkit.org.
-        
-        Under Mac OS X, bugzilla-tool tries to query the keychain and Security
-        framework (via /usr/sbin/security) for an internet-password entry for
-        bugs.webkit.org so that it can use it to login to bugs.webkit.org.
-        However, if no such entry exists then bugzilla-tool dies with an error.
-
-        * Scripts/modules/credentials.py: Modified method _parse_security_tool_output to return
-        [None, None] if /usr/sbin/security cannot find keychain entry for bugs.webkit.org.
-        * Scripts/modules/credentials_unittest.py: Added method test_security_output_parse_entry_not_found.
-
-2009-12-29  Eric Seidel  <eric@webkit.org>
-
-        Rubber-stamped by Adam Barth.
-
-        Remove unused BugzillaException.
-
-        * Scripts/modules/bugzilla.py:
-
-2009-12-29  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Need a script to assign bugs with r+ patches to committers for landing
-        https://bugs.webkit.org/show_bug.cgi?id=33009
-
-        This is just one more small tool to help in the fight against our
-        ever-growing list of to-be-committed patches.
-
-        * Scripts/modules/bugzilla.py:
-         - Rename assign_to_email to assigned_to_email (typo).
-         - Add assigned_to_email() method on Bug.
-         - Add reassign_bug method.
-         - Add Bugzilla.unassigned_email, eventually should move to some webkit_config.py module.
-        * Scripts/modules/bugzilla_unittest.py:
-         - Update test after assigned_to_email rename.
-        * Scripts/modules/commands/commandtest.py:
-         - Call bind_to_tool to that self.tool works in Command testing.
-        * Scripts/modules/commands/download.py:
-         - Move AbstractDeclarativeCommmand multicommandtool.py, it should be part of Command.
-        * Scripts/modules/commands/queries_unittest.py:
-         - One of the test patches is now posted by "eric@webkit.org" which is a committer.
-         - Eventually we'll mock out CommitterList and be able to better control what's a committer and what's not.
-        * Scripts/modules/commands/upload.py:
-         - Add new assign-to-committer command.
-        * Scripts/modules/commands/upload_unittest.py:
-         - Add basic assign-to-committer test.
-        * Scripts/modules/committers.py:
-         - Add bugzilla_email() accessor.
-        * Scripts/modules/committers_unittest.py:
-         - Test our assumption that bugzilla_email is the first email.
-        * Scripts/modules/mock_bugzillatool.py:
-         - Add _id_to_object_dictionary for generating bug_cache from list of bugs.
-         - Remove unused fetch_attachments_from_bug.
-         - Add fetch_bug support and a bug_cache.
-        * Scripts/modules/multicommandtool.py:
-         - Move AbstractDeclarativeCommmand here from download.py
-
-2009-12-29  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Don't crash if user types a number during PromptForBugOrTitleStep
-        https://bugs.webkit.org/show_bug.cgi?id=33038
-
-        Simple fix with test.
-
-        * Scripts/modules/buildsteps.py:
-        * Scripts/modules/buildsteps_unittest.py:
-
-2009-12-29  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] post-diff requires reading to the end
-        https://bugs.webkit.org/show_bug.cgi?id=33036
-
-        Catch the IOError caused by not reading to the end of the diff.  We
-        don't have a good way to test this currently.
-
-        * Scripts/modules/user.py:
-
-2009-12-29  Chang Shu  <Chang.Shu@nokia.com>
-
-        Reviewed by Adam Barth.
-
-        [Qt] Move logic that handles Qt headers before primary headers
-        so that Qt headers won't be treated as primary headers by mistake.
-        https://bugs.webkit.org/show_bug.cgi?id=32991
-
-        * Scripts/modules/cpp_style.py:
-        * Scripts/modules/cpp_style_unittest.py:
-
-2009-12-29  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add the start of a Bug object for bugzilla.py
-        https://bugs.webkit.org/show_bug.cgi?id=32995
-
-        This allowed us to get rid of some duplicated "is_obsolete" checks.
-
-        * Scripts/modules/bugzilla.py:
-         - Add a new Bug class, and move patches/unreviewed_patches filtering logic there.
-         - Add _fetch_bug_page for possible future mocking.
-           (I did not try to test fetch_*_from_bug now due to difficulties with our current validate_reviewer logic.)
-         - Rename fetch_bug to fetch_bug_dictionary and add a new fetch_bug which returns a Bug object.
-         - Use fetch_bug and attachments(), patches(), etc. instead of custom fetch_*_from_bug methods.
-         - Reduce code in fetch_patches_from_pending_commit_list and fetch_patches_from_review_queue
-           using list comprehensions. Use a sum(list, []) trick to flatten a list of lists into a single list.
-        * Scripts/modules/bugzilla_unittest.py:
-         - Remove an unneeded unicode string marker.
-        * Scripts/modules/buildsteps.py:
-         - define __all__ to include just the BuildSteps
-        * Scripts/modules/commands/download.py:
-         - import * now that we have an __all__ defined.
-        * Scripts/modules/commands/upload.py:
-         - Use fetch_bug_dictionary instead of fetch_bug.
-
-2009-12-29  Daniel Bates  <dbates@webkit.org>
-
-        Reviewed by Ariya Hidayat.
-
-        https://bugs.webkit.org/show_bug.cgi?id=32925
-
-        Adds an Open File dialog to make it convenient to open a file
-        to view in the browser.
-
-        Currently a person must either specify the path to a file as a
-        command-line argument or type a file URL. Instead, we should
-        have a file dialog to allow a person to open a file without
-        memorizing its path.
-
-        * QtLauncher/main.cpp:
-        (MainWindow::MainWindow): Changed urlEdit->setText(qurl.toEncoded())
-        to urlEdit->setText(qurl.toString()). 
-        (MainWindow::openFile): Added.
-        (MainWindow::changeLocation): Moved code to load URL into method
-        MainWindow::loadURL.
-        (MainWindow::loadURL): Added.
-        (MainWindow::setupUI): Added menu item Open File.
-
-2009-12-29  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
-
-        Reviewed by Holger Freyther.
-
-        [GTK] fails fast/harness/use-page-cache.html
-        https://bugs.webkit.org/show_bug.cgi?id=33013
-
-        Make sure settings are forwarded to child WebViews.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (createWebView):
-
-2009-12-29  Daniel Bates  <dbates@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        https://bugs.webkit.org/show_bug.cgi?id=32778
-
-        Changes $diffPercentage to be a number to resolve Perl
-        warning about comparing a string to a number.
-
-        * Scripts/run-webkit-tests:
-
-2009-12-29  Jakub Wieczorek  <faw217@gmail.com>
-
-        Reviewed by Eric Seidel.
-
-        [Qt] DRT: Frame loader callbacks differ from the Mac port
-        https://bugs.webkit.org/show_bug.cgi?id=32989
-
-        Remove messages from the callbacks that should not dump them to match
-        the expected results for the http/loading tests.
-
-        Unskip some http/loading tests which succeed now.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::dump):
-
-2009-12-29  Robert Hogan  <robert@roberthogan.net>
-
-        Reviewed by Eric Seidel.
-
-        [Qt] fix fast/dom/Window/window-onFocus.html
-        
-        Add support for layouttestcontroller.windowIsKey to Qt DRT and fix issue where
-        window.onblur was getting dispatched twice from QtWebKit.
-        
-        https://bugs.webkit.org/show_bug.cgi?id=32990
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::switchFocus):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setWindowIsKey):
-        (LayoutTestController::setMainFrameIsFirstResponder):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2009-12-28  Kinuko Yasuda  <kinuko@chromium.org>
-
-        Reviewed by Maciej Stachowiak.
-
-        Extended EventSender.keyDown method to take another (3rd) argument
-        for indicating the keyLocation to make numeric pad key events testable.
-        Expected values for the argument is one of the KeyLocationCode
-        specified in DOM Level 3
-        (http://www.w3.org/TR/DOM-Level-3-Events/#events-keyboardevents).
-        https://bugs.webkit.org/show_bug.cgi?id=28247
-
-        Test: fast/events/keydown-numpad-keys.html
-
-        * DumpRenderTree/mac/EventSendingController.mm:
-        (+[EventSendingController isSelectorExcludedFromWebScript:]):
-        (+[EventSendingController webScriptNameForSelector:]):
-        (-[EventSendingController keyDown:withModifiers:withLocation:]):
-
-2009-12-28  Ariya Hidayat  <ariya.hidayat@gmail.com>
-
-        Unreviewed, update my email address.
-
-        * Scripts/modules/committers.py:
-
-2009-12-28  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Adam Barth.
-
-        [Qt] Fix build break for Qt 4.4
-        https://bugs.webkit.org/show_bug.cgi?id=30327
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp: Include QLocale
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp: Ditto.
-        * QtLauncher/main.cpp:
-        (MainWindow::MainWindow): Qt::WA_TranslucentBackground was
-        introduced in Qt version 4.5
-
-2009-12-28  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Add an edit-changelog command
-        https://bugs.webkit.org/show_bug.cgi?id=32986
-
-        This command makes it easier to edit ChangeLogs.  It's similar to
-        prepare-ChangeLog -o, except it works with already existing ChangeLogs.
-
-        * Scripts/modules/commands/upload.py:
-        * Scripts/modules/commands/upload_unittest.py:
-
-2009-12-28  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Create an ASAD command for uploading a patch
-        https://bugs.webkit.org/show_bug.cgi?id=32979
-
-        The create-review command goes through the whole process of preparing a
-        code review, including creating a bug, editing the ChangeLogs, and
-        uploading the patch.  It is indeed the All Sing, All Dance upload
-        command.
-
-        * Scripts/modules/buildsteps.py:
-        * Scripts/modules/commands/upload.py:
-        * Scripts/modules/commands/upload_unittest.py:
-        * Scripts/modules/mock_bugzillatool.py:
-        * Scripts/modules/user.py:
-
-2009-12-28  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed "build" fix (with test!).
-
-        * Scripts/modules/bugzilla.py:
-        * Scripts/modules/bugzilla_unittest.py:
-
-2009-12-27  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add more awesome bug-parsing logic to bugzilla.py in preparation for assign-to-committer command
-        https://bugs.webkit.org/show_bug.cgi?id=32980
-
-        * Scripts/modules/bugzilla.py:
-         - Add a new _parse_bug_page function and use it in fetch_attachments_from_bug
-         - Replace fetch_title_from_bug with a new fetch_bug call instead.
-         - Use list comprehensions where possible to reduce code duplication.
-        * Scripts/modules/bugzilla_unittest.py:
-         - Add a minimal bug parsing test.
-         - Share code between bug parsing and attachment parsing tests with _assert_dictionaries_equal
-        * Scripts/modules/commands/upload.py:
-         - Use fetch_bug(bug_id)["title"] instead of fetch_title_from_bug
-
-2009-12-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Status bubble shouldn't be transparent for bots that haven't run yet
-        https://bugs.webkit.org/show_bug.cgi?id=32977
-
-        * QueueStatusServer/templates/statusbubble.html:
-
-2009-12-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [QueueStatusServer] Run gc cron job less often
-        https://bugs.webkit.org/show_bug.cgi?id=32958
-
-        Now that we've cleaned out the backlog of idle messages, we don't need
-        to run the gc job every half hour.  We could also stop logging the idle
-        messages, but this seems easier for the time being.
-
-        * QueueStatusServer/cron.yaml:
-
-2009-12-27  Daniel Bates  <dbates@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        https://bugs.webkit.org/show_bug.cgi?id=32896
-
-        Fixes an issue where bugzilla-tool tries to read the username and password from
-        Git regardless of whether Git is installed. In particular, if Git is not
-        installed then bugzilla-tool dies (with a trace) when it attempts to query Git
-        for the authentication credentials to log into bugs.webkit.org.
-
-        Moreover, modifies Executive.run_command to catch and pass OSError exceptions to
-        the specified error handler. For instance, the specified error handler will now
-        be called when the command does not exist (i.e. OSError errno 2).
-
-        * Scripts/modules/credentials.py: Added check for Git.
-        * Scripts/modules/credentials_unittest.py: Added test method
-        test_read_credentials_with_SVN.
-        * Scripts/modules/executive.py: Modified method run_command to catch
-        OSError exceptions (i.e [Errno 2] No such file or directory) and call
-        the specified error handler.
-        * Scripts/modules/executive_unittest.py: Added.
-        * Scripts/run-webkit-unittests: Added import executive_unittest.py.
-
-2009-12-27  Daniel Bates  <dbates@webkit.org>
-
-        Unreviewed. Added missing file style_unittest.py that wasn't committed
-        in change set 52541 (http://trac.webkit.org/changeset/52541) as part of
-        the patch for bug #32592.
-
-        * Scripts/modules/style_unittest.py: Added.
-
-2009-12-27  Daniel Bates  <dbates@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        https://bugs.webkit.org/show_bug.cgi?id=32964
-
-        [bzt] Updated the unit test based on the change made in bug #32951.
-
-        The change made in bug #32951 added the command-line argument:
-        --makeargs="-j8" to the build-webkit command. However, the associated
-        unit test was not updated.
-
-        * Scripts/modules/webkitport_unittest.py:
-
-2009-12-27  Yael Aharon  <yael.aharon@nokia.com>
-
-        Reviewed by Darin Adler.
-
-        check-webkit-style should not mark moc files inclusion as errors
-        https://bugs.webkit.org/show_bug.cgi?id=32669
-
-        Add a new header type for moc files, and skip them when checking the order of header files.
-
-        * Scripts/modules/cpp_style.py:
-
-2009-12-26  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Make the qt build go fast
-        https://bugs.webkit.org/show_bug.cgi?id=32951
-
-        Make use of multiple cores, if available.
-
-        * Scripts/modules/webkitport.py:
-
-2009-12-25  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Eric Seidel.
-
-        https://bugs.webkit.org/show_bug.cgi?id=32682
-
-        Fixes an issue where checkFrameworks always dies with an error under Windows
-        since the clause "unless (-x $path)" is always satisfied because files under
-        Windows do not have an explict executable bit.
-
-        * Scripts/webkitdirs.pm:
-
-2009-12-23  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool should accept global options anywhere
-        https://bugs.webkit.org/show_bug.cgi?id=26912
-
-        * Scripts/bugzilla-tool:
-         - Use the new global_options class property.
-         - Add a handle_global_options callback to avoid needing callbacks for each global option.
-        * Scripts/modules/multicommandtool.py:
-         - Make the code use one combined option parser.
-           This allows us to accept global options anywhere and
-           individual command options before commands.
-         - Add a handle_global_options callback to avoid needing callbacks for each global option.
-         - Make the Command hold the option parser, but allow the tool to override it.
-         - The default option parser is used for help printing and when Commands are run stand alone,
-           but are otherwise not used.
-         - Add Command.main to codify the idea that Commands should support being run stand-alone.
-         - Change _split_args to _split_command_name_from_args now that args are unified.
-        * Scripts/modules/multicommandtool_unittest.py:
-         - Test that "tool" and "tool help" show the same help.
-         - Test that args are accepted before commands
-
-2009-12-20  Chris Jerdonek  <chris.jerdonek@gmail.com>
-
-        Reviewed by David Levin.
-
-        Moved some sections of code in preparation to refactor
-        check-webkit-style's argument parser to avoid setting
-        global variables.
-
-        https://bugs.webkit.org/show_bug.cgi?id=32592
-
-        * Scripts/check-webkit-style:
-          - Moved _USAGE string to style.py.
-          - Addressed FIXME by eliminating dependencies on cpp_style.py.
-
-        * Scripts/modules/cpp_style.py:
-          - Moved default arguments and style categories to style.py.
-          - Moved exit_with_usage(), exit_with_categories(), and
-            parse_arguments() to style.py.
-          - Removed references in _CppStyleState to the global
-            variables now in style.py.
-
-        * Scripts/modules/cpp_style_unittest.py:
-          - Moved parse_arguments() unit tests to style_unittest.py.
-
-        * Scripts/modules/style.py:
-          - Added _USAGE string from check-webkit-style.
-          - Added default arguments and style categories from cpp_style.py.
-          - Added exit_with_usage(), exit_with_categories(), and
-            parse_arguments() from cpp_sstyle.py.
-
-        * Scripts/modules/style_unittest.py: Added.
-          - Added parse_arguments() unit tests from cpp_style_unittest.py.
-
-        * Scripts/run-webkit-unittests:
-          - Added unit tests from style_unittest.py.
-
-2009-12-23  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue should mention bug 30084 when rejecting patches until it can be fixed
-        https://bugs.webkit.org/show_bug.cgi?id=32911
-
-        * Scripts/modules/bugzilla.py: Make the message even more fancy.
-        * Scripts/modules/bugzilla_unittest.py: Test our new fancy message.
-
-2009-12-23  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Not reviewed, adding myself to the reviewers list.
-
-        * Scripts/modules/committers.py:
-
-2009-12-23  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Create a prepare-diff command that creates a bug and a ChangeLog
-        https://bugs.webkit.org/show_bug.cgi?id=32895
-
-        The workflow Maciej and I discussed is as follows:
-
-        1) Write code.
-        2) bugzilla-tool prepare-diff
-        3) Edit ChangeLogs
-        4) bugzilla-tool post-diff
-
-        We might want to experimenting with combining 2-4 into a single
-        command, but that might be stressful to edit the ChangeLogs modally.
-
-        Removed submit-patch since it has the modal ChangeLog editing but none
-        oof the bug creating fun.
-
-        * Scripts/modules/bugzilla.py:
-        * Scripts/modules/buildsteps.py:
-        * Scripts/modules/commands/upload.py:
-        * Scripts/modules/commands/upload_unittest.py:
-
-2009-12-23  Gabor Loki  <loki@webkit.org>
-
-        Unreviewed; added myself to the committers list.
-
-        * Scripts/modules/committers.py:
-
-2009-12-22  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Maciej Stachowiak.
-
-        [bzt] Don't call create-patch twice during post-diff
-        https://bugs.webkit.org/show_bug.cgi?id=32893
-
-        If we call create-patch to get the bug number, cache the diff in the
-        state so we don't need to call it again.
-
-        * Scripts/modules/buildsteps.py:
-        * Scripts/modules/commands/upload.py:
-
-2009-12-22  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Eric Seidel.
-
-        https://bugs.webkit.org/show_bug.cgi?id=32680
-
-        Fixes an issue in builtDylibPathForName so that it returns the correct
-        path to the built QtWebKit library on the Qt Windows port. Currently,
-        it returns the path to the file named QtWebKit.dll but this file does
-        not exist on the Qt Windows build. Instead, the file is named
-        QtWebKit4.dll.
-
-        * Scripts/webkitdirs.pm:
-
-2009-12-22  Marc-Antoine Ruel  <maruel@chromium.org>
-
-        Reviewed by Adam Roben.
-
-        Remove the only dependency on perl-libwin32 in cygwin
-
-        * Scripts/num-cpus:
-
-2009-12-22  Darin Adler  <darin@apple.com>
-
-        * pywebsocket/mod_pywebsocket: Added property svn:ignore to ignore
-        generated ".pyc" files.
-
-2009-12-22  Darin Adler  <darin@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        Turn off datagrid by default, at least for all platforms Apple ships.
-        The datagrid implementation isn't ready for general web use yet.
-
-        * Scripts/build-webkit: Turn off datagrid by default.
-
-2009-12-22  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        validate-committer-lists fails when run from an SVN checkout
-        https://bugs.webkit.org/show_bug.cgi?id=31974
-
-        * Scripts/validate-committer-lists:
-         - Make it print a warning message instead of throwing
-           an exception when running from an SVN checkout.
-
-2009-12-22  Philippe Normand  <pnormand@igalia.com>
-
-        Reviewed by Adam Barth.
-
-        check-webkit-style should not warn about NULL usage in g_object_{get,set}
-        https://bugs.webkit.org/show_bug.cgi?id=32858
-
-        * Scripts/modules/cpp_style.py:
-        * Scripts/modules/cpp_style_unittest.py:
-
-2009-12-22  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Rubber-stamped by Holger Freyther.
-
-        Moved QtLauncher from WebKit/qt.
-
-        * QtLauncher: Copied from WebKit/qt/QtLauncher.
-        * QtLauncher/QtLauncher.pro:
-
-2009-12-21  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Automate the process of calling prepare-ChangeLog
-        https://bugs.webkit.org/show_bug.cgi?id=32816
-
-        This patch automates the process of creating a bug and patch and
-        uploading it to bugzilla.  The first cut just calls
-        prepare-ChangeLog.
-
-        This patch required some refactoring of upload.py to the Step
-        model, but that's worth doing anyway.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/buildsteps.py:
-        * Scripts/modules/commands/download.py:
-        * Scripts/modules/commands/upload.py:
-        * Scripts/modules/commands/upload_unittest.py:
-        * Scripts/modules/mock_bugzillatool.py:
-
-2009-12-21  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Did a rename, so checking in the
-        version of the script I used.
-
-2009-12-21  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Update status-bubble to show all the queues
-        https://bugs.webkit.org/show_bug.cgi?id=32838
-
-        Also, move statusbubble over to use memcache.
-
-        * QueueStatusServer/handlers/statusbubble.py:
-        * QueueStatusServer/templates/statusbubble.html:
-
-2009-12-21  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Delete the boring "Empty queue" status messages in QueueStatusServer
-        https://bugs.webkit.org/show_bug.cgi?id=32818
-
-        * QueueStatusServer/app.yaml:
-        * QueueStatusServer/cron.yaml:
-        * QueueStatusServer/handlers/gc.py:
-        * QueueStatusServer/main.py:
-
-2009-12-21  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Exception on queue status server
-        https://bugs.webkit.org/show_bug.cgi?id=32812
-
-        Turns out we need to pass the id to the filter.
-
-        * QueueStatusServer/filters/webkit_extras.py:
-        * QueueStatusServer/templates/patch.html:
-        * QueueStatusServer/templates/recentstatus.html:
-
-2009-12-20  Chris Jerdonek  <chris.jerdonek@gmail.com>
-
-        Reviewed by Eric Seidel.
-
-        Created "style" folder for code supporting check-webkit-style.
-
-        * Scripts/modules/style: Added.
-
-2009-12-20  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        REGRESSION: error when running commit-queue
-        https://bugs.webkit.org/show_bug.cgi?id=32806
-
-        Fix typo and add test!
-
-        * Scripts/modules/bugzilla.py:
-        * Scripts/modules/bugzilla_unittest.py:
-
-2009-12-20  Adam Barth  <abarth@webkit.org>
-
-        [bzt] Optimize status updates for new dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=32797
-
-        This patch makes the queues slightly more chatty with the web service.
-        Also, this patch introduces some testing for the queues!
-
-        * Scripts/modules/commands/early_warning_system.py:
-        * Scripts/modules/commands/early_warning_system_unittest.py: Added.
-        * Scripts/modules/commands/queues.py:
-        * Scripts/modules/commands/queues_unittest.py:
-        * Scripts/modules/commands/queuestest.py: Added.
-        * Scripts/modules/mock_bugzillatool.py:
-        * Scripts/modules/patchcollection.py:
-        * Scripts/modules/queueengine.py:
-        * Scripts/run-webkit-unittests:
-
-2009-12-20  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Prepare QueueStatusServer for new status messages
-        https://bugs.webkit.org/show_bug.cgi?id=32805
-
-        * QueueStatusServer/handlers/recentstatus.py:
-        * QueueStatusServer/index.html: Removed.
-        * QueueStatusServer/model/attachment.py:
-        * QueueStatusServer/model/queues.py: Added.
-        * QueueStatusServer/templates/recentstatus.html: Added.
-
-2009-12-20  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        [check-webkit-style] static_cast is not misnamed!
-        https://bugs.webkit.org/show_bug.cgi?id=32796
-
-        * Scripts/modules/cpp_style.py:
-        * Scripts/modules/cpp_style_unittest.py:
-
-2009-12-20  Alejandro G. Castro  <alex@igalia.com>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        [GTK] Failing test platform/gtk/editing/pasteboard/middle-button-paste.html
-        https://bugs.webkit.org/show_bug.cgi?id=32788
-
-        Do not increase the click count if we are using a different button.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-
-2009-12-20  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [QueueStatusServer] Add a per-patch details page
-        https://bugs.webkit.org/show_bug.cgi?id=32784
-
-        This is a first cut at a per-patch details page.  I'm sure we'll have
-        to iterate.
-
-        * QueueStatusServer/filters/webkit_extras.py:
-        * QueueStatusServer/handlers/patch.py: Added.
-        * QueueStatusServer/index.yaml:
-        * QueueStatusServer/main.py:
-        * QueueStatusServer/model/attachment.py:
-        * QueueStatusServer/stylesheets/dashboard.css:
-        * QueueStatusServer/templates/dashboard.html:
-        * QueueStatusServer/templates/patch.html: Added.
-
-2009-12-20  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Use memcache to make dashboard to fast
-        https://bugs.webkit.org/show_bug.cgi?id=32780
-
-        * QueueStatusServer/app.yaml:
-        * QueueStatusServer/handlers/dashboard.py:
-        * QueueStatusServer/handlers/updatestatus.py:
-        * QueueStatusServer/model/attachment.py: Added.
-
-2009-12-19  Brent Fulgham  <bfulgham@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Provide an example implementation for printing under Windows.
-        http://bugs.webkit.org/show_bug.cgi?id=32504.`
-
-        * WinLauncher/PrintWebUIDelegate.cpp: Added.
-        (PrintWebUIDelegate::QueryInterface):
-        (PrintWebUIDelegate::AddRef):
-        (PrintWebUIDelegate::Release):
-        (PrintWebUIDelegate::webViewPrintingMarginRect):
-        * WinLauncher/PrintWebUIDelegate.h: Added.
-        (PrintWebUIDelegate::PrintWebUIDelegate):
-        (PrintWebUIDelegate::createWebViewWithRequest):
-        (PrintWebUIDelegate::webViewShow):
-        (PrintWebUIDelegate::webViewClose):
-        (PrintWebUIDelegate::webViewFocus):
-        (PrintWebUIDelegate::webViewUnfocus):
-        (PrintWebUIDelegate::webViewFirstResponder):
-        (PrintWebUIDelegate::makeFirstResponder):
-        (PrintWebUIDelegate::setStatusText):
-        (PrintWebUIDelegate::webViewStatusText):
-        (PrintWebUIDelegate::webViewAreToolbarsVisible):
-        (PrintWebUIDelegate::setToolbarsVisible):
-        (PrintWebUIDelegate::webViewIsStatusBarVisible):
-        (PrintWebUIDelegate::setStatusBarVisible):
-        (PrintWebUIDelegate::webViewIsResizable):
-        (PrintWebUIDelegate::setResizable):
-        (PrintWebUIDelegate::setFrame):
-        (PrintWebUIDelegate::webViewFrame):
-        (PrintWebUIDelegate::setContentRect):
-        (PrintWebUIDelegate::webViewContentRect):
-        (PrintWebUIDelegate::runJavaScriptAlertPanelWithMessage):
-        (PrintWebUIDelegate::runJavaScriptConfirmPanelWithMessage):
-        (PrintWebUIDelegate::runJavaScriptTextInputPanelWithPrompt):
-        (PrintWebUIDelegate::runBeforeUnloadConfirmPanelWithMessage):
-        (PrintWebUIDelegate::runOpenPanelForFileButtonWithResultListener):
-        (PrintWebUIDelegate::mouseDidMoveOverElement):
-        (PrintWebUIDelegate::contextMenuItemsForElement):
-        (PrintWebUIDelegate::validateUserInterfaceItem):
-        (PrintWebUIDelegate::shouldPerformAction):
-        (PrintWebUIDelegate::dragDestinationActionMaskForDraggingInfo):
-        (PrintWebUIDelegate::willPerformDragDestinationAction):
-        (PrintWebUIDelegate::dragSourceActionMaskForPoint):
-        (PrintWebUIDelegate::willPerformDragSourceAction):
-        (PrintWebUIDelegate::contextMenuItemSelected):
-        (PrintWebUIDelegate::hasCustomMenuImplementation):
-        (PrintWebUIDelegate::trackCustomPopupMenu):
-        (PrintWebUIDelegate::measureCustomMenuItem):
-        (PrintWebUIDelegate::drawCustomMenuItem):
-        (PrintWebUIDelegate::addCustomMenuDrawingData):
-        (PrintWebUIDelegate::cleanUpCustomMenuDrawingData):
-        (PrintWebUIDelegate::canTakeFocus):
-        (PrintWebUIDelegate::takeFocus):
-        (PrintWebUIDelegate::registerUndoWithTarget):
-        (PrintWebUIDelegate::removeAllActionsWithTarget):
-        (PrintWebUIDelegate::setActionTitle):
-        (PrintWebUIDelegate::undo):
-        (PrintWebUIDelegate::redo):
-        (PrintWebUIDelegate::canUndo):
-        (PrintWebUIDelegate::canRedo):
-        (PrintWebUIDelegate::printFrame):
-        (PrintWebUIDelegate::ftpDirectoryTemplatePath):
-        (PrintWebUIDelegate::webViewHeaderHeight):
-        (PrintWebUIDelegate::webViewFooterHeight):
-        (PrintWebUIDelegate::drawHeaderInRect):
-        (PrintWebUIDelegate::drawFooterInRect):
-        (PrintWebUIDelegate::canRunModal):
-        (PrintWebUIDelegate::createModalDialog):
-        (PrintWebUIDelegate::runModal):
-        (PrintWebUIDelegate::isMenuBarVisible):
-        (PrintWebUIDelegate::setMenuBarVisible):
-        (PrintWebUIDelegate::runDatabaseSizeLimitPrompt):
-        (PrintWebUIDelegate::paintCustomScrollbar):
-        (PrintWebUIDelegate::paintCustomScrollCorner):
-        * WinLauncher/WinLauncher.cpp: Add new UI delegate for print support.
-        (WinLauncherWebHost::updateAddressBar): check-webkit-style fixes.
-        (WinLauncherWebHost::QueryInterface): check-webkit-style fixes.
-        (WinLauncherWebHost::AddRef): check-webkit-style fixes.
-        (WinLauncherWebHost::Release): check-webkit-style fixes.
-        (resizeSubViews): check-webkit-style fixes.
-        (_tWinMain): check-webkit-style fixes.
-        (MyRegisterClass): check-webkit-style fixes.
-        (InitInstance): check-webkit-style fixes.
-        (AbortProc): New print support function.
-        (getPrinterDC): New print support function.
-        (initDocStruct): New print support function.
-        (PrintView): New printing implementation.
-        (WndProc): Add support for printing.
-        (MyEditProc): check-webkit-style fixes.
-        (About): check-webkit-style fixes.
-        (loadURL): check-webkit-style fixes.
-        * WinLauncher/WinLauncher.h:
-        (WinLauncherWebHost::WinLauncherWebHost):
-        (WinLauncherWebHost::didStartProvisionalLoadForFrame):
-        (WinLauncherWebHost::didReceiveServerRedirectForProvisionalLoadForFrame):
-        (WinLauncherWebHost::didFailProvisionalLoadWithError):
-        (WinLauncherWebHost::didCommitLoadForFrame):
-        (WinLauncherWebHost::didReceiveTitle):
-        (WinLauncherWebHost::didReceiveIcon):
-        (WinLauncherWebHost::didFinishLoadForFrame):
-        (WinLauncherWebHost::didFailLoadWithError):
-        (WinLauncherWebHost::didChangeLocationWithinPageForFrame):
-        (WinLauncherWebHost::willPerformClientRedirectToURL):
-        (WinLauncherWebHost::didCancelClientRedirectForFrame):
-        (WinLauncherWebHost::willCloseFrame):
-        (WinLauncherWebHost::windowScriptObjectAvailable):
-        * WinLauncher/WinLauncher.rc: Add menu entry for printing.
-        * WinLauncher/WinLauncher.vcproj: Add new files.
-        * WinLauncher/resource.h: Add menu entry for printing.
-
-2009-12-19  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Tweak the CSS to make the dashboard prettier.
-
-        * QueueStatusServer/stylesheets/dashboard.css:
-        * QueueStatusServer/templates/dashboard.html:
-
-2009-12-19  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        QueueStatusServer needs a human readable dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=32769
-
-        Here is a first cut at the dashboard.  There's a lot left to do.
-
-        * QueueStatusServer/filters/webkit_extras.py:
-        * QueueStatusServer/handlers/dashboard.py: Added.
-        * QueueStatusServer/handlers/patchstatus.py:
-        * QueueStatusServer/handlers/recentstatus.py:
-        * QueueStatusServer/handlers/showresults.py:
-        * QueueStatusServer/handlers/statusbubble.py:
-        * QueueStatusServer/handlers/updatestatus.py:
-        * QueueStatusServer/main.py:
-        * QueueStatusServer/model/__init__.py: Copied from WebKitTools/QueueStatusServer/filters/__init__.py.
-        * QueueStatusServer/model/queuestatus.py: Renamed from WebKitTools/QueueStatusServer/model.py.
-        * QueueStatusServer/stylesheets/dashboard.css: Added.
-        * QueueStatusServer/templates/dashboard.html: Added.
-        * QueueStatusServer/templates/statusbubble.html: Renamed from WebKitTools/QueueStatusServer/status_bubble.html.
-        * QueueStatusServer/templates/updatestatus.html: Renamed from WebKitTools/QueueStatusServer/update_status.html.
-
-2009-12-19  Daniel Bates  <dbates@webkit.org>
-
-        Reviewed by Timothy Hatcher.
-
-        https://bugs.webkit.org/show_bug.cgi?id=32462
-
-        Added --inspector-frontend flag to build-webkit to copy any changes
-        to the inspector front-end files to the built WebCore framework. This
-        will make inspector development more consistent with the rest of
-        WebKit development.
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-
-2009-12-19  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed fixes for me being terrible at python.
-
-        * Scripts/modules/bugzilla.py:
-        * Scripts/run-webkit-unittests:
-
-2009-12-18  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Split QueueStatus server into modules
-        https://bugs.webkit.org/show_bug.cgi?id=32768
-
-        One monolithic file is no good.
-
-        * QueueStatusServer/app.yaml:
-        * QueueStatusServer/handlers/__init__.py: Copied from WebKitTools/QueueStatusServer/filters/__init__.py.
-        * QueueStatusServer/handlers/patchstatus.py: Added.
-        * QueueStatusServer/handlers/recentstatus.py: Added.
-        * QueueStatusServer/handlers/showresults.py: Added.
-        * QueueStatusServer/handlers/statusbubble.py: Added.
-        * QueueStatusServer/handlers/updatestatus.py: Added.
-        * QueueStatusServer/main.py: Added.
-        * QueueStatusServer/model.py: Added.
-        * QueueStatusServer/queue_status.py: Removed.
-
-2009-12-18  Adam Barth  <abarth@webkit.org>
-
-        Rubber stamped by Eric Seidel.
-
-        Renamed WorkQueue to QueueEngine.  WorkQueue is not a queue.
-
-        * Scripts/modules/commands/queues.py:
-        * Scripts/modules/queueengine.py: Added.
-        * Scripts/modules/queueengine_unittest.py: Added.
-        * Scripts/modules/stepsequence.py:
-        * Scripts/modules/workqueue.py: Removed.
-        * Scripts/modules/workqueue_unittest.py: Removed.
-
-2009-12-18  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add watches for EWS
-        https://bugs.webkit.org/show_bug.cgi?id=32767
-
-        dglazkov wanted to be added.
-
-        * Scripts/modules/bugzilla.py:
-        * Scripts/modules/commands/early_warning_system.py:
-        * Scripts/modules/commands/queues.py:
-
-2009-12-18  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Levin.
-
-        move bugzilla.py off of urllib2
-        https://bugs.webkit.org/show_bug.cgi?id=32729
-
-        * Scripts/modules/bugzilla.py: use mechanize for all url fetching.
-
-2009-12-18  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
-
-        Rubber-stamped by Xan Lopez.
-
-        [GTK] New events (pageshow and pagehide) tests failing
-        https://bugs.webkit.org/show_bug.cgi?id=28823
-
-        Original patch by Jan Michael Alonzo.
-
-        Disable page cache for tests.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (copyWebSettingKey):
-        (LayoutTestController::overridePreference):
-
-2009-12-18  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Reviewed by David Levin.
-
-        Check one space before end of line comments.
-        https://bugs.webkit.org/show_bug.cgi?id=32597
-        
-        Fix to check one space before end of line comments in whitespace and build/header_guard.
-        Also fix build/header_guard to use WebKit header guard defines.
-
-        * Scripts/modules/cpp_style.py:
-        * Scripts/modules/cpp_style_unittest.py:
-
-2009-12-17  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        Add BUILDING_ON_SNOW_LEOPARD #define.
-
-        * DumpRenderTree/mac/DumpRenderTreeMac.h:
-
-2009-12-17  Yuzo Fujishima  <yuzo@google.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Update pywebsocket to 0.4.5 and make handshake checking stricter
-        https://bugs.webkit.org/show_bug.cgi?id=32249
-
-        * Scripts/run-webkit-tests:
-        * pywebsocket/mod_pywebsocket/handshake.py:
-        * pywebsocket/mod_pywebsocket/memorizingfile.py: Added.
-        * pywebsocket/mod_pywebsocket/standalone.py:
-        * pywebsocket/setup.py:
-        * pywebsocket/test/test_handshake.py:
-        * pywebsocket/test/test_memorizingfile.py: Added.
-
-2009-12-17  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Command.show_in_main_help should default to False
-        https://bugs.webkit.org/show_bug.cgi?id=32686
-
-        * Scripts/modules/commands/download.py:
-        * Scripts/modules/commands/queries.py:
-        * Scripts/modules/commands/queues.py:
-        * Scripts/modules/commands/upload.py:
-        * Scripts/modules/multicommandtool.py:
-
-2009-12-17  Alejandro G. Castro  <alex@igalia.com>
-
-        Reviewed by Eric Seidel.
-
-        Added the key WebKitEnableCaretBrowsing to the
-        layoutTestController.overridePreference in order to activate caret
-        browsing.
-        https://bugs.webkit.org/show_bug.cgi?id=32612
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp: Added the reset value of
-        the setting.
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp: Inserted the new
-        key in the keytable.
-
-2009-12-17  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by David Kilzer.
-
-        AX: DRT needs to support URL for accessibility
-        https://bugs.webkit.org/show_bug.cgi?id=32666
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (getURLCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::url):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::url):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::url):
-
-2009-12-17  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed; added myself to committers
-
-        * Scripts/modules/committers.py:
-
-2009-12-17  Benjamin Otte  <otte@gnome.org>
-
-        Unreviewed; added myself to committers
-
-        * Scripts/modules/committers.py:
-
-2009-12-17  Adam Barth  <abarth@webkit.org>
-
-        Rubber stamp by Seidel.
-
-        Clean up exception handling in WorkQueue.  Basically, a bunch of the
-        delegate messages can throw exceptions because of network errors.  We
-        want the queues to keep on ticking instead of erroring out.  That means
-        we want to catch generic exceptions and continue looping.
-
-        Also, cleaned up the exception handling in the EWS to properly log
-        failures.
-
-        * Scripts/modules/commands/early_warning_system.py:
-        * Scripts/modules/commands/queues.py:
-        * Scripts/modules/workqueue.py:
-
-2009-12-16  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Make UpdateStep quiet
-        https://bugs.webkit.org/show_bug.cgi?id=32599
-
-        * Scripts/modules/buildsteps.py:
-        * Scripts/modules/buildsteps_unittest.py:
-
-2009-12-16  Evan Martin  <evan@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Add Gtk to the early warning system WebKit port list.
-
-        https://bugs.webkit.org/show_bug.cgi?id=32629
-
-        * Scripts/modules/commands/early_warning_system.py:
-        * Scripts/modules/webkitport.py:
-        * Scripts/modules/webkitport_unittest.py:
-
-2009-12-16  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        post-diff is failing with exception under guess_reviewer_from_bug
-        https://bugs.webkit.org/show_bug.cgi?id=32642
-
-        Also refactor output capturing code into
-        OutputCapture.assert_outputs to share more code between tests.
-
-        * Scripts/modules/buildsteps.py:
-         - Add the missing include.
-         - Give guess_reviewer_from_bug a private underscore.
-        * Scripts/modules/buildsteps_unittest.py: Added.
-         - Test to make sure _guess_reviewer_from_bug works as expected.
-        * Scripts/modules/commands/commandtest.py:
-         - Custom code is now obsoleted by OutputCapture.assert_outputs
-        * Scripts/modules/commands/queues_unittest.py:
-         - ditto
-        * Scripts/modules/credentials_unittest.py:
-         - ditto
-        * Scripts/modules/mock_bugzillatool.py:
-         - fetch_reviewed_patches_from_bug can never return None
-        * Scripts/modules/multicommandtool_unittest.py:
-         - Custom code is now obsoleted by OutputCapture.assert_outputs
-        * Scripts/modules/outputcapture.py:
-         - Add assert_outputs to share more code between tests.
-        * Scripts/run-webkit-unittests:
-         - Add buildsteps_unittest.py
-
-2009-12-16  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Added a default argument to _update_status so that callers
-        don't have to explictly pass None when they don't have a patch object.
-
-        * Scripts/modules/commands/queues.py:
-
-2009-12-16  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by David Levin.
-
-        check-webkit-style supports for TAB check against text files.
-        https://bugs.webkit.org/show_bug.cgi?id=32538
-
-        * Scripts/check-webkit-style:
-          Move process_patch() to style.py.
-        * Scripts/modules/cpp_style.py:
-          Add can_handle().
-        * Scripts/modules/cpp_style_unittest.py:
-          Add tests for can_handle().
-        * Scripts/modules/style.py:
-          Added. This is a front-end of cpp_style and text_style. It dispatches
-          files to an appropriate linter.
-        * Scripts/modules/text_style.py:
-          Added. This is a linter module for generic text files. It supports
-          only for TAB checking at this moment.
-        * Scripts/modules/text_style_unittest.py:
-          Added. Tests for text_style.py.
-        * Scripts/run-webkit-unittests:
-          Add text_style_unittest.
-
-2009-12-16  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Levin.
-
-        bugzilla-tool should not require users to install mechanize
-        https://bugs.webkit.org/show_bug.cgi?id=32635
-
-        Centralize our import logic.
-
-        * Scripts/modules/bugzilla.py: use webkit_mechanize
-        * Scripts/modules/statusbot.py: use webkit_mechanize
-        * Scripts/modules/webkit_mechanize.py: Added.
-
-2009-12-16  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Generalize commit-queue recent status page for all queues
-        https://bugs.webkit.org/show_bug.cgi?id=32633
-
-        * QueueStatusServer/index.html:
-         - Generalize to support other queues.
-        * QueueStatusServer/queue_status.py:
-         - Generalize MainPage to support other queues.
-
-2009-12-16  Evan Martin  <evan@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Early warning system server should display output as UTF-8.
-
-        https://bugs.webkit.org/show_bug.cgi?id=32625
-
-        * QueueStatusServer/queue_status.py:
-
-2009-12-16  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Add error handling to the early warning system
-        https://bugs.webkit.org/show_bug.cgi?id=32594
-
-        This should be the last step in making the EWS operational.  When we
-        have a build error, we post the log to QueueStatusServer and add a link
-        to the bug.
-
-        * Scripts/modules/commands/early_warning_system.py:
-        * Scripts/modules/commands/queues.py:
-        * Scripts/modules/executive.py:
-
-2009-12-16  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Reviewed by Holger Freyther.
-
-        Fix crash with tests that use custom font faces.
-
-        https://bugs.webkit.org/show_bug.cgi?id=32600
-
-        In the DRT we call QApplication::removeAllApplicationFonts(), to make sure
-        that custom font faces between tests don't influence each other. Calling this
-        function in Qt however also invalidates all existing handles with QFontDatabase.
-
-        In order to make sure that WebCore also drops these handles we call QWebSettings::clearMemoryCaches(),
-        which implies a call to WebCore::FontCache::fontCache()->invalidate().
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::open):
-
-2009-12-16  Andreas Kling  <andreas.kling@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Maintain button state between mouse events.
-
-        This allows eventSender to generate drag events.
-
-        https://bugs.webkit.org/show_bug.cgi?id=32601
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::mouseDown):
-        (EventSender::mouseUp):
-        (EventSender::mouseMoveTo):
-        * DumpRenderTree/qt/EventSenderQt.h:
-
-2009-12-15  Chris Jerdonek  <chris.jerdonek@gmail.com>
-
-        Reviewed by David Levin.
-
-        Code clean-up in check-webkit-style as described below.
-        The only functional changes are minor improvements to the
-        script's help output.
-        
-        https://bugs.webkit.org/show_bug.cgi?id=32487
-
-        * Scripts/check-webkit-style:
-          - Added the module docstring from cpp_style.py.
-          - Improved wording of the --help output and added some of the
-            default values as substitution strings.
-          - Called cpp_style.exit_with_usage instead of sys.stderr.write
-            in main function.
-          - Made changes caused by changes to cpp_style.py.
-
-        * Scripts/modules/cpp_style.py:
-          - Removed module docstring, as well as redundant _USAGE string
-            and main() function obsoleted by check-webkit-style.
-          - Moved specification of default script values from within a
-            function definition to global variables.
-          - Moved the default webkit filter rules to be near the other
-            global variables.
-          - Renamed "FILTER" global variables to "FILTER_RULES" to
-            establish unambiguous terminology.
-          - Renamed _ERROR_CATEGORIES to _STYLE_CATEGORIES.
-          - Changed _STYLE_CATEGORIES from a string to a list.
-          - Added default webkit filter rules to --filter= output.
-          - Renamed "print_" methods to "exit_with_" since they exist
-            and added a temporary display_help parameter.
-          - Added a temporary display_help parameter to parse_arguments.
-
-        * Scripts/modules/cpp_style_unittest.py:
-          - Made changes caused by changes to cpp_style.py.
-          - Lower-cased ErrorCollector's ERROR_CATEGORIES instance 
-            variables since they are not global.
-
-2009-12-15  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed fix for the style-queue.
-        Typo: _updates_status -> _update_status
-
-        We need to improve our testing infrastructure for the queues.
-
-        * Scripts/modules/commands/queues.py:
-
-2009-12-15  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed fix for the style-queue.  I suspect this is a recent
-        regression from Eric's change below.
-
-        * Scripts/modules/commands/queues.py:
-
-2009-12-15  Yaar Schnitman  <yaar@chromium.org>
-
-        Reviewed by Darin Fisher.
-
-        update-webkit-chromium to auto-install gclient
-
-        https://bugs.webkit.org/show_bug.cgi?id=32587
-
-        * Scripts/update-webkit-chromium:
-
-2009-12-15  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool / commit-queue should add results links to bugs when more results are available on the status bot
-        https://bugs.webkit.org/show_bug.cgi?id=32546
-
-        You can see an example of this working in:
-        https://bugs.webkit.org/show_bug.cgi?id=32585#c3
-
-        * QueueStatusServer/queue_status.py:
-         - Output the id of the newly created status.
-        * Scripts/modules/commands/queues.py:
-         - Tweak the commit-queue logging to include a full status link.
-        * Scripts/modules/statusbot.py:
-         - update_status should return the newly created status id.
-
-2009-12-15  Andras Becsi  <abecsi@inf.u-szeged.hu>
-
-        Reviewed by Tor Arne Vestbø.
-
-        [Qt] Rename Qt DRT components to match other ports' naming convention and to be more understandable.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp: Removed.
-        * DumpRenderTree/qt/DumpRenderTree.h: Removed.
-        * DumpRenderTree/qt/DumpRenderTree.pro: Updated.
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp: Copied from WebKitTools/DumpRenderTree/qt/DumpRenderTree.cpp.
-        * DumpRenderTree/qt/DumpRenderTreeQt.h: Copied from WebKitTools/DumpRenderTree/qt/DumpRenderTree.h.
-        * DumpRenderTree/qt/GCControllerQt.cpp: Copied from WebKitTools/DumpRenderTree/qt/jsobjects.cpp.
-        (GCController::GCController):
-        * DumpRenderTree/qt/GCControllerQt.h: Copied from WebKitTools/DumpRenderTree/qt/jsobjects.h.
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        * DumpRenderTree/qt/WorkQueueItem.h: Removed.
-        * DumpRenderTree/qt/WorkQueueItemQt.cpp: Updated includes.
-        * DumpRenderTree/qt/WorkQueueItemQt.h: Copied from WebKitTools/DumpRenderTree/qt/WorkQueueItem.h.
-        * DumpRenderTree/qt/jsobjects.cpp: Removed.
-        * DumpRenderTree/qt/jsobjects.h: Removed.
-        * DumpRenderTree/qt/main.cpp: Updated includes.
-
-2009-12-15  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        We have two mark-fixed commands
-        https://bugs.webkit.org/show_bug.cgi?id=32073
-
-        * Scripts/mark-bug-fixed: Removed.
-        * Scripts/modules/commands/upload.py:
-        * Scripts/modules/commands/upload_unittest.py:
-
-2009-12-15  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool/commit-queue needs to upload failure logs when patches are rejected
-        https://bugs.webkit.org/show_bug.cgi?id=28286
-
-        * QueueStatusServer/index.html:
-         - Show [results] links if a results log was uploaded.
-        * QueueStatusServer/queue_status.py:
-         - Empty file uploads appear as u"" and Blob does not handle unicode, so convert to str().
-        * Scripts/modules/commands/queues.py:
-         - Post to the status bot when a patch fails and include the failure log as a results file.
-
-2009-12-15  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        queue sub-commands need --status-host so they can report status
-        https://bugs.webkit.org/show_bug.cgi?id=32313
-
-        Make --status-bot a global option and make
-        run_bugzilla_tool pass --status-bot to sub-commands.
-
-        * Scripts/bugzilla-tool:
-         - Rename _status to status_bot and make it non-lazy.
-        * Scripts/modules/commands/queues.py:
-         - Move status updates out of WorkQueue and into individual queues.
-        * Scripts/modules/commands/queues_unittest.py:
-         - Test that --status-host is passed to bugzilla-tool when run as subcommand.
-        * Scripts/modules/mock_bugzillatool.py:
-         - Add a MockStatusBot
-        * Scripts/modules/workqueue.py:
-         - Remove status_host and work_work_logs_directory callbacks.
-         - Add new work_item_log_path callback so that WorkQueue doesn't need to know about patches!
-        * Scripts/modules/workqueue_unittest.py:
-         - Update unit tests to reflect new callbacks.
-
-2009-12-15  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        scm_unittest.py is too slow
-        https://bugs.webkit.org/show_bug.cgi?id=31818
-
-        Now we don't run the SCM unit tests unless we get the --all flag on the
-        command line.  Eric and I were commenting out this test because it was
-        too painful to run.
-
-        * Scripts/run-webkit-unittests:
-
-2009-12-14  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Fix failing unittest.
-
-        * Scripts/modules/bugzilla_unittest.py:
-
-2009-12-14  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Move Credential handling out into a separate module
-        https://bugs.webkit.org/show_bug.cgi?id=32531
-
-        * Scripts/modules/bugzilla.py:
-        * Scripts/modules/credentials.py: Added.
-        * Scripts/modules/credentials_unittest.py: Added.
-        * Scripts/run-webkit-unittests:
-
-2009-12-14  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Kill _create_step_sequence
-        https://bugs.webkit.org/show_bug.cgi?id=32539
-
-        It's cleaner to represent not having these sequences as an empty
-        sequence instead of None.
-
-        * Scripts/modules/commands/download.py:
-        * Scripts/modules/stepsequence.py:
-
-2009-12-14  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Address reviewer comments from an earlier patch.  I didn't
-        do this earlier because I was worried about conflicts in dependent
-        patches.
-
-        * Scripts/modules/commands/download.py:
-
-2009-12-14  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Make download commands declarative
-        https://bugs.webkit.org/show_bug.cgi?id=32469
-
-        This patch "properly" factors most of the download commands.  These
-        commands are now largely declarative, which is the final step of this
-        grand refactoring.
-
-        * Scripts/modules/buildsteps.py:
-        * Scripts/modules/commands/download.py:
-
-2009-12-14  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Add AbstractPatchSequencingCommand to remove redundant code
-        https://bugs.webkit.org/show_bug.cgi?id=32468
-
-        Redundant code is bad.  This patch moves us towards more declarative
-        commands.
-
-        * Scripts/modules/commands/download.py:
-
-2009-12-14  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Kill WebKitApplyingScripts
-        https://bugs.webkit.org/show_bug.cgi?id=32467
-
-        Ah!  I've been wanting to do this for a long time.  This patch brings
-        the applying commands into the patch processing fold.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/buildsteps.py:
-        * Scripts/modules/commands/download.py:
-        * Scripts/modules/commands/download_unittest.py:
-        * Scripts/modules/mock_bugzillatool.py:
-
-2009-12-14  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Convert rollout to StepSequence
-        https://bugs.webkit.org/show_bug.cgi?id=32406
-
-        * Scripts/modules/buildsteps.py:
-        * Scripts/modules/commands/download.py:
-        * Scripts/modules/commands/download_unittest.py:
-        * Scripts/modules/mock_bugzillatool.py:
-
-2009-12-14  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Kill LandingSequence
-        https://bugs.webkit.org/show_bug.cgi?id=32464
-
-        Removes LandingSequence in favor of StepSequence.  This required
-        changing the Step API slightly to carry a general notion of state
-        instead of carrying patches specifically.
-
-        * Scripts/modules/buildsteps.py:
-        * Scripts/modules/commands/download.py:
-        * Scripts/modules/commands/queues.py:
-        * Scripts/modules/landingsequence.py: Removed.
-        * Scripts/modules/stepsequence.py:
-
-2009-12-14  Robert Hogan  <robert@roberthogan.net>
-
-        Reviewed by Eric Seidel.
-
-        [Qt] Fix https://bugs.webkit.org/show_bug.cgi?id=32437
-        
-        Amend the behaviour of DRT::notifyDone to dump only when
-        the page has finished loading.
-        
-        This fix permits removal of the following tests from the Qt skipped list:
-        fast/forms/textarea-linewrap-dynamic.html
-        fast/forms/textarea-setvalue-submit.html
-        fast/forms/textarea-hard-linewrap-empty.html
-        fast/forms/submit-to-url-fragment.html
-        http/tests/misc/percent-sign-in-form-field-name.html
-        http/tests/security/escape-form-data-field-names.html
-        
-        However it also requires the following two to be added to the skipped list:
-        
-        http/tests/xmlhttprequest/access-control-basic-denied-preflight-cache.html
-        svg/custom/use-instanceRoot-as-event-target.xhtml
-        
-        It appears the behaviour of notifyDone was masking problems with these two
-        tests.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::processWork):
-        (LayoutTestController::maybeDump):
-        (LayoutTestController::notifyDone):
-        (LayoutTestController::provisionalLoad):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController::resetLoadFinished):
-
-2009-12-14  Simon Hausmann  <hausmann@webkit.org>
-
-        Reviewed by Holger Freyther.
-
-        [Qt] Add support for keyboard modifiers to Qt DRT's EventSender for touch events
-
-        https://bugs.webkit.org/show_bug.cgi?id=32482
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::setTouchModifier):
-        (EventSender::clearTouchPoints):
-        (EventSender::sendTouchEvent):
-        * DumpRenderTree/qt/EventSenderQt.h:
-
-2009-12-13  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Gavin Barraclaugh.
-
-        Fix minor problem in sunspider-compare-results which left it broken.
-
-        * Scripts/sunspider-compare-results: Declare $parseonly
-
-2009-12-12  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        Give command-line sunspider the ability to handle multiple suites and versions
-        https://bugs.webkit.org/show_bug.cgi?id=32477
-
-        * Scripts/run-sunspider: Updated for changes to command-line parameters.
-        * Scripts/sunspider-compare-results: ditto
-
-2009-12-12  Maciej Stachowiak  <mjs@apple.com>
-
-        Not reviewed, fixing previous comment.
-
-        Remove accidental change to sunspider-compare-results
-
-        * Scripts/sunspider-compare-results:
-
-2009-12-11  Yael Aharon  <yael.aharon@nokia.com>
-
-        Unreviewed build fix for Qt versions < 4.6. 
-        Guard every slot individually with #ifdef.
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::addTouchPoint):
-        (EventSender::updateTouchPoint):
-        (EventSender::touchStart):
-        (EventSender::touchMove):
-        (EventSender::touchEnd):
-        (EventSender::clearTouchPoints):
-        (EventSender::releaseTouchPoint):
-        (EventSender::sendTouchEvent):
-        * DumpRenderTree/qt/EventSenderQt.h:
-
-2009-12-11  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        CommandsTest.assert_execute_outputs doesn't check stderr
-        https://bugs.webkit.org/show_bug.cgi?id=32352
-
-        Fix assert_execute_outputs to check stderr
-        and then fix all the unit tests which needed to
-        pass stderr output.
-
-        * Scripts/modules/commands/commandtest.py:
-        * Scripts/modules/commands/download_unittest.py:
-        * Scripts/modules/commands/upload_unittest.py:
-
-2009-12-11  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [check-webkit-style] False positive for tst_QWebFrame
-        https://bugs.webkit.org/show_bug.cgi?id=32436
-
-        Add an exception for function names that start with "tst_".  These are
-        used by the Qt unit testing framework.
-
-        * Scripts/modules/cpp_style.py:
-        * Scripts/modules/cpp_style_unittest.py:
-
-2009-12-11  Simon Hausmann  <hausmann@webkit.org>, Kim Grönholm  <kim.gronholm@nomovok.com>
-
-        Reviewed by Antti Koivisto.
-
-        Added support for creating synthetic touch events with EventSender
-        in Qt's DumpRenderTree.
-
-        https://bugs.webkit.org/show_bug.cgi?id=32114
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::addTouchPoint):
-        (EventSender::updateTouchPoint):
-        (EventSender::touchStart):
-        (EventSender::touchMove):
-        (EventSender::touchEnd):
-        (EventSender::clearTouchPoints):
-        (EventSender::releaseTouchPoint):
-        (EventSender::sendTouchEvent):
-        * DumpRenderTree/qt/EventSenderQt.h:
-
-2009-12-11  Benjamin Poulain  <benjamin.poulain@nokia.com>
-
-        Reviewed by Darin Adler.
-
-        The values of RuntimeArray are not enumerable
-        https://bugs.webkit.org/show_bug.cgi?id=29005
-
-        * DumpRenderTree/mac/ObjCController.m:
-        (+[ObjCController isSelectorExcludedFromWebScript:]):
-        (+[ObjCController webScriptNameForSelector:]):
-        (-[ObjCController arrayOfString]):
-
-2009-12-10  Eric Seidel  <eric@webkit.org>
-
-        No review, just updating unit tests to match recent checkins.
-
-        * Scripts/modules/mock_bugzillatool.py:
-         - Add missing red_core_builders_names method causing exception.
-        * Scripts/modules/workqueue_unittest.py:
-         - processutils is dead, use executive.py instead.
-
-2009-12-10  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Move run_command onto Executive to make code which uses run_command testable
-        https://bugs.webkit.org/show_bug.cgi?id=32396
-
-        * Scripts/modules/executive.py:
-         - Move run_command and error handlers onto Executive.
-        * Scripts/modules/scm.py:
-        * Scripts/modules/scm_unittest.py:
-
-2009-12-09  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool needs a command to list patches needing cq+
-        https://bugs.webkit.org/show_bug.cgi?id=32351
-
-        * Scripts/modules/bugzilla.py:
-         - Parse attacher_email from attachment xml.
-        * Scripts/modules/bugzilla_unittest.py:
-         - Test new attacher_email parsing.
-        * Scripts/modules/commands/queries.py:
-         - Add PatchesToCommitQueue
-        * Scripts/modules/commands/queries_unittest.py:
-         - Tests for PatchesToCommitQueue
-        * Scripts/modules/mock_bugzillatool.py:
-         - Add necessary mock methods for running PatchesToCommitQueue
-
-2009-12-10  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Turns out every StepSequence command needs a --quiet
-        option.
-
-        * Scripts/modules/stepsequence.py:
-
-2009-12-10  Eric Z. Ayers  <zundel@google.com>
-
-        Reviewed by Pavel Feldman.
-
-        Implements displayWebView() to force an invalidation and repaint.
-        This fixes a problem running the timeline-paint.html unit test.
-
-        https://bugs.webkit.org/show_bug.cgi?id=31729
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (displayWebView):
-
-2009-12-10  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Convert more commands to StepSequences
-        https://bugs.webkit.org/show_bug.cgi?id=32362
-
-        We should eventually convert all the commands, but I'm starting with
-        the easy ones.
-
-        * Scripts/modules/commands/download.py:
-
-2009-12-10  Xan Lopez  <xlopez@igalia.com>
-
-        Reviewed by Jan Alonzo.
-
-        [GTK] editing/selection/shrink-selection-after-shift-pagedown.html failing
-        https://bugs.webkit.org/show_bug.cgi?id=31103
-
-        Give focus to the webviews when we create them, since some tests expect this.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (main):
-
-2009-12-10  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool "builders are red" error should tell you which builders
-        https://bugs.webkit.org/show_bug.cgi?id=32211
-
-        * Scripts/modules/buildsteps.py:
-
-2009-12-09  Marwan Al Jubeh  <marwan.aljubeh@gmail.com>
-
-        Reviewed by Adam Roben.
-
-        Fixes: https://bugs.webkit.org/show_bug.cgi?id=31228
-        Set the WebKitOutputDir, WebKitLibrariesDir and Cygwin environment variables automatically
-        in Windows as part of running update_webkit.
-
-        * Scripts/update-webkit:
-         - Run setupAppleWinEnv() on Apple's Windows port.
-        * Scripts/webkitdirs.pm:
-         - Added functions that return the source directory, libraries directory and default build directory on Windows.
-         - Added isWindowsNT() which tests if the current Windows version is from the Windows NT family.
-         - Implemented setupAppleWinEnv() which sets the environment variables WebKitOutputDir, WebKitLibrariesDir
-           and Cygwin to their desired values.
-
-2009-12-09  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        exception thrown when running apply-patches
-        https://bugs.webkit.org/show_bug.cgi?id=32344
-
-        The update step now takes a port option.  Once we finish the Steps
-        refactoring, we won't have to worry about this kind of bug again.
-
-        * Scripts/modules/commands/download.py:
-
-2009-12-09  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Fix ScriptError includes.  I don't understand why these
-        didn't throw during unit testing...
-
-        * Scripts/modules/commands/download.py:
-        * Scripts/modules/logging_unittest.py:
-        * Scripts/modules/workqueue.py:
-
-2009-12-09  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Remove unused PatchCollection class
-        https://bugs.webkit.org/show_bug.cgi?id=32312
-
-        It's dead code.
-
-        * Scripts/modules/patchcollection.py:
-        * Scripts/modules/patchcollection_unittest.py: Removed.
-
-2009-12-09  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed "build" fix.  CheckStyle needs a --no-upate option.
-
-        * Scripts/modules/commands/download.py:
-
-2009-12-09  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Convert Build to use Sequence
-        https://bugs.webkit.org/show_bug.cgi?id=32310
-
-        So much prettier.
-
-        * Scripts/modules/buildsteps.py:
-        * Scripts/modules/commands/download.py:
-        * Scripts/modules/landingsequence.py:
-        * Scripts/modules/stepsequence.py: Added.
-
-2009-12-09  Adam Barth  <abarth@webkit.org>
-
-        Add missing file.
-
-        * Scripts/modules/executive.py: Added.
-
-2009-12-09  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed "build" fix.
-
-        * Scripts/modules/landingsequence.py:
-
-2009-12-09  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Implement abstract Steps
-        https://bugs.webkit.org/show_bug.cgi?id=32212
-
-        This is a fairly disruptive change that refactors how we build
-        commands.  Instead of using a landing sequence, we can now assemble a
-        sequence of steps directly.  We still use the landing sequence in the
-        interim, but this will be removed soon.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/buildsteps.py:
-        * Scripts/modules/commands/download.py:
-        * Scripts/modules/commands/early_warning_system.py:
-        * Scripts/modules/commands/queues.py:
-        * Scripts/modules/commands/queues_unittest.py:
-        * Scripts/modules/landingsequence.py:
-        * Scripts/modules/mock_bugzillatool.py:
-        * Scripts/modules/processutils.py: Removed.
-        * Scripts/modules/scm.py:
-        * Scripts/modules/scm_unittest.py:
-        * Scripts/modules/webkitport.py:
-
-2009-12-08  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        run_command and ScriptError should move into processutils.py
-        https://bugs.webkit.org/show_bug.cgi?id=32305
-
-        Turns out there are a zillion callers to run_command.
-
-        * Scripts/modules/commands/download.py:
-        * Scripts/modules/commands/early_warning_system.py:
-        * Scripts/modules/commands/queues.py:
-        * Scripts/modules/landingsequence.py:
-        * Scripts/modules/logging_unittest.py:
-        * Scripts/modules/processutils.py:
-        * Scripts/modules/scm.py:
-        * Scripts/modules/scm_unittest.py:
-        * Scripts/modules/workqueue.py:
-        * Scripts/modules/workqueue_unittest.py:
-
-2009-12-08  Kevin Watters  <kevinwatters@gmail.com>
-
-        Reviewed by Kevin Ollivier.
-
-        [wx] Mac plugins support.
-        
-        https://bugs.webkit.org/show_bug.cgi?id=32236
-
-        * wx/browser/wscript:
-
-2009-12-08  David Levin  <levin@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        [check-webkit-style] False positive for DEFINE_OPCODE(op_jtrue) {
-        https://bugs.webkit.org/show_bug.cgi?id=32193
-
-        * Scripts/modules/cpp_style.py: For the function { rule, if there is space
-          at the beginning of line, ignore lines which then have a macro.
-        * Scripts/modules/cpp_style_unittest.py: Add tests to verify the
-          new behavior.
-
-2009-12-08  Dmitry Titov  <dimich@chromium.org>
-
-        Rubber-stamped by David Levin.
-
-        Revert and reopen "Add asserts to RefCounted to make sure ref/deref happens on the right thread."
-        It may have caused massive increase of reported leaks on the bots.
-        https://bugs.webkit.org/show_bug.cgi?id=31639
-
-        * DumpRenderTree/ForwardingHeaders/wtf/ThreadVerifier.h: Removed.
-
-2009-12-08  Dmitry Titov  <dimich@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        Add asserts to RefCounted to make sure ref/deref happens on the right thread.
-        https://bugs.webkit.org/show_bug.cgi?id=31639
-
-        * DumpRenderTree/ForwardingHeaders/wtf/ThreadVerifier.h: Added.
-
-2009-12-08  David Levin  <levin@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        [check-webkit-style] False positive for camel case of JSC op codes
-        https://bugs.webkit.org/show_bug.cgi?id=32192
-
-        * Scripts/modules/cpp_style.py: Added an exception for the JSC op
-          code functions and const_iterator as well since I noticed a false
-          positive there when testing the fix.
-        * Scripts/modules/cpp_style_unittest.py: Added tests for these
-          changes.
-
-2009-12-08  Nikolas Zimmermann  <nzimmermann@rim.com>
-
-        Rubber-stamped by Maciej Stachowiak.
-
-        Turn on (SVG) Filters for Win.
-        https://bugs.webkit.org/show_bug.cgi?id=32224
-
-        * Scripts/webkitdirs.pm:
-
-2009-12-08  Nikolas Zimmermann  <nzimmermann@rim.com>
-
-        Rubber-stamped by Maciej Stachowiak.
-
-        Turn on (SVG) Filters for Gtk.
-        https://bugs.webkit.org/show_bug.cgi?id=32224
-
-        * Scripts/build-webkit:
-
-2009-12-07  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by David Levin.
-
-        [check-webkit-style] S_OK is a fine identifier
-        https://bugs.webkit.org/show_bug.cgi?id=32225
-
-        * Scripts/modules/cpp_style.py:
-        * Scripts/modules/cpp_style_unittest.py:
-
-2009-12-07  Nikolas Zimmermann  <nzimmermann@rim.com>
-
-        Rubber-stamped by Maciej Stachowiak.
-
-        Turn on (SVG) Filters for Qt.
-        https://bugs.webkit.org/show_bug.cgi?id=32224
-
-        * Scripts/build-webkit:
-
-2009-12-07  Yuzo Fujishima  <yuzo@google.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Make run-webkit-websocketserver log to stderr rather than to a file.
-        https://bugs.webkit.org/show_bug.cgi?id=32234
-
-        * Scripts/run-webkit-websocketserver:
-
-2009-12-07  Dmitry Titov  <dimich@chromium.org>
-
-        Rubber-stamped by Darin Adler.
-
-        Remove ENABLE_SHARED_SCRIPT flags
-        https://bugs.webkit.org/show_bug.cgi?id=32245
-        This patch was obtained by "git revert" command and then un-reverting of ChangeLog files.
-
-        * Scripts/build-webkit:
-
-2009-12-07  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Darin Adler.
-
-        <rdar://problem/7450481> One compositing test keeps DRT in "compositing mode", breaks repaint tests
-
-        The counter that WebView used to keep track of the number of enclosed WebHTMLViews using
-        accelerated compositing was hard to manage, and maintained incorrectly in a number of cases.
-        This caused one compositing test make DumpRenderTree think that all subsequent tests
-        were compositing too.
-
-        Replace this counter with notifications, which are only fired if a client (DRT) requests them. The
-        notification informs the client that a WebHTMLView entered compositing mode (or an already-
-        compositing WebHTML was added); it does not say when a view becomes uncomposited, or all
-        compositing subviews were removed, since this is tricky to get right.
-        
-        DumpRenderTreeWindow listens for this notification, and uses it to turn on window
-        autodisplay, which is necessary to kick-start Core Animation rendering and animations.
-        We ensure that window autodisplay is turned off before every test.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (createWebViewAndOffscreenWindow):
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/mac/DumpRenderTreeWindow.h:
-        * DumpRenderTree/mac/DumpRenderTreeWindow.mm:
-        (-[DumpRenderTreeWindow close]):
-        (-[DumpRenderTreeWindow startListeningForAcceleratedCompositingChanges]):
-        (-[DumpRenderTreeWindow webViewStartedAcceleratedCompositing:]):
-
-2009-12-07  Nikolas Zimmermann  <nzimmermann@rim.com>
-
-        Reviewed by Holger Hans Peter Freyther.
-
-        Turn on (SVG) Filters support, by default.
-        https://bugs.webkit.org/show_bug.cgi?id=32224
-
-        For now only enable FILTERS build flag on WebKit/mac. Other platforms will follow soon.
-
-        * Scripts/build-webkit:
-
-2009-12-07  Yaar Schnitman  <yaar@chromium.org>
-
-        Reviewed by Darin Fisher.
-
-        Chromium buildbots are not red when they fail
-        https://bugs.webkit.org/show_bug.cgi?id=32235
-
-        * Scripts/build-webkit:
-
-2009-12-07  Yaar Schnitman  <yaar@chromium.org>
-
-        Reviewed by Darin Fisher.
-
-        Typo in chromium linux builder
-        https://bugs.webkit.org/show_bug.cgi?id=32238
-
-        * Scripts/webkitdirs.pm:
-
-2009-12-07  Yaar Schnitman  <yaar@chromium.org>
-
-        Reviewed by Darin Fisher.
-
-        fixes to build-webkit --chromium
-        https://bugs.webkit.org/show_bug.cgi?id=32179
-
-        * Scripts/webkitdirs.pm:
-
-2009-12-07  Eric Seidel  <eric@webkit.org>
-
-        No review, just adding two recently approved committers.
-
-        * Scripts/modules/committers.py:
-
-2009-12-07  Alexey Proskuryakov  <ap@apple.com>
-
-        * Scripts/run-webkit-websocketserver: Added property svn:executable.
-
-2009-12-07  Yuzo Fujishima  <yuzo@google.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Add run-webkit-websocketserver
-
-        https://bugs.webkit.org/show_bug.cgi?id=31390
-
-        * Scripts/run-webkit-websocketserver: Added.
-
-2009-12-07  Steve Falkenburg  <sfalken@apple.com>
-
-        Build fix. Be flexible about which version of ICU is used on Windows.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj: Add optional xcopy commands to copy ICU 4.2.
-
-2009-12-07  Dirk Schulze  <krit@webkit.org>
-
-        Not reviewed, adding myself to the reviewers list.
-
-        * Scripts/modules/committers.py:
-
-2009-12-06  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add an API for uploading results files to StatusBot
-        https://bugs.webkit.org/show_bug.cgi?id=32210
-
-        Add Content-Type: plain/text which was forgotten
-        from the previous commit when I landed with land-patches
-        instead of land-diff.
-
-        * QueueStatusServer/queue_status.py:
-
-2009-12-06  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Status Server needs a way to handle uploaded results
-        https://bugs.webkit.org/show_bug.cgi?id=32209
-
-        * QueueStatusServer/queue_status.py: Add a ShowResults (results/*) command
-        * QueueStatusServer/update_status.html: Add file upload.
-
-2009-12-06  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add an API for uploading results files to StatusBot
-        https://bugs.webkit.org/show_bug.cgi?id=32210
-
-        * Scripts/modules/statusbot.py:
-
-2009-12-06  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Status Server needs a way to handle uploaded results
-        https://bugs.webkit.org/show_bug.cgi?id=32209
-
-        * QueueStatusServer/queue_status.py: Add a ShowResults (results/*) command
-        * QueueStatusServer/update_status.html: Add file upload.
-
-2009-12-06  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] BuildAttachment should not check the builders
-        https://bugs.webkit.org/show_bug.cgi?id=32207
-
-        This is code that got copied here by accident when the class was created.
-
-        * Scripts/modules/commands/download.py:
-
-2009-12-06  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Make LandingSequence.update aware of ports
-        https://bugs.webkit.org/show_bug.cgi?id=32208
-
-        This is required to make build work on the Chromium port because
-        Chromium has a custom update-webkit.
-
-        * Scripts/modules/landingsequence.py:
-
-2009-12-06  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add early warning system commands to bugzilla-tool.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/landingsequence.py:
-        * Scripts/modules/webkitport.py:
-
-2009-12-06  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Implement Qt EarlyWarningSystem and Chromium EarlyWarningSystem
-        https://bugs.webkit.org/show_bug.cgi?id=32205
-
-        * Scripts/modules/commands/early_warning_system.py: Added.
-        * Scripts/modules/commands/queues.py:
-
-2009-12-06  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Adele Peterson.
-
-        REGRESSION (r51728): update-webkit fails when the current directory is
-        not inside a Subversion working copy
-        https://bugs.webkit.org/show_bug.cgi?id=32204
-
-        * Scripts/update-webkit: Invoke isSVN() in the correct working
-        directory.
-
-2009-12-06  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Rename AbstractTryQueue to AbstractReviewQueue
-        https://bugs.webkit.org/show_bug.cgi?id=32202
-
-        * Scripts/modules/commands/queues.py:
-
-2009-12-05  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Implement ChromiumPort
-        https://bugs.webkit.org/show_bug.cgi?id=32182
-
-        * Scripts/modules/webkitport.py:
-        * Scripts/modules/webkitport_unittest.py:
-
-2009-12-05  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Move update-webkit into BuildSteps
-        https://bugs.webkit.org/show_bug.cgi?id=32181
-
-        We need to move update-webkit out of SCM.py because SCM isn't supposed to know
-        that WebKit exists.  The proper place for the knowledge of the existence of
-        update-webkit is in WebKitPort because some ports have specialized update
-        scripts (analogous to build-webkit).
-
-        * Scripts/modules/buildsteps.py:
-        * Scripts/modules/commands/download.py:
-        * Scripts/modules/landingsequence.py:
-        * Scripts/modules/scm.py:
-        * Scripts/modules/webkitport.py:
-
-2009-12-05  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        update-webkit should call git svn rebase and resolve-ChangeLogs -f
-        https://bugs.webkit.org/show_bug.cgi?id=27162
-
-        Teach update-webkit about Git.  I didn't add the call to
-        resolve-ChangeLogs -f because sometimes that script goes bananas.  We
-        can iterate from here, however.
-
-        * Scripts/update-webkit:
-
-2009-12-04  Yael Aharon  <yael.aharon@nokia.com>
-
-        Unreviewed build fix.
-
-        [Qt] build fix after r51634 removed unused QBoxLayout include which included limits.h.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-
-2009-12-04  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Adam Treat.
-
-        Add some missing methods for showing and hiding the
-        Web Inspector.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::WebPage::WebPage):
-        (WebCore::WebPage::~WebPage):
-        (WebCore::WebPage::webInspector):
-        * DumpRenderTree/qt/DumpRenderTree.h:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::showWebInspector):
-        (LayoutTestController::hideWebInspector):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2009-12-04  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Adam Treat.
-
-        Implement the setAllowUniversalAccessFromFileURLs method
-        for the Qt LayoutTestController.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::WebPage::resetSettings):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setAllowUniversalAccessFromFileURLs):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2009-12-04  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Darin Adler.
-
-        REGRESSION: AX: buttons now extremely repetitive
-        https://bugs.webkit.org/show_bug.cgi?id=32164
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (isAttributeSupportedCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::isAttributeSupported):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::isAttributeSupported):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::isAttributeSupported):
-
-2009-12-03  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by David Levin.
-
-        check-webkit-style should check for camelCase variable names
-        https://bugs.webkit.org/show_bug.cgi?id=32051
-
-        * Scripts/modules/cpp_style.py:
-        * Scripts/modules/cpp_style_unittest.py:
-
-2009-12-03  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Eric Seidel.
-
-        AX: VO just says "term" on many web sites
-        https://bugs.webkit.org/show_bug.cgi?id=32139
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (getRoleDescriptionCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::roleDescription):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::roleDescription):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::roleDescription):
-
-2009-12-03  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Beth Dakin.
-
-        Implement WAI-ARIA scrollbar role and related property aria-orientation
-        https://bugs.webkit.org/show_bug.cgi?id=32126
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (getOrientationCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::orientation):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::orientation):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::orientation):
-
-2009-12-03  Eric Carlson  <eric.carlson@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Minor correction to r51663.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (addQTDirToPATH):
-            GetEnvironmentVariable -> GetEnvironmentVariableW.
-
-2009-12-03  Eric Carlson  <eric.carlson@apple.com>
-
-        Reviewed by Adam Roben.
-
-        ~96 regression tests fail when using QuickTime 7.6 (they pass with QuickTime 7.3)
-        https://bugs.webkit.org/show_bug.cgi?id=30256
-
-        Add the QuickTime dll directory to the PATH environment variable so
-        inialization can succeed.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (addQTDirToPATH):
-        (initialize):
-
-2009-12-03  Shu Chang  <Chang.Shu@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] After revision 32643, sender() is of type QWebPage instead of QWebFrame.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::maybeDump):
-
-2009-12-03  Yuzo Fujishima  <yuzo@google.com>
-
-        Reviewed by Eric Seidel.
-
-        Update pywebsocket to 0.4.3
-        This version logs friendlier and higher-level messages in WARN level, which is used for LayoutTests.
-        Stack trace is logged now in INFO level.
-        https://bugs.webkit.org/show_bug.cgi?id=32097
-
-        * pywebsocket/mod_pywebsocket/dispatch.py:
-        * pywebsocket/mod_pywebsocket/msgutil.py:
-        * pywebsocket/mod_pywebsocket/standalone.py:
-        * pywebsocket/mod_pywebsocket/util.py:
-        * pywebsocket/setup.py:
-        * pywebsocket/test/test_dispatch.py:
-        * pywebsocket/test/test_util.py:
-
-2009-12-03  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Gavin Barraclough.
-
-        Fix JSClassRef leak.
-
-        * DumpRenderTree/AccessibilityController.cpp:
-        (AccessibilityController::makeWindowObject):
-        * DumpRenderTree/GCController.cpp:
-        (GCController::makeWindowObject):
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::makeWindowObject):
-
-2009-12-03  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        <rdar://problem/7214236> and http://webkit.org/b/32052 - Implement HTML5 state object history API
-
-        Keep DRT-win building...
-
-        * DumpRenderTree/win/FrameLoadDelegate.h:
-        (FrameLoadDelegate::didPushStateWithinPageForFrame):
-        (FrameLoadDelegate::didReplaceStateWithinPageForFrame):
-        (FrameLoadDelegate::didPopStateWithinPageForFrame):
-
-2009-12-03  Andras Becsi  <abecsi@inf.u-szeged.hu>
-
-        Unreviewed build fix.
-
-        [Qt] ARM-Linux build fix after r51634 removed unused QBoxLayout include which included limits.h on ARM.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-
-2009-12-03  Andras Becsi  <abecsi@inf.u-szeged.hu>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Refactor DRT to not crash on tests which open child windows from javascript.
-        Prevent DRT from showing the main view if these childs get deleted.
-        This fixes https://bugs.webkit.org/show_bug.cgi?id=31591.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::WebPage::WebPage):
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::~DumpRenderTree):
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        (WebCore::DumpRenderTree::open):
-        (WebCore::DumpRenderTree::closeRemainingWindows):
-        (WebCore::DumpRenderTree::createWindow):
-        (WebCore::DumpRenderTree::windowCount):
-        * DumpRenderTree/qt/DumpRenderTree.h:
-
-2009-12-02  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        REGRESSION(51595): commit-queue is throwing exceptions
-        https://bugs.webkit.org/show_bug.cgi?id=32083
-
-        * Scripts/modules/commands/queues.py:
-         - Don't use default value of [] as it ends up getting shared.
-         - Make log_progress accept arrays of ints as well as strings.
-         - Return an exit code from execute()
-        * Scripts/modules/commands/queues_unittest.py: Added.
-         - Test to make sure log_progress will accept ints.
-         - Test to make sure run_bugzilla_tool will accept ints.
-        * Scripts/modules/workqueue.py:
-         - Print the stack trace on unexpected exceptions for easier debugging.
-        * Scripts/run-webkit-unittests:
-         - Add queues_unittest.
-
-        * Scripts/modules/commands/queues.py:
-        * Scripts/modules/commands/queues_unittest.py: Copied from WebKitTools/Scripts/modules/commands/commandtest.py.
-        * Scripts/modules/mock_bugzillatool.py:
-        * Scripts/modules/workqueue.py:
-        * Scripts/run-webkit-unittests:
-
-2009-12-02  David Levin  <levin@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        check-webkit-style is too noisy about namespace indenting issues.
-        https://bugs.webkit.org/show_bug.cgi?id=32096
-
-        * Scripts/modules/cpp_style.py:
-        Added a _FileState object to be able to track file level information. In this
-        case, it simply tracks whether the error has already been given, so that it isn't
-        done again.
-        * Scripts/modules/cpp_style_unittest.py:
-        Modified test cases to pass in the _FileState object and fix a test that expected
-        to see the namespace error twice (now it only occurs once). No new tests because
-        existing tests cover the change in functionality.
-
-2009-12-01  Kevin Ollivier  <kevino@theolliviers.com>
-
-        Reviewed by Eric Seidel.
-
-        [wx] Get DumpRenderTree building after waf switch.
-        
-        https://bugs.webkit.org/show_bug.cgi?id=32041
-
-        * DumpRenderTree/wscript: Added.
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setTimelineProfilingEnabled):
-        (LayoutTestController::evaluateScriptInIsolatedWorld):
-        (LayoutTestController::disableImageLoading):
-        (LayoutTestController::whiteListAccessFromOrigin):
-        (LayoutTestController::counterValueForElementById):
-        * Scripts/build-webkit:
-
-2009-12-02  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] build-attachment shouldn't check whether the builders are red
-        https://bugs.webkit.org/show_bug.cgi?id=32062
-
-        build-attachment doesn't touch the remote repository, so there isn't a
-        need to hold off when the builders are red.
-
-        * Scripts/modules/commands/download.py:
-        * Scripts/modules/landingsequence.py:
-
-2009-12-02  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        REGRESSION(51590): style-queue and build-queue think their empty when they are not
-        https://bugs.webkit.org/show_bug.cgi?id=32061
-
-        * Scripts/modules/bugzilla.py: make all id lookups return ints instead of strings.
-        * Scripts/modules/bugzilla_unittest.py: Add and update unit tests to use ints.
-
-2009-12-02  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        build-queue is throwing exceptions and complaining about
-        lack of --no-update on build-attachment.  Make it stop.
-
-        * Scripts/modules/buildsteps.py:
-        * Scripts/modules/commands/download.py:
-
-2009-12-02  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed "build" fix.  Forgot to declare my variables.  :(
-
-        * QueueStatusServer/queue_status.py:
-
-2009-12-02  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Implement status bubble view
-        https://bugs.webkit.org/show_bug.cgi?id=32057
-
-        The status bubble is a compact representation of the queue status for a
-        given patch.  This will eventually help us reduce the comment spam from
-        the queues.
-
-        * QueueStatusServer/index.html: Added HTML5 doctype for sanity.
-        * QueueStatusServer/queue_status.py:
-        * QueueStatusServer/status_bubble.html: Added.
-
-2009-12-02  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        trim commands/*.py includes now that commands are unit tested
-        https://bugs.webkit.org/show_bug.cgi?id=32056
-
-        In the course of ensuring that the unit tests still
-        passed after this change, I had to actually make them
-        pass in the first place.
-
-        * Scripts/modules/bugzilla.py:
-         - Fix _parse_attachment_ids_request_query to return ints instead of strings.
-        * Scripts/modules/commands/download.py: Remove unneeded imports.
-        * Scripts/modules/commands/queries.py: Ditto.
-        * Scripts/modules/commands/queues.py: Ditto.
-        * Scripts/modules/commands/upload.py: Ditto.
-        * Scripts/modules/scm_unittest.py:
-         - Fix to expect the \n after the path since echo adds an \n.
-
-2009-12-01  Yaar Schnitman  <yaar@chromium.org>
-
-        build-webkit: Remove flex,bison,gperf check for chromium
-        https://bugs.webkit.org/show_bug.cgi?id=32043
-
-        * Scripts/webkitdirs.pm:
-
-2009-12-01  Chris Fleizach  <cfleizach@apple.com>
-
-        Build fixage for Windows/GTK for DumpRenderTree.
-
-        WAI-ARIA: implement support for ARIA drag and drop
-        https://bugs.webkit.org/show_bug.cgi?id=32007
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::ariaIsGrabbed):
-        (AccessibilityUIElement::ariaDropEffects):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::ariaIsGrabbed):
-        (AccessibilityUIElement::ariaDropEffects):
-
-2009-12-01  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Darin Adler.
-
-        WAI-ARIA: implement support for ARIA drag and drop
-        https://bugs.webkit.org/show_bug.cgi?id=32007
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (getARIADropEffectsCallback):
-        (getARIAIsGrabbedCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::ariaIsGrabbed):
-        (AccessibilityUIElement::ariaDropEffects):
-
-2009-12-01  Nikolas Zimmermann  <nzimmermann@rim.com>
-
-        Not reviewed. GTK DRT try 2.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::sampleSVGAnimationForElementAtTime):
-
-2009-12-01  Nikolas Zimmermann  <nzimmermann@rim.com>
-
-        Not reviewed. Try to fix gtk DRT build.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-
-2009-12-01  David Levin  <levin@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        check-webkit-style does not understand (Prefix)Foo(Custom|Gtk|CG|Mac).cpp including Foo.h
-        https://bugs.webkit.org/show_bug.cgi?id=32033
-
-        * Scripts/modules/cpp_style.py: Changed check for a possible primary header to use find
-                                        instead of startswith.
-        * Scripts/modules/cpp_style_unittest.py: Added a unit test for the new behavior.
-
-2009-12-01  Nikolas Zimmermann  <nzimmermann@rim.com>
-
-        Not reviewed. Qt build almost fixed, DumpRenderTree should compile now as well.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.h: Update old function signature.
-
-2009-12-01  Nikolas Zimmermann  <nzimmermann@rim.com>
-
-        Reviewed by Simon Fraser.
-
-        Add SVG animation test framework with 'snapshot' functionality
-        https://bugs.webkit.org/show_bug.cgi?id=31897
-
-        Add new 'sampleSVGAnimationForElementAtTime' DRT method,
-        used by the new SVG animation testing framework, implemented
-        for qt/gtk/win/mac.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (sampleSVGAnimationForElementAtTimeCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::sampleSVGAnimationForElementAtTime):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::sampleSVGAnimationForElementAtTime):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::sampleSVGAnimationForElementAtTime):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::sampleSVGAnimationForElementAtTime):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::sampleSVGAnimationForElementAtTime):
-
-2009-12-01  Adam Roben  <aroben@apple.com>
-
-        Remove user content before running each test on Windows
-
-        Fixes <http://webkit.org/b/31479> Make websocket tests work on Windows
-
-        Reviewed by Alexey Proskuryakov.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting): Remove all user content
-        before each test, which matches Mac.
-
-2009-12-01  Yuzo Fujishima  <yuzo@google.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Make pywebsocket log errors to a file
-        https://bugs.webkit.org/show_bug.cgi?id=31604
-
-        * Scripts/run-webkit-tests: Log output to a pywebsocket_log.txt file in results directory
-        (by passing the path to the server via a recently added -l option).
-
-2009-12-01  Adam Roben  <aroben@apple.com>
-
-        Fix tests that use the TestNetscapePlugin in Debug_Internal builds
-
-        Reviewed by Ada Chan.
-
-        Fixes <http://webkit.org/b/32027> REGRESSION (r49705): Tests that use
-        TestNetscapePlugin fail in Debug_Internal builds
-
-        * DumpRenderTree/win/DumpRenderTree.cpp: Use the "_Debug" plugin
-        directory in Debug and Debug_All builds, but not in Debug_Internal
-        builds.
-
-2009-12-01  Adam Roben  <aroben@apple.com>
-
-        Re-enable DRT's watchdog timer on Windows
-
-        It was accidentally disabled in r50907.
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setWaitToDump): Remove a "false &&" that snuck
-        into an if condition.
-
-2009-12-01  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        check-webkit-style complains about #imports with / in them
-        https://bugs.webkit.org/show_bug.cgi?id=32022
-
-        We need to exclude #import directives in addition to #include from the
-        binary operator whitespace checks.
-
-        * Scripts/modules/cpp_style.py:
-        * Scripts/modules/cpp_style_unittest.py:
-
-2009-11-30  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        check-webkit-style is slightly too verbose
-        https://bugs.webkit.org/show_bug.cgi?id=32010
-
-        check-webkit-style prints out a bunch of "done" lines that seem redundant,
-        especially for the style-queue.
-
-        * Scripts/modules/cpp_style.py:
-
-2009-11-30  Alejandro G. Castro  <alex@igalia.com>
-
-        Reviewed by Eric Seidel.
-
-        [GTK] Moved the functions that are closing the result log of the
-        tests to the last line of the runTest function, this avoids
-        reporting crashes in the wrong test if there is a problem when
-        reseting the state after the test.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (dump):
-        (runTest):
-
-2009-11-30  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Geoffrey Garen.
-
-        Fix for https://bugs.webkit.org/show_bug.cgi?id=31286
-        fast/js/date-proto-generic-invocation breaks another test
-
-        Don't cache JSClassRefs, a change to the prototype chain will
-        last between tests.
-
-        * DumpRenderTree/AccessibilityController.cpp:
-        (AccessibilityController::getJSClass):
-        * DumpRenderTree/GCController.cpp:
-        (GCController::getJSClass):
-        * DumpRenderTree/GCController.h:
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::getJSClass):
-
-2009-11-30  Yuzo Fujishima  <yuzo@google.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Update pywebsocket to 0.4.2.1.
-        This is to fix a bug that some messages are logged to stderr even when the log file is specified.
-        https://bugs.webkit.org/show_bug.cgi?id=31976
-
-        * pywebsocket/mod_pywebsocket/standalone.py:
-        * pywebsocket/setup.py:
-
-2009-11-30  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Generate pass messages for style-queue
-        https://bugs.webkit.org/show_bug.cgi?id=31995
-
-        With this change, the style-queue posts "pass" messages to bugs as
-        well.  Also, added more information to the state store w.r.t. passing
-        and failing.
-
-        * Scripts/modules/commands/queues.py:
-        * Scripts/modules/patchcollection.py:
-
-2009-11-30  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
-
-        Reviewed by Simon Fraser.
-
-        Check for WEBKIT_TESTFONTS environment variable in
-        run-webkit-tests, for GTK+, to have a more prominent error
-        message.
-
-        * Scripts/run-webkit-tests:
-
-2009-11-30  Yaar Schnitman  <yaar@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        update-webkit --chromium forces gclient sync
-
-        https://bugs.webkit.org/show_bug.cgi?id=31967
-
-        * Scripts/update-webkit-chromium:
-
-2009-11-29  Eric Seidel  <eric@webkit.org>
-
-        Add Erik Arvidsson to committers.py since by r51326 he clear has commit rights.
-
-        * Scripts/modules/committers.py:
-
-2009-11-29  Eric Seidel  <eric@webkit.org>
-
-        No review, just adding missing svn property.
-
-        Set svn:executable property on new scripts.
-        These were added by commit-queue commits, but the executable
-        property was lost due to a bug in svn-apply:
-        https://bugs.webkit.org/show_bug.cgi?id=27204
-
-        * Scripts/update-webkit-chromium: Added property svn:executable.
-        * Scripts/validate-committer-lists: Added property svn:executable.
-
-2009-11-29  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Need a way to validate that committers.py includes all committers/reviewers
-        https://bugs.webkit.org/show_bug.cgi?id=30970
-
-        Add a script which knows how to compare our public committer/reviewer
-        lists and show discrepancies between them.
-
-        Validates mailing lists vs. committers.py:
-        - committers.py committers missing from webkit-committers@lists
-        - webkit-committers@lists members missing from committers.py
-        - committers.py reviewers missing from webkit-reviewers@lists
-        - webkit-reviewers@lists members missing from committers.py
-        - webkit-reviewers@lists members missing from committers.py reviewer list
-
-        Validates committers.py vs. trunk/ SVN history:
-        - committers who have not committed in over a year
-        - SVN committers missing from committers.py
-        - committers.py members who have no record in SVN.
-
-        All of these lists still show "false positives" until a few more committers.py updates are made, like:
-        https://bugs.webkit.org/show_bug.cgi?id=31366
-
-        * Scripts/validate-committer-lists: Added.
-
-2009-11-28  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] style-queue sends ~100 requests to QueueStatusServer every 5 minutes
-        https://bugs.webkit.org/show_bug.cgi?id=31950
-
-        Now we cache the last status that we get back from QueueStatusServer.
-        Eventually we'll have to do something more fancy if we want to support
-        a "try again" button on QueueStatusServer, but we can cross that bridge
-        when we come to it.
-
-        * Scripts/modules/patchcollection.py:
-
-2009-11-28  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        StyleQueue scans ~100 bug pages every 5 minutes
-        https://bugs.webkit.org/show_bug.cgi?id=31947
-
-        Instead of getting the pending-review attachment ids by scanning each
-        bug (which results in a network request), we should just get them all
-        from webkit.org/pending-review in one shot.
-
-        * Scripts/modules/bugzilla.py:
-        * Scripts/modules/bugzilla_unittest.py:
-        * Scripts/modules/commands/queries.py:
-        * Scripts/modules/commands/queries_unittest.py:
-        * Scripts/modules/commands/queues.py:
-        * Scripts/modules/mock_bugzillatool.py:
-        * Scripts/modules/patchcollection.py:
-
-2009-11-28  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] CC webkit-bot-watchers whenever the bots touch bugs
-        https://bugs.webkit.org/show_bug.cgi?id=31952
-
-        The mailing list is open for anyone to subscribe.
-
-        * Scripts/modules/bugzilla.py:
-        * Scripts/modules/commands/queues.py:
-
-2009-11-28  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] style-queue should report style errors to bugzilla
-        https://bugs.webkit.org/show_bug.cgi?id=31945
-
-        Currently, we're just logging the style errors locally.  With this
-        patch we'll actually log the errors to bugzilla.  Note: I plan to run
-        with the "local-only" logging during development.
-
-        * Scripts/modules/commands/queues.py:
-        * Scripts/modules/scm.py:
-
-2009-11-28  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] style-queue shouldn't reject patches from the commit-queue
-        https://bugs.webkit.org/show_bug.cgi?id=31944
-
-        Currently the style-queue subprocess gets confused and thinks its the
-        commit-queue.  If the patch has an error, it rejects it from the
-        commit-queue.  Instead, we should have style-queue specific logic.
-        This patch doesn't add that logic, but it gives us a callback we can
-        use to add that logic.
-
-        * Scripts/modules/buildsteps.py:
-        * Scripts/modules/commands/queues.py:
-        * Scripts/modules/landingsequence.py:
-
-2009-11-27  Adam Barth  <abarth@webkit.org>
-
-        Rubber stamped by Eric Seidel.
-
-        Rename CommitQueueStatus to QueueStatusServer to allow for more queues.
-
-        * CommitQueueStatus: Removed.
-        * CommitQueueStatus/app.yaml: Removed.
-        * CommitQueueStatus/filters: Removed.
-        * CommitQueueStatus/filters/__init__.py: Removed.
-        * CommitQueueStatus/filters/webkit_extras.py: Removed.
-        * CommitQueueStatus/index.html: Removed.
-        * CommitQueueStatus/index.yaml: Removed.
-        * CommitQueueStatus/queue_status.py: Removed.
-        * CommitQueueStatus/stylesheets: Removed.
-        * CommitQueueStatus/stylesheets/main.css: Removed.
-        * CommitQueueStatus/update_status.html: Removed.
-        * QueueStatusServer: Copied from WebKitTools/CommitQueueStatus.
-
-2009-11-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        style-queue should only process each patch once
-        https://bugs.webkit.org/show_bug.cgi?id=31939
-
-        Actually address reviewer comments!
-
-        * Scripts/bugzilla-tool:
-
-2009-11-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] style-queue fails to apply a bunch of patches for no reason
-        https://bugs.webkit.org/show_bug.cgi?id=31942
-
-        By passing --non-interactive to check-style, we convince check-style
-        to pass --force to svn-apply, which lets it apply more patches.
-
-        * Scripts/modules/commands/queues.py:
-
-2009-11-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Support --status-host in style-queue
-        https://bugs.webkit.org/show_bug.cgi?id=31941
-
-        * Scripts/modules/commands/queues.py:
-        * Scripts/modules/statusbot.py:
-
-2009-11-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        style-queue should only process each patch once
-        https://bugs.webkit.org/show_bug.cgi?id=31939
-
-        Before processing a patch, the try-queues now ask the web service
-        whether they have already processed the patch.  This is an initial cut
-        of this functionality.  I expect we're make it richer over time.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/commands/queues.py:
-        * Scripts/modules/patchcollection.py:
-
-2009-11-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        PatchStatus does not return status
-        https://bugs.webkit.org/show_bug.cgi?id=31938
-
-        We need to parse attachment_id as an int.  Otherwise, we can't find
-        anything in the datastore.
-
-        * CommitQueueStatus/queue_status.py:
-
-2009-11-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Make commit-queue status not throw an exception where there is not
-        status
-        https://bugs.webkit.org/show_bug.cgi?id=31936
-
-        We need to actually fetch the results of the query to see what's in the
-        datastore.
-
-        * CommitQueueStatus/queue_status.py:
-
-2009-11-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] unit test ApplyPatches and ApplyAttachment
-        https://bugs.webkit.org/show_bug.cgi?id=31935
-
-        * Scripts/modules/commands/download.py:
-        * Scripts/modules/commands/download_unittest.py:
-
-2009-11-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Unit test download commands
-        https://bugs.webkit.org/show_bug.cgi?id=31923
-
-        Adds download_unittest and fixes a bug found while testing.
-
-        * Scripts/modules/commands/commandtest.py:
-        * Scripts/modules/commands/download.py:
-            Fixed a bug where we'd throw an error because [].append returns
-            None.
-        * Scripts/modules/commands/download_unittest.py: Added.
-        * Scripts/modules/mock_bugzillatool.py:
-        * Scripts/run-webkit-unittests:
-
-2009-11-27  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed "build" fix found while writing unit tests.
-
-        * Scripts/modules/commands/download.py:
-
-2009-11-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Kill WebKitLandingScripts
-        https://bugs.webkit.org/show_bug.cgi?id=31904
-
-        Step 6: Kill the rest.
-
-        * Scripts/modules/buildsteps.py:
-        * Scripts/modules/commands/download.py:
-        * Scripts/modules/commands/queries.py:
-        * Scripts/modules/commands/upload.py:
-        * Scripts/modules/landingsequence.py:
-        * Scripts/modules/scm.py:
-        * Scripts/modules/webkitlandingscripts.py: Removed.
-
-2009-11-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Unit test upload commands
-        https://bugs.webkit.org/show_bug.cgi?id=31903
-
-        Adds unit tests for all but two of the upload commands.  The two
-        remaining ones are more difficult.  I'll return to them later.  The
-        goal of these tests is just to run the commands.  We can test more
-        detailed behavior later.
-
-        * Scripts/modules/commands/commandtest.py:
-        * Scripts/modules/commands/upload.py:
-        * Scripts/modules/commands/upload_unittest.py:
-        * Scripts/modules/mock.py: Added.
-        * Scripts/modules/mock_bugzillatool.py:
-
-2009-11-26  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Kill WebKitLandingScripts
-        https://bugs.webkit.org/show_bug.cgi?id=31904
-
-        Step 5: Kill run_and_throw_if_fail.
-
-        * Scripts/modules/buildsteps.py:
-        * Scripts/modules/processutils.py: Added.
-        * Scripts/modules/webkitlandingscripts.py:
-
-2009-11-26  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Kill WebKitLandingScripts
-        https://bugs.webkit.org/show_bug.cgi?id=31904
-
-        Step 4: Kill run_webkit_script.
-
-        * Scripts/modules/buildsteps.py:
-        * Scripts/modules/commands/download.py:
-        * Scripts/modules/webkitlandingscripts.py:
-
-2009-11-26  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Kill WebKitLandingScripts
-        https://bugs.webkit.org/show_bug.cgi?id=31904
-
-        Step 3: Kill build_webkit.
-
-        * Scripts/modules/buildsteps.py:
-        * Scripts/modules/landingsequence.py:
-        * Scripts/modules/webkitlandingscripts.py:
-
-2009-11-26  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Kill WebKitLandingScripts
-        https://bugs.webkit.org/show_bug.cgi?id=31904
-
-        Step 2: Kill ensure_builders_are_green.
-
-        * Scripts/modules/buildsteps.py:
-        * Scripts/modules/commands/download.py:
-        * Scripts/modules/landingsequence.py:
-        * Scripts/modules/webkitlandingscripts.py:
-
-2009-11-26  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [bzt] Kill WebKitLandingScripts
-        https://bugs.webkit.org/show_bug.cgi?id=31904
-
-        Step 1: Kill prepare_clean_working_directory and run_webkit_tests.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/buildsteps.py: Added.
-        * Scripts/modules/commands/download.py:
-        * Scripts/modules/landingsequence.py:
-        * Scripts/modules/webkitlandingscripts.py:
-
-2009-11-26  Zoltan Horvath  <zoltan@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Remove directory prefixes from linux commands
-
-        SCM unittests can cause errors on some systems if we use absolute reference to
-        the commands, so directory prefixes have been removed.
-
-        * Scripts/modules/scm_unittest.py:
-
-2009-11-21  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Link DumpRenderTree to the Qt Ui Tools
-        https://bugs.webkit.org/show_bug.cgi?id=31203
-
-        Implement QWebPage::createPlugin using the Qt Ui Tools
-        to be able to create classes like QProgressBar from within
-        the <object></object> tags This is required for the
-        new automatic test of Qt Plugins.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::WebPage::createPlugin):
-        * DumpRenderTree/qt/DumpRenderTree.h:
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-
-2009-11-25  Yuzo Fujishima  <yuzo@google.com>
-
-        Reviewed by Eric Seidel.
-
-        Update pywebsocket to 0.4.2
-
-        Update pywebsocket to 0.4.2
-        https://bugs.webkit.org/show_bug.cgi?id=31861
-
-        * pywebsocket/example/echo_client.py:
-        * pywebsocket/example/echo_wsh.py:
-        * pywebsocket/mod_pywebsocket/__init__.py:
-        * pywebsocket/mod_pywebsocket/dispatch.py:
-        * pywebsocket/mod_pywebsocket/msgutil.py:
-        * pywebsocket/mod_pywebsocket/standalone.py:
-        * pywebsocket/setup.py:
-        * pywebsocket/test/test_dispatch.py:
-        * pywebsocket/test/test_msgutil.py:
-
-2009-11-25  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add unit test for mark-fixed
-        https://bugs.webkit.org/show_bug.cgi?id=31896
-
-        * Scripts/modules/commands/commandtest.py: Added.
-        * Scripts/modules/commands/queries_unittest.py:
-        * Scripts/modules/commands/upload_unittest.py: Added.
-        * Scripts/modules/mock_bugzillatool.py:
-        * Scripts/run-webkit-unittests:
-
-2009-11-25  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        bugzilla-tool should have a mark-fixed command
-        https://bugs.webkit.org/show_bug.cgi?id=31853
-
-        Pretty simple stuff.
-
-        * Scripts/modules/commands/upload.py:
-
-2009-11-25  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        'bugzilla-tool help' should only show common commands like how 'git help' does
-        https://bugs.webkit.org/show_bug.cgi?id=31772
-
-        I also took this opportunity to make 'help' a real Command.
-        Making 'help' a real command required adding Command.tool (which we've wanted to do for a while).
-
-        * Scripts/bugzilla-tool:
-         - change should_show_command_help to should_show_in_main_help
-        * Scripts/modules/commands/download.py:
-         - Mark commands as being shown in main help or not.
-         - show_in_main_help = False is not required (default is false),
-           but it seemed to make the commands more self-documenting.
-        * Scripts/modules/commands/queries.py: ditto
-        * Scripts/modules/commands/queues.py: ditto
-        * Scripts/modules/commands/upload.py: ditto
-        * Scripts/modules/multicommandtool.py:
-         - Make Command hold a pointer to tool in self.tool.  Most Command
-           subclasses do not take advantage of this yet, but it was required
-           for HelpCommand to be able to reach the tool from _help_epilog().
-         - Move MultiCommandTool._standalone_help_for_command to Command.standalone_help
-         - Move MultiCommandTool._help_epilog to Command._help_epilog
-         - Move "help" logic into HelpCommand.execute()
-         - Change should_show_command_help to should_show_in_main_help and add a default implementation.
-        * Scripts/modules/multicommandtool_unittest.py:
-         - Test hiding of Commands in --help, and that all commands are shown in 'help --all-commands'
-
-2009-11-25  Brian Weinstein  <bweinstein@apple.com>
-
-        Reviewed by Dan Bernstein.
-        
-        Patch by Mark Rowe.
-
-        The buildbots are failing on Windows because when they were upgraded
-        to 4.0.4, Apple Application Support was not in their path. Add it to
-        the path to fix the buildots.
-
-        * Scripts/webkitdirs.pm:
-
-2009-11-25  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by David Kilzer.
-
-        run-webkit-tests doesn't accept directories/files with --skipped=only parameter
-        https://bugs.webkit.org/show_bug.cgi?id=31799
-
-        * Scripts/run-webkit-tests: Fixed.
-
-2009-11-25  Zoltan Horvath  <zoltan@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Change run_command to give back stderr by default
-        https://bugs.webkit.org/show_bug.cgi?id=31734
-
-        Change run_command to give back stderr by default.
-        Set run_commands's 'svn-create-patch' calling to put only the stdout into the patches.
-        Change the related unittest call.
-
-        * Scripts/modules/scm.py:
-        * Scripts/modules/scm_unittest.py:
-
-2009-11-25  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Centralize required argument parsing in Command
-        https://bugs.webkit.org/show_bug.cgi?id=31872
-
-        * Scripts/modules/commands/download.py: remove custom required arg message.
-        * Scripts/modules/commands/upload.py: ditto.
-        * Scripts/modules/multicommandtool.py:
-         - Add _parse_required_arguments.
-         - Pass program name off to OptionParser.
-         - Add name() for access to tool name.
-         - Add check_arguments_and_execute and make it return a return code.
-         - Replace a couple uses of + with %.
-        * Scripts/modules/multicommandtool_unittest.py: test _parse_required_arguments
-
-2009-11-25  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Abstract out capturing stdout/stderr into a new OutputCapture class for re-use among the various unit tests.
-        https://bugs.webkit.org/show_bug.cgi?id=31870
-
-        * Scripts/modules/commands/queries_unittest.py: Use the new class.
-        * Scripts/modules/multicommandtool_unittest.py: Ditto.
-        * Scripts/modules/outputcapture.py: Added.
-
-2009-11-24  Dmitry Titov  <dimich@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Add ENABLE_SHARED_SCRIPT feature define and flag for build-webkit
-        https://bugs.webkit.org/show_bug.cgi?id=31444
-
-        * Scripts/build-webkit:
-
-2009-11-24  Chris Marrin  <cmarrin@apple.com>
-
-        Reviewed by Simon Fraser.
-
-        Changes the way 3D_RENDERING and ACCELERATED_COMPOSITING related tests are excluded
-        https://bugs.webkit.org/show_bug.cgi?id=27314
-        
-        Now the script allows the directories with these tests to be included on all
-        platforms but Mac, where they behave the same as always. For all other platforms
-        the tests need to be excluded using the Skipped files, which is currently done
-        for all platforms (including win since we're not turned on yet)
-
-        * Scripts/webkitdirs.pm:
-
-2009-11-24  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        queries_unittest.py should test command output
-        https://bugs.webkit.org/show_bug.cgi?id=31845
-
-        * Scripts/modules/commands/queries_unittest.py:
-         - Capture stdout and stderr and compare with expected strings.
-
-2009-11-24  Simon Fraser  <simon.fraser@apple.com>
-
-        No Review.
-
-        Fix spelling error ("depenedencies").
-
-        * Scripts/build-webkit:
-
-2009-11-24  Mark Rowe  <mrowe@apple.com>
-
-        Land the configuration that includes the two debug GTK Linux builders.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2009-11-24  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/31840> bisect-builds broke after r50080
-
-        Reviewed by Dan Bernstein.
-
-        * Scripts/bisect-builds:
-        (mountAndRunNightly): Switched back to using backticks to run
-        the hdiutil command since exec() will terminate the existing
-        script, which is not what we want.  Store the output of
-        File::Spec->devnull() in a variable for use in the hdiutil
-        detach commands.
-
-2009-11-23  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Include "config.h" to meet Coding Style Guidelines
-        https://bugs.webkit.org/show_bug.cgi?id=31792
-
-        * DumpRenderTree/pthreads/JavaScriptThreadingPthreads.cpp:
-        * DumpRenderTree/qt/jsobjects.cpp:
-        * DumpRenderTree/win/DRTDesktopNotificationPresenter.cpp:
-
-2009-11-23  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
-
-        Reviewed by Oliver Hunt.
-
-        Implement new required function to pass test we used to pass. This
-        change is required since r51294.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setAllowUniversalAccessFromFileURLs):
-
-2009-11-23  Jakub Wieczorek  <faw217@gmail.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] DRT: dumpBackForwardList() does not work properly with non-file URLs.
-        https://bugs.webkit.org/show_bug.cgi?id=31775
-
-        LayoutTestController::dumpBackForwardList() should work with local URLs
-        as well as with normal URLs (in http tests for instance).
-        Currently it does not output the latter properly.
-
-        Unskip a bunch of passing http/navigation tests.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::dumpHistoryItem):
-
-2009-11-22  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        ARIA: support aria-flowto
-        https://bugs.webkit.org/show_bug.cgi?id=31762
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (ariaFlowToElementAtIndexCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::ariaFlowToElementAtIndex):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::ariaFlowToElementAtIndex):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::ariaFlowToElementAtIndex):
-
-2009-11-22  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Kenneth Christiansen.
-
-        [Qt] fast/history/back-forward-reset-after-error-handling.html failing due to WorkQueue not being un-frozen
-        https://bugs.webkit.org/show_bug.cgi?id=31638
-
-        Unfreeze WorkQueue after each test execution.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-
-2009-11-22  Jakub Wieczorek  <faw217@gmail.com>
-
-        Reviewed by Adam Barth.
-
-        [Qt] DumpRenderTree should explicitly ignore any SSL certificate errors
-        for localhost and 127.0.0.1.
-        https://bugs.webkit.org/show_bug.cgi?id=31783
-
-        Unskip the http/tests/ssl/verify-ssl-enabled.php test, which is passing now.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::NetworkAccessManager::NetworkAccessManager):
-        (WebCore::NetworkAccessManager::sslErrorsEncountered):
-        (WebCore::WebPage::WebPage):
-        * DumpRenderTree/qt/DumpRenderTree.h:
-
-2009-11-22  Chris Evans  <cevans@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Disable access to file:/// directory listings
-        https://bugs.webkit.org/show_bug.cgi?id=31329
-
-        Implemented setAllowUniversalAccessFromFileURLs to support testing of
-        file URL security.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setAllowUniversalAccessFromFileURLsCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setAllowUniversalAccessFromFileURLs):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setAllowUniversalAccessFromFileURLs):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setAllowUniversalAccessFromFileURLs):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setAllowUniversalAccessFromFileURLs):
-
-2009-11-22  Jakub Wieczorek  <faw217@gmail.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Fix the timeout of fast/frames/frame-navigation.html
-        https://bugs.webkit.org/show_bug.cgi?id=31638
-
-        The test is timeouting, because it uses the WorkQueue to load a document in one
-        of the child frames and once the loading is finished, the DRT does not dump the
-        tree. This is because it waits for the QWebFrame::loadFinished() signal from
-        the main frame, while it should connect to QWebPage::loadFinished().
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-
-2009-11-21  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool --help spews way too much text
-        https://bugs.webkit.org/show_bug.cgi?id=31771
-
-        * Scripts/bugzilla-tool:
-         - Remove self.cached_scm initialization hack.
-        * Scripts/modules/buildbot.py:
-         - Make default_host accessible to callers.
-        * Scripts/modules/commands/download.py:
-         - Phrase help for all commands consistently and remove spurious help text punctuation.
-        * Scripts/modules/commands/queries.py: Ditto.
-        * Scripts/modules/commands/queues.py: Ditto.
-        * Scripts/modules/commands/upload.py: Ditto.
-        * Scripts/modules/multicommandtool.py:
-         - Add HelpPrintingOptionParser.format_epilog to replace
-           NonWrappingEpilogIndentedHelpFormatter and allow us to lazily initialize
-           per-command help (thus removing the need for the cached_scm hack in BugzillaTool).
-         - Make --help only show a list of commands like "svn help" and "git help" do --
-           previously --help was listing all commands and options.
-         - Sort list of commands alphabetically.
-
-2009-11-21  Eric Seidel  <eric@webkit.org>
-
-        No review.  Fixing a typo from the previous patch for bug 31767.
-
-        AbstractQueue.run_bugzilla_tool throws an exception
-        https://bugs.webkit.org/show_bug.cgi?id=31769
-
-        * Scripts/modules/commands/queues.py:
-
-2009-11-21  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue fails to run with "permissions error" due to bad bugzilla-tool path
-        https://bugs.webkit.org/show_bug.cgi?id=31767
-
-        What we really want to test is BugzillaTool.path() instead of TrivialTool.path().
-        Since we don't have a good way to test BugzillaTool pieces, I've
-        left out a test for now.
-
-        * Scripts/bugzilla-tool:
-         - Add a path() implementation to expose bugzilla-tool's __file__ path to commit-queue.
-        * Scripts/modules/commands/queues.py:
-         - Use tool.path() instead of __file__.
-        * Scripts/modules/multicommandtool.py:
-         - Add a new path() method to MultiComandTool.
-        * Scripts/modules/multicommandtool_unittest.py:
-         - Provide a path() method.  Little point in testing this mock implementation.
-
-2009-11-21  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed "build" fix.  Turns out I was testing the wrong copy of
-        WebKitTools.
-
-        * Scripts/modules/commands/download.py:
-
-2009-11-21  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Convert check-style to use LandingSequence
-        https://bugs.webkit.org/show_bug.cgi?id=31763
-
-        Instead of manipulating the working copy by hand, we should use the
-        LandingSequence in CheckStyle.  This will make this code eaiser to
-        test.
-
-        * Scripts/modules/commands/download.py:
-
-2009-11-20  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Unit test query commands
-        https://bugs.webkit.org/show_bug.cgi?id=31755
-
-        These tests are pretty rough, but hopefully they'll grow.
-
-        * Scripts/modules/commands/queries_unittest.py: Added.
-        * Scripts/modules/mock_bugzillatool.py: Added.
-        * Scripts/run-webkit-unittests:
-
-2009-11-20  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Fix a bunch of unit test regressions from our recent bugzilla-toll hacking
-        https://bugs.webkit.org/show_bug.cgi?id=31758
-
-        * Scripts/modules/multicommandtool.py:
-         - Allow passing of explicit commands to MultiCommandTool.__init__
-        * Scripts/modules/multicommandtool_unittest.py:
-         - Use new Command.name naming system.
-         - Test Command auto-discovery.
-        * Scripts/modules/workqueue.py:
-         - bug_id no longer exists, use patch['bug_id'] instead.
-        * Scripts/modules/workqueue_unittest.py:
-         - WorkQueues require names now.
-         - should_proceed_with_work_item must return a patch object.
-
-2009-11-20  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Beth Dakin.
-
-        WAI-ARIA: add support for aria-owns
-        https://bugs.webkit.org/show_bug.cgi?id=31702
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (ariaOwnsElementAtIndexCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::ariaOwnsElementAtIndex):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::ariaOwnsElementAtIndex):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::ariaOwnsElementAtIndex):
-
-2009-11-20  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Fix exception thrown when running the commit-queue.
-
-        * Scripts/modules/statusbot.py: patch is optional.
-        * Scripts/modules/workqueue.py: WorkQUeue requires a name.
-
-2009-11-20  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Teach the StatusBot how to support more than just the commit-queue
-        https://bugs.webkit.org/show_bug.cgi?id=31754
-
-        * Scripts/modules/workqueue.py: Another typo.
-
-2009-11-20  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Teach the StatusBot how to support more than just the commit-queue
-        https://bugs.webkit.org/show_bug.cgi?id=31754
-
-        * Scripts/modules/commands/queues.py: Fix silly typo.
-
-2009-11-20  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Teach the StatusBot how to support more than just the commit-queue
-        https://bugs.webkit.org/show_bug.cgi?id=31754
-
-        * CommitQueueStatus/index.yaml:
-         - Add indices required for the new queries.
-        * CommitQueueStatus/queue_status.py:
-         - Add a patch-status page and move update_status to update-status.
-         - Only display "commit-queue" status records for the commit-queue.
-         - Add support for a queue_name property on status records.
-         - Fix _int_from_request to actually work.
-        * CommitQueueStatus/update_status.html:
-         - Add support for a queue_name on status records.
-         - Remove unused list of bug ids.
-         * Scripts/modules/commands/queues.py
-          - Make the queues pass the patch instead of the bug_id to StatusBot.
-        * Scripts/modules/statusbot.py:
-         - Support passing the queue_name to the status updates.
-         - Support fetching patch status with patch_status().
-        * Scripts/modules/workqueue.py:
-         - Pass the patch to the StatusBot instead of the bug_id.
-         - Let WorkQueues have a name.
-
-2009-11-20  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Move bugzilla-tool commands into their own file
-        https://bugs.webkit.org/show_bug.cgi?id=31752
-
-        This will let us write unit tests.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/commands/__init__.py: Added.
-        * Scripts/modules/commands/download.py: Added.
-        * Scripts/modules/commands/queries.py: Added.
-        * Scripts/modules/commands/queues.py: Added.
-        * Scripts/modules/commands/upload.py: Added.
-        * Scripts/modules/grammar.py: Added.
-
-2009-11-20  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        BuildQueue should check if the tree is currently buildable
-        https://bugs.webkit.org/show_bug.cgi?id=31744
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/landingsequence.py:
-        * Scripts/modules/webkitlandingscripts.py:
-
-2009-11-20  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Move prepare_clean_working_directory into the LandingSequence
-        https://bugs.webkit.org/show_bug.cgi?id=31743
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/landingsequence.py:
-
-2009-11-20  Yael Aharon  <yael.aharon@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        NPN_ReloadPlugins does not reload the page even if reloadPages is true.
-        https://bugs.webkit.org/show_bug.cgi?id=30460
-
-        Added code for calling NPN_ReloadPlugins with reloadPages true and false.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (pluginInvoke):
-
-2009-11-20  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Pass the port information to the child process
-        https://bugs.webkit.org/show_bug.cgi?id=31736
-
-        We need to do this so the child process knows what to build!
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/landingsequence.py:
-        * Scripts/modules/webkitport.py:
-        * Scripts/modules/webkitport_unittest.py:
-
-2009-11-20  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Support Qt port in build-queue
-        https://bugs.webkit.org/show_bug.cgi?id=31733
-
-        * Scripts/bugzilla-tool:
-
-2009-11-20  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Implement a build-queue
-        https://bugs.webkit.org/show_bug.cgi?id=31725
-
-        Currently this just builds the first 10 patches in the review queue.
-        We'll want to do something smarter soon.
-
-        * Scripts/bugzilla-tool:
-
-2009-11-20  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Make commit-queue and style-queue show up in help
-        https://bugs.webkit.org/show_bug.cgi?id=31724
-
-        We need to store their names on their class to make these commands
-        properly register themselves with MultiCommandTool.
-
-        * Scripts/bugzilla-tool:
-
-2009-11-20  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Implement bugzilla-tool build-attachment
-        https://bugs.webkit.org/show_bug.cgi?id=31722
-
-        This command builds an attachment from bugzilla.  It leaves the built
-        patch in the working copy.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/landingsequence.py:
-        * Scripts/modules/webkitlandingscripts.py:
-
-2009-11-20  Alejandro G. Castro  <alex@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] DRT release event does not create the state correctly
-        https://bugs.webkit.org/show_bug.cgi?id=31717
-
-        * WebKitTools/DumpRenderTree/gtk/EventSender.cpp:
-
-2009-11-20  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        MultiCommandTool should find Command objects automatically instead of with a manual list
-        https://bugs.webkit.org/show_bug.cgi?id=31710
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/multicommandtool.py:
-         - Use some wild python-fu to crawl all the known subclasses of Command.
-
-2009-11-20  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed "build" fix.  Added missing import.
-
-        * Scripts/bugzilla-tool:
-
-2009-11-20  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed "build" fix.  I failed to update LandingSequence.test
-        properly.
-
-        * Scripts/modules/landingsequence.py:
-
-2009-11-20  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Create LandingSequence as the all-sing, all-dance landing class
-        https://bugs.webkit.org/show_bug.cgi?id=31709
-
-        Client can inherit from this class to carefully control exactly which
-        steps they wish to have happen in the landing sequence.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/landingsequence.py: Added.
-        * Scripts/modules/webkitlandingscripts.py: Added.
-
-2009-11-19  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Abstract AbstractPatchProcessingCommand from AbstractPatchLandingCommand
-        https://bugs.webkit.org/show_bug.cgi?id=31707
-
-        This is to help when we implement build-attachment.
-
-        * Scripts/bugzilla-tool:
-
-2009-11-19  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Support Qt port in bugzilla-tool
-        https://bugs.webkit.org/show_bug.cgi?id=31701
-
-        Now we support building with Qt!
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/webkitport.py: Added.
-        * Scripts/modules/webkitport_unittest.py: Added.
-        * Scripts/run-webkit-unittests:
-
-2009-11-19  Zoltan Horvath  <zoltan@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Remove inserting stderr into patch in bugzilla-tool
-        https://bugs.webkit.org/show_bug.cgi?id=29914
-
-        Modify SCM python module's run_command function to avoid return of stderr
-        by default, so stderr won't be inserted into the patches.
-        Modify the related unit test.
-
-        * Scripts/modules/scm.py:
-        * Scripts/modules/scm_unittest.py:
-
-2009-11-19  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool needs per-command help
-        https://bugs.webkit.org/show_bug.cgi?id=31697
-
-        Added support for "bugzilla-tool help command-name"
-        and a unit test to make sure it works.
-
-        * Scripts/modules/multicommandtool.py:
-        * Scripts/modules/multicommandtool_unittest.py:
-
-2009-11-19  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Move MultiCommandTool and Command into a separate file and add some basic unit tests
-        https://bugs.webkit.org/show_bug.cgi?id=31695
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/multicommandtool.py: Added.
-        * Scripts/modules/multicommandtool_unittest.py: Added.
-        * Scripts/run-webkit-unittests:
-
-2009-11-19  Eric Seidel  <eric@webkit.org>
-
-        No review, just adding a FIXME.
-
-        Split out command parsing and help printing from BugzillaTool
-        https://bugs.webkit.org/show_bug.cgi?id=31688
-
-        * Scripts/bugzilla-tool: Add an extra comment about current design failures.
-
-2009-11-19  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Split out command parsing and help printing from BugzillaTool
-        https://bugs.webkit.org/show_bug.cgi?id=31688
-
-        * Scripts/bugzilla-tool:
-         - Add new MultiCommandTool class to contain option parsing and help printing logic.
-         - Rename private methods to use _ pattern.
-         - MultiCommandTool has two abstract methods should_show_command_help and should_execute_command.
-         - 
-
-2009-11-19  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Re-factor help printing to use modern python idioms
-        https://bugs.webkit.org/show_bug.cgi?id=31685
-
-        * Scripts/bugzilla-tool:
-
-2009-11-19  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        commit-queue empty queue logs twice
-        https://bugs.webkit.org/show_bug.cgi?id=31679
-
-        * Scripts/bugzilla-tool:
-
-2009-11-19  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        bugzilla-tool's reviewer/committer rejection message should be clearer
-        https://bugs.webkit.org/show_bug.cgi?id=31126
-
-        Add more explanatory prose to bugzilla-tool's flag permission rejection message.
-
-        * Scripts/modules/bugzilla.py:
-
-2009-11-19  Eric Z. Ayers  <zundel@google.com>
-
-        Reviewed by Pavel Feldman.
-
-        Forces a WM_PAINT event on calling layoutTestController.display()
-        in order to enable the timeline-paint.html test on Windows.
-        ::UpdateWindow() does not force an event becaue the window is 
-        not visible.
-
-        https://bugs.webkit.org/show_bug.cgi?id=31402
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (displayWebView):
-
-2009-11-19  Michelangelo De Simone  <michelangelo@webkit.org>
-
-        No review needed.
-
-        Added myself to committers list.
-
-        * Scripts/modules/committers.py:
-
-2009-11-19  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Bugzilla-tool command classes should match command names
-        https://bugs.webkit.org/show_bug.cgi?id=31666
-
-        I renamed all the commands except CommitMessageForCurrentDiff because
-        the new name would conflict with an existing class.
-
-        * Scripts/bugzilla-tool:
-
-2009-11-19  Pavel Feldman  <pfeldman@chromium.org>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Web Inspector: Implement "show inspector" in WebKit GTK
-        API and enable console tests.
-
-        https://bugs.webkit.org/show_bug.cgi?id=31669
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::showWebInspector):
-
-2009-11-19  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        Minor refactoring + more documentation.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::clearHistory):
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-
-2009-11-19  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Ignore websocket tests when --no-http is specified.
-        https://bugs.webkit.org/show_bug.cgi?id=31662
-
-        * Scripts/run-webkit-tests:
-
-2009-11-18  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Normalize ' and " in bugzilla-tool
-        https://bugs.webkit.org/show_bug.cgi?id=31655
-
-        We decided " is better than ' and we should be consistent.
-
-        * Scripts/bugzilla-tool:
-
-2009-11-18  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Remove support for Qt v4.3 or older versions
-        https://bugs.webkit.org/show_bug.cgi?id=29469
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/ImageDiff.pro:
-
-2009-11-18  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        GitTest.test_create_binary_patch fails if /tmp is symlink
-        https://bugs.webkit.org/show_bug.cgi?id=31536
-
-        * Scripts/modules/scm_unittest.py:
-
-2009-11-18  Yaar Schnitman  <yaar@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        Configuration for Chromium Build Slaves.
-
-        https://bugs.webkit.org/show_bug.cgi?id=31442
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2009-11-18  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        workqueue.py results in totally broken commit-queue UI
-        https://bugs.webkit.org/show_bug.cgi?id=31645
-
-        * Scripts/bugzilla-tool:
-         - Remove unneeded use of PatchCollection.
-         - Grab a new copy of the cq'd patches every run of the queue.
-
-2009-11-18  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Make the Mac Geolocation API async.
-
-        Update DRT to use the new async Mac Geolocation API.
-
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:decidePolicyForGeolocationRequestFromOrigin:frame:listener:]):
-
-2009-11-18  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add and option to toggle HTML5 datalist support to build-webkit
-        https://bugs.webkit.org/show_bug.cgi?id=31599
-
-        * Scripts/build-webkit:
-
-2009-11-18  Kevin Watters  <kevinwatters@gmail.com>
-
-        Reviewed by Kevin Ollivier.
-
-        Enable wx plugin support using the Windows implementation as a base.
-        
-        https://bugs.webkit.org/show_bug.cgi?id=31636
-
-        * wx/build/settings.py:
-
-2009-11-18  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        Change the initialization order so that the controllers
-        will be created before exporting them to the JS DOM window.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-
-2009-11-18  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        Fix a code copy and paste error. m_page should be page.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::createWindow):
-
-2009-11-17  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        <http://webkit.org/b/31603> WebSocket server is confused if WebKit tests run from within /tmp on Mac OS X
-
-        * pywebsocket/mod_pywebsocket/dispatch.py: Use os.path.realpath as it returns the canonical path of a file.
-        This prevents symlinks from confusing the descendant check.
-
-2009-11-17  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        <http://webkit.org/b/31602> Failing to start the WebSocket server shouldn’t terminate entire test run
-
-        If the WebSocket server fails to start have DRT load an error page in place of tests that require the
-        server to be up rather than having run-webkit-tests abort immediately.
-
-        * Scripts/run-webkit-tests:
-
-2009-11-17  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        commit-queue is failing to set reviewer in ChangeLogs
-        https://bugs.webkit.org/show_bug.cgi?id=31592
-
-        * Scripts/bugzilla-tool: Clarify the "applying" log message.
-        * Scripts/modules/bugzilla.py:
-         - Add a new _validate_committer_and_reviewer function as a
-           temporary solution until we can make a real Attachment object
-           which knows how to fill in its committer/reviewer fields automatically.
-
-2009-11-17  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Unreviewed buildbot fix.
-
-        Revert part of earlier patch and add comment, as it
-        was causing timeouts on the buildbot.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::notifyDone):
-
-2009-11-17  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Oliver Hunt.
-
-        Make the timeout 15 sec as for the other DRT's and make
-        it print out the same output when a test timeout.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::waitUntilDone):
-        (LayoutTestController::notifyDone):
-        (LayoutTestController::timerEvent):
-
-2009-11-17  Joseph Pecoraro  <joepeck@webkit.org>
-
-        Reviewed by Timothy Hatcher.
-
-        Fixed typos in comments.
-
-        * Scripts/modules/committers.py:
-
-2009-11-17  Pavel Feldman  <pfeldman@chromium.org>
-
-        Reviewed by Timothy Hatcher.
-
-        Web Inspector: Make DRT show web inspector for tests in inspector/ folder.
-        - Updated DRT to show/close inspector for all tests under /inspector
-        - Introduced LayoutTestController::setTimelineProfilingEnabled and
-          WebInspector::setTimelineProfilingEnabled beside setJavaScriptProfilingEnabled
-        - Removed reload on each inspector test
-        - Renamed fast/inspector to fast/inspector-support in order not to trigger
-        inspector for those.
-        - Reimplemented timeline tests in order to get rid of reload there.
-        - Moved tests that don't require harness into the fast group.
-
-        https://bugs.webkit.org/show_bug.cgi?id=31472
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setTimelineProfilingEnabledCallback):
-        (closeWebInspectorCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (shouldOpenWebInspector):
-        (runTest):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setTimelineProfilingEnabled):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (shouldOpenWebInspector):
-        (runTest):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setTimelineProfilingEnabled):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (shouldOpenWebInspector):
-        (runTest):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setTimelineProfilingEnabled):
-
-2009-11-17  Oliver Hunt  <oliver@apple.com>
-
-        Reviewed by Maciej Stachowiak.
-
-        Incorrect use of JavaScriptCore API in DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=31577
-
-        Return undefined rather than a literal null.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (setSelectedTextRangeCallback):
-        (incrementCallback):
-        (decrementCallback):
-        (showMenuCallback):
-
-2009-11-16  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Beth Dakin.
-
-        AX: aria-labelledby duplicates some of its WAI-ARIA label
-        https://bugs.webkit.org/show_bug.cgi?id=31565
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (titleUIElementCallback):
-        (getIsValidCallback):
-        (AccessibilityUIElement::getJSClass):
-
-2009-11-16  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        r50942 broke output from created windows. Make the
-        m_enableTextOutput a member of the DRT and not the
-        WebPage.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::WebPage::WebPage):
-        (WebCore::WebPage::javaScriptAlert):
-        (WebCore::WebPage::javaScriptConsoleMessage):
-        (WebCore::WebPage::javaScriptConfirm):
-        (WebCore::WebPage::javaScriptPrompt):
-        (WebCore::WebPage::acceptNavigationRequest):
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::open):
-        (WebCore::DumpRenderTree::createWindow):
-        * DumpRenderTree/qt/DumpRenderTree.h:
-        (WebCore::DumpRenderTree::setTextOutputEnabled):
-        (WebCore::DumpRenderTree::isTextOutputEnabled):
-        (WebCore::WebPage::shouldInterruptJavaScript):
-        (WebCore::WebPage::isTextOutputEnabled):
-        (WebCore::WebPage::setViewGeometry):
-
-2009-11-16  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Moved DumpRenderTree/gtk/TestNetscapePlugin to DumpRenderTree/unix/TestNetscapePlugin
-        as the implementation is being used by at least Qt and Gtk+.
-
-        Update buildsystems as well.
-
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * DumpRenderTree/unix/TestNetscapePlugin/ForwardingHeaders/WebKit/npapi.h:
-        * DumpRenderTree/unix/TestNetscapePlugin/ForwardingHeaders/WebKit/npfunctions.h:
-        * DumpRenderTree/unix/TestNetscapePlugin/ForwardingHeaders/WebKit/npruntime.h:
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        * GNUmakefile.am:
-
-2009-11-16  Yuzo Fujishima  <yuzo@google.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Disable wss until all platforms support pyOpenSSL
-
-        https://bugs.webkit.org/show_bug.cgi?id=31479
-
-        * Scripts/run-webkit-tests:
-
-2009-11-14  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Kenneth Christiansen.
-
-        [Qt] Implement load error pages support for Qt's DRT.
-        https://bugs.webkit.org/show_bug.cgi?id=31509
-
-        For now, it will not be a default feature, and layout tests
-        that want to make use of this have to explicitily call
-        'handleErrorPages();' for the test source.
-
-        Any of the other DumpRenderTree's (mac, win and gtk)
-        support handling error pages. Qt's will be the first.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::WebPage::supportsExtension):
-        (WebCore::WebPage::extension):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController::shouldHandleErrorPages):
-        (LayoutTestController::handleErrorPages):
-
-2009-11-16  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Rename the --commit-queue flag on land-* now that the commit-queue needs no special treatment
-        https://bugs.webkit.org/show_bug.cgi?id=31549
-
-        Renamed --commit-queue to --non-interactive in most places
-        and remove the code in land-patches which is no longer needed.
-
-        * Scripts/bugzilla-tool:
-
-2009-11-16  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        The commit-queue should use land-attachment
-        https://bugs.webkit.org/show_bug.cgi?id=31548
-
-        * Scripts/bugzilla-tool:
-
-2009-11-16  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Convert CommitQueue over to PatchCollection
-        https://bugs.webkit.org/show_bug.cgi?id=31547
-
-        Also fixes a bug in workqueue and adds a test!
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/workqueue.py:
-        * Scripts/modules/workqueue_unittest.py:
-
-2009-11-16  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Move StyleQueue over to using PatchCollection
-        https://bugs.webkit.org/show_bug.cgi?id=31544
-
-        That's what the class it's for.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/patchcollection.py:
-        * Scripts/modules/patchcollection_unittest.py:
-
-2009-11-16  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool needs a land-attachment command
-        https://bugs.webkit.org/show_bug.cgi?id=31546
-
-        * Scripts/bugzilla-tool:
-         - Move all the logic into AbstractLandingCommand and
-           add a new LandAttachment command subclass.
-         - Split out _collect_patches_by_bug logging from _fetch_list_of_patches_to_land.
-
-2009-11-16  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Move more patch-landing code into WebKitLandingScripts in preparation for land-attachment
-        https://bugs.webkit.org/show_bug.cgi?id=31543
-
-        Just moving code and updating the one caller to use WebKitLandingScripts instead of 'self'.
-
-        * Scripts/bugzilla-tool:
-
-2009-11-16  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Disable the style queue from posting to the commit queue status page.
-
-        * Scripts/bugzilla-tool:
-
-2009-11-16  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Implement PatchCollection
-        https://bugs.webkit.org/show_bug.cgi?id=31541
-
-        This class holds a set of patches and lets clients iterate through
-        them.  Optionally, clients can install a filter.
-
-        * Scripts/modules/patchcollection.py: Added.
-        * Scripts/modules/patchcollection_unittest.py: Added.
-        * Scripts/run-webkit-unittests:
-
-2009-11-16  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool land-patches will close bugs with patches r=?
-        https://bugs.webkit.org/show_bug.cgi?id=28230
-
-        The commit-queue shouldn't close patches with outstanding reviews on them,
-        even if many reviewers seem to be against multi-patch bugs.
-
-        * Scripts/bugzilla-tool:
-
-2009-11-16  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool check-style should work with attachment ids instead of bug ids
-        https://bugs.webkit.org/show_bug.cgi?id=31540
-
-        * Scripts/bugzilla-tool:
-
-2009-11-16  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        WorkQueue is the only place that should know about special exit codes
-        https://bugs.webkit.org/show_bug.cgi?id=31534
-
-        Move LandPatchesFromBugs.handled_error to WorkQueue.exit_after_handled_error
-        and add tests for handling exit codes.
-        I also cleaned up workqueue_unittest.py more.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/workqueue.py:
-        * Scripts/modules/workqueue_unittest.py:
-
-2009-11-16  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Re-factor workqueue_unittest to allow for more than one test.
-        https://bugs.webkit.org/show_bug.cgi?id=31535
-
-        * Scripts/modules/workqueue_unittest.py:
-
-2009-11-16  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        land-patches needs to be re-factored into smaller chunks
-        https://bugs.webkit.org/show_bug.cgi?id=31532
-
-        * Scripts/bugzilla-tool: fix a couple obvious typos.
-
-2009-11-16  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        land-patches needs to be re-factored into smaller chunks
-        https://bugs.webkit.org/show_bug.cgi?id=31532
-
-        The next patch will move these methods into WebKitLandingScripts.
-
-        * Scripts/bugzilla-tool:
-         - Split out _land_patch and _close_bug_if_no_active_patches.
-
-2009-11-16  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Fix silly copy-and-paste code.  I am a terrible coder.
-
-        * Scripts/modules/bugzilla.py:
-
-2009-11-16  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Implement a StyleQueue
-        https://bugs.webkit.org/show_bug.cgi?id=31537
-
-        The first iteration of the style queue only produces output locally.
-        There is also a limit of 10 patches because it's not that useful to
-        iterate through the entire review queue at this point.  We can remove
-        the limit later.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/bugzilla.py:
-
-2009-11-16  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Unit test WorkQueue
-        https://bugs.webkit.org/show_bug.cgi?id=31531
-
-        Adds basic unit testing for WorkQueue.  Just runs through one cycle.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/statusbot.py:
-        * Scripts/modules/workqueue.py:
-        * Scripts/modules/workqueue_unittest.py: Added.
-        * Scripts/run-webkit-unittests:
-
-2009-11-16  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool land-diff should know how to parse bug ids out of ChangeLogs
-        https://bugs.webkit.org/show_bug.cgi?id=31530
-
-        * Scripts/bugzilla-tool:
-
-2009-11-16  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool needs apply-attachment
-        https://bugs.webkit.org/show_bug.cgi?id=31528
-
-        * Scripts/bugzilla-tool:
-         - Add ApplyAttachment command.
-         - Abstract applying code into WebKitApplyingScripts.
-         - Rename setup_for_landing to prepare_clean_working_directory and make local_commit checking optional.
-        * Scripts/modules/bugzilla.py:
-         - Add fetch_attachment and bug_id_for_attachment_id.
-        * Scripts/modules/bugzilla_unittest.py:
-         - Add test for new parsing.
-         - Fix previous parsing test which broke with Adam's check-style patch (bug 31515).
-
-2009-11-16  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Document check-style's use of force_clean.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/scm.py:
-
-2009-11-16  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Move WorkQueue to its own file
-        https://bugs.webkit.org/show_bug.cgi?id=31529
-
-        WorkQueue and WorkQueueDelegate are separate concerns from
-        bugzilla-tool.  Also added a missing include to logging.py.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/logging.py:
-        * Scripts/modules/workqueue.py:
-
-2009-11-16  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Move OutputTee to logging.py.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/logging.py:
-
-2009-11-15  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Refactor bugzilla-tool to allow for multiple queues
-        https://bugs.webkit.org/show_bug.cgi?id=31513
-
-        Divide the commit queue class into three class to make creating
-        additional queues easier.
-
-        * Scripts/bugzilla-tool:
-
-2009-11-15  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        svn-apply may not handle git patches created by bugzilla-tool
-        https://bugs.webkit.org/show_bug.cgi?id=31457
-
-        * Scripts/modules/scm.py:
-        * Scripts/modules/scm_unittest.py:
-
-2009-11-15  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        bugzilla-tool should post git binary diff
-        https://bugs.webkit.org/show_bug.cgi?id=31458
-
-        Add --binary option to Git.create_patch.
-
-        * Scripts/modules/scm.py:
-        * Scripts/modules/scm_unittest.py:
-
-2009-11-15  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Add bugzilla-tool check-style
-        https://bugs.webkit.org/show_bug.cgi?id=31515
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/bugzilla.py:
-
-2009-11-13  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        Make the Qt Linux only --valgrind feature, suppress errors
-        defined in the SuppressedValgrindErrors file.
-
-        * Scripts/run-webkit-tests:
-
-2009-11-13  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        Set the locale to C and not to the current one in use on the system.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-
-2009-11-13  Adam Roben  <aroben@apple.com>
-
-        Add support for
-        http/tests/security/isolatedWorld/didClearWindowObject.html
-
-        Fixes <http://webkit.org/b/31124> Tell the WebFrameLoadDelegate when
-        window objects in isolated worlds are cleared
-
-        Reviewed by Dave Hyatt.
-
-        * DumpRenderTree/mac/DumpRenderTreeMac.h: Declared worldIDForWorld.
-
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate didClearWindowObjectInStandardWorldForFrame:]):
-        Added. Moved code here from -webView:didClearWindowObject:forFrame:.
-        (-[FrameLoadDelegate didClearWindowObjectForFrame:inIsolatedWorld:]):
-        Added. Sets a __worldID property on the global object whose value is
-        the ID of this world.
-        (-[FrameLoadDelegate webView:didClearWindowObjectForFrame:inScriptWorld:]):
-        Respond to this new delegate callback by calling through to one of the
-        above new methods.
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (worldMap): Added. Returns a HashMap containing all the worlds we've
-        created.
-        (worldIDForWorld): Added. Returns the ID for this world, or 0 if we
-        haven't kept track of this world.
-        (LayoutTestController::evaluateScriptInIsolatedWorld): Use worldMap()
-        instead of declaring our own.
-
-        * DumpRenderTree/win/DumpRenderTreeWin.h: Declared worldIDForWorld.
-
-        * DumpRenderTree/win/FrameLoadDelegate.cpp:
-        (FrameLoadDelegate::didClearWindowObject): Moved code from hear to
-        didClearWindowObjectForFrameInStandardWorld.
-        (FrameLoadDelegate::didClearWindowObjectForFrameInScriptWorld):
-        Respond to this new delegate callback by calling through to one of the
-        below new methods.
-        (FrameLoadDelegate::didClearWindowObjectForFrameInIsolatedWorld):
-        Added. Sets a __worldID property on the gobal object whose value is
-        the ID of this world.
-        (FrameLoadDelegate::didClearWindowObjectForFrameInStandardWorld):
-        Added. Moved code here from didClearWindowObject.
-
-        * DumpRenderTree/win/FrameLoadDelegate.h: Added the
-        didClearWindowObjectForFrame* functions.
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (worldMap): Added. Returns a HashMap containing all the worlds we've
-        created.
-        (worldIDForWorld): Added. Returns the ID of this world, or 0 if we
-        haven't kept track of this world.
-        (LayoutTestController::evaluateScriptInIsolatedWorld): Use worldMap()
-        instead of declaring our own.
-
-2009-11-13  Adam Roben  <aroben@apple.com>
-
-        Finish replacing worldIDs with world objects
-
-        The only remaining use of worldIDs was in a method only used by DRT
-        for the isolated worlds tests.
-
-        Fixes <http://webkit.org/b/31414> Replace worldIDs with world objects
-
-        Reviewed by Mark Rowe.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::evaluateScriptInIsolatedWorld):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::evaluateScriptInIsolatedWorld):
-        Updated for changes to WebFrame. Now holds the map of worldID -> world
-        at this level instead of making WebKit do it.
-
-2009-11-13  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Ensure the DRT does not output anything until first test is run
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        * DumpRenderTree/qt/DumpRenderTree.h:
-
-2009-11-13  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Tor Arne Vestbø.
-
-        Clear the undo stack in before each new test run.
-
-        Locally fixes 3 incorrect layouts, 9 timeouts and 7 crashes.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-
-2009-11-13  Andras Becsi  <becsi.andras@stud.u-szeged.hu>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Add WebKitUsesPageCachePreferenceKey overriding support to DRT's LayoutTestController.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::WebPage::resetSettings):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::overridePreference):
-
-2009-11-13  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Update committers.py based on svn records
-        https://bugs.webkit.org/show_bug.cgi?id=31366
-
-        This list was generated using validate-committer-lists from
-        https://bugs.webkit.org/show_bug.cgi?id=30970
-        and makes committers.py current for committers who have
-        committed in the last 3 years.
-
-        * Scripts/modules/committers.py:
-
-2009-11-12  Anantanarayanan G Iyengar  <ananta@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        The document-open.html test was flaky at times. The test invokes the layout test plugin
-        which in its destroy stream handler opens a new document. This basically tears down the
-        stream and the associated plugin instance. The pluginLog function in the layout test
-        plugin attempts to retrieve the window script object on a torn down plugin instance
-        which crashed consistently on windows in the debugger. The functions which issue
-        these logs already have a valid window script object. We now have variants of the pluginLog
-        function which take in a window script object with and without variable arguments. 
-
-        https://bugs.webkit.org/show_bug.cgi?id=31067
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (pluginLogWithWindowObject):
-        (pluginLogWithWindowObjectVariableArgs):
-        (pluginLog):
-        (notifyTestCompletion):
-        (testDocumentOpen):
-        (testWindowOpen):
-
-2009-11-12  Joanmarie Diggs  <joanmarie.diggs@gmail.com>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        https://bugs.webkit.org/show_bug.cgi?id=30997
-        [Gtk] Implemment AtkDocument
-
-        Added testing support.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        * DumpRenderTree/AccessibilityUIElement.h:
-        (getDocumentEncodingCallback):
-        (getDocumentURICallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::documentEncoding):
-        (AccessibilityUIElement::documentURI):
-
-2009-11-12  Adam Roben  <aroben@apple.com>
-
-        Replace worldIDs with world objects
-
-        Part of <http://webkit.org/b/31414> Implement new SPI for dealing with
-        user scripts/stylesheets and isolated worlds
-
-        Reviewed by Sam Weinig.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::addUserScript):
-        (LayoutTestController::addUserStyleSheet):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::addUserScript):
-        (LayoutTestController::addUserStyleSheet):
-        Changed these functions to create a new WebJSWorld each time they're
-        called and to pass that world to WebKit.
-
-2009-11-11  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        need to implement aria tree roles
-        https://bugs.webkit.org/show_bug.cgi?id=31284
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (disclosedRowAtIndexCallback):
-        (selectedRowAtIndexCallback):
-        (isEqualCallback):
-        (isAttributeSettableCallback):
-        (isActionSupportedCallback):
-        (disclosedByRowCallback):
-        (hierarchicalLevelCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        (AccessibilityUIElement::isEqual):
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::hierarchicalLevel):
-        (AccessibilityUIElement::disclosedRowAtIndex):
-        (AccessibilityUIElement::selectedRowAtIndex):
-        (AccessibilityUIElement::disclosedByRow):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::getChildAtIndex):
-        (AccessibilityUIElement::disclosedRowAtIndex):
-        (AccessibilityUIElement::selectedRowAtIndex):
-        (AccessibilityUIElement::titleUIElement):
-        (AccessibilityUIElement::parentElement):
-        (AccessibilityUIElement::disclosedByRow):
-        (AccessibilityUIElement::hierarchicalLevel):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::hierarchicalLevel):
-        (AccessibilityUIElement::disclosedRowAtIndex):
-        (AccessibilityUIElement::selectedRowAtIndex):
-        (AccessibilityUIElement::disclosedByRow):
-
-2009-11-11  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        svn-apply can not handle git binary diffs
-        https://bugs.webkit.org/show_bug.cgi?id=26830
-
-        Support "literal" type git binary diffs.
-
-        * Scripts/VCSUtils.pm:
-        * Scripts/modules/scm_unittest.py:
-        * Scripts/svn-apply:
-
-2009-11-11  Dmitry Titov  <dimich@chromium.org>
-
-        Not reviewed, removing duplicate entry for myself in committers.py.
-
-        * Scripts/modules/committers.py:
-
-2009-11-11  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Darin Adler and Mark Rowe.
-
-        https://bugs.webkit.org/show_bug.cgi?id=31200
-        Tests in http/tests/security/mixedContent start to fail when new tests are added
-
-        * DumpRenderTree/mac/DumpRenderTree.mm: (dumpRenderTree): Added a workaround for Tiger bug.
-
-2009-11-11  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
-
-        Reviewed by Jan Alonzo.
-
-        Create, and display a window for the inspector, for inspector
-        tests.
-
-        Need to also show/hide the inspector window to avoid having
-        problems with code assuming it is realized
-        https://bugs.webkit.org/show_bug.cgi?id=31347
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webInspectorShowWindow):
-        (webInspectorCloseWindow):
-        (webInspectorInspectWebView):
-        (createWebView):
-
-2009-11-11  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Unreviewed Qt buildbot fix.
-
-        My previous fix was wrong, so revert that change and fix it by
-        returning when the document of the frame has no document element.
-        Idea is borrowed from mac and win DRT.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::dumpFramesAsText):
-
-2009-11-11  Eric Seidel  <eric@webkit.org>
-
-        Reviewed byg Kenneth Rohde Christiansen.
-
-        Update Kenneth's committer record to include the email he
-        uses on lists.webkit.org.
-
-        * Scripts/modules/committers.py:
-
-2009-11-11  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Several committers use separate email addresses for bugzilla and svn.webkit.org
-        https://bugs.webkit.org/show_bug.cgi?id=31364
-
-        Update records for existing committers to include email addresses
-        used in svn.webkit.org and lists.webkit.org.
-        Most committers use the same email address in all 3 places, but some use
-        separate addresses.  committers.py needs record of each of these addresses.
-
-        * Scripts/modules/committers.py:
-
-2009-11-11  Eric Seidel  <eric@webkit.org>
-
-        No review, adding second email address for an existing committer.
-
-        Add Yong Li's second bugzilla account to his committer record.
-        See: https://bugs.webkit.org/show_bug.cgi?id=27371#c27
-
-        * Scripts/modules/committers.py:
-
-2009-11-11  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        If the frame has no innerText don't append it, and
-        do not add a newline which breaks some cross platform
-        results.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::dumpFramesAsText):
-
-2009-11-11  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        Implement missing functionality in the Gtk/Qt TestNetscapePlugin.
-
-        * DumpRenderTree/gtk/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_new_instance):
-        (webkit_test_plugin_destroy_instance):
-        (webkit_test_plugin_destroy_stream):
-
-2009-11-11  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        Implement the functionality needed by plugins/window-open.html
-
-        * DumpRenderTree/gtk/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_new_instance):
-        (webkit_test_plugin_set_window):
-
-2009-11-11  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Force -graphicssystem raster and -style windows when running DRT
-
-        * DumpRenderTree/qt/main.cpp:
-        * Scripts/run-webkit-tests:
-
-2009-11-11  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        Compute correct library paths for Qt
-
-        * Scripts/webkitdirs.pm:
-
-2009-11-10  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        <http://webkit.org/b/31200> Tests in http/tests/security/mixedContent start to fail when new tests are added
-
-        The first request to an HTTPS URL results in didFailProvisionalLoadWithError being called with an error
-        about the validity of the self-signed certificates used in the regression tests.  We would then add the
-        host to the ignore list for SSL certificate errors and retry the request.  If this happened during a test
-        that had enabled frame load delegate logging this would result in extra log messages being generated,
-        causing the test to fail.
-
-        We address this by explicitly ignoring SSL certificate errors for localhost and 127.0.0.1 before running any
-        tests.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dumpRenderTree):
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate webView:didFailProvisionalLoadWithError:forFrame:]):
-
-2009-11-10  Andras Becsi  <becsi.andras@stud.u-szeged.hu>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Remove obsolete scrollbar policy settings from DRT constructor.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-
-2009-11-10  Philippe Normand  <pnormand@igalia.com>
-
-        Reviewed by Jan Alonzo.
-
-        [GTK] Remove WebSocket configuration from WebKitWebSettings
-        https://bugs.webkit.org/show_bug.cgi?id=31244
-
-        Follow-up of r50724. Don't set the enable-web-socket property
-        anymore.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-
-2009-11-10  Oliver Hunt  <oliver@apple.com>
-
-        Reviewed by Maciej Stachowiak.
-
-        Rename 3D Canvas related classes to use WebGL prefix
-        https://bugs.webkit.org/show_bug.cgi?id=29095
-
-        Checkin new version of do-webcore-rename used to do the WebGL type rename,
-        and upate webkitdirs script to new method of testing for WebGL.
-
-        * Scripts/do-webcore-rename:
-        * Scripts/webkitdirs.pm:
-
-2009-11-09  Oliver Hunt  <oliver@apple.com>
-
-        Reviewed by Geoff Garen.
-
-        Make do-webcore-rename work with git.
-
-        * Scripts/do-webcore-rename:
-
-2009-11-09  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Adding Kenneth to the reviewers list.
-
-        * Scripts/modules/committers.py:
-
-2009-11-09  Martin Robinson  <martin.james.robinson@gmail.com>
-
-        Reviewed by Jan Alonzo.
-
-        [GTK] Expose Page::tabKeyCyclesThroughElements in the API
-        https://bugs.webkit.org/show_bug.cgi?id=30482
-
-        LayoutTestControllerGtk now uses the exposed
-        Page::tabKeyCyclesThroughElements API
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setTabKeyCyclesThroughElements):
-
-2009-11-08  Shu Chang  <Chang.Shu@nokia.com>
-
-        Reviewed by Holger Freyther.
-
-        [Qt] Added support for key code 8 (backspace) in EventSenderQt.
-        This helps to pass the test case below. Also replaced hardcoded
-        code numbers with defined constants.
-        https://bugs.webkit.org/show_bug.cgi?id=31185
-        
-        Test: editing/undo/undo-deleteWord.html
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::keyDown):
-
-2009-11-07  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Holger Freyther.
-
-        [Qt] [DRT] Fix wrong logic in LayoutTestController processWork
-        https://bugs.webkit.org/show_bug.cgi?id=31164
-
-        Fixed wrong logic to assume WorkQueue is done in QT's DRT.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::processWork):
-
-2009-11-05  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Holger Freyther.
-
-        [Qt][DRT] Replace queueScript by queueNonLoadingScript and queueLoadingScript method
-        https://bugs.webkit.org/show_bug.cgi?id=31158
-
-        By invoking a script queue'd by queueScript(), 'true' was beeing returned
-        always, which from WorkQueue prospective means that a load has been started
-        and the queue processing should stop and wait for the load to finish.
-        Spinning it off into a loading and a non-loading variants was the solution
-        adopted by Mac's DRT to work around this problem. The former keeps returning
-        'true' while the later executes the script synchronously and returns 'false'
-        making it possible to the WorkQueue to proceed right away.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::processWork):
-        (LayoutTestController::queueLoadingScript):
-        (LayoutTestController::queueNonLoadingScript):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/qt/WorkQueueItem.h:
-        (LoadingScriptItem::LoadingScriptItem):
-        (LoadingScriptItem::invoke):
-        (NonLoadingScriptItem::NonLoadingScriptItem):
-        (NonLoadingScriptItem::invoke):
-
-2009-11-07  Mark Rowe  <mrowe@apple.com>
-
-        Rubber-stamped by Cameron Zwarich.
-
-        Invoke prepare-ChangeLog via an absolute path rather than assuming it can be found in PATH.
-
-        * Scripts/commit-log-editor:
-
-2009-11-07  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Fix <https://bugs.webkit.org/show_bug.cgi?id=28168>.
-        commit-log-editor does not support all the email address configurations that prepare-Changelog supports
-
-        Move logic for determining the name and email address to use in a ChangeLog entry from
-        prepare-ChangeLog to VCSUtils so that commit-log-editor can use it.  It wants to check
-        whether the author of the patch matches committer, and therefore needs access to the
-        email address that would be used in a ChangeLog entry.
-
-        Based on a patch by Pierre d'Herbemont.
-
-        * Scripts/VCSUtils.pm:
-        * Scripts/commit-log-editor:
-        * Scripts/prepare-ChangeLog:
-        * Scripts/webkitdirs.pm:
-
-2009-11-06  Anantanarayanan G Iyengar  <ananta@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Added functionality to the layout test plugin to invoke document.open and
-        window.open with default arguments. The associated webkit bug is
-        https://bugs.webkit.org/show_bug.cgi?id=31067, which affects Chromium. Basically
-        window.open and document.open calls issued by NPAPI plugins via NPN_Invoke don't
-        work in Chromium (V8) if there is no calling javascript context. To achieve this
-        effect we invoke these functions in the layout test plugin in the NPP_SetWindow
-        for the window.open test case and in NPP_DestroyStream for the document.open test case.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (testDocumentOpen):
-        (testWindowOpen):
-        (pluginAllocate):
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.h:
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.cpp:
-        (NPP_New):
-        (NPP_SetWindow):
-        (NPP_DestroyStream):
-        * DumpRenderTree/win/TestNetscapePlugin/main.cpp:
-        (NPP_New):
-        (NPP_SetWindow):
-        (NPP_NewStream):
-        (NPP_DestroyStream):
-
-2009-11-06  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool crashed with exception
-        https://bugs.webkit.org/show_bug.cgi?id=31092
-
-        * Scripts/modules/bugzilla.py: Change a ',' to a '%' to fix the error.
-
-2009-11-04  Eric Seidel  <eric@webkit.org>
-
-        No review, just add a line which got left out of the patch uploaded for commit.
-
-        commit-queue is crashing when trying to reject patches after unknown failures
-        https://bugs.webkit.org/show_bug.cgi?id=31091
-
-        * Scripts/bugzilla-tool: Set bug_log = None after closing to we don't re-close and crash.
-
-2009-11-04  Adam Roben  <aroben@apple.com>
-
-        Remove bogus else clause in bugzilla-tool
-
-        Fixes <http://webkit.org/b/31125> REGRESSION (r47121): bugzilla-tool
-        create-bug raises exception after entering bug description
-
-        Reviewed by David Kilzer.
-
-        * Scripts/bugzilla-tool:
-        (CreateBug): else clauses are only hit if no exception is raised, so
-        it makes no sense to try to re-raise the exception in an else clause.
-        The exception will automatically be re-raised if it doesn't match any
-        of the except clauses, so we don't have to do anything special here at
-        all to get the desired behavior.
-
-2009-11-04  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Kilzer.
-
-        svn-apply's fixChangeLogPatch function seems broken
-        https://bugs.webkit.org/show_bug.cgi?id=30683
-
-        Update fixChangeLogPatch to be able to handle patches which
-        don't start at line 1.
-        Add unit tests for svn-apply to scm_unittest.py.
-
-        * Scripts/VCSUtils.pm:
-        * Scripts/modules/scm_unittest.py:
-
-2009-11-04  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Beth Dakin.
-
-        Need to implement ARIA role="combobox"
-        https://bugs.webkit.org/show_bug.cgi?id=31096
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (showMenuCallback):
-        (getIsExpandedCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::isExpanded):
-        (AccessibilityUIElement::showMenu):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::isExpanded):
-        (AccessibilityUIElement::showMenu):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::isSelected):
-        (AccessibilityUIElement::isExpanded):
-        (AccessibilityUIElement::showMenu):
-
-2009-11-04  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue is crashing when trying to reject patches after unknown failures
-        https://bugs.webkit.org/show_bug.cgi?id=31091
-
-        * Scripts/bugzilla-tool:
-         - patch['id'] was a copy/paste mistake.  This code has no 'patch' variable
-           so we have to find out what the current patch is by asking bugzilla again.
-         - Discovered that this code was also leaking file descriptors, so fixed that.
-
-2009-11-04  Adam Roben  <aroben@apple.com>
-
-        Make run-webkit-tests work for the Debug_Internal Windows
-        configuration
-
-        In Debug_Internal, DumpRenderTree.exe and ImageDiff.exe have no _debug
-        suffix.
-
-        Fixes <http://webkit.org/b/31123>.
-
-        Reviewed by Sam Weinig.
-
-        * Scripts/run-webkit-tests: Don't add the _debug suffix in
-        Debug_Internal, either.
-
-2009-11-04  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        committers.py needs a way to store non-bugzilla email addresses
-        https://bugs.webkit.org/show_bug.cgi?id=31037
-
-        Make Committer and Reviewer constructors take a single email or a list of emails.
-        Change committer_by_bugzilla_email functions to committer_by_email to support lookup by any email.
-        Expose reviewers(), used by validate-committer-lists on bug 30970.
-
-        * Scripts/modules/committers.py:
-        * Scripts/modules/committers_unittest.py: Added tests for the new code.
-
-2009-11-03  Yuzo Fujishima  <yuzo@google.com>
-
-        Reviewed by David Levin.
-
-        Start/Stop Web Socket and Web Socket Secure servers for layout tests.
-        https://bugs.webkit.org/show_bug.cgi?id=27491
-
-        The test path determination logic is changed to handle websocket and websocket/ssl cases.
-        The logic for non-http (and now also non-websocket) tests is moved toward the end of the if-elsif statement.
-
-        Functions to start or stop Web Socket servers are added.
-
-        * Scripts/run-webkit-tests:
-
-2009-11-03  Eric Seidel  <eric@webkit.org>
-
-        No review, just changing wording of log message.
-
-        Change log string to say "failed" instead of "rejected"
-        when a commit fails due to an out of date checkout.
-        This makes grepping the commit-queue log for rejected patches easier.
-
-        * Scripts/bugzilla-tool:
-
-2009-11-03  Eric Seidel  <eric@webkit.org>
-
-        No review, adding commonly known committers missing from the file.
-
-        * Scripts/modules/committers.py: Add committers found by looking at SVN records.
-
-2009-11-03  Eric Seidel  <eric@webkit.org>
-
-        No review, just sort-order cleanup.
-
-        * Scripts/modules/committers.py: Sort committers/reviewers alphabetically.
-
-2009-11-03  Stephen White  <senorblanco@chromium.org>
-
-        (Unreviewed).
-
-        Add myself to committers.py.
-
-        * Scripts/modules/committers.py:
-
-2009-11-03  Robin Dunn  <robin@alldunn.com>
-
-        Reviewed by Kevin Ollviier.
-
-        Add packaging scripts for Debian-based Linux distros.
-        
-        https://bugs.webkit.org/show_bug.cgi?id=31075
-
-        * wx/packaging/build-debian-installer.py: Added.
-        * wx/packaging/debian: Added.
-
-2009-11-03  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Anders Carlsson and Beth Dakin.
-
-        https://bugs.webkit.org/show_bug.cgi?id=31070
-
-        Added an 'ondestroy' parameter to the test plug-in. When the plug-in is
-        destroyed, it executes the value of the 'ondestroy' parameter as a
-        script.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (pluginAllocate): Initialize onDestroy.
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.h: Define
-        onDestroy.
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.cpp:
-        (NPP_New): Set onDestroy to the value of the 'ondestroy' parameter, if
-        specified.
-        (NPP_Destroy): Execute the value of 'ondestroy' as a script.
-
-2009-11-02  Joanmarie Diggs  <joanmarie.diggs@gmail.com>
-
-        Reviewed by Xan Lopez.
-
-        https://bugs.webkit.org/show_bug.cgi?id=31035
-        [GTK] some accessibility tests hitting assertion in debug builds
-
-        Get the correct Gtk+ object before attempting to turn it into an AtkObject.
-
-        * DumpRenderTree/gtk/AccessibilityControllerGtk.cpp:
-        (AccessibilityController::rootElement):
-
-2009-11-02  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Beth Dakin.
-
-        Support ARIA "tab" roles
-        https://bugs.webkit.org/show_bug.cgi?id=30842
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-
-2009-11-01  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Levin.
-
-        buildbots should use --exit-after-N-failures
-        https://bugs.webkit.org/show_bug.cgi?id=30809
-
-        Make the bots exit after 20 failures to prevent never-ending
-        test runs where every test spends a minute crashing.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2009-11-01  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Eric Seidel.
-
-        Turn on warnings for QtWebKit for gcc
-        https://bugs.webkit.org/show_bug.cgi?id=30958
-
-        * DumpRenderTree/qt/main.cpp: 
-        (crashHandler): Mark function NO_RETURN
-
-2009-11-01  Jessie Berlin  <jberlin@webkit.org>
-
-        Adding myself to the committers list.
-
-        * Scripts/modules/committers.py:
-
-2009-10-30  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        Fix an issue that Adam noticed in DRT.
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::role):
-        Get the length of the role text, and create a buffer dynamically.
-
-2009-10-30  Eric Seidel  <eric@webkit.org>
-
-        No review, rolling out r50105.
-        http://trac.webkit.org/changeset/50105
-
-        This commit was causing:
-        https://bugs.webkit.org/show_bug.cgi?id=30869
-        We'll re-implement the feature a different way.
-
-        * Scripts/bugzilla-tool:
-
-2009-10-29  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        Test for MSAA: Accessibility of headings is not correct
-
-        https://bugs.webkit.org/show_bug.cgi?id=30937
-
-        Reviewed by Adam Roben.
-
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::role):
-        Allow the role returned to be a BSTR.
-        (AccessibilityUIElement::description):
-        Fix a copy/paste error.
-
-2009-10-29  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        Test for MSAA: Accessibility of links is wrong
-
-        https://bugs.webkit.org/show_bug.cgi?id=30928
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (getAccessibilityValueCallback):
-        Return the accessibility value.
-        (AccessibilityUIElement::getJSClass):
-        Added "accessibilityValue" value.
-
-        * DumpRenderTree/AccessibilityUIElement.h:
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::accessibilityValue):
-        Stubbed.
-
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::accessibilityValue):
-        Stubbed.
-
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::accessibilityValue):
-        Get the object's value, and return it as a JS string.
-
-2009-10-30  Kevin Ollivier  <kevino@theolliviers.com>
-
-        Fix typo in command name used by wx build system.
-
-        * wx/build/build_utils.py:
-
-2009-10-30  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Patch v1 is a dumb default name for patches
-        https://bugs.webkit.org/show_bug.cgi?id=30952
-
-        Let's use "Patch" instead.
-
-        * Scripts/bugzilla-tool:
-
-2009-10-30  Andras Becsi  <becsi.andras@stud.u-szeged.hu>
-
-        Unreviewed trivial buildfix.
-
-        [Qt] Buildfix for r50333.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-
-2009-10-30  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Holger Freyther.
-
-        [Qt] Remove qt/WorkQueue.cpp|h in favor of platform independent WorkQueue
-        https://bugs.webkit.org/show_bug.cgi?id=30953
-
-        DumpRenderTree/WorkQueue and DumpRenderTree/qt/WorkQueue share mostly the
-        same implementation. Some Q_ASSERTs differ from ASSERTs basically. Patch
-        makes qt DRT to share this implementation (as gtk and mac ports do).
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/WorkQueue.cpp: Removed.
-        * DumpRenderTree/qt/WorkQueue.h: Removed.
-
-2009-10-30  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Unreviewed potential buildbot fix.
-
-        Second try: Reset page history before running each test.
-
-        Apparently the QWebHistory::clear() keeps the current page
-        in history which is not what we want, so we not additionally
-        sets the history capacity to 0 (forces removing everything)
-        and then sets it back to its original value.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-
-2009-10-30  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Unreviewed potential buildbot fix.
-
-        Reset page history before running each test.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-
-2009-10-30  Roland Steiner  <rolandsteiner@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Remove ENABLE_RUBY guards as discussed with Dave Hyatt and Maciej Stachowiak.
-
-        Bug 28420 -  Implement HTML5 <ruby> rendering
-        (https://bugs.webkit.org/show_bug.cgi?id=28420)
-
-        No new tests (no functional change).
-
-        * Scripts/build-webkit:
-
-2009-10-29  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        Fix “Undefined subroutine” errors in svn-*apply by moving the removeEOL subroutine
-        from the two scripts that define it but don’t use it to the script that uses it but doesn’t
-        define it.
-
-        * Scripts/VCSUtils.pm:
-        * Scripts/svn-apply:
-        * Scripts/svn-unapply:
-
-2009-10-29  Xan Lopez  <xlopez@igalia.com>
-
-        Reviewed by Gustavo Noronha.
-
-        Use the GTK+ main loop instead of rolling our own mini-version of
-        it.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (dump):
-        (runTest):
-        (webViewLoadFinished):
-
-2009-10-29  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Oliver Hunt.
-
-        Implement the Qt version of DRT dumpBackForwardList().
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::dumpHistoryItem):
-        (WebCore::DumpRenderTree::dumpBackForwardList):
-
-2009-10-29  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Implement DRT functionality for Qt introduced in
-        r28690 and r28705.
-
-        - Implemented pathToLocalResource which exposes the functionality of
-        converting a given unix path to the correct location on Windows.
-        - Implemented a way to remove machine-dependent information from paths
-        in layout test results.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::urlSuitableForTestResult):
-        (WebCore::WebPage::javaScriptConsoleMessage):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::pathToLocalResource):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2009-10-28  Roland Steiner  <rolandsteiner@chromium.org>
-
-        Adding myself to the committers list.
-
-        * Scripts/modules/committers.py:
-
-2009-10-28  Chris Fleizach  <cfleizach@apple.com>
-
-        Adding myself to the committers list.
-
-        * Scripts/modules/committers.py:
-
-2009-10-28  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
-
-        Reviewed by Jan Alonzo.
-
-        [GTK] API to start inspector for a WebView
-        https://bugs.webkit.org/show_bug.cgi?id=22551
-
-        Use the new inspector API to implement the LayoutTestController
-        interfaces used to test the inspector.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webInspectorInspectWebView):
-        (createWebView):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::showWebInspector):
-        (LayoutTestController::closeWebInspector):
-        (LayoutTestController::evaluateInWebInspector):
-
-2009-10-28  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        [Qt] WebFrame::counterValueForElementById must not be exposed
-        https://bugs.webkit.org/show_bug.cgi?id=30882
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::counterValueForElementById):
-
-2009-10-28  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Rubberstamped by Oliver Hunt.
-
-        Fix the warning:
-
-        "warning: ignoring return value of 'char* getcwd(char*, size_t)',
-        declared with attribute warn_unused_result".
-
-        by actually checking the result. In the case it is null, an
-        error has occoured, so treat it as the other fatal errors.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::initializeFonts):
-
-2009-10-27  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        Provide a way to get counter values with layoutTestContoller
-        https://bugs.webkit.org/show_bug.cgi?id=30555
-
-        Define layoutTestContoller.counterValueForElementById.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (counterValueForElementByIdCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::counterValueForElementById):
-
-2009-10-27  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Rubberstamped by Oliver Hunt.
-
-        Change two methods to be internal for DRT use only.
-
-        Part of [Qt] Review all new API in Qt 4.6
-        https://bugs.webkit.org/show_bug.cgi?id=29843#c11
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::whiteListAccessFromOrigin):
-
-2009-10-27  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        REGRESSION: svn-apply exits(1) when applying a patch with a file add
-        https://bugs.webkit.org/show_bug.cgi?id=30826
-
-        * Scripts/svn-apply:
-         - Add () around all system() calls.
-         - Use the correct system() == 0 or die instead of system() or die
-         - Add descriptive messages to all die statements.
-
-2009-10-27  Steve Block  <steveblock@google.com>
-
-        Reviewed by NOBODY.
-
-        Adds steveblock@google.com to list of committers.
-
-        * Scripts/modules/committers.py: Adds steveblock@google.com to list of committers.
-
-2009-10-27  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        svn-apply can exit(0) even on patch failure
-        https://bugs.webkit.org/show_bug.cgi?id=29622
-
-        * Scripts/svn-apply:
-         - Add a bunch of "or die" statements, hopefully catching all
-           possible cases where failure could still exit(0).
-
-2009-10-27  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        svn-* scripts should share code through VCSUtils.pm
-        https://bugs.webkit.org/show_bug.cgi?id=30791
-
-        Just moving code into a shared location.
-
-        * Scripts/VCSUtils.pm:
-        * Scripts/prepare-ChangeLog:
-        * Scripts/resolve-ChangeLogs:
-        * Scripts/svn-apply:
-        * Scripts/svn-create-patch:
-        * Scripts/svn-unapply:
-        * Scripts/update-webkit:
-
-2009-10-27  Vadim Zeitlin  <vadim@wxwidgets.org>
-
-        Suppress a huge number of MSVC warnings when building wxWebKit.
-
-        * wx/build/settings.py:
-
-2009-10-26  Eric Seidel  <eric@webkit.org>
-
-        No review, just adding Mike Belshe to the committers list.
-
-        * Scripts/modules/committers.py:
-
-2009-10-26  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Darin Adler.
-
-        Make .rc files compile on Windows without depending on MFC headers
-        https://bugs.webkit.org/show_bug.cgi?id=30750
-
-        * DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin.rc: Use
-        windows.h instead of afxres.h because it exists even when MFC is not 
-        installed, and is all that's needed here.
-
-        * FindSafari/FindSafari.rc: Ditto
-
-2009-10-24  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool post-diff should know how to mark commit-queue=?
-        https://bugs.webkit.org/show_bug.cgi?id=29202
-
-        * Scripts/bugzilla-tool:
-         - Add --commit-queue option to post-diff, post-commits and create-bug.
-        * Scripts/modules/bugzilla.py:
-         - Added support for --commit-queue to add_patch_to_bug and create_bug_with_patch.
-         - Added _fill_attachment_form to share code between add_patch_to_bug and create_bug_with_patch.
-
-2009-10-23  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool commit-queue does not notice modifications to committers.py
-        https://bugs.webkit.org/show_bug.cgi?id=30084
-
-        * Scripts/bugzilla-tool:
-         - Make commit-queue re-exec itself instead of using while(1).
-         - Add a --is-relaunch parameter to commit-queue to bypass initialization on re-launch.
-         - Add a _next_patch() method which calls exec() (and could eventually call update-webkit too).
-
-2009-10-22  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue will get stuck on patches if land-patches terminates unexpectedly
-        https://bugs.webkit.org/show_bug.cgi?id=30634
-
-        * Scripts/bugzilla-tool:
-         - Add a way for land-patches to exit(2) to indicate an error, but one it has handled.
-         - Make commit-queue auto cq- any patch where land-patches exited anything other than '0' or '2'.
-
-2009-10-26  Yuzo Fujishima  <yuzo@google.com>
-
-        Reviewed by Eric Seidel.
-
-        Upgrade pywebsocket to 0.4.1. This will make reusing LayoutTests/fast/js/resources easier, for example.
-
-        https://bugs.webkit.org/show_bug.cgi?id=30763
-
-        * pywebsocket/mod_pywebsocket/__init__.py:
-        * pywebsocket/mod_pywebsocket/dispatch.py:
-        * pywebsocket/mod_pywebsocket/headerparserhandler.py:
-        * pywebsocket/mod_pywebsocket/standalone.py:
-        * pywebsocket/setup.py:
-        * pywebsocket/test/test_dispatch.py:
-
-2009-10-26  Carol Szabo  <carol.szabo@nokia.com>
-
-        Reviewed by David Levin.
-
-        REGRESSION: 2 failures in run-webkit-unittests
-        https://bugs.webkit.org/show_bug.cgi?id=30645
-
-        * Scripts/modules/cpp_style_unittest.py:
-        Fixed a few test scenarios which apparently lost some spaces from 
-        text literals.
-
-2009-10-26  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix. Make sure isQt() doesn't return true if --wx was passed to build-webkit.
-
-        * Scripts/webkitdirs.pm:
-
-2009-10-26  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Unification of using null device in perl scripts.
-        https://bugs.webkit.org/show_bug.cgi?id=30572
-
-        * Scripts/VCSUtils.pm:
-        * Scripts/bisect-builds:
-        * Scripts/resolve-ChangeLogs:
-        * Scripts/run-iexploder-tests:
-        * Scripts/run-jsc:
-        * Scripts/run-mangleme-tests:
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-        Using File::Spec->devnull() instead of hard coded /dev/null.
-
-2009-10-26  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Holger Freyther.
-
-        Reviewers are missing from committers.py
-        https://bugs.webkit.org/show_bug.cgi?id=30733
-
-        * Scripts/modules/committers.py:
-
-2009-10-23  Eric Seidel  <eric@webkit.org>
-
-        No review, only adding Alice to the list of reviewers.
-
-        * Scripts/modules/committers.py:
-
-2009-10-23  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Eric Carlson.
-
-        fast/media/mq-transform-02.html failed on Leopard Commit Bot
-        https://bugs.webkit.org/show_bug.cgi?id=30700
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues): Update QuickTime version check.
-
-2009-10-23  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wxMac 10.4 build fix, needs to link against WebKitSystemInterfaceTiger to get 
-        character measurement APIs that are private on Tiger.
-
-        * wx/build/settings.py:
-
-2009-10-22  Gavin Barraclough  <barraclough@apple.com>
-
-        Reviewed by NOBODY (build fix).
-        Build fix following bug #30696.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::evaluateScriptInIsolatedWorld):
-
-2009-10-22  Gavin Barraclough  <barraclough@apple.com>
-
-        Reviewed by Sam Weinig & Geoff Garen.
-
-        https://bugs.webkit.org/show_bug.cgi?id=30696
-        Enable isolated-worlds tests on mac.
-
-        Add private interface for DRT to invoke execution in a given world.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (evaluateScriptInIsolatedWorldCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::evaluateScriptInIsolatedWorld):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::evaluateScriptInIsolatedWorld):
-
-2009-10-21  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool's "patch failed to download an apply" error should give more information
-        https://bugs.webkit.org/show_bug.cgi?id=30632
-
-        * Scripts/modules/scm.py:
-         - Use the common run_command method instead of custom POpen code.
-         - Make run_command know how to take pipes as input.
-        * Scripts/modules/scm_unittest.py:
-         - Add new tests to cover change.
-         - Also move test_error_handlers into new SCMClassTests so we don't run it 3 times.
-
-2009-10-21  Kent Tamura  <tkent@chromium.org>
-
-        Unreviewed.  Adding myself to the committers list.
-
-        * Scripts/modules/committers.py:
-
-2009-10-21  Robin Dunn  <robin@alldunn.com>
-
-        Reviewed by Kevin Ollivier.
-
-        Update the Windows installer builder to work with Vista / Win 7 and with git.
-        
-        https://bugs.webkit.org/show_bug.cgi?id=30649
-
-        * wx/build/build_utils.py:
-        * wx/packaging/build-mac-installer.py:
-        * wx/packaging/build-win-installer.py:
-        * wx/packaging/wxWebKitInstaller.iss.in:
-
-2009-10-21  Alejandro G. Castro  <alex@igalia.com>
-
-        Reviewed by Gustavo Noronha.
-
-        [GTK] Added conditional code to avoid using
-        gdk_window_get_root_coords if we do not have a gtk+ release newer
-        than 2.17.3.
-        https://bugs.webkit.org/show_bug.cgi?id=30636
-
-        * WebKitTools/DumpRenderTree/gtk/EventSender.cpp:
-
-2009-10-21  Shu Chang  <Chang.Shu@nokia.com>
-
-        Reviewed by Eric Seidel.
-
-        [Qt] Added dummy implementation for keepWebHistory()
-        https://bugs.webkit.org/show_bug.cgi?id=30592
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::keepWebHistory):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2009-10-21  Alejandro G. Castro  <alex@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] Fixed the double click condition, it is not double click if
-        we move in just in one direction.
-        https://bugs.webkit.org/show_bug.cgi?id=30636
-
-        * WebKitTools/DumpRenderTree/gtk/EventSender.cpp:
-
-2009-10-21  Alejandro G. Castro  <alex@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] Initialize the events completly before emitting them.
-        https://bugs.webkit.org/show_bug.cgi?id=30633
-
-        * WebKitTools/DumpRenderTree/gtk/EventSender.cpp:
-
-2009-10-21  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix. Fix for when linking using --as-needed with gcc.
-
-        * wx/browser/wscript:
-
-2009-10-21  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wxMac 10.4 build fix. Build and link against a version of libcurl new enough
-        to support all the features used by CURL backend.
-        
-        * wx/build/settings.py:
-        * wx/install-unix-extras:
-
-2009-10-20  Anton Muhin  <antonm@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Add {ager,antonm,yurys}@chromium.org into committers.py
-        https://bugs.webkit.org/show_bug.cgi?id=30560
-
-        * Scripts/modules/committers.py:
-
-2009-10-20  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Tor Arne Vestbø.
-
-        Make the Netscape Test plugin available to the Qt launcher.
-
-        * Scripts/run-launcher:
-
-2009-10-20  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Reviewed by David Levin.
-
-        Removed WebSocket runtime settings.
-        https://bugs.webkit.org/show_bug.cgi?id=29896
-
-        WebSocket runtime configuration is supported by chromium/v8 only.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-
-2009-10-19  Nate Chapin  <japhet@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Add testFail() to test plugin so we can test our handling of a
-        plugin invoke call returning false.
-
-        https://bugs.webkit.org/show_bug.cgi?id=30239
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp: Add testFail().
-        (pluginInvoke):
-        (testIdentifierToString): Always return true, since returning false will now cause an exception to be thrown.
-
-2009-10-19  Zan Dobersek  <zandobersek@gmail.com>
-
-        Reviewed by Gustavo Noronha.
-
-        Enable DOM pasting when running layout tests.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-
-2009-10-18  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        Use the setPreferredContentsSize method instead
-        of setFixedContentsSize, as the method has been renamed.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::open):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setFixedContentsSize):
-
-2009-10-16  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        https://bugs.webkit.org/show_bug.cgi?id=30456
-        Fixes for new Debug_All Windows build configuration.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (sharedCFURLCache): Use new DEBUG_ALL preprocessor define for library naming.
-        * DumpRenderTree/win/DumpRenderTree.vcproj: Remove unused DEBUG_WEBKIT_HAS_SUFFIX.
-
-2009-10-16  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue status bot should list which buildbot is blocking the queue
-        https://bugs.webkit.org/show_bug.cgi?id=30452
-
-        Add new methods and testing.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/buildbot.py:
-        * Scripts/modules/buildbot_unittest.py:
-
-2009-10-16  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        run-webkit-tests fails when CWD is not inside a WebKit checkout
-        https://bugs.webkit.org/show_bug.cgi?id=30451
-
-        * Scripts/modules/scm.py: in_working_directory shouldn't throw exceptions on failure.
-        * Scripts/modules/scm_unittest.py:
-          - Remove use of original_path (we don't need to restore the CWD).
-          - Don't use '.' to find the webkit checkout, use __file__ instead.
-
-2009-10-16  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Add a Debug_All configuration to build entire stack as debug.
-        Change Debug_Internal to:
-        - stop using _debug suffix for all WebKit/Safari binaries
-        - not use _debug as a DLL naming suffix
-        - use non-debug C runtime lib.
-
-        * DumpRenderTree/DumpRenderTree.sln: Add Debug_All configuration.
-        * DumpRenderTree/win/DumpRenderTree.vcproj: Add Debug_All configuration.
-        * DumpRenderTree/win/ImageDiff.vcproj: Add Debug_All configuration.
-        * DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin.vcproj:
-        Add missing debug.vsprops inherited property sheet.
-        Add Debug_All configuration.
-        * FindSafari/FindSafari.vcproj: Renamed single configuration from "Release" to "all".
-        * WinLauncher/WinLauncher.vcproj:
-        Removed extraneous definitions inherited from vsprops.
-        Add Debug_All configuration.
-
-2009-10-16  Carol Szabo  <carol.szabo@nokia.com>
-
-        Reviewed by David Levin.
-
-        check-webkit-style is wrong about indent checking in namespaces
-        in header files and a few other things
-        https://bugs.webkit.org/show_bug.cgi?id=30362
-
-        The few other things include:
-        + check-webkit-style does not require spaces around the equal sign
-          inside 'if' statements and around binary operators that take 
-          numeric literals.
-        + check-webkit-style reports false errors for the / operator
-          when part of a filename in the #include directive.
-
-        * Scripts/modules/cpp_style.py:
-        Improved indentation checking and space checking around
-        binary operators. While the checks are still not perfect,
-        they are clearly better than before.
-        * Scripts/modules/cpp_style_unittest.py:
-        Added test cases for the newly supported checks and modified old
-        test cases to match the new guidelines
-
-2009-10-16  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wxMSW build fix. Link to MSW library needed by PluginPackageWin.cpp.
-
-        * wx/build/settings.py:
-
-2009-10-15  Yuzo Fujishima  <yuzo@google.com>
-
-        Reviewed by David Levin.
-
-        Add mod_pywebsocket to test Web Sockets.
-        http://code.google.com/p/pywebsocket/
-        https://bugs.webkit.org/show_bug.cgi?id=27490
-
-        * pywebsocket/COPYING: Added.
-        * pywebsocket/MANIFEST.in: Added.
-        * pywebsocket/README: Added.
-        * pywebsocket/example/echo_client.py: Added.
-        * pywebsocket/example/echo_wsh.py: Added.
-        * pywebsocket/mod_pywebsocket/__init__.py: Added.
-        * pywebsocket/mod_pywebsocket/dispatch.py: Added.
-        * pywebsocket/mod_pywebsocket/handshake.py: Added.
-        * pywebsocket/mod_pywebsocket/headerparserhandler.py: Added.
-        * pywebsocket/mod_pywebsocket/msgutil.py: Added.
-        * pywebsocket/mod_pywebsocket/standalone.py: Added.
-        * pywebsocket/mod_pywebsocket/util.py: Added.
-        * pywebsocket/setup.py: Added.
-        * pywebsocket/test/config.py: Added.
-        * pywebsocket/test/mock.py: Added.
-        * pywebsocket/test/run_all.py: Added.
-        * pywebsocket/test/test_dispatch.py: Added.
-        * pywebsocket/test/test_handshake.py: Added.
-        * pywebsocket/test/test_mock.py: Added.
-        * pywebsocket/test/test_msgutil.py: Added.
-        * pywebsocket/test/test_util.py: Added.
-        * pywebsocket/test/testdata/handlers/blank_wsh.py: Added.
-        * pywebsocket/test/testdata/handlers/origin_check_wsh.py: Added.
-        * pywebsocket/test/testdata/handlers/sub/exception_in_transfer_wsh.py: Added.
-        * pywebsocket/test/testdata/handlers/sub/no_wsh_at_the_end.py: Added.
-        * pywebsocket/test/testdata/handlers/sub/non_callable_wsh.py: Added.
-        * pywebsocket/test/testdata/handlers/sub/plain_wsh.py: Added.
-        * pywebsocket/test/testdata/handlers/sub/wrong_handshake_sig_wsh.py: Added.
-        * pywebsocket/test/testdata/handlers/sub/wrong_transfer_sig_wsh.py: Added.
-
-2009-10-15  James Robinson  <jamesr@google.com>
-
-        Reviewed by David Levin.
-
-        Updates check-webkit-style to reflect that code inside a namespace should not be indented, even in a header file.
-
-        https://bugs.webkit.org/show_bug.cgi?id=30426
-
-        * Scripts/modules/cpp_style.py:
-        * Scripts/modules/cpp_style_unittest.py:
-
-2009-10-15  Brian Weinstein  <bweinstein@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Fixes <http://webkit.org/b/30411>.
-        REGRESSION(49485): pdevenv doesn't compile in parallel for non-chromium builds on Windows.
-        
-        Added a check for isChromium() in pdevenv, and pass /useenv if we are not
-        building Chromium.
-
-        * Scripts/pdevenv:
-
-2009-10-15  Robin Dunn  <robin@alldunn.com>
-
-        Reviewed by Kevin Ollivier.
-
-        Add Mac package building scripts for wx.
-        
-        https://bugs.webkit.org/show_bug.cgi?id=30405
-
-        * wx/build/build_utils.py:
-        * wx/build/settings.py:
-        * wx/packaging/build-mac-installer.py: Added.
-
-2009-10-15  Zan Dobersek  <zandobersek@gmail.com>
-
-        Reviewed by Gustavo Noronha.
-
-        Enable Web Sockets support when running layout tests.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-
-2009-10-15  Xan Lopez  <xlopez@igalia.com>
-
-        Reviewed by Gustavo Noronha.
-
-        Need to initialize event.button.button, since in most cases a
-        button number is not passed as an argument.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (mouseDownCallback):
-        (mouseUpCallback):
-
-2009-10-15  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix. More SDK fixes for Mac, make sure we use the SDK corresponding to
-        the OS if none was explicitly set.
-
-        * wx/build/settings.py:
-
-2009-10-14  Pavel Feldman  <pfeldman@chromium.org>
-
-        Reviewed by Timothy Hatcher.
-
-        Web Inspector: enable developers extras within inspector layout tests.
-
-        https://bugs.webkit.org/show_bug.cgi?id=30014
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::showWebInspector):
-        (LayoutTestController::closeWebInspector):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::showWebInspector):
-        (LayoutTestController::closeWebInspector):
-
-2009-10-14  José Millán Soto  <jmillan@igalia.com>
-
-        Reviewed by Jan Alonzo.
-
-        GtkLauncher is using a deprecated signal
-        https://bugs.webkit.org/show_bug.cgi?id=30364
-
-        Modified GtkLauncher to use notify::title signal instead of
-        deprecated title-changed signal
-
-        * GtkLauncher/main.c:
-        (notify_title_cb):
-        (create_browser):
-
-2009-10-14  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Don't set the history delegate on new windows that are opened during a test, as the history delegate:
-        1 - Disables WebHistory
-        2 - Doesn't make sense in that context anyway.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (createWebViewAndOffscreenWindow):
-
-2009-10-14  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wxMac build fix. Ensure 10.4 compatibility for deps, and allow the user to specify
-        the SDK to use since Python overrides any user-set value of MACOSX_DEPLOYMENT_TARGET.
-
-        * wx/build/settings.py:
-        * wx/install-unix-extras:
-
-2009-10-14  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        WebKit Win API should provide a delegate interface for global history.
-        https://bugs.webkit.org/show_bug.cgi?id=29905
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::dumpHistoryDelegateCallbacks):
-        (LayoutTestController::setDumpHistoryDelegateCallbacks):
-                
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (shouldLogHistoryDelegates):
-        (runTest):
-        (createWebViewAndOffscreenWindow):
-        (main):
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        
-        Add the IWebHistoryDelegate to DRT Windows:
-        * DumpRenderTree/win/HistoryDelegate.cpp: Added.
-        (wstringFromBSTR):
-        (HistoryDelegate::HistoryDelegate):
-        (HistoryDelegate::~HistoryDelegate):
-        (HistoryDelegate::QueryInterface):
-        (HistoryDelegate::AddRef):
-        (HistoryDelegate::Release):
-        (HistoryDelegate::didNavigateWithNavigationData):
-        (HistoryDelegate::didPerformClientRedirectFromURL):
-        (HistoryDelegate::didPerformServerRedirectFromURL):
-        (HistoryDelegate::updateHistoryTitle):
-        (HistoryDelegate::populateVisitedLinksForWebView):
-        * DumpRenderTree/win/HistoryDelegate.h: Added.
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::removeAllVisitedLinks):
-
-2009-10-14  Shu Chang  <Chang.Shu@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Implement support for setPOSIXLocale on Qt.
-        https://bugs.webkit.org/show_bug.cgi?id=30268 
- 
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setPOSIXLocale):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2009-10-13  Stephanie Lewis  <slewis@apple.com>
-
-        Unreviewed, adding myself to reviewers list.
-
-        * Scripts/modules/committers.py:
-
-2009-10-13  Stephanie Lewis  <slewis@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        Fix null assignment so root tests work again.
-
-        * Scripts/webkitdirs.pm:
-
-2009-10-13  Andras Becsi  <becsi.andras@stud.u-szeged.hu>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Refactor LayoutTestController, EventSender, TextInputController and WorkQueueItem classes
-        out of jsobjects into separate files to get a more structured DumpRenderTree implementation.
-        This is done in preparation of implementing missing features in DRT.
-        No functionality changes made yet.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/EventSenderQt.cpp: Added.
-        (EventSender::EventSender):
-        (EventSender::mouseDown):
-        (EventSender::mouseUp):
-        (EventSender::mouseMoveTo):
-        (EventSender::leapForward):
-        (EventSender::keyDown):
-        (EventSender::contextClick):
-        (EventSender::scheduleAsynchronousClick):
-        (EventSender::frameUnderMouse):
-        * DumpRenderTree/qt/EventSenderQt.h: Added.
-        (EventSender::clearKillRing):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp: Added.
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::reset):
-        (LayoutTestController::processWork):
-        (LayoutTestController::maybeDump):
-        (LayoutTestController::waitUntilDone):
-        (LayoutTestController::notifyDone):
-        (LayoutTestController::windowCount):
-        (LayoutTestController::clearBackForwardList):
-        (LayoutTestController::dumpEditingCallbacks):
-        (LayoutTestController::dumpResourceLoadCallbacks):
-        (LayoutTestController::queueBackNavigation):
-        (LayoutTestController::queueForwardNavigation):
-        (LayoutTestController::queueLoad):
-        (LayoutTestController::queueReload):
-        (LayoutTestController::queueScript):
-        (LayoutTestController::provisionalLoad):
-        (LayoutTestController::timerEvent):
-        (LayoutTestController::encodeHostName):
-        (LayoutTestController::decodeHostName):
-        (LayoutTestController::setJavaScriptProfilingEnabled):
-        (LayoutTestController::setFixedContentsSize):
-        (LayoutTestController::setPrivateBrowsingEnabled):
-        (LayoutTestController::setPopupBlockingEnabled):
-        (LayoutTestController::pauseAnimationAtTimeOnElementWithId):
-        (LayoutTestController::pauseTransitionAtTimeOnElementWithId):
-        (LayoutTestController::numberOfActiveAnimations):
-        (LayoutTestController::disableImageLoading):
-        (LayoutTestController::dispatchPendingLoadRequests):
-        (LayoutTestController::setDatabaseQuota):
-        (LayoutTestController::clearAllDatabases):
-        (LayoutTestController::whiteListAccessFromOrigin):
-        (LayoutTestController::waitForPolicyDelegate):
-        (LayoutTestController::overridePreference):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h: Added.
-        (LayoutTestController::isLoading):
-        (LayoutTestController::setLoading):
-        (LayoutTestController::shouldDumpAsText):
-        (LayoutTestController::shouldDumpBackForwardList):
-        (LayoutTestController::shouldDumpChildrenAsText):
-        (LayoutTestController::shouldDumpDatabaseCallbacks):
-        (LayoutTestController::shouldDumpStatusCallbacks):
-        (LayoutTestController::shouldWaitUntilDone):
-        (LayoutTestController::canOpenWindows):
-        (LayoutTestController::shouldDumpTitleChanges):
-        (LayoutTestController::waitForPolicy):
-        (LayoutTestController::dumpAsText):
-        (LayoutTestController::dumpChildFramesAsText):
-        (LayoutTestController::dumpDatabaseCallbacks):
-        (LayoutTestController::dumpStatusCallbacks):
-        (LayoutTestController::setCanOpenWindows):
-        (LayoutTestController::dumpBackForwardList):
-        (LayoutTestController::setCloseRemainingWindowsWhenComplete):
-        (LayoutTestController::display):
-        (LayoutTestController::dumpTitleChanges):
-        (LayoutTestController::dumpSelectionRect):
-        * DumpRenderTree/qt/TextInputControllerQt.cpp: Added.
-        (TextInputController::TextInputController):
-        (TextInputController::doCommand):
-        * DumpRenderTree/qt/TextInputControllerQt.h: Added.
-        * DumpRenderTree/qt/WorkQueue.cpp:
-        * DumpRenderTree/qt/WorkQueue.h:
-        * DumpRenderTree/qt/WorkQueueItem.h:
-        * DumpRenderTree/qt/WorkQueueItemQt.cpp: Added.
-        (findFrameNamed):
-        (LoadItem::invoke):
-        (ReloadItem::invoke):
-        (ScriptItem::invoke):
-        (BackForwardItem::invoke):
-        * DumpRenderTree/qt/jsobjects.cpp: Move all the above classes into separate files
-        * DumpRenderTree/qt/jsobjects.h:
-
-2009-10-13  Dmitry Titov  <dimich@chromium.org>
-
-        Not reviewed, adding myself to the list of reviewers.
-
-        * Scripts/modules/committers.py:
-
-2009-10-13  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        <rdar://problem/6660507> Add "privacy mode" to Netscape Plug-in API
-
-        Make the private browsing mode testable by the test plug-in.
-        
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (pluginGetProperty):
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.h:
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.cpp:
-        (NPP_New):
-        (NPP_SetValue):
-
-2009-10-13  Pavel Feldman  <pfeldman@chromium.org>
-
-        No review, just adding self to the list of reviewers.
-
-        * Scripts/modules/committers.py:
-
-2009-10-12  Pavel Feldman  <pfeldman@chromium.org>
-
-        Reviewed by Adam Roben.
-
-        Web Inspector: Use proper web view in inspector layout
-        tests for windows.
-
-        https://bugs.webkit.org/show_bug.cgi?id=30298
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::showWebInspector):
-        (LayoutTestController::closeWebInspector):
-        (LayoutTestController::evaluateInWebInspector):
-
-2009-10-12  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Reviewed by Sam Weinig.
-
-        Enable experimentalWebSocket in DumpRenderTree for LayoutTest.
-        https://bugs.webkit.org/show_bug.cgi?id=29841
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-
-2009-10-12  Yaar Schnitman  <yaar@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Chromium Port - Windows
-        https://bugs.webkit.org/show_bug.cgi?id=29969
-
-        * Scripts/pdevenv: removed msvc's /useenv for chromium builds
-        * Scripts/webkitdirs.pm:
-
-2009-10-12  Csaba Osztrogonac  <ossy@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        jsc scripts cleanup and Qt/GTK fix
-        https://bugs.webkit.org/show_bug.cgi?id=30288
-
-        Duplicated jscPath() moved to webkitdirs.pm.
-        New jscProductDir() added to webkitdirs.pm instead of duplicated codes.
-        Configuration added (release/debug) to path for Qt-port on Windows.
-
-        * Scripts/run-javascriptcore-tests:
-        * Scripts/run-jsc:
-        * Scripts/run-sunspider:
-        * Scripts/sunspider-compare-results:
-        * Scripts/webkitdirs.pm:
-
-2009-10-11  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Add Collin to committers.py.
-
-        * Scripts/modules/committers.py:
-
-2009-10-11  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix, add bindings to source/include dirs now that there are sources there.
-
-        * wx/build/settings.py:
-
-2009-10-09  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Brady Eidson.
-
-        Enable plug-in halting in DumpRenderTree.
-
-        We drop the plug-in halting delay to 1 second and opt in the delegate method to never halt plug-ins.
-        This is sufficient to ensure that the crash covered by <rdar://problem/7290671> no longer occurs.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:shouldHaltPlugin:]):
-
-2009-10-08  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        Ask the History Delegate to populate the visited links hash.
-        <rdar://problem/7285293> and https://webkit.org/b/29904
-
-        Add the ability for LayoutTestController to clear all visited links.
-        Also lets the History Delegate dump visited links, but only if this test specifically cleared them.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (removeAllVisitedLinksCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::removeAllVisitedLinks):
-
-        * DumpRenderTree/mac/HistoryDelegate.mm:
-        (-[HistoryDelegate populateVisitedLinksForWebView:]):
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::removeAllVisitedLinks):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::removeAllVisitedLinks):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::removeAllVisitedLinks):
-
-
-2009-10-08  Daniel Bates  <dbates@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        https://bugs.webkit.org/show_bug.cgi?id=30175
-        
-        The Windows DRT equivalent of DoDragDrop (i.e. UIDelegate::doDragDrop) does not return
-        the OLE drag-and-drop return value like the function it emulates. Currently, 
-        UIDelegate::doDragDrop returns a hard-coded S_OK. Hence, the caller cannot determine 
-        whether the drag-and-drop operation was successful or was cancelled.
-        
-        This patch fixes this issue by having UIDelegate::doDragDrop return the OLE drag-and-drop 
-        return value according to whether the drop operation was successful or not.
-
-        * DumpRenderTree/win/EventSender.cpp:
-        (doMouseUp): Added parameter oleDragAndDropReturnValue.
-        (replaySavedEvents): Ditto.
-        * DumpRenderTree/win/EventSender.h:
-        * DumpRenderTree/win/UIDelegate.cpp:
-        (UIDelegate::doDragDrop): Modified to return OLE drag-and-drop return value.
-
-2009-10-08  Alejandro G. Castro  <alex@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] Added support for a parameter setting the button that was
-        pressed in the mouseDown function.
-        https://bugs.webkit.org/show_bug.cgi?id=30220
-
-        * WebKitTools/DumpRenderTree/gtk/EventSender.cpp:
-
-2009-10-08  Alejandro G. Castro  <alex@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] Added a line to the bottom of the expected result to match
-        the output of the test.
-        https://bugs.webkit.org/show_bug.cgi?id=30220
-
-        * LayoutTests/platform/gtk/editing/pasteboard/middle-click-onpaste-
-        expected.txt:
-
-2009-10-08  Adam Roben  <aroben@apple.com>
-
-        Use QueryInterface to get IWebInspectorPrivate
-
-        Fixes <http://webkit.org/b/30215> Make IWebInspectorPrivate be
-        accessed in a more standard way
-
-        Reviewed by John Sullivan and Tim Hatcher.
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::evaluateInWebInspector): Get the IWebInspector
-        by calling IWebViewPrivate::inspector, then use QueryInterface to get
-        to the IWebInspectorPrivate interface.
-
-2009-10-07  Adam Roben  <aroben@apple.com>
-
-        Implement DRT support for origin whitelisting
-
-        Fixes <http://webkit.org/b/30185>.
-
-        Reviewed by Eric Seidel.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting): Reset any origin
-        whitelist, to match Mac DRT.
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::whiteListAccessFromOrigin): Call through to
-        IWebViewPrivate::whiteListAccessFromOrigin.
-
-2009-10-07  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Send title changes to the global history delegate.
-        <rdar://problem/7285293> and https://webkit.org/b/29904
-
-        * DumpRenderTree/mac/HistoryDelegate.mm:
-        (-[HistoryDelegate webView:updateHistoryTitle:forURL:]):
-
-2009-10-07  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Remove some folks from committers.py who were listed on
-        the WebKit Team wiki page but who weren't actually listed as commit+.
-        At some point, we should coorelate this list with the committers
-        mailing list.
-
-        * Scripts/modules/committers.py:
-
-2009-10-07  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Import a bunch of committers from the WebKit Team page on
-        the wiki into committers.py.
-
-        * Scripts/modules/committers.py:
-
-2009-10-07  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Added Aaron Boodman to committers.py.
-
-        * Scripts/modules/committers.py:
-
-2009-10-07  Evan Martin  <evan@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        Add API to LayoutTestController for re/setting the system locale.
-        https://bugs.webkit.org/show_bug.cgi?id=18994
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setLocaleCallback):
-        (LayoutTestController::staticFunctions):
-        (LayoutTestController::setLocale):
-        * DumpRenderTree/LayoutTestController.h:
-
-2009-10-06  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Jan Alonzo.
-
-        [Layout tests] [Gtk] Gtk DumpRenderTree should use WebKit test fonts
-        https://bugs.webkit.org/show_bug.cgi?id=29689
-
-        Build fix by adding -lfontconfig for DumpRenderTree.
-
-        * GNUmakefile.am:
-
-2009-10-07  Csaba Osztrogonac  <oszi@inf.u-szeged.hu>
-
-        Reviewed by Simon Hausmann.
-
-        Re-enable use-remote-links-to-tests for Qt. Disabled in r46416.
-
-        * Scripts/run-webkit-tests:
-
-2009-10-07  Xan Lopez  <xlopez@igalia.com>
-
-        Reviewed by Gustavo Noronha.
-
-        "delete" in EventSender is the backspace key, not the delete one.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (keyDownCallback):
-
-2009-10-07  Xan Lopez  <xlopez@igalia.com>
-
-        Reviewed by Gustavo Noronha.
-
-        getChildrenWithRange expects as last parameter the end index, not
-        the length of the range. Correct this and clarify the variable
-        names to reflect how the code works.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::getChildrenWithRange):
-        (AccessibilityUIElement::getChildAtIndex):
-
-2009-10-06  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Simon Fraser.
-
-        <http://webkit.org/b/30138> update-webkit-localizable-strings assumes that WebKitTools/Scripts is in the PATH
-
-        * Scripts/update-webkit-localizable-strings: Use an explicit path to extract-localizable-strings based on the
-        the fact we have already changed the working directory to the top of the open source tree.
-
-2009-10-06  Julie Parent  <jparent@chromium.org>
-
-        Unreviewed. Fixing the entry for myself in committers.py to use my bugzilla email,
-        rather than my committer email.
-
-        * Scripts/modules/committers.py:
-
-2009-10-06  Jakub Wieczorek  <faw217@gmail.com>
-
-        Reviewed by Eric Seidel.
-
-        [Qt] LayoutTestController: Reset m_dumpStatusCallbacks to false in reset().
-
-        r49189 added support for the 'dumpStatusCallbacks' setting but didn't reset
-        it after each layout test as it should do, making the DRT dump additional output
-        for all of the subsequent layout tests.
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::reset):
-
-2009-10-06  Jakub Wieczorek  <faw217@gmail.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Implement layoutTestController.dumpStatusCallbacks() and unskip the
-        fast/dom/assign-to-window-status.html test, which is passing as a result.
-
-        https://bugs.webkit.org/show_bug.cgi?id=30127
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::statusBarMessage):
-        * DumpRenderTree/qt/DumpRenderTree.h:
-        * DumpRenderTree/qt/jsobjects.h:
-        (LayoutTestController::shouldDumpStatusCallbacks):
-        (LayoutTestController::dumpStatusCallbacks):
-
-2009-10-06  Jakub Wieczorek  <faw217@gmail.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] The implementation of EventSender::mouseUp() and EventSender::mouseDown()
-        ignores the argument indicating which mouse button to trigger.
-        https://bugs.webkit.org/show_bug.cgi?id=30048
-
-        This affects the fast/events/mouse-click-events.html layout test.
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (EventSender::mouseDown):
-        (EventSender::mouseUp):
-        * DumpRenderTree/qt/jsobjects.h:
-
-2009-10-06  Jakub Wieczorek  <faw217@gmail.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Fix the EventSender::keyDown() implementation
-        https://bugs.webkit.org/show_bug.cgi?id=30043
-
-        It should post both a key press event and a key release event,
-        just like other ports do.
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (EventSender::keyDown):
-
-2009-10-05  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix. Add jpeg to the list of libs to link against.
-
-        * wx/build/settings.py:
-
-2009-10-05  Jakub Wieczorek  <faw217@gmail.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] EventSender::keyDown() cannot send function-key events.
-        https://bugs.webkit.org/show_bug.cgi?id=30044
-
-        This affects the fast/events/keydown-function-keys.html layout test.
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (EventSender::keyDown):
-
-2009-10-05  Vadim Zeitlin  <vadim@wxwidgets.org>
-
-        Added --wx-compiler-prefix waf option to allow building wxWebKit with
-        wxWidgets built using "nmake COMPILER_PREFIX=something-non-default".
-
-        * wx/build/settings.py:
-        * wx/build/wxpresets.py:
-
-2009-10-05  Pavel Feldman  <pfeldman@chromium.org>
-
-        Reviewed by Timothy Hatcher.
-
-        Web Inspector: add testing harness for Web Inspector.
-
-        https://bugs.webkit.org/show_bug.cgi?id=30010
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (showWebInspectorCallback):
-        (closeWebInspectorCallback):
-        (evaluateInWebInspectorCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::showWebInspector):
-        (LayoutTestController::closeWebInspector):
-        (LayoutTestController::evaluateInWebInspector):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::showWebInspector):
-        (LayoutTestController::closeWebInspector):
-        (LayoutTestController::evaluateInWebInspector):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::showWebInspector):
-        (LayoutTestController::closeWebInspector):
-        (LayoutTestController::evaluateInWebInspector):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::showWebInspector):
-        (LayoutTestController::closeWebInspector):
-        (LayoutTestController::evaluateInWebInspector):
-
-2009-10-05  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Ariyha Hidayat.
-
-        Pass arguments to system() as a string instead of array
-
-        When passed as an array entries with a space fail to translate
-        to two arguments to the child process, so instead of manually
-        splitting all the entries in @buildArgs we pass the whole thing
-        as a string instead.
-
-        * Scripts/webkitdirs.pm:
-
-2009-10-04  Carol Szabo  <carol.szabo@nokia.com>
-
-        Reviewed by David Levin.
-
-        check-webkit-style misses whitespace errors for operators:
-        <<, >>, <<=, >>=, &=, |=, +=, -=, *=, /=, /, |, &&, ||.
-        https://bugs.webkit.org/show_bug.cgi?id=30021
-
-        * Scripts/modules/cpp_style.py:
-        Added the operators mentioned above to the same list as == and !=.
-
-2009-10-02  Julie Parent  <jparent@chromium.org>
-
-        Unreviewed.
-
-        Adding myself and Ojan Vafai as committers, because we are committers.
-
-        * Scripts/modules/committers.py:
-
-2009-10-02  Brian Weinstein  <bweinstein@apple.com>
-
-        Reviewed by Adam Roben.
-
-        svn-create-patch should have an --ignore-changelogs to not add ChangeLogs to the diff,
-        this will help the patch merging process when TryBots are used.
-
-        * Scripts/svn-create-patch:
-
-2009-10-02  Jakub Wieczorek  <faw217@gmail.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Implement layoutTestController.overridePreference().
-        https://bugs.webkit.org/show_bug.cgi?id=29970
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::WebPage::WebPage):
-        (WebCore::WebPage::resetSettings):
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::setPrivateBrowsingEnabled):
-        (LayoutTestController::setPopupBlockingEnabled):
-        (LayoutTestController::overridePreference):
-        * DumpRenderTree/qt/jsobjects.h:
-
-2009-10-01  Chris Marrin  <cmarrin@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        Turn on ENABLE_3D_CANVAS in TOT
-        https://bugs.webkit.org/show_bug.cgi?id=29906
-
-        * Scripts/build-webkit:
-
-2009-10-01  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Rubberstamped by Simon Hausmann.
-
-        Enable HTTP tests for Qt
-
-        * Scripts/run-webkit-tests:
-
-2009-10-01  Yaar Schnitman  <yaar@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        build-webkit --chromium now also works on cygwin.
-
-        https://bugs.webkit.org/show_bug.cgi?id=29973
-
-        * Scripts/webkitdirs.pm:
-
-2009-10-01  Zoltan Horvath  <zoltan@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Don't use TCmalloc in DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=27029
-
-        Add USE_SYSTEM_MALLOC macro to the DRT's profile to avoid using TCmalloc in Qt's DRT.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-
-2009-10-01  Jakub Wieczorek  <faw217@gmail.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Implement eventSender.scheduleAsynchronousClick().
-
-        https://bugs.webkit.org/show_bug.cgi?id=29931
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (EventSender::scheduleAsynchronousClick):
-        * DumpRenderTree/qt/jsobjects.h:
-
-2009-10-01  Jakub Wieczorek  <faw217@gmail.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Implement setPopupBlockingEnabled() in the LayoutTestController and remove
-        fast/events/open-window-from-another-frame.html from the Skipped list.
-
-        https://bugs.webkit.org/show_bug.cgi?id=29930
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::setPopupBlockingEnabled):
-        * DumpRenderTree/qt/jsobjects.h:
-
-2009-09-30  Cameron McCormack  <cam@mcc.id.au>
-
-        Unreviewed.
-
-        Added myself to the list of committers.
-
-        * Scripts/modules/committers.py:
-
-2009-09-30  Eric Seidel  <eric@webkit.org>
-
-        No review, just adding Geoff to the list of reviewers.
-
-        * Scripts/modules/committers.py:
-
-2009-09-30  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Added the WebKit Layout Tests fonts that are referenced in
-        LayoutTests/platform/win/css2.1/resources/Mac-compatible-font-fallback.css
-
-        * DumpRenderTree/fonts/WebKit Layout Tests 2.ttf: Added.
-        * DumpRenderTree/fonts/WebKit Layout Tests.ttf: Added.
-
-2009-09-30  Csaba Osztrogonac  <oszi@inf.u-szeged.hu>
-
-        Reviewed by David Kilzer.
-
-        Make sunspider scripts work on Windows platform.
-        https://bugs.webkit.org/show_bug.cgi?id=29656
-
-        * Scripts/run-sunspider: Perl scripts invoked with same Perl interpreter.
-        * Scripts/sunspider-compare-results: Perl scripts invoked with same Perl interpreter.
-        * Scripts/webkitdirs.pm: currentPerlPath() added.
-
-2009-09-29  Brady Eidson  <beidson@apple.com>
-
-        Rubberstamped by Dan Bernstein.
-
-        Fix license and some sorting in new files.
-
-        * DumpRenderTree/mac/HistoryDelegate.h:
-        * DumpRenderTree/mac/HistoryDelegate.mm:
-
-2009-09-29  Yaar Schnitman  <yaar@chromium.org>
-
-        Reviewed by David Kilzer.
-
-        Fixed how error codes are handled.
-        https://bugs.webkit.org/show_bug.cgi?id=29898
-
-        * Scripts/update-webkit:
-        * Scripts/update-webkit-chromium:
-
-2009-09-29  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by John Sullivan.
-
-        Updated way-out-of-date sorting throughout the dump methods/flags.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (dumpAsPDFCallback):
-        (dumpAsTextCallback):
-        (dumpFrameLoadCallbacksCallback):
-        (dumpResourceLoadCallbacksCallback):
-        (LayoutTestController::staticFunctions):
-
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::dumpAsText):
-        (LayoutTestController::setDumpAsText):
-        (LayoutTestController::dumpFrameLoadCallbacks):
-        (LayoutTestController::setDumpFrameLoadCallbacks):
-        (LayoutTestController::dumpSelectionRect):
-        (LayoutTestController::setDumpSelectionRect):
-        (LayoutTestController::dumpSourceAsWebArchive):
-        (LayoutTestController::setDumpSourceAsWebArchive):
-        (LayoutTestController::dumpStatusCallbacks):
-        (LayoutTestController::setDumpStatusCallbacks):
-        (LayoutTestController::dumpTitleChanges):
-        (LayoutTestController::setDumpTitleChanges):
-        (LayoutTestController::dumpWillCacheResponse):
-        (LayoutTestController::setDumpWillCacheResponse):
-
-2009-09-29  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by John Sullivan.
-
-        WebKit Mac API should provide a delegate interface for global history.
-        <rdar://problem/7042773> and https://webkit.org/b/29904
-
-        Adding the dumping of global history delegate callbacks.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-
-        Automatically dump history delegate callbacks for tests with "globalhistory/" in their URL:
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (createWebViewAndOffscreenWindow):
-        (allocateGlobalControllers):
-        (shouldLogFrameLoadDelegates):
-        (shouldLogHistoryDelegates):
-        (runTest):
-
-        Dump history delegate callbacks:
-        * DumpRenderTree/mac/HistoryDelegate.h: Added.
-        * DumpRenderTree/mac/HistoryDelegate.mm: Added.
-        (-[HistoryDelegate webView:didNavigateWithNavigationData:inFrame:]):
-        (-[HistoryDelegate webView:didPerformClientRedirectFromURL:toURL:inFrame:]):
-        (-[HistoryDelegate webView:didPerformServerRedirectFromURL:toURL:inFrame:]):
-
-2009-09-29  Daniel Bates  <dbates@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        https://bugs.webkit.org/show_bug.cgi?id=28902
-        
-        Fixes an issue where the drop effect returned by Window Dump Render Tree 
-        was always DROPEFFECT_NONE (since it was hard coded to do so).
-        
-        This patch corrects this issue by determining the actual drop effect 
-        performed by the corresponding drag-and-drop operation so that we can 
-        return it.
-
-        * DumpRenderTree/win/DraggingInfo.h: Added field m_dropEffect to store performed drop effect.
-        (DraggingInfo::DraggingInfo):
-        (DraggingInfo::performedDropEffect): Added method.
-        (DraggingInfo::setPerformedDropEffect): Added method.
-        * DumpRenderTree/win/EventSender.cpp:
-        (doMouseUp): Calls method DraggingInfo::setPerformedDropEffect with performed drop effect.
-        Moved delete draggingInfo to UIDelegate::doDragDrop.
-        * DumpRenderTree/win/UIDelegate.cpp:
-        (UIDelegate::doDragDrop): Sets performedDropEffect to DraggingInfo::performedDropEffect().
-
-2009-09-29  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Remove copying of unnecessary or nonexistent files from the ImageDiff
-        post-build event.
-
-        * DumpRenderTree/win/ImageDiff.vcproj:
-
-2009-09-29  Csaba Osztrogonac  <oszi@inf.u-szeged.hu>
-
-        Reviewed by David Kilzer.
-
-        [Qt] Make build-webkit script work on Windows
-        https://bugs.webkit.org/show_bug.cgi?id=29802
-
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-         - Removed unnecessary -p switch for mkdir on Windows.
-         - Use canonical path, which uses slashes or backslashes depends on platform.
-         - isWindows() only test for Windows and not for Cyqwin.
-
-2009-09-29  Andras Becsi  <becsi.andras@stud.u-szeged.hu>
-
-        Reviewed by Simon Hausmann.
-
-        Fix time measurement in build-webkit after refactoring done in r48853.
-
-        * Scripts/build-webkit:
-
-2009-09-29  Andras Becsi  <becsi.andras@stud.u-szeged.hu>
-
-        Reviewed by Tor Arne Vestbø.
-
-        [Qt] Default font size reconciliation to 16px/13px to match other platform's de-facto standard.
-        This fixes https://bugs.webkit.org/show_bug.cgi?id=19674.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::WebPage::WebPage):
-
-2009-09-29  Jakub Wieczorek  <faw217@gmail.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Implement eventSender.contextClick().
-        https://bugs.webkit.org/show_bug.cgi?id=29821
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (EventSender::contextClick):
-        * DumpRenderTree/qt/jsobjects.h:
-
-2009-09-28  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Add experimentalWebSocketsEnabled in WebPreferences.
-        https://bugs.webkit.org/show_bug.cgi?id=28941
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-
-2009-09-28  Yaar Schnitman  <yaar@chromium.org>
-
-        Reviewed by David Kilzer.
-
-        Integrated chromium port building into webkit tools update-webkit and
-        build-webkit.
-
-        https://bugs.webkit.org/show_bug.cgi?id=29749
-
-        * Scripts/build-webkit: When --chromium is specified, will build
-          the chromium port (currently only Mac is supported).
-        * Scripts/update-webkit: When --chromium is specified, delegates to
-          update-webkit-chromium.
-        * Scripts/webkitdirs.pm: Added chromium specific defs.
-        * Scripts/update-webkit-chromium: Uses gclient and gyp to fetch
-          chromium port's dependencies and update its project files.
-
-2009-09-28  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Unreviewed.
-
-        Add myself to list of committers.
-
-        * Scripts/modules/committers.py:
-
-2009-09-27  Jakub Wieczorek  <faw217@gmail.com>
-
-        Reviewed by Darin Adler.
-
-        run-webkit-tests: Do not strip the metrics when there is no expected result for a test.
-        https://bugs.webkit.org/show_bug.cgi?id=29771
-
-        * Scripts/run-webkit-tests:
-
-2009-09-27  Jakub Wieczorek  <faw217@gmail.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Implement layoutTestController.waitForPolicyDelegate.
-        https://bugs.webkit.org/show_bug.cgi?id=25037
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::WebPage::acceptNavigationRequest):
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::notifyDone):
-        (LayoutTestController::waitForPolicyDelegate):
-        * DumpRenderTree/qt/jsobjects.h:
-        (LayoutTestController::waitForPolicy):
-
-2009-09-26  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/29764> mark-bug-fixed: add -o|--open switch
-
-        Reviewed by Eric Seidel.
-
-        The -o|--open switch uses the open(1) command on Mac OS X to
-        open the bug URL in the default web browser.  If there are
-        similar mechanisms on other platforms, they may be added later.
-
-        * Scripts/mark-bug-fixed:
-        (MarkBugFixed.__init__): Added -o|--open switch to list of parse
-        options.
-        (MarkBugFixed._determine_bug_id_and_svn_revision): Moved logging
-        code into main() and extracted prompting code into
-        _prompt_user_for_correctness().
-        (MarkBugFixed._open_bug_in_web_browser): Added.
-        (MarkBugFixed._prompt_user_for_correctness): Added.
-        (MarkBugFixed.main): Added logging code from
-        _determine_bug_id_and_svn_revision().  Added code to call
-        _open_bug_in_web_browser() if the switch is set.  Added code to
-        call _prompt_user_for_correctness() when needed.
-        * Scripts/modules/bugzilla.py:
-        (Bugzilla.short_bug_url_for_bug_id): Added.
-
-2009-09-26  David Kilzer  <ddkilzer@apple.com>
-
-        svn-unapply and svn-apply don't work when used outside multiple svn working directories
-
-        <http://webkit.org/b/29744>
-        <rdar://problem/7252905>
-
-        Reviewed by Eric Seidel.
-
-        Some users have a workflow where svn-create-patch, svn-apply and
-        svn-unapply are used outside of multiple svn working
-        directories.  Instead of aborting the scripts in these cases,
-        print a warning and assume that Subversion is being used.
-
-        * Scripts/VCSUtils.pm:
-        (determineVCSRoot): Call warn() instead of die() if both isGit()
-        and isSVN() initially return false.  Set $VCSUtils::isSVN to 1
-        to enforce the assumption about Subversion, then return
-        determineSVNRoot().
-        * Scripts/svn-apply: Switch to using isGit() and isSVN() from
-        VCSUtils.pm.  They both already cache their values and checking
-        here is redundant since determineVCSRoot() is called later.
-
-2009-09-26  Zan Dobersek  <zandobersek@gmail.com>
-
-        Reviewed by Gustavo Noronha.
-
-        [Layout tests] [Gtk] Gtk DumpRenderTree should use WebKit test fonts
-        https://bugs.webkit.org/show_bug.cgi?id=29689
-
-        Load test fonts through FontConfig before each test.
-        This ensures a more proper rendering of the tests.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (initializeFonts):
-        (runTest):
-        (main):
-        * DumpRenderTree/gtk/fonts.conf: Copied from WebKitTools/DumpRenderTree/qt/fonts.conf.
-        * GNUmakefile.am:
-
-2009-09-25  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/29718> mark-bug-fixed: add -u|--update-only switch
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/mark-bug-fixed:
-        (MarkBugFixed.__init__): Added -u|--update-only switch to list
-        of parse options.
-        (MarkBugFixed.main): When -u|--update-only is specified, add a
-        comment to the bug without marking it Resolved/Fixed.
-
-2009-09-25  Darin Adler  <darin@apple.com>
-
-        Reviewed by Geoffrey Garen.
-
-        * Scripts/prepare-ChangeLog: Leave files from the script-tests directory
-        out, just as we do for the resources directory.
-
-2009-09-25  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Added Tony to committers.py because he's a
-        committer now.
-
-        * Scripts/modules/committers.py:
-
-2009-09-25  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Simon Fraser.
-
-        REGRESSION: media/video-pause-empty-events.html is occasionally timing out on bots
-        https://bugs.webkit.org/show_bug.cgi?id=28624
-
-        Disable hardware compositing on Leopard for versions of QuickTime 7.6.4 and older.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-
-2009-09-25  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue should auto-retry patches which fail to commit due to out of date files
-        https://bugs.webkit.org/show_bug.cgi?id=28316
-
-        * Scripts/bugzilla-tool:
-         - Handle new CheckoutNeedsUpdate exception.
-        * Scripts/modules/logging_unittest.py:
-         - Call the ScriptError constructor correctly (this test had regressed).
-        * Scripts/modules/scm.py:
-         - Added the ability to define custom error handlers for run_command
-           and added a commit_error_handler which throws CheckoutNeedsUpdate
-           instead of ScriptError.
-         - Re-ordered ScriptError constructor arguments to make ScriptError("message text") usage possible.
-        * Scripts/modules/scm_unittest.py:
-         - Added tests of new error handlers.
-
-2009-09-25  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue should give better feedback when failing a patch
-        https://bugs.webkit.org/show_bug.cgi?id=29316
-
-        * Scripts/bugzilla-tool:
-         - Update ScriptError uses to the new constructor format.
-         - Move CommitQueue._run_command to WebKitLandingScripts.run_command_with_teed_output
-           so that we can print to both stdout as well as an output buffer for error reporting.
-         - Update run_and_throw_if_fail to use teed output so that it can report the "output" as part of ScriptError.
-         - Use e.message_with_output() when failing a patch (this is the real fix here).
-           I also removed use of "This patch will require manual commit." as that's not always true.
-         - Add missing word "bug" from log message.
-        * Scripts/modules/scm.py:
-         - Make ScriptError save a bunch more data so that error messages can be nicer.
-         - Update ScriptError callers.
-
-2009-09-24  John Gregg  <johnnyg@google.com>
-
-        Reviewed by Eric Seidel.
-
-        Enable switch for notifications (experimental) in Page Settings
-        https://bugs.webkit.org/show_bug.cgi?id=28930
-
-        Now that desktop notifications are controlled by run-time switch,
-        set that switch to true for DumpRenderTree.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/win/UIDelegate.cpp:
-        (UIDelegate::QueryInterface):
-
-2009-09-24  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix. SnowLeopard fixes for Mac dependencies.
-
-        * wx/build/build_utils.py:
-        * wx/build/settings.py:
-        * wx/install-unix-extras:
-
-2009-09-24  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
-
-        Reviewed by Oliver Hunt.
-
-        Add support for DRT to send mouse wheel events.
-
-        https://bugs.webkit.org/show_bug.cgi?id=29348
-        [Gtk] Scrollwheel on horizontal scrollbars should slide horizontally
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (mouseWheelToCallback):
-
-2009-09-17  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Levin.
-
-        commit-queue needs web-based status reporting
-        https://bugs.webkit.org/show_bug.cgi?id=29307
-
-        Add a first-pass web-based status for the commit-queue.
-        The bot is currently reachable at:
-        http://webkit-commit-queue.appspot.com/
-
-        * CommitQueueStatus/app.yaml: Added.
-         - Application description file required by App Engine.
-        * CommitQueueStatus/filters/__init__.py: Added.
-         - Required by python to treat 'filters' as a module.
-        * CommitQueueStatus/filters/webkit_extras.py: Added.
-         - Support for turning 'bug 123' and 'patch 123' into links.
-           This lets us use plain text strings in our logs yet display nice HTML (help prevent XSS attacks on the page).
-        * CommitQueueStatus/index.html: Added.
-        * CommitQueueStatus/index.yaml: Added.
-         - Some auto-generated file from app engine.
-        * CommitQueueStatus/queue_status.py: Added.
-         - The core logic of this bot.  We could eventually split this file out into pieces.
-        * CommitQueueStatus/stylesheets/main.css: Added.
-         - Some basic lame-o CSS to make the page look less awful.
-        * CommitQueueStatus/update_status.html: Added.
-         - The form that the commit-queue (or a human) can use to update the status.
-        * Scripts/bugzilla-tool:
-         - Add some very basic update_status calls.
-        * Scripts/modules/statusbot.py: Added.
-         - Knows how to post to the CommitQueueStatus web application.
-
-2009-09-24  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/29712> mark-bug-fixed: add -m|--comment switch
-
-        Reviewed by Adam Roben.
-
-        * Scripts/mark-bug-fixed:
-        (MarkBugFixed.__init__): Added -m|--comment switch to list of
-        parse options.
-        (MarkBugFixed.main): When specified, prepend comment from
-        -m|--comment command-line switch to the bug comment.
-
-2009-09-24  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
-
-        Reviewed by Jan Alonzo.
-
-        [GTK] DRT must display window instead of just realizing, to enable synthesizing events correctly
-        https://bugs.webkit.org/show_bug.cgi?id=29693
-
-        Show the window, to be able to synthesize events correctly.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (runTest):
-        (main):
-
-2009-09-24  Oliver Hunt  <oliver@apple.com>
-
-        Reviewed by NOBODY(rollout)
-
-        Roll out r48712 as it is incorrect.
-
-        * DumpRenderTree/mac/ObjCController.m:
-        (+[ObjCController isSelectorExcludedFromWebScript:]):
-        (+[ObjCController webScriptNameForSelector:]):
-
-2009-09-24  Benjamin Poulain  <benjamin.poulain@nokia.com>
-
-        Reviewed by Eric Seidel.
-
-        https://bugs.webkit.org/show_bug.cgi?id=29005
-        The indices of RuntimeArray should be enumerated like for a regular array.
-
-        * DumpRenderTree/mac/ObjCController.m:
-        (+[ObjCController isSelectorExcludedFromWebScript:]):
-        (+[ObjCController webScriptNameForSelector:]):
-        (-[ObjCController arrayOfString]):
-
-2009-09-23  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/28910> Move bugzilla-tool mark-fixed to standalone mark-bug-fixed tool
-
-        Reviewed by Darin Adler.
-
-        Also fixed a bug where specifying a revision on the command-line
-        as 'r12345' would fail.  See <http://webkit.org/b/29699>.
-
-        * Scripts/bugzilla-tool: Updated module import statements.
-        (parse_bug_id): Removed.  Moved to bugzilla.py.
-        (bug_comment_from_svn_revision): Removed.  Moved to comments.py.
-        (bug_comment_from_commit_text): Removed.  Moved to comments.py.
-        (MarkBugFixed): Removed.  Code moved to mark-bug-fixed.
-        (BugzillaTool.__init__): Removed mark-fixed subcommand.
-        * Scripts/mark-bug-fixed: Added.
-        * Scripts/modules/bugzilla.py:
-        (parse_bug_id): Added.  Moved from bugzilla-tool.
-        * Scripts/modules/comments.py: Added.
-        (bug_comment_from_svn_revision): Added.  Moved from bugzilla-tool.
-        (bug_comment_from_commit_text): Added.  Moved from bugzilla-tool.
-
-2009-09-23  Marshall Culpepper  <mculpepper@appcelerator.com>
-
-        Reviewed by Eric Seidel.
-        
-         jpeg.lib is now libjpeg.lib in DRT Cairo dependencies. return
-         "false" in non-implemented stub for setAlwaysAcceptCookies.
-         https://bugs.webkit.org/show_bug.cgi?id=29661
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-
-2009-09-23  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] need to dump number of pending unload handlers
-        https://bugs.webkit.org/show_bug.cgi?id=29685
-
-        Implement dumping of the number of pending unload handlers.
-
-        The following tests will pass:
-
-          fast/loader/unload-form-about-blank.html
-          fast/loader/unload-form-post-about-blank.html
-          fast/loader/unload-form-post.html
-          fast/loader/unload-form.html
-          fast/loader/unload-hyperlink.html
-          fast/loader/unload-javascript-url.html
-          fast/loader/unload-reload.html
-          fast/loader/unload-window-location.html
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (getFrameNameSuitableForTestResult):
-        (webViewLoadFinished):
-
-2009-09-22  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        js tests should move into jstests subdirectory instead of resources/
-        https://bugs.webkit.org/show_bug.cgi?id=25880
-
-        Remove support of resources directory.
-
-        * Scripts/make-script-test-wrappers:
-
-2009-09-22  Eric Seidel  <eric@webkit.org>
-
-        No review, only fixing typo (missing space character).
-
-        Fix typo from https://bugs.webkit.org/show_bug.cgi?id=29220
-
-        * Scripts/run-webkit-tests:
-
-2009-09-22  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        run-webkit-tests needs a --repeat-each=N option (AAABBBCCC instead of ABCABCABC)
-        https://bugs.webkit.org/show_bug.cgi?id=29220
-
-        * Scripts/run-webkit-tests:
-
-2009-09-22  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Kilzer.
-
-        svn-apply can't handle single-line binary file additions
-        https://bugs.webkit.org/show_bug.cgi?id=29100
-
-        Fixed the regexp and added a unit test.
-
-        * Scripts/modules/scm_unittest.py:
-        * Scripts/svn-apply:
-
-2009-09-11  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Kilzer.
-
-        post-diff and post-commits should be able to find bug urls in ChangeLogs.
-        https://bugs.webkit.org/show_bug.cgi?id=29206
-
-        * Scripts/bugzilla-tool:
-         - Share common options by adding a PostDiffAsPatchToBug.posting_options() method.
-         - Rename --no-comment to --add-log-as-comment and reverse behavior.
-           Comments tend to just be noise.  I'll eventually remove this argument if no one uses it.
-         - Split out code into helper functions to try and make execute() more legible.
-         - Make post-diff find the bug url in the ChangeLogs if not passed as an argument.
-         - Fallback to bug urls in commit diffs, instead of just in commit messages,
-           meaning post-commits will now find bug urls in ChangeLogs.
-
-2009-09-21  Csaba Osztrogonac  <oszi@inf.u-szeged.hu>
-
-        Reviewed by Maciej Stachowiak.
-
-        --parse-only parameter wasn't passed to SunSpider/sunspider script.
-        https://bugs.webkit.org/show_bug.cgi?id=29611
-
-        * Scripts/run-sunspider: Missing parameter passing added.
-
-2009-09-20  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/29521> run-webkit-tests: use require instead eval to load DumpRenderTreeSupport module
-
-        Reviewed by Mark Rowe.
-
-        The require statement is like the use statement, except that it
-        is run during script execution instead of during the 'BEGIN'
-        phase.  This makes it possible to change @INC before the require
-        statement is run.  See 'require' and 'use' in the perlfunc(1)
-        manpage and 'BEGIN' in perlmod(1) manpage.
-
-        * Scripts/run-webkit-tests: Replace eval statement with require
-        statement.
-
-2009-09-18  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fixes. Fix the config name under git and allow users to specify
-        their own waf install for experimenting with new versions.
-
-        * Scripts/webkitdirs.pm:
-        * wx/build/settings.py:
-
-2009-09-18  Alex Milowski  <alex@milowski.com>
-
-        Reviewed by Maciej Stachowiak.
-
-        Added checkWebCoreMathMLSupport and hasMathMLSupport to support 
-        checking for whether MathML tests should be run
-
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2009-08-28  Darin Adler  <darin@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        Break more of run-webkit-tests into separate functions
-        https://bugs.webkit.org/show_bug.cgi?id=29497
-
-        Some small steps toward improving run-webkit-tests. My goal is to
-        refactor much more of the script into functions. Later we can add
-        parallel test running to the tool. But better structure may help
-        even if someone decides to translate this into another scripting
-        language instead.
-
-        * Scripts/run-webkit-tests: Break more pieces of the script into
-        seprate functions. Added readSkippedFiles, findTestsToRun, and
-        printResults functions. Removed custom code to skip results.html
-        and instead just put it into the ignoredFiles hash. Fixed some
-        indentation. Sorted function declarations, global variables,
-        and options at the top of the file alphabetically so they're not
-        in a semi-random order.
-
-2009-09-17  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix, add missing dependency.
-
-        * wx/browser/wscript:
-
-2009-09-16  Mark Rowe  <mrowe@apple.com>
-
-        Split the SnowLeopard build across a few machines.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2009-09-16  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix to support monolithic builds on Windows.
-
-        * wx/build/wxpresets.py:
-
-2009-09-16  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix, improve debug support and 2.9 support on MSW.
-
-        * wx/build/settings.py:
-        * wx/build/wxpresets.py:
-
-2009-09-16  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
-
-        Blind try at fixing new test failure on Windows.
-
-        * DumpRenderTree/win/FrameLoadDelegate.cpp:
-        (FrameLoadDelegate::didReceiveTitle):
-
-2009-09-15  Alex Milowski  <alex@milowski.com>
-
-        Reviewed by Tor Arne Vestbø.
-
-        Added mathml toggle
-
-        * Scripts/build-webkit:
-
-2009-09-15  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix. Allow waf build to support Python < 2.6.
-
-        * wx/build/waf_extensions.py:
-
-2009-09-14  Chris Marrin  <cmarrin@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        Add LayoutTests infrastructure to enable and disable webgl tests.
-        https://bugs.webkit.org/show_bug.cgi?id=29254
-
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2009-09-14  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Darin Adler.
-        
-        Add --iterations option to run-webkit-tests to repeat the tests N times
-        https://bugs.webkit.org/show_bug.cgi?id=29263
-
-        When run with --iterations N, run-webkit-tests will repeat the tests N times.
-
-        * Scripts/run-webkit-tests:
-
-2009-09-14  Brady Eidson  <beidson@apple.com>
-
-        Not reviewed, maybe should've been:
-
-        Cleaning up more Windows-specific fallout from the fix for:
-        <rdar://problem/7174050> and https://bugs.webkit.org/show_bug.cgi?id=29160
-
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp:
-        (ResourceLoadDelegate::didReceiveAuthenticationChallenge):  Correct printf() formatter, 
-          and call the correct method to get the Sender.
-
-2009-09-14  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        GTK build fix.
-
-        Unreviewed.
-
-        * DumpRenderTree/gtk/AccessibilityControllerGtk.cpp:
-        (AccessibilityController::setLogScrollingStartEvents):
-
-2009-09-11  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        DRT/test part of
-        <rdar://problem/7197644> WebKit should broadcast an MSAA event when
-        jumping to a named anchor
-
-        https://bugs.webkit.org/show_bug.cgi?id=28899
-
-        Reviewed by Adam Roben.
-
-        * DumpRenderTree/AccessibilityController.cpp:
-        (logScrollingStartEventsCallback):
-        Turn on logging of scrolling start events.
-        (AccessibilityController::getJSClass):
-        Add a "logScrollingStartEvents" to the AccessibilityController's JS
-        class definition.
-        (AccessibilityController::resetToConsistentState):
-        Turn off logging of scrolling start events.
-
-        * DumpRenderTree/AccessibilityController.h:
-        Declare setLogScrollingStartEvents(). Add a member for the scrolling
-        start event hook.
-
-        * DumpRenderTree/mac/AccessibilityControllerMac.cpp:
-        (AccessibilityController::setLogScrollingStartEvents):
-        Stubbed.
-
-        * DumpRenderTree/win/AccessibilityControllerWin.cpp:
-        (AccessibilityController::AccessibilityController):
-        Initialize the handle to 0.
-        (logEventProc):
-        Renamed from logFocusEventProc; now logs scrolling start events, too.
-        Removed the assertion that the event is a focus event. Added a switch
-        to print a message for focus, scrolling start, and other, unknown
-        events.
-        (AccessibilityController::setLogFocusEvents):
-        Changed to use logEventProc.
-        (AccessibilityController::setLogScrollingStartEvents):
-        If turning logging off, unhook the scrolling start event hook, and clear
-        the member holding the handle. If turning on, query for the root
-        accessible, so that accessibility is enabled for the WebView, and call
-        SetWinEventHook to setup an event hook using logEventProc as the
-        callback function.
-
-2009-09-14  Brady Eidson  <beidson@apple.com>
-
-        Windows build fix.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setAuthenticationPasswordCallback):
-        (setAuthenticationUsernameCallback):
-        
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp:
-        (ResourceLoadDelegate::didReceiveAuthenticationChallenge):
-
-2009-09-14  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Safari 4 cannot be used to update firmware on Linksys routers.
-        <rdar://problem/7174050> and https://bugs.webkit.org/show_bug.cgi?id=29160
-
-        Add the ability for DRT to handle authentication challenges.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setAuthenticationPasswordCallback):
-        (setAuthenticationUsernameCallback):
-        (setHandlesAuthenticationChallengesCallback):
-        (LayoutTestController::staticFunctions):
-
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::handlesAuthenticationChallenges):
-        (LayoutTestController::setHandlesAuthenticationChallenges):
-        (LayoutTestController::authenticationUsername):
-        (LayoutTestController::setAuthenticationUsername):
-        (LayoutTestController::authenticationPassword):
-        (LayoutTestController::setAuthenticationPassword):
-
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        (-[ResourceLoadDelegate webView:resource:didReceiveAuthenticationChallenge:fromDataSource:]):
-
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp:
-        (ResourceLoadDelegate::didReceiveAuthenticationChallenge):
-        * DumpRenderTree/win/ResourceLoadDelegate.h:
-
-2009-09-12  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        Test for <rdar://problem/6954546> and <rdar://problem/7090444>.
-
-        Add a flag on the test plug-in that asks it to clear the document during the call to NPP_New.
-        This is the trigger for both <rdar://problem/6954546> and <rdar://problem/7090444>.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.cpp:
-        (NPP_New):
-
-2009-09-14  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix for non-wxPython builds and a fix for errors when updating swig.py.
-
-        * wx/build/build_utils.py:
-        * wx/build/settings.py:
-
-2009-09-14  Csaba Osztrogonac  <oszi@inf.u-szeged.hu>
-
-        Reviewed by Tor Arne Vestbø.
-
-        [Qt] Build fix for windows build.
-
-        * Scripts/bisect-builds: Add missing paranthesis for tmpdir function.
-
-2009-09-13  Kevin Ollivier  <kevino@theolliviers.com>
-
-        Fix typo accidently landed in last commit.
-
-        * wx/build/settings.py:
-
-2009-09-13  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix, error out if using the wrong Python.
-
-        * wx/build/settings.py:
-
-2009-09-13  Xan Lopez  <xlopez@igalia.com>
-
-        Build fix for GTK+ < 2.14.
-
-        Do not use gtk_widget_get_window, access the window directly
-        through the struct.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (contextClickCallback):
-        (mouseDownCallback):
-        (mouseUpCallback):
-        (mouseMoveToCallback):
-        (keyDownCallback):
-
-2009-09-13  Martin Robinson  <martin.james.robinson@gmail.com>
-
-        Reviewed by Xan Lopez and Jan Alonzo.
-
-        [GTK] EventSender does not set 'window' property on synthesized GDK events
-        https://bugs.webkit.org/show_bug.cgi?id=29169
-
-        Set the window property on synthesized GDK events in the GTK+ EventSender.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (contextClickCallback):
-        (mouseDownCallback):
-        (mouseUpCallback):
-        (mouseMoveToCallback):
-        (keyDownCallback):
-
-2009-09-12  Drew Wilson  <atwilson@google.com>
-
-        Reviewed by Mark Rowe.
-
-        run-webkit-tests has a timeout value that is too low
-        https://bugs.webkit.org/show_bug.cgi?id=29223
-
-        * Scripts/run-webkit-tests:
-        Changed timeout value to 20 seconds to avoid timing out too early.
-
-2009-09-11  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix. Mark dependencies as mandatory and declare which MSVC versions and
-        architectures are supported for building wxWebKit.
-
-        * wx/build/settings.py:
-
-2009-09-11  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Levin.
-
-        bugzilla-tool rollout threw exception under svn
-        https://bugs.webkit.org/show_bug.cgi?id=29211
-
-        * Scripts/modules/scm.py: add missing return, and convert number arguments to strings.
-        * Scripts/modules/scm_unittest.py: add testing for this fix.
-
-2009-09-11  Brian Weinstein  <bweinstein@apple.com>
-
-        Add myself to the committers list.
-
-        * Scripts/modules/committers.py:
-
-2009-09-11  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool land-patches should only fail-fast in --commit-queue mode
-        https://bugs.webkit.org/show_bug.cgi?id=29201
-
-        * Scripts/bugzilla-tool:
-
-2009-09-11  Adam Roben  <aroben@apple.com>
-
-        Make commit-log-editor move common prefixes to the top of the log
-
-        Fies <http://webkit.org/b/29190> commit-log-editor should move common
-        prefixes to the top of the commit log
-
-        Reviewed by Darin Adler.
-
-        * Scripts/commit-log-editor: Find and remove the longest common prefix
-        ending in a double newline from each ChangeLog entry, then put that
-        common prefix at the top of the commit log.
-        (removeLongestCommonPrefixEndingInDoubleNewline): Added. Finds,
-        removes, and returns the longest common prefix ending in a double
-        newline from a hash of strings
-
-2009-09-11  Eric Seidel  <eric@webkit.org>
-
-        Fix obvious typo in previous commit, no review.
-
-        bugzilla-tool should automate rollouts
-        https://bugs.webkit.org/show_bug.cgi?id=26715
-
-        * Scripts/bugzilla-tool: add back missing "scm" argument.
-
-2009-09-11  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool should automate rollouts
-        https://bugs.webkit.org/show_bug.cgi?id=26715
-
-        bugzilla-tool rollout will do the rollout locally and leave the diff for you to verify and commit.
-        The --complete-rollout option will automatically land and update the bug.
-        Eventually --complete-rollout will be default, but that will require more testing.
-
-        This first pass is good enough for others to try and file bugs about.
-
-        * Scripts/bugzilla-tool:
-         - Move modified_changelogs into scm.py.
-         - Move svn_revision_from_commit_text logic into scm.py.
-         - Add RolloutCommit command.
-        * Scripts/modules/bugzilla.py:
-         - Add reopen_bug command used by RolloutCommit.
-        * Scripts/modules/scm.py:
-         - Add functions to support RolloutCommit.
-         - Abstract find_uuid into value_from_svn_info so it can be re-used for _repository_url (needed by svn merge).
-         - Add a str() call so that svn_commit_log can take a numeric argument.
-         - Remove a bunch of very slow code from last_svn_commit_log and used the built-in 'BASE' alias instead.
-         - Made dry_run commits return something that svn_revision_from_commit_text can parse.
-        * Scripts/modules/scm_unittest.py:
-         - Add read_from_path for easy file reading.
-         - Put test4 on a new line to make reverts work w/o conflict.
-         - Add an "svn update" call so that the checkout revision matches the server revision.
-         - Add tests for svn_revision_from_commit_text.
-         - Add a simple test for apply_reverse_diff.
-         - Add a new self.scm member and use it in the new tests (eventually other tests can use it too).
-         - Add test for svn_commit_log to make sure my 'BASE' change above worked as expected.
-
-2009-09-11  Adam Roben  <aroben@apple.com>
-
-        Get user script/stylesheet tests running on Windows
-
-        Fixes <http://webkit.org/b/29181> User script/stylesheet tests are
-        skipped on Windows
-
-        Reviewed by John Sullivan.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj: Link all configurations
-        against comsuppw.lib so we can use _bstr_t.
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp: Fixed #include
-        order, added #include of comutil.h for _bstr_t.
-
-        (bstrT): Helper function to convert a JSStringRef to a _bstr_t.
-        (LayoutTestController::addUserScript):
-        (LayoutTestController::addUserStyleSheet):
-        Implemented. Implementations were based on those in
-        LayoutTestControllerMac.mm.
-
-2009-09-10  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/29147> run-webkit-tests:  make -h show help 
-
-        Reviewed by Mark Rowe.
-
-        * Scripts/run-webkit-tests: Updated to make -h switch show help.
-
-2009-09-10  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Add WebCore/websockets directory in wx build system.
-        https://bugs.webkit.org/show_bug.cgi?id=28038
-
-        * wx/build/settings.py:
-
-2009-09-10  Martin Robinson  <martin.james.robinson@gmail.com>
-
-        [GTK] EventSender does not properly convert some keyDown strings
-        https://bugs.webkit.org/show_bug.cgi?id=29119
-
-        Add more keyDown string to character code conversions for GTK+ EventSender.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (keyDownCallback):
-
-2009-09-09  Steve Block  <steveblock@google.com>
-
-        Reviewed by Maciej Stachowiak.
-
-        Geolocation Coordinates::toString() prints bogus values for unspecified properties.
-        https://bugs.webkit.org/show_bug.cgi?id=29080
-
-        * Scripts/make-script-test-wrappers: Modified. Adds asynchronous Geolocation tests to exclusion list.
-
-2009-09-09  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Eric Carlson.
-
-        reviewer/committer lookups are backwards
-        https://bugs.webkit.org/show_bug.cgi?id=29113
-
-        I also moved Eric Carlson from the committer list to the reviewer list now that he is one.
-
-        * Scripts/modules/bugzilla.py:
-        * Scripts/modules/committers.py:
-
-2009-09-09  Cameron McCormack  <cam@mcc.id.au>
-
-        Reviewed by Eric Seidel.
-
-        svn-unapply doesn't revert directories correctly
-        https://bugs.webkit.org/show_bug.cgi?id=29065
-
-        * Scripts/svn-unapply: Make svnStatus consistently return status
-        lines including a newline.
-        * Scripts/svn-apply: Keep svnStatus in sync with the one in
-        svn-unapply, in lieu of moving it to a common file.
-
-2009-09-09  Cameron McCormack  <cam@mcc.id.au>
-
-        Reviewed by Eric Seidel.
-
-        svn-apply doesn't handle changes to files copied to new directories properly
-        https://bugs.webkit.org/show_bug.cgi?id=29059
-
-        * Scripts/svn-apply: Don't treat "--- revision 0" patches as being
-        additions if we know that we've just copied a file to this name.
-
-2009-09-09  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Levin.
-
-        commit-queue hangs if a builder has never built
-        https://bugs.webkit.org/show_bug.cgi?id=29091
-
-        * Scripts/modules/buildbot.py:
-        * Scripts/modules/buildbot_unittest.py:
-
-2009-09-09  Zan Dobersek  <zandobersek@gmail.com>
-
-        Reviewed by Gustavo Noronha.
-
-        [GTK] DumpRenderTree needs eventSender object and implementation
-        https://bugs.webkit.org/show_bug.cgi?id=25990
-
-        Implements most of the EventSender object's functionality for
-        the DumpRenderTree tool. Implementation still lacks support
-        for drag and drop tests and forward leaps.
-
-        Based on work by Holger Hans Peter Freyther.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (runTest): Focus on the view before loading a new test.
-        (webViewWindowObjectCleared):
-        * DumpRenderTree/gtk/EventSender.cpp: Added.
-        (getDragModeCallback):
-        (setDragModeCallback):
-        (leapForwardCallback):
-        (contextClickCallback):
-        (updateClickCount):
-        (mouseDownCallback):
-        (mouseUpCallback):
-        (mouseMoveToCallback):
-        (beginDragWithFilesCallback):
-        (replaySavedEvents):
-        (keyDownCallback):
-        (textZoomInCallback):
-        (textZoomOutCallback):
-        (zoomPageInCallback):
-        (zoomPageOutCallback):
-        (getClass):
-        (makeEventSender):
-        * DumpRenderTree/gtk/EventSender.h: Added.
-        * GNUmakefile.am: Add build rules for EventSender.
-
-2009-09-09  Daniel Bates  <dbates@webkit.org>
-
-        Reviewed by Adam Roben.
-        
-        https://bugs.webkit.org/show_bug.cgi?id=28953
-
-        Added pre- and post- build events so that on build failure, the file 
-        buildfailed is written to the directory $(WebKitOutputDir).
-
-        * WinLauncher/WinLauncher.vcproj:
-
-2009-09-09  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Unreviewed.
-
-        Add myself to list of committers.
-
-        * Scripts/modules/committers.py:
-
-2009-09-08  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Levin.
-
-        commit-queue gets stuck if a non-committer sets commit-queue+ or review+
-        https://bugs.webkit.org/show_bug.cgi?id=28605
-        https://bugs.webkit.org/show_bug.cgi?id=28916
-
-        * Scripts/bugzilla-tool:
-         - Fix comment and adjust reject_patch_from_commit_queue call to pass "manual commit"
-           comment now that it's used for rejecting patches for invalid committers too.
-         - Pass reject_invalid_patches=True for commit-queue calls, normally we just ignore patches with invalid reviewers, the commit-queue rejects them.
-         - Make the commit queue print patches count instead of bugs count, this also fixes https://bugs.webkit.org/show_bug.cgi?id=28916.
-        * Scripts/modules/bugzilla.py:
-         - Make _parse_attachment_element not validate reviewer/committer.
-         - Share flag parsing code in _parse_attachment_flag.
-         - Add _validate* methods for validating reviewers and committers and updating bugs when validation fails.
-         - Add reject_invalid_patches argument so the commit-queue can update bugs on failed validation and other "read only" commands will not.
-         - Add reject_patch_from_review_queue using a new _set_flag_on_attachment abstraction.
-        * Scripts/modules/bugzilla_unittest.py:
-         - Update this test to no longer expect committer/reviewer validation.
-        * Scripts/modules/committers.py:
-         - Return None on failed lookups instead of raising Exceptions.
-        * Scripts/modules/committers_unittest.py:
-         - Update tests to expect None returns instead of exceptions.
-
-2009-09-09  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/29061> Fix obvious copy-paste error in AccessibilityUIElement::clickPointY()
-
-        Reviewed by Mark Rowe.
-
-        No change to layout test results.
-
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::clickPointY): Changed to return y value
-        instead of x value.
-
-2009-09-08  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Reviewed by Mark Rowe.
-
-        Reduce dglazkov's boboiness by properly concatenating revision value.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Used substitution
-            rather than "+".
-
-2009-09-08  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wxWebKit Python extension build fix - get swig.py if it doesn't exist.
-
-        * wx/build/build_utils.py:
-
-2009-09-08  Mark Rowe  <mrowe@apple.com>
-
-        Fix an incorrect variable name in UpdateChromiumSource.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2009-09-08  Mark Rowe  <mrowe@apple.com>
-
-        Don't check for leaks on the release SnowLeopard builder.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2009-09-08  Mark Rowe  <mrowe@apple.com>
-
-        Add a SnowLeopard release builder.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2009-09-08  David Levin  <levin@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        Remove end of line whitespace check from check-webkit-style.
-        https://bugs.webkit.org/show_bug.cgi?id=29053
-
-        * Scripts/modules/cpp_style.py:
-
-2009-09-08  Cameron McCormack  <cam@mcc.id.au>
-
-        Reviewed by Darin Adler.
-
-        Fix DumpRenderTree build from clean tree on Tiger
-        https://bugs.webkit.org/show_bug.cgi?id=28927
-
-        * DumpRenderTree/mac/PerlSupport/Makefile: Ensure the
-        DerivedSources/DumpRenderTree directory exists when
-        building on Tiger.
-
-2009-09-08  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix after introduction of platform/mock directory.
-
-        * wx/build/settings.py:
-
-2009-09-08  Yael Aharon  <yael.aharon@nokia.com>
-
-        Unreviewed.
-
-        Add myself to list of committers.
-
-        * Scripts/modules/committers.py:
-
-2009-09-08  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Unreviewed.
-
-        Add myself to list of committers.
-
-        * Scripts/modules/committers.py:
-
-2009-09-08  Cameron McCormack  <cam@mcc.id.au>
-
-        Reviewed by Darin Adler.
-
-        prepare-ChangeLog too chatty on file additions
-        https://bugs.webkit.org/show_bug.cgi?id=29019
-
-        * Scripts/prepare-ChangeLog: Omit description of added properties
-        on newly added files.
-
-2009-09-08  Steve Block  <steveblock@google.com>
-
-        Reviewed by Adam Barth.
-
-        Adds a LayoutTestController method to set the permission state for Geolocation.
-        This is required to use the mock Geolocation service for testing.
-        https://bugs.webkit.org/show_bug.cgi?id=29027
-
-        * DumpRenderTree/LayoutTestController.cpp: Modified.
-        (setDatabaseQuotaCallback): Modified. Style fix.
-        (setGeolocationPermissionCallback): Added. Sets the Geolocation permission state.
-        (LayoutTestController::staticFunctions): Modified. Registers the above function on the LayoutTestController.
-        * DumpRenderTree/LayoutTestController.h: Modified.
-        (LayoutTestController::setGeolocationPermission): Added. Sets the Geolocation permission state.
-        (LayoutTestController::isGeolocationPermissionSet): Added. Returns whether the Geolocation permission has been set.
-        (LayoutTestController::geolocationPermission): Added. Returns the Geolocation permission state.
-        * DumpRenderTree/mac/UIDelegate.mm: Modified.
-        (-[UIDelegate webView:frame:requestGeolocationPermission:securityOrigin:]): Added. Implement chrome method to respond to request for Geolocation permission state. Response is made using above methods to access permission state.
-
-2009-09-08  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] QtWebKit single API to enable persistency
-        https://bugs.webkit.org/show_bug.cgi?id=28682
-
-        Use the new enablePersistentStorage API instead 
-        of enabling all persistent features one-by-one.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::WebPage::WebPage):
-        (WebCore::DumpRenderTree::DumpRenderTree):
-
-2009-09-07  Andras Becsi  <becsi.andras@stud.u-szeged.hu>
-
-        Reviewed by Tor Arne Vestbø.
-
-        Refactor --strict switch to --ignore-metrics and correct the
-        implementation to make the feature usable on all platforms.
-        https://bugs.webkit.org/show_bug.cgi?id=28907
-
-        run-webkit-tests --ignore-metrics strips the font related metrics from
-        the actual and expected data before comparing them.
-        In this way the render trees can be checked for obvious differences but
-        a successful test implies by no means that the layout is actually correct.
-
-        * Scripts/run-webkit-tests:
-
-2009-09-07  Steve Block  <steveblock@google.com>
-
-        Reviewed by Adam Barth.
-
-        Adds a mock Geolocation service. This will be used to provide predictable behavior of the
-        Geolocation API for use in LayoutTests. Later changes will integrate the the mock
-        Geolocation service with DumpRenderTree.
-        https://bugs.webkit.org/show_bug.cgi?id=28264
-
-        * DumpRenderTree/LayoutTestController.cpp: Modified.
-        (setMockGeolocationPositionCallback): Added. Configures the mock Geolocation service.
-        (setMockGeolocationErrorCallback): Added. Configures the mock Geolocation service.
-        (LayoutTestController::staticFunctions): Added. Registers the above functions on the LayoutTestController.
-        * DumpRenderTree/LayoutTestController.h: Modified.
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm: Modified.
-        (LayoutTestController::setMockGeolocationPosition): Added. Configures the mock Geolocation service.
-        (LayoutTestController::setMockGeolocationError): Added. Configures the mock Geolocation service.
-
-2009-09-07  Drew Wilson  <atwilson@google.com>
-
-        Reviewed by David Levin.
-
-        Enable SHARED_WORKERS by default
-        https://bugs.webkit.org/show_bug.cgi?id=28959
-
-        * Scripts/build-webkit:
-
-2009-09-07  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fixes for wx SVN trunk.
-
-        * wx/build/settings.py:
-
-2009-09-04  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx build fix. Switch USE_ defines over to the compiler so that they can be
-        checked by files not including config.h (like WebCorePrefix.h).
-
-        * wx/build/settings.py:
-
-2009-09-04  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed build fix.
-
-        Update declaration of FrameLoadDelegate to reflect that
-        IWebFrameLoadDelegatePrivate2 inherits from
-        IWebFrameLoadDelegatePrivate.
-
-        * DumpRenderTree/win/FrameLoadDelegate.h:
-
-2009-09-04  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        https://bugs.webkit.org/show_bug.cgi?id=24696
-
-        Add testing instrumentation for mixed content.
-
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate webView:]):
-        (-[FrameLoadDelegate webView:didRunInsecureContent:]):
-        * DumpRenderTree/win/FrameLoadDelegate.cpp:
-        (descriptionSuitableForTestResult):
-        (FrameLoadDelegate::QueryInterface):
-        (FrameLoadDelegate::didDisplayInsecureContent):
-        (FrameLoadDelegate::didRunInsecureContent):
-        * DumpRenderTree/win/FrameLoadDelegate.h:
-
-2009-09-03  Kevin Watters  <kevinwatters@gmail.com>
-
-        Reviewed by Kevin Ollivier.
-
-        [wx] Frames support
-        https://bugs.webkit.org/show_bug.cgi?id=19041
-
-        * wx/build-wxwebkit:
-
-2009-09-02  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/28880> svn-apply --force doesn't actually work
-
-        Reviewed by Eric Seidel.
-
-        This fixes "svn-apply --force" and adds unit tests for the
-        scm.apply_patch() method which uses this script.
-
-        * Scripts/svn-apply: Created $globalExitCode variable that
-        defaults to 0.  Exit with a value of $globalExitCode when the
-        script is finished.
-        (applyPatch): Ignore a non-zero $exitCode if $force is true, but
-        set $globalExitCode to $exitCode so that svn-apply exits with a
-        non-zero status if any patches did not apply cleanly.  Also
-        print out the actual patch command if $force was not true.
-
-        * Scripts/modules/scm.py:
-        (scripts_directory): Added.  Extracted from script_path().
-        (script_path): Extracted scripts_directory().
-        * Scripts/modules/scm_unittest.py: Import urllib.
-        (SVNTestRepository.setup): Save the original working directory
-        in test_object since this represents the WebKit repository from
-        where the unit tests are run.
-        (SCMTest): Created new super class to hold utility methods.
-        (SCMTest._create_patch): Creates a patch file on disk and a
-        dictionary for use with scm.svn_apply().
-        (SCMTest._setup_webkittools_scripts_symlink): Sets up a symlink
-        back to WebKitTools/Scripts in the test repository so that
-        scm.apply_patch() is able to find the svn-apply script.
-        (SVNTest): Inherit from SCMTest instead of unittest.TestCase.
-        (SVNTest.tearDown): Make sure to change directories back to the
-        original_path before the next test.
-        (SVNTest.test_apply_svn_patch): New test case for applying an
-        svn patch with scm.apply_patch().
-        (SVNTest.test_apply_svn_patch_force): New test case for applying
-        an svn patch with scm.apply_patch() that conflicts.
-        (GitTest): Inherit from SCMTest instead of unittest.TestCase.
-        (GitTest.tearDown): Make sure to change directories back to the
-        original_path before the next test.
-        (GitTest.test_apply_git_patch): New test case for applying a git
-        patch with scm.apply_patch().
-        (GitTest.test_apply_git_patch_force): New test case for applying
-        a git patch with scm.apply_patch() that conflicts.
-
-2009-09-02  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Mark Rowe.
-
-        [Qt] Add support for platform-spesific layout-test results
-
-        For the Qt port we use the qt-[mac|linux|win] directories and then fall
-        back to the generic qt directory for both test results and skipped list.
-
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2009-09-02  Laurent Cerveau  <lcerveau@me.com>
-
-        Reviewed by David Kilzer.
-
-        <http://webkit.org/b/25517> build-webkit script should print build time at end
-
-        * Scripts/build-webkit:
-        Added startTime and endTime variable so that the build time is computed and printed as
-        part of the build message; display formatting has been separated in a dedicated subroutine.
-
-2009-09-02  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/28881> svn-create-patch should check if the repo path is the same when trying to find the root
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/VCSUtils.pm:
-        (determineSvnRoot): Added back check for repository root that
-        was removed in r46134 when this code lived in svn-create-patch.
-        It's necessary to check both the repository root and the
-        repository UUID in case two different working directories are
-        checked out from the same repository.
-
-2009-09-02  Timothy Hatcher  <timothy@apple.com>
-
-        Use new 512x512 icons for nightly builds.
-
-        Rubber-stamped by Mark Rowe.
-
-        * WebKitLauncher/webkit.icns:
-
-2009-09-02  Kevin Ollivier  <kevino@theolliviers.com>
-
-        waf build fix. Remove local variable shadowing global.
-
-        * wx/build/settings.py:
-
-2009-09-02  Zan Dobersek  <zandobersek@gmail.com>
-
-        Reviewed by David Kilzer.
-
-        Calls exitStatus function from the main package where it is also defined.
-
-        * Scripts/VCSUtils.pm:
-
-2009-09-02  Kevin Ollivier  <kevino@theolliviers.com>
-
-        waf build fixes for Windows/MSVC and Mac/Snow Leopard.
-
-        * wx/browser/wscript:
-        * wx/build/build_utils.py:
-        * wx/build/settings.py:
-
-2009-08-10  Kevin Ollivier  <kevino@theolliviers.com>
-
-        Reviewed by Eric Seidel.
-
-        Changes needed for build-webkit to support the waf build system for the wx port.
-        
-        https://bugs.webkit.org/show_bug.cgi?id=27619
-
-        * Scripts/build-webkit:
-        * Scripts/run-launcher:
-        * Scripts/webkitdirs.pm:
-
-2009-09-02  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/27168> With Subversion 1.6, update-webkit prompts on conflicts
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/update-webkit: Added "--accept postpone" to
-        @svnOptions when running with svn-1.6 or newer.
-
-2009-09-02  David Kilzer  <ddkilzer@apple.com>
-
-        Moved svn 1.6 version check into VCSUtils::isSVNVersion16OrNewer()
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/VCSUtils.pm:
-        (@EXPORT): Added &isSVNVersion16OrNewer.
-        (svnVersion): Added.  Internal method that gets the SVN version
-        and caches it.
-        (isSVNVersion16OrNewer): Added.  Method that does the SVN 1.6
-        version check.
-        * Scripts/prepare-ChangeLog: Switched to use new
-        isSVNVersion16OrNewer() method.
-        * Scripts/resolve-ChangeLogs: Ditto.
-        * Scripts/svn-create-patch: Ditto.
-
-2009-09-02  David Kilzer  <ddkilzer@apple.com>
-
-        Clean up VCSUtils.pm
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/VCSUtils.pm: Added proper package statement.  Fixed
-        indentation of BEGIN block.  Listed each exported method on a
-        line by itself.  Added methods to the export list after adding
-        the package statement.  Sorted module variables.  Moved
-        definiton of $gitRoot next to other module variables.
-
-2009-09-01  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Rubber-stamped by Simon Hausmann.
-
-        [Qt] Fix layout-test plugins/plugin-javascript-access.html
-
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-
-2009-09-02  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        js tests should move into jstests subdirectory instead of resources/
-        https://bugs.webkit.org/show_bug.cgi?id=25880
-
-        make-script-wrappers supports both resources and script-tests directories.
-        run-webkit-tests ignores files in script-tests.
-        Move script tests of animations to check the new script is working.
-
-        * Scripts/make-script-test-wrappers:
-        * Scripts/run-webkit-tests:
-
-2009-09-02  Szabo Carol  <carol.szabo@nokia.com>
-
-        Reviewed by David Levin.
-
-        check-webkit-style uses python from /usr/bin instead of the PATH
-        https://bugs.webkit.org/show_bug.cgi?id=28225
-
-        * Scripts/bugzilla-tool:
-        * Scripts/check-webkit-style:
-        * Scripts/run-webkit-unittests:
-        * Scripts/update-sources-list.py:
-          Changed the first line from
-          #!/usr/bin/python
-          to
-          #!/usr/bin/env python
-          which causes python to be invoked from the path location returned
-          by "which python" when any of these scripts are launched.
-          these are currently all the python scripts in WebKitTools/Scripts.
-
-2009-09-01  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/28601> bugzilla-tool post-commits posts commits backwards
-
-        Reviewed by Adam Barth.
-
-        * Scripts/modules/scm.py:
-        (Git.commit_ids_from_commitish_arguments): Reverse the list of
-        commits returned from git-rev-list since we always want to post
-        the oldest patches first to bugs.webkit.org.
-        * Scripts/modules/scm_unittest.py:
-        (run): Added return statement to return the output now that we
-        want it sometimes.
-        (SVNTestRepository._setup_test_commits): Added a fourth commit
-        so the GitTest.test_commitish_order() test has more commits to
-        work with.
-        (GitTest.test_commitish_order): Added unit test for change to
-        Git.commit_ids_from_commitish_arguments() in scm.py.
-
-2009-09-01  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/28877> Implement bugzilla-tool mark-fixed
-
-        Reviewed by David Levin.
-
-        The mark-fixed subcommand is for those times when you don't use
-        bugzilla-tool to commit a patch, but you want to use it to close
-        the bug with a committed-revision message.
-
-        * Scripts/bugzilla-tool:
-        (bug_comment_from_svn_revision): Added.  Extracted from
-        bug_comment_from_commit_text().
-        (bug_comment_from_commit_text): Extracted
-        bug_comment_from_svn_revision() from this method.
-        (MarkBugFixed.__init__): Added.
-        (MarkBugFixed._fetch_commit_log): Added.  Retrieves the commit
-        log from the last commit if no svn revision is specified, else
-        the commit log for the specified svn revision.
-        (MarkBugFixed._determine_bug_id_and_svn_revision): Added.
-        Attempts to determine the bug id and svn revision if one or both
-        were not defined on the command line.
-        (MarkBugFixed.execute): Added.  Adds a comment about the
-        revision that fixed the bug and closes the bug.
-        (BugzillaTool.__init__): Added mark-fixed subcommand.
-        * Scripts/modules/bugzilla.py:
-        (Bugzilla.fetch_title_from_bug): Added.  Returns the title of a
-        bug given a bug id.
-        * Scripts/modules/scm.py:
-        (SCM.strip_r_from_svn_revision): Added.  Utility method to strip
-        the leading 'r' from an svn revision.
-        (SCM.svn_commit_log): Added.  Subclasses must override.
-        (SCM.last_svn_commit_log): Added.  Subclasses must override.
-        (SVN.svn_commit_log): Added.  Returns svn log for a given
-        revision.
-        (SVN.last_svn_commit_log): Added.  Uses svnversion to find the
-        last commit in an svn working directory and then runs svn log.
-        (Git.svn_commit_log): Added.  Returns svn log for a given
-        revision.
-        (Git.last_svn_commit_log): Added.  Runs git-svn-log with a limit
-        of one log message.
-
-2009-09-01  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/28880> svn-apply --force doesn't actually work
-
-        Reviewed by Brady Eidson.
-
-        * Scripts/svn-apply:
-        (applyPatch): Add "--force" to $options arrayref if $force is
-        set.
-
-2009-09-01  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/28725> resolve-ChangeLogs: determineVCSRoot() returns incorrect repository root during git filter-branch
-
-        Reviewed by Adam Roben.
-
-        When git-filter-branch has been invoked to rewrite ChangeLog
-        files on series of git commits, it changes directories into
-        .git-rewrite/t before re-running resolve-ChangeLogs.  This
-        causes determineVCSRoot() in VCSUtils.pm to return
-        ".git-rewrite/t", which causes that path to be prepended to all
-        ChangeLog paths, which results in an error like this:
-
-            error: pathspec '.git-rewrite/t/ChangeLog' did not match any file(s) known to git.
-            Died at WebKitTools/Scripts/resolve-ChangeLogs line 376.
-
-        The correct way to fix this is not to try to find the repository
-        root when invoked by git-filter-branch.
-
-        * Scripts/resolve-ChangeLogs: If isInGitFilterBranch() is true,
-        set $relativePath to '.' instead of calling
-        chdirReturningRelativePath(determineVCSRoot()).
-        (isInGitFilterBranch): Added.  Checks for the existence of the
-        MAPPED_PREVIOUS_COMMIT environment variable.
-
-2009-09-01  Xan Lopez  <xlopez@igalia.com>
-
-        Reviewed by Gustavo Noronha.
-
-        Add support for Fedora distros in the http tests
-        https://bugs.webkit.org/show_bug.cgi?id=28263
-
-        Add detection code for Fedora distribution, and use the proper
-        httpd conf file when needed.
-
-        * Scripts/run-webkit-httpd:
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2009-09-01  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [Gtk] DRT needs implementation of overridePreference
-        https://bugs.webkit.org/show_bug.cgi?id=28830
-
-        Implement overridePreference.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        (setDefaultsToConsistentStateValuesForTesting):
-        (runTest):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (toWebSettingKey):
-        (LayoutTestController::overridePreference):
-
-2009-09-01  Joseph Pecoraro  <joepeck@webkit.org>
-
-        <http://webkit.org/b/28623> svn-[un]apply should change directories to the repository root before [un]applying
-
-        Reviewed by Eric Seidel.
-
-        Jump back and forth between the repository root directory (to apply) and the
-        directory the script was run from (to find the patch).
-
-        * Scripts/svn-apply:
-        * Scripts/svn-unapply:
-
-2009-08-31  Adam Roben  <aroben@apple.com>
-
-        Fall back to a Release version of Safari if a Debug one doesn't exist
-
-        <http://webkit.org/b/28849>
-
-        Reviewed by Sam Weinig.
-
-        * Scripts/webkitdirs.pm:
-        (safariPath): If the user is working with a Debug build, but there's
-        no Debug version of Safari present, fall back to using a Release
-        version of Safari.
-
-2009-08-31  Adam Roben  <aroben@apple.com>
-
-        Make safariPath() work for Debug builds of Safari on Windows
-
-        <http://webkit.org/b/28849>
-
-        Reviewed by Sam Weinig.
-
-        * Scripts/webkitdirs.pm:
-        (safariPath): If the user is working with a Debug build, add the
-        _debug suffix to Safari.exe.
-
-2009-08-28  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue needs a master process
-        https://bugs.webkit.org/show_bug.cgi?id=28040
-
-        Add a bugzilla-tool commit-queue command
-        Keeps per-bug logs, but doesn't yet upload them anywhere.
-
-        * Scripts/bugzilla-tool: Add LandPatchesFromCommitQueue to handle 'commit-queue'
-        * Scripts/modules/buildbot.py: remove noisy log message
-        * Scripts/modules/logging.py: add a 'tee()' call for splitting outputs in python
-
-2009-08-28  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Reviewed by Gustavo Noronha.
-
-        [GTK] Geolocation needs permission API before being enabled by default
-
-        Build the Gtk port with geolocation enabled. This option is only
-        enabled for the buildbot. The autotools option will be enabled by
-        default once the permissions API is implemented.
-
-        * Scripts/build-webkit:
-
-2009-08-26  Cameron McCormack  <cam@mcc.id.au>
-
-        Reviewed by David Kilzer.
-
-        Make prepare-ChangeLog notice property changes
-        https://bugs.webkit.org/show_bug.cgi?id=28675
-
-        Make the generated ChangeLog entry include a short description of
-        property changes if there were such changes.  Also make
-        prepare-ChangeLog not bail if the only changes are property changes.
-
-        * Scripts/prepare-ChangeLog:
-
-2009-08-26  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Oliver Hunt.
-
-        Don't let local files access web URLs
-        https://bugs.webkit.org/show_bug.cgi?id=28480
-
-        A bunch of our LayoutTests rely on our old behavior, so we explicitly
-        grant local files universal access during testing.  Mainly, these tests
-        involve making XMLHttpRequests for data URLs.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::WebPage::WebPage):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-
-2009-08-26  John Gregg  <johnnyg@google.com>
-
-        Reviewed by David Levin.
-
-        Minor style correction and include fix for notifications
-        https://bugs.webkit.org/show_bug.cgi?id=28745
-
-        * DumpRenderTree/win/DRTDesktopNotificationPresenter.cpp:
-          change to correct EnumStyle
-        (DRTDesktopNotificationPresenter::checkNotificationPermission):
-
-2009-08-26  David Levin  <levin@chromium.org>
-
-        Reviewed by Alexey Proskuryakov.
-
-        XMLHttpRequest.withCredentials=false shouldn't save cookies.
-        https://bugs.webkit.org/show_bug.cgi?id=28743
-
-        Added the support to the layout test controller on OSX and
-        Windows (for CFNETWORK) to allow for changing the accept cookie
-        policy.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController): Added a bool
-        to track the state of accepting cookies.
-        (setAlwaysAcceptCookiesCallback): Standard wrapper method
-        to go from js to a C++ method.
-        (LayoutTestController::staticFunctions): Added the
-        setAlwaysAcceptCookies method to the js layoutTestController.
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::alwaysAcceptCookies): Returns the value.
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setAlwaysAcceptCookies): Stub out method.
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues): Reset the accept cookie to
-        its default.
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setAlwaysAcceptCookies): Does the work for
-        OSX to change the cookie accept policy.
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (setAlwaysAcceptCookies): Method to handle all the calls necessary
-        to change the accept cookie policy on Windows.
-        (resetDefaultsToConsistentValues): Reset the accept cookie to
-        its default.
-        * DumpRenderTree/win/DumpRenderTreeWin.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setAlwaysAcceptCookies): Stub out method.
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setAlwaysAcceptCookies): Stub out method.
-
-2009-08-26  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Unreviewed.
-
-        Remove accidentally left in clobber option.
-        https://bugs.webkit.org/show_bug.cgi?id=28400
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Removed clobber option.
-
-2009-08-26  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Reviewed by Mark Rowe.
-
-        Add canary-style Chromium WebKit build slave to the waterfall.
-        https://bugs.webkit.org/show_bug.cgi?id=28400
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Added one Chromium/Windows slave
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Added support for Chromium slave commands.
-
-2009-08-25  Cameron McCormack  <cam@mcc.id.au>
-
-        Reviewed by Darin Adler.
-
-        make-script-test-wrappers should be executable
-        https://bugs.webkit.org/show_bug.cgi?id=28669
-
-        Make make-script-test-wrappers and update-sources-list.py both be
-        executable.
-
-        * Scripts/update-sources-list.py:
-        * Scripts/make-script-test-wrappers:
-
-2009-08-25  Brent Fulgham  <bfulgham@webkit.org>
-
-        Build fix
-
-        Revise Debug_Cairo targets to point inherit from the 
-        debug_wincairo.vsprops property sheet so that they link
-        against the proper libraries in Debug build.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin.vcproj:
-        * WinLauncher/WinLauncher.vcproj:
-
-2009-08-25  David Levin  <levin@chromium.org>
-
-        Reviewed by Adam Roben.
-
-        PLATFORM(CFNETWORK) should be USE(CFNETWORK).
-        https://bugs.webkit.org/show_bug.cgi?id=28713
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (main):
-
-2009-08-25  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Ariya Hidayat.
-
-        [Qt/Mac] Use CONFIG+=build_all only when building libraries
-
-        If no configuration is specified when building WebKit we pass the
-        debug_and_release option to QMake which results in Makefiles for
-        both configurations being generated.
-
-        Previously we built both of these configurations by default, for
-        all targets (both the QtWebKit framework/dyldlib and the various
-        executables such as QtLauncher and tests). This makes sense for
-        the libraries, which get the _debug suffix and can be loaded on
-        demand by setting the DYLD_IMAGE_SUFFIX, but for executables we
-        ended up building the same executable twice.
-
-        We now only build one instance of each executable, and since this
-        is a developer build we build the debug-version. Passing either
-        --debug or --release to build-webkit will override this, and
-        even in the default case the release version can still be built
-        by running 'make release' in the the build directory of each
-        target.
-
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * Scripts/webkitdirs.pm:
-
-2009-08-24  Hironori Bono  <hbono@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Fix Bug 27827 "[Chromium] Functions Keys don't work in google spreadsheet".
-        <https://bugs.webkit.org/show_bug.cgi?id=27827>.
-
-        Because of the lack of mappings from GDK key-codes to WebKit key-codes,
-        Chromium cannot send valid key-codes to JavaScript when a user types
-        function keys. This change just copies the mappings from 'KeyEventGtk.cpp'.
-
-        To write layout tests for this issue, added mappings from function-key
-        names to platform-specific key-codes to EventSendingController objects
-        so that eventSender.keyDown() can send function-key events without using
-        platform-specific key codes. (Unfortunately, this eventSender.keyDown() change
-        is only for Mac. So this change adds this new test to Skipped tests for other
-        platforms to prevent this change from crashing the build trees.)
-
-        * DumpRenderTree/mac/EventSendingController.mm:
-        (-[EventSendingController keyDown:withModifiers:]):
-
-2009-08-23  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Reviewed by Xan Lopez.
-
-        [Gtk] API for disabling local file access to web URLs
-        https://bugs.webkit.org/show_bug.cgi?id=28663
-
-        Enable this setting for DRT.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting):
-
-2009-08-22  Adam Barth  <abarth@webkit.org>
-
-        Revert 47684.  We're going to do this later once clients have had a
-        chance to opt into the setting they like.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::WebPage::WebPage):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-
-2009-08-22  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Don't let local files access web URLs
-        https://bugs.webkit.org/show_bug.cgi?id=28480
-
-        A bunch of our LayoutTests rely on our old behavior, so we explicitly
-        grant local files universal access during testing.  Mainly, these tests
-        involve making XMLHttpRequests for data URLs.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::WebPage::WebPage):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-
-2009-08-22  Mark Rowe  <mrowe@apple.com>
-
-        Rubber-stamped by Anders Carlsson.
-
-        Bring signed updates to the Mac nightly builds.
-
-        * WebKitLauncher/Info.plist:
-        * WebKitLauncher/WebKitLauncher.xcodeproj/project.pbxproj:
-        * WebKitLauncher/WebKitNightlyEnablerSparkle.m:
-        (initializeSparkle):
-        * WebKitLauncher/nightly.webkit.org.public.pem: Added.
-
-2009-08-21  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Rubberstamped by Simon Fraser.
-
-        Remove GNOME keyring support in build-webkit. This dependency's
-        already been removed in the Gtk port.
-
-        * Scripts/build-webkit:
-
-2009-08-20  Brian Weinstein  <bweinstein@apple.com>
-
-        Reviewed by Adam Roben.
-        Based on original patch by Stephanie Lewis.
-
-        Added support of the Windows malloc history format to parse-malloc history, so we can
-        read and parse it.
-
-        * Scripts/parse-malloc-history:
-
-2009-08-20  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Enable various "grouping" ARIA roles
-        https://bugs.webkit.org/show_bug.cgi?id=28486
-
-        Expose the ability to retrieve the subrole through accessibility for DRT.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-
-2009-08-20  Joseph Pecoraro  <joepeck@webkit.org>
-
-        Unreviewed.
-
-        Added myself as a committer.
-
-        * Scripts/modules/committers.py:
-
-2009-08-20  Xan Lopez  <xlopez@igalia.com>
-
-        Reviewed by Gustavo Noronha.
-
-        Fix memory leaks.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::whiteListAccessFromOrigin):
-        (LayoutTestController::pauseAnimationAtTimeOnElementWithId):
-        (LayoutTestController::pauseTransitionAtTimeOnElementWithId):
-
-2009-08-20  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool post-diff can post partial diffs from SVN checkouts.
-        https://bugs.webkit.org/show_bug.cgi?id=28445
-
-        Pass the checkout root as the cwd.  Also wrote a test to ensure this.
-
-        * Scripts/modules/scm.py:
-        * Scripts/modules/scm_unittest.py:
-
-2009-08-20  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Adele Peterson.
-
-        Don't leak the JSStringRef returned by AccessibilityUIElement::attributeValue.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (attributeValueCallback):
-
-2009-08-20  Ariya Hidayat  <ariya.hidayat@nokia.com>
-
-        Unreviewed, build fix.
-
-        [Qt] The template-based qMax() compares two qreals.
-
-        * DumpRenderTree/qt/ImageDiff.cpp:
-        (main):
-
-2009-08-20  David Levin  <levin@chromium.org>
-
-        Reviewed by David Kilzer.
-
-        bugzilla-tool patch retrieval should handle 302 redirects.
-        https://bugs.webkit.org/show_bug.cgi?id=28485
-
-        * Scripts/modules/scm.py: Pass the --location parameter to curl
-        so that 302's are followed.
-
-2009-08-20  Aaron Boodman  <aa@chromium.org>
-
-        One more speculative build for gtk.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-
-2009-08-20  Aaron Boodman  <aa@chromium.org>
-
-        Speculative build for gtk.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::whiteListAccessFromOrigin):
-
-2009-08-20  Mark Rowe  <mrowe@apple.com>
-
-        Ignore some leaks that are known to originate from ImageIO.
-
-        * Scripts/run-webkit-tests:
-
-2009-08-20  Aaron Boodman  <aa@chromium.org>
-
-        With David Levin.
-
-        Speculative build fix for qt.
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::whiteListAccessFromOrigin):
-        * DumpRenderTree/qt/jsobjects.h:
-
-2009-08-19  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        Fix <http://webkit.org/b/28484> Plug-in-related leaks seen on the build bot
-
-        Update check-for-global-initializers to accommodate the new uses of RefCountedLeakCounter in WebKit.
-
-        * Scripts/check-for-global-initializers:
-
-2009-08-19  Aaron Boodman  <aa@chromium.org>
-
-        Reviewed by David Levin.
-
-        https://bugs.webkit.org/show_bug.cgi?id=24853: Provide a way for WebKit clients to
-        specify a more granular policy for cross-origin XHR access.
-
-        * DumpRenderTree/LayoutTestController.cpp: Expose whiteListAccessFromOrigin() to layout tests.
-        (whiteListAccessFromOriginCallback): Ditto.
-        (LayoutTestController::staticFunctions): Ditto.
-        * DumpRenderTree/LayoutTestController.h: Ditto.
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp: Ditto.
-        (LayoutTestController::whiteListAccessToOrigin): Ditto.
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm: Ditto.
-        (LayoutTestController::whiteListAccessFromOrigin): Ditto.
-        * DumpRenderTree/qt/jsobjects.cpp: Ditto.
-        (LayoutTestController::whiteListAccessFromOrigin): Ditto.
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp: Stub out whiteListAccessFromOrigin().
-        (LayoutTestController::whiteListAccessFromOrigin): Ditto.
-        * DumpRenderTree/gtk/DumpRenderTree.cpp: Reset origin access lists before each test.
-        (resetWebViewToConsistentStateBeforeTesting): Ditto.
-        * DumpRenderTree/mac/DumpRenderTree.mm: Ditto.
-        (resetWebViewToConsistentStateBeforeTesting): Ditto.
-        * DumpRenderTree/qt/DumpRenderTree.cpp: Ditto.
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting): Ditto.
-
-2009-08-19  Mark Rowe  <mrowe@apple.com>
-
-        Rubber-stamped by Dan Bernstein.
-
-        Ignore some leaks that are known to originate from QTKit.
-
-        * Scripts/run-webkit-tests:
-
-2009-08-19  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue/bugzilla-tool can get wedged if git is mid-rebase
-        https://bugs.webkit.org/show_bug.cgi?id=28436
-
-        Make clean_working_directory cancel rebases too (even though that's a bit of a hack).
-        This code will only ever be run when --force-clean is passed.
-
-        I also added a new unit test to make sure this code actually works. :)
-
-        * Scripts/modules/scm.py:
-        * Scripts/modules/scm_unittest.py:
-
-2009-08-19  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Levin.
-
-        WebKit needs a changelogs.py to hold changelog-related code
-        https://bugs.webkit.org/show_bug.cgi?id=28477
-
-        This is moving code and adding tests.  There was only one functional
-        change (which was removing a trailing newline from the last_entry() result).
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/changelogs.py: Added.
-        * Scripts/modules/changelogs_unittest.py: Added.
-        * Scripts/run-webkit-unittests:
-
-2009-08-20  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool needs a way to ask build.webkit.org if the bots are passing
-        https://bugs.webkit.org/show_bug.cgi?id=28222
-
-        Basic support for now.  This has been in testing for 24 hours now and worked great!
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/buildbot.py: Added.
-        * Scripts/modules/buildbot_unittest.py: Added.
-        * Scripts/run-webkit-unittests:
-
-2009-08-19  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Reviewed by Gustavo Noronha.
-
-        [Gtk] Bump waitToDumpWatchdog interval to 15 seconds to match the
-        default timeout used by run-webkit-tests. Mac and Win ports were
-        recently bumped in http://trac.webkit.org/changeset/r47465.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setWaitToDump):
-
-2009-08-19  David D. Kilzer  <ddkilzer@webkit.org>
-
-        DumpRenderTreeSupport.pm: provide pre-generated swig source for Tiger
-
-        Reviewed by Mark Rowe.
-
-        Provide pre-generated swig source files for Tiger so it may
-        benefit from the faster run-webkit-tests.
-
-        * DumpRenderTree/mac/PerlSupport/DumpRenderTreeSupportTiger.pm:
-        Generated by swig.
-        * DumpRenderTree/mac/PerlSupport/DumpRenderTreeSupport_wrapTiger.c: Added.
-        Generated by swig.
-        (swig_type_info::SWIG_TypeNameComp):
-        (swig_type_info::SWIG_TypeEquiv):
-        (swig_type_info::SWIG_TypeRegisterTL):
-        (swig_type_info::SWIG_TypeCheck):
-        (swig_type_info::SWIG_TypeCast):
-        (swig_type_info::SWIG_TypeDynamicCast):
-        (swig_type_info::SWIG_TypeName):
-        (swig_type_info::SWIG_TypePrettyName):
-        (swig_type_info::SWIG_TypeQueryTL):
-        (swig_type_info::SWIG_TypeClientDataTL):
-        (swig_type_info::SWIG_PackData):
-        (swig_type_info::SWIG_UnpackData):
-        (swig_type_info::SWIG_PropagateClientDataTL):
-        (swig_type_info::SWIG_PackVoidPtr):
-        (swig_type_info::SWIG_UnpackVoidPtr):
-        (swig_type_info::SWIG_PackDataName):
-        (swig_type_info::SWIG_UnpackDataName):
-        * DumpRenderTree/mac/PerlSupport/Makefile: Updated to build on
-        Tiger using pre-generated files.
-
-2009-08-18  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by David Kilzer.
-
-        run-webkit-tests hangs when WebCore tries to log too much
-        https://bugs.webkit.org/show_bug.cgi?id=15743
-
-        Read stdout and stderr in parallel.
-
-        * Scripts/run-webkit-tests:
-
-2009-08-18  Mark Rowe  <mrowe@apple.com>
-
-        Rubber-stamped by Oliver Hunt.
-
-        Add a new build configuration that checks for leaks during the layout tests,
-        and hook a new machine up to it.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2009-08-18  Aaron Boodman  <aa@chromium.org>
-
-        Reviewed by Maciej Stachowiak.
-
-        https://bugs.webkit.org/show_bug.cgi?id=28412: Leak of WebCore::XMLHttpRequest object during layout tests.
-
-        No new tests: Already covered by existing tests.
-
-        * Scripts/check-for-global-initializers: Allow global initialization of WTF::RefCountedLeakCounter for XMLHttpRequest.
-
-2009-08-18  Mark Rowe  <mrowe@apple.com>
-
-        Rubber-stamped by Geoff Garen.
-
-        Bump waitToDumpWatchdogInterval to 15 seconds to match the time-out used by run-webkit-tests.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-
-2009-08-18  Brian Weinstein  <bweinstein@apple.com>
-
-        Rubber-stamped by Adam Roben.
-
-        Changed use of CComBSTR in exceededDatabaseQuota to BSTRs, and free them,
-        and removed include to fix building on VC++ Express.
-
-        * DumpRenderTree/win/UIDelegate.cpp:
-        (UIDelegate::exceededDatabaseQuota):
-
-2009-08-18  Brian Weinstein  <bweinstein@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        Fix of <https://bugs.webkit.org/show_bug.cgi?id=28326> DRT on Windows doesn't support 
-        LayoutTestController::setQuota or print a callback on UIDelegate::exceededDatabaseQuota.
-        
-        Implemenent setDatabaseQuota and added a new function to the IWebDatabaseManager interface.
-        Also added a console output on UIDelegate::exceededDatabaseQuota to match the mac.
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setDatabaseQuota):
-        * DumpRenderTree/win/UIDelegate.cpp:
-        (UIDelegate::exceededDatabaseQuota):
-
-2009-08-18  Peter Kasting  <pkasting@google.com>
-
-        Reviewed by Eric Seidel.
-
-        https://bugs.webkit.org/show_bug.cgi?id=28415
-        Set svn:eol-style CRLF on all .sln and .vcproj files that don't already
-        have it.
-
-        * record-memory-win/record-memory-win.vcproj:
-        * WinLauncher/WinLauncher.vcproj:
-        * WebKitLauncherWin/WebKitLauncherWin.vcproj:
-        * DumpRenderTree/win/ImageDiff.vcproj:
-        * FindSafari/FindSafari.vcproj:
-
-2009-08-18  Drew Wilson  <atwilson@google.com>
-
-        Reviewed by Eric Seidel.
-
-        Need to extend DumpRenderTree to expose number of worker threads
-        https://bugs.webkit.org/show_bug.cgi?id=28292
-
-        Added layoutTestController.workerThreadCount, and implementations on various platforms that call into WebKit.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (getWorkerThreadCountCallback):
-        (LayoutTestController::staticValues):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::workerThreadCount):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::workerThreadCount):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::workerThreadCount):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::workerThreadCount):
-
-2009-08-18  Xan Lopez  <xlopez@igalia.com>
-
-        Reviewed by Jan Alonzo.
-
-        Initialize x and y in the GtkAllocation structure to shut up
-        valgrind.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (runTest):
-
-2009-08-17  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        Some HTMLs are modified by make-script-test-wrappers
-        https://bugs.webkit.org/show_bug.cgi?id=28213
-
-        Add fast/js/const.js and fast/canvas/canvas-2d-imageData-create-nonfinite.js into
-        the exclude list, modified fast/dom/Geolocation/resources/TEMPLATE.html, and
-        re-generated wml/* and Geolocation/* .
-
-        * Scripts/make-script-test-wrappers:
-
-2009-08-17  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        -webkit-box-orient:horizontal doesn't work on <button> tag
-        https://bugs.webkit.org/show_bug.cgi?id=34445
-
-        Make a flexible button's anonymous child flexible and pass the
-        parent's box-orient to the anonymous child.
-
-        Also, added a renderName for anonymous flexible boxes.
-
-        * Scripts/make-script-test-wrappers:
-
-2009-08-17  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Can no longer --reset-results of a layout test directory
-        https://bugs.webkit.org/show_bug.cgi?id=28336
-
-        --reset-results and --exit-after-n-failures are incompatible.
-
-        * Scripts/run-webkit-tests:
-
-2009-08-17  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/26920> bugzilla-tool dumps too much junk the the commit comment from git
-
-        Reviewed by Adam Roben.
-
-        New commit message:
-            Committed r12345: <http://trac.webkit.org/changeset/12345>
-
-        * Scripts/bugzilla-tool:
-        (bug_comment_from_commit_text): Print out a compact,
-        standardized commit message for both git and svn.
-
-2009-08-17  Peter Kasting  <pkasting@google.com>
-
-        Reviewed by Steve Falkenburg.
-
-        https://bugs.webkit.org/show_bug.cgi?id=27323
-        Only add Cygwin to the path when it isn't already there.  This avoids
-        causing problems for people who purposefully have non-Cygwin versions of
-        executables like svn in front of the Cygwin ones in their paths.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/ImageDiff.vcproj:
-        * DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin.vcproj:
-
-2009-08-17  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/28393> check-webkit-style: add check for use of std::max()/std::min() instead of MAX()/MIN()
-
-        Reviewed by David Levin.
-
-        * Scripts/modules/cpp_style.py:
-        (_ERROR_CATEGORIES): Added 'runtime/max_min_macros'.
-        (check_max_min_macros): Added.  Returns level 4 error when MAX()
-        and MIN() macros are used in header files and C++ source files.
-        (check_style): Added call to check_max_min_macros().
-        * Scripts/modules/cpp_style_unittest.py: Added unit tests.
-        (test_max_macro): Added.
-        (test_min_macro): Added.
-
-2009-08-13  Mike Fenton  <mike.fenton@torchmobile.com>
-
-        Reviewed by Eric Seidel.
-
-        Move adjustLineToPixelBoundaries overlapping function to GraphicsContext.cpp
-        and remove from GraphicsContextCairo.cpp and GraphicsContextQt.cpp.
-
-        https://bugs.webkit.org/show_bug.cgi?id=28268
-
-        * platform/graphics/GraphicsContext.cpp:
-        (WebCore::GraphicsContext::adjustLineToPixelBoundaries):
-        * platform/graphics/GraphicsContext.h:
-        * platform/graphics/cairo/GraphicsContextCairo.cpp:
-        * platform/graphics/qt/GraphicsContextQt.cpp:
-
-2009-08-10  Mike Fenton  <mike.fenton@torchmobile.com>
-
-        Reviewed by Adam Treat.
-
-        Style fixes for DumpRenderTree/qt/jsobjects.cpp based on cpp_style.py and
-        WebKit style guide.
-
-        https://bugs.webkit.org/show_bug.cgi?id=28161
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (findFrameNamed):
-        (LoadItem::invoke):
-        (LayoutTestController::provisionalLoad):
-        (LayoutTestController::timerEvent):
-        (LayoutTestController::pauseAnimationAtTimeOnElementWithId):
-        (LayoutTestController::pauseTransitionAtTimeOnElementWithId):
-        (LayoutTestController::numberOfActiveAnimations):
-        (EventSender::keyDown):
-        (EventSender::frameUnderMouse):
-        (TextInputController::doCommand):
-
-2009-08-16  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/28370> check-webkit-style: add check for 'using std::foo;' statements
-
-        Reviewed by David Levin.
-
-        In <http://webkit.org/b/28355#c1>, it was noted that new source
-        files use 'using namespace std;' instead of individual
-        'using std::foo;' statements.  This adds a level 4 check for
-        such statements.
-
-        * Scripts/modules/cpp_style.py:
-        (_ERROR_CATEGORIES): Added 'build/using_std'.
-        (check_using_std): Added.
-        (check_style): Added call to check_using_std().
-        * Scripts/modules/cpp_style_unittest.py:
-        (WebKitStyleTest.test_using_std): Added unit test.
-
-2009-08-16  David Kilzer  <ddkilzer@apple.com>
-
-        Backed out r47343 which was mistakenly committed
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/scm.py:
-
-2009-08-16  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/28367> bugzilla.py: replace ScriptError class with BugzillaError class
-
-        Reviewed by David Levin.
-
-        The ScriptError class doesn't exist in bugzilla.py, so any
-        errors print error messages about ScriptError instead of the
-        actual error:
-
-            NameError: global name 'ScriptError' is not defined
-
-        * Scripts/modules/bugzilla.py:
-        (BugzillaError): Added class.  Modeled after ScriptError class
-        in scm.py.
-        (Bugzilla.authenticate): Changed to use BugzillaError instead of
-        ScriptError.
-        (Bugzilla._check_create_bug_response): Ditto.
-
-2009-08-14  Adam Bergkvist  <adam.bergkvist@ericsson.com>
-
-        Reviewed by Sam Weinig.
-
-        Added EventSource to the build script (default on).
-        https://bugs.webkit.org/show_bug.cgi?id=14997 
-
-        * Scripts/build-webkit:
-
-2009-08-15  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Unreviewed.
-
-        Add myself to list of committers.
-
-        * Scripts/modules/committers.py:
-
-2009-08-15  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        Fix layout test failures after r47312.
-
-        Reviewed by Cameron Zwarich.
-
-        * DumpRenderTree/AccessibilityController.h:
-        Replaced logFocusEvents() with setLogFocusEvents(), which takes a
-        boolean argument to turn logging of focus events on or off.
-        Added a function to reset the AccessibilityController to a consistent
-        state.
-
-        * DumpRenderTree/AccessibilityController.cpp:
-        (logFocusEventsCallback):
-        Call setLogFocusEvents() to enable logging.
-        (AccessibilityController::resetToConsistentState):
-        Call setLogFocusEvents() to disable logging.
-
-        * DumpRenderTree/gtk/AccessibilityControllerGtk.cpp:
-        (AccessibilityController::setLogFocusEvents):
-        Update stub.
-
-        * DumpRenderTree/mac/AccessibilityControllerMac.mm:
-        (AccessibilityController::setLogFocusEvents):
-        Update stub.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting):
-        Call the FrameLoadDelegate's resetToConsistentState method.
-
-        * DumpRenderTree/mac/FrameLoadDelegate.h:
-        Declare the resetToConsistentState method.
-
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate resetToConsistentState]):
-        Call the AccessibilityController's resetToConsistentState() function.
-
-        * DumpRenderTree/win/AccessibilityControllerWin.cpp:
-        (AccessibilityController::~AccessibilityController):
-        Turn off focus event logging when the controller is destroyed.
-        (AccessibilityController::setLogFocusEvents):
-        If the caller passes false, unhook the focus event, and clear
-        m_focusEventHook.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting):
-        Call the FrameLoadDelegate's resetToConsistentState function.
-
-        * DumpRenderTree/win/FrameLoadDelegate.h:
-        Declare the resetToConsistentState() function.
-
-        * DumpRenderTree/win/FrameLoadDelegate.cpp:
-        (FrameLoadDelegate::resetToConsistentState):
-        Call the AccessibilityController's resetToConsistentState() function.
-
-
-2009-08-14  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        Add a mechanism for logging MSAA focus events.
-
-        Part of <rdar://problem/6218721> No MSAA focus events fired for Webkit
-        nightly (20866)
-
-        https://bugs.webkit.org/show_bug.cgi?id=20866
-
-        Reviewed by Oliver Hunt.
-
-        * DumpRenderTree/AccessibilityController.cpp:
-        (logFocusEventsCallback):
-        Call the AccessibilityController's logFocusEvents() function.
-        (AccessibilityController::getJSClass):
-        Add a "logFocusEvents" function to the AccessibilityController's JS
-        class definition.
-
-        * DumpRenderTree/AccessibilityController.h:
-        On Windows, include windows.h, and add a member variable to hold the
-        handle to the event hook for focus events. Add a declaration for a
-        function that enables logging of focus events.
-
-        * DumpRenderTree/gtk/AccessibilityControllerGtk.cpp:
-        (AccessibilityController::logFocusEvents):
-        Stubbed.
-
-        * DumpRenderTree/mac/AccessibilityControllerMac.mm:
-        (AccessibilityController::logFocusEvents):
-        Stubbed.
-
-        * DumpRenderTree/win/AccessibilityControllerWin.cpp:
-        (AccessibilityController::AccessibilityController):
-        (AccessibilityController::~AccessibilityController):
-        If we hooked the focus event, unhook it.
-        (logFocusEventProc):
-        When we receive a focus event, get the accessible object for the event,
-        and log its name to stdout.
-        (AccessibilityController::logFocusEvents):
-        Setup the focus event hook to listen for events in the current process.
-
-2009-08-14  Eric Seidel  <eric@webkit.org>
-
-        No review.  Fix 5-space indent to be 4-spaces.
-
-        * Scripts/bugzilla-tool:
-
-2009-08-14  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Public API to configure the storage path for HTML5 localStorage
-        https://bugs.webkit.org/show_bug.cgi?id=28036
-
-        Turn on LocalStorage support for Qt DumpRenderTree since
-        LocalStorage is now disabled by defult for QtWebkit.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp: 
-        (WebCore::WebPage::WebPage):
-
-2009-08-14  Xan Lopez  <xlopez@igalia.com>
-
-        Reviewed by Jan Alonzo.
-
-        Do not unref the main webview, it's owned by its parent
-        container. Instead destroy the container, which should take care
-        of everything (not terribly important since we exit right after
-        that, but still).
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (main):
-
-2009-08-13  Eric Seidel  <eric@webkit.org>
-
-        No review, correcting obvious python error seen in the commit queue.
-
-        args can be a string or an array.  Assuming args is always an array results in
-        double-spaced text in error logs.
-
-        * Scripts/bugzilla-tool:
-
-2009-08-13  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
-
-        Unreviewed build fix. Include stdio.h for using stdout, stderr,
-        and fprintf.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-
-2009-08-13  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        rename make-js-test-wrappers to make-script-test-wrappers
-        https://bugs.webkit.org/show_bug.cgi?id=28212
-
-        * Scripts/make-script-test-wrappers: Renamed from WebKitTools/Scripts/make-js-test-wrappers.
-
-2009-08-13  Drew Wilson <atwilson@chromium.org>
-
-        Unreviewed.
-
-        Add myself to list of committers.
-
-        * Scripts/modules/committers.py:
-
-2009-08-13  John Sullivan  <sullivan@apple.com>
-
-        Unreviewed.
-
-        Add myself to list of committers.
-
-        * Scripts/modules/committers.py:
-
-2009-08-13  Eric Seidel  <eric@webkit.org>
-
-        Correct spelling error in file name.  No review.
-
-        * Scripts/modules/committers_unittest.py: Renamed from WebKitTools/Scripts/modules/commiters_unittest.py.
-        * Scripts/run-webkit-unittests:
-
-2009-08-13  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Simon Fraser.
-
-        REGRESSION(r47175): error running run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=28261
-
-        Fix "Use of uninitialized value in concatenation (.) or string at
-        WebKitTools/Scripts/run-webkit-tests line 191." by setting
-        $testsPerDumpTool to 1000 by default.
-
-        * Scripts/run-webkit-tests:
-
-2009-08-13  Nate Chapin  <japhet@chromium.org>
-
-        Unreviewed.
-
-        Add myself to list of committers.
-
-        * Scripts/modules/committers.py:
-
-2009-08-13  Brent Fulgham  <bfulgham@webkit.org>
-
-        Unreviewed.
-
-        Add 'Brent Fulgham' to the committers list.
-
-        * Scripts/modules/committers.py:
-
-2009-08-13  Adam Langley  <agl@chromium.org>
-
-        Review not required.
-
-        * Scripts/modules/committers.py:
-          Adding myself to this list because Eric told me to.
-
-2009-08-13  Greg Bolsinga  <bolsinga@apple.com>
-
-        Unreviewed.
-
-        Add 'Greg Bolsinga' to the committers list.
-
-        * Scripts/modules/committers.py:
-
-2009-08-13  Adam Roben  <aroben@apple.com>
-
-        Fix off-by-one result comparisons in media tests on Windows Debug
-        builds
-
-        media/video-played.html seems always to time out in Windows Debug
-        builds. A race condition between media/video-test.js's "hang" timer and
-        DumpRenderTree's built-in "watchdog" timer was causing results for
-        media/video-played.html to be printed twice, causing all future media
-        tests to be compared to the previous test's results.
-
-        The fix is to make the watchdog timer got through the same code path
-        as calling notifyDone manually, so that the results will only get
-        printed once. A subsequent patch will remove video-test.js's hang
-        timer entirely, since it is redundant.
-
-        Fixes <http://webkit.org/b/28265>.
-
-        Reviewed by Mark Rowe.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::waitToDumpWatchdogTimerFired): Added. Code came
-        from Gtk/Mac/Win's watchdog timer handlers, but we now call
-        notifyDone() instead of dump() so that a subsequent call to
-        notifyDone() won't print the results out again.
-
-        * DumpRenderTree/LayoutTestController.h: Added
-        waitToDumpWatchdogTimerFired.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (waitToDumpWatchdogFired):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (waitUntilDoneWatchdogFired):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (waitUntilDoneWatchdogFired):
-        Changed to call waitToDumpWatchdogTimerFired.
-
-2009-08-13  Eric Carlson  <eric.carlson@apple.com>
-
-        Unreviewed.
-
-        Added 'Eric Carlson' to the committers list.
-
-        * Scripts/modules/committers.py:
-
-2009-08-13  Dirk Schulze  <krit@webkit.org>
-
-        Unreviewed.
-        Added 'Dirk Schulze' to the committers list.
-
-        * Scripts/modules/committers.py:
-
-2009-08-13  Adam Roben  <aroben@apple.com>
-
-        Enable running testapi in run-javascriptcore-tests on Windows
-
-        Fixes <http://webkit.org/b/24856> run-javascriptcore-tests should run
-        testapi on Windows
-
-        Reviewed by Mark Rowe.
-
-        * Scripts/run-javascriptcore-tests: Allow testapi to run if we're in
-        the AppleWinWebKit configuration.
-
-2009-08-13  Adam Roben  <aroben@apple.com>
-
-        Re-enable testapi in run-javascriptcore-tests on Mac
-
-        This seems to have been mistakenly disabled in r47089.
-
-        Rubber-stamped by Mark Rowe.
-
-        * Scripts/run-javascriptcore-tests: Removed comment markers that were
-        preventing running testapi.
-
-2009-08-12  George Staikos  <george.staikos@torchmobile.com>
-
-        Reviewed by Adam Treat.
-
-        Enable WCSS and XHTML-MP flags for build-webkit.
-
-        * Scripts/build-webkit:
-
-2009-08-12  David Kilzer  <ddkilzer@apple.com>
-
-        run-webkit-tests: document --nthly flag in help message
-
-        Reviewed by Simon Fraser.
-
-        * Scripts/run-webkit-tests: Added --nthly flag to $usage string.
-        Also noted that -1|--singly implies --nthly 1.
-
-2009-08-12  Eric Seidel  <eric@webkit.org>
-
-        No review, just fixing mismerged ChangeLogs.
-
-2009-08-12  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        run-webkit-tests needs a --exit-after-failures=N option
-        https://bugs.webkit.org/show_bug.cgi?id=28192
-
-        Added the option and deployed it to bugzilla-tool.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/run-webkit-tests:
-
-2009-08-11  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        bugzilla-tool : various improvements for running the commit-queue
-        https://bugs.webkit.org/show_bug.cgi?id=28199
-
-        Make run_and_throw_if_fail silence STDERR as well as STDIN.
-        I also changed run_and_throw_if_fail to use the /dev/null trick instead of .communicate() to avoid ever buffering the output (per abarth's suggestion).
-        Change a few "print" statements to "log" so they appear in the output.
-        Changed all string + uses to use string formatting instead (this is less error prone as it will automatically convert non-string objects).
-        Added a little more logging so that --quiet mode is easier to understand.
-        Changed clear_attachment_review_flag to clear_attachment_flags and made it clear the commit-queue flag as well.
-        Added the ability for bugzilla-tool to reject patches from the commit-queue when they fail to compile/apply/etc.
-        Added _find_select_element_for_flag to make the code for finding flag <select> elements clearer.
-        Made curl call (downloading patch files) quieter.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/bugzilla.py:
-        * Scripts/modules/scm.py:
-
-2009-08-12  Peter Kasting  <pkasting@google.com>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=27323
-        Change pattern that strips all trailing whitespace to just remove EOL
-        chars (\r, \n), to make it clear that varying EOL chars is the primary
-        problem being solved.
-
-        * Scripts/prepare-ChangeLog:
-        * Scripts/resolve-ChangeLogs:
-        * Scripts/svn-create-patch:
-        * Scripts/update-webkit:
-
-2009-08-12  Kevin Ollivier  <kevino@theolliviers.com>
-
-        wx waf build fix, add new directories to the build.
-
-        * wx/build/settings.py:
-
-2009-08-11  Adam Roben  <aroben@apple.com>
-
-        Update DumpRenderTree for IWebUIDelegatePrivate changes
-
-        Reviewed by Dave Hyatt.
-
-        * DumpRenderTree/win/UIDelegate.h: Updated to match
-        IWebUIDelegatePrivate.
-
-2009-08-12  Adam Roben  <aroben@apple.com>
-
-        Don't try to seek to the end of stdin on Cygwin
-
-        Doing so seems to always cause an exception (for unknown reasons).
-
-        Fixes <http://webkit.org/b/28159> create-bug throws an exception in
-        Cygwin
-
-        Reviewed by Dave Kilzer.
-
-        * Scripts/bugzilla-tool:
-        (CreateBug.prompt_for_bug_title_and_comments): Ignore IOErrors
-        generated by calling sys.stdin.seek, since these seem to be generated
-        for no good reason on Cygwin.
-
-2009-08-12  Adam Roben  <aroben@apple.com>
-
-        Don't raise an exception when --cc is not passed to create-bug
-
-        Fixes <http://webkit.org/b/28158> create-bug throws an exception if
-        --cc is not specified
-
-        Reviewed by Dave Kilzer.
-
-        * Scripts/modules/bugzilla.py:
-        (Bugzilla.create_bug_with_patch): Only set the "cc" field if a CC
-        string was specified. Otherwise we'll generate an exception about the
-        "cc" variable not being a string.
-
-2009-08-11  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool : various improvements for running the commit-queue
-        https://bugs.webkit.org/show_bug.cgi?id=28199
-
-        Make run_and_throw_if_fail silence STDERR as well as STDIN.
-        I also changed run_and_throw_if_fail to use the /dev/null trick instead of .communicate() to avoid ever buffering the out
-        Change a few "print" statements to "log" so they appear in the output.
-        Changed all string + uses to use string formatting instead (this is less error prone as it will automatically convert non
-        Added a little more logging so that --quiet mode is easier to understand.
-        Changed clear_attachment_review_flag to clear_attachment_flags and made it clear the commit-queue flag as well.
-        Added the ability for bugzilla-tool to reject patches from the commit-queue when they fail to compile/apply/etc.
-        Added _find_select_element_for_flag to make the code for finding flag <select> elements clearer.
-        Made curl call (downloading patch files) quieter.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/bugzilla.py:
-        * Scripts/modules/scm.py:
-
-2009-08-11  Eric Seidel  <eric@webkit.org>
-
-        No review, script regression fix only.
-
-        run-webkit-tests --quiet hangs
-        https://bugs.webkit.org/show_bug.cgi?id=28202
-
-        Do a huge dance to get open3 to pipe to /dev/null w/o blocking.
-        This was what I came up with after discussions in #perl.
-
-        * Scripts/run-webkit-tests:
-
-2009-08-11  John Gregg  <johnnyg@google.com>
-
-        Reviewed by Maciej Stachowiak.
-
-        Switch DumpRenderTree to contain a WebUIDelegate2, which extends
-        WebUIDelegate, so that the notifications tests will still work.
-        https://bugs.webkit.org/show_bug.cgi?id=28198
-
-        * DumpRenderTree/win/UIDelegate.h:
-
-2009-08-11  Darin Adler  <darin@apple.com>
-
-        Try to fix GTK build.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::stringForRange): Added.
-
-2009-08-10  Mike Fenton  <mike.fenton@torchmobile.com>
-
-        Reviewed by Adam Treat.
-
-        Add processing for string constants used by the tests to trigger
-        common actions like up, down, left, right, etc. for the Qt
-        implementation of DumpRenderTree.
-
-        Note this allows fast/forms/textarea-arrow-navigation.html to pass
-        correctly.
-
-        https://bugs.webkit.org/show_bug.cgi?id=28161
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (EventSender::keyDown):
-
-2009-08-11  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Bug 28200 - ListMarker should be included as part of the text value to parse
-        https://bugs.webkit.org/show_bug.cgi?id=28200
-
-        Add the ability to retrieve a string given a plain NSRange.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (stringForRangeCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::valueDescription):
-        (AccessibilityUIElement::stringForRange):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::stringForRange):
-
-2009-08-11  Dmitry Titov  <dimich@chromium.org>
-
-        Reviewed by NOBODY (Speculative fix for the layout test failure).
-
-        Fix fast/dom/prototype-inheritance.html
-        and fast/dom/prototype-inheritance-2.html
-        broken on Windows by http://trac.webkit.org/changeset/47018
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues): enable app cache in Windows DRT.
-
-2009-08-11  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool: Re-factor shared landing logic into helper class to share more code
-        https://bugs.webkit.org/show_bug.cgi?id=28193
-
-        Added new WebKitLandingScripts class to hold this shared logic.
-        Also added a view_source_url function to move more webkit-specific urls out of bugzilla-tool core.
-
-        * Scripts/bugzilla-tool:
-
-2009-08-11  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Adam Treat.
-
-        Fix the current failures on the buildbot.
-
-        As Qt hooks up the maybeDump to loadFinished, we need to make
-        sure that calling dump() will not call maybeDump on loadFinished.
-
-        As dump is called my emitting done() which calls dump() and then
-        setting m_isLoading to false. So in the case m_isLoading is false,
-        do not dump again.
-
-        The current code is confusing, and should be made more clear
-        in another commit.
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::maybeDump):
-        (LayoutTestController::notifyDone):
-
-2009-08-11  John Gregg  <johnnyg@google.com>
-
-        Reviewed by Maciej Stachowiak.
-
-        Add support for desktop notifications API to DumpRenderTree,
-        and support for ENABLE_NOTIFICATIONS flag to build-webkit.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (grantDesktopNotificationPermissionCallback):
-        (LayoutTestController::staticFunctions):
-        (LayoutTestController::grantDesktopNotificationPermission):
-        (LayoutTestController::checkDesktopNotificationPermission):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/win/DRTDesktopNotificationPresenter.cpp: Added.
-        (DRTDesktopNotificationPresenter::DRTDesktopNotificationPresenter):
-        (DRTDesktopNotificationPresenter::QueryInterface):
-        (DRTDesktopNotificationPresenter::AddRef):
-        (DRTDesktopNotificationPresenter::Release):
-        (DRTDesktopNotificationPresenter::showDesktopNotification):
-        (DRTDesktopNotificationPresenter::cancelDesktopNotification):
-        (DRTDesktopNotificationPresenter::notificationDestroyed):
-        (DRTDesktopNotificationPresenter::checkNotificationPermission):
-        (DRTDesktopNotificationPresenter::requestNotificationPermission):
-        * DumpRenderTree/win/DRTDesktopNotificationPresenter.h: Added.
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/UIDelegate.cpp:
-        (UIDelegate::UIDelegate):
-        (UIDelegate::desktopNotificationsDelegate):
-        * DumpRenderTree/win/UIDelegate.h:
-        * Scripts/build-webkit:
-
-2009-08-11  Peter Kasting  <pkasting@google.com>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=27323
-        Handle arbitrary line endings when manufacturing patches for additions
-        with history.
-
-        * Scripts/svn-create-patch:
-
-2009-08-11  Peter Kasting  <pkasting@google.com>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=28183
-        Support VS2008 as well as VS2005 in a few scripts.
-
-        * Scripts/pdevenv: Check both $VS80COMNTOOLS and $VS90COMNTOOLS.
-        * Scripts/webkitdirs.pm: Use $VSINSTALLDIR if available instead of hardcoding the VS2005 dir.
-
-2009-08-11  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        run-webkit-tests --quiet should not output build-dumprendertree output
-        https://bugs.webkit.org/show_bug.cgi?id=28189
-
-        * Scripts/run-webkit-tests:
-
-2009-08-11  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Exception in land-patches
-        https://bugs.webkit.org/show_bug.cgi?id=27962
-
-        Use ("%s" % object) instead of ("" + object).
-        Added unit tests for logging.py.
-
-        * Scripts/modules/logging.py:
-        * Scripts/modules/logging_unittest.py: Added.
-        * Scripts/run-webkit-unittests:
-
-2009-08-11  Dmitry Titov  <dimich@chromium.org>
-
-        Reviewed by NOBODY (Windows layout tests fix).
-
-        Fix for layout tests failures. Need to initialize some preferences early
-        because WebView on Windows uses them during create time.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (main):
-
-2009-08-11  Dmitry Titov  <dimich@chromium.org>
-
-        Reviewed by Adam Roben.
-
-        Originally implemented by Glenn Wilson  <gwilson@chromium.org>.
-
-        Added support for overriding default preferences per-test.
-        See https://bugs.webkit.org/show_bug.cgi?id=20534
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (overridePreferenceCallback): add wiring for layoutTestController.overridePreference.
-        (LayoutTestController::staticFunctions): same.
-        * DumpRenderTree/LayoutTestController.h: same.
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::overridePreference): added empty overridePreference method.
-        * DumpRenderTree/mac/DumpRenderTree.mm: implemented preference override.
-        (resetDefaultsToConsistentValues): new method, resets preferences to same set of value before every test.
-        (setDefaultsToConsistentValuesForTesting): new method, sets other details of testing environment, every time  DRT starts.
-        (resetWebViewToConsistentStateBeforeTesting): move some preference setting from here to new resetDefaultsToConsistentValues().
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::overridePreference):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues): new method, resets preferences to same set of value before every test.
-        (resetWebViewToConsistentStateBeforeTesting): move some preference setting from here to new resetDefaultsToConsistentValues().
-        (createWebViewAndOffscreenWindow): same.
-        (main): same.
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::overridePreference):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::overridePreference):
-
-2009-08-11  Brian Weinstein  <bweinstein@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Added support for DRT to support arguments for eventSender.mouseDown and eventSender.mouseUp for Windows.
-        https://bugs.webkit.org/show_bug.cgi?id=28166.
-        
-        This is a step towards fixing fast/events/mouse-click-events.html on Windows.
-
-        * DumpRenderTree/win/EventSender.cpp:
-        (mouseDownCallback):
-        (mouseUpCallback):
-        (replaySavedEvents):
-
-2009-08-11  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        Build the TestNetscapePlugin on Qt/Mac
-
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-
-2009-08-11  Dmitry Titov  <dimich@chromium.org>
-
-        Reviewed by NOBODY (build fix).
-
-        Attempt to fix the Windows test bot. Reverted r47015 caused one of the Windows
-        bots that runs Layout Tests to save "JS disabled" and "default font 24pt"
-        preferences permanently. Since these preferences are not initialized explicitly in DRT,
-        almost all Layout tests are failing. Attempt to fix by explicit
-        initialization of these into defaults (enabled, 16pt) at the beginning of the DRT.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (main):  see above.
-
-2009-08-10  Steve Falkenburg  <sfalken@apple.com>
-
-        Windows nightly fix.
-
-        Reviewed by Ada Chan.
-
-        * FindSafari/FindSafari.cpp:
-        (_tmain): Copy Safari.dll if it exists.
-
-2009-08-10  David Levin  <levin@chromium.org>
-
-        Reviewed by David Kilzer.
-
-        check-webkit-style doesn't catch braces around single line statements when followed by else.
-        https://bugs.webkit.org/show_bug.cgi?id=28164
-
-        * Scripts/modules/cpp_style.py: Added else to the regex that finds ending }'s when
-          checking the no braces for "single lines" rule.
-        * Scripts/modules/cpp_style_unittest.py: Added test case.
-
-2009-08-10  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/28163> bugzilla-tool: scm module should not import bugzilla module
-
-        Reviewed by David Levin.
-
-        * Scripts/bugzilla-tool:
-        (parse_bug_id): Added.  Moved from CommitMessage.parse_bug_id()
-        in scm module.
-        * Scripts/modules/scm.py: Removed import of bugzilla module.
-        (CommitMessage.parse_bug_id): Deleted.
-
-2009-08-10  Peter Kasting  <pkasting@google.com>
-
-        Reviewed by David Kilzer.
-
-        https://bugs.webkit.org/show_bug.cgi?id=18599
-        Work around apparent bug in abs2rel() with symlinked directories.
-
-        * Scripts/resolve-ChangeLogs:
-
-2009-08-10  Dan Bernstein  <mitz@apple.com>
-
-        Build fix
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.cpp:
-        (NPP_New):
-
-2009-08-10  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        Fix a bunch of build warnings in TestNetscapePlugin
-        
-        * DumpRenderTree/TestNetscapePlugIn.subproj/TestObject.cpp:
-        * DumpRenderTree/gtk/TestNetscapePlugin/TestNetscapePlugin.cpp:
-
-2009-08-10  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Adam Roben.
-        
-        Allow TestNetscapePlugIn to fall back to the Carbon event model
-        
-        Previously the plugin would fail, even though the Carbon event
-        model was available. The only way to get the Carbon event model
-        was to pass the "forcecarbon" argument in the test markup, but no
-        tests were using this.
-        
-        Now the plugin uses carbon either if it's forced, or if the Cocoa
-        event model is not supported.
-        
-        This helps us run most of the plugin tests on Qt/Mac, which still
-        does not support the Cocoa event model.
-        
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.cpp:
-        (NPP_New):
-
-2009-08-08  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        bugzilla-tool needs a --quiet option
-        https://bugs.webkit.org/show_bug.cgi?id=28060
-
-        A first pass at a --quiet option.  This doesn't do all the excting
-        things we might want, but it addresses 80% of the use case.
-
-        * Scripts/bugzilla-tool:
-
-2009-08-08  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Reviewed by Xan Lopez.
-
-        [Gtk] Enable accessibility in Gtk DRT
-        https://bugs.webkit.org/show_bug.cgi?id=25989
-
-        Add Accessibility support to the GTK DRT.
-
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/gtk/AccessibilityControllerGtk.cpp: Added.
-        (AccessibilityController::AccessibilityController):
-        (AccessibilityController::~AccessibilityController):
-        (AccessibilityController::focusedElement):
-        (AccessibilityController::rootElement):
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp: Added.
-        (AccessibilityUIElement::AccessibilityUIElement):
-        (AccessibilityUIElement::~AccessibilityUIElement):
-        (AccessibilityUIElement::getLinkedUIElements):
-        (AccessibilityUIElement::getDocumentLinks):
-        (AccessibilityUIElement::getChildren):
-        (AccessibilityUIElement::getChildrenWithRange):
-        (AccessibilityUIElement::childrenCount):
-        (AccessibilityUIElement::elementAtPoint):
-        (AccessibilityUIElement::getChildAtIndex):
-        (AccessibilityUIElement::allAttributes):
-        (AccessibilityUIElement::attributesOfLinkedUIElements):
-        (AccessibilityUIElement::attributesOfDocumentLinks):
-        (AccessibilityUIElement::titleUIElement):
-        (AccessibilityUIElement::parentElement):
-        (AccessibilityUIElement::attributesOfChildren):
-        (AccessibilityUIElement::parameterizedAttributeNames):
-        (AccessibilityUIElement::role):
-        (AccessibilityUIElement::title):
-        (AccessibilityUIElement::description):
-        (AccessibilityUIElement::language):
-        (AccessibilityUIElement::x):
-        (AccessibilityUIElement::y):
-        (AccessibilityUIElement::width):
-        (AccessibilityUIElement::height):
-        (AccessibilityUIElement::clickPointX):
-        (AccessibilityUIElement::clickPointY):
-        (AccessibilityUIElement::intValue):
-        (AccessibilityUIElement::minValue):
-        (AccessibilityUIElement::maxValue):
-        (AccessibilityUIElement::valueDescription):
-        (AccessibilityUIElement::isEnabled):
-        (AccessibilityUIElement::insertionPointLineNumber):
-        (AccessibilityUIElement::isActionSupported):
-        (AccessibilityUIElement::isRequired):
-        (AccessibilityUIElement::attributesOfColumnHeaders):
-        (AccessibilityUIElement::attributesOfRowHeaders):
-        (AccessibilityUIElement::attributesOfColumns):
-        (AccessibilityUIElement::attributesOfRows):
-        (AccessibilityUIElement::attributesOfVisibleCells):
-        (AccessibilityUIElement::attributesOfHeader):
-        (AccessibilityUIElement::indexInTable):
-        (AccessibilityUIElement::rowIndexRange):
-        (AccessibilityUIElement::columnIndexRange):
-        (AccessibilityUIElement::lineForIndex):
-        (AccessibilityUIElement::boundsForRange):
-        (AccessibilityUIElement::cellForColumnAndRow):
-        (AccessibilityUIElement::selectedTextRange):
-        (AccessibilityUIElement::setSelectedTextRange):
-        (AccessibilityUIElement::attributeValue):
-        (AccessibilityUIElement::isAttributeSettable):
-        (AccessibilityUIElement::increment):
-        (AccessibilityUIElement::decrement):
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webViewWindowObjectCleared):
-        (main):
-        * GNUmakefile.am:
-
-2009-08-07  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Unreviewed Gtk build fix.
-
-        DRT needs internal WTF symbols so we link to libJavaScriptCore.la
-        too. Also don't force Gtk to use USE_SYSTEM_MALLOC.
-
-        * GNUmakefile.am:
-
-2009-08-07  Darin Adler  <darin@apple.com>
-
-        * Scripts/commit-log-editor: Fix unchecked access to environment
-        variable that may not be there.
-
-2009-08-07  Mark Rowe  <mrowe@apple.com>
-
-        Handle the case where only a single test is missing results.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2009-08-07  George Wright  <george.wright@torchmobile.com>
-
-        Reviewed by Adam Treat
-
-        Fix DumpRenderTree for the Qt port to always dump the PNG data unless
-        the expected and actual hashes match.
-
-        https://bugs.webkit.org/show_bug.cgi?id=28077
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::dump):
-
-2009-08-07  Pierre d'Herbemont  <pdherbemont@apple.com>
-
-        Reviewed by Eric Seidel.
-
-        commit-log-editor does not produce a git commit log that is git friendly.
-        https://bugs.webkit.org/show_bug.cgi?id=27754
-
-        We make sure we end up with:
-        - A first paragraph describing the bug. It is eventually prefixed by
-        "WebKit: <line>" or "WebCore: <line>". This used to be
-        "WebCore:\n\n<line>".
-        - The Reviewed By line.
-        - An eventual Patch By line if author and committer doesn't match.
-        - The rest of the commit.
-
-        * Scripts/commit-log-editor:
-
-2009-08-07  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  (Darin Adler indicated he'd prefer if we landed these
-        kinds of changes unreviewed, like editing the WebKit Team wiki page.)
-
-        Added Pierre d'Herbemont to list of committers.
-
-        * Scripts/modules/committers.py:
-
-2009-08-07  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Adele Peterson.
-
-        Cannot scroll for box-reflect:right
-        https://bugs.webkit.org/show_bug.cgi?id=27979
-
-        Update m_overflowLeft an m_overflowWidth for reflection just like
-        m_overflowTop and m_overflowHeight.
-
-        * Scripts/make-js-test-wrappers:  Added regexp to skip box-shadow-overflo
-w-scroll.js
-
-2009-08-06  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        box-shadow's spread is ignored with <table>
-        https://bugs.webkit.org/show_bug.cgi?id=28017
-
-        Use RenderStyle::getBoxShadowExtent just like RenderBlock.
-
-        * Scripts/make-js-test-wrappers: Added regexp to skip box-shadow-overflow-scroll.js
-
-2009-08-06  Eric Seidel  <eric@webkit.org>
-
-        No review, only changing make-js-test-wrappers.
-
-        Fix make-js-test-wrappers to ignore a few more js tests
-        with custom templates.
-
-        * Scripts/make-js-test-wrappers:
-
-2009-08-06  Chris Marrin  <cmarrin@apple.com>
-
-        Reviewed by David Hyatt.
-
-        Added ENABLE_3D_CANVAS flag to build, default to off
-
-        * Scripts/build-webkit:
-
-2009-08-05  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Win DRT's resource load delegate is missing didReceiveResponse
-        https://bugs.webkit.org/show_bug.cgi?id=28033
-
-        * DumpRenderTree/win/FrameLoadDelegate.cpp:
-        Added:
-        (FrameLoadDelegate::didReceiveServerRedirectForProvisionalLoadForFrame):
-        (FrameLoadDelegate::willPerformClientRedirectToURL):
-        (FrameLoadDelegate::didCancelClientRedirectForFrame):
-
-        Minor style cleanup:
-        (FrameLoadDelegate::didStartProvisionalLoadForFrame): 
-        (FrameLoadDelegate::didReceiveTitle):
-        (FrameLoadDelegate::didFinishLoadForFrame):
-        (FrameLoadDelegate::willCloseFrame):
-        (FrameLoadDelegate::didClearWindowObject):
-        * DumpRenderTree/win/FrameLoadDelegate.h:
-
-2009-08-05  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Win DRT's resource load delegate is missing didReceiveResponse
-        https://bugs.webkit.org/show_bug.cgi?id=28033
-
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp:
-        (ResourceLoadDelegate::didReceiveResponse):
-        * DumpRenderTree/win/ResourceLoadDelegate.h:
-
-2009-08-05  Darin Fisher  <darin@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        Add layoutTestController.dumpWillCacheResponse
-        https://bugs.webkit.org/show_bug.cgi?id=28010
-
-        willCacheResponse is only interesting for embedders of mainline WebKit on Mac.
-        Splitting off a new dumpWillCacheResponse allows a number of existings tests
-        to run across platforms.
-
-        The test that was specifically verifying willCacheResponse now calls
-        dumpWillCacheResponse.
-
-        * DumpRenderTree/LayoutTestController.cpp: Add dumpWillCacheResponse
-        (LayoutTestController::LayoutTestController):
-        (dumpWillCacheResponseCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::dumpWillCacheResponse):
-        (LayoutTestController::setDumpWillCacheResponse):
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm: Inspect dumpWillCacheResponse
-        instead of dumpResourceLoadCallbacks.
-        (-[ResourceLoadDelegate webView:resource:willCacheResponse:fromDataSource:]):
-
-2009-08-05  Jeremy Orlow  <jorlow@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Add my name to committers.py
-        https://bugs.webkit.org/show_bug.cgi?id=28013
-
-        Add my name to committers.py.
-
-        * Scripts/modules/committers.py:
-
-2009-08-05  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        A minor refactoring of the Qt DRT to be a bit more similar to
-        the other DRTs, as well as more understandable.
-
-        Splitting up resetJSObjects into a LayoutTestController->reset()
-        plus a new closeRemainingWindows() method.
-
-        Added a resetToConsistentStateBeforeTesting() method to keep
-        the code in one place, making it easier to verify that we are
-        doing things properly.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        (WebCore::DumpRenderTree::open):
-        (WebCore::DumpRenderTree::closeRemainingWindows):
-        * DumpRenderTree/qt/DumpRenderTree.h:
-
-2009-08-05  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        Make the Qt DRT WorkQueue work similarily to the cross platform
-        one. This means that all items return true if they started
-        loading.
-
-        This change paves the way for unforking the WorkQueue, if we [Qt]
-        would like that.
-
-        * DumpRenderTree/qt/WorkQueue.cpp:
-        (WorkQueue::processWork):
-        * DumpRenderTree/qt/WorkQueue.h:
-        * DumpRenderTree/qt/WorkQueueItem.h:
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LoadItem::invoke):
-        (ReloadItem::invoke):
-        (ScriptItem::invoke):
-        (BackForwardItem::invoke):
-        (LayoutTestController::processWork):
-        (LayoutTestController::maybeDump):
-
-2009-08-04  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        If load of a test fails, don't dump as it will be dumped
-        in the preceding test, resulting in a invalid incorrect layout.
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::maybeDump):
-
-2009-08-04  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        Make the Qt DumpRenderTree more similar to the mac one.
-
-        Changes include:
-        1) Reset zoom factor before each test
-        2) Only dump the backforward list when we got other dump result
-        3) When we dump the render tree, and got zero result print out:
-           [mainFrame renderTreeAsExternalRepresentation]
-           and not:
-           [frame renderTreeAsExternalRepresentation]
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::open):
-        (WebCore::methodNameStringForFailedTest):
-        (WebCore::DumpRenderTree::dump):
-
-2009-08-05  chris fleizach  <cfleizach@apple.com>
-
-        Fix Tiger build breakage.
-
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-
-2009-08-04  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Bug 27994 - WAI-ARIA: aria-valuetext needs to be implemented
-        https://bugs.webkit.org/show_bug.cgi?id=27994
-
-        Expose valueDescription for accessibility. 
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (getValueDescriptionCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::valueDescription):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::valueDescription):
-
-2009-08-04  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        REGRESSION: run-webkit-tests crashes if you have non-system perl in PATH
-        https://bugs.webkit.org/show_bug.cgi?id=28006
-
-        Hard-code perl to /usr/bin/perl and swig to /usr/bin/swig
-
-        * DumpRenderTree/mac/PerlSupport/Makefile:
-
-2009-08-04  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Add pkasting to bugzilla-tool as a committer
-        https://bugs.webkit.org/show_bug.cgi?id=28002
-
-        * Scripts/modules/committers.py:
-
-2009-08-04  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Bug 27993 - AXSliders are missing required attributes and actions
-        https://bugs.webkit.org/show_bug.cgi?id=27993
-
-        Add ability to check if any arbitrary action is supported.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (isActionSupportedCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::isActionSupported):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::isActionSupported):
-
-2009-08-04  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        bugzilla-tool unit tests need a test harness
-        https://bugs.webkit.org/show_bug.cgi?id=27977
-
-        * Scripts/run-webkit-unittests: Added.
-
-2009-08-04  Mark Rowe  <mrowe@apple.com>
-
-        Rubber-stamped by Gavin "Gavvy" Barraclough.
-
-        Ensure that DumpRenderTreeSupport is regenerated when switching between OS versions
-        by listing the DumpRenderTree binary as a dependency.  Xcode has the smarts to rebuild
-        DumpRenderTree itself when switching OS versions so this dependency removes the need
-        for any smarts in the Makefile.
-
-        * DumpRenderTree/mac/PerlSupport/Makefile:
-
-2009-08-04  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool needs unit tests
-        https://bugs.webkit.org/show_bug.cgi?id=26916
-
-        Add some basic unit testing for scm.py.
-
-        * Scripts/modules/scm.py:
-        * Scripts/modules/scm_unittest.py: Added.
-
-2009-08-04  Mike Fenton  <mike.fenton@torchmobile.com>
-
-        Reviewed by Adam Treat.
-
-        Fix --skipped=only mode to honor flags such as --no-http and platform ignored directories by checking
-        to make sure the Skipped entries are not in the $ignoredDirectories array.  Directories commonly included
-        are (http, media, compositing, wml, wcss).
-
-        https://bugs.webkit.org/show_bug.cgi?id=27893
-
-        * Scripts/run-webkit-tests:
-
-2009-08-03  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Jon Honeycutt.
-
-        Bug 27958 - WAI-ARIA: Implement 'aria-required' attribute.
-        https://bugs.webkit.org/show_bug.cgi?id=27958
-
-        Exposed isRequired to DumpRenderTree for accessibility.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (getIsRequiredCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::isRequired):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::isRequired):
-
-2009-08-04  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        bugzilla-tool --commit-queue should validate commit-queue setter is a committer
-        https://bugs.webkit.org/show_bug.cgi?id=27974
-
-        With a test!
-
-        * Scripts/modules/bugzilla.py:
-        * Scripts/modules/bugzilla_unittest.py:
-
-2009-08-04  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        REGRESSION(r46700): bugzilla-tool land-diff double-spaces ChangeLogs
-        https://bugs.webkit.org/show_bug.cgi?id=27973
-
-        The trailing comma (suppresses newlines) was lost in r46700.
-
-        * Scripts/bugzilla-tool:
-
-2009-08-04  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        bugzilla-tool has too many fatal errors
-        https://bugs.webkit.org/show_bug.cgi?id=27969
-
-        Replace several fatal errors with ScriptError exceptions.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/bugzilla.py:
-        * Scripts/modules/scm.py:
-
-2009-08-04  Eric Seidel  <eric@webkit.org>
-
-        No review, ChangeLog fix only.
-
-        Fix a ChangeLog line-spacing disaster caused by:
-        https://bugs.webkit.org/show_bug.cgi?id=27973
-
-        Still unsure what the fix for bugzilla-tool will be.
-
-2009-08-04  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        bugzilla-tool --commit-queue should only land commit-queue+ patches
-        https://bugs.webkit.org/show_bug.cgi?id=27970
-
-        commit-queue mode for bugzilla-tool
-        https://bugs.webkit.org/show_bug.cgi?id=27918
-
-        Make bugzilla tool smart enough to find the commit-queue+ flags and
-        land those patches.
-        When we call land-patches with --commit-queue, we should filter the
-        patches we land to only those that have the commit-queue+ flag set.
-        That way, when we call bugzilla-tool from a main commit queue process,
-        we won't land the wrong patches.
-
-        * Scripts/bugzilla-tool:
-
-2009-08-04  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        committer logic should be split out of bugzilla.py into its own module
-
-        https://bugs.webkit.org/show_bug.cgi?id=27972
-
-        I also added unit tests for the functionality I added.
-
-        * Scripts/modules/bugzilla.py:
-        * Scripts/modules/bugzilla_unittest.py: Added.
-        * Scripts/modules/commiters_unittest.py: Added.
-        * Scripts/modules/committers.py: Added.
-
-2009-08-03  Peter Kasting  <pkasting@google.com>
-
-        Reviewed by David Kilzer.
-
-        https://bugs.webkit.org/show_bug.cgi?id=27323
-        Handle any kind of line endings in svn-apply and svn-unapply, instead
-        of assuming LF.
-
-        * Scripts/svn-apply:
-        * Scripts/svn-unapply:
-
-2009-08-03  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        bugzilla-tool land-patches needs --queue mode
-        https://bugs.webkit.org/show_bug.cgi?id=27961
-
-        Add a --commit-queue command line option to suppress user interaction.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/scm.py:
-
-2009-08-03  Mark Rowe  <mrowe@apple.com>
-
-        Build fix.  Add installsrc, installhdrs and install targets.
-
-        * DumpRenderTree/mac/PerlSupport/Makefile:
-
-2009-08-03  Eric Carlson  <eric.carlson@apple.com>
-
-        Reviewed by Eric Seidel.
-
-        HTMLInputElement is not controllable by assistive technologies
-        https://bugs.webkit.org/show_bug.cgi?id=27941
-
-        Accessibility control of a slider required adding increment() and decrement()
-        methods to AccessibilityObject, so expose thos methods on AccessibilityUIElement.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (incrementCallback): New, call UI element increment method.
-        (decrementCallback): New, call UI element decrement method.
-        (AccessibilityUIElement::getJSClass): Expose increment and decrement methods.
-
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::increment): New, send NSAccessibilityIncrementAction to Mac wrapper.
-        (AccessibilityUIElement::decrement): New, send NSAccessibilityDecrementAction to Mac wrapper.
-
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::increment): New, do nothing.
-        (AccessibilityUIElement::decrement): New, do nothing.
-
-2009-08-02  David D. Kilzer  <ddkilzer@webkit.org>
-
-        <http://webkit.org/b/27930> bugzilla-tool hates Tor Arne Vestbø
-
-        Reviewed by Tor Arne Vestbø.
-
-        * Scripts/bugzilla-tool:
-        (set_reviewer_in_changelog): Made sure reviewer is properly
-        encoded when calling replace().
-
-2009-08-02  Kevin Ollivier  <kevino@theolliviers.com>
-
-        Reviewed by David Levin.
-
-        Script for building the wxBrowser sample app for wx.
-        https://bugs.webkit.org/show_bug.cgi?id=27619
-
-        * wx/browser/wscript: Added.
-
-2009-08-02  Kevin Ollivier  <kevino@theolliviers.com>
-
-        Reviewed by Jan Alonzo.
-
-        Scripts needed for the waf build.
-        https://bugs.webkit.org/show_bug.cgi?id=27619
-
-        * wx/build: Added.
-        * wx/build/build_utils.py: Added.
-        * wx/build/settings.py: Added.
-        * wx/build/waf_extensions.py: Added.
-        * wx/build/wxpresets.py: Added.
-
-2009-08-01  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Make pixel test results more consistent across Mac OS X versions
-
-        * DumpRenderTree/cg/ImageDiffCG.cpp:
-        (createDifferenceImage): Avoid color correction when rendering the
-            images into graphics contexts, so that the actual color values are
-            compared, regardless of how the images are tagged.
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (createWebViewAndOffscreenWindow): Set the window’s color space to the
-            main screen’s color space, even though the window is off-screen.
-
-2009-08-01  Mark Rowe  <mrowe@apple.com>
-
-        Try again to make the Qt build bot happy.
-
-        * BuildSlaveSupport/test-result-archive: Create a placeholder file inside the newly-created
-        directory to prevent 'zip' from failing due to the directory containing no files.
-
-2009-08-01  Mark Rowe  <mrowe@apple.com>
-
-        Try and make the Qt build bot happy.
-
-        * BuildSlaveSupport/test-result-archive: Handle the case where run-webkit-tests generates
-        no output files at all and thus does not create the layout-test-results directory.
-
-2009-08-01  Mark Rowe  <mrowe@apple.com>
-
-        Move the include of DumpRenderTreeSupport to after DumpRenderTree has been built.
-
-        * Scripts/run-webkit-tests:
-
-2009-08-01  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Sam Weinig and David D. Kilzer.
-
-        Fix <https://bugs.webkit.org/show_bug.cgi?id=27923>.
-        Bug 27923: run-webkit-tests should not invoke "ps" repeatedly on Mac OS X
-
-        run-webkit-tests invokes "ps" after each test on Mac OS X to determine whether DumpRenderTree is
-        in the process of crashing.  We can do the same test more efficiently with a simple call to sysctl.
-        I couldn't find any built-in way of doing this directly from perl, so we do it from a simple C module
-        instead.  This speeds up run-webkit-tests by around 8%.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/mac/PerlSupport/DumpRenderTreeSupport.c: Added.
-        (processIsCrashing):
-        * DumpRenderTree/mac/PerlSupport/DumpRenderTreeSupportTiger.pm: Added.  Tiger does not have the SWIG tool
-        that is used to generate the Perl binding to the C code, so we fall back to the old implementation on Tiger.
-        * DumpRenderTree/mac/PerlSupport/Makefile: Added.
-        * Scripts/run-webkit-tests:
-
-2009-08-01  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by David D. Kilzer.
-
-        Display the reminder once rather than once per ChangeLog.
-
-        * Scripts/prepare-ChangeLog:
-
-2009-08-01  David Kilzer  <ddkilzer@apple.com>
-
-        resolve-ChangeLogs: add error checking to git ls-files command on close()
-
-        Reviewed by Eric Seidel.
-
-        Item 2 of <https://bugs.webkit.org/show_bug.cgi?id=18599#c0>.
-
-        * Scripts/resolve-ChangeLogs: Added error checking to close()
-        after running git ls-files.  Added error checking to all
-        system() calls by checking for a non-zero WEXITSTATUS($?).
-        Changed "|| die;" expressions to "or die $!;".
-
-2009-08-01  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/18599> resolve-ChangeLogs doesn't work with relative paths
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/resolve-ChangeLogs: Used chdirReturningRelativePath()
-        and determineVCSRoot() to change directories to the root of the
-        project before running the command and to provide a path for
-        removeChangeLogArguments() to make sure any ChangeLog arguments
-        on the command line are still found.
-        (canonicalRelativePath): Added.  Returns a canonical path (e.g.,
-        stripping 'dir/../' from the path) relative to the current
-        directory.
-        (removeChangeLogArguments): Added argument which contains a
-        relative path that must be prepended to any ChangeLog arguments.
-        Used canonicalRelativePath() and File::Spec->catfile() to
-        construct a normalized, relative path to each file.
-
-2009-08-01  David Kilzer  <ddkilzer@apple.com>
-
-        Implement VCSUtils::chdirReturningRelativePath()
-
-        Reviewed by Eric Seidel.
-
-        Step 2 to fix:
-        <http://webkit.org/b/18599> resolve-ChangeLogs doesn't work with relative paths
-
-        * Scripts/VCSUtils.pm:
-        (VCSUtils::chdirReturningRelativePath): Moved here from
-        chdirAndGetDifference() in svn-create-patch.
-        * Scripts/svn-create-patch: Switched to use
-        chdirReturningRelativePath() instead of chdirAndGetDifference().
-        (chdirAndGetDifference): Removed.
-
-2009-08-01  David Kilzer  <ddkilzer@apple.com>
-
-        Implement VCSUtils::determineVCSRoot()
-
-        Reviewed by Eric Seidel.
-
-        Step 1 to fix:
-        <http://webkit.org/b/18599> resolve-ChangeLogs doesn't work with relative paths
-
-        * Scripts/VCSUtils.pm: Removed reference to webkitdirs module.
-        (VCSUtils::EXPORT): Added &determineVCSRoot.  Realphabetized.
-        (VCSUtils::determineGitRoot): Added.  Based on code in
-        commit-log-editor.
-        (VCSUtils::determineVCSRoot): Implemented using
-        determineGitRoot() and determineSVNRoot().
-        * Scripts/commit-log-editor: Replaced use of
-        topLevelSourceDirectory() with determineVCSRoot().  Resorted
-        use statements.
-        (topLevelSourceDirectory): Removed.
-
-2009-07-31  Daniel Bates  <dbates@intudata.com>
-
-        Reviewed by Eric Seidel.
-        
-        https://bugs.webkit.org/show_bug.cgi?id=27757
-
-        Resolves Perl redefinition warnings about functions tmpfile and tmpnam which are 
-        defined in both File::Temp and POSIX.
-        
-        This stops the warnings by preventing the "import" method of File::Temp from being called,
-        which would otherwise add these functions into the primary namespace. Note, "use POSIX" 
-        will import these functions into the primary namespace anyway. We only need one instance
-        of these functions in our namespace (or we get redefinition warnings), so lets use the 
-        one's in the POSIX package.
-        
-        * Scripts/update-webkit-auxiliary-libs: Changed "use File::Temp" to "use File::Temp ()".
-        * Scripts/update-webkit-support-libs: ditto
-
-2009-07-31  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Eric Seidel.
-
-        Add a top level build option to control datagrid support
-        https://bugs.webkit.org/show_bug.cgi?id=27915
-
-        * Scripts/build-webkit:
-
-2009-07-31  David Levin  <levin@chromium.org>
-
-        Reviewed by Adam Treat.
-
-        check-webkit-style --git-commit has bugs if you select a commit in the past
-        https://bugs.webkit.org/show_bug.cgi?id=27908
-
-        * Scripts/check-webkit-style:
-        (main): Made the git-commit command only select the first commit
-        if a range is given (and print a warning).
-        * Scripts/modules/scm.py:
-        (SCM::create_patch_from_local_commit):
-        (SCM::create_patch_since_local_commit):
-        (SCM::commit_locally_with_message):
-        (SCM::discard_local_commits):
-        Added an error messages in case these aren't overriden.
-
-        (Git::create_patch_since_local_commit):
-        Added this command to allow doing a diff of everything after a given commit.
-
-2009-07-31  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Speculative Qt build fix. Not reviewed.
-
-        Add LayoutTestController::disableImageLoading() in jsobjects.h.
-
-        * DumpRenderTree/qt/jsobjects.h:
-
-2009-07-31  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by John Sullivan.
-
-        <rdar://problem/6973106> and https://bugs.webkit.org/show_bug.cgi?id=27896
-        Favicons are still loaded when automatic image loading is disabled.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (disableImageLoadingCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::disableImageLoading):
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::disableImageLoading):
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::disableImageLoading): Stubbed for now.
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::disableImageLoading): Ditto.
-
-2009-07-30  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Kilzer.
-
-        bugzilla-tool post-commits trunk..head errors out
-        https://bugs.webkit.org/show_bug.cgi?id=27847
-
-        Rename commit_ids_from_range_arguments to commit_ids_from_commitish_arguments
-        and make it handle the new arguments format proposed in the bug.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/scm.py:
-
-2009-07-30  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Levin.
-
-        clean up build-webkit to use less copy/paste code and remove unneeded SVG warning
-        https://bugs.webkit.org/show_bug.cgi?id=27857
-
-        * Scripts/build-webkit:
-
-2009-07-31  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/27894> bugzilla-tool: Bugzilla.clear_attachment_review_flag() fails with ClientForm-0.2.10 and python-2.5
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/modules/bugzilla.py:
-        (Bugzilla.clear_attachment_review_flag): Specify which 'comment'
-        form field to use when setting its value.
-
-2009-07-31  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Kilzer.
-
-        bugzilla-tool post-commits obsoletes its own work :(
-        https://bugs.webkit.org/show_bug.cgi?id=27849
-
-        Simple fix.  Use .add() instead of .update()
-
-        * Scripts/bugzilla-tool:
-
-2009-07-31  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Anders Carlsson.
-
-        Improve platform-detection in run-webkit-tests
-
-        This prevents miss-detection of mac-* over Qt/Mac.
-
-        * Scripts/run-webkit-tests:
-
-2009-07-30  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Cameron Zwarich.
-
-        Teach buildbot to detect test cases that are missing results.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2009-07-30  Mark Rowe  <mrowe@apple.com>
-
-        Things work better when you create the correct directories.
-
-        * Scripts/run-webkit-tests:
-
-2009-07-30  Mark Rowe  <mrowe@apple.com>
-
-        Include some information about the error when we die.
-
-        * Scripts/run-webkit-tests:
-
-2009-07-30  Mark Rowe  <mrowe@apple.com>
-
-        Ensure that the path exists before writing results to it.
-        Hopefully this will make the Windows build bot happy.
-
-        * Scripts/run-webkit-tests:
-
-2009-07-30  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Adam Treat and Jon Honeycutt.
-
-        Teach run-webkit-tests to always store the actual results in the results directory for new tests.
-        This allows us to give a working link to the results from the result summary page, even if we're
-        not generating new results in to the tree.
-
-        * Scripts/run-webkit-tests:
-
-2009-07-30  Mark Rowe  <mrowe@apple.com>
-
-        Add a Qt Linux build bot.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2009-07-30  Jakob Petsovits  <jakob.petsovits@torchmobile.com>
-
-         Reviewed by Adam Roben.
-
-         Add --minimal option to webkit-build.
-         https://bugs.webkit.org/show_bug.cgi?id=27852
-
-         This option disables all optional build features unless
-         they are explicitly enabled.
-
-         * Scripts/build-webkit:
-
-2009-07-30  Jakub Wieczorek  <faw217@gmail.com>
-
-        [Qt] Fix build with GCC 4.4.
-
-        * DumpRenderTree/qt/ImageDiff.cpp:
-
-2009-07-29  Ariya Hidayat  <ariya.hidayat@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        https://bugs.webkit.org/show_bug.cgi?id=27813
-
-        [Qt] Support pixel tests in DumpRenderTree for the Qt port.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::open):
-        (WebCore::DumpRenderTree::setDumpPixels):
-        (WebCore::DumpRenderTree::dump):
-        * DumpRenderTree/qt/DumpRenderTree.h:
-        * DumpRenderTree/qt/main.cpp:
-        (main):
-
-2009-07-29  Ariya Hidayat  <ariya.hidayat@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        https://bugs.webkit.org/show_bug.cgi?id=27813
-
-        [Qt] Implement ImageDiff.
-
-        * DumpRenderTree/qt/ImageDiff.cpp: Added.
-        * DumpRenderTree/qt/ImageDiff.pro: Added.
-
-2009-07-30  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Eric Seidel.
-
-        build-webkit: Reorder logic for determining the baseProductDir
-        
-        https://bugs.webkit.org/show_bug.cgi?id=27699
-
-        We now do port-spesific probing for the product dir first, and then
-        fall back to either the generic WEBKITOUTPUTDIR (which now also works
-        on Mac), or WebKitBuild.
-        
-        Then we add the git branch if the git branch build option is enabled.
-        
-        Finally we massage the product dir based on the port. For example the
-        Mac port will now always set the SYMROOT and OBJROOT configuration for
-        XCode.
-        
-        Note that isAppleWinWebkit() and isCygwin() is not mutually exclusive,
-        hence the normal if and not elsif in the last two blocks.
-
-        * Scripts/webkitdirs.pm:
-
-2009-07-29  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/27082> bugzilla-tool: Add --no-close switch to land-patches
-
-        Reviewed by David Levin.
-
-        * Scripts/bugzilla-tool:
-        (LandPatchesFromBugs.__init__): Added --no-close switch.
-        (LandPatchesFromBugs.land_patches): Don't close the bug if the
-        --no-close switch was used.  Always clear the review+ flag on
-        every landed patch using the commit_text message when cleared.
-        This prevents patches from showing up in the commit queue if
-        reopened and provides consistency with all landed patches.
-        * Scripts/modules/bugzilla.py:
-        (Bugzilla.clear_attachment_review_flag): Added.
-
-2009-07-29  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/27815> bugzilla-tool: add -m/--description to post-commits command
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/bugzilla-tool:
-        (PostDiffAsPatchToBug.execute): Changed default patch name from
-        "patch" to "Patch v1".
-        (PostCommitsAsPatchesToBug.__init__): Added -m/--description
-        switch.
-        (PostCommitsAsPatchesToBug.execute): Use description provided by
-        -m/--description switch first, else fall back to the commit
-        message.
-
-2009-07-29  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Dave Levin.
-
-        Make check-webkit-style support files as arguments.
-        https://bugs.webkit.org/show_bug.cgi?id=27549
-
-        * Scripts/check-webkit-style:
-        Support files as argument. Change documentation and use basename
-        on the binary name when used in the documentation. Also do not
-        die when printing something containing non-ASCII characters.
-
-2009-08-06  Mike Fenton  <mike.fenton@torchmobile.com>
-
-        Reviewed by David Levin.
-
-        Add validation for pointer and reference declaration as defined by webkit style guidelines to cpp_style.py.
-        Add unit tests for validation and update existing c style cast test to be run explicitly as c validation.
-
-        https://bugs.webkit.org/show_bug.cgi?id=27984
-
-        * Scripts/modules/cpp_style.py:
-        * Scripts/modules/cpp_style_unittest.py:
-
-2009-07-29  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/27119> bugzilla-tool: Add create-bug command
-
-        Reviewed by David Levin.
-
-        Implement "create-bug" command for bugzilla-tool.
-
-        * Scripts/bugzilla-tool: Added CreateBug class.
-        (CreateBug.__init__): Added.
-        (CreateBug.create_bug_from_commit): Added.
-        (CreateBug.create_bug_from_patch): Added.
-        (CreateBug.prompt_for_bug_title_and_comment): Added.
-        (CreateBug.execute): Added.
-        (BugzillaTool.__init__): Added create-bug command.
-        * Scripts/modules/bugzilla.py:
-        (Bugzilla.prompt_for_component): Added.
-        (Bugzilla.check_create_bug_response_returning_bug_id_on_success): Added.
-        (Bugzilla.create_bug_with_patch): Added.
-
-2009-07-29  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Reviewed by Eric Seidel and Xan Lopez.
-
-        [Gtk] Enable http/tests/appcache tests
-        https://bugs.webkit.org/show_bug.cgi?id=27674
-
-        Add support for testing http/tests/appcache tests.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setAppCacheMaximumSize):
-
-2009-07-28  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        Prevent nightly builds of WebKit from launching against old Safari versions that we no longer work with.
-
-        * WebKitLauncher/main.m:
-        (checkSafariVersion): Add a minimum required Safari version of 4.0.  This matches the requirement on Windows.
-        (main): If the minimum version requirement is not met, display an alert and bail out.
-
-2009-07-28  David Levin  <levin@chromium.org>
-
-        Reviewed by Adam Treat.
-
-        cpplint* should be named cpp_style*
-        https://bugs.webkit.org/show_bug.cgi?id=27752
-
-        The files were renamed. A few renames were done:
-          CppLint -> CppStyle
-          cpplint -> cpp_style
-
-        * Scripts/check-webkit-style:
-        * Scripts/modules/cpp_style.py: Copied from cpplint.py and
-          did name fix ups.
-        * Scripts/modules/cpp_style_unittest.py: Copied from cpplint_unittest.py and
-          did name fix ups.
-        * Scripts/modules/cpplint.py: Removed.
-        * Scripts/modules/cpplint_unittest.py: Removed.
-
-2009-07-28  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Rubber-stamped by Holger Freyther.
-        
-        Add Steve Falkenburg to bugzilla-tools' reviewers list
-
-        * Scripts/modules/bugzilla.py:
-
-2009-07-28  Zoltan Horvath  <hzoltan@inf.u-szeged.hu>
-
-        Reviewed by Simon Hausmann.
-
-        Implement test result archive support for the Qt port.
-
-        * BuildSlaveSupport/test-result-archive:
-
-2009-07-27  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        https://bugs.webkit.org/show_bug.cgi?id=27755
-        Layout tests that dump resource load delegate calls should dump the request method and the response status code.
-
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        (-[NSURLResponse _drt_descriptionSuitableForTestResult]):
-        (-[NSURLRequest _drt_descriptionSuitableForTestResult]):
-
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp:
-        (descriptionSuitableForTestResult):
-
-2009-07-27  Pierre d'Herbemont  <pdherbemont@apple.com>
-
-        Reviewed by David Levin.
-
-        "bugzilla-tool post-commit head" doesn't work because it can't find the bug id from the commit load.
-        https://bugs.webkit.org/show_bug.cgi?id=27747
-
-        modules.bugzilla is not found because not included.
-
-        * Scripts/modules/scm.py: Properly import modules.bugzilla.
-
-2009-07-24  Pierre d'Herbemont  <pdherbemont@apple.com>
-
-        Reviewed by David Kilzer.
-
-        commit-log-editor should allow git commit --amend to regenerate the commit log based on the modifed ChangeLog
-        https://bugs.webkit.org/show_bug.cgi?id=27664
-
-        * Scripts/commit-log-editor: Add --regenerate-log option.
-        The user is asked if he wants to suppress previous ChangeLog and regenerate it,
-        if this option is enabled.
-
-2009-07-27  Gabor Rapcsanyi  <rapcsanyi.gabor@stud.u-szeged.hu>
-
-        Reviewed by Simon Hausmann.
-
-        Generating remote links causes a lot of unnecessary spew on Qt build bot too
-
-        * Scripts/run-webkit-tests:
-
-2009-07-25  Kwang Yul Seo  <skyul@company100.net>
-
-        Reviewed by Darin Adler.
-
-        Windows build break due to warning C4819
-        https://bugs.webkit.org/show_bug.cgi?id=27416
-
-        Disable C4819 warning to fix build.
-
-        * DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin.vcproj:
-
-2009-07-24  Nikolas Zimmermann  <nikolas.zimmermann@torchmobile.com>
-
-        Not reviewed. Add Kevin McCullough as reviewer in bugzilla.py
-
-        * Scripts/modules/bugzilla.py:
-
-2009-07-24  Eli Fidler  <eli.fidler@torchmobile.com>
-
-        Reviewed by Adam Treat.
-
-        Improve git workflow by populating commit messages with ChangeLog entries.
-        https://bugs.webkit.org/show_bug.cgi?id=27605
-
-        If the user doesn't manually modify the ChangeLog files, use
-        prepare-ChangeLog to populate the git commit message. This behaviour
-        can be disabled by the 'webkitGenerateCommitMessage' git configuration option.
-
-        * Scripts/commit-log-editor:
-
-2009-07-24  David Levin  <levin@chromium.org>
-
-        Reviewed by Adam Treat.
-
-        cpplint crash when there is a duplicate header followed by another header.
-        https://bugs.webkit.org/show_bug.cgi?id=27625
-
-        * Scripts/modules/cpplint.py: Ensure that include_state.header_types is updated even
-          there is a duplicate header, which resulted in some code rearrangement.  Also,
-          changed some if's in this function to return early.  This avoids having nearly the
-          whole function content being indented.
-        * Scripts/modules/cpplint_unittest.py: Added a test which would have exposed the crash.
-
-2009-07-24  Jakob Petsovits  <jakob.petsovits@torchmobile.com>
-
-         Reviewed by Adam Treat.
-
-         Filetype support changes for cpplint and check_webkit_style
-         https://bugs.webkit.org/show_bug.cgi?id=27653
-
-         Introduce .c support for check_webkit_style, and remove support for
-         .cc files in favor of .cpp.
-
-         * Scripts/check-webkit-style:
-         * Scripts/modules/cpplint.py:
-         * Scripts/modules/cpplint_unittest.py:
-
-2009-07-24  Eli Fidler  <eli.fidler@torchmobile.com>
-
-        Reviewed by David Levin.
-
-        Improve git workflow by populating commit messages with ChangeLog entries.
-        https://bugs.webkit.org/show_bug.cgi?id=27605
-
-        add --[no-]write prepare-ChangeLog options to bash completion
-
-        * Scripts/webkit-tools-completion.sh:
-
-2009-07-24  Andrei Popescu  <andreip@google.com>
-
-        Reviewed by Anders Carlsson.
-
-        ApplicationCache should have size limit
-        https://bugs.webkit.org/show_bug.cgi?id=22700
-
-        Adds a new method on the LayoutTestController that
-        allows a JS unit test to configure the maximum size
-        of the Application Cache.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setAppCacheMaximumSizeCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setAppCacheMaximumSize):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setAppCacheMaximumSize):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setAppCacheMaximumSize):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setAppCacheMaximumSize):
-
-2009-07-24  Adam Barth  <abarth@webkit.org>
-
-        Rubber stamped by Eric Seidel.
-
-        Added andersca to list of reviewers.
-
-        * Scripts/modules/bugzilla.py:
-
-2009-07-24  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Xan Lopez.
-
-        Fix dozens of "Deallocation of a pointer not malloced" messages seen while running
-        layout tests on the build bot.
-
-        Memory allocated via FastMalloc was being deleted via the system memory allocator
-        due to an inconsistent including of FastMalloc.h.  We address this by including it
-        from config.h and including config.h from every implementation file, as in our other
-        projects.
-
-        * DumpRenderTree/ForwardingHeaders/wtf/FastMalloc.h: Copied from JavaScriptGlue/ForwardingHeaders/wtf/FastMalloc.h.
-        * DumpRenderTree/config.h:
-        * DumpRenderTree/mac/AccessibilityControllerMac.mm:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        * DumpRenderTree/mac/AppleScriptController.m:
-        * DumpRenderTree/mac/CheckedMalloc.cpp:
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        * DumpRenderTree/mac/DumpRenderTreeDraggingInfo.mm:
-        * DumpRenderTree/mac/DumpRenderTreePasteboard.m:
-        * DumpRenderTree/mac/DumpRenderTreeWindow.mm:
-        * DumpRenderTree/mac/EditingDelegate.mm:
-        * DumpRenderTree/mac/EventSendingController.mm:
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        * DumpRenderTree/mac/GCControllerMac.mm:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        * DumpRenderTree/mac/NavigationController.m:
-        * DumpRenderTree/mac/ObjCController.m:
-        * DumpRenderTree/mac/ObjCPlugin.m:
-        * DumpRenderTree/mac/ObjCPluginFunction.m:
-        * DumpRenderTree/mac/PixelDumpSupportMac.mm:
-        * DumpRenderTree/mac/PlainTextController.mm:
-        * DumpRenderTree/mac/PolicyDelegate.mm:
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        * DumpRenderTree/mac/TextInputController.m:
-        * DumpRenderTree/mac/UIDelegate.mm:
-        * DumpRenderTree/mac/WorkQueueItemMac.mm:
-
-2009-07-24  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Simon Hausmann.
-
-        Add a command line option to run-javascriptcore-tests to explicitly opt out of attempting to rebuild JavaScriptCore.
-        This is primarily useful to speed up the build bots where one machine builds JavaScriptCore and a second runs the tests,
-        leading to situations where the build system unnecessarily feels that the need to recompile.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        * Scripts/run-javascriptcore-tests:
-
-2009-07-23  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [Gtk] Add implementation of GCController for DRT
-        https://bugs.webkit.org/show_bug.cgi?id=27636
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webViewWindowObjectCleared):
-        (main):
-        * DumpRenderTree/gtk/GCControllerGtk.cpp:
-        (GCController::collect):
-        (GCController::collectOnAlternateThread):
-        (GCController::getJSObjectCount):
-
-2009-07-23  Mark Rowe  <mrowe@apple.com>
-
-        Update build.webkit.org config for new machine.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2009-07-23  Brady Eidson  <beidson@apple.com>
-
-        Remove accidentally checked in code.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (waitUntilDoneWatchdogFired):
-        (LayoutTestController::setWaitToDump):
-
-2009-07-23  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Geoff Garen.
-
-        WebCore has a few places that don't gracefully handle a null request returned from willSendRequest.
-        https://bugs.webkit.org/show_bug.cgi?id=27595
-
-        Add the ability to tell the LayoutTestController to return a null request for willSendRequest
-        redirect callbacks.
-        
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (setWillSendRequestReturnsNullOnRedirectCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::willSendRequestReturnsNullOnRedirect):
-        (LayoutTestController::setWillSendRequestReturnsNullOnRedirect):
-
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        (-[ResourceLoadDelegate webView:resource:willSendRequest:redirectResponse:fromDataSource:]):
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp:
-        (ResourceLoadDelegate::willSendRequest):
-
-2009-07-23  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed Oliver Hunt.
-
-        Fix DumpRenderTree to not fail an assertion on launch on a new machine.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (setDefaultsToConsistentValuesForTesting): Disable the XSS auditor.  It being enabled
-        breaks all of the JavaScript tests within testStringByEvaluatingJavaScriptFromString,
-        which causes us to exit due to an assertion failure.  It's not clear why the XSS auditor
-        decides to interfere with these tests.
-
-2009-07-23  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        Update default state of the XSS auditor in GTK DumpRenderTree to match Mac and Windows
-        in hopes of fixing some layout test failures seen on the build bot.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting):
-
-2009-07-23  Jakob Petsovits  <jakob.petsovits@torchmobile.com>
-
-         Reviewed by Adam Treat.
-
-         Fix false positives for switch statement indentation check in cpplint.
-         https://bugs.webkit.org/show_bug.cgi?id=27615
-
-         Makes one-line case statements (e.g. "case foo: bar();") work.
-         Also a few general improvements to the robustness and readability of
-         the check, and more test cases.
-
-         * Scripts/modules/cpplint.py:
-         * Scripts/modules/cpplint_unittest.py:
-
-2009-07-23  Jakob Petsovits  <jakob.petsovits@torchmobile.com>
-
-         Reviewed by Adam Treat.
-
-         Add check for line-breaking rule #3 to cpplint.
-         https://bugs.webkit.org/show_bug.cgi?id=27610
-
-         "An else if statement should be written as an if statement when
-         the prior if concludes with a return statement."
-
-         Implemented by a multi-line (kind of back-tracking) algorithm.
-         Comes with loads of unit tests. Fixes the check for label indentation
-         to be not so overzealous, as it didn't allow for completely unindented
-         goto labels (at the very start of a line).
-
-         * Scripts/modules/cpplint.py:
-         * Scripts/modules/cpplint_unittest.py:
-
-2009-07-23  Eli Fidler  <eli.fidler@torchmobile.com>
-
-         Reviewed by Adam Treat.
-
-         Improve git workflow by populating commit messages with ChangeLog entries.
-         https://bugs.webkit.org/show_bug.cgi?id=27605
-
-         add --[no-]write option to optionally output new ChangeLog entries to
-         stdout instead of modifying ChangeLog files
-
-         fix Torch Mobile copyright
-
-         * Scripts/prepare-ChangeLog:
-
-2009-07-23  Jakob Petsovits  <jakob.petsovits@torchmobile.com>
-
-        Reviewed by Adam Treat.
-
-        Enable cpplint for .c files.
-        https://bugs.webkit.org/show_bug.cgi?id=27604
-
-        Also make sure that the check for NULL does not apply to .c files.
-
-        * Scripts/modules/cpplint.py:
-        * Scripts/modules/cpplint_unittest.py:
-
-2009-07-22  Steve Falkenburg  <sfalken@apple.com>
-
-        Checkpoint new Windows nightly launcher.
-        
-        Reviewed by Mark Rowe.
-
-        * WebKitLauncherWin: Added.
-        * WebKitLauncherWin/Resource.h: Added.
-        * WebKitLauncherWin/WebKitLauncherWin.cpp: Added.
-        (getStringValue): Retrieve a string registry value.
-        (applePathFromRegistry): Get an Apple-related path out of the registry.
-        (copyEnvironmentVariable): Copy an environment variable.
-        (safariInstallDir): Helper function to get the install directory for Safari.
-        (safariBrowserExe): Helper function to get the full path of the Safari executable.
-        (_tWinMain): Locate Safari and launch it after setting up an environment variable.
-        * WebKitLauncherWin/WebKitLauncherWin.h: Added.
-        * WebKitLauncherWin/WebKitLauncherWin.rc: Added.
-        * WebKitLauncherWin/WebKitLauncherWin.vcproj: Added.
-        * WebKitLauncherWin/webkit.ico: Added.
-
-2009-07-22  David Levin  <levin@chromium.org>
-
-        Reviewed by Adam Treat.
-
-        run-webkit-lint should be named check-webkit-style
-        https://bugs.webkit.org/show_bug.cgi?id=27568
-
-        This name better reflects the fact that it is about checking the style of files.
-
-        * Scripts/check-webkit-style: Renamed from WebKitTools/Scripts/run-webkit-lint.
-
-2009-07-22  Takeshi Yoshino  <tyoshino@google.com>
-
-        Reviewed by Darin Adler.
-
-        VC++ 2005 Express failed to build WebKit due to raw UTF-8 string in WebKit/win/WebCoreLocalizedStrings.cpp
-        https://bugs.webkit.org/show_bug.cgi?id=26375
-
-        Make it able to use hexadecimal escape sequences in .*UI_STRING(_KEY)? macros. Now,
-        the extract-localizable-strings script unescapes hexadecimal escape sequences in string literals
-        in the macros before writing out them into the file to update.
-
-        By this fix, we can eliminate raw UTF-8 strings in source code while using raw UTF-16 big endian
-        strings in the Localizable.strings file.
-
-        Bonus: There's no longer extract-webkit-localizable-strings script. Fix usage message to guide
-        users to update-webkit-localizable-strings.
-
-        * Scripts/extract-localizable-strings:
-
-2009-07-22  Shinichiro Hamaji  <hamaji@google.com>
-
-        Reviewed by David Levin.
-
-        Tiny typo fixes for cpplint.py
-        https://bugs.webkit.org/show_bug.cgi?id=27530
-
-        * Scripts/modules/cpplint.py:
-
-2009-07-22  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by David Levin.
-
-        run-webkit-lint checks code which are not changed
-        https://bugs.webkit.org/show_bug.cgi?id=27529
-
-        Add check if the line is newly added.
-
-        * Scripts/run-webkit-lint:
-
-2009-07-22  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by David Levin.
-
-        run-webkit-lint should have --git-commit option
-        https://bugs.webkit.org/show_bug.cgi?id=27528
-
-        * Scripts/modules/cpplint.py:
-        * Scripts/run-webkit-lint:
-
-2009-07-22  Peter Kasting  <pkasting@google.com>
-
-        Reviewed by David Kilzer.
-
-        https://bugs.webkit.org/show_bug.cgi?id=27323
-        Factor svn-create-patch's "determineSvnRoot()" into a function in
-        VCSUtils.pm so commit-log-editor can use it too.
-
-        * Scripts/VCSUtils.pm: Add determineSVNRoot().
-        * Scripts/commit-log-editor: Use determineSVNRoot() instead of old
-          code (which didn't work as well).
-        * Scripts/svn-create-patch: Remove determineSvnRoot() (moved).
-
-2009-07-22  Jakob Petsovits  <jakob.petsovits@torchmobile.com>
-
-        Reviewed by Adam Treat.
-
-        Fix false positives in namespace indentation checks.
-        https://bugs.webkit.org/show_bug.cgi?id=27567
-
-        The regular expression detecting goto labels (in order
-        to skip those) was too permissive, which caused other
-        code like "Foo::Bar()" to be treated as a label too,
-        thereby not stopping the processing loop as expected.
-
-        Now comes with a stricter regexp, and more demanding
-        test cases to check for these issues.
-
-        * Scripts/modules/cpplint.py:
-        * Scripts/modules/cpplint_unittest.py:
-
-2009-07-22  Jakob Petsovits  <jakob.petsovits@torchmobile.com>
-
-        Reviewed by Adam Treat.
-
-        Fix cpplint generating false positives for
-        "primary" includes in headers.
-        https://bugs.webkit.org/show_bug.cgi?id=27553
-
-        Doing so by only flagging includes in header files
-        as primary when the include filename exactly matches
-        the header filename.
-
-        * Scripts/modules/cpplint.py:
-        * Scripts/modules/cpplint_unittest.py:
-
-2009-07-22  Jakob Petsovits  <jakob.petsovits@torchmobile.com>
-
-        Reviewed by Adam Treat.
-
-        cpplint generates false positives for primary includes
-        https://bugs.webkit.org/show_bug.cgi?id=27544
-
-        Fix false positives for instances when cpplint would
-        normally classify multiple includes as primary: After
-        the first primary include, classify subsequent ones as
-        "other" includes even if they look like primary ones.
-
-        * Scripts/modules/cpplint.py:
-        * Scripts/modules/cpplint_unittest.py:
-
-2009-07-22  Gabor Rapcsanyi  <rapcsanyi.gabor@stud.u-szeged.hu>
-
-        Reviewed by Simon Hausmann.
-
-        Pass XAUTHORITY environment variable to $dumpTool as well.
-
-        * Scripts/run-webkit-tests:
-
-2009-07-21  Jakob Petsovits  <jakob.petsovits@torchmobile.com>
-
-         Reviewed by Adam Treat.
-
-         Add check for correct wtf includes to cpplint.
-         https://bugs.webkit.org/show_bug.cgi?id=27524
-
-         * Scripts/modules/cpplint.py:
-         * Scripts/modules/cpplint_unittest.py:
-
-2009-07-21  Jakob Petsovits  <jakob.petsovits@torchmobile.com>
-
-        Reviewed by David Levin.
-
-        Add checks for multi-line boolean operator placement.
-        https://bugs.webkit.org/show_bug.cgi?id=27496
-
-        * Scripts/modules/cpplint.py:
-        * Scripts/modules/cpplint_unittest.py:
-
-2009-07-21  Adam Treat  <adam.treat@torchmobile.com>
-
-        Reviewed by David Levin.
-
-        We can't match implementation file and primary header exactly
-        since we have so many files in WebKit where the port suffix
-        is appended to the filename.
-
-        Example: FooQt.cpp and the primary header is Foo.h.
-
-        * Scripts/modules/cpplint.py:
-
-2009-07-21  Jakob Petsovits  <jakob.petsovits@torchmobile.com>
-
-        Reviewed by David Levin.
-
-        Add checks for switch statement indentation to cpplint.
-        https://bugs.webkit.org/show_bug.cgi?id=27508
-
-        * Scripts/modules/cpplint.py:
-        * Scripts/modules/cpplint_unittest.py:
-
-2009-07-21  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Adam Treat.
-
-        Feature request: cpplint should check for braces - rule 2
-        https://bugs.webkit.org/show_bug.cgi?id=27497
-
-        Add the requested feature: Make sure { is on the same line
-        as the foreach "keyword".
-
-        * Scripts/modules/cpplint.py:
-        * Scripts/modules/cpplint_unittest.py:
-
-2009-07-20  Jakob Petsovits  <jakob.petsovits@torchmobile.com>
-
-        Reviewed by David Levin.
-
-        Add checks for namespace indentation to cpplint.
-        https://bugs.webkit.org/show_bug.cgi?id=27461
-
-        * Scripts/modules/cpplint.py:
-        * Scripts/modules/cpplint_unittest.py:
-
-2009-07-20  Adam Treat  <adam.treat@torchmobile.com>
-
-        Reviewed by David Levin.
-
-        Add cpplint check for proper include order
-        https://bugs.webkit.org/show_bug.cgi?id=27462
-
-        Add a new check to cpplint to flag cases where the include section of a file
-        does not match the mandated include order and style of the Webkit coding style
-        guidelines.
-
-        Add associated tests.
-
-        * Scripts/modules/cpplint.py:
-        * Scripts/modules/cpplint_unittest.py:
-
-2009-07-21  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by David Levin.
-
-        Support lint for patches
-        https://bugs.webkit.org/show_bug.cgi?id=27291
-
-        Add run-webkit-lint script, which lints recent changes in local
-        repository.  Also, modified cpplint.py so that we don't need to
-        specify verbose level for process_file().
-
-        * Scripts/modules/cpplint.py:
-        * Scripts/run-webkit-lint: Added.
-
-2009-07-21  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by David Levin.
-
-        diff_parser should accept lines without trailing \n
-        https://bugs.webkit.org/show_bug.cgi?id=27483
-
-        Normalize the input lines by removing a trailing newline.
-        Also, add a case for unittest for newly added files.
-
-        * Scripts/modules/diff_parser.py:
-        * Scripts/modules/diff_parser_unittest.py:
-
-2009-07-21  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by David Levin.
-
-        cpplint.py's process_file() should accept customized error function
-        https://bugs.webkit.org/show_bug.cgi?id=27487
-
-        * Scripts/modules/cpplint.py:
-
-2009-07-21  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by David Levin.
-
-        cpplint.py should have an interface to get global error count
-        https://bugs.webkit.org/show_bug.cgi?id=27486
-
-        * Scripts/modules/cpplint.py:
-        * Scripts/modules/cpplint_unittest.py:
-
-2009-07-21  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by David Levin.
-
-        cpplint's parse_argument should not exit even if no files are specified
-        https://bugs.webkit.org/show_bug.cgi?id=27489
-
-        * Scripts/modules/cpplint.py:
-        * Scripts/modules/cpplint_unittest.py:
-
-2009-07-21  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by David Levin.
-
-        diff_parser: s/add_deleted_line/add_old_line/g
-        https://bugs.webkit.org/show_bug.cgi?id=27484
-
-        * Scripts/modules/diff_parser.py:
-
-2009-07-21  Roland Steiner  <rolandsteiner@google.com>
-
-        Reviewed by David Levin.
-
-        Add ENABLE_RUBY to list of build options
-        https://bugs.webkit.org/show_bug.cgi?id=27324
-
-        * Scripts/build-webkit: Added flag ENABLE_RUBY.
-
-2009-07-20  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by David D. Kilzer.
-
-        Fix <https://bugs.webkit.org/show_bug.cgi?id=27482>.
-        Bug 27482: svn-apply cannot apply patch generated by Windows SVN
-
-        A regexp in svn-apply was treating everything prior to a \n as part of the
-        file name.  The native Windows SVN client uses \r\n for line endings which
-        meant that the \r was being included in the file name.  This defeated the
-        special-case logic for ChangeLogs to apply them with an increased fuzz factor,
-        meaning that the ChangeLog portions of such patches would fail to apply.
-
-        Also updated two other regexps that look like they would hit similar problems
-        with line-endings so that they will correctly handle patches from Windows SVN.
-
-        * Scripts/svn-apply:
-
-2009-07-20  Peter Kasting  <pkasting@google.com>
-
-        Reviewed by Mark Rowe.
-
-        https://bugs.webkit.org/show_bug.cgi?id=27468
-        Back out r46060, which caused problems for some Apple developers.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/ImageDiff.vcproj:
-        * DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin.vcproj:
-
-2009-07-20  Peter Kasting  <pkasting@google.com>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=27323
-        Use shorter, more correct code for determining the current directory,
-        which works better with symbolic links on some systems.  Also switch
-        from checking repository root to checking UUID, to match scm.py.
-
-        * Scripts/svn-create-patch:
-
-2009-07-20  Mark Rowe  <mrowe@apple.com>
-
-        Rubber-stamped by Dan Bernstein.
-
-        Work around <rdar://problem/7075373> by ensuring that the URL is absolute before handing it off to CoreText.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (activateFonts):
-
-2009-07-20  David Levin  <levin@chromium.org>
-
-        Reviewed by Adam Treat.
-
-        Enable filename completion for run-webkit-test (added "-o default").
-
-        * Scripts/webkit-tools-completion.sh:
-
-2009-07-20  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        No review, just adding Gavin Barraclough as reviewer.
-
-        * Scripts/modules/bugzilla.py:
-
-2009-07-20  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by David Levin.
-
-        Add support for Qt's foreach to cpplint 
-        https://bugs.webkit.org/show_bug.cgi?id=27386
-
-        * Scripts/modules/cpplint.py:
-        * Scripts/modules/cpplint_unittest.py:
-
-2009-07-18  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        https://bugs.webkit.org/show_bug.cgi?id=27145
-        [Gtk][REGRESSION] subframe-navigate-during-main-frame-load.html fails after r45615
-
-        Reviewed by Gustavo Noronha.
-
-        Normalize file URLs.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (dumpHistoryItem):
-
-2009-07-17  Peter Kasting  <pkasting@google.com>
-
-        Reviewed by David Kilzer.
-
-        https://bugs.webkit.org/show_bug.cgi?id=27323
-        Further improve non-Cygwin SVN support.
-
-        * Scripts/prepare-ChangeLog: Harmless change to be consistent with other
-          places that consume whitespace at the end of svn output.
-        * Scripts/resolve-ChangeLogs: Add support for SVN 1.6.  Slightly
-          optimize svn info parsing based on technique in svn-create-patch.
-          Normalize paths and consume whitespace in the same way as
-          prepare-ChangeLog, for Windows systems with a non-Cygwin SVN.  Force
-          diff and patch to run in binary mode so that they won't
-          "intelligently" screw up line endings.
-
-2009-07-18  Simon Fraser  <simon.fraser@apple.com>
-
-        Fix Tiger DRT build.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (createWebViewAndOffscreenWindow):
-        * DumpRenderTree/mac/PixelDumpSupportMac.mm:
-
-2009-07-17  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        DRT doesn't reliably snapshot composited layers
-        https://bugs.webkit.org/show_bug.cgi?id=27399
-        
-        If we're doing an "onscreen" pixel capture, it means that we're snapshotting a view
-        with composited content. In that case we need to force the view to display so that
-        the composited layers are rendered to the screen.
-
-        * DumpRenderTree/mac/PixelDumpSupportMac.mm:
-        (createBitmapContextFromWebView):
-
-2009-07-17  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by David Levin.
-
-        bugzilla-tool does not understand nested SVN repos
-        https://bugs.webkit.org/show_bug.cgi?id=27404
-
-        Determine the root of the working copy by looking at SVN's UUIDs.
-
-        * Scripts/modules/scm.py:
-
-2009-07-17  David Levin  <levin@chromium.org>
-
-        Reviewed by Mark Rowe.
-
-        webkit-tools-completion.sh has two typos and sorting issues.
-        https://bugs.webkit.org/show_bug.cgi?id=27401
-
-        * Scripts/webkit-tools-completion.sh: Fix two typos "--dif" and "-clean".
-          Also, sort all lists including items in the case statement and flags for
-          the commands.
-
-2009-07-17  Peter Kasting  <pkasting@google.com>
-
-        Reviewed by David Kilzer.
-
-        https://bugs.webkit.org/show_bug.cgi?id=27323
-        Tweak some regexes for correctness.
-
-        * Scripts/prepare-ChangeLog: Allow 1-character filenames (my previous
-          change here didn't quite get things right).
-        * Scripts/update-webkit: Detect conflicting ChangeLogs correctly by not
-          including any trailing whitespace in the name "ChangeLog", and by
-          normalizing paths before calling basename() to avoid confusing it.
-          (normalizePath() copied from prepare-ChangeLog.)
-
-2009-07-17  Peter Kasting  <pkasting@google.com>
-
-        Reviewed by Steve Falkenburg.
-
-        https://bugs.webkit.org/show_bug.cgi?id=27323
-        Only add Cygwin to the path when it isn't already there.  This avoids
-        causing problems for people who purposefully have non-Cygwin versions of
-        executables like svn in front of the Cygwin ones in their paths.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/ImageDiff.vcproj:
-        * DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin.vcproj:
-
-2009-07-17  David Levin  <levin@chromium.org>
-
-        Reviewed by Adam Treat.
-
-        WebKit should have a bash completion script to aid with common commands.
-        https://bugs.webkit.org/show_bug.cgi?id=27374
-
-        * Scripts/webkit-tools-completion.sh: The script which enables option completion
-          for several WebKit command line scripts.
-
-2009-07-17  Peter Kasting  <pkasting@google.com>
-
-        Reviewed by David Kilzer.
-
-        https://bugs.webkit.org/show_bug.cgi?id=27323
-        Avoid error spew on Macs, and fix a few other tiny details.
-
-        * Scripts/svn-create-patch:
-
-2009-07-17  Adam Treat  <adam.treat@torchmobile.com>
-
-        Reviewed by Dave Levin.
-
-        https://bugs.webkit.org/show_bug.cgi?id=27377
-        This makes cpplint complain about this for instance:
-
-            if (true)
-            {
-                int foo;
-            }
-
-        Add the appropriate unit tests.
-
-        * Scripts/modules/cpplint.py:
-        * Scripts/modules/cpplint_unittest.py:
-
-2009-07-17  Adam Treat  <adam.treat@torchmobile.com>
-
-        Reviewed by Dave Levin.
-
-        https://bugs.webkit.org/show_bug.cgi?id=27377
-        Don't filter whitespace at the end of the line.  This is not
-        explicitly a rule of webkit coding style, but there is no reason
-        not to warn of this common style problem.
-
-        Don't filter whitespace newline. Now, cpplint will complain
-        about the following situation:
-
-            if (true) {
-                doSomething();
-                doSomethingAgain();
-            }
-            else
-                doSomething();
-
-        Which is a webkit coding style rule violation.
-
-        * Scripts/modules/cpplint.py:
-
-2009-07-17  Adam Treat  <adam.treat@torchmobile.com>
-
-        Reviewed by Dave Levin.
-
-        https://bugs.webkit.org/show_bug.cgi?id=27377
-        Move this comment to where it belongs.
-
-        * Scripts/modules/cpplint_unittest.py:
-
-2009-07-17  Brent Fulgham  <bfulgham@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Correct crash in WinLauncher due to improper mixing of BSTR
-        and TCHAR types.
-        https://bugs.webkit.org/show_bug.cgi?id=27381
-
-        * WinLauncher/WinLauncher.cpp:
-        (loadURL): Perform SysReAllocString to update the BSTR with
-          the contents of the TCHAR string.
-
-2009-07-17  David Levin  <levin@chromium.org>
-
-        Reviewed by Adam Treat.
-
-        cpplint should flag usages of NULL.
-        https://bugs.webkit.org/show_bug.cgi?id=27341
-
-        * Scripts/modules/cpplint.py: Add the check for NULL test and call it.
-          Make the collapse_strings method public.
-        * Scripts/modules/cpplint_unittest.py: Add several tests to verify
-          the check for NULL behavior. Adjust existing tests due to the
-          new NULL check:
-           1. Several had NULL removed (or were just removed completely).
-           2. Two tests now do an assert that allows the caller to check
-              that a particular error is one of several that was returned.
-
-2009-07-17  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by David Levin.
-
-        Add a parser of patches for linter.
-        https://bugs.webkit.org/show_bug.cgi?id=27363
-
-        Adds a simple parser for unified diff format.
-
-        * Scripts/modules/diff_parser.py: Added.
-        * Scripts/modules/diff_parser_unittest.py: Added.
-
-2009-06-30  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        Reviewed by Simon Hausmann.
-
-        [GTK+] Remove check to be loadable in firefox
-        https://bugs.webkit.org/show_bug.cgi?id=27345
-
-        if (aMozillaVTable->size < sizeof (NPNetscapeFuncs))
-        fails in firefox but no other example in the mozilla tree is
-        doing that check. Remove and be happy.
-
-        * DumpRenderTree/gtk/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (NP_Initialize):
-
-2009-07-17  Adam Treat  <adam.treat@torchmobile.com>
-
-        Reviewed by Simon Hausmann.
-
-        Something about having a single TAB in a style checking tool like this
-        is equivalent to nails on a chalk board to me...
-
-        * Scripts/modules/cpplint.py:
-
-2009-07-17  Kenneth Rohde Christiansen  <kenneth.christiansen@openbossa.org>
-
-        Reviewed by Simon Hausmann.
-
-        Overwrite the plugin directories for the DRT.
-        Part of https://bugs.webkit.org/show_bug.cgi?id=27215
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-
-2009-07-16  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Reviewed by David Levin.
-
-        Add --web-sockets flag and ENABLE_WEB_SOCKETS define.
-        https://bugs.webkit.org/show_bug.cgi?id=27206
-        
-        Add --web-sockets flag.
-
-        * Scripts/build-webkit: add --web-sockets flag.
-
-2009-07-16  Adam Treat  <adam.treat@torchmobile.com>
-
-        Reviewed by Dave Levin.
-
-        cpplint should check for one line control clauses that are surrounded
-        by braces
-        https://bugs.webkit.org/show_bug.cgi?id=27354
-
-        * Scripts/modules/cpplint.py: Added the new lint check.
-        * Scripts/modules/cpplint_unittest.py: Add tests for the new lint check
-          and fix the other tests as they were not passing this new lint check.
-
-2009-07-16  Peter Kasting  <pkasting@google.com>
-
-        Reviewed by David Kilzer.
-
-        https://bugs.webkit.org/show_bug.cgi?id=27323
-        Improve support for WebKit checkouts hosted inside other checkouts
-        (possible for some ports, e.g. Chromium).
-
-        * Scripts/svn-create-patch: Determine SVN root by looking for Repository
-          Root string and aborting when it's missing or different than what
-          we've already seen.
-
-2009-07-16  Peter Kasting  <pkasting@google.com>
-
-        Reviewed by Adam Roben.
-
-        https://bugs.webkit.org/show_bug.cgi?id=27323
-        Improve support for non-Cygwin SVNs on Windows.
-
-        * Scripts/commit-log-editor: Modify regex so that trailing whitespace
-          (e.g. \r) isn't included in filenames.
-        * Scripts/prepare-ChangeLog: Fix a case of adding "\n" to the ChangeLog
-          without normalizing.  Normalize file paths early instead of late so
-          all stages of the script work.  Modify regexes so that trailing
-          whitespace (e.g. \r) isn't included in filenames.
-        * Scripts/svn-create-patch: Use a regex instead of chomp so we cut off
-          line endings even if they don't match Perl's.
-
-2009-07-16  Joseph Pecoraro  <joepeck02@gmail.com>
-
-        Reviewed by Darin Adler.
-
-        WebKitTools/Scripts/svn-create-patch is broken
-        https://bugs.webkit.org/show_bug.cgi?id=27328
-
-        * Scripts/svn-create-patch: one line fix for unusual perl behavior
-
-2009-07-16  David Levin  <levin@chromium.org>
-
-        Reviewed by David Kilzer.
-
-        cpplint should check for equality comparisons to 0/true/false
-        https://bugs.webkit.org/show_bug.cgi?id=27333
-
-        * Scripts/modules/cpplint.py: Added the new lint check.
-        * Scripts/modules/cpplint_unittest.py: Add tests for the new lint check
-          and fix a regex that in another unit test that caused it to fail when
-          you have a directory with a number in it (like WebKit-2)
-
-2009-07-16  David D. Kilzer  <ddkilzer@webkit.org>
-
-        <http://webkit.org/b/27241> bugzilla-tool post-commits silently fails with bad args
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/bugzilla-tool:
-        (PostCommitsAsPatchesToBug.execute): Added more error checking
-        when consuming arguments.
-
-2009-07-16  David D. Kilzer  <ddkilzer@webkit.org>
-
-        TOOL FIX: scm.py: CommitMessage.message is ambiguous
-
-        Fixes this error when running bugzilla-tool apply-patches
-        --local-commit:
-
-        File "bugzilla-tool", line 188, in apply_patches
-          scm.commit_locally_with_message(commit_message.message() or patch['name'])
-        TypeError: 'list' object is not callable
-
-        * Scripts/modules/scm.py: After r45940 (and r45971), rename
-        CommitMessage.message attribute to CommitMessage.message_lines.
-        (CommitMessage.__init__):
-        (CommitMessage.body):
-        (CommitMessage.description):
-        (CommitMessage.message):
-        (CommitMessage.parse_bug_id):
-
-2009-07-16  David D. Kilzer  <ddkilzer@webkit.org>
-
-        TOOL FIX: bugzilla-tool: import CommitMessage class
-
-        * Scripts/bugzilla-tool: After r45940, the CommitMessage class
-        needs to be imported for commit_message_for_this_commit().
-
-2009-07-16  David Levin  <levin@chromium.org>
-
-        Reviewed by Maciej Stachowiak.
-
-        prepare-ChangeLog should display the --bug option in its help text.
-        https://bugs.webkit.org/show_bug.cgi?id=27334
-
-        * Scripts/prepare-ChangeLog: Added the help text.
-
-2009-07-15  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: Check in the version used to
-        rename parseURL to deprecatedParseURL.
-
-2009-07-10  David Kilzer  <ddkilzer@apple.com>
-
-        bugzilla-tool: create CommitMessage class
-
-        Reviewed by Eric Seidel.
-
-        Create a CommitMessage class to encapsulate related code.
-
-        * Scripts/bugzilla-tool:
-         (bug_id_from_commit_message): Moved to
-         CommitMessage.parse_bug_id().
-         (commit_message_for_this_commit): Return a CommitMessage.
-         (ApplyPatchesFromBug.apply_patches): Use CommitMessage.message().
-         (LandPatchesFromBugs.build_and_commit): Ditto.
-         (CommitMessageForCurrentDiff.execute): Ditto.
-         (PostCommitsAsPatchesToBug.execute): Switched from
-         Git.commit_message_for_commit() to
-         Git.commit_message_for_local_commit().  Switched from
-         bug_id_from_commit_message() to CommitMessage.parse_bug_id().
-
-         * Scripts/modules/scm.py:
-         (first_non_empty_line_after_index): Added.
-         (CommitMessage.__init__): Added.
-         (CommitMessage.body): Added.
-         (CommitMessage.description): Added.
-         (CommitMessage.message): Added.
-         (CommitMessage.parse_bug_id): Added.  Moved from
-         bug_id_from_commit_message() in bugzilla-tool.
-         (Git.commit_message_for_local_commit): Renamed from
-         commit_message_for_commit().  Return a CommitMessage.
-
-2009-07-15  Joseph Pecoraro  <joepeck02@gmail.com>
-
-        Reviewed by David Kilzer.
-
-        bugzilla-tool/svn-apply can't handle patches made from a non-root directory
-        https://bugs.webkit.org/show_bug.cgi?id=26999
-
-        * Scripts/svn-create-patch:
-
-2009-07-15  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by David Levin.
-
-        Move cpplint.py to module directory
-        https://bugs.webkit.org/show_bug.cgi?id=27302
-
-        * Scripts/modules/cpplint.py: Renamed from WebKitTools/Scripts/cpplint.py.
-        * Scripts/modules/cpplint_unittest.py: Renamed from WebKitTools/Scripts/cpplint_unittest.py.
-
-2009-07-15  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Reviewed by Adam Treat.
-
-        https://bugs.webkit.org/show_bug.cgi?id=27295
-
-        Re-implement QWebPage::shouldInterruptJavaScript to disable
-        js interruption and avoid showing a messagebox during Qt DRT
-        runs when script execution takes a bit longer.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::WebPage::shouldInterruptJavaScript): Return false
-        in re-implemented slot.
-
-2009-07-15  Zoltan Horvath  <hzoltan@inf.u-szeged.hu>
-
-        Reviewed by Jan Alonzo.
-
-        Fix the DumpRenderTree GTK+ build
-        https://bugs.webkit.org/show_bug.cgi?id=27290
-
-        Set USE_SYSTEM_MALLOC macro for the DumpRenderTree build to 
-        disable using TCmalloc in DumpRenderTree.
-
-        * GNUmakefile.am:
-
-2009-07-14  Steve Falkenburg  <sfalken@apple.com>
-
-        Reorganize JavaScriptCore headers into:
-        API: include/JavaScriptCore/
-        Private: include/private/JavaScriptCore/
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/ImageDiff.vcproj:
-
-2009-07-14  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by David Levin.
-
-        WebKit needs a style linting tool
-        https://bugs.webkit.org/show_bug.cgi?id=25884
-
-        Modifies cpplint (http://google-styleguide.googlecode.com/svn/trunk/cpplint/)
-        based on WebKit's style guide.
-
-        * Scripts/cpplint.py: Added.
-        * Scripts/cpplint_unittest.py: Added.
-
-2009-07-14  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] DumpRenderTree no longer builds with Qt4.4
-        https://bugs.webkit.org/show_bug.cgi?id=27257
-
-        Flag Qt 4.5 dependency to allow building with Qt 4.4.
-
-        * DumpRenderTree/qt/main.cpp:
-        (main):
-
-2009-07-13  Brent Fulgham  <bfulgham@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Add new configuration flag for redistributable Windows build.
-        https://bugs.webkit.org/show_bug.cgi=27087
-
-        * DumpRenderTree/config.h: Check for presence of WIN_CAIRO and
-          select appropriate configuration. Defaults to standard Apple build.
-        * DumpRenderTree/win/DumpRenderTree.vcproj: Add new WinCairo.vsprops
-          to Debug_Cairo and Release_Cairo targets.
-
-2009-07-13  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Reviewed by Ariya Hidayat.
-
-        Always run the Qt DRT with the raster graphicssystem on X11, for
-        increased stability in the image based tests, in particular canvas.
-
-        * DumpRenderTree/qt/main.cpp:
-        (main):
-
-2009-07-13  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Reviewed by Ariya Hidayat.
-
-        Fix test netscape plugin usage with the Qt DRT.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::WebPage::WebPage): Enable plugins in the settings.
-        * Scripts/run-webkit-tests: Set the QT_WEBKIT_PLUGIN path to the correct build
-        directory to make Qt DRT find the test netscape plugin.
-
-2009-07-13  Simon Hausmann  <hausmann@webkit.org>
-
-        Reviewed by Ariya Hidayat.
-
-        Make sure to disable the fixed contents size when resetting the page/view
-        state between test runs, to avoid side-effects.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::open): Call setFixedContentsSize() with an invalid
-        QSize to disable the fixed layout.
-
-2009-07-13  Simon Hausmann  <hausmann@webkit.org>
-
-        Reviewed by Ariya Hidayat.
-
-        When creating new windows, don't forget to connect the new
-        page's main frame. This ensures that for example the layoutTestController
-        is also available there.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::createWindow):
-
-2009-07-13  Simon Hausmann  <hausmann@webkit.org>
-
-        Reviewed by Ariya Hidayat.
-
-        Added support for LayoutTestController.setPrivateBrowsingEnabled.
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::setPrivateBrowsingEnabled):
-        * DumpRenderTree/qt/jsobjects.h:
-
-2009-07-13  Simon Hausmann  <hausmann@webkit.org>
-
-        Reviewed by Ariya Hidayat.
-
-        Added support for database callbacks, storage quota setting,
-        and clearing of all databases.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::dumpDatabaseQuota):
-        * DumpRenderTree/qt/DumpRenderTree.h:
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::setDatabaseQuota):
-        (LayoutTestController::clearAllDatabases):
-        * DumpRenderTree/qt/jsobjects.h:
-        (LayoutTestController::shouldDumpDatabaseCallbacks):
-        (LayoutTestController::dumpDatabaseCallbacks):
-        * DumpRenderTree/qt/main.cpp:
-        (main):
-
-2009-07-13  Simon Hausmann  <hausmann@webkit.org>
-
-        Reviewed by Ariya Hidayat.
-
-        Setup the path in the Qt DRT for HTML 5 Databases, to enable some of
-        the storage layout tests.
-
-        * DumpRenderTree/qt/main.cpp:
-        (main):
-
-2009-07-13  Simon Hausmann  <hausmann@webkit.org>
-
-        Reviewed by Ariya Hidayat.
-
-        Make the test output more robust by dumping only when the main
-        frame finishes loading, instead of when _any_ frame finishes.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree): Connect to the
-        main frame's loadFinished() signal instead of the page's one.
-
-2009-07-13  Simon Hausmann  <hausmann@webkit.org>
-
-        Reviewed by Ariya Hidayat.
-
-        Implement the GCController DRT interface.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree): Allocate the GCController.
-        (WebCore::DumpRenderTree::initJSObjects): Register the interface with the JS engine.
-        * DumpRenderTree/qt/DumpRenderTree.h: Declare m_gcController.
-        * DumpRenderTree/qt/jsobjects.cpp: Implement GCController.
-        (GCController::GCController):
-        (GCController::collect):
-        (GCController::collectOnAlternateThread):
-        (GCController::getJSObjectCount):
-        * DumpRenderTree/qt/jsobjects.h: Declare GCController.
-
-2009-07-13  Simon Hausmann  <hausmann@webkit.org>
-
-        Reviewed by Ariya Hidayat.
-
-        Implement the GCController DRT interface in the Qt DRT.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree): Allocate the GCController.
-        (WebCore::DumpRenderTree::initJSObjects): Register the interface with the JS engine.
-        * DumpRenderTree/qt/DumpRenderTree.h: Declare m_gcController.
-        * DumpRenderTree/qt/jsobjects.cpp: Implement GCController.
-        (GCController::GCController):
-        (GCController::collect):
-        (GCController::collectOnAlternateThread):
-        (GCController::getJSObjectCount):
-        * DumpRenderTree/qt/jsobjects.h: Declare GCController.
-
-2009-07-13  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        https://bugs.webkit.org/show_bug.cgi?id=26718 [Gtk] Add support for javascript windows for DRT
-
-        Reviewed by Gustavo Noronha and Xan Lopez.
-
-        Support running of tests that open and close JS windows automatically.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (dumpFramesAsText):
-        (dumpBackForwardListForAllWebViews):
-        (resetWebViewToConsistentStateBeforeTesting):
-        (dump):
-        (runTest):
-        (webViewClose):
-        (createWebView):
-        (webViewCreate):
-        (main):
-        * DumpRenderTree/gtk/DumpRenderTreeGtk.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::windowCount):
-        (LayoutTestController::setPopupBlockingEnabled):
-
-2009-07-13  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Maciej Stachowiak.
-
-        prepare-ChangeLog should decode HTML entities in short description
-        https://bugs.webkit.org/show_bug.cgi?id=27122
-
-        Decode the short description by adding a function which decodes HTML
-        entities. It can decode &, <, >, ", and ' . They may be sufficient
-        as the description seems to be encoded by xml_quote in
-        http://mxr.mozilla.org/bugzilla/source/Bugzilla/Util.pm
-
-        * Scripts/prepare-ChangeLog:
-
-2009-07-13  Drew Wilson  <atwilson@google.com>
-
-        Reviewed by David Levin.
-
-        Add ENABLE(SHARED_WORKERS) flag and define SharedWorker APIs
-        https://bugs.webkit.org/show_bug.cgi?id=26932
-
-        Added support for --shared-workers (turned off by default)
-
-        * Scripts/build-webkit:
-
-2009-07-12  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Maciej Stachowiak.
-
-        https://bugs.webkit.org/show_bug.cgi?id=27196
-        Update check-for-global-initializers for the renaming for bidi.cpp to
-        RenderBlockLineLayout.cpp
-
-        * Scripts/check-for-global-initializers:
-
-2009-07-11  Simon Fraser  <simon.fraser@apple.com>
-
-        Enable support for accelerated compositing and 3d transforms on Leopard.
-        <https://bugs.webkit.org/show_bug.cgi?id=20166>
-        <rdar://problem/6120614>
-
-        Reviewed by Oliver Hunt.
-
-        * Configurations/FeatureDefines.xcconfig:
-        * wtf/Platform.h:
-
-2009-07-10  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/27173> svn-apply: Fix typo in git command used to find deleted files
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/svn-apply:
-        (scmWillDeleteFile): Changed 'head' to 'HEAD'.
-
-2009-07-10  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/27167> bugzilla-tool: hide help for unsupported commands
-
-        Reviewed by Eric Seidel.
-
-        When bugzilla-tool -h|--help is invoked in an svn working
-        directory, don't print help for commands that are only supported
-        on git working directories.
-
-        * Scripts/bugzilla-tool:
-        (Command.__init__): Added requires_local_commits argument with a
-        default of False.  Set self.requires_local_commits attribute.
-        (PostCommitsAsPatchesToBug.execute): Removed
-        SCM.supports_local_commits() check since this is now handled by
-        BugzillaTool.main().
-        (PostCommitsAsPatchesToBug.__init__): Added
-        requires_local_commits=True argument to Command.__init__().
-        (BugzillaTool.commands_usage): Don't print help for commands if
-        they require local commits and the current SCM doesn't support
-        them.
-        (BugzillaTool.main): If command_object requires local commits
-        and the current SCM doesn't, exit with an error message.
-
-2009-07-10  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/27117> bugzilla-tool: use Mac OS X keychain for authentication
-
-        Reviewed by Eric Seidel.
-
-        Try reading credentials from git config first, then keychain if
-        running on Mac OS X, else prompt at the command-line.
-
-        * Scripts/modules/bugzilla.py: Added "import platform".
-        (credentials_from_git): Added.
-        (credentials_from_keychain): Added.
-        (is_mac_os_x): Added.
-        (read_credentials): Added.
-        (Bugzilla.__init__): Moved instance attribute bug_server to a
-        static attribute named bug-server_url.
-        (Bugzilla.bug_server_host): Added.  Extracted host name from
-        bug_server_url.
-        (Bugzilla.bug_server_regex): Updated to be created using
-        bug_server_host.
-        (Bugzilla.bug_server_url): Renamed from bug_server.
-        (Bugzilla.bug_url_for_bug_id): Updated for renaming of
-        bug_server to bug_server_url.
-        (Bugzilla.attachment_url_for_id): Ditto.
-        (Bugzilla.fetch_bug_ids_from_commit_queue): Ditto.
-        (Bugzilla.authenticate): Ditto.  Updated to use
-        read_credentials().
-        (Bugzilla.add_patch_to_bug): Ditto.
-
-2009-07-10  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/27115> bugzilla-tool: extract duplicate logging methods into a module
-
-        Reviewed by Adam Roben.
-
-        * Scripts/bugzilla-tool: Removed error() and log() methods and
-        added import of new logging module.
-        * Scripts/modules/bugzilla.py: Ditto.  Removed "import sys".
-        * Scripts/modules/scm.py: Ditto.
-
-        * Scripts/modules/logging.py: Added.
-        (log): Added.
-        (error): Added.  Prefix error messages with "ERROR: ".
-
-2009-07-10  Adam Roben  <aroben@apple.com>
-
-        Sort all our Xcode projects
-
-        Accomplished using sort-Xcode-project-file.
-
-        Requested by Dave Kilzer.
-
-        * DrawTest/DrawTest.xcodeproj/project.pbxproj:
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * WebKitLauncher/WebKitLauncher.xcodeproj/project.pbxproj:
-
-2009-07-10  Adam Roben  <aroben@apple.com>
-
-        Print prepare-ChangeLog's reminders to STDERR so they don't end up in
-        the diff output
-
-        Fixes REGRESSION (r45647): prepare-ChangeLog -d puts non-diff lines
-        into the diff
-        <https://bugs.webkit.org/show_bug.cgi?id=27150>
-
-        Reviewed by Maciej Stachowiak.
-
-        * Scripts/prepare-ChangeLog:
-
-2009-07-08  Adam Roben  <aroben@apple.com>
-
-        Use case-insensitive comparisons when sorting Xcode project files
-
-        This matches the sorting used in Xcode's files list.
-
-        Fixes Bug 27079: sort-Xcode-project-file should sort
-        case-insensitively, to match Xcode's files list
-        <https://bugs.webkit.org/show_bug.cgi?id=27079>
-
-        Reviewed by Dave Kilzer.
-
-        * Scripts/sort-Xcode-project-file:
-        (sortChildrenByFileName):
-        (sortFilesByFileName):
-        Lowercase the strings before comparing them so that the comparison
-        will be case-insensitive.
-
-2009-07-08  Simon Hausmann  <hausmann@webkit.org>
-
-        Reviewed by Holger Freyther.
-
-        https://bugs.webkit.org/show_bug.cgi?id=27109
-
-        Fix side-effects in the Qt DRT with tests using application fonts.
-
-        Detect if a test used application fonts and re-initialize the fontconfig
-        application fontset accordingly.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::open): call initializeFonts and remove all application fonts
-        after running a testcase.
-        (WebCore::DumpRenderTree::initializeFonts): Moved fontconfig initialization code
-        here from main.
-        * DumpRenderTree/qt/DumpRenderTree.h: Declare initializeFonts.
-        * DumpRenderTree/qt/main.cpp:
-        (main): Moved fontconfig initialization code to DRT::initializeFonts.
-
-2009-07-10  Antonio Gomes   <antonio.gomes@openbossa.org>
-
-        Reviewed by Simon Hausmann.
-
-        [QT] [ARM] Add pkg-config entry for FontConfig on DRT.pro
-        https://bugs.webkit.org/show_bug.cgi?id=26990
-
-        Missing pkg-config entry for FontConfig in DRT.pro causes some compilers to
-        not link fine against FontConfig bits.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-
-2009-07-09  Drew Wilson  <atwilson@google.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        https://bugs.webkit.org/show_bug.cgi?id=26903
-
-        Turned on CHANNEL_MESSAGING by default because the MessageChannel API
-        can now be implemented for Web Workers and is reasonably stable.
-
-        * Scripts/build-webkit:
-
-2009-07-09  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/27114> bugzilla-tool: Parse short bug URL from commit log messages
-
-        Reviewed by Adam Roben.
-
-        * Scripts/bugzilla-tool:
-        (bug_id_from_commit_message): Check for the short bug URL before
-        checking for the longer bugs.webkit.org URL.
-
-2009-07-08  David Kilzer  <ddkilzer@apple.com>
-
-        Bug 27062: bugzilla-tool: post-commits should read bug id from commit log and actually work
-
-        <https://bugs.webkit.org/show_bug.cgi?id=27062>
-
-        Reviewed by Eric Seidel.
-
-        Removed the required BUGID argument from the "post-commits"
-        command and replaced it with a -b|--bug-id switch or parsing the
-        commit log message for the bug URL.  Fixed a bug in the
-        "post-commits" that would ignore the COMMITISH used and post a
-        patch of local changes against HEAD.  Added --no-commit switch
-        to disable using the bulk of the ChangeLog entry as the comment
-        for the new patch.
-
-        * Scripts/bugzilla-tool:
-        (bug_id_from_commit_message): Added.  Returns a bug id from the
-        commit log message, thus enforcing the need for a bug URL in the
-        message.
-        (PostCommitsAsPatchesToBug.__init__): Updated help description
-        to match new behavior of pulling bug ids from commit log
-        messages instead of from the command line.  Added -b|--bug-id
-        switch and --no-comment switch.
-        (PostCommitsAsPatchesToBug.execute): Updated to use
-        bug_id_from_commit_message() to pull bug ids from commit log
-        messages.  Also switched from SCM.create_patch() to use
-        SCM.create_patch_from_local_commit() to fix a bug where local
-        repository changes were posted as a patch instead of the
-        specific COMMITISH.  Fall back to -b|--bug-id if no URL is found
-        in the commit log message.  Don't specify a comment for the
-        patch if --no-comment is used.  Set cherry_pick argument to True
-        for Git.commit_ids_from_range_arguments() since we don't want
-        implicit commit range behavior for this command.
-
-        * Scripts/modules/bugzilla.py: Import datetime module.
-        (timestamp): Added.  Returns a timestamp in the form of
-        "YYYYMMDDhhmmss".
-        (Bugzilla.bug_server_regex): Added static attribute.
-        (Bugzilla.add_patch_to_bug): Construct a more meaningful patch
-        file name using the bug_id and timestamp().
-
-        * Scripts/modules/scm.py:
-        (SCM.create_patch_from_local_commit): Added.
-        (Git.create_patch_from_local_commit): Added.  Runs "git diff" to
-        return a patch for the given commit_id.
-
-2009-07-08  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        Make prepare-ChangeLog less shouty
-        https://bugs.webkit.org/show_bug.cgi?id=27098
-
-        * Scripts/prepare-ChangeLog:
-
-2009-07-08  David Kilzer  <ddkilzer@apple.com>
-
-        Bug 27083: bugzilla.py: Clean up bug_server use
-
-        <https://bugs.webkit.org/show_bug.cgi?id=27083>
-
-        Reviewed by Darin Adler.
-
-        * Scripts/modules/bugzilla.py:
-        (Bugzilla.fetch_bug_ids_from_commit_queue): Use bug_server
-        instead of hard-coding the URL.
-        (Bugzilla.authenticate): Remove extra '/' before URL path.
-        (Bugzilla.add_patch_to_bug): Ditto.
-
-2009-07-08  Brent Fulgham  <bfulgham@webkit.org>
-
-        Build fix for Windows Cairo.
-
-        Cairo build was incorrectly #including the PixelDumpSupportCG.h
-        instead of PixelDumpSupportCairo.h
-
-        * DumpRenderTree/win/PixelDumpSupportWin.cpp: Correct #include
-
-2009-07-08  David Faure  <faure@kde.org>
-
-        Reviewed by Ariya Hidayat.
-
-        Small documentation improvement for build-webkit --help
-
-        * Scripts/build-webkit: mention --debug option
-
-2009-07-07  Brady Eidson  <beidson@apple.com>
-
-        Tiger build fix, work around missing NSString API.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dumpHistoryItem):
-
-2009-07-07  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        https://bugs.webkit.org/show_bug.cgi?id=27049 - In dumpBackForwardList() mode, DRT should normalize file urls.
-
-        Make the dump of a history item agnostic to the layout of filesystem on the testing machine.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dumpHistoryItem):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (dumpHistoryItem):
-
-2009-07-07  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Rubber-stamped by Simon Hausmann.
-
-        Correct git url of the Qt test-fonts.
-
-        * DumpRenderTree/qt/main.cpp:
-        (main):
-
-2009-07-07  Simon Hausmann  <hausmann@webkit.org>
-
-        Reviewed by Holger Freyther.
-
-        Clear the main frame's name between loading pages, like in r36652. This
-        reduces the side-effects between test cases.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::open):
-
-2009-07-06  Simon Hausmann  <hausmann@webkit.org>
-
-        Reviewed by Holger Freyther.
-
-        Fix various layout tests with Qt's DRT.
-
-        Remember to set the focus on the web page before
-        loading.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::DumpRenderTree::open):
-
-2009-07-07  Simon Hausmann  <hausmann@webkit.org>
-
-        Reviewed by Tor Arne Vestbø and Holger Freyther.
-
-        Fix timeout timer handling in Qt DRT.
-
-        Use QBasicTimer instead of startTimer/killTimer, to fix the
-        problem that starting the timeout timer did not stop a
-        previously started timer, causing multiple emissions of timeout.
-        The timerEvent() implementation now also checks the timer id, to
-        protect against double timeouts.
-
-        * DumpRenderTree/qt/jsobjects.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::reset):
-        (LayoutTestController::waitUntilDone):
-        (LayoutTestController::notifyDone):
-        (LayoutTestController::timerEvent):
-        * DumpRenderTree/qt/jsobjects.h:
-
-2009-07-06  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Maciej Stachowiak.
-
-        bugzilla-tool fails to close bugs with bugzilla 3.0
-        https://bugs.webkit.org/show_bug.cgi?id=27008
-
-        Update bugzilla.py to match changes in the bug page "changeform"
-        Update scm.py to add bug_ids to attachments to make error reporting nicer.
-
-        * Scripts/modules/bugzilla.py:
-        * Scripts/modules/scm.py:
-
-2009-07-03  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Eric Seidel.
-
-        bugzilla-tool forgot how to obsolete patches
-        https://bugs.webkit.org/show_bug.cgi?id=26951
-
-        * Scripts/modules/bugzilla.py:
-
-2009-07-02  Brent Fulgham  <bfulgham@webkit.org>
-
-        Unreviewed build fix (Cairo this time) for DumpRenderTree.
-        Put Cairo code back in, but use original include order
-        for the CG stuff to avoid compile issues.
-
-        * DumpRenderTree/win/PixelDumpSupportWin.cpp:
-        (createBitmapContextFromWebView):
-
-2009-07-02  Eric Seidel  <eric@webkit.org>
-
-        Correct blatant typo (missing []), no review.
-
-        * Scripts/modules/scm.py:
-
-2009-07-02  Brent Fulgham  <bfulgham@webkit.org>
-
-        Windows build fix, no review.
-
-
-        Reverting PixelDumpSupportWin.cpp change to avoid strange
-        error on the build-bot.
- 
-        * DumpRenderTree/win/PixelDumpSupportWin.cpp:
-        (createBitmapContextFromWebView):
-
-2009-07-02  Brent Fulgham  <bfulgham@webkit.org>
-
-        Build fix, no review.
-
-        * DumpRenderTree/config.h:
-
-2009-07-02  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Levin.
-
-        bugzilla-tool needs to handle login failure
-        https://bugs.webkit.org/show_bug.cgi?id=26913
-
-        We now exit(1) on login failure.
-
-        * Scripts/modules/bugzilla.py:
-
-2009-06-30  Brent Fulgham  <bfulgham@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Add build support for a Windows Cairo version of
-        DumpRenderTree.  Share as much logic between the
-        CG and Cairo builds as possible.
-        https://bugs.webkit.org/show_bug.cgi?id=26457
-
-        * DumpRenderTree/PixelDumpSupport.cpp: Added.
-        (dumpWebViewAsPixelsAndCompareWithExpected): Moved common logic
-          from CG-specific file.
-        (printPNG): Moved common logic from CG-specific file.
-        * DumpRenderTree/PixelDumpSupport.h: Add declaration for new
-          common printPNG function.
-        * DumpRenderTree/cairo: Added.
-        * DumpRenderTree/cairo/PixelDumpSupportCairo.cpp: Added.
-          Implement cairo-specific logic for dealing with Cairo surfaces.
-        (writeFunction):
-        (printPNG): Cairo-specific PNG handling logic.
-        (computeMD5HashStringForBitmapContext): New Cairo routine using
-          the generic BitmapContext signature.
-        (dumpBitmap): New function containing Cairo-specific portions of
-          the dumping routine.
-        * DumpRenderTree/cairo/PixelDumpSupportCairo.h: Added.
-          Provide Cairo version of the BitmapContext structure so that
-          dumping routines can work on an abstract type.
-        (BitmapContext::createByAdoptingBitmapAndContext):
-        (BitmapContext::~BitmapContext):
-        (BitmapContext::cairoContext):
-        (BitmapContext::BitmapContext):
-        * DumpRenderTree/cg/PixelDumpSupportCG.cpp:
-        (printPNG): CG-specific PNG handling logic.
-        (computeMD5HashStringForBitmapContext): Revised to use generic
-          BitmapContext signature.
-        (dumpBitmap): New function containing CG-specific portions of
-          the dumping routine.
-        * DumpRenderTree/cg/PixelDumpSupportCG.h: Add new signatures.
-        * DumpRenderTree/win/DumpRenderTree.cpp: Disable CFNetwork logic
-          when building the non-CFNetwork version.
-        (main):
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/PixelDumpSupportWin.cpp:
-        (createBitmapContextFromWebView): Provide parallel Cairo implementation
-          of CG bitmap/context setup.
-
-2009-07-02  Eric Seidel  <eric@webkit.org>
-
-        No review, just adding Antti as a reviewer.
-
-        * Scripts/modules/bugzilla.py:
-
-2009-07-02  Antonio Gomes   <antonio.gomes@openbossa.org>
-
-        Reviewed by Simon Hausmann.
-
-        https://bugs.webkit.org/show_bug.cgi?id=26896
-
-        [Qt] Set DRT's default fontsize to 13.
-
-        * DumpRenderTree/qt/DumpRenderTree.cpp:
-        (WebCore::WebPage::WebPage):
-
-2009-07-01  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        bugzilla-tool fails for SVN users
-        https://bugs.webkit.org/show_bug.cgi?id=26914
-
-        To fix this I moved svn from -F - to using -m
-        In order for -m to work I had to move us off of shell=True
-        To move off of shell=True all call sites for run_command
-        which take args, need to pass their args as an list instead of a string.
-
-        In order for the final bug update to work correctly, I had to
-        abstract the way that we parse out revision numbers from the commit text.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/scm.py:
-
-2009-07-01  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Maciej Stachowiak.
-
-        prepare-ChangeLog should have a --bug= argument and use it for url autofill
-        https://bugs.webkit.org/show_bug.cgi?id=26383
-
-        prepare-ChangeLog now knows how to grab the bug title from bugs.webkit.org
-        I also added a bit more template text in an effort to get better ChangeLogs
-        from casual contributers.
-
-        * Scripts/prepare-ChangeLog:
-
-2009-07-01  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        prepare-ChangeLog should fail when EMAIL_ADDRESS or REAL_NAME are missing:
-        https://bugs.webkit.org/show_bug.cgi?id=26692
-
-        I also made prepare-ChangeLog sanity-check names and email addresses a little.
-        Names must contain a space, and email addresses must contain '@'
-
-        Also "fixed" $email_address to $emailAddress.  This script uses mixed variable name styles.
-
-        * Scripts/prepare-ChangeLog:
-
-2009-07-01  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Beth Dakin.
-
-        Bug 26900: AX: Manual spell check with Command-; does not bring up suggestions
-        https://bugs.webkit.org/show_bug.cgi?id=26900
-
-        Expose the ability to get the click point of an element through accessibility.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (getClickPointXCallback):
-        (getClickPointYCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::clickPointX):
-        (AccessibilityUIElement::clickPointY):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::clickPointX):
-        (AccessibilityUIElement::clickPointY):
-
-2009-07-01  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Simon Fraser.
-
-        Change how WebKitNightlyEnabler.dylib lies about Safari's identity to LaunchServices.
-        This makes WebKit.app behave as expected when set as the default web browser on a wider
-        range of OS versions.
-
-        * WebKitLauncher/WebKitNightlyEnabler.m:
-        (poseAsWebKitApp):
-        (enableWebKitNightlyBehaviour):
-
-2009-07-01  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Simon Fraser.
-
-        Shuffle some code around in preparation for a change to how poseAsWebKitApp works.
-
-        * WebKitLauncher/WebKitNightlyEnabler.m:
-        (systemVersion):
-        (webKitLauncherBundle):
-        (insideSafari4OnTigerTrampoline):
-
-2009-06-30  Xan Lopez  <xlopez@igalia.com>
-
-        Reviewed by Jan Alonzo.
-
-        https://bugs.webkit.org/show_bug.cgi?id=26877
-        [GTK] DRT fixes to pass new plugin test
-
-        Silence compiler warnings.
-
-        Newer GCC don't like using or returning a static string where a
-        'char*' is expected. Ideally we'd change the function signatures
-        to return or take 'const char*' I suppose, but since we can't do
-        that just cast the strings to 'char*'.
-
-        * DumpRenderTree/gtk/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_get_value):
-
-2009-06-30  Xan Lopez  <xlopez@igalia.com>
-
-        Reviewed by Jan Alonzo.
-
-        https://bugs.webkit.org/show_bug.cgi?id=26877
-        [GTK] DRT fixes to pass new plugin test
-
-        Use the common pluginLog function instead of a local copy.
-
-        * DumpRenderTree/gtk/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_new_instance):
-        (webkit_test_plugin_destroy_instance):
-        (webkit_test_plugin_set_window):
-        (webkit_test_plugin_handle_event):
-
-2009-06-30  Xan Lopez  <xlopez@igalia.com>
-
-        Reviewed by Jan Alonzo.
-
-        https://bugs.webkit.org/show_bug.cgi?id=26877
-        [GTK] DRT fixes to pass new plugin test
-
-        Modify our DRT as done in bug #15457 to log logSrc as src in order
-        to pass test plugins/netscape-plugin-map-data-to-src.html.
-
-        * DumpRenderTree/gtk/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_new_instance):
-
-2009-06-30  Adrien Nader  <camaradetux@gmail.com>
-
-        Reviewed by Jan Alonzo.
-
-        [GTK] GtkLauncher depends on gtk+2-2.15 because of gtk_orientable_set_orientation()
-        https://bugs.webkit.org/show_bug.cgi?id=26835
-
-        * GtkLauncher/main.c:
-        (create_toolbar):
-
-2009-06-30  Eric Seidel  <eric@webkit.org>
-
-        Typo fix only, no review.
-
-        Fix typo causing failure during land-diff
-
-        * Scripts/bugzilla-tool:
-
-2009-06-30  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Dan Bernstein.
-        
-        Fix drawing of view background in pixel snapshots when using compositing.
-        We still need to call -displayIfNeeded to ensure that the NSView drawing
-        has happened.
-
-        * DumpRenderTree/mac/PixelDumpSupportMac.mm:
-        (createBitmapContextFromWebView):
-
-2009-06-30  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        createBitmapContextFromWebView() incorrectly used #ifdef BUILDING_ON_LEOPARD,
-        and thus failed on SnowLeopard.
-        
-        * DumpRenderTree/mac/PixelDumpSupportMac.mm:
-        (createBitmapContextFromWebView):
-
-2009-06-30  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Nikolas Zimmermann.
-
-        Make bugzilla tool print a message explaining how to get help on failure:
-        https://bugs.webkit.org/show_bug.cgi?id=26861
-
-        % bugzilla-tool
-        Usage: bugzilla-tool [options] command [command-options] [command-arguments]
-
-        bugzilla-tool: error: No command specified
-
-        Type 'bugzilla-tool --help' to see usage.
-
-        * Scripts/bugzilla-tool:
-
-2009-06-30  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Maciej Stachowiak.
-
-        Include a built copy of BeautifulSoup 3.1.0.1 so that
-        bugzilla-tool users do not need to install it manually.
-        https://bugs.webkit.org/show_bug.cgi?id=26833
-
-        BeautifulSoup is BSD-licensed (thus WebKit compatible) and available from:
-        http://www.crummy.com/software/BeautifulSoup
-
-        * Scripts/bugzilla-tool: fixed a typo in a log message.
-        * Scripts/modules/BeautifulSoup.py: Added.
-        * Scripts/modules/bugzilla.py:
-
-2009-06-30  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        Fix our create_patch handling to not
-        hang when creating large patches.
-        https://bugs.webkit.org/show_bug.cgi?id=26834
-
-        We're now using StringIO to make an in-memory buffer for the patch
-        instead of piping from the patch command directly to the upload.
-        The previous hang was caused by calling wait() when the process had already
-        filed the stdout buffer.
-
-        * Scripts/modules/scm.py:
-
-2009-06-29  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        Remove more unused scons support.
-
-        * Scripts/build-jsc:
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-
-2009-06-26  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Levin.
-
-        Rename land-and-update to land-diff and make it awesome.
-        https://bugs.webkit.org/show_bug.cgi?id=26734
-
-        Renamed land-and-update to land-diff
-        Made the BUGID argument optional.
-        Added optional support for building and testing before landing.
-
-        land-diff [options] [BUGID]    Lands the current working directory diff and updates the bug if provided.
-          Options:
-            -r REVIEWER, --reviewer=REVIEWER
-                              Update ChangeLogs to say Reviewed by REVIEWER.
-            --no-close        Leave bug open after landing.
-            --no-build        Commit without building first, implies --no-test.
-            --no-test         Commit without running run-webkit-tests.
-
-        * Scripts/bugzilla-tool:
-
-2009-06-28  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Gtk build fix - include stdarg.h for va_start/va_end.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-
-2009-06-28  John Abd-El-Malek  <jam@chromium.org>
-
-        https://bugs.webkit.org/show_bug.cgi?id=15457
-
-        Modify NPAPI test plugin to verify that "src" paramater is added when
-        it's missing but "data" is present.
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (pluginLog):
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.h:
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.cpp:
-        (NPP_New):
-        (NPP_Destroy):
-        (NPP_SetWindow):
-        (handleEventCarbon):
-        (handleEventCocoa):
-        * DumpRenderTree/win/TestNetscapePlugin/main.cpp:
-        (NPP_New):
-
-2009-06-27  Emilio Pozuelo Monfort  <pochu27@gmail.com>
-
-        Reviewed by Jan Alonzo.
-
-        [GTK] Don't use deprecated GTK+ symbols.
-        https://bugs.webkit.org/show_bug.cgi?id=26583
-
-        * GtkLauncher/main.c:
-        (create_toolbar):
-
-2009-06-26  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Make SVN work (again?).
-
-        * Scripts/modules/scm.py:
-
-2009-06-26  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        Add ability to query isEnabled
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (getIsEnabledCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::isEnabled):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::isEnabled):
-
-2009-06-26  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Sam Weinig
-
-        <rdar://problem/6961578> REGRESSION (r43511): Opening .fdf files from Acrobat Professional fails
-
-        Add a dumpResourceResponseMIMETypes() mode so the ResourceLoadDelegate will dump the mime type from
-        the NSURLResponse.  Needed for the test for this bug fix.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (dumpResourceResponseMIMETypesCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::dumpResourceResponseMIMETypes):
-        (LayoutTestController::setDumpResourceResponseMIMETypes):
-
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        (-[ResourceLoadDelegate webView:resource:didReceiveResponse:fromDataSource:]):
-
-2009-06-26  David Kilzer  <ddkilzer@apple.com>
-
-        Update build-dumprendertree to use buildXCodeProject()
-
-        Reviewed by Adam Roben.
-
-        * Scripts/build-dumprendertree: Updated to use
-        buildXCodeProject() when building for isAppleMacWebKit().  This
-        provides additional command-line switch parsing for free.  Also
-        added --clean and --help switches.  Updated copyright.
-
-2009-06-26  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Tor Arne Vestbø.
-
-        Remove non-sense --update option to land-patches
-        and make land-patches update before every patch application.
-        This makes it slightly less likely that multi-patch landings will fail.
-
-        Also updated git diff command to include staged modifications.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/scm.py:
-
-2009-06-25  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Jan Alonzo.
-
-        Fix obsolete_attachment to work when passed a comment.
-        https://bugs.webkit.org/show_bug.cgi?id=26745
-
-        * Scripts/modules/bugzilla.py:
-
-2009-06-25  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        bugzilla-tool apply-patch throws exception in Linux
-        https://bugs.webkit.org/show_bug.cgi?id=26738
-
-        HEAD is case-sensitive in Linux. Convert uses of head to HEAD in
-        the scm module.
-
-        * Scripts/modules/scm.py:
-
-2009-06-25  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Jan Alonzo.
-
-        bugzilla-tool post-diff needs to obsolete old patches before posting
-        https://bugs.webkit.org/show_bug.cgi?id=26740
-
-        I've also added a --no-obsolete to disable this behavior.
-        
-        I also finally updated the bug page parsing to use XML. So much less code!
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/bugzilla.py:
-
-2009-06-25  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        Call WebKitTools/Scripts scripts by their absolute paths
-        https://bugs.webkit.org/show_bug.cgi?id=26704
-
-        bugzilla-tool used to use whatever build-webkit was in your path.
-        That could end up building the wrong copy of WebKit.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/scm.py:
-
-2009-06-25  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Dave Levin.
-
-        Use unicode() instead of str when reading from bugzilla.
-        Also add Simon Fraser as a reviewer.
-        https://bugs.webkit.org/show_bug.cgi?id=26719
-
-        * Scripts/modules/bugzilla.py:
-
-2009-06-25  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        Use Q_ASSERT in Qt's DumpRenderTree instead of JSC's ASSERT
-        
-        The WTFReportAssertionFailure function in JSC is not exported when
-        building QtWebKit in both debug and release on Mac, so DRT fails to
-        link.
-        
-        We can revert this patch once the Qt port builds JSC as a separate
-        library, and we add the proper export macros to Assertions.cpp
-
-        * DumpRenderTree/qt/WorkQueue.cpp:
-        (WorkQueue::queue):
-        (WorkQueue::dequeue):
-
-2009-06-25  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Jan Alonzo.
-
-        bugzilla-tool: Add Simon Hausmann as reviewer
-
-        * Scripts/modules/bugzilla.py:
-
-2009-06-24  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Dave Levin.
-
-        Support local commits during apply-patches
-        and let land-patches take multiple bug ids.
-        https://bugs.webkit.org/show_bug.cgi?id=26703
-
-        I also restructured parts of land-patches into
-        class methods and static methods in preparation
-        for future code sharing with other commands.
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/bugzilla.py:
-        * Scripts/modules/scm.py:
-
-2009-06-25  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Tor Arne Vestbø.
-
-        Make svn-apply work with Git too
-        https://bugs.webkit.org/show_bug.cgi?id=26299
-        
-        Add an --force option to svn-apply and otherwise make svn-apply
-        exit non-zero when patch application fails.
-        https://bugs.webkit.org/show_bug.cgi?id=26300
-
-        I did not update svn-unapply, because it makes no sense in a Git world.
-        You don't roll in and out patch files.  You make commits and deal with those.
-        Git users can just git reset --hard to get the same functionality.
-
-        * Scripts/svn-apply:
-
-2009-06-25  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Tor Arne Vestbø.
-
-        Remove use of os.system to fix reviewers with unicode chars in their names
-        https://bugs.webkit.org/show_bug.cgi?id=26713
-
-        Also change to latin1 encoding of ø to make python happy.
-
-        * Scripts/modules/bugzilla.py:
-        * Scripts/modules/scm.py:
-
-2009-06-25  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Tor Arne Vestbø.
-
-        Add Adam Roben and Tor Arne Vestbø to the reviewers list.
-
-        * Scripts/modules/bugzilla.py:
-
-2009-06-24  Chris Fleizach  <cfleizach@apple.com>
-
-        Windows build fix.
-
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::language):
-
-2009-06-24  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        Bug 26668: AX: need a way to retrieve the language for an element
-        Support ability to retrieve AXLanguage for testing
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (getLanguageCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::language):
-
-2009-06-24  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Maciej Stachowiak.
-        
-        Spell Maciej's name right and add Brady Eidson.
-
-        * Scripts/modules/bugzilla.py:
-
-2009-06-23  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Dave Levin.
-
-        Fix missing comment message during land-patches and SVN.commit_with_message respecting --dry-run
-        https://bugs.webkit.org/show_bug.cgi?id=26669
-
-        * Scripts/bugzilla-tool:
-        * Scripts/modules/scm.py:
-
-2009-06-23  Takeshi Yoshino  <tyoshino@google.com>
-
-        Reviewed by Mark Rowe.
-
-        Bug 26537: Builds from command-line fail if custom build product directory is set and ~/Library/Preferences/xcodebuild.plist exists
-        https://bugs.webkit.org/show_bug.cgi?id=26537
-
-        Let determineBaseProductDir subroutine remove
-        ~/Library/Preferences/xcodebuild.plist. It can prevent xcodebuild from
-        respecting global settings such as a custom build products directory
-        (<rdar://problem/5585899>).
-
-        * Scripts/webkitdirs.pm:
-
-2009-06-23  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Dave Levin.
-
-        Make SCM.run_command smarter, and make all previous
-        os.system and subprocess.popen use SCM.run_command instead.
-        https://bugs.webkit.org/show_bug.cgi?id=26666
-
-        This makes it easier to handle errors in a standard way throughout all the code.
-        Since this new code raises by default when the exit_code != 0,
-        we should prevent future problems of bugzilla-tool continuing after
-        a git or svn command failed.
-
-        * Scripts/modules/scm.py:
-
-2009-06-23  Joe Mason  <joe.mason@torchmobile.com>
-
-        Reviewed by Adam Treat.
-
-        https://bugs.webkit.org/show_bug.cgi?id=26664
-        * Scripts/prepare-ChangeLog: Added --git-index mode to list only the
-        changes which are already staged in the index.  Useful to create an
-        entry for what you're about to commit while ignoring unstaged changes.
-
-2009-06-23  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Darin Adler.
-        
-        Update for WebKit changes.
-        
-        * DumpRenderTree/win/UIDelegate.h:
-        (UIDelegate::willPerformDragSourceAction):
-
-2009-06-23  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        * Scripts/modules/scm.py: Fix commit_with_message to return the commit output.
-
-2009-06-23  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        * Scripts/modules/scm.py: Fix error seen when commiting r44979.
-
-2009-06-18  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Dave Levin.
-
-        WebKit needs a script to interact with bugzilla and automate
-        parts of the patch posting and commit processes.
-        https://bugs.webkit.org/show_bug.cgi?id=26283
-
-        This is really a first-draft tool.
-        It's to the point where it's useful to more people than just me now though.
-        Git support works.  SVN support is written, but mostly untested.
-
-        This tool requires BeautifulSoup and mechanize python modules to run:
-        sudo easy_install BeautifulSoup
-        sudo easy_install mechanize
-
-        More important than the tool itself are the Bugzilla, Git and SVN class abstractions
-        which I hope will allow easy writing of future tools.
-
-        The tool currently implements 10 commands, described below.
-
-        Helpers for scripting dealing with the commit queue:
-        bugs-to-commit                 Bugs in the commit queue
-        patches-to-commit              Patches attached to bugs in the commit queue
-
-        Dealing with bugzilla:
-        reviewed-patches BUGID         r+'d patches on a bug
-        apply-patches BUGID            Applies all patches on a bug to the local working directory without committing.
-        land-and-update BUGID          Lands the current working directory diff and updates the bug.
-        land-patches [options] BUGID   Lands all patches on a bug optionally testing them first
-        obsolete-attachments BUGID     Marks all attachments on a bug as obsolete.
-        commit-message                 Prints a commit message suitable for the uncommitted changes.
-
-        These effectively replace git-send-bugzilla:
-        post-diff BUGID                Attaches the current working directory diff to a bug as a patch file.
-        post-commits BUGID COMMITISH   Attaches a range of local commits to a bug as patch files.
-
-        post-diff works for SVN and Git, post-commits only works for SCMs with local-commit support (like Git)
-
-        land-* commands in a Git environment only work with simple patches due to svn-apply bugs:
-        https://bugs.webkit.org/show_bug.cgi?id=26299
-        https://bugs.webkit.org/show_bug.cgi?id=26300
-
-        This script follows python style (similar to how for Obj-C we follow AppKit style)
-        http://www.python.org/doc/essays/styleguide.html
-        The Python community has a strong style culture and the WebKit style guide is silent re: Python.
-
-        I've filed a bug to update the WebKit style guide to mention python:
-        https://bugs.webkit.org/show_bug.cgi?id=26524
-
-        * Scripts/bugzilla-tool: Added.
-
-2009-06-22  Steve Falkenburg  <sfalken@apple.com>
-
-        Remove errant line of code mistakenly checked in.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (main):
-
-2009-06-22  Steve Falkenburg  <sfalken@apple.com>
-
-        Pass correct value to setShouldPaintNativeControls.
-        
-        Rubber stamped by Mark Rowe.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (main):
-
-2009-06-22  Steve Falkenburg  <sfalken@apple.com>
-
-        Fix last DumpRenderTree change to correctly set preferences flag without crashing.
-        
-        Reviewed by Mark Rowe.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (main):
-
-2009-06-21  Steve Falkenburg  <sfalken@apple.com>
-
-        Set up global native controls flag before creating the first WebView.
-        
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (main):
-
-2009-06-21  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Set a sensible user agent string for the HTTP requests that Sparkle makes (checking for and downloading updates).
-
-        * WebKitLauncher/WebKitNightlyEnablerSparkle.m:
-        (userAgentStringForSparkle):
-        (initializeSparkle):
-
-2009-06-21  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Add a hook to the WebKit launcher application to allow a link on the nightly build start page to
-        trigger an update via the built-in software update mechanism.
-
-        * WebKitLauncher/WebKitLauncher.xcodeproj/project.pbxproj:
-        * WebKitLauncher/WebKitLauncherURLProtocol.h: Added.
-        * WebKitLauncher/WebKitLauncherURLProtocol.m: Added.
-        (+[WebKitLauncherURLProtocol load]):
-        (+[WebKitLauncherURLProtocol canInitWithRequest:]): Only allow use of the x-webkit-launcher scheme from .webkit.org subdomains.
-        (+[WebKitLauncherURLProtocol canonicalRequestForRequest:]):
-        (-[WebKitLauncherURLProtocol startLoading]):
-        (-[WebKitLauncherURLProtocol stopLoading]):
-        (-[WebKitLauncherURLProtocol handleIsWebKitLauncherAvailableJS]): Return a brief JavaScript snippet that can be used to programatically
-        determine whether the x-webkit-launcher is available and working.
-        (-[WebKitLauncherURLProtocol handleCheckForUpdates]): Trigger a software update on the main thread.
-        (-[WebKitLauncherURLProtocol resourceNotFound]): Fail with a generic "File does not exist" error.
-
-2009-06-20  Jan Michael Alonzo  <jmalonzo@webkit.org>
-
-        Reviewed by Gustavo Noronha and Xan Lopez.
-
-        [Gtk] Implement DRT XSS auditor support
-        https://bugs.webkit.org/show_bug.cgi?id=26571
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setXSSAuditorEnabled):
-
-2009-06-19  Darin Adler  <darin@apple.com>
-
-        * Scripts/do-webcore-rename: More renaming ideas.
-
-2009-06-15  Andre Pedralho  <andre.pedralho@openbossa.org>
-
-        Reviewed by Tor Arne Vestbø.
-
-        Only pass --makeargs along if an argument is given.
-
-        * Scripts/build-webkit:
-
-2009-06-19  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed attempt to fix Windows build.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setXSSAuditorEnabled):
-
-2009-06-18  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Sam Weinig.
-
-        https://bugs.webkit.org/show_bug.cgi?id=26199
-
-        Add support for testing the XSSAuditor.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setXSSAuditorEnabledCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setXSSAuditorEnabled):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setXSSAuditorEnabled):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setXSSAuditorEnabled):
-        (LayoutTestController::setPopupBlockingEnabled):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setXSSAuditorEnabled):
-
-2009-06-18  Darin Adler  <darin@apple.com>
-
-        Rubber stamped by Mark Rowe.
-
-        * DumpRenderTree/mac/DumpRenderTreeWindow.mm:
-        (-[DumpRenderTreeWindow close]): Resolved crashes seen during regression
-        tests. The close method can be called on a window that's already closed
-        so we can't assert here.
-
-2009-06-17  Steve Falkenburg  <sfalken@apple.com>
-
-        Updated for consolidated WebKit COM interfaces.
-        
-        Reviewed by Adam Roben.
-
-        * DumpRenderTree/win/FrameLoadDelegate.cpp:
-        * DumpRenderTree/win/FrameLoadDelegate.h:
-        * DumpRenderTree/win/UIDelegate.cpp:
-        * DumpRenderTree/win/UIDelegate.h:
-        * WinLauncher/WinLauncher.h:
-
-2009-06-16  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=26437
-
-        Make the commit-log-editor match the ambient line endings in commit
-        messages.
-
-        * Scripts/commit-log-editor:
-
-2009-06-16  Xan Lopez  <xlopez@igalia.com>
-
-        Reviewed by Gustavo Noronha.
-
-        Update GtkLauncher to recent API changes in the progress property,
-        which now goes from 0.0 to 1.0.
-
-        * GtkLauncher/main.c:
-
-2009-06-16  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=26000
-
-        Teach prepare-ChangeLog to match the line ends that are already present
-        in ChangeLog files.  This helps folks whose use cygwin perl with CR LF
-        line endings on Windows.
-
-        Also, teach prepare-ChangeLog to normalize backslashes in paths.  This
-        helps folks who use Windows SVN prepare correct ChangeLogs.
-
-        * Scripts/prepare-ChangeLog:
-
-== Rolled over to ChangeLog-2009-06-16 ==
diff --git a/Tools/ChangeLog-2011-02-16 b/Tools/ChangeLog-2011-02-16
deleted file mode 100644
index c736f76..0000000
--- a/Tools/ChangeLog-2011-02-16
+++ /dev/null
@@ -1,32779 +0,0 @@
-2011-02-16  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Assertion failure in DrawingAreaImpl::display when calling WKPageForceRepaint on a page that uses accelerated compositing
-        https://bugs.webkit.org/show_bug.cgi?id=54575
-        <rdar://problem/8979594>
-
-        Add test.
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2/ForceRepaint.cpp: Added.
-        (TestWebKitAPI::didForceRepaint):
-        (TestWebKitAPI::didFinishLoadForFrame):
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/simple-accelerated-compositing.html: Added.
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        * TestWebKitAPI/win/copy-resources.cmd:
-
-2011-02-16  Sergio Villar Senin  <svillar@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [Gtk] Add support for layoutTestController.setWillSendRequestClearHeader
-        https://bugs.webkit.org/show_bug.cgi?id=54537
-
-        Added handler for resource-request-starting emitted in
-        FrameLoader's willSendRequest(). The current implementation
-        removes the headers set in setWillSendRequestClearHeader.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (willSendRequestCallback):
-        (createWebView):
-
-2011-02-16  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Qt build system can't handle removing headers from tree
-        https://bugs.webkit.org/show_bug.cgi?id=54466
-
-        * Scripts/build-webkit: Remove Qt makefiles from productDir before build.
-
-2011-02-16  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Reviewed by Yury Semikhatsky.
-
-        Web Inspector: chromium: DRT is crashing on the tests in inspector-enabled folder.
-        https://bugs.webkit.org/show_bug.cgi?id=54548
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::runFileTest):
-
-2011-02-16  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r77898.
-        http://trac.webkit.org/changeset/77898
-        https://bugs.webkit.org/show_bug.cgi?id=54541
-
-        Leopard Debug hasn't compiled for a long time (Requested by
-        abarth on #webkit).
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-
-2011-02-15  Xianzhu Wang  <wangxianzhu@google.com>
-
-        Reviewed by Kent Tamura.
-
-        Fixed a small bug about --no-timeout option.
-        https://bugs.webkit.org/show_bug.cgi?id=52873
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-
-2011-02-15  Kenneth Russell  <kbr@google.com>
-
-        Reviewed by Darin Fisher.
-
-        Allow controlling minimum DOMTimer interval on a per-page basis
-        https://bugs.webkit.org/show_bug.cgi?id=54312
-
-        Implemented new method setMinimumTimerInterval in
-        LayoutTestController for all ports.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setMinimumTimerIntervalCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setMinimumTimerInterval):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::reset):
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setMinimumTimerInterval):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setMinimumTimerInterval):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::resetSettings):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setMinimumTimerInterval):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setMinimumTimerInterval):
-
-2011-02-15  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [Freetype] Better map CSS font weight to Fontconfig font weight
-        https://bugs.webkit.org/show_bug.cgi?id=54323
-
-        Add the WeightWatcher fonts to the list of sourced fonts when intializing
-        DRT. This will allow us to pass tests that use WeightWatcher.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (initializeFonts): Source the WebkitWeightWatcher fonts.
-
-2011-02-15  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Make new-run-webkit-tests --processes work under Windows' weird
-        multiprocessing model. This requires us to be running a Python
-        file that can be imported as a module, so I've modified the
-        new-run-webkit-tests script to spawn a subprocess runing
-        webkitpy.layout_tests.run_webkit_tests.py. I've also modified
-        the manager_worker_broker tests because you can't pickle a
-        nested class. This requires us to use globals to pass queues
-        back and forth for testing, but the alternative is to pass extra
-        arguments to start_worker() and that feels like a bad tradeoff
-        just for testing.
-
-        https://bugs.webkit.org/show_bug.cgi?id=54431
-
-        * Scripts/new-run-webkit-tests:
-        * Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker_unittest.py:
-
-2011-02-15  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Darin Adler.
-
-        <rdar://problem/9002047> and https://bugs.webkit.org/show_bug.cgi?id=54426
-        WebFrameLoaderClient::shouldGoToHistoryItem needs implementation
-
-        Add dummy implementations to keep our tools building.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-
-2011-02-15  David Levin  <levin@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        check-webkit-style should do some detection for valid uses of WEBKIT_API (in chromium public api).
-        https://bugs.webkit.org/show_bug.cgi?id=52271
-
-        * Scripts/webkitpy/style/checkers/cpp.py: Added the check for WEBKIT_API usage.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Added tests.
-
-2011-02-14  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        Fix minor regression introduced in r78522. For some reason, Python
-        provides a platform.mac_ver() routine on Linux, so we need to
-        check to make sure it's returning something in addition to
-        checking for its existence.
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-
-2011-02-14  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        Clean up the way we handle platform names in
-        new-run-webkit-tests. Previously, if you specified
-        '--platform mac' or '--platform chromium-mac' on the command
-        line, it would use that platform name to determine baseline search
-        paths, etc. This is almost never the right thing to do, because
-        it ignores the existence of version-specific baselines.
-        
-        So, I changed this so that ports that support versions must
-        always use a version, and the version should default to the
-        version of the operating system that the port is being run on
-        (e.g., if you're running on Leopard, then passing '--platform
-        mac' will default to the 'mac-leopard' port). This means that
-        port.name() should always include a version-specific suffix if
-        the port supports versions.
-
-        However, we still support things like '--platform mac' as input
-        so that the user doesn't have to explicitly specify a version,
-        both for convenience and so we don't have to make buildbot
-        configs more complicated than they already are.
-
-        Also, I cleaned up how the baselines were being searched
-        on the chromium-mac port (this is one of the two bugs that
-        prompted this refactoring), and made the logic easier to follow
-        and more consistent across the mac and chromium ports
-        
-        Lastly, I added a port.get_all_names() method that could be used
-        to get the names of all of the ports to search, rather than having
-        to guess (incorrectly) from the list of directories under
-        LayoutTests/platform (this last thing was necessary because the
-        deduplicate_tests unittest broke as the fallback dirs changed).
-
-        https://bugs.webkit.org/show_bug.cgi?id=54248
-
-        * Scripts/webkitpy/layout_tests/deduplicate_tests.py:
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-
-2011-02-14  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        update-webkit hangs in a git-only checkout
-
-        Previously it would hang forever trying to do a 'git svn
-        rebase'. Now, it will default to a 'git pull' if the
-        svn-remote.svn.fetch variable isn't set, and bail out if it
-        doesn't know where to pull from.
-
-        https://bugs.webkit.org/show_bug.cgi?id=54265
-
-        * Scripts/update-webkit:
-        * Scripts/VCSUtils.pm:
-
-2011-02-14  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        This patch modifies NRWT's Worker clas to use the new
-        WorkerMixin class to actually run tests. With this patch, the
-        multiprocess version of NRWT is fully functional and just needs
-        the values for --worker-model and --child-processes to be corrected
-        in the port/* classes to start using the new code by default.
-
-        https://bugs.webkit.org/show_bug.cgi?id=54082
-
-        * Scripts/webkitpy/layout_tests/layout_package/worker.py:
-
-2011-02-14  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        This patch shuffles code out of dump_render_tree_thread and
-        single_test_runner and into a new worker_mixin class that will
-        be shared by both TestShellThread and Worker. This change
-        restores single_test_runner to its state as of r77606 - it is
-        stateless again. It also prunes TestShellThread to pretty much
-        just the logic used for the original shared-memory access.
-
-        https://bugs.webkit.org/show_bug.cgi?id=54079
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
-        * Scripts/webkitpy/layout_tests/layout_package/worker_mixin.py: Added.
-
-2011-02-14  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        This patch updates NRWT to add per-worker and per-shard test stats
-        into TestRunner2, bringing it to parity with TestRunner.
-
-        https://bugs.webkit.org/show_bug.cgi?id=54074
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner2.py:
-
-2011-02-14  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        nrwt multiprocessing: add code to handle interrupts and wedged
-        threads.
-        https://bugs.webkit.org/show_bug.cgi?id=54072
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker.py:
-        Adds the cancel(), is_alive(), join(), and log_wedged_worker()
-        methods to the WorkerConnection class
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner2.py:
-        * Scripts/webkitpy/layout_tests/layout_package/worker.py:
-        Adds the cancel() method to the Worker class
-
-2011-02-14  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        update the NRWT multiprocessing code to spawn multiple workers
-        instead of just using one.
-
-        https://bugs.webkit.org/show_bug.cgi?id=54071
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner2.py:
-
-2011-02-12  Chang Shu  <cshu@webkit.org>
-
-        Unreviewed.
-
-        Update my own email addresses and IRC nickname.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-02-11  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        This patch adds to NRWT most of the support needed to run the new
-        message-based workers in separate threads or processes. The code
-        isn't fully complete yet because we don't support cancel() or
-        is_alive().
-
-        https://bugs.webkit.org/show_bug.cgi?id=54070
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker.py:
-        * Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner2.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-02-11  Sailesh Agrawal  <sail@chromium.org>
-
-        Reviewed by Kenneth Russell.
-
-        plugins/invalidate_rect.html fails on chromium-mac
-        https://bugs.webkit.org/show_bug.cgi?id=54051
-
-        This change fixes the invalidate_rect.html test failure on Windows.
-
-        There were two problems. First, the test specified that the plugin was window less by doing <embed ... windowedPlugin="false"></embed>. The windowedPlugin parameter was never being read by the plugin. Fix was to simply set the NPPVpluginWindowBool variable based on the parameter.
-
-        The second problem was that the plugin never handled paint events on Windows. Fix was to simply copy the Mac code to handle paint events.
-
-        This change also updates the build path in chromium_win.py to use the new Source directory.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:
-        (invalidateRect):
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_New):
-        (handleEventWin):
-        (NPP_HandleEvent):
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-
-2011-02-11  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Increase the timeout of Qt API tests to 120 seconds.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-02-10  Zhenyao Mo  <zmo@google.com>
-
-        Unreviewed, build fix.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-
-2011-02-10  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        This patch adds the bulk of the remaining functionality for
-        the NRWT message-passing implementation. The patch adds a new
-        Worker class that will eventually replace the TestShellThread
-        class in dump_render_tree_thread.py, and implements enough of
-        TestRunner2 and the inline version of the manager_worker_broker
-        to actually be able to send a full set of messages back and
-        forth. The Worker stubs do not actually run tests, and there's
-        lots of error handling and stats needed, but this is the core
-        logic.
-
-        https://bugs.webkit.org/show_bug.cgi?id=54068
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker.py:
-        * Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner2.py:
-        * Scripts/webkitpy/layout_tests/layout_package/worker.py: Added.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-02-10  Zhenyao Mo  <zmo@google.com>
-
-        Unreviewed, build fix.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-
-2011-02-10  Zhenyao Mo  <zmo@google.com>
-
-        Unreviewed, build fix.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-
-2011-02-10  Zhenyao Mo  <zmo@google.com>
-
-        Unreviewed, attempt to fix crashing plugin tests.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-
-2011-02-10  Zhenyao Mo  <zmo@google.com>
-
-        Unreviewed, build fix.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-
-2011-02-10  Sam Weinig  <sam@webkit.org>
-
-        Try and fix some crashing tests on the chromium build bot.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-
-2011-02-10  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Log an error if a plug-in test can't be found
-        https://bugs.webkit.org/show_bug.cgi?id=54252
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-        (PluginTest::create):
-        Return null if the test wasn't found.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_New):
-        Report an error if PluginTest::create returns null.
-
-2011-02-10  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt] Return menu items from eventSender.contextMenu()
-        https://bugs.webkit.org/show_bug.cgi?id=53039
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::contextClick):
-        * DumpRenderTree/qt/EventSenderQt.h:
-
-2011-02-10  Adam Roben  <aroben@apple.com>
-
-        Test showing and hiding the find indicator on Windows
-
-        Test for <http://webkit.org/b/54213> <rdar://problem/8983261> REGRESSION (r78198): Crash in
-        FindIndicator::contentImage when scrolling page
-
-        Reviewed by Steve Falkenburg.
-
-        * TestWebKitAPI/Tests/WebKit2/win/HideFindIndicator.cpp: Added.
-        (TestWebKitAPI::didFinishLoadForFrame): Record that the load finished.
-        (TestWebKitAPI::findIndicatorCallback): Record that the callback was called, and save the
-        bitmap.
-        (TestWebKitAPI::initialize): Hook up our callbacks.
-        (TestWebKitAPI::TEST): Test showing then hiding the find indicator to see if we crash.
-
-        * TestWebKitAPI/PlatformWebView.h:
-        * TestWebKitAPI/mac/PlatformWebViewMac.mm:
-        (TestWebKitAPI::PlatformWebView::page):
-        * TestWebKitAPI/win/PlatformWebViewWin.cpp:
-        (TestWebKitAPI::PlatformWebView::page):
-        Made page a const member function.
-
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj: Added the new test.
-
-2011-02-10  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Log signals from AtkDocument interface also in AccessibilityController
-        https://bugs.webkit.org/show_bug.cgi?id=54198
-
-        Trace AtkDocument's signals emission through AccessibilityController.
-
-        Also, taken the code related to adding and removing global
-        listeners for ATK signals out to a separate file, for the sake of
-        clarity and to ease future additions.
-
-        * DumpRenderTree/gtk/AccessibilityCallbacks.h: Added.
-        * DumpRenderTree/gtk/AccessibilityCallbacks.cpp: Added
-        (printAccessibilityEvent): Print information about an event.
-        (axObjectEventListener): Global listener for AtkObject's signals.
-        (axDocumentEventListener): Global listener for AtkDocument's signals.
-        (connectAccessibilityCallbacks): Connect all global listeners.
-        (disconnectAccessibilityCallbacks): Disconnect all global listeners.
-
-        * DumpRenderTree/gtk/AccessibilityControllerGtk.cpp:
-        (AccessibilityController::setLogAccessibilityEvents): Call to
-        connectAccessibilityCallbacks and disconnectAccessibilityCallbacks.
-
-        * GNUmakefile.am: Added new files.
-
-2011-02-09  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        [GTK] Default error page is interfering with tests which require failed loads
-        https://bugs.webkit.org/show_bug.cgi?id=54157
-
-        Disable the default error page during DRT runs. This prevents unexpected loads
-        from interfering with tests that have planned failed loads.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webViewLoadError): Added, disable default handler.
-        (createWebView): Connect the new load-error handler.
-
-2011-02-10  Zoltan Horvath  <zoltan@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Add UrlLoader and command line argument handling to MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=54192
- 
-        Copy and modify files from QtTestBrowser's implementation.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::newWindow):
-        * MiniBrowser/qt/BrowserWindow.h:
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * MiniBrowser/qt/MiniBrowserApplication.cpp: Copied from QtTestBrowser/launcherwindow.cpp
-        (MiniBrowserApplication::MiniBrowserApplication):
-        (MiniBrowserApplication::handleUserOptions):
-        * MiniBrowser/qt/MiniBrowserApplication.h: Copied from QtTestBrowser/launcherwindow.h
-        (WindowOptions::WindowOptions):
-        (MiniBrowserApplication::urls):
-        (MiniBrowserApplication::isRobotized):
-        (MiniBrowserApplication::robotTimeout):
-        (MiniBrowserApplication::robotExtraTime):
-        * MiniBrowser/qt/UrlLoader.cpp: Copied from QtTestBrowser/urlloader.cpp
-        (UrlLoader::UrlLoader):
-        (UrlLoader::loadNext):
-        (UrlLoader::checkIfFinished):
-        (UrlLoader::frameLoadStarted):
-        (UrlLoader::frameLoadFinished):
-        (UrlLoader::loadUrlList):
-        (UrlLoader::getUrl):
-        * MiniBrowser/qt/UrlLoader.h: Copied from QtTestBrowser/urlloader.h 
-        * MiniBrowser/qt/main.cpp:
-        (main):
-        * MiniBrowser/qt/utils.cpp: Copied from QtTestBrowser/utils.cpp 
-        (takeOptionValue):
-        (formatKeys):
-        (enumToKeys):
-        (appQuit):
-        (urlFromUserInput):
-        * MiniBrowser/qt/utils.h: Copied from QtTestBrowser/utils.h
-
-2011-02-10  Zoltan Horvath  <zoltan@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        check-webkit-style: Add -build/include exemption for Tools/MiniBrowser/qt
-        https://bugs.webkit.org/show_bug.cgi?id=54200
-
-        * Scripts/webkitpy/style/checker.py:
-        * Scripts/webkitpy/style/checker_unittest.py:
-
-2011-02-10  Peter Varga  <pvarga@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        Remove PCRE source from trunk
-        https://bugs.webkit.org/show_bug.cgi?id=54188
-
-        * wx/build/settings.py:
-
-2011-02-10  David Levin  <levin@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        check-webkit-style should be able to figure out function modifiers and return type.
-        https://bugs.webkit.org/show_bug.cgi?id=54124
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (_rfind_in_lines): A way to search backwards in lines.
-        (_FunctionState.modifiers_and_return_type):
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Added tests for the new functionality.
-
-2011-02-09  Adam Roben  <aroben@apple.com>
-
-        Test that WM_PRINT doesn't trigger an assertion
-
-        Test for <http://webkit.org/b/54145> <rdar://problem/8979559> WM_PRINT doesn't work with new
-        drawing area (assertion failure in DrawingAreaProxyImpl in Debug builds)
-
-        Reviewed by Darin Adler.
-
-        * TestWebKitAPI/Tests/WebKit2/win/WMPrint.cpp: Added.
-        (TestWebKitAPI::TEST): Send a WM_PRINT message to a WKView.
-
-2011-02-09  Adam Roben  <aroben@apple.com>
-
-        Test that having a WKView paint after being resized while hidden doesn't cause a crash
-
-        Test for <http://webkit.org/b/54142> <rdar://problem/8979365> Crash in
-        DrawingAreaProxyImpl::paint when WKView paints after being resized while hidden
-
-        Reviewed by Darin Adler.
-
-        * TestWebKitAPI/Tests/WebKit2/win/ResizeViewWhileHidden.cpp:
-        (TestWebKitAPI::TEST): Force the WKView to paint after resizing it while hidden.
-
-2011-02-09  Adam Roben  <aroben@apple.com>
-
-        Add a test that resizes a WKView while it's hidden
-
-        Test for <http://webkit.org/b/54141> <rdar://problem/8979195> WKView draws at wrong size,
-        performs badly if is resized while hidden (assertion fails in
-        BackingStore::incorporateUpdate in Debug builds)
-
-        Reviewed by Darin Adler.
-
-        * TestWebKitAPI/Tests/WebKit2/win/ResizeViewWhileHidden.cpp: Added.
-        (TestWebKitAPI::didFinishLoadForFrame): Record that the load finished.
-        (TestWebKitAPI::setPageLoaderClient): Hook up our didFinishLoadForFrame callback.
-        (TestWebKitAPI::flushMessages): Load a URL and wait for the load to complete. This ensures
-        that all pending messages have been handled by the UI and web process.
-        (TestWebKitAPI::timerCallback): Kill the timer and record that it fired.
-        (TestWebKitAPI::runForDuration): Set a timer and run the run loop until it fires.
-        (TestWebKitAPI::waitForBackingStoreUpdate): Wait for half a second to give the web process a
-        chance to display, then flush all pending messages.
-        (TestWebKitAPI::TEST): Resize the WKView while it's hidden, then show it again and wait for
-        the backing store to update. This triggers the assertion from bug 54141.
-
-        * TestWebKitAPI/win/PlatformWebViewWin.cpp:
-        (TestWebKitAPI::PlatformWebView::resizeTo): Implemented.
-
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj: Added new test.
-
-2011-02-10  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, GTK build fix after roll out of r78157...
-
-        * GNUmakefile.am:
-
-2011-02-10  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, rolling out r78157.
-        http://trac.webkit.org/changeset/78157
-        https://bugs.webkit.org/show_bug.cgi?id=54150
-
-        Fails on a bunch of bots
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/TestNetscapePlugIn/Tests/EvaluateJSDestroyingPluginFromDestroyStream.cpp: Removed.
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-
-2011-02-10  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] Reset GTK' DRT's AccessibilityController to consistent value before every test
-        https://bugs.webkit.org/show_bug.cgi?id=54185
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-
-2011-02-10  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed GTK build fix.
-
-        Adding
-        Tools/DumpRenderTree/TestNetscapePlugIn/Tests/EvaluateJSDestroyingPluginFromDestroyStream.cpp
-        in the build, fixing the
-        plugins/npruntime/evaluate-js-destroying-plugin-from-destroy-stream.html
-        test.
-
-        * GNUmakefile.am:
-
-2011-02-10  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        Reviewed by Chris Fleizach.
-
-        [GTK] Add support in DRT to log "accessibility events"
-        https://bugs.webkit.org/show_bug.cgi?id=54116
-
-        Added a way to log accessibility related events, in a
-        platform-dependant way.
-
-        Add new function to AccessibilityController.
-
-        * DumpRenderTree/AccessibilityController.h:
-        * DumpRenderTree/AccessibilityController.cpp:
-        (logAccessibilityEventsCallback): New callback.
-        (AccessibilityController::getJSClass): Added new function.
-        (AccessibilityController::resetToConsistentState): Initialized
-        calling setLogAccessibilityEvents(false).
-
-        Provided implementation for the GTK port.
-
-        * DumpRenderTree/gtk/AccessibilityControllerGtk.cpp:
-        (accessibility_event_listener): Common listener for logging
-        information about all the signals emitted by any AtkObject.
-        (AccessibilityController::setLogAccessibilityEvents): Add or
-        remove listeners for signals, as specified by the parameter.
-
-        Provide dummy implementations for mac and win ports.
-
-        * DumpRenderTree/mac/AccessibilityControllerMac.mm:
-        (AccessibilityController::setLogAccessibilityEvents):
-        * DumpRenderTree/win/AccessibilityControllerWin.cpp:
-        (AccessibilityController::setLogAccessibilityEvents):
-
-2011-02-09  Hayato Ito  <hayato@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        [NRWT] Remove encoding parameters where we can assume data can be
-        written in binary mode.
-
-        https://bugs.webkit.org/show_bug.cgi?id=54066
-
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-
-2011-02-09  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        nrwt multiprocessing: minor cleanup prior to implementing the new worker
-
-        This patch renames AbstractManager to ManagerConnection and
-        changes some argument names to be more consistent between
-        manager_worker_broker and message_broker. It also fixes a couple
-        of typos in message_broker. These changes will be tested by code
-        introduced in the next patch.
-       
-        https://bugs.webkit.org/show_bug.cgi?id=54067
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker.py:
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker2.py:
-
-2011-02-09  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Repro crash with Sony Google TV ad at Gizmodo
-        https://bugs.webkit.org/show_bug.cgi?id=54150
-        <rdar://problem/8782346>
-
-        Add a new plug-in test that runs JavaScript that destroys the plug-in from within its NPN_DestroyStream callback.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/TestNetscapePlugIn/Tests/EvaluateJSDestroyingPluginFromDestroyStream.cpp: Added.
-        (EvaluateJSDestroyingPluginFromDestroyStream::EvaluateJSDestroyingPluginFromDestroyStream):
-        (EvaluateJSDestroyingPluginFromDestroyStream::NPP_Destroy):
-        (EvaluateJSDestroyingPluginFromDestroyStream::NPP_DestroyStream):
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-
-2011-02-09  David Levin  <levin@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        check-webkit-style: The error message about NULL should be more clear for comments.
-        https://bugs.webkit.org/show_bug.cgi?id=53786
-
-        * Scripts/webkitpy/style/checkers/cpp.py: Clarified the error message.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Fixed the corresponding test.
-
-2011-02-09  Nebojsa Ciric  <cira@chromium.org>
-
-        Reviewed by Darin Fisher.
-
-        Implements Locale object of JavaScript internationalization API proposal, as an
-        v8 extension. Extension code is hosted in v8 project (src/extensions/experimental/i18n-extension.{cc,h})
-        and in this patch we just provide flags, tests and build rules for chromium port.
-        https://bugs.webkit.org/show_bug.cgi?id=49414
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-
-2011-02-09  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Remove UiTools dependency from MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=54096
-
-        * MiniBrowser/qt/MiniBrowser.pro:
-
-2011-02-08  Hayato Ito  <hayato@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        [NRWT] Pull up rebaseline code from compare_output() function defined
-        in text_diff.py and image_diff.py into a SingleTestRunner.
-
-        This patch is a first step for eliminating test_type/* classes.
-
-        https://bugs.webkit.org/show_bug.cgi?id=53071
-
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py:
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py:
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-
-2011-02-07  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        stop generating results.json files
-        https://bugs.webkit.org/show_bug.cgi?id=53977
-
-        We've only used incremental_results.json for a while now
-        and there are plans to start generating a results.json file that matches
-        the format of unexpected_results.json.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-02-08  Sailesh Agrawal  <sail@chromium.org>
-
-        Reviewed by Kenneth Russell.
-
-        Invalidate rect doesn't work for windowless plugins on Chromium
-        https://bugs.webkit.org/show_bug.cgi?id=53117
-
-        Added two new utility methods.
-        - layoutTestController.displayInvalidatedRegion() does a paint of any area that has been invalidated. This is different from layoutTestController.display() which explicitly invalidates the entire page then paints.
-        - plugin.invalidateRect(left, top, right, bottom) - invalidates the given rect
-        This is used to test that invalidating a rect correctly causes a repaint of the plugin.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (displayInvalidatedRegionCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:
-        (invalidateRect):
-        (pluginInvoke):
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::displayInvalidatedRegion):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-
-2011-02-08  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: move the logic that starts and stops the
-        servers from dump_render_tree_thread into single_test_runner
-        so that we can reuse it in the new multiprocessing worker class
-        as well.
-
-        https://bugs.webkit.org/show_bug.cgi?id=53840
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
- 
-2011-02-08  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        new-run-webkit-tests: split out thread stack logging code into a sharable module
-
-        This patch splits out the code used to find and log thread
-        stacks from NRWT-specific packages to something generic and
-        shareable by other python modules. It will be shared in the near
-        future by the manager_worker_broker module, for example.
-
-        https://bugs.webkit.org/show_bug.cgi?id=53656
-
-        * Scripts/webkitpy/common/system/stack_utils.py: Added.
-        * Scripts/webkitpy/common/system/stack_utils_unittest.py: Added.
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker.py:
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker_unittest.py:
-
-2011-02-08  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: move a bunch of testing logic out of
-        dump_render_tree_thread and into single_test_runner so that we
-        will be able to reuse it in the new multiprocessing worker class as well.
-
-        https://bugs.webkit.org/show_bug.cgi?id=53838
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
-
-        
-2011-02-08  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: remove no longer needed WatchableThread
-        class.
-
-        https://bugs.webkit.org/show_bug.cgi?id=53839
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-
-2011-02-08  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: add stubs for the Manager objects that
-        will abstract the concurrency implementation (inline / threads /
-        processes). These classes do nothing yet and are not wired up to
-        anything.
-
-        https://bugs.webkit.org/show_bug.cgi?id=53477
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker.py: Added.
-        * Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker_unittest.py: Added.
-
-2011-02-08  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: add simplified message broker for new-style
-        messaging. This change adds a very simple message broker that
-        will be used to shuttle messages between the TestRunner2 manager
-        thread and the Worker threads. For now the class is not used by
-        anything, but the eventual usage can be seen in the patches
-        attached to bug 49566.
-
-        https://bugs.webkit.org/show_bug.cgi?id=53158
-
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker2.py: Added.
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker2_unittest.py: Added.
-
-2011-02-08  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        chromium-win builder shouldn't run python or perl tests
-        https://bugs.webkit.org/show_bug.cgi?id=54032
-
-        These tests don't pass on this builder because the builder isn't
-        running in cygwin.  There isn't really any point in running them and
-        making the bot red forever.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-02-08  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Darin Adler.
-
-        <rdar://problem/8972913> and https://bugs.webkit.org/show_bug.cgi?id=54036
-        didChangeBackForwardList should include some context about what changed
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (didChangeBackForwardList):
-
-2011-02-08  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        WK2: Add ability to pass context to policy delegate methods
-        https://bugs.webkit.org/show_bug.cgi?id=54031
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (decidePolicyForNavigationAction):
-        (decidePolicyForNewWindowAction):
-        (decidePolicyForMIMEType):
-        * TestWebKitAPI/Tests/WebKit2/PageLoadBasic.cpp:
-        (TestWebKitAPI::decidePolicyForNavigationAction):
-        (TestWebKitAPI::decidePolicyForNewWindowAction):
-        (TestWebKitAPI::decidePolicyForMIMEType):
-        Update policy client for new API.
-
-2011-02-08  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] DRT needs an implementation of LayoutTestController.setIconDatabaseEnabled
-        https://bugs.webkit.org/show_bug.cgi?id=54033
-
-        Add an implementation of LayoutTestController.setIconDatabaseEnabled that just
-        call DumpRenderTreeSupportGtk. Turn off the icon database between tests.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues): Turn off the icon database.
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setIconDatabaseEnabled): Call the appropriate DumpRenderTreeSupportGtk
-        method.
-
-2011-02-08  Kundu Suchismita  <suchi.kundu@nokia.com>
-
-        Reviewed by Laszlo Gombos.
-
-        Local Storage settings can be enable/disable from "Develop" menu
-        https://bugs.webkit.org/show_bug.cgi?id=52296
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::createChrome):
-        (LauncherWindow::toggleLocalStorage):
-        (LauncherWindow::toggleOfflineStorageDatabase):
-        (LauncherWindow::toggleOfflineWebApplicationCache):
-        (LauncherWindow::setOfflineStorageDefaultQuota):
-        * QtTestBrowser/launcherwindow.h:
-        (WindowOptions::WindowOptions):
-        * QtTestBrowser/main.cpp:
-        (LauncherApplication::handleUserOptions):
-
-2011-02-08  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Eric Seidel.
-
-        [GTK] EventSender.keyDown does not support non-array modifier arguments
-        https://bugs.webkit.org/show_bug.cgi?id=53962
-
-        Support handling either an array or a string for the modifier argument
-        to EventSender.keyDown.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (gdkModifierFromJSValue): Added this helper which factors out the
-        string comparison bits.
-        (gdkModifersFromJSValue): Test up front whether the value is a string,
-        to handle it specially.
-
-2011-02-08  Benjamin Poulain  <ikipou@gmail.com>
-
-        Reviewed by Csaba Osztrogonác.
-
-        openDatabaseSync() stop responding after too many call
-        https://bugs.webkit.org/show_bug.cgi?id=53945
-
-        Reset the database quota to a known state between each test.
-
-        Define a quota for the known origins at each test run and delete
-        all the databases.
-        This way, the database related test do not depend on previous
-        allocations.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        (WebCore::DumpRenderTree::dumpDatabaseQuota):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-
-2011-02-08  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] DRT's TextInputController is unimplemented on GTK
-        https://bugs.webkit.org/show_bug.cgi?id=52997
-
-        Initial implementation of TextInputController for GTK port.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webViewWindowObjectCleared):
-        * DumpRenderTree/gtk/TextInputController.cpp: Added.
-        (setMarkedTextCallback):
-        (insertTextCallback):
-        (unmarkTextCallback):
-        (firstRectForCharacterRangeCallback):
-        (selectedRangeCallback):
-        (getClass):
-        (makeTextInputController):
-        * DumpRenderTree/gtk/TextInputController.h: Added.
-        * GNUmakefile.am:
-
-2011-02-07  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        clean up python imports
-        https://bugs.webkit.org/show_bug.cgi?id=53966
-
-        Convert "import A.B.C.D as D" to "from A.B.C import D" and
-        make some imports absolute as required by PEP-8
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/net/irc/ircbot.py:
-        * Scripts/webkitpy/common/system/logutils.py:
-        * Scripts/webkitpy/common/system/logutils_unittest.py:
-        * Scripts/webkitpy/layout_tests/deduplicate_tests.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py: Remove some unused imports
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/update_webgl_conformance_tests.py:
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        * Scripts/webkitpy/tool/bot/sheriffircbot.py:
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/prettydiff.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-        * Scripts/webkitpy/tool/commands/roll.py:
-        * Scripts/webkitpy/tool/commands/stepsequence.py:
-        * Scripts/webkitpy/tool/commands/upload.py:
-        * Scripts/webkitpy/tool/main.py:
-
-2011-02-07  James Robinson  <jamesr@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Teach do-webcore-rename about the WebKit move to Source/
-        https://bugs.webkit.org/show_bug.cgi?id=53967
-
-        * Scripts/do-webcore-rename:
-
-2011-02-07  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        Add resource load client for injected bundle and move willSendRequest there
-        https://bugs.webkit.org/show_bug.cgi?id=53972
-
-        * MiniBrowser/mac/WebBundle/WebBundleMain.m:
-        (didCreatePage):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        (WTR::InjectedBundlePage::didInitiateLoadForResource):
-        (WTR::InjectedBundlePage::didReceiveResponseForResource):
-        (WTR::InjectedBundlePage::didReceiveContentLengthForResource):
-        (WTR::InjectedBundlePage::didFinishLoadForResource):
-        (WTR::InjectedBundlePage::didFailLoadForResource):
-        (WTR::InjectedBundlePage::willSendRequestForFrame):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-
-2011-02-07  Adam Barth  <abarth@webkit.org>
-
-        Add Leopard Debug back to the core builders.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-
-2011-02-07  Adam Klein  <adamk@chromium.org>
-
-        Reviewed by Jian Li.
-
-        [chromium] Remove deprecated method WebNotification::dir
-        https://bugs.webkit.org/show_bug.cgi?id=53735
-
-        * DumpRenderTree/chromium/NotificationPresenter.cpp:
-        (NotificationPresenter::show):
-
-2011-02-07  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Remove Leopard Debug as a core builder
-        https://bugs.webkit.org/show_bug.cgi?id=53971
-
-        The Leopard Debug builder has been failing to compile for several days.
-        My understanding is that folks are working on fixing the build, but for
-        the time being we should probably remove it from the list of core
-        builders so that the core waterfall can be green.  We can certainly add
-        it back once the build is fixed.
-
-        Also, I've removed the Tiger builders because those no longer appear to
-        be attached to the buildbot master.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-
-2011-02-01  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Adam Roben.
-
-        include svn revisions in git diffs for the code review tool to use
-        https://bugs.webkit.org/show_bug.cgi?id=53569
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-
-2011-02-03  MORITA Hajime  <morrita@google.com>
-
-        Reviewed by Darin Fisher.
-
-        [Chromium] Should implement EditorClientImpl::requestCheckingOfString()
-        https://bugs.webkit.org/show_bug.cgi?id=51013
-
-        Gave DRT implementation for requestTextCheck().
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::setAsynchronousSpellCheckingEnabled): Implemented.
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (invokeFinishLastTextCheck): Added.
-        (WebViewHost::requestTextCheck): Added.
-        (WebViewHost::finishLastTextCheck): Added.
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2011-02-07  Joone Hur  <joone.hur@collabora.co.uk>
-
-        Reviewed by Martin Robinson.
-
-        [Gtk] Implement layoutTestController.findString
-        https://bugs.webkit.org/show_bug.cgi?id=50237
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::findString):
-
-2011-02-07  Chang Shu  <chang.shu@nokia.com>
-
-        Reviewed by Darin Adler.
-
-        We should disable spatial navigation explicitly during the initialization
-        of DumpRenderTree.
-        https://bugs.webkit.org/show_bug.cgi?id=53928
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-
-2011-02-07  Maciej Stachowiak  <mjs@apple.com>
-
-        Not reviewed.
-
-        Fix WebKitTestRunner build on the SL bot.
-
-        * WebKitTestRunner/Configurations/Base.xcconfig: Look for the JSC copy
-        of ICU headers.
-
-2011-02-07  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed.
-
-        [Qt][WK2] Buildfix after r77794.
-
-       WebKitTestRunner does not block remote resources or complain about them
-       https://bugs.webkit.org/show_bug.cgi?id=42139
-       <rdar://problem/8183942>
-
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro: Add missing includepaths.
-
-2011-02-07  Maciej Stachowiak  <mjs@apple.com>
-
-        Not reviewed.
-
-        More bot appeasement.
-
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-
-2011-02-07  Maciej Stachowiak  <mjs@apple.com>
-
-        Not reviewed.
-
-        Remove accidental references to directories on my laptop.
-
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-
-2011-02-07  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Antti Koivisto.
-
-        WebKitTestRunner does not block remote resources or complain about them
-        https://bugs.webkit.org/show_bug.cgi?id=42139
-        <rdar://problem/8183942>
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::willSendRequestForFrame): Implement the required
-        checks (using KURL, to avoid need to invent a whole URL API).
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj: Link WebCore
-        directly to get at KURL symbols.
-
-2011-02-06  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Daniel Bates.
-
-        Add WebKit2 bot to list of expected builders in Python regression test results.
-        https://bugs.webkit.org/show_bug.cgi?id=53905
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-
-2011-02-06  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Ryosuke Niwa.
-
-        Update test expectations for new core builder
-        https://bugs.webkit.org/show_bug.cgi?id=53904
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-
-2011-02-06  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by David Levin.
-
-        Add WebKit2 test bot to core builders
-        https://bugs.webkit.org/show_bug.cgi?id=53901
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-
-2011-02-06  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Another unreviewed Chromium build fix.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::pathToLocalResource):
-
-2011-02-06  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Unreviewed Chromium build fix.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::pathToLocalResource):
-
-2011-02-06  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        OwnArraryPtr.h uses deleteOwnedPtr but doesn’t include OwnPtrCommon.h
-        https://bugs.webkit.org/show_bug.cgi?id=52867
-
-        * DumpRenderTree/chromium/ImageDiff.cpp:
-        (Image::craeteFromStdin): Call adoptArrayPtr.
-
-2011-02-06  James Kozianski  <koz@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Add classes for representing test outputs.
-        https://bugs.webkit.org/show_bug.cgi?id=52136
-
-        These classes will make it easier to write scripts that deal with test
-        outputs such as rebaselining and deduping scripts. The intent is that
-        eventually we will be have buildbot return TestOutputs for a
-        particular build which can be compared with TestOutputs derived from a
-        local LayoutTests directory.
-
-        * Scripts/webkitpy/common/net/testoutput.py: Added.
-        * Scripts/webkitpy/common/net/testoutput_unittest.py: Added.
-        * Scripts/webkitpy/common/net/testoutputset.py: Added.
-        * Scripts/webkitpy/common/net/testoutputset_unittest.py: Added.
-        * Scripts/webkitpy/common/system/zip_mock.py: Added.
-
-2011-02-06  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Clear page's groupName even when not in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=53874
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::windowCloseRequested):
-
-2011-02-06  Patrick Gansterer  <paroga@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [CMake] Add dependencies for Visual Studio projects
-        https://bugs.webkit.org/show_bug.cgi?id=53773
-
-        Add a WebKit dependecy to WinCELauncher, so CMake can 
-        generate the correct build order for the solution.
-
-        * CMakeListsWinCE.txt:
-
-2011-02-06  Andreas Kling  <kling@webkit.org>
-
-        Reviewed by Antonio Gomes.
-
-        [Qt] MiniBrowser: Clean up handling of titleChanged() signal
-        https://bugs.webkit.org/show_bug.cgi?id=53869
-
-        * MiniBrowser/qt/BrowserView.cpp:
-        (BrowserView::BrowserView): Remove unnecessary titleChanged() handling.
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow): Connect titleChanged() directly to setWindowTitle().
-        * MiniBrowser/qt/BrowserWindow.h:
-
-2011-02-06  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        WebKitTestRunner needs layoutTestController.setWillSendRequestReturnsNull
-        https://bugs.webkit.org/show_bug.cgi?id=42690
-        <rdar://problem/8213851>
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::willSendRequestForFrame):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::LayoutTestController):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (WTR::LayoutTestController::willSendRequestReturnsNull):
-        (WTR::LayoutTestController::setWillSendRequestReturnsNull):
-
-2011-02-05  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r77720.
-        http://trac.webkit.org/changeset/77720
-        https://bugs.webkit.org/show_bug.cgi?id=53854
-
-        "Broke nrwt on Chromium win." (Requested by dglazkov|away on
-        #webkit).
-
-        * Scripts/webkitpy/common/system/executive.py:
-
-2011-02-05  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r77725.
-        http://trac.webkit.org/changeset/77725
-        https://bugs.webkit.org/show_bug.cgi?id=53844
-
-        It broke Qt minimal build (Requested by Ossy_ on #webkit).
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::createChrome):
-        * QtTestBrowser/launcherwindow.h:
-        (WindowOptions::WindowOptions):
-        * QtTestBrowser/main.cpp:
-        (LauncherApplication::handleUserOptions):
-
-2011-02-04  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Adam Barth.
-
-        [GTK] plugins/plugin-document-back-forward.html fails
-        https://bugs.webkit.org/show_bug.cgi?id=53833
-
-        Add the new "alert on load" functionality for the Unix version of the
-        test plugin. This functionality was originally introduced in r77706.
-
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_new_instance): Add new plugin fuctionality.
-
-2011-02-04  Kundu Suchismita  <suchi.kundu@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        Local Storage settings can be enable/disable from "Develop" menu
-        https://bugs.webkit.org/show_bug.cgi?id=52296
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::createChrome):
-        (LauncherWindow::toggleLocalStorage):
-        (LauncherWindow::toggleOfflineStorageDatabase):
-        (LauncherWindow::toggleOfflineWebApplicationCache):
-        (LauncherWindow::setOfflineStorageDefaultQuota):
-        * QtTestBrowser/launcherwindow.h:
-        (WindowOptions::WindowOptions):
-        * QtTestBrowser/main.cpp:
-        (LauncherApplication::handleUserOptions):
-
-2011-02-04  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        get test-webkitpy running on win32 python
-        https://bugs.webkit.org/show_bug.cgi?id=53822
-
-        The test harness crashes with a WindowsError because it can't find
-        'svn' when using subprocess.Popen.  This gets us past the error
-        so we can see the failing tests on the Chromium Win Release Tests
-        bot.
-
-        * Scripts/webkitpy/common/system/executive.py:
-
-2011-02-04  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        [GTK] fast/events/pagehide-timeout.html fails
-        https://bugs.webkit.org/show_bug.cgi?id=53771
-
-        Add knowledge of the document browser cache model the DRT. When resetting
-        WebKit settings to consistent values between tests, default to the document
-        browser cache model.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues): Reset the cache model to the document browser
-        cache model between tests.
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setCacheModel): An int value of 2 here corresponds to the
-        document browser cache model.
-
-2011-02-04  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        PluginDocuments don't create widgets for plugins on back/forward
-        https://bugs.webkit.org/show_bug.cgi?id=53474
-
-        Teach the test plugin how to call alert on load.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_New):
-
-2011-02-04  Adam Roben  <aroben@apple.com>
-
-        Add a test case for encode/decode of FormData/FormDataElement
-
-        If the fix made in r77401 is broken, this new test will crash.
-
-        Fixes <http://webkit.org/b/53616> <rdar://problem/8949883>.
-
-        Reviewed by Sam Weinig.
-
-        * TestWebKitAPI/Test.h: Moved the bulk of TEST_ASSERT into a new _TEST_ASSERT_HELPER macro.
-        Added a new TEST_ASSERT_RETURN macro that can be used in functions with a return value.
-
-        * TestWebKitAPI/Tests/WebKit2/RestoreSessionStateContainingFormData.cpp: Added.
-        (TestWebKitAPI::didFinishLoadForFrame): Record that the load is finished.
-        (TestWebKitAPI::setPageLoaderClient): Hook up the loader client.
-        (TestWebKitAPI::createSessionStateContainingFormData): Load simple-form.html, submit the
-        form, an return the session state data.
-        (TestWebKitAPI::TEST): Create some session state that contains form data from one WKPage,
-        and restore it into another WKPage.
-
-        * TestWebKitAPI/Tests/WebKit2/simple-form.html: Added.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        * TestWebKitAPI/win/copy-resources.cmd:
-        Added new files.
-
-2011-02-04  Adam Roben  <aroben@apple.com>
-
-        Move code to run JavaScript tests into its own files
-
-        This will allow other tests to use this mechanism.
-
-        Fixes <http://webkit.org/b/53806> SpacebarScrolling should share its JavaScript-fu with the
-        world
-
-        Reviewed by Sam Weinig.
-
-        * TestWebKitAPI/JavaScriptTest.cpp: Added.
-        * TestWebKitAPI/JavaScriptTest.h: Added.
-        Moved code here...
-
-        * TestWebKitAPI/Tests/WebKit2/SpacebarScrolling.cpp: ...from here.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        Added the new files.
-
-2011-02-04  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        merge test expectations for chromium, chromium-gpu. The
-        chromium-gpu port will no longer maintain its own
-        test expectations file.
-
-        Also add in a graphics_type() call on the port object to
-        determine what graphics type to use in the test configuration,
-        and log the configuration as a config setting.
-
-        https://bugs.webkit.org/show_bug.cgi?id=53562
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-
-2011-02-04  Mikhail Naganov  <mnaganov@chromium.org>
-
-        Reviewed by Pavel Feldman.
-
-        Web Inspector: fix processing Unicode literals from .js sources in check-inspector-strings.
-        https://bugs.webkit.org/show_bug.cgi?id=53781
-
-        * Scripts/check-inspector-strings:
-
-2011-02-04  Adam Roben  <aroben@apple.com>
-
-        Include the crashing function in the link to a crash log on Mac
-
-        Fixes <http://webkit.org/b/53780> Crash log links in results.html should include the
-        function that crashed on Mac
-
-        Reviewed by David Kilzer.
-
-        * Scripts/old-run-webkit-tests:
-        (crashLocation): Moved all the Windows code inside an if instead of using an early return,
-        but didn't otherwise change it. Added an if for Mac that parses the crashing function out of
-        the crash log.
-
-2011-02-04  Adam Roben  <aroben@apple.com>
-
-        Link to Mac crash logs from results.html
-
-        Fixes <http://webkit.org/b/14861> run-webkit-tests should link to Mac crash logs in
-        results.html
-
-        Reviewed by David Kilzer.
-
-        * Scripts/old-run-webkit-tests:
-        (captureSavedCrashLog): Added a case for Apple's Mac port. We get the crash log out of
-        ~/Library/Logs/CrashReporter, and wait for ReportCrash to exit before trying to get the log.
-
-2011-02-03  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        WebKit2: Need WebKit2 equivalent of WebResourceLoadDelegate::willSendRequest in the Bundle
-        https://bugs.webkit.org/show_bug.cgi?id=52897
-        <rdar://problem/8898294>
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        (WTR::InjectedBundlePage::willSendRequestForFrame):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-
-2011-02-03  Ivan Krstić  <ike@apple.com>
-
-        Unreviewed.
-
-        Adding myself to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-02-03  James Kozianski  <koz@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Add navigator.registerProtocolHandler behind a flag.
-        https://bugs.webkit.org/show_bug.cgi?id=52609
-
-        * Scripts/build-webkit:
-
-2011-02-03  Hayato Ito  <hayato@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        [NRWT] Remove TestArgs class, which is wrongly used.
-
-        https://bugs.webkit.org/show_bug.cgi?id=53063
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py:
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py:
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base_unittest.py:
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-
-2011-02-03  Andrew Wason  <rectalogic@rectalogic.com>
-
-        Reviewed by Kenneth Russell.
-
-        Change ENABLE_3D_CANVAS to ENABLE_WEBGL
-        https://bugs.webkit.org/show_bug.cgi?id=53714
-
-        * Scripts/build-webkit: change --3d-canvas build option
-          to set ENABLE_WEBGL
-
-2011-02-03  Hayato Ito  <hayato@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        [NRWT] Introduces Input/Output class used by base.Driver into port/base.py and
-        move _run_single_test() and _process_output() functions from
-        dump_render_tree_thread.py to a single_test_runner.py as an individual module.
-
-        This is clean up and acts as a preparation for elimination of test_types/*
-        classes. These classes will move to the single_test_runner module introduced
-        in this patch.
-
-        https://bugs.webkit.org/show_bug.cgi?id=53004
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py: Added.
-        * Scripts/webkitpy/layout_tests/layout_package/test_input.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_output.py: Removed.
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/dryrun.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py:
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py:
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-
-2011-02-03  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        Delete a line that was accidentally missed in r77586; without it
-        there is still a race between the two threads.
-
-        https://bugs.webkit.org/show_bug.cgi?id=51572
-
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker_unittest.py:
-
-2011-02-03  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        nrwt: handle "broken pipe" notifications from DRT more cleanly.
-
-        https://bugs.webkit.org/show_bug.cgi?id=52927
-
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        * Scripts/webkitpy/layout_tests/port/server_process_unittest.py:
-
-2011-02-03  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Kenneth Russell.
-
-        Update, resubmit change to bug 51572. I think the race that was
-        fixed in r76703 caused the hang that caused us to roll this
-        patch out before, so I'd like to try again.
-
-        https://bugs.webkit.org/show_bug.cgi?id=51572
-
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker.py:
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker_unittest.py:
-
-2011-02-03  Daniel Cheng  <dcheng@chromium.org>
-
-        Unreviewed.
-
-        Adding myself to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-02-03  Adam Roben  <aroben@apple.com>
-
-        Include the crashing function in the link to a crash log
-
-        Fixes <http://webkit.org/b/53739> Crash log links in results.html should include the
-        function that crashed
-
-        Reviewed by David Kilzer.
-
-        * Scripts/old-run-webkit-tests:
-        (crashLocation): Added. Returns the location of the crash.
-        (linksForErrorTest): Include the crash location in the link text for the crash log, if one
-        could be determined.
-
-2011-02-03  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        Actually make the changes suggested by Mihai in his review
-        of bug 53720 :(
-
-        https://bugs.webkit.org/show_bug.cgi?id=53720
-
-        * Scripts/webkitpy/layout_tests/port/test_files.py:
-        * Scripts/webkitpy/layout_tests/port/test_files_unittest.py:
-
-2011-02-03  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        new-run-webkit-tests: Fix bug introduced in r77434 that was
-        causing us to run the canvas GPU tests on the Mac GPU port. This
-        bug revealed that we were not setting the port.name() field
-        properly in many cases, so I've cleaned up all of that code, and
-        removed a few comments about "version-specific" GPU ports that
-        don't exist and just confused things.
-
-        Testing also revealed that port.abspath_for_test() wasn't
-        normalizing paths on Windows properly, so I fixed that as well.
-
-        https://bugs.webkit.org/show_bug.cgi?id=53719
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-
-2011-02-03  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        new-run-webkit-tests: fix normalization of paths on windows when gathering files
-
-        r77434 introduced a bug that was causing the test expectations
-        for the GPU ports to not be treated properly. It turns out that
-        when we gathered the list of test files on Windows, we would
-        return paths of the form "c:\LayoutTests/fast/canvas", and the
-        mixture of backslashes and forward slashes was confusing things.
-
-        This patch normalizes all of the filenames returned from
-        test_files.find(), and adds better tests for this (fixing a
-        couple of other bugs found in the meantime).
-
-        https://bugs.webkit.org/show_bug.cgi?id=53720
-
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/test_files.py:
-        * Scripts/webkitpy/layout_tests/port/test_files_unittest.py:
-
-2011-02-03  Adam Roben  <aroben@apple.com>
-
-        Add links to Windows crash logs in results.html
-
-        Fixes <http://webkit.org/b/53718> run-webkit-tests should link to Windows crash logs in
-        results.html
-
-        Reviewed by David Kilzer.
-
-        * Scripts/old-run-webkit-tests:
-        (top level): Added $crashLogTag and $windowsCrashLogFilePrefix (which came from
-        createDebuggerCommandFile).
-        (testCrashedOrTimedOut): If the test crashed, capture any saved crash log after the dump
-        tool has exited.
-        (captureSavedCrashLog): Added. Finds the crash log for the test that just crashed and moves
-        it into the test results directory tree. Only implemented for Cygwin currently.
-        (findNewestFileMatchingGlob): Added. Does what it says.
-        (htmlForResultsSection): Only link to files that exist.
-        (linksForErrorTest): Add a link to the crash log.
-        (deleteExpectedAndActualResults): Delete any old crash log for this test.
-        (createDebuggerCommandFile): Use the new $windowsCrashLogFilePrefix constant instead of
-        hardcoding it here.
-
-2011-02-03  Adam Roben  <aroben@apple.com>
-
-        Tell the debugger the path to the WebKit source tree when saving a crash log
-
-        This allows the debugger to include the crashing line of code in the log.
-
-        Fixes <http://webkit.org/b/53678> Crash logs from buildslaves don't show the crashing line
-        of code
-
-        Reviewed by Sam Weinig.
-
-        * Scripts/old-run-webkit-tests:
-        (createDebuggerCommandFile): Added. Saves commands that we'd like the debugger to run to a
-        file and returns the path to that file. The commands we pass came from
-        setUpWindowsCrashLogSaving, but I've added a .srcpath command to tell the debugger where the
-        WebKit source code lives.
-        (setUpWindowsCrashLogSaving): Instead of specifying the commands directly on the command
-        line using -c, save them to a file and specify the path to that file using -cf. This works
-        around what is presumably a bug in Windows's command line parsing, where having multiple
-        quoted paths in the debugger commands causes the post-mortem debugger not to be invoked at
-        all. Also pulled the options we pass to the debugger out into a list that is then join()ed
-        together to make them easier to modify in the future.
-
-2011-02-02  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Add notification of the end of a rubber band.
-        <rdar://problem/8940648>
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::createOtherPage):
-        (WTR::TestController::initialize):
-        Stub out the new WKUIClient function.
-
-2011-02-03  Gabor Rapcsanyi  <rgabor@webkit.org>
-
-        Unreviewed.
-
-        Adding myself to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-02-03  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt][WK2] MiniBrowser's window size should be 800x600
-        https://bugs.webkit.org/show_bug.cgi?id=53670
-
-        Make layout test failure debugging easier.
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-
-2011-02-02  Andy Estes  <aestes@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        'update-webkit' should handle OpenSource and Internal using different
-        VCSs.
-
-        * Scripts/update-webkit: Re-check the VCS type when updating Apple's
-        Internal directory.
-
-2011-02-02  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        new-run-webkit-tests: hardcode the directories to scan for tests
-        for GPU bots instead of SKIPping them. See bug 53562 for some
-        context, but we will now hard-code the list of directories to
-        use by default instead of skipping over directories in the
-        expectations file. We do this so that we will be able to merge
-        the expectations files without getting conflicting SKIP
-        directives. Note that this change will reduce the # of tests
-        being run on the Mac GPU bots, because we're accidentally
-        including some today.
-
-        https://bugs.webkit.org/show_bug.cgi?id=53631
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-
-2011-02-02  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Beth Dakin.
-
-        Add ChromeClient function to paint custom overhang areas.
-        https://bugs.webkit.org/show_bug.cgi?id=53639
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        Stub out new callback.
-
-2011-02-02  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: support chromium code paths in mock_drt
-
-        https://bugs.webkit.org/show_bug.cgi?id=53471
-
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py:
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-
-2011-02-02  Adam Klein  <adamk@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Update new-run-webkit-tests --chromium to put output under Source/...
-        https://bugs.webkit.org/show_bug.cgi?id=53612
-
-        * BuildSlaveSupport/test-result-archive:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2011-01-28  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        [chromium] remove --use-test-shell from NRWT
-        https://bugs.webkit.org/show_bug.cgi?id=53346
-
-        I've already started removing some of the bindings like eventSender so
-        this already doesn't work isn't useful.  Also updated some comments to
-        refer to DRT instead of test_shell.
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-
-2011-02-02  Steve Lacey  <sjl@chromium.org>
-
-        Reviewed by Eric Carlson.
-
-        Implement basic media statistics on media elements.
-        https://bugs.webkit.org/show_bug.cgi?id=53322
-
-        * Scripts/build-webkit:
-
-2011-02-02  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fixes for wxWebKit.
-
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setSerializeHTTPLoads):
-        * wx/browser/wscript:
-        * wx/build/build_utils.py:
-        * wx/build/settings.py:
-
-2011-02-01  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        new-run-webkit-tests: stop skipping so many tests
-
-        r77163 introduced a regression where we weren't resetting test
-        expectations properly and were skipping too many tests as a
-        result. This patch fixes that and adds a test for it.
-
-        https://bugs.webkit.org/show_bug.cgi?id=53551
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations_unittest.py:
-
-2011-02-01  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: add first stub of test_runner2. This
-        will add support for the 'inline', 'threads', and 'processes'
-        flags to --worker-model, but for now the implementatios just
-        fall back on the old ones.
-
-        https://bugs.webkit.org/show_bug.cgi?id=53157
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner2.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-02-01  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by James Robinson.
-
-        [Chromium] run-chromium-webkit-unit-tests looks for binaries in the wrong place
-        https://bugs.webkit.org/show_bug.cgi?id=53522
-
-        * Scripts/run-chromium-webkit-unit-tests:
-
-2011-02-01  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Mihai Parparita.
-
-        Using Control-C to cancel webkit-patch or other python tools causes
-        unpleasant traceback console spew
-        https://bugs.webkit.org/show_bug.cgi?id=53462
-
-        Catch the exception and don't print the stack trace.
-
-        * Scripts/webkit-patch:
-
-2011-02-01  Scott Cameron  <sccameron@rim.com>
-
-        Reviewed by Daniel Bates.
-
-        Use Windows format for MinGW HTTPD path.
-        https://bugs.webkit.org/show_bug.cgi?id=53503
-
-        * Scripts/webkitperl/httpd.pm:
-          - Use single-quotes around MySys value for $httpdPath in getHTTPDPath()
-            so that we don't have to escape the space characters in the path. Also,
-            changed path to Windows-style path and removed FIXME comment.
-
-2011-02-01  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt][WK2] Add a way to use shared process model in MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=53090
-
-        * MiniBrowser/qt/BrowserView.cpp:
-        (BrowserView::BrowserView): Removed the m_context member.
-        From now the context is guaranteed to be non-null and we
-        don't need to store that in the object.
-        * MiniBrowser/qt/BrowserView.h:
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        Added static bool to determine that new windows need to be
-        created with their own context or not. Use the same context
-        and web process by default to be inilne with the other ports.
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::newWindow):
-        * MiniBrowser/qt/BrowserWindow.h:
-        * MiniBrowser/qt/main.cpp:
-        (main): Added command line switch to be able to use the
-        non-shared process model. Simplify the handling of the command line
-        switches a little bit.
-
-2011-02-01  Zoltan Horvath  <zoltan@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Add Window menu and Toggle FullScreen action to MiniBrowser.
-        https://bugs.webkit.org/show_bug.cgi?id=53491
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::toggleFullScreenMode):
-        * MiniBrowser/qt/BrowserWindow.h:
-
-2011-02-01  Zoltan Horvath  <zoltan@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Add Toggle Frame Flattening, Auto Load Images and Disable JavaScript actions to MiniBrowser.
-        https://bugs.webkit.org/show_bug.cgi?id=53489
-
-        Add Toggle Frame Flattening action to Develop menu. Add Auto Load Images and Disable JavaScript actions
-        to Settings menu.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::toggleFrameFlattening):
-        (BrowserWindow::toggleDisableJavaScript):
-        (BrowserWindow::toggleAutoLoadImages):
-        * MiniBrowser/qt/BrowserWindow.h:
-
-2011-01-31  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        [Chromium] Switch chromium-mac to use ChromiumDriver
-        https://bugs.webkit.org/show_bug.cgi?id=53461
-        
-        For the sake of consistency with the other Chromium platforms (and so
-        that chromium-mac picks up special flags like --enable-hardware-gpu),
-        switch chromium-mac from the WebKitDriver to ChromiumDriver.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2011-01-31  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        The current modifier parsing code in test_expectations is
-        fragile and hard-coded, so it's not easy to understand the logic
-        or easily add new types of modifiers (like GPU vs. CPU testing
-        for graphics tests, or 32-bit vs. 64-bit differences).
-
-        This is the first of two patches that will add in more generic
-        support and then eliminate the GPU-specific test expectations
-        files for Chromium.
-
-        This patch adds two standalone objects for handling modifiers. The
-        rules for interpreting modifiers, precedence, and conflicts are
-        given in the docstring to the ModifierMatcher class, which
-        returns ModifierMatchResult objects.
-        
-        This patch also adds routines to the Port interface and a
-        default set of values in the base object, in order to obtain the
-        values needed on a given test run. These values are then passed
-        to the expectation parser. This also allows us to clean up the
-        logic used to lint all of the different configurations in a
-        single test_expectations.txt file.
-
-        The next patch will merge in the separate GPU expectations file.
-
-        https://bugs.webkit.org/show_bug.cgi?id=51222
-
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Tools/Scripts/webkitpy/style/checkers/test_expectations.py:
-        * Tools/Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-
-2011-01-31  Scott Cameron  <sccameron@rim.com>
-
-        Reviewed by Daniel Bates.
-
-        update run-webkit-httpd to be able to launch Apache2.2 in a MSYS environment
-        https://bugs.webkit.org/show_bug.cgi?id=50036
-
-        This will add an Apache2.2 configuration file and modifies scripts to allow
-        running an httpd server in an MSYS environment.
-
-        The default Apache2.2 installation path has been preserved and PHP5 modules disabled
-        in order to allow for simple installation/execution.  Simply install the latest
-        Apache2.2 version with OpenSSL from http://httpd.apache.org/download.cgi#apache22 to
-        be able to execute run-webkit-httpd.
-        
-
-        * Scripts/run-webkit-httpd:
-        * Scripts/webkitperl/httpd.pm:
-
-2011-01-31  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        mac DRT should report RTL scroll offset relative to top right corner
-        https://bugs.webkit.org/show_bug.cgi?id=53324
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dumpFrameScrollPosition):
-
-2011-01-31  Zoltan Horvath  <zoltan@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Add Take Screen Shot action to MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=53422
-
-        Add Take Screen Shot action to MiniBrowser's view menu.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::screenshot):
-        * MiniBrowser/qt/BrowserWindow.h:
-
-2011-01-31  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] REGRESSION:  http/tests/media/video-{cookie,referer}.html failing
-        https://bugs.webkit.org/show_bug.cgi?id=53379
-
-        Remove left over #ifdef's. I thought all of the conditional code
-        had been freed from the condition, but I forgot to check DRT.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setAlwaysAcceptCookies):
-
-2011-01-30  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        Fix regression introduced in r77093 - path.rsplit() doesn't
-        take keyword arguments.
-
-        https://bugs.webkit.org/show_bug.cgi?id=53326
-
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-
-2011-01-30  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        Add more unit tests for rebaseline-chromium-webkit-tests. This
-        change involves restructuring a bunch of r-c-w-t code to make it
-        more testable as well. We also add wrapper classes for handling
-        testing zip files and fetching URLs.
-
-        https://bugs.webkit.org/show_bug.cgi?id=53040
-
-        * Scripts/webkitpy/common/system/urlfetcher.py:
-        * Scripts/webkitpy/common/system/urlfetcher_mock.py:
-        * Scripts/webkitpy/common/system/zipfileset_mock.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2011-01-30  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Clean up of the filesystem-related modules used in webkitpy.
-        I've added relpath() to the filesystem interface, modified
-        ospath.relpath() so that it could work with the filesystem
-        interface, and modified the fileset* routines to use the
-        filesystem interface consistently.
-
-        This patch also adds a close() routine to the fileset routines
-        to indicate that the caller is done with the fileset. This
-        allows zipfileset to clean up after itself when it creates
-        tempfiles to store downloads.
-
-        https://bugs.webkit.org/show_bug.cgi?id=53326
-
-        * Scripts/webkitpy/common/system/directoryfileset.py:
-        * Scripts/webkitpy/common/system/fileset.py:
-        * Scripts/webkitpy/common/system/filesystem.py:
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        * Scripts/webkitpy/common/system/filesystem_unittest.py:
-        * Scripts/webkitpy/common/system/ospath.py:
-        * Scripts/webkitpy/common/system/zipfileset.py:
-        * Scripts/webkitpy/common/system/zipfileset_unittest.py:
-
-2011-01-30  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt][WK2]REGRESSION (r76991): Fix build errors
-        https://bugs.webkit.org/show_bug.cgi?id=53400
-
-        Revert the temporary build fix (http://trac.webkit.org/changeset/77088)
-        and remove WebKit2Prefix.h from the build.
-        * MiniBrowser/qt/MiniBrowser.pro:
-
-2011-01-30  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed.
-
-        [Qt][WK2] Buildfix.
-
-        * MiniBrowser/qt/MiniBrowser.pro:
-
-2011-01-28  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Adam Roben.
-        
-        define NOMINMAX when building ImageDiff, as we do elsewhere.
-
-        Add various clampToInt() methods to MathExtras.h
-        https://bugs.webkit.org/show_bug.cgi?id=52910
-
-        * DumpRenderTree/win/ImageDiffCommon.vsprops:
-
-2011-01-28  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Darin Adler.
-
-        WebKitTestRunner needs layoutTestController.setPOSIXLocale
-        https://bugs.webkit.org/show_bug.cgi?id=42682
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::resetLocalSettings):
-        (WTR::InjectedBundle::didReceiveMessage):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::setPOSIXLocale):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2011-01-28  Dirk Pranke  <dpranke@chromium.org>
- 
-         Reviewed by Mihai Parparita.
- 
-         test-webkitpy: fix webkitpy.layout_tests.port.mac_unittest.MacTest.test_skipped_file_paths
- 
-         This patch re-enables this test and changes it to
-         handle all of the mac platform versions, not just the one
-         it is running on.
- 
-         https://bugs.webkit.org/show_bug.cgi?id=53356
- 
-         * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
- 
-2011-01-28  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        Take two. The fix in 77023 didn't work, because we were
-        still calling path.abspath_to_uri, which calls _cygpath under
-        the covers, and it appears the cygpath on the bots does
-        something different than it does on my machine. This patch
-        removes the calls to path.abspath_to_uri, so it should be safe.
-        If it doesn't work, I'll roll it out along with r76982 and 77023.
-
-        https://bugs.webkit.org/show_bug.cgi?id=53126
-
-        * Scripts/webkitpy/layout_tests/port/test.py:
-
-2011-01-28  David Kilzer  <ddkilzer@apple.com>
-
-        <rdar://problem/8930699> build-webkit gives a bogus warning with newer versions of Xcode 
-        <http://webkit.org/b/53353>
-
-        Reviewed by Mark Rowe.
-
-        * Scripts/webkitdirs.pm:
-        (checkRequiredSystemConfig): Check the Xcode marketing version
-        in addition to the DevCoreTools build version before complaining
-        about an old version of Xcode.  Also make the Mac OS X version
-        check use Perl's built-in version string comparitor.
-
-2011-01-28  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        Work around breakage on Win 7 Release bot caused by r76982
-        and the fact that windows ports use "file:////" instead of
-        "file:///". Ideally the test code should be isolated from
-        this, but it isn't yet. Will fix properly in a bit.
-
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-
-2011-01-28  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: change worker model values to
-        "old-inline", "old-threads" in preparation for test_runner2 /
-        multiprocessing changes.
-
-        https://bugs.webkit.org/show_bug.cgi?id=53156
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-01-28  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        committers.py - add an IRC nickname for dpranke
-        https://bugs.webkit.org/show_bug.cgi?id=53335
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-01-28  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: add a "mock DRT" port implementation
-        and a separate class that emulates what we expect the
-        DumpRenderTree behavior to be.
-
-        This will eventually replace port/dryrun.py and allow us to get
-        better test coverage of the new-run-webkit-tests code as well as
-        a reference for what new-run-webkit-tests expects from DRT.
-
-        This is the first attempt at this, and it is pretty bare-boned. It
-        really only has been tested on the 'mac' port (and a little on
-        the 'chromium-mac' port.
-
-        https://bugs.webkit.org/show_bug.cgi?id=53126
-
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        * Scripts/webkitpy/layout_tests/port/dryrun.py:
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py: Added.
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py: Added.
-        * Scripts/webkitpy/layout_tests/port/test.py:
-
-2011-01-28  Pratik Solanki  <psolanki@apple.com>
-
-        Unreviewed. Removing .swp file checked in by mistake.
-
-        * Scripts/.webkitdirs.pm.swp: Removed.
-
-2011-01-28  Pratik Solanki  <psolanki@apple.com>
-
-        Reviewed by David Kilzer.
-
-        Space not necessary for undefined feature
-        https://bugs.webkit.org/show_bug.cgi?id=53317
-
-        * Scripts/build-webkit:
-
-2011-01-28  Chang Shu  <chang.shu@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        Reset NetworkAccessManager to clean up credentials from previous tests.
-        This change causes no performance overhead either.
-        https://bugs.webkit.org/show_bug.cgi?id=36688
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        (WebCore::DumpRenderTree::open):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-
-2011-01-28  Zoltan Horvath  <zoltan@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Add Zoom Text Only action to MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=53297
-
-        Add Zoom Text Only action to MiniBrowser's view menu, change zoom levels to avoid unnecessary divides.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::zoomIn):
-        (BrowserWindow::zoomOut):
-        (BrowserWindow::resetZoom):
-        (BrowserWindow::toggleZoomTextOnly):
-        (BrowserWindow::applyZoom):
-        * MiniBrowser/qt/BrowserWindow.h:
-
-2011-01-28  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add webkit-patch roll-chromium-deps
-        https://bugs.webkit.org/show_bug.cgi?id=53288
-
-        This command updates the Source/WebKit/chromium/DEPS file with the
-        last-known good revision of Chromium (or a revision specified on the
-        command line).  I'd eventually like to turn this into a SheriffBot
-        command, but this is the first step.
-
-        This patch somewhat sprawled because I needed to move a bunch of code
-        out of ChangeLog that should never have been there in the first place.
-        Also, I had to fix a bug in MockUser in order to test the new command.
-
-        * Scripts/webkitpy/common/checkout/api.py:
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-        * Scripts/webkitpy/common/checkout/deps.py: Added.
-        * Scripts/webkitpy/common/config/urls.py:
-        * Scripts/webkitpy/tool/commands/__init__.py:
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/commands/roll.py: Added.
-        * Scripts/webkitpy/tool/commands/roll_unittest.py: Added.
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/__init__.py:
-        * Scripts/webkitpy/tool/steps/preparechangelogfordepsroll.py: Added.
-        * Scripts/webkitpy/tool/steps/preparechangelogforrevert.py:
-        * Scripts/webkitpy/tool/steps/preparechangelogforrevert_unittest.py: Added.
-        * Scripts/webkitpy/tool/steps/suggestreviewers_unittest.py:
-        * Scripts/webkitpy/tool/steps/updatechromiumdeps.py: Added.
-        * Scripts/webkitpy/tool/steps/validatechangelogs_unittest.py:
-
-2011-01-27  Greg Coletta  <greg.coletta@nokia.com>
-
-        Reviewed by Laszlo Gombos.
-
-        Get rid of prefix header dependency for WebKit2 build system
-        https://bugs.webkit.org/show_bug.cgi?id=50174
-
-        Change the style checker so that it enforces config.h include for
-        WebKit2.
-
-        * Scripts/webkitpy/style/checker.py:
-
-2011-01-27  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Darin Adler.
-
-        execCommand("Paste") doesn't work in WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=52785
-
-        Enable both of the settings needed to allow paste.
-        
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-
-2011-01-27  Jacob Dinu  <dinu.jacob@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] QtTestBrowser: User input lost when toggling use of QGraphicsView
-        https://bugs.webkit.org/show_bug.cgi?id=48440
-
-        Preserve user input when toggling use of QGraphicsView
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::initializeView):
-        (LauncherWindow::loadFinished):
-        * QtTestBrowser/launcherwindow.h:
-        * QtTestBrowser/mainwindow.cpp:
-        (MainWindow::addressUrl):
-        * QtTestBrowser/mainwindow.h:
-
-2011-01-27  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        new-run-webkit-tests: turn off pixel tests correctly by default
-        for webkit-based ports. r70013 (bug 47510) used
-        port.set_option_default() to attempt to set default values, but
-        that didn't work correctly. I have removed set_option_default
-        for now since it was only being used in two places and in three
-        useless unit tests. There is a separate bug open to fix the
-        option parsing (48095), so this workaround is fine for now.
-
-        https://bugs.webkit.org/show_bug.cgi?id=53217
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-
-2011-01-27  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Rubber-stamped by Ariya Hidayat.
-
-        Trivial crash fix in WTR.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize): Increase the size
-        of the vector by one to be able to store the null character.
-
-2011-01-27  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt][WK2] WTR should be initialized in the same way as DRT
-        https://bugs.webkit.org/show_bug.cgi?id=53240
-
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-        (WTR::activateFonts): Added missing initialization steps.
-
-2011-01-27  Joone Hur <joone.hur@collabora.co.uk>
-
-        Unreviewed. 
-
-        Adding myself to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-01-27  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt] [Symbian] Move project files into Source
-        https://bugs.webkit.org/show_bug.cgi?id=52891
-
-        Fix the Symbian build after the project files
-        are moved to Source directory. On Symbian qmake
-        needs to run in the same directory where the main
-        pro files (WebKit.pro, Tools.pro) are located.
-
-        * Scripts/webkitdirs.pm: Change to the directory where the pro file
-        is located before running qmake for Symbian. Qmake on Symbian
-        does not properly honor the "-o" option, work it around by setting
-        the name of the Makefile to bld.inf.
-
-2011-01-27  Zoltan Horvath  <zoltan@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Add simple zooming features to MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=53231
-
-        Add View menu and Zoom In, Zoom Out, Zoom Reset actions to MiniBrowser.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::zoomIn):
-        (BrowserWindow::zoomOut):
-        (BrowserWindow::resetZoom):
-        (BrowserWindow::updateUserAgentList):
-        (BrowserWindow::applyZoom):
-        * MiniBrowser/qt/BrowserWindow.h:
-
-2011-01-26  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        WebKitTestRunner needs to support layoutTestController.evaluateInWebInspector
-        https://bugs.webkit.org/show_bug.cgi?id=42319
-        
-        Add evaluateInWebInspector and other APIs needed for inspector tests to run.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::showWebInspector):
-        (WTR::LayoutTestController::closeWebInspector):
-        (WTR::LayoutTestController::evaluateInWebInspector):
-        (WTR::LayoutTestController::setTimelineProfilingEnabled):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::shouldOpenWebInspector):
-        (WTR::TestInvocation::invoke):
-        * WebKitTestRunner/WebKitTestRunnerPrefix.h:
-
-2011-01-26  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] Pixel dumps do not include scrollbars in output images
-        https://bugs.webkit.org/show_bug.cgi?id=53216
-
-        Show scrollbars in pixel dumps. This will fix pixel dumps for tests
-        that have scrollbars.
-
-        * DumpRenderTree/gtk/PixelDumpSupportGtk.cpp:
-        (createBitmapContextFromWebView): Take the snapshot of the containing GtkScrolledWindow
-        instead of the web view itself.
-
-2011-01-26  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        Fix regression introduced in r76322 ... new-run-webkit-tests
-        was attempting to save the image diff output as a UTF-8-encoded
-        file.
-
-        https://bugs.webkit.org/show_bug.cgi?id=53210
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-01-26  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r76709.
-        http://trac.webkit.org/changeset/76709
-        https://bugs.webkit.org/show_bug.cgi?id=53194
-
-        "broke python tests on non-snowleopard platforms" (Requested
-        by dpranke on #webkit).
-
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py: Removed.
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py: Removed.
-
-2011-01-26  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: add a "mock DRT" port implementation
-        and a separate class that emulates what we expect the
-        DumpRenderTree behavior to be.
-
-        This will eventually replace port/dryrun.py and allow us to get
-        better test coverage of the new-run-webkit-tests code as well as
-        a reference for what new-run-webkit-tests expects from DRT.
-
-        This is the first attempt at this, and it is pretty bare-boned. It
-        really only has been tested on the 'mac' port (and a little on
-        the 'chromium-mac' port.
-
-        https://bugs.webkit.org/show_bug.cgi?id=53126
-
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py: Added.
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py: Added.
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-
-2011-01-26  Xianzhu Wang  <wangxianzhu@google.com>
-
-        Reviewed by Tony Chang.
-
-        Add '--no-timeout' option to Chromium DRT to ease debugging.
-        https://bugs.webkit.org/show_bug.cgi?id=52873
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-
-2011-01-26  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Fix qt_minimal build
-        https://bugs.webkit.org/show_bug.cgi?id=53172
-
-        * QtTestBrowser/locationedit.h:
-
-2011-01-26  Mansi Mithal  <mansi.mithal@nokia.com>
-
-        Reviewed by Antonio Gomes.
-
-        QtTestBrowser should have a UI Setting to disable plugins
-        https://bugs.webkit.org/show_bug.cgi?id=52408
-        
-        Added a new action item named "Disable Plugins"
-        under the "Settings" menu. 
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::createChrome):
-        (LauncherWindow::togglePlugins):
-        * QtTestBrowser/launcherwindow.h:
-
-2011-01-25  Patrick Gansterer  <paroga@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Move main CMakeLists.txt into Source directory
-        https://bugs.webkit.org/show_bug.cgi?id=52888
-
-        * Scripts/webkitdirs.pm:
-
-2011-01-25  Patrick Gansterer  <paroga@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Improve label text in submit-to-ews
-        https://bugs.webkit.org/show_bug.cgi?id=53130
-
-        * QueueStatusServer/templates/submittoews.html:
-
-2011-01-25  Mansi Mithal  <mansi.mithal@nokia.com>
-
-        Reviewed by Antonio Gomes.
-
-        QtTestBrowser should have a UI Settings to prevent loading images
-        https://bugs.webkit.org/show_bug.cgi?id=52409
-        
-        Added a new action item named "DisableAutoLoadImages"
-        under the "Settings" menu 
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::createChrome):
-        (LauncherWindow::toggleAutoLoadImages):
-        * QtTestBrowser/launcherwindow.h:
-
-2011-01-25  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Minor bug fixes and cleanup for filesystem wrappers, port/* test
-        classes, test_expectations.py. This change adds "test-win" and
-        "test-mac" variants to the test port so that we can better test
-        rebaselining, and adds a MockUser() object for reuse in testing.
-
-        https://bugs.webkit.org/show_bug.cgi?id=53036
-
-        * Scripts/webkitpy/common/system/filesystem.py:
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2011-01-25  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [chromium] remove unused layoutTestController callback
-        https://bugs.webkit.org/show_bug.cgi?id=53103
-
-        This method is used by a test_shell_test, but not needed by DRT.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-
-2011-01-25  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
-
-        Reviewed by Andreas Kling.
-
-        [GTK] Remove 64 bits release bot from the buildbot master
-        https://bugs.webkit.org/show_bug.cgi?id=52899
-
-        Removes the 64 bits release slave from the buildbot configuration,
-        so that we can use it as an EWS.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2011-01-24  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        Implement database quota callback to fix storage tests on WebKit2 bot
-        https://bugs.webkit.org/show_bug.cgi?id=53064
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::exceededDatabaseQuota):
-        (WTR::TestController::createOtherPage):
-        (WTR::TestController::initialize):
-
-2011-01-24  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Anders Carlsson.
-
-        Use designated temp directory for the database for WebKit2
-        https://bugs.webkit.org/show_bug.cgi?id=53052
-        
-        Adopt the new WK2 API for this.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::libraryPathForTesting):
-        (WTR::TestController::initialize):
-        * WebKitTestRunner/TestController.h:
-        * WebKitTestRunner/mac/TestControllerMac.mm:
-        (WTR::TestController::platformLibraryPathForTesting):
-        * WebKitTestRunner/qt/TestControllerQt.cpp:
-        (WTR::TestController::platformLibraryPathForTesting):
-        * WebKitTestRunner/win/TestControllerWin.cpp:
-        (WTR::TestController::platformLibraryPathForTesting):
-
-2011-01-24  Lucas Forschler  <lforschler@apple.com>
-
-        Reviewed by Stephanie Lewis.
-
-        Add a new Leopard test bot.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2011-01-24  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Reviewed by Adam Barth.
-
-        Add EFL Builder to core waterfall
-        https://bugs.webkit.org/show_bug.cgi?id=52704
-
-        Add EFL Builder to the core waterfall again.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-
-2011-01-24  Xianzhu Wang  <wangxianzhu@google.com>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests fails to start HTTP server if there are proxy settings
-        https://bugs.webkit.org/show_bug.cgi?id=52872
-
-        Force disabling proxy to resolve the problem.
-
-        * Scripts/webkitpy/layout_tests/port/http_server_base.py:
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-
-2011-01-24  Andreas Kling  <kling@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        check-webkit-style: Update exemptions following Source/ move.
-        https://bugs.webkit.org/show_bug.cgi?id=53017
-
-        * Scripts/webkitpy/style/checker.py:
-        * Scripts/webkitpy/style/checker_unittest.py:
-
-2011-01-24  Andras Becsi  <abecsi@webkit.org>
-
-        Rubber-stamped by Csaba Osztrogonác.
-
-        [Qt] Move project files into Source
-        https://bugs.webkit.org/show_bug.cgi?id=52891
-
-        * DumpRenderTree/qt/ImageDiff.pro: Add missing "Source" to WebKit.pri path
-
-2011-01-24  Mikhail Naganov  <mnaganov@chromium.org>
-
-        Reviewed by Yury Semikhatsky.
-
-        Web Inspector: Find duplicate strings in localizedStrings.js
-
-        https://bugs.webkit.org/show_bug.cgi?id=53005
-
-        * Scripts/check-inspector-strings:
-
-2011-01-24  Zoltan Horvath  <zoltan@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Regroup MiniBrowser's menubar and add open file action
-        https://bugs.webkit.org/show_bug.cgi?id=53000
-
-        Add File and Develop menu to MiniBrowser's menubar and add open file action to File menu.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::openFile):
-        (BrowserWindow::~BrowserWindow):
-        * MiniBrowser/qt/BrowserWindow.h:
-
-2011-01-24  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed fix after r76496
-
-        [Qt] Move project files into Source
-        https://bugs.webkit.org/show_bug.cgi?id=52891
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Remove unnecessary "Source" from the path.
-        * BuildSlaveSupport/built-product-archive: Remove unnecessary "Source" from the path.
-        * Scripts/webkitdirs.pm: Add the accidentally removed slash to the path.
-
-2011-01-24  Andras Becsi  <abecsi@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt] Move project files into Source
-        https://bugs.webkit.org/show_bug.cgi?id=52891
-
-        * DerivedSources.pro: Renamed from DerivedSources.pro.
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * MiniBrowser/DerivedSources.pro:
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * QtTestBrowser/QtTestBrowser.pro:
-        * Scripts/webkitdirs.pm:
-        * Tools.pro: Added.
-        * WebKitTestRunner/DerivedSources.pro:
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro:
-        * WebKitTestRunner/qt/WebKitTestRunner.pro:
-
-2011-01-22  Geoffrey Garen  <ggaren@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        Beefed up --threaded mode to catch even more kinds of errors.
-        https://bugs.webkit.org/show_bug.cgi?id=52971
-
-        * DumpRenderTree/pthreads/JavaScriptThreadingPthreads.cpp: Use a shared
-        context group to force JSC to mark multiple threads. (This used to be
-        the default, but it changed in SnowLeopard.)
-        (runJavaScriptThread): Do more locking and unlocking, and more allocation,
-        to give threading mistakes more chances to show themselves.
-        (startJavaScriptThreads):
-        (stopJavaScriptThreads):
-
-2011-01-22  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Support layoutTestController.addURLToRedirect()
-        https://bugs.webkit.org/show_bug.cgi?id=52956
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::addURLToRedirect):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2011-01-22  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] REGRESSION (r72360): http/tests/security/aboutBlank/xss-DENIED-* tests fail
-        https://bugs.webkit.org/show_bug.cgi?id=49802
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        (WebCore::DumpRenderTree::open):
-
-2011-01-21  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Maciej Stachowiak.
-
-        Disable mac_unittest.py that fails on some of the Mac bots
-        https://bugs.webkit.org/show_bug.cgi?id=52947
-
-        As noted in the comment, this test does not appear to be correct
-        because the function this test is testing returns different results
-        depending on which flavor of Mac the test is run on.  This patch
-        disable the test.  Hopefully we can re-enable the test once we've
-        probably insulated the test from its environment.
-
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-
-2011-01-21  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        Fix bug introduced in r76322 that caused NRWT to not actually
-        read the Skipped files properly.
-
-        https://bugs.webkit.org/show_bug.cgi?id=52771
-
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-
-2011-01-21  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Geoffrey Sean Garen and Mark Rowe.
-
-        WebKitTestRunner needs the HOME environment variable to be set.
-        <rdar://problem/8896573>
-
-        * Scripts/old-run-webkit-tests: Set the HOME environment variable if
-        it exists.
-
-2011-01-21  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Suppress a few remaining integration tests so that none of the
-        layout_test unit tests ever read from the filesystem or launch
-        subprocesses that aren't part of the unit tests.
-
-        Also fix a minor bug in the printing unit tests that was
-        incorrectly relying on sys.argv.
-
-        https://bugs.webkit.org/show_bug.cgi?id=52863
-
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-01-21  Darin Adler  <darin@apple.com>
-
-       Fix Mac build.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]): Pass 0 for runModal function.
-
-2011-01-20  Darin Adler  <darin@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        WebKit2: Implement showModalDialog
-        https://bugs.webkit.org/show_bug.cgi?id=52855
-
-        This fixes WebKitTestRunner to compile, but more work is probably
-        needed to get it to pass the tests.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::runModal): Added. Calls through to the
-        platform-specific version of runModal.
-        (WTR::TestController::createOtherPage): Changed to be a private
-        static member function so it can refer to runModal, which is
-        a private static member function.
-        (WTR::TestController::initialize): Pass 0 for the runModal
-        function since we don't need to run the main window modal.
-        I suspect this is wrong and will need to change.
-        * WebKitTestRunner/TestController.h: Added declarations for
-        the functions added above.
-        * WebKitTestRunner/mac/TestControllerMac.mm:
-        (WTR::TestController::runModal): Added. Untested implementation.
-        * WebKitTestRunner/qt/TestControllerQt.cpp:
-        (WTR::TestController::runModal): Added.
-        * WebKitTestRunner/win/TestControllerWin.cpp:
-        (WTR::TestController::runModal): Added.
-
-2011-01-21  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Split Host object off from WebKitPatch for easier re-use
-        https://bugs.webkit.org/show_bug.cgi?id=52284
-
-        new-run-webkit-tests and other tools are eventually going to want one of these.
-        Basically you need to inherit from this class if you want to pretend to be a
-        self.tool object for Steps/Commands.
-
-        * Scripts/webkitpy/common/host.py: Added.
-        * Scripts/webkitpy/tool/main.py:
-
-2011-01-20  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Disable the tests that start and stop the http server and web
-        server, so that we don't have to worry about port collisions on
-        the bots.
-
-        https://bugs.webkit.org/show_bug.cgi?id=52861
-
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-
-2011-01-20  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        nrwt: rewrite google_chrome_unittest to use mock filesystem.
-        
-        https://bugs.webkit.org/show_bug.cgi?id=52772
-        
-        * Scripts/webkitpy/layout_tests/port/google_chrome_unittest.py:
-
-2011-01-20  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Siedel.
-
-        nrwt: clean up almost all remaining port references, remove
-        unnecessary import clauses. The only remaining references are
-        in places where a mock filesystem makes no sense or can't be
-        used, and in one routine in port/google_chrome_unittest that
-        I'll rewrite in a separate patch.
-
-        https://bugs.webkit.org/show_bug.cgi?id=52771
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/google_chrome.py:
-        * Scripts/webkitpy/layout_tests/port/google_chrome_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py:
-
-2011-01-20  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        remove fs refs from run_webkit_tests, rebaseline_chromium_webkit_tests
-
-        https://bugs.webkit.org/show_bug.cgi?id=52762
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-01-20  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        [chromium] fix the paths used for the rebaseline tool
-        https://bugs.webkit.org/show_bug.cgi?id=52857
-
-        Some of the bots were renamed so the path to grab the results zip
-        file has changed.
-
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-
-2011-01-20  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Fix bug introduced in r72688 / bug 52768 that broke the
-        generation of the output filename links in the results.html
-        output. Apparently none of the unit tests actually checked to
-        make sure the generated links were correct :(
-
-        https://bugs.webkit.org/show_bug.cgi?id=52854
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures_unittest.py:
-
-2011-01-20  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=52849
-        Make window.print work with WebKit2
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::createOtherPage):
-        (WTR::TestController::initialize):
-        Added zeroes to WKPageUIClient structures to avoid build failures.
-
-2011-01-20  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        nrwt: remove fs refs from printing, test_failures, test_expectations, text_diff
-
-        https://bugs.webkit.org/show_bug.cgi?id=52756
-
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures.py:
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-
-2011-01-20  Mansi Mithal  <mansi.mithal@nokia.com>
-
-        Reviewed by Antonio Gomes.
-
-        QtTestBrowser should have a seperate menu for Settings
-        https://bugs.webkit.org/show_bug.cgi?id=52817
-        
-        Added a new menu item named "Settings"
-        and moved the "Enable interrupting js scripts" and "Enable js pop up windows" under the "Settings" menu 
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::createChrome):
-
-2011-01-20  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by John Sullivan.
-
-        Update update-webkit-localizable-strings with new path to WebKit.
-
-        * Scripts/update-webkit-localizable-strings:
-
-2011-01-20  James Robinson  <jamesr@chromium.org>
-
-        Reviewed by Darin Fisher.
-
-        Implement mozilla's requestAnimationFrame API
-        https://bugs.webkit.org/show_bug.cgi?id=51218
-
-        Chromium DumpRenderTree support for window.webkitRequestAnimationFrame.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (invokeScheduleComposite):
-        (WebViewHost::scheduleAnimation):
-        (WebViewHost::paintInvalidatedRegion):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2011-01-20  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Adam Roben.
-
-        WebKitTestRunner needs to support layoutTestController.evaluateScriptInIsolatedWorld
-        https://bugs.webkit.org/show_bug.cgi?id=42327
-
-        * WebKitTestRunner/InjectedBundle/Bindings/CodeGeneratorTestRunner.pm: Add support
-        for methods that take their normal arguments but also a JSContextRef.
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl: IDL definition
-        for evaluateScriptInIsolatedWorld.
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::didClearWindowForFrame): Set a magic variable only if
-        this call is for an isolated world.
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::worldMap): Helper to create a world map.
-        (WTR::LayoutTestController::worldIDForWorld): Map from an ID to a world.
-        (WTR::LayoutTestController::evaluateScriptInIsolatedWorld): The newly
-        added LayoutTestController API.
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2011-01-19  Adam Roben  <aroben@apple.com>
-
-        Convert paths in environment variables back to msys-style inside commit-log-editor
-
-        When this script gets run from inside git commit, msys-style paths in the environment will
-        have been turned into Windows-style paths with forward slashes. This screws up functions
-        like File::Spec->rel2abs, which seem to rely on $PWD having an msys-style path. We convert
-        the paths back to msys-style before doing anything else.
-
-        Fixes <http://webkit.org/b/48527> commit-log-editor uses full paths for section headers when
-        using msysgit's Perl and multiple ChangeLogs have been edited
-
-        Reviewed by David Kilzer.
-
-        * Scripts/commit-log-editor: Call fixEnvironment before doing anything else.
-        (fixEnvironment): Added. When run in msys in conjunction with git (i.e., when invoked from
-        inside git commit), convert Windows-style paths in the environment back to msys-style paths.
-
-2011-01-20  Zoltan Horvath  <zoltan@webkit.org>
-
-        [Win] Unreviewed build fix after r76248.
-
-        * DumpRenderTree/ForwardingHeaders/wtf/FastAllocBase.h: Added.
-
-2011-01-20  Zoltan Horvath  <zoltan@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        Refactoring of the custom allocation framework
-        https://bugs.webkit.org/show_bug.cgi?id=49897
-
-        Inheriting from FastAllocBase can result in objects getting larger (bug #33896, #46589).
-        The modification replaces Noncopyable and FastAllocBase classes and these inherits with their
-        equivalent macro implementation at the necessary places.
-2011-01-20  Yi Shen  <yi.4.shen@nokia.com>
-
-        Unreviewed. 
-
-        Adding myself to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-01-20  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Tony Chang.
-
-        Chromium builders don't delete unversioned directories when DEPS change
-        https://bugs.webkit.org/show_bug.cgi?id=52745
-
-        If we pass this option to gclient sync, gclient will delete directories
-        that are no longer part of DEPS instead of leaving them around to
-        confuse us later.  Apparently, the downstream buildbots use this option
-        already.
-
-        * Scripts/update-webkit-chromium:
-
-2011-01-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix - I pulled this patch in to fix an issue
-        revealed by r76195 running on some new bots). Also fix a couple
-        of other issues revealed in testing.
-
-        nrwt: remove fs refs from layout_package/json*
-
-        https://bugs.webkit.org/show_bug.cgi?id=52754
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-
-2011-01-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        Fix a couple of minor bugs discovered while bringing up new bots
-        for testing.
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-01-19  James Robinson  <jamesr@chromium.org>
-
-        Unreviewed, rolling out r76194.
-        http://trac.webkit.org/changeset/76194
-        https://bugs.webkit.org/show_bug.cgi?id=51218
-
-        Caused mysterious compile failure on the chromium win
-        build.webkit.org bots
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::paintInvalidatedRegion):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2011-01-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        remove fs refs from test_runner, dump_render_tree_thread
-
-        https://bugs.webkit.org/show_bug.cgi?id=52753
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-01-19  James Robinson  <jamesr@chromium.org>
-
-        Reviewed by Darin Fisher.
-
-        Implement mozilla's requestAnimationFrame API
-        https://bugs.webkit.org/show_bug.cgi?id=51218
-
-        Chromium DumpRenderTree support for window.webkitRequestAnimationFrame.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (invokeScheduleComposite):
-        (WebViewHost::scheduleAnimation):
-        (WebViewHost::paintInvalidatedRegion):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2011-01-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        Fix a few incorrect "self._filesystem" references introduced in
-        r76184.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-
-2011-01-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        add a .sep property, abspath(), isabs(), mtime(), and
-        open_text_file_for_writing() to filesystem modules. Some of
-        these properties are not needed in this patch but will be needed
-        in subsequent patches (I'm doing this to avoid having to track
-        multiple versions of a single file).
-
-        Also, change most of the port/* modules to use the filesystem
-        objects instead of referencing the filesystem directly.
-
-        https://bugs.webkit.org/show_bug.cgi?id=52748
-
-        * Scripts/webkitpy/common/system/filesystem.py:
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        * Scripts/webkitpy/layout_tests/port/__init__.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/config.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/test_files_unittest.py:
-
-2011-01-19  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Anders Carlsson.
-
-        If resetting between tests times out, treat it as a WebProcess crash
-        https://bugs.webkit.org/show_bug.cgi?id=52757
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::runTest):
-
-2011-01-19  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=52739
-        Make it possible for a WebKit2 client to print headers and footers
-
-        Added dummy implementations for new printing UIClient calls.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::createOtherPage):
-        (WTR::TestController::initialize):
-
-2011-01-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Change webkitpy/layout_tests/port/test.py to use the
-        in-memory filesystem for cleaner unit testing. This
-        change allows us to kill a lot of code that was
-        specific to the test port, at the cost of being a
-        little less clear about how things would work if
-        you didn't have a filesystem.
-
-        https://bugs.webkit.org/show_bug.cgi?id=52605
-
-        * Scripts/webkitpy/layout_tests/port/test.py:
-
-2011-01-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        Fix test failure caused by committing attachment 79368 instead
-        of attachment 79461 on bug 52604.
-
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-
-2011-01-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        new-run-webkit-tests: remove use of os.walk, use mock filesystem for better
-        unit testing. os.walk() is too much of a hassle to implement on
-        top of the in-memory mock filesystem and adding the necessary
-        interface to files_under() gives clients a cleaner API anyway
-        (for this particular usage model).
-
-        https://bugs.webkit.org/show_bug.cgi?id=52691
-
-        * Scripts/webkitpy/common/system/filesystem.py:
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        * Scripts/webkitpy/layout_tests/port/test_files.py:
-        * Scripts/webkitpy/layout_tests/port/test_files_unittest.py:
-
-2011-01-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Change more modules in the layout-tests code to use the
-        filesystem wrapper for cleaner unit testing.
-
-        This patch also adds the glob() wrapper to the filesystem
-        abstraction.
-        
-        https://bugs.webkit.org/show_bug.cgi?id=52604
-
-        * Scripts/webkitpy/layout_tests/port/test_files.py:
-        * Scripts/webkitpy/layout_tests/port/test_files_unittest.py:
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py:
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/common/system/filesystem.py:
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-
-2011-01-19  Levi Weintraub  <leviw@chromium.org>
-
-        Unreviewed.
-
-        Updating my email addresses and irc nick.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-01-19  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        [chromium] [linux] if check-sys-deps fails, output the failure reason
-        https://bugs.webkit.org/show_bug.cgi?id=52671
-
-        * Scripts/webkitpy/common/system/executive_mock.py: Add support for
-            error handler functions.
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-            output the error text from --check-sys-deps
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-
-2011-01-19  Aparna Nandyal  <aparna.nand@wipro.com>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] QtTestBrowser crashes when closing if Facebook is opened
-        https://bugs.webkit.org/show_bug.cgi?id=52554
-        
-        QtNetworkAccessManager is created in a thread and set as
-        member variable in QWebPage. When the thread is destroyed
-        the object is still used. So fix will set the object to
-        NULL once the thread is destroyed.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::~LauncherWindow):
-
-2011-01-18  Maciej Stachowiak  <mjs@apple.com>
-
-        Rubber stamped by Csaba Osztrogonac
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp: Removed unncessary inculde of WKStringCF.h
-
-2011-01-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: add a --build-directory command line argument
-
-        Official Google Chrome builds use a non-standard build directory
-        location. This patch adds a --build-directory argument that
-        allows that location to be specified on the command line. Only
-        Chromium-based builds will use this flag for now, but anyone can
-        in the future.
-
-        There are no unit tests for this since it's difficult to test
-        until mock filesystems are fully supported in the code. This was
-        tested by hand for now.
-
-        https://bugs.webkit.org/show_bug.cgi?id=52694
-
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-01-18  Maciej Stachowiak  <mjs@apple.com>
-
-        Not reviewed. Bot fix.
-
-        Remove an inadvertently committed debugging print.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::notifyDone):
-
-2011-01-18  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        WebKitTestRunner should track loading more like DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=52692
-
-        Change load tracking to track the current top loading frame, in the manner of DumpRenderTree.
-        This makes some tests that call notifyDone multiple times pass.
-        
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::InjectedBundle):
-        (WTR::InjectedBundle::done):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (WTR::InjectedBundle::topLoadingFrame):
-        (WTR::InjectedBundle::setTopLoadingFrame):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        (WTR::InjectedBundlePage::stopLoading):
-        (WTR::InjectedBundlePage::didStartProvisionalLoadForFrame):
-        (WTR::InjectedBundlePage::didFailProvisionalLoadWithErrorForFrame):
-        (WTR::InjectedBundlePage::didFinishLoadForFrame):
-        (WTR::InjectedBundlePage::didFailLoadWithErrorForFrame):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::notifyDone):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::didReceiveMessageFromInjectedBundle):
-
-2011-01-18  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [Chromium] NRWT looking for DRT binary in the wrong path on Mac
-        https://bugs.webkit.org/show_bug.cgi?id=52678
-        
-        Update path now that WebKit is inside Source.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-
-2011-01-18  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] http/tests/incremental/slow-utf8-text.pl fails
-        https://bugs.webkit.org/show_bug.cgi?id=44282
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::dump):
-
-2011-01-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        Fix a small race condition that could cause the unit tests for
-        new-run-webkit-tests to fail in a multithreaded environment.
-        There was a small window in the code where one thread would
-        check to see if a thread had raised an exception, do something,
-        and then check to see if the thread was alive. If the other
-        thread raised an exception and exited in between these two
-        steps, the exception would be lost. Flipping the order of the
-        two checks fixes the race, since we will now always check for an
-        exception on the thread before exiting.
-
-        https://bugs.webkit.org/show_bug.cgi?id=51579
-
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker.py:
-
-2011-01-18  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue dies when test archiving fails
-        https://bugs.webkit.org/show_bug.cgi?id=52617
-
-        I looked at the machine and it had 10 archives already
-        thus find_unused_name was returning None.  I've upped
-        the limit to 100 (per bug) and tested the case where
-        find_unused_name returns None (making archive return None).
-
-        * Scripts/webkitpy/common/system/workspace.py:
-        * Scripts/webkitpy/common/system/workspace_unittest.py:
-        * Scripts/webkitpy/tool/bot/commitqueuetask.py:
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-
-2011-01-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Update rebaseline-chromium-webkit-tests unit tests to use a mock
-        filesystem. Also fix a couple of "with" statements missed by
-        r76050.
-
-        https://bugs.webkit.org/show_bug.cgi?id=52487
-
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests_unittest.py:
-
-2011-01-18  Sergio Villar Senin  <svillar@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [Gtk] Build fixes for gtk3 build
-        https://bugs.webkit.org/show_bug.cgi?id=52648
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (beginDragWithFilesCallback):
-
-2011-01-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        Update rebaseline-chromium-webkit-tests to use filesystem objects
-        instead of direct references to os.path, shutil, tempfile, etc.
-
-        This patch doesn't change anything, but will allow subsequent
-        patches to change the unit tests to no longer use the real
-        filesystem.
-
-        This patch adds a bunch more methods to the filesystem object as
-        well.
-
-        https://bugs.webkit.org/show_bug.cgi?id=52482
-
-        * Scripts/webkitpy/common/system/filesystem.py:
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests_unittest.py:
-
-2011-01-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        new-run-webkit-tests shouldn't crash when you try to run a
-        directory containing only skipped files.
-
-        https://bugs.webkit.org/show_bug.cgi?id=52478
-        
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-01-18  Adam Bergkvist  <adam.bergkvist@ericsson.com> and Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        [GTK] The GTK+ EventSender needs support for beginDragWithFiles
-        https://bugs.webkit.org/show_bug.cgi?id=40833
-
-        * DumpRenderTree/gtk/EventSender.cpp: Add a beginDragWithFiles implementation for the
-        GTK+ event sender.
-        (dragWithFilesDragDataGetCallback): Added.
-        (dragWithFilesDragEndCallback): Added.
-        (beginDragWithFilesCallback): Added.
-
-2011-01-18  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Reviewed by Adam Barth.
-
-        ews: Add additional watcher to efl ews
-        https://bugs.webkit.org/show_bug.cgi?id=52613
-
-        Add gyuyoung.kim@samsung.com to watcher list of efl-ews.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-
-2011-01-17  Tony Gentilcore  <tonyg@chromium.org>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Fix some headers with missing or misspelled #ifndef guards
-        https://bugs.webkit.org/show_bug.cgi?id=52545
-
-        * DumpRenderTree/chromium/TestEventPrinter.h:
-        * DumpRenderTree/chromium/WebPreferences.h:
-
-2011-01-17  Jessie Berlin  <jberlin@apple.com>
-
-        Reviewed by Anders Carlsson.
-
-        REGRESSION: Assertion failure in FrameLoader::continueLoadAfterWillSubmitForm() when
-        navigating back to an unreachable URL
-        https://bugs.webkit.org/show_bug.cgi?id=52388
-
-        Add a third parameter (unreachableURL) to queueLoadHTMLString.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (queueLoadHTMLStringCallback):
-        (LayoutTestController::queueLoadHTMLString):
-        (LayoutTestController::queueLoadAlternateHTMLString):
-        * DumpRenderTree/LayoutTestController.h:
-
-        * DumpRenderTree/WorkQueueItem.h:
-        (LoadHTMLStringItem::LoadHTMLStringItem):
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (WorkItemLoadHTMLString::WorkItemLoadHTMLString):
-        (WorkItemLoadHTMLString::run):
-        (LayoutTestController::queueLoadHTMLString):
-
-        * DumpRenderTree/gtk/WorkQueueItemGtk.cpp:
-        (LoadHTMLStringItem::invoke):
-        * DumpRenderTree/mac/WorkQueueItemMac.mm:
-        (LoadHTMLStringItem::invoke):
-        * DumpRenderTree/win/WorkQueueItemWin.cpp:
-        (LoadHTMLStringItem::invoke):
-
-2011-01-17  Dan Bernstein  <mitz@apple.com>
-
-        Rubber-stamped by Mark Rowe.
-
-        Update xcodeproj svn:ignore to include xcuserdata.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj: Modified property svn:ignore.
-        * MiniBrowser/MiniBrowser.xcodeproj: Modified property svn:ignore.
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj: Modified property svn:ignore.
-        * WebKitLauncher/WebKitLauncher.xcodeproj: Modified property svn:ignore.
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj: Modified property svn:ignore.
-
-2011-01-17  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed fix after r75908.
-
-        Move WebKit into Source
-        https://bugs.webkit.org/show_bug.cgi?id=52530
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Add Source to the path for Qt API tests.
-
-2011-01-17  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed.
-
-        Remove accidentally committed debug printing after r75908.
-
-        * Scripts/webkitdirs.pm:
-
-2011-01-17  John Knottenbelt  <jknotten@chromium.org>
-
-        Unreviewed.
-
-        Add myself to committers list
-        https://bugs.webkit.org/show_bug.cgi?id=52566
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-01-17  John Knottenbelt  <jknotten@chromium.org>
-
-        Reviewed by Jeremy Orlow.
-
-        GeolocationController should call stopUpdating on destruction
-        https://bugs.webkit.org/show_bug.cgi?id=52216
-
-        fast/dom/Geolocation/window-close-crash.html requires that a
-        Geolocation watch be started in a secondary window. Consequently,
-        we need to allow geolocation permission and provide a mock
-        geolocation position for the secondary window's
-        GeolocationClientMock.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::setGeolocationPermission):
-        (LayoutTestController::setMockGeolocationPosition):
-        (LayoutTestController::setMockGeolocationError):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::windowList):
-
-2011-01-16  Adam Barth  <abarth@webkit.org>
-
-        Update more include paths to reflect WebKit move.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::keyDown):
-        (EventSender::needsShiftModifier):
-        * DumpRenderTree/chromium/WebThemeEngineDRTMac.h:
-        * DumpRenderTree/chromium/WebThemeEngineDRTMac.mm:
-
-2011-01-16  Kent Tamura  <tkent@chromium.org>
-
-        Unreviewed, Chromium build fix.
-
-        * Scripts/update-webkit-chromium: Webkit/chromium -> Source/WebKit/chromium
-
-2011-01-16  Martin Robinson  <mrobinson@igalia.com>
-
-        Build fix for GTK+ after source directory movement.
-
-        * GNUmakefile.am: Correct include paths.
-
-2011-01-16  Adam Barth  <abarth@webkit.org>
-
-        Teach svn-apply about WebKit move.
-
-        * Scripts/VCSUtils.pm:
-
-2011-01-16  Adam Barth  <abarth@webkit.org>
-
-        Rubber-stamped by Eric Seidel.
-
-        Move WebKit into Source
-        https://bugs.webkit.org/show_bug.cgi?id=52530
-
-        * DumpRenderTree/mac/InternalHeaders/WebKit/WebTypesInternal.h:
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        * DumpRenderTree/qt/GCControllerQt.cpp:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        * DumpRenderTree/qt/PlainTextControllerQt.cpp:
-        * DumpRenderTree/qt/TextInputControllerQt.cpp:
-        * DumpRenderTree/wscript:
-        * QtTestBrowser/launcherwindow.h:
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-
-2011-01-15  Adam Barth  <abarth@webkit.org>
-
-        Teach svn-apply about WebKit2 move.
-
-        * Scripts/VCSUtils.pm:
-
-2011-01-15  Adam Barth  <abarth@webkit.org>
-
-        Rubber-stamped by Eric Seidel.
-
-        Move WebKit2 into Source
-        https://bugs.webkit.org/show_bug.cgi?id=52438
-
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * Scripts/build-webkit:
-        * Scripts/do-file-rename:
-        * Scripts/do-webcore-rename:
-        * Scripts/test-webkitpy:
-        * Scripts/webkitdirs.pm:
-        * Scripts/webkitpy/style/checker.py:
-        * WebKitTestRunner/DerivedSources.pro:
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro:
-        * WebKitTestRunner/qt/WebKitTestRunner.pro:
-
-2011-01-15  Jochen Eisinger  <jochen@chromium.org>
-
-        Reviewed by David Levin.
-
-        [chromium] remove obsolete createView method
-        https://bugs.webkit.org/show_bug.cgi?id=52437
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createView):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2011-01-14  Brian Weinstein  <bweinstein@apple.com>
-
-        Reviewed by Geoff Garen.
-
-        ShouldLoadResourceForFrame should use strings, not URLs.
-        https://bugs.webkit.org/show_bug.cgi?id=52476
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::shouldLoadResourceForFrame): Update to use a WKStringRef.
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-
-2011-01-14  Tony Gentilcore  <tonyg@chromium.org>
-
-        Reviewed by David Levin.
-
-        Add Tony Gentilcore as a reviewer
-        https://bugs.webkit.org/show_bug.cgi?id=52480
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-01-14  David Levin  <levin@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        check-webkit-style: _FunctionState should keep track of where the function name starts.
-        https://bugs.webkit.org/show_bug.cgi?id=52454
-
-        * Scripts/webkitpy/style/checkers/cpp.py: Added function_name_start_position to
-        _FunctionState and logic for setting it correctly.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Added tests.
-
-2011-01-14  Vincent Scheib  <scheib@chromium.org>
-
-        Reviewed by David Levin.
-
-        Add support to DumpRenderTree to use the GPU rather than software renderer
-        https://bugs.webkit.org/show_bug.cgi?id=52333
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-01-14  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [chromium] update fonts.conf to fix 6 linux tests in drt
-        https://bugs.webkit.org/show_bug.cgi?id=52411
-
-        * DumpRenderTree/chromium/fonts.conf: Update to match the copy in
-            chromium's src/webkit/tools/test_shell/resources/fonts.conf
-
-2011-01-14  Eric Seidel  <eric@webkit.org>
-
-        Original patch from Peter Gal  <galpater@inf.u-szeged.hu>
-
-        Reviewed by Adam Barth.
-
-        Fix when running Tools/Scripts/check-webkit-style without arguments.
-        https://bugs.webkit.org/show_bug.cgi?id=52261#c16
-
-        * Scripts/webkitpy/common/checkout/scm.py: Handle None for changed_files argument better in Git.create_patch method.
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-
-2011-01-04  Jochen Eisinger  <jochen@chromium.org>
-
-        Reviewed by David Levin.
-
-        Store the tempdir object in a variable so it doesn't get deleted too early.
-        https://bugs.webkit.org/show_bug.cgi?id=51875
-
-        * Scripts/update-webkit-auxiliary-libs:
-        * Scripts/update-webkit-support-libs:
-
-2011-01-14  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Make it work in python 2.5.
-
-        webkit-patch suggest-reviewers dies when ChangeLogs are missing
-        https://bugs.webkit.org/show_bug.cgi?id=49158
-
-        * Scripts/webkitpy/common/checkout/api_unittest.py:
-
-2011-01-14  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r75774.
-        http://trac.webkit.org/changeset/75774
-        https://bugs.webkit.org/show_bug.cgi?id=52431
-
-        gtk builds were broken (Requested by loislo2 on #webkit).
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-
-2011-01-14  David Levin  <levin@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        check-webkit-style: _FunctionState should detect pure functions.
-        https://bugs.webkit.org/show_bug.cgi?id=52428
-
-        * Scripts/webkitpy/style/checkers/cpp.py: Added detection for if a function declaration
-        is a pure virtual function.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Added tests for verifying that pure
-        virtual functions are correctly detected.
-
-2011-01-13  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Reviewed by Yury Semikhatsky.
-
-        Just small fix for problem with check-webkit-style.
-        It just didn't work for this patch.
-        Old code can't concatenate a list of strings with None.
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-
-2011-01-13  David Levin  <levin@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        check-webkit-style: _FunctionState should use Position to know where items are.
-        https://bugs.webkit.org/show_bug.cgi?id=52424
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (_FunctionState.*): Changed _FunctionState to use Position instead of line numbers.
-        (detect_functions): Changed to pass Position's to _FunctionState.begin and
-        did some minor clean-up.
-        (*): Other changes are simply about converting to use the Position's in_FunctionState
-        instead of line numbers.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Changed the test code
-        to verify the positions stored in _FunctionState.
-
-2011-01-13  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Levin.
-
-        webkit-patch suggest-reviewers dies when ChangeLogs are missing
-        https://bugs.webkit.org/show_bug.cgi?id=49158
-
-        This is not the most elegant, but it is a very safe fix to this bug.
-        One advantage of catching ScriptError like this instead of adding a
-        new added_or_modified_files or fixing all changed_files callers
-        to use a more specific change_files variant, is that we catch
-        all kinds of ScriptErrors which might cause our (non-essential)
-        suggest-reviewers code to fail out.  This should make passing
-        --suggest-reviewers to webkit-patch upload much more robust
-        and may even make it possible for us to make it default.
-
-        The root of the problem here is that SCM.changed_files includes
-        deleted ChangeLog paths (from moves, etc) which then when we ask
-        SVN/Git for the contents of the file at that revision, the command
-        errors out and Executive.run_command raises a ScriptError.
-
-        In the future we might fix this differently by making all current
-        callers of chagned_files use a more specific method for requesting
-        what types of changes they're interested in (adds, modifies, deletes, etc.)
-
-        * Scripts/webkitpy/common/checkout/api.py:
-        * Scripts/webkitpy/common/checkout/api_unittest.py:
-
-2011-01-13  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        <rdar://problem/8827065> REGRESSION (r71884): Cross-origin XHR fails if willSendRequest changes the URL
-        https://bugs.webkit.org/show_bug.cgi?id=52419
-
-        Allow to further control the behavior of the willSendRequest delegate callback by making it
-        set a different URL in the new request.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (addURLToRedirectCallback): Added.
-        (LayoutTestController::staticFunctions): Added addURLToRedirect.
-        (LayoutTestController::addURLToRedirect): Added. Adds the redirection to the map.
-        (LayoutTestController::redirectionDestinationForURL): Added this getter.
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        (-[ResourceLoadDelegate webView:resource:willSendRequest:redirectResponse:fromDataSource:]): Check
-        if there is a redirection for the request’s URL, established by addURLToRedirect(), and if so,
-        change the URL in the new request to the redirect destination.
-
-2011-01-13  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Mihai Parparita.
-
-        webkit-patch suggest-reviewers fails due to invalid utf8 in ChangeLog files
-        https://bugs.webkit.org/show_bug.cgi?id=52416
-
-        Example: webkit-patch suggest-reviewers -g ca3890fe74d94d85d6bfa48f9ea497b094d8e717 
-        UnicodeDecodeError: 'utf8' codec can't decode bytes in position 536-538: invalid data
-
-        I also added FIXMEs about the changed_files returning deleted files problem
-        which is causing the other most common exception for suggest-reviewers
-        (and is probably breaking sheriff-bots blame detection).
-
-        * Scripts/webkitpy/common/checkout/api.py:
-        * Scripts/webkitpy/common/checkout/api_unittest.py:
-        * Scripts/webkitpy/common/checkout/scm.py:
-
-2011-01-13  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        results archives from commit-queue are too large to upload
-        https://bugs.webkit.org/show_bug.cgi?id=52405
-
-        * Scripts/webkitpy/common/system/filesystem.py:
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-
-2011-01-13  Alejandro G. Castro  <alex@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [gtk] Zero-sized font does not yet work
-        https://bugs.webkit.org/show_bug.cgi?id=49793
-
-        Set minimum-font-size to 0 for the DRT.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-
-2011-01-13  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Make old-run-webkit-tests more robust on buildbots
-        https://bugs.webkit.org/show_bug.cgi?id=52364
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Pass --exit-after-n-failures 500 to old-run-webkit-tests script.
-
-2011-01-13  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Make old-run-webkit-tests more robust on buildbots
-        https://bugs.webkit.org/show_bug.cgi?id=52364
-
-        * Scripts/old-run-webkit-tests: Ensure that testResultsDirectory is empty.
-
-2011-01-13  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [chromium] fix plugins/plugin-javascript-access.html on Linux and Mac
-        https://bugs.webkit.org/show_bug.cgi?id=52332
-
-        Forked Info.plist is not longer needed.
-
-        * DumpRenderTree/chromium/TestNetscapePlugIn/Info.plist: Removed.
-
-2011-01-13  Mikhail Naganov  <mnaganov@chromium.org>
-
-        Reviewed by Timothy Hatcher.
-
-        Web Inspector: Cleanup after r75613 -- make all UI-facing strings
-        to be passed directly to WebInspector.UIString
-
-        https://bugs.webkit.org/show_bug.cgi?id=52365
-
-        * Scripts/check-inspector-strings:
-
-2011-01-13  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r74881.
-        http://trac.webkit.org/changeset/74881
-        https://bugs.webkit.org/show_bug.cgi?id=52357
-
-        The EFL builder has been red for days (Requested by abarth on
-        #webkit).
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-
-2011-01-12  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by David Levin.
-
-        Add beforeunload support to WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=52353
-        
-        This makes a number of currently failing tests pass.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::runBeforeUnloadConfirmPanel):
-        (WTR::createOtherPage):
-        (WTR::TestController::initialize):
-
-2011-01-12  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Detect, identify and recover from WebProcess crashes in run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=52330
-
-        * Scripts/old-run-webkit-tests: Detect when the regression test tool reports
-        a web process crash.
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize): Set up a processDidCrash
-        callback.
-        (WTR::TestController::processDidCrash): Report that the Web process
-        crashed.
-        * WebKitTestRunner/TestController.h:
-
-2011-01-12  David Levin  <levin@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        check-webkit-style -- close_expression function doesn't work correctly.
-        https://bugs.webkit.org/show_bug.cgi?id=52272
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (Position.__str__): Added a way to convert it to a string which is useful in tests.
-        (Position.__cmp__): Added a way to compare Position which is useful in tests and
-        generally useful (for upcoming code changes).
-        (close_expression): Changed to use Position for input and output.
-        Also, fixed many bugs such as only working correctly for parenthesis,
-        not working correctly if given an offset in a line and not finding
-        the real closing element if there were multiple closing elements in
-        the same line.
-        (detect_functions): Adjusted due to the change in arguments for
-        close_expression.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (CppStyleTestBase.assert_positions_equal): Added a way to verify that
-        two positions are the same.
-        (CppStyleTest.test_position): Added tests for the __str_ and __cmp__ methods.
-        (CppStyleTest.test_close_expression): Added tests to catch the issues
-        that were fixed.
-
-2011-01-12  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r75576.
-        http://trac.webkit.org/changeset/75576
-        https://bugs.webkit.org/show_bug.cgi?id=52304
-
-        broke rebaseline-chromium-webkit-test (Requested by thakis on
-        #webkit).
-
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-
-2011-01-12  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Add a no-build option to run-webkit-tests, to avoid building DRT/WKTR
-        https://bugs.webkit.org/show_bug.cgi?id=52307
-
-        * Scripts/old-run-webkit-tests:
-
-2011-01-12  Koan-Sin Tan  <koansin.tan@gmail.com>
-
-        Reviewed by Martin Robinson.
-
-        [Gtk] WebKitGtk+ doesn't build on Mac OS X 10.6
-        https://bugs.webkit.org/show_bug.cgi?id=50867
-
-        Fixed library extention for Mac in webkitdirs.pm and type conflict in
-        TestNetscapePlugin.cpp 
-
-        * GNUmakefile.am: Don't use AppKit when compiling TestNetscapePlugin for GTK+
-        * Scripts/webkitdirs.pm:
-
-2011-01-12  Mikhail Naganov  <mnaganov@chromium.org>
-
-        Reviewed by Pavel Feldman.
-
-        Add check-inspector-strings script.
-
-        https://bugs.webkit.org/show_bug.cgi?id=52295
-
-        * Scripts/check-inspector-strings: Added.
-
-2011-01-12  Adam Roben  <aroben@apple.com>
-
-        Advertise the .testnetscape file extension on Windows
-
-        Fixes <http://webkit.org/b/52298>
-        plugins/no-mime-with-valid-extension.html fails on Windows
-
-        Reviewed by Dan Bernstein.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.rc: Added a
-        FileExtents field to map the .testnetscape file extension to the
-        application/x-webkit-test-netscape MIME type, just as we do on Mac.
-
-2011-01-12  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Make webkit-patch support subdirectories for SVN checkouts
-        https://bugs.webkit.org/show_bug.cgi?id=52261
-
-        os.relpath does not exist on Python 2.5, so we need to call our version
-        of the API.
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-
-2011-01-11  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Eric Seidel.
-
-        Close additional pages opened during a test once the test completes.
-        https://bugs.webkit.org/show_bug.cgi?id=52276
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::done):
-
-2011-01-11  David Levin  <levin@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Errors should be separated from the command line in bot messages.
-        https://bugs.webkit.org/show_bug.cgi?id=52275
-
-        * Scripts/webkitpy/common/system/executive.py:
-        (ScriptError.message_with_output): Added a newline to separate the command
-        line from the errors.
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        (ScriptErrorTest.test_message_with_output): Added tests for the various code
-        paths in message_with_output.
-
-2011-01-11  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.
-
-        commit-queue should know how to upload archived results (for test flakes or general failures)
-        https://bugs.webkit.org/show_bug.cgi?id=52048
-
-        The zips are mostly empty due to forgetting -r.
-        Expected diffs were not being pulled from the archive due
-        to the archive having longer paths than I realized.
-
-        * Scripts/webkitpy/common/system/workspace.py:
-        * Scripts/webkitpy/common/system/workspace_unittest.py:
-        * Scripts/webkitpy/tool/bot/flakytestreporter.py:
-        * Scripts/webkitpy/tool/bot/flakytestreporter_unittest.py:
-
-2011-01-11  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        The current modifier parsing code in test_expectations is
-        fragile and hard-coded, so it's not easy to understand the logic
-        or easily add new types of modifiers (like GPU vs. CPU testing
-        for graphics tests, or 32-bit vs. 64-bit differences).
-
-        This is the first of two patches that will add in more generic
-        support and then eliminate the GPU-specific test expectations
-        files for Chromium.
-
-        This patch adds two standalone objects for handling modifiers. The
-        rules for interpreting modifiers, precedence, and conflicts are
-        given in the docstring to the ModifierMatcher class, which
-        returns ModifierMatchResult objects.
-        
-        This patch also adds routines to the Port interface and a
-        default set of values in the base object, in order to obtain the
-        values needed on a given test run. These values are then passed
-        to the expectation parser. This also allows us to clean up the
-        logic used to lint all of the different configurations in a
-        single test_expectations.txt file.
-
-        The next patch will merge in the separate GPU expectations file.
-
-        https://bugs.webkit.org/show_bug.cgi?id=51222
-
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-01-11  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Adam Barth.
-
-        Make webkit-patch support subdirectories for SVN checkouts
-        https://bugs.webkit.org/show_bug.cgi?id=52261
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/style_references.py:
-        * Scripts/webkitpy/tool/main.py:
-        * Scripts/webkitpy/tool/steps/preparechangelog.py:
-
-2011-01-11  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.
-
-        commit-queue should know how to upload archived results (for test flakes or general failures)
-        https://bugs.webkit.org/show_bug.cgi?id=52048
-
-        I changed the API for archive_last_layout_test_results w/o updating the implementation.  Oops.
-        This fixes an exception seen on the commit-queue when attempting to report flaky tests.
-
-        * Scripts/webkitpy/common/system/workspace.py:
-        * Scripts/webkitpy/common/system/workspace_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-
-2011-01-11  Sam Weinig  <sam@webkit.org>
-
-        Roll r75474 back in.
-
-2011-01-11  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Remove uses of QFuture since it isn't supported on all platforms.
-        https://bugs.webkit.org/show_bug.cgi?id=51204
-
-        * QtTestBrowser/webpage.h:
-        (QtNAMThread::QtNAMThread):
-        (QtNAMThread::networkAccessManager):
-        (QtNAMThread::run):
-
-2011-01-11  Peter Varga  <pvarga@webkit.org>
-
-        Unreviewed.
-
-        Add myself to committers' list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-01-11  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue should know how to upload archived results (for test flakes or general failures)
-        https://bugs.webkit.org/show_bug.cgi?id=52048
-
-        Now the queue will always upload results.  Either the entire zip, or just
-        the diffs.txt in the case of text failures.
-
-        This should make understanding flakes much easier, and paves the way
-        for having the EWS run layout tests (and upload failures).
-
-        In order to upload .zip files I had to teach bugzilla.py to autodetect
-        mime types from the filename.  Since mimetypes.py doesn't include a mapping
-        for .patch files, I have it add one before calling guess_type.
-
-        We may find that always uploading the whole zip instead of just the -diffs.txt
-        file is preferable, but for now I'm keeping the old behavior because it makes
-        quickly understanding text failures easy.
-
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        * Scripts/webkitpy/common/system/workspace.py: Added.
-        * Scripts/webkitpy/common/system/workspace_unittest.py: Added.
-        * Scripts/webkitpy/tool/bot/commitqueuetask.py:
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-        * Scripts/webkitpy/tool/bot/flakytestreporter.py:
-        * Scripts/webkitpy/tool/bot/flakytestreporter_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2011-01-10  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r75464.
-        http://trac.webkit.org/changeset/75464
-        https://bugs.webkit.org/show_bug.cgi?id=52193
-
-        Followup rollout for 75474 (Requested by Ossy on #webkit).
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * MiniBrowser/win/BrowserView.cpp:
-        (BrowserView::create):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::createOtherPage):
-        (WTR::TestController::initialize):
-
-2011-01-10  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt] Baseline qt_minimal configuration
-        https://bugs.webkit.org/show_bug.cgi?id=51313
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting): Add
-        QT_NO_UNDOSTACK guard.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::createChrome): Add QT_NO_SHORTCUT and QT_NO_PRINTER
-        guards.
-        (LauncherWindow::applyZoom): Add QT_NO_ANIMATION guard.
-        (LauncherWindow::screenshot): Add QT_NO_FILEDIALOG guard.
-        (LauncherWindow::selectElements): Add QT_NO_INPUTDIALOG guard.
-        (LauncherWindow::showUserAgentDialog): Add QT_NO_COMBOBOX guard.
-
-        * QtTestBrowser/launcherwindow.h:
-        * QtTestBrowser/locationedit.cpp: Add QT_NO_INPUTDIALOG guard.
-        * QtTestBrowser/locationedit.h: Ditto.
-
-        * QtTestBrowser/mainwindow.cpp:
-        (MainWindow::buildUI): Add QT_NO_INPUTDIALOG, QT_NO_SHORTCUT and
-        QT_NO_UNDOSTACK guards.
-        (MainWindow::setAddressUrl): Add QT_NO_INPUTDIALOG guard.
-        (MainWindow::changeLocation): Ditto.
-        (MainWindow::openFile): Add QT_NO_FILEDIALOG guard.
-        (MainWindow::openLocation): Add QT_NO_INPUTDIALOG guard.
-
-        * QtTestBrowser/webpage.cpp:
-        (WebPage::openUrlInDefaultBrowser): Add QT_NO_DESKTOPSERVICES guard.
-        (WebPage::authenticationRequired): Add QT_NO_LINEEDIT guard.
-
-        * QtTestBrowser/webview.cpp:
-        (WebViewGraphicsBased::animatedFlip): Add QT_NO_ANIMATION guard.
-        (WebViewGraphicsBased::animatedYFlip): Ditto.
-
-2011-01-10  Sam Weinig  <sam@webkit.org>
-
-        Fix build.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * MiniBrowser/win/BrowserView.cpp:
-        (BrowserView::create):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::createOtherPage):
-        (WTR::TestController::initialize):
-
-2011-01-10  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Ojan Vafai.
-
-        style-queue messages are way too long for big patches
-        https://bugs.webkit.org/show_bug.cgi?id=52161
-
-        We definitely could build much fancier list-to-string-with-limit functions
-        but this should be sufficient for our needs at the moment.
-
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-
-2011-01-10  Tony Chang  <tony@chromium.org>
-
-        Unreviewed, rolling out r75398.
-        http://trac.webkit.org/changeset/75398
-        https://bugs.webkit.org/show_bug.cgi?id=52008
-
-        Some layout tests are crashing on Chromium Win.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::updatePaintRect):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2011-01-10  Adam Roben  <aroben@apple.com>
-
-        Roll out r75392
-
-        It isn't needed now that r75289 has been rolled out.
-
-        * Scripts/run-javascriptcore-tests:
-
-2011-01-10  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Anders Carlsson.
-
-        WebKitTestRunner uses crazy amounts of CPU, making layout tests slow and flaky
-        https://bugs.webkit.org/show_bug.cgi?id=52160
-
-        * WebKitTestRunner/mac/TestControllerMac.mm:
-        (WTR::TestController::platformRunUntil): Instead of busy-looping, wait for the timeout.
-        Anything that can make runUntil() conditions turn true will happen on a run loop cycle
-        anyway.
-
-2011-01-10  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        [chromium] fix for animated gif layout tests
-        https://bugs.webkit.org/show_bug.cgi?id=52008
-
-        * DumpRenderTree/chromium/WebViewHost.cpp: Schedule a paint when we update the paint rect
-            to trigger gif animations.
-        (WebViewHostPaintTask::WebViewHostPaintTask):
-        (WebViewHostPaintTask::runIfValid):
-        (WebViewHost::updatePaintRect):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost::taskList):
-
-2011-01-10  Alejandro G. Castro  <alex@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] Fix gtk2 compilation for master
-        https://bugs.webkit.org/show_bug.cgi?id=51885
-
-        * DumpRenderTree/gtk/PixelDumpSupportGtk.cpp:
-        (createBitmapContextFromWebView): Replaced the old
-        gdk_drawable_get_size with gdk_pixmap_get_size.
-
-2011-01-10  Patrick Gansterer  <paroga@webkit.org>
-
-        Reviewed by Laszlo Gombos.
-
-        [WINCE] Reenable NPAPI after r75203
-        https://bugs.webkit.org/show_bug.cgi?id=52109
-
-        Remove the !isWinCE() check for ENABLE_NETSCAPE_PLUGIN_API and replace
-        it with !isEfl(), because EFL port does not support NPAPI (yet).
-
-        * Scripts/build-webkit:
-
-2011-01-10  Adam Roben  <aroben@apple.com>
-
-        Skip some asserting JS tests
-
-        See <http://webkit.org/b/52156>.
-
-        * Scripts/run-javascriptcore-tests:
-
-2011-01-10  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] build-webkit disable Blob support via arguments passed to automake
-        https://bugs.webkit.org/show_bug.cgi?id=52097
-
-        * Scripts/build-webkit: Enable Blob support when building WebKitGTK+ via
-        build-webkit.
-
-2011-01-10  Adam Roben  <aroben@apple.com>
-
-        Use the same name and description for TestNetscapePlugin on Windows and
-        Mac
-
-        Fixes <http://webkit.org/b/52151>
-        fast/frames/iframe-reparenting-plugins.html fails on Windows
-
-        Reviewed by Steve Falkenburg.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.rc: Copied
-        the name and description from Mac's Info.plist.
-
-2011-01-10  Siddharth Mathur <siddharth.mathur@nokia.com>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt][WK2] Guard gcc-specific syntax
-
-        Non-gcc based compliers choke on the "-include"
-        syntax for preinclude, place guard around it.
-
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro:
-        * WebKitTestRunner/qt/WebKitTestRunner.pro:
-
-2011-01-10  Andreas Kling  <kling@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] [WK2] MiniBrowser does not load pages opened in new windows
-        https://bugs.webkit.org/show_bug.cgi?id=52111
-
-        When getting a createNewPage() callback from QWKPage, create the
-        new page with the same QWKContext as the page that is passed to
-        the callback.
-
-        * MiniBrowser/qt/BrowserView.h:
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (newPageFunction):
-        (BrowserWindow::BrowserWindow):
-        * MiniBrowser/qt/BrowserWindow.h:
-
-2011-01-10  Andreas Kling  <kling@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] MiniBrowser: Remove superfluous createNewPage() callback
-
-        BrowserView set its own useless createNewPage() callback on QWKPage.
-        This was immediately overridden by BrowserWindow anyway, so remove
-        the BrowserView one.
-
-        * MiniBrowser/qt/BrowserView.cpp:
-        (BrowserView::BrowserView):
-
-2011-01-10  John Knottenbelt  <jknotten@chromium.org>
-
-        Reviewed by Jeremy Orlow.
-
-        [Chromium] Remove non-client-based Geolocation code
-        https://bugs.webkit.org/show_bug.cgi?id=50921
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::setGeolocationPermission):
-        (LayoutTestController::setMockGeolocationPosition):
-        (LayoutTestController::setMockGeolocationError):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::geolocationClientMock):
-        (WebViewHost::reset):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2011-01-10  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Commit bot tried to land r? cq+ patch
-        https://bugs.webkit.org/show_bug.cgi?id=36638
-
-        It should now be possible to post a patch with r? and cq+ and the
-        commit-queue will correctly wait for the r+ before attempting to land the patch.
-        (This was a feature requested by several users.)
-
-        One caveat: We don't actually reject r-, cq+ patches from the queue
-        (we just ignore them), but I think that's OK for now.
-
-        I also noticed that setting r- once a commit-queue node had grabbed
-        a patch would not properly cancel the landing.  That's fixed and
-        tested in this patch.
-
-        * Scripts/webkitpy/tool/bot/commitqueuetask.py:
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-        * Scripts/webkitpy/tool/bot/feeders.py:
-        * Scripts/webkitpy/tool/bot/feeders_unittest.py:
-
-2011-01-08  Benjamin Poulain  <benjamin.poulain@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] QtWebKit crashes when using XMLHttpRequest from the unload event
-        https://bugs.webkit.org/show_bug.cgi?id=51934
-
-        When accessing the network from the destructor of QWebPage, the network access manager
-        was already deleted because the object WebPage was already destructed.
-
-        This solve the problem by linking the lifetime of the network access manager to WebPage's QObject.
-        The object is now destructed in the destructor of QObject.
-
-        * QtTestBrowser/webpage.cpp:
-        (WebPage::WebPage):
-        (WebPage::setQnamThreaded):
-        * QtTestBrowser/webpage.h:
-        (QtNAMThread::QtNAMThread):
-
-2011-01-08  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Ojan Vafai.
-
-        test_failures.py should not mention TestShell (long live DumpRenderTree!)
-        https://bugs.webkit.org/show_bug.cgi?id=52067
-
-        I ran test-webkitpy, but didn't bother adding a unit test for this string change.
-        https://bugs.webkit.org/show_bug.cgi?id=51138#c3 is an example of why this is needed.
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures.py:
-
-2011-01-08  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Mihai Parparita.
-
-        commit-queue hangs when the ChangeLog diff is bad
-        https://bugs.webkit.org/show_bug.cgi?id=52072
-
-        * Scripts/webkitpy/tool/steps/validatechangelogs.py:
-        * Scripts/webkitpy/tool/steps/validatechangelogs_unittest.py:
-
-2011-01-08  Adam Barth  <abarth@webkit.org>
-
-        Teach svn-apply how to re-write WebCore to Source/WebCore.
-
-        * Scripts/VCSUtils.pm:
-
-2011-01-07  Adam Barth  <abarth@webkit.org>
-
-        Rubber-stamped by Eric Seidel.
-
-        Move WebCore to Source
-        https://bugs.webkit.org/show_bug.cgi?id=52050
-
-        Update the tools to understand WebCore's new location.
-
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * DumpRenderTree/wscript:
-        * GNUmakefile.am:
-        * Scripts/build-webkit:
-        * Scripts/do-file-rename:
-        * Scripts/do-webcore-rename:
-        * Scripts/generate-qt-inspector-resource:
-        * Scripts/prepare-ChangeLog:
-        * Scripts/run-bindings-tests:
-        * Scripts/update-iexploder-cssproperties:
-        * Scripts/update-sources-list.py:
-        * Scripts/update-webkit-localizable-strings:
-        * Scripts/webkitdirs.pm:
-        * Scripts/webkitpy/common/config/build.py:
-        * Scripts/webkitpy/common/config/build_unittest.py:
-        * Scripts/webkitpy/layout_tests/deduplicate_tests_unittest.py:
-        * Scripts/webkitpy/style/checker.py:
-        * Scripts/webkitpy/style/checker_unittest.py:
-        * WebKitTestRunner/DerivedSources.pro:
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro:
-        * iExploder/iexploder-1.7.2/tools/update_html_tags_from_sources.sh:
-        * wx/browser/wscript:
-        * wx/build/settings.py:
-
-2011-01-07  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Make WebKitTestRunner rest between loads more robust to avoid test crashes
-        https://bugs.webkit.org/show_bug.cgi?id=52086
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::didReceiveMessage):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::notifyDone):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-        (WTR::TestController::run):
-
-2011-01-07  James Robinson  <jamesr@chromium.org>
-
-        Revert "Implement mozilla's animationTime property"
-        https://bugs.webkit.org/show_bug.cgi?id=51952
-
-        This approach isn't quite right.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::paintInvalidatedRegion):
-
-2011-01-07  Adam Roben  <aroben@apple.com>
-
-        Build master fix
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (RunWebKitTests.start): Don't try to concatenate a list and a string.
-
-2011-01-07  Jedrzej Nowacki  <jedrzej.nowacki@nokia.com>
-
-        Reviewed by Csaba Osztrogonác.
-
-        run-qtwebkit-tests should be able to kill a testsuite.
-
-        Add new option in the script that can setup a timeout for a test.
-        If the test execution takes more then specified time then the test
-        would be terminated.
-
-        [Qt] run-qtwebkit-tests needs timeout
-        https://bugs.webkit.org/show_bug.cgi?id=51894
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        * Scripts/run-qtwebkit-tests:
-
-2011-01-07  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed fix after r75233.
-
-        Based on idea from Eric Seidel.
-
-        Add remote zip file handling to webkitpy.
-        https://bugs.webkit.org/show_bug.cgi?id=50901
-
-        * Scripts/webkitpy/common/system/fileset.py: Make python 2.5 happy.
-
-2011-01-07  Shane Stephens  <shanestephens@google.com>
-
-        Reviewed by Eric Seidel.
-
-        svn-apply: should support git binary delta diffs
-        https://bugs.webkit.org/show_bug.cgi?id=38864
-
-        * Scripts/VCSUtils.pm:
-        * Scripts/svn-apply:
-
-2011-01-06  Julie Parent  <jparent@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Test Result Server not removing old results.
-        https://bugs.webkit.org/show_bug.cgi?id=52012
-
-        * TestResultServer/model/jsonresults.py:
-        Fix off-by-one: Truncate if >= num_runs, not just >.
-        * TestResultServer/model/jsonresults_unittest.py:
-        Add unit test to test that merging in a new result with the same value
-        as the last result causes previous result to fall off.
-
-2011-01-06  James Kozianski  <koz@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        Add classes to provide a consistent interface to a set of files.
-        https://bugs.webkit.org/show_bug.cgi?id=50901
-
-        These classes allow us to write code that is agnostic to whether a
-        particular set of files resides in a local directory or in a zip file
-        on a remote machine.
-
-        * Scripts/webkitpy/common/system/directoryfileset.py: Added.
-        * Scripts/webkitpy/common/system/directoryfileset_unittest.py: Added.
-        * Scripts/webkitpy/common/system/fileset.py: Added.
-        * Scripts/webkitpy/common/system/filesystem.py:
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        * Scripts/webkitpy/common/system/zipfileset.py: Added.
-        * Scripts/webkitpy/common/system/zipfileset_unittest.py: Added.
-
-2011-01-06  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        NetworkTransaction should log the url it is retrying
-        https://bugs.webkit.org/show_bug.cgi?id=52043
-
-        * Scripts/webkitpy/common/net/networktransaction.py:
-        * Scripts/webkitpy/common/net/networktransaction_unittest.py:
-
-2011-01-06  Steve Falkenburg  <sfalken@apple.com>
-
-        Windows build fix.
-        Import os before using it.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-01-06  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        StyleQueue fails to report errors when patches have many files
-        https://bugs.webkit.org/show_bug.cgi?id=52042
-
-        This is one of at least two errors preventing style error reporting at the moment.
-        When we moved to passing the list of files to check explicitly,
-        we started to exceed the 500 character TEXT field limit for our AppEngine model object.
-        We could change the type of the QueueStatus.message type, or we could
-        just teach statusserver.py how to clamp values (and warn when it does).
-        I chose the latter path.
-
-        * Scripts/webkitpy/common/net/statusserver.py:
-
-2011-01-06  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Stephanie Lewis.
-        
-        Fix syntax error in script.
-
-        Windows bots need to archive/unarchive builds to/from configuration-specific directories
-        https://bugs.webkit.org/show_bug.cgi?id=51996
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-01-06  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Unreviewed, fixing WinCE build after r75196.
-
-        WinCE port does not (yet) support NPAPI.
-
-        * Scripts/build-webkit:
-
-2011-01-06  Xan Lopez  <xlopez@igalia.com>
-
-        Reviewed by Darin Adler.
-
-        File::Spec->rel2abs in sunspider-compare-results mangles parameters
-        https://bugs.webkit.org/show_bug.cgi?id=52015
-
-        * Scripts/sunspider-compare-results: call rel2abs on our arguments
-        after the platform has been detected, otherwise the script will
-        mangle things like '--gtk' into '/a/path/--gtk', breaking the
-        detection.
-
-2011-01-06  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Eric Seidel.
-
-        Add ENABLE_NETSCAPE_PLUGIN_API, ENABLE_ORIENTATION_EVENTS and ENABLE_TOUCH_EVENTS flags to build-webkit
-        https://bugs.webkit.org/show_bug.cgi?id=51346
-
-        * Scripts/build-webkit:
-
-2011-01-06  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Windows bots need to archive/unarchive builds to/from configuration-specific directories
-        https://bugs.webkit.org/show_bug.cgi?id=51996
-        
-        After the configuration directory change, we were archiving the incorrect directory for
-        build product, so we were running tests on the wrong binaries.
-        
-        This change archives the correct directory, and also unarchives it into a configuration-
-        specific directory.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Use a configuration-specific directory on Windows.
-        * BuildSlaveSupport/built-product-archive: Unarchive/archive to/from proper directory.
-
-2011-01-06  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Mihai Parparita.
-
-        commit-queue mentions "Text diff mismatch" 4 times instead of once per failure
-        https://bugs.webkit.org/show_bug.cgi?id=52002
-
-        See an example of this here:
-        https://bugs.webkit.org/show_bug.cgi?id=51314#c2
-
-        It's due to the fact that we pass around TestFailure() instance
-        objects and yet expect them to all compare to be the same.
-
-        This is bad.  We should either have shared instances of these values
-        or we should just pass around the class names.  There are already hacks
-        in place to make TestFailure objects pass equality tests, I just added
-        a __hash__ implementation so they can be used in sets as expected.
-
-        * Scripts/webkitpy/common/net/layouttestresults_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures.py:
-
-2011-01-06  Evan Martin  <evan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        [gdb] handle inaccessible memory and UChar*
-        https://bugs.webkit.org/show_bug.cgi?id=52003
-
-        To pretty-print a UChar*, we just grope around in the memory
-        looking for a terminating NUL.  We need to handle the exception
-        that can occur when we poke into an invalid location.
-
-        Additionally, the logic for choosing which pretty-printer would
-        early return before hitting the point where we'd use the UChar*
-        printer.  (Did this ever work?  How did it regress?)
-
-        * gdb/webkit.py:
-
-2011-01-05  Brian Weinstein  <bweinstein@apple.com>
-
-        Reviewed by Ada Chan.
-
-        WebKit2: Should be able to call into injected bundle to ask if we should allow resource loads
-        https://bugs.webkit.org/show_bug.cgi?id=51969
-        
-        Add shouldLoadResourceForFrame to WTR::InjectedBundlePage.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        (WTR::InjectedBundlePage::shouldLoadResourceForFrame): Stub implementation.
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-
-2011-01-06  James Robinson  <jamesr@chromium.org>
-
-        Reviewed by Simon Fraser.
-
-        Implement mozilla's animationTime property
-        https://bugs.webkit.org/show_bug.cgi?id=51952
-
-        Chromium DRT support for webkitAnimationTime.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::paintInvalidatedRegion):
-
-2011-01-06  Julie Parent  <jparent@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Test Result Server always truncates number of results to JSON_RESULTS_MAX_BUILDS
-        https://bugs.webkit.org/show_bug.cgi?id=51217
-
-        * TestResultServer/model/jsonresults.py:
-        Pass num_runs through to _remove_items_over_max_number_of_builds, and use the value.
-        Adds missing documentation.
-        * TestResultServer/model/jsonresults_unittest.py:
-        Add unit test to test that truncation happens at smaller value than JSON_RESULTS_MAX_BUILDS.
-        Update test_merge to take a number of builds to truncate at.
-
-2011-01-06  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        The EWS should log outside of the working directory
-        https://bugs.webkit.org/show_bug.cgi?id=51986
-
-        This patch prepare us for using git clean -x -d -f in the EWS wrapper
-        script, which will actually clean the working copy back to a pristine
-        state instead of leaving untracked directories and ignored files.
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2011-01-05  Steve Falkenburg  <sfalken@apple.com>
-
-        Windows build fix.
-        Back out attempted change to built-product-archive.
-
-        * BuildSlaveSupport/built-product-archive:
-
-2011-01-05  Steve Falkenburg  <sfalken@apple.com>
-
-        Windows build fix.
-        Include configuration name when unpacking a build archive.
-
-        Needed, since we split Windows build results into configuration-specific directories
-        under WebKitOutputDir.
-
-        * BuildSlaveSupport/built-product-archive:
-
-2011-01-05  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Debug and Release builds on Windows clobber each other
-        https://bugs.webkit.org/show_bug.cgi?id=49185
-
-        Changes the structure of WebKitBuild build products directory so we
-        completely separate each build configuration into independent directories.
-        
-        Although we previously had per-configuration directories for obj, this change adds
-        per-configuration directories for bin, lib, obj, and include. Each configuration's
-        build products are stored within a directory inside of WebKitBuild.
-        
-        Most use of $(WebKitOutputDir) in the build files has been replaced by $(ConfigurationBuildDir),
-        defined in common.vsprops to be $(WebKitOutputDir)\$(ConfigurationName).
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginCommon.vsprops:
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginPostBuild.cmd:
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginPreBuild.cmd:
-        * DumpRenderTree/win/DumpRenderTreeCommon.vsprops:
-        * DumpRenderTree/win/DumpRenderTreePostBuild.cmd:
-        * DumpRenderTree/win/DumpRenderTreePreBuild.cmd:
-        * DumpRenderTree/win/ImageDiffCommon.vsprops:
-        * DumpRenderTree/win/ImageDiffPostBuild.cmd:
-        * DumpRenderTree/win/ImageDiffPreBuild.cmd:
-        * FindSafari/FindSafari.vcproj:
-        * MiniBrowser/Configurations/MiniBrowserCommon.vsprops:
-        * MiniBrowser/MiniBrowserPostBuild.cmd:
-        * MiniBrowser/MiniBrowserPreBuild.cmd:
-        * Scripts/webkitdirs.pm:
-        * TestWebKitAPI/Configurations/TestWebKitAPICommon.vsprops:
-        * TestWebKitAPI/win/TestWebKitAPIGeneratedCommon.vsprops:
-        * TestWebKitAPI/win/TestWebKitAPIPostBuild.cmd:
-        * TestWebKitAPI/win/TestWebKitAPIPreBuild.cmd:
-        * TestWebKitAPI/win/copy-resources.cmd:
-        * WebKitAPITest/WebKitAPITestCommon.vsprops:
-        * WebKitAPITest/WebKitAPITestPostBuild.cmd:
-        * WebKitAPITest/WebKitAPITestPreBuild.cmd:
-        * WebKitTestRunner/Configurations/InjectedBundleCommon.vsprops:
-        * WebKitTestRunner/Configurations/WebKitTestRunnerCommon.vsprops:
-        * WebKitTestRunner/win/InjectedBundle.vcproj:
-        * WebKitTestRunner/win/InjectedBundleGeneratedCommon.vsprops:
-        * WebKitTestRunner/win/InjectedBundlePostBuild.cmd:
-        * WebKitTestRunner/win/InjectedBundlePreBuild.cmd:
-        * WebKitTestRunner/win/WebKitTestRunnerPostBuild.cmd:
-        * WebKitTestRunner/win/WebKitTestRunnerPreBuild.cmd:
-        * WinLauncher/WinLauncherCommon.vsprops:
-        * WinLauncher/WinLauncherPostBuild.cmd:
-        * WinLauncher/WinLauncherPreBuild.cmd:
-
-2011-01-05  Jan Erik Hanssen  <jhanssen@sencha.com>
-
-        Reviewed by Ariya Hidayat.
-
-        [Qt] TestNetscapePlugin doesn't link on OS X
-        https://bugs.webkit.org/show_bug.cgi?id=51948
-
-        Only add a dependency on libX11 on X11 systems
-
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-
-2011-01-05  Jeff Miller  <jeffm@apple.com>
-
-        Reviewed by Adam Roben.
-
-        check-webkit-style should allow unnecessary parameter names in WebKit2 APIs because we're matching CF's header style
-        https://bugs.webkit.org/show_bug.cgi?id=51970
-
-        * Scripts/webkitpy/style/checker.py:
-        Add -readability/naming for WebKit2 C API directories.
-
-2011-01-05  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, just fixing one more log error from my previous python patch.
-
-        Move LayoutTestResults over to new-run-webkit-tests TestResult architecture
-        https://bugs.webkit.org/show_bug.cgi?id=51802
-
-        webkit-patch failure-reason was logging about parsing errors
-        due to my misunderstanding of how BeautifulSoup.findAll worked.
-
-        Fixed, and added a unit test.
-
-        * Scripts/webkitpy/common/net/layouttestresults.py:
-        * Scripts/webkitpy/common/net/layouttestresults_unittest.py:
-
-2011-01-05  Benjamin Poulain  <benjamin.poulain@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] [WK2] Add the possibility to open window from the WebProcess in Minibrowser
-        https://bugs.webkit.org/show_bug.cgi?id=51951
-
-        Set a function to QWKPage::setCreateNewPageFunction() in Minibrowser so there is a way
-        to create new window from WebKit.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (newPageFunction):
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::page): Added to avoid the indirect access to QWKPage spread in the class
-        (BrowserWindow::newWindow):
-        (BrowserWindow::updateUserAgentList):
-        (BrowserWindow::showUserAgentDialog):
-        * MiniBrowser/qt/BrowserWindow.h: Add the global variable backingStoreTypeForNewWindow to
-        define the type of the backing store used for new windows.
-        * MiniBrowser/qt/main.cpp:
-        (main):
-
-2011-01-05  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Ojan Vafai.
-
-        commit-queue should report failure type when reporting flaky tests
-        https://bugs.webkit.org/show_bug.cgi?id=51900
-
-        This patch was a ridiculous amount of plumbing.  In the end I like
-        the NRWT-style TestResult class even less.  But now we're passing
-        a list of TestResult objects from the queue to the FlakyTestReporter.
-        Thus the FlakyTestReporter can more easily report what type of failure
-        occurred.
-
-        In the process, I found that I was not alone in finding TestResult
-        cumbersome to use.  A bunch of code was trying to create a TestResult
-        object with default values.  However since the constructor didn't make
-        this easy, some places were getting it wrong (including the TestResult unit test)!
-        I've fixed the TestResult constructor to have default values for non-essential
-        arguments.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-        * Scripts/webkitpy/common/net/layouttestresults.py:
-        * Scripts/webkitpy/common/net/layouttestresults_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_results.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_results_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-        * Scripts/webkitpy/tool/bot/commitqueuetask.py:
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-        * Scripts/webkitpy/tool/bot/flakytestreporter.py:
-        * Scripts/webkitpy/tool/bot/flakytestreporter_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2011-01-05  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.
-
-        Move LayoutTestResults over to new-run-webkit-tests TestResult architecture
-        https://bugs.webkit.org/show_bug.cgi?id=51802
-
-        Add another unit test to cover a previously missing import.
-
-        * Scripts/webkitpy/common/net/layouttestresults.py:
-        * Scripts/webkitpy/common/net/layouttestresults_unittest.py:
-
-2011-01-05  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by David Levin.
-
-        Add mihaip@chromium.org as a reviewer
-        https://bugs.webkit.org/show_bug.cgi?id=51966
-        
-        Add myself as a reviewer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-01-05  James Simonsen  <simonjam@chromium.org>
-
-        Unreviewed. Adding myself to the list of committers.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-01-05  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.
-
-        Move LayoutTestResults over to new-run-webkit-tests TestResult architecture
-        https://bugs.webkit.org/show_bug.cgi?id=51802
-
-        Fix two exceptions seen on the bots after my original commit.
-
-        * Scripts/webkitpy/common/net/layouttestresults.py:
-        * Scripts/webkitpy/common/net/layouttestresults_unittest.py:
-
-2011-01-05  Kundu Suchismita  <suchi.kundu@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        [Qt]Add local storage settings to QtTestBrowser command line arguments 
-        https://bugs.webkit.org/show_bug.cgi?id=51750
-
-        * QtTestBrowser/main.cpp:
-        (LauncherApplication::handleUserOptions):
-         Local storage settings can be enable form command line arguments for
-         QtTestBrowser.
-
-2011-01-05  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Martin Robinson.
-
-        GTK: AX: DRT needs to use correct root object method.
-        https://bugs.webkit.org/show_bug.cgi?id=51911
-
-        * DumpRenderTree/gtk/AccessibilityControllerGtk.cpp:
-        (AccessibilityController::rootElement):
-
-2011-01-05  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
-
-        Rubber-stamped by Csaba Osztrogonác.
-
-        Based on idea from Péter Gál.
-
-        * Scripts/webkitpy/tool/bot/sheriff.py: Remove unnecessary apostrophes around revision numbers.
-
-2011-01-05  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
-
-        Reviewed by Adam Barth.
-
-        sheriff-bot should be able to do multi-revision rollouts
-        https://bugs.webkit.org/show_bug.cgi?id=51176
-
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        * Scripts/webkitpy/tool/bot/sheriff.py:
-        * Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py:
-
-2011-01-05  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        queues.webkit.org should have per-bot status pages
-        https://bugs.webkit.org/show_bug.cgi?id=51906
-
-        Just adds a /queue-status/QUEUE_NAME/bots/BOT_ID page to show
-        statuses from a single queue.  Now that we have many bots servicing
-        some queues (commit-queue, win-ews, etc.) its easy to have the messages
-        you care about scroll off the end of the 15-message limit on the main page.
-
-        Eventually we should probably rename /queue-status to /queue or /queues,
-        but that's fodder for another patch.
-
-        * QueueStatusServer/handlers/queuestatus.py:
-        * QueueStatusServer/index.yaml:
-        * QueueStatusServer/main.py:
-        * QueueStatusServer/templates/includes/singlequeuestatus.html:
-         - This probably should use a custom filter instead of hard-coding
-           the URL scheme here, but I couldn't figure out how to easily
-           create such a filter.  Most filters work with "strings" so we can't
-           pass the status object.  We could add a method to the status
-           object and call that, but that seemed a bit strange too.
-        * QueueStatusServer/templates/queuestatus.html:
-
-2011-01-05  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed. Adding myself to the list of committers.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-01-04  Koan-Sin Tan  <koansin.tan@gmail.com>
-
-        Reviewed by David Levin.
-
-        check-webkit-style treated some macros with parentheses after #elif as function calls
-        https://bugs.webkit.org/show_bug.cgi?id=51695
-
-        Ingore function call space checking in any preprocessor directives
-        (things starting with #). Change search() to match() because 
-        preprocessor directives are supposed to be in the beginning of lines.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: make sure there is no false positives for #elif cases
-
-2011-01-04  Søren Gjesse  <sgjesse@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Change the --multi-load test option to --stress-opt
-        https://bugs.webkit.org/show_bug.cgi?id=50751
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (runTest):
-        (main):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::stressOpt):
-        (TestShell::setStressOpt):
-        (TestShell::stressDeopt):
-        (TestShell::setStressDeopt):
-        (TestShell::javaScriptFlags):
-        (TestShell::setJavaScriptFlags):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-01-04  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        WK2: Support Accessibility
-        https://bugs.webkit.org/show_bug.cgi?id=51859
-
-        Use rootObject() method to get top of accessibility tree.
-
-        * DumpRenderTree/mac/AccessibilityControllerMac.mm:
-        (AccessibilityController::focusedElement):
-        (AccessibilityController::rootElement):
-
-2011-01-03  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Darin Adler.
-
-        Remove the last non-GObject usage of PlatformRefPtr and move the code to GRefPtr
-        https://bugs.webkit.org/show_bug.cgi?id=51846
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp: Change usage of PlatformRefPtr
-        back to GRefPtr.
-
-2011-01-04  Zhe Su  <suzhe@chromium.org>
-
-        Reviewed by Kenneth Russell.
-
-        Fix insertText, setMarkedText and unmarkText methods of
-        TextInputController to call corresponding methods of WebKit::WebView
-        rather than WebKit::WebFrame. This change matches the behavior of
-        chromium browser.
-        insertText corresponds to WebView::confirmComposition(text)
-        setMarkedText corresponds to WebView::setComposition(...)
-        unmarkText corresponds to WebView::confirmComposition()
-        https://bugs.webkit.org/show_bug.cgi?id=51693
-
-        * DumpRenderTree/chromium/TextInputController.cpp:
-        (TextInputController::insertText):
-        (TextInputController::setMarkedText):
-        (TextInputController::unmarkText):
-
-2011-01-04  Dihan Wickremasuriya  <dihan.wickremasuriya@nokia.com>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt] [Symbian] Do not remove 0 byte sized files from productDir
-
-        On Symbian productDir points to the source directory. Removing all the
-        empty files from the productDir directory corrupts the svn repository.
-
-        * Scripts/build-webkit:
-
-2011-01-03  Yi Shen  <yi.4.shen@nokia.com>
-
-        Reviewed by Adam Barth.
-
-        [Qt] Add SelectAll option to the context menu for the editor
-        https://bugs.webkit.org/show_bug.cgi?id=50049
-
-        Set shortcut for the SelectAll action.
-
-        * QtTestBrowser/mainwindow.cpp:
-        (MainWindow::buildUI):
-
-2011-01-03  David Levin  <levin@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        check-webkit-style shouldn't consider "value" automatically to be a meaningless name.
-        https://bugs.webkit.org/show_bug.cgi?id=51842
-
-        * Scripts/webkitpy/style/checkers/cpp.py: Remove the check for value.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Remove the test for value.
-
-2011-01-03  Patrick Gansterer  <paroga@webkit.org>
-
-        Reviewed by David Kilzer.
-
-        [WINCE] Adds a build slave.
-        https://bugs.webkit.org/show_bug.cgi?id=50523
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Add an
-        entry for a release build of the WinCE port.
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Add platform
-        flag to build the WinCE port.
-
-2011-01-03  Patrick Gansterer  <paroga@webkit.org>
-
-        Reviewed by David Kilzer.
-
-        Add WinCE support to build-webkit
-        https://bugs.webkit.org/show_bug.cgi?id=51642
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-
-2011-01-03  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Move LayoutTestResults over to new-run-webkit-tests TestResult architecture
-        https://bugs.webkit.org/show_bug.cgi?id=51802
-
-        I'm not the biggest fan of the test_failures or test_results classes,
-        but it's better to have one shared set of classes, than separate ones
-        for new vs. old run-webkit-test result handling.
-
-        This moves the ORWT results class "LayoutTestResults" over to using
-        TestResult and TestFailure classes, making it easy for us to
-        make all our sheriff-bot and other webkitpy code NRWT ready.
-
-        This also makes it a trivial patch to generate results.json information
-        from ORWT results.html files (for flaky test analysis, etc.) as well
-        as making it a one-liner to report test failure types when the
-        commit-queue sees flaky tests.
-
-        This patch tried not to add new functionality, but only to replace
-        the guts of LayoutTestResults, while adding unit tests and hoping
-        not to break anything.
-
-        I also moved callers which assumed User.prompt* were static/class methods
-        to using them as instance methods (since we'll eventually want to make them such).
-
-        In the process of re-writing things, I broke the rebaseline command, so I wrote
-        a unit test to catch my breakage were I do do so again in the future.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-        * Scripts/webkitpy/common/net/layouttestresults.py:
-        * Scripts/webkitpy/common/net/layouttestresults_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_results.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2011-01-03  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Simon Fraser.
-
-        webkit-patch shouldn't waste time cleaning a working directory that's already clean
-        https://bugs.webkit.org/show_bug.cgi?id=51840
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-
-2011-01-03  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Simon Fraser.
-
-        webkit-patch should only hide update output if --quiet
-        https://bugs.webkit.org/show_bug.cgi?id=51838
-
-        As requested by smfr.
-
-        * Scripts/webkitpy/tool/steps/update.py:
-
-2011-01-03  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by David Levin.
-
-        commit-queue shouldn't reject patches twice if two bots process the same patch
-        https://bugs.webkit.org/show_bug.cgi?id=51805
-
-        Before raising an error, we first check whether the patch is still in
-        the commit-queue.  This check is still racy, of course, but the time
-        window is much smaller.
-
-        * Scripts/webkitpy/tool/bot/commitqueuetask.py:
-
-2011-01-03  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Make run-api-tests less chatty.
-        https://bugs.webkit.org/show_bug.cgi?id=51831
-
-        - Make script quiet by default and add --verbose option (replacing --quiet).
-        - When not verbose, pipe stdout and stderr to devnull.
-
-        * Scripts/run-api-tests:
-
-2011-01-03  Pratik Solanki  <psolanki@apple.com>
-
-        Unreviewed. Adding myself to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-01-03  Koan-Sin Tan  <koansin.tan@gmail.com>
-
-        Reviewed by Xan Lopez.
-
-        "Tool/Scripts/run-launcher --gtk" stopped working after 74855
-        https://bugs.webkit.org/show_bug.cgi?id=51806
-
-        Originally, the $libraryName is 'JavaScriptCore'. When building release 
-        one, the $libraryDir was 'WebKitBuild/Release/JavaScriptCore/../.libs/'
-        which doesn't exist anymore ('WebKitBuild/Release/JavaScriptCore'
-        is 'WebKitBuild/Release/Source/JavaScriptCore' now), and 
-        'WebKitBuild/Release/Source/JavaScriptCore/../../.libs' looks weird,
-        so make it 'WebKitBuild/Release/.libs'
-
-        * Scripts/webkitdirs.pm: 
-
-2011-01-02  Patrick Gansterer  <paroga@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Make EFL a core builder
-        https://bugs.webkit.org/show_bug.cgi?id=51804
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-
-2011-01-02  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Unreviewed fix after r74855 and r74875.
-
-        * BuildSlaveSupport/built-product-archive:
-         - Create directories explicitly.
-         - Pass shell=True to subprocess.call().
-
-2011-01-02  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Unreviewed fix after r74855.
-
-        Move JavaScriptCore to Source
-        https://bugs.webkit.org/show_bug.cgi?id=51604
-
-        * BuildSlaveSupport/built-product-archive: JavaScriptCore -> Source/JavaScriptCore
-
-2011-01-02  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Unreviewed run-javasriptcore-tests fix after r74855.
-
-        Move JavaScriptCore to Source
-        https://bugs.webkit.org/show_bug.cgi?id=51604
-
-        * Scripts/webkitdirs.pm:
-
-2011-01-02  Robert Hogan  <robert@webkit.org>
-
-        Unreviewed, build fix.
-
-        [Qt] Fix DRT build after 74855
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-
-2011-01-01  Adam Barth  <abarth@webkit.org>
-
-        Remove the assumption from the Qt and Gtk builds that every project is
-        in the root directory.
-
-        * Scripts/build-webkit:
-
-2011-01-01  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Teach svn-apply how to apply patches even though JavaScriptCore has moved
-        https://bugs.webkit.org/show_bug.cgi?id=51796
-
-        After this change, svn-apply will magically apply patches to
-        JavaScriptCore/foo to Source/JavaScriptCore/foo.
-
-        * Scripts/VCSUtils.pm:
-
-2011-01-01  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Move JavaScriptCore to Source
-        https://bugs.webkit.org/show_bug.cgi?id=51604
-
-        Update references to JavaScriptCore to point to the new location.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/ImageDiff.pro:
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * DumpRenderTree/wscript:
-        * Scripts/build-jsc:
-        * Scripts/build-webkit:
-        * Scripts/do-file-rename:
-        * Scripts/do-webcore-rename:
-        * Scripts/run-javascriptcore-tests:
-        * Scripts/update-javascriptcore-test-results:
-        * Scripts/webkitdirs.pm:
-        * Scripts/webkitpy/common/config/build_unittest.py:
-        * Scripts/webkitpy/style/checker.py:
-        * Scripts/webkitpy/style/checker_unittest.py:
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro:
-        * WebKitTestRunner/qt/WebKitTestRunner.pro:
-        * wx/build/settings.py:
-
-2011-01-01  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Move Sources to Source
-        https://bugs.webkit.org/show_bug.cgi?id=51794
-
-        Update scripts to point to the new location.
-
-        * Scripts/build-webkit:
-        * Scripts/do-file-rename:
-        * Scripts/do-webcore-rename:
-        * Scripts/webkitpy/common/config/build.py:
-        * Scripts/webkitpy/common/config/build_unittest.py:
-
-2010-12-31  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        [DRT/Chromium] Enable mock spell checker on non-OSX
-        https://bugs.webkit.org/show_bug.cgi?id=51401
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::spellCheck):
-
-2010-12-31  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Ariya Hidayat.
-
-        Remove Tools/Scripts/wkstyle
-        https://bugs.webkit.org/show_bug.cgi?id=51774
-
-        This script appears to not have been touched in a while and seems to
-        have been replaced by check-webkit-style.
-
-        * Scripts/wkstyle: Removed.
-
-2010-12-31  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Unreviewed. Coding style fix.
-
-        * DumpRenderTree/chromium/TestShell.h:
-
-2010-12-31  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Reviewed by Pavel Feldman.
-
-        Web Inspector: [Chromium] Inspector's tests are very slow on Win(Dbg).
-
-        It was a problem with Chromium DRT. DevToolsAgent object instance was
-        attached not only to the inspected page but to the DevTools window too.
-        As result all the inspector files were interpreted as a content of inspected page
-        and were transfered to the DevTools scripts panel for debugging etc.
-
-        https://bugs.webkit.org/show_bug.cgi?id=51735
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::bindJSObjectsToWindow):
-        (TestShell::createNewWindow):
-        * DumpRenderTree/chromium/TestShell.h:
-
-2010-12-31  Adam Barth  <abarth@webkit.org>
-
-        Rubber-stamped by Eric Seidel.
-
-        Move PageLoadTests to PerformanceTests/PageLoad
-        https://bugs.webkit.org/show_bug.cgi?id=51771
-
-        Update references to PageLoadTests to point to the new location.
-
-        * Scripts/run-pageloadtest:
-        * Scripts/webkitpy/common/config/build.py:
-
-2010-12-31  Adam Barth  <abarth@webkit.org>
-
-        Rubber-stamped by Eric Seidel.
-
-        Move SunSpider into PerformanceTests
-        https://bugs.webkit.org/show_bug.cgi?id=51769
-
-        Update these scripts to point to the new location.
-
-        * Scripts/run-sunspider:
-        * Scripts/sunspider-compare-results:
-
-2010-12-30  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [Chromium] Add WebThemeEngineDRTMac so that Chromium DRT scrollbar rendering can match the Mac port's
-        https://bugs.webkit.org/show_bug.cgi?id=51728
-        
-        Add implementation of the Mac WebThemeEngine that uses an NSScroller
-        to render top-level scrollbars. This makes them match the Mac port's
-        use of an NSScrollView, which means that we'll be able to share more
-        pixel baselines.
-        
-        The new rendering code will not be activated until the 
-        USE_WEB_THEME_ENGINE_TO_PAINT_THUMB #define is fliped in
-        ScrollbarThemeChromiumMac.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestShellMac.mm:
-        (platformInit):
-        * DumpRenderTree/chromium/WebThemeEngineDRTMac.h: Added.
-        * DumpRenderTree/chromium/WebThemeEngineDRTMac.mm: Added.
-        (+[FakeActiveWindow alwaysActiveWindow]):
-        (+[FakeActiveWindow alwaysInactiveWindow]):
-        (-[FakeActiveWindow initWithActiveControls:]):
-        (-[FakeActiveWindow _hasActiveControls]):
-        (WebThemeEngineDRTMac::paintScrollbarThumb):
-        (stateToHIEnableState):
-        (WebThemeEngineDRTMac::paintHIThemeScrollbarThumb):
-        (WebThemeEngineDRTMac::paintNSScrollerScrollbarThumb):
-
-2010-12-30  Konstantin Tokarev  <annulen@yandex.ru>
-
-        Reviewed by David Kilzer.
-
-        [Qt] Don't build wtf/TCSystemAlloc.cpp if --system-malloc option is
-        used
-        https://bugs.webkit.org/show_bug.cgi?id=51672
-
-        * DumpRenderTree/qt/DumpRenderTree.pro: Replaced USE_SYSTEM_MALLOC
-        with USE_SYSTEM_MALLOC=1
-        * WebKitTestRunner/qt/WebKitTestRunner.pro: Replaced USE_SYSTEM_MALLOC
-        with USE_SYSTEM_MALLOC=1
-
-2010-12-30  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by David Kilzer.
-
-        [Qt] [Symbian] Fix build-webkit script for Symbian
-        https://bugs.webkit.org/show_bug.cgi?id=51509
-
-        Set the OUTPUT_DIR for Symbian to be the same as the source
-        directory.
-
-        * Scripts/webkitdirs.pm:
-
-2010-12-30  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Darin Adler.
-
-        check-webkit-style should ignore NULL usage in calls to gtk_widget_style_get
-        https://bugs.webkit.org/show_bug.cgi?id=51758
-
-        Add a check-webkit-style exception for gtk_widget_style_get and NULL usage.
-
-        * Scripts/webkitpy/style/checkers/cpp.py: Add the exception.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Add some tests for this.
-
-2010-12-29  Patrick Gansterer  <paroga@webkit.org>
-
-        Unreviewed WinCE buildfix.
-
-        * WinCELauncher/main.cpp: Add missing include.
-
-2010-12-29  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Darin Adler.
-
-        svn-apply updates date of wrong change log entry for a change log diff that
-        contains two consecutive entries with the same author and date
-        https://bugs.webkit.org/show_bug.cgi?id=46061
-
-        Fixes an issue where the date of the wrong change log entry may be modified.
-        Moreover, changes fixChangeLogPatch() to move entries inserted earlier
-        in a ChangeLog file to the top of the file.
-
-        Currently, fixChangeLogPatch() explicitly bails out and returns an unchanged
-        diff when it detects that the diff inserts a change log entry earlier in a
-        ChangeLog. It is unusual to land a patch that has such a deliberate ChangeLog
-        change. With the advent of the commit-queue this functionality of bailing out
-        and hence landing the patch as-is is harmful to the accuracy of the ChangeLog.
-        Instead, we should always move the change log entry to the top of the ChangeLog file.
-
-        A side-effect of this change is that setChangeLogDateAndReviewer() now updates
-        the date line of the correct change log entry in a ChangeLog diff.
-
-        * Scripts/VCSUtils.pm: Modified fixChangeLogPatch() to move entries inserted earlier to the top.
-
-        * Scripts/webkitperl/VCSUtils_unittest/fixChangeLogPatch.pl:
-          Updated the following unit tests now that we move entries inserted earlier to the top:
-          - "fixChangeLogPatch: New entry inserted in middle."
-            (formerly named "fixChangeLogPatch: [no change] New entry inserted in middle.")
-
-          - "fixChangeLogPatch: New entry inserted earlier in the file, but after an entry with the same author and date."
-            (formerly named "fixChangeLogPatch: [no change] New entry inserted earlier in the file, but after an entry with the same author and date.")
-
-        * Scripts/webkitperl/VCSUtils_unittest/fixChangeLogPatchThenSetChangeLogDateAndReviewer.pl: Added.
-
-2010-12-29  Konstantin Tokarev  <annulen@yandex.ru>
-
-        Reviewed by Eric Seidel.
-
-        [Qt] Fixed compatibility with gold linker on X11 platforms
-        https://bugs.webkit.org/show_bug.cgi?id=51700
-
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        Linked TestNetscapePlugin with libX11 on Unix platforms
-
-2010-12-29  Ademar de Souza Reis Jr  <ademar.reis@openbossa.org>
-
-        Reviewed by Darin Adler.
-
-        Circular dependency in webkitpy.common.checkout.changelog module
-        https://bugs.webkit.org/show_bug.cgi?id=50475
-
-        Remove automatic import of api.Checkout module when any checkout/
-        submodule is imported (e.g.: when checkout.scm.Git is imported).
-
-        * Scripts/webkitpy/common/checkout/__init__.py:
-
-2010-12-29  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Ojan Vafai.
-
-        prepare-ChangeLog should support the -g option for specifying the git-commit
-        https://bugs.webkit.org/show_bug.cgi?id=51708
-
-        Add a -g shortcut for the --git-commit prepare-ChangeLog option. This matches
-        webkit-patch, though the exact meaning of the two options remain different.
-
-        * Scripts/prepare-ChangeLog: Add -g.
-
-2010-12-29  Kent Hansen  <kent.hansen@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Fix compilation with Qt in namespace
-        https://bugs.webkit.org/show_bug.cgi?id=51701
-
-        * QtTestBrowser/webview.h:
-
-2010-12-28  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Sam Weinig.
-
-        Substitute // MARK: for compiler-specific #pragma mark
-        https://bugs.webkit.org/show_bug.cgi?id=51657
-
-        Fix future compilation warnings about "#pragma mark" on GTK+ bots by
-        substituting  "// MARK:" for "#pragma mark", which provides
-        analogous code-bookmarking functionality under Xcode.
-
-        Also, for consistency, we should substitute "// MARK:" for compiler-
-        specific "#pragma mark" in the source files for the Mac port.
-
-        * DumpRenderTree/AccessibilityTextMarker.cpp:
-        * DumpRenderTree/cf/WebArchiveDumpSupport.h:
-        * DumpRenderTree/mac/AccessibilityTextMarkerMac.mm:
-        * DumpRenderTree/mac/ObjCController.m:
-        * MiniBrowser/mac/AppDelegate.m:
-        * MiniBrowser/mac/BrowserWindowController.m:
-
-2010-12-28  Xan Lopez  <xlopez@igalia.com>
-
-        Reviewed by Eric Seidel.
-
-        Add --no-build option to run-sunspider
-        https://bugs.webkit.org/show_bug.cgi?id=51658
-
-        * Scripts/run-sunspider: add --no-build flag to skip building
-        phase.
-
-2010-12-27  Daniel Bates  <dbates@rim.com>
-
-        Rubber-stamped by Martin Robinson.
-
-        Append the directory Tools/DumpRenderTree to the list of directories that
-        do-webcore-rename should search so that it can rename DRT files and
-        source code.
-
-        * Scripts/do-webcore-rename:
-
-2010-12-27  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        build-webkit should detect missing Java SDK and explain how to install it
-        https://bugs.webkit.org/show_bug.cgi?id=51651
-
-        * Scripts/build-webkit:
-
-2010-12-26  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Daniel Bates.
-
-        [GTK] Add support for build-jsc
-        https://bugs.webkit.org/show_bug.cgi?id=51625
-
-        Add GTK+ support to build-jsc now that building the jsc executable as
-        a standalone target is easy.
-
-        * Scripts/build-jsc: Call buildGtkProject for the GTK+ case now.
-        * Scripts/build-webkit: Pass in the proper target name to buildGtkProject.
-        * Scripts/webkitdirs.pm: Actually process the project parameter in buildGtkProject
-        and pass it along to buildAutotoolsProject.
-
-2010-12-27  David Levin  <levin@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        check-webkit-style check for meaningless variable names in function declarations.
-        https://bugs.webkit.org/show_bug.cgi?id=51523
-
-        * Scripts/webkitpy/style/checker.py: Exempted JavaScriptCore/jit/JITStubs.cpp
-        from the new check and whitespace/parens because the syntax is unusual and
-        produced a fair number of positives for these checks.
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (_convert_to_lower_with_underscores): Used as a canonical form for type names
-        and parameter names when determining if the parameter name is useless.
-        (_create_acronym): Used to check for redundant variable names in cases like "ExceptionCode ec"
-        (Parameter.lower_with_underscores_name): Gives back the parameter name in a lower_with_underscore
-        format.
-        (_check_parameter_name_against_text):  Checks to see if the parameter name is in the
-        text or an acronym of it.
-        (check_function_definition): Checks function definitions for meaningless variable names.
-        (process_line): Added call to check_function_definition.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (CppFunctionsTest.test_convert_to_lower_with_underscores): Test for _convert_to_lower_with_underscores.
-        (CppFunctionsTest.test_create_acronym): Test for _create_acronym.
-        (CppFunctionsTest.test_check_parameter_against_text): Test for _check_parameter_against_text.
-        (CppStyleTestBase.perform_single_line_lint): Removed the parameter name check
-        because when only checking a snippet, there are a lot of bogus functions.
-        (CppStyleTestBase.perform_multi_line_lint): Ditto and removed a bogus filter
-        that I put there previously and just noticed.
-        (WebKitStyleTest.test_parameter_names): Tests for the functionality -- both
-        check_function_definition and process_line.
-
-2010-12-27  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Disable flash plugin in GtkLauncher when using gtk3
-        https://bugs.webkit.org/show_bug.cgi?id=51591
-
-        Flash plugin uses gtk2 that is incompatible with gtk3 making
-        webkit crash when it's built with gtk3.
-
-        * GtkLauncher/main.c:
-        (main):
-
-2010-12-25  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Move ANGLE to Sources/ThirdParty
-        https://bugs.webkit.org/show_bug.cgi?id=51605
-
-        * Scripts/build-webkit:
-          - Point to the new ANGLE location.
-
-2010-12-26  David Levin  <levin@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        check-webkit-style should be able to parse function declaration parameters.
-        https://bugs.webkit.org/show_bug.cgi?id=51451
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (Position.__init__): Holds simple position information (row, column).
-        (Parameter.__init__): Holds information about a parameter.
-        (SingleLineView.__init): Converts multiple lines into a single line for simpler searches.
-        (SingleLineView.convert_column_to_row): Returns the original row given a column.
-        (create_skeleton_parameters): Simplifies a parameter list for easier searching.
-        (find_parameter_name_index): Finds where the parameter name is.
-        (parameter_list): Generates the list of parameters for a function.
-        (_FunctionState.begin): Added information to allow determining the parameters
-        on demand.
-        (_FunctionState.get_parameter_list): Returns a tuple of function parameters.
-        (detect_functions): Improve function detection for operator functions and
-        determine where the parameters end and pass that to _FunctionState.begin.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (CppFunctionsTest.test_parameter): Verifies Parameter functionality.
-        (CppFunctionsTest.test_single_line_view): Verifies SingleLineView functionality.
-        (CppFunctionsTest.test_create_skeleton_parameters): Verifies create_skeleton_parameters.
-        (CppFunctionsTest.test_find_parameter_name_index): Verifies find_parameter_name_index.
-        (CppFunctionsTest.test_parameter_list): Does some minimal verification for parameter list.
-        Much more thorough verification is done as part of FunctionDetectionTest.test_parameter_list.
-        (FunctionDetectionTest.perform_function_detection): Added support for verifying
-        the parameters found.
-        (FunctionDetectionTest.test_function_declaration_detection): Added more function
-        detection test to verify that we catch the operator functions.
-        (FunctionDetectionTest.test_ignore_macros): Verify that function detection ignores macros.
-        (FunctionDetectionTest.test_parameter_list): Added tests to verify the parameter parsing.
-        (CheckForFunctionLengthsTest.test_function_length_check_definition_severity1_for_bad_test_doesnt_break): Removed
-        because the error. The test is about the bad function name. Fixing the name makes the test exactly like
-        test_function_length_check_definition_severity1_for_test.
-
-2010-12-25  Patrick Gansterer  <paroga@webkit.org>
-
-        Unreviewed WinCE buildfix after r74334.
-
-        * CMakeListsWinCE.txt:
-
-2010-12-24  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r74632.
-        http://trac.webkit.org/changeset/74632
-        https://bugs.webkit.org/show_bug.cgi?id=51600
-
-        makes test-webkitpy hang forever on GTK (Requested by philn-tp
-        on #webkit).
-
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker.py:
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker_unittest.py:
-
-2010-12-24  Ryuan Choi  <ryuan.choi@samsung.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [EFL] Screen doesn't be rendered when changing size of EWebLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=43528
-
-        Remove on_resize because ewk_view_fixed_layout_size_set should not be
-        called on callback of EVAS_CALLBACK_RESIZE. As it change size of
-        FrameView, rendering was ignored when _ewk_view_smart_calculate was
-        called.
-
-        * EWebLauncher/main.c:
-        (browserCreate):
-
-2010-12-24  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        webkit-patch (or a pre-commit hook) needs to prevent bad ChangeLog changes
-        https://bugs.webkit.org/show_bug.cgi?id=28291
-
-        This is a start.  At least now webkit-patch will prompt when your ChangeLog looks questionable.
-        We could do more advanced things, like parsing the ChangeLog (with changelog.py) and comparing that
-        to strings with find in the diff.
-        Since non-interactive always returns the default, this should cause patches with bad changelogs to fail on the commit-queue.
-
-        * Scripts/webkitpy/common/checkout/api.py:
-        * Scripts/webkitpy/common/checkout/diff_parser.py:
-        * Scripts/webkitpy/tool/steps/abstractstep.py:
-        * Scripts/webkitpy/tool/steps/cleanworkingdirectory.py:
-        * Scripts/webkitpy/tool/steps/validatechangelogs.py: Copied from Tools/Scripts/webkitpy/tool/steps/validatereviewer.py.
-        * Scripts/webkitpy/tool/steps/validatechangelogs_unittest.py: Copied from Tools/Scripts/webkitpy/tool/steps/cleanworkingdirectory.py.
-        * Scripts/webkitpy/tool/steps/validatereviewer.py:
-
-2010-12-24  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Kenneth Russell.
-
-        Modify new-run-webkit-tests to shut up and exit when all the threads
-        are wedged so that test runs complete faster and we don't end up
-        w/ enormous log files.
-
-        https://bugs.webkit.org/show_bug.cgi?id=51572
-
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker.py:
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker_unittest.py:
-
-2010-12-24  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Levin.
-
-        commit-queue should better explain how it will re-open bugs and follow duplicate chains
-        https://bugs.webkit.org/show_bug.cgi?id=51549
-
-        I've had multiple people ask me about the commit-queue's behavior
-        regarding reporting flaky tests.  I figured it would be best to just
-        have the queue explain itself in the bugs it files.
-
-        * Scripts/webkitpy/tool/bot/flakytestreporter.py:
-        * Scripts/webkitpy/tool/bot/flakytestreporter_unittest.py:
-
-2010-12-24  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        check-webkit-style: should ignore "wrong" namings in JavaScriptCore/qt
-        https://bugs.webkit.org/show_bug.cgi?id=51467
-
-        * Scripts/webkitpy/style/checker.py:
-        * Scripts/webkitpy/style/checker_unittest.py:
-
-2010-12-23  Adam Barth  <abarth@webkit.org>
-
-        Rubber-stamped by Eric Seidel.
-
-        Move JavaScriptGlue into Sources
-        https://bugs.webkit.org/show_bug.cgi?id=51583
-
-        These tools refer to JavaScriptGlue and need to be updated to its new
-        location.
-
-        * Scripts/build-webkit:
-        * Scripts/do-file-rename:
-        * Scripts/do-webcore-rename:
-        * Scripts/webkitpy/common/config/build.py:
-        * Scripts/webkitpy/common/config/build_unittest.py:
-
-2010-12-23  Lucas Forschler  <lforschler@apple.com>
-
-        Reviewed by Eric Seidel.
-
-        Bug 51539 - update iexploder scripts to point to new location
-
-        * Scripts/run-iexploder-tests:
-        * Scripts/update-iexploder-cssproperties:
-
-2010-12-23  Evan Martin  <evan@chromium.org>
-
-        Reviewed by Ryosuke Niwa.
-
-        [chromium] LayoutTestController warning in float->int conversion
-        https://bugs.webkit.org/show_bug.cgi?id=51553
-
-        Rather than reading an int, converting to a float, then getting a compiler
-        warning on passing the float to something that expects an int, instead
-        just pass around ints.
-
-        No tests, fixes a compiler warning.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (parsePageSizeParameters):
-        (LayoutTestController::pageNumberForElementById):
-        (LayoutTestController::numberOfPages):
-
-2010-12-23  Lucas Forschler  <lforschler@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Bug 51537 - iexploder needs cleanup
-        
-        * iExploder/htdocs: Removed.
-        * iExploder/htdocs/config.rb: Removed.
-        * iExploder/htdocs/cssproperties.in: Removed.
-        * iExploder/htdocs/cssvalues.in: Removed.
-        * iExploder/htdocs/htmlattrs.in: Removed.
-        * iExploder/htdocs/htmltags.in: Removed.
-        * iExploder/htdocs/htmlvalues.in: Removed.
-        * iExploder/htdocs/iexploder.cgi: Removed.
-        * iExploder/htdocs/iexploder.rb: Removed.
-        * iExploder/htdocs/index.html: Removed.
-        * iExploder/htdocs/webserver.rb: Removed.
-        * iExploder/iexploder-1.7.2/output: Removed.
-        * iExploder/tools: Removed.
-        * iExploder/tools/lasthit.rb: Removed.
-        * iExploder/tools/osx_last_crash.rb: Removed.
-        * iExploder/tools/showtest.rb: Removed.
-
-2010-12-23  Lucas De Marchi  <lucas.demarchi@profusion.mobi>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [EFL] Make 'single' the default backing store in EWebLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=51534
-
-        'single' is the simplest backing store and the one intended to be the
-        default in the test browser. By mistake the tiled backing store was
-        left as default in r72617.
-
-        * EWebLauncher/main.c:
-        (browserCreate): ditto.
-
-2010-12-23  Lucas De Marchi  <lucas.demarchi@profusion.mobi>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [EFL] Subject: [webkit 4/4] [EFL] Remove non-sense workaround
-        https://bugs.webkit.org/show_bug.cgi?id=51533
-
-        There's no point in concatenating env("HOME") with "blah", so remove
-        option from EWebLauncher.
-
-        * EWebLauncher/main.c:
-        (main): ditto.
-
-2010-12-23  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Web Inspector: chromium: inspector's tests are quite slow especially at windows(Debug).
-
-        Almost all inspector's tests become flaky on chromium Win(dbg) after switching to DRT.
-        I just discovered that we have two additional GC runs per each WebViewHost.
-        Test_shell had no such calls.
-        These gc runs eat 15% of cpu time.
-
-        https://bugs.webkit.org/show_bug.cgi?id=51479
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::~WebViewHost):
-
-2010-12-22  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        This change splits out the TestRunner class into its own file.
-        When we fork the code for message passing, we will create a new
-        TestRunner, and this change will allow that to be more modular.
-
-        While we're at it, split out TestInput and ResultSummary into
-        their own files, to reduce the size of run_webkit_tests to
-        something more managable.
-
-        https://bugs.webkit.org/show_bug.cgi?id=51092
-
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/result_summary.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_input.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
- 2010-12-22  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        nrwt multiprocessing - start over, prepare to fork the code
- 
-        This code cleans up the signatures and implementation of the
-        TestRunner class so we can easily fork it to run either the
-        stable implementation or the new, unstable message-passing
-        implementation. The two variants will have different
-        implementations of the run_tests() method. We will switch
-        between the two based on the setting for the '--worker-model'
-        switch. We rename the two currently valid values to 'old-inline'
-        and 'old-threads'.
-
-        https://bugs.webkit.org/show_bug.cgi?id=51081
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-12-22  Victor Wang  <victorw@chromium.org>
-
-        Reviewed by Darin Fisher.
-
-        [Chromium] Update chromium archive test result url in rebaseline script.
-
-        https://bugs.webkit.org/show_bug.cgi?id=51503
-
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-
-2010-12-22  Lucas Forschler  <lforschler@apple.com>
-
-        Reviewed by Alice Liu.
-
-        <rdar://problem/8633222> record-memory-win needs to record memory used by the webprocess.
-        Verified on Chrome, Safari, and IE.
-        With this change, we will record memory from a parent browser window and all child processes.
-
-        * record-memory-win/main.cpp:
-        (ProcessArgs):
-        (PrintUsage):
-        (getMemoryInfo):
-        (printProcessInfo):
-        (evalProcesses):
-        (UseImage):
-        (QueryContinuously):
-        (ElapsedTime):
-
-2010-12-22  Lucas Forschler  <lforschler@apple.com>
-
-        Unreviewed rollout r74489, because it was missing changelog.
-
-        * record-memory-win/main.cpp:
-        
-2010-12-22  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Adding myself as a reviewer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-12-22  Andrew Scherkus  <scherkus@chromium.org>
-
-        Unreviewed.  Adding myself to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-12-22  Ariya Hidayat  <ariya@sencha.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        TestNetscapePlugIn should use #if defined
-        https://bugs.webkit.org/show_bug.cgi?id=51471
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NP_Initialize):
-        (NPP_New):
-
-2010-12-22  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Reviewed by Yury Semikhatsky.
-
-        Web Inspector: [chromium] DRT inspector layout tests are flaky in debug.
-
-        DevTools window should be closed explicitly because it has custom deinitialization code.
-
-        https://bugs.webkit.org/show_bug.cgi?id=50722
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::closeRemainingWindows):
-
-2010-12-22  David Levin  <levin@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        check-webkit-style shouldn't complaint about underscores in variables in objective C files.
-        https://bugs.webkit.org/show_bug.cgi?id=51452
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (_FileState.__init__): Added the information to determine if a file is C or Objective C.
-        Using the file extension if possible but falling back to the file contents if we have a header file.
-        (_FileState.is_objective_c): Determine if we have an Objective C by examining the file contents if needed.
-        (_FileState.is_c_or_objective_c):
-        (check_using_std): Changed to using _FileState to determine the file type.
-        (check_max_min_macros): Ditto.
-        (check_for_null): Ditto.
-        (check_style): Changed the parameters to various calls since they now need _FileState
-        to determine the file type.
-        (check_language): Added the file_state parameter so it could be passed
-        to check_identifier_name_in_declaration.
-        (check_identifier_name_in_declaration): Don't warn about underscores in variables if
-        this is an Objective C file.
-        (_process_lines): Added information for the _FileState constructor (and moved the
-        call to a place that had the information).
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (CppFunctionsTest.test_is_c_or_objective_c): Changed the tests to use FileState and exercise
-        its functionality.
-        (WebKitStyleTest.test_names): Add tests for underscores in Objective C files.
-
-2010-12-21  Andy Estes  <aestes@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        Do not build non-Intel architectures for WebKit2-related projects.
-        https://bugs.webkit.org/show_bug.cgi?id=51440
-
-        * MiniBrowser/Configurations/Base.xcconfig: Only build for i386 and x86_64.
-        * TestWebKitAPI/Configurations/Base.xcconfig: Ditto.
-        * WebKitTestRunner/Configurations/Base.xcconfig: Ditto.
-
-2010-12-21  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Darin Fisher.
-
-        [Chromium] Rename WebThemeEngine/ControlDRT to WebThemeEngine/ControlDRTWin
-        https://bugs.webkit.org/show_bug.cgi?id=51406 
-        
-        Rename WebThemeControlDRT to WebThemeControlDRTWin and WebThemeEngineDRT
-        to WebThemeEngineDRTWin and update references everywhere.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestShellWin.cpp:
-        * DumpRenderTree/chromium/WebThemeControlDRTWin.cpp: Renamed from Tools/DumpRenderTree/chromium/WebThemeControlDRT.cpp.
-        * DumpRenderTree/chromium/WebThemeControlDRTWin.h: Renamed from Tools/DumpRenderTree/chromium/WebThemeControlDRT.h.
-        * DumpRenderTree/chromium/WebThemeEngineDRTWin.cpp: Renamed from Tools/DumpRenderTree/chromium/WebThemeEngineDRT.cpp.
-        * DumpRenderTree/chromium/WebThemeEngineDRTWin.h: Renamed from Tools/DumpRenderTree/chromium/WebThemeEngineDRT.h.
-
-2010-12-21  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by John Sullivan.
-
-        Clicking missing plug-in text does not show a sheet
-        https://bugs.webkit.org/show_bug.cgi?id=51403
-
-        Update for changes to the WebPageUIClient.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::createOtherPage):
-        (WTR::TestController::initialize):
-
-2010-12-21  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue will report constant failures as flaky if other tests flake
-        https://bugs.webkit.org/show_bug.cgi?id=51272
-
-        This patch just removes functionality and adds testing.
-        Previously we attempted to report flaky tests when we had
-        two different tests fail in a row.  However, since we stop
-        running the tests at the first failure, our code was wrong in
-        trying to determine flakiness from the incomplete runs.
-
-        Originally I posted an alternate patch:
-        https://bug-51272-attachments.webkit.org/attachment.cgi?id=77078
-        which fixed our flaky logic in this case, however it was decided
-        that that patch would be too difficult to maintain, so now
-        I'm just removing the broken logic.
-
-        This will dramatically cut-down on our flaky-test false positives
-        at the (small) cost of the queues being unable to report
-        any flakiness if the tree is very flaky.  (With at least one test
-        flaking on every run, we'll never report failures anymore.)  I think
-        this is a tradeoff worth making.
-
-        * Scripts/webkitpy/tool/bot/commitqueuetask.py:
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-
-2010-12-20  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue wrongly rejects patches when it can't update itself
-        https://bugs.webkit.org/show_bug.cgi?id=46636
-
-        * Scripts/webkitpy/tool/bot/commitqueuetask.py:
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2010-12-20  Adam Barth  <abarth@webkit.org>
-
-        Move web sites to Websites directory
-        https://bugs.webkit.org/show_bug.cgi?id=51323
-
-        Update references to BugsSite to point to the new location.
-
-        This patch was never officially reviewed (because it was too large to
-        upload to bugs.webkit.org), but it was discussed on webkit-dev and Mark
-        Rowe gave me the green light.
-
-        * Scripts/old-run-webkit-tests:
-        * Scripts/webkitpy/common/config/build.py:
-        * Scripts/webkitpy/common/config/build_unittest.py:
-        * Scripts/webkitpy/common/prettypatch.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/style/main.py:
-
-2010-12-20  Adrienne Walker  <enne@google.com>
-
-        Unreviewed. Adding myself to the list of committers.
-
-        * webkitpy/common/config/committers.py:
-
-2010-12-20  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        <rdar://problem/8757601> Don't install header files in to the Resources directory.
-
-        * Scripts/check-for-inappropriate-files-in-framework: Don't allow .h files in the
-        Resources directory.
-
-2010-12-20  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue should include bot id when attaching failure diffs
-        https://bugs.webkit.org/show_bug.cgi?id=51280
-
-        This is a tiny change to include the bot id in the name of the attachment.
-        Most of this diff is just changing the unit test expectations
-        now that I hid the comment printing when the comment is None.
-
-        * Scripts/webkitpy/tool/bot/flakytestreporter.py:
-        * Scripts/webkitpy/tool/bot/flakytestreporter_unittest.py:
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-12-20  Jeff Miller  <jeffm@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        Tools/vcbin/midl.exe needs to be rebuilt
-        https://bugs.webkit.org/show_bug.cgi?id=51347
-
-        * vcbin/midl.exe: Rebuilt.
-
-2010-12-20  David Levin  <levin@chromium.org>
-
-        Reviewed by Ariya Hidayat.
-
-        .gitignore and webkit-tools-completion.sh have references to WebKitTools that should be Tools.
-        https://bugs.webkit.org/show_bug.cgi?id=51343
-
-        Follow up from the WebKitTools -> Tools rename.
-
-        * Scripts/webkit-tools-completion.sh:
-
-2010-12-20  Cosmin Truta  <ctruta@chromium.org>
-
-        Reviewed by James Robinson.
-
-        new-run-webkit-tests ignores trailing EOL differences in text tests
-        https://bugs.webkit.org/show_bug.cgi?id=36983
-
-        Changed the handling of new-line characters within new-run-webkit-tests
-        to match old-run-webkit-tests.  Differences in leading and trailing empty
-        lines in text expectation files are no longer ignored.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        Added unit tests.  Removed old duplicate unit test entries.
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-
-2010-12-20  David Levin  <levin@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        check-webkit-style should detect function declarations (and trivial functions).
-        https://bugs.webkit.org/show_bug.cgi?id=51303
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (_FunctionState.begin): Add is_declaration and changed the line count
-        start to begin at -1 (which will keep the results consistent, since
-        the starting line number passed in is one less in this change).
-        (detect_functions): changed function detection to now catch trivial
-        functions and declarations.
-        (check_pass_ptr_usage): Don't check for Pass*Ptr on the first line
-        of the function as this may look at return values (when processing
-        a declaration).
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (FunctionDetectionTest.perform_function_detection): Basic mechanics
-        of testing the function detection.
-        (FunctionDetectionTest.test_basic_function_detection): Test a simple
-        function.
-        (FunctionDetectionTest.test_function_declaration_detection): Test a
-        declaration.
-        (FunctionDetectionTest.test_non_functions): A test case for a case
-        that caused the code to fail due to the { being in quotes.
-        (PassPtrTest.test_pass_ref_ptr_return_value): Added some more test
-        cases to help catch false alarms for return values.
-        (PassPtrTest.test_pass_ref_ptr_member_variable): Ensure that
-        we don't get false alarms for member variables either.
-
-2010-12-20  Ryuan Choi  <ryuan.choi@samsung.com>
-
-        Reviewed by Antonio Gomes.
-
-        [CMAKE] Rename WEBKITTOOLS_DIR to TOOLS_DIR
-        https://bugs.webkit.org/show_bug.cgi?id=51319
-
-        * CMakeListsEfl.txt:
-
-2010-12-18  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Sam Weinig.
-
-        Move WebKitExamplePlugins to Examples
-        https://bugs.webkit.org/show_bug.cgi?id=51291
-
-        * Scripts/webkitpy/common/config/build.py:
-
-2010-12-17  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed Qt buildfix after r74301.
-
-        Rename WebKitTools to Tools
-        https://bugs.webkit.org/show_bug.cgi?id=49861
-
-        * MiniBrowser/DerivedSources.pro:
-        * MiniBrowser/qt/MiniBrowser.pro:
-
-2010-12-17  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Simon Fraser.
-
-        Rename WebKitTools to Tools
-        https://bugs.webkit.org/show_bug.cgi?id=49861
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        * CodeCoverage/README:
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::initializeFonts):
-        * EWSTools/start-commit-queue.sh:
-        * EWSTools/start-queue.sh:
-        * GNUmakefile.am:
-        * MIDLWrapper/MIDLWrapper.cpp:
-        (wmain):
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * Scripts/build-api-tests:
-        * Scripts/build-dumprendertree:
-        * Scripts/build-webkit:
-        * Scripts/build-webkittestrunner:
-        * Scripts/generate-coverage-data:
-        * Scripts/old-run-webkit-tests:
-        * Scripts/run-api-tests:
-        * Scripts/run-iexploder-tests:
-        * Scripts/run-javascriptcore-tests:
-        * Scripts/run-mangleme-tests:
-        * Scripts/run-sunspider:
-        * Scripts/run-webkit-websocketserver:
-        * Scripts/sunspider-compare-results:
-        * Scripts/test-webkitperl:
-        * Scripts/test-webkitpy:
-        * Scripts/update-iexploder-cssproperties:
-        * Scripts/update-webkit:
-        * Scripts/update-webkit-localizable-strings:
-        * Scripts/webkitdirs.pm:
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-        * Scripts/webkitpy/common/config/committervalidator.py:
-        * Scripts/webkitpy/common/config/committervalidator_unittest.py:
-        * Scripts/webkitpy/common/config/ports.py:
-        * Scripts/webkitpy/common/config/ports_unittest.py:
-        * Scripts/webkitpy/common/system/logutils_unittest.py:
-        * Scripts/webkitpy/common/system/ospath_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/config.py:
-        * Scripts/webkitpy/layout_tests/port/config_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/style/checker.py:
-        * Scripts/webkitpy/style/checker_unittest.py:
-        * Scripts/webkitpy/tool/bot/feeders_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-        * WebKitTestRunner/DerivedSources.pro:
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-        (WTR::activateFonts):
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro:
-        * wx/build/build_utils.py:
-
-2010-12-16  Antonio Gomes  <agomes@rim.com>
-
-        Reviewed by Martin Robinson.
-
-        Settings::editingBehaviorType() incorrectly returns mac for the gtk build when running tests
-        https://bugs.webkit.org/show_bug.cgi?id=51163
-
-        Since GTK+'s default editing behavior was changed to UNIX in r70975 (see webkitwebsettings.cpp),
-        GTK+'s DRT should also reset to UNIX after each test execution.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-
-2010-12-17  David Levin  <levin@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        check-webkit-style should understand WTF #include guards
-        https://bugs.webkit.org/show_bug.cgi?id=44911
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (get_header_guard_cpp_variable): modify to suggest the WTF style
-        of header guard when appropriate.
-        (check_for_header_guard): handle multiple return values from
-        get_header_guard_cpp_variable
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (CppStyleTest.test_build_header_guard): Added tests for the WTF
-        header style.
-
-2010-12-16  David Levin  <levin@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        test-webkitpy: unittest for the xml.py checker displays a decprecation warning.
-        https://bugs.webkit.org/show_bug.cgi?id=51210
-
-        The error only shows up when using python 2.6 or later.
-
-        * Scripts/webkitpy/style/checkers/xml.py: Replace the usage of
-        the decprecated field error,message with something equivalent.
-
-2010-12-16  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Add --exit-after-n-failures/crashes to NRWT
-        https://bugs.webkit.org/show_bug.cgi?id=51160
-        
-        Abort test run (in a similar way to how control-C is handled) when
-        --exit-after-n-failures/crashes-or-timeouts are passed and we've reached
-        that number of unexpected failures/crashes/timeouts.
-
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-12-16  David Levin  <levin@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        check-webkit-style unit tests has some duplicate boilerplate code.
-        https://bugs.webkit.org/show_bug.cgi?id=49519
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (update_include_state): Replaced the "io" parameter with the global
-        configuration _unit_test_config. This allowed not calling into
-        functions at a low level and also not plumbing through the injection
-        information through many levels of code.
-        (check_for_include_what_you_use): Ditto.
-        (process_file_data): Added the ability to set up the unit test config
-        to allow for injection.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (ErrorCollector.__init__): Added support for having a filter for errors.
-        (ErrorCollector.__call__): Ditto.
-        (CppStyleTestBase.process_file_data): Added the ability to set unit_test_config.
-        (CppStyleTestBase.perform_lint): Consolidated logic for the perform functions.
-        (CppStyleTestBase.perform_single_line_lint): Replace specific calls to
-        functions in the cpp.py with generic processing and a filter that
-        indicates what errors should be kept.
-        (CppStyleTestBase.perform_multi_line_lint): Ditto.
-        (CppStyleTestBase.perform_language_rules_check): Ditto.
-        (CppStyleTestBase.perform_function_lengths_check): Ditto.
-        (CppStyleTestBase.perform_pass_ptr_check): Ditto.
-        (CppStyleTestBase.perform_include_what_you_use): Ditto.
-        (CppStyleTest.test_multi_line_comments): Added another
-        error message which applies to the test case.
-        (CppStyleTest.test_spacing_for_binary_ops): Fixed test
-        to not have config.h, since it is processed as a header file.
-        (CppStyleTest.test_static_or_global_stlstrings): Fixed variable name
-        style and indentation in checked code.
-        (OrderOfIncludesTest.test_check_preprocessor_in_include_section):
-        Fixed line number.
-        (NoNonVirtualDestructorsTest.test_multi_line_declaration_with_error):
-        Ditto.
-
-2010-12-15  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r74136.
-        http://trac.webkit.org/changeset/74136
-        https://bugs.webkit.org/show_bug.cgi?id=51135
-
-        r74136 breaks chromium canary bots because some tests are not
-        rebaselined correctly to resolve EOL differences (Requested by
-        jianli on #webkit).
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-
-2010-12-15  Adam Roben  <aroben@apple.com>
-
-        Teach check-webkit-style to check .vcproj and .vsprops files for XML
-        syntax errors
-
-        Fixes <http://webkit.org/b/51103> check-webkit-style should check for
-        XML syntax errors in .vcproj/.vsprops files
-
-        Reviewed by Dave Levin.
-
-        * Scripts/webkitpy/style/checker.py: Added lists of file extensions
-        that should be treated as XML and that should be allowed to contain
-        carriage returns. (These lists happen to be identical currently.)
-        (FileType): Added a new XML type.
-        (CheckerDispatcher.should_check_and_strip_carriage_returns): Added.
-        Just does a simple file extension check.
-        (CheckerDispatcher._file_type): Added a case for XML files.
-        (CheckerDispatcher._create_checker): Ditto. We use XMLChecker for XML
-        files (surprise!).
-        (StyleProcessor.process): Ask the dispatcher whether we should pass the
-        lines through the carriage checker.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-        (CheckerDispatcherCarriageReturnTest.test_should_check_and_strip_carriage_returns):
-        Added. Checks a few file names to see if carriage returns are allowed
-        or not.
-        (CheckerDispatcherDispatchTest.assert_checker_xml): Added. Similar to
-        other assert_checker_* functions.
-        (CheckerDispatcherDispatchTest.test_xml_paths): Added. Similar to other
-        test_*_paths functions.
-        (CheckerDispatcherDispatchTest.test_xml_paths): Added. Similar to other
-        test_*_paths functions.
-        (CheckerDispatcherDispatchTest.test_none_paths): Removed the vcproj
-        file from this test case, as vcproj files now have a type.
-        (StyleProcessor_CodeCoverageTest.MockDispatcher.should_check_and_strip_carriage_returns):
-        Added. Similar to the other should_* functions.
-        (StyleProcessor_CodeCoverageTest.test_process__carriage_returns_not_stripped):
-        Added. Checks that carriage returns aren't checked for or stripped for
-        allowed files.
-
-        * Scripts/webkitpy/style/checkers/xml.py: Added.
-        (XMLChecker.__init__): Simple init method.
-        (XMLChecker.check): Pass each line through the expat parser, and record
-        a style error for any errors thrown by the parser.
-
-        * Scripts/webkitpy/style/checkers/xml_unittest.py: Added.
-        (XMLCheckerTest.assert_no_error): Checks that the given XML does not
-        produce a style error.
-        (XMLCheckerTest.assert_error): Checks that the given XML produces an
-        error of the given category on the given line.
-        (XMLCheckerTest.mock_handle_style_error): Does nothing. Used for
-        checking that the XMLChecker constructor works properly.
-        (XMLCheckerTest.test_conflict_marker): Tests that conflict markers
-        cause a style error (see, e.g., r73887).
-        (XMLCheckerTest.test_extra_closing_tag): Tests that extra closing tags
-        cause a style error (see, e.g., r73773).
-        (XMLCheckerTest.test_init): Tests that the XMLChecker constructor works
-        properly.
-        (XMLCheckerTest.test_missing_closing_tag): Tests that missing closing
-        tags cause a style error (see, e.g., r72795).
-        (XMLCheckerTest.test_no_error): Tests that valid XML does not cause a
-        style error.
-
-2010-12-15  Lucas Forschler  <lforschler@apple.com>
-
-        Reviewed by Stephanie Lewis.
-
-        https://bugs.webkit.org/show_bug.cgi?id=51117
-        Add a new leopard test bot
-        really really commit to trunk this time.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2010-12-15  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        WebKit2: Can't add files to an <input type=file>
-        https://bugs.webkit.org/show_bug.cgi?id=51087
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (runOpenPanel):
-        (-[BrowserWindowController awakeFromNib]):
-        Add simple implementation of runOpenPanel callback.
-
-        * MiniBrowser/win/BrowserView.cpp:
-        (BrowserView::create):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::createOtherPage):
-        (WTR::TestController::initialize):
-        Stub out runOpenPanel callback. 
-
-2010-12-14  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue should upload failure diffs when tests flake
-        https://bugs.webkit.org/show_bug.cgi?id=51051
-
-        To make this testable I needed to pipe FileSystem down onto tool.
-        We've wanted it there for a long time anyway.
-
-        This patch is kinda a big hack.  But we don't have a nice
-        way to read results.html files.  I think this will need further
-        revision before this code actually feels clean.
-
-        As part of testing this change, I had to make MockBugzilla.create_bug
-        actually return an id (like it should) which required updating
-        a few other unit test results (for the better).
-
-        The results_matching_keys change in layouttestresults/rebasline
-        was an alternate path which I decided not to use in the end, but
-        I left the change as it seemed an improvement.
-
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        * Scripts/webkitpy/common/net/layouttestresults.py:
-        * Scripts/webkitpy/tool/bot/flakytestreporter.py:
-        * Scripts/webkitpy/tool/bot/flakytestreporter_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        * Scripts/webkitpy/tool/main.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-12-15  Cosmin Truta  <ctruta@chromium.org>
-
-        Reviewed by James Robinson.
-
-        new-run-webkit-tests ignores trailing EOL differences in text tests
-        https://bugs.webkit.org/show_bug.cgi?id=36983
-
-        Changed the handling of new-line characters within new-run-webkit-tests
-        to match old-run-webkit-tests.  Differences in leading and trailing empty
-        lines in text expectation files are no longer ignored.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        Added unit tests.  Removed old duplicate unit test entries.
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-
-2010-12-15  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        make status-bubble white-space:nowrap so we can measure it's width without wrapping
-        https://bugs.webkit.org/show_bug.cgi?id=51149
-
-        * QueueStatusServer/templates/statusbubble.html:
-
-2010-12-15  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        have the statusbubble postMessage it's metrics so that embedders can properly size the iframe
-        https://bugs.webkit.org/show_bug.cgi?id=51125
-
-        * QueueStatusServer/templates/statusbubble.html:
-
-2010-12-15  Darin Adler  <darin@apple.com>
-
-        * Scripts/webkitpy/common/net/buildbot: Added property svn:ignore.
-
-2010-12-15  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r74117.
-        http://trac.webkit.org/changeset/74117
-        https://bugs.webkit.org/show_bug.cgi?id=51113
-
-        This broke the GTK1 build. (Requested by mrobinson on
-        #webkit).
-
-        * Scripts/webkitdirs.pm:
-
-2010-12-15  Amruth Raj  <amruthraj@motorola.com> and Ravi Kasibhatla  <ravi.kasibhatla@motorola.com>
-
-        Reviewed by Martin Robinson.
-
-        Change generate-forwarding-headers.pl for GTK port usage 
-        (https://bugs.webkit.org/show_bug.cgi?id=37369)
-
-        * Scripts/webkitdirs.pm: Added changes to build webkit2 for GTK port using build-webkit script.
-
-2010-12-14  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Jian Li.
-
-        [DRT/Chromium] Remove another unnecessary error message
-        https://bugs.webkit.org/show_bug.cgi?id=51083
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::didInvalidateRect):
-
-2010-12-14  Lucas Forschler  <lforschler@apple.com>
-
-        Reviewed by Stephanie Lewis.
-
-        Add a new Leopard Debug Test WK2 Bot
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2010-12-14  Ojan Vafai  <ojan@chromium.org>
-
-        Fix python unittests after http://trac.webkit.org/changeset/74070.
-
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-
-2010-12-14  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Jian Li.
-
-        [DRT/Chromium] Remove a unnecessary error message
-        https://bugs.webkit.org/show_bug.cgi?id=51069
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::paintInvalidatedRegion):
-
-2010-12-14  Benjamin Kalman  <kalman@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Using BUG/BUGWK in test_expectations is error prone, should use BUGCR/BUGWK
-        https://bugs.webkit.org/show_bug.cgi?id=48926
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        Add presubmit check that BUG isn't used, either BUGCR/BUGWK/BUGV8_.
-
-2010-12-14  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Eric Seidel.
-
-        [Qt] [Symbian] Do not use pkg-config on Symbian as it is not supported
-        https://bugs.webkit.org/show_bug.cgi?id=50231
-
-        Guard CONFIG+=link_pkgconfig with !symbian.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro:
-        * WebKitTestRunner/qt/WebKitTestRunner.pro:
-
-2010-12-14  Philippe Normand  <pnormand@igalia.com>
-
-        Reviewed by Ojan Vafai.
-
-        [new-run-webkit-tests] expectations parsing is slow
-        https://bugs.webkit.org/show_bug.cgi?id=50635
-
-        Avoid expensive iteration of all the tests when checking if a test
-        file is to be skipped or not.
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-
-2010-12-14  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [Gtk] Implement STATE_FOCUSED, STATE_FOCUSABLE, and corresponding events for text objects
-        https://bugs.webkit.org/show_bug.cgi?id=27048
-
-        Add support in DRT for checking whether an accessibility UI
-        element is focusable and/or focused. Implemented for GTK.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (getIsFocusedCallback): New.
-        (getIsFocusableCallback): New.
-        (AccessibilityUIElement::getJSClass): Add the new available
-        callbacks for isFocused and isFocusable.
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::isFocused): New, implemented by checking
-        whether the related AtkState value is in the object's state set.
-        (AccessibilityUIElement::isFocusable): Ditto.
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::isFocused): New, dummy implementation.
-        (AccessibilityUIElement::isFocusable): Ditto.
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::isFocused): Ditto.
-        (AccessibilityUIElement::isFocusable): Ditto.
-
-2010-12-14  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Ojan Vafai.
-
-        webkit-patch should warn users when they're using a 32-bit git on a 64-bit system
-        https://bugs.webkit.org/show_bug.cgi?id=50715
-
-        This patch makes webkit-patch print the following:
-
-        Warning: This machine is 64-bit, but the git binary (/usr/local/git/bin/git) does not support 64-bit.
-        Install a 64-bit git for better performance, see:
-        https://lists.webkit.org/pipermail/webkit-dev/2010-December/015249.html
-
-        I wrote this mostly because I have approximately 8 machines that I use
-        and making sure each one is using a good Git install seemed folly.
-        webkit-patch makes a lot of git calls, so using a fast git can shave
-        several seconds in every invocation.  See the webkit-dev thread for more info.
-
-        This message will print twice during 'webkit-patch upload',
-        once from webkit-patch and once from check-webkit-style.
-
-        Unfortunately there is no good way to test this due to how machine-dependent
-        the code is.  I considered writing a test for the log message, but it seemed not worth it.
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-
-2010-12-13  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        FlakyTestReporter doesn't understand bots running from multiple email addresses
-        https://bugs.webkit.org/show_bug.cgi?id=50960
-
-        This explains at least one of the dupes of:
-        https://bugs.webkit.org/show_bug.cgi?id=50863
-        that we saw filed by the commit-queue this morning.
-        I think the other one was explained by my previous fix to result counting code.
-
-        Since this is really hard to test with a unit test, instead I
-        create a new (possibly useful in the future) command
-        which given a layout test path will return you
-        the one bug which our tools would assume it the flaky test bug.
-        If some other script wants to use bug-for-test we'll
-        need to extend it with some options like --create-if-missing or similar.
-
-        * Scripts/webkitpy/common/net/bugzilla/bug.py:
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        * Scripts/webkitpy/tool/bot/flakytestreporter.py:
-        * Scripts/webkitpy/tool/commands/__init__.py:
-        * Scripts/webkitpy/tool/commands/bugfortest.py: Added.
-
-2010-12-13  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by James Robinson.
-
-        Add option to build-webkit to not build WebKit2
-        https://bugs.webkit.org/show_bug.cgi?id=50988
-        
-        Add support for a --no-webkit2 option to build-webkit. It seems to save
-        ~1 minute from clean builds and ~10 seconds from no-op builds.
-
-        * Scripts/build-webkit:
-
-2010-12-13  Lucas Forschler  <lforschler@apple.com>
-
-        Reviewed by Dave Kilzer.
-
-        Update iexploder from 1.3.2 to 1.7.2
-        Move 1.3.2 into its own subdir
-        Add 1.7.2 into its own subdir
-        update scripts to point to new 1.3.2 location (avoid breaking existing scripts)
-
-        * Scripts/run-iexploder-tests:
-        * Scripts/update-iexploder-cssproperties:
-        * iExploder/CHANGELOG.txt: Removed.
-        * iExploder/LICENSE.txt: Removed.
-        * iExploder/README.txt: Removed.
-        * iExploder/htdocs: Removed.
-        * iExploder/iexploder-1.3.2: Added.
-        * iExploder/iexploder-1.3.2/CHANGELOG.txt: Copied from iExploder/CHANGELOG.txt.
-        * iExploder/iexploder-1.3.2/LICENSE.txt: Copied from iExploder/LICENSE.txt.
-        * iExploder/iexploder-1.3.2/README.txt: Copied from iExploder/README.txt.
-        * iExploder/iexploder-1.3.2/htdocs: Added.
-        * iExploder/iexploder-1.3.2/htdocs/config.rb: Copied from iExploder/htdocs/config.rb.
-        * iExploder/iexploder-1.3.2/htdocs/cssproperties.in: Copied from iExploder/htdocs/cssproperties.in.
-        * iExploder/iexploder-1.3.2/htdocs/cssvalues.in: Copied from iExploder/htdocs/cssvalues.in.
-        * iExploder/iexploder-1.3.2/htdocs/htmlattrs.in: Copied from iExploder/htdocs/htmlattrs.in.
-        * iExploder/iexploder-1.3.2/htdocs/htmltags.in: Copied from iExploder/htdocs/htmltags.in.
-        * iExploder/iexploder-1.3.2/htdocs/htmlvalues.in: Copied from iExploder/htdocs/htmlvalues.in.
-        * iExploder/iexploder-1.3.2/htdocs/iexploder.cgi: Copied from iExploder/htdocs/iexploder.cgi.
-        * iExploder/iexploder-1.3.2/htdocs/iexploder.rb: Copied from iExploder/htdocs/iexploder.rb.
-        * iExploder/iexploder-1.3.2/htdocs/index.html: Copied from iExploder/htdocs/index.html.
-        * iExploder/iexploder-1.3.2/htdocs/webserver.rb: Copied from iExploder/htdocs/webserver.rb.
-        * iExploder/iexploder-1.3.2/tools: Added.
-        * iExploder/iexploder-1.3.2/tools/lasthit.rb: Copied from iExploder/tools/lasthit.rb.
-        * iExploder/iexploder-1.3.2/tools/osx_last_crash.rb: Copied from iExploder/tools/osx_last_crash.rb.
-        * iExploder/iexploder-1.3.2/tools/showtest.rb: Copied from iExploder/tools/showtest.rb.
-        * iExploder/iexploder-1.7.2: Added.
-        * iExploder/iexploder-1.7.2/ChangeLog.txt: Added.
-        * iExploder/iexploder-1.7.2/LICENSE.txt: Added.
-        * iExploder/iexploder-1.7.2/README.txt: Added.
-        * iExploder/iexploder-1.7.2/output: Added.
-        * iExploder/iexploder-1.7.2/src: Added.
-        * iExploder/iexploder-1.7.2/src/browser_harness.rb: Added.
-        * iExploder/iexploder-1.7.2/src/config.yaml: Added.
-        * iExploder/iexploder-1.7.2/src/css-atrules: Added.
-        * iExploder/iexploder-1.7.2/src/css-atrules/mozilla: Added.
-        * iExploder/iexploder-1.7.2/src/css-atrules/webkit: Added.
-        * iExploder/iexploder-1.7.2/src/css-properties: Added.
-        * iExploder/iexploder-1.7.2/src/css-properties/dillo: Added.
-        * iExploder/iexploder-1.7.2/src/css-properties/gtkhtml: Added.
-        * iExploder/iexploder-1.7.2/src/css-properties/internet_explorer6: Added.
-        * iExploder/iexploder-1.7.2/src/css-properties/mozilla: Added.
-        * iExploder/iexploder-1.7.2/src/css-properties/webkit: Added.
-        * iExploder/iexploder-1.7.2/src/css-pseudo: Added.
-        * iExploder/iexploder-1.7.2/src/css-pseudo/mozilla: Added.
-        * iExploder/iexploder-1.7.2/src/css-pseudo/webkit: Added.
-        * iExploder/iexploder-1.7.2/src/css-values: Added.
-        * iExploder/iexploder-1.7.2/src/css-values/dillo: Added.
-        * iExploder/iexploder-1.7.2/src/css-values/gtkhtml: Added.
-        * iExploder/iexploder-1.7.2/src/css-values/mozilla: Added.
-        * iExploder/iexploder-1.7.2/src/css-values/other: Added.
-        * iExploder/iexploder-1.7.2/src/css-values/webkit: Added.
-        * iExploder/iexploder-1.7.2/src/headers: Added.
-        * iExploder/iexploder-1.7.2/src/headers/dillo: Added.
-        * iExploder/iexploder-1.7.2/src/headers/gtkhtml: Added.
-        * iExploder/iexploder-1.7.2/src/headers/mozilla: Added.
-        * iExploder/iexploder-1.7.2/src/headers/webkit: Added.
-        * iExploder/iexploder-1.7.2/src/html-attrs: Added.
-        * iExploder/iexploder-1.7.2/src/html-attrs/dillo: Added.
-        * iExploder/iexploder-1.7.2/src/html-attrs/gtkhtml: Added.
-        * iExploder/iexploder-1.7.2/src/html-attrs/internet_explorer6: Added.
-        * iExploder/iexploder-1.7.2/src/html-attrs/mozilla: Added.
-        * iExploder/iexploder-1.7.2/src/html-attrs/other: Added.
-        * iExploder/iexploder-1.7.2/src/html-attrs/webkit: Added.
-        * iExploder/iexploder-1.7.2/src/html-tags: Added.
-        * iExploder/iexploder-1.7.2/src/html-tags/dillo: Added.
-        * iExploder/iexploder-1.7.2/src/html-tags/gtkhtml: Added.
-        * iExploder/iexploder-1.7.2/src/html-tags/mozilla: Added.
-        * iExploder/iexploder-1.7.2/src/html-tags/other: Added.
-        * iExploder/iexploder-1.7.2/src/html-tags/webkit: Added.
-        * iExploder/iexploder-1.7.2/src/html-values: Added.
-        * iExploder/iexploder-1.7.2/src/html-values/dillo: Added.
-        * iExploder/iexploder-1.7.2/src/html-values/gtkhtml: Added.
-        * iExploder/iexploder-1.7.2/src/html-values/mozilla: Added.
-        * iExploder/iexploder-1.7.2/src/html-values/other: Added.
-        * iExploder/iexploder-1.7.2/src/html-values/webkit: Added.
-        * iExploder/iexploder-1.7.2/src/iexploder.cgi: Added.
-        * iExploder/iexploder-1.7.2/src/iexploder.rb: Added.
-        * iExploder/iexploder-1.7.2/src/index.html: Added.
-        * iExploder/iexploder-1.7.2/src/media: Added.
-        * iExploder/iexploder-1.7.2/src/media/blank.ogg: Added.
-        * iExploder/iexploder-1.7.2/src/media/blank.snd: Added.
-        * iExploder/iexploder-1.7.2/src/media/blank.wav: Added.
-        * iExploder/iexploder-1.7.2/src/media/bug.bmp: Added.
-        * iExploder/iexploder-1.7.2/src/media/bug.gif: Added.
-        * iExploder/iexploder-1.7.2/src/media/bug.ico: Added.
-        * iExploder/iexploder-1.7.2/src/media/bug.jng: Added.
-        * iExploder/iexploder-1.7.2/src/media/bug.jpg: Added.
-        * iExploder/iexploder-1.7.2/src/media/bug.png: Added.
-        * iExploder/iexploder-1.7.2/src/media/bug.svg: Added.
-        * iExploder/iexploder-1.7.2/src/media/bug.tiff: Added.
-        * iExploder/iexploder-1.7.2/src/media/bug.xbm: Added.
-        * iExploder/iexploder-1.7.2/src/media/bug.xpm: Added.
-        * iExploder/iexploder-1.7.2/src/mime-types: Added.
-        * iExploder/iexploder-1.7.2/src/mime-types/dillo: Added.
-        * iExploder/iexploder-1.7.2/src/mime-types/mozilla: Added.
-        * iExploder/iexploder-1.7.2/src/mime-types/webkit: Added.
-        * iExploder/iexploder-1.7.2/src/protocols: Added.
-        * iExploder/iexploder-1.7.2/src/protocols/dillo: Added.
-        * iExploder/iexploder-1.7.2/src/protocols/gtkhtml: Added.
-        * iExploder/iexploder-1.7.2/src/protocols/mozilla: Added.
-        * iExploder/iexploder-1.7.2/src/protocols/webkit: Added.
-        * iExploder/iexploder-1.7.2/src/scanner.rb: Added.
-        * iExploder/iexploder-1.7.2/src/version.rb: Added.
-        * iExploder/iexploder-1.7.2/src/webserver.rb: Added.
-        * iExploder/iexploder-1.7.2/testcases: Added.
-        * iExploder/iexploder-1.7.2/testcases/testcase-Linux_x86_64_rv2.0b6pre_Gecko-20100904_Firefox-4.0b6pre-TEST-8375-1_59.html: Added.
-        * iExploder/iexploder-1.7.2/testcases/testcase-Opera-9.80_Linux_x86_64_en_Presto-2.6.30_Version-10.61-16704-3_108,3.html: Added.
-        * iExploder/iexploder-1.7.2/testcases/testcase-U_Intel_Mac_OS_X_10_6_4_en-US_AppleWebKit-534.8_Chrome-7.0.529.0-TEST-611-3_36,9.html: Added.
-        * iExploder/iexploder-1.7.2/testcases/testcase-U_Intel_Mac_OS_X_10_6_4_en-US_AppleWebKit-534.8_hrome-7.0.529.0-TEST-55313622206-3_6,0.html: Added.
-        * iExploder/iexploder-1.7.2/testcases/testcase-U_Linux_x86_64_en-US_AppleWebKit-534.6_Chrome-7.0.503.1-TEST-120813-8_72,56,24,8,0.html: Added.
-        * iExploder/iexploder-1.7.2/testcases/testcase-U_Linux_x86_64_en-US_AppleWebKit-534.6_Chrome-7.0.503.1-TEST-121240-3_81,3.html: Added.
-        * iExploder/iexploder-1.7.2/testcases/testcase-U_Linux_x86_64_en-US_AppleWebKit-534.7_Chrome-7.0.513.0-4800-5_80,65,15.html: Added.
-        * iExploder/iexploder-1.7.2/testcases/testcase-U_Linux_x86_64_en-US_AppleWebKit-534.7_Chrome-7.0.513.0-TEST-23583190347-3_15,12.html: Added.
-        * iExploder/iexploder-1.7.2/tools: Added.
-        * iExploder/iexploder-1.7.2/tools/lasthit.rb: Added.
-        * iExploder/iexploder-1.7.2/tools/osx_last_crash.rb: Added.
-        * iExploder/iexploder-1.7.2/tools/release_src.sh: Added.
-        * iExploder/iexploder-1.7.2/tools/update_html_tags_from_sources.sh: Added.
-        * iExploder/tools: Removed.
-
-2010-12-13  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Remove associated page concept from WKView constructor
-        https://bugs.webkit.org/show_bug.cgi?id=50983
-
-        Step 1: Remove associate page constructors from WKView and make
-        all views use the shared namespace for the context.
-
-        * TestWebKitAPI/PlatformWebView.h:
-        * TestWebKitAPI/mac/PlatformWebViewMac.mm:
-        * TestWebKitAPI/win/PlatformWebViewWin.cpp:
-        * WebKitTestRunner/PlatformWebView.h:
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::createOtherPage):
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        * WebKitTestRunner/win/PlatformWebViewWin.cpp:
-
-2010-12-13  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Change the WebKit2 public API so there is no explicit WKPageNamespace object
-        https://bugs.webkit.org/show_bug.cgi?id=50898
-
-        * MiniBrowser/mac/AppDelegate.h:
-        * MiniBrowser/mac/AppDelegate.m:
-        * MiniBrowser/mac/BrowserWindowController.h:
-        * MiniBrowser/mac/BrowserWindowController.m:
-        * MiniBrowser/win/BrowserView.cpp:
-        Convert MiniBrowser to not use PageNamespaces.
-
-        * TestWebKitAPI/PlatformWebView.h:
-        * TestWebKitAPI/Tests/WebKit2/DocumentStartUserScriptAlertCrash.cpp:
-        * TestWebKitAPI/Tests/WebKit2/EvaluateJavaScript.cpp:
-        * TestWebKitAPI/Tests/WebKit2/FailedLoad.cpp:
-        * TestWebKitAPI/Tests/WebKit2/Find.cpp:
-        * TestWebKitAPI/Tests/WebKit2/FrameMIMETypeHTML.cpp:
-        * TestWebKitAPI/Tests/WebKit2/FrameMIMETypePNG.cpp:
-        * TestWebKitAPI/Tests/WebKit2/InjectedBundleBasic.cpp:
-        * TestWebKitAPI/Tests/WebKit2/PageLoadBasic.cpp:
-        * TestWebKitAPI/Tests/WebKit2/PageLoadDidChangeLocationWithinPageForFrame.cpp:
-        * TestWebKitAPI/Tests/WebKit2/PreventEmptyUserAgent.cpp:
-        * TestWebKitAPI/Tests/WebKit2/SpacebarScrolling.cpp:
-        * TestWebKitAPI/Tests/WebKit2/win/AltKeyGeneratesWMSysCommand.cpp:
-        * TestWebKitAPI/Tests/WebKit2/win/WMCloseCallsUIClientClose.cpp:
-        * TestWebKitAPI/mac/PlatformWebViewMac.mm:
-        * TestWebKitAPI/win/PlatformWebViewWin.cpp:
-        Convert TestWebKitAPI to not use PageNamespaces.
-
-        * WebKitTestRunner/PlatformWebView.h:
-        * WebKitTestRunner/TestController.cpp:
-        * WebKitTestRunner/TestController.h:
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        * WebKitTestRunner/win/PlatformWebViewWin.cpp:
-        Convert WebKitTestRunner to not use PageNamespaces.
-
-2010-12-13  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
-
-        Reviewed by Eric Seidel.
-
-        webkit-patch rollout should be able to do multi-revision rollouts
-        https://bugs.webkit.org/show_bug.cgi?id=33336
-
-        Make it possible to pass more than one revision to webkit-patch.
-
-        * Scripts/webkitpy/common/checkout/api.py:
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-        * Scripts/webkitpy/tool/commands/abstractsequencedcommand.py:
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/preparechangelogforrevert.py:
-        * Scripts/webkitpy/tool/steps/revertrevision.py:
-
-2010-12-13  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.
-
-        Teach webkit-patch how to search bugzilla
-        https://bugs.webkit.org/show_bug.cgi?id=50500
-
-        webkit-patch bug-search fails when there is only one result.
-        Turns out we needed a bit more logic in our result count parsing code.
-
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla_unittest.py:
-
-2010-12-13  Antti Koivisto  <antti@apple.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Add setSerializeHTTPLoads function to allow testing resource load order on OS X.
-        https://bugs.webkit.org/show_bug.cgi?id=50758
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setSerializeHTTPLoadsCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setSerializeHTTPLoads):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setSerializeHTTPLoads):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setSerializeHTTPLoads):
-
-2010-12-13  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Remove "use-drt" option from test step command line, since the option was removed in r73748.
-        https://bugs.webkit.org/show_bug.cgi?id=50936
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Removed the option.
-
-2010-12-13  Patrick Gansterer  <paroga@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        Add revlink to BuildBot status
-        https://bugs.webkit.org/show_bug.cgi?id=50914
-
-        This adds a hyperlink to trac changeset on the revision numbers. 
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2010-12-13  Andras Becsi  <abecsi@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt][WK2] Fix build if WebKitTools are not available
-        https://bugs.webkit.org/show_bug.cgi?id=50242
-
-        * MiniBrowser/qt/MiniBrowser.pro: Correct the comment.
-        * Scripts/webkitdirs.pm: Added WebKitTools/MiniBrowser to $subdirs.
-        * MiniBrowser/DerivedSources.pro: Added.
-
-2010-12-13  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        EWS Queues should remove orpahned pyc files before starting
-        https://bugs.webkit.org/show_bug.cgi?id=50904
-
-        A previous check added a platform.py which caused
-        EWS bots on some platforms to hit an import exception.
-        The platform.py file was removed in a subsequent commit, but
-        the EWS bots in question stayed stuck.  This change will
-        fix those bots once restarted (and prevent this in the future).
-
-        I also went ahead and unified start-queue and start-commit-queue
-        since they were nearly identical.  I also added bot_id support
-        to both force all EWSes to have bot ids as well as get rid of the one
-        remaining reason why I had my own copies of these scripts.
-        Hopefully this will be enough to get all the other bot admins
-        (ahem, Adam, ahem) to move to using these checked in copies as well.
-
-        * EWSTools/start-commit-queue.sh: Removed.
-        * EWSTools/start-queue.sh:
-
-2010-10-28  MORITA Hajime  <morrita@google.com>
-
-        Reviewed by Ojan Vafai.
-
-        spellcheck does not check pasted text
-        https://bugs.webkit.org/show_bug.cgi?id=40092
-
-        Added LayoutTestController::setAsynchronousSpellCheckingEnabled()
-        to control the setting.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setAsynchronousSpellCheckingEnabledCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setAsynchronousSpellCheckingEnabled):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setAsynchronousSpellCheckingEnabled):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setAsynchronousSpellCheckingEnabled):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setAsynchronousSpellCheckingEnabled):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setAsynchronousSpellCheckingEnabled):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setAsynchronousSpellCheckingEnabled):
-
-2010-12-12  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Fix failing API test. It turns out that a pop-state event
-        is sent before every fragment navigation, so we have to test
-        for it in addition in PageLoadDidChangeLocationWithinPageForFrame.
-
-        * TestWebKitAPI/Tests/WebKit2/PageLoadDidChangeLocationWithinPageForFrame.cpp:
-        (TestWebKitAPI::didSameDocumentNavigationForFrame):
-
-2010-12-12  Alejandro G. Castro  <alex@igalia.com>
-
-        Reviewed by Eric Seidel.
-
-        [GTK] Add new-run-webkit-tests support to gtk
-        https://bugs.webkit.org/show_bug.cgi?id=50681
-
-        Adding the basic support to run the new-run-webkit-tests.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-
-2010-10-11  Diego Gonzalez  <diegohcg@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Mock DeviceOrientation client for DRT
-        https://bugs.webkit.org/show_bug.cgi?id=47490
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::~DumpRenderTree):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setMockDeviceOrientation):
-
-2010-12-11  Philippe Normand  <pnormand@igalia.com>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        [GTK] launcher: disable the Mozilla-style fullscreen API
-        https://bugs.webkit.org/show_bug.cgi?id=50874
-
-        Disabling the fullscreen API until its implementation for GTK is
-        mature enough. The webview setting for it is already FALSE by
-        default.
-
-        * GtkLauncher/main.c:
-        (createWindow):
-
-2010-12-10  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue flaky test messages show cryptic version information for mac os x
-        https://bugs.webkit.org/show_bug.cgi?id=50864
-
-        Turns out platform.platform() returns kernel version information
-        which isn't helpful, and just plain confusing on Mac
-        (OS X 10.6.5 uses Darwin Kernel 10.5.0).
-
-        So I've updated PlatformInfo.display_name() to special case
-        mac.  I also found a bad use of sys.platform in the process
-        and fixed that.  (sys.platform always returns 'darwin' on mac).
-
-        * Scripts/webkitpy/common/system/platforminfo.py:
-        * Scripts/webkitpy/common/system/user.py:
-        * Scripts/webkitpy/tool/bot/flakytestreporter.py:
-        * Scripts/webkitpy/tool/bot/flakytestreporter_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2010-12-10  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.
-
-        Exception seen while reporting flaky test with commit-queue.
-        Just a missing include.
-
-        * Scripts/webkitpy/tool/bot/flakytestreporter.py:
-        * Scripts/webkitpy/tool/bot/flakytestreporter_unittest.py:
-
-2010-12-10  Kinuko Yasuda  <kinuko@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        [Chromium] Remove old JSONResultsGenerator script that existed for backward-compatibility
-        https://bugs.webkit.org/show_bug.cgi?id=50796
-
-        Also updating the test code to use JSONResultsGeneratorBase and
-        to improve test coverage for incremental cases.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator_unittest.py:
-
-2010-12-10  Joseph Pecoraro  <joepeck@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        prepare-ChangeLog --help doesn't mention --bug shorthand -b
-        https://bugs.webkit.org/show_bug.cgi?id=50835
-
-        * Scripts/prepare-ChangeLog: be more explicit about -b and match file style.
-
-2010-12-10  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Bugs created by the commit-queue should all block on a master bug
-        https://bugs.webkit.org/show_bug.cgi?id=50857
-
-        This makes all bugs created by the commit-queue block on:
-        https://bugs.webkit.org/show_bug.cgi?id=50856
-
-        In the process of testing this, I found that the existing
-        create_bug code was wrong.  I also found that existing
-        unit tests for create-rollout used invalid values
-        for options.blocks.  I fixed both issues and tested.
-
-        * Scripts/webkitpy/tool/bot/flakytestreporter.py:
-        * Scripts/webkitpy/tool/bot/flakytestreporter_unittest.py:
-        * Scripts/webkitpy/tool/commands/commandtest.py:
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/options.py:
-
-2010-12-10  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Teach webkitpy how to follow duplicate chains when posting comments on flake bugs
-        https://bugs.webkit.org/show_bug.cgi?id=50853
-
-        I also discovered when doing this that the code was posting
-        the comment on the wrong bug, but that's fixed here too.
-
-        * Scripts/webkitpy/common/net/bugzilla/bug.py:
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        * Scripts/webkitpy/tool/bot/flakytestreporter.py:
-        * Scripts/webkitpy/tool/bot/flakytestreporter_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-12-10  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by John Sullivan.
-
-        Make WKContextGetStatistics gather global statistics
-        https://bugs.webkit.org/show_bug.cgi?id=50850
-
-        Remove the code that gets the statistics and fills in the per context
-        statistics information for now.
-
-        * MiniBrowser/mac/BrowserStatisticsWindowController.m:
-        (-[BrowserStatisticsWindowController refreshStatistics:]):
-
-2010-12-10  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.
-
-        commit-queue should report port/platform information when commenting on flaky test bugs
-        https://bugs.webkit.org/show_bug.cgi?id=50839
-
-        Renamed platform.py to platforminfo.py.  This broke import platform in executive.py
-        which was only used by new run webkit tests (and clearly not unit tested).
-
-        * Scripts/webkitpy/common/system/platforminfo.py: Renamed from WebKitTools/Scripts/webkitpy/common/system/platform.py.
-        * Scripts/webkitpy/tool/main.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-12-10  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Tony Chang.
-
-        commit-queue should report port/platform information when commenting on flaky test bugs
-        https://bugs.webkit.org/show_bug.cgi?id=50839
-
-        This was a suggestion from Tony Chang this morning.
-        I added a platform.py class so I could easily mock the platform call,
-        but that may not be the final solution for this mocking.
-        We'll try it and see.
-
-        * Scripts/webkitpy/common/system/platform.py: Added.
-        * Scripts/webkitpy/tool/bot/flakytestreporter.py:
-        * Scripts/webkitpy/tool/bot/flakytestreporter_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/main.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-12-10  Krithigassree Sambamurthy  <krithigassree.sambamurthy@nokia.com>
-
-        Reviewed by Joseph Pecoraro.
-
-        Bug 43455 - [Qt]: Implement Application Cache Quotas
-        https://bugs.webkit.org/show_bug.cgi?id=43455
-
-        Introduce functions to allow new appcache layout test origin-quota.html
-        to work correctly under Qt.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::dumpApplicationCacheQuota):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-
-        Introduce functions to allow new appcache layout test origin-quota.html
-        to be successful under qt. Changes required because LayoutTestControllerQt
-        does not inherit from LayoutController.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::clearAllApplicationCaches):
-        (LayoutTestController::setApplicationCacheOriginQuota):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController::shouldDumpApplicationCacheDelegateCallbacks):
-        (LayoutTestController::dumpApplicationCacheDelegateCallbacks):
-
-2010-12-10  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Move buildbot.py into its own module so we can split it out into one-file-per-class
-        https://bugs.webkit.org/show_bug.cgi?id=50806
-
-        We're adding more buildbot logic these days, so it makes sense
-        to give buildbot its own module.
-
-        * Scripts/webkitpy/common/net/buildbot/__init__.py: Added.
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py: Renamed from WebKitTools/Scripts/webkitpy/common/net/buildbot.py.
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py: Renamed from WebKitTools/Scripts/webkitpy/common/net/buildbot_unittest.py.
-        * Scripts/webkitpy/common/net/failuremap.py:
-        * Scripts/webkitpy/common/net/regressionwindow.py:
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-
-2010-12-10  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Use FileSystem::remove when cleaning up http lock files
-        https://bugs.webkit.org/show_bug.cgi?id=50830
-
-        * Scripts/webkitpy/layout_tests/port/http_lock.py:
-
-2010-12-10  Joone Hur  <joone@kldp.org>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] DRT needs layoutTestController.setCacheModel
-        https://bugs.webkit.org/show_bug.cgi?id=50705
-        
-        webkit_set_cache_mode() is called to set the cache model.
-        
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setCacheModel): Set the cache model. 
-
-2010-12-10  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        [chromium] remove --use-drt and add --use-test-shell
-        https://bugs.webkit.org/show_bug.cgi?id=50701
-
-        * Scripts/webkitpy/common/config/ports.py:
-        * Scripts/webkitpy/common/config/ports_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-
-2010-12-10  John Knottenbelt  <jknotten@chromium.org>
-
-        Reviewed by Steve Block.
-
-        [Chromium] Implement mocks for client-based geolocation
-        https://bugs.webkit.org/show_bug.cgi?id=46895
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::setGeolocationPermission):
-        (LayoutTestController::setMockGeolocationPosition):
-        (LayoutTestController::setMockGeolocationError):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::geolocationClient):
-        (WebViewHost::geolocationClientMock):
-        (WebViewHost::reset):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2010-12-10  Alejandro G. Castro  <alex@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Add hasSpellingMarker support to the DRT
-        https://bugs.webkit.org/show_bug.cgi?id=50739
-
-        Implemented the hasSpellingMarker to support spelling tests.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::hasSpellingMarker):
-
-2010-12-10  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Ojan Vafai.
-
-        webkit-patch: not possible to use build-and-test with local commits
-        https://bugs.webkit.org/show_bug.cgi?id=33378
-
-        Make --no-clean not even check if we have local commits.
-        It's unclear to me why the code was originally written this way.
-        I was unable to dig up a reason from svn history.
-
-        * Scripts/webkitpy/tool/steps/cleanworkingdirectory.py:
-        * Scripts/webkitpy/tool/steps/cleanworkingdirectory_unittest.py: Copied from WebKitTools/Scripts/webkitpy/tool/steps/cleanworkingdirectory.py.
-
-2010-12-10  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] AX: implement isEnabled in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=50814
-
-        Implement AccessibilityUIElement::isEnabled() for GTK.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (checkElementState): New function to refactor common code.
-        (AccessibilityUIElement::isEnabled): Implement this by checking
-        the current state of the AtkObject.
-        (AccessibilityUIElement::isSelected): Use the new
-        checkElementState function.
-
-2010-12-10  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt][WK2] Add the QWKContext API class to wrap the WebContext.
-        https://bugs.webkit.org/show_bug.cgi?id=50750
-
-        * MiniBrowser/qt/BrowserView.cpp:
-        (BrowserView::BrowserView):
-        * MiniBrowser/qt/BrowserView.h:
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::WebView::WebView):
-
-2010-12-10  Joone Hur  <joone@kldp.org>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] Unskipping some test cases in userscripts dependent on addUserStyleSheet
-        https://bugs.webkit.org/show_bug.cgi?id=50808
-
-        Unskipping the following test cases:
-        userscripts/mixed-case-stylesheet.html
-        userscripts/simple-stylesheet.html
-        userscripts/user-style-all-frames.html
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::addUserStyleSheet):
-
-2010-12-10  Joone Hur  <joone@kldp.org>
-
-        Reviewed by Eric Seidel.
-
-        [GTK] Add DRT support for pageProperty, isPageBoxVisible, pageSizeAndMarginsInPixels, and addUserStyleSheet
-        https://bugs.webkit.org/show_bug.cgi?id=50783
-
-        This patch allows to unskip the following test cases:
-        printing/page-rule-selection.html
-        printing/page-format-data.html
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::pageProperty): Added.
-        (LayoutTestController::isPageBoxVisible): Ditto.
-        (LayoutTestController::pageSizeAndMarginsInPixels): Ditto.
-        (LayoutTestController::addUserStyleSheet): Ditto.
-
-2010-12-10  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Make QtTestBrowser spawn QNAM in a secondary thread.
-
-        A menu allows to switch QNAM back to the same thread.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::initializeView):
-        (LauncherWindow::createChrome):
-        (LauncherWindow::toggleThreadedQnam):
-        * QtTestBrowser/launcherwindow.h:
-        (WindowOptions::WindowOptions):
-        * QtTestBrowser/webpage.cpp:
-        (WebPage::WebPage):
-        (WebPage::setQnamThreaded):
-        * QtTestBrowser/webpage.h:
-        (QnamThread::QnamThread):
-        (QnamThread::~QnamThread):
-        (QnamThread::networkAccessManager):
-        (QnamThread::run):
-
-2010-12-10  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [Gtk] style="font-family: courier" makes text disappear
-        https://bugs.webkit.org/show_bug.cgi?id=47452
-
-        Add a test that verifies that fonts without valid charmaps are
-        never selected.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (initializeFonts): Initialize DRT with our font (derived from Ahem)
-        that has no valid charmap.
-        * DumpRenderTree/gtk/fonts/FontWithNoValidEncoding.fon: Added.
-        * DumpRenderTree/gtk/fonts/fonts.conf: Updated settings to override users'
-        settings which may disable selection of bitmap fonts.
-
-2010-12-10  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.
-
-        The commit-queue should file bugs about flaky tests it encounters
-        https://bugs.webkit.org/show_bug.cgi?id=50803
-
-        create_bug_for_flaky_test was insufficiently tested, thus buggy.
-        Now it's tested.
-
-        * Scripts/webkitpy/tool/bot/flakytestreporter.py:
-        * Scripts/webkitpy/tool/bot/flakytestreporter_unittest.py:
-
-2010-12-10  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Somehow this last-minute edit didn't quite get committed.
-
-        The commit-queue should file bugs about flaky tests it encounters
-        https://bugs.webkit.org/show_bug.cgi?id=50803
-
-        * Scripts/webkitpy/tool/bot/flakytestreporter.py:
-
-2010-12-09  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        The commit-queue should file bugs about flaky tests it encounters
-        https://bugs.webkit.org/show_bug.cgi?id=50803
-
-        This change got a bit big.  I also added a new config.urls file
-        because I needed to share the view_source_url code with committervalidator.py.
-
-        This adds a new class FlakyTestReporter which holds all the logic about
-        reporting flaky tests to bugzilla.
-
-        Right now this code knows how to look up bugs for flaky tests.
-        If it can't find a bug filed from the commit-queue, it will open a new
-        one, ccing the relevant people and adding information about the failure.
-
-        It is not yet smart enough to chase down duplicate chains, or to include
-        the actual failure diff.  But those can be added in later iterations.
-
-        * Scripts/webkitpy/common/checkout/api.py:
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        * Scripts/webkitpy/common/checkout/commitinfo.py:
-        * Scripts/webkitpy/common/config/committervalidator.py:
-        * Scripts/webkitpy/common/config/urls.py: Copied from WebKitTools/Scripts/webkitpy/tool/comments.py.
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        * Scripts/webkitpy/tool/bot/flakytestreporter.py: Added.
-        * Scripts/webkitpy/tool/bot/flakytestreporter_unittest.py: Copied from WebKitTools/Scripts/webkitpy/tool/comments.py.
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        * Scripts/webkitpy/tool/bot/sheriff.py:
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/comments.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/commit.py:
-
-2010-12-09  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Teach webkit-patch how to search bugzilla
-        https://bugs.webkit.org/show_bug.cgi?id=50500
-
-        This is a step towards teaching webkitpy how to file
-        new bugs for flaky tests and update them when new flakes occur.
-
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla_unittest.py:
-        * Scripts/webkitpy/tool/commands/__init__.py:
-        * Scripts/webkitpy/tool/commands/bugsearch.py: Added.
-
-2010-12-09  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Ojan Vafai.
-
-        commit-queue errors out due to local commits
-        https://bugs.webkit.org/show_bug.cgi?id=50766
-
-        We seem to be tripping over having local commits in the working copy a
-        lot recently.  I don't quite fully understand what the issue is, but
-        this patch attempts to solve the problem by adding an explicit clean
-        step before processing a patch.  Previously, we did the cleaning as
-        part of the apply-attachment step, so this might not actually fix the
-        problem.
-
-        * Scripts/webkitpy/tool/bot/commitqueuetask.py:
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2010-12-09  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Make new-run-webkit-tests --lint-test-files log slightly better
-        messages and return -1 if lint fails. Remove the
-        'suppress_errors' keyword param to the TestExpectationsFile
-        class, and clean up logging and exception raising for error
-        handling. Also add more unit tests and clean up the unit test code a bit.
-
-        https://bugs.webkit.org/show_bug.cgi?id=50205
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations_unittest.py
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-
-2010-12-09  Tony Chang  <tony@chromium.org>
-
-        Unreviewed, fix for windows code.  We were catching the wrong
-        exception in Windows.
-
-        * Scripts/webkitpy/common/system/filesystem.py:
-
-2010-12-09  Antonio Gomes  <agomes@rim.com>
-
-        Reviewed by Martin Robinson.
-
-        [Gtk] Populate DumpRenderTreeSupportGtk (part IV)
-        https://bugs.webkit.org/show_bug.cgi?id=48429
-
-        Adjust call sites of webkit_thread_count to use the DumpRenderTreeSupportGtk version now.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::workerThreadCount):
-
-2010-12-06  Philippe Normand  <pnormand@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Support the Mozilla-style Fullscreen Javascript API
-        https://bugs.webkit.org/show_bug.cgi?id=50572
-
-        Enable the Javascript Fullscreen support in the GtkLauncher. Also
-        make DRT update the Chrome when the WebView settings have been
-        reset to consistent values.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * GtkLauncher/main.c:
-        (create_window):
-        * Scripts/build-webkit:
-
-2010-12-09  Koan-Sin Tan  <koansin.tan@gmail.com>
-
-        Reviewed by Tor Arne Vestbø
-
-        [Qt] run-launcher doesn't start the browser on Mac OS X 10.6
-        https://bugs.webkit.org/show_bug.cgi?id=50742
-
-        check not only QtWebKit.framework/QtWebKit but also libQtWebKit.dylib
-
-        * Scripts/webkitdirs.pm:
-
-2010-12-09  Joone Hur  <joone@kldp.org>
-
-         Reviewed by Martin Robinson.
-
-         [GTK] Support for viewport meta tag
-         https://bugs.webkit.org/show_bug.cgi?id=45443
-
-         Add support for testing the viewport properties for WebKitGtk.
-
-         * DumpRenderTree/LayoutTestController.cpp:
-         (dumpConfigurationForViewportCallback): Added this JS callback to set the size of the visible viewport.
-         (LayoutTestController::staticFunctions):
-         * DumpRenderTree/LayoutTestController.h:
-         * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-         (LayoutTestController::dumpConfigurationForViewport): Added this function to test the viewport properties.
-         * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-         (LayoutTestController::dumpConfigurationForViewport): Ditto.
-         * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-         (LayoutTestController::dumpConfigurationForViewport): Ditto.
-         * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-         (LayoutTestController::dumpConfigurationForViewport): Ditto.
-         * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-         (LayoutTestController::dumpConfigurationForViewport): Ditto.
-
-2010-12-08  William Siegrist <wsiegrist@apple.com>
-
-        Reviewed by Eric Seidel.
-
-        Migrate buildbot.py from xmlrpc to json.
-        https://bugs.webkit.org/show_bug.cgi?id=50647
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-
-2010-12-08  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        make starting the websocket server more reliable on windows
-        https://bugs.webkit.org/show_bug.cgi?id=50712
-
-        * Scripts/webkitpy/common/system/filesystem.py:
-        (remove): Substitute method for os.remove to retry on error on Windows
-        * Scripts/webkitpy/common/system/filesystem_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/http_server_base.py: Use FileSystem.remove
-
-2010-12-08  Jessie Berlin  <jberlin@apple.com>
-
-        Reviewed by Adam Roben.
-
-        WebKit2: Implement WebChromeClient::exceededDatabaseQuota
-        https://bugs.webkit.org/show_bug.cgi?id=50656
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        Indicate that exceededDatabaseQuota is not implemented.
-        * MiniBrowser/win/BrowserView.cpp:
-        (BrowserView::create):
-        Ditto.
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::createOtherPage):
-        Ditto.
-        (WTR::TestController::initialize):
-        Ditto.
-
-2010-12-08  Antonio Gomes  <agomes@rim.com>
-
-        Reviewed by Martin Robinson.
-
-        [Gtk] Populate DumpRenderTreeSupportGtk (part III)
-        https://bugs.webkit.org/show_bug.cgi?id=48429
-
-        Moved the following methods from webkitprivate.h to DumpRenderTreeSupportGtk.cpp|h:
-        * webkit_gc_collect_javascript_objects;
-        * webkit_gc_collect_javascript_objects_on_alternate_thread;
-        * webkit_gc_count_javascript_objects;
-        * webkit_web_frame_layout.
-
-        These were all only used by GTK+ DRT.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (dispatchEvent):
-        * DumpRenderTree/gtk/GCControllerGtk.cpp:
-        (GCController::collect):
-        (GCController::collectOnAlternateThread):
-        (GCController::getJSObjectCount):
-
-2010-12-07  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        [chromium] force NRWT to use DRT
-        https://bugs.webkit.org/show_bug.cgi?id=50359
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-12-06  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Generalize didChangeLocationWithinPageForFrame for all same document navigations
-        https://bugs.webkit.org/show_bug.cgi?id=50584
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (didSameDocumentNavigationForFrame):
-        (-[BrowserWindowController awakeFromNib]):
-        (-[BrowserWindowController didSameDocumentNavigationForFrame:]):
-        * TestWebKitAPI/Tests/WebKit2/PageLoadDidChangeLocationWithinPageForFrame.cpp:
-        (TestWebKitAPI::didSameDocumentNavigationForFrame):
-        (TestWebKitAPI::TEST):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        (WTR::InjectedBundlePage::didSameDocumentNavigationForFrame):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-
-2010-12-06  Kinuko Yasuda  <kinuko@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Make TestResultsServer return 404 for non-existing results files.
-        https://bugs.webkit.org/show_bug.cgi?id=50581
-
-        * TestResultServer/handlers/testfilehandler.py:
-
-2010-12-06  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        [chromium] fix an assert hit in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=50575
-
-        This class uses WTF's RefPtr, but expects chrome's base::RefPtr
-        semantics.
-
-        Otherwise, we hit ASSERTION FAILED: !m_adoptionIsRequired
-        (third_party/WebKit/JavaScriptCore/wtf/RefCounted.h:37 void
-        WTF::RefCountedBase::ref()).
-
-        * DumpRenderTree/chromium/TestWebWorker.h:
-        (TestWebWorker::TestWebWorker):
-
-2010-12-02  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        make webkit-patch command work when the git branch is not synced to the remote svn branch
-        https://bugs.webkit.org/show_bug.cgi?id=50424
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-
-2010-12-06  Patrick Gansterer  <paroga@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [WINCE] Add build system
-        https://bugs.webkit.org/show_bug.cgi?id=50522
-
-        * CMakeListsWinCE.txt: Added.
-
-2010-12-03  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Allow the Chromium port to have Leopard-specific baselines
-        https://bugs.webkit.org/show_bug.cgi?id=50506
-
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-
-2010-12-03  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [chromium] fix 2 bugs with inspector tests in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=50492
-
-        Tasks can outlive the tasklist (even when canceled) so this was
-        causing a crash when ~WebTask() ran.  Avoid this by unregistering
-        when a task is canceled.
-
-        Also fix an assert when closing devtool windows by copying some
-        logic from test_shell.
-
-        * DumpRenderTree/chromium/Task.cpp:
-        (WebTask::~WebTask):
-        (TaskList::revokeAll):
-        * DumpRenderTree/chromium/Task.h: Canceling a task now removes it from
-            the tasklist (since the task can outlive the tasklist).
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::devToolsWebView):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::~WebViewHost): Don't load about:blank when closing
-            a window if the window has devtools loaded.  This avoids an
-            ASSERT and matches test_shell.
-
-2010-12-06  Alejandro G. Castro  <alex@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Fix GtkLauncher.c style, use webkit style
-        https://bugs.webkit.org/show_bug.cgi?id=50542
-
-        * GtkLauncher/main.c:
-        (activateUriEntryCb):
-        (updateTitle):
-        (linkHoverCb):
-        (notifyTitleCb):
-        (notifyLoadStatusCb):
-        (notifyProgressCb):
-        (destroyCb):
-        (goBackCb):
-        (goForwardCb):
-        (create_webViewCb):
-        (webViewReadyCb):
-        (closeWebViewCb):
-        (createBrowser):
-        (createStatusbar):
-        (createToolbar):
-        (createWindow):
-        (main):
-
-2010-12-04  Antonio Gomes  <agomes@rim.com>
-
-        Reviewed by Martin Robinson.
-
-        [Gtk] Populate DumpRenderTreeSupportGtk (Part II)
-        https://bugs.webkit.org/show_bug.cgi?id=48429
-
-        Moved more private method declared with WEBKIT_API to
-        DumpRenderTreeSupportGtk, since they were only being used by DRT.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::addOriginAccessWhitelistEntry):
-        (LayoutTestController::execCommand):
-        (LayoutTestController::isCommandEnabled):
-
-2010-12-04  Antonio Gomes  <agomes@rim.com>
-
-        Reviewed by Andreas Kling.
-
-        Removed extern webkit_web_view_set_group_name from gtk/DumpRenderTree.cpp
-
-        Method was removed by http://trac.webkit.org/changeset/71604
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-
-2010-12-05  Alejandro G. Castro  <alex@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] Fix compilation warnings reported by clang
-        https://bugs.webkit.org/show_bug.cgi?id=50252
-
-        * GtkLauncher/main.c:
-        (create_window): The create_statusbar function does not have
-        parameters.
-
-2010-12-05  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Zero-sized font does not yet work
-
-        Fix fast/text/font-size-zero.html
-
-        Copy other ports by setting minimumFontSize to 0 for DRT runs.
-
-        https://bugs.webkit.org/show_bug.cgi?id=49759
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::WebPage):
-
-2010-12-04  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Jon Honeycutt.
-
-        WebKit2: Need client functions to notify app when the url changes due to a fragment navigation
-        https://bugs.webkit.org/show_bug.cgi?id=50511
-
-        Update tools for new didChangeLocationWithinPageForFrame client function (and changed bundle
-        signature) and added a test for the functionality (PageLoadDidChangeLocationWithinPageForFrame.cpp)
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (didChangeLocationWithinPageForFrame):
-        (-[BrowserWindowController awakeFromNib]):
-        (-[BrowserWindowController didChangeLocationWithinPageForFrame:]):
-        * TestWebKitAPI/PlatformUtilities.cpp:
-        (TestWebKitAPI::Util::toWK):
-        * TestWebKitAPI/PlatformUtilities.h:
-        (TestWebKitAPI::Util::adoptWK):
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2/PageLoadDidChangeLocationWithinPageForFrame.cpp: Added.
-        (TestWebKitAPI::nullJavaScriptCallback):
-        (TestWebKitAPI::didFinishLoadForFrame):
-        (TestWebKitAPI::didChangeLocationWithinPageForFrame):
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/file-with-anchor.html: Added.
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        * TestWebKitAPI/win/copy-resources.cmd:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        (WTR::InjectedBundlePage::didChangeLocationWithinPageForFrame):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-
-2010-11-08  Antonio Gomes  <agomes@rim.com>
-
-        Reviewed by Martin Robinson.
-
-        [Gtk] Populate DumpRenderTreeSupportGtk
-        https://bugs.webkit.org/show_bug.cgi?id=48429
-
-        Made the previous calls to webkit_web_frame* functions defined as private
-        APIs in webkitprivate.h go through DRTSupportGtk.
-
-        * DumpRenderTree/gtk/AccessibilityControllerGtk.cpp:
-        (AccessibilityController::focusedElement):
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (dumpFramesAsText):
-        (resetDefaultsToConsistentValues):
-        (dump):
-        (webViewDocumentLoadFinished):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::counterValueForElementById):
-        (LayoutTestController::pageNumberForElementById):
-        (LayoutTestController::numberOfPages):
-        (LayoutTestController::pauseAnimationAtTimeOnElementWithId):
-        (LayoutTestController::pauseTransitionAtTimeOnElementWithId):
-        (LayoutTestController::sampleSVGAnimationForElementAtTime):
-        (LayoutTestController::numberOfActiveAnimations):
-        (LayoutTestController::suspendAnimations):
-        (LayoutTestController::resumeAnimations):
-        (LayoutTestController::markerTextForListItem):
-
-2010-12-03  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Rebaseline server: use pretty text diff output
-        https://bugs.webkit.org/show_bug.cgi?id=50484
-        
-        Serve *-pretty-diff.html for text diff output.
-
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/index.html:
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/main.css:
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/main.js:
-        * Scripts/webkitpy/tool/commands/rebaselineserver.py:
-
-2010-12-03  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r73302.
-        http://trac.webkit.org/changeset/73302
-        https://bugs.webkit.org/show_bug.cgi?id=50499
-
-        Causes crashes in debug LayoutTests (Requested by xan_ on
-        #webkit).
-
-        * DumpRenderTree/chromium/AccessibilityUIElement.cpp:
-        (AccessibilityUIElement::AccessibilityUIElement):
-        (AccessibilityUIElement::parentElementCallback):
-        * DumpRenderTree/chromium/AccessibilityUIElement.h:
-        * DumpRenderTree/chromium/CppBoundClass.cpp:
-        * DumpRenderTree/chromium/CppBoundClass.h:
-
-2010-12-03  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Maciej Stachowiak.
-
-        Enable <a ping> for Mac/Windows/WebKit2 builds
-        <rdar://problem/8504473>
-        https://bugs.webkit.org/show_bug.cgi?id=50488
-
-        * TestWebKitAPI/Tests/WebKit2/WKPreferences.cpp:
-        (TestWebKitAPI::TEST): Test that the default value of
-        WKPreferencesGetHyperlinkAuditingEnabled is true.
-
-2010-12-03  Chris Guillory  <chris.guillory@google.com>
-
-        Reviewed by Chris Fleizach.
-
-        Include the FrameView widget of a RenderWidget in the accessibility tree.
-        https://bugs.webkit.org/show_bug.cgi?id=49106
-
-        * DumpRenderTree/chromium/AccessibilityUIElement.cpp:
-        (AccessibilityUIElement::AccessibilityUIElement):
-        (AccessibilityUIElement::parentElementCallback):
-        (AccessibilityUIElement::isEqualCallback):
-        * DumpRenderTree/chromium/AccessibilityUIElement.h:
-        * DumpRenderTree/chromium/CppBoundClass.cpp:
-        (CppBoundClass::getFromCppVariant):
-        * DumpRenderTree/chromium/CppBoundClass.h:
-
-2010-12-03  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Rebaseline server: organize tests by state, add dry run mode
-        https://bugs.webkit.org/show_bug.cgi?id=50473
-        
-        Group tests in the menu by state, so that it's easier to see after
-        processing the queue which failed.
-        
-        Add support for the --dry-run flag so that it's easier to test changes
-        such as this (stubs out filesystem and SCM operations).
-
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/main.js:
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/queue.js:
-        * Scripts/webkitpy/tool/commands/rebaselineserver.py:
-
-2010-12-03  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Anders Carlsson.
-
-        Groundwork for <rdar://problem/7660733> and https://bugs.webkit.org/show_bug.cgi?id=50191
-        WebKit2 Authentication Support
-
-        Keep these builds working:
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-
-2010-12-02  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Rebaseline server: move existing baselines
-        https://bugs.webkit.org/show_bug.cgi?id=50421
-        
-        Implement moving of existing baselines: move all files that are about
-        to be overwriten by update baselines.
-        
-        Also fix a typo in the UI JS.
-
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/queue.js:
-        * Scripts/webkitpy/tool/commands/rebaselineserver.py:
-        * Scripts/webkitpy/tool/commands/rebaselineserver_unittest.py:
-
-2010-12-03  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r73211.
-        http://trac.webkit.org/changeset/73211
-        https://bugs.webkit.org/show_bug.cgi?id=50450
-
-        Broke Chromium's "Webkit Win (dbg)(2)" bot. (Requested by
-        yutak on #webkit).
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-
-2010-12-03  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r73222.
-        http://trac.webkit.org/changeset/73222
-        https://bugs.webkit.org/show_bug.cgi?id=50449
-
-        r73211 seemed to break Chromium's "Webkit Win (dbg)(2)" bot.
-        (Requested by yutak on #webkit).
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker.py:
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-12-03  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r73228.
-        http://trac.webkit.org/changeset/73228
-        https://bugs.webkit.org/show_bug.cgi?id=50448
-
-        r73211 seemed to break Chromium's "Webkit Win (dbg)(2)" bot.
-        (Requested by yutak on #webkit).
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py:
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py:
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base_unittest.py:
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-
-2010-12-03  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r73231.
-        http://trac.webkit.org/changeset/73231
-        https://bugs.webkit.org/show_bug.cgi?id=50443
-
-        r73211 seemed to broke Chromium's "Webkit Win (dbg)(2)" bot.
-        (Requested by yutak on #webkit).
-
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker.py:
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-12-03  David Levin  <levin@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        check-webkit-style: false positive reported for #if macro
-        https://bugs.webkit.org/show_bug.cgi?id=48242
-
-        * Scripts/webkitpy/style/checkers/cpp.py: Adjusted check to avoid
-          all preprocessor commands.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Added test.
-
-2010-12-02  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Update the EWSTools scripts to use modern-style git repos
-        https://bugs.webkit.org/show_bug.cgi?id=50402
-
-        * EWSTools/create-webkit-git:
-        * EWSTools/start-commit-queue.sh:
-        * EWSTools/start-queue.sh:
-
-2010-12-02  Simon Fraser  <simon.fraser@apple.com>
-
-        Fix Chromium Linux plugin tests by not logging
-        unconditionally from the event handling code.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (handleEventX11):
-
-2010-12-02  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        nrwt multiprocessing - move logic back into run_webkit_tests
-
-        This change moves a bunch of logic that I had put into
-        message_broker back into run_webkit_tests, in a slightly
-        different format. WorkerMessageBroker needed to become less aware of
-        the logic the TestRunner class uses, and more generic.
-        Eventually the MessageBroker will only do generic messaging and
-        thread/process-pooling, and (almost) all of the
-        run-webkit-tests-specific logic will be moved to
-        run_webkit_tests.py and dump_render_tree_thread.py.
-        
-        The biggest changes are that the Broker can now start a single
-        worker, but the responsibility for starting all of them is pushed
-        back to the TestRunner (Manager), and the logic for checking if
-        the threads are done or wedged is moved back to TestRunner. We
-        also remove WorkerMessageBroker.cleanup (not needed) and
-        cancel_workers (they have to be cancelled individually).
-        
-        The  message_broker is now encapsulated inside
-        TestRunner._run_tests(); it only needs to exist while actually
-        running the tests.
-
-        Also, delete a bunch of tests in message_broker_unittest that no
-        longer make much sense.
-
-        This patch depends on bug 50372.
-
-        https://bugs.webkit.org/show_bug.cgi?id=50374
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker.py:
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-12-02  Hayato Ito  <hayato@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Refactor test_types's compare_output() method so that it takes a
-        TestInput object.
-
-        compare_output() will need additional information included in a TestInput
-        object to support reftests. This change is a pre-requirement of that.
-
-        https://bugs.webkit.org/show_bug.cgi?id=50362
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py:
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py:
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base_unittest.py:
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-
-2010-12-02  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Anders Carlsson.
-
-        Add the ability to run script on 'new' and 'paint' in the test plugin
-        https://bugs.webkit.org/show_bug.cgi?id=50425
-        
-        Add "onnew" and "onpaintevent" attributes to the test plugin,
-        so that tests can run JS at these times.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:
-        (pluginAllocate):
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.h:
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_New):
-        (NPP_Destroy):
-        (handleEventCarbon):
-        (handleEventCocoa):
-        (NPP_HandleEvent):
-
-2010-12-02  Sam Weinig  <sam@webkit.org>
-
-        Fix Qt build.
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-
-2010-12-02  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        WebKit2 Preferences should be held off the PageGroup, not the Context
-        https://bugs.webkit.org/show_bug.cgi?id=50414
-
-        Update for API changes.
-
-        * WebKitTestRunner/PlatformWebView.h:
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::createOtherPage):
-        (WTR::TestController::initialize):
-        (WTR::TestController::resetStateToConsistentValues):
-        * WebKitTestRunner/TestController.h:
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (WTR::PlatformWebView::PlatformWebView):
-        * WebKitTestRunner/win/PlatformWebViewWin.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-
-2010-12-02  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: minor cleanup for multiprocessing work
-
-        This change:
-        * moves worker naming into TestShellThread, eliminating a
-          parameter to the constructor and putting the responsibility in
-          the correct place.
-        * eliminates the _WorkerState() class in message_broker, because
-          it turns out that state really needs to be in run_webkit_tests
-        * renames the Broker classes to be module-private.
-        * fixes a bunch of minor commenting and whitespace issues to
-          make subsequent patches a bit clearer.
-        * Adds a Port hook for default_worker_model() so that we can
-          accomodate the potential for different worker models on
-          different ports.
-        * merge in the fix from 50420 for the brokenness introduced in
-          bug 50367.
-
-        This patch depends on bug 50367.
-
-        https://bugs.webkit.org/show_bug.cgi?id=50372
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker.py:
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-12-02  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        This change is a bunch of cleanup / refactoring of the file
-        below. It moves a bunch of free functions to methods on the
-        TestShellThread class, and restructures other methods to be
-        closer to the structure we'll need for the multiprocessing
-        rewrite.
-
-        It also makes the logic of --run-singly a *lot* easier to follow
-        by nestling all of the separate-thread logic into a single
-        routine.
-
-        There should be no semantic changes in this patch, just cleanup.
-
-        https://bugs.webkit.org/show_bug.cgi?id=50367
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-
-2010-12-02  Tony Chang  <tony@chromium.org>
-
-        Unreviewed, rolling out r73164.
-        http://trac.webkit.org/changeset/73164
-        https://bugs.webkit.org/show_bug.cgi?id=50359
-
-        broke debugger tests on win
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-11-30  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Rebaseline server: add updating of baselines
-        https://bugs.webkit.org/show_bug.cgi?id=50305
-        
-        Implements updating of baselines, where we copy -actual.* files over
-        the current -expected.* files. To do this, we need a
-        _get_actual_result_files method to get test results files and a
-        _rebaseline_test method to actually do the file copy and SCM operation.
-        _rebaseline_test logs output into a buffer, this is useful for both
-        showing result in the UI and for unit tests.
-        
-        To make passing around of the various test environment properties
-        (results directory, filesystem, SCM, etc) easier, add a TestConfig
-        class for them.
-        
-        Moving of existing baselines is not implemented yet, this patch is big
-        enough as it is.
-
-        * Scripts/webkitpy/common/system/filesystem.py:
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/queue.js:
-        * Scripts/webkitpy/tool/commands/rebaselineserver.py:
-        * Scripts/webkitpy/tool/commands/rebaselineserver_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-12-02  Brent Fulgham  <bfulgham@webkit.org>
-
-        Unreviewed build fix after vcproj updates.
-
-        * DumpRenderTree/win/DumpRenderTreeCairo.vsprops: Make sure
-        that WIN_CAIRO is defined for this build.
-        * DumpRenderTree/win/DumpRenderTreePreBuild.cmd: Update file
-        to reflect new 'Debug_Cairo_CFLite' and 'Release_Cairo_CFLite'
-        (these were previously 'Debug_Cairo' and 'Release_Cairo'
-
-2010-12-02  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        WebKit2 needs API to turn on popup blocking
-        https://bugs.webkit.org/show_bug.cgi?id=50407
-
-        * TestWebKitAPI/Tests/WebKit2/WKPreferences.cpp:
-        (TestWebKitAPI::TEST):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-
-2010-12-01  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        [chromium] force NRWT to use DRT
-        https://bugs.webkit.org/show_bug.cgi?id=50359
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-12-02  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] DumpRenderTree has two copies of JavaScriptCore
-        https://bugs.webkit.org/show_bug.cgi?id=49877
-
-        * GNUmakefile.am: Remove the second copy of JavaScriptCore from the
-        LDADD list for DumpRenderTree.
-
-2010-12-02  Sergio Villar Senin  <svillar@igalia.com>
-
-        Unreviewed: Added myself to list of Committers.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-12-01  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        build-webkit --chromium always updates DEPS and re-generates project files
-        https://bugs.webkit.org/show_bug.cgi?id=50340
-        
-        Make build-webkit --chromium invoke update-webkit-chromium only when
-        --update-chromium is passed in, so that we don't add 20 seconds to all
-        builds.
-        
-        Making all invocations update was added with r61883, with the goal of
-        making EWS bots always update. The bots will switch to using this flag
-        (as will all other webkit-patch build steps) so nothing should change
-        for them.
-
-        * Scripts/webkitdirs.pm:
-        * Scripts/webkitpy/common/config/ports.py:
-        * Scripts/webkitpy/common/config/ports_unittest.py:
-
-2010-12-01  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: add a --dry-run / -n flag
-        https://bugs.webkit.org/show_bug.cgi?id=50045
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-12-01  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Adam Roben.
-
-        WinCairo build should not use link-time code generation (LTCG)
-        https://bugs.webkit.org/show_bug.cgi?id=50353
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/ImageDiff.vcproj:
-        * FindSafari/FindSafari.vcproj:
-        * MiniBrowser/MiniBrowser.vcproj:
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        * WebKitAPITest/WebKitAPITest.vcproj:
-        * WebKitLauncherWin/WebKitLauncherWin.vcproj:
-        * WebKitTestRunner/win/InjectedBundle.vcproj:
-        * WebKitTestRunner/win/WebKitTestRunner.vcproj:
-        * WinLauncher/WinLauncher.vcproj:
-        * record-memory-win/record-memory-win.vcproj:
-
-2010-12-01  Martin Robinson  <mrobinson@igalia.com>
-
-        Touch GetUserAgentWithNullNPPFromNPPNew.cpp in an effort to force
-        a rebuild of TestNetscapePlugin.la on GTK+. It seems that simply
-        adding the file to the sources list was not enough to force the rebuild.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/GetUserAgentWithNullNPPFromNPPNew.cpp:
-        Remove an empty line at the end of this file to force a rebuild.
-
-2010-12-01  Sam Weinig  <sam@webkit.org>
-
-        Fix windows build.
-
-        * MiniBrowser/win/BrowserView.cpp:
-        (BrowserView::create):
-
-2010-12-01  Martin Robinson  <mrobinson@igalia.com>
-
-        Add missing file to the TestNetscapePlugin sources list after r73057.
-
-        * GNUmakefile.am: Add missing file.
-
-2010-12-01  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Add PageGrouping to WebKit2 API
-        https://bugs.webkit.org/show_bug.cgi?id=50332
-
-        - Update testing harnesses to deal with new PageGroup API.
-
-        * MiniBrowser/mac/WebBundle/WebBundleMain.m:
-        (WKBundleInitialize):
-        * TestWebKitAPI/InjectedBundleController.cpp:
-        (TestWebKitAPI::InjectedBundleController::initialize):
-        (TestWebKitAPI::InjectedBundleController::didInitializePageGroup):
-        (TestWebKitAPI::InjectedBundleController::initializeTestNamed):
-        * TestWebKitAPI/InjectedBundleController.h:
-        * TestWebKitAPI/InjectedBundleTest.h:
-        (TestWebKitAPI::InjectedBundleTest::initialize):
-        (TestWebKitAPI::InjectedBundleTest::didInitializePageGroup):
-        * TestWebKitAPI/PlatformUtilities.cpp:
-        (TestWebKitAPI::Util::createContextForInjectedBundleTest):
-        * TestWebKitAPI/PlatformUtilities.h:
-        * TestWebKitAPI/PlatformWebView.h:
-        * TestWebKitAPI/Tests/WebKit2/DocumentStartUserScriptAlertCrash.cpp:
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/DocumentStartUserScriptAlertCrash_Bundle.cpp:
-        (TestWebKitAPI::DocumentStartUserScriptAlertCrashTest::initialize):
-        * TestWebKitAPI/mac/PlatformWebViewMac.mm:
-        (TestWebKitAPI::PlatformWebView::PlatformWebView):
-        * TestWebKitAPI/win/PlatformWebViewWin.cpp:
-        (TestWebKitAPI::PlatformWebView::PlatformWebView):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::didInitializePageGroup):
-        (WTR::InjectedBundle::initialize):
-        (WTR::InjectedBundle::beginTesting):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (WTR::InjectedBundle::pageGroup):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::addUserScript):
-        (WTR::LayoutTestController::addUserStyleSheet):
-        (WTR::LayoutTestController::setXSSAuditorEnabled):
-        * WebKitTestRunner/TestController.cpp:
-        * WebKitTestRunner/win/PlatformWebViewWin.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-
-2010-12-01  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Adam Roben.
-
-        vcproj changes can't be applied cleanly by the Windows EWS bot
-        https://bugs.webkit.org/show_bug.cgi?id=50328
-
-        * CLWrapper/CLWrapper.sln: Modified property svn:eol-style.
-        * CLWrapper/CLWrapper.vcproj: Modified property svn:eol-style.
-        * DumpRenderTree/DumpRenderTree.sln: Modified property svn:eol-style.
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginCommon.vsprops: Added property svn:eol-style.
-        * DumpRenderTree/win/DumpRenderTree.vcproj: Modified property svn:eol-style.
-        * DumpRenderTree/win/DumpRenderTreeApple.vsprops: Added property svn:eol-style.
-        * DumpRenderTree/win/DumpRenderTreeCFLite.vsprops: Added property svn:eol-style.
-        * DumpRenderTree/win/DumpRenderTreeCairo.vsprops: Added property svn:eol-style.
-        * DumpRenderTree/win/DumpRenderTreeCommon.vsprops: Added property svn:eol-style.
-        * DumpRenderTree/win/ImageDiff.vcproj: Modified property svn:eol-style.
-        * DumpRenderTree/win/ImageDiffCommon.vsprops: Added property svn:eol-style.
-        * FindSafari/FindSafari.vcproj: Modified property svn:eol-style.
-        * FindSafari/FindSafariCommon.vsprops: Added property svn:eol-style.
-        * MIDLWrapper/MIDLWrapper.sln: Modified property svn:eol-style.
-        * MIDLWrapper/MIDLWrapper.vcproj: Modified property svn:eol-style.
-        * MiniBrowser/Configurations/MiniBrowserCFLite.vsprops: Added property svn:eol-style.
-        * MiniBrowser/Configurations/MiniBrowserCommon.vsprops: Added property svn:eol-style.
-        * MiniBrowser/Configurations/MiniBrowserCoreFoundation.vsprops: Added property svn:eol-style.
-        * MiniBrowser/MiniBrowser.vcproj: Added property svn:eol-style.
-        * TestWebKitAPI/Configurations/TestWebKitAPICFLite.vsprops: Added property svn:eol-style.
-        * TestWebKitAPI/Configurations/TestWebKitAPICommon.vsprops: Added property svn:eol-style.
-        * TestWebKitAPI/Configurations/TestWebKitAPICoreFoundation.vsprops: Added property svn:eol-style.
-        * TestWebKitAPI/win/TestWebKitAPI.sln: Added property svn:eol-style.
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj: Added property svn:eol-style.
-        * TestWebKitAPI/win/TestWebKitAPIGenerated.vcproj: Added property svn:eol-style.
-        * TestWebKitAPI/win/TestWebKitAPIGeneratedCommon.vsprops: Added property svn:eol-style.
-        * WebKitAPITest/WebKitAPITest.vcproj: Added property svn:eol-style.
-        * WebKitAPITest/WebKitAPITestCommon.vsprops: Added property svn:eol-style.
-        * WebKitLauncherWin/WebKitLauncherWin.vcproj: Modified property svn:eol-style.
-        * WebKitLauncherWin/WebKitLauncherWinCommon.vsprops: Added property svn:eol-style.
-        * WebKitTestRunner/Configurations/InjectedBundleCFLite.vsprops: Added property svn:eol-style.
-        * WebKitTestRunner/Configurations/InjectedBundleCommon.vsprops: Added property svn:eol-style.
-        * WebKitTestRunner/Configurations/InjectedBundleCoreFoundation.vsprops: Added property svn:eol-style.
-        * WebKitTestRunner/Configurations/WebKitTestRunnerCFLite.vsprops: Added property svn:eol-style.
-        * WebKitTestRunner/Configurations/WebKitTestRunnerCommon.vsprops: Added property svn:eol-style.
-        * WebKitTestRunner/Configurations/WebKitTestRunnerCoreFoundation.vsprops: Added property svn:eol-style.
-        * WebKitTestRunner/WebKitTestRunner.sln: Added property svn:eol-style.
-        * WebKitTestRunner/win/InjectedBundle.vcproj: Added property svn:eol-style.
-        * WebKitTestRunner/win/InjectedBundleGenerated.vcproj: Added property svn:eol-style.
-        * WebKitTestRunner/win/InjectedBundleGeneratedCommon.vsprops: Added property svn:eol-style.
-        * WebKitTestRunner/win/WebKitTestRunner.vcproj: Added property svn:eol-style.
-        * WinLauncher/WinLauncher.vcproj: Modified property svn:eol-style.
-        * WinLauncher/WinLauncherCommon.vsprops: Added property svn:eol-style.
-        * record-memory-win/record-memory-win-common.vsprops: Added property svn:eol-style.
-        * record-memory-win/record-memory-win.vcproj: Modified property svn:eol-style.
-
-2010-12-01  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Return a correct user agent if NPN_UserAgent is called with a null NPP from NPP_New.
-        https://bugs.webkit.org/show_bug.cgi?id=50336
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        Add new test.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-        (PluginTest::NPP_New):
-        Add default implementation/
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.h:
-        * DumpRenderTree/TestNetscapePlugIn/Tests/GetUserAgentWithNullNPPFromNPPNew.cpp: Added.
-        (GetUserAgentWithNullNPPFromNPPNew::GetUserAgentWithNullNPPFromNPPNew):
-        (GetUserAgentWithNullNPPFromNPPNew::NPP_New):
-        Get the user agent.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_New):
-        Call PluginTest::NPP_New.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        Add new files.
-
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_new_instance):
-        Call PluginTest::NPP_New.
-
-2010-12-01  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fixes after recent trunk changes.
-
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::findString):
-        * wx/build/settings.py:
-
-2010-12-01  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Darin Adler.
-
-        WebKitTestRunner needs layoutTestController.findString
-        https://bugs.webkit.org/show_bug.cgi?id=50238
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl: Added findString().
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::findString): Updated signature for autogenerated bindings.
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h: Ditto.
-
-2010-12-01  Steve Falkenburg  <sfalken@apple.com>
-
-        Try using svn:eol-style native on a vcproj file.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj: Modified property svn:eol-style.
-
-2010-12-01  Patrick Gansterer  <paroga@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        [WINCE] Add WinCELauncher
-        https://bugs.webkit.org/show_bug.cgi?id=50217
-
-        * WinCELauncher/main.cpp: Added.
-
-2010-11-30  Benjamin Poulain  <benjamin.poulain@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Implement layoutTestController.findString
-        https://bugs.webkit.org/show_bug.cgi?id=50236
-
-        Add the missing function to the LayoutTestController.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::findString):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-11-30  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        [chromium] fix get-int-identifier-special-values.html using TestNetscapePlugIn
-        https://bugs.webkit.org/show_bug.cgi?id=49036
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp: Use IsNumber instead of IsInt32
-            for CppVariants.
-        (LayoutTestController::cppVariantToBool):
-        (LayoutTestController::cppVariantToInt32):
-        (LayoutTestController::setDatabaseQuota):
-        (LayoutTestController::evaluateInWebInspector):
-        (LayoutTestController::setMockGeolocationError):
-
-2010-11-30  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Tony Chang.
-
-        update-webkit should call git fetch before git svn rebase
-        https://bugs.webkit.org/show_bug.cgi?id=50273
-
-        After discussion on webkit-dev, we've decided to move the "default"
-        git setup to pulling updates from git.webkit.org in preference
-        to rebuilding the local svn index using git svn fetch every time.
-
-        This change should have no effect on people using the "old" git setup
-        and should dramatically increase the speed of updates for those using
-        the "new" git setup along with update-webkit.  I'm about to move the
-        EWS and other queues over to this setup once this lands.
-
-        * Scripts/update-webkit:
-
-2010-11-30  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        GTK: AX: implement press in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=36146
-
-        Implement AccessibilityUIElement::press() for GTK.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::press): Implemented.
-
-2010-11-29  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        config.webkit_base_dir returns a path with a trailing slash
-        https://bugs.webkit.org/show_bug.cgi?id=50197
-        
-        config.webkit_base_dir() should return a path without a trailing slash,
-        like all the other methods that return paths.
-        
-        Undoes MockFileSytem changes by r72640, since they're no longer
-        necessary for GetBaselinesTest to pass.
-
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/config.py:
-        * Scripts/webkitpy/layout_tests/port/config_unittest.py:
-
-2010-11-30  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Rebaseline server: baseline display tweaks
-        https://bugs.webkit.org/show_bug.cgi?id=50207
-        
-        Determine which baselines were used when running the tests and highlight
-        them in the UI. Sort platform names alphabetically.
-        
-        Also makes the server URL be launched in the user's browser
-        automatically.
-
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/main.css:
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/main.js:
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/util.js:
-        * Scripts/webkitpy/tool/commands/rebaselineserver.py:
-        * Scripts/webkitpy/tool/commands/rebaselineserver_unittest.py:
-
-2010-11-30  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Anders Carlsson.
-
-        <rdar://problem/8710645> WebKitTestRunner needs layoutTestController.findString
-        https://bugs.webkit.org/show_bug.cgi?id=50238
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::findString): Added.
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2010-11-30  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Adam Roben.
-
-        All projects on Windows should use cmd files for build events
-        https://bugs.webkit.org/show_bug.cgi?id=50213
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginCommon.vsprops:
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginPostBuild.cmd: Added.
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginPreBuild.cmd: Added.
-        * DumpRenderTree/win/DumpRenderTreeCommon.vsprops:
-        * DumpRenderTree/win/DumpRenderTreePostBuild.cmd: Added.
-        * DumpRenderTree/win/DumpRenderTreePreBuild.cmd: Added.
-        * DumpRenderTree/win/ImageDiffCommon.vsprops:
-        * DumpRenderTree/win/ImageDiffPostBuild.cmd: Added.
-        * DumpRenderTree/win/ImageDiffPreBuild.cmd: Added.
-        * MiniBrowser/Configurations/MiniBrowserCFLite.vsprops:
-        * MiniBrowser/Configurations/MiniBrowserCommon.vsprops:
-        * MiniBrowser/Configurations/MiniBrowserCoreFoundation.vsprops:
-        * MiniBrowser/MiniBrowserPostBuild.cmd: Added.
-        * MiniBrowser/MiniBrowserPreBuild.cmd: Added.
-        * TestWebKitAPI/Configurations/TestWebKitAPICommon.vsprops:
-        * TestWebKitAPI/win/TestWebKitAPIPostBuild.cmd: Added.
-        * TestWebKitAPI/win/TestWebKitAPIPreBuild.cmd: Added.
-        * WebKitAPITest/WebKitAPITestCommon.vsprops:
-        * WebKitAPITest/WebKitAPITestPostBuild.cmd: Added.
-        * WebKitAPITest/WebKitAPITestPreBuild.cmd: Added.
-        * WebKitTestRunner/Configurations/InjectedBundleCommon.vsprops:
-        * WebKitTestRunner/Configurations/WebKitTestRunnerCommon.vsprops:
-        * WebKitTestRunner/win/InjectedBundlePostBuild.cmd: Added.
-        * WebKitTestRunner/win/InjectedBundlePreBuild.cmd: Added.
-        * WebKitTestRunner/win/WebKitTestRunnerPostBuild.cmd: Added.
-        * WebKitTestRunner/win/WebKitTestRunnerPreBuild.cmd: Added.
-        * WinLauncher/WinLauncherCommon.vsprops:
-        * WinLauncher/WinLauncherPostBuild.cmd: Added.
-        * WinLauncher/WinLauncherPreBuild.cmd: Added.
-
-2010-11-29  Dan Bernstein  <mitz@apple.com>
-
-        GTK DumpRenderTree build fix after r72887.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::findString):
-
-2010-11-29  Dan Bernstein  <mitz@apple.com>
-
-        Windows DumpRenderTree build fix after r72887.
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::findString): Added empty implementation.
-
-2010-11-29  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Darin Adler.
-
-        DumpRenderTree changes for testing the text search API.
-        https://bugs.webkit.org/show_bug.cgi?id=50038
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (findStringCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::findString):
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController find:]):
-
-2010-11-29  Johnny Ding  <jnd@chromium.org>
-
-        Unreviewed: Add myself to the list of Committers.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-11-29  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Adele Peterson.
-
-        <rdar://problem/8694997> DumpRenderTree fails to build.
-
-        * DumpRenderTree/mac/PerlSupport/Makefile: Skip generating wrappers.
-
-2010-11-29  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Adele Peterson.
-
-        <rdar://problem/8694997> DumpRenderTree fails to build.
-
-        * DumpRenderTree/mac/PerlSupport/DumpRenderTreeSupportPregenerated.pm: Renamed from WebKitTools/DumpRenderTree/mac/PerlSupport/DumpRenderTreeSupportTiger.pm.
-        * DumpRenderTree/mac/PerlSupport/DumpRenderTreeSupport_wrapPregenerated.c: Renamed from WebKitTools/DumpRenderTree/mac/PerlSupport/DumpRenderTreeSupport_wrapTiger.c.
-        * DumpRenderTree/mac/PerlSupport/Makefile:
-
-2010-11-29  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Null-check needed in DRT's AccessibilityUIElement::allAtributes()
-        https://bugs.webkit.org/show_bug.cgi?id=50154
-
-        Added missing checks to allAttributes().
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::allAttributes): Added missing checks.
-
-2010-11-29  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Allow pre-generation for package builds for WebKit2
-        https://bugs.webkit.org/show_bug.cgi?id=50139
-
-        Use a build variable for the generated directory path and set the
-        value based on CONFIG just like for WebKit1.
-
-        For non-package builds use a relative base path for the
-        genrated directory just like for WebKit1.
-
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro:
-        * WebKitTestRunner/qt/WebKitTestRunner.pro:
-
-2010-11-28  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Move some build logic from Qt to platform independent code
-        https://bugs.webkit.org/show_bug.cgi?id=50134
-
-        Create target directories inside generate-forwarding-headers.pl.
-
-        * Scripts/generate-forwarding-headers.pl:
-
-2010-11-24  Nicolas Dufresne  <nicolas.dufresne@collabora.co.uk>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Windowless plugins gets broken key input
-        https://bugs.webkit.org/show_bug.cgi?id=49927
-
-        Convert the XEvent::keycode to ASCII before printing it. Not
-        doing this was causing false positive in 
-        plugins/keyboard-events.html.
-
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (keycode_to_char):
-        (webkit_test_plugin_handle_event):
-
-2010-11-24  Jan Erik Hanssen  <jhanssen@sencha.com>
-
-        Reviewed by Antonio Gomes.
-
-        [Qt] Html autofocus not working with QGraphicsWebView
-        https://bugs.webkit.org/show_bug.cgi?id=43169
-
-        Tell the scene to set the webview item as the currently
-        focused item. This makes the input field with autofocus get
-        focus as it should.
-
-        * QtTestBrowser/webview.cpp:
-        (WebViewGraphicsBased::WebViewGraphicsBased):
-
-2010-11-24  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        nrwt - clean up create_driver interface and print out the
-        command line used for DumpRenderTree/TestShell.
-
-        This patch adds a driver_cmd_line() call to the Port class in
-        order to retrive the command line to print it out (as part of
-        --print config).
-
-        In addition, this patch cleans up the Port.create_driver()
-        signature and the Driver constructor interface to take a worker
-        number and no longer require the image_path argument (Chromium's
-        drivers now synthesize the image_path from the worker number
-        internally).
-
-        https://bugs.webkit.org/show_bug.cgi?id=49934
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/dryrun.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-11-24  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        [chromium] improve memory usage for test results server and store fewer runs
-        https://bugs.webkit.org/show_bug.cgi?id=50035
-
-        Store fewer runs and don't pass full files around when we only need bools.
-        Greatly improves error rates on test-results.appspot.com.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * TestResultServer/handlers/testfilehandler.py:
-        * TestResultServer/model/dashboardfile.py:
-        * TestResultServer/model/jsonresults.py:
-
-2010-11-24  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        This patch implements the first part of the manager side of the
-        Broker objects - it handles creating threads, waiting for them
-        to complete, and running a single-threaded loop as well.
-
-        https://bugs.webkit.org/show_bug.cgi?id=49779
-
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker.py:
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-11-24  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by David Levin.
-
-        DRT should not generate pixel output for text/plain tests
-        https://bugs.webkit.org/show_bug.cgi?id=50002
-        
-        Modify Mac, Windows and GTK DRT implementations to disable pixel output
-        when encountering a text/plain response (the Chromium one already does
-        this, and none of the other ports special-case text/plain output in
-        the first place).
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (dump):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dump):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (dump):
-
-2010-11-24  Andras Becsi  <abecsi@inf.u-szeged.hu>
-
-        Unreviewed.
-
-        Add my other email address to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-11-24  Andras Becsi  <abecsi@inf.u-szeged.hu>
-
-        Reviewed by Csaba Osztrogonác.
-
-        Make build-webkit --minimal build with ENABLE_INSPECTOR=0
-        https://bugs.webkit.org/show_bug.cgi?id=49975
-
-        * Scripts/build-webkit: Add ENABLE_INSPECTOR define to features,
-        to enable the script to define it 0 in case of a minimal build.
-
-2010-11-24  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] The WebKitWebView should expose a set of signals encapsulating the behavior of the EditorClient
-        https://bugs.webkit.org/show_bug.cgi?id=49143
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (createWebView): Call the new connectEditingCallbacks function.
-        * DumpRenderTree/gtk/EditingCallbacks.cpp: Added.
-        (dumpNodePath):
-        (dumpRange):
-        (insertActionString):
-        (selectionAffinityString):
-        (shouldBeginEditing):
-        (shouldEndEditing):
-        (shouldInsertNode):
-        (shouldInsertText):
-        (shouldDeleteRange):
-        (shouldShowDeleteInterfaceForElement):
-        (shouldChangeSelectedRange):
-        (shouldApplyStyle):
-        (editingBegan):
-        (userChangedContents):
-        (editingEnded):
-        (selectionChanged):
-        (connectEditingCallbacks):
-        * DumpRenderTree/gtk/EditingCallbacks.h: Added.
-        * GNUmakefile.am: Added EditingCallbacks.{h,cpp} to the source list.
-
-2010-11-24  Yi Shen  <yi.4.shen@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Make QtTestBrowser remember the selected user agent
-        https://bugs.webkit.org/show_bug.cgi?id=50021
-
-        Set user agent for a new page by using the old page's
-
-        * QtTestBrowser/mainwindow.cpp:
-        (MainWindow::setPage):
-
-2010-11-24 Patrick Gansterer <paroga@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        Remove Bakefile build system files
-        https://bugs.webkit.org/show_bug.cgi?id=49983
-
-        r53757 only removed the content, but not the files.
-        This patch removes that empty files.
-
-        * DumpRenderTree/wx/DumpRenderTree.bkl: Removed.
-        * wx/browser/browser.bkl: Removed.
-        * wx/build-wxwebkit: Removed.
-
-2010-11-23  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        This patch cleans up the logic used to shard tests into groups a
-        bit and adds the --worker-model flag to NRWT. The flag is only
-        used at the moment to control whether to run single-threaded or
-        not, but eventually will also allow toggling between threads and
-        processes.
-
-        Also add a minor cleanup with _test_is_slow(), which just
-        eliminates some repetition and gives slightly better encapsulation.
-
-        https://bugs.webkit.org/show_bug.cgi?id=49773
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-11-23  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Rebaseline server: list current baselines and platforms
-        https://bugs.webkit.org/show_bug.cgi?id=49991
-        
-        List existing baselines (with Trac links) for tests.
-        
-        Add dropdowns for choosing with platform baselines to target (and what
-        to do with existing ones).
-
-        Also fix MockFileSystem.join to behave more like os.path.join (unit
-        test was ending up with two consecutive slashes in a layout test
-        path).        
-
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/index.html:
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/main.css:
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/main.js:
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/queue.js:
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/util.js:
-        * Scripts/webkitpy/tool/commands/rebaselineserver.py:
-        * Scripts/webkitpy/tool/commands/rebaselineserver_unittest.py: Added.
-
-2010-11-23  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        remove timeout argument to urlopen
-        https://bugs.webkit.org/show_bug.cgi?id=49995
-
-        Apparently the version of python we have on the bots doesn't accept a timeout argument.
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_results_uploader.py:
-
-2010-11-23  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r72628.
-        http://trac.webkit.org/changeset/72628
-        https://bugs.webkit.org/show_bug.cgi?id=49994
-
-        This patch is causing layout-test failtures on GTK Linux
-        64-bit Debug (Requested by ctguil on #webkit).
-
-        * DumpRenderTree/chromium/AccessibilityUIElement.cpp:
-        (AccessibilityUIElement::AccessibilityUIElement):
-        (AccessibilityUIElement::parentElementCallback):
-        * DumpRenderTree/chromium/AccessibilityUIElement.h:
-        * DumpRenderTree/chromium/CppBoundClass.cpp:
-        * DumpRenderTree/chromium/CppBoundClass.h:
-
-2010-11-22  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        speculative fix for upload errors: stop using mechanize to upload to test-results.appspot.com
-        https://bugs.webkit.org/show_bug.cgi?id=49944
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_results_uploader.py:
-
-2010-11-23  Chris Guillory  <chris.guillory@google.com>
-
-        Reviewed by Dimitri Glazkov.
-
-        Include the FrameView widget of a RenderWidget in the accessibility tree.
-        https://bugs.webkit.org/show_bug.cgi?id=49106
-
-        * DumpRenderTree/chromium/AccessibilityUIElement.cpp:
-        (AccessibilityUIElement::AccessibilityUIElement):
-        (AccessibilityUIElement::parentElementCallback):
-        (AccessibilityUIElement::isEqualCallback):
-        * DumpRenderTree/chromium/AccessibilityUIElement.h:
-        * DumpRenderTree/chromium/CppBoundClass.cpp:
-        (CppBoundClass::getFromCppVariant):
-        * DumpRenderTree/chromium/CppBoundClass.h:
-
-2010-11-23  Alex Grilo  <abgrilo@profusion.mobi>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [EFL] Add tiled backing store to EWebLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=45777
-
-        Allow EWebLauncher to choose between single and tiled backing store
-
-        * EWebLauncher/main.c:
-        (on_key_down):
-        (browserCreate):
-        (main):
-
-2010-11-23  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Reviewed by Tor Arne Vestbø.
-
-        [Qt] Review the setUserPermission & friends API
-        https://bugs.webkit.org/show_bug.cgi?id=46810
-
-        Renamed requestPermissionFromUser to featurePermissionRequested
-        and cancelRequestsForPermission to featurePermissionRequestCanceled.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::WebPage):
-        * QtTestBrowser/webpage.cpp:
-        (WebPage::WebPage):
-        (WebPage::featurePermissionRequestCanceled):
-        * QtTestBrowser/webpage.h:
-
-2010-11-23  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Reviewed by Tor Arne Vestbø.
-
-        [Qt] Review the setUserPermission & friends API
-        https://bugs.webkit.org/show_bug.cgi?id=46810
-
-        Rename setUserPermission to setFeaturePermission
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::requestPermission):
-        (WebCore::WebPage::permissionSet):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::grantDesktopNotificationPermission):
-        * QtTestBrowser/webpage.cpp:
-        (WebPage::requestPermission):
-
-2010-11-23  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Reviewed by Tor Arne Vestbø.
-
-        [Qt] Review the setUserPermission & friends API
-        https://bugs.webkit.org/show_bug.cgi?id=46810
-
-        Rename PermissionDomain to Feature, NotificationsPermissionDomain to Notifications
-        and GeolocationPermissionDomain to Geolocation.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::WebPage):
-        (WebCore::WebPage::requestPermission):
-        (WebCore::WebPage::cancelPermission):
-        (WebCore::WebPage::permissionSet):
-        (WebCore::DumpRenderTree::geolocationPermissionSet):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::grantDesktopNotificationPermission):
-        * QtTestBrowser/webpage.cpp:
-        (WebPage::WebPage):
-        (WebPage::requestPermission):
-        (WebPage::cancelRequestsForPermission):
-        * QtTestBrowser/webpage.h:
-
-2010-11-23  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Reviewed by Tor Arne Vestbø.
-
-        [Qt] Review the setUserPermission & friends API
-        https://bugs.webkit.org/show_bug.cgi?id=46810
-
-        Add a ByUser suffix to PermissionGranted/Denied. In the future
-        we can add PermissionGrantedByDefault.
-
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::requestPermission):
-        (WebCore::WebPage::permissionSet):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::grantDesktopNotificationPermission):
-        * QtTestBrowser/webpage.cpp:
-        (WebPage::requestPermission):
-
-2010-11-18  Satish Sampath  <satish@chromium.org>
-
-        Reviewed by Jeremy Orlow.
-
-        For speech input event, send an event object containing all the recognition results and metadata.
-        https://bugs.webkit.org/show_bug.cgi?id=49736
-
-        Updated DRT by renaming the mock result method on all platforms to the new signature.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (addMockSpeechInputResultCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::addMockSpeechInputResult):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::addMockSpeechInputResult):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::addMockSpeechInputResult):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::addMockSpeechInputResult):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::addMockSpeechInputResult):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::addMockSpeechInputResult):
-
-2010-11-22  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Fix some spacing issues with log messages with
-        new-run-webkit-tests --verbose.
-
-        https://bugs.webkit.org/show_bug.cgi?id=49936
-
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-
-2010-11-22  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        update scm to work with different remote branches
-        https://bugs.webkit.org/show_bug.cgi?id=49949
-
-        This works if there are multiple svn tracking branches
-        and/or if the tracking branch is refs/remots/origin/master
-        instead of refs/remotes/trunk which is the direction we're trying
-        to head since that makes fetches faster.
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-
-2010-11-22  Hayato Ito  <hayato@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Ignore reference files which will be used by reftests when collecting
-        test cases.
-        https://bugs.webkit.org/show_bug.cgi?id=49835
-
-        * Scripts/webkitpy/layout_tests/port/test_files.py:
-        * Scripts/webkitpy/layout_tests/port/test_files_unittest.py:
-
-2010-11-22  Adam Roben  <aroben@apple.com>
-
-        Use paths relative to $WebKitVSPropsRedirectionDir to access shared .vsprops files
-
-        Apple's Windows build allows placing header files and import libraries for WebKit's
-        dependencies (CoreGraphics, CFNetwork, SQLite, etc.) outside the source tree via the
-        $WebKitLibrariesDir environment variable. This is both required for production builds and
-        convenient for Apple-internal developer builds. Apple's production builds also require that
-        WebKit's shared .vsprops files be accessed relative to $WebKitLibrariesDir. In production
-        builds, the files are copied into that directory tree by the
-        WebKitLibraries/win/tools/WinTools.make file. In Apple-internal developer builds, the
-        copying is done by
-        JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCoreGenerated.make.
-
-        This .vsprops copying is problematic in one very important case: when a developer updates
-        their source tree and then tries to build. Visual Studio only reads .vsprops files when a
-        project is first loaded. So, when Visual Studio is first opened after the .vsprops files are
-        updated, it reads in the old files that were already residing in $WebKitLibrariesDir. When a
-        build is started, JavaScriptCoreGenerated.make copies the new .vsprops files into
-        $WebKitLibrariesDir, but Visual Studio will not pick up the changes.  The rest of the build
-        will proceed with out-of-date .vsprops files, which will likely result in a build failure.
-
-        To fix this, we now use normal relative paths to access the .vsprops files in the source
-        tree rather than in $WebKitLibrariesDir, but prefix those paths with a new environment
-        variable, $WebKitVSPropsRedirectionDir. In developer builds, this environment variable is
-        unset, so the normal relative paths are used to read the .vsprops files out of the source
-        tree directly. In production builds, this environment variable is set to a fake directory
-        that will cause the .vsprops files in $WebKitLibrariesDir to be found when the relative path
-        is resolved.
-        
-        For example, JavaScriptCore.vcproj uses this path for FeatureDefines.vsprops:
-
-        $(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\FeatureDefines.vsprops
-
-        In developer builds, where $WebKitVSPropsRedirectionDir is unset, this will point to the
-        files in WebKitLibraries\win\tools\vsprops in the source tree. In production builds,
-        JavaScriptCore.make sets $WebKitVSPropsRedirectionDir to
-        "$(SRCROOT)\AppleInternal\tools\vsprops\OpenSource\1\2\3\", so the full path for
-        FeatureDefines.vsprops becomes:
-
-        $(SRCROOT)\AppleInternal\tools\vsprops\OpenSource\1\2\3\..\..\..\WebKitLibraries\win\tools\vsprops\FeatureDefines.vsprops
-
-        which resolves to:
-
-        $(SRCROOT)\AppleInternal\tools\vsprops\OpenSource\WebKitLibraries\win\tools\vsprops\FeatureDefines.vsprops
-
-        (We rely on the fact that Windows doesn't care whether the directories "1", "2", and "3"
-        actually exist since they are matched by an equal number of ".." path components.)
-
-        Note that Visual Studio still won't pick up changes made to .vsprops files while Visual
-        Studio is open, but that problem hasn't seemed to cause developers many headaches so far.
-
-        Fixes <http://webkit.org/b/49181> Windows build fails mysteriously when .vsprops files are
-        updated
-
-        Reviewed by Dave Hyatt.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/ImageDiff.vcproj:
-        * FindSafari/FindSafari.vcproj:
-        * MiniBrowser/MiniBrowser.vcproj:
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        * TestWebKitAPI/win/TestWebKitAPIGenerated.vcproj:
-        * WebKitAPITest/WebKitAPITest.vcproj:
-        * WebKitLauncherWin/WebKitLauncherWin.vcproj:
-        * WebKitTestRunner/win/InjectedBundle.vcproj:
-        * WebKitTestRunner/win/WebKitTestRunner.vcproj:
-        * WinLauncher/WinLauncher.vcproj:
-        * record-memory-win/record-memory-win.vcproj:
-        Changed to use paths relative to $WebKitVSPropsRedirectionDir to access shared .vsprops
-        files.
-
-2010-11-22  Adam Roben  <aroben@apple.com>
-
-        Make it possible to run tests on Windows without Visual Studio or VC++
-        Express installed
-
-        webkitdir.pm::setupCygwinEnv dies when Visual Studio and VC++ Express
-        are not installed. But this function doesn't need to be called when we
-        already have a build available and are just trying to run the tests.
-
-        Fixes <http://webkit.org/b/49932> New Windows 7 bot can't run tests
-        because Visual Studio/VC++ Express aren't installed
-
-        Reviewed by Dave Hyatt.
-
-        * Scripts/webkitdirs.pm:
-        (determineConfigurationForVisualStudio): Don't call setupCygwinEnv, as
-        it is not needed by this function. Also added a FIXME.
-
-        (usingVisualStudioExpress): Call setupCygwinEnv directly rather than
-        relying on determineConfigurationForVisualStudio doing it.
-
-2010-11-19  Hayato Ito  <hayato@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Simplify Driver.run_test() so that it takes only one parameter, TestInput.
-
-        https://bugs.webkit.org/show_bug.cgi?id=49812
-
-        * Scripts/webkitpy/layout_tests/driver_test.py:
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/dryrun.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-11-22  Hayato Ito  <hayato@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        [NRWT] Retry a few times in reading a png image to avoid a race condition.
-
-        https://bugs.webkit.org/show_bug.cgi?id=49924
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2010-11-22  João Paulo Rechi Vita  <jprvita@profusion.mobi>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Fix EWebLauncher zoom discretization
-        https://bugs.webkit.org/show_bug.cgi?id=49810
-
-        * EWebLauncher/main.c:
-        (nearest_zoom_level_get):
-        (zoom_level_set):
-        (on_load_finished):
-        (on_key_down):
-
-2010-11-21  Sam Weinig  <sam@webkit.org>
-
-        Rubber-stamped by Dan Bernstein.
-
-        Fix ~300 WebKit2 tests by enabling developer extras preference.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-
-2010-11-21  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Dan Bernstein.
-
-        Textareas should be resizable by default
-        https://bugs.webkit.org/show_bug.cgi?id=49892
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2/WKPreferences.cpp: Added.
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        Add preferences test.
-
-2010-11-19  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Rebaseline server: checksum-only differences and prefetching
-        https://bugs.webkit.org/show_bug.cgi?id=49841
-        
-        Add support for image test results where the only difference is in the
-        checksum.
-        
-        Add prefetching of the image results from the next test.
-        
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/index.html:
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/main.css:
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/main.js:
-
-2010-11-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        nrwt multiprocessing - add 'worker number' concept, move stuff to worker thread
-
-        Add the 'worker number' and 'worker name' concepts to the 
-        TestShellThread objects, and move test_types and test_args from
-        the TestRunner to the TestShellThread.
-
-        https://bugs.webkit.org/show_bug.cgi?id=49768
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-11-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Do some minor cleanup and bug fixing.
-
-        https://bugs.webkit.org/show_bug.cgi?id=49777
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-11-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        nrwt - config.build_directory() is busted
-
-        Fixes a typo that was causing us to usually return the top level
-        directory WebKitBuild instead of WebKitBuild/{Debug,Release}. The
-        bug was hidden by test stubs that were too simplistic :(.
-
-        https://bugs.webkit.org/show_bug.cgi?id=49815
-
-        * Scripts/webkitpy/common/system/executive_mock.py:
-        * Scripts/webkitpy/layout_tests/port/config.py:
-        * Scripts/webkitpy/layout_tests/port/config_unittest.py:
-
-2010-11-19  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Add Debug_Cairo_CFLite and Release_Cairo_CFLite configurations for all vcproj files
-        https://bugs.webkit.org/show_bug.cgi?id=49819
-
-        * DumpRenderTree/DumpRenderTree.sln:
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/ImageDiff.vcproj:
-        * FindSafari/FindSafari.vcproj:
-        * MiniBrowser/MiniBrowser.vcproj:
-        * TestWebKitAPI/win/TestWebKitAPI.sln:
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        * TestWebKitAPI/win/TestWebKitAPIGenerated.vcproj:
-        * WebKitAPITest/WebKitAPITest.vcproj:
-        * WebKitLauncherWin/WebKitLauncherWin.vcproj:
-        * WebKitTestRunner/win/InjectedBundle.vcproj:
-        * WebKitTestRunner/win/InjectedBundleGenerated.vcproj:
-        * WebKitTestRunner/win/WebKitTestRunner.vcproj:
-        * WinLauncher/WinLauncher.vcproj:
-        * record-memory-win/record-memory-win.vcproj:
-
-2010-11-19  Adam Roben  <aroben@apple.com>
-
-        Add some more Windows slaves
-
-        This is probably more than we will be using in the immediate future,
-        but having some extra slave names makes experimenting with different
-        configurations easier.
-
-        Reviewed by Jon Honeycutt.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Added 5 more
-        Windows slaves and distributed them among the three different Test
-        builders.
-
-2010-11-19  Kinuko Yasuda  <kinuko@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        [Chromium] REGRESSION: Record actual test results in the JSON result summary for non-layout tests
-        https://bugs.webkit.org/show_bug.cgi?id=49702
-
-        Re-landing r72357 with a test fix.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator_unittest.py:
-
-2010-11-19  Avi Drissman  <avi@google.com>
-
-        Reviewed by Antonio Gomes.
-
-        Complete support for Unix editing mode
-        https://bugs.webkit.org/show_bug.cgi?id=49757
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setEditingBehaviorCallback):
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::setEditingBehavior):
-
-2010-11-19  Adam Roben  <aroben@apple.com>
-
-        Fix run-javascriptcore-tests when there's a space in the path to
-        testapi
-
-        Reviewed by Sam Weinig.
-
-        * Scripts/run-javascriptcore-tests: Use an indirect object when calling
-        system() to force it to interpret spaces in the path correctly.
-
-2010-11-19  Adam Roben  <aroben@apple.com>
-
-        Update scripts for .exe name changes after r72327
-
-        As of r72327, the "_debug" suffix is only used in Debug_All builds.
-
-        Reviewed by Sam Weinig.
-
-        * Scripts/run-javascriptcore-tests:
-        (testapiPath):
-
-        * Scripts/sunspider-compare-results:
-        (pathToBuiltJSC):
-
-        * Scripts/webkitdirs.pm:
-        (jscPath):
-        (safariPath):
-
-2010-11-19  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Normalize Cairo/CFLite project/solution configuration names
-        https://bugs.webkit.org/show_bug.cgi?id=49818
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/ImageDiff.vcproj:
-        * MiniBrowser/MiniBrowser.vcproj:
-        * TestWebKitAPI/win/TestWebKitAPI.sln:
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        * WebKitAPITest/WebKitAPITest.vcproj:
-        * WebKitTestRunner/win/InjectedBundle.vcproj:
-        * WebKitTestRunner/win/WebKitTestRunner.vcproj:
-        * WinLauncher/WinLauncher.vcproj:
-        * Scripts/webkitdirs.pm: Updated cairo build configs.
-
-2010-11-18  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Windows vcproj configuration names should be normalized across projects
-        https://bugs.webkit.org/show_bug.cgi?id=49776
-
-        * DumpRenderTree/DumpRenderTree.sln:
-        * FindSafari/FindSafari.vcproj:
-        * TestWebKitAPI/win/TestWebKitAPI.sln:
-        * TestWebKitAPI/win/TestWebKitAPIGenerated.vcproj:
-        * TestWebKitAPI/win/TestWebKitAPIGeneratedCommon.vsprops: Added.
-        * WebKitAPITest/WebKitAPITest.vcproj:
-        * WebKitAPITest/WebKitAPITestCommon.vsprops:
-        * WebKitLauncherWin/WebKitLauncherWin.vcproj:
-        * WebKitTestRunner/WebKitTestRunner.sln:
-        * WebKitTestRunner/win/InjectedBundleGenerated.vcproj:
-        * WebKitTestRunner/win/InjectedBundleGeneratedCommon.vsprops: Added.
-        * record-memory-win/record-memory-win.vcproj:
-
-2010-11-18  Gavin Barraclough  <barraclough@apple.com>
-
-        Build fix - as per DRT-mac, always enabled developer extras,
-        in win/qt/gtk DRT.
-
-        This is necessary to enable rich exception messages to be generated
-        following https://bugs.webkit.org/show_bug.cgi?id=49708.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (shouldEnableDeveloperExtras):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::shouldEnableDeveloperExtras):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (shouldEnableDeveloperExtras):
-
-2010-11-18  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r72357.
-        http://trac.webkit.org/changeset/72357
-        https://bugs.webkit.org/show_bug.cgi?id=49784
-
-        It broke test-webkitpy tests since the patch didn't have the
-        corresponding test update (Requested by kinuko on #webkit).
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-
-2010-11-18  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Rebaseline server: add rebaseline queue
-        https://bugs.webkit.org/show_bug.cgi?id=49763
-        
-        Add a UI queue (a multi-item <select>) where tests to be baselined
-        can be enqueued (also supports basic removal). A queue is used instead
-        of immediately doing rebaselines since SCM operations can take a while.
-        It's better to go through lots of tests quickly to mark them as
-        needing rebaselining and then batch the SCM operations.
-        
-        Also adds a simple log where results can be displayed.
-
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/index.html:
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/main.css:
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/main.js:
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/queue.js: Added.
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/util.js:
-        * Scripts/webkitpy/tool/commands/rebaselineserver.py:
-
-2010-11-18  Gavin Barraclough  <barraclough@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        Bug 49708 - Stop recompiling functions to regenerate exception info.
-
-        Instead only hold info as necessary – keep divot info is the inspector
-        is enabled, line number info is debugging or profiling, and handler
-        info for functions with try/catch.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (shouldEnableDeveloperExtras):
-            - always enable the developer tools from DRT, to ensure we
-              produce rich error messages on JavaScript exceptions.
-
-2010-11-18  Kinuko Yasuda  <kinuko@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        [Chromium] REGRESSION: Record actual test results in the JSON result summary for non-layout tests
-        https://bugs.webkit.org/show_bug.cgi?id=49702
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-
-2010-11-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: create first part of 'message_broker' class for multiprocessing fixes
-
-        Create the first version of the 'message_broker' package. This
-        class will encapsulate all of the threading/multiprocessing and
-        message-sending details for the communication between the
-        'manager' object and the 'worker' objects. For the moment, it
-        just holds some routines and tests for logging thread stacks.
-
-        There should be no functional changes in this patch, just moving stuff
-        around.
-
-        https://bugs.webkit.org/show_bug.cgi?id=49707
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread_unittest.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker.py: Added.
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker_unittest.py: Added.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-11-18  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Remove leftover Windows Debug_Internal configurations
-        https://bugs.webkit.org/show_bug.cgi?id=49758
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/ImageDiff.vcproj:
-        * MiniBrowser/MiniBrowser.vcproj:
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        * WebKitAPITest/WebKitAPITest.vcproj:
-        * WebKitTestRunner/win/InjectedBundle.vcproj:
-        * WebKitTestRunner/win/WebKitTestRunner.vcproj:
-        * WinLauncher/WinLauncher.vcproj:
-
-2010-11-18  Adam Roben  <aroben@apple.com>
-
-        Add three new Windows XP build slaves
-
-        Reviewed by Steve Falkenburg.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Added three
-        new slaves, and added them to the Windows XP Debug (Tests) builder.
-
-2010-11-18  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Adam Roben.
-
-        update-webkit-support-libs should fall back to existing
-        WebKitSupportLibrary version if there is no internet connectivity
-        https://bugs.webkit.org/show_bug.cgi?id=49503
-
-        Fall back to existing support libraries (if present) when there is
-        no internet connection.
-
-        Currently, update-webkit-support-libs dies with an "out-of-date"
-        error when there is no internet connection because it cannot
-        retrieve versioning information from developer.apple.com. Because
-        update-webkit-support-libs fails, build-webkit fails. Instead,
-        if there is no internet connection and the support libraries are
-        present then we should warn the user and exit() with success so
-        that build-webkit can work without an internet connection.
-
-        * Scripts/update-webkit-support-libs:
-
-2010-11-18  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Debug_Internal Windows configuration is unnecessary, should be removed
-        https://bugs.webkit.org/show_bug.cgi?id=49753
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        * MiniBrowser/win/stdafx.h:
-        * TestWebKitAPI/win/PlatformUtilitiesWin.cpp:
-        * WebKitTestRunner/win/TestControllerWin.cpp:
-
-2010-11-18  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Clean up vcproj errors
-        https://bugs.webkit.org/show_bug.cgi?id=49741
-
-        * MiniBrowser/MiniBrowser.vcproj:
-        * WebKitAPITest/WebKitAPITest.vcproj:
-        * WebKitTestRunner/win/InjectedBundle.vcproj:
-        * WebKitTestRunner/win/WebKitTestRunner.vcproj:
-
-2010-11-18  Hayato Ito  <hayato@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        [NRWT] Fix a break of '--new-baseline' feature in pixel_test
-        which is caused by r72249.
-
-        https://bugs.webkit.org/show_bug.cgi?id=49751
-
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py:
-
-2010-11-18  Adam Roben  <aroben@apple.com>
-
-        Implement layoutTestController.waitForPolicyDelegate on Windows
-
-        Fixes <http://webkit.org/b/25038> <rdar://problem/6790213>.
-
-        Reviewed by Simon Fraser.
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::waitForPolicyDelegate): Implemented by porting
-        code from LayoutTestControllerMac.mm.
-
-2010-11-18  Hayato Ito  <hayato@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        [NRWT] Fix a break of '--new-baseline' feature which is caused by r72249.
-
-        https://bugs.webkit.org/show_bug.cgi?id=49740
-
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-
-2010-11-18  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        run platform/chromium/plugins/refcount-leaks.html on all platforms
-        https://bugs.webkit.org/show_bug.cgi?id=49485
-
-        Add PluginObject.testObjectCount which returns the number of allocated
-        TestObjects. Add PluginObject.testCreateTestObject which allocates
-        and returns a TestObject.
-
-        Add TestObject.refCount which returns the number of refs on the
-        TestObject.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:
-        (pluginGetProperty):
-        (pluginInvoke):
-        * DumpRenderTree/TestNetscapePlugIn/TestObject.cpp:
-        (getTestObjectCount):
-        (testAllocate):
-        (testDeallocate):
-        (testGetProperty):
-        (testScriptObjectInvoke): Release a ref to a plugin object that was
-            previously leaked.
-        * DumpRenderTree/TestNetscapePlugIn/TestObject.h:
-
-2010-11-17  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Adam Roben.
-
-        WebKitTools projects (WebKitTestRunner, record-memory-win) should use vsprops for common build settings
-        https://bugs.webkit.org/show_bug.cgi?id=49711
-
-        * WebKitTestRunner/Configurations/WebKitTestRunnerCFLite.vsprops: Added.
-        * WebKitTestRunner/Configurations/WebKitTestRunnerCommon.vsprops: Added.
-        * WebKitTestRunner/Configurations/WebKitTestRunnerCoreFoundation.vsprops: Added.
-        * WebKitTestRunner/win/WebKitTestRunner.vcproj:
-        * record-memory-win/record-memory-win-common.vsprops: Added.
-        * record-memory-win/record-memory-win.vcproj:
-
-2010-11-18  Andras Becsi  <abecsi@inf.u-szeged.hu>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt][WK2] Only add user agent strings to the list which aren't listed yet.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::updateUserAgentList):
-
-2010-11-17  Adam Roben  <aroben@apple.com>
-
-        Don't trigger Windows builds when chromium-win test results change
-
-        Reviewed by Mark Rowe.
-
-        * Scripts/webkitpy/common/config/build.py:
-        (_should_file_trigger_build): Changed the regular expression used to
-        search for directory names to only consider full directory names,
-        rather than matching directory names where the string we care about is
-        a suffix of the name.
-
-        * Scripts/webkitpy/common/config/build_unittest.py:
-        (ShouldBuildTest): Added a test.
-
-2010-11-17  Hayato Ito  <hayato@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Remove a uri member from TestInput class.
-
-        https://bugs.webkit.org/show_bug.cgi?id=49691
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-11-17  Adam Roben  <aroben@apple.com>
-
-        Move FindSafari's settings into a vsprops file
-
-        Fixes <http://webkit.org/b/49699> FindSafari should use a vsprops file
-
-        Reviewed by Steve Falkenburg.
-
-        * FindSafari/FindSafari.vcproj:
-        * FindSafari/FindSafariCommon.vsprops: Added.
-
-2010-11-17  Adam Roben  <aroben@apple.com>
-
-        Use a minimum font size of 0 in DRT on Windows
-
-        This is the Windows equivalent of r72164.
-
-        Rubber-stamped by Dave Hyatt.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-
-2010-11-17  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Andreas Kling.
-
-        webkit-patch pretty-diff shouldn't need to be run from a checkout root in git
-        https://bugs.webkit.org/show_bug.cgi?id=49639
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-
-2010-11-17  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Rebaseline server: add loupe for image diffs
-        https://bugs.webkit.org/show_bug.cgi?id=49692
-        
-        Add a loupe (magnifiying glass) for inspecting image diffs. Shows an
-        enlarged area of the expected, actual and diff images side by side.
-
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/index.html:
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/loupe.js: Added.
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/main.js:
-        * Scripts/webkitpy/tool/commands/rebaselineserver.py:
-
-2010-11-17  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Adam Roben.
-
-        WebKitLauncherWin should use vsprops for shared build settings
-        https://bugs.webkit.org/show_bug.cgi?id=49696
-
-        * WebKitLauncherWin/WebKitLauncherWin.vcproj:
-        * WebKitLauncherWin/WebKitLauncherWinCommon.vsprops: Added.
-
-2010-11-17  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Adam Roben.
-
-        WinLauncher should use vsprops for shared build settings
-        https://bugs.webkit.org/show_bug.cgi?id=49695
-
-        * WinLauncher/WinLauncher.cpp:
-        (_tWinMain):
-        (PrintView):
-        (WndProc):
-        (MyEditProc):
-        * WinLauncher/WinLauncher.vcproj:
-        * WinLauncher/WinLauncherCommon.vsprops: Added.
-
-2010-11-17  Steve Falkenburg  <sfalken@apple.com>
-
-        Delete unused file unintentionally added in last change.
-
-        * DumpRenderTree/win/DumpRenderTreeCURL.vsprops: Removed.
-
-2010-11-17  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Adam Roben.
-
-        DumpRenderTree on Windows should use a vsprops file for shared project settings
-        https://bugs.webkit.org/show_bug.cgi?id=49690
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginCommon.vsprops: Added.
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/DumpRenderTreeApple.vsprops: Added.
-        * DumpRenderTree/win/DumpRenderTreeCFLite.vsprops: Added.
-        * DumpRenderTree/win/DumpRenderTreeCURL.vsprops: Added.
-        * DumpRenderTree/win/DumpRenderTreeCairo.vsprops: Added.
-        * DumpRenderTree/win/DumpRenderTreeCommon.vsprops: Added.
-        * DumpRenderTree/win/ImageDiff.vcproj:
-        * DumpRenderTree/win/ImageDiffCommon.vsprops: Added.
-
-2010-11-17  Hayato Ito  <hayato@chromium.org>
-
-        Refactor TestTypeBase.compare_output().
-
-        Introduce a TestOutput class and update compare_output() of each test
-        types so that they can take both actual and expected TestOutput objects.
-
-        https://bugs.webkit.org/show_bug.cgi?id=49431
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_output.py: Added.
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/dryrun.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py:
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py:
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-
-2010-11-17  Adam Roben  <aroben@apple.com>
-
-        Make each Windows Test builder use the same OS for all its slaves
-
-        Currently each WebKit1 Windows Test builder has one Windows XP slave
-        and one Windows 7 slave. Having different OSes in a single builder
-        meant that the builders would alternate between red and green when
-        there were OS-specific failures.
-
-        Fixes <http://webkit.org/b/49688> Windows Test builders alternate
-        between red and green because of multiple OS versions
-
-        Reviewed by Mark Rowe.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Renamed
-        "Windows Release (Tests)" to "Windows 7 Release (Tests)", "Windows
-        Debug (Tests)" to "Windows XP Debug (Tests)", and "Windows Release
-        (WebKit2 Tests)" to "Windows 7 Release (WebKit2 Tests)". Updated the
-        builders for the two WebKit1 builders so that they would all use the
-        appropriate OS.
-
-2010-11-17  James Robinson  <jamesr@chromium.org>
-
-        Reviewed by Dan Bernstein.
-
-        [chromium] Set minimum font size to 0 for DRT
-        https://bugs.webkit.org/show_bug.cgi?id=49677
-
-        Followup for http://trac.webkit.org/changeset/72141.
-
-        Test: http/tests/misc/acid3.html
-
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-
-2010-11-17  Andras Becsi  <abecsi@webkit.org>
-
-        Unreviewed build fix.
-
-        [Qt] Add missing file I forgot in r72220.
-
-        * MiniBrowser/MiniBrowser.qrc: Added.
-
-2010-11-17  Andras Becsi  <abecsi@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt][WK2] Make it possible to set custom user agent strings in MiniBrowser.
-        https://bugs.webkit.org/show_bug.cgi?id=49627
-
-        Add a user agent dialog and a resource file for useragentlist.txt to MiniBrowser.
-
-        * MiniBrowser/MiniBrowser.qrc: Added.
-        Add it here to prevent qmake from detecting it
-        since it needs to be copied to the build directory.
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::updateUserAgentList):
-        (BrowserWindow::showUserAgentDialog):
-        * MiniBrowser/qt/BrowserWindow.h:
-        * MiniBrowser/qt/MiniBrowser.pro:
-
-2010-11-17  Adam Roben  <aroben@apple.com>
-
-        Make changes to the Mac WebKit2 Skipped file trigger Windows builds
-
-        We use that file on Windows!
-
-        Fixes <http://webkit.org/b/49643> Changes to
-        LayoutTests/platform/mac-wk2 should trigger a Windows build, but don't
-
-        Reviewed by Steve Falkenburg.
-
-        * Scripts/webkitpy/common/config/build.py:
-        (_should_file_trigger_build): Added the mac-wk2 directory and make it
-        trigger builds on SnowLeopard and Windows.
-
-        * Scripts/webkitpy/common/config/build_unittest.py:
-        (ShouldBuildTest.test_should_build): Added a test.
-
-2010-11-17  Satish Sampath  <satish@chromium.org>
-
-        Reviewed by Jeremy Orlow.
-
-        Clear the speech input mock explicitly before each test.
-        https://bugs.webkit.org/show_bug.cgi?id=49660
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::speechInputController):
-        (WebViewHost::reset): Invoke speech input mock's clearResults method.
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost::speechInputControllerMock): Moved mock from LayoutTestController.
-
-2010-11-17  Alexander Pavlov  <apavlov@chromium.org>
-
-        Unreviewed, specify IRC nickname in committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-11-17  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
-
-        Reviewed by Tony Chang.
-
-        [NRWT] Make http locking similar to perl implementation
-        https://bugs.webkit.org/show_bug.cgi?id=49187
-
-        * Scripts/webkitpy/common/system/file_lock.py: Added.
-        * Scripts/webkitpy/common/system/file_lock_unittest.py: Added.
-        * Scripts/webkitpy/layout_tests/port/http_lock.py:
-
-2010-11-17  MORITA Hajime  <morrita@google.com>
-
-        Reviewed by Kent Tamura.
-
-        [Chromium][DRT] EventSender.contextClick() should aware spellchecking
-        https://bugs.webkit.org/show_bug.cgi?id=49366
-
-        - EvenSender: Checked WebContextMenuData.misspelledWord and added extra context menu entries
-          according to the spellchecker suggestion
-        - MockSpellCheck: add fillSuggestionList to provide fake suggestions.
-
-        test_expectations.txt will be changed after this change is ported to test_shell.
-        
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (makeMenuItemStringsFor):
-        (EventSender::contextClick):
-        * DumpRenderTree/chromium/MockSpellCheck.cpp:
-        (MockSpellCheck::fillSuggestionList):
-        (MockSpellCheck::initializeIfNeeded):
-        * DumpRenderTree/chromium/MockSpellCheck.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::mockSpellCheck):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2010-11-16  Dave Hyatt  <hyatt@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Make sure the pref for minimum font size is just explicitly set to 0 every time,
-        since the bots have 1 stuck in their plist otherwise.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-
-2010-11-16  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Rebaseline server: compute diffs client-side
-        https://bugs.webkit.org/show_bug.cgi?id=49640
-        
-        The image diff output from the DRT is pretty bad on some ports (at
-        least the Mac one), so it's better to compute diffs on the client by
-        using <canvas>.
-
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/index.html:
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/main.css:
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/main.js:
-
-2010-11-16  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Rebaseline server: display test results
-        https://bugs.webkit.org/show_bug.cgi?id=49626
-        
-        Adds basic result display to the rebaseline server. On the Python side
-        this involves:
-        - Parsing the unexpected_results.json into a dictionary.
-        - Serving it as JSON under /results.json.
-        (the JSON -> dict -> JSON transform isn't strictly necessary right now,
-        but I'll need to have access to the parsed results on the Python side
-        for follow-up changes).
-        
-        On the web UI side this adds:
-        - Markup for display image and text results (expected, actual, diff),
-          and JS for populating it.
-        - Markup for breaking down test results by failure type and directory,
-          and JS for populating it.
-
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/index.html:
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/main.css:
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/main.js:
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/util.js: Added.
-        * Scripts/webkitpy/tool/commands/rebaselineserver.py:
-
-2010-11-16  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        See Chromium issue http://codereview.chromium.org/5133001/ - we
-        are modifying the build bots to pass in the builder name with
-        the "GPU" string appended instead of appending it in the code.
-
-        https://bugs.webkit.org/show_bug.cgi?id=49636
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-
-2010-11-16  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Disable LTCG for Windows Release builds. Add new Release_LTCG configuration.
-        https://bugs.webkit.org/show_bug.cgi?id=49632
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/ImageDiff.vcproj:
-        * MiniBrowser/MiniBrowser.vcproj:
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        * WebKitLauncherWin/WebKitLauncherWin.vcproj:
-        * WebKitTestRunner/win/InjectedBundle.vcproj:
-        * WebKitTestRunner/win/WebKitTestRunner.vcproj:
-        * WinLauncher/WinLauncher.vcproj:
-        * record-memory-win/record-memory-win.vcproj:
-
-2010-11-16  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: rename TestInfo to TestInput, move image hash to work thread
-
-        Rename the TestInfo class to TestInput to be clearer about its
-        function, and move the checksum-reading code into dump_render_tree_thread
-        to avoid cross-thread access.
-
-        https://bugs.webkit.org/show_bug.cgi?id=49573
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-11-16  Dave Hyatt  <hyatt@apple.com>
-
-        Fix bustage. Remove the minimum font size pref setting in DumpRenderTree.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-
-2010-11-16  Stephanie Lewis  <slewis@apple.com>
-
-        Reviewed by Geoff Garen.
-
-        <rdar://problem/8624267> Leak creating offscreen webview running fast/dom tests
-
-        Use shared DeviceOrientationProviderMock. The old allocation method created a new WebDeviceOrientationProviderMock 
-        for every WebView, and the WebKit API doesn't support that ownership model.
-
-        I also fixed a leak in setMockDeviceOrientation by adding a missing release.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (createWebViewAndOffscreenWindow):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setMockDeviceOrientation):
-
-2010-11-16  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: log the process id in --verbose mode
-
-        As part of the switch to multi-process mode, we should log the
-        process id when running w/ --verbose.
-
-        https://bugs.webkit.org/show_bug.cgi?id=49571
-
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-
-2010-11-16  Adam Roben  <aroben@apple.com>
-
-        Only trigger Windows builds when files that we actually use on Windows
-        are changed
-
-        A new Scheduler subclass, PlatformSpecificScheduler, has been added.
-        It uses the new webkitpy.common.config.build module to determine
-        whether a particular change should trigger a build on a particular
-        platform. The Windows builders have been switched to use a
-        PlatformSpecificScheduler.
-
-        The logic to determine whether or not a particular change should
-        trigger a build on a given platform has only been implemented/tested
-        for Windows. I tried to make it easy to add more platforms in the
-        future, but I don't have enough familiarity with all platforms to be
-        able to implement it for them.
-
-        Fixes <http://webkit.org/b/49407> Windows builders kick off builds for
-        lots irrelevant changes (e.g., rebaselining Chromium test results)
-
-        Reviewed by Eric Seidel.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Use a
-        PlatformSpecificScheduler for the Windows builders.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (PlatformSpecificScheduler.__init__): Added. Stores our platform, sets
-        up a ChangeFilter that filters to our branch and will call through to
-        our filter method, and calls up to our base class.
-        (PlatformSpecificScheduler.filter): Calls through to
-        build.should_build to find out whether we should trigger a build for
-        this change.
-
-        * Scripts/webkitpy/common/net/build.py: Added.
-        (_should_file_trigger_build): Uses a set of directories and regexp
-        patterns to determine whether the given file should trigger a build on
-        the given platform. As mentioned earlier, this has only been
-        implemented for Windows, though I did try to make some guesses about
-        other platforms.
-        (should_build): Returns true if any of the files should trigger a
-        build on the given platform.
-
-        * Scripts/webkitpy/common/net/build_unittest.py: Added.
-        (ShouldBuildTest.test_should_build): Does some basic testing to make
-        sure we're triggering builds for the right files. It only tests
-        Windows for now, though I tried to make some guesses about other
-        platforms.
-
-2010-11-16  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Remove synchronous QWebPage::checkPermissions signal
-        https://bugs.webkit.org/show_bug.cgi?id=46810
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::WebPage):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::grantDesktopNotificationPermission): When granting
-        permission, grant it directly on the QWebPage/Frame, that will remember it.
-        * QtTestBrowser/webpage.cpp:
-        (WebPage::WebPage):
-        * QtTestBrowser/webpage.h:
-
-
-2010-11-16  Andras Becsi  <abecsi@inf.u-szeged.hu>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt] Add isPrinting and setPrinting methods to DRT's LayoutTestController.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController::isPrinting):
-        (LayoutTestController::setPrinting):
-
-2010-11-16  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt][WK2] Add a way to turn on tiled backing store in MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=49587
-
-        * MiniBrowser/qt/BrowserView.cpp:
-        (BrowserView::BrowserView): Added BackingStoreType
-        argument to ctor. Propagating it to the QGraphicsWKView.
-        * MiniBrowser/qt/BrowserView.h:
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::newWindow): Create the new BrowserWindow
-        with the same BackingStoreType that this instance has.
-        * MiniBrowser/qt/BrowserWindow.h: Added BackingStoreType member.
-        * MiniBrowser/qt/main.cpp:
-        (main): Use tiled backing store if got -tiled command line argument.
-        Avoid redundant copy of command line args.
-
-2010-11-16  John Knottenbelt  <jknotten@chromium.org>
-
-        Reviewed by Jeremy Orlow.
-
-        Move DeviceOrientationClientMock from LayoutTestController to WebViewHost.
-        https://bugs.webkit.org/show_bug.cgi?id=48506
-
-        This ensures that there is one mock per page WebView / WebViewHost. This is a
-        design constraint of the DeviceOrientationClientMock because the m_controller
-        field can only store a pointer to a single instance of the corresponding
-        DeviceOrientationController.
-
-        Test: fast/dom/DeviceOrientation/no-page-cache.html
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::setMockDeviceOrientation):
-        (LayoutTestController::deviceOrientationClientMock):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::deviceOrientationClientMock):
-        (WebViewHost::deviceOrientationClient):
-        (WebViewHost::reset):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2010-11-15  Andras Becsi  <abecsi@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt][WK2] Avoid polling in WebKitTestRunner.
-        https://bugs.webkit.org/show_bug.cgi?id=49542
-
-        Make the WK2 testing session about 10-15% faster and decrease random flakiness
-        resulting from timing skew by removing the millisecond polling from TestControllerQt.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::didFinishLoadForFrame):
-        * WebKitTestRunner/TestController.h:
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-        * WebKitTestRunner/mac/TestControllerMac.mm:
-        (WTR::TestController::notifyDone): Add method stub.
-        * WebKitTestRunner/qt/TestControllerQt.cpp:
-        (WTR::TestControllerRunLoop::instance):
-        (WTR::TestControllerRunLoop::start):
-        (WTR::TestControllerRunLoop::stop):
-        (WTR::TestControllerRunLoop::TestControllerRunLoop):
-        (WTR::TestControllerRunLoop::timerEvent):
-        (WTR::TestController::notifyDone):
-        (WTR::TestController::platformRunUntil):
-        * WebKitTestRunner/win/TestControllerWin.cpp:
-        (WTR::TestController::notifyDone): Add method stub.
-
-2010-11-15  Darin Adler  <darin@apple.com>
-
-        * Scripts/webkitpy/common/net/bugzilla: Added property svn:ignore.
-
-2010-11-15  Benjamin Poulain  <benjamin.poulain@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] [WK2] Add Ctrl+L shortcut to Qt Minibrowser
-        https://bugs.webkit.org/show_bug.cgi?id=49544
-
-        Add the shortcut to BrowserWindow.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::openLocation):
-        * MiniBrowser/qt/BrowserWindow.h:
-
-2010-11-14  David Levin  <levin@chromium.org>
-
-        Reviewed by Daniel Bates.
-
-        check-webkit-style should detect PassRefPtr usage in functions.
-        https://bugs.webkit.org/show_bug.cgi?id=49513
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (check_for_function_lengths): Revert a comment change that I
-         accidentally made in r71986.
-        (check_pass_ptr_usage): Added the code to do the check.
-        (process_line): Added the call to check_pass_ptr_usage.
-        (CppChecker): Added the new error category.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (CppStyleTestBase::perform_pass_ptr_check): Runs the new check for
-         testing purposes.
-        (PassPtrTest::*): The class/functions to unit test the new
-         functionality.
-
-2010-11-14  David Levin  <levin@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        check-webkit-style function detection and the line count style checks should be separate.
-        https://bugs.webkit.org/show_bug.cgi?id=49512
-
-        * Scripts/webkitpy/style/checkers/cpp.py: Do the separation.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Adjust the test to
-          call the detection function and fix line counts in two places now that
-          the code really only counts the lines in the body of the function.
-
-2010-11-14  Andreas Kling  <kling@webkit.org>
-
-        Reviewed by Antonio Gomes.
-
-        http/tests/plugins tests print "Unhandled variable" to stderr under Qt
-        https://bugs.webkit.org/show_bug.cgi?id=33438
-
-        Stifle "Unhandled variable" warning to match what the other
-        TestNetscapePlugin does (NPP_GetValue in TestNetscapePlugIn/main.cpp
-        simply returns NPERR_GENERIC_ERROR for unhandled variables.)
-
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_get_value):
-
-2010-11-13  David Levin  <levin@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        check-webkit-style function detection crashes on functions in templates.
-        https://bugs.webkit.org/show_bug.cgi?id=49504
-
-        For example "template <bool shouldClose(const Element*)>".
-
-        * Scripts/webkitpy/style/checkers/cpp.py: If not function is detected, bail out.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Modified the complex
-          function detection test to expose this issue.
-
-2010-11-12  David Levin  <levin@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        check-webkit-style function detection doesn't detect indented functions declaractions.
-        https://bugs.webkit.org/show_bug.cgi?id=49446
-
-        Indented function declarations occur inside class definitions, so
-        they are a pretty common (and worth detecting).
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-          Changed regex to allow indentation.
-          Changed the function start detection to only happen when not in a
-          function.
-          Changed function end detection to work based on matching braces
-          instead of finding a close brace at the beginning of the line.
-          Fixed close_expression to do what it says when it doesn't find
-          the close.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Indented function test.
-
-2010-11-12  Daniel Bates  <dbates@rim.com>
-
-        Rubber-stamped by Nikolas Zimmermann.
-
-        Make do-file-rename rename files in the directory WebKit2.
-
-        This also makes the list of searched directories in do-file-rename
-        consistent with the list of searched directories in the script do-webcore-rename.
-
-        * Scripts/do-file-rename:
-
-2010-11-12  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by James Robinson.
-
-        Attempt yet again to land the fix for bug 49360 (respecting
-        set-webkit-configuration). We need to handle the cases where
-        trying to run webkit-build-directory to find out where the
-        default configuration might be fails (that shows up on some
-        Chromium bots that apparently don't have perl installed).
-
-        https://bugs.webkit.org/show_bug.cgi?id=49360
-
-        * Scripts/webkitpy/layout_tests/port/config.py:
-        * Scripts/webkitpy/layout_tests/port/config_standalone.py: Added.
-        * Scripts/webkitpy/layout_tests/port/config_unittest.py:
-
-2010-11-12  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        webkit-patch land logs commit message twice
-        https://bugs.webkit.org/show_bug.cgi?id=49482
-        
-        Don't log the comment that's used by bugzilla.close_bug_as_fixed, since
-        that's just the commit message, which we now output following the
-        actual commit.
-
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-
-2010-11-12  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        run platform/chromium/plugins/script-object-invoke.html on all platforms
-        https://bugs.webkit.org/show_bug.cgi?id=49280
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:
-        (testScriptObjectInvoke):
-        (pluginInvoke):
-
-2010-11-12  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        webkit-patch land-cowboy (and other commands) should display the committed SVN revision after landing a patch
-        https://bugs.webkit.org/show_bug.cgi?id=49471
-
-        Right now there's no indication of a successful commit.
-        
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/steps/commit.py:
-
-2010-11-12  Kinuko Yasuda  <kinuko@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Include detailed test modifiers in results.json and enable incremental uploading for non-layout tests
-        https://bugs.webkit.org/show_bug.cgi?id=49354
-
-        Also moved/integrated the upload method from run_webkit_tests.py to json_results_generator.py.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-11-12  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [chromium] Load a blank page when closing DRT WebViewHosts
-        https://bugs.webkit.org/show_bug.cgi?id=49417
-
-        In test_shell, when we close a window, we first load about:blank
-        and run GC to fire the destruction logic of the page.  In test_shell,
-        this happens in ~TestShell.  In DRT, we manage virtual windows as
-        WebViewHosts, so we need to replicate this logic in ~WebViewHost.
-
-        Managing focus is a bit trickier, since normally you would get window
-        events to reset the focus to the right window.  We do it manually
-        instead.
-
-        This fixes 2 plugin tests on DRT.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::~TestShell): Move window close logic to ~WebViewHost.
-        (TestShell::closeWindow): Move widget close() to WVH destructor and
-            manage focus manually.
-        (TestShell::closeRemainingWindows): Comment typo.
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::closeWidget):
-        (invokeCloseWidget):
-        (WebViewHost::closeWidgetSoon): Close the window asynchronously (matches
-            test_shell).
-        (WebViewHost::~WebViewHost):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2010-11-12  David Levin  <levin@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        cpp.py needs some tidying.
-        https://bugs.webkit.org/show_bug.cgi?id=49443
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-          Fix parameter ordering for iteratively_replace_matches_with_char
-          to mirror other similar functions (and improved comments, etc.)
-          Also, use a python-ism (for/else) to get rid of a variable that
-          was there to determine if something had been found in the loop.
-
-2010-11-12  Robert Kroeger  <rjkroege@chromium.org>
-
-        Reviewed by James Robinson.
-
-        [Chromium/DRT] Make EventSendingController send complete touch events.
-        https://bugs.webkit.org/show_bug.cgi?id=49285
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::addTouchPoint):
-        (EventSender::updateTouchPoint):
-        (EventSender::sendCurrentTouchEvent):
-
-2010-11-12  Mihai Parparita  <mihaip@chromium.org>
-
-        Unreviewed rollout of r71858.
-
-        Rollout out r71858 since it breaks new-run-webkit-httpd as used by the
-        NaCl tests.
-
-        * Scripts/webkitpy/layout_tests/port/config.py:
-        * Scripts/webkitpy/layout_tests/port/config_standalone.py: Removed.
-        * Scripts/webkitpy/layout_tests/port/config_unittest.py:
-
-2010-11-12  Benjamin Poulain  <benjamin.poulain@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] TestController::runUntil doesn't honor the timeout parameter
-        https://bugs.webkit.org/show_bug.cgi?id=48941
-
-        Implement the missing timeout of WebKitTestRunner for Qt.
-
-        A QElapsedTimer has been added to RunUntilConditionLoop in order
-        to measure how long the loop has been running. When the timer
-        is bigger or equal than the timeout, the loop ends even if the
-        condition is not met.
-
-        * WebKitTestRunner/qt/TestControllerQt.cpp:
-        (WTR::RunUntilConditionLoop::start):
-        (WTR::RunUntilConditionLoop::run):
-        (WTR::RunUntilConditionLoop::timerEvent):
-        (WTR::TestController::platformRunUntil):
-
-2010-11-11  David Levin  <levin@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        check-webkit-style function detection doesn't handle templates with spaces.
-        https://bugs.webkit.org/show_bug.cgi?id=49427
-
-        * Scripts/webkitpy/style/checkers/cpp.py: Stripped out templates when
-          finding the function name.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Made the test have a
-          template with a space.
-
-2010-11-11  Ademar de Souza Reis Jr  <ademar.reis@openbossa.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Enable check-webkit-style on Qt files
-        https://bugs.webkit.org/show_bug.cgi?id=48322
-
-        Adding exception for _q_... private slots and
-        ..._data() methods in tests
-
-        * Scripts/webkitpy/style/checker.py: enable Qt dirs, add exceptions
-        * Scripts/webkitpy/style/checker_unittest.py: improve unittests
-
-2010-11-11  David Levin  <levin@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        check-webkit-style function detection doesn't work for templates and destructors.
-        https://bugs.webkit.org/show_bug.cgi?id=49425
-
-        * Scripts/webkitpy/style/checkers/cpp.py: Changed regex for templates and destructors.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Made the test hit this issue.
-
-2010-11-11  Joone Hur  <joone@kldp.org>
-
-        Reviewed by Antonio Gomes.
-
-        [GTK][DRT] Implement LayoutTestController::nodesFromRect
-        https://bugs.webkit.org/show_bug.cgi?id=46598
-
-        Support nodesFromRect in DRT
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::nodesFromRect):
-
-2010-11-11  MORITA Hajime  <morrita@google.com>
-
-        Reviewed by Kent Tamura.
-
-        editing/selection/context-menu-on-text.html fails on chromium
-        https://bugs.webkit.org/show_bug.cgi?id=45898
-
-        Enhance Chromium's EventSender::contextClick() to return
-        array of menu strings. The implementation incomplete because
-        Although actual context menu is implemented by the browser,
-        it reflects editability of underlying context thus makes
-        context-menu-on-text.html passed.
-        
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (makeMenuItemStringsFor): Added.
-        (EventSender::contextClick): Now returns array of menu strings.
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::showContextMenu): Now storing given WebContextMenuData object.
-        (WebViewHost::clearContextMenuData): Added.
-        (WebViewHost::lastContextMenuData): Added.
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2010-11-11  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        fix build breakage caused by fix for bug 49380 (r71858).
-
-        config_standalone needs to ensure that the packages it needs are
-        in sys.path.
-
-        https://bugs.webkit.org/show_bug.cgi?id=49419
-
-        * Scripts/webkitpy/layout_tests/port/config_standalone.py:
-
-2010-11-11  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Roben.
-
-        Fix NRWT to respect set-webkit-configuration again :(
-
-        This change fixes a typo in config.py that was causing the wrong
-        value to be read initially and us never actually looking into
-        the filesystem to get the default configuration.
-        
-        * Scripts/webkitpy/layout_tests/port/config.py:
-        * Scripts/webkitpy/layout_tests/port/config_standalone.py:
-        * Scripts/webkitpy/layout_tests/port/config_unittest.py:
-
-2010-11-11  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Split out Bug, Attachment and CommitterValidator from bugzilla.py
-        https://bugs.webkit.org/show_bug.cgi?id=49403
-
-        CommitterValidator really had nothing to do with bugzilla.py.
-        I've put it next to committers.py for now since its rather tied to that file.
-
-        * Scripts/webkitpy/common/config/committervalidator.py: Added.
-        * Scripts/webkitpy/common/config/committervalidator_unittest.py: Added.
-        * Scripts/webkitpy/common/net/bugzilla/__init__.py:
-        * Scripts/webkitpy/common/net/bugzilla/attachment.py: Added.
-        * Scripts/webkitpy/common/net/bugzilla/bug.py: Added.
-        * Scripts/webkitpy/common/net/bugzilla/bug_unittest.py: Added.
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla_unittest.py:
-        * Scripts/webkitpy/tool/bot/feeders.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-
-2010-11-11  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        fix missing 'pid' argument for http lockfile checking on win32
-        https://bugs.webkit.org/show_bug.cgi?id=49363
-
-        * Scripts/webkitpy/common/system/executive.py:
-
-2010-11-11  Eric Seidel  <eric@webkit.org>
-
-        Rubber-stamped by Adam Barth.
-
-        Move bugzilla.py into its own module in preparation for splitting one-file-per-class
-        https://bugs.webkit.org/show_bug.cgi?id=49402
-
-        * Scripts/webkitpy/common/net/bugzilla/__init__.py: Added.
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py: Renamed from WebKitTools/Scripts/webkitpy/common/net/bugzilla.py.
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla_unittest.py: Renamed from WebKitTools/Scripts/webkitpy/common/net/bugzilla_unittest.py.
-
-2010-11-10  Chris Guillory  <chris.guillory@google.com>
-
-        Reviewed by Chris Fleizach.
-
-        Use IAccessibleComparable to compare accessibility objects.
-        https://bugs.webkit.org/show_bug.cgi?id=49118
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (AccessibilityUIElement::isEqual):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (comparableObject):
-        (AccessibilityUIElement::isEqual):
-
-2010-11-10  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by David Hyatt.
-
-        HTML5 Ruby support should be mandatory feature
-        https://bugs.webkit.org/show_bug.cgi?id=49272
-
-        Remove Ruby as optional feature.
-
-        * Scripts/build-webkit:
-
-2010-11-10  Adam Roben  <aroben@apple.com>
-
-        Print VC++ Express build logs in the same order that the projects are
-        built
-
-        Fixes <http://webkit.org/b/49326> print-vse-failure-logs prints logs
-        in an unhelpful order
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/print-vse-failure-logs:
-        (PrintVisualStudioExpressLogs._build_order): Added. Uses
-        print-msvc-project-dependencies to figure out the order in which
-        projects are built.
-        (PrintVisualStudioExpressLogs._sort_buildlogs): Added. Sorts the logs
-        based on their build order and project name.
-        (PrintVisualStudioExpressLogs._obj_directory): Moved code to find the
-        scripts directory from here...
-        (PrintVisualStudioExpressLogs._scripts_directory): ...to here.
-        (PrintVisualStudioExpressLogs.main): Sort the logs before printing
-        them.
-
-2010-11-10  Adam Roben  <aroben@apple.com>
-
-        Only print the interesting text from VC++ Express build logs
-
-        Fixes <http://webkit.org/b/49325> It's hard to find the interesting
-        output from print-vse-failure-logs
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/print-vse-failure-logs: Removed unnecessary os.path import,
-        added newly-required imports. Removed a comment that was essentially a
-        FIXME, and is now fixed.
-        (PrintVisualStudioExpressLogs._relevant_text): Added. Uses
-        BeautifulSoup to extract the relevant text from the build log.
-        (PrintVisualStudioExpressLogs.main): Only print the relevant text.
-
-2010-11-09  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        [Chromium] http/tests/security/XFrameOptions fail with Chromium DRT
-        https://bugs.webkit.org/show_bug.cgi?id=49286
-        
-        The tests in http/tests/security/XFrameOptions started to fail after
-        r71297, since it changed the WebViewHost::assignIdentifierToRequest
-        logic to always assign identifiers to requests, even if we're not going
-        to be dumping resource load callbacks at that point. These tests
-        only call LayoutTestController.dumpResourceLoadCallbacks after the
-        request is started, thus their expectations have "<unknown>" as the
-        identifier. Change WebViewHost to the previous behavior, which also
-        match the other ports'.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::assignIdentifierToRequest):
-        (WebViewHost::removeIdentifierForRequest):
-
-2010-11-08  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        run platform/chromium/plugins/return-npobject.html on all platforms
-        https://bugs.webkit.org/show_bug.cgi?id=49103
-
-        This tests that we can get an NPObject returned through a method on
-        an NPAPI Object.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:
-        (testCallbackReturn):
-        (pluginInvoke):
-
-2010-11-09  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r71672.
-        http://trac.webkit.org/changeset/71672
-        https://bugs.webkit.org/show_bug.cgi?id=49276
-
-        It doesn't work on Chromium Windows bot (Requested by Ossy on
-        #webkit).
-
-        * Scripts/webkitpy/common/system/file_lock.py: Removed.
-        * Scripts/webkitpy/common/system/file_lock_unittest.py: Removed.
-        * Scripts/webkitpy/layout_tests/port/http_lock.py:
-
-2010-11-09  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
-
-        Reviewed by Tony Chang.
-
-        [NRWT] Make http locking similar to perl implementation
-        https://bugs.webkit.org/show_bug.cgi?id=49187
-
-        * Scripts/webkitpy/common/system/file_lock.py: Added.
-        * Scripts/webkitpy/common/system/file_lock_unittest.py: Added.
-        * Scripts/webkitpy/layout_tests/port/http_lock.py:
-
-2010-11-09  James Kozianski  <koz@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Clean up imports for webkit-patch.
-        https://bugs.webkit.org/show_bug.cgi?id=49083
-
-        Move some imports from commands into main.py where they are used.
-        Move command imports into the __init__ of the commands module.
-
-        * Scripts/webkitpy/tool/commands/__init__.py:
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/main.py:
-
-2010-11-09  Yi Shen  <yi.4.shen@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        [Qt][QtTestBrowser] Don't erase incorrect url in the Url Bar
-        https://bugs.webkit.org/show_bug.cgi?id=49047
-
-        * QtTestBrowser/mainwindow.cpp:
-        (MainWindow::setAddressUrl):
-
-2010-11-09  Andras Becsi  <abecsi@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        Improve old-run-webkit-tests --verbose to show DumpTool opening/closing
-        https://bugs.webkit.org/show_bug.cgi?id=49252
-
-        * Scripts/old-run-webkit-tests:
-
-2010-11-09  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Tor Arne Vestbø.
-
-        Output of old-run-webkit-tests is buggy in verbose mode
-        https://bugs.webkit.org/show_bug.cgi?id=49249
-
-        * Scripts/old-run-webkit-tests: Redundant outputs removed.
-
-2010-11-08  Nicolas Dufresne  <nicolas.dufresne@collabora.co.uk>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Link with target name set does not work
-        https://bugs.webkit.org/show_bug.cgi?id=48865
-
-        When a new page is created with a name (target=myFrame), the new
-        mainFrame could not be found because they where not stored in the
-        same PageGroup. As PageGroup are not exposed externally so the
-        simpliest solution is to use a global page group name. This also fixes
-        issue with visited link coloration across pages. After this change the
-        private function webkit_web_view_set_group_name() was no longer used
-        so it was removed completly.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (createWebView):
-
-2010-11-08  John Knottenbelt  <jknotten@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        WebViewHost::reset() uses placement new.
-        https://bugs.webkit.org/show_bug.cgi?id=49069
-
-        WebViewHost is using placement destruction / new to simulate a fresh
-        WebViewHost object at the same address. This is because the WebView remains
-        open across tests and maintains a pointer to the WebViewHost.
-        This change resets member variables explictly instead of the placement new dance.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::WebViewHost):
-        (WebViewHost::reset):
-
-2010-11-08  Dirk Pranke <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Fix the webkit_base_dir logic in webkitpy/layout_tests/port/config.py. 
-        It turns out that NRWT can't use the code in scm.find_checkout_root()
-        because the Chromium bots don't do full checkouts of the WebKit
-        tree; they only check out subdirectories like WebKitTools/Scripts.
-        Until we can figure out a better approach for this, I've
-        restored the base_dir-detecting code from NRWT, which works in
-        any directory tree, scm or no.
-
-        This also restores the files modified in r71475 and r71474.
-
-        https://bugs.webkit.org/show_bug.cgi?id=49151
-
-        * WebKitTools/Scripts/webkitpy/layout_tests/port/config.py
-        * WebKitTools/Scripts/webkitpy/layout_tests/port/config_unittest.py
-
-2010-11-08  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        webkit-patch failure-reason explodes if a build is missing
-        https://bugs.webkit.org/show_bug.cgi?id=49195
-
-        This is likely a recent regression.  Adding a unit test for this case.
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot_unittest.py:
-
-2010-11-08  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Ignore the system scrollbar setting.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues): Set the scrollbar default.
-
-2010-11-05  Adam Roben  <aroben@apple.com>
-
-        Make webkitpy.common.system.executive_unittest pass when running under
-        Win32 Python
-
-        Fixes <http://webkit.org/b/49033>.
-
-        Reviewed by Dave Levin and Eric Seidel.
-
-        * Scripts/webkitpy/common/system/executive.py:
-        (Executive._run_command_with_teed_output): Pass the arguments through
-        encode_argument_if_needed rather than using Cygwin-specific code here.
-        (Executive.run_and_throw_if_fail): Use child_process_encoding to decode
-        the output.
-        (Executive.run_command): Use encode_argument_if_needed to encode the
-        arguments and child_process_encoding to decode the output.
-        (Executive._child_process_encoding): Returns the encoding that should be
-        used when communicating with child processes. On Windows we use mbcs,
-        which maps to the current code page. On all other platforms we use
-        UTF-8.
-        (Executive._should_encode_child_process_arguments): Returns True if
-        arguments to child processes need to be encoded. This is currently
-        only needed on Cygwin and Win32 Python 2.x.
-        (Executive._encode_argument_if_needed): Encode the argument using
-        child_process_encoding if we need to encode arguments to child
-        processes on this platform.
-
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        (never_ending_command): Added. Returns arguments to run a command that
-        will not quit until we kill it. On Windows we use wmic, on other
-        platforms we use yes.
-        (ExecutiveTest.test_run_command_with_unicode): Changed to expect the
-        mbcs encoding to be used and for output from the child processes to
-        have been roundtripped through encode/decode on Win32 Python. When
-        UTF-8 is the encoding the roundtripping is undetectable, but with mbcs
-        it's possible that some characters will not be able to be converted
-        and will be replaced by question marks; the round-tripping allows us
-        to expect this result.
-
-        (ExecutiveTest.test_kill_process):
-        (ExecutiveTest.test_kill_all):
-        Use never_ending_command instead of invoking "yes" directly. Expect an
-        exit code of 1 when using Win32 Python, as that's what seems to happen.
-
-2010-11-08  Adam Roben  <aroben@apple.com>
-
-        Roll out r71532
-
-        It broke the build for Cygwin 1.7 installs. Cygwin 1.7's default
-        .bashrc unsets %TEMP%, which broke copy-tools.cmd.
-
-        * Scripts/webkitdirs.pm:
-
-2010-11-08  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        run platform/chromium/plugins/nested-plugin-objects.html on all platforms
-        https://bugs.webkit.org/show_bug.cgi?id=49094
-
-        This tests that objects created by plugins are proplery cleaned up.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:
-        (testPassTestObject):
-        (pluginInvoke):
-        * DumpRenderTree/TestNetscapePlugIn/TestObject.cpp:
-        (testAllocate):
-        (testDeallocate):
-        (testGetProperty):
-        (testConstruct):
-
-2010-11-08  Adam Roben  <aroben@apple.com>
-
-        Mark Windows builds triggered from Perl as being non-interactive
-
-        This affects whether some of our scripts will show alerts vs. printing
-        to the build log.
-
-        Fixes <http://webkit.org/b/49181> Windows build fail mysteriously when
-        .vsprops files are updated
-
-        Reviewed by Steve Falkenburg.
-
-        * Scripts/webkitdirs.pm:
-        (buildVisualStudioProject): Set WEBKIT_NONINTERACTIVE_BUILD to 1.
-
-2010-11-08  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
-
-        Reviewed by Ojan Vafai.
-
-        Make http locking default in NRWT.
-        https://bugs.webkit.org/show_bug.cgi?id=48053
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-11-08  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [NRWT] If the http lock fails we shouldn't do any locking
-        https://bugs.webkit.org/show_bug.cgi?id=49164
-
-        If something goes wrong with the locking, the test should keep going.
-
-        * Scripts/webkitpy/layout_tests/port/http_lock.py:
-
-2010-11-08  Adam Roben  <aroben@apple.com>
-
-        Switch back to using kCGImageAlphaPremultipliedFirst when generating
-        pixel dumps on Windows
-
-        I changed this behavior in r71418 thinking that it was required for
-        getting plugins to show up in pixel dumps. But it doesn't seem to be
-        necessary, and was making it impossible to compare new Windows pixel
-        dumps with existing Windows or Mac pixel dumps (because ImageDiff won't
-        compare an image with alpha to an image without alpha).
-
-        Fixes <http://webkit.org/b/49172> REGRESION (r71418): Can't compare
-        new Windows pixel results to existing Windows or Mac results
-
-        Reviewed by Antti Koivisto.
-
-        * DumpRenderTree/win/PixelDumpSupportWin.cpp:
-        (createBitmapContextFromWebView): Replaced kCGImageAlphaNoneSkipFirst
-        with kCGImageAlphaPremultipliedFirst.
-
-2010-11-08  Csaba Osztrogonac  <ossy@webkit.org>
-
-        Unreviewed, rolling out r71466.
-        http://trac.webkit.org/changeset/71466
-        https://bugs.webkit.org/show_bug.cgi?id=48865
-
-        It broke layout tests on GTK bots.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (createWebView):
-
-2010-11-08  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
-
-        Reviewed by Csaba Osztrogonác.
-
-        Enable running of Qt API tests on BuildBot
-        https://bugs.webkit.org/show_bug.cgi?id=49004
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2010-11-08  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add clean-review-queue command to remove closed bugs from the webkit.org/pending-review
-        https://bugs.webkit.org/show_bug.cgi?id=49160
-
-        Bugzilla doesn't automatically remove r? when a bug gets closed.
-        This script takes care of that for webkit.org.
-
-        * Scripts/webkitpy/common/net/bugzilla.py:
-        * Scripts/webkitpy/tool/commands/upload.py:
-
-2010-11-07  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Unreviewed, rolling out r71474.
-        http://trac.webkit.org/changeset/71474
-        https://bugs.webkit.org/show_bug.cgi?id=48280
-
-        breaks chromium webkit tests
-        https://bugs.webkit.org/show_bug.cgi?id=49151
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/config.py:
-        * Scripts/webkitpy/layout_tests/port/config_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/google_chrome_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-11-07  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Unreviewed, rolling out r71475.
-        http://trac.webkit.org/changeset/71475
- 
-        breaks chromium webkit tests
-        https://bugs.webkit.org/show_bug.cgi?id=49151
-
-        * Scripts/webkitpy/common/newstringio.py: Removed.
-        * Scripts/webkitpy/common/newstringio_unittest.py: Removed.
-        * Scripts/webkitpy/common/system/executive_mock.py: Removed.
-        * Scripts/webkitpy/common/system/filesystem_mock.py: Removed.
-        * Scripts/webkitpy/layout_tests/port/config_mock.py: Removed.
-
-2010-11-06  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        Add files inexplicably not committed in r71474 as part of the
-        fix for bug 48280.
-
-        * Scripts/webkitpy/common/newstringio.py: Added.
-        * Scripts/webkitpy/common/newstringio_unittest.py: Added.
-        * Scripts/webkitpy/common/system/executive_mock.py: Added.
-        * Scripts/webkitpy/common/system/filesystem_mock.py: Added.
-        * Scripts/webkitpy/layout_tests/port/config_mock.py: Added.
-
-2010-11-06  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Siedel.
-
-        new-run-webkit-tests: update port/base and port/webkit to use the
-        new FileSystem and Config abstractions, pulling more logic out of
-        the base Port classes into separate, mockable objects.
-
-        Also create a MockFileSystem object, a MockConfig object, move
-        MockExecutive into common/system to be next to executive, and
-        update the config object to use a FileSystem.
-
-        https://bugs.webkit.org/show_bug.cgi?id=48280
-
-        * Scripts/webkitpy/common/newstringio.py: Added.
-        * Scripts/webkitpy/common/newstringio_unittest.py: Added.
-        * Scripts/webkitpy/common/system/executive_mock.py: Added.
-        * Scripts/webkitpy/common/system/filesystem_mock.py: Added.
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/config.py:
-        * Scripts/webkitpy/layout_tests/port/config_mock.py:
-        * Scripts/webkitpy/layout_tests/port/config_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/google_chrome_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-11-06  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build breakage.
-
-        Apparently I uploaded the wrong version of the file to fix 49122
-        and neither Eric or I noticed - it was missing a dirname() call.
-        Fixing ...
-
-        https://bugs.webkit.org/show_bug.cgi?id=49122
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-
-2010-11-06  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        webkitpy/tool/* unittests change cwd and don't clean up properly
-
-        https://bugs.webkit.org/show_bug.cgi?id=49122
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-
-2010-11-05  Chris Marrin  <cmarrin@apple.com>
-
-        Reviewed by Simon Fraser.
-
-        suspendAnimations/resumeAnimations not present in WebKit2
-        https://bugs.webkit.org/show_bug.cgi?id=49109
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::suspendAnimations):
-        (WTR::LayoutTestController::resumeAnimations):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2010-11-05  Tony Chang  <tony@chromium.org>
-
-        Reviewed by David Levin.
-
-        cleanup style in TestNetscapePlugIn/PluginObject.cpp
-        https://bugs.webkit.org/show_bug.cgi?id=49044
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:
-        (getPluginClass):
-        (pluginGetProperty):
-        (pluginSetProperty):
-        (variantToIdentifier):
-        (testCallback):
-        (getURL):
-        (getURLNotify):
-        (testInvokeDefault):
-        (testGetProperty):
-        (testDocumentOpen):
-        (testWindowOpen):
-        (pluginInvoke):
-        (handleCallback):
-        (notifyStream):
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.h:
-
-2010-11-05  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Levin.
-
-        Add QueueStatusServer/__init__.py so others can run the QueueStatusServer tests
-        https://bugs.webkit.org/show_bug.cgi?id=49032
-
-        I wrote this file as part of bug 47847, but I forgot to commit it.
-        No one else noticed it missing because test-webkitpy knows how
-        to recover in the case where it can't import QueueStatusServer
-        (which generally occurs due to not having installed the AppEngine SDK).
-
-        * QueueStatusServer/__init__.py: Added.
-        * QueueStatusServer/model/workitems_unittest.py:
-         - Remove a test which fails.  This was probably landed (by me)
-           from my other machine, which since this __init__.py was missing
-           I never noticed the failure and landed this invalid test.
-           Sadly we can't really test remove_work_item as it depends
-           on .key() working.  .key() will throw unless the object
-           has already been saved it seems.
-           This may be a mis-design in our remove_work_item implementation,
-           but for now, just removing the test.
-
-2010-11-04  Adam Roben  <aroben@apple.com>
-
-        Teach check-webkit-style about TestNetscapePlugIn
-
-        Fixes <http://webkit.org/b/49030> check-webkit-style is ignorant of
-        TestNetscapePlugIn's coding conventions
-
-        Reviewed by John Sullivan.
-
-        * Scripts/webkitpy/style/checker.py: Lump TestNetscapePlugIn in with
-        WebKitAPITest and TestWebKitAPI in having different include order and
-        naming conventions than WebCore. Added some comments about why the
-        exceptions exist.
-
-2010-11-04  Adam Roben  <aroben@apple.com>
-
-        Add a test that shows that windowed plugins are able to paint
-
-        Somehow we never had a test for this before.
-
-        Fixes <http://webkit.org/b/49029> Should add a test that shows
-        windowed plugins can paint
-
-        Reviewed by Jon Honeycutt.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/win/DrawsGradient.cpp: Added.
-        (DrawsGradient::DrawsGradient):
-        (DrawsGradient::wndProc): We handle the WM_PAINT and WM_PRINTCLIENT messages.
-
-        (DrawsGradient::onPaint):
-        (DrawsGradient::onPrintClient):
-        These both just call through to paint.
-
-        (DrawsGradient::paint): Fills our client area with some gradients.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj: Link
-        against Msimg32.lib for ::GradientFill and added DrawsGradient.
-
-        * DumpRenderTree/win/PixelDumpSupportWin.cpp:
-        (createBitmapContextFromWebView): Use WM_PRINT instead of
-        WM_PRINTCLIENT so that ::DefWindowProc will send
-        WM_PRINT/WM_PRINTCLIENT messages to the WebView's child windows.
-        Replaced kCGImageAlphaPremultipledFirst with kCGImageAlphaNoneSkipFirst
-        because GDI doesn't support alpha and kCGImageBitmapOrder32Little with
-        kCGImageBitmapOrder32Host because, who knows, maybe someday Windows
-        will run on a big-endian platform.
-
-2010-11-04  Adam Roben  <aroben@apple.com>
-
-        Extract much of NPNInvalidateRectInvalidatesWindow's code into a
-        WindowedPluginTest base class
-
-        The base class takes care of subclassing the plugin's window so that a
-        custom WNDPROC is called. This will make it easier to write tests that
-        need to handle window messages.
-
-        Fixes <http://webkit.org/b/49028> It's hard to write a PluginTest with
-        a custom WNDPROC
-
-        Reviewed by Jon Honeycutt.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/win/NPNInvalidateRectInvalidatesWindow.cpp:
-        (NPNInvalidateRectInvalidatesWindow::NPNInvalidateRectInvalidatesWindow):
-        (NPNInvalidateRectInvalidatesWindow::NPP_SetWindow):
-        (NPNInvalidateRectInvalidatesWindow::wndProc):
-        (NPNInvalidateRectInvalidatesWindow::testInvalidateRect):
-        Moved code from here to WindowedPluginTest. Changed to use window()
-        instead of m_window.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        Added WindowedPluginTest and added TestNetscapePlugIn/win to the
-        include path. Also reordered the include path to make a little more
-        sense and simplified the entry that added TestNetscapePlugIn itself to
-        the include path.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/WindowedPluginTest.cpp: Added.
-        (WindowedPluginTest::WindowedPluginTest):
-        (WindowedPluginTest::NPP_SetWindow):
-        (WindowedPluginTest::staticWndProc):
-        * DumpRenderTree/TestNetscapePlugIn/win/WindowedPluginTest.h: Added.
-        (WindowedPluginTest::window):
-        Code came from NPNInvalidateRectInvalidatesWindow.
-
-2010-11-04  Adam Roben  <aroben@apple.com>
-
-        Add a plugin test to show that windowed plugins are clipped correctly
-
-        Fixes <http://webkit.org/b/49024> <rdar://problem/8487847> Windowed
-        plugins aren't clipped in WebKit2 on Windows
-
-        Reviewed by Jon Honeycutt.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/win/WindowRegionIsSetToClipRect.cpp: Added.
-        (WindowRegionIsSetToClipRect::WindowRegionIsSetToClipRect): Initialize members.
-        (WindowRegionIsSetToClipRect::NPP_SetWindow): Check that our window
-        region matches the clip rect we know we should have based on
-        window-region-is-set-to-clip-rect.html, and check that our window class
-        doesn't have the CS_PARENTDC style.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        Added WindowRegionIsSetToClipRect.
-
-2010-11-05  Alejandro G. Castro  <alex@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Avoid font hinting in the DRT
-        https://bugs.webkit.org/show_bug.cgi?id=48548
-
-        Change the settings to avoid font hinting, it was causing
-        different results depending on the distribution.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (initializeGtkFontSettings):
-        * DumpRenderTree/gtk/fonts/fonts.conf:
-
-2010-11-05  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        build-webkit spams system.log by repeatedly checking for PBXProductDirectory in com.apple.Xcode
-        https://bugs.webkit.org/show_bug.cgi?id=49051
-
-        This is a speculative fix.  The unit tests cover these methods, however
-        I don't know if this will fully stop the system.log spam.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2010-11-05  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add basic support for showing bot id on /queue-status/ pages
-        https://bugs.webkit.org/show_bug.cgi?id=49037
-
-        This support is really simple.  Eventually we'll want to
-        show the bot id in the lock table too, but we don't have
-        that information stored in the server yet.
-
-        * QueueStatusServer/handlers/queuestatus.py:
-        * QueueStatusServer/handlers/queuestatus_unittest.py: Added.
-        * QueueStatusServer/templates/includes/singlequeuestatus.html:
-
-2010-11-04  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Create a filesystem wrapper that we can use to enforce
-        particular conventions and use for mocking and dependency
-        injection down the line.
-
-        https://bugs.webkit.org/show_bug.cgi?id=48144
-
-        * Scripts/webkitpy/common/system/filesystem.py: Added.
-        * Scripts/webkitpy/common/system/filesystem_unittest.py: Added.
-
-2010-11-04  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        run_webkit_tests_unittest fails under Python 2.5
-        https://bugs.webkit.org/show_bug.cgi?id=49043
-        
-        Switch from itertools.chain.from_iterable (which was added in 2.6)
-        to using itertools.chain directly.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-11-04  Mihai Parparita  <mihaip@chromium.org>
-
-        Unreviewed fix to webkit-patch rebaseline-server so that it runs under
-        Python 2.5 (it needs an import to use the with statement).
-
-        * Scripts/webkitpy/tool/commands/rebaselineserver.py:
-
-2010-11-04  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        new-run-webkit-tests: split out webkit-specific configuration stuff into a new module
-
-        The current NRWT code has webkit-specific configuration code (like
-        _script_path, default configuration, etc.) mixed in with
-        layout-test-specific stuff in port/base. The configuration code
-        should be split out into a separate module for easier mocking,
-        testing, and isolation.
-
-        https://bugs.webkit.org/show_bug.cgi?id=48264
-
-        * Scripts/webkitpy/layout_tests/port/config.py: Added.
-        * Scripts/webkitpy/layout_tests/port/config_unittest.py: Added.
-
-2010-11-04  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Rebaseline server: initial framework
-        https://bugs.webkit.org/show_bug.cgi?id=48892
-        
-        Adds the basic framework for the rebaseline server (details at 
-        http://webkit.org/b/47761). Includes the rebaseline-server webkit-patch
-        command, which starts an HTTP server that can serve static files or
-        invoke handler methods on a class.
-
-        * Scripts/webkitpy/tool/commands/__init__.py:
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/index.html: Added.
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/main.css: Added.
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/main.js: Added.
-        * Scripts/webkitpy/tool/commands/rebaselineserver.py: Added.
-
-2010-11-04  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by James Robinson.
-
-        new-run-webkit-tests wasn't using DRT by default for
-        --platform chromium-gpu
-
-        The default value was set to False instead of None, which meant
-        that the platform specific logic wasn't firing to change the
-        value to True (b/c we were afraid we'd be overriding the user
-        preference).
-
-        https://bugs.webkit.org/show_bug.cgi?id=49038
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-11-04  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        make platform/chromium/plugins/multiple-plugins.html pass on all platforms
-        https://bugs.webkit.org/show_bug.cgi?id=49026
-
-        Have the testObject.bar property return the string "bar".  This lets
-        us run and pass platform/chromium/plugins/multiple-plugins.html on all
-        platforms.
-
-        * DumpRenderTree/TestNetscapePlugIn/TestObject.cpp:
-        (testGetProperty):
-
-2010-11-04  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        NRWT doesn't have good test coverage for --run-chunk, --batch-size, --run-part, etc.
-        https://bugs.webkit.org/show_bug.cgi?id=48878
-        
-        Add get_tests_run so that it's easy to see which tests get run (and with
-        what batching) for a given flag combination. Flesh out the various
-        test cases that have FIXMEs.
-        
-        Also fixes an off-by-one error (batch sizes were one larger than 
-        expected) and makes --run-part also have wraparound behavior, like
-        --run-chunk.
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-11-04  Erik Arvidsson  <arv@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Support box-sizing without the vendor prefix
-        https://bugs.webkit.org/show_bug.cgi?id=36713
-
-        Based on patch by Peter Beverloo <peter@lvp-media.com>
-
-        * iExploder/htdocs/cssproperties.in: Change -webkit-box-sizing to box-sizing.
-
-2010-11-04  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed rollout r71340, because it broke Chromium Windows bot.
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-11-04  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
-
-        Reviewed by Ojan Vafai.
-
-        Make http locking default in NRWT.
-        https://bugs.webkit.org/show_bug.cgi?id=48053
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-11-04  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
-
-        Reviewed by Eric Seidel.
-
-        [NRWT] Clear invalid http locks on Windows platform as well
-        https://bugs.webkit.org/show_bug.cgi?id=48515
-
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/http_lock.py:
-
-2010-11-02  Adam Roben  <aroben@apple.com>
-
-        Reduce our dependence on coreutils when running Python tests
-
-        This patch introduces versions of the standard echo and cat utilities
-        implemented in Python. They are probably missing features of their
-        coreutils equivalents, but they can do what's necessary for our Python
-        tests. This is useful on Windows, where these utilities typically
-        aren't available.
-
-        Fixes <http://webkit.org/b/48883> executive_unittest relies on echo
-        and cat utilities from coreutils, which are not present on Windows
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/system/executive_unittest.py: Changed to use
-        our Python-based echo and cat.
-
-        * Scripts/webkitpy/common/system/fileutils.py: Added.
-        (make_stdout_binary): On Windows, puts sys.stdout into binary mode so
-        that \n won't be translated into \r\n. I couldn't think of a good way
-        to test this directly without touching the filesystem, but it is tested
-        indirectly by echo_unittest.
-
-        * Scripts/webkitpy/test/cat.py: Added.
-        (command_arguments): Returns a list for invoking cat with the given arguments.
-        (main): Acts like a simplified version of the coreutils cat utility.
-
-        * Scripts/webkitpy/test/cat_unittest.py: Added.
-        (CatTest.assert_cat): Runs cat with the given input and ensures the
-        output matches the input.
-        (CatTest.test_basic): Performs a simple test of cat.
-        (CatTest.test_no_newline): Tests what happens when the input string
-        doesn't have a trailing newline.
-        (CatTest.test_unicode): Tests passing a unicode string to cat.
-        (CatTest.test_as_command): Tests running cat as a separate command.
-
-        * Scripts/webkitpy/test/echo.py: Added.
-        (command_arguments): Returns a list for invoking echo with the given arguments.
-        (main): Acts like a simplified version of the coreutils echo utility.
-
-        * Scripts/webkitpy/test/echo_unittest.py: Added.
-        (EchoTest.test_basic): Performs a simple test of echo.
-        (EchoTest.test_no_newline): Tests passing -n to echo to suppress the
-        trailing newline.
-        (EchoTest.test_unicode): Tests passing unicode and non-unicode strings
-        to echo.
-        (EchoTest.test_argument_order): Tests what happens when -n is not the
-        first argument.
-        (EchoTest.test_empty_arguments): Tests what happens when you pass [] to
-        echo.main.
-        (EchoTest.test_no_arguments): Tests what happens when you call
-        echo.main with no arguments.
-        (EchoTest.test_as_command): Tests running echo as a separate command.
-
-2010-11-04  Renata Hodovan  <reni@inf.u-szeged.hu>
-
-        Unreviewed: Add myself to the list of Committers.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-11-04  Andreas Kling  <kling@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Hook into QWebPage::scrollRequested for resizes-to-contents mode
-
-        In RTC mode the QGraphicsWebView item is the size of the contents,
-        scrolling works a bit differently  (we need to react to scrollRequested.)
-
-        Normally QGraphicsView will replay the last mouse event when scrolling,
-        so to prevent WebKit from getting confused by this we temporarily make
-        the QGraphicsView non-interactive.
-
-        * QtTestBrowser/webview.cpp:
-        (WebViewGraphicsBased::setPage):
-        (WebViewGraphicsBased::scrollRequested):
-        * QtTestBrowser/webview.h:
-
-2010-11-04  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        Use OS(MAC_OS_X) rather than PLATFORM(MAC) in TestControllerQt
-
-        PLATFORM(MAC) is not defined for the Qt port, as it refers to
-        the Mac-port, not the Mac OS X operating system.
-
-        * WebKitTestRunner/qt/TestControllerQt.cpp:
-        (WTR::isExistingLibrary):
-
-2010-11-04  Leonid Ebril  <leonid.ebril@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Adding iphone user agent string the user agent list for QtTestBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=48869
-
-        * QtTestBrowser/useragentlist.txt:
-
-2010-11-03  Adam Roben  <aroben@apple.com>
-
-        Always use uppercase drive names in strings returned by abspath_to_uri
-
-        Some versions of cygpath use lowercase drive letters while others use
-        uppercase, which makes it hard to test the output of code that uses
-        cygpath.
-
-        Fixes <http://webkit.org/b/48914> webkitpy.common.system.path_unittest
-        fails with Cygwin 1.5
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/system/path.py:
-        (cygpath): Updated the docstring to indicate that only absolute paths
-        should be passed for now (though relative paths will work fine).
-        (_Cygpath.convert): Upper-case the first letter of the converted Windows path.
-
-2010-11-03  George Guo  <George.Guo@Nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] QtTestBrowser : set mmp rule pageddata in Symbian
-        https://bugs.webkit.org/show_bug.cgi?id=48767
-    
-        Paging is needd on Symbian devices to support benchmarks tests like
-        dromaeo.com and Celtic Kane that need a lot of memory to run  
-
-        * QtTestBrowser/QtTestBrowser.pro:
-
-2010-11-03  Jenn Braithwaite  <jennb@chromium.org>
-
-        Reviewed by Dmitry Titov.
-
-        Chromium: Update resource tracking when moving a frame between documents
-        https://bugs.webkit.org/show_bug.cgi?id=48363
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::assignIdentifierToRequest):
-        Always put resource id in map so we can make assumptions about its
-        presence.
-        (WebViewHost::removeIdentifierForRequest):
-        Added.
-        (WebViewHost::didFinishResourceLoad):
-        (WebViewHost::didFailResourceLoad):
-        Check existence of resource id before removing from map.
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2010-11-03  Victor Wang  <victorw@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        [Chromium] update buildbot names in chromium rebaseline tool.
-
-        https://bugs.webkit.org/show_bug.cgi?id=48881
-
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-
-2010-11-03  Darin Adler  <darin@apple.com>
-
-        Updated Xcode projects by opening them with Xcode 3.2.4.
-        Updated svn:ignore for Xcode projects.
-
-        * MiniBrowser/MiniBrowser.xcodeproj: Added property svn:ignore.
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj: Added property svn:ignore.
-        * WebKitLauncher/WebKitLauncher.xcodeproj: Modified property svn:ignore.
-        * WebKitLauncher/WebKitLauncher.xcodeproj/project.pbxproj: Updated with Xcode 3.2.4.
-
-2010-11-03  Adam Roben  <aroben@apple.com>
-
-        Stop waiting for messages from the web process after a timeout elapses
-
-        TestController::runUntil now takes a timeout parameter that specifies
-        how long to wait for the condition to become true. WebKitTestRunner
-        takes a --timeout flag that specifies how long the timeout should be.
-        run-webkit-tests passes this flag to WebKitTestRunner so its timeout
-        will be similar to run-webkit-tests.
-
-        Fixes <http://webkit.org/b/43047> <rdar://problem/8365833>
-        WebKitTestRunner waits forever if the web process crashes
-
-        Reviewed by Darin Adler and Anders Carlsson.
-
-        * Scripts/old-run-webkit-tests:
-        (top level): Moved the GuardMalloc timeout adjustment here from
-        readFromDumpToolWithTimer.
-        (openDumpTool): Make WTR use a timeout similar to but slightly shorter
-        than the one that was specified on the command line.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::TestController): Initialize our timeout values.
-        (WTR::TestController::initialize): Parse the --timeout flag and use it
-        to modify our timeout values.
-        (WTR::TestController::resetStateToConsistentValues): Changed to use a
-        short timeout while waiting for the web process to reset and to return
-        a boolean indicating whether we were able to reset the web process.
-        Uses a 5-second timeout while waiting for the process to be reset.
-        (WTR::TestController::runTest): Changed to return a boolean indicating
-        whether we were able to reset the web process (and thus run the test).
-        (WTR::TestController::runUntil): Call through to platformRunUntil.
-
-        (WTR::TestController::runTestingServerLoop):
-        (WTR::TestController::run):
-        Changed to bail if any test can't be run. This will cause the process
-        to exit. (Unfortunately this will make run-webkit-tests think we
-        crashed; see <http://webkit.org/b/48943>.)
-
-        * WebKitTestRunner/TestController.h: Added platformRunUntil,
-        m_longTimeout, and m_shortTimeout.
-
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::invoke): Use a short timeout when waiting for the
-        initial response and a long timeout when waiting for the test to
-        complete. Check whether runUntil timed out and print an error message
-        if so.
-
-        * WebKitTestRunner/mac/TestControllerMac.mm:
-        (WTR::TestController::platformRunUntil): Renamed from runUntil. Pass
-        [NSDate distantPast] to -[NSRunLoop runMode:beforeDate:] so that we
-        won't block waiting for the run loop. Only loop until the timeout
-        elapses.
-
-        * WebKitTestRunner/qt/TestControllerQt.cpp:
-        (WTR::TestController::platformRunUntil): Renamed from runUntil. Added a
-        FIXME about honoring the timeout.
-
-        * WebKitTestRunner/win/TestControllerWin.cpp:
-        (WTR::TestController::platformRunUntil): Renamed from runUntil. Use
-        ::MsgWaitForMultipleObjectsEx to implement the timeout. Changed to use
-        ::PeekMessageW so that we don't block waiting for messages to become
-        available.
-
-2010-11-03  Adam Roben  <aroben@apple.com>
-
-        Add a plugin test that evaluates JS after removing the plugin element
-        from the document
-
-        This test replaces platform/win/plugins/plugin-delayed-destroy.html.
-        That test was made to prevent a crash very similar to this one, but
-        unfortunately tested only the mechanism that prevented the crash and
-        not whether the crash itself was prevented. Since WebKit2 uses a
-        different mechanism to prevent the crash, the test was failing even
-        though WebKit2 was not vulnerable to the crash. This new test crashes
-        if there is no mechanism in place to prevent it and passes in both
-        WebKit1 and WebKit2.
-
-        Fixes <http://webkit.org/b/46711> <rdar://problem/8485903>
-        platform/win/plugins/plugin-delayed-destroy.html fails in WebKit2
-
-        Reviewed by Anders Carlsson.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * GNUmakefile.am:
-        Added new file.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:
-        (pluginDeallocate): Make sure we delete the PluginTest object. This
-        prevents a leak and also allows us to test the crash.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-        (PluginTest::executeScript): Made this into a non-static member
-        function.
-
-        (PluginTest::waitUntilDone):
-        (PluginTest::notifyDone):
-        Updated for changes to executeScript.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.h: Added executeScript.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/EvaluateJSAfterRemovingPluginElement.cpp: Added.
-        (EvaluateJSAfterRemovingPluginElement::EvaluateJSAfterRemovingPluginElement):
-        Initialize ourselves and tell the test harness to wait.
-        (EvaluateJSAfterRemovingPluginElement::NPP_DestroyStream): Remove our
-        plugin element from the document, then execute some JavaScript. If
-        WebKit does not have appropriate mechanisms in place, we'll be
-        destroyed inside the first call to executeScript and crash on the
-        second call.
-
-2010-11-02  Stephen White  <senorblanco@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        [chromium] Fix LayoutTestController UMRs.
-        https://bugs.webkit.org/show_bug.cgi?id=48872
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-
-2010-11-03  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        REGRESSION: rebaseline-chromium-webkit-tests uses non-zero tolerance for
-        image dup detection
-        https://bugs.webkit.org/show_bug.cgi?id=48744
-
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-         - Make a function for option parsing for ease of test
-         - Set 0 to options.tolerance
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests_unittest.py:
-         - Add a test for this change
-
-2010-11-02  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Unreviewed: Add myself to the list of Committers.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-11-02  Anders Carlsson  <andersca@apple.com>
-
-        Fix build.
-
-        * TestWebKitAPI/PlatformUtilities.cpp:
-        (TestWebKitAPI::Util::createContextForInjectedBundleTest):
-
-2010-11-02  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Add a way to send startup messages on the context which can be posted when a process launches
-        <rdar://problem/8617928>
-        https://bugs.webkit.org/show_bug.cgi?id=48838
-
-        * MiniBrowser/mac/WebBundle/WebBundleMain.m:
-        (WKBundleInitialize):
-        * TestWebKitAPI/InjectedBundleController.cpp:
-        (TestWebKitAPI::InjectedBundleController::initialize):
-        (TestWebKitAPI::InjectedBundleController::didReceiveMessage):
-        * TestWebKitAPI/InjectedBundleController.h:
-        * TestWebKitAPI/InjectedBundleMain.cpp:
-        (WKBundleInitialize):
-        * TestWebKitAPI/PlatformUtilities.cpp:
-        (TestWebKitAPI::Util::createContextForInjectedBundleTest):
-        * WebKitTestRunner/InjectedBundle/InjectedBundleMain.cpp:
-        (WKBundleInitialize):
-        Update implementations of WKBundleInitialize to take an initial userData
-        argument.  Change TestWebKitAPI to use the new initial userData to initialize
-        each test's bundle.
-
-2010-11-02  Benjamin Kalman  <kalman@google.com>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests doesn't strip "LayoutTests/" from prefix, unlike old-run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=48794
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py: Strip the "LayoutTests/" prefix from test argument paths.
-
-2010-11-02  Adam Roben  <aroben@apple.com>
-
-        Skip webkitpy.layout_tests.run_webkit_tests_unittest.MainTest on Cygwin
-        Python 2.5.x
-
-        It is known to hang on that version of Python. See
-        <http://webkit.org/b/48614>.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py: Use
-        skip_if to skip MainTest on Cygwin Python 2.5.x.
-
-        * Scripts/webkitpy/test/skip.py: Added.
-        (skip_if): If the passed-in condition is false, find all the test_*
-        methods of the given class and replace them with a function that just
-        logs that we're skipping these tests. This is loosely based on the
-        unittest.skip_if decorator added in Python 3.1.
-        (_skipped_method): Returns a function that just logs that the tests are
-        being skipped. This is used in place of the actual test_* functions.
-
-        * Scripts/webkitpy/test/skip_unittest.py: Added.
-        (SkipTest.setUp): Create a logger for ourselves and give it a handler
-        that logs to a private stream.
-        (SkipTest.tearDown): Reset the logger.
-        (SkipTest.create_fixture_class): Returns a class that we use to test
-        skip_if. It has a single test_* method, test_foo, that just calls
-        through to a callback.
-        (SkipTest.foo_callback): Record that test_foo was called.
-        (SkipTest.test_skip_if_false): Pass skip_if a False condition and test
-        that test_foo does get called.
-        (SkipTest.test_skip_if_true): Pass skip_if a True condition and test
-        that test_foo does not get called and the appropriate message gets
-        logged.
-
-2010-11-02  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        webkit-patch should tell check-webkit-style which files were changed so
-        check-webkit-style doesn't have to stat the whole working copy again
-        https://bugs.webkit.org/show_bug.cgi?id=48792
-
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/checkstyle.py:
-
-2010-11-02  Robert Kroeger  <rjkroege@chromium.org>
-
-        Reviewed by James Robinson.
-
-        [Chromium/DRT] Make EventSendingController honour leapForward for touch events.
-        https://bugs.webkit.org/show_bug.cgi?id=48777
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::sendCurrentTouchEvent):
-
-2010-11-02  Adam Roben  <aroben@apple.com>
-
-        Only track resource identifiers in DRT when dumpResourceLoadCallbacks
-        is on
-
-        This reverts Windows to our pre-r71097 behavior. That patch made us
-        track all resource identifiers, including the main resource, so the
-        main resource's URL started appearing in test output instead of
-        "<unknown>". Arguably having the main resource's URL is better, but all
-        other platforms print "<unknown>" and we want to match.
-
-        Fixes <http://webkit.org/b/48837> <rdar://problem/8620351> REGRESSION
-        (r71097): Many http tests failing on Windows
-
-        Reviewed by Anders Carlsson.
-
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp:
-        (ResourceLoadDelegate::identifierForInitialRequest): Don't add the
-        identifier to the URL map if we're not supposed to dump resource load
-        callbacks.
-        (ResourceLoadDelegate::removeIdentifierForRequest): Always remove the
-        identifier from the URL map even if we're already "done". There's no
-        point in keeping out-of-date identifiers around.
-
-2010-11-01  Jenn Braithwaite  <jennb@chromium.org>
-
-        Reviewed by Adam Roben.
-
-        Windows: Update resource tracking when moving a frame between documents
-        https://bugs.webkit.org/show_bug.cgi?id=48364
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (createWebViewAndOffscreenWindow):
-        (main):
-        Give each WebView its own ResourceLoadDelegate instance in order to
-        make assertions about resource ids on a particular WebView.
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp:
-        (ResourceLoadDelegate::identifierForInitialRequest):
-        Always add id to the map.
-        (ResourceLoadDelegate::removeIdentifierForRequest):
-        Added.
-        (ResourceLoadDelegate::willSendRequest):
-        (ResourceLoadDelegate::didReceiveAuthenticationChallenge):
-        (ResourceLoadDelegate::didReceiveResponse):
-        (ResourceLoadDelegate::didFinishLoadingFromDataSource):
-        (ResourceLoadDelegate::didFailLoadingWithError):
-        (ResourceLoadDelegate::descriptionSuitableForTestResult):
-        Replace static descriptionSuitableForTestResult with static member function to access identifier map.
-        * DumpRenderTree/win/ResourceLoadDelegate.h:
-        (ResourceLoadDelegate::urlMap):
-        Moved within class so that each WebView has its own id map.
-
-2010-11-01  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        remove debug code from run_webkit_tests.py
-        https://bugs.webkit.org/show_bug.cgi?id=48800
-
-        Remove temporary debug code and make --master-name required
-        if --test-results-server is set now that all clients set
-        --master-name.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-11-01  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        add plugin event logging for linux
-        https://bugs.webkit.org/show_bug.cgi?id=48779
-
-        This is taken from Chromium's fork of the layout test plugin:
-        http://git.chromium.org/gitweb/?p=chromium.git/.git;a=blob;f=webkit/tools/npapi_layout_test_plugin/main.cpp;h=3ebdada2f049b3624756438cff852364f86a2ede;hb=HEAD#l348
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (handleEventX11):
-        (NPP_HandleEvent):
-
-2010-11-01  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by James Robinson.
-
-        new-run-webkit-tests: use DRT, child-processes=1 for GPU tests by default
-        https://bugs.webkit.org/show_bug.cgi?id=48790
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-
-2010-11-01  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Teach check-webkit-style how to accept a list of files to diff on the
-        command line
-        https://bugs.webkit.org/show_bug.cgi?id=48784
-
-        In a future patch, webkit-patch will use this option to improve
-        performance.  I'm landing this in two pieces to avoid causing a version
-        skew problem for the style-bot.
-
-        * Scripts/check-webkit-style:
-        * Scripts/webkitpy/style/optparser.py:
-        * Scripts/webkitpy/style/optparser_unittest.py:
-        * Scripts/webkitpy/style_references.py:
-
-2010-11-01  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by John Sullivan.
-
-        Tear down the related WebProcessProxy when a WebContext is deallocated
-        https://bugs.webkit.org/show_bug.cgi?id=48769
-
-        * TestWebKitAPI/Tests/WebKit2/FailedLoad.cpp:
-        (TestWebKitAPI::didFailProvisionalLoadWithErrorForFrame):
-        We don't support empty URLs anymore, update test to expect a null URL instead.
-
-2010-11-01  Søren Gjesse  <sgjesse@chromium.org>
-
-        Reviewed by Andreas Kling.
-
-        Fix warning when compiling the chromium port of DumpRenderShell
-        with clang.
-        https://bugs.webkit.org/show_bug.cgi?id=48414
-
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::javaScriptFlagsForLoad):
-
-2010-11-01  Adam Roben  <aroben@apple.com>
-
-        Fix typo from r71022
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2010-11-01  Adam Roben  <aroben@apple.com>
-
-        Trigger the Windows Release WebKit2 tests when a Release build
-        finishes, not when a Debug build finishes
-
-        Fixes <http://webkit.org/b/48754> Windows Release WebKit2 tests are
-        triggered at the wrong time
-
-        Reviewed by Sam Weinig.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Fixed
-        triggerable name and trigger.
-
-2010-11-01  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        Unreviewed. Adding my IRC nickname to the list of committers.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-10-31  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Antonio Gomes.
-
-        [Qt] [Gtk] Plug-ins having upper case in mime type are failing to load
-
-        Qt and Gtk are case-sensitive when storing the declared mime-type
-        of plugins. Since plugin mime-types are lowercased prior to searching
-        for them in the plugin database, ensure they are loaded with the
-        mime-type in lower case too.
-
-        Change the test netscape plugin to declare its mimetype in sentence
-        case so that the correct behaviour is enforced.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36815
-
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (NP_GetMIMEDescription):
-
-2010-10-31  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Antonio Gomes.
-
-        [Qt] Support nodesFromRect in DRT
-
-        https://bugs.webkit.org/show_bug.cgi?id=48716
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::nodesFromRect):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-10-30  Andreas Kling  <kling@webkit.org>
-
-        Reviewed by Antonio Gomes.
-
-        [Qt] QtTestBrowser: Switching view type moves the embedded inspector
-        https://bugs.webkit.org/show_bug.cgi?id=48705
-
-        Reinsert the embedded inspector into the splitter after changing
-        between QWebView/QGraphicsWebView.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::init):
-        (LauncherWindow::initializeView):
-        * QtTestBrowser/webinspector.h:
-        (WebInspector::WebInspector):
-
-2010-10-28  Antonio Gomes  <agomes@rim.com>
-
-        Reviewed by Ojan Vafai.
-
-        Needs a "LinuxEditingBehavior", perhaps with a better name
-        https://bugs.webkit.org/show_bug.cgi?id=36627
-
-        Adding support to Mac's, GTK+'s, Windows' and Chromium's LayoutTestController class to test the newly introduced Unix editing behavior.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::setEditingBehavior):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setEditingBehavior):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setEditingBehavior):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setEditingBehavior):
-
-2010-10-29  Andreas Kling  <kling@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] QtTestBrowser: Add keyboard shortcut to toggle full screen (F11)
-        https://bugs.webkit.org/show_bug.cgi?id=48695
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::createChrome):
-
-2010-10-29  Andreas Kling  <kling@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] QtTestBrowser: Fix uninitialized read in FpsTimer
-        https://bugs.webkit.org/show_bug.cgi?id=48675
-
-        FpsTimer::m_timer was never initialized and passed to QObject::killTimer()
-        on startup with in -graphicsbased mode.
-
-        * QtTestBrowser/fpstimer.cpp:
-        (FpsTimer::FpsTimer):
-        (FpsTimer::numFrames):
-        (FpsTimer::stop):
-        (FpsTimer::timerEvent):
-        * QtTestBrowser/fpstimer.h:
-
-2010-10-29  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: change TestResults to be serializable
-
-        In preparation for changing new-run-webkit-tests from
-        multithreaded to multiprocess, we need to make sure the data
-        going between the threads is easily serialized over a socket.
-
-        This change adds serialization/pickling for the TestResults and
-        TestFailure objects (using cPickle).
-
-        The TestFailure objects included a "has_wdiff" flag for Text
-        results, but the flag wasn't being used, so I've removed it,
-        simplifying the state to basically a set of enum objects with
-        associated methods.
-
-        https://bugs.webkit.org/show_bug.cgi?id=48616
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_results.py: Added.
-        * Scripts/webkitpy/layout_tests/layout_package/test_results_unittest.py:Added. 
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-
-2010-10-29  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: need to provide separate dashboard results for GPU tests
-        https://bugs.webkit.org/show_bug.cgi?id=48687
-
-        Modify the steps to upload the JSON files to the dashboards so
-        that the GPU tests don't conflict with the regular tests on a
-        port. We do this by modifying the --builder-name parameter to
-        append " - GPU", which should cause the app to treat the results
-        as a completely new builder. This is a little non-obvious, but
-        keeps us from having to restructure the app.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-10-29  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        [chromium] add debug logging to help diagnose flakiness dashboard issues
-        https://bugs.webkit.org/show_bug.cgi?id=48657
-
-        The appengine app thinks it's getting empty files uploaded. Add some logging
-        to see if new-run-webkit-tests agrees.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-10-29  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        [Chromium/DRT] Add master-name flag to new-run-webkit-tests.
-        https://bugs.webkit.org/show_bug.cgi?id=48649
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Added flag.
-
-2010-10-29  Nicolas Dufresne  <nicolas.dufresne@collabora.co.uk>
-
-        Reviewed by Martin Robinson.
-
-        Enable popup window in GtkLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=48335
-
-        The GtkLauncher application does not support opening new window when
-        a link with "target=_blank" is clicked or similar call to
-        window.open(). Instead, GtkLauncher does nothing which breaks
-        navigation of some websites.
-
-        * GtkLauncher/main.c:
-        (activate_uri_entry_cb):
-        (update_title):
-        (link_hover_cb):
-        (notify_title_cb):
-        (notify_load_status_cb):
-        (notify_progress_cb):
-        (destroy_cb):
-        (go_back_cb):
-        (go_forward_cb):
-        (create_web_view_cb):
-        (web_view_ready_cb):
-        (close_web_view_cb):
-        (create_browser):
-        (create_statusbar):
-        (create_toolbar):
-        (create_window):
-        (main):
-
-2010-10-29  Adam Roben  <aroben@apple.com>
-
-        Teach check-webkit-style about WebKit2's idiosyncracies
-
-        Fixes <http://webkit.org/b/48638> Style bot complains about a number
-        of WebKit2 conventions
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/webkitpy/style/checker.py: Excluded some rules for various
-        WebKit2-related files. Also updated the excluded rules for
-        WebKitAPITest to match the current code.
-
-2010-10-29  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Adam Roben and David Kilzer.
-
-        Fix and cleanup of build systems
-        https://bugs.webkit.org/show_bug.cgi?id=48342
-
-        * Scripts/build-webkit:
-         - Remove unnecessary ENABLE_SANDBOX option.
-         - Add ENABLE_FULLSCREEN_API option.
-
-2010-10-28  Adam Roben  <aroben@apple.com>
-
-        Switch the Windows WebKit2 bot to the Release configuration
-
-        We only have one machine testing WebKit2 on Windows right now, and
-        Debug is just too slow for it to keep up.
-
-        Fixes (hopefully!) <http://webkit.org/b/48615> Windows WebKit2 bot is
-        always way behind
-
-        Reviewed by Jon Honeycutt.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2010-10-29  Leandro Gracia Gil  <leandrogracia@google.com>
-
-        Reviewed by Jeremy Orlow.
-
-        Added a second parameter to setMockSpeechInputResult for
-        the language used in speech input.
-        https://bugs.webkit.org/show_bug.cgi?id=47089
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setMockSpeechInputResultCallback):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-        (LayoutTestController::pageSizeAndMarginsInPixels):
-
-2010-10-28  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        [chromium] add a result-small.json file for the test dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=48547
-
-        Output both a results.json file and a results-small.json file.
-        The dashboard will load results-small.json by default so it loads faster.
-
-        * TestResultServer/model/jsonresults.py:
-        * TestResultServer/model/jsonresults_unittest.py:
-        Added a bunch of sys.path hackery. Unforunately, this uses hardcoded
-        paths. That obviously needs to be fixed, but at least this way it
-        clearly documents what paths are necessary.
-
-2010-10-28  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        webkit-patch upload calls changed_files more often than it should
-        https://bugs.webkit.org/show_bug.cgi?id=48567
-
-        Passing changed_files around everywhere isn't a very elegant solution
-        but it's the one we have for the moment.  I think keeping an explicit
-        cache on Checkout (or making StepState() a real class) is a better
-        long-term option.
-
-        Previously bug_id_for_this_commit was calling changed_files and the
-        result was never getting cached on the state.  Now we're explicitly
-        caching the result on the state and passing that to the bug_id_for_this_commit call.
-
-        I looked into building unit tests for this.  Doing so would require
-        using a real Checkout object with a MockSCM and overriding the appropriate
-        calls on SCM to count how often we're stating the file system.
-        That's a useful set of tests to build for a separate change.
-
-        * Scripts/webkitpy/common/checkout/api.py:
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/upload.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-10-28  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Make suggest-reviewers slightly faster
-        https://bugs.webkit.org/show_bug.cgi?id=48562
-
-        Add @memoized to one more common call.
-
-        * Scripts/webkitpy/common/checkout/api.py:
-
-2010-10-28  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        webkit-patch suggest-reviewers -g 260550a6e30b7bf34f16bdb4a5396cf26264fc1c is still very slow
-        https://bugs.webkit.org/show_bug.cgi?id=48536
-
-        This patch makes it about 40 seconds faster, but it still
-        takes 1:40.  This will require more refinement.
-
-        The suggested reviewers list appears to be the same.
-
-        I think the next step may be to have it stop the search after
-        5 reviewers are found.  We never want to suggest 30 people.
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-         - Using --remove-empty to theoretically stop lookups past
-           when a file is removed.  I'm not entirely clear that the option
-           does what it says it does.  Example:
-           git log --pretty=format:%H -5 --remove-empty -- /Projects/WebKit/WebCore/platform/wx/SearchPopupMenuWx.h
-           returns only one commit
-           vs.
-           git log --pretty=format:%H -5 -- /Projects/WebKit/WebCore/platform/wx/SearchPopupMenuWx.h
-           which returns 5.  I was not aware that wx files were ever removed from the repository?
-
-2010-10-28  Kinuko Yasuda  <kinuko@chromium.org>
-
-        Reviewed by David Levin.
-
-        [Chromium] Support FileSystem in chromium DRT
-        https://bugs.webkit.org/show_bug.cgi?id=47643
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::openFileSystem): Added.
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost::openFileSystem): Added.
-
-2010-10-28  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        WKURLRefs should be allowed to be null
-        <rdar://problem/8575621>
-        https://bugs.webkit.org/show_bug.cgi?id=48535
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2/PageLoadBasic.cpp:
-        (TestWebKitAPI::didStartProvisionalLoadForFrame):
-        (TestWebKitAPI::didCommitLoadForFrame):
-        (TestWebKitAPI::didFinishLoadForFrame):
-        Test that URLs are null pointers when unset.
-
-2010-10-28  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Adele Peterson.
-
-        AX: multi select group option does not handle setting of AXSelectedChildren correctly
-        https://bugs.webkit.org/show_bug.cgi?id=48464
-
-        Add support for querying information about selected children to DRT, including:
-           selectedChildAtIndex
-           selectedChildrenCount
-           setSelectedChild
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (selectedChildAtIndexCallback):
-        (setSelectedChildCallback):
-        (selectedChildrenCountCallback):
-        (AccessibilityUIElement::setSelectedChild):
-        (AccessibilityUIElement::selectedChildrenCount):
-        (AccessibilityUIElement::selectedChildAtIndex):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::selectedChildAtIndex):
-        (AccessibilityUIElement::selectedChildrenCount):
-        (AccessibilityUIElement::setSelectedChild):
-
-2010-10-27  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Add WebKit2 API for window feature getter/setters
-        <rdar://problem/8590373>
-        https://bugs.webkit.org/show_bug.cgi?id=48496
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * MiniBrowser/win/BrowserView.cpp:
-        (BrowserView::create):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::createOtherPage):
-        (WTR::TestController::initialize):
-
-2010-10-28  Søren Gjesse  <sgjesse@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Added support for the DumpRenderTree flags --multiple-loads and --js-flags to the Python test runner.
-        https://bugs.webkit.org/show_bug.cgi?id=48236
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-10-28  Sergio Villar Senin  <svillar@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] WebKitWebFrame's load-status is not properly notified to the tests
-        https://bugs.webkit.org/show_bug.cgi?id=48048
-
-        DRT now listens to WebKitWebFrame load-status signals for each
-        created frame instead of the load-status signal of the
-        WebKitWebView that only notifies about changes in the main frame.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webViewLoadFinished):
-        (webFrameLoadStatusNotified):
-        (frameCreatedCallback):
-        (createWebView):
-        (main):
-
-2010-10-28  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [chromium] fix textInputController.{selectedRange,markedRange}
-        https://bugs.webkit.org/show_bug.cgi?id=48487
-
-        * DumpRenderTree/chromium/TextInputController.cpp:
-        (TextInputController::markedRange): Return arrays of ints, rather than a string
-        (TextInputController::selectedRange): Ditto.
-
-2010-10-27  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        [chromium] add a master-name flag to new-run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=48488
-
-        The test results server now allows adding a master name to
-        the uploaded files. This lets us distinguish bots that have
-        the same name, but are on different masters.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-10-28  Adam Roben  <aroben@apple.com>
-
-        Don't append a newline to the test output if the frame has no document
-        element in WebKitTestRunner
-
-        Fixes <http://webkit.org/b/48526> Extra trailing newline when running
-        plugins/document-open.html in WebKitTestRunner
-
-        Reviewed by Anders Carlsson.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::toJS): Added. Turns a UTF-8 C string into a JSStringRef.
-        (WTR::hasDocumentElement): Added. Uses the JSC API to figure out
-        whether the frame has a document element.
-        (WTR::dumpFrameText): Match DRT by bailing (rather than appending an
-        empty string and a newline) if the frame has no document element.
-
-2010-10-28  Adam Roben  <aroben@apple.com>
-
-        Skip npn-invalidate-rect-invalidates-window.html on headless XP
-        machines
-
-        TestNetscapePlugIn never receives a WM_PAINT message on headless XP
-        machines, so this test times out. Fixing the test is covered by
-        <http://webkit.org/b/48333>.
-
-        * Scripts/old-run-webkit-tests: Skip
-        npn-invalidate-rect-invalidates-window.html on Windows if accelerated
-        compositing support is disabled, which likely means we're on a headless
-        XP machine.
-
-2010-10-28  Kimmo Kinnunen  <kimmok@iki.fi>
-
-        Adding myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-10-27  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        webkit-patch suggest-reviewers -g 260550a6e30b7bf34f16bdb4a5396cf26264fc1c is very slow
-        https://bugs.webkit.org/show_bug.cgi?id=48500
-
-        This doesn't fix the problem, but it makes things slightly better.
-        Each git svn find-rev call takes about .25 seconds on my desktop.
-        This patch uses a new memoized class to avoid those calls when possible.
-
-        The real slowness is still git log on some files, like:
-        git log --pretty=format:%H -5 -- /Projects/WebKit/WebCore/platform/wx/SearchPopupMenuWx.h
-        I'm not yet sure how to make the pathological git logs better.
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/memoized.py: Added.
-        * Scripts/webkitpy/common/memoized_unittest.py: Added.
-
-2010-10-27  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Ojan Vafai.
-
-        EWS bots should not use --quiet when running build-webkit
-        https://bugs.webkit.org/show_bug.cgi?id=48482
-
-        --quiet is only correct when the sub-process does the error reporting.
-        In the case of _can_build() the parent process is reporting the error.
-        We'd like the full build log at queues.webkit.org so someone can look
-        at the log and understand why the EWS is failing to build trunk.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-10-27  Brian Weinstein  <bweinstein@apple.com>
-
-        More Windows build fixage. Rename a variable that was named string.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::hasPrefix):
-
-2010-10-27  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [chromium] Make the test results server store which master the bot is on
-        https://bugs.webkit.org/show_bug.cgi?id=48478
-
-        The chromium bots recently changed so that there are multiple slaves with
-        the same name on different masters. Up till now, the test results server
-        assumed slave names were unique. Adds a master field to the file in order
-        to distinguish.
-
-        Also, for files that currently lack a master or testtype, set them appropriately.
-
-        * TestResultServer/handlers/testfilehandler.py:
-        * TestResultServer/index.yaml:
-        * TestResultServer/model/jsonresults.py:
-        * TestResultServer/model/testfile.py:
-        * TestResultServer/templates/showfilelist.html:
-        * TestResultServer/templates/uploadform.html:
-
-2010-10-26  Darin Adler  <darin@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        WebKitTestRunner needs to support layoutTestController.dumpBackForwardList
-        https://bugs.webkit.org/show_bug.cgi?id=42322
-        rdar://problem/8193631
-
-        WebKitTestRunner needs to support layoutTestController.clearBackForwardList
-        https://bugs.webkit.org/show_bug.cgi?id=42333
-        rdar://problem/8193643
-
-        * WebKitTestRunner/Configurations/InjectedBundle.xcconfig:
-        Renamed the product to WebKitTestRunnerInjectedBundle to avoid
-        name conflicts in the build directory.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        Added dumpBackForwardList and clearBackForwardList.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::InjectedBundle): Removed initialization of m_mainPage.
-        (WTR::InjectedBundle::didCreatePage): Removed unneeded underscore.
-        (WTR::InjectedBundle::willDestroyPage): Ditto.
-        (WTR::InjectedBundle::didReceiveMessage): Ditto.
-        (WTR::InjectedBundle::initialize): Ditto.
-        (WTR::InjectedBundle::didCreatePage): Changed code to use m_pages
-        instead of m_mainPage and m_otherPages.
-        (WTR::InjectedBundle::willDestroyPage): Ditto.
-        (WTR::InjectedBundle::page): Ditto.
-        (WTR::InjectedBundle::beginTesting): Ditto.
-        (WTR::InjectedBundle::done): Ditto.
-        (WTR::InjectedBundle::closeOtherPages): Ditto.
-        (WTR::InjectedBundle::dumpBackForwardListsForAllPages): Added.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h: Changed
-        page function to longer be inline, and pageCount function
-        to use m_pages. Added dumpBackForwardListsForAllPages, and
-        removed some underscores. Replaced m_mainPage and m_otherPageas
-        with m_pages.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::adoptWK): Added.
-        (WTR::hasPrefix): Added.
-        (WTR::InjectedBundlePage::reset): Added code to set up
-        m_previousTestBackForwardListItem.
-        (WTR::InjectedBundlePage::dump): Added code to call
-        dumpBackForwardListsForAllPages.
-        (WTR::compareByTargetName): Added.
-        (WTR::dumpBackForwardListItem): Added.
-        (WTR::InjectedBundlePage::dumpBackForwardList): Added.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h: Added
-        dumpBackForwardList and m_previousTestBackForwardListItem.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::LayoutTestController): Initialize
-        m_shouldDumpBackForwardListsForAllWindows to false.
-        (WTR::LayoutTestController::clearBackForwardList): Added.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        Added dumpBackForwardList, clearBackForwardList,
-        shouldDumpBackForwardListsForAllWindows, and
-        m_shouldDumpBackForwardListsForAllWindows.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize): Set up
-        didReceiveSynchronousMessageFromInjectedBundle.
-        (WTR::TestController::didReceiveSynchronousMessageFromInjectedBundle):
-        Added.
-        * WebKitTestRunner/TestController.h: Ditto.
-
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::didReceiveSynchronousMessageFromInjectedBundle):
-        Added.
-        * WebKitTestRunner/TestInvocation.h: Ditto.
-
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-        Renamed bundle to WebKitTestRunnerInjectedBundle (see above).
-        * WebKitTestRunner/mac/TestControllerMac.mm:
-        (WTR::TestController::initializeInjectedBundlePath): Ditto.
-
-2010-10-27  Chris Rogers  <crogers@google.com>
-
-        Reviewed by Chris Marrin.
-
-        Add ENABLE_WEB_AUDIO feature enable flag (initially disabled) to build-webkit
-        https://bugs.webkit.org/show_bug.cgi?id=48279
-
-        * Scripts/build-webkit:
-
-2010-10-27  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.
-
-        build-webkit should collect Visual Studio Express logs and display them
-        https://bugs.webkit.org/show_bug.cgi?id=39199
-
-        It turns out my previous patch wasn't actually working on the win-ews
-        machine.  So I've fixed my mistakes from before.
-
-        * Scripts/build-webkit:
-         - Windows VSE builds change the CWD while building.  Why?  Who knows.
-        * Scripts/print-vse-failure-logs:
-         - windows VSE builds don't use Debug/Release as I expected, so I've
-           moved off of --configuration to --top-level and added the /obj
-           optimization while I was there.
-
-2010-10-27  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Unreviewed, rolling out r70674.
-        http://trac.webkit.org/changeset/70674
-        https://bugs.webkit.org/show_bug.cgi?id=48053
-
-        Broke Chromium Windows build.
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-10-25  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Anders Carlsson.
-
-        compile TestNetscapePlugIn on chromium linux
-        https://bugs.webkit.org/show_bug.cgi?id=48274
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NP_Initialize): On Linux, plugin funcs are set in initialize.
-        (NPP_New): Mark the plugin as windowless.
-        (NPP_GetValue): Handle mime type values.
-        (NP_GetMIMEDescription):
-        (NP_GetValue):
-        * DumpRenderTree/chromium/TestNetscapePlugIn/ForwardingHeaders/WebKit/npapi.h: define TRUE and FALSE, which are in webkit's npapi.h.
-        * DumpRenderTree/chromium/TestNetscapePlugIn/ForwardingHeaders/WebKit/npfunctions.h: Pull in npapi.h to get TRUE/FALSE (matches webkit's npfunctions.h)
-
-2010-10-27  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Remove contentSizeChanged callbacks as it is no longer
-        part of the public UIClient.
-
-        Make WKPageContentsSizeChangedCallback be a private API
-        https://bugs.webkit.org/show_bug.cgi?id=48409
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * MiniBrowser/win/BrowserView.cpp:
-        (BrowserView::create):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::createOtherPage):
-        (WTR::TestController::initialize):
-
-2010-10-27  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
-
-        Reviewed by Ojan Vafai.
-
-        Make http locking default in NRWT.
-        https://bugs.webkit.org/show_bug.cgi?id=48053
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-10-27  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
-
-        Reviewed by Tony Chang.
-
-        [NRWT] Fix http lock on Windows platform
-        https://bugs.webkit.org/show_bug.cgi?id=48321
-
-        * Scripts/webkitpy/layout_tests/port/http_lock.py:
-
-2010-10-27  Satish Sampath  <satish@chromium.org>
-
-        Unreviewed, rolling out r70665.
-        http://trac.webkit.org/changeset/70665
-        https://bugs.webkit.org/show_bug.cgi?id=47089
-
-        Need to address Alexey's review comments.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setMockSpeechInputResultCallback):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-
-2010-10-27  Leandro Gracia Gil  <leandrogracia@google.com>
-
-        Reviewed by Jeremy Orlow.
-
-        Added a second parameter to setMockSpeechInputResult for
-        the language used in speech input.
-        https://bugs.webkit.org/show_bug.cgi?id=47089
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setMockSpeechInputResultCallback):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-        (LayoutTestController::pageSizeAndMarginsInPixels):
-
-2010-10-27  Adam Roben  <aroben@apple.com>
-
-        Reset TestNetscapePlugIn's NPP_GetValue pointer when
-        NullNPPGetValuePointer finishes running
-
-        Fixes <http://webkit.org/b/48435> REGRESSION (r70655): Many plugins
-        tests are failing on Qt
-
-        Reviewed by Anders Carlsson.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-        (PluginTest::NPP_Destroy):
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.h:
-        Added a do-nothing NPP_Destroy implementation.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/NullNPPGetValuePointer.cpp:
-        (NullNPPGetValuePointer::NullNPPGetValuePointer): Save the original
-        NPP_GetValue pointer in m_originalNPPGetValuePointer so we can restore
-        it later.
-        (NullNPPGetValuePointer::NPP_Destroy): Added. Restores the original
-        NPP_GetValue pointer so it can be used in other tests.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_Destroy):
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_destroy_instance):
-        Call through to the PluginTest when NPP_Destroy is called.
-
-2010-10-26  Brian Weinstein  <bweinstein@apple.com>
-
-        Reviewed by Adam Roben.
-
-        WebKit2 shouldn't try to send an empty user agent
-        https://bugs.webkit.org/show_bug.cgi?id=48397
-        
-        Add a test that when we set our custom user agent to an empty string, we don't send
-        an empty user agent.
-
-        * TestWebKitAPI/Tests/WebKit2/PreventEmptyUserAgent.cpp: Added.
-        (TestWebKitAPI::didRunJavaScript): Make sure that the result of navigator.userAgent isn't empty.
-        (TestWebKitAPI::TEST): Set our custom user agent to the empty string, and run navigator.userAgent.
-        
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj: Add the new file.
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj: Ditto.
-
-2010-10-27  Adam Roben  <aroben@apple.com>
-
-        Check in file I forgot in r70653
-
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (NP_Initialize): Save the NPPluginFuncs struct the browser passed to us
-        so we can be naughty and modify it later.
-
-2010-10-27  Adam Roben  <aroben@apple.com>
-
-        Test that WebKit doesn't crash if the plugin passes 0 for its
-        NPP_GetValue pointer
-
-        Test for <http://webkit.org/b/48433> Crash in
-        NetscapePlugin::shouldLoadSrcURL when using Shockwave Director 10.3 in
-        WebKit2 on Windows
-
-        Reviewed by Eric Carlson.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * GNUmakefile.am:
-        Added NullNPPGetValuePointer.cpp.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.h:
-        Set up a place to store the NPPluginFuncs struct the browser passed to us.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/NullNPPGetValuePointer.cpp: Added.
-        (NullNPPGetValuePointer::NullNPPGetValuePointer): Null out the
-        NPP_GetValue pointer we passed to the browser to simulate a plugin that
-        doesn't implement NPP_GetValue.
-        (NullNPPGetValuePointer::NPP_GetValue): Print an error message. If this
-        function is called, it means that WebKit has changed in a way that
-        makes this test invalid.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NP_GetEntryPoints): Save the NPPluginFuncs struct the browser passed
-        to us so we can be naughty and modify it later.
-
-2010-10-27  Ademar de Souza Reis Jr  <ademar.reis@openbossa.org>
-
-        Reviewed by Andreas Kling.
-
-        Remove references to ancient QGVLauncher and QtLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=48430
-
-        QtTestBrowser substitutes both and has checks enabled.
-
-        * Scripts/webkitpy/style/checker.py: remove references
-        * Scripts/webkitpy/style/checker_unittest.py: ditto
-
-2010-10-27  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
-
-        Reviewed by Ojan Vafai.
-
-        [NRWT] Don't use image hash when it's no need in single test mode.
-        https://bugs.webkit.org/show_bug.cgi?id=48326
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-
-2010-10-27  David Kilzer  <ddkilzer@apple.com>
-
-        Fix leak of CFMutableDictionaryRef in createXMLStringFromWebArchiveData()
-
-        Reviewed by Adam Roben.
-
-        Follow-up fix for: <https://bugs.webkit.org/show_bug.cgi?id=48278>
-
-        * DumpRenderTree/cf/WebArchiveDumpSupport.cpp:
-        (createXMLStringFromWebArchiveData): Use RetainPtr<> to fix a
-        leak introduced in r70613.
-
-2010-10-27  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [NRWT] Add platform specific baseline search paths for Qt port
-        https://bugs.webkit.org/show_bug.cgi?id=48428
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-
-2010-10-27  Adam Roben  <aroben@apple.com>
-
-        Catch exceptions when checking if we're inside a git working directory
-
-        Fixes <http://webkit.org/b/48420> REGRESSION (r70562): test-webkitpy
-        fails on systems without git installed
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/webkitpy/common/net/credentials.py:
-        (Credentials._credentials_from_git): Put the call to
-        Git.in_working_directory inside the try/except since it, too, attempts
-        to execute git and thus will throw on systems that don't have git
-        installed.
-
-2010-10-27  Nikolas Zimmermann  <nzimmermann@rim.com>
-
-        Reviewed by David Kilzer.
-
-        Convert DumpRenderTree webarchive code to CoreFoundation
-        https://bugs.webkit.org/show_bug.cgi?id=48278
-
-        CFPropertyListCreateWithData and CFPropertyListCreateData are only available in 10.6+.
-        Replace CFPropertyListCreateWithData by a combination of CFReadStreamCreateWithBytesNoCopy and CFPropertyListCreateFromStream.
-        Replace CFPropertyListCreateData by CFPropertyListCreateXMLData.
-
-        These changes are wrapped in BUILDING_ON_LEOPARD, as the methods are deprecated on 10.6+.
-
-        * DumpRenderTree/cf/WebArchiveDumpSupport.cpp:
-        (createXMLStringFromWebArchiveData):
-
-2010-10-26  Antonio Gomes  <agomes@rim.com>
-
-        Reviewed by Martin Robinson.
-
-        Remove the absolute path used to include DumpRenderTreeSupportGtk.h from LayoutTestController.h
-
-        It turns out this is rather unneeded since WebKitTools/GNUMakefile.am has WebKit/gtk/ in its include
-        path, and then we can just do #include "WebCoreSupport/DumpRenderTreeSupportGtk.h"
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-
-2010-10-26  David Kilzer  <ddkilzer@apple.com>
-
-        Rename WebArchiveDumpSupport.mm to WebArchiveDumpSupport.cpp
-
-        Reviewed by Adam Roben.
-
-        Part 4 of 4: <http://webkit.org/b/48278> Convert DumpRenderTree webarchive code to CoreFoundation
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        Updated for file moves and renames.
-        * DumpRenderTree/cf/WebArchiveDumpSupport.cpp: Renamed from DumpRenderTree/mac/WebArchiveDumpSupport.mm.
-        * DumpRenderTree/cf/WebArchiveDumpSupport.h: Renamed from DumpRenderTree/mac/WebArchiveDumpSupport.h.
-
-2010-10-26  David Kilzer  <ddkilzer@apple.com>
-
-        Convert WebArchiveDumpSupport.mm from NS objects to CF types
-
-        Reviewed by Adam Roben.
-
-        Part 3 of 4: <http://webkit.org/b/48278> Convert DumpRenderTree webarchive code to CoreFoundation
-
-        In order to share WebArchive code between the Mac and Windows
-        ports, the code in WebArchiveDumpSupport.mm was converted from
-        Cocoa to C++ using CoreFoundation (CF) types.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dump): Renamed serializeWebArchiveToXML() to
-        createXMLStringFromWebArchiveData() and added HardAutorelease()
-        to prevent leaks.
-        * DumpRenderTree/mac/WebArchiveDumpSupport.h:
-        (createXMLStringFromWebArchiveData): Renamed from
-        serializeWebArchiveToXML().  Changed to use CF types.
-        (createCFURLResponseFromResponseData): Renamed from
-        unarchiveNSURLResponseFromResponseData().  Changed to use CF
-        types for its parameter and return type.
-        * DumpRenderTree/mac/WebArchiveDumpSupport.mm: Replaced use of
-        NS objects with CF types.  It will be renamed to *.cpp in a
-        future commit.
-        (convertMIMEType): Changed to use case-insensitive string
-        comparisons.
-        (convertWebResourceDataToString):
-        (normalizeHTTPResponseHeaderFields):
-        (normalizeWebResourceURL):
-        (convertWebResourceResponseToDictionary):
-        (compareResourceURLs):
-        (createXMLStringFromWebArchiveData):
-        * DumpRenderTree/mac/WebArchiveDumpSupportMac.mm:
-        (createCFURLResponseFromResponseData): Renamed from
-        unarchiveNSURLResponseFromResponseData().  Changed to use CF
-        types for its parameter and return type.
-
-2010-10-26  David Kilzer  <ddkilzer@apple.com>
-
-        Extract use of NSKeyedUnarchiver from WebArchiveDumpSupport.mm
-
-        Reviewed by Adam Roben.
-
-        Part 2 of 4: <http://webkit.org/b/48278> Convert DumpRenderTree webarchive code to CoreFoundation
-
-        There is no equivalent to NSKeyedUnarchiver in CoreFoundation,
-        so extract it into a platform-specific source file.
-
-        * DumpRenderTree/mac/WebArchiveDumpSupport.h:
-        (unarchiveNSURLResponseFromResponseData): Added declaration.
-        * DumpRenderTree/mac/WebArchiveDumpSupport.mm:
-        (convertWebResourceResponseToDictionary): Extracted code to
-        unarchiveNSURLResponseFromResponseData() in
-        WebArchiveDumpSupportMac.mm.  Updated logic to return early if
-        nil is returned from unarchiveNSURLResponseFromResponseData().
-        * DumpRenderTree/mac/WebArchiveDumpSupportMac.mm:
-        (unarchiveNSURLResponseFromResponseData): Added.  Extracted
-        code from convertWebResourceResponseToDictionary() in
-        WebArchiveDumpSupport.mm.
-
-2010-10-26  David Kilzer  <ddkilzer@apple.com>
-
-        Extract call to -[WebHTMLRepresentation supportedNonImageMIMETypes] from WebArchiveDumpSupport.mm
-
-        Reviewed by Adam Roben.
-
-        Part 1 of 4: <http://webkit.org/b/48278> Convert DumpRenderTree webarchive code to CoreFoundation
-
-        The call to -[WebHTMLRepresentation supportedNonImageMIMETypes]
-        is not cross-platform between Mac and Windows, so extract it
-        into a platform-specific source file.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Added
-        WebArchiveDumpSupportMac.mm to the project.
-        * DumpRenderTree/mac/WebArchiveDumpSupport.h:
-        (supportedNonImageMIMETypes): Added declaration.
-        * DumpRenderTree/mac/WebArchiveDumpSupport.mm:
-        (convertWebResourceDataToString): Replaced call to
-        -[WebHTMLRepresentation supportedNonImageMIMETypes] with
-        supportedNonImageMIMETypes().
-        * DumpRenderTree/mac/WebArchiveDumpSupportMac.mm: Added.
-        (supportedNonImageMIMETypes): Added.  Extracted from
-        WebArchiveDumpSupport.mm.
-
-2010-10-26  Antonio Gomes  <agomes@rim.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Implement DumpRenderTreeSupportGtk (similarly to DumpRenderTreeSupportQt idea)
-        https://bugs.webkit.org/show_bug.cgi?id=48199
-
-        Implements support to WebKitTabToLinksPreferenceKey through LayoutTestController::overridePreference.
-        The corresponding DumpRenderTreeSupportGtk method is called in the DRT context only.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        (createWebView):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::overridePreference):
-
-2010-10-26  Ariya Hidayat  <ariya@sencha.com>
-
-        Unreviewed, change the order of my emails for bugzilla autocompletion.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-10-26  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Kilzer.
-
-        build-webkit should collect Visual Studio Express logs and display them
-        https://bugs.webkit.org/show_bug.cgi?id=39199
-
-        * Scripts/build-webkit:
-        * Scripts/print-vse-failure-logs: Added.
-        * Scripts/webkitdirs.pm:
-
-2010-10-26  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/48224> build-webkit: add support for --meter-tag switch
-
-        Reviewed by Csaba Osztrogonác.
-
-        * Scripts/build-webkit: Added support for --meter-tag switch.
-        It should have been added with r60820.
-
-2010-10-26  Ademar de Souza Reis Jr.  <ademar.reis@openbossa.org>
-
-        Reviewed by Dumitru Daniliuc.
-
-        check-webkit-style fails on operator+=, operator-=, ... methods
-        https://bugs.webkit.org/show_bug.cgi?id=48258
-
-        * Scripts/webkitpy/style/checkers/cpp.py: Added exceptions
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Added unit-tests
-
-2010-10-26  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        remove DEFER support from new-run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=48387
-
-        DEFER was needed when we were trying to ship Chrome beta.
-        Now it's just extra complication.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-
-2010-10-26  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Adding import with_statement to fix python 2.5.
-
-        Teach webkit-patch how to read credentials from the environment
-        https://bugs.webkit.org/show_bug.cgi?id=48275
-
-        * Scripts/webkitpy/common/net/credentials_unittest.py:
-         - import with_statement to fix python 2.5.
-
-2010-10-26  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        https://bugs.webkit.org/show_bug.cgi?id=48375
-        <rdar://problem/8392724> Need delegate calls in PageLoaderClient to indicate if we have
-        loaded insecure content
-
-        Updated for WebKit2 changes.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (didDisplayInsecureContentForFrame):
-        (didRunInsecureContentForFrame):
-        (-[BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        (WTR::InjectedBundlePage::didDisplayInsecureContentForFrame):
-        (WTR::InjectedBundlePage::didRunInsecureContentForFrame):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-
-2010-10-26  Adam Roben  <aroben@apple.com>
-
-        Clear up confusion between "3D rendering" and "accelerated compositing"
-
-        WebKit has no software-based 3D rendering implementation, so 3D
-        rendering can only be enabled when accelerated compositing is. But DRT
-        was falsely reporting that 3D rendering was available on machines that
-        don't support accelerated compositing, leading to much confusion.
-
-        Reviewed by Darin Adler.
-
-        Fixes <http://webkit.org/b/48370> REGRESSION (r70540): Many
-        transforms/3d tests are failing on the XP bots
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (main): When ENABLE(3D_RENDERING) is turned on, only report that 3D
-        rendering is available when acclerated compositing is also available.
-
-        * Scripts/old-run-webkit-tests: Skip tests that use the
-        -webkit-transform-3d media query when 3D rendering is disabled,
-        rather than when accelerated compositing is disabled.
-
-2010-10-26  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Ojan Vafai.
-
-        Remove rietveld code now that it's unused
-        https://bugs.webkit.org/show_bug.cgi?id=48359
-
-        Was cool that we added this support, but now that it's
-        not used it makes little sense to keep it around.
-        We can always restore this code from SVN if we need it.
-
-        * Scripts/webkitpy/common/config/__init__.py:
-        * Scripts/webkitpy/common/net/bugzilla.py:
-        * Scripts/webkitpy/common/net/bugzilla_unittest.py:
-        * Scripts/webkitpy/common/net/rietveld.py: Removed.
-        * Scripts/webkitpy/common/net/rietveld_unittest.py: Removed.
-        * Scripts/webkitpy/thirdparty/__init__.py:
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/main.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/__init__.py:
-        * Scripts/webkitpy/tool/steps/postcodereview.py: Removed.
-
-2010-10-26  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        pageDidScroll callback should be on the UI process client rather than (or in addition to) the web process client
-        https://bugs.webkit.org/show_bug.cgi?id=48366
-        <rdar://problem/8595202>
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::createOtherPage):
-        (WTR::TestController::initialize):
-
-2010-10-26  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Tony Chang.
-
-        Teach webkit-patch how to read credentials from the environment
-        https://bugs.webkit.org/show_bug.cgi?id=48275
-
-        This makes it possible for svn users to have their bugzilla credentials
-        stored in their environment instead of typing them every time.
-
-        We need this for making it easy to run the win-ews bot (which currently
-        uses svn instead of git).
-
-        * Scripts/webkitpy/common/net/credentials.py:
-        * Scripts/webkitpy/common/net/credentials_unittest.py:
-
-2010-10-26  Kenichi Ishibashi  <bashi@google.com>
-
-        Reviewed by Kent Tamura.
-
-        Input Method inserts conversion candidates unexpectedly
-        https://bugs.webkit.org/show_bug.cgi?id=46868
-
-        Adds setComposition() to TextInputController to make DRT emulate
-        an input method behavior.
-
-        * DumpRenderTree/chromium/TextInputController.cpp:
-        (TextInputController::TextInputController):
-        (TextInputController::setComposition): Added.
-        * DumpRenderTree/chromium/TextInputController.h:
-
-2010-10-26  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Support layoutTestController.layerTreeAsText in WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=42145
-        
-        Implement layerTreeAsText() in WebKitTestRunner.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::layerTreeAsText):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2010-10-26  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        webkit-patch rollout produces incorrect patch when using svn move
-        https://bugs.webkit.org/show_bug.cgi?id=48244
-
-        We need to flush our caches when we modify the working copy.
-
-        * Scripts/webkitpy/tool/steps/revertrevision.py:
-
-2010-10-26  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue flaky test message can list the same author more than once
-        https://bugs.webkit.org/show_bug.cgi?id=48268
-
-        tonikitoo reported to me over IRC this morning that he's seen
-        the commit-queue report flaky tests with author lists like:
-        "adam, adam and adam", suggesting we're not uniquing authors
-        before writing the message.
-
-        I fixed the uniquing and added a bunch more unit testing.
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-10-26  Adam Roben  <aroben@apple.com>
-
-        Pull in the FeatureDefines*.vsprops files when building DRT
-
-        This ensures that various ENABLE() macros will get set correctly.
-        (Prior to r70320 we were picking up the ENABLE(3D_RENDERING) flag
-        through wtf/Platform.h.)
-
-        Fixes <http://webkit.org/b/48343> REGRESSION (r70320): DumpRenderTree
-        says 3D_RENDERING is disabled even when it is enabled
-
-        Reviewed by Ada Chan.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj: Added
-        FeaturesDefines*.vsprops to all configurations.
-
-        * DumpRenderTree/win/DumpRenderTreeWin.h: Touched to force a rebuild.
-
-2010-10-26  Søren Gjesse  <sgjesse@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Added options --multiple-loads and --js-flags to chromium DumpRenderTree. The option --multiple-loads=X
-        is used to have DumpRenderTree load each test it runs X times. To be able to have more fine-grained control
-        of how the JavaScript engine behaves for each load the flag --js-flags can specify a list of flag-sets like this
-
-          --js-flags="--xxx,--noxxx --yyy,--noyyy"
-
-        First load will run with --xxx, the second with --yyy and the third without any (the 'no' prefix is handled by
-        V8 to turn off the flag).
-
-        The changes to the Python test runner will be in a separate change.
-
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (runTest):
-        (main):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::runFileTest):
-        (TestShell::testFinished):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::loadCount):
-        (TestShell::setLoadCount):
-        (TestShell::javaScriptFlagsForLoad):
-        (TestShell::setJavaScriptFlags):
-        (TestShell::setDumpWhenFinished):
-
-2010-10-26  Adam Roben  <aroben@apple.com>
-
-        Skip more tests that depend on accelerated compositing when accelerated
-        compositing is disabled
-
-        Fixes <http://webkit.org/b/48329> Some tests fail when accelerated
-        compositing is disabled
-
-        Reviewed by John Sullivan.
-
-        * Scripts/old-run-webkit-tests: Added more tests to skip when
-        accelerated compositing is disable. The tests all have output that
-        changes depending on whether accelerated compositing is enabled.
-
-2010-10-25  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        webkit-patch should clean up svn locks when passed --force-clean
-        https://bugs.webkit.org/show_bug.cgi?id=48269
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-
-2010-10-25  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Add a pageDidScroll BundleUIClient callback
-        https://bugs.webkit.org/show_bug.cgi?id=48260
-        <rdar://problem/8531159>
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-
-2010-10-25  Johnny Ding  <jnd@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Dump the gesture status of frame in frame load callbacks in DumpRenderTree
-        by adding a new method dumpUserGestureInFrameLoadCallbacks.
-        Now only dump the gesture status in "DidStartProvisionalLoad" callback.
-        https://bugs.webkit.org/show_bug.cgi?id=47849
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (dumpUserGestureInFrameLoadCallbacksCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::dumpUserGestureInFrameLoadCallbacks):
-        (LayoutTestController::setDumpUserGestureInFrameLoadCallbacks):
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::dumpUserGestureInFrameLoadCallbacks):
-        (LayoutTestController::reset):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController::shouldDumpUserGestureInFrameLoadCallbacks):
-        (LayoutTestController::setShouldDumpUserGestureInFrameLoadCallbacks):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::shouldDumpUserGestureInFrameLoadCallbacks):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::didStartProvisionalLoad):
-        (WebViewHost::printFrameUserGestureStatus):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[WebFrame _drt_printFrameUserGestureStatus]):
-        (-[FrameLoadDelegate webView:didStartProvisionalLoadForFrame:]):
-        (-[FrameLoadDelegate webView:didCommitLoadForFrame:]):
-        (-[FrameLoadDelegate webView:didFailProvisionalLoadWithError:forFrame:]):
-        (-[FrameLoadDelegate webView:didFinishLoadForFrame:]):
-        (-[FrameLoadDelegate webView:didFailLoadWithError:forFrame:]):
-        (-[FrameLoadDelegate webView:windowScriptObjectAvailable:]):
-        (-[FrameLoadDelegate webView:didReceiveTitle:forFrame:]):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::dumpUserGestureInFrameLoadCallbacks):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-10-25  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r70442.
-        http://trac.webkit.org/changeset/70442
-        https://bugs.webkit.org/show_bug.cgi?id=48248
-
-        http locking doesn't work on Windows (Requested by Ossy on
-        #webkit).
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-10-25  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
-
-        Reviewed by Ojan Vafai.
-
-        Make http locking default in NRWT.
-        https://bugs.webkit.org/show_bug.cgi?id=48053
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-10-25  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/48185> build-webkit: add support for --progress-tag switch
-        (Re-landing r70413 after Qt minimal buildfix: r70440.)
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * Scripts/build-webkit: Added support for --progress-tag switch.
-        It should have been added with r57051.
-
-2010-10-24  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by David Kilzer.
-
-        webkit-patch upload fails when the patch removes a file
-        https://bugs.webkit.org/show_bug.cgi?id=48187
-
-        We need to use "--" to separate file names from the rest of the
-        command.
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-
-2010-10-24  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r70413.
-        http://trac.webkit.org/changeset/70413
-        https://bugs.webkit.org/show_bug.cgi?id=48210
-
-        It broke Qt minimal build (Requested by Ossy on #webkit).
-
-        * Scripts/build-webkit:
-
-2010-10-24  Yi Shen  <yi.4.shen@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        [Qt][QtTestBrowser] Toggle use of QGraphicsView messes up the menu
-        https://bugs.webkit.org/show_bug.cgi?id=48141
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::init):
-        (LauncherWindow::initializeView):
-        (LauncherWindow::toggleWebView):
-
-2010-10-24  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by David Kilzer.
-
-        Fix Perl uninitialized warnings in VCSUtils::svnStatus()
-        and VCSUtils::removeEOL().
-        https://bugs.webkit.org/show_bug.cgi?id=48196
-
-        VCSUtils::svnStatus() concatenates the output of svn status with
-        a new line character and svn status may return no output (say for
-        a file that has not been added, deleted, or modified). We should
-        only concatenate the output of svn status if there is some.
-
-        Also, VCSUtils::removeEOL() should ensure that its argument
-        is initialized before performing a string substitution.
-
-        * Scripts/VCSUtils.pm:
-          - Modified removeEOL() to return "" if its argument is undefined.
-          - Exported removeEOL() so that it can be tested. 
-        * Scripts/webkitperl/VCSUtils_unittest/removeEOL.pl: Added.
-
-2010-10-24  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/48185> build-webkit: add support for --progress-tag switch
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * Scripts/build-webkit: Added support for --progress-tag switch.
-        It should have been added with r57051.
-
-2010-10-24  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/48184> build-webkit: reformat support variables for better maintainability
-
-        Reviewed by Daniel Bates.
-
-        * Scripts/build-webkit: Alphabetized the @features array based
-        on the name of the feature.  Reformatted the list of support
-        variables so that they match the order of @features, and so that
-        each has its own line.  This makes it easy to add new variables
-        in the correct order.
-
-2010-10-23  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        EWS never removes invalid patch ids
-        https://bugs.webkit.org/show_bug.cgi?id=48173
-
-        This is just sticking another finger in the dam.
-        However this adds more unit testing which will help
-        us make sure we're always releasing patches once we
-        redesign the release_patch API and call these from
-        a more central place.
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-         - Added the ability to request invalid patches.
-           Log a warning message to make sure we don't ever have
-           tests use invalid patch fetches by mistake.
-
-2010-10-23  Dan Bernstein  <mitz@apple.com>
-
-        Build fix. Add stub implementations for required NSDraggingInfo methods.
-
-        * DumpRenderTree/mac/DumpRenderTreeDraggingInfo.mm:
-        (-[DumpRenderTreeDraggingInfo draggingFormation]):
-        (-[DumpRenderTreeDraggingInfo setDraggingFormation:]):
-        (-[DumpRenderTreeDraggingInfo animatesToDestination]):
-        (-[DumpRenderTreeDraggingInfo setAnimatesToDestination:]):
-        (-[DumpRenderTreeDraggingInfo numberOfValidItemsForDrop]):
-        (-[DumpRenderTreeDraggingInfo setNumberOfValidItemsForDrop:]):
-        (-[DumpRenderTreeDraggingInfo enumerateDraggingItemsWithOptions:forView:classes:searchOptions:usingBlock:]):
-
-2010-10-23  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/48186> Remove unneeded WebHTMLRepresentationInternal.h header
-
-        Reviewed by Sam Weinig.
-
-        The only method defined in WebHTMLRepresentationInternal.h is
-        also defined in WebHTMLRepresentation.h, so use that instead.
-
-        * DumpRenderTree/mac/InternalHeaders/WebKit/WebHTMLRepresentationInternal.h: Removed.
-        * DumpRenderTree/mac/WebArchiveDumpSupport.mm: Switched to use
-        WebHTMLRepresentation.h.
-
-2010-10-23  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r70367.
-        http://trac.webkit.org/changeset/70367
-        https://bugs.webkit.org/show_bug.cgi?id=48176
-
-        It made 8-10 tests crash on Qt bot (Requested by Ossy on
-        #webkit).
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setCustomPolicyDelegateCallback):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setCustomPolicyDelegate):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setCustomPolicyDelegate):
-        * DumpRenderTree/mac/PolicyDelegate.h:
-        * DumpRenderTree/mac/PolicyDelegate.mm:
-        (-[PolicyDelegate webView:decidePolicyForNavigationAction:request:frame:decisionListener:]):
-        (-[PolicyDelegate setPermissive:]):
-        (-[PolicyDelegate setControllerToNotifyDone:]):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setCustomPolicyDelegate):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setCustomPolicyDelegate):
-
-2010-10-22  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        EWS never releases patches which fail to apply
-        https://bugs.webkit.org/show_bug.cgi?id=48171
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-
-2010-10-22  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.
-
-        Make the EWS queues restart themselves more often.
-        This matches the commit-queue.
-
-        * EWSTools/start-queue.sh:
-
-2010-10-22  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue should not pass --quiet to subcommands now that the parent command does the reporting
-        https://bugs.webkit.org/show_bug.cgi?id=48165
-
-        * Scripts/webkitpy/tool/bot/commitqueuetask.py:
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2010-10-22  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        Adding myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-10-20  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Adam Barth and Darin Adler.
-
-        Using the decidePolicyForMIMEType delegate message in an asynchronous manner does not work
-        https://bugs.webkit.org/show_bug.cgi?id=48014
-        <rdar://problem/8202716>
-        
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setCustomPolicyDelegateCallback):
-        Add callIgnoreInDecidePolicyForMIMETypeAfterOneSecond argument.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setCustomPolicyDelegate):
-        Add callIgnoreInDecidePolicyForMIMETypeAfterOneSecond argument.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setCustomPolicyDelegate):
-        Add callIgnoreInDecidePolicyForMIMETypeAfterOneSecond argument.
-
-        * DumpRenderTree/mac/PolicyDelegate.h:
-        * DumpRenderTree/mac/PolicyDelegate.mm:
-        (-[PolicyDelegate webView:decidePolicyForMIMEType:request:frame:decisionListener:]):
-        If _callIgnoreInDecidePolicyForMIMETypeAfterOneSecond is true, call [listener ignore] after one second.
-
-        (-[PolicyDelegate setCallIgnoreInDecidePolicyForMIMETypeAfterOneSecond:]):
-        Update _callIgnoreInDecidePolicyForMIMETypeAfterOneSecond.
-        
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setCustomPolicyDelegate):
-        Add callIgnoreInDecidePolicyForMIMETypeAfterOneSecond argument.
-
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setCustomPolicyDelegate):
-        Add callIgnoreInDecidePolicyForMIMETypeAfterOneSecond argument.
-
-2010-10-22  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Rename the InjectedBundle for TestWebKitAPI to InjectedBundleTestWebKitAPI.bundle
-
-        * TestWebKitAPI/Configurations/InjectedBundle.xcconfig:
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/mac/PlatformUtilitiesMac.mm:
-        (TestWebKitAPI::Util::createInjectedBundlePath):
-
-2010-10-22  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        test-webkitpy fails when passed -v (or any other option)
-
-        Fix port/base_unittest to pass an explicit list of arguments
-        rather than accidentally picking up sys.argv.
-
-        https://bugs.webkit.org/show_bug.cgi?id=48071
-
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-
-2010-10-22  Brian Weinstein  <bweinstein@apple.com>
-
-        Windows build fix. Update the createNewPage callback to account for the new
-        arguments.
-
-        * MiniBrowser/win/BrowserView.cpp:
-        (createNewPage):
-
-2010-10-22  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        WebKit2 needs to pass the current event modifier flags when requesting a new window
-        https://bugs.webkit.org/show_bug.cgi?id=48140
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (createNewPage):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::createOtherPage):
-        Update for new signature for the WKPageCreateNewPageCallback.
-
-2010-10-22  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Just adding a test case.
-
-        The style-queue was not recognizing new patches.  It turns
-        out I had fixed this in an earlier change, but just not
-        deployed to queues.webkit.org.  As part of investigating why it
-        was broken, I wrote a test for my previous change which I'm now landing.
-
-        * QueueStatusServer/model/queues_unittest.py:
-
-2010-10-22  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        EWS does not need to process obsolete patches
-        https://bugs.webkit.org/show_bug.cgi?id=48093
-
-        This was an easy change, but to test it I had to pipe
-        real Attachment objects into the queue testing system.
-        Doing so revealed a whole bunch of bugs in our unit tests,
-        which I fixed as part of this patch.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-         - This is the actual code change.  This will not reduce the
-           backlog in the EWS queues much, but it will make rejections
-           much quicker for obsolete patches or closed bugs.
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-         - Test my new code.
-         - Used a real attachment object and got rid of MockPatch
-         - Shared code between the mac-ews and cr-mac-ews tests.
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-         - Can't use MockPatch anymore.
-         - Removing MockPatch found more bugs here!
-        * Scripts/webkitpy/tool/commands/queuestest.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-         - MockBugzilla should not be a "Mock" object.  Right now tool.bugs()
-           is allowed, but wrong.  Making it not a Mock will make tool.bugs() correctly fail.
-
-2010-10-22  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r70301.
-        http://trac.webkit.org/changeset/70301
-        https://bugs.webkit.org/show_bug.cgi?id=48126
-
-        "Lang attribute layout tests failing" (Requested by satish on
-        #webkit).
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setMockSpeechInputResultCallback):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-
-2010-10-22  Leandro Gracia Gil  <leandrogracia@google.com>
-
-        Reviewed by Jeremy Orlow.
-
-        Added a second parameter to setMockSpeechInputResult for
-        the language used in speech input.
-        https://bugs.webkit.org/show_bug.cgi?id=47089
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setMockSpeechInputResultCallback):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-
-2010-10-21  MORITA Hajime  <morrita@google.com>
-
-        Reviewed by Kent Tamura.
-
-        [Win][DRT] should have LayoutTestController.hasSpellingMarker()
-        https://bugs.webkit.org/show_bug.cgi?id=47885
-
-        - Implemented LayoutTestController.hasSpellingMarker(),
-        - Added fake spellcheck implementation.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/win/EditingDelegate.cpp:
-        (indexOfFirstWordCharacter):
-        (wordLength):
-        (EditingDelegate::checkSpellingOfString):
-        * DumpRenderTree/win/EditingDelegate.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::hasSpellingMarker):
-
-2010-10-21  Mihai Parparita  <mihaip@chromium.org>
-
-        Unreviewed. Re-enable test that was mistakenly disabled by r67974.
-
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests_unittest.py:
-
-2010-10-21  Mihai Parparita  <mihaip@chromium.org>
-
-        Unreviewed fix for rebaseline-chromium-webkit-tests.
-
-        Port.diff_image no longer has a tolerance parameter. Also, use
-        get_option('tolerance') which is safer if the options object doesn't
-        define a tolerance attribute (it doesn't for the one used in
-        rebaseline_chromium_webkit_tests).
-
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-
-2010-10-21  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Add support for --tolerance in NRWT
-        https://bugs.webkit.org/show_bug.cgi?id=47959
-        
-        Add support for the --tolerance flag in NRWT. The Port.diff_image
-        signature shouldn't need a tolerance parameter (it's not set per test),
-        just have ports that use it (currently only WebKitPort) read it from 
-        the options object.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-10-21  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add --suggest-reviewers option to upload to auto-suggest reviewers for your patch
-        https://bugs.webkit.org/show_bug.cgi?id=48088
-
-        This is a first-pass.  Works, but we'll eventually
-        turn this on by default, refine the suggestion algorithm
-        and possibly move it to a different place in the upload step order.
-
-        * Scripts/webkitpy/common/checkout/api.py:
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/commands/upload.py:
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/__init__.py:
-        * Scripts/webkitpy/tool/steps/options.py:
-
-2010-10-21  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        Reviewed by Chris Fleizach.
-
-        [GTK] Segfault while testing accessibility/iframe-bastardization.html
-        https://bugs.webkit.org/show_bug.cgi?id=30123
-
-        Check m_element before actually using it to get the parent.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::parentElement): Add an extra check to
-        make sure m_element points to a valid value before actually using
-        it to get the parent. Also, assert ATK_IS_OBJECT(m_element).
-
-2010-10-21  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Crash evaluating JavaScript string that throws an exception
-        https://bugs.webkit.org/show_bug.cgi?id=48092
-        <rdar://problem/8487657>
-
-        Add a test that evaluates a JavaScript string that throws an exception and check that 
-        the callback is called.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2/EvaluateJavaScript.cpp: Added.
-        (TestWebKitAPI::didRunJavaScript):
-        (TestWebKitAPI::WebKit2_EvaluateJavaScript):
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-
-2010-10-21  Adam Roben  <aroben@apple.com>
-
-        Test that the plugin's HWND is invalidated when NPN_InvalidateRect is
-        called
-
-        Test for <http://webkit.org/b/48086> <rdar://problem/8482944>
-        Silverlight doesn't repaint in WebKit2
-
-        Reviewed by Anders Carlsson.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-        (PluginTest::NPN_InvalidateRect): Added. Calls through to the browser.
-        (executeScript): Added. Asks the browser to evaluate the script.
-
-        (PluginTest::waitUntilDone):
-        (PluginTest::notifyDone):
-        Added. Calls through to layoutTestController.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.h: Added
-        * NPN_InvalidateRect and waitUntilDone/notifyDone.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/win/NPNInvalidateRectInvalidatesWindow.cpp: Added.
-        (TemporaryWindowMover::moveSucceeded):
-        (TemporaryWindowMover::TemporaryWindowMover):
-        (TemporaryWindowMover::~TemporaryWindowMover):
-        This class moves a window on-screen and shows it, then moves it back and hides it.
-
-        (NPNInvalidateRectInvalidatesWindow::NPNInvalidateRectInvalidatesWindow):
-        Initialize our members.
-        (NPNInvalidateRectInvalidatesWindow::~NPNInvalidateRectInvalidatesWindow):
-        Delete our window mover if it hasn't been deleted already.
-        (NPNInvalidateRectInvalidatesWindow::NPP_SetWindow): Subclass the
-        plugin HWND and move the test harness window on screen.
-        (NPNInvalidateRectInvalidatesWindow::wndProc): Call through to onPaint
-        when we get a WM_PAINT message.
-        (NPNInvalidateRectInvalidatesWindow::onPaint): Do the test and tell
-        LayoutTestController we're done.
-        (NPNInvalidateRectInvalidatesWindow::testInvalidateRect): Validate
-        ourselves, invalidate our lower-right quadrant via NPN_InvalidateRect,
-        then check that our HWND's invalid region is the rect that we
-        invalidated.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * Added NPNInvalidateRectInvalidatesWindow.
-
-2010-10-21  Daniel Bates  <dbates@rim.com>
-
-        Add Git-support to do-file-rename
-        https://bugs.webkit.org/show_bug.cgi?id=48015
-
-        Fix tools. Export function scmMoveOrRenameFile so that it can be called from
-        do-file-rename and do-webcore-rename. I inadvertently left this out of the patch.
-
-        * Scripts/VCSUtils.pm:
-
-2010-10-21  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        mac-ews is not properly releasing patches
-        https://bugs.webkit.org/show_bug.cgi?id=48076
-
-        mac-ews overrides process_work_item, so it was not calling
-        release_work_item like the default process_work_item would.
-        To fix this I made all the status-reporting methods just
-        release the patch.  I expect we'll iterate on this design further.
-
-        * Scripts/webkitpy/common/net/statusserver.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2010-10-18  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        [GTK] mathml flaky tests after adding SystemFonts to the theme
-        https://bugs.webkit.org/show_bug.cgi?id=47727
-
-        The Fontconfig setup in the GTK+ now specifically checks for and
-        loads the STIX fonts for MathML tests.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (initializeFonts): Add hooks for loading the STIX fonts specifically.
-
-2010-10-20  Adam Roben  <aroben@apple.com>
-
-        Test that the UI client gets notified when WKView receives a WM_CLOSE
-        message
-
-        Test for <http://webkit.org/b/48044> <rdar://problem/8488446> Pressing
-        Ctrl+W when viewing a full-page PDF destroys the WKView but doesn't
-        close its parent window
-
-        Reviewed by Jon Honeycutt.
-
-        * TestWebKitAPI/Tests/WebKit2/win/WMCloseCallsUIClientClose.cpp: Added.
-        (TestWebKitAPI::close): Record that this function was called.
-        (TestWebKitAPI::WebKit2_WMCloseCallsUIClientClose): Create a WKView,
-        send it a WM_CLOSE message, and test that the UI client's close
-        callback got called. Note that this will hang if the bug is
-        reintroduced; <http://webkit.org/b/48043> covers making TestWebKitAPI
-        able to handle hangs.
-
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj: Added the new test.
-
-2010-10-20  Adam Roben  <aroben@apple.com>
-
-        Make prepare-ChangeLog much faster when using git
-
-        This change also seems to make it detect renames better in some cases.
-
-        Fixes <http://webkit.org/b/48040> prepare-ChangeLog is slow when using
-        git
-
-        Reviewed by David Kilzer.
-
-        * Scripts/prepare-ChangeLog:
-        (statusCommand):
-        (createPatchCommand):
-        Use "-M -C" instead of "-C -C -M" to tell git-diff to detect renames
-        and copies. The two "-C"s were making it read many more files than were
-        necessary.
-
-2010-10-21  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Null frame passed when running alert from UserScript run at document start
-        <rdar://problem/8573809>
-        https://bugs.webkit.org/show_bug.cgi?id=48036
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/InjectedBundleController.cpp:
-        (TestWebKitAPI::InjectedBundleController::didReceiveMessage):
-        (TestWebKitAPI::InjectedBundleController::initializeTestNamed):
-        * TestWebKitAPI/InjectedBundleController.h:
-        * TestWebKitAPI/InjectedBundleTest.h:
-        (TestWebKitAPI::InjectedBundleTest::initialize):
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2/DocumentStartUserScriptAlertCrash.cpp: Added.
-        (TestWebKitAPI::runJavaScriptAlert):
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/DocumentStartUserScriptAlertCrash_Bundle.cpp: Added.
-        (TestWebKitAPI::DocumentStartUserScriptAlertCrashTest::DocumentStartUserScriptAlertCrashTest):
-        (TestWebKitAPI::DocumentStartUserScriptAlertCrashTest::initialize):
-        Add test for invoking an alert during a UserScript run at document start.
-
-2010-10-21  Andreas Kling  <kling@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        TestNetscapePlugIn: Actually call NPP_SetWindow on Unix
-
-        We were just returning NPERR_NO_ERROR previously.
-
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_set_window):
-
-2010-10-21  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/48051> Move macros from DumpRenderTreeMac.h to config.h
-
-        Reviewed by Adam Roben.
-
-        * DumpRenderTree/config.h: Moved macros to here...
-        * DumpRenderTree/mac/DumpRenderTreeMac.h: ...from here.
-        Addresses a FIXME comment from r28419.
-
-2010-10-21  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/48047> Fix warnings found by check-Xcode-source-file-types
-
-        Reviewed by Adam Roben.
-
-        Fixes the following warnings:
-
-            WARNING: Incorrect file type 'sourcecode.cpp.objcpp' for file 'PixelDumpSupport.cpp'.
-            WARNING: Incorrect file type 'sourcecode.cpp.objcpp' for file 'LayoutTestController.cpp'.
-            WARNING: Incorrect file type 'sourcecode.cpp.objcpp' for file 'WorkQueue.cpp'.
-            WARNING: Incorrect file type 'sourcecode.cpp.objcpp' for file 'cg/PixelDumpSupportCG.cpp'.
-            WARNING: Incorrect file type 'sourcecode.cpp.objcpp' for file 'GCController.cpp'.
-            5 issues found for WebKitTools/DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        Removed explicit file type for *.cpp files above to make them
-        match other C++ source files.  This exposed the fact that
-        DumpRenderTreeMac.h was not safe to include in C++ source, which
-        caused PixelDumpSupport.cpp and PixelDumpSupportCG.cpp to fail
-        to build.
-        * DumpRenderTree/PixelDumpSupport.cpp: Adjusted header order.
-        * DumpRenderTree/mac/DumpRenderTreeMac.h: Made safe to include
-        in C++ source files.  Included CoreFoundation/CoreFoundation.h
-        to make sure all CF types were defined.  Removed CFStringRef
-        typedef.
-
-2010-10-21  Adam Roben  <aroben@apple.com>
-
-        Attempt to fix plugins/pass-different-npp-struct.html on GTK.
-
-        See <http://webkit.org/b/47690>.
-
-        * GNUmakefile.am: Added PassDifferentNPPStruct.cpp.
-
-2010-10-21  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [NRWT] Set ImageDiff path on Qt port
-        https://bugs.webkit.org/show_bug.cgi?id=48052
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-
-2010-10-21  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Don't CC authors of flaky tests
-        https://bugs.webkit.org/show_bug.cgi?id=48038
-
-        Some authors found this too annoying.  We'll look for another way to
-        close the flaky test loop.
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2010-10-21  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue should run run-webkit-tests with --no-new-test-results
-        https://bugs.webkit.org/show_bug.cgi?id=47998
-
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-
-2010-10-21  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
-
-        Reviewed by Ojan Vafai.
-
-        [NRWT] Get child process number from an environment variable
-        https://bugs.webkit.org/show_bug.cgi?id=47981
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-10-20  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/47754> New script to verify explicit source file types in Xcode project files
-
-        Reviewed by Darin Adler.
-
-        The script parses an Xcode project file and makes sure the file
-        extension matches the explicit file type set for all source
-        files.  Note that the majority of source files will have their
-        type set by Xcode, so the script doesn't check them since there
-        is no need to second-guess Xcode.
-
-        * Scripts/check-Xcode-source-file-types: Added.  Code borrowed
-        heavily from sort-Xcode-project-file.
-
-2010-10-20  Adam Roben  <aroben@apple.com>
-        
-        Windows build fix
-
-        * TestWebKitAPI/win/PlatformUtilitiesWin.cpp: Added missing #include.
-
-2010-10-20  Adam Roben  <aroben@apple.com>
-
-        Qt test fix
-
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro: Added
-        PassDifferentNPPStruct.cpp.
-
-2010-10-20  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Add ability to test injected bundle API using TestWebKitAPI
-        https://bugs.webkit.org/show_bug.cgi?id=48027
-
-        * TestWebKitAPI/InjectedBundleController.cpp: Added.
-        * TestWebKitAPI/InjectedBundleController.h: Added.
-        Shared main object for bundle functionality.
-
-        * TestWebKitAPI/InjectedBundleMain.cpp: Added.
-        Bundle entry point.
-
-        * TestWebKitAPI/InjectedBundleTest.h: Added.
-        Base class for which the bundle portion of a test derives from. 
-
-        * TestWebKitAPI/PlatformUtilities.h:
-        * TestWebKitAPI/PlatformUtilities.cpp: Added.
-        * TestWebKitAPI/mac/PlatformUtilitiesMac.mm:
-        * TestWebKitAPI/win/PlatformUtilitiesWin.cpp:
-        (TestWebKitAPI::Util::createInjectedBundlePath):
-        (TestWebKitAPI::Util::createURLForResource):
-        (TestWebKitAPI::Util::URLForNonExistentResource):
-        Add helper to create a context with the shared injected bundle,
-        and send the initial message to set up the test.
-
-        * TestWebKitAPI/Configurations/InjectedBundle.xcconfig: Added.
-        * TestWebKitAPI/InjectedBundle-Info.plist: Added.
-        Add mac configuration files.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        Add the new files.
-
-        * TestWebKitAPI/Tests/WebKit2/InjectedBundleBasic.cpp: Added.
-        * TestWebKitAPI/Tests/WebKit2/InjectedBundleBasic_Bundle.cpp: Added.
-        Add a simple initial bundle test.
-
-2010-10-20  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Fixing /release-patch url used by the EWS bots.
-
-        EWS should test patches with r+
-        https://bugs.webkit.org/show_bug.cgi?id=35460
-
-        * Scripts/webkitpy/common/net/statusserver.py:
-         - I changed the URL during development, and 404s are
-         intentionally silenced during release_patch.
-
-2010-10-14  Adam Roben  <aroben@apple.com>
-
-        Test that passing a different NPP struct back to the browser doesn't
-        cause an assertion failure
-
-        Test for <http://webkit.org/b/47690> <rdar://problem/8553020>
-        Assertion failure in NetscapePlugin::fromNPP when using Shockwave in
-        WebKit2
-
-        Reviewed by John Sullivan.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/PassDifferentNPPStruct.cpp: Copied from WebKitTools/DumpRenderTree/TestNetscapePlugIn/Tests/win/GetValueNetscapeWindow.cpp.
-        (PassDifferentNPPStruct::PassDifferentNPPStruct): Initialize our
-        members.
-        (PassDifferentNPPStruct::NPP_SetWindow): Pass a different NPP to the
-        browser than the one it gave us in NPP_New and see if it works.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        Added PassDifferentNPPStruct.
-
-2010-10-19  Adam Roben  <aroben@apple.com>
-
-        Gently nudge old-run-webkit-tests toward working with Win32 Perl
-
-        This makes old-run-webkit-tests able to build DRT and find all the
-        tests to run. It even invokes DRT and passes it the list of tests. But
-        DRT ends up hung blocking on I/O.
-
-        Fixes <http://webkit.org/b/47961> Get old-run-webkit-tests mostly
-        working with Win32 Perl
-
-        Reviewed by David Kilzer.
-
-        * Scripts/old-run-webkit-tests:
-          - Use File::Spec instead of manually concatenating paths
-          - Use dirname instead of manually stripping off the base name
-          - Use isCygwin/isWindows/isAppleWinWebKit more judiciously
-          - Explicitly invoke Perl when running Perl scripts
-          - Quote paths when using them in regular expressions to allow them
-            to include characters that have special meanings in regular
-            expressions
-
-        * Scripts/run-webkit-tests: Use File::Spec instead of manually
-        concatenating paths.
-
-        * Scripts/webkitdirs.pm:
-          - Remove the unused $windowsTmpPath variable
-          - Use isCygwin/isWindows/isAppleWinWebKit more judiciously
-          - Only pass paths to cygpath when using Cygwin Perl
-          - Only use pdevenv when using Cygwin Perl, for now
-
-2010-10-20  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Martin Robinson.
-
-        Add Git-support to do-file-rename
-        https://bugs.webkit.org/show_bug.cgi?id=48015
-
-        Also, abstracts the SCM move/rename functionality in do-file-rename and
-        do-webcore-rename into a common function VCSUtils::scmMoveOrRenameFile().
-
-        Currently, do-file-rename is hard coded to assume the SCM is Subversion.
-        Instead, we should abstract the rename logic to be SCM-independent. This
-        will allow us to add Git support as well move such functionality into
-        our SCM library VCSUtils, where it can be shared by do-webcore-rename.
-
-        * Scripts/VCSUtils.pm:
-          - Added function scmMoveOrRenameFile.
-        * Scripts/do-file-rename: Modified to call VCSUtils::scmMoveOrRenameFile().
-        * Scripts/do-webcore-rename: Ditto.
-
-2010-10-20  Adam Roben  <aroben@apple.com>
-
-        Fix old-run-webkit-tests when there's a space in the path to DRT
-
-        Reviewed by Jon Honeycutt.
-
-        * Scripts/old-run-webkit-tests: Quote the path to DRT before executing
-        it.
-
-2010-10-20  Kenneth Russell  <kbr@google.com>
-
-        Reviewed by Dimitri Glazkov.
-
-        Regression in chromium_gpu_unittests after r70175
-        https://bugs.webkit.org/show_bug.cgi?id=48008
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-
-2010-10-20  Kenneth Russell  <kbr@google.com>
-
-        Reviewed by James Robinson.
-
-        chromium_gpu port of new-run-webkit-tests must do Linux -> Win expectations fallback
-        https://bugs.webkit.org/show_bug.cgi?id=48005
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-
-2010-10-20  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        webkit-patch doesn't get along with git rm
-        https://bugs.webkit.org/show_bug.cgi?id=47940
-
-        Turns out we need to pass "--" to tell git this is a path.
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-
-2010-10-20  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Antonio Gomes.
-
-        [Qt] Fix layoutTestController.getJsObjectCount
-
-        Qt Bridge doesn't know size_t so pass result as unsigned int.
-
-        Unskip fast/dom/gc-10.html
-
-        https://bugs.webkit.org/show_bug.cgi?id=47931
-
-        * DumpRenderTree/qt/GCControllerQt.cpp:
-        (GCController::getJSObjectCount):
-        * DumpRenderTree/qt/GCControllerQt.h:
-
-2010-10-20  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r70149.
-        http://trac.webkit.org/changeset/70149
-        https://bugs.webkit.org/show_bug.cgi?id=47989
-
-        "Build breaks in mac and win" (Requested by satish on
-        #webkit).
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setMockSpeechInputResultCallback):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-
-2010-10-20  Leandro Gracia Gil  <leandrogracia@google.com>
-
-        Reviewed by Jeremy Orlow.
-
-        Added a second parameter to setMockSpeechInputResult for
-        the language used in speech input.
-        https://bugs.webkit.org/show_bug.cgi?id=47089
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setMockSpeechInputResultCallback):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setMockSpeechInputResult):
-
-2010-10-19  Adam Roben  <aroben@apple.com>
-
-        Teach update-webkit-support-libs about the new versioning of
-        WebKitSupportLibrary
-
-        Fixes <http://webkit.org/b/47915> update-webkit-support-libs should
-        check version numbers instead of modification times
-
-        Reviewed by Sam Weinig.
-
-        * Scripts/update-webkit-support-libs: Fetch the expected version
-        number from developer.apple.com, then compare with the version number
-        of the extracted library and of the zipped library to see if anything
-        needs to be done. Removed code that tracked the modified timestamp of
-        the library, as it is no longer needed.
-
-2010-10-19  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        EWS should test patches with r+
-        https://bugs.webkit.org/show_bug.cgi?id=35460
-
-        * QueueStatusServer/handlers/submittoews.py:
-        * QueueStatusServer/model/queues.py:
-        * Scripts/webkitpy/tool/bot/patchcollection.py: Removed.
-        * Scripts/webkitpy/tool/bot/patchcollection_unittest.py: Removed.
-        * Scripts/webkitpy/tool/commands/queues.py:
-
-2010-10-19  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Teach feeder-queue how to feed the EWS bots
-        https://bugs.webkit.org/show_bug.cgi?id=47943
-
-        queues.webkit.org already knew how to accept EWS submissions
-        via /submit-to-ews.  This teaches the feeder queue how to post
-        to that page with any new r? patches it sees.
-
-        * QueueStatusServer/model/activeworkitems_unitest.py: Added.
-         - More unit testing is always a good thing.
-        * Scripts/webkitpy/common/net/bugzilla.py:
-        * Scripts/webkitpy/common/net/statusserver.py:
-        * Scripts/webkitpy/tool/bot/feeders.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-10-19  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, just fixing test-webkitpy.  I'm really on a roll today.
-
-        commit-queue gets stuck when release-patch returns 404
-        https://bugs.webkit.org/show_bug.cgi?id=47935
-
-        Fix test-webkitpy and unittest NetworkTransaction.
-
-        * Scripts/webkitpy/common/net/networktransaction.py:
-        * Scripts/webkitpy/common/net/networktransaction_unittest.py:
-
-2010-10-19  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.
-
-        commit-queue gets stuck when release-patch returns 404
-        https://bugs.webkit.org/show_bug.cgi?id=47935
-
-        Turns out ClientForm gets upset if passed an int() instead of a string type.
-        Yay for untestable code.
-
-        * Scripts/webkitpy/common/net/statusserver.py:
-
-2010-10-19  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Will get Adam's commentary after his meeting
-        for now this gets the commit-cluster back running.
-
-        commit-queue gets stuck when release-patch returns 404
-        https://bugs.webkit.org/show_bug.cgi?id=47935
-
-        I taught NetworkTransaction the basics of 404 handling.
-        We'll want to go back and teach it how to handle urllib2 404's too
-        and then deploy it to the places that want it.
-
-        * QueueStatusServer/handlers/releasepatch.py:
-        * Scripts/webkitpy/common/net/buildbot.py:
-        * Scripts/webkitpy/common/net/networktransaction.py:
-        * Scripts/webkitpy/common/net/statusserver.py:
-
-2010-10-19  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Fixing typos in my previous commit.
-
-        Make patch release explicit and not a magic part of "retry" status
-        https://bugs.webkit.org/show_bug.cgi?id=47909
-
-        All of these typos again due to our inability to unit
-        test much of this code.  I added one unit test where
-        possible.  activeworkitems_unittest.py will be in a separate patch.
-
-        * QueueStatusServer/handlers/releasepatch.py:
-        * QueueStatusServer/main.py:
-        * QueueStatusServer/model/activeworkitems.py:
-        * QueueStatusServer/model/workitems.py:
-        * QueueStatusServer/model/workitems_unittest.py:
-        * QueueStatusServer/templates/releasepatch.html:
-        * Scripts/webkitpy/common/net/statusserver.py:
-
-2010-10-19  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [chromium] Use webkit's TestNetscapePlugIn in DRT mac
-        https://bugs.webkit.org/show_bug.cgi?id=47850
-
-        * DumpRenderTree/chromium/TestNetscapePlugIn/Info.plist: Added. Forked
-            because we're going to name our plugin WebKitTestNetscapePlugIn
-            temporarily until the chromium forked plugin goes away.
-
-2010-10-19  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Make patch release explicit and not a magic part of "retry" status
-        https://bugs.webkit.org/show_bug.cgi?id=47909
-
-        This moves us another step closer to running r+ patches on the EWS bots.
-        Currently all bots just spam /update-work-items with their list of current
-        work items.  queues.webkit.org uses that data for display.  As part of making
-        the EWS run r+ patches, we're moving the official list of patches-to-process
-        into the server, and feeding them out to bots one at a time.  We need to be
-        able to remove patches from the queues one at a time instead of just spamming
-        /update-work-items with a new complete list.  That's what this patch adds.
-
-        * QueueStatusServer/handlers/nextpatch.py:
-        * QueueStatusServer/handlers/queuestatus.py:
-        * QueueStatusServer/handlers/releasepatch.py: Added.
-        * QueueStatusServer/handlers/statusbubble_unittest.py:
-         - Fix a typo causing test failure.  This was not caught by the bots
-           because they don't have AppEngineLauncher installed and thus don't run
-           the QueueStatusServer tests.
-        * QueueStatusServer/handlers/updatestatus.py:
-        * QueueStatusServer/model/activeworkitems.py:
-        * QueueStatusServer/templates/releasepatch.html: Added.
-        * Scripts/webkitpy/common/net/statusserver.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-10-19  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        cr-mac bubble has caused status bubbles to wrap
-        https://bugs.webkit.org/show_bug.cgi?id=47928
-
-        We now have too many EWSes to fit in the bugs.webkit.org
-        status-bubble iframe when more than a couple EWS builds are pending.
-        To fix this I've reduced the space taken up by queue position,
-        and also moved cr-mac to the end of the list (since it's going to be
-        triple-digits for a while).
-
-        * QueueStatusServer/model/queues.py:
-        * QueueStatusServer/templates/statusbubble.html:
-
-2010-10-19  Kenneth Russell  <kbr@google.com>
-
-        Reviewed by David Levin.
-
-        chromium_gpu port of new-run-webkit-tests must search chromium-gpu directory for expectations
-        https://bugs.webkit.org/show_bug.cgi?id=47874
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-
-2010-10-19  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [chromium] DumpRenderTree shouldn't put '.' in include path
-        https://bugs.webkit.org/show_bug.cgi?id=47877
-
-        Fix include paths.
-
-        * DumpRenderTree/chromium/AccessibilityController.cpp:
-        * DumpRenderTree/chromium/AccessibilityUIElement.cpp:
-        * DumpRenderTree/chromium/AccessibilityUIElement.h:
-        * DumpRenderTree/chromium/CppBoundClass.cpp:
-        * DumpRenderTree/chromium/CppVariant.cpp:
-        * DumpRenderTree/chromium/CppVariant.h:
-        * DumpRenderTree/chromium/DRTDevToolsAgent.cpp:
-        * DumpRenderTree/chromium/DRTDevToolsAgent.h:
-        * DumpRenderTree/chromium/DRTDevToolsCallArgs.h:
-        * DumpRenderTree/chromium/DRTDevToolsClient.cpp:
-        * DumpRenderTree/chromium/DRTDevToolsClient.h:
-        * DumpRenderTree/chromium/EventSender.cpp:
-        * DumpRenderTree/chromium/EventSender.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/MockSpellCheck.cpp:
-        * DumpRenderTree/chromium/NotificationPresenter.cpp:
-        * DumpRenderTree/chromium/NotificationPresenter.h:
-        * DumpRenderTree/chromium/PlainTextController.cpp:
-        * DumpRenderTree/chromium/Task.cpp:
-        * DumpRenderTree/chromium/TestNavigationController.h:
-        * DumpRenderTree/chromium/TestShell.cpp:
-        * DumpRenderTree/chromium/TestWebWorker.h:
-        * DumpRenderTree/chromium/TextInputController.cpp:
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        * DumpRenderTree/chromium/WebPreferences.h:
-        * DumpRenderTree/chromium/WebThemeEngineDRT.cpp:
-        * DumpRenderTree/chromium/WebThemeEngineDRT.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2010-10-19  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Dan Bernstein.
-
-        Need to include WKErrorRef in the WKPageDidFail... functions
-        https://bugs.webkit.org/show_bug.cgi?id=47871
-
-        Update tools for new parameter in failure callbacks.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (didFailProvisionalLoadWithErrorForFrame):
-        (didFailLoadWithErrorForFrame):
-        (-[BrowserWindowController updateProvisionalURLForFrame:]):
-        * TestWebKitAPI/Tests/WebKit2/FailedLoad.cpp:
-        (TestWebKitAPI::didFailProvisionalLoadWithErrorForFrame):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::didFailProvisionalLoadWithErrorForFrame):
-        (WTR::InjectedBundlePage::didFailLoadWithErrorForFrame):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-
-2010-10-19  Luiz Agostini  <luiz.agostini@openbossa.org>
-
-        Reviewed by Antti Koivisto.
-
-        [Qt] WebKit2 MacOS build fix
-        https://bugs.webkit.org/show_bug.cgi?id=47897
-
-        Qt WebKit2 MacOS build fix.
-
-        * WebKitTestRunner/PlatformWebView.h:
-        * WebKitTestRunner/qt/TestControllerQt.cpp:
-
-2010-10-19  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        webkit-patch stats the filesystem too many times
-        https://bugs.webkit.org/show_bug.cgi?id=47883
-
-        This patch attempts to cache the list of changed files more agressively
-        and to use that list to compute the diff instead of stating the file
-        system again.
-
-        * Scripts/webkitpy/common/checkout/api.py:
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/abstractstep.py:
-        * Scripts/webkitpy/tool/steps/editchangelog.py:
-        * Scripts/webkitpy/tool/steps/preparechangelog.py:
-
-2010-10-19  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/47741> Make sort-Xcode-project-file a little more friendly
-
-        Reviewed by Darin Adler.
-
-        * Scripts/sort-Xcode-project-file:
-        - Don't print an error message about missing arguments when
-          -h|--help is used.
-        - Allow Xcode project files to be specified as Project.xcodeproj
-          instead of Project.xcodeproj/project.pbxproj.
-
-2010-10-18  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] QtTestBrowser: Prevent calling load() directly from loadFinished() in robot mode.
-        https://bugs.webkit.org/show_bug.cgi?id=47809
-
-        Connecting a call to load from the loadFinished signal can cause
-        re-entrance crashes in WebCore. This patch uses a timer to do so,
-        also giving some time to subsequent frames to finish loading.
-
-        * QtTestBrowser/urlloader.cpp:
-        (UrlLoader::UrlLoader):
-        (UrlLoader::loadNext):
-        (UrlLoader::checkIfFinished):
-        (UrlLoader::frameLoadStarted):
-        (UrlLoader::frameLoadFinished):
-        * QtTestBrowser/urlloader.h:
-
-2010-10-19  Sergio Villar Senín  <svillar@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] http/history tests are failing
-        https://bugs.webkit.org/show_bug.cgi?id=36173
-
-        Clear the history each time a test is run. Return the actual
-        history item count when calling
-        LayoutTestController::webHistoryItemCount
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::webHistoryItemCount):
-
-2010-10-18  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add Chromium Mac EWS to the list of queues at queues.webkit.org
-        https://bugs.webkit.org/show_bug.cgi?id=47878
-
-        * QueueStatusServer/model/queues.py:
-
-2010-10-18  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        queues.webkit.org/next_patch is always 404
-        https://bugs.webkit.org/show_bug.cgi?id=47881
-
-        With the addition of the Queue class, I changed most of the
-        code to lookup WorkItems using get_or_insert with a key_name
-        instead of WorkItems.all().filter(queue_name=).
-        Because the new get_or_insert code uses an explicit key_name
-        (which is obviously different from the previously autogenerated
-        ones), there were new WorkItem records created for each queue.
-        However, some parts of the code still use WorkItems.all().filter,
-        thus some parts were getting the new record and some parts the old record.
-
-        The same basic bug was occurring with ActiveWorkItems, because I
-        changed the key_name for that class as well.
-
-        To fix this I've moved more of the code over to using Queue.*work_items.
-        I've also enabled the datastore_admin (new in GAE 1.3.8) so that
-        we can go delete the old WorkItems records.
-        I also changed remote_api to use the new builtin: syntax (also added in GAE 1.3.8).
-
-        * QueueStatusServer/app.yaml:
-        * QueueStatusServer/handlers/queuestatus.py:
-        * QueueStatusServer/handlers/recentstatus.py:
-        * QueueStatusServer/handlers/updatestatus.py:
-        * QueueStatusServer/handlers/updateworkitems.py:
-
-2010-10-18  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Correct a bunch of typos in QueueStatusServer
-        https://bugs.webkit.org/show_bug.cgi?id=47880
-
-        These are all due to our complete lack of unit testing in QueueStatusServer.
-        I added a couple unit tests to cover a few of these fixes, but most of these
-        are still only caught by actually running the application.
-
-        * QueueStatusServer/handlers/nextpatch.py:
-        * QueueStatusServer/handlers/statusbubble.py:
-        * QueueStatusServer/handlers/statusbubble_unittest.py: Added.
-        * QueueStatusServer/handlers/updateworkitems.py:
-        * QueueStatusServer/model/attachment.py:
-        * QueueStatusServer/model/queuepropertymixin.py:
-        * QueueStatusServer/model/queuepropertymixin_unittest.py:
-        * QueueStatusServer/model/workitems.py:
-        * QueueStatusServer/model/workitems_unittest.py: Added.
-
-2010-10-18  Adam Barth  <abarth@webkit.org>
-
-        Disable this test because it's failing on the bots and the authors
-        aren't around to fix it.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-10-18  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        CC authors of flaky tests when the commit-queue hits a flaky test
-        https://bugs.webkit.org/show_bug.cgi?id=47872
-
-        * Scripts/webkitpy/common/checkout/api.py:
-        * Scripts/webkitpy/common/net/layouttestresults.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-10-18  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Make it possible to run a chromium-mac-ews builder
-        https://bugs.webkit.org/show_bug.cgi?id=47876
-
-        Since we can't run Mac OS X in a VM, we need to only run committer patches.
-        There was a multiple inheritance problem which was holding this patch back,
-        but I decided to just ignore the problem and go with a functional hack for now.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-
-2010-10-18  Kenneth Russell  <kbr@google.com>
-
-        Reviewed by Tony Chang.
-
-        Regression in run_webkit_tests_unittest from r70017
-        https://bugs.webkit.org/show_bug.cgi?id=47875
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-10-18  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Implement webkit-patch suggest-reviewers
-        https://bugs.webkit.org/show_bug.cgi?id=47866
-
-        * Scripts/webkitpy/common/checkout/api.py:
-            - The main logic.  We look at the last five changes to each
-              modified (non-ChangeLog) file and collect up the reviewers of
-              those changes as well as the authors of those changes who are
-              reviewers.
-        * Scripts/webkitpy/common/checkout/api_unittest.py:
-            - Test the logic with some fun mocks.
-        * Scripts/webkitpy/common/checkout/scm.py:
-            - Fix a bug when you have local git commits.
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-            - Test that the bug is fixed.
-        * Scripts/webkitpy/tool/commands/queries.py:
-            - Add the query.
-
-2010-10-18  Kenneth Russell  <kbr@google.com>
-
-        Reviewed by Eric Seidel.
-
-        new-run-webkit-tests produces corrupt PNG baselines on Windows
-        https://bugs.webkit.org/show_bug.cgi?id=47867
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-
-2010-10-18  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Make it possible to submit patches to the EWS bots
-        https://bugs.webkit.org/show_bug.cgi?id=47869
-
-        * QueueStatusServer/handlers/nextpatch.py:
-         - Move more logic into Queue, so that it can be shared with SubmitToEWS.
-        * QueueStatusServer/handlers/queuestatus.py:
-         - Fix two typos from a previous commit.
-        * QueueStatusServer/handlers/submittoews.py: Added.
-        * QueueStatusServer/handlers/updatestatus.py:
-         - Use the new is_retry_request method to share this (hacky) code with SubmitToEWS
-        * QueueStatusServer/main.py:
-         - Add /submit-to-ews
-        * QueueStatusServer/model/queuepropertymixin.py:
-         - Fix circular imports caused by adding Queue.work_items()
-        * QueueStatusServer/model/queues.py:
-         - Add work_items() and active_work_items()
-        * QueueStatusServer/model/queuestatus.py:
-        * QueueStatusServer/model/workitems.py:
-         - Add transaction-safe add/remove methods.
-        * QueueStatusServer/templates/submittoews.html: Added.
-
-2010-10-18  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Deploy Queue class in more places throughout QueueStatusServer
-        https://bugs.webkit.org/show_bug.cgi?id=47855
-
-        I also caught two typos from the previous change.  Unfortunately
-        I don't yet know how to unittest request handlers yet.
-
-        * QueueStatusServer/handlers/dashboard.py:
-        * QueueStatusServer/handlers/statusbubble.py:
-        * QueueStatusServer/handlers/updateworkitems.py:
-        * QueueStatusServer/model/activeworkitems.py:
-        * QueueStatusServer/model/attachment.py:
-        * QueueStatusServer/model/queuepropertymixin.py: Added.
-        * QueueStatusServer/model/queuepropertymixin_unittest.py: Added.
-        * QueueStatusServer/model/queuestatus.py:
-        * QueueStatusServer/model/workitems.py:
-
-2010-10-18  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        scm.py should be able tell us what revisions made changes to a given file
-        https://bugs.webkit.org/show_bug.cgi?id=47863
-
-        Look again, your SCM.py can now log files.
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-
-2010-10-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Siedel.
-
-        new-run-webkit-tests: clean up the options-parsing code in the port
-        classes.
-        
-        This change modifies the Port interface to have a get_option() and
-        set_option_default() method for accessing the options argument
-        passed to the constructor. If the constructor is not passed an
-        options argument, we default to a MockOptions() argument from
-        mocktool, which has the same semantics we want.
-
-        Note that there is a disadvantage to port.get_option('foo') over
-        port._options.foo, which is that you lose some of the checking
-        for whether 'foo' is set (typos result in the default value, not
-        an exception being raised. This is desired in this case, since the
-        Port class is not allowed to assume that options does have any
-        particular values set, and so this change ensures that all of
-        the subclasses are following the same, intended, logic.
-
-        Arguably this is the wrong semantics to have, and the Port
-        classes should be able to assume a default set of
-        attributes/arguments, but that change will need to wait for a
-        different CL where we can modify new-run-webkit-tests to pull a
-        list of arguments from the port factory routines.
-
-        Also, add unit tests for webkitpy.tool.mocktool.MockOptions .
-
-        https://bugs.webkit.org/show_bug.cgi?id=47510
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/dryrun.py:
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests_unittest.py:
-        * Scripts/webkitpy/tool/mocktool_unittest.py: Added.
-
-2010-10-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Re-submit a revised version of r69638 - enabling new-run-webkit-tests
-        under cygwin. The initial version had a bug in base:uri_to_test_name
-        that was causing tests to fail. This version corrects that bug, but
-        also makes the code safer by calling cygpath more reliably, and
-        leaving a long-running cygpath process open.
-
-        This patch also corrects a couple of minor bugs in http_lock_unittest,
-        chromium_unittest, and dedpulicate_tests_unittest that showed up
-        while testing this.
-
-        https://bugs.webkit.org/show_bug.cgi?id=47220
-
-        * Scripts/webkitpy/common/system/path.py:
-        * Scripts/webkitpy/common/system/path_unittest.py:
-        * Scripts/webkitpy/layout_tests/deduplicate_tests_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/http_lock_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-10-18  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add Queue class and add minimal unittesting of QueueStatusServer code
-        https://bugs.webkit.org/show_bug.cgi?id=47847
-
-        * QueueStatusServer/handlers/dashboard.py:
-        * QueueStatusServer/handlers/queuestatus.py:
-        * QueueStatusServer/handlers/recentstatus.py:
-        * QueueStatusServer/handlers/statusbubble.py:
-        * QueueStatusServer/handlers/updateworkitems.py:
-        * QueueStatusServer/model/attachment.py:
-        * QueueStatusServer/model/queues.py:
-        * QueueStatusServer/model/queues_unittest.py: Added.
-        * QueueStatusServer/model/svnrevision.py:
-        * Scripts/test-webkitpy:
-        * Scripts/webkitpy/test/main.py:
-
-2010-10-18  Anders Carlsson  <andersca@apple.com>
-
-        Fix build.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (handleEventCarbon):
-
-2010-10-18  Stuart Morgan  <stuartmorgan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Switch to using the new Carbon NPAPI event declarations, and remove
-        the old ones.
-
-        https://bugs.webkit.org/show_bug.cgi?id=40784
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (handleEventCarbon):
-
-2010-10-18  David Levin  <levin@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        check-webkit-style should treat the GObject binding directory like other GTK directories.
-        https://bugs.webkit.org/show_bug.cgi?id=47796
-
-        * Scripts/webkitpy/style/checker.py: Added the GObject binding directory
-        with the other gtk directories (and fixed typo).
-
-2010-10-18  David Levin  <levin@chromium.org>
-
-        Reviewed by Oliver Hunt.
-
-        check-webkit-style needs to ignore underscores in opcode names and vm_throw
-        https://bugs.webkit.org/show_bug.cgi?id=47789
-
-        * Scripts/webkitpy/style/checker.py: Added the exception for the assembler directory.
-        * Scripts/webkitpy/style/checkers/cpp.py: Added special cased names.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Added unit tests for the special cases.
-
-2010-10-18  MORITA Hajime  <morrita@google.com>
-
-        Reviewed by Kent Tamura.
-
-        TextInputController.hasSpellingMarkers() should be owned by LayoutTestController
-        https://bugs.webkit.org/show_bug.cgi?id=47659
-        
-        Moved hasSpellingMarkers() from TextInputController to
-        LayoutTestController.  Currently the implementation is available
-        only for Mac and for Chromium.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (hasSpellingMarkerCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::hasSpellingMarker):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/TextInputController.cpp:
-        (TextInputController::TextInputController):
-        (TextInputController::makeAttributedString):
-        * DumpRenderTree/chromium/TextInputController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::hasSpellingMarker):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::hasSpellingMarker):
-        * DumpRenderTree/mac/TextInputController.m:
-        (+[TextInputController isSelectorExcludedFromWebScript:]):
-        (+[TextInputController webScriptNameForSelector:]):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::hasSpellingMarker):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::hasSpellingMarker):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::hasSpellingMarker):
-
-2010-10-18  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by David Levin.
-
-        commit-queue's flaky test notice is very Pythony
-        https://bugs.webkit.org/show_bug.cgi?id=47790
-
-        This patch make the list of tests delimted by \n instead of just
-        converting the array to a string.
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2010-10-14  Antonio Gomes  <agomes@rim.com>
-
-        Reviewed by Martin Robinson and Xan Lopez.
-
-        [Gtk]: DRT does not support frame flattening testing
-        https://bugs.webkit.org/show_bug.cgi?id=38650
-
-        Implement DRT's support for toggling on/off frame flattening
-        support.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setFrameFlatteningEnabled):
-
-2010-10-15  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Siedel.
-
-        mocktool.MockOptions is inheriting from Mock, which has the side
-        effect of defaulting any attribute to another MockObject. So,
-        MockOptions().foo would always evaluate to true. This was
-        covering over bugs in the unit tests, and is probably the wrong
-        default behavior for anything attempting to mock out the options
-        argument returned from optparse.parse_args().
-
-        This patch changes the default behavior. The new MockOptions()
-        class takes an optional list of keyword parameters to set; this
-        patch doesn't use that feature but the fix for bug 47510 will.
-
-        Also, this patch just fills in the default values necessary to
-        get all of the tests to pass; I didn't stare at each test by
-        hand to determine the "right" values. We can either fix that in
-        subsequent patches or let me know if we want to do that now (and
-        give me some guidance on what those values might want to be).
-
-        https://bugs.webkit.org/show_bug.cgi?id=47709
-
-        * Scripts/webkitpy/tool/commands/commandtest.py:
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-        * Scripts/webkitpy/tool/steps/updatechangelogswithreview_unittest.py:
-
-2010-10-15  Simon Fraser  <simon.fraser@apple.com>
-
-        Fix the build; need to add new slot to PageUIClient callbacks.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::createOtherPage):
-        (WTR::TestController::initialize):
-
-2010-10-15  Simon Fraser  <simon.fraser@apple.com>
-
-        Add Matt Delaney to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-10-15  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [chromium] compile TestNetscapePlugIn on Chromium mac
-        https://bugs.webkit.org/show_bug.cgi?id=47633
-
-        * DumpRenderTree/DumpRenderTree.gypi: files to compile
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp: Use ifdef because gcc was complaining
-        (NP_GetEntryPoints):
-        (NPP_New):
-        (NPP_Destroy):
-        (NPP_HandleEvent):
-        (NPP_GetValue):
-        * DumpRenderTree/chromium/TestNetscapePlugIn/ForwardingHeaders/WebKit/npapi.h: Added.
-        * DumpRenderTree/chromium/TestNetscapePlugIn/ForwardingHeaders/WebKit/npfunctions.h: Added.
-        * DumpRenderTree/chromium/TestNetscapePlugIn/ForwardingHeaders/WebKit/npruntime.h: Added.
-
-2010-10-15  Leandro Pereira  <leandro@profusion.mobi>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        build-webkit: Should die when make fails when build a CMake project
-        https://bugs.webkit.org/show_bug.cgi?id=47726
-
-        * Scripts/webkitdirs.pm: If make fails, die immediately.
-
-2010-10-15  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r69809.
-        http://trac.webkit.org/changeset/69809
-        https://bugs.webkit.org/show_bug.cgi?id=47725
-
-        Broke chromium mac compile (Requested by japhet on #webkit).
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NP_GetEntryPoints):
-        (NPP_New):
-        (NPP_Destroy):
-        (NPP_HandleEvent):
-        (NPP_GetValue):
-        * DumpRenderTree/chromium/TestNetscapePlugIn/ForwardingHeaders/WebKit/npapi.h: Removed.
-        * DumpRenderTree/chromium/TestNetscapePlugIn/ForwardingHeaders/WebKit/npfunctions.h: Removed.
-        * DumpRenderTree/chromium/TestNetscapePlugIn/ForwardingHeaders/WebKit/npruntime.h: Removed.
-
-2010-10-15  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        test-webkitpy fails on Linux
-        https://bugs.webkit.org/show_bug.cgi?id=47713
-
-        The old code failed on Linux because the MacPort tries to read
-        something out of platform that doesn't make sense on Linux.
-
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-10-14  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] WTR is sloooow
-        https://bugs.webkit.org/show_bug.cgi?id=47695
-
-        * WebKitTestRunner/qt/TestControllerQt.cpp:
-        Change the timer interval of RunUntilConditionLoop from
-        50 milliseconds to 1 to avoid wasting time after the 
-        test had been finished.
-
-2010-10-14  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, just fixing an exception seen on the commit-queue.
-
-        I should have unit tested this function before.
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2010-10-14  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue should not fail patches due to flaky tests
-        https://bugs.webkit.org/show_bug.cgi?id=47647
-
-        This patch makes it so that the *same* flaky test has to fail
-        twice in a row to have a false negative from a flaky test.
-
-        If different flaky tests fail (or if a test fails and then passes
-        in a second run) then we will warn in the bug that we encountered
-        a flaky test.
-
-        This patch grew to include moving port off of steps onto tool
-        (which Adam wrote and then I integrated), as well as removing the
-        use of tool from CommitQueueTask.
-
-        * Scripts/webkitpy/common/config/ports.py:
-         - Added a layout_test_results_path method.  This covers old-run-webkit-tests
-           but doesn't cover NRWT.  This is probably not the long term solution, but
-           putting this knowledge on port makes more sense than in LayoutTestResults.
-        * Scripts/webkitpy/common/net/buildbot.py:
-         - LayoutTestResults shouldn't know how to fetch from the network, make
-           the Build code do that instead.
-        * Scripts/webkitpy/common/net/buildbot_unittest.py:
-         - Code style fix.
-        * Scripts/webkitpy/common/net/layouttestresults.py:
-         - Remove code for reading from the network.
-        * Scripts/webkitpy/common/net/layouttestresults_unittest.py:
-         - Test the new entrypoint.
-        * Scripts/webkitpy/tool/bot/commitqueuetask.py:
-         - Make the delegate interface explicit.
-         - Remove the _tool member, since using the delegate for
-           everything is cleaner.
-         - Teach the testing logic how to deal with flaky tests.
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-         - Update to match the CommitQueueTask changes.
-        * Scripts/webkitpy/tool/commands/queues.py:
-         - Use the new CommitQueueTaskDelegate interface.
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-         - Fix the SecondThoughtsCommitQueue test which was broken.
-         - Add a new test to make sure the flaky test reporting works.
-        * Scripts/webkitpy/tool/main.py:
-         - Store the port on the tool object.
-        * Scripts/webkitpy/tool/mocktool.py:
-         - Add a port() accessor to MockTool
-        * Scripts/webkitpy/tool/steps/abstractstep.py:
-         - Move port() off of Step and onto Tool.
-        * Scripts/webkitpy/tool/steps/build.py:
-        * Scripts/webkitpy/tool/steps/preparechangelog.py:
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-         - Two tests with the same name!  only the latter was being run.
-        * Scripts/webkitpy/tool/steps/update.py:
-
-2010-10-14  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        new-run-webkit-tests will now handle missing Ruby installs (or
-        missing PrettyPatch scripts) more cleanly - previously this
-        would be detected when we actually tried to create the diff, and
-        the error message was obscure. Now we'll log a warning up front
-        and otherwise be silent.
-
-        This change also refactors some global variables to be class or
-        instance variables to be slightly more testable and more
-        modular. There are no cases where we create lots of port objects
-        and can't afford to test for configurations repeatedly, so
-        there's no performance concern here.
-
-        https://bugs.webkit.org/show_bug.cgi?id=47466
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2010-10-08  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] Form controls do not respect GTK+ font size
-        https://bugs.webkit.org/show_bug.cgi?id=47134
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (initializeGtkFontSettings): Initialize the font control size when running
-        DumpRenderTree to a standard value.
-
-2010-10-14  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [chromium] compile TestNetscapePlugIn on Chromium mac
-        https://bugs.webkit.org/show_bug.cgi?id=47633
-
-        * DumpRenderTree/DumpRenderTree.gypi: files to compile
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp: Use ifdef because gcc was complaining
-        (NP_GetEntryPoints):
-        (NPP_New):
-        (NPP_Destroy):
-        (NPP_HandleEvent):
-        (NPP_GetValue):
-        * DumpRenderTree/chromium/TestNetscapePlugIn/ForwardingHeaders/WebKit/npapi.h: Added.
-        * DumpRenderTree/chromium/TestNetscapePlugIn/ForwardingHeaders/WebKit/npfunctions.h: Added.
-        * DumpRenderTree/chromium/TestNetscapePlugIn/ForwardingHeaders/WebKit/npruntime.h: Added.
-
-2010-10-14  Victor Wang  <victorw@chromium.org>
-
-        Reviewed by Nate Chapin.
-
-        [Chromium] Fix rebaseline_chromium_webkit_tests to use 0 tolerance image diff.
-
-        https://bugs.webkit.org/show_bug.cgi?id=47686
-
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-
-2010-10-14  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        test-webkitpy spews Delegate terminated queue messages
-        https://bugs.webkit.org/show_bug.cgi?id=47678
-
-        * Scripts/webkitpy/tool/bot/queueengine_unittest.py:
-
-2010-10-14  Adam Roben  <aroben@apple.com>
-
-        Test that pressing the Alt key generates a WM_SYSCOMMAND message
-
-        Test for <http://webkit.org/b/47671> <rdar://problem/8435594> Pressing
-        the Alt key when MiniBrowser's WKView is focused doesn't send focus to
-        the menu bar
-
-        Reviewed by Steve Falkenburg.
-
-        * TestWebKitAPI/Configurations/TestWebKitAPICommon.vsprops: Added
-        TestWebKitAPI/win to the include path so that WindowMessageObserver
-        can be found.
-
-        * TestWebKitAPI/PlatformWebView.h: Added simulateAltKeyPress and
-        Windows-specific members.
-        (TestWebKitAPI::PlatformWebView::setParentWindowMessageObserver):
-        Added this simple setter.
-
-        * TestWebKitAPI/Tests/WebKit2/win/AltKeyGeneratesWMSysCommand.cpp: Added.
-        (TestWebKitAPI::WMSysCommandObserver::WMSysCommandObserver):
-        Initialize our lone data member.
-        (TestWebKitAPI::WMSysCommandObserver::windowDidReceiveWMSysCommand):
-        Simple getter.
-        (TestWebKitAPI::WMSysCommandObserver::windowReceivedMessage): Record
-        when a WM_SYSCOMMAND message is received.
-        (TestWebKitAPI::didNotHandleKeyEventCallback): Record when a
-        WM_SYSKEYUP message is not handled.
-        (TestWebKitAPI::WebKit2_AltKeyGeneratesWMSysCommand): Simulate
-        pressing the Alt key and check that a WM_SYSCOMMAND message got sent
-        to the WKView's parent window.
-
-        * TestWebKitAPI/win/PlatformWebViewWin.cpp:
-        (TestWebKitAPI::PlatformWebView::registerWindowClass): Made this a
-        member function so it could access PlatformWebView::wndProc. Use
-        PlatformWebView::wndProc as the WNDPROC.
-        (TestWebKitAPI::PlatformWebView::PlatformWebView): Initialize our new
-        data member and pass the this pointer to CreateWindowEx so we can
-        store it on the HWND.
-        (TestWebKitAPI::PlatformWebView::simulateSpacebarKeyPress): Moved some
-        constants from here to the top of the file.
-        (TestWebKitAPI::PlatformWebView::simulateAltKeyPress): Added. Sends
-        the same messages that Notepad receives when you press the Alt key.
-        (TestWebKitAPI::PlatformWebView::wndProc): Added.
-          - When WM_CREATE is received, we set the PlatformWebView instance
-            pointer as a property on the HWND so we can access it later.
-          - For other messages, we try to get the PlatformWebView instance
-            pointer from the HWND property.
-          - When WM_NCDESTROY is received (which is the last message we will
-            receive), we remove the PlatformWebView instance property.
-          - Pass messages to the parent window's message observer, if there is
-            one.
-          - Pass all messages through to ::DefWindowProcW.
-
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj: Added WindowMessageObserver
-        and AltKeyGeneratesWMSysCommand.
-
-        * TestWebKitAPI/win/WindowMessageObserver.h: Added. This class can be
-        used to observe messages sent to one or more windows.
-
-2010-10-01  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Holger Freyther.
-
-        [GTK] REGRESSION: FreeType backend does not respect XSettings font settings after r68558
-        https://bugs.webkit.org/show_bug.cgi?id=47033
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (initializeGtkFontSettings): Added this method which initializes XSettings
-        font settings to consistent values before running a test. For the one test
-        in which we need subpixel aliasing turned on, do that.
-        (initializeFonts): Accepts a testURL parameter now and delegates to initializeGtkFontSettings.
-        (runTest): Pass the testURL to initializeFonts.
-
-2010-10-14  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        ChromiumXVFBPort.run_webkit_tests_command has infinite recursion
-        https://bugs.webkit.org/show_bug.cgi?id=47655
-
-        * Scripts/webkitpy/common/config/ports.py:
-        * Scripts/webkitpy/common/config/ports_unittest.py:
-
-2010-10-13  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        beat diff_parser with the ugly stick
-        https://bugs.webkit.org/show_bug.cgi?id=47626
-
-        * Scripts/webkitpy/common/checkout/diff_parser.py:
-        * Scripts/webkitpy/style/patchreader.py:
-        * Scripts/webkitpy/style/patchreader_unittest.py:
-
-2010-10-13  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Break LayoutTestResults out into its own file
-        https://bugs.webkit.org/show_bug.cgi?id=47637
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot_unittest.py:
-        * Scripts/webkitpy/common/net/layouttestresults.py: Added.
-        * Scripts/webkitpy/common/net/layouttestresults_unittest.py: Added.
-
-2010-10-13  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        Chromium port can't run JavaScriptCore tests
-        https://bugs.webkit.org/show_bug.cgi?id=47654
-
-        This lets webkit-patch build-and-test work on Chromium.
-
-        * Scripts/webkitpy/common/config/ports.py:
-        * Scripts/webkitpy/tool/steps/runtests.py:
-
-2010-10-13  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Make --port a global option and pass the port information to the commit-queue subprocess
-        https://bugs.webkit.org/show_bug.cgi?id=47650
-
-        This patch paves the way to run the commit-queue on a non-Mac port.
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/commands/queuestest.py:
-        * Scripts/webkitpy/tool/main.py:
-        * Scripts/webkitpy/tool/steps/options.py:
-        * Scripts/webkitpy/tool/steps/preparechangelog.py:
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        * Scripts/webkitpy/tool/steps/update.py:
-
-2010-10-13  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Introduce the ChromiumXVFBPort for running commit-queue on EC2
-        https://bugs.webkit.org/show_bug.cgi?id=47653
-
-        I'm not entirely sure this is the best way to do this, but we need to
-        run the tests under XVFB on EC2 because the EC2 instances don't have a
-        real monitor hooked up.  This patch adds a ChromiumXVFBPort that runs
-        that way.  The idea is that XVFB is like a platform for the Chromium
-        port, but we don't have a real notion of platform separate from port.
-
-        * Scripts/webkitpy/common/config/ports.py:
-
-2010-10-13  Sergio Villar Senin  <svillar@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Add HTTP caching support
-        https://bugs.webkit.org/show_bug.cgi?id=44261
-
-        Add include paths for the new soup HTTP cache code.
-
-        * GNUmakefile.am: Add paths for the new soup HTTP cache code.
-
-2010-10-13  Yi Shen  <yi.4.shen@nokia.com>
-
-        Reviewed by Antonio Gomes.
-
-        [Qt] QtTestBrowser shows two Url input fields
-        https://bugs.webkit.org/show_bug.cgi?id=47613
-
-        * QtTestBrowser/mainwindow.cpp:
-        (MainWindow::MainWindow):
-        (MainWindow::buildUI):
-
-2010-10-13  Yi Shen  <yi.4.shen@nokia.com>
-
-        Reviewed by Tony Chang.
-
-        [gdb] Add pretty-print supports for UString, Identifier and JSString
-        https://bugs.webkit.org/show_bug.cgi?id=47601
-
-        * gdb/webkit.py:
-
-2010-10-13  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add list of Ubuntu packages needed by the EWS bots
-        https://bugs.webkit.org/show_bug.cgi?id=47628
-
-        I've been copy/pasting this list between bots, but it's better to have
-        this checked in.
-
-        * EWSTools/ubuntu-ews-packages: Added.
-
-2010-10-13  Leandro Pereira  <leandro@profusion.mobi>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [EFL] Adds a build slave.
-        https://bugs.webkit.org/show_bug.cgi?id=47290
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Add an
-        entry for a release build of the EFL port.
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Add platform
-        flag to build the EFL port.
-
-2010-10-13  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        webkit-patch build shouldn't need --build to actually build!
-        https://bugs.webkit.org/show_bug.cgi?id=47438
-
-        Yeah, requiring --build for the build command is really dumb.  We did
-        this originally because the build step is usually optional in other
-        commands.  We don't have a good way of reversing the default for an
-        option in one command.  This approach is slightly hacky since --build
-        still shows up as an option on the help page, but at least it makes
-        progress.  Passing --build is harmless, so the EWS bots shouldn't
-        explode because of this change.
-
-        * Scripts/webkitpy/tool/bot/commitqueuetask.py:
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2010-10-13  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r69638.
-        http://trac.webkit.org/changeset/69638
-        https://bugs.webkit.org/show_bug.cgi?id=47595
-
-        "Broke win and chromium-win bots" (Requested by dglazkov on
-        #webkit).
-
-        * Scripts/webkitpy/common/system/path.py:
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-10-13  John Knottenbelt  <jknotten@chromium.org>
-
-        Reviewed by Steve Block.
-
-        First step towards client-based Geolocation in Chromium. Build
-        fixes for CLIENT_BASED_GEOLOCATION preprocessor feature define.
-        https://bugs.webkit.org/show_bug.cgi?id=47586
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2010-10-13  Adam Roben  <aroben@apple.com>
-
-        Test that pressing the spacebar in a text field does not scroll the
-        document
-
-        Test for <http://webkit.org/b/47544> <rdar://problem/8540645>
-        REGRESSION: Pressing spacebar in a text field in WebKit2 does not
-        insert a space, scrolls the page instead
-
-        Reviewed by Sam Weinig.
-
-        * TestWebKitAPI/PlatformUtilities.h: Added isKeyDown.
-
-        * TestWebKitAPI/PlatformWebView.h: Added simulateSpacebarKeyPress.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        * TestWebKitAPI/win/copy-resources.cmd:
-        Added new files.
-
-        * TestWebKitAPI/Tests/WebKit2/SpacebarScrolling.cpp: Added.
-        (TestWebKitAPI::JavaScriptCallbackContext::JavaScriptCallbackContext):
-        We use this to track what the result of calling into JavaScript was.
-        (TestWebKitAPI::didFinishLoadForFrame): Records when the page
-        finishes loading.
-        (TestWebKitAPI::didNotHandleKeyEventCallback): Records when a key down
-        event is not handled.
-        (TestWebKitAPI::javaScriptCallback): Records that JavaScript finished
-        executing and whether the result matched our expectation.
-        (TestWebKitAPI::wk): Turns a UTF-8 C string into a WKStringRef.
-        (TestWebKitAPI::runJSTest): Calls into JS, waits for the call to
-        complete, and returns whether we got back the expected result.
-        (TestWebKitAPI::WebKit2_SpacebarScrolling): Tests that pressing
-        spacebar inside a text field does not scroll the document and that
-        pressing it outside the text field does scroll the document.
-
-        * TestWebKitAPI/Tests/WebKit2/spacebar-scrolling.html: Added.
-
-        * TestWebKitAPI/mac/PlatformUtilitiesMac.mm:
-        (TestWebKitAPI::Util::isKeyDown): Checks the event's type.
-
-        * TestWebKitAPI/mac/PlatformWebViewMac.mm:
-        (TestWebKitAPI::PlatformWebView::simulateSpacebarKeyPress): Copied
-        code from DRT's EventSendingController.
-
-        * TestWebKitAPI/win/PlatformUtilitiesWin.cpp:
-        (TestWebKitAPI::Util::isKeyDown): Checks the message's type.
-
-        * TestWebKitAPI/win/PlatformWebViewWin.cpp:
-        (TestWebKitAPI::PlatformWebView::simulateSpacebarKeyPress): Send the
-        same messages that get sent when you press spacebar in Notepad.
-
-2010-10-13  Adam Roben  <aroben@apple.com>
-
-        Fix a couple of issues with the TestWebKitAPI build
-
-        * TestWebKitAPI/Configurations/TestWebKitAPICFLite.vsprops:
-        * TestWebKitAPI/Configurations/TestWebKitAPICoreFoundation.vsprops:
-        Fixed a typo.
-
-        * TestWebKitAPI/win/TestWebKitAPIGenerated.vcproj: Use common.vsprops
-        to set our output and intermediate directories so that we don't spew
-        files into the source tree.
-
-2010-10-13  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        WTR should accept relative paths
-        https://bugs.webkit.org/show_bug.cgi?id=47486
-
-        * WebKitTestRunner/StringFunctions.h:
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::createWKURL): Moved from StringFunctions.h since it is
-        used only here. Extend relative paths to absolute.
-
-2010-10-12  Adam Roben  <aroben@apple.com>
-
-        Make TestWebKitAPI work on Windows
-
-        Fixes <http://webkit.org/b/47552> <rdar://problem/8541708>.
-
-        Reviewed by Sam Weinig.
-
-        * Scripts/build-api-tests: Build TestWebKitAPI.sln on Windows.
-
-        * Scripts/run-api-tests: Fix the PATH so that TestWebKitAPI can be
-        run on Windows.
-        (runTest): Added code to run TestWebKitAPI.exe on Windows and to die
-        on unsupported platforms.
-        (populateTests): Added code to run TestWebKitAPI.exe on Windows and to
-        die on other platforms. Extracted some formerly-Mac-specific code to
-        be cross-platform and made it handle any style of line-endings.
-
-        * TestWebKitAPI/Configurations/TestWebKitAPICFLite.vsprops: Added.
-        Links against CFLite.
-
-        * TestWebKitAPI/Configurations/TestWebKitAPICommon.vsprops: Added.
-        Contains most properties for the project.
-
-        * TestWebKitAPI/Configurations/TestWebKitAPICoreFoundation.vsprops:
-        Added. Links against CoreFoundation.
-
-        * TestWebKitAPI/TestWebKitAPIPrefix.h: Added a Windows-specific
-        section and moved the cross-platform section after the
-        platform-specific parts.
-
-        * TestWebKitAPI/win/PlatformUtilitiesWin.cpp: Added.
-        (TestWebKitAPI::Util::run): Runs a normal message pump until we're
-        done.
-        (TestWebKitAPI::Util::cf): Turns a UTF-8 C string into a CFString.
-        (TestWebKitAPI::Util::createURLForResource): Uses CFBundle to get the
-        resource path.
-        (TestWebKitAPI::Util::URLForNonExistentResource): Creates a bogus
-        WKURL.
-
-        * TestWebKitAPI/win/PlatformWebViewWin.cpp: Added.
-        (TestWebKitAPI::registerWindowClass):
-        (TestWebKitAPI::PlatformWebView::PlatformWebView):
-        (TestWebKitAPI::PlatformWebView::~PlatformWebView):
-        (TestWebKitAPI::PlatformWebView::page):
-        This was mostly copied from WebKitTestRunner's PlatformWebView.
-
-        * TestWebKitAPI/win/TestWebKitAPI.sln: Added. Builds both
-        TestWebKitAPI and TestWebKitAPIGeneratd. This is used by the
-        build-api-tests script.
-
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj: Added. Builds
-        TestWebKitAPI.exe.
-
-        * TestWebKitAPI/win/TestWebKitAPIGenerated.vcproj: Added. Just calls
-        through to copy-resources.cmd.
-
-        * TestWebKitAPI/win/copy-resources.cmd: Added. Copies resources into
-        or deletes resources from TestWebKitAPI.resources.
-
-        * TestWebKitAPI/win/main.cpp: Added.
-        (main): Calls through to TestsController.
-
-2010-10-13  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [EFL] Support viewport configuration and add new arguments for WebKit EFL
-        https://bugs.webkit.org/show_bug.cgi?id=47084
-
-        Opera spec regarding to viewport meta tag was adjusted to WebCore. So, EFL port
-        needs to be modified according to the changes.
-
-        * EWebLauncher/main.c:
-        (on_viewport_changed):
-
-2010-10-12  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        This patch enables new-run-webkit-tests (in particular the
-        chromium-win port) to run under Cygwin as well as Win32. Mostly
-        this just required some conversions from cygwin paths to Win32
-        paths when we spawn off Win32 binaries like test_shell.
-
-        https://bugs.webkit.org/show_bug.cgi?id=47220
-
-        * Scripts/webkitpy/common/system/path.py:
-        - Expose the cygpath() function for path conversion
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        - shift filename->uri conversion in the TestInfo objects to the
-          dump_render_tree thread
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        - use cygpath()
-
-2010-10-12  Yuta Kitamura  <yutak@chromium.org>
-
-        Unreviewed. Add Yuta Kitamura (yutak) to the committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-10-12  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Dan Bernstein.
-
-        When a provisional load fails, the provisional URL returned
-        from WKFrameCopyProvisionalURL should be empty
-        <rdar://problem/8540878>
-        https://bugs.webkit.org/show_bug.cgi?id=47546
-
-        Add test.
-
-        * TestWebKitAPI/Tests/WebKit2/FailedLoad.cpp:
-        (TestWebKitAPI::didFailProvisionalLoadWithErrorForFrame):
-
-2010-10-12  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Start fleshing out find page overlays
-        https://bugs.webkit.org/show_bug.cgi?id=47559
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController find:]):
-        Pass kWKFindOptionsShowOverlay to WKPageFindString.
-
-2010-10-12  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Antonio Gomes.
-
-        [Qt] editing/input/emacs-ctrl-o.html
-
-        ctrl-o is bound to a sequence of commands on Mac, namely:
-        insertParagraphSeparator then moveLeft. In the DRT, we just interpret
-        ctrl-o in EventSenderQt as '\n', i.e. insertParagraphSeparator. As a
-        result we only issue one command, so don't generate the change in caret
-        position that results in the extra editing delegate messages.
-
-        So for the sake of not managing suspicious-looking differences, just
-        make DRT issue the appropriate edit commands to pass the test.
-
-        https://bugs.webkit.org/show_bug.cgi?id=47548
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::keyDown):
-
-2010-10-12  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Add a simple Find UI to MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=47553
-
-        * MiniBrowser/mac/BrowserWindow.xib:
-        Add Find panel.
-
-        * MiniBrowser/mac/BrowserWindowController.h:
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController performFindPanelAction:]):
-        Show the find panel.
-
-        (-[BrowserWindowController find:]):
-        Tell the WKPageRef to find the given string.
-
-2010-10-12  Tony Chang  <tony@chromium.org>
-
-        Unreviewed, fixing DRT compile on Windows after r69586.
-
-        * DumpRenderTree/chromium/WebThemeEngineDRT.h:
-
-2010-10-12  Tony Chang  <tony@chromium.org>
-
-        Unreviewed, trying to fix NRWT on Windows.
-
-        * Scripts/webkitpy/layout_tests/port/http_lock.py:
-
-2010-10-12  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt][WTR] Checking the path of the injected bundle is bogus
-        https://bugs.webkit.org/show_bug.cgi?id=47541
-
-        * WebKitTestRunner/qt/TestControllerQt.cpp:
-        (WTR::isExistingLibrary): Added (static helper).
-        Extend the path with the appropriate suffix(es) on the
-        platform and check that the file exists.
-        (WTR::TestController::initializeInjectedBundlePath):
-        There were two bugs with the path checking:
-            - the condition should have been inverted
-            - QLibrary::fileName does not give back the filename
-              with the library suffix so we cannot check
-              that existance of the file this way.
-
-2010-10-12  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
-
-        Reviewed by Tony Chang.
-
-        Implement http locking in NRWT.
-        https://bugs.webkit.org/show_bug.cgi?id=47072
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/http_lock.py: Added.
-        * Scripts/webkitpy/layout_tests/port/http_lock_unittest.py: Added.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-10-12  Mark Rowe  <mrowe@apple.com>
-
-        Fix the 32-bit WebKit2 build.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (getWindowFrame): Use NSRect rather than CGRect since that's what -frame returns.
-        (setWindowFrame): Use NSMakeRect rather than CGRectMake since that's what -setFrame:display: expects.
-
-2010-10-11  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        change the order of mrobinson's email addresses so bugs.webkit.org suggests the right one
-        https://bugs.webkit.org/show_bug.cgi?id=47513
-
-        bugs.webkit.org suggests mrobinson@igalia.com as an autocomplete,
-        which doesn't actually work.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-10-11  Prasad Tammana  <prasadt@chromium.org>
-
-        Reviewed by Dmitry Titov.
-
-        Added support for showModalDialog on chromium port.
-
-        Implement showModalDialog for Layout tests for chromium port
-        https://bugs.webkit.org/show_bug.cgi?id=46759
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::closeWidgetSoon): Quit current message loop if in a modal loop.
-        (WebViewHost::runModal):  Start a nested message loop and remember that.
-        (WebViewHost::WebViewHost):  Initialize m_inModalLoop.
-        * DumpRenderTree/chromium/WebViewHost.h:  Add m_inModalLoop.
-
-2010-10-11  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        [GTK] Cleanup font selection code for the Freetype backend
-        https://bugs.webkit.org/show_bug.cgi?id=47503
-
-        Update DRT to set values for the cursive and fantasy font families, so
-        that we can generate consistent results for tests that use these families.
-        Add some missing information to fonts.conf.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues): Always set the fantasy and cursive font
-        family names.
-        * DumpRenderTree/gtk/fonts/fonts.conf: Add aliases for cursive and fantasy fonts
-        to our default serif font. Eventually we may want to import or require some "real"
-        fonts, but this should at least ensure consistent rendering during test runs. Also
-        add aliases for some other commonly used fonts in tests (Arial and Lucida Grande).
-        Finally, add a missing oblique specification for DejaVu Serif, which was resulting
-        in some incorrect baselines for the synthetic oblique test.
-
-2010-10-11  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        Fix sheriffbot not to crash when there are failing tests.  It turns out
-        Python sets don't support the + operator.  We need to use union
-        instead.  There's a more elegant way to do this in Python 2.6, but we
-        need this code to work in 2.5.
-
-        * Scripts/webkitpy/common/net/failuremap.py:
-        * Scripts/webkitpy/common/net/failuremap_unittest.py:
-
-2010-10-10  Robert Hogan  <robert@webkit.org>
-
-        Unreviewed, fix failing test from r69468.
-
-        [Qt] Put all DRT-created pages in a page group
-
-        Fix on r69468.
-
-        Because we don't delete closed pages immediately in DRT we need
-        to remove them from the page group explicitly instead.
-
-        Fixes failure of fast/events/popup-blocked-from-fake-user-gesture.html
-
-        https://bugs.webkit.org/show_bug.cgi?id=47469
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::windowCloseRequested):
-
-2010-10-10  Leandro Pereira  <leandro@profusion.mobi>
-
-        Reviewed by Adam Barth.
-
-        commit-queue: Add EFL-EWS status bubble to Bugzilla, now that the
-        EFL-EWS bot is up and running.
-        https://bugs.webkit.org/show_bug.cgi?id=47277
-
-        * QueueStatusServer/handlers/statusbubble.py:
-
-2010-10-10  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Antonio Gomes.
-
-        [Qt] Put all DRT-created pages in a page group
-
-        https://bugs.webkit.org/show_bug.cgi?id=47469
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::createWindow):
-
-2010-10-09  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Dan Bernstein.
-
-        WKFrameGetFrameLoadState() returns kWKFrameLoadStateCommitted after the load has been stopped
-        <rdar://problem/8173667>
-        https://bugs.webkit.org/show_bug.cgi?id=47461
-
-        * TestWebKitAPI/PlatformUtilities.h:
-        * TestWebKitAPI/Test.h:
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2/FailedLoad.cpp: Added.
-        (TestWebKitAPI::didFailProvisionalLoadWithErrorForFrame):
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/mac/PlatformUtilitiesMac.mm:
-        (TestWebKitAPI::Util::URLForNonExistentResource):
-        Adds a test for the frame load state after a failed provisional load. I wanted to test
-        the frame load state after a committed load failed, but I don't believe that is possible
-        to do without hooking up the http server to serve a long loading page.
-
-2010-10-09  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Dan Bernstein.
-
-        Add WebKit2 version of runBeforeUnloadConfirmPanelWithMessage
-        <rdar://problem/8447690>
-        https://bugs.webkit.org/show_bug.cgi?id=47459
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (runBeforeUnloadConfirmPanel):
-        (-[BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::createOtherPage):
-        (WTR::TestController::initialize):
-
-2010-10-09  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Dan Bernstein.
-
-        Need implementation of ChromeClient windowRect related functions.
-        <rdar://problem/8469476>
-        https://bugs.webkit.org/show_bug.cgi?id=47386
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (getWindowFrame):
-        (setWindowFrame):
-        (-[BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/PlatformWebView.h:
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (WTR::PlatformWebView::windowFrame):
-        (WTR::PlatformWebView::setWindowFrame):
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::windowFrame):
-        (WTR::PlatformWebView::setWindowFrame):
-        * WebKitTestRunner/win/PlatformWebViewWin.cpp:
-        (WTR::PlatformWebView::windowFrame):
-        (WTR::PlatformWebView::setWindowFrame):
-
-2010-10-08  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed (Eric is on vacation in this change is trivial).
-
-        Add a "clean" command to webkit-patch to clean the working directory
-        https://bugs.webkit.org/show_bug.cgi?id=47436
-
-        This command is useful when using SVN because "svn revert" leaves
-        unversioned files behind.
-
-        * Scripts/webkitpy/tool/commands/download.py:
-
-2010-10-08  Andras Becsi  <abecsi@webkit.org>
-
-        Unreviewed build fix.
-
-        [Qt] Add missing limits.h include since the Qt version currently
-        ran on the bot does need that.
-
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-
-2010-10-08  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt] Turn on building WTR
-        https://bugs.webkit.org/show_bug.cgi?id=47349
-
-        * Scripts/webkitdirs.pm:
-
-2010-10-08  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] TestController needs its platform dependent methods
-        https://bugs.webkit.org/show_bug.cgi?id=47413
-
-        * WebKitTestRunner/qt/TestControllerQt.cpp:
-        (WTR::TestController::initializeInjectedBundlePath):
-        If the WTR_INJECTEDBUNDLE_PATH environmental variable is
-        set then use that otherwise use the path where the bundle
-        lives in a normal trunk build.
-        (WTR::TestController::initializeTestPluginDirectory):
-        Set the bundle's value. It is not used currently.
-        (WTR::TestController::platformInitializeContext):
-        * WebKitTestRunner/qt/WebKitTestRunner.pro:
-
-2010-10-08  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        WTR: Prevent sending the Done message twice on test timeout.
-        https://bugs.webkit.org/show_bug.cgi?id=47410
-
-        When InjectedBundle::done() calls stopLoading, this may trigger
-        InjectedBundlePage::didFailLoadWithErrorForFrame which calls
-        InjectedBundle::done() itself later in the stack.
-        This would output the timeout failure message twice and confuse
-        the run-webkit-tests script.
-
-        This patch adds a third state, Stopping, which prevents WebCore
-        errors to trigger done() when testing is over.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::done):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-
-2010-10-08  Andras Becsi  <abecsi@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Add an activateFonts() implementation similar to DRT's initializeFonts().
-        Original code by Simon Hausmann.
-        https://bugs.webkit.org/show_bug.cgi?id=47402
-
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp: Added.
-        (WTR::activateFonts):
-
-2010-10-08  Andras Becsi  <abecsi@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt] Add support for Qt's WebKitTestRunner to old-run-webkit-tests.
-        https://bugs.webkit.org/show_bug.cgi?id=47401
-
-        * Scripts/build-webkittestrunner:
-        * Scripts/old-run-webkit-tests:
-
-2010-10-07  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] WTR first compile: fix compile issues.
-        https://bugs.webkit.org/show_bug.cgi?id=47343
-
-        * WebKitTestRunner/InjectedBundle/Bindings/JSWrappable.h:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        * WebKitTestRunner/TestController.cpp:
-        * WebKitTestRunner/TestInvocation.cpp:
-
-2010-10-07  Antonio Gomes  <agomes@rim.com>
-
-        Reviewed by Simon Fraser.
-
-        [Mac] [DRT] implement setSpatialNavigationEnabled
-        https://bugs.webkit.org/show_bug.cgi?id=47291
-
-        Implemented LayoutTestController::setSpatialNavigationEnabled for Mac's DRT
-        so it can track regression on the existing implementation and future improvements
-        we are making.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setSpatialNavigationEnabled):
-
-2010-10-07  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        rebaseline-chromium-webkit-tests relied on the filename_to_uri()
-        hook in the Port infrastructure to generate URIs for the files
-        in its summary HTML report; however, that method is supposed to only
-        be used for test files (and should really be renamed), so this would
-        crash.
-
-        This change adds a new "path" module to the system package with a
-        routine called abspath_to_uri() that handles converting paths to
-        file: URIs independently of anything in the layout_tests package,
-        and changes the code to use this. At some point in the near future
-        the layout_tests/port/* code should use this as well.
-
-        This change also deletes a bunch of unused code and fixes some
-        comments in rebaseline_chromium_webkit_tests.py.
-
-        https://bugs.webkit.org/show_bug.cgi?id=47319
-
-        * Scripts/webkitpy/common/system/path.py: Added.
-        * Scripts/webkitpy/common/system/path_unittest.py: Added.
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests_unittest.py:
-
-2010-10-07  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        [GTK] The FreeType backend does not respect the FC_EMBOLDEN property
-        https://bugs.webkit.org/show_bug.cgi?id=46216
-
-        Fix my latest commit, as it contained some bad changes from a merge gone wrong.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (initializeFonts): Also initialize the DevaVu Sans font.
-
-2010-10-07  Daniel Cheng  <dcheng@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        [chromium] Minor naming cleanup in WebDragData, part 2
-        https://bugs.webkit.org/show_bug.cgi?id=47227
-
-        Update DRT to use the renamed methods.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::beginDragWithFiles):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (addDRTFakeFileToDataObject):
-
-2010-10-07  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Add a WKPageFindClient, hook up WKPageCountStringMatches
-        https://bugs.webkit.org/show_bug.cgi?id=47373
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        Remove hard coded paths.
-
-        * TestWebKitAPI/Tests/WTF/VectorBasic.cpp:
-        (TestWebKitAPI::TEST):
-        Fix expected result.
-
-        * TestWebKitAPI/Tests/WebKit2/Find.cpp: Added.
-        (TestWebKitAPI::didFinishLoadForFrame):
-        (TestWebKitAPI::didCountStringMatches):
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/find.html: Added.
-        Add test for WKPageCountStringMatches.
-
-2010-09-21  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Chris Fleizach.
-
-        [GTK] The FreeType backend does not respect the FC_EMBOLDEN property
-        https://bugs.webkit.org/show_bug.cgi?id=46216
-
-        * DumpRenderTree/gtk/fonts/fonts.conf: Add a setting which enables FC_EMBOLDEN
-        for DejaVu Serif when there is no bold version available. This is necessary to
-        properly test the property in layout tests.
-
-2010-10-07  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>, Andras Becsi  <abecsi@webkit.org>, Balazs Kelemen  <kbalazs@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Add WTR's InjectedBundle build files.
-        https://bugs.webkit.org/show_bug.cgi?id=47333
-
-        * Scripts/webkitdirs.pm:
-        * WebKitTestRunner/DerivedSources.pro: Added.
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro: Added.
-        * WebKitTestRunner/WebKitTestRunner.pro: Added.
-        * WebKitTestRunner/qt/DerivedSources.pro: Removed.
-        Content merged in ../DerivedSources.pro
-
-2010-10-07  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r69315.
-        http://trac.webkit.org/changeset/69315
-        https://bugs.webkit.org/show_bug.cgi?id=47363
-
-        Forgot to add the new files (Requested by kbalazs on #webkit).
-
-        * Scripts/webkitdirs.pm:
-        * WebKitTestRunner/qt/DerivedSources.pro: Added.
-
-2010-10-07  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Change API tester to ask the executable for the list of all
-        tests instead of relying on the directory structure.
-        https://bugs.webkit.org/show_bug.cgi?id=47359
-
-        * Scripts/run-test-webkit-api: Added.
-        * Scripts/webkitdirs.pm:
-        Add additional script to just launch the api tester with the correct settings.
-
-        * Scripts/run-api-tests:
-        Change to use the new --dump-tests options to build the list of tests and change
-        output to reflect a (suite, testcase) tuple for each test. Also adds some color.
-
-        * TestWebKitAPI/Test.h:
-        (TestWebKitAPI::Test::Register::Register):
-        * TestWebKitAPI/Tests/WTF/VectorBasic.cpp:
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/FrameMIMETypeHTML.cpp:
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/FrameMIMETypePNG.cpp:
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/PageLoadBasic.cpp:
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/WKString.cpp:
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/WKStringJSString.cpp:
-        (TestWebKitAPI::TEST):
-        Give each test a suite name in addition to the test name.
-
-        * TestWebKitAPI/TestsController.cpp:
-        (TestWebKitAPI::TestsController::dumpTestNames):
-        (TestWebKitAPI::TestsController::runTestNamed):
-        * TestWebKitAPI/TestsController.h:
-        * TestWebKitAPI/mac/main.mm:
-        (main):
-        Add option to print all registered tests.
-
-2010-10-07  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>, Andras Becsi  <abecsi@webkit.org>, Balazs Kelemen  <kbalazs@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Add WTR's InjectedBundle build files.
-        https://bugs.webkit.org/show_bug.cgi?id=47333
-
-        * Scripts/webkitdirs.pm:
-        * WebKitTestRunner/DerivedSources.pro: Added.
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro: Added.
-        * WebKitTestRunner/WebKitTestRunner.pro: Added.
-        * WebKitTestRunner/qt/DerivedSources.pro: Removed.
-        Content merged in ../DerivedSources.pro
-
-2010-10-07  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Unreviewed. Do a renaming that was recommended by the reviewer
-        (Kenneth) but I forgot to do before landing (http://trac.webkit.org/changeset/69253)
-
-        * WebKitTestRunner/qt/TestControllerQt.cpp:
-        (WTR::RunUntilConditionLoop::start):
-        (WTR::RunUntilConditionLoop::RunUntilConditionLoop):
-        (WTR::TestController::runUntil):
-
-2010-10-07  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Watchdog timer implementation for WTR
-        https://bugs.webkit.org/show_bug.cgi?id=47337
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h: Factor out
-        the definition of the timer type to a typedef.
-        * WebKitTestRunner/InjectedBundle/qt/LayoutTestControllerQt.cpp: Added.
-        Timer implementation with QTimer and a helper QObject class.
-        (WTR::WatchdogTimerHelper::instance):
-        (WTR::WatchdogTimerHelper::timerFired):
-        (WTR::WatchdogTimerHelper::WatchdogTimerHelper):
-        (WTR::LayoutTestController::platformInitialize):
-        (WTR::LayoutTestController::invalidateWaitToDumpWatchdogTimer):
-        (WTR::LayoutTestController::initializeWaitToDumpWatchdogTimerIfNeeded):
-
-2010-10-07  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Unreviewed buildfix for 69297 again
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::blankURL):
-
-2010-10-07  Balazs Kelemen  <Balazs Kelemen>
-
-        Unreviewed trivial build fix for r69297
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::blankURL):
-
-2010-10-07  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        WebKitTestRunner should be portable
-        https://bugs.webkit.org/show_bug.cgi?id=45393
-
-        Use only the WebKit API for working with urls.
-        * WebKitTestRunner/StringFunctions.h:
-        (WTR::createWKURL):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::blankURL):
-        (WTR::TestController::resetStateToConsistentValues):
-        (WTR::TestController::didFinishLoadForFrame):
-
-2010-10-07  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] Use gtk_widget_draw() instead of gtk_widget_get_snapshot() in PixelDumpSupportGtk when building with gtk3
-        https://bugs.webkit.org/show_bug.cgi?id=47332
-
-        * DumpRenderTree/gtk/PixelDumpSupportGtk.cpp:
-        (createBitmapContextFromWebView):
-
-2010-10-06  Chris Guillory  <chris.guillory@google.com>
-
-        Reviewed by Chris Fleizach.
-
-        Remove unused accessibility functions from webkit.
-        https://bugs.webkit.org/attachment.cgi?bugid=46707
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::postAccessibilityNotification):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2010-10-06  Lucas Forschler  <lforschler@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Fix the sunspider-compare-results to actually use the passed in value for $root.
-
-        * Scripts/sunspider-compare-results:
-
-2010-10-06  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Runloop implementation for WTR
-        https://bugs.webkit.org/show_bug.cgi?id=47280
-
-        * WebKitTestRunner/qt/TestControllerQt.cpp:
-        Implemented TestController::runUntil by a timerEvent
-        and a QEventLoop. We step into the event loop from runUntil.
-        While we are waiting in the loop a timerEvent is periodically
-        checking the value of the condition. Once the condition has
-        becoming true the timerEvent wakes us up.
-        (WTR::RunUntilLoop::start):
-        (WTR::RunUntilLoop::RunUntilLoop):
-        (WTR::RunUntilLoop::run):
-        (WTR::RunUntilLoop::timerEvent):
-        (WTR::TestController::platformInitialize):
-        (WTR::TestController::runUntil):
-        * WebKitTestRunner/qt/main.cpp:
-        Start the main event loop first and creating the TestController later.
-        (Launcher::Launcher):
-        (Launcher::~Launcher):
-        (Launcher::launch): Creating the TestController.
-        (main): Setting up a timer for calling Launcher::launch from
-        the main event loop.
-
-2010-10-06  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Kenneth Russell.
-
-        new-run-webkit-tests: fix typo in chromium-gpu that was trying to
-        enable 'accelerated-composting' instead of 'accelerated-compositing'.
-
-        https://bugs.webkit.org/show_bug.cgi?id=47312
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-
-2010-10-06  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] PlatformWebView implementation for WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=47276
-
-        The implementation follows the way how
-        we use the API in MiniBrowser.
-        * WebKitTestRunner/PlatformWebView.h:
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::WebView::wkView):
-        (WTR::WebView::~WebView):
-        (WTR::WebView::WebView):
-        (WTR::PlatformWebView::PlatformWebView):
-        (WTR::PlatformWebView::~PlatformWebView):
-        (WTR::PlatformWebView::resizeTo):
-        (WTR::PlatformWebView::page):
-        (WTR::PlatformWebView::focus):
-        * WebKitTestRunner/qt/WebKitTestRunner.pro:
-
-2010-10-06  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Add WebKitTestRunner's build files
-        https://bugs.webkit.org/show_bug.cgi?id=44155
-
-        Parts was taken by Zoltan Horvath's patch.
-
-        * Scripts/generate-forwarding-headers.pl: Moved from WebKit2.
-        * Scripts/webkitdirs.pm: Make the generated files needed by WTR.
-        * WebKitTestRunner/PlatformWebView.h: Addeed typedefs for
-        PlatformWKView and PlatformWindow (void* for now).
-        Buildfix the case when __APPLE__ is not defined.
-        * WebKitTestRunner/qt/DerivedSources.pro: Added.
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp: Added.
-        Empty stub implementation.
-        (WTR::registerWindowClass):
-        (WTR::PlatformWebView::PlatformWebView):
-        (WTR::PlatformWebView::~PlatformWebView):
-        (WTR::PlatformWebView::resizeTo):
-        (WTR::PlatformWebView::page):
-        (WTR::PlatformWebView::focus):
-        * WebKitTestRunner/qt/TestControllerQt.cpp: Added.
-        Empty stub implementation.
-        (WTR::registerWindowClass):
-        (WTR::TestController::runUntil):
-        (WTR::TestController::platformInitialize):
-        (WTR::TestController::initializeInjectedBundlePath):
-        (WTR::TestController::initializeTestPluginDirectory):
-        (WTR::TestController::platformInitializeContext):
-        * WebKitTestRunner/qt/WebKitTestRunner.pro: Added.
-        * WebKitTestRunner/qt/main.cpp: Added.
-        (main):
-
-2010-10-06  Tony Chang  <tony@chromium.org>
-
-        Unreviewed, rolling out r69202.
-        http://trac.webkit.org/changeset/69202
-        https://bugs.webkit.org/show_bug.cgi?id=46937
-
-        Broke compile of test_shell
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::beginDragWithFiles):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (addDRTFakeFileToDataObject):
-
-2010-10-06  Daniel Cheng  <dcheng@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        [chromium] Minor naming cleanup in WebDragData, part 2
-        https://bugs.webkit.org/show_bug.cgi?id=46937
-
-        Update DRT to use the renamed methods.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::beginDragWithFiles):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (addDRTFakeFileToDataObject):
-
-2010-10-06  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/47270> Move WebArchive serialization code into its own file
-
-        Reviewed by Adam Roben.
-
-        This is the first step in making webarchive tests work on
-        Windows.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Added
-        new files to the project.
-        * DumpRenderTree/mac/DumpRenderTree.mm: Removed code that moved
-        to WebArchiveDumpSupport.mm.
-        * DumpRenderTree/mac/WebArchiveDumpSupport.h: Added.
-        * DumpRenderTree/mac/WebArchiveDumpSupport.mm: Copied from WebKitTools/DumpRenderTree/mac/DumpRenderTree.mm.
-        (serializeWebArchiveToXML):
-
-2010-10-05  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by David Kilzer.
-
-        Add infrastructure to towards detecting change log diffs that aren't at the top of the ChangeLog
-        https://bugs.webkit.org/show_bug.cgi?id=46058
-
-        Make VCSUtils::fixChangeLogPatch() return a reference to a hash
-        structure so as to support returning additional information
-        about a change log diff.
-
-        Currently, VCSUtils::fixChangeLogPatch() returns a string that
-        represents the change log diff. Towards supporting the return
-        of additional information, such as whether the change log diff
-        inserts an entry at the top of the ChangeLog file, we need to
-        make VCSUtils::fixChangeLogPatch() return a reference to hash
-        structure.
-
-        * Scripts/VCSUtils.pm:
-          - Modified fixChangeLogPatch() to return a reference to a
-            hash structure.
-          - Added documentation to fixChangeLogPatch().
-          - Modified call site in mergeChangeLogs() as necessary.
-        * Scripts/svn-apply:
-          - Modified call site in patch() as necessary.
-        * Scripts/svn-create-patch:
-          - Modified call site in generateDiff() as necessary.
-        * Scripts/svn-unapply:
-          - Modified call site in patch() as necessary.
-        * Scripts/webkitperl/VCSUtils_unittest/fixChangeLogPatch.pl:
-          - Modified the unit tests as necessary.
-
-2010-10-05  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        fix the link to the expected image on windows
-        https://bugs.webkit.org/show_bug.cgi?id=47228
-
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py: On
-            windows, the file must be opened in binary mode when writing
-            binary data.
-
-2010-10-05  Adam Barth  <abarth@webkit.org>
-
-        Update expected result of unittest to match Tony's change below.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-
-2010-10-05  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Ojan Vafai (over the shoulder).
-
-        Paper over errors in image_diff so we don't crash the whole test run.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2010-10-05  Tony Chang  <tony@chromium.org>
-
-        Unreviewed, make shutil.rmtree more resiliant to errors
-        since windows was raising WindowsError: The process cannot access the file because it
-        is being used by another process.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2010-10-05  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        [chromium] fix image diffing in NRWT
-        https://bugs.webkit.org/show_bug.cgi?id=47128
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py: Stop using
-            NamedTemporaryFile since it doesn't work on Windows.
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-
-2010-10-05  Kenneth Russell  <kbr@google.com>
-
-        Reviewed by Tony Chang.
-
-        [chromium] Implement layerTreeAsText in DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=47216
-
-        Plumbed Frame::layerTreeAsText through Chromium's WebKit API to
-        make it callable from DumpRenderTree.
-
-        No new tests; verified with existing compositor layout tests.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::layerTreeAsText):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-
-2010-10-05  Brent Fulgham  <bfulgham@webkit.org>
-
-        Unreviewed build correction.
-
-        * DumpRenderTree/win/ImageDiff.vcproj: Use WinCairo debug
-        property sheet so proper libraries are linked.
-
-2010-10-05  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Fix url conversion in QWebHistory
-
-        Converting from KURL to WFT::String to QUrl does not
-        permit proper percent encoding later.
-
-        https://bugs.webkit.org/show_bug.cgi?id=47048
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::dumpHistoryItem):
-
-2010-10-05  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        REGRESSION (r68966?): All dumpAsText test fail on WebKit2
-        https://bugs.webkit.org/show_bug.cgi?id=47188
-        <rdar://problem/8514104>
-
-        When constructing the std::string, use the real string length instead of the maximum buffer size.
-
-        * TestWebKitAPI/PlatformUtilities.h:
-        (TestWebKitAPI::Util::toSTD):
-        * WebKitTestRunner/StringFunctions.h:
-        (WTR::toSTD):
-
-2010-10-04  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        Add MIMEType accessor to WKFrame
-        <rdar://problem/8347683>
-        https://bugs.webkit.org/show_bug.cgi?id=47138
-
-        * TestWebKitAPI/PlatformUtilities.h:
-        (TestWebKitAPI::Util::toSTD):
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2/FrameMIMETypeHTML.cpp: Added.
-        (TestWebKitAPI::didStartProvisionalLoadForFrame):
-        (TestWebKitAPI::didCommitLoadForFrame):
-        (TestWebKitAPI::didFinishLoadForFrame):
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/FrameMIMETypePNG.cpp: Added.
-        (TestWebKitAPI::didStartProvisionalLoadForFrame):
-        (TestWebKitAPI::didCommitLoadForFrame):
-        (TestWebKitAPI::didFinishLoadForFrame):
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/PageLoadBasic.cpp:
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/basic-1.html: Removed.
-        * TestWebKitAPI/Tests/WebKit2/icon.png: Added.
-        * TestWebKitAPI/Tests/WebKit2/simple.html: Added.
-        * TestWebKitAPI/mac/PlatformUtilitiesMac.mm:
-        (TestWebKitAPI::Util::createURLForResource):
-
-2010-10-05  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
-
-        Reviewed by Ojan Vafai.
-
-        [NRWT] Rename current_dir to current_group because it's not a directory
-        https://bugs.webkit.org/show_bug.cgi?id=47169
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-10-04  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        r69065 broke test-webkitpy by trying to create a '/tmp-X' directory,
-        which can't always be done. This test uses tempfile.mkdtemp(), which
-        should be safe.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-10-04  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        Add missing "from __future__ import with_statement" that was
-        breaking test-webkitpy on the Leopard bots (broke in r69040).
-
-        * Scripts/webkitpy/layout_tests/port/google_chrome.py:
-
-2010-10-04  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r69066.
-        http://trac.webkit.org/changeset/69066
-        https://bugs.webkit.org/show_bug.cgi?id=47163
-
-        Made NRWT reliability worse. (Requested by tkent on #webkit).
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-
-2010-10-04  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
-
-        Reviewed by Tony Chang.
-
-        [NRWT] Reverse the http tests to alphabetical order.
-        https://bugs.webkit.org/show_bug.cgi?id=47075
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-10-04  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Fix timeout on http/tests/navigation/post-goback2.html and postredirect-goback2.html
-
-        We need to queue back and forward navigations in the DRT from the
-        LayoutTestController so that maybeDump() knows about them.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::queueBackNavigation):
-        (LayoutTestController::queueForwardNavigation):
-
-2010-10-04  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [chromium] fix image diffing in NRWT
-        https://bugs.webkit.org/show_bug.cgi?id=47128
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py: Flush data to the
-              temp file and check the image_diff error code more carefully
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-
-2010-10-04  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        aroben's change in r68792 actually broke new-run-webkit-tests when
-        running the DRT code path. His change was intended to fix the
-        way we were converting windows paths to URIs when running under
-        Cygwin (the paths were getting one too many "/" on the front).
-        However, the change ended up breaking the chromium_win port, which
-        had slightly different logic.
-
-        This patch removes the port-specific code and adds tests to make
-        sure we're getting the behavior we expect. The Port object no longer
-        exposes a get_absolute_path() method that can be used outside of
-        of converting test filenames, because it's unreliable otherwise
-        (we don't have the right context to know which conversion is intended).
-
-        https://bugs.webkit.org/show_bug.cgi?id=47140
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-10-04  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        Handle crash introduced in r69040 if we are not running in a
-        Chromium checkout.
-
-        * Scripts/webkitpy/layout_tests/port/google_chrome_unittest.py:
-
-2010-10-04  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Add a way for us to have test expectations that are specific to the
-        official builds of Google Chrome (as opposed to Chromium). This change
-        looks for an additional "test_expectations_chrome.txt" file in
-        Chromium's repository (webkit/tools/layout_tests), and uses the
-        concatenation of that file and the regular test_expectations.txt
-        file for test overrides.
-
-        https://bugs.webkit.org/show_bug.cgi?id=46854
-
-        * Scripts/webkitpy/layout_tests/port/google_chrome.py:
-        * Scripts/webkitpy/layout_tests/port/google_chrome_unittest.py:
-
-2010-10-04  Simon Fraser  <simon.fraser@apple.com>
-
-        Color tests in the list based on existing pass/fail result.
-        
-        Fix the summary data to account for htmlOnly and nonHTML tests.
-
-        * CSSTestSuiteHarness/harness/harness.css:
-        (#test-list > option.pass):
-        (#test-list > option.fail):
-        (#test-list > option.skipped):
-        * CSSTestSuiteHarness/harness/harness.js:
-        (Test):
-        (Test.prototype.statusForFormat):
-        (TestSuite.prototype.fillTestList):
-        (TestSuite.prototype.updateTestList):
-        (TestSuite.prototype.recordResult):
-        (TestSuite.prototype.markTestCompleted):
-        (TestSuite.prototype.countTestsWithFlag):
-        (TestSuite.prototype.queryDatabaseForSummary.this.db.transaction):
-        (TestSuite.prototype.queryDatabaseForSummary):
-
-2010-10-04  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Beth Dakin.
-
-        AX: doAXRangeForLine does not work
-        https://bugs.webkit.org/show_bug.cgi?id=47101
-
-        DRT support to handle NSAccessibilityRangeForLineParameterizedAttribute.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (rangeForLineCallback):
-        (AccessibilityUIElement::rangeForLine):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::rangeForLine):
-
-2010-10-04  Andrey Kosyakov  <caseq@chromium.org>
-
-        Unreviewed. Adding myself to the committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-10-04  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Add ability to set the CacheModel in Webkit2
-        https://bugs.webkit.org/show_bug.cgi?id=47066
-
-        * MiniBrowser/mac/AppDelegate.m:
-        (-[BrowserAppDelegate init]): Opt minibrowser into
-        a PrimaryWebBrowser cache model.
-
-2010-10-03  Simon Fraser  <simon.fraser@apple.com>
-
-        Make sure to enter all tests when creating the database
-        for the first time.
-        
-        When migrating to a new version of the suite, be sure to
-        sync up the database and testinfo.data by removing old
-        tests, and inserting new ones.
-
-        * CSSTestSuiteHarness/harness/harness.js:
-        (TestSuite.prototype.openDatabase.creation):
-        (TestSuite.prototype.databaseCreated):
-        (TestSuite.prototype.populateDatabaseFromTestInfoData):
-        (TestSuite.prototype.insertTest):
-
-2010-10-03  Simon Fraser  <simon.fraser@apple.com>
-
-        More work on treating HTML4 and XHTML1 independently; when 
-        changing the format, rebuild the test list, and update the 
-        numbers in the chapter popup.
-
-        * CSSTestSuiteHarness/harness/harness.js:
-        (Test):
-        (Test.prototype.runForFormat):
-        (Test.prototype.completedForFormat):
-        (ChapterSection):
-        (ChapterSection.prototype.countTests):
-        (Chapter):
-        (Chapter.prototype.description):
-        (Chapter.prototype.countTests):
-        (Chapter.prototype.testCount):
-        (Chapter.prototype.untestedCount):
-        (TestSuite.prototype.buildChapters):
-        (TestSuite.prototype.loadCurrentTest):
-        (TestSuite.prototype.updateProgressLabel):
-        (TestSuite.prototype.processFlags):
-        (TestSuite.prototype.formatChanged):
-
-2010-10-03  Simon Fraser  <simon.fraser@apple.com>
-
-        Update test suite version 20101001.
-        
-        Handle database migration, and delete tests from the db that are
-        not present in testinfo.data.
-        
-        Load about:blank into the test frame before the test url, to make
-        missing tests more obvious.
-        
-        * CSSTestSuiteHarness/harness/harness.js:
-        (TestSuite.prototype.loadTest):
-        (TestSuite.prototype.openDatabase.creation):
-        (TestSuite.prototype.openDatabase.migration1_0To1_1):
-        (TestSuite.prototype.openDatabase.if.return):
-        (TestSuite.prototype.databaseReady):
-        (TestSuite.prototype.populateDatabaseFromTestInfoData):
-        (TestSuite.prototype.syncDatabaseWithTestInfoData.this.db.transaction):
-        (TestSuite.prototype.syncDatabaseWithTestInfoData):
-
-2010-10-02  Simon Fraser  <simon.fraser@apple.com>
-
-        Add the ability to jump to a specific test.
-
-        * CSSTestSuiteHarness/harness/harness.html:
-        * CSSTestSuiteHarness/harness/harness.js:
-        (TestSuite.prototype.goToTestByName):
-        (TestSuite.prototype.switchToFormat):
-
-2010-10-02  Simon Fraser  <simon.fraser@apple.com>
-
-        For a ref test, load the ref in the same format (HTML4 vs XHTML1)
-        as the test.
-
-        * CSSTestSuiteHarness/harness/harness.js:
-        (TestSuite.prototype.loadRef):
-
-2010-10-02  Simon Fraser  <simon.fraser@apple.com>
-
-        Update the UI to reflect the fact that each test needs to be tested
-        in both HTML4 and XHTML1 format.
-        
-        * CSSTestSuiteHarness/harness/harness.js:
-        (Test):
-        (Chapter.prototype.description):
-        (Chapter.prototype.untestedCount):
-        (TestSuite.prototype.fillChapterPopup):
-        (TestSuite.prototype.updateChapterPopup):
-        (TestSuite.prototype.fillTestList):
-        (TestSuite.prototype.updateTestList):
-        (TestSuite.prototype.goToNextIncompleteTest):
-        (TestSuite.prototype.firstIncompleteTestIndex):
-        (TestSuite.prototype.recordResult):
-        (TestSuite.prototype.formatChanged):
-        (TestSuite.prototype.markTestCompleted):
-        (TestSuite.prototype.resetTestStatus):
-
-2010-10-01  Simon Fraser  <simon.fraser@apple.com>
-
-        Add the ability to remove results for re-testing, and
-        to import results.
-
-        * CSSTestSuiteHarness/harness/harness.css:
-        (.custom button):
-        (#overlay):
-        (#overlay.visible):
-        (.overlay-contents):
-        (.overlay-contents textarea):
-        (.overlay-contents .buttons):
-        (.overlay-contents .note):
-        (.overlay-contents .buttons button):
-        * CSSTestSuiteHarness/harness/harness.html:
-        * CSSTestSuiteHarness/harness/harness.js:
-        (TestSuite.prototype.importResults):
-        (TestSuite.prototype.clearResults):
-        (TestSuite.prototype.markTestCompleted):
-        (TestSuite.prototype.resetTestStatus):
-        (TestSuite.prototype.storeTestResult):
-        (TestSuite.prototype.importTestResults):
-        (TestSuite.prototype.clearTestResults):
-
-2010-10-01  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Jon Honeycutt.
-
-        Deploy the new WKString functions to remove most uses of CF from
-        the WebKitTestRunner.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::didReceiveMessage):
-        (WTR::InjectedBundle::done):
-        * WebKitTestRunner/StringFunctions.h:
-        (WTR::toWK):
-        (WTR::toJS):
-        (WTR::toSTD):
-        (WTR::operator<<):
-        (WTR::copyURLString):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-        (WTR::TestController::didFinishLoadForFrame):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::invoke):
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-
-2010-10-01  Mihai Parparita  <mihaip@chromium.org>
-
-        Unreviewed TestResultsServer change.
-
-        Add files introduced by http://crrev.com/61273 to the list of dashboard 
-        files to update.
-
-        * TestResultServer/handlers/dashboardhandler.py:
-
-2010-10-01  Brian Weinstein  <bweinstein@apple.com>
-
-        Build Fix for Windows.
-
-        * WebKitTestRunner/win/WebKitTestRunner.vcproj: Don't copy ForwardingHeaders from
-            WebKitTestRunner/ForwardingHeaders, instead, add $(WebKitOutputDir)/include/WebCore/
-            ForwardingHeaders to the include path.
-
-2010-10-01  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Add SPI to convert a WKStringRef to a JSStringRef and vice-versa.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2/WKString.cpp:
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/WKStringJSString.cpp: Added.
-        (TestWebKitAPI::TEST):
-
-2010-10-01  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add additional WKString API
-        https://bugs.webkit.org/show_bug.cgi?id=46958
-
-        Add basic WKStringRef tests.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2/WKString.cpp: Added.
-
-2010-10-01  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Dan Bernstein.
-
-        Add makefile for TestWebKitAPI and call it from the base makefile.
-
-        * Makefile:
-        * TestWebKitAPI/Makefile: Added.
-
-2010-10-01  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Remove unnecessary ForwardingHeaders from test runners.
-        https://bugs.webkit.org/show_bug.cgi?id=47010
-
-        * TestWebKitAPI/Configurations/Base.xcconfig:
-        * TestWebKitAPI/ForwardingHeaders: Removed.
-        * WebKitTestRunner/Configurations/Base.xcconfig:
-        * WebKitTestRunner/ForwardingHeaders: Removed.
-
-2010-09-30  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        WebSocket tests are flaky
-        https://bugs.webkit.org/show_bug.cgi?id=46956
-
-        Update these tools to understand how to run the WebSocket tests off the
-        Apache server.
-
-        * Scripts/old-run-webkit-tests:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-10-01  Adam Roben  <aroben@apple.com>
-
-        Encode Executive command arguments using UTF-8 on Cygwin
-
-        Cygwin's Python's os.execv doesn't support unicode command arguments.
-        Cygwin's execv expects arguments to be encoded using the current code
-        page. But code pages are limited in what characters they can handle,
-        and our tests include characters that the English code page can't
-        handle.  So for now we'll just encode everything in UTF-8 on Cygwin,
-        which can handle all characters but might confuse some commands, for
-        expediency's sake. I'm sure we'll run into cases where UTF-8 isn't
-        good enough, but we can deal with that when the problem arises.
-
-        Reviewed by Adam Barth.
-
-        Fixes <http://webkit.org/b/46892> <rdar://problem/8496639>
-        webkitpy.common.system.executive_unittest.ExecutiveTest.test_run_command_with_unicode
-        fails on Windows
-
-        * Scripts/webkitpy/common/system/executive.py:
-        (Executive._run_command_with_teed_output):
-        (Executive.run_command):
-        On Cygwin, encode arguments using UTF-8.
-
-2010-10-01  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Add simple API tester for WebKit2
-        https://bugs.webkit.org/show_bug.cgi?id=46953
-
-        This adds a very simple testing infrastructure for testing APIs exposed
-        through the WebKit project. It consists of two parts: 1) a project that
-        builds the all the tests 2) a script that searches the tests directory and
-        calls the tester once for each test.
-
-        This adds the infrastructure and two tests:
-        - Tests/WTF/Vector1.cpp - A proof of concept test of WTF data-structures.
-        - Tests/WebKit2/BasicTest1.cpp - A proof of concept test of WebKit2 API.
-
-        This currently only works on the mac, but is designed to be easily ported 
-        to any platform.
-
-        * Scripts/run-api-tests: Added.
-        * Scripts/build-api-tests: Added.
-        Scripts to build/run the tests.
-
-        * TestWebKitAPI: Added.
-        * TestWebKitAPI/Configurations: Added.
-        * TestWebKitAPI/Configurations/Base.xcconfig: Added.
-        * TestWebKitAPI/Configurations/DebugRelease.xcconfig: Added.
-        * TestWebKitAPI/Configurations/TestWebKitAPI.xcconfig: Added.
-        * TestWebKitAPI/ForwardingHeaders: Added.
-        * TestWebKitAPI/ForwardingHeaders/wtf: Added.
-        * TestWebKitAPI/PlatformUtilities.h: Added.
-        * TestWebKitAPI/PlatformWebView.h: Added.
-        (TestWebKitAPI::PlatformWebView::platformView):
-        * TestWebKitAPI/StringFunctions.h: Added.
-        * TestWebKitAPI/Test.h: Added.
-        (TestWebKitAPI::Test::~Test):
-        (TestWebKitAPI::Test::name):
-        (TestWebKitAPI::Test::Register::Register):
-        (TestWebKitAPI::Test::Register::create):
-        (TestWebKitAPI::Test::Test):
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj: Added.
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj: Added.
-        * TestWebKitAPI/TestWebKitAPIPrefix.h: Added.
-        * TestWebKitAPI/TestsController.cpp: Added.
-        (TestWebKitAPI::TestsController::shared):
-        (TestWebKitAPI::TestsController::TestsController):
-        (TestWebKitAPI::TestsController::runTestNamed):
-        (TestWebKitAPI::TestsController::testFailed):
-        (TestWebKitAPI::TestsController::registerCreateTestFunction):
-        * TestWebKitAPI/TestsController.h: Added.
-        * TestWebKitAPI/mac: Added.
-        * TestWebKitAPI/mac/PlatformUtilitiesMac.mm: Added.
-        (TestWebKitAPI::Util::run):
-        (TestWebKitAPI::Util::createURLForResource):
-        * TestWebKitAPI/mac/PlatformWebViewMac.mm: Added.
-        (TestWebKitAPI::PlatformWebView::PlatformWebView):
-        (TestWebKitAPI::PlatformWebView::resizeTo):
-        (TestWebKitAPI::PlatformWebView::~PlatformWebView):
-        (TestWebKitAPI::PlatformWebView::page):
-        (TestWebKitAPI::PlatformWebView::focus):
-        * TestWebKitAPI/mac/main.mm: Added.
-        Infrastructure.
-
-        * TestWebKitAPI/Tests: Added.
-        * TestWebKitAPI/Tests/WTF: Added.
-        * TestWebKitAPI/Tests/WTF/Vector1.cpp: Added.
-        * TestWebKitAPI/Tests/WebKit2: Added.
-        * TestWebKitAPI/Tests/WebKit2/BasicTest1.cpp: Added.
-        (TestWebKitAPI::State::State):
-        * TestWebKitAPI/Tests/WebKit2/basic-1.html: Added.
-        Proof of concept tests.
-
-2010-10-01  Adam Roben  <aroben@apple.com>
-
-        Don't assume AccessibleObjectFromEvent succeeds
-
-        Fixes <http://webkit.org/b/44136> <rdar://problem/8321684> Crash in
-        DumpRenderTree!notificationListenerProc when running
-        plugins/access-after-page-destroyed.html
-
-        Reviewed by Sam Weinig.
-
-        * DumpRenderTree/win/AccessibilityControllerWin.cpp:
-        (notificationListenerProc): Check both the return value of
-        AccessibleObjectFromEvent and the object it returns, as MSDN
-        recommends.
-
-2010-10-01  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
-
-        Reviewed by Tony Chang.
-
-        [NRWT] Put the http and websocket tests first in the test list.
-        https://bugs.webkit.org/show_bug.cgi?id=46453
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-10-01  Fady Samuel  <fsamuel@chromium.org>
-
-        Unreviewed, adding myself to the committer list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-10-01  Adam Roben  <aroben@apple.com>
-
-        Test NPN_GetValue(NPNVnetscapeWindow)
-
-        Test for <http://webkit.org/b/46726> <rdar://problem/8486319>
-        Right-clicking on windowless Flash plugin in WebKit2 makes a context
-        menu appear in the bottom-right corner of the screen
-
-        Reviewed by Anders Carlsson.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-        (PluginTest::NPN_GetValue): Added. Calls through to the browser.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.h: Added NPN_GetValue.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/win/GetValueNetscapeWindow.cpp: Added.
-        (GetValueNetscapeWindow::GetValueNetscapeWindow): Initialize members.
-        (GetValueNetscapeWindow::NPP_SetWindow): Test that
-        NPN_GetValue(NPNVnetscapeWindow) returns a valid HWND and that it
-        isn't our HWND.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        Added GetValueNetscapeWindow.
-
-2010-10-01  Andreas Kling  <andreas.kling@nokia.com>
-
-        Unreviewed, adding my webkit.org identity to reviewer list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-09-30  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        The WebSocket server should flush its logs
-        https://bugs.webkit.org/show_bug.cgi?id=46946
-
-        The WebSocket server logs are truncated because the driver just
-        terminates the child.  It should run Python without buffering so we can
-        see the end of the log.
-
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-
-2010-09-30  Simon Fraser  <simon.fraser@apple.com>
-
-        Add a button to jump to the next untested test.
-        
-        * CSSTestSuiteHarness/harness/harness.css:
-        (.test-type):
-        (.name > button):
-        * CSSTestSuiteHarness/harness/harness.html:
-        * CSSTestSuiteHarness/harness/harness.js:
-        (Chapter.prototype.description):
-        (Chapter.prototype.untestedCount):
-        (TestSuite.prototype.testInfoDataLoaded):
-        (TestSuite.prototype.fillChapterPopup):
-        (TestSuite.prototype.updateChapterPopup):
-        (TestSuite.prototype.buildTestListForChapter):
-        (TestSuite.prototype.goToNextIncompleteTest):
-        (TestSuite.prototype.firstIncompleteTestIndex):
-        (TestSuite.prototype.testCompletionStateChanged):
-
-2010-09-29  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        WebKit2 on Windows should use Windows fonts for the various standard
-        font families
-        https://bugs.webkit.org/show_bug.cgi?id=43499
-        <rdar://problem/8272758>
-
-        Reviewed by Adam Roben.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-        Use the Mac fonts for running tests. This matches DRT behavior.
-
-2010-09-30  Adam Barth  <abarth@webkit.org>
-
-        Third attempt.  We need a better integration test environment.
-
-        * Scripts/webkitpy/common/net/failuremap.py:
-        * Scripts/webkitpy/common/net/failuremap_unittest.py:
-
-2010-09-30  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Support for PlainTextController
-
-        Unskip editing/text-iterator/basic-iteration.html
-
-        https://bugs.webkit.org/show_bug.cgi?id=38805
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::initJSObjects):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        * DumpRenderTree/qt/PlainTextControllerQt.cpp: Added.
-        (PlainTextController::PlainTextController):
-        (PlainTextController::plainText):
-        * DumpRenderTree/qt/PlainTextControllerQt.h: Added.
-
-2010-09-30  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Second attempt to fix sheriffbot.
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-
-2010-09-30  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        This patch should stop the sheriffbot from throwing an exception.
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-
-2010-09-30  Brian Weinstein  <bweinstein@apple.com>
-
-        Reviewed by Adam Roben.
-
-        The same bots shouldn't run both Windows Debug Tests and Windows Release Tests.
-        https://bugs.webkit.org/show_bug.cgi?id=46926
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Have two bots running Windows 
-            Release Tests, and two bots running Windows Debug Tests, instead of four running both.
-
-2010-09-30  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        webkit-patch find-flaky-tests should print results URLs
-        https://bugs.webkit.org/show_bug.cgi?id=46917
-
-        Printing out the results URL makes find-flaky-tests more actionable
-        because you can see what happens when a test fails.  The output from
-        the script is still pretty noisy, but it seems useful.
-
-        * Scripts/webkitpy/tool/commands/queries.py:
-
-2010-09-30  Chris Marrin  <cmarrin@apple.com>
-
-        Reviewed by Simon Fraser.
-
-        Make 2D accelerated canvas rendering build on Mac
-        https://bugs.webkit.org/show_bug.cgi?id=46007
-        
-        Added ACCELERATED_2D_CANVAS to build-webkit
-
-        * Scripts/build-webkit:
-
-2010-09-29  Kenneth Russell  <kbr@google.com>
-
-        Reviewed by Dimitri Glazkov.
-
-        [chromium] Add accelerated compositing support to DumpRenderTree and test_shell
-        https://bugs.webkit.org/show_bug.cgi?id=46849
-
-        Added offscreen code path for WebGraphicsContext3DDefaultImpl which
-        works with the compositor integration in both DumpRenderTree and
-        test_shell, since both pass a non-null WebCanvas* to WebViewImpl::paint
-        and thereby trigger the compositor's readback code path. Added support
-        for --enable-accelerated-compositing to DumpRenderTree.
-
-        Tested in both test_shell and DumpRenderTree on Linux, the latter by
-        modifying a compositing layout test, dumping the pixels and verifying
-        that they matched the output when the compositor was active.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::resetWebSettings):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::setAcceleratedCompositingEnabled):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::scheduleComposite):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2010-09-30  Adam Roben  <aroben@apple.com>
-
-        Ensure that QueueEngine cleans up its log files when its delegate
-        tells it to stop processing work
-
-        Reviewed by Adam Barth.
-
-        Fixes <http://webkit.org/b/46891> <rdar://problem/8496638> Many tests
-        in webkitpy.tool.bot.queueengine_unittest.QueueEngineTest crash on
-        Windows
-
-        * Scripts/webkitpy/tool/bot/queueengine.py:
-        (QueueEngine.run): Stop ourselves normally (including cleaning up log
-        files) when the delegate tells us to stop processing work.
-
-        * Scripts/webkitpy/tool/bot/queueengine_unittest.py:
-        (LoggingDelegate.__init__): Moved code here from
-        RaisingDelegate.__init__.
-        (LoggingDelegate.expeced_callbacks): Added the stop_work_queue
-        callback.
-        (LoggingDelegate.stop_work_queue): Moved here from RaisingDelegate.
-        (RaisingDelegate.__init__): Removed code that LoggingDelegate takes
-        care of for us now.
-        (QueueEngineTest.test_trivial): Make sure we got the expected stop
-        message.
-        (QueueEngineTest.test_not_safe_to_proceed): Changed to explicitly
-        remove the callbacks that are related to processing a single work
-        item, rather than removing all callbacks after a certain point, as
-        there are now more callbacks we expect to receive at the end.
-
-2010-09-30  Adam Roben  <aroben@apple.com>
-
-        Fix path -> URL conversion on Cygwin
-
-        Reviewed by Adam Barth.
-
-        Fixes <http://webkit.org/b/46890> <rdar://problem/8496637> Many tests
-        in webkitpy.layout_tests.run_webkit_tests_unittest assert on Windows
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.filename_to_uri): Treat Cygwin like other UNIX-y platforms by
-        assuming paths already have a leading slash.
-
-2010-09-30  Adam Roben  <aroben@apple.com>
-
-        Teach WindowGeometryInitializedBeforeSetWindow that NPP_SetWindow can
-        be called more than once
-
-        The NPP_SetWindow call made when the plugin is torn down was confusing
-        us, and was causing us to spew an error into the next test.
-
-        Fixes <http://webkit.org/b/46900> <rdar://problem/8496888> REGRESSION
-        (r68520): plugins/access-after-page-destroyed.html failing on Windows
-
-        Reviewed by Anders Carlsson.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/win/WindowGeometryInitializedBeforeSetWindow.cpp:
-        (WindowGeometryInitializedBeforeSetWindow::WindowGeometryInitializedBeforeSetWindow):
-        Initialize member.
-        (WindowGeometryInitializedBeforeSetWindow::NPP_SetWindow): Bail if
-        this isn't the first time this is called.
-
-2010-09-30  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        webkit-patch upload warns that I'm using Xcode when I'm not
-        https://bugs.webkit.org/show_bug.cgi?id=46869
-
-        String.find returns -1 when not found, so switched to "in".
-
-        * Scripts/webkitpy/common/system/user.py:
-        * Scripts/webkitpy/common/system/user_unittest.py:
-
-2010-09-30  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        webkit-patch failure-reason dies if non-trunk commits are in the blame range
-        https://bugs.webkit.org/show_bug.cgi?id=46866
-
-        I also made failure-reason use RegressionWindow in a cleaner way.
-
-        * Scripts/webkitpy/tool/commands/queries.py:
-
-2010-09-29  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        webkit-patch find-flaky-tests
-        https://bugs.webkit.org/show_bug.cgi?id=46876
-
-        This command helps us find flaky tests so we can squash them.
-
-        * Scripts/webkitpy/tool/commands/queries.py:
-
-2010-09-29  Simon Fraser  <simon.fraser@apple.com>
-
-        Fix export to use '?' instead of 'null' for
-        tests with no results.
-        
-        * CSSTestSuiteHarness/harness/harness.js:
-
-2010-09-29  Simon Fraser  <simon.fraser@apple.com>
-
-        Add a warning when a test requires special steps.
-        Add a Print Preview button for 'paged' tests that
-        brings up the print dialog, allowing the user to 
-        judge paged media tests.
-
-        * CSSTestSuiteHarness/harness/harness.css:
-        * CSSTestSuiteHarness/harness/harness.html:
-        * CSSTestSuiteHarness/harness/harness.js:
-        (TestSuite.prototype.loadTest):
-        (TestSuite.prototype.processFlags):
-
-2010-09-29  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Remove revisions_casuing_failures
-        https://bugs.webkit.org/show_bug.cgi?id=46872
-
-        This function exists only to be unit tested.
-
-        * Scripts/webkitpy/common/net/failuremap.py:
-        * Scripts/webkitpy/common/net/failuremap_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-09-29  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        SheriffBot should post the list of failing tests to bugs
-        https://bugs.webkit.org/show_bug.cgi?id=46871
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-        * Scripts/webkitpy/common/net/failuremap.py:
-        * Scripts/webkitpy/common/net/regressionwindow.py:
-        * Scripts/webkitpy/tool/bot/sheriff.py:
-        * Scripts/webkitpy/tool/bot/sheriff_unittest.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot_unittest.py:
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-09-29  Brent Fulgham  <bfulgham@webkit.org>
-
-        Reviewed by Martin Robinson, Eric Seidel, and Mark Rowe.
-
-        [WinCairo] Adds a build slave.
-        https://bugs.webkit.org/show_bug.cgi?id=46360
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Add
-        entries for a debug build of the WinCairo port.
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Add
-        platform flag to configuration for wincairo (like gtk, chromium, etc.)
-        * Scripts/build-webkit: Change 'cairo-win32' labeling to 'wincairo'
-        * Scripts/webkitdirs.pm: Change 'cairo-win32' labeling to 'wincairo'
-
-2010-09-29  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Move more SheriffBot smarts into FailureMap
-        https://bugs.webkit.org/show_bug.cgi?id=46703
-
-        This patch pushes the FailureMap model object further into the
-        SheriffBot machine.  In addition, it moves a couple operations on this
-        object from SheriffBot itself to the model.
-
-        Eventually, FailureMap will be the canonical context object for
-        SheriffBot operations.  FailureMap represents a map of the current
-        failures on the bots that might require remediation.
-
-        * Scripts/webkitpy/common/net/failuremap.py:
-        * Scripts/webkitpy/common/net/regressionwindow.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-09-29  Tony Chang  <tony@chromium.org>
-
-        Reviewed by James Robinson.
-
-        [chromium] enable -Werror for DRT and webkit_unit_tests on Linux
-        https://bugs.webkit.org/show_bug.cgi?id=46829
-
-        * DumpRenderTree/chromium/DRTDevToolsClient.cpp:
-        (DRTDevToolsClient::DRTDevToolsClient):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::postAccessibilityNotification):
-        (WebViewHost::WebViewHost):
-
-2010-09-29  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Darin Adler.
-
-        AX: implement CSS3 Speech "speak"
-        https://bugs.webkit.org/show_bug.cgi?id=46827
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (speakCallback):
-        (AccessibilityUIElement::speak):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::speak):
-
-2010-09-29  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Record bot ID when updating queue status
-        https://bugs.webkit.org/show_bug.cgi?id=46764
-        
-        Since we now have multiple bots handling patches from the commit queue,
-        we need to differentiate status updates from them, so that we can group
-        the queue status page in a less confusing way.
-
-        * QueueStatusServer/handlers/updatestatus.py: Accept bot_id as input
-        * QueueStatusServer/model/queuestatus.py: Add bot_id property
-        * QueueStatusServer/templates/updatestatus.html: Add bot_id input
-        * Scripts/webkitpy/common/net/bugzilla_unittest.py: Extract MockBrowser
-        * Scripts/webkitpy/common/net/statusserver.py: Add bot_id
-        * Scripts/webkitpy/common/net/statusserver_unittest.py: Added.
-        * Scripts/webkitpy/tool/main.py: Add --bot-id
-        * Scripts/webkitpy/tool/mocktool.py: Add MockBrowser
-
-2010-09-29  Simon Fraser  <simon.fraser@apple.com>
-
-        No review.
-        
-        References always refert to a file in .xht format, even
-        for HTML tests, so fix their loading.
-
-        * CSSTestSuiteHarness/harness/harness.js:
-        (TestSuite.prototype.loadRef):
-
-2010-09-28  Johnny Ding  <jnd@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        https://bugs.webkit.org/show_bug.cgi?id=41292
-        Add a new parameter to the test plugin to allow specifying a script 
-        and a mouse/keyboard event. The specified script will be evaluated
-        in the browser when the specified event is received by the plugin.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:
-        (pluginAllocate):
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.h:
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_New):
-        (handleEventCarbon):
-        (handleEventCocoa):
-
-2010-09-28  Simon Fraser  <simon.fraser@apple.com>
-
-        Fix export by adding missing argument.
-
-        * CSSTestSuiteHarness/harness/harness.js:
-        (TestSuite.prototype.showResultsForAllTests):
-
-2010-09-28  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix, add missing import.
-
-        * wx/packaging/build-win-installer.py:
-
-2010-09-28  Simon Fraser  <simon.fraser@apple.com>
-
-        No review
-        
-        Show which tests have been run by dimming them out in the test list.
-        
-        Adjust some element sizes.
-        
-        * CSSTestSuiteHarness/harness/harness.css:
-        (#test-list > option.untested):
-        (#test-list > option.completed):
-        (#output):
-        (.output-options):
-        * CSSTestSuiteHarness/harness/harness.js:
-        (Test):
-        (TestSuite.prototype.fillTestList):
-        (TestSuite.prototype.updateTestList):
-        (TestSuite.prototype.setSelectedChapter):
-        (TestSuite.prototype.recordResult):
-        (TestSuite.prototype.markTestCompleted):
-        (TestSuite.prototype.testCompletionStateChanged):
-        (TestSuite.prototype.loadTestStatus):
-
-2010-09-28  Simon Fraser  <simon.fraser@apple.com>
-
-        No review.
-        
-        Implement export of various queries on the test database, sharing
-        code with that which displays results inline.
-
-        * CSSTestSuiteHarness/harness/harness.js:
-        ():
-        (TestSuite.prototype.exportResultsCompletion.var):
-        (TestSuite.prototype.exportResultsCompletion):
-        (TestSuite.prototype.showResultsForCompletedTests):
-        (TestSuite.prototype.exportResultsForCompletedTests):
-        (TestSuite.prototype.showResultsForAllTests):
-        (TestSuite.prototype.exportResultsForAllTests):
-        (TestSuite.prototype.exportResultsForTestsNotRun):
-        (TestSuite.prototype.exportResultsForTestsWithStatus):
-        (TestSuite.prototype.exportResultsForTestsWithMismatchedResults):
-
-2010-09-28  Simon Fraser  <simon.fraser@apple.com>
-
-        No review.
-
-        Work around uncertainty about the order of database
-        transactions when creating the database, so that we don't
-        try to query the table before it has been created.
-
-        * CSSTestSuiteHarness/harness/harness.js:
-        (TestSuite):
-        (TestSuite.prototype.databaseCreated):
-        (TestSuite.prototype.storeTestResult):
-        (TestSuite.prototype.populateDatabaseFromTestInfoData):
-        (TestSuite.prototype.queryDatabaseForTestsWithStatus):
-        (TestSuite.prototype.queryDatabaseForTestsWithMixedStatus):
-        (TestSuite.prototype.queryDatabaseForCompletedTests):
-        (TestSuite.prototype.queryDatabaseForTestsNotRun):
-
-2010-09-28  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        add python keyring support to webkit-patch
-        https://bugs.webkit.org/show_bug.cgi?id=41269
-
-        * Scripts/webkitpy/common/net/credentials.py: Add the ability to read passwords using
-            the python keyring module
-        * Scripts/webkitpy/common/net/credentials_unittest.py:
-        * Scripts/webkitpy/common/system/user.py: Allow confirm() to default to no and add testing params.
-        * Scripts/webkitpy/common/system/user_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-09-28  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        [Cairo] FreeType fonts should obey FontConfig hinting/anti-aliasing settings
-        https://bugs.webkit.org/show_bug.cgi?id=46740
-
-        * DumpRenderTree/gtk/fonts/fonts.conf: Add specialized variants of common
-        fonts which can be used to fully test FontConfig rendering settings.
-
-2010-09-28  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        [gtk] Fedora has a different path for the liberation fonts
-        https://bugs.webkit.org/show_bug.cgi?id=46709
-
-        When searching for DRT fonts, also look in the path where those fonts
-        are commonly found on Fedora systems.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (initializeFonts): Include logic for looking for Fedora-style font paths.
-
-2010-09-28  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Andreas Kling.
-
-        run-webkit-tests needs an updated list of directories with webgl tests
-        https://bugs.webkit.org/show_bug.cgi?id=46747
-
-        Update the list of directories containing WebGL tests and a unit test
-        which depends on this list.
-
-        * Scripts/old-run-webkit-tests: Update the list of directories.
-        * Scripts/webkitpy/layout_tests/port/webkit.py: Ditto.
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py: Update the expected result.
-
-2010-09-28  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Introduce FailureMap to summaries the failures status of all the bots
-        https://bugs.webkit.org/show_bug.cgi?id=46700
-
-        This patch gives the SheriffBot a handle on the list of failing tests.
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-        * Scripts/webkitpy/common/net/failuremap.py: Added.
-        * Scripts/webkitpy/tool/commands/queries.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-09-28  Adam Roben  <aroben@apple.com>
-
-        Update for the addition of WKPageUIClient::didNotHandleKeyEvent
-
-        Fixes <http://webkit.org/b/46660> <rdar://problem/8483465> Need API to
-        tell a WebKit2 client application that a key event was not handled
-
-        Reviewed by Kenneth Rohde Christiansen and Sam Weinig.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * MiniBrowser/win/BrowserView.cpp:
-        (BrowserView::create):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::createOtherPage):
-        (WTR::TestController::initialize):
-
-2010-09-28  Simon Fraser  <simon.fraser@apple.com>
-
-        Unreviewed.
-
-        Update the CSSTestSuiteHarness to not scrape the XHTML chapter files
-        for the test order, but instead use information from testinfo.data.
-        
-        * CSSTestSuiteHarness/harness/harness.html:
-        * CSSTestSuiteHarness/harness/harness.js:
-
-2010-09-28  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix, don't try to get the svn revision from the git repo when packaging,
-        it causes the process to hang on the gitorious repo.
-
-        * wx/packaging/build-mac-installer.py:
-        * wx/packaging/build-win-installer.py:
-
-2010-09-28  Adam Roben  <aroben@apple.com>
-
-        Test that a plugin's HWND is sized/positioned before NPP_SetWindow is
-        called
-
-        Reviewed by Anders Carlsson.
-
-        Test for <http://webkit.org/b/46716> <rdar://problem/8482014>
-        Full-page Adobe Reader does not paint until window is resized
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-        (PluginTest::NPP_SetWindow): Added. Just returns NPERR_NO_ERROR at
-        this level.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.h: Declared
-        NPP_SetWindow.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/win/WindowGeometryInitializedBeforeSetWindow.cpp: Added.
-        (WindowGeometryInitializedBeforeSetWindow::NPP_SetWindow): Checks that
-        the plugin's HWND has a non-zero size and that its size/position
-        matches that specified in the NPWindow.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_SetWindow): Call through to the PluginTest.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        Added WindowGeometryInitializedBeforeSetWindow.cpp, and let VS reorder
-        the files as it saw fit.
-
-2010-09-28  Benjamin Poulain  <benjamin.poulain@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Remove support for Qt 4.5
-        https://bugs.webkit.org/show_bug.cgi?id=46718
-
-        Remove the code for versions of Qt prior to 4.6.
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::addTouchPoint):
-        (EventSender::updateTouchPoint):
-        (EventSender::setTouchModifier):
-        (EventSender::touchStart):
-        (EventSender::touchMove):
-        (EventSender::touchEnd):
-        (EventSender::clearTouchPoints):
-        (EventSender::releaseTouchPoint):
-        (EventSender::sendTouchEvent):
-        * DumpRenderTree/qt/EventSenderQt.h:
-        * DumpRenderTree/qt/TextInputControllerQt.cpp:
-        (TextInputController::setMarkedText):
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::LauncherWindow):
-        (LauncherWindow::initializeView):
-        (LauncherWindow::createChrome):
-        (LauncherWindow::sendTouchEvent):
-        (LauncherWindow::eventFilter):
-        (LauncherWindow::applyZoom):
-        (LauncherWindow::setTouchMocking):
-        * QtTestBrowser/launcherwindow.h:
-        * QtTestBrowser/utils.cpp:
-        (urlFromUserInput):
-        * QtTestBrowser/webview.cpp:
-        (WebViewGraphicsBased::animatedFlip):
-        (WebViewGraphicsBased::animatedYFlip):
-        * QtTestBrowser/webview.h:
-        (WebViewGraphicsBased::setYRotation):
-
-2010-09-28  İsmail Dönmez  <ismail@namtrac.org>
-
-        Reviewed by Andreas Kling.
-
-        Fix DRT compilation on WinCE. Introduce a WCECOMPAT variable
-        which should point to wcecompat installation. Needs wcecompat
-        library from http://github.com/mauricek/wcecompat .
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-
-2010-09-28  Daniel Bates  <dbates@rim.com>
-
-        Rollout changeset 68493 <http://trac.webkit.org/changeset/68493>
-        <https://bugs.webkit.org/show_bug.cgi?id=39136>
-
-        Rollout changeset 68493 because it broke Sheriffbot's rollout feature.
-        In particular, this change caused Sheriffbot to raise an exception when
-        trying to parse the bug id on a bug page. We need to look into this
-        some more.
-
-        * Scripts/webkitpy/common/net/bugzilla.py:
-        * Scripts/webkitpy/common/net/bugzilla_unittest.py:
-        * Scripts/webkitpy/tool/bot/sheriff.py:
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/upload.py:
-        * Scripts/webkitpy/tool/steps/closebug.py:
-        * Scripts/webkitpy/tool/steps/obsoletepatches.py:
-        * Scripts/webkitpy/tool/steps/preparechangelog.py:
-        * Scripts/webkitpy/tool/steps/updatechangelogswithreviewer.py:
-
-2010-09-28  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Move RegressionWindow further up the dependency chain
-        https://bugs.webkit.org/show_bug.cgi?id=46698
-
-        Baby steps towards pushing this information into bug posts.
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot_unittest.py:
-        * Scripts/webkitpy/common/net/regressionwindow.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-
-2010-09-27  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Adam Barth.
-
-        sheriffbot can't roll out security patches
-        https://bugs.webkit.org/show_bug.cgi?id=39136
-
-        Make SheriffBot determine if it's authorized to view a bug
-        whose change it wants to rollout before it tries to rollout
-        the change.
-
-        Moreover, make both webkit-patch and Sheriffbot provide human-
-        readable error messages when they are not authorized to view
-        a bug and when a bug number is invalid.
-
-        Currently, Sheriffbot does not parse Bugzilla bugs for
-        <bug error="...">, which indicates an error when retrieving
-        a bug. In particular, error="NotPermitted" if a person (or bot)
-        is not authorized to view a bug. For such error="NotPermitted" bugs,
-        Sheriffbot raises an exception when parsing the bug report and
-        this exception does not explicitly indicate Sheriffbot's lack
-        of authorization. Instead, Sheriffbot should explicitly check
-        for the presence <bug error="..."> before operating on a bug
-        and error with a human-readable message if it's not permitted
-        to view it.
-
-        * Scripts/webkitpy/common/net/bugzilla.py: Added BugzillaError class.
-        * Scripts/webkitpy/common/net/bugzilla_unittest.py:
-          - Added unit test test_bug_parsing_for_bugzilla_not_permitted_error().
-          - Added unit test test_bug_parsing_for_bugzilla_not_found_error().
-          - Added unit test test_bug_parsing_for_bugzilla_invalid_bug_id_error().
-        * Scripts/webkitpy/tool/bot/sheriff.py: Modified to catch BugzillaError.
-        * Scripts/webkitpy/tool/commands/download.py: Ditto.
-        * Scripts/webkitpy/tool/commands/queues.py: Ditto.
-        * Scripts/webkitpy/tool/commands/upload.py: Ditto.
-        * Scripts/webkitpy/tool/steps/closebug.py: Ditto.
-        * Scripts/webkitpy/tool/steps/obsoletepatches.py: Ditto.
-        * Scripts/webkitpy/tool/steps/preparechangelog.py: Ditto.
-        * Scripts/webkitpy/tool/steps/updatechangelogswithreviewer.py: Ditto.
-
-2010-09-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Expose more more failure information from Buildbot to SheriffBot
-        https://bugs.webkit.org/show_bug.cgi?id=46697
-
-        This patch moves the information about what tests failured closer to
-        SheriffBot.  There are still a couple more patches to go before
-        SheriffBot can post this information to bugs, but this is a step in
-        that direction.  Yay for unit tests, which caught some bugs in earlier
-        versions of this patch.
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot_unittest.py:
-        * Scripts/webkitpy/common/net/regressionwindow.py: Added.
-        * Scripts/webkitpy/tool/commands/queries.py:
-
-2010-09-27  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Fixing 500 error seen in the status server.
-
-        It turns out that a = b = []; b.append(1); then a[0] will be 1!
-        This should have been obvious to me, I guess, but it was not what I was expecting.
-
-        * QueueStatusServer/model/activeworkitems.py:
-
-2010-09-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        commit-queue should reject patches that fail to land
-        https://bugs.webkit.org/show_bug.cgi?id=46694
-
-        This can happen, for example, if there's no reviewer.  Without this
-        patch, we'll keep retrying the patch.
-
-        * Scripts/webkitpy/tool/bot/commitqueuetask.py:
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-
-2010-09-27  Simon Fraser  <simon.fraser@apple.com>
-
-        Rubber-stamped by Adele Peterson.
-
-        Add a harness for running the CSS 2.1 test suite.
-        
-        This harness assumes that you've got a local a copy of the suite
-        adjacent to the 'harness' directory.
-        
-        The harness lets you go through the tests in chapter order,
-        denoting pass/fail/skipped for each test.
-        
-        It uses a client-side database to store the results of testing.
-
-        * CSSTestSuiteHarness/harness/harness.css: Added.
-        * CSSTestSuiteHarness/harness/harness.html: Added.
-        * CSSTestSuiteHarness/harness/harness.js: Added.
-
-2010-09-27  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Patch locks should expire if a patch is marked for retry
-        https://bugs.webkit.org/show_bug.cgi?id=46682
-
-        This was part Adam's original CommitQueueTask design,
-        but support for it was missing from the server.
-        I added the support, but triggering lock-release based on this
-        special "retry" status feels a bit strange so I added a FIXME.
-
-        I also changed the text in queuestatus.html to say "Lock Acquired"
-        since "Last Activity" isn't really true.  We only update the lock
-        date when the patch is started, not on every status update.
-
-        I also noticed an exception in next-patch, which I fixed by re-writing
-        the unzip logic in activeworkitems.py again.
-
-        * QueueStatusServer/handlers/updatestatus.py:
-        * QueueStatusServer/model/activeworkitems.py:
-        * QueueStatusServer/templates/queuestatus.html:
-
-2010-09-27  Tony Chang  <tony@chromium.org>
-
-        Reviewed by David Levin.
-
-        [chromium] fix a warning when compiling DRT on 32-bit linux
-        https://bugs.webkit.org/show_bug.cgi?id=46641
-
-        * DumpRenderTree/chromium/TestEventPrinter.cpp:
-        (DRTPrinter::handleImage):
-
-2010-09-27  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        queue-status should report when the patch was last locked to a queue
-        https://bugs.webkit.org/show_bug.cgi?id=46674
-
-        This isn't necessarily the best way to expose this information
-        but having this accessible via the web interface is very
-        useful until we come up with a nicer way to display this.
-
-        I also cleaned up the code in activeworkitems.py a little
-        to use list comprehensions and to have the code work with
-        pairs instead of two lists at once.  Eventually I think those
-        item/time pairs need to be their own little helper class.
-
-        * QueueStatusServer/handlers/queuestatus.py:
-        * QueueStatusServer/model/activeworkitems.py:
-        * QueueStatusServer/templates/queuestatus.html:
-
-2010-09-27  Tony Chang  <tony@chromium.org>
-
-        Reviewed by David Levin.
-
-        [chromium] fix detection of missing fonts on DRT
-        https://bugs.webkit.org/show_bug.cgi?id=46651
-
-        * DumpRenderTree/chromium/TestShellGtk.cpp:
-        (setupFontconfig):  Only print an error message if lohit isn't found in both locations.
-
-2010-09-27  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        add webkit unit tests to the chromium testers
-        https://bugs.webkit.org/show_bug.cgi?id=46669
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        * Scripts/run-chromium-webkit-unit-tests: Fix a bug where we weren't using the right configuration.
-
-2010-09-27  Kwang Yul Seo  <skyul@company100.net>
-
-        Unreviewed.
-
-        Adding myself to the committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-09-27  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        webkitpy.common.system.user_unittest.UserTest.test_prompt_with_list spams the console
-        https://bugs.webkit.org/show_bug.cgi?id=46634
-        
-        Use OutputCapture to prevent console spam (and also check for expected
-        output).
-
-        * Scripts/webkitpy/common/system/user_unittest.py:
-
-2010-09-27  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by James Robinson.
-
-        start-commit-queue should abort any rebases in progress
-        https://bugs.webkit.org/show_bug.cgi?id=46640
-
-        webkit-patch commit-queue would do this itself, but this just
-        helps ensure that the commit-queue script is properly updated
-        before we run it (in the case where a previous rebase is in
-        progress the git svn rebase would not work before we run the
-        commit-queue).
-
-        * EWSTools/start-commit-queue.sh:
-
-2010-09-18  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        [GTK] Clean up the DRT fonts.conf and switch to Liberation
-        https://bugs.webkit.org/show_bug.cgi?id=46038
-
-        Switch to Liberation fonts for GTK+ layout tests. This will make our
-        test results metric-compatible with many Windows/Chromium results. It
-        also simplifies the fonts.conf that we load and prepares the way for
-        fixing many font bugs.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (initializeFonts): Initialize a known list of fonts instead of loading
-        every font in the WEBKIT_TESTFONTS directory.
-        * DumpRenderTree/gtk/fonts.conf: Removed.
-        * DumpRenderTree/gtk/fonts/AHEM____.TTF: Copied from WebKitTools/DumpRenderTree/qt/fonts/AHEM____.TTF.
-        * DumpRenderTree/gtk/fonts/fonts.conf: Added.
-        * GNUmakefile.am: Modify FONTS_CONF_FILE to be FONTS_CONF_DIR, so that
-        we can load both fonts.conf and AHEM____.TTF from this location.
-        * Scripts/old-run-webkit-tests: Remove the check for WEBKIT_TESTFONTS, since
-        it is no longer used.
-
-2010-09-26  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-httpd fails if Perl is not installed
-        https://bugs.webkit.org/show_bug.cgi?id=46602
-        
-        Make Port._read_configuration catch all exceptions, since trying to run
-        perl (because of _webkit_build_directory) when it's not installed throws
-        a WindowsError or OSError, not an IOError (this became an issue after 
-        r68268, since ChromiumPort ends up calling Port.default_configuration in
-        its constructor, which means that we're ending up on this codepath in
-        non-NRWT cases too, e.g. for the Chromium NaCl tests, which use
-        new-run-webkit-httpd).
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-
-2010-09-26  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Reviewed by Antonio Gomes.
-
-        [EFL] Add setting API to set a local storage database path.
-        https://bugs.webkit.org/show_bug.cgi?id=45446
-
-        Add a setting API to set local storage database path.
-
-        * EWebLauncher/main.c:
-        (on_key_down):
-        (browserCreate):
-        (main):
-
-2010-09-26  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Move shared WebKit2 API (used by both bundle and main API) to WebKit2/Shared/API
-        https://bugs.webkit.org/show_bug.cgi?id=46587
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-
-2010-09-26  Antonio Gomes  <agomes@rim.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        DRT/Mac nodesFromRect support
-
-        [Mac][DRT] Implement LayoutTestController::nodesFromRect
-        https://bugs.webkit.org/show_bug.cgi?id=46580
-
-        Implements LayoutTestController::nodesFromRect for Mac DRT, and
-        adding stubs for GTK+ and Windows.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (nodesFromRectCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::LayoutTestController::nodesFromRect):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::nodesFromRect):
-
-2010-09-25  Nicolas Weber  <thakis@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        https://bugs.webkit.org/show_bug.cgi?id=46555
-        Fix typo in prepare-ChangeLog's help output.
-
-        * Scripts/prepare-ChangeLog:
-
-2010-09-24  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Implement WebKit2 callback equivalent to -[WebUIDelegate mouseDidMoveOverElement:modifierFlags:]
-        <rdar://problem/8359279>
-        https://bugs.webkit.org/show_bug.cgi?id=46546
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (mouseDidMoveOverElement):
-        (-[BrowserWindowController awakeFromNib]):
-        * MiniBrowser/win/BrowserView.cpp:
-        (mouseDidMoveOverElement):
-        (BrowserView::create):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::createOtherPage):
-        (WTR::TestController::initialize):
-
-2010-09-24  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Allow rebaselines for webkit-patch rebaseline to be chosen
-        https://bugs.webkit.org/show_bug.cgi?id=46407
-        
-        Instead of always rebaselining all failing tests, allow a subset to be
-        chosen.
-
-        * Scripts/webkitpy/common/system/user.py:
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-
-2010-09-24  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Reviewed by Tony Chang.
-
-        [chromium] Implement TextInputController::firstRectForCharacterRange
-        https://bugs.webkit.org/show_bug.cgi?id=38100
-
-        Implemented TextInputController::firstRectForCharacterRange for chromium platform.
-        No new tests are added since we need to implement the same feature in chromium side
-        in order to enable any tests that uses this function.
-
-        * DumpRenderTree/chromium/TextInputController.cpp:
-        (TextInputController::firstRectForCharacterRange): Added.
-
-2010-09-24  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        commit-queue reports land failures as "PASS"
-        https://bugs.webkit.org/show_bug.cgi?id=46530
-
-        We were ignoring the return value of land instead of passing it back to
-        CommitQueue.  Of course, this was the one case I forgot to test!
-
-        * Scripts/webkitpy/tool/bot/commitqueuetask.py:
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-
-2010-09-24  Kenichi Ishibashi  <bashi@google.com>
-
-        Reviewed by Eric Seidel.
-
-        new-run-webkit-tests prints out nothing when build-dumprendertree fails
-        https://bugs.webkit.org/show_bug.cgi?id=37563
-
-        Print error message when build-dumprendertree fails.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-09-24  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        NRWT doesn't respect config set with set-webkit-configuration
-        https://bugs.webkit.org/show_bug.cgi?id=46278
-        
-        Use Port.default_configuration() instead of hardcoding Release in
-        ChromiumPort configuration initialization, so that we still inherit the
-        configuration set by set-webkit-configuration.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-
-2010-09-24  Chang Shu  <chang.shu@nokia.com>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt] Fix the code to check file existence.
-        https://bugs.webkit.org/show_bug.cgi?id=46465
-
-        * QtTestBrowser/main.cpp:
-        (main):
-
-2010-09-23  Tony Chang  <tony@chromium.org>
-
-        Unreviewed, rolling out r68232.
-        http://trac.webkit.org/changeset/68232
-
-        Broken NRWT on the canary bots.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2010-09-23  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        r68008 broke new-run-webkit-tests in that the chromium ports no
-        longer respect set-webkit-configuration. The correct fix for this
-        is being pursued in bug 46278 (along with a bunch of unit tests),
-        but in the meantime I'm reverting the particular lines that broke
-        things. This was tested by hand.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2010-09-23  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        WebKit2 API: Need way to know when a frame is removed from the hierarchy
-        <rdar://problem/8414062>
-        https://bugs.webkit.org/show_bug.cgi?id=46432
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (didRemoveFrameFromHierarchy):
-        (-[BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-
-2010-09-23  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [chromium] implement layoutTestController.sampleSVGAnimationForElementAtTime
-        https://bugs.webkit.org/show_bug.cgi?id=46426
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::sampleSVGAnimationForElementAtTime):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-
-2010-09-23  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Nate Chapin.
-
-        [GTK] r68199 introduced two test failures
-        https://bugs.webkit.org/show_bug.cgi?id=46424
-
-        Fix a regression handling preference overrides that are attached to boolean properties.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::overridePreference): g_strcasecmp returns 0 when strings match
-        so we must check for that when converting a string to a boolean.
-
-2010-09-23  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Reviewed by David Levin.
-
-        Fix a condition check in ServerProcess, which becomes relevant when reading binary data.
-        https://bugs.webkit.org/show_bug.cgi?id=46406
-
-        This breaks when the method is called with specified size of data (image data), and the
-        buffer hasn't yet reached this size.
-
-        * Scripts/webkitpy/layout_tests/port/server_process.py: Changed to check for values of
-          index larger than 0.
-
-2010-09-23  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Nate Chapin.
-
-        [GTK] Some tests from r68174 fail on the GTK+ bots
-        https://bugs.webkit.org/show_bug.cgi?id=46396
-
-        Simplify LayoutTestController::overridePreference to make it easier for
-        people unfamiliar with the code to keep the list of preferences up to date.
-        Add the conversion for enable-hyperlink-auditing.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::overridePreference): Use a simple if-else block to determine
-        out the property name for overrridePreference. Also simplify the logic for setting
-        string properties. Add the conversion for enable-hyperlink-auditing.
-
-2010-09-23  Tony Chang  <tony@chromium.org>
-
-        Reviewed by David Levin.
-
-        [chromium] add caretBrowsingEnabled to WebSettings and DRT
-        https://bugs.webkit.org/show_bug.cgi?id=46388
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::overridePreference):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-
-2010-09-23  Nate Chapin  <japhet@chromium.org>
-
-        Reviewed by Darin Fisher.
-
-        Allow DRT to toggle hyperlink auditing (i.e., <a ping>).
-        https://bugs.webkit.org/show_bug.cgi?id=30458
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::overridePreference):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::overridePreference):
-
-2010-09-21  Stephen White  <senorblanco@chromium.org>
-
-        Reviewed by David Levin.
-
-        Implement --enable-accelerated-2d-canvas flag in DumpRenderTree.
-        https://bugs.webkit.org/show_bug.cgi?id=46208
-
-        This flag allows the layout tests to be run with or without accelerated
-        2D canvas rendering.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        Declare the new flag string, and check for it on startup.
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        Add a boolean for the new flag, in order to preserve its value over
-        preferences reset.
-        (TestShell::resetWebSettings):
-        Set the new flag to the stored value on reset.
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::setAccelerated2dCanvasEnabled):
-        Add an accessor for the new flag.
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        Initialize the new flag to false.
-        (WebPreferences::applyTo):
-        Copy the flag's value to the WebSettings.
-        * DumpRenderTree/chromium/WebPreferences.h:
-        Add the new flag.
-
-2010-09-23  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Refactor QtWebKitPlatformPlugin interface
-
-        Make it easier to keep source-compability for the
-        QtWebKitPlatformPlugin interface, and run qmake
-        on the example (but not build) for convenience. 
-
-        https://bugs.webkit.org/show_bug.cgi?id=46345
-
-        * Scripts/webkitdirs.pm:
-
-2010-09-23  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Tweak some status messages that Eric thought were confusing
-        https://bugs.webkit.org/show_bug.cgi?id=46342
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2010-09-22  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Fix comm-queue typo
-        https://bugs.webkit.org/show_bug.cgi?id=46339
-
-        We were missing a "self".  The real problem is that we didn't have an
-        integration test for the failure case.
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2010-09-22  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        commit-queue should log more detailed messages to the QueueStatusServer
-        https://bugs.webkit.org/show_bug.cgi?id=46333
-
-        When I created CommitQueueTask, I removed most of the previous logging.
-        This patch adds back more detailed logging so folks can see their patch
-        progress through the queue.
-
-        * Scripts/webkitpy/tool/bot/commitqueuetask.py:
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2010-09-22  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Darin Fisher.
-
-        [Chromium] User style layout tests don't pass on Chromium
-        https://bugs.webkit.org/show_bug.cgi?id=46069
-
-        Fix a typo in LayoutTestController::addUserStyleSheet that was causing a
-        crash the Chromium DRT. Pass InjectInExistingDocuments to mimic DRT
-        behavior from other ports.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::addUserStyleSheet):
-
-2010-09-22  Brent Fulgham  <bfulgham@webkit.org>
-
-        Reviewed by Martin Robinson.
-
-        [WinCairo] Part 2: Update WebKitTestRunner and DumpRenderTree Build.
-        https://bugs.webkit.org/show_bug.cgi?id=46303.
-
-        * MiniBrowser/Configurations/MiniBrowserCFLite.vsprops: Added.
-        * MiniBrowser/Configurations/MiniBrowserCommon.vsprops: Moved
-        CoreFoundation-specific stuff to new MiniBrowserCoreFoundation
-        property sheet.
-        * MiniBrowser/Configurations/MiniBrowserCoreFoundation.vsprops: Added.
-        * MiniBrowser/MiniBrowser.vcproj: Updated configuration to use
-        appropriate property sheet for the build types.
-        * WebKitTestRunner/win/WebKitTestRunner.vcproj: Updated the
-        configuration to use appropriate property sheet for CoreFoundation
-        and CFLite-style builds.
-
-2010-09-22  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Optimize commit-queue performance for green trees
-        https://bugs.webkit.org/show_bug.cgi?id=46254
-
-        This patch redesigns the controller logic for the commit-queue.  In the
-        new design, the controller exercises much finer-grained control over
-        the landing process.  In particular:
-
-        - Patches that fail to apply now get rejected almost immediately.
-        - Patches that fail to build get rejects after two builds (instead of
-          three builds and one test run).
-        - Patches that run into a flaky test now get accepted after one build
-          and two test runs instead of three full build-and-test runs.
-
-        The main cost of these optimizations is that we don't find out the tree
-        has a failing test until the very end of the process, but if the tree
-        has a busted test, there's not much we can do anyway.  We might as well
-        burn commit-queue resources spinning optimisticly.
-
-        * Scripts/webkitpy/tool/bot/commitqueuetask.py: Added.
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py: Added.
-        * Scripts/webkitpy/tool/commands/queues.py:
-
-2010-09-22  Brent Fulgham  <bfulgham@webkit.org>
-
-        Reviewed by Martin Robinson.
-
-        [WinCairo] Update WebKitTestRunner and DumpRenderTree Build.
-        https://bugs.webkit.org/show_bug.cgi?id=46303.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj: Disable local MD5 sources
-        for Cairo build. Copy wtf MD5 header to ForwardingHeaders for the
-        WinCairo build.
-        * WebKitTestRunner/Configurations/InjectedBundleCFLite.vsprops: Added.
-        * WebKitTestRunner/win/InjectedBundle.vcproj: Update win new *_Cairo
-        build targets that use the new InjectedBundleCFLite.vsprops file.
-
-2010-09-22  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        Fix bustage of rebaseline-chromium-webkit-tests resulting from
-        r67974. Really need better unit tests for this tool :(
-
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-
-2010-09-22  Adam Roben  <aroben@apple.com>
-
-        Unbreak test-webkitpy
-
-        * Scripts/webkitpy/test/main.py:
-        (Tester.run_tests): Add a line that mysteriously got deleted.
-
-2010-09-22  Adam Roben  <aroben@apple.com>
-
-        Make test-webkitpy test WebKit2's scripts
-
-        These scripts can't be in WebKitTools due to limitations of Apple's
-        build process. But that doesn't mean we can't test them!
-
-        Fixes <http://webkit.org/b/46297> test-webkitpy should test code in
-        WebKit2/Scripts
-
-        Reviewed by Adam Barth.
-
-        * Scripts/test-webkitpy:
-        (_clean_packages_with_test): Renamed from _clean_webkitpy_with_test.
-        Now takes an external_package_paths parameter and cleans both webkitpy
-        and any external packages.
-        (init): Added an external_package_paths parameter which we pass along
-        to _clean_packages_with_test.
-        (top level): Add WebKit2/Scripts/webkit2 as our only external package
-        and pass it along to init and Tester.run_tests.
-
-        * Scripts/webkitpy/test/main.py:
-        (Tester.run_tests): Added an optional external_package_paths
-        parameter. We modify sys.path so that the external packages can be
-        imported, and search for unittest files inside all external packages
-        in addition to inside webkitpy.
-
-2010-09-22  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: r68063 broke linux python tests
-
-        Add a missing "from __future__ import with_statement" to this
-        new file; the perils of testing only on the Mac and by review :(
-
-        https://bugs.webkit.org/show_bug.cgi?id=46293
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-
-2010-09-22  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Add a 'chromium-gpu' set of ports that will test the accelerated
-        GPU paths. This patch adds:
-
-        - support for the '--accelerated-compositing' and
-          'accelerated-2d-canvas' flags to new-run-webkit-tests (and the
-          'no-' flags)
-        - adds a new set of Ports that will look under
-          platform/chromium-gpu-$OS/ for baselines before looking in the
-          regular chromium search path
-        - adds a new test_expectations.txt file in platform/chromium-gpu
-          that skips all but the tests we actually want to run with
-          acceleration.
-
-        This patch will allow us to run both with and without acceleration
-        and to change the defaults for both the regular and -gpu options
-        as the code evolves.
-
-        We plan to add both --chromium-$OS and --chromium-gpu-$OS runs to
-        each test bot.
-
-        https://bugs.webkit.org/show_bug.cgi?id=46225
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2010-09-22  Jamey Hicks  <jamey.hicks@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Web Inspector: Remote Web Inspector support for QtWebKit
-        https://bugs.webkit.org/show_bug.cgi?id=43988
-
-        Runs a web debug server on port specified by QtTestBrowser
-        argument -remote-inspector-port. Property
-        _q_webInspectorServerPort of the QWebPage instance will be set
-        according to the argument. All pages with that property set will
-        be remotely inspectable.
-
-        URL for remote inspection of first QWebPage is
-            http://localhost:9222/webkit/inspector/inspector.html?page=1
-        where 1 is the number of the QWebPage instance.
-
-        The base URL yields an index page with links to the individual inspectors:
-            http://localhost:9222/
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::init):
-        * QtTestBrowser/launcherwindow.h:
-        * QtTestBrowser/main.cpp:
-        (LauncherApplication::handleUserOptions):
-
-2010-09-22  Adam Roben  <aroben@apple.com>
-
-        Fix webkit-patch failure-reason now that build.webkit.org has been
-        updated
-
-        Fixes <http://webkit.org/b/46273> webkit-patch failure-reason crashes
-        every time
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-        (BuildBot._file_cell_text): Added. Travels down the firstChild chain
-        looking for an element that contains text, then returns it.
-        (BuildBot._parse_twisted_file_row): Use _file_cell_text to get the
-        text out of the cells. This way it doesn't matter whether the cells
-        have <b> children (as for cells in directory rows) or not (as for
-        cells in file rows)
-        (BuildBot._parse_twisted_directory_listing): Look for rows that have
-        the "directory" or "file" class, rather than rows with any class,
-        since header rows now have a class attribute.
-
-        * Scripts/webkitpy/common/net/buildbot_unittest.py:
-        (BuildBotTest._example_directory_listing): Updated to more closely
-        match the markup that build.webkit.org is producing now.
-
-2010-09-21  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        new-run-webkit-tests: fix bug introduced in r68008 where if you
-        specify --chromium and no --platform, and you're running on
-        windows, you use the 'chromium-win' port by default instead of the
-        version-specific port. This breaks the buildbots.
-
-        It will be good for this refactoring to settle down so I can
-        rewrite the logic for default ports and the unit tests to be
-        clearer (and the testing more comprehensive).
-
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-
-2010-09-21  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Modify the Port interface to take only a series of keyword arguments
-        in the constructor, and modify Port/factory.get() to accomodate that,
-        and to accept user=XXX as an argument so we can pass
-        webkitpy.common.system.user.User objects in.
-
-        Then, modify new-run-webkit-tests and rebaseline-chromium-webkit-tests
-        to use the common routine in webkitpy.common.system.user.open_url()
-        to display HTML files.
-
-        There was a routine in the Port interface to do the same thing,
-        but I see no need for a port-specific hook for this, since it is
-        something that will always be executed by the host environment
-        and displaying web pages has nothing to do with running layout tests.
-
-        Note that new-run-webkit-tests used to use test_shell to display
-        the page; this is potentially useful so that you can actually click
-        from a result to the broken page; however, since DumpRenderTree
-        doesn't support this functionality, it will be going away eventually.
-
-        https://bugs.webkit.org/show_bug.cgi?id=46128
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/dryrun.py:
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        * Scripts/webkitpy/layout_tests/port/google_chrome.py:
-        * Scripts/webkitpy/layout_tests/port/google_chrome_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-09-21  Lucas De Marchi  <lucas.demarchi@profusion.mobi>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [EFL] Get fresh theme when running EWebLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=46210
-
-        If user tried to run EWebLauncher outside of the build tree, it would
-        not find the theme and fallback to the installed one. However, since
-        EWebLauncher is not installed, we always want to take the theme from
-        the just compiled source code. If user had never installed WebKit's
-        EFL port it could even receive a segv since no theme would be found.
-
-        Now EWebLauncher does not fallback to the installed theme and CMake
-        gives as DATA_DIR the directory of the theme it has just built.
-
-        * CMakeListsEfl.txt: Pass the build directory as DATA_DIR to
-        EWebLauncher.
-        * EWebLauncher/main.c: Use only the theme from build director. Do not
-        fallback to others as this could hide real bugs.
-        (quit):
-        (browserCreate):
-        (findThemePath):
-        (main):
-
-2010-09-21  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        Don't pass the --test-shell arg to the Chromium Mac port of DRT;
-        it just confuses it.
-
-        https://bugs.webkit.org/show_bug.cgi?id=46230
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2010-09-21  Lucas Forschler  <lforschler@apple.com>
-
-        Reviewed by Stephanie Lewis.
-
-        Make a new buildbot for Leopard Debug Test
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2010-09-21  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        Fix breakage of Chromium Mac DRT port caused by r67905.
-
-        https://bugs.webkit.org/show_bug.cgi?id=46230
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2010-09-21  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        Add missing import of 'tempfile'.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2010-09-17  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: pull the list of tests from the Port, and
-           make it possible to run with no actual test files in the filesystem.
-
-        This set of changes allows us to delete the special
-        webkitpy/layout_tests/data directory and test the generic code without
-        touching the filesystem (except to write results). This speeds up
-        test-webkitpy substantially.
-
-        This also cleans up and removes several code paths in the generic
-        code and fixes some minor bugs, notably in the test_expectations
-        parsing, which was previously fragile if the tests weren't present.
-
-        We also change the way we diff image results to be able to do so
-        in memory, without relying on files. This slows down chromium
-        test_shell, which always writes images to files, but should speed
-        up DRT and ImageDiff-based implementations slightly.
-
-        Note that pulling the list of tests to run from the Port will allow
-        ports to specify what tests to run as an inclusive list; previously
-        you could only do this as an exclusive list by using a 
-        test_expectations file or Skipped files; nothing actually uses this
-        feature yet and it's unclear if it should be used.
-
-        Note that there are no functional changes -- apart from now 
-        always printing out the location of the checksum file when we are
-        tracing test runs -- and the total number of lines of non-test code
-        actually drops by two.
-
-        There is some more cleanup that can be done in the Port/Driver 
-        interface and in some handling of filenames, but I'll save that
-        for another change.
-
-        https://bugs.webkit.org/show_bug.cgi?id=45801
-
-        * Scripts/webkitpy/layout_tests/data/*: Removed.
-            - no longer need special mock layout_tests_directory in the
-              repository.
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-            - add code to display missing text files, checksums when tracing
-            - update to not look at the filesystem directly.
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-            - add more unit tests
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-            - remove tests_are_present flag
-            - update with changes in Port interface - no longer access
-              the filesystem directly, although we still use os.path for
-              filename manipulation.
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations_unittest.py:
-            - add more unit tests
-        * Scripts/webkitpy/layout_tests/layout_package/test_files.py: Removed.
-            - renamed to port/test_files.py
-        * Scripts/webkitpy/layout_tests/port/base.py:
-            - change diff_image() to expect actual image data, not filenames
-            - add expected_checksum(), expected_image(), expected_text() to
-              return the content of the files so that we don't need a filesystem
-            - add path_exists(), path_isdir() for filesystem-like access.
-            - add test_dirs() to keep clobber-test-results from needing to
-              actually look at a real layout tests dir
-            - add tests() to return the list of tests to run on the port
-              (calls port/test_files to do the work).
-            - add update_baseline() to be able to save new baselines
-            - add uri_to_test_name() from port/dryrun.py so we can easily check
-              filename_to_uri()
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-            - add more unit tests
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-            - change diff_image() to accept image content, not filenames.
-              This will be slower for test_shell/image_diff, but faster
-              for DRT/ImageDiff.
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-            - add more unit tests
-        * Scripts/webkitpy/layout_tests/port/dryrun.py:
-            - simplify greatly
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-            - add more unit tests
-        * Scripts/webkitpy/layout_tests/port/test.py:
-            - massive rewrite to use in-script list of tests and expectations
-        * Scripts/webkitpy/layout_tests/port/test_files.py:
-            - rename from layout_package/test_files.
-        * Scripts/webkitpy/layout_tests/port/test_files_unittest.py:
-            - add unit tests
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-            - update diff_image() to take image contents, not files. Should
-              make things slightly faster.
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-            - update with changes to diff_image()
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests_unittest.py:
-            - update with changes to diff_image()
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-            - remove tests_are_present from test_expectations
-            - pull the list of tests from port.tests() instead
-              of calling test_files.py directly.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-            - update unit tests
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py:
-            - update with changes to 
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py:
-            - update with change in Port interface
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-            - update with change in Port interface
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-            - remove the tests_are_present flag
-
-2010-09-21  Anders Carlsson  <andersca@apple.com>
-
-        Disable logging.
-
-        * MiniBrowser/mac/MiniBrowser_Prefix.pch:
-
-2010-09-21  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        add a script for running webkit_unit_tests
-        https://bugs.webkit.org/show_bug.cgi?id=46014
-
-        * Scripts/run-chromium-webkit-unit-tests: Added.
-
-2010-09-21  Fridrich Strba  <fridrich.strba@bluewin.ch>
-
-        Reviewed by Martin Robinson.
-
-        Fix linking problems on Windows.
-        https://bugs.webkit.org/show_bug.cgi?id=45844
-
-        * GNUmakefile.am: link the executables with winmm.dll
-
-2010-09-21  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        feeder-queue svn updates more often than needed
-        https://bugs.webkit.org/show_bug.cgi?id=46171
-
-        We don't need to poll SVN every time we feed the feeders.  Rather, we
-        can count on the wrapper shell script to auto-update the queue.
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2010-09-21  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Add robot loader timeout and extra time options.
-        https://bugs.webkit.org/show_bug.cgi?id=46172
-
-        [-robot-timeout <s>]: Load the next page after s seconds if the current
-        page didn't finish loading.
-        [-robot-extra-time <s>]: Wait s seconds after the current page finished
-        loading before loading the next one. This should allow some time for the
-        page's JavaScript to execute.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::applyPrefs):
-        * QtTestBrowser/main.cpp:
-        (LauncherApplication::robotTimeout):
-        (LauncherApplication::robotExtraTime):
-        (LauncherApplication::LauncherApplication):
-        (LauncherApplication::handleUserOptions):
-        (main):
-        * QtTestBrowser/urlloader.cpp:
-        (UrlLoader::UrlLoader):
-        (UrlLoader::loadNext):
-        (UrlLoader::loadUrlList):
-        * QtTestBrowser/urlloader.h:
-
-2010-09-21  Pavel Podivilov  <podivilov@chromium.org>
-
-        Unreviewed.
-
-        Adding myself to the committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-09-20  Philippe Normand  <pnormand@igalia.com>
-
-        Reviewed by Eric Carlson.
-
-        [GTK] enhanced context menu for media elements
-        https://bugs.webkit.org/show_bug.cgi?id=45021
-
-        EventSender::contextClick() now returns an array of js
-        objects. Each object has a title property and a click() method.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (getMenuItemTitleCallback):
-        (setMenuItemTitleCallback):
-        (menuItemClickCallback):
-        (getMenuItemClass):
-        (contextClickCallback):
-
-2010-09-20  Hayato Ito  <hayato@chromium.org>
-
-        Unreviewed.
-        Adding myself to the committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-09-20  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        The tool member variable should be called _tool
-        https://bugs.webkit.org/show_bug.cgi?id=46160
-
-        Created by find-and-replace.
-
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/openbugs.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-        * Scripts/webkitpy/tool/commands/upload.py:
-        * Scripts/webkitpy/tool/multicommandtool.py:
-
-2010-09-20  Adam Barth  <abarth@webkit.org>
-
-        I ran the tests before landing but ignored the fact that they failed.  :(
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-
-2010-09-20  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add a feeder queue that polls bugs.webkit.org for the commit-cluster
-        https://bugs.webkit.org/show_bug.cgi?id=46141
-
-        The feeder-queue polls bugs.webkit.org every 30 seconds and updates the
-        list of work items on the status server.  The individual commit-cluster
-        nodes then grab the patches from the server and process them.
-
-        * Scripts/webkitpy/tool/bot/feeders.py: Added.
-        * Scripts/webkitpy/tool/bot/feeders_unittest.py: Added.
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/commands/queuestest.py:
-
-2010-09-20  Leandro Pereira  <leandro@profusion.mobi>
-
-        Reviewed by Darin Adler.
-
-        build-webkit: Add support for CMake build system
-        https://bugs.webkit.org/show_bug.cgi?id=44979
-
-        * Scripts/build-webkit: Add "--efl" command-line option to build the
-        EFL port of WebKit.
-        * Scripts/webkitdirs.pm: Define buildCMakeProject() and
-        buildEflCMakeProject() subroutines.
-
-2010-09-20  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: refactor command line args getting passed to DRT
-
-        This change cleans up some argument parsing between functions to get
-        rid of some overlapping data structures. There should be no functional
-        changes in this patch; it is pure refactoring in preparation for
-        landing the Chrome GPU port and adding a generic way to pass
-        args to DRT/TestShell.
-
-        https://bugs.webkit.org/show_bug.cgi?id=46135
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-          - pass the options argument explicitly to the threads and drivers,
-            also consolidate the passing of options to the driver.
-          - pass options directly to process_output() to remove a couple
-            parameters (minor cleanup).
-        * Scripts/webkitpy/layout_tests/port/base.py:
-          - pass the options argument to Port.create_driver().
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-          - update Port.create_driver() test
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-          - pass the options argument to Port.create_driver(), and clean up
-            building of the cmd line for DRT.
-        * Scripts/webkitpy/layout_tests/port/dryrun.py:
-          - pass the options argument to Port.create_driver()
-        * Scripts/webkitpy/layout_tests/port/test.py:
-          - pass the options argument to Port.create_driver()
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-          - pass the options argument to Port.create_driver(), and clean up
-            building of the cmd line for DRT.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-          - consolidate args in _get_dump_render_tree_args and rename to
-            _get_test_args(); move all of the command-line args to the
-            Port implementations.
-
-2010-09-20  Andrew Wilson  <atwilson@chromium.org>
-
-        Revert change which was accidentally committed along with some expectation changes.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-
-2010-09-20  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Add explicit --force-patch flag to webkitpy tools
-        https://bugs.webkit.org/show_bug.cgi?id=46103
-        
-        It wasn't obvious until I read the applypatch.py source code that
-        --non-interfactive implies passing --force to patch. Add --force-patch
-        as an alias to the flag, so that this behavior is more discoverable.
-
-        * Scripts/webkitpy/tool/steps/applypatch.py:
-        * Scripts/webkitpy/tool/steps/options.py:
-
-2010-09-20  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, adding a line which got dropped and is trivially correct (and tested).
-
-        commit-queue can't land patches
-        https://bugs.webkit.org/show_bug.cgi?id=46138
-
-        Add a line of code I forgot in my last commit.
-
-        * Scripts/webkitpy/common/net/bugzilla.py:
-        * Scripts/webkitpy/common/net/bugzilla_unittest.py:
-
-2010-09-20  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        The commit-cluster bots still race to lock patch_ids
-        https://bugs.webkit.org/show_bug.cgi?id=46130
-
-        It turns out we need to use a transaction object to make the
-        read/modify/write lock operation atomic.  From reading the AppEngine
-        documentation, I think this patch should do what we want.  It's hard to
-        test locally because the test instance isn't distributed in the same
-        way the production instance is.
-
-        * QueueStatusServer/handlers/nextpatch.py:
-        * QueueStatusServer/model/activeworkitems.py: Added.
-
-2010-09-20  Andy Estes  <aestes@apple.com>
-
-        Reviewed by Adam Barth.
-
-        REGRESSION (HTML5 Parser): Pages broken due to <tag<tag> parsing changes
-        https://bugs.webkit.org/show_bug.cgi?id=40961
-
-        Implement WebKitUsePreHTML5ParserQuirks preference.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues): Reset WebKitUsePreHTML5ParserQuirks
-        to false after a test finishes.
-
-2010-09-20  Adam Roben  <aroben@apple.com>
-
-        Windows build fix
-
-        * MiniBrowser/Configurations/MiniBrowserCommon.vsprops: Put
-        $(WebKitOutputDir)\include before $(WebKitLibrariesDir)\include so
-        we'll pick up the most recent versions of the headers.
-
-2010-09-20  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue should check commit-queue+ again just before committing
-        https://bugs.webkit.org/show_bug.cgi?id=32679
-
-        Added a _revalidate_patch check, right before landing.
-
-        Since _revalidate_patch passes the patch_id from the work item
-        back to bugzilla, I had to fix all of the previous queue tests to
-        use valid attachment ids (that's the majority of this change).
-
-        In order to validate that the bug was still open, I had to teach
-        bugzilla.Bug about open/closed states.
-
-        * Scripts/webkitpy/common/net/bugzilla.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/commands/queuestest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-09-20  Mihai Parparita  <mihaip@chromium.org>
-
-        Unreviewed.
-
-        Adding myself as a comitter.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-09-20  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Two instances of commit-queue try to process the same patch
-        https://bugs.webkit.org/show_bug.cgi?id=46113
-
-        This patch makes next-patch atomic so that the server won't vend the
-        same patch twice in the same hour.
-
-        * QueueStatusServer/handlers/nextpatch.py:
-
-2010-09-20  Adam Roben  <aroben@apple.com>
-
-        Make WebKitTestRunner's wait-to-dump watchdog timer work on Windows
-
-        We were previously trying to use a CFRunLoopTimer, but since Windows
-        doesn't use CFRunLoop on most threads this doesn't work. Now we use a
-        Windows-style timer on Windows.
-
-        I also replaced all uses of "watchdog" with "watchdog timer".
-
-        Fixes <http://webkit.org/b/46101> WebKitTestRunner's wait-to-dump
-        watchdog timer doesn't work on Windows
-
-        Reviewed by Anders Carlsson.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::dump): Updated for rename.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp: Removed
-        platform-specific functions.
-        (WTR::LayoutTestController::LayoutTestController): Added call to
-        platformInitialize.
-        (WTR::LayoutTestController::waitUntilDone): Changed to call
-        initializeWaitToDumpWatchdogTimerIfNeeded instead of doing the work
-        right in this function.
-        (WTR::LayoutTestController::waitToDumpWatchdogTimerFired): Updated for
-        rename.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h: Added new
-        members needed to support the watchdog timer abstraction. Replaced
-        some "watchdog"s with "watchdog timer".
-
-        * WebKitTestRunner/InjectedBundle/mac/LayoutTestControllerMac.mm:
-        Added.
-        (WTR::LayoutTestController::platformInitialize): Does nothing on this
-        platform.
-        (WTR::LayoutTestController::invalidateWaitToDumpWatchdog): Moved here
-        from LayoutTestController.cpp and changed to use an early return.
-        (WTR::waitUntilDoneWatchdogTimerFired): Moved here from
-        LayoutTestController.cpp.
-        (WTR::LayoutTestController::initializeWaitToDumpWatchdogTimerIfNeeded):
-        Moved code here from LayoutTestController::waitUntilDone and changed
-        to use an early return.
-
-        * WebKitTestRunner/InjectedBundle/win/LayoutTestControllerWin.cpp:
-        Added.
-        (WTR::LayoutTestController::platformInitialize): Initialize our
-        watchdog timer.
-        (WTR::LayoutTestController::invalidateWaitToDumpWatchdog): Added.
-        Kills and clears the watchdog timer.
-        (WTR::waitToDumpWatchdogTimerFired): Added. Calls through to the
-        LayoutTestController member function of the same name.
-        (WTR::LayoutTestController::initializeWaitToDumpWatchdogTimerIfNeeded):
-        Added. Sets up the timer if it isn't already set.
-
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj: Added
-        LayoutTestControllerMac.mm.
-
-        * WebKitTestRunner/win/InjectedBundle.vcproj: Added
-        LayoutTestControllerWin.cpp.
-
-2010-09-20  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Daniel Bates.
-
-        [GTK] fast/forms/listbox-selection.html fails
-        https://bugs.webkit.org/show_bug.cgi?id=45942
-
-        Use the gdkModifersFromJSValue helper to parse all appropriate modifier
-        strings in keyDownCallback.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (keyDownCallback): Use the gdkModifersFromJSValue instead of duplicating the 
-        modifier parsing logic.
-
-2010-09-19  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        WebKit2 decidePolicyForNavigationAction should include mouse button information
-        <rdar://problem/8413165>
-        https://bugs.webkit.org/show_bug.cgi?id=46060
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (decidePolicyForNavigationAction):
-        (decidePolicyForNewWindowAction):
-
-2010-09-19  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Martin Robinson.
-
-        Add unit tests for diffs that delete or modify a change log entry
-        or describe changes that are far apart
-        https://bugs.webkit.org/show_bug.cgi?id=46046
-
-        Add additional unit tests to test change log diffs that contain
-        deletions or changes that are far apart from each other in the
-        ChangeLog file.
-
-        * Scripts/webkitperl/VCSUtils_unittest/fixChangeLogPatch.pl:
-          - Added the following unit tests:
-          "fixChangeLogPatch: [no change] In-place change."
-          "fixChangeLogPatch: [no change] Remove first entry."
-          "fixChangeLogPatch: [no change] Remove entry in the middle."
-          "fixChangeLogPatch: [no change] Far apart changes (i.e. more than one chunk)."
-
-2010-09-19  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Replace WKBundleRangeRef with WKBundleRangeHandleRef.
-        https://bugs.webkit.org/show_bug.cgi?id=46054
-
-        The new one acts like WKBundleNodeHandleRef and allows for getting a
-        wrapper in a specific world for the handle.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::propertyValue):
-        (WTR::propertyValueDouble):
-        (WTR::propertyValueInt):
-        (WTR::numericWindowPropertyValue):
-        (WTR::toStr):
-        (WTR::InjectedBundlePage::shouldBeginEditing):
-        (WTR::InjectedBundlePage::shouldEndEditing):
-        (WTR::InjectedBundlePage::shouldInsertNode):
-        (WTR::InjectedBundlePage::shouldInsertText):
-        (WTR::InjectedBundlePage::shouldDeleteRange):
-        (WTR::InjectedBundlePage::shouldChangeSelectedRange):
-        (WTR::InjectedBundlePage::shouldApplyStyle):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-
-2010-09-19  Kent Tamura  <tkent@chromium.org>
-
-        Unreviewed. Fix WebGL test regressions by r67809.
-
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::applyTo): Call setExperimentalWebGLEnabled().
-
-2010-09-19  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        [DRT/Chromium] Fix a WebSettings handling bug
-        https://bugs.webkit.org/show_bug.cgi?id=45945
-
-        Before this change, Chromium DRT reset WebSettings for every new
-        window. It was wrong.
-        If new window is not the first one, we have to apply the same
-        settings as the first window.  So, we introduce WebPreference to
-        store the current settings, and apply it to new windows. It's same
-        as test_shell's behavior.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-          Use WebPreferences instead of WebSettings.
-        (LayoutTestController::setUserStyleSheetEnabled):
-        (LayoutTestController::setUserStyleSheetLocation):
-        (LayoutTestController::setAuthorAndUserStylesEnabled):
-        (LayoutTestController::setPopupBlockingEnabled):
-        (LayoutTestController::disableImageLoading):
-        (LayoutTestController::setJavaScriptCanAccessClipboard):
-        (LayoutTestController::setXSSAuditorEnabled):
-        (LayoutTestController::setAllowUniversalAccessFromFileURLs):
-        (LayoutTestController::setAllowFileAccessFromFileURLs):
-        (LayoutTestController::overridePreference):
-        (LayoutTestController::setEditingBehavior):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetWebSettings): Use WebPreferences.
-        (TestShell::runFileTest): ditto.
-        (TestShell::createNewWindow): Apply existing WebPreferences to a new WebView.
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::preferences):
-        (TestShell::applyPreferences):
-        * DumpRenderTree/chromium/WebPreferences.cpp: Added.
-        * DumpRenderTree/chromium/WebPreferences.h: Added.
-
-2010-09-18  Prasad Tammana  <prasadt@chromium.org>
-
-        Reviewed by David Levin.
-
-        update-webkit --chromium spitting out a spurious error
-        https://bugs.webkit.org/show_bug.cgi?id=45868
-
-        * Scripts/update-webkit-chromium: Use commandExists() function to check for existence of gclient.
-
-2010-09-18  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Dan Bernstein.
-
-        Improve/unify the PageLoadClient interfaces
-        https://bugs.webkit.org/show_bug.cgi?id=46043
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (didStartProvisionalLoadForFrame):
-        (didReceiveServerRedirectForProvisionalLoadForFrame):
-        (didFailProvisionalLoadWithErrorForFrame):
-        (didCommitLoadForFrame):
-        (didFinishDocumentLoadForFrame):
-        (didFinishLoadForFrame):
-        (didFailLoadWithErrorForFrame):
-        (didReceiveTitleForFrame):
-        (didFirstLayoutForFrame):
-        (didFirstVisuallyNonEmptyLayoutForFrame):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        (WTR::InjectedBundlePage::didStartProvisionalLoadForFrame):
-        (WTR::InjectedBundlePage::didReceiveServerRedirectForProvisionalLoadForFrame):
-        (WTR::InjectedBundlePage::didFailProvisionalLoadWithErrorForFrame):
-        (WTR::InjectedBundlePage::didCommitLoadForFrame):
-        (WTR::InjectedBundlePage::didFinishLoadForFrame):
-        (WTR::InjectedBundlePage::didFinishDocumentLoadForFrame):
-        (WTR::InjectedBundlePage::didFailLoadWithErrorForFrame):
-        (WTR::InjectedBundlePage::didReceiveTitleForFrame):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::didReceiveMessageFromInjectedBundle):
-        (WTR::TestController::didFinishLoadForFrame):
-        * WebKitTestRunner/TestController.h:
-
-2010-09-17  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Adding a shell script I use to run the
-        commit-queue. Now that multiple machines run the cq,
-        it makes sense to share the script between them.
-
-        * EWSTools/start-commit-queue.sh: Added.
-
-2010-09-17  Brian Weinstein  <bweinstein@apple.com>
-
-        Reviewed by Jon Honeycutt.
-
-        The colors on the new build.webkit.org (after upgrading the master to 0.8.1) are
-        slightly harder to read, so this reverts the previous background colors for various
-        states, making it easier to read.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/default.css:
-        (.success):
-        (.failure):
-        (.warnings):
-        (.exception):
-        (.start,.running,td.building):
-        (.offline,td.offline):
-
-2010-09-17  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r67692.
-        http://trac.webkit.org/changeset/67692
-        https://bugs.webkit.org/show_bug.cgi?id=46011
-
-        broke layout test dashboard (Requested by johnny_g on
-        #webkit).
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-09-17  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Oliver Hunt.
-
-        Style bot complains about cairo forward declaration naming
-        https://bugs.webkit.org/show_bug.cgi?id=45867
-
-        Exclude Cairo forward declarations from indentifiers with underscores checks.
-
-        * Scripts/webkitpy/style/checkers/cpp.py: Add exclusion for Cairo forward-declarations.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Add some tests for this.
-
-2010-09-16  Kinuko Yasuda  <kinuko@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Include detailed test modifiers (e.g. FLAKY) in results.json for failing non-layout tests
-        https://bugs.webkit.org/show_bug.cgi?id=45408
-
-        This change also tries to remove duplicated upload_results_json methods
-        in run_webkit_tests.py and json_results_generator.py.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-09-16  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] When switching views (WebViewGraphicsBased <--> WebViewTraditional), QWebPage signals and QActions have to be re-set.
-
-        Recently r67554 changed the way different views use the WebPage class: it was previously being shared between
-        different views, but now for each view switch, a new WebPage class is constructed and set. Signals and QAction's
-        were not being set to the new WebPage though. Patch fix that, by re constructing the toolbar, and then re-hooking
-        all page specific stuff to the UI.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::initializeView):
-        * QtTestBrowser/mainwindow.cpp:
-        (MainWindow::MainWindow):
-        (MainWindow::buildUI):
-        (MainWindow::setPage):
-        * QtTestBrowser/mainwindow.h:
-
-2010-09-12  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        Make all accesses to m_item (GraphicsWebView) done by WebViewGraphicsBased class happen though graphicsWebView getter method.
-
-        This patch is mostly a preparation for another commit, where the ownership of the m_item/GraphicsWebView
-        object will move to the qgraphicsscene instead of the qgraphicsview.
-
-        * QtTestBrowser/webview.cpp:
-        (WebViewGraphicsBased::setPage):
-        (WebViewGraphicsBased::setResizesToContents):
-        (WebViewGraphicsBased::resizeEvent):
-        (WebViewGraphicsBased::animatedFlip):
-        * QtTestBrowser/webview.h:
-        (WebViewGraphicsBased::setItemCacheMode):
-        (WebViewGraphicsBased::itemCacheMode):
-
-2010-09-12  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        Moved setYRotation method body out of the class (WebViewGraphicsBased) definition.
-
-        We usually separate methods whose body are larger than a few lines from the class definition.
-
-        * QtTestBrowser/webview.h:
-        (WebViewGraphicsBased::yRotation):
-        (WebViewGraphicsBased::setYRotation):
-
-2010-09-12  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        Make initializeView method of LauncherWindow private.
-
-        No one else needs to be able to call it but LauncherWindow.
-        Also moving the declation of isGraphicsBased method down in the same file, in order
-        to better group related methods.
-
-        * QtTestBrowser/launcherwindow.h:
-
-2010-09-12  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        Make the getter 'page' method of MainWindow const.
-
-        * QtTestBrowser/mainwindow.cpp:
-        (MainWindow::page):
-        * QtTestBrowser/mainwindow.h:
-
-2010-09-12  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        Remove useless parameter from MainWindow class' constructor.
-
-        The parameter defaults to an empty URL and is not being used by any caller. Apart from that it is also
-        not referred in the constructor body and does not make much sense.
-
-        * QtTestBrowser/mainwindow.cpp:
-        (MainWindow::MainWindow):
-        * QtTestBrowser/mainwindow.h:
-
-2010-09-15  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [Chromium] Needs DRT queueLoadHTMLString and setDeferMainResourceLoad-implementations
-        https://bugs.webkit.org/show_bug.cgi?id=42151
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (WorkItemLoadHTMLString::WorkItemLoadHTMLString):
-        (WorkItemLoadHTMLString::run):
-        (LayoutTestController::queueLoadHTMLString):
-        (LayoutTestController::reset):
-        (LayoutTestController::setDeferMainResourceDataLoad):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController::deferMainResourceDataLoad):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::didCreateDataSource):
-
-2010-09-16  Adrienne Walker  <enne@google.com>
-
-        Reviewed by Kenneth Russell.
-
-        Add script to synchronize WebKit and Khronos WebGL tests
-        https://bugs.webkit.org/show_bug.cgi?id=42336
-
-        * Scripts/update-webgl-conformance-tests: Added.
-        * Scripts/webkitpy/layout_tests/update_webgl_conformance_tests.py: Added.
-        * Scripts/webkitpy/layout_tests/update_webgl_conformance_tests_unittest.py: Added.
-
-2010-09-16  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Add support for sending synchronous messages from the InjectedBundle to the WKContext
-        <rdar://problem/8365320>
-        https://bugs.webkit.org/show_bug.cgi?id=44785
-
-        * MiniBrowser/mac/AppDelegate.m:
-        (didReceiveSynchronousMessageFromInjectedBundle):
-        (-[BrowserAppDelegate init]):
-        * MiniBrowser/mac/WebBundle/WebBundleMain.m:
-        (didCreatePage):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-
-2010-09-16  Leonid Ebril  <leonid.ebril@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] QtTestBrowser: Disable creation of a new window for screenshot on Symbian platform.
-        https://bugs.webkit.org/show_bug.cgi?id=45885
-
-        Avoid creation of an additional window for screenshot to prevent overlapping with original window.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::screenshot):
-
-2010-09-16  Anders Carlsson  <andersca@apple.com>
-
-        Fix clang++ build.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController zoomIn:]):
-        (-[BrowserWindowController zoomOut:]):
-        (-[BrowserWindowController resetZoom:]):
-        Remove trailing semicolons.
-
-2010-09-16  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r67628.
-        http://trac.webkit.org/changeset/67628
-        https://bugs.webkit.org/show_bug.cgi?id=45904
-
-        broke the build (Requested by eric_carlson on #webkit).
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (contextClickCallback):
-
-2010-09-16  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Unreviewed.
-
-        Adding myself as a comitter.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-09-15  Philippe Normand  <pnormand@igalia.com>
-
-        Reviewed by Eric Carlson.
-
-        [GTK] enhanced context menu for media elements
-        https://bugs.webkit.org/show_bug.cgi?id=45021
-
-        EventSender::contextClick() now returns an array of js
-        objects. Each object has a title property and a click() method.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (getMenuItemTitleCallback):
-        (setMenuItemTitleCallback):
-        (menuItemClickCallback):
-        (getMenuItemClass):
-        (contextClickCallback):
-
-2010-09-14  Philippe Normand  <pnormand@igalia.com>
-
-        Reviewed by Eric Carlson and Martin Robinson.
-
-        [GTK] eventSender.contextClick() should return the contents of the context menu
-        https://bugs.webkit.org/show_bug.cgi?id=39102
-
-        Make the eventSender use the new private WebKitGtk+ API to
-        retrieve the context-menu item titles and store them in an array.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (contextClickCallback):
-
-2010-09-16  Eric Uhrhane  <ericu@chromium.org>
-
-        Reviewed by Jian Li.
-
-        Unify FILE_SYSTEM and FILE_WRITER enables under the name FILE_SYSTEM.
-        https://bugs.webkit.org/show_bug.cgi?id=45798
-
-        * Scripts/build-webkit:
-
-2010-09-16  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Antonio Gomes.
-
-        [Qt] Support globalhistory tests
-        https://bugs.webkit.org/show_bug.cgi?id=45774
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::isGlobalHistoryTest):
-        (WebCore::DumpRenderTree::open):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::dumpHistoryCallbacks):
-        (LayoutTestController::removeAllVisitedLinks):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-09-10  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        deduplicate-tests should be runnable from any WebKit directory
-        https://bugs.webkit.org/show_bug.cgi?id=44709
-
-        * Scripts/webkitpy/layout_tests/deduplicate_tests.py:
-        * Scripts/webkitpy/layout_tests/deduplicate_tests_unittest.py:
-
-2010-09-15  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [chromium] sort testing methods in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=45850
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::EventSender):
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        * DumpRenderTree/chromium/TextInputController.cpp:
-        (TextInputController::TextInputController):
-
-2010-09-15  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        CQ status shows items out of order
-        https://bugs.webkit.org/show_bug.cgi?id=45846
-        
-        Only group consecutive status items with the same patch ID into the same
-        group, so that overall item ordering is preserved.
-        
-        Also don't indent status items that only have a single item in their
-        group.
-
-        * QueueStatusServer/handlers/queuestatus.py:
-        * QueueStatusServer/templates/includes/singlequeuestatus.html: Added.
-        * QueueStatusServer/templates/queuestatus.html:
-
-2010-09-15  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add queue start/stop messages
-        https://bugs.webkit.org/show_bug.cgi?id=45853
-
-        I ended up needing to clean up a bunch of our unit testing
-        in order to test this new code path nicely.
-
-        There are also a few PEP8 changes needed to pass check-webkit-style.
-
-        * Scripts/webkitpy/tool/bot/queueengine.py:
-        * Scripts/webkitpy/tool/bot/queueengine_unittest.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/commands/queuestest.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot_unittest.py:
-
-2010-09-15  Simon Fraser  <simon.fraser@apple.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=45849
-        WKURLCreateWithCFURL crashes with null url
-        
-        Fix MiniBrowser crash when the url is not parseable.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController fetch:]):
-
-2010-09-15  Patrick Gansterer  <paroga@paroga.com>
-
-        Unreviewed.
-
-        Adding myself to the committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-09-14  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Make it possible to run more than one commit-queue instance
-        https://bugs.webkit.org/show_bug.cgi?id=45786
-
-        Mostly we need to make sure the two (or more) instances get
-        different patches to work on.  To do this, I re-worked
-        the code responsible for getting the next work item to
-        round trip through the status server.  The status server only
-        vends patches from the work items list, only if those patches
-        have not had status reported for them in the last hour.
-
-        This is another step towards making all queues go through the
-        status server, thus making it possible to run more than one
-        instance of various EWS bots (as requested in bug 44292).
-
-        The webkitpy changes are already covered by existing unit tests.
-        The QueueStatusSever sadly has no testing infrastructure yet. :(
-
-        * QueueStatusServer/handlers/nextpatch.py: Added.
-        * QueueStatusServer/index.yaml:
-        * QueueStatusServer/main.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-
-2010-09-15  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        NRWT fails with UnicodeDecodeError on editing/selection/mixed-editability-10.html
-        https://bugs.webkit.org/show_bug.cgi?id=45791
-
-        Force filenames to be raw bytes before running difflib.unified_diff.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-
-2010-09-15  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Reviewed by Tor Arne Vestbø.
-
-        [Qt] QtTestBrowser crashes when enabling QGraphicsView mode after first loading page without it enabled
-        https://bugs.webkit.org/show_bug.cgi?id=35247
-
-        The main issue when changing the views is that the plugins and any other components that
-        depend on view specific attributes such as the native window id are not teared down.
-        Even if we had a tear-down procedure, we'd have to re-initialize the plugin after
-        switching to the new view (QGraphicsWebView). This is a rather uncommon situation, so
-        we decided to work around this in QtTestBrowser by making toggling between QWebView
-        and QGraphicsWebView also re-create the page.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::initializeView):
-        * QtTestBrowser/mainwindow.h:
-
-2010-09-14  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Send webkit accessibility notifications to Chromium
-        https://bugs.webkit.org/show_bug.cgi?id=45156
-
-        Move printf inside shouldDumpAccessibilityNotifications check.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::postAccessibilityNotification):
-
-2010-09-14  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [chromium] fix http/tests/security/local-user-CSS-from-remote.html
-        https://bugs.webkit.org/show_bug.cgi?id=45788
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::setUserStyleSheetLocation): use a base64 url like in Chrome
-
-2010-09-14  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        [chromium] Remove WebKit::areLayoutTestImagesOpaque since it's no longer needed
-        https://bugs.webkit.org/show_bug.cgi?id=45768
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::dumpImage): new baselines are checked in and Linux will match Windows going forward.
-
-2010-09-14  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix, add newly added directories to the directory list.
-
-        * wx/build/settings.py:
-
-2010-09-14  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Remove WKBundleNodeRef, replacing uses with WKBundleNodeHandleRef.
-        https://bugs.webkit.org/show_bug.cgi?id=45785
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::propertyValue):
-        (WTR::numericWindowPropertyValue):
-        (WTR::dumpPath):
-        (WTR::toStr):
-        (WTR::operator<<):
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        (WTR::InjectedBundlePage::shouldInsertNode):
-        (WTR::InjectedBundlePage::shouldBeginEditing):
-        (WTR::InjectedBundlePage::shouldEndEditing):
-        (WTR::InjectedBundlePage::shouldInsertText):
-        (WTR::InjectedBundlePage::shouldDeleteRange):
-        (WTR::InjectedBundlePage::shouldChangeSelectedRange):
-        (WTR::InjectedBundlePage::shouldApplyStyle):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-
-2010-09-14  Adam Barth  <abarth@webkit.org>
-
-        Fix two typos in commit-queue.  The first is harmless.  The second
-        causes the queue to reject patches when the build is broken.  :(
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2010-09-14  Chris Guillory   <chris.guillory@google.com>
-
-        Reviewed by Chris Fleizach.
-
-        Send all accessibility notifications to Chromium.
-        https://bugs.webkit.org/show_bug.cgi?id=45156
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::postAccessibilityNotification):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2010-09-14  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        commit-queue is slow during the day
-        https://bugs.webkit.org/show_bug.cgi?id=45780
-
-        Thanks to the new logging, we've noticed that checkout-is-out-of-date
-        errors in the first pass of landing don't retry the land.  Instead,
-        they're treated as failures and cause the commit-queue to do two more
-        builds before really trying to land the patch.  Worse, in the second
-        build, we can get bitten by a flaky test.
-
-        This patch takes a slightly different approach to the commit-queue's
-        main control logic.  We now use a separate subprocess for building and
-        testing and for landing.  This means we should very rarely see the
-        checkout-is-out-of-date error, and when we do see it, we should retry
-        more quickly.  If my understanding is correct, this should be a big
-        speed win for the commit-queue.
-
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2010-09-14  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [chromium] implement layoutTestController.setDomainRelaxationForbiddenForURLScheme
-        https://bugs.webkit.org/show_bug.cgi?id=45762
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setDomainRelaxationForbiddenForURLScheme):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-
-2010-09-14  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Adding myself as a reviewer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-09-14  Zoltan Horvath  <zoltan@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Build-webkit shows a warning when WebKitBuild directory is not exist
-        https://bugs.webkit.org/show_bug.cgi?id=45736
-
-        Build-webkit has showed a warning when WebKitBuild didn't exist, add
-        an additional condition to avoid it.
-
-        * Scripts/build-webkit:
-
-2010-09-13  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue should log when it's retrying due to checkout out of date error
-        https://bugs.webkit.org/show_bug.cgi?id=45725
-
-        This will allow us to better track how often we see these errors
-        and how long it takes the queue to recover from them.
-
-        In order to pass the tests, I had to correct an error
-        from a previous change.  The UnitTestPort should not have
-        ever been using the base port method as that will read
-        a file from disk.  If the unit tests haven't passed the contents
-        it should raise an IOError as though the file doesn't exist.
-
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2010-09-13  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Upload results when cq patch landing fails
-        https://bugs.webkit.org/show_bug.cgi?id=45683
-        
-        Include script errors when CommitQueue._land fails.
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-
-2010-09-13  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by David Kilzer.
-
-        AX: accessibilityIsIgnored is returning nil when return value expects a BOOL
-        https://bugs.webkit.org/show_bug.cgi?id=45548
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (isIgnoredCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::isIgnored):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::isIgnored):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::isIgnored):
-
-2010-09-13  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        jscPath() is incorrect in Windows' cmd.exe shell
-        https://bugs.webkit.org/show_bug.cgi?id=45651
-
-        * Scripts/webkitdirs.pm: Add ".exe" suffix to $jscName on Windows.
-
-2010-09-13  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Darin Adler.
-
-        REGRESSION (r64816-r64889): Crash in WebCore::AccessibilityRenderObject
-        https://bugs.webkit.org/show_bug.cgi?id=43807
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (textMarkerForPointCallback):
-        (AccessibilityUIElement::textMarkerForPoint):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::textMarkerForPoint):
-
-2010-09-13  Andreas Kling  <andreas.kling@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] build-webkit: Add --v8 option to build against V8
-
-        Note that V8 is picked up from QtScript, so this currently requires building
-        against the experimental qt-script-v8 branch.
-
-        * Scripts/build-webkit:
-
-2010-09-13  Hans Wennborg  <hans@chromium.org>
-
-        Reviewed by Jeremy Orlow.
-
-        Add WebDeviceOrientationClientMock::create() and use it from DRT.
-        https://bugs.webkit.org/show_bug.cgi?id=45650
-
-        Do not use the WebDeviceOrientationClientMock constructor directly,
-        but use the create() member function.
-
-        This should fix the linker errors for the multi-DLL Chromium DRT build.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::setMockDeviceOrientation):
-        (LayoutTestController::deviceOrientationClient):
-
-2010-08-27  Kenneth Rohde Christiansen  <kenneth.christiansen@openbossa.org>
-
-        Reviewed by Antti Koivisto.
-
-        Add support for testing the viewport meta tag algorithm,
-        based on the following draft spec:
-
-        http://people.opera.com/rune/TR/ED-css-viewport-20100806/
-
-        Add common handling of viewport meta tag based on new Opera spec
-        https://bugs.webkit.org/show_bug.cgi?id=44201
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::dumpConfigurationForViewport):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-09-12  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        [DRT/Chromium] Remove dependency to base/string16.h and gfx/codec/png_codec.h
-        https://bugs.webkit.org/show_bug.cgi?id=45517
-
-        Use webkit_support_gfx.h for PNG encoding/decoding instead of png_codec.h
-
-        * DumpRenderTree/chromium/ImageDiff.cpp:
-        (Image::craeteFromStdin):
-        (Image::createFromFilename):
-        (diffImages):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::dumpImage):
-
-2010-09-10  MORITA Hajime  <morrita@google.com>
-
-        Reviewed by Tony Chang.
-
-        [Chromium] Implement textInputController.hasSpellingMarker() for Chromium
-        https://bugs.webkit.org/show_bug.cgi?id=45441
-
-        Added TextInputController::hasSpellingMarker().
-        
-        * DumpRenderTree/chromium/TextInputController.cpp:
-        (TextInputController::TextInputController):
-        (TextInputController::hasSpellingMarker):
-        * DumpRenderTree/chromium/TextInputController.h:
-
-2010-09-12  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        My last change accidentally contained a local change to the
-        rebaselinig script; webkit-patch land picked it up without telling
-        me and committed it :(
-
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-
-2010-09-11  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Anders Carlsson.
-
-        Attempt to fix Windows MiniBrowser build (untested)
-        https://bugs.webkit.org/show_bug.cgi?id=45609
-
-        * MiniBrowser/win/BrowserView.cpp:
-        (runJavaScriptConfirm):
-        (runJavaScriptPrompt):
-
-2010-09-11  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Maciej Stachowiak.
-
-        Fix zoom related tests when testing WebKit2.
-
-        * WebKitTestRunner/InjectedBundle/EventSendingController.cpp:
-        (WTR::EventSendingController::zoomPageIn): Zoom in and zoom out are not the same.
-
-2010-09-11  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Dan Bernstein.
-
-        Implement WebKit2 callback equivalent to - [WebUIDelegate webView:setStatusText:]
-        <rdar://problem/8359252>
-        https://bugs.webkit.org/show_bug.cgi?id=45605
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (setStatusText):
-        (contentsSizeChanged):
-        (-[BrowserWindowController awakeFromNib]):
-        * MiniBrowser/win/BrowserView.cpp:
-        (runJavaScriptConfirm):
-        (runJavaScriptPrompt):
-        (setStatusText):
-        (contentsSizeChanged):
-        (BrowserView::create):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::createOtherPage):
-        (WTR::TestController::initialize):
-
-2010-09-11  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Dan Bernstein.
-
-        Add callback mechanism for the getting the source of a frame
-        <rdar://problem/8364681>
-        https://bugs.webkit.org/show_bug.cgi?id=45604
-
-        Add ability to dump the main frame's source to the console.
-
-        * MiniBrowser/mac/BrowserWindowController.h:
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController dumpSourceToConsole:]):
-        * MiniBrowser/mac/MainMenu.xib:
-
-2010-09-11  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Remove unneeded Empty Queue messages
-        https://bugs.webkit.org/show_bug.cgi?id=45602
-
-        We already have a /gc job to delete these.
-        recentstatus.py is already smart enough to use the
-        most recent of the workitems last update or the most recent status,
-        so removing these should not change the _last_status_date() return
-        value more than a few milliseconds.
-
-        These messages just spam the recent status log.
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-
-2010-09-11  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Fix Python exception when generating synthetic patch IDs
-        https://bugs.webkit.org/show_bug.cgi?id=45592
-
-        Can't concatenate strings and numbers directly.
-
-        * QueueStatusServer/handlers/queuestatus.py:
-
-2010-09-11  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Group statuses in queue status by patch ID
-        https://bugs.webkit.org/show_bug.cgi?id=45588
-
-        Group statuses by patch ID so that the status page is easier
-        to scan.
-
-        * QueueStatusServer/handlers/queuestatus.py:
-        * QueueStatusServer/stylesheets/dashboard.css:
-        (.status-group):
-        (.status-bug):
-        (.status-group ul):
-        (.status-group ul li):
-        (.status-group ul li:hover):
-        (.status-cell):
-        (.status-cell:hover):
-        (.status-cell.pass):
-        (.status-cell.fail):
-        (.status-cell.pending):
-        (.status-cell.error):
-        * QueueStatusServer/templates/dashboard.html:
-        * QueueStatusServer/templates/queuestatus.html:
-
-2010-09-11  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Implement layoutTestController.dumpResourceResponseMIMETypes in Chromium DRT
-        https://bugs.webkit.org/show_bug.cgi?id=45479
-
-        Implement layoutTestController.dumpResourceResponseMIMETypes (modelled after
-        implementation in ResourceLoadDelegate in the Mac port).
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::dumpResourceResponseMIMETypes):
-        (LayoutTestController::reset):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController::setShouldDumpResourceResponseMIMETypes):
-        (LayoutTestController::shouldDumpResourceResponseMIMETypes):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::shouldDumpResourceResponseMIMETypes):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::didReceiveResponse):
-
-2010-09-11  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        queues.webkit.org should expose /remote_api for data upload/download
-        https://bugs.webkit.org/show_bug.cgi?id=45559
-
-        * QueueStatusServer/app.yaml:
-         - /remote_api is a standard app-engine service which allows use of
-           the bulk uploader for data upload/download.  Exposing this
-           (for admin access only) allows us to use 
-
-2010-09-10  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Dan Bernstein.
-
-        Add zoom support to WebKit2 API
-        <rdar://problem/7660657>
-        https://bugs.webkit.org/show_bug.cgi?id=45585
-
-        - Add zoom options to MiniBrowser that mimic Safari's options using
-          the new WebKit2 zoom APIs.
-        - Switch uses of float for the zoom APIs to use double.
-
-        * MiniBrowser/mac/BrowserWindowController.h:
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController initWithPageNamespace:]):
-        (-[BrowserWindowController validateMenuItem:]):
-        (-[BrowserWindowController validateUserInterfaceItem:]):
-        (-[BrowserWindowController currentZoomFactor]):
-        (-[BrowserWindowController setCurrentZoomFactor:]):
-        (-[BrowserWindowController canZoomIn]):
-        (-[BrowserWindowController zoomIn:]):
-        (-[BrowserWindowController canZoomOut]):
-        (-[BrowserWindowController zoomOut:]):
-        (-[BrowserWindowController canResetZoom]):
-        (-[BrowserWindowController resetZoom:]):
-        (-[BrowserWindowController toggleZoomMode:]):
-        * MiniBrowser/mac/MainMenu.xib:
-        * WebKitTestRunner/InjectedBundle/EventSendingController.cpp:
-        (WTR::EventSendingController::textZoomIn):
-        (WTR::EventSendingController::textZoomOut):
-        (WTR::EventSendingController::zoomPageIn):
-        (WTR::EventSendingController::zoomPageOut):
-
-2010-09-10  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Fix crash in DRT in standalone mode
-
-        https://bugs.webkit.org/show_bug.cgi?id=45454
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::loadNextTestInStandAloneMode):
-
-2010-09-10  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Remove unnecessary constraint in WebCore of choosing either text zoom or full page zoom.
-        Precursor to <rdar://problem/7660657>
-        https://bugs.webkit.org/show_bug.cgi?id=45522
-
-        Update for changes to the Bundle API to allow separate control of page and text zoom
-        levels.
-
-        * WebKitTestRunner/InjectedBundle/EventSendingController.cpp:
-        (WTR::EventSendingController::textZoomIn):
-        (WTR::EventSendingController::textZoomOut):
-        (WTR::EventSendingController::zoomPageIn):
-        (WTR::EventSendingController::zoomPageOut):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::reset):
-
-2010-09-10  Yael Aharon  <yael.aharon@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Support click event for notifications
-        https://bugs.webkit.org/show_bug.cgi?id=44836
-
-        Add support for simulateDesktopNotificationClick by calling
-        back to DumpRenderTreeSupportQt.cpp.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::simulateDesktopNotificationClick):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-09-10  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Update queue status when patches fail their first land attempt
-        https://bugs.webkit.org/show_bug.cgi?id=45583
-
-        Add a few more _update_status calls to make it more obvious if a patch is 
-        being retried because tests failed.
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-
-2010-09-10  Balazs Kelemen  <kb@inf.u-szeged.hu>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] MiniBrowser crashes with multiply windows when closing one of them
-        https://bugs.webkit.org/show_bug.cgi?id=45536
-
-        * MiniBrowser/qt/BrowserView.cpp:
-        (BrowserView::BrowserView): Reference the context instead of adopting it
-        because it can be shared across different views.
-
-2010-09-10  Tony Chang  <tony@chromium.org>
-
-        Unreviewed, rolling out r67241.
-        http://trac.webkit.org/changeset/67241
-        https://bugs.webkit.org/show_bug.cgi?id=44709
-
-        Accidentally committed.
-
-        * Scripts/webkitpy/layout_tests/deduplicate_tests.py:
-        * Scripts/webkitpy/layout_tests/deduplicate_tests_unittest.py:
-
-2010-09-10  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        deduplicate-tests should be runnable from any WebKit directory
-        https://bugs.webkit.org/show_bug.cgi?id=44709
-
-        * Scripts/webkitpy/layout_tests/deduplicate_tests.py:
-        * Scripts/webkitpy/layout_tests/deduplicate_tests_unittest.py:
-
-2010-09-10  Tony Chang  <tony@chromium.org>
-
-        Unreviewed, rolling out r67216.
-        http://trac.webkit.org/changeset/67216
-        https://bugs.webkit.org/show_bug.cgi?id=44709
-
-        Broke
-
-        * Scripts/webkitpy/layout_tests/deduplicate_tests.py:
-        * Scripts/webkitpy/layout_tests/deduplicate_tests_unittest.py:
-
-2010-09-10  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        deduplicate-tests should be runnable from any WebKit directory
-        https://bugs.webkit.org/show_bug.cgi?id=44709
-
-        * Scripts/webkitpy/layout_tests/deduplicate_tests.py:
-        * Scripts/webkitpy/layout_tests/deduplicate_tests_unittest.py:
-
-2010-09-09  Hans Wennborg  <hans@chromium.org>
-
-        Reviewed by Jeremy Orlow.
-
-        Hook up LayoutTestController.setMockDeviceOrientation() in Chromium DumpRenderTree.
-        https://bugs.webkit.org/show_bug.cgi?id=45460
-
-        This enables DumpRenderTree to run layout tests for DeviceOrientation.
-
-        Also declare the LayoutTestController destructor out-of-line.
-        Otherwise the implicit destructor would cause compiler errors because
-        of the OwnPtr<WebKit::WebDeviceOrientationClientMock> member.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::~LayoutTestController):
-        (LayoutTestController::setMockDeviceOrientation):
-        (LayoutTestController::deviceOrientationClient):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::deviceOrientationClient):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2010-09-09  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r67119.
-        http://trac.webkit.org/changeset/67119
-        https://bugs.webkit.org/show_bug.cgi?id=45505
-
-        Extra newlines in results (Requested by tony^work on #webkit).
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::reset):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/TestShell.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (printResponseDescription):
-        (printNodeDescription):
-        (printRangeDescription):
-        (WebViewHost::shouldBeginEditing):
-        (WebViewHost::shouldEndEditing):
-        (WebViewHost::shouldInsertNode):
-        (WebViewHost::shouldChangeSelectedRange):
-        (WebViewHost::shouldDeleteRange):
-        (WebViewHost::shouldApplyStyle):
-        (WebViewHost::didBeginEditing):
-        (WebViewHost::didChangeSelection):
-        (WebViewHost::didChangeContents):
-        (WebViewHost::didEndEditing):
-        (WebViewHost::decidePolicyForNavigation):
-        (WebViewHost::didCancelClientRedirect):
-        (WebViewHost::didStartProvisionalLoad):
-        (WebViewHost::didReceiveServerRedirectForProvisionalLoad):
-        (WebViewHost::didFailProvisionalLoad):
-        (WebViewHost::didCommitProvisionalLoad):
-        (WebViewHost::didFinishDocumentLoad):
-        (WebViewHost::didHandleOnloadEvents):
-        (WebViewHost::didFailLoad):
-        (WebViewHost::didFinishLoad):
-        (WebViewHost::didChangeLocationWithinPage):
-        (WebViewHost::willSendRequest):
-        (WebViewHost::didReceiveResponse):
-        (WebViewHost::didFinishResourceLoad):
-        (WebViewHost::didFailResourceLoad):
-        (WebViewHost::didDisplayInsecureContent):
-        (WebViewHost::didRunInsecureContent):
-        (WebViewHost::printFrameDescription):
-
-2010-09-09  Michael Saboff  <msaboff@apple.com>
-
-        Unreviewed, adding myself to committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-09-09  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Implement layoutTestController.dumpResourceResponseMIMETypes in Chromium DRT
-        https://bugs.webkit.org/show_bug.cgi?id=45479
-
-        Implement layoutTestController.dumpResourceResponseMIMETypes (modelled after
-        implementation in ResourceLoadDelegate in the Mac port).
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::dumpResourceResponseMIMETypes):
-        (LayoutTestController::reset):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController::setShouldDumpResourceResponseMIMETypes):
-        (LayoutTestController::shouldDumpResourceResponseMIMETypes):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::shouldDumpResourceResponseMIMETypes):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::didReceiveResponse):
-
-2010-09-09  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Daniel Bates.
-
-        svn-apply tries to delete directories it shouldn't
-        https://bugs.webkit.org/show_bug.cgi?id=45424
-
-        isDirectoryEmptyForRemoval had the wrong check. If an item in the
-        directory is itself a directory, then the directory is definitely
-        not empty.
-
-        * Scripts/svn-apply:
-
-2010-09-09  Chris Fleizach  <cfleizach@apple.com>
-
-        Fixing GTK and windows build failure.
-
-        AX: Support AccessibilityTextMarkers in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=44778
-
-        * DumpRenderTree/AccessibilityTextMarker.h:
-        (AccessibilityTextMarker::platformTextMarker):
-        (AccessibilityTextMarkerRange::platformTextMarkerRange):
-        * DumpRenderTree/mac/AccessibilityTextMarkerMac.mm:
-        (AccessibilityTextMarker::platformTextMarker):
-        (AccessibilityTextMarkerRange::platformTextMarkerRange):
-
-2010-09-09  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by David Kilzer.
-
-        AX: Support AccessibilityTextMarkers in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=44778
-
-        Add AccessibilityTextMarker and AccessibilityTextMarkerRange which encapsulate the AXTextMarkers 
-        that WebCore uses when vending information about its VisiblePositions through AX.
-
-        There are a few new methods in AccessibilityUIElement to retrieve and use text markers, and some basic
-        methods for encapsulating and checking equality.
-
-        This will allow future bug fixes in the text marker system to be adequately tested.
-
-        * DumpRenderTree/AccessibilityTextMarker.cpp: Added.
-        (toTextMarker):
-        (isMarkerEqualCallback):
-        (markerFinalize):
-        (AccessibilityTextMarker::makeJSAccessibilityTextMarker):
-        (AccessibilityTextMarker::getJSClass):
-        (toTextMarkerRange):
-        (isMarkerRangeEqualCallback):
-        (markerRangeFinalize):
-        (AccessibilityTextMarkerRange::makeJSAccessibilityTextMarkerRange):
-        (AccessibilityTextMarkerRange::getJSClass):
-        * DumpRenderTree/AccessibilityTextMarker.h: Added.
-        (AccessibilityTextMarker::platformTextMarker):
-        (AccessibilityTextMarkerRange::platformTextMarkerRange):
-        (AccessibilityTextMarker::AccessibilityTextMarker):
-        (AccessibilityTextMarker::~AccessibilityTextMarker):
-        (AccessibilityTextMarker::isEqual):
-        (AccessibilityTextMarkerRange::AccessibilityTextMarkerRange):
-        (AccessibilityTextMarkerRange::~AccessibilityTextMarkerRange):
-        (AccessibilityTextMarkerRange::isEqual):
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (textMarkerRangeForElementCallback):
-        (textMarkerRangeLengthCallback):
-        (textMarkerRangeForMarkersCallback):
-        (startTextMarkerForTextMarkerRangeCallback):
-        (endTextMarkerForTextMarkerRangeCallback):
-        (accessibilityElementForTextMarkerCallback):
-        (AccessibilityUIElement::textMarkerRangeForElement):
-        (AccessibilityUIElement::textMarkerRangeLength):
-        (AccessibilityUIElement::startTextMarkerForTextMarkerRange):
-        (AccessibilityUIElement::endTextMarkerForTextMarkerRange):
-        (AccessibilityUIElement::accessibilityElementForTextMarker):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/mac/AccessibilityTextMarkerMac.mm: Added.
-        (AccessibilityTextMarker::AccessibilityTextMarker):
-        (AccessibilityTextMarker::~AccessibilityTextMarker):
-        (AccessibilityTextMarker::isEqual):
-        (AccessibilityTextMarkerRange::AccessibilityTextMarkerRange):
-        (AccessibilityTextMarkerRange::~AccessibilityTextMarkerRange):
-        (AccessibilityTextMarkerRange::isEqual):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::textMarkerRangeForElement):
-        (AccessibilityUIElement::textMarkerRangeLength):
-        (AccessibilityUIElement::textMarkerRangeForMarkers):
-        (AccessibilityUIElement::startTextMarkerForTextMarkerRange):
-        (AccessibilityUIElement::endTextMarkerForTextMarkerRange):
-        (AccessibilityUIElement::accessibilityElementForTextMarker):
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-
-2010-08-25  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        don't delete duplicates needed because of intermediate results
-        https://bugs.webkit.org/show_bug.cgi?id=44653
-
-        Also, output the full path so we can pipe the output to rm.
-
-        * Scripts/webkitpy/layout_tests/deduplicate_tests.py:
-        * Scripts/webkitpy/layout_tests/deduplicate_tests_unittest.py:
-
-2010-09-09  Balazs Kelemen  <kb@inf.u-szeged.hu>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] MiniBrowser does not starts properly
-        https://bugs.webkit.org/show_bug.cgi?id=45459
-
-        Do not try set up the first window by calling newWindow on a
-        newly created BrowserWindow since it creates a new object.
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        * MiniBrowser/qt/main.cpp:
-        (main):
-
-2010-09-09  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] Get ImageDiff building on Win32
-        https://bugs.webkit.org/show_bug.cgi?id=45353
-
-        * DumpRenderTree/gtk/ImageDiff.cpp:
-        (main): Switch from using strtok to g_strsplit.
-
-2010-09-09  Zoltan Horvath  <zoltan@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Modify load method of MiniBrowser's BrowserView class
-        https://bugs.webkit.org/show_bug.cgi?id=45442
-
-        Modify load method to take a QString as argument, remove unnecessary QT_VERSION_CHECK.
-
-        * MiniBrowser/qt/BrowserView.cpp:
-        (BrowserView::load):
-        * MiniBrowser/qt/BrowserView.h:
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::load):
-
-2010-09-09  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        fix show_results in new-run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=45413
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2010-09-08  Victor Wang  <victorw@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        [Chromium] Fix test results server to make sure
-        it does not have corrupted data.
-
-        results.json file size coulbe be >1M and we split
-        the data into multiple data store entries in this
-        case. This patch fixes the issue that the data may
-        be corrupted if data store error happens in the middle
-        of saving multiple entries.
-
-        https://bugs.webkit.org/show_bug.cgi?id=45063
-
-        * TestResultServer/model/datastorefile.py:
-
-2010-09-08  Peter Varga  <pvarga@inf.u-szeged.hu>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Fix ignoring return value warning in case of gcc 4.4.4
-        https://bugs.webkit.org/show_bug.cgi?id=45384
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:
-        (testPostURLFile):
-        If fwrite have written zero byte then the testPostURLFile function
-        returns with false as tempFile can't be opened.
-        * DumpRenderTree/qt/ImageDiff.cpp:
-        (main):
-        Put fwrite function into an if condition without body to avoid
-        warning. It is safe because this function writes to the stdout.
-
-2010-09-08  Satish Sampath  <satish@chromium.org>
-
-        Unreviewed, adding myself to committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-09-08  Hans Wennborg  <hans@chromium.org>
-
-        Unreviewed.
-
-        Adding myself as a committer in committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-09-08  Zoltan Horvath  <zoltan@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Refactor MiniBrowser 
-        https://bugs.webkit.org/show_bug.cgi?id=45173
-
-        Split BrowserWindow into two source files and headers. Remove unnecessary header includes.
-
-        * MiniBrowser/qt/BrowserView.cpp: Added.
-        (createNewPage):
-        (BrowserView::BrowserView):
-        (BrowserView::resizeEvent):
-        (BrowserView::load):
-        (BrowserView::view):
-        * MiniBrowser/qt/BrowserView.h: Added.
-        (BrowserView::~BrowserView):
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        * MiniBrowser/qt/BrowserWindow.h:
-        * MiniBrowser/qt/MiniBrowser.pro:
-
-2010-09-08  Adam Barth  <abarth@webkit.org>
-
-        Rubber-stamped by Eric Seidel.
-
-        Rename DocLoader to CachedResourceLoader because that's what it does.
-
-        * Scripts/do-webcore-rename:
-
-2010-09-07  Kinuko Yasuda  <kinuko@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Enable incremental results.json generation for non-layout tests.
-        https://bugs.webkit.org/show_bug.cgi?id=45315
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py: Enable generate_incremental_results=True by default. (This still keeps to generate results.json.)  Also add a code to upload results json files to the app-engine server.  Need a chromium change to actually start the uploading.
-
-        * TestResultServer/model/jsonresults.py: Make sure we save the file with test_type for incremental cases too.
-
-
-2010-09-07  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix
-
-        Missed one test in mac_unittest.py in previous change; for some
-        reason the method is listed twice. I will fix both for now, but will
-        figure this out in a later, not-time-sensitive patch.
-
-        https://bugs.webkit.org/show_bug.cgi?id=45357
-
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-
-2010-09-07  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        test-webkitpy: Fix load error of
-        webkitpy/layout_tests/port/factory_unittest.py on Win32 Python
-        https://bugs.webkit.org/show_bug.cgi?id=45356 Need a short
-
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-          Avoid to import fcntl on win32. Win32 Python doesn't have fcntl
-          and we don't use server_process.py on Win32 Python. However
-          unittest.py tries to load everything in a module.
-
-2010-09-07  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        Fix regression introduced in previous change to new-run-webkit-tests
-        (bug 45090) to not try to run unittests for the Mac implementation
-        of the Port interface if we aren't running on a Mac.
-
-        Also fix the overrides implementation mock in the chromium unittests
-        to fix the case where there are overrides checked in that cause
-        problems.
-
-        https://bugs.webkit.org/show_bug.cgi?id=45357
-
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-
-2010-09-01  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: still more unit tests
-
-        Clean up and remove unnecessary code. Biggest notable change is
-        moving the chromium-specific imagediff code from port/base to
-        port/chromium.
-
-        Add more unit tests for run_webkit_tests.py, port/base.py,
-        port/factory.py, port/dryrun.py, and
-        layout_package/dump_render_tree_thread.py
-
-        This covers almost all of the generic and test code paths except for
-        a few error paths involving invalid or port-specific command line
-        arguments, and the code path for uploading results files to the
-        buildbots.
-        
-        https://bugs.webkit.org/show_bug.cgi?id=45090
-
-        * Scripts/webkitpy/layout_tests/data/failures/expected/hang.html: Added.
-        * Scripts/webkitpy/layout_tests/data/http/tests/passes/text-expected.txt: Copied from WebKitTools/Scripts/webkitpy/layout_tests/data/passes/text-expected.txt.
-        * Scripts/webkitpy/layout_tests/data/http/tests/passes/text.html: Copied from WebKitTools/Scripts/webkitpy/layout_tests/data/passes/text.html.
-        * Scripts/webkitpy/layout_tests/data/http/tests/ssl/text-expected.txt: Copied from WebKitTools/Scripts/webkitpy/layout_tests/data/passes/text-expected.txt.
-        * Scripts/webkitpy/layout_tests/data/http/tests/ssl/text.html: Copied from WebKitTools/Scripts/webkitpy/layout_tests/data/passes/text.html.
-        * Scripts/webkitpy/layout_tests/data/platform/test/test_expectations.txt:
-        * Scripts/webkitpy/layout_tests/data/websocket/tests/passes/text-expected.txt: Copied from WebKitTools/Scripts/webkitpy/layout_tests/data/passes/text-expected.txt.
-        * Scripts/webkitpy/layout_tests/data/websocket/tests/passes/text.html: Copied from WebKitTools/Scripts/webkitpy/layout_tests/data/passes/text.html.
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread_unittest.py: Added.
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/dryrun.py:
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py: Added.
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-09-07  Joseph Pecoraro  <joepeck@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Provide a way to trigger a <select multiple> onchange event on changes
-        https://bugs.webkit.org/show_bug.cgi?id=45192
-
-        Adds a selector on ObjCController for testing
-        -[DOMHTMLSelectElement _activateItemAtIndex:allowMultipleSelection:] and
-        its different uses.
-
-        * DumpRenderTree/mac/ObjCController.m:
-        (+[ObjCController isSelectorExcludedFromWebScript:]):
-        (+[ObjCController webScriptNameForSelector:]):
-        (-[ObjCController setSelectElement:selectedIndex:allowingMultiple:]):
-
-2010-09-07  James Robinson  <jamesr@chromium.org>
-
-        Rubber-stamped by Dimitri Glazkov.
-
-        Move myself from the committer to the reviewer list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-09-07  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Darin Fisher.
-
-        [chromium] Make a public flag for how DRT generates bitmaps on Linux
-        https://bugs.webkit.org/show_bug.cgi?id=45133
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::dumpImage):
-
-2010-09-07  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Implement --check-layout-test-sys-deps
-        https://bugs.webkit.org/show_bug.cgi?id=45283
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main): Check --check-layout-test-sys-deps and call checkLayoutTestSystemDependencies().
-        * DumpRenderTree/chromium/TestShell.h: Declare checkLayoutTestSystemDependencies().
-        * DumpRenderTree/chromium/TestShellGtk.cpp:
-        (checkLayoutTestSystemDependencies): Add an empty implementation.
-        * DumpRenderTree/chromium/TestShellMac.mm:
-        (checkLayoutTestSystemDependencies): Add an empty implementation.
-        * DumpRenderTree/chromium/TestShellWin.cpp:
-        (checkLayoutTestSystemDependencies): Port similar function of test_shell.
-
-2010-09-07  Jessie Berlin  <jberlin@apple.com>
-
-        Unreviewed. Mac build fix.
-
-        * MiniBrowser/mac/WebBundle/WebBundleMain.m:
-        (didClearWindowObjectForFrame):
-
-2010-09-07  Jessie Berlin  <jberlin@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Indicate which one of the ScriptWorlds for a Frame the Window Object has been cleared for
-        https://bugs.webkit.org/show_bug.cgi?id=45217
-        
-        Make WebKitTestRunner work with this change.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::didClearWindowForFrame):
-        Make sure the ScriptWorld here is the normal world, since that is no longer being done in
-        WebFrameLoaderClient.
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-
-2010-09-07  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, build fix.
-
-        webkit-patch command to find the ports covering a specific layout test
-        https://bugs.webkit.org/show_bug.cgi?id=42832
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py: Don't assume the
-        tests are present when building the expectations. This is needed
-        for the unittests.
-
-2010-09-06  Philippe Normand  <pnormand@igalia.com>
-
-        Reviewed by Adam Barth.
-
-        webkit-patch command to find the ports covering a specific layout test
-        https://bugs.webkit.org/show_bug.cgi?id=42832
-
-        To use it: webkit-patch skipped-ports some/layout/test.html
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-        * Scripts/webkitpy/tool/commands/queries_unittest.py:
-        * Scripts/webkitpy/tool/main.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-09-07  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
-
-        Reviewed by Eric Seidel.
-
-        [NRWT] Add temp directory to all running drivers.
-        https://bugs.webkit.org/show_bug.cgi?id=45261
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2010-09-06  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [Chromium/DRT] Empty out user stylesheet after each test run.
-        https://bugs.webkit.org/show_bug.cgi?id=45282
-
-        This should significantly cut down on the number of the mysterious flaky tests
-        whose diffs looked like the page was blown up to a very lage size. This
-        was indeed the dirty work of platform/mac/fast/loader/user-stylesheet-fast-path.html,
-        which set the base body font to 100px.
-
-        Since the user stylesheet was never reset, _all_ pixel tests that ran after it in
-        the same thread failed.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetWebSettings): Set user stylesheet to an empty URL.
-
-2010-09-06  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Do not generate pixel results for text/plain resources
-        https://bugs.webkit.org/show_bug.cgi?id=45253
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::dump): Clear shouldGeneratePixelResults flag for text/plain.
-
-2010-09-06  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        print out correct error when a DRT thread dies in NRWT
-        https://bugs.webkit.org/show_bug.cgi?id=45281
-
-        Not sure why, but with the parens, python 2.6.5 on Linux
-        gives an error that raise takes 5 arguments and 0 were given.
-        Didn't test other platforms or python versions, but putting it
-        all on one line fixes it and correctly prints the exception
-        from the DRT thread.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-09-06  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, just adding some emails from lists.webkit.org.
-
-        Update committers.py to include emails from lists.webkit.org
-        as found by the validate-committer-lists script.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-09-06  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] Small code cleanup in DumpRenderTreeGtk.cpp
-        https://bugs.webkit.org/show_bug.cgi?id=45213
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (initializeFonts): Made this function do nothing for non-X11 platforms, so we don't
-        have to surround the invocation with #ifdefs.
-        (useLongRunningServerMode): Added.
-        (runTestingServerLoop): Added.
-        (initializeGlobalsFromCommandLineOptions): Added.
-        (runTest): Removed ifdefs.
-        (main): Use new helper functions.
-
-2010-09-06  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] EventSender should support modifier keys with mouseDown and mouseUp events
-        https://bugs.webkit.org/show_bug.cgi?id=45235
-
-        Add support for interpreting the modifier key arguments to the mouseDown and mouseUp
-        methods of the EventSender.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (prepareMouseButtonEvent): Allow passing in a modifier bitmask, which will be OR'd
-        with the current modifiers.
-        (contextClickCallback): Always send no modifiers when preparing the mouse event.
-        (gdkModifersFromJSValue): Added, converts a JSValue array into a GDK modifier bitmask.
-        (mouseDownCallback): Send in the requested modifiers to prepareMouseButtonEvent.
-        (mouseUpCallback): Ditto.
-
-2010-09-05  Peter Kasting  <pkasting@google.com>
-
-        Reviewed by Adam Barth.
-
-        Make Chromium/Mac generate continuous mousewheel events with the same wheelDelta values as Safari/Mac.
-        https://bugs.webkit.org/show_bug.cgi?id=45155
-
-        * DumpRenderTree/chromium/EventSender.cpp: Modify Chromium DRT mousewheel event generation to match new behavior on Mac.
-        (EventSender::handleMouseWheel):
-
-2010-09-05  Yury Semikhatsky  <yurys@chromium.org>
-
-        Reviewed by Joseph Pecoraro.
-
-        Web Inspector: remove WebDevToolsAgentClient::forceRepaint which is not used
-        https://bugs.webkit.org/show_bug.cgi?id=45179
-
-        * DumpRenderTree/chromium/DRTDevToolsAgent.cpp:
-        * DumpRenderTree/chromium/DRTDevToolsAgent.h:
-
-2010-09-05  Andreas Kling  <andreas.kling@nokia.com>
-
-        Rubber-stamped by Daniel Bates.
-
-        Adding myself as reviewer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-09-04  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Martin Robinson.
-
-        Teach svn-apply/unapply about svn:mergeinfo
-        https://bugs.webkit.org/show_bug.cgi?id=45236
-
-        Recognize the svn:mergeinfo property and ignore it for now.
-
-        Currently, svn-apply/unapply recognize only '+' and '-'
-        property changes within a diff. We should add support
-        to recognize "Merged" and "Reverse-merged" changes as well.
-        Because svn:mergeinfo is metadata that is used only by SVN
-        and tends to be error-prone and/or nuisance (*), we will ignore
-        it for now.
-        (*) See "Parting Thoughts" of <http://www.collab.net/community/subversion/articles/merge-info.html>.
-
-        * Scripts/VCSUtils.pm:
-          - Modified parseSvnProperty() to recognize "Merged" and
-            "Reverse-merged" as the start of a property value.
-        * Scripts/webkitperl/VCSUtils_unittest/parseSvnDiffFooter.pl:
-          - Added the following unit tests:
-            "simple: add svn:mergeinfo"
-            "simple: delete svn:mergeinfo"
-            "simple: modified svn:mergeinfo"
-        * Scripts/webkitperl/VCSUtils_unittest/parseSvnProperty.pl:
-          - Added the following unit tests:
-            "simple: add svn:mergeinfo"
-            "simple: delete svn:mergeinfo"
-            "simple: modified svn:mergeinfo"
-            "simple: modified svn:mergeinfo using SVN 1.4 syntax"
-            "'Merged' change followed by 'Merged' change"
-            "'Reverse-merged' change followed by 'Reverse-merged' change"
-        * Scripts/webkitperl/VCSUtils_unittest/parseSvnPropertyValue.pl:
-          - Added the following unit tests:
-            "'Merged' change"
-            "'Reverse-merged' change"
-            "'Reverse-merged' change followed by 'Merge' change"
-            "'Merged' change followed by 'Merge' change"
-            "'Reverse-merged' change followed by 'Reverse-merged' change"
-            "'Reverse-merged' change followed by 'Reverse-merged' change followed by 'Merged' change"
-
-2010-09-04  Lucas De Marchi  <lucas.demarchi@profusion.mobi>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [EFL] Move test browser to WebKitTools directory
-        https://bugs.webkit.org/show_bug.cgi?id=45212
-
-        Follow other ports like QT and GTK which moved the test browser to
-        WebKitTools directory.
-
-        * CMakeListsEfl.txt: Added.
-        * EWebLauncher/main.c: Added.
-        (print_history):
-        (zoom_level_set):
-        (on_ecore_evas_resize):
-        (title_set):
-        (viewport_set):
-        (on_title_changed):
-        (on_progress):
-        (on_load_finished):
-        (on_toolbars_visible_set):
-        (on_toolbars_visible_get):
-        (on_statusbar_visible_set):
-        (on_statusbar_visible_get):
-        (on_scrollbars_visible_set):
-        (on_scrollbars_visible_get):
-        (on_menubar_visible_set):
-        (on_menubar_visible_get):
-        (on_tooltip_text_set):
-        (on_inputmethod_changed):
-        (on_viewport_changed):
-        (on_mouse_down):
-        (on_focus_out):
-        (on_focus_in):
-        (on_resized):
-        (on_key_down):
-        (on_browser_del):
-        (on_closeWindow):
-        (quit):
-        (browserCreate):
-        (browserDestroy):
-        (closeWindow):
-        (main_signal_exit):
-        (findThemePath):
-        (main):
-
-2010-09-03  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Set project dependencies so that they build serially. This fixes
-        issues when running run-webkit-tests if DRT is not built yet.
-
-        * DumpRenderTree/DumpRenderTree.sln:
-
-2010-09-03  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Fix reading configuraiton in NWRT to work on Windows.
-        https://bugs.webkit.org/show_bug.cgi?id=45180
-
-        * Scripts/webkitpy/layout_tests/port/base.py: Added 'perl' argument, because Windows doesn't know what to do
-            with the file otherwise.
-
-2010-09-03  Chris Rogers  <crogers@google.com>
-
-        Unreviewed
-
-        Add myself to the committers list
-        https://bugs.webkit.org/show_bug.cgi?id=45189
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-09-03  Andrey Kosyakov  <caseq@chromium.org>
-
-        Reviewed by Yury Semikhatsky.
-
-        http/tests/inspector/console-xhr-logging.html and http/tests/inspector/resource-har-conversion.html are failing on chromium win bot
-        Changed MIME type for .js to application/x-javascript for consistency with apache used on other platforms.
-        https://bugs.webkit.org/show_bug.cgi?id=45137
-
-        * Scripts/webkitpy/layout_tests/port/lighttpd.conf:
-
-2010-09-03  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
-
-        Reviewed by Eric Seidel.
-
-        Add feature detection support to NRWT.
-        https://bugs.webkit.org/show_bug.cgi?id=41842
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py: Added.
-
-2010-09-03  Hironori Bono  <hbono@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        Adds textInputController.hasSpellingMarker() to avoid using pixel tests for spellchecking tests
-        and implements it for Mac.
-        https://bugs.webkit.org/show_bug.cgi?id=41832
-
-        * DumpRenderTree/mac/TextInputController.m: Added [TextInputController hasSpellingMarker:length:]
-        and bind it so we can call it from JavaScript.
-        (+[TextInputController isSelectorExcludedFromWebScript:]):
-        (+[TextInputController webScriptNameForSelector:]):
-        (-[TextInputController hasSpellingMarker:length:]):
-
-2010-09-02  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add a unit test for commit-queue retries
-        https://bugs.webkit.org/show_bug.cgi?id=45162
-
-        I think commit-queue retries are not correctly avoiding
-        build and test on retries.  So I started testing the code.
-        Unfortunately this test did not find the bug.  But now
-        that we have the test we might as well keep it.
-        I also fixed a broken import in validate-committer-lists.
-
-        * Scripts/validate-committer-lists:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2010-09-02  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Remove dependency to base/task.h and base/timer.h
-        https://bugs.webkit.org/show_bug.cgi?id=45091
-
-        Task.{cpp,h} introduces a simpler version of Chromium
-        base/task.h. It doesn't have TupleN and Method.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-         Add Task.cpp and Task.h
-        * DumpRenderTree/chromium/DRTDevToolsAgent.cpp:
-        (DRTDevToolsAgent::DRTDevToolsAgent):
-        (DRTDevToolsAgent::reset):
-        (DRTDevToolsAgent::asyncCall):
-        (DRTDevToolsAgent::frontendLoaded):
-        * DumpRenderTree/chromium/DRTDevToolsAgent.h:
-        (DRTDevToolsAgent::taskList): Added to use MethodTask<T>.
-        * DumpRenderTree/chromium/DRTDevToolsClient.cpp:
-        (DRTDevToolsClient::DRTDevToolsClient):
-        (DRTDevToolsClient::~DRTDevToolsClient):
-        (DRTDevToolsClient::reset):
-        (DRTDevToolsClient::asyncCall):
-        * DumpRenderTree/chromium/DRTDevToolsClient.h:
-        (DRTDevToolsClient::taskList): Added to use MethodTask<T>.
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::EventSender):
-        (EventSender::reset):
-        (EventSender::scheduleAsynchronousClick):
-        * DumpRenderTree/chromium/EventSender.h:
-        (EventSender::taskList): Added to use MethodTask<T>.
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::WorkQueue::processWorkSoon):
-        (LayoutTestController::waitUntilDone):
-        (LayoutTestController::notifyDone):
-        (LayoutTestController::reset):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController::taskList): Added to use MethodTask<T>.
-        (LayoutTestController::WorkQueue::taskList): Added to use MethodTask<T>.
-        * DumpRenderTree/chromium/NotificationPresenter.cpp:
-        (deferredDisplayDispatch):
-        (NotificationPresenter::show):
-        * DumpRenderTree/chromium/Task.cpp: Added.
-        * DumpRenderTree/chromium/Task.h: Added.
-
-2010-09-02  Steve Block  <steveblock@google.com>
-
-        Reviewed by Adam Barth.
-
-        Hook up LayoutTestController.setMockDeviceOrientation() on Mac.
-        https://bugs.webkit.org/show_bug.cgi?id=43181
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (createWebViewAndOffscreenWindow):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setMockDeviceOrientation):
-
-2010-08-31  Adam Roben  <aroben@apple.com>
-
-        Fix flashiness when resizing the browser window on Windows
-
-        Reviewed by Sam Weinig.
-
-        * MiniBrowser/win/BrowserWindow.cpp:
-        (BrowserWindow::wndProc): Override WM_ERASEBKGND so Windows won't
-        periodically fill the window with white.
-
-2010-09-02  Peter Kasting  <pkasting@google.com>
-
-        Reviewed by Dimitri Glazkov.
-
-        Implement [continuous]MouseScrollBy() on Chromium, and partly on GTK.
-        https://bugs.webkit.org/show_bug.cgi?id=45073
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::EventSender):
-        (EventSender::mouseScrollBy):
-        (EventSender::continuousMouseScrollBy):
-        (EventSender::sendCurrentTouchEvent):
-        (EventSender::handleMouseWheel):
-        * DumpRenderTree/chromium/EventSender.h:
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (mouseScrollByCallback):
-        (continuousMouseScrollByCallback):
-
-2010-09-01  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Land a patched version of r66542 - change TestRunner to have an
-        separate cleanup method and fix the ordering of cleanup between
-        TestRunner and the printing module, and then wrap everything in a
-        try/finally block to ensure reliable cleanup without needing to
-        rely on stuff happening in the destructor of the TestRunner.
-
-        Also refactor run_webkit_tests.run() to be much smaller and cleaner
-        by creating a bunch of helper methods and moving more stuff into
-        the TestRunner class.
-
-        This fixes the crash at the end of the linux test run of
-        new-run-webkit-tests (and undoes the rollout in 66547).
-
-        https://bugs.webkit.org/show_bug.cgi?id=44902
-
-        * Scripts/webkitpy/layout_tests/data/failures/expected/exception.html: Added.
-        * Scripts/webkitpy/layout_tests/data/failures/expected/keyboard.html: Added.
-        * Scripts/webkitpy/layout_tests/data/passes/error-expected.txt: Added.
-        * Scripts/webkitpy/layout_tests/data/passes/error.html: Added.
-        * Scripts/webkitpy/layout_tests/data/platform/test/test_expectations.txt:
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-09-01  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Fix TestNetscapePlugIn to compile without access to QuickDraw private headers.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-
-2010-09-01  Brian Weinstein  <bweinstein@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Have kill-old-processes kill debug and release variants of WebKit2WebWebProcess
-        and WebKitTestRunner.
-
-        * BuildSlaveSupport/win/kill-old-processes:
-
-2010-09-01  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
-
-        Reviewed by Antonio Gomes.
-
-        [Qt] Remove obsolete include path from DumpRenderTree.pro
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-
-2010-09-01  Mahesh Kulkarni  <mahesh.kulkarni@nokia.com>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt] QWebPage::allowGeolocationRequest should be async API
-        https://bugs.webkit.org/show_bug.cgi?id=41364
-
-        Implements new async API for geolocation permission similar to
-        Notification. WebPage maintains list of geolocation permission request
-        QtWebkit and set's when LayoutTestController gets the access from test JS
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::WebPage):
-        (WebCore::WebPage::resetSettings):
-        (WebCore::WebPage::requestPermission):
-        (WebCore::WebPage::cancelPermission):
-        (WebCore::WebPage::permissionSet):
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::processLine):
-        (WebCore::DumpRenderTree::geolocationPermissionSet):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::setGeolocationPermission):
-        (LayoutTestController::setGeolocationPermissionCommon):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-09-01  Andras Becsi  <abecsi@webkit.org>
-
-        Reviewed by Antti Koivisto.
-
-        [Qt] Auto-generate WebKit2 forwarding headers
-        https://bugs.webkit.org/show_bug.cgi?id=44692
-
-        * MiniBrowser/qt/BrowserWindow.h: use source style includes
-        * MiniBrowser/qt/MiniBrowser.pro: add missing include paths
-        * Scripts/enumerate-included-framework-headers: Removed.
-
-2010-08-31  Ademar de Souza Reis Jr  <ademar.reis@openbossa.org>
-
-        Reviewed by Adam Barth.
-
-        Allow Ctrl+C inside Bugzilla::fetch_bug_dictionary
-        https://bugs.webkit.org/show_bug.cgi?id=44789
-
-        * Scripts/webkitpy/common/net/bugzilla.py:
-
-2010-08-31  Leandro Pereira  <leandro@profusion.mobi>
-
-        Reviewed by Adam Barth.
-
-        ews: Add support for EFL-EWS
-        https://bugs.webkit.org/show_bug.cgi?id=44982
-
-        * QueueStatusServer/model/queues.py: Add "efl-ews" to queues list.
-        * Scripts/webkitpy/common/config/ports.py: Define a EflPort class
-        and add it to the ports dict.
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py: Define a
-        EflEWS class.
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py: Add
-        a test case for the EFL EWS.
-
-2010-08-31  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        https://bugs.webkit.org/show_bug.cgi?id=42195
-        <rdar://problem/8186761> WebKitTestRunner needs to support layoutTestController.setXSSAuditorEnabled
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp: (WTR::LayoutTestController::setXSSAuditorEnabled):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        Added setXSSAuditorEnabled, calling through to an WKBundle private method. Calling this method
-        makes WebProcess use a different value for this preference than UIProcess thinks it uses.
-
-        * WebKitTestRunner/TestController.cpp: (WTR::TestController::resetStateToConsistentValues):
-        Reset xssAuditorEnabled. Even though the value doesn't change, this calls through to WebProcess,
-        which forgets its override.
-
-2010-08-31  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Gavin Barraclough.
-
-        WebKitTestRunner needs layoutTestController.addUserStyleSheet
-        https://bugs.webkit.org/show_bug.cgi?id=42680
-
-        WebKitTestRunner needs layoutTestController.addUserScript
-        https://bugs.webkit.org/show_bug.cgi?id=42681
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::addUserScript):
-        (WTR::LayoutTestController::addUserStyleSheet):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2010-08-31  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, rolling out r66542.
-        http://trac.webkit.org/changeset/66542
-        https://bugs.webkit.org/show_bug.cgi?id=44902
-
-        r66542 - the weird logging dependencies in Python stuck again ...
-
-        * Scripts/webkitpy/layout_tests/data/failures/expected/exception.html: Removed.
-        * Scripts/webkitpy/layout_tests/data/failures/expected/keyboard.html: Removed.
-        * Scripts/webkitpy/layout_tests/data/passes/error-expected.txt: Removed.
-        * Scripts/webkitpy/layout_tests/data/passes/error.html: Removed.
-        * Scripts/webkitpy/layout_tests/data/platform/test/test_expectations.txt:
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-08-31  Dumitru Daniliuc  <dumi@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Implementing LayoutTestController::markerTextForListItem() in Chromium's DRT.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::markerTextForListItem):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-
-2010-08-31  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: add more unit tests
-
-        Add more unit tests for new-run-webkit-tests; we now cover all but
-        the most obscure code paths in the generic code. We still need to
-        add coverage for the http server and web socket paths, and add better
-        coverage of the platform-specific logic. Note that the rebaselining
-        tool is still not well tested.
-
-        Also clean up some of the configuration logic for the printing
-        module and the way it interacts with the Python logging module; that
-        is a crufty interface, to be certain.
-        
-        https://bugs.webkit.org/show_bug.cgi?id=44902
-
-        * Scripts/webkitpy/layout_tests/data/failures/expected/exception.html: Added.
-        * Scripts/webkitpy/layout_tests/data/failures/expected/keyboard.html: Added.
-        * Scripts/webkitpy/layout_tests/data/passes/error-expected.txt: Added.
-        * Scripts/webkitpy/layout_tests/data/passes/error.html: Added.
-        * Scripts/webkitpy/layout_tests/data/platform/test/test_expectations.txt:
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-08-31  Darin Adler  <darin@apple.com>
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/check-for-global-initializers: Add a file that ends up having global initializers
-        in a debug build when built with certain compilers.
-
-2010-08-31  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        [GTK] Isolate all GTK+ typedefs into one file
-        https://bugs.webkit.org/show_bug.cgi?id=44900
-
-        * DumpRenderTree/gtk/EventSender.h: Remove GTK+ typedefs.
-
-2010-08-31  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Show more status on queue status pages
-        https://bugs.webkit.org/show_bug.cgi?id=44938
-
-        I upped the number of status lines from 6 to 15 --
-        this has been bugging me for a while...
-
-        I also disabled showing the chromium-win EWS queue
-        since it's been down for almost 5 months now.
-
-        * QueueStatusServer/handlers/dashboard.py:
-        * QueueStatusServer/handlers/queuestatus.py:
-        * QueueStatusServer/model/queues.py:
-
-2010-08-31  Zoltan Horvath  <zoltan@webkit.org>
-
-        Reviewed by Antonio Gomes.
-
-        [Qt] Read command line arguments and open them as URLs in new windows
-        https://bugs.webkit.org/show_bug.cgi?id=44944
-
-        Extend MiniBrowser to accept command line arguments and open them as URLs in new browser windows.
-
-        * MiniBrowser/qt/main.cpp:
-        (main):
-
-2010-08-31  Adrian Perez  <aperez@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        Support scripts to run Buildbot slaves under daemontools (gtk related)
-        https://bugs.webkit.org/show_bug.cgi?id=40053
-
-        * BuildSlaveSupport/gtk: Added.
-        * BuildSlaveSupport/gtk/README: Added.
-        * BuildSlaveSupport/gtk/buildbot: Added.
-        * BuildSlaveSupport/gtk/buildbot/log: Added.
-        * BuildSlaveSupport/gtk/buildbot/log/run: Added.
-        * BuildSlaveSupport/gtk/buildbot/run: Added.
-        * BuildSlaveSupport/gtk/crashmon: Added.
-        * BuildSlaveSupport/gtk/crashmon/crashmon: Added.
-        * BuildSlaveSupport/gtk/crashmon/log: Added.
-        * BuildSlaveSupport/gtk/crashmon/log/run: Added.
-        * BuildSlaveSupport/gtk/crashmon/run: Added.
-        * BuildSlaveSupport/gtk/daemontools-buildbot.conf: Added.
-        * BuildSlaveSupport/gtk/pulseaudio: Added.
-        * BuildSlaveSupport/gtk/pulseaudio/run: Added.
-        * BuildSlaveSupport/gtk/xvfb: Added.
-        * BuildSlaveSupport/gtk/xvfb/log: Added.
-        * BuildSlaveSupport/gtk/xvfb/log/run: Added.
-        * BuildSlaveSupport/gtk/xvfb/run: Added.
-
-2010-08-27  John Gregg  <johnnyg@google.com>
-
-        Reviewed by David Levin.
-
-        Notifications should support a click event.
-        Adds necessary hooks to chromium's DRT so that clicks on desktop notifications
-        can be simulated during a layout test.  Requires storing a list of active
-        notifications so that they can be referred to later for clicking.
-        https://bugs.webkit.org/show_bug.cgi?id=44800
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::simulateDesktopNotificationClick):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/NotificationPresenter.cpp:
-        (NotificationPresenter::simulateClick):
-        (NotificationPresenter::show):
-        (NotificationPresenter::cancel):
-        (NotificationPresenter::objectDestroyed):
-        * DumpRenderTree/chromium/NotificationPresenter.h:
-
-2010-08-30  Alice Liu  <alice.liu@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Add missing parts of didFinishDocumentLoadForFrame
-        https://bugs.webkit.org/show_bug.cgi?id=44913
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (didFinishDocumentLoadForFrame): Added
-        (-[BrowserWindowController awakeFromNib]): Updated struct
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage): Rearranged function ptr
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize): Updated struct
-
-2010-08-30  Vangelis Kokkevis  <vangelis@chromium.org>
-
-        Unreviewed: Add myself to the list of Committers.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-08-30  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Fix fast/notifications/notifications-display-close-events.html failure
-        https://bugs.webkit.org/show_bug.cgi?id=44585
-
-        Apply http://crrev.com/48893. We should dispatch display events
-        asynchronously.
-
-        * DumpRenderTree/chromium/NotificationPresenter.cpp:
-        (deferredDisplayDispatch):
-        (NotificationPresenter::show):
-
-2010-08-30  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        allow ports with windowed plugins to support windowless plugin tests
-
-        https://bugs.webkit.org/show_bug.cgi?id=40730
-
-        Ports that implement plugins windowed by default need to have a way of
-        supporting plugin tests that assume the plugin is windowless. Add this
-        feature to the tests and support it in the webkit test plugin. Also
-        add mouse and keyboard event logging to the webkit-test plugin on Unix.
-
-        Unskip the following tests on Qt:
-
-        plugins/mouse-events.html
-        plugins/keyboard-events.html
-        plugins/mouse-events-fixedpos.html
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
-        (pluginSetProperty):
-        * DumpRenderTree/TestNetscapePlugIn.subproj/main.cpp:
-        (NPP_New):
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_handle_event):
-
-2010-08-30  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix after addition of fileapi directory in WebCore.
-
-        * wx/build/settings.py:
-
-2010-08-30  Alejandro G. Castro  <alex@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        Fixed compilation error, now that we have included the
-        GtkVersioning.h we have to remove some version dependent code from
-        EventSender.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-
-2010-08-30  Alejandro G. Castro  <alex@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [Gtk] gdk_display_get_core_pointer and gdk_device_get_core_pointer
-        are deprecated
-        https://bugs.webkit.org/show_bug.cgi?id=44787
-
-        We have replaced GtkVersioning.cpp with GtkVersioning.c and
-        created a function (getDefaultGDKPointerDevice) to get the pointer
-        of the window with the new APIs. We added that function to DRT and
-        copyandpaste unit test.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (prepareMouseButtonEvent):
-        (mouseMoveToCallback):
-        (keyDownCallback):
-        * GNUmakefile.am:
-
-2010-08-30  Zoltan Horvath  <zoltan@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Add new window menu to MiniBrowser
-
-        Implement newWindow function and add a menu item for opening new window in MiniBrowser.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::newWindow):
-        * MiniBrowser/qt/BrowserWindow.h:
-        * MiniBrowser/qt/main.cpp:
-        (main):
-
-2010-08-29  James Robinson  <jamesr@chromium.org>
-
-        Reviewed by David Levin.
-
-        Make failing the download step fail the build
-        https://bugs.webkit.org/show_bug.cgi?id=44298
-
-        If the download step fails on a test bot, this ensures that
-        the build goes red instead of only the download step going red
-        and the overall build staying green.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2010-08-29  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Remove dependency to base/keyboard_codes.h
-        https://bugs.webkit.org/show_bug.cgi?id=44847
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-         Use webkit_support::VKEY_* instead of base::VKEY_*.
-
-2010-08-29  Darin Adler  <darin@apple.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=40589
-
-        * Scripts/prepare-ChangeLog: Only prepend namespaces to non-empty
-        function names.
-
-2010-08-26  Holger Hans Peter Freyther  <holger@moiji-mobile.com>
-
-        Reviewed by Darin Adler.
-
-        [iExploder] Add new CSS Properties and HTML Attributes
-        https://bugs.webkit.org/show_bug.cgi?id=44746
-
-        Updated the files with the update-iexploder-cssproperties script
-        and manually readded the -webkit-binding CSS Property to the list.
-
-        * iExploder/htdocs/cssproperties.in:
-        * iExploder/htdocs/htmlattrs.in:
-        * iExploder/htdocs/htmltags.in:
-
-2010-08-26  Holger Hans Peter Freyther  <holger@moiji-mobile.com>
-
-        Reviewed by Darin Adler.
-
-        Fix Coverage build after the addition of ANGLE
-        https://bugs.webkit.org/show_bug.cgi?id=44744
-
-        ANGLE is using libtool to build a static library and the version of
-        libtool on Leopard refuses to handle the -fprofile-arcs and -ftest-coverage
-        parameters. The easiest way to handle this is to not build ANGLE with
-        coverage information.
-
-        This is achieved by applying the XCode options for each project
-        separately and exclude ANGLE.
-
-        * Scripts/build-webkit: Remove -framework AppKit due link errors.
-        * Scripts/webkitdirs.pm: Do not apply the XCode options for ANGLE.
-
-2010-08-28  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix after directory addition.
-
-        * wx/build/settings.py:
-
-2010-08-28  Chris Guillory   <chris.guillory@google.com>
-
-        Reviewed by Chris Fleizach.
-
-        Add AX notification for childrenChanged
-        https://bugs.webkit.org/show_bug.cgi?id=44472
-
-        * DumpRenderTree/chromium/AccessibilityController.cpp:
-        (AccessibilityController::AccessibilityController):
-        (AccessibilityController::reset):
-        (AccessibilityController::getRootElement):
-        (AccessibilityController::dumpAccessibilityNotifications):
-        * DumpRenderTree/chromium/AccessibilityController.h:
-        (AccessibilityController::shouldDumpAccessibilityNotifications):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::didChangeAccessibilityObjectChildren):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2010-08-28  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Update commit-queue failure message
-        https://bugs.webkit.org/show_bug.cgi?id=44798
-
-        The commit-queue auto-restarts itself and has for a very long time.
-        No need for people to email me to request a restart anymore.
-
-        * Scripts/webkitpy/common/net/bugzilla.py:
-        * Scripts/webkitpy/common/net/bugzilla_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2010-07-27  Jer Noble  <jer.noble@apple.com>
-
-        Reviewed by Eric Carlson.
-
-        Add JavaScript API to allow a page to go fullscreen.
-        rdar://problem/6867795
-        
-        Added basic full screen support to DumpRenderTree: when a webView requests
-        that DumpRenderTree go "full screen", just call the provided callback listener object's
-        will/did Enter/Exit full screen methods.  Also, register a new user default which 
-        enables full screen support.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:supportsFullscreenForElement:]):
-        (-[UIDelegate webView:enterFullscreenForElement:listener:]):
-        (-[UIDelegate webView:exitFullscreenForElement:listener:]):
-
-2010-08-27  Benjamin Poulain  <benjamin.poulain@nokia.com>
-
-        Unreviewed. Add myself to the committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-08-27  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Pavel Feldman.
-
-        [DRT/Chromium] Fix inspector test failures
-        https://bugs.webkit.org/show_bug.cgi?id=44748
-
-        * DumpRenderTree/chromium/DRTDevToolsAgent.cpp:
-        (DRTDevToolsAgent::createClientMessageLoop):
-          Returns a valid WebKitClientMessageLoop instance
-        * DumpRenderTree/chromium/DRTDevToolsAgent.h:
-
-2010-08-26  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        Add Windows WebKit2 Tester to buildbot
-        <rdar://problem/7887703>
-
-        Reviewed by Dan Bernstein.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2010-08-26  Philippe Normand  <pnormand@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Needs DRT queueLoadHTMLString and setDeferMainResourceLoad-implementations
-        https://bugs.webkit.org/show_bug.cgi?id=42152
-
-        * DumpRenderTree/gtk/WorkQueueItemGtk.cpp:
-        (LoadHTMLStringItem::invoke): Implementation using
-        webkit_web_frame_load_string().
-
-2010-08-25  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        <rdar://problem/8334338> run-webkit-tests sometimes hangs when using
-        WebKitTestRunner (44331)
-
-        Reviewed by Darin Adler.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-        The hang occurs when WebKitTestRunner begins launching the WebKit2
-        web process then exits before it finishes launching. Work around this by
-        looking for the --print-supported-features argument and exiting without
-        creating the web process.
-
-2010-08-26  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: add rebaselining tests for test_expectations
-        
-        This patch adds more unit tests for the rebaselining code in the
-        test_expectations module. It doesn't add any tests for
-        rebaseline_chromium_webkit_tests itself; that will come some other
-        time.
-
-        https://bugs.webkit.org/show_bug.cgi?id=44648
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations_unittest.py:
-
-2010-08-26  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Add HTTP caching support
-        https://bugs.webkit.org/show_bug.cgi?id=44261
-
-        Ignore new soup API that we decided to merge into the soup backend
-        while it is being cooked. It follows the libsoup style, and will
-        be removed from WebKit as soon as it is merged into libsoup.
-
-        * Scripts/webkitpy/style/checker.py:
-
-2010-08-26  Mahesh Kulkarni  <mahesh.kulkarni@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] DumpRenderTree runs only one test from command mode
-        https://bugs.webkit.org/show_bug.cgi?id=44012
-
-        Enables support to run multiple test files and single
-        folder containing html files in stand alone mode
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::processArgsLine):
-        (WebCore::DumpRenderTree::loadNextTestInStandAloneMode):
-        (WebCore::DumpRenderTree::processLine):
-        (WebCore::DumpRenderTree::dump):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        (WebCore::DumpRenderTree::setStandAloneMode):
-        (WebCore::DumpRenderTree::isStandAloneMode):
-        * DumpRenderTree/qt/main.cpp:
-        (main):
-
-2010-08-25  Martin Robinson  <mrobinson@igalia.com>
-
-        Updating webkitpy test expectations.
-
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-
-2010-08-25  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        fix the always squash git config
-        https://bugs.webkit.org/show_bug.cgi?id=44651
-
-        Fix help text and apparently underscores are not allowed
-        in git config keys.
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/tool/steps/commit.py:
-
-2010-08-25  Darin Adler  <darin@apple.com>
-
-        Reviewed by John Sullivan.
-
-        * Scripts/commit-log-editor: Fix perl warning for people who have no
-        value for SVN_LOG_EDITOR or CVS_LOG_EDITOR.
-
-2010-08-25  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        stop blocking commits when the bots are red
-        https://bugs.webkit.org/show_bug.cgi?id=44644
-
-        This check currently is just annoying. It doesn't actually
-        help keep the tree green. We can always add it back later
-        if we decide the tree is generally more green.
-
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/ensurebuildersaregreen.py:
-
-2010-08-25  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Simon Fraser.
-
-        REGRESSION: media/video-loop.html is timing out on the commit-queue Leopard Bot
-        https://bugs.webkit.org/show_bug.cgi?id=38912
-
-        I know of nothing else to do but skip all media tests for the cq.
-
-        * Scripts/webkitpy/tool/steps/runtests.py:
-
-2010-08-25  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: add more unit tests for test_expectations
-        This adds unit tests to cover (almost?) all of the non-rebaselining
-        functionality.
-
-        https://bugs.webkit.org/show_bug.cgi?id=44579
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations_unittest.py:
-
-2010-08-25  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: add more unit tests
-
-        This change adds more unit tests for the image_diff, test_failures,
-        and test_files modules, bringing them to 100% coverage (and adds a
-        couple tests to run_webkit_tests while we're at it).
-
-        This test also turns on the "dryrun" port for testing when run on
-        the mac, increasing coverage in a few other places.
-
-        https://bugs.webkit.org/show_bug.cgi?id=44578
-
-        * Scripts/webkitpy/layout_tests/data/failures/expected/checksum-expected.checksum: Added.
-        * Scripts/webkitpy/layout_tests/data/failures/expected/checksum-expected.png: Added.
-        * Scripts/webkitpy/layout_tests/data/failures/expected/checksum-expected.txt: Added.
-        * Scripts/webkitpy/layout_tests/data/failures/expected/checksum.html: Copied from WebKitTools/Scripts/webkitpy/layout_tests/data/failures/expected/image_checksum.html.
-        * Scripts/webkitpy/layout_tests/data/failures/expected/missing_check-expected.png: Added.
-        * Scripts/webkitpy/layout_tests/data/failures/expected/missing_check-expected.txt: Added.
-        * Scripts/webkitpy/layout_tests/data/failures/expected/missing_check.html: Copied from WebKitTools/Scripts/webkitpy/layout_tests/data/failures/expected/missing_image.html.
-        * Scripts/webkitpy/layout_tests/data/failures/expected/timeout.html: Added.
-        * Scripts/webkitpy/layout_tests/data/platform/test/test_expectations.txt:
-        * Scripts/webkitpy/layout_tests/data/resources/README.txt: Added.
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-08-25  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: add more unit tests for layout_package/printing.py
-
-        This change adds more unit tests to get the test coverage to 100%
-        for the printing module. This code is actually pretty crufty and
-        has some layering violations that need to be cleaned up but I'll
-        save that for another CL after we get all the unit tests written and
-        we fix the multithreading issues. At least now we'll be able to tell
-        if we break things.
-
-        https://bugs.webkit.org/show_bug.cgi?id=44576
-
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-
-2010-08-25  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        new-run-webkit-tests should respect set-webkit-configuration
-        https://bugs.webkit.org/show_bug.cgi?id=44633
-
-        Moves the getting of the configuration into the base Port so that
-        chromium ports use it as well. In the downstream chromium port,
-        this should still just return Release.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2010-08-25  Tony Chang  <tony@chromium.org>
-
-        Not reviewed, changing svn props for a script.
-
-        * Scripts/deduplicate-tests: Added properties svn:executable and svn:eol-style.
-
-2010-08-25  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Remove WebKit2 from core builders
-        https://bugs.webkit.org/show_bug.cgi?id=44625
-
-        This builder was added to the core builders by accident.  It doesn't
-        appear to be green enough to be a core builder yet.
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot_unittest.py:
-
-2010-08-19  Adam Roben  <aroben@apple.com>
-
-        Test that NP_Initialize and NP_GetEntryPoints are called in the
-        correct order
-
-        The order differs between Mac and Windows (see r38858).
-
-        Fixes <http://webkit.org/b/44270> <rdar://problem/8330393> Crash in
-        NP_Initialize when loading QuickTime when running
-        plugins/embed-attributes-setting.html in WebKit2 on Windows
-
-        Reviewed by John Sullivan.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp: Added a CRASH macro and
-        a boolean to record whether NP_GetEntryPoints has been called.
-        (NP_Initialize): Crash on Windows if NP_GetEntryPoints hasn't been
-        called yet. This matches Flash and QuickTime's behavior.
-        (NP_GetEntryPoints): Crash on Mac if NP_Initialize hasn't been called
-        yet. This matches Silverlight's behavior.
-
-2010-08-25  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Cairo and EFL port shouldn't depend on glib.
-        https://bugs.webkit.org/show_bug.cgi?id=44354
-
-        Replace occurrences of GRefPtr and adoptGRef with PlatformRefPtr and
-        adoptPlatformRef.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::isSelected):
-
-2010-08-25  Ojan Vafai  <ojan@chromium.org>
-
-        Fix order of Timothy's email address. The script, and
-        other tools all assume that the first email is the bugzilla address.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-08-24  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Pavel Feldman.
-
-        [DRT/Chromium] Fix 26 inspector test crashes
-        https://bugs.webkit.org/show_bug.cgi?id=44580
-
-        - DRTDevToolsAgent has a reference to the main WebView. So we
-          should not clear it in closeDevTools() and should clear it in
-          ~TestShell().
-        - DRTDevToolsClient has a reference to a DevTools WebView and no
-          way to update it. So we should delete DRTDevToolsClient instances
-          in closeDevTools().
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::~TestShell):
-        (TestShell::closeDevTools):
-
-2010-08-24  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        unicode(Exception(\u"0x1234")) is busted in python 2.5, disable tests which hit this
-        https://bugs.webkit.org/show_bug.cgi?id=44584
-
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2010-08-24  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue and EWS bots should report all failures
-        https://bugs.webkit.org/show_bug.cgi?id=41820
-
-        Right now commit-queue/EWS only report failures when the
-        patch under testing fails.  We should report all failures
-        to the status server so that we can diagnose when the bots
-        are wedged w/o needing to log into the machines.
-
-        I also reduced the amount of data we upload since we've seen
-        timeouts during status upload.
-
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2010-08-24  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Remove HTML5 parser testing infrastructure now that we don't need it
-        https://bugs.webkit.org/show_bug.cgi?id=44581
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        (initializeGlobalsFromCommandLineOptions):
-        * Scripts/old-run-webkit-tests:
-        * Scripts/test-html5-parser: Removed.
-
-2010-08-24  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Fix 28 inspector test crashes
-        https://bugs.webkit.org/show_bug.cgi?id=44574
-
-        Reset DevToolsClient and DevToolsAgent before closing a DevTools
-        WebView in order to avoid accessing to a deleted WebView instance.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::closeDevTools):
-
-2010-08-24  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: clean up code for test_types, test_failures
-
-        Add a bunch of unit tests for webkitpy.layout_tests.test_types and
-        webkitpy.layout_tests.layout_package.test_failures, and remove
-        some dead code and otherwise clean up things.
-
-        https://bugs.webkit.org/show_bug.cgi?id=44559
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures_unittest.py: Added.
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py:
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py:
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base_unittest.py: Added.
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-
-2010-08-24  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        new-run-webkit-tests: revise unit testing strategy for test failures
-    
-        This change revamps the way we store test data for new-run-webkit-tests.
-        Previously we had a few copies of test files from the main test tree.
-        Now we have a bunch of completely fake test data and use the test
-        data to generate different kinds of test failures, getting
-        much better coverage.
-
-        https://bugs.webkit.org/show_bug.cgi?id=44556
-
-        * Scripts/webkitpy/layout_tests/data/failures/expected/crash.html: Added.
-        * Scripts/webkitpy/layout_tests/data/failures/expected/image-expected.checksum: Added.
-        * Scripts/webkitpy/layout_tests/data/failures/expected/image-expected.png: Added.
-        * Scripts/webkitpy/layout_tests/data/failures/expected/image-expected.txt: Added.
-        * Scripts/webkitpy/layout_tests/data/failures/expected/image.html: Added.
-        * Scripts/webkitpy/layout_tests/data/failures/expected/image_checksum-expected.checksum: Added.
-        * Scripts/webkitpy/layout_tests/data/failures/expected/image_checksum-expected.png: Added.
-        * Scripts/webkitpy/layout_tests/data/failures/expected/image_checksum-expected.txt: Added.
-        * Scripts/webkitpy/layout_tests/data/failures/expected/image_checksum.html: Added.
-        * Scripts/webkitpy/layout_tests/data/failures/expected/missing_image.html: Added.
-        * Scripts/webkitpy/layout_tests/data/failures/expected/missing_text.html: Added.
-        * Scripts/webkitpy/layout_tests/data/failures/expected/text-expected.txt: Added.
-        * Scripts/webkitpy/layout_tests/data/failures/expected/text.html: Added.
-        * Scripts/webkitpy/layout_tests/data/failures/unexpected/text-image-checksum-expected.checksum: Added.
-        * Scripts/webkitpy/layout_tests/data/failures/unexpected/text-image-checksum-expected.png: Added.
-        * Scripts/webkitpy/layout_tests/data/failures/unexpected/text-image-checksum-expected.txt: Added.
-        * Scripts/webkitpy/layout_tests/data/failures/unexpected/text-image-checksum.html: Added.
-        * Scripts/webkitpy/layout_tests/data/image/canvas-bg.html: Removed.
-        * Scripts/webkitpy/layout_tests/data/image/canvas-zoom-expected.checksum: Removed.
-        * Scripts/webkitpy/layout_tests/data/image/canvas-zoom-expected.png: Removed.
-        * Scripts/webkitpy/layout_tests/data/image/canvas-zoom-expected.txt: Removed.
-        * Scripts/webkitpy/layout_tests/data/image/canvas-zoom.html: Removed.
-        * Scripts/webkitpy/layout_tests/data/misc/crash-expected.txt: Removed.
-        * Scripts/webkitpy/layout_tests/data/misc/crash.html: Removed.
-        * Scripts/webkitpy/layout_tests/data/misc/missing-expectation.html: Removed.
-        * Scripts/webkitpy/layout_tests/data/misc/passing-expected.txt: Removed.
-        * Scripts/webkitpy/layout_tests/data/misc/passing.html: Removed.
-        * Scripts/webkitpy/layout_tests/data/passes/image-expected.checksum: Added.
-        * Scripts/webkitpy/layout_tests/data/passes/image-expected.png: Added.
-        * Scripts/webkitpy/layout_tests/data/passes/image-expected.txt: Added.
-        * Scripts/webkitpy/layout_tests/data/passes/image.html: Added.
-        * Scripts/webkitpy/layout_tests/data/passes/platform_image-expected.checksum: Added.
-        * Scripts/webkitpy/layout_tests/data/passes/platform_image-expected.png: Added.
-        * Scripts/webkitpy/layout_tests/data/passes/platform_image-expected.txt: Added.
-        * Scripts/webkitpy/layout_tests/data/passes/platform_image.html: Added.
-        * Scripts/webkitpy/layout_tests/data/passes/text-expected.txt: Added.
-        * Scripts/webkitpy/layout_tests/data/passes/text.html: Added.
-        * Scripts/webkitpy/layout_tests/data/platform/test/image/canvas-bg-expected.checksum: Removed.
-        * Scripts/webkitpy/layout_tests/data/platform/test/image/canvas-bg-expected.png: Removed.
-        * Scripts/webkitpy/layout_tests/data/platform/test/image/canvas-bg-expected.txt: Removed.
-        * Scripts/webkitpy/layout_tests/data/platform/test/passes/platform_image-expected.checksum: Added.
-        * Scripts/webkitpy/layout_tests/data/platform/test/passes/platform_image-expected.png: Added.
-        * Scripts/webkitpy/layout_tests/data/platform/test/passes/platform_image-expected.txt: Added.
-        * Scripts/webkitpy/layout_tests/data/platform/test/test_expectations.txt:
-        * Scripts/webkitpy/layout_tests/data/text/article-element-expected.txt: Removed.
-        * Scripts/webkitpy/layout_tests/data/text/article-element.html: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-
-2010-08-24  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        speed up new-run-webkit-tests unit tests
-
-        Add a --no-record-results flag that turns off generating the JSON
-        results file on every test run. Generating the file requires us to
-        fetch the old results down from the bots, which can be slow. This
-        flag is off by default.
-    
-        Reduce the sleep time in wait_for_threads_to_finish from 0.1s to 0.01s.
-    
-        These changes together shorten the test cycle from ~4.5s to ~1.5s
-        - a 3x speedup.
-
-        https://bugs.webkit.org/show_bug.cgi?id=44553
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-08-24  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        [chromium] fix the platform result fallback order on mac/win
-        https://bugs.webkit.org/show_bug.cgi?id=44483
-
-        * Scripts/webkitpy/layout_tests/port/google_chrome.py:
-
-2010-08-24  Xan Lopez  <xlopez@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        Set a device to the event struct when building with GTK+ 3.x, it's
-        mandatory.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (keyDownCallback):
-
-2010-08-24  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] GTK3: EventSender and API tests should use gdk_event_new when synthesizing events
-        https://bugs.webkit.org/show_bug.cgi?id=44534
-
-        Fix two double-frees introduced in my previous commit.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (contextClickCallback): Copy the event before using it again.
-        (keyDownCallback): Ditto.
-
-2010-08-24  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] GTK3: EventSender and API tests should use gdk_event_new when synthesizing events
-        https://bugs.webkit.org/show_bug.cgi?id=44534
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (prepareMouseButtonEvent): Use gdk_event_new and reference the reference the GdkWindow
-        when setting it on the event. It is dereferenced by gdk_event_free(...).
-        (contextClickCallback): Ditto.
-        (mouseDownCallback): Ditto.
-        (mouseUpCallback): Ditto.
-        (mouseMoveToCallback): Ditto.
-        (mouseWheelToCallback): Ditto.
-        (sendOrQueueEvent): Take a GdkEvent* instead of a GdkEvent.
-        (dispatchEvent): Ditto. Also free the event when we are done with it.
-        (keyDownCallback): Use gdk_event_new and reference the GdkWindow.
-
-2010-08-24  Andras Becsi  <abecsi@webkit.org>
-
-        [Qt] WebKit2 build fix.
-
-        * Scripts/enumerate-included-framework-headers:
-        Remove stray global option form sed.
-
-2010-08-24  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Jeremy Orlow.
-
-        [DRT/Chromium] Support for IndexedDB tests
-        https://bugs.webkit.org/show_bug.cgi?id=44490
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell): Enable IndexedDB.
-
-2010-08-23  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        [GTK] The 64-bit Release bot is showing crashes on tests that use mouse buttons
-        https://bugs.webkit.org/show_bug.cgi?id=44465
-
-        Initialize the axes field of mouse button and motion events to null.
-        This is the value that should be used for events originating from the
-        mouse device.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (prepareMouseButtonEvent): Initalize button event axes field to null.
-        (mouseMoveToCallback): Initialize motion event axes field to null.
-
-2010-08-23  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r65703.
-        http://trac.webkit.org/changeset/65703
-        https://bugs.webkit.org/show_bug.cgi?id=44460
-
-        "Causing lots of crashes on Snow Leopard when running the
-        layout tests" (Requested by eseidel2 on #webkit).
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NP_Initialize):
-        (NP_GetEntryPoints):
-
-2010-08-23  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        Layout tests do not run when using WebKitTestRunner in a Debug build.
-        https://bugs.webkit.org/show_bug.cgi?id=44409
-
-        Reviewed by Dan Bernstein.
-
-        * WebKitTestRunner/win/TestControllerWin.cpp:
-        (WTR::TestController::initializeInjectedBundlePath):
-        Use InjectedBundle_debug.dll when building Debug.
-
-2010-08-23  Xan Lopez  <xlopez@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] run-launcher fails if WebKitGTK+ compiled with GTK+-3.0 support
-        https://bugs.webkit.org/show_bug.cgi?id=42026
-
-        If a GTK+ 3.x build is present return that as the library to use,
-        otherwise fallback to the GTK+ 2.x build.
-
-        * Scripts/webkitdirs.pm:
-
-2010-08-23  Balazs Kelemen  <kb@inf.u-szeged.hu>
-
-        Reviewed by Ariya Hidayat.
-
-        [Qt] Find needed forwarding headers for WebKit2 automatically
-        https://bugs.webkit.org/show_bug.cgi?id=44336
-
-        * MiniBrowser/qt/BrowserWindow.cpp: Use normal (not framework style) includes here.
-        The new script does not satisfy the needs of this file however using normal includes
-        is generally better here.
-        * MiniBrowser/qt/MiniBrowser.pro: Added include paths.
-        * Scripts/enumerate-included-framework-headers: Enumerates headers included from the 
-        given frameworks by files in the current directory (and subdirectories).
-        In the future this needs to be rewritten in perl for being able to use on Windows.
-
-2010-08-22  No'am Rosenthal  <noam.rosenthal@nokia.com>
-
-        Reviewed by Ariya Hidayat.
-
-        [Qt] Qt test browser: enable a QGLWidget viewport with a command line argument
-        https://bugs.webkit.org/show_bug.cgi?id=43010
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::applyPrefs):
-        * QtTestBrowser/main.cpp:
-        (LauncherApplication::handleUserOptions):
-
-2010-08-21  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Dan Bernstein.
-
-        Remove specialized retain/release functions in favor of a single one for WKTypeRefs
-        https://bugs.webkit.org/show_bug.cgi?id=44386
-
-        * MiniBrowser/mac/AppDelegate.m:
-        (didRecieveMessageFromInjectedBundle):
-        (didNavigateWithNavigationData):
-        (-[BrowserAppDelegate init]):
-        (-[BrowserAppDelegate applicationWillTerminate:]):
-        * MiniBrowser/mac/BrowserStatisticsWindowController.m:
-        (-[BrowserStatisticsWindowController initWithThreadedWKContextRef:processWKContextRef:]):
-        (-[BrowserStatisticsWindowController dealloc]):
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController initWithPageNamespace:]):
-        (-[BrowserWindowController fetch:]):
-        (-[BrowserWindowController windowWillClose:]):
-        (-[BrowserWindowController applicationTerminating]):
-        (closePage):
-        (runJavaScriptAlert):
-        (runJavaScriptConfirm):
-        (runJavaScriptPrompt):
-        (-[BrowserWindowController updateProvisionalURLForFrame:]):
-        * MiniBrowser/mac/WebBundle/WebBundleMain.m:
-        (didClearWindowObjectForFrame):
-        * MiniBrowser/win/BrowserView.cpp:
-        (BrowserView::goToURL):
-        * WebKitTestRunner/win/PlatformWebViewWin.cpp:
-        (WTR::PlatformWebView::~PlatformWebView):
-
-2010-08-20  Benjamin Poulain  <benjamin.poulain@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        WebKit does not build with Python 2.3
-        https://bugs.webkit.org/show_bug.cgi?id=44373
-
-        Replaced the function sorted() by a call to sort()
-        on the entry list.
-        The function sorted() has been added to Python 2.4.
-        The function method sort() of List works with older
-        versions of Python.
-
-        * Scripts/create-html-entity-table:
-
-2010-08-20  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Pavel Feldman.
-
-        Web Inspector: Inspector tests were disabled for GTK.
-        https://bugs.webkit.org/show_bug.cgi?id=43977
-
-        * Scripts/old-run-webkit-tests: Set the WEBKIT_INSPECTOR_PATH to the appropriate
-        path before running tests.
-
-2010-08-20  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Eric Seidel.
-
-        svn-apply doesn't detect empty line with Windows line endings
-        after property value
-        https://bugs.webkit.org/show_bug.cgi?id=43981
-
-        Part 2 of 2
-
-        Add unit tests that were not landed in the first commit.
-
-        * Scripts/webkitperl/VCSUtils_unittest/parseDiff.pl:
-          - Added the following test cases:
-            "SVN: binary file (isBinary true) using Windows line endings"
-            "SVN: property diff, followed by file change diff using Windows line endings"
-            "SVN: two consecutive property diffs using Windows line endings"
-            "SVN: binary file with executable bit change usng Windows line endings"
-            "SVN: binary file followed by property change on different file using Windows line endings"
-            "SVN: binary file followed by file change on different file using Windows line endings"
-            "SVN: file change diff with property change, followed by property change diff using Windows line endings"
-            "SVN: file change diff with property change, followed by file change diff using Windows line endings"
-        * Scripts/webkitperl/VCSUtils_unittest/parseSvnProperty.pl:
-          - Added the following test cases:
-            "add svn:executable, followed by empty line and start of next diff using Windows line endings"
-            "add svn:executable, followed by empty line and start of next property diff using Windows line endings"
-            "multi-line '+' change, followed by empty line and start of next diff using Windows line endings"
-            "multi-line '+' change, followed by empty line and start of next property diff using Windows line endings"
-            "add svn:executable, followed by empty line and start of binary patch using Windows line endings"
-            "multi-line '+' change, followed by empty line and start of binary patch using Windows line endings"
-            "multi-line '-' change, followed by multi-line '+' change, empty line, and start of binary patch using Windows line endings"
-            "single-line '+' with trailing new line using Windows line endings"
-            "single-line '+' with trailing new line, followed by empty line and start of binary patch using Windows line endings"
-            "single-line '-' change with trailing new line, and single-line '+' change using Windows line endings"
-            "multi-line '-' change with trailing new line, and multi-line '+' change using Windows line endings"
-        * Scripts/webkitperl/VCSUtils_unittest/parseSvnPropertyValue.pl:
-          - Added the following test cases:
-            "single-line '-' change followed by empty line with Windows line endings"
-            "multi-line '+' change and start of binary patch with Windows line endings"
-
-2010-08-20  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Eric Seidel.
-
-        svn-apply doesn't detect empty line with Windows line endings
-        after property value
-        https://bugs.webkit.org/show_bug.cgi?id=43981
-
-        Fixes an issue where an empty line following the property value
-        in an SVN property change diff would not be detected if it had
-        Windows line endings (i.e. ended in CRLF). Hence it was consumed
-        as if it was part of a multi-line property value. 
-
-        * Scripts/VCSUtils.pm:
-          - Modified parseSvnPropertyValue() to detect empty line
-            with Windows line endings.
-          - Added toWindowsLineEndings().
-        * Scripts/webkitperl/VCSUtils_unittest/parseDiff.pl:
-          - Added the following test cases:
-            "SVN: binary file (isBinary true) using Windows line endings"
-            "SVN: property diff, followed by file change diff using Windows line endings"
-            "SVN: two consecutive property diffs using Windows line endings"
-            "SVN: binary file with executable bit change usng Windows line endings"
-            "SVN: binary file followed by property change on different file using Windows line endings"
-            "SVN: binary file followed by file change on different file using Windows line endings"
-            "SVN: file change diff with property change, followed by property change diff using Windows line endings"
-            "SVN: file change diff with property change, followed by file change diff using Windows line endings"
-        * Scripts/webkitperl/VCSUtils_unittest/parseSvnProperty.pl:
-          - Added the following test cases:
-            "add svn:executable, followed by empty line and start of next diff using Windows line endings"
-            "add svn:executable, followed by empty line and start of next property diff using Windows line endings"
-            "multi-line '+' change, followed by empty line and start of next diff using Windows line endings"
-            "multi-line '+' change, followed by empty line and start of next property diff using Windows line endings"
-            "add svn:executable, followed by empty line and start of binary patch using Windows line endings"
-            "multi-line '+' change, followed by empty line and start of binary patch using Windows line endings"
-            "multi-line '-' change, followed by multi-line '+' change, empty line, and start of binary patch using Windows line endings"
-            "single-line '+' with trailing new line using Windows line endings"
-            "single-line '+' with trailing new line, followed by empty line and start of binary patch using Windows line endings"
-            "single-line '-' change with trailing new line, and single-line '+' change using Windows line endings"
-            "multi-line '-' change with trailing new line, and multi-line '+' change using Windows line endings"
-        * Scripts/webkitperl/VCSUtils_unittest/parseSvnPropertyValue.pl:
-          - Added the following test cases:
-            "single-line '-' change followed by empty line with Windows line endings"
-            "multi-line '+' change and start of binary patch with Windows line endings"
-
-2010-08-19  David Kilzer  <ddkilzer@apple.com>
-
-        BUILD FIX: Fix Mac build after Windows WebKit2 changes for Netscape Plug-ins
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (decidePolicyForNavigationAction): Updated method signature.
-        (decidePolicyForNewWindowAction): Updated method signature.
-
-2010-08-19  Adam Roben  <aroben@apple.com>
-
-        Test that NP_Initialize and NP_GetEntryPoints are called in the
-        correct order
-
-        The order differs between Mac and Windows (see r38858).
-
-        Fixes <http://webkit.org/b/44270> <rdar://problem/8330393> Crash in
-        NP_Initialize when loading QuickTime when running
-        plugins/embed-attributes-setting.html in WebKit2 on Windows
-
-        Reviewed by Sam Weinig.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp: Added a CRASH macro and
-        a boolean to record whether NP_GetEntryPoints has been called.
-        (NP_Initialize): Crash on Windows if NP_GetEntryPoints hasn't been
-        called yet. This matches Flash and QuickTime's behavior. Crash on Mac
-        if NP_GetEntryPoints has been called already. This matches
-        Silverlight's behavior.
-
-2010-08-19  Adam Roben  <aroben@apple.com>
-
-        Make build-webkittestrunner build TestNetscapePlugIn on Windows
-
-        Fixes <http://webkit.org/b/44268> <rdar://problem/8330388>
-
-        Reviewed by Sam Weinig.
-
-        * WebKitTestRunner/WebKitTestRunner.sln: Added TestNetscapePlugIn.
-        Threaded it in between ImageDiff and InjectedBundleGenerated.
-
-2010-08-19  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        install rietveld's upload script from a versioned url
-        https://bugs.webkit.org/show_bug.cgi?id=44291
-
-        autoinstall expects the file at a given URL to never change.
-        In order to be able to update the file, we need to be able to
-        change the path.
-
-        * Scripts/webkitpy/thirdparty/__init__.py:
-
-2010-08-19  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        add --webkit_patch_id to reitveld uploads
-        https://bugs.webkit.org/show_bug.cgi?id=44289
-
-        This is the first step in having rietveld store which
-        patches have been uploaded and getting rid of the
-        in-rietveld flag.
-
-        * Scripts/webkitpy/common/net/rietveld.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/postcodereview.py:
-
-2010-08-19  Kenneth Russell  <kbr@google.com>
-
-        Reviewed by David Levin.
-
-        Adjust my status from committer to reviewer
-        https://bugs.webkit.org/show_bug.cgi?id=44277
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-08-19  Pavel Feldman  <pfeldman@chromium.org>
-
-        Reviewed by Yury Semikhatsky.
-
-        Chromium DevTools: remove injected script fetcher from test harness.
-        https://bugs.webkit.org/show_bug.cgi?id=44266
-
-        * DumpRenderTree/chromium/DRTDevToolsAgent.cpp:
-        * DumpRenderTree/chromium/DRTDevToolsAgent.h:
-
-2010-08-19  Pavel Feldman  <pfeldman@chromium.org>
-
-        Reviewed by Yury Semikhatsky.
-
-        Chromium DevTools: There is no need in resource-based InjectedScript.js source.
-        Now that we populate front-end after its onload handler, we don't need
-        to install injected script early. Exposing injected script source on the WebCore
-        level here.
-        https://bugs.webkit.org/show_bug.cgi?id=44029
-
-        * DumpRenderTree/chromium/DRTDevToolsAgent.cpp:
-        (DRTDevToolsAgent::runtimePropertyChanged):
-        (DRTDevToolsAgent::delayedFrontendLoaded):
-        (DRTDevToolsAgent::frontendLoaded):
-        * DumpRenderTree/chromium/DRTDevToolsAgent.h:
-
-2010-08-19  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Gtk] Enable view mode media feature layout test
-        https://bugs.webkit.org/show_bug.cgi?id=43278
-
-        Add view mode media feature testing infrastructure, and add
-        placeholder methods for the other platforms'
-        LayoutTestControllers.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setViewModeMediaFeatureCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setViewModeMediaFeature):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setViewModeMediaFeature):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setViewModeMediaFeature):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setViewModeMediaFeature):
-
-2010-08-18  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Make it so the WebKit2 test slave runs the WebKit2 tests
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2010-08-18  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        Make run-webkit-tests --webkit-test-runner build DumpRenderTree
-        in addition to WebKitTestRunner to get the DumpRenderTreeSupport
-        module and the TestNetscapePlugin.
-
-        * Scripts/old-run-webkit-tests:
-
-2010-08-18  Adam Roben  <aroben@apple.com>
-
-        Fix hang when saving crash logs on Windows
-
-        * Scripts/old-run-webkit-tests:
-        (setUpWindowsCrashLogSaving):
-        (END):
-        Pass -s to regtool so it will write the Auto value as a string instead
-        of as a number. This was causing a "do you want to debug?" dialog to
-        appear.
-
-2010-08-17  Victor Wang  <victorw@chromium.org>
-
-        Unreviewed. Fixed chromium incremental test json upload.
-        Quote builder name and test results server in url.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-
-2010-08-17  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        Reviewed by Ariya Hidayat.
-
-        [Qt] [Symbian] Consistently use Q_OS_SYMBIAN to guard all Symbian platform dependencies
-        https://bugs.webkit.org/show_bug.cgi?id=44124
-
-        Q_WS_S60 is not defined for Symbian^4 devices as Q_WS_S60 used to guard 
-        Avkon UI framework dependencies. Use Q_OS_SYMBIAN everywhere to mark
-        Symbian dependencies.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::open):
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::init):
-        (LauncherWindow::toggleFullScreenMode):
-        (LauncherWindow::showFPS):
-        (LauncherWindow::updateFPS):
-        * QtTestBrowser/launcherwindow.h:
-        (WindowOptions::WindowOptions):
-        * QtTestBrowser/mainwindow.cpp:
-        (MainWindow::buildUI):
-
-2010-08-17  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by David Levin.
-
-        new-run-webkit-tests: remove --show-sources option
-
-        --show-sources is pretty much obsolete with --trace everything, so
-        I'm removing it.
-
-        Also rename a couple of methods in the TestTextDiff class to make their
-        intended visibility (private) more obvious.
-
-        https://bugs.webkit.org/show_bug.cgi?id=44143
-
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py:
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py:
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-
-2010-08-17  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by David Levin.
-
-        remove --fuzzy-image-diff in new-run-webkit-tests (it doesn't work)
-
-        This code bit-rotted at some point more than a year ago, and nobody seems
-        to miss it. old-run-webkit-tests has a --tolerance flag that new-run-webkit-tests
-        should support instead, making this flag unnecessary anyway.
-
-        https://bugs.webkit.org/show_bug.cgi?id=44141
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/test_types/fuzzy_image_diff.py: Removed.
-
-2010-08-17  Victor Wang  <victorw@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Update json results generator to have incremental json including
-        results for tests that pass in current run but failed before.
-
-        https://bugs.webkit.org/show_bug.cgi?id=44119
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-08-17  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        fix test-webkitpy, add easy way to find a checkout root
-
-        test-webkitpy currently doesn't work right if run from someplace other
-        than the checkout root, and it spews a bunch of debug logging because
-        the deduplicate_tests tests contaminates the test environment.
-
-        This patch cleans up the deduplicate_tests unit tests, and creates
-        two new methods in scm.py: find_checkout_root() and default_scm(),
-        both of which use a single algorithm for guessing what checkout root
-        to use if you aren't explicitly told one from a path.
-
-        https://bugs.webkit.org/show_bug.cgi?id=44001
-
-        * Scripts/deduplicate-tests:
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-        * Scripts/webkitpy/layout_tests/deduplicate_tests.py:
-        * Scripts/webkitpy/layout_tests/deduplicate_tests_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests_unittest.py:
-        * Scripts/webkitpy/tool/main.py:
-
-2010-08-17  Victor Wang  <victorw@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Add support to the test results server for downloading json that
-        contains test list only.
-
-        This is for json results generator to generate incremental json
-        results so that it includes results not only for tests failed in
-        current run, but also tests failed before.
-
-        Also set the results type to "N" (no data) instead of "P" (pass)
-        if test results cannot be found in incremental json file.
-
-        https://bugs.webkit.org/show_bug.cgi?id=44117
-
-        * TestResultServer/handlers/testfilehandler.py:
-        * TestResultServer/model/jsonresults.py:
-        * TestResultServer/model/jsonresults_unittest.py:
-
-2010-08-17  Adam Roben  <aroben@apple.com>
-
-        Use the right path style
-
-        * Scripts/old-run-webkit-tests:
-
-2010-08-17  Adam Roben  <aroben@apple.com>
-
-        Fix typo
-
-        * Scripts/old-run-webkit-tests:
-
-2010-08-17  Adam Roben  <aroben@apple.com>
-
-        Don't hang when running run-webkit-tests as a non-Administrator on
-        Vista/7
-
-        * Scripts/old-run-webkit-tests:
-        (setUpWindowsCrashLogSaving): Use regtool to set NTSD as the
-        post-mortem debugger, rather than using NTSD itself. The latter waits
-        for user input when it fails to set the registry values; the former
-        does not.
-
-2010-08-17  Adam Roben  <aroben@apple.com>
-
-        Teach run-webkit-tests, DumpRenderTree, and WebKitTestRunner how to
-        save crash logs on Windows
-
-        The crash logs are saved to /tmp/layout-test-results and have names
-        like CrashLog_02bc_2010-08-17_14-36-20-108.txt.
-
-        Unfortunately, crashes in the WebKit2 web process are recorded as
-        time-outs by run-webkit-tests. Fixing this is covered by
-        <http://webkit.org/b/44121>.
-
-        Fixes <http://webkit.org/b/37859> <rdar://problem/7883560>
-        DumpRenderTree should save a stack trace and/or dump file when it
-        crashes
-
-        Reviewed by Sam Weinig.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (exceptionFilter):
-        (main):
-        * WebKitTestRunner/win/TestControllerWin.cpp:
-        (WTR::exceptionFilter):
-        (WTR::TestController::platformInitialize):
-        These changes set up an exception filter that prints #CRASHED to
-        stderr, then lets the exception propagate normally. This allows
-        run-webkit-tests to detect when we've crashed even when a post-mortem
-        debugger attaches to the process.
-
-        * Scripts/old-run-webkit-tests:
-        (top level): Declared some variables used by the crash-log-saving
-        code.
-        (openDumpTool): Copy _NT_SYMBOL_PATH into the clean environment so
-        that the post-mortem debugger has access to it.
-        (toCygwinPath): Added. This is the opposite of toWindowsPath.
-        (readFromDumpToolWithTimer): If the dump tool prints #CRASHED to
-        stderr, consider it a crash.
-        (setUpWindowsCrashLogSaving): Added. Saves the current post-mortem
-        debugger, then sets ntsd as the post-mortem debugger. ntsd is
-        configured to save a crash log and then quit automatically.
-        (END): Added. Restores the previous post-mortem debugger when the
-        script exits.
-
-2010-08-17  Victor Wang  <victorw@chromium.org>
-
-        Reviewed by ojan@chromium.org.
-
-        Update test results server:
-        1. Normalize test results and times after merging (prune tests where
-           all runs pass or do not have data, truncate all test items to max
-           number of builds)
-        2. times should be int not string.
-        3. when inserting a new test item, should keep old data regardless
-           whether or not they have same item type with new one.
-
-        https://bugs.webkit.org/show_bug.cgi?id=43861
-
-        * TestResultServer/model/jsonresults.py:
-        * TestResultServer/model/jsonresults_unittest.py:
-
-2010-08-16  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        Add WebKit2 Mac tester to buildbot.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2010-08-16  Paul Sawaya  <psawaya@apple.com>
-
-        Reviewed by Chris Marrin.
-
-        Added shader validation via ANGLE
-        https://bugs.webkit.org/show_bug.cgi?id=42405
-
-        Added ANGLE to webkit build
-
-        * Scripts/build-webkit:
-
-2010-08-16  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix, do not build WebCore as a convenience library as this leads to
-        errors in the Win build w/export symbols and causes problems with DOM bindings
-        debugging in gdb.
-
-        * DumpRenderTree/wscript:
-        * Scripts/build-webkit:
-        * wx/browser/wscript:
-        * wx/build/settings.py:
-        * wx/build/waf_extensions.py:
-
-2010-08-16  Dan Bernstein  <mitz@apple.com>
-
-        Build fix.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::createOtherPage): Initialize the contentsSizeChanged member.
-        (WTR::TestController::initialize): Ditto.
-
-2010-08-16  Balazs Kelemen  <kb@inf.u-szeged.hu>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Handle content size change in WebKit2
-        Re-landing after fix.
-
-        https://bugs.webkit.org/show_bug.cgi?id=43198
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]): Initialize WKPageUICallback::contetsSizeChanged to 0.
-        * MiniBrowser/win/BrowserView.cpp:
-        (BrowserView::create): Initialize WKPageUICallback::contetsSizeChanged to 0.
-
-2010-08-16  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r65419.
-        http://trac.webkit.org/changeset/65419
-        https://bugs.webkit.org/show_bug.cgi?id=44053
-
-        Broke the Windows build (Requested by bbandix on #webkit).
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * MiniBrowser/win/BrowserView.cpp:
-        (BrowserView::create):
-
-2010-08-16  Balazs Kelemen  <kb@inf.u-szeged.hu>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Handle content size change in WebKit2
-
-        https://bugs.webkit.org/show_bug.cgi?id=43198
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]): Initialize WKPageUICallback::contetsSizeChanged to 0.
-        * MiniBrowser/win/BrowserView.cpp:
-        (BrowserView::create): Initialize WKPageUICallback::contetsSizeChanged to 0.
-
-2010-08-16  Ariya Hidayat  <ariya@sencha.com>
-
-        Add my new email address to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-08-16  Zoltan Horvath  <zoltan@webkit.org>
-
-        Add my old e-mail addresses to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-08-15  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        WebEditorClient::didBeginEditing is never called in WebKit2
-        https://bugs.webkit.org/show_bug.cgi?id=42939
-
-        Reviewed by Sam Weinig.
-
-        * WebKitTestRunner/PlatformWebView.h:
-        Declare focus().
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-        Focus the PlatformWebView.
-
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (WTR::PlatformWebView::focus):
-        Stubbed.
-
-        * WebKitTestRunner/win/PlatformWebViewWin.cpp:
-        (WTR::PlatformWebView::focus):
-        Focus the view.
-
-2010-08-15  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        run-webkit-tests should not strip editing callbacks when using
-        WebKitTestRunner on Windows
-        https://bugs.webkit.org/show_bug.cgi?id=44000
-
-        Reviewed by Mark Rowe.
-
-        * Scripts/old-run-webkit-tests:
-        Leave $stripEditingCallbacks undefined until we look for command-line
-        arguments. If using WebKit2, set it to 0 if not explicity set on the
-        command line. Later, set it to isCygwin() to match old behavior if it is
-        not yet defined.
-
-2010-08-15  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix, remove define always set to the correct value by wtf/Platform.h.
-
-        * wx/build/settings.py:
-
-2010-08-14  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [GTK] autogen.sh not executed if build-webkit options change
-        https://bugs.webkit.org/show_bug.cgi?id=42266
-
-        Rerun autogen.sh in situations where the arguments to build-webkit have
-        changed since the previous build. This will fix some issues on the bots
-        where the build does not notice changes to default build-webkit arguments.
-
-        * Scripts/webkitdirs.pm: Add special logic for detecting changes to build-webkit arguments.
-
-2010-08-14  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Another fix to support python 2.3.
-
-        Add support for MathML entities
-        https://bugs.webkit.org/show_bug.cgi?id=43949
-
-        * Scripts/webkitpy/thirdparty/simplejson/decoder.py:
-         - It looks like our simplejson is version 1.7.3 which
-           should be python 2.3 compatible.  But someone modified
-           our copy slightly from the original source.
-           I've removed the relative import in hopes this fixes
-           the problem.
-
-2010-08-13  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Build fix only.
-
-        Add support for MathML entities
-        https://bugs.webkit.org/show_bug.cgi?id=43949
-
-        * Scripts/create-html-entity-table:
-         - Hack sys.path to avoid executing 2.5 dependent python
-           on systems (like chromium-win and Tiger) which do not have 2.5 python.
-
-2010-08-13  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Rename some concepts in HTML entity search to be more self-documenting
-        https://bugs.webkit.org/show_bug.cgi?id=44004
-
-        Reflect name change in generator script.
-
-        * Scripts/create-html-entity-table:
-
-2010-08-12  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add support for MathML entities
-        https://bugs.webkit.org/show_bug.cgi?id=43949
-
-        A script for generating the C++ state data structure describing all the
-        entities from a JSON description.
-
-        * Scripts/create-html-entity-table: Added.
-
-2010-08-13  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Rewrite new-run-webkit-test's wait_for_threads_to_finish loop to
-        check for exceptions on all threads, not just the first thread.
-        
-        This change also changes the logging behavior for wedged threads
-        to only dump the stacks of threads that are actually wedged.
-
-        Refactor the thread classes in the dump_render_tree_thread module
-        to make the contract between TestRunner and TestShellThread clearer.
-
-        Added a bunch of unit tests.
-        https://bugs.webkit.org/show_bug.cgi?id=38561
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2010-08-13  Kenichi Ishibashi  <bashi@google.com>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Add test_expectations.txt syntax checker to check-webkit-style.
-        https://bugs.webkit.org/show_bug.cgi?id=43899
-
-        Just utilizing layout_tests/layout_package/test_expectations.py for checking
-        the syntax of test_expectations.txt.
-        This change also moves tab checking class from style/checkers/text.py to
-        style/checkers/common.py for sharing code.
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/style/checker.py:
-        * Scripts/webkitpy/style/checkers/common.py:
-        * Scripts/webkitpy/style/checkers/common_unittest.py:
-        * Scripts/webkitpy/style/checkers/test_expectations.py: Added.
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py: Added.
-        * Scripts/webkitpy/style/checkers/text.py:
-        * Scripts/webkitpy/style_references.py:
-
-2010-08-12  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        WebKitTestRunner does not correctly resize WebView for W3C SVG tests
-        https://bugs.webkit.org/show_bug.cgi?id=43945
-
-        Reviewed by Sam Weinig.
-
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::sizeWebViewForCurrentTest):
-        Allow for a Windows-style path.
-
-        * WebKitTestRunner/win/PlatformWebViewWin.cpp:
-        (WTR::PlatformWebView::resizeTo):
-        Call SetWindowPos to resize the view window.
-
-2010-08-12  David Levin  <levin@chromium.org>
-
-        Build break fix.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues): Removed usage
-        of a variable that doesn't exist in the class.
-
-2010-08-12  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        WebKitTestRunner needs to run tests without using native controls
-        https://bugs.webkit.org/show_bug.cgi?id=43772
-
-        Reviewed by Sam Weinig.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-        Call platformInitializeContext().
-
-        * WebKitTestRunner/TestController.h:
-        Declare platformInitializeContext().
-
-        * WebKitTestRunner/mac/TestControllerMac.mm:
-        (WTR::TestController::platformInitializeContext):
-        Stubbed.
-
-        * WebKitTestRunner/win/TestControllerWin.cpp:
-        (WTR::TestController::platformInitializeContext):
-        Call WKContextSetShouldPaintNativeControls() to disable native control
-        drawing.
-
-2010-08-12  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Alexey Proskuryakov.
-
-        WebKitTestRunner should be more aggressive about ensuring consistent state between tests
-        https://bugs.webkit.org/show_bug.cgi?id=43653
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::InjectedBundle):
-        (WTR::InjectedBundle::didReceiveMessage):
-        (WTR::InjectedBundle::beginTesting):
-        (WTR::InjectedBundle::done):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (WTR::InjectedBundle::isTestRunning):
-        (WTR::InjectedBundle::):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::stopLoading):
-        (WTR::InjectedBundlePage::didStartProvisionalLoadForFrame):
-        (WTR::InjectedBundlePage::dump):
-        (WTR::InjectedBundlePage::didFinishLoadForFrame):
-        (WTR::InjectedBundlePage::didFailLoadWithErrorForFrame):
-        (WTR::InjectedBundlePage::didReceiveTitleForFrame):
-        (WTR::InjectedBundlePage::didClearWindowForFrame):
-        (WTR::InjectedBundlePage::didFinishDocumentLoadForFrame):
-        (WTR::InjectedBundlePage::willAddMessageToConsole):
-        (WTR::InjectedBundlePage::willSetStatusbarText):
-        (WTR::InjectedBundlePage::willRunJavaScriptAlert):
-        (WTR::InjectedBundlePage::willRunJavaScriptConfirm):
-        (WTR::InjectedBundlePage::shouldBeginEditing):
-        (WTR::InjectedBundlePage::shouldEndEditing):
-        (WTR::InjectedBundlePage::shouldInsertNode):
-        (WTR::InjectedBundlePage::shouldInsertText):
-        (WTR::InjectedBundlePage::shouldDeleteRange):
-        (WTR::InjectedBundlePage::shouldChangeSelectedRange):
-        (WTR::InjectedBundlePage::shouldApplyStyle):
-        (WTR::InjectedBundlePage::didBeginEditing):
-        (WTR::InjectedBundlePage::didEndEditing):
-        (WTR::InjectedBundlePage::didChange):
-        (WTR::InjectedBundlePage::didChangeSelection):
-        Don't do any work if we are not currently running a test.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-        * WebKitTestRunner/StringFunctions.h:
-        (WTR::toCF):
-        Add conversion function for WKURLRef -> CFURLRef
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::TestController):
-        (WTR::TestController::initialize):
-        (WTR::TestController::resetStateToConsistentValues):
-        (WTR::TestController::runTest):
-        (WTR::TestController::didFinishLoadForFrame):
-        * WebKitTestRunner/TestController.h:
-        (WTR::TestController::):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::invoke):
-        * WebKitTestRunner/TestInvocation.h:
-        Move resetting code to TestController.
-
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-        * WebKitTestRunner/mac/TestControllerMac.mm:
-        (WTR::TestController::runUntil):
-        * WebKitTestRunner/mac/TestInvocationMac.mm: Removed.
-        * WebKitTestRunner/win/TestControllerWin.cpp:
-        (WTR::TestController::runUntil):
-        * WebKitTestRunner/win/TestInvocationWin.cpp: Removed.
-        * WebKitTestRunner/win/WebKitTestRunner.vcproj:
-        Move runUntil to TestController.
-
-2010-08-12  Lucas De Marchi  <lucas.demarchi@profusion.mobi>
-
-        Unreviewed.
-
-        Adding myself to the committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-08-12  Hayato Ito  <hayato@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Merge pretty printers for gdb.
-        https://bugs.webkit.org/show_bug.cgi?id=43850
-
-        We need to update webcore.py because basic string classes have moved to WTF from WebCore.
-        It is good timing to merge webcore.py and wtf.py and name it 'webkit.py'.
-        webcore.py is left for backward compatibility.
-
-        * gdb/webcore.py:
-        * gdb/webkit.py: Added.
-        * gdb/wtf.py: Removed.
-
-2010-08-11  Tony Chang  <tony@chromium.org>
-
-        Reviewed by David Levin.
-
-        [chromium] add google-chrome layout test result directories
-        https://bugs.webkit.org/show_bug.cgi?id=43889
-
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        * Scripts/webkitpy/layout_tests/port/google_chrome.py: Added.
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py:
-
-2010-08-11  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Disable accelerated compositing
-        https://bugs.webkit.org/show_bug.cgi?id=43894
-
-        Disable accelerated compositing because DRT is not ready for
-        it. This change fixes hundreds of test crashes on Windows and
-        Linux.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetWebSettings):
-
-2010-08-11  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
-
-        Unreviewed. Adding my Collabora personality to the list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-08-11  Martin Robinson  <mrobinson@igalia.com>
-
-        Adding myself as a reviewer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-08-11  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Darin Adler.
-
-        Perl warnings when running commit-log-editor
-        https://bugs.webkit.org/show_bug.cgi?id=43856
-
-        Fixes Perl warnings introduced by the patch for Bug #40548.
-
-        Perl doesn't have symbolic names for True/False. Instead, we
-        should use boolean values. Moreover, the variable installedEditorApplication
-        is not be used and should be renamed builtEditorApplication so that it
-        uses the existing machinery to set the commit log editor application.
-
-        * Scripts/commit-log-editor:
-
-2010-08-11  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Trying waiting for httpd lock in the EWS
-        https://bugs.webkit.org/show_bug.cgi?id=43833
-
-        If this works, we can probably run the tests on the mac-ews, which
-        would be very exciting.  :)
-
-        * Scripts/webkitpy/tool/steps/runtests.py:
-
-2010-08-11  Marcus Bulach  <bulach@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Check in a script to list redundant test outputs.
-        https://bugs.webkit.org/show_bug.cgi?id=37630
-
-        If e.g. platform/mac-leopard is missing an expected test output, we
-        fall back on platform/mac.  This means it's possible to grow redundant
-        test outputs, where we have the same expected data in both a platform
-        directory and another platform it falls back on.
-        (original patch by Evan Marting <evan@chromium.org> https://bugs.webkit.org/attachment.cgi?id=53398)
-
-        * Scripts/deduplicate-tests: Added.
-        * Scripts/webkitpy/layout_tests/deduplicate_tests.py: Added.
-        * Scripts/webkitpy/layout_tests/deduplicate_tests_unittest.py: Added.
-
-2010-08-11  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Ariya Hidayat.
-
-        [Qt] QtTestBrowser: after switching between QWebView and QGraphicsWebView, rotation actions get broken
-        https://bugs.webkit.org/show_bug.cgi?id=43853
-
-        LauncherWindow::createChrome is connecting menu itens to WebViewGraphicsBased's slots directly.
-        It behaviors badly when user launches the QtTestBrowser in QWebView mode, since then switching to
-        QGraphicsWebView mode, createChrome is not called again, and menu items end up not getting connected
-        to slots at all.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::createChrome):
-        (LauncherWindow::animatedFlip):
-        (LauncherWindow::animatedYFlip):
-        * QtTestBrowser/launcherwindow.h:
-
-2010-08-11  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] QtTestBrowser: switching between QWebView and QGraphicsWebView modes is broken
-        https://bugs.webkit.org/show_bug.cgi?id=43851
-
-        All window options data (including the bool holding if the view is either QWebView or
-        QGraphicsWebView based) is stored in m_windowOptions, a class member of LauncherWindow.
-        When toggle the view from QWebView to QGraphicsWebView based (and vice-versa), we were
-        not updating LauncherWindow::WindowOptions::m_useGraphicsView bit, and then things were
-        getting broken.
-
-        Patch addresses this issue.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::createChrome):
-        (LauncherWindow::toggleWebView):
-        (LauncherWindow::toggleAcceleratedCompositing):
-
-2010-08-10  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Ariya Hidayat.
-
-        [Qt] QtTestBrowser: lazy instantiate "YRotation" state machine and related objects
-        https://bugs.webkit.org/show_bug.cgi?id=43831
-
-        Only instantiate QStateMachine and friends associated to the YRotation action on demand.
-
-        * QtTestBrowser/webview.cpp:
-        (WebViewGraphicsBased::WebViewGraphicsBased):
-        (WebViewGraphicsBased::animatedYFlip):
-
-2010-08-11  Darin Adler  <darin@apple.com>
-
-        Reviewed by John Sullivan.
-
-        Improved editor options for prepare-ChangeLog and commit-log-editor
-        https://bugs.webkit.org/show_bug.cgi?id=40548
-
-        * Scripts/commit-log-editor: Split editor strings on spaces so EDITOR
-        values like "xed --launch --wait" work properly.
-
-        * Scripts/prepare-ChangeLog: Added a new CHANGE_LOG_EDITOR so we can
-        use a command line tool with the $openChangeLogs feature.
-
-2010-08-11  Yury Semikhatsky  <yurys@chromium.org>
-
-        Reviewed by Pavel Feldman.
-
-        Web Inspector: remove InjectDispatch.js
-        https://bugs.webkit.org/show_bug.cgi?id=43835
-
-        * DumpRenderTree/chromium/DRTDevToolsAgent.cpp:
-        * DumpRenderTree/chromium/DRTDevToolsAgent.h:
-
-2010-08-10  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        webkit-patch should refuse to run under Win32 Python
-        https://bugs.webkit.org/show_bug.cgi?id=40962
-
-        Given that there are lots of places in webkit-patch's code that
-        assume unix-style filenames (forward slashes), webkit-patch fails
-        with weird file-not-found errors when run under a native windows
-        Python. It would be nice if we just trapped this and errored out
-        at the beginning, rather than producing unpredictable errors.
-
-        * Scripts/webkit-patch:
-
-2010-08-10  Kent Tamura  <tkent@chromium.org>
-
-        Unreviewed, build fix.
-        
-        Chromium build fix for r65107.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::suspendAnimations):
-        (LayoutTestController::resumeAnimations):
-
-2010-08-10  Sergio Villar Senin  <svillar@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] http/tests/media/video-cookie.html fails
-        https://bugs.webkit.org/show_bug.cgi?id=42240
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setAlwaysAcceptCookies): create the
-        SoupCookieJar if it does not exist. Otherwise the accept policy
-        won't be set.
-
-2010-08-10  Chris Marrin  <cmarrin@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        Add suspendAnimations/resumeAnimation API to DRT
-        https://bugs.webkit.org/show_bug.cgi?id=43733
-        
-        Adds suspendAnimations() and resumeAnimations() to LayoutTestController.
-        Calls functions with the same names on AnimationController for the 
-        mainFrame.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/LayoutTestController.cpp:
-        (suspendAnimationsCallback):
-        (resumeAnimationsCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::suspendAnimations):
-        (LayoutTestController::resumeAnimations):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::suspendAnimations):
-        (LayoutTestController::resumeAnimations):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::suspendAnimations):
-        (LayoutTestController::resumeAnimations):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::suspendAnimations):
-        (LayoutTestController::resumeAnimations):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::suspendAnimations):
-        (LayoutTestController::resumeAnimations):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::suspendAnimations):
-        (LayoutTestController::resumeAnimations):
-
-2010-08-10  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        [Chromium/DRT] Enable saving layout test results.
-        https://bugs.webkit.org/show_bug.cgi?id=43796
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Added more
-            parameters to the new-run-webkit-tests, including the name
-            of the test results server.
-
-2010-08-10  Jian Li  <jianli@chromium.org>
-
-        More chromium build fix.
-
-        * DumpRenderTree/chromium/MockSpellCheck.cpp:
-        (MockSpellCheck::spellCheckWord):
-        (MockSpellCheck::initializeIfNeeded):
-        * DumpRenderTree/chromium/NotificationPresenter.cpp:
-        (NotificationPresenter::grantPermission):
-        (NotificationPresenter::show):
-        (NotificationPresenter::checkPermission):
-
-2010-08-10  Jian Li  <jianli@chromium.org>
-
-        Chromium build fix.
-
-        * DumpRenderTree/chromium/MockSpellCheck.cpp:
-        * DumpRenderTree/chromium/NotificationPresenter.cpp:
-
-2010-08-10  Victor Wang  <victorw@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Update test results server merge logic so the aggregated
-        results and times are updated for tests that are
-        in aggragated json but not in incremental json.
-
-        Also update unittest to test this case.
-
-        https://bugs.webkit.org/show_bug.cgi?id=43769
-
-        * TestResultServer/model/jsonresults.py:
-        * TestResultServer/model/jsonresults_unittest.py:
-
-2010-08-09  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Ariya Hidayat.
-
-        [Qt] QtTestBrowser: proper set scene rect
-
-        When resizesToContents is ON scene's rect is set to the boundary of
-        the mainFrame. However, navigating to other web page should keep resizing
-        scene's rect according to the new document loaded. Patch addresses this issue.
-
-        Now resizesToContents and scrolling properly work on QtTestBrowser.
-
-        * QtTestBrowser/webview.cpp:
-        (WebViewGraphicsBased::setPage):
-        (WebViewGraphicsBased::contentsSizeChanged):
-        (WebViewGraphicsBased::setResizesToContents):
-        (WebViewGraphicsBased::resizeEvent):
-        * QtTestBrowser/webview.h:
-
-2010-08-09  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Ariya Hidayat.
-
-        [Qt] QtTestBrowser: Clean up LauncherWindow code.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::LauncherWindow): Moves applyPrefs methods call from the constructor to init().
-        (LauncherWindow::init): Fixed comments.
-        (LauncherWindow::applyPrefs): Move the method around.
-        (LauncherWindow::createChrome): Move more code of this method around, for grouping, and fixing up comments.
-
-2010-08-09  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Ariya Hidayat.
-
-        [Qt] QtTestBrowser: make reset-zooming to animate when tiled backing store is on.
-
-        It gets control+0 the same visual effect as control++ or control-.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::toggleZoomTextOnly):
-
-2010-08-09  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Ariya Hidayat.
-
-        [Qt] QtTestBrowser:: make m_zoomLevels a static member.
-
-        Not all instances of LauncherWindow need its own m_zoomLevel.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        * QtTestBrowser/launcherwindow.h:
-
-2010-08-09  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Geoffrey Garen.
-
-        Add zoom support for injected bundle
-        https://bugs.webkit.org/show_bug.cgi?id=43759
-
-        Use zoom factor SPI to implement zoom related eventSender functions.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/EventSendingController.idl:
-        * WebKitTestRunner/InjectedBundle/EventSendingController.cpp:
-        (WTR::EventSendingController::textZoomIn):
-        (WTR::EventSendingController::textZoomOut):
-        (WTR::EventSendingController::zoomPageIn):
-        (WTR::EventSendingController::zoomPageOut):
-        * WebKitTestRunner/InjectedBundle/EventSendingController.h:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::reset): Reset zoom mode and level for each test.
-
-2010-08-09  Gavin Barraclough  <barraclough@apple.com>
-
-        Speculative chromium build fix III.
-
-        * DumpRenderTree/chromium/MockSpellCheck.h:
-        * DumpRenderTree/chromium/NotificationPresenter.h:
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost::addClearHeader):
-        (WebViewHost::clearHeaders):
-
-2010-08-09  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        increase the number of test results that we save
-        https://bugs.webkit.org/show_bug.cgi?id=43763
-
-        Now that we do incremental uploads, we can increase the number of
-        results that we save for http://test-results.appspot.com/dashboards/flakiness_dashboard.html.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-
-2010-08-09  Evan Martin  <evan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        [chromium] DRT error print statement incorrectly tries to print a FILE*
-        https://bugs.webkit.org/show_bug.cgi?id=43747
-
-        * DumpRenderTree/chromium/ImageDiff.cpp:
-        (writeFile): pass the correct pointer.
-
-2010-08-09  Victor Wang  <victorw@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Upload incremental test results json to server by default.
-
-        https://bugs.webkit.org/show_bug.cgi?id=43743
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-08-09  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        EWS bots wait 2 minutes between patches
-        https://bugs.webkit.org/show_bug.cgi?id=43731
-
-        * Scripts/webkitpy/tool/bot/queueengine.py:
-         - Don't sleep after failures.  This was a hold-over from
-           an earlier design.
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-         - EWS bots were not properly reporting true/false from process_work_item.
-           They were always returning None, thus false, thus always logging
-           as a failure and sleeping 2 minutes after each patch.
-
-2010-08-09  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Stub out EventSender for WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=43703
-
-        * WebKitTestRunner/DerivedSources.make:
-        * WebKitTestRunner/InjectedBundle/Bindings/CodeGeneratorTestRunner.pm:
-        Add ability to pass javascript arguments to the wrapped object.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/EventSendingController.idl: Added.
-        * WebKitTestRunner/InjectedBundle/EventSendingController.cpp: Added.
-        (WTR::EventSendingController::create):
-        (WTR::EventSendingController::EventSendingController):
-        (WTR::EventSendingController::~EventSendingController):
-        (WTR::EventSendingController::wrapperClass):
-        (WTR::setExceptionForString):
-        (WTR::EventSendingController::mouseDown):
-        (WTR::EventSendingController::mouseUp):
-        (WTR::EventSendingController::mouseMoveTo):
-        (WTR::EventSendingController::keyDown):
-        (WTR::EventSendingController::contextClick):
-        (WTR::EventSendingController::leapForward):
-        (WTR::EventSendingController::textZoomIn):
-        (WTR::EventSendingController::textZoomOut):
-        (WTR::EventSendingController::zoomPageIn):
-        (WTR::EventSendingController::zoomPageOut):
-        (WTR::EventSendingController::makeWindowObject):
-        * WebKitTestRunner/InjectedBundle/EventSendingController.h: Added.
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::reset):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (WTR::InjectedBundle::eventSendingController):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::didClearWindowForFrame):
-        Add stubbed out EventSenderController.
-
-        * WebKitTestRunner/InjectedBundle/GCController.h:
-        Remove incorrect comment.
-
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-        * WebKitTestRunner/win/InjectedBundle.vcproj:
-        Add new files.
-
-2010-08-08  Kent Tamura  <tkent@chromium.org>
-
-        Unreviewed, trivial fix.
-
-        Fix "WindowsError: [Error 32] The process cannot access the file
-        because it is being used by another process" introduced by r64959.
-
-        * BuildSlaveSupport/test-result-archive:
-
-2010-08-08  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Chromium buildbot: Avoid "zip" command dependency
-        https://bugs.webkit.org/show_bug.cgi?id=43470
-
-        * BuildSlaveSupport/test-result-archive:
-         For Chromium port, creates a zip archive with zipfile package of Python
-         instead of external "zip" command. We'd like to avoid additional
-         command installation.
-
-2010-08-08  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        WebKitTestRunner should add the QuickTime dir to the PATH environment
-        variable
-        https://bugs.webkit.org/show_bug.cgi?id=43686
-
-        Reviewed by Dan Bernstein.
-
-        * WebKitTestRunner/win/TestControllerWin.cpp:
-        (WTR::addQTDirToPATH):
-        Copied from DRT.
-        (WTR::TestController::platformInitialize):
-        Call addQTDirToPath().
-        * WebKitTestRunner/win/WebKitTestRunner.vcproj:
-        Link to shlwapi.lib for SHGetValue.
-
-2010-08-07  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Maciej Stachowiak.
-
-        WebKitTestRunner needs layoutTestController.dumpTitleChanges
-        <rdar://problem/8213861>
-        https://bugs.webkit.org/show_bug.cgi?id=42683
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::didReceiveTitleForFrame):
-        (WTR::InjectedBundlePage::didFinishDocumentLoadForFrame):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::LayoutTestController):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (WTR::LayoutTestController::dumpTitleChanges):
-        (WTR::LayoutTestController::shouldDumpTitleChanges):
-
-2010-08-07  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        WebKitTestRunner needs to print onunload handler information
-        <rdar://problem/8213831>
-        https://bugs.webkit.org/show_bug.cgi?id=42703
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::operator<<):
-        (WTR::InjectedBundlePage::didFinishDocumentLoadForFrame):
-
-2010-08-07  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Add additional loader client functions need to complete WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=43684
-
-        Remove unnecessary and jarring underscores as well.
-
-        * MiniBrowser/mac/WebBundle/WebBundleMain.m:
-        (didClearWindowObjectForFrame):
-        (didCreatePage):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        (WTR::InjectedBundlePage::didStartProvisionalLoadForFrame):
-        (WTR::InjectedBundlePage::didReceiveServerRedirectForProvisionalLoadForFrame):
-        (WTR::InjectedBundlePage::didFailProvisionalLoadWithErrorForFrame):
-        (WTR::InjectedBundlePage::didCommitLoadForFrame):
-        (WTR::InjectedBundlePage::didFinishLoadForFrame):
-        (WTR::InjectedBundlePage::didFailLoadWithErrorForFrame):
-        (WTR::InjectedBundlePage::didReceiveTitleForFrame):
-        (WTR::InjectedBundlePage::didClearWindowForFrame):
-        (WTR::InjectedBundlePage::didCancelClientRedirectForFrame):
-        (WTR::InjectedBundlePage::willPerformClientRedirectForFrame):
-        (WTR::InjectedBundlePage::didChangeLocationWithinPageForFrame):
-        (WTR::InjectedBundlePage::didFinishDocumentLoadForFrame):
-        (WTR::InjectedBundlePage::didHandleOnloadEventsForFrame):
-        (WTR::InjectedBundlePage::didDisplayInsecureContentForFrame):
-        (WTR::InjectedBundlePage::didRunInsecureContentForFrame):
-        (WTR::InjectedBundlePage::willAddMessageToConsole):
-        (WTR::InjectedBundlePage::willSetStatusbarText):
-        (WTR::InjectedBundlePage::willRunJavaScriptAlert):
-        (WTR::InjectedBundlePage::willRunJavaScriptConfirm):
-        (WTR::InjectedBundlePage::willRunJavaScriptPrompt):
-        (WTR::InjectedBundlePage::shouldBeginEditing):
-        (WTR::InjectedBundlePage::shouldEndEditing):
-        (WTR::InjectedBundlePage::shouldInsertNode):
-        (WTR::InjectedBundlePage::shouldInsertText):
-        (WTR::InjectedBundlePage::shouldDeleteRange):
-        (WTR::InjectedBundlePage::shouldChangeSelectedRange):
-        (WTR::InjectedBundlePage::shouldApplyStyle):
-        (WTR::InjectedBundlePage::didBeginEditing):
-        (WTR::InjectedBundlePage::didEndEditing):
-        (WTR::InjectedBundlePage::didChange):
-        (WTR::InjectedBundlePage::didChangeSelection):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-
-2010-08-07  Dan Bernstein  <mitz@apple.com>
-
-        Build fix.
-
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj: Made the references
-        to JSGCController.{cpp,h} relative to the build root.
-
-2010-08-07  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        WebKitTestRunner needs GCController
-        <rdar://problem/8213834>
-        https://bugs.webkit.org/show_bug.cgi?id=42701
-
-        * WebKitTestRunner/DerivedSources.make:
-        * WebKitTestRunner/InjectedBundle/Bindings/GCController.idl: Added.
-        * WebKitTestRunner/InjectedBundle/Bindings/JSWrapper.h:
-        (WTR::setProperty):
-        * WebKitTestRunner/InjectedBundle/GCController.cpp: Added.
-        (WTR::GCController::create):
-        (WTR::GCController::GCController):
-        (WTR::GCController::~GCController):
-        (WTR::GCController::wrapperClass):
-        (WTR::GCController::collect):
-        (WTR::GCController::collectOnAlternateThread):
-        (WTR::GCController::getJSObjectCount):
-        (WTR::GCController::makeWindowObject):
-        * WebKitTestRunner/InjectedBundle/GCController.h: Added.
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::reset):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (WTR::InjectedBundle::bundle):
-        (WTR::InjectedBundle::gcController):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::didClearWindowForFrame):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::keepWebHistory):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-        * WebKitTestRunner/win/InjectedBundle.vcproj:
-
-2010-08-05  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        WebKitTestRunner needs to be able to set the font smoothing type
-        https://bugs.webkit.org/show_bug.cgi?id=43406
-
-        Reviewed by Adam Roben.
-
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::resetPreferencesToConsistentValues):
-        Set the font smoothing level to
-        kWKFontSmoothingLevelNoSubpixelAntiAliasing to match DRT.
-
-2010-08-06  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        Fix a missed variable rename.
-
-        Unreviewed.
-
-        * Scripts/old-run-webkit-tests:
-
-2010-08-06  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        mac-wk2/Skipped should be used on Windows when running regression tests
-        https://bugs.webkit.org/show_bug.cgi?id=43494
-
-        Reviewed by Adam Roben.
-
-        * Scripts/old-run-webkit-tests:
-        If the platform is win-wk2, also read the mac-wk2 skipped list.
-
-2010-08-06  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Should revoke scheduled tasks
-        https://bugs.webkit.org/show_bug.cgi?id=43560
-
-        * DumpRenderTree/chromium/DRTDevToolsAgent.cpp:
-        (DRTDevToolsAgent::reset): Calls RevokeAll().
-        * DumpRenderTree/chromium/DRTDevToolsAgent.h:
-        * DumpRenderTree/chromium/DRTDevToolsClient.cpp:
-        (DRTDevToolsClient::reset): Calls RevokeAll().
-        * DumpRenderTree/chromium/DRTDevToolsClient.h:
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::reset): Calls RevokeAll().
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::reset): Calls RevokeAll().
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetTestController): Calls DRTDevToolsAgent::reset() and DRTDevToolsClient::reset().
-
-2010-08-06  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Antonio Gomes.
-
-        [Qt] Fix the DRT build on Mac OS X
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-
-2010-08-06  Jochen Eisinger  <jochen@chromium.org>
-
-        Reviewed by Pavel Feldman.
-
-        Rietvield's upload.py moved to a different location.
-        https://bugs.webkit.org/show_bug.cgi?id=43613
-
-        * Scripts/webkitpy/thirdparty/__init__.py:
-
-2010-05-23  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        QueueStatusServer needs better queue-status pages
-        https://bugs.webkit.org/show_bug.cgi?id=39562
-
-        The primary goal of this patch is to display queue
-        positions somewhere on the site so that it's easier
-        for commit-queue users to know when their pach will
-        be landed.  I also tried to improve the root page
-        to be more useful than the previous wall of status text.
-
-        * QueueStatusServer/handlers/recentstatus.py:
-        * QueueStatusServer/main.py:
-        * QueueStatusServer/model/queues.py:
-        * QueueStatusServer/templates/recentstatus.html:
-
-2010-08-05  Victor Wang  <victorw@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Add option to generate/upload incremental json results to test result server.
-        Also refactor the json results generator unittest code to test
-        incremental and aggregated json results.
-
-        https://bugs.webkit.org/show_bug.cgi?id=43519
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-08-05  Jian Li  <jianli@chromium.org>
-
-        Reviewed by David Levin.
-
-        Unify blob related feature defines to ENABLE(BLOB).
-        https://bugs.webkit.org/show_bug.cgi?id=43081
-
-        * Scripts/build-webkit:
-
-2010-08-05  Satish Sampath  <satish@chromium.org>
-
-        Reviewed by Jeremy Orlow.
-
-        Add speech input controller mock in WebKit and a layout test.
-        https://bugs.webkit.org/show_bug.cgi?id=43477
-
-        Added LayoutTestController::setMockSpeechInputResultCallback method.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setMockSpeechInputResultCallback): Wrapper invoking the member function.
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setMockSpeechInputResult): Sets the mock result.
-        (LayoutTestController::speechInputController): Creates the mock controller.
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::speechInputController): Creates the mock controller.
-        * DumpRenderTree/chromium/WebViewHost.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setMockSpeechInputResult): dummy method.
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setMockSpeechInputResult): dummy method.
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setMockSpeechInputResult): dummy method.
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp: dummy method.
-        (LayoutTestController::setMockSpeechInputResult):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp: dummy method.
-        (LayoutTestController::setMockSpeechInputResult):
-
-2010-08-04  Adam Roben  <aroben@apple.com>
-
-        Fix the path to TestNetscapePlugin's directory on Windows
-
-        Fixes <http://webkit.org/b/43513> WebKitTestRunner on Windows fails to
-        load TestNetscapePlugin
-
-        Reviewed by Jon Honeycutt.
-
-        * WebKitTestRunner/win/TestControllerWin.cpp:
-        (WTR::TestController::initializeTestPluginDirectory):
-        TestNetscapePlugin is in a TestNetscapePlugin[_Debug] directory that's
-        next to WebKitTestRunner.exe. Previously we were passing the directory
-        that contains WebKitTestRunner.exe. Also fixed some leaks.
-
-2010-08-05  Kenichi Ishibashi  <bashi@google.com>
-
-        Reviewed by Shinichiro Hamaji.
-
-        check-webkit-style returns non-zero when patch is entirely minus lines.
-        https://bugs.webkit.org/show_bug.cgi?id=38169
-
-        * Scripts/check-webkit-style:
-        Check whether a patch contains modified files that are entirely minus lines.
-        * Scripts/webkitpy/style/filereader.py:
-        Add a variable that holds number of files that contain only deleted lines.
-        * Scripts/webkitpy/style/patchreader.py:
-        Count up modified files that contain only deleted lines.
-
-2010-08-05  Pavel Feldman  <pfeldman@chromium.org>
-
-        Reviewed by Yury Semikhatsky.
-
-        DevTools: get rid of delayed command dispatching on front-end side.
-
-        https://bugs.webkit.org/show_bug.cgi?id=43479
-
-        * DumpRenderTree/chromium/DRTDevToolsAgent.cpp:
-        (DRTDevToolsAgent::detach):
-        (DRTDevToolsAgent::frontendLoaded):
-        * DumpRenderTree/chromium/DRTDevToolsAgent.h:
-        * DumpRenderTree/chromium/DRTDevToolsClient.cpp:
-        (DRTDevToolsClient::~DRTDevToolsClient):
-        (DRTDevToolsClient::sendFrontendLoaded):
-        * DumpRenderTree/chromium/DRTDevToolsClient.h:
-
-2010-08-04  Kenichi Ishibashi  <bashi@google.com>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Fixes check-webkit-style false positive on "new uint32_t."
-        https://bugs.webkit.org/show_bug.cgi?id=43077
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-
-2010-08-04  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Remove base/linked_ptr.h dependency
-        https://bugs.webkit.org/show_bug.cgi?id=43472
-
-        Replace linked_ptr<TestNavigationEntry> with RefPtr<TestNavigationEntry>.
-        We need to use RefPtr<> because m_pendingEntry points an object in
-        m_entries or not in m_entries.
-
-        * DumpRenderTree/chromium/TestNavigationController.cpp:
-        (TestNavigationEntry::create): Added.
-        (TestNavigationController::activeEntry):
-        (TestNavigationController::didNavigateToEntry):
-        (TestNavigationController::discardPendingEntry):
-        (TestNavigationController::insertEntry):
-        (TestNavigationController::navigateToPendingEntry):
-        * DumpRenderTree/chromium/TestNavigationController.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::loadURLForFrame):
-         Use TestNavigationEntry::create().
-        (WebViewHost::updateURL):
-         Use RefPtr<>.
-        (WebViewHost::updateSessionHistory):
-         Remove unnecessary static_cast<>.
-
-2010-08-04  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Fix a problem that "archived test results" step doesn't work on Chromium buildbots
-        https://bugs.webkit.org/show_bug.cgi?id=43333
-
-        * BuildSlaveSupport/test-result-archive:
-          - Make layoutTestResultsDir local and pass it to archiveTestResults()
-          - Adjust layoutTestResultsDir for Chromium
-
-2010-08-04  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        NRWT: websocket_server startup detection failure
-        https://bugs.webkit.org/show_bug.cgi?id=43466
-
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-         Increase timeout value: 5 second -> 10 second
-
-2010-08-04  Victor Wang  <victorw@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        -. Add result.json incremental merging functionality to test results app engine.
-        -. blobstore is not suitable for AE data merging and there is no API to
-           programatically edit existing blob or write a new one yet, so replace blobstore
-           with datastore. If file is oversize (>1000*1000 bytes), store file data in
-           multiple datastore entries.
-        -. Fix styles.
-
-        Test: jsonresults_unittest to test merging logics.
-
-        https://bugs.webkit.org/show_bug.cgi?id=38599
-
-        * TestResultServer/handlers/dashboardhandler.py:
-        * TestResultServer/handlers/menu.py:
-        * TestResultServer/handlers/testfilehandler.py:
-        * TestResultServer/main.py:
-        * TestResultServer/model/dashboardfile.py:
-        * TestResultServer/model/datastorefile.py: Added.
-        * TestResultServer/model/jsonresults.py: Added.
-        * TestResultServer/model/jsonresults_unittest.py: Added.
-        * TestResultServer/model/testfile.py:
-        * TestResultServer/templates/uploadform.html:
-
-2010-08-04  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Kenneth Christiansen.
-
-        [Qt] [QtTestBrowser] Remove unneeded QAction class members
-        https://bugs.webkit.org/show_bug.cgi?id=43518
-
-        LauncherWindow class has two totally unneeded class members: m_flopAnimated and
-        m_flipYAnimated. Also, in initializeView method there are some dead code block
-        trying to connect them at the wrong time, when they have not been instanciated.
-
-        This patch:
-
-        - removes the two cited class members in favor of local variables in createChrome method;
-        - removes the dead code block.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::LauncherWindow):
-        (LauncherWindow::initializeView):
-        (LauncherWindow::createChrome):
-        * QtTestBrowser/launcherwindow.h:
-
-2010-08-04  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Simon Hausmann and Kenneth Christiansen.
-
-        [Qt] [QtTestBrowser] Clean up static and global menu state controls
-        https://bugs.webkit.org/show_bug.cgi?id=43448
-
-        After LauncherWindow class was refactored out of from main.cpp, all global variables that
-        were hanging in main.cpp became temporarily public static class members of newly added
-        LauncherWindow class. This design was not properly handling the initial purpose of the
-        global variables: newly created launcher windows should inherit the settings of the originating
-        one.
-
-        In order to properly fix the problem, this patch introduces a WindowOptions class, as a POD. It
-        comprises all data needed to handling the goal described above.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::LauncherWindow): The class now receives an optional WindowOptions pointer object
-                                          holding all user settings configured in the menus and command line.
-                                          It also receices an optional QGraphicsScene points in case we are doing
-                                          a "Clone Window".
-        (LauncherWindow::init): Removed the usesGraphics parameter because the class member m_userData holds its
-                                value.
-        (LauncherWindow::initializeView): Ditto.
-        (LauncherWindow::createChrome): Changed all references to gXXX to m_userData.XXX
-        (LauncherWindow::applyPrefs): Removed the "LauncherWindow* source" parameter. All data needed to properly
-                                      apply the preferences is provided by m_userData.
-        (LauncherWindow::toggleAcceleratedCompositing): Change gXXX by m_userData.XXX
-        (LauncherWindow::toggleResizesToContents): Ditto.
-        (LauncherWindow::toggleWebGL): Ditto.
-        (LauncherWindow::toggleFrameFlattening): Ditto.
-        (LauncherWindow::toggleQGLWidgetViewport): Ditto.
-        (LauncherWindow::changeViewportUpdateMode): Ditto.
-        (LauncherWindow::showFPS): Ditto.
-        (LauncherWindow::newWindow): Changed to pass the userData.
-        (LauncherWindow::cloneWindow): Ditto.
-        * QtTestBrowser/launcherwindow.h:
-        (WindowOptions::WindowOptions):
-        * QtTestBrowser/main.cpp:
-        (requiresGraphicsView):
-        (LauncherApplication::handleUserOptions):
-        (main):
-
-2010-08-04  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix for gcc not importing all symbols from convenience libraries.
-        Works on 10.6 only for Mac until the build system is reworked. 
-
-        * wx/build/settings.py:
-
-2010-08-04  Markus Goetz  <Markus.Goetz@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Change wording in QtTestBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=43241
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::createChrome):
-
-2010-08-04  Aaron Boodman  <aa@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        prepare-ChangeLog fails mysteriously if curl doesn't support ssl
-        https://bugs.webkit.org/show_bug.cgi?id=43460
-
-        * Scripts/prepare-ChangeLog:
-
-2010-08-03  MORITA Hajime  <morrita@google.com>
-
-        Reviewed by Tony Chang.
-
-        [DRT] Assertion failed when drag and move a draggable element.
-        https://bugs.webkit.org/show_bug.cgi?id=41695
-
-        mouseMoveToX() did call [WebHTMLView mouseDragged] even if dragging started.
-        But Cocoa doesn't call mouseDragged() until dragging is done.
-        Other part of DumpRenderTree also assumes Cocoa behavior and an assertion
-        on UIDelegate failed when mouseDragged() is called during dragging.
-        This change eliminated the mouseDragged() call when dragging begins,
-        which is implicated by draggingInfo instance.
-        
-        * DumpRenderTree/mac/EventSendingController.mm:
-        (-[EventSendingController mouseMoveToX:Y:]):
-
-        Test: fast/events/dragging-mouse-moves.html
-        
-2010-08-02  Steve Block  <steveblock@google.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Adds Geolocation LayoutTests for the case where permission is not granted or denied immediately
-        https://bugs.webkit.org/show_bug.cgi?id=40002
-
-        The code in LayoutTestController::setGeolocationPermission() was moved to
-        setGeolocationPermissionCommon() to allow each port to provide its own
-        implementation of setGeolocationPermission().
-
-        For the Mac port, setGeolocationPermission() notifies the UIDelegate of the
-        new permission, so it can call back to WebCore if permission requests are in
-        progress and are waiting for a response. A minor fix to the Mac
-        MockGeolocationProvider was also required to make sure that the mock provider
-        calls back to WebCore when it is first started.
-
-        For other ports, LayoutTestController::setGeolocationPermission() is not
-        implemented.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::setGeolocationPermissionCommon):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setGeolocationPermission):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setGeolocationPermission):
-        * DumpRenderTree/mac/MockGeolocationProvider.mm:
-        (-[MockGeolocationProvider registerWebView:]):
-        * DumpRenderTree/mac/UIDelegate.h:
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:decidePolicyForGeolocationRequestFromOrigin:frame:listener:]):
-        (-[UIDelegate setGeolocationPermission:]):
-        (-[UIDelegate dealloc]):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setGeolocationPermission):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setGeolocationPermission):
-
-2010-08-03  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Implement --testshell-startup-dialog
-        https://bugs.webkit.org/show_bug.cgi?id=40616
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main): Check --testshell-startup-dialog, and call openStartUpDialog()
-        if it is specfied.
-        * DumpRenderTree/chromium/TestShell.h:
-          Declare openStartUpDialog().
-        * DumpRenderTree/chromium/TestShellGtk.cpp:
-        (openStartupDialog):
-        * DumpRenderTree/chromium/TestShellMac.mm:
-        (openStartupDialog):
-        * DumpRenderTree/chromium/TestShellWin.cpp:
-        (openStartupDialog):
-
-2010-08-03  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Remove dependency of base/md5.h
-        https://bugs.webkit.org/show_bug.cgi?id=43403
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::dumpImage): Use wtf/MD5.h
-
-2010-08-03  Joseph Pecoraro  <joepeck@webkit.org>
-
-        Reviewed by David Kilzer.
-
-        Limit ApplicationCache Total and Per-Origin Storage Capacity (Quotas)
-        https://bugs.webkit.org/show_bug.cgi?id=40627
-
-        Part 6 - LayoutTest and Cleanup
-
-          Allow tests to delete application caches and set application cache
-          origin quotas, so they can be tested.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (dumpApplicationCacheDelegateCallbacksCallback): JavaScript callback, delegates to the controller.
-        (clearAllApplicationCachesCallback): should delete all application caches.
-        (setApplicationCacheOriginQuotaCallback): should set the origin quota for the localhost tests.
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::dumpApplicationCacheDelegateCallbacks): accessor to see if application cache callbacks should be output.
-        (LayoutTestController::setDumpApplicationCacheDelegateCallbacks): enable or disable debug output when the application cache quota is reached.
-
-          Mac implementation.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::clearAllApplicationCaches): delete application caches.
-        (LayoutTestController::setApplicationCacheOriginQuota): set the quota for localhost.
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:frame:exceededDatabaseQuotaForSecurityOrigin:database:]): style fix.
-        (-[UIDelegate webView:exceededApplicationCacheOriginQuotaForSecurityOrigin:]): reset the quota.
-
-          Stub implementations for other platforms.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::clearAllApplicationCaches):
-        (LayoutTestController::setApplicationCacheOriginQuota):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::clearAllApplicationCaches):
-        (LayoutTestController::setApplicationCacheOriginQuota):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::clearAllApplicationCaches):
-        (LayoutTestController::setApplicationCacheOriginQuota):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::clearAllApplicationCaches):
-        (LayoutTestController::setApplicationCacheOriginQuota):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::clearAllApplicationCaches):
-        (LayoutTestController::setApplicationCacheOriginQuota):
-
-2010-08-03  Joseph Pecoraro  <joepeck@webkit.org>
-
-        Reviewed by David Kilzer.
-
-        Limit ApplicationCache Total and Per-Origin Storage Capacity (Quotas)
-        https://bugs.webkit.org/show_bug.cgi?id=40627
-
-        Part 5 - Refactor Quota Management in WebSecurityOrigin into Managers
-
-          Change old style calls to make use of the managers.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setDatabaseQuota):
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:frame:exceededDatabaseQuotaForSecurityOrigin:database:]):
-
-2010-08-03  Mark Rowe  <mrowe@apple.com>
-
-        Add a new Leopard build slave to run the release tests.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2010-08-03  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        WebKitTestRunner needs to activate the Mac font ascent hack
-        https://bugs.webkit.org/show_bug.cgi?id=43404
-
-        Reviewed by Darin Adler.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::initialize):
-        Call WKBundleActivateMacFontAscentHack().
-
-2010-08-03  Alex Milowski  <alex@milowski.com>
-
-        Reviewed by Beth Dakin.
-
-        Changed the default for MathML support so that is is enabled by default.
-
-        * Scripts/build-webkit:
-
-2010-08-03  Sam Weinig  <sam@webkit.org>
-
-        Roll r64566 back in this time with all the overloads in place..
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::shouldInsertNode):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        * WebKitTestRunner/StringFunctions.h:
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::resetPreferencesToConsistentValues):
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-
-2010-08-03  Sam Weinig  <sam@webkit.org>
-
-        Rollout r64566. It broke all the WebKit2 tests.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::operator<<):
-        (WTR::InjectedBundlePage::shouldInsertNode):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        * WebKitTestRunner/StringFunctions.h: Removed.
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::createWKURL):
-        (WTR::WKStringToUTF8):
-        (WTR::TestInvocation::resetPreferencesToConsistentValues):
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-
-2010-08-03  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        WTR: Move all the utility functions for working with strings to a shared header.
-        https://bugs.webkit.org/show_bug.cgi?id=43386
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::shouldInsertNode):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        * WebKitTestRunner/StringFunctions.h: Added.
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::resetPreferencesToConsistentValues):
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-
-2010-08-02  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Kenneth Christiansen.
-
-        [Qt] QtTestBrowser not setting preferredContentsSize for resizesToContents
-        https://bugs.webkit.org/show_bug.cgi?id=43168
-
-        QGraphicsWebView resizesToContents property has to work together with QWebPage's
-        setPreferredContentsSize as stated by the docs. Patch addresses that for QtTestBrowser.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::applyPrefs):
-        * QtTestBrowser/webview.cpp:
-        (WebViewGraphicsBased::setResizesToContents): Properly handle scene, webview and viewport sizes
-                                                      needed when toggle resizesToContents on/off.
-        (WebViewGraphicsBased::resizeEvent):
-        * QtTestBrowser/webview.h:
-        (WebViewGraphicsBased::setCustomLayoutSize): Setter helper.
-        (WebViewGraphicsBased::customLayoutSize): Getter helper.
-
-2010-08-03  Jochen Eisinger  <jochen@chromium.org>
-
-        Unreviewed. Adding myself as committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-08-02  Pavel Feldman  <pfeldman@chromium.org>
-
-        Reviewed by Yury Semikhatsky.
-
-        Chromium DevTools: Get rid of DevTools RPC.
-
-        https://bugs.webkit.org/show_bug.cgi?id=43335
-
-        * DumpRenderTree/chromium/DRTDevToolsAgent.cpp:
-        (DRTDevToolsAgent::sendMessageToInspectorFrontend):
-        (DRTDevToolsAgent::call):
-        * DumpRenderTree/chromium/DRTDevToolsAgent.h:
-        * DumpRenderTree/chromium/DRTDevToolsCallArgs.h:
-        (DRTDevToolsCallArgs::DRTDevToolsCallArgs):
-        * DumpRenderTree/chromium/DRTDevToolsClient.cpp:
-        (DRTDevToolsClient::sendMessageToBackend):
-        (DRTDevToolsClient::call):
-        * DumpRenderTree/chromium/DRTDevToolsClient.h:
-
-2010-08-02  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Remove dependencies to some Chromium headers
-        https://bugs.webkit.org/show_bug.cgi?id=43396
-
-        * DumpRenderTree/chromium/CppVariant.h:
-         Remove base/basictypes.h because webkit_support.h contains it.
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (getCurrentEventTimeSec): Use new wrapper function.
-        * DumpRenderTree/chromium/TestNavigationController.h:
-         Remove base/basictypes.h because webkit_support.h contains it.
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (dumpHistoryItem): Use new wrapper function.
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::cancelledError): Use new wrapper function.
-        (WebViewHost::didFailResourceLoad): Use new wrapper function.
-
-2010-08-02  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] DRT implement execCommand()
-        https://bugs.webkit.org/show_bug.cgi?id=35351
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::execCommand): Implement using webkit_web_view_execute_core_command_by_name.
-        (LayoutTestController::isCommandEnabled): Implement using webkit_web_view_is_command_enabled.
-        (LayoutTestController::setCacheModel): Move below LayoutTestController::isCommandEnabled.
-
-2010-08-02  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Add alias for run-webkit-tests --webkit-test-runner (run-webkit-tests -2).
-
-        * Scripts/old-run-webkit-tests:
-
-2010-08-02  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        WebKitTestRunner needs to support loading custom fonts (via the
-        WEBKIT_TESTFONTS environment variable)
-        https://bugs.webkit.org/show_bug.cgi?id=42782
-
-        Reviewed by Adam Roben.
-
-        * WebKitTestRunner/InjectedBundle/win/ActivateFonts.cpp:
-        (WTR::fontsPath):
-        Copied from DRT code. Removed the fallback to DumpRenderTree.resources/,
-        as this directory doesn't appear to be created anymore.
-        (WTR::activateFonts):
-        Loop through the fonts, and call AddFontResourceExW() for each.
-
-2010-08-02  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        Restore the WebKitTestRunner.sln that was removed, and remove the
-        correct one.
-
-        Rubber-stamped by Sam Weinig.
-
-        * WebKitTestRunner/WebKitTestRunner.sln: Added.
-        * WebKitTestRunner/win/WebKitTestRunner.sln: Removed.
-
-2010-08-02  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        Move InjectedBundle.vcproj to where the other WebKitTestRunner vcprojs live.
-
-        Remove the unused WebKitTestRunner.sln.
-
-        Reviewed by Sam Weinig.
-
-        * WebKitTestRunner/Configurations/InjectedBundleCommon.vsprops:
-        * WebKitTestRunner/InjectedBundle/win/InjectedBundle.vcproj: Removed.
-        * WebKitTestRunner/WebKitTestRunner.sln: Removed.
-        * WebKitTestRunner/win/InjectedBundle.vcproj: Added.
-        * WebKitTestRunner/win/WebKitTestRunner.sln:
-
-2010-08-02  Sam Weinig  <sam@webkit.org>
-
-        Fix the windows build.
-
-        * WebKitTestRunner/win/main.cpp:
-
-2010-07-29  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        Add a Skipped list on Windows, and have run-webkit-tests respect it.
-
-        Part of <rdar://problem/8233237> Fill WebKit2 Windows skipped list so
-        there are zero tests failing
-        https://bugs.webkit.org/show_bug.cgi?id=43374
-
-        Reviewed by Adam Roben.
-
-        * Scripts/old-run-webkit-tests:
-        If using WebKitTestRunner and Apple Windows WebKit, set the platform to
-        win-wk2. When building the result hierarchy, if the platform is win-wk2,
-        add it first to the list of platforms.
-
-2010-08-02  Darin Adler  <darin@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        WebKitTestRunner needs layoutTestController.setCanOpenWindows
-        https://bugs.webkit.org/show_bug.cgi?id=42321
-
-        WebKitTestRunner needs layoutTestController.setCloseRemainingWindowsWhenComplete
-        https://bugs.webkit.org/show_bug.cgi?id=42779
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl: Added
-        setCanOpenWindows, setCloseRemainingWindowsWhenComplete, and windowCount
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::InjectedBundle): Initialize m_mainPage to 0 instead of
-        waiting for the first call to didCreatePage.
-        (WTR::InjectedBundle::didCreatePage): Set m_mainPage only when the first page
-        is created. Put other pages into a map.
-        (WTR::InjectedBundle::willDestroyPage): Added code to handle the destruction
-        of the main page.
-        (WTR::InjectedBundle::closeOtherPages): Added. Closes all the pages other than
-        the main page.
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h: Added pageCount and
-        closeOtherPages functions.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::didFinishLoadForFrame): Don't let pages other than
-        the main page affect dumping.
-        (WTR::InjectedBundlePage::didFailLoadWithErrorForFrame): Ditto.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::LayoutTestController): Initialize the new
-        m_shouldCloseExtraWindows member.
-        (WTR::LayoutTestController::setCanOpenWindows): Added. Empty for now.
-        (WTR::LayoutTestController::windowCount): Added.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        Added setCanOpenWindows, setCloseRemainingWindowsWhenComplete,
-        windowCount, shouldCloseExtraWindowsAfterRunningTest, and
-        m_shouldCloseExtraWindows.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::shared): Return a pointer to the shared copy, but
-        don't allocate and leak it. This seemed cleaner than adding an explicit
-        finalize call to go along with the explicit initialize call.
-        (WTR::TestController::TestController): Added calls to the initialize and
-        run function, which are now done automatically.
-        (WTR::TestController::~TestController): Added, since it's called now.
-        (WTR::closeOtherPage): Added. Used to close pages other than the main page.
-        (WTR::createOtherPage): Added. Used to create pages other than the main page.
-        (WTR::TestController::initialize): Added code to set up createOtherPage.
-        (WTR::TestController::run): Removed unused return value.
-        * WebKitTestRunner/TestController.h: Made constructor and destructor public,
-        and initialize and run private. Changed m_mainWebView to be an OwnPtr.
-
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (WTR::PlatformWebView::PlatformWebView): Added a call to setReleasedWhenClosed
-        to avoid releasing the window twice. Another way to handle it would be to
-        remove the release, but this approach is slightly more robust because it works
-        even if some other code calls the close method an extra time.
-
-        * WebKitTestRunner/mac/main.mm:
-        (main): Use a stack-allocated TestController object instead of calling
-        initalize and run on a globally allocated one.
-
-2010-08-02  Tony Chang  <tony@chromium.org>
-
-        Reviewed by David Levin.
-
-        add myself to the reviewers list
-        https://bugs.webkit.org/show_bug.cgi?id=43366
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-08-02  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Cache JSNPObjects and fix bugs in the object map
-        https://bugs.webkit.org/show_bug.cgi?id=43368
-
-        Test that we correctly throw exceptions when trying to do things to a JSObject that used to
-        wrap an NPObject that came from a plug-in that is now destroyed.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.h:
-        (PluginTest::Object::getProperty):
-        (PluginTest::Object::NP_GetProperty):
-        (PluginTest::Object::npClass):
-        * DumpRenderTree/TestNetscapePlugIn/Tests/NPRuntimeObjectFromDestroyedPlugin.cpp: Added.
-        (NPRuntimeObjectFromDestroyedPlugin::NPRuntimeObjectFromDestroyedPlugin):
-        (NPRuntimeObjectFromDestroyedPlugin::ScriptableObject::hasProperty):
-        (NPRuntimeObjectFromDestroyedPlugin::ScriptableObject::getProperty):
-        (NPRuntimeObjectFromDestroyedPlugin::NPP_GetValue):
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * GNUmakefile.am:
-
-2010-08-02  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [Gtk] DOM listeners get wrong keycodes for some keys
-        https://bugs.webkit.org/show_bug.cgi?id=35170
-
-        Add support to all event senders for simulating keypad insert
-        and print screen keys.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::keyDown): Add support for generating keypad insert and print screen.
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (keyDownCallback): Ditto.
-        * DumpRenderTree/mac/EventSendingController.mm:
-        (-[EventSendingController keyDown:withModifiers:withLocation:]): Ditto.
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::keyDown): Ditto.
-        * DumpRenderTree/win/EventSender.cpp:
-        (keyDownCallback): Ditto.
-
-2010-08-02  Martin Robinson  <mrobinson@igalia.com>
-
-        Build fix for building against development versions of GTK+. GTK 2.22
-        has not yet been released, so these function definitions must be conditionalized
-        on the development version.
-
-        * DumpRenderTree/gtk/EventSender.cpp: Fix GTK+ 2.21 build.
-
-2010-08-02  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [chromium] use ChromiumDriver on Linux when running webkit tests
-        https://bugs.webkit.org/show_bug.cgi?id=43273
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2010-08-02  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Always initialize GTK
-        https://bugs.webkit.org/show_bug.cgi?id=43327
-
-        Call gtk_init() in order to fix plugin test crash.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main): Pass argc/argv to platformInit().
-        * DumpRenderTree/chromium/TestShell.h:
-        * DumpRenderTree/chromium/TestShellGtk.cpp:
-        (platformInit): Update parameters, call gtk_init().
-        * DumpRenderTree/chromium/TestShellMac.mm:
-        (platformInit): Update parameters.
-        * DumpRenderTree/chromium/TestShellWin.cpp:
-        (platformInit): Update parameters.
-
-2010-08-02  Balazs Kelemen  <kb@inf.u-szeged.hu>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Generate forwarding headers for WebKit2
-
-        https://bugs.webkit.org/show_bug.cgi?id=43336
-
-        * Scripts/webkitdirs.pm: Call make on WebKit2/Makefile.DerivedSources.
-
-2010-08-02  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        WebSocket server should start with SO_REUSEADDR
-        https://bugs.webkit.org/show_bug.cgi?id=43329
-
-        Pulls in pywebsocket-0.5.2.
-        pywebsocket-0.5.2 includes a small fix to start server with SO_REUSE_ADDR.
-        http://code.google.com/p/pywebsocket/source/detail?r=273
-
-        * Scripts/webkitpy/thirdparty/__init__.py: Bump pywebsocket version
-
-2010-08-01  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Remove string_util.h dependency
-        https://bugs.webkit.org/show_bug.cgi?id=43312
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::pathToLocalResource):
-         Use string::find() instead of StartsWithASCII().
-        (LayoutTestController::cppVariantToInt32):
-         Use strtol() instead of StringToNumber().
-
-2010-08-01  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Add ability to reset frame names for WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=43316
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::reset):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::reset):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-
-2010-08-01  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Implement NPN_RemoveProperty
-        https://bugs.webkit.org/show_bug.cgi?id=43315
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        Add NPRuntimeRemoveProperty.cpp
-        
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-        (PluginTest::NPN_GetStringIdentifier):
-        (PluginTest::NPN_GetIntIdentifier):
-        (PluginTest::NPN_RemoveProperty):
-        Add NPN_ helpers.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.h:
-        Support more NPClass functions.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/NPRuntimeRemoveProperty.cpp: Added.
-        (NPRuntimeRemoveProperty::NPRuntimeRemoveProperty):
-        Test for NPN_RemoveProperty.
-
-        (NPRuntimeRemoveProperty::TestObject::hasMethod):        
-        (NPRuntimeRemoveProperty::TestObject::invoke):
-        Add a testRemoveProperty method.
-
-        (NPRuntimeRemoveProperty::NPP_GetValue):
-        Return the test object.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * GNUmakefile.am:
-        Add NPRuntimeRemoveProperty.cpp
-
-2010-07-30  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Add an NPObject class template helper to TestNetscapePlugin
-        https://bugs.webkit.org/show_bug.cgi?id=43288
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.h:
-        Add some template magic to be able to figure out if a class has a member function of a given type.
-
-        (PluginTest::Object::create):
-        Create an object.
-
-        (PluginTest::Object::invokeDefault):
-        Add dummy function, this should never be called.
-
-        (PluginTest::Object::Object):
-        Initialize m_pluginTest to 0.
-
-        (PluginTest::Object::~Object):
-        Add virtual destructor.
-
-        (PluginTest::Object::NP_Allocate):
-        Create a new object.
-
-        (PluginTest::Object::NP_Deallocate):
-        Delete the object.
-
-        (PluginTest::Object::NP_InvokeDefault):
-        Call invokeDefault.
-
-        (PluginTest::Object::npClass):
-        Initialize the NPClass struct.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/DocumentOpenInDestroyStream.cpp:
-        (DocumentOpenInDestroyStream::NPP_DestroyStream):
-        Move this inline.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/PluginScriptableNPObjectInvokeDefault.cpp:
-        (PluginScriptableNPObjectInvokeDefault::NPObjectWithInvokeDefault::invokeDefault):
-        (PluginScriptableNPObjectInvokeDefault::NPP_GetValue):
-        Use the PluginTest::Object class template.
-
-2010-07-31  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Dan Bernstein.
-
-        Patch for https://bugs.webkit.org/show_bug.cgi?id=43305
-        Add back WKBundleFrameCopyInnerText to fix ~50 test failures
-        due to SVGElements not having the innerText function.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::dumpFrameText):
-
-2010-07-30  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Maciej Stachowiak.
-
-        Patch for https://bugs.webkit.org/show_bug.cgi?id=43290
-        Add structured message passing from the injected bundle to UIProcess
-
-        * MiniBrowser/mac/AppDelegate.m:
-        (didRecieveMessageFromInjectedBundle):
-        * MiniBrowser/mac/WebBundle/WebBundleMain.m:
-        (didClearWindowForFrame):
-        (didRecieveMessage):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::done):
-        (WTR::InjectedBundle::didReceiveMessage):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-        (WTR::TestController::didReceiveMessageFromInjectedBundle):
-        * WebKitTestRunner/TestController.h:
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-        * WebKitTestRunner/TestInvocation.h:
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-
-2010-07-30  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Patch for https://bugs.webkit.org/show_bug.cgi?id=43275
-        Make WKArrayRef more usable.
-
-        Remove now unnecessary const_casts.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::dumpDescendantFrameScrollPositions):
-        (WTR::dumpDescendantFramesText):
-
-2010-07-30  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Patch for https://bugs.webkit.org/show_bug.cgi?id=43274
-        Add first pass of structured message passing.
-
-        Update Minibrowser and WebKitTestRunner to work with the new post message
-        function.
-
-        * MiniBrowser/mac/AppDelegate.m:
-        (didRecieveMessageFromInjectedBundle):
-        (-[BrowserAppDelegate init]):
-        * MiniBrowser/mac/MiniBrowser_Prefix.pch:
-        * MiniBrowser/mac/WebBundle/WebBundleMain.m:
-        (didStartProvisionalLoadForFrame):
-        (didReceiveServerRedirectForProvisionalLoadForFrame):
-        (didFailProvisionalLoadWithErrorForFrame):
-        (didCommitLoadForFrame):
-        (didFinishLoadForFrame):
-        (didFailLoadWithErrorForFrame):
-        (didReceiveTitleForFrame):
-        (didClearWindowForFrame):
-        (didCreatePage):
-        (willDestroyPage):
-        (didRecieveMessage):
-        (WKBundleInitialize):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::_didReceiveMessage):
-        (WTR::InjectedBundle::didReceiveMessage):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::invoke):
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-
-2010-07-30  Anders Carlsson  <andersca@apple.com>
-
-        Try to fix the layout test failures.
-
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_get_value):
-
-2010-07-29  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Replace plugins/npruntime/bindings-test.html with a more sophisticated test
-        https://bugs.webkit.org/show_bug.cgi?id=43232
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        Add PluginScriptableNPObjectInvokeDefault.cpp.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:
-        Remove invokeDefault callback function.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-        (PluginTest::create):
-        Move this to the top of the file.
-
-        (PluginTest::NPP_GetValue):
-        Add default implementation.
-
-        (PluginTest::NPN_CreateObject):
-        Add NPN_ wrapper.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.h:
-        (PluginTest::identifier):
-        Add identifier getter.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/DocumentOpenInDestroyStream.cpp:
-        (DocumentOpenInDestroyStream::DocumentOpenInDestroyStream):
-        Add "using namespace std".
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_GetValue):
-        Give PluginTest a chance to return a value.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * GNUmakefile.am:
-        Add PluginScriptableNPObjectInvokeDefault.cpp.
-        
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_get_value):
-        Give PluginTest a chance to return a value.
-
-2010-07-30  Steve Block  <steveblock@google.com>
-
-        Reviewed by Steve Block.
-
-        Add LayoutTestController methods to test DeviceOrientation
-        https://bugs.webkit.org/show_bug.cgi?id=39589
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setMockDeviceOrientationCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setMockDeviceOrientation):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setMockDeviceOrientation):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setMockDeviceOrientation):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setMockDeviceOrientation):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setMockDeviceOrientation):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setMockDeviceOrientation):
-        * Scripts/build-webkit:
-
-2010-07-29  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Kenneth Christiansen.
-
-        [Qt] QtTestBrowser: -resizes-to-contents command line parameter is broken
-        https://bugs.webkit.org/show_bug.cgi?id=43209
-
-        When -resizes-to-content was being passed as a command line parameter it was simply
-        not being set (although the corresponding menu item was marked as ON).
-        User had to toggle the menu OFF and then ON again for it to take place.
-
-        Reason: LauncherWindow::applyPrefs method sets many user options passed in from
-        the command line, but not resizesToContents. Patch addresses that.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::createChrome):
-        (LauncherWindow::applyPrefs):
-        (LauncherWindow::toggleResizesToContents):
-        * QtTestBrowser/webview.h:
-        (WebViewGraphicsBased::resizesToContents):
-
-2010-07-29  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Rubber-stamped by Simon Fraser.
-
-        [Qt] QtTestBrowser: more method grouping and clean ups.
-
-        Moving blocks of code around. Basically grouping related methods close to each.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::initializeView):
-        (LauncherWindow::createChrome):
-        (LauncherWindow::changeViewportUpdateMode):
-        (LauncherWindow::showFPS):
-        (LauncherWindow::newWindow):
-        (LauncherWindow::cloneWindow):
-        * QtTestBrowser/launcherwindow.h:
-
-2010-07-30  Mahesh Kulkarni  <mahesh.kulkarni@nokia.com>
-
-        Reviewed by Tor Arne Vestbø.
-
-        [QT][Symbian] QtTestBrowser missing location capabilities
-        https://bugs.webkit.org/show_bug.cgi?id=43235
-
-        QtTestBrowser missing capabilities to use QtMobility::QLocation. 
-
-        * QtTestBrowser/QtTestBrowser.pro:
-
-2010-07-29  Anders Carlsson  <andersca@apple.com>
-
-        Add PluginTest.cpp
-
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-
-2010-07-29  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Update download URLs for python irclib package; the old URLs 
-        pointed at a specific mirror host and not the general sourceforge
-        URLs.
-
-        https://bugs.webkit.org/show_bug.cgi?id=43228
-
-        * Scripts/webkitpy/thirdparty/__init__.py:
-
-2010-07-29  Anders Carlsson  <andersca@apple.com>
-
-        Fix typo.
-
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-
-2010-07-29  Anders Carlsson  <andersca@apple.com>
-
-        Another attempt at fixing the Qt and GTK+ build.
-
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_new_instance):
-        (webkit_test_plugin_destroy_stream):
-
-2010-07-29  Anders Carlsson  <andersca@apple.com>
-
-        Another build fix attempt.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_new_instance):
-        * GNUmakefile.am:
-
-2010-07-29  Anders Carlsson  <andersca@apple.com>
-
-        Try to fix Windows and Unix builds.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_new_instance):
-        (webkit_test_plugin_destroy_stream):
-
-2010-07-29  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Refactor TestNetscapePlugin so tests can be split in separate files
-        https://bugs.webkit.org/show_bug.cgi?id=43220
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        Add PluginTest.cpp, PluginTest.h and Tests/DocumentOpenInDestroyStream.cpp.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:
-        (pluginAllocate):
-        Initialize pluginTest to 0. Remove testDocumentOpenInDestroyStream.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.h:
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp: Added.
-        (PluginTest::PluginTest):
-        Initialize m_npp and the test identifier.
-        
-        (PluginTest::createTestFunctions):
-        Return the map from identifiers to createTest functions.
-
-        (PluginTest::registerCreateTestFunction):
-        Insert the identifier and create function pair in the map.
-
-        (PluginTest::create):
-        Look for a createTest function. If one is found, call it. Otherwise create a vanilla PluginTest object.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.h: Added.
-        (PluginTest::Register::Register):
-        Helper class template for registering plug-in tests.
-        
-        (PluginTest::Register::create):
-        Create a new test of the given type.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/DocumentOpenInDestroyStream.cpp: Added.
-        (DocumentOpenInDestroyStream::DocumentOpenInDestroyStream):
-        Add a test that calls testDocumentOpen from its NPP_DestroyStream callback.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_New):
-        Create a PluginTest given the identifier. Remove the check for "testdocumentopenindestroystream".
-
-        (NPP_DestroyStream):
-        Call the plug-in test NPP_DestroyStream member function.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        Add PluginTest.cpp, PluginTest.h and Tests/DocumentOpenInDestroyStream.cpp.
-
-2010-07-29  Martin Robinson  <mrobinson@igalia.com>
-
-        Unreviewed build fix.
-
-        Add missing second argument to assert_lint in new style checker tests.
-
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-
-2010-07-29  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Adam Roben.
-
-        check-webkit-style shouldn't complain about NPAPI functions
-        https://bugs.webkit.org/show_bug.cgi?id=43211
-
-        Allow underscores in functions that start with NPN_, NPP_ or NP_.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-
-2010-07-29  Victor Wang  <victorw@chromium.org>
-
-        Unreviewed, rolling out r64270.
-        http://trac.webkit.org/changeset/64270
-        https://bugs.webkit.org/show_bug.cgi?id=39589
-
-        The patch breaks chromium webkit unittest
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        * Scripts/build-webkit:
-
-2010-07-29  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Kenneth Christiansen.
-
-        [Qt] QtTestBrowser: Move WebPage class methods definitions from main.cpp to webpage.cpp
-        https://bugs.webkit.org/show_bug.cgi?id=43199
-
-        There is no sense in keeping WebPage method definitions in main.cpp once
-        webpage.cpp already exists.
-
-        No behavior change.
-
-        * QtTestBrowser/main.cpp:
-        * QtTestBrowser/webpage.cpp:
-        (WebPage::createWindow):
-        (WebPage::createPlugin):
-
-2010-07-29  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Kenneth Christiansen.
-
-        [Qt] Factor out LauncherWindow class out of main.cpp (QtTestBrowser)
-        https://bugs.webkit.org/show_bug.cgi?id=43170
-
-        Moving LauncherWindow class out of main.cpp to its own .cpp and .h files:
-        launcherwindow.{cpp|h}
-
-        No behavior change.
-
-        Also changed all global static variables (named "gXXX") from main.cpp to
-        static public variables of the LauncherWindow class.
-
-        * QtTestBrowser/QtTestBrowser.pro:
-        * QtTestBrowser/launcherwindow.cpp: Added.
-        * QtTestBrowser/launcherwindow.h: Added.
-        * QtTestBrowser/main.cpp:
-        (LauncherApplication::handleUserOptions):
-        (main):
-
-2010-07-29  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        Build fix for building against GTK+ 3.x. GSEAL requires that we
-        access internals of the GdkDragContext via methods. For older versions
-        of GTK+, define those methods.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (gdk_drag_context_get_selected_action): Added.
-        (gdk_drag_context_get_actions): Added.
-        (dispatchEvent): Use the two new accessor methods.
-
-2010-07-29  Adam Roben  <aroben@apple.com>
-
-        Always say "plugins directory" when referring to a directory
-        containing one or more plugins
-
-        Fixes <http://webkit.org/b/43197> WebKit2 often says "plugin
-        directory" when it means "plugins directory"
-
-        Reviewed by John Sullivan.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize): Updated for rename.
-
-2010-07-29  Adam Roben  <aroben@apple.com>
-
-        Always say "directory" when referring to a plugin directory
-
-        Fixes <http://webkit.org/b/43195> WebKit2 often says "plugin path"
-        when it means "plugin directory"
-
-        Reviewed by John Sullivan.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize): Updated for renames.
-
-        * WebKitTestRunner/TestController.h: Renamed m_testPluginPath to
-        m_testPluginDirectory.
-        (WTR::TestController::testPluginDirectory): Renamed from
-        testPluginPath.
-
-        * WebKitTestRunner/mac/TestControllerMac.mm:
-        (WTR::TestController::initializeTestPluginDirectory):
-        * WebKitTestRunner/win/TestControllerWin.cpp:
-        (WTR::TestController::initializeTestPluginDirectory):
-        Renamed from initializeTestPluginPath and updated for rename.
-
-2010-07-29  Csaba Osztrogonác  <ossy@webkit.org>
-
-         Reviewed by Antonio Gomes.
-
-         Initialize all members of NPClass struct.
-         https://bugs.webkit.org/show_bug.cgi?id=43193
-
-         * DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:
-
-2010-07-29  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Antonio Gomes.
-
-        Warning fix on platforms where XP_MACOSX is undefined.
-        https://bugs.webkit.org/show_bug.cgi?id=43192
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.h:
-        Use #if defined(XP_MACOSX) instead of #if XP_MACOSX .
-
-2010-07-29  Adam Roben  <aroben@apple.com>
-
-        Give find-included-framework-headers our standard license
-
-        * Scripts/find-included-framework-headers: Used the license from
-        WebCore/LICENSE-APPLE.
-
-2010-07-29  Adam Roben  <aroben@apple.com>
-
-        Speed up find-included-framework-headers
-
-        We only do one invocation of find now, no longer pipe to grep, and
-        replace uniq with sort -u.
-
-        Also added a license header.
-
-        * Scripts/find-included-framework-headers:
-
-2010-07-29  Steve Block  <steveblock@google.com>
-
-        Reviewed by Jeremy Orlow.
-
-        Add LayoutTestController methods to test DeviceOrientation
-        https://bugs.webkit.org/show_bug.cgi?id=39589
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setMockDeviceOrientationCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setMockDeviceOrientation):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setMockDeviceOrientation):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setMockDeviceOrientation):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setMockDeviceOrientation):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setMockDeviceOrientation):
-        * Scripts/build-webkit:
-
-2010-07-28  Kenichi Ishibashi  <bashi@google.com>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Fixed <https://bugs.webkit.org/show_bug.cgi?id=33814>
-        check-webkit-style gives false positives in single-line functions.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-
-2010-07-28  Darin Adler  <darin@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        WebKitTestRunner needs to support layoutTestController.execCommand
-        <https://bugs.webkit.org/show_bug.cgi?id=42538>
-
-        WebKitTestRunner needs layoutTestController.isCommandEnabled
-        <https://bugs.webkit.org/show_bug.cgi?id=42671>
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        Added execCommand and isCommandEnabled.
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::execCommand): Added.
-        (WTR::LayoutTestController::isCommandEnabled): Added.
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h: Ditto.
-
-2010-07-28  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Introduce drt_expectations.txt for NRWT
-        https://bugs.webkit.org/show_bug.cgi?id=43123
-
-        Introduce LayoutTests/platform/chromium/drt_expectations.txt,
-        which overrides test expectations only for DumpRenderTree, in
-        order to manage what problems are investigated.
-        This change will be reverted when we switch to DRT completely.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-         Add drt_expectations.txt content to the result of
-         test_expectations_overrides() if --use-drt is specified.
-
-2010-07-28  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Darin Adler.
-
-        First pass at visited link support for WK2
-        https://bugs.webkit.org/show_bug.cgi?id=43157
-
-        * MiniBrowser/mac/AppDelegate.m:
-        (didNavigateWithNavigationData):
-        (didPerformClientRedirect):
-        (didPerformServerRedirect):
-        (didUpdateHistoryTitle):
-        (populateVisitedLinks): Added for the new version of the HistoryClient.
-        (-[BrowserAppDelegate init]): Set the HistoryClient right after creating the context(s)
-        
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-
-2010-07-28  Robin Dunn  <robin@alldunn.com>
-
-        Reviewed by Kevin Ollivier.
-
-        Add DOM bindings support for wx port.
-
-        * DumpRenderTree/wscript:
-        * wx/browser/wscript:
-        * wx/build/settings.py:
-
-2010-07-28  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [chromium] cleanup temp files left by Linux DRT
-        https://bugs.webkit.org/show_bug.cgi?id=43062
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Rename the chromium bots to include the OS
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: add a step on chromium-linux to delete temp files left
-            by crashed DRTs
-
-2010-07-28  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Rubber-stamped by Kenneth Christiansen.
-
-        More Developer menu items reordering.
-
-        Grouping related menu items together, visually and logically (in the code).
-
-        No behavior change.
-
-        * QtTestBrowser/main.cpp:
-        (LauncherWindow::createChrome):
-
-2010-07-27  Kinuko Yasuda  <kinuko@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Add FILE_SYSTEM build flag for FileSystem API
-        https://bugs.webkit.org/show_bug.cgi?id=42915
-
-        * Scripts/build-webkit:
-
-2010-07-27  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by David Levin.
-
-        Stylebot should not complain about NULL usage in calls to gdk_pixbuf_save_to
-        https://bugs.webkit.org/show_bug.cgi?id=43090
-
-        * Scripts/webkitpy/style/checkers/cpp.py: Add exemption for some GdkPixbuf methods.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Added some tests for this behavior.
-
-2010-07-27  Kent Tamura  <tkent@chromium.org>
-
-        Unreviewed, trivial typo fix.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-          Fix a wrong method name committed by r64109.
-
-2010-07-27  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Patch for https://bugs.webkit.org/show_bug.cgi?id=43087
-        Clean up handling of strings at the WebKit2 API layer.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (runJavaScriptAlert):
-        (runJavaScriptConfirm):
-        (runJavaScriptPrompt):
-        (didNavigateWithNavigationData):
-        (-[BrowserWindowController updateProvisionalURLForFrame:]):
-        * MiniBrowser/mac/WebBundle/WebBundleMain.m:
-        (_didClearWindowForFrame):
-
-2010-07-27  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        webkit-patch post-commits is broken: AttributeError: Values instance has no attribute 'no_squash'
-        https://bugs.webkit.org/show_bug.cgi?id=42984
-
-        squash and no_squash have been intentionally erroring for a couple weeks now.
-        But post-commits was just broken. Just remove squash/no_squash.
-
-        * Scripts/webkitpy/tool/steps/abstractstep.py:
-        * Scripts/webkitpy/tool/steps/options.py:
-
-2010-07-27  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix after introduction of EXECUTABLE_ALLOCATOR_DEMAND.
-
-        * wx/build/settings.py:
-
-2010-07-27  Adam Roben  <aroben@apple.com>
-
-        Mac build fix
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (processDidExit):
-        (-[BrowserWindowController awakeFromNib]):
-        Added processDidExit support.
-
-2010-07-26  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Rubber-stamped by Simon Hausmann.
-
-        [Qt] Reorder some items in Developers' menu so QGraphicsView one is easier accessible.
-
-        Move some less useful menu items on Developers menu from the top to the bottom, so
-        QGraphicsView menu goes to the top, and becomes more quickly accessible.
-
-        * QtTestBrowser/main.cpp:
-        (LauncherWindow::createChrome):
-
-2010-07-26  Adam Roben  <aroben@apple.com>
-
-        Fix the path to InjectedBundle.dll in Debug_Internal builds
-
-        Fixes <http://webkit.org/b/42994> WebKitTestRunner fails to load
-        InjectedBundle.dll in the Debug_Internal configuration
-
-        Reviewed by Anders Carlsson.
-
-        * WebKitTestRunner/win/TestControllerWin.cpp:
-        (WTR::TestController::initializeInjectedBundlePath): Add the _debug
-        suffix only in Debug_All builds.
-
-2010-07-25  Mahesh Kulkarni  <mahesh.kulkarni@nokia.com>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=42947
-        Check for WEBKIT_TESTFONTS for qt, gtk and windows port and throw 
-        error. Without which dumpRenderTree crashes.
-
-        * Scripts/old-run-webkit-tests:
-
-2010-07-27  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        https://bugs.webkit.org/show_bug.cgi?id=42956
-        [DRT/Chromium] Fix "out of sync" assertion error
-
-        Fix an assertion error on Windows like the following:
-        100721 20:16:46 chromium.py:386  CRITICAL Test got out of sync:
-        |file:///c:/WebKitBuildSlave2/chromium-win-release-tests/build/LayoutTests/http/tests/local/blob/send-data-blob.html|
-        |file:///C:/WebKitBuildSlave2/chromium-win-release-tests/build/LayoutTests/http/tests/local/blob/send-data-blob.html|
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        If the url matches with "file:///[a-z]:", does case-ignore comparison.
-        GURL capitalize the driver letter of a file: URL.
-
-2010-07-26  Darin Adler  <darin@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        WebKitTestRunner needs to support layoutTestController.counterValueForElementById
-        https://bugs.webkit.org/show_bug.cgi?id=42537
-
-        WebKitTestRunner needs layoutTestController.markerTextForListItem
-        https://bugs.webkit.org/show_bug.cgi?id=42549
-
-        * WebKitTestRunner/InjectedBundle/Bindings/CodeGeneratorTestRunner.pm:
-        Fixed _paramterExpression typo. Improved support for string type as a
-        return value, so we don't try to include DOMString.h and we can convert
-        the string to a JSValue by calling JSValueMakeStringOrNull.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/JSWrappable.h:
-        Added JSValueMakeStringOrNull, used by the code generator.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        Added counterValueForElementById and markerTextForListItem.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        Moved constant to the top of the file.
-        (WTR::toCF): Added. Converts strings to CFStringRef.
-        (WTR::toWK): Added. Converts strings to WKStringRef.
-        (WTR::toJS): Added. Converts strings to JSStringRef.
-        (WTR::setProperty): Moved this function to the top of the file
-        rather than having it down where it's used inside the class. Also
-        renamed it so it's a separate function rather than an overload of
-        JSObjectSetProperty.
-        (WTR::propertyValue): Copied this here from InjectedBundlePage.cpp.
-        Should move it somewhere we can share it.
-        (WTR::propertyObject): Ditto.
-        (WTR::getElementById): Added. Calls getElementById through the magic
-        of JavaScript.
-        (WTR::LayoutTestController::pauseAnimationAtTimeOnElementWithId):
-        Chagned to use toWK instead of four local variables.
-        (WTR::LayoutTestController::counterValueForElementById): Added.
-        Calls WKBundleFrameCopyCounterValue.
-        (WTR::LayoutTestController::markerTextForListItem): Added.
-        Calls WKBundleFrameCopyMarkerText.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        Added counterValueForElementById and markerTextForListItem.
-
-2010-07-26  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        [GTK] The EventSender should support simulating drop events
-        https://bugs.webkit.org/show_bug.cgi?id=39844
-
-        Add initial dropping support to the GTK+ EventSender.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (createWebView): Listen for some new drag-and-drop signals.
-        * DumpRenderTree/gtk/EventSender.cpp: Add currentDragSourceContext.
-        (dispatchEvent):
-        Detect situations where a drag is either starting or ending and massage
-        GTK+ into sending the appropriate signals to the WebView.
-        (replaySavedEvents): Remove comment.
-        (makeEventSender): Clear the currentDragSourceContext when creating a new EventSender.
-        (dragBeginCallback): Capture the new currentDragSourceContext when a drag begins.
-        (dragEndCallback): Clear the currentDragSourceContext when a drag ends.
-        (dragFailedCallback): Disable the GTK+ drag failed animation.
-        * DumpRenderTree/gtk/EventSender.h: Add declarations for new signal callbacks.
-
-2010-07-26  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Darin Adler.
-
-        svn-unapply warns of uninitialized variable when unapplying
-        a patch that describes an svn move operation
-        https://bugs.webkit.org/show_bug.cgi?id=42036
-
-        Fixes Perl uninitialized variable warnings when un-applying
-        a patch that moves a file.
-
-        * Scripts/svn-unapply:
-          - Modified patch() so that it initializes $patch to the empty
-            string when we don't have svnConvertedText (such as when
-            reversing a diff that represents a svn copy/move operation).
-
-2010-07-26  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Move some non-APIish functions into private headers.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-
-2010-07-26  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Fix for https://bugs.webkit.org/show_bug.cgi?id=42986
-        Add prompt and confirm client functions to WebKit2
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-
-2010-07-26  Adam Roben  <aroben@apple.com>
-
-        Windows build fix
-
-        * MiniBrowser/MiniBrowser.vcproj:
-        * WebKitTestRunner/InjectedBundle/win/InjectedBundle.vcproj:
-        Removed empty attributes so the values will be picked up from the
-        vsprops files. (Also removed a couple of attributes that accidentally
-        duplicated values from the vsprops files.)
-
-2010-07-26  Brian Weinstein  <bweinstein@apple.com>
-
-        Rubber-stamped by Adam Roben.
-        
-        Touch MiniBrowser's stdafx to fix the build.
-
-        * MiniBrowser/win/stdafx.h:
-
-2010-07-26  Hayato Ito  <hayato@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Add pretty printer of WTF::Vector for GDB 7.
-
-        https://bugs.webkit.org/show_bug.cgi?id=40909
-
-        * gdb/wtf.py: Added.
-
-2010-07-26  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Fix feature detection regexp
-
-        We were missing the last feature
-
-        * Scripts/webkitdirs.pm:
-
-2010-07-25  Darin Adler  <darin@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        WebKitTestRunner needs to support layoutTestController.dumpSelectionRect
-        https://bugs.webkit.org/show_bug.cgi?id=42326
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        Added dumpSelectionRect.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (WTR::LayoutTestController::dumpSelectionRect): Added. For now, this
-        does nothing because its purpose is to change pixel test output and
-        we do not have pixel tests implemented yet.
-
-2010-07-25  Darin Adler  <darin@apple.com>
-
-        Reviewed by Maciej Stachowiak.
-
-        WebKitTestRunner needs to support layoutTestController.keepWebHistory
-        https://bugs.webkit.org/show_bug.cgi?id=42323
-
-        Added keepWebHistory and computedStyleIncludingVisitedInfo.
-
-        Also fixed misspellings of the word "receive".
-
-        Also tweaked the names of some of the LayoutTestController members.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/CodeGeneratorTestRunner.pm:
-        Added support for a type named "object" that is passed and returns as
-        a JSValueRef.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        Added keepWebHistory and computedStyleIncludingVisitedInfo. Also
-        put setAcceptsEditing up nearer the top.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::_didReceiveMessage): Fixed mispellings of receive.
-        (WTR::InjectedBundle::initialize): Ditto.
-        (WTR::InjectedBundle::didReceiveMessage): Ditto.
-        (WTR::InjectedBundle::reset): Reset the state of visited links between
-        tests. Also eliminated the unused argument to the LayoutTestController
-        create function.
-        (WTR::InjectedBundle::setShouldTrackVisitedLinks): Added.
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h: Ditto.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::shouldBeginEditing): Call shouldAllowEditing
-        instead of acceptsEditing.
-        (WTR::InjectedBundlePage::shouldEndEditing): Ditto.
-        (WTR::InjectedBundlePage::shouldInsertNode): Ditto.
-        (WTR::InjectedBundlePage::shouldInsertText): Ditto.
-        (WTR::InjectedBundlePage::shouldDeleteRange): Ditto.
-        (WTR::InjectedBundlePage::shouldChangeSelectedRange): Ditto.
-        (WTR::InjectedBundlePage::shouldApplyStyle): Ditto.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::create): Removed uneeded argument.
-        (WTR::LayoutTestController::LayoutTestController): Removed unneeded
-        argument. Updated for rename of m_acceptsEditing to m_shouldAllowEditing.
-        (WTR::LayoutTestController::numberOfActiveAnimations): Added some FIXMEs
-        about the fact that this works on the main frame.
-        (WTR::LayoutTestController::pauseAnimationAtTimeOnElementWithId): Ditto.
-        (WTR::LayoutTestController::keepWebHistory): Added.
-        (WTR::LayoutTestController::computedStyleIncludingVisitedInfo): Added.
-        (WTR::JSObjectSetProperty): Added. Helper to make the function below
-        cleaner.
-        (WTR::LayoutTestController::makeWindowObject): Changed to use the
-        overload of JSObjectSetProperty above.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h: Changes to
-        match above.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize): Fixed mispellings of receive.
-        (WTR::TestController::_didReceiveMessageFromInjectedBundle): Ditto.
-        (WTR::TestController::didReceiveMessageFromInjectedBundle): Ditto.
-        * WebKitTestRunner/TestController.h: Ditto.
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle): Ditto.
-        * WebKitTestRunner/TestInvocation.h: Ditto.
-
-2010-07-25  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        https://bugs.webkit.org/show_bug.cgi?id=42193
-        Support layoutTestController.dumpEditingDelegates in WebKitTestRunner
-
-        Step 2 - add the rest of editing delegates.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::operator<<): Fixed to not crash when range is null.
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        (WTR::InjectedBundlePage::_shouldEndEditing):
-        (WTR::InjectedBundlePage::_shouldInsertNode):
-        (WTR::InjectedBundlePage::_shouldInsertText):
-        (WTR::InjectedBundlePage::_shouldDeleteRange):
-        (WTR::InjectedBundlePage::_shouldChangeSelectedRange):
-        (WTR::InjectedBundlePage::_shouldApplyStyle):
-        (WTR::InjectedBundlePage::_didBeginEditing):
-        (WTR::InjectedBundlePage::_didEndEditing):
-        (WTR::InjectedBundlePage::_didChange):
-        (WTR::InjectedBundlePage::_didChangeSelection):
-        (WTR::InjectedBundlePage::shouldEndEditing):
-        (WTR::InjectedBundlePage::shouldInsertNode):
-        (WTR::InjectedBundlePage::shouldInsertText):
-        (WTR::InjectedBundlePage::shouldDeleteRange):
-        (WTR::InjectedBundlePage::shouldChangeSelectedRange):
-        (WTR::InjectedBundlePage::shouldApplyStyle):
-        (WTR::InjectedBundlePage::didBeginEditing):
-        (WTR::InjectedBundlePage::didEndEditing):
-        (WTR::InjectedBundlePage::didChange):
-        (WTR::InjectedBundlePage::didChangeSelection):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-
-2010-07-24  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by David Kilzer.
-
-        AX: need a layout test testing misspelled words in attributed strings
-        https://bugs.webkit.org/show_bug.cgi?id=42899
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (attributedStringForRangeCallback):
-        (attributedStringRangeIsMisspelledCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::attributedStringForRange):
-        (AccessibilityUIElement::attributedStringRangeIsMisspelled):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::attributedStringForRange):
-        (AccessibilityUIElement::attributedStringRangeIsMisspelled):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::attributedStringForRange):
-        (AccessibilityUIElement::attributedStringRangeIsMisspelled):
-
-2010-07-23  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/42911> Update ruby tools to work with shallow framework bundles
-
-        Reviewed by Mark Rowe.
-
-        * Scripts/check-for-inappropriate-files-in-framework: Added
-        check for the SHALLOW_BUNDLE environment variable so that the
-        script will work with iOS WebKit builds.
-        * Scripts/check-for-webkit-framework-include-consistency: Ditto.
-
-2010-07-22  Darin Adler  <darin@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Eliminate unneeded WKBundleFrameCopyInnerText function from WebKit2
-        https://bugs.webkit.org/show_bug.cgi?id=42847
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::operator<<): Replaced the WKStringToUTF8 function with
-        a set of overloaded stream operators.
-        (WTR::dumpPath): Changed to use ostringstream and return a string.
-        (WTR::propertyValue): Added.
-        (WTR::propertyObject): Added.
-        (WTR::propertyString): Added.
-        (WTR::numericWindowPropertyValue): Changed to call propertyValue.
-        (WTR::dumpFrameScrollPosition): Removed now unneeded WKStringToUTF8 sequence
-        since we now have suitable streaming functions.
-        (WTR::dumpFrameText): Use propertyObject and propertyString instead of
-        WKBundleFrameCopyInnerText.
-        (WTR::dumpDescendantFramesText): Removed now unneeded WKStringToUTF8 sequence
-        since we now have suitable streaming functions.
-        (WTR::InjectedBundlePage::dump): Ditto.
-        (WTR::InjectedBundlePage::willAddMessageToConsole): Ditto.
-        (WTR::InjectedBundlePage::willSetStatusbarText): Ditto.
-        (WTR::InjectedBundlePage::willRunJavaScriptAlert): Ditto.
-        (WTR::InjectedBundlePage::willRunJavaScriptConfirm): Ditto.
-        (WTR::InjectedBundlePage::willRunJavaScriptPrompt): Ditto.
-
-2010-07-22  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Sam Weinig and Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=42193
-        Support layoutTestController.dumpEditingDelegates in WebKitTestRunner
-
-        Step 1: Add the method, and implement one actual delegate call as proof of concept. No tests
-        fixed, but this makes difference one line smaller on many editing tests.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        Added dumpEditingCallbacks() and setAcceptsEditing().
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::dumpPath): Dump path to a node in a format that's compatible with DumpRenderTree.
-        (WTR::operator<<): Print a range.
-        (WTR::InjectedBundlePage::InjectedBundlePage): Set editor client in addition to existing
-        clients.
-        (WTR::InjectedBundlePage::_shouldBeginEditing): The only client method implemented so far.
-        (WTR::InjectedBundlePage::shouldBeginEditing): Ditto.
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h: Added a section for editor client
-        calls.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::LayoutTestController):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (WTR::LayoutTestController::dumpEditingCallbacks):
-        (WTR::LayoutTestController::setAcceptsEditing):
-        (WTR::LayoutTestController::acceptsEditing):
-        (WTR::LayoutTestController::shouldDumpEditingCallbacks):
-        Store m_acceptsEditing and m_dumpEditingCallbacks.
-
-2010-07-22  Yael Aharon  <yael.aharon@nokia.com>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt] QtWebKit needs public API for Notifications.
-        https://bugs.webkit.org/show_bug.cgi?id=41413
-
-        Update DumpRenderTree and QtTestBrowser to use the new API.
-        Add new DRT API to flag that notifications permission requests should be ignored.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::WebPage):
-        (WebCore::WebPage::requestPermission):
-        (WebCore::WebPage::checkPermission):
-        (WebCore::WebPage::cancelRequestsForPermission):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::ignoreDesktopNotificationPermissionRequests):
-        (LayoutTestController::checkDesktopNotificationPermission):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController::ignoreReqestForPermission):
-        * QtTestBrowser/main.cpp:
-        (LauncherWindow::LauncherWindow):
-        * QtTestBrowser/webpage.cpp:
-        (WebPage::WebPage):
-        (WebPage::requestPermission):
-        (WebPage::checkPermission):
-        (WebPage::cancelRequestsForPermission):
-        * QtTestBrowser/webpage.h:
-
-2010-07-22  Darin Adler  <darin@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        WebKitTestRunner needs to support layoutTestController.dumpChildFramesAsText
-        https://bugs.webkit.org/show_bug.cgi?id=42325
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        Added dumpChildFramesAsText.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::dumpFrameText): Added.
-        (WTR::dumpDescendantFramesText): Added.
-        (WTR::InjectedBundlePage::dumpAllFramesText): Added.
-        (WTR::InjectedBundlePage::dump): Changed to use the new whatToDump function
-        instead of the shouldDumpAsText function, and added a case for AllFramesText.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h: Added dumpAllFramesText.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::LayoutTestController): Replaced m_dumpAsText with
-        m_whatToDump.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h: Added
-        dumpChildFramesAsText. Removed shouldDumpAsText, shouldDumpDOMAsWebArchive,
-        and shouldDumpSourceAsWebArchive. Added whatToDump.
-
-2010-07-22  Adam Roben  <aroben@apple.com>
-
-        Windows build fix
-
-        Inspired by r63881.
-
-        * MiniBrowser/MiniBrowser.vcproj:
-        * WebKitTestRunner/InjectedBundle/win/InjectedBundle.vcproj:
-        Removed pre- and post-build events so they will be inherited from the
-        vsprops files.
-
-2010-07-21  Darin Adler  <darin@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        WebKitTestRunner needs layoutTestController.dumpChildFrameScrollPositions
-        https://bugs.webkit.org/show_bug.cgi?id=42548
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::numericWindowPropertyValue): Renamed this and moved it up higher in the file.
-        (WTR::dumpFrameScrollPosition): Added argument telling whether to dump the frame name.
-        Changed to a file-internal function instead of a member function.
-        (WTR::dumpDescendantFrameScrollPositions): Added.
-        (WTR::InjectedBundlePage::dumpAllFrameScrollPositions): Added.
-        (WTR::InjectedBundlePage::dump): Changed to call dumpAllFrameScrollPositions when
-        appropriate. Also streamlined all the WKStringToUTF8 call sites.
-        (WTR::InjectedBundlePage::willAddMessageToConsole): Streamlined use of WKStringToUTF8.
-        (WTR::InjectedBundlePage::willSetStatusbarText): Ditto.
-        (WTR::InjectedBundlePage::willRunJavaScriptAlert): Ditto.
-        (WTR::InjectedBundlePage::willRunJavaScriptConfirm): Ditto.
-        (WTR::InjectedBundlePage::willRunJavaScriptPrompt): Ditto.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h: Updated for above changes.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::LayoutTestController): Initialize
-        m_shouldDumpAllFrameScrollPositions.
-        (WTR::LayoutTestController::shouldDumpMainFrameScrollPosition): Renamed from
-        shouldDumpFrameScrollPositions.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h: Reorganized the file a
-        bit, added dumpChildFrameScrollPositions and shouldDumpAllFrameScrollPositions,
-        and renamed shouldDumpFrameScrollPositions to shouldDumpMainFrameScrollPosition.
-
-2010-07-21  Darin Adler  <darin@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        WebKitTestRunner needs to support dumping of scroll position
-        https://bugs.webkit.org/show_bug.cgi?id=42514
-
-        * MiniBrowser/mac/WebBundle/WebBundleMain.m:
-        (_didClearWindowForFrame): Use JSGlobalContextRef instead of JSContextRef.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::_didClearWindowForFrame): Use JSGlobalContextRef
-        instead of JSContextRef.
-        (WTR::InjectedBundlePage::dump): Call dumpFrameScrollPosition when appropriate.
-        (WTR::numericWindowProperty): Added. Helper for dumpFrameScrollPosition.
-        (WTR::InjectedBundlePage::dumpFrameScrollPosition): Added.
-        (WTR::InjectedBundlePage::didClearWindowForFrame): Use JSGlobalContextRef
-        instead of JSContextRef.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h: Removed names from
-        arguments that simply repeat the argument type. Added dumpFrameScrollPosition.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::shouldDumpDOMAsWebArchive): Added. Currently
-        returns false.
-        (WTR::LayoutTestController::shouldDumpSourceAsWebArchive): Added. Currently
-        returns false.
-        (WTR::LayoutTestController::shouldDumpFrameScrollPositions): Added. Matches
-        the logic in DumpRenderTree.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h: Updated for above changes.
-
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj: Added property svn:ignore.
-
-2010-07-21  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix, adding the WebCore/bindings/generic dir to the list of build dirs.
-
-        * wx/build/settings.py:
-
-2010-07-21  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Patch for https://bugs.webkit.org/show_bug.cgi?id=42539
-        WebKitTestRunner needs to support printing ALERT, PROMPT and CONFIRM messages
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        (WTR::InjectedBundlePage::_willAddMessageToConsole):
-        (WTR::InjectedBundlePage::_willSetStatusbarText):
-        (WTR::InjectedBundlePage::_willRunJavaScriptAlert):
-        (WTR::InjectedBundlePage::_willRunJavaScriptConfirm):
-        (WTR::InjectedBundlePage::_willRunJavaScriptPrompt):
-        (WTR::InjectedBundlePage::willAddMessageToConsole):
-        (WTR::InjectedBundlePage::willSetStatusbarText):
-        (WTR::InjectedBundlePage::willRunJavaScriptAlert):
-        (WTR::InjectedBundlePage::willRunJavaScriptConfirm):
-        (WTR::InjectedBundlePage::willRunJavaScriptPrompt):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-
-2010-07-21  Adam Roben  <aroben@apple.com>
-
-        Give InjectedBundle our standard set of configurations (minus the
-        *_Cairo variants)
-
-        InjectedBundle's Debug_All configuration was the same as is Debug
-        configuration, and it was missing a Debug_Internal configuration.
-
-        Fixes <http://webkit.org/b/42749> InjectedBundle's build
-        configurations are screwy
-
-        Reviewed by Darin Adler.
-
-        * WebKitTestRunner/InjectedBundle/win/InjectedBundle.vcproj: Added
-        debug_internal.vsprops and debug_all.vsprops to the Debug_All
-        configuration. Added a Debug_Internal configuration.
-
-        * WebKitTestRunner/WebKitTestRunner.sln: Build the Debug_Internal
-        variant of InjectedBundle when we're using the Debug_Internal solution
-        configuration.
-
-2010-07-21  Adam Roben  <aroben@apple.com>
-
-        Move InjectedBundle's settings to a vsprops file
-
-        This will make it easier to change settings for all configurations,
-        and to add new configurations.
-
-        Fixes <http://webkit.org/b/42748> InjectedBundle should use vsprops
-        files
-
-        Reviewed by Darin Adler.
-
-        * WebKitTestRunner/Configurations/InjectedBundleCommon.vsprops: Added.
-        Moved settings here...
-        * WebKitTestRunner/InjectedBundle/win/InjectedBundle.vcproj: ...from
-        here.
-
-2010-07-21  Adam Roben  <aroben@apple.com>
-
-        Give MiniBrowser our standard set of configurations (minus the *_Cairo
-        variants)
-
-        MiniBrowser already had a configuration called "Release", but it was
-        using mostly the same settings as Debug. And its Debug configuration
-        was using the settings that Debug_Internal should be using.
-
-        Fixes <http://webkit.org/b/42746> MiniBrowser's build configurations
-        are screwy
-
-        Reviewed by Darin Adler.
-
-        * MiniBrowser/MiniBrowser.vcproj: Removed debug_internal.vsprops from
-        the Debug configuration. Remove debug.vsprops and
-        debug_internal.vsprops from the Release configuration and replace them
-        with release.vsprops. Added Debug_Internal and Debug_All
-        configurations.
-
-2010-07-21  Adam Roben  <aroben@apple.com>
-
-        Move MiniBrowser's settings to a vsprops file
-
-        This will make it easier to change settings for all configurations,
-        and to add new configurations.
-
-        MiniBrowser should use vsprops files
-        https://bugs.webkit.org/show_bug.cgi?id=42745
-
-        Reviewed by Darin Adler.
-
-        * MiniBrowser/Configurations/MiniBrowserCommon.vsprops: Added. Moved
-        settings here...
-        * MiniBrowser/MiniBrowser.vcproj: ...from here.
-
-2010-07-21  Adam Roben  <aroben@apple.com>
-
-        Fix compiler warnings when building MiniBrowser
-
-        Also cleaned up the .vcproj a bit.
-
-        Fixes <http://webkit.org/b/42743>.
-
-        Reviewed by Darin Adler.
-
-        * MiniBrowser/MiniBrowser.vcproj: Removed all settings that are
-        already defined in .vsprops files. This also fixes a warning about
-        /EDITANDCONTINUE being incompatible with /SAFESEH.
-
-        * MiniBrowser/win/MiniBrowser.rc: Replaced afxres.h with winresrc.h so
-        that we stop getting warnings about ID_FILE_OPEN and ID_FILE_CLOSE
-        being redefined. (I think this will also get us closer to building
-        with VC++ Express.)
-
-2010-07-20  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Jon Honeycutt.
-
-        Fix obvious typo.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::setStatusbarText): Need to call ->data() to actually get the string value.
-
-2010-07-20  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [chromium] by default, dumpAsText should disable pixel results
-        https://bugs.webkit.org/show_bug.cgi?id=42715
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::dumpAsText): disable pixel results, but allow JS to override
-
-2010-07-20  Adam Roben  <aroben@apple.com>
-
-        Windows build fix
-
-        * MiniBrowser/MiniBrowser.vcproj: Link against the new, shiny
-        WebKit.lib instead of the old, dusty WebKit2.lib.
-
-2010-07-20  Adam Roben  <aroben@apple.com>
-
-        Stop linking WebKitTestRunner against getopt
-
-        Use of getopt was removed in r63700.
-
-        Fixes <http://webkit.org/b/42714> WebKitTestRunner links against
-        getopt, but doesn't need to
-
-        Reviewed by Sam Weinig.
-
-        * WebKitTestRunner/win/WebKitTestRunner.vcproj: Removed getopt.lib
-        from all configurations.
-
-2010-07-20  Adam Roben  <aroben@apple.com>
-
-        Make run-webkit-tests --webkit-test-runner "work" on Windows
-
-        WebKitTestRunner crashes on launch, but at least the scripts build and
-        launch it!
-
-        Fixes <http://webkit.org/b/42709> run-webkit-tests
-        --webkit-test-runner bails with an error on Windows
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/build-webkittestrunner: Build WebKitTestRunner.sln on
-        Windows.
-        * WebKitTestRunner/WebKitTestRunner.sln: Added. Contains the following
-        projects (from first-built to last-built): FindSafari, ImageDiff,
-        InjectedBundleGenerated, InjectedBundle, WebKitTestRunner.
-
-2010-07-20  Adam Roben  <aroben@apple.com>
-
-        Change build-webkit back to building WebKit.sln on Windows
-
-        WebKit.sln builds all the same projects as WebKit2.sln, and the latter
-        is being removed.
-
-        Rubber-stamped in advance by Steve Falkenburg.
-
-        * Scripts/build-webkit:
-
-2010-07-20  Adam Roben  <aroben@apple.com>
-
-        Windows build fix
-
-        * MiniBrowser/win/BrowserWindow.cpp: Added missing #include.
-
-2010-07-20  Joseph Pecoraro  <joepeck@webkit.org>
-
-        Reviewed by Geoffrey Garen.
-
-        WebScriptObject Should Allow Safely Checking For Key Existence
-        https://bugs.webkit.org/show_bug.cgi?id=42613
-
-        Normal ObjCController workflow for a WebScriptObject test.
-
-        * DumpRenderTree/mac/ObjCController.m:
-        (+[ObjCController isSelectorExcludedFromWebScript:]):
-        (+[ObjCController webScriptNameForSelector:]):
-        (-[ObjCController testHasWebScriptKey:]):
-
-2010-07-20  Chris Marrin  <cmarrin@apple.com>
-
-        Reviewed by Simon Fraser.
-
-        https://bugs.webkit.org/show_bug.cgi?id=42118
-        Disable compositing/webgl tests if WebGL is not enabled
-
-        * Scripts/old-run-webkit-tests:
-
-2010-07-20  Anton Muhin  <antonm@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        Print additional information about exception if failed to connect to apache (in verbose mode).
-        https://bugs.webkit.org/show_bug.cgi?id=42627
-
-        * Scripts/webkitpy/layout_tests/port/http_server_base.py:
-
-2010-07-20  Tony Chang  <tony@chromium.org>
-
-        Reviewed by David Levin.
-
-        [chromium] only pass --force to gclient sync if explicitly stated
-        https://bugs.webkit.org/show_bug.cgi?id=42581
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: bots should
-              always pass --force since it's hard to do manual cleanups
-        * Scripts/update-webkit-chromium: only pass --force if --force is
-              passed in
-
-2010-07-19  Anders Carlsson  <andersca@apple.com>
-
-        Fix build.
-
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-        Paths of generated files should be relative to the build product.
-
-2010-07-19  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Adam Roben.
-
-        [Win] Implement LayoutTestController::markerTextForListItem()
-        https://bugs.webkit.org/show_bug.cgi?id=37930
-
-        Implements DRT support for markerTextForListItem in the Windows port.
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::markerTextForListItem): Implemented.
-
-2010-07-19  Jessie Berlin  <jberlin@apple.com>
-
-        Windows build fix. Unreviewed.
-
-        * WebKitTestRunner/win/TestControllerWin.cpp:
-        (WTR::TestController::initializeTestPluginPath):
-
-2010-07-19  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Jon Honeycutt.
-
-        Remove dependency on getopt from WebKitTestRunner.
-
-        - Simplify options parsing and eliminate unused options.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::TestController):
-        (WTR::TestController::initialize):
-        * WebKitTestRunner/TestController.h:
-        (WTR::TestController::testPluginPath):
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-        * WebKitTestRunner/mac/TestControllerMac.mm:
-        (WTR::TestController::platformInitialize):
-        (WTR::TestController::initializeTestPluginPath):
-        * WebKitTestRunner/win/TestControllerWin.cpp:
-        (WTR::TestController::platformInitialize):
-        (WTR::TestController::initializeTestPluginPath):
-
-2010-07-19  Diego Gonzalez  <diegohcg@webkit.org>
-
-        Reviewed by Antonio Gomes.
-
-        [Qt] MiniBrowser: Progress indication at address bar
-        https://bugs.webkit.org/show_bug.cgi?id=42565
-
-        Make possible to see load progress at address bar based on
-        QtTestBrowser solution
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::loadProgress):
-        * MiniBrowser/qt/BrowserWindow.h:
-
-2010-07-19  Diego Gonzalez  <diegohcg@webkit.org>
-
-        Reviewed by Antonio Gomes.
-
-        [Qt] Add MiniBrowser features: urlChanged, titleChanged and from user input load
-        https://bugs.webkit.org/show_bug.cgi?id=42564
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserView::load):
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::titleChanged):
-        (BrowserWindow::urlChanged):
-        * MiniBrowser/qt/BrowserWindow.h:
-
-2010-07-19  Sam Weinig  <weinig@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Patch for https://bugs.webkit.org/show_bug.cgi?id=42532
-        Auto-generate the JS bindings for WebKitTestRunner's script objects.
-
-        * WebKitTestRunner/Configurations/Base.xcconfig:
-        * WebKitTestRunner/Configurations/DebugRelease.xcconfig:
-        * WebKitTestRunner/DerivedSources.make: Added.
-        * WebKitTestRunner/ForwardingHeaders/wtf/GetPtr.h: Added.
-        * WebKitTestRunner/InjectedBundle/Bindings: Added.
-        * WebKitTestRunner/InjectedBundle/Bindings/CodeGeneratorTestRunner.pm: Added.
-        * WebKitTestRunner/InjectedBundle/Bindings/JSWrappable.h: Added.
-        (WTR::JSWrappable::~JSWrappable):
-        * WebKitTestRunner/InjectedBundle/Bindings/JSWrapper.cpp: Added.
-        (WTR::JSWrapper::wrap):
-        (WTR::JSWrapper::unwrap):
-        (WTR::unwrapObject):
-        (WTR::JSWrapper::initialize):
-        (WTR::JSWrapper::finalize):
-        * WebKitTestRunner/InjectedBundle/Bindings/JSWrapper.h: Added.
-        (WTR::toJS):
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl: Added.
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::dump):
-        (WTR::InjectedBundlePage::setStatusbarText):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::wrapperClass):
-        (WTR::LayoutTestController::waitUntilDone):
-        (WTR::LayoutTestController::makeWindowObject):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (WTR::LayoutTestController::shouldDumpAsText):
-        (WTR::LayoutTestController::dumpAsText):
-        (WTR::LayoutTestController::shouldDumpStatusCallbacks):
-        (WTR::LayoutTestController::dumpStatusCallbacks):
-        (WTR::LayoutTestController::waitToDump):
-        (WTR::LayoutTestController::testRepaint):
-        (WTR::LayoutTestController::repaintSweepHorizontally):
-        * WebKitTestRunner/InjectedBundle/win/InjectedBundle.vcproj:
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-        * WebKitTestRunner/win/InjectedBundleGenerated.vcproj: Added.
-        * WebKitTestRunner/win/build-generated-files.sh: Added.
-
-2010-07-19  Mark Rowe  <mrowe@apple.com>
-
-        Clean up the buildbot configuration a little.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2010-07-19  Chris Marrin  <cmarrin@apple.com>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=42118
-        Disable WebGL on Leopard for now. 
-
-        LayoutTests fail on some graphics hardware on Leopard because one of the features we use,
-        GL_ARB_framebuffer_object, is not universally available in Leopard like it is in
-        SnowLeopard. This will allow LayoutTests to pass on Leopard until we add logic to use a
-        software OpenGL driver on machines without this support.
-
-        * Scripts/build-webkit:
-
-2010-07-19  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Brady Eidson.
-
-        Fix MiniBrowser to update URL as you browse
-        https://bugs.webkit.org/show_bug.cgi?id=42591
-        
-        Hook up various loading notifications to update the URL bar in MiniBrowser.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (_didStartProvisionalLoadForFrame):
-        (_didReceiveServerRedirectForProvisionalLoadForFrame):
-        (_didFailProvisionalLoadWithErrorForFrame):
-        (_didCommitLoadForFrame):
-        (_didFailLoadWithErrorForFrame):
-        (-[BrowserWindowController updateProvisionalURLForFrame:]):
-        (-[BrowserWindowController didStartProvisionalLoadForFrame:]):
-        (-[BrowserWindowController didReceiveServerRedirectForProvisionalLoadForFrame:]):
-        (-[BrowserWindowController didFailProvisionalLoadWithErrorForFrame:]):
-        (-[BrowserWindowController didFailLoadWithErrorForFrame:]):
-        (-[BrowserWindowController didCommitLoadForFrame:]):
-
-2010-07-19  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=42586
-        Log all canceled authentication attempts in DumpRenderTree
-
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        (-[ResourceLoadDelegate webView:resource:didReceiveAuthenticationChallenge:fromDataSource:]):
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp:
-        (ResourceLoadDelegate::didReceiveAuthenticationChallenge):
-        It's important to know whether an auth sheet appeared. Added logging to "no preset credentials"
-        case.
-
-2010-07-19  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r63671.
-        http://trac.webkit.org/changeset/63671
-        https://bugs.webkit.org/show_bug.cgi?id=42575
-
-        broke windows (Requested by weinig on #webkit).
-
-        * WebKitTestRunner/Configurations/Base.xcconfig:
-        * WebKitTestRunner/Configurations/DebugRelease.xcconfig:
-        * WebKitTestRunner/DerivedSources.make: Removed.
-        * WebKitTestRunner/ForwardingHeaders/wtf/GetPtr.h: Removed.
-        * WebKitTestRunner/InjectedBundle/Bindings/CodeGeneratorTestRunner.pm: Removed.
-        * WebKitTestRunner/InjectedBundle/Bindings/JSWrappable.h: Removed.
-        * WebKitTestRunner/InjectedBundle/Bindings/JSWrapper.cpp: Removed.
-        * WebKitTestRunner/InjectedBundle/Bindings/JSWrapper.h: Removed.
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl: Removed.
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::dump):
-        (WTR::InjectedBundlePage::setStatusbarText):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::setWaitToDump):
-        (WTR::displayCallback):
-        (WTR::dumpAsTextCallback):
-        (WTR::dumpStatusCallbacksCallback):
-        (WTR::waitUntilDoneCallback):
-        (WTR::notifyDoneCallback):
-        (WTR::numberOfActiveAnimationsCallback):
-        (WTR::pauseAnimationAtTimeOnElementWithIdCallback):
-        (WTR::repaintSweepHorizontallyCallback):
-        (WTR::testRepaintCallback):
-        (WTR::layoutTestControllerObjectFinalize):
-        (WTR::LayoutTestController::makeWindowObject):
-        (WTR::LayoutTestController::getJSClass):
-        (WTR::LayoutTestController::staticFunctions):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (WTR::LayoutTestController::dumpAsText):
-        (WTR::LayoutTestController::setDumpAsText):
-        (WTR::LayoutTestController::dumpStatusCallbacks):
-        (WTR::LayoutTestController::setDumpStatusCallbacks):
-        (WTR::LayoutTestController::setTestRepaint):
-        (WTR::LayoutTestController::setTestRepaintSweepHorizontally):
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-
-2010-07-19  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Patch for https://bugs.webkit.org/show_bug.cgi?id=42532
-        Auto-generate the JS bindings for WebKitTestRunner's script objects.
-
-        * WebKitTestRunner/Configurations/Base.xcconfig:
-        * WebKitTestRunner/Configurations/DebugRelease.xcconfig:
-        * WebKitTestRunner/DerivedSources.make: Added.
-        * WebKitTestRunner/ForwardingHeaders/wtf/GetPtr.h: Added.
-        * WebKitTestRunner/InjectedBundle/Bindings: Added.
-        * WebKitTestRunner/InjectedBundle/Bindings/CodeGeneratorTestRunner.pm: Added.
-        * WebKitTestRunner/InjectedBundle/Bindings/JSWrappable.h: Added.
-        (WTR::JSWrappable::~JSWrappable):
-        * WebKitTestRunner/InjectedBundle/Bindings/JSWrapper.cpp: Added.
-        (WTR::JSWrapper::wrap):
-        (WTR::JSWrapper::unwrap):
-        (WTR::unwrapObject):
-        (WTR::JSWrapper::initialize):
-        (WTR::JSWrapper::finalize):
-        * WebKitTestRunner/InjectedBundle/Bindings/JSWrapper.h: Added.
-        (WTR::toJS):
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl: Added.
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::dump):
-        (WTR::InjectedBundlePage::setStatusbarText):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::wrapperClass):
-        (WTR::LayoutTestController::waitUntilDone):
-        (WTR::LayoutTestController::makeWindowObject):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (WTR::LayoutTestController::shouldDumpAsText):
-        (WTR::LayoutTestController::dumpAsText):
-        (WTR::LayoutTestController::shouldDumpStatusCallbacks):
-        (WTR::LayoutTestController::dumpStatusCallbacks):
-        (WTR::LayoutTestController::waitToDump):
-        (WTR::LayoutTestController::testRepaint):
-        (WTR::LayoutTestController::repaintSweepHorizontally):
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-
-2010-07-19  Tony Chang  <tony@chromium.org>
-
-        Reviewed by David Levin.
-
-        fix chromium linux compile on ubuntu maverick
-        https://bugs.webkit.org/show_bug.cgi?id=42528
-
-        * Scripts/webkitdirs.pm: add a chomp to eat a newline that breaks the make command line
-
-2010-07-19  Adam Roben  <aroben@apple.com>
-
-        When dumping a response's MIME type, print its URL's last path
-        component rather than its suitable-for-test-result form
-
-        This matches the Mac behavior.
-
-        Fixes <http://webkit.org/b/42276>
-        http/tests/loading/preload-slow-loading.php and
-        http/tests/mime/uppercase-mime-type.html fail on Windows
-
-        Reviewed by Anders Carlsson.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (urlSuitableForTestResult): Moved code to actually extract the last
-        path component from here...
-        (lastPathComponent): ...to here.
-
-        * DumpRenderTree/win/DumpRenderTreeWin.h: Added lastPathComponent.
-
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp:
-        (ResourceLoadDelegate::didReceiveResponse): Use the URL's last path
-        component, rather than its suitable-for-test-result form, to match
-        Mac.
-
-2010-07-19  Anders carlsson  <andersca@apple.com>
-
-        Reviewed by Adam Roben.
-
-        WebKit2 does not have application cache
-        https://bugs.webkit.org/show_bug.cgi?id=42552
-
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::resetPreferencesToConsistentValues):
-        Set up default preferences. Right now just enables the web application cache.
-
-        (WTR::TestInvocation::invoke):
-        Call resetPreferencesToConsistentValues.
-
-        * WebKitTestRunner/TestInvocation.h:
-
-2010-07-19  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Adam Roben.
-
-        Fix NewRunWebKitTests to work on Windows.
-        https://bugs.webkit.org/show_bug.cgi?id=41180
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-          Specifying python explicitly.
-
-2010-07-18  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        Add dumping of statusbar text to WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=42516
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        (WTR::InjectedBundlePage::_setStatusbarText):
-        (WTR::InjectedBundlePage::setStatusbarText):
-        Dump the statusbar text.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::LayoutTestController):
-        Initialize m_dumpStatusCallbacks to false.
-
-        (WTR::dumpStatusCallbacksCallback):
-        Implement JSC callback.
-
-        (WTR::LayoutTestController::staticFunctions):
-        Add dumpStatusCallbacks.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (WTR::LayoutTestController::dumpStatusCallbacks):
-        (WTR::LayoutTestController::setDumpStatusCallbacks):
-        Add setter and getter for m_dumpStatusCallbacks.
-
-2010-07-17  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Maciej Stachowiak.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-        Get the test plug-in path and set it on the context.
-
-        * WebKitTestRunner/TestController.h:
-        * WebKitTestRunner/mac/TestControllerMac.mm:
-        (WTR::TestController::initializeInjectedBundlePath):
-        Simplify this code by using NSBundle.
-
-        (WTR::TestController::testPluginPath):
-        Return the test plug-in path.
-
-        * WebKitTestRunner/win/TestControllerWin.cpp:
-        (WTR::TestController::testPluginPath):
-        Ditto.
-
-2010-07-16  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Teach webkitpy about queues.webkit.org
-        https://bugs.webkit.org/show_bug.cgi?id=42492
-
-        * Scripts/webkitpy/common/net/statusserver.py:
-
-2010-07-16  Ada Chan  <adachan@apple.com>
-
-        Reviewed by Alice Liu.
-
-        Fix Windows build.
-
-        * WebKitTestRunner/InjectedBundle/win/InjectedBundle.vcproj:
-
-2010-07-16  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Fix for https://bugs.webkit.org/show_bug.cgi?id=42482
-        <rdar://problem/8197701>
-        Add notification of when the BackForwardList changes
-        to aid invalidation of Back/Forward related UI elements.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (_didStartProvisionalLoadForFrame):
-        (_didCommitLoadForFrame):
-        (_didFailLoadWithErrorForFrame):
-        (_didChangeBackForwardList):
-        (-[BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-
-2010-07-16  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Darin Fisher.
-
-        [Chromium] <input type=number> UI implementation for Windows
-        https://bugs.webkit.org/show_bug.cgi?id=42259
-
-        * DumpRenderTree/chromium/WebThemeEngineDRT.cpp:
-        (WebThemeEngineDRT::paintSpinButton):
-         Added. Check state consistency and use existing arrow painting code.
-        * DumpRenderTree/chromium/WebThemeEngineDRT.h:
-
-2010-07-16  Alice Liu  <alice.liu@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        https://bugs.webkit.org/show_bug.cgi?id=42430
-        Make WebKitTestRunner on Windows actually load and run a test
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundleMain.cpp: Export WKBundleInitialize.
-        (WKBundleInitialize):
-        * WebKitTestRunner/InjectedBundle/win/InjectedBundle.vcproj: Added.  Output is a dll.
-        * WebKitTestRunner/TestInvocation.cpp: Create a Windows-style path on Windows
-        (WTR::createWKURL):
-        * WebKitTestRunner/WebKitTestRunnerPrefix.h: Change check for Windows platform to match
-        other existing checks, and avoid including Platform.h
-        * WebKitTestRunner/win/PlatformWebViewWin.cpp:
-        (WTR::registerWindowClass): Added.
-        (WTR::PlatformWebView::PlatformWebView): Implemented.
-        (WTR::PlatformWebView::~PlatformWebView): Implemented.
-        (WTR::PlatformWebView::page): Implemented.
-        * WebKitTestRunner/win/TestControllerWin.cpp:
-        (WTR::TestController::initializeInjectedBundlePath): Implemented. Provide build 
-        configuration specific path to InjectedBundle.dll.
-        * WebKitTestRunner/win/TestInvocationWin.cpp:
-        (WTR::TestInvocation::runUntil): Implemented.
-        * WebKitTestRunner/win/WebKitTestRunner.sln: Added InjectedBundle project.
-        * WebKitTestRunner/win/WebKitTestRunner.vcproj: Cleaned up unnecessary dependencies.
-
-2010-07-16  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Make revalidation of back/forward work a little better with page loads
-        https://bugs.webkit.org/show_bug.cgi?id=42470
-
-        * MiniBrowser/mac/BrowserWindow.xib:
-        * MiniBrowser/mac/BrowserWindowController.h:
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController validateToolbar]):
-        (_didStartProvisionalLoadForFrame):
-        (_didCommitLoadForFrame):
-        (_didFailLoadWithErrorForFrame):
-
-2010-07-16  Nikolas Zimmermann  <nzimmermann@rim.com>
-
-        Reviewed by Dirk Schulze.
-
-        Add possibility to dumpAsText and generate a pixel test result
-        https://bugs.webkit.org/show_bug.cgi?id=42374
-
-        Add optional parameter to setDumpAsText() to allow generating a pixel test result even if dumpAsText mode.
-        setDumpAsText(true) will also generate a pixel test result now, when running run-webkit-tests --pixel-tests.
-
-        This is needed for the svg/dynamic-updates tests, which don't want render tree dumps but text dumps + a pixel test result.
-        At some point DRT changed to not generate pixel test results when using dumpAsText - which makes sense, but breaks the svg/dynamic-updates test.
-
-        Implemented for all DRT platforms, except Qt, as it's not clear how arguments to functions like "setDumpAsText" are handled.
-        (Qt always dumps pixel tests when using --pixel-tests mode, so it does not break anything)
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (dumpAsTextAndPixelsCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::dumpAsTextAndPixels):
-        (LayoutTestController::setDumpAsTextAndPixels):
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::dumpAsTextAndPixels):
-        (LayoutTestController::reset):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController::shouldDumpAsTextAndPixels):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::dump):
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (dump):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dump):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::dump):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (dump):
-        * DumpRenderTree/wx/DumpRenderTreeWx.cpp:
-        (dump):
-
-2010-07-16  Kent Hansen  <kent.hansen@nokia.com>
-
-        Unreviewed. Adding myself as committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-07-16  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Another uneviewed attempt to fix build.
-
-        Printing test results differ between machines, we should use ImageDiff instead
-        https://bugs.webkit.org/show_bug.cgi?id=20011
-
-        * DumpRenderTree/mac/PixelDumpSupportMac.mm:
-        (createPagedBitmapContext):
-
-2010-07-16  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Unreviewed tiger build fix.
-
-        Printing test results differ between machines, we should use ImageDiff instead
-        https://bugs.webkit.org/show_bug.cgi?id=20011
-
-        * DumpRenderTree/mac/PixelDumpSupportMac.mm:
-        (createBitmapContext):
-        (createBitmapContextFromWebView):
-
-2010-07-15  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Unreviewed build fix.
-
-        Printing test results differ between machines, we should use ImageDiff instead
-        https://bugs.webkit.org/show_bug.cgi?id=20011
-
-        * DumpRenderTree/PixelDumpSupport.cpp:
-        (dumpWebViewAsPixelsAndCompareWithExpected):
-
-2010-07-15  Shinichiro Hamaji  <hamaji@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        Printing test results differ between machines, we should use ImageDiff instead
-        https://bugs.webkit.org/show_bug.cgi?id=20011
-
-        * DumpRenderTree/PixelDumpSupport.cpp:
-        (dumpWebViewAsPixelsAndCompareWithExpected):
-        * DumpRenderTree/PixelDumpSupport.h:
-        * DumpRenderTree/mac/PixelDumpSupportMac.mm:
-        (createBitmapContext): This function was added to share bitmap context creation code.
-        (createBitmapContextFromWebView):
-        (createPagedBitmapContext):
-
-2010-07-15  Yuta Kitamura  <yutak@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        Pull in pywebsocket-0.5.1
-        https://bugs.webkit.org/show_bug.cgi?id=42353
-
-        pywebsocket-0.5.1 contains a small bug fix (*) that should fix a worker test
-        in Chromium. There is no other functional change.
-
-        (*) http://code.google.com/p/pywebsocket/source/detail?r=265
-
-        * Scripts/webkitpy/thirdparty/__init__.py: Bump pywebsocket version to 0.5.1.
-
-2010-07-15  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Add toolbar and toolbar item validation for MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=42422
-
-        * MiniBrowser/MBToolbarItem.h: Added.
-        * MiniBrowser/MBToolbarItem.m: Added.
-        (-[MBToolbarItem validate]):
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController validateUserInterfaceItem:]):
-
-        * MiniBrowser/MiniBrowser.xcodeproj/project.pbxproj:
-        * MiniBrowser/mac/BrowserWindow.xib:
-
-2010-07-15  Victor Wang  <victorw@chromium.org>
-
-        Unreviewed, add victorw irc nickname to committer list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-07-15  Adam Roben  <aroben@apple.com>
-
-        Make killing Apache more reliable (on both Mac and Windows)
-
-        We previously had two ways of determining whether we had succeeded in
-        killing Apache:
-          1) checking the return value of kill(0, $apachePID)
-          2) checking whether Apache's PID file still exists
-
-        On Cygwin, Apache doesn't always delete its PID file when it exits,
-        making (2) unreliable. We unfortunately misdiagnosed this as an
-        impotency of Perl's kill function, which led to r63177 and r63355.
-
-        Now that we know that the real problem is that Apache doesn't always
-        delete its PID file on Windows, we can make a much better fix: always
-        use method (1) to determine whether we've killed Apache.
-
-        Fixes <http://webkit.org/b/42415> Killing Apache is unreliable,
-        leading to regression test failures (and general annoyance).
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/webkitperl/httpd.pm:
-        (openHTTPD): Moved killing code from here to killHTTPD. Added a call
-        to delete the PID file in case Apache doesn't do this itself when
-        killed. Our later logic relies on the PID file being deleted after
-        this point.
-        (closeHTTPD): Removed killing logic and changed to just call killHTTPD
-        instead. killHTTPD's logic is a bit different from the logic we had
-        here, for the reasons stated above.
-        (killHTTPD): Added. Code came from openHTTPD.
-        (handleInterrupt): Bonus fix for Mac: don't hang when pressing Ctrl-C!
-        On Mac, don't try to kill Apache when we receive a signal, as Apache
-        will already have been killed by this point (though for some reason
-        this isn't detected by our killing logic in killHTTPD). On Cygwin, we
-        still need to kill Apache manually.
-
-2010-07-15  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Patch for https://bugs.webkit.org/show_bug.cgi?id=42399
-        Update MiniBrowser for WKFrameNavigationType 
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (_decidePolicyForNavigationAction):
-        (_decidePolicyForNewWindowAction):
-
-2010-07-15  Stephanie Lewis  <slewis@apple.com>
-
-        Reviewed by Geoff Garen.
-
-        http://bugs.webkit.org/show_bug.cgi?id=42406
-        Make SunSpider work better with roots.
-
-        * Scripts/sunspider-compare-results: fix argument bug
-        * Scripts/webkitdirs.pm: look inside JavaScriptCore if jsc isn't top-level.
-
-2010-07-15  Brady Eidson  <beidson@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Hook up back/forward in MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=42397
-
-        * MiniBrowser/mac/BrowserWindow.xib:
-        * MiniBrowser/mac/BrowserWindowController.h:
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController goBack:]):
-        (-[BrowserWindowController goForward:]):
-
-2010-07-15  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Darin Adler.
-
-        [Mac] Implement LayoutTestController::markerTextForListItem()
-        https://bugs.webkit.org/show_bug.cgi?id=37929
-
-        Implements DRT support for markerTextForListItem in the Mac port.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::markerTextForListItem): Implemented.
-
-2010-07-15  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        Update the port names to be more specific.  Before this patch,
-        port-specific results for Mac would end up in the wrong place.
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-
-2010-07-14  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        WebKit needs a rebaselining tool (finally)
-        https://bugs.webkit.org/show_bug.cgi?id=42339
-
-        This is a very basic rebaselining tool.  It's not
-        quite as fancy as chromium's as it will only handle
-        updating failing results.  It cannot yet handle adding new
-        results, or updating results where the results should not
-        replace existing results.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/tool/commands/__init__.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-        * Scripts/webkitpy/tool/commands/rebaseline.py: Added.
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py: Added.
-
-2010-07-14  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r63352.
-        http://trac.webkit.org/changeset/63352
-        https://bugs.webkit.org/show_bug.cgi?id=42341
-
-        Broke plugin-initiate-popup-window.html and plugin-javascript-
-        access.html on snow leopard (Requested by abarth on #webkit).
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:
-        (pluginAllocate):
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.h:
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_New):
-        (handleEventCarbon):
-        (handleEventCocoa):
-
-2010-07-14  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        Lower WebKitTestRunner notifyDone timeout to 6.0 for now, to make it easier to grind through the failures.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-
-2010-07-14  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r63346.
-        http://trac.webkit.org/changeset/63346
-        https://bugs.webkit.org/show_bug.cgi?id=42295
-
-        Broke lots of tests, some of which probably just need new
-        results (Requested by aroben on #webkit).
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (urlSuitableForTestResult):
-
-2010-07-14  Adam Roben  <aroben@apple.com>
-
-        Speed up killing of Apache on Windows
-
-        Fixes <http://webkit.org/b/42289> Killing Apache (and thus quitting
-        run-webkit-tests) takes a long time on Windows
-
-        Reviewed by Darin Adler and Jon Honeycutt.
-
-        * Scripts/webkitperl/httpd.pm:
-        (closeHTTPD): Use taskkill to kill Apache and its child processes.
-        Perl's kill seems ineffectual. We were already using taskkill, but
-        only after trying kill 20 times. Since kill never works, let's just
-        skip it entirely.
-
-2010-07-14  Johnny Ding  <jnd@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        https://bugs.webkit.org/show_bug.cgi?id=41292
-        Add a new parameter to the test plugin to allow to specify a script and a
-        mouse/keyboard event. The specified script will be evaluated in the browser
-        when the specified event is received by the plugin.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:
-        (pluginAllocate):
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.h:
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_New):
-        (handleEventCarbon):
-        (handleEventCocoa):
-
-2010-07-14  Adam Roben  <aroben@apple.com>
-
-        Make urlSuitableForTestResult work for http: URLs, too
-
-        Fixes <http://webkit.org/b/42276>
-        http/tests/loading/preload-slow-loading.php and
-        http/tests/mime/uppercase-mime-type.html fail on Windows.
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (urlSuitableForTestResult): Don't bail if the URL starts with http://.
-        We want this function to work for those URLs, too!
-
-2010-07-13  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        Add placebo versions of some repaint test functions to WebKitTestRunner - good enough for non-pixel tests
-        https://bugs.webkit.org/show_bug.cgi?id=42227
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::LayoutTestController): Initialize new bool
-        members.
-        (WTR::LayoutTestController::display): Dummy method.
-        (WTR::displayCallback): Call the dummy.
-        (WTR::repaintSweepHorizontallyCallback): ditto
-        (WTR::testRepaintCallback): ditto
-        (WTR::LayoutTestController::staticFunctions): Expose new methods.
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (WTR::LayoutTestController::setTestRepaint): Set the flag (which currently does
-        nothing).
-        (WTR::LayoutTestController::setTestRepaintSweepHorizontally): ditto
-
-2010-07-13  Andreas Kling  <andreas.kling@nokia.com>
-
-        Unreviewed. Adding myself as committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-07-07  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Darin Adler.
-
-        Prevent assertion/duplicate loads for non-deferred subtitute-data loads
-
-        https://bugs.webkit.org/show_bug.cgi?id=30879
-
-        MainResourceLoader uses the member m_initialRequest to store requests for future
-        deferred loads. When doing the actual load in handleDataLoadNow(), we therefore
-        have to clear this request so that subsequent entries into the loader will not
-        start yet another load.
-
-        This can happen as a result of a PageGroupLoadDeferrer going out of scope when
-        returning from Chrome::runJavaScriptAlert(), which calls setDeferredLoading(false),
-        but only in the case of using both substitute-data and non-deferred main resource
-        load together. That's why two new DRT functions were added:
-
-         * queueLoadHTMLString()
-         * setDeferMainResourceLoad()
-
-        The change adds DRT hooks for Mac, Win and Qt for these two functions. For Mac
-        and Win the hook uses new SPI in WebDataSource. For Qt a new static member was
-        added to the FrameLoaderClientQt and accessed though DumpRenderTreeSupportQt.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (queueLoadHTMLStringCallback):
-        (setDeferMainResourceDataLoadCallback):
-        (LayoutTestController::staticFunctions):
-        (LayoutTestController::queueLoadHTMLString):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::deferMainResourceDataLoad):
-        (LayoutTestController::setDeferMainResourceDataLoad):
-        * DumpRenderTree/WorkQueueItem.h:
-        (LoadHTMLStringItem::LoadHTMLStringItem):
-        * DumpRenderTree/gtk/WorkQueueItemGtk.cpp:
-        (LoadHTMLStringItem::invoke):
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        (-[ResourceLoadDelegate webView:resource:willSendRequest:redirectResponse:fromDataSource:]):
-        * DumpRenderTree/mac/WorkQueueItemMac.mm:
-        (LoadHTMLStringItem::invoke):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::setDeferMainResourceDataLoad):
-        (LayoutTestController::queueLoadHTMLString):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/qt/WorkQueueItemQt.cpp:
-        (LoadHTMLStringItem::invoke):
-        * DumpRenderTree/qt/WorkQueueItemQt.h:
-        (LoadHTMLStringItem::LoadHTMLStringItem):
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp:
-        (ResourceLoadDelegate::willSendRequest):
-        * DumpRenderTree/win/WorkQueueItemWin.cpp:
-        (LoadHTMLStringItem::invoke):
-        * DumpRenderTree/wx/WorkQueueItemWx.cpp:
-        (LoadHTMLStringItem::invoke):
-
-2010-07-13  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Nikolas Zimmermann.
-
-        Activate test fonts for layout tests in WebKitTestRunner (on Mac)
-        https://bugs.webkit.org/show_bug.cgi?id=42153
-
-        * WebKitTestRunner/InjectedBundle/ActivateFonts.h: Added.
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::initialize): Activate fonts on startup.
-        * WebKitTestRunner/InjectedBundle/mac: Added.
-        * WebKitTestRunner/InjectedBundle/mac/ActivateFonts.mm: Added.
-        (WTR::activateFonts): Activate our fonts.
-        * WebKitTestRunner/InjectedBundle/win: Added.
-        * WebKitTestRunner/InjectedBundle/win/ActivateFonts.cpp: Added.
-        (WTR::activateFonts): Dummy version.
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj: Copy fonts to bundle;
-        add more files.
-        * WebKitTestRunner/fonts: Added.
-        * WebKitTestRunner/fonts/AHEM____.TTF: Added.
-        * WebKitTestRunner/fonts/ColorBits-A.png: Added.
-        * WebKitTestRunner/fonts/ColorBits.ttf: Added.
-        * WebKitTestRunner/fonts/WebKit Layout Tests 2.ttf: Added.
-        * WebKitTestRunner/fonts/WebKit Layout Tests.ttf: Added.
-        * WebKitTestRunner/fonts/WebKitWeightWatcher100.ttf: Added.
-        * WebKitTestRunner/fonts/WebKitWeightWatcher200.ttf: Added.
-        * WebKitTestRunner/fonts/WebKitWeightWatcher300.ttf: Added.
-        * WebKitTestRunner/fonts/WebKitWeightWatcher400.ttf: Added.
-        * WebKitTestRunner/fonts/WebKitWeightWatcher500.ttf: Added.
-        * WebKitTestRunner/fonts/WebKitWeightWatcher600.ttf: Added.
-        * WebKitTestRunner/fonts/WebKitWeightWatcher700.ttf: Added.
-        * WebKitTestRunner/fonts/WebKitWeightWatcher800.ttf: Added.
-        * WebKitTestRunner/fonts/WebKitWeightWatcher900.ttf: Added.
-
-2010-07-13  Dumitru Daniliuc  <dumi@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Remove check-header-includes, as it didn't turn out to be very useful.
-        https://bugs.webkit.org/show_bug.cgi?id=41970
-
-        * Scripts/check-header-includes: Removed.
-
-2010-07-12  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Maciej Stachowiak.
-
-        Make WebKit2 be built by build-webkit (so it will be built by build.webkit.org bots)
-        https://bugs.webkit.org/show_bug.cgi?id=40922
-        
-        Always build WebKit2 on Windows. Necessary since our WebKit build on
-        Windows is packaged into a DLL with WebKit2.
-
-        * Scripts/build-webkit: Always build WebKit2 on Windows.
-
-2010-07-12  Brian Weinstein  <bweinstein@apple.com>
-
-        Reviewed by Steve Falkenburg.
-
-        One http test timing out on Windows can cause all future tests to time out
-        https://bugs.webkit.org/show_bug.cgi?id=42146
-        
-        There have been multiple times on the Windows bots where one http test timing out causes all future
-        http tests to time out. This is because the httpd process becomes unresponsive. When an http test
-        times out, we should restart httpd on Cygwin to prevent this.
-
-        * Scripts/old-run-webkit-tests: If an http test timed out on Cygwin, close httpd and restart it.
-        * Scripts/webkitperl/httpd.pm: Add additional logic to closeHTTPD to teach it about taskkill if
-            using kill fails.
-
-2010-07-12  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        Remove use of auto_ptr in WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=42134
-        
-        Replaced auto_ptr with PassOwnPtr / OwnPtr.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::WKStringToUTF8):
-        (WTR::InjectedBundlePage::dump):
-        (WTR::InjectedBundlePage::addMessageToConsole):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::WKStringToUTF8):
-        (WTR::TestInvocation::didRecieveMessageFromInjectedBundle):
-
-2010-07-12  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Need support for a WebKit2-specific Skipped list (and initially add accessibility tests to it)
-        https://bugs.webkit.org/show_bug.cgi?id=42132
-
-        * Scripts/old-run-webkit-tests: In --webkit-test-runner mode, add mac-wk2 to list of
-        platform directories.
-
-2010-07-12  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Anders Carlsson.
-
-        Make WebKitTestRunner resize the view specially for the W3C SVG tests.
-        https://bugs.webkit.org/show_bug.cgi?id=42126
-
-        * WebKitTestRunner/PlatformWebView.h:
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::TestInvocation): Store the path as a C
-        string for later use.
-        (WTR::TestInvocation::~TestInvocation):
-        (WTR::sizeWebViewForCurrentTest): Resize the WebView to the proper
-        size, depending on whether this is a W3C SVG test.
-        (WTR::TestInvocation::invoke): Call the size function.
-        * WebKitTestRunner/TestInvocation.h:
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (WTR::PlatformWebView::resizeTo): Implement.
-        * WebKitTestRunner/win/PlatformWebViewWin.cpp:
-        (WTR::PlatformWebView::resizeTo): Placeholder.
-
-2010-07-12  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        Ensure DRT loads GAIL (Gtk+ module), for a11y tests
-        https://bugs.webkit.org/show_bug.cgi?id=38648
-
-        Add the GTK_MODULES envvar (set to "gail") to the clean
-        environment when running DRT for the Gtk+ port
-
-        * Scripts/old-run-webkit-tests:
-
-2010-07-12  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Dirk Schulze.
-
-        [GTK] Support pixel tests
-        https://bugs.webkit.org/show_bug.cgi?id=31518
-
-        Finish support for pixel tests on GTK+.
-
-        * DumpRenderTree/PixelDumpSupport.cpp: Remove unecessary RetainPtr include (only
-        works on CoreFoundation systems) and add missing cstdio include.
-        * DumpRenderTree/cairo/PixelDumpSupportCairo.cpp: Switch to using the MD5 support found
-        in JSC library. MD5.cpp and MD5.h are only available for the Windows build.
-        (computeMD5HashStringForBitmapContext): The number of bytes per row should be the row stride
-        of the image, not the row stride multiplied by the width. Use JSC MD5 implementation to calculate
-        the MD5 hash here. According to glibc manpages, using snprintf to build a string in unsupported
-        by the ANSI standard and this fails on Linux, so unroll the loop here.
-        * DumpRenderTree/cairo/PixelDumpSupportCairo.h: Correct some constructor misbehavior.
-        (BitmapContext::BitmapContext): There is no reason to check the value of the
-        m_context member in the constructor and it certainly should not be freed. Instead
-        just initialize it with the incoming value.
-        * DumpRenderTree/gtk/DumpRenderTree.cpp: Fix the order of includes.
-        (dump): Actually call dumpWebViewAsPixelsAndCompareWithExpected when it is time to
-        dump pixels.
-        * DumpRenderTree/gtk/PixelDumpSupportGtk.cpp: Added.
-        (createBitmapContextFromWebView):
-        * GNUmakefile.am: Add new files to the build.
-
-2010-07-12  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        Remove stray "raise e" that got included in a previous patch.  This
-        caused the EWS bots to turn red instead of purple when a patch failed
-        to apply.
-
-        * Scripts/webkitpy/tool/commands/stepsequence.py:
-
-2010-07-12  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r63101.
-        http://trac.webkit.org/changeset/63101
-        https://bugs.webkit.org/show_bug.cgi?id=42103
-
-        Broke one API test (Requested by xan_ on #webkit).
-
-        * Scripts/old-run-webkit-tests:
-
-2010-07-12  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Adam Roben.
-
-        https://bugs.webkit.org/show_bug.cgi?id=13075
-        XMLHttpRequest with failed authentication should set status to 401
-
-        https://bugs.webkit.org/show_bug.cgi?id=6871
-        <rdar://problem/3363403> 401 error page is never shown
-
-        Fix crashes in Windows DumpRenderTree.
-
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp: (ResourceLoadDelegate::didReceiveAuthenticationChallenge):
-        If we return an error, WebKit will call continueWithoutCredentialForAuthenticationChallenge()
-        again on a destroyed sender.
-
-2010-07-12  Adam Roben  <aroben@apple.com>
-
-        Windows failure-to-launch fix
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj: Copy CoreVideo.dll and
-        CoreVideo.pdb into WebKitOutputDir in the post-build event, too, like
-        we already do for CoreFoundation, CFNetwork, etc.
-
-2010-07-12  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        Ensure DRT loads GAIL (Gtk+ module), for a11y tests
-        https://bugs.webkit.org/show_bug.cgi?id=38648
-
-        Add the GTK_MODULES envvar (set to "gail") to the clean
-        environment when running DRT for the Gtk+ port
-
-        * Scripts/old-run-webkit-tests:
-
-2010-07-09  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=13075
-        XMLHttpRequest with failed authentication should set status to 401
-
-        https://bugs.webkit.org/show_bug.cgi?id=6871
-        <rdar://problem/3363403> 401 error page is never shown
-
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        (-[ResourceLoadDelegate webView:resource:didReceiveAuthenticationChallenge:fromDataSource:]):
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp:
-        (ResourceLoadDelegate::didReceiveAuthenticationChallenge):
-        Do respond even if handlesAuthenticationChallenges() is false. Pretend that the user pressed
-        the Cancel button.
-
-2010-07-12  Andreas Kling  <andreas.kling@nokia.com>
-
-        Reviewed by Tor Arne Vestbø.
-
-        [Qt] Add location bar (Ctrl+L) shortcut in QtTestBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=42082
-
-        * QtTestBrowser/main.cpp:
-        (LauncherWindow::createChrome):
-        * QtTestBrowser/mainwindow.cpp:
-        (MainWindow::openLocation):
-        * QtTestBrowser/mainwindow.h:
-
-2010-07-12  Adam Roben  <aroben@apple.com>
-
-        Make the Python autoinstaller not use a dead SourceForge server
-
-        Fixes <http://webkit.org/b/42080> webkit-patch is broken due to
-        offline SourceForge server
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/webkitpy/thirdparty/__init__.py: Use
-        surfnet.dl.sourceforge.net instead of hivelocity.dl.sourceforge.net,
-        which seems to be down.
-
-2010-07-12  Adam Roben  <aroben@apple.com>
-
-        Make run-webkit-tests print how many tests timed out when exiting
-        early
-
-        The number of timed-out tests is taken into account when deciding
-        whether to exit early. Leaving it out of the output just makes the
-        script look buggy (because it might say something like "Exiting early
-        after 0 crashes.").
-
-        Fixes <http://webkit.org/b/42077> run-webkit-tests prints confusing
-        messages when exiting early due to crashes and time-outs
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/old-run-webkit-tests:
-        (stopRunningTestsEarlyIfNeeded): When stopping, print the number of
-        timed-out tests, too.
-
-2010-07-11  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        Implement animation-related methods for WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=42053
-        
-        Implemented numberOfActiveAnimatiosn and pauseAnimationAtTimeOnElementWithId. Many
-        animation tests were hanging otherwise.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::numberOfActiveAnimations):
-        (WTR::LayoutTestController::pauseAnimationAtTimeOnElementWithId):
-        (WTR::numberOfActiveAnimationsCallback):
-        (WTR::pauseAnimationAtTimeOnElementWithIdCallback):
-        (WTR::LayoutTestController::staticFunctions):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2010-07-11  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by David Kilzer.
-
-        Enable executable support for svn-apply and svn-unapply
-        https://bugs.webkit.org/show_bug.cgi?id=39409
-
-        Connect up the Git and SVN executable bit support in parseDiff() so that
-        executable bit changes are propagated via the returned diff hash to the
-        patch function in svn-apply and svn-unapply.
-
-        * Scripts/VCSUtils.pm:
-          - Modified parseDiff() to call parseSvnDiffProperties when
-            it finds the start of an SVN property change diff.
-          - Removed FIXME comment above parseSvnDiffProperties() since
-            it is now being used by parseDiff().
-          - Export method scmToggleExecutableBit() now that we added the
-            executableBitDelta hash key. (This should have been exported
-            when we added this function in Bug #38423 <https://bugs.webkit.org/show_bug.cgi?id=38423>).
-        * Scripts/webkitperl/VCSUtils_unittest/parseDiff.pl:
-          - Updated results for:
-            "rename (with executable bit change)"
-              - Test value of executableBitDelta (now that we have support).
-            "SVN: binary file (isBinary true)"
-              - Remove the property change diff from svnConvertedText. We plan
-                to remove svnConvertedText in the future. So, we decided
-                against adding such support to any new code, such as the
-                property parsing routines. Therefore, we do not keep SVN
-                converted text for property change diffs.
-          - Added unit tests:
-            "SVN: file change diff with property change diff"
-            "SVN: file change diff, followed by property change diff on different file"
-            "SVN: property diff, followed by file change diff"
-            "SVN: copied file with property change"
-            "SVN: two consecutive property diffs"
-            "SVN: binary file with executable bit change"
-            "SVN: binary file followed by property change on different file"
-            "SVN: binary file followed by file change on different file"
-            "SVN: file change diff with property change, followed by property change diff"
-            "SVN: file change diff with property change, followed by file change diff"
-
-2010-07-11  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        Implement waitUntilDone and notifyDone for WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=42049
-
-        With this fix, most of the DOM tests pass.
-        
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::didCreatePage): Track the main page. Not
-        a great way to do it in the future case where we may get multiple
-        pages - we really need a way to send it over from the ui process.
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (WTR::InjectedBundle::page): A way to get the main page.
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage): Initialize m_isLoading to false.
-        (WTR::InjectedBundlePage::didStartProvisionalLoadForFrame): Track that we
-        are loading.
-        (WTR::InjectedBundlePage::dump): Factor into a method so this can be
-        called by the layout test controller. Also, cancel any pending watchdogs.
-        (WTR::InjectedBundlePage::didFinishLoadForFrame): Note that we are done loading.
-        (WTR::InjectedBundlePage::didFailLoadWithErrorForFrame): Ditto.
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-        (WTR::InjectedBundlePage::isLoading): A way to track if we are loading.
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::LayoutTestController): Initialize m_waitToDump
-        to false.
-        (WTR::LayoutTestController::invalidateWaitToDumpWatchdog): Invalidate 
-        the watchdog.
-        (WTR::waitUntilDoneWatchdogFired): Static helper for the watchdog timer.
-        (WTR::LayoutTestController::setWaitToDump): Set the flag.
-        (WTR::LayoutTestController::waitToDumpWatchdogTimerFired): Handle the case
-        where waitUntilDone times out.
-        (WTR::LayoutTestController::notifyDone): Dump, if loading is done.
-        (WTR::waitUntilDoneCallback): JS glue for waitUntilDone.
-        (WTR::notifyDoneCallback): JS glue for notifyDone.
-        (WTR::LayoutTestController::staticFunctions): Add waitUntilDone and notifyDone
-        to the layoutController.
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (WTR::LayoutTestController::waitToDump): Inline method to get the wait state.
-
-2010-07-09  Brian Weinstein  <bweinstein@apple.com>
-
-        Rubber-stamped by Dan Bernstein.
-
-        Windows testers running Windows 7 were hanging during test_kill_process. Changing the
-        number of attempts from 3 to 10 fixes the problem on the new bots (and doesn't seem to
-        slow down the tests).
-
-        * Scripts/webkitpy/common/system/executive.py:
-
-2010-07-09  Luiz Agostini  <luiz.agostini@openbossa.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Mac build fix
-        https://bugs.webkit.org/show_bug.cgi?id=41967
-
-        Adding file PluginObjectMac.mm and frameworks Cocoa and QuartzCore.
-
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-
-2010-07-09  Diego Gonzalez  <diegohcg@webkit.org>
-
-        Reviewed by Antonio Gomes.
-
-        [Qt] [WebKit2] Add navigation actions to MiniBrowser toolbar
-        https://bugs.webkit.org/show_bug.cgi?id=41966
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-
-2010-07-09  Leon Clarke  <leonclarke@google.com>
-
-        Reviewed by Adam Barth.
-
-        add support for link prefetching
-        https://bugs.webkit.org/show_bug.cgi?id=3652
-
-        * Scripts/build-webkit:
-
-2010-07-09  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        r63004 broke some python tests
-        https://bugs.webkit.org/show_bug.cgi?id=42007
-
-        AbstractStep now checks options.no_squash and options.squash, so
-        they needed to have real values. Mock would return an object for those,
-        which would then act as if the values were True.
-
-        * Scripts/webkitpy/tool/commands/commandtest.py:
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/commands/stepsequence.py:
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/closebugforlanddiff_unittest.py:
-        * Scripts/webkitpy/tool/steps/preparechangelog_unittest.py:
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-        * Scripts/webkitpy/tool/steps/updatechangelogswithreview_unittest.py:
-        * Scripts/webkitpy/tool/steps/validatereviewer_unittest.py:
-
-2010-07-09  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        --squash should go away and become the default
-        https://bugs.webkit.org/show_bug.cgi?id=39624
-
-        If there are local commits and working copy changes, then prompt the user
-        whether to continue. Setting git config webkit-patch.commit_should_always_squash
-        true bypasses the prompt.
-
-        --git-commit=HEAD.. operates on working copy changes only.
-        --git-commit=committish operates on a range of commits as a single commit.
-            e.g. --git-commit=HEAD only operates on the HEAD commit.
-            --git-commit=HEAD~4..HEAD~2 will operate on HEAD~3 and HEAD~2 as a single commit.
-
-        --no-squash and --squash are left in with descriptive error messages if used.
-
-        * Scripts/check-webkit-style:
-        * Scripts/webkitpy/common/checkout/api.py:
-        * Scripts/webkitpy/common/checkout/api_unittest.py:
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-        * Scripts/webkitpy/common/net/rietveld.py:
-        * Scripts/webkitpy/common/system/user.py:
-        * Scripts/webkitpy/style/optparser.py:
-        * Scripts/webkitpy/style_references.py:
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/upload.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/abstractstep.py:
-        * Scripts/webkitpy/tool/steps/applypatchwithlocalcommit.py:
-        * Scripts/webkitpy/tool/steps/checkstyle.py:
-        * Scripts/webkitpy/tool/steps/checkstyle_unittest.py: Removed.
-        * Scripts/webkitpy/tool/steps/commit.py:
-        * Scripts/webkitpy/tool/steps/options.py:
-        * Scripts/webkitpy/tool/steps/preparechangelog.py:
-        * Scripts/webkitpy/tool/steps/preparechangelogforrevert.py:
-        * Scripts/webkitpy/tool/steps/updatechangelogswithreviewer.py:
-        * Scripts/webkitpy/tool/steps/validatereviewer.py:
-
-2010-07-09  Mark Rowe  <mrowe@apple.com>
-
-        Add two new Windows test build slaves.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2010-07-09  Albert J. Wong  <ajwong@chromium.org>
-
-        Reviewed by David Levin.
-
-        rebaseline_chromium_webkit_tests missing --use_drt option on linux
-        https://bugs.webkit.org/show_bug.cgi?id=41985
-
-        This adds in the --use_drt option for rebaseline_chromium_webkit_tests
-        so that it works on linux. This is essentially a "compile-fix" for the
-        script.
-
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-
-2010-07-09  Nico Weber  <thakis@chromium.org>
-
-        Unreviewed. Adding myself as committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-07-09  David Kilzer  <ddkilzer@apple.com>
-
-        Revert "<http://webkit.org/b/41788> commit-log-editor: wrong ChangeLog read when invoked from subdir with git"
-
-        This reverts commit r62692.
-
-        * Scripts/commit-log-editor:
-
-2010-07-08  Kinuko Yasuda  <kinuko@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        cleanup json_results_generator dependencies so that non-layout-tests can also use it safely
-        https://bugs.webkit.org/show_bug.cgi?id=38693
-
-        Introduced a new base class JSONResultsGeneratorBase that doesn't
-        have any dependency on layout_tests packages.
-        Turned JSONResultsGenerator into a wrapper class of the base class
-        so that the old code can work with it during the cleanup.
-
-        Added json_results_generator_unittest.py.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator_unittest.py: Added
-
-2010-07-09  Abhishek Arya  <inferno@chromium.org>
-
-        Unreviewed.
-
-        Marking myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-07-09  Kenneth Rohde Christiansen  <kenneth.christiansen@openbossa.org>
-
-        Reviewed by Antti Koivisto.
-
-        Implement MiniBrowser for Qt.
-        https://bugs.webkit.org/show_bug.cgi?id=40233
-
-        * MiniBrowser/qt/BrowserWindow.cpp: Added.
-        (createNewPage):
-        (BrowserView::BrowserView):
-        (BrowserView::resizeEvent):
-        (BrowserView::load):
-        (BrowserView::view):
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::load):
-        (BrowserWindow::changeLocation):
-        (BrowserWindow::~BrowserWindow):
-        * MiniBrowser/qt/BrowserWindow.h: Added.
-        (BrowserView::~BrowserView):
-        * MiniBrowser/qt/MiniBrowser.pro: Added.
-        * MiniBrowser/qt/main.cpp: Added.
-        (main):
-
-2010-07-09  Jedrzej Nowacki  <jedrzej.nowacki@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        Introduce the Qt autotest launcher.
-
-        Qt autotests should be executed more frequently, ideally by the Qt
-        build bot. This is the first step to provide the tests more accessible.
-
-        [Qt] It should be easier to run all Qt's autotests.
-        https://bugs.webkit.org/show_bug.cgi?id=31625
-
-        * Scripts/run-qtwebkit-tests: Added.
-
-2010-07-09  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        commit-queue should merge to TOT when checkout needs update
-        https://bugs.webkit.org/show_bug.cgi?id=41944
-
-        There are a bunch of different designs that are possible here.  This
-        one merges to top of tree by cleaning out the working copy and
-        re-applying the patch.  Once you decide to merge that way, you need to
-        decide who's going to retry.  In this patch, we retry in the child
-        process instead of plumbing the failure reason to the master process.
-
-        This patch is difficult to test end-to-end, but hopefully it will work.
-        :)
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/stepsequence.py:
-        * Scripts/webkitpy/tool/multicommandtool.py:
-        * Scripts/webkitpy/tool/multicommandtool_unittest.py:
-
-2010-07-09  Dumitru Daniliuc  <dumi@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        Add a script to check for unnecessary includes in header files.
-        https://bugs.webkit.org/show_bug.cgi?id=41894
-
-        * Scripts/check-header-includes: Added.
-
-2010-07-09  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add --html5-treebuilder option to run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=41922
-
-        We're down to one or two regressions in the HTML5lib test suite.  It's
-        getting to be time to look at fixing LayoutTests.
-
-        * Scripts/old-run-webkit-tests:
-
-2010-07-08  Simon Fraser  <simon.fraser@apple.com>
-
-        Fix Tiger plugin test failures; the #ifdefs were incorrect, resulting
-        in the drawing model never getting set on Tiger.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_New):
-
-2010-07-08  Aaron Boodman  <aa@chromium.org>
-
-        Reviewed by Timothy Hatcher.
-
-        Add the ability for user scripts and user styles to affect just the top frame.
-
-        https://bugs.webkit.org/show_bug.cgi?id=41529
-
-        * DumpRenderTree/LayoutTestController.h: Added new allFrames param.
-        * DumpRenderTree/LayoutTestController.cpp: Ditto.
-        (addUserScriptCallback):
-        (addUserStyleSheetCallback):
-        * DumpRenderTree/chromium/LayoutTestController.cpp: Ditto.
-        (LayoutTestController::addUserScript):
-        (LayoutTestController::addUserStyleSheet):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp: Ditto.
-        (LayoutTestController::addUserScript):
-        (LayoutTestController::addUserStyleSheet):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm: Ditto.
-        (LayoutTestController::addUserScript):
-        (LayoutTestController::addUserStyleSheet):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp: Ditto.
-        (LayoutTestController::addUserScript):
-        (LayoutTestController::addUserStyleSheet):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp: Ditto.
-        (LayoutTestController::addUserScript):
-        (LayoutTestController::addUserStyleSheet):
-
-2010-07-08  Adele Peterson  <adele@apple.com>
-
-        Reviewed by Jon Honeycutt, Adam Roben, and Darin Adler.
-
-        Test infrastructure for https://bugs.webkit.org/show_bug.cgi?id=41721
-        <rdar://problem/8158561> Missing plug-in indicator should have a pressed state
-
-        Log when the missing plugin button is pressed.
-
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:didPressMissingPluginButton:]):
-        * DumpRenderTree/win/UIDelegate.cpp:
-        (UIDelegate::QueryInterface):
-        (UIDelegate::createWebViewWithRequest):
-        (UIDelegate::drawBackground):
-        (UIDelegate::decidePolicyForGeolocationRequest):
-        (UIDelegate::didPressMissingPluginButton):
-        * DumpRenderTree/win/UIDelegate.h:
-
-2010-07-08  Simon Fraser  <simon.fraser@apple.com>
-
-        Fix the Tiger build.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_New):
-
-2010-07-08  Simon Fraser  <simon.fraser@apple.com>
-
-        Fix windows build.
-
-        #ifdef code for Mac.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_New):
-
-2010-07-08  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Anders Carlsson.
-
-        Allow the TestPlugin to use Core Animation rendering for testing
-        https://bugs.webkit.org/show_bug.cgi?id=41872
-        
-        Add the ability for the TestPlugin to use the CoreAnimation rendering model
-        when available, based on the "drawingmodel" attribute of the embed tag:
-            drawingmodel="coreanimation"
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Add PluginObjectMac.mm
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.h: Add some macros so we can detect
-        when building on Tiger. Add a void* coreAnimationLayer member.
-        
-        * DumpRenderTree/TestNetscapePlugIn/PluginObjectMac.mm: Added.
-        (createCoreAnimationLayer): Obj-C method to create the CALayer.
-        
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_New): Look for the drawingmodel attribute to decide which drawing
-        model to use.
-        (NPP_Destroy): Release the CALayer if we have one.
-        (NPP_GetValue): Return the retained CALayer.
-
-2010-07-08  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] Support pixel tests
-        https://bugs.webkit.org/show_bug.cgi?id=31518
-
-        Convert this file from CRLF to NL line endings. It will soon
-        be used on more than just the WinCairo platform.
-
-        * DumpRenderTree/cairo/PixelDumpSupportCairo.cpp:
-        (writeFunction):
-        (printPNG):
-        (computeMD5HashStringForBitmapContext):
-        (dumpBitmap):
-
-2010-07-08  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Enable Data Execution Prevention for our test harnesses on Windows
-        https://bugs.webkit.org/show_bug.cgi?id=41882
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/ImageDiff.vcproj:
-        * WebKitAPITest/WebKitAPITest.vcproj:
-        * WebKitTestRunner/win/WebKitTestRunner.vcproj:
-
-2010-07-07  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Add DRT support for pageProperty etc.
-
-        https://bugs.webkit.org/show_bug.cgi?id=41584
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::isPageBoxVisible):
-        (LayoutTestController::pageSizeAndMarginsInPixels):
-        (LayoutTestController::pageProperty):
-        (LayoutTestController::addUserStyleSheet):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-07-08  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        Remove a warnings from the ImageDiff build by using the proper
-        printf format string for the gsize data type.
-
-        * DumpRenderTree/gtk/ImageDiff.cpp:
-        (printImage): Use the proper printf format string for the gsize data type.
-
-2010-07-08  Alice Liu  <alice.liu@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        https://bugs.webkit.org/show_bug.cgi?id=41653
-        Add new WebKitTestRunner project for Windows
-
-        * WebKitTestRunner/WebKitTestRunnerPrefix.h: 
-        Similar to how it's done in DumpRenderTree, define max and min early
-        on so that they don't get replaced by a macro requiring 2 arguments.
-
-        * WebKitTestRunner/win: Added.
-        * WebKitTestRunner/win/WebKitTestRunner.sln: Added.
-        * WebKitTestRunner/win/WebKitTestRunner.vcproj: Added.
-        * WebKitTestRunner/win/main.cpp: Added.
-        (main): Implemented
-
-        Added these files with stubbed out functions:
-        * WebKitTestRunner/win/PlatformWebViewWin.cpp: Added.
-        (WTR::PlatformWebView::PlatformWebView):
-        (WTR::PlatformWebView::~PlatformWebView):
-        (WTR::PlatformWebView::page):
-        * WebKitTestRunner/win/TestControllerWin.cpp: Added.
-        (WTR::TestController::initializeInjectedBundlePath):
-        * WebKitTestRunner/win/TestInvocationWin.cpp: Added.
-        (WTR::TestInvocation::runUntil):
-
-2010-07-07  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        [GTK] Implement ImageDiff and add it to the build system
-        https://bugs.webkit.org/show_bug.cgi?id=41779
-
-        Add the initial implementation of the ImageDiff tool for the GTK+
-        port. This is an essential tool for doing pixel tests. The implementation
-        is based on the Mac and Chromium ports.
-
-        * DumpRenderTree/gtk/ImageDiff.cpp: Added.
-        (readPixbufFromStdin): Added.
-        (differenceImageFromDifferenceBuffer): Ditto.
-        (calculateDifference): Ditto.
-        (printImage): Ditto.
-        (printImageDifferences): Ditto.
-        (main): Ditto.
-        * GNUmakefile.am: Add ImageDiff to the WebKitTools build scripts.
-
-2010-07-08  Jay Civelli  <jcivelli@chromium.org>
-
-        Unreviewed. Adding myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-07-08  Adam Roben  <aroben@apple.com>
-
-        Make Windows stop running tests from platform/mac
-
-        r62742 made a change (at my suggestion!) that caused us to start
-        looking for tests in platform/mac, rather than just looking for
-        expected results in platform/mac. This patch just undoes that part of
-        r62742.
-
-        Fixes <http://webkit.org/b/41855> REGRESSION (r62742): Windows runs
-        tests from platform/mac, but shouldn't
-
-        Reviewed by Antti Koivisto and Anders Carlsson.
-
-        * Scripts/old-run-webkit-tests:
-        (top level): Removed "mac-snowleopard" and "mac" from @winPlatforms,
-        so we won't look in those directories for tests to run.
-        (expectedDirectoryForTest): Added back code from pre-r62742 to look in
-        platform/mac-snowleopard and platform/mac for expected results.
-
-2010-07-08  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Unreviewed. Adding myself as a reviewer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-07-08  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Update my e-mail in committers.py
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-07-07  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Dumitru Daniliuc.
-
-        VCSUtils.pm complains about uninitialized value $newLine
-        https://bugs.webkit.org/show_bug.cgi?id=41333
-
-        Fixes an issue where VCSUtils::fixChangeLogPatch() may read off the end of
-        an array when fixing a change log entry that overlaps with an earlier
-        entry. In particular, when a patch contains a change log entry inserted
-        earlier in the change log file, but after an entry with the same author
-        and date.
-
-        * Scripts/VCSUtils.pm:
-            - Added for-loop constraint to fixChangeLogPatch() so that it does not
-              read off the end of the @overlappingLines array.
-        * Scripts/webkitperl/VCSUtils_unittest/fixChangeLogPatch.pl: Added unit test.
-
-2010-07-07  Anders Carlsson  <andersca@apple.com>
-
-        Comment out a part of TestNetscapePlugin that caused tests to fail on Tiger and Leopard.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_New):
-
-2010-07-07  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        [DRT/Chromium] Support for indeterminate checkbox
-        https://bugs.webkit.org/show_bug.cgi?id=41747
-
-        Import http://src.chromium.org/viewvc/chrome?view=rev&revision=51499
-
-        * DumpRenderTree/chromium/WebThemeControlDRT.cpp:
-        (WebThemeControlDRT::draw):
-        * DumpRenderTree/chromium/WebThemeControlDRT.h:
-        (WebThemeControlDRT::):
-        * DumpRenderTree/chromium/WebThemeEngineDRT.cpp:
-        (WebThemeEngineDRT::paintButton):
-
-2010-07-07  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        Clean up MiniBrowser Xcode project.
-
-        - Use xcconfig files.
-        - Rename plists to canonical Info.plist
-        - Remove localizations.
-
-        * MiniBrowser/Configurations: Added.
-        * MiniBrowser/Configurations/Base.xcconfig: Added.
-        * MiniBrowser/Configurations/DebugRelease.xcconfig: Added.
-        * MiniBrowser/Configurations/MiniBrowser.xcconfig: Added.
-        * MiniBrowser/Configurations/WebBundle.xcconfig: Added.
-        * MiniBrowser/MiniBrowser.xcodeproj/project.pbxproj:
-        * MiniBrowser/WebBundle-Info.plist: Removed.
-        * MiniBrowser/mac/BrowserStatisticsWindowController.m:
-        (-[BrowserStatisticsWindowController initWithThreadedWKContextRef:processWKContextRef:]):
-        * MiniBrowser/mac/BrowserWindow.xib: Added.
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController initWithPageNamespace:]):
-        * MiniBrowser/mac/English.lproj: Removed.
-        * MiniBrowser/mac/English.lproj/BrowserWindow.xib: Removed.
-        * MiniBrowser/mac/English.lproj/InfoPlist.strings: Removed.
-        * MiniBrowser/mac/English.lproj/MainMenu.xib: Removed.
-        * MiniBrowser/mac/Info.plist: Copied from MiniBrowser/mac/MiniBrowser-Info.plist.
-        * MiniBrowser/mac/MainMenu.xib: Added.
-        * MiniBrowser/mac/MiniBrowser-Info.plist: Removed.
-        * MiniBrowser/mac/WebBundle/Info.plist: Copied from MiniBrowser/WebBundle-Info.plist.
-
-2010-07-07  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Fix two regressions
-        https://bugs.webkit.org/show_bug.cgi?id=41745
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::paintInvalidatedRegion):
-         Repaint three times to fix svg/W3C-SVG-1.1/struct-use-01-t.svg
-         and svg/custom/use-on-g-containing-foreignObject-and-image.svg
-         though test_shell does it twice. Probably DRT needs it because
-         DRT delays painting as possible.
-
-2010-07-07  Anders Carlsson  <andersca@apple.com>
-
-        Try to fix build.
-
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_destroy_stream):
-
-2010-07-07  Anders Carlsson  <andersca@apple.com>
-
-        Try to fix the GTK+ and Qt test failures by merging the newly added code from TestNetscapePlugin/main.cpp
-
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_new_stream):
-        (webkit_test_plugin_destroy_stream):
-        (webkit_test_plugin_write_ready):
-        (webkit_test_plugin_write):
-
-2010-07-07  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        Don't hard code the Mac OS X 10.6 SDK for MiniBrowser. 
-
-        * MiniBrowser/MiniBrowser.xcodeproj/project.pbxproj:
-
-2010-07-07  Anders Carlsson  <andersca@apple.com>
-
-        Use the correct XP_MACOSX define instead of XP_MAC. This was causing test failures on some platforms.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_New):
-        (NPP_HandleEvent):
-
-2010-07-07  Brian Weinstein  <bweinstein@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Need to have a way to specify different results for Windows XP and 7
-        https://bugs.webkit.org/show_bug.cgi?id=41776
-        
-        Add the ability to have platform/win-xp, platform/win-vista, and platform/win-7
-        subdirectories, so we can have different results for tests on Windows XP, Windows
-        Vista, and Windows 7.
-
-        Windows XP will try the order: win-xp, win-vista, win-7, win, mac-snowleopard, mac.
-        Windows Vista will try the order: win-vista, win-7, win, mac-snowleopard, mac.
-        Windows 7 will try the order: win-7, win, mac-snowleopard, mac.
-
-        This matches the behavior of the mac.
-
-        * Scripts/old-run-webkit-tests: Add multiple platforms for Windows, and if we are on XP
-            or Vista, try looking in other win-* subdirectories before win.
-        * Scripts/webkitdirs.pm: Add some helper functions to determine what version of Windows
-            we are running.
-
-2010-07-07  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Remove ASSERT_NOT_REACHED in some functions
-        https://bugs.webkit.org/show_bug.cgi?id=41753
-
-        The original code of the following functions in
-        test_shell_devtools_client.cc have NOTIMPLEMENTED(), not
-        ASSERT_NOT_REACHED(). The program shouldn't stop at these
-        functions.
-
-        * DumpRenderTree/chromium/DRTDevToolsClient.cpp:
-        (DRTDevToolsClient::activateWindow):
-        (DRTDevToolsClient::closeWindow):
-        (DRTDevToolsClient::dockWindow):
-        (DRTDevToolsClient::undockWindow):
-
-2010-07-07  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Test that we call NPP_DestroyStream if a plug-in returns -1 from its NPP_Write function
-        https://bugs.webkit.org/show_bug.cgi?id=41821
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:
-        (pluginGetProperty):
-        (pluginSetProperty):
-        (pluginAllocate):
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.h:
-        Add and initialize the returnNegativeOneFromWrite property.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_NewStream):
-        Set the stream type to NP_NORMAL so we'll get write callbacks.
-
-        (NPP_DestroyStream):
-        Treat the onstreamdestroy attribute as a function name and not a string.
-
-        (NPP_WriteReady):
-        Have this return a nonzero value.
-
-        (NPP_Write):
-        If returnNegativeOneFromWrite is true return -1.
-
-2010-07-07  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix for machines with both MSVC 2005 and 2008 installed. Ensures the
-        latest version is selected by default, and allows the version to be specified.
-
-        * wx/build/settings.py:
-
-2010-07-07  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Darin Adler.
-
-        AX: TextArea should return AXSelectedTextRange of 0,0 if the cursor is not in the text area
-        https://bugs.webkit.org/show_bug.cgi?id=41810
-
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::selectedTextRange):
-
-2010-07-07  Martin Robinson  <mrobinson@igalia.com>
-
-        Unreviewed.
-
-        Build fix after r62700.
-
-        * GNUmakefile.am: Update the source list to reflect the new TestNetscapePlugIn
-        source file locations.
-
-2010-07-07  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by David Levin.
-
-        change --exit-after-n-crashes to --exit-after-n-crashes-or-timeouts
-        https://bugs.webkit.org/show_bug.cgi?id=41814
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        * Scripts/old-run-webkit-tests:
-
-2010-07-07  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by David Levin.
-
-        add --exit-after-n-crashes to run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=41811
-
-        Change the bots at build.webkit.org to use --exit-after-n-crashes
-        instead of --exit-after-n-failures since we want to be able to have
-        more than 20 failures on those bots, but more than 20 crashes means
-        something should be rolled out.
-
-        * Scripts/old-run-webkit-tests:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-07-07  Brian Weinstein  <bweinstein@apple.com>
-
-        Fix the Windows build by removing win/TestNetscapePlugin/main.cpp from the
-        TestNetscapePlugin project, because this was removed from the tree.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-
-2010-07-07  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Simon Fraser.
-
-        Unify Mac and Windows TestNetscapePlugin main.cpp files
-        https://bugs.webkit.org/show_bug.cgi?id=41798
-        
-        * DumpRenderTree/DumpRenderTree.sln:
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (strcasecmp):
-        (NP_Initialize):
-        (NP_GetEntryPoints):
-        (NP_Shutdown):
-        (NPP_New):
-        (NPP_Destroy):
-        (NPP_HandleEvent):
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/win/TestNetscapePlugin/main.cpp: Removed.
-
-2010-07-07  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix. pageProperty needs to return a value.
-
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::pageProperty):
-
-2010-07-07  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/41788> commit-log-editor: wrong ChangeLog read when invoked from subdir with git
-
-        Reviewed by Anders Carlsson.
-
-        For both svn and git, commit-log-editor is invoked from the root
-        of the working directory.  Unlike svn, git returns a list of
-        changed files that are relative to the directory where the
-        command was invoked.  This caused the ChangeLog file in the root
-        directory to be read instead of the ChangeLog in the current
-        directory.
-
-        The fix is to use $ENV{PWD} as the base directory when fixing
-        the path to the ChangeLog files.  With svn, this has no net
-        effect since $ENV{PWD} is the root of the working directory and
-        the ChangeLog paths are already relative to that directory.
-        With git, $ENV{PWD} is the directory that the commit was invoked
-        from, which fixes the ChangeLog paths so that the correct files
-        are read when creating the commit log entry.
-
-        Note that the call to makeFilePathRelative() was supposed to
-        address this issue, but it doesn't because (a) it does nothing
-        with svn working directories by design, and (b) it does nothing
-        with git working directories because it's invoked when the
-        current directory is the root of the working directory, thus
-        giving no relative path.
-
-        * Scripts/commit-log-editor: Removed call to
-        makeFilePathRelative() since since it does nothing.  Moved code
-        to fix up $changeLog path so that it's fixed before trying to
-        open the file, and use $ENV{PWD} as the base path.  Also use
-        canonicalizePath() to clean up paths with "../" in them.
-
-2010-07-07  Anders Carlsson  <andersca@apple.com>
-
-        Another attempt at fixing the Qt build.
-
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-
-2010-07-07  Anders Carlsson  <andersca@apple.com>
-
-        Try to fix Qt build.
-
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-
-2010-07-07  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Simon Fraser.
-
-        Rename TestNetscapePlugin.subproj and move platform specific files to subdirectories
-        https://bugs.webkit.org/show_bug.cgi?id=41781
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp: Renamed from WebKitTools/DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp.
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.h: Renamed from WebKitTools/DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.h.
-        * DumpRenderTree/TestNetscapePlugIn/TestObject.cpp: Renamed from WebKitTools/DumpRenderTree/TestNetscapePlugIn.subproj/TestObject.cpp.
-        * DumpRenderTree/TestNetscapePlugIn/TestObject.h: Renamed from WebKitTools/DumpRenderTree/TestNetscapePlugIn.subproj/TestObject.h.
-        * DumpRenderTree/TestNetscapePlugIn/mac/Info.plist: Renamed from WebKitTools/DumpRenderTree/TestNetscapePlugIn.subproj/Info.plist.
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp: Renamed from WebKitTools/DumpRenderTree/TestNetscapePlugIn.subproj/main.cpp.
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.def: Renamed from WebKitTools/DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin.def.
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.rc: Renamed from WebKitTools/DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin.rc.
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj: Added.
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin_debug.def: Renamed from WebKitTools/DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin_debug.def.
-        * DumpRenderTree/TestNetscapePlugIn/win/resource.h: Renamed from WebKitTools/DumpRenderTree/win/TestNetscapePlugin/resource.h.
-        * DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin.vcproj: Removed.
-
-2010-07-07  Andras Becsi  <abecsi@webkit.org>
-
-        Unreviewed trivial fix.
-
-        Remove DUMPRENDERTREE_TEMP environment variable from NRWT
-        which was checked in accidentally in r62635.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2010-07-07  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
-
-        Reviewed by Eric Seidel.
-
-        Pass port specific environment to server process.
-        https://bugs.webkit.org/show_bug.cgi?id=41593
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2010-07-06  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Fix a wrong dup detection of rebaseline-chromium-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=41644
-
-        rebaseline-chromium-webkit-tests used ImageDiff with 0.1%
-        tolerance. We don't need tolerance for rebaseline.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-          Add optional tolerance parameter to diff_image().
-        * Scripts/webkitpy/layout_tests/port/test.py:
-          Add optional tolerance parameter to diff_image().
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-          Add optional tolerance parameter to diff_image(), and pass it to ImageDiff command.
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py:
-          diff_files() always calls diff_image() with tolerance=0.
-          diff_files() is used only by rebaseline-chromium-webkit-tests.
-
-2010-07-06  Sam Weinig  <sam@webkit.org>
-
-        Fix MiniBrowser build.
-
-        * MiniBrowser/mac/WebBundle/WebBundleMain.m:
-
-2010-07-06  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Add support for dumping the contents of messages to the console to WebKitTestRunner
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        (WTR::InjectedBundlePage::_addMessageToConsole):
-        (WTR::InjectedBundlePage::addMessageToConsole):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-
-2010-07-06  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Patch for https://bugs.webkit.org/show_bug.cgi?id=41708
-        Add dumpAsText support for WebKitTestRunner
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::InjectedBundle):
-        (WTR::InjectedBundle::reset): Reset the LayoutTestController for each test.
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::didFinishLoadForFrame): Use the new WKBundleFrameCopyInnerText
-        API to dump the main frames text.
-
-2010-07-06  Darin Adler  <darin@apple.com>
-
-        Fix Chromium build.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::didCreateDataSource): Call leakPtr instead of release.
-        (WebViewHost::didNavigateWithinPage): Ditto.
-        (WebViewHost::updateURL): Ditto.
-
-2010-07-06  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] build-webkit should not run autogen.sh unconditionally
-        https://bugs.webkit.org/show_bug.cgi?id=41704
-
-        * Scripts/webkitdirs.pm: Only run autogen.sh during a build if GNUmakefile
-        doesn't exist. Autotools should re-run autogen.sh when necessary. Also do
-        some very minor cleanup.
-
-2010-07-06  Darin Adler  <darin@apple.com>
-
-        Try to fix Chromium build.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp: Added include of PassOwnPtr.h.
-
-2010-07-06  Darin Adler  <darin@apple.com>
-
-        Fix build.
-
-        * WebKitAPITest/TestsController.cpp:
-        (WebKitAPITest::TestsController::addTest): Use leakPtr instead of release.
-
-2010-07-06  Roland Steiner  <rolandsteiner@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        Bug 40558 - [DRT/Chromium] Upstream TestShellDevTools for Chromium DRT
-        https://bugs.webkit.org/show_bug.cgi?id=40558
-
-        Upstream DevTools for Chromium DRT.
-        (original Chromium files rev. 51287)
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/DRTDevToolsAgent.cpp: Added.
-        (DRTDevToolsAgent::DRTDevToolsAgent):
-        (DRTDevToolsAgent::setWebView):
-        (DRTDevToolsAgent::sendMessageToFrontend):
-        (DRTDevToolsAgent::forceRepaint):
-        (DRTDevToolsAgent::runtimeFeatureStateChanged):
-        (DRTDevToolsAgent::injectedScriptSource):
-        (DRTDevToolsAgent::injectedScriptDispatcherSource):
-        (DRTDevToolsAgent::debuggerScriptSource):
-        (DRTDevToolsAgent::asyncCall):
-        (DRTDevToolsAgent::call):
-        (DRTDevToolsAgent::webDevToolsAgent):
-        (DRTDevToolsAgent::attach):
-        (DRTDevToolsAgent::detach):
-        (DRTDevToolsAgent::setTimelineProfilingEnabled):
-        (DRTDevToolsAgent::evaluateInWebInspector):
-        (DRTDevToolsAgent::dispatchMessageLoop):
-        * DumpRenderTree/chromium/DRTDevToolsAgent.h: Added.
-        (DRTDevToolsAgent::~DRTDevToolsAgent):
-        (DRTDevToolsAgent::hostIdentifier):
-        * DumpRenderTree/chromium/DRTDevToolsCallArgs.cpp:
-        * DumpRenderTree/chromium/DRTDevToolsCallArgs.h:
-        (DRTDevToolsCallArgs::DRTDevToolsCallArgs):
-        (DRTDevToolsCallArgs::~DRTDevToolsCallArgs):
-        (DRTDevToolsCallArgs::callsCount):
-        * DumpRenderTree/chromium/DRTDevToolsClient.cpp: Added.
-        (DRTDevToolsClient::DRTDevToolsClient):
-        (DRTDevToolsClient::~DRTDevToolsClient):
-        (DRTDevToolsClient::sendMessageToAgent):
-        (DRTDevToolsClient::sendDebuggerCommandToAgent):
-        (DRTDevToolsClient::activateWindow):
-        (DRTDevToolsClient::closeWindow):
-        (DRTDevToolsClient::dockWindow):
-        (DRTDevToolsClient::undockWindow):
-        (DRTDevToolsClient::asyncCall):
-        (DRTDevToolsClient::call):
-        (DRTDevToolsClient::allMessagesProcessed):
-        * DumpRenderTree/chromium/DRTDevToolsClient.h:
-        * DumpRenderTree/chromium/EventSender.cpp:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::closeWebInspector):
-        (LayoutTestController::setTimelineProfilingEnabled):
-        (LayoutTestController::evaluateInWebInspector):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::~TestShell):
-        (TestShell::createDRTDevToolsClient):
-        (TestShell::showDevTools):
-        (TestShell::closeDevTools):
-        (TestShell::runFileTest):
-        (TestShell::createNewWindow):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::drtDevToolsAgent):
-        (TestShell::drtDevToolsClient):
-        * DumpRenderTree/chromium/config.h:
-
-2010-07-06  Gabor Rapcsanyi  <rgabor@inf.u-szeged.hu>
-
-        Reviewed by Eric Seidel.
-
-        Don't pass image hash to DRT when pixel tests are disabled.
-        https://bugs.webkit.org/show_bug.cgi?id=41597
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-
-2010-07-05  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        REGRESSION(r60652): WebKitTools/Scripts/ensure-valid-python should cleanup temporary directory
-        https://bugs.webkit.org/show_bug.cgi?id=41612
-
-        * Scripts/ensure-valid-python: File::Temp::tempdir call fixed.
-
-2010-07-05  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        We should be able to specify a bug to block for webkit-patch upload
-        https://bugs.webkit.org/show_bug.cgi?id=41648
-
-        This will be useful for working on the HTML5 parser.
-
-        * Scripts/webkitpy/tool/steps/createbug.py:
-        * Scripts/webkitpy/tool/steps/options.py:
-
-2010-07-05  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Oliver Hunt.
-
-        The style checker exempts gtk2drawing.h when it should exempt gtkdrawing.h
-        https://bugs.webkit.org/show_bug.cgi?id=41017
-
-        * Scripts/webkitpy/style/checker.py: Exempt gtkdrawing.h instead of gtk2drawing.h
-        * Scripts/webkitpy/style/checker_unittest.py: Update the unit test to reflect the change.
-
-2010-07-04  MORITA Hajime  <morrita@google.com>
-
-        rebaseline-chromium-webkit-tests: UnicodeDecodeError
-        https://bugs.webkit.org/show_bug.cgi?id=41589
-
-        * run() method can result non-utf-8 bytes, that causes utf-8
-          decoding fail.  Fixed to disable decoding.
-        * Fixed Git.find_checkout_root() to make a test pass.
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-
-2010-07-03  Patrick Gansterer  <paroga@paroga.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Fix DumpRenderTree userStyleSheet handling.
-        https://bugs.webkit.org/show_bug.cgi?id=41570
-
-        DumpRenderTree did only set the userStyleSheet at
-        layoutTestController.setUserStyleSheetEnabled().
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::setUserStyleSheetLocation):
-        (LayoutTestController::setUserStyleSheetEnabled):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-07-03  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] support dumpChildFrameScrollPositions
-
-        https://bugs.webkit.org/show_bug.cgi?id=41088
-
-        Unskip:
-
-        http/tests/navigation/anchor-subframeload.html
-        http/tests/navigation/relativeanchor-frames.html
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::dumpFrameScrollPosition):
-        (WebCore::DumpRenderTree::dump):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController::shouldDumpChildFrameScrollPositions):
-        (LayoutTestController::dumpChildFrameScrollPositions):
-
-2010-07-02  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Rename new scripts so that they don't make autocompleting run-webkit-tests annoying.
-
-        * Scripts/debug-test-runner: Copied from Scripts/debug-webkittestrunner.
-        * Scripts/debug-webkittestrunner: Removed.
-        * Scripts/run-test-runner: Copied from Scripts/run-webkittestrunner.
-        * Scripts/run-webkittestrunner: Removed.
-
-2010-07-02  Brian Weinstein  <bweinstein@apple.com>
-
-        Reviewed by Steve Falkenburg.
-
-        Some http tests fail on Windows with Cygwin 1.7
-        https://bugs.webkit.org/show_bug.cgi?id=41537
-        
-        With Cygwin 1.7, the registry key at SOFTWARE\\Cygnus Solutions\\Cygwin\\mounts v2\\/
-        doesn't exist anymore, because the mount points are stored in /etc/fstab. However, we
-        just need root mount point, which is defined in SOFTWARE\\Cygwin\\setup.
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (resolveCygwinPath): Fall back to SOFTWARE\\Cygwin\\setup if 
-            SOFTWARE\\Cygnus Solutions\\Cygwin\\mounts v2\\/ doesn't work.
-
-2010-06-23  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        [GTK] Separate DerivedSources per-project
-        https://bugs.webkit.org/show_bug.cgi?id=41109
-
-        The JavaScriptCore cppflags used to include the top-level DerivedSources directory
-        allowing the tools to build as a side-effect. Now that the top-level directory
-        is no longer in the list of JavaScriptCore includes, include it explicitly.
-
-        * GNUmakefile.am:
-
-2010-07-01  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Make context menus show up in the right place in QTestBrowser
-
-        Context menus were shown at scene-relative coordinates for
-        QGraphicsWebView while QMenu expects them to be global. The
-        change to the QWidget case was to get rid of the mapToGlobal.
-
-        * QtTestBrowser/webview.cpp:
-
-2010-07-01  Robert Hogan <robert@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] dump frames in ascending alphabetical order of title
-
-        https://bugs.webkit.org/show_bug.cgi?id=41261
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::dumpHistoryItem):
-
-2010-07-01  Martin Robinson  <mrobinson@igalia.com>
-
-        Unreviewed. 
-
-        Fix the GTK+ build after r62278.
-
-        * Scripts/webkitdirs.pm: If the make arguments have already been specified,
-        let them override the automatic CPU detection for autotools builds.
-
-2010-07-01  Martin Robinson  <mrobinson@igalia.com>
-
-        Unreviewed.
-
-        Fix the Windows build after r62278.
-
-        * Scripts/num-cpus: Use FindBin to add the Scripts directory to the list of library directories.
-
-2010-07-01  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        [GTK] build-webkit does not detect the number of CPUs
-        https://bugs.webkit.org/show_bug.cgi?id=41469
-
-        Pass the appropriate -j<#> flag to make when building autotools builds.
-        This causes make to spawn that many number of child processes for doing
-        parallel builds.
-
-        * Scripts/num-cpus: Use the newly abstracted numberOfCPUs to return the number
-        of CPUs. This makes the script work across more platforms.
-        * Scripts/webkitdirs.pm: Create a numberOfCPUs/determineNumberOfCPUs to determine the
-        number of CPUs across several platforms. Use this new function to determine the appropriate
-        arguments to pass to make for doing parallel builds with autotools build files.
-
-2010-07-01  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Rubber-stamped by Laszlo Gombos.
-
-        [Qt][Symbian] Bumped up the maximum heap size to 96MB
-
-        * QtTestBrowser/QtTestBrowser.pro: Removed explicit heap size declaration
-        and use the one from WebKit.pri instead.
-
-2010-07-01  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Promote webkit-patch land-safely to main help
-        https://bugs.webkit.org/show_bug.cgi?id=41446
-
-        I've been using this command a bunch and recommending it to folks.  We
-        should show it in main help as it's past the experimental phase.
-
-        * Scripts/webkitpy/tool/commands/upload.py:
-
-2010-06-28  MORITA Hajime  <morrita@google.com>
-
-        Reviewed by Shinichiro Hamaji.
-
-        rebaseline-chromium-webkit-tests doesn't do diffs right with a Git checkout of WebKit
-        https://bugs.webkit.org/show_bug.cgi?id=38775
-
-        - Introduced SCM.show_head() and SCM.diff_for_file().
-        - Replaced direct svn invocations with newly implement SCM methods.
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-
-2010-06-30  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Allow MiniBrowser to open local files
-        https://bugs.webkit.org/show_bug.cgi?id=41104
-
-        Wire up the openDocument: message with an NSOpenPanel, so we can open
-        local files.
-        
-        Also change the xib so that the window remembers its size.
-        
-        * MiniBrowser/mac/AppDelegate.m:
-        (-[BrowserAppDelegate frontmostBrowserWindowController]):
-        (-[BrowserAppDelegate openDocument:]):
-        (-[BrowserAppDelegate openPanelDidEnd:returnCode:contextInfo:]):
-        * MiniBrowser/mac/English.lproj/BrowserWindow.xib:
-
-2010-06-30  Sam Weinig  <sam@webkit.org>
-
-        Rubber-stamped by Anders Carlsson.
-
-        Add debug-webkittestrunner and cleanup related scripts.
-
-        * Scripts/debug-webkittestrunner: Added.
-        * Scripts/run-webkittestrunner:
-        * Scripts/webkitdirs.pm:
-
-2010-06-30  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix after recent changes to LayoutTestController.
-
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::pageSizeAndMarginsInPixels):
-
-2010-06-29  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Patch for https://bugs.webkit.org/show_bug.cgi?id=41389
-        Make WebKitTestRunner work with more than one test at a time.
-
-        This converts WebKitTestRunner to a similar model as DumpRenderTree,
-        where there is a single WKView and each test is run it, rather than
-        the design I was using where each test got its own WKView.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::didRecieveMessage):
-        (WTR::InjectedBundle::reset):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-        (WTR::TestController::runTest):
-        (WTR::TestController::_didRecieveMessageFromInjectedBundle):
-        (WTR::TestController::didRecieveMessageFromInjectedBundle):
-        * WebKitTestRunner/TestController.h:
-        (WTR::TestController::mainWebView):
-        (WTR::TestController::pageNamespace):
-        (WTR::TestController::context):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::TestInvocation):
-        (WTR::TestInvocation::~TestInvocation):
-        (WTR::TestInvocation::invoke):
-        (WTR::TestInvocation::didRecieveMessageFromInjectedBundle):
-        * WebKitTestRunner/TestInvocation.h:
-
-2010-06-30  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt][Symbian] Only 10 websites can be loaded consecutively when using QtWebkit 2.0
-        https://bugs.webkit.org/show_bug.cgi?id=40446
-
-        We quickly run out of memory on Symbian when loading web pages. This is
-        caused by the default heap size, which is not suited for a web browser.
-
-        This change bumps the max heap size to 32MB.
-
-        * QtTestBrowser/QtTestBrowser.pro:
-
-2010-06-30  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        webkit-patch land allow the user to continue even if the builders are red
-        https://bugs.webkit.org/show_bug.cgi?id=41395
-
-        I don't think it's good that we've been teaching people
-        to always pass --ignore-builders.  At least land is now
-        useable w/o --ignore-builders.
-
-        * Scripts/webkitpy/tool/steps/ensurebuildersaregreen.py:
-
-2010-06-29  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] support dumpResourceResponseMIMETypes
-        https://bugs.webkit.org/show_bug.cgi?id=41260
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::dumpResourceResponseMIMETypes):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-06-29  Diego Gonzalez  <diegohcg@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Resize scene when Qt DRT WebPage receives a geometry change request
-        https://bugs.webkit.org/show_bug.cgi?id=41173
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::setViewGeometry):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-
-2010-06-29  Diego Gonzalez  <diegohcg@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Deal with postEvent in case of graphics based DRT
-        https://bugs.webkit.org/show_bug.cgi?id=41174
-
-        QGraphicsScene does not have a postEvent method, so make scene
-        send the event, in case of graphics based DRT, and delete it after that.
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::scheduleAsynchronousClick):
-        (EventSender::replaySavedEvents):
-        (EventSender::postEvent):
-        * DumpRenderTree/qt/EventSenderQt.h:
-
-2010-06-29  Diego Gonzalez  <diegohcg@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Make switchFocus() method works with QGraphicsWebView in Qt DRT
-        https://bugs.webkit.org/show_bug.cgi?id=41172
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::switchFocus):
-
-2010-06-29  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [Gtk] Make DRT more coherent with other ports to allow reusing more tests
-        https://bugs.webkit.org/show_bug.cgi?id=40009
-
-        Make sure "AXRole: ", "AXTitle: " and "AXDescription: " prefixes
-        are used when returning those values, for coherency with other ports.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::role):
-        (AccessibilityUIElement::title):
-        (AccessibilityUIElement::description):
-
-2010-06-29  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r62106.
-        http://trac.webkit.org/changeset/62106
-        https://bugs.webkit.org/show_bug.cgi?id=41346
-
-        "Broke editing tests" (Requested by xan_ on #webkit).
-
-        * Scripts/old-run-webkit-tests:
-
-2010-06-29  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        Ensure DRT loads GAIL (Gtk+ module), for a11y tests
-        https://bugs.webkit.org/show_bug.cgi?id=38648
-
-        Add the GTK_MODULES envvar (set to "gail") to the clean
-        environment when running DRT for the Gtk+ port
-
-        * Scripts/old-run-webkit-tests:
-
-2010-06-28  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        Switch test-html5-parser back to using runner.html.
-
-        * Scripts/test-html5-parser:
-
-2010-06-28  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Restore webkit-runner.html for use with new tree builder
-        https://bugs.webkit.org/show_bug.cgi?id=41317
-
-        For now, we just want to run webkit-runner when we test-html5-parser.
-
-        * Scripts/test-html5-parser:
-
-2010-06-23  John Gregg  <johnnyg@google.com>
-
-        Reviewed by Kent Tamura.
-
-        add ENABLE_DIRECTORY_UPLOAD build support
-        https://bugs.webkit.org/show_bug.cgi?id=41100
-
-        * Scripts/build-webkit:
-
-2010-06-28  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Rubber-stamped by Xan Lopez.
-
-        Update webkitdirs's knowledge of our library's name.
-
-        * Scripts/webkitdirs.pm:
-
-2010-06-28  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Patch for https://bugs.webkit.org/show_bug.cgi?id=41299
-        Build up WebKitTestRunner output in the InjectedBundle
-
-        Simplify WebKitTestRunner by building up the output in the InjectedBundle
-        and sending it over postMessage when done, instead of using the async
-        WKPageRenderTreeExternalRepresentation.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::done):
-        (WTR::InjectedBundle::didRecieveMessage):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (WTR::InjectedBundle::os):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::WKStringToUTF8):
-        (WTR::InjectedBundlePage::didFinishLoadForFrame):
-        (WTR::InjectedBundlePage::didFailLoadWithErrorForFrame):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::WKStringToUTF8):
-        (WTR::TestInvocation::TestInvocation):
-        (WTR::TestInvocation::invoke):
-        (WTR::TestInvocation::initializeMainWebView):
-        (WTR::TestInvocation::_didRecieveMessageFromInjectedBundle):
-        (WTR::TestInvocation::didRecieveMessageFromInjectedBundle):
-        * WebKitTestRunner/TestInvocation.h:
-
-2010-06-28  Robert Hogan  <robert@webkit.org>
-
-        Unreviewed, rolling out r62021.
-        http://trac.webkit.org/changeset/62021
-        https://bugs.webkit.org/show_bug.cgi?id=41261
-
-        Broke http/navigation tests among other
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::dumpFramesAsText):
-
-2010-06-28  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Add run-webkittestrunner to run WebKitTestRunner with the appropriate
-        environment.
-
-        * Scripts/run-webkittestrunner: Added.
-        * Scripts/webkitdirs.pm:
-
-2010-06-28  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] dump frames in ascending alphabetical order of title
-
-        https://bugs.webkit.org/show_bug.cgi?id=41261
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::dumpFramesAsText):
-
-2010-06-28  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] dump bf history of child windows
-
-        https://bugs.webkit.org/show_bug.cgi?id=41266
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::dumpBackForwardList):
-        (WebCore::DumpRenderTree::dump):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-
-2010-06-28  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Patch for https://bugs.webkit.org/show_bug.cgi?id=41288
-        WebKit2: Add frame API for InjectedBundle code
-
-        * MiniBrowser/mac/WebBundle/WebBundleMain.m:
-        (_didClearWindowForFrame):
-
-2010-06-28  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] QtTestBrowser does not have a "Load" button ; therefore, unable to load pages on touch only symbian devices (portrait mode).
-        https://bugs.webkit.org/show_bug.cgi?id=38597
-
-        Fix behavior so reload button really acts as a load and a reload button.
-
-        * QtTestBrowser/mainwindow.cpp:
-        (MainWindow::changeLocation):
-
-2010-06-28  Xan Lopez  <xlopez@igalia.com>
-
-        Reviewed by Gustavo Noronha.
-
-        [GTK] Does not compile with -DGSEAL_ENABLE
-        https://bugs.webkit.org/show_bug.cgi?id=37851
-
-        Fix build with GSEAL enabled.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (gtk_widget_get_window):
-        (prepareMouseButtonEvent):
-        (mouseMoveToCallback):
-        (mouseWheelToCallback):
-        (keyDownCallback):
-
-2010-06-28  Xan Lopez  <xlopez@igalia.com>
-
-        Reviewed by Gustavo Noronha.
-
-        [GTK] Add support for GTK+3
-        https://bugs.webkit.org/show_bug.cgi?id=41253
-
-        Adapt build system for 3.x support.
-
-        * GNUmakefile.am:
-
-2010-06-10  Mahesh Kulkarni  <mahesh.kulkarni@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        [QT][S60] build-webkit scripts picks wrong make spec for windows build
-        https://bugs.webkit.org/show_bug.cgi?id=41198
-
-        Instead of checking for existence of %EPOCROOT% on windows, mandatory use of --symbian flag for symbian builds. 
-
-        * Scripts/webkitdirs.pm:
-        (determineIsSymbian): remove check for %EPOCROOT% as one can build for windows port of QT as well
-
-2010-06-28  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Make it possible to test the new HTML5 TreeBuilder
-        https://bugs.webkit.org/show_bug.cgi?id=41276
-
-        Adam was concerned that someone might make their port
-        depend on this setting (I guess we had some trouble with that
-        with the HTML5Parser setting), so I littered the code with warnings.
-
-        test-html5-parser now tests this code path.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        (initializeGlobalsFromCommandLineOptions):
-        * Scripts/test-html5-parser:
-
-2010-06-27  MORITA Hajime  <morrita@google.com>
-
-        Unreviewed. 
-        
-        Some never-called @staticmethods touched self. 
-        Fixed it to replace these self with a class.
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-
-2010-06-27  MORITA Hajime  <morrita@google.com>
-
-        Unreviewed.
-        
-        Fixed exception raising syntax that is pointed out at
-        https://bugs.webkit.org/show_bug.cgi?id=41153
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/checkout/scm_unittest.py: 
-          Removed a bad line that I accidentally checked-in at last revision.
-
-2010-06-24  MORITA Hajime  <morrita@google.com>
-
-        Reviewed by Eric Seidel.
-
-        rebaseline-chromium-webkit-tests should add or remove files to local git repository
-        https://bugs.webkit.org/show_bug.cgi?id=41153
-
-        - Added SCM.add() and SCM.remove()
-        - Replaced "svn add" and "svn remove"
-          rebaseline_chromium_webkit_tests.py: in with SCM method equivalents.
-        - add "-U" and "-q" options to rebaseline_chromium_webkit_tests.py
-          for debugging purpose.
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-
-2010-06-25  Yuzo Fujishima  <yuzo@google.com>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Improve default value handling for page format properties.
-        https://bugs.webkit.org/show_bug.cgi?id=41150
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (parsePageNumber):
-        (parsePageNumberSizeMarings):
-        (pageSizeAndMarginsInPixelsCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::pageSizeAndMarginsInPixels):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::pageSizeAndMarginsInPixels):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::pageSizeAndMarginsInPixels):
-
-2010-06-21  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] DRT Support for setCustomPolicyDelegate
-
-        https://bugs.webkit.org/show_bug.cgi?id=39564
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setCustomPolicyDelegate):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-06-26  Robert Hogan  <robert@webkit.org>
-
-        Unreviewed, Qt build fix following http://trac.webkit.org/changeset/61879
-        
-        Remove qwebscriptworld.h from LayoutTestControllerQt.cpp - it is no longer
-        exported.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-
-2010-06-26  Tony Gentilcore  <tonyg@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Add a build-webkit option for enabling Web Timing support.
-        https://bugs.webkit.org/show_bug.cgi?id=38924
-
-        * Scripts/build-webkit:
-
-2010-06-25  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] QtTestBrowser does not have a "Load" button ; therefore, unable to load pages on touch only symbian devices (portrait mode).
-        https://bugs.webkit.org/show_bug.cgi?id=38597
-
-        Make the reload button act as a load button as well.
-
-        * QtTestBrowser/mainwindow.cpp:
-        (MainWindow::buildUI):
-        (MainWindow::changeLocation):
-
-2010-06-25  Prasad Tammana  <prasadt@chromium.org>
-
-        Reviewed by Dmitry Titov.
-
-        Add empty abortModal() method to all platforms.
-        https://bugs.webkit.org/show_bug.cgi?id=40864
-
-        Add an empty abortModal() stub to LayoutTestController on all platforms to get rid of platform specific #ifs in
-        platform independent LayoutTestController code.  Without this change, layout tests using LayoutTestController tests
-        that use abortModal will become mac specific which is not desirable.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (abortModalCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::abortModal):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::abortModal):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController::abortModal):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::abortModal):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::abortModal):
-
-2010-06-25  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Patch for https://bugs.webkit.org/show_bug.cgi?id=41226
-        Flesh out injected bundle code for WebKitTestRunner and add basic LayoutTestController.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp: Added.
-        (WTR::InjectedBundle::shared):
-        (WTR::InjectedBundle::InjectedBundle):
-        (WTR::InjectedBundle::_didCreatePage):
-        (WTR::InjectedBundle::_willDestroyPage):
-        (WTR::InjectedBundle::_didRecieveMessage):
-        (WTR::InjectedBundle::initialize):
-        (WTR::InjectedBundle::didCreatePage):
-        (WTR::InjectedBundle::willDestroyPage):
-        (WTR::InjectedBundle::didRecieveMessage):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h: Added.
-        (WTR::InjectedBundle::layoutTestController):
-        * WebKitTestRunner/InjectedBundle/InjectedBundleMain.cpp:
-        (WKBundleInitialize):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp: Added.
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        (WTR::InjectedBundlePage::~InjectedBundlePage):
-        (WTR::InjectedBundlePage::_didStartProvisionalLoadForFrame):
-        (WTR::InjectedBundlePage::_didReceiveServerRedirectForProvisionalLoadForFrame):
-        (WTR::InjectedBundlePage::_didFailProvisionalLoadWithErrorForFrame):
-        (WTR::InjectedBundlePage::_didCommitLoadForFrame):
-        (WTR::InjectedBundlePage::_didFinishLoadForFrame):
-        (WTR::InjectedBundlePage::_didFailLoadWithErrorForFrame):
-        (WTR::InjectedBundlePage::_didReceiveTitleForFrame):
-        (WTR::InjectedBundlePage::_didClearWindowForFrame):
-        (WTR::InjectedBundlePage::didStartProvisionalLoadForFrame):
-        (WTR::InjectedBundlePage::didReceiveServerRedirectForProvisionalLoadForFrame):
-        (WTR::InjectedBundlePage::didFailProvisionalLoadWithErrorForFrame):
-        (WTR::InjectedBundlePage::didCommitLoadForFrame):
-        (WTR::InjectedBundlePage::didFinishLoadForFrame):
-        (WTR::InjectedBundlePage::didFailLoadWithErrorForFrame):
-        (WTR::InjectedBundlePage::didReceiveTitleForFrame):
-        (WTR::InjectedBundlePage::didClearWindowForFrame):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h: Added.
-        (WTR::InjectedBundlePage::page):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp: Added.
-        (WTR::LayoutTestController::create):
-        (WTR::LayoutTestController::LayoutTestController):
-        (WTR::LayoutTestController::~LayoutTestController):
-        (WTR::dumpAsTextCallback):
-        (WTR::layoutTestControllerObjectFinalize):
-        (WTR::LayoutTestController::makeWindowObject):
-        (WTR::LayoutTestController::getJSClass):
-        (WTR::LayoutTestController::staticFunctions):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h: Added.
-        (WTR::LayoutTestController::dumpAsText):
-        (WTR::LayoutTestController::setDumpAsText):
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-
-2010-06-25  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Make WebKitTestRunner really work with run-webkit-tests. 
-
-        - Add Forwarding headers to allow some cleanup.
-
-        * WebKitTestRunner/ForwardingHeaders: Added.
-        * WebKitTestRunner/ForwardingHeaders/wtf: Added.
-        * WebKitTestRunner/ForwardingHeaders/wtf/ASCIICType.h: Added.
-        * WebKitTestRunner/ForwardingHeaders/wtf/Assertions.h: Added.
-        * WebKitTestRunner/ForwardingHeaders/wtf/Atomics.h: Added.
-        * WebKitTestRunner/ForwardingHeaders/wtf/FastMalloc.h: Added.
-        * WebKitTestRunner/ForwardingHeaders/wtf/HashMap.h: Added.
-        * WebKitTestRunner/ForwardingHeaders/wtf/HashSet.h: Added.
-        * WebKitTestRunner/ForwardingHeaders/wtf/HashTraits.h: Added.
-        * WebKitTestRunner/ForwardingHeaders/wtf/Locker.h: Added.
-        * WebKitTestRunner/ForwardingHeaders/wtf/MainThread.h: Added.
-        * WebKitTestRunner/ForwardingHeaders/wtf/MathExtras.h: Added.
-        * WebKitTestRunner/ForwardingHeaders/wtf/Noncopyable.h: Added.
-        * WebKitTestRunner/ForwardingHeaders/wtf/OwnPtr.h: Added.
-        * WebKitTestRunner/ForwardingHeaders/wtf/OwnPtrCommon.h: Added.
-        * WebKitTestRunner/ForwardingHeaders/wtf/PassOwnPtr.h: Added.
-        * WebKitTestRunner/ForwardingHeaders/wtf/PassRefPtr.h: Added.
-        * WebKitTestRunner/ForwardingHeaders/wtf/Platform.h: Added.
-        * WebKitTestRunner/ForwardingHeaders/wtf/RefCounted.h: Added.
-        * WebKitTestRunner/ForwardingHeaders/wtf/RefPtr.h: Added.
-        * WebKitTestRunner/ForwardingHeaders/wtf/RetainPtr.h: Added.
-        * WebKitTestRunner/ForwardingHeaders/wtf/StringExtras.h: Added.
-        * WebKitTestRunner/ForwardingHeaders/wtf/ThreadSafeShared.h: Added.
-        * WebKitTestRunner/ForwardingHeaders/wtf/Threading.h: Added.
-        * WebKitTestRunner/ForwardingHeaders/wtf/ThreadingPrimitives.h: Added.
-        * WebKitTestRunner/ForwardingHeaders/wtf/Vector.h: Added.
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::dump): Dump the right number of #EOFs.
-        * WebKitTestRunner/TestInvocation.h:
-
-2010-06-25  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        Add support for WebKitTestRunner to old-run-webkit-tests
-
-        - Also adds a script to build WebKitTestRunner for old-run-webkit-tests to use.
-
-        * Scripts/build-webkittestrunner: Added.
-        * Scripts/old-run-webkit-tests:
-
-2010-06-25  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by David Levin.
-
-        Incremental build failed on Chromium ews
-        https://bugs.webkit.org/show_bug.cgi?id=41011
-
-        The division of responsibility between update-webkit --chromium and
-        build-webkit --chromium is slightly unclear.  In this patch, we make
-        build-webkit --chromium also update DEPS and re-run GYP in case the
-        developer has changed either since they updated.
-
-        This change is also helpful for the EWS, which wants to update DEPS and
-        re-run GYP after applying patches, but the EWS doesn't want to run
-        update-webkit --chromium because it has a dirty working copy.
-
-        * Scripts/webkitdirs.pm:
-
-2010-06-25  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] Support evaluateScriptInIsolatedWorld()
-
-        https://bugs.webkit.org/show_bug.cgi?id=40079
-
-        Remove evaluateScriptInIsolatedWorld() from QtWebKit API.
-        Remove QWebScriptWorld from exported headers.
-        Confine support to DumpRenderTreeSupportQt so that the tests can pass.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::evaluateScriptInIsolatedWorld):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-06-25  Anders Carlsson  <andersca@apple.com>
-
-        Revert accidental part and add a newline.
-
-        * MiniBrowser/mac/AppDelegate.m:
-        * MiniBrowser/mac/MiniBrowser_Prefix.pch:
-
-2010-06-25  Anders Carlsson  <andersca@apple.com>
-
-        Rubber-stamped by Dan Bernstein.
-
-        Add a LOG macro that expands to a no-op by default.
-
-        * MiniBrowser/MiniBrowser.xcodeproj/project.pbxproj:
-        * MiniBrowser/mac/AppDelegate.m:
-        (_didRecieveMessageFromInjectedBundle):
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController windowShouldClose:]):
-        (_didStartProvisionalLoadForFrame):
-        (_didReceiveServerRedirectForProvisionalLoadForFrame):
-        (_didFailProvisionalLoadWithErrorForFrame):
-        (_didCommitLoadForFrame):
-        (_didFinishLoadForFrame):
-        (_didFailLoadWithErrorForFrame):
-        (_didReceiveTitleForFrame):
-        (_didFirstLayoutForFrame):
-        (_didFirstVisuallyNonEmptyLayoutForFrame):
-        (_didBecomeUnresponsive):
-        (_didBecomeResponsive):
-        (_decidePolicyForNavigationAction):
-        (_decidePolicyForNewWindowAction):
-        (_createNewPage):
-        (_showPage):
-        (_closePage):
-        (_didNavigateWithNavigationData):
-        (_didPerformClientRedirect):
-        (_didPerformServerRedirect):
-        (_didUpdateHistoryTitle):
-        * MiniBrowser/mac/MiniBrowser_Prefix.pch:
-        * MiniBrowser/mac/WebBundle/WebBundleMain.m:
-        (_didClearWindowForFrame):
-        (_didCreatePage):
-        (_willDestroyPage):
-        (_didRecieveMessage):
-
-2010-06-24  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        commit-queue is taking too long to land patches because of red trees
-        https://bugs.webkit.org/show_bug.cgi?id=41194
-
-        Instead of checking for the tree to be green, we'll just spin hot
-        trying to land patches.  This is probably too extreme in ignoring the
-        tree, but I think we should try it for a while to see if we have
-        trouble.  That will help us find the right balance.
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2010-06-24  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] Clean up the use of gdk_window_get_root_coords in EventSender
-        https://bugs.webkit.org/show_bug.cgi?id=40843
-
-        Define the version for old GTK+s in a way that is forward-compatible
-        and clean up the logic a bit.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (gdk_window_get_root_coords): Renamed and cleaned up.
-        (prepareMouseButtonEvent): Remove #ifdefs.
-        (mouseMoveToCallback): Remove #ifdefs.
-
-2010-06-24  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Fix NewRunWebKitTests to work on Windows.
-        https://bugs.webkit.org/show_bug.cgi?id=41180
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Added "perl" as first arguments,
-            because Windows fails to understand what we're asking of it.
-
-2010-06-24  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] The url passed to the WebView during layout tests is invalid
-        https://bugs.webkit.org/show_bug.cgi?id=40832
-
-        Set the test URL to the full real file URL and do a small cleanup.
-        Previously a URL like file://relative/path/to/test.html was passed
-        to the WebView. This malformed file URL would be returned by
-        webkit_web_view_get_url and webkit_web_frame_get_url.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (shouldLogFrameLoadDelegates): Change to take a const string& as the argument.
-        (shouldOpenWebInspector): Change to take a const string& as the argument.
-        (shouldEnableDeveloperExtras): Change to take a const string& as the argument.
-        (runTest): Pass the full file:// URL to the view. Remove the superfluous url variable.
-
-2010-06-24  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Fix WebKitTestRunner Makefile typos.
-
-        * WebKitTestRunner/Makefile:
-
-2010-06-24  Adele Peterson  <adele@apple.com>
-
-        Reviewed by Eric Carlson.
-
-        DumpRenderTree part of testing <rdar://problem/8093680> "Paste and Match Style" should fire paste events
-        https://bugs.webkit.org/show_bug.cgi?id=41085
-
-        * DumpRenderTree/mac/DumpRenderTree.mm: (resetWebViewToConsistentStateBeforeTesting):
-        Clear the general pasteboard in between tests so Cut,Copy, and setData on ClipboardData won't have lasting effects.
-
-2010-06-23  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Patch for https://bugs.webkit.org/show_bug.cgi?id=41086
-        Add new WebKitTestRunner project (ie. DRT for WebKit2).
-
-        - Mac only.
-        - run-webkit-tests has not been modified to call it yet.
-        - Only dumps the render tree at this time. 
-
-        * WebKitTestRunner: Added.
-        * WebKitTestRunner/Configurations: Added.
-        * WebKitTestRunner/Configurations/Base.xcconfig: Added.
-        * WebKitTestRunner/Configurations/DebugRelease.xcconfig: Added.
-        * WebKitTestRunner/Configurations/InjectedBundle.xcconfig: Added.
-        * WebKitTestRunner/Configurations/WebKitTestRunner.xcconfig: Added.
-        * WebKitTestRunner/InjectedBundle: Added.
-        * WebKitTestRunner/InjectedBundle-Info.plist: Added.
-        * WebKitTestRunner/InjectedBundle/InjectedBundleMain.cpp: Added.
-        (_didStartProvisionalLoadForFrame):
-        (_didReceiveServerRedirectForProvisionalLoadForFrame):
-        (_didFailProvisionalLoadWithErrorForFrame):
-        (_didCommitLoadForFrame):
-        (_didFinishLoadForFrame):
-        (_didFailLoadWithErrorForFrame):
-        (_didReceiveTitleForFrame):
-        (_didClearWindow):
-        (_didCreatePage):
-        (_willDestroyPage):
-        (_didRecieveMessage):
-        (WKBundleInitialize):
-        * WebKitTestRunner/Makefile: Added.
-        * WebKitTestRunner/PlatformWebView.h: Added.
-        (WTR::PlatformWebView::platformView):
-        * WebKitTestRunner/TestController.cpp: Added.
-        (WTR::TestController::shared):
-        (WTR::TestController::TestController):
-        (WTR::TestController::initialize):
-        (WTR::TestController::runTest):
-        (WTR::TestController::runTestingServerLoop):
-        (WTR::TestController::run):
-        * WebKitTestRunner/TestController.h: Added.
-        (WTR::TestController::verbose):
-        (WTR::TestController::injectedBundlePath):
-        * WebKitTestRunner/TestInvocation.cpp: Added.
-        (WTR::createWKURL):
-        (WTR::TestInvocation::TestInvocation):
-        (WTR::TestInvocation::~TestInvocation):
-        (WTR::TestInvocation::invoke):
-        (WTR::TestInvocation::dump):
-        (WTR::TestInvocation::initializeMainWebView):
-        (WTR::TestInvocation::didStartProvisionalLoadForFrame):
-        (WTR::TestInvocation::didReceiveServerRedirectForProvisionalLoadForFrame):
-        (WTR::TestInvocation::didFailProvisionalLoadWithErrorForFrame):
-        (WTR::TestInvocation::didCommitLoadForFrame):
-        (WTR::TestInvocation::didFinishLoadForFrame):
-        (WTR::TestInvocation::didFailLoadForFrame):
-        (WTR::TestInvocation::renderTreeExternalRepresentationFunction):
-        (WTR::TestInvocation::renderTreeExternalRepresentationDisposeFunction):
-        * WebKitTestRunner/TestInvocation.h: Added.
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj: Added.
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj: Added.
-        * WebKitTestRunner/WebKitTestRunnerPrefix.h: Added.
-        * WebKitTestRunner/mac: Added.
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm: Added.
-        (WTR::PlatformWebView::PlatformWebView):
-        (WTR::PlatformWebView::~PlatformWebView):
-        (WTR::PlatformWebView::page):
-        * WebKitTestRunner/mac/TestInvocationMac.mm: Added.
-        (WTR::TestInvocation::runUntil):
-        * WebKitTestRunner/mac/main.mm: Added.
-        (main):
-
-2010-06-24  Luiz Agostini  <luiz.agostini@openbossa.org>
-
-        Unreviewed. Adding myself to the committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-06-23  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix, adding new LayoutTestController methods and enabling SVG_FOREIGN_OBJECT.
-
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::isPageBoxVisible):
-        (LayoutTestController::pageAreaRectInPixels):
-        (LayoutTestController::preferredPageSizeInPixels):
-        * wx/build/settings.py:
-
-2010-06-23  James Robinson  <jamesr@chromium.org>
-
-        Unreviewed.  Add my IRC handle to committers.py so the sheriffbot can yell at me.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-06-23  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Correct Chromium test configuration
-        https://bugs.webkit.org/show_bug.cgi?id=41057
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-         - Add "--use-drt" option for NRWT. It is required for Chromium and
-           ignored for other platforms.
-         - Skip JSC test on Chromium
-        * BuildSlaveSupport/test-result-archive:
-          Add Chromium support.
-
-2010-06-23  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Fix for https://bugs.webkit.org/show_bug.cgi?id=41073
-        WebKit2: Flesh out more of the InjectedBundle client API
-
-        * MiniBrowser/mac/WebBundle/WebBundleMain.m:
-        (_didStartProvisionalLoadForFrame):
-        (_didReceiveServerRedirectForProvisionalLoadForFrame):
-        (_didFailProvisionalLoadWithErrorForFrame):
-        (_didCommitLoadForFrame):
-        (_didFinishLoadForFrame):
-        (_didFailLoadWithErrorForFrame):
-        (_didReceiveTitleForFrame):
-        (_didClearWindowForFrame):
-        (_didCreatePage):
-        (_willDestroyPage):
-        (WKBundleInitialize):
-
-2010-06-23  Yuzo Fujishima  <yuzo@google.com>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Implement page format data programming interface.
-        Add methods for testing.
-        https://bugs.webkit.org/show_bug.cgi?id=37538
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (parsePageNumber):
-        (isPageBoxVisibleCallback):
-        (pageAreaRectInPixelsCallback):
-        (preferredPageSizeInPixelsCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::isPageBoxVisible):
-        (LayoutTestController::pageAreaRectInPixels):
-        (LayoutTestController::preferredPageSizeInPixels):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::isPageBoxVisible):
-        (LayoutTestController::pageAreaRectInPixels):
-        (LayoutTestController::preferredPageSizeInPixels):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::isPageBoxVisible):
-        (LayoutTestController::pageAreaRectInPixels):
-        (LayoutTestController::preferredPageSizeInPixels):
-
-2010-06-23  Sam Magnuson  <smagnuson@netflix.com>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Follow proper convention for if/switch/while as I've discovered
-        them to be through my review processes.
-        https://bugs.webkit.org/show_bug.cgi?id=40723
-
-        Modified test so that if( foo ) is not allowed as it appears not
-        to be the accepted convention.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-
-2010-06-22  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Run clean-header-guards to fix some header guards
-        https://bugs.webkit.org/show_bug.cgi?id=41044
-
-        No functional changes, thus no tests.
-
-        This entire change was generated by running
-        clean-header-guards, and then reverting changes
-        to files which shouldn't be changed.  Those which
-        are left all should be updated.
-
-        Some of these changes are just fixing 755 permissions
-        to be 644, since it seems various files have the wrong
-        execute bit which don't need it.  clean-header-guards
-        made those (welcome) permission fixes unintentionally.
-
-        * DumpRenderTree/chromium/WebThemeControlDRT.h:
-        * DumpRenderTree/chromium/WebThemeEngineDRT.h:
-        * QtTestBrowser/fpstimer.h:
-
-2010-06-22  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Rename HTMLDocumentParser to LegacyHTMLDocumentParser
-        https://bugs.webkit.org/show_bug.cgi?id=41043
-
-        Update the hash.
-
-        * Scripts/do-webcore-rename:
-
-2010-06-22  Sam Magnuson  <smagnuson@netflix.com>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Follow proper convention for variable declaration spacing.
-        https://bugs.webkit.org/show_bug.cgi?id=40724
-
-        Modified test so that 'int   a;' is not allowed.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-
-2010-06-22  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Add Tony Gentilcore now that he's a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-06-22  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Remove Gtk 64-Release bot from core since it's broken
-        https://bugs.webkit.org/show_bug.cgi?id=41022
-
-        This bot alone has been responsible for more than 72 hours of
-        commit-queue blockage in the last week.  The bot is broken -- keeps
-        losing its display server or similar.  Until the Gtk folks can fix the
-        bot, we need to remove it from core.  The WebKit community can't keep
-        it green as is.
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot_unittest.py:
-
-2010-06-21  Dumitru Daniliuc  <dumi@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Fix the Windows build.
-        https://bugs.webkit.org/show_bug.cgi?id=40972
-
-        * DumpRenderTree/win/ImageDiff.vcproj:
-
-2010-06-21  Prasad Tammana  <prasadt@chromium.org>
-
-        Reviewed by Darin Adler, Dmitry Titov.
-
-        DumpRenderTree should allow tests with modal dialogs
-        https://bugs.webkit.org/show_bug.cgi?id=35350
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (abortModalCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::abortModal):
-        Add abortModal method to LayoutTestController and make it available from script.
-
-        * DumpRenderTree/mac/UIDelegate.mm: Add support for showModalDialog.
-        (-[UIDelegate modalWindowWillClose:]): Observer for NSWindowWillCloseNotifications to call
-        abortModal from when modal window closes.
-        (-[UIDelegate webViewRunModal:]): Delegate method for showModalDialog to run the modal loop.
-
-2010-06-21  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Anders Carlsson.
-        
-        Rename DrawingAreaProxyUpdateChunk to ChunkedUpdateDrawingArea
-        https://bugs.webkit.org/show_bug.cgi?id=40948
-        
-        Have the script look in WebKit2.
-
-        * Scripts/do-webcore-rename:
-
-2010-06-21  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Unskip plugins/get-url-that-the-resource-load-delegate-will-disallow.html
-
-        It's a Mac-specific test so just add the required LayoutTestController
-        function as a no-op to avoid failing. Similar approach adopted by other
-        ports.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33344
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController::addDisallowedURL):
-
-2010-06-21  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Patch for https://bugs.webkit.org/show_bug.cgi?id=40940
-        Add message passing support to the WebKit2 API.
-
-        - Add some test messages.
-
-        * MiniBrowser/mac/AppDelegate.m:
-        (_didRecieveMessageFromInjectedBundle):
-        (-[BrowserAppDelegate init]):
-        * MiniBrowser/mac/WebBundle/WebBundleMain.m:
-        (_didClearWindow):
-        (_didCreatePage):
-        (_didRecieveMessage):
-        (WKBundleInitialize):
-
-2010-06-21  Drew Wilson  <atwilson@chromium.org>
-
-        Unreviewed.
-
-        Rolling back 61551 and 61555 due to test failures.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setEditingBehavior):
-        * DumpRenderTree/mac/UIDelegate.mm:
-
-2010-06-21  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Make DumpRenderTree build with clang++
-
-        * DumpRenderTree/mac/DumpRenderTreePasteboard.m:
-        (-[LocalPasteboard setPropertyList:forType:]):
-        * DumpRenderTree/mac/DumpRenderTreeWindow.mm:
-        (-[DumpRenderTreeWindow keyDown:]):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::elementDoesAutoCompleteForElementWithId):
-        (LayoutTestController::isCommandEnabled):
-
-2010-06-21  Satish Sampath  <satish@chromium.org>
-
-        Reviewed by Steve Block.
-
-        Speech Input Patch 0: Added compilation argument to conditionally compile pending patches.
-        https://bugs.webkit.org/show_bug.cgi?id=40878
-
-        * Scripts/build-webkit:
-
-2010-06-21  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Initialization for http/tests/loading/
-        https://bugs.webkit.org/show_bug.cgi?id=40902
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::runFileTest):
-
-2010-06-21  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        Unreviewed.
-
-        Adding myself to the committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-06-20  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Add --allow-external-pages option
-        https://bugs.webkit.org/show_bug.cgi?id=40762
-
-        Add --allow-external-pages introduced by Chromium r45403.
-        http://src.chromium.org/viewvc/chrome?view=rev&revision=45403
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::allowExternalPages):
-        (TestShell::setAllowExternalPages):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::willSendRequest):
-
-2010-06-20  Joseph Pecoraro  <joepeck@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Sheriffbot: Should allow "r" in SVN_REVISION
-        https://bugs.webkit.org/show_bug.cgi?id=40889
-
-        * Scripts/webkitpy/tool/bot/irc_command.py: remove a leading "r" from SVN_REVISION if it exists
-        * Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py: test an SVN_REVISION with a leading r.
-
-2010-06-20  Joseph Pecoraro  <joepeck@webkit.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Python Tests Fail after r61508
-        https://bugs.webkit.org/show_bug.cgi?id=40891
-
-        Test's regex list needed to be updated to match the new
-        regex list in the source code. Added new bots to the
-        example_buildbots list.
-
-        Regex list fixed in r61512. Updated bot list.
-
-        * Scripts/webkitpy/common/net/buildbot_unittest.py:
-
-2010-06-20  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Unreviewed, build fix.
-
-        Tweak test regexp list to match the change in http://trac.webkit.org/changeset/61508.
-
-        * Scripts/webkitpy/common/net/buildbot_unittest.py: Tweaked regexp.
-
-2010-06-19  Justin Schuh  <jschuh@chromium.org>
-
-        Unreviewed.
-
-        Adding myself to the committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-06-19  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Fix for https://bugs.webkit.org/show_bug.cgi?id=40882
-        Add ability to have a WebProcess per WebContext.
-
-        Move to use new shared contexts API.
-
-        * MiniBrowser/mac/AppDelegate.h:
-        * MiniBrowser/mac/AppDelegate.m:
-        (-[BrowserAppDelegate init]):
-        (-[BrowserAppDelegate getCurrentPageNamespace]):
-        (-[BrowserAppDelegate validateMenuItem:]):
-        (-[BrowserAppDelegate _setProcessModel:]):
-        (-[BrowserAppDelegate setSharedProcessProcessModel:]):
-        (-[BrowserAppDelegate setSharedThreadProcessModel:]):
-        * MiniBrowser/win/BrowserView.cpp:
-        (BrowserView::create):
-
-2010-06-02  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        [Qt] Support evaluateScriptInIsolatedWorld()
-
-        https://bugs.webkit.org/show_bug.cgi?id=40079
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::evaluateScriptInIsolatedWorld):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-06-18  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        Add three more non-core Chromium builders to start testing DumpRenderTree.
-        https://bugs.webkit.org/show_bug.cgi?id=40335
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Added 3 builders.
-
-2010-06-18  Drew Wilson  <atwilson@chromium.org>
-
-        Reviewed by Darin Fisher.
-
-        [Chromium] Plumbing for top-level frame names
-        https://bugs.webkit.org/show_bug.cgi?id=40430
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::reset):
-        Changed obsolete call to clearName() to use setName(WebString()) instead.
-
-2010-06-18  Sam Weinig  <weinig@apple.com>
-
-        Rolling http://trac.webkit.org/changeset/61297 back in.
-
-        * MiniBrowser/MiniBrowser.xcodeproj/project.pbxproj:
-        * MiniBrowser/mac/WebBundle/WebBundleMain.c: Removed.
-        * MiniBrowser/mac/WebBundle/WebBundleMain.m: Added.
-        (_didClearWindow):
-        (_didCreatePage):
-        (WKBundleInitialize):
-
-2010-06-18  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=40803
-        TestNetscapePlugin has an incorrect implementation of "property" property
-
-        * DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp: (pluginGetProperty): Don't
-        pass a static string back, it's going to be released by NPAPI implementation.
-
-2010-06-18  Leandro Pereira  <leandro@profusion.mobi>
-
-        Unreviewed.
-
-        Adding myself to the committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-06-17  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [chromium] cleanup redundant DEPS value and remove buildbot cleanup code
-        https://bugs.webkit.org/show_bug.cgi?id=40615
-
-        * Scripts/update-webkit-chromium: remove directory removal of third_party in old checkouts
-
-2010-06-17  Ada Chan  <adachan@apple.com>
-
-        Rolling out http://trac.webkit.org/changeset/61297 due to build errors.
-
-        * MiniBrowser/MiniBrowser.xcodeproj/project.pbxproj:
-        * MiniBrowser/mac/WebBundle/WebBundleMain.c: Copied from MiniBrowser/mac/WebBundle/WebBundleMain.c.
-        * MiniBrowser/mac/WebBundle/WebBundleMain.m: Removed.
-
-2010-06-17  Darin Adler  <darin@apple.com>
-
-        One more try at fix for Chromium build.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell): Use set again instead of =.
-
-2010-06-17  Darin Adler  <darin@apple.com>
-
-        Fix Chromium build.
-
-        I didn't realize that neither Chromium nor Qt share the DumpRenderTree
-        code with all the other platforms! Wow, that should be fixed at some point.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell): Changed back to using "new".
-        * DumpRenderTree/chromium/TestShell.h: Changed back to OwnPtr.
-
-2010-06-17  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Unreviewed Qt build fix.
-
-        LayoutTestController in the Qt DRT is not using refs :)
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-
-2010-06-17  Darin Adler  <darin@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Use adoptRef and create functions in more code paths
-        https://bugs.webkit.org/show_bug.cgi?id=40760
-
-        * DumpRenderTree/DumpRenderTree.h: Change gLayoutTestController to a RefPtr.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::create): Added.
-        * DumpRenderTree/LayoutTestController.h: Declare the create function.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell): Use create instead of new.
-        * DumpRenderTree/chromium/TestShell.h: Use RefPtr instead of OwnPtr.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (runTest): Use RefPtr and create instead of OwnPtr and new.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (runTest): Use RefPtr and create instead of OwnPtr and new.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree): Use create and releaseRef
-        instead of new.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (runTest): Use RefPtr and create instead of OwnPtr and new.
-
-        * DumpRenderTree/wx/DumpRenderTreeWx.cpp:
-        (runTest): Use RefPtr and create instead of OwnPtr and new.
-        (MyApp::OnInit): Removed unneeded code to delete the layout
-        test controller. This is done during each test.
-
-2010-06-17  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        [DRT/Chromium] Fix a bug of Windows pixel tests
-        https://bugs.webkit.org/show_bug.cgi?id=40763
-
-        * DumpRenderTree/chromium/TestEventPrinter.cpp:
-        (TestShellPrinter::handleImage):
-
-2010-06-16  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        [DRT/Chromium] Fix crash on Mac Release
-        https://bugs.webkit.org/show_bug.cgi?id=40759
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::paintRect): We should not use m_canvas directly because
-          it is created lazily in canvas().
-
-2010-06-16  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix after new method addition.
-
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::pageProperty):
-
-2010-06-16  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Set current working directory for each of tests
-        https://bugs.webkit.org/show_bug.cgi?id=40668
-
-        This change fixes tests with eventSender.beginDragWithFiles().
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (runTest):
-
-2010-06-16  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        [GTK] r60803 broke media/controls-drag-timebar.html
-        https://bugs.webkit.org/show_bug.cgi?id=40269
-
-        Only queue events while the mouse button is down, if drag mode is enabled. Some
-        tests may disable drag mode, to prevent the queuing of events in this situation.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (sendOrQueueEvent): Only queue events here if dragMode is true.
-
-2010-06-16  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        [GTK] Remove the abuse of GDK_CURRENT_TIME in the DRT
-        https://bugs.webkit.org/show_bug.cgi?id=40600
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (prepareMouseButtonEvent): Remove logic adding an offset to GDK_CURRENT_TIME.
-
-2010-06-16  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Add a hidden land-cowboy command to webkit-patch to help land quick
-        build fixes.
-
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/steps/preparechangelog.py:
-
-2010-06-16  Adam Roben  <aroben@apple.com>
-
-        Convert console messages to UTF-8 before printing them
-
-        Speculative fix for <http://webkit.org/b/40731> REGRESSION (r61234):
-        http/tests/security/xssAuditor/embed-tag-null-char.html and
-        http/tests/security/xssAuditor/object-embed-tag-null-char.html fail on
-        Windows. (I can't test the fix because Apache is crashing on my
-        computer.)
-
-        Reviewed by Alexey Proskuryakov.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (toUTF8): Extracted the code into an overload that takes a wide string
-        and a length, then added an overload that takes a wstring.
-
-        * DumpRenderTree/win/DumpRenderTreeWin.h: Declare the new toUTF8
-        overload.
-
-        * DumpRenderTree/win/UIDelegate.cpp:
-        (UIDelegate::webViewAddMessageToConsole): Use toUTF8 to convert to
-        UTF-8 instead of letting printf convert to the current code page.
-
-2010-06-16  Drew Wilson  <atwilson@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [Chromium] Plumbing for top-level frame names
-        https://bugs.webkit.org/show_bug.cgi?id=40430
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createView):
-        Migrate to new createView() API.
-        * DumpRenderTree/chromium/WebViewHost.h:
-        Remove obsolete createView() methods, add new createView() API that takes a frameName parameter.
-
-2010-06-16  Diego Gonzalez  <diegohcg@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Scroll wheel event support to graphics based DRT
-        https://bugs.webkit.org/show_bug.cgi?id=40577
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::continuousMouseScrollBy):
-        (EventSender::createGraphicsSceneWheelEvent):
-        * DumpRenderTree/qt/EventSenderQt.h:
-
-2010-06-16  Adam Roben  <aroben@apple.com>
-
-        Remove a stray newline from the Windows version of TestNetscapePlugin
-
-        Reviewed by Alexey Proskuryakov.
-
-        Fixes <http://webkit.org/b/40728>
-        plugins/geturlnotify-during-document-teardown.html fails on Windows
-
-        * DumpRenderTree/win/TestNetscapePlugin/main.cpp:
-        (NPP_Destroy): Removed extra newline that the Mac version doesn't
-        have.
-
-2010-06-16  Adam Roben  <aroben@apple.com>
-
-        Respect LayoutTestController::isPrinting on Windows
-
-        This gets some printing tests closer to passing (like
-        printing/page-rule-in-media-query.html).
-
-        Fixes <http://webkit.org/b/40727>.
-
-        Reviewed by Dan Bernstein.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (dump): Pass LayoutTestController::isPrinting to
-        IWebFramePrivate::renderTreeAsExternalRepresentation.
-
-2010-06-15  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Enable HTML5 lexer
-        https://bugs.webkit.org/show_bug.cgi?id=40650
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (initializeGlobalsFromCommandLineOptions):
-
-2010-06-10  Yuzo Fujishima  <yuzo@google.com>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Implement render style selection for pages to support CSS3 Paged Media.
-        https://bugs.webkit.org/show_bug.cgi?id=35961
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (parsePagePropertyParameters):
-        (pagePropertyCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::pageProperty):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::pageProperty):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::pageProperty):
-
-2010-06-15  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Fix for https://bugs.webkit.org/show_bug.cgi?id=40630
-        WebKit2: Add mechanism to inject code into the WebProcess on startup
-
-        Add initial InjectedBundle support.
-
-        * MiniBrowser/MiniBrowser.xcodeproj/project.pbxproj:
-        * MiniBrowser/WebBundle-Info.plist: Added.
-        Add test InjectedBundle to the project.
-
-        * MiniBrowser/mac/AppDelegate.m:
-        (-[BrowserAppDelegate init]):
-        Get the path to the WebBundle from the the main bundle and pass it to the new
-        WKContextCreateWithInjectedBundlePath function.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (_didChangeProgress):
-        Fix the build.  This has been broken for a while.
-
-        * MiniBrowser/mac/WebBundle: Added.
-        * MiniBrowser/mac/WebBundle/WebBundleMain.c: Added.
-        (_didCreatePage):
-        (WKBundleInitialize):
-        Add really basic InjectedBundle.
-
-        * MiniBrowser/win/BrowserView.cpp:
-        (BrowserView::create):
-        Switch from WKContextCreateWithProcessModel to WKContextCreate and remove commented out code.
-
-2010-06-15  Dumitru Daniliuc  <dumi@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        Adding myself to the reviewers list.
-        https://bugs.webkit.org/show_bug.cgi?id=40693
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-06-15  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        Switch to using GIO methods instead of realpath in GtkLauncher to determine
-        the file URI. This should remove warnings about realpath being undefined
-        when compiling with '-ansi'.
-
-        * GtkLauncher/main.c:
-        (filenameToURL): Use GIO instead of realpath to determine file URI.
-
-2010-06-15  Adam Roben  <aroben@apple.com>
-
-        Remove the redundant set-apple-windows-environment-variables script
-
-        Apparently update-webkit does this for you these days.
-
-        Rubber-stamped by Steve Falkenburg.
-
-        * Scripts/set-apple-windows-environment-variables: Removed.
-
-2010-06-14  Adam Roben  <aroben@apple.com>
-
-        Add a script to set the WebKitOutputDir and WebKitLibrariesDir
-        environment variables
-
-        Fixes <http://webkit.org/b/40595>.
-
-        Reviewed by Steve Falkenburg.
-
-        * Scripts/set-apple-windows-environment-variables: Added.
-        (to_windows_path): Passes the passed-in path through cygpath to
-        generate a Windows-style path.
-        (main): Sets the WebKitOutputDir and WebKitLibrariesDir environment
-        variables to their defaults, if they aren't already set.
-
-2010-06-14  Adam Roben  <aroben@apple.com>
-
-        Speed up run-safari/debug-safari on Windows
-
-        Fixes <http://webkit.org/b/40586>.
-
-        Reviewed by Steve Falkenburg.
-
-        * Scripts/webkitdirs.pm:
-        (runSafari): When debugging, set up the environment to run Safari
-        using the built WebKit.dll, then use "devenv /debugexe Safari.exe" to
-        actually launch the debugger. When not debugging, just run WebKit.exe
-        and it will do the rest for us.
-
-2010-06-15  Diego Gonzalez  <diegohcg@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] DRT EventSender support to graphics context events
-        https://bugs.webkit.org/show_bug.cgi?id=40324
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::contextClick):
-
-2010-06-14  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Darin Fisher.
-
-        [chromium] checkout chromium third_party directly
-        https://bugs.webkit.org/show_bug.cgi?id=40556
-
-        * Scripts/update-webkit-chromium: some migration code for the bots
-
-2010-06-14  Alexey Proskuryakov  <ap@apple.com>
-
-        Chromium build fix.
-
-        * DumpRenderTree/chromium/EventSender.cpp: (EventSender::keyDown): Chromium uses differently
-        named constants for Windows virtual key codes, replacing VK_DELETE with VKEY_DELETE.
-
-2010-06-14  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Darin Adler.
-
-        https://bugs.webkit.org/show_bug.cgi?id=40529
-        eventSender.keyDown("delete") incorrectly sends a backspace on some platforms
-
-        * DumpRenderTree/mac/EventSendingController.mm:
-        (-[EventSendingController keyDown:withModifiers:withLocation:]): We were sending a broken
-        event for "delete" - it had virtual key code from forward delete, and text from backspace.
-        Fixed "delete" to mean forward delete.
-
-        * DumpRenderTree/chromium/EventSender.cpp: (EventSender::keyDown):
-        * DumpRenderTree/gtk/EventSender.cpp: (keyDownCallback):
-        * DumpRenderTree/win/EventSender.cpp: (keyDownCallback):
-        Mac DRT confusion has propagated to other platforms, fixing those.
-
-2010-06-14  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        Small GtkLauncher build fix for some systems.
-
-        * GtkLauncher/main.c: Add <limit.h> include.
-
-2010-06-14  Mahesh Kulkarni  <mahesh.kulkarni@nokia.com>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt] navigator.geolocation support for Qt port
-        https://bugs.webkit.org/show_bug.cgi?id=39724
-
-        Implementation for geolocation cases to DumpRenderTreeQt
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::allowGeolocationRequest):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setGeolocationPermission):
-        (LayoutTestController::setMockGeolocationError):
-        (LayoutTestController::setMockGeolocationPosition):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController::isGeolocationPermissionSet):
-        (LayoutTestController::geolocationPermission):
-
-2010-06-13  Nathan Lawrence  <nlawrence@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Outside of Xcode (make or WebKitTools/Scripts), there doesn't seem to
-        be a way of overwriting the Xcode system path.  Making
-        $WEBKITOUTPUTDIR take precedence over the system default would make
-        this possible.
-
-        * Scripts/webkitdirs.pm:
-
-2010-06-13  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Darin Adler.
-
-        AX: link won't return linked element if URL contains #
-        https://bugs.webkit.org/show_bug.cgi?id=40192
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (linkedUIElementAtIndexCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::linkedUIElementAtIndex):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::linkedUIElementAtIndex):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::linkedUIElementAtIndex):
-
-2010-06-13  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        webkit-patch should add a bug URL to ChangeLogs if they don't have one yet
-        https://bugs.webkit.org/show_bug.cgi?id=39550
-
-        This can cause an extra request to bugs.webkit.org durig upload, but it
-        shouldn't be too bad.  Also, this won't work if you remove the
-        boilerplate created by prepare-ChangeLog.
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-        * Scripts/webkitpy/common/net/bugzilla.py:
-        * Scripts/webkitpy/tool/steps/abstractstep.py:
-        * Scripts/webkitpy/tool/steps/preparechangelog.py:
-        * Scripts/webkitpy/tool/steps/preparechangelog_unittest.py: Added.
-
-2010-06-08  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [Qt] Add support for callShouldCloseOnWebView() to DRT
-        https://bugs.webkit.org/show_bug.cgi?id=40330
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::callShouldCloseOnWebView):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController::setCallCloseOnWebViews):
-
-2010-06-12  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Daniel Bates.
-
-        do-webcore-rename should have a --verbose option
-        https://bugs.webkit.org/show_bug.cgi?id=40497
-
-        * Scripts/do-webcore-rename:
-         - Unified how we handle skipping files/directories
-           this will allow us to "black list" certain files and
-           directories when performing renames.
-         - Made do-webcore-rename log what it's skipping when passed --verbose.
-
-2010-06-12  Darin Adler  <darin@apple.com>
-
-        * Scripts/run-bindings-tests: Fixed a typo in a message.
-
-2010-06-12  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [Chromium] new-run-webkit-tests --use-drt should work with Chromium checkout
-        https://bugs.webkit.org/show_bug.cgi?id=40402
-
-        _build_path() of each Chromium port check existence of build path
-        of Chromium checkout first, then check existence of build path of
-        WebKit-only checkout.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-
-2010-06-12  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Back-forward list dumping is incorrect
-
-        https://bugs.webkit.org/show_bug.cgi?id=36392
-
-        Support dumping child history items in DRT.
-
-        Unskip:
-
-        fast/loader/frame-src-change-added-to-history.html
-        fast/loader/frame-src-change-not-added-to-history.html
-        fast/loader/frame-location-change-not-added-to-history.html
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::dumpHistoryItem):
-
-2010-06-10  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        upload all patches that lack in-rietveld to rietveld
-        https://bugs.webkit.org/show_bug.cgi?id=40444
-
-        If it's a patch, then we'll try to upload it as long as it
-        doesn't have in-rietveld set. No longer set in-rietveld? since
-        it's not needed.
-
-        * Scripts/webkitpy/common/net/bugzilla.py:
-
-2010-06-10  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Darin Fisher.
-
-        Fix rietveld upload when message length > 100 characters
-        https://bugs.webkit.org/show_bug.cgi?id=40457
-
-        * Scripts/webkitpy/common/net/rietveld.py:
-
-2010-06-11  Yael Aharon  <yael.aharon@nokia.com>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt] There should be a way to enable popups in QtTestBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=40427
-
-        * QtTestBrowser/main.cpp:
-        (LauncherWindow::toggleJavascriptCanOpenWindows):
-        (LauncherWindow::createChrome):
-
-2010-06-10  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Daniel Bates.
-
-        Make SheriffBot more chatty
-        https://bugs.webkit.org/show_bug.cgi?id=40463
-
-        People seem to like to talk to SheriffBot, so let's make him chat back.
-
-        * Scripts/webkitpy/thirdparty/__init__.py:
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        * Scripts/webkitpy/tool/bot/irc_command_unittest.py: Added.
-        * Scripts/webkitpy/tool/bot/sheriffircbot.py:
-        * Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py:
-
-2010-06-10  Brian Weinstein  <bweinstein@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Fix the Windows buildbot when WebKitAuxiliaryLibs.zip cannot be found on our server.
-        
-        Robustify update-webkit-auxiliary-libs to be able to handle the case when WebKitAuxiliaryLibs.zip doesn't exist,
-        and allow the script to fall back to an existing file, only failing if there is no fallback file. Also switch to checking
-        WEXITSTATUS on $result instead of just comparing $result to 0.
-
-        * Scripts/update-webkit-auxiliary-libs:
-
-2010-06-10  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Alexey Proskuryakov.
-
-        don't use Exception.message as it's deprecated in python 2.6+
-        https://bugs.webkit.org/show_bug.cgi?id=40449
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-
-2010-06-10  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        fix handle_script_error in rietveld upload queue and add testing for handle_script_error
-        https://bugs.webkit.org/show_bug.cgi?id=40436
-
-        * Scripts/webkitpy/common/system/outputcapture.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/commands/queuestest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-06-10  Jarkko Sakkinen  <jarkko.j.sakkinen@gmail.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] *All* WebGL layout tests fail!
-        https://bugs.webkit.org/show_bug.cgi?id=40296
-
-        Added test for WebKitWebGLEnabled to
-        LayoutTestController::overridePreference().
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::overridePreference):
-
-2010-06-10  Diego Gonzalez  <diegohcg@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] DRT EventSender support to graphics mouse events activation
-        https://bugs.webkit.org/show_bug.cgi?id=40017
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::mouseDown):
-        (EventSender::mouseUp):
-        (EventSender::mouseMoveTo):
-        (EventSender::keyDown):
-        (EventSender::contextClick):
-        (EventSender::sendTouchEvent):
-        (EventSender::sendOrQueueEvent):
-        (EventSender::eventFilter):
-        (EventSender::createGraphicsSceneMouseEvent):
-        (EventSender::sendEvent):
-        * DumpRenderTree/qt/EventSenderQt.h:
-        (EventSender::isGraphicsBased):
-
-2010-06-09  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Ojan Vafai.
-
-        webkit-patch upload fails for security bugs because there's no rietveld flag
-        https://bugs.webkit.org/show_bug.cgi?id=40309
-
-        There's probably a more elegant way of seeing whether the form control
-        exists, but this seems to work.
-
-        * Scripts/webkitpy/common/net/bugzilla.py:
-
-2010-06-09  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        make rietveld upload faster and avoid posting to bug on errors
-        https://bugs.webkit.org/show_bug.cgi?id=40389
-
-        Only grab the first item of the upload queue instead of trying
-        to compute the whole list upfront (which is O(n) bugzilla lookups!).
-
-        Also, don't post comments to the bug when uploading fails.
-
-        * Scripts/webkitpy/common/net/bugzilla.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/commands/stepsequence.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-06-09  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Rietveld upload queue fails when setting in-rietveld flag
-        https://bugs.webkit.org/show_bug.cgi?id=40371
-
-        Make the comment arguments to set_flag_on_attachment optional
-        and add it to the MockBugzilla.
-
-        * Scripts/webkitpy/common/net/bugzilla.py:
-        * Scripts/webkitpy/tool/bot/queueengine.py:
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2010-06-09  Kenneth Russell  <kbr@google.com>
-
-        Reviewed by Dimitri Glazkov.
-
-        Rename FloatArray to Float32Array
-        https://bugs.webkit.org/show_bug.cgi?id=40323
-
-        Used do-webcore-rename to perform renaming. Manually undid
-        incorrect changes to WebCore/bridge/jni/jsc/JNIBridgeJSC.cpp,
-        WebCore/manual-tests/resources/ArrayParameterTestApplet.java and
-        ArrayParameterTestApplet.class. Updated LayoutTests. Built and ran
-        all layout tests on Safari; built Chromium and ran selected WebGL
-        tests.
-
-        * Scripts/do-webcore-rename:
-
-2010-06-08  Tony Chang  <tony@chromium.org>
-
-        Reviewed by David Levin.
-
-        [chromium] compile linux chromium in WebKit/out instead of WebKit/WebKit/chromium/out
-        https://bugs.webkit.org/show_bug.cgi?id=40285
-
-        * Scripts/webkitdirs.pm:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-
-2010-06-03  Roland Steiner  <rolandsteiner@chromium.org>
-
-        Reviewed by Tamura Kent.
-
-        Bug 40052 - [DRT/Chromium] Upstream test_shell_webthemeengine as WebThemeEngineDRT
-        https://bugs.webkit.org/show_bug.cgi?id=40052
-        
-        Add WebThemeEngineDRT and WebThemeControlDRT ported from Chromium rev. 48907
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestShellWin.cpp:
-        (platformInit):
-        * DumpRenderTree/chromium/WebThemeControlDRT.cpp: Added.
-        (WebKit::):
-        (WebKit::WebThemeControlDRT::WebThemeControlDRT):
-        (WebKit::WebThemeControlDRT::~WebThemeControlDRT):
-        (WebKit::WebThemeControlDRT::box):
-        (WebKit::WebThemeControlDRT::line):
-        (WebKit::WebThemeControlDRT::triangle):
-        (WebKit::WebThemeControlDRT::roundRect):
-        (WebKit::WebThemeControlDRT::oval):
-        (WebKit::WebThemeControlDRT::circle):
-        (WebKit::WebThemeControlDRT::nestedBoxes):
-        (WebKit::WebThemeControlDRT::markState):
-        (WebKit::WebThemeControlDRT::draw):
-        (WebKit::WebThemeControlDRT::drawTextField):
-        (WebKit::WebThemeControlDRT::drawProgressBar):
-        * DumpRenderTree/chromium/WebThemeControlDRT.h: Added.
-        (WebKit::WebThemeControlDRT::):
-        * DumpRenderTree/chromium/WebThemeEngineDRT.cpp: Added.
-        (WebKit::):
-        (WebKit::WebThemeEngineDRT::paintButton):
-        (WebKit::WebThemeEngineDRT::paintMenuList):
-        (WebKit::WebThemeEngineDRT::paintScrollbarArrow):
-        (WebKit::WebThemeEngineDRT::paintScrollbarThumb):
-        (WebKit::WebThemeEngineDRT::paintScrollbarTrack):
-        (WebKit::WebThemeEngineDRT::paintTextField):
-        (WebKit::WebThemeEngineDRT::paintTrackbar):
-        (WebKit::WebThemeEngineDRT::paintProgressBar):
-        * DumpRenderTree/chromium/WebThemeEngineDRT.h: Added.
-        (WebKit::WebThemeEngineDRT::WebThemeEngineDRT):
-
-2010-06-08  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r60878.
-        http://trac.webkit.org/changeset/60878
-        https://bugs.webkit.org/show_bug.cgi?id=40349
-
-        broke linux build (Requested by tony^work on #webkit).
-
-        * Scripts/webkitdirs.pm:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-
-2010-06-08  Tony Chang  <tony@chromium.org>
-
-        Reviewed by David Levin.
-
-        [chromium] compile linux chromium in WebKit/out instead of WebKit/WebKit/chromium/out
-        https://bugs.webkit.org/show_bug.cgi?id=40285
-
-        * Scripts/webkitdirs.pm:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-
-2010-06-08  Kenneth Russell  <kbr@google.com>
-
-        Unreviewed, build fix.
-
-        Fix build breakage from 38145
-        https://bugs.webkit.org/show_bug.cgi?id=40346
-
-        The fix for bug 38145 broke the Chromium Win build because
-        Microsoft's cmath doesn't define log2. Suggested fix by zmo is to
-        change log2(x) to log(x) / log(2). Built and ran WebGL layout
-        tests in Safari on Mac OS X. Changed download mirrors for
-        python-irclib to working ones.
-
-        * Scripts/webkitpy/thirdparty/__init__.py:
-
-2010-06-08  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        old-run-webkit-tests should use ensure-valid-python to check if it can run the websockets tests
-        https://bugs.webkit.org/show_bug.cgi?id=39058
-
-        * Scripts/old-run-webkit-tests:
-         use sourceDir() to find ensure-valid-python in checkPythonVersion()
-
-2010-06-08  Andras Becsi  <abecsi@webkit.org>
-
-        Unreviewed buildfix after r60479.
-
-        [GTK] Move the declaration of getRootCoords higher up to fix the build on GTK
-        versions other than 2.17.3.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (getRootCoords):
-
-2010-06-07  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Oliver Hunt.
-
-        [GTK] Mouse movement should not trigger a replay of saved events in the event sender
-        https://bugs.webkit.org/show_bug.cgi?id=40267
-
-        When a mouse button is down, automatically queue mouse motion events and
-        do not play them back until the mouse button is released. This matches the
-        behavior of other ports' EventSenders.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (mouseMoveToCallback): Don't automatically replaySavedEvents for mouse motion.
-        (sendOrQueueEvent): Add a shouldReplaySavedEvents argument defaulting to true.
-
-2010-06-07  Nikolas Zimmermann  <nzimmermann@rim.com>
-
-        Reviewed by Sam Weinig.
-
-        Add CPP bindings generator
-        https://bugs.webkit.org/show_bug.cgi?id=38279
-
-        Integrate CPP bindings in run-bindings-tests.
-
-        * Scripts/run-bindings-tests:
-
-2010-06-04  Tony Gentilcore  <tonyg@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Rename 'svn_merge_base' -> 'remote_merge_base'. This was left out of r60633.
-        https://bugs.webkit.org/show_bug.cgi?id=40183
-
-        * Scripts/webkitpy/tool/steps/preparechangelog.py:
-
-2010-06-04  Martin Robinson  <mrobinson@igalia.com>
-
-        Unreviewed.
-
-        Add my new email and IRC nick to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-06-04  Kinuko Yasuda  <kinuko@chromium.org>
-
-        Unreviewed.
-
-        Revert changes in json_results_generator.py's _get_svn_revision.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-
-2010-06-04  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] GtkLauncher should support relative file paths
-        https://bugs.webkit.org/show_bug.cgi?id=39944
-
-        Allow GtkLauncher to handle relative file paths passed via command-line arguments.
-
-        * GtkLauncher/main.c:
-        (filename_to_url): Added.
-        (main): Try to resolve arguments as relative file URLs first.
-
-2010-06-04  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] EventSender should call gtk_main_do_event instead of invoking signal handlers directly
-        https://bugs.webkit.org/show_bug.cgi?id=40182
-
-        Instead of invoking signal handlers directly via g_signal_emit_by_name, call
-        gtk_main_do_event. This will allow us to call gtk_get_current_event() in WebKit
-        without breaking DRT.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (dispatchEvent): Use gtk_main_do_event instead of invoking signal handlers directly.
-        (keyDownCallback): Use dispatchEvent here which now uses gtk_main_do_event.
-
-2010-06-04  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by David Hyatt.
-
-        Make the editing/spelling/context-menu-suggestions.html test more robust
-        https://bugs.webkit.org/show_bug.cgi?id=40178
-
-        Change the contextClick method to return an array of strings describing the context menu items.
-
-        * DumpRenderTree/mac/EventSendingController.mm:
-        (+[EventSendingController isSelectorExcludedFromWebScript:]):
-        (+[EventSendingController webScriptNameForSelector:]):
-        (-[EventSendingController contextClick]):
-
-2010-06-03  Kinuko Yasuda  <kinuko@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        Clean up chromium-specific code from json_results_generator.py.
-        https://bugs.webkit.org/show_bug.cgi?id=39665
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2010-06-04  Tony Gentilcore  <tonyg@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Utilize new takeFirst() method where appropriate.
-        https://bugs.webkit.org/show_bug.cgi?id=40089
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::replaySavedEvents):
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::WorkQueue::processWork):
-        (LayoutTestController::WorkQueue::reset):
-
-2010-06-04  Yael Aharon  <yael.aharon@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] QtTestLauncher should allow notifications by default.
-        https://bugs.webkit.org/show_bug.cgi?id=40078
-
-        * QtTestBrowser/main.cpp:
-        (NotificationsPermissionController::NotificationsPermissionController):
-        (NotificationsPermissionController::checkPermission):
-        (NotificationsPermissionController::requestPermission):
-        (LauncherWindow::LauncherWindow):
-
-2010-06-04  Tony Gentilcore  <tonyg@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Detect whether the user's environment can open a browser.
-        https://bugs.webkit.org/show_bug.cgi?id=40136
-
-        Some environments like cygwin silently fail webbrowser.open() causing
-        webkit-patch upload not to display any diff. This detects environments
-        where webbrowser.open() would fail by testing if webbrowser.get()
-        raises an exception.
-
-        * Scripts/webkitpy/common/system/user.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/confirmdiff.py:
-
-2010-06-03  Tony Gentilcore  <tonyg@chromium.org>
-
-        Reviewed by David Levin.
-
-        Add dependencies required to link with VS Express 2005.
-        https://bugs.webkit.org/show_bug.cgi?id=40038
-
-        Visual Studio implicitly links against these libs.
-        VC++ Express does not.
-
-        * WebKitAPITest/WebKitAPITestCommon.vsprops:
-        * WinLauncher/WinLauncher.vcproj:
-
-2010-06-03  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Reviewed by David Levin.
-
-        bad codecs.open in webkitpy/layout_tests/ports/websocket_server.py
-        https://bugs.webkit.org/show_bug.cgi?id=40105
-
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-        - kill pywebsocket process when url is not alive and the process is not
-          terminated, not to leave pywebsocket server running.
-        - fix codecs.open parameters.
-
-2010-06-03  Fumitoshi Ukai  <ukai@chromium.org>
-
-        Reviewed by Alexey Proskuryakov.
-
-        old-run-webkit-tests should use ensure-valid-python to check if it can run the websockets tests
-        https://bugs.webkit.org/show_bug.cgi?id=39058
-
-        * Scripts/ensure-valid-python:
-          - Perl 5.8 doesn't have File::Temp->newdir().  Use File::Temp->tempdir() instead.
-          - Add --check-only and --help option.
-          - --check-only option only checks python version and don't try to install Python 2.5.
-          - Set executable bit.
-        * Scripts/old-run-webkit-tests:
-          - Check if it can run the websocket tests by calling ensure-valid-python --check-only.
-
-2010-05-14  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        add a RietveldUploadQueue to upload in-rietveld? patches to rietveld
-        https://bugs.webkit.org/show_bug.cgi?id=38918
-
-        Patches with in-rietveld? get uploaded to rietveld and get marked
-        in-rietveld+. If the upload fails, they are marked in-rietveld-
-        and an error is logged to the bug, like the commit-queue.
-
-        Also, get rid of --fancy-review and the ability to upload to rietveld
-        using webkit-patch upload/post.
-
-        * Scripts/webkitpy/common/net/bugzilla.py:
-        * Scripts/webkitpy/common/net/bugzilla_unittest.py:
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/commands/upload.py:
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/options.py:
-        * Scripts/webkitpy/tool/steps/postcodereview.py:
-
-2010-05-24  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Chris Jerdonek.
-
-        many webkit-patch commands fail in a non-svn tracking git checkout
-        https://bugs.webkit.org/show_bug.cgi?id=38156
-
-        If the svn-tracking-branch (trunk) doesn't exist, fallback to the git remote-tracking-branch (master).
-        If neither exists, then error out. This makes webkit-patch work
-        for anyone that follows the intructions at http://trac.webkit.org/wiki/UsingGitWithWebKit
-        to checkout webkit. The fallback to master is for people who don't
-        do the steps on that page for tracking svn.
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-
-2010-06-03  Mike Fenton  <mifenton@rim.com>
-
-        Unreviewed.
-
-        Reverse e-mail for myself in committers.py to correspond with bugzilla account.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-06-03  Pavel Feldman  <pfeldman@chromium.org>
-
-        Reviewed by Yury Semikhatsky.
-
-        Web Inspector: a number of fixes that make InspectorController
-        happy with null redirects.
-
-        https://bugs.webkit.org/show_bug.cgi?id=40109
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (runTest):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (runTest):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (runTest):
-
-2010-06-02  Tasuku Suzuki  <tasuku.suzuki@nokia.com>
-
-        Reviewed by Shinichiro Hamaji.
-
-        [Qt] Fix compilation with QT_NO_PROPERTIES
-        https://bugs.webkit.org/show_bug.cgi?id=38324
-
-        * QtTestBrowser/main.cpp:
-        (LauncherWindow::init):
-
-2010-06-02  Diego Gonzalez  <diegohcg@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Make possible run DRT with QGraphicsWebView
-        https://bugs.webkit.org/show_bug.cgi?id=40016
-
-        Make possible to use a environment variable for switching backend.
-        Usage: QT_DRT_WEBVIEW_MODE=graphics WebKitTools/Scripts/run-webkit-tests --qt
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebViewGraphicsBased::WebViewGraphicsBased):
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        (WebCore::DumpRenderTree::setGraphicsBased):
-        (WebCore::DumpRenderTree::isGraphicsBased):
-        (WebCore::WebViewGraphicsBased::graphicsView):
-        (WebCore::WebViewGraphicsBased::setPage):
-        * Scripts/old-run-webkit-tests:
-
-2010-06-02  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Slave lost shouldn't be recognized as build failed.
-        https://bugs.webkit.org/show_bug.cgi?id=39282
-
-        * Scripts/webkitpy/common/net/buildbot.py: Treat slave lost as green.
-        * Scripts/webkitpy/common/net/buildbot_unittest.py: Add unit test for slave lost.
-
-2010-06-01  Yael Aharon  <yael.aharon@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Fix the lifecycle of notification objects
-        https://bugs.webkit.org/show_bug.cgi?id=40003
-
-        Remove the dependency of notifications on QWebPage.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::requestPermissionCallback):
-        (WebCore::WebPage::WebPage):
-        (WebCore::DumpRenderTree::requestPermission):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-
-2010-06-02  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r60559.
-        http://trac.webkit.org/changeset/60559
-        https://bugs.webkit.org/show_bug.cgi?id=40055
-
-        It broke python unit test (Requested by Ossy on #webkit).
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-
-2010-06-02  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Slave lost shouldn't be recognized as build failed.
-        https://bugs.webkit.org/show_bug.cgi?id=39282
-
-        * Scripts/webkitpy/common/net/buildbot.py:
-
-2010-06-02  Tony Gentilcore  <tonyg@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Fix crash caused when assigned_to is disabled
-        https://bugs.webkit.org/show_bug.cgi?id=40039
-
-        * Scripts/webkitpy/common/net/bugzilla.py:
-
-2010-06-02  Sterling Swigart  <sswigart@google.com>
-
-        Reviewed by David Levin.
-
-        Image Resizer Patch 0: Added compilation argument to conditionally compile pending patches.
-        https://bugs.webkit.org/show_bug.cgi?id=39906
-
-        * Scripts/build-webkit:
-
-2010-06-01  Raine Makelainen  <raine.makelainen@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        Fixed tests to use QWebSettings::JavascriptCanAccessClipboard instead of QWebSettings::JavaScriptCanAccessClipboard.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::WebPage):
-        (WebCore::WebPage::resetSettings):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setJavaScriptCanAccessClipboard):
-
-2010-06-01  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        A nicer Tiger build fix.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/mac/Configurations/Base.xcconfig:
-        Enable GCC_OBJC_CALL_CXX_CDTORS via .xcconfig.
-
-2010-06-01  Alexey Proskuryakov  <ap@apple.com>
-
-        A real Tiger build fix.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Enable GCC_OBJC_CALL_CXX_CDTORS
-        for all configurations, not just debug.
-
-2010-06-01  Alexey Proskuryakov  <ap@apple.com>
-
-        Tiger build fix.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Enable GCC_OBJC_CALL_CXX_CDTORS.
-
-2010-06-01  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] Get more mouse tests passing
-        https://bugs.webkit.org/show_bug.cgi?id=39040
-
-        Reproduce the logic from the Windows EventSender for mapping
-        button numbers to GDK button numbers. Move this logic to the
-        prepareMouseButtonEvent helper.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (prepareMouseButtonEvent): Reproduce Windows logic.
-        (contextClickCallback): Move mapping logic to prepareMouseButtonEvent.
-        (mouseDownCallback): Ditto.
-        (mouseUpCallback): Ditto.
-
-2010-06-01  Alexey Proskuryakov  <ap@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        https://bugs.webkit.org/show_bug.cgi?id=39434
-        REGRESSION (r59811): Geolocation callbacks cannot be created
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Added MockGeolocationProvider.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (createWebViewAndOffscreenWindow): Tell the view to use MockGeolocationProvider. 
-        (resetWebViewToConsistentStateBeforeTesting): Make sure that mock notifications don't leak
-        into subsequent tests.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setMockGeolocationPosition): Changed to use MockGeolocationProvider.
-        (LayoutTestController::setMockGeolocationError): Ditto.
-
-        * DumpRenderTree/mac/MockGeolocationProvider.h: Added.
-        * DumpRenderTree/mac/MockGeolocationProvider.mm: Added.
-        (+[MockGeolocationProvider shared]):
-        (-[MockGeolocationProvider dealloc]):
-        (-[MockGeolocationProvider setPosition:]):
-        (-[MockGeolocationProvider setError:]):
-        (-[MockGeolocationProvider registerWebView:]):
-        (-[MockGeolocationProvider unregisterWebView:]):
-        (-[MockGeolocationProvider lastPosition]):
-        (-[MockGeolocationProvider stopTimer]):
-        (-[MockGeolocationProvider timerFired]):
-
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:decidePolicyForGeolocationRequestFromOrigin:frame:listener:]):
-        This delegate method must send a response. I'm not sure what the two-stage check is supposed
-        to achieve, it seems unnecessary.
-
-2010-05-12  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] Double clicks cause three button press events
-        https://bugs.webkit.org/show_bug.cgi?id=38853
-
-        WebKit now filters the extra GDK_BUTTON_PRESS before GDK_2BUTTON_PRESS
-        and GDK_3BUTTON_PRESS via gdk_event_peek(). Since EventSender bypasses
-        the GDK event queue entirely, we simply do not send the extra event.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (mouseDownCallback): Do not send extra event. Send GDK_3BUTTON_PRESS appropriately.
-        (dispatchEvent): Properly handle GDK_3BUTTON_PRESS.
-
-2010-06-01  Martin Robinson  <mrobinson@igalia.com>
-
-        Not reviewed. Build fix.
-
-        Fix GTK+ build caused by a bad merge.
-
-        * DumpRenderTree/gtk/EventSender.cpp: 
-        (prepareMouseButtonEvent): Use the GdkEvent union as a pointer here.
-
-2010-06-01  Martin Robinson  <mrobinson@webkit.org>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] Double clicks cause three button press events
-        https://bugs.webkit.org/show_bug.cgi?id=38853
-
-        Small EventSender cleanups. Consolidate some common code. Style fixes.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (prepareMouseButtonEvent): Added.
-        (contextClickCallback): Use prepareMouseButtonEvent.
-        (mouseDownCallback): Use prepareMouseButtonEvent.
-        (mouseUpCallback): Use prepareMouseButtonEvent.
-        (mouseMoveToCallback): Small style fix.
-
-2010-06-01  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] Double clicks cause three button press events
-        https://bugs.webkit.org/show_bug.cgi?id=38853
-
-        Add rudimentary leapForward support to the GTK+ DRT. leapForward allows a test
-        to pause for a specified amount of time. It is used in the processing of drag-
-        -and-drop data as well as to separate distinct mouse double-clicks in some tests.
-        This patch enables tests that rely on the latter behavior to pass.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webViewWindowObjectCleared): Only initialize the EventSender when loading the top frame.
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (leapForwardCallback): Add support for adjusting the time offset on leapForward().
-        (contextClickCallback): Use sendOrQueueEvent.
-        (updateClickCount): Take the time offset into account when counting clicks.
-        (mouseDownCallback): Use sendOrQueueEvent.
-        (getStateFlags): Change down/currentEventButton into buttonCurrentlyDown/lastClickButton.
-        (mouseUpCallback): Use sendOrQueueEvent.
-        (mouseMoveToCallback): Ditto.
-        (mouseWheelToCallback): Ditto.
-        (sendOrQueueEvent): Added.
-        (dispatchEvent): Added.
-        (replaySavedEvents): Pause when an event has a delay and defer to dispatchEvent.
-        (makeEventSender): Only initialize the EventSender when loading the top frame.
-        * DumpRenderTree/gtk/EventSender.h: Ditto.
-
-2010-06-01  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] css1/color_and_background/background_attachment.html fails on the 32-bit debug bot
-        https://bugs.webkit.org/show_bug.cgi?id=39101
-
-        Work around timing issues for render tree dumps by pumping the
-        main loop before doing the dump. Resize events are asynchronous
-        in GTK+, so sometimes resize requests are still pending when DRT
-        dumps the tree.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (dump): Pump the main loop before dumping the render tree.
-
-2010-05-31  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Fix crash of a test after another test with multiple windows
-        https://bugs.webkit.org/show_bug.cgi?id=39942
-
-        If a test opens multiple windows, focuses on non-main window, and
-        the focused window is closed, TestShell::m_focusedWidget points a
-        deleted object.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::closeWindow): Clear m_focusedWidget.
-
-2010-05-30  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        new-run-webkit-tests: Support DRT on Chromium-win
-        https://bugs.webkit.org/show_bug.cgi?id=39810
-
-        Add --test-shell flag to DRT/Chromium, and it changes DRT so that
-        it behaves like test_shell about command analysis, printing
-        format, pixel dumping, and timeout handling.
-
-        chromium.py and chromium_win.py supports the --test-shell flag and
-        DRT/Chromium-win binary names.
-        
-        * DumpRenderTree/DumpRenderTree.gypi: Add new files.
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (runTest): Support for test_shell-style command.
-        (main): Introduce --test-shell.
-        * DumpRenderTree/chromium/TestEventPrinter.cpp: Added.
-        * DumpRenderTree/chromium/TestEventPrinter.h: Added.
-          TestEventPrinter class manages stdio output and image output.
-          TestEventPrinter.cpp has two implementations; DRTPrinter and
-          TestShellPrinter.
-        * DumpRenderTree/chromium/TestShell.cpp:
-          Some changes for TestEventPrinter.
-        (TestShell::TestShell):
-        (TestShell::runFileTest):
-        (TestShell::testTimedOut):
-        (TestShell::dump):
-        (TestShell::dumpImage):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::printer):
-        (TestShell::layoutTestTimeout):
-        (TestShell::layoutTestTimeoutForWatchDog):
-        (TestShell::setLayoutTestTimeout):
-        * DumpRenderTree/chromium/TestShellWin.cpp:
-        (watchDogThread): Use TestShell::layoutTestTimeoutForWatchDog().
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-
-2010-05-30  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Enhance Qt DRT implementation to support platform scroll wheel events.
-
-        https://bugs.webkit.org/show_bug.cgi?id=36004
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::EventSender): QApplication::setWheelScrollLines(2) in order to match
-                                    Scrollbar::pixelsPerLineStep() for DRT testing.
-        (EventSender::mouseScrollBy): Added
-        (EventSender::continuousMouseScrollBy): Added
-        * DumpRenderTree/qt/EventSenderQt.h:
-
-2010-05-28  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by David Levin.
-
-        webkit-patch should support CHANGE_LOG_EDIT_APPLICATION
-        https://bugs.webkit.org/show_bug.cgi?id=39546
-
-        One sublty is that we want to wait for the user to finish editing the
-        ChangeLog before moving on to the next step.  That means we want to pass
-        -W to open.  However, if the user is using Xcode to edit the ChangeLog,
-        we don't want them to have to exit the Xcode application.  For this reason,
-        we create a new instance of the application with -n.
-        
-        Overall, xed seems like a better solution, so we recommend that too.
-
-        * Scripts/webkitpy/common/system/user.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/editchangelog.py:
-
-2010-05-21  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: fix handling of Ctrl-C to exit even if some
-        threads are wedged. Also, the script will print the results of the
-        tests completed when the interrupt occurs.
-
-        https://bugs.webkit.org/show_bug.cgi?id=33238
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2010-05-28  Darin Adler  <darin@apple.com>
-
-        Ignore more Python messiness.
-
-        * Scripts/webkitpy/layout_tests/data/platform/test: Added property svn:ignore.
-        * Scripts/webkitpy/layout_tests/layout_package: Added property svn:ignore.
-        * Scripts/webkitpy/layout_tests/test_types: Added property svn:ignore.
-        * Scripts/webkitpy/test: Added property svn:ignore.
-        * Scripts/webkitpy/thirdparty/simplejson: Added property svn:ignore.
-
-2010-05-28  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Beth Dakin.
-
-        Adding myself as a reviewer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2010-05-28  Chris Fleizach  <cfleizach@apple.com>
-
-        Build fix. No review.
-
-        AX: need to catch NSAccessibilityExceptions in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=39881
-
-        It looks like Tiger doesn't like seeing a NSMakeRange inside a @try.
-
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::rowIndexRange):
-        (AccessibilityUIElement::columnIndexRange):
-        (AccessibilityUIElement::selectedTextRange):
-
-2010-05-28  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Darin Adler.
-
-        AX: need to catch NSAccessibilityExceptions in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=39881
-
-        Normally, accessibility exceptions are caught in the AX Runtime on the Mac, but 
-        because DRT is its own AX client, no one is there to catch these otherwise innocuous exceptions.
-  
-        So DRT should wrap exception handlers around its AX related calls.
-
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (attributesOfElement):
-        (AccessibilityUIElement::getLinkedUIElements):
-        (AccessibilityUIElement::getDocumentLinks):
-        (AccessibilityUIElement::getChildren):
-        (AccessibilityUIElement::getChildrenWithRange):
-        (AccessibilityUIElement::ariaOwnsElementAtIndex):
-        (AccessibilityUIElement::ariaFlowToElementAtIndex):
-        (AccessibilityUIElement::disclosedRowAtIndex):
-        (AccessibilityUIElement::selectedRowAtIndex):
-        (AccessibilityUIElement::titleUIElement):
-        (AccessibilityUIElement::parentElement):
-        (AccessibilityUIElement::disclosedByRow):
-        (AccessibilityUIElement::stringAttributeValue):
-        (AccessibilityUIElement::boolAttributeValue):
-        (AccessibilityUIElement::isAttributeSettable):
-        (AccessibilityUIElement::isAttributeSupported):
-        (AccessibilityUIElement::role):
-        (AccessibilityUIElement::subrole):
-        (AccessibilityUIElement::roleDescription):
-        (AccessibilityUIElement::title):
-        (AccessibilityUIElement::description):
-        (AccessibilityUIElement::orientation):
-        (AccessibilityUIElement::stringValue):
-        (AccessibilityUIElement::language):
-        (AccessibilityUIElement::helpText):
-        (AccessibilityUIElement::x):
-        (AccessibilityUIElement::y):
-        (AccessibilityUIElement::width):
-        (AccessibilityUIElement::height):
-        (AccessibilityUIElement::clickPointX):
-        (AccessibilityUIElement::clickPointY):
-        (AccessibilityUIElement::intValue):
-        (AccessibilityUIElement::minValue):
-        (AccessibilityUIElement::maxValue):
-        (AccessibilityUIElement::valueDescription):
-        (AccessibilityUIElement::insertionPointLineNumber):
-        (AccessibilityUIElement::isActionSupported):
-        (AccessibilityUIElement::isEnabled):
-        (AccessibilityUIElement::isRequired):
-        (AccessibilityUIElement::isSelected):
-        (AccessibilityUIElement::isExpanded):
-        (AccessibilityUIElement::hierarchicalLevel):
-        (AccessibilityUIElement::ariaIsGrabbed):
-        (AccessibilityUIElement::ariaDropEffects):
-        (AccessibilityUIElement::lineForIndex):
-        (AccessibilityUIElement::boundsForRange):
-        (AccessibilityUIElement::stringForRange):
-        (AccessibilityUIElement::attributesOfColumnHeaders):
-        (AccessibilityUIElement::attributesOfRowHeaders):
-        (AccessibilityUIElement::attributesOfColumns):
-        (AccessibilityUIElement::attributesOfRows):
-        (AccessibilityUIElement::attributesOfVisibleCells):
-        (AccessibilityUIElement::attributesOfHeader):
-        (AccessibilityUIElement::rowCount):
-        (AccessibilityUIElement::columnCount):
-        (AccessibilityUIElement::indexInTable):
-        (AccessibilityUIElement::rowIndexRange):
-        (AccessibilityUIElement::columnIndexRange):
-        (AccessibilityUIElement::cellForColumnAndRow):
-        (AccessibilityUIElement::selectedTextRange):
-        (AccessibilityUIElement::setSelectedTextRange):
-        (AccessibilityUIElement::increment):
-        (AccessibilityUIElement::decrement):
-        (AccessibilityUIElement::showMenu):
-        (AccessibilityUIElement::press):
-        (AccessibilityUIElement::url):
-        (AccessibilityUIElement::hasPopup):
-
-2010-05-28  Yael Aharon  <yael.aharon@nokia.com>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt] Pass all web notification layout tests
-        https://bugs.webkit.org/show_bug.cgi?id=39146
-
-        Mimic Chromium's test_shell security model in Qt's DRT.
-        It makes a list of origins which were granted permission to display
-        notifications, and only those origins can display notifications.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::checkPermissionCallback):
-        (WebCore::requestPermissionCallback):
-        (WebCore::WebPage::WebPage):
-        (WebCore::DumpRenderTree::checkPermission):
-        (WebCore::DumpRenderTree::requestPermission):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::grantDesktopNotificationPermission):
-        (LayoutTestController::checkDesktopNotificationPermission):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2010-05-27  Philippe Normand  <pnormand@igalia.com>
-
-        Reviewed by Shinichiro Hamaji.
-
-        check-webkit-style complains about use of NULL in GTK function calls that require sentinels
-        https://bugs.webkit.org/show_bug.cgi?id=39372
-
-        Don't warn about NULL in g_*() calls. Zero can't be used instead
-        for calls like g_build_filename and g_object_get/set.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-
-2010-05-27  Luiz Agostini  <luiz.agostini@openbossa.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Platform plugin example
-        https://bugs.webkit.org/show_bug.cgi?id=39489
-
-        Exempting directory WebKit/qt/examples/ from style guide.
-
-        * Scripts/webkitpy/style/checker.py:
-
-2010-05-26  Philippe Normand  <pnormand@igalia.com>
-
-        Reviewed by David Levin.
-
-        [style] Allow usage of NULL in gst_*_many()
-        https://bugs.webkit.org/show_bug.cgi?id=39740
-
-        Don't warn if NULL is used by gst_*_many() functions. Zero can't
-        be used for the reason explained in Bug 32858.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-
-2010-05-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Update script to run the normal version of the parser tests.
-
-        * Scripts/test-html5-parser:
-
-2010-05-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add HTML5 parser support to run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=39815
-
-        * Scripts/old-run-webkit-tests:
-
-2010-05-26  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Make HTML5 lexer not ASSERT when resuming partial parses
-        https://bugs.webkit.org/show_bug.cgi?id=39755
-
-        Add webkit-resumer.html to the HTML5 parser test suite.
-
-        * Scripts/test-html5-parser:
-
-2010-05-24  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [chromium] setup fonts on chromium linux DRT
-        https://bugs.webkit.org/show_bug.cgi?id=39644
-
-        * DumpRenderTree/chromium/TestShellGtk.cpp:
-        (setupFontconfig):
-        (platformInit):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::paintRect):  Fix a bug where in release builds, we didn't initialize m_canvas.
-        * DumpRenderTree/chromium/fonts.conf: Added.
-
-2010-05-24  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Re-commit r58765 - it had been rolled out to see if it was causing
-        a perf regression (in r59787 and r59789), but that does not seem to
-        have been the case.
-
-        https://bugs.webkit.org/show_bug.cgi?id=39605
-
-        * DumpRenderTree/chromium/NotificationPresenter.cpp:
-        (NotificationPresenter::show):
-
-2010-05-25  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Chris Jerdonek.
-
-        remove suppression of rietveld logging
-        https://bugs.webkit.org/show_bug.cgi?id=39693
-
-        Now that we only upload to rietveld explicitly, e.g. on the bot
-        or via webkit-patch post-attachment-to-rietveld, we should print
-        all the rietveld logging. It was suppressed before to avoid making
-        webkit-patch upload too noisy.
-
-        * Scripts/webkitpy/common/net/rietveld.py:
-
-2010-05-25  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Ojan Vafai.
-
-        [Qt] Expose the editing behavior setting in DRT to test all editing code paths
-        https://bugs.webkit.org/show_bug.cgi?id=39680
-
-        Implement LayoutTestController::setEditingBehavior in Qt's DRT.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setEditingBehavior):
-
-2010-05-25  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix after API change and addition of WebCore/platform/text/transcoder dir. 
-
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setEditingBehavior):
-        * wx/build/settings.py:
-
-2010-05-24  Antonio Gomes  <tonikitoo@webkit.org>
-
-        Reviewed by Eric Seidel and Kent Tamura (for the Chromium part).
-
-        editingBehavior settings needs to be set back to a reasonable default between tests
-        https://bugs.webkit.org/show_bug.cgi?id=39433
-
-        Similarly to r59861, hard code the default setting during reset for Gtk and Chromium,
-        so that the serialized version of the setting stays in sync with expectations.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetWebSettings):
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-
-2010-05-24  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        webkit-patch land calls scm.changed_files 4 times!
-        https://bugs.webkit.org/show_bug.cgi?id=39584
-
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-         - Assert that we don't call modified_changelogs too often.
-        * Scripts/webkitpy/tool/steps/updatechangelogswithreviewer.py:
-         - Use cached changelogs list instead of calling modified_changelogs directly.
-        * Scripts/webkitpy/tool/steps/validatereviewer.py:
-         - ditto.
-
-2010-05-24  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Import layout_test_helper for Windows
-        https://bugs.webkit.org/show_bug.cgi?id=39581
-
-        Import Chromium win/layout_test_helper.cc as LayoutTestHelperWin.cpp.
-        http://src.chromium.org/viewvc/chrome/trunk/src/webkit/tools/test_shell/win/layout_test_helper.cc
-
-        * DumpRenderTree/chromium/LayoutTestHelperWin.cpp: Added.
-
-2010-05-24  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [DRT/Chromium] Reset frame name
-        https://bugs.webkit.org/show_bug.cgi?id=39586
-
-        This change fixes about 70 unexpected results.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::reset):
-
-2010-05-24  Marcus Bulach  <bulach@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [chromium] Adds WebGeolocationServiceMockImpl to remove public dependency on wtf/HashMap.h
-        https://bugs.webkit.org/show_bug.cgi?id=39587
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::geolocationService):
-
-2010-05-24  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt] DRT Support for removeOriginAccessWhitelistEntry
-
-        Unskips http/tests/xmlhttprequest/origin-whitelisting-removal.html
-
-        [Qt] DRT Support for removeOriginAccessWhitelistEntry
-        https://bugs.webkit.org/show_bug.cgi?id=39565
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::removeOriginAccessWhitelistEntry):
-
-2010-05-24  Marcus Bulach  <bulach@google.com>
-
-        Reviewed by Ojan Vafai.
-
-        _svn_branch_has_extra_commits needs to check for ^HEAD instead of ^head.
-        https://bugs.webkit.org/show_bug.cgi?id=39603
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-
-== Rolled over to ChangeLog-2010-05-24 ==
diff --git a/Tools/ChangeLog-2012-05-22 b/Tools/ChangeLog-2012-05-22
deleted file mode 100644
index b77231f..0000000
--- a/Tools/ChangeLog-2012-05-22
+++ /dev/null
@@ -1,72869 +0,0 @@
-2012-05-21  Gavin Barraclough  <barraclough@apple.com>
-
-        Disable private names by default in WebCore
-        https://bugs.webkit.org/show_bug.cgi?id=87088
-
-        Reviewed by Geoff Garen.
-
-        r117859 introduced a preliminary implementation of ES6-like private name objects to JSC.
-        These are probably not yet ready to be web-facing, so disabling by default in WebCore.
-        Opting-in for JSC & DumpRenderTree so that we can still run the fast/js/names.html test.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-            - Enable private name support in DRT.
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-            - Enable private name support in WKTR.
-
-2012-05-22  Martin Robinson  <mrobinson@igalia.com>
-
-        Fix a small syntax error in the GTK+ API test runner.
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * gtk/run-api-tests:
-        (TestRunner._setup_testing_environment): When reporting the error use
-        the correct Python format string syntax.
-
-2012-05-22  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [GTK][DRT] Wrong cache model is taken in LayoutTestController's setCacheModel()
-        https://bugs.webkit.org/show_bug.cgi?id=86962
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setCacheModel): Sets WEBKIT_CACHE_MODEL_WEB_BROWSER if argument is 2.
-
-2012-05-22  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL][DRT] Key modifier bit flags have enum type.
-        https://bugs.webkit.org/show_bug.cgi?id=86838
-
-        Reviewed by Antonio Gomes.
-
-        Refactoring. Key modifier flags are unsigned int.
-        Key modifier bit flags used have enum type. It caused problems as a key can have several modifiers 
-        at the same time and the union of modifiers (i.e. EvasKeyModifierControl | EvasKeyModifierShift) 
-        would have been out of EvasKeyModifier enum.
-
-        * DumpRenderTree/efl/EventSender.cpp:
-        (KeyEventInfo::KeyEventInfo):
-        (KeyEventInfo):
-        (MouseEventInfo::MouseEventInfo):
-        (MouseEventInfo):
-        (setEvasModifiers):
-        (modifiersFromJSValue):
-        (mouseDownCallback):
-        (mouseUpCallback):
-        (keyPadNameFromJSValue):
-        (keyNameFromJSValue):
-        (createKeyEventInfo):
-        (sendKeyDown):
-
-2012-05-22  Takashi Sakamoto  <tasak@google.com>
-
-        Implement DOM_KEY_LOCATION_LEFT and RIGHT of KeyboardEvent's location property
-        https://bugs.webkit.org/show_bug.cgi?id=86694
-
-        Modify keyDown to create left- and right- control, shift, and alt
-        keyevent for a test to check that keyLocation property can have
-        DOM_KEY_LOCATION_LEFT for left-control, shift, and alt, and
-        DOM_KEY_LOCATION_RIGHT for right-control, shift, and alt.
-
-        Reviewed by Alexey Proskuryakov.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::keyDown):
-        * DumpRenderTree/mac/EventSendingController.mm:
-        (-[EventSendingController keyDown:withModifiers:withLocation:]):
-
-2012-05-22  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] EFL's DRT needs to print information about received Web Intents
-        https://bugs.webkit.org/show_bug.cgi?id=86864
-
-        Reviewed by Adam Barth.
-
-        Catch "intent,new" signal in EFL's DumpRenderTree and dump information
-        about the intent. This output is expected by several webintents test
-        cases.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::createView):
-        (DumpRenderTreeChrome::onFrameCreated):
-        (DumpRenderTreeChrome::onFrameIntentNew):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.h:
-        (DumpRenderTreeChrome):
-
-2012-05-22  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] Add support to enable/disable DOM paste 
-        https://bugs.webkit.org/show_bug.cgi?id=85040
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Enable JavascriptCanAccessClipboard setting on each test startup so
-        that test cases which rely on clipboard can be unskipped.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-
-2012-05-22  Hugo Parente Lima  <hugo.lima@openbossa.org>
-
-        [Qt][WK2] EventSenderProxy::keyDown doesn't use the helper functions to send events
-        https://bugs.webkit.org/show_bug.cgi?id=87044
-
-        Reviewed by Alexis Menard.
-
-        Use sendOrQueueEvent instead of m_testController->mainWebView()->sendEvent
-
-        * WebKitTestRunner/qt/EventSenderProxyQt.cpp:
-        (WTR::EventSenderProxy::keyDown):
-
-2012-05-22  Zan Dobersek  <zandobersek@gmail.com>
-
-        [Gtk][LayoutTests] Repaint the complete WebKitWebView before dumping pixel results
-        https://bugs.webkit.org/show_bug.cgi?id=86284
-
-        Reviewed by Martin Robinson.
-
-        Paint the current dirty regions of the web view once more before
-        dumping pixel results.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (dump):
-
-2012-05-22  Allan Sandfeld Jensen  <allan.jensen@nokia.com>
-
-        GCC 4.7 and C++11 support.
-        https://bugs.webkit.org/show_bug.cgi?id=86465
-
-        Reviewed by Darin Adler.
-
-        Update detection of C++11 mode in GCC.
-
-        * qmake/mkspecs/features/unix/default_post.prf:
-
-2012-05-22  Hao Zheng  <zhenghao@chromium.org>
-
-        [chromium] WebViewHost should use ENABLE guards for some features.
-        https://bugs.webkit.org/show_bug.cgi?id=87087
-
-        Reviewed by Kent Tamura.
-
-        These features are disabled on OS(ANDROID) and so shouldn't be
-        compiled when the feature is off.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::reset):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-05-21  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] EFL's DumpRenderTree does not print didReceiveTitle messages
-        https://bugs.webkit.org/show_bug.cgi?id=85971
-
-        Reviewed by Antonio Gomes.
-
-        Listen for the "title,changed" signal on the frames instead of the
-        view so that we get notified for other frame than the main one.
-        Print out the didReceiveTitle messages which are expected if
-        LayoutTestController's dumpFrameLoadCallbacks() returns true.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::createView):
-        (DumpRenderTreeChrome::onFrameTitleChanged):
-        (DumpRenderTreeChrome::onFrameCreated):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.h:
-        (DumpRenderTreeChrome):
-
-2012-05-21  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        [EFL] Unreviewed, reverting r116461.
-
-        r116461 caused a regression in the pixel tests, as scrollbars
-        stopped being rendered in the PNGs.
-
-        * DumpRenderTree/efl/PixelDumpSupportEfl.cpp:
-        (createBitmapContextFromWebView):
-
-2012-05-21  Brady Eidson  <beidson@apple.com>
-
-        <rdar://problem/11460336> and https://bugs.webkit.org/show_bug.cgi?id=87061
-        WKPageGetScaleFactor can return 0.0 after a session is restored
-
-        Reviewed by Beth Dakin.
-
-        Loads a simple page, creates a session from it, restores that session, then
-        queries the page scale factor for the appropriate value of 1.0.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2/WKPageGetScaleFactorNotZero.cpp: Added.
-        (TestWebKitAPI):
-        (TestWebKitAPI::didFinishLoadForFrame):
-        (TestWebKitAPI::setPageLoaderClient):
-        (TestWebKitAPI::createSessionState):
-        (TestWebKitAPI::TEST):
-
-2012-05-21  Hugo Parente Lima  <hugo.lima@openbossa.org>
-
-        [WK2] Remove a useless #if on Tools/WebKitTestRunner/TestController.cpp
-        https://bugs.webkit.org/show_bug.cgi?id=87047
-
-        Reviewed by Alexis Menard.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::didReceiveSynchronousMessageFromInjectedBundle):
-
-2012-05-21  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: clean up the TestExpectations constructor
-        https://bugs.webkit.org/show_bug.cgi?id=86926
-
-        Reviewed by Ojan Vafai.
-
-        The TestExpectations constructor was attempting to pretend
-        it didn't need to get stuff from the Port, and as a result we
-        had a complicated constructor with a bunch of arguments, and
-        calling it was too complicated (although it made testing a
-        little easier and simplified the style checker).
-
-        This patch has the constructor pull all the data it needs from
-        the port directly, and allows us to delete a bunch of code.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.parse_expectations):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ManagerTest.test_update_summary_with_result):
-        (ResultSummaryTest.get_result_summary):
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectations.__init__):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (parse_exp):
-        (SkippedTests.check):
-        (RemoveConfigurationsTest.test_remove):
-        (test_remove_line):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (lint):
-        (run):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (LintTest.test_all_configurations.FakePort.__init__):
-        (LintTest.test_all_configurations.FakePort.test_expectations):
-        (LintTest.test_all_configurations.FakePort.skipped_layout_tests):
-        (LintTest.test_all_configurations.FakePort):
-        (LintTest.test_all_configurations.FakePort.all_test_configurations):
-        (LintTest.test_all_configurations.FakePort.configuration_specifier_macros):
-        (LintTest.test_all_configurations.FakePort.path_from_webkit_base):
-        (LintTest.test_all_configurations.FakePort.get_option):
-        (LintTest.test_all_configurations.FakeFactory.__init__):
-        (LintTest.test_all_configurations.FakeFactory.all_port_names):
-        (LintTest.test_all_configurations):
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-        (Testprinter.get_result_summary):
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-        (TestExpectationsChecker.check_test_expectations):
-        * Scripts/webkitpy/tool/commands/queries.py:
-        (PrintExpectations._model):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineTest._update_expectations_file):
-        (RebaselineExpectations._expectations):
-
-2012-05-21  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [GTK] DRT support for layoutTestController.setSerializeHTTPLoads
-        https://bugs.webkit.org/show_bug.cgi?id=86653
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Add missing implementation setSerializeHTTPLoads to allow
-        testing resource load order.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setSerializeHTTPLoads):
-
-2012-05-21  Elliot Poger  <epoger@chromium.org>
-
-        add skia_test_expectations override file to chromium NRWT
-        https://bugs.webkit.org/show_bug.cgi?id=86749
-
-        Reviewed by Dirk Pranke
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.test_expectations_overrides):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.test_expectations_overrides):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumPortTest.test_overrides_and_builder_names):
-
-2012-05-21  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        webkitdirs.pm: Fix undefined CXXFLAGS variable
-        https://bugs.webkit.org/show_bug.cgi?id=87000
-
-        Reviewed by Martin Robinson.
-
-        Fixes a warning on Autotools and CMake buildsystem when
-        CXXFLAGS is not defined.
-
-        * Scripts/webkitdirs.pm:
-        (runAutogenForAutotoolsProjectIfNecessary):
-        (generateBuildSystemFromCMakeProject):
-
-2012-05-21  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
-
-        Move setEditingBehavior() from layoutTestController to window.internals
-        https://bugs.webkit.org/show_bug.cgi?id=42689
-
-        Reviewed by Hajime Morita and Kenneth Rohde Christiansen.
-
-        Remove code that implements setEditingBehavior() for each platform. Note that
-        During the InternalsObject reset the behavior is changed back to the platform
-        default.
-
-        Qt and Chromium ports set a default editing behavior for running tests different
-        from the platform default, so they still keep code for resetting to the desired
-        editing behavior. Other ports use the their defaults, that are restored by
-        internals object.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/blackberry/DumpRenderTree.cpp:
-        (BlackBerry::WebKit::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-
-2012-05-21  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL] PlatformKeyboardEventEfl is missing ESC key handling.
-        https://bugs.webkit.org/show_bug.cgi?id=86837
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * DumpRenderTree/efl/EventSender.cpp:
-        (keyNameFromJSValue): Added ESC key handling.
-
-2012-05-20  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Add GCancellable parameter to all methods using gio async pattern
-        https://bugs.webkit.org/show_bug.cgi?id=86843
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (browser_window_load_uri):
-
-2012-05-20  Daniel Bates  <dbates@webkit.org>
-
-        svn-apply cannot apply patches to files that contain space
-        characters in their path
-        https://bugs.webkit.org/show_bug.cgi?id=85742
-
-        Reviewed by Eric Seidel.
-
-        Fixes an issue where svn-apply cannot apply a patch to a file
-        if there is a space in its file path.
-
-        The regular expression we were using to fix up +++/--- lines
-        was too strict; it only matched file paths that contained non-
-        whitespace characters. Instead, it's sufficient to match file
-        paths whose characters aren't in the set {\t, \n, \r}.
-
-        * Scripts/VCSUtils.pm:
-        (parseSvnDiffHeader):
-        (runCommand): Added.
-        * Scripts/svn-apply:
-        (scmWillDeleteFile): Modified to call runCommand() so as to
-        handle querying git for a file whose path may contain a space
-        character.
-        * Scripts/webkitperl/VCSUtils_unittest/parseSvnDiffHeader.pl:
-          - Added test case "new file with spaces in its name".
-        * Scripts/webkitperl/VCSUtils_unittest/runCommand.pl: Added.
-
-2012-05-20  Daniel Bates  <dbates@webkit.org>
-
-        svn-apply fails to apply a patch that moves files from directory A to A/B
-        https://bugs.webkit.org/show_bug.cgi?id=86973
-
-        Reviewed by Eric Seidel.
-
-        Fixes an issue where svn-apply fails to apply a patch that moves files in a
-        directory A to some sub-directory B in A with a Git checkout of WebKit.
-
-        Currently, svn-apply only creates new directories along a file system path that
-        it hasn't already processed. That is, if svn-apply creates/traverses all the
-        intermediate directories along the path A/B then it will assume the directory A/B
-        exists for all subsequent requests to create sub-directories in A/B (e.g. A/B/C).
-        When moving a file F in directory A to directory A/B using a Git checkout, Git
-        may remove directory A if F is the last file in A. Therefore, svn-apply will fail
-        to create sub-directory B in A (since A no longer exists).
-
-        * Scripts/svn-apply:
-        (addDirectoriesIfNeeded):
-
-2012-05-20  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        [Chromium] Print layout test result on buildbot
-        https://bugs.webkit.org/show_bug.cgi?id=86965
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/run-webkit-tests: Add chrome-bot to buildbot user list.
-        (runningOnBuildBot):
-
-2012-05-19  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix. Don't stop the build if a build system update check fails.
-        
-        * waf/build/build_utils.py:
-        (download_if_newer):
-
-2012-05-19  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Build fix. Sometimes --suffixes isn't supplied.
-
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        (GardeningHTTPRequestHandler.rebaseline):
-        (GardeningHTTPRequestHandler.optimizebaselines):
-
-2012-05-19  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Add "Lion" -> "mac-lion" to the builder port map.
-
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-
-2012-05-19  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r117675.
-        http://trac.webkit.org/changeset/117675
-        https://bugs.webkit.org/show_bug.cgi?id=86938
-
-        Broke builds. You can't initialize members by members
-        themselves (Requested by rniwa on #webkit).
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::numberOfPages):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::printPage):
-
-2012-05-18  Kausalya Madhusudhanan  <kmadhusu@chromium.org>
-
-        [chromium] User overloaded printBegin() webkit API to support auto fit to page functionality.
-        https://bugs.webkit.org/show_bug.cgi?id=86684
-
-        Reviewed by Darin Fisher.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::numberOfPages):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::printPage):
-
-2012-05-18  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        [EFL][DRT] Make it possible to enable CSS Grid Layout.
-        https://bugs.webkit.org/show_bug.cgi?id=86921
-
-        Reviewed by Tony Chang.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::overridePreference):
-
-2012-05-18  Dirk Pranke  <dpranke@chromium.org>
-
-        scm.add() doesn't work properly with svn 1.7
-        https://bugs.webkit.org/show_bug.cgi?id=86779
-
-        Reviewed by Eric Seidel.
-
-        Re-land the change in r117526 with a fix to maintain
-        compatibility with SVN 1.4.4 (yay Leopard!); turns out
-        that "svn info foo" works correctly in 1.4.4 but
-        "svn info" from the directory "foo" doesn't if foo is
-        not part of a checkout. in_working_directory() and
-        value_from_svn_info() were using the arguments inconsistently,
-        leading to weird errors.
-
-        * Scripts/webkitpy/common/checkout/scm/scm.py:
-        (SCM):
-        (SCM.in_working_directory):
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-        (SVN):
-        (SVN.in_working_directory):
-
-2012-05-18  Levi Weintraub  <leviw@chromium.org>
-
-        Unreviewed. Moving myself from committer to reviewer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-05-18  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [EFL] Buildbot output does not print result stats anymore
-        https://bugs.webkit.org/show_bug.cgi?id=85366
-
-        Reviewed by Ryosuke Niwa.
-
-        Make run-webkit-tests pass --verbose to new-run-webkit-tests
-        on EFL Debug bot.
-
-        * Scripts/run-webkit-tests:
-        (runningOnBuildBot):
-
-2012-05-18  Tony Chang  <tony@chromium.org>
-
-        remove the CSS_GRID_LAYOUT compiler define, but default grid layout to off
-        https://bugs.webkit.org/show_bug.cgi?id=86767
-
-        Reviewed by Ojan Vafai.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::overridePreference):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-        (WebPreferences):
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-05-18  Hugo Parente Lima  <hugo.lima@openbossa.org>
-
-        [Qt][WK2] fast/events/page-visibility-iframe-move-test.html fails
-        https://bugs.webkit.org/show_bug.cgi?id=86731
-
-        Reviewed by Simon Hausmann.
-
-        Set the page visibility on a single page instead of on all pages
-        from the page group.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::setPageVisibility):
-        (WTR::LayoutTestController::resetPageVisibility):
-
-2012-05-18  Yi Shen  <yi.4.shen@nokia.com>
-
-        REGRESSION (r102553): Smart links do not work
-        https://bugs.webkit.org/show_bug.cgi?id=85463
-
-        Reviewed by Ryosuke Niwa.
-
-        Add LayoutTestController::setAutomaticLinkDetectionEnabled().
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setAutomaticLinkDetectionEnabledCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
-        (LayoutTestController::setAutomaticLinkDetectionEnabled): Not implemented.
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::setAutomaticLinkDetectionEnabled): Not implemented.
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setAutomaticLinkDetectionEnabled): Not implemented.
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setAutomaticLinkDetectionEnabled): Not implemented.
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setAutomaticLinkDetectionEnabled): Set automatic link detection enabled.
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setAutomaticLinkDetectionEnabled): Not implemented.
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setAutomaticLinkDetectionEnabled): Not implemented.
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setAutomaticLinkDetectionEnabled): Not implemented.
-
-2012-05-18  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [EFL] Add shortcut to dump Security Origin and Web Database information
-        https://bugs.webkit.org/show_bug.cgi?id=86521
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Added key combination (CTRL+s) to dump information about the
-        security origin and databases of the main frame. Useful for API
-        testing and debugging.
-
-        * EWebLauncher/main.c:
-        (on_key_down):
-
-2012-05-18  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] DRT needs an implementation of layoutTestController.setSerializeHTTPLoads
-        https://bugs.webkit.org/show_bug.cgi?id=86101
-
-        Reviewed by Ryosuke Niwa.
-
-        Add missing implementation setSerializeHTTPLoads to allow
-        testing resource load order.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setSerializeHTTPLoads):
-
-2012-05-18  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] plumb the frame for which a drag was initiated to the WebViewClient
-
-        https://bugs.webkit.org/show_bug.cgi?id=86670
-
-        Reviewed by Kent Tamura.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::startDragging):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-05-18  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] appcache tests are flaky
-        https://bugs.webkit.org/show_bug.cgi?id=86619
-
-        Reviewed by Ryosuke Niwa.
-
-        Correctly set the application cache database path in EFL's
-        DumpRenderTree initialization code.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::initialize):
-
-2012-05-17  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        [EFL][DRT] Call resetInternalsObject() after each test.
-        https://bugs.webkit.org/show_bug.cgi?id=86793
-
-        Reviewed by Antonio Gomes.
-
-        We need to reset the internals object's settings after running
-        each test so that there are no interferences between each test's
-        results.
-
-        * DumpRenderTree/efl/DumpRenderTree.cpp:
-        (runTest):
-
-2012-05-17  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r117526.
-        http://trac.webkit.org/changeset/117526
-        https://bugs.webkit.org/show_bug.cgi?id=86801
-
-        broke Chromium Mac 10.5 layout test canaries (Requested by
-        pkasting on #webkit).
-
-        * Scripts/webkitpy/common/checkout/scm/scm.py:
-        (SCM):
-        (SCM.in_working_directory):
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-        (SVN):
-        (SVN.in_working_directory):
-
-2012-05-17  Dirk Pranke  <dpranke@chromium.org>
-
-        scm.add() doesn't work properly with svn 1.7
-        https://bugs.webkit.org/show_bug.cgi?id=86779
-
-        Reviewed by Ojan Vafai.
-
-        The code relied on '.svn' directories being present
-        in order to tell if a directory had already been added to the
-        repository; this is no longer true in SVN 1.7.
-
-        * Scripts/webkitpy/common/checkout/scm/scm.py:
-        (SCM):
-        (SCM.in_working_directory):
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-        (SVN):
-        (SVN.in_working_directory):
-
-2012-05-17  Jon Lee  <jonlee@apple.com>
-
-        Update Apple buildbots to prioritize latest changelists
-        https://bugs.webkit.org/show_bug.cgi?id=86766
-
-        Reviewed by Brady Eidson.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (pickLatestBuild): Function to get the most pick the most recent build request.
-        (loadBuilderConfig): Configure builders in the AppleMac and AppleWin categories to
-        use the pickLatestBuild function when choosing which request to build next.
-
-2012-05-17  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
-
-        [Qt] Fix MiniBrowser by using correct syntax for qrc URLs
-        https://bugs.webkit.org/show_bug.cgi?id=86761
-
-        Reviewed by Alexis Menard.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::updateVisualMockTouchPoints):
-
-2012-05-17  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [EFL] Add API for Web Database handling
-        https://bugs.webkit.org/show_bug.cgi?id=85178
-
-        Reviewed by Antonio Gomes.
-
-        Use the newly introduced Web Database API in EFL's DRT.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::clearAllDatabases):
-
-2012-05-17  Dan Bernstein  <mitz@apple.com>
-
-        REGRESSION (r117428): WebKit API/SPI was removed
-        https://bugs.webkit.org/show_bug.cgi?id=86748
-
-        Reverted r117428.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setDomainRelaxationForbiddenForURLSchemeCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
-        (LayoutTestController::setDomainRelaxationForbiddenForURLScheme):
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setDomainRelaxationForbiddenForURLScheme):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setDomainRelaxationForbiddenForURLScheme):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setDomainRelaxationForbiddenForURLScheme):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setDomainRelaxationForbiddenForURLScheme):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setDomainRelaxationForbiddenForURLScheme):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setDomainRelaxationForbiddenForURLScheme):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setDomainRelaxationForbiddenForURLScheme):
-
-2012-05-17  Li Yin  <li.yin@intel.com>
-
-        [chromium] run-webkit-tests can't work on ubuntu 12.04
-        https://bugs.webkit.org/show_bug.cgi?id=86565
-
-        Reviewed by Kent Tamura.
-
-        On ubuntu 12.04, the package ttf-thai-tlwg install the Garuda.ttf
-        into /usr/share/fonts/truetype/tlwg/Garuda.ttf, not /usr/share/fonts/truetype/thai/Garuda.ttf
-
-        * DumpRenderTree/chromium/TestShellLinux.cpp:
-        (checkAndLoadFontFile):
-        (setupFontconfig):
-
-2012-05-17  Elliot Poger  <epoger@chromium.org>
-
-        Add setting of additional_expectations option to 
-        chromium_unittest.test_overrides_and_builder_names(),
-        so we can test order in which the base and chromium expectations files
-        are combined.
-
-        https://bugs.webkit.org/show_bug.cgi?id=86642
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumPortTest.test_overrides_and_builder_names):
-
-2012-05-17  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt] Web process hangs while waiting for plugin process connection during layouttests
-        https://bugs.webkit.org/show_bug.cgi?id=86620
-
-        Reviewed by Csaba Osztrogonác.
-
-        Reenable TestNetscapePlugin with Qt 4.
-
-        * Tools.pro:
-
-2012-05-17  Hugo Parente Lima  <hugo.lima@openbossa.org>
-
-        [Qt][WK2] fast/events/page-visibility-* tests fail
-        https://bugs.webkit.org/show_bug.cgi?id=83263
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Handle "preview" state and avoid string conversion.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::setPageVisibility):
-
-2012-05-17  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Convert setDomainRelaxationForbiddenForURLScheme to use InternalSettings interface
-        https://bugs.webkit.org/show_bug.cgi?id=86704
-
-        Reviewed by Eric Seidel.
-
-        Remove setDomainRelaxationForbiddenForURLScheme functions, because it is able to work in the
-        cross-port way through the InternalSettings interface.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-
-2012-05-17  Mariusz Grzegorczyk  <mariusz.g@samsung.com>
-
-        [EFL] [DRT] EFL's DumpRenderTree should support LayoutTestController's dumpEditingCallbacks()
-        https://bugs.webkit.org/show_bug.cgi?id=84835
-
-        Reviewed by Eric Seidel.
-
-        Added editing callbacks implementation.
-
-        * DumpRenderTree/efl/CMakeLists.txt: Add EditingCallbacks.cpp to compilation.
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp: Invoke connectEditingCallbacks.
-        (DumpRenderTreeChrome::createView):
-        * DumpRenderTree/efl/EditingCallbacks.cpp: Added. Dump editing callbacks.
-        (dumpPath):
-        (dumpRange):
-        (insertActionString):
-        (selectionAffinityString):
-        (shouldBeginEditing):
-        (shouldEndEditing):
-        (shouldInsertNode):
-        (shouldInsertText):
-        (shouldDeleteRange):
-        (shouldChangeSelectedRange):
-        (shouldApplyStyle):
-        (editingBegan):
-        (userChangedContents):
-        (editingEnded):
-        (selectionChanged):
-        (connectEditingCallbacks):
-        * DumpRenderTree/efl/EditingCallbacks.h: Added.
-
-2012-05-17  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Unreviewed. Roll out r117382 because of layout test crashes on EFL debug buildbot.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::initialize):
-
-2012-05-17  Kentaro Hara  <haraken@chromium.org>
-
-        [Performance test] In perftest.py, do not include 'description' in 'results'
-        https://bugs.webkit.org/show_bug.cgi?id=86696
-
-        Reviewed by Csaba Osztrogoná.
-
-        'results' in perftest.py should not include any data that is not expected
-        by the perf bot server. We do not need to send 'description' to the perf bot
-        server since 'description' is always the same.
-
-        Thus this patch just removes 'description' from 'results'.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest.parse_output):
-        (PerfTest.output_statistics):
-        (ChromiumStylePerfTest.parse_output):
-        (PageLoadingPerfTest.run):
-
-2012-05-17  Kentaro Hara  <haraken@chromium.org>
-
-        [Performance test] Always fill results['description'] in perftest.py
-        https://bugs.webkit.org/show_bug.cgi?id=86696
-
-        Reviewed by Ryosuke Niwa.
-
-        This is a follow-up patch for r117397 to fix perf bot failures.
-        This patch fills results['description'] always.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PageLoadingPerfTest.run):
-
-2012-05-16  Kentaro Hara  <haraken@chromium.org>
-
-        [Performance test] Support "description" for PerfTestRunner.run and PerfTestRunner.runPerSecond
-        https://bugs.webkit.org/show_bug.cgi?id=86696
-
-        Reviewed by Ryosuke Niwa.
-
-        We want to add some description for each PerfTestRunner.run and
-        PerfTestRunner.runPerSecond, so that people can know what each
-        run is testing.
-
-        Output example:
-
-        $ ./Tools/Scripts/run-perf-tests Bindings/first-child.html
-        Running Bindings/first-child.html (1 of 1)
-        DESCRIPTION: Benchmark for DOM attributes that return a Node object.
-        RESULT Bindings: first-child= 788.359076534 runs/s
-        median= 797.508097751 runs/s, stdev= 19.0972905207 runs/s, min= 746.666666667 runs/s, max= 801.001251564 runs/s
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest):
-        (PerfTest.parse_output):
-        (PerfTest.output_statistics):
-
-2012-05-16  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] appcache tests are flaky
-        https://bugs.webkit.org/show_bug.cgi?id=86619
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Correctly set the application cache database path in EFL's
-        DumpRenderTree initialization code.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::initialize):
-
-2012-05-16  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Add new build slave for EFL port.
-        https://bugs.webkit.org/show_bug.cgi?id=86567
-
-        Reviewed by Ryosuke Niwa.
-
-        Add a build slave for EFL 32-bit linux build.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-05-16  Kihong Kwon  <kihong.kwon@samsung.com>
-
-        [EFL] Support for Battery Status API on the WebKit-Efl
-        https://bugs.webkit.org/show_bug.cgi?id=83254
-
-        Reviewed by Chang Shu.
-
-        Add e_dbus libraries to jhbuild's modules list.
-
-        * efl/jhbuild.modules:
-
-2012-05-16  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Rounding errors on 32-bit machines causes tests to fail
-        https://bugs.webkit.org/show_bug.cgi?id=86194
-
-        Reviewed by Martin Robinson.
-
-        Pass additional CXXFLAGS to CMake in an attempt to harmonize floating
-        point values between 32-bit and 64-bit architectures.
-        Same flags are already used by Qt and GTK ports. 
-
-        * Scripts/webkitdirs.pm:
-        (determineArchitecture):
-        (generateBuildSystemFromCMakeProject):
-
-2012-05-16  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt] Web process hangs while waiting for plugin process connection during layouttests
-        https://bugs.webkit.org/show_bug.cgi?id=86620
-
-        Reviewed by Csaba Osztrogonác.
-
-        Temporary workaround not to fail layout tests.
-
-        * Tools.pro: Disable TestNetscapePlugin.
-
-2012-05-16  Dinu Jacob  <dinu.jacob@nokia.com>
-
-        Add didFinishProgress BundleUIClient callback
-        https://bugs.webkit.org/show_bug.cgi?id=86541
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Added support for dumpProgressFinishedCallback.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        (WTR::InjectedBundlePage::didFinishProgress):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-        (InjectedBundlePage):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::LayoutTestController):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (WTR::LayoutTestController::dumpProgressFinishedCallback):
-        (WTR::LayoutTestController::setShouldDumpProgressFinishedCallback):
-        (WTR::LayoutTestController::shouldDumpProgressFinishedCallback):
-        (LayoutTestController):
-
-2012-05-15  Pierre Rossi  <pierre.rossi@gmail.com>
-
-        [Qt] Enable SVG Fonts by default
-        https://bugs.webkit.org/show_bug.cgi?id=86463
-
-        Reviewed by Nikolas Zimmermann.
-
-        * qmake/mkspecs/features/features.pri:
-
-2012-05-16  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] EFL's LayoutTestController does not implement setApplicationCacheOriginQuota
-        https://bugs.webkit.org/show_bug.cgi?id=85585
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Implement setApplicationCacheOriginQuota in EFL's
-        LayoutTestController.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        * DumpRenderTree/efl/DumpRenderTreeView.cpp:
-        (onExceededApplicationCacheQuota):
-        (drtViewAdd):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setApplicationCacheOriginQuota):
-
-2012-05-16  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL] EFL's LayoutTestController  evaluateScriptInIsolatedWorld implementation
-        https://bugs.webkit.org/show_bug.cgi?id=83776
-
-        Reviewed by Tor Arne Vestbø.
-
-        Added missing implementation of LayoutTestController::evaluateScriptInIsolatedWorld().
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::evaluateScriptInIsolatedWorld):
-
-2012-05-16  Grzegorz Czajkowski  <g.czajkowski@samsung.com>
-
-        Unreviewed. Add myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-05-15  Kangil Han  <kangil.han@samsung.com>
-
-        [EFL][DRT] Fix eventSender key providing
-        https://bugs.webkit.org/show_bug.cgi?id=84710
-
-        Reviewed by Andreas Kling.
-
-        Currently eventSender doesn't provide key event correctly.
-        For example, 'Right' will be visible when 'right arrow' key event is fired.
-        Given circumstance, nothing has to be shown.
-        Therefore, this patch fixed incorrectly provided key event.
-
-        * DumpRenderTree/efl/EventSender.cpp:
-        (KeyEventInfo::KeyEventInfo):
-        (KeyEventInfo):
-        (keyPadNameFromJSValue):
-        (keyNameFromJSValue):
-        (createKeyEventInfo):
-        (sendKeyDown):
-
-2012-05-15  Dan Bernstein  <mitz@apple.com>
-
-        Fixed a typo.
-
-        * Scripts/copy-webkitlibraries-to-product-directory:
-
-2012-05-15  Kihong Kwon  <kihong.kwon@samsung.com>
-
-        [EFL] Enable Fullscreen API
-        https://bugs.webkit.org/show_bug.cgi?id=85870
-
-        Reviewed by Antonio Gomes.
-
-        Enable full screen api feature on the EFL port.
-        There are two failed test cases under LayoutTests/fullscreen.
-        They are going to be fixed with other patch.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-05-15  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Chromium port never sets USE(CG) so code behind it is dead
-        https://bugs.webkit.org/show_bug.cgi?id=86537
-
-        Reviewed by Adrienne Walker.
-
-        Deletes code behind USE(CG) in chromium-specific code and removes unneeded USE(SKIA) guards.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::paintRect):
-
-2012-05-15  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Remove WEBKIT_USING_(SKIA|CG) #defines
-        https://bugs.webkit.org/show_bug.cgi?id=86536
-
-        Reviewed by Adam Barth.
-
-        Deletes dead WEBKIT_USING_CG code and #ifdefs guarding it.
-
-        * DumpRenderTree/chromium/WebThemeEngineDRTMac.mm:
-        (WebThemeEngineDRTMac::paintHIThemeScrollbarThumb):
-        (WebThemeEngineDRTMac::paintNSScrollerScrollbarThumb):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::paintPagesWithBoundaries):
-
-2012-05-15  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Unreviewed build fix.
-
-        Partial revert of r117166 - it appears making DumpRenderTree depend on webkit_platform causes crashes in the
-        component build, at least on linux.  This restores Tools/DumpRenderTree to its pre-r117166 state.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/chromium/TestWebPlugin.cpp:
-        (TestWebPlugin::initialize):
-
-2012-05-15  Elliot Poger  <epoger@google.com>
-
-        add unit test for NRWT's --additional-expectations option
-        https://bugs.webkit.org/show_bug.cgi?id=86501
-
-        Reviewed by Ojan Vafai.
-
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_additional_expectations):
-
-2012-05-15  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Move createOffscreenGraphicsContext3D() from WebKitPlatformSupport to Platform
-        https://bugs.webkit.org/show_bug.cgi?id=86524
-
-        Reviewed by Adam Barth.
-
-        Updates TestWebPlugin to use the Platform headers and updates the build dependencies so it can.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/chromium/TestWebPlugin.cpp:
-        (TestWebPlugin::initialize):
-
-2012-05-15  Jessie Berlin  <jberlin@apple.com>
-
-        WKContextSetCacheModel(contextref, kWKCacheModelDocumentViewer) doesn't prevent pages from
-        going into the PageCache.
-        https://bugs.webkit.org/show_bug.cgi?id=85891
-
-        Reviewed by Brady Eidson.
-
-        Set the cache model in DOMWindowExtensionNoCache so that the page cache is not used. This is
-        better than using pages with unload handlers because we may find a way to make pages with
-        unload handlers cacheable in the future.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        Remove simple-iframe-unload.html and simple-unload.html, since they are no longer used.
-
-        * TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionNoCache.cpp:
-        (TestWebKitAPI::TEST):
-        Set the cache model to kWKCacheModelDocumentViewer.
-
-        * TestWebKitAPI/Tests/WebKit2/simple-iframe-unload.html: Removed.
-        * TestWebKitAPI/Tests/WebKit2/simple-unload.html: Removed.
-
-2012-05-15  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        [Qt] Add infra for testing double-tap to zoom functionality etc
-        https://bugs.webkit.org/show_bug.cgi?id=86474
-
-        Reviewed by Simon Hausmann.
-
-        The WebViewportInfo class was renamed to QWebKitTest in preparation
-        of becoming a separate module. Adapt the use API.
-
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-        * MiniBrowser/qt/qml/ViewportInfoItem.qml:
-
-2012-05-15  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Introduce ENABLE_CSS_VARIABLES compile flag.
-        https://bugs.webkit.org/show_bug.cgi?id=86338
-
-        Reviewed by Hajime Morita.
-
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py: Unittest fix after r117028.
-        (WebKitPortTest.test_skipped_directories_for_symbols):
-
-2012-05-15  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Teach webkit-patch to gracefully handle writes of raw utf-8 encoded strings to sys.stdout
-
-        https://bugs.webkit.org/show_bug.cgi?id=85809
-
-        webkit-patch overrides sys.stdout with a StreamWriter that ensures we write utf8
-        output to stdout, but StreamWriter will by default always encode the object that's
-        passed to write(). This blows up when the object is a raw string, already encoded
-        as utf8, and does not match the default behavior of sys.stdout.
-
-        To solve this in one place, instead of every single call-site that might write
-        raw strings, we extend the stdout-wrapper to assume raw strings are utf8 before
-        passing them on to StreamWriter.write(). This has the benefit of also making the
-        stacktrace easy to read in the case where this assumption does not hold.
-
-        The source of this particular bug was that Executive.run_and_throw_if_fail() will
-        tee the output of the subprocess, and in the case of running prepare-ChangeLog this
-        might produce non-ascii output, which gets written directly to sys.stdout as raw
-        utf8-encoded strings.
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkit-patch:
-
-2012-05-15  Tomasz Morawski  <t.morawski@samsung.com>
-
-        [EFL][DRT] Split ewk_private.h file to multiple private files.
-        https://bugs.webkit.org/show_bug.cgi?id=84572
-
-        Reviewed by Antonio Gomes.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-
-2012-05-15  Michael Brüning  <michael.bruning@nokia.com>
-
-        [Qt][WK2] http/tests/navigation/https-in-page-cache.html fails with timeout
-        https://bugs.webkit.org/show_bug.cgi?id=83576
-
-        Reviewed by Simon Hausmann.
-
-        Set the PlatformWebView for the Qt port to accept all SSL certificates.
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-
-2012-05-14  Luke Macpherson  <macpherson@chromium.org>
-
-        Introduce ENABLE_CSS_VARIABLES compile flag.
-        https://bugs.webkit.org/show_bug.cgi?id=86338
-
-        Reviewed by Dimitri Glazkov.
-
-        Add a configuration option for CSS Variables support, disabling it by default.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._missing_symbol_to_skipped_tests):
-        * qmake/mkspecs/features/features.pri:
-
-2012-05-14  Nate Chapin  <japhet@chromium.org>
-
-        Add end-of-life test cases for https://bugs.webkit.org/show_bug.cgi?id=86131.
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:
-        (callDeletePlugin):
-        (pluginHasProperty):
-        (pluginHasMethod):
-        (pluginGetProperty):
-        (pluginSetProperty):
-        (pluginInvoke):
-
-2012-05-14  Dirk Pranke  <dpranke@chromium.org>
-
-        Re-enable "drt mode" on chromium-mac-leopard
-        https://bugs.webkit.org/show_bug.cgi?id=83076
-
-        Unreviewed, build fix (change?).
-
-        This change is another attempt to gather data on
-        the flakiness and timeouts we're seeing on Mac SL
-        now that we have another bot.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumDriver.__init__):
-
-2012-05-14  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r116981.
-        http://trac.webkit.org/changeset/116981
-        https://bugs.webkit.org/show_bug.cgi?id=86402
-
-        Caused compositing and mathml tests to fail. (Requested by
-        rakuco on #webkit).
-
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort._path_to_webcore_library):
-
-2012-05-14  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix regressions in garden-o-matic after r116988.
-
-        Unreviewed, build fix.
-
-        I had a typo in a field name in checkout.js, and unfortunately
-        the unittests had the same typo :(.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout.js:
-        (.):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout_unittests.js:
-
-2012-05-14  Dirk Pranke  <dpranke@chromium.org>
-
-        garden-o-matic should specify which types of baselines to rebaseline
-        https://bugs.webkit.org/show_bug.cgi?id=86242
-
-        Reviewed by Adam Barth.
-
-        This change modifies garden-o-matic so that we are explicit
-        about whether to rebaseline the text file, the image file, or
-        both. This should prevent us from pulling incorrect or
-        unexpected baselines off the bots.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout.js:
-        (.):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout_unittests.js:
-        (.):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (AbstractRebaseliningCommand):
-        (AbstractRebaseliningCommand.__init__):
-        (RebaselineTest):
-        (RebaselineTest._rebaseline_test_and_update_expectations):
-        (RebaselineTest.execute):
-        (OptimizeBaselines):
-        (OptimizeBaselines._optimize_baseline):
-        (OptimizeBaselines.execute):
-        (AnalyzeBaselines):
-        (AnalyzeBaselines._analyze_baseline):
-        (AnalyzeBaselines.execute):
-        (RebaselineExpectations._rebaseline_port):
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        (GardeningHTTPRequestHandler.rebaseline):
-        (GardeningHTTPRequestHandler.optimizebaselines):
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-        (GardeningServerTest.test_rebaseline):
-        (GardeningServerTest.test_rebaseline_new_port):
-        (GardeningServerTest.test_optimizebaselines):
-
-2012-05-14  Kangil Han  <kangil.han@samsung.com>
-
-        [EFL][DRT] Fix WebCore library path
-        https://bugs.webkit.org/show_bug.cgi?id=86355
-
-        Reviewed by Dirk Pranke.
-
-        Currently EFL DRT uses wrong WebCore library path when running DRT.
-        This patch simply adjusted it.
-
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort._path_to_webcore_library):
-
-2012-05-14  Wei James  <james.wei@intel.com>
-
-        [Chromium] ImageDiff should be build for host on Android
-        https://bugs.webkit.org/show_bug.cgi?id=82039
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-05-14  Joone Hur  <joone@webkit.org>
-
-        Unreviewed. Updating email for committers.py script.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-05-14  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed. Fix make distcheck.
-
-        * GNUmakefile.am: Add run-api-tests script to EXTRA_DIST.
-        * gtk/run-api-tests:
-        (TestRunner._lookup_atspi2_binary): Handle the case when
-        pkg_config_file_variable() return None.
-
-2012-05-14  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r116935.
-        http://trac.webkit.org/changeset/116935
-        https://bugs.webkit.org/show_bug.cgi?id=86373
-
-        Something is still broken (Requested by Ossy on #webkit).
-
-        * Scripts/webkitpy/common/checksvnconfigfile.py: Removed.
-        * Scripts/webkitpy/style/checkers/png.py:
-        (PNGChecker.check):
-        (PNGChecker):
-        (PNGChecker._config_file_path):
-        * Scripts/webkitpy/tool/commands/download.py:
-        (Land):
-        * Scripts/webkitpy/tool/steps/__init__.py:
-        * Scripts/webkitpy/tool/steps/addsvnmimetypeforpng.py: Removed.
-        * Scripts/webkitpy/tool/steps/addsvnmimetypeforpng_unittest.py: Removed.
-
-2012-05-14  Allan Sandfeld Jensen  <allan.jensen@nokia.com>
-
-        [Qt] Doesn't build with ENABLE_INSPECTOR=0
-        https://bugs.webkit.org/show_bug.cgi?id=85056
-
-        Reviewed by Tor Arne Vestbø.
-
-        * WebKitTestRunner/TestInvocation.cpp: Ifdef otherwise unused static function.
-        * qmake/mkspecs/features/features.prf:
-        * qmake/mkspecs/features/features.pri:
-
-2012-05-11  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Make sure dialogs have their parent and attached properties set before Component.onCompleted
-        https://bugs.webkit.org/show_bug.cgi?id=86222
-
-        The WebView QML api for dialogs is based on delegates for each dialog, which
-        are implemented as components. Since there's no explicit API to show the dialog,
-        the natural place to allow the dialog to choose how to display itself is in
-        Component.onCompleted.
-
-        The issue was that we were using QQmlComponent::create() when instantiating the
-        component, at which point the component did not have a parent or it's attached
-        WebView property set. That meant that we had to do some ugly workaround in our
-        test, using a 1ms timer, to get a callback once the parent was there.
-
-        We now use the QQmlComponent::beginCreate() -> QQmlComponent::completeCreate()
-        pair, which allows us to set the relevant properties before triggering the
-        Component.onCompleted callback. We were already doing this for the context
-        menus (except for setting the parent, which we did afterwards).
-
-        Reviewed by Simon Hausmann.
-
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-        * MiniBrowser/qt/qml/Dialog.qml:
-
-2012-05-14  Balazs Ankes  <bank@inf.u-szeged.hu>
-
-        webkit-patch land should automatically add svn:mime-type for .png files
-        https://bugs.webkit.org/show_bug.cgi?id=75825
-        I refactored the png.py to avoid code duplication.
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/common/checksvnconfigfile.py: Added.
-        (check):
-        (_config_file_path):
-        (errorstr_autoprop):
-        (errorstr_png):
-        * Scripts/webkitpy/style/checkers/png.py:
-        (PNGChecker.check):
-        * Scripts/webkitpy/tool/commands/download.py:
-        (Land):
-        * Scripts/webkitpy/tool/steps/__init__.py:
-        * Scripts/webkitpy/tool/steps/addsvnmimetypeforpng.py: Added.
-        (AddSvnMimetypeForPng):
-        (AddSvnMimetypeForPng.__init__):
-        (AddSvnMimetypeForPng.run):
-        (AddSvnMimetypeForPng._check_pngs):
-        * Scripts/webkitpy/tool/steps/addsvnmimetypeforpng_unittest.py: Added.
-        (MockSCMDetector):
-        (MockSCMDetector.__init__):
-        (MockSCMDetector.display_name):
-        (AddSvnMimetypeForPngTest):
-        (AddSvnMimetypeForPngTest.test_run):
-
-2012-05-14  David Kilzer  <ddkilzer@apple.com>
-
-        webkit-patch apply-attachment is very slow for big patches
-        https://bugs.webkit.org/show_bug.cgi?id=74929
-
-        Add "excludefield=attachmentdata" to the URL everywhere
-        "ctype=xml" is used to exclude this field from the XML.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/prepare-ChangeLog:
-        (fetchBugDescriptionFromURL):
-        * Scripts/webkitpy/common/config/urls.py:
-        * Scripts/webkitpy/common/config/urls_unittest.py:
-        (URLsTest.test_parse_bug_id):
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        (Bugzilla.bug_url_for_bug_id):
-
-2012-05-13  Ryosuke Niwa  <rniwa@webkit.org>
-
-        performance tests should be able to measure runs/sec rather than time
-        https://bugs.webkit.org/show_bug.cgi?id=86021
-
-        Reviewed by Ojan Vafai.
-
-        Allow " runs/s" or " ms" to appear after numerical values in tests.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest):
-
-2012-05-12  Tim Horton  <timothy_horton@apple.com>
-
-        run-safari and co. should support --guard-malloc command line argument
-        https://bugs.webkit.org/show_bug.cgi?id=86287
-
-        Reviewed by Dan Bernstein.
-
-        Add setUpGuardMallocIfNeeded(), which consults the argument --guard-malloc on OS X,
-        setting DYLD_INSERT_LIBRARIES="/usr/lib/libgmalloc.dylib" if it's enabled.
-
-        Use setUpGuardMallocIfNeeded() before running a WebKit app (whether standalone or
-        in the debugger). This will cause gmalloc to be loaded for gdb as well, but this
-        tends to be harmless.
-
-        Change "malloc guard" to the more common "Guard Malloc" in run-webkit-tests.
-
-        * Scripts/old-run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-        (appendToEnvironmentVariableList):
-        (setUpGuardMallocIfNeeded):
-        (printHelpAndExitForRunAndDebugWebKitAppIfNeeded):
-        (runMacWebKitApp):
-        (execMacWebKitAppForDebugging):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-
-2012-05-11  Ojan Vafai  <ojan@chromium.org>
-
-        Add previous/next buttons the garden-o-matics perf panel
-        https://bugs.webkit.org/show_bug.cgi?id=86280
-
-        Reviewed by Dimitri Glazkov.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/perf.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/perf_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/perf.css:
-
-2012-05-11  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix. Fix memory exhausted errors from 32-bit ld on *nix.
-
-        * waf/build/settings.py:
-        (common_configure):
-
-2012-05-11  Dirk Pranke  <dpranke@chromium.org>
-
-        webkit-patch rebaseline should fetch stale expectations :)
-        https://bugs.webkit.org/show_bug.cgi?id=86231
-
-        Unreviewed, build fix.
-
-        This change reverts r115492 and goes back to fetching individual
-        baselines from the layout tests directory, rather than fetching
-        entire zip files. The performance hit over networks for people
-        far away from the bots has turned out to be severe, so we need a
-        better solution to this.
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineTest._results_url):
-        (RebaselineTest._file_name_for_expected_result):
-        (RebaselineTest._rebaseline_test):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (TestRebaseline.test_rebaseline_updates_expectations_file_noop):
-        (test_rebaseline_updates_expectations_file):
-        (test_rebaseline_test):
-        (test_rebaseline_and_copy_test):
-        (test_rebaseline_and_copy_test_no_existing_result):
-        (test_rebaseline_and_copy_test_with_lion_result):
-        (test_rebaseline_and_copy_no_overwrite_test):
-
-2012-05-11  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [GTK] LayoutTests/svg/batik/text/verticalText.svg fails to display Chinese characters
-        https://bugs.webkit.org/show_bug.cgi?id=86198
-
-        Reviewed by Martin Robinson.
-
-        Update webkitgtk-fonts package to v0.0.3 in order to get new Kochi
-        Mincho / Gothic fonts to display Japanese and Chinese characters.
-
-        * gtk/jhbuild.modules:
-
-2012-05-11  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][DRT] SVG Batik test fails to display Chinese characters
-        https://bugs.webkit.org/show_bug.cgi?id=84461
-
-        Reviewed by Martin Robinson.
-
-        Update webkitgtk-fonts package from v0.0.1 to v0.0.3 in order to get
-        new Kochi Mincho / Gothic fonts to display Japanese and Chinese
-        characters.
-
-        * DumpRenderTree/efl/CMakeLists.txt:
-        * efl/jhbuild.modules:
-
-2012-05-11  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, GTK 64-bit Debug bot fix attempt.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort._get_gdb_output): Ignore unicode decoding errors when
-        processing gdb output.
-
-2012-05-11  Gustavo Noronha Silva  <gns@gnome.org>
-
-        REGRESSION(r116205): [GTK]: build no longer supports thin archives
-        https://bugs.webkit.org/show_bug.cgi?id=86207
-
-        * GNUmakefile.am: link libWebCoreModules to DRT.
-
-2012-05-10  Ojan Vafai  <ojan@chromium.org>
-
-        Add a perf tab to garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=86169
-
-        Reviewed by Dimitri Glazkov.
-
-        This is a first stab at making it easier to view the Chromium WebKit canary
-        perf graphs. For now, it's just a couple select elements and an iframe.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/garden-o-matic.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/perf.js: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/perf_unittests.js: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/perf.css: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/results.css:
-
-2012-05-10  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Move resumeAnimations to use Internals interface
-        https://bugs.webkit.org/show_bug.cgi?id=86063
-
-        Reviewed by Alexey Proskuryakov.
-
-        Remove resumeAnimations functions, because it is able to work in the 
-        cross-port way through the Internals interface.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (LayoutTestController):
-
-2012-05-10  Alexey Proskuryakov  <ap@apple.com>
-
-        Crash in 3rd party WebKit apps that disable cache at a wrong time
-        https://bugs.webkit.org/show_bug.cgi?id=86027
-        <rdar://problem/10615880>
-
-        Reviewed by Antti Koivisto.
-
-        Added a test that's very similar to MemoryCachePruneWithinResourceLoadDelegate,
-        but for disabling the cache instead of triggering a prune.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/mac/MemoryCacheDisableWithinResourceLoadDelegate.html: Added.
-        * TestWebKitAPI/Tests/mac/MemoryCacheDisableWithinResourceLoadDelegate.mm: Added.
-        (-[MemoryCacheDisableTestResourceLoadDelegate webView:identifierForInitialRequest:fromDataSource:]):
-        (-[MemoryCacheDisableTestResourceLoadDelegate webView:resource:willSendRequest:redirectResponse:fromDataSource:]):
-        (-[MemoryCacheDisableTestResourceLoadDelegate webView:resource:didFinishLoadingFromDataSource:]):
-        (-[MemoryCacheDisableTestResourceLoadDelegate webView:resource:didFailLoadingWithError:fromDataSource:]):
-        (TestWebKitAPI::TEST):
-
-2012-05-10  Anders Carlsson  <andersca@apple.com>
-
-        WebKit2: Add a way to blacklist specific plug-ins/plug-in versions
-        https://bugs.webkit.org/show_bug.cgi?id=86164
-        <rdar://problem/9551196>
-
-        Reviewed by Sam Weinig.
-
-        Update for WK2 API changes.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::createOtherPage):
-        (WTR::TestController::initialize):
-
-2012-05-10  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: [chromium] fix path to asan symbolize script
-        https://bugs.webkit.org/show_bug.cgi?id=86161
-
-        Reviewed by Abhishek Arya.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort._get_crash_log):
-
-2012-05-10  Lei Zhang  <thestig@chromium.org>
-
-        [chromium] Set Valgrind environment variables for layout tests.
-        https://bugs.webkit.org/show_bug.cgi?id=86156
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.setup_environ_for_server):
-
-2012-05-10  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        [webkitpy][EFL] It should be possible to use a wrapper command for ImageDiff.
-        https://bugs.webkit.org/show_bug.cgi?id=86145
-
-        Reviewed by Dirk Pranke.
-
-        The GTK+ and EFL ports use jhbuild to build a few base libraries
-        which are then used when building the port itself. Programs such
-        as DRT and ImageDiff are then supposed to be run with the
-        `run-with-jhbuild' wrapper so that the libraries are properly
-        found and loaded.
-
-        This was already the case for DumpRenderTree (EflPort defines the
-        'wrapper' option for that), but it was not possible to do the same
-        with ImageDiff so far.
-
-        The code which created the ImageDiff command-line call has been
-        moved to a separate method, _image_diff_command, which is then
-        overridden by EflPort to add the jhbuild wrapper.
-
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort.__init__):
-        (EflPort._image_diff_command):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort):
-        (WebKitPort._image_diff_command):
-        (WebKitPort._start_image_diff_process):
-
-2012-05-10  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] ENABLE_IFRAME_SEAMLESS support
-        https://bugs.webkit.org/show_bug.cgi?id=85843
-
-        Reviewed by Eric Seidel.
-
-        Add the iframe-seamless option to the options list. This makes it
-        possible to enable the iframe seamless support through build-webkit
-        script. Enabled by default for all the ports.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-05-10  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        [EFL][webkitpy] Do not redefine check_build() in EflPort.
-        https://bugs.webkit.org/show_bug.cgi?id=86124
-
-        Reviewed by Dirk Pranke.
-
-        Remove an old FIXME and do not redefine check_build in EflPort;
-        once build-dumprendertree recognizes --efl, we can use the
-        check_build implementation in WebKitPort.
-
-        * Scripts/build-dumprendertree:
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort.check_build):
-
-2012-05-10  Tommy Widenflycht  <tommyw@google.com>
-
-        [chromium] MediaStream API: Fix the ExtraData functionality in WebMediaStreamDescriptor
-        https://bugs.webkit.org/show_bug.cgi?id=86087
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/WebUserMediaClientMock.cpp:
-        (MockExtraData):
-        (WebKit):
-        (WebKit::WebUserMediaClientMock::requestUserMedia):
-
-2012-05-10  Varun Jain  <varunjain@google.com>
-
-        [chromium] Trigger context menu for long press gesture
-        https://bugs.webkit.org/show_bug.cgi?id=85919
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::EventSender):
-        (EventSender::gestureLongPress):
-        (EventSender::gestureEvent):
-        * DumpRenderTree/chromium/EventSender.h:
-        (EventSender):
-
-2012-05-10  Takashi Toyoshima  <toyoshim@chromium.org>
-
-        don't use autoinstall to import pywebsocket but check it in WebKit directly.
-        https://bugs.webkit.org/show_bug.cgi?id=86107
-
-        Reviewed by Adam Barth.
-
-        This change removes pywebsocket from webkitpy's autoinstall list and
-        imports pywebsocket 0.7.4 directly into webkitpy/thirparty.
-
-        * Scripts/webkitpy/layout_tests/servers/websocket_server.py:
-        (PyWebSocket._prepare_config):
-        * Scripts/webkitpy/thirdparty/__init__.py:
-        (AutoinstallImportHook.find_module):
-        (AutoinstallImportHook._install_irc):
-        * Scripts/webkitpy/thirdparty/__init___unittest.py:
-        (ThirdpartyTest.test_import_hook.MockImportHook.__init__):
-        (ThirdpartyTest.test_import_hook.MockImportHook._install_eliza):
-        (ThirdpartyTest):
-        (ThirdpartyTest.test_import_hook):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/COPYING: Added.
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/__init__.py: Added.
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/_stream_base.py: Added.
-        (ConnectionTerminatedException):
-        (InvalidFrameException):
-        (BadOperationException):
-        (UnsupportedFrameException):
-        (InvalidUTF8Exception):
-        (StreamBase):
-        (StreamBase.__init__):
-        (StreamBase._read):
-        (StreamBase._write):
-        (StreamBase.receive_bytes):
-        (StreamBase._read_until):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/_stream_hixie75.py: Added.
-        (for):
-        (StreamHixie75):
-        (StreamHixie75.for):
-        (StreamHixie75.__init__):
-        (StreamHixie75.send_message):
-        (StreamHixie75._read_payload_length_hixie75):
-        (StreamHixie75.receive_message):
-        (StreamHixie75._send_closing_handshake):
-        (StreamHixie75.close_connection):
-        (StreamHixie75.send_ping):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/_stream_hybi.py: Added.
-        (Frame):
-        (Frame.__init__):
-        (create_length_header):
-        (create_header):
-        (_build_frame):
-        (_filter_and_format_frame_object):
-        (create_binary_frame):
-        (create_text_frame):
-        (FragmentedFrameBuilder):
-        (FragmentedFrameBuilder.to):
-        (FragmentedFrameBuilder.__init__):
-        (FragmentedFrameBuilder.build):
-        (_create_control_frame):
-        (create_ping_frame):
-        (create_pong_frame):
-        (create_close_frame):
-        (StreamOptions):
-        (StreamOptions.__init__):
-        (Stream):
-        (Stream.for):
-        (Stream.__init__):
-        (Stream._receive_frame):
-        (Stream._receive_frame_as_frame_object):
-        (Stream.send_message):
-        (Stream.receive_message):
-        (Stream._send_closing_handshake):
-        (Stream.close_connection):
-        (Stream.send_ping):
-        (Stream._send_pong):
-        (Stream._drain_received_data):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/common.py: Added.
-        (is_control_opcode):
-        (ExtensionParameter):
-        (ExtensionParameter.__init__):
-        (ExtensionParameter.name):
-        (ExtensionParameter.add_parameter):
-        (ExtensionParameter.get_parameters):
-        (ExtensionParameter.get_parameter_names):
-        (ExtensionParameter.has_parameter):
-        (ExtensionParameter.get_parameter_value):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/dispatch.py: Added.
-        (DispatchException):
-        (DispatchException.__init__):
-        (_default_passive_closing_handshake_handler):
-        (_normalize_path):
-        (_create_path_to_resource_converter):
-        (_create_path_to_resource_converter.converter):
-        (_enumerate_handler_file_paths):
-        (_HandlerSuite):
-        (_HandlerSuite.__init__):
-        (_source_handler_file):
-        (_extract_handler):
-        (Dispatcher):
-        (Dispatcher.maintains):
-        (Dispatcher.__init__):
-        (Dispatcher.add_resource_path_alias):
-        (Dispatcher.source_warnings):
-        (Dispatcher.do_extra_handshake):
-        (Dispatcher.transfer_data):
-        (Dispatcher.passive_closing_handshake):
-        (Dispatcher.get_handler_suite):
-        (Dispatcher._source_handler_files_in_dir):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/extensions.py: Added.
-        (ExtensionProcessorInterface):
-        (ExtensionProcessorInterface.get_extension_response):
-        (ExtensionProcessorInterface.setup_stream_options):
-        (DeflateStreamExtensionProcessor):
-        (DeflateStreamExtensionProcessor.__init__):
-        (DeflateStreamExtensionProcessor.get_extension_response):
-        (DeflateStreamExtensionProcessor.setup_stream_options):
-        (DeflateFrameExtensionProcessor):
-        (DeflateFrameExtensionProcessor.__init__):
-        (DeflateFrameExtensionProcessor.get_extension_response):
-        (DeflateFrameExtensionProcessor.setup_stream_options):
-        (DeflateFrameExtensionProcessor.setup_stream_options._OutgoingFilter):
-        (DeflateFrameExtensionProcessor.setup_stream_options._OutgoingFilter.__init__):
-        (DeflateFrameExtensionProcessor.setup_stream_options._OutgoingFilter.filter):
-        (DeflateFrameExtensionProcessor.setup_stream_options._IncomingFilter):
-        (DeflateFrameExtensionProcessor.setup_stream_options._IncomingFilter.__init__):
-        (DeflateFrameExtensionProcessor.setup_stream_options._IncomingFilter.filter):
-        (DeflateFrameExtensionProcessor.set_response_window_bits):
-        (DeflateFrameExtensionProcessor.set_response_no_context_takeover):
-        (DeflateFrameExtensionProcessor.enable_outgoing_compression):
-        (DeflateFrameExtensionProcessor.disable_outgoing_compression):
-        (DeflateFrameExtensionProcessor._outgoing_filter):
-        (DeflateFrameExtensionProcessor._incoming_filter):
-        (get_extension_processor):
-        (get_extension_processor.is):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/__init__.py: Added.
-        (try):
-        (do_handshake):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/_base.py: Added.
-        (AbortedByUserException):
-        (HandshakeException):
-        (HandshakeException.__init__):
-        (VersionException):
-        (VersionException.__init__):
-        (get_default_port):
-        (validate_subprotocol):
-        (parse_host_header):
-        (format_header):
-        (build_location):
-        (get_mandatory_header):
-        (validate_mandatory_header):
-        (check_request_line):
-        (check_header_lines):
-        (parse_token_list):
-        (_parse_extension_param):
-        (_parse_extension):
-        (parse_extensions):
-        (format_extensions):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/draft75.py: Added.
-        (Handshaker):
-        (Handshaker.performs):
-        (Handshaker.__init__):
-        (Handshaker.do_handshake):
-        (Handshaker._set_resource):
-        (Handshaker._set_origin):
-        (Handshaker._set_location):
-        (Handshaker._set_subprotocol):
-        (Handshaker._set_protocol_version):
-        (Handshaker._sendall):
-        (Handshaker._send_handshake):
-        (Handshaker._check_header_lines):
-        (Handshaker._check_first_lines):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/hybi.py: Added.
-        (compute_accept):
-        (Handshaker):
-        (Handshaker.__init__):
-        (Handshaker._validate_connection_header):
-        (Handshaker.do_handshake):
-        (Handshaker._get_origin):
-        (Handshaker._check_version):
-        (Handshaker._set_protocol):
-        (Handshaker._parse_extensions):
-        (Handshaker._validate_key):
-        (Handshaker._get_key):
-        (Handshaker._send_handshake):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/hybi00.py: Added.
-        (Handshaker):
-        (Handshaker.__init__):
-        (Handshaker.do_handshake):
-        (Handshaker._set_resource):
-        (Handshaker._set_subprotocol):
-        (Handshaker._set_location):
-        (Handshaker._set_origin):
-        (Handshaker._set_protocol_version):
-        (Handshaker._set_challenge_response):
-        (Handshaker._get_key_value):
-        (Handshaker._get_challenge):
-        (Handshaker._send_handshake):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/headerparserhandler.py: Added.
-        (ApacheLogHandler):
-        (ApacheLogHandler.__init__):
-        (ApacheLogHandler.emit):
-        (_configure_logging):
-        (_parse_option):
-        (_create_dispatcher):
-        (headerparserhandler):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/http_header_util.py: Added.
-        (_is_char):
-        (_is_ctl):
-        (ParsingState):
-        (ParsingState.__init__):
-        (peek):
-        (consume):
-        (consume_string):
-        (consume_lws):
-        (consume_lwses):
-        (consume_token):
-        (consume_token_or_quoted_string):
-        (quote_if_necessary):
-        (parse_uri):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/memorizingfile.py: Added.
-        (MemorizingFile):
-        (MemorizingFile.__init__):
-        (MemorizingFile.__getattribute__):
-        (MemorizingFile.readline):
-        (MemorizingFile.get_memorized_lines):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/msgutil.py: Added.
-        (close_connection):
-        (send_message):
-        (receive_message):
-        (send_ping):
-        (MessageReceiver):
-        (MessageReceiver.receives):
-        (MessageReceiver.provides):
-        (MessageReceiver.should):
-        (MessageReceiver.__init__):
-        (MessageReceiver.run):
-        (MessageReceiver.receive):
-        (MessageReceiver.receive_nowait):
-        (MessageReceiver.stop):
-        (MessageSender):
-        (MessageSender.sends):
-        (MessageSender.provides):
-        (MessageSender.should):
-        (MessageSender.__init__):
-        (MessageSender.run):
-        (MessageSender.send):
-        (MessageSender.send_nowait):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/standalone.py: Added.
-        (_StandaloneConnection):
-        (_StandaloneConnection.__init__):
-        (_StandaloneConnection.get_local_addr):
-        (_StandaloneConnection.get_remote_addr):
-        (_StandaloneConnection.write):
-        (_StandaloneConnection.read):
-        (_StandaloneConnection.get_memorized_lines):
-        (_StandaloneRequest):
-        (_StandaloneRequest.__init__):
-        (_StandaloneRequest.get_uri):
-        (_StandaloneRequest.get_method):
-        (_StandaloneRequest.is_https):
-        (_StandaloneRequest._drain_received_data):
-        (_StandaloneSSLConnection):
-        (_StandaloneSSLConnection.for):
-        (_StandaloneSSLConnection.__init__):
-        (_StandaloneSSLConnection.__getattribute__):
-        (_StandaloneSSLConnection.__setattr__):
-        (_StandaloneSSLConnection.makefile):
-        (WebSocketServer):
-        (WebSocketServer.__init__):
-        (WebSocketServer._create_sockets):
-        (WebSocketServer.server_bind):
-        (WebSocketServer.server_activate):
-        (WebSocketServer.server_close):
-        (WebSocketServer.fileno):
-        (WebSocketServer.handle_error):
-        (WebSocketServer.get_request):
-        (WebSocketServer.serve_forever):
-        (WebSocketServer.shutdown):
-        (WebSocketRequestHandler):
-        (WebSocketRequestHandler.setup):
-        (WebSocketRequestHandler.setup.SocketServer):
-        (WebSocketRequestHandler.__init__):
-        (WebSocketRequestHandler.parse_request):
-        (WebSocketRequestHandler.log_request):
-        (WebSocketRequestHandler.log_error):
-        (WebSocketRequestHandler.is_cgi):
-        (_configure_logging):
-        (_alias_handlers):
-        (_build_option_parser):
-        (ThreadMonitor):
-        (ThreadMonitor.__init__):
-        (ThreadMonitor.run):
-        (_parse_args_and_config):
-        (_main):
-        (_main.if):
-        (_main.if.__check_script):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/stream.py: Copied from Tools/Scripts/webkitpy/thirdparty/__init___unittest.py.
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/util.py: Added.
-        (get_stack_trace):
-        (prepend_message_to_exception):
-        (__translate_interp):
-        (get_script_interp):
-        (wrap_popen3_for_win):
-        (wrap_popen3_for_win.__wrap_popen3):
-        (hexify):
-        (get_class_logger):
-        (NoopMasker):
-        (NoopMasker.__init__):
-        (NoopMasker.mask):
-        (RepeatedXorMasker):
-        (RepeatedXorMasker.__init__):
-        (RepeatedXorMasker.mask):
-        (DeflateRequest):
-        (DeflateRequest.for):
-        (DeflateRequest.__init__):
-        (DeflateRequest.__getattribute__):
-        (DeflateRequest.__setattr__):
-        (_Deflater):
-        (_Deflater.__init__):
-        (_Deflater.compress_and_flush):
-        (_Inflater):
-        (_Inflater.__init__):
-        (_Inflater.decompress):
-        (_Inflater.append):
-        (_Inflater.reset):
-        (_RFC1979Deflater):
-        (_RFC1979Deflater.that):
-        (_RFC1979Deflater.__init__):
-        (_RFC1979Deflater.filter):
-        (_RFC1979Inflater):
-        (_RFC1979Inflater.for):
-        (_RFC1979Inflater.__init__):
-        (_RFC1979Inflater.filter):
-        (DeflateSocket):
-        (DeflateSocket.for):
-        (DeflateSocket.__init__):
-        (DeflateSocket.recv):
-        (DeflateSocket.sendall):
-        (DeflateSocket.send):
-        (DeflateConnection):
-        (DeflateConnection.for):
-        (DeflateConnection.__init__):
-        (DeflateConnection.get_remote_addr):
-        (DeflateConnection.put_bytes):
-        (DeflateConnection.read):
-        (DeflateConnection.write):
-        (_is_ewouldblock_errno):
-        (drain_received_data):
-
-2012-05-10  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        [EFL][webkitpy] Define the 'wrapper' option in EflPort instead of creating a EflDriver.
-        https://bugs.webkit.org/show_bug.cgi?id=86117
-
-        Reviewed by Adam Barth.
-
-        Simplify the code used to wrap driver calls with jhbuild: we can
-        just define the 'wrapper' option instead of having to create a
-        Driver class just for that.
-
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort.__init__):
-        (EflPort._port_flag_for_scripts):
-
-2012-05-10  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r116633.
-        http://trac.webkit.org/changeset/116633
-        https://bugs.webkit.org/show_bug.cgi?id=86093
-
-        Breaks EFL tests (Requested by kov on #webkit).
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        * DumpRenderTree/efl/EventSender.cpp:
-        (keyDownCallback):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setTabKeyCyclesThroughElements):
-
-2012-05-10  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] Memory leaks found in EFL DRT
-        https://bugs.webkit.org/show_bug.cgi?id=85889
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Fix two memory leaks in EFL's DRT by using JSRetainPtr for JSString
-        created with JSStringCreateWithUTF8CString.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::onWindowObjectCleared):
-        * DumpRenderTree/efl/EventSender.cpp:
-        (modifiersFromJSValue):
-
-2012-05-10  Alexander Shalamov  <alexander.shalamov@intel.com>
-
-        [EFL] LayoutTestController needs implementation of setTabKeyCyclesThroughElements
-        https://bugs.webkit.org/show_bug.cgi?id=82864
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Add missing implementation for setTabKeyCyclesThroughElements to EFL's LayoutTestController
-        in order to unskip fast/events/keypress-insert-tab.html
-
-        * DumpRenderTree/efl/EventSender.cpp:
-        (keyDownCallback):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setTabKeyCyclesThroughElements):
-
-2012-05-10  Alexander Shalamov  <alexander.shalamov@intel.com>
-
-        [EFL][DRT] EventSender - set delayed event information if it was not set before
-        https://bugs.webkit.org/show_bug.cgi?id=85972
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Reset delayed event information if it is missing.
-
-        * DumpRenderTree/efl/EventSender.cpp:
-        (feedOrQueueMouseEvent):
-
-2012-05-07  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        WebPageProxy::activeURL() should return the pending API request, even when there's no main frame
-        https://bugs.webkit.org/show_bug.cgi?id=85806
-
-        The m_pendingAPIRequestURL member is used (presumably) to mask over the async
-        nature of WebKit2, so that starting a load of a URL will reflect that URL
-        immedeatly from activeURL, even if the request has not been passed over to
-        the web process yet and reflected there.
-
-        This works well, except in the case of the initial request, where the main
-        frame creation happens on the web process side and is notified back to the
-        UI process. Until we've recived the notification we don't know about the main
-        frame, and this race condition will potentially give us an empty url instead
-        of the pending request.
-
-        To solve this we always return the pending API request if it's set, even
-        when there's no mainframe yet (that we known about).
-
-        Reviewed by Simon Hausmann.
-
-        * TestWebKitAPI/Tests/WebKit2/PageLoadBasic.cpp:
-
-2012-05-10  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL][DRT] Clear added user style sheets before a new testcase execution.
-        https://bugs.webkit.org/show_bug.cgi?id=84792
-
-        Reviewed Gustavo Noronha Silva.
-
-        The added user style sheets from the previous testcases are cleared in order to avoid 
-        flaky results.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-
-2012-05-09  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Move suspendAnimations to use Internals interface.
-        https://bugs.webkit.org/show_bug.cgi?id=85986
-
-        Reviewed by Ryosuke Niwa.
-
-        Remove suspendAnimations functions, because it is able to work in the 
-        cross-port way through the Internals interface
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-
-2012-05-09  Kent Tamura  <tkent@chromium.org>
-
-        [Chromium] Attempt to fix an Android build error.
-        https://bugs.webkit.org/show_bug.cgi?id=86045
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-
-2012-05-09  Ojan Vafai  <ojan@chromium.org>
-
-        Don't show partytime if there are non-layout test failures.
-        https://bugs.webkit.org/show_bug.cgi?id=86056
-
-        Reviewed by Dimitri Glazkov.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/garden-o-matic.js:
-
-2012-05-09  Hayato Ito  <hayato@chromium.org>
-
-        Improve a warning message for a reftest having an unused expectation file.
-        https://bugs.webkit.org/show_bug.cgi?id=85975
-
-        Reviewed by Adam Barth.
-
-        The current warning message is not intuitive. It might be better to update the message
-        so that it encourage users to remove unused expectation files.
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner.__init__):
-
-2012-05-09  Ojan Vafai  <ojan@chromium.org>
-
-        Change "losing test coverage" to cover all non-layout test problems in garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=86043
-
-        Reviewed by Adam Barth.
-
-        -Get rid of the gtest iframe.
-        -Cover all non-layout test problems. Before we wouldn't catch compile failures
-        or gtest failures since they were not on the webkit testing bots.
-        -Include the list of failing steps next to the builder name. This is a lot less
-        cluttered than you'd expect and already helped me find a compile failure early.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-        Delete unused map.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/garden-o-matic.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui_unittests.js:
-
-2012-05-09  Jessie Berlin  <jberlin@apple.com>
-
-        Crash using the new WKBundleDOMWindowExtensions APIs.
-        https://bugs.webkit.org/show_bug.cgi?id=85888
-
-        Reviewed by Brady Eidson.
-
-        Cached frames can live slightly longer than the page, but most clients unregister themselves
-        and do other cleanup in the willDestroyPage callback, making them miss the
-        willDestroyGlobalObjectForDOMWindowExtension callbacks.
-
-        The calls to willDestroyGlobalObjectForDOMWindowExtension in the DOMWindowExtensionBasic
-        test were all being invoked underneath WebPage::close. This is unrealistic. Update that test
-        to destroy the BundleDOMWindowExtensions in response to the willDestroyPage callback.
-
-        Add a test to verify that willDestroyGlobalObjectForDOMWindowExtension is being called for
-        pages that don't go into the page cache.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        Add DOMWindowExtensionNoCache.cpp, DOMWindowExtensionNoCache_Bundle.cpp, simple-unload.html
-        and simple-iframe-unload.html
-
-        * TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionBasic.cpp:
-        (TestWebKitAPI):
-        Remove the expected messages for willDestroyGlobalObjectForDOMWindowExtension.
-        (TestWebKitAPI::didReceiveMessageFromInjectedBundle):
-        Do not bother to keep track of the live extension count - all of them are expected to be
-        live until the test completes.
-        (TestWebKitAPI::TEST):
-        Fix the calls to EXPECT to pass the expected value first, and use EXPECT_WK_STREQ so that
-        message failures will be clearer.
-        * TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionBasic_Bundle.cpp:
-        (TestWebKitAPI::DOMWindowExtensionBasic::willDestroyPage):
-        Clean up the BundleDOMWindowExtensions.
-        (TestWebKitAPI::DOMWindowExtensionBasic::willDestroyGlobalObjectForDOMWindowExtension):
-        Add an ASSERT_NOT_REACHED.
-
-        * TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionNoCache.cpp: Added.
-        (TestWebKitAPI::didReceiveMessageFromInjectedBundle):
-        Keep track of the messages received so they can be checked at the end of the test.
-        (TestWebKitAPI::TEST):
-        Navigate to uncacheable pages and back.
-        * TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionNoCache_Bundle.cpp: Copied from Tools/TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionBasic_Bundle.cpp.
-        (DOMWindowExtensionNoCache):
-        (TestWebKitAPI::DOMWindowExtensionNoCache::DOMWindowExtensionNoCache):
-        Set up all the states for each BundleDOMWindowExtension.
-        (TestWebKitAPI::DOMWindowExtensionNoCache::frameLoadFinished):
-        Tell the UI Process about the states of the BundleDOMWindowExtensions.
-        (TestWebKitAPI::DOMWindowExtensionNoCache::sendExtensionStateMessage):
-        (TestWebKitAPI::DOMWindowExtensionNoCache::initialize):
-        (TestWebKitAPI::DOMWindowExtensionNoCache::didCreatePage):
-        (TestWebKitAPI::DOMWindowExtensionNoCache::willDestroyPage):
-        Remvoe the remaining BundleDOMWindowExtensions, send the updated state, and finish the test.
-        (TestWebKitAPI::DOMWindowExtensionNoCache::updateExtensionStateRecord):
-        (TestWebKitAPI::DOMWindowExtensionNoCache::sendBundleMessage):
-        (TestWebKitAPI::DOMWindowExtensionNoCache::globalObjectIsAvailableForFrame):
-        (TestWebKitAPI::DOMWindowExtensionNoCache::willDisconnectDOMWindowExtensionFromGlobalObject):
-        ASSERT that these pages not going into the page cache are not getting disconnected to go into
-        the page cache.
-        (TestWebKitAPI::DOMWindowExtensionNoCache::didReconnectDOMWindowExtensionToGlobalObject):
-        Ditto about getting reconnected when coming out of the page cache.
-        (TestWebKitAPI::DOMWindowExtensionNoCache::willDestroyGlobalObjectForDOMWindowExtension):
-        Tell the UI Process, update the state, and get rid of the BundleDOMWindowExtension.
-        (TestWebKitAPI::didFinishLoadForFrameCallback):
-        (TestWebKitAPI::globalObjectIsAvailableForFrameCallback):
-        (TestWebKitAPI::willDisconnectDOMWindowExtensionFromGlobalObjectCallback):
-        (TestWebKitAPI::didReconnectDOMWindowExtensionToGlobalObjectCallback):
-        (TestWebKitAPI::willDestroyGlobalObjectForDOMWindowExtensionCallback):
-
-        * TestWebKitAPI/Tests/WebKit2/simple-iframe-unload.html: Added.
-        * TestWebKitAPI/Tests/WebKit2/simple-unload.html: Added.
-
-2012-05-09  Adam Barth  <abarth@webkit.org>
-
-        [Chromium] Android's DRT doesn't want to build WebUserMediaClientMock
-        https://bugs.webkit.org/show_bug.cgi?id=86045
-
-        Reviewed by Eric Seidel.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-
-2012-05-09  Adam Barth  <abarth@webkit.org>
-
-        [Chromium] MockWebSpeechInputController.cpp should be guarded by ENABLE(INPUT_SPEECH)
-        https://bugs.webkit.org/show_bug.cgi?id=86041
-
-        Reviewed by Eric Seidel.
-
-        * DumpRenderTree/chromium/MockWebSpeechInputController.cpp:
-
-2012-05-09  Adam Barth  <abarth@webkit.org>
-
-        [Chromium] Android needs to swizzle pixel dumps in order to get the same hash as other platforms
-        https://bugs.webkit.org/show_bug.cgi?id=86040
-
-        Reviewed by Kent Tamura.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::dumpImage):
-
-2012-05-09  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        [EFL] Build fix after r116464.
-
-        `ulong' is a type defined by glibc, so it is not very
-        portable. Use `unsigned long' instead.
-
-        * DumpRenderTree/efl/EventSender.cpp:
-        (DelayedEvent::DelayedEvent):
-        (DelayedEvent):
-        (leapForwardCallback):
-
-2012-05-09  Adam Barth  <abarth@webkit.org>
-
-        [Chromium] LayoutTestController should use ENABLE guards for some features
-        https://bugs.webkit.org/show_bug.cgi?id=86030
-
-        Reviewed by Eric Seidel.
-
-        These features are disabled on OS(ANDROID) and so shouldn't be compiled
-        when the feature is off.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell):
-
-2012-05-09  Tom Zakrajsek  <tomz@codeaurora.org>
-
-        Fix overzealous re-opened since blocked by... message
-        https://bugs.webkit.org/show_bug.cgi?id=86020
-
-        Reviewed by Adam Barth.
-
-        Changed CreateBug behavior to only re-open a blocked bug if it
-        was RESOLVED.  Also had to update the test infrastructure slightly
-        to allow for distinct mock commit revisions, so one could point
-        to a RESOLVED bug for testing while another pointed to an OPEN bug.
-
-        Also moved default created mock bug to be 60001 instead of 50004
-        which already exists as a reference mock bug.
-
-        * Scripts/webkitpy/common/checkout/checkout_mock.py:
-        (MockCheckout.__init__):
-        (MockCheckout.commit_info_for_revision):
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla_mock.py:
-        (MockBugzilla.create_bug):
-        * Scripts/webkitpy/tool/bot/flakytestreporter_unittest.py:
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        (test_create_rollout_resolved):
-        * Scripts/webkitpy/tool/commands/queries_unittest.py:
-        (FailureReasonTest.test_blame_line_for_revision):
-        * Scripts/webkitpy/tool/steps/createbug.py:
-        (CreateBug.run):
-
-2012-05-09  Hugo Parente Lima  <hugo.lima@openbossa.org>
-
-        Use suitable viewport values on XHTML-MP pages.
-        https://bugs.webkit.org/show_bug.cgi?id=85425
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Enable LEGACY_VIEWPORT_ADAPTION on Qt port.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-05-09  Jochen Eisinger  <jochen@chromium.org>
-
-        When creating a new page during a navigation, prime the initial document with the correct referrer policy
-        https://bugs.webkit.org/show_bug.cgi?id=86001
-
-        Reviewed by Adam Barth.
-
-        Store the referrer policy in the request, so the network stack can comply with it.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::willSendRequest):
-
-2012-05-09  Vivek Galatage  <vivekgalatage@gmail.com>
-
-        Remove CYGWIN=tty from environment variable as its no longer supported
-        https://bugs.webkit.org/show_bug.cgi?id=85791
-
-        The CYGWIN=tty environment variable is no longer supported from Cygwin
-        version 1.7.10. This fix avoids addition of this environment variable
-        for Cygwin versions greater than 1.7.9. For supporting older versions
-        i.e. 1.7.9 or older, the script takes care of retaining the environment
-        variable.
-
-        Reviewed by Adam Roben.
-
-        * Scripts/webkitdirs.pm:
-        (setupAppleWinEnv):
-
-2012-05-09  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: --skip-failing-tests should also skip flaky tests
-        https://bugs.webkit.org/show_bug.cgi?id=85941
-
-        Reviewed by Ojan Vafai.
-
-        This changes --skip-failing-tests so that we skip tests that
-        are believed to pass sometimes as well as tests that are
-        believed to always fail.
-
-        In addition, in testing this I discovered that we had lousy
-        test coverage of the details of retrying test failures and
-        --clobber-old-results, so I wrote some more tests.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.prepare_lists_and_print_output):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (unit_test_list):
-        (TestPort.__init__):
-        (TestDriver.run_test):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_skip_failing_tests):
-        (MainTest.test_retrying_and_flaky_tests):
-
-2012-05-09  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][DRT] EFL's DRT needs to support LayoutTestController.dumpIconChanges()
-        https://bugs.webkit.org/show_bug.cgi?id=84435
-
-        Reviewed by Antonio Gomes.
-
-        Catch the "icon,changed" signal on the frames in EFL's DumpRenderTree
-        to support LayoutTestController's dumpIconChanges().
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::createView):
-        (DumpRenderTreeChrome::onFrameIconChanged):
-        (DumpRenderTreeChrome::onFrameCreated):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.h:
-        (DumpRenderTreeChrome):
-
-2012-05-09  Dominik Röttsches  <dominik.rottsches@intel.com>
-
-        webkit-patch upload Fails Behind Load-balancing Proxies
-        https://bugs.webkit.org/show_bug.cgi?id=85980
-
-        Reviewed by Adam Barth.
-
-        Unchecking the login restriction to IP to allow the tool
-        to function behind load-balancing proxies that use multiple
-        outgoing IPs.
-
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        (Bugzilla.authenticate):
-
-2012-05-09  Hao Zheng  <zhenghao@chromium.org>
-
-        [Chromium-android] Add unit test for Android layout test script (chromium_android.py)
-        https://bugs.webkit.org/show_bug.cgi?id=80852
-
-        Reviewed by Adam Barth.
-
-        Add some tests to ensure that chromium android port works to some
-        extent. Some methods is hard to test, as they rely on the actual
-        behavior on device, e.g. pushing files to device.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.get_last_stacktrace): Check if dir exists.
-        * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:
-        (ChromiumAndroidPortTest):
-        (ChromiumAndroidPortTest.test_attributes):
-        (ChromiumAndroidPortTest.test_get_last_stacktrace):
-        (ChromiumAndroidPortTest.test_get_last_stacktrace.mock_run_command_no_dir):
-        (ChromiumAndroidPortTest.test_get_last_stacktrace.mock_run_command_no_file):
-        (ChromiumAndroidPortTest.test_get_last_stacktrace.mock_run_command_non_empty):
-        (ChromiumAndroidDriverTest):
-        (ChromiumAndroidDriverTest.setUp):
-        (ChromiumAndroidDriverTest.test_get_drt_return_value):
-        (ChromiumAndroidDriverTest.test_has_crash_hint):
-        (ChromiumAndroidDriverTest.test_read_prompt):
-        (ChromiumAndroidDriverTest.test_test_shell_command):
-        (ChromiumAndroidDriverTest.test_write_command_and_read_line):
-
-2012-05-09  Allan Sandfeld Jensen  <allan.jensen@nokia.com>
-
-        [Qt] ORWT fails with Qt 5 and WK2.
-        https://bugs.webkit.org/show_bug.cgi?id=85968
-
-        Reviewed by Csaba Osztrogonác.
-
-        The Qt5 binary does not have a -style argument, so avoid using it.
-
-        * Scripts/old-run-webkit-tests:
-
-2012-05-09  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL][DRT] LayoutTestController addUserScript implementation
-        https://bugs.webkit.org/show_bug.cgi?id=84718
-
-        Reviewed by Antonio Gomes.
-
-        Added implementation of addUserScript() to LayoutTestController.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues): clear added user scripts
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::addUserScript): added implementation
-
-2012-05-09  Dan Bernstein  <mitz@apple.com>
-
-        Made build-webkit copy WebKitLibraries to the right location again after r116257
-
-        Reviewed by Mark Rowe.
-
-        * Scripts/build-webkit: Pass the built product directory to copy-webkitlibraries-to-product-directory.
-        * Scripts/copy-webkitlibraries-to-product-directory: Use the first argument, if present, as the
-        product directory.
-
-2012-05-08  Ojan Vafai  <ojan@chromium.org>
-
-        Show the chromium non-layout test bots in garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=85903
-
-        Reviewed by Eric Seidel.
-
-        This is just a single-line high-level overview of the chromium non-layout test bots.
-        This means that Chromium WebKit gardeners only need to keep garden-o-matic open in
-        order to do their job.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/garden-o-matic.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/onebar.css:
-        (#chromium-gtests iframe):
-        (#chromium-gtests):
-        (#gtest-label):
-
-2012-05-08  Kangil Han  <kangil.han@samsung.com>
-
-        [EFL][DRT] Implement TextInputController.
-        https://bugs.webkit.org/show_bug.cgi?id=78559
-
-        Reviewed by Martin Robinson.
-
-        TextInputController has been created for an input emulation purpose in DRT.
-        However, not like other ports, EFL doesn't have it.
-        Therefore, this patch will enable EFL port to have an input emulation in DRT.
-
-        * DumpRenderTree/efl/CMakeLists.txt:
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::onWindowObjectCleared):
-        * DumpRenderTree/efl/TextInputController.cpp: Added.
-        (setMarkedTextCallback):
-        (hasMarkedTextCallback):
-        (markedRangeCallback):
-        (insertTextCallback):
-        (unmarkTextCallback):
-        (firstRectForCharacterRangeCallback):
-        (selectedRangeCallback):
-        (makeTextInputController):
-        * DumpRenderTree/efl/TextInputController.h: Added.
-
-2012-04-23  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        [EFL] Pass a WTF::String directly from DRT to ewebkit when possible
-        https://bugs.webkit.org/show_bug.cgi?id=84634
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Drop unnecessary const char* -> WTF::String conversions by
-        creating String objects directly in LayoutTestController out of
-        JSStringRef's and passing them to DumpRenderTreeSupportEfl.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::queueLoad):
-        (LayoutTestController::setValueForUser):
-        (LayoutTestController::findString):
-        (LayoutTestController::addUserStyleSheet):
-
-2012-05-08  Alexander Shalamov  <alexander.shalamov@intel.com>
-
-        [EFL][DRT] EventSender needs implementation of leapForward function
-        https://bugs.webkit.org/show_bug.cgi?id=83486
-
-        Reviewed by Eric Seidel.
-
-        Implemented leapForward function in Efl's DRT. This function is required
-        to delay and queue event execution and simulate real user behavior.
-
-        * DumpRenderTree/efl/EventSender.cpp:
-        (DelayedEvent):
-        (MouseEventInfo::MouseEventInfo):
-        (MouseEventInfo):
-        (sendClick):
-        (mouseDownCallback):
-        (mouseUpCallback):
-        (mouseMoveToCallback):
-        (leapForwardCallback):
-        (mouseScrollByCallback):
-        (feedOrQueueMouseEvent):
-        (feedMouseEvent):
-        (feedQueuedMouseEvents):
-
-2012-05-08  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [GTK] Memory leak in DRT EventSender.cpp
-        https://bugs.webkit.org/show_bug.cgi?id=85886
-
-        Reviewed by Martin Robinson.
-
-        Fix a memory leak in gdkModifersFromJSValue() by using JSRetainPtr for
-        JSString created with JSStringCreateWithUTF8CString.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (gdkModifersFromJSValue):
-
-2012-05-08  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] glib dependency needs to be updated in jhbuild
-        https://bugs.webkit.org/show_bug.cgi?id=85878
-
-        Reviewed by Martin Robinson.
-
-        Bump glib version from 2.31.8 to 2.32.2 in jhbuild.modules. This
-        addresses flakiness in media tests due to possible deadlock with the
-        following output on stderr:
-        GStreamer-WARNING **: wrong STREAM_LOCK count 0
-
-        The bug was fixed upstream by:
-        http://git.gnome.org/browse/glib/commit/?id=265f265c677bc5399dbb1cfa449cb4b915a6459f
-
-        * efl/jhbuild.modules:
-
-2012-05-07  Alexis Menard  <alexis.menard@openbossa.org>
-
-        [Qt] Unbreak debugging of WebKit2.
-        https://bugs.webkit.org/show_bug.cgi?id=85839
-
-        Reviewed by Simon Hausmann.
-
-        When you attach GDB to a running process, it stops it.
-        http://trac.webkit.org/changeset/115958 introduced a pause() 
-        call to wait the debugger to be attached to then continue 
-        the execution of the WebProcess. Unfortunately the pause()
-        function does not return unless a signal handler is called.
-        This patch introduce an event handler to exit from the paused
-        state when the debugger send the signal SIGCONT. The old code
-        works with older version of GDB (<7.0) but not with newer
-        versions where the behavior of pause() is correct.
-
-        * WebKitTestRunner/qt/main.cpp:
-        (sigcontHandler):
-        (main):
-
-2012-05-08  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][DRT] EFL's DRT does not fully support page visibility
-        https://bugs.webkit.org/show_bug.cgi?id=85032
-
-        Reviewed by Antonio Gomes.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (resetPageVisibilityCallback): Fix incorrect argumentCount check.
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues): Properly
-        reset page visibility setting between tests.
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setPageVisibility): Add support for "preview"
-        visibility state.
-
-2012-05-08  Gavin Peters  <gavinp@chromium.org>
-
-        [webkit-patch] Return meaningful results from single-result queries.
-        https://bugs.webkit.org/show_bug.cgi?id=85367
-
-        Reviewed by Dirk Pranke.
-
-        Sometimes a quicksearch returns a single result by just redirecting to the page for that single
-        bug. This patch hacks around that by noticing the redirect target is a single page, and constructing
-        a result list consisting of that one bug.
-
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        (BugzillaQueries._fetch_bugs_from_advanced_query):
-
-2012-05-08  Gavin Peters  <gavinp@chromium.org>
-
-        [webkit-patch] Add new chrome-channels command to track down current chrome release channels for a committed bug.
-        https://bugs.webkit.org/show_bug.cgi?id=85368
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/config/urls.py:
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla_mock.py:
-        (MockBugzillaQueries.fetch_bugs_matching_quicksearch):
-        * Scripts/webkitpy/common/net/omahaproxy.py: Added.
-        (OmahaProxy):
-        (OmahaProxy.__init__):
-        (OmahaProxy.set_url):
-        (OmahaProxy._json_url):
-        (OmahaProxy._get_json):
-        (OmahaProxy.get_revisions):
-        * Scripts/webkitpy/common/net/omahaproxy_unittest.py: Added.
-        (MockOmahaProxy):
-        (MockOmahaProxy.__init__):
-        (OmahaProxyTest):
-        (OmahaProxyTest.test_get_revisions):
-        * Scripts/webkitpy/tool/commands/__init__.py:
-        * Scripts/webkitpy/tool/commands/bugsearch.py:
-        (BugSearch):
-        * Scripts/webkitpy/tool/commands/chromechannels.py: Added.
-        (ChromeChannels):
-        (__init__):
-        (execute):
-        * Scripts/webkitpy/tool/commands/chromechannels_unittest.py: Added.
-        (MockOmahaProxy):
-        (MockOmahaProxy.get_revisions):
-        (TestableChromeChannels):
-        (TestableChromeChannels.__init__):
-        (ChromeChannelsTest):
-        (ChromeChannelsTest.test_single_bug):
-        (ChromeChannelsTest.test_with_query):
-
-2012-05-08  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed. Fix GTK+ unit tests.
-
-        * gtk/common.py:
-        (pkg_config_file_variable):
-
-2012-05-08  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Google tests that time out are leaked
-        https://bugs.webkit.org/show_bug.cgi?id=84973
-
-        Reviewed by Philippe Normand.
-
-        Move Tools/Scripts/run-gtk-tests to Tools/gtk/run-api-tests
-        leaving run-gtk-tests as simple wrapper that runs run-api-tests in
-        a jhbuild environment when jhbuild is available.
-
-        * Scripts/run-gtk-tests: Run Tools/gtk/run-api-tests directly or
-        with jhbuild if present.
-        * gtk/common.py:
-        (pkg_config_file_variable): Generic function to get a variable
-        from a pkg-config file.
-        (prefix_of_pkg_config_file): Use pkg_config_file_variable with 'prefix'.
-        * gtk/run-api-tests: Copied from Tools/Scripts/run-gtk-tests.
-        (TestRunner.__init__): Use common.build_path() to get the programs path.
-        (TestRunner._lookup_atspi2_binary): Use
-        common.pkg_config_file_variable() to get the 'exec_prefix'.
-        (TestRunner._start_accessibility_daemons): Use subprocess.Popen()
-        directly instead of helper _create_process that has been removed.
-        (TestRunner._setup_testing_environment): Use subprocess.Popen()
-        directly instead of helper _create_process that has been
-        removed. Use common.top_level_path() and common.build_path()
-        instead of custom methods that have been removed too.
-        (TestRunner._run_test_command): Use subprocess.Popen() directly
-        instead of helper _create_process that has been removed.
-
-2012-05-08  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [EFL] [DRT] Clear extra views before setting a blank page
-        https://bugs.webkit.org/show_bug.cgi?id=85608
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        We need to clear the extra views before setting a blank page,
-        otherwise it will cause more events interactions and sometimes
-        trigger a unload(). This was causing frame-crash-with-page-cache.html
-        to leak events to the next test causing any subsequent test to
-        fail.
-
-        * DumpRenderTree/efl/DumpRenderTree.cpp:
-        (runTest):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::clearExtraViews):
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.h:
-        (DumpRenderTreeChrome):
-
-2012-05-08  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt] X11 plugins need to be reworked for Qt5+WK1
-        https://bugs.webkit.org/show_bug.cgi?id=80691
-
-        Reviewed by Simon Hausmann.
-
-        Implement basic windowless plugin support with Qt5.
-
-        * qmake/mkspecs/features/features.prf:
-        Enable NPAPI plugins if X11 libraries are available.
-        * qmake/mkspecs/features/functions.prf:
-        Added a convenience function to determine availability
-        of X11 libraries.
-
-2012-05-07  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        [webkitpy] Remove Python 2.5-specific workaround from http_server_base.py.
-        https://bugs.webkit.org/show_bug.cgi?id=85852
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/servers/http_server_base.py:
-        (HttpServerBase._is_server_running_on_all_ports): Revert the part
-        of r89412 which was a workaround for an issue with Python 2.5 on
-        Mac 10.5.
-
-2012-05-07  Raphael Kubo da Costa  <rakuco@FreeBSD.org>
-
-        webkitdirs.pm: Make determineNumberOfCPUs work on FreeBSD.
-        https://bugs.webkit.org/show_bug.cgi?id=81481
-
-        Reviewed by Dirk Pranke.
-
-        FreeBSD has the same sysctl interface present in Darwin to query
-        the number of CPUs available, so use that too.
-
-        * Scripts/webkitdirs.pm:
-        (determineNumberOfCPUs): Share the sysctl call with Darwin.
-        (isFreeBSD): Added.
-
-2012-05-07  Alexis Menard  <alexis.menard@openbossa.org>
-
-        Unreviewed Qt build fix in Debug.
-
-        We need some system includes here for getpid() to be recognized.
-
-        * WebKitTestRunner/qt/main.cpp:
-
-2012-05-07  Ojan Vafai  <ojan@chromium.org>
-
-        When embedding the flakiness dashboard, hide popups when the frame is blurred.
-        https://bugs.webkit.org/show_bug.cgi?id=85684
-
-        Reviewed by Dirk Pranke.
-
-        If you show a popup, then click elsewhere in garden-o-matic, it will now
-        properly hide it.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (showPopup):
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (showPopupForBuild):
-        (generatePageForIndividualTests.if):
-        (generatePageForIndividualTests):
-        * TestResultServer/static-dashboards/flakiness_dashboard_embedded_unittests.js: Added.
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-        * TestResultServer/static-dashboards/run-embedded-unittests.html: Added.
-
-2012-05-07  Ian Vollick  <vollick@chromium.org>
-
-        [chromium] WebViewHost should setCompositorSurfaceReady
-        https://bugs.webkit.org/show_bug.cgi?id=85418
-
-        Reviewed by James Robinson.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::setWebWidget):
-
-2012-05-07  Jon Lee  <jonlee@apple.com>
-
-        WebKitTestRunner needs layoutTestController.dumpFrameLoadCallbacks
-        https://bugs.webkit.org/show_bug.cgi?id=42331
-        <rdar://problem/8193641>
-
-        Reviewed by Darin Adler.
-
-        This patch sets up the framework for supporting dumpFrameLoadCallbacks, as well as
-        outputting some of the required strings. As tests become unskipped the other callbacks
-        can be supported.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl: Add dumpFrameLoadCallbacks()
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::didReceiveMessage): pass in the dictionary containing keys needed to initialize
-        dump callbacks for the layoutTestController.
-        (WTR::InjectedBundle::booleanForKey): Helper function to extract boolean value from key in WKDictionaryRef.
-        Output some warning if we are trying to extract a value that is not a boolean.
-        (WTR::InjectedBundle::beginTesting): Update to take in the dictionary passed in by the TestController.
-        We cannot set the bits on the layoutTestController until it has been created in beginTesting().
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::didReceiveMessage):
-        (WTR):
-        (WTR::InjectedBundle::beginTesting):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (InjectedBundle):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR):
-        (WTR::dumpFrameDescriptionSuitableForTestResult): Static function similar to
-        -[WebFrame _drt_descriptionSuitableForTestResult] in DumpRenderTree.
-        (WTR::InjectedBundlePage::didStartProvisionalLoadForFrame): Output string.
-        (WTR::InjectedBundlePage::didCommitLoadForFrame): Output string.
-        (WTR::InjectedBundlePage::didFinishLoadForFrame): Output string.
-        (WTR::InjectedBundlePage::didReceiveTitleForFrame): Output string.
-        (WTR::InjectedBundlePage::didCancelClientRedirectForFrame): Output string.
-        (WTR::InjectedBundlePage::willPerformClientRedirectForFrame): Output string. In WK1 it's
-        "willPerformClientRedirectToURL" so we will have to use that value here.
-        (WTR::InjectedBundlePage::didFinishDocumentLoadForFrame): Output string.
-        (WTR::InjectedBundlePage::didHandleOnloadEventsForFrame): Output string.
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::LayoutTestController): Initialize to not dump frame load callbacks.
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (WTR::LayoutTestController::dumpFrameLoadCallbacks): Change to use setShouldDumpFrameLoadCallbacks.
-        (WTR::LayoutTestController::setShouldDumpFrameLoadCallbacks): Set bit.
-        (WTR::LayoutTestController::shouldDumpFrameLoadCallbacks): Return bit.
-        (LayoutTestController): Added m_dumpFrameLoadCallbacks to track whether to dump the output.
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::shouldLogFrameLoadDelegates): Similar to DRT.
-        (WTR::TestInvocation::invoke): Based on the URL loaded, set the bit in the dictionary that gets passed
-        to the injected bundle.
-
-2012-05-07  Tommy Widenflycht  <tommyw@google.com>
-
-        [chromium] MediaStream API: Enhance WebUserMediaClientMock and add a test for it
-        https://bugs.webkit.org/show_bug.cgi?id=85618
-
-        Reviewed by Adam Barth.
-
-        Adding the capability to control which MediaStreamTracks actually get created,
-        and adding a test that exercises the JS api using that capability.
-
-        * DumpRenderTree/chromium/WebUserMediaClientMock.cpp:
-        (WebKit::WebUserMediaClientMock::requestUserMedia):
-        * DumpRenderTree/chromium/WebUserMediaClientMock.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::testMediaStreamClient):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-05-07  Zan Dobersek  <zandobersek@gmail.com>
-
-        [Gtk] WebGL feature is not built anymore through build-webkit after r116251
-        https://bugs.webkit.org/show_bug.cgi?id=85788
-
-        Reviewed by Martin Robinson.
-
-        Enable WebGL by default for the Gtk port. The feature is already enabled by
-        default in configure.ac, so there's no reason it shouldn't be enabled when
-        building through build-webkit.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-05-07  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unittest fix after r116288, because now there are more than 5 hit for the 'Eric' word.
-        We have only 2 'Gavin', so it is a better choice than 'Eric' for unit testing.
-
-        Reviewed by Tor Arne Vestbø.
-
-        * Scripts/webkitpy/tool/bot/irc_command_unittest.py:
-        (IRCCommandTest.test_whois):
-
-2012-05-07  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r116299, r116301, and r116303.
-        http://trac.webkit.org/changeset/116299
-        http://trac.webkit.org/changeset/116301
-        http://trac.webkit.org/changeset/116303
-        https://bugs.webkit.org/show_bug.cgi?id=85795
-
-        Build is still broken (Requested by Ossy on #webkit).
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/main.cpp:
-        (main):
-        * QtTestPlatformPlugin/QtTestPlatformPlugin.pro: Removed.
-        * QtTestPlatformPlugin/TestIntegration.cpp: Removed.
-        * QtTestPlatformPlugin/TestIntegration.h: Removed.
-        * QtTestPlatformPlugin/mac/TestFontDatabase.h: Removed.
-        * QtTestPlatformPlugin/mac/TestFontDatabase.mm: Removed.
-        * QtTestPlatformPlugin/mac/TestIntegrationMac.mm: Removed.
-        * QtTestPlatformPlugin/main.cpp: Removed.
-        * QtTestPlatformPlugin/testplatform.json: Removed.
-        * Tools.pro:
-        * WebKitTestRunner/Target.pri:
-        * WebKitTestRunner/qt/main.cpp:
-        (main):
-
-2012-05-07  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Unreviewed Qt build fix.
-
-        One more try to learn how to use
-        const with a pointer array.
-
-        * DumpRenderTree/qt/main.cpp:
-        (initializeTestPlatformPlugin):
-
-2012-05-07  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Unreviewed build fix after r116299.
-
-        * DumpRenderTree/qt/main.cpp:
-        (initializeTestPlatformPlugin):
-
-2012-05-07  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt] Add test specific platform plugin to achieve unified layout test results
-        https://bugs.webkit.org/show_bug.cgi?id=80996
-
-        Reviewed by Simon Hausmann.
-
-        Added QtTestPlatformPlugin as a new project under Tools.
-        This is a Qt5-ish platform plugin that can be used to tweak the
-        platform support interfaces in order to unify layout test results.
-        For now it only overrides the font database on Mac and redirects
-        everything else to the real platform plugin. The font database it
-        provides mimics the way how we set up test fonts with fontconfig on Linux.
-        Make DumpRenderTree and WebKitTestRunner use this platform plugin.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/main.cpp:
-        (initializeTestPlatformPlugin):
-        (main):
-        * QtTestPlatformPlugin/QtTestPlatformPlugin.pro: Added.
-        * QtTestPlatformPlugin/TestIntegration.cpp: Added.
-        (TestIntegration::TestIntegration):
-        (TestIntegration::fontDatabase):
-        * QtTestPlatformPlugin/TestIntegration.h: Added.
-        (TestIntegration):
-        (TestIntegration::hasCapability):
-        (TestIntegration::createPlatformPixmap):
-        (TestIntegration::createPlatformWindow):
-        (TestIntegration::createPlatformBackingStore):
-        (TestIntegration::createPlatformOpenGLContext):
-        (TestIntegration::createPlatformSharedGraphicsCache):
-        (TestIntegration::guiThreadEventDispatcher):
-        (TestIntegration::clipboard):
-        (TestIntegration::drag):
-        (TestIntegration::inputContext):
-        (TestIntegration::accessibility):
-        (TestIntegration::nativeInterface):
-        (TestIntegration::services):
-        (TestIntegration::styleHint):
-        (TestIntegration::platformTheme):
-        * QtTestPlatformPlugin/mac/TestFontDatabase.h: Added.
-        (TestFontDatabase):
-        * QtTestPlatformPlugin/mac/TestFontDatabase.mm: Added.
-        (TestFontDatabase::populateFontDatabase):
-        * QtTestPlatformPlugin/mac/TestIntegrationMac.mm: Added.
-        (TestIntegration::fontDatabase):
-        * QtTestPlatformPlugin/main.cpp: Added.
-        (TestIntegrationPlugin::keys):
-        (TestIntegrationPlugin::create):
-        (TestIntegrationPlugin::initialize):
-        * QtTestPlatformPlugin/testplatform.json: Added.
-        * Tools.pro:
-        * WebKitTestRunner/Target.pri:
-        * WebKitTestRunner/qt/main.cpp:
-        (main):
-
-2012-05-07  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] media/video-poster-blocked-by-willsendrequest.html is flaky
-        https://bugs.webkit.org/show_bug.cgi?id=85609
-
-        Reviewed by Simon Hausmann.
-
-        Flakiness was caused by the fact that
-        media/crash-closing-page-with-media-as-plugin-fallback.html and
-        media/video-poster-blocked-by-willsendrequest.html use the same PNG
-        file as poster attribute in the video tag. The PNG file gets cached
-        when the first test is executed and this somehow causes the second
-        test to fail. 
-
-        The flakiness was addressed by clearing the memory and page caches
-        between tests.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-
-2012-05-07  Eric Seidel  <eric@webkit.org>
-
-        Add values for all features to Qt's features.pri
-        https://bugs.webkit.org/show_bug.cgi?id=85746
-
-        Reviewed by Tor Arne Vestbø.
-
-        When generate-feature-files generates features.pri it provides a value
-        for every possible ENABLE_.  In prepration for landing generate-feature-files
-        it seems appropriate to add a value for all possible ENABLEs to the existing
-        features.pri.  This lets me make sure that I'm getting them all right!
-
-        * qmake/mkspecs/features/features.pri:
-
-2012-05-07  Adam Bergkvist  <adam.bergkvist@ericsson.com>
-
-        Added myself as a committer.
-
-        Not reviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-05-07  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL][DRT] Implement LayoutTestController::execCommand
-        https://bugs.webkit.org/show_bug.cgi?id=82286
-
-        Reviewed by Antonio Gomes.
-
-        Add missing implementation execCommand and isCommandEnabled to EFL's
-        LayoutTestController. 
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::execCommand):
-        (LayoutTestController::isCommandEnabled):
-
-2012-05-06  Hayato Ito  <hayato@chromium.org>
-
-        [prepare-ChangeLog] Excludes a reference file used by reftests from test files.
-        https://bugs.webkit.org/show_bug.cgi?id=74268
-
-        Reviewed by Ryosuke Niwa.
-
-        * Scripts/prepare-ChangeLog:
-        (generateFileList):
-
-2012-05-06  Mary Wu  <mary.wu@torchmobile.com.cn>
-
-        Add a contributor to committers.py
-        https://bugs.webkit.org/show_bug.cgi?id=85761
-
-        Reviewed by Unreviewed.
-
-        Add myself to committers.py contributor.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-05-06  Dan Bernstein  <mitz@apple.com>
-
-        Tools part of: Building and debugging WebKit in the Xcode IDE requires a lot of setup
-        https://bugs.webkit.org/show_bug.cgi?id=85739
-
-        Reviewed by Daniel Bates.
-
-        * Scripts/build-webkit: Moved code that copies from WebKitLibraries to the product directory
-        from here...
-        * Scripts/copy-webkitlibraries-to-product-directory: ...to this new script.
-
-2012-05-06  Andy Estes  <aestes@apple.com>
-
-        Fix the build after r116246.
-
-        * DumpRenderTree/LayoutTestController.cpp: Remove an unused function.
-
-2012-05-06  Eric Seidel  <eric@webkit.org>
-
-        Update several build-webkit options to match the #defines they toggle
-        https://bugs.webkit.org/show_bug.cgi?id=85744
-
-        Reviewed by Adam Barth.
-
-        Most notable here is fixing --3d-canvas to be --webgl these days --
-        the define was renamed 15 months ago!
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-05-06  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL] EFL's LayoutTestController setJavaScriptCanAccessClipboard implementation
-        https://bugs.webkit.org/show_bug.cgi?id=83687
-
-        Reviewed by Antonio Gomes.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setJavaScriptCanAccessClipboard):
-
-2012-05-06  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Convert isPageBoxVisible to use Internals interface.
-        https://bugs.webkit.org/show_bug.cgi?id=85692
-
-        Reviewed by Darin Adler.
-
-        Remove isPageBoxVisible functions, because it is able to work in the
-        cross-port way through the Internals interface.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-
-2012-05-06  Tom Zakrajsek  <tomz@codeaurora.org>
-
-        sheriffbot isn't reopening patches after it lands rollouts
-        https://bugs.webkit.org/show_bug.cgi?id=64418
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/steps/createbug.py:
-        (CreateBug.run):
-
-2012-05-04  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        webkitpy: Use os.pathsep instead of manually finding out the path separator in NRWT.
-        https://bugs.webkit.org/show_bug.cgi?id=85697
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/new-run-webkit-tests: Instead of manually detecting whether
-        the path separator should be ':' or ';' by checking sys.platform, rely
-        on os.pathsep which has exactly the same information (os.pathsep is
-        ':' for Cygwin, from what I could check in Python's sources).
-
-2012-05-05  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r116223.
-        http://trac.webkit.org/changeset/116223
-        https://bugs.webkit.org/show_bug.cgi?id=85718
-
-        The bots need to set XDG_DATA_DIRS (Requested by rakuco on
-        #webkit).
-
-        * efl/jhbuildrc:
-        * gtk/jhbuildrc:
-
-2012-05-05  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        [jhbuild] Do not set XDG_DATA_DIRS in jhbuildrc.
-        https://bugs.webkit.org/show_bug.cgi?id=85717
-
-        Reviewed by Martin Robinson.
-
-        After r116209, the XDG_DATA_DIRS environment variable is now
-        passed by webkitpy's layout_tests code to run-with-jhbuild, so
-        instead of setting a few defaults in jhbuildrc we can now rely on
-        the values set and really used by each system.
-
-        * efl/jhbuildrc:
-        * gtk/jhbuildrc:
-
-2012-05-05  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Buildfix for --minimal build after r116107.
-
-        Reviewed by Csaba Osztrogonác.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-05-05  Zan Dobersek  <zandobersek@gmail.com>
-
-        [Gtk] GtkDriver is not required anymore after r116134
-        https://bugs.webkit.org/show_bug.cgi?id=85699
-
-        Reviewed by Csaba Osztrogonác.
-
-        Remove GtkDriver as it was replaced by the XvfbDriver and is
-        no longer needed.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-
-2012-05-05  Zan Dobersek  <zandobersek@gmail.com>
-
-        Increase the display ID for the Xvfb process to use if pixel_tests argument
-        is true rather than if pixel_tests option is present. This fixes the
-        XvfbDriver in the same way r115825 fixed the now-redundant GtkDriver.
-
-        Rubber-stamped by Csaba Osztrogonác.
-
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver.py:
-        (XvfbDriver._start):
-
-2012-05-04  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        webkitpy: Preserve XDG_DATA_DIRS in the environment passed to ServerProcess.
-        https://bugs.webkit.org/show_bug.cgi?id=85694
-
-        Reviewed by Martin Robinson.
-
-        This is sort of a follow-up to r100674: $XDG_DATA_DIRS should be
-        preserved, as it is particularly useful for Linux/Unix
-        environments.  As a real use case, if shared-mime-info is
-        installed into a non-trivial prefix, Glib and other libraries will
-        have trouble to properly identify mimetypes (in ResourceResponses,
-        for example) as the base freedesktop.org mimetype file will not be
-        found.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.to.setup_environ_for_server):
-
-2012-05-04  Gustavo Noronha Silva  <gns@gnome.org>
-
-        [GTK] Simplify how libWebCoreModules is linked in, and fix WebKit2 build
-        https://bugs.webkit.org/show_bug.cgi?id=85691
-
-        * GNUmakefile.am: no longer link libWebCoreModules to DumpRenderTree.
-
-2012-05-04  Eric Seidel  <eric@webkit.org>
-
-        Make capitalization and descriptions in FeatureList.pm more consistent to make easier to autogenerate
-        https://bugs.webkit.org/show_bug.cgi?id=85583
-
-        Reviewed by Daniel Bates.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-05-04  Eric Seidel  <eric@webkit.org>
-
-        Sort entries in FeaturesList.pm to make them easier to autogenerate
-        https://bugs.webkit.org/show_bug.cgi?id=85584
-
-        Reviewed by Daniel Bates.
-
-        No functional changes, only sorting.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-05-04  Andy Estes  <aestes@apple.com>
-
-        REGRESSION (r115752): WebKit2.NewFirstVisuallyNonEmptyLayout API test times out
-        https://bugs.webkit.org/show_bug.cgi?id=85675
-
-        * TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayout.cpp:
-        (TestWebKitAPI::TEST): Disable the test.
-
-2012-04-30  Jer Noble  <jer.noble@apple.com>
-
-        Full screen will exit during a provisional load of a non-ancestor iframe.
-        https://bugs.webkit.org/show_bug.cgi?id=85230
-
-        Reviewed by Maciej Stachowiak .
-
-        Add support for the new UIDelegate webView:closeFullScreenWithListener: method:
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:closeFullScreenWithListener:]):
-
-        Add support for the new closeFullScreen injected bundle method:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        (WTR::InjectedBundlePage::closeFullScreen):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-
-2012-05-04  Ojan Vafai  <ojan@chromium.org>
-
-        Fix test naming to be camel-case like the methods they are testing.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-        (test):
-
-2012-05-04  Ojan Vafai  <ojan@chromium.org>
-
-        Show the results links in the embedded flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=85660
-
-        Reviewed by Adam Barth.
-
-        Turns out these links don't add much visual noise and it's annoying
-        to have to go to the dashboard from garden-o-matic just to view the
-        results for a test.
-
-        This is useful for cases where garden-o-matic doesn't properly show the
-        results (e.g. missing tests). If we address all those cases, then
-        we could easily hide the results links again if we wanted to.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (showUpdateInfoForTest):
-        (htmlForIndividualTestOnAllBuildersWithResultsLinks):
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-        (test):
-
-2012-05-04  Dirk Pranke  <dpranke@chromium.org>
-
-        Revert to using chromium --test-shell mode on SL in NRWT
-
-        https://bugs.webkit.org/show_bug.cgi?id=83076
-
-        Unreviewed, build fix.
-
-        We seem to be seeing a lot more flakiness on the bot since
-        I switched NRWT to "DRT" mode. We'll try reverting back and
-        see if this helps things.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumDriver.__init__):
-
-2012-05-04  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Implement layoutTestController.dumpResourceResponseMIMETypes
-        https://bugs.webkit.org/show_bug.cgi?id=84941
-
-        Reviewed by Martin Robinson.
-
-        Print MIME type detection messages in EFL's DumpRenderTree if
-        LayoutTestController's dumpResourceResponseMIMETypes() returns true.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::onResponseReceived):
-
-2012-05-04  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [GTK] DRT needs an implementation of LayoutTestController::setDefersLoading and ::goBack
-        https://bugs.webkit.org/show_bug.cgi?id=85134
-
-        Reviewed by Martin Robinson.
-
-        Add missing implementation setDefersLoading and goBack to GTK's
-        LayoutTestController so that the test case rely on these methods
-        can be enabled.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::goBack):
-        (LayoutTestController::setDefersLoading):
-
-2012-05-04  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
-
-        [Qt][NRWT] Run each DRT in it's own xvfb
-        https://bugs.webkit.org/show_bug.cgi?id=77335
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort._driver_class):
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort._driver_class):
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver.py: Added.
-        (XvfbDriver):
-        (XvfbDriver._start):
-        (XvfbDriver._start.x_filter):
-        (XvfbDriver.stop):
-
-2012-05-04  Zan Dobersek  <zandobersek@gmail.com>
-
-        Use destructuring assingment for the return values of the
-        port.diff_image() method call.
-
-        Rubber-stamped by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer.py:
-        (write_test_result):
-
-2012-05-03  Ojan Vafai  <ojan@chromium.org>
-
-        Store fewer runs by default in the flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=85568
-
-        Reviewed by Dirk Pranke.
-
-        This will greatly shrink the size of the json files we load,
-        resulting in a much faster initial load. People rarely care
-        about more than 100 runs. For the cases they do, they can still click
-        the show all runs checkbox to show 500 runs.
-
-        * TestResultServer/model/jsonresults.py:
-
-2012-05-04  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Frame load callbacks output is missing for redirections
-        https://bugs.webkit.org/show_bug.cgi?id=85173
-
-        Reviewed by Antonio Gomes.
-
-        Catch the new ewk_frame signals to print the expected output in case
-        of redirections, when LayoutTestController's dumpFrameLoadCallbacks()
-        returns true.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::createView):
-        (DumpRenderTreeChrome::onWillSendRequest):
-        (DumpRenderTreeChrome::onFrameCreated):
-        (DumpRenderTreeChrome::onFrameRedirectForProvisionalLoad):
-        (DumpRenderTreeChrome::onFrameRedirectRequested):
-        (DumpRenderTreeChrome::onResponseReceived):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.h:
-        (DumpRenderTreeChrome):
-
-2012-05-04  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Fix up warning about missing GLib/Gio/GStreamer
-
-        We don't actually fall back.
-
-        Rubber-stamped by Csaba Osztrogonác.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-05-04  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Clarify warning about missing GLib/Gio/GStreamer for media support
-
-        And only print it once.
-
-        Reviewed by Csaba Osztrogonác.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-05-04  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Clean up and split features.prf into a static list of defaults
-
-        The static list of feature defaults is used as a fallback for any
-        feature that's not dynamically detected or overriden on the command
-        line (though build-webkit or passing DEFINES+= to qmake).
-
-        The static list is complete, which allows for auto-generation based
-        on Features.py (see bug https://bugs.webkit.org/show_bug.cgi?id=85456)
-
-        https://bugs.webkit.org/show_bug.cgi?id=85611
-
-        Reviewed by Simon Hausmann.
-
-        * Scripts/build-webkit:
-        * Tools.pro:
-        * qmake/mkspecs/features/features.prf:
-        * qmake/mkspecs/features/features.pri: Added.
-
-2012-05-04  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r116085, r116091, and r116095.
-        http://trac.webkit.org/changeset/116085
-        http://trac.webkit.org/changeset/116091
-        http://trac.webkit.org/changeset/116095
-        https://bugs.webkit.org/show_bug.cgi?id=85628
-
-        We are not ready with dependencies on all platform yet (mac) +
-        problems with debug builds. (Requested by Zoltan on #webkit).
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-05-04  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] LayoutTestController does not support overriding WebKitLoadSiteIconsKey
-        https://bugs.webkit.org/show_bug.cgi?id=85171
-
-        Reviewed by Andreas Kling.
-
-        Implement support for overriding "WebKitLoadSiteIconsKey" setting in
-        EFL's LayoutTestController.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::overridePreference):
-
-2012-05-03  Alexis Menard  <alexis.menard@openbossa.org>
-
-        [Qt] Enable fullscreen API for WebKit2.
-        https://bugs.webkit.org/show_bug.cgi?id=85498
-
-        Reviewed by Simon Hausmann.
-
-        Enable the fullscreen API on the MiniBrowser and turn
-        it default on WebKit2, disable it on WK1.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.prf:
-
-2012-05-04  Allan Sandfeld Jensen  <allan.jensen@nokia.com>
-
-        REGRESSION(r116008) old-run-webkit-tests broken
-        https://bugs.webkit.org/show_bug.cgi?id=85597
-
-        Reviewed by Simon Hausmann.
-
-        Reinstate libraryContainsSymbol.
-
-        * Scripts/webkitperl/features.pm:
-        (libraryContainsSymbol):
-
-2012-05-04  Zoltan Horvath  <zoltan@webkit.org>
-
-        [Qt] Set WebCore imagedecoders as default and add fallback to QImageDecoder
-        https://bugs.webkit.org/show_bug.cgi?id=80400
-
-        Remove WTF_USE_QT_IMAGE_DECODER macro.
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-05-03  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] DRT should obey layoutTestController's addURLToRedirect()
-        https://bugs.webkit.org/show_bug.cgi?id=82722
-
-        Reviewed by Maciej Stachowiak.
-
-        Implement support for layoutTestController's addURLToRedirect()
-        in EFL's DRT so that it redirects properly when indicated.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::onWillSendRequest):
-
-2012-05-03  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] DRT should support LayoutTestController's willSendRequestReturnsNullOnRedirect()
-        https://bugs.webkit.org/show_bug.cgi?id=82704
-
-        Reviewed by Antonio Gomes.
-
-        EFL's DRT needs to obey LayoutTestController's
-        willSendRequestReturnsNullOnRedirect().
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::onWillSendRequest):
-
-2012-05-03  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        git-add-reviewer: Do not put the bug title and its URL in the same line in the commit message.
-        https://bugs.webkit.org/show_bug.cgi?id=85570
-
-        Reviewed by Adam Roben.
-
-        The standard format of commit messages and ChangeLog entries has a
-        short summary in the first line, followed by the bug URL in
-        Bugzilla. Passing "%s" in the pretty format line to git-rev-list
-        merges these two lines into a single one separated by a space
-        character, which is not what we want.
-
-        Since "%s%n%n%b" is in practice "%B" (raw message), use it
-        instead, as the first two lines do not end up being merged
-        together.
-
-        * Scripts/git-add-reviewer:
-        (writeCommitMessageToFile):
-
-2012-05-03  Ojan Vafai  <ojan@chromium.org>
-
-        Improve UI for garden-o-matic examine view when there are fewer than 5 tests.
-        https://bugs.webkit.org/show_bug.cgi?id=85566
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
-        (.):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results_unittests.js:
-        (.):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/results.css:
-
-2012-05-03  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        webkitpy: Recognize FreeBSD as a valid platform.
-        https://bugs.webkit.org/show_bug.cgi?id=81467
-
-        Reviewed by Adam Barth.
-
-        Add PlatformInfo.is_freebsd() so that trying to use webkit-patch
-        on FreeBSD does not raise an "unrecognized platform" exception.
-
-        Most of this patch contains some unit tests for the mentioned
-        method, as currently platform-specific code is needed only on
-        Windows.
-
-        * Scripts/webkitpy/common/system/platforminfo.py:
-        (PlatformInfo.__init__):
-        (PlatformInfo.is_freebsd):
-        (PlatformInfo._determine_os_name):
-        * Scripts/webkitpy/common/system/platforminfo_mock.py:
-        (MockPlatformInfo.is_freebsd):
-        * Scripts/webkitpy/common/system/platforminfo_unittest.py:
-        (fake_platform):
-        (fake_platform.FakePlatformModule.release):
-        (TestPlatformInfo.test_real_code):
-        (TestPlatformInfo.test_os_name_and_wrappers):
-        (TestPlatformInfo.test_os_version):
-        (TestPlatformInfo.test_display_name):
-        (TestPlatformInfo.test_total_bytes_memory):
-        (TestPlatformInfo.test_free_bytes_memory):
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        (PortFactory._default_port):
-
-2012-05-03  Ojan Vafai  <ojan@chromium.org>
-
-        Make the table headers white-space:nowrap. This decreases the vertical size,
-        which makes for more minimal embedding in garden-o-matic.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.css:
-        (.table-header-content *):
-
-2012-05-03  Eric Seidel  <eric@webkit.org>
-
-        Split build-webkit's feature option list off into its own module in preparation for autogeneration
-        https://bugs.webkit.org/show_bug.cgi?id=85548
-
-        Reviewed by Daniel Bates.
-
-        My Perl-fu is very weak.  This moves the feature option list off into a separate module
-        file so that I can easily autogenerate just that file with the fancy new generate-feature-files command.
-        It's a bit odd to have an array which we return out to build-webkit to modify, but it turns out
-        not to matter.  Also, build-webkit doesn't actually use any of the variables we're using to
-        store the results from the option parse, so those end up inaccessible from build-webkit (except by reference)
-        which is actually cleaner.  Callers can't assume that they would get a new array every time, but someone
-        with more Perl-fu than I could create something fancier than this if we need in the future.
-
-        * Scripts/build-webkit:
-        * Scripts/webkitperl/FeatureList.pm: Added.
-        (getFeatureOptionList):
-
-2012-05-03  Dirk Pranke  <dpranke@chromium.org>
-
-        REGRESSION: run-webkit-tests failing on Chromium Mac
-        https://bugs.webkit.org/show_bug.cgi?id=85459
-
-        Unreviewed, build fix.
-
-        Turns out select doesn't throw IOErrors, it has it's own kind of
-        error :(. Trap that instead.
-
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        (ServerProcess._wait_for_data_and_update_buffers_using_select):
-
-2012-05-03  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        [CMake] Rewrite FindCairo.cmake.
-        https://bugs.webkit.org/show_bug.cgi?id=84895
-
-        Reviewed by Daniel Bates.
-
-        The old approach relied on pkg-config for finding Cairo (which
-        introduced a dependency on pkg-config that could be avoided), used
-        the LibFindMacros code that we should probably remove in the
-        future and did not use the FindPackageHandleStandardArguments
-        module.
-
-        Change all that by rewriting the module.
-        - Use the pkg-config output optionally instead of requiring it
-        like LibFindMacros did.
-        - Remove the implicit dependency on FreeType which often found it
-        the wrong way via pkg-config and without considering
-        CMAKE_PREFIX_PATH.
-        - Retrieve the Cairo version by looking at cairo-version.h instead
-        of relying on pkg-config. It requires some additional code for
-        checking if the desired version has been found, but that will not
-        be needed once we start depending on CMake 2.8.3 or later.
-
-        The only downside is that FPHSA sets <UPPERCASED_NAME>_FOUND
-        instead of <Name>_FOUND, and to keep things consistent
-        Cairo_LIBRARIES and Cairo_INCLUDE_DIRS have become CAIRO_LIBRARIES
-        and CAIRO_INCLUDE_DIRS.
-
-        * DumpRenderTree/efl/CMakeLists.txt: Use CAIRO_FOO instead of
-        Cairo_FOO.
-        * EWebLauncher/CMakeLists.txt: Ditto.
-
-2012-05-03  Ojan Vafai  <ojan@chromium.org>
-
-        Fix modifier and bug sorting on the flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=85554
-
-        Reviewed by Dirk Pranke.
-
-        The sorting assumes that the column header name matches a field
-        in the testResults object and uses that field for sorting.
-        Filter the bugs out of the modifiers list and put them in a bugs field
-        and only put the non-bug modifiers in the modifiers list.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (populateExpectationsData):
-        (htmlForSingleTestRow):
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-
-2012-05-03  Ojan Vafai  <ojan@chromium.org>
-
-        Fix some state resetting when running unittests. HtmlForSingleTestRow
-        was flaky.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (htmlForSingleTestRow):
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-        (resetGlobals):
-
-2012-05-03  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        webkitpy: Use PlatformInfo wherever possible in the User class.
-        https://bugs.webkit.org/show_bug.cgi?id=85549
-
-        Reviewed by Dirk Pranke.
-
-        Instead of relying on sys.platform to detect whether the current
-        platform is a Mac, use the PlatformInfo class instead.
-
-        * Scripts/webkitpy/common/system/user.py:
-        (User.__init__):
-        (User.edit_changelog):
-
-2012-05-03  Ojan Vafai  <ojan@chromium.org>
-
-        Remove the percent failed column from the flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=85552
-
-        Reviewed by Dirk Pranke.
-
-        This column isn't useful enough to justify the visual noise.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (processMissingAndExtraExpectations):
-        (tableHeaders):
-        (htmlForSingleTestRow):
-        (sortTests):
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-        (test):
-
-2012-05-03  Eric Seidel  <eric@webkit.org>
-
-        --coverage should not not use the "feature" options system in build-webkit, similarly remove special-casing for WTF_URL
-        https://bugs.webkit.org/show_bug.cgi?id=85542
-
-        Reviewed by Daniel Bates.
-
-        Remove these last two odd-men-out, so that we can generate the default feature options
-        for build-webkit using the new generate-feature-files command.
-        The Mac build system has some special casing for ENABLE_ defines which gets them
-        defined as -D on the build command, even though initially they start out as
-        environment variables ENABLE_FOO = ENABLE_FOO.  The Feature options in build-webkit
-        depend on this support, but it doesn't work for WTF_USE_ defines like WTF_USE_WTF_URL.
-        I'm told that WTF_URL is not actively being worked on, so just removing it for now.
-        It should probably come back to life as an ENABLE_, or build-webkit or the Xcode projects
-        should be made generically smarter about these USE_WTF defines.
-        (There is still WTF_USE_TILED_BACKING_STORE in the feature list, but it only seems
-        used by Qt.  If someone tried build-webkit --tiled-backing-store on Mac today it
-        would not work!)
-
-        * Scripts/build-webkit:
-
-2012-05-03  Eric Seidel  <eric@webkit.org>
-
-        Remove the last bits of Leopard support from our perl scripts
-        https://bugs.webkit.org/show_bug.cgi?id=85545
-
-        Reviewed by Daniel Bates.
-
-        Chromium still supports Leopard (for a little while yet), but AppleMacWebKit dropped
-        Leopard support several months ago.  Remove the last bits of isLeopard() branching
-        in our Perl scripts, since no one is using this (Chromium has never used this Perl code).
-
-        * Scripts/build-webkit:
-        * Scripts/old-run-webkit-tests:
-        (countAndPrintLeaks):
-        (captureSavedCrashLog):
-        * Scripts/webkitdirs.pm:
-        (determineArchitecture):
-        (argumentsForRunAndDebugMacWebKitApp):
-
-2012-05-03  Ojan Vafai  <ojan@chromium.org>
-
-        [Chromium] Don't show the WebKit Linux ASAN bot on the flakiness dashboard.
-        https://bugs.webkit.org/show_bug.cgi?id=85551
-
-        Reviewed by Dirk Pranke.
-
-        It's not uploading results and in the short term we don't plan to have it start.
-
-        * TestResultServer/static-dashboards/builders.js:
-        (isChromiumWebkitTipOfTreeTestRunner):
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-
-2012-05-03  Ojan Vafai  <ojan@chromium.org>
-
-        Show the test name in the dashboard if showChrome==false and we're showing multiple tests
-        https://bugs.webkit.org/show_bug.cgi?id=85243
-
-        Reviewed by Dirk Pranke.
-
-        This happens for cases where a test name matches multiple tests.
-        In practice, this only happens for virtual test suites (e.g. the canvas tests).
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (htmlForIndividualTestOnAllBuildersWithChrome):
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-        (testHtmlForIndividualTestOnAllBuildersWithChromeNonexistant):
-        (testHtmlForIndividualTestOnAllBuildersWithChrome):
-        (testHtmlForIndividualTestOnAllBuildersWithChromeWebkitMaster):
-        (testHtmlForIndividualTests):
-
-2012-05-03  Ojan Vafai  <ojan@chromium.org>
-
-        Port the flakiness dashboard unittests to qunit
-        https://bugs.webkit.org/show_bug.cgi?id=85544
-
-        Reviewed by Adam Barth.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (appendJSONScriptElements):
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-        (resetGlobals):
-        (runExpectationsTest):
-        (test):
-        * TestResultServer/static-dashboards/run-unittests.html: Added.
-
-2012-05-03  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        webkitpy: Remove check for readline on Mac.
-        https://bugs.webkit.org/show_bug.cgi?id=85547
-
-        Reviewed by Eric Seidel.
-
-        Python 2.5 is not supported by the WebKit project anymore, and
-        Python's readline documentation does not mention the module not
-        being available in the supported versions.
-
-        * Scripts/webkitpy/common/system/user.py:
-
-2012-05-03  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [NRWT] Run performance tests with lock
-        https://bugs.webkit.org/show_bug.cgi?id=78628
-
-        Reviewed by Tony Chang.
-
-        Locking performance tests (like we do for http tests) will force them
-        to run in serial. This reduces the load of the machine when running perf
-        tests and minimizes the chances of the tests to fail, specially
-        timeouts.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.__init__):
-        (Manager._is_perf_test):
-        (Manager._test_requires_lock):
-        * Scripts/webkitpy/layout_tests/port/http_lock.py:
-
-2012-05-03  Dirk Pranke  <dpranke@chromium.org>
-
-        Attempt to fix a crash on SL ...
-
-        Unreviewed, build fix.
-
-        It looks like we may be getting an IOError raised during
-        select() on chromium mac, and that error isn't being caught.
-        Pushing it into the try/catch block will hopefully catch this
-        and allow us to see why the subprocess is crashing.
-
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        (ServerProcess._wait_for_data_and_update_buffers_using_select):
-
-2012-05-02  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        WebFrameLoaderClient::dispatchWillSendSubmitEvent() needs to be
-        implemented for WebKit2
-        https://bugs.webkit.org/show_bug.cgi?id=84304
-
-        Reviewed by Jessie Berlin.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        Added new files to project.
-
-        * TestWebKitAPI/Tests/WebKit2/WillSendSubmitEvent.cpp: Added.
-        (TestWebKitAPI::didReceiveMessageFromInjectedBundle):
-        Look for the "DidReceiveWillSendSubmitEvent" message. The message body
-        will be the dictionary of form control names and values passed to the
-        injected bundle's willSendSubmitEvent handler; look for the pairs
-        "textField" -> "text field" and "passwordField" -> "password field".
-        Check that "hiddenField" is not included.
-        (TestWebKitAPI::setInjectedBundleClient):
-        (TestWebKitAPI::TEST):
-
-        * TestWebKitAPI/Tests/WebKit2/WillSendSubmitEvent_Bundle.cpp: Added.
-        (TestWebKitAPI::willSendSubmitEvent):
-        Post a message to the TestWebKitAPI process with the dictionary of form
-        control names and values that we received.
-        (TestWebKitAPI::WillSendSubmitEventTest::WillSendSubmitEventTest):
-        (TestWebKitAPI::WillSendSubmitEventTest::didCreatePage):
-        Set up the page's form client.
-
-        * TestWebKitAPI/Tests/WebKit2/auto-submitting-form.html: Added.
-
-2012-05-03  Eric Seidel  <eric@webkit.org>
-
-        Remove dead code from build-webkit for working around old XCode dependency bug
-        https://bugs.webkit.org/show_bug.cgi?id=85535
-
-        Reviewed by Adam Barth.
-
-        Xcode used to have a bug whereby it didn't notice if you changed the #defines
-        passed on the command line to xcodebuild.  I wrote code to work around this
-        while bringing up SVG support 5-6 years ago.  I think we can finally remove this
-        code from build-webkit, since SVG is the only feature flag to ever use it
-        (modern in-progress features like MathML don't seem to be using the support)
-        an I suspect the XCode bug has long been fixed.
-
-        * Scripts/build-webkit:
-        * Scripts/webkitperl/features.pm:
-
-2012-05-03  Andy Estes  <aestes@apple.com>
-
-        InjectedBundleControllerMac.mm needs to include config.h
-        https://bugs.webkit.org/show_bug.cgi?id=85531
-
-        Reviewed by Andreas Kling.
-
-        * TestWebKitAPI/mac/InjectedBundleControllerMac.mm:
-
-2012-05-03  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        webkitpy: Use PlatformInfo whenever possible in server_process.py.
-        https://bugs.webkit.org/show_bug.cgi?id=85516
-
-        Reviewed by Eric Seidel.
-
-        Eliminate direct access to sys.platform wherever possible by using
-        PlatformInfo.is_win() instead.
-
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        (ServerProcess.__init__): Remove the executive parameter as it was
-        not passed by any caller, obtain a SystemHost from port_obj
-        instead.
-        (ServerProcess._log): Style, remove extra empty line.
-        (ServerProcess._start):
-        (ServerProcess.stop):
-        (ServerProcess.kill):
-        * Scripts/webkitpy/layout_tests/port/server_process_unittest.py:
-        (TrivialMockPort.__init__): Create a MockSystemHost used by
-        ServerProcess.
-        (TestServerProcess.test_broken_pipe): Test different platforms.
-
-2012-05-03  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        webkitpy: Style checker broken when committing a PNG
-        https://bugs.webkit.org/show_bug.cgi?id=85504
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/style/checkers/png.py:
-        (PNGChecker.__init__):
-
-2012-05-03  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, fix another call to join(), similar to the ones landed
-        in r115975.
-
-        * Scripts/webkitdirs.pm:
-        (jhbuildConfigurationChanged):
-
-2012-05-03  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        webkitpy: Remove sys.platform accesses in CrashLogs.
-        https://bugs.webkit.org/show_bug.cgi?id=85436
-
-        Reviewed by Dirk Pranke.
-
-        Instead of directly checking for sys.platform == 'darwin', use a
-        SystemHost and call PlatformInfo.is_mac().
-
-        * Scripts/webkitpy/common/system/crashlogs.py:
-        (CrashLogs.__init__):
-        (CrashLogs.find_newest_log):
-        (CrashLogs._log_directory_darwin):
-        (CrashLogs._find_newest_log_darwin):
-        * Scripts/webkitpy/common/system/crashlogs_unittest.py:
-        (CrashLogsTest.test_find_log_darwin):
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort._get_crash_log):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestDriver.run_test):
-        * Scripts/webkitpy/tool/commands/queries.py:
-        (execute):
-
-2012-05-03  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] join() is wrongly used in webkitdirs.pm since r115532
-        https://bugs.webkit.org/show_bug.cgi?id=85501
-
-        Reviewed by Martin Robinson.
-
-        * Scripts/webkitdirs.pm:
-        (getJhbuildPath):
-        (buildAutotoolsProject):
-
-2012-05-03  Zan Dobersek  <zandobersek@gmail.com>
-
-        [Gtk] ImageDiff crashes when it can't open a display
-        https://bugs.webkit.org/show_bug.cgi?id=85476
-
-        Reviewed by Martin Robinson.
-
-        Replace gdk_init() initialization call with the g_type_init()
-        call. GdkPixbufLoader doesn't actually need the current call to be
-        made and this change will also remove crashes when ImageDiff
-        is started in an environment without a DISPLAY env.
-
-        * DumpRenderTree/gtk/ImageDiff.cpp:
-        (main):
-
-2012-05-03  Zan Dobersek  <zandobersek@gmail.com>
-
-        ImageDiff should be run inside a properly established environment
-        https://bugs.webkit.org/show_bug.cgi?id=85292
-
-        Reviewed by Martin Robinson.
-
-        When creating the ImageDiff server process, pass along a freshly-set-up environment
-        in which the process should be executed in.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._start_image_diff_process):
-
-2012-05-03  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Allow the web process and WTR to be paused on startup
-
-        Makes it easier to debug the web process or run-webkit-tests -2, as you
-        have ample time to attach gdb to the process.
-
-        Reviewed by Simon Hausmann.
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort.setup_environ_for_server):
-        * WebKitTestRunner/qt/main.cpp:
-        (main):
-
-2012-05-03  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Password protect "Stop build" button
-        https://bugs.webkit.org/show_bug.cgi?id=81982
-
-        Reviewed by Ryosuke Niwa.
-
-        Only authenticated users should be able to use stopBuild, stopAllBuilds, cancelPendingBuild
-        features to prevent killing builds on build.webkit.org by SPAM bots.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2012-05-03  Dongwoo Im  <dw.im@samsung.com>
-
-        [DRT] Remove the name of parameter, visibility, from the setPageVisibility stub implementations.
-        https://bugs.webkit.org/show_bug.cgi?id=85468
-
-        Reviewed by Nikolas Zimmermann.
-
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
-        (LayoutTestController::setPageVisibility): Remove the name of parameter, visibility.
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setPageVisibility): Remove the name of parameter, visibility.
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setPageVisibility): Remove the name of parameter, visibility.
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setPageVisibility): Remove the name of parameter, visibility.
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setPageVisibility): Remove the name of parameter, visibility.
-
-2012-05-03  Stephanie Lewis  <slewis@apple.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=85450 unbounded growth of JSDOMWindowShells loading pages in the same window
-        <rdar://problem/11320059> REGRESSION (r115083): PLT3 shows linear memory growth and gets slower with each run
-
-        Reviewed by Brady Eidson.
-
-        The API added for DOMWindowExtension, didCreateGlobalObjectForFrame, would create a global object
-        for every world, even those that did not need the callback.  This had the side effect of creating a
-        JSDOMWindowShell that the associated world didn't necessarily know to clean up.  Instead of creating
-        unnecessary objects change the API to globalObjectIsAvailableForFrame and do not pass the global object
-        in the API.  The object can be accessed later by those worlds which require it.
-
-        * TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionBasic.cpp:
-        (TestWebKitAPI):
-        (TestWebKitAPI::didReceiveMessageFromInjectedBundle):
-        * TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionBasic_Bundle.cpp:
-        (TestWebKitAPI):
-        (DOMWindowExtensionBasic):
-        (TestWebKitAPI::DOMWindowExtensionBasic::didCreatePage):
-        (TestWebKitAPI::DOMWindowExtensionBasic::globalObjectIsAvailableForFrame):
-        (TestWebKitAPI::globalObjectIsAvailableForFrameCallback):
-
-2012-05-03  Nikolas Zimmermann  <nzimmermann@rim.com>
-
-        Not reviewed. Fix mac build, it was missing setPageVisibility/resetPageVisibility stub implementations.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::resetPageVisibility):
-        (LayoutTestController::setPageVisibility):
-
-2012-05-02  Alexander Færøy  <ahf@0x90.dk>
-
-        Rename deviceDPI to devicePixelRatio
-        https://bugs.webkit.org/show_bug.cgi?id=85049
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Use 1.5 as device pixel ratio for the Qt MiniBrowser.
-
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-
-2012-05-03  Dongwoo Im  <dw.im@samsung.com>
-
-        [EFL][DRT] Implement the LayoutTestController's methods related to the Page Visibility API.
-        https://bugs.webkit.org/show_bug.cgi?id=85347
-
-        Reviewed by Nikolas Zimmermann.
-
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
-        (LayoutTestController::resetPageVisibility): Not implemented.
-        (LayoutTestController::setPageVisibility): Not implemented.
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::resetPageVisibility): Reset the page visibility.
-        (LayoutTestController::setPageVisibility): Set the page visibility.
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::resetPageVisibility): Not implemented.
-        (LayoutTestController::setPageVisibility): Not implemented.
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::resetPageVisibility): Not implemented.
-        (LayoutTestController::setPageVisibility): Not implemented.
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::resetPageVisibility): Not implemented.
-        (LayoutTestController::setPageVisibility): Not implemented.
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::resetPageVisibility): Not implemented.
-        (LayoutTestController::setPageVisibility): Not implemented.
-
-2012-05-02  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r115918.
-        http://trac.webkit.org/changeset/115918
-        https://bugs.webkit.org/show_bug.cgi?id=85452
-
-        "Broke test-webkitpy on Apple Lion bots" (Requested by estes
-        on #webkit).
-
-        * Scripts/webkitpy/common/system/crashlogs.py:
-        (CrashLogs.__init__):
-        (CrashLogs.find_newest_log):
-        (CrashLogs._log_directory_darwin):
-        (CrashLogs._find_newest_log_darwin):
-        * Scripts/webkitpy/common/system/crashlogs_unittest.py:
-        (CrashLogsTest.test_find_log_darwin):
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort._get_crash_log):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestDriver.run_test):
-        * Scripts/webkitpy/tool/commands/queries.py:
-        (execute):
-
-2012-05-02  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        webkitpy: Remove sys.platform accesses in CrashLogs.
-        https://bugs.webkit.org/show_bug.cgi?id=85436
-
-        Reviewed by Dirk Pranke.
-
-        Instead of directly checking for sys.platform == 'darwin', use a
-        SystemHost and call PlatformInfo.is_mac().
-
-        * Scripts/webkitpy/common/system/crashlogs.py:
-        (CrashLogs.__init__):
-        (CrashLogs.find_newest_log):
-        (CrashLogs._log_directory_darwin):
-        (CrashLogs._find_newest_log_darwin):
-        * Scripts/webkitpy/common/system/crashlogs_unittest.py:
-        (CrashLogsTest.test_find_log_darwin):
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort._get_crash_log):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestDriver.run_test):
-        * Scripts/webkitpy/tool/commands/queries.py:
-        (execute):
-
-2012-05-02  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        webkitpy: Special-case win32 calls in file_lock and executive.
-        https://bugs.webkit.org/show_bug.cgi?id=85431
-
-        Reviewed by Dirk Pranke.
-
-        Simplify accesses to sys.platform by only checking if sys.platform
-        is "win32" and removing explicit checks for the else case.
-
-        * Scripts/webkitpy/common/system/executive.py:
-        (Executive.check_running_pid):
-        * Scripts/webkitpy/common/system/file_lock.py:
-        (FileLock._create_lock):
-        (FileLock._remove_lock):
-
-2012-05-02  Ojan Vafai  <ojan@chromium.org>
-
-        Remove pink from flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=85422
-
-        Reviewed by Dirk Pranke.
-
-        The pink indicates that the test doesn't match it's listing in test_expectations.txt.
-        In practice, this just added noise and confused people.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (htmlForSingleTestRow):
-        (showLegend):
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.css:
-        (#legend-contents *):
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-        (testHtmlForSingleTestRow):
-
-2012-05-02  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Unreviewed. Fix mistake I committed when applying review comments.
-
-        * jhbuild/jhbuild-wrapper: dependencies_path was getting 'Root'
-        appended to its path, so jhbuild itself was being cloned and
-        installed in the wrong place when using WEBKITOUTPUTDIR.
-
-2012-05-02  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: make ServerProcess work on chromium win
-        https://bugs.webkit.org/show_bug.cgi?id=85333
-
-        Reviewed by Ojan Vafai.
-
-        This change implements a poor man's select() that will
-        slow-spin doing non-blocking reads on the stdout and stderr
-        named pipes connecting the worker to the driver. Seems to work
-        and I have yet to see much overhead or ill effects but it
-        probably needs more testing.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumDriver.__init__):
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        (ServerProcess._start):
-        (ServerProcess._wait_for_data_and_update_buffers_using_select):
-        (ServerProcess._wait_for_data_and_update_buffers_using_win32_apis):
-        (ServerProcess):
-        (ServerProcess._non_blocking_read_win32):
-        (ServerProcess._read):
-        * Scripts/webkitpy/layout_tests/port/server_process_unittest.py:
-        (TestServerProcess.test_basic): Added.
-
-2012-05-02  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        webkitpy: Use a SystemHost instead of PlatformInfo in the PNG checker.
-        https://bugs.webkit.org/show_bug.cgi?id=85426
-
-        Reviewed by Dirk Pranke.
-
-        r115880 replaced the direct use of sys.platform with a
-        PlatformInfo object. Dirk Pranke later told me SystemHost objects
-        should be preferred, as nothing out of webkitpy.common.system
-        should create its own PlatformInfo instances.
-
-        * Scripts/webkitpy/common/system/systemhost_mock.py:
-        (MockSystemHost.__init__): Make it possible to specify a custom
-        filesystem object.
-        * Scripts/webkitpy/style/checkers/png.py:
-        (PNGChecker.__init__): Accept a host object instead of a
-        filesystem one, which is now obtained from host.
-        (PNGChecker._config_file_path): Retrieve PlatformInfo from
-        SystemHost.
-        * Scripts/webkitpy/style/checkers/png_unittest.py:
-        (PNGCheckerTest.test_init): Adjust calls to PNGChecker to its new
-        constructor signature.
-        (PNGCheckerTest.test_check): Ditto.
-
-2012-05-02  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        webkitpy: Remove direct checks for sys.platform == 'darwin' in the layout test classes.
-        https://bugs.webkit.org/show_bug.cgi?id=85424
-
-        Reviewed by Tony Chang.
-
-        We should reduce direct usage of sys.platform in webkitpy and use
-        PlatformInfo instead.
-
-        * Scripts/webkitpy/layout_tests/servers/http_server.py:
-        (Lighttpd._prepare_config): Call PlatformInfo.is_mac() instead of
-        checking for 'darwin' directly.
-        * Scripts/webkitpy/layout_tests/servers/http_server_base.py:
-        (HttpServerBase.__init__): Ditto.
-
-2012-05-02  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        webkitpy: Remove direct sys.platform usage in run_webkit_tests_integrationtest.
-        https://bugs.webkit.org/show_bug.cgi?id=85419
-
-        Reviewed by Dirk Pranke.
-
-        As pointed out by Dirk Pranke, a PlatformInfo is not supposed to
-        be created directly, we should should a SystemHost instead.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.setUp): Create a SystemHost and obtain the PlatformInfo
-        object from it instead of creating PlatformInfo directly.
-
-2012-05-02  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        webkitpy: Remove direct sys.platform usage in run_webkit_tests_integrationtest.
-        https://bugs.webkit.org/show_bug.cgi?id=85419
-
-        Rubber-stamped by Dirk Pranke.
-
-        Follow-up patch to r115887 which fixes some capitalization problems
-        pointed out in comments 2 and 4.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.setUp):
-        (MainTest.test_child_processes_2):
-        (MainTest.test_child_processes_min):
-        (MainTest.test_exception_raised):
-        (MainTest.test_keyboard_interrupt):
-
-2012-05-02  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        webkitpy: Remove direct sys.platform usage in run_webkit_tests_integrationtest.
-        https://bugs.webkit.org/show_bug.cgi?id=85419
-
-        Reviewed by Dirk Pranke.
-
-        Another part of the work towards replacing direct sys.platform
-        usage with PlatformInfo.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.setUp): Move the setting of SHOULD_TEST_PROCESSES
-        here. Even though it is costlier, unittest.setUpClass was
-        introduced in Python 2.7.
-        (MainTest.test_child_processes_2): Use self.SHOULD_TEST_PROCESSES.
-        (MainTest.test_child_processes_min): Ditto.
-        (MainTest.test_exception_raised): Ditto.
-        (MainTest.test_keyboard_interrupt): Ditto.
-        (MainTest.test_crash_log): Check for PlatformInfo.is_mac().
-        (MainTest.test_web_process_crash_log): Ditto, and remove duplicate
-        check at the end.
-        (MainTest.test_no_http_tests): Remove check for (cygwin && Python
-        2.5.2), as we only support Python 2.6+.
-
-2012-05-02  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        webkitpy: Remove direct sys.platform usage in the PNG checker.
-        https://bugs.webkit.org/show_bug.cgi?id=85407
-
-        Reviewed by Tony Chang.
-
-        Work towards replacing direct sys.platform usage with
-        PlatformInfo.
-
-        * Scripts/webkitpy/common/system/platforminfo_mock.py:
-        (MockPlatformInfo.__init__): Accept os_name and os_version as
-        arguments.
-        * Scripts/webkitpy/style/checkers/png.py:
-        (PNGChecker.__init__): Create a PlatformInfo object instead of
-        using sys.platform when needed.
-        (PNGChecker._config_file_path): Check for the current platform via
-        PlatformInfo.
-        * Scripts/webkitpy/style/checkers/png_unittest.py:
-        (PNGCheckerTest.test_check): Update tests after the changes above.
-
-2012-05-02  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        [watchlist] Update watchlist rules for EFL-related patches.
-        http://bugs.webkit.org/show_bug.cgi?id=85160
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/config/watchlist: Monitor
-        Source/WTF/wtf/efl and LayoutTests/platform/efl as well.
-
-2012-05-02  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Revert r115191 - "Make the web view's url property follow the active url"
-
-        It uncovered/caused issues in the icon-implementation that can't be
-        easily fixed, so rolling out instead.
-
-        https://bugs.webkit.org/show_bug.cgi?id=77554
-
-        Rubber-stamped by Simon Hausmann.
-
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-        * TestWebKitAPI/Tests/WebKit2/PageLoadBasic.cpp:
-        (TestWebKitAPI::TEST):
-
-2012-05-02  Zan Dobersek  <zandobersek@gmail.com>
-
-        Reftest mismatches are providing undefined diff percent in results.html
-        https://bugs.webkit.org/show_bug.cgi?id=85283
-
-        Reviewed by Ojan Vafai.
-
-        When writing test results for a reftest mismatch, also take into account the
-        difference percent that is produced when generating image diff. This value is
-        then used when creating test results in the form of dictionaries, stored under
-        the 'image_diff_percent' key. It ultimately ends up in JSON results data,
-        providing additional information about the reftest difference.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (interpret_test_failures): Store the diff percent for reftest failure under the
-        'image_diff_percent' key.
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer.py:
-        (write_test_result): Also set the new diff_percent attribute of the reftest
-        mismatch failure to the value of the difference percent ImageDiff outputs.
-        * Scripts/webkitpy/layout_tests/models/test_failures.py:
-        (FailureReftestMismatch.__init__): Add the new diff_percent attribute with the
-        default value of None.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (EndToEndTest.test_reftest_with_two_notrefs): Update the test case expected results.
-
-2012-05-02  Terry Anderson  <tdanderson@chromium.org>
-
-        Addition of a contributor to committers.py
-        https://bugs.webkit.org/show_bug.cgi?id=85324
-
-        Reviewed by Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-05-02  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL] EFL's LayoutTestController overridePreference implementation
-        https://bugs.webkit.org/show_bug.cgi?id=83007
-
-        Reviewed by Antonio Gomes.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (toBool): aux function converting JSStringRef to bool
-        (toInt): aux function converting JSStringRef to int
-        (LayoutTestController::overridePreference): added implementation
-
-2012-05-01  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        webkitpy: Fix sys.platform check in find_files_unittest.
-        https://bugs.webkit.org/show_bug.cgi?id=85339
-
-        Reviewed by Ryosuke Niwa.
-
-        Follow-up to r101618 -- 'win' is not a valid sys.platform value,
-        'win32' should be used instead. The check always returned false
-        due to this, so assert_normalize() was never called.
-
-        * Scripts/webkitpy/common/find_files_unittest.py:
-        (TestWinNormalize.test_win): Add the missing import for the
-        FileSystem class and fix the sys.platform check.
-
-2012-05-02  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] drag&drop related failures
-        https://bugs.webkit.org/show_bug.cgi?id=84675
-
-        Reviewed by Philippe Normand.
-
-        Rather than checking options to see whether we're running pixel tests
-        the pixel_tests argument passed to GtkDriver._start should be used as
-        it also covers cases when pixel tests should be run because of testing
-        reftests. This again creates different Xvfb processes with proper
-        display IDs for a worker that's performing both ordinary and pixel
-        tests, as was the case before changes made in r114788.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkDriver._start):
-
-2012-05-02  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Enable device orientation/motion with Qt 5
-
-        Reviewed by Tor Arne Vestbø.
-
-        Enable device orientation/motion features with Qt 5 if Qt Sensors is available.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-05-01  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        webkitpy: Remove unused platform imports.
-        https://bugs.webkit.org/show_bug.cgi?id=85341
-
-        Reviewed by Eric Seidel.
-
-        Remove a few uses of `import platform' which were either rendered
-        unneeded after r105931 or were never needed at all.
-
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/tool/bot/flakytestreporter.py:
-
-2012-05-01  Terry Anderson  <tdanderson@chromium.org>
-
-        [chromium] Accept four parameters when dispatching a WebInputEvent::GestureTap in chromium DRT eventSender
-        https://bugs.webkit.org/show_bug.cgi?id=85289
-
-        Reviewed by Eric Seidel.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::gestureEvent):
-            This change will allow for testing of WK85101. Currently
-            no tests use the extra parameters deltaX and deltaY. Added
-            a check for the size of |arguments|.
-
-2012-05-01  Eric Seidel  <eric@webkit.org>
-
-        Add myself to the watchlist to watch all rendering changes, as well as sort the watchers in the list
-        https://bugs.webkit.org/show_bug.cgi?id=85305
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-05-01  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r115735.
-        http://trac.webkit.org/changeset/115735
-        https://bugs.webkit.org/show_bug.cgi?id=85314
-
-        cause two tests to crash due to an ASSERTION failure
-        (Requested by zhenyao on #webkit).
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::gestureEvent):
-
-2012-05-01  Terry Anderson  <tdanderson@chromium.org>
-
-        [chromium] Accept four parameters when dispatching a WebInputEvent::GestureTap in chromium DRT eventSender
-        https://bugs.webkit.org/show_bug.cgi?id=85289
-
-        Reviewed by Eric Seidel.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::gestureEvent):
-            This change will allow for testing of WK85101. Currently no tests use the extra
-            parameters deltaX and deltaY.
-
-2012-05-01  Zan Dobersek  <zandobersek@gmail.com>
-
-        Print out stderr output of ImageDiff if it is present
-        https://bugs.webkit.org/show_bug.cgi?id=85285
-
-        Reviewed by Philippe Normand.
-
-        Log the stderr output of ImageDiff as a warning if present. This is
-        especially helpful when ImageDiff crashes and stderr data might contain
-        relevant information about what caused the crash.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._read_image_diff):
-
-2012-05-01  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        [Qt] Add an experimental extension to set the min. contents width
-        https://bugs.webkit.org/show_bug.cgi?id=85281
-
-        Reviewed by Antonio Gomes.
-
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-
-        Set the value of preferredMinimumContentsWidth to 980.
-
-2012-04-30  Ojan Vafai  <ojan@chromium.org>
-
-        Fix tests to not depend on the actual list of builders at build.chromium.org.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-        (testHtmlForIndividualTestOnAllBuildersWithChrome):
-        (testHtmlForIndividualTestOnAllBuildersWithChromeWebkitMaster):
-
-2012-04-29  Sam Weinig  <sam@webkit.org>
-
-        Remove BlobBuilder
-        https://bugs.webkit.org/show_bug.cgi?id=84036
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/build-webkit:
-        * qmake/mkspecs/features/features.prf:
-        Make exposing the WebKitBlobBuilder JS object conditional on a new
-        ENABLE_LEGACY_WEBKIT_BLOB_BUILDER flag. Don't enable this for the Mac,
-        but do for everyone else.
-
-2012-04-30  Amruth Raj Padmanabhuni  <amruthraj@motorola.com>
-
-        [GTK] Add glib as a dependency to build glib-networking
-        https://bugs.webkit.org/show_bug.cgi?id=85181
-
-        Reviewed by Martin Robinson.
-
-        * gtk/jhbuild.modules:
-
-2012-04-30  Alexis Menard  <alexis.menard@openbossa.org>
-
-        Move myself to reviewers.
-
-        Reviewed by Andreas Kling.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-04-30  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        Unreviewed, move myself to reviewers
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-04-30  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed. Fix make distcheck.
-
-        * TestWebKitAPI/GNUmakefile.am: Add missing headers to compilation
-        and resources to EXTRA_DIST.
-
-2012-04-30  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [GTK] DRT support for layoutTestController.removeOriginAccessWhitelistEntry
-        https://bugs.webkit.org/show_bug.cgi?id=85156
-
-        Reviewed by Martin Robinson.
-
-        Add missing implementation removeOriginAccessWhitelistEntry to
-        GTK's LayoutTestController.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::removeOriginAccessWhitelistEntry):
-
-2012-04-29  Maciej Stachowiak  <mjs@apple.com>
-
-        REGRESSION: On Lion, run-webkit-tests changes the display color profile even when not running pixel tests
-        https://bugs.webkit.org/show_bug.cgi?id=81729
-
-        Reviewed by Dan Bernstein.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._set_up_run): Only launch LayoutTestHelper when running pixel tests.
-
-2012-04-29  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [GTK] DRT needs an implementation of layoutTestController.setDomainRelaxationForbiddenForURLScheme
-        https://bugs.webkit.org/show_bug.cgi?id=85131
-
-        Reviewed by Martin Robinson.
-
-        Add missing implementation setDomainRelaxationForbiddenForURLScheme to
-        GTK's LayoutTestController.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setDomainRelaxationForbiddenForURLScheme):
-
-2012-04-28  Sam Weinig  <sam@webkit.org>
-
-        Smooth scrolling needs a new key
-        <rdar://problem/11331632>
-
-        Reviewed by Dan Bernstein.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * TestWebKitAPI/mac/InjectedBundleControllerMac.mm:
-        (TestWebKitAPI::InjectedBundleController::platformInitialize):
-        * WebKitTestRunner/InjectedBundle/mac/InjectedBundleMac.mm:
-        (WTR::InjectedBundle::platformInitialize):
-        Update for new key.
-
-2012-04-28  Zan Dobersek  <zandobersek@gmail.com>
-
-        [WK2] http/tests/navigation/anchor-frames-gbk.html fails
-        https://bugs.webkit.org/show_bug.cgi?id=76896
-
-        Reviewed by Darin Adler.
-
-        Only dump as text if currently dumping render tree. This ensures that
-        calling dumpAsText in a test with dumpChildFramesAsText already being
-        called doesn't override the first decision, possibly making tests fail.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::dumpAsText):
-
-2012-04-28  Dan Winship  <danw@gnome.org>
-
-        Unreviewed; Add me to the SoupNetwork watchlist
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-04-27  Gustavo Noronha Silva  <gns@gnome.org>
-
-        [GTK] jhbuild cloning is not following WEBKITOUTPUTDIR.
-        https://bugs.webkit.org/show_bug.cgi?id=76161
-
-        Reviewed by Martin Robinson.
-
-        * Scripts/webkitdirs.pm:
-        (getJhbuildPath): New method to obtain the jhbuild base directory,
-        using the product base directory
-        (jhbuildConfigurationChanged): Use the new method
-        (buildAutotoolsProject): Ditto.
-        * efl/jhbuildrc: Use WEBKITOUTPUTDIR when calculating the path.
-        * gtk/jhbuildrc: Ditto.
-        * jhbuild/jhbuild-wrapper: Ditto.
-
-2012-04-27  Scott Graham  <scottmg@chromium.org>
-
-        [chromium] make case of npTestNetscapePlugIn.dll match case in copy rule
-        https://bugs.webkit.org/show_bug.cgi?id=85083
-
-        Reviewed by Dirk Pranke.
-
-        Make output product_name for npTestNetscapePlugIn.dll match the case
-        of the copy_TestNetscapePlugIn rule. This is required for ninja, which
-        is more particular about case matching in rules than the VS build.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-04-27  Dirk Pranke  <dpranke@chromium.org>
-
-        [chromium] use "drt-style" output, not "test-shell-style" output, on mac and linux DRT
-        https://bugs.webkit.org/show_bug.cgi?id=84917
-
-        Unreviewed, build fix.
-
-        Reland the change in r115453 with a fix for chromium win.
-        The logic in ChromiumDriver was busted on windows, causing DRT
-        to get launched without the --test-shell flag.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumDriver):
-        (ChromiumDriver.__init__):
-        (ChromiumDriver._wrapper_options):
-        (ChromiumDriver.cmd_line):
-        (ChromiumDriver._start):
-        (ChromiumDriver.has_crashed):
-        (ChromiumDriver.run_test):
-        (ChromiumDriver.stop):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumDriverTest.setUp):
-        (ChromiumDriverTest.test_stop):
-        (ChromiumDriverTest.test_two_drivers.MockDriver.__init__):
-        (ChromiumDriverTest.test_two_drivers):
-
-2012-04-27  Peter Beverloo  <peter@chromium.org>
-
-        Add John Grabowski as a non-committer to committers.py
-        https://bugs.webkit.org/show_bug.cgi?id=85080
-
-        Reviewed by Dirk Pranke.
-
-        He's being CC'ed often enough because of his involvement in the Chromium
-        side of Chrome for Android upstreaming.
-
-        * Scripts/webkitpy/common/config/committers.py:
-          add jrg@chromium.org
-
-2012-04-27  Allan Sandfeld Jensen  <allan.jensen@nokia.com>
-
-        [Qt] Fix minimal build.
-        https://bugs.webkit.org/show_bug.cgi?id=85045
-
-        Reviewed by Tor Arne Vestbø.
-
-        Do not set conflicting values of ENABLE_XSLT.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-04-27  Dominik Röttsches  <dominik.rottsches@linux.intel.com>
-
-        [EFL][DRT] EFL should sanitize pulseaudio module configuration too
-        https://bugs.webkit.org/show_bug.cgi?id=85047
-
-        Reviewed by Dirk Pranke.
-
-        PulseAudio test setup sanitization shared between EFL and GTK.
-
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort):
-        (EflPort.setup_test_run):
-        (EflPort.clean_up_test_run):
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort): Moving pulseaudio unload/restore out to shared class.
-        * Scripts/webkitpy/layout_tests/port/pulseaudio_sanitizer.py: Added.
-        (PulseAudioSanitizer):
-        (PulseAudioSanitizer._unload_pulseaudio_module):
-        (PulseAudioSanitizer._restore_pulseaudio_module):
-
-2012-04-27  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, revert r115453 - broke chromium win bots
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort._path_to_image_diff):
-        (ChromiumDriver):
-        (ChromiumDriver.__init__):
-        (ChromiumDriver._wrapper_options):
-        (ChromiumDriver.cmd_line):
-        (ChromiumDriver.stop):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumDriverTest.setUp):
-        (ChromiumDriverTest.test_stop):
-        (ChromiumDriverTest.test_two_drivers):
-        (ChromiumDriverTest.test_two_drivers.MockDriver.__init__):
-
-2012-04-27  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Chromium Windows Perf bots timeout due to not output
-        https://bugs.webkit.org/show_bug.cgi?id=84940
-
-        Reviewed by Dirk Pranke.
-
-        Dirk and I investigated the issue on the bot but we couldn't figure out what is going wrong.
-        Since we run-perf-tests don't need any of fancy feature printer provides, just use python's
-        built-in logging module instead. Printing out to stdout and stderr seem to work so hopefully
-        this will fix the issue on the bot.
-
-        * Scripts/run-perf-tests:
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest.run):
-        (PerfTest.run_failed):
-        (PerfTest.parse_output):
-        (PerfTest.output_statistics):
-        (ChromiumStylePerfTest.parse_output):
-        (PageLoadingPerfTest.run):
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py:
-        (MainTest.test_parse_output):
-        (MainTest.test_parse_output_with_failing_line):
-        (TestPageLoadingPerfTest):
-        (TestPageLoadingPerfTest.test_run):
-        (TestPageLoadingPerfTest.test_run_with_bad_output):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner.__init__):
-        (PerfTestsRunner._parse_args):
-        (PerfTestsRunner.run):
-        (PerfTestsRunner._upload_json):
-        (PerfTestsRunner._print_status):
-        (PerfTestsRunner._run_tests_set):
-        (PerfTestsRunner._run_single_test):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (create_runner):
-        (test_run_test_set):
-        (test_run_test_set_kills_drt_per_run):
-        (test_run_test_pause_before_testing):
-        (test_run_test_set_for_parser_tests):
-        (test_run_test_set_with_json_output):
-        (test_run_test_set_with_json_source):
-        (test_run_test_set_with_multiple_repositories):
-        (test_upload_json):
-        (test_parse_args):
-
-2012-04-27  Dirk Pranke  <dpranke@chromium.org>
-
-        [chromium] use "drt-style" output, not "test-shell-style" output, on mac and linux DRT
-        https://bugs.webkit.org/show_bug.cgi?id=84917
-
-        Reviewed by Ojan Vafai.
-
-        This change changes the chromium new-run-webkit-tests
-        implementation to use the code in WebKitDriver and ServerProcess
-        by default on Mac and Linux, instead of using the old-style
-        Chromium/test_shell style of output.
-
-        We will still use the test_shell style on Windows for now
-        and you can still get the old style of behavior with
-        new-run-webkit-tests --additional-drt-flag --test-shell
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumDriver):
-        (ChromiumDriver.__init__):
-        (ChromiumDriver._wrapper_options):
-        (ChromiumDriver.cmd_line):
-        (ChromiumDriver._start):
-        (ChromiumDriver.has_crashed):
-        (ChromiumDriver.run_test):
-        (ChromiumDriver.stop):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumDriverTest.setUp):
-        (ChromiumDriverTest.test_stop):
-        (ChromiumDriverTest.test_two_drivers.MockDriver.__init__):
-        (ChromiumDriverTest.test_two_drivers):
-
-2012-04-27  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: fix race in unit tests for manager_worker_broker
-        https://bugs.webkit.org/show_bug.cgi?id=84925
-
-        Reviewed by Ojan Vafai.
-
-        I have been intermittently seeing hangs when running
-        test-webkitpy on Mac SL; it appears that there's a bug (?) in
-        the multiprocessing module where queue references are getting
-        leaked or not cleaned up somehow. By explicitly closing the
-        queues, things seem to be happy, so this patch adds a cleanup()
-        method to the message broker and modifies the manager (and the
-        unit tests) to call it. This may get rid of the intermittent
-        error on shutdown on Linux I've seen as well.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._run_tests):
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        (_Broker.__del__):
-        (_Broker):
-        (_Broker.cleanup):
-        (_BrokerConnection.cleanup):
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker_unittest.py:
-        (_TestsMixin.test_name):
-        (_TestsMixin.test_cancel):
-        (_TestsMixin.test_done):
-        (_TestsMixin.test_unknown_message):
-
-2012-04-27  Gavin Peters  <gavinp@chromium.org>
-
-        Add new ENABLE_LINK_PRERENDER define to control the Prerendering API
-        https://bugs.webkit.org/show_bug.cgi?id=84871
-
-        Reviewed by Adam Barth.
-
-        Prerendering is currently covered by the ENABLE_LINK_PREFETCH macro, but the new Prerendering
-        API separates it from prefetching.  Having separate include guards lets ports enable prefetching,
-        a relatively easy change, without needing to build the infrastructure for prerendering, which
-        is considerably more complicated.
-
-2012-04-27  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, GTK gardening.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner): Skip flaky WebKit2 API test.
-
-2012-04-27  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, GTK gardening.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner): Fix another typo. So easy to get confused by a Test
-        name and the actual name of the executable...
-
-2012-04-27  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, GTK gardening.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner): Skip failing WebKit2 API test.
-
-2012-04-27  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] DRT should support LayoutTestController's dumpResourceLoadCallbacks()
-        https://bugs.webkit.org/show_bug.cgi?id=81891
-
-        Reviewed by Philippe Normand.
-
-        Implement support for LayoutTestController's
-        dumpResourceLoadCallbacks() in EFL's DumpRenderTree by catching new
-        ewk_view signals about resource loading and print out the expected
-        information. This allows for several test cases to be removed from the
-        skip list.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::createView):
-        (descriptionSuitableForTestResult):
-        (DumpRenderTreeChrome::onResponseReceived):
-        (DumpRenderTreeChrome::onResourceLoadFinished):
-        (DumpRenderTreeChrome::onResourceLoadFailed):
-        (DumpRenderTreeChrome::onNewResourceRequest):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.h:
-        (DumpRenderTreeChrome):
-
-2012-04-27  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, GTK typo fix.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner): Fix-up skipped WebKit2 API test name TestWKConnection.
-
-2012-04-26  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [SOUP] Add a way to register custom uri schemes in WebKit2
-        https://bugs.webkit.org/show_bug.cgi?id=84130
-
-        Reviewed by Martin Robinson.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (check_identifier_name_in_declaration): Add webkit_soup prefix to
-        the list of exceptions to the underscores in identifiers rule.
-
-2012-04-26  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Extract PerfTestFactory
-        https://bugs.webkit.org/show_bug.cgi?id=83944
-
-        Reviewed by Dirk Pranke.
-        
-        Extracted PerfTestFactory out of PerfTest. This class creates appropriate PerfTest object given
-        a test name and a path. Also removed dirname from the constructors of PerfTest and its subclasses.
-
-        Also added simple test cases to sanity check PerfTestFactory.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest.__init__):
-        (PerfTest.test_name):
-        (ChromiumStylePerfTest.__init__):
-        (PageLoadingPerfTest.__init__):
-        (PageLoadingPerfTest.run):
-        (PerfTestFactory):
-        (PerfTestFactory.create_perf_test):
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py:
-        (MainTest.test_parse_output):
-        (MainTest.test_parse_output_with_failing_line):
-        (TestPageLoadingPerfTest.test_run):
-        (TestPageLoadingPerfTest.test_run_with_bad_output):
-        (TestPerfTestFactory):
-        (TestPerfTestFactory.test_regular_test):
-        (TestPerfTestFactory.test_inspector_test):
-        (TestPerfTestFactory.test_page_loading_test):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner):
-        (PerfTestsRunner._collect_tests):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (run_test):
-        (_tests_for_runner):
-
-2012-04-26  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: clean up server process, webkit driver so chromium can use it
-        https://bugs.webkit.org/show_bug.cgi?id=84910
-
-        Reviewed by Ojan Vafai.
-
-        This change moves the "sample a process" logic out of
-        server_process.py and into a port-specific class (where really
-        only the mac has an implementation), and also preemptively kills
-        DRT when a test times out in WebKitDriver (rather than waiting through the
-        additional delays caused by calling stop() when we would want to
-        restart the driver generically in worker.py).
-
-        These changes will make it possible for the chromium port to
-        switch over to the stock WebKitDriver implementation, at least
-        on mac and linux.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.sample_process):
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.sample_process):
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        (test_helper_fails_to_stop):
-        (test_sample_process):
-        (test_sample_process.logging_run_command):
-        (test_sample_process_throws_exception):
-        (test_sample_process_throws_exception.throwing_run_command):
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        (ServerProcess._log):
-        (ServerProcess._handle_timeout):
-        (ServerProcess.stop):
-        (ServerProcess):
-        (ServerProcess.kill): Here we add a method to immediately stop
-        the process rather than trying to shut it down cleanly.
-        * Scripts/webkitpy/layout_tests/port/server_process_unittest.py:
-        (TestServerProcess.test_broken_pipe):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver.run_test): Fix an issue where we weren't passing
-        along any per-test args (only needed for Chromium, but still).
-        Also, kill the driver immediately if we time out a test.
-
-2012-04-26  Benjamin Poulain  <bpoulain@apple.com>
-
-        ObjcClass::methodsNamed() can leak if buffer is dynamically allocated
-        https://bugs.webkit.org/show_bug.cgi?id=84668
-
-        Reviewed by Alexey Proskuryakov.
-
-        Extend ObjCPlugin to support the new layout tests of the Objective-C bridge.
-
-        * DumpRenderTree/mac/ObjCPlugin.m:
-        (+[ObjCPlugin isSelectorExcludedFromWebScript:]):
-        (+[ObjCPlugin webScriptNameForSelector:]):
-        (-[ObjCPlugin methodMappedToLongName]):
-        (-[ObjCPlugin testConversionColon:]):
-        (-[ObjCPlugin _:]):
-
-2012-04-26  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Unreviewed, rolling out r115340.
-        http://trac.webkit.org/changeset/115340
-        https://bugs.webkit.org/show_bug.cgi?id=83048
-
-        Does not work with Windows.
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner._run_reftest):
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer.py:
-        (copy_file):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port._parse_reftest_list):
-        (Port.reference_files):
-        (Port._real_tests):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_reference_files):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumDriverTest.test_write_command_and_read_line):
-
-2012-04-26  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Enable VIDEO_TRACK feature
-        https://bugs.webkit.org/show_bug.cgi?id=84830
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Enable VIDEO_TRACK by default on EFL port whenever build-webkit is
-        used.
-
-        * Scripts/build-webkit:
-
-2012-04-08  Robert Hogan  <robert@webkit.org>
-
-        new-webkit-run-tests: handle ref tests from the CSS test suite
-        https://bugs.webkit.org/show_bug.cgi?id=83048
-
-        Reviewed by Ryosuke Niwa.
-
-        This allows new-run-webkit-tests to run reference tests created for the CSS test suite. It removes a big swathe
-        of pixel and text results that are no longer required now that the reference results are used and adds in the support
-        files from the CSS test suite that allow the ref tests to run.
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner._run_reftest): Assert that the reference result exists. Previously the test would
-         run without it and report a pass!
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer.py:
-        (copy_file): ensure the output directory exists, it may not if the reference test is
-          contained in a folder that contains nothing but reference tests.
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.available_reference_files): Add as a helper. Handle embedded relative paths, e.g: some/../path
-        (Port.reference_files): Only return reference results in the reftest list that actually exist on
-          disk. Also, don't ignore potential reference results on disk that are not in the reftest list, and
-          don't ignore them just because we have a reftest list for the test's directory.
-        (Port._real_tests): ignore anything that looks like a test in a 'support' directory, this semantic
-          is used by the CSS 2.1 test suite.
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_reference_files_when_reftestlist_and_reference_file_present): Ensure that a test with a reference result
-          on disk but no reference result listed in the directory's reftest list picks up its reference result.
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumDriverTest.test_strip_uri): Test that some/test.html and some/other/../test.html are treated
-         as the same file.
-
-2012-04-26  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed. Fix GTK+ build after r115314.
-
-        For some reason it fails while bulding GtkVersioning for WTR, but
-        it didn't fail neither in EWS nor in my laptop. We don't really
-        need GtkVersioning in WTR since it already depends on GTK+3
-        unconditionally.
-
-        * WebKitTestRunner/GNUmakefile.am: Remove GtkVersioning.c from
-        compilation.
-        * WebKitTestRunner/gtk/EventSenderProxyGtk.cpp:
-        (WTR::EventSenderProxy::createMouseButtonEvent): Use GTK+ 3 API
-        directly instead of getDefaultGDKPointerDevice() helper.
-        (WTR::EventSenderProxy::keyDown): Ditto.
-        (WTR::EventSenderProxy::mouseMoveTo): Ditto.
-
-2012-04-24  Ojan Vafai  <ojan@chromium.org>
-
-        Show flakiness dashboard data in garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=83716
-
-        Reviewed by Dimitri Glazkov.
-
-        Put an iframe below the expected/actual results in the Results view.
-        Size the iframe to it's height.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/results.css:
-
-2012-04-26  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] [DRT] LayoutTestController needs implementation of setJavaScriptProfilingEnabled
-        https://bugs.webkit.org/show_bug.cgi?id=84576
-
-        Reviewed by Martin Robinson.
-
-        Add missing implementation setJavaScriptProfilingEnabled to EFL's
-        LayoutTestController in order to unskip tests rely on this setting.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setJavaScriptProfilingEnabled):
-
-2012-04-26  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        Add Jing Zhao, Min Qin, Tien-Ren Chen and Hao Zheng into contributors list.
-
-        Not reviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-04-26  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Test TestWebKitAPI/WebKit2/TestNewFirstVisuallyNonEmptyLayout times out
-        https://bugs.webkit.org/show_bug.cgi?id=84957
-
-        Reviewed by Martin Robinson.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner): Unskip TestNewFirstVisuallyNonEmptyLayout and
-        TestNewFirstVisuallyNonEmptyLayoutForImages.
-        * TestWebKitAPI/gtk/PlatformWebViewGtk.cpp:
-        (TestWebKitAPI::PlatformWebView::PlatformWebView): Show the
-        toplevel window containing the web view to make sure events are
-        received.
-
-2012-04-26  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed. Add bug numbers to skipped tests.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner):
-
-2012-04-26  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Build and run TestWebKitAPI WebKit2 unit tests
-        https://bugs.webkit.org/show_bug.cgi?id=84446
-
-        Reviewed by Philippe Normand.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner): Add TestWebKitAPI/WebKit2 to the list of directories
-        containing tests. Unskip FunctionalTest.RefCountedStorage, since
-        we are now using a custom main that initializes WTF threading.
-        (TestRunner._setup_testing_environment): Set environment variables
-        required to run WebKit2 tests.
-        * TestWebKitAPI/GNUmakefile.am:
-        * TestWebKitAPI/JavaScriptTest.cpp: Use
-        JavaScriptCore/JSContextRef.h instead of
-        JavaScriptCore/JavaScriptCore.h since it includes JSStringRefCF.h
-        unconditionally.
-        * TestWebKitAPI/PlatformWebView.h: Define PlatformWKView and
-        PlatformWindow for GTK.
-        * TestWebKitAPI/Tests/WebKit2/EvaluateJavaScript.cpp: Remove
-        unneded header that breaks the build of GTK port.
-        * TestWebKitAPI/Tests/WebKit2/PreventEmptyUserAgent.cpp: Use
-        JavaScriptCore/JSContextRef.h instead of
-        JavaScriptCore/JavaScriptCore.h since it includes JSStringRefCF.h
-        unconditionally.
-        * TestWebKitAPI/Tests/WebKit2/WKPreferences.cpp:
-        (TestWebKitAPI::TEST): Add expected values for GTK+ port.
-        * TestWebKitAPI/gtk/InjectedBundleControllerGtk.cpp:
-        (TestWebKitAPI):
-        (TestWebKitAPI::InjectedBundleController::platformInitialize):
-        * TestWebKitAPI/gtk/PlatformUtilitiesGtk.cpp: Added.
-        (TestWebKitAPI::Util::checkTestFinished):
-        (TestWebKitAPI::Util::run):
-        (TestWebKitAPI::Util::sleep):
-        (TestWebKitAPI::Util::getFilenameFromEnvironmentVariableAsUTF8):
-        (TestWebKitAPI::Util::createInjectedBundlePath):
-        (TestWebKitAPI::Util::createURLForResource):
-        (TestWebKitAPI::Util::URLForNonExistentResource):
-        (TestWebKitAPI::Util::isKeyDown):
-        * TestWebKitAPI/gtk/PlatformWebViewGtk.cpp: Added.
-        (TestWebKitAPI::PlatformWebView::PlatformWebView):
-        (TestWebKitAPI::PlatformWebView::~PlatformWebView):
-        (TestWebKitAPI::PlatformWebView::page):
-        (TestWebKitAPI::PlatformWebView::resizeTo):
-        (TestWebKitAPI::doKeyStroke):
-        (TestWebKitAPI::PlatformWebView::simulateSpacebarKeyPress):
-        (TestWebKitAPI::PlatformWebView::simulateAltKeyPress):
-        (TestWebKitAPI::doMouseButtonEvent):
-        (TestWebKitAPI::PlatformWebView::simulateRightClick):
-        (TestWebKitAPI::PlatformWebView::simulateMouseMove):
-        * TestWebKitAPI/gtk/main.cpp:
-        (main):
-
-2012-04-26  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] run-gtk-tests: Use a timeout per test instead of a global timeout
-        https://bugs.webkit.org/show_bug.cgi?id=84695
-
-        Reviewed by Philippe Normand.
-
-        It also adds a command line option to be able to pass a custom
-        timeout value, instead of hard-coding it. The default timeout is 10
-        seconds if no other value is passed to the script.
-
-        * Scripts/run-gtk-tests:
-        (TestTimeout): Exception raised when a test times out.
-        (TestRunner._get_child_pid_from_test_output): Helper function to
-        get the pid of the running test from gtester output.
-        (TestRunner._kill_process): Helper funtion ot kill a process
-        ignoring exceptions if the process is already died.
-        (TestRunner._run_test_command): Run the test command raising
-        TestTimeout exception if the test doesn't finish before the given
-        timeout in seconds.
-        (TestRunner._run_test_command.alarm_handler): Alarm handler that
-        raises TestTimeout exception.
-        (TestRunner._run_test_glib): Use _run_test_command() to run the test.
-        (TestRunner._run_test_google): Ditto.
-        (TestRunner.run_tests): Add current test to the list of timed out
-        test if TestTimeout exception is raised. Show the list of timed
-        out test at the end.
-
-2012-04-26  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] [DRT] LayoutTestController needs implementation of addOriginAccessWhitelistEntry and removeOriginAccessWhitelistEntry
-        https://bugs.webkit.org/show_bug.cgi?id=83880
-
-        Reviewed by Antonio Gomes.
-
-        Add missing implementation addOriginAccessWhitelistEntry and
-        removeOriginAccessWhitelistEntry to EFL's LayoutTestController
-        in order to unskip tests which rely on this.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::addOriginAccessWhitelistEntry):
-        (LayoutTestController::removeOriginAccessWhitelistEntry):
-
-2012-04-26  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Add downloads support to MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=73662
-
-        Reviewed by Philippe Normand.
-
-        * MiniBrowser/gtk/BrowserDownloadsBar.c: Added.
-        (browserDownloadsBarChildRemoved): Close the downloads bar if
-        there aren't active downloads.
-        (browserDownloadsBarResponse): Destroy the downloads bar when
-        closed.
-        (browser_downloads_bar_init):
-        (browser_downloads_bar_class_init):
-        (browser_downloads_bar_new): Create a new downloads bar.
-        (actionButtonClicked): Cancel the download if cancel button was
-        clicked, or open the downloaded file if the download finished.
-        (browserDownloadFinalize):
-        (browser_download_init):
-        (browser_download_class_init):
-        (downloadReceivedResponse): Update download message using the
-        response URI.
-        (remainingTime): Helper function to get human readable remaining
-        time.
-        (downloadProgress): Update downloads progress.
-        (downloadReceivedData):
-        (downloadFinished): Update download message and turn download
-        button into open.
-        (downloadFailed): Show error message or destroy the download UI if
-        it was cancelled.
-        (browserDownloadNew): Create a new download widget for the given
-        WebKitDownload.
-        (browser_downloads_bar_add_download): Add download widget to the
-        downloads bar.
-        * MiniBrowser/gtk/BrowserDownloadsBar.h: Added.
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (downloadStarted): Create a download widget and add it to the
-        downloads bar when a new download is started.
-        (browserWindowConstructed): Connect to
-        WebKitWebContext::download-started signal.
-        * MiniBrowser/gtk/GNUmakefile.am: Add new files to compilation.
-
-2012-04-26  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed. Skip unit test failing in debug bot.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner):
-
-2012-04-26  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][DRT] "resource,request,willsend" signal needs to provide more information
-        https://bugs.webkit.org/show_bug.cgi?id=84670
-
-        Reviewed by Andreas Kling.
-
-        Handle in EFL's DumpRenderTree the new Ewk_Frame_Resource_Messages now
-        passed with the "resource,request,willsend" signal and dump
-        information about the network request and the possible network
-        response if LayoutTestController's dumpResourceLoadCallbacks() returns
-        true.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (pathSuitableForTestResult):
-        (urlSuitableForTestResult):
-        (descriptionSuitableForTestResult):
-        (DumpRenderTreeChrome::onWillSendRequest):
-
-2012-04-25  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt][WK2] Unreviewed, rolling out r113703 because of crashing tests.
-        http://trac.webkit.org/changeset/113703
-        https://bugs.webkit.org/show_bug.cgi?id=83024
-
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * Tools.pro:
-        * qmake/mkspecs/features/features.prf:
-        * qmake/mkspecs/features/functions.prf:
-
-2012-04-25  Maciej Stachowiak  <mjs@apple.com>
-
-        Teach LayoutTestHelper to correctly restore the color profile when it's a factory profile
-        https://bugs.webkit.org/show_bug.cgi?id=84931
-
-        Reviewed by Filip Pizlo.
-
-        * DumpRenderTree/mac/LayoutTestHelper.m:
-        (installLayoutTestColorProfile): Account for the possibility of the default
-        profile being a factory profile.
-
-2012-04-25  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r115240.
-        http://trac.webkit.org/changeset/115240
-        https://bugs.webkit.org/show_bug.cgi?id=84928
-
-        It broke everything (Requested by Ossy_HOME on #webkit).
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkDriver):
-        (GtkDriver._start):
-        (GtkDriver._start.x_filter):
-        (GtkDriver.stop):
-        (GtkPort._driver_class):
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort._build_driver):
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver.py: Removed.
-
-2012-04-25  Dirk Pranke  <dpranke@chromium.org>
-
-        [chromium] change DRT's "DRT" output to match the other ports
-        https://bugs.webkit.org/show_bug.cgi?id=84904
-
-        Reviewed by Kent Tamura.
-
-        Since we run Chromium's DRT in --test-shell mode, the
-        non-test-shell output has never been really beaten on to make
-        sure it's right. This fixes a few issues and will be tested
-        with upcoming NRWT changes that'll land in a separate patch.
-        In particular we should never output framing text like "\n"
-        or "#EOF" outside of something outside of TestEventPrinter,
-        and we weren't handling audio output properly at all.
-
-        * DumpRenderTree/chromium/TestEventPrinter.cpp:
-        (DRTPrinter):
-        (TestShellPrinter):
-        (DRTPrinter::handleTextFooter):
-        (DRTPrinter::handleAudioFooter):
-        (DRTPrinter::handleTestFooter):
-        (TestShellPrinter::handleAudioFooter):
-        * DumpRenderTree/chromium/TestEventPrinter.h:
-        (TestEventPrinter):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::dump):
-
-2012-04-25  Joshua Bell  <jsbell@chromium.org>
-
-        Unreviewed: Adding Alec Flett as a contributor (non-committer).
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-04-25  Abhishek Arya  <inferno@chromium.org>
-
-        Mark myself as a reviewer.
-        https://bugs.webkit.org/show_bug.cgi?id=84902
-
-        Reviewed by Dimitri Glazkov.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-04-25  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
-
-        [Qt][NRWT] Run each DRT in it's own xvfb
-        https://bugs.webkit.org/show_bug.cgi?id=77335
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort._driver_class):
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort._driver_class):
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver.py: Added.
-        (XvfbDriver):
-        (XvfbDriver._start):
-        (XvfbDriver._start.x_filter):
-        (XvfbDriver.stop):
-
-2012-04-25  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r115222.
-        http://trac.webkit.org/changeset/115222
-        https://bugs.webkit.org/show_bug.cgi?id=84874
-
-        Caused test regressions on the EFL build (Requested by rakuco
-        on #webkit).
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::addOriginAccessWhitelistEntry):
-        (LayoutTestController::removeOriginAccessWhitelistEntry):
-
-2012-04-25  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] [DRT] LayoutTestController needs implementation of addOriginAccessWhitelistEntry and removeOriginAccessWhitelistEntry
-        https://bugs.webkit.org/show_bug.cgi?id=83880
-
-        Reviewed by Antonio Gomes.
-
-        Add missing implementation addOriginAccessWhitelistEntry and
-        removeOriginAccessWhitelistEntry to EFL's LayoutTestController
-        in order to unskip tests which rely on this.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::addOriginAccessWhitelistEntry):
-        (LayoutTestController::removeOriginAccessWhitelistEntry):
-
-2012-04-25  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [EFL] [DRT] Reset text zoom factor before running a test
-        https://bugs.webkit.org/show_bug.cgi?id=84861
-
-        Reviewed by Antonio Gomes.
-
-        This fix eliminates most of the current flakiness on EFL build
-        bots, although some CSS tests will now need rebasiling.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-
-2012-04-25  Milian Wolff  <milian.wolff@kdab.com>
-
-        [Qt] add LayoutTestController::setPrinting support to Qt unit tests
-        https://bugs.webkit.org/show_bug.cgi?id=84246
-
-        Reviewed by Simon Hausmann.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::dump):
-
-2012-04-18  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Make the web view's url property follow the active url
-
-        https://bugs.webkit.org/show_bug.cgi?id=77554
-
-        Update  the location bar in the minibrowser to behave
-        a bit more like normal browsers in terms of when the url will change
-        and how active focus is handled.
-
-        Reviewed by Simon Hausmann.
-
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-
-2012-04-25  Philippe Normand  <pnormand@igalia.com>
-
-        Webkit build fails due to missing gstreamer include file on Kubuntu 8.04
-        https://bugs.webkit.org/show_bug.cgi?id=81913
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/features.prf: Check for gstreamer-0.10
-        and gstreamer-plugins-base >= 0.10.30 just like the GTK port
-        does. 0.10.27 is unfortunately not recent enough to get the media
-        player working reliably.
-
-
-2012-04-25  Xiaobo Wang  <xbwang@torchmobile.com.cn>
-
-        [BlackBerry] Run tests in '/http/tests/local' with local URI
-        https://bugs.webkit.org/show_bug.cgi?id=84820
-
-        Reviewed by Nikolas Zimmermann.
-
-        Currently we run all tests under folder "/http/tests/" as HTTP
-        tests (http://...). However in WebKit ORWT and NRWT scripts, tests in
-        'http/tests/local' are run with local path (like '/developer/LayoutTests
-        /http/tests/local/absolute-url-strip-whitespace.html').
-        With this patch we can keep the same behaviour as other portings.
-
-        * DumpRenderTree/blackberry/DumpRenderTree.cpp:
-        (BlackBerry::WebKit::DumpRenderTree::isHTTPTest):
-
-2012-04-25  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL][DRT] Reset DRT settings to their default values after a testcase was executed.
-        https://bugs.webkit.org/show_bug.cgi?id=84709
-
-        Reviewed by Eric Seidel.
-
-        Not all the settings that can be changed by layout testcases through a JS API were 
-        reset in DumpRenderTreeChrome::resetDefaultsToConsistentValues().
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (defaultEditingBehavior): returns editing behavior depending on current platform.
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues): reset some missed DRT settings
-
-2012-04-24  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: add ASAN handling to chromium crash logs
-        https://bugs.webkit.org/show_bug.cgi?id=84664
-
-        Reviewed by Ojan Vafai.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort._get_crash_log):
-
-2012-04-24  Dirk Pranke  <dpranke@chromium.org>
-
-        webkit-patch rebaseline-test is retrieving stale expectations
-        https://bugs.webkit.org/show_bug.cgi?id=84762
-
-        Reviewed by Ojan Vafai.
-
-        webkit-patch rebaseline-expectations is fetching files directly
-        from the layout-test-results directory on the buildbots, rather
-        than fetching them from the archive. This is problematic because
-        we don't clobber the directory after each run and so you can end
-        up fetching stale failing results.
-
-        This change temporarily changes the code to fetch the zip file
-        instead -- making things much slower -- until I can confer w/
-        abarth and ojan over the best way to fix this for the long-term.
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineTest.__init__):
-        (RebaselineTest._zip_file_set):
-        (RebaselineTest):
-        (RebaselineTest._fetch_baseline):
-        (RebaselineTest._rebaseline_test):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (TestRebaseline.stub_rebaseline_test_command_and_tool):
-        (TestRebaseline.stub_rebaseline_test_command_and_tool.FakeZipFileSet):
-        (TestRebaseline.stub_rebaseline_test_command_and_tool.FakeZipFileSet.read):
-        (TestRebaseline.test_rebaseline_updates_expectations_file_noop):
-        (test_rebaseline_updates_expectations_file):
-        (test_rebaseline_test):
-        (test_rebaseline_and_copy_test):
-        (test_rebaseline_and_copy_test_no_existing_result):
-        (test_rebaseline_and_copy_test_with_lion_result):
-        (test_rebaseline_and_copy_no_overwrite_test):
-
-2012-04-24  Ojan Vafai  <ojan@chromium.org>
-
-        Improve code for embedding flakiness dashboard as an iframe
-        https://bugs.webkit.org/show_bug.cgi?id=84782
-
-        Reviewed by Dirk Pranke.
-
-        -Include the horizontal scrollbar height in the measured height of the page.
-        -Post a message everytime the height changes instead of in response to a queryContentHeight message.
-        This way, the embedder doesn't need to poll.
-
-        No new tests. This is hard to test because it involves postMessage and iframes.
-        Once we switch the dashboard tests over to qunit, we should be able to write an
-        asyncTest for this.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (generatePage):
-        (appendHTML):
-        (appendExpectations):
-        (postHeightChangedMessage):
-        (generatePageForIndividualTests.if):
-        (generatePageForIndividualTests):
-        * TestResultServer/static-dashboards/flakiness_dashboard_embedded.html: Added.
-
-2012-04-16  Ojan Vafai  <ojan@chromium.org>
-
-        Replace garden-o-matic accordion UI with a panel UI
-        https://bugs.webkit.org/show_bug.cgi?id=84081
-
-        Reviewed by Dimitri Glazkov.
-
-        This is a nicer UI to work with and makes it easier to embed the flakiness dashboard,
-        since we can reuse the same iframe without moving it in the DOM.
-
-        Also, excise unnecessary jquery-isms.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/results.css:
-
-2012-04-24  Peter Beverloo  <peter@chromium.org>
-
-        [Chromium] DumpRenderTree should depend on base.gyp:test_support_base
-        https://bugs.webkit.org/show_bug.cgi?id=84729
-
-        Reviewed by Dirk Pranke.
-
-        This dependency is necessary for Android since it'll soon be
-        calling InitAndroidOSPathStub() in it's platform support. The
-        TestWebKitAPI and webkit_unit_tests already have this dependency.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-04-24  Ojan Vafai  <ojan@chromium.org>
-
-        Replace vague informative statement with the list of builders where the test isn't listed
-        https://bugs.webkit.org/show_bug.cgi?id=84779
-
-        Reviewed by Dirk Pranke.
-
-        This is more informative and more likely to be noticed. With the old UI, people never
-        read the line and if they did, they didn't really understand what it meant. Hopefully
-        have the list of builders will be more clear.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.css:
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-
-2012-04-24  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: Create a new flag for PeerConnection
-        https://bugs.webkit.org/show_bug.cgi?id=84723
-
-        Reviewed by Dimitri Glazkov.
-
-        To allow Chrome to make the GetUserMedia functionality available by default we
-        need another flag for the PeerConnection related parts. This new flag is in
-        addition to the general media stream flag, and both need to be enabled for
-        PeerConnection object creation.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-
-2012-04-24  Joe Mason  <jmason@rim.com>
-
-        [BlackBerry] Revert broken changes to authentication dialog
-        https://bugs.webkit.org/show_bug.cgi?id=80135
-
-        Reviewed by Antonio Gomes.
-
-        The previous patches from this bug caused an infinite loop when using digest auth;
-        apparently they were only tested with basic.
-
-        * DumpRenderTree/blackberry/DumpRenderTree.cpp:
-        * DumpRenderTree/blackberry/DumpRenderTreeBlackBerry.h:
-        (WebCore):
-
-2012-04-24  Zan Dobersek  <zandobersek@gmail.com>
-
-        [TestResultsServer] Add a unit test for changes in r114868
-        https://bugs.webkit.org/show_bug.cgi?id=84713
-
-        Reviewed by Ojan Vafai.
-
-        Add a new unit test to test the isToTWebKit attribute of a BuilderGroup object
-        that is created for either DEPS or ToT builder groups. The unit test covers changes
-        made in r114868.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-        (testBuilderGroupIsToTWebKitAttribute.g_handleBuildersListLoaded):
-        (testBuilderGroupIsToTWebKitAttribute.assertEquals):
-
-2012-04-24  Brady Eidson  <beidson@apple.com>
-
-        <rdar://problem/10120155> and https://bugs.webkit.org/show_bug.cgi?id=82664
-         Need DOMWindow mechanism to supplement UserScripts for page cache notifications
-
-        Reviewed by Sam Weinig.
-
-        Add a new bundle test that stresses the basics of the WKBundleDOMWindowExtension API.
-
-        It makes sure new extensions can be added at the right times, and that all of the expected
-        callbacks are made.
-
-        * TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionBasic.cpp: Added.
-        (TestWebKitAPI::didReceiveMessageFromInjectedBundle): Record all messages sent from the bundle.
-        (TestWebKitAPI::TEST): Run a page through some basic exercises, then compared messages sent from the
-           bundle to a set of known expected messages.
-
-        Listen to all the new client callbacks, create some extensions, and monitor their lifetimes:
-        * TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionBasic_Bundle.cpp: Added.
-        (TestWebKitAPI::DOMWindowExtensionBasic::DOMWindowExtensionBasic):
-        (TestWebKitAPI::DOMWindowExtensionBasic::frameLoadFinished):
-        (TestWebKitAPI::DOMWindowExtensionBasic::sendExtensionStateMessage):
-        (TestWebKitAPI::DOMWindowExtensionBasic::initialize):
-        (TestWebKitAPI::DOMWindowExtensionBasic::didCreatePage):
-        (TestWebKitAPI::DOMWindowExtensionBasic::updateExtensionStateRecord):
-        (TestWebKitAPI::DOMWindowExtensionBasic::sendBundleMessage):
-        (TestWebKitAPI::DOMWindowExtensionBasic::didCreateGlobalObjectForFrame):
-        (TestWebKitAPI::DOMWindowExtensionBasic::willDisconnectDOMWindowExtensionFromGlobalObject):
-        (TestWebKitAPI::DOMWindowExtensionBasic::didReconnectDOMWindowExtensionToGlobalObject):
-        (TestWebKitAPI::DOMWindowExtensionBasic::willDestroyGlobalObjectForDOMWindowExtension):
-        (TestWebKitAPI::didFinishLoadForFrameCallback):
-        (TestWebKitAPI::didCreateGlobalObjectForFrameCallback):
-        (TestWebKitAPI::willDisconnectDOMWindowExtensionFromGlobalObjectCallback):
-        (TestWebKitAPI::didReconnectDOMWindowExtensionToGlobalObjectCallback):
-        (TestWebKitAPI::willDestroyGlobalObjectForDOMWindowExtensionCallback):
-
-        * TestWebKitAPI/Tests/WebKit2/InjectedBundleBasic.cpp:
-        (TestWebKitAPI::didReceiveMessageFromInjectedBundle): Make this method static, as it always should have been.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-
-2012-04-24  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Build and run TestWebKitAPI unit tests
-        https://bugs.webkit.org/show_bug.cgi?id=84325
-
-        Reviewed by Philippe Normand.
-
-        We only build WTF unit tests for now. WebKit2 tests will be
-        enabled in a follow up patch.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner): Add TestWebKitAPI/WTF to the list of directories
-        containing unit tests.
-        (TestRunner._run_test_glib): Run glib tests using gtester.
-        (TestRunner._run_test_google): Run google tests.
-        (TestRunner._run_test): Use _run_test_glib or _run_test_google
-        depending on whether given test is glib or google test
-        * TestWebKitAPI/GNUmakefile.am: Added.
-        * TestWebKitAPI/config.h: Use #ifdef instead of # to fix a compile
-        warning with -Wundef. Include WebKit2 headers only when building
-        WebKit2.
-
-2012-04-24  Allan Sandfeld Jensen  <allan.jensen@nokia.com>
-
-        [Qt][WK2] Convert touch-point area
-        https://bugs.webkit.org/show_bug.cgi?id=84434
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Fix failing test after r114917 by also adding the new EventSender API
-        to WebKitTestRunner.
-
-        * WebKitTestRunner/EventSenderProxy.h:
-        (EventSenderProxy):
-        * WebKitTestRunner/InjectedBundle/Bindings/EventSendingController.idl:
-        * WebKitTestRunner/InjectedBundle/EventSendingController.cpp:
-        (WTR::EventSendingController::setTouchPointRadius):
-        * WebKitTestRunner/InjectedBundle/EventSendingController.h:
-        (EventSendingController):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::didReceiveSynchronousMessageFromInjectedBundle):
-        * WebKitTestRunner/qt/EventSenderProxyQt.cpp:
-        (WTR::EventSenderProxy::addTouchPoint):
-        (WTR::EventSenderProxy::updateTouchPoint):
-        (WTR::EventSenderProxy::setTouchPointRadius):
-        (WTR::EventSenderProxy::clearTouchPoints):
-
-2012-04-24  Mikhail Naganov  <mnaganov@chromium.org>
-
-        [Chromium] Unreviewed test expectations update.
-        https://bugs.webkit.org/show_bug.cgi?id=84726
-
-        Mark webkitpy.layout_tests.servers.http_server_unittest.TestHttpServer.test_start_cmd as failing on Windows.
-
-        * Scripts/webkitpy/test/test_finder.py:
-        (TestFinder._default_names):
-
-2012-04-24  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Enable Web Timing
-        https://bugs.webkit.org/show_bug.cgi?id=84705
-
-        Reviewed by Tony Gentilcore.
-
-        Enable web timing by default whenever build-webkit is used.
-
-        * Scripts/build-webkit:
-
-2012-04-23  Eriq Augustine  <eaugusti@chromium.org>
-
-        Return value from executed script in Chromium.
-        https://bugs.webkit.org/show_bug.cgi?id=79851
-
-        Reviewed by Adam Barth.
-
-        Adding a function to LayoutTestController that evaluates a script in
-        an isolated wold an returns the result of the evaluation.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (evaluateScriptInIsolatedWorldAndReturnValue):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
-        (LayoutTestController::evaluateScriptInIsolatedWorldAndReturnValue):
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setXSSAuditorEnabled):
-        (LayoutTestController::evaluateScriptInIsolatedWorldAndReturnValue):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::evaluateScriptInIsolatedWorldAndReturnValue):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::evaluateScriptInIsolatedWorldAndReturnValue):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::evaluateScriptInIsolatedWorldAndReturnValue):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::evaluateScriptInIsolatedWorldAndReturnValue):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::evaluateScriptInIsolatedWorldAndReturnValue):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::evaluateScriptInIsolatedWorldAndReturnValue):
-
-2012-04-23  Dirk Pranke  <dpranke@chromium.org>
-
-        run-perf-tests fail intermittently with an exception
-        https://bugs.webkit.org/show_bug.cgi?id=83532
-
-        Reviewed by Ryosuke Niwa.
-
-        This bulletproofs port.get_option('child_processes')
-        against the case where the option wasn't set.
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort._get_crash_log):
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        (test_get_crash_log):
-        (test_get_crash_log.fake_time_cb):
-
-2012-04-23  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt] Add desktop zooming support for QQuickWebView
-        https://bugs.webkit.org/show_bug.cgi?id=82337
-
-        Unreviewed typo fix after r114900.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow): Fix the mistyped
-        value of a zoom level.
-
-2012-04-23  Hao Zheng  <zhenghao@chromium.org>
-
-        [chromium-android] Get rid of the trick that replaces system fallback font with DejaVuSans.
-        https://bugs.webkit.org/show_bug.cgi?id=84580
-
-        Reviewed by Ojan Vafai.
-
-        Android's first fallback font is changed to DroidSansArabic.ttf in JB.
-        Take the opportunity to get rid of the trick.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.start_helper):
-        (ChromiumAndroidPort._push_fonts):
-
-2012-04-23  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy is failing
-        https://bugs.webkit.org/show_bug.cgi?id=84617
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/layout_tests/port/http_lock_unittest.py:
-        (HttpLockTestWithRealFileSystem.clean_all_lockfile):
-
-2012-04-23  Ojan Vafai  <ojan@chromium.org>
-
-        Split up flakiness_dashboard.html into multiple files. This is a step in the direction
-        of making the code more maintainable (e.g. being able to use qunit for testing).
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        * TestResultServer/static-dashboards/flakiness_dashboard.css: Added.
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-        * TestResultServer/static-dashboards/flakiness_dashboard.js: Copied from Tools/TestResultServer/static-dashboards/flakiness_dashboard.html.
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.css: Added.
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js: Renamed from Tools/TestResultServer/static-dashboards/flakiness_dashboard_tests.js.
-
-2012-04-23  Allan Sandfeld Jensen  <allan.jensen@nokia.com>
-
-        [Qt][WK2] Convert touch-point area.
-        https://bugs.webkit.org/show_bug.cgi?id=84434
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add feature to set touch-point radius for emitted touch-events.
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::addTouchPoint):
-        (EventSender::updateTouchPoint):
-        (EventSender::setTouchPointRadius):
-        (EventSender::clearTouchPoints):
-        * DumpRenderTree/qt/EventSenderQt.h:
-        (EventSender):
-
-2012-04-23  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] EFL's LayoutTestController does not implement elementDoesAutoCompleteForElementWithId
-        https://bugs.webkit.org/show_bug.cgi?id=84425
-
-        Reviewed by Antonio Gomes.
-
-        Use the new helper in DumpRenderTreeSupportEfl to properly
-        test whether an element performs autocompletion.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::elementDoesAutoCompleteForElementWithId):
-
-2012-04-23  Csaba Osztrogonác  <ossy@webkit.org>
-
-        master.cfg cleanup, remove dead codes after r92792.
-        https://bugs.webkit.org/show_bug.cgi?id=84433
-
-        Relanding r114881 after typo fix in UploadBuiltProduct.
-
-        Reviewed by Ryosuke Niwa.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2012-04-23  Dominik Röttsches  <dominik.rottsches@linux.intel.com>
-
-        [EFL][DRT] Need to support requestAnimationFrame
-        https://bugs.webkit.org/show_bug.cgi?id=84585
-
-        Reviewed by Martin Robinson.
-
-        Making requestAnimationFrame() support a default on the EFL build.
-
-        * Scripts/build-webkit:
-
-2012-04-23  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt] Add desktop zooming support for QQuickWebView
-        https://bugs.webkit.org/show_bug.cgi?id=82337
-
-        Reviewed by Simon Hausmann.
-
-        Add zooming support for MiniBrowser to
-        test the new API.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::zoomIn):
-        (BrowserWindow::zoomOut):
-        (BrowserWindow::keyPressEvent):
-        (BrowserWindow::wheelEvent):
-        * MiniBrowser/qt/BrowserWindow.h:
-        (BrowserWindow):
-
-2012-04-23  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed rolling out r114881, because it broke upload buildstep.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (ConfigureBuild.__init__):
-        (ConfigureBuild.start):
-        (CompileWebKit.start):
-        (UploadBuiltProduct):
-        (UploadBuiltProduct.determineExtraFeatures):
-        (Factory.__init__):
-        (BuildFactory.__init__):
-        (TestFactory.__init__):
-        (loadBuilderConfig):
-
-2012-04-23  Csaba Osztrogonác  <ossy@webkit.org>
-
-        master.cfg cleanup, remove dead codes after r92792.
-        https://bugs.webkit.org/show_bug.cgi?id=84433
-
-        Reviewed by Ryosuke Niwa.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2012-04-23  Milian Wolff  <mail@milianw.de>
-
-        [Qt] Make DRT not dump pixel results if test is calling layoutTestController.dumpAsText()
-        https://bugs.webkit.org/show_bug.cgi?id=84327
-
-        Reviewed by Csaba Osztrogonác.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::dump):
-
-2012-04-22  Sriram Neelakandan  <sriram.neelakandan@gmail.com>
-
-        [Gtk] Added MOZ_X11 build flag for TARGET_X11
-        https://bugs.webkit.org/show_bug.cgi?id=40785
-
-        Reviewed by Anders Carlsson.
-
-        * GNUmakefile.am:
-
-2012-04-22  Zan Dobersek  <zandobersek@gmail.com>
-
-        [TestResultsServer] Impossible to inspect builds on non-Chromium builders
-        https://bugs.webkit.org/show_bug.cgi?id=84544
-
-        Reviewed by Ryosuke Niwa.
-
-        Use the groupEnum parameter that is passed through to the onBuilderListLoad
-        function rather than an undefined attribute of the BuilderGroup object. This
-        makes it again possible to inspect builds on non-Chromium builders in the
-        test results server by not trying to always add Chromium revision links.
-
-        * TestResultServer/static-dashboards/builders.js:
-
-2012-04-20  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Revert changes that disabled Cairo fonts metrics hinting
-        https://bugs.webkit.org/show_bug.cgi?id=84502
-
-        Reviewed by Daniel Bates.
-
-        Re-enable Cairo metrics hinting, which seems to ensure consistent results in
-        reference and pixel test results. This makes our font metrics a bit different
-        than the Mac port's, but it's a decent price to pay for consistent results.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (initializeGtkFontSettings):
-        * WebKitTestRunner/InjectedBundle/gtk/ActivateFontsGtk.cpp:
-        (WTR::initializeGtkSettings):
-
-2012-04-04  Jer Noble  <jer.noble@apple.com>
-
-        apple.com top navigation bar appears inside video during full screen exit animation
-        https://bugs.webkit.org/show_bug.cgi?id=83095
-
-        Reviewed by Eric Carlson.
-
-        Add a new LayoutTestController function, setHasCustomFullScreenBehavior(), which allows scripts to
-        disable the standard full screen behavior, and replace it with explicit callbacks to the relevant
-        Document methods from within the script.  This allows subtle timing bugs to be consistently reproduced
-        from within LayoutTests.
-
-        Add the new methods, hasCustomFullScreenBehavior() and setHasCustomFullScreenBehavior():
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setHasCustomFullScreenBehaviorCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::setHasCustomFullScreenBehavior):
-        (LayoutTestController::hasCustomFullScreenBehavior):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::enterFullScreenForElement):
-        (WTR::InjectedBundlePage::exitFullScreenForElement):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (WTR::LayoutTestController::setHasCustomFullScreenBehavior):
-        (WTR::LayoutTestController::hasCustomFullScreenBehavior):
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::reset):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController::setHasCustomFullScreenBehavior):
-        (LayoutTestController::hasCustomFullScreenBehavior):
-
-        Query the new methods before calling will/did/Enter/ExitFullScreen:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::enterFullScreenNow):
-        (WebViewHost::exitFullScreenNow):
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:enterFullScreenForElement:listener:]):
-        (-[UIDelegate webView:exitFullScreenForElement:listener:]):
-
-2012-04-20  Nandor Huszka  <hnandor@inf.u-szeged.hu>
-
-        NRWT: option --skip-pixel-test-if-no-baseline support on DRT
-        https://bugs.webkit.org/show_bug.cgi?id=72841
-
-        Reviewed by Dirk Pranke
-
-        This patch implements support for --skip-pixel-test-if-no-baseline generically in NRWT,
-        instead of in every DRT and WTR implementation. We add 'should_run_pixel_test'
-        and 'reference_files' fields to the TestInput objects, and use those flags
-        to select the right driver to use in the DriverProxy.
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner.__init__):
-        (SingleTestRunner._driver_input):
-        (SingleTestRunner._run_reftest):
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        (Worker.handle_test_list):
-        (Worker._update_test_input):
-        * Scripts/webkitpy/layout_tests/models/test_input.py:
-        (TestInput):
-        (TestInput.__init__):
-        (TestInput.__repr__):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumDriver._wrapper_options):
-        (ChromiumDriver.run_test):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumDriverTest.test_crash_log):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (DriverInput.__init__):
-        (Driver.__init__):
-        (DriverProxy.__init__):
-        (DriverProxy.run_test):
-        (DriverProxy.start):
-        (DriverProxy.cmd_line):
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkDriver._start):
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py:
-        (MockDRT.run):
-        (MockDRT.input_from_line):
-        (MockDRT.output_for_test):
-        (MockDRT.write_test_output):
-        (MockChromiumDRT.input_from_line):
-        (MockChromiumDRT.output_for_test):
-        (MockChromiumDRT.write_test_output):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver.cmd_line):
-        (WebKitDriver.run_test):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::TestController):
-        (WTR::TestController::initialize):
-        (WTR::TestController::runTest):
-        * WebKitTestRunner/TestController.h:
-        (TestController):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::TestInvocation):
-        (WTR::TestInvocation::setIsPixelTest):
-        * WebKitTestRunner/TestInvocation.h:
-        (TestInvocation):
-
-2012-04-20  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [EFL] Make it possible to define offline storage quota per origin
-        https://bugs.webkit.org/show_bug.cgi?id=84170
-
-        Improved LayoutTestController::setDatabaseQuota to set quota based on
-        origin which was causing some tests to fail. Also align the default
-        quota for testing (5MB) with others ports.
-
-        When dumpDatabaseCallbacks is set to true by, also dump some database
-        information when quota is exceed, which is also required by some tests.
-
-        Reviewed by Antonio Gomes.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        * DumpRenderTree/efl/DumpRenderTreeView.cpp:
-        (onExceededDatabaseQuota):
-        (drtViewAdd):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setDatabaseQuota):
-
-2012-04-20  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] [DRT] Send double click event from EventSender
-        https://bugs.webkit.org/show_bug.cgi?id=82867
-
-        Reviewed by Daniel Bates.
-
-        Add support for EFL DumpRenderTree EventSender to send
-        double click events.
-
-        * DumpRenderTree/efl/EventSender.cpp:
-        (sendMouseEvent):
-
-2012-04-20  Sergio Villar Senin  <svillar@igalia.com>
-
-        [GTK] Enable Web Timing
-        https://bugs.webkit.org/show_bug.cgi?id=42432
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Build web timing by default whenever build-webkit is used.
-
-        * Scripts/build-webkit:
-
-2012-04-20  Kamil Blank  <k.blank@samsung.com>
-
-        [EFL] Add missing reset for setAuthorAndUserStylesEnabled inside DRT.
-        https://bugs.webkit.org/show_bug.cgi?id=84430
-
-        Reviewed by Daniel Bates.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-
-2012-04-20  Ryosuke Niwa  <rniwa@webkit.org>
-
-        REGRESSION(r112781): Windows build slaves are no longer including .pdb files in archives handed to testers
-        https://bugs.webkit.org/show_bug.cgi?id=84424
-
-        Reviewed by Mark Rowe.
-
-        Let Windows and Chromium have their own list of files to copy.
-
-        * BuildSlaveSupport/built-product-archive:
-        (removeDirectoryIfExists):
-        (copyBuildFiles):
-        (archiveBuiltProduct):
-
-2012-04-20  Kamil Blank  <k.blank@samsung.com>
-
-        [EFL] Add setting API for author and user styles.
-        https://bugs.webkit.org/show_bug.cgi?id=82860
-
-        Reviewed by Daniel Bates.
-
-        Implementation of setAuthorAndUserStylesEnabled.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setAuthorAndUserStylesEnabled):
-
-2012-04-19  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] Missing keycode translation for space key
-        https://bugs.webkit.org/show_bug.cgi?id=84153
-
-        Reviewed by Antonio Gomes.
-
-        Set keyname for space key before dispatching event.
-
-        * DumpRenderTree/efl/EventSender.cpp:
-        (keyNameFromJSValue):
-
-2012-04-19  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Allow to use WebInspector in GtkLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=84143
-
-        Reviewed by Martin Robinson.
-
-        * GNUmakefile.am: Add new files to compilation.
-        * GtkLauncher/LauncherInspectorWindow.c: Added.
-        (launcherInspectorWindowFinalize):
-        (launcher_inspector_window_init):
-        (launcher_inspector_window_class_init):
-        (inspectedURIChanged): Update the window title based on current
-        inspected URI.
-        (showInspectorWindow): Show inspector window.
-        (closeInspectorWindow): Hide inspector window.
-        (launcherInspectorWindowNew): Create an inspector window.
-        (launcherInspectorWindowGetWebView): Return the inspected web view.
-        * GtkLauncher/LauncherInspectorWindow.h: Added.
-        * GtkLauncher/main.c:
-        (inspectorInspectWebViewCb): Create an inspector window.
-        (createBrowser): Connect to inspect-web-view signal of the view
-        inspector.
-
-2012-04-19  Jeremy Mao  <yujie.mao@intel.com>
-
-        Media Stream API: Piece of code cleanup for the chromium port
-        https://bugs.webkit.org/show_bug.cgi?id=84328
-
-        Reviewed by Kent Tamura.
-
-        WebUserMediaClientMock use an old requestUserMedia interface and
-        Replace it with the new interface.
-
-        * DumpRenderTree/chromium/WebUserMediaClientMock.cpp:
-        (WebKit::WebUserMediaClientMock::requestUserMedia):
-        Remove the old requestUserMedia and replace it with the new.
-        * DumpRenderTree/chromium/WebUserMediaClientMock.h:
-        (WebUserMediaClientMock):
-
-2012-04-19  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] DRT console messages should contain only the file name part of local URIs
-        https://bugs.webkit.org/show_bug.cgi?id=84236
-
-        Reviewed by Kentaro Hara.
-
-        Process console messages before printing them in EFL's DumpRenderTree
-        them so that they contain only the file name part of local URIs. This
-        is what is expected by test cases.
-
-        * DumpRenderTree/efl/DumpRenderTreeView.cpp:
-        (urlSuitableForTestResult):
-        (onConsoleMessage):
-
-2012-04-19  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [EFL] [DRT] Should create offline storage inside DUMPRENDERTREE_TEMP
-        https://bugs.webkit.org/show_bug.cgi?id=84169
-
-        All databases were being created inside ~/.webkit which was causing
-        flaky tests when running multiple tests in parallel, specially timeouts
-        due to concurrency.
-
-        Reviewed by Eric Seidel.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::initialize):
-
-2012-04-19  Dominik Röttsches  <dominik.rottsches@linux.intel.com>
-
-        [GTK] 3 fast/ layout tests failing after upgrading libsoup to 2.37.92
-        https://bugs.webkit.org/show_bug.cgi?id=82484
-
-        Reviewed by Martin Robinson.
-
-        Bumping libsoup to version 2.38.1 which fixes the above WebKit bug.
-
-        * efl/jhbuild.modules:
-        * gtk/jhbuild.modules:
-
-2012-04-19  Lucas Forschler  <lforschler@apple.com>
-
-        Move apple-xserve-10 from Lion Test to SnowLeopard Debug Build
-        
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-04-19  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] dispatchDidCancelClientRedirect needs implementation
-        https://bugs.webkit.org/show_bug.cgi?id=83669
-
-        Reviewed by Antonio Gomes.
-
-        Catch the new ewk_frame "redirect,cancelled" signal in EFL's DRT and
-        and print out information that is expected by several test cases if
-        LayoutTestController's dumpFrameLoadCallback() returns true.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::createView):
-        (DumpRenderTreeChrome::onFrameCreated):
-        (DumpRenderTreeChrome::onFrameRedirectCancelled):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.h:
-        (DumpRenderTreeChrome):
-
-2012-04-18  Hironori Bono  <hbono@chromium.org>
-
-        Split SpellChecker::didCheck() to SpellChecker::didCheckSucceeded() and SpellChecker::didCheckCanceled()
-        https://bugs.webkit.org/show_bug.cgi?id=83748
-
-        Reviewed by Ryosuke Niwa.
-
-        This change replaces a call for SpellChecker::didCheck() with one for
-        SpellChecker::didCheckCenceled() because didCheck() has been split into
-        didCheckSucceeded() and didCheckCanceled().
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::requestCheckingOfText): Replaced didCheck with didCheckCanceled.
-
-2012-04-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix failure in test-webkitpy after r114583.
-
-        Unreviewed, build fix.
-
-        Updating the call site in r114583 w/o updating the test caused
-        the test to fail. Somehow I forgot to run the unit tests :(.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumDriverTest.test_crash_log):
-
-2012-04-18  Filip Pizlo  <fpizlo@apple.com>
-
-        JSC testing should have complete coverage over typed array types
-        https://bugs.webkit.org/show_bug.cgi?id=84302
-
-        Reviewed by Geoff Garen.
-        
-        Made run-fast-jsc print something and a newline if jsc threw an exception or
-        otherwise returned with an error code, but did not crash.
-
-        * Scripts/run-fast-jsc:
-
-2012-04-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix crash in chromium.py after r114877.
-
-        Unreviewed, build fix.
-
-        Missed updating one call site for get_crash_log() :(.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumDriver.run_test):
-
-2012-04-18  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] NRWT bails out if more than one X server runs on the machine
-        https://bugs.webkit.org/show_bug.cgi?id=84276
-
-        Reviewed by Dirk Pranke.
-
-        Set up GTK driver's Xvfb display number based on Xorg servers
-        currently running.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkDriver._start):
-        (GtkDriver._start.x_filter):
-
-2012-04-18  Dirk Pranke  <dpranke@chromium.org>
-
-        run-webkit-tests picked up an old crash log
-        https://bugs.webkit.org/show_bug.cgi?id=84196
-
-        Reviewed by Ryosuke Niwa.
-
-        Modify the crash log-finding code so that we can
-        limit our search to logs newer than X - this prevents
-        us from finding old crash logs for a given process/pid
-        combination even when the PIDs might've wrapped.
- 
-        Also fix a bug in filesystem_mock where files_under() would
-        return paths that didn't exist.
-
-        * Scripts/webkitpy/common/system/crashlogs.py:
-        (CrashLogs.find_newest_log):
-        (CrashLogs._find_newest_log_darwin):
-        * Scripts/webkitpy/common/system/crashlogs_unittest.py:
-        (CrashLogsTest.test_find_log_darwin):
-        (CrashLogsTest.test_find_log_darwin.bad_read):
-        (CrashLogsTest):
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        (MockFileSystem.files_under):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port._get_crash_log):
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort._get_crash_log):
-        * Scripts/webkitpy/layout_tests/port/gtk_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort._get_crash_log):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (PortTestCase.test_get_crash_log):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver.run_test):
-
-2012-04-18  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: support additional test expectations files
-        https://bugs.webkit.org/show_bug.cgi?id=84222
-
-        Reviewed by Ojan Vafai.
-
-        This patch adds an --additional-expectations flag that can be
-        used to point to more files that will override the default set
-        of expectations. This will allow us to remove the
-        'google_chrome' ports and eventually help to clean up override
-        handling in the chromium ports and unify expectations files and
-        Skipped files; this can also be used to specify overrides for
-        tests that run differently on a given machine.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.test_expectations_overrides):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.test_expectations_overrides):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_additional_expectations):
-
-2012-04-18  Jer Noble  <jer.noble@apple.com>
-
-        Lion Production Test failing with error: "Failed to stop httpd: pid file still exists"
-        https://bugs.webkit.org/show_bug.cgi?id=84177
-
-        Reviewed by Dirk Pranke.
-
-        Try to delete the pid file left by Apache in the case it was killed forcefully.
-
-        * Scripts/webkitpy/layout_tests/servers/apache_http_server.py:
-        (LayoutTestApacheHttpd._stop_running_server):
-
-2012-04-18  Allan Sandfeld Jensen  <allan.jensen@nokia.com>
-
-        Clean-up WheelEvent Conversion.
-        https://bugs.webkit.org/show_bug.cgi?id=84243
-
-        Reviewed by Simon Hausmann.
-        
-        Calculate proper wheel-delta from pixel-delta given.
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::EventSender):
-        (EventSender::mouseScrollBy):
-        (EventSender::continuousMouseScrollBy):
-
-2012-04-18  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r114506.
-        http://trac.webkit.org/changeset/114506
-        https://bugs.webkit.org/show_bug.cgi?id=84254
-
-        Seems to be making gtk's DumpRenderTree crash occasionally
-        (Requested by tomz on #webkit).
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-
-2012-04-18  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [CMake] Use jsc target instead of ONLY_BUILD_JAVASCRIPTCORE
-        https://bugs.webkit.org/show_bug.cgi?id=84229
-
-        CMake caches ONLY_BUILD_JAVASCRIPTCORE=1 and will reuse the setting for
-        subsequent builds, stopping WebCore from being built ever again.
-
-        Instead of trying to emulate a build target using command line options,
-        just build the existing jsc target directly.
-
-        Reviewed by Rob Buis.
-
-        * Scripts/build-jsc:
-
-2012-04-18  Simon Pena  <spena@igalia.com>
-
-        [GTK] r114021 triggered media flakyness
-        https://bugs.webkit.org/show_bug.cgi?id=83874
-
-        Reviewed by Philippe Normand.
-
-        Now that there is gtk API to update the
-        MediaPlaybackRequiresUserGesture property, set it to false from the
-        DumpRenderTree tool when resetting defaults to consistent values.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-
-2012-04-18  Vivek Galatage  <vivekgalatage@gmail.com>
-
-        Web Inspector: Disabling Inspector causes build failure on Windows
-        https://bugs.webkit.org/show_bug.cgi?id=83557
-
-        Reviewed by Pavel Feldman.
-
-        The calls to inspector APIs are not put under ENABLE(INSPECTOR) guard.
-        This change brings all such API calls under the guard.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::showWebInspector):
-        (WTR::LayoutTestController::closeWebInspector):
-        (WTR::LayoutTestController::evaluateInWebInspector):
-        (WTR::LayoutTestController::setJavaScriptProfilingEnabled):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::invoke):
-
-2012-04-18  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        [GTK] atk/textChangedNotifications API test fails
-        https://bugs.webkit.org/show_bug.cgi?id=84010
-
-        Unreviewed, unskipping test after bug being fixed by r114311.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner): Unskip now passing test.
-
-2012-04-17  Jacky Jiang  <zhajiang@rim.com>
-
-        [BlackBerry] Viewport metatag doesn't disable double-tap zoom
-        https://bugs.webkit.org/show_bug.cgi?id=84199
-
-        Reviewed by George Staikos.
-
-        Revert a part of the change master_32/SHA:fa0f8ee9 and use
-        WebPage::setUserScalable instead.
-
-        * DumpRenderTree/blackberry/DumpRenderTree.cpp:
-        (BlackBerry::WebKit::DumpRenderTree::resetToConsistentStateBeforeTesting):
-
-2012-04-17  Dirk Pranke  <dpranke@chromium.org>
-
-        build-webkit: make ninja work with chromium linux
-        https://bugs.webkit.org/show_bug.cgi?id=84213
-
-        Reviewed by Eric Seidel.
-
-        Fix typos so that build-webkit will use ninja to
-        build chromium if a build.ninja file exists and is up-to-date.
-
-        * Scripts/webkitdirs.pm:
-        (determineIsChromiumNinja):
-
-2012-04-17  Ojan Vafai  <ojan@chromium.org>
-
-        Add caching to the flakiness dashboard json files
-        https://bugs.webkit.org/show_bug.cgi?id=84198
-
-        Reviewed by Dirk Pranke.
-
-        * TestResultServer/handlers/testfilehandler.py:
-        (GetFile._get_file_list):
-        (GetFile._get_file_content):
-        (GetFile._get_file_content_from_key):
-        (GetFile._get_test_list_json):
-        (GetFile._serve_json):
-        Add a Last-Modified header and handle If-Modified-Since headers.
-        (GetFile.get):
-
-2012-04-17  Anders Carlsson  <andersca@apple.com>
-
-        Need a client callback for when the user tries to interact with an already unresponsive page
-        https://bugs.webkit.org/show_bug.cgi?id=84201
-        <rdar://problem/11140862>
-
-        Reviewed by Andreas Kling.
-
-        Add new client functions.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-
-2012-04-17  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: handle stopping layout test helper after a ctrl-c cleanly on the chromium port
-        https://bugs.webkit.org/show_bug.cgi?id=84190
-
-        Reviewed by Ojan Vafai.
-
-        LayoutTestHelper would exit when the user typed ctrl-c, but we
-        would attempt to write to it to shut it down, generating an
-        IOError.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.stop_helper):
-
-2012-04-17  Dirk Pranke  <dpranke@chromium.org>
-
-        rename --experimental-fully-parallel
-        https://bugs.webkit.org/show_bug.cgi?id=84188
-
-        Reviewed by Ojan Vafai.
-
-        I thought this was done long ago; rename
-        --experimental-fully-parallel to just --fully-parallel and
-        remove the --no- switch that AFAIK no one uses.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._run_tests):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-
-2012-04-17  Christophe Dumez  <christophe.dumez@intel.com>
-
-        EFL's LayoutTestController does not implement callShouldCloseOnWebView
-        https://bugs.webkit.org/show_bug.cgi?id=82301
-
-        Reviewed by Martin Robinson.
-
-        Implement callShouldCloseOnWebView in EFL's LayoutTestController by
-        calling shouldClose() on the FrameLoader, allowing the related test
-        to be removed from the skip list.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::callShouldCloseOnWebView):
-
-2012-04-17  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] Add setting API to enable/disable XSSAuditor
-        https://bugs.webkit.org/show_bug.cgi?id=83281
-
-        Add missing implementation setXSSAuditorEnabled to EFL's LayoutTestController
-        in order to unskip tests in http/tests/security/xssAuditor. Also, catch the signal 
-        'xss,detected' in DRT to enable a test, which is expecting a line containing
-        'didDetectXSS' in the output when reflected XSS is encountered in the page.
-
-        Reviewed by Antonio Gomes.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::createView):
-        (DumpRenderTreeChrome::onFrameCreated):
-        (DumpRenderTreeChrome::onDidDetectXSS):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.h:
-        (DumpRenderTreeChrome):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setXSSAuditorEnabled):
-
-2012-04-17  Nandor Huszka  <hnandor@inf.u-szeged.hu>
-
-        [Qt] JSC build should handle --no-webkit2 option to avoid unwanted clean-builds
-        https://bugs.webkit.org/show_bug.cgi?id=77533
-
-        Reviewed by Simon Hausmann.
-
-        Pick up the --no-webkit2 option from BUILD_WEBKIT_ARGS and pass on
-        the corresponding parameter to the buildQMakeProjects function.
-
-        * Scripts/build-jsc:
-
-2012-04-17  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] DRT should support LayoutTestController's dumpFrameLoadCallbacks()
-        https://bugs.webkit.org/show_bug.cgi?id=83030
-
-        Reviewed by Antonio Gomes.
-
-        Implement support for LayoutTestController's dumpFrameLoadCallbacks()
-        in EFL's DumpRenderTree. Make use of the new frame argument passed to
-        the "load,started" and "load,finished" signals.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::createView):
-        (DumpRenderTreeChrome::onLoadStarted):
-        (DumpRenderTreeChrome::processWork):
-        (DumpRenderTreeChrome::topLoadingFrameLoadFinished):
-        (DumpRenderTreeChrome::onWebViewOnloadEvent):
-        (DumpRenderTreeChrome::onInsecureContentRun):
-        (DumpRenderTreeChrome::onInsecureContentDisplayed):
-        (DumpRenderTreeChrome::onFrameCreated):
-        (DumpRenderTreeChrome::onFrameProvisionalLoad):
-        (DumpRenderTreeChrome::onFrameLoadCommitted):
-        (DumpRenderTreeChrome::onFrameLoadFinished):
-        (DumpRenderTreeChrome::onFrameLoadError):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.h:
-        (DumpRenderTreeChrome):
-
-2012-04-17  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r114376.
-        http://trac.webkit.org/changeset/114376
-        https://bugs.webkit.org/show_bug.cgi?id=84155
-
-        Wrong patch version committed, asked by the patch author.
-        (Requested by rakuco on #webkit).
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::createView):
-        (DumpRenderTreeChrome::processWork):
-        (DumpRenderTreeChrome::onLoadFinished):
-        (DumpRenderTreeChrome::onWillSendRequest):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.h:
-        (DumpRenderTreeChrome):
-
-2012-04-17  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] DRT should support LayoutTestController's dumpFrameLoadCallbacks()
-        https://bugs.webkit.org/show_bug.cgi?id=83030
-
-        Reviewed by Antonio Gomes.
-
-        Implement support for LayoutTestController's dumpFrameLoadCallbacks()
-        in EFL's DumpRenderTree.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::createView):
-        (DumpRenderTreeChrome::processWork):
-        (DumpRenderTreeChrome::topLoadingFrameLoadFinished):
-        (DumpRenderTreeChrome::onWebViewOnloadEvent):
-        (DumpRenderTreeChrome::onInsecureContentRun):
-        (DumpRenderTreeChrome::onInsecureContentDisplayed):
-        (DumpRenderTreeChrome::onFrameCreated):
-        (DumpRenderTreeChrome::onFrameProvisionalLoad):
-        (DumpRenderTreeChrome::onFrameLoadCommitted):
-        (DumpRenderTreeChrome::onFrameLoadFinished):
-        (DumpRenderTreeChrome::onFrameLoadError):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.h:
-        (DumpRenderTreeChrome):
-
-2012-04-17  Michael Brüning  <michael.bruning@nokia.com>
-
-        [Qt] Fix builds with force_static_libs_as_shared for non-linux builds.
-        https://bugs.webkit.org/show_bug.cgi?id=83035
-
-        Reviewed by Simon Hausmann.
-
-        The force_static_libs_as_shared feature for the Qt port will remove
-        hide_symbols from Qt's CONFIG in order to make them visible to other
-        libraries again.
-
-        Due to an evaluation order problem in qmake, the flags for the C++ compiler
-        that are set by adding hide_symbols to the CONFIG variables get applied
-        to qmake's C++ compiler flags directly and hence trying to remove these
-        later will not work and cause build failures when using the force_static_libs_as_shared
-        feature of the Qt port.
-
-        This is fixed by removing the flags that hide the exports from the compiler flags directly.
-
-        * qmake/mkspecs/features/force_static_libs_as_shared.prf:
-
-2012-04-16  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Remove CreateWebKitBuildDirectory step to fix Chromium Windows Perf bot
-        https://bugs.webkit.org/show_bug.cgi?id=84068
-
-        Reviewed by Eric Seidel.
-
-        Remove CreateWebKitBuildDirectory from master.cfg since download-built-product
-        automatically creates the build directory if needed.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (DownloadAndPerfTestFactory.__init__):
-        (DownloadAndPerfTestWebKit2Factory.__init__):
-
-2012-04-16  Gustavo Noronha Silva  <gns@gnome.org>
-
-        [GTK] Use configure instead of autogen.sh for gtk+
-        https://bugs.webkit.org/show_bug.cgi?id=84112
-
-        Rubber-stamped by Martin Robinson.
-
-        * gtk/jhbuild.modules: GTK+'s autogen requires gobject-introspection;
-        we don't want to depend on that for now, so run configure instead - we
-        can, since we are using a tarball
-
-2012-04-16  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Unreviewed, rolling out r114322.
-        http://trac.webkit.org/changeset/114322
-        https://bugs.webkit.org/show_bug.cgi?id=84096
-
-        Didn't make the debug bot happy, so back out
-
-        * gtk/jhbuild.modules:
-
-2012-04-16  Gustavo Noronha Silva  <gns@gnome.org>
-
-        [GTK] Try to fix debug bot by adding gobject-introspection to the build
-        https://bugs.webkit.org/show_bug.cgi?id=84096
-
-        Unreviewed speculative build fix.
-
-        * gtk/jhbuild.modules: Added gobject-introspection, since modules need
-        an up-to-date introspection m4 for running autogen.
-
-2012-04-16  Gustavo Noronha Silva  <gns@gnome.org>
-
-        [GTK] Add pango to jhbuild
-        https://bugs.webkit.org/show_bug.cgi?id=84086
-
-        Unreviewed build fix.
-
-        * gtk/jhbuild.modules: Add pango's latest stable release, 1.30, to our
-        jhbuild environment. It's required for latest stable GTK+ and some
-        systems may lack it.
-
-2012-04-16  Gustavo Noronha Silva  <gns@gnome.org>
-
-        [GTK] fonts jhbuild module needs an empty clean target
-        https://bugs.webkit.org/show_bug.cgi?id=84085
-
-        Rubber-stamped by Martin Robinson.
-
-        * gtk/jhbuild.modules: update to webkitgtk-test-fonts 0.0.2, which
-        includes a phony clean target that should make warnings and errors go
-        away.
-
-2012-04-16  Gustavo Noronha Silva  <gns@gnome.org>
-
-        [GTK] Bump dependency on GTK+ 3.x to match reality
-        https://bugs.webkit.org/show_bug.cgi?id=84060
-
-        Rubber-stamped by Martin Robinson.
-
-        * gtk/jhbuild.modules: Bump GTK+ to 3.4.0, plus glib and gdk-pixbuf
-        to their GNOME 3.4 versions.
-        * gtk/patches/gtk+-3.0.12-gtkprinter.patch: Removed. This patch
-        is applied upstream.
-
-2012-04-16  Vincent Scheib  <scheib@chromium.org>
-
-        Adding Contributors Brian Salomon and Tom Hudson to committers.py.
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-04-16  Jonathan Dong  <jonathan.dong@torchmobile.com.cn>
-
-        [BlackBerry] Add ability for DRT to handle HTTP authentication challenges.
-        https://bugs.webkit.org/show_bug.cgi?id=84031
-
-        Reviewed by Rob Buis.
-
-        Implemented interface function didReceiveAuthenticationChallenge in class
-        DumpRenderTree.
-
-        * DumpRenderTree/blackberry/DumpRenderTree.cpp:
-        (drtCredentialDescription):
-        (BlackBerry::WebKit::DumpRenderTree::didReceiveAuthenticationChallenge):
-        (WebKit):
-        * DumpRenderTree/blackberry/DumpRenderTreeBlackBerry.h:
-        (WebCore):
-        (DumpRenderTree):
-
-2012-04-16  Philippe Normand  <pnormand@igalia.com>
-
-        build-webkit --gtk --no-webkit2 builds WK2
-        https://bugs.webkit.org/show_bug.cgi?id=83977
-
-        Reviewed by Martin Robinson.
-
-        * Scripts/build-webkit: Fixup ./configure option to disable
-        WebKit2 build.
-
-2012-04-16  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] [DRT] Feeding key events with invalid keyName
-        https://bugs.webkit.org/show_bug.cgi?id=83797
-
-        Keep the keyName valid within scope of KeyEventInfo to avoid
-        feeding key events with invalid keyName.
-
-        Reviewed by Philippe Normand.
-
-        * DumpRenderTree/efl/EventSender.cpp:
-        (KeyEventInfo::KeyEventInfo):
-        (KeyEventInfo):
-        (keyPadNameFromJSValue):
-        (keyNameFromJSValue):
-        (createKeyEventInfo):
-        (sendKeyDown):
-
-2012-04-16  Andras Piroska  <pandras@inf.u-szeged.hu>
-
-        [Qt] Replace QtXmlPatterns usage with libxslt dependency
-        <https://bugs.webkit.org/show_bug.cgi?id=76820>
-
-        Reviewed by Simon Hausmann.
-
-        The features.prf file was modified, in order to use libxml and libxslt by default.
-        This modification only work at Qt5.
-
-        * qmake/config.tests/libxml2/libxml2.cpp: Added.
-        (main):
-        * qmake/config.tests/libxml2/libxml2.pro: Added.
-        * qmake/config.tests/libxslt/libxslt.cpp: Added.
-        (main):
-        * qmake/config.tests/libxslt/libxslt.pro: Added.
-        * qmake/mkspecs/features/features.prf:
-        * qmake/sync.profile:
-
-2012-04-16  Seokju Kwon  <seokju.kwon@samsung.com>
-
-        [EFL] EWebLaucher : Fix wrong parameter order in function call for multiple windows.
-        https://bugs.webkit.org/show_bug.cgi?id=83862
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        EWebLauncher creates multiple windows, like multiple tabs when pressing F9 key.
-        It doesn't work properly because of wrong parameter order in function call.
-
-        * EWebLauncher/main.c:
-
-2012-04-16  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, GTK gardening.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner): Skip /webkit/atk/textChangedNotifications.
-
-2012-04-13  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Chromium perf bots should not build
-        https://bugs.webkit.org/show_bug.cgi?id=83641
-
-        Reviewed by Eric Seidel.
-
-        Don't build on perf bots to improve the cycle time.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-04-14  Zalan Bujtas  <zbujtas@gmail.com>
-
-        [WK2] Set WebKitTestRunner's WebProcess cache model to DocumentBrowser.
-        https://bugs.webkit.org/show_bug.cgi?id=81945
-
-        Reviewed by Dan Bernstein.
-
-        WebProcess's default cache model is DocumentViewer. When DocumentViewer model is on,
-        the PageCache's capacity is set to 0. Tests that are enabling 'WebKitUsesPageCachePreferenceKey' expect
-        PageCache to be functional.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-
-2012-04-11  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Remove unused compositeToTexture / compositeOffscreen setting
-        https://bugs.webkit.org/show_bug.cgi?id=83733
-
-        Reviewed by Adrienne Walker.
-
-        Remove compositeOffscreen / compositeToTexture setting. This was an experiment that is no longer needed.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::resetWebSettings):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-        (WebPreferences):
-
-2012-04-13  Ryosuke Niwa  <rniwa@webkit.org>
-
-        webkitpy build fix. Revert the debug change (number of runs was 2 instead of 20),
-        and also rebaseline the test results since we ignore the first run now.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PageLoadingPerfTest.run):
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py:
-        (TestPageLoadingPerfTest.test_run):
-
-2012-04-12  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Enable SVG page loading performance tests
-        https://bugs.webkit.org/show_bug.cgi?id=83861
-
-        Reviewed by Adam Barth.
-
-        Add support for page loading tests. These are tests without any test running harnesses, and we use
-        DriverOutput's test_timeout to measure the loading time.
-
-        Extracted PerfTest.run and PerfTest.run_failed from PerfTestRunner._run_single_test.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest.run):
-        (PerfTest):
-        (PerfTest.run_failed):
-        (PerfTest.parse_output):
-        (PerfTest.output_statistics):
-        (ChromiumStylePerfTest.parse_output):
-        (PageLoadingPerfTest): Added.
-        (PageLoadingPerfTest.__init__):
-        (PageLoadingPerfTest.run): Run the driver 20 times to get the statistics for the loading time.
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py: Added.
-        (MockPrinter):
-        (MockPrinter.__init__):
-        (MockPrinter.write):
-        (MainTest):
-        (MainTest.test_parse_output):
-        (MainTest.test_parse_output_with_failing_line):
-        (TestPageLoadingPerfTest):
-        (TestPageLoadingPerfTest.assertWritten):
-        (TestPageLoadingPerfTest.MockDriver):
-        (TestPageLoadingPerfTest.MockDriver.__init__):
-        (TestPageLoadingPerfTest.MockDriver.run_test):
-        (TestPageLoadingPerfTest.test_run):
-        (TestPageLoadingPerfTest.test_run_with_bad_output):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner):
-        (PerfTestsRunner._collect_tests._is_test_file): Now recognizes svg tests.
-        (PerfTestsRunner._collect_tests):
-        (PerfTestsRunner._run_tests_set):
-        (PerfTestsRunner._run_single_test):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (test_collect_tests_with_page_load_svg):
-        (test_collect_tests_with_page_load_svg.add_file):
-
-2012-04-10  Brady Eidson  <beidson@apple.com>
-
-        <rdar://problem/11176921> and https://bugs.webkit.org/show_bug.cgi?id=83600
-        Need WebKit2 API to notify whether history loads are in the page cache
-
-        Add a test ShouldGoToBackForwardListItem that exercises the new BundlePageLoaderClient
-        callback as well as the new WKBundleBackForwardListItemIsInPageCache() API.
-
-        Reviewed by Darin Adler.
-
-        * TestWebKitAPI/Tests/WebKit2/ShouldGoToBackForwardListItem.cpp: Added.
-        (TestWebKitAPI::didFinishLoadForFrame):
-        (TestWebKitAPI::willGoToBackForwardListItem):
-        (TestWebKitAPI::setPageLoaderClient):
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/ShouldGoToBackForwardListItem_Bundle.cpp: Added.
-        (ShouldGoToBackForwardListItemTest):
-        (TestWebKitAPI::shouldGoToBackForwardListItemCallback):
-        (TestWebKitAPI::ShouldGoToBackForwardListItemTest::ShouldGoToBackForwardListItemTest):
-        (TestWebKitAPI::ShouldGoToBackForwardListItemTest::didCreatePage):
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage): Update for the new client.
-
-2012-04-13  Dominik Röttsches  <dominik.rottsches@linux.intel.com>
-
-        Group EFL bots into a category on the buildbot master
-        https://bugs.webkit.org/show_bug.cgi?id=82712
-
-        Reviewed by Adam Roben.
-
-        Creating a new category definition on the buildbot frontend.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (loadBuilderConfig): Determine category for EFL bots
-        * BuildSlaveSupport/build.webkit.org-config/templates/root.html: Add links to EFL category
-
-2012-04-13  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r113714.
-        http://trac.webkit.org/changeset/113714
-        https://bugs.webkit.org/show_bug.cgi?id=83887
-
-        It is behaving strange on the bots and needs more
-        investigation. (Requested by jeez_ on #webkit).
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-
-2012-04-11  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        webkit-tools-completion: Support bugzilla email completion for webkit-patch upload --cc
-        https://bugs.webkit.org/show_bug.cgi?id=83690
-
-        Reviewed by Tor Arne Vestbø.
-
-        Typing part of an email and pressing <TAB> will bash-complete it using the list in
-        Tools/Scripts/webkitpy/common/config/committers.py
-
-        * Scripts/webkit-tools-completion.sh:
-
-2012-04-13  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [EFL] Add API for color chooser
-        https://bugs.webkit.org/show_bug.cgi?id=83692
-
-        Enables INPUT_TYPE_COLOR by default on the EFL port.
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * Scripts/build-webkit:
-
-2012-04-12  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Extract PerfTest class from PerfTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=83847
-
-        Reviewed by Hajime Morita.
-
-        Extracted PerfTest and ChromiumStylePerfTest from PerfTestRunner. This class abstracts a test
-        that was previously represented by a tuple.
-
-        Also moved the logic to determine whether a given test is chromium style or not from run() to
-        _collect_tests(). And moved the output parsing algorithms for parser style and chromium style
-        tests from PerfTestRunner to PerfTest and ChromiumStylePerfTest respectively so that we may
-        add new types of tests more easily.
-
-        * Scripts/webkitpy/performance_tests/perftest.py: Added.
-        (PerfTest):
-        (PerfTest.__init__):
-        (PerfTest.test_name):
-        (PerfTest.dirname):
-        (PerfTest.path_or_url):
-        (PerfTest._should_ignore_line_in_parser_test_result):
-        (PerfTest.parse_output):
-        (ChromiumStylePerfTest):
-        (ChromiumStylePerfTest.__init__):
-        (ChromiumStylePerfTest.parse_output):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._collect_tests):
-        (PerfTestsRunner.run):
-        (PerfTestsRunner._run_tests_set):
-        (PerfTestsRunner._run_single_test):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (run_test):
-        (_tests_for_runner):
-        (test_run_test_set_with_json_output):
-        (test_run_test_set_with_json_source):
-        (test_run_test_set_with_multiple_repositories):
-        (_collect_tests_and_sort_test_name):
-        (test_collect_tests):
-        (test_collect_tests_with_skipped_list):
-
-2012-04-12  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt] Fix WebKit1 build with V8
-        https://bugs.webkit.org/show_bug.cgi?id=83322
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/default_pre.prf:
-        * qmake/mkspecs/features/features.prf:
-
-2012-04-12  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy fails on metered_stream_unittest for non-US West Coast Time Zones
-        https://bugs.webkit.org/show_bug.cgi?id=83583
-
-        Reviewed by Philippe Normand
-
-        Updated the unit test to ignore the hours and minutes of the
-        localtime for time(0), since we can't easily guarantee which
-        timezone we're in or what timezone rules were in effect on
-        1/1/1970; this should be mostly fine since we can trust that
-        time.localtime() will work, although there is the possibility
-        that we'll screw up the time formatting of which field is the
-        hours and which is the minutes.
-
-        * Scripts/webkitpy/layout_tests/views/metered_stream_unittest.py:
-        (VerboseTest):
-        (VerboseTest.test_basic):
-        (VerboseTest.test_log_after_update):
-
-2012-04-12  Dominik Rottsches  <dominik.rottsches@linux.intel.com>
-
-        Add an EFL Debug Buildbot to the master configuration
-        https://bugs.webkit.org/show_bug.cgi?id=82711
-
-        Forgot to add EFL Linux Debug to scheduler.
-
-        Reviewed by Philippe Normand.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-04-12  Dominik Röttsches  <dominik.rottsches@linux.intel.com>
-
-        Add an EFL Debug Buildbot to the master configuration
-        https://bugs.webkit.org/show_bug.cgi?id=82711
-
-        Reviewed by Philippe Normand.
-
-        Hooking up our EFL Linux 64bit debug configuration buildbot to the buildbot master.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: EFL Debug builder added
-
-2012-04-12  George Staikos  <staikos@webkit.org>
-
-        Enable the fullscreen API for BlackBerry.
-        https://bugs.webkit.org/show_bug.cgi?id=83757
-
-        Reviewed by Antonio Gomes.
-
-        * Scripts/build-webkit:
-
-2012-04-12  Simon Pena  <spena@igalia.com>
-
-        [GTK] Test runner crashes without recent versions of pulseaudio-utils
-        https://bugs.webkit.org/show_bug.cgi?id=83774
-
-        Reviewed by Philippe Normand.
-
-        Besides checking that pactl is available, check also that its output
-        is the expected one, and handle gracefully when it isn't, when
-        trying to unload pulseaudio modules.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort._unload_pulseaudio_module):
-        (GtkPort._restore_pulseaudio_module):
-
-2012-03-05  Pierre Rossi  <pierre.rossi@gmail.com>
-
-        [Qt] Use QRawFont when building with Qt 5
-        https://bugs.webkit.org/show_bug.cgi?id=78001
-
-        Flip the QRawFont switch for Qt 5.
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-04-11  Vivek Galatage  <vivekgalatage@gmail.com>
-
-        Web Inspector: Disabling Inspector causes build failure on Windows
-        https://bugs.webkit.org/show_bug.cgi?id=83557
-
-        Reviewed by Pavel Feldman.
-
-        The calls to inspector APIs are not put under ENABLE(INSPECTOR) guard.
-        This change brings all such API calls under the guard.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (LayoutTestController):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::invoke):
-
-2012-04-11  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix regression introduced in r113927.
-
-        Unreviewed, build fix.
-
-        I failed to rename skipped_tests() to skipped_layout_tests()
-        everywhere it needed to be renamed. The unit tests didn't catch
-        this because the TestPort was one of the places that didn't get
-        renamed :(.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.parse_expectations):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort.skipped_layout_tests):
-        * Scripts/webkitpy/tool/commands/queries.py:
-        (PrintExpectations._model):
-
-2012-04-11  Dirk Pranke  <dpranke@chromium.org>
-
-        new-run-webkit-tests: 'webkit-patch skipped-ports' introduced bad layering
-        https://bugs.webkit.org/show_bug.cgi?id=47528
-
-        Reviewed by Adam Barth.
-
-        The skipped-ports command has been replaced by 'webkit-patch
-        print-expectations', which offers the equivalent functionality
-        via 'webkit-patch print-expectations --platform \* -t skip'
-        (and other features, of course).
-        
-        This also allows me to fix a nasty layering violation where the
-        chromium port had to know about the TestExpectations objects in
-        order to implement the command properly.
-
-        Lastly, this allows me to rename skipped_tests() to
-        skipped_layout_tests() to more consistent with
-        skipped_perf_tests().
-        
-        This patch removes skips_layout_test() from the Port interface,
-        because that can't be implemented without the port knowing about
-        Expectations objects (and skipped-ports was the only thing using it).
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.skipped_layout_tests):
-        (Port.skipped_perf_tests):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_default_configuration_notfound):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.test_expectations_overrides):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumPortTest.test_path_to_image_diff):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort.skipped_layout_tests):
-        * Scripts/webkitpy/tool/commands/queries.py:
-        (execute):
-        * Scripts/webkitpy/tool/commands/queries_unittest.py:
-        (QueryCommandsTest.test_tree_status):
-
-2012-04-11  Mark Rowe  <mrowe@apple.com>
-
-        Remove a fprintf from LayoutTestController.
-
-        This fprintf is causing 100+MB of data to be written to stderr during a single run of the tests.
-        It was added for no apparent reason by Ryosuke in r113651.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::redirectionDestinationForURL):
-
-2012-04-11  Nico Weber  <thakis@chromium.org>
-
-        [mac] Suppress deprecation warning for GlobalToLocal in the carbon parts of the test plugin.
-        https://bugs.webkit.org/show_bug.cgi?id=83709
-
-        Reviewed by Anders Carlsson.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (handleEventCarbon):
-
-2012-04-11  Rafael Brandao  <rafael.lobo@openbossa.org>
-
-        Adding myself to committers.py
-        https://bugs.webkit.org/show_bug.cgi?id=83711
-
-        Unreviewed update to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-04-11  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] LayoutTestController needs implementation of pageProperty
-        https://bugs.webkit.org/show_bug.cgi?id=82449
-
-        Add missing implementation pageProperty to EFL's LayoutTestController
-        in order to unskip printing/page-rule-selection.html
-
-        Reviewed by Antonio Gomes.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::pageProperty):
-
-2012-04-11  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r113836.
-        http://trac.webkit.org/changeset/113836
-        https://bugs.webkit.org/show_bug.cgi?id=83705
-
-        Broke all the WebKit2 inspector tests (Requested by andersca
-        on #webkit).
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::showWebInspector):
-        (WTR::LayoutTestController::closeWebInspector):
-        (WTR::LayoutTestController::evaluateInWebInspector):
-        (WTR::LayoutTestController::setJavaScriptProfilingEnabled):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (LayoutTestController):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::invoke):
-
-2012-04-11  Vivek Galatage  <vivekgalatage@gmail.com>
-
-        Web Inspector: Disabling Inspector causes build failure on Windows
-        https://bugs.webkit.org/show_bug.cgi?id=83557
-
-        Reviewed by Pavel Feldman.
-
-        The calls to inspector APIs are not put under ENABLE(INSPECTOR) guard.
-        This change brings all such API calls under the guard.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (LayoutTestController):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::invoke):
-
-2012-04-11  No'am Rosenthal  <noam.rosenthal@nokia.com>
-
-        [Qt][WK2] Manage graphics buffers in the web process
-        https://bugs.webkit.org/show_bug.cgi?id=78675
- 
-        Make graphics surface available only for Qt 5, attempting to fix
-        the Qt-mac build.
-
-        Unreviewed build fix.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-04-11  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, GTK NRWT follow-up fix after r113849.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort._unload_pulseaudio_module): Exit early if pactl is not found.
-
-2012-04-11  Simon Pena  <spena@igalia.com>
-
-        [GTK] media/event-attributes.html fails
-        https://bugs.webkit.org/show_bug.cgi?id=71662
-
-        Reviewed by Philippe Normand.
-
-        PulseAudio's module "module-stream-restore" allows saving the volume
-        of a stream, restoring it the next time it runs.
-        This affects the tests, since DumpRenderTree's volume settings are
-        saved between test runs, and tests relying on specific volume values
-        would miss some volumeChange events (or get additional ones).
-
-        This patch hooks on the existing GtkPort setup_test_run method and
-        creates a new clean_up_test_run method, so PulseAudio's module is
-        unloaded (if found) before running the tests, and restored (if it
-        was there previously) after they finished, ensuring the tests run in
-        the right environment.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._clean_up_run): Invoke the port implementation of
-        clean_up_test_run.
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.clean_up_test_run): Add an empty implementation of
-        clean_up_test_run.
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort._unload_pulseaudio_module): Unloads the offending
-        pulseaudio module, if found.
-        (GtkPort):
-        (GtkPort._restore_pulseaudio_module): Restores the offending
-        pulseaudio module, if it was there previously.
-        (GtkPort.setup_test_run): Calls _unload_pulseaudio_module.
-        (GtkPort.clean_up_test_run): Calls _restore_pulseaudio_module.
-
-2012-04-11  Andras Becsi  <andras.becsi@nokia.com>
-
-        Fix the build with gcc 4.7.0
-        https://bugs.webkit.org/show_bug.cgi?id=83584
-
-        Reviewed by Alexey Proskuryakov.
-
-        * qmake/mkspecs/features/unix/default_post.prf:
-        The -fuse-ld=gold option is not supported with upstream gcc.
-
-2012-04-11  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Refactor PerfTestRunner to include file extensions in test names
-        https://bugs.webkit.org/show_bug.cgi?id=83677
-
-        Reviewed by Hajime Morita.
-
-        Move the logic that extracts the test name from _process_parser_test_result to _collect_tests.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._collect_tests):
-        (PerfTestsRunner._run_tests_set):
-        (PerfTestsRunner._process_parser_test_result): Still replace "/" by ": " to keep the output format.
-        We can make the said behavior change by simply removing "test_name = re.sub(r'\.\w+$', '', test_name)" here.
-        (PerfTestsRunner._run_single_test):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (run_test):
-        (_tests_for_runner):
-        (test_run_test_set):
-        (test_run_test_set_kills_drt_per_run):
-        (test_run_test_pause_before_testing):
-        (test_run_test_set_for_parser_tests):
-        (test_collect_tests):
-        (test_collect_tests_with_skipped_list):
-
-2012-04-11  Vivek Galatage  <vivekgalatage@gmail.com>
-
-        Web Inspector: Disabling Inspector causes build failure on Windows
-        https://bugs.webkit.org/show_bug.cgi?id=83557
-
-        Reviewed by Pavel Feldman.
-
-        The calls to inspector APIs are not put under ENABLE(INSPECTOR) guard.
-        This change brings all such API calls under the guard.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (LayoutTestController):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::invoke):
-
-2012-04-10  Kent Tamura  <tkent@chromium.org>
-
-        Unreviewed. Using tkent+wkapi@ for ChromiumPublicApi notifications.
-
-        * Scripts/webkitpy/common/config/watchlist:
-        * Scripts/webkitpy/common/config/committers.py: Add tkent+wkapi@ to pass the style checker.
-
-2012-04-10  Dirk Pranke  <dpranke@chromium.org>
-
-        If NRWT gets killed halfway through a run, it incorrectly reports tests that weren't run as passes
-        https://bugs.webkit.org/show_bug.cgi?id=82799
-
-        Reviewed by Ojan Vafai.
-
-        The tests we were skipping in _mark_interrupted_tests_as_skipped
-        had incorrectly-constructed TestResults, and so they were not
-        being treated as failures. The JSON generator doesn't record
-        tests that are passed or skiped in incremental_results, so you
-        couldn't tell these tests were being skipped at all.
-
-        This change changes _mark_interrupted_tests_as_skipped() to
-        treat the skipped tests as failures; this is arguably still
-        incorrect but is minimally invasive for now. We probably need to
-        revisit how we are uploading information about tests that are
-        skipped and passed altogether in a separate change.
-
-        This change also cleans up a couple of other nits that were
-        unnecessary or broken in this same code path.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._mark_interrupted_tests_as_skipped):
-        (Manager._upload_json_files): Deletes the check for
-        chromium-mac-leopard (as it is no longer necessary).
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        (JSONLayoutResultsGenerator.__init__): Here we were
-        recalculating the failure type unnecessarily.
-        * Scripts/webkitpy/layout_tests/models/test_failures.py:
-        (determine_result_type):
-        (FailureEarlyExit): Adds a new failure type so we can tell what
-        happened.
-        (FailureEarlyExit.message):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_exit_after_n_failures_upload): Add more checks to
-        ensure that we are recording the SKIP correctly; this is less
-        than ideal, because we can't actually test the contents of
-        incremental_results.json. We should fix that at some point.
-
-2012-04-10  Dirk Pranke  <dpranke@chromium.org>
-
-        make chromium layout tests not depend on platform/win, platform/mac-leopard, or platform/mac-snowleopard
-        https://bugs.webkit.org/show_bug.cgi?id=83401
-
-        Reviewed by Adam Barth.
-
-        Last patch in the series - no longer look in mac-leopard,
-        mac-snowleopard, or mac-lion.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        (ChromiumMacPort):
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-
-2012-04-10  Dirk Pranke  <dpranke@chromium.org>
-
-        webkit-patch: add a print-expectations command
-        https://bugs.webkit.org/show_bug.cgi?id=83347
-
-        Reviewed by Adam Barth.
-
-        This command will print the expected results for a given set of
-        tests on a given set of ports matching a given set of keywords.
-
-        Example output (printing all the tests not expected to pass, and their
-        expected results, on a Mac):
-
-        $ webkit-patch print-expectations -x pass fast/html
-        // For mac-snowleopard
-        fast/html/details-open4.html = TEXT
-        fast/html/details-open2.html = TEXT
-        fast/html/details-no-summary4.html = TEXT
-        fast/html/details-open-javascript.html = TEXT
-        $
-
-        You can also print full test-expectatons.txt lines using --full and a
-        CSV-style report (which can be useful for post-processing) using --csv.
-
-        It will replace the 'skipped-files' command (which will be
-        removed in a subsequent patch) and is a more general (and
-        cleaner and properly layered) solution.
-
-        Also add an update() command to MockOptions() to make overriding keywords easier.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectationSerializer.to_string):
-        (TestExpectationSerializer):
-        (TestExpectationSerializer.to_csv):
-        (TestExpectationSerializer._format_result):
-        (TestExpectationLine.create_passing_expectation):
-        (TestExpectationsModel.get_test_set_for_keyword):
-        (TestExpectationsModel.has_keyword):
-        (TestExpectations.model):
-        * Scripts/webkitpy/tool/commands/queries.py:
-        (execute):
-        (PrintExpectations):
-        (PrintExpectations.__init__):
-        (PrintExpectations.execute):
-        (PrintExpectations._filter_tests):
-        (PrintExpectations._format_lines):
-        (PrintExpectations._model):
-        * Scripts/webkitpy/tool/commands/queries_unittest.py:
-        (TestPrintExpectations): Added.
-        * Scripts/webkitpy/tool/mocktool.py:
-        (MockOptions):
-        (MockOptions.__init__):
-        (MockOptions.update): Added.
-
-2012-04-10  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: refactor handling of --platform and related options
-        https://bugs.webkit.org/show_bug.cgi?id=83525
-
-        Reviewed by Adam Barth.
-
-        This change moves to centralize handling of --platform, --debug,
-        --gtk, and other similar flags into a central place next to the
-        code that actually uses those flags in PortFactory to get the
-        right Port object.
-
-        * Scripts/webkitpy/layout_tests/port/__init__.py:
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        (port_options):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-        * Scripts/webkitpy/tool/commands/queries.py:
-        (PrintBaselines.__init__):
-
-2012-04-10  Ojan Vafai  <ojan@chromium.org>
-
-        Add a chromeless view to the individual tests view
-        https://bugs.webkit.org/show_bug.cgi?id=83541
-
-        Reviewed by Daniel Bates.
-
-        This is the view suitable to inlining in other contexts (e.g. garden-o-matic).
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-        (testHtmlForIndividualTestOnAllBuilders):
-        (testHtmlForIndividualTestOnAllBuildersWithChromeNonexistant):
-        (testHtmlForIndividualTestOnAllBuildersWithChrome):
-        (testHtmlForIndividualTestOnAllBuildersWithChromeWebkitMaster):
-        (testHtmlForIndividualTests):
-        (htmlEscape):
-        (runTests):
-
-2012-04-10  Dirk Pranke  <dpranke@chromium.org>
-
-        remove 'win' from chromium-win, chromium-linux fallback paths
-        https://bugs.webkit.org/show_bug.cgi?id=83613
-
-        Reviewed by Ojan Vafai.
-
-        The chromium ports no longer need to look at the apple 'win'
-        directory for baseline results.
-
-        Also remove the old '-gpu-' entries from the flakiness dashboard
-        map since I'm touching lines nearby.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        (ChromiumLinuxPort):
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        (ChromiumWinPort):
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-
-2012-04-10  No'am Rosenthal  <noam.rosenthal@nokia.com>
-
-        [Qt][WK2] Manage graphics buffers in the web process
-        https://bugs.webkit.org/show_bug.cgi?id=78675
-
-        Enable graphics surfaces on Mac for Qt.
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-04-10  Patrick Gansterer  <paroga@webkit.org>
-
-        [CMake] Enable USE_FOLDERS property
-        https://bugs.webkit.org/show_bug.cgi?id=83571
-
-        Reviewed by Daniel Bates.
-
-        Setting the FOLDER property on targets gives more structure
-        to the generated Visual Studio solutions.
-        This does not affect other CMake generators.
-
-        * DumpRenderTree/efl/CMakeLists.txt:
-        * EWebLauncher/CMakeLists.txt:
-        * WinCELauncher/CMakeLists.txt:
-
-2012-04-10  David Dorwin  <ddorwin@chromium.org>
-
-        Add Encrypted Media Extensions methods to HTMLMediaElement
-        https://bugs.webkit.org/show_bug.cgi?id=82971
-
-        Reviewed by Adam Barth.
-
-        The extensions are behind the ENABLE(ENCRYPTED_MEDIA) feature define.
-        Implementation is based on v0.1 of the draft proposal at
-        http://dvcs.w3.org/hg/html-media/raw-file/tip/encrypted-media/encrypted-media.html.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-
-2012-04-10  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][DRT] Catch the "title,changed" signal
-        https://bugs.webkit.org/show_bug.cgi?id=82174
-
-        Reviewed by Gustavo Noronha Silva.
-
-        EFL's DumpRenderTree now catches the "title,changed" signal, and
-        prints out the needed information.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::onTitleChanged):
-
-2012-04-10  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] DRT should support LayoutTestController's willSendRequestReturnsNull()
-        https://bugs.webkit.org/show_bug.cgi?id=82443
-
-        Reviewed by Philippe Normand.
-
-        EFL's DRT needs to support LayoutTestController's
-        willSendRequestReturnsNull() and return NULL when expected. This
-        allows for several tests to be removed from the skip list.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::onWillSendRequest):
-
-2012-04-10  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] LayoutTestController needs implementation of addUserStyleSheet
-        https://bugs.webkit.org/show_bug.cgi?id=82446
-
-        Adding missing implementation addUserStyleSheet to EFL's LayoutTestController 
-        so that we can unskip related tests from the skip list. 
-
-        Reviewed by Antonio Gomes.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::addUserStyleSheet): Implemented.
-
-2012-04-10  Philip Rogers  <pdr@google.com>
-
-        Adding myself to committers.py!
-
-        Unreviewed update to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-04-10  Dinu Jacob  <dinu.jacob@nokia.com>
-
-        [Qt][WK2] Title in MiniBrowser is not updated for a page with no title
-        https://bugs.webkit.org/show_bug.cgi?id=82483
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Set window title to default if there is no page title.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::onTitleChanged):
-        * MiniBrowser/qt/BrowserWindow.h:
-        (BrowserWindow):
-
-2012-03-23  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        [Qt][WK2] Implement PageClient::isViewWindowActive()
-        https://bugs.webkit.org/show_bug.cgi?id=81143
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Fix the WrapperWindow from our PlatformWebView
-        so it correctly creates the platform related
-        stuff for QWindow, which is not created unless
-        QWindow::setVisible() or QWindow::show() are called.
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-
-2012-04-10  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt][WK2] TestNetscapePlugin is broken
-        https://bugs.webkit.org/show_bug.cgi?id=83024
-
-        Reviewed by Csaba Osztrogonác.
-
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        Fix X11 availability check. embedded is always true with QPA.
-        * Tools.pro:
-        Build the test plugin if plugins are enabled for WebKit2.
-        * qmake/mkspecs/features/features.prf:
-        * qmake/mkspecs/features/functions.prf:
-        Added a convenience function to determine availability
-        of X11 libraries.
-
-2012-04-10  Patrick Gansterer  <paroga@webkit.org>
-
-        [WIN] Fix build without precompiled header.
-
-        * DumpRenderTree/cg/ImageDiffCG.cpp: Define max as max as we do for min.
-
-2012-04-10  Arko Saha  <arko@motorola.com>
-
-        Unreviewed: adding myself to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-04-09  Kaustubh Atrawalkar  <kaustubh@motorola.com>
-
-        Unreviewed: adding myself to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-04-09  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r113656.
-        http://trac.webkit.org/changeset/113656
-        https://bugs.webkit.org/show_bug.cgi?id=83542
-
-        test is broken on chromium-win (Requested by simonjam on
-        #webkit).
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::dispatchIntent):
-
-2012-04-09  Takashi Toyoshima  <toyoshim@chromium.org>
-
-        Update pywebsocket to 0.7.4.
-        https://bugs.webkit.org/show_bug.cgi?id=83461
-
-        Reviewed by Kent Tamura.
-
-        This version supports TLS by using ssl in addition to pyOpenSSL.
-        Other functional difrerences from 0.7.2 are:
-         - strict Sec-WebSocket-Key validation conforming RFC 4648
-         - compression ratio logging in debug
-
-        * Scripts/webkitpy/thirdparty/__init__.py:
-        (AutoinstallImportHook._install_pywebsocket):
-
-2012-04-09  Dirk Pranke  <dpranke@chromium.org>
-
-        add a webkit-patch print-baselines command
-        https://bugs.webkit.org/show_bug.cgi?id=83348
-
-        Reviewed by Adam Barth.
-
-        This adds a simple 'print-baselines' command to webkit-patch
-        that can be used in one of two forms: to print where the
-        baselines for a given test (or set of tests) on a single port
-        will be found, or to generate a report for multiple ports.
-
-        Example of the former:
-
-        $ webkit-patch print-baselines fast/html/keygen.html
-        // For mac-snowleopard
-        platform/mac/fast/html/keygen-expected.txt
-        platform/mac/fast/html/keygen-expected.png
-        $
-
-        The latter is most useful for finding out which fallback dirs are
-        used by which ports for which tests, for example,
-        'chromium-mac-leopard' uses 100 results from 'platform/mac/leopard'.
-        No example output is given because the reports are pretty wordy :).
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.baseline_extensions): Added.
-        (Port.expected_baseline_dict): Added.
-        * Scripts/webkitpy/tool/commands/queries.py:
-        (PrintBaselines):
-        (PrintBaselines.__init__):
-        (PrintBaselines.execute):
-        (PrintBaselines._print_baselines):
-        (PrintBaselines._platform_for_path):
-
-2012-04-09  Florin Malita  <fmalita@chromium.org>
-
-        Unreviewed: adding myself to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-04-09  Ming Xie  <mxie@rim.com>
-
-        [BlackBerry] Allow simulator to use GLES2 acceleration
-        https://bugs.webkit.org/show_bug.cgi?id=81672
-
-        Reviewed by Rob Buis.
-
-        * Scripts/webkitdirs.pm:
-        (blackberryCMakeArguments):
-
-2012-04-09  Dana Jansens  <danakj@chromium.org>
-
-        Mark myself as a committer
-        https://bugs.webkit.org/show_bug.cgi?id=83510
-
-        Reviewed by Adrienne Walker.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-04-09  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt is failing to upload test results on the chromium-mac-leopard bots
-        https://bugs.webkit.org/show_bug.cgi?id=83230
-
-        Unreviewed, build fix.
-
-        It looks like the change in r113399 to use the per-request
-        timeout variable didn't actually work, so I am removing the
-        timeout code altogether and counting on the idea that upload
-        just isn't likely to take that long and the timeouts and
-        retransmits are largely unused and largely unnecessary. We'll
-        see if this breaks anywhere else.
-
-        * Scripts/webkitpy/common/net/file_uploader.py:
-        (FileUploader.__init__):
-        (FileUploader._upload_data.callback):
-        (FileUploader):
-
-2012-04-09  Rob Buis  <rbuis@rim.com>
-
-        [BlackBerry] Cleanup LayoutTestControllerBlackBerry.cpp
-        https://bugs.webkit.org/show_bug.cgi?id=83469
-
-        Reviewed by Dirk Schulze.
-
-        Remove WTF:: prefixes and fix a warning with the length variable.
-
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
-        (jsStringRefToWebCoreString):
-        (LayoutTestController::execCommand):
-        (LayoutTestController::isCommandEnabled):
-        (LayoutTestController::setUserStyleSheetLocation):
-        (LayoutTestController::counterValueForElementById):
-        (LayoutTestController::overridePreference):
-        (LayoutTestController::setMockGeolocationError):
-        (LayoutTestController::findString):
-
-2012-04-09  Patrick Gansterer  <paroga@webkit.org>
-
-        Build fix for WinCE after r113570.
-
-        * Scripts/build-webkit: Do not use FastMalloc for WinCE.
-
-2012-04-09  Eric Carlson  <eric.carlson@apple.com>
-
-        Subscribe eric.carlson@apple.com to Media-related changes
-        https://bugs.webkit.org/show_bug.cgi?id=83421
-
-        Reviewed by Dan Bernstein.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-04-09  Martin Robinson  <mrobinson@igalia.com>
-
-        check-webkit-style should ignore NULL usage in gtk_style_context_get_style
-        https://bugs.webkit.org/show_bug.cgi?id=83412
-
-        Reviewed by David Levin.
-
-        Accept NULL as an argument for gtk_style_context_get_style, because it's
-        used as a sentinel in a variable argument list. 
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (check_for_null): Add an exception.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (WebKitStyleTest.test_null_false_zero): Add a test for the exception.
-
-2012-04-09  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: use the filesystem object properly in fileuploader
-        https://bugs.webkit.org/show_bug.cgi?id=83326
-
-        Reviewed by Adam Barth.
-
-        We should be using the filesystem object rather than the codecs
-        object.
-
-        * Scripts/webkitpy/common/net/file_uploader.py:
-        (FileUploader.upload_as_multipart_form_data):
-
-2012-04-09  Eric Seidel  <eric@webkit.org>
-
-        Enable webkit_unit_tests for commit queue and EWS while tracking failures
-        https://bugs.webkit.org/show_bug.cgi?id=83329
-
-        Unreviewed.  Add a missing import to unbreak all the Chromium EWS/CQ bots. :)
-
-        line 62, in _create_unit_test_results
-         return UnitTestResults.results_from_string(results_xml)
-         NameError: global name 'UnitTestResults' is not defined
-
-        * Scripts/webkitpy/tool/bot/layouttestresultsreader.py:
-        * Scripts/webkitpy/tool/bot/layouttestresultsreader_unittest.py:
-        (LayoutTestResultsReaderTest.test_create_unit_test_results):
-
-2012-04-08  Adam Barth  <abarth@webkit.org>
-
-        The port object is missing unit_tests_results_path
-        https://bugs.webkit.org/show_bug.cgi?id=83448
-
-        Unreviewed.
-
-        This is causing the cr-linux-ews to throw an exception.
-
-        * Scripts/webkitpy/common/config/ports.py:
-        (DeprecatedPort.unit_tests_results_path):
-
-2012-04-07  Patrick Gansterer  <paroga@webkit.org>
-
-        [CMake] Cleanup WTF include directories
-        https://bugs.webkit.org/show_bug.cgi?id=82716
-
-        Reviewed by Eric Seidel.
-
-        * DumpRenderTree/efl/CMakeLists.txt:
-        * WinCELauncher/CMakeLists.txt:
-
-2012-04-07  Rob Buis  <rbuis@rim.com>
-
-        [BlackBerry] Add Battery Status API support
-        https://bugs.webkit.org/show_bug.cgi?id=82615
-
-        Reviewed by George Staikos.
-
-        Enable BATTERY_STATUS.
-
-        * Scripts/build-webkit:
-
-2012-04-06  Ami Fischman  <fischman@chromium.org>
-
-        Subscribe feature-media-reviews@c.o to Media-related changes.
-        https://bugs.webkit.org/show_bug.cgi?id=83397
-
-        Reviewed by David Levin.
-
-        * Scripts/webkitpy/common/config/committers.py:
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-04-06  Adrienne Walker  <enne@google.com>
-
-        [chromium] Add virtual test suite for threaded compositing
-        https://bugs.webkit.org/show_bug.cgi?id=82263
-
-        Reviewed by James Robinson.
-
-        Add compositing/visibility as a virtual test suites to test threaded
-        compositing with. This is a reasonable smoke test of 9 tests, none of
-        which have any expectations in the non-threaded case.
-
-        To fix many of the remaining tests in this virtual test suite, there
-        will need to be some serious refactoring to merge the conflict between
-        the way CCScheduler wants to draw frames and the way DRT also wants to
-        control things. So, in the short term, enable a few simple tests that
-        are known to be passing.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.virtual_test_suites):
-
-2012-04-06  Enrica Casucci  <enrica@apple.com>
-
-        Provide Obj-C private API to simplify markup.
-        https://bugs.webkit.org/show_bug.cgi?id=83334
-        <rdar://problem/11033861>
-
-        Reviewed by Sam Weinig.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/mac/SimplifyMarkup.mm: Added.
-        (-[SimplifyMarkupTest webView:didFinishLoadForFrame:]):
-        * TestWebKitAPI/Tests/mac/verboseMarkup.html: Added.
-
-2012-04-06  Dirk Pranke  <dpranke@chromium.org>
-
-        new-run-webkit-tests: fix bugs in 'mock' drt implementation
-        https://bugs.webkit.org/show_bug.cgi?id=83341
-
-        Reviewed by Eric Seidel.
-
-        The current implementation crashed in some circumstances for
-        reference tests and files that were missing expected results.
-        This patch fixes those cases and adds more unit tests; it is a
-        precursor to adding unit tests each port that actually uses this
-        code, in order to get better coverage of the port/*
-        implementations.
-
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py:
-        (parse_options):
-        (MockDRT.input_from_line):
-        (MockDRT.output_for_test):
-        (MockDRT.run_one_test):
-        (MockChromiumDRT.input_from_line):
-        (MockChromiumDRT.output_for_test):
-        (MockChromiumDRT.run_one_test):
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        (MockDRTTest.make_input_output):
-        (MockDRTTest.expected_output):
-        (MockDRTTest):
-        (MockDRTTest.assertTest):
-        (MockDRTTest.test_missing_image):
-        (MockDRTTest.test_missing_text):
-        (MockDRTTest.test_reftest_match):
-        (MockDRTTest.test_reftest_mismatch):
-        (MockChromiumDRTTest.expected_output):
-
-2012-04-06  James Robinson  <jamesr@chromium.org>
-
-        Enable webkit_unit_tests for commit queue and EWS while tracking failures
-        https://bugs.webkit.org/show_bug.cgi?id=83329
-
-        Reviewed by Adam Barth.
-
-        This adds a step to parse XML output from webkit_unit_tests and consider regressions in the PatchAnalysisTask so
-        the commit queue and EWS can reject patches that cause regressions.
-
-        * Scripts/webkitpy/common/config/ports.py:
-        (ChromiumPort.run_webkit_unit_tests_command):
-        * Scripts/webkitpy/common/config/ports_mock.py:
-        (MockPort.unit_tests_results_path):
-        * Scripts/webkitpy/common/net/layouttestresults.py:
-        (LayoutTestResults.__init__):
-        (LayoutTestResults.failing_tests):
-        (LayoutTestResults):
-        (LayoutTestResults.add_unit_test_failures):
-        * Scripts/webkitpy/common/net/unittestresults.py: Copied from Tools/Scripts/webkitpy/tool/steps/runtests_unittest.py.
-        (UnitTestResults):
-        (UnitTestResults.results_from_string):
-        * Scripts/webkitpy/common/net/unittestresults_unittest.py: Added.
-        (UnitTestResultsTest):
-        (UnitTestResultsTest.test_nostring):
-        (UnitTestResultsTest.test_emptystring):
-        (UnitTestResultsTest.test_nofailures):
-        (test_onefailure):
-        (test_multiple_failures_per_test):
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-        (MockCommitQueue.test_results):
-        (MockCommitQueue.archive_last_test_results):
-        (FailingTestCommitQueue.test_results):
-        (test_flaky_test_failure):
-        (test_failed_archive):
-        * Scripts/webkitpy/tool/bot/layouttestresultsreader.py:
-        (LayoutTestResultsReader._create_unit_test_results):
-        (LayoutTestResultsReader.results):
-        * Scripts/webkitpy/tool/bot/layouttestresultsreader_unittest.py:
-        (LayoutTestResultsReaderTest.test_missing_layout_test_results):
-        * Scripts/webkitpy/tool/bot/patchanalysistask.py:
-        (PatchAnalysisTaskDelegate.test_results):
-        (PatchAnalysisTaskDelegate.archive_last_test_results):
-        (PatchAnalysisTask._test):
-        (PatchAnalysisTask._build_and_test_without_patch):
-        (PatchAnalysisTask._test_patch):
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (AbstractEarlyWarningSystem.test_results):
-        (AbstractEarlyWarningSystem.archive_last_test_results):
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-        (EarlyWarningSytemTest._test_testing_ews):
-        * Scripts/webkitpy/tool/commands/queues.py:
-        (CommitQueue.test_results):
-        (CommitQueue.archive_last_test_results):
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        (CommitQueueTest.test_commit_queue):
-        (test_rollout):
-        (test_manual_reject_during_processing):
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        (RunTests.run):
-        * Scripts/webkitpy/tool/steps/runtests_unittest.py:
-        (RunTestsTest.test_webkit_run_unit_tests):
-
-2012-04-06  Aaron Colwell  <acolwell@chromium.org>
-
-        Enable MediaSource feature for DumpRenderTree so
-        MediaSource LayoutTests will pass for Chromium.
-        https://bugs.webkit.org/show_bug.cgi?id=83053
-
-        Reviewed by Dimitri Glazkov.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-
-2012-04-06  George Staikos  <staikos@webkit.org>
-
-        Turn on vibration support for BlackBerry.
-
-        Reviewed by Rob Buis.
-
-        * Scripts/build-webkit:
-
-2012-04-06  Dan Bernstein  <mitz@apple.com>
-
-        <rdar://problem/10912476> HiDPI: Have canvas use a hidpi backing store, but downsample upon access
-
-        Reviewed by Sam Weinig.
-
-        * Scripts/build-webkit: Added high-dpi-canvas option to control ENABLE_HIGH_DPI_CANVAS.
-
-2012-04-05  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt is failing to upload test results on the chromium-mac-leopard bots
-        https://bugs.webkit.org/show_bug.cgi?id=83230
-
-        Reviewed by Ojan Vafai.
-
-        This should fix things properly; FileUploader() was setting the
-        socket default timeout value, and apparently that doesn't work
-        properly with urllib. Also, the class had a bad try/finally
-        block that was causing the exceptions to be swallowed :(.
-
-        * Scripts/webkitpy/common/net/file_uploader.py:
-        (FileUploader.__init__):
-        (FileUploader._upload_data.callback):
-        (FileUploader):
-        (FileUploader._upload_data):
-        * Scripts/webkitpy/common/net/networktransaction.py:
-        (NetworkTimeout.__str__):
-        (NetworkTransaction.run):
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        (JSONResultsGeneratorBase.upload_json_files):
-
-2012-04-05  Patrick Gansterer  <paroga@webkit.org>
-
-        [Qt] Correct <wtf/*.h> include paths.
-        https://bugs.webkit.org/show_bug.cgi?id=83270
-
-        Reviewed by Eric Seidel.
-
-        Modify the #include declerations so that the
-        wtf types are included using the full path.
-
-        * WebKitTestRunner/qt/TestInvocationQt.cpp:
-
-2012-04-05  Philippe Normand  <pnormand@igalia.com>
-
-        gtk_unittest.GtkPortTest.test_get_crash_log failing on windows
-        https://bugs.webkit.org/show_bug.cgi?id=83176
-
-        Reviewed by Tony Chang.
-
-        Refactored the test to use os.path.join() to specify the
-        core_pattern value of the empty crash log mock.
-
-        * Scripts/webkitpy/layout_tests/port/gtk_unittest.py:
-        (GtkPortTest):
-        (GtkPortTest.assertLinesEqual):
-        (GtkPortTest.test_get_crash_log):
-        (_mock_gdb_output):
-
-2012-04-05  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Fix includes after QtDeclarative -> QtQML renaming
-        https://bugs.webkit.org/show_bug.cgi?id=82195
-
-        Relanding r112651, because Qt5 is updated everywhere.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::updateVisualMockTouchPoints):
-        * MiniBrowser/qt/main.cpp:
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::WrapperWindow::handleStatusChanged):
-        * qmake/mkspecs/features/unix/default_post.prf:
-
-2012-04-05  Pierre Rossi  <pierre.rossi@gmail.com>
-
-        [Qt] WK1/WK2 layout test results are diverging
-        https://bugs.webkit.org/show_bug.cgi?id=82720
-
-        The resolving of default font families was altered in Qt5.
-        This directly affects the font picked by DRT for layout
-        tests. Since we want to keep the Qt4 and Qt5 results in line,
-        we can trick DRT in picking the same font as before for now.
-
-        Reviewed by Csaba Osztrogonác.
-
-        * DumpRenderTree/qt/QtInitializeTestFonts.cpp:
-        (WebKit::initializeTestFonts):
-
-2012-04-05  Kinuko Yasuda  <kinuko@chromium.org>
-
-        Expose DataTransferItem.getAsEntry() to allow users access dropped files as FileEntry
-        https://bugs.webkit.org/show_bug.cgi?id=82592
-
-        Reviewed by David Levin.
-
-        Added filesystem hook support in EventSender.beginDragWithFiles() for DumpRenderTree.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::beginDragWithFiles):
-
-2012-04-04  Tim Horton  <timothy_horton@apple.com>
-
-        [mac] WKTR should always keep its windows offscreen
-        https://bugs.webkit.org/show_bug.cgi?id=83244
-        <rdar://problem/11188764>
-
-        Reviewed by Simon Fraser.
-
-        We don't want to allow windows onto the main display; intercept attempts to
-        change WebKitTestRunnerWindow's frame origin and prevent it from happening.
-
-        Also keep around and respond with a new "fake" origin, in case someone is
-        expecting it to change (I couldn't find any tests that expected this, however).
-
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (-[WebKitTestRunnerWindow setFrameOrigin:]):
-        (-[WebKitTestRunnerWindow setFrame:display:animate:]):
-        (-[WebKitTestRunnerWindow setFrame:display:]):
-        (-[WebKitTestRunnerWindow frame]):
-
-2012-04-04  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix typo introduced in r113271.
-
-        Unreviewed, build fix.
-
-        * Scripts/webkitpy/common/net/file_uploader.py:
-        (FileUploader._upload_data.callback):
-        (FileUploader):
-
-2012-04-04  Scott Graham  <scottmg@google.com>
-
-        [Chromium, DRT] Bounds check indices on gamepadController
-        https://bugs.webkit.org/show_bug.cgi?id=83192
-
-        Invalid test data would cause bad array accesses. Add simple checks to
-        ignore such invalid data.
-
-        Reviewed by Kent Tamura.
-
-        * DumpRenderTree/chromium/GamepadController.cpp:
-        (GamepadController::connect):
-        (GamepadController::disconnect):
-        (GamepadController::setId):
-        (GamepadController::setButtonCount):
-        (GamepadController::setButtonData):
-        (GamepadController::setAxisCount):
-        (GamepadController::setAxisData):
-
-2012-04-04  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt is failing to upload test results on the chromium-mac-leopard bots
-        https://bugs.webkit.org/show_bug.cgi?id=83230
-
-        Reviewed by Ojan Vafai.
-
-        More debugging info and a possible fix - stop messing with the
-        default network timeout, and don't swallow URLErrors.
-
-        * Scripts/webkitpy/common/net/file_uploader.py:
-        (FileUploader._upload_data):
-        * Scripts/webkitpy/common/net/networktransaction.py:
-        (NetworkTransaction.run):
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        (JSONResultsGeneratorBase.upload_json_files):
-
-2012-04-04  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt is failing to upload test results on the chromium-mac-leopard bots
-        https://bugs.webkit.org/show_bug.cgi?id=83230
-
-        Reviewed by Ojan Vafai.
-
-        * Scripts/webkitpy/common/net/file_uploader.py:
-        (FileUploader.__init__):
-        (FileUploader._upload_data.callback):
-        (FileUploader):
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._upload_json_files):
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        (JSONResultsGeneratorBase.upload_json_files):
-
-2012-04-04  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        WKTR needs to implement layoutTestController.setPageVisibility()
-        https://bugs.webkit.org/show_bug.cgi?id=69554
-
-        Reviewed by Simon Fraser.
-
-        This patch implements the layoutTestController.setPageVisibility
-        so WKTR supports the Page Visibility API implementation by using InjectedBundle
-        to set the visibility state directly to Page.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::setPageVisibility):
-        (WTR):
-        (WTR::LayoutTestController::resetPageVisibility):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (LayoutTestController):
-
-2012-04-04  Adam Barth  <abarth@webkit.org>
-
-        [Chromium] TestWebKitAPI links in WebCore twice
-        https://bugs.webkit.org/show_bug.cgi?id=83177
-
-        Reviewed by Dimitri Glazkov.
-
-        This is causing link errors in the Windows component build. This patch
-        moves the dependencies a bit lower down in the dependency diagram in
-        the hopes of removing the duplicate symbols.
-
-        * TestWebKitAPI/TestWebKitAPI.gyp/TestWebKitAPI.gyp:
-
-2012-04-04  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][DRT] Catch the "resource,request,willsend" signal
-        https://bugs.webkit.org/show_bug.cgi?id=82192
-
-        Reviewed by Gustavo Noronha Silva.
-
-        EFL's DumpRenderTree now catches the "resource,request,willsend"
-        signal in order to implement the "Blocked access to external URL"
-        behavior and avoid potential network-related timeouts in the tests.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::createView):
-        (DumpRenderTreeChrome::onWillSendRequest):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.h:
-        (DumpRenderTreeChrome):
-
-2012-04-04  Patrick Gansterer  <paroga@webkit.org>
-
-        [EFL][DRT] Correct <wtf/*.h> include paths.
-        https://bugs.webkit.org/show_bug.cgi?id=83168
-
-        Reviewed by Eric Seidel.
-
-        Modify the #include declarations so that the 
-        wtf types are included using the full path.
-
-        * DumpRenderTree/efl/DumpRenderTree.cpp:
-
-2012-04-04  Philippe Normand  <pnormand@igalia.com>
-
-        gtk_unittest.GtkPortTest.test_get_crash_log failing on windows
-        https://bugs.webkit.org/show_bug.cgi?id=83176
-
-        Reviewed by Tony Chang.
-
-        * Scripts/webkitpy/layout_tests/port/gtk_unittest.py:
-        (test_get_crash_log): Skip the test on non-linux platforms.
-
-2012-04-04  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] DRT support for computedStyleIncludingVisitedInfo
-        https://bugs.webkit.org/show_bug.cgi?id=82190
-
-        Adding missing implementation computedStyleIncludingVisitedInfo to EFL's
-        LayoutTestController so that we can unskip related tests from the skip list.
-
-        Reviewed by Antonio Gomes.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::computedStyleIncludingVisitedInfo):
-
-2012-04-04  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        Unreviewed; update my email address once again in the committers
-        and watch list.
-
-        * Scripts/webkitpy/common/config/committers.py: Prefer my
-        webkit.org email over my FreeBSD.org one.
-        * Scripts/webkitpy/common/config/watchlist: Ditto.
-
-2012-04-04  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        [Qt][WK2] QtWebKit2 should support Page Visibility API
-        https://bugs.webkit.org/show_bug.cgi?id=81164
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Enabling Page Visiblity API for Qt WebKit2.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-04-04  Andras Becsi  <andras.becsi@nokia.com>
-
-        [Qt][WK2] Make the WebView a subclass of Flickable
-        https://bugs.webkit.org/show_bug.cgi?id=83033
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Remove workaround in MiniBrowser and the ScrollIndicator
-        now that the WebView is a Flickable.
-
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-        * MiniBrowser/qt/qml/ScrollIndicator.qml:
-        * WebKitTestRunner/Target.pri:
-
-2012-04-04  Csaba Osztrogonác  <ossy@webkit.org>
-
-        REGRESSION(r113144): It made run-webkit-tests always fail
-        https://bugs.webkit.org/show_bug.cgi?id=83142
-
-        Unreviewed trivial fix after r113144.
-
-        * Scripts/run-webkit-tests:
-
-2012-04-03  Ryosuke Niwa  <rniwa@webkit.org>
-
-        I really hope this is the last build fix. Apparently exec doesn't quite arguments with
-        double quotations on Windows. Use system instead.
-
-        Hopefully, this won't break anything.
-
-        * Scripts/run-webkit-tests:
-
-2012-04-03  Keishi Hattori  <keishi@webkit.org>
-
-        Disable ENABLE_DATALIST for now
-        https://bugs.webkit.org/show_bug.cgi?id=82871
-
-        Reviewed by Kent Tamura.
-
-        * Scripts/build-webkit: Disabled ENABLE_DATALIST.
-
-2012-04-03  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Sigh... this isn't going well. I can't even reproduce this issue locally.
-        Another speculative fix.
-
-        * Scripts/run-webkit-tests:
-
-2012-04-03  Ryosuke Niwa  <rniwa@webkit.org>
-
-        I don't know why I'm so sloppy today. Another build fix.
-
-        * Scripts/run-webkit-tests:
-
-2012-04-03  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Hopefully the last build fix for Chromium Windows.
-
-        Explicitly execute new-run-webkit-tests and old-run-webkit-tests by python and perl.
-
-        * Scripts/run-webkit-tests:
-
-2012-04-03  Dirk Pranke  <dpranke@chromium.org>
-
-        [Chromium] Lots of timeouts causing Mac10.6 to exit early.
-        https://bugs.webkit.org/show_bug.cgi?id=83076
-
-        Unreviewed, build fix (slightly reviewed by Simon Fraser and Eric Seidel, but not approved).
-
-        Add logic to the apple mac and chromium mac code to not use
-        too many workers; it looks like the xserves (and possibly mac
-        pros) count hyperthreaded cores when they really shouldn't and
-        we end up using too many workers at a time; this leads to tests
-        thrashing and timing out.
-
-        This change is a temporary fix to make the bots happy while I
-        look into more profiling and other fixes.
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (ChromiumMacPort.default_child_processes):
-
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        (ChromiumMacPort.default_child_processes):
-
-2012-04-03  Simon Fraser  <simon.fraser@apple.com>
-
-        WebKitTestRunner's EventSender is leaky
-        https://bugs.webkit.org/show_bug.cgi?id=83099
-
-        Reviewed by Beth Dakin.
-        
-        Fix leaks of WKNumbers by using the adoptWK idiom, and make
-        all the code consistent.
-
-        * WebKitTestRunner/InjectedBundle/EventSendingController.cpp:
-        (WTR::EventSendingController::mouseDown):
-        (WTR::EventSendingController::mouseUp):
-        (WTR::EventSendingController::mouseMoveTo):
-        (WTR::EventSendingController::leapForward):
-        (WTR::EventSendingController::keyDown):
-        (WTR::EventSendingController::mouseScrollBy):
-        (WTR::EventSendingController::addTouchPoint):
-        (WTR::EventSendingController::updateTouchPoint):
-        (WTR::EventSendingController::setTouchModifier):
-        (WTR::EventSendingController::releaseTouchPoint):
-        (WTR::EventSendingController::cancelTouchPoint):
-
-2012-04-03  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Another build fix. Don't use old-run-webkit-tests on Chromium Windows bots.
-
-        * Scripts/run-webkit-tests:
-        (useNewRunWebKitTests):
-
-2012-04-03  Ryosuke Niwa  <rniwa@webkit.org>
-
-        kill-old-processes should kill apache2 and httpd
-        https://bugs.webkit.org/show_bug.cgi?id=83065
-
-        Reviewed by Tony Chang.
-
-        Kill apache2 and httpd on Mac and Linux (Windows uses lighttpd) to free up port 8000.
-
-        * BuildSlaveSupport/kill-old-processes:
-
-2012-04-03  Tony Chang  <tony@chromium.org>
-
-        run the same test steps on test only bots as on build-and-test bots
-        https://bugs.webkit.org/show_bug.cgi?id=83090
-
-        Reviewed by Ryosuke Niwa.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (TestFactory.__init__):
-
-2012-04-03  Ami Fischman  <fischman@chromium.org>
-
-        Add a Media watchlist.
-        https://bugs.webkit.org/show_bug.cgi?id=83071
-
-        Reviewed by David Levin.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-04-03  Simon Fraser  <simon.fraser@apple.com>
-
-        Fix large leak in WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=83084
-
-        Reviewed by Beth Dakin.
-        
-        Fix a leak of the bimap backing store created when doing pixel and
-        ref tests. This leak was causing serious thrash on the test bots.
-        
-        We don't need to allocate memory for CGBitmapContextCreate(); if we
-        pass NULL, it will allocate and manage its own backing store.
-
-        * WebKitTestRunner/cg/TestInvocationCG.cpp:
-        (WTR::createCGContextFromImage):
-
-2012-04-03  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Another build fix after r113067. Close the zipfile after extracting all files so that we can remove it.
-
-        * BuildSlaveSupport/built-product-archive:
-        (unzipArchive):
-
-2012-04-03  Ojan Vafai  <ojan@chromium.org>
-
-        Give more human friendly error message when builders fail to load or have stale data.
-        https://bugs.webkit.org/show_bug.cgi?id=83058
-
-        Reviewed by Eric Seidel.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (addError):
-        (addBuilderLoadErrors):
-        (handleLocationChange):
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-
-2012-04-03  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Again, a build fix after r113067. Don't call r113067 twice on the configuration build directory.
-
-        * BuildSlaveSupport/built-product-archive:
-        (extractBuiltProduct):
-
-2012-04-03  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Yet another build fix after r113067. Don't trigger Chromium testers right away
-        since they're now triggered by builders.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-04-03  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Another build fix after r113067 for Mac port.
-        It turned out that archiving the entire build directory doesn't work.
-
-        * BuildSlaveSupport/built-product-archive:
-        (createZipManually):
-        (createZip):
-        (archiveBuiltProduct):
-
-2012-04-03  Mike Lattanzio  <mlattanzio@rim.com>
-
-        [BlackBerry] Expose CaseSensitive, Wrap, and HighlightAllMatches in WebPage::findNextString()
-        https://bugs.webkit.org/show_bug.cgi?id=82643
-
-        Update LayoutTestController to accomodate the new find API.
-        It now provides caseSensitive functionality to DRT.
-
-        Internal Review by Andy Chen.
-
-        Reviewed by Rob Buis.
-
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
-        (LayoutTestController::findString):
-
-2012-04-03  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Another build fix after r113067. CreateWebKitBuildDirectory step is no longer needed
-        because download-built-product creates the build directory as needed.
-
-        This step fails on Chromium Windows due to -p option not supported by Windows' native mkdir.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (TestFactory.__init__):
-
-2012-04-03  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Build fix after r113067. Don't delete the build directory.
-
-        * BuildSlaveSupport/built-product-archive:
-        (extractBuiltProduct):
-
-2012-04-02  Ojan Vafai  <ojan@chromium.org>
-
-        Load all builder lists from the buildbot json
-        https://bugs.webkit.org/show_bug.cgi?id=82998
-
-        Reviewed by Adam Barth.
-
-        Also, remove an unnecessary list of test types. Now we don't hard-code
-        builder names anywhere and we only have a single hard-coded list of
-        test types.
-
-        * TestResultServer/static-dashboards/builders.js:
-        (BuilderMaster.prototype.logPath):
-        (BuilderMaster.prototype.builderJsonPath):
-        (requestBuilderList.xhr.onload):
-        (requestBuilderList.xhr.onerror):
-        (isChromiumDepsFyiGpuTestRunner):
-        (isChromiumTipOfTreeGpuTestRunner):
-        (isChromiumDepsGTestRunner):
-        (isChromiumDepsCrosGTestRunner):
-        (isChromiumTipOfTreeGTestRunner):
-        (onBuilderListLoad):
-        (loadBuildersList):
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (parseCrossDashboardParameters):
-        (currentBuilderGroupCategory):
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-        (testHtmlForTestsWithExpectationsButNoFailures):
-        (testGenerateChromiumTipOfTreeGpuBuildersFromBuilderList):
-        (testGenerateChromiumDepsGTestBuildersFromBuilderList):
-        (testGenerateChromiumDepsCrosGTestBuildersFromBuilderList):
-        (testGenerateChromiumTipOfTreeGTestBuildersFromBuilderList):
-        * TestResultServer/static-dashboards/timeline_explorer.html:
-
-2012-04-02  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Chromium testers should extract builds instead of building on their own
-        https://bugs.webkit.org/show_bug.cgi?id=82996
-
-        Reviewed by Tony Chang.
-
-        Make Chromium builders triggger Chromium testers and make testers download and extract builds
-        from the buildbot master instead of building binaries on their own.
-
-        Add download-built-product to wrap curl used in the download-built-product step since Windows
-        does not provide "curl" natively.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Add new triggerables for Chromium testers and make
-        Chromium builders trigger them. Also change the type of Chromium testers from NewBuildAndTest to Test.
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (DownloadBuiltProduct): Call download-built-product instead of curl.
-        * BuildSlaveSupport/built-product-archive:
-        (createZip): Don't zip the parent configuration build directory like "release" and "debug". While Mac port
-        needs this behavior for compatibility reasons, Chromium Mac port doesn't want this behavior.
-        (archiveBuiltProduct): Zip the configuration build directory on Mac port.
-        (unzipArchive): Extracted. Use ditto on Mac, unzip on linux and cygwin, and zipfile package on Windows.
-        (extractBuiltProduct): Refactor the code to use removeDirectoryIfExists and unzipArchive. Support Chromium.
-        * BuildSlaveSupport/download-built-product: Added to wrap curl which isn't available on Windows.
-
-2012-04-03  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Tools/Scripts/run-gtk-tests should not force you to use the WebKit jhbuild
-        https://bugs.webkit.org/show_bug.cgi?id=82473
-
-        Reviewed by Philippe Normand.
-
-        Only use jhbuild if WebKitBuild/Dependencies exists (if update-webkitgtk-libs)
-        was ever run.
-
-        * gtk/run-with-jhbuild: Instead of using jhbuild unconditionally, first
-        check if the user has ever run update-gtk-libs and, if so, then use jhbuild.
-
-2012-04-03  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] DRT support for setInteractiveFormValidationEnabled
-        https://bugs.webkit.org/show_bug.cgi?id=82050
-
-        Enable interactive form validation and unskip tests from the
-        skip list.
-
-        Reviewed by Antonio Gomes.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-
-2012-04-03  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, another test-webkitpy fix-up after r113037.
-
-        * Scripts/webkitpy/layout_tests/port/gtk_unittest.py: Adapt mock
-        crash dump depending on current environment.
-
-2012-04-03  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, test-webkitpy build fix after r113037.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort._get_crash_log):
-
-2012-04-03  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] crash log reports support
-        https://bugs.webkit.org/show_bug.cgi?id=81659
-
-        Reviewed by Martin Robinson.
-
-        Removed the daemontools crashmon/xvfb scripts and implemented the crash
-        log reporting in the NRWT Gtk port. To get proper crash logs one
-        needs to set the core pattern like this:
-        echo "/path/to/cores/core-pid_%p-_-process_%e" > /proc/sys/kernel/core_pattern
-        Then enable coredumps with "ulimit -c unlimited" and set the WEBKIT_CORE_DUMPS_DIRECTORY
-        environment variable.
-
-        * BuildSlaveSupport/gtk/README:
-        * BuildSlaveSupport/gtk/crashmon/crashmon: Removed.
-        * BuildSlaveSupport/gtk/crashmon/log/run: Removed.
-        * BuildSlaveSupport/gtk/crashmon/run: Removed.
-        * BuildSlaveSupport/gtk/daemontools-buildbot.conf:
-        * BuildSlaveSupport/gtk/xvfb/log/run: Removed.
-        * BuildSlaveSupport/gtk/xvfb/run: Removed.
-        * Scripts/new-run-webkit-tests:
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkDriver.stop):
-        (GtkPort.show_results_html_file):
-        (GtkPort):
-        (GtkPort._get_gdb_output):
-        (GtkPort._get_crash_log):
-        (GtkPort._get_crash_log.match_filename):
-        * Scripts/webkitpy/layout_tests/port/gtk_unittest.py:
-        (GtkPortTest):
-        (test_show_results_html_file):
-        (assertLinesEqual):
-        (_mock_gdb_output):
-        (test_get_crash_log):
-
-2012-04-02  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        Enable and connect the WebInspectorServer with WebKit2 pages.
-        https://bugs.webkit.org/show_bug.cgi?id=73094
-
-        Reviewed by Simon Hausmann.
-
-        Enable developer extras on pages in MiniBrowser for Qt.
-
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-
-2012-04-03  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] LayoutTestController needs implementation of setDefersLoading
-        https://bugs.webkit.org/show_bug.cgi?id=82890
-
-        Reviewed by Philippe Normand.
-
-        Implement setDefersLoading() in EFL's LayoutTestController so that the
-        corresponding test case can be removed from the skip list.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setDefersLoading):
-
-2012-04-03  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] LayoutTestController needs implementation of goBack
-        https://bugs.webkit.org/show_bug.cgi?id=81914
-
-        Reviewed by Philippe Normand.
-
-        Implement goBack() in EFL's LayoutTestController by calling
-        ewk_frame_back().
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::goBack):
-
-2012-04-03  Alexander Shalamov  <alexander.shalamov@intel.com>
-
-        [EFL] LayoutTestController needs implementation of pageSizeAndMarginsInPixels
-        https://bugs.webkit.org/show_bug.cgi?id=82589
-
-        Add missing implementation for pageSizeAndMarginsInPixels to EFL's LayoutTestController
-        in order to unskip printing/page-format-data.html
-
-        Reviewed by Philippe Normand.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::pageSizeAndMarginsInPixels):
-
-2012-04-03  Simon Pena  <spena@igalia.com>
-
-        [GTK] DRT missing didRunInsecureContent notification
-        https://bugs.webkit.org/show_bug.cgi?id=59367
-
-        Reviewed by Philippe Normand.
-
-        Connect DumpRenderTree to WebFrame's "insecure-content-run", in both
-        the main WebFrame or any other WebFrame created later. Added
-        "didRunInsecureContent" notification in the callback in order to
-        get the LayoutTests passing.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp: Connect
-        to WebFrame's "insecure-content-run" signal and add
-        didRunInsecureContent notification in the callback to get the
-        LayoutTests passing.
-        (didRunInsecureContent):
-        (createWebView):
-
-2012-04-03  Raphael Kubo da Costa  <rakuco@FreeBSD.org>
-
-        rebaseline-server: Make it possible to not launch a browser with the server.
-        https://bugs.webkit.org/show_bug.cgi?id=82999
-
-        Reviewed by Adam Barth.
-
-        Add the `--no-show-results' option, which lets one decide not to
-        launch a web browser when running the rebaseline server.  This is
-        especially useful if the default browser is not the wanted one, or
-        if the rebaseline server page is already open.
-
-        * Scripts/webkitpy/tool/commands/abstractlocalservercommand.py:
-        (AbstractLocalServerCommand.__init__):
-        (AbstractLocalServerCommand.execute):
-
-2012-04-02  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        EFL's LayoutTestController disableImageLoading implementation.
-        https://bugs.webkit.org/show_bug.cgi?id=82848
-
-        Reviewed by Hajime Morita.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::disableImageLoading):
-
-2012-04-02  Alexander Shalamov  <alexander.shalamov@intel.com>
-
-        [EFL] LayoutTestController needs implementation of isPageBoxVisible
-        https://bugs.webkit.org/show_bug.cgi?id=82591
-
-        Add missing implementation to isPageBoxVisible to EFL's LayoutTestController
-        in order to unskip printing/page-format-data.html
-
-        Reviewed by Hajime Morita.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::isPageBoxVisible):
-
-2012-04-02  Simon Fraser  <simon.fraser@apple.com>
-
-        run-webkit-tests with a relative --root causes tests to fail because DYLD_LIBRARY_PATH is not set
-        https://bugs.webkit.org/show_bug.cgi?id=82962
-
-        Reviewed by Dirk Pranke.
-
-        Ensure that _build_path() returns an absolute path.
-
-        Eric Seidel also had to deploy MockConfig in a bunch of places
-        in order to correct previous testing errors where we were
-        pretending that "Mock Output from child process" (returned by MockExecutive.run_command)
-        was a real path.  The real Config object calls run_command("webkit-build-directory")
-        to read the WebKit build directory from the webkitdirs.pm perl code.
-        MockConfig abstracts this away and always returns "/mock-build" during
-        testing.  This change is much larger than one would think necessary
-        because of needing to deploy this MockConfig class.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._build_path):
-
-2012-04-02  Ojan Vafai  <ojan@chromium.org>
-
-        Fix snafu in r112971. We were never calling parseParameter for builder.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-
-2012-04-02  Ojan Vafai  <ojan@chromium.org>
-
-        Generate the lists of all layout test builders from the buildbot json
-        https://bugs.webkit.org/show_bug.cgi?id=82924
-
-        Reviewed by Mihai Parparita.
-
-        In order to make this work, cleaned up a lot of existing technical debt.
-        -Got rid of expectations builder. This concept is outdated and just dead code.
-        -Split hash parameter parsing into two functions. One for dashboard_base
-        (crossDashboardParameters) and one for the specific dashboard html file
-        (dashboardSpecificParameters). In the old world, parseParameters needed to
-        be called twice and depended on it's own output the first time through.
-        Now we only need to parse crossDashboardParameters first and crossDashboardParameters
-        doesn't depend on the output of crossDashboardParameters.
-        -Lots of variable/method renames due to the above.
-        -g_defaultDashboardSpecificStateValues now has to list all possible hash parameters
-        for that dashboard.
-
-        * TestResultServer/static-dashboards/aggregate_results.html:
-        * TestResultServer/static-dashboards/builders.js:
-        (BuilderGroup):
-        (BuilderGroup.prototype.setup):
-        (jsonRequest.xhr.onload):
-        (jsonRequest.xhr.onerror):
-        (isWebkitTestRunner):
-        (isChromiumWebkitTipOfTreeTestRunner):
-        (isChromiumWebkitDepsTestRunner):
-        (generateBuildersFromBuilderList):
-        (onLayoutTestBuilderListLoad):
-        (onErrorLoadingBuilderList):
-        (loadBuildersList):
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (handleValidHashParameterWrapper):
-        (queryHashAsMap):
-        (parseParameter):
-        (parseCrossDashboardParameters):
-        (parseDashboardSpecificParameters):
-        (parseParameters):
-        (diffStates):
-        (defaultValue):
-        (isLayoutTestResults):
-        (isGPUTestResults):
-        (currentBuilderGroupCategory):
-        (currentBuilderGroup):
-        (initBuilders):
-        Now that we've split parameter parseing, these methods no longer need
-        to take an optional state. They can always just use the global cross-dashboard state.
-
-        (pathToBuilderResultsFile):
-        (appendJSONScriptElementFor):
-        (appendJSONScriptElements):
-        (handleResourceLoadError):
-        (haveJsonFilesLoaded):
-        (combinedDashboardState):
-        (setQueryParameter):
-        (permaLinkURLHash):
-        (toggleQueryParameter):
-        (queryParameterValue):
-        (selectHTML):
-        (htmlForTestTypeSwitcher):
-        (g_handleBuildersListLoaded):
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-        (testPlatformAndBuildType):
-        (testSubstringList):
-        (testHtmlForTestTypeSwitcherGroup):
-        (testLookupVirtualTestSuite):
-        (testBaseTest):
-        (generateBuildersFromBuilderListHelper):
-        (testGenerateChromiumWebkitTipOfTreeBuildersFromBuilderList):
-        (testGenerateChromiumWebkitDepsBuildersFromBuilderList):
-        (assertObjectsDeepEqual):
-        (testQueryHashAsMap):
-        (testDiffStates):
-        * TestResultServer/static-dashboards/timeline_explorer.html:
-        * TestResultServer/static-dashboards/treemap.html:
-
-2012-04-02  Tony Chang  <tony@chromium.org>
-
-        check-webkit-style errors when removing .png files
-        https://bugs.webkit.org/show_bug.cgi?id=82933
-
-        Reviewed by David Levin.
-
-        * Scripts/webkitpy/style/patchreader.py:
-        (PatchReader.check): Make sure the file exists and pass in a FileSystem() object (for mocking).
-        * Scripts/webkitpy/style/patchreader_unittest.py:
-        (test_check_patch_with_png_deletion):
-
-2012-04-02  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r112948.
-        http://trac.webkit.org/changeset/112948
-        https://bugs.webkit.org/show_bug.cgi?id=82961
-
-        Someone else already checked in a similar change (Requested by
-        sundiamonde on #webkit).
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver._start):
-
-2012-04-02  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic isn't able to rebaseline audio failures
-        https://bugs.webkit.org/show_bug.cgi?id=82957
-
-        Reviewed by Chris Rogers.
-
-        This patch just adds "wav" to the list of test suffixes and updates the
-        unit tests to show that we're rebaselining audio tests results now too.
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (test_rebaseline_updates_expectations_file):
-
-2012-04-02  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should let you listen to audio failures
-        https://bugs.webkit.org/show_bug.cgi?id=82953
-
-        Reviewed by Chris Rogers.
-
-        Now that we've actually got an audio failure on the bots, we can clean
-        up the last stray bugs.  This patch doesn't have any tests because I'm
-        lame.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
-        (.):
-
-2012-04-02  Stephanie Lewis  <slewis@apple.com>
-
-        run-webkit-tests --root fails if /usr/local/lib/libWebCoreTestSupport.dylib is not installed.
-        https://bugs.webkit.org/show_bug.cgi?id=82552
-
-        Reviewed by Dirk Pranke.
-
-        Use DYLD_LIBRARY_PATH so we pick up the libWebCoreTestSupport.dylib located in the root.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver._start):
-
-2012-04-02  Dirk Pranke  <dpranke@chromium.org>
-
-        NRWT is not printing out the builder it's uploading JSON files for
-        https://bugs.webkit.org/show_bug.cgi?id=82834
-
-        Reviewed by Ojan Vafai.
-
-        Handle log messages of the form log.info("%s", arg) properly ...
-        I didn't even know you could do that :).
-
-        * Scripts/webkitpy/layout_tests/views/metered_stream.py:
-        (_LogHandler.emit):
-        * Scripts/webkitpy/layout_tests/views/metered_stream_unittest.py:
-        (RegularTest.test_log_args):
-        (VerboseTest.test_log_args):
-
-2012-04-02  Tim Horton  <timothy_horton@apple.com>
-
-        [mac] LayoutTestHelper crashes if there is no main display
-        https://bugs.webkit.org/show_bug.cgi?id=82944
-        <rdar://problem/11162954>
-
-        Reviewed by Simon Fraser.
-
-        If there's no main display attached, ColorSyncDeviceCopyDeviceInfo returns
-        a null dictionary, so we shouldn't go ahead and try to read from it.
-
-        * DumpRenderTree/mac/LayoutTestHelper.m:
-        (installLayoutTestColorProfile):
-
-2012-04-02  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt][WK2] Set up plugin process on Unix
-        https://bugs.webkit.org/show_bug.cgi?id=72121
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/features.prf: Reenable plugins
-        and turn on plugin process.
-
-2012-04-02  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r112868, r112879, and r112881.
-        http://trac.webkit.org/changeset/112868
-        http://trac.webkit.org/changeset/112879
-        http://trac.webkit.org/changeset/112881
-        https://bugs.webkit.org/show_bug.cgi?id=82901
-
-        "Build fail on bots." (Requested by kbalazs on #webkit).
-
-        * MiniBrowser/gtk/GNUmakefile.am:
-        * qmake/mkspecs/features/features.prf:
-
-2012-04-02  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] Enable shadow-dom in build-webkit.
-
-        Rubber-stamped by Gustavo Noronha Silva.
-
-        * Scripts/build-webkit: Enable shadow-dom build, this is need to
-        have a working build currently.
-
-2012-04-02  Andreas Kling  <kling@webkit.org>
-
-        Adding Zalan Bujtas to committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-04-02  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt][WK2] Set up plugin process on Unix
-        https://bugs.webkit.org/show_bug.cgi?id=72121
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/features.prf: Reenable plugins
-        and turn on plugin process.
-
-2012-04-02  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r112651.
-        http://trac.webkit.org/changeset/112651
-        https://bugs.webkit.org/show_bug.cgi?id=82887
-
-        It doesn't work with older Qt5 (Requested by Ossy on #webkit).
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::updateVisualMockTouchPoints):
-        * MiniBrowser/qt/main.cpp:
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::WrapperWindow::handleStatusChanged):
-        * qmake/mkspecs/features/unix/default_post.prf:
-
-2012-04-02  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Fix names of failed unit tests in Tools/Scripts/run-gtk-tests
-        https://bugs.webkit.org/show_bug.cgi?id=82877
-
-        Reviewed by Philippe Normand.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner.run_tests): Use replace instead of lstrip to remove
-        the programs_path from the full path of unit tests.
-
-2012-04-02  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed. Skip flaky unit tests.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner):
-
-2012-04-02  Ryosuke Niwa  <rniwa@webkit.org>
-
-        webkitpy rebaseline.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (test_run_test_set_with_json_output):
-        (test_run_test_set_with_json_source):
-
-2012-04-01  Ryosuke Niwa  <rniwa@webkit.org>
-
-        perf-o-matic should store test results' units
-        https://bugs.webkit.org/show_bug.cgi?id=82852
-
-        Reviewed by Kentaro Hara.
-
-        Include units in the results JSON.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._process_chromium_style_test_result):
-        (PerfTestsRunner._process_parser_test_result):
-
-2012-04-01  Tony Tseung  <tseung@apple.com>
-
-        Composite Font References is a new established standard (ISO/IEC 14496-28:2012) for specifying
-        composite fonts from existing physical fonts.
-        <rdar://problem/10717370>
-        https://bugs.webkit.org/show_bug.cgi?id=82810
-            
-        A new test font of this kind as been added to the test tools for running the webkit-tests
-
-        Reviewed by Dan Bernstein.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        Added new dependency SampleFont.sfont
-        
-        * DumpRenderTree/fonts/SampleFont.sfont: Added.
-        
-        * DumpRenderTree/mac/Configurations/DumpRenderTree.xcconfig:
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (allowedFontFamilySet):
-        Added the Composite Font Referene sample font "Hiragino Maru Gothic Monospaced" entry to the fonts white-list
-        
-        (activateTestingFonts):
-        Added the registration of the Composite Font Referene sample font
-        
-        * WebKitTestRunner/InjectedBundle/mac/ActivateFonts.mm:
-        (WTR::allowedFontFamilySet):
-        Added the Composite Font Referene sample font "Hiragino Maru Gothic Monospaced" entry to the fonts white-list
-
-        (WTR::activateFonts):
-        Added the registration of the Composite Font Referene sample font
-
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-        Added new dependency SampleFont.sfont
-
-        * WebKitTestRunner/fonts/SampleFont.sfont: Added.
-
-2012-04-01  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Support the Network Information API
-        https://bugs.webkit.org/show_bug.cgi?id=73528
-
-        Reviewed by Adam Barth.
-
-        Add network information API feature to build script.
-
-        * Scripts/build-webkit:
-
-2012-03-31  Ojan Vafai  <ojan@chromium.org>
-
-        Generate the flakiness dashboard's list of webkit.org builders from the buildbot JSON
-        https://bugs.webkit.org/show_bug.cgi?id=82839
-
-        Reviewed by Adam Barth.
-
-        Also, update various hard-coded lists for WIN7 and Lion ports.
-        This is necessary since the new list of builders grabbed off the
-        buildbot includes Lion.
-
-        * TestResultServer/static-dashboards/builders.js:
-        (generateWebkitBuildersFromBuilderList):
-        (xhr.onreadystatechange):
-        Don't use dashboard_base's request method to avoid layering violation.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (parseParameters):
-        (initBuilders):
-        (haveJsonFilesLoaded):
-        (g_handleBuildersListLoaded):
-        Block loading the JSON files for each builder until we actually have a list of builders.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-        (testPlatformAndBuildType):
-        (testGenerateWebkitBuildersFromBuilderList):
-        * TestResultServer/static-dashboards/timeline_explorer.html:
-        * TestResultServer/static-dashboards/treemap.html:
-        Delay generating the page until the builder list has loaded.
-
-2012-03-31  Ojan Vafai  <ojan@chromium.org>
-
-        If NRWT gets killed halfway through a run, it incorrectly reports tests that weren't run as passes
-        https://bugs.webkit.org/show_bug.cgi?id=82799
-
-        Reviewed by Eric Seidel.
-
-        If we don't run a test, mark it as skipped.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._mark_interrupted_tests_as_skipped):
-        (Manager._interrupt_if_at_failure_limits.interrupt_if_at_failure_limit):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ManagerTest.test_interrupt_if_at_failure_limits):
-
-2012-03-31  Ryosuke Niwa  <rniwa@webkit.org>
-
-        One more build fix after r112781 for Chromium Windows.
-        Don't copy zip .idb files.
-
-        * BuildSlaveSupport/built-product-archive:
-        (copyBuildFiles):
-
-2012-03-31  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Yet another build fix after r112781 for Chromium Windows.
-        Run webkit-build-directory by perl explicitly.
-
-        * BuildSlaveSupport/built-product-archive:
-        (determineWebKitBuildDirectory):
-
-2012-03-31  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Fix the syntax error in master.cfg after r112734.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (unitTestsSupported):
-
-2012-03-31  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Another build fix after r112781.
-
-        * BuildSlaveSupport/built-product-archive:
-        (createZip):
-
-2012-03-31  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Build fix after r112781.
-
-        * BuildSlaveSupport/built-product-archive:
-        (createZipManually):
-        (createZip):
-
-2012-03-30  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Chromium bots should upload archived built files
-        https://bugs.webkit.org/show_bug.cgi?id=82666
-
-        Reviewed by Tony Chang.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-        * BuildSlaveSupport/built-product-archive:
-        (main):
-        (determineWebKitBuildDirectory): Instead of hard-coding WebKitBuild as the build outout directory,
-        call out to webkit-build-directory.
-        (removeDirectoryIfExists): Extracted.
-        (copyBuildFiles): Added to avoid archiving useless intermedinate files.
-        (createZipManually): Used in Chromium Windows where we don't execute python scripts inside cygwin.
-        (createZipManually.addToArchive):
-        (createZip): Extracted. Calls out to appropraite command line scripts or createZipManually.
-        (archiveBuiltProduct): Add support for Chromium port.
-        * Scripts/webkit-build-directory: Add support for --platform options.
-
-2012-03-30  Dan Bernstein  <mitz@apple.com>
-
-        Reverted r112767, because it caused many vertical text tests to fail.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/fonts/SampleFont.sfont: Removed.
-        * DumpRenderTree/mac/Configurations/DumpRenderTree.xcconfig:
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (allowedFontFamilySet):
-        (activateTestingFonts):
-        * WebKitTestRunner/InjectedBundle/mac/ActivateFonts.mm:
-        (WTR::allowedFontFamilySet):
-        (WTR::activateFonts):
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-        * WebKitTestRunner/fonts/SampleFont.sfont: Removed.
-
-2012-03-30  Malcolm MacLeod  <malcolm.macleod@tshwanedje.com>
-
-        [wx] Move wxWebKit API into WebKit namespace.
-        https://bugs.webkit.org/show_bug.cgi?id=82740
-
-        Reviewed by Kevin Ollivier.
-
-        * DumpRenderTree/wx/DumpRenderTreeWx.cpp:
-        (LayoutWebViewEventHandler::LayoutWebViewEventHandler):
-        (LayoutWebViewEventHandler::bindEvents):
-        (LayoutWebViewEventHandler::OnLoadEvent):
-        (LayoutWebViewEventHandler::OnAlertEvent):
-        (LayoutWebViewEventHandler::OnConfirmEvent):
-        (LayoutWebViewEventHandler::OnPromptEvent):
-        (LayoutWebViewEventHandler::OnConsoleMessageEvent):
-        (LayoutWebViewEventHandler::OnReceivedTitleEvent):
-        (LayoutWebViewEventHandler::OnWindowObjectClearedEvent):
-        (LayoutWebViewEventHandler):
-        (dumpFramesAsText):
-        (dump):
-        (MyApp::OnInit):
-        * wx/browser/browser.cpp:
-        (MyApp::OnInit):
-
-2012-03-30  Eli Fidler  <efidler@rim.com>
-
-        Enable OpenType Sanitizer for BlackBerry port.
-        https://bugs.webkit.org/show_bug.cgi?id=82782
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitdirs.pm:
-        (blackberryCMakeArguments): add OTS to include path
-
-2012-03-30  Simon Fraser  <simon.fraser@apple.com>
-
-        run-webkit-tests needs to set DYLD_LIBRARY_PATH as well
-        as DYLD_FRAMEWORK_PATH, so that libWebCoreTestSupport.dylib
-        is found.
-
-        <rdar://problem/11158581>
-        
-        Reviewed by Mark Rowe.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver._start):
-
-2012-03-30  Simon Fraser  <simon.fraser@apple.com>
-
-        Disable run-api-tests on release mac builds
-        https://bugs.webkit.org/show_bug.cgi?id=82788
-
-        Reviewed by Ryosuke Niwa.
-        
-        TestWebKitAPI crashes every time in release builds currently
-        (https://bugs.webkit.org/show_bug.cgi?id=82652) so disable
-        run-api-tests on mac release builders.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (unitTestsSupported):
-
-2012-03-30  Chang Shu  <cshu@webkit.org>
-
-        Unreviewed. Update my email.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-03-30  Chris Fleizach  <cfleizach@apple.com>
-
-        AX: Crash at WebCore::renderObjectContainsPosition(WebCore::RenderObject*, WebCore::Position const&)
-        https://bugs.webkit.org/show_bug.cgi?id=82745
-
-        Reviewed by Simon Fraser.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (rangeForPositionCallback):
-        (AccessibilityUIElement::rangeForPosition):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        (AccessibilityUIElement):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::rangeForPosition):
-        * WebKitTestRunner/InjectedBundle/AccessibilityUIElement.cpp:
-        (WTR::AccessibilityUIElement::rangeForPosition):
-        * WebKitTestRunner/InjectedBundle/AccessibilityUIElement.h:
-        (AccessibilityUIElement):
-        * WebKitTestRunner/InjectedBundle/Bindings/AccessibilityUIElement.idl:
-        * WebKitTestRunner/InjectedBundle/mac/AccessibilityUIElementMac.mm:
-        (WTR::AccessibilityUIElement::rangeForPosition):
-        (WTR):
-
-2012-03-30  David Barr  <davidbarr@chromium.org>
-
-        Split up top-level .gitignore and .gitattributes
-        https://bugs.webkit.org/show_bug.cgi?id=82687
-
-        Reviewed by Tor Arne Vestbø.
-
-        * .gitattributes: Added.
-        * .gitignore: Added.
-        * DumpRenderTree/DumpRenderTree.gyp/.gitignore: Added.
-        * TestWebKitAPI/TestWebKitAPI.gyp/.gitignore: Added.
-
-2012-03-30  Mihai Parparita  <mihaip@chromium.org>
-
-        Actually remove the ChromiumOS GTK builder, like r112673 said it would.
-
-        * TestResultServer/static-dashboards/builders.js:
-
-2012-03-30  Mihai Parparita  <mihaip@chromium.org>
-
-        Update ChromiumOS bot names in builders.js to reflect changes made by
-        http://crrev.com/129835
-        
-        Also removes the ChromiumOS GTK builder, which was removed by
-        http://crrev.com/129835
-
-        * TestResultServer/static-dashboards/builders.js:
-
-2012-03-30  Vineet Chaudhary  <rgf748@motorola.com>
-
-        [GTK] Disable introspection build in the at-spi2-core module.
-        https://bugs.webkit.org/show_bug.cgi?id=82729
-
-        Reviewed by Philippe Normand.
-
-        This change is a follow-up of bug 82395 which initially disabled for other modules of the set.
-
-        * gtk/jhbuild.modules: Disable introspection.
-
-2012-03-30  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        Add a "preview" state to Page Visibility API implementation
-        https://bugs.webkit.org/show_bug.cgi?id=81355
-
-        Reviewed by Adam Barth.
-
-        Updating the Page Visibility API implementation to the current spec version.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::setPageVisibility):
-
-2012-03-30  Keishi Hattori  <keishi@webkit.org>
-
-        Change ENABLE_INPUT_COLOR to ENABLE_INPUT_TYPE_COLOR and enable it for chromium
-        https://bugs.webkit.org/show_bug.cgi?id=80972
-
-        Reviewed by Kent Tamura.
-
-        * Scripts/build-webkit:
-        * qmake/mkspecs/features/features.prf:
-
-2012-03-29  Ádám Kallai  <kadam@inf.u-szeged.hu>
-
-        [Qt] Build fix by renameing QtDeclarative to QtQml in header calls.
-        https://bugs.webkit.org/show_bug.cgi?id=82195
-
-        Reviewed by Simon Hausmann.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::updateVisualMockTouchPoints):
-        * MiniBrowser/qt/main.cpp:
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::WrapperWindow::handleStatusChanged):
-        * qmake/mkspecs/features/unix/default_post.prf:
-
-2012-03-30  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] Implement LayoutTestController::setMinimumTimerInterval
-        https://bugs.webkit.org/show_bug.cgi?id=81220
-
-        Add missing implementation setMinimumTimerInterval to EFL's
-        LayoutTestController so that we can unskip related tests from the skip list.
-
-        Reviewed by Philippe Normand.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setMinimumTimerInterval):
-
-2012-03-29  Dan Bernstein  <mitz@apple.com>
-
-        Removed “Intel” from the Lion builders’ names.
-
-        Rubber-stamped by Mark Rowe.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksViewer.js:
-        (LeaksViewer._displayURLPrompt):
-
-2012-03-29  Mihai Parparita  <mihaip@chromium.org>
-
-        [Chromium] Add sharded ChromiumOS debug bots to builders.js
-        https://bugs.webkit.org/show_bug.cgi?id=82639
-
-        Reviewed by Eric Seidel.
-
-        The bots were sharded by http://crrev.com/129613, update builders.js
-        to reflect this.
-
-        * TestResultServer/static-dashboards/builders.js:
-
-2012-03-29  Dirk Pranke  <dpranke@chromium.org>
-
-        remove support for junit-style xml output from test-webkitpy
-        https://bugs.webkit.org/show_bug.cgi?id=82279
-
-        Reviewed by Eric Seidel.
-
-        This was added when we were looking into integrating w/ Jenkins
-        rather than buildbot, but I believe that project got shelved, so
-        this is unused. We can always add it back in later as necessary.
-
-        * Scripts/webkitpy/test/main.py:
-        (Tester._parse_args):
-        (Tester._run_tests):
-        * Scritps/webkitpy/thirdparty/__init__.py:
-
-2012-03-29  Dirk Pranke  <dpranke@chromium.org>
-
-        new-run-webkit-tests: crashes when it fails to decode a stack trace
-        https://bugs.webkit.org/show_bug.cgi?id=82673
-
-        Unreviewed, build fix.
-
-        We are assuming the stdout/stderr output from the driver is utf-8
-        encoded when we get stack traces; this may not be a valid
-        assumption generally, but if we do get strings that aren't valid
-        utf-8, we would crash. Now we will ignore any decoding errors.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port._get_crash_log):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (PortTestCase.test_get_crash_log):
-
-2012-03-29  Simon Fraser  <simon.fraser@apple.com>
-
-        Scripts fail to detect when a tool crashes
-        https://bugs.webkit.org/show_bug.cgi?id=82659
-
-        Reviewed by Mark Rowe.
-        
-        Have exitStatus() detect when the process fail to exit cleanly
-        (possibly because of a crash), and return a non-zero exit code
-        in that case.
-
-        * Scripts/VCSUtils.pm:
-        (exitStatus):
-
-2012-03-29  Dominik Röttsches  <dominik.rottsches@linux.intel.com>
-
-        [GTK][EFL] run-javascriptcore-tests should be run through jhbuild
-        https://bugs.webkit.org/show_bug.cgi?id=82581
-
-        Reviewed by Martin Robinson.
-
-        Running Javascriptcore tests through jhbuild
-        for consistency with run-webkit-tests and in order to
-        avoid confusing libraries when facing regressions.
-
-        * Scripts/run-javascriptcore-tests:
-
-2012-03-29  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: add --timing
-        https://bugs.webkit.org/show_bug.cgi?id=82550
-
-        Reviewed by Eric Seidel.
-
-        This patch adds a --timing option that will display the time
-        each test takes. It also removes the --silent option, since
-        probably no one ever used it, and cleans up the logging
-        option parsing code to be easier to follow.
-
-        * Scripts/webkitpy/test/main.py:
-        (Tester._parse_args):
-        (Tester._configure):
-        * Scripts/webkitpy/test/runner.py:
-        (TestRunner.write_result):
-        * Scripts/webkitpy/test/runner_unittest.py:
-        (RunnerTest.test_regular):
-        (RunnerTest.test_verbose):
-        (RunnerTest):
-        (RunnerTest.test_timing):
-
-2012-03-29  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
-
-        HashMap<>::add should return a more descriptive object
-        https://bugs.webkit.org/show_bug.cgi?id=71063
-
-        Reviewed by Ryosuke Niwa.
-
-        Update code to use AddResult instead of a pair.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::evaluateScriptInIsolatedWorld):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::evaluateScriptInIsolatedWorld):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::evaluateScriptInIsolatedWorld):
-
-2012-03-29  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Web Inspector: chromium: DRT --no-timeout option doesn't work.
-        https://bugs.webkit.org/show_bug.cgi?id=82608
-
-        Initial value for m_timeout was initialized in constructor and was overwritten in DRT::main.
-        This was broken by r112354 and the sequence became opposite.
-
-        Reviewed by Yury Semikhatsky.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::initialize):
-
-2012-03-29  Vineet Chaudhary  <rgf748@motorola.com>
-
-        Remove custom bindings form Internals.idl of attribute type Array.
-        https://bugs.webkit.org/show_bug.cgi?id=82319
-
-        Reviewed by Kentaro Hara.
-
-        Remove JSInternalsCustom.cpp and V8InternalsCustom.cpp as no longer required.
-
-        * GNUmakefile.am:
-
-2012-03-28  Mark Rowe  <mrowe@apple.com>
-
-        Fix --no-saved-state.
-
-        Ignore the flag before Lion, rather than making it specific to Lion.
-
-        Rubber-stamped by Dan Bernstein.
-
-        * Scripts/webkitdirs.pm:
-        (argumentsForRunAndDebugMacWebKitApp):
-
-2012-03-28  Dave Tharp  <dtharp@codeaurora.org>
-
-        Add dtharp to contributors list
-        https://bugs.webkit.org/show_bug.cgi?id=82545
-
-        Reviewed by Adam Barth.
-
-        Adding dtharp as Contributor.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-03-28  Stuart Eichert  <stuart.eichert@palm.com>
-
-        build-webkit : the word "pass" is spelled incorrectly as "passs"
-        https://bugs.webkit.org/show_bug.cgi?id=82532
-
-        Reviewed by Julien Chaffraix.
-
-        Corrected spelling of the word "pass" in build-webkit.
-
-        * Scripts/build-webkit:
-
-2012-03-28  Dirk Pranke  <dpranke@chromium.org>
-
-        new-run-webkit-tests doesn't log correctly after retrying failures
-        https://bugs.webkit.org/show_bug.cgi?id=82541
-
-        Unreviewed, build fix.
-
-        r112189 introduced a regression where we would accidentally
-        delete the log handler after we retried any failing tests - that
-        meant that any log messages around uploading the results got
-        dropped.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._run_tests):
-
-2012-03-28  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed. Build fix, move WTF back into JSCore target
-        until issues with JSCore not linking in all WTF symbols are resolved.
-
-        * waf/build/settings.py:
-
-2012-03-28  Simon Fraser  <simon.fraser@apple.com>
-
-        download-built-product build step should detect 404 errors
-        https://bugs.webkit.org/show_bug.cgi?id=82491
-
-        Reviewed by Ryosuke Niwa.
-        
-        Pass --fail to curl so that it reports 404 errors.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (DownloadBuiltProduct): Pass --fail to curl so that it reports errors.
-        * BuildSlaveSupport/built-product-archive:
-        (extractBuiltProduct): Remove trailing whitespace.
-
-2012-03-28  Dirk Pranke  <dpranke@chromium.org>
-
-        flakiness dashboard should only keep the last 500 runs
-        https://bugs.webkit.org/show_bug.cgi?id=82530
-
-        Reviewed by Ojan Vafai.
-
-        If a bot has an overly large amount of failing tests, then
-        storing 750 runs' worth takes a lot of memory and CPU time to
-        process and we end up getting killed by AppEngine; this cases
-        data corruption and confusion down the road when we have to
-        retry the upload of the data and the tests show up as multiple
-        runs.
-
-        * TestResultServer/model/jsonresults.py:
-        (JsonResults.update_file):
-
-2012-03-28  Ryosuke Niwa  <rniwa@webkit.org>
-
-        extract-built-product build step should fail if unzipping fails
-        https://bugs.webkit.org/show_bug.cgi?id=82493
-
-        Reviewed by Simon Fraser.
-
-        Forward non-zero exit code from subprocesses so that the master can detect any failures
-        and bail out early.
-
-        * BuildSlaveSupport/built-product-archive:
-        (main):
-
-2012-03-28  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy should support files, directories, and packages as command line args
-        https://bugs.webkit.org/show_bug.cgi?id=76765
-
-        Reviewed by Adam Barth.
-
-        This patch adds support for specifying files, directories, and
-        packages to test-webkitpy along with the already existing
-        support for modules, test classes, and individual test names.
-
-        Also, fix a bug in filesystem_mock where we wouldn't normalize a
-        path containing a reference to the current directory properly,
-        for example, '/foo/./bar.py'.
-
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        (MockFileSystem.normpath):
-        * Scripts/webkitpy/test/main.py:
-        (Tester._configure_logging):
-        (Tester._run_tests):
-        * Scripts/webkitpy/test/test_finder.py:
-        (TestDirectoryTree.find_modules):
-        (TestDirectoryTree.subpath):
-        (TestFinder.is_dotted_name):
-        (TestFinder.find_names):
-        (TestFinder):
-        (TestFinder._find_names_for_arg):
-        (TestFinder._find_in_trees):
-        (TestFinder._default_names):
-        * Scripts/webkitpy/test/test_finder_unittest.py:
-        (TestFinderTest.setUp):
-        (TestFinderTest.tearDown):
-        (TestFinderTest.check_names):
-        (TestFinderTest.test_default_names):
-        (TestFinderTest):
-        (TestFinderTest.test_paths):
-
-2012-03-28  Simon Fraser  <simon.fraser@apple.com>
-
-        Fix inspector tests when running in internal builds.
-
-        <rdar://problem/11050694>
-
-        Reviewed by Tim Hatcher.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-
-2012-03-28  David Kilzer  <ddkilzer@apple.com>
-
-        Use xcrun to find nm and ranlib on OS X builds
-        <http://webkit.org/b/82466>
-
-        Reviewed by Dan Bernstein.
-
-        * Scripts/build-webkit: Use xcrun to find ranlib.
-        * Scripts/webkitdirs.pm:
-        (determineNmPath): Added.  Use xcrun to find nm on OS X.
-        (nmPath): Added.
-        * Scripts/webkitperl/features.pm:
-        (libraryContainsSymbol): Use nmPath().
-
-2012-03-28  Ojan Vafai  <ojan@chromium.org>
-
-        Add history navigation to garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=82495
-
-        Reviewed by Dimitri Glazkov.
-
-        Also, maintain scroll offsets when returning to a tab. This makes addressing
-        expected failures considerably easier when dealing with below-the-fold tests.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js:
-        -Store the scrollTop before switching to a new tab and restore the appropriate scrollTop after
-        switching.
-        -Modify window.location with the tabName in the hash. Can't use pushState because this is served
-        from a file URL and Chrome puts each different file URL in it's own origin.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
-        Remove the href so that clicking on the accordion item does not modify window.location.hash.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/results.css:
-
-2012-03-28  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] generate-gtk-doc doesn't cope with custom build directory
-        https://bugs.webkit.org/show_bug.cgi?id=82448
-
-        Reviewed by Martin Robinson.
-
-        Pass the product directory in generate-gtkdoc arguments from
-        build-webkit.
-
-        * Scripts/webkitdirs.pm:
-        (buildAutotoolsProject):
-        * gtk/common.py:
-        (get_build_path):
-
-2012-03-28  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Add --skipped command line option to Tools/Scripts/run-gtk-tests
-        https://bugs.webkit.org/show_bug.cgi?id=82341
-
-        Reviewed by Martin Robinson.
-
-        Add --skipped=skip|ignore|only command line option.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner._test_cases_to_skip): Return the list of test cases
-        to skip for the given test depending on the skipped action.
-        (TestRunner._should_run_test): Decide whether to run the test or
-        not depending on the skipped action.
-        (TestRunner.run_tests): Only show the list of skipped tests when
-        skipped action is 'skip'.
-
-2012-03-28  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Use gtester -s to skip individual test cases instead of unit tests as a whole
-        https://bugs.webkit.org/show_bug.cgi?id=82333
-
-        Reviewed by Martin Robinson.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner.SkippedTest): Add SkippedTest class to store more
-        information about skipped tests.
-        (TestRunner._setup_testing_environment): Use SkippedTest to add
-        TestWebKitAccessibility to the skipped list.
-        (TestRunner._find_skipped_test): Return the SkippedTest object for
-        a given test path.
-        (TestRunner._test_cases_to_skip): Returns the list of test cases
-        that should be skipped for a given test path.
-        (TestRunner._should_run_test): Helper funtion to decide whether
-        the given test path should be run or not. Tests in the skipped
-        list that don't have a list of failing test cases are not run at
-        all. Tests in the skipped list that contain a list of test cases
-        are run with gtester -s to skip the individual test cases.
-        (TestRunner._run_test): Helper funtion to run a given test.
-        (TestRunner.run_tests): Build the list of tests to run based on
-        _should_run_test() and use helper function _run_test() to run
-        every test.
-
-2012-03-28  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Couple of tests have different results on 64 bit and/or in debug mode compared to 32 bit and/or release mode
-        https://bugs.webkit.org/show_bug.cgi?id=52810
-
-        Reviewed by Simon Hausmann.
-
-        Use SSE2 floating point math on 32 bit instead of the default
-        387 to make layout test result same on 32 and on 64 bit builds.
-
-        * qmake/mkspecs/features/unix/default_post.prf:
-
-2012-03-28  Sergio Villar Senin  <svillar@igalia.com>
-
-        [Soup] DNS prefetching spams resolver, shoots self in the foot
-        https://bugs.webkit.org/show_bug.cgi?id=41630
-
-        Reviewed by Martin Robinson.
-
-        Bump libsoup and glib dependencies.
-
-        * efl/jhbuild.modules:
-        * gtk/jhbuild.modules:
-
-2012-03-28  Gustavo Noronha Silva  <gns@gnome.org>
-
-        [GTK] Disable introspection for jhbuild modules
-        https://bugs.webkit.org/show_bug.cgi?id=82395
-
-        Reviewed by Philippe Normand.
-
-        * efl/jhbuild.modules: add --disable-introspection to all modules
-        that support it
-        * gtk/jhbuild.modules: ditto.
-
-2012-03-28  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Unreviewed, fix API tests after adding full platforms. (r111658)
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (BuildAndTestFactory.__init__):
-
-2012-03-28  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Unreviewed typo fix after r112383.
-
-        * Scripts/run-qtwebkit-tests:
-        (Main.check_crash_occurences):
-
-2012-03-28  Ádám Kallai  <kadam@inf.u-szeged.hu>
-
-        [Qt] run-qtwebkit-tests should report crashes
-        https://bugs.webkit.org/show_bug.cgi?id=76905
-
-        Added checking of crashing tests. Now final summary includes the total number of crashing tests too.
-        Made unit test for this modification by János Badics <jbadics@inf.u-szeged.hu>.
-
-        Reviewed by Csaba Osztrogonác.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (RunQtAPITests.commandComplete):
-        (RunQtAPITests.evaluateCommand):
-        * BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py:
-        (RunQtAPITestsTest):
-        (test_failure):
-        (test_crash):
-        * Scripts/run-qtwebkit-tests:
-        (Main.announce_results_html):
-        (Main):
-        (Main.check_crash_occurences):
-        (Main.convert_to_stdout):
-        (Main.convert_to_html):
-
-2012-03-28  Kwonjin Jeong  <gram@company100.net>
-
-        Add support for Intel compiler on Linux QT port.
-        https://bugs.webkit.org/show_bug.cgi?id=81077
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/default_post.prf:
-        Don't hide symbols when building with Intel compiler.
-        The symbols are needed when building QtWebKit tests.
-
-        * qmake/mkspecs/features/unix/icc.prf:
-        Added to ignore icc-specific warnings.
-        This feature is used with command-line arguments for build-webkit script.
-
-2012-03-28  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, trivial update-webkit-libs-jhbuild system call fix.
-
-        * Scripts/update-webkitgtk-libs: This script is written in
-        Perl. Not Python. So use perl vocabulary to refer to command line arguments.
-
-2012-03-28  Ryosuke Niwa  <rniwa@webkit.org>
-
-        kill-old-processes doesn't do anything on linux
-        https://bugs.webkit.org/show_bug.cgi?id=82388
-
-        Reviewed by Tony Chang.
-
-        Kill cc1plus, ld, etc... on linux. Also ps aux + grep to kill old run-webkit-tests processes.
-        This should help stabilizing Chromium linux bots.
-
-        * BuildSlaveSupport/kill-old-processes:
-
-2012-03-28  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] jhbuild wrongly tricked into clean-up
-        https://bugs.webkit.org/show_bug.cgi?id=82216
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Save jhbuild{rc,.modules}.md5sum in Dependencies instead of the
-        build tree. Also when checking if the jhbuild configuration
-        changed use absolute md5sum paths.
-
-        * Scripts/webkitdirs.pm:
-        (runAutogenForAutotoolsProjectIfNecessary):
-        (jhbuildConfigurationChanged):
-        (buildAutotoolsProject):
-
-2012-03-28  Csaba Osztrogonác  <ossy@webkit.org>
-
-        kill-old-processes doesn't do anything on linux
-        https://bugs.webkit.org/show_bug.cgi?id=82388
-
-        One more attempt to disable kill-old-processes on the Qt bots not to kill each others.
-
-        The platform in Factory comes from config.json, accordingly platform is fullplatform,
-        for example: qt-4.8, qt-5.0-wk2. We have to check only the prefix of platform.
-
-        Reviewed by Ryosuke Niwa.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (Factory.__init__):
-
-2012-03-28  Hao Zheng  <zhenghao@chromium.org>
-
-        Make Chromium port for Android use hardware gpu path default.
-        https://bugs.webkit.org/show_bug.cgi?id=82033
-
-        Reviewed by Dirk Pranke.
-
-        Skip canvas tests, which are run in virtual gpu test suites.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.__init__):
-        (ChromiumAndroidPort.skipped_tests):
-
-2012-03-27  Csaba Osztrogonác  <ossy@webkit.org>
-
-        kill-old-processes doesn't do anything on linux
-        https://bugs.webkit.org/show_bug.cgi?id=82388
-
-        Disable kill-old-processes on the Qt bots not to kill each others.
-
-        Reviewed by Ryosuke Niwa.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (Factory.__init__):
-
-2012-03-27  Hao Zheng  <zhenghao@chromium.org>
-
-        Handle DRT crash caused by Android OOM.
-        https://bugs.webkit.org/show_bug.cgi?id=82310
-
-        Reviewed by Tony Chang.
-
-        When Android is OOM, it sends a SIGKILL (137) signal to DRT. DRT
-        is stopped silently and regarded as crashed. Re-run the test for
-        such crash.
-
-        Add some debug log to NRWT.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumDriver.run_test):
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.__init__):
-        (ChromiumAndroidPort.get_last_stacktrace):
-        (ChromiumAndroidDriver.__init__):
-        (ChromiumAndroidDriver._start):
-        (ChromiumAndroidDriver.run_test):
-        (ChromiumAndroidDriver._get_drt_return_value):
-
-2012-03-27  Ojan Vafai  <ojan@chromium.org>
-
-        Fix expected results for some unittest failures.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures_unittests.js:
-
-2012-03-27  Adrienne Walker  <enne@google.com>
-
-        [chromium] Fix --enabled-threaded-compositing flag in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=82405
-
-        Reviewed by James Robinson.
-
-        --enable-threaded-compositing wasn't working because there was no way
-        to set the value before it was used in the TestShell constructor.
-
-        To avoid adding yet another boolean parameter to TestShell's
-        constructor, add an explicit initialize function that can operate on
-        any boolean settings that are set post-constructor.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::initialize):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell):
-        (TestShell::setTestShellMode):
-
-2012-03-27  Dirk Pranke  <dpranke@chromium.org>
-
-        new-run-webkit-tests: suppress debug output from run-safari on results file
-        https://bugs.webkit.org/show_bug.cgi?id=82400
-
-        Reviewed by Ryosuke Niwa.
-
-        Send the run-safari output to /dev/null rather than the console.
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.show_results_html_file):
-
-2012-03-27  Simon Fraser  <simon.fraser@apple.com>
-
-        Improve error reporting in run-javascriptcore-tests
-        https://bugs.webkit.org/show_bug.cgi?id=82379
-
-        Reviewed by Jessie Berlin.
-        
-        When the script dies, have it print out the reason for dying.
-
-        * Scripts/run-javascriptcore-tests:
-
-2012-03-27  Eric Seidel  <eric@webkit.org>
-
-        Add Dave Barton to the Contributors list so I can more easily CC him on bugs
-        https://bugs.webkit.org/show_bug.cgi?id=82373
-
-        Reviewed by Ryosuke Niwa.
-
-        Dave's committer-status in in-progress, so until then
-        list him as a Contributor so at least I can more easily CC him on bugs.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-03-26  Raphael Kubo da Costa  <rakuco@FreeBSD.org>
-
-        [jhbuild] Prepend jhbuildrc's directory to sys.path instead of appending.
-        https://bugs.webkit.org/show_bug.cgi?id=82252
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Appending the directory containing common.py may be problematic if
-        another path in sys.path also contains either a common.py or a
-        common/ module, so prepend to select our version instead. This is
-        the case with fail2ban, which has a common/ directory which may
-        end up being in Python's default path.
-
-        * efl/jhbuildrc:
-        * gtk/jhbuildrc:
-
-2012-03-27  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: prepare for better test run output
-        https://bugs.webkit.org/show_bug.cgi?id=82290
-
-        Reviewed by Adam Barth.
-
-        This code basically re-implements the output of the TextTestRunner default
-        runner code from unittest, although the implementation is quite
-        different, in preparation for changing the test output to be
-        metered and possibly running in parallel.
-
-        The output is almost identical to before, except that instead of
-        logging "test_regular (webkitpy.main.RunnerTest) passed" we log
-        "webkitpy.main.RunnerTest.test_regular passed". It has always
-        annoyed me that they invert the names to be harder to read and
-        so that you can't copy & paste back to the input for
-        test-webkitpy.
-
-        This patch is provided to add a skeleton for unit tests and for
-        comparison to an upcoming patch that will actually add new
-        functionality.
-
-        * Scripts/webkitpy/test/main.py:
-        (Tester.__init__):
-        (Tester._configure_logging):
-        (Tester._run_tests):
-        * Scripts/webkitpy/test/runner.py: Added.
-        (TestRunner):
-        (TestRunner.__init__):
-        (TestRunner.test_name):
-        (TestRunner.all_test_names):
-        (TestRunner.run):
-        (TestRunner.write_result):
-        (TestRunner.write_summary):
-        * Scripts/webkitpy/test/runner_unittest.py: Added.
-        (FakeModuleSuite):
-        (FakeModuleSuite.__init__):
-        (FakeModuleSuite.__str__):
-        (FakeModuleSuite.run):
-        (FakeTopSuite):
-        (FakeTopSuite.__init__):
-        (FakeLoader):
-        (FakeLoader.__init__):
-        (FakeLoader.top_suite):
-        (FakeLoader.loadTestsFromName):
-        (RunnerTest):
-        (RunnerTest.test_regular):
-        (RunnerTest.test_verbose):
-
-2012-03-27  Gustavo Noronha Silva  <gns@gnome.org>
-
-        [GTK] Build gnutls without p11-kit support
-        https://bugs.webkit.org/show_bug.cgi?id=82212
-
-        Reviewed by Martin Robinson.
-
-        * gtk/jhbuild.modules: pass --without-p11-kit to gnutls'
-        configure, to avoid requiring that dependency, which is not used
-        by libsoup and WebKit anyway
-
-2012-03-27  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Make debug build work on 32 bit
-        https://bugs.webkit.org/show_bug.cgi?id=82331
-
-        Use --no-keep-memory option of ld not to cache the symbol tables of input files in
-        memory to avoid memory exhaustion during the linking phase for x86-debug builds.
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/unix/default_post.prf:
-        * qmake/mkspecs/features/unix/default_pre.prf:
-
-2012-03-23  Balazs Ankes  <bank@inf.u-szeged.hu>
-
-        Add png checking to check-webkit-style
-        https://bugs.webkit.org/show_bug.cgi?id=75824
-
-        Reviewed by NOBODY Tony Chang.
-
-        * Scripts/webkitpy/style/checker.py:
-        (_all_categories):
-        (FileType):
-        (CheckerDispatcher._should_skip_file_path):
-        (CheckerDispatcher._file_type):
-        (CheckerDispatcher._create_checker):
-        * Scripts/webkitpy/style/checker_unittest.py:
-        (CheckerDispatcherDispatchTest.test_none_paths):
-        * Scripts/webkitpy/style/checkers/png.py: Added.
-        (PNGChecker):
-        (PNGChecker.__init__):
-        (PNGChecker.check):
-        (PNGChecker._config_file_path):
-        * Scripts/webkitpy/style/checkers/png_unittest.py: Added.
-        (MockSCMDetector):
-        (MockSCMDetector.__init__):
-        (MockSCMDetector.display_name):
-        (MockSCMDetector.propget):
-        (PNGCheckerTest):
-        (PNGCheckerTest.test_init):
-        (PNGCheckerTest.test_init.mock_handle_style_error):
-        (PNGCheckerTest.test_check):
-        (PNGCheckerTest.test_check.mock_handle_style_error):
-        * Scripts/webkitpy/style/patchreader.py:
-        (PatchReader.check):
-
-2012-03-27  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed. Skip GTK+ unit tests that fail in the bots
-
-        * Scripts/run-gtk-tests:
-        (TestRunner): Add failing tests to the skipped list.
-
-2012-03-27  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed. Unskip all GTK+ unit test.
-
-        Currently, skipped tests contains the list of unit tests that have
-        failed in one or more bots. In this moment it's not possible to
-        skip just the test cases that fail, so the complete unit test is
-        skipped when a single test case fails. For that reason, we don't
-        know which test cases are actually failing for every skipped
-        test. We are planning to land a patch to allow skipping individual
-        test cases, but first we need to know which test cases are
-        currently failing in the bots to skip them. So, this patch simply
-        unskips all unit tests in order to watch the bots and get the list
-        of test cases failing. Failing tests will be skipped again as soon
-        as we have the new list of failing test cases.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner): Reset the list of skipped tests.
-
-2012-03-26  Scott Byer  <scottbyer@chromium.org>
-
-        Enable layout testing of the scroll animator.
-        https://bugs.webkit.org/show_bug.cgi?id=81858
-        Add a call to the InternalSettings that layout tests can use to
-        turn on scroll animation. Enable animation updates for the
-        Chromium platform DRT when scroll animation has been turned on in
-        a test. This should be a no-op for all current layout tests.
-
-        Reviewed by James Robinson.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::serviceAnimation):
-        (WebViewHost::scheduleAnimation):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-03-26  Dinu Jacob  <dinu.jacob@nokia.com>
-
-        [Qt][WK2] Support multi-file upload
-        https://bugs.webkit.org/show_bug.cgi?id=81589
-
-        Reviewed by Simon Hausmann.
-
-        Modified filePicker to support multi-file upload.
-
-        * MiniBrowser/qt/MiniBrowser.qrc:
-        * MiniBrowser/qt/icons/checkbox_checked.png: Added.
-        * MiniBrowser/qt/icons/checkbox_unchecked.png: Added.
-        * MiniBrowser/qt/js/MultiSelect.js: Added.
-        (values):
-        (isSelected):
-        (removeValue):
-        * MiniBrowser/qt/qml/CheckBox.qml: Added.
-        * MiniBrowser/qt/qml/FilePicker.qml:
-
-2012-03-26  Mark Hahnenberg  <mhahnenberg@apple.com>
-
-        Retry crashing tests serially at the end of NRWT on Apple Mac
-        https://bugs.webkit.org/show_bug.cgi?id=82233
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.run):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.should_retry_crashes):
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.should_retry_crashes):
-
-2012-03-26  Mark Hahnenberg  <mhahnenberg@apple.com>
-
-        NRWT should retry failures serially
-        https://bugs.webkit.org/show_bug.cgi?id=82241
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._run_tests): Add another parameter to specify the number of workers to use.
-        (Manager.run): Run the failures serially.
-
-2012-03-26  Adrienne Walker  <enne@google.com>
-
-        Allow expectations on directories in virtual test suites
-        https://bugs.webkit.org/show_bug.cgi?id=82250
-
-        Reviewed by Dirk Pranke.
-
-        lookup_virtual_test_base was only returning valid results for files
-        and not directories. Fix by falling back to the virtual test suite
-        mapping if possible.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.lookup_virtual_test_base):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort.skipped_tests):
-        (TestPort.virtual_test_suites):
-
-2012-03-26  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix duplicated ChangeLog entry from r112171.
-
-        Unreviewed, build fix.
-
-2012-03-26  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: remove --worker-model flag
-        https://bugs.webkit.org/show_bug.cgi?id=82112
-
-        Reviewed by Adam Barth.
-
-        The --worker-model=inline flag is basically redundant with the
-        --child-processes=1 flag (technically, you could one run child
-        process, but this is only useful for testing); this patch
-        removes this flag, which simplifies things and enables more
-        cleanup down the road.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._run_tests):
-        (Manager.print_config):
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        (get):
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker_unittest.py:
-        (make_broker):
-        (FunctionTests.test_get__inline):
-        (FunctionTests.test_get__processes):
-        (_TestsMixin.setUp):
-        (_TestsMixin.make_broker):
-        (InlineBrokerTests.setUp):
-        (MultiProcessBrokerTests.setUp):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.default_child_processes):
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.check_sys_deps):
-        * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:
-        (ChromiumAndroidPortTest):
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        (MockDRTPortTest.make_port):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (PortTestCase):
-        (PortTestCase.make_port):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort.default_child_processes):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (_set_up_derived_options):
-        (parse_args):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (parse_args):
-        (MainTest.test_batch_size):
-        (MainTest.test_child_processes_2):
-        (MainTest.test_child_processes_min):
-        (MainTest.test_exception_raised):
-        (MainTest.test_keyboard_interrupt):
-        (MainTest.test_exit_after_n_crashes):
-        (MainTest.assert_run_order):
-        (MainTest.test_run_order__inline):
-        (MainTest.test_virtual):
-
-2012-03-26  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: split test-finding code into a different module
-        https://bugs.webkit.org/show_bug.cgi?id=82253
-
-        Reviewed by Adam Barth.
-
-        Per suggestion from abarth, this change splits all the
-        filesystem-crawling, test-finding code in test-webkitpy out into
-        a separate module and switches to using a FileSystem object.
-        This makes things much more testable, so we also add tests :).
-
-        We also add a realpath() method to the Filesystem object, since
-        test-webkitpy needs that in order to be able to resolve symlinks
-        properly to determine whether a file is under a particular tree
-        or not.
-
-        * Scripts/webkitpy/common/system/filesystem.py:
-        (FileSystem.realpath):
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        (MockFileSystem.realpath):
-        * Scripts/webkitpy/test/main.py:
-        (Tester.__init__):
-        (Tester.add_tree):
-        (Tester.run):
-        (Tester._run_tests):
-        (Tester._log_exception):
-        * Scripts/webkitpy/test/test_finder.py: Added.
-        (TestDirectoryTree):
-        (TestDirectoryTree.__init__):
-        (TestDirectoryTree.find_modules):
-        (TestDirectoryTree.find_modules.file_filter):
-        (TestDirectoryTree.to_module):
-        (TestDirectoryTree.clean):
-        (TestFinder):
-        (TestFinder.__init__):
-        (TestFinder.add_tree):
-        (TestFinder.additional_paths):
-        (TestFinder.clean_trees):
-        (TestFinder.is_module):
-        (TestFinder.to_module):
-        (TestFinder.find_names):
-        (TestFinder._exclude):
-        * Scripts/webkitpy/test/test_finder_unittest.py: Added.
-        (TestFinderTest):
-        (TestFinderTest.setUp):
-        (TestFinderTest.tearDown):
-        (TestFinderTest.test_additional_system_paths):
-        (TestFinderTest.test_is_module):
-        (TestFinderTest.test_to_module):
-        (TestFinderTest.test_clean):
-        (TestFinderTest.test_find_names):
-
-2012-03-26  Raphael Kubo da Costa  <rakuco@FreeBSD.org>
-
-        [jhbuild] Use $MAKE if it is defined to build jhbuild itself.
-        https://bugs.webkit.org/show_bug.cgi?id=82209
-
-        Reviewed by Martin Robinson.
-
-        Respecting the $MAKE environment variable when it is defined makes
-        building jhbuild more portable, as some platforms may have GNU
-        make as gmake, for example.
-
-        * jhbuild/jhbuild-wrapper:
-        (install_jhbuild):
-
-2012-03-26  Dirk Pranke  <dpranke@chromium.org>
-
-        add a Tree abstraction to test-webkitpy to better encapsulate things
-        https://bugs.webkit.org/show_bug.cgi?id=82158
-
-        Reviewed by Adam Barth.
-
-        There are no functional changes in this patch, but adding a
-        basic abstraction for the trees we are looking in for python
-        tests will allow me to add some features later on more easily
-        (like ignoring certain directories like webkitpy/thirdparty),
-        and it makes things slightly less hard-coded.
-
-        * Scripts/test-webkitpy:
-        * Scripts/webkitpy/test/main.py:
-        (Tester.__init__):
-        (Tester):
-        (Tester.add_tree):
-        (Tester._parse_args):
-        (Tester._configure):
-        (Tester.run):
-        (Tester._find_modules):
-        (Tester._run_tests):
-        (Tester._is_module):
-        (Tester._log_exception):
-        (TestDirectoryTree):
-        (TestDirectoryTree.__init__):
-        (TestDirectoryTree.find_modules):
-        (TestDirectoryTree.clean):
-
-2012-03-26  Ojan Vafai  <ojan@chromium.org>
-
-        garden-o-matic should special case reftests
-        https://bugs.webkit.org/show_bug.cgi?id=81812
-
-        Reviewed by Adam Barth.
-
-        On the examine page, don't show a rebaseline button for reftests.
-        We still show it on the failure summary page because tests are grouped
-        together. Long-term, we should make sure webkit-patch rebaseline-test
-        never tries to rebaseline reftests.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/results.css:
-
-2012-03-26  Dirk Pranke  <dpranke@chromium.org>
-
-        clean up NRWT logging/metering, be less verbose
-        https://bugs.webkit.org/show_bug.cgi?id=73846
-
-        Reviewed by Ojan Vafai.
-
-        Re-land r112014 with a build fix for Python 2.6 compatibility.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ManagerTest.test_http_locking):
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        (AbstractWorker.run):
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        (Worker.__init__):
-        (Worker._set_up_logging):
-        (Worker):
-        (Worker._set_up_host_and_port):
-        (Worker.run):
-        (Worker.cleanup):
-        * Scripts/webkitpy/layout_tests/controllers/worker_unittest.py:
-        (WorkerTest.test_default_platform_in_worker):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (run):
-        (main):
-        * Scripts/webkitpy/layout_tests/views/metered_stream.py:
-        (MeteredStream):
-        (MeteredStream.implements):
-        (MeteredStream._erasure):
-        (MeteredStream._ensure_newline):
-        (MeteredStream.__init__):
-        (MeteredStream.__del__):
-        (MeteredStream.cleanup):
-        (MeteredStream.write_throttled_update):
-        (MeteredStream.write_update):
-        (MeteredStream.write):
-        (MeteredStream.writeln):
-        (MeteredStream._erase_last_partial_line):
-        (_LogHandler):
-        (_LogHandler.__init__):
-        (_LogHandler.emit):
-        * Scripts/webkitpy/layout_tests/views/metered_stream_unittest.py:
-        (RegularTest):
-        (RegularTest.setUp):
-        (RegularTest.tearDown):
-        (RegularTest.time_fn):
-        (RegularTest.test_logging_not_included):
-        (RegularTest._basic):
-        (RegularTest.test_basic):
-        (RegularTest._log_after_update):
-        (RegularTest.test_log_after_update):
-        (TtyTest):
-        (TtyTest.test_basic):
-        (TtyTest.test_log_after_update):
-        (VerboseTest):
-        (VerboseTest.test_basic):
-        (VerboseTest.test_log_after_update):
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (parse_print_options):
-        (Printer.__init__):
-        (Printer.cleanup):
-        (Printer.print_progress):
-        (Printer.print_update):
-        (Printer._write):
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-        (Testprinter.get_printer):
-        (Testprinter.test_print_progress):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner.__init__):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (test_run_test_pause_before_testing):
-
-2012-03-26  Raphael Kubo da Costa  <rakuco@FreeBSD.org>
-
-        [jhbuild] Revert $MAKE environment hack introduced in r101929.
-        https://bugs.webkit.org/show_bug.cgi?id=82234
-
-        Reviewed by Martin Robinson.
-
-        The problem it was supposedly fixing was fixed in jhbuild itself
-        in git revision da8944d8ca987ca48c91b350257a530050406092, so we
-        can remove the workaround added to the script.
-
-        * jhbuild/jhbuild-wrapper:
-        (install_jhbuild):
-
-2012-03-26  Leo Yang  <leo.yang@torchmobile.com.cn>
-
-        [BlackBerry] Skeleton code of AsyncFileSystemBlackBerry.cpp
-        https://bugs.webkit.org/show_bug.cgi?id=82157
-
-        Reviewed by Rob Buis.
-
-        * Scripts/build-webkit:
-        Make ENABLE_FILE_SYSTEM default on for blackberry.
-
-2012-03-26  Raphael Kubo da Costa  <rakuco@FreeBSD.org>
-
-        [jhbuild] Explicitly disable DTrace when building glib.
-        https://bugs.webkit.org/show_bug.cgi?id=82145
-
-        Reviewed by Gustavo Noronha Silva.
-
-        DTrace support is not really needed by WebKit, so disabling it
-        helps avoid some build errors on more exotic platforms (such as
-        FreeBSD).
-
-        * efl/jhbuild.modules:
-        * gtk/jhbuild.modules:
-
-2012-03-26  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r111993.
-        http://trac.webkit.org/changeset/111993
-        https://bugs.webkit.org/show_bug.cgi?id=82184
-
-        It broke layout and API tests and made WTR crash (Requested by
-        Ossy on #webkit).
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-
-2012-03-25  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix. Move WTF to its own static lib build.
-
-        * waf/build/settings.py:
-        (common_configure):
-
-2012-03-24  Chris Fleizach  <cfleizach@apple.com>
-
-        AX: Support solution to handle invalid ax text marker
-        https://bugs.webkit.org/show_bug.cgi?id=82023
-
-        Reviewed by Oliver Hunt.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (indexForTextMarkerCallback):
-        (isTextMarkerValidCallback):
-        (textMarkerForIndexCallback):
-        (AccessibilityUIElement::indexForTextMarker):
-        (AccessibilityUIElement::isTextMarkerValid):
-        (AccessibilityUIElement::textMarkerForIndex):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        (AccessibilityUIElement):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::indexForTextMarker):
-        (AccessibilityUIElement::textMarkerForIndex):
-        (AccessibilityUIElement::isTextMarkerValid):
-        * WebKitTestRunner/InjectedBundle/AccessibilityUIElement.cpp:
-        (WTR::AccessibilityUIElement::indexForTextMarker):
-        (WTR::AccessibilityUIElement::isTextMarkerValid):
-        (WTR::AccessibilityUIElement::textMarkerForIndex):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/AccessibilityUIElement.h:
-        (AccessibilityUIElement):
-        * WebKitTestRunner/InjectedBundle/Bindings/AccessibilityUIElement.idl:
-        * WebKitTestRunner/InjectedBundle/mac/AccessibilityUIElementMac.mm:
-        (WTR):
-        (WTR::AccessibilityUIElement::indexForTextMarker):
-        (WTR::AccessibilityUIElement::isTextMarkerValid):
-        (WTR::AccessibilityUIElement::textMarkerForIndex):
-
-2012-03-24  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r112014.
-        http://trac.webkit.org/changeset/112014
-        https://bugs.webkit.org/show_bug.cgi?id=82138
-
-        Broke SnowLeopard, Chromium and GTK+ bots (Requested by kov on
-        #webkit).
-
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ManagerTest.test_http_locking):
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        (AbstractWorker.run):
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        (Worker.__init__):
-        (Worker.safe_init):
-        (Worker.run):
-        (Worker.cleanup):
-        * Scripts/webkitpy/layout_tests/controllers/worker_unittest.py:
-        (WorkerTest.test_default_platform_in_worker):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (run):
-        (main):
-        * Scripts/webkitpy/layout_tests/views/metered_stream.py:
-        (MeteredStream):
-        (MeteredStream.is):
-        (MeteredStream.__init__):
-        (MeteredStream.write):
-        (MeteredStream.update):
-        (MeteredStream._overwrite):
-        (MeteredStream._reset):
-        * Scripts/webkitpy/layout_tests/views/metered_stream_unittest.py:
-        (TestMeteredStream):
-        (TestMeteredStream.test_regular):
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (_configure_logging):
-        (_restore_logging):
-        (Printer.__init__):
-        (Printer.cleanup):
-        (Printer.print_progress):
-        (Printer.print_update):
-        (Printer._write):
-        (Printer):
-        (Printer._update):
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-        (TestUtilityFunctions.assertEmpty):
-        (TestUtilityFunctions):
-        (TestUtilityFunctions.assertNotEmpty):
-        (TestUtilityFunctions.assertWritten):
-        (TestUtilityFunctions.test_configure_logging):
-        (Testprinter.get_printer):
-        (Testprinter.test_print_progress):
-        (Testprinter.test_print_progress.mock_time):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner.__init__):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (test_run_test_pause_before_testing):
-
-2012-03-24  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed. Fix the build after WTF move.
-
-        * waf/build/build_utils.py:
-        (get_excludes):
-        (get_excludes_in_dirs):
-        * waf/build/settings.py:
-        (get_port_excludes):
-        (common_configure):
-
-2012-03-24  Dirk Pranke  <dpranke@chromium.org>
-
-        clean up NRWT logging/metering, be less verbose
-        https://bugs.webkit.org/show_bug.cgi?id=73846
-
-        Reviewed by Ojan Vafai.
-
-        This patch totally rewrites the metered_stream module and
-        changes the way it and the printing module now interact with the
-        logging subsystem.
-
-        The printing module becomes a dumb layout_tests-specific wrapper around
-        the metered stream. All of the intelligence of how and when to
-        actually write (or erase) lines and how things interact with
-        logging moves into the metered stream.
-
-        As of now, anything written to the metered stream *bypasses the
-        logging system*. If a logger is passed to the meter constructor,
-        the metered stream will also attach a log handler so that all
-        messages fed to the logger will also be written to the metered
-        stream. This detangles the logic that used to exist where
-        sometimes the meter would write to the logger and sometimes the
-        logger would write to the meter.
-
-        All of this makes the logic generic and reusable for
-        test-webkitpy (coming in another patch). It also helps clarify
-        what the mysterious "configure_logging" parameter to the printer
-        constructor used to do (that parameter itself is gone now, and
-        by default the printer and metered_stream will not ever touch
-        the logging system; this makes a bunch of tests less fragile).
-
-        All of the above should produce no user-visible changes.
-
-        However, to also fix the bug in question, we change the message
-        format in --verbose mode to %H:%M:%S.%frac %pid %message,
-        eliminating the date, file:lineno, and level parameters. I am
-        making this change at the same time because it would be
-        difficult to write things consistently between the logs and the
-        metered stream if we were still logging the file:lineno.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-          Remove the configure_logging parameter
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-          Use metered stream to configure the logging (we don't need a printer)
-          and be careful about when and how we manipulate the log level
-          and handlers on the root logger.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-          Pass in the root logger so that log messages are formatted
-          properly, and set the log level outside of any routines called
-          by unit tests so as to not interfere.
-        * Scripts/webkitpy/layout_tests/views/manager_worker_broker.py:
-          remove a duplicate log message.
-        * Scripts/webkitpy/layout_tests/views/metered_stream.py:
-          complete rewrite :).
-        * Scripts/webkitpy/layout_tests/views/metered_stream_unittest.py:
-          complete rewrite :).
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-          move the logging configuration into metered_stream, and also
-          move the "when should I log progress messages" into metered stream.
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-          remove tests that are no longer necessary.
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-          remove the configure_logging parameter.
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-          update the test; since the printer no longer writes to the log,
-          we need to check what is written to the regular_output instead.
-          (test_run_test_pause_before_testing):
-
-2012-03-24  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Add myself and Martin Robinson to:
-          * GStreamerGraphics
-          * GtkWebKit2PublicAPI
-          * SoupNetwork
-        and to the newly created WebKitGTKTranslations.
-
-        Rubber-stamped by Martin Robinson.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-03-24  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        [Qt][WK2] Implement PageClient::isViewWindowActive()
-        https://bugs.webkit.org/show_bug.cgi?id=81143
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Fix the WrapperWindow from our PlatformWebView
-        so it correctly creates the platform related
-        stuff for QWindow, which is not created unless
-        QWindow::setVisible() or QWindow::show() are called.
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-
-2012-03-23  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: don't wait for safari to exit before exiting after showing the results file
-        https://bugs.webkit.org/show_bug.cgi?id=81845
-
-        Reviewed by Ryosuke Niwa.
-
-        Prior to this change, if you ran new-run-webkit-tests and
-        displayed the HTML results file at the end, we would block
-        waiting for the user to quit the browser. There doesn't seem to
-        be a need for that, and the Chromium ports don't do this.
-
-        Also, update the mac tests to capture the output and be quiet :).
-
-        * Scripts/webkitpy/common/system/executive_mock.py:
-          Make popen() testable, implement should_log for it.
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.show_results_html_file):
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-          Silence some of the tests via outputcapture.
-
-2012-03-23  Gustavo Noronha Silva  <gns@gnome.org>
-
-        [GTK] libgcrypt and p11-kit should not be in jhbuild modules
-        https://bugs.webkit.org/show_bug.cgi?id=82073
-
-        Reviewed by Martin Robinson.
-
-        * Scripts/webkitdirs.pm:
-        (jhbuildConfigurationChanged): new function that isolates the
-        jhbuild configuration change checking from the autogen logic.
-        (mustReRunAutogen): code for the new function lived here.
-        (buildAutotoolsProject): now calls jhbuildConfigurationChanged
-        itself, and cleans up the jhbuild root if configuration has
-        changed; it also forces autogen to be run in that case, to
-        make sure the new libraries are used.
-        * gtk/jhbuild.modules: removed libgcrypt and p11-kit.
-        * jhbuild/jhbuild-wrapper:
-        (ensure_jhbuild): this might be run inside a jhbuild environment,
-        in which case aclocal fails when trying to use the now deleted
-        aclocal directory in the jhbuild prefix, so work around that.
-
-2012-03-23  Ojan Vafai  <ojan@chromium.org>
-
-        garden-o-matic scrolls to the top of the page when you click an accordion item
-        https://bugs.webkit.org/show_bug.cgi?id=82088
-
-        Reviewed by Adam Barth.
-
-        Check the scroll position and make sure that the clicked accordion item is visible.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
-
-2012-03-23  Dirk Pranke  <dpranke@chromium.org>
-
-        LayoutTestHelper could get torn down earlier (mostly to reset color profile)
-        https://bugs.webkit.org/show_bug.cgi?id=80567
-
-        Reviewed by Ryosuke Niwa.
-
-        Move clean_up_run to occur right after we finish testing and
-        before we start processing the results. Also makes set_up_run()
-        and clean_up_run() private since there's no real need for
-        callers to be aware of them.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._set_up_run):
-        (Manager.run):
-        (Manager._clean_up_run):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ManagerTest.test_http_locking):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (run):
-
-2012-03-23  Dean Jackson  <dino@apple.com>
-
-        Disable CSS_SHADERS in Apple builds
-        https://bugs.webkit.org/show_bug.cgi?id=81996
-
-        Reviewed by Simon Fraser.
-
-        Default enableCSSShaders to be 0 on all builds that use
-        this script. Use the flag to turn it back on.
-
-        * Scripts/build-webkit:
-
-2012-03-23  Tony Chang  <tony@chromium.org>
-
-        [chromium] rename newwtf target back to wtf
-        https://bugs.webkit.org/show_bug.cgi?id=82064
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-03-23  Jessie Berlin  <jberlin@apple.com>
-
-        Assertion failure in PlatformPasteboardMac constructor causing multiple tests to "crash" on
-        the Lion Intel WebKit2 Debug bots.
-        https://bugs.webkit.org/show_bug.cgi?id=81012.
-
-        Rubber-stamped by Dan Bernstein.
-
-        Add a step to kill the pasteboard server while we investigate what is causing these
-        assertion failures (to get the bots green).
-
-        * BuildSlaveSupport/kill-old-processes:
-
-2012-03-22  Martin Robinson  <mrobinson@igalia.com>
-
-        [check-webkit-style] Alphabetical sorting errors in headers are reported for the line after the first out of order header
-        https://bugs.webkit.org/show_bug.cgi?id=81986
-
-        Reviewed by David Levin.
-
-        Track whether or not errors are filtered in error handlers. If an
-        alphabetical sorting error is reported for a header and filtered, try
-        reporting it for the other potential source of the error. This ensures
-        that the style bot can still find new sorting errors in both potential
-        situations:
-
-            #include <foo.h> <-- 1. edited line
-            #include <baz.h> <-- 2. edited line
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (check_include_line): Potentially report the error for both lines,
-        if the first error is filtered.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Implement a new style of
-        test that allows only reporting errors for certain lines. This verifies that
-        when one line of an ordering error is filtered, the error is reported on the
-        other line.
-        (ErrorCollector.__init__):
-        (ErrorCollector.__call__):
-        (CppStyleTestBase.perform_lint):
-        (CppStyleTestBase.perform_language_rules_check):
-        (CppStyleTestBase.assert_language_rules_check):
-        (OrderOfIncludesTest.test_check_alphabetical_include_order_errors_reported_for_both_lines):
-        Added a new test that verifies that when one line of the two lines of an ordering
-        error occur, the error is reported on the other line.
-        * Scripts/webkitpy/style/checkers/jsonchecker_unittest.py:
-        (MockErrorHandler.__call__): Report True because the error is handled.
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-        (ErrorCollector.__call__): Ditto.
-        * Scripts/webkitpy/style/checkers/watchlist_unittest.py:
-        (MockErrorHandler.__call__): Ditto.
-        * Scripts/webkitpy/style/checkers/xcodeproj_unittest.py:
-        (TestErrorHandler.__call__): Ditto.
-        * Scripts/webkitpy/style/checkers/xml_unittest.py:
-        (MockErrorHandler.__call__): Ditto.
-        * Scripts/webkitpy/style/error_handlers.py:
-        (DefaultStyleErrorHandler.__call__): Report True if the error is handled
-        and False if it is filtered.
-
-2012-03-23  Patrick Gansterer  <paroga@webkit.org>
-
-        Build fix for WinCE after r111778.
-
-        * WinCELauncher/CMakeLists.txt:
-
-2012-03-23  Peter Beverloo  <peter@chromium.org>
-
-        Unreviewed buildfix for the Chromium Android builder.
-
-        Disable the ImageDiff target for now. Android needs to build this for
-        host rather than for target (as other configurations do), but since the
-        WTF move the dependency chain got significantly more complicated.
-
-        I'll work out a proper fix in the following bug, but since several
-        things are broken due to this, this buildfix should be landed first.
-        https://bugs.webkit.org/show_bug.cgi?id=82039
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-03-23  Grzegorz Czajkowski  <g.czajkowski@samsung.com>
-
-        [EFL][DRT] Implement LayoutTestController's methods related with editing.
-        https://bugs.webkit.org/show_bug.cgi?id=80136
-
-        Reviewed by Ryosuke Niwa.
-
-        Implements EFL's LayoutTestController methods e.i. setSmartInsertDeleteEnabled,
-        setSelectTrailingWhitespaceEnabled.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setSmartInsertDeleteEnabled):
-        (LayoutTestController::setSelectTrailingWhitespaceEnabled):
-
-2012-03-22  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Convert hasGrammarMarker to use Internals interface
-        https://bugs.webkit.org/show_bug.cgi?id=82004
-
-        Reviewed by Ryosuke Niwa.
-
-        Remove hasGrammarMarker functions, because it is able to work in the
-        cross-port way through the Internals interface.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-
-2012-03-22  Adam Barth  <abarth@webkit.org>
-
-        sync-master-with-upstream creates non-linear git history
-        https://bugs.webkit.org/show_bug.cgi?id=82006
-
-        Reviewed by Julien Chaffraix.
-
-        Previously this script would create a merge commit at the HEAD of
-        origin/master, causing your fork of WebKit to diverge from upstream.
-        The new version of this script pushes directly from upstream to origin
-        (without round-tripping through any local branches), avoiding this
-        problem.
-
-        * Scripts/sync-master-with-upstream:
-
-2012-03-22  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Unreviewed build fix. Add knowledge of the WTF project to
-        the autotools build system scripts so that build-jsc works
-        correctly for GTK+.
-
-        * Scripts/webkitdirs.pm:
-        (buildAutotoolsProject): handle the WTF project, build the
-        libWTF.la target.
-        (buildGtkProject): add WTF to the list of supported projects.
-
-2012-03-22  Eric Seidel  <eric@webkit.org>
-
-        Make svn-apply re-write JavaScriptCore/wtf to WTF/wtf
-        https://bugs.webkit.org/show_bug.cgi?id=81984
-
-        Reviewed by Adam Barth.
-
-        * Scripts/VCSUtils.pm:
-        (adjustPathForRecentRenamings):
-
-2012-03-22  Raphael Kubo da Costa  <rakuco@FreeBSD.org>
-
-        [CMake] Fix build-jsc after r111778 and r111797.
-        https://bugs.webkit.org/show_bug.cgi?id=82001
-
-        Reviewed by Filip Pizlo.
-
-        Contrary to the comment in build-jsc, buildCMakeProjectOrExit()
-        does return if no error occurred, and build-jsc failed with
-        "building not defined for this platform".
-
-        * Scripts/build-jsc: Always exit after caling
-        buildCMakeProjectOrExit().
-        * Scripts/webkitdirs.pm:
-        (buildCMakeProjectOrExit): Return 0 if no error occurred.
-
-2012-03-22  Raphael Kubo da Costa  <rakuco@FreeBSD.org>
-
-        [CMake] Unreviewed build fix after r111778.
-
-        * DumpRenderTree/efl/CMakeLists.txt: Replace
-        ${JAVASCRIPTCORE_DIR}/wtf with ${WTF_DIR}/wtf in the include
-        paths.
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp: Use the right
-        wtf include.
-        * DumpRenderTree/efl/WorkQueueItemEfl.cpp: Ditto.
-        * WinCELauncher/CMakeLists.txt: Replace ${JAVASCRIPTCORE_DIR}/wtf
-        with ${WTF_DIR}/wtf in the include paths.
-
-2012-03-22  Filip Pizlo  <fpizlo@apple.com>
-
-        Tools/Scripts/build-jsc doesn't work after WTF move
-        https://bugs.webkit.org/show_bug.cgi?id=81999
-
-        Reviewed by Eric Seidel.
-        
-        For ports that require WTF and JSC to be built as two projects and where
-        the machinery to build both does not already exist, teach the tool to do
-        so for us.
-
-        * Scripts/build-jsc:
-        (buildMyProject):
-
-2012-03-22  Ojan Vafai  <ojan@chromium.org>
-
-        Fix accidental missing line in r111793.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base_unittests.js:
-        Remove base.values. It was unused and duplicates the builtin Object.values.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js:
-        Accidentally deleted this line before committing r111793.
-
-2012-03-22  Ojan Vafai  <ojan@chromium.org>
-
-        Move garden-o-matic progress feedback from non-modal dialogs to a status console anchored to the bottom of the page
-        https://bugs.webkit.org/show_bug.cgi?id=81983
-
-        Reviewed by Adam Barth.
-
-        The dialogs get in the way if you are doing multiple rebaselines. Also,
-        a number of people didn't realize that you could do multiple rebaselines
-        in parallel. A non-modal dialog is just confusing.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        If we're only rebaselining 1 test, show the test name in the initial message. Otherwise,
-        show the number of tests being rebaselined.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js:
-        Turn MessageBox into StatusArea. StatusArea is a singleton and messages in the StatusArea are grouped
-        by ID. That way, the results of each UI action (e.g. clicking rebaseline) are grouped together
-        into a single area.
-
-        Once addFinalMessage has been called for all IDs, we show the close button. Clicking close
-        also serves to clear all teh content in the StatusArea. 
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/results.css:
-
-2012-03-22  Tony Chang  <tony@chromium.org>
-
-        Unreviewed, fix chromium build after wtf move.
-
-        Only use newwtf, remove references to wtf.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-03-22  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Actually move WTF files to their new home
-        https://bugs.webkit.org/show_bug.cgi?id=81844
-
-        [Qt] Unreviewed buildfix after r111778.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-
-2012-03-22  Dan Bernstein  <mitz@apple.com>
-
-        Font fallback in WebKitTestRunner depends on user settings
-        https://bugs.webkit.org/show_bug.cgi?id=81978
-
-        Reviewed by Jessie Berlin.
-
-        * WebKitTestRunner/InjectedBundle/mac/InjectedBundleMac.mm:
-        (WTR::InjectedBundle::platformInitialize): Added an AppleLanguages key
-        with a value consisting of the array ("en") to the override defaults
-        dictionary. This is the same value used in DumpRenderTree, and it
-        ensures that font fallback follows a consistent path that is not
-        affected by the language preferences of the user running the test.
-
-2012-03-22  Andy Estes  <aestes@apple.com>
-
-        check-for-inappropriate-objc-class-names should ignore the class defined by libarclite.
-        https://bugs.webkit.org/show_bug.cgi?id=81971
-
-        Reviewed by Dan Bernstein.
-
-        Xcode will automatically link ObjC binaries against libarclite in some
-        cases, which defines a class called __ARCLite__.
-        check-for-inappropriate-objc-class-names shouldn't complain about this
-        class name.
-
-        * Scripts/check-for-inappropriate-objc-class-names:
-
-2012-03-22  Dirk Pranke  <dpranke@chromium.org>
-
-        new-run-webkit-tests blames the wrong test for crashing
-        https://bugs.webkit.org/show_bug.cgi?id=81951
-
-        Reviewed by Adam Barth.
-
-        NRWT wasn't extracting the WebProcess pid correct; should've
-        used re.search instead of re.match :(. Add more tests!
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort._get_crash_log):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver.has_crashed):
-        (WebKitDriver._check_for_driver_crash):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (WebKitDriverTest.test_no_timeout):
-        (WebKitDriverTest):
-        (WebKitDriverTest.test_check_for_driver_crash):
-        (WebKitDriverTest.test_check_for_driver_crash.FakeServerProcess):
-        (WebKitDriverTest.test_check_for_driver_crash.FakeServerProcess.__init__):
-        (WebKitDriverTest.test_check_for_driver_crash.FakeServerProcess.pid):
-        (WebKitDriverTest.test_check_for_driver_crash.FakeServerProcess.name):
-        (WebKitDriverTest.test_check_for_driver_crash.FakeServerProcess.has_crashed):
-        (WebKitDriverTest.test_check_for_driver_crash.assert_crash):
-
-2012-03-22  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] [DRT] Implement LayoutTestController::markerTextForListItem()
-        https://bugs.webkit.org/show_bug.cgi?id=81512
-
-        Adding missing implementation markerTextForListItem to EFL's
-        LayoutTestController so that we can unskip related tests from
-        the skip list.
-
-        Reviewed by Antonio Gomes.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::markerTextForListItem): Implemented.
-
-2012-03-22  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] Enable view mode media feature layout tests
-        https://bugs.webkit.org/show_bug.cgi?id=81205
-
-        Adding missing implementation setViewModeMediaFeature to EFL's 
-        LayoutTestController so that we can unskip view mode 
-        media feature layout tests.
-
-        Reviewed by Antonio Gomes.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setViewModeMediaFeature): Implemented.
-
-2012-03-22  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: crash while stopping layout test helper on apple mac lion
-        https://bugs.webkit.org/show_bug.cgi?id=81949
-
-        Reviewed by Eric Seidel.
-
-        stop_helper() didn't work right if the helper process wasn't
-        still running or didn't respond properly to being shut down. Fix
-        this and add some tests. Also add code to MockExecutive() to be
-        able to mock executive.popen() properly.
-
-        * Scripts/webkitpy/common/system/executive_mock.py:
-        (MockProcess.__init__):
-        (MockProcess.wait):
-        (MockExecutive.__init__):
-        (MockExecutive.popen):
-        * Scripts/webkitpy/common/system/systemhost_mock.py:
-        (MockSystemHost.__init__):
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.start_helper):
-        (MacPort.stop_helper):
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        (test_get_crash_log):
-        (test_helper_starts):
-        (test_helper_fails_to_start):
-        (test_helper_fails_to_stop):
-        (test_helper_fails_to_stop.bad_waiter):
-
-2012-03-22  Gustavo Noronha Silva  <gns@gnome.org>
-
-        [GTK] Add make to the jhbuild moduleset
-        https://bugs.webkit.org/show_bug.cgi?id=81769
-
-        Reviewed by Martin Robinson.
-
-        Mostly based on a patch by Carlos Garcia Campos <cgarcia@igalia.com>.
-        Add GNU make with custom patches to fix several issues:
-
-        - make-3.82-arg-list-length.patch: Patch by Ralf Wildenhues to
-          fix the argument list limit of GNU make when running make
-          distcheck.
-        - make-3.82-parallel-build.patch: Patch by Kamil Mierzejewski
-          and Jeremy Devenport to fix parallel build issues present in
-          GNU make 3.82
-
-        * gtk/jhbuild.modules: Added make with patches.
-        * gtk/patches/make-3.82-arg-list-length.patch: Added.
-        * gtk/patches/make-3.82-parallel-build.patch: Added.
-
-2012-03-22  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed. Adding Source/WTF to the build and updating
-        waf port list.
-
-        * DumpRenderTree/wscript:
-        * waf/build/settings.py:
-
-2012-03-22  Dirk Pranke  <dpranke@chromium.org>
-
-        Re-land fix for r81603 yet again (!) with latest build fix.
-        https://bugs.webkit.org/show_bug.cgi?id=81603
-
-        Unreviewed, build fix.
-
-        The latest problem was a bad sprintf() in
-        BasePort._get_crash_log(). I've reworked that routine and added
-        unit tests for coverage.
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner._handle_error):
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer.py:
-        (write_test_result):
-        (TestResultWriter.write_crash_log):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.diff_text):
-        (Port._get_crash_log):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumDriver.run_test):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumDriverTest.test_crash_log):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (DriverOutput.__init__):
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.is_lion):
-        (MacPort._get_crash_log):
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        (test_default_child_processes):
-        (test_get_crash_log):
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        (MockDRTPortTest.test_get_crash_log):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (PortTestCase.test_get_crash_log):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestDriver.run_test):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver.__init__):
-        (WebKitDriver._start):
-        (WebKitDriver.has_crashed):
-        (WebKitDriver._check_for_driver_crash):
-        (WebKitDriver.run_test):
-
-2012-03-22  Alexander Færøy  <alexander.faeroy@nokia.com>
-
-        [Qt] Enable support for handling database quota's in the MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=81928
-
-        Reviewed by Simon Hausmann.
-
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-
-2012-03-22  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] Implement LayoutTestController::setEditingBehavior
-        https://bugs.webkit.org/show_bug.cgi?id=81124
-
-        Adding missing implementation setEditingBehavior to EFL's
-        LayoutTestController. This implementation allows us to
-        unskip some tests from the skip list.
-
-        Reviewed by Martin Robinson.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setEditingBehavior): Implemented.
-
-2012-03-22  Carlos Garcia Campos  <cgarcia@bb-webkit-rel-64.local.igalia.com>
-
-        [GTK] Use the angle-bracket form to include wtf headers
-        https://bugs.webkit.org/show_bug.cgi?id=81884
-
-        Reviewed by Eric Seidel.
-
-        Use #include <wtf/foo> instead of #include "foo".
-
-        * DumpRenderTree/gtk/AccessibilityCallbacks.cpp:
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        * DumpRenderTree/gtk/EditingCallbacks.cpp:
-        * DumpRenderTree/gtk/WorkQueueItemGtk.cpp:
-        * WebKitTestRunner/gtk/EventSenderProxyGtk.cpp:
-
-2012-03-22  Alexander Færøy  <alexander.faeroy@nokia.com>
-
-        Unreviewed, add Michael Brüning and Allan Jensen to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-03-22  Allan Sandfeld Jensen  <allan.jensen@nokia.com>
-
-        [Qt] Enable FAST_MOBILE_SCROLLING when scrolling is delegated.
-        https://bugs.webkit.org/show_bug.cgi?id=81889
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Enable FAST_MOBILE_SCROLLING feature.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-03-22  Raphael Kubo da Costa  <rakuco@FreeBSD.org>
-
-        [EFL] DRT: Do not pass a relative path to DOWNLOADED_FONTS_DIR.
-        https://bugs.webkit.org/show_bug.cgi?id=81900
-
-        Reviewed by Gustavo Noronha Silva.
-
-        r111598 added the DOWNLOADED_FONTS_DIR define, but it used a relative
-        path which assumed a certain directory structure for the build
-        directory which may noy be true.
-
-        Instead, hardcode the path to the downloaded fonts starting from the
-        top-level source directory. While this solution is also far from
-        perfect, it makes it more consistent and reliable, and easier to
-        tackle at once with the rest of bug 81475.
-
-        * DumpRenderTree/efl/CMakeLists.txt:
-
-2012-03-22  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Allow to run any jhbuild command with jhbuild-wrapper script
-        https://bugs.webkit.org/show_bug.cgi?id=81888
-
-        Reviewed by Philippe Normand.
-
-        * Scripts/update-webkit-libs-jhbuild:
-        (runJhbuild): Helper function to run jhbuild with a given command.
-        Instead of running jhbuild directly, use the jhbuild-wrapper, so
-        that we don't need to run it first to check whether jhbuild is
-        installed or not.
-        * efl/run-with-jhbuild: Call jhbuild-wrapper with run command.
-        * gtk/run-with-jhbuild: Ditto.
-        * jhbuild/jhbuild-wrapper: Allow to execute any jhbuild command,
-        not only run.
-
-2012-03-22  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, test-webkitpy fix after r111661.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_crash_log):
-        (MainTest.test_web_process_crash_log):
-
-2012-03-22  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, test-webkitpy fix after r111642.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumDriverTest.setUp):
-        (ChromiumDriverTest.test_two_drivers):
-
-2012-03-22  Csaba Osztrogonác  <ossy@webkit.org>
-
-        webkitpy: clean up actually getting crash logs from DRT/WTR crashes
-        https://bugs.webkit.org/show_bug.cgi?id=81603
-
-        Unreviewed rolling out r111609 and part of r111615,
-        because it broke NRWT on Qt-WK2 platform.
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner._handle_error):
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer.py:
-        (write_test_result):
-        (TestResultWriter.write_crash_report):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.is_crash_reporter):
-        (Port._driver_class):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumDriver.run_test):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumDriverTest.test_crashed_process_name):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (DriverOutput.__init__):
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort):
-        (MacPort.is_crash_reporter):
-        (MacPort.release_http_lock):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestDriver.run_test):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver.__init__):
-        (WebKitDriver._start):
-        (WebKitDriver.has_crashed):
-        (WebKitDriver._check_for_driver_crash):
-        (WebKitDriver.run_test):
-
-2012-03-22  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Add full platforms to Qt buildslaves
-        https://bugs.webkit.org/show_bug.cgi?id=81877
-
-        Reviewed by Ryosuke Niwa.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-03-21  Johnny Ding  <jnd@chromium.org>
-
-        Customize layout test timeout value for different ports.
-        https://bugs.webkit.org/show_bug.cgi?id=79859
-
-        Reviewed by Ojan Vafai.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.default_test_timeout_ms):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumDriver.stop):
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.default_test_timeout_ms):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (_set_up_derived_options):
-
-2012-03-21  Mark Rowe  <mrowe@apple.com>
-
-        Fix the build.
-
-        Ensure that our test tools don't try and use RTTI unnecessarily.
-
-        * DumpRenderTree/mac/Configurations/Base.xcconfig:
-        * TestWebKitAPI/Configurations/Base.xcconfig:
-        * WebKitTestRunner/Configurations/Base.xcconfig:
-
-2012-03-21  Adam Barth  <abarth@webkit.org>
-
-        WebKit should have some scripts to smooth interactions with GitHub
-        https://bugs.webkit.org/show_bug.cgi?id=81842
-
-        Reviewed by Eric Seidel.
-
-        These scripts support the workflow in
-        https://trac.webkit.org/wiki/UsingGitHub by automating the
-        configuration and syncing operations needed for a GitHub fork of WebKit
-        to track the main WebKit repository.
-
-        * Scripts/configure-github-as-upstream: Added.
-        * Scripts/sync-master-with-upstream: Added.
-
-2012-03-21  Dirk Pranke  <dpranke@chromium.org>
-
-        WTR - log the pid of a crashing WebProcess
-        https://bugs.webkit.org/show_bug.cgi?id=81575
-
-        Reviewed by Alexey Proskuryakov.
-
-        This allows run-webkit-tests to find the right crash log for a
-        given crashed WebProcess in WebKit2.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::exceededDatabaseQuota):
-        (WTR::TestController::createOtherPage):
-        (WTR::TestController::initialize):
-        (WTR::TestController::resetStateToConsistentValues):
-        (WTR::TestController::runTest):
-        (WTR::TestController::processDidCrash):
-
-2012-03-21  Enrica Casucci  <enrica@apple.com>
-
-        WebKitURLWithTitles pasteboard format should support URLs containing Emoji characters.
-        https://bugs.webkit.org/show_bug.cgi?id=81835
-        <rdar://problem/11082749>
-
-        Reviewed by Brady Eidson.
-
-        * TestWebKitAPI/Tests/mac/ContextMenuCanCopyURL.html:
-        * TestWebKitAPI/Tests/mac/ContextMenuCanCopyURL.mm:
-        (TestWebKitAPI::contextMenuCopyLink):
-
-2012-03-21  Alexandru Chiculita  <achicu@adobe.com>
-
-        [CSS Shaders] Make CSS Shaders compile on Chromium
-        https://bugs.webkit.org/show_bug.cgi?id=81435
-
-        Reviewed by Stephen White.
-        
-        I've added WebKitCSSCustomFilterEnabled support for the layoutTestController.overridePreference function.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::overridePreference):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-        (WebPreferences):
-
-2012-03-21  Dirk Pranke  <dpranke@chromium.org>
-
-        fix regression on gtk port introduced by r111609
-        https://bugs.webkit.org/show_bug.cgi?id=81839
-
-        Reviewed by Philippe Normand.
-
-        r111609 should've initialized a couple of missing fields in
-        WebKitDriver, and also should've checked for method overrides
-        in the other ports :(.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkDriver._start):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver.__init__):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_crash_log):
-        (MainTest.test_web_process_crash_log):
-
-2012-03-21  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: clean up actually getting crash logs from DRT/WTR crashes
-        https://bugs.webkit.org/show_bug.cgi?id=81603
-
-        Reviewed by Adam Barth.
-
-        Add a new _get_crash_log() overridable method on the Port
-        object to customize how we fetch crash logs per port.
-        Mac will now slow-spin with a timeout waiting for the crash log, rather
-        than waiting for the ReportCrash process to exit (it appears
-        that the mac will manage multiple crashes with a single
-        ReportCrash process, the process waits around longer than
-        necessary, presumably to avoid thrashing if processes are
-        repeatedly crashing).
-
-        Also, add the DriverOutput should contain the crash log and other info,
-        which is created in a port-specific manner but can then be
-        treated generically. Previously single_test_runner would get
-        told that something crashed and attempt to do something to get
-        the crash log, but it didn't have the information it needed to
-        od the right thing; better to make the driver hand back the
-        right info.
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner._handle_error):
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer.py:
-        (write_test_result):
-        (TestResultWriter.write_crash_log):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.diff_text):
-        (Port._get_crash_log):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumDriver.run_test):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumDriverTest.test_crash_log):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (DriverOutput.__init__):
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.is_lion):
-        (MacPort._get_crash_log):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestDriver.run_test):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver.__init__):
-        (WebKitDriver._start):
-        (WebKitDriver.has_crashed):
-        (WebKitDriver._check_for_driver_crash):
-        (WebKitDriver.run_test):
-
-2012-03-21  Dominik Röttsches  <dominik.rottsches@linux.intel.com>
-
-        [EFL] Use jhbuild downloaded fonts instead of hardcoded system font paths
-        https://bugs.webkit.org/show_bug.cgi?id=81507
-
-        Now that we're only loading from one directory, no need to
-        iterate over a list of directories anymore.
-
-        Reviewed by Martin Robinson.
-
-        * DumpRenderTree/efl/CMakeLists.txt:
-        * DumpRenderTree/efl/FontManagement.cpp:
-        (addFontDirectory):
-        (addFontsToEnvironment):
-
-2012-03-21  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: get ServerProcess out of the reportcrash business
-        https://bugs.webkit.org/show_bug.cgi?id=81600
-
-        Unreviewed, build fix.
-
-        Re-land r111307 and r111293 with another fix for a crash in NRWT;
-        we need to check if the driver has crashed before attempting to
-        read from it.
-
-
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        (ServerProcess._reset):
-        (ServerProcess._handle_possible_interrupt):
-        (ServerProcess.write):
-        (ServerProcess.read_stdout):
-        (ServerProcess.has_crashed):
-        (ServerProcess._read):
-        (ServerProcess.stop):
-        * Scripts/webkitpy/layout_tests/port/server_process_unittest.py:
-        (TrivialMockPort.check_for_leaks):
-        (TestServerProcess.test_broken_pipe):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._read_image_diff):
-        (WebKitDriver.has_crashed):
-        (WebKitDriver._check_for_driver_crash):
-        (WebKitDriver.run_test):
-        (WebKitDriver._read_block):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (MockServerProcess.__init__):
-        (MockServerProcess):
-        (MockServerProcess.has_crashed):
-
-2012-03-21  Zeno Albisser  <zeno@webkit.org>
-
-        [Qt][Mac] ranlib segfaults when creating symbol tables for libWebCore.a.
-        https://bugs.webkit.org/show_bug.cgi?id=81750
-
-        Building WebCore on mac currently creates an archive that is bigger than
-        4GB. But ranlib fails to create a symbol table for such a big archive,
-        even on 64bit machines.
-        Therefore we start using SVGAllInOne.cpp when building debug
-        on mac. This reduces the size of the archive by about 300MB.
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/mac/default_pre.prf:
-
-2012-03-21  Szilard Ledan  <szledan@inf.u-szeged.hu>
-
-        Updated the address list of committers.py.
-
-        Reviewed by Csaba Osztrogonác.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-03-21  W. James MacLean  <wjmaclean@chromium.org>
-
-        Updating my nick in committers file.
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-03-21  Peter Beverloo  <peter@chromium.org>
-
-        [Chromium] Remove Android build-fix when the proper fix rolled into WebKit
-        https://bugs.webkit.org/show_bug.cgi?id=80861
-
-        Reviewed by Tony Chang.
-
-        Remove most Android-specific logic from webkitdirs.pm in favor of
-        handling this during project generation time.
-
-        * Scripts/webkitdirs.pm:
-        (buildChromiumMakefile):
-
-2012-03-21  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Allow running javascript from location bar in MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=81331
-
-        Reviewed by Martin Robinson.
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (activateUriEntryCallback): Use browser_window_load_uri().
-        (browser_window_load_uri): Check whether uri starts with
-        javascript: and run the given script, or just call
-        webkit_web_view_load_uri() to load the given uri.
-        * MiniBrowser/gtk/BrowserWindow.h:
-        * MiniBrowser/gtk/main.c:
-        (createBrowserWindow): Use browser_window_load_uri().
-
-2012-03-21  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Add webkit_web_view_run_javascript() to WebKit2 GTK+
-        https://bugs.webkit.org/show_bug.cgi?id=75543
-
-        Reviewed by Martin Robinson.
-
-        * MiniBrowser/gtk/GNUmakefile.am: Add javascriptcore_cppflags to
-        MiniBrowser CPP flags.
-
-2012-03-20  Eric Seidel  <eric@webkit.org>
-
-        Move wtf/Platform.h from JavaScriptCore to Source/WTF/wtf
-        https://bugs.webkit.org/show_bug.cgi?id=80911
-
-        Reviewed by Adam Barth.
-
-        Update include paths for Source/WTF.
-
-        * DumpRenderTree/efl/CMakeLists.txt:
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * QtTestBrowser/QtTestBrowser.pro:
-        * Scripts/build-webkit: Build Source/WTF on AppleWin as well.
-
-2012-03-20  Adam Barth  <abarth@webkit.org>
-
-        svn-apply should move inflight patches from WebCore/webaudio to WebCore/Modules/webaudio
-        https://bugs.webkit.org/show_bug.cgi?id=81567
-
-        Reviewed by Eric Seidel.
-
-        This temporary measure should help us avoid disrupting the folks
-        working on WebAudio when we move the webaudio directory to Modules.
-
-        * Scripts/VCSUtils.pm:
-        (adjustPathForRecentRenamings):
-        (parseGitDiffHeader):
-        (parseSvnDiffHeader):
-
-2012-03-20  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, rolling out r111453.
-        http://trac.webkit.org/changeset/111453
-        https://bugs.webkit.org/show_bug.cgi?id=81600
-
-        still broken
-
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        (ServerProcess._reset):
-        (ServerProcess.handle_interrupt):
-        (ServerProcess.write):
-        (ServerProcess._check_for_crash):
-        (ServerProcess._handle_timeout):
-        (ServerProcess._check_for_abort):
-        (ServerProcess._read):
-        (ServerProcess.stop):
-        (ServerProcess):
-        (ServerProcess.set_crashed):
-        * Scripts/webkitpy/layout_tests/port/server_process_unittest.py:
-        (TrivialMockPort.is_crash_reporter):
-        (TestServerProcess.test_broken_pipe):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._read_image_diff):
-        (WebKitDriver.has_crashed):
-        (WebKitDriver._check_for_driver_crash):
-        (WebKitDriver):
-        (WebKitDriver._detected_crash):
-        (WebKitDriver._subprocess_crashed):
-        (WebKitDriver._crashed_process_name):
-        (WebKitDriver.run_test):
-        (WebKitDriver._read_block):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (MockServerProcess.__init__):
-
-2012-03-20  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: get ServerProcess out of the reportcrash business
-        https://bugs.webkit.org/show_bug.cgi?id=81600
-
-        Unreviewed, build fix.
-
-        Re-land r111307 and r111293 with fix for crash in NRWT; I
-        was failing to set the crashing process name.
-
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        (ServerProcess._reset):
-        (ServerProcess._handle_possible_interrupt):
-        (ServerProcess.write):
-        (ServerProcess.read_stdout):
-        (ServerProcess.has_crashed):
-        (ServerProcess._read):
-        (ServerProcess.stop):
-        * Scripts/webkitpy/layout_tests/port/server_process_unittest.py:
-        (TrivialMockPort.check_for_leaks):
-        (TestServerProcess.test_broken_pipe):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._read_image_diff):
-        (WebKitDriver.has_crashed):
-        (WebKitDriver._check_for_driver_crash):
-        (WebKitDriver.run_test):
-        (WebKitDriver._read_block):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (MockServerProcess.__init__):
-        (MockServerProcess):
-        (MockServerProcess.has_crashed):
-
-2012-03-20  Tim Horton  <timothy_horton@apple.com>
-
-        [mac] Restore color space switching code to run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=80571
-        <rdar://problem/11008529>
-
-        Reviewed by Simon Fraser.
-
-        http://trac.webkit.org/changeset/111429 broke tools build on Snow Leopard.
-        
-        Use the old CM* API on Snow Leopard, since CGDisplayCreateUUIDFromDisplayID
-        didn't exist until Lion.
-
-        * DumpRenderTree/mac/LayoutTestHelper.m:
-        (installLayoutTestColorProfile):
-        (restoreUserColorProfile):
-
-2012-03-20  Adele Peterson  <adele@apple.com>
-
-        Update the last test to use EXPECT_WK_STREQ.
-
-        Reviewed by Dan Bernstein.
-
-        * TestWebKitAPI/Tests/mac/AttributedString.mm: (TestWebKitAPI::TEST):
-
-2012-03-20  Adele Peterson  <adele@apple.com>
-
-        "Attempt to insert nil value " exception when calling attributed string APIs on content with a custom font
-        https://bugs.webkit.org/show_bug.cgi?id=81630
-        <rdar://problem/10650660>
-
-        Reviewed by Alexey Proskuryakov.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/mac/Ahem.ttf: Added.
-        * TestWebKitAPI/Tests/mac/AttributedString.mm: Added.
-        (-[AttributedStringTest webView:didFinishLoadForFrame:]):
-        (TestWebKitAPI):
-        (TestWebKitAPI::didFinishLoadForFrame):
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/mac/attributedStringCustomFont.html: Added.
-
-2012-03-20  Eric Seidel  <eric@webkit.org>
-
-        Add link on queues.webkit.org to kov's fancy queue-depth graph
-        https://bugs.webkit.org/show_bug.cgi?id=81690
-
-        Reviewed by Adam Barth.
-
-        * QueueStatusServer/templates/recentstatus.html:
-
-2012-03-20  Tim Horton  <timothy_horton@apple.com>
-
-        [mac] Restore color space switching code to run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=80571
-        <rdar://problem/11008529>
-
-        Reviewed by Simon Fraser.
-
-        Make use of the layout test helper hooks to restore the Mac system-wide
-        color profile switching code. This makes WkTR and DRT results match, and
-        causes the main display's color profile to not affect results on Lion.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/mac/LayoutTestHelper.m: Added.
-        (installLayoutTestColorProfile):
-        (restoreUserColorProfile):
-        (simpleSignalHandler):
-        (main):
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.release_http_lock):
-        (MacPort):
-        (MacPort._path_to_helper):
-        (MacPort.start_helper):
-        (MacPort.stop_helper):
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (WTR::PlatformWebView::PlatformWebView):
-        (WTR::PlatformWebView::windowSnapshotImage):
-
-2012-02-24  Darin Fisher  <darin@chromium.org>
-
-        Add more Chromium WebKit API reviewers
-        https://bugs.webkit.org/show_bug.cgi?id=81576
-
-        Reviewed by Adam Barth and David Levin.
-
-        Simplify watchlist to lump all WebKit API into one.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-03-20  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Convert hasSpellingMarker to use Internals interface.
-        https://bugs.webkit.org/show_bug.cgi?id=81300
-
-        Reviewed by Ryosuke Niwa.
-
-        Remove hasSpellingMarker functions, because it is able to work in the
-        cross-port way through the Internals interface.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-
-2012-03-20  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Add new Qt-WK2 performance tester bot to build.webkit.org
-        https://bugs.webkit.org/show_bug.cgi?id=80842
-
-        Reviewed by Ryosuke Niwa.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (RunAndUploadPerfTestsWebKit2):
-        (RunAndUploadPerfTestsWebKit2.start):
-        (BuildAndPerfTestWebKit2Factory):
-        (BuildAndPerfTestWebKit2Factory.__init__):
-        (DownloadAndPerfTestWebKit2Factory):
-        (DownloadAndPerfTestWebKit2Factory.__init__):
-
-2012-03-20  Peter Beverloo  <peter@chromium.org>
-
-        [Chromium] Update to Android NDK r7b
-        https://bugs.webkit.org/show_bug.cgi?id=81005
-
-        Reviewed by Adam Barth.
-
-        Update to version r7b of the Android NDK, release notes of which are
-        available on the following page:
-        http://developer.android.com/sdk/ndk/index.html
-
-        * Scripts/update-webkit-chromium:
-
-2012-03-20  Csaba Osztrogonác  <ossy@webkit.org>
-
-        x86 GCC bug triggers a compilation error in generated copy constructor of CollapsedBorderValue
-        https://bugs.webkit.org/show_bug.cgi?id=81502
-
-        Unreviewed.
-
-        * qmake/mkspecs/features/unix/default_post.prf: Reenable Werror after r111171.
-
-2012-03-19  Jessie Berlin  <jberlin@apple.com>
-
-        Unreviewed; roll out http://trac.webkit.org/changeset/111307 and http://trac.webkit.org/changeset/111293
-        because they broke running the layout tests on mac.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver._check_for_driver_crash):
-
-2012-03-16  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Allow running run-gtk-tests during 'make distcheck'
-        https://bugs.webkit.org/show_bug.cgi?id=81415
-
-        Reviewed by Philippe Normand.
-
-        Modify the build and run-gtk-tests so that it can run during 'make distcheck'
-
-        * GNUmakefile.am: Distribute run-gtk-tests during 'make dist' and make it the
-        main command run during 'make check.'
-        * Scripts/run-gtk-tests: Refactored run-gtk-tests so that jhbuild is no longer
-        a requirement to run it. If jhbuild isn't around it will simply not start the
-        SPI daemons and skip the WebKit2 accessibility test. Remove test runs from the
-        main loop and simply use the main loop in a synchronous method to start SPI
-        daemons. Did a bunch of general cleanup around these tasks.
-
-2012-03-19  Raphael Kubo da Costa  <rakuco@FreeBSD.org>
-
-        jhbuild: Use the multiprocessing module to get the number of CPUs.
-        https://bugs.webkit.org/show_bug.cgi?id=81585
-
-        Reviewed by Martin Robinson.
-
-        Now that support for Python 2.5 has been dropped, we can safely
-        use multiprocessing.cpu_count() to obtain the current number of
-        CPUs in the system instead of running a webkitperl script for
-        that.
-
-        * efl/common.py:
-        (top_level_path):
-        * efl/jhbuildrc:
-        * gtk/common.py:
-        (build_path):
-        * gtk/jhbuildrc:
-
-2012-03-19  Ojan Vafai  <ojan@chromium.org>
-
-        We should only add a live event listener once, not once per TestSelector.
-        Adding one per TestSelector would cause accordion('option', 'active') to
-        incorrectly be "false" if you examine multiple sets of tests.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
-
-2012-03-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix typo introduced in r111293.
-
-        Unreviewed, build fix.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver._check_for_driver_crash):
-
-2012-03-19  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: get ServerProcess out of the reportcrash business
-        https://bugs.webkit.org/show_bug.cgi?id=81600
-
-        Reviewed by Adam Barth.
-
-        ServerProcess was half-aware that ReportCrash might run
-        sometimes, and that the process ServerProcess was talking to
-        might have its own crashing subprocesses; neither of these
-        things really worked right and it made the logic convoluted, so
-        this change makes handling crashes completely separate from the
-        server_process code, so that it can focus on just I/O to the
-        subprocess.
-
-        There should be no functional changes resulting from this patch.
-
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        (ServerProcess._reset):
-        (ServerProcess._handle_possible_interrupt):
-        (ServerProcess.write):
-        (ServerProcess.read_stdout):
-        (ServerProcess.has_crashed):
-        (ServerProcess._read):
-        (ServerProcess.stop):
-        * Scripts/webkitpy/layout_tests/port/server_process_unittest.py:
-        (TrivialMockPort.check_for_leaks):
-        (TestServerProcess.test_broken_pipe):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._read_image_diff):
-        (WebKitDriver.has_crashed):
-        (WebKitDriver._check_for_driver_crash):
-        (WebKitDriver.run_test):
-        (WebKitDriver._read_block):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (MockServerProcess.__init__):
-        (MockServerProcess):
-        (MockServerProcess.has_crashed):
-
-2012-03-19  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: crashlog parsing is broken
-        https://bugs.webkit.org/show_bug.cgi?id=81586
-
-        Reviewed by Adam Barth.
-
-        Seeking on a file opened through codecs() appears to not work
-        correctly (at least on SL).
-        
-        The code was more complicated than it needed to be, so I have
-        revamped it to just read a full crashlog at once and then look
-        for matches. 
-        
-        I have also added the ability to optionally propagate
-        errors back (which can be helpful to debug races when ReportCrash is
-        still running and you need to see that you couldn't open some
-        files, rather than just ignoring them).
-
-        * Scripts/webkitpy/common/system/crashlogs.py:
-        (CrashLogs.find_newest_log):
-        (CrashLogs._find_newest_log_darwin):
-        * Scripts/webkitpy/common/system/crashlogs_unittest.py:
-        (CrashLogsTest.test_find_log_darwin):
-
-2012-03-19  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: clean up some port._filesystem references to not reference private members
-        https://bugs.webkit.org/show_bug.cgi?id=81595
-
-        Reviewed by Eric Seidel.
-
-        There should be no functional changes in this patch, just some
-        refactoring. Also, fixes a minor nit in write_image_diff_files(()
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner.__init__):
-        (SingleTestRunner._run_compare_test):
-        (SingleTestRunner._run_rebaseline):
-        (SingleTestRunner._save_baseline_data):
-        (SingleTestRunner._handle_error):
-        (SingleTestRunner._run_reftest):
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer.py:
-        (write_test_result):
-        (TestResultWriter.__init__):
-        (TestResultWriter._make_output_directory):
-        (TestResultWriter.output_filename):
-        (TestResultWriter._output_testname):
-        (TestResultWriter.write_output_files):
-        (TestResultWriter.write_stderr):
-        (TestResultWriter.write_crash_report):
-        (TestResultWriter.create_text_diff_and_write_result):
-        (TestResultWriter.write_image_diff_files):
-        (copy_file):
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer_unittest.py:
-        (TestResultWriterTest.test_reftest_diff_image):
-
-2012-03-19  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: fix nit - incorrect reference to DRT in test_expectations.py
-        https://bugs.webkit.org/show_bug.cgi?id=81598
-
-        Reviewed by Eric Seidel.
-
-        "DumpRenderTree" shouldn't be hard-coded here, since some other
-        process may actually be crashing (WebKitTestRunner, WebProcess, etc.)
-        
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectations):
-
-2012-03-19  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: allow instance data in TestFailure objects
-        https://bugs.webkit.org/show_bug.cgi?id=81580
-
-        Reviewed by Tony Chang.
-
-        Current TestFailures are basically enums, but it would be nice,
-        especially for crashes, if they contained the name and pid of
-        the process that crashed.
-
-        * Scripts/webkitpy/layout_tests/models/test_failures.py:
-        (TestFailure.message):
-        (FailureTimeout.message):
-        (FailureCrash):
-        (FailureCrash.__init__):
-        (FailureCrash.message):
-        (FailureMissingResult.message):
-        (FailureTextMismatch.message):
-        (FailureMissingImageHash.message):
-        (FailureMissingImage.message):
-        (FailureImageHashMismatch.message):
-        (FailureImageHashIncorrect.message):
-        (FailureReftestMismatch.message):
-        (FailureReftestMismatchDidNotOccur.message):
-        (FailureReftestNoImagesGenerated.message):
-        (FailureMissingAudio.message):
-        (FailureAudioMismatch.message):
-        * Scripts/webkitpy/layout_tests/models/test_failures_unittest.py:
-        (TestFailuresTest.test_equals):
-        (TestFailuresTest):
-        (TestFailuresTest.test_crashes):
-
-2012-03-19  Brady Eidson  <beidson@apple.com>
-
-        <rdar://problem/10917120> and https://bugs.webkit.org/show_bug.cgi?id=81066
-        Crash in 3rd party WebKit apps under XHR/Cache code
-
-        Reviewed by Antti Koivisto.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/mac/MemoryCachePruneWithinResourceLoadDelegate.html: Added.
-        * TestWebKitAPI/Tests/mac/MemoryCachePruneWithinResourceLoadDelegate.mm: Added.
-        (-[MemoryCachePruneTestResourceLoadDelegate webView:identifierForInitialRequest:fromDataSource:]):
-        (-[MemoryCachePruneTestResourceLoadDelegate webView:resource:willSendRequest:redirectResponse:fromDataSource:]):
-        (-[MemoryCachePruneTestResourceLoadDelegate webView:resource:didFinishLoadingFromDataSource:]):
-        (-[MemoryCachePruneTestResourceLoadDelegate webView:resource:didFailLoadingWithError:fromDataSource:]):
-        (TestWebKitAPI):
-        (TestWebKitAPI::TEST):
-
-2012-03-19  Brady Eidson  <beidson@apple.com>
-
-        <rdar://problem/10848575> and https://bugs.webkit.org/show_bug.cgi?id=81516
-        REGRESSION (r107435) URLs copied from WebKit apps aren't in the right pasteboard format
-
-        Reviewed by Enrica Casucci.
-
-        Bring up a context menu on a link, copy the link, then verify the pasteboard contents
-        are in the correct format.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/mac/ContextMenuCanCopyURL.html: Added.
-        * TestWebKitAPI/Tests/mac/ContextMenuCanCopyURL.mm: Added.
-        (-[ContextMenuCanCopyURLDelegate webView:didFinishLoadForFrame:]):
-        (TestWebKitAPI::contextMenuCopyLink):
-        (TestWebKitAPI::TEST):
-
-2012-03-19  Ojan Vafai  <ojan@chromium.org>
-
-        Make the selected item in the accordion a link to the flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=81571
-
-        Reviewed by Dimitri Glazkov.
-
-        Also, make it so that you can select the text of the link, instead of the current behavior
-        of acting as if you had clicked on the accordion header.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/results.css:
-
-2012-03-19  Dirk Pranke  <dpranke@chromium.org>
-
-        NRWT runs some tests that are skipped with -i command line option
-        https://bugs.webkit.org/show_bug.cgi?id=81535
-
-        Reviewed by Ojan Vafai.
-
-        This change modifies the interaction of Skipped files and
-        test_expectations files so that entries in Skipped files (and
-        the -i command line) override *everything* in the expectations
-        file.
-
-        Specifically, a directory in a Skipped file will cause all of
-        the tests in the dir to be skipped even if individual tests in
-        the dir are listed in the test_expectations.txt.
-
-        Skipped files also override anything in an overrides files.
-
-        This seems to make more intuitive sense, since if you list
-        something in the Skips file (and even more specify it on the
-        command line) you probably want it to be universally applied.
-
-        Theoretically we could add more precedence levels and have full
-        paths in an expectations file override dirs in a Skipped file
-        (but not the command line), but I don't know yet that that level
-        of complexity is justified.
-        
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectations.__init__):
-        (TestExpectations._add_skipped_tests):
-        (TestExpectations._add_test):
-        (TestExpectations._add_expectations):
-        (TestExpectations._add_expectation_line):
-        (TestExpectations._already_seen_better_match):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (test_more_specific_override_resets_skip):
-        (SkippedTests):
-        (SkippedTests.get_exp):
-        (SkippedTests.assert_exp):
-        (SkippedTests.test_skipped_tests_work):
-        (SkippedTests.test_duplicate_skipped_test_fails_lint):
-        (SkippedTests.test_skipped_file_overrides_expectations):
-        (SkippedTests.test_skipped_dir_overrides_expectations):
-        (SkippedTests.test_skipped_file_overrides_overrides):
-        (SkippedTests.test_skipped_dir_overrides_overrides):
-
-2012-03-19  Eric Seidel  <eric@webkit.org>
-
-        Fix WTF header include discipline in Chromium WebKit
-        https://bugs.webkit.org/show_bug.cgi?id=81281
-
-        Reviewed by James Robinson.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * Scripts/update-webkit-chromium: Made it possible to run this from a directory other than the root.
-
-2012-03-19  Andy Chen  <andchen@rim.com>
-
-        [BlackBerry] Add new layout test for text match marker
-        https://bugs.webkit.org/show_bug.cgi?id=81531
-
-        Make the LayoutTestControllerBlackBerry::findString to test the
-        BlackBerry port implementation.
-
-        Reviewed by Rob Buis.
-
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
-        (LayoutTestController::findString):
-
-2012-03-19  Ojan Vafai  <ojan@chromium.org>
-
-        Don't show WONTFIX tests in garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=81554
-
-        Reviewed by Dimitri Glazkov.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results_unittests.js:
-
-2012-03-19  Chris Fleizach  <cfleizach@apple.com>
-
-        platform/mac/accessibility/selected-rows-table.html failing on Lion Intel Debug WebKit2 testers
-        https://bugs.webkit.org/show_bug.cgi?id=81530
-
-        Reviewed by Jessie Berlin.
-
-        Add rowAtIndex to WebKitTestRunner.
-
-        * WebKitTestRunner/InjectedBundle/AccessibilityUIElement.cpp:
-        (WTR::AccessibilityUIElement::rowAtIndex):
-        * WebKitTestRunner/InjectedBundle/AccessibilityUIElement.h:
-        (AccessibilityUIElement):
-        * WebKitTestRunner/InjectedBundle/Bindings/AccessibilityUIElement.idl:
-        * WebKitTestRunner/InjectedBundle/mac/AccessibilityUIElementMac.mm:
-        (WTR):
-        (WTR::AccessibilityUIElement::rowAtIndex):
-
-2012-03-19  Ojan Vafai  <ojan@chromium.org>
-
-        Change garden-o-matic All Failures tab to Expected Failures
-        https://bugs.webkit.org/show_bug.cgi?id=81540
-
-        Reviewed by Dimitri Glazkov.
-
-        Also, fix some broken unittests that had just gotten stale.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers/rebaseline.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/garden-o-matic.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/model.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui_unittests.js:
-
-2012-03-19  Hao Zheng  <zhenghao@chromium.org>
-
-        [chromium] DRT crashes at shutdown.
-        https://bugs.webkit.org/show_bug.cgi?id=81504
-
-        Reviewed by James Robinson.
-
-        WebCompositor must be destroyed after WebView is properly destroyed,
-        or some compositor objects like CCLayerTreeHost may not be destroyed.
-        However, it is really hard to make the destruction order correct
-        explicitly in ~TestShell. So move it out to DumpRenderTree.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::~TestShell):
-
-2012-03-19  Dirk Pranke  <dpranke@chromium.org>
-
-        add dpranke to webkitpy watchlist
-        https://bugs.webkit.org/show_bug.cgi?id=81433
-
-        Reviewed by Benjamin Poulain.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-03-19  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy is failing on SL/Python 2.6.1
-        https://bugs.webkit.org/show_bug.cgi?id=81533
-
-        Reviewed by Ojan Vafai.
-
-        It appears that itertools.combinations() is buggy in 2.6.1; this
-        backports the implementation from 2.7.
-
-        * Scripts/webkitpy/layout_tests/models/test_configuration.py:
-        (TestConfigurationConverter.collapse_macros):
-        (TestConfigurationConverter):
-        (TestConfigurationConverter.combinations):
-
-2012-03-19  David Michael Barr  <davidbarr@google.com>
-
-        Optimize the cleanup sequence in the start-queue.sh script
-        https://github.com/abarth/webkit/pull/1
-
-        Reviewed by Adam Barth.
-
-        Updating the working copy is an expensive operation
-        for a repository the size of WebKit.
-        Attempt to reset only to the target revision.
-
-        * EWSTools/start-queue.sh:
-
-2012-03-19  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        Adjust architecture type of the EFL build bot.
-        https://bugs.webkit.org/show_bug.cgi?id=81452
-
-        Reviewed by Tony Chang.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: The
-        buildslave is a 64-bit machine, therefore describe it as being
-        x86_64, not i386.
-
-2012-03-19  Alexander Færøy  <alexander.faeroy@nokia.com>
-
-        [Qt] printLoadedUrls prints "Object" instead of the actual URL.
-        https://bugs.webkit.org/show_bug.cgi?id=81514
-
-        Reviewed by Simon Hausmann.
-
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-
-2012-03-19  Raphael Kubo da Costa  <rakuco@FreeBSD.org>
-
-        [EFL] jhbuild: Set CMAKE_PREFIX_PATH in jhbuildrc.
-        https://bugs.webkit.org/show_bug.cgi?id=81491
-
-        Reviewed by Philippe Normand.
-
-        For the find_path(), find_library() etc CMake calls to find the
-        dependencies built with jhbuild, CMAKE_PREFIX_PATH must be properly
-        set, otherwise CMake cannot know the dependencies exist and will only
-        look in the standard directories.
-
-        * efl/jhbuildrc: Set the CMAKE_PREFIX_PATH environment variable with
-        the jhbuild Root directory.
-
-2012-03-19  Dominik Röttsches  <dominik.rottsches@linux.intel.com>
-
-        [EFL] Add XDG env vars to jhbuildrc
-        https://bugs.webkit.org/show_bug.cgi?id=81510
-
-        Needed to ensure correct glib behaviour in jhbuild environment.
-
-        Reviewed by Philippe Normand.
-
-        * efl/jhbuildrc:
-
-2012-03-19  Allan Sandfeld Jensen  <allan.jensen@nokia.com>
-
-        Select best target for tap gesture.
-        https://bugs.webkit.org/show_bug.cgi?id=78801
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add TOUCH_ADJUSTMENT to enabled features.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-03-19  Robert Kroeger  <rjkroege@chromium.org>
-
-        [chromium] synthesize wheel events for fling on main thread
-        https://bugs.webkit.org/show_bug.cgi?id=81458
-
-        Added the ability to dispatch GestureFlingStart and GestureFlingCancel from EventSender.
-
-        Reviewed by James Robinson.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::EventSender):
-        (EventSender::gestureFlingCancel):
-        (EventSender::gestureFlingStart):
-        * DumpRenderTree/chromium/EventSender.h:
-        (EventSender):
-
-2012-03-19  Alexander Færøy  <alexander.faeroy@nokia.com>
-
-        [Qt] Add command line option to set the user agent in the MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=81508
-
-        Reviewed by Simon Hausmann.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::webViewExperimental):
-        * MiniBrowser/qt/BrowserWindow.h:
-        (BrowserWindow):
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (printHelp):
-        (MiniBrowserApplication::handleUserOptions):
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-        (WindowOptions::WindowOptions):
-        (WindowOptions::setUserAgent):
-        (WindowOptions::userAgent):
-        (WindowOptions):
-
-2012-03-19  Alexander Færøy  <alexander.faeroy@nokia.com>
-
-        [Qt] Remove dead user agent code from the MiniBrowser.
-
-        Reviewed by Simon Hausmann.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        * MiniBrowser/qt/BrowserWindow.h:
-        (BrowserWindow):
-        * MiniBrowser/qt/MiniBrowser.qrc:
-        * MiniBrowser/qt/useragentlist.txt: Removed.
-
-2012-03-19  Raphael Kubo da Costa  <rakuco@FreeBSD.org>
-
-        jhbuild: Call jhbuild's autogen.sh via bash.
-        https://bugs.webkit.org/show_bug.cgi?id=81485
-
-        Reviewed by Philippe Normand.
-
-        jhbuild's autogen.sh uses "/bin/bash" in the shebang line, however
-        this is usually true only on Linux systems, and even then bash for
-        some reason might not be available in that location. It is safer to
-        call bash directly and pass autogen.sh to it instead.
-
-        * jhbuild/jhbuild-wrapper:
-        (install_jhbuild):
-
-2012-03-19  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] Prefix run-launcher with run-with-jhbuild
-        https://bugs.webkit.org/show_bug.cgi?id=81503
-
-        Reviewed by Hajime Morita.
-
-        * Scripts/run-launcher:
-
-2012-03-19  Dominik Röttsches  <dominik.rottsches@linux.intel.com>
-
-        [EFL] Prefix run-launcher with run-with-jhbuild
-        https://bugs.webkit.org/show_bug.cgi?id=80026
-
-        Reviewed by Hajime Morita.
-
-        * Scripts/run-launcher:
-
-2012-03-18  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Unreviewed. Disable -Werror on x86 until proper fix.
-        https://bugs.webkit.org/show_bug.cgi?id=81498
-
-        * qmake/mkspecs/features/unix/default_post.prf:
-
-2012-03-17  Raphael Kubo da Costa  <rakuco@FreeBSD.org>
-
-        Unreviewed; switch to using my FreeBSD.org email address, the
-        other one is going to disappear soon.
-
-        * Scripts/webkitpy/common/config/committers.py:
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-03-17  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        Unreviewed; fix webkitpy unit test failures after r111116.
-
-        It turns out that cmd_line in the patch in bug 80025 had the right
-        signature when it was submitted, but r109242 added a few more
-        required parameters, and since the method (and EflDriver) did not
-        exist at the time we ended up committing a broken method.
-
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflDriver.cmd_line): Add the `pixel_tests' and `per_test_args'
-        arguments.
-
-2012-03-17  Charles Wei  <charles.wei@torchmobile.com.cn>
-
-        [BlackBerry] Enable Web Timing for performance profiling and improvement.
-        https://bugs.webkit.org/show_bug.cgi?id=81085
-
-        Reviewed by Rob Buis.
-
-        * Scripts/build-webkit:
-
-2012-03-17  Dominik Röttsches  <dominik.rottsches@linux.intel.com>
-
-        Add a dependencies installation step for EFL to buildbot master.cfg
-        https://bugs.webkit.org/show_bug.cgi?id=81337
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (InstallEflDependencies):
-        (Factory.__init__):
-
-2012-03-17  Dominik Röttsches  <dominik.rottsches@linux.intel.com>
-
-        [EFL] Prefixing run-webkit-tests with run-with-jhbuild
-        https://bugs.webkit.org/show_bug.cgi?id=80025
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflDriver):
-        (EflDriver.cmd_line):
-        (EflPort._driver_class):
-
-2012-03-17  Dominik Röttsches  <dominik.rottsches@linux.intel.com>
-
-        [EFL] Add and use run-with-jhbuild and update-webkitefl-libs scripts for EFL
-        https://bugs.webkit.org/show_bug.cgi?id=79904
-
-        build-webkit --efl will use jhbuild for fetching and building dependencies.
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * Scripts/update-webkitefl-libs: Added.
-        * Scripts/webkitdirs.pm:
-        (jhbuildWrapperPrefixIfNeeded):
-        (generateBuildSystemFromCMakeProject):
-        (buildCMakeGeneratedProject):
-        * efl/common.py: Added.
-        (script_path):
-        (top_level_path):
-        (number_of_cpus):
-        * efl/jhbuild.modules: Added.
-        * efl/jhbuildrc: Added.
-        * efl/run-with-jhbuild: Added.
-
-2012-03-16  Stephanie Lewis  <slewis@apple.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=81065
-        <rdar://problem/10944309> CrashTracer: [USER] 111 crashes in WebProcess at WebKitTestRunnerInjectedBundle: WTR::InjectedBundle::done + 142
-        Fix crash preventing WebKitTestRunner from working in Release.  
-        WebKitTestRunner used ostringstream to collect output from the test.  ostringstream is incompatible with our
-        FastMalloc overrides.  When copying strings out ostringstream a new string is allocated with FastMalloc because
-        the allocation is inlined.  When that string is freed is uses the system malloc because that call is not inlined.
-
-        I removed ostringstream in favor of StringBuilder.  
-
-        Properly set NDEBUG on Release builds so we don't crash when when we free the strings StringBuilder created.
-
-        Reviewed by Geoff Garen.
-
-        Add DEBUG_DEFINES to set NDEBUG on release builds.
-        * WebKitTestRunner/Configurations/Base.xcconfig:
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-
-        Remove ostringstream member in favor of StringBuilder.
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::initialize):
-        (WTR::InjectedBundle::beginTesting):
-        (WTR::InjectedBundle::done):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (WTF):
-        (WTR::InjectedBundle::stringBuilder):
-        (InjectedBundle):
-
-        Append output to StringBuilder.
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::hasPrefix):
-        (WTR::dumpPath):
-        (WTR::rangeToStr):
-        (WTR::styleDecToStr):
-        (WTR::frameToStr):
-        (WTR::dumpFrameScrollPosition):
-        (WTR::dumpFrameText):
-        (WTR::dumpDescendantFramesText):
-        (WTR::InjectedBundlePage::dump):
-        (WTR::InjectedBundlePage::didReceiveTitleForFrame):
-        (WTR::InjectedBundlePage::didFinishDocumentLoadForFrame):
-        (WTR::InjectedBundlePage::willSendRequestForFrame):
-        (WTR::InjectedBundlePage::decidePolicyForNavigationAction):
-        (WTR::lastFileURLPathComponent):
-        (WTR::InjectedBundlePage::willAddMessageToConsole):
-        (WTR::InjectedBundlePage::willSetStatusbarText):
-        (WTR::InjectedBundlePage::willRunJavaScriptAlert):
-        (WTR::InjectedBundlePage::willRunJavaScriptConfirm):
-        (WTR::InjectedBundlePage::willRunJavaScriptPrompt):
-        (WTR::InjectedBundlePage::shouldBeginEditing):
-        (WTR::InjectedBundlePage::shouldEndEditing):
-        (WTR::InjectedBundlePage::shouldInsertNode):
-        (WTR::InjectedBundlePage::shouldInsertText):
-        (WTR::InjectedBundlePage::shouldDeleteRange):
-        (WTR::InjectedBundlePage::shouldChangeSelectedRange):
-        (WTR::InjectedBundlePage::shouldApplyStyle):
-        (WTR::InjectedBundlePage::didBeginEditing):
-        (WTR::InjectedBundlePage::didEndEditing):
-        (WTR::InjectedBundlePage::didChange):
-        (WTR::InjectedBundlePage::didChangeSelection):
-        (WTR::InjectedBundlePage::supportsFullScreen):
-        (WTR::InjectedBundlePage::enterFullScreenForElement):
-        (WTR::InjectedBundlePage::exitFullScreenForElement):
-        (WTR::InjectedBundlePage::beganEnterFullScreen):
-        (WTR::InjectedBundlePage::beganExitFullScreen):
-        (WTR::dumpBackForwardListItem):
-        (WTR::InjectedBundlePage::dumpBackForwardList):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::waitToDumpWatchdogTimerFired):
-        (WTR::LayoutTestController::dumpConfigurationForViewport):
-        
-        Convert between WTF::String and WKStringRef.
-        * WebKitTestRunner/StringFunctions.h:
-        (WTR::toWTFString):
-        (WTR):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-
-2012-03-16  Eric Seidel  <eric@webkit.org>
-
-        Add a land-from-url command
-        https://bugs.webkit.org/show_bug.cgi?id=81411
-
-        Reviewed by Adam Barth.
-
-        Very basic so far.  The goal is to make it landing smarter
-        so that users don't have to bother to parse out the ids out of the urls.
-
-        * Scripts/webkitpy/common/config/urls.py:
-        (parse_bug_id):
-        (parse_attachment_id):
-        * Scripts/webkitpy/common/config/urls_unittest.py:
-        (URLsTest.test_parse_bug_id):
-        (URLsTest):
-        (URLsTest.test_parse_attachment_id):
-        * Scripts/webkitpy/tool/commands/download.py:
-        (ProcessURLsMixin):
-        (ProcessURLsMixin._fetch_list_of_patches_to_process):
-        (LandFromURL):
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        (test_land_from_bug):
-        (test_land_from_url):
-
-2012-03-16  Dave Tharp  <dtharp@codeaurora.org>
-
-        build-webkit launcher instructions use wrong relative path for Qt
-        https://bugs.webkit.org/show_bug.cgi?id=81357
-
-        Reviewed by Eric Seidel.
-
-        Ensure we are at the proper directory before generating run-launcher
-        instructions.
-
-        * Scripts/build-webkit:
-
-2012-03-16  Brady Eidson  <beidson@apple.com>
-
-        <rdar://problem/11027997> and https://bugs.webkit.org/show_bug.cgi?id=81412
-        REGRESSION (r107435) Copy a link and paste to Mail: Nothing is pasted
-
-        Reviewed by Geoff Garen.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/mac/WebViewCanPasteURL.mm: Added.
-
-2012-03-16  Ojan Vafai  <ojan@chromium.org>
-
-        Mark wontfix tests in full_results.json so we can ignore them in garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=81407
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (summarize_results):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ResultSummaryTest.summarized_results):
-        (ResultSummaryTest.test_no_svn_revision):
-        (ResultSummaryTest.test_svn_revision):
-        (ResultSummaryTest):
-        (ResultSummaryTest.test_summarized_results_wontfix):
-
-2012-03-16  Ojan Vafai  <ojan@chromium.org>
-
-        Have webkit-patch rebaseline-test update test_expectations.txt
-        https://bugs.webkit.org/show_bug.cgi?id=81054
-
-        Recommit http://trac.webkit.org/changeset/110783 now that
-        http://trac.webkit.org/changeset/111034 has landed.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectations.remove_configuration_from_test):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (RemoveConfigurationsTest):
-        (RemoveConfigurationsTest.test_remove):
-        (test_remove_line):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineTest._update_expectations_file):
-        (RebaselineTest._rebaseline_test_and_update_expectations):
-        (RebaselineTest):
-        (RebaselineTest.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (TestRebaseline.test_rebaseline_updates_expectations_file_noop):
-        (test_rebaseline_updates_expectations_file):
-
-2012-03-15  Ojan Vafai  <ojan@chromium.org>
-
-        Specifier collapsing when writing test expectations lines gets a number of cases wrong
-        https://bugs.webkit.org/show_bug.cgi?id=81309
-
-        Reviewed by Dimitri Glazkov.
-
-        I've run this over all the lines in the current Chromium test_expectations.txt file,
-        so I'm relatively confident we now cover all the cases.
-
-        * Scripts/webkitpy/layout_tests/models/test_configuration.py:
-        (TestConfigurationConverter.__init__):
-        (TestConfigurationConverter.collapse_macros):
-        (TestConfigurationConverter.collapse_macros.collapse_individual_specifier_set):
-        (TestConfigurationConverter):
-        (TestConfigurationConverter.intersect_combination):
-        (TestConfigurationConverter.symmetric_difference):
-        (TestConfigurationConverter.to_specifiers_list):
-        (TestConfigurationConverter.to_specifiers_list.try_collapsing):
-        (TestConfigurationConverter.to_specifiers_list.try_abbreviating):
-        * Scripts/webkitpy/layout_tests/models/test_configuration_unittest.py:
-        (make_mock_all_test_configurations_set):
-        (TestConfigurationConverterTest.test_symmetric_difference):
-        (TestConfigurationConverterTest.test_to_config_set):
-        (TestConfigurationConverterTest.test_macro_expansion):
-        (TestConfigurationConverterTest.test_to_specifier_lists):
-        (TestConfigurationConverterTest.test_converter_macro_collapsing):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort):
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.__init__):
-        The android port uses "arm" as it's architecture, which is technically correct,
-        but considerably complicates making collapsing work. We probably should kill
-        the concept of architecture entirely. The benefits are not worth the code
-        complexity.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumPortTest.test_all_test_configurations):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (TestRebaseline.test_rebaseline_updates_expectations_file_noop):
-        (test_rebaseline_updates_expectations_file):
-
-2012-03-16  Dinu Jacob  <dinu.jacob@nokia.com>
-
-        [Qt][Wk2] Assertion Failure and crash on file upload
-        https://bugs.webkit.org/show_bug.cgi?id=80854
-
-        Reviewed by Simon Hausmann.
-
-        Added filePicker to WebView using experimental API.
-
-        * MiniBrowser/qt/MiniBrowser.qrc:
-        * MiniBrowser/qt/icons/folder.png: Added.
-        * MiniBrowser/qt/icons/titlebar.png: Added.
-        * MiniBrowser/qt/icons/up.png: Added.
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-        * MiniBrowser/qt/qml/FilePicker.qml: Added.
-
-2012-03-16  Mahesh Kulkarni  <mahesh.kulkarni@nokia.com>
-
-        Updating email for committer.py script.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-03-16  Robert Kroeger  <rjkroege@chromium.org>
-
-        [chromium] DRT: Add support for sending gesture scrolls without a begin
-        https://bugs.webkit.org/show_bug.cgi?id=81292
-
-        Reviewed by Kent Tamura.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::EventSender):
-        (EventSender::gestureScrollFirstPoint):
-        * DumpRenderTree/chromium/EventSender.h:
-        (EventSender):
-
-2012-03-02  Carlos Garcia Campos  <cgarcia@igalia.com> and Sergio Villar Senin  <svillar@igalia.com>
-
-        [GTK] WebKitIconDatabase doesn't keep icons cached
-        https://bugs.webkit.org/show_bug.cgi?id=56200
-
-        Reviewed by Martin Robinson.
-
-        Add support for favicons in GtkLauncher.
-
-        * GtkLauncher/main.c:
-        (activateUriEntryCb):
-        (iconLoadedCb):
-        (createBrowser):
-
-2012-03-16  Adam Barth  <abarth@webkit.org>
-
-        Remove sheriff-bot's last-green-revision command
-        https://bugs.webkit.org/show_bug.cgi?id=81314
-
-        Reviewed by Eric Seidel.
-
-        This command is a cruel joke.  WebKit doesn't really ever have a
-        last-green-revision.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        (BuildBot._find_green_revision):
-        * Scripts/webkitpy/common/net/buildbot/buildbot_mock.py:
-        (MockBuildBot.builder_statuses):
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-        (test_find_green_revision):
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        (IRCCommand.execute):
-        * Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py:
-        (SheriffIRCBotTest.test_help):
-        * Scripts/webkitpy/tool/commands/queries.py:
-        (PatchesToReview.execute):
-
-2012-03-16  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Make gccdepends test aware of broken icecream deps generation
-
-        Icecream seems to build the files without passing -o to gcc with
-        the original destination path, which means the target name in the
-        dependency file is wrong.
-
-        Also, echo something to the final file instead of just touching it,
-        so it's not deleted on every build.
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/config.tests/gccdepends/gccdepends.pro:
-
-2012-03-16  Kihong Kwon  <kihong.kwon@samsung.com>
-
-        Support for Battery Status API
-        https://bugs.webkit.org/show_bug.cgi?id=62698
-
-        Add include directory and file.
-        http://www.w3.org/TR/battery-status/
-
-        Reviewed by Adam Barth.
-
-        * Scripts/build-webkit:
-
-2012-03-16  Kishore Bolisetty  <kbolisetty@innominds.com>
-
-        check-webkit-style fails on LayoutTests/platform/efl/test_expectations.txt
-        https://bugs.webkit.org/show_bug.cgi?id=81007
-
-        Reviewed by Adam Barth.
-
-        A dedidcated build slave is available for efl on build.webkit.org. 
-        This change add's an entry for the elf port in list of available port builders.
-        This is required because test_expectations.py when triggered, looks for a valid port object for the specified port. 
-
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-
-2012-03-16  Adam Barth  <abarth@webkit.org>
-
-        [webkitpy] StatusServer.next_work_item has an incorrectly named local variable
-        https://bugs.webkit.org/show_bug.cgi?id=81302
-
-        Reviewed by Eric Seidel.
-
-        This is a trivial patch, but the variable name turned up in a grep of
-        webkitpy and looks like copy pasta.
-
-        * Scripts/webkitpy/common/net/statusserver.py:
-        (StatusServer.next_work_item):
-
-2012-03-16  Andrew Lo  <anlo@rim.com>
-
-        [BlackBerry] Enable PAGE_VISIBILITY_API
-        https://bugs.webkit.org/show_bug.cgi?id=81257
-
-        Enable Page Visibility API for BlackBerry.
-
-        Reviewed by Rob Buis.
-
-        * Scripts/build-webkit:
-
-2012-03-16  Zan Dobersek  <zandobersek@gmail.com>
-
-        [Gtk] Add computedStyleIncludingVisitedInfo to DumpRenderTreeSupport
-        https://bugs.webkit.org/show_bug.cgi?id=81232
-
-        Reviewed by Philippe Normand.
-
-        Use the newly-added helper method in DumpRenderTreeSupportGtk.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::computedStyleIncludingVisitedInfo):
-
-2012-03-15  Eric Seidel  <eric@webkit.org>
-
-        Move parse_bug_id into config/urls in preparation for re-use elsewhere.
-        https://bugs.webkit.org/show_bug.cgi?id=81313
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        (parse_bug_id_from_changelog):
-        * Scripts/webkitpy/common/config/urls.py:
-        (parse_bug_id):
-        * Scripts/webkitpy/common/config/urls_unittest.py: Copied from Tools/Scripts/webkitpy/common/config/urls.py.
-        (URLsTest):
-        (URLsTest.test_parse_bug_id):
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla_unittest.py:
-        (test_parse_bug_id):
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        (_post_error_and_check_for_bug_url):
-        * Scripts/webkitpy/tool/bot/sheriff.py:
-        (Sheriff.post_rollout_patch):
-        (Sheriff.post_chromium_deps_roll):
-
-2012-03-15  Adam Barth  <abarth@webkit.org>
-
-        The commit-queue should fast-track patches that have already passed the testing EWS bots
-        https://bugs.webkit.org/show_bug.cgi?id=81305
-
-        Reviewed by Eric Seidel.
-
-        If a patch has already passed the testing EWS bots (currently only the
-        chromium-ews bot), we should be able to land the patch without running
-        the tests again.  This patch is somewhat risky in that the tests might
-        have been broken between when the EWS bots ran and when the
-        commit-queue is processing the patch.  If that turns out to be a
-        problem in practice, we'll tighten up this fast-track in some way,
-        likely by making sure that the pass status is recent.
-
-        * Scripts/webkitpy/tool/bot/commitqueuetask.py:
-        (CommitQueueTaskDelegate.did_pass_testing_ews):
-        (CommitQueueTask._did_pass_tests_recently):
-        (CommitQueueTask.run):
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-        (MockCommitQueue.did_pass_testing_ews):
-        (test_fast_success_case):
-        * Scripts/webkitpy/tool/commands/queues.py:
-        (CommitQueue.did_pass_testing_ews):
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        (test_did_pass_testing_ews):
-
-2012-03-15  Kentaro Hara  <haraken@chromium.org>
-
-        [PerformanceTests] run-perf-tests should output correct units
-        https://bugs.webkit.org/show_bug.cgi?id=78303
-
-        Reviewed by Ryosuke Niwa.
-
-        Previously run-perf-tests just supported "ms" for units.
-        Consequently, Dromaeo perf tests had been reporting runs/s as "ms".
-        This patch fixes run-perf-tests so that they can support custom units.
-        The default unit is "ms".
-
-        The test result looks like this:
-
-        $ ./Tools/Scripts/run-perf-tests Dromaeo/dom-attr.html
-        RESULT Dromaeo: dom-attr= 6465.9525483 runs/s
-        median= 0.0 runs/s, stdev= 24.2983433436 runs/s, min= 6435.87649402 runs/s, max= 6515.63693392 runs/s
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._process_parser_test_result):
-
-2012-03-15  Brent Fulgham  <bfulgham@webkit.org>
-
-        [WinCairo] Unreviewed build change after wtf path changes.
-
-        * DumpRenderTree/win/ImageDiffWinCairoCommon.vsprops: Updated include
-        directories to look at the private header directory to find 'wtf'.
-
-2012-03-15  Kent Tamura  <tkent@chromium.org>
-
-        REGRESSION(r110595): webkit-patch suggest-reviewers doesn't work
-        https://bugs.webkit.org/show_bug.cgi?id=81293
-
-        Reviewed by Adam Barth.
-
-        r110595 introduced new format of the author field of ChangeLog entry:
-        "Adam Barth  <abarth@webkit.org> && Benjamin Poulain  <bpoulain@apple.com>"
-        Updte chanelog.py to support it.
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        (ChangeLogEntry._split_contributor_names):
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-        (test_parse_authors):
-
-2012-03-15  Lynn Neir  <lynn.neir@skype.net>
-
-        Implement LayoutTestController::setValueForUser on Windows https://bugs.webkit.org/show_bug.cgi?id=55834
-
-        Implemented setValueForUser in both DumpRenderTree and WebKitTestRunner.
-
-        Reviewed by Jessie Berlin.
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setValueForUser):
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::setValueForUser):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (LayoutTestController):
-
-2012-03-15  Adam Barth  <abarth@webkit.org>
-
-        Update the start-queue.sh script to match what we're using on the bots
-        https://bugs.webkit.org/show_bug.cgi?id=81277
-
-        Reviewed by Eric Seidel.
-
-        Over time we've added more magic git commands to clean up the local repo after
-        it has been borked in various ways. The idea behind this sequence is to clear
-        out any changes in the working copy and then to rebuild the master branch from
-        origin/master.
-
-        This patch also removes the watchdog timer that we've stopped using on the
-        bots.
-
-        This patch was reviewed on <https://github.com/eseidel/webkit/pull/1>.
-        Note: Eric and I are experimenting with GitHub to see if it might be
-        useful for WebKit.  If you have thoughts on this topic, please feel
-        free to grab Eric or me on #webkit to chat.  I assume that he and I are
-        the only ones who care about this file so using this alternative
-        process for this patch shouldn't cause any trouble.
-
-        * EWSTools/start-queue.sh:
-
-2012-03-15  Adam Barth  <abarth@webkit.org>
-
-        The commit-queue can hang when the test_expectations.txt style check fails during commit
-        https://bugs.webkit.org/show_bug.cgi?id=81251
-
-        Reviewed by Eric Seidel.
-
-        We forgot to check the --non-interactive flag, so we end up prompting
-        the "user" who doesn't exist on the bot.  We might consider teaching
-        the User class about non-interactive if we have this sort of bug again.
-
-        * Scripts/webkitpy/tool/steps/commit.py:
-        (Commit.options):
-        (Commit._check_test_expectations):
-        (Commit.run):
-        * Scripts/webkitpy/tool/steps/commit_unittest.py:
-        (CommitTest.test_check_test_expectations):
-
-2012-03-15  Jessie Berlin  <jberlin@apple.com>
-
-        fast/dom/Window/window-properties.html and fast/dom/prototype-inheritance-2.html failing on
-        Mac WK2 because WebAudio is not enabled
-        https://bugs.webkit.org/show_bug.cgi?id=81259
-
-        Reviewed by Dan Bernstein.
-
-        Enable WebAudio so that it appears in the window object in the tests.
-        The webaudio tests are all still skipped in the Mac Skipped list.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-
-2012-03-15  David Levin  <levin@chromium.org>
-
-        Various autoresize fixes.
-        https://bugs.webkit.org/show_bug.cgi?id=81199
-
-        Reviewed by Darin Fisher.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::reset): Stop using the deprecated api that was removed.
-
-2012-03-15  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Actually use --release and --debug command line options in run-gtk-test
-        https://bugs.webkit.org/show_bug.cgi?id=81234
-
-        Reviewed by Philippe Normand.
-
-        Actually handle --release and --debug command line options to
-        create the build directory, falling back to current hack to detect
-        whether it's a Release or Debug build when both options are missed.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner.__init__): Receive options too.
-        (TestRunner._get_top_level_directory): Helper function to get the
-        top level directory.
-        (TestRunner._get_build_directory): Helper function to get the
-        build directory depending on --release/--debug command line
-        options or gessing it if both options are missing.
-        (TestRunner._ensure_accessibility_daemon_is_running): Use
-        self-options now.
-        (TestRunner.run): Ditto.
-        (TestRunner.run.run_tests): Pass options to the constructor
-        instead of run().
-
-2012-03-15  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Run unit tests with --verbose in the bots
-        https://bugs.webkit.org/show_bug.cgi?id=81230
-
-        Reviewed by Martin Robinson.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (RunGtkAPITests): Add --verbose to run-gtk-test command.
-
-2012-03-15  Kevin Ollivier  <kevino@theolliviers.com>
-
-        Move wx port to using export macros
-        https://bugs.webkit.org/show_bug.cgi?id=77279
-
-        Reviewed by Hajime Morita.
-
-        * waf/build/settings.py:
-        (common_configure):
-
-2012-03-15  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, GTK build fix attempt after r110845.
-
-        * Scripts/run-gtk-tests: Added --release and --debug options.
-
-2012-03-15  Dominik Röttsches  <dominik.rottsches@linux.intel.com>
-
-        Parametrize run-with-jhbuild and update-webkitgtk-libs with platform --gtk/--efl
-        https://bugs.webkit.org/show_bug.cgi?id=79673
-
-        Preparatory work for bringing jhbuild enabled build to EFL port.
-
-        Reviewed by Philippe Normand.
-
-        * Scripts/update-webkit-libs-jhbuild: Copied from Tools/Scripts/update-webkitgtk-libs.
-        * Scripts/update-webkitgtk-libs:
-        * gtk/run-with-jhbuild:
-        * jhbuild/jhbuild-wrapper: Copied from Tools/gtk/run-with-jhbuild.
-        (top_level_path):
-        (jhbuild_installed):
-        (jhbuild_cloned):
-        (jhbuild_at_expected_revision):
-        (update_jhbuild):
-        (clone_jhbuild):
-        (install_jhbuild):
-        (update_webkit_libs_jhbuild):
-        (determine_platform):
-        (ensure_jhbuild):
-
-2012-03-15  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Add command line options to run-gtk-tests script
-        https://bugs.webkit.org/show_bug.cgi?id=81218
-
-        Reviewed by Philippe Normand.
-
-        Following command line options have been added:
-
-        -v, --verbose: to run gtester with --verbose. That would be used
-        by the bots to make it easier to know which test case it failing.
-
-        --display: to use a different display for Xvfb
-
-        It's also possible to pass one or more tests as arguments.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner.__init__): Receive command line arguments.
-        (TestRunner._get_tests): Get all the tests or the ones passed by
-        command line arguments.
-        (TestRunner._ensure_accessibility_daemon_is_running): Use display
-        command line argument.
-        (TestRunner.run): Pas command line options.
-        (TestRunner.run.run_tests): Pass command line arguments.
-
-2012-03-15  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] WebKit2APITests/TestPrinting timeout in the bots
-        https://bugs.webkit.org/show_bug.cgi?id=81211
-
-        Reviewed by Philippe Normand.
-
-        Add gtk+ patch to fix timeout in the bots. A similar patch has
-        already landed in updatream gtk+, see
-        http://git.gnome.org/browse/gtk+/commit/?id=5ebfad5d091f4c9d9c6e60364fad4c60842f027f
-
-        * gtk/jhbuild.modules:
-        * gtk/patches/gtk+-3.0.12-gtkprinter.patch: Added.
-
-2012-03-14  Gustavo Noronha Silva  <gns@gnome.org>
-
-        sheriffbot should also be addressable with a comma in addition to colon
-        https://bugs.webkit.org/show_bug.cgi?id=81101
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/net/irc/ircbot.py:
-        (IRCBot.on_pubmsg):
-
-2012-03-15  Alexander Færøy  <alexander.faeroy@nokia.com>
-
-        [Qt] MiniBrowser scroll indicators should not scroll out of view
-        https://bugs.webkit.org/show_bug.cgi?id=81131
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * MiniBrowser/qt/qml/ScrollIndicator.qml:
-
-2012-03-14  Chris Fleizach  <cfleizach@apple.com>
-
-        AX: ARIA tables need to support selected rows attribute/select rows changed notification
-        https://bugs.webkit.org/show_bug.cgi?id=79821
-
-        Reviewed by Beth Dakin.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (rowAtIndexCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        (AccessibilityUIElement):
-        * DumpRenderTree/blackberry/AccessibilityUIElementBlackBerry.cpp:
-        (AccessibilityUIElement::rowAtIndex):
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::rowAtIndex):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::rowAtIndex):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::rowAtIndex):
-
-2012-03-14  Tim Horton  <timothy_horton@apple.com>
-
-        NRWT should respect --additional-platform-directory's Skipped list
-        https://bugs.webkit.org/show_bug.cgi?id=81172
-
-        Reviewed by Timothy Hatcher.
-
-        Respect the Skipped file inside all paths included via the --additional-platform-directory option. Test results
-        from said path are already used, but the Skipped file is ignored.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._skipped_file_search_paths):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (test_skipped_file_search_paths):
-
-2012-03-14  Ojan Vafai  <ojan@chromium.org>
-
-        Unreviewed, rolling out r110783.
-        http://trac.webkit.org/changeset/110783
-        https://bugs.webkit.org/show_bug.cgi?id=81054
-
-        Caused existing test expectation lines to expand to one for
-        each test configuration.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectations.has_warnings):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (test_macro_overrides):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineTest._save_baseline):
-        (RebaselineTest._rebaseline_test):
-        (RebaselineTest.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (TestRebaseline.test_tests_to_update):
-
-2012-03-13  Jon Lee  <jonlee@apple.com>
-
-        Separate NOTIFICATIONS and LEGACY_NOTIFICATIONS
-        https://bugs.webkit.org/show_bug.cgi?id=80922
-        <rdar://problem/11035082>
-
-        Reviewed by Jian Li.
-
-        You can include either NOTIFICATIONS or LEGACY_NOTIFICATIONS and have a complete API.
-        LEGACY_NOTIFICATIONS should cover all of the previous functionality, and NOTIFICATIONS will cover the
-        new API. Therefore, APIs that are common between the two will have:
-        #if ENABLE(NOTIFICATIONS) || ENABLE(LEGACY_NOTIFICATIONS)
-
-        This patch initially sets both to be exactly the same. As other bugs with patches begin to migrate to
-        the new API, the defines will begin to split. This allows ports to decide which set of APIs to include.
-
-        Update everything to be #if ENABLE(NOTIFICATIONS) || ENABLE(LEGACY_NOTIFICATIONS)
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::grantDesktopNotificationPermission):
-        (LayoutTestController::simulateDesktopNotificationClick):
-        * DumpRenderTree/chromium/NotificationPresenter.cpp:
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::resetTestController):
-        * DumpRenderTree/win/DRTDesktopNotificationPresenter.cpp:
-        (DRTDesktopNotificationPresenter::checkNotificationPermission):
-
-2012-03-13  Ojan Vafai  <ojan@chromium.org>
-
-        Have webkit-patch rebaseline-test update test_expectations.txt
-        https://bugs.webkit.org/show_bug.cgi?id=81054
-
-        Reviewed by Dirk Pranke.
-
-        This will allow us to use the All Failures tab in garden-o-matic
-        to rebaseline tests without making test_expectations.txt stale.
-
-        It's conservative and only removes lines if the test is
-        not flaky and fails in a way the rebaseline would fix (e.g.
-        CRASH/TIMEOUT will not be touched).
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectations.remove_configuration_from_test):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (RemoveConfigurationsTest):
-        (RemoveConfigurationsTest.test_remove):
-        (test_remove_line):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineTest._is_supported_port):
-        (RebaselineTest):
-        (RebaselineTest._update_expectations_file):
-        (RebaselineTest._rebaseline_test_and_update_expectations):
-        (RebaselineTest.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (TestRebaseline.test_rebaseline_updates_expectations_file):
-
-2012-03-14  Jessie Berlin  <jberlin@apple.com>
-
-        Crash in WKTR under addChromeInputField due to using 0 as a key in a HashMap
-        https://bugs.webkit.org/show_bug.cgi?id=81167
-
-        Reviewed by Sam Weinig.
-
-        Do not use 0 as a key in a HashMap.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        cacheLayoutTestControllerCallback uses the enum as keys for the callback map.
-
-2012-03-14  Ojan Vafai  <ojan@chromium.org>
-
-        Add the chromium lion bot to garden-o-matic and remove
-        the platform_move_to in builders.py since the Chromium Lion
-        port is now a normal port.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-
-2012-03-14  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix regression/crash introduced in r110724 - bad type passed from skipped_tests() by default.
-
-        Unreviewed, build fix.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.skipped_tests):
-
-2012-03-14  Dirk Pranke  <dpranke@chromium.org>
-
-        Please add a way to manually skip some tests in NRWT
-        https://bugs.webkit.org/show_bug.cgi?id=81019
-
-        Reviewed by Ojan Vafai.
-
-        This patch implements the -i / --ignore-tests flag from ORWT
-        and refactors the test_expectations.py code slightly to handle
-        it.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.parse_expectations):
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectations.__init__):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (test_add_skipped_tests):
-        (test_add_skipped_tests_duplicate):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_ignore_tests):
-        (MainTest.test_ignore_tests.assert_ignored):
-
-2012-03-14  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: run with no args on lion, is putting baselines in platform/mac-lion, not platform/mac
-        https://bugs.webkit.org/show_bug.cgi?id=81028
-
-        Reviewed by Ojan Vafai.
-
-        The mac port had incorrect lookups for 'mac-lion' and
-        'mac-future' in some places. This patch fixes that and adds a
-        bunch of tests.
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.baseline_path):
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        (MacTest.assert_skipped_file_search_paths):
-        (MacTest.test_skipped_file_search_paths):
-        (_assert_search_path):
-        (test_baseline_search_path):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._skipped_file_search_paths):
-
-2012-03-13  Jer Noble  <jer.noble@apple.com>
-
-        Lion Intel Debug WebKit2 Tests crashing under [WKFullScreenWindowController _startEnterFullScreenAnimationWithDuration:]
-        https://bugs.webkit.org/show_bug.cgi?id=81056
-
-        Reviewed by Jessie Berlin.
-
-        Intercept beganEnterFullScreen and beganExitFullScreen and turn them into no-ops (plus logging).
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        (WTR::InjectedBundlePage::beganEnterFullScreen):
-        (WTR::InjectedBundlePage::beganExitFullScreen):
-
-2012-03-14  Alexander Færøy  <alexander.faeroy@nokia.com>
-
-        The width and height of the scroll indicators in the MiniBrowser does
-        not consider the offset margins.
-        https://bugs.webkit.org/show_bug.cgi?id=81112
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        This patch fixes the issue by withdrawing two times the anchor
-        margins.
-
-        * MiniBrowser/qt/qml/ScrollIndicator.qml:
-
-2012-03-14  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] Implement LayoutTestController::clearBackForwardList
-        https://bugs.webkit.org/show_bug.cgi?id=80142
-
-        Adding missing implementation clearBackForwardList to EFL's
-        LayoutTestController. This implementation allows us to unskip 
-        tests connected with history.
-
-        Reviewed by Antonio Gomes.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::clearBackForwardList): Implemented.
-
-2012-03-13  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [EFL][DRT] Expose window.internals object
-        https://bugs.webkit.org/show_bug.cgi?id=79900
-
-        Exposes window.internals for EFL's DRT. Makes possible to
-        remove some tests from the skip list.
-
-        Reviewed by Antonio Gomes.
-
-        * DumpRenderTree/efl/CMakeLists.txt:
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::onWindowObjectCleared):
-
-2012-03-13  Adam Barth  <abarth@webkit.org> && Benjamin Poulain  <bpoulain@apple.com>
-
-        Always enable ENABLE(CLIENT_BASED_GEOLOCATION)
-        https://bugs.webkit.org/show_bug.cgi?id=78853
-
-        Reviewed by Adam Barth.
-
-        * Scripts/build-webkit:
-        * qmake/mkspecs/features/features.prf:
-
-2012-03-12  Antonio Gomes  <agomes@rim.com>
-
-        Convert nodesFromRect tests to use Internals interface
-        https://bugs.webkit.org/show_bug.cgi?id=80886
-
-        Reviewed by Ryosuke Niwa.
-
-        This clean up allows to remove port specific bits of each
-        DRT implementation that supports testing Document::nodesFromRect,
-        in favor of making use of the 'Internals' interface to test it.
-
-        This makes its code conveniently more expansible and cleaner.
-
-        Also removed stubs from Win and EFL DRTs.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-
-2012-03-13  Ojan Vafai  <ojan@chromium.org>
-
-        Rebaselining for a new port doesn't work right with multiple fallback ports
-        https://bugs.webkit.org/show_bug.cgi?id=80932
-
-        Reviewed by Adam Barth.
-
-        Since chromium-leopard also falls back to mac-leopard, we need to
-        copy the existing result for both chromium-leopard and chromium-snowleopard
-        before doing lion rebaselines.
-
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        (fallback_port_names_for_new_port):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineTest):
-        (RebaselineTest._copy_existing_baseline):
-        (RebaselineTest._rebaseline_test):
-        (RebaselineTest.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        (GardeningHTTPRequestHandler.rebaseline):
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-        (GardeningServerTest.test_rebaseline_new_port):
-
-2012-03-13  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Tweak minibrowser UI
-
-        Add some margins to the scroll indicators, and set a dark background
-        color so you see the page dimensions.
-
-        Reviewed by Antonio Gomes.
-
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-        * MiniBrowser/qt/qml/ScrollIndicator.qml:
-
-2012-03-13  ChangSeok Oh  <shivamidow@gmail.com>
-
-        [EFL] [DRT] Implement scheduleAsynchronousKeyDown.
-        https://bugs.webkit.org/show_bug.cgi?id=79601
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Extracted shareable code from keyDownCallback and then added createKeyEventInfo.
-        createKeyEventInfo creates a new structure KeyEventInfo that has keyName and modifiers
-        and is taken over to sendKeyDown.
-        Added sendKeyDown and sendAsynchronousKeyDown to evaluate keyDown event directly
-        and asynchronously. Eventually, sendAsynchronousKeyDown calls sendKeyDown.
-
-        * DumpRenderTree/efl/EventSender.cpp:
-        (KeyEventInfo::KeyEventInfo):
-        (KeyEventInfo):
-        (createKeyEventInfo):
-        (sendKeyDown):
-        (keyDownCallback):
-        (sendAsynchronousKeyDown):
-        (scheduleAsynchronousKeyDownCallback):
-
-2012-03-12  Ojan Vafai  <ojan@chromium.org>
-
-        webkit-patch optimize-baselines sometimes creates a mac-future result
-        https://bugs.webkit.org/show_bug.cgi?id=80717
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/checkout/baselineoptimizer.py:
-        (_baseline_search_hypergraph):
-        (BaselineOptimizer._find_optimal_result_placement):
-        (BaselineOptimizer._filter_virtual_ports):
-        * Scripts/webkitpy/common/checkout/baselineoptimizer_unittest.py:
-        (BaselineOptimizerTest.test_no_add_mac_future):
-
-2012-03-12  Jessie Berlin  <jberlin@apple.com>
-
-        More Windows build fixing.
-
-        * DumpRenderTree/win/WorkQueueItemWin.cpp:
-
-2012-03-12  Jessie Berlin  <jberlin@apple.com>
-
-        More Windows build fixing.
-
-        * DumpRenderTree/win/AccessibilityControllerWin.cpp:
-        * DumpRenderTree/win/EditingDelegate.cpp:
-        * DumpRenderTree/win/EventSender.cpp:
-        * DumpRenderTree/win/FrameLoadDelegate.cpp:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        * DumpRenderTree/win/UIDelegate.cpp:
-
-2012-03-12  Dirk Pranke  <dpranke@chromium.org>
-
-        remove the 'gpu' group from the flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=80353
-
-        Reviewed by Adam Barth.
-
-        Since those bots are obsolete, we don't need this any more.
-
-        * TestResultServer/static-dashboards/builders.js:
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-        (testPlatformAndBuildType):
-        (testHtmlForTestTypeSwitcherGroup):
-
-2012-03-12  Dirk Pranke  <dpranke@chromium.org>
-
-        remove graphics_type from webkitpy.layout_tests.models.test_configuration
-        https://bugs.webkit.org/show_bug.cgi?id=80643
-
-        Reviewed by Ojan Vafai.
-
-        Now that the chromium-gpu ports are gone, there's no need for
-        the graphics_type CPU/GPU distinction. Most of this change is
-        just updating tests accordingly.
-
-        * Scripts/webkitpy/layout_tests/controllers/test_expectations_editor_unittest.py:
-        (TestExpectationEditorTests):
-        * Scripts/webkitpy/layout_tests/models/test_configuration.py:
-        (TestConfiguration.__init__):
-        (TestConfiguration.category_order):
-        (TestConfiguration.__str__):
-        (TestConfiguration.__repr__):
-        (TestConfiguration.__hash__):
-        (TestConfigurationConverter.to_specifiers_list):
-        * Scripts/webkitpy/layout_tests/models/test_configuration_unittest.py:
-        (make_mock_all_test_configurations_set):
-        (TestConfigurationTest.test_items):
-        (TestConfigurationTest.test_keys):
-        (TestConfigurationTest.test_str):
-        (TestConfigurationTest.test_repr):
-        (TestConfigurationTest.test_hash):
-        (TestConfigurationTest.test_hash.query_unknown_key):
-        (TestConfigurationTest.test_eq):
-        (TestConfigurationTest.test_values):
-        (SpecifierSorterTest.test_specifier_priority):
-        (SpecifierSorterTest.test_sort_specifiers):
-        (TestConfigurationConverterTest.test_to_config_set):
-        (TestConfigurationConverterTest.test_macro_expansion):
-        (TestConfigurationConverterTest.test_to_specifier_lists):
-        (TestConfigurationConverterTest.test_converter_macro_collapsing):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (test_error_on_different_build_type):
-        (TestExpectationSerializerTests.test_parsed_to_string):
-        (TestExpectationSerializerTests.test_reconstitute_only_these):
-        * Scripts/webkitpy/layout_tests/port/apple.py:
-        (ApplePort._generate_all_test_configurations):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.__init__):
-        (Port.name):
-        (Port.version):
-        (Port.test_configuration):
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort):
-        (ChromiumPort._generate_all_test_configurations):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        (ChromiumLinuxPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux_unittest.py:
-        (ChromiumLinuxPortTest.test_check_illegal_port_names):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        (ChromiumMacPortTest.test_baseline_path):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumPortTest.test_all_test_configurations):
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort._generate_all_test_configurations):
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort._generate_all_test_configurations):
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort._generate_all_test_configurations):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort.all_test_configurations):
-        (TestPort._all_build_types):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-        (BuildCoverageExtrapolatorTest.test_extrapolate):
-        (GardeningExpectationsUpdaterTest.test_unknown_failure_type):
-        (GardeningExpectationsUpdaterTest.test_add_new_expectation):
-        (GardeningExpectationsUpdaterTest.test_replace_old_expectation):
-        (GardeningExpectationsUpdaterTest.test_pass_expectation):
-        (GardeningExpectationsUpdaterTest.test_supplement_old_expectation):
-        (GardeningExpectationsUpdaterTest.test_spurious_updates):
-
-2012-03-12  Dirk Pranke  <dpranke@chromium.org>
-
-        _runtime_feature_list isn't supported on Apple Mac DRT
-        https://bugs.webkit.org/show_bug.cgi?id=80906
-
-        Reviewed by Eric Seidel.
-
-        It looks like this feature is actually only supported on the Win
-        DRT port, so this patch reworks the code to make that clearer
-        and reduce unnecessary overrides.
-
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort._path_to_webcore_library):
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort._path_to_webcore_library):
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort._skipped_file_search_paths):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._runtime_feature_list):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (TestWebKitPort.__init__):
-        (TestWebKitPort.all_test_configurations):
-        (test_skipped_directories_for_features):
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        (WinPort):
-        (WinPort._runtime_feature_list):
-        * Scripts/webkitpy/layout_tests/port/win_unittest.py:
-        (WinPortTest.test_operating_system):
-        (WinPortTest):
-        (WinPortTest.test_runtime_feature_list):
-
-2012-03-12  Peter Beverloo  <peter@chromium.org>
-
-        [Chromium] Temporary build-fix for the Android bot
-        https://bugs.webkit.org/show_bug.cgi?id=80862
-
-        Reviewed by Adam Barth.
-
-        Manually set the environmental variables required to compile source
-        files through the Android NDK instead of relying on the envsetup.sh
-        script. A proper fix will be landed to Chromium ASAP, and following
-        a Chromium roll into WebKit this code will be removed.
-
-        * Scripts/webkitdirs.pm:
-        (buildChromiumMakefile):
-
-2012-03-12  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Use right construct to detect config_test_gccdepends
-
-        Reviewed by Andreas Kling.
-
-        * qmake/mkspecs/features/default_pre.prf:
-
-2012-03-12  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Expose location of WebKit's bin and imports dir through module file
-
-        Reviewed by Andreas Kling.
-
-        * qmake/qt_webkit.pri:
-
-2012-03-12  Andras Becsi  <andras.becsi@nokia.com>
-
-        [Qt][WK2] Add support for rudimentary scroll indicators in MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=80832
-
-        Reviewed by Tor Arne Vestbø.
-
-        Add a basic scroll indicator component to MiniBrowser so that it
-        behaves similar to the ScrollDecorator QML component.
-
-        * MiniBrowser/qt/MiniBrowser.qrc:
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-        * MiniBrowser/qt/qml/ScrollIndicator.qml: Added.
-
-2012-03-12  C Anthony Risinger  <anthony@xtfx.me>
-
-        [GTK] r110296 included an extra $ in @$(AM_V_GEN)
-        https://bugs.webkit.org/show_bug.cgi?id=80809
-
-        Reviewed by Philippe Normand.
-
-        * GNUmakefile.am: Add `$` to @(AM_V_GEN), else /bin/sh syntax error
-
-2012-03-12  Ming Xie  <mxie@rim.com>
-
-        [BlackBerry] build-webkit doesn't recognize "--cmakearg" for the BlackBerry port
-        https://bugs.webkit.org/show_bug.cgi?id=80812
-
-        Reviewed by Rob Buis.
-
-        * Scripts/build-webkit: Add $cmakeArgs to buildCMakeProjectOrExit()
-        * Scripts/webkitdirs.pm:
-        (blackberryCMakeArguments): Remove "PUBLIC_BUILD=0" define
-
-
-2012-03-12  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Fix build with newer Qt 5.
-
-        Reviewed by Tor Arne Vestbø.
-
-        Newer Qt 5 renames QDeclarativeFoo to QQmlFoo and provides backwards compatible
-        renames, which however do trigger a #warning. Until we _require_ a newer Qt 5
-        we should disable -Werror.
-
-        Also load(moc) for the availability of QMAKE_MOC in various derived sources. The
-        implicit load was removed recently.
-
-        * qmake/mkspecs/features/default_pre.prf:
-        * qmake/mkspecs/features/unix/default_post.prf:
-
-2012-03-11  Maciej Stachowiak  <mjs@apple.com>
-
-        Add --instruments option to sunspider to profile with Instruments
-        https://bugs.webkit.org/show_bug.cgi?id=80783
-
-        Reviewed by Filip Pizlo.
-
-        * Scripts/run-sunspider:
-
-2012-03-11  Viatcheslav Ostapenko  <ostapenko.viatcheslav@nokia.com>
-
-        [Qt] [WK2] Support threaded renderer in WK2
-        https://bugs.webkit.org/show_bug.cgi?id=76661
-
-        Remove disabling of threaded rendering.
-
-        Reviewed by Noam Rosenthal.
-
-        * MiniBrowser/qt/main.cpp:
-        (main):
-
-2012-03-09  Zan Dobersek  <zandobersek@gmail.com>
-
-        [WK2] run-perf-tests should be able to run with WTR
-        https://bugs.webkit.org/show_bug.cgi?id=80042
-
-        Reviewed by Martin Robinson.
-
-        Add an option to PerfTestRunner to use WebKitTestRunner instead of
-        DumpRenderTree and add the '--no-timeout' flag to WebKitTestRunner
-        to avoid timing out when running performance tests.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._parse_args):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::InjectedBundle): Initialize m_useWaitToDumpWatchdogTimer
-        to true.
-        (WTR::InjectedBundle::didReceiveMessage): Unpack the 'BeginTest' message
-        as a dictionary containing DumpPixels and UseWaitToDumpWatchdogTimer keys.
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (WTR::InjectedBundle::useWaitToDumpWatchdogTimer): Make m_useWaitToDumpWatchdogTimer
-        publicly accessible.
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::waitUntilDone): Only initialize the watchdog if it
-        is required.
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::TestController): Initialize m_useWaitToDumpWatchdogTimer
-        to true.
-        (WTR::TestController::initialize): Set m_useWaitToDumpWatchdogTimer to false
-        if '--no-timeout' option is present.
-        (WTR::TestController::runUntil): Translate TimeoutDuration to a proper timeout
-        value, or -1.0 if timeout should not occur.
-        * WebKitTestRunner/TestController.h:
-        (WTR::TestController::useWaitToDumpWatchdogTimer): Make m_useWaitToDumpWatchdogTimer
-        publicly accessible.
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::invoke): Pack the 'BeginTest' message as a dictionary,
-        containing DumpPixels and UseWaitToDumpWatchdogTimer keys and corresponding values.
-        Waiting for final message should not time out if not necessary.
-        * WebKitTestRunner/gtk/TestControllerGtk.cpp:
-        (WTR::TestController::platformRunUntil): Only set up a timeout if necessary.
-        * WebKitTestRunner/qt/TestControllerQt.cpp:
-        (WTR::TestController::platformRunUntil): Ditto.
-        * WebKitTestRunner/mac/TestControllerMac.mm:
-        (WTR::TestController::platformRunUntil): Add a FIXME, indicating functionality
-        is missing.
-        * WebKitTestRunner/win/TestControllerWin.cpp:
-        (WTR::TestController::platformRunUntil): Ditto.
-
-2012-03-09  Jon Lee  <jonlee@apple.com>
-
-        Rename NotificationPresenter to NotificationClient
-        https://bugs.webkit.org/show_bug.cgi?id=80488
-        <rdar://problem/10965558>
-
-        Reviewed by Kentaro Hara.
-
-        Refactor to use renamed WebCore::NotificationClient.
-        * DumpRenderTree/win/DRTDesktopNotificationPresenter.cpp:
-        (DRTDesktopNotificationPresenter::checkNotificationPermission):
-
-2012-03-07  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Deprecate renderDirectlyToWebView parameter of WebViewClient::createGraphicsContext3D()
-        https://bugs.webkit.org/show_bug.cgi?id=80523
-
-        Reviewed by Darin Fisher.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createGraphicsContext3D):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-03-09  Eric Seidel  <eric@webkit.org>
-
-        build-webkit should build Source/WTF on Mac
-        https://bugs.webkit.org/show_bug.cgi?id=80728
-
-        Reviewed by Adam Barth.
-
-        We'll add other ports to this list in future commits.
-
-        * Scripts/build-webkit:
-
-2012-03-09  Jon Lee  <jonlee@apple.com>
-
-        Add support for ENABLE(LEGACY_NOTIFICATIONS)
-        https://bugs.webkit.org/show_bug.cgi?id=80497
-
-        Reviewed by Adam Barth.
-
-        Prep for b80472: Update API for Web Notifications
-        * Scripts/build-webkit:
-        * qmake/mkspecs/features/features.prf:
-
-2012-03-09  Ashod Nakashian  <ashodnakashian@yahoo.com>
-
-        Bash scripts should support LF endings only
-        https://bugs.webkit.org/show_bug.cgi?id=79509
-
-        Reviewed by David Kilzer.
-
-        * EWSTools/boot.sh: Added properties svn:executable and svn:eol-style.
-        * EWSTools/start-queue.sh: Added property svn:eol-style.
-        * Scripts/webkit-tools-completion.sh: Added properties svn:executable and svn:eol-style.
-        * WebKitTestRunner/win/build-generated-files.sh: Added properties svn:executable and svn:eol-style.
-        * iExploder/iexploder-1.7.2/tools/release_src.sh: Added property svn:eol-style.
-        * iExploder/iexploder-1.7.2/tools/update_html_tags_from_sources.sh: Added property svn:eol-style.
-
-2012-03-09  Ionut Biru  <ibiru@archlinux.org>
-
-        [BUILD] use detected python to run generate-gtkdoc
-        https://bugs.webkit.org/show_bug.cgi?id=80695
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * GNUmakefile.am: Use $(PYTHON) instead of plain `python`
-
-2012-03-09  Nat Duca  <nduca@chromium.org>
-
-        Make check-webkit-style complain about "no new tests" lines in changelogs
-        https://bugs.webkit.org/show_bug.cgi?id=80582
-
-        Reviewed by David Levin.
-
-        * Scripts/webkitpy/style/checkers/changelog.py:
-        (ChangeLogChecker.check_entry):
-        * Scripts/webkitpy/style/checkers/changelog_unittest.py:
-        (ChangeLogCheckerTest.test_no_new_tests):
-
-2012-03-09  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r110250.
-        http://trac.webkit.org/changeset/110250
-        https://bugs.webkit.org/show_bug.cgi?id=80682
-
-        It made NRWT ignore test_expectations.txt on Qt-WK2 and ignore
-        qt-linux at all. (Requested by Ossy on #webkit).
-
-        * Scripts/old-run-webkit-tests:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort):
-        (QtPort.determine_full_port_name):
-        (QtPort.baseline_search_path):
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        (QtPortTest):
-        (QtPortTest._assert_search_path):
-        (QtPortTest.test_baseline_search_path):
-
-2012-03-08  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Use Qt's module system for install rules and depending on QtWebKit
-
-        Instead of rolling our own install rules we now use the same approach as
-        every other Qt module, by loading qt_module.prf and qt_module_config.prf.
-
-        This ensures that we follow the same semantics as the rest of Qt on
-        what sort of config options are enabled by default (create_cmake eg.).
-        It also allows us to use QT += webkit instead of the workaround we had
-        with CONFIG += qtwebkit.
-
-        We do however force Qt to always treat our build as a non-developer build,
-        so the libraries will end up in the WebKit lib directory instead of the
-        qtbase directory (as with a normal developer-build). This allows us to
-        keep the webkit-build self-contained. If Qt is a developer build we still
-        copy the module file manually to Qt, so that you don't have to install
-        WebKit to make it available.
-
-        For non-developer builds of Qt, it is still possible to use the built
-        WebKit libraries without having to install them, by having the variable
-        QMAKE_EXTRA_MODULE_FORWARDS set in the project's .qmake.cache file,
-        pointing to $WEBKITOUTUTDIR/$CONFIGURATION/modules.
-
-        https://bugs.webkit.org/show_bug.cgi?id=80590
-
-        Reviewed by Simon Hausmann.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        * MiniBrowser/qt/UrlLoader.cpp:
-        * QtTestBrowser/QtTestBrowser.pro:
-        * Tools.pro:
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-        * WebKitTestRunner/Target.pri:
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/default_pre.prf:
-        * qmake/mkspecs/features/functions.prf:
-        * qmake/mkspecs/features/qtwebkit-private.prf: Removed.
-        * qmake/mkspecs/features/qtwebkit.prf:
-        * qmake/mkspecs/features/rpath.prf:
-        * qmake/mkspecs/modules/qt_webkit.pri: Removed.
-        * qmake/qt_webkit.pri: Added.
-
-2012-03-08  Igor Oliveira  <igor.o@sisa.samsung.com>
-
-        Unreviewed. Update my email.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-03-08  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        Recent changes to chromium.py etc. broke chromium_android.py
-        https://bugs.webkit.org/show_bug.cgi?id=80623
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidDriver.__init__):
-        (ChromiumAndroidDriver._start):
-
-2012-03-08  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium] Exception running reftest with --no-pixel-tests
-        https://bugs.webkit.org/show_bug.cgi?id=80642
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumDriver.__init__):
-        (ChromiumDriver._wrapper_options):
-
-2012-03-08  Rafael Brandao  <rafael.lobo@openbossa.org>
-
-        [NRWT] Fix --platform=qt-5.0 --new-baseline combo
-        https://bugs.webkit.org/show_bug.cgi?id=72489
-
-        Reviewed by Dirk Pranke.
-
-        NRWT: The default platform name for Qt combined with --webkit-test-runner is now
-        "qt-5.0-wk2" instead of "qt-linux" and that name is now prefered for tests.
-        --platform will override the platform name and then we'll use it.
-
-        ORWT: We check for qt version and use platform name "qt-4.8" if the version is lower
-        than 5.0.0, and then we choose between "qt-5.0-wk1" and "qt-5.0-wk2". --platform will
-        override it in the end.
-
-        * Scripts/old-run-webkit-tests:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort):
-        (QtPort.determine_full_port_name):
-        (QtPort.baseline_search_path):
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        (QtPortTest):
-        (QtPortTest._assert_search_path):
-        (QtPortTest.test_baseline_search_path):
-
-2012-03-08  Beth Dakin  <bdakin@apple.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=80463
-        RenderImage is using the wrong origin when calling addRelevantRepaintedObject
-        -and corresponding-
-        <rdar://problem/10970221>
-
-        Reviewed by Dan Bernstein.
-
-        New test!
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutForImages.cpp: Added.
-        (TestWebKitAPI):
-        (TestWebKitAPI::didNewFirstVisuallyNonEmptyLayout):
-        (TestWebKitAPI::setPageLoaderClient):
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutForImages_Bundle.cpp: Added.
-        (TestWebKitAPI):
-        (NewFirstVisuallyNonEmptyLayoutForImagesTest):
-        (TestWebKitAPI::NewFirstVisuallyNonEmptyLayoutForImagesTest::NewFirstVisuallyNonEmptyLayoutForImagesTest):
-        (TestWebKitAPI::NewFirstVisuallyNonEmptyLayoutForImagesTest::didCreatePage):
-        * TestWebKitAPI/Tests/WebKit2/lots-of-images.html: Added.
-
-2012-03-08  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Prospective Windows build fix
-
-        Don't assume that windows-builds will always run inside a cmd.exe shell.
-
-        * qmake/mkspecs/features/default_pre.prf:
-
-2012-03-08  Dan Bernstein  <mitz@apple.com>
-
-        <rdar://problem/10981173> Dashboard regions should not be in device space
-
-        Reviewed by John Sullivan.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/mac/DeviceScaleFactorInDashboardRegions.mm: Added.
-        (-[DeviceScaleFactorInDashboardRegionsUIDelegate webView:dashboardRegionsChanged:]):
-        (TestWebKitAPI):
-        (TestWebKitAPI::TEST):
-
-2012-03-08  Dirk Pranke  <dpranke@chromium.org>
-
-        webkit-patch works oddly on local Git branches
-        https://bugs.webkit.org/show_bug.cgi?id=76958
-
-        Reviewed by Ojan Vafai.
-
-        This change makes the '-g' flag to webkit-patch behave a
-        little more consistently with git. The 'HEAD..' syntax
-        is changed to 'HEAD....' (four dots), so as to not
-        collide with the underlying git syntax. We also generalize
-        the syntax to support any refname, so 'foo....' means
-        diff against foo and include working copy changes.
-
-        This change also adds the 'UPSTREAM' shortcut to identify
-        whatever the current upstream/tracking branch is; this is
-        useful if you have multiple local branches stacked up.
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        (Git._branch_from_ref):
-        (Git):
-        (Git._current_branch):
-        (Git._upstream_branch):
-        (Git.merge_base):
-        (Git._commit_on_branch):
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-        (GitSVNTest._second_local_commit):
-        (GitSVNTest._two_local_commits):
-        (GitSVNTest.test_commit_with_message_git_commit_range):
-        (GitSVNTest.test_upstream_branch):
-        (GitSVNTest.test_create_patch_working_copy_only):
-        (GitSVNTest.test_changed_files_local_plus_working_copy):
-        (GitSVNTest.test_changed_files_working_copy_only):
-        (GitSVNTest.test_changed_files_upstream):
-        * Scripts/webkitpy/tool/steps/options.py:
-        (Options):
-
-2012-03-08  John Sullivan  <sullivan@apple.com>
-
-        Made extract-localizable-strings ignore NSLocalizedFileSizeDescription
-
-        Reviewed by Eric Carlson.
-
-        * Scripts/extract-localizable-strings:
-        Added NSLocalizedFileSizeDescription to allowed list of tokens that start
-        with NSLocalized. Also improved an error message to include the troublesome token.
-
-2012-03-08  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r110115.
-        http://trac.webkit.org/changeset/110115
-        https://bugs.webkit.org/show_bug.cgi?id=80581
-
-        broke test-webkitpy (Requested by philn-tp on #webkit).
-
-        * Scripts/old-run-webkit-tests:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort):
-        (QtPort.determine_full_port_name):
-        (QtPort.baseline_search_path):
-
-2012-03-08  Kentaro Hara  <haraken@chromium.org>
-
-        Unreviewed. Added myself to watchlist.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-03-07  Jessie Berlin  <jberlin@apple.com>
-
-        Clean Windows build fails after r110033
-        https://bugs.webkit.org/show_bug.cgi?id=80553
-
-        Rubber-stamped by Jon Honeycutt and Eric Seidel.
-
-        Add the new JavaScriptCore include directory to some more vsprops files.
-
-        * DumpRenderTree/win/ImageDiffCommon.vsprops:
-        * WebKitTestRunner/Configurations/InjectedBundleCommon.vsprops:
-        * WebKitTestRunner/Configurations/WebKitTestRunnerCommon.vsprops:
-
-2012-03-07  Rafael Brandao  <rafael.lobo@openbossa.org>
-
-        [NRWT] Fix --platform=qt-5.0 --new-baseline combo
-        https://bugs.webkit.org/show_bug.cgi?id=72489
-
-        Reviewed by Dirk Pranke.
-
-        NRWT: The default platform name for Qt combined with --webkit-test-runner is now
-        "qt-5.0-wk2" instead of "qt-linux" and that name is now prefered for tests.
-        --platform will override the platform name and then we'll use it.
-
-        ORWT: We check for qt version and use platform name "qt-4.8" if the version is lower
-        than 5.0.0, and then we choose between "qt-5.0-wk1" and "qt-5.0-wk2". --platform will
-        override it in the end.
-
-        * Scripts/old-run-webkit-tests:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort):
-        (QtPort.determine_full_port_name):
-        (QtPort.baseline_search_path):
-
-2012-03-07  Hugo Parente Lima  <hugo.lima@openbossa.org>
-
-        [Qt][WK2] MiniBrowser on desktop does not react to click events
-        https://bugs.webkit.org/show_bug.cgi?id=80314
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Do not enable touch mocking on desktop mode.
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::handleUserOptions):
-
-2012-03-07  Ojan Vafai  <ojan@chromium.org>
-
-        Automatically move to the next test after rebaseline in the results view
-        https://bugs.webkit.org/show_bug.cgi?id=80527
-
-        Reviewed by Dimitri Glazkov.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
-
-2012-03-07  Ojan Vafai  <ojan@chromium.org>
-
-        garden-o-matic rebaseline is broken for ports that don't have a fallback port
-        https://bugs.webkit.org/show_bug.cgi?id=80526
-
-        Reviewed by Adam Barth.
-
-        Passing "None" as the fallback port throws an error in "webkit-patch rebaseline-test"
-        since there is no "None" port.
-
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        (GardeningHTTPRequestHandler.rebaseline):
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-        (GardeningServerTest.test_rebaseline):
-
-2012-03-07  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Remove the TestWebPlugin's use of implicit FBO for offscreen contexts
-        https://bugs.webkit.org/show_bug.cgi?id=80521
-
-        Reviewed by Kenneth Russell.
-
-        Switches TestWebPlugin from using a context created by WebViewClient::createGraphicsContext3D(..., false) over
-        to an explicitly offscreen context with explicitly managed texture / FBO, so we can deprecate the
-        renderDirectlyToHostWindow flag from WebViewClient::createGraphicsContext3D.
-
-        Covered by platform/chromium/compositing/plugins/*
-
-        * DumpRenderTree/chromium/TestWebPlugin.cpp:
-        (TestWebPlugin::TestWebPlugin):
-        (TestWebPlugin::initialize):
-        (TestWebPlugin::updateGeometry):
-        (TestWebPlugin::initScene):
-        (TestWebPlugin::destroyScene):
-        * DumpRenderTree/chromium/TestWebPlugin.h:
-        (TestWebPlugin):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createPlugin):
-
-2012-03-07  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] remove webkitpy dependency in run-gtk-tests
-        https://bugs.webkit.org/show_bug.cgi?id=80500
-
-        Reviewed by Martin Robinson.
-
-        Replace Executive calls with bare subprocess calls.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner):
-        (TestRunner._lookup_atspi2_binary):
-        (TestRunner.run):
-        (TestRunner.run.run_for_real):
-
-2012-03-07  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, GTK build fix after r110059.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner._check_if_tests_have_timed_out):
-        (TestRunner.run.run_tests):
-        (TestRunner):
-
-2012-03-07  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] race condition in run-gtk-tests
-        https://bugs.webkit.org/show_bug.cgi?id=80495
-
-        Reviewed by Martin Robinson.
-
-        Refactored the script to wait the a11y dbus service becomes
-        available before starting the tests.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner._lookup_atspi2_binary):
-        (TestRunner):
-        (TestRunner._wait_dbus_service_and_run):
-        (TestRunner._wait_dbus_service_and_run.on_name_appeared):
-        (TestRunner._wait_dbus_service_and_run.on_name_vanished):
-        (TestRunner.run):
-        (TestRunner.run.bailout):
-        (TestRunner.run.run_for_real):
-
-2012-03-07  Dinu Jacob  <dinu.jacob@nokia.com>
-
-        [Qt] REGRESSION(r109575) Broke tap-to-zoom gesture
-        https://bugs.webkit.org/show_bug.cgi?id=80425
-
-        Reviewed by Simon Hausmann.
-
-        Set startScreenPos in mock touch point
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::notify):
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-        (MiniBrowserApplication):
-
-2012-03-07  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Windows build fix.
-
-        Reviewed by Tor Arne Vestbø.
-
-        Pass the -j parameter only to "make", not "nmake".
-
-        * Scripts/webkitdirs.pm:
-        (buildQMakeProjects):
-
-2012-03-07  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Fix compilation without QtQuick1
-        https://bugs.webkit.org/show_bug.cgi?id=80503
-
-        Reviewed by Tor Arne Vestbø.
-
-        Introduce HAVE_QQUICK1 as feature and added haveQtModule
-        as convenience function.
-
-        * qmake/mkspecs/features/features.prf:
-        * qmake/mkspecs/features/functions.prf:
-
-2012-03-07  Zoltan Horvath  <zoltan@webkit.org>
-
-        [Qt] Add qmake config tests for JPEG and PNG library
-        https://bugs.webkit.org/show_bug.cgi?id=80398
-
-        Add JPEG and PNG library tests to config.tests and
-        add error() abort to WebCore.pri if tests don't work.
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/config.tests/libjpeg/libjpeg.cpp: Added.
-        (main):
-        * qmake/config.tests/libjpeg/libjpeg.pro: Added.
-        * qmake/config.tests/libpng/libpng.cpp: Added.
-        (main):
-        * qmake/config.tests/libpng/libpng.pro: Added.
-        * qmake/sync.profile:
-
-2012-03-07  Byungwoo Lee  <bw80.lee@samsung.com>
-
-        [EFL] Build warning: Fix warn_unused_result warnings.
-        https://bugs.webkit.org/show_bug.cgi?id=79194
-
-        Reviewed by Filip Pizlo.
-
-        Fixed build warning which is getting generated when not using return
-        value of a fuction, especially declared with warn_unused_result
-        attribute.
-
-        * DumpRenderTree/efl/ImageDiff.cpp:
-        (printImage):
-
-2012-03-07  Kangil Han  <kangil.han@samsung.com>
-
-        [DRT] Remove PlainTextController implementations.
-        https://bugs.webkit.org/show_bug.cgi?id=79959
-
-        Reviewed by Hajime Morita.
-
-        PlainTextController usages in existing tests have been
-        replaced by internals API by bug 78570.
-        So this patch will remove PlainTextController implementations
-        to avoid further usage in new tests.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/chromium/PlainTextController.cpp: Removed.
-        * DumpRenderTree/chromium/PlainTextController.h: Removed.
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::bindJSObjectsToWindow):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell):
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webViewWindowObjectCleared):
-        * DumpRenderTree/gtk/PlainTextController.cpp: Removed.
-        * DumpRenderTree/gtk/PlainTextController.h: Removed.
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate didClearWindowObjectInStandardWorldForFrame:]):
-        * DumpRenderTree/mac/PlainTextController.h: Removed.
-        * DumpRenderTree/mac/PlainTextController.mm: Removed.
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::initJSObjects):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        (DumpRenderTree):
-        * DumpRenderTree/qt/PlainTextControllerQt.cpp: Removed.
-        * DumpRenderTree/qt/PlainTextControllerQt.h: Removed.
-        * GNUmakefile.am:
-
-2012-03-06  Grzegorz Czajkowski  <g.czajkowski@samsung.com>
-
-        [EFL][DRT] Implements LayoutTestController's setPopupBlockingEnabled.
-        https://bugs.webkit.org/show_bug.cgi?id=80137
-
-        Reviewed by Eric Seidel.
-
-        Adds implementation LayoutTestController's setPopupBlockingEnabled.
-        To pass popup-blocking-click-in-iframe.html EventSender should not
-        repeat click events in idler's function. EventSender allows to
-        asynchronously send click event through ecore_idler_add.
-        This event will be called repeatedly as long as it return true.
-        Click event should be called only once by returning ECORE_CALLBACK_CANCEL.
-
-        * DumpRenderTree/efl/EventSender.cpp:
-        (sendMouseEvent): Changed return value from bool to void because it always returns true.
-        (sendClick): Idler is deleted by returning ECORE_CALLBACK_CANCEL.
-        (mouseDownCallback): Remove unnecessary checking of return value.
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setPopupBlockingEnabled):
-
-2012-03-06  Dirk Pranke  <dpranke@chromium.org>
-
-        rebaseline_chromium_webkit_tests is obsolete and should be removed
-        https://bugs.webkit.org/show_bug.cgi?id=80347
-
-        Reviewed by Tony Chang.
-
-        * Scripts/rebaseline-chromium-webkit-tests: Removed.
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests.py: Removed.
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests_unittest.py: Removed.
-
-2012-03-06  Dirk Pranke  <dpranke@chromium.org>
-
-        test_start_cmd (webkitpy.layout_tests.servers.http_server_unittest.TestHttpServer) is broken
-        https://bugs.webkit.org/show_bug.cgi?id=80468
-
-        Unreviewed, build fix.
-
-        Fixing a bug revealed by r80443 when we fixed filesystem.copyfile().
-
-        * Scripts/webkitpy/layout_tests/servers/http_server.py:
-        (Lighttpd._prepare_config):
-
-2012-03-06  Dirk Pranke  <dpranke@chromium.org>
-
-        remove chromium_gpu ports
-        https://bugs.webkit.org/show_bug.cgi?id=80345
-
-        Reviewed by Ojan Vafai.
-
-        This change leaves in the 'graphics_type' distinction in the
-        test_expectations; removing that will require more updates and a
-        pass over test_expectations.txt, so I'm separating that out.
-
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort):
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py: Removed.
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py: Removed.
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        (PortFactory):
-        (PortFactory.get):
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-        (FactoryTest.test_qt):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (TestRebaseline.test_rebaseline_expectations):
-
-2012-03-06  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        undefined reference to JSC::IdentifierTable::~IdentifierTable() on EFL port
-        https://bugs.webkit.org/show_bug.cgi?id=80282
-
-        Reviewed by Antonio Gomes.
-
-        Remove transitive library dependencies; they are especially
-        dangerous when one ends up linking against WTF, JSC and then WTF
-        again, since some symbols will not be defined.
-
-        Passing --no-copy-dt-needed-entries and --as-needed to the linker
-        (which some recent Linux distros do by default) makes the issue
-        even more evident.
-
-        * DumpRenderTree/efl/CMakeLists.txt: Do not link directly to WTF,
-        as the other libraries have the needed symbols. Explicitly link
-        against fontconfig.
-
-2012-03-06  Dean Jackson  <dino@apple.com>
-
-        filter-build-webkit needs more filters
-        https://bugs.webkit.org/show_bug.cgi?id=80440
-
-        Reviewed by Joseph Pecoraro.
-
-        Added as many missing filters as I could find for Apple
-        builds. Plus a few minor style updates.
-
-        * Scripts/filter-build-webkit:
-        (printLine):
-
-2012-03-06  Ojan Vafai  <ojan@chromium.org>
-
-        Copying old baselines throws an error if the new directory doesn't exist
-        https://bugs.webkit.org/show_bug.cgi?id=80443
-
-        Reviewed by Adam Barth.
-
-        Existing tests cover the new code with the fix to filesystem_mock.
-
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        (MockFileSystem.copyfile):
-        Fix the mock to better match python's copyfile semantics.
-
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests.py:
-        (Rebaseliner._create_html_baseline_files):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineTest._copy_existing_baseline):
-
-2012-03-05  Ojan Vafai  <ojan@chromium.org>
-
-        Add a mechanism to rebaseline new ports
-        https://bugs.webkit.org/show_bug.cgi?id=80355
-
-        Reviewed by Adam Barth.
-
-        For a test that's only failing on a new port, we want
-        to first copy the existing result into the location for the
-        port it's replacing in order to not break that port.
-
-        For example, bringing up the chromium-lion port, if we just
-        stick the results in the chromium-mac directory, the snow leopard
-        will start failing. Instead, we first copy the existing result
-        to the chromium-mac-snowleopard directory.
-
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        (builder_path_for_port_name):
-        (fallback_port_name_for_new_port):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineTest):
-        (RebaselineTest._copy_existing_baseline):
-        (RebaselineTest._rebaseline_test):
-        (RebaselineTest.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (TestRebaseline.test_rebaseline_test):
-        (TestRebaseline):
-        (TestRebaseline.test_rebaseline_and_copy_test):
-        (test_rebaseline_and_copy_test_no_existing_result):
-        (test_rebaseline_and_copy_test_with_lion_result):
-        (test_rebaseline_and_copy_no_overwrite_test):
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        (GardeningHTTPRequestHandler.rebaseline):
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-        (GardeningServerTest.test_rebaseline):
-        (GardeningServerTest):
-        (GardeningServerTest.test_rebaseline_new_port):
-
-2012-03-06  Beth Dakin  <bdakin@apple.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=80351
-        InlineTextBox is using the wrong origin when calling 
-        addRelevantRepaintedObject
-        -and corresponding-
-        <rdar://problem/10970221>
-
-        Reviewed by Sam Weinig.
-
-        This test has actually been broken since revision 109273. This change makes 
-        the test pass again, and it makes it specifically exercise the fix for this 
-        bug.
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayout.cpp:
-        (TestWebKitAPI::TEST):
-
-        Adjust comments in the other tests to reflect the API changes from 109273.
-        * TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFails.cpp:
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFails_Bundle.cpp:
-        (TestWebKitAPI::NewFirstVisuallyNonEmptyLayoutFailsTest::didCreatePage):
-        * TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFrames_Bundle.cpp:
-        (TestWebKitAPI::NewFirstVisuallyNonEmptyLayoutFramesTest::didCreatePage):
-        * TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayout_Bundle.cpp:
-        (TestWebKitAPI::NewFirstVisuallyNonEmptyLayoutTest::didCreatePage):
-        * TestWebKitAPI/Tests/WebKit2/lots-of-text.html: Added.
-
-2012-03-06  Hans Wennborg  <hans@chromium.org>
-
-        Speech JavaScript API: add SpeechRecognitionError
-        https://bugs.webkit.org/show_bug.cgi?id=80410
-
-        Chromium: enable the runtime flag for scripted speech so we can run
-        the layout tests for it.
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-
-2012-03-06  Sami Kyostila  <skyostil@chromium.org>
-
-        Enable universal newlines in chromium android layout test runner
-        https://bugs.webkit.org/show_bug.cgi?id=80418
-
-        Reviewed by Adam Barth.
-
-        The Chromium Android layout test runner uses the 'adb' program to
-        communicate with the Android device. Adb uses CRLF ('\r\n') to delimit
-        output lines from the test runner, while the test expectation files are
-        written with LF ('\n') delimiters. This causes the results to have
-        spurious whitespace differences, making them more difficult to
-        interpret.
-
-        The fix is to enable universal newlines for the DumpRenderTree pipe,
-        causing the output to only contain LF newlines like on other platforms.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidDriver._start):
-
-2012-03-06  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Revert r109900, it was completly busted
-
-        HAVE_FOO does _not_ have a WTF_ prefix, go figure.
-
-        We still leave in the HAVE(FOO) in QtInitializeTestFonts.cpp, instead
-        of manual define checks.
-
-        Reviewed by Ossy.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * QtTestBrowser/QtTestBrowser.pro:
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-        * qmake/mkspecs/features/features.prf:
-
-2012-03-05  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Use config test to determine if the compiler supports -MD
-
-        We used to assume that unix systems building against Qt5 would have
-        a compiler that supported -MD. Although this was usually the case,
-        we failed to take into account broken tools for distributed builds
-        (e.g. teambuilder or icecream) which would end up producing .d files
-        in the root of the build dir instead of along-side the object file.
-
-        Now that we use a config-test to determine the support, we'll capture
-        those cases, unless distributed builds are enabled after the initial
-        build-webkit run.
-
-        Reviewed by Csaba Osztrogonác.
-
-        * Tools.pro:
-        * qmake/config.tests/gccdepends/empty.cpp: Added.
-        * qmake/config.tests/gccdepends/gccdepends.pro: Added.
-        * qmake/mkspecs/features/default_pre.prf:
-        * qmake/mkspecs/features/features.prf:
-        * qmake/mkspecs/features/unix/default_pre.prf:
-        * qmake/sync.profile:
-
-2012-03-06  Csaba Osztrogonác  <ossy@webkit.org>
-
-        REGRESSION(r109294): It broke the unittest of master.cfg
-        https://bugs.webkit.org/show_bug.cgi?id=80253
-
-        Reviewed by Tor Arne Vestbø.
-
-        * BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py: Use json instead of simplejson.
-        (BuildBotConfigLoader._create_mock_passwords_dict):
-        (BuildBotConfigLoader._mock_open):
-        (BuildBotConfigLoader._add_dependant_modules_to_sys_modules):
-        (BuildBotConfigLoader.load_config):
-
-2012-03-06  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
-
-        Qt API test buildstep throws exception after buildmaster update
-        https://bugs.webkit.org/show_bug.cgi?id=80249
-
-        This patch based on Peter Gal's work.
-
-        Reviewed by Csaba Osztrogonác.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (RunQtAPITests):
-        (BuildAndTestFactory.__init__): Enable API tests on the Qt platform again.
-
-2012-03-06  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Use correct define names for HAVE(FOO) style optional dependencies
-
-        Reviewed by Simon Hausmann.
-        Reviewed by Ossy.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/QtInitializeTestFonts.cpp:
-        (WebKit::initializeTestFonts):
-        * QtTestBrowser/QtTestBrowser.pro:
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-        * qmake/mkspecs/features/features.prf:
-
-2012-03-06  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Don't add recursive qmake_all target if there are no subdirs to recurse
-
-        Reviewed by Ossy.
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2012-03-06  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Make sure clean builds are followed by make qmake && make if needed
-
-        On non-GNUmake systems we have to run make qmake so that the generated
-        sources are generated before we run qmake on the target pro files. This
-        is achieved by using the 'incremental' target.
-
-        Reviewed by Ossy.
-
-        * Scripts/webkitdirs.pm:
-        (buildQMakeProjects):
-
-2012-03-06  Filip Pizlo  <fpizlo@apple.com>
-
-        DumpRenderTree should support preciseTime()
-        https://bugs.webkit.org/show_bug.cgi?id=80397
-
-        Reviewed by Gavin Barraclough.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (preciseTimeCallback):
-        (LayoutTestController::staticFunctions):
-
-2012-03-06  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r109887.
-        http://trac.webkit.org/changeset/109887
-        https://bugs.webkit.org/show_bug.cgi?id=80402
-
-        It broke the build (Requested by Ossy on #webkit).
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/QtInitializeTestFonts.cpp:
-        (WebKit::initializeTestFonts):
-        * QtTestBrowser/QtTestBrowser.pro:
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-        * qmake/mkspecs/features/features.prf:
-
-2012-03-06  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r109837.
-        http://trac.webkit.org/changeset/109837
-        https://bugs.webkit.org/show_bug.cgi?id=80399
-
-        breaks Mac Productions builds, too late to try and fix it
-        tonight (Requested by eseidel on #webkit).
-
-        * Scripts/build-webkit:
-
-2012-03-06  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Use correct define names for HAVE(FOO) style optional dependencies
-
-        Reviewed by Simon Hausmann.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/QtInitializeTestFonts.cpp:
-        (WebKit::initializeTestFonts):
-        * QtTestBrowser/QtTestBrowser.pro:
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-        * qmake/mkspecs/features/features.prf:
-
-2012-03-06  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
-
-        [Qt] Create EWS to build WebKit2
-        https://bugs.webkit.org/show_bug.cgi?id=80277
-
-        Reviewed by Csaba Osztrogonác.
-
-        * QueueStatusServer/model/queues.py:
-        (Queue):
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (QtWK2EWS):
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-        (EarlyWarningSytemTest.test_builder_ewses):
-
-2012-03-05  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r109733.
-        http://trac.webkit.org/changeset/109733
-        https://bugs.webkit.org/show_bug.cgi?id=80378
-
-        It broke Qt5 build system (Requested by Ossy on #webkit).
-
-        * Tools.pro:
-        * qmake/config.tests/gccdepends/empty.cpp: Removed.
-        * qmake/config.tests/gccdepends/gccdepends.pro: Removed.
-        * qmake/mkspecs/features/default_pre.prf:
-        * qmake/mkspecs/features/features.prf:
-        * qmake/mkspecs/features/unix/default_pre.prf:
-        * qmake/sync.profile:
-
-2012-03-05  Eric Seidel  <eric@webkit.org>
-
-        Update JavaScriptCore files to use fully-qualified WTF include path
-        https://bugs.webkit.org/show_bug.cgi?id=79960
-
-        Reviewed by Adam Barth.
-
-        Build WTF/WTF.xcodeproj by default on Mac.
-
-        * Scripts/build-webkit:
-
-2012-03-05  Dirk Pranke  <dpranke@chromium.org>
-
-        There should be a way to disable optimizer in webkit-patch rebaseline-expectations
-        https://bugs.webkit.org/show_bug.cgi?id=69590
-
-        Reviewed by Ryosuke Niwa.
-
-        Adds a --no-optimize flag to webkit-patch rebaseline-expectations
-        to skip the 'optimize-expectations' step.
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineExpectations.__init__):
-        (RebaselineExpectations.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-
-2012-03-05  Kent Tamura  <tkent@chromium.org>
-
-        [Chromium] Add new popup type: PagePopup
-        https://bugs.webkit.org/show_bug.cgi?id=80106
-
-        Reviewed by Darin Fisher.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createPopupMenu):
-
-2012-03-05  Jessie Berlin  <jberlin@apple.com>
-
-        Add myself as a reviewer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-        Also, add my IRC nick so it is easier to find and yell at me.
-
-2012-03-05  Robert Kroeger  <rjkroege@chromium.org>
-
-        Correctly compute the positions of GestureScroll* events on
-        Chromium.
-        https://bugs.webkit.org/show_bug.cgi?id=80075
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::reset):
-        (EventSender::gestureEvent):
-        * DumpRenderTree/chromium/EventSender.h:
-        (EventSender):
-
-2012-03-05  Dirk Pranke  <dpranke@chromium.org>
-
-        flakiness dashboard doesn't display baselines for virtual tests correctly
-        https://bugs.webkit.org/show_bug.cgi?id=80341
-
-        Reviewed by Ojan Vafai.
-
-        If the test is part of a virtual test suite, we need to look for
-        baselines in the underlying fallback path for the actual test
-        being run, as well as baselines for the virtual version.
-
-        This patch adds code to handle both branches and also pulls the
-        mapping of the test suites up into a constant.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-        (testLookupVirtualTestSuite):
-        (testBaseTest):
-
-2012-03-05  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r109760.
-        http://trac.webkit.org/changeset/109760
-        https://bugs.webkit.org/show_bug.cgi?id=80320
-
-        Caused many GTK+ tests to crash (Requested by mrobinson on
-        #webkit).
-
-        * gtk/jhbuild.modules:
-
-2012-03-05  Charlie Reis  <creis@chromium.org>
-
-        [chromium] Pass WebNavigationPolicy to WebViewClient::createView
-        https://bugs.webkit.org/show_bug.cgi?id=80057
-
-        Reviewed by Darin Fisher.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createView):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-03-05  Martin Robinson  <mrobinson@igalia.com>
-
-        [soup] Crash while loading http://www.jusco.cn
-        https://bugs.webkit.org/show_bug.cgi?id=68238
-
-        Reviewed by Philippe Normand.
-
-        * gtk/jhbuild.modules: Bumped the libsoup and glib dependencies
-        in the jhbuild file.
-
-2012-03-05  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r109748.
-        http://trac.webkit.org/changeset/109748
-        https://bugs.webkit.org/show_bug.cgi?id=80296
-
-        Made some tests crash, will fix and recommit (Requested by
-        noamr on #webkit).
-
-        * MiniBrowser/qt/main.cpp:
-        (main):
-
-2012-03-05  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] plugins/netscape-plugin-page-cache-works.html fails
-        https://bugs.webkit.org/show_bug.cgi?id=74409
-
-        Reviewed by Martin Robinson.
-
-        Add support for overriding the page-cache-for-plugins preference
-        through DumpRenderTreeSupport.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (booleanFromValue): A helper function to convert a string to boolean.
-        (LayoutTestController::overridePreference):
-
-2012-03-05  Rob Buis  <rbuis@rim.com>
-
-        [BlackBerry] Update Tools/DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=80287
-
-        Reviewed by Antonio Gomes.
-
-        Update so we are sure we can build our implementation of DRT.
-
-        * DumpRenderTree/DumpRenderTree.h: include DumpRenderTreeBlackBerry.h.
-        * DumpRenderTree/PixelDumpSupport.cpp: include PixelDumpSupportBlackBerry.h.
-        * DumpRenderTree/blackberry/AccessibilityControllerBlackBerry.cpp:
-        (AccessibilityController::addNotificationListener): add missing hook.
-        (AccessibilityController::removeNotificationListener): add missing hook.
-        * DumpRenderTree/blackberry/AccessibilityUIElementBlackBerry.cpp:
-        (AccessibilityUIElement::isSelectedOptionActive): add missing hook.
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
-        (LayoutTestController::setMockSpeechInputDumpRect): add missing hook.
-        (LayoutTestController::simulateDesktopNotificationClick): add missing hook.
-
-2012-03-05  No'am Rosenthal  <noam.rosenthal@nokia.com>
-
-        [Qt] [WK2] Support threaded renderer in WK2
-        https://bugs.webkit.org/show_bug.cgi?id=76661
-
-        Remove the QML_NO_THREADED_RENDERER environment variable from MiniBrowser.
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * MiniBrowser/qt/main.cpp:
-        (main):
-
-2012-03-05  Alexander Færøy  <alexander.faeroy@nokia.com>
-
-        Unreviewed. Add myself to committer list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-03-05  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Use config test to determine if the compiler supports -MD
-
-        We used to assume that unix systems building against Qt5 would have
-        a compiler that supported -MD. Although this was usually the case,
-        we failed to take into account broken tools for distributed builds
-        (e.g. teambuilder or icecream) which would end up producing .d files
-        in the root of the build dir instead of along-side the object file.
-
-        Now that we use a config-test to determine the support, we'll capture
-        those cases, unless distributed builds are enabled after the initial
-        build-webkit run.
-
-        Reviewed by Csaba Osztrogonác.
-
-        * Tools.pro:
-        * qmake/config.tests/gccdepends/empty.cpp: Added.
-        * qmake/config.tests/gccdepends/gccdepends.pro: Added.
-        * qmake/mkspecs/features/default_pre.prf:
-        * qmake/mkspecs/features/features.prf:
-        * qmake/mkspecs/features/unix/default_pre.prf:
-        * qmake/sync.profile:
-
-2012-03-05  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Qt API test buildstep throws exception after buildmaster update
-        https://bugs.webkit.org/show_bug.cgi?id=80249
-
-        Reviewed by Zoltan Herczeg.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Disable API tests on the Qt bot temporarily.
-        (BuildAndTestFactory.__init__):
-
-2012-03-04  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Unit tests are noisy when run under jhbuild
-        https://bugs.webkit.org/show_bug.cgi?id=80241
-
-        Reviewed by Philippe Normand.
-
-        Force the 'memory' backend in GSettings so that each unit
-        test doesn't produce a warning when it's forced to fall back
-        to the 'memory' backend.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner.run): Force the 'memory' backend.
-
-2012-03-04  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] "Console: undefined @0: ReferenceError: Can't find variable: WebInspector" during testwebinspector
-        https://bugs.webkit.org/show_bug.cgi?id=80235
-
-        Reviewed by Philippe Normand.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner.run): Use the WEBKIT_INSPECTOR_PATH environment variable so that
-        inspector resources path determination is shared by all tests.
-
-2012-03-04  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] REGRESSION: r108278 broke some tests that expect focus
-        https://bugs.webkit.org/show_bug.cgi?id=79084
-
-        Reviewed by Philippe Normand.
-
-        Grab focus when dumping test results and also when sending
-        events. During the course of testing, the WebView may lose
-        focus and this seems to snap it back when tests demand it.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (dump): Grab focus.
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (dispatchEvent): Ditto.
-
-2012-03-04  Charles Wei  <charles.wei@torchmobile.com.cn>
-
-        Unreviewed, Add myself to committer list.
-        https://bugs.webkit.org/show_bug.cgi?id=80232
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-03-04  Anders Carlsson  <andersca@apple.com>
-
-        Newer versions of clang fail to compile WebKit.
-
-        Fix build.
-
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (descriptionOfValue):
-        (AccessibilityUIElement::rowIndexRange):
-        (AccessibilityUIElement::columnIndexRange):
-        (AccessibilityUIElement::selectedTextRange):
-        * DumpRenderTree/mac/EditingDelegate.mm:
-        (-[DOMRange dump]):
-        * DumpRenderTree/mac/PolicyDelegate.mm:
-        (-[PolicyDelegate webView:unableToImplementPolicyWithError:frame:]):
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        (-[NSError _drt_descriptionSuitableForTestResult]):
-        * WebKitTestRunner/InjectedBundle/mac/AccessibilityUIElementMac.mm:
-        (WTR::descriptionOfValue):
-        (WTR::AccessibilityUIElement::rowIndexRange):
-        (WTR::AccessibilityUIElement::columnIndexRange):
-        (WTR::AccessibilityUIElement::selectedTextRange):
-
-2012-03-03  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Fix static_libs_as_shared build
-        https://bugs.webkit.org/show_bug.cgi?id=80214
-
-        Reviewed by Tor Arne Vestbø.
-
-        * WebKitTestRunner/qt/main.cpp:
-        (main): Set the correct environment variable for choosing the theme in the
-        web process.
-
-2012-03-03  Hans Wennborg  <hans@chromium.org>
-
-        Implement Speech JavaScript API
-        https://bugs.webkit.org/show_bug.cgi?id=80019
-
-        Reviewed by Adam Barth.
-
-        Add ENABLE_SCRIPTED_SPEECH.
-
-        * Scripts/build-webkit:
-        * qmake/mkspecs/features/features.prf:
-
-2012-03-02  Alexey Proskuryakov  <ap@apple.com>
-
-        Fix commit queue, remove duplicate entry.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-03-02  Stephen Chenney  <schenney@chromium.org>
-
-        Unreviewed, add myself as a committer
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-03-02  Ojan Vafai  <ojan@chromium.org>
-
-        Add the Chromium Lion canary bot to the flakiness dashboard.
-        * TestResultServer/static-dashboards/builders.js:
-
-2012-03-02  Dirk Pranke  <dpranke@chromium.org>
-
-        links for virtual tests are broken in the flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=80180
-
-        Reviewed by Ojan Vafai.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-        (linkHTMLToOpenWindow):
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-        (testLinkHTMLToOpenWindow): added.
-
-2012-03-02  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] security/block-test.html baselines differ from mac
-        https://bugs.webkit.org/show_bug.cgi?id=78343
-
-        Reviewed by Martin Robinson.
-
-        Improved the FrameLoader error heuristics to match mac behavior a
-        bit more.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (pathFromSoupURI): Handle ftp urls the same as http urls.
-        (descriptionSuitableForTestResult): Map WebKitPolicyError to WebKitErrorDomain.
-
-2012-03-02  Andras Becsi  <andras.becsi@nokia.com>
-
-        [Qt][WK2] Fix typo in patch committed in r109575
-
-        Unreviewed typo fix.
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::notify): Cache the position
-        in floating point coordinates.
-
-2012-03-02  Andras Becsi  <andras.becsi@nokia.com>
-
-        [Qt][WK2] Infinite loop on history navigation, when panning
-        https://bugs.webkit.org/show_bug.cgi?id=79119
-
-        Reviewed by Simon Hausmann.
-
-        Make the touch mocking more robust by creating touch events
-        directly and sending them synchronously to the browser window.
-        If the sent touch event was not accepted we propagate the
-        original mouse event to its target.
-        This way we make sure we only send either a touch or a mouse
-        event and do not end up in an infinite loop between our mocking
-        code and the Qt5 automatic mouse event synthesizing.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::updateVisualMockTouchPoints):
-        * MiniBrowser/qt/BrowserWindow.h:
-        (BrowserWindow):
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (touchRectForPosition):
-        (MiniBrowserApplication::notify):
-        (MiniBrowserApplication::sendTouchEvent):
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-        (MiniBrowserApplication):
-
-2012-03-02  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Use 'all' as default target when debug_and_release is in effect
-
-        When debug_and_release is enabled, in combination with build_all,
-        qmake will generate an aggregate makefile that calls make on both
-        the debug and the release makefiles, but with the 'all' target.
-
-        In this case we can't use 'first' as the default target, as the
-        extra targets would then not be run, so we append extra targets
-        to 'all' instead.
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2012-03-02  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Make sure activeBuildConfig() returns the right config
-
-        Using isActiveConfig fails, as that only checks if the given
-        argument is in CONFIG, not the order.
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/functions.prf:
-
-2012-03-02  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Fix tests run with WTR not using QStyle theme
-        https://bugs.webkit.org/show_bug.cgi?id=80147
-
-        Reviewed by Csaba Osztrogonác.
-
-        * WebKitTestRunner/qt/main.cpp:
-        (main): Set environment variable for web process to use QStyle theme.
-
-2012-03-02  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, remove debug print call.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (descriptionSuitableForTestResult):
-
-2012-03-02  Robert Kroeger  <rjkroege@chromium.org>
-
-        Updated EventSender to send complete gesture events.
-        https://bugs.webkit.org/show_bug.cgi?id=80075
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::gestureEvent): set additional parameters in sent events.
-
-2012-03-01  Kalev Lember  <kalevlember@gmail.com>
-
-        WebKitTestRunner: Explicitly include unistd.h for gcc 4.7
-        https://bugs.webkit.org/show_bug.cgi?id=80033
-
-        Reviewed by Gustavo Noronha Silva.
-
-        GCC 4.7 no longer includes unistd.h from most of the standard C++
-        header files, so we need to explicitly include it for getcwd().
-
-        * WebKitTestRunner/TestInvocation.cpp: Make sure unistd.h gets included
-        not only on Mac, but on all Unix platforms.
-
-2012-03-01  Dirk Pranke  <dpranke@chromium.org>
-
-        Actually look at the args in driver_input :(.
-
-        Unreviewed, build fix.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumDriver.run_test):
-
-2012-03-01  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix typo in flag used to run gpu virtual suites.
-
-        Unreviewed, build fix.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.virtual_test_suites):
-
-2012-03-01  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed, rolling out r109317.
-        http://trac.webkit.org/changeset/109317
-
-        Let's try watchlists again now that we're using a pure git
-        working copy
-
-        * Scripts/webkitpy/tool/bot/stylequeuetask.py:
-        (StyleQueueTask.run):
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2012-03-01  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: test_run_test_pause_before_testing is failing after r109482
-        https://bugs.webkit.org/show_bug.cgi?id=80084
-
-        Unreviewed, build fix.
-
-        Fixes the test string compare to ignore the time spent running
-        the tests.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (test_run_test_pause_before_testing):
-
-2012-03-01  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: virtual tests aren't being run
-        https://bugs.webkit.org/show_bug.cgi?id=80083
-
-        Reviewed by Eric Seidel.
-
-        If we tried to run all of the tests by default (and
-        didn't specify any paths), the virtual tests weren't
-        picked up.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port._virtual_tests):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_tests):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort.virtual_test_suites):
-
-2012-03-01  Ryosuke Niwa  <rniwa@webkit.org>
-
-        run-perf-tests should report the test runtime
-        https://bugs.webkit.org/show_bug.cgi?id=80078
-
-        Reviewed by Hajime Morita.
-
-        Record and output the aggreated test run time.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._run_single_test):
-
-2012-03-01  Michael Nordman  <michaeln@google.com>
-
-        [chromium] Use webkit_support to create session storage namespaces in DRT.
-        https://bugs.webkit.org/show_bug.cgi?id=79933
-
-        Reviewed by Tony Chang.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createSessionStorageNamespace):
-
-2012-03-01  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: test_isfile, test_isdir, and test_exists don't work for virtual tests
-        https://bugs.webkit.org/show_bug.cgi?id=80048
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.test_isfile):
-        (Port.test_isdir):
-        (Port):
-        (Port.test_exists):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_test_exists):
-        (PortTest):
-        (PortTest.test_test_isfile):
-        (PortTest.test_test_isdir):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort.virtual_test_suites):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_virtual):
-
-2012-03-01  Kalev Lember  <kalevlember@gmail.com>
-
-        [GTK] Avoid building any parts of WebKitTestRunner when WK2 is disabled
-        https://bugs.webkit.org/show_bug.cgi?id=80031
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Only build the libTestRunnerInjectedBundle.la convenience library when
-        ENABLE_WEBKIT2 is defined.
-
-        * WebKitTestRunner/GNUmakefile.am:
-
-2012-03-01  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, second attempt to fix GTK NRWT after r109242.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkDriver._start):
-
-2012-03-01  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, GTK NRWT build fix attempt after r109242.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkDriver._start):
-
-2012-03-01  Kentaro Hara  <haraken@chromium.org>
-
-        REGRESSION(r109036): run-bindings-tests fails because resolve-supplemental.pl was renamed
-        https://bugs.webkit.org/show_bug.cgi?id=80008
-
-        Reviewed by Adam Barth.
-
-        In r109036, I forgot to rename "resolve-supplemental.pl" in run-bindings-tests
-        to "preprocess-idls.pl". This patch renames it.
-
-        Test: Confirm that run-bindings-tests runs.
-
-        * Scripts/webkitpy/bindings/main.py:
-        (BindingsTests.generate_supplemental_dependency):
-
-2012-02-29  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt][WK2] QQuickWebView::event should lookup faster which events QQuickWebPage can handle
-        https://bugs.webkit.org/show_bug.cgi?id=78047
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Send events for the webview through the QQuickCanvas instead of directly to the item. Direct
-        sending to the item requires the QObject::event re-implementation to dispatch to the correct
-        event handling function. However QQuickItem::event doesn't do that. Instead QQuickCanvas calls
-        the event handlers directly, and with the removal of our own dispatching we need to go through
-        that code path.
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::sendEvent):
-        (WTR::PlatformWebView::postEvent):
-
-2012-02-29  Adam Barth  <abarth@webkit.org>
-
-        Disable watchlist.  It's been spamming CCs.
-
-        * Scripts/webkitpy/tool/bot/stylequeuetask.py:
-        (StyleQueueTask.run):
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2012-02-29  Dirk Pranke  <dpranke@chromium.org>
-
-        need to clone the gpu baselines and expectations into the new "virtual" dir
-        https://bugs.webkit.org/show_bug.cgi?id=79956
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.virtual_test_suites):
-
-2012-02-29  Mark Rowe  <mrowe@apple.com>
-
-        Switch to using json rather than simplejson now that the master is using Python 2.7.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (loadBuilderConfig):
-
-2012-02-29  David Levin  <levin@chromium.org>
-
-        [chromium] Add the ability to turn off autoresize.
-        https://bugs.webkit.org/show_bug.cgi?id=77452
-
-        Reviewed by Darin Fisher.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController): Expose a way to turn off auto-resize.
-        (LayoutTestController::enableAutoResizeMode): Ditto and adjust to new WebKit api.
-        (LayoutTestController::disableAutoResizeMode):  Ditto.
-        * DumpRenderTree/chromium/LayoutTestController.h: Ditto.
-
-2012-02-29  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: make --print trace work with virtual tests
-        https://bugs.webkit.org/show_bug.cgi?id=79952
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (Printer._print_test_trace):
-        (Printer._print_baseline):
-
-2012-02-28  Brian Weinstein  <bweinstein@apple.com>
-
-        WebKit2: didNewFirstVisuallyNonEmptyLayout should be sent to injected bundle
-        https://bugs.webkit.org/show_bug.cgi?id=79849
-
-        Reviewed by Beth Dakin.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage): Add an entry to the struct.
-
-2012-02-29  Lucas Forschler  <lforschler@apple.com>
-
-        Removed unused Apple buildslaves from the master configuration
-        https://bugs.webkit.org/show_bug.cgi?id=79925
-
-        Reviewed by Stephanie Lewis.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-02-29  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: implement simple 'virtual test suite' support
-        https://bugs.webkit.org/show_bug.cgi?id=79737
-
-        Reviewed by Adam Barth.
-
-        Add very basic support for 'virtual test suites' to NRWT:
-        a virtual suite is a directory that may contain new baselines,
-        contains a pointer to a "base" directory of tests, and an
-        optional list of command line arguments to pass to DRT;
-        it gives us a way to run all of the tests in a given directory
-        multiple times with multiple (potentially differing) sets of
-        results and baselines.
-
-        This patch implements the support needed for this feature, and
-        some basic tests, but no actual port will use the feature yet.
-
-        This is probably the simplest implementation possible - the
-        list of virtual suites will be hard-coded into the port's
-        implementation. One can imagine a more data-driven approach
-        where the suite instructions are stored in a manifest file
-        either in LayoutTests (all suites in one file), or per-port,
-        or per-directory. If this feature ends up being useful we
-        should probably add something like that so people don't have
-        to hunt around in the code to add suites.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.__init__):
-        (Port.expected_filename):
-        (Port.tests):
-        (Port):
-        (Port._real_tests):
-        (Port._driver_class):
-        (Port.virtual_test_suites):
-        (Port.virtual_suite):
-        (Port.virtual_suite.VirtualTestSuite):
-        (Port.virtual_suite.VirtualTestSuite.__init__):
-        (Port.virtual_suite.VirtualTestSuite.__repr__):
-        (Port.populated_virtual_test_suites):
-        (Port._virtual_tests):
-        (Port.lookup_virtual_test_base):
-        (Port.lookup_virtual_test_args):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_find_with_skipped_directories):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (DriverInput.__init__):
-        (DriverProxy.run_test):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort.virtual_test_suites):
-        (TestDriver.run_test):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_all):
-        (MainTest.test_virtual):
-
-2012-02-29  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: support more than two drivers in DriverProxy
-        https://bugs.webkit.org/show_bug.cgi?id=79736
-
-        Reviewed by Adam Barth.
-
-        Now that we can support per-test command lines for
-        Drivers, modify DriverProxy to keep a map of running
-        drivers for each needed command-line; this will allow
-        us to transparently maintain a pool of appropriately
-        configured DRTs without having to constantly start and stop
-        them.
-
-        Note that this potentially raises a garbage collection
-        problem - the number of running DRTs will grow with the
-        number of different sets of command line args. For now
-        this is no worse than the current code - if you're running
-        with pixel tests, you will only need one DRT per worker,
-        and if you aren't, you'll need two (one for text-only tests,
-        and one for reftests).
-
-        An alternative would be to only ever have one running driver,
-        and restart the driver as the command line changes, but this
-        might (?) slow down execution in the text-only case - we
-        should benchmark this because it would be simpler and possibly
-        allow us to eliminate DriverProxy altogether.
-
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (DriverProxy.__init__):
-        (DriverProxy):
-        (DriverProxy._make_driver):
-        (DriverProxy.run_test):
-        (DriverProxy.has_crashed):
-        (DriverProxy.stop):
-        (DriverProxy.cmd_line):
-        (DriverProxy._cmd_line_as_key):
-
-2012-02-29  Adrienne Walker  <enne@google.com>
-
-        Unreviewed, add myself as a reviewer
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-02-29  Greg Billock  <gbillock@google.com>
-
-        Add more tests for web intents
-        https://bugs.webkit.org/show_bug.cgi?id=79527
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::sendWebIntentResponse):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-        (WebViewHost::currentIntentRequest):
-
-2012-02-29  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: port/Driver needs to support per-test command line args
-        https://bugs.webkit.org/show_bug.cgi?id=79733
-
-        Reviewed by Adam Barth.
-
-        As part of removing the 'gpu' configurations and adding support
-        for 'virtual test suites', the Driver classes need to support
-        per-test command lines (since different tests will need to be
-        run with different command line options).
-
-        The per-test args are not yet used, so this change should have
-        no visible effects and need no additional testing.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.driver_cmd_line):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumDriver.cmd_line):
-        (ChromiumDriver._start):
-        (ChromiumDriver.start):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumDriverTest.test_two_drivers.MockDriver.cmd_line):
-        (ChromiumDriverTest):
-        (ChromiumDriverTest.test_two_drivers):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.cmd_line):
-        (DriverProxy.__init__):
-        (DriverProxy.start):
-        (DriverProxy.cmd_line):
-        * Scripts/webkitpy/layout_tests/port/driver_unittest.py:
-        (DriverTest.test_virtual_driver_methods):
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkDriver.cmd_line):
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort._path_to_driver):
-        (TestDriver.cmd_line):
-        (TestDriver.start):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver.cmd_line):
-        (WebKitDriver._start):
-        (WebKitDriver.run_test):
-        (WebKitDriver.start):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (WebKitDriverTest.test_no_timeout):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._run_tests_set):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (test_run_test_pause_before_testing):
-
-2012-02-29  Dirk Pranke  <dpranke@chromium.org>
-
-        perftestsrunner can call printer.write() after printer.cleanup()
-        https://bugs.webkit.org/show_bug.cgi?id=79872
-
-        Reviewed by Ryosuke Niwa.
-
-        This patch fixes a unittest that was incorrectly calling
-        PerfTestsRunner.run() twice (which led to a weird state in the
-        printer object).
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (MainTest.test_run_with_upload_json):
-
-2012-02-29  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt][WK2] WebKitTestRunner should use 480x360 sized view for W3C SVG tests
-        https://bugs.webkit.org/show_bug.cgi?id=76546
-
-        Reviewed by Simon Hausmann.
-
-        Revert the workaround introduced in r107868 and reintroduce
-        the qml binding so we can test the code path that we are more
-        interested in. The reason that it did not work before is that
-        we don't have an active platform window which we now workaround
-        by propagating the resize through QWindowSystemInterface.
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::WrapperWindow::handleStatusChanged):
-        (WTR::PlatformWebView::resizeTo):
-
-2012-02-29  Gabor Rapcsanyi  <rgabor@webkit.org>
-
-        [GTK] Small fix for cross compilation to not generate gtkdoc.
-
-        Rubber-stamped by Csaba Osztrogonác.
-
-        * Scripts/webkitdirs.pm:
-        (isCrossCompilation):
-
-2012-02-28  Lucas Forschler  <lforschler@apple.com>
-
-        Fix a typo in config.json
-        linx -> linux
-        
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-02-28  Mahesh Kulkarni  <mahesh.kulkarni@nokia.com>
-
-        [Qt] Allow read/write to the WebView.url property
-        https://bugs.webkit.org/show_bug.cgi?id=77554
-
-        Reviewed by Tor Arne Vestbø.
-
-        Fix MiniBrowser to use WebView.url property and remove WebView.load usage.
-
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-
-2012-02-28  Dan Winship  <danw@gnome.org>
-
-        [GTK] make tests explicitly request GSettingsBackendMemory
-        https://bugs.webkit.org/show_bug.cgi?id=79788
-
-        Reviewed by Martin Robinson.
-
-        Explicitly request the fallback memory-based GSettings backend; if
-        other backends are available then we don't want to use them,
-        because they would make tests depend on the user's preferences.
-        And if other backends aren't available, we don't need glib to
-        print a warning about that fact.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort.setup_environ_for_server):
-
-2012-02-28  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r109110.
-        http://trac.webkit.org/changeset/109110
-        https://bugs.webkit.org/show_bug.cgi?id=79806
-
-        webkitpy makes it too easy to add wkb.ug URLs to ChangeLogs
-        (Requested by aroben on #webkit).
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        (parse_bug_id):
-        (parse_bug_id_from_changelog):
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-        * Scripts/webkitpy/common/config/urls.py:
-
-2012-02-28  Adam Roben  <aroben@webkit.org>
-
-        Add my new email address
-
-        Fixes <http://wkb.ug/79797> Adam Roben's email address in webkitpy is soon to be incorrect
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-02-28  Adam Roben  <aroben@apple.com>
-
-        Teach webkitpy about wkb.ug URLs
-
-        Fixes <http://wkb.ug/79799> webkit-patch can't find bug numbers from ChangeLog entries that
-        use wkb.ug URLs
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        (parse_bug_id):
-        (parse_bug_id_from_changelog):
-        Fall back to the tiny URL format if neither the short nor long URL formats work.
-
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-        (ChangeLogTest.test_parse_bug_id_from_changelog): Added tests for the above changes.
-
-        * Scripts/webkitpy/common/config/urls.py: Added bug_url_tiny, which can be used to match
-        wkb.ug URLs.
-
-2012-02-28  János Badics  <dicska@gmail.com>
-
-        [Qt] build-webkit does not detect the number of CPUs
-        https://bugs.webkit.org/show_bug.cgi?id=76445
-
-        Based on Seo Sanghyeon's work (modification:
-        Automatically determine the number of CPUs for make
-        only if -j make argument haven't already been specified.)
-
-        Reviewed by Csaba Osztrogonác.
-
-        * Scripts/webkitdirs.pm:
-        (buildQMakeProjects):
-
-2012-02-28  Kent Tamura  <tkent@chromium.org>
-
-        Update a pattern for forms files of watchlist
-        https://bugs.webkit.org/show_bug.cgi?id=79767
-
-        Reviewed by Kentaro Hara.
-
-        * Scripts/webkitpy/common/config/watchlist:
-        Catches the following files with the "Forms" pattern.
-        - HTMLDatListElement.*
-        - HTMLKeygenElement.*
-        - HTMLLegendElement.*
-        - HTMLOutputElement.*
-        - FormAssociatedElement.*
-        - SliderThumbElement.*
-        - TextControlInnerElements.*
-        - RenderFileUploadControl.*
-
-2012-02-27  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r109041.
-        http://trac.webkit.org/changeset/109041
-        https://bugs.webkit.org/show_bug.cgi?id=79741
-
-        Broke Chromium Win build (Requested by bashi on #webkit).
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2012-02-27  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Remove media tests from ChromiumGpu configurations
-        https://bugs.webkit.org/show_bug.cgi?id=79720
-
-        Reviewed by Adam Barth.
-
-        We no longer need to run the media/ tests in both GPU and non-GPU configurations since we can exercise the GPU
-        composited playback path via tests in the compositing/ directory.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        (_default_tests_paths):
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-        (ChromiumGpuTest.test_default_tests_paths):
-        (ChromiumGpuTest.test_test_files):
-
-2012-02-27  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: log multiline stderr/crash output properly
-        https://bugs.webkit.org/show_bug.cgi?id=79722
-
-        Reviewed by Adam Barth.
-
-        This cleans up some nits in the log output to make things
-        slightly easier to read (every line gets timestamped, etc.).
-
-        Also tweaks the log message for pixel hash mismatches.
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner._handle_error):
-        (SingleTestRunner._compare_image):
-
-2012-02-27  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Touch the master.cfg to force a reconfig.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (BuildAndTestLeaksFactory):
-        (NewBuildAndTestFactory):
-
-2012-02-27  Jacky Jiang  <zhajiang@rim.com>
-
-        [BlackBerry] Upstream BlackBerry API web page related files
-        https://bugs.webkit.org/show_bug.cgi?id=74380
-
-        Reviewed by Antonio Gomes.
-
-        Adapt to the removing of WebPage::mainFrame(), use
-        DumpRenderTreeSupport::corePage() and its mainFrame() instead.
-
-        No new tests as this patch doesn't change behavior.
-
-        * DumpRenderTree/blackberry/DumpRenderTree.cpp:
-        (BlackBerry::WebKit::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        (BlackBerry::WebKit::DumpRenderTree::runTests):
-
-2012-02-27  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Add Windows and Linux Chromium perf bots
-        https://bugs.webkit.org/show_bug.cgi?id=79418
-
-        Reviewed by Tony Chang.
-
-        Add Chromium Win and Linux perf bots. Also replace Chromium Mac by
-        the dedicated perf bot slave (uses the same hardware).
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-02-27  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        Undefined variable 'current' when running chromium_android.py
-        https://bugs.webkit.org/show_bug.cgi?id=79696
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidDriver._read_prompt):
-
-2012-02-27  Greg Billock  <gbillock@google.com>
-
-        Add more tests for web intents
-        https://bugs.webkit.org/show_bug.cgi?id=79527
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::sendWebIntentResponse):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-        (WebViewHost::currentIntentRequest):
-
-2012-02-27  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        Chromium-Android layout test script: the adb shell prompt is not always '# '
-        https://bugs.webkit.org/show_bug.cgi?id=79506
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidDriver._start):
-        (ChromiumAndroidDriver._read_prompt):
-
-2012-02-27  Dan Bernstein  <mitz@apple.com>
-
-        Added a test for <rdar://problem/9557598> REGRESSION (WebKit2): Non-activating links sometimes don’t work
-        https://bugs.webkit.org/show_bug.cgi?id=79607
-
-        Reviewed by Adele Peterson.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj: Added new files.
-        * TestWebKitAPI/Tests/mac/AcceptsFirstMouse.mm: Added.
-        (TestWebKitAPI::AcceptsFirstMouse::url):
-        (TestWebKitAPI::AcceptsFirstMouse::didLoadURL):
-        (TestWebKitAPI::AcceptsFirstMouse::runTest):
-        (TestWebKitAPI::TEST_F):
-        * TestWebKitAPI/Tests/mac/acceptsFirstMouse.html: Added.
-
-2012-02-27  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed. Fix make distcheck.
-
-        * GNUmakefile.am: Fix typo.
-
-2012-02-27  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Use USE() macro instead of ENABLE() for using the Qt image decoder
-
-        Reviewed by Kenneth Rohde Christiansen..
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-02-27  Hao Zheng  <zhenghao@chromium.org>
-
-        Add a ChromiumGpuAndroid port.
-        https://bugs.webkit.org/show_bug.cgi?id=79628
-
-        Reviewed by Adam Barth.
-
-        Android does have a gpu port, so revert r107697.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        (ChromiumGpuAndroidPort):
-        (ChromiumGpuAndroidPort.__init__):
-        (ChromiumGpuAndroidPort.baseline_search_path):
-        (ChromiumGpuAndroidPort.default_child_processes):
-        (ChromiumGpuAndroidPort.tests):
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        (PortFactory):
-
-2012-02-25  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Change Build bot with BuildAndTest bot for EFL port.
-        https://bugs.webkit.org/show_bug.cgi?id=77518
-
-        Reviewed by Ryosuke Niwa.
-
-        EFL build bot starts to support layout test.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-        * BuildSlaveSupport/built-product-archive:
-        (archiveBuiltProduct):
-        (extractBuiltProduct):
-        * BuildSlaveSupport/test-result-archive:
-        (archiveTestResults):
-        * Scripts/webkitdirs.pm: Enable SHARED_CORE option when ENABLE_DRT is enable in EFL port.
-        (generateBuildSystemFromCMakeProject):
-
-2012-02-24  Darin Fisher  <darin@chromium.org>
-
-        Add watchlist for ChromiumPlatformApi matching Source/Platform/chromium/public/
-
-        Reviewed by James Robinson.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-02-24  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: changelog_unittest test_fuzzy_reviewer_match is slow
-        https://bugs.webkit.org/show_bug.cgi?id=79258
-
-        Reviewed by Ryosuke Niwa.
-
-        Split the fuzzy matching into separate functions so that they
-        can be sharded and run in parallel.
-
-        Also, fix a bug in the svn_blame_regexp that was causing us
-        to require ChangeLog lines to have at least one space after the
-        author, making the code require trailing whitespace in the
-        changelog in some places (this was making my life harder because
-        I have my text editor set to strip trailing whitespace in python
-        files, and that was causing test_parse_log_entries_from_changelog() to fail
-        when the whitespace on line 275 was removed).
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        (ChangeLog):
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-        (test_fuzzy_reviewer_match__none):
-        (test_fuzzy_reviewer_match_adam_barth):
-        (test_fuzzy_reviewer_match_darin_adler_et_al):
-        (test_fuzzy_reviewer_match_dimitri_glazkov):
-        (test_fuzzy_reviewer_match_george_staikos):
-        (test_fuzzy_reviewer_match_mark_rowe):
-
-2012-02-24  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: committers_unittest fuzzy matching is really slow
-        https://bugs.webkit.org/show_bug.cgi?id=79179
-
-        Reviewed by Ryosuke Niwa.
-
-        Break the fuzzy matching tests into individual routines for
-        each contributor so that the intent is a little clearer, so
-        that it's easier to test individual names (and identify
-        duplicate tests), and so that we can eventually run
-        them in parallel.
-
-        Also, mark most of them as 'integration' tests so that they
-        can be skipped if we want to go fast (we leave a few as
-        regular tests for functional coverage).
-
-        * Scripts/webkitpy/common/config/committers_unittest.py:
-        (CommittersTest):
-        (CommittersTest.test_contributors_by_fuzzy_match):
-        (CommittersTest.integration_test_contributors__none):
-        (CommittersTest.integration_test_contributors__none_2):
-        (CommittersTest.integration_test_contributors__none_3):
-        (CommittersTest.integration_test_contributors_ada_chan):
-        (CommittersTest.integration_test_contributors_adele_peterson):
-        (CommittersTest.integration_test_contributors_alexey_proskuryakov):
-        (CommittersTest.integration_test_contributors_alice_liu):
-        (CommittersTest.integration_test_contributors_alp_toker):
-        (CommittersTest.integration_test_contributors_anders_carlsson):
-        (CommittersTest.integration_test_contributors_antti_koivisto):
-        (CommittersTest.integration_test_contributors_beth_dakin):
-        (CommittersTest.integration_test_contributors_brady_eidson):
-        (CommittersTest.integration_test_contributors_cameron_zwarich):
-        (CommittersTest.integration_test_contributors_chris_blumenberg):
-        (CommittersTest.integration_test_contributors_dan_bernstein):
-        (CommittersTest.integration_test_contributors_dan_bernstein_2):
-        (CommittersTest.integration_test_contributors_darin_adler):
-        (CommittersTest.integration_test_contributors_david_harrison):
-        (CommittersTest.integration_test_contributors_david_harrison_2):
-        (CommittersTest.integration_test_contributors_david_hyatt):
-        (CommittersTest.integration_test_contributors_david_kilzer):
-        (CommittersTest.integration_test_contributors_don_melton):
-        (CommittersTest.integration_test_contributors_eric_seidel):
-        (CommittersTest.integration_test_contributors_geoffrey_garen):
-        (CommittersTest.integration_test_contributors_greg_bolsinga):
-        (CommittersTest.integration_test_contributors_holger_freyther):
-        (CommittersTest.integration_test_contributors_jon_sullivan):
-        (CommittersTest.integration_test_contributors_jon_honeycutt):
-        (CommittersTest.integration_test_contributors_joseph_pecoraro):
-        (CommittersTest.integration_test_contributors_ken_kocienda):
-        (CommittersTest.integration_test_contributors_kenneth_russell):
-        (CommittersTest.integration_test_contributors_kevin_decker):
-        (CommittersTest.integration_test_contributors_kevin_mccullough):
-        (CommittersTest.integration_test_contributors_lars_knoll):
-        (CommittersTest.integration_test_contributors_lars_weintraub):
-        (CommittersTest.integration_test_contributors_maciej_stachowiak):
-        (CommittersTest.integration_test_contributors_mark_rowe):
-        (CommittersTest.integration_test_contributors_nikolas_zimmermann):
-        (CommittersTest.integration_test_contributors_oliver_hunt):
-        (CommittersTest.integration_test_contributors_rniwa):
-        (CommittersTest.disabled_integration_test_contributors_simon_fraser):
-        (CommittersTest.integration_test_contributors_steve_falkenburg):
-        (CommittersTest.integration_test_contributors_sam_weinig):
-        (CommittersTest.integration_test_contributors_tim_omernick):
-        (CommittersTest.integration_test_contributors_timothy_hatcher):
-        (CommittersTest.integration_test_contributors_tor_arne_vestbo):
-        (CommittersTest.integration_test_contributors_vicki_murley):
-        (CommittersTest.integration_test_contributors_zack_rusin):
-
-2012-02-24  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: should autoinstall coverage
-        https://bugs.webkit.org/show_bug.cgi?id=79535
-
-        Reviewed by Eric Seidel.
-
-        We should automatically print the coverage report after the run, too.
-
-        * Scripts/webkitpy/test/main.py:
-        (Tester._run_tests):
-        * Scripts/webkitpy/thirdparty/__init__.py:
-        (AutoinstallImportHook.find_module):
-        (AutoinstallImportHook._install_coverage):
-
-2012-02-24  Pablo Flouret  <pablof@motorola.com>
-
-        Fix copypasta in build-webkit's --vibration option description
-        https://bugs.webkit.org/show_bug.cgi?id=79528
-
-        Reviewed by Andreas Kling.
-
-        * Scripts/build-webkit:
-
-2012-02-24  Antonio Gomes  <agomes@rim.com>
-
-        Adding myself to ScrollingCoordinator watchlist
-        https://bugs.webkit.org/show_bug.cgi?id=79525
-
-        Reviewed by Rob Buis.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-02-24  Darin Fisher  <darin@chromium.org>
-
-        Update watchlist for ChromiumPublicApi to include Platform/chromium/public/
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-02-24  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: config_unittest is sensitive to other tests that might've already run
-        https://bugs.webkit.org/show_bug.cgi?id=79382
-
-        Reviewed by Adam Barth.
-
-        If another test runs prior to config_unittest and pokes the
-        cached configuration, the first test in config_unittest might
-        fail; the tearDown() will then allow subsequent tests to pass.
-        Clearing the configuration prior to each test makes things
-        slightly slower but safer.
-
-        * Scripts/webkitpy/layout_tests/port/config_unittest.py:
-        (ConfigTest.setUp):
-
-2012-02-24  David Kilzer  <ddkilzer@apple.com>
-
-        Use xcrun to find compiler paths for Generate Derived Sources build phase script
-        <http://webkit.org/b/79512>
-
-        Reviewed by Dan Bernstein.
-
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-        (Generate Derived Sources): Use xcrun to find the path to the
-        compiler since that works on both iOS and OS X.
-
-2012-02-24  James Robinson  <jamesr@chromium.org>
-
-        Create a watchlist for ScrollingCoordinator changes
-        https://bugs.webkit.org/show_bug.cgi?id=79511
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-02-24  Grzegorz Czajkowski  <g.czajkowski@samsung.com>
-
-        [EFL][DRT] Implement setValueForUser and setAutofilled.
-        https://bugs.webkit.org/show_bug.cgi?id=79237
-
-        Reviewed by Andreas Kling.
-
-        Adds missing implementation setValueForUser and setAutofilled to EFL's LayoutTestController.
-        Those implementations are related with input fields and allow to pass following tests:
-        fast/forms/onchange-setvalueforuser.html
-        fast/forms/input-autofilled.html
-        fast/forms/reset-autofilled.html
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setValueForUser):
-        (LayoutTestController::setAutofilled):
-
-2012-02-24  Zoltan Horvath  <zoltan@webkit.org>
-
-        [Qt] Allow to use WebCore imagedecoders
-        https://bugs.webkit.org/show_bug.cgi?id=32410
-
-        Add ENABLE_QT_IMAGE_DECODER macro, it's enabled by default.
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-02-24  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt] Add Qt5 way to force 96 DPI for tests
-        https://bugs.webkit.org/show_bug.cgi?id=79364
-
-        Reviewed by Simon Hausmann.
-
-        * DumpRenderTree/qt/main.cpp:
-        (main):
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-        (WTR::activateFonts):
-
-2012-02-24  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] MiniBrowser should reload the view then the reload button is clicked
-        https://bugs.webkit.org/show_bug.cgi?id=79472
-
-        Reviewed by Philippe Normand.
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (reloadCallback): Call webkit_web_view_reload().
-        (browser_window_init): Connect reload item clicked even to
-        reloadCallback instead of activateUriEntryCallback.
-
-2012-02-24  Kentaro Hara  <haraken@chromium.org>
-
-        Add performance tests for DOM attribute getters and setters
-        https://bugs.webkit.org/show_bug.cgi?id=79208
-
-        Reviewed by Ryosuke Niwa.
-
-        We want to allow perf tests to output info messages
-        that do not affect the test results. To accomplish this,
-        this patch modifies perftestsrunner.py so that it ignores
-        a line that starts from "Info:".
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner):
-
-2012-02-24  Andrew Lo  <anlo@rim.com>
-
-        [BlackBerry] Enable requestAnimationFrame
-        https://bugs.webkit.org/show_bug.cgi?id=79408
-
-        Enable requestAnimationFrame for BlackBerry.
-
-        Reviewed by Rob Buis.
-
-        * Scripts/build-webkit:
-
-2012-02-24  Adam Barth  <abarth@webkit.org>
-
-        style-queue tries to apply the patch twice
-        https://bugs.webkit.org/show_bug.cgi?id=79459
-
-        Reviewed by Eric Seidel.
-
-        Previously, we applied the patch using both apply-patch and
-        check-style.  This patch introduces a check-style-local to mirror the
-        apply-watchlist-local, which operates on the current working diff.
-
-        This patch also cleans up some other bugs I found by running the queue
-        locally for a while.  The queue still prints out a slightly
-        less-than-ideal message on the bugs when it find an error, but it's ok
-        for now.  We'll need to iterate a bit.
-
-        * Scripts/webkitpy/tool/bot/stylequeuetask.py:
-        (StyleQueueTask.validate):
-        (StyleQueueTask._check_style):
-        * Scripts/webkitpy/tool/commands/download.py:
-        (CheckStyleLocal):
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-        (EarlyWarningSytemTest._default_expected_stderr):
-        (EarlyWarningSytemTest._test_testing_ews):
-        * Scripts/webkitpy/tool/commands/queues.py:
-        (AbstractReviewQueue.handle_script_error):
-        (StyleQueue.review_patch):
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/commands/queuestest.py:
-        (QueuesTest.assert_queue_outputs):
-
-2012-02-23  Adam Barth  <abarth@webkit.org>
-
-        should_proceed_with_work_item is unused and can be removed
-        https://bugs.webkit.org/show_bug.cgi?id=79416
-
-        Reviewed by Eric Seidel.
-
-        We used to use this function to check whether the tree is red.  Now, we
-        don't use external measures of whether to proceed with work items.
-        Instead, we analyze them with the idea in mind that the tree might be
-        red.
-
-        * Scripts/webkitpy/tool/bot/queueengine.py:
-        (QueueEngineDelegate.next_work_item):
-        (QueueEngine.run):
-        * Scripts/webkitpy/tool/bot/queueengine_unittest.py:
-        (LoggingDelegate):
-        (LoggingDelegate.next_work_item):
-        (RaisingDelegate.process_work_item):
-        (QueueEngineTest.test_terminating_error):
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (AbstractEarlyWarningSystem.__init__):
-        * Scripts/webkitpy/tool/commands/queues.py:
-        (AbstractQueue.next_work_item):
-        (FeederQueue.next_work_item):
-        (CommitQueue.next_work_item):
-        (AbstractReviewQueue.next_work_item):
-        (StyleQueue.__init__):
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        (FeederQueueTest.test_feeder_queue):
-        (CommitQueueTest.test_commit_queue):
-        (test_commit_queue_failure):
-        (test_commit_queue_failure_with_failing_tests):
-        (test_rollout):
-        (test_rollout_lands):
-        (StyleQueueTest.test_style_queue_with_style_exception):
-        (test_style_queue_with_watch_list_exception):
-        * Scripts/webkitpy/tool/commands/queuestest.py:
-        (QueuesTest.assert_queue_outputs):
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-        (SheriffBot.next_work_item):
-
-2012-02-23  Adrienne Walker  <enne@google.com>
-
-        Unreviewed, add Stephen Chenney to committers.py as a contributor.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-02-23  Adam Barth  <abarth@webkit.org>
-
-        style-queue logs bogus messages to the QueueStatusServer
-        https://bugs.webkit.org/show_bug.cgi?id=79424
-
-        Reviewed by Eric Seidel.
-
-        Copy/paste error.
-
-        * Scripts/webkitpy/tool/bot/stylequeuetask.py:
-        (StyleQueueTask._check_style):
-        (StyleQueueTask._apply_watch_list):
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2012-02-23  Eric Seidel  <eric@webkit.org>
-
-        Use self._filesystem in more places in the SCM classes
-        https://bugs.webkit.org/show_bug.cgi?id=79415
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/checkout/scm/detection_unittest.py:
-        (SCMDetectorTest.test_detect_scm_system):
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        (Git.find_checkout_root):
-        (Git.to_object_name):
-        * Scripts/webkitpy/common/checkout/scm/scm.py:
-        (SCM.__init__):
-        (SCM.in_working_directory):
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-        (SVN.find_uuid):
-        (SVN.find_checkout_root):
-
-2012-02-23  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r108685.
-        http://trac.webkit.org/changeset/108685
-        https://bugs.webkit.org/show_bug.cgi?id=79414
-
-        Broke Chromium builds (Requested by enne on #webkit).
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-02-23  Adam Barth  <abarth@webkit.org>
-
-        style-queue shouldn't spam bugs if it fails to update its working copy
-        https://bugs.webkit.org/show_bug.cgi?id=79412
-
-        Reviewed by Eric Seidel.
-
-        This patch moves style-queue over to the new PatchAnalysisTask
-        infrastructure, which is smarter about retrying patches when update
-        fails.
-
-        * Scripts/webkitpy/common/system/executive_mock.py:
-        (MockExecutive.run_and_throw_if_fail):
-        * Scripts/webkitpy/tool/bot/earlywarningsystemtask.py:
-        * Scripts/webkitpy/tool/bot/patchanalysistask.py:
-        (UnableToApplyPatch):
-        (UnableToApplyPatch.__init__):
-        (PatchAnalysisTask.__init__):
-        * Scripts/webkitpy/tool/bot/stylequeuetask.py: Added.
-        (StyleQueueTaskDelegate):
-        (StyleQueueTaskDelegate.parent_command):
-        (StyleQueueTask):
-        (StyleQueueTask.validate):
-        (StyleQueueTask._check_style):
-        (StyleQueueTask._apply_watch_list):
-        (StyleQueueTask.run):
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        (StyleQueue):
-        (StyleQueue.should_proceed_with_work_item):
-        (StyleQueue.review_patch):
-        (StyleQueue.run_command):
-        (StyleQueue.command_passed):
-        (StyleQueue.command_failed):
-        (StyleQueue.expected_failures):
-        (StyleQueue.refetch_patch):
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        (StyleQueueTest.test_style_queue_with_style_exception):
-        (test_style_queue_with_watch_list_exception):
-
-2012-02-23  Zoltan Horvath  <zoltan@webkit.org>
-
-        [Qt] Allow to use WebCore imagedecoders
-        https://bugs.webkit.org/show_bug.cgi?id=32410
-
-        Add ENABLE_QT_IMAGE_DECODER macro, it's enabled by default.
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-02-23  Eric Seidel  <eric@webkit.org>
-
-        Remove old broken find_checkout_root tests now that find_checkout_root is gone
-        https://bugs.webkit.org/show_bug.cgi?id=79405
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/checkout/scm/detection_unittest.py: Added.
-        (SCMDetectorTest):
-        (SCMDetectorTest.test_find_checkout_root):
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-        (SVNTestRepository.tear_down):
-
-2012-02-23  Michael Brüning  <michael.bruning@nokia.com>
-
-        [Qt][WK2] Implement proxy authentication dialog.
-        https://bugs.webkit.org/show_bug.cgi?id=79350
-
-        Reviewed by Simon Hausmann.
-
-        * MiniBrowser/qt/MiniBrowser.qrc:
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-        * MiniBrowser/qt/qml/ProxyAuthenticationDialog.qml: Added.
-
-2012-02-23  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix, add recently added source dirs.
-
-        * waf/build/settings.py:
-
-2012-02-23  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Add support for touch cancellation
-        https://bugs.webkit.org/show_bug.cgi?id=79348
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Added straight-forward touch cancellation event sending to Qt WK1 DRT
-        and WK2 WTR.
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::touchCancel):
-        (EventSender::cancelTouchPoint):
-        * DumpRenderTree/qt/EventSenderQt.h:
-        (EventSender):
-        * WebKitTestRunner/EventSenderProxy.h:
-        (EventSenderProxy):
-        * WebKitTestRunner/InjectedBundle/Bindings/EventSendingController.idl:
-        * WebKitTestRunner/InjectedBundle/EventSendingController.cpp:
-        (WTR::EventSendingController::touchCancel):
-        (WTR):
-        (WTR::EventSendingController::cancelTouchPoint):
-        * WebKitTestRunner/InjectedBundle/EventSendingController.h:
-        (EventSendingController):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::didReceiveSynchronousMessageFromInjectedBundle):
-        * WebKitTestRunner/qt/EventSenderProxyQt.cpp:
-        (WTR::EventSenderProxy::touchCancel):
-        (WTR):
-        (WTR::EventSenderProxy::cancelTouchPoint):
-
-2012-02-23  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r108626.
-        http://trac.webkit.org/changeset/108626
-        https://bugs.webkit.org/show_bug.cgi?id=79370
-
-        broke qt-wk2 bot, somehow the workaround does not work on the
-        bot (Requested by Ossy on #webkit).
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::WrapperWindow::handleStatusChanged):
-        (WTR::PlatformWebView::resizeTo):
-
-2012-02-23  ChangSeok Oh  <shivamidow@gmail.com>
-
-        [GTK] DRT doesn't support scheduleAsynchronousKeyDown.
-        https://bugs.webkit.org/show_bug.cgi?id=78481
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Extracted shareable code from keyDownCallback and then added createKeyPressEvent
-        to create gdk press key event.
-        Added sendKeyDown and sendAsynchronousKeyDown to evaluate keyDown event directly
-        and asynchronously. Eventually, sendAsynchronousKeyDown calls sendKeyDown.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (scheduleAsynchronousClickCallback):
-        (createKeyPressEvent):
-        (sendKeyDown):
-        (keyDownCallback):
-        (sendAsynchronousKeyDown):
-        (scheduleAsynchronousKeyDownCallback):
-
-2012-02-23  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt][WK2] WebKitTestRunner should use 480x360 sized view for W3C SVG tests
-        https://bugs.webkit.org/show_bug.cgi?id=76546
-
-        Reviewed by Simon Hausmann.
-
-        Co-authored with Simon Hausmann.
-
-        Revert the workaround introduced in r107868 and reintroduce
-        the qml binding so we can test the code path that we are more
-        interested in. The reason that it did not work before is that
-        we don't have an active platform window which we now workaround
-        by propagating the resize through QWindowSystemInterface.
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::WrapperWindow::handleStatusChanged):
-        (WTR::PlatformWebView::resizeTo):
-
-2012-02-23  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r108577.
-        http://trac.webkit.org/changeset/108577
-        https://bugs.webkit.org/show_bug.cgi?id=79359
-
-        It doesn't work as expected (Requested by Ossy on #webkit).
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::postEvent):
-        * DumpRenderTree/qt/EventSenderQt.h:
-        (EventSender):
-
-2012-02-23  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] FullScreen signals
-        https://bugs.webkit.org/show_bug.cgi?id=76181
-
-        Reviewed by Martin Robinson.
-
-        Use the two new entering/leaving fullscreen signals to hide/show
-        the tool bar, the status bar and ask the user's permission before
-        entering fullscreen.
-
-        * GtkLauncher/main.c:
-        (webViewFullscreenMessageWindowClose):
-        (webViewWindowStateEvent):
-        (hide_widget):
-        (show_widget):
-        (webViewEnteringFullScreen):
-        (webViewLeavingFullScreen):
-        (createBrowser):
-        (createWindow):
-
-2012-02-22  Dongwoo Im  <dw.im@samsung.com>
-
-        [EFL] Fix to launch the EWebLauncher using the script, run-launcher.
-        https://bugs.webkit.org/show_bug.cgi?id=79076
-
-        Reviewed by Andreas Kling.
-
-        * Scripts/webkitdirs.pm: Fix the path of libewebkit.so.
-        (builtDylibPathForName):
-
-2012-02-22  Allan Sandfeld Jensen  <allan.jensen@nokia.com>
-
-        [Qt] Add eventSender.gestureTap
-        https://bugs.webkit.org/show_bug.cgi?id=66173
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::gestureTap):
-        * DumpRenderTree/qt/EventSenderQt.h:
-
-2012-02-22  Brady Eidson  <beidson@apple.com>
-
-        <rdar://problem/10406044> and https://bugs.webkit.org/show_bug.cgi?id=79279
-        Synchronous ShouldGoToBackForwardListItem causes lots of WebProcess hangs
-
-        Reviewed by Anders Carlsson.
-
-        Update our tools to the new form of the PageLoadClient.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]): 
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-
-2012-02-22  Daniel Bates  <dbates@webkit.org>
-
-        new-run-webkit-tests shouldn't restore Safari state on Lion when showing results
-        https://bugs.webkit.org/show_bug.cgi?id=79277
-
-        Reviewed by Adam Barth.
-
-        Pass command line argument no-saved-state to run-safari to disable Safari
-        state restoration for the session on OS 10.7.
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.show_results_html_file):
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        (test_show_results_html_file):
-
-2012-02-22  Kalev Lember  <kalevlember@gmail.com>
-
-        Explicitly include unistd.h in TestNetscapePlugIn for GCC 4.7
-        https://bugs.webkit.org/show_bug.cgi?id=77759
-
-        Reviewed by Tony Chang.
-
-        Fixes build with gcc 4.7.
-
-        r100432 added the include only for ANDROID; this changes the ifdef to
-        also cover other unix platforms. On Fedora 17 the gcc 4.7 compiler no
-        longer implicitly includes unistd.h from standard headers and other
-        unix platforms are likely to get gcc 4.7 as well in the future.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-
-2012-02-22  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, rolling out r108522.
-        http://trac.webkit.org/changeset/108522
-        https://bugs.webkit.org/show_bug.cgi?id=76181
-
-        Broke 4 fullscreen tests on GTK.
-
-        * GtkLauncher/main.c:
-        (createBrowser):
-        (createWindow):
-
-2012-02-20  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] FullScreen signals
-        https://bugs.webkit.org/show_bug.cgi?id=76181
-
-        Reviewed by Martin Robinson.
-
-        Use the two new entering/leaving fullscreen signals to hide/show
-        the tool bar, the status bar and ask the user's permission before
-        entering fullscreen.
-
-        * GtkLauncher/main.c:
-        (webViewFullscreenMessageWindowClose):
-        (webViewWindowStateEvent):
-        (hide_widget):
-        (show_widget):
-        (webViewEnteringFullScreen):
-        (webViewLeavingFullScreen):
-        (createBrowser):
-        (createWindow):
-
-2012-02-22  Rob Flack  <flackr@chromium.org>
-
-        Update Linux ChromiumOS builders in flakiness dashboard.
-        https://bugs.webkit.org/show_bug.cgi?id=79238
-
-        Reviewed by Ojan Vafai.
-
-        * TestResultServer/static-dashboards/builders.js:
-
-2012-02-22  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: test_function_length_check_definition_huge_lines is slow
-        https://bugs.webkit.org/show_bug.cgi?id=79185
-
-        Reviewed by Adam Barth.
-
-        This test takes ~3 seconds to run, apparently because we're
-        running a test on a 10,000 line function :). Dropping the
-        function length to 640 still exercises the code path and
-        provides a 10x speedup.
-
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (CppStyleTest):
-        (CheckForFunctionLengthsTest.test_function_length_check_definition_huge_lines):
-
-2012-02-22  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: speed up FileLockTest.test_lock_lifecycle
-        https://bugs.webkit.org/show_bug.cgi?id=79189
-
-        Reviewed by Adam Barth.
-
-        The unit test had a second lock trying to acquire a
-        lock already held, and a hard-coded timeout of one second.
-        I have changed the timeouts to a tenth of a second (which
-        is probably still fine) and changed the hard-spin on
-        the lock to a slow-spin every hundredth of a second.
-
-        * Scripts/webkitpy/common/system/file_lock.py:
-        (FileLock.acquire_lock):
-        * Scripts/webkitpy/common/system/file_lock_integrationtest.py:
-        (FileLockTest.setUp):
-        (FileLockTest.test_stuck_lock):
-
-2012-02-22  Gabor Rapcsanyi  <rgabor@webkit.org>
-
-        build-webkit should use environment variable at number of CPU
-        detection on all platform
-        https://bugs.webkit.org/show_bug.cgi?id=79227
-
-        Reviewed by Martin Robinson.
-
-        * Scripts/webkitdirs.pm:
-        (determineNumberOfCPUs):
-
-2012-02-22  Mihnea Ovidenie  <mihnea@adobe.com>
-
-        [Qt] REGRESSION(r108108): It made 3 fast/repaint tests fail
-        https://bugs.webkit.org/show_bug.cgi?id=78960
-
-        Reviewed by Csaba Osztrogonác.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::overridePreference):
-
-2012-02-22  Hao Zheng  <zhenghao@chromium.org>
-
-        [chromium] Build WebKit with MEDIA_STREAM disabled.
-        https://bugs.webkit.org/show_bug.cgi?id=79214
-
-        Reviewed by Kent Tamura.
-
-        * DumpRenderTree/chromium/WebUserMediaClientMock.cpp:
-        * DumpRenderTree/chromium/WebUserMediaClientMock.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createMediaPlayer):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-02-22  Zeno Albisser  <zeno@webkit.org>
-
-        [Qt][WK2][Mac] WebKitTestRunner does not build with clang.
-        https://bugs.webkit.org/show_bug.cgi?id=79124
-
-        WebKitTestRunnerPrefix.h should also be included
-        when building with clang.
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * WebKitTestRunner/Target.pri:
-
-2012-02-20  Roland Steiner  <rolandsteiner@chromium.org>
-
-        <style scoped>: Add runtime-flag
-        https://bugs.webkit.org/show_bug.cgi?id=79074
-
-        Enable the runtime-flag for DRT. 
-
-        Reviewed by Dimitri Glazkov.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-
-2012-02-22  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed, rolling out r107351.
-        http://trac.webkit.org/changeset/107351
-        https://bugs.webkit.org/show_bug.cgi?id=53600
-
-        Several issues introduced in WebKitGTK+ API
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (createWebView):
-        * GtkLauncher/main.c:
-        (createWebViewCb):
-        (createBrowser):
-        (createWindow):
-        (main):
-
-2012-02-21  Filip Pizlo  <fpizlo@apple.com>
-
-        JSC should be a triple-tier VM
-        https://bugs.webkit.org/show_bug.cgi?id=75812
-        <rdar://problem/10079694>
-
-        Reviewed by Gavin Barraclough.
-
-        Changed EFL's build system to include a new directory in JavaScriptCore.
-
-        * DumpRenderTree/efl/CMakeLists.txt:
-
-2012-02-21  Daniel Cheng  <dcheng@chromium.org>
-
-        [chromium] Fix image drag out on Chromium
-        https://bugs.webkit.org/show_bug.cgi?id=79158
-
-        Reviewed by Tony Chang.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::dumpFilenameBeingDragged):
-        (EventSender::beginDragWithFiles):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (addDRTFakeFileToDataObject):
-
-2012-02-21  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: speed up hot filesystem_mock functions
-        https://bugs.webkit.org/show_bug.cgi?id=79159
-
-        Reviewed by Adam Barth.
-
-        Profiling run_webkit_tests_integrationtest.py revealed that
-        isdir(), normpath(), and join() are called a lot and were very
-        slow.This patch speeds them up substantially, shaving 20 seconds
-        off of the execution time.
-
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        (MockFileSystem.isdir):
-        (MockFileSystem._slow_but_correct_join):
-        (MockFileSystem.join):
-        (MockFileSystem.listdir):
-        (MockFileSystem._slow_but_correct_normpath):
-        (MockFileSystem.normpath):
-        (MockFileSystem.write_binary_file):
-        * Scripts/webkitpy/common/system/filesystem_mock_unittest.py:
-        (MockFileSystemTest.quick_check):
-        (MockFileSystemTest):
-        (MockFileSystemTest.test_join):
-        (MockFileSystemTest.test_normpath):
-        * Scripts/webkitpy/tool/servers/rebaselineserver_unittest.py:
-        (get_test_config): Call write_binary_file() instead of updating
-          filesystem.files directly, so that we create directories as
-          needed.
-
-2012-02-21  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: make the delay between starting workers configurable per-port
-        https://bugs.webkit.org/show_bug.cgi?id=79148
-
-        Reviewed by Eric Seidel.
-
-        Because of bug 79147, we have to sleep a bit in between starting
-        DRTs; however, doing so across the board slows down the Test
-        port. Making this configurable shaves 10 seconds off of
-        run_webkit_tests_integrationtest.py
-        
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._run_tests):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.worker_startup_delay_secs):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort.worker_startup_delay_secs):
-
-2012-02-21  Jon Lee  <jonlee@apple.com>
-
-        Bring notifications support to WK1 mac
-        https://bugs.webkit.org/show_bug.cgi?id=78783
-        <rdar://problem/10610578>
-
-        Reviewed by Anders Carlsson.
-
-        * DumpRenderTree/mac/UIDelegate.mm: Refactor WebGeolocationPolicyListener to WebAllowDenyPolicyListener.
-        (-[UIDelegate webView:decidePolicyForGeolocationRequestFromOrigin:frame:listener:]):
-        (-[UIDelegate timerFired]):
-
-2012-02-21  Kentaro Hara  <haraken@chromium.org>
-
-        Enable the IDL attribute checker in run-bindings-tests
-        https://bugs.webkit.org/show_bug.cgi?id=79091
-
-        Reviewed by Adam Barth.
-
-        We have enabled the IDL attribute checker in Chromium in r108322.
-        This patch enables the IDL attribute checker in run-bindings-tests.
-
-        No tests. I manually checked that [Custommm], [CallWith=],
-        [CallWith=ScriptExecutionContext|Foo] in TestObj.idl cause
-        run-bindings-tests failures.
-
-        * Scripts/webkitpy/bindings/main.py:
-        (BindingsTests.generate_supplemental_dependency):
-
-2012-02-21  Rafael Weinstein  <rafaelw@chromium.org>
-
-        Add rafaelw as a committer.
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-02-21  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: update names after deleting message_broker
-        https://bugs.webkit.org/show_bug.cgi?id=79000
-
-        Reviewed by Eric Seidel.
-
-        Part 3 of 3 in deleting message_broker.py; this change just
-        adjusts the names for the newly merged symbols so that they are
-        private as appropriate.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        (get):
-        (_Broker):
-        (_BrokerConnection):
-        (_BrokerConnection.__init__):
-        (AbstractWorker.__init__):
-        (_ManagerConnection):
-        (_ManagerConnection.__init__):
-        (_WorkerConnection):
-        (_WorkerConnection.__init__):
-
-2012-02-21  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: merge message_broker.py into manager_worker_broker.py
-        https://bugs.webkit.org/show_bug.cgi?id=78999
-
-        Reviewed by Tony Chang.
-
-        This is pretty much a straight cut-and-paste of one file into
-        another (broken up so that docstrings and imports are in the
-        right place).
-
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        (BrokerClient):
-        (BrokerClient.is_done):
-        (BrokerClient.name):
-        (Broker):
-        (Broker.__init__):
-        (Broker.add_topic):
-        (Broker._get_queue_for_topic):
-        (Broker.post_message):
-        (Broker.run_message_loop):
-        (Broker.run_all_pending):
-        (Broker._run_loop):
-        (Broker._dispatch_message):
-        (_Message):
-        (_Message.loads):
-        (_Message.__init__):
-        (_Message.dumps):
-        (_Message.__repr__):
-        (BrokerConnection):
-        (BrokerConnection.__init__):
-        (BrokerConnection.run_message_loop):
-        (BrokerConnection.post_message):
-        (BrokerConnection.raise_exception):
-        * Scripts/webkitpy/layout_tests/controllers/message_broker.py: Removed.
-
-2012-02-21  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: prepare to delete message_broker.py
-        https://bugs.webkit.org/show_bug.cgi?id=78997
-
-        Reviewed by Eric Seidel.
-
-        This is part 1 of 3 changes to fix bug 78187. This change
-        prepares the code for merging message_broker.py into
-        manager_worker_broker.py; the tests in message_broker_unittest
-        are merged into manager_worker_broker_unittest, the symbols
-        needed by the tests are exported from manager_worker_broker.py,
-        and manager_worker_broker itself is updated to refer to the
-        symbols directly (without the module prefix).
-
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        (get):
-        (AbstractWorker):
-        (AbstractWorker.__init__):
-        (_ManagerConnection):
-        (_ManagerConnection.__init__):
-        (_WorkerConnection):
-        (_WorkerConnection.__init__):
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker_unittest.py:
-        (InterfaceTest.test_brokerclient_is_abstract):
-        (InterfaceTest.test_brokerclient_is_abstract.methods):
-        (MessageTest):
-        (MessageTest.test__no_body):
-        (MessageTest.test__body):
-        * Scripts/webkitpy/layout_tests/controllers/message_broker_unittest.py: Removed.
-
-2012-02-21  Sam Weinig  <sam@webkit.org>
-
-        Attempt to fix the Snow Leopard build.
-
-        * DumpRenderTree/mac/Configurations/Base.xcconfig:
-        * MiniBrowser/Configurations/Base.xcconfig:
-        * TestWebKitAPI/Configurations/Base.xcconfig:
-        * WebKitTestRunner/Configurations/Base.xcconfig:
-
-2012-02-21  Sam Weinig  <sam@webkit.org>
-
-        Use libc++ when building with Clang on Mac
-        https://bugs.webkit.org/show_bug.cgi?id=78981
-
-        Reviewed by Dan Bernstein.
-
-        * DumpRenderTree/mac/Configurations/Base.xcconfig:
-        * MiniBrowser/Configurations/Base.xcconfig:
-        * TestWebKitAPI/Configurations/Base.xcconfig:
-        * WebKitTestRunner/Configurations/Base.xcconfig:
-
-2012-02-21  Adam Roben  <aroben@apple.com>
-
-        Roll out r108309, r108323, and r108326
-
-        They broke the 32-bit Lion build.
-
-        Original bugs is <http://webkit.org/b/75812> <rdar://problem/10079694>.
-
-        * DumpRenderTree/efl/CMakeLists.txt:
-
-2012-02-21  Andras Becsi  <andras.becsi@nokia.com>
-
-        [Qt][WK2] Get rid of the dependency to QtWidgets
-        https://bugs.webkit.org/show_bug.cgi?id=76276
-
-        Reviewed by Simon Hausmann.
-
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::MiniBrowserApplication):
-        (MiniBrowserApplication::notify):
-        (MiniBrowserApplication::sendTouchEvent):
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-        (MiniBrowserApplication):
-        * QtTestBrowser/locationedit.h:
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-        (WTR::activateFonts):
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-
-2012-02-20  Adam Barth  <abarth@webkit.org>
-
-        mastercfg_unittest.py fails without simplejson
-        https://bugs.webkit.org/show_bug.cgi?id=79070
-
-        Reviewed by Csaba Osztrogonác.
-
-        Now that we require Python 2.6 (and higher) we can import json rather
-        than simplejson.  We still need to use the simplejson name because
-        that's what the master.cfg script expects.
-
-        * BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py:
-        (BuildBotConfigLoader._add_dependant_modules_to_sys_modules):
-
-2012-02-20  Filip Pizlo  <fpizlo@apple.com>
-
-        JSC should be a triple-tier VM
-        https://bugs.webkit.org/show_bug.cgi?id=75812
-        <rdar://problem/10079694>
-
-        Reviewed by Gavin Barraclough.
-
-        Changed EFL's build system to include a new directory in JavaScriptCore.
-
-        * DumpRenderTree/efl/CMakeLists.txt:
-
-2012-02-20  Kenichi Ishibashi  <bashi@chromium.org>
-
-        Update pywebsocket to 0.7.2
-        https://bugs.webkit.org/show_bug.cgi?id=79066
-
-        This version includes vendor-prefixed deflate-frame extension support.
-
-        Reviewed by Kent Tamura.
-
-        * Scripts/webkitpy/thirdparty/__init__.py:
-        (AutoinstallImportHook._install_pywebsocket):
-
-2012-02-20  Martin Robinson  <mrobinson@igalia.com>
-
-        [UNIX] Plugin information fields are not interpreted as UTF-8
-        https://bugs.webkit.org/show_bug.cgi?id=78635
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Interpret plugin metadata as UTF8 aways. This matches the behavior
-        of Chromium and the Totem plugin.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_GetValue): Include a UTF-8 character in the description string for testing purposes.
-
-2012-02-20  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] [Qt] Move the unix forwarding headers for TestNetscapePlugin to the TestNetscapePlugin directory
-        https://bugs.webkit.org/show_bug.cgi?id=78935
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Move the TestNetscapePlugin headers to a more appropriate directory and update
-        the build files to match.
-
-        * DumpRenderTree/TestNetscapePlugIn/unix/ForwardingHeaders/WebKit/npapi.h: Renamed from Tools/DumpRenderTree/unix/TestNetscapePlugin/ForwardingHeaders/WebKit/npapi.h.
-        * DumpRenderTree/TestNetscapePlugIn/unix/ForwardingHeaders/WebKit/npfunctions.h: Renamed from Tools/DumpRenderTree/unix/TestNetscapePlugin/ForwardingHeaders/WebKit/npfunctions.h.
-        * DumpRenderTree/TestNetscapePlugIn/unix/ForwardingHeaders/WebKit/npruntime.h: Renamed from Tools/DumpRenderTree/unix/TestNetscapePlugin/ForwardingHeaders/WebKit/npruntime.h.
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro: Update build.
-        * GNUmakefile.am: Ditto.
-
-2012-02-20  Kihong Kwon  <kihong.kwon@samsung.com>
-
-        Add a new API for the Vibration API(W3C).
-        https://bugs.webkit.org/show_bug.cgi?id=72010
-
-        Reviewed by Hajime Morita.
-
-        * Scripts/build-webkit: Enable ENABLE_VIBRATION feature.
-
-2012-02-20  János Badics  <dicska@gmail.com>
-
-        [Qt] run-qtwebkit-tests doesn't consider timeouts as failures
-        https://bugs.webkit.org/show_bug.cgi?id=71816
-
-        RunQtAPITests will notify if a timeout occurs during testing.
-        Added unittest to the master.cfg
-
-        Reviewed by Csaba Osztrogonác.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (RunQtAPITests.evaluateCommand):
-        * BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py:
-        (RunQtAPITestsTest):
-        (RunQtAPITestsTest.assertResults):
-        (RunQtAPITestsTest.test_timeout):
-        (test_success):
-        (test_failure):
-        (test_timeout_and_failure):
-
-2012-02-20  Andy Wingo  <wingo@igalia.com>
-
-        Add wingo as a committer.
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py: Add myself to the
-        committers list.
-
-2012-02-20  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] check that we're not running multiple modal dialogs at the same time
-        https://bugs.webkit.org/show_bug.cgi?id=78486
-
-        Reviewed by Kent Tamura.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::setIsDisplayingModalDialog):
-        (TestShell::isDisplayingModalDialog):
-        (TestShell):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::runModal):
-
-2012-02-20  Martin Robinson  <mrobinson@igalia.com>
-
-        Fix WebKit2GTK+ for 'make distcheck'.
-
-        Instead of conditionally including WebKit2 GNUmakefiles, always
-        include them and conditionally activate the final targets.
-
-        * MiniBrowser/gtk/GNUmakefile.am:
-        * WebKitTestRunner/GNUmakefile.am:
-
-2012-02-20  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Enable video option for EFL port in build-webkit.
-        https://bugs.webkit.org/show_bug.cgi?id=79006
-
-        Reviewed by Daniel Bates.
-
-        * Scripts/build-webkit:
-
-2012-02-19  JungJik Lee  <jungjik.lee@samsung.com>
-
-        [EFL] Use modifier keys to execute pre-rendering.
-        https://bugs.webkit.org/show_bug.cgi?id=77933
-
-        Reviewed by Chang Shu.
-
-        Use modifier key to execute pre-rendering instead of using reserved function keys.
-
-        * EWebLauncher/main.c:
-        (on_key_down):
-
-2012-02-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix one more dangling reference to worker_connection.name, delete unused code.
-
-        Unreviewed, build fix.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.update):
-        (_WorkerState.__init__):
-
-2012-02-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Add a change that should've been in r108005.
-
-        Unreviewed, build fix.
-
-        In the refactoring/cleanup in r108005 I should've changed the
-        implementation of WorkerConnection to make it match BrokerClient
-        (and everything else) so that objects had a name() method
-        instead of a name property.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._run_tests):
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        (_WorkerConnection.__init__):
-        (_WorkerConnection.name):
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker_unittest.py:
-        (_TestWorker.__init__):
-        (_TestsMixin.name):
-        (_TestsMixin.test_name):
-        (_TestsMixin.test_cancel):
-        (_TestsMixin.test_unknown_message):
-
-2012-02-18  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: remove webkitpy.common.array_stream
-        https://bugs.webkit.org/show_bug.cgi?id=78952
-
-        Reviewed by Eric Seidel.
-
-        Turns out array_stream didn't really do anything that StringIO
-        didn't do (at least as of Python 2.6). This change removes it
-        and updates all of the callers. Where possible, I changed the
-        test assertions in order to capture the intent more clearly,
-        e.g., instead of calling self.assertTrue('foo' in stream.get()),
-        we have self.assertContainsLine(stream, 'foo'), and instead of
-        self.assertTrue(stream.empty()), we have self.assertEmpty(stream) -
-        the latter isn't that much more readable, but StringIO doesn't
-        export an empty() method.
-
-        * Scripts/webkitpy/common/array_stream.py: Removed.
-        * Scripts/webkitpy/common/array_stream_unittest.py: Removed.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (passing_run):
-        (run_and_capture):
-        (StreamTestingMixin):
-        (StreamTestingMixin.assertContains):
-        (StreamTestingMixin.assertContainsLine):
-        (StreamTestingMixin.assertEmpty):
-        (StreamTestingMixin.assertNotEmpty):
-        (LintTest):
-        (LintTest.test_lint_test_files):
-        (LintTest.test_lint_test_files__errors):
-        (MainTest):
-        (MainTest.test_child_process_1):
-        (MainTest.test_child_processes_2):
-        (MainTest.test_child_processes_min):
-        (MainTest.test_help_printing):
-        (MainTest.test_hung_thread):
-        (MainTest.test_no_tests_found):
-        (MainTest.test_no_tests_found_2):
-        (MainTest.test_repeat_each_iterations_num_tests):
-        (MainTest.test_test_list):
-        (MainTest.test_unexpected_failures):
-        (MainTest.test_worker_model__inline_with_child_processes):
-        (MainTest.test_additional_platform_directory):
-        (RebaselineTest):
-        (RebaselineTest.assertBaselines):
-        (RebaselineTest.test_reset_results):
-        (RebaselineTest.test_missing_results):
-        (RebaselineTest.test_new_baseline):
-        * Scripts/webkitpy/layout_tests/views/metered_stream.py:
-        (MeteredStream.update):
-        * Scripts/webkitpy/layout_tests/views/metered_stream_unittest.py:
-        (TestMeteredStream.test_regular):
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-        (TestUtilityFunctions.assertEmpty):
-        (TestUtilityFunctions):
-        (TestUtilityFunctions.assertNotEmpty):
-        (TestUtilityFunctions.assertWritten):
-        (TestUtilityFunctions.test_configure_logging):
-        (Testprinter.assertEmpty):
-        (Testprinter):
-        (Testprinter.assertNotEmpty):
-        (Testprinter.assertWritten):
-        (Testprinter.reset):
-        (Testprinter.get_printer):
-        (Testprinter.test_help_printer):
-        (Testprinter.do_switch_tests.do_helper):
-        (Testprinter.test_print_one_line_summary):
-        (Testprinter.test_print_test_result):
-        (Testprinter.test_print_progress):
-        (Testprinter.test_write_nothing):
-        (Testprinter.test_write_misc):
-        (Testprinter.test_write_everything):
-        (Testprinter.test_write_verbose):
-        (Testprinter.test_print_unexpected_results):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (MainTest.assertWritten):
-        (create_runner):
-        (test_run_test_set):
-        (test_run_test_set_kills_drt_per_run):
-        (test_run_test_set_for_parser_tests):
-        (test_run_test_set_with_json_output):
-        (test_run_test_set_with_json_source):
-        (test_run_test_set_with_multiple_repositories):
-        (test_upload_json):
-
-2012-02-18  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Add the WebCore/page/scrolling directory to the build dirs.
-
-        * waf/build/settings.py:
-
-2012-02-18  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix. Don't error out or hang if we have
-        downloaded dependencies but server update check fails.
-
-        * waf/build/build_utils.py:
-        (download_if_newer):
-
-2012-02-17  Dirk Pranke  <dpranke@chromium.org>
-
-        The new run-webkit-tests needs to dump out pixel hash failures even if the pixel test passes.
-        https://bugs.webkit.org/show_bug.cgi?id=69444
-
-        Reviewed by Tony Chang.
-
-        Currently if a test's image checksum doesn't match the checksum
-        in the baseline, but the images themselves match according to
-        ImageDiff, new-run-webkit-tests ignores the problem. This is
-        probably bad, but it's not yet clear what the right thing to do
-        is. This patch will log a warning to stderr, at least (but the
-        test will still pass).
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner._compare_image):
-        (SingleTestRunner._run_reftest):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (unit_test_list):
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-
-2012-02-17  Dirk Pranke  <dpranke@chromium.org>
-
-        NRWT does not report failure for a skipped test
-        https://bugs.webkit.org/show_bug.cgi?id=78750
-
-        Reviewed by Eric Seidel.
-
-        If a test is listed in a Skipped file and you run it anyway
-        with --force, and the test fails, currently NRWT will print
-        "test ran as expected"; this is confusing, because you probably
-        expect the test to fail and yet this might lead you to think the
-        test passed. This patch changes the expected behavior to "PASS",
-        so tests that fail will be reported.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (result_was_expected):
-        (TestExpectationParser):
-        (TestExpectationParser.expectation_for_skipped_test):
-        (TestExpectations):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (test_add_skipped_tests):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (unit_test_list): Add some tests that are expected to be in a Skipped file.
-        (TestPort.skipped_tests): This adds actual integration test coverage of Skipped files.
-
-2012-02-17  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: fix test code after bug 78181
-        https://bugs.webkit.org/show_bug.cgi?id=78870
-
-        Reviewed by Adam Barth.
-
-        I forgot to update the test code as per Tony's suggestion in
-        bug 78181 (r108005). This change does that, and in doing so
-        it revealed a subtle bug in _InlineWorkerConnection.run() that
-        I am fixing as part of this (_alive would not be cleared if an
-        exception was thrown).
-
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        (_InlineWorkerConnection.run):
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker_unittest.py:
-        (_TestWorker.__init__):
-        (_TestWorker.handle_stop):
-        (_TestWorker.handle_test):
-        (_TestWorker.run):
-        (_TestsMixin.handle_exception):
-        (_TestsMixin.test_unknown_message):
-
-2012-02-17  Adam Roben  <aroben@apple.com>
-
-        Mac build fix after r108119
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (runThread):
-        (runPthread):
-        (testThreadIdentifierMap):
-        Updated to match current WTF threading APIs.
-
-2012-02-17  Dirk Pranke  <dpranke@chromium.org>
-
-        revert r107147 - breaks webkit-patch on Mac SL
-        https://bugs.webkit.org/show_bug.cgi?id=78866
-
-        Reviewed by Adam Barth.
-
-        It appears that zipfile.ExtractAll is broken on Python 2.6.1,
-        which is the version that ships on Mac SL. Reverting this
-        change until we no longer have to worry about that version.
-
-        * Scripts/webkitpy/common/system/autoinstall.py:
-        (AutoInstaller):
-        (AutoInstaller._extract_all): Added a comment about SL.
-        (AutoInstaller._unzip):
-
-2012-02-17  Mihnea Ovidenie  <mihnea@adobe.com>
-
-        CSS regions enabled by default
-        https://bugs.webkit.org/show_bug.cgi?id=78525
-
-        Reviewed by David Hyatt.
-
-        Add a runtime preference to enable/disable regions functionality at runtime(WebKitCSSRegionsEnabled).
-        CSSRegions are still enabled by default.
-        In DRT, use layoutTestController.overridePreference("WebKitCSSRegionsEnabled", "0") to disable the css regions functionality.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::overridePreference):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-        (WebPreferences):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-
-2012-02-17  Maciej Stachowiak  <mjs@apple.com>
-
-        Some API tests erroneously use = instead of == (causing build failures)
-        https://bugs.webkit.org/show_bug.cgi?id=78915
-
-        Reviewed by Sam Weinig.
-
-        * TestWebKitAPI/Tests/WebKit2/PageLoadBasic.cpp:
-        (TestWebKitAPI::decidePolicyForNavigationAction): Replace an = with an ==
-        (TestWebKitAPI::decidePolicyForNewWindowAction): ditto
-
-2012-02-17  Peter Beverloo  <peter@chromium.org>
-
-        [Chromium] Include TestShellLinux.cpp in the build for Android
-        https://bugs.webkit.org/show_bug.cgi?id=78865
-
-        Reviewed by Eric Seidel.
-
-        Android will be re-using the TestShellLinux.cpp file. I already
-        added this r104033, but it seems to have gotten lost in the
-        recent refactorings.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-02-17  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Unreviewed, disable video build on EFL until it can be
-        supported by EFL build bot.
-
-        * Scripts/build-webkit:
-
-2012-02-17  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Implement zoom in/out in MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=75253
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (browserWindowCanZoomIn):
-        (browserWindowCanZoomOut):
-        (browserWindowUpdateZoomActions):
-        (webViewZoomLevelChanged):
-        (zoomInCallback):
-        (zoomOutCallback):
-        (browser_window_init):
-        (browserWindowConstructed):
-
-2012-02-17  Nikolas Zimmermann  <nzimmermann@rim.com>
-
-        layoutTestController.display() is flaky for SVG tests
-        https://bugs.webkit.org/show_bug.cgi?id=78021
-
-        Reviewed by Adam Roben.
-
-        Apply the same fix to DRT/Win, as previously applied to DRT/Mac.
-        Size the web view before running the test, not when dumping.
-        All platforms handle this correctly now.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (dump):
-        (sizeWebViewForCurrentTest):
-        (runTest):
-
-2012-02-16  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Make install is broken when building without --enable-gtk-doc
-        https://bugs.webkit.org/show_bug.cgi?id=78828
-
-        Reviewed by Martin Robinson.
-
-        * gtk/generate-gtkdoc:
-        (rebase_installed_docs): Check documentation has been generated
-        before trying to rebase it.
-
-2012-02-16  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: simplify worker interface
-        https://bugs.webkit.org/show_bug.cgi?id=78181
-
-        Reviewed by Tony Chang.
-
-        This change moves code in name(), is_done(), run(), and cancel()
-        from Worker to AbstractWorker, since the logic is pretty much
-        boilerplate code that any implementation would want to use.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        (get.should):
-        (AbstractWorker.__init__):
-        (AbstractWorker):
-        (AbstractWorker.name):
-        (AbstractWorker.stop_handling_messages):
-        (AbstractWorker.run):
-        (AbstractWorker.is_done):
-        (AbstractWorker.cancel):
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        (Worker.__init__):
-        (Worker.run):
-        (Worker.handle_stop):
-
-2012-02-16  Michael Saboff  <msaboff@apple.com>
-
-        ENH: Add ability to run subset of JavaScript layout tests with JSC
-        https://bugs.webkit.org/show_bug.cgi?id=78764
-
-        Reviewed by Gavin Barraclough.
-
-        New simple test drive shell script that runs a defined
-        list of javascript tests using jsc and the standalone-{pre,post}.js
-        wrappers.
-
-        * Scripts/run-fast-jsc: Added.
-
-2012-02-16  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Add new Qt performance tester bot to build.webkit.org
-        https://bugs.webkit.org/show_bug.cgi?id=78795
-
-        Reviewed by Adam Roben.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-02-16  Patrick Gansterer  <paroga@webkit.org>
-
-        Disable inspector on WinCE.
-
-        Avoid compiling InspectorBackendDispatcher.cpp, which causes an internal compiler error.
-
-        * Scripts/build-webkit:
-
-2012-02-16  Patrick Gansterer  <paroga@webkit.org>
-
-        WinCE build fix after r107656.
-
-        Disable FTPDIR on WinCE, since it does not compile there.
-
-        * Scripts/build-webkit:
-
-2012-02-15  Leo Yang  <leo.yang@torchmobile.com.cn>
-
-        Build fix after r107863.
-
-        * DumpRenderTree/blackberry/PixelDumpSupportBlackBerry.cpp:
-
-2012-02-15  Tony Chang  <tony@chromium.org>
-
-        [chromium] add linux dbg back to garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=78752
-
-        Reviewed by Adam Barth.
-
-        This reflects the current linux debug bot name (there's only one bot).
-        I'm also remove the mac clang builder since it doesn't exist (mac
-        always uses clang now).
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-
-2012-02-15  Sam Weinig  <sam@webkit.org>
-
-        Add style check for ctype functions that are generally frowned upon in WebKit
-        https://bugs.webkit.org/show_bug.cgi?id=78748
-
-        Reviewed by Anders Carlsson.
-
-        Not every platform has DisallowCType.h to check for uses of the ctype.h
-        functions, so add a style check for them as well.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (check_ctype_functions):
-        (check_style):
-        (CppChecker):
-        Add check.
-
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (WebKitStyleTest.test_ctype_fucntion):
-        Add checker.
-
-2012-02-15  Szilard Ledan  <Ledan-Muntean.Szilard@stud.u-szeged.hu>
-
-        [Qt][WK2] WebKitTestRunner should use 480x360 sized view for W3C SVG tests
-        https://bugs.webkit.org/show_bug.cgi?id=76546
-
-        Reviewed by Simon Hausmann.
-
-        Resize the web view programatically because the declarative property binding
-        does not work. Seems like our qml environment is not initialized fully but it
-        needs more investigation.
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::WrapperWindow::handleStatusChanged):
-        (WTR::PlatformWebView::resizeTo):
-
-2012-02-15  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: add a worker_args concept to start_worker()
-        https://bugs.webkit.org/show_bug.cgi?id=78572
-
-        Reviewed by Tony Chang.
-
-        This change replaces the three NRWT-specific arguments passed
-        through the broker to the worker with a generic WorkerArguments
-        wrapper class and a separate set_inline_arguments() call that can
-        be used to pass additional data to the worker when it is running
-        in the same process as the manager (this is needed for testing).
-        With the addition of set_inline_arguments() we also no longer
-        need to pass an optional argument to the worker.run() call.
-
-        Note that this method is *only* implemented on inline workers,
-        so calling this on a regular (child process) worker will result
-        in a runtime error.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._run_tests):
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        (AbstractWorker.__init__):
-        (AbstractWorker.run):
-        (_ManagerConnection.start_worker):
-        (_InlineManager.start_worker):
-        (_InlineManager.set_inline_arguments):
-        (_InlineManager.run_message_loop):
-        (_MultiProcessManager.start_worker): Reworked signature.
-        (_WorkerConnection.__init__):
-        (_InlineWorkerConnection.__init__):
-        (_InlineWorkerConnection.set_inline_arguments): New method.
-        (_InlineWorkerConnection):
-        (_InlineWorkerConnection.run):
-        (_Process.run):
-        (_MultiProcessWorkerConnection.__init__):
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker_unittest.py:
-        (_TestWorker.__init__):
-        (_TestWorker.set_inline_arguments):
-        (_TestWorker.handle_test):
-        (_TestWorker.run):
-        (_TestsMixin.test_cancel):
-        (_TestsMixin.test_done):
-        (_TestsMixin.test_unknown_message):
-        (InlineBrokerTests): New class for more testing.
-        (InlineBrokerTests.setUp):
-        (InlineBrokerTests.test_inline_arguments): New test.
-        (InterfaceTest.test_managerconnection_is_abstract):
-        (InterfaceTest.test_workerconnection_is_abstract):
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        (WorkerArguments):
-        (WorkerArguments.__init__):
-        (Worker.__init__):
-        (Worker.set_inline_arguments):
-        (Worker):
-        (Worker.run):
-        * Scripts/webkitpy/layout_tests/controllers/worker_unittest.py:
-        (WorkerTest.test_default_platform_in_worker):
-
-2012-02-15  Adam Klein  <adamk@chromium.org>
-
-        Unreviewed, rolling out r107704.
-        http://trac.webkit.org/changeset/107704
-        https://bugs.webkit.org/show_bug.cgi?id=78486
-
-        Caused layout test crashes in debug builds.
-
-        Specific crashing tests:
-
-        fast/events/show-modal-dialog-onblur-onfocus.html
-        fast/harness/show-modal-dialog.html
-        inspector/console/console-long-eval-crash.html
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::runModal):
-
-2012-02-15  Michael Brüning  <michael.bruning@nokia.com>
-
-        [Qt] Add UI for HTTP authentication in the Qt MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=76347
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * MiniBrowser/qt/MiniBrowser.qrc:
-        * MiniBrowser/qt/qml/AuthenticationDialog.qml: Added. 
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-        * MiniBrowser/qt/qml/DialogLineInput.qml:
-
-2012-02-15  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Fix WebGL in QtTestBrowser
-
-        Reviewed by Tor Arne Vestbø.
-
-        * QtTestBrowser/QtTestBrowser.pro: Set the OpenGL define so that when passing
-        the options for enabling GL we also pass them on properly.
-
-2012-02-14  Sam Weinig  <sam@webkit.org>
-
-        Add #include of unistd.h on the mac for getcwd. 
-
-        Reviewed by Anders Carlsson.
-
-        This is necessary when building with libc++.
-
-        * WebKitTestRunner/TestInvocation.cpp:
-
-2012-02-14  Sam Weinig  <sam@webkit.org>
-
-        In DRT, don't #define min or max on non-Windows platforms, it just isn't needed
-        https://bugs.webkit.org/show_bug.cgi?id=78663
-
-        Reviewed by Anders Carlsson.
-
-        * DumpRenderTree/DumpRenderTreePrefix.h:
-        * DumpRenderTree/cg/ImageDiffCG.cpp:
-
-2012-02-14  Adam Barth  <abarth@webkit.org>
-
-        Implement an adb-based driver for the ChromiumAndroidPort
-        https://bugs.webkit.org/show_bug.cgi?id=78627
-
-        Reviewed by Eric Seidel.
-
-        This driver mostly just wires up the ChromiumDriver through adb.  In
-        some cases, it translates protocol elements, such as URIs, so that the
-        rest of webkitpy is insulated from the "remoteness" of the target device.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.start_helper):
-        (ChromiumAndroidPort._driver_class):
-        (ChromiumAndroidPort._update_version):
-        (ChromiumAndroidPort._get_stderr):
-        (ChromiumAndroidPort):
-        (ChromiumAndroidPort._get_last_stacktrace):
-        (ChromiumAndroidPort._teardown_performance):
-        (ChromiumAndroidDriver):
-        (ChromiumAndroidDriver.__init__):
-        (ChromiumAndroidDriver._start):
-        (ChromiumAndroidDriver.run_test):
-        (ChromiumAndroidDriver.stop):
-        (ChromiumAndroidDriver._test_shell_command):
-        (ChromiumAndroidDriver._write_command_and_read_line):
-        (ChromiumAndroidDriver._output_image):
-        (ChromiumAndroidDriver._has_crash_hint):
-
-2012-02-14  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: the real_name() method in the Port class is no longer needed
-        https://bugs.webkit.org/show_bug.cgi?id=78651
-
-        Reviewed by Eric Seidel.
-
-        The change in bug 78565 / r107718 made it no longer necessary
-        (we can use options.platform instead).
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.name):
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py:
-        (MockDRTPort.__init__):
-
-2012-02-14  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: clean up options, port handling in manager_worker_broker
-        https://bugs.webkit.org/show_bug.cgi?id=78568
-
-        Reviewed by Tony Chang.
-
-        manager_worker_broker no longer needs options or port objects
-        directly, so we make them only be passed in start_worker().
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._run_tests):
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        (get):
-        (_ManagerConnection.__init__):
-        (_ManagerConnection.start_worker):
-        (_InlineManager.__init__):
-        (_InlineManager.start_worker):
-        (_InlineManager.run_message_loop):
-        (_MultiProcessManager.__init__):
-        (_MultiProcessManager):
-        (_MultiProcessManager.start_worker):
-        (_InlineWorkerConnection.__init__):
-        (_InlineWorkerConnection.run):
-        (_Process.__init__):
-        (_MultiProcessWorkerConnection.__init__):
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker_unittest.py:
-        (make_broker):
-        (_TestWorker.run):
-        (_TestsMixin.test_cancel):
-        (_TestsMixin.test_done):
-        (_TestsMixin.test_unknown_message):
-        (MultiProcessBrokerTests.setUp):
-        (InterfaceTest.test_managerconnection_is_abstract):
-        * Scripts/webkitpy/layout_tests/controllers/message_broker.py:
-        (Broker.__init__):
-
-2012-02-14  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: add a unit test for regression introduced in bug 78565
-        https://bugs.webkit.org/show_bug.cgi?id=78646
-
-        Reviewed by Tony Chang.
-
-        * Scripts/webkitpy/layout_tests/controllers/worker_unittest.py: Added.
-        (FakeConnection):
-        (FakeConnection.run_message_loop):
-        (FakeConnection.post_message):
-        (WorkerTest):
-        (WorkerTest.test_default_platform_in_worker):
-
-2012-02-14  Dirk Pranke  <dpranke@chromium.org>
-
-        NRWT is broken for the default port
-        https://bugs.webkit.org/show_bug.cgi?id=78640
-    
-        Reviewed by Tony Chang.
-
-        The change in r107718 (bug 78565) broke NRWT if you didn't
-        specify any sort of --platform flag or equivalent. I didn't
-        catch this because it's a full integration test (which we don't
-        have an automated test for) and I missed this command line
-        variant when testing interactively.
-
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        (Worker.run):
-
-2012-02-14  Ramya Chandrasekaran  <cramya@google.com>
-
-        Last character display for passwords in Android.
-        https://bugs.webkit.org/show_bug.cgi?id=78532
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::applyTo):
-
-2012-02-14  Adam Barth  <abarth@webkit.org>
-
-        Finish implementing start_helper for ChromiumAndroidPort
-        https://bugs.webkit.org/show_bug.cgi?id=78582
-
-        Reviewed by Eric Seidel.
-
-        This patch contains the remaining odds and ends for the start_helper function.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.start_helper):
-        (ChromiumAndroidPort._synchronize_datetime):
-        (ChromiumAndroidPort):
-        (ChromiumAndroidPort._check_version):
-        (ChromiumAndroidPort._run_adb_command):
-        (ChromiumAndroidPort._copy_device_file):
-
-2012-02-14  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: create ports in Workers, not in manager_worker_broker
-        https://bugs.webkit.org/show_bug.cgi?id=78565
-
-        Reviewed by Tony Chang.
-
-        We will now create the Port object (if necessary) in the Worker
-        directly, so that the manager_worker_broker module doesn't need
-        all of this layout_test-specific logic. Part of the fixes for
-        bug 78171.
-
-        These changes are all well-tested by the existing tests in
-        run_webkit_tests_integrationtest.py.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        (_Process.run):
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        (Worker.__init__):
-        (Worker.safe_init):
-        (Worker.run):
-        (Worker.cleanup):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-        (main): Fix a minor bug where running the 'mock-test' port didn't work right.
-
-2012-02-14  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] check that we're not running multiple modal dialogs at the same time
-        https://bugs.webkit.org/show_bug.cgi?id=78486
-
-        Reviewed by Kent Tamura.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::setIsDisplayingModalDialog):
-        (TestShell::isDisplayingModalDialog):
-        (TestShell):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::runModal):
-
-2012-02-14  Adam Barth  <abarth@webkit.org>
-
-        Enable the GPU codepath in the chromium-android port
-        https://bugs.webkit.org/show_bug.cgi?id=78580
-
-        Reviewed by James Robinson.
-
-        Suprise!  There is no ChromiumGpuAndroidPort!  Instead, Chromium
-        Android always uses the GPU codepath, so we set the GPU flags on the
-        main chromium-android port instead.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.__init__):
-
-2012-02-14  Adam Barth  <abarth@webkit.org>
-
-        NRWT should expose --adb-args flag for Android
-        https://bugs.webkit.org/show_bug.cgi?id=78579
-
-        Reviewed by Eric Seidel.
-
-        This flag is already wired up to the ChromiumAndroidPort.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-
-2012-02-14  Alexey Proskuryakov  <ap@apple.com>
-
-        [Mac][Win][WK2] Switch to RFC 6455 protocol for WebSockets
-        https://bugs.webkit.org/show_bug.cgi?id=78541
-        <rdar://problem/10036695>
-
-        Reviewed by Kent Tamura.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm: (resetDefaultsToConsistentValues):
-        * DumpRenderTree/win/DumpRenderTree.cpp: (resetDefaultsToConsistentValues):
-        After each test, reset to using new protocol.
-
-2012-02-11  Nikolas Zimmermann  <nzimmermann@rim.com>
-
-        Convert svg/animations to use SMIL methods for driving the timeline
-        https://bugs.webkit.org/show_bug.cgi?id=78422
-
-        Reviewed by Dirk Schulze.
-
-        Remove no longer needed SVG specific animation sampling functionality from DRT.
-        Instead we switched the svg/animations tests to use SVGSVGElement.setCurrentTime.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-
-2012-02-13  Rob Flack  <flackr@chromium.org>
-
-        Add Linux ChromiumOS test results to flakiness dashboard.
-        https://bugs.webkit.org/show_bug.cgi?id=78495
-
-        Reviewed by Ojan Vafai.
-
-        * TestResultServer/static-dashboards/builders.js:
-        * TestResultServer/static-dashboards/dashboard_base.js:
-
-2012-02-13  ChangSeok Oh  <shivamidow@gmail.com>
-
-        [GTK] Mutation Observers build is broken
-        https://bugs.webkit.org/show_bug.cgi?id=78433
-
-        Reviewed by Martin Robinson.
-
-        Enabled mutation observers as a default feature for GTK port, too.
-
-        * Scripts/build-webkit:
-
-2012-02-13  Loïc Yhuel  <loic.yhuel_ext@softathome.com>
-
-        Allow to configure ENABLE_FTPDIR in build-webkit
-        https://bugs.webkit.org/show_bug.cgi?id=65098
-
-        Reviewed by Eric Seidel.
-
-        Allow to disable ENABLE_FTPDIR by command line.
-        Remove ENABLE_FTPDIR from --minimal build
-
-        * Scripts/build-webkit: Add entries for ENABLE_FTPDIR (enabled by default)
-        * qmake/mkspecs/features/features.prf: ENABLE_FTPDIR must be set to match Platform.h,
-        as, for Qt platform, build-webkit does not add on command line what it thinks to be default values
-
-2012-02-13  Shinya Kawanaka  <shinyak@chromium.org>
-
-        Add shinyak as committer.
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-02-13  Adam Barth  <abarth@webkit.org>
-
-        Implement start/stop_helper for ChromiumAndroidPort
-        https://bugs.webkit.org/show_bug.cgi?id=78558
-
-        Reviewed by Dirk Pranke.
-
-        These functions (and their dependencies) set up the Android device for
-        testing.
-
-        This patch also includes a few tweaks on the previous patch recommended
-        by dpranke.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.__init__):
-        (ChromiumAndroidPort.start_helper):
-        (ChromiumAndroidPort.stop_helper):
-        (ChromiumAndroidPort._shut_down_http_server):
-        (ChromiumAndroidPort):
-        (ChromiumAndroidPort._push_executable):
-        (ChromiumAndroidPort._push_fonts):
-        (ChromiumAndroidPort._restore_system_font):
-        (ChromiumAndroidPort._push_test_resources):
-        (ChromiumAndroidPort._push_to_device):
-        (ChromiumAndroidPort._pull_from_device):
-        (ChromiumAndroidPort._kill_device_process):
-        (ChromiumAndroidPort._setup_performance):
-        (ChromiumAndroidPort._teardown_performance):
-        * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:
-        (ChromiumAndroidPortTest):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (PortTestCase):
-        (PortTestCase.make_port):
-        (PortTestCase.test_default_worker_model):
-
-2012-02-13  Adam Barth  <abarth@webkit.org>
-
-        Implement enough of ChromiumAndroidPort to make ChromiumAndroidPortTest pass
-        https://bugs.webkit.org/show_bug.cgi?id=78550
-
-        Reviewed by Eric Seidel.
-
-        Much of this code just forwards to the "host" port, which seems like a
-        reasonable thing to do.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.__init__):
-        (ChromiumAndroidPort.stop_helper):
-        (ChromiumAndroidPort):
-        (ChromiumAndroidPort._build_path):
-        (ChromiumAndroidPort._path_to_apache):
-        (ChromiumAndroidPort._path_to_apache_config_file):
-        (ChromiumAndroidPort._path_to_driver):
-        (ChromiumAndroidPort._path_to_helper):
-        (ChromiumAndroidPort._path_to_image_diff):
-        (ChromiumAndroidPort._path_to_lighttpd):
-        (ChromiumAndroidPort._path_to_lighttpd_modules):
-        (ChromiumAndroidPort._path_to_lighttpd_php):
-        (ChromiumAndroidPort._path_to_wdiff):
-        (ChromiumAndroidPort._shut_down_http_server):
-        * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:
-        (ChromiumAndroidPortTest):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (PortTestCase):
-        (PortTestCase.make_port):
-        (PortTestCase.test_default_worker_model):
-
-2012-02-13  Adam Barth  <abarth@webkit.org>
-
-        chromium_android.py should implement "virtual" methods from ChromiumPort
-        https://bugs.webkit.org/show_bug.cgi?id=78545
-
-        Reviewed by Dirk Pranke.
-
-        This patch adds basic implementations that specialize a bunch of
-        functions from ChromiumPort.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort):
-        (ChromiumAndroidPort.__init__):
-        (ChromiumAndroidPort.default_child_processes):
-        (ChromiumAndroidPort.baseline_search_path):
-        (ChromiumAndroidPort.check_build):
-        (ChromiumAndroidPort.check_sys_deps):
-        (ChromiumAndroidPort.default_worker_model):
-        (ChromiumAndroidPort.test_expectations):
-        (ChromiumAndroidPort.start_http_server):
-        (ChromiumAndroidPort.stop_http_server):
-        (ChromiumAndroidPort.start_helper):
-        (ChromiumAndroidPort.stop_helper):
-
-2012-02-13  Adam Barth  <abarth@webkit.org>
-
-        Add a skeleton ChromiumAndroid port to webkitpy
-        https://bugs.webkit.org/show_bug.cgi?id=78543
-
-        Reviewed by Eric Seidel.
-
-        This patch just adds an empty ChromiumAndroid port object to webkitpy
-        and wires it up to the factory objects.  An actual implementation will
-        follow.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort):
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py: Added.
-        (ChromiumAndroidPort):
-        (ChromiumAndroidPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumPortTest.test_all_test_configurations):
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        (PortFactory):
-
-2012-02-13  Adam Barth  <abarth@webkit.org>
-
-        NRWT's HTTP servers should support additional directories for resources
-        https://bugs.webkit.org/show_bug.cgi?id=78528
-
-        Reviewed by Eric Seidel.
-
-        This functionality will be used by the Chromium-Android port.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.to.start_http_server):
-        * Scripts/webkitpy/layout_tests/servers/apache_http_server.py:
-        (LayoutTestApacheHttpd.__init__):
-        * Scripts/webkitpy/layout_tests/servers/http_server.py:
-        (Lighttpd.__init__):
-        (Lighttpd._prepare_config):
-
-2012-02-13  Ami Fischman  <fischman@chromium.org>
-
-        Add fischman as committer.
-
-        Unreviewed
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-02-06  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] Drop support for the Curl network backend.
-        https://bugs.webkit.org/show_bug.cgi?id=77874
-
-        Reviewed by Eric Seidel.
-
-        Nobody seems to be maintaining the Curl backend in WebCore, the
-        EFL port developers all seem to be using the Soup backend and the
-        port itself has many features which are only implemented for the
-        latter.
-
-        * DumpRenderTree/efl/CMakeLists.txt: Always link to glib/libsoup
-        and always add the required include directories.
-        * EWebLauncher/CMakeLists.txt: Add the required glib/libsoup
-        include directories and link to them.
-
-2012-02-13  Kenichi Ishibashi  <bashi@chromium.org>
-
-        [WebSocket] Update pywebsocket to 0.7.1
-        https://bugs.webkit.org/show_bug.cgi?id=78484
-
-        pywebsocket-0.7.1 follow the current draft of WebSocket deflate-frame extension.
-
-        Reviewed by Kent Tamura.
-
-        * Scripts/webkitpy/thirdparty/__init__.py:
-        (AutoinstallImportHook._install_pywebsocket):
-
-2012-02-12  Kangil Han  <kangil.han@samsung.com>
-
-        [EFL][DRT] Implement zoomPage{In,Out} and textZoom{In,Out} events.
-        https://bugs.webkit.org/show_bug.cgi?id=78091
-
-        Reviewed by Hajime Morita.
-
-        Implemented zoomPageIn, zoomPageOut, textZoomIn and textZoomOut events on EFL DRT.
-        This patch will activate around 1,900 test cases from skipped list in EFL port.
-
-        * DumpRenderTree/efl/EventSender.cpp:
-        (textZoom):
-        (pageZoom):
-        (textZoomInCallback):
-        (textZoomOutCallback):
-        (zoomPageInCallback):
-        (zoomPageOutCallback):
-
-2012-02-12  Ashod Nakashian  <ashodnakashian@yahoo.com>
-
-        KeywordLookupGenerator.py script fails in some cases
-        https://bugs.webkit.org/show_bug.cgi?id=77886
-
-        Reviewed by Benjamin Poulain.
-
-        * Scripts/webkitpy/style/checker.py: New rule for Keywords.table to not have CR.
-        * Scripts/webkitpy/style/checker_unittest.py: New UT for Keywords.table rule.
-        (GlobalVariablesTest.test_path_rules_specifier):
-
-2012-02-12  Joe Thomas  <joethomas@motorola.com>
-
-        Add toText and isTextNode helpers in Text class.
-        https://bugs.webkit.org/show_bug.cgi?id=78140
-
-        Unit test case for the new style checker introduced.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (CppStyleTest):
-        (CppStyleTest.test_static_cast_readability): Added a unit test case.
-
-2012-02-12  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Enable features supported by EFL port in build-webkit.
-        https://bugs.webkit.org/show_bug.cgi?id=78348
-
-        Reviewed by Ryosuke Niwa.
-
-        Sync build-webkit with OptionEfl.cmake, as some features enabled in
-        OptionEfl.cmake are not enabled in build-webkit.
-
-        * Scripts/build-webkit:
-
-2012-02-12  Joe Thomas  <joethomas@motorola.com>
-
-        Add toText and isTextNode helpers in Text class.
-        https://bugs.webkit.org/show_bug.cgi?id=78140
-
-        Added a style checker to use toText rather than static_cast<Text*>.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (check_language): Style checker for static_cast<Text*>.
-
-2012-02-12  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, disable Mutation observers build on GTK until it can
-        actually build.
-
-        * Scripts/build-webkit:
-
-2012-02-11  Benjamin Poulain  <benjamin@webkit.org>
-
-        Add back WTFURL to WebKit
-        https://bugs.webkit.org/show_bug.cgi?id=77291
-
-        Reviewed by Adam Barth.
-
-        Add a flag to build-webkit to easily build WebKit with WTFURL.
-
-        * Scripts/build-webkit:
-
-2012-02-10  Adam Klein  <adamk@chromium.org>
-
-        Enable MUTATION_OBSERVERS by default on all platforms
-        https://bugs.webkit.org/show_bug.cgi?id=78196
-
-        Reviewed by Ojan Vafai.
-
-        * Scripts/build-webkit:
-
-2012-02-10  Adam Barth  <abarth@webkit.org>
-
-        Move garden-o-matic's All Failures out of experimental
-        https://bugs.webkit.org/show_bug.cgi?id=78395
-
-        Reviewed by Dimitri Glazkov.
-
-        Several folks have tried this feature and found it useful.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js:
-
-2012-02-10  Tim Horton  <timothy_horton@apple.com>
-
-        NRWT should categorize options in --help
-        https://bugs.webkit.org/show_bug.cgi?id=76221
-
-        Reviewed by Eric Seidel.
-        
-        Use optparse's OptionGroup mechanism to logically group NRWT's options,
-        providing a better experience when scanning all the options.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-
-2012-02-10  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        [Qt][WK2] Refactor on Qt5 Layout tests' structure
-        https://bugs.webkit.org/show_bug.cgi?id=77450
-
-        Reviewed by Csaba Osztrogonác.
-
-        Fix the scripts and related unittest due to the rename of qt-wk2 and qt-wk1
-        to qt-5.0-wk2 and qt-5.0-wk1.
-
-        * Scripts/old-run-webkit-tests:
-        (buildPlatformResultHierarchy):
-        (readSkippedFiles):
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort._wk2_port_name):
-        (QtPort._skipped_file_search_paths):
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        (QtPortTest.test_baseline_search_path):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._wk2_port_name):
-
-2012-02-09  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] EWS command-line option to run the tests
-        https://bugs.webkit.org/show_bug.cgi?id=78211
-
-        Reviewed by Adam Barth.
-
-        New --run-tests option (defaults to False) for the EWS commands.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (AbstractEarlyWarningSystem):
-        (AbstractEarlyWarningSystem.__init__):
-        (AbstractEarlyWarningSystem.review_patch):
-        (ChromiumLinuxEWS):
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-        (EarlyWarningSytemTest._test_builder_ews):
-
-2012-02-09  Eric Seidel  <eric@webkit.org>
-
-        Rename compare_text and compare_audio to make it clear that they're !=
-        https://bugs.webkit.org/show_bug.cgi?id=78301
-
-        Reviewed by Adam Barth.
-
-        I also removed the maybe_create_directory function which was redundant.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.set_up_run):
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer.py:
-        (TestResultWriter._make_output_directory):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.do_text_results_differ):
-        (Port.do_audio_results_differ):
-        (Port.diff_text):
-        (Port.driver_name):
-        (Port.skips_perf_test):
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        (WinPort.do_text_results_differ):
-        * Scripts/webkitpy/layout_tests/port/win_unittest.py:
-        (WinPortTest.test_do_text_results_differ):
-        * Scripts/webkitpy/layout_tests/servers/apache_http_server.py:
-        (LayoutTestApacheHttpd.__init__):
-        * Scripts/webkitpy/layout_tests/servers/http_server_base.py:
-        (HttpServerBase.__init__):
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests.py:
-        (Rebaseliner._diff_baselines):
-
-2012-02-09  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] Add DRT support for modal dialogs
-        https://bugs.webkit.org/show_bug.cgi?id=53600
-
-        Reviewed by Martin Robinson.
-
-        Implement the modal dialogs handling in DumpRenderTree and GtkLauncher.
-        Most significantly, when creating a new web view in GtkLauncher, the window
-        of the web view opener is passed around. In DumpRenderTree, the window of
-        the main web view is always considered as the opener. This is required so
-        the modal dialog's toplevel can be made transient for the opener's toplevel.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webViewRunModalDialog):
-        (createWebView):
-        * GtkLauncher/main.c:
-        (createWebViewCb):
-        (runModalDialogCb):
-        (createBrowser):
-        (createWindow):
-        (main):
-
-2012-02-09  Zan Dobersek  <zandobersek@gmail.com>
-
-        [Gtk] security/set-form-autocomplete-attribute.html fails
-        https://bugs.webkit.org/show_bug.cgi?id=78261
-
-        Reviewed by Martin Robinson.
-
-        Use the new helper in DumpRenderTreeSupportGtk to properly
-        test whether an element performs autocompletion.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::elementDoesAutoCompleteForElementWithId):
-
-2012-02-09  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Enable mock scrollbars for compositing layout tests
-        https://bugs.webkit.org/show_bug.cgi?id=78299
-
-        Reviewed by Dirk Pranke.
-
-        This enables mock scrollbars by default for compositing tests. These pixel tests are intended to test the
-        compositor behavior, not native theming, and having real scrollbars causes us to have to maintain significantly
-        more pngs than we should and expose weird alpha bugs in our theming that doesn't impact real users.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::runFileTest):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-        (WebPreferences):
-
-2012-02-09  Eric Seidel  <eric@webkit.org>
-
-        Remove more uses of "os" from our webkitpy code
-        https://bugs.webkit.org/show_bug.cgi?id=78292
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/checkout/checkout_mock.py:
-        (MockCheckout.__init__):
-        (MockCheckout.is_path_to_changelog):
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        (MockFileSystem._split):
-        * Scripts/webkitpy/common/system/zipfileset_unittest.py:
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/tool/bot/queueengine.py:
-        * Scripts/webkitpy/tool/bot/sheriff_unittest.py:
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-        * Scripts/webkitpy/tool/commands/rebaselineserver.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot_unittest.py:
-        * Scripts/webkitpy/tool/commands/upload.py:
-        (CreateBug.prompt_for_bug_title_and_comment):
-        * Scripts/webkitpy/tool/servers/reflectionhandler.py:
-        * Scripts/webkitpy/tool/steps/attachtobug.py:
-        (AttachToBug.run):
-        * Scripts/webkitpy/tool/steps/checkstyle.py:
-        * Scripts/webkitpy/tool/steps/cleanworkingdirectory.py:
-        * Scripts/webkitpy/tool/steps/commit_unittest.py:
-        * Scripts/webkitpy/tool/steps/editchangelog.py:
-        * Scripts/webkitpy/tool/steps/preparechangelog.py:
-        * Scripts/webkitpy/tool/steps/preparechangelog_unittest.py:
-        (PrepareChangeLogTest.test_ensure_bug_url):
-        * Scripts/webkitpy/tool/steps/preparechangelogfordepsroll.py:
-        * Scripts/webkitpy/tool/steps/preparechangelogforrevert.py:
-        * Scripts/webkitpy/tool/steps/updatechangelogswithreviewer.py:
-        * Scripts/webkitpy/tool/steps/validatereviewer.py:
-
-2012-02-09  Eric Seidel  <eric@webkit.org>
-
-        Remove the cr-mac-ews (it's long been dead)
-        https://bugs.webkit.org/show_bug.cgi?id=78267
-
-        Reviewed by Adam Barth.
-
-        * QueueStatusServer/model/queues.py:
-        (Queue):
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (ChromiumWindowsEWS):
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-        (EarlyWarningSytemTest._test_builder_ews):
-        (EarlyWarningSytemTest._test_testing_ews):
-
-2012-02-09  Dirk Pranke  <dpranke@chromium.org>
-
-        some tests in webkitpy are being run three times
-        https://bugs.webkit.org/show_bug.cgi?id=78283
-
-        Reviewed by Ryosuke Niwa.
-
-        It turns out that if you import a class derived from
-        unittest.TestCase as a base name (e.g., from ... import ChangeLogTest),
-        the unittest framework treats it as if the class was defined in
-        the file (as well in the original file). This led us to running
-        the tests in ChangeLogTest three times.
-
-        * Scripts/webkitpy/tool/steps/preparechangelog_unittest.py:
-        (PrepareChangeLogTest):
-        * Scripts/webkitpy/tool/steps/preparechangelogforrevert_unittest.py:
-        (_assert_message_for_revert_output):
-
-2012-02-09  Adam Barth  <abarth@webkit.org>
-
-        Remove extraneous line in previous patch.  I forgot to remove this
-        before landing.
-
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (DriverProxy.start):
-
-2012-02-09  Adam Barth  <abarth@webkit.org>
-
-        run-perf-tests should have an option to pause before running tests so we can attach Instruments
-        https://bugs.webkit.org/show_bug.cgi?id=78271
-
-        Reviewed by Ryosuke Niwa.
-
-        This lets me attach instruments to profile the performance of the test.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumDriver.start):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.start):
-        (DriverProxy.start):
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        (ServerProcess.start):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestDriver.start):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver.start):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (get_tests_run.RecordingTestDriver.start):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._parse_args):
-        (PerfTestsRunner._run_tests_set):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (start):
-        (test_run_test_set_kills_drt_per_run.TestDriverWithStopCount):
-        (test_run_test_set_kills_drt_per_run):
-        (test_run_test_set_kills_drt_per_run.TestDriverWithStartCount):
-        (test_run_test_set_kills_drt_per_run.TestDriverWithStartCount.start):
-
-2012-02-09  Adam Barth  <abarth@webkit.org>
-
-        run-perf-tests --chromium should run the chromium port
-        https://bugs.webkit.org/show_bug.cgi?id=78266
-
-        Reviewed by Ryosuke Niwa.
-
-        This patch makes run-perf-tests work more like run-webkit-tests.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._parse_args):
-
-2012-02-09  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        [Qt][WK2] run-webkit-tests --qt  crashes if WEBKIT_TESTFONTS is not set
-        https://bugs.webkit.org/show_bug.cgi?id=77466
-
-        Reviewed by Dirk Pranke.
-
-        Replicate the behavior of old-run-webkit-tests and check if WEBKIT_TESTFONTS
-        is set or if we should raise an error. A unit test was added.
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort.operating_system):
-        (QtPort):
-        (QtPort.check_sys_deps):
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        (QtPortTest.test_operating_system):
-        (QtPortTest):
-        (QtPortTest.test_check_sys_deps):
-
-2012-02-09  Eric Seidel  <eric@webkit.org>
-
-        Rename ports.WebKitPort to DeprecatedPort and make it stop being all class methods
-        https://bugs.webkit.org/show_bug.cgi?id=78263
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/config/ports.py:
-        (DeprecatedPort):
-        (DeprecatedPort.name):
-        (DeprecatedPort.flag):
-        (DeprecatedPort.script_path):
-        (DeprecatedPort.script_shell_command):
-        (DeprecatedPort.port):
-        (DeprecatedPort.makeArgs):
-        (DeprecatedPort.update_webkit_command):
-        (DeprecatedPort.check_webkit_style_command):
-        (DeprecatedPort.prepare_changelog_command):
-        (DeprecatedPort.build_webkit_command):
-        (DeprecatedPort.run_javascriptcore_tests_command):
-        (DeprecatedPort.run_webkit_unit_tests_command):
-        (DeprecatedPort.run_webkit_tests_command):
-        (DeprecatedPort.run_python_unittests_command):
-        (DeprecatedPort.run_perl_unittests_command):
-        (DeprecatedPort.layout_tests_results_path):
-        (MacPort):
-        (WinPort):
-        (GtkPort):
-        (GtkPort.build_webkit_command):
-        (GtkPort.run_webkit_tests_command):
-        (QtPort):
-        (QtPort.build_webkit_command):
-        (EflPort):
-        (EflPort.build_webkit_command):
-        (ChromiumPort):
-        (ChromiumPort.update_webkit_command):
-        (ChromiumPort.build_webkit_command):
-        (ChromiumPort.run_webkit_tests_command):
-        (ChromiumPort.run_javascriptcore_tests_command):
-        (ChromiumXVFBPort):
-        (ChromiumXVFBPort.run_webkit_tests_command):
-        * Scripts/webkitpy/common/config/ports_unittest.py:
-        (DeprecatedPortTest):
-        (DeprecatedPortTest.test_mac_port):
-        (DeprecatedPortTest.test_gtk_port):
-        (DeprecatedPortTest.test_qt_port):
-        (DeprecatedPortTest.test_chromium_port):
-        (DeprecatedPortTest.test_chromium_xvfb_port):
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (AbstractEarlyWarningSystem.__init__):
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-        * Scripts/webkitpy/tool/main.py:
-        (WebKitPatch):
-        (WebKitPatch.handle_global_options):
-        * Scripts/webkitpy/tool/steps/abstractstep.py:
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-        (StepsTest.test_runtests_args):
-
-2012-02-09  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] always initialize makeArgs in buildChromiumNinja
-        https://bugs.webkit.org/show_bug.cgi?id=78231
-
-        Reviewed by Tony Gentilcore.
-
-        * Scripts/webkitdirs.pm:
-        (buildChromiumNinja):
-
-2012-02-09  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Show url of current hovered link in MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=78098
-
-        Reviewed by Martin Robinson.
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (webViewMouseTargetChanged): Check whether hit test result is a
-        link and use the url to update the status bar text.
-        (browserWindowConstructed): Connect to
-        WebKitWebView::mouse-target-changed signal.
-
-2012-02-09  Rob Buis  <rbuis@rim.com>
-
-        [BlackBerry] Upstream DumpRenderTreeBlackBerry
-        https://bugs.webkit.org/show_bug.cgi?id=78042
-
-        Reviewed by Antonio Gomes.
-
-        Upstream final part of our DRT implementation.
-
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp: Added.
-        * DumpRenderTree/blackberry/PNGImageEncoder.cpp: Added.
-        * DumpRenderTree/blackberry/PNGImageEncoder.h: Added.
-        * DumpRenderTree/blackberry/PixelDumpSupportBlackBerry.cpp: Added.
-        * DumpRenderTree/blackberry/PixelDumpSupportBlackBerry.h: Added.
-
-2012-02-09  Ryosuke Niwa  <rniwa@webkit.org>
-
-        kill-old-processes should kill gcc and clang
-        https://bugs.webkit.org/show_bug.cgi?id=78189
-
-        Reviewed by Eric Seidel.
-
-        Added a bunch of processes names of gcc and clang to the list.
-
-        * BuildSlaveSupport/kill-old-processes:
-
-2012-02-07  MORITA Hajime  <morrita@google.com>
-
-        Replacement text should be available from the marker.
-        https://bugs.webkit.org/show_bug.cgi?id=77934
-
-        Made the mock requestCheckingOfText() implementation to return
-        a replacement text for each misspelled word if available.
-
-        Reviewed by Kent Tamura.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::finishLastTextCheck):
-
-2012-02-08  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        [Qt][DRT] DumpRenderTreeQt should support --no-timeout and --timeout options
-        https://bugs.webkit.org/show_bug.cgi?id=78146
-
-        Reviewed by Ryosuke Niwa.
-
-        Our DumpRenderTree should support --no-timeout and --timeout options in order
-        to be able to use run-perf-tests and have a Performance Bot.
-        This patch adds setTimeout and setShouldTimeout functions to our LayoutTestController
-        and the necessary code to handle such command line arguments to our DumpRenderTree.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::setTimeout):
-        (WebCore):
-        (WebCore::DumpRenderTree::setShouldTimeout):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        (DumpRenderTree):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::waitUntilDone):
-        (LayoutTestController::notifyDone):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController::setTimeout):
-        (LayoutTestController::setShouldTimeout):
-        (LayoutTestController):
-        * DumpRenderTree/qt/main.cpp:
-        (isOption):
-        (printUsage):
-        (main):
-
-2012-02-08  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Rubber-stamped by Martin Robinson.
-
-        * gtk/common.py:
-        (get_build_path): Move test for current directory being a valid
-        directory up so it takes precedence over WebKitBuild/Release and
-        WebKitBuild/Debug when they exist as well.
-
-2012-02-08  Gustavo Noronha Silva  <gns@gnome.org>
-
-        [GTK] doc rebasing does not respect DESTDIR
-        https://bugs.webkit.org/show_bug.cgi?id=78177
-
-        Reviewed by Martin Robinson.
-
-        * GNUmakefile.am: Pass DESTDIR on to generate-gtkdoc, when
-        calling it for rebasing.
-        * gtk/generate-gtkdoc:
-        (get_common_options): Handle the new --virtual-root option.
-        * gtk/gtkdoc.py:
-        (GTKDoc.rebase_installed_docs): If a virtual-root has been given, pass
-        it on to gtkdoc-rebase as dest-dir, and prefix the htmldir with it.
-
-2012-02-08  Adam Barth  <abarth@webkit.org>
-
-        Remove Python 2.5 support from WebKit
-        https://bugs.webkit.org/show_bug.cgi?id=71593
-
-        Reviewed by Eric Seidel.
-
-        This is the last vestige of our Python 2.5 support.
-
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        (AbstractQueueTest.test_log_from_script_error_for_upload):
-
-2012-02-08  Adam Barth  <abarth@webkit.org>
-
-        version_check.py should inform users that we don't support Python 2.5 anymore
-        https://bugs.webkit.org/show_bug.cgi?id=78179
-
-        Reviewed by Eric Seidel.
-
-        We don't support Python 2.5 anymore.
-
-        * Scripts/webkitpy/common/version_check.py:
-
-2012-02-08  Adam Barth  <abarth@webkit.org>
-
-        test_configuration.py shouldn't re-implement itertools
-        https://bugs.webkit.org/show_bug.cgi?id=78178
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/layout_tests/models/test_configuration.py:
-        (TestConfigurationConverter.to_specifiers_list):
-        (TestConfigurationConverter.to_specifiers_list.try_collapsing):
-        (TestConfigurationConverter.to_specifiers_list.try_abbreviating):
-        (TestConfigurationConverter):
-
-2012-02-08  Adam Barth  <abarth@webkit.org>
-
-        webkitpy should reply upon the multiprocessing package existing
-        https://bugs.webkit.org/show_bug.cgi?id=78176
-
-        Reviewed by Eric Seidel.
-
-        Now that we don't support Python 2.5, this import can't fail.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        (get):
-        (_Process):
-        (_Process.__init__):
-        (_Process.run):
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker_unittest.py:
-        (FunctionTests.test_get__processes):
-        (MultiProcessBrokerTests.setUp):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.__init__):
-        (Port.default_worker_model):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        (ChromiumMacPort.check_build):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (PortTestCase.test_default_worker_model):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-
-2012-02-08  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Unreviewed typo fix that makes docs build again for the gtk2-based
-        library.
-
-        * gtk/generate-gtkdoc:
-
-2012-02-08  Adam Barth  <abarth@webkit.org>
-
-        Don't re-implement ZipFile.extractall
-        https://bugs.webkit.org/show_bug.cgi?id=78173
-
-        Reviewed by Eric Seidel.
-
-        We can use ZipFile.extractall now that we don't support Python 2.5.
-
-        * Scripts/webkitpy/common/system/autoinstall.py:
-        (AutoInstaller._extract_targz):
-        (AutoInstaller._unzip):
-
-2012-02-08  Adam Barth  <abarth@webkit.org>
-
-        Remove the ospath compat shim from webkitpy
-        https://bugs.webkit.org/show_bug.cgi?id=78170
-
-        Reviewed by Eric Seidel.
-
-        We no longer need this compat shim now that we don't support Python 2.5.
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-        * Scripts/webkitpy/common/system/filesystem.py:
-        (FileSystem.relpath):
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        (MockFileSystem.relpath):
-        * Scripts/webkitpy/common/system/ospath.py: Removed.
-        * Scripts/webkitpy/common/system/ospath_unittest.py: Removed.
-
-2012-02-08  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Build fix attempt after r107053.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (test_collect_tests):
-
-2012-02-08  Adam Barth  <abarth@webkit.org>
-
-        Remove simplejson because it's no longer used by webkitpy
-        https://bugs.webkit.org/show_bug.cgi?id=78164
-
-        Reviewed by Eric Seidel.
-
-        All the importers of this code were removed in a previous patch.
-
-        * Scripts/webkitpy/thirdparty/simplejson: Removed.
-        * Scripts/webkitpy/thirdparty/simplejson/LICENSE.txt: Removed.
-        * Scripts/webkitpy/thirdparty/simplejson/README.txt: Removed.
-        * Scripts/webkitpy/thirdparty/simplejson/__init__.py: Removed.
-        * Scripts/webkitpy/thirdparty/simplejson/_speedups.c: Removed.
-        * Scripts/webkitpy/thirdparty/simplejson/decoder.py: Removed.
-        * Scripts/webkitpy/thirdparty/simplejson/encoder.py: Removed.
-        * Scripts/webkitpy/thirdparty/simplejson/jsonfilter.py: Removed.
-        * Scripts/webkitpy/thirdparty/simplejson/ordered_dict.py: Removed.
-        * Scripts/webkitpy/thirdparty/simplejson/scanner.py: Removed.
-        * Scripts/webkitpy/thirdparty/simplejson/tool.py: Removed.
-
-2012-02-08  Adam Barth  <abarth@webkit.org>
-
-        webkitpy still imports simplejson
-        https://bugs.webkit.org/show_bug.cgi?id=78161
-
-        Reviewed by Eric Seidel.
-
-        We no longer support Python 2.5, so we can rely upon Python's built-in
-        JSON package.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        * Scripts/webkitpy/common/net/resultsjsonparser.py:
-        * Scripts/webkitpy/layout_tests/controllers/test_expectations_editor.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator_unittest.py:
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        * Scripts/webkitpy/style/checkers/jsonchecker.py:
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-        * Scripts/webkitpy/tool/servers/rebaselineserver_unittest.py:
-        * Scripts/webkitpy/tool/servers/reflectionhandler.py:
-
-2012-02-08  Gustavo Noronha Silva  <gns@gnome.org>
-
-        [GTK] Fails to build docs with non-standard build directories
-        https://bugs.webkit.org/show_bug.cgi?id=78118
-
-        * gtk/common.py:
-        (get_build_path): add comment to document changes done in r107098,
-        as requested by the reviewer and forgotten by me.
-
-2012-02-08  Adam Barth  <abarth@webkit.org>
-
-        Stop importing with_statement from the mysterious future
-        https://bugs.webkit.org/show_bug.cgi?id=78156
-
-        Reviewed by Eric Seidel.
-
-        The future is now!  (Well, at least 2008, when Python 2.6 was released,
-        is no longer the __future__.)
-
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-        * Scripts/webkitpy/common/checkout/checkout_unittest.py:
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-        * Scripts/webkitpy/common/net/credentials_unittest.py:
-        * Scripts/webkitpy/common/net/file_uploader.py:
-        * Scripts/webkitpy/common/newstringio_unittest.py:
-        * Scripts/webkitpy/common/system/autoinstall.py:
-        * Scripts/webkitpy/common/system/crashlogs.py:
-        * Scripts/webkitpy/common/system/fileset.py:
-        * Scripts/webkitpy/common/system/filesystem.py:
-        * Scripts/webkitpy/common/system/filesystem_unittest.py:
-        * Scripts/webkitpy/common/system/path.py:
-        * Scripts/webkitpy/common/thread/threadedmessagequeue.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (of):
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        * Scripts/webkitpy/style/filereader_unittest.py:
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/to_be_moved/update_webgl_conformance_tests.py:
-        * Scripts/webkitpy/tool/commands/analyzechangelog.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/servers/reflectionhandler.py:
-        * Scripts/webkitpy/tool/steps/preparechangelogforrevert_unittest.py:
-
-2012-02-08  Rob Buis  <rbuis@rim.com>
-
-        [BlackBerry] Upstream DumpRenderTreeBlackBerry
-        https://bugs.webkit.org/show_bug.cgi?id=78042
-
-        Reviewed by Antonio Gomes.
-
-        Upstream more parts of our DRT implementation.
-
-        * DumpRenderTree/blackberry/AccessibilityControllerBlackBerry.cpp: Added.
-        * DumpRenderTree/blackberry/AccessibilityUIElementBlackBerry.cpp: Added.
-        * DumpRenderTree/blackberry/EventSender.cpp: Added.
-        * DumpRenderTree/blackberry/EventSender.h: Added.
-        * DumpRenderTree/blackberry/GCControllerBlackBerry.cpp: Added.
-        * DumpRenderTree/blackberry/WorkQueueItemBlackBerry.cpp: Added.
-
-2012-02-08  Dirk Pranke  <dpranke@chromium.org>
-
-        check-webkit-style failing with "Path does not exist."
-        https://bugs.webkit.org/show_bug.cgi?id=77873
-
-        Reviewed by Ojan Vafai.
-
-        This change fixes the way the style checker determines which
-        Port class to use for a given test_expectations.txt path; the
-        previous version used a heuristic that didn't really work in the
-        first place.
-
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-        (TestExpectationsChecker._determine_port_from_expectations_path):
-        (TestExpectationsChecker.__init__):
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-        (TestExpectationsTestCase._expect_port_for_expectations_path):
-        (TestExpectationsTestCase.test_determine_port_from_expectations_path):
-
-2012-02-08  Fehér Zsolt  <feherzs@inf.u-szeged.hu>
-
-        nrwt: make --skip-pixel-test-if-no-baseline option
-        https://bugs.webkit.org/show_bug.cgi?id=70484
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner.__init__):
-        (SingleTestRunner._should_fetch_expected_checksum):
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        (Worker.handle_test_list):
-        * Scripts/webkitpy/layout_tests/models/test_input.py:
-        (TestInput.__init__):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver.cmd_line):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (_set_up_derived_options):
-        (parse_args):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_skip_pixel_test_if_no_baseline_option):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::TestController):
-        (WTR::TestController::initialize):
-        (WTR::TestController::runTest):
-        * WebKitTestRunner/TestController.h:
-        (TestController):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::TestInvocation):
-        (WTR::TestInvocation::setIsPixelTest):
-        * WebKitTestRunner/TestInvocation.h:
-        (WTR::TestInvocation::setSkipPixelTestOption):
-        (TestInvocation):
-
-2012-02-08  Rob Buis  <rbuis@rim.com>
-
-        [BlackBerry] Upstream DumpRenderTreeBlackBerry
-        https://bugs.webkit.org/show_bug.cgi?id=78042
-
-        Reviewed by Antonio Gomes.
-
-        Add implementation for our DumpRenderTree solution.
-
-        * DumpRenderTree/blackberry/DumpRenderTree.cpp: Added.
-        * DumpRenderTree/blackberry/DumpRenderTreeBlackBerry.h: Added.
-
-2012-02-08  Antti Koivisto  <antti@apple.com>
-
-        REGRESSION (r106681): Null check missing in [WebFrame(WebInternal) _typingStyle]
-        https://bugs.webkit.org/show_bug.cgi?id=78080
-
-        Reviewed by Andreas Kling, Darin Adler and Dan Bernstein.
-        
-        Add API test.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/mac/TypingStyleCrash.mm: Added.
-        (TestWebKitAPI):
-        (TestWebKitAPI::TEST):
-
-2012-02-08  Gustavo Noronha Silva  <gns@gnome.org>
-
-        [GTK] Fails to build docs with non-standard build directories
-        https://bugs.webkit.org/show_bug.cgi?id=78118
-
-        Reviewed by Martin Robinson.
-
-        * gtk/common.py:
-        (get_build_path): also try the current directory as a valid build
-        dir, which makes non-standard build directories such as build-2.0
-        and build-3.0 work
-
-2012-02-08  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Open links in a new window when clicking with the middle button in MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=78099
-
-        Reviewed by Martin Robinson.
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (webViewDecidePolicy): Check whether it's a link clicked with the
-        middle mouse button and load the request in a new window.
-        (browserWindowConstructed): Connect to
-        WebKitWebView::decide-policy signal.
-
-2012-02-08  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Revert a part of the change in r106687 as a build fix.
-
-        Since Chromium port doesn't checkout the entire WebKit trunk,
-        we can't run "svn info" on webkit_base.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.repository_paths):
-
-2012-02-07  Ryosuke Niwa  <rniwa@webkit.org>
-
-        run-perf-tests doesn't recognize paths that start with PerformanceTests
-        https://bugs.webkit.org/show_bug.cgi?id=78012
-
-        Reviewed by Adam Barth.
-
-        Use resolve paths using filesystem.relpath before passing it to find_files.find.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner):
-        (PerfTestsRunner._collect_tests):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (test_collect_tests):
-        (test_collect_tests.add_file):
-
-2012-02-07  Justin Novosad  <junov@chromium.org>
-
-        [Chromium] add option for 2d canvas defered rendering to DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=78039
-
-        Reviewed by Stephen White.
-
-        Adding the --enable-deferred-2d-canvas switch to DumpRenderTree
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::resetWebSettings):
-        (TestShell::runFileTest):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::setDeferred2dCanvasEnabled):
-        (TestShell):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-        (WebPreferences):
-
-2012-02-07  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        [CMAKE] Use *bin* and *lib* directories for executable and libraries.
-        https://bugs.webkit.org/show_bug.cgi?id=77928
-
-        Reviewed by Daniel Bates.
-
-        CMake has used *Programs* directory for executable. In addition, shared libraries are being
-        built in source directory. It is better to set common places in order to maintain executable
-        and libraries. *bin* is for executable and *lib* is for library.
-
-        * DumpRenderTree/efl/CMakeLists.txt:
-        * EWebLauncher/CMakeLists.txt:
-        * Scripts/run-launcher:
-        * Scripts/webkitdirs.pm:
-        (jscProductDir):
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort._path_to_driver):
-        (EflPort._path_to_image_diff):
-
-2012-02-07  Adam Klein  <adamk@chromium.org>
-
-        Add JSC support for delivering mutations when the outermost script context exits
-        https://bugs.webkit.org/show_bug.cgi?id=70289
-
-        Reviewed by Eric Seidel.
-
-        * DumpRenderTree/mac/EventSendingController.mm: Add support for
-        eventSender.scheduleAsynchronousKeyDown.
-        (+[EventSendingController isSelectorExcludedFromWebScript:]):
-        (+[EventSendingController webScriptNameForSelector:]):
-        (-[EventSendingController keyDownWrapper:withModifiers:withLocation:]):
-        (-[EventSendingController scheduleAsynchronousKeyDown:withModifiers:withLocation:]):
-        * Scripts/build-webkit: Properly alphabetize --mutation-observers in the --help output.
-
-2012-02-07  Chris Rogers  <crogers@google.com>
-
-        Add Chris Rogers to reviewers section
-        https://bugs.webkit.org/show_bug.cgi?id=78016
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-02-07  Nikolas Zimmermann  <nzimmermann@rim.com>
-
-        layoutTestController.display() is flaky for SVG tests
-        https://bugs.webkit.org/show_bug.cgi?id=78021
-
-        Reviewed by Dan Bernstein.
-
-        Fix race condition in repaint rect tracking. When running a test using the repaint.js
-        harness right after a test starting with "svg/W3C-SVG-1.1" the repaint test will fail,
-        the gray overlay isn't contained in the pixel dump anymore. This is because of a specific
-        hack that forces 480x360 instead of 800x600 pixel test dumps for any test starting with
-        svg/W3C-SVG-1.1. The resizing of the web view was done when dumping the render tree, after
-        the repaint test already run, thus invalidating the previously tracked repaint rects.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dump):
-        (runTest):
-
-2012-02-07  Hans Wennborg  <hans@chromium.org>
-
-        Chromium: remove WebSpeechInputResult::set
-        https://bugs.webkit.org/show_bug.cgi?id=77977
-
-        Reviewed by Darin Fisher.
-
-        It was renamed to assign() in r106475.
-
-        * DumpRenderTree/chromium/MockWebSpeechInputController.cpp:
-        (makeRectResult):
-
-2012-02-07  Allan Sandfeld Jensen  <allan.jensen@nokia.com>
-
-        [Qt] Give emulated touch-point a radius
-        https://bugs.webkit.org/show_bug.cgi?id=77985
-        
-        Increase the radius of touch-point and show the actual size of the touch point in the touch-point mockup.
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::updateVisualMockTouchPoints):
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::notify):
-        * MiniBrowser/qt/qml/MockTouchPoint.qml:
-
-2012-02-07  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        [GTK] Include gdk-pixbuf in the jhbuild modules
-        https://bugs.webkit.org/show_bug.cgi?id=77980
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * gtk/jhbuild.modules: Add gdk-pixbuf to the jhbuild moduleset.
-
-2012-02-07  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Prevent early test termination with newer Qt 5
-        https://bugs.webkit.org/show_bug.cgi?id=77945
-
-        Reviewed by Csaba Osztrogonác.
-
-        QTBUG-24120 tracks a regression in Qt that would make layout tests
-        terminate early. This patch works around it in a Qt 4 + 5 safe manner
-        by disabling the quitOnLastWindowClosed feature, which we don't want/need
-        for DRT anyway.
-
-        * DumpRenderTree/qt/main.cpp:
-        (main): Don't quit on last window closed.
-
-2012-02-06  Martin Robinson  <mrobinson@igalia.com>
-
-        Fix some miscellaneous 'make dist' error for WebKitGTK+.
-
-        * MiniBrowser/gtk/GNUmakefile.am: The MiniBrowser generated
-        files should not be distributed.
-
-2012-02-02  Hajime Morrita  <morrita@chromium.org>
-
-        [PerformanceTests] Each Dromaeo test needs its landing html.
-        https://bugs.webkit.org/show_bug.cgi?id=77504
-
-        Reviewed by Ryosuke Niwa.
-
-        Added an ignorable pattern which happens in some Dromaeo tests.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner):
-
-2012-02-06  Kalev Lember  <kalevlember@gmail.com>
-
-        [GTK] Add missing pango include dir to fix build
-        https://bugs.webkit.org/show_bug.cgi?id=77832
-
-        Reviewed by Martin Robinson.
-
-        * GNUmakefile.am: Added $(PANGO_CFLAGS) to libWebCoreInternals_la_CPPFLAGS.
-
-2012-02-06  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Fix remaining errors in GTK+ WebKit2 API
-        https://bugs.webkit.org/show_bug.cgi?id=77890
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Verify that WebKit2 GTK+ test files are not skipped during style checks.
-        Skip soup_server_new when checking for NULL versus 0 usage.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-        (CheckerDispatcherSkipTest.test_should_skip_with_warning):
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (check_for_null):
-
-2012-02-06  Eric Seidel  <eric@webkit.org>
-
-        webkit-patch apply-from-bug should be able to apply non-reviewed patches
-        https://bugs.webkit.org/show_bug.cgi?id=77883
-
-        Reviewed by Adam Barth.
-
-        This is very helpful if you use bugzilla as a replacement for git-stash.
-        Makes it simpler to re-apply the patch w/o having to look up the patch id.
-
-        * Scripts/webkitpy/tool/commands/download.py:
-        (ProcessBugsMixin._fetch_list_of_patches_to_process):
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        (DownloadCommandsTest.test_apply_from_bug):
-
-2012-02-06  Philippe Normand  <pnormand@igalia.com>
-
-        [webkitpy] cpp style-checker complains about readability/naming in GStreamer elements source files
-        https://bugs.webkit.org/show_bug.cgi?id=77866
-
-        Reviewed by Martin Robinson.
-
-        * Scripts/webkitpy/style/checker.py: Ignore readability/naming
-        errors in some gstreamer source code files defining new GStreamer elements.
-        * Scripts/webkitpy/style/checker_unittest.py:
-        (GlobalVariablesTest.test_path_rules_specifier):
-
-2012-02-06  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Make sure html_dir exists before calling gtkdoc-rebase
-        https://bugs.webkit.org/show_bug.cgi?id=77869
-
-        Reviewed by Philippe Normand.
-
-        * gtk/gtkdoc.py:
-        (GTKDoc.rebase_installed_docs): Check html_dir exists.
-
-2012-02-03  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        [Qt] Don't version QtWebKit.experimental.
-        https://bugs.webkit.org/show_bug.cgi?id=77739
-
-        Reviewed by Tor Arne Vestbø.
-
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-
-2012-02-06  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Fix several gtkdoc-fixxref warnings
-        https://bugs.webkit.org/show_bug.cgi?id=77613
-
-        Reviewed by Martin Robinson.
-
-        * gtk/generate-gtkdoc:
-        (get_webkit1_options): Add webkitspellcheckerenchant.* to the list
-        of ignored files, since it's private.
-        * gtk/gtkdoc.py:
-        (GTKDoc._ignored_files_basenames): Helper function that returns a
-        string with the list of ignored files basenames separated by a
-        spaces, as expected by several gtkdoc commands.
-        (GTKDoc._run_gtkdoc_scan): Use _ignored_files_basenames for
-        --ignore-headers option.
-        (GTKDoc._run_gtkdoc_mkdb): Use _ignored_files_basenames for
-        --ignore-files option.
-
-2012-02-06  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Fix xrefs after installing API documentation
-        https://bugs.webkit.org/show_bug.cgi?id=77551
-
-        Reviewed by Martin Robinson.
-
-        * GNUmakefile.am: Call generate-gtkdoc --rebase after installing
-        api docs.
-        * gtk/common.py:
-        (prefix_of_pkg_config_file): Get the prefix variable of the given
-        pkg-config file.
-        (gtk_version_of_pkg_config_file): Get the gtk version required by
-        the given pkg-config file.
-        * gtk/generate-gtkdoc: Add --rebase command line option to rebase
-        installed documentation.
-        (get_gtkdoc_module_paths): Get paths where API doc is installed
-        for the dependencies of the given pkg-config file.
-        (get_common_xref_deps): Get API doc directories of dependencies
-        common to WebKit1 and WebKit2.
-        (get_webkit2_options): Add cross_reference_deps option.
-        (get_webkit1_options): Ditto
-        (rebase_installed_docs): Helper function to create a generator for
-        the given pkg-config file and options and call rebase_installed_docs.
-        * gtk/gtkdoc.py:
-        (GTKDoc.__init__): Initialize cross_reference_deps.
-        (GTKDoc._run_gtkdoc_fixxref): Add API doc directories of
-        dependencies.
-        (GTKDoc.rebase_installed_docs): Call gtkdoc-rebase to fix xref
-        links of installed documentation.
-        (PkgConfigGTKDoc.__init__): Get the prefix from the pkg-config
-        file.
-
-2012-02-06  Sergio Villar Senin  <svillar@igalia.com>
-
-        Incorrect statistics shown when running run-webkit-tests with --repeat-each or --iterations
-        https://bugs.webkit.org/show_bug.cgi?id=77672
-
-        Reviewed by Dirk Pranke.
-
-        Test repetitions must be taken into account when working out
-        the statistics shown by run-webkit-tests.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.prepare_lists_and_print_output):
-        (Manager._print_result_summary):
-        * Scripts/webkitpy/layout_tests/models/result_summary.py:
-        (ResultSummary.__init__):
-        (ResultSummary.add):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_repeat_each_iterations_num_tests):
-
-2012-02-05  Dan Bernstein  <mitz@apple.com>
-
-        <rdar://problem/10809525> WebKit2’s WebFrameLoaderClient::shouldUseCredentialStorage() always returns true
-        https://bugs.webkit.org/show_bug.cgi?id=77823
-
-        Reviewed by Anders Carlsson.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage): Updated for the additional callback.
-
-2012-02-04  Dan Bernstein  <mitz@apple.com>
-
-        <rdar://problem/10660698> Clients cannot prevent caching of individual responses
-        https://bugs.webkit.org/show_bug.cgi?id=77822
-
-        Reviewed by Sam Weinig.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage): Updated for the additional callback.
-
-2012-02-04  Sam Weinig  <sam@webkit.org>
-
-        Add ability to send WKURLRequests in WebKit2 API user messages
-        https://bugs.webkit.org/show_bug.cgi?id=77819
-
-        Reviewed by Anders Carlsson.
-
-        Add testing for round-tripping WKTypes from the UIProcess,
-        to the WebProcess, and back.
-
-        - This commit adds a test fixture and tests for WKURLRequestRef, WKURLRef, and WKStringRef.
-          More can easily be added.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2/UserMessage.cpp: Added.
-        (TestWebKitAPI):
-        (WebKit2UserMessageRoundTripTest):
-        (TestWebKitAPI::WebKit2UserMessageRoundTripTest::WebKit2UserMessageRoundTripTest):
-        (TestWebKitAPI::WebKit2UserMessageRoundTripTest::didReceiveMessageFromInjectedBundle):
-        (TestWebKitAPI::WebKit2UserMessageRoundTripTest::didFinishLoadForFrame):
-        (TestWebKitAPI::WebKit2UserMessageRoundTripTest::setInjectedBundleClient):
-        (TestWebKitAPI::WebKit2UserMessageRoundTripTest::setPageLoaderClient):
-        (TestWebKitAPI::WebKit2UserMessageRoundTripTest::SetUp):
-        (TestWebKitAPI::WebKit2UserMessageRoundTripTest::roundTrip):
-        (TestWebKitAPI::TEST_F):
-        * TestWebKitAPI/Tests/WebKit2/UserMessage_Bundle.cpp: Added.
-        (TestWebKitAPI):
-        (UserMessageTest):
-        (TestWebKitAPI::UserMessageTest::UserMessageTest):
-        (TestWebKitAPI::UserMessageTest::didReceiveMessage):
-        * TestWebKitAPI/mac/PlatformWebViewMac.mm:
-        (TestWebKitAPI::PlatformWebView::resizeTo):
-        (TestWebKitAPI):
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        * TestWebKitAPI/win/TestWebKitAPIInjectedBundle.vcproj:
-
-2012-02-04  Dan Bernstein  <mitz@apple.com>
-
-        <rdar://problem/10772406> WKPreferences instances cannot be copied
-        https://bugs.webkit.org/show_bug.cgi?id=77816
-
-        Reviewed by Sam Weinig.
-
-        * TestWebKitAPI/Tests/WebKit2/WKPreferences.cpp:
-        (TestWebKitAPI::TEST):
-
-2012-02-04  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic's All Failure tab should let you examine and rebaseline expected failures
-        https://bugs.webkit.org/show_bug.cgi?id=77802
-
-        Reviewed by Eric Seidel.
-
-        This patch refactors our directory grouping code into base.js where it
-        can be shared between failures.js and notifications.js.  It then adds
-        an Examine action to each group of failures that triggers the "results"
-        view.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/failures.css:
-
-2012-02-04  Ojan Vafai  <ojan@chromium.org>
-
-        check-webkit-style is throwing an exception
-        https://bugs.webkit.org/show_bug.cgi?id=77744
-
-        Reviewed by David Levin.
-
-        If the test_list is None, then we don't need to check for unsupported
-        feature tests to skip.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._has_test_in_directories):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (test_skipped_tests_for_unsupported_features_empty_test_list):
-
-2012-02-03  Adam Barth  <abarth@webkit.org>
-
-        List of all failures in garden-o-matic should actually list all the failures
-        https://bugs.webkit.org/show_bug.cgi?id=77796
-
-        Reviewed by Eric Seidel.
-
-        This patch wires a bit more data into the new "All Failures" tab.  I've
-        also iterated on how we enable this experimental feature.  The tab is
-        still just a dumb list, but we'll make it smarter.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/garden-o-matic.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures.js:
-
-2012-02-03  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Windows build fix after r106692.
-
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_reference_files):
-
-2012-02-03  Beth Dakin  <bdakin@apple.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=77782
-        WebPageProxy::didNewFirstVisuallyNonEmptyLayout should is called more than 
-        once on some pages with frames
-        -and corresponding-
-        <rdar://problem/10798474>
-
-        Reviewed by Sam Weinig.
-
-        One new test.
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFrames.cpp: Added.
-        (TestWebKitAPI):
-        (TestWebKitAPI::didForceRepaint):
-        (TestWebKitAPI::didFinishLoadForFrame):
-        (TestWebKitAPI::didNewFirstVisuallyNonEmptyLayout):
-        (TestWebKitAPI::setPageLoaderClient):
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFrames_Bundle.cpp: Added.
-        (TestWebKitAPI):
-        (NewFirstVisuallyNonEmptyLayoutFramesTest):
-        (TestWebKitAPI::NewFirstVisuallyNonEmptyLayoutFramesTest::NewFirstVisuallyNonEmptyLayoutFramesTest):
-        (TestWebKitAPI::NewFirstVisuallyNonEmptyLayoutFramesTest::didCreatePage):
-        * TestWebKitAPI/Tests/WebKit2/lots-of-iframes.html: Added.
-
-2012-02-03  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: change exit() calls to sys.exit(), fix a leak in outputcapture
-        https://bugs.webkit.org/show_bug.cgi?id=77781
-
-        Reviewed by Eric Seidel.
-
-        This change fixes a couple of issues discovered while debugging
-        test-webkitpy; both calling exit() instead of sys.exit() --
-        which is discouraged in program code instead of the interpreter
-        -- and a particular usage of outputcapture were stdin to get whacked
-        and preventing debugging.
-       
-        This change introduces a couple of common _exit() methods that
-        will standardize how webkit-patch exit's, in case we need to do
-        something different in the future.
-
-        * Scripts/webkitpy/common/system/deprecated_logging.py:
-        (error):
-        * Scripts/webkitpy/common/system/outputcapture.py:
-        (OutputCapture.assert_outputs):
-        * Scripts/webkitpy/tool/bot/queueengine.py:
-        (QueueEngine.exit_after_handled_error):
-        * Scripts/webkitpy/tool/commands/abstractsequencedcommand.py:
-        (AbstractSequencedCommand.execute):
-        * Scripts/webkitpy/tool/commands/queues.py:
-        (StyleQueue.handle_script_error):
-        * Scripts/webkitpy/tool/commands/upload.py:
-        (MarkBugFixed.execute):
-        * Scripts/webkitpy/tool/multicommandtool.py:
-        (Command._exit):
-        * Scripts/webkitpy/tool/steps/abstractstep.py:
-        (AbstractStep._exit):
-        * Scripts/webkitpy/tool/steps/checkstyle.py:
-        (CheckStyle.run):
-        * Scripts/webkitpy/tool/steps/commit.py:
-        (Commit._check_test_expectations):
-        * Scripts/webkitpy/tool/steps/confirmdiff.py:
-        (ConfirmDiff.run):
-
-2012-02-03  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Perf bot build fix.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._generate_json):
-
-2012-02-03  Adam Barth  <abarth@webkit.org>
-
-        Add a blank "Expected Failures" tab to garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=77793
-
-        Reviewed by Eric Seidel.
-
-        This tab will help us explore and manage our expected failures.  The
-        tab is hidden by default via a new "experimental features" flag.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/garden-o-matic.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/onebar.css:
-        (#unexpected):
-        (#onebar.partytime #unexpected):
-
-2012-02-03  Lucas Forschler  <lforschler@apple.com>
-
-        update-webkit-support-libraries is broken with the change from http to https on developer.apple.com
-        https://bugs.webkit.org/show_bug.cgi?id=77785
-
-        Fix the build bots.
-        
-        Pass the -k and --sslv3 keys to make curl work with https on https://developer.apple.com
-
-        * Scripts/update-webkit-support-libs:
-        (downloadExpectedVersionNumber):
-
-2012-02-03  Lucas Forschler  <lforschler@apple.com>
-
-        Add a Mac Lion Performance bot.
-        https://bugs.webkit.org/show_bug.cgi?id=77765
-
-        Reviewed by Adam Roben.
-
-        This will update the master configuration in the following ways:
-            Add a new performance slave (apple-xseve-11)
-            Add a new Factory to download a build and run perf tests.
-            
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (DownloadAndPerfTestFactory):
-        (DownloadAndPerfTestFactory.__init__):
-
-2012-02-03  Dirk Pranke  <dpranke@chromium.org>
-
-        Extra TestWebKitAPI.gyp/TestWebKitAPI.target.chromium.mk in repository
-        https://bugs.webkit.org/show_bug.cgi?id=77752
-
-        Reviewed by James Robinson.
-
-        Delete unneeded file accidentally checked in in r106481.
-
-        * TestWebKitAPI/TestWebKitAPI.gyp/TestWebKitAPI.target.chromium.mk: Removed.
-
-2012-02-03  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Ref Tests should support plain SVG files
-        https://bugs.webkit.org/show_bug.cgi?id=77685
-
-        Reviewed by Tony Chang.
-
-        Don't assume reference files always use .html as the extension.
-        Instead, use the list of supported extension to look for -expected.* and -mismatch.*
-
-        Also fix various bugs in MockFileSystem and TestPort.
-
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        (MockFileSystem.isdir):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.reference_files):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_is_test_file):
-        (PortTest.test_reference_files):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestInstance.__init__):
-
-2012-02-03  Ryosuke Niwa  <rniwa@webkit.org>
-
-        perf-o-matic should store chromium svn revision
-        https://bugs.webkit.org/show_bug.cgi?id=77725
-
-        Reviewed by Dirk Pranke.
-
-        Report both WebKit and Chromium revisions to the graph server. Renamed test_repository_paths to
-        repository_paths since it's nothing to do with tests. Also refactored scm so that head_svn_revision
-        is implemented in terms of newly added svn_revision.
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        (Git.svn_revision):
-        * Scripts/webkitpy/common/checkout/scm/scm.py:
-        (SCM.head_svn_revision):
-        (SCM):
-        (SCM.svn_revision):
-        * Scripts/webkitpy/common/checkout/scm/scm_mock.py:
-        (MockSCM.svn_revision):
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-        (SVN.svn_revision):
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        (JSONLayoutResultsGenerator.__init__):
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        (JSONResultsGeneratorBase._insert_generic_metadata):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.repository_paths):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.repository_paths):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._generate_json):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (test_run_test_set_with_json_output):
-        (test_run_test_set_with_json_source):
-        (test_run_test_set_with_multiple_repositories):
-
-2012-02-03  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        [Qt] Split QQuickWebViewPrivate in two classes, for desktop and touch behavior.
-        https://bugs.webkit.org/show_bug.cgi?id=77632
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::sendTouchEvent):
-        (MiniBrowserApplication::handleUserOptions):
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-        (WindowOptions):
-        (WindowOptions::WindowOptions):
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-        * WebKitTestRunner/qt/main.cpp:
-        (main):
-        * qmake/mkspecs/features/default_post.prf:
-
-2012-02-03  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Replace GNU linker script for exports with export macros in WTF/JSC
-        https://bugs.webkit.org/show_bug.cgi?id=77723
-
-        Reviewed by Tor Arne Vestbø.
-
-        * Tools.pro: Compile WTR again on all platforms with WK2.
-
-2012-02-03  Sriram Neelakandan  <sriram.neelakandan@gmail.com>
-
-        Ensure that inspector disabled build works
-        https://bugs.webkit.org/show_bug.cgi?id=77604
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-02-02  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] add support for --makeargs to the ninja-based build
-        https://bugs.webkit.org/show_bug.cgi?id=77688
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitdirs.pm:
-        (buildChromiumNinja):
-
-2012-02-02  Eric Seidel  <eric@webkit.org>
-
-        Run tests in serial on SnowLeopard to avoid CFURLCache crashes
-        https://bugs.webkit.org/show_bug.cgi?id=75145
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.default_child_processes):
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        (test_operating_system):
-        (test_default_child_processes):
-
-2012-02-02  Dirk Pranke  <dpranke@chromium.org>
-
-       nrwt shouldn't blow up when there are errors in test_expectations.txt
-       https://bugs.webkit.org/show_bug.cgi?id=73603
-
-       Reviewed by Ojan Vafai.
-
-       This change removes the distinction between 'errors' and 'warnings'
-       in the test expectations parser. Now, any problem is a
-       'warning', and if we are linting the file, warnings become fatal (errors).
-
-        This will allow a normal run-webkit-tests run to proceed even if
-        there are bad lines.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (ParseError.__init__):
-        (ParseError.__str__):
-        (ParseError.__repr__):
-        (TestExpectationSerializer.to_string):
-        (TestExpectationParser._parse_modifiers):
-        (TestExpectationParser._parse_expectations):
-        (TestExpectationParser._check_modifiers_against_expectations):
-        (TestExpectationParser._tokenize):
-        (TestExpectationLine.__init__):
-        (TestExpectationLine.is_invalid):
-        (TestExpectationsModel.add_expectation_line):
-        (TestExpectationsModel._already_seen_better_match):
-        (TestExpectations.__init__):
-        (TestExpectations._report_warnings):
-        (TestExpectations.remove_rebaselined_tests.without_rebaseline_modifier):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (assert_bad_expectations):
-        (test_parse_warning):
-        (test_overrides__duplicate):
-        (ExpectationSyntaxTests.test_missing_expectation):
-        (ExpectationSyntaxTests.test_missing_colon):
-        (ExpectationSyntaxTests.test_too_many_colons):
-        (ExpectationSyntaxTests.test_too_many_equals_signs):
-        (ExpectationSyntaxTests.test_unrecognized_expectation):
-        (SemanticTests.test_bug_format):
-        (SemanticTests.test_bad_bugid):
-        (SemanticTests.test_slow_and_timeout):
-        (test_ambiguous):
-        (test_more_modifiers):
-        (test_order_in_file):
-        (test_macro_overrides):
-        (RebaseliningTest.assertRemove):
-        (TestExpectationParserTests.test_tokenize_blank):
-        (TestExpectationParserTests.test_tokenize_missing_colon):
-        (TestExpectationParserTests.test_tokenize_extra_colon):
-        (TestExpectationParserTests.test_tokenize_empty_comment):
-        (TestExpectationParserTests.test_tokenize_comment):
-        (TestExpectationParserTests.test_tokenize_missing_equal):
-        (TestExpectationParserTests.test_tokenize_extra_equal):
-        (TestExpectationParserTests.test_tokenize_valid):
-        (TestExpectationParserTests.test_tokenize_valid_with_comment):
-        (TestExpectationParserTests.test_tokenize_valid_with_multiple_modifiers):
-        (TestExpectationSerializerTests.test_unparsed_to_string):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (lint):
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-        (TestExpectationsChecker.check_test_expectations):
-
-2012-02-02  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r106543.
-        http://trac.webkit.org/changeset/106543
-        https://bugs.webkit.org/show_bug.cgi?id=77671
-
-        Made tests less stable (Requested by rniwa on #webkit).
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner):
-        (PerfTestsRunner.__init__):
-        (PerfTestsRunner._run_tests_set):
-        (PerfTestsRunner._run_single_test):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (MainTest.TestDriver.run_test):
-        (run_test):
-
-2012-02-02  Beth Dakin  <bdakin@apple.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=77664
-        Add API tests for didNewFirstVisuallyNonEmptyLayout
-
-        Reviewed by Darin Adler.
-
-        Two new tests.
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayout.cpp: Added.
-        (TestWebKitAPI):
-        (TestWebKitAPI::didNewFirstVisuallyNonEmptyLayout):
-        (TestWebKitAPI::setPageLoaderClient):
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFails.cpp: Added.
-        (TestWebKitAPI):
-        (TestWebKitAPI::didForceRepaint):
-        (TestWebKitAPI::didFinishLoadForFrame):
-        (TestWebKitAPI::didNewFirstVisuallyNonEmptyLayout):
-        (TestWebKitAPI::setPageLoaderClient):
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFails_Bundle.cpp: Added.
-        (TestWebKitAPI):
-        (NewFirstVisuallyNonEmptyLayoutFailsTest):
-        (TestWebKitAPI::NewFirstVisuallyNonEmptyLayoutFailsTest::NewFirstVisuallyNonEmptyLayoutFailsTest):
-        (TestWebKitAPI::NewFirstVisuallyNonEmptyLayoutFailsTest::didCreatePage):
-        * TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayout_Bundle.cpp: Added.
-        (TestWebKitAPI):
-        (NewFirstVisuallyNonEmptyLayoutTest):
-        (TestWebKitAPI::NewFirstVisuallyNonEmptyLayoutTest::NewFirstVisuallyNonEmptyLayoutTest):
-        (TestWebKitAPI::NewFirstVisuallyNonEmptyLayoutTest::didCreatePage):
-
-2012-02-02  Michael Saboff  <msaboff@apple.com>
-
-        Add Michael Saboff to reviewers list.
-
-        Rubber-stamped by Gavin Barraclough.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-02-02  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
-
-        Add myself as a committer
-
-        Unreviewed
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-02-02  Ryosuke Niwa  <rniwa@webkit.org>
-
-        [PerformanceTests] tests have dependencies
-        https://bugs.webkit.org/show_bug.cgi?id=77506
-
-        Reviewed by Hajime Morita.
-
-        Load an initialization page before each test after starting a DRT so that
-        warming up DRT won't affect the performance test results.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner):
-        (PerfTestsRunner.__init__):
-        (PerfTestsRunner._run_tests_set):
-        (PerfTestsRunner._run_single_test):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (MainTest.TestDriver.run_test):
-        (test_initial_page_loaded):
-        (test_initial_page_loaded.run_test):
-
-2012-02-02  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Re-land r106442 per Adam's suggestion. We'll do both restarting DRT and loading a fake test first.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._run_tests_set):
-        (PerfTestsRunner._run_single_test):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (create_runner):
-        (test_run_passing_test):
-        (test_run_silent_test):
-        (test_run_failed_test):
-        (test_run_tonguey_test):
-        (test_run_timeout_test):
-        (test_run_crash_test):
-        (test_run_test_set_kills_drt_per_run):
-        (test_run_test_set_kills_drt_per_run.TestDriverWithStopCount):
-        (test_run_test_set_kills_drt_per_run.TestDriverWithStopCount.__init__):
-        (test_run_test_set_kills_drt_per_run.TestDriverWithStopCount.stop):
-
-2012-02-01  Jacob Goldstein  <jacobg@adobe.com>
-
-        Webkit generate-coverage-data script needs update to use new test script
-        https://bugs.webkit.org/show_bug.cgi?id=77597
-
-        Reviewed by Dirk Schulze.
-
-        * Scripts/generate-coverage-data:
-
-2012-02-01  Adam Barth  <abarth@webkit.org>
-
-        Update the tests to show that the mac-ews processes patches from
-        non-committers.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-        (EarlyWarningSytemTest.test_committer_only_ewses):
-        (EarlyWarningSytemTest.test_builder_ewses):
-
-2012-02-01  Adam Barth  <abarth@webkit.org>
-
-        Mac-ews logs are huge
-        https://bugs.webkit.org/show_bug.cgi?id=77045
-
-        Reviewed by Eric Seidel.
-
-        In order to get the cr-linux-ews bot to run tests on EC2, we created
-        the chromium-xvfb port, which contained a number of tweaks to the
-        Chromium port's behavior.  This patch refactors those tweaks so they
-        can be shared with the mac-ews, mostly by moving them into the
-        non-interactive mode of RunTests.
-
-        * Scripts/webkitpy/common/config/ports.py:
-        (WebKitPort):
-        (WebKitPort.layout_tests_results_path):
-        (ChromiumPort.run_javascriptcore_tests_command):
-        (ChromiumXVFBPort):
-        (ChromiumXVFBPort.run_webkit_tests_command):
-        * Scripts/webkitpy/common/config/ports_mock.py:
-        (MockPort):
-        (MockPort.layout_tests_results_path):
-        * Scripts/webkitpy/common/config/ports_unittest.py:
-        (WebKitPortTest.test_chromium_xvfb_port):
-        * Scripts/webkitpy/tool/bot/layouttestresultsreader_unittest.py:
-        (LayoutTestResultsReaderTest.test_missing_layout_test_results):
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        (CommitQueueTest.test_commit_queue):
-        (test_rollout):
-        (test_manual_reject_during_processing):
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        (RunTests.run):
-        * Scripts/webkitpy/tool/steps/runtests_unittest.py:
-        (RunTestsTest.test_no_unit_tests):
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-        (StepsTest.test_runtests_args):
-
-2012-02-01  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Roll out r106442. It made some tests more stable but others less stable.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._run_tests_set):
-        (PerfTestsRunner._run_single_test):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (create_runner):
-        (test_run_passing_test):
-        (test_run_silent_test):
-        (test_run_failed_test):
-        (test_run_tonguey_test):
-        (test_run_timeout_test):
-        (test_run_crash_test):
-        (test_run_test_set):
-
-2012-02-01  Lucas Forschler  <lforschler@apple.com>
-
-        Enable EWS for non-contributers.
-        https://bugs.webkit.org/show_bug.cgi?id=77576
-        
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (MacEWS):
-
-2012-02-01  Beth Dakin  <bdakin@apple.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=77383
-        Add a different didFirstVisuallNonEmptyLayout heuristic to experiment with
-        -and corresponding-
-        <rdar://problem/10709560>
-
-        Reviewed by Sam Weinig.
-
-        WebKit2's WebLoaderClient has a temporary new function that must be accounted 
-        for.
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-
-2012-02-01  Dirk Pranke  <dpranke@chromium.org>
-
-        TestWebKitAPI isn't being built on chromium bots any more
-        https://bugs.webkit.org/show_bug.cgi?id=77563
-
-        Reviewed by Dimitri Glazkov.
-
-        I accidentally dropped it in the refactoring in r105449.
-
-        * TestWebKitAPI/TestWebKitAPI.gyp/TestWebKitAPI.gyp: Added.
-
-2012-02-01  Hans Wennborg  <hans@chromium.org>
-
-        Rename WebSpeechInputResult::set() to assign()
-        https://bugs.webkit.org/show_bug.cgi?id=77540
-
-        Reviewed by Darin Fisher.
-
-        * DumpRenderTree/chromium/MockWebSpeechInputController.cpp:
-        (MockWebSpeechInputController::addMockRecognitionResult):
-        (MockWebSpeechInputController::speechTaskFired):
-
-2012-02-01  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] WebKit1 API documentation is not generated when building with gtk-2.0
-        https://bugs.webkit.org/show_bug.cgi?id=77542
-
-        Reviewed by Martin Robinson.
-
-        * gtk/generate-gtkdoc: Check first whether there's
-        webkitgtk-3.0.pc and if it doesn't exist use webkitgtk-1.0.pc
-        instead.
-        (get_webkit2_options): Return just the options since the
-        pkg_config_path doesn't depend on options
-        (get_webkit1_options): Ditto.
-        (generate_doc): Helper function to create a generator and generate
-        documentation for the given pkg-config file with the given options.
-        * gtk/gtkdoc.py:
-        (GTKDoc.__init__): Don't use ** for args parameter, since it's
-        used as a dict and never expanded.
-        (PkgConfigGTKDoc.__init__): Ditto.
-
-2012-02-01  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] API documentation is not installed even when building with --enable-gtk-doc
-        https://bugs.webkit.org/show_bug.cgi?id=77094
-
-        Reviewed by Martin Robinson.
-
-        * GNUmakefile.am: Add install-data-local and uninstall-local rules
-        to install/uninstall WebKit1 and WebKit2 API documentation.
-
-2012-02-01  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r106460.
-        http://trac.webkit.org/changeset/106460
-        https://bugs.webkit.org/show_bug.cgi?id=77552
-
-        It break unit tests if WEBKIT_TESTFONTS isn't defined.
-        (Requested by Ossy on #webkit).
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-
-2012-02-01  Nándor Huszka  <huszka.nandor@stud.u-szeged.hu>
-
-        [Qt] Automatic clean build feature always do clean build with --no-webkit2
-        https://bugs.webkit.org/show_bug.cgi?id=74519
-
-        Reviewed by Tor Arne Vestbø.
-
-        Set the PLUGIN_ARCHITECTURE_UNSUPPORTED define always.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-02-01  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        [Qt][WK2] run-webkit-tests --qt  crashes if WEBKIT_TESTFONTS is not set
-        https://bugs.webkit.org/show_bug.cgi?id=77466
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Replicate the behavior of old-run-webkit-tests and check if WEBKIT_TESTFONTS
-        is set or if we should raise an error.
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort.setup_environ_for_server):
-
-2012-02-01  Philippe Normand  <pnormand@igalia.com> and Sergio Villar Senin  <svillar@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Improve FrameLoader signals. Resource loading
-        https://bugs.webkit.org/show_bug.cgi?id=49543
-
-        Support for the new loader signals in DRT.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (urlPath):
-        (willSendRequestCallback):
-        (urlSuitableForTestResult):
-        (descriptionSuitableForTestResult):
-        (didReceiveResponse):
-        (didFinishLoading):
-        (didFailLoadingWithError):
-        (createWebView):
-
-2012-02-01  Ryosuke Niwa  <rniwa@webkit.org>
-
-        run-perf-tests should restart DRT for each test
-        https://bugs.webkit.org/show_bug.cgi?id=77506
-
-        Reviewed by Adam Barth.
-
-        Always restart DRT when running performance tests in order to minimize the dependency between tests.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumDriver.stop):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._run_tests_set):
-        (PerfTestsRunner._run_single_test):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (create_runner):
-        (test_run_passing_test):
-        (test_run_silent_test):
-        (test_run_failed_test):
-        (test_run_tonguey_test):
-        (test_run_timeout_test):
-        (test_run_crash_test):
-        (test_run_test_set_kills_drt_per_run):
-        (test_run_test_set_kills_drt_per_run.TestDriverWithStopCount):
-        (test_run_test_set_kills_drt_per_run.TestDriverWithStopCount.__init__):
-        (test_run_test_set_kills_drt_per_run.TestDriverWithStopCount.stop):
-
-2012-01-31  Hans Wennborg  <hans@chromium.org>
-
-        Speech Input: Report speech element rect relative to window rather than frame
-        https://bugs.webkit.org/show_bug.cgi?id=76443
-
-        Reviewed by Darin Fisher.
-
-        Update LayoutTestController to allow for retrieving the speech
-        element's position used in a request.
-
-        In Chromium this is handled by the MockWebSpeechInputController;
-        adding stubs for the other implementations.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setMockSpeechInputDumpRectCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setMockSpeechInputDumpRect):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/chromium/MockWebSpeechInputController.cpp:
-        (MockWebSpeechInputController::setDumpRect):
-        (MockWebSpeechInputController::clearResults):
-        (MockWebSpeechInputController::startRecognition):
-        (MockWebSpeechInputController::MockWebSpeechInputController):
-        (makeRectResult):
-        (MockWebSpeechInputController::speechTaskFired):
-        * DumpRenderTree/chromium/MockWebSpeechInputController.h:
-        (MockWebSpeechInputController):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setMockSpeechInputDumpRect):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setMockSpeechInputDumpRect):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setMockSpeechInputDumpRect):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setMockSpeechInputDumpRect):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setMockSpeechInputDumpRect):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setMockSpeechInputDumpRect):
-
-2012-01-31  Ryuan Choi  <ryuan.choi@samsung.com>
-
-        [EFL] Add basic DRT/Efl implementation to support viewport test.
-        https://bugs.webkit.org/show_bug.cgi?id=77320
-
-        Reviewed by Andreas Kling.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::dumpConfigurationForViewport): call dumpConfigurationForViewport().
-
-2012-01-31  Alexey Proskuryakov  <ap@apple.com>
-
-        REGRESSION (WebKit2): event.keyCode is always zero when typing in Russian
-        https://bugs.webkit.org/show_bug.cgi?id=77473
-        <rdar://problem/10751357>
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/mac/EventSendingController.mm:
-        (-[EventSendingController keyDown:withModifiers:withLocation:]):
-        * WebKitTestRunner/mac/EventSenderProxy.mm:
-        (WTR::EventSenderProxy::keyDown):
-        Added a new special keyDown value to test this.
-
-2012-01-31  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: fix the mock port to work with DriverProxy, reftests
-        https://bugs.webkit.org/show_bug.cgi?id=77170
-
-        Reviewed by Eric Seidel.
-
-        The DryrunPort used for benchmarking and testing NRWT has been
-        broken since we added the DriverProxy code. It isn't really
-        needed any more, so I've removed it.
-
-        The MockDRT port was also broken by DriverProxy, and moreover,
-        never worked w/ reftests. Since we don't exercise this module in
-        the unit tests, the code had also bitrotted some. I have cleaned
-        it up and made it use DriverInput and DriverOutput for
-        consistency.
-
-        * Scripts/webkitpy/layout_tests/port/dryrun.py:
-        (DryRunPort.__init__):
-        (DryRunPort):
-        (DryRunPort.real_name):
-        (DryRunPort.create_driver):
-        (DryRunPort.driver_cmd_line):
-        (DryRunPort._driver_class):
-        (DryrunDriver):
-        (DryrunDriver.run_test):
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py:
-        (MockDRTPort.create_driver):
-        (MockChromiumDRT.run_one_test):
-
-2012-01-31  Ojan Vafai  <ojan@chromium.org>
-
-        run-webkit-tests calls out to webkit-build-directory twice
-        https://bugs.webkit.org/show_bug.cgi?id=77248
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkit-build-directory:
-        If called with no arguments, print out both the top-level directory and the 
-        configuration directory
-
-        * Scripts/webkitpy/layout_tests/port/config.py:
-        (Config.build_directory):
-        When called with no arguments, get and cache both the top-level and configuration directories.
-
-        * Scripts/webkitpy/layout_tests/port/config_standalone.py:
-        (main):
-        * Scripts/webkitpy/layout_tests/port/config_unittest.py:
-        (ConfigTest.assert_configuration):
-        (ConfigTest.test_build_directory.mock_webkit_build_directory):
-        (ConfigTest.test_build_directory):
-        (ConfigTest.test_default_configuration__notfound):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._build_path):
-        Cache the build directory in the options object so that other users
-        of the options object don't need to call out to webkit-build-directory.
-        Also, properly support the existing --build-directory argument.
-
-2012-01-31  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Bump up the timeout for performance tests since DOM/DOMTable.html
-        and Parser/html5-full-render.html are timing out on the bot.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._parse_args):
-
-2012-01-31  Ehsan Akhgari  <ehsan.akhgari@gmail.com>
-
-        Fix the update_webgl_conformance_tests.py script in order to enable it
-        to detect the SCM being used correctly.
-        https://bugs.webkit.org/show_bug.cgi?id=77462
-
-        Reviewed by Kenneth Russell.
-
-        * Scripts/webkitpy/to_be_moved/update_webgl_conformance_tests.py:
-        (default_out_dir):
-
-2012-01-31  Eric Seidel  <eric@webkit.org>
-
-        webkit-patch apply-from-bug should work regardless of your CWD
-        https://bugs.webkit.org/show_bug.cgi?id=77482
-
-        Reviewed by Adam Barth.
-
-        webkit-patch only ever works with patches made from the root
-        directory.  We should pass the CWD to svn-apply in the case
-        where we're running not from the webkit root.  I believe
-        this used to work in the past and regressed.
-
-        * Scripts/webkitpy/common/checkout/checkout.py:
-        (Checkout.apply_patch):
-        * Scripts/webkitpy/common/checkout/checkout_unittest.py:
-        (CheckoutTest.test_apply_patch):
-
-2012-01-31  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r106302.
-        http://trac.webkit.org/changeset/106302
-        https://bugs.webkit.org/show_bug.cgi?id=77472
-
-        Broke building DRT before running the tests (Requested by ojan
-        on #webkit).
-
-        * Scripts/webkit-build-directory:
-        * Scripts/webkitpy/layout_tests/port/config.py:
-        (Config.build_directory):
-        * Scripts/webkitpy/layout_tests/port/config_standalone.py:
-        (main):
-        * Scripts/webkitpy/layout_tests/port/config_unittest.py:
-        (ConfigTest.assert_configuration):
-        (ConfigTest.test_build_directory.mock_webkit_build_directory):
-        (ConfigTest.test_build_directory):
-        (ConfigTest.test_default_configuration__notfound):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._build_path):
-
-2012-01-31  Antoine Labour  <piman@chromium.org>
-
-        Merge WebGraphicsContext3D creation and initialization, and move it to
-        WebViewClient.
-        https://bugs.webkit.org/show_bug.cgi?id=76593
-
-        Reviewed by Darin Fisher.
-
-        * DumpRenderTree/chromium/TestWebPlugin.cpp:
-        (TestWebPlugin::TestWebPlugin):
-        (TestWebPlugin::initialize):
-        * DumpRenderTree/chromium/TestWebPlugin.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createGraphicsContext3D):
-        (WebViewHost::createPlugin):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2012-01-31  Gabor Rapcsanyi  <rgabor@webkit.org>
-
-        [GTK] build-webkit warning.
-        https://bugs.webkit.org/show_bug.cgi?id=77411
-
-        Reviewed by Philippe Normand.
-
-        * Scripts/webkitdirs.pm:
-        (isCrossCompilation):
-
-2012-01-31  Dan Bernstein  <mitz@apple.com>
-
-        When generating derived sources, use the same compiler that is used to compile WebKitTestRunner.
-
-        Reviewed by Anders Carlsson.
-
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-
-2012-01-31  Csaba Osztrogonác  <ossy@webkit.org>
-
-        If the QTDIR environment variable is set, the build system fails to compile WinCairo
-        https://bugs.webkit.org/show_bug.cgi?id=77112
-
-        Reviewed by Daniel Bates.
-
-        * Scripts/webkitdirs.pm:
-        (determineIsQt):
-
-2012-01-31  Adam Roben  <aroben@apple.com>
-
-        Only call -typingAttributes on WebViews, not WebHTMLViews
-
-        Looks like this case was just missed in r105908.
-
-        Fixes <http://webkit.org/b/77432> REGRESSION (r105908): WebKit1.InspectorBarTest is crashing
-
-        Reviewed by Antti Koivisto.
-
-        * TestWebKitAPI/Tests/mac/InspectorBar.mm:
-        (TestWebKitAPI::TEST): Call -typingAttributes on the WebView, just like we do 2 lines
-        earlier.
-
-2012-01-31  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        [Qt] MiniBrowser: Show touch mocking indicators only when Ctrl is held down.
-        https://bugs.webkit.org/show_bug.cgi?id=77221
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        This makes sure that the indicator isn't in the way when doing clicks or dealing with the rest of the UI.
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::sendTouchEvent):
-
-2012-01-26  Hans Wennborg  <hans@chromium.org>
-
-        Speech Input: move MockSpeechInputClient into Chromium DumpRenderTree implementation
-        https://bugs.webkit.org/show_bug.cgi?id=77083
-
-        Reviewed by Darin Fisher.
-
-        Add MockWebSpeechInputController which provides a mock implementation
-        of the WebSpeechInputController interface, and use that in
-        DumpRenderTree.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::addMockSpeechInputResult):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        ():
-        * DumpRenderTree/chromium/MockWebSpeechInputController.cpp: Added.
-        (MockWebSpeechInputController::create):
-        (MockWebSpeechInputController::addMockRecognitionResult):
-        (MockWebSpeechInputController::clearResults):
-        (MockWebSpeechInputController::startRecognition):
-        (MockWebSpeechInputController::cancelRecognition):
-        (MockWebSpeechInputController::stopRecording):
-        (MockWebSpeechInputController::MockWebSpeechInputController):
-        (MockWebSpeechInputController::speechTaskFired):
-        (MockWebSpeechInputController::SpeechTask::SpeechTask):
-        (MockWebSpeechInputController::SpeechTask::stop):
-        (MockWebSpeechInputController::SpeechTask::runIfValid):
-        * DumpRenderTree/chromium/MockWebSpeechInputController.h: Added.
-        (WebKit):
-        (MockWebSpeechInputController):
-        (MockWebSpeechInputController::taskList):
-        (SpeechTask):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::speechInputController):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebKit):
-        (WebViewHost::speechInputControllerMock):
-        (WebViewHost):
-        ():
-
-2012-01-31  Hajime Morrita  <morrita@chromium.org>
-
-        [PerformanceTests] Add landing html for Dromaeo dom-query test
-        https://bugs.webkit.org/show_bug.cgi?id=77329
-
-        Reviewed by Ryosuke Niwa.
-
-        Added some more ignorable output patterns to allow warnings
-        from a third party test suite.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner):
-        (PerfTestsRunner._should_ignore_line_in_parser_test_result):
-
-2012-01-30  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed. Update download URLs to new domain.
-        
-        * waf/build/build_utils.py:
-        (update_wx_deps):
-
-2012-01-30  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed. Build fix, add JavaScriptCore/tools
-        to the list of build directories.
-        
-        * waf/build/settings.py:
-
-2012-01-30  Kentaro Hara  <haraken@chromium.org>
-
-        REGRESSION(r105797): prepare-ChangeLog for a .cpp file can
-        output an empty method name (i.e. "()")
-        https://bugs.webkit.org/show_bug.cgi?id=77336
-
-        Reviewed by Darin Adler.
-
-        r105797 tried to detect a change outside methods, but it causes a bug that
-        prepare-ChangeLog can output an empty method name, like this:
-
-            * foo/bar/baz.cpp:
-            (method1):
-            ():
-            (method2):
-
-        This is because the cpp parser in prepare-ChangeLog cannot distinguish
-        '{' as the beginning of a method with '{' as the beginning of an array definition
-        at the top level.
-
-            int a[] = { 1, 2, 3 };  // This '{' is the beginning of an array definition.
-
-            void func() { // This '{' is the beginning of a method.
-                ...;
-            }
-
-        This patch fixes prepare-ChangeLog so that it skips an array definition at the top level.
-
-        * Scripts/prepare-ChangeLog:
-        (get_function_line_ranges_for_cpp): Modified as described above.
-        (generateFunctionLists): As a hack, modified so that prepare-ChangeLog does not output
-        an empty method name. Ideally this should not happen but may happen, since the
-        parsers are not perfect.
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/cpp_unittests.cpp: Added test cases.
-        (NameSpace7):
-        (NameSpace8):
-        (Class109):
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/cpp_unittests-expected.txt:
-
-2012-01-30  Ojan Vafai  <ojan@chromium.org>
-
-        run-webkit-tests calls out to webkit-build-directory twice
-        https://bugs.webkit.org/show_bug.cgi?id=77248
-
-        Reviewed by Dirk Pranke.
-
-        This reduces to calls to webkit-build-directory to one call and
-        saves 500ms for run-webkit-tests over a single file.
-
-        * Scripts/webkit-build-directory:
-        If called with no arguments, print out both the top-level directory and the 
-        configuration directory.
-
-        * Scripts/webkit-build-directory:
-        * Scripts/webkitpy/layout_tests/port/config.py:
-        (Config.build_directory):
-        When called with no arguments, get and cache both the top-level and configuration directories.
-
-        * Scripts/webkitpy/layout_tests/port/config_standalone.py:
-        (main):
-        * Scripts/webkitpy/layout_tests/port/config_unittest.py:
-        (ConfigTest.assert_configuration):
-        (ConfigTest.test_build_directory.mock_webkit_build_directory):
-        (ConfigTest.test_build_directory):
-        (ConfigTest.test_default_configuration__notfound):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._build_path):
-        Cache the root directory in the options object so that other users
-        of the options object don't need to call out to webkit-build-directory.
-
-2012-01-30  Ojan Vafai  <ojan@chromium.org>
-
-        Parsing test_expecations.txt + Skipped lists takes too long
-        https://bugs.webkit.org/show_bug.cgi?id=77059
-
-        Reviewed by Dirk Pranke.
-
-        This saves ~100ms on the Apple Mac port.
-        -memoize a bunch of path methods.
-        -Avoid doing multiple disk accesses per line.
-        -Parse the skipped list directly instead of turning it into a test_expecations.txt
-        formatting string and parsing that.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectationParser):
-        (TestExpectationParser.expectation_for_skipped_test):
-        (TestExpectationParser._parse_line):
-        (TestExpectationParser._collect_matching_tests):
-        (TestExpectations.__init__):
-        (TestExpectations._add_skipped_tests):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (test_add_skipped_tests):
-        (test_add_skipped_tests_duplicate):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port):
-        (Port.test_isfile):
-        (Port.normalize_test_name):
-        (Port.layout_tests_dir):
-        (Port.abspath_for_test):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2012-01-30  Alexis Menard  <alexis.menard@openbossa.org>
-
-        Unreviewed. Add myself to CSS, GStreamer, Qt related watchlists.
-        
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-01-30  Gavin Barraclough  <barraclough@apple.com>
-
-        Unreviewed build fix following bug#76855
-
-        * TestWebKitAPI/Tests/WTF/MetaAllocator.cpp:
-        ():
-        (TestWebKitAPI::TEST_F):
-
-2012-01-26  No'am Rosenthal  <noam.rosenthal@nokia.com> and Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        [Qt] WKTR: Use a software rendering pipiline when running tests.
-        https://bugs.webkit.org/show_bug.cgi?id=76708
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::WrapperWindow::WrapperWindow):
-        (WTR::PlatformWebView::PlatformWebView): Use software rendering of layers since the wrapping QQuickView isn't shown.
-
-2012-01-30  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Store build config immediately instead of waiting for a successfull build
-
-        Otherwise we will not pick up changes to the config if the build is aborted,
-        for example due to build errors or if the user pressed Ctrl+Z. We now write
-        the new config before starting a build, but still defer to write the SVN
-        revision once the build completes successfully.
-
-        Reviewed by Ossy.
-
-        * Scripts/webkitdirs.pm:
-        (buildQMakeProjects):
-
-2012-01-30  Alexander Færøy  <ahf@0x90.dk>
-
-        [Qt] Add "New Window" button to the Qt MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=77281
-
-        Reviewed by Tor Arne Vestbø.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        * MiniBrowser/qt/MiniBrowser.qrc:
-        * MiniBrowser/qt/icons/plus.png: Added.
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-
-2012-01-30  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed rolling out r106222.
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner.__init__):
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        (Worker.handle_test_list):
-        * Scripts/webkitpy/layout_tests/models/test_input.py:
-        (TestInput.__init__):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (_set_up_derived_options):
-        (parse_args):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_repeat_each):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::setIsPixelTest):
-
-2012-01-30  Hans Wennborg  <hans@chromium.org>
-
-        Unreviewed, rolling out r106219.
-        http://trac.webkit.org/changeset/106219
-        https://bugs.webkit.org/show_bug.cgi?id=77083
-
-        This broke Chromium's test_shell.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::addMockSpeechInputResult):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (WebKit):
-        (LayoutTestController):
-        ():
-        * DumpRenderTree/chromium/MockWebSpeechInputController.cpp: Removed.
-        * DumpRenderTree/chromium/MockWebSpeechInputController.h: Removed.
-        * DumpRenderTree/chromium/TestShell.cpp:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::speechInputController):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebKit):
-        (WebViewHost::speechInputControllerMock):
-        (WebViewHost):
-        ():
-
-2012-01-26  Hans Wennborg  <hans@chromium.org>
-
-        Speech Input: move MockSpeechInputClient into Chromium DumpRenderTree implementation
-        https://bugs.webkit.org/show_bug.cgi?id=77083
-
-        Reviewed by Darin Fisher.
-
-        Add MockWebSpeechInputController which provides a mock implementation
-        of the WebSpeechInputController interface, and use that in
-        DumpRenderTree.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::addMockSpeechInputResult):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        ():
-        * DumpRenderTree/chromium/MockWebSpeechInputController.cpp: Added.
-        (MockWebSpeechInputController::create):
-        (MockWebSpeechInputController::addMockRecognitionResult):
-        (MockWebSpeechInputController::clearResults):
-        (MockWebSpeechInputController::startRecognition):
-        (MockWebSpeechInputController::cancelRecognition):
-        (MockWebSpeechInputController::stopRecording):
-        (MockWebSpeechInputController::MockWebSpeechInputController):
-        (MockWebSpeechInputController::speechTaskFired):
-        (MockWebSpeechInputController::SpeechTask::SpeechTask):
-        (MockWebSpeechInputController::SpeechTask::stop):
-        (MockWebSpeechInputController::SpeechTask::runIfValid):
-        * DumpRenderTree/chromium/MockWebSpeechInputController.h: Added.
-        (WebKit):
-        (MockWebSpeechInputController):
-        (MockWebSpeechInputController::taskList):
-        (SpeechTask):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::speechInputController):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebKit):
-        (WebViewHost::speechInputControllerMock):
-        (WebViewHost):
-        ():
-
-2012-01-29  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r106109.
-        http://trac.webkit.org/changeset/106109
-        https://bugs.webkit.org/show_bug.cgi?id=77302
-
-        It made tests crash (Requested by Ossy_weekend on #webkit).
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::WrapperWindow::WrapperWindow):
-        (WTR::PlatformWebView::PlatformWebView):
-
-2012-01-28  Nico Weber  <thakis@chromium.org>
-
-        [chromium] Add support for building standalone webkit/chromium checkouts with ninja.
-        https://bugs.webkit.org/show_bug.cgi?id=77243
-
-        Reviewed by Adam Barth.
-
-        * Scripts/update-webkit:
-        * Scripts/webkitdirs.pm:
-        (isChromiumNinja):
-        (determineIsChromiumNinja):
-        (buildChromiumNinja):
-        (buildChromium):
-
-2012-01-27  Kentaro Hara  <haraken@chromium.org>
-
-        The cpp parser of prepare-ChangeLog treats if(...) {} as a method
-        https://bugs.webkit.org/show_bug.cgi?id=77241
-
-        Reviewed by Ryosuke Niwa.
-
-        The cpp parser of prepare-ChangeLog is wrong, and an inner {} block
-        in a method in some namespace or class is treated as a method.
-        This patch fixes the bug.
-
-            class C {
-                void func()
-                {
-                    if (1) {    // This should not be treated as a method.
-                    }
-                }
-            };
-
-        * Scripts/prepare-ChangeLog:
-        (get_function_line_ranges_for_cpp):
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/cpp_unittests-expected.txt:
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/cpp_unittests.cpp:
-        (Class108):
-        (Class108::func35):
-
-2012-01-27  Enrica Casucci  <enrica@apple.com>
-
-        Followup to http://trac.webkit.org/changeset/106171.
-        Dan Bernstein pointed out correctly that I should
-        have used copy instead of initWithString.
-
-        Reviewed by Dan Bernstein.
-
-        * DumpRenderTree/mac/DumpRenderTreePasteboard.m:
-        (-[LocalPasteboard initWithName:]):
-
-2012-01-27  Enrica Casucci  <enrica@apple.com>
-
-        DRT pasteboard object should return the correct pasteboard name.
-        https://bugs.webkit.org/show_bug.cgi?id=77260
-        
-        Currently the name property always returns nil.
-        Adding a memeber variable to store the pasteboard name and return its
-        value from the name method instead of returning nil always.
-
-        Reviewed by Dan Bernstein.
-
-        * DumpRenderTree/mac/DumpRenderTreePasteboard.m:
-        (+[DumpRenderTreePasteboard _pasteboardWithName:]):
-        (-[LocalPasteboard initWithName:]):
-        (-[LocalPasteboard name]):
-
-2012-01-27  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] [WK2] Implement the policy client
-        https://bugs.webkit.org/show_bug.cgi?id=76343
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * gtk/generate-gtkdoc:
-        (get_webkit2_options): Update the list of skipped source files to include all clients.
-
-2012-01-27  Ada Chan  <adachan@apple.com>
-
-        Add test for WKBundleFrameGetParentFrame().
-        https://bugs.webkit.org/show_bug.cgi?id=77161
-
-        Reviewed by Anders Carlsson.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj: Add ParentFrame.cpp and ParentFrame_Bundle.cpp.
-        * TestWebKitAPI/Tests/WebKit2/ParentFrame.cpp: Added.
-        (TestWebKitAPI):
-        (TestWebKitAPI::didReceiveMessageFromInjectedBundle): Get the check result from the injected bundle.
-        (TestWebKitAPI::setInjectedBundleClient):
-        (TestWebKitAPI::TEST): Load simple-iframe.html and then wait for the injected bundle to post result.
-        Make sure the check is successful.
-        * TestWebKitAPI/Tests/WebKit2/ParentFrame_Bundle.cpp: Added.
-        (TestWebKitAPI):
-        (ParentFrameTest):
-        (TestWebKitAPI::ParentFrameTest::ParentFrameTest):
-        (TestWebKitAPI::didFinishLoadForFrame): If the frame is a subframe, store it off for checking later.
-        If the frame is the main frame, check whether it's indeed the subframe's parent frame and post the result
-        to the test controller.
-        (TestWebKitAPI::ParentFrameTest::didCreatePage): Set the page loader client on this page.
-
-2012-01-27  Zan Dobersek  <zandobersek@gmail.com>
-
-        [Gtk] DumpRenderTree lacks --no-timeout command line option
-        https://bugs.webkit.org/show_bug.cgi?id=77196
-
-        Reviewed by Martin Robinson.
-
-        Add the --no-timeout command line option and reorganize
-        watchdog code to make running DumpRenderTree without
-        timeout possible.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (setWaitToDumpWatchdog):
-        (shouldSetWaitToDumpWatchdog):
-        (initializeGlobalsFromCommandLineOptions):
-        * DumpRenderTree/gtk/DumpRenderTreeGtk.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (waitToDumpWatchdogFired):
-        (LayoutTestController::setWaitToDump):
-
-2012-01-27  Andras Becsi  <andras.becsi@nokia.com>
-
-        [Qt][WK2] Enable the automatic touch->mouse mocking on the new Qt5 hashes
-        https://bugs.webkit.org/show_bug.cgi?id=77122
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::MiniBrowserApplication):
-
-2012-01-27  Zeno Albisser  <zeno@webkit.org>
-
-        [Qt][Mac] Build fails after adding ICU support (r105997).
-        https://bugs.webkit.org/show_bug.cgi?id=77118
-
-        Define WTF_USE_ICU_UNICODE if we are on mac.
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-01-27  Roland Takacs  <takacs.roland@stud.u-szeged.hu>
-
-        Update committers.py with new contributors.
-        https://bugs.webkit.org/show_bug.cgi?id=77207
-
-        I added six new contributors into committers.py:
-
-        - Adam Kallai
-        - Balazs Ankes
-        - Janos Badics
-        - Nandor Huszka
-        - Roland Takacs
-        - Szilard Ledan-Muntean
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-01-27  Vsevolod Vlasov  <vsevik@chromium.org>
-
-        Add Vsevolod Vlasov to reviewers list.
-
-        Reviewed by Pavel Feldman.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-01-26  No'am Rosenthal  <noam.rosenthal@nokia.com> and Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        [Qt] WKTR: Use a software rendering pipiline when running tests.
-        https://bugs.webkit.org/show_bug.cgi?id=76708
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::WrapperWindow::WrapperWindow):
-        (WTR::PlatformWebView::PlatformWebView): Use software rendering of layers since the wrapping QQuickView isn't shown.
-
-2012-01-26  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed. Build fix, add WebCore/testing/js
-        to the list of source directories we build.
-
-        * waf/build/settings.py:
-
-2012-01-26  Filip Pizlo  <fpizlo@apple.com>
-
-        Tools/Scripts/commit-log-editor is broken due to $_ getting clobbered
-        https://bugs.webkit.org/show_bug.cgi?id=77177
-
-        Reviewed by Jon Honeycutt.
-
-        * Scripts/commit-log-editor:
-
-2012-01-26  Ojan Vafai  <ojan@chromium.org>
-
-        Decrease sleep time when killing server_process on Mac.
-        https://bugs.webkit.org/show_bug.cgi?id=77169
-
-        Reviewed by Eric Seidel.
-
-        This shaves another ~70ms off single test runtime.
-
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        (ServerProcess.stop):
-
-2012-01-26  Ojan Vafai  <ojan@chromium.org>
-
-        Remove builder name so http://trac.webkit.org/changeset/106035 actually works.
-        https://bugs.webkit.org/show_bug.cgi?id=77164
-
-        Reviewed by Dirk Pranke.
-
-        http://trac.webkit.org/changeset/106035 depends on builder_name being
-        falsey by default. There's other code that requires it to be iterable
-        by default. So, make it be the empty string.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-
-2012-01-26  Ryosuke Niwa  <rniwa@webkit.org>
-
-        run-perf-test should include relative file paths in test names
-        https://bugs.webkit.org/show_bug.cgi?id=77144
-
-        Reviewed by Adam Barth.
-
-        Include all directory names in the test name separated by "/".
-        e.g. Bindings/event-target-wrapper.html translates to Bindings/event-target-wrapper
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner):
-        (PerfTestsRunner._process_parser_test_result):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (test_run_test_set_with_json_output):
-        (test_run_test_set_with_json_source):
-
-2012-01-26  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: re-land cleanup of test scaffolding
-        https://bugs.webkit.org/show_bug.cgi?id=77153
-
-        Reviewed by Eric Seidel.
-
-        This is an attempt to reland the change in bug 76973 / 
-        r105935. My earlier attempt to manipulate PYTHONPATH
-        seems to only work some of the time, for reasons that
-        elude me. Directly adding Tools/Scripts to sys.path from
-        inside the test script appears to work (more?) reliably.
-
-        Also, it seemed like the files didn't actually get deleted
-        the last time; I don't know why.
-
-        * Scripts/test-webkitpy:
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        (command_line):
-        (ExecutiveTest):
-        (ExecutiveTest.test_run_command_args_type):
-        (ExecutiveTest.test_run_command_with_unicode):
-        (ExecutiveTest.test_running_pids):
-        (main):
-        * Scripts/webkitpy/common/system/fileutils.py: Removed.
-        * Scripts/webkitpy/test/cat.py: Removed.
-        * Scripts/webkitpy/test/cat_unittest.py: Removed.
-        * Scripts/webkitpy/test/echo.py: Removed.
-        * Scripts/webkitpy/test/echo_unittest.py: Removed.
-
-2012-01-26  Ojan Vafai  <ojan@chromium.org>
-
-        run-webkit-tests calls "nm" when it doesn't need to
-        https://bugs.webkit.org/show_bug.cgi?id=77143
-
-        Reviewed by Dirk Pranke.
-
-        If we are not running any test that can be skipped by checking
-        the DRT feature list or looking at the list of symbols, avoid calling
-        out to DRT or calling "nm".
-
-        This saves ~700ms on my Mac Pro. In cases where you still have to call out
-        to "nm" it's only a couple ms slower.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectations.__init__):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.skipped_tests):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._should_check_for_missing_features):
-        (WebKitPort):
-        (WebKitPort._should_check_for_missing_symbols):
-        (WebKitPort._skipped_tests_for_unsupported_features):
-        (WebKitPort.skipped_layout_tests):
-        (WebKitPort.skipped_tests):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (WebKitPortTest.test_skipped_directories_for_symbols):
-        (test_skipped_directories_for_features):
-        (test_skipped_directories_for_features_no_matching_tests_in_test_list):
-        (test_skipped_layout_tests):
-
-2012-01-26  Benjamin Poulain  <bpoulain@apple.com>
-
-        Support a suffix on ChangeLog filenames based on a configuration file
-        https://bugs.webkit.org/show_bug.cgi?id=76956
-
-        Reviewed by Kentaro Hara.
-
-        Modify the tools used to generate, edit and resolve ChangeLogs to support
-        the addition of a suffix to the ChangeLog filename.
-
-        This patch makes it easier to support alternate ChangeLog files in branches.
-
-        * Scripts/VCSUtils.pm:
-        (changeLogSuffix):
-        (changeLogFileName):
-        * Scripts/commit-log-editor:
-        * Scripts/prepare-ChangeLog:
-        (getLatestChangeLogs):
-        (generateNewChangeLogs):
-        (generateFileList):
-        * Scripts/resolve-ChangeLogs:
-        (findChangeLog):
-
-2012-01-26  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r106038.
-        http://trac.webkit.org/changeset/106038
-        https://bugs.webkit.org/show_bug.cgi?id=77142
-
-        Caused a bunch of skipped tests to not be skipped. (Requested
-        by ojan on #webkit).
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectationParser):
-        (TestExpectationParser.parse):
-        (TestExpectationParser._parse_line):
-        (TestExpectationParser._collect_matching_tests):
-        (TestExpectations.__init__):
-        (TestExpectations._add_skipped_tests):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.test_dirs):
-        (Port.normalize_test_name):
-        (Port.update_baseline):
-        (Port.layout_tests_dir):
-        (Port.relative_perf_test_filename):
-        (Port.abspath_for_test):
-
-2012-01-25  Ojan Vafai  <ojan@chromium.org>
-
-        Parsing test_expecations.txt + Skipped lists takes too long
-        https://bugs.webkit.org/show_bug.cgi?id=77059
-
-        Reviewed by Dirk Pranke.
-
-        This saves ~100ms on the Apple Mac port.
-        -memoize a bunch of path methods.
-        -Avoid doing multiple disk accesses per line.
-        -Parse the skipped list directly instead of turning it into a test_expecations.txt
-        formatting string and parsing that.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectationParser):
-        (TestExpectationParser.parse_skipped_tests):
-        (TestExpectationParser._parse_line):
-        (TestExpectationParser._collect_matching_tests):
-        (TestExpectations.__init__):
-        (TestExpectations._add_skipped_tests):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port):
-        (Port.test_isfile):
-        (Port.normalize_test_name):
-        (Port.layout_tests_dir):
-        (Port.abspath_for_test):
-
-2012-01-25  Ojan Vafai  <ojan@chromium.org>
-
-        Only store the SVN revision in the summarized results if we're on a builder
-        https://bugs.webkit.org/show_bug.cgi?id=76976
-
-        Reviewed by Dirk Pranke.
-
-        This shaves another ~130ms off the single test run-webkit-tests runtime.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (summarize_results):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ResultSummaryTest.get_result):
-        (ResultSummaryTest):
-        (ResultSummaryTest.get_result_summary):
-        (ResultSummaryTest.get_unexpected_results):
-        (ResultSummaryTest.test_no_svn_revision):
-        (ResultSummaryTest.test_svn_revision):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.use_trac_links_in_results_html):
-
-2012-01-26  Luciano Wolf  <luciano.wolf@openbossa.org>
-
-        [Qt][WK2] fast/loader tests failed after r94178
-        https://bugs.webkit.org/show_bug.cgi?id=67388
-
-        Reviewed by Simon Hausmann.
-
-        Applying the same fix used for Qt-WebKit1 from bug #67254 -
-        [Qt][DRT] Normalize file:///tmp/LayoutTests in LayoutTestController::pathToLocalResource()
-        https://bugs.webkit.org/show_bug.cgi?id=67254
-        Translate file:///tmp/LayoutTests/* urls into the repository LayoutTests directory, which is
-        derived from the running location of DumpRenderTree binary.
-
-        * WebKitTestRunner/InjectedBundle/qt/LayoutTestControllerQt.cpp:
-        (WTR::LayoutTestController::pathToLocalResource):
-
-2012-01-26  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
-
-        Implement overridePreference for boolean preferences in WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=77033
-
-        Reviewed by Alexey Proskuryakov.
-
-        For now overridePreference supports boolean values.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::setXSSAuditorEnabled):
-        (WTR::LayoutTestController::overridePreference):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues): Reset the overrides
-        explicitly and properly disable the use of PageCache when resetting the
-        state. Tests that use PageCache can now enable it via overridePreference.
-
-2012-01-26  Alexander Færøy  <alexander.faeroy@nokia.com>
-
-        [Qt] Support opening multiple URL's from the command line in the Qt MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=77100
-
-        Reviewed by Simon Hausmann.
-
-        This patch makes the MiniBrowser read multiple URL's from the command
-        line such that there will be one browser window opened for each URL.
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::handleUserOptions):
-
-2012-01-26  Alexander Færøy  <alexander.faeroy@nokia.com>
-
-        [Qt] The Qt MiniBrowser crashes when given multiple URL's
-        https://bugs.webkit.org/show_bug.cgi?id=77009
-
-        Reviewed by Simon Hausmann.
-
-        This patch fixes a crash in BrowserWindow::newWindow() where a
-        BrowserWindow-object is constructed with a 0 pointer as the
-        WindowOptions parameter which leads to a crash.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::newWindow):
-        * MiniBrowser/qt/BrowserWindow.h:
-
-2012-01-26  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        [Qt] Use ICU if available
-        https://bugs.webkit.org/show_bug.cgi?id=76821
-
-        Reviewed by Simon Hausmann.
-
-        Adding unicode defines for a Qt 5 based build.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-01-26  Nándor Huszka  <huszka.nandor@stud.u-szeged.hu>
-
-        [WK2] WebKitTestRunner needs layoutTestController.setGeolocationPermission
-        https://bugs.webkit.org/show_bug.cgi?id=42545
-
-        Reviewed by Zoltan Herczeg.
-
-        Implement the setGeolocationPermission method.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::setGeolocationPermission):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (LayoutTestController):
-
-2012-01-26  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [NRWT] Support --ignore-metrics
-        https://bugs.webkit.org/show_bug.cgi?id=76278
-
-        Reviewed by Tony Chang.
-
-        Port the feature from ORWT.
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner._run_compare_test):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (DriverOutput):
-        (DriverOutput.strip_metrics):
-        * Scripts/webkitpy/layout_tests/port/driver_unittest.py:
-        (DriverOutputTest):
-        (DriverOutputTest.test_strip_metrics):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (_set_up_derived_options):
-        (parse_args):
-
-2012-01-26  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r105935 and r105954.
-        http://trac.webkit.org/changeset/105935
-        http://trac.webkit.org/changeset/105954
-        https://bugs.webkit.org/show_bug.cgi?id=77080
-
-        test-webkitpy is still broken (Requested by abarth on
-        #webkit).
-
-        * Scripts/test-webkitpy:
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        (never_ending_command):
-        (ExecutiveTest.test_run_command_args_type):
-        (ExecutiveTest.test_run_command_with_unicode):
-        (ExecutiveTest.test_running_pids):
-        * Scripts/webkitpy/common/system/fileutils.py:
-        (make_stdout_binary):
-        * Scripts/webkitpy/test/cat.py:
-        (command_arguments):
-        (main):
-        * Scripts/webkitpy/test/cat_unittest.py:
-        (CatTest):
-        (CatTest.assert_cat):
-        (CatTest.test_basic):
-        (CatTest.test_no_newline):
-        (CatTest.test_unicode):
-        (CatTest.test_as_command):
-        * Scripts/webkitpy/test/echo.py:
-        (command_arguments):
-        (main):
-        * Scripts/webkitpy/test/echo_unittest.py:
-        (EchoTest):
-        (EchoTest.test_basic):
-        (EchoTest.test_no_newline):
-        (EchoTest.test_unicode):
-        (EchoTest.test_argument_order):
-        (EchoTest.test_empty_arguments):
-        (EchoTest.test_no_arguments):
-        (EchoTest.test_as_command):
-
-2012-01-26  Gabor Rapcsanyi  <rgabor@webkit.org>
-
-        [GTK] Detect cross-compilation in webkitdirs.pm to not generate gtkdoc
-        https://bugs.webkit.org/show_bug.cgi?id=76138
-
-        Reviewed by Martin Robinson.
-
-        * Scripts/webkitdirs.pm:
-        (isCrossCompilation):
-        (buildAutotoolsProject):
-
-2012-01-25  Adam Barth  <abarth@webkit.org>
-
-        Kentaro is a reviewer now.  Yay!
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-01-25  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: running w/ no arguments fails
-        https://bugs.webkit.org/show_bug.cgi?id=77064
-
-        Unreviewed, build fix.
-
-        This change fixes a regression introduced in r105944
-        where running without --platform <foo> or one of the other
-        platform switches would cause a null deref :(.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (main):
-
-2012-01-25  Eric Seidel  <eric@webkit.org>
-
-        Automatically CC someone from Apple on any changes to Obj-C public API
-        https://bugs.webkit.org/show_bug.cgi?id=77053
-
-        Reviewed by Timothy Hatcher.
-
-        This has long been de-facto practice, seems now that we have
-        fancy watchlist support, we should just make the tools
-        do this automatically.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-01-25  Antoine Labour  <piman@chromium.org>
-
-        Updating status in committers.py.
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-01-25  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: executive_unittest fails if PYTHONPATH isn't set
-        https://bugs.webkit.org/show_bug.cgi?id=77058
-
-        Reviewed by Eric Seidel.
-
-        r105935 broke executive_unittest by changing which script we
-        were running and not ensuring that the PYTHONPATH was set up
-        properly.
-
-        This change also fixes a regression introduced recently where
-        test-webkitpy wasn't figuring out the path to Tools/Scripts
-        right, either (so running ./test-webkitpy would fail).
-
-        * Scripts/test-webkitpy:
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        (script_dir):
-        (ExecutiveTest.setUp):
-        (ExecutiveTest):
-        (ExecutiveTest.tearDown):
-
-2012-01-25  Adam Barth  <abarth@webkit.org>
-
-        Disable tests on the mac-ews while we sort out hte stability issues.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (MacEWS):
-
-2012-01-23  Dirk Pranke  <dpranke@chromium.org>
-
-        investigate use of 'mac' and 'win' as fully-specified port names for the apple ports
-        https://bugs.webkit.org/show_bug.cgi?id=76475
-
-        Reviewed by Eric Seidel.
-
-        This patch cleans up the internal usage of port names for the
-        Apple mac and Apple win ports so that 'mac' and 'win are never
-        considered "fully specified" port names: they are still legal
-        input to the PortFactory.get() routine, but only if run on the given
-        platform (i.e. trying to PortFactory.get('mac') on windows or
-        linux will return an error, since we don't know which version of
-        the port is desired.
-
-        This also cleans up handling of the webkit2 variants, so that
-        the full port names consistently follow the
-        <operating_system>-<version>[-<wk2>] convention.
-
-        Lastly this patch adds some assertions and removes some
-        try/catch logic to catch more programming and usage errors;
-        previously mac-tiger might've been allowed -- and it would've
-        translated into using just the baselines in platform/mac -- but
-        now it should fail.
-
-        * Scripts/webkitpy/layout_tests/port/apple.py:
-        (ApplePort.determine_full_port_name):
-        (ApplePort.__init__):
-        (ApplePort):
-        (ApplePort._port_name_with_version):
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-        (FactoryTest.test_mac):
-        (FactoryTest.test_win):
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.baseline_search_path):
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        (MacTest.test_versions):
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        (WinPort.baseline_search_path):
-        * Scripts/webkitpy/layout_tests/port/win_unittest.py:
-        (WinTest.test_versions):
-
-2012-01-25  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: print nicer errors while linting expectations files, remove redundant tests
-        https://bugs.webkit.org/show_bug.cgi?id=76955
-
-        Reviewed by Adam Barth.
-
-        This change cleans up the errors that are printed so that the
-        are more "quickfix" compatible (path:lineno).
-
-        Also, there were a bunch of redundant tests between
-        layout_tests.models.test_expectations_unittest and
-        style.checkers.test_expectations_unittest. The latter should
-        just expect the former to do most of the testing.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectationParser._parse_modifiers):
-        (TestExpectations._report_errors):
-        (TestExpectations._add_skipped_tests):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (test_parse_error_nonfatal):
-        (SemanticTests.test_bad_bugid):
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-        (TestExpectationsChecker.__init__):
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-        (TestExpectationsTestCase.assert_lines_lint):
-        (TestExpectationsTestCase.test_valid_expectations):
-        (TestExpectationsTestCase.test_invalid_expectations):
-        (TestExpectationsTestCase.test_tab):
-
-2012-01-25  Eric Seidel  <eric@webkit.org>
-
-        webkit-patch apply-* should always continue after failures
-        https://bugs.webkit.org/show_bug.cgi?id=77057
-
-        Reviewed by Adam Barth.
-
-        As far as I can tell there is only one potential drawback to always
-        forcing: that if you're somehow in the wrong directory it will create new
-        directories for new files.  Since webkit-patch always cd's to the root
-        it seems that's not a drawback.  The drawback of not using --force for
-        svn-apply, is that it will stop after the first failure, which is rarely
-        (if ever) the desired behavior.  This just removes the force option
-        (which was strangely hidden behind --non-interactive).  This should
-        make for a better user experiance.
-
-        * Scripts/webkitpy/common/checkout/checkout.py:
-        (Checkout.apply_patch):
-        * Scripts/webkitpy/common/checkout/checkout_mock.py:
-        (MockCheckout.apply_patch):
-        * Scripts/webkitpy/common/checkout/checkout_unittest.py:
-        (CheckoutTest.test_chromium_deps):
-        (CheckoutTest):
-        (CheckoutTest.test_apply_patch):
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        (DownloadCommandsTest._default_options):
-        * Scripts/webkitpy/tool/steps/applypatch.py:
-        (ApplyPatch.options):
-        (ApplyPatch.run):
-        * Scripts/webkitpy/tool/steps/options.py:
-        (Options):
-
-2012-01-25  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: should be able to run --platform test interactively
-        https://bugs.webkit.org/show_bug.cgi?id=76959
-
-        Reviewed by Adam Barth.
-
-        As part of refactoring the Port interfaces, in r103254 I made
-        passing a Host object to the Port mandatory; previously TestPort
-        objects would create their own (mock) hosts. However,
-        new-run-webkit-tests always passed a real Host, not a MockHost,
-        and so you couldn't run new-run-webkit-tests --platform test
-        interactively to debug test failures.
-
-        This change fixes that by creating a MockHost instead of a real
-        host if you say --platform test*.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (main):
-
-2012-01-25  Dirk Pranke  <dpranke@chromium.org>
-
-        run-webkit-tests --lint-test-files should lint all the ports by default
-        https://bugs.webkit.org/show_bug.cgi?id=76749
-
-        Reviewed by Ojan Vafai.
-
-        Currently run-webkit-tests --lint-test-files will only lint the
-        test_expectations for the single port determined by the command
-        line options. This is not obvious and can produce unintended results
-        if you want to lint the chromium port (probably the normal case
-        for using --lint-test-files) but don't specify a port name or
-        --chromium.
-
-        I think we should probably lint *all* of the ports if no port
-        name is supplied. This change implements that, and also moves
-        the linting logic out of the Manager class, since this really
-        has nothing to do with Managers. It has little to do with
-        run-webkit-tests, but splitting it into a different script would
-        introduce compatibility issues. It might make sense to do that
-        anyway, in a separate patch and combining that with cleaning up
-        the style checker to share more code.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._strip_test_dir_prefix):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (lint):
-        (run):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (LintTest.test_all_configurations): added.
-        (LintTest.test_lint_test_files): added.
-        (LintTest.test_lint_test_files__errors): added.
-        (MainTest.test_lint_test_files): removed.
-        (MainTest.test_lint_test_files__errors): removed.
-
-2012-01-25  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: clean up a bunch of test scaffolding
-        https://bugs.webkit.org/show_bug.cgi?id=76973
-
-        Reviewed by Eric Seidel.
-
-        There were several helper modules in the webkitpy.test package
-        that appear to only be used by executive_unittest.py. I am
-        rolling them all into that file to make that clearer.
-
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        (ExecutiveTest.test_run_command_args_type):
-        (ExecutiveTest.test_run_command_with_unicode):
-        (ExecutiveTest.test_running_pids):
-        (command_line):
-        (main):
-        * Scripts/webkitpy/common/system/fileutils.py: Removed.
-        * Scripts/webkitpy/test/cat.py: Removed.
-        * Scripts/webkitpy/test/cat_unittest.py: Removed.
-        * Scripts/webkitpy/test/echo.py: Removed.
-        * Scripts/webkitpy/test/echo_unittest.py: Removed.
-
-2012-01-25  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: clean up a bunch of test scaffolding
-        https://bugs.webkit.org/show_bug.cgi?id=76973
-
-        Reviewed by Eric Seidel.
-
-        There were several helper modules in the webkitpy.test package
-        that appear to only be used by executive_unittest.py. I am
-        rolling them all into that file to make that clearer.
-
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        (ExecutiveTest.test_run_command_args_type):
-        (ExecutiveTest.test_run_command_with_unicode):
-        (ExecutiveTest.test_running_pids):
-        (command_line):
-        (main):
-        * Scripts/webkitpy/common/system/fileutils.py: Removed.
-        * Scripts/webkitpy/test/cat.py: Removed.
-        * Scripts/webkitpy/test/cat_unittest.py: Removed.
-        * Scripts/webkitpy/test/echo.py: Removed.
-        * Scripts/webkitpy/test/echo_unittest.py: Removed.
-
-2012-01-25  Eric Seidel  <eric@webkit.org>
-
-        Remove Python 2.5 support from WebKit
-        https://bugs.webkit.org/show_bug.cgi?id=71593
-
-        Reviewed by Adam Barth.
-
-        Just removing support from this one core file.
-        I'll commit the rest of the (large) change once we've
-        gone 24 hours and seen that no bots have exploded.
-        We can roll out this one change if we break bots
-        and then roll in the rest once those bots are fixed.
-
-        * Scripts/webkitpy/common/system/executive.py:
-        (Executive.cpu_count):
-
-2012-01-25  Hajime Morita  <morrita@google.com>
-
-        ENABLE_SHADOW_DOM should be available via build-webkit --shadow-dom
-        https://bugs.webkit.org/show_bug.cgi?id=76863
-
-        Reviewed by Dimitri Glazkov.
-
-        Added a feature flag.
-
-        * Scripts/build-webkit:
-        * qmake/mkspecs/features/features.prf:
-
-2012-01-25  Martin Robinson  <mrobinson@igalia.com>
-
-        [WK2] Navigation events not triggered by a mouse event claim to be triggered by the left mouse button during policy decisions
-        https://bugs.webkit.org/show_bug.cgi?id=76344
-
-        Reviewed by Sam Weinig.
-
-        Add a test verifying that the mouse button during policy decisions for
-        events not triggered by mouse events is NoButton.
-
-        * TestWebKitAPI/Tests/WebKit2/PageLoadBasic.cpp:
-        (TestWebKitAPI::decidePolicyForNavigationAction): Added test.
-        (TestWebKitAPI::decidePolicyForNewWindowAction): Added test.
-
-2012-01-25  Ryosuke Niwa  <rniwa@webkit.org>
-
-        run-perf-tests should timeout sooner
-        https://bugs.webkit.org/show_bug.cgi?id=77026
-
-        Reviewed by Adam Barth.
-
-        Bump off the timeout from 10 minutes to 4 minutes.
-
-        Also use float instead of str in test result values to compress the size of json files bots upload.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._parse_args):
-        (PerfTestsRunner._process_chromium_style_test_result):
-        (PerfTestsRunner._process_parser_test_result):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (test_run_test_set_for_parser_tests):
-        (test_run_test_set_with_json_output):
-        (test_run_test_set_with_json_source):
-
-2012-01-25  Enrica Casucci  <enrica@apple.com>
-
-        WebView should implement typingAttributes methods to work correctly with the Inspector bar in Mail.
-        https://bugs.webkit.org/show_bug.cgi?id=76951
-        <rdar://problem/9325158>
-
-        Reviewed by Alexey Proskuryakov.
-
-        * TestWebKitAPI/Tests/mac/InspectorBar.mm: Modified to reflect the changes to WebView
-        and WebHTMLView.
-        (TestWebKitAPI::TEST):
-
-2012-01-23  MORITA Hajime  <morrita@google.com>
-
-        [Refactoring][Internals] Should have InternalSettings
-        https://bugs.webkit.org/show_bug.cgi?id=76424
-
-        Reviewed by Kent Tamura.
-
-        * GNUmakefile.am: Added so new files.
-
-2012-01-25  Takashi Toyoshima  <toyoshim@chromium.org>
-
-        webkitpy: new-run-webkit-websocket is broken
-        https://bugs.webkit.org/show_bug.cgi?id=76999
-
-        Reviewed by Dirk Pranke.
-
-        r105674 broke new-run-webkit-websocket, since options.chromium
-        doesn't exist any more. new-run-webkit-httpd was also broken
-        and already fixed at r105835.
-        * Scripts/new-run-webkit-websocketserver:
-        (main):
-
-2012-01-25  Nándor Huszka  <huszka.nandor@stud.u-szeged.hu>
-
-        [WK2] WebKitTestRunner needs layoutTestController.setPopupBlockingEnabled
-        https://bugs.webkit.org/show_bug.cgi?id=63458
-
-        Reviewed by Adam Roben.
-
-        Implement the setPopupBlockingEnabled method.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::setPopupBlockingEnabled):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2012-01-24  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt] Cleanup testfonts handling
-        https://bugs.webkit.org/show_bug.cgi?id=76068
-
-        Reviewed by Simon Hausmann.
-
-        Factor test font initialization into it's own file  so test
-        font users can share the implementation by adding the file
-        to their build.
-        Use fonts.conf from the test font directory to not require the
-        current directory to be the WebKit root.
-        Fix the -use-test-fonts option of QtTestBrowser by initializing
-        the fonts earlier, before it is too late (namely before calling
-        show on the main window).
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::open):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        * DumpRenderTree/qt/QtInitializeTestFonts.cpp: Copied from Tools/WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp.
-        (WebKit::initializeTestFonts):
-        * DumpRenderTree/qt/QtInitializeTestFonts.h: Added.
-        * DumpRenderTree/qt/fonts.conf: Removed. No need for this since
-        we will use the one from the test fonts directory.
-        * DumpRenderTree/qt/main.cpp:
-        (main): Fix the ifdefs to make it clear that the code to
-        set up the Dpi has not been ported to Qt5 yet.
-        * QtTestBrowser/QtTestBrowser.pro:
-        * QtTestBrowser/launcherwindow.h:
-        (WindowOptions::WindowOptions):
-        * QtTestBrowser/main.cpp:
-        (launcherMain):
-        (LauncherApplication::handleUserOptions):
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-        (WTR::activateFonts): Remove the code to set up the Dpi
-        because it does not work with Qt5.
-
-2012-01-25  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] build-webkit --qt requires a git-svn or SVN checkout.
-
-        Reviewed by Tor Arne Vestø.
-
-        Don't require it by making svnRevisionForDirectory return "unknown"
-        instead of bailing out with an error.
-
-        * Scripts/VCSUtils.pm:
-        (svnRevisionForDirectory):
-
-2012-01-25  Adam Barth  <abarth@webkit.org>
-
-        Temporarily disable running the unit tests on the Chromium EWS.  These
-        tests don't work properly (see
-        https://bugs.webkit.org/show_bug.cgi?id=76979) and are currently
-        blocking the EWS.
-
-        * Scripts/webkitpy/common/config/ports.py:
-        (ChromiumPort):
-
-2012-01-25  Adam Barth  <abarth@webkit.org>
-
-        Update results.html version of PixelZoomer
-        https://bugs.webkit.org/show_bug.cgi?id=76965
-
-        Reviewed by Ojan Vafai.
-
-        Improve readability as suggested by Ojan.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/pixelzoomer.js:
-
-2012-01-25  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Page clients don't need to be GObjects anymore in WebKit2 GTK+ API
-        https://bugs.webkit.org/show_bug.cgi?id=76899
-
-        Reviewed by Martin Robinson.
-
-        * gtk/generate-gtkdoc:
-        (get_webkit2_options): WebKitWebLoaderClient has been renamed to
-        WebKitLoaderClient.
-
-2012-01-24  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Build fix. Trigger Chromium Mac Release (Perf) on new commits.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-01-23  Ryosuke Niwa  <rniwa@webkit.org>
-
-        WebKit needs public performance tests running on public bots
-        https://bugs.webkit.org/show_bug.cgi?id=10266
-
-        Reviewed by Adam Barth.
-
-        Completes the initial implementation of WebKit Perf bots. Add a build step for run-perf-test
-        and make google-mac-4 run it, and upload the results to webkit-perf.webkit.org.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (RunAndUploadPerfTests):
-        (RunAndUploadPerfTests.start):
-        (UploadPerfTestResults):
-        (BuildAndPerfTestFactory):
-        (BuildAndPerfTestFactory.__init__):
-
-2012-01-24  Ojan Vafai  <ojan@chromium.org>
-
-        Initializing the browser property of the Bugzilla class takes too long
-        https://bugs.webkit.org/show_bug.cgi?id=76960
-
-        Reviewed by Adam Barth.
-
-        Lazily initialize it. This saves ~150ms on a no-op run-webkit-tests call
-        on my Mac Pro.
-
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        (Bugzilla.__init__):
-        (Bugzilla._get_browser):
-        (Bugzilla):
-        (Bugzilla._set_browser):
-
-2012-01-24  Mark Rowe  <mrowe@apple.com>
-
-        Death to JavaScriptGlue.
-
-        Rubber-stamped by Geoffrey Garen.
-
-        * BuildSlaveSupport/build-launcher-app:
-        (copyNightlyLauncher):
-        * Scripts/build-webkit:
-        * Scripts/do-file-rename:
-        * Scripts/do-webcore-rename:
-        * Scripts/webkitpy/common/config/build.py:
-        (_should_file_trigger_build):
-        * Scripts/webkitpy/common/config/build_unittest.py: Update the test to use another Mac-specific
-        path in conjunction with a cross-platform path.
-        (ShouldBuildTest):
-
-2012-01-24  Kentaro Hara  <haraken@chromium.org>
-
-        webkitperl/prepare-ChangeLog_unittest/parser_unittests.pl should test stdout and stderr
-        https://bugs.webkit.org/show_bug.cgi?id=75836
-
-        Reviewed by David Kilzer.
-
-        Previously parser_unittests.pl can just test the returned value of
-        get_function_line_ranges() in prepare-ChangeLog. This patch fixes
-        parser_unittests.pl so that it also tests the stdout and stderr of
-        get_function_line_ranges().
-
-        This patch adds css_unittests_warning.css, which contains test cases
-        for warning messages of the CSS parser of prepare-ChangeLog.
-
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/parser_unittests.pl:
-        (captureOutput): Captures the stdout and stderr of a given method.
-        (convertAbsolutepathToWebKitPath): Converts absolute paths in a given
-        string to relative paths.
-
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/css_unittests_warning-expected.txt: Added.
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/css_unittests_warning.css: Added.
-        (element1):
-        (element2):
-        (element3):
-        (element4):
-        ():
-        (element5):
-        (element6):
-
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/cpp_unittests-expected.txt:
-        Just updated the test results, i.e. added stdout and stderr results.
-        No essential changes in the test results.
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/css_unittests-expected.txt: Ditto.
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/java_unittests-expected.txt: Ditto.
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/javascript_unittests-expected.txt: Ditto.
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/perl_unittests-expected.txt: Ditto.
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/python_unittests-expected.txt: Ditto.
-
-2012-01-24  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: new-run-webkit-httpd is broken
-        https://bugs.webkit.org/show_bug.cgi?id=76963
-
-        Reviewed by Adam Barth.
-
-        r105674 broke new-run-webkit-httpd, since options.chromium
-        doesn't exist any more. We didn't catch this because we don't
-        run the integration tests by default anywhere :(.
-
-        * Scripts/new-run-webkit-httpd:
-        (run):
-        (main):
-
-2012-01-24  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic pixel zoomer should let you look at every pixel of the image
-        https://bugs.webkit.org/show_bug.cgi?id=76962
-
-        Reviewed by Ojan Vafai.
-
-        Previously, you couldn't get up to the right and bottom pixels.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/pixelzoomer.js:
-
-2012-01-24  Enrica Casucci  <enrica@apple.com>
-
-        WebHTMLView should implement typingAttributes methods to work correctly with the Inspector bar in Mail.
-        https://bugs.webkit.org/show_bug.cgi?id=76951
-        <rdar://problem/9325158>
-
-        Added test to verify that WebHTMLView supports the typingAttributes method and that it
-        works as expected.
-        
-        Reviewed by Alexey Proskuryakov.
-
-        * TestWebKitAPI/Tests/mac/InspectorBar.mm:
-        (TestWebKitAPI::TEST):
-
-2012-01-24  James Robinson  <jamesr@chromium.org>
-
-        Put a space between the trac link and ellipsis in sheriffbot rollout message so it linkifies better in some IRC clients
-        https://bugs.webkit.org/show_bug.cgi?id=76884
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        (Rollout.execute):
-        * Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py:
-        (SheriffIRCBotTest.test_rollout):
-        (SheriffIRCBotTest.test_revert):
-        (SheriffIRCBotTest.test_multi_rollout):
-        (SheriffIRCBotTest.test_rollout_with_r_in_svn_revision):
-        (SheriffIRCBotTest.test_multi_rollout_with_r_in_svn_revision):
-        (SheriffIRCBotTest.test_rollout_invalidate_reason):
-        (test_multi_rollout_invalidate_reason):
-
-2012-01-24  Kentaro Hara  <haraken@chromium.org>
-
-        The cpp parser of prepare-ChangeLog cannot detect a change in classes and namespaces
-        https://bugs.webkit.org/show_bug.cgi?id=75531
-
-        Reviewed by David Kilzer.
-
-        Previously, the cpp parser of prepare-ChangeLog could not detect a change
-        outside methods. Consider the following cpp file.
-
-            namespace N {
-            int a;     // this change does not appear on ChangeLog.
-            class C {
-                int b;     // this change does not appear on ChangeLog.
-                void f()
-                {
-                    int c;     // this change appears on ChangeLog.
-                }
-                int d;     // this change does not appear on ChangeLog.
-            };
-            int e;     // this change does not appear on ChangeLog.
-            };
-
-        The previous prepare-ChangeLog outputs just methods in which a change is found:
-            (N::C::f):
-
-        This patch fixes prepare-ChangeLog so that it outputs namespaces, classes
-        and methods in which a change is found:
-            (N):
-            (N::C):
-            (N::C::f):
-
-        * Scripts/prepare-ChangeLog:
-        (get_function_line_ranges_for_cpp): Modified as described above.
-
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/cpp_unittests.cpp: Added test cases.
-        (Class104):
-        (Class105):
-        (Class106):
-        (Class106::func32):
-        (Class106::func33):
-        (NameSpace3):
-        (NameSpace4):
-        (NameSpace5):
-        (NameSpace6):
-        (Class107):
-        (NameSpace5::NameSpace6::Class107::func34):
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/cpp_unittests-expected.txt:
-
-2012-01-24  Kentaro Hara  <haraken@chromium.org>
-
-        prepare-ChangeLog outputs warnings for top-level { ... } blocks
-        https://bugs.webkit.org/show_bug.cgi?id=75943
-
-        Reviewed by David Kilzer.
-
-        Currently, prepare-ChangeLog outputs warnings for top-level { ... } blocks,
-        because it does not distinguish '}' at the end of a subroutine
-        with '}' at the end of a if or for statement.
-
-        foo.pl:
-            if (1) {
-            }
-            for (@v) {
-            }
-
-        output:
-            nested functions found at top-level at foo.pl:2
-            nested functions found at top-level at foo.pl:4
-
-        This patch fixes the bug.
-
-        * Scripts/prepare-ChangeLog:
-        (get_function_line_ranges_for_perl):
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/perl_unittests.pl:
-        Added test cases. No change in the test results.
-
-2012-01-24  Dirk Pranke  <dpranke@chromium.org>
-
-        r105674 broke check-webkit-style for chromium's test_expectations.
-
-        Unreviewed, build fix.
-        
-        We now need to pass in a platform name of 'chromium' if we want
-        the chromium port; options.chromium is no longer recognized. I
-        will follow this patch up with a separate patch that has a test,
-        but this at least fixes the build.
-
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-        (TestExpectationsChecker._determine_port_from_exepectations_path):
-
-2012-01-20  Ojan Vafai  <ojan@chromium.org>
-
-        check-webkit-style of the chromium test_expectations.txt file takes too long
-        https://bugs.webkit.org/show_bug.cgi?id=76745
-
-        Reviewed by Dimitri Glazkov.
-
-        When in lint mode, have TestExpectations test all configurations instead
-        of looping over each configuration. This also has the benefit of making
-        the error output considerably more concise.
-
-        Also, got rid of the double-printing of errors when linting through check-webkit-style.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.lint):
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectations._report_errors):
-        (TestExpectations._add_expectations):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (test_parse_error_nonfatal):
-        (test_error_on_different_platform):
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-        (TestExpectationsChecker.check_test_expectations):
-        (TestExpectationsChecker.check):
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-        (TestExpectationsTestCase.test_determine_port_from_exepectations_path):
-        (TestExpectationsTestCase.assert_lines_lint):
-
-2012-01-24  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Another build fix attempt after r105543.
-
-        * Scripts/webkitpy/common/net/file_uploader.py:
-        (FileUploader.upload_as_multipart_form_data):
-
-2012-01-24  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Build fix attempt after r105543.
-
-        * Scripts/webkitpy/common/net/file_uploader.py:
-        (FileUploader.upload_as_multipart_form_data):
-
-2012-01-24  Vincent Scheib  <scheib@chromium.org>
-
-        [Chromium] Add Pointer Lock test hooks and mock implementation to DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=76411
-
-        Reviewed by Adam Barth.
-
-        Breaking up https://bugs.webkit.org/show_bug.cgi?id=75762
-        into a series of patches, this change adds a trivial
-        pointer lock implementation to the Chromium port's DumpRenderTree
-        and exposes LayoutTestController hooks to force failure conditions.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::didLosePointerLock):
-        (LayoutTestController::setPointerLockWillFailAsynchronously):
-        (LayoutTestController::setPointerLockWillFailSynchronously):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::requestPointerLock):
-        (WebViewHost::requestPointerUnlock):
-        (WebViewHost::isPointerLocked):
-        (WebViewHost::didCompletePointerLock):
-        (WebViewHost::didNotCompletePointerLock):
-        (WebViewHost::didLosePointerLock):
-        (WebViewHost::reset):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost::setPointerLockWillFailAsynchronously):
-        (WebViewHost::setPointerLockWillFailSynchronously):
-
-2012-01-24  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        Unreviewed, skip WK2 API test timing out on some GTK bots.
-
-        WebKit2APITests/TestDownloads is consistently timing out on the
-        32bit release and 64bit debug bots.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner): Skip WebKit2APITests/TestDownloads.
-
-2012-01-24  Andras Becsi  <andras.becsi@nokia.com>
-
-        [Qt] Fix the build with the newes Qt5 hashes
-        https://bugs.webkit.org/show_bug.cgi?id=76657
-
-        Reviewed by Simon Hausmann.
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::MiniBrowserApplication): Disable the automatic touch->mouse event synthesis
-        for now to prevent an infinite loop where Qt always creates mouse events out of our touch mock events.
-
-2012-01-24  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Distinguish between Cygwin and cmd.exe in the way we set env variables
-
-        We can't use win32-msvc* to decide whether or not to use (set FOO=bar), as
-        building with MinGW inside cmd.exe will require the same construct. Instead
-        we assume that when the first character in PWD is a '/' we're running under
-        Cygwin, and use the normal unix way of setting environment variables.
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/default_pre.prf:
-
-2012-01-24  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Some qmake build files must include Qt5's "quick" module.
-        https://bugs.webkit.org/show_bug.cgi?id=76671
-
-        Unreviewed build fix.
-
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * WebKitTestRunner/Target.pri:
-
-2012-01-24  Andras Becsi  <andras.becsi@nokia.com>
-
-        [Qt] Fix the event timestamps for touch mocking
-
-        Reviewed by Simon Hausmann.
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::sendTouchEvent): We should not set QEvent::None as the
-        timestamp argument in the QWindowSystemInterface::handleTouchEvent call.
-
-2012-01-24  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Implement DownloadClient in WebKit2 GTK+ API
-        https://bugs.webkit.org/show_bug.cgi?id=72952
-
-        Reviewed by Martin Robinson.
-
-        * gtk/generate-gtkdoc:
-        (get_webkit2_options): Ignore WebKitDownloadClient.
-
-2012-01-23  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] editing/deleting/5408255.html results are incorrect
-        https://bugs.webkit.org/show_bug.cgi?id=53644
-
-        Reviewed by Martin Robinson.
-
-        WEBKIT_TOP_LEVEL environment variable is now set directly in either
-        WebKitTestRunner or DumpRenderTree through usage of a compilation-time
-        macro. This way both tools can be run outside the test harness without
-        the need to manually set the environment variable.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (getTopLevelPath):
-        * GNUmakefile.am:
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort.setup_environ_for_server):
-        * WebKitTestRunner/GNUmakefile.am:
-        * WebKitTestRunner/InjectedBundle/gtk/InjectedBundleGtk.cpp:
-        (WTR::InjectedBundle::platformInitialize):
-
-2012-01-23  Dmitry Lomov  <dslomov@google.com>
-
-        [Chromium] Implement layoutTestController.workerThreadCount in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=74653.
-
-        Reviewed by Darin Fisher.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::workerThreadCount):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-
-2012-01-23  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: make --chromium work like --qt
-        https://bugs.webkit.org/show_bug.cgi?id=76875
-
-        Reviewed by Adam Barth.
-
-        --chromium used to have to be handled differently from --qt
-        due to the way the PortFactory was implemented; there's not
-        really a good reason for that any more so this patch makes
-        things slightly more consistent and eliminates the
-        options.chromium flag (--chromium is now truly a synonym for
-        --platform chromium).
-
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        (PortFactory._default_port):
-        (PortFactory.get):
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-        (FactoryTest.setUp):
-        (FactoryTest.test_chromium_mac):
-        (FactoryTest.test_chromium_linux):
-        (FactoryTest.test_chromium_win):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-
-2012-01-23  Dirk Pranke  <dpranke@chromium.org>
-
-        run-webkit-tests needs to propagate --chromium
-        https://bugs.webkit.org/show_bug.cgi?id=76870
-
-        Reviewed by Eric Seidel.
-
-        run-webkit-tests removes '--chromium' argument from @ARGV when
-        determining which port to run, which means that that doesn't
-        propagate to new-run-webkit-tests. That's bad (and is handled
-        for the other ports by re-adding the flag, but apparently we're
-        just now noticing for Chromium).
-
-        * Scripts/run-webkit-tests:
-
-2012-01-23  Brian Weinstein  <bweinstein@apple.com>
-
-        More build fixing after r105646.
-
-        * TestWebKitAPI/Tests/WTF/RedBlackTree.cpp:
-        (TestWebKitAPI::TestNode::key):
-
-2012-01-23  Gavin Barraclough  <barraclough@apple.com>
-
-        Unreviewed build fix - r105646 broke this.
-
-        * TestWebKitAPI/Tests/WTF/RedBlackTree.cpp:
-        (TestWebKitAPI::TestNode::TestNode):
-        (TestWebKitAPI::TestNode::key):
-        (TestWebKitAPI::RedBlackTreeTest::assertEqual):
-        (TestWebKitAPI::RedBlackTreeTest::assertSameValuesForKey):
-        (TestWebKitAPI::RedBlackTreeTest::testDriver):
-
-2012-01-23  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r105658.
-        http://trac.webkit.org/changeset/105658
-        https://bugs.webkit.org/show_bug.cgi?id=76883
-
-        We want this eventually, but not right at this moment
-        (Requested by abarth on #webkit).
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-
-2012-01-23  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should support Chromium Mac Lion
-        https://bugs.webkit.org/show_bug.cgi?id=76880
-
-        Reviewed by Eric Seidel.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-
-2012-01-23  Emil A Eklund  <eae@chromium.org>
-
-        check-webkit-style whitespace/operators triggers on overloaded division operator
-        https://bugs.webkit.org/show_bug.cgi?id=76650
-
-        Reviewed by Darin Adler.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (check_spacing):
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (CppStyleTest.test_operator_methods):
-
-2012-01-23  Ryosuke Niwa  <rniwa@webkit.org>
-
-        run-perf-tests should report server-side errors
-        https://bugs.webkit.org/show_bug.cgi?id=76802
-
-        Reviewed by Tony Chang.
-
-        Report errors whenever server's response doesn't match "OK".
-
-        * Scripts/webkitpy/common/net/file_uploader.py:
-        (FileUploader.upload_single_text_file):
-        (FileUploader.upload_as_multipart_form_data):
-        (FileUploader._upload_data.callback):
-        (FileUploader):
-        (FileUploader._upload_data):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._upload_json):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (test_upload_json):
-        (test_upload_json.MockFileUploader.upload_single_text_file):
-
-2012-01-22  Ryosuke Niwa  <rniwa@webkit.org>
-
-        run-perf-tests ignore Skipped list on chromium
-        https://bugs.webkit.org/show_bug.cgi?id=76764
-
-        Reviewed by Dirk Pranke.
-
-        Move skipped_perf_tests from WebKit port to Base port so that Chromium port
-        can also find skipped list. Chromium port only uses test_expectations.txt for
-        layout tests but performacne tests don't use test_expectations.txt so Chromium port
-        also needs to use Skipped list.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port._tests_from_skipped_file_contents):
-        (Port):
-        (Port._expectations_from_skipped_files):
-        (Port.skipped_perf_tests):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_skipped_perf_tests):
-        (PortTest.test_skipped_perf_tests.add_text_file):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._skipped_tests_for_unsupported_features):
-        (WebKitPort._skipped_file_search_paths):
-        (WebKitPort.skipped_layout_tests):
-
-2012-01-23  Andy Estes  <aestes@apple.com>
-
-        Fix the build after r105635.
-
-        * TestWebKitAPI/Tests/WTF/StringBuilder.cpp:
-        (TestWebKitAPI::TEST):
-
-2012-01-23  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        Basic enhancements to StringBuilder
-        https://bugs.webkit.org/show_bug.cgi?id=67081
-
-        Reviewed by Darin Adler.
-
-        * TestWebKitAPI/Tests/WTF/StringBuilder.cpp:
-        (TestWebKitAPI::TEST):
-
-2012-01-23  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        [GTK] run-gtk-tests randomly fails while running the xprop comand
-        https://bugs.webkit.org/show_bug.cgi?id=76817
-
-        Reviewed by Gustavo Noronha Silva.
-
-        No need to use xprop to remove the AT_SPI_BUS property since
-        run-gtk-tests will always run new instances of Xvfb.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner): Unskip TestWebKitAccessibility.
-        (TestRunner.run): Uncomment lines for launching the accessibility
-        bus and registry daemon, and remove lines for running xprop.
-
-2012-01-23  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Don't warn about override and final being C++11 extensions
-
-        Clang will emit a warning when these extensions are used without passing
-        --std=c++11, but we use feature checking to decide if we have the right
-        extensions, so we can safely ignore these warnings. The XCode and Windows
-        project files have the same workaround.
-
-        The reason for adding the flag to QMAKE_OBJECTIVE_CFLAGS as well is that
-        we only have one extra compiler for Objective-C, which is also used for
-        Objective-C++ sources, so we have to pass the flag, even if it doesn't
-        make sense for Objective-C.
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/unix/default_post.prf:
-
-2012-01-20  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Change how build-webkit decides when to do full incremental builds
-
-        Instead of relying on update-webkit (which isn't run on the bots) to
-        decide when to do a full incremental build (make qmake), we let the
-        build-webkit script itself check the current SVN revision against the
-        previous build (by storing it in .webkit.config).
-
-        If the two differ we assume a full incremental build is needed, since
-        the new revisions might have introduced problematic things like new
-        Q_OBJECT macros. If not, we assume the developer is doing changes
-        locally, and revert to doing a plain 'make'.
-
-        In addition, when the build fails in the latter case, we inform the
-        developer of possible pitfalls and how to manually run 'make qmake'.
-
-        Reviewed by Ossy.
-
-        * Scripts/update-webkit:
-        * Scripts/webkitdirs.pm:
-        (buildQMakeProjects):
-
-2012-01-23  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        [GTK] run-gtk-tests randomly fails while running the xprop comand
-        https://bugs.webkit.org/show_bug.cgi?id=76817
-
-        Reviewed by Philippe Normand.
-
-        Temporarily comment the lines related to launching the ATSPI bus
-        and registry daemon, which are making the bots to fail randomly.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner): Skip TestWebKitAccessibility, as it won't run
-        properly if the ATSPI infrastructure is not properly initialized.
-        (TestRunner.run): Comment lines related to initialization of ATSPI.
-
-2012-01-22  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Windows python test build fix.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner.__init__):
-
-2012-01-22  Sergio Villar Senin  <svillar@igalia.com>
-
-        [GTK] DumpRenderTree converts "file:///" to a path differently
-        https://bugs.webkit.org/show_bug.cgi?id=76631
-
-        Reviewed by Martin Robinson.
-
-        DumpRenderTree should print "/" as the last path component if the
-        path is a lone slash instead of empty output.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webViewConsoleMessage):
-
-2012-01-20  David Levin  <levin@chromium.org>
-
-        The leaky DC check should use adoptPtr as a signal instead of OwnPtr to get less false positives.
-        https://bugs.webkit.org/show_bug.cgi?id=76752
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (check_for_leaky_patterns):
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (LeakyPatternTest.test_create_dc):
-        (LeakyPatternTest.test_create_compatible_dc):
-
-2012-01-20  Shawn Singh  <shawnsingh@chromium.org>
-
-        Changed my status in commiters.py
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-01-20  Ojan Vafai  <ojan@chromium.org>
-
-        run-webkit-tests --lint-test-files crawls the whole LayoutTests subtree
-        https://bugs.webkit.org/show_bug.cgi?id=76748
-
-        Reviewed by Ryosuke Niwa.
-
-        It crawls the whole subtree and then doesn't use the data. Cutting this out
-        saves 4 seconds warm and 17 seconds cold on my Mac Pro.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (run):
-
-2012-01-20  Adam Barth  <abarth@webkit.org>
-
-        Another tiny tweak to the garden-o-matic CSS.  This makes things line
-        up slightly nicer when there aren't any failures.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/onebar.css:
-        (#summary):
-
-2012-01-19  Ryosuke Niwa  <rniwa@webkit.org>
-
-        run-perf-tests should support --test-results-server option
-        https://bugs.webkit.org/show_bug.cgi?id=76680
-
-        Reviewed by Adam Barth.
-
-        Add --test-results-server, --builder-name, and --build-number options to run-perf-tests
-        to be used by perf bots. Also refactor file_uploader as needed.
-
-        * Scripts/webkitpy/common/net/file_uploader.py:
-        (FileUploader.__init__):
-        (FileUploader.upload_single_file):
-        (FileUploader.upload_as_multipart_form_data):
-        (FileUploader):
-        (FileUploader._upload_data):
-        (FileUploader._upload_data.callback):
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        (JSONResultsGeneratorBase.upload_json_files):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner):
-        (PerfTestsRunner._parse_args):
-        (PerfTestsRunner.run):
-        (PerfTestsRunner._generate_json):
-        (PerfTestsRunner._upload_json):
-        (PerfTestsRunner._run_tests_set):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (create_runner):
-        (test_run_with_upload_json):
-        (test_run_with_upload_json.mock_upload_json):
-        (test_upload_json):
-        (test_upload_json.MockFileUploader):
-        (test_upload_json.MockFileUploader.__init__):
-        (test_upload_json.MockFileUploader.upload_single_file):
-        (test_parse_args):
-
-2012-01-20  Adam Barth  <abarth@webkit.org>
-
-        The party time image overlaps real content!  This patch makes the
-        image centered vertically.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/onebar.css:
-        (#onebar.partytime #summary):
-
-2012-01-19  Ojan Vafai  <ojan@chromium.org>
-
-        Refactor TestExpectationsParser in preparation for caching the results
-        https://bugs.webkit.org/show_bug.cgi?id=76669
-
-        Reviewed by Dimitri Glazkov.
-
-        Make everything private expect for the parse method. 
-        Eventually, we'll need the expectations lines to not be modified
-        outside of TestExpectationsParser so we can cache the results.
-        This makes check-webkit-style of the chromium test_expectations.txt file
-        go from ~17 seconds to ~12 seconds on my Mac Pro.
-
-        This patch is just a refactor in preparation, so no new tests.
-
-        * Scripts/webkitpy/layout_tests/controllers/test_expectations_editor_unittest.py:
-        (TestExpectationEditorTests.make_parsed_expectation_lines):
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectationParser.parse):
-        (TestExpectationParser):
-        (TestExpectationParser._parse_line):
-        (TestExpectationParser._tokenize):
-        (TestExpectationParser._tokenize_list):
-        (TestExpectationsModel._clear_expectations_for_test):
-        (TestExpectations.__init__):
-        (TestExpectations._add_expectations):
-        (TestExpectations._add_skipped_tests):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (TestExpectationParserTests.test_tokenize_blank):
-        (TestExpectationParserTests.test_tokenize_missing_colon):
-        (TestExpectationParserTests.test_tokenize_extra_colon):
-        (TestExpectationParserTests.test_tokenize_empty_comment):
-        (TestExpectationParserTests.test_tokenize_comment):
-        (TestExpectationParserTests.test_tokenize_missing_equal):
-        (TestExpectationParserTests.test_tokenize_extra_equal):
-        (TestExpectationParserTests.test_tokenize_valid):
-        (TestExpectationParserTests.test_tokenize_valid_with_comment):
-        (TestExpectationParserTests.test_tokenize_valid_with_multiple_modifiers):
-        (TestExpectationParserTests.test_parse_empty_string):
-        (TestExpectationSerializerTests.assert_round_trip):
-        (TestExpectationSerializerTests.assert_list_round_trip):
-        * Scripts/webkitpy/tool/commands/expectations.py:
-        (OptimizeExpectations.execute):
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        (GardeningExpectationsUpdater.update_expectations):
-
-2012-01-20  Adam Barth  <abarth@webkit.org>
-
-        Follow-up to previous patch: don't produce NaN when the revision number
-        is missing.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/model.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/model_unittests.js:
-
-2012-01-20  Adam Barth  <abarth@webkit.org>
-
-        Garden-o-matic should tell me which revisions have been checked by all the bots
-        https://bugs.webkit.org/show_bug.cgi?id=76722
-
-        Reviewed by Dimitri Glazkov.
-
-        This information helps me know when it's safe for me to roll a
-        candidate revision.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/garden-o-matic.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/model.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/model_unittests.js:
-
-2012-01-20  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        build-webkit: Don't spit out congratulations message on Ctrl+C
-
-        Reviewed by Andreas Kling.
-
-        * Scripts/build-webkit:
-
-2012-01-20  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] Allow extra jhbuild modulesets
-        https://bugs.webkit.org/show_bug.cgi?id=76691
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * gtk/jhbuildrc: Extra modulesets and modules can be added in
-        JHBuild using the WEBKIT_EXTRA_MODULESETS and WEBKIT_EXTRA_MODULES
-        env variables respectively. Use comma-separated values. Example:
-        WEBKIT_EXTRA_MODULES=file:///path/to/module.set,file:///other/path.
-
-2012-01-20  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        [GTK] Expose accessibility hierarchy in WebKit2 to ATK/AT-SPI based ATs
-        https://bugs.webkit.org/show_bug.cgi?id=72589
-
-        Reviewed by Martin Robinson.
-
-        Ensure the accessibility infrastructure is available when running
-        the unit tests, otherwise WK2's accessibility tests won't work.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner):
-        (TestRunner._lookup_atspi2_binary): New. Looks for the directory
-        where at-spi2's stuff is located (like at-spi-bus-launcher and
-        at-spi2-registryd).
-        (TestRunner.run): Initialize the accessibility infrastructure.
-
-        * gtk/generate-gtkdoc:
-        (get_webkit2_options): Add 'WebKitWebViewBaseAccessible.*'.
-
-        * gtk/jhbuild.modules: Added at-spi2-core and at-spi2-atk.
-
-2012-01-20  Hayato Ito  <hayato@chromium.org>
-
-        Add ShadowRoot.idl which is enabled by newly introduced SHADOW_DOM flag.
-        https://bugs.webkit.org/show_bug.cgi?id=76353
-
-        Reviewed by Hajime Morita.
-
-        Add ShadowRoot.idl, which is enabled only on chromium port since this is
-        under development feature.
-        ShadowRoot.idl contains minimum API so that we can test it.
-        Other APIs should be added on other changes so that we can isolate issues.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-
-2012-01-20  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        [GTK] GTK's DRT not to log events for already defunct objects
-        https://bugs.webkit.org/show_bug.cgi?id=76620
-
-        Reviewed by Martin Robinson.
-
-        Do not log 'state-change:defunct' events.
-
-        * DumpRenderTree/gtk/AccessibilityCallbacks.cpp:
-        (printAccessibilityEvent): Early return if a
-        'state-change:defunct' signal is passed.
-        (axObjectEventListener): Pass the signal name and value in
-        separate parameters to printAccessibilityEvent.
-
-2012-01-19  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Unreviewed build fix. Wrong variable being used as the cwd for git
-        remote update command.
-
-        * gtk/run-with-jhbuild:
-        (update_jhbuild):
-
-2012-01-19  Gustavo Noronha Silva  <gns@gnome.org>
-
-        [GTK] ensure the jhbuild used by webkit is as up-to-date as needed
-        https://bugs.webkit.org/show_bug.cgi?id=76585
-
-        Reviewed by Martin Robinson.
-
-        This allows us to specify a minimum version of jhbuild required,
-        while also providing stability against changes done to the master
-        branch, by letting us choose what is the exact version that will
-        be used.
-
-        * gtk/run-with-jhbuild: refactored for more hackability and easier
-        reading
-        (jhbuild_installed): checks whether jhbuild is installed
-        (jhbuild_cloned): checks whether jhbuild has been cloned
-        (jhbuild_at_expected_revision): checks whether jhbuild is at the
-        expected revision
-        (update_jhbuild): brings jhbuild to the expected revision
-        (clone_jhbuild): clones jhbuild
-        (install_jhbuild): build and installs jhbuild
-        (update_webkitgtk_libs): runs update-webkitgtk-libs
-        (ensure_jhbuild): high-level logic to decide whether and which of
-        the steps above are executed
-
-2012-01-19  Alexey Proskuryakov  <ap@apple.com>
-
-        [WK2] DumpRenderTree converts "file:///" to a path differently
-        https://bugs.webkit.org/show_bug.cgi?id=76653
-
-        Reviewed by John Sullivan.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp: (WTR::lastFileURLPathComponent):
-        Do print a slash if there are no path components.
-
-2012-01-19  Eric Seidel  <eric@webkit.org>
-
-        webkit-patch cannot rollout patches without changelog/bug number
-        https://bugs.webkit.org/show_bug.cgi?id=75962
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/tool/commands/download.py:
-        (AbstractRolloutPrepCommand._prepare_state):
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        (AbstractRolloutPrepCommandTest.test_prepare_state):
-
-2012-01-19  Alexey Proskuryakov  <ap@apple.com>
-
-        [WK2] fast/url/degenerate-file-base.html fails
-        https://bugs.webkit.org/show_bug.cgi?id=76619
-
-        Reviewed by Adam Roben.
-
-        A URL generated form local path for loading had an extra slash, making document.URL
-        incorrect in all WebKit2 tests (file://localhost//path/to/test.html).
-
-        * WebKitTestRunner/TestInvocation.cpp: (WTR::createWKURL):
-
-2012-01-18  Ojan Vafai  <ojan@chromium.org>
-
-        check-webkit-style of the chromium test_expectations.txt file doesn't test all chromium ports
-        https://bugs.webkit.org/show_bug.cgi?id=76510
-
-        Reviewed by Adam Barth.
-
-        Unlike other style rules, if you get the syntax of the test_expectations.txt
-        file wrong, the layout tests won't run. Also, this check is simple and only
-        slows down committing if you actually modify one of the test_expectations.txt files.
-
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-        (TestExpectationsChecker.check_test_expectations):
-        (TestExpectationsChecker.check):
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-        (TestExpectationsTestCase.test_check_covers_all_configurations):
-        (TestExpectationsTestCase.test_check_covers_all_configurations.mock_check_test_expectations):
-        (TestExpectationsTestCase):
-        (assert_lines_lint):
-
-2012-01-19  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Build fix. Revert an unintentional change to WebKitDriver in r105443.
-
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (DriverProxy.__init__):
-
-2012-01-19  Dirk Pranke  <dpranke@chromium.org>
-
-        remove the duplicated build rules from WebKit.gyp, Tools.gyp
-        https://bugs.webkit.org/show_bug.cgi?id=73384
-
-        Reviewed by Tony Chang.
-
-        This patch removes the no-longer-necessary conditional logic for
-        build_webkit_exes_from_webkit_gyp; we now always build the exes
-        from their own dedicated gyp files.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-01-19  Alexey Proskuryakov  <ap@apple.com>
-
-        make-new-script-test should work with HTTP tests
-        https://bugs.webkit.org/show_bug.cgi?id=76603
-
-        Reviewed by Adam Roben.
-
-        * Scripts/make-new-script-test:
-        (makePathToSharedSources): Renamed from makeTestRelativePathToSharedSources(), since it
-        now also creates absolute paths for HTTP.
-
-2012-01-19  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Some perf tests time out when ran by run-perf-tests
-        https://bugs.webkit.org/show_bug.cgi?id=76612
-
-        Reviewed by Dirk Pranke and Eric Seidel.
-
-        Always pass --no-timeout to DumpRenderTree from run-perf-tests.
-        Otherwise some tests such as Parser/xml-parser.html will timeout.
-
-        --no-timeout option is currently supported by Chromium and Mac ports.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.to.create_driver):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumDriver.__init__):
-        (ChromiumDriver._wrapper_options):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.__init__):
-        (DriverProxy.__init__):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver.__init__):
-        (WebKitDriver.cmd_line):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (WebKitDriverTest.test_read_binary_block):
-        (WebKitDriverTest):
-        (WebKitDriverTest.test_no_timeout):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (get_tests_run.RecordingTestDriver.__init__):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._parse_args):
-        (PerfTestsRunner._run_tests_set):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (create_runner):
-
-2012-01-19  Ben Wells  <benwells@chromium.org>
-
-        Add support for window.print to chromium DRT
-        https://bugs.webkit.org/show_bug.cgi?id=76479
-
-        When used in a test window.print goes into print mode and then
-        straight out again. This will allow the afterprint event to be
-        tested by having the afterprint event happen before the dump
-        happens.
-
-        Reviewed by Mihai Parparita.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::printPage):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2012-01-18  Enrica Casucci  <enrica@apple.com>
-
-        editingAttributedStringFromRange in WebHTMLConverter does not handle NSUnderlineStyleAttributeName.
-        https://bugs.webkit.org/show_bug.cgi?id=76588
-        <rdar://problem/9325183>
-
-        Added test.
-        
-        Reviewed by Dan Bernstein.
-
-        * TestWebKitAPI/Tests/mac/InspectorBar.mm:
-        (TestWebKitAPI::TEST):
-
-2012-01-19  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Do full incremental builds until bots use update-webkit
-
-        Rubber-stamped by Simon Hausmann.
-
-        * Scripts/webkitdirs.pm:
-        (buildQMakeProjects):
-
-2012-01-19  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Fix the Qt build
-
-        Unreviewed build fix.
-
-        * Scripts/webkitdirs.pm:
-        (buildQMakeProjects):
-
-2012-01-19  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Make build-webkit always do safe incremental builds after update-webkit
-
-        When building against Qt5 with GCC we would just run 'make' in the build dir,
-        and rely on the dependency files output by GCC (-MD) to handle dependency
-        tracking, but that fails for special-cases like adding a Q_OBJECT macro
-        to a header.
-
-        To guarantee that an incrmental build will work, we have to run 'make qmake',
-        which we now do on every build-webkit that's followed by a successful run
-        of update-webkit. The reasoning is that update-webkit can result in such
-        potential corner-cases being applied, and since we can't know for sure
-        unless we inspect the diff and account for all the corner cases we assume
-        the worst and always run 'make qmake'.
-
-        After a succesful run of build-webkit we proceed to do just 'make' for any
-        subsequent runs, since we assume that the developer knows what kind of
-        changes he/she is doing, and when a 'make qmake' is needed.
-
-        Reviewed by Simon Hausmann.
-
-        * Scripts/update-webkit:
-        * Scripts/webkitdirs.pm:
-        (determineCurrentSVNRevision):
-        (currentSVNRevision):
-        (buildQMakeProjects):
-        * qmake/mkspecs/features/default_post.prf:
-
-2012-01-18  Ryosuke Niwa  <rniwa@webkit.org>
-
-        run-perf-tests should support Skipped list
-        https://bugs.webkit.org/show_bug.cgi?id=76594
-
-        Reviewed by Adam Barth.
-
-        Add a support for Skipped list in run-perf-tests; also skip files in resources directories.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.perf_tests_dir):
-        (Port.skipped_perf_tests):
-        (Port.skips_perf_test):
-        (Port.relative_perf_test_filename):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort.perf_tests_dir):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._expectations_from_skipped_files):
-        (WebKitPort):
-        (WebKitPort.skipped_layout_tests):
-        (WebKitPort.skipped_perf_tests):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._collect_tests):
-        (PerfTestsRunner.run):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (test_run_test_set_with_json_output):
-        (test_run_test_set_with_json_source):
-        (test_collect_tests_with_skipped_list):
-        (test_collect_tests_with_skipped_list.add_file):
-
-2012-01-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix path to chromium_src_dir introduced in previous change.
-
-        Unreviewed, build fix.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-01-18  Alexey Proskuryakov  <ap@apple.com>
-
-        Need infrastructure to test Content-Disposition filename encoding support
-        https://bugs.webkit.org/show_bug.cgi?id=76572
-        <rdar://problem/6421825>
-
-        Reviewed by Sam Weinig.
-
-        Made policy delegate log suggested file name when resource has Content-Disposition: attachment.
-
-        WebKitTestRunner does not have a policy delegate yet, bug 42546.
-
-        * DumpRenderTree/mac/PolicyDelegate.mm:
-        (dispositionTypeFromContentDispositionHeader):
-        (-[PolicyDelegate webView:decidePolicyForMIMEType:request:frame:decisionListener:]):
-
-2012-01-18  Ojan Vafai  <ojan@chromium.org>
-
-        Fix tests from http://trac.webkit.org/changeset/105332.
-
-        The code assumed that if you passed an options object with a configuration
-        attribute that it would have a valid value. A bunch of the testing mocks
-        do things like having a configuration value of None.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.__init__):
-
-2012-01-18  Ojan Vafai  <ojan@chromium.org>
-
-        Shave 0.5 seconds off check-webkit-style runtime for test_expectations.txt
-        https://bugs.webkit.org/show_bug.cgi?id=76576
-
-        Reviewed by Adam Barth.
-
-        Avoid calling default_configuration in base.py. We don't need it for
-        checking test_expectations.txt style. It takes ~0.5 seconds to run on my
-        Mac Pro. It's the call to "perl Tools/Scripts/webkit-build-directory --top-level"
-        from common.executive.
-
-        At some point someone should probably look into why that call is so slow
-        since it's on the critical path for run-webkit-tests and build-webkit startup.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.__init__):
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-        (TestExpectationsChecker._determine_port_from_exepectations_path):
-
-2012-01-18  Dirk Pranke  <dpranke@chromium.org>
-
-        [chromium] move Tools.gyp, switch build-webkit --chromium to All.gyp
-        https://bugs.webkit.org/show_bug.cgi?id=76505
-
-        Reviewed by Tony Chang.
-
-        Update chromium build script to use All.gyp instead of WebKit.gyp
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp: Renamed from Source/WebKit/chromium/Tools.gyp.
-        * Scripts/webkitdirs.pm:
-
-2012-01-18  Sam Weinig  <sam@webkit.org>
-
-        Don’t hardcode the path to ‘make‘.
-
-        Reviewed by Dan Bernstein.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-
-2012-01-18  Joshua Bell  <jsbell@chromium.org>
-
-        Adding myself to committers.py
-        https://bugs.webkit.org/show_bug.cgi?id=76569
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-01-18  Adam Barth  <abarth@webkit.org>
-
-        Up the cap on test failures tolerated by the EWS so the mac-ews can run to completion
-        https://bugs.webkit.org/show_bug.cgi?id=76567
-
-        Reviewed by Eric Seidel.
-
-        Current the AppleMac port has slightly more failures than we allow on
-        the EWS, causing the mac-ews to spin.  This patch ups the limit a bit,
-        which should hopefully let the mac-ews run to completion.  Once
-        AppleMac has fewer failures, we can lower the cap again.
-
-        * Scripts/webkitpy/tool/bot/layouttestresultsreader_unittest.py:
-        (LayoutTestResultsReaderTest.test_layout_test_results):
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        (RunTests):
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-
-2012-01-18  Eric Carlson  <eric.carlson@apple.com>
-
-        Provide access to user's list of preferred languages
-        https://bugs.webkit.org/show_bug.cgi?id=76138
-
-        Reviewed by Alexey Proskuryakov.
-
-        * GNUmakefile.am: Add JSInternalsCustom.cpp.
-
-2012-01-18  Adam Barth  <abarth@webkit.org>
-
-        Add Chromium Linux GPU 32 to the list of allowed Chromium Linux
-        configurations.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        (ChromiumLinuxPort.__init__):
-
-2012-01-18  Dominic Mazzoni  <dmazzoni@google.com>
-
-        Accessibility: Chromium needs methods to scroll an object into view or to a specific location.
-        https://bugs.webkit.org/show_bug.cgi?id=73460
-
-        Reviewed by Chris Fleizach.
-
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/chromium/AccessibilityUIElement.cpp:
-        (AccessibilityUIElement::AccessibilityUIElement):
-        (AccessibilityUIElement::scrollToMakeVisibleCallback):
-        (AccessibilityUIElement::scrollToMakeVisibleWithSubFocusCallback):
-        (AccessibilityUIElement::scrollToGlobalPointCallback):
-        * DumpRenderTree/chromium/AccessibilityUIElement.h:
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::scrollToMakeVisible):
-        (AccessibilityUIElement::scrollToMakeVisibleWithSubFocus):
-        (AccessibilityUIElement::scrollToGlobalPoint):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::scrollToMakeVisible):
-        (AccessibilityUIElement::scrollToMakeVisibleWithSubFocus):
-        (AccessibilityUIElement::scrollToGlobalPoint):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::scrollToMakeVisible):
-        (AccessibilityUIElement::scrollToMakeVisibleWithSubFocus):
-        (AccessibilityUIElement::scrollToGlobalPoint):
-
-2012-01-17  Enrica Casucci  <enrica@apple.com>
-
-        Missing NSForegroundColorAttributeName should be treated as black instead of transparent.
-        https://bugs.webkit.org/show_bug.cgi?id=76490
-        <rdar://problem/9460733>
-
-        Added TestWebKitAPI test.
-        
-        Reviewed by Dan Bernstein.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj: Added new test file.
-        * TestWebKitAPI/Tests/mac/InspectorBar.mm: Added test that calls
-        changeAttributes to the WebView.
-        
-2012-01-18  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt] Consolidate layout test crash logging
-        https://bugs.webkit.org/show_bug.cgi?id=75088
-
-        Reviewed by Simon Hausmann.
-
-        Move backtrace generating logic into WTFReportBacktrace
-        and add a way to deinstall signal handlers if we know
-        that we have already printed the backtrace.
-
-        * DumpRenderTree/qt/main.cpp:
-        (crashHandler):
-        (setupSignalHandlers):
-        (WTFCrashHook):
-        (main):
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundleQt.cpp:
-        (WTR::crashHandler):
-        (WTR::setupSignalHandlers):
-        (WTR::crashHook):
-        (WTR::InjectedBundle::platformInitialize):
-
-2012-01-18  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Unreviewed build fix after r105256.
-
-        There was a cyclic dependency between self._port and self._host assigments.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner.__init__):
-
-2012-01-18  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Add new watchlist rule for the Qt build system
-
-        Reviewed by Simon Hausmann.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-01-18  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Move OTHER_FILES from WebKit.pro to Tools.pro
-
-        Reviewed by Simon Hausmann.
-
-        * Tools.pro:
-
-2012-01-18  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Allow building only a subset of the WebKit sub-projects
-
-        Fixes build-jsc, broken in r104825.
-
-        We no longer need the intermediate buildQMakeQtProject(), as we're the
-        only port using qmake, and buildQMakeProject is now highly Qt specific.
-
-        <http://webkit.org/b/76179>
-
-        Reviewed by Simon Hausmann.
-
-        * Scripts/build-jsc:
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-        (buildQMakeProjects):
-
-2012-01-18  Ryosuke Niwa  <rniwa@webkit.org>
-
-        run-perf-tests should generate a json file that summaries the result
-        https://bugs.webkit.org/show_bug.cgi?id=76504
-
-        Reviewed by Adam Barth.
-
-        Add an ability to generate a json file to run-perf-test in the preparation for perf bots.
-        New option --outout-json-path specifies the json file's path, and --source-json-path specifies
-        another json file to be merged into the generated json file.
-
-        Also fixed a bug that --build wasn't set by default.
-
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort.webkit_base):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner.__init__):
-        (PerfTestsRunner):
-        (PerfTestsRunner._parse_args):
-        (PerfTestsRunner.run):
-        (PerfTestsRunner._generate_json_if_specified):
-        (PerfTestsRunner._process_chromium_style_test_result):
-        (PerfTestsRunner._process_parser_test_result):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (MainTest):
-        (create_runner):
-        (test_run_test_set):
-        (test_run_test_set_for_parser_tests):
-        (test_run_test_set_with_summary_json):
-        (test_collect_tests):
-        (test_parse_args):
-
-2012-01-17  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r105244.
-        http://trac.webkit.org/changeset/105244
-        https://bugs.webkit.org/show_bug.cgi?id=76518
-
-        broke Chromium Mac (Requested by rolandsteiner on #webkit).
-
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/chromium/AccessibilityUIElement.cpp:
-        (AccessibilityUIElement::AccessibilityUIElement):
-        * DumpRenderTree/chromium/AccessibilityUIElement.h:
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::removeSelection):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::removeSelection):
-
-2012-01-17  Dominic Mazzoni  <dmazzoni@google.com>
-
-        Accessibility: Chromium needs methods to scroll an object into view or to a specific location.
-        https://bugs.webkit.org/show_bug.cgi?id=73460
-
-        Reviewed by Chris Fleizach.
-
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/chromium/AccessibilityUIElement.cpp:
-        (AccessibilityUIElement::AccessibilityUIElement):
-        (AccessibilityUIElement::scrollToMakeVisibleCallback):
-        (AccessibilityUIElement::scrollToMakeVisibleWithSubFocusCallback):
-        (AccessibilityUIElement::scrollToGlobalPointCallback):
-        * DumpRenderTree/chromium/AccessibilityUIElement.h:
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::scrollToMakeVisible):
-        (AccessibilityUIElement::scrollToMakeVisibleWithSubFocus):
-        (AccessibilityUIElement::scrollToGlobalPoint):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::scrollToMakeVisible):
-        (AccessibilityUIElement::scrollToMakeVisibleWithSubFocus):
-        (AccessibilityUIElement::scrollToGlobalPoint):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::scrollToMakeVisible):
-        (AccessibilityUIElement::scrollToMakeVisibleWithSubFocus):
-        (AccessibilityUIElement::scrollToGlobalPoint):
-
-2012-01-17  Adam Barth  <abarth@webkit.org>
-
-        Enable tests on the mac-ews
-        https://bugs.webkit.org/show_bug.cgi?id=76502
-
-        Reviewed by Simon Fraser.
-
-        Apple now has five machines running the mac-ews.  Lucas Forschler has
-        asked that we try enabling tests to see if we have enough bandwidth.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (MacEWS):
-
-2012-01-17  Sanjoy Das  <sanjoy@playingwithpointers.com>
-
-        Add a check-webkit-style exception for GDBInterface.cpp
-        https://bugs.webkit.org/show_bug.cgi?id=76187
-
-        Add an exception for Source/JavaScriptCore/jit/GDBInterface.cpp so
-        that it does not fail the style check.
-
-        Reviewed by Martin Robinson.
-
-        * Scripts/webkitpy/style/checker.py: Tell the style checker to not run
-        readability/naming tests on
-        Source/JavaScriptCore/jit/GDBInterface.cpp.
-        * Scripts/webkitpy/style/checker_unittest.py:
-        (GlobalVariablesTest.test_path_rules_specifier): Add a test for
-        the above exception.
-
-2012-01-17  Hajime Morrita  <morrita@chromium.org>
-
-        https://bugs.webkit.org/show_bug.cgi?id=76245
-        [Mac][DRT] should allow query string for the file URL.
-
-        Reviewed by Tony Chang.
-
-        Taught DRT about file:// as a url instead of a file path.
-        We are now able to use a path file:///foo/bar.html?baz as a url
-        with which DRT opens "/foo/bar.html" with "baz" as a query string.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (runTest):
-
-2012-01-17  Ojan Vafai  <ojan@chromium.org>
-
-        Check style on test_expectations.txt files before commit
-        https://bugs.webkit.org/show_bug.cgi?id=76484
-
-        Reviewed by Adam Barth.
-
-        Unlike other style rules, if you get the syntax of the test_expectations.txt
-        file wrong, the layout tests won't run. Also, this check is simple and only
-        slows down committing if you actually modify one of the test_expectations.txt files.
-
-        * Scripts/webkitpy/tool/steps/commit.py:
-        (Commit._check_test_expectations):
-        (Commit.run):
-        * Scripts/webkitpy/tool/steps/commit_unittest.py: Added.
-        (CommitTest):
-        (CommitTest.test_check_test_expectations):
-
-2012-01-17  Viatcheslav Ostapenko  <ostapenko.viatcheslav@nokia.com>
-
-        [Qt] Debug build fails with debug qt5
-        https://bugs.webkit.org/show_bug.cgi?id=76463
-
-        Reviewed by Simon Hausmann.
-
-        Add QNetworkCookie include in order to satisfy sizeof in QTypeInfo in debug builds.
-
-        * QtTestBrowser/cookiejar.h:
-
-2012-01-17  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: fix json import on linux
-        https://bugs.webkit.org/show_bug.cgi?id=76481
-
-        Reviewed by Adam Barth.
-
-        For some reason, the version of simplejson autoinstalled on my linux
-        box seems to be broken. We should really only be using
-        simplejson if json isn't available anyway, so this change looks
-        for json first.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator_unittest.py:
-        (JSONGeneratorTest.test_test_timings_trie):
-
-2012-01-17  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix failures in test-webkitpy caused by r105177.
-
-        Unreviewed, build fix.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        (ChromiumLinuxPort._determine_driver_path_statically):
-        (ChromiumLinuxPort._static_build_path):
-
-2012-01-17  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: make PortFactory.get() be fully data-driven
-        https://bugs.webkit.org/show_bug.cgi?id=76360
-
-        Reviewed by Eric Seidel.
-
-        Refactor PortFactory.get() to be fully data-driven.
-
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        (PortFactory):
-        (PortFactory._default_port):
-        (PortFactory.get):
-        (PortFactory.get.in):
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-        (FactoryTest.assert_port):
-
-2012-01-17  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: add determine_full_port_name(), clean up port.__init__()
-        https://bugs.webkit.org/show_bug.cgi?id=76357
-
-        Reviewed by Adam Barth.
-
-        Each Port class is now required to implement a 'port_name' field
-        that will match the start of all ports constructed by this class and
-        a 'determine_full_port_name' field that will make the port
-        fully-qualified.
-
-        * Scripts/webkitpy/layout_tests/port/apple.py:
-        (ApplePort.__init__):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port):
-        (Port.determine_port_name):
-        (Port.__init__):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.for):
-        (ChromiumPort.__init__):
-        (ChromiumPort):
-        (ChromiumPort._chromium_base_dir):
-        (ChromiumPort.path_from_chromium_base):
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        (ChromiumGpuLinuxPort):
-        (ChromiumGpuLinuxPort.__init__):
-        (ChromiumGpuMacPort):
-        (ChromiumGpuMacPort.__init__):
-        (ChromiumGpuWinPort):
-        (ChromiumGpuWinPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        (ChromiumLinuxPort):
-        (ChromiumLinuxPort.determine_port_name):
-        (ChromiumLinuxPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        (ChromiumMacPort):
-        (ChromiumMacPort.determine_port_name):
-        (ChromiumMacPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        (ChromiumWinPort):
-        (ChromiumWinPort.determine_port_name):
-        (ChromiumWinPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/dryrun.py:
-        (DryRunPort):
-        (DryRunPort.determine_port_name):
-        (DryRunPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort):
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        (PortFactory):
-        (PortFactory._default_port):
-        (PortFactory.get):
-        (PortFactory.get.in):
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-        (FactoryTest.assert_port):
-        * Scripts/webkitpy/layout_tests/port/google_chrome.py:
-        (GoogleChromeLinux32Port):
-        (GoogleChromeLinux32Port.determine_port_name):
-        (GoogleChromeLinux64Port):
-        (GoogleChromeLinux64Port.determine_port_name):
-        (GoogleChromeMacPort):
-        (GoogleChromeMacPort.determine_port_name):
-        (GoogleChromeWinPort):
-        (GoogleChromeWinPort.determine_port_name):
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort):
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort):
-        (MacPort.determine_port_name):
-        (MacPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        (test_versions):
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py:
-        (MockDRTPort):
-        (MockDRTPort.determine_port_name):
-        (MockDRTPort.__init__):
-        (MockDRT):
-        (MockDRT.determine_port_name):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (PortTestCase.make_port):
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort):
-        (QtPort.determine_port_name):
-        (QtPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort):
-        (TestPort.determine_port_name):
-        (TestPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        (WinPort):
-        (WinPort.determine_port_name):
-        * Scripts/webkitpy/tool/servers/rebaselineserver.py:
-        (get_test_baselines.AllPlatformsPort.__init__):
-        * Scripts/webkitpy/tool/servers/rebaselineserver_unittest.py:
-        (get_test_config.TestMacPort):
-        (get_test_config):
-
-2012-01-17  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: clean up port code in preparation for static port names
-        https://bugs.webkit.org/show_bug.cgi?id=76356
-
-        Reviewed by Adam Barth.
-
-        To fix bug 76215 and be able to determine appropriate port names
-        in webkitpy without actually constructing Port objects, we need
-        to shuffle some logic in the chromium ports to be able to figure
-        out whether we built DRT in 32 or 64-bit mode.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort):
-        (ChromiumPort._chromium_base_dir):
-        (ChromiumPort.__init__):
-        (ChromiumPort.path_from_chromium_base):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        (ChromiumLinuxPort):
-        (ChromiumLinuxPort._determine_driver_path_statically):
-        (ChromiumLinuxPort._static_build_path):
-        (ChromiumLinuxPort._determine_architecture):
-        (ChromiumLinuxPort.__init__):
-        (ChromiumLinuxPort._build_path):
-
-2012-01-17  Hao Zheng  <zhenghao@chromium.org>
-
-        Do not remove pixel failures for ref tests.
-        https://bugs.webkit.org/show_bug.cgi?id=76243
-
-        Reviewed by Tony Chang.
-
-        'NRWT --no-pixel-tests' complains when reftests are expected to
-        be image mismatch.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._update_summary_with_result):
-        * Scripts/webkitpy/layout_tests/models/test_failures.py:
-        (is_reftest_failure):
-        (determine_result_type):
-
-2012-01-17  Balazs Ankes  <Ankes.Balazs@stud.u-szeged.hu>
-
-        REGRESSION(r81225): ORWT should ignore reftests
-        https://bugs.webkit.org/show_bug.cgi?id=67936
-
-        Reviewed by Csaba Osztrogonác.
-
-        * Scripts/old-run-webkit-tests:
-        (isUsedInReftest): $filename should be the first parameter
-        (findTestsToRun): run test if it isn't reftest
-
-2012-01-17  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Unreviewed. Fix python unit test I broke with r105142
-
-        * Scripts/webkitpy/common/config/ports_unittest.py:
-        (WebKitPortTest.test_gtk_port):
-
-2012-01-17  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Don't set the 'primary' flag when mocking touch-points in MiniBrowser
-
-        Qt 5 no longer has that flag.
-
-        Reviewed by Simon Hausmann.
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::notify):
-
-2012-01-16  Gustavo Noronha Silva  <gustavo.noronha@collabora.com>
-
-        GTK+ EWS needs to run update-webkitgtk-libs after applying a patch
-        https://bugs.webkit.org/show_bug.cgi?id=75857
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitdirs.pm:
-        (buildAutotoolsProject): move cleaning the build to happen early,
-        and handle --update-gtk right after that
-        * Scripts/webkitpy/common/config/ports.py:
-        (GtkPort.build_webkit_command): pass --update-gtk as an option to
-        build-webkit, so that it is used in the EWS
-
-2012-01-16  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Don't add _debug postfix to targets when building debug only
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/functions.prf:
-
-2012-01-16  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Add more files to project-files for easier navigation in Qt Creator
-
-        Reviewed by Simon Hausmann.
-
-        * Tools.pro:
-        * qmake/config.tests/README: Added.
-
-2012-01-17  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] fast/dom/constructed-objects-prototypes.html fails
-        https://bugs.webkit.org/show_bug.cgi?id=75432
-
-        Reviewed by Martin Robinson.
-
-        * Scripts/build-webkit: Enable video-track in GTK.
-
-2012-01-16  Takashi Toyoshima  <toyoshim@chromium.org>
-
-        Add toyoshim as a committer.
-        https://bugs.webkit.org/show_bug.cgi?id=76390
-
-        Reviewed by Hajime Morita.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-01-16  Brent Fulgham  <bfulgham@webkit.org>
-
-        [WinCairo] Build fix after r104155. Several debug targets were not
-        properly including the '*Common' property sheets.
-
-        * DumpRenderTree/win/DumpRenderTreeLauncherDebugCairoCFLite.vsprops:
-        * DumpRenderTree/win/ImageDiffLauncherDebugCairoCFLite.vsprops:
-        * MiniBrowser/Configurations/MiniBrowserLauncherDebugCairoCFLite.vsprops:
-        * WebKitTestRunner/win/WebKitTestRunnerLauncherDebugCairoCFLite.vsprops:
-        * WinLauncher/WinLauncherLauncherDebugCairoCFLite.vsprops:
-
-2012-01-16  Csaba Osztrogonác  <ossy@webkit.org>
-
-        REGRESSION(r105072): It broke committers_unittest.py
-        https://bugs.webkit.org/show_bug.cgi?id=76396
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/config/committers_unittest.py:
-        (CommittersTest._assert_fuzz_match): It should handle more names.
-        (CommittersTest.test_contributors_by_fuzzy_match_with_legacy_names): Fix the testcase.
-
-2012-01-16  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        [GTK] Include gtk+3 in the jhbuild modules
-        https://bugs.webkit.org/show_bug.cgi?id=76284
-
-        Reviewed by Philippe Normand.
-
-        * gtk/jhbuild.modules: Add some gtk+3 to the jhbuild moduleset.
-
-2012-01-16  Dan Winship  <danw@gnome.org>
-
-        Add myself as a committer
-
-        Unreviewed
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-01-16  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        Unreviewed; fix the build when --as-needed and --no-copy-dt-needed-entries are passed to the linker.
-
-        Some recent versions of a few Linux distributions have started passing
-        --as-needed and --no-copy-dt-needed-entries by default to the linker,
-        which broke the build when SHARED_CORE was turned on, as libwtf_efl.so
-        needed a few symbols from libjavascriptcore_efl.so.
-
-        * DumpRenderTree/efl/CMakeLists.txt: Explicitly pass WTF_LIBRARY_NAME
-        before JavaScriptCore_LIBRARY_NAME in DumpRenderTree_LIBRARIES so the
-        libraries are searched in the right order by the linker.
-
-2012-01-16  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] set audio resources path in NRTW
-        https://bugs.webkit.org/show_bug.cgi?id=76380
-
-        Reviewed by Martin Robinson.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort.setup_environ_for_server): Set $AUDIO_RESOURCES_PATH so
-        the uninstalled audio resources are used during webaudio tests.
-
-2012-01-16  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] ldflags and cflags should take precedence over the existing flags in gtkdoc.py
-        https://bugs.webkit.org/show_bug.cgi?id=76369
-
-        Reviewed by Xan Lopez.
-
-        If there's an installed version of webkit and there are new
-        symbols in the build tree, gtkdoc-scanobj fails due to undefined
-        references, because the env ldflags are given before the local
-        ones.
-
-        * gtk/gtkdoc.py:
-        (GTKDoc._run_gtkdoc_scangobj):
-
-2012-01-15  Pablo Flouret  <pablof@motorola.com>
-
-        Fix compilation errors on build-webkit --debug --no-video on mac.
-        https://bugs.webkit.org/show_bug.cgi?id=75867
-
-        Reviewed by Philippe Normand.
-
-        Add --[no-]video-track to build-webkit, since video track feature
-        depends on video.
-
-        * Scripts/build-webkit:
-
-2012-01-14  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Failing webkit_unit_tests does not make the cr-linux EWS bubble red
-        https://bugs.webkit.org/show_bug.cgi?id=76313
-
-        Reviewed by Adam Barth.
-
-        The exit code of this script should be the exit code of webkit_unit_tests. Tested manually.
-
-        * Scripts/run-chromium-webkit-unit-tests:
-
-2012-01-14  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r105017.
-        http://trac.webkit.org/changeset/105017
-        https://bugs.webkit.org/show_bug.cgi?id=76333
-
-        broke the build (Requested by philn-tp on #webkit).
-
-        * gtk/jhbuild.modules:
-
-2012-01-14  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        [GTK] Include gtk+3 in the jhbuild modules
-        https://bugs.webkit.org/show_bug.cgi?id=76284
-
-        Reviewed by Philippe Normand.
-
-        * gtk/jhbuild.modules: Add some gtk+3 to the jhbuild moduleset.
-
-2012-01-13  Adam Barth  <abarth@webkit.org>
-
-        Remove --dry-run support from webkit-patch
-        https://bugs.webkit.org/show_bug.cgi?id=76300
-
-        Reviewed by Dirk Pranke.
-
-        This is the rest of the patch from Bug 76300.  I landed it separtely
-        because main.py had some stray conflict markers that I needed to clean
-        up first.
-
-        * Scripts/webkitpy/test/main.py:
-        (Tester.parse_args):
-        (Tester._run_tests):
-
-2012-01-13  Adam Barth  <abarth@webkit.org>
-
-        test-webkitpy does not run
-        https://bugs.webkit.org/show_bug.cgi?id=76318
-
-        Unreviewed.
-
-        Looks like some conflict markers got left in the file.
-
-        * Scripts/webkitpy/test/main.py:
-        (Tester.run):
-
-2012-01-13  Adam Barth  <abarth@webkit.org>
-
-        Remove --dry-run support from webkit-patch
-        https://bugs.webkit.org/show_bug.cgi?id=76300
-
-        Reviewed by Dirk Pranke.
-
-        We don't use this functionality for anything, and it doesn't really
-        work.  Someone in #webkit tried using it and and got sad/confused.  We
-        should just remove it.
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        (Git.push_local_commits_to_server):
-        * Scripts/webkitpy/common/checkout/scm/scm.py:
-        (SCM.__init__):
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-        (_shared_test_commit_with_message):
-        (GitSVNTest.test_commit_text_parsing):
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-        (SVN.commit_with_message):
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        (Bugzilla.__init__):
-        (Bugzilla.quips):
-        (Bugzilla.authenticate):
-        (Bugzilla.add_attachment_to_bug):
-        (Bugzilla.add_patch_to_bug):
-        (Bugzilla.create_bug):
-        (Bugzilla.clear_attachment_flags):
-        (Bugzilla.set_flag_on_attachment):
-        (Bugzilla.obsolete_attachment):
-        (Bugzilla.add_cc_to_bug):
-        (Bugzilla.post_comment_to_bug):
-        (Bugzilla.close_bug_as_fixed):
-        (Bugzilla.reassign_bug):
-        (reopen_bug):
-        * Scripts/webkitpy/test/main.py:
-        (Tester.parse_args):
-        (Tester.run_tests):
-
-2012-01-13  David Levin  <levin@chromium.org>
-
-        check-webkit-style: should encourage the use of Own* classes for Windows DC.
-        https://bugs.webkit.org/show_bug.cgi?id=76227
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (check_for_leaky_patterns): The new check.
-        (process_line): Added a call to the new check.
-        (CppChecker): Added the new error type.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (CppStyleTestBase):
-        (CppStyleTestBase.perform_leaky_pattern_check):
-        The check for only leaky pattern errors.
-        (LeakyPatternTest): Test cases.
-
-2012-01-13  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: clean up handling of test directories, QueueStatusServer
-        https://bugs.webkit.org/show_bug.cgi?id=76238
-
-        Reviewed by Adam Barth.
-
-        This patch cleans up a bunch of hacks related to how we find all
-        of the python unit tests and set up the sys.path variable in
-        test-webkitpy.
-
-        This patch changes how test-webkitpy works slightly in that we
-        will now look for test files under Tools/Scripts and Source/WebKit2/Scripts
-        rather than just Tools/Scripts/webkitpy and Source/WebKit2/Scripts/webkit.
-        This greatly simplifies the mapping of paths to module names and
-        appears to have no significant performance impact or other drawbacks.
-
-        There are other ways that we could remove all of the hacks and
-        still have a more flexible mapping of paths to module names, but
-        the ones I've thought of so far add a decent amount of complexity to
-        the implementation and don't seem to buy us much.
-        
-        * QueueStatusServer/__init__.py:
-        * Scripts/test-webkitpy:
-        * Scripts/webkitpy/test/main.py:
-        (Tester._modules_from_paths):
-        (Tester._is_module):
-
-2012-01-13  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: should support classes and individual test names as well as modules
-        https://bugs.webkit.org/show_bug.cgi?id=76233
-
-        Reviewed by Adam Barth.
-
-        The default unittest.main() supports a list of individual
-        TestCase classes or individual tests as well as modules. This
-        change adds support for the same to test-webkitpy, so now you
-        can say
-
-          % test-wekbitpy webkitpy.test.cat_unittest.CatTest
-
-        and
-
-          % test-wekbitpy webkitpy.test.cat_unittest.CatTest.test_basic
-
-        in addition to
-
-          % test-wekbitpy webkitpy.test.cat_unittest
-
-        * Scripts/test-webkitpy:
-        * Scripts/webkitpy/test/cat_unittest.py:
-        * Scripts/webkitpy/test/main.py:
-        (Tester.parse_args):
-        (Tester.run):
-        (Tester):
-        (Tester._find_modules):
-        (Tester._exclude):
-        (Tester._run_tests):
-        (Tester._is_module):
-        (Tester._log_exception):
-
-2012-01-13  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: add basic code coverage support
-        https://bugs.webkit.org/show_bug.cgi?id=76201
-
-        Reviewed by Adam Barth.
-
-        This test adds basic code coverage support to test-webkitpy; if
-        you pass the -c flag, we will generate a new coverage file. We
-        can start simply with this and add more features as necessary.
-
-        This patch requires coverage to be already installed on the
-        machine. I am not auto-installing this for now.
-
-        * Scripts/webkitpy/test/main.py:
-        (Tester.parse_args):
-        (Tester.run_tests):
-
-2012-01-13  Dirk Pranke  <dpranke@chromium.org>
-
-        StatusBubbleTest.test_build_bubble is failing
-        https://bugs.webkit.org/show_bug.cgi?id=76222
-
-        Reviewed by Adam Barth.
-
-        * QueueStatusServer/handlers/statusbubble_unittest.py:
-        (StatusBubbleTest.test_build_bubble):
-
-2012-01-13  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
-
-        nrwt should use multiple http shards
-        https://bugs.webkit.org/show_bug.cgi?id=75958
-
-        Add --max-locked-shards option to the nrwt for manual set
-        the maximum number of the locked shards
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._max_locked_shards):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ShardingTests.get_shards):
-        (ShardingTests.test_multiple_locked_shards):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-
-2012-01-13  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        prepare-ChangeLog: Look for a text editor in a few more variables.
-        https://bugs.webkit.org/show_bug.cgi?id=76289
-
-        Reviewed by Ryosuke Niwa.
-
-        A text editor was looked for only in the CHANGE_LOG_EDITOR and
-        CHANGE_LOG_EDIT_APPLICATION environment variables before falling back
-        to the OS X-specific open(1) command.
-
-        As there does not seem to be a common way of looking for a text editor
-        among the scripts in Tools/Scripts right now, just look at $VISUAL and
-        $EDITOR (set much more often than the other variables in Unix systems)
-        before falling back to open(1).
-
-        * Scripts/prepare-ChangeLog:
-        (openChangeLogs):
-
-2012-01-13  Gabor Rapcsanyi  <rgabor@webkit.org>
-
-        [GTK] gtkdoc.py ignoring LDFLAGS and CFLAGS environment variables
-        https://bugs.webkit.org/show_bug.cgi?id=76269
-
-        Reviewed by Martin Robinson.
-
-        * gtk/gtkdoc.py:
-        (GTKDoc._run_gtkdoc_scangobj):
-
-2012-01-13  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt][WK2]REGRESSION(r104881):It broke hundreds of tests
-        https://bugs.webkit.org/show_bug.cgi?id=76247
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues): Disable mock scrollbars on Qt by default. (workaround)
-
-2012-01-13  Hajime Morrita  <morrita@chromium.org>
-
-        [Mac][DRT] Should support --no-timeout
-        https://bugs.webkit.org/show_bug.cgi?id=76242
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (initializeGlobalsFromCommandLineOptions): Added "--no-timeout" to the options list.
-        (setWaitToDumpWatchdog): Added to encapsulate the waitToDumpWatchdog global variable.
-        (shouldSetWaitToDumpWatchdog): Added to check the useTimeoutWatchdog flag set by the option.
-        * DumpRenderTree/mac/DumpRenderTreeMac.h:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setWaitToDump): Now calls shouldSetWaitToDumpWatchdog() to check the flag.
-
-2012-01-12  Simon Fraser  <simon.fraser@apple.com>
-
-        Mitigate scrollbar differences when running pixel tests
-        https://bugs.webkit.org/show_bug.cgi?id=67217
-
-        Reviewed by Dan Bernstein.
-        
-        Enable mock scrollbars by default for tests.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-
-2012-01-12  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Need a script to run tests in PerformanceTests
-        https://bugs.webkit.org/show_bug.cgi?id=76132
-
-        Reviewed by Adam Barth.
-
-        Add run-perf-tests to run performance tests using parser/resources/runner.js.
-        Unfortunately, there isn't an easy way of telling which test uses which format
-        so hard-code directory that uses Chromium perf-bot style (only inspector perf. tests for now).
-
-        All test outputs are re-formatted to match Chromium perf-bot style.
-
-        * Scripts/run-inspector-perf-tests.py:
-        * Scripts/run-perf-tests: Added.
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner):
-        (PerfTestsRunner.__init__):
-        (PerfTestsRunner._collect_tests):
-        (PerfTestsRunner.run):
-        (PerfTestsRunner._print_status):
-        (PerfTestsRunner._run_tests_set):
-        (PerfTestsRunner._process_chromium_style_test_result):
-        (PerfTestsRunner._should_ignore_line_in_parser_test_result):
-        (PerfTestsRunner._process_parser_test_result):
-        (PerfTestsRunner._run_single_test):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (MainTest.TestDriver.run_test):
-        (create_runner):
-        (run_test):
-        (test_run_test_set):
-        (test_run_test_set_for_parser_tests):
-        (test_collect_tests):
-
-2012-01-12  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: clean up port unit tests in preparation for making port_name mandatory
-        https://bugs.webkit.org/show_bug.cgi?id=76123
-
-        Reviewed by Adam Barth.
-
-        This change updates the unit tests to be more consistent in how
-        ports are created, in preparation for making port_name a
-        mandatory parameter to the constructor and removing any version
-        interpretation from it.
-
-        There should be no functional changes in this patch, but some
-        tests that are no longer relevant have been removed or reworked.
-
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_get_option__default):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux_unittest.py:
-        (ChromiumLinuxPortTest):
-        (ChromiumLinuxPortTest.assert_architecture):
-        (ChromiumLinuxPortTest.test_determine_architecture_fails):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        (ChromiumMacPortTest):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumPortTest):
-        (ChromiumPortTest.test_all_test_configurations):
-        (ChromiumPortTest.TestMacPort.__init__):
-        (ChromiumPortTest.TestLinuxPort.__init__):
-        (ChromiumPortTest.TestWinPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        (ChromiumWinTest):
-        * Scripts/webkitpy/layout_tests/port/efl_unittest.py:
-        (EflPortTest):
-        * Scripts/webkitpy/layout_tests/port/gtk_unittest.py:
-        (GtkPortTest):
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        (MacTest):
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        (MockDRTPortTest):
-        (MockDRTPortTest.make_port):
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort._port_flag_for_scripts):
-        (QtPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        (QtPortTest):
-        (QtPortTest._assert_search_path):
-        (QtPortTest.test_baseline_search_path):
-        (QtPortTest.test_operating_system):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (WebKitPortTest):
-        * Scripts/webkitpy/layout_tests/port/win_unittest.py:
-        (WinPortTest):
-        (WinPortTest._assert_search_path):
-        (WinPortTest.test_baseline_search_path):
-        * Scripts/webkitpy/tool/servers/rebaselineserver_unittest.py:
-        (get_test_config.TestMacPort.__init__):
-
-2012-01-12  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: clean up logging and provide a real --help message
-        https://bugs.webkit.org/show_bug.cgi?id=76142
-
-        Reviewed by Adam Barth.
-
-        This test is mostly more refactoring - it calls objects in
-        unittest directly instead of routing through unittest.main() --
-        in order to gain more control over the logging and to provide a
-        correct --help message. This will also give us a better
-        foundation for adding more feautures down the road.
-
-        This patch adds different levels of logging controlled by the
-        '-s', '-q', and '-v' options (see --help for details), and
-        removes the --verbose-logging option.
-
-        * Scripts/test-webkitpy:
-        * Scripts/webkitpy/test/main.py:
-        (Tester):
-        (Tester.clean_packages):
-        (Tester.__init__):
-        (Tester.parse_args):
-        (Tester.configure):
-        (Tester._configure_logging):
-        (Tester.find_modules):
-        (Tester._exclude):
-        (Tester._modules_from_paths):
-        (Tester.run_tests):
-
-2012-01-12  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Make the new WTF module build on Qt
-        https://bugs.webkit.org/show_bug.cgi?id=76163
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/modules/wtf.prf: Pull in WTF from the new location.
-
-2012-01-12  Vsevolod Vlasov  <vsevik@chromium.org>
-
-        Unreviewed, mac DumpRenderTree fix.
-
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:addMessageToConsole:withSource:]):
-
-2012-01-12  Vsevolod Vlasov  <vsevik@chromium.org>
-
-        WebKitTestRunner should not print console message line number when it is equal to zero.
-        https://bugs.webkit.org/show_bug.cgi?id=76167
-
-        Reviewed by Csaba Osztrogonác.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::willAddMessageToConsole):
-
-2012-01-11  Vsevolod Vlasov  <vsevik@chromium.org>
-
-        Make default console messages line numbers consistent.
-        https://bugs.webkit.org/show_bug.cgi?id=74075
-
-        Reviewed by Pavel Feldman.
-
-        Unset line numbers are not printed to console now.
-        Added Source/WebCore/inspector to efl DumpRenderTree include path.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::didAddMessageToConsole):
-        * DumpRenderTree/efl/CMakeLists.txt:
-        * DumpRenderTree/efl/DumpRenderTreeView.cpp:
-        (onConsoleMessage):
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webViewConsoleMessage):
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:addMessageToConsole:withSource:]):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::javaScriptConsoleMessage):
-        * DumpRenderTree/win/UIDelegate.cpp:
-        (UIDelegate::webViewAddMessageToConsole):
-        * DumpRenderTree/wx/DumpRenderTreeWx.cpp:
-        (LayoutWebViewEventHandler::OnConsoleMessageEvent):
-
-2012-01-10  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: push more logic into webkitpy.test.main, clean up code
-        https://bugs.webkit.org/show_bug.cgi?id=76021
-
-        Reviewed by Eric Seidel.
-
-        I plan to add more functionality to test-webkitpy, but it is
-        difficult to hack on now; this patch is the first of two that
-        brings test-webkitpy more inline with current coding style by
-        pushing more logic into the webkitpy.test.main.Tester class (so
-        that it will be testable itself).
-        
-        There should be no functional changes in this patch.
-
-        * Scripts/test-webkitpy:
-        (_path_from_webkit_root):
-        * Scripts/webkitpy/test/main.py:
-        (Tester):
-        (Tester.init):
-        (Tester.configure_logging):
-        (Tester.configure_logging.filter):
-        (Tester.clean_packages):
-        (Tester.run_tests):
-
-2012-01-11  Wei Jia  <wjia@chromium.org>
-
-        implement layout tests for <video> with media stream
-        https://bugs.webkit.org/show_bug.cgi?id=74882
-
-        Reviewed by Kent Tamura.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/WebUserMediaClientMock.cpp: Added.
-        (WebKit::WebUserMediaClientMock::create):
-        (WebKit::WebUserMediaClientMock::IsMockStream):
-        (WebKit::WebUserMediaClientMock::requestUserMedia):
-        (WebKit::WebUserMediaClientMock::cancelUserMediaRequest):
-        * DumpRenderTree/chromium/WebUserMediaClientMock.h: Added.
-        (WebKit::WebUserMediaClientMock::~WebUserMediaClientMock):
-        (WebKit::WebUserMediaClientMock::WebUserMediaClientMock):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::userMediaClient):
-        (WebViewHost::userMediaClientMock):
-        (WebViewHost::createMediaPlayer):
-        (WebViewHost::mediaStreamUtil):
-        (WebViewHost::testMediaStreamClient):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2012-01-11  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        Fix chromium-win's version remapping to work correctly on Win 7 SP1.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        (ChromiumWinPort.__init__):
-
-2012-01-11  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Sheriffbot build fix. Don't emit empty lines on IRC.
-
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        (LastGreenRevision.execute):
-
-2012-01-11  Ryosuke Niwa  <rniwa@webkit.org>
-
-        last-green-revision should report the revision that succeeded on all bots
-        https://bugs.webkit.org/show_bug.cgi?id=76109
-
-        Reviewed by Adam Barth.
-
-        Add an algorithm to find the last known good revision among the specified bots. For a revision to be
-        considered green by this algorithm, all matching builders must have a successful run at the revision
-        or two consecutive successful runs before and after the revision.
-
-        Also fixed a bug in irc_command that the result wasn't posted on IRC properly and a bug in queries.py
-        that resulted in an exception when the user didn't pass BUILDER_NAME argument.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        (BuildBot._revisions_for_builder):
-        (BuildBot):
-        (BuildBot._find_green_revision):
-        (BuildBot.last_green_revision):
-        * Scripts/webkitpy/common/net/buildbot/buildbot_mock.py:
-        (MockBuildBot.last_green_revision):
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-        (test_revisions_for_builder):
-        (test_find_green_revision):
-        (test_last_green_revision):
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        (LastGreenRevision.execute):
-        * Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py:
-        (SheriffIRCBotTest.test_lgr):
-        * Scripts/webkitpy/tool/commands/queries.py:
-        (LastGreenRevision):
-
-2012-01-11  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, fix build bustage on win32 introduced by r104725.
-
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        (MockDRTPortTest.make_port):
-        (MockChromiumDRTTest.test_pixeltest__fails):
-
-2012-01-11  Jochen Eisinger  <jochen@chromium.org>
-
-        [Chromium] mimic the (old) behavior of the mac port for (re)setting the color profile
-        https://bugs.webkit.org/show_bug.cgi?id=75618
-
-        Eventually, we should get away from setting the display's color profile, as the mac port is doing now.
-
-        Reviewed by Tony Chang.
-
-        * DumpRenderTree/chromium/LayoutTestHelper.mm:
-        (installLayoutTestColorProfile):
-        (restoreUserColorProfile):
-        (main):
-
-2012-01-11  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: fix -v and eliminate some spurious warnings
-        https://bugs.webkit.org/show_bug.cgi?id=76099
-
-        Reviewed by Adam Barth.
-
-        when we added support for --xml output, we broke the -v flag.
-
-        Also, fix the code to swallow a harmless warning from
-        VCSUtils.pm and fix a deprecated warning in jsonchecker.py.
-
-        test-webkitpy is now silent again except for the one known
-        logging issue.
-
-        * Scripts/webkitpy/common/checkout/checkout.py:
-        (Checkout.commit_message_for_this_commit):
-        * Scripts/webkitpy/common/checkout/checkout_unittest.py:
-        (test_commit_message_for_this_commit):
-        * Scripts/webkitpy/style/checkers/jsonchecker.py:
-        (JSONChecker.check):
-        (JSONChecker.line_number_from_json_exception):
-        * Scripts/webkitpy/test/main.py:
-        (Tester.run_tests):
-
-2012-01-11  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: webkitpy.layout_tests.port tests should only use MockSystemHost, not MockHost
-        https://bugs.webkit.org/show_bug.cgi?id=76084
-
-        Reviewed by Adam Barth.
-
-        This will help make it easier to catch layering violations. This
-        change just refactors test code; there are no changes to
-        production code.
-
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.make_port):
-        (PortTest.test_find_no_paths_specified):
-        (PortTest.test_find_one_test):
-        (PortTest.test_find_glob):
-        (PortTest.test_find_with_skipped_directories):
-        (PortTest.test_find_with_skipped_directories_2):
-        (PortTest.test_parse_reftest_list):
-        (PortTest.test_httpd_returns_error_code):
-        (PortTest.test_virtual_methods):
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-        (ChromiumGpuTest.assert_port_works):
-        (ChromiumGpuTest._assert_baseline_path):
-        (ChromiumGpuTest.test_graphics_type):
-        (ChromiumGpuTest.test_default_tests_paths.test_paths):
-        (ChromiumGpuTest.test_test_files):
-        (ChromiumGpuTest.test_test_files.test_paths):
-        (ChromiumGpuTest):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux_unittest.py:
-        (ChromiumLinuxPortTest.assert_architecture):
-        (ChromiumLinuxPortTest.test_check_illegal_port_names):
-        (ChromiumLinuxPortTest.test_determine_architecture_fails):
-        * Scripts/webkitpy/layout_tests/port/driver_unittest.py:
-        (DriverTest.make_port):
-        (DriverTest):
-        (DriverTest.assertVirtual):
-        (DriverTest._assert_wrapper):
-        (DriverTest.test_virtual_driver_methods):
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        (MockDRTPortTest.make_port):
-        (MockDRTPortTest.test_port_name_in_constructor):
-        (MockDRTTest.assertTest):
-        (MockDRTTest.test_main):
-        (MockChromiumDRTTest.test_pixeltest__fails):
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        (QtPortTest._assert_search_path):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (TestWebKitPort.__init__):
-        (WebKitPortUnitTests.test_default_options):
-        (test_runtime_feature_list):
-        (test_test_expectations):
-
-2012-01-11  Ojan Vafai  <ojan@chromium.org>
-
-        Style skipped tests in the flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=76091
-
-        Reviewed by Tony Chang.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        Removed "FLAKY" from this list since we don't ever mark individual runs
-        as flaky. Also deleted an outdated line.
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-
-2012-01-11  Ojan Vafai  <ojan@chromium.org>
-
-        Remove gtest normalization code from the test results server
-        https://bugs.webkit.org/show_bug.cgi?id=76089
-
-        Reviewed by Tony Chang.
-
-        The normalization now happens on the gtest side.
-
-        * TestResultServer/model/jsonresults.py:
-        (JsonResults.merge):
-        * TestResultServer/model/jsonresults_unittest.py:
-        (JsonResultsTest.test_gtest):
-
-2012-01-11  Ojan Vafai  <ojan@chromium.org>
-
-        Be more aggressive about deleting unnecessary results from the test-results-server json files
-        https://bugs.webkit.org/show_bug.cgi?id=76086
-
-        Reviewed by Tony Chang.
-
-        Remove any tests that only contain skip/pass/nodata values whose runtime
-        is less than 5 seconds.
-
-        * TestResultServer/model/jsonresults.py:
-        (JsonResults._normalize_results_json):
-        * TestResultServer/model/jsonresults_unittest.py:
-        (JsonResultsTest.test_merge_remove_test):
-        (JsonResultsTest.test_merge_keep_test_with_all_pass_but_slow_time):
-
-2012-01-11  Ryosuke Niwa  <rniwa@webkit.org>
-
-        last-green-revision should give us per-bot information
-        https://bugs.webkit.org/show_bug.cgi?id=76011
-
-        Reviewed by Adam Barth.
-
-        Rewrote last-green-revision command. Instead of finding a revision for which all bots succeeded,
-        we report the latest green run on each bot from the last 100 runs.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        (BuildBot._fetch_builder_page):
-        (BuildBot):
-        (BuildBot._green_revision_for_builder):
-        (BuildBot.last_green_revision):
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-        (test_green_revision_for_builder):
-        (test_last_green_revision):
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        (LastGreenRevision.execute):
-        * Scripts/webkitpy/tool/commands/queries.py:
-        (LastGreenRevision.execute):
-
-2012-01-11  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: clean up version detection in webkitpy.layout_tests.port
-        https://bugs.webkit.org/show_bug.cgi?id=76016
-
-        Reviewed by Adam Barth.
-
-        This change updates the code in webkitpy.layout_tests.port to
-        use the new os_name and os_version fields on host.platform. This
-        gets layout_tests.port out of the version parsing business. Most
-        of the diffs are just cleaning up test code to accomodate the
-        changes.
-
-        * Scripts/webkitpy/common/system/executive_mock.py:
-        (MockExecutive):
-        (MockExecutive.ignore_error):
-        (MockExecutive2):
-        (MockExecutive2.ignore_error):
-        * Scripts/webkitpy/common/system/platforminfo_mock.py:
-        (MockPlatformInfo.is_mac):
-        (MockPlatformInfo.is_linux):
-        (MockPlatformInfo.is_win):
-        * Scripts/webkitpy/common/system/systemhost_mock.py:
-        (MockSystemHost.__init__):
-        * Scripts/webkitpy/layout_tests/port/apple.py:
-        (ApplePort.__init__):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        (ChromiumMacPort.__init__):
-        (ChromiumMacPort.check_wdiff):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        (ChromiumMacPortTest):
-        (ChromiumMacPortTest.assert_name):
-        (ChromiumMacPortTest.test_versions):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumPortTest.test_all_test_configurations):
-        (ChromiumPortTest.TestMacPort.__init__):
-        (ChromiumPortTest.TestLinuxPort.__init__):
-        (ChromiumPortTest.TestWinPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        (ChromiumWinPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        (ChromiumWinTest):
-        (ChromiumWinTest.assert_name):
-        (ChromiumWinTest.test_versions):
-        (ChromiumWinTest.test_baseline_path):
-        (ChromiumWinTest.test_build_path):
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        (PortFactory._port_name_from_arguments_and_options):
-        (PortFactory.get):
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-        (FactoryTest):
-        (FactoryTest.setUp):
-        (FactoryTest.assert_port):
-        (FactoryTest.test_mac):
-        (FactoryTest.test_win):
-        (FactoryTest.test_google_chrome):
-        (FactoryTest.test_gtk):
-        (FactoryTest.test_qt):
-        (FactoryTest.test_chromium_gpu):
-        (FactoryTest.test_chromium_gpu_linux):
-        (FactoryTest.test_chromium_gpu_mac):
-        (FactoryTest.test_chromium_gpu_win):
-        (FactoryTest.test_chromium_mac):
-        (FactoryTest.test_chromium_linux):
-        (FactoryTest.test_chromium_win):
-        (FactoryTest.test_unknown_specified):
-        (FactoryTest.test_unknown_default):
-        * Scripts/webkitpy/layout_tests/port/google_chrome_unittest.py:
-        (TestGoogleChromePort):
-        (TestGoogleChromePort._verify_baseline_path):
-        (TestGoogleChromePort._verify_expectations_overrides):
-        (TestGoogleChromePort.test_get_google_chrome_port):
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort):
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        (MacTest):
-        (assert_name):
-        (test_tests_for_other_platforms):
-        (test_version):
-        (test_versions):
-        (test_is_version_methods):
-        (test_setup_environ_for_server):
-        (_assert_search_path):
-        (test_show_results_html_file):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (PortTestCase):
-        (PortTestCase.make_port):
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        (WinPort):
-        * Scripts/webkitpy/layout_tests/port/win_unittest.py:
-        (WinPortTest):
-        (WinPortTest.test_show_results_html_file):
-        (WinPortTest._assert_search_path):
-        (WinPortTest._assert_version):
-
-2012-01-11  Hugo Parente Lima  <hugo.lima@openbossa.org>
-
-        [Qt][WK2] Remove workaround introduced into bug 75470
-        https://bugs.webkit.org/show_bug.cgi?id=75889
-
-        Reviewed by Tor Arne Vestbø.
-
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-
-2012-01-10  Dmitry Lomov  <dslomov@google.com>
-
-        [Chromium] Remove obsolete references to WebWorker class.
-        https://bugs.webkit.org/show_bug.cgi?id=76020
-
-        Reviewed by David Levin.
-
-        * DumpRenderTree/chromium/TestWebWorker.h: Removed.
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2012-01-11  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Some css3 filter tests are failing after r104698
-        https://bugs.webkit.org/show_bug.cgi?id=76055
-
-        Reviewed by Simon Hausmann.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::overridePreference): Add WebKitAcceleratedCompositingEnabled preference.
-
-2012-01-11  Tony Chang  <tony@chromium.org>
-
-        Don't remove 0 byte files when running build-webkit --chromium
-        https://bugs.webkit.org/show_bug.cgi?id=75997
-
-        Reviewed by Csaba Osztrogonác.
-
-        If QTDIR is set, isQt() is true even when running build-webkit --chromium.
-
-        * Scripts/webkitdirs.pm:
-        (determineIsQt):
-
-2012-01-10  David Kilzer  <ddkilzer@apple.com>
-
-        Add TestWebKitAPI tests for KURL
-        <http://webkit.org/b/75774>
-
-        Reviewed by Adam Barth.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj: Add a
-        WebCore folder and KURL.cpp source file to the project.
-        * TestWebKitAPI/Tests/WebCore/KURL.cpp: Added.
-        (TestWebKitAPI::WebCore::SetUp): Initialize the main thread
-        during setup since this test doesn't go through WebKit or
-        WebKit2.
-        (TestWebKitAPI::TEST_F): Add two basic tests.
-
-2012-01-10  David Kilzer  <ddkilzer@apple.com>
-
-        Extract common code for comparing WTF::String objects into WTFStringUtilities.h
-
-        Reviewed by Adam Barth.
-
-        Needed for: <http://webkit.org/b/75774> Add TestWebKitAPI tests for KURL
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj: Add
-        WTFStringUtilities.h to the project.
-        * TestWebKitAPI/Tests/WTF/StringBuilder.cpp: Update to use
-        WTFStringUtilities.h.
-        * TestWebKitAPI/WTFStringUtilities.h: Added.
-        (WTF::operator<<):
-
-2012-01-10  Vincent Scheib  <scheib@chromium.org>
-
-        Clarify run-webkit-tests options reset-results and new-baseline
-        https://bugs.webkit.org/show_bug.cgi?id=75993
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-
-2012-01-10  Simon Fraser  <simon.fraser@apple.com>
-
-        Disabled mock scrollbars should draw differently
-        https://bugs.webkit.org/show_bug.cgi?id=75995
-
-        Reviewed by James Robinson.
-
-        When the scrollbar is disabled, paint the entire track of
-        mock scrollbars with a lighter gray, and hide the thumb.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (-[DRTMockScroller drawKnob]):
-        (-[DRTMockScroller drawRect:]):
-
-2012-01-10  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Run webkit_unit_tests as part of webkit-patch build-and-test
-        https://bugs.webkit.org/show_bug.cgi?id=75988
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/config/ports.py:
-        (WebKitPort.run_webkit_unit_tests_command):
-        (WebKitPort):
-        (ChromiumPort.run_webkit_unit_tests_command):
-        (ChromiumPort):
-        * Scripts/webkitpy/common/config/ports_mock.py:
-        (MockPort.run_webkit_unit_tests_command):
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        (DownloadCommandsTest.test_build_and_test):
-        (test_land):
-        (test_land_red_builders):
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        (RunTests.run):
-        * Scripts/webkitpy/tool/steps/runtests_unittest.py:
-
-2012-01-09  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: add os_name, os_version to platforminfo
-        https://bugs.webkit.org/show_bug.cgi?id=75931
-
-        Reviewed by Eric Siedel.
-
-        As a first step in cleaning up the version parsing logic in
-        webkitpy.layout_tests.port, this adds common routines for
-        getting the os_name and os_version fields to the PlatformInfo
-        class. Nothing uses them yet but I've added FIXME's to some of
-        the code that needs to be deleted in the port files.
-
-        * Scripts/webkitpy/common/system/platforminfo.py:
-        (PlatformInfo.__init__):
-        (PlatformInfo):
-        (PlatformInfo._determine_os_name):
-        (PlatformInfo._determine_mac_version):
-        (PlatformInfo._determine_linux_version):
-        (PlatformInfo._determine_win_version):
-        (PlatformInfo.display_name):
-        (PlatformInfo.total_bytes_memory):
-        (PlatformInfo._compute_bytes_from_vm_stat_output):
-        (PlatformInfo.free_bytes_memory):
-        * Scripts/webkitpy/common/system/platforminfo_unittest.py: Added.
-        (TestPlatformInfo):
-        (TestPlatformInfo.make_info):
-        (TestPlatformInfo.make_info.mock_run_command):
-        (TestPlatformInfo.setUp):
-        (TestPlatformInfo.tearDown):
-        (TestPlatformInfo.test_basic):
-        (TestPlatformInfo.integration_test_basic):
-        (TestPlatformInfo.test_display_name_mac):
-        (TestPlatformInfo.test_display_name_win32):
-        (TestPlatformInfo.test_memory_mac):
-        (TestPlatformInfo.test_memory_win32):
-        (TestPlatformInfo.test_determine_os_name):
-        (TestPlatformInfo.test_determine_mac_version):
-        (TestPlatformInfo.test_determine_linux_version):
-        (TestPlatformInfo.test_determine_win_version_from_tuple):
-        (TestPlatformInfo.test_determine_win_version_from_cmd):
-        * Scripts/webkitpy/layout_tests/port/apple.py:
-        (ApplePort.__init__):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        (ChromiumMacPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort):
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        (WinPort):
-
-2012-01-10  Adam Roben  <aroben@apple.com>
-
-        Make it possible to type data: URLs into MiniBrowser on Windows
-
-        Fixes <http://webkit.org/b/75084> Crash when trying to navigate to a data: URL in
-        MiniBrowser on Windows
-
-        Reviewed by Darin Adler.
-
-        * MiniBrowser/win/BrowserWindow.cpp:
-        (BrowserWindow::handleMessage): Instead of checking for an "http://" prefix when deciding
-        whether to prepend "http://", just look for whether the typed URL contains a colon. If it
-        does, we assume it already has a scheme and don't modify it.
-
-2012-01-10  Adam Roben  <aroben@apple.com>
-
-        Make MiniBrowser automatically escape invalid URL characters typed in its URL field
-
-        Fixes <http://webkit.org/b/75086> Crash when typing a data: URL containing double-quotes in
-        MiniBrowser on Windows
-
-        Reviewed by Darin Adler.
-
-        * MiniBrowser/win/BrowserView.cpp:
-        (BrowserView::goToURL): Pass the typed string through
-        CFURLCreateStringByAddingPercentEscapes before trying to create a URL from it.
-
-2012-01-10  Ben Wells  <benwells@chromium.org>
-
-        Adding myself (benwells) to committers.py
-        https://bugs.webkit.org/show_bug.cgi?id=75971
-
-        Reviewed by Ojan Vafai.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-01-10  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        AX: support helpText() in DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=40193
-
-        Reviewed by Chris Fleizach.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::helpText): Implemented.
-
-2012-01-10  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r104572.
-        http://trac.webkit.org/changeset/104572
-        https://bugs.webkit.org/show_bug.cgi?id=75967
-
-        It broke zillion tests (Requested by Ossy on #webkit).
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::EventSender):
-        (EventSender::sendOrQueueEvent):
-        (EventSender::replaySavedEvents):
-        (EventSender::eventFilter):
-        * DumpRenderTree/qt/EventSenderQt.h:
-
-2012-01-10  Hugo Parente Lima  <hugo.lima@openbossa.org>
-
-        [Qt] fast/events/dont-loose-last-event test fails on WK1
-        https://bugs.webkit.org/show_bug.cgi?id=73894
-
-        Reviewed by Simon Hausmann.
-
-        Empty the entire event queue when requested besides using
-        sendEvent instead of postEvent to make sure all events were
-        delivered.
-        This commit also removes not working DRT code to handle drag and drop,
-        for more refs see: https://bugs.webkit.org/show_bug.cgi?id=31332
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::EventSender):
-        (EventSender::sendOrQueueEvent):
-        (EventSender::replaySavedEvents):
-        * DumpRenderTree/qt/EventSenderQt.h:
-
-2012-01-10  No'am Rosenthal  <noam.rosenthal@nokia.com>
-
-        [Qt] Enable CSS_FILTERS in Qt build
-        https://bugs.webkit.org/show_bug.cgi?id=75777
-
-        Add the CSS_FILTERS feature flag to Qt.
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-01-10  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Unreviewed -Werror build fix.
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::MiniBrowserApplication): Re-order initialization to match
-        declaration.
-
-2012-01-10  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Remove dependency to uitools
-        https://bugs.webkit.org/show_bug.cgi?id=75952
-
-        Reviewed by Tor Arne Vestbø.
-
-        QUiLoader is used for creating QLabel/QProgressBar widgets for
-        a layout test, to verify some widget embedding feature. Unfortunately
-        in Qt 5, QUiLoader is part of qttools, which depends on webkit, which
-        depends on qttools. Since we don't really _need_ QUiLoader for our tests,
-        let's break the circular dependency.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::createPlugin):
-        * QtTestBrowser/QtTestBrowser.pro:
-        * QtTestBrowser/launcherwindow.h:
-        * QtTestBrowser/webpage.cpp:
-        (WebPage::createPlugin):
-        * qmake/mkspecs/features/minimal_qt.prf:
-        * qmake/mkspecs/features/uitools.prf: Removed.
-
-2012-01-10  Alexander Færøy  <alexander.faeroy@nokia.com>
-
-        [Qt] Don't expose m_windowOptions as part of the public interface in MiniBrowserApplication
-        https://bugs.webkit.org/show_bug.cgi?id=75894
-
-        Reviewed by Tor Arne Vestbø.
-
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-        (MiniBrowserApplication::windowOptions):
-        * MiniBrowser/qt/main.cpp:
-        (main):
-
-2012-01-10  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] DRT crashes with Qt 5
-        https://bugs.webkit.org/show_bug.cgi?id=75951
-
-        Reviewed by Ossy.
-
-        * DumpRenderTree/qt/fonts.conf: Add missing last-resort font fallback for Qt 5 where
-        Qt relies on font-config to define the default font family.
-
-2012-01-10  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] REGRESSION(r100130): Clean build feature is broken.
-        https://bugs.webkit.org/show_bug.cgi?id=75863
-
-        Reviewed by Tor Arne Vestbø.
-
-        * Scripts/webkitdirs.pm:
-        (buildQMakeProject):
-
-2012-01-10  Zeno Albisser  <zeno@webkit.org>
-
-        [Qt][WK2] Fix keyboard shortcuts in MiniBrowser.
-        https://bugs.webkit.org/show_bug.cgi?id=75885
-
-        In QML events are propagated through parents. But since the
-        WebView may consume key events, a shortcut might never reach
-        the top QtQuickItem.
-        Therefore an application wide event handling function in C++
-        needs to take care of shortcuts for MiniBrowser.
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::reload):
-        (BrowserWindow::focusAddressBar):
-        * MiniBrowser/qt/BrowserWindow.h:
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::notify):
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-
-2012-01-10  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Add --efl alias for --platform=efl to run-webkit-test
-        https://bugs.webkit.org/show_bug.cgi?id=75937
-
-        Reviewed by Andreas Kling.
-        
-        * Scripts/run-webkit-tests: Add --efl alias.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py: Add --efl alias.
-        (parse_args):
-
-2012-01-09  Dan Bernstein  <mitz@apple.com>
-
-        -[DOMRange renderedImageForcingBlackText:] fails with non-user-selectable text
-        https://bugs.webkit.org/show_bug.cgi?id=75920
-
-        Reviewed by Darin Adler.
-
-        * TestWebKitAPI/Tests/mac/RenderedImageFromDOMRange.mm:
-        (TestWebKitAPI::TEST): Added a test for a range in a
-        -webkit-user-select: none; block.
-
-2012-01-09  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy.layout_tests.port.mock_drt_unittest.MockChromiumDRTTest has been failing on cr-win
-        https://bugs.webkit.org/show_bug.cgi?id=75884
-
-        Reviewed by Ryosuke Niwa.
-
-        Fix regression introduced (revealed?) in r104340. Chromium file         
-        url syntax is different on win32 and the test results weren't           
-        expecting that.                                                         
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectations._report_errors):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (test_parse_error_nonfatal):
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        (MockDRTTest.input_line):
-        (MockChromiumDRTTest.test_pixeltest__fails):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests_unittest.py:
-        (TestRebaseliner.make_rebaseliner):
-        (TestRebaseliner.test_one_platform):
-        (TestRebaseliner.test_all_platforms):
-        (TestRebaseliner.test_png_file_with_comment):
-        (TestRebaseliner.test_png_file_with_comment_remove_old_checksum):
-        (TestRebaseliner.test_png_file_with_comment_as_duplicate):
-        (TestRealMain.test_all_platforms):
-
-2012-01-09  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix regression in test-webkitpy introduced by removing the webkitpy/python24 directory.
-
-        Unreviewed, build fix.
-
-        test-webkitpy had a built-in self-test routine to verify that
-        deleting the .pyc files worked correctly. When I removed the
-        python24 directory in r104482, I broke the self-test.
-
-        I have deleted the self-test for now. Since I am reworking
-        test-webkitpy I will make sure the new version is adequately
-        tested.
-
-        * Scripts/test-webkitpy:
-        (configure_logging):
-        (_clean_pyc_files):
-        (_clean_packages):
-        (init):
-
-2012-01-09  Justin Novosad  <junov@chromium.org>
-
-        [Chromium] remove all references to the legacy accelerated 2d Canvas
-        implementation
-        https://bugs.webkit.org/show_bug.cgi?id=75108
-
-        Purging an old settings flag that is no longer referenced
-
-        Reviewed by Darin Fisher.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::resetWebSettings):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::setAccelerated2dCanvasEnabled):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-
-2012-01-09  Adam Roben  <aroben@apple.com>
-
-        Convert Cygwin paths to Windows paths before passing them to DRT
-
-        Fixes <http://webkit.org/b/64468> <rdar://problem/10663409> WIN: DumpRenderTree hangs under
-        NRWT
-
-        I couldn't find a way to test this because I couldn't figure out how to override the
-        cygpath function as it is used by WebKitDriver.
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver._command_from_driver_input): On Cygwin, convert the test's path to a
-        Windows-style path before passing it to DRT.
-
-2012-01-06  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: revamp version checking
-        https://bugs.webkit.org/show_bug.cgi?id=75765
-
-        Reviewed by Adam Barth.
-
-        The version-checking code in webkitpy/python24/versioning seems really
-        awkward and overdesigned, especially since we don't support python 2.4
-        any more.
-
-        In addition, I am tired of getting warnings about Python 2.6 being "a
-        newer release than what is supported" :).
-
-        I'm taking a page from the depot_tools python code and just creating a
-        new webkitpy.common.version_check module that will print a message on
-        stderr and call sys.exit() if we're running an unsupported version.
-
-        * Scripts/check-webkit-style:
-        * Scripts/new-run-webkit-httpd:
-        * Scripts/new-run-webkit-tests:
-        * Scripts/rebaseline-chromium-webkit-tests:
-        * Scripts/test-webkitpy:
-        (configure_logging):
-        (init):
-        * Scripts/webkit-patch:
-        (main):
-        * Scripts/webkitpy/common/system/executive.py:
-        (Executive._child_process_encoding):
-        (Executive._should_encode_child_process_arguments):
-        * Scripts/webkitpy/common/version_check.py: Copied from Tools/Scripts/rebaseline-chromium-webkit-tests.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        * Scripts/webkitpy/python24/__init__.py: Removed.
-        * Scripts/webkitpy/python24/versioning.py: Removed.
-        * Scripts/webkitpy/python24/versioning_unittest.py: Removed.
-
-2012-01-09  Adam Barth  <abarth@webkit.org>
-
-        Remove Chromium Mac CG from the flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=75873
-
-        Reviewed by Ojan Vafai.
-
-        This configuration no longer exists.
-
-        * TestResultServer/static-dashboards/builders.js:
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-        (testOverrideJustBuildType):
-        (testPlatformAndBuildType):
-
-2012-01-06  Adam Roben  <aroben@apple.com>
-
-        Print an error message when NRWT can't run Apache
-
-        Fixes <http://webkit.org/b/75712> NRWT mysteriously exits when Apache returns an error code
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.check_httpd): Print an error message when Apache returns an error code instead of
-        failing silently.
-
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_check_httpd_success): Test that we don't print anything when we successfully
-        run Apache.
-        (PortTest.test_httpd_returns_error_code): Test that we print an error message when Apache
-        fails.
-
-2012-01-09  Gabor Rapcsanyi  <rgabor@webkit.org>
-
-        [Gtk][ARM] Cross compiler buildbot is failing after r103040
-        https://bugs.webkit.org/show_bug.cgi?id=75846
-
-        Reviewed by Philippe Normand.
-
-        * Scripts/webkitdirs.pm:
-        (runAutogenForAutotoolsProjectIfNecessary):
-
-2012-01-09  Alexander Færøy  <ahf@0x90.dk>
-
-        [Qt] Add support for dynamically enabling and disabling touch mocking in the Qt MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=75807
-
-        This patch adds a new icon to navigationbar of the Qt MiniBrowser
-        which allows you to dynamically toggle whether touch mocking is
-        enabled or disabled.
-
-        Reviewed by Tor Arne Vestbø.
-
-        * MiniBrowser/qt/MiniBrowser.qrc:
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::notify):
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-        (WindowOptions::WindowOptions):
-        (WindowOptions::touchMockingEnabled):
-        (WindowOptions::setTouchMockingEnabled):
-        * MiniBrowser/qt/icons/touch.png: Added.
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-
-2012-01-09  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed. Fix make distcheck issues.
-
-        * MiniBrowser/gtk/GNUmakefile.am:
-
-2012-01-08  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r104421.
-        http://trac.webkit.org/changeset/104421
-        https://bugs.webkit.org/show_bug.cgi?id=75816
-
-        Need to rebaseline some tests on Linux (Requested by noamr on
-        #webkit).
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-01-08  Adam Barth  <abarth@webkit.org>
-
-        Remove support for Chromium Mac CG from garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=75814
-
-        Reviewed by Eric Seidel.
-
-        This configuration no longer exists.  This patch is mostly a matter of
-        updating config.js and removing the examples from the unit tests.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js:
-
-2012-01-08  No'am Rosenthal  <noam.rosenthal@nokia.com>
-
-        [Qt] Enable CSS_FILTERS in Qt build
-        https://bugs.webkit.org/show_bug.cgi?id=75777
-
-        Add the CSS_FILTERS feature flag to Qt.
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-01-08  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Categorize bots by ports instead of core/non-core separation
-        https://bugs.webkit.org/show_bug.cgi?id=75766
-
-        Reviewed by Eric Seidel.
-
-        Rename categorizes so as to preserve the original ordering of bots per Eric's suggestion
-        (Chromium still comes before GTK and Qt).
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (loadBuilderConfig):
-        * BuildSlaveSupport/build.webkit.org-config/templates/root.html:
-
-2012-01-08  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Remove the concept of core builders from webkitpy
-        https://bugs.webkit.org/show_bug.cgi?id=75809
-
-        Reviewed by Ryosuke Niwa.
-
-        Treat all bots equally since core/non-core sepration has been removed from build.webkit.org,
-        and remove the relevant code.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        (BuildBot.__init__):
-        (BuildBot._matches_regexps):
-        (BuildBot._builder_statuses_with_names_matching_regexps):
-        (BuildBot.builder_statuses):
-        (BuildBot.failure_map):
-        (BuildBot._latest_builds_from_builders):
-        (BuildBot.last_green_revision):
-        * Scripts/webkitpy/common/net/buildbot/buildbot_mock.py:
-        (MockBuildBot.builder_statuses):
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-        (test_status_parsing):
-        (test_last_green_revision):
-        (test_last_green_revision.mock_builds_from_builders):
-
-2012-01-08  Adam Barth  <abarth@webkit.org>
-
-        Remove Chromium Mac CG concept from webkitpy
-        https://bugs.webkit.org/show_bug.cgi?id=75810
-
-        Reviewed by Ryosuke Niwa.
-
-        This configuration no longer exists.  We can remove all the supporting
-        code from webkitpy.
-
-        * Scripts/webkitpy/common/checkout/baselineoptimizer_unittest.py:
-        (BaselineOptimizerTest.test_move_baselines):
-        (BaselineOptimizerTest.test_chromium_covers_mac_win_linux):
-        (BaselineOptimizerTest.test_chromium_mac_redundant_with_apple_mac):
-        (BaselineOptimizerTest.test_common_directory_includes_root):
-        (BaselineOptimizerTest.test_complex_shadowing):
-        * Scripts/webkitpy/common/config/build.py:
-        (_should_file_trigger_build):
-        * Scripts/webkitpy/common/config/build_unittest.py:
-        (ShouldBuildTest):
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort):
-        (ChromiumPort._generate_all_test_configurations):
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        (_default_tests_paths):
-        (ChromiumGpuLinuxPort.tests):
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-        (ChromiumGpuTest.integration_test_chromium_gpu_mac):
-        (ChromiumGpuTest.assert_port_works):
-        (ChromiumGpuTest.test_baseline_paths):
-        (ChromiumGpuTest.test_graphics_type):
-        (ChromiumGpuTest.test_default_tests_paths):
-        (ChromiumGpuTest.test_test_files):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        (ChromiumMacPort):
-        (ChromiumMacPort.__init__):
-        (ChromiumMacPort.baseline_search_path):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        (ChromiumMacPortTest.test_graphics_type):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumPortTest.test_all_test_configurations):
-        * Scripts/webkitpy/layout_tests/port/dryrun.py:
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        (PortFactory._port_name_from_arguments_and_options):
-        (PortFactory.get):
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-        (FactoryTest.test_chromium_gpu_mac):
-        (FactoryTest.test_chromium_mac):
-        * Scripts/webkitpy/layout_tests/port/google_chrome_unittest.py:
-        (GetGoogleChromePortTest._verify_expectations_overrides):
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        (MockChromiumDRTTest.test_chromium_parse_options):
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests_unittest.py:
-        (test_url_fetcher):
-        (test_zip_factory):
-        (test_archive):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (TestRebaseline.test_rebaseline_expectations):
-
-2012-01-08  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Categorize bots by ports instead of core/non-core separation
-        https://bugs.webkit.org/show_bug.cgi?id=75766
-
-        Reviewed by Adam Barth.
-
-        Get rid of the concept of core/non-core builders, and categorize build bots by ports instead.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (loadBuilderConfig):
-        * BuildSlaveSupport/build.webkit.org-config/templates/root.html:
-
-2012-01-08  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r104403.
-        http://trac.webkit.org/changeset/104403
-        https://bugs.webkit.org/show_bug.cgi?id=75803
-
-        It broke all tests on Qt5 (Requested by Ossy_weekend on
-        #webkit).
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-01-08  No'am Rosenthal  <noam.rosenthal@nokia.com>
-
-        [Qt] Enable CSS_FILTERS in Qt build
-        https://bugs.webkit.org/show_bug.cgi?id=75777
-
-        Add the CSS_FILTERS feature flag to Qt.
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-01-04  Kentaro Hara  <haraken@chromium.org>
-
-        Rewrite the CSS parser of prepare-ChangeLog with unittests.
-        https://bugs.webkit.org/show_bug.cgi?id=75202
-
-        Reviewed by David Kilzer.
-
-        The current CSS parser can just parse simple CSSes like
-
-            foo bar baz {
-                property1: value;
-                property2: value;
-            }
-
-        , and cannot parse comments nor a CSS in which a selector and {
-        appears in different lines. This patch rewrites the CSS parser
-        (i.e. get_selector_line_ranges_for_css()) so that it can parse more CSSes
-        shown in css_unittests.css.
-
-        Test: Scripts/webkitperl/prepare-ChangeLog_unittest/resources/css_unittests.css
-
-        * Scripts/prepare-ChangeLog:
-        (get_selector_line_ranges_for_css):
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/parser_unittests.pl:
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/css_unittests-expected.txt: Added.
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/css_unittests.css: Added.
-        (element1):
-        (element2):
-        (element3):
-        (element4.p):
-        (element5.p.q.r.s):
-        (element6#p):
-        (element7 element8):
-        (element9.p element10.q):
-        (element11#p element12#q):
-        (element13, element14):
-        (.p):
-        (#p):
-        (.p element15 #q element16.r element17#s):
-        (element18:target):
-        (element19):
-        (element20):
-        (element21):
-        (element22):
-
-2012-01-04  Kentaro Hara  <haraken@chromium.org>
-
-        The Perl parser of prepare-ChangeLog can parse here-documents
-        https://bugs.webkit.org/show_bug.cgi?id=73208
-
-        Reviewed by David Kilzer.
-
-        Currently prepare-ChangeLog cannot recognize here-documents in Perl,
-        which results in wrong subroutine names in ChangeLogs.
-        With this patch, prepare-ChangeLog can judge whether the line of "}"
-        is the end of a subroutine or a line inside a here-document.
-
-        Test: Scripts/webkitperl/prepare-ChangeLog_unittest/resources/perl_unittests.pl
-
-        * Scripts/prepare-ChangeLog:
-        (get_function_line_ranges_for_perl):
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/perl_unittests-expected.txt:
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/perl_unittests.pl:
-        Added test cases for here-documents.
-        (func7):
-        (func8):
-        (func9):
-        (func10):
-        (func11):
-        (func12):
-        (func13):
-        (func14):
-        (func15):
-        (func16):
-
-2012-01-08  Kentaro Hara  <haraken@chromium.org>
-
-        Add unittests for the JavaScript parser of prepare-ChangeLog
-        https://bugs.webkit.org/show_bug.cgi?id=75201
-
-        Reviewed by David Kilzer.
-
-        javascript_unittests.js is a unittest for get_function_line_ranges_for_javascript()
-        of prepare-ChangeLog.
-
-        * Scripts/prepare-ChangeLog:
-        (get_function_line_ranges_for_javascript): Before this patch, a string found was just
-        omitted from parsing. Thus,
-
-            str = "foo"
-            function func() {
-            }
-
-        was recognized as equivalent to
-
-            str = function func() {
-            }
-
-        This patch replaces a string with a dummy identifier 'string_appeared_here'
-        to tell the parser that a string appeared there.
-
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/parser_unittests.pl:
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/javascript_unittests-expected.txt: Added.
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/javascript_unittests.js: Added.
-        (func1):
-        (func2):
-        (func3):
-        (func4):
-        (func5):
-        (func6):
-        (func7):
-        (func8):
-        (func9):
-        (func10):
-        (func11):
-        (func12):
-        (funcOverloaded):
-        (Func1.prototype.get x1):
-        (Func1.prototype.get x2):
-        (Func1.prototype.set x1):
-        (Func1.prototype.set x3):
-        (Func2.prototype.func13):
-        (Func2.prototype.func14):
-        (Func2.prototype.func15):
-        (func16.func17):
-        (func16.func18):
-        (func16.func19):
-        (func16):
-
-2012-01-08  David Levin  <levin@chromium.org>
-
-        [chromium] Add layout test support for autosize code in FrameView.
-        https://bugs.webkit.org/show_bug.cgi?id=73631
-
-        Reviewed by Dmitry Titov.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController): Expose the new autoresize method.
-        (LayoutTestController::reset): Set the autoresize mode back to false.
-        (LayoutTestController::enableAutoResizeMode): A way to turn on autoresizing from javascript code in DumpRenderTree.
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::didAutoResize): Handle the autoresize callback so that the outer bounds change appropriately.
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2012-01-07  Zan Dobersek  <zandobersek@gmail.com>
-
-        [WK2][GTK] Each test takes roughly half a second to load
-        https://bugs.webkit.org/show_bug.cgi?id=70699
-
-        Reviewed by Martin Robinson.
-
-        Set the XDG_CACHE_HOME environment variable when testing with
-        WebKitTestRunner. This way the testing is started with a non-existing
-        application cache. If the cache exists and is not empty, the emptying
-        and vacuuming that is performed before every test can consume a lot of
-        time.
-
-        This is just a temporary workaround until it becomes possible to set
-        a desired directory to be used as the application cache location through
-        WebKitWebContext.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort.setup_environ_for_server):
-
-2012-01-07  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] Enable requestAnimationFrame in build-webkit
-        https://bugs.webkit.org/show_bug.cgi?id=75773
-
-        Reviewed by Martin Robinson.
-
-        Enable requestAnimationFrame for the Gtk port.
-
-        * Scripts/build-webkit:
-
-2012-01-06  Jarred Nicholls  <jarred@sencha.com>
-
-        Unreviewed build-webkit fix for Chromium to properly use make if gyp generates Makefiles.
-
-        * Scripts/webkitdirs.pm:
-        (buildChromium):
-        Missing parentheses.
-
-2012-01-06  Simon Fraser  <simon.fraser@apple.com>
-
-        Fix DRT build on case-sensitive file systems.
-
-        Fix case of include of WebDynamicScrollBarsView.h
-        
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-
-2012-01-06  Simon Fraser  <simon.fraser@apple.com>
-
-        Pixel results from DumpRenderTree and WebKitTestRunner don't match because of colorspace issues
-        https://bugs.webkit.org/show_bug.cgi?id=75662
-
-        Reviewed by Dan Bernstein.
-        
-        The pixel results generated by DumpRenderTree and WebKitTestRunner differed because
-        of color profile issues. Fix by keeping everything in device RGB and ensuring that the
-        test window uses the main display's color space, so that the pixel values in the bitmap
-        that gets checksummed are identical to the CSS colors.
-        
-        Removed the code that switches the display profile in DRT, since that is no longer required.
-
-        * DumpRenderTree/PixelDumpSupport.h: Remove unused function declarations.
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (crashHandler): Remove code that switches display profiles.
-        (prepareConsistentTestingEnvironment): Ditto.
-        (dumpRenderTree): Ditto.
-        * DumpRenderTree/mac/PixelDumpSupportMac.mm: Ditto.
-        (createBitmapContext): Use DeviceRGB for the bitmap colorspace.
-        (createBitmapContextFromWebView): Add comment about the colorspace handling.
-        * WebKitTestRunner/cg/TestInvocationCG.cpp:
-        (WTR::createCGContextFromImage): Use a RetainPtr, add comment.
-        (WTR::computeMD5HashStringForContext): Simplify the #ifdefs around the braces.
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (WTR::PlatformWebView::PlatformWebView): Set the window's colorspace to that of the main display.
-        (WTR::PlatformWebView::windowSnapshotImage): Add comment about colorspaces.
-
-2012-01-06  David Kilzer  <ddkilzer@apple.com>
-
-        run-api-tests: specify individual suites and tests on the command-line
-
-        Reviewed by Adam Roben.
-
-        Fixes: <http://webkit.org/b/75065> run-api-tests should be able to run individual suites and tests
-
-        The run-api-tests script will now accept a list of arguments on
-        the command-line that are used as prefix filters.  To run all
-        tests in a suite that starts with "WTF" (WTF and WTF_Vector)
-        use:
-
-            $ run-api-tests WTF
-
-        To run only the tests in the "WTF" suite, not the "WTF_Vector"
-        suite, use:
-
-            $ run-api-tests WTF.
-
-        * Scripts/run-api-tests: Filter tests if any prefix arguments
-        are passed on the command-line.
-
-2012-01-06  David Kilzer  <ddkilzer@apple.com>
-
-        run-api-tests: change internal representation of tests to array of "SuiteName.TestName" strings
-
-        Reviewed by Adam Roben.
-
-        Part of: <http://webkit.org/b/75065> run-api-tests should be able to run individual suites and tests
-
-        * Scripts/run-api-tests:
-        (dumpTestsBySuite): Update to accept array of tests instead of
-        hash data structure.
-        (runTestsBySuite): Ditto.
-        (listAllTests): Rename from populateTests().  Update to return
-        an array of tests instad of the hash data structure.
-
-2012-01-05  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: clean up test/uri conversion routines
-        https://bugs.webkit.org/show_bug.cgi?id=75648
-
-        Reviewed by Eric Seidel.
-
-        This change moves test_to_uri and uri_to_test from the Port
-        class to the Driver class (the routines were only being
-        called by the drivers), and removes a bunch of stale and/or
-        busted logic.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (is_http_test):
-        (test_to_uri):
-        (uri_to_test):
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py:
-        (run_one_test):
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        (MockDRTTest.input_line):
-        (input_line):
-        (expected_output):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (_command_from_driver_input):
-
-2012-01-06  Simon Fraser  <simon.fraser@apple.com>
-
-        Mitigate scrollbar differences when running pixel tests
-        https://bugs.webkit.org/show_bug.cgi?id=67217
-
-        Reviewed by Dan Bernstein.
-        
-        Add an NSScroller subclass that draws mock scrollbars identically
-        to the WebCore mock scrollbar theme, and register it with the
-        WebDynamicScrollbarsView.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (-[DRTMockScroller rectForPart:]):
-        (-[DRTMockScroller drawKnob]):
-        (-[DRTMockScroller drawRect:]):
-        (registerMockScrollbars):
-        (prepareConsistentTestingEnvironment):
-
-2012-01-05  Jon Lee  <jonlee@apple.com>
-
-        Update DRT on Mac to draw resize handles on text areas.
-
-        Reviewed by John Sullivan.
-
-        Enable resize handles on text areas so that we don't have to create two different sets of pixel test results,
-        between WK1 and WK2. This will require rebaselining existing textarea pixel tests.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-
-2012-01-06  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Move listing of include paths and libs to pri files in sources
-
-        Includepaths are sometimes modified by non-Qt contributors so keeping
-        them in files inside Sources makes it more likely that they are updated
-        along with project files for the other ports.
-
-        Using pri files instead of prf files for this also has the benefit that
-        the include() from the main target file can be parsed and followed by
-        Qt Creator -- something that does not work with load().
-
-        Dependency from a target to a library through the WEBKIT variable are
-        handled through forwarding-files in Tools/qmake/mkspecs/modules, which
-        set the source root of the module and include the right pri file.
-
-        Ideally we'd use the variant of include() that takes an optional
-        namespace to read the variables into, or the fromfile() function,
-        but both of these add an overhead of about 40% on the total qmake
-        runtime, due to making a deep copy of all the variables in the
-        project or re-reading all the prf files from scratch.
-
-        Reviewed by Simon Hausmann.
-        Reviewed by Ossy.
-
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/modules/javascriptcore.prf: Added.
-        * qmake/mkspecs/modules/webcore.prf: Added.
-        * qmake/mkspecs/modules/webkit2.prf: Added.
-        * qmake/mkspecs/modules/wtf.prf: Added.
-
-2012-01-06  JungJik Lee  <jungjik.lee@samsung.com>
-
-        [EFL] Add pre-render handling code in EWebLauncher.
-        https://bugs.webkit.org/show_bug.cgi?id=73430
-
-        Reviewed by Zoltan Herczeg.
-
-        Add pre-render handling code by pressing Insert key.
-
-        * EWebLauncher/main.c:
-        (on_key_down):
-
-2012-01-06  Csaba Osztrogonác  <ossy@webkit.org>
-
-        NRWT should use test_expectation.txt on wk2 platforms
-        https://bugs.webkit.org/show_bug.cgi?id=75417
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (path_to_test_expectations_file):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (test_path_to_test_expectations_file):
-
-2012-01-05  Jochen Eisinger  <jochen@chromium.org>
-
-        Don't hardcode expected file URIs in as they depend on the platform
-        https://bugs.webkit.org/show_bug.cgi?id=75666
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        (WinPort.show_results_html_file):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_unexpected_failures):
-        (MainTest.test_results_directory_default):
-        (MainTest.test_results_directory_relative):
-
-2012-01-05  Anders Carlsson  <andersca@apple.com>
-
-        Crash when trying to invalidate the NPRuntimeObjectMap for a plug-in in a subframe
-        https://bugs.webkit.org/show_bug.cgi?id=75667
-        <rdar://problem/10389454>
-
-        Reviewed by Kevin Decker.
-
-        Add an evaluate method to the plug-in test scriptable object that can be used to evaluate a given JS string.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-        (PluginTest::executeScript):
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.h:
-        * DumpRenderTree/TestNetscapePlugIn/Tests/NPRuntimeObjectFromDestroyedPlugin.cpp:
-        (NPRuntimeObjectFromDestroyedPlugin::ScriptableObject::hasMethod):
-        (NPRuntimeObjectFromDestroyedPlugin::ScriptableObject::invoke):
-        (NPRuntimeObjectFromDestroyedPlugin::ScriptableObject::hasProperty):
-
-2012-01-05  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: clean up port factory methods
-        https://bugs.webkit.org/show_bug.cgi?id=75590
-
-        Reviewed by Eric Seidel.
-
-        This change consolidates much of the "factory method" logic
-        of determining which port objects to create for a given set
-        of configurations by merging the separate factory methods in
-        chromium_gpu and google_chrome into PortFactory so that at least
-        all of the logic is in one place.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        (_port_name_from_arguments_and_options):
-        (get):
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-        (test_google_chrome):
-        * Scripts/webkitpy/layout_tests/port/google_chrome.py:
-        (GoogleChromeLinux32Port):
-        (GoogleChromeLinux32Port.baseline_search_path):
-        (test_expectations_overrides):
-        (architecture):
-        (GoogleChromeLinux64Port):
-        (GoogleChromeLinux64Port.baseline_search_path):
-        (GoogleChromeMacPort):
-        (GoogleChromeMacPort.baseline_search_path):
-        (GoogleChromeWinPort):
-        (GoogleChromeWinPort.baseline_search_path):
-        * Scripts/webkitpy/layout_tests/port/google_chrome_unittest.py:
-        (_verify_baseline_path):
-
-2012-01-05  Jochen Eisinger  <jochen@chromium.org>
-
-        Replace webkitpy.common.system.filesystem.file_path_as_url with webkitpy.common.system.path.abspath_to_uri
-        https://bugs.webkit.org/show_bug.cgi?id=75617
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/common/system/filesystem.py:
-        (FileSystem.exists):
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        (MockFileSystem.exists):
-        * Scripts/webkitpy/common/system/filesystem_unittest.py:
-        (GenericFileSystemTests.teardown_generic_test_dir):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.to.show_results_html_file):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_results_directory_absolute):
-
-2012-01-05  Adam Roben  <aroben@apple.com>
-
-        Remove some unnecessary code from old-run-webkit-tests
-
-        Thanks to r104187/r104188, we no longer need to set PATH before launching DumpRenderTree or
-        WebKitTestRunner.
-
-        Fixes <http://webkit.org/b/75640> ORWT unnecessarily sets PATH before launching DRT/WTR on
-        Windows
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/old-run-webkit-tests:
-        (top level):
-        (openDumpTool):
-        Removed calls to setPathForRunningWebKitApp.
-
-2012-01-05  Adam Roben  <aroben@apple.com>
-
-        Teach NRWT to use run-safari to open results.html on Apple's Windows port
-
-        NRWT was trying to use User.open_url, which doesn't work on Cygwin. But run-safari is
-        better, since we always want to open results.html using the user's build of WebKit, not
-        whatever their default browser is.
-
-        Fixes <http://webkit.org/b/75629> <rdar://problem/10648621> NRWT fails to open results.html
-        for Apple's Windows port
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        (WinPort.show_results_html_file): Changed to use run_safari, like MacPort does. Also removed
-        an obsolete comment.
-
-        * Scripts/webkitpy/layout_tests/port/win_unittest.py:
-        (WinPortTest.test_show_results_html_file): Updated expected results.
-
-2012-01-05  Adam Roben  <aroben@apple.com>
-
-        Prepend Safari.exe's path to the command-line passed to CreateProcess
-
-        Safari expects the first argument in the command-line to be the path to Safari.exe itself.
-        This is how things get set up when Safari is launched normally (e.g., by Explorer). Safari
-        thus ignores the first argument when looking for command-line arguments. WebKitLauncherWin
-        was not including the path to Safari.exe in the command-line, so Safari was ignoring the
-        first argument that WebKitLauncherWin was trying to pass to it.
-
-        Fixes <http://webkit.org/b/56571> First argument passed to WebKit.exe is ignored by Safari
-
-        Reviewed by Steve Falkenburg.
-
-        * WebKitLauncherWin/WebKitLauncherWin.cpp:
-        (_tWinMain): Construct a command-line for CreateProcess that first contains a double-quoted
-        path to Safari.exe, then contains any arguments that were passed to WebKitLauncherWin.
-
-2012-01-05  Adam Roben  <aroben@apple.com>
-
-        Stop using explicit memory management in WebKitLauncherWin
-
-        We now use stack-allocated STL objects instead.
-
-        Prep work for <http://webkit.org/b/56571> First argument passed to WebKit.exe is ignored by
-        Safari
-
-        Reviewed by Steve Falkenburg.
-
-        * WebKitLauncherWin/WebKitLauncherWin.cpp:
-        (getStringValue):
-        (applePathFromRegistry):
-        (safariInstallDir):
-        (safariBrowserExe):
-        (_tWinMain):
-        Changed to use stack-allocated STL objects instead of malloc/free.
-
-2012-01-05  Adam Roben  <aroben@apple.com>
-
-        Turn WebKitTestRunner into a stub .exe launcher and a .dll that contains all the real code
-
-        This allows us to add the Safari and Apple Application Support directories to PATH before
-        trying to load WebKit so that SafariTheme.dll, CoreGraphics.dll and friends can be found.
-
-        Fixes <http://webkit.org/b/75486> <rdar://problem/10638124> NRWT fails to launch Apple's
-        Windows port of DumpRenderTree/WebKitTestRunner
-
-        Reviewed by Steve Falkenburg.
-
-        * WebKitTestRunner/WebKitTestRunner.sln: Added WebKitTestRunnerLauncher and
-        ImageDiffLauncher, which I forgot to add to this .sln when that project was created.
-
-        * WebKitTestRunner/Configurations/WebKitTestRunnerCommon.vsprops:
-        * WebKitTestRunner/win/WebKitTestRunner.vcproj:
-        Changed to build WebKitTestRunner.dll instead of WebKitTestRunner.exe.
-
-        * WebKitTestRunner/win/WebKitTestRunnerLauncher.vcproj: Copied from
-        Tools/WebKitTestRunner/win/WebKitTestRunner.vcproj but changed to build
-        the stub launcher.
-
-        * WebKitTestRunner/win/WebKitTestRunnerLauncherCommon.vsprops: Added.
-        * WebKitTestRunner/win/WebKitTestRunnerLauncherDebug.vsprops: Added.
-        * WebKitTestRunner/win/WebKitTestRunnerLauncherDebugAll.vsprops: Added.
-        * WebKitTestRunner/win/WebKitTestRunnerLauncherDebugCairoCFLite.vsprops: Added.
-        * WebKitTestRunner/win/WebKitTestRunnerLauncherProduction.vsprops: Added.
-        * WebKitTestRunner/win/WebKitTestRunnerLauncherRelease.vsprops: Added.
-        * WebKitTestRunner/win/WebKitTestRunnerLauncherReleaseCairoCFLite.vsprops: Added.
-
-        * WebKitTestRunner/win/main.cpp:
-        (dllLauncherEntryPoint): Renamed from main. This is what the stub launcher calls.
-
-2012-01-05  Adam Roben  <aroben@apple.com>
-
-        Turn DumpRenderTree into a stub .exe launcher and a .dll that contains all the real code
-
-        This allows us to add the Safari and Apple Application Support directories to PATH before
-        trying to load WebKit so that SafariTheme.dll, CoreGraphics.dll and friends can be found.
-
-        Part of <http://webkit.org/b/75486> <rdar://problem/10638124> NRWT fails to launch Apple's
-        Windows port of DumpRenderTree/WebKitTestRunner
-
-        Reviewed by Steve Falkenburg.
-
-        * DumpRenderTree/DumpRenderTree.sln: Added DumpRenderTreeLauncher and ImageDiffLauncher,
-        which I forgot to add to this .sln when that project was created.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (dllLauncherEntryPoint): Renamed from main. This is what the stub launcher calls.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/DumpRenderTreeCommon.vsprops:
-        Changed to build DumpRenderTree.dll instead of DumpRenderTree.exe.
-
-        * DumpRenderTree/win/DumpRenderTreeLauncher.vcproj: Added.
-        * DumpRenderTree/win/DumpRenderTreeLauncherCommon.vsprops: Added.
-        * DumpRenderTree/win/DumpRenderTreeLauncherDebug.vsprops: Added.
-        * DumpRenderTree/win/DumpRenderTreeLauncherDebugAll.vsprops: Added.
-        * DumpRenderTree/win/DumpRenderTreeLauncherDebugCairoCFLite.vsprops: Added.
-        * DumpRenderTree/win/DumpRenderTreeLauncherProduction.vsprops: Added.
-        * DumpRenderTree/win/DumpRenderTreeLauncherRelease.vsprops: Added.
-        * DumpRenderTree/win/DumpRenderTreeLauncherReleaseCairoCFLite.vsprops: Added.
-
-        * win/DLLLauncher/DLLLauncherMain.cpp:
-        (modifyPath): Moved code to modify PATH here from main/wWinMain. Changed to also prepend
-        Safari's directory to PATH so that SafariTheme.dll can be found.
-
-        (main):
-        (wWinMain):
-        Changed to use the new modifyPath function.
-
-2012-01-05  Alexander Færøy  <alexander.faeroy@nokia.com>
-
-        [Qt] Never enable FontConfig on Mac OS X
-        https://bugs.webkit.org/show_bug.cgi?id=75616
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-01-05  Alpha Lam  <hclam@chromium.org>
-
-        Unreviewed, rolling out r104159.
-        http://trac.webkit.org/changeset/104159
-        https://bugs.webkit.org/show_bug.cgi?id=75590
-
-        Chromium port GPU tests cannot be executed.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        (get):
-        (_default_tests_paths):
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-        (ChromiumGpuTest.assert_port_works):
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        (PortFactory._port_name_from_arguments_and_options):
-        (PortFactory):
-        (PortFactory._get_kwargs):
-        (PortFactory.get):
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-        (FactoryTest.test_google_chrome.names):
-        (FactoryTest.test_google_chrome):
-        * Scripts/webkitpy/layout_tests/port/google_chrome.py:
-        (GetGoogleChromePort):
-        (GetGoogleChromePort.GoogleChromeLinux32Port):
-        (GetGoogleChromePort.GoogleChromeLinux32Port.baseline_search_path):
-        (GetGoogleChromePort.GoogleChromeLinux32Port.test_expectations_overrides):
-        (GetGoogleChromePort.GoogleChromeLinux32Port.architecture):
-        (GetGoogleChromePort.GoogleChromeLinux64Port):
-        (GetGoogleChromePort.GoogleChromeLinux64Port.baseline_search_path):
-        (GetGoogleChromePort.GoogleChromeLinux64Port.test_expectations_overrides):
-        (GetGoogleChromePort.GoogleChromeLinux64Port.architecture):
-        (GetGoogleChromePort.GoogleChromeMacPort):
-        (GetGoogleChromePort.GoogleChromeMacPort.baseline_search_path):
-        (GetGoogleChromePort.GoogleChromeMacPort.test_expectations_overrides):
-        (GetGoogleChromePort.GoogleChromeWinPort):
-        (GetGoogleChromePort.GoogleChromeWinPort.baseline_search_path):
-        (GetGoogleChromePort.GoogleChromeWinPort.test_expectations_overrides):
-        * Scripts/webkitpy/layout_tests/port/google_chrome_unittest.py:
-        (GetGoogleChromePortTest._verify_baseline_path):
-        (GetGoogleChromePortTest._verify_expectations_overrides):
-
-2012-01-05  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: clean up port factory methods
-        https://bugs.webkit.org/show_bug.cgi?id=75590
-
-        Reviewed by Eric Seidel.
-
-        This change consolidates much of the "factory method" logic
-        of determining which port objects to create for a given set
-        of configurations by merging the separate factory methods in
-        chromium_gpu and google_chrome into PortFactory so that at least
-        all of the logic is in one place.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        (_port_name_from_arguments_and_options):
-        (get):
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-        (test_google_chrome):
-        * Scripts/webkitpy/layout_tests/port/google_chrome.py:
-        (GoogleChromeLinux32Port):
-        (GoogleChromeLinux32Port.baseline_search_path):
-        (test_expectations_overrides):
-        (architecture):
-        (GoogleChromeLinux64Port):
-        (GoogleChromeLinux64Port.baseline_search_path):
-        (GoogleChromeMacPort):
-        (GoogleChromeMacPort.baseline_search_path):
-        (GoogleChromeWinPort):
-        (GoogleChromeWinPort.baseline_search_path):
-        * Scripts/webkitpy/layout_tests/port/google_chrome_unittest.py:
-        (_verify_baseline_path):
-
-2012-01-04  Adam Roben  <aroben@apple.com>
-
-        Turn ImageDiff into a stub .exe launcher and a .dll that contains all the real code
-
-        This allows us to add the Apple Application Support directory to PATH before trying to load
-        WebKit so that CoreGraphics.dll and friends can be found.
-
-        Fixes <http://webkit.org/b/75572> ImageDiff.exe can't be run without first munging PATH
-
-        Reviewed by Anders Carlsson.
-
-        * DumpRenderTree/win/ImageDiff.vcproj:
-        * DumpRenderTree/win/ImageDiffCommon.vsprops:
-        Changed to build ImageDiff.dll instead of ImageDiff.exe.
-
-        * DumpRenderTree/win/ImageDiffLauncher.vcproj: Copied from
-        Tools/DumpRenderTree/win/ImageDiff.vcproj but changed to build the stub launcher.
-
-        * DumpRenderTree/win/ImageDiffLauncherCommon.vsprops: Added.
-        * DumpRenderTree/win/ImageDiffLauncherDebug.vsprops: Added.
-        * DumpRenderTree/win/ImageDiffLauncherDebugAll.vsprops: Added.
-        * DumpRenderTree/win/ImageDiffLauncherDebugCairoCFLite.vsprops: Added.
-        * DumpRenderTree/win/ImageDiffLauncherProduction.vsprops: Added.
-        * DumpRenderTree/win/ImageDiffLauncherRelease.vsprops: Added.
-        * DumpRenderTree/win/ImageDiffLauncherReleaseCairoCFLite.vsprops: Added.
-
-        * DumpRenderTree/win/ImageDiffWin.cpp: Added.
-        (dllLauncherEntryPoint): This function is called by the stub launcher and just calls through
-        to main.
-
-        * win/DLLLauncher/DLLLauncherMain.cpp:
-        (main):
-        (wWinMain):
-        Added support for launching console programs. When USE_CONSOLE_ENTRY_POINT is defined, the
-        stub launcher acts as a console program and calls a console version of
-        dllLauncherEntryPoint.
-
-2012-01-04  Adam Roben  <aroben@apple.com>
-
-        Turn MiniBrowser into a stub .exe launcher and a .dll that contains all the real code
-
-        This allows us to add the Apple Application Support directory to PATH before trying to load
-        WebKit so that CoreGraphics.dll and friends can be found.
-
-        Fixes <http://webkit.org/b/68576> <rdar://problem/10163853> MiniBrowser fails to launch when
-        double-clicked
-
-        Reviewed by Anders Carlsson.
-
-        * MiniBrowser/MiniBrowser.vcproj:
-        * MiniBrowser/Configurations/MiniBrowserCommon.vsprops:
-        Changed to build MiniBrowser.dll instead of MiniBrowser.exe.
-
-        * MiniBrowser/Configurations/MiniBrowserLauncherCommon.vsprops: Added.
-        * MiniBrowser/Configurations/MiniBrowserLauncherDebug.vsprops: Added.
-        * MiniBrowser/Configurations/MiniBrowserLauncherDebugAll.vsprops: Added.
-        * MiniBrowser/Configurations/MiniBrowserLauncherDebugCairoCFLite.vsprops: Added.
-        * MiniBrowser/Configurations/MiniBrowserLauncherProduction.vsprops: Added.
-        * MiniBrowser/Configurations/MiniBrowserLauncherRelease.vsprops: Added.
-        * MiniBrowser/Configurations/MiniBrowserLauncherReleaseCairoCFLite.vsprops: Added.
-
-        * MiniBrowser/MiniBrowserLauncher.vcproj: Copied from Tools/MiniBrowser/MiniBrowser.vcproj
-        but changed to build the stub launcher.
-
-        * MiniBrowser/win/main.cpp: Moved the /manifestdependency code to DLLLauncherMain.cpp, since
-        it needs to be compiled into the .exe instead of the .dll.
-        (DllMain): Added. We use this to store the DLL's HINSTANCE.
-        (dllLauncherEntryPoint): Renamed from _tWinMain. This is what gets called by the
-        DLLLauncherMain code.
-
-        * win/DLLLauncher/DLLLauncherMain.cpp: Moved the /manifestdependency code from MiniBrowser
-        to here.
-
-2012-01-04  Adam Roben  <aroben@apple.com>
-
-        Make WinLauncher's window frame respond to clicks/drags again
-
-        Fixes <http://webkit.org/b/75562> REGRESSION (r84990): Can't drag WinLauncher by its title
-        bar when Aero is disabled
-
-        Reviewed by Brent Fulgham.
-
-        * WinLauncher/WinLauncher.cpp:
-        (WndProc): Always call up to our parent wndproc when we don't handle WM_NCHITTEST ourselves.
-        Also removed an unnecessary "break" keyword.
-
-2012-01-04  Adam Roben  <aroben@apple.com>
-
-        Turn WinLauncher into a stub .exe launcher and a .dll that contains all the real code
-
-        This allows us to add the Apple Application Support directory to PATH before trying to load
-        WebKit so that CoreGraphics.dll and friends can be found. Eventually all our WebKit apps
-        should use this mechanism.
-
-        Fixes <http://webkit.org/b/68578> <rdar://problem/10163861> WinLauncher fails to launch when
-        double-clicked
-
-        Reviewed by Anders Carlsson.
-
-        * WinLauncher/WinLauncher.cpp: Removed InitInstance.
-        (DllMain): Added. Stores the DLL HINSTANCE in the global hInst variable. This used to be
-        done by the now-removed InitInstance function.
-        (dllLauncherEntryPoint): Renamed from _tWinMain. This is the function that our stub launcher
-        calls. Merged code from InitInstance into this function, and change to use the global hInst
-        variable, which corresponds to WinLauncher.dll, rather than the HINSTANCE passed into this
-        function, which corresponds to WinLauncher.exe.
-
-        * WinLauncher/WinLauncher.vcproj:
-        * WinLauncher/WinLauncherCommon.vsprops:
-        Changed to build WinLauncher.dll instead of WinLauncher.exe.
-
-        * WinLauncher/WinLauncherLauncher.rc: Added.
-        * WinLauncher/WinLauncherLauncherResource.h: Added.
-        This just references the WinLauncher.ico file to set the application icon (though it looks
-        like that's a default icon).
-
-        * WinLauncher/WinLauncherLauncher.vcproj: Copied from Tools/WinLauncher/WinLauncher.vcproj
-        but changed to build WinLauncher.exe using the new DLLLauncherMain.cpp file.
-
-        * WinLauncher/WinLauncherLauncherCommon.vsprops: Added.
-        * WinLauncher/WinLauncherLauncherDebug.vsprops: Added.
-        * WinLauncher/WinLauncherLauncherDebugAll.vsprops: Added.
-        * WinLauncher/WinLauncherLauncherDebugCairoCFLite.vsprops: Added.
-        * WinLauncher/WinLauncherLauncherProduction.vsprops: Added.
-        * WinLauncher/WinLauncherLauncherRelease.vsprops: Added.
-        * WinLauncher/WinLauncherLauncherReleaseCairoCFLite.vsprops: Added.
-
-        * win/DLLLauncher/DLLLauncherMain.cpp: Added.
-        (enableTerminationOnHeapCorruption): Uses HeapSetInformation to tell Windows to kill the
-        program if it detects heap corruption.
-        (getStringValue): Helper function to read a string value from the registry.
-        (applePathFromRegistry): Helper function to read the InstallDir for a given Apple
-        application from the registry.
-        (appleApplicationSupportDirectory): Helper function to return the path to the Apple
-        Application Support directory.
-        (copyEnvironmentVariable): Helper function to copy an environment variable's value.
-        (prependPath): Helper function to prepend a directory to the PATH.
-        (fatalError): Helper function to display an error to the user.
-        (wWinMain): Add Apple Application Support to the PATH, then load our DLL and call its
-        dllLauncherEntryPoint function.
-
-2012-01-05  Kentaro Hara  <haraken@chromium.org>
-
-        prepare-ChangeLog cannot parse python code that nests classes and defs
-        https://bugs.webkit.org/show_bug.cgi?id=75524
-
-        Reviewed by Ryosuke Niwa.
-
-        This patch fixes the python parser of prepare-ChangeLog so that it can parse
-        python code that nests classes and defs, like this:
-
-        class C:
-            pass
-            def f():
-                pass
-            pass
-
-        Also, this patch fixes the python parser so that it inserts a dummy line
-        at the end of the file to pop out all popped scopes.
-
-        * Scripts/prepare-ChangeLog:
-        (get_function_line_ranges_for_python):
-
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/python_unittests.py:
-        Added test cases that nest classes and defs.
-        (func7):
-        (func7.func8):
-        (func7.func8.func9):
-        (Class2):
-        (Class2.Class3):
-        (Class2.Class3.Class4):
-        (Class5):
-        (Class5.func10):
-        (Class5.func11):
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/python_unittests-expected.txt:
-
-2012-01-05  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Rename webkit_web_view_load_alternate_html as webkit_web_view_replace_content in WebKit2 GTK+
-        https://bugs.webkit.org/show_bug.cgi?id=75433
-
-        Reviewed by Martin Robinson.
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (webViewLoadFailed): Reset the progress bar when load fails.
-        (browserWindowConstructed): Connect to load-failed signal.
-
-2012-01-04  Dan Bernstein  <mitz@apple.com>
-
-        Add a --target-web-process option to the debug-* scripts. When specified, the scripts will
-        start WebProcess under gdb and WebProcess will then run the client executable.
-
-        This is the Tools part of fixing <http://webkit.org/b/75444> Debugging WebProcess requires running a UI process first and waiting to attach
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/webkitdirs.pm:
-        (shouldTargetWebProcess): Added.
-        (determineShouldTargetWebProcess): Added. Checks for --target-web-process.
-        (execMacWebKitAppForDebugging): Changed to target gdb at WebProcess and pass the path to the
-        app using the -client-executable option if targeting the web process.
-
-2012-01-04  Viatcheslav Ostapenko  <ostapenko.viatcheslav@nokia.com>
-
-        Adding myself to committers list.
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-01-04  David Kilzer  <ddkilzer@apple.com>
-
-        Revert fix for Bug 75064: TestWebKitAPI: initialize the main thread before running tests
-
-        This reverts commit r103546.
-
-        * TestWebKitAPI/TestsController.cpp:
-        (TestWebKitAPI::TestsController::TestsController):
-
-2012-01-04  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Move WebMimeRegistry and dependencies to Source/Platform
-        https://bugs.webkit.org/show_bug.cgi?id=74583
-
-        Reviewed by Darin Fisher.
-
-        Teaches the WEBKIT_EXPORT check about the chromium WebKit platform API header location.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (check_function_definition):
-
-2012-01-04  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Fix link order of static libraries and unbreak QtWin32
-
-        We were keeping the correct static link order between the intermediate
-        WebKit libraries, but not the internal dependencies for each of those
-        libraries. The load() will in some instances mess with LIBS, so we need
-        to ensure that the dependent libraries are added after the library we
-        are linking against.
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2012-01-04  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Introduce new qmake variable 'WEBKIT' for signaling dependencies
-
-        The custom qmake variable 'WEBKIT' is used for signaling that a
-        target depends in some way on other subproject of the WebKit
-        project. For now this is limited to the set of intermediate
-        libraries: wtf, javascriptcore, webcore, and webkit2.
-
-        This replaces the previous convension of using load(foo) for
-        just include paths, and CONFIG += foo to also link against foo.
-
-        Adding a dependency results in additional include paths being
-        available, and potentially linking to the library. This is
-        decided by the build system based on conditions such as what
-        kind of target is being built and the general build config.
-
-        An advantage to his approach is that it simplifies the individual
-        foo.prf files, for example by allowing us to use INCLUDEPATH +=
-        and LIBS += as normal instead of prepending.
-
-        Reviewed by Simon Hausmann.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * QtTestBrowser/QtTestBrowser.pro:
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-        * WebKitTestRunner/Target.pri:
-        * qmake/README:
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/functions.prf:
-        * qmake/mkspecs/features/javascriptcore.prf:
-        * qmake/mkspecs/features/qtwebkit.prf:
-        * qmake/mkspecs/features/webcore.prf:
-        * qmake/mkspecs/features/webkit2.prf:
-        * qmake/mkspecs/features/wtf.prf:
-
-2012-01-04  Alexander Færøy  <ahf@0x90.dk>
-
-        [Qt] Add UI for JavaScript Prompt dialog in the Qt MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=75488
-
-        Reviewed by Tor Arne Vestbø.
-
-        * MiniBrowser/qt/MiniBrowser.qrc:
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-        * MiniBrowser/qt/qml/Dialog.qml:
-        * MiniBrowser/qt/qml/DialogLineInput.qml: Copied from Tools/MiniBrowser/qt/qml/Dialog.qml.
-        * MiniBrowser/qt/qml/PromptDialog.qml: Copied from Tools/MiniBrowser/qt/qml/Dialog.qml.
-
-2012-01-04  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Use rpath for WTR's InjectedBundle to pick up the right QtWebKit
-
-        It wasn't really a problem at runtime since the right QtWebKit was
-        already loaded as a dependency of the web process, but the ldd output
-        would still be busted.
-
-        Reviewed by Simon Hausmann.
-
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-
-2012-01-04  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Move use of $$qtLibraryTarget() to a single place
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/webcore.prf:
-
-2012-01-04  Mary Wu  <mary.wu@torchmobile.com.cn>
-
-        Enable DOWNLOAD_ATTRIBUTE in BlackBerry porting
-        https://bugs.webkit.org/show_bug.cgi?id=75238
-
-        Reviewed by Antonio Gomes.
-
-        Add ENABLE_DOWNLOAD_ATTRIBUTE webkit feature into the build script so that 
-        it could initiate download directly if it has the download attribute in the link 
-        and doesn't need to open new blank page for the target="_blank". Enabling this 
-        feature in the BlackBerry porting also prepares for later blob feature implementation.
-
-        * Scripts/build-webkit: Modified to handle ENABLE_DOWNLOAD_ATTRIBUTE. Make it default on
-        for the BlackBerry porting.
-
-2012-01-03  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Fix a runtime warning when hovering hyperlink auditing setting in MiniBroweser settings dialog
-        https://bugs.webkit.org/show_bug.cgi?id=75475
-
-        Reviewed by Martin Robinson.
-
-        The problem is that the property blurb contains <a ping> and tree
-        view uses gtk_tooltip_set_markup() internally, so we need to
-        escape the text.
-
-        * MiniBrowser/gtk/BrowserSettingsDialog.c:
-        (browserSettingsDialogConstructed): Escape property blurb before
-        storing it in the GtkTreeModel.
-
-2012-01-03  Jochen Eisinger  <jochen@chromium.org>
-
-        When showing results.html pass a correct URL to webbrowser.open
-        https://bugs.webkit.org/show_bug.cgi?id=75438
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/system/filesystem.py:
-        (file_path_as_url):
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        (file_path_as_url):
-        * Scripts/webkitpy/common/system/filesystem_unittest.py:
-        (test_file_path_as_url):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (show_results_html_file):
-        * Scripts/webkitpy/layout_tests/port/win_unittest.py:
-        (test_show_results_html_file):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (test_results_directory_relative):
-
-2012-01-03  Ojan Vafai  <ojan@chromium.org>
-
-        shrink the header on the flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=65153
-
-        Reviewed by Adam Roben.
-
-        Move some of the "show" links to be to the right of the header
-        instead of below the header when they content they're showing
-        is hidden. That way we don't waste vertical space on them.
-
-        No new tests. This code is covered by existing tests.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-
-2012-01-03  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Add a tool to analyze change logs
-        https://bugs.webkit.org/show_bug.cgi?id=72243
-
-        Reviewed by Eric Seidel.
-
-        Add the initial implementation of analyze-changelog command. This version supports parsing multiple changelogs
-        in a single directory and summarizes the result in json files. It also copies summary.html to the output directory
-        for visualizing json files.
-
-        Usage: webkit-patch analyze-changelog [--changelog-count N] <CHANGELOG_DIR> <OUTPUT_DIR>
-        where CHANGELOG_DIR is the directory to look for changelogs, OUTPUT_DIR is the directory into which the tool
-        generates json files, and N is the number of changelogs to parse.
-
-        * Scripts/webkitpy/common/config/contributionareas.py: Added names().
-        * Scripts/webkitpy/common/system/filesystem_mock.py: Added readline and iterator support to ReadableTextFileObject.
-        * Scripts/webkitpy/tool/commands/__init__.py:
-        * Scripts/webkitpy/tool/commands/analyzechangelog.py: Added.
-        * Scripts/webkitpy/tool/commands/analyzechangelog_unittest.py: Added.
-        * Scripts/webkitpy/tool/commands/data/summary.html: Added.
-        * Scripts/webkitpy/tool/steps/options.py:
-
-2012-01-03  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Add a tool to analyze change logs
-        https://bugs.webkit.org/show_bug.cgi?id=72243
-
-        Reviewed by Eric Seidel.
-
-        Add the initial implementation of analyze-changelog command. This version supports parsing multiple changelogs
-        in a single directory and summarizes the result in json files. It also copies summary.html to the output directory
-        for visualizing json files.
-
-        Usage: webkit-patch analyze-changelog [--changelog-count N] <CHANGELOG_DIR> <OUTPUT_DIR>
-        where CHANGELOG_DIR is the directory to look for changelogs, OUTPUT_DIR is the directory into which the tool
-        generates json files, and N is the number of changelogs to parse.
-
-        * Scripts/webkitpy/common/config/contributionareas.py: Added names().
-        * Scripts/webkitpy/common/system/filesystem_mock.py: Added readline and iterator support to ReadableTextFileObject.
-        * Scripts/webkitpy/tool/commands/__init__.py:
-        * Scripts/webkitpy/tool/commands/analyzechangelog.py: Added.
-        * Scripts/webkitpy/tool/commands/analyzechangelog_unittest.py: Added.
-        * Scripts/webkitpy/tool/commands/data/summary.html: Added.
-        * Scripts/webkitpy/tool/steps/options.py:
-
-2012-01-03  Adam Roben  <aroben@apple.com>
-
-        Make Port subclasses override the operating_system method rather than setting an attribute
-
-        Without this patch, any use of Port.operating_system() within a port's __init__ method would
-        return the default value ("mac"). This was confusing the version-checking logic inside
-        ApplePort.__init__ on Windows.
-
-        Fixes <http://webkit.org/b/75479> <rdar://problem/10637385> REGRESSION (r102161): NRWT
-        crashes on launch on Windows 7 SP1
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/layout_tests/port/apple.py:
-        (ApplePort.__init__): Replaced uses of self._operating_system with self.operating_system().
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.__init__): Removed code that set the self._operating_system attribute. Subclasses
-        should now override the operating_system method instead.
-        (Port.operating_system): Changed to always return "mac". Subclasses should override to
-        return something else.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        (ChromiumLinuxPort.__init__):
-        (ChromiumLinuxPort.operating_system):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        (ChromiumMacPort.__init__):
-        (ChromiumMacPort.operating_system):
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        (ChromiumWinPort.__init__):
-        (ChromiumWinPort.operating_system):
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.__init__):
-        (MacPort.operating_system):
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        (WinPort.__init__):
-        (WinPort.operating_system):
-        Changed to override the operating_system method rather than setting the _operating_system
-        attribute, since setting the attribute isn't sufficient for code inside __init__ methods.
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort.__init__):
-        (QtPort._path_to_webcore_library):
-        Changed to use self.operating_system() instead of self._operating_system, for consistency
-        with other Port-related code.
-
-        (QtPort.operating_system): Added this override of Port.operating_system that returns the
-        value we determined in our __init__ method.
-
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort.operating_system): Added this override of Port.operating_system that returns the
-        value we determined in our __init__ method.
-
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_operating_system):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux_unittest.py:
-        (ChromiumLinuxPortTest.test_operating_system):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        (ChromiumMacPortTest.test_operating_system):
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        (ChromiumWinPortTest.test_operating_system):
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        (MacPortTest.test_operating_system):
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        (QtPortTest.test_operating_system):
-        * Scripts/webkitpy/layout_tests/port/win_unittest.py:
-        (WinPortTest.test_operating_system):
-        Test that all ports return the expected operating system string.
-
-2012-01-03  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        [GTK] run-gtk-test should ignore files with names without a "test" or "Test" prefix
-        https://bugs.webkit.org/show_bug.cgi?id=75474
-
-        Reviewed by Philippe Normand.
-
-        * Scripts/run-gtk-tests: Ignore files whose name does not start
-        with a "test" (for WK1's API tests) or a "Test" prefix (for WK2).
-
-2012-01-03  Alexander Færøy  <alexander.faeroy@nokia.com>
-
-        [Qt] Add UI for JavaScript Confirmation dialog in the Qt MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=75472
-
-        Reviewed by Tor Arne Vestbø.
-
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * MiniBrowser/qt/MiniBrowser.qrc:
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-        * MiniBrowser/qt/qml/ConfirmDialog.qml: Added.
-
-2012-01-03  Alexander Færøy  <alexander.faeroy@nokia.com>
-
-        [Qt] Add UI for JavaScript Alert dialog in the Qt MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=75471
-
-        Reviewed by Tor Arne Vestbø.
-
-        Add simple UI for JavaScript Alert dialogs. This patch also adds a
-        simple DialogButton QML type and a Dialog QML type which will be
-        reusable for other JavaScript dialogs.
-
-        * MiniBrowser/qt/MiniBrowser.qrc:
-        * MiniBrowser/qt/qml/AlertDialog.qml: Added.
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-        * MiniBrowser/qt/qml/Dialog.qml: Added.
-        * MiniBrowser/qt/qml/DialogButton.qml: Added.
-
-2012-01-03  Rafael Brandao  <rafael.lobo@openbossa.org>
-
-        [Qt][WK2] MiniBrowser doesn't show url bar
-        https://bugs.webkit.org/show_bug.cgi?id=75470
-
-        Reviewed by Tor Arne Vestbø.
-
-        * MiniBrowser/qt/qml/BrowserWindow.qml: Remove clipping until it is fixed
-        on QtDeclarative (QTBUG-23422).
-
-2012-01-03  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Simplify loader client WebKit2 GTK+ API
-        https://bugs.webkit.org/show_bug.cgi?id=74605
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * gtk/generate-gtkdoc: Ignore WebKitWebLoaderClient since it's now
-        private API.
-
-2012-01-03  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Clean up detection of fontconfig
-
-        We decide in features.prf whether or not fontconfig is available, and
-        set the HAVE_FONTCONFIG define accordingly. All leaf project files
-        should use this define to decide whether or not to link against
-        fontconfig, not do their own detection.
-
-        We don't need to add link_pkgconfig to CONFIG in each project file,
-        as we selectivly enable that configuration in defaults_post when
-        needed.
-
-        Reviewed by Ossy.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * QtTestBrowser/QtTestBrowser.pro:
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-        * qmake/mkspecs/features/unix/default_post.prf:
-        * qmake/mkspecs/features/unix/default_pre.prf:
-
-2012-01-03  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Introduce qmake replace function for the active build config
-
-        Reviewed by Ossy.
-
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/functions.prf:
-
-2012-01-03  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Use gdk_screen_get_monitor_workarea() when available for screenAvailableRect()
-        https://bugs.webkit.org/show_bug.cgi?id=75435
-
-        Reviewed by Martin Robinson.
-
-        * GNUmakefile.am: Make sure DRT links to X11.
-        * WebKitTestRunner/GNUmakefile.am: Make sure WTR links to X11.
-
-2011-12-04  Philippe Normand  <pnormand@igalia.com>
-
-        [WK2][GTK] WebSettings support in MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=73773
-
-        Reviewed by Martin Robinson.
-
-        Patch heavily inspired from the WebKit GtkLauncher to support
-        command-line WebSettings. Example: --enable-fullscreen=TRUE.
-        The full list of options can be consulted with --help-websettings.
-
-        * MiniBrowser/gtk/main.c:
-        (loadURI):
-        (parseOptionEntryCallback):
-        (isValidParameterType):
-        (getOptionEntriesFromWebKitSettings):
-        (addSettingsGroupToContext):
-        (main):
-
-2012-01-02  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] GtkLauncher settings improvements
-        https://bugs.webkit.org/show_bug.cgi?id=75439
-
-        Reviewed by Martin Robinson.
-
-        * GtkLauncher/main.c:
-        (filenameToURL): We can use NULL in C.
-        (isValidParameterType): Utility function to filter GParamTypes
-        that can be edited.
-        (getOptionEntriesFromWebKitWebSettings): Avoid handling
-        construct-only properties and use the isValidParameterType
-        function. Makes the code a bit cleaner.
-
-2012-01-02  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        [EFL] Remove whitespace/declaration style exception
-        https://bugs.webkit.org/show_bug.cgi?id=75424
-
-        Reviewed by David Levin.
-
-        Remove *whitespace/eclaration* style rule. However, EWebLauncher and MiniBrowser are EFL simple
-        application. So, they still need to use EFL coding style.
-
-        * Scripts/webkitpy/style/checker.py:
-
-2012-01-02  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Add a way to change web view settings in MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=71568
-
-        Reviewed by Philippe Normand.
-
-        Add a preferences button to the toolbar that shows a dialog to
-        change settings of the current web view. It uses a GtkTreeView
-        with a custom cell renderer to support multiple types of values.
-
-        * MiniBrowser/gtk/BrowserCellRendererVariant.c: Added.
-        (browserCellRendererVariantFinalize):
-        (browserCellRendererVariantGetProperty):
-        (browserCellRendererVariantSetModeForValue):
-        (browserCellRendererVariantSetProperty):
-        (browserCellRendererVariantGetRendererForValue):
-        (browserCellRendererVariantCellRendererTextEdited):
-        (browserCellRendererVariantCellRendererSpinEdited):
-        (browserCellRendererVariantCellRendererActivate):
-        (browserCellRendererVariantCellRendererRender):
-        (browserCellRendererVariantCellRendererStartEditing):
-        (browserCellRendererVariantCellRendererGetPreferredWidth):
-        (browserCellRendererVariantCellRendererGetPreferredHeight):
-        (browserCellRendererVariantCellRendererGetPreferredWidthForHeight):
-        (browserCellRendererVariantCellRendererGetPreferredHeightForWidth):
-        (browserCellRendererVariantCellRendererGetAlignedArea):
-        (browser_cell_renderer_variant_init):
-        (browser_cell_renderer_variant_class_init):
-        (browser_cell_renderer_variant_new):
-        * MiniBrowser/gtk/BrowserCellRendererVariant.h: Added.
-        * MiniBrowser/gtk/BrowserSettingsDialog.c: Added.
-        (cellRendererChanged):
-        (browserSettingsDialogSetProperty):
-        (browser_settings_dialog_init):
-        (browserSettingsDialogConstructed):
-        (browser_settings_dialog_class_init):
-        (browser_settings_dialog_new):
-        * MiniBrowser/gtk/BrowserSettingsDialog.h: Added.
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (settingsCallback):
-        (browser_window_init):
-        * MiniBrowser/gtk/GNUmakefile.am:
-        * MiniBrowser/gtk/browser-marshal.list: Added.
-
-2012-01-02  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Implement create/ready-to-show/close signals in MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=74711
-
-        Reviewed by Philippe Normand.
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (webViewClose): Destroy the window.
-        (webViewReadyToShow): Use WindowProperties of the new view to
-        setup and show the window.
-        (webViewCreate): Create a new view and add it to a browser window.
-        (browser_window_init):
-        (browserWindowConstructed): Connect to WebKitWebView::create signal.
-
-2011-12-31  Dan Bernstein  <mitz@apple.com>
-
-        MiniBrowser sets the WKView’s frame incorrectly
-        https://bugs.webkit.org/show_bug.cgi?id=75393
-
-        Reviewed by Anders Carlsson.
-
-        * MiniBrowser/MiniBrowser.xcodeproj/project.pbxproj: Removed Make Launchable build phase,
-        which is not needed since the binray is linked with the frameworks search path set to the
-        built products directory.
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]): Changed to set the WKView’s frame to its
-        container’s bounds rather than its frame.
-        * MiniBrowser/mac/make-launchable.sh: Removed.
-
-2011-12-29  Dan Bernstein  <mitz@apple.com>
-
-        debug-safari --no-saved-state fails to start the debugger
-        https://bugs.webkit.org/show_bug.cgi?id=75374
-
-        Reviewed by Sam Weinig.
-
-        * Scripts/webkitdirs.pm:
-        (execMacWebKitAppForDebugging): Pass the --args option to gdb so that it passes arguments to
-        the executable being debugged.
-
-2011-12-29  Sam Weinig  <sam@webkit.org>
-
-        It should be easier to iterate a Vector backwards
-        https://bugs.webkit.org/show_bug.cgi?id=75359
-
-        Reviewed by Anders Carlsson.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/TestWebKitAPI.gypi:
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        Add new Vector test.
-
-        * TestWebKitAPI/Tests/Vector.cpp: Added.
-        (TestWebKitAPI::TEST):
-        Test Vector iterators, reverse_iterators and new reversed proxy.
-
-2011-12-28  Dmitry Lomov  <dslomov@google.com>
-
-        [WebWorkers][Chromium] Remove remains of cross-process dedicated worker implementation.
-        https://bugs.webkit.org/show_bug.cgi?id=66509
-        Just renames, merges and removal of dead code. Here are the list of renames:
-          - WebCommonWorkerClient merged with WebWorkerClient and renamed to WebSharedWorkerClient
-          - NewWebCommonWorkerClient renamed to WebCommonWorkerClient
-          - WebWorkerBase merged into WebSharedWorkerImpl
-          - NewWebWorkerBase renamed into WebWorkerBase
- 
-        Reviewed by David Levin.
-
-        * DumpRenderTree/chromium/TestWebWorker.h:
-        (TestWebWorker::createWorker):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createWorker):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2011-12-28  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r103785.
-        http://trac.webkit.org/changeset/103785
-        https://bugs.webkit.org/show_bug.cgi?id=75332
-
-        Broke builders; looks like clobbering didnt help (Requested by
-        dslomov on #webkit).
-
-        * DumpRenderTree/chromium/TestWebWorker.h:
-        (TestWebWorker::createWorker):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createWorker):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2011-12-28  Dmitry Lomov  <dslomov@google.com>
-
-
-        [WebWorkers][Chromium] Remove remains of cross-process dedicated worker implementation.
-        https://bugs.webkit.org/show_bug.cgi?id=66509
-        Just renames, merges and removal of dead code. Here are the list of renames:
-          - WebCommonWorkerClient merged with WebWorkerClient and renamed to WebSharedWorkerClient
-          - NewWebCommonWorkerClient renamed to WebCommonWorkerClient
-          - WebWorkerBase merged into WebSharedWorkerImpl
-          - NewWebWorkerBase renamed into WebWorkerBase
- 
-        Reviewed by David Levin.
-
-        * DumpRenderTree/chromium/TestWebWorker.h:
-        (TestWebWorker::createWorker):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createWorker):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2011-12-28  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r103620.
-        http://trac.webkit.org/changeset/103620
-        https://bugs.webkit.org/show_bug.cgi?id=75316
-
-        Causes many crashes (Requested by abarth on #webkit).
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::reset):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2011-12-27  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r103734.
-        http://trac.webkit.org/changeset/103734
-        https://bugs.webkit.org/show_bug.cgi?id=75278
-
-        Broke cr-mac (Requested by dslomov on #webkit).
-
-        * DumpRenderTree/chromium/TestWebWorker.h:
-        (TestWebWorker::createWorker):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createWorker):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2011-12-27  Dmitry Lomov  <dslomov@google.com>
-
-
-        [WebWorkers][Chromium] Remove remains of cross-process dedicated worker implementation.
-        https://bugs.webkit.org/show_bug.cgi?id=66509
-        Just renames, merges and removal of dead code. Here are the list of renames:
-          - WebCommonWorkerClient merged with WebWorkerClient and renamed to WebSharedWorkerClient
-          - NewWebCommonWorkerClient renamed to WebCommonWorkerClient
-          - WebWorkerBase merged into WebSharedWorkerImpl
-          - NewWebWorkerBase renamed into WebWorkerBase
- 
-        Reviewed by David Levin.
-
-        * DumpRenderTree/chromium/TestWebWorker.h:
-        (TestWebWorker::createWorker):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createWorker):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2011-12-27  Anders Carlsson  <andersca@apple.com>
-
-        Function should handle wrapping/unwrapping RefPtr and PassRefPtr
-        https://bugs.webkit.org/show_bug.cgi?id=75266
-
-        Reviewed by Sam Weinig.
-
-        * TestWebKitAPI/Tests/WTF/Functional.cpp:
-        (TestWebKitAPI::Number::create):
-        (TestWebKitAPI::Number::~Number):
-        (TestWebKitAPI::Number::value):
-        (TestWebKitAPI::Number::Number):
-        (TestWebKitAPI::multiplyNumberByTwo):
-        (TestWebKitAPI::TEST):
-
-2011-12-24  Kentaro Hara  <haraken@chromium.org>
-
-        Add unittests for the C++ parser of prepare-ChangeLog
-        https://bugs.webkit.org/show_bug.cgi?id=75191
-
-        Reviewed by Ryosuke Niwa.
-
-        cpp_unittests.cpp is the unittests for get_function_line_ranges_for_cpp()
-        of prepare-ChangeLog.
-
-        * Scripts/prepare-ChangeLog:
-        (get_function_line_ranges): Renames get_function_line_ranges_for_c()
-        to get_function_line_ranges_for_cpp().
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/parser_unittests.pl:
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/cpp_unittests-expected.txt: Added.
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/cpp_unittests.cpp: Added.
-        (func1):
-        (func2):
-        (func3):
-        (func4):
-        (func5):
-        (func6):
-        (func7):
-        (func8):
-        (func9):
-        (func10):
-        (func11):
-        (func12):
-        (func13):
-        (func14):
-        (func15):
-        (funcOverloaded):
-        (Class::func16):
-        (Class1::Class2::func17):
-        (Class2::func18):
-        (Class2::func19):
-        (Class2::func20):
-        (Class2::func21):
-        (Class2::func22):
-        (func23):
-        (func24):
-        (Class2::func25):
-        (Class1::func26):
-        (Class2::func27):
-        (Class3::func28):
-        (Class7::operator+):
-        (Class100::Class100):
-        (Class101::~Class101):
-        (Class102::Class102):
-        (Class103::Class103):
-        (Struct1::func29):
-        (Struct2::func30):
-        (NameSpace1::func30):
-        (NameSpace1::NameSpace2::func31):
-
-2011-12-24  Kentaro Hara  <haraken@chromium.org>
-
-        Add unittests for the Java parser of prepare-ChangeLog
-        https://bugs.webkit.org/show_bug.cgi?id=75195
-
-        Reviewed by Ryosuke Niwa.
-
-        java_unittests.java is unittest cases for get_function_line_ranges_for_java()
-        of prepare-ChangeLog.
-
-        * Scripts/prepare-ChangeLog:
-        (get_function_line_ranges_for_java): Fixed a parser bug.
-
-            interface I
-            {
-                void f()
-                {
-                }
-            }
-
-        should be recognized as "I.f", and
-
-            class C interface I
-            {
-                void f()
-                {
-                }
-            }
-
-        should be recognized as "C.f".
-        Without this patch, both are recognized as "I.f".
-
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/parser_unittests.pl:
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/java_unittests-expected.txt: Added.
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/java_unittests.java: Added.
-        (Simple):
-        (Simple.func1):
-        (Simple.func2):
-        (Simple.func3):
-        (Simple.func4):
-        (Simple.func5):
-        (Simple.func6):
-        (Simple.func7):
-        (Simple.func8):
-        (Simple.func9):
-        (Simple.func10):
-        (Simple.funcOverloaded):
-        (Simple.func11):
-        (Simple.func12):
-        (Simple.func13):
-        (Simple.func14):
-        (Simple.func15):
-        (Simple.func16):
-        (Simple.func17):
-        (Simple.func18):
-        (Simple.func19):
-        (Simple.func20):
-        (Simple.func21):
-        (Derived1):
-        (Derived1.Derived1):
-        (Derived1.func22):
-        (Interface1):
-        (Interface2):
-        (Interface2.func23):
-        (Derived2):
-        (Derived2.Derived2):
-        (Derived2.func23):
-
-2011-12-24  Kentaro Hara  <haraken@chromium.org>
-
-        Add unittests for the Python parser of prepare-ChangeLog
-        https://bugs.webkit.org/show_bug.cgi?id=75197
-
-        Reviewed by Ryosuke Niwa.
-
-        python_unittests.py is the unittest for get_function_line_ranges_for_python()
-        of prepare-ChangeLog. The unittest just contains classes and defs that are not nested.
-        This is because the current python parser is wrong, and it cannot correctly parse nested
-        classes and defs (even one def in a class), nor class inheritance.
-        We will fix it in another patch.
-
-        * Scripts/prepare-ChangeLog:
-        (get_function_line_ranges_for_python): Ignores comment lines that starts from #.
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/parser_unittests.pl:
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/python_unittests-expected.txt: Added.
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/python_unittests.py: Added.
-        (func1):
-        (func2):
-        (func3):
-        (funcInsideComment):
-        (func4):
-        (func5):
-        (func6):
-        (funcOverloaded):
-        (Class1):
-
-2011-12-24  Dan Bernstein  <mitz@apple.com>
-
-        Set SHARED_PRECOMPS_DIR when Xcode is set to use a custom build product path.
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/webkitdirs.pm:
-        (determineBaseProductDir):
-
-2011-12-24  Dan Bernstein  <mitz@apple.com>
-
-        Make build-webkit aware of additional Xcode build location defaults.
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/webkitdirs.pm:
-        (determineXcodeVersion): Added. This was previously in determineBaseProductDir().
-        (readXcodeUserDefault): Added. Factored out from determineBaseProductDir().
-        (determineBaseProductDir): Changed to check for a custom build location
-        style specified as an absolute location.
-
-2011-12-24  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Unreviewed, rolling out r103619.
-        http://trac.webkit.org/changeset/103619
-        https://bugs.webkit.org/show_bug.cgi?id=66509
-
-        Broke chromium clang build
-
-        * DumpRenderTree/chromium/TestWebWorker.h:
-        (TestWebWorker::createWorker):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createWorker):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2011-12-23  Daniel Bates  <dbates@webkit.org>
-
-        Provide option to disable Mac OS 10.7 application resume when using
-        {debug, run}-{safari, minibrowser, test-runner, test-webkit-api}, and run-webkit-app
-        https://bugs.webkit.org/show_bug.cgi?id=66902
-
-        Reviewed by David Kilzer.
-
-        Add an optional command line argument --no-saved-state to disable
-        application resume (state restoration) for the session on Mac OS 10.7.
-
-        For instance, when debugging an issue in Safari it is useful to be able
-        to temporarily disable application resume. Currently you can disable
-        application resume when launching Safari from within Xcode. We should
-        expose a similar option in our command line tools.
-
-        * Scripts/debug-minibrowser: Call printHelpAndExitForRunAndDebugWebKitAppIfNeeded()
-        to print a help message and exit() if the command line argument --help was given.
-        * Scripts/debug-safari: Ditto.
-        * Scripts/debug-test-runner: Ditto.
-        * Scripts/run-minibrowser: Ditto.
-        * Scripts/run-safari: Ditto.
-        * Scripts/run-test-runner: Ditto.
-        * Scripts/run-test-webkit-api: Ditto.
-        * Scripts/run-webkit-app: Ditto.
-        * Scripts/webkitdirs.pm:
-        (printHelpAndExitForRunAndDebugWebKitAppIfNeeded): Added.
-        (argumentsForRunAndDebugMacWebKitApp): Added.
-        (runMacWebKitApp): If the --no-saved-state command line argument was given then
-        disable application resume for the session.
-        (execMacWebKitAppForDebugging): Ditto.
-
-2011-12-23  Dmitry Lomov  <dslomov@google.com>
-
-        [WebWorkers][Chromium] Remove remains of cross-process dedicated worker implementation.
-        https://bugs.webkit.org/show_bug.cgi?id=66509
-        Just renames, merges and removal of dead code. Here are the list of renames:
-          - WebCommonWorkerClient merged with WebWorkerClient and renamed to WebSharedWorkerClient
-          - NewWebCommonWorkerClient renamed to WebCommonWorkerClient
-          - WebWorkerBase merged into WebSharedWorkerImpl
-          - NewWebWorkerBase renamed into WebWorkerBase
- 
-        Reviewed by David Levin.
-
-        * DumpRenderTree/chromium/TestWebWorker.h:
-        (TestWebWorker::createWorker):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createWorker):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2011-12-23  Kentaro Hara  <haraken@chromium.org>
-
-        Let parser_unittests.pl call different language parsers
-        https://bugs.webkit.org/show_bug.cgi?id=75081
-
-        Reviewed by David Kilzer.
-
-        We introduced parser_unittests.pl in bug 74994 , but it is implemented
-        to always call get_function_line_ranges_for_perl(). In order to enable unittests
-        for other languages, this patch lets parser_unittests.pl call different language
-        parsers depending on the languages.
-
-        Test: Scripts/webkitperl/prepare-ChangeLog_unittest/resources/perl_unittests.pl
-
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/parser_unittests.pl:
-
-2011-12-22  Adam Roben  <aroben@apple.com>
-
-        Snow Leopard test fix
-
-        * Scripts/webkitpy/test/main.py:
-        (Tester.run_tests): Python 2.6.1 doesn't seem to like specifying testRunner=None to
-        unittest.main, even though that's the default. So now we explicitly specify a
-        TextTestRunner.
-
-2011-12-22  Chris Fleizach  <cfleizach@apple.com>
-
-        AX: attributed strings do not include AXHeading information when a link is contained within the heading
-        https://bugs.webkit.org/show_bug.cgi?id=75059
-
-        Reviewed by Darin Adler.
-
-        Support the ability to check if an arbitrary attribute is present within an
-        attributed string that can be retrieved through an AccessibilityTextMarkerRange.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (attributedStringForTextMarkerRangeContainsAttributeCallback):
-        (AccessibilityUIElement::attributedStringForTextMarkerRangeContainsAttribute):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::attributedStringForTextMarkerRangeContainsAttribute):
-        * WebKitTestRunner/InjectedBundle/AccessibilityUIElement.cpp:
-        (WTR::AccessibilityUIElement::attributedStringForTextMarkerRangeContainsAttribute):
-        * WebKitTestRunner/InjectedBundle/AccessibilityUIElement.h:
-        * WebKitTestRunner/InjectedBundle/Bindings/AccessibilityUIElement.idl:
-        * WebKitTestRunner/InjectedBundle/mac/AccessibilityUIElementMac.mm:
-        (WTR::AccessibilityUIElement::attributedStringForTextMarkerRangeContainsAttribute):
-
-2011-12-22  David Kilzer  <ddkilzer@apple.com>
-
-        run-api-tests: runAllTests() and runTest() should not use global variables
-
-        Reviewed by Adam Roben.
-
-        Part of: <http://webkit.org/b/75065> run-api-tests should be able to run individual suites and tests
-
-        * Scripts/run-api-tests:
-        (runTestsBySuite): Rename from runAllTests().  Add arguments for
-        list of tests and $verbose.
-        (runTest): Add $verbose argument.
-
-2011-12-22  David Kilzer  <ddkilzer@apple.com>
-
-        run-api-tests: inline runAllTestsInSuite() into runAllTests()
-
-        Reviewed by Adam Roben.
-
-        Part of: <http://webkit.org/b/75065> run-api-tests should be able to run individual suites and tests
-
-        In order to make it easy to run one or more individual suites,
-        or one more individual tests, it's easier to call a single
-        method with different data structures than individual methods.
-
-        * Scripts/run-api-tests:
-        (runAllTests): Inline runAllTestsInSuite().
-
-2011-12-22  Adam Roben  <aroben@apple.com>
-
-        Add a --xml flag to test-webkitpy
-
-        test-webkitpy --xml will, in addition to providing the standard text output on stdout, write
-        JUnit-style XML files to a test-webkitpy-xml-reports subdirectory in the working directory.
-        This is useful for working with tools that consume JUnit-style XML files.
-
-        Fixes <http://webkit.org/b/75090> Would like a way to generate JUnit-style XML files when
-        running test-webkitpy
-
-        Reviewed by Darin Adler.
-
-        * Scripts/webkitpy/test/main.py:
-        (Tester.run_tests): If the --xml flag is passed, create an XMLTestRunner and pass it to
-        unittest.main(). Otherwise pass no test runner so that unittest will choose its own default.
-
-        * Scripts/webkitpy/thirdparty/__init__.py:
-        (AutoinstallImportHook.find_module):
-        (AutoinstallImportHook._install_xmlrunner):
-        Added code to install unittest-xml-reporting as webkitpy.thirdparty.autoinstalled.xmlrunner.
-        This change is untested because it's basically impossible to get a test to pass when --xml
-        is passed to test-webkitpy (because xmlrunner will already have been imported by the time
-        the test runs).
-
-2011-12-22  David Kilzer  <ddkilzer@apple.com>
-
-        TestWebKitAPI: initialize the main thread before running tests
-        <http://webkit.org/b/75064>
-
-        Reviewed by Adam Roben.
-
-        * TestWebKitAPI/TestsController.cpp:
-        (TestWebKitAPI::TestsController::TestsController): Call
-        WTF::initializeMainThread() to prevent assertions in Debug
-        builds.
-
-2011-12-22  David Kilzer  <ddkilzer@apple.com>
-
-        run-api-tests: dumpAllTests() should not use global variables
-
-        Reviewed by Adam Roben.
-
-        Part of: <http://webkit.org/b/75065> run-api-tests should be able to run individual suites and tests
-
-        * Scripts/run-api-tests: Renamed $dump to $dumpTests.
-        (dumpTestsBySuite): Rename from dumpAllTests() and pass in
-        global data as an argument.  Sort suite names and test names
-        alphabetically to match output when running tests.
-
-2011-12-22  Leo Yang  <leo.yang@torchmobile.com.cn>
-
-        [BlackBerry] Enable blob for the BlackBerry porting
-        https://bugs.webkit.org/show_bug.cgi?id=75074
-
-        Reviewed by George Staikos.
-
-        * Scripts/build-webkit:
-
-2011-12-22  Kentaro Hara  <haraken@chromium.org>
-
-        Add unittests for the Perl parser of prepare-ChangeLog
-        https://bugs.webkit.org/show_bug.cgi?id=74994
-
-        Reviewed by David Kilzer.
-
-        This patch adds unittests for get_function_line_ranges_for_perl() of prepare-ChangeLog.
-
-        Test: Scripts/webkitperl/prepare-ChangeLog_unittest/resources/perl_unittests.pl
-
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/parser_unittests.pl: Added.
-        Runs unittests specified in @testFiles.
-        You can reset expected results by specifying a --reset-results option.
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/perl_unittests.pl: Added.
-        Contains simple methods.
-        (func1):
-        (func2):
-        (func3):
-        (func4):
-        (func5):
-        (func6):
-        * Scripts/webkitperl/prepare-ChangeLog_unittest/resources/perl_unittests-expected.txt: Added.
-        This test result is generated by the --reset-results option.
-
-2011-12-21  Eric Seidel  <eric@webkit.org>
-
-        Add webkit.review.bot@gmail.com and commit-queue@webkit.org as "contributors"
-        so that they appear in the bugzilla autocomplete CC list.
-        I also removed the "radar" irc nick (which I believe does not exist)
-        and removed the uneeded [] around the radar bugzilla email.
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-12-21  Daniel Bates  <dbates@rim.com>
-
-        Teach build-jsc how to build JavaScriptCore for the EFL, BlackBerry, and WinCE ports
-        https://bugs.webkit.org/show_bug.cgi?id=74985
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/build-jsc:
-        * Scripts/webkitdirs.pm:
-        (cmakeBasedPortName): Added.
-
-2011-12-21  Daniel Bates  <dbates@rim.com>
-
-        Extract BlackBerry CMake arguments from build-webkit into separate function
-        https://bugs.webkit.org/show_bug.cgi?id=74981
-
-        Reviewed by Rob Buis.
-
-        Towards adding support for using Tools/Scripts/build-jsc for the BlackBerry port, move
-        the CMake argument logic from Tools/Scripts/build-webkit to function webkitdirs::blackberryCMakeArguments()
-        and have cmakeBasedPortArguments() call this function for the BlackBerry CMake argument list.
-        This will allow us to get the BlackBerry CMake arguments in Tools/Scripts/build-jsc so
-        that we can pass them to the CMake build system when building JavaScriptCore.
-
-        * Scripts/build-webkit: Move construction of CMake argument list from here to
-        webkitdirs::blackberryCMakeArguments(). Also, remove exported function blackberryTargetArchitecture()
-        since it's only called within webkitdirs.pm now. Formerly we exported this function so that we could
-        call it from build-webkit.
-        * Scripts/webkitdirs.pm:
-        (blackberryCMakeArguments): Added.
-        (cmakeBasedPortArguments): Modified to call blackberryCMakeArguments() when building the
-        BlackBerry port.
-
-2011-12-21  Daniel Bates  <dbates@webkit.org>
-
-        Extract WinCE CMake arguments from build-webkit into separate function
-        https://bugs.webkit.org/show_bug.cgi?id=74983
-
-        Reviewed by Rob Buis.
-
-        Towards adding support for using Tools/Scripts/build-jsc for the WinCE port, extract the
-        WinCE-specific CMake argument from Tools/Scripts/build-webkit into webkitdirs::cmakeBasedPortArguments().
-        This will allow us to get the WinCE-specific CMake argument in Tools/Scripts/build-jsc so
-        that we can pass it to the CMake build system when building JavaScriptCore.
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-        (cmakeBasedPortArguments): Added.
-
-2011-12-21  Kentaro Hara  <haraken@chromium.org>
-
-        In prepare-ChangeLog, replace constant global variables with "use constant"
-        https://bugs.webkit.org/show_bug.cgi?id=74992
-
-        Reviewed by Ryosuke Niwa.
-
-        This patch replaces the following constant global variables with "use constant"s.
-            - $changeLogTimeZone
-            - $SVN
-            - $GIT
-            - %supportedTestExtensions
-
-        * Scripts/prepare-ChangeLog:
-        (changeLogNameFromArgs):
-        (changeLogEmailAddressFromArgs):
-        (resolveConflictedChangeLogs):
-        (generateNewChangeLogs):
-        (diffCommand):
-        (statusCommand):
-        (createPatchCommand):
-        (findOriginalFileFromSvn):
-        (determinePropertyChanges):
-        (generateFileList):
-        (reviewerAndDescriptionForGitCommit):
-
-2011-12-20  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: rename field references from _fs to _filesystem
-        https://bugs.webkit.org/show_bug.cgi?id=74898
-
-        Reviewed by Adam Barth.
-
-        This is a simple cleanup; most of the code uses
-        self._filesystem, but some used self._fs; this change renames
-        the latter to the former to be more consistent.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.__init__):
-        (Manager.collect_tests):
-        (Manager._strip_test_dir_prefix):
-        (Manager._split_into_chunks_if_necessary):
-        (Manager.results_directory):
-        (Manager._clobber_old_results):
-        (Manager._upload_json_files):
-        (Manager.print_config):
-        (Manager._copy_results_html_file):
-        (Manager._show_results_html_file):
-        (Manager._log_worker_stack):
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        (JSONLayoutResultsGenerator._normalize_results_json):
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        (JSONResultsGeneratorBase.__init__):
-        (JSONResultsGeneratorBase.generate_json_output):
-        (JSONResultsGeneratorBase.generate_times_ms_file):
-        (JSONResultsGeneratorBase.upload_json_files):
-        (JSONResultsGeneratorBase._get_svn_revision):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (Base.__init__):
-
-2011-12-20  Kentaro Hara  <haraken@chromium.org>
-
-        Replace webkitperl/run-leaks_unittest/RunLeaks.pm with webkitperl/LoadAsModule.pm
-        https://bugs.webkit.org/show_bug.cgi?id=74836
-
-        Reviewed by David Kilzer.
-
-        webkitperl/run-leaks_unittest/RunLeaks.pm can be used for unit-testing of run-leaks only.
-        This patch creates more generalized webkitperl/LoadAsModule.pm, which can be also used
-        for unit-testing of other Perl scripts. We are planning to use it for unit-testing
-        of prepare-ChangeLog.
-
-        Using LoadAsModule.pm, you can load a Perl script as follows.
-        The first argument is the arbitrary package name you want to use, and the second argument
-        is the name of the Perl script you want to load.
-
-            use LoadAsModule qw(RunLeaks run-leaks);
-            RunLeaks::someFunctionDefinedInRunLeaks(...);
-
-        Tests: Scripts/webkitperl/run-leaks_unittest/run-leaks-report-v1.0.pl
-               Scripts/webkitperl/run-leaks_unittest/run-leaks-report-v2.0-new.pl
-               Scripts/webkitperl/run-leaks_unittest/run-leaks-report-v2.0-old.pl
-
-        * Scripts/webkitperl/LoadAsModule.pm: Added.
-        * Scripts/webkitperl/run-leaks_unittest/RunLeaks.pm: Removed.
-        (import):
-        (readFile):
-        * Scripts/webkitperl/run-leaks_unittest/run-leaks-report-v1.0.pl: Used LoadAsModule instead of RunLeaks.
-        * Scripts/webkitperl/run-leaks_unittest/run-leaks-report-v2.0-new.pl: Ditto.
-        * Scripts/webkitperl/run-leaks_unittest/run-leaks-report-v2.0-old.pl: Ditto.
-
-2011-12-20  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt] WK2 Debugging quirks need some improvement
-        https://bugs.webkit.org/show_bug.cgi?id=74859
-
-        Reviewed by Simon Hausmann.
-
-        Improvements added to make debugging WebKit2 more
-        confortable and efficient:
-        1. Unify debugging quirks. From now all of them are controlled
-        by the QT_WEBKIT2_DEBUG environment variable.
-        2. Disable crash handlers for WebKitTestRunner if debugging quirks
-        are used to make it possible to use postmortem debugging via core dumps
-        which is extremely useful for debugging bugs triggered by layout tests.
-        3. Disable test timeout for WebKitTestRunner if debugging quirks
-        are used because that makes debugging impossible.
-
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundleQt.cpp:
-        (WTR::InjectedBundle::platformInitialize):
-        * WebKitTestRunner/InjectedBundle/qt/LayoutTestControllerQt.cpp:
-        (WTR::LayoutTestController::initializeWaitToDumpWatchdogTimerIfNeeded):
-        * WebKitTestRunner/qt/TestControllerQt.cpp:
-        (WTR::TestController::platformRunUntil):
-
-2011-12-20  Rafael Brandao  <rafael.lobo@openbossa.org>
-
-        [Qt][WK2] Implement favicon support
-        https://bugs.webkit.org/show_bug.cgi?id=71082
-
-        Reviewed by Simon Hausmann.
-
-        A favorite icon was added on MiniBrowser's url bar as example.
-        We display a default icon when the page doesn't have an icon ready.
-
-        * MiniBrowser/qt/MiniBrowser.qrc:
-        * MiniBrowser/qt/icons/favicon.png: Added.
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-
-2011-12-19  Sam Weinig  <sam@webkit.org>
-
-        Add support for scrollLineDown: and scrollLineUp: NSResponder selectors
-        https://bugs.webkit.org/show_bug.cgi?id=74907
-
-        Reviewed by Dan Bernstein.
-
-        Add ScrollByLineCommands API test.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2/mac/EditorCommands.mm: Added.
-        * TestWebKitAPI/Tests/WebKit2/simple-tall.html: Added.
-
-2011-12-19  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: remove port.executive, port.filesystem, port.user properties
-        https://bugs.webkit.org/show_bug.cgi?id=74896
-
-        Reviewed by Eric Seidel.
-
-        Following on the refactoring of the port and host objects, this
-        removes the public executive, filesystem, and user properties
-        from the Port interface (protected versions of executive and
-        filesystem still exist). There is still some more clean up to
-        make the code more consistent and rearrange some other files to
-        talk to Hosts directly instead of getting them off of the Port
-        class.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.__init__):
-        (Manager.results_directory):
-        (Manager._log_worker_stack):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ManagerTest.test_fallback_path_in_config):
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        (_InlineManager.start_worker):
-        (_InlineWorkerConnection.__init__):
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        (Worker.safe_init):
-        * Scripts/webkitpy/layout_tests/models/test_configuration.py:
-        (TestConfiguration.from_port):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.__init__):
-        (Port.tests):
-        (Port.show_results_html_file):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_layout_tests_skipping):
-        (PortTest.test_test_dirs):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (_set_up_derived_options):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner.__init__):
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests.py:
-        (HtmlGenerator.__init__):
-        (HtmlGenerator.show_html):
-        (real_main):
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests_unittest.py:
-        (TestHtmlGenerator.make_generator):
-
-2011-12-19  Daniel Bates  <dbates@webkit.org>
-
-        Pass command line arguments to GDB when debugging a Mac WebKit application
-        https://bugs.webkit.org/show_bug.cgi?id=72829
-
-        Reviewed by David Kilzer.
-
-        Pass through any command line arguments given to debug-{safari, minibrowser}
-        to GDB so that they may influence the application instance launched by GDB.
-
-        * Scripts/webkitdirs.pm:
-        (execMacWebKitAppForDebugging):
-
-2011-12-19  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: remove executive,filesystem,user parameters from Port constructor
-        https://bugs.webkit.org/show_bug.cgi?id=74878
-
-        Reviewed by Eric Seidel.
-
-        This change concludes the refactoring that makes Host a required
-        parameter for Port and ensures that all access to filesystem,
-        executives, etc. is going through the Host.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.__init__):
-
-2011-12-19  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: finish refactoring port classes to make a host mandatory
-        https://bugs.webkit.org/show_bug.cgi?id=74566
-
-        Reviewed by Eric Seidel.
-
-        This change makes all Port objects take a required (System)Host
-        parameter, and updates the TestPort object to no longer create a
-        mock filesystem or add files to the existing filesystem by
-        default.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.__init__):
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        (PortFactory.__init__):
-        (PortFactory._get_kwargs):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestInstance.__init__):
-        (TestPort.__init__):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (passing_run):
-        (logging_run):
-        (get_tests_run):
-        (MainTest.test_single_file):
-        (MainTest.test_stderr_is_saved):
-        (MainTest.test_test_list):
-        (MainTest.test_test_list_with_prefix):
-        (MainTest.test_missing_and_unexpected_results):
-        (MainTest.test_missing_and_unexpected_results_with_custom_exit_code):
-        (MainTest.test_crash_with_stderr):
-        (MainTest.test_no_image_failure_with_image_diff):
-        (MainTest.test_crash_log):
-        (MainTest.test_web_process_crash_log):
-        (MainTest.test_exit_after_n_failures_upload):
-        (MainTest.test_results_directory_absolute):
-        (MainTest.test_results_directory_relative):
-        (MainTest.test_retries_directory):
-        (MainTest.test_tolerance.get_port_for_run):
-        (MainTest.test_reftest_should_not_use_naming_convention_if_not_listed_in_reftestlist):
-        (EndToEndTest.test_end_to_end):
-        (EndToEndTest.test_reftest_with_two_notrefs):
-        (RebaselineTest.test_reset_results):
-        (RebaselineTest.test_missing_results):
-        (RebaselineTest.test_new_baseline):
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests.py:
-        (Rebaseliner.__init__):
-        (main):
-        (real_main):
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests_unittest.py:
-        (test_host_port_and_filesystem):
-        (TestRebaseliner.make_rebaseliner):
-        (TestRealMain.test_all_platforms):
-        (TestHtmlGenerator.make_generator):
-
-2011-12-19  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: update unit tests in preparation for making host a mandatory parameter to Port objects
-        https://bugs.webkit.org/show_bug.cgi?id=74562
-
-        Reviewed by Eric Seidel.
-
-        Apart from a minor change to style/checkers/test_expectations.py
-        to take a host as a parameter to a TestExpectationsChecker(),
-        there are only refactoring changes to unit tests here.
-
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer_unittest.py:
-        (TestResultWriterTest.test_reftest_diff_image):
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator_unittest.py:
-        (JSONGeneratorTest._test_json_generation):
-        (JSONGeneratorTest.test_test_timings_trie):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (Base.__init__):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.make_port):
-        (PortTest.test_layout_tests_skipping):
-        (PortTest.test_test_dirs):
-        (PortTest.test_additional_platform_directory):
-        (PortTest.test_uses_test_expectations_file):
-        (PortTest.test_find_no_paths_specified):
-        (PortTest.test_find_one_test):
-        (PortTest.test_find_glob):
-        (PortTest.test_find_with_skipped_directories):
-        (PortTest.test_find_with_skipped_directories_2):
-        (PortTest.test_parse_reftest_list):
-        * Scripts/webkitpy/layout_tests/port/dryrun.py:
-        (DryRunPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-        (FactoryTest.setUp):
-        (FactoryTest.tearDown):
-        (FactoryTest.assert_port):
-        (FactoryTest.assert_platform_port):
-        (FactoryTest.test_unknown_specified):
-        (FactoryTest.test_unknown_default):
-        * Scripts/webkitpy/layout_tests/port/google_chrome_unittest.py:
-        (GetGoogleChromePortTest._verify_expectations_overrides):
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        (MockDRTPortTest.make_port):
-        (MockDRTTest.assertTest):
-        (MockDRTTest.test_main):
-        (MockChromiumDRTTest.test_pixeltest__fails):
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        (QtPortTest._assert_search_path):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (TestWebKitPort.__init__):
-        (WebKitPortTest.test_skipped_directories_for_symbols):
-        (test_skipped_directories_for_features):
-        (test_skipped_layout_tests):
-        (test_skipped_file_search_paths):
-        (test_root_option):
-        (test_test_expectations):
-        (test_build_driver):
-        (test_linux_distro_detection):
-        (test_apache_config_file_name_for_platform):
-        (test_path_to_apache_config_file):
-        (WebKitDriverTest.test_read_block):
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-        (TestExpectationsChecker.__init__):
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-        (TestExpectationsTestCase._expect_port_for_expectations_path):
-        (TestExpectationsTestCase.assert_lines_lint):
-        * Scripts/webkitpy/tool/servers/rebaselineserver_unittest.py:
-        (get_test_config.TestMacPort):
-
-2011-12-19  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [Efl] Fix path returned by builtDylibPathForName in webkitdirs.pm
-        https://bugs.webkit.org/show_bug.cgi?id=74854
-
-        Reviewed by Csaba Osztrogonác.
-
-        Since r101052, libewebkit.so is built in a different location, so we
-        need to adjust the path returned by builtDylibPathForName.
-
-        usesPerConfigurationBuildDirectory also needs to be fixed, as the Efl
-        port also respects Release/Debug configurations.
-
-        These changes should make run-launcher finally work correctly with
-        webkit-efl.
-
-        * Scripts/webkitdirs.pm:
-        (usesPerConfigurationBuildDirectory):
-        (builtDylibPathForName):
-
-2011-12-19  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt][WK2] Add support for modal event loop processing for WTR
-        https://bugs.webkit.org/show_bug.cgi?id=74852
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Rewrote event loop processing: Instead of terminating the event loop
-        in notifyDone() - something no other platform does - we now respect the
-        "bool& condition" parameter passed to platformRunUntil. This ensures
-        proper termination even when the condition is changed from within a
-        nested event loop, because only when we _exit_ from the nested event
-        loop we will check the condition and terminate the test properly.
-
-        In addition this patch implements TestController::runModal by means of
-        a nested event loop, which is passed to the platform webview that is
-        supposed to be modal. It is that view's responsibility to exit the
-        loop, upon destruction. I believe that's similar to how it works on the Mac,
-        where it doesn't seem that NSApp's runModalForWindow is terminate via
-        abort/stopModal but simply because the window is closed.
-
-        * WebKitTestRunner/PlatformWebView.h:
-        (WTR::PlatformWebView::setModalEventLoop):
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-        (WTR::PlatformWebView::~PlatformWebView):
-        * WebKitTestRunner/qt/TestControllerQt.cpp:
-        (WTR::TestController::notifyDone):
-        (WTR::TestController::platformRunUntil):
-        (WTR::TestController::runModal):
-
-2011-12-18  Kentaro Hara  <haraken@chromium.org>
-
-        REGRESSION(r103149): prepare-ChangeLog outputs a warning
-        https://bugs.webkit.org/show_bug.cgi?id=74808
-
-        Reviewed by David Kilzer.
-
-        Added the prototype declaration of main() to avoid warning messages.
-        Sorted subroutine declarations in the alphabetical order.
-
-        * Scripts/prepare-ChangeLog:
-
-2011-12-17  Adenilson Cavalcanti  <cavalcantii@gmail.com>
-
-        [Qt] Fix QtTestBrowser compilation with QtWidgets module
-        https://bugs.webkit.org/show_bug.cgi?id=74791
-
-        Reviewed by Andreas Kling.
-
-        * QtTestBrowser/QtTestBrowser.pro:
-
-2011-12-17  Kentaro Hara  <haraken@chromium.org>
-
-        Remove top-level code completely from prepare-ChangeLog
-        https://bugs.webkit.org/show_bug.cgi?id=74698
-
-        Reviewed by Darin Adler.
-
-        We are planning to write unit-tests for prepare-ChangeLog in a run-leaks_unittest manner.
-        This patch just moves all top-level code into main().
-
-        * Scripts/prepare-ChangeLog:
-        (main):
-
-2011-12-16  Dean Jackson  <dino@apple.com>
-
-        Move webkit-bug-importer to Contributor. It won't
-        autocomplete as an Account.
-        See https://bugs.webkit.org/show_bug.cgi?id=74739
-        for some discussion.
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-12-16  Dean Jackson  <dino@apple.com>
-
-        Add webkit-bug-importer@group.apple.com to accounts
-        so that it autocompletes in bugzilla.
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-12-16  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, skipping 3 failing GTK API tests.
-
-        * Scripts/run-gtk-tests:
-
-2011-12-16  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, GTK API tests build fix attempt.
-
-        * Scripts/run-gtk-tests: Run xvfb on a display not used by NRWT.
-
-2011-12-16  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, unskipping GTK testdownload. Should pass on the bot now.
-
-        * Scripts/run-gtk-tests:
-
-2011-12-16  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Fix the build for newer Qt5
-        https://bugs.webkit.org/show_bug.cgi?id=74703
-
-        Reviewed by Csaba Osztrogonác.
-
-        * QtTestBrowser/launcherwindow.h: Add missing forward declaration.
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::sendTouchEvent): Allocate QTouchDevice and use with QTouchEvent constructor.
-        * WebKitTestRunner/qt/EventSenderProxyQt.cpp: Ditto.
-        (WTR::EventSenderProxy::sendTouchEvent):
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::sendTouchEvent): Ditto.
-        (MiniBrowserApplication::notify): Adapt to changed API for marking primary touch point.
-
-2011-12-16  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Detect and force clean build when feature defines are added
-
-        Reviewed by Ossy.
-
-        https://bugs.webkit.org/show_bug.cgi?id=74689
-
-        * Scripts/webkitdirs.pm:
-
-2011-12-16  Kentaro Hara  <haraken@chromium.org>
-
-        [Refactoring] Remove all global variables from prepare-ChangeLog
-        https://bugs.webkit.org/show_bug.cgi?id=74681
-
-        Reviewed by Ryosuke Niwa.
-
-        We are planning to write unit-tests for prepare-ChangeLog in a run-leaks_unittest
-        manner. This bug is one of the incremental refactorings to remove all top-level
-        code and global variables from prepare-ChangeLog. In this patch,
-        we make the following global variables be used only through parameter passing.
-        This patch removes all global variables from prepare-ChangeLog.
-            - $mergeBase
-            - $gitCommit
-            - $gitIndex
-
-        * Scripts/prepare-ChangeLog:
-        (generateFunctionLists):
-        (changeLogNameFromArgs):
-        (changeLogEmailAddressFromArgs):
-        (generateNewChangeLogs):
-        (printDiff):
-        (diffFromToString):
-        (diffCommand):
-        (statusCommand):
-        (createPatchCommand):
-        (generateFileList):
-        (isConflictStatus):
-
-2011-12-15  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] Rounding errors on 32-bit machines causes tests to fail
-        https://bugs.webkit.org/show_bug.cgi?id=72254
-
-        Initial patch by vanuan@gmail.com.
-        Reviewed by Martin Robinson.
-
-        * Scripts/webkitdirs.pm:
-        (runAutogenForAutotoolsProjectIfNecessary): Pass additional
-        CXXFLAGS to autogen in an attempt to harmonize floating point
-        values between 32-bit and 64-bit architectures.
-
-2011-12-16  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Make distcheck fails during the install
-        https://bugs.webkit.org/show_bug.cgi?id=74274
-
-        No review, since this is a build fix.
-
-        * GNUmakefile.am: Remove BUILT_SOURCES from the dependency list for the gtkdoc
-        step. BUILT_SOURCES includes forwarding header generation for WebKit2, which
-        always runs. This means that the gtkdoc step was always running when make was
-        invoked. Generating gtkdoc during 'make install' was triggering a race condition
-        with the library file. Later we can fix generate-forwarding-headers and unbreak
-        'make docs,' but this bandaid is sufficient to let us release.
-
-2011-12-15  Eric Seidel  <eric@webkit.org>
-
-        NRWT should use free + inactive memory for default_child_processes on OS X (and never return < 1 process)
-        https://bugs.webkit.org/show_bug.cgi?id=74650
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/system/platforminfo.py:
-        (PlatformInfo._compute_bytes_from_vm_stat_output):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.default_child_processes):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_default_child_processes):
-
-2011-12-15  Filip Pizlo  <fpizlo@apple.com>
-
-        bencher script should support remote benchmarking on platforms that don't have ruby
-        https://bugs.webkit.org/show_bug.cgi?id=74659
-
-        Rubber-stamped by Sam Weinig.
-        
-        Added the ability to have bencher generate a benchmarking playload that consists of
-        copies of all of the benchmarks, optionally copies of all of the frameworks and
-        binaries to run all of the VMs, and a sh script that runs the benchmarks in random
-        order, which then spits out a raw results file that bencher can parse.
-        
-        In normal operating mode, you never see this, as it just generates the payload and
-        script internally, runs it, parses the results, and spits them out.
-        
-        The --remote mode has been changed to use this style, so any remote host that has
-        sshd, passwordless login support, a ~/.bencher file that points to a "tempPath", and
-        a sh-compatible shell can be used for remote benchmarking.
-        
-        The feature to include VMs in the benchmarking payload is by default only activated
-        when using --remote, but it can also be activated when doing local benchmarking; the
-        benefit is that you remove any pathname-related performance pathologies. All VMs
-        become equal because they are all located in
-        /path/to/bencher/directory/temp/benchdata/vmN where N is the configuration number
-        (usually 0 or 1).
-        
-        Also fixed bugs in the DumpRenderTree support. It's now possible to run all benchmarks
-        through DumpRenderTree. This is only a bit slower than running in jsc.
-
-        * Scripts/bencher:
-
-2011-12-15  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: clean up TestPort to (mostly) not create a new filesystem
-        https://bugs.webkit.org/show_bug.cgi?id=74556
-
-        This change modifies the TestPort to be ready to add tests to an
-        existing filesystem instead of creating a new filesystem; we
-        leave unit_test_filesystem() in for now for compatibility.
-
-        * Scripts/webkitpy/common/host_mock.py:
-        (MockHost.__init__):
-          - call add_unit_tests_to_mock_filesystem by default to make
-            the MockHost more generally useful for layout_test unit tests.
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestInstance.__init__):
-        (add_unit_tests_to_mock_filesystem):
-        (add_file):
-        (unit_test_filesystem):
-        (TestPort.__init__):
-        (TestPort._set_default_overriding_none):
-
-2011-12-15  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: cleanup prior to systemhostifying the layout_test/port* classes
-        https://bugs.webkit.org/show_bug.cgi?id=74551
-
-        This is some minor cleanup prior to making all of the host/port
-        changes described in bug 74138.
-
-        * Scripts/webkitpy/common/host_mock.py:
-        (MockHost.__init__):
-          - make sure the scm object is initialized with the same mock
-            executive and filesystem objects.
-
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        (MockFileSystem.clear_written_files):
-          - add a routine that will be useful in testing.
-        (MockFileSystem.maybe_make_directory):
-        (MockFileSystem.write_binary_file):
-          - fix bugs to make sure directories are created properly.
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        (_Process.run):
-          - add clarifying comments.
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py:
-        (MockDRTPort.__init__):
-        (MockDRT.__init__):
-          - add clarifying comments.
-
-2011-12-15  Anders Carlsson  <andersca@apple.com>
-
-        Regression (r102866): Navigating away from or closing a page with a plugin crashes
-        https://bugs.webkit.org/show_bug.cgi?id=74655
-
-        Reviewed by Sam Weinig.
-
-        Add a bunch of tests.
-
-        * TestWebKitAPI/Tests/WTF/Functional.cpp:
-
-2011-12-15  Stephanie Lewis  <slewis@apple.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=74469
-        Escape paths to svn commands so our tools can handle filenames with @ symbols.
-
-        Reviewed by Adam Roben.
-
-        * Scripts/VCSUtils.pm:
-        (scmMoveOrRenameFile):
-        (scmAddExecutableBit):
-        (scmRemoveExecutableBit):
-        (determineSVNRoot):
-        (svnRevisionForDirectory):
-        (pathRelativeToSVNRepositoryRootForPath):
-        (svnStatus):
-        (escapeSubversionPath):
-        * Scripts/parse-malloc-history:
-        (main):
-        * Scripts/prepare-ChangeLog:
-        (diffCommand):
-        (statusCommand):
-        (findOriginalFileFromSvn):
-        (determinePropertyChanges):
-        * Scripts/resolve-ChangeLogs:
-        (conflictFiles):
-        (resolveConflict):
-        (showStatus):
-        * Scripts/svn-apply:
-        (patch):
-        (scmCopy):
-        (scmAdd):
-        (scmRemove):
-        * Scripts/svn-create-patch:
-        (findBaseUrl):
-        (findMimeType):
-        (findSourceFileAndRevision):
-        (generateDiff):
-        (generateFileList):
-        (manufacturePatchForAdditionWithHistory):
-        * Scripts/svn-unapply:
-        (patch):
-        (revertDirectories):
-
-2011-12-15  Michael Bruning  <michael.bruning@nokia.com>
-
-        [qt][wk2] MiniBrowser: Add pressed state for viewport info button.
-        https://bugs.webkit.org/show_bug.cgi?id=74617
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * MiniBrowser/qt/qml/BrowserWindow.qml: Added state dependent coloring
-        for viewport info button, adjusted height and added rounded corners.
-
-2011-12-15  Andy Estes  <aestes@apple.com>
-
-        TestFailures: store the name of the buildbot results directory in a property
-        https://bugs.webkit.org/show_bug.cgi?id=74663
-
-        Reviewed by Adam Barth.
-        
-        Store the name of the results directory as a property on Buildbot's
-        prototype. This allows subclasses of Buildbot to customize the results
-        directory.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Buildbot.js:
-        (Buildbot.prototype.resultsDirectoryURL):
-
-2011-12-15  Tony Chang  <tony@chromium.org>
-
-        [chromium] pass --delete_unversioned_trees to gclient on the bots
-        https://bugs.webkit.org/show_bug.cgi?id=74565
-
-        Reviewed by Kenneth Russell.
-
-        It was temporarily removed in r102891 to keep the bots green.  Now
-        that the bots have cycled, we can add it back.
-
-        * Scripts/update-webkit-chromium:
-
-2011-12-15  Kentaro Hara  <haraken@chromium.org>
-
-        [Refactoring] In prepare-ChangeLog, make several global variables be used only through parameter passing
-        https://bugs.webkit.org/show_bug.cgi?id=74497
-
-        Reviewed by Ryosuke Niwa.
-
-        We are planning to write unit-tests for prepare-ChangeLog in a run-leaks_unittest
-        manner. This bug is one of the incremental refactorings to remove all top-level
-        code and global variables from prepare-ChangeLog. In this patch,
-        we make the following global variables be used only through parameter passing.
-            - $bugDescription
-            - $bugNumber
-            - $name
-            - $emailAddress
-            - $gitReviewer
-            - $writeChangeLogs
-
-        * Scripts/prepare-ChangeLog:
-        (fetchBugDescriptionFromURL):
-        (generateNewChangeLogs):
-        (reviewerAndDescriptionForGitCommit):
-
-2011-12-15  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] Add a few more web database functions to ewk_settings.
-        https://bugs.webkit.org/show_bug.cgi?id=72148
-
-        Reviewed by Antonio Gomes.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::clearAllDatabases):
-        (LayoutTestController::setDatabaseQuota):
-
-2011-12-15  Martin Kosiba  <mkosiba@google.com>
-
-        Fix find on web pages with -webkit-user-select: none for Chromium
-        https://bugs.webkit.org/show_bug.cgi?id=72281
-
-        Reviewed by Ryosuke Niwa.
-
-        Provided a partial findString implementation. This doesn't support
-        all of the FindOptions since they're not exposed via WebFindOptions.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::findString):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-
-2011-12-15  Kenneth Russell  <kbr@google.com>
-
-        [chromium] Add DRT support for WebKitPageCacheSupportsPluginsPreferenceKey
-        https://bugs.webkit.org/show_bug.cgi?id=74581
-
-        Reviewed by Darin Fisher.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::overridePreference):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-
-2011-12-15  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        [Qt] Improve the look of the viewport info overlay
-
-        Reviewed by Tor Arne Vestbø.
-
-        * MiniBrowser/qt/qml/ViewportInfoItem.qml:
-
-2011-12-15  Igor Oliveira  <igor.oliveira@openbossa.org>
-
-        [Qt] Support requestAnimationFrame API
-        https://bugs.webkit.org/show_bug.cgi?id=74528
-
-        Add build-option for requestAnimationFrame feature.
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * qmake/mkspecs/features/features.prf:
-
-2011-12-15  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Don't add WebCoreSupport and WebKit APIs to include WebCore's include path
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/webcore.prf:
-
-2011-12-15  Michael Brüning  <michael.bruning@nokia.com>
-
-        [QT][WK2]Add (experimental) viewport info view to Minibrowser/qt.
-        https://bugs.webkit.org/show_bug.cgi?id=72893
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        This patch extends QQuickWebViewExperimental by a property named
-        viewportInfo, which contains the viewport scalability and
-        layout and contents size information. This property is exposed to
-        QML through the experimental extension for QQuickWebView.
-
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * MiniBrowser/qt/MiniBrowser.qrc:
-        * MiniBrowser/qt/icons/info.png: Added.
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-        * MiniBrowser/qt/qml/ViewportInfoItem.qml: Added.
-
-2011-12-15  Shinya Kawanaka  <shinyak@google.com>
-
-        [chromium] WebViewHost::requestCheckingOfText should return immediately if text is empty.
-        https://bugs.webkit.org/show_bug.cgi?id=74586
-
-        Reviewed by Hajime Morita.
-
-        No new tests. Covered by existing tests.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::requestCheckingOfText):
-          Returns immediately if text is empty.
-
-2011-12-15  Alexander Færøy  <ahf@0x90.dk>
-
-        [Qt] QtWebKit fails to build on Mac OS X after r102776
-        https://bugs.webkit.org/show_bug.cgi?id=74593
-
-        Reviewed by Simon Hausmann.
-
-        CONFIG =+ link_pkgconfig is needed such that the correct parameters
-        are passed to the compiler.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-
-2011-12-14  Tony Chang  <tony@chromium.org>
-
-        [chromium] Remove redundant third_party entries from chromium DEPS
-        https://bugs.webkit.org/show_bug.cgi?id=74472
-
-        Reviewed by Kenneth Russell.
-
-        * Scripts/update-webkit-chromium: Temporarily keep unversioned trees.
-
-2011-12-14  Kentaro Hara  <haraken@chromium.org>
-
-        [Refactoring] In prepare-ChangeLog, replace $isGit and $isSVN with
-        VCSUtils::isGit() and VCSUtils::isSVN().
-        https://bugs.webkit.org/show_bug.cgi?id=74485
-
-        Reviewed by David Kilzer.
-
-        We are planning to write unit-tests for prepare-ChangeLog in a run-leaks_unittest
-        manner. This bug is one of the incremental refactorings to remove all top-level
-        code and global variables from prepare-ChangeLog. This patch replaces $isGit and $isSVN
-        with VCSUtils::isGit() and VCSUtils::isSVN(). This patch also removes firstDirectoryOrCwd(),
-        assuming that no user will mix Git/SVN checkouts and thus we can judge SVN or Git
-        just by looking at the current working directory.
-
-        * Scripts/prepare-ChangeLog: Removed firstDirectoryOrCwd().
-        (diffFromToString):
-        (diffCommand):
-        (statusCommand):
-        (createPatchCommand):
-        (diffHeaderFormat):
-        (generateFileList):
-        (isAddedStatus):
-        (isConflictStatus):
-        (statusDescription):
-        (extractLineRange):
-
-2011-12-14  Sam Weinig  <weinig@apple.com>
-
-        Remove whitespace from InheritedPropertySheets attributes in
-        vsprops files to appease the Visual Studio project migrator.
-
-        Reviewed by Adam Roben.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginDebug.vsprops:
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginDebugAll.vsprops:
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginDebugCairoCFLite.vsprops:
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginProduction.vsprops:
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginRelease.vsprops:
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginReleaseCairoCFLite.vsprops:
-        * DumpRenderTree/win/DumpRenderTreeDebug.vsprops:
-        * DumpRenderTree/win/DumpRenderTreeDebugAll.vsprops:
-        * DumpRenderTree/win/DumpRenderTreeDebugCairoCFLite.vsprops:
-        * DumpRenderTree/win/DumpRenderTreeProduction.vsprops:
-        * DumpRenderTree/win/DumpRenderTreeRelease.vsprops:
-        * DumpRenderTree/win/DumpRenderTreeReleaseCairoCFLite.vsprops:
-        * DumpRenderTree/win/ImageDiffDebug.vsprops:
-        * DumpRenderTree/win/ImageDiffDebugAll.vsprops:
-        * DumpRenderTree/win/ImageDiffDebugCairoCFLite.vsprops:
-        * DumpRenderTree/win/ImageDiffProduction.vsprops:
-        * DumpRenderTree/win/ImageDiffRelease.vsprops:
-        * DumpRenderTree/win/ImageDiffReleaseCairoCFLite.vsprops:
-        * MiniBrowser/Configurations/MiniBrowserDebug.vsprops:
-        * MiniBrowser/Configurations/MiniBrowserDebugAll.vsprops:
-        * MiniBrowser/Configurations/MiniBrowserDebugCairoCFLite.vsprops:
-        * MiniBrowser/Configurations/MiniBrowserProduction.vsprops:
-        * MiniBrowser/Configurations/MiniBrowserRelease.vsprops:
-        * MiniBrowser/Configurations/MiniBrowserReleaseCairoCFLite.vsprops:
-        * TestWebKitAPI/Configurations/TestWebKitAPIRelease.vsprops:
-        * TestWebKitAPI/Configurations/TestWebKitAPIReleaseCairoCFLite.vsprops:
-        * WebKitLauncherWin/WebKitLauncherWinDebug.vsprops:
-        * WebKitLauncherWin/WebKitLauncherWinDebugAll.vsprops:
-        * WebKitLauncherWin/WebKitLauncherWinDebugCairoCFLite.vsprops:
-        * WebKitLauncherWin/WebKitLauncherWinProduction.vsprops:
-        * WebKitLauncherWin/WebKitLauncherWinRelease.vsprops:
-        * WebKitLauncherWin/WebKitLauncherWinReleaseCairoCFLite.vsprops:
-        * WebKitTestRunner/win/InjectedBundleDebug.vsprops:
-        * WebKitTestRunner/win/InjectedBundleDebugAll.vsprops:
-        * WebKitTestRunner/win/InjectedBundleDebugCairoCFLite.vsprops:
-        * WebKitTestRunner/win/InjectedBundleProduction.vsprops:
-        * WebKitTestRunner/win/InjectedBundleRelease.vsprops:
-        * WebKitTestRunner/win/InjectedBundleReleaseCairoCFLite.vsprops:
-        * WebKitTestRunner/win/WebKitTestRunnerDebug.vsprops:
-        * WebKitTestRunner/win/WebKitTestRunnerDebugAll.vsprops:
-        * WebKitTestRunner/win/WebKitTestRunnerDebugCairoCFLite.vsprops:
-        * WebKitTestRunner/win/WebKitTestRunnerProduction.vsprops:
-        * WebKitTestRunner/win/WebKitTestRunnerRelease.vsprops:
-        * WebKitTestRunner/win/WebKitTestRunnerReleaseCairoCFLite.vsprops:
-        * WinLauncher/WinLauncherDebug.vsprops:
-        * WinLauncher/WinLauncherDebugAll.vsprops:
-        * WinLauncher/WinLauncherDebugCairoCFLite.vsprops:
-        * WinLauncher/WinLauncherProduction.vsprops:
-        * WinLauncher/WinLauncherRelease.vsprops:
-        * WinLauncher/WinLauncherReleaseCairoCFLite.vsprops:
-        * record-memory-win/record-memory-winDebug.vsprops:
-        * record-memory-win/record-memory-winDebugAll.vsprops:
-        * record-memory-win/record-memory-winDebugCairoCFLite.vsprops:
-        * record-memory-win/record-memory-winProduction.vsprops:
-        * record-memory-win/record-memory-winRelease.vsprops:
-        * record-memory-win/record-memory-winReleaseCairoCFLite.vsprops:
-
-2011-12-14  Anders Carlsson  <andersca@apple.com>
-
-        Windows build fix.
-
-        Move CHECKs out of the destructor.
-
-        * TestWebKitAPI/Tests/WTF/Functional.cpp:
-        (TestWebKitAPI::B::~B):
-        (TestWebKitAPI::TEST):
-
-2011-12-14  Anders Carlsson  <andersca@apple.com>
-
-        binding a member function should ref/deref the object pointer if needed
-        https://bugs.webkit.org/show_bug.cgi?id=74552
-
-        Reviewed by Sam Weinig.
-
-        Add new tests.
-
-        * TestWebKitAPI/Tests/WTF/Functional.cpp:
-        (TestWebKitAPI::B::B):
-        (TestWebKitAPI::B::~B):
-        (TestWebKitAPI::B::ref):
-        (TestWebKitAPI::B::deref):
-        (TestWebKitAPI::B::f):
-        (TestWebKitAPI::B::g):
-        (TestWebKitAPI::TEST):
-
-2011-12-14  Hajime Morrita  <morrita@chromium.org>
-
-        JS_INLINE and WTF_INLINE should be visible from WebCore
-        https://bugs.webkit.org/show_bug.cgi?id=73191
-
-        Reviewed by Kevin Ollivier.
-
-        Removed macro definitions which is now provided by Platform.h
-
-        * DumpRenderTree/chromium/config.h:
-        * DumpRenderTree/config.h:
-        * DumpRenderTree/ForwardingHeaders/runtime/JSExportMacros.h: Added.
-        * DumpRenderTree/ForwardingHeaders/wtf/ExportMacros.h: Added.
-        * DumpRenderTree/win/DumpRenderTreePreBuild.cmd: Add new ForwardingHeaders.
-        * TestWebKitAPI/config.h:
-        * WebKitTestRunner/config.h:
-
-2011-12-14  Kentaro Hara  <haraken@chromium.org>
-
-        Unreviewed, rolling out r102761.
-        http://trac.webkit.org/changeset/102761
-        https://bugs.webkit.org/show_bug.cgi?id=74485
-
-        we came up with a better fix than this (see comments in bug
-        74485)
-
-        * Scripts/prepare-ChangeLog:
-        (generateFunctionLists):
-        (printDiff):
-        (diffCommand):
-        (statusCommand):
-        (createPatchCommand):
-        (generateFileList):
-        (isAddedStatus):
-        (isConflictStatus):
-        (statusDescription):
-        (extractLineRange):
-
-2011-12-14  Anders Carlsson  <andersca@apple.com>
-
-        Work around a bug in the MSVC2005 compiler
-        https://bugs.webkit.org/show_bug.cgi?id=74550
-
-        Reviewed by Sam Weinig.
-
-        Re-enable tests.
-
-        * TestWebKitAPI/Tests/WTF/Functional.cpp:
-
-2011-12-14  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Test fonts are not used with Qt5
-        https://bugs.webkit.org/show_bug.cgi?id=72513
-
-        My last unreviewed buildfix for this crazy bug.
-
-        * qmake/mkspecs/features/features.prf:
-
-2011-12-14  Anders Carlsson  <andersca@apple.com>
-
-        Another attempt at fixing the Windows build.
-
-        Disable all the tests until I can figure out what's going on here.
-
-        * TestWebKitAPI/Tests/WTF/Functional.cpp:
-
-2011-12-14  Anders Carlsson  <andersca@apple.com>
-
-        Fix the Windows build.
-
-        Disable some of the tests for now.
-
-        * TestWebKitAPI/Tests/WTF/Functional.cpp:
-
-2011-12-14  Anders Carlsson  <andersca@apple.com>
-
-        bind should handle member functions
-        https://bugs.webkit.org/show_bug.cgi?id=74529
-
-        Reviewed by Sam Weinig.
-
-        Add tests.
-
-        * TestWebKitAPI/Tests/WTF/Functional.cpp:
-        (TestWebKitAPI::A::A):
-        (TestWebKitAPI::A::f):
-        (TestWebKitAPI::A::addF):
-        (TestWebKitAPI::TEST):
-
-2011-12-14  Anders Carlsson  <andersca@apple.com>
-
-        Add unary and binary bind overloads
-        https://bugs.webkit.org/show_bug.cgi?id=74524
-
-        Reviewed by Sam Weinig.
-
-        Add tests.
-
-        * TestWebKitAPI/Tests/WTF/Functional.cpp:
-        (TestWebKitAPI::TEST):
-        (TestWebKitAPI::multiplyByTwo):
-        (TestWebKitAPI::multiplyByOneAndAHalf):
-        (TestWebKitAPI::multiply):
-        (TestWebKitAPI::subtract):
-
-2011-12-14  Holger Hans Peter Freyther  <holger@moiji-mobile.com>
-
-        [Qt] Test fonts are not used with Qt5
-        https://bugs.webkit.org/show_bug.cgi?id=72513
-
-        MIPS and SH4 buildfix after r102776 and r102795.
-
-        Reviewed by Csaba Osztrogonác.
-
-        * qmake/mkspecs/features/features.prf:
-
-2011-12-14  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Unreviewed speculative MIPS and SH4 buildfix after r102776.
-
-        * qmake/mkspecs/features/features.prf:
-
-2011-12-14  Andreas Kling  <kling@webkit.org>
-
-        Make my e-mail address a little more awesome.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-12-14  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Rollout r102769, because it broke Qt-4.8 builds.
-
-        * qmake/mkspecs/features/webcore.prf:
-
-2011-12-14  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt] Test fonts are not used with Qt5
-        https://bugs.webkit.org/show_bug.cgi?id=72513
-
-        Reviewed by Simon Hausmann.
-
-        Don't depend on Q_WS_X11 anymore since it's not the Qt5
-        way to detect the platform. Make the guards depend
-        on our own configtest for fontconfig. For Qt4 we can still
-        use the preassumption that we have it on Linux.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::open):
-        (WebCore::DumpRenderTree::initializeFonts):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        * DumpRenderTree/qt/main.cpp:
-        (main): Additionally remove a nonsense piece of code that was
-        trying to reset the font settings - which is not necessary -
-        after we have already returned from main.
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-        (WTR::activateFonts):
-        * WebKitTestRunner/Target.pri: Remove unnecessary fontconfig linkage
-        from WTR. It is not needed. We set up the fonts via the injected bundle.
-        * qmake/config.tests/fontconfig/fontconfig.cpp: Added.
-        (main):
-        * qmake/config.tests/fontconfig/fontconfig.pro: Added.
-        * qmake/mkspecs/features/features.prf:
-        * qmake/sync.profile:
-
-2011-12-14  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Don't add WebCoreSupport and WebKit APIs to include WebCore's include path
-
-        Followup to r102679
-
-        https://bugs.webkit.org/show_bug.cgi?id=74413
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/webcore.prf:
-
-2011-12-14  Pierre Rossi  <pierre.rossi@gmail.com>
-
-        [Qt] Mobile theme could use a little refresh
-        https://bugs.webkit.org/show_bug.cgi?id=74293
-
-        Have MiniBrowser use the mobile theme when not
-        passed --desktop.
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::handleUserOptions):
-
-2011-12-14  João Paulo Rechi Vita  <jprvita@openbossa.org>
-
-        [Qt] [Gardening] Remove qt-4.7 layout tests dir
-        https://bugs.webkit.org/show_bug.cgi?id=74426
-
-        Building trunk now depends on Qt >= 4.8, so no need to keep this directory
-        on the tree.
-
-        Reviewed by Csaba Osztrogonác.
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort.qt_version):
-        (QtPort.baseline_search_path):
-        (QtPort._skipped_file_search_paths):
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        (QtPortTest._assert_search_path):
-
-2011-12-14  Kentaro Hara  <haraken@chromium.org>
-
-        [Refactoring] In prepare-ChangeLog, make $isGit and $isSVN be used only
-        through parameter passing
-        https://bugs.webkit.org/show_bug.cgi?id=74485
-
-        Reviewed by Ryosuke Niwa.
-
-        We are planning to write unit-tests for prepare-ChangeLog in a run-leaks_unittest
-        manner. This bug is one of the incremental refactorings to remove all top-level
-        code and global variables from prepare-ChangeLog. In this patch,
-        we make the following global variables be used only through parameter passing.
-            - $isGit
-            - $isSVN
-
-        * Scripts/prepare-ChangeLog:
-        (generateFunctionLists):
-        (printDiff):
-        (diffFromToString):
-        (diffCommand):
-        (statusCommand):
-        (createPatchCommand):
-        (diffHeaderFormat):
-        (generateFileList):
-        (isAddedStatus):
-        (isConflictStatus):
-        (statusDescription):
-        (extractLineRange):
-
-2011-12-14  Alexander Færøy  <alexander.faeroy@nokia.com>
-
-        [Qt] DeviceOrientationClientMockQt should be removed in favor of DeviceOrientationClientMock
-        https://bugs.webkit.org/show_bug.cgi?id=74417
-
-        Reviewed by Simon Hausmann.
-
-        Based on original patch by Kenneth Christiansen.
-
-        Already covered by current tests.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::~DumpRenderTree):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setMockDeviceOrientation):
-
-2011-12-03  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] Bad text rendering since r101343
-        https://bugs.webkit.org/show_bug.cgi?id=73744
-
-        Reviewed by Martin Robinson.
-
-        Turn cairo hint metrics off for better font metrics reporting in
-        the tests. This is especially important for SVG.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (initializeGtkFontSettings):
-        * WebKitTestRunner/InjectedBundle/gtk/ActivateFontsGtk.cpp:
-        (WTR::initializeGtkSettings):
-
-2011-12-13  Kentaro Hara  <haraken@chromium.org>
-
-        [Refactoring] Remove several global variables from prepare-ChangeLog
-        https://bugs.webkit.org/show_bug.cgi?id=74389
-
-        Reviewed by David Kilzer.
-
-        We are planning to write unit-tests for prepare-ChangeLog in a run-leaks_unittest
-        manner. This bug is one of the incremental refactorings to remove all top-level
-        code and global variables from prepare-ChangeLog. In this patch,
-        we make the following global variables being used only through parameter passing.
-            - %paths
-            - $changedFiles
-            - $conflictFiles
-            - $functionLists
-            - $bugURL
-
-        * Scripts/prepare-ChangeLog:
-        (findChangeLogs):
-        (generateNewChangeLogs):
-        (processPaths):
-        (generateFileList):
-        (firstDirectoryOrCwd):
-
-2011-12-13  Anders Carlsson  <andersca@apple.com>
-
-        Add a very bare-bones implementation of bind and Function to WTF
-        https://bugs.webkit.org/show_bug.cgi?id=74462
-
-        Reviewed by Sam Weinig.
-
-        Add basic tests for WTF::Function and WTF::bind.
-
-        * TestWebKitAPI/TestWebKitAPI.gypi:
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/Functional.cpp: Added.
-        (TestWebKitAPI::returnFortyTwo):
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-
-2011-12-13  Robin Dunn  <robin@alldunn.com>
-
-        [wx] Add a URL argument to wxWebView constructor.
-        https://bugs.webkit.org/show_bug.cgi?id=74316
-        
-        Reviewed by Kevin Ollivier.
-
-        * DumpRenderTree/wx/DumpRenderTreeWx.cpp:
-        (MyApp::OnInit):
-        * wx/browser/browser.cpp:
-        (MyApp::OnInit):
-
-2011-12-13  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        watchlist: Add watchlist for EFL, CMake and libsoup code and put myself on it.
-        https://bugs.webkit.org/show_bug.cgi?id=74430
-
-        Reviewed by David Levin.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2011-12-13  Peter Beverloo  <peter@chromium.org>
-
-        [Chromium] Pull in FreeType and decrease check-out complexity for Android
-        https://bugs.webkit.org/show_bug.cgi?id=74401
-
-        Decrease the check-out complexity by removing the need to first run
-        "update-webkit-chromium --chromium" prior to running it with
-        "--chromium-android", which was caused by an unversioned third_party/
-        directory being created. This moves the Android NDK to Source/WebKit/
-        chromium/, coming from third_party/ in that directory.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/update-webkit-chromium:
-        * Scripts/webkitdirs.pm:
-        (buildChromiumMakefile):
-
-2011-12-13  Andy Wingo  <wingo@igalia.com> and Martin Robinson <mrobinson@igalia.com>
-
-        build-jsc passing incorrect args to buildGtkProject
-        https://bugs.webkit.org/show_bug.cgi?id=74308
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * Scripts/build-webkit: Instead of invoking buildGtkProject with
-        another argument about webkit2, unshift a --disable-webkit2
-        argument onto the buildArgs.
-        * Scripts/webkitdirs.pm: Remove $enableWebKit2 arg. Only save autogen.sh
-        arguments for WebKit to prevent unnecessary reconfiguration when build-webkit
-        and build-jsc are run one after the other.
-
-2011-12-13  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] REGRESSION(102679): It broke Qt5-WK1 build
-        https://bugs.webkit.org/show_bug.cgi?id=74413
-
-        Unreviewed buildfix.
-
-        * qmake/mkspecs/features/webcore.prf: Temporarily revert a part of r102679 until a proper fix.
-
-2011-12-13  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Unreviewed speculativ debug buildfix after r102679.
-
-        * QtTestBrowser/QtTestBrowser.pro:
-        * QtTestBrowser/main.cpp:
-
-2011-12-13  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Get rid of layering violations in includes
-
-        WebKit/qt/API and WebKit/qt/WebCoreSupport should not be included
-        in the webcore.prf, but rather in each target that specificly needs
-        headers in these location. We used to include them directly in webcore
-        since we had layering violations between WebCore and WebKit, but now
-        that they are gone there's no reason to do that.
-
-        Reviewed by Simon Hausmann.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * QtTestBrowser/launcherwindow.h:
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-        * qmake/mkspecs/features/webcore.prf:
-        * qmake/mkspecs/features/webkit2.prf:
-
-2011-12-13  János Badics  <dicska@gmail.com>
-
-        [NRWT] It crashes intermittently when there are WebProcess crashes
-        https://bugs.webkit.org/show_bug.cgi?id=73451
-
-        Use self.poll() instead of self._proc.poll() because it checks if self._proc is None or not.
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        (ServerProcess._check_for_crash):
-
-2011-12-13  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed. Fix GTK+ API docs build.
-
-        * gtk/generate-gtkdoc:
-        (get_webkit2_options): Ignore WebKitUIClient since it's private
-        API.
-
-2011-12-13  Kenichi Ishibashi  <bashi@chromium.org>
-
-        Reviewed, removed one of my email addresses to use the apprpriate one.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-12-12  Ádám Kallai  <Kallai.Adam@stud.u-szeged.hu>
-
-        [Qt] Fix skip list search path and expected file search path in ORWT
-        https://bugs.webkit.org/show_bug.cgi?id=74281
-
-        Expected file search path fixed.
-
-        Print all used skipped list and expected search path in verbose mode similar to NRWT.
-
-        Reviewed by Csaba Osztrogonác.
-
-        * Scripts/old-run-webkit-tests:
-        (buildPlatformResultHierarchy):
-        (buildPlatformTestHierarchy):
-        (readSkippedFiles):
-
-2011-12-12  Nándor Huszka  <huszka.nandor@stud.u-szeged.hu>
-
-        [Qt] Missing layoutTestController.dumpWillCacheResponse
-        https://bugs.webkit.org/show_bug.cgi?id=74287
-
-        Reviewed by Csaba Osztrogonác.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::dumpWillCacheResponse):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2011-12-12  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] platform/gtk/fonts/custom-font-missing-glyphs.html fails on 64-bit Debug
-        https://bugs.webkit.org/show_bug.cgi?id=73771
-
-        Reviewed by Gustavo Noronha Silva.
-
-        When using a fallback font during testing, always use DejaVu Sans. This prevents
-        falling back to DejaVu Serif on some systems.
-
-        * DumpRenderTree/gtk/fonts/fonts.conf: Fall back to DejaVu Sans.
-
-2011-12-08  Pierre Rossi  <pierre.rossi@gmail.com>
-
-        Add myself as a committer
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-12-12  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
-
-        [Qt] [WK2] Support customizing popup menus with QML
-        https://bugs.webkit.org/show_bug.cgi?id=73560
-
-        Reviewed by Tor Arne Vestbø.
-
-        Add an Item Selector to our WebView using the experimental API.
-
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * MiniBrowser/qt/MiniBrowser.qrc:
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-        * MiniBrowser/qt/qml/ItemSelector.qml: Added.
-
-2011-12-12  Alexander Færøy  <alexander.faeroy@nokia.com>
-
-        [Qt] MiniBrowser should only visualize mock touch points when in non-desktop mode
-        https://bugs.webkit.org/show_bug.cgi?id=74283
-
-        Reviewed by Simon Hausmann.
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::sendTouchEvent):
-
-2011-12-12  Kentaro Hara  <haraken@chromium.org>
-
-        [Refactoring] In prepare-ChangeLog, move into a method the top-level code
-        to show ChangeLogs diff and open ChangeLogs in an editor
-        https://bugs.webkit.org/show_bug.cgi?id=74266
-
-        Reviewed by Ryosuke Niwa.
-
-        We are planning to write unit-tests for prepare-ChangeLog
-        in a run-leaks_unittest manner. This patch is one of the incremental
-        refactorings to remove all top-level code and global variables from
-        prepare-ChangeLog.
-
-        * Scripts/prepare-ChangeLog: Moved the top-level code to show ChangeLogs diff into printDiff().
-        Moved the top-level code to open ChangeLogs in an editor into openChangeLogs().
-        Renamed @changed_files to @changedFiles.
-        Renamed %conflict_files to %conflictFiles.
-        (generateFunctionLists):
-        (printDiff):
-        (openChangeLogs):
-
-2011-12-11  Kentaro Hara  <haraken@chromium.org>
-
-        [Refactoring] Move top-level code to resolve conflicted ChangeLogs into a method
-        https://bugs.webkit.org/show_bug.cgi?id=74257
-
-        Reviewed by Ryosuke Niwa.
-
-        We are planning to write unit-tests for prepare-ChangeLog
-        in a run-leaks_unittest/ manner. This patch is one of the incremental
-        refactorings to remove all top-level code and global variables from
-        prepare-ChangeLog.
-
-        * Scripts/prepare-ChangeLog: Moved top-level code to get the latest ChangeLogs
-        into getLatestChangeLogs(), and moved top-level code to resolve conflicted ChangeLogs
-        into resolveConflictedChangeLogs().
-        (getLatestChangeLogs):
-        (resolveConflictedChangeLogs):
-
-2011-12-11  Kentaro Hara  <haraken@chromium.org>
-
-        [Refactoring] Move top-level code to generate a new ChangeLog into a method
-        https://bugs.webkit.org/show_bug.cgi?id=74253
-
-        Reviewed by David Kilzer.
-
-        The objective is to make prepare-ChangeLog a loadable Perl module for unit testing,
-        which requires to remove top-level code and global variables. This patch is one of
-        the incremental refactorings for that.
-
-        * Scripts/prepare-ChangeLog: Moved top-level code to generate a new ChangeLog into generateNewChangeLogs().
-        (generateFunctionLists):
-        (findChangeLogs):
-        (generateNewChangeLogs):
-        (generateFileList): Removed an unnecessary variable $didChangeRegressionTests.
-
-2011-12-10  Kentaro Hara  <haraken@chromium.org>
-
-        [Refactoring] In prepare-ChangeLog, move top-level code to find ChangeLogs into a method
-        https://bugs.webkit.org/show_bug.cgi?id=74175
-
-        Reviewed by Ryosuke Niwa.
-
-        The objective is to make prepare-ChangeLog a loadable Perl module for unit testing.
-        This requires to remove top-level code. This patch is one of the incremental refactorings
-        for that.
-
-        * Scripts/prepare-ChangeLog: Moved top-level code to find ChangeLogs into findChangeLogs().
-        (findChangeLogs):
-
-2011-12-10  Andreas Kling  <kling@webkit.org>
-
-        Add my Apple e-mail to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-12-09  Dirk Pranke  <dpranke@chromium.org>
-
-        chromium win build: revert build_webkit_exes_from_webkit_gyp change
-        https://bugs.webkit.org/show_bug.cgi?id=74225
-
-        This change sets build_webkit_exes_from_webkit_gyp back to 1;
-        the "All.gyp" solution doesn't work on windows.
-
-        * Scripts/webkitdirs.pm:
-        (buildChromium):
-
-2011-12-09  Hugo Parente Lima  <hugo.lima@openbossa.org>
-
-        [Qt] Click's count is limited to three continuous clicks.
-        https://bugs.webkit.org/show_bug.cgi?id=45666
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Update m_time at every call to leapForward, so double clicks
-        event are correctly sent by EventSender.
-
-        * WebKitTestRunner/qt/EventSenderProxyQt.cpp:
-        (WTR::EventSenderProxy::updateClickCountForButton):
-        (WTR::EventSenderProxy::leapForward):
-
-2011-12-09  Kentaro Hara  <haraken@chromium.org>
-
-        [Refactoring] Reduce top-level code in prepare-ChangeLog
-        https://bugs.webkit.org/show_bug.cgi?id=74172
-
-        Reviewed by Ryosuke Niwa.
-
-        The objective is to make prepare-ChangeLog a loadable Perl module for unit testing.
-        This requires to remove top-level code. This patch is one of the incremental refactorings
-        for that.
-
-        * Scripts/prepare-ChangeLog: Moved some top-level code into generateFunctionLists().
-        (generateFunctionLists):
-
-2011-12-09  Sam Weinig  <sam@webkit.org>
-
-        Expose a WKConnectionRef which represents the connection to/from the WebProcess/UIProcess
-        https://bugs.webkit.org/show_bug.cgi?id=74218
-
-        Reviewed by Anders Carlsson.
-
-        Add a test of the WKConnectionRef API.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2/WKConnection.cpp: Added.
-        (TestWebKitAPI::didCreateConnection):
-        (TestWebKitAPI::connectionDidReceiveMessage):
-        (TestWebKitAPI::connectionDidClose):
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/WKConnection_Bundle.cpp: Added.
-        (TestWebKitAPI::connectionDidReceiveMessage):
-        (TestWebKitAPI::WKConnectionTest::WKConnectionTest):
-        (TestWebKitAPI::WKConnectionTest::initialize):
-
-2011-12-09  David Levin  <levin@chromium.org>
-
-        Hash* iterators should allow comparison between const and const versions.
-        https://bugs.webkit.org/show_bug.cgi?id=73370
-
-        Reviewed by Darin Adler.
-
-        * TestWebKitAPI/TestWebKitAPI.gypi: Add the new test file to the build.
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj: Ditto.
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj: Ditto.
-        * TestWebKitAPI/Tests/WTF/HashMap.cpp: Added.
-        (TestWebKitAPI::TEST): Add a test for the new functionality.
-
-2011-12-09  Dirk Pranke  <dpranke@chromium.org>
-
-        chromium: visual studio projects are busted when build_webkit_exes_from_webkit_gyp==0
-        https://bugs.webkit.org/show_bug.cgi?id=74212
-
-        Reviewed by Tony Chang.
-
-        The change introduced in r102201 to split the executables out of
-        WebKit.gyp apparently doesn't work right on Windows, since
-        WebKit.gyp and Tools.gyp refer to dependent projects by
-        different relative paths (it appears gyp doesn't normalize the
-        paths). This change moves Tools.gyp to be in the same directory
-        as WebKit.gyp (and All.gyp), which should fix this and
-        conveniently will also solve the problem of how to add Tools.gyp
-        to the chromium DEPS file.
-
-        * Tools.gyp: Renamed to ../Source/WebKit/chromium/Tools.gyp
-
-2011-12-09  Kentaro Hara  <haraken@chromium.org>
-
-        [Refactoring] In prepare-ChangeLog, move top-level code to fetch a bug description from URL into a method
-        https://bugs.webkit.org/show_bug.cgi?id=74173
-
-        Reviewed by Ryosuke Niwa.
-
-        The objective is to make prepare-ChangeLog a loadable Perl module for unit testing.
-        This requires to remove top-level code. This patch is one of the incremental refactorings
-        for that.
-
-        * Scripts/prepare-ChangeLog: Moved top-level code to fetch a bug description from URL into fetchBugDescriptionFromURL().
-        (fetchBugDescriptionFromURL):
-
-2011-12-09  Tony Chang  <tony@chromium.org>
-
-        Switch the chromium mac bots to using skia test results
-        https://bugs.webkit.org/show_bug.cgi?id=74201
-
-        Reviewed by Ryosuke Niwa.
-
-        This is reverting http://trac.webkit.org/changeset/97781 and changing
-        the name in master.cfg to no longer have cg in the name.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (appendCustomBuildFlags):
-        (RunWebKitTests.start):
-
-2011-12-09  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        [Qt] Remove a wrongly placed ASSERT.
-
-        Reviewed by Tor Arne Vestbø.
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::notify):
-
-2011-12-09  Cary Clark  <caryclark@google.com>
-
-        layout_test update to accommodate new use_skia=1 default on Chromium-Mac
-        https://bugs.webkit.org/show_bug.cgi?id=74118
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        (get):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        (ChromiumMacPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        (ChromiumMacPortTest.test_versions):
-        (ChromiumMacPortTest.test_graphics_type):
-
-2011-12-09  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Use new qmake option in Qt5 to prevent dependency issues with GNUmake
-
-        The GNUmake + gcc_MD_depends options together produce .d files using GCC, but
-        this failed when moving files in the source tree, as the .d file would contain
-        stale dependencies on the old source file location. By keeping the object files
-        (and hence the depdendency files) in a proper tree structure inside the objects
-        directory we can prevent this failure.
-
-        A side benefit is that we can also have objects with the same name inside the
-        same project.
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/unix/default_pre.prf:
-
-2011-12-09  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed. Update unit test after r102412.
-
-        * Scripts/webkitpy/tool/bot/irc_command_unittest.py:
-        (IRCCommandTest.test_whois):
-
-2011-12-09  Kentaro Hara  <haraken@chromium.org>
-
-        REGRESSION(r102105): run-bindings-tests should output full diff results
-        https://bugs.webkit.org/show_bug.cgi?id=74166
-
-        Reviewed by Adam Barth.
-
-        Since r102105, the output of run-bindings-tests is truncated to 500 characters.
-        run-bindings-tests should output full diff results.
-
-        * Scripts/webkitpy/bindings/main.py: Replaced e.message_with_output() with e.output.
-        (BindingsTests.generate_from_idl):
-        (BindingsTests.generate_supplemental_dependency):
-        (BindingsTests.detect_changes):
-
-2011-12-09  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Fix compilation with newly separated Qt 5 QtQuick module
-        https://bugs.webkit.org/show_bug.cgi?id=73990
-
-        Reviewed by Kenneth Rohde Christiansen, tweaked by Csaba Osztrogonác.
-
-        Fix QtQuick includes after move from QtDeclarative to QtQuick.
-
-        * MiniBrowser/qt/BrowserWindow.h:
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-
-2011-12-08  Adam Klein  <adamk@chromium.org>
-
-        [MutationObservers] V8LazyEventHandler breaks microtask delivery semantics
-        https://bugs.webkit.org/show_bug.cgi?id=73492
-
-        Reviewed by Adam Barth.
-
-        Add eventSender.scheduleAsynchronousKeyDown, needed to cause a
-        keypress event without any script on the stack.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::EventSender):
-        (EventSender::keyDown):
-        (KeyDownTask::KeyDownTask):
-        (KeyDownTask::runIfValid):
-        (EventSender::scheduleAsynchronousKeyDown):
-        * DumpRenderTree/chromium/EventSender.h:
-
-2011-12-08  Hayato Ito  <hayato@chromium.org>
-
-        [gdb] Pretty printer for a 8-bit version of WTF::StringImpl and LChar*.
-        https://bugs.webkit.org/show_bug.cgi?id=73980
-
-        Reviewed by Tony Chang.
-
-        * gdb/webkit.py:
-        (guess_string_length):
-        (ustring_to_string):
-        (lstring_to_string):
-        (LCharStringPrinter):
-        (LCharStringPrinter.to_string):
-        (WTFStringImplPrinter.get_length):
-        (WTFStringImplPrinter.to_string):
-        (WTFStringImplPrinter.is_8bit):
-        (WTFStringPrinter.stringimpl_ptr):
-        (WTFStringPrinter.get_length):
-        (WTFStringPrinter.to_string):
-        (add_pretty_printers.lookup_function):
-
-2011-12-08  Pierre Rossi  <pierre.rossi@gmail.com>
-
-        Drop ENABLE_NO_LISTBOX_RENDERING, and make it a runtime decision.
-        https://bugs.webkit.org/show_bug.cgi?id=73916
-
-        Reviewed by Kent Tamura.
-
-        * qmake/mkspecs/features/features.prf:
-
-2011-12-08  Adrienne Walker  <enne@google.com>
-
-        Unreviewed contributor additions to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-12-08  David Reveman  <reveman@chromium.org>
-
-        [Chromium] Add per-tile painting flag to DumpRenderTree and rename AcceleratedDrawing to AcceleratedPainting in chromium specific code.
-        https://bugs.webkit.org/show_bug.cgi?id=74017
-
-        Reviewed by James Robinson.
-        
-        Add support for command line flag enable-per-tile-painting in DumpRenderTree.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::resetWebSettings):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::setAcceleratedPaintingEnabled):
-        (TestShell::setPerTilePaintingEnabled):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumDriver._wrapper_options):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-
-2011-12-08  Dirk Pranke  <dpranke@chromium.org>
-
-        create a "SystemHost" object for webkitpy to slim down the Host object
-        https://bugs.webkit.org/show_bug.cgi?id=72680
-
-        Reviewed by Eric Siedel.
-
-        This creates a SystemHost object that other objects that should
-        only have dependencies on functionality in webkitpy.common.system
-        can use; this will allow them to not require a full Host.
-
-        * Scripts/webkitpy/common/host.py:
-        * Scripts/webkitpy/common/host_mock.py:
-        * Scripts/webkitpy/common/system/systemhost.py: Added.
-        * Scripts/webkitpy/common/system/systemhost_mock.py: Added.
-
-2011-12-08  Chris Fleizach  <cfleizach@apple.com>
-
-        AX: platform/mac/accessibility/search-with-frames.html crashes
-        https://bugs.webkit.org/show_bug.cgi?id=74093
-
-        Reviewed by Darin Adler.
-
-        Take care of the case when an incoming element is null.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (uiElementForSearchPredicateCallback):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::uiElementForSearchPredicate):
-        * WebKitTestRunner/InjectedBundle/mac/AccessibilityUIElementMac.mm:
-        (WTR::AccessibilityUIElement::uiElementForSearchPredicate):
-
-2011-12-08  Alexander Færøy  <ahf@0x90.dk>
-
-        [Qt] Visualize mock point ID's in the MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=74098
-
-        Reviewed by Tor Arne Vestbø.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::updateVisualMockTouchPoints):
-        * MiniBrowser/qt/qml/MockTouchPoint.qml:
-
-2011-12-08  Dominic Mazzoni  <dmazzoni@google.com>
-
-        Accessibility: AccessibilityController should support listening to notifications on all elements.
-        https://bugs.webkit.org/show_bug.cgi?id=72866
-
-        Adds addNotificationListener and removeNotificationListener methods
-        to AccessibilityController, to listen to notifications on any element
-        rather than a specific element. Mac (DRT and WKTR) and Chromium (DRT)
-        implementations are all contained in this change.
-
-        On Mac, refactors AccessibilityNotificationHandler into its own
-        source file that can be used by both AccessibilityController and
-        AccessibilityUIElement. (Both DRT and WKTR.)
-
-        Reviewed by Chris Fleizach.
-
-        * DumpRenderTree/AccessibilityController.cpp:
-        (addNotificationListenerCallback):
-        (removeNotificationListenerCallback):
-        (AccessibilityController::getJSClass):
-        * DumpRenderTree/AccessibilityController.h:
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/chromium/AccessibilityController.cpp:
-        (AccessibilityController::AccessibilityController):
-        (AccessibilityController::notificationReceived):
-        (AccessibilityController::addNotificationListenerCallback):
-        (AccessibilityController::removeNotificationListenerCallback):
-        * DumpRenderTree/chromium/AccessibilityController.h:
-        * DumpRenderTree/gtk/AccessibilityControllerGtk.cpp:
-        (AccessibilityController::addNotificationListener):
-        (AccessibilityController::removeNotificationListener):
-        * DumpRenderTree/mac/AccessibilityControllerMac.mm:
-        (AccessibilityController::~AccessibilityController):
-        (AccessibilityController::addNotificationListener):
-        (AccessibilityController::removeNotificationListener):
-        * DumpRenderTree/mac/AccessibilityNotificationHandler.h: Added.
-        * DumpRenderTree/mac/AccessibilityNotificationHandler.mm: Added.
-        (-[NSString createJSStringRef]):
-        (-[AccessibilityNotificationHandler init]):
-        (-[AccessibilityNotificationHandler setPlatformElement:]):
-        (-[AccessibilityNotificationHandler dealloc]):
-        (-[AccessibilityNotificationHandler setCallback:]):
-        (-[AccessibilityNotificationHandler startObserving]):
-        (-[AccessibilityNotificationHandler _notificationReceived:]):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::addNotificationListener):
-        * DumpRenderTree/win/AccessibilityControllerWin.cpp:
-        (notificationListenerProc):
-        (AccessibilityController::addNotificationListener):
-        (AccessibilityController::removeNotificationListener):
-        (AccessibilityController::winNotificationReceived):
-        (AccessibilityController::winAddNotificationListener):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::addNotificationListener):
-        * WebKitTestRunner/InjectedBundle/AccessibilityController.cpp:
-        (WTR::AccessibilityController::addNotificationListener):
-        (WTR::AccessibilityController::removeNotificationListener):
-        * WebKitTestRunner/InjectedBundle/AccessibilityController.h:
-        (WTR::AccessibilityController::logAccessibilityEvents):
-        * WebKitTestRunner/InjectedBundle/AccessibilityTextMarker.cpp:
-        (WTR::AccessibilityTextMarker::AccessibilityTextMarker):
-        * WebKitTestRunner/InjectedBundle/AccessibilityTextMarkerRange.cpp:
-        (WTR::AccessibilityTextMarkerRange::AccessibilityTextMarkerRange):
-        * WebKitTestRunner/InjectedBundle/Bindings/AccessibilityController.idl:
-        * WebKitTestRunner/InjectedBundle/mac/AccessibilityControllerMac.mm: Added.
-        (WTR::AccessibilityController::addNotificationListener):
-        (WTR::AccessibilityController::removeNotificationListener):
-        * WebKitTestRunner/InjectedBundle/mac/AccessibilityNotificationHandler.h: Added.
-        * WebKitTestRunner/InjectedBundle/mac/AccessibilityNotificationHandler.mm: Added.
-        (-[NSString createJSStringRef]):
-        (-[AccessibilityNotificationHandler init]):
-        (-[AccessibilityNotificationHandler setPlatformElement:]):
-        (-[AccessibilityNotificationHandler dealloc]):
-        (-[AccessibilityNotificationHandler setCallback:]):
-        (-[AccessibilityNotificationHandler startObserving]):
-        (-[AccessibilityNotificationHandler _notificationReceived:]):
-        * WebKitTestRunner/InjectedBundle/mac/AccessibilityUIElementMac.mm:
-        (WTR::AccessibilityUIElement::AccessibilityUIElement):
-        (WTR::AccessibilityUIElement::verticalScrollbar):
-        (WTR::AccessibilityUIElement::addNotificationListener):
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-
-2011-12-08  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt][WK2] Unreviewed buildfix after r102352.
-
-        * qmake/mkspecs/features/webkit2.prf:
-
-2011-12-08  Adam Roben  <aroben@apple.com>
-
-        Make finding crash logs by PID work on Snow Leopard
-
-        Crash Reporter on Snow Leopard doesn't set the "app_description" extended attribute that we
-        were using to check the PID of the crashed process. (Crash Reporter on Lion does.) Now we
-        read the first line of the crash log and pull the PID out of there.
-
-        Fixes <http://webkit.org/b/74094> "webkit-patch crash-log <process> <PID>" doesn't work on
-        Snow Leopard
-
-        Reviewed by Darin Adler.
-
-        * Scripts/webkitpy/common/system/crashlogs.py:
-        (CrashLogs._find_newest_log_darwin): Read the first line of the crash log to get the process
-        name and PID for the log, rather than checking the Lion-only app_description extended
-        attribute. We now also reject the log if the process name doesn't match what we expect.
-
-        * Scripts/webkitpy/common/system/crashlogs_unittest.py:
-        (make_mock_crash_report_darwin): Added. Returns a mock crash report given a process name and
-        PID.
-        (CrashLogsTest.assertLinesEqual): Added. This is a compatibility shim around
-        unittest.TestCase.assertMultiLineEqual, which didn't exist before Python 2.7.
-        (CrashLogsTest.test_find_log_darwin): Made the mock crash reports more believable by using
-        the new make_mock_crash_report_darwin function. Also added tests for files that can't be
-        read, files that actually contain a crash log for some other process, and files that are
-        misformatted.
-
-        * Scripts/webkitpy/common/system/filesystem.py: Removed FileSystem.getxattr, which is now
-        unused.
-
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        (MockFileSystem.__init__): Removed xattr support, which is now unused.
-        (MockFileSystem.open_text_file_for_reading): Changed to actually pass the file's data to
-        ReadableTextFileObject. This function was completely broken before!
-        (ReadableBinaryFileObject.__init__): Made the data parameter non-optional to try to prevent
-        bugs like the above.
-        (ReadableTextFileObject.__init__): Added. Wraps the data in a StringIO object so we can do
-        things like readline() and seek().
-
-        (ReadableTextFileObject.close):
-        (ReadableTextFileObject.read):
-        Added. We override the superclass implementation to account for using a StringIO object.
-
-        (ReadableTextFileObject.readline):
-        (ReadableTextFileObject.seek):
-        Added. These just call through to StringIO.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_crash_log):
-        (MainTest.test_web_process_crash_log):
-        Changed to use make_mock_crash_report_darwin.
-
-2011-12-06  Jon Lee  <jonlee@apple.com>
-
-        [WK2] Add permissions support (73960)
-        https://bugs.webkit.org/show_bug.cgi?id=73960
-        <rdar://problem/10357008>
-
-        Reviewed by Darin Adler.
-
-        Add null function item to comply with added callback to WKPageUIClient.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::createOtherPage):
-        (WTR::TestController::initialize):
-
-2011-12-08  Alexander Færøy  <alexander.faeroy@nokia.com>
-
-        [Qt] Visualize mock points in the Qt MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=74074
-
-        Reviewed by Tor Arne Vestbø.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::updateVisualMockTouchPoints):
-        * MiniBrowser/qt/BrowserWindow.h:
-        * MiniBrowser/qt/MiniBrowser.qrc:
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::notify):
-        (MiniBrowserApplication::sendTouchEvent):
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-        * MiniBrowser/qt/icons/touchpoint.png: Added.
-        * MiniBrowser/qt/qml/MockTouchPoint.qml: Added.
-
-2011-12-08  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] WebKitTestRunner crashes with debug builds
-        https://bugs.webkit.org/show_bug.cgi?id=74090
-
-        Reviewed by Tor Arne Vestbø.
-
-        * WebKitTestRunner/qt/TestControllerQt.cpp:
-        (WTR::TestController::platformInitialize): Call QQuickWebView::platformInitialize
-        to ensure WTF/JSC threading is initialized.
-
-2011-12-08  Dirk Pranke  <dpranke@chromium.org>
-
-        fix build-webkit --chromium after breakage in r102201
-        https://bugs.webkit.org/show_bug.cgi?id=74031
-
-        Reviewed by Tony Chang.
-
-        * Scripts/webkitdirs.pm:
-        (buildChromium):
-
-2011-12-08  Kentaro Hara  <haraken@chromium.org>
-
-        Unreviewed, rolling out r102280.
-        http://trac.webkit.org/changeset/102280
-        https://bugs.webkit.org/show_bug.cgi?id=74031
-
-        Chromium/Windows build is broken
-
-        * Scripts/webkitdirs.pm:
-        (buildChromium):
-
-2011-12-08  Nayan Kumar K  <nayankk@motorola.com>
-
-        Adding myself to committers list.
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-12-07  Michael Saboff  <msaboff@apple.com>
-
-        StringBuilderTest.Append and StringBuilderTest.ToStringPreserveCapacity are failing.
-        https://bugs.webkit.org/show_bug.cgi?id=73995
-
-        Reenabled failing tests that the code part of the patch fixes.
-
-        Reviewed by Geoffrey Garen.
-
-        * TestWebKitAPI/Tests/WTF/StringBuilder.cpp:
-        (TestWebKitAPI::TEST):
-
-2011-12-07  MORITA Hajime  <morrita@google.com>
-
-        [filter-build-webkit] should not emit reset color when --no-color is given
-        https://bugs.webkit.org/show_bug.cgi?id=73992
-
-        Reviewed by Daniel Bates.
-
-        Stop printing control sequences when --no-color is given.
-        After this change, the filter runs nicely even on environments
-        like Emacs compilation-mode which cannot understand the control sequence.
-
-        * Scripts/filter-build-webkit:
-        (printLine):
-
-2011-12-07  Eric Seidel  <eric@webkit.org>
-
-        Use free memory to determine if we have space for DRT instances instead of total memory
-        https://bugs.webkit.org/show_bug.cgi?id=74021
-
-        Reviewed by Adam Barth.
-
-        This will hopefully make the Mac buildbots behave better.
-
-        I also reduced the expected memory needed per DRT now that
-        we're properly accounting for the system memory in our calculations.
-
-        * Scripts/webkitpy/common/system/platforminfo.py:
-        (PlatformInfo.total_bytes_memory):
-        (PlatformInfo._compute_free_bytes_from_vm_stat_output):
-        * Scripts/webkitpy/common/system/platforminfo_mock.py:
-        (MockPlatformInfo.total_bytes_memory):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.default_child_processes):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_default_child_processes):
-
-2011-12-07  Dirk Pranke  <dpranke@chromium.org>
-
-        fix build-webkit --chromium after breakage in r102201
-        https://bugs.webkit.org/show_bug.cgi?id=74031
-
-        Reviewed by Tony Chang.
-
-        r102201 introduced a change to the chromium build that splits
-        the executables out of WebKit.gyp into other gyp files, and adds
-        a new "All.gyp" that builds everything. However, I forgot to
-        update the build script to use All.gyp.
-
-        * Scripts/webkitdirs.pm:
-        (buildChromium):
-
-2011-12-07  Tom Zakrajsek  <tomz@codeaurora.org>
-
-        Moved myself to the committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-11-30  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Fix debug shlib build with V8.
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/qtwebkit.prf: Don't link jscore with
-        v8 builds.
-
-2011-11-30  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] V8 build fixes.
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/javascriptcore.prf: Don't add
-        Source/Thirdparty to the include search path here.
-        * qmake/mkspecs/features/webcore.prf: Instead it belongs here, because it's
-        used when building WebCore as well as using it, because header files like
-        GraphicsContext3D.h include stuff from ThirdParty.
-
-2011-12-07  Peter Beverloo  <peter@chromium.org>
-
-        [Chromium] Fix project file generation for the Android bot after r102201
-        https://bugs.webkit.org/show_bug.cgi?id=73996
-
-        The gyp refactoring in r102201 was didn't explicitly exclude
-        the Android operating system in Tools/Tools.gyp, which broke
-        as gcc_version is not defined for that configuration.
-
-        Reviewed by Andreas Kling.
-
-        * Tools.gyp:
-
-2011-12-07  Vsevolod Vlasov  <vsevik@chromium.org>
-
-        Unreviewed. Disabled failing tests on chromium.
-
-        * TestWebKitAPI/Tests/WTF/StringBuilder.cpp:
-        (TestWebKitAPI::TEST):
-
-2011-12-06  Dirk Pranke  <dpranke@chromium.org>
-
-        binaries in webkit.gyp should be split into a new file to break circular dependencies on webkit_support
-        https://bugs.webkit.org/show_bug.cgi?id=73382
-
-        Reviewed by Tony Chang.
-
-        XCode (and hence GYP) can't handle circular dependencies between
-        files (and projects). Accordingly, although the binaries in
-        WebKit.gyp depend on webkit_support and webkit_support depends
-        on webkit, we don't mention the latter dependency in the file.
-        To fix this, this change moves the binaries like DRT into a new
-        GYP file, and modifies gyp_webkit to build from that file
-        instead of WebKit.gyp.
-
-        * Tools.gyp: Added.
-
-2011-12-06  Adam Roben  <aroben@apple.com>
-
-        Add a pid parameter to CrashLogs.find_newest_log
-
-        When a PID is passed, only crash logs corresponding to a crashed process with that PID are
-        considered.
-
-        Fixes <http://webkit.org/b/73942> webkitpy provides no way to specify the PID of the crashed
-        process whose crash log you want to find
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/common/system/crashlogs.py:
-        (CrashLogs.find_newest_log): Added an optional pid parameter.
-        (CrashLogs._find_newest_log_darwin): Added a pid parameter. When specified, we look at each
-        candidate log's app_description extended attribute to see if that log corresponds to a
-        crashed process with the specified PID.
-
-        * Scripts/webkitpy/common/system/crashlogs_unittest.py:
-        (CrashLogsTest.test_find_newest_log_darwin): Added a few more mock crash logs with various
-        contents and PIDs. Added tests that show that the pid parameter to find_newest_log is
-        respected. Also fixed an erroneous use of assertTrue instead of assertEqual.
-
-        * Scripts/webkitpy/common/system/filesystem.py:
-        (FileSystem.getxattr): Added. On Darwin, calls through to the xattr module. On other
-        systems, raises a KeyError, mimicking the behavior on Darwin when the given attribute isn't
-        present.
-
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        (MockFileSystem.__init__): Added an optional xattrs parameter. Documented other parameters.
-        (MockFileSystem.getxattr): Added. Just pulls the given attribute out of the xattrs
-        dictionary.
-
-        * Scripts/webkitpy/tool/commands/queries.py:
-        (CrashLog): Added help text. Added an optional PID parameter.
-        (CrashLog.execute): Pass the PID, if any, through to find_newest_log.
-
-2011-12-06  Adam Roben  <aroben@apple.com>
-
-        Wait for Crash Reporter to finish even when it lets the crashed process die quickly
-
-        NRWT was only waiting for Crash Reporter in cases where it was keeping the crashed process
-        alive beyond the normal timeout limit. In cases where the crashed process was able to die
-        faster, NRWT would assume that Crash Reporter had finished even though it often was still
-        running, which would lead to an incorrect crash log being picked up.
-
-        Part of <http://webkit.org/b/71380> NRWT incorrectly associates crash logs with tests
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        (ServerProcess._reset):
-        (ServerProcess.write):
-        (ServerProcess._check_for_crash): Changed to use new set_crashed function instead of setting
-        .crashed directly. Added wait_for_crash_reporter parameter, which we pass along to
-        set_crashed.
-
-        (ServerProcess._handle_timeout): Fixed a logic error that would cause .crashed and
-        .timed_out both to be set to True in cases where Crash Reporter took a long time to run. Now
-        we bail out of handling the failure as a timeout if we find out that the process in fact
-        crashed. We tell _check_for_crash not to wait for Crash Reporter because we've already done
-        so.
-        (ServerProcess.set_crashed): Added. When the process crashes, we wait for Crash Reporter to
-        finish running (unless directed otherwise) so we can be sure the crash log has been saved to
-        disk.
-
-        * Scripts/webkitpy/layout_tests/port/server_process_unittest.py:
-        (TrivialMockPort.is_crash_reporter): Added.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver._check_for_driver_crash): Changed to use set_crashed. (This also fixed a typo
-        that would have partially broken crash detection on Windows, if NRWT worked on Windows.)
-
-2011-12-06  Adam Barth  <abarth@webkit.org>
-
-        NRWT fails on unreleased versions of Mac OS X
-        https://bugs.webkit.org/show_bug.cgi?id=72748
-
-        Reviewed by Dirk Pranke.
-
-        Hopefully this patch will make NRWT work on future versions on Mac OS X.
-        Most of the infrastructure was already in place, but there were some
-        asserts that failed.  I've tested this patch by haxoring the version
-        detection logic to simulate an unknown version.  We might need to
-        iterate based on feedback from folks with a real future version.
-
-        * Scripts/webkitpy/layout_tests/port/apple.py:
-        (ApplePort.__init__):
-            - mac-future is an allowed port_name that's used internally by
-              webkitpy to represent future versions of Mac OS X.
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        (test_versions):
-            - Test that we don't throw exceptions when dealing with future
-              versions of Mac OS X.
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._expectations_from_skipped_files):
-            - Demote this logging message to "debug".  It's expected that
-              mac-future doesn't have a Skipped file.
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        (WinPort.__init__):
-            - Re-order some code in these constructors so that
-              self._operating_system is available to the ApplePort constructor.
-
-2011-12-06  Tommy Widenflycht  <tommyw@google.com>
-
-        Added myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-12-06  Peter Beverloo  <peter@chromium.org>
-
-        Added myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-12-06  Kentaro Hara  <haraken@chromium.org>
-
-        [Refactoring] In webkitpy/bindings/main.py, replace subprocess.Popen() with Executive
-        https://bugs.webkit.org/show_bug.cgi?id=73637
-
-        Reviewed by Adam Barth.
-
-        This patch replaces subprocess.Popen() with Executive, similar to other
-        Python scripts in webkitpy/. I manually confirmed that run-bindings-tests
-        works well for cases where no exception is raised, no exception is raised
-        but diff is found, and ScriptError is raised.
-
-        * Scripts/run-bindings-tests:
-        (main):
-        * Scripts/webkitpy/bindings/main.py: Replaces subprocess.Popen() with Executive.
-        (BindingsTests.__init__):
-        (BindingsTests.generate_from_idl):
-        (BindingsTests.generate_supplemental_dependency):
-        (BindingsTests.detect_changes):
-
-2011-12-05  Alexander Færøy  <alexander.faeroy@nokia.com>
-
-        [Qt] MiniBrowser should default to touch behavior
-        https://bugs.webkit.org/show_bug.cgi?id=73863
-
-        Reviewed by Chang Shu.
-
-        MiniBrowser currently defaults to the traditional desktop behaviour
-        instead of touch behaviour which is prefered.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (printHelp):
-        (MiniBrowserApplication::handleUserOptions):
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-        (WindowOptions::WindowOptions):
-        (WindowOptions::setUseTraditionalDesktopBehavior):
-        (WindowOptions::useTraditionalDesktopBehavior):
-
-2011-12-05  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        webkit.py: Really fix the printing of StringImpl now that 8-bit strings are present.
-        https://bugs.webkit.org/show_bug.cgi?id=73878
-
-        Reviewed by Tony Chang.
-
-        r98624 turned StringImpl::m_data into StringImpl::{m_data8,m_data16}.
-        r98785 made webkit.py always use m_data16, which does not work when
-        the string is an 8-bit string (such as KURL::string()).
-
-        I was not able to directly call StringImpl::is8Bit() in the Python
-        code, so I just reproduced the implementation there.
-
-        * gdb/webkit.py:
-        (WTFStringPrinter.is_8bit): Reproduced StringImpl::is8Bit().
-        (WTFStringPrinter.to_string):
-        (JSCUStringPrinter.is_8bit): Reproduced StringImpl::is8Bit().
-        (JSCUStringPrinter.to_string):
-
-2011-12-05  Eric Seidel  <eric@webkit.org>
-
-        Up the "expected ram for each DRT instance" to 400MB instead of 300MB
-        in hopes of making the Snow Leopard bot stop timing out.
-
-        Unreviewed.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.default_child_processes):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_default_child_processes):
-
-2011-12-05  Eric Seidel  <eric@webkit.org>
-
-        NRWT creates too many workers on RAM-limited machines
-        https://bugs.webkit.org/show_bug.cgi?id=73847
-
-        Reviewed by Dirk Pranke.
-
-        Make NRWT restrict its number of workers when there isn't enough
-        RAM to support them.
-        Also re-enable parallel testing on the Mac bots which were
-        failing due to not enough ram.
-
-        * Scripts/run-webkit-tests:
-        (platformIsReadyForParallelTesting):
-        * Scripts/webkitpy/common/host.py:
-        (Host.__init__):
-        * Scripts/webkitpy/common/system/executive_mock.py:
-        (MockExecutive.cpu_count):
-        * Scripts/webkitpy/common/system/platforminfo.py:
-        (PlatformInfo.__init__):
-        (PlatformInfo.display_name):
-        * Scripts/webkitpy/common/system/platforminfo_mock.py:
-        (MockPlatformInfo.display_name):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.default_child_processes):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_default_child_processes):
-        (PortTest.test_pretty_patch_os_error):
-
-2011-12-05  Hugo Parente Lima  <hugo.lima@openbossa.org>
-
-        Last mouse event could be lost if a JS call to eventSender.leapForward is made
-        https://bugs.webkit.org/show_bug.cgi?id=73366
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Empty the entire event queue when requested besides using
-        sendEvent instead of postEvent to make sure all events were
-        delivered.
-
-        * WebKitTestRunner/qt/EventSenderProxyQt.cpp:
-        (WTR::EventSenderProxy::EventSenderProxy):
-        (WTR::EventSenderProxy::sendOrQueueEvent):
-        (WTR::EventSenderProxy::replaySavedEvents):
-
-2011-12-05  Adam Barth  <abarth@webkit.org>
-
-        [Chromium] Remove no-longer-used forwarding headers in the WebKit API
-        https://bugs.webkit.org/show_bug.cgi?id=73845
-
-        Reviewed by Darin Fisher.
-
-        Update includes to point to the new header locations.
-
-        * DumpRenderTree/chromium/AccessibilityController.cpp:
-        * DumpRenderTree/chromium/AccessibilityUIElement.cpp:
-        * DumpRenderTree/chromium/CppBoundClass.cpp:
-        * DumpRenderTree/chromium/DRTDevToolsAgent.cpp:
-        * DumpRenderTree/chromium/DRTDevToolsAgent.h:
-        * DumpRenderTree/chromium/DRTDevToolsClient.h:
-        * DumpRenderTree/chromium/EventSender.cpp:
-        * DumpRenderTree/chromium/EventSender.h:
-        * DumpRenderTree/chromium/GamepadController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/MockSpellCheck.cpp:
-        * DumpRenderTree/chromium/NotificationPresenter.cpp:
-        * DumpRenderTree/chromium/PlainTextController.cpp:
-        * DumpRenderTree/chromium/Task.cpp:
-        * DumpRenderTree/chromium/TestNavigationController.h:
-        * DumpRenderTree/chromium/TestShell.cpp:
-        * DumpRenderTree/chromium/TestWebPlugin.cpp:
-        * DumpRenderTree/chromium/TestWebPlugin.h:
-        * DumpRenderTree/chromium/TextInputController.cpp:
-        * DumpRenderTree/chromium/WebPermissions.cpp:
-        * DumpRenderTree/chromium/WebPreferences.h:
-        * DumpRenderTree/chromium/WebThemeEngineDRTMac.h:
-        * DumpRenderTree/chromium/WebThemeEngineDRTMac.mm:
-        * DumpRenderTree/chromium/WebThemeEngineDRTWin.cpp:
-        * DumpRenderTree/chromium/WebThemeEngineDRTWin.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-
-2011-12-05  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Add Aharon Lanin to the contributors list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-12-05  Jarred Nicholls  <jarred@sencha.com>
-
-        Moving myself from contributors to committers.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-12-05  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        Add myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-12-05  Michael Brüning  <michael.bruning@nokia.com>
-
-        [Qt] Rename QQuickWebView::canStop property to just loading 
-        https://bugs.webkit.org/show_bug.cgi?id=73813
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Replaced references to WebView.canStop with WebView.loading.
-
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-
-2011-12-05  Dirk Pranke  <dpranke@chromium.org>
-
-        run-webkit-tests: limit --child-processes properly on apple mac
-        https://bugs.webkit.org/show_bug.cgi?id=73856
-
-        Reviewed by Adam Roben.
-
-        Fix typos in r102013 so that we correctly pass --child-processes=1 on
-        the apple mac bots temporarily.
-
-        * Scripts/run-webkit-tests:
-        (platformIsReadyForParallelTesting):
-
-2011-12-05  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Temporarily set --child-process=1 on Mac because 20+ tests are timing out
-        https://bugs.webkit.org/show_bug.cgi?id=73840
-
-        Reviewed by Simon Fraser.
-
-        Temporarily go back to single process mode on Mac.
-
-        * Scripts/run-webkit-tests:
-        (platformIsReadyForParallelTesting):
-
-2011-12-05  Adam Roben  <aroben@apple.com>
-
-        Redeploy apple-macpro-7 and apple-xserve-1
-
-        These slaves have been sitting idle since we removed our Leopard builders in r97496.
-
-        Fixes <http://webkit.org/b/73829> REGRESSION (r97496): apple-macpro-7 and apple-xserve-1 are
-        sitting idle
-
-        Reviewed by Sam Weinig.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Re-added apple-macpro-7 and
-        apple-xserve-1. The former is now doing "SnowLeopard Intel Debug (WebKit2 Tests)", which
-        allows apple-xserve-9 to be a build-only slave, and the latter is doing "Lion Intel Debug
-        (WebKit2 Tests)".
-
-2011-12-05  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        [Qt] Make the UI of the MiniBrowser slightly nicer
-
-        Rubberstamped by Simon Hausmann.
-
-        - Add proper padding
-        - Show feedback when pressing on the toolbar icons
-        - Make the text entry better looking
-
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-
-2011-12-05  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
-
-        NRWT should handle duplicated expectations
-        https://bugs.webkit.org/show_bug.cgi?id=69750
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectations.__init__):
-        (TestExpectations._report_errors):
-        (TestExpectations._add_expectations):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (test_add_skipped_tests):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.skipped_tests):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort.test_expectations):
-        (WebKitPort.skipped_tests):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (test_test_expectations):
-
-2011-12-04  Eric Seidel  <eric@webkit.org>
-
-        After success with Mac, Win and Gtk, turning on parallel testing
-        by default for all platforms (except Qt).
-
-        We'll add more platforms to the blacklist if we see problems.
-
-        Unreviewed.
-
-        * Scripts/run-webkit-tests:
-        (platformIsReadyForParallelTesting):
-
-2011-12-04  Sam Weinig  <sam@webkit.org>
-
-        Add tests for RetainPtr::adoptNS/adoptCF
-        https://bugs.webkit.org/show_bug.cgi?id=73470
-
-        Reviewed by Adam Roben and Darin Adler.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WTF/cf/RetainPtr.cpp: Added.
-        (TestWebKitAPI::TEST):
-        Test that adopting using adoptCF creates a RetainPtr with a
-        value whose retain count is 1.
-
-        * TestWebKitAPI/Tests/WTF/ns: Added.
-        * TestWebKitAPI/Tests/WTF/ns/RetainPtr.mm: Added.
-        (TestWebKitAPI::TEST):
-        Test that adopting using adoptNS creates a RetainPtr with a
-        value whose retain count is 1.
-
-2011-12-04  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Include cairo, pixman and gnome-icon-theme in the jhbuild modules
-        https://bugs.webkit.org/show_bug.cgi?id=73748
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * gtk/jhbuild.modules: Add some new modules the jhbuild moduleset.
-
-2011-12-04  Philippe Normand  <pnormand@igalia.com>
-
-        Another GTK build fix after r101922.
-
-        Rubber-stamped by Martin Robinson.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::pathToLocalResource): Plug possible String ref leak.
-
-2011-12-04  Xan Lopez  <xlopez@igalia.com>
-
-        Fix compiler warning in LayoutTestController
-
-        Reviewed by Philippe Normand.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController): fix warning.
-
-2011-12-04  Alexandre Mazari  <scaroo@gmail.com>
-
-        Add missing methods used by fast/notifications tests to LayoutTestController
-        https://bugs.webkit.org/show_bug.cgi?id=63616
-
-        Reviewed by Martin Robinson.
-
-        Add missing simulateDesktopNotificationClick method used by
-        fast/notifications. Provide a default implementation for
-        areDesktopNotificationPermissionRequestsIgnored and
-        ignoreDesktopNotificationPermissionRequests.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController): call into the port implementation.
-        (simulateDesktopNotificationClickCallback): ditto.
-        (ignoreDesktopNotificationPermissionRequestsCallback): default implementation.
-        (LayoutTestController::staticFunctions): declare new methods.
-        (LayoutTestController::ignoreDesktopNotificationPermissionRequests): default implementation.
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::areDesktopNotificationPermissionRequestsIgnored):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::simulateDesktopNotificationClick): dummy implementation.
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::simulateDesktopNotificationClick): ditto.
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::simulateDesktopNotificationClick): ditto.
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::simulateDesktopNotificationClick): ditto.
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::simulateDesktopNotificationClick): ditto.
-
-2011-12-03  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        [GTK] Don't log document events in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=73746
-
-        Reviewed by Martin Robinson.
-
-        Stop connecting globally to document-related events.
-
-        * DumpRenderTree/gtk/AccessibilityCallbacks.cpp:
-        (connectAccessibilityCallbacks): Removed connections.
-        (disconnectAccessibilityCallbacks): Removed disconnections.
-
-2011-12-03  Dan Bernstein  <mitz@apple.com>
-
-        Added a test for <rdar://problem/10523721> Crash at WebCore::SubresourceLoader::releaseResources
-
-        Reviewed by Darin Adler.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/mac/SubresourceErrorCrash.mm: Added.
-        (TestWebKitAPI::TEST):
-
-2011-12-03  Philippe Normand  <pnormand@igalia.com>
-
-        Another GTK build fix after r101922.
-
-        Rubber-stamped by Martin James Robinson.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::pathToLocalResource): return value needs to
-        be a URI.
-
-2011-12-03  Martin Robinson  <mrobinson@igalia.com>
-
-        Small fix for my previous patch. Do not try to delete a member
-        of a dictionary that does not exist.
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * gtk/run-with-jhbuild:
-        (install_and_run_jhbuild):
-
-2011-12-03  Martin Robinson  <mrobinson@igalia.com>
-
-        Fix jhbuild installation for people who have unusual MAKE environment
-        variables such as 'make -j4' as the jhbuild build does not handle it.
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * gtk/run-with-jhbuild:
-        (install_and_run_jhbuild): Remove any MAKE environment variable before building jhbuild.
-
-2011-12-03  Martin Robinson  <mrobinson@igalia.com>
-
-        Fix the update-webkitgtk-libs script to properly trigger a jhbuild installation
-        when run for the first time.
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * Scripts/update-webkitgtk-libs: Fix first run.
-
-2011-12-03  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, GTK build fix after r101922.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::pathToLocalResource): Added sentinel in
-        g_build_filename call.
-
-2011-12-03  Philippe Normand  <pnormand@igalia.com>
-
-        GTK API tests build fix. Run the tests inside jhbuild.
-
-        Rubber-stamped by Gustavo Noronha Silva.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner.__init__):
-        (TestRunner.run._error_handler):
-        (TestRunner):
-        (TestRunner.run):
-
-2011-12-03  Martin Robinson  <mrobinson@igalia.com>
-
-        Small build fix. Properly specify the path to the locally installed jhbuild.
-
-        * Scripts/update-webkitgtk-libs: Fix jhbuild path.
-
-2011-12-03  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK][DRT] Normalize file:///tmp/LayoutTests in LayoutTestController::pathToLocalResource()
-        https://bugs.webkit.org/show_bug.cgi?id=67256
-
-        Reviewed by Philippe Normand.
-
-        Implement LayoutTestController::pathToLocalResource for GTK+. Instead of passing 
-        WEBKIT_TEST_FONTS to the GTK+ test harnesses, pass a more generic WEBKIT_TOP_LEVEL,
-        which points to the more generic top-level path of the WebKit checkout. This code is
-        duplicated between WK1 and WK2 harnesses because we do not currently have a way to
-        share code here.
-
-        If WEBKIT_TOP_LEVEL is not provided, we search for the top level based on the binary
-        location. This will cause the fallback to fail if you build into a non-typical location
-        or even fake it with a symlink. In this case it's important to use the environment variable.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (getTopLevelPath): Added.
-        (initializeFonts): Use the new helper to get the font path.
-        * DumpRenderTree/gtk/DumpRenderTreeGtk.h: Expose the new helper.
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::pathToLocalResource):Use the new helper to normalize
-        test paths.
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort.setup_environ_for_server):Pass the top-level path of the
-        checkout instead of passing the font path.
-        * WebKitTestRunner/InjectedBundle/gtk/ActivateFontsGtk.cpp:
-        (WTR::getTopLevelPath): Added this helper.
-        (WTR::inititializeFontConfigSetting): Use the helper to find the font path.
-
-2011-12-02  David Levin  <levin@chromium.org>
-
-        Rename WTF class from TemporarilyChange to TemporaryChange.
-        https://bugs.webkit.org/show_bug.cgi?id=73479
-
-        Reviewed by Eric Seidel.
-
-        * DumpRenderTree/ForwardingHeaders/wtf/TemporarilyChange.h: Removed.
-        * DumpRenderTree/ForwardingHeaders/wtf/TemporaryChange.h: Added.
-        * TestWebKitAPI/TestWebKitAPI.gypi:
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WTF/TemporaryChange.cpp: Renamed from Tools/TestWebKitAPI/Tests/WTF/TemporarilyChange.cpp.
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-
-2011-12-02  Tony Chang  <tony@chromium.org>
-
-        [NRWT] reftest asserts intermittently on the Qt-WK2 bot
-        https://bugs.webkit.org/show_bug.cgi?id=73453
-
-        Reviewed by Ryosuke Niwa.
-
-        We used to assert if a ref test didn't generate pixel results. Instead, just claim it is a failing test.
-        The verbose output will include the failure reason.
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py: Don't assert, return FailureReftestNoImagesGenerated instead.
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer.py:
-        (write_test_result):
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer_unittest.py: Remove stray letter t.
-        * Scripts/webkitpy/layout_tests/models/test_failures.py: Add a new failure type: FailureReftestNoImagesGenerated
-        (determine_result_type):
-        (FailureReftestNoImagesGenerated.__init__):
-        (FailureReftestNoImagesGenerated):
-        (FailureReftestNoImagesGenerated.message):
-        * Scripts/webkitpy/layout_tests/port/test.py: Add a test case for integration tests.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py: Update test counts.
-        (MainTest.test_run_singly_actually_runs_tests):
-        (MainTest.test_unexpected_failures):
-        (EndToEndTest.test_end_to_end):
-
-2011-12-02  Ryosuke Niwa  <rniwa@webkit.org>
-
-        ChangeLog should be able to parse annotated changelogs
-        https://bugs.webkit.org/show_bug.cgi?id=72703
-
-        Reviewed by Eric Seidel.
-
-        Make parse_entries_from_file aware of svn blame annotation such as "100000 ossy@webkit.org ",
-        and extract the revision number for each entry.
-
-        Also add a support to extract "svn blame" result from svn/git checkout to scm classes.
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        * Scripts/webkitpy/common/checkout/scm/scm.py:
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-
-2011-12-02  Eric Seidel  <eric@webkit.org>
-
-        Enable parallel testing for Win and Gtk bots
-        after confirming with Lucas and Martin the bots should be OK.
-
-        Unreviewed. (I ran the idea by Lucas and Martin.)
-
-        * Scripts/run-webkit-tests:
-        (platformIsReadyForParallelTesting):
-
-2011-12-02  Martin Robinson  <mrobinson@igalia.com>
-
-        Try to fix the GTK+ build.
-
-        * gtk/jhbuild.modules: Properly specify the glib-networking
-        dependency for soup.
-
-2011-12-02  Martin Robinson  <mrobinson@igalia.com>
-
-        Fix a syntax error in the committers.py file.
-
-        * Scripts/webkitpy/common/config/committers.py: Add a missing comma.
-
-2011-12-02  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Add Alan Stearns and Peter Linss to the contributors list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-12-02  Kent Tamura  <tkent@chromium.org>
-
-        [Chromium] Fix compilation warnings for ASSERT()
-        https://bugs.webkit.org/show_bug.cgi?id=73623
-
-        Reviewed by Tony Chang.
-
-        * DumpRenderTree/chromium/ImageDiff.cpp:
-         - Fix fprintf format: %s -> %d for __LINE__
-         - Do nothing for ASSERT() if NDEBUG.
-
-2011-12-02  Eric Seidel  <eric@webkit.org>
-
-        Enable parallel testing for all Mac bots.
-
-        Unreviewed.
-
-        * Scripts/run-webkit-tests:
-        (platformIsReadyForParallelTesting):
-
-2011-12-02  Eric Seidel  <eric@webkit.org>
-
-        Enable parallel testing for run-webkit-tests on Mac Lion.
-        I plan to move all the machines to parallel testing shortly
-        but we're starting with Lion.
-
-        Unreviewed.
-
-        * Scripts/run-webkit-tests:
-        (platformIsReadyForParallelTesting):
-
-2011-12-02  Kausalya Madhusudhanan  <kmadhusu@chromium.org>
-
-        Added helper method to identify whether the page has custom page size style.
-        https://bugs.webkit.org/show_bug.cgi?id=73585
-
-        Reviewed by Darin Fisher.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::hasCustomPageSizeStyle):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-
-2011-12-01  Ryosuke Niwa  <rniwa@webkit.org>
-
-        [NRWT] reftest should support having multiple references per test
-        https://bugs.webkit.org/show_bug.cgi?id=73613
-
-        Reviewed by Dirk Pranke.
-
-        Add a support for having multiple reference files for a single test.
-
-        Because a reftest succeeds when it matches at least one of expected matches and fails when it matches
-        at least one of expected mismatches, we compare expected mismatches first in order to minimize
-        the number of reference files to open on DRT.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (interpret_test_failures): Remove checks no longer applicable.
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ResultSummaryTest.test_interpret_test_failures): Ditto.
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner.__init__): Remove a bunch of code and just call port.reference_files.
-        (SingleTestRunner._driver_input):
-        (SingleTestRunner.run):
-        (SingleTestRunner._run_reftest): Compare the output of the test to each reference file.
-        * Scripts/webkitpy/layout_tests/models/test_input.py:
-        (TestInput.__init__): Remove ref_file and is_mismatch_reftest because they are no longer used.
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.reference_files): Renamed from _reference_file_for. Returns a list of expectation, filename pairs.
-        (_parse_reftest_list): Now supports parsing multiple entries for a single test.
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_parse_reftest_list):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_unexpected_failures):
-        (MainTest.test_reftest_skipped_if_unlisted): Renamed from test_missing_and_unexpected_results.
-        (EndToEndTest.test_end_to_end):
-        (EndToEndTest.test_reftest_with_two_notrefs): Added.
-
-2011-12-02  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Build libsoup without gnome dependencies (like keyring).
-
-        * gtk/jhbuild.modules:
-
-2011-12-02  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Also build gcrypt and p11-kit, and make them dependencies of
-        gnutls.
-
-        * gtk/jhbuild.modules:
-
-2011-12-02  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fixes for Windows build.
-
-        * waf/build/wxpresets.py:
-
-2011-12-01  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        webkit-patch post, post-commits, upload should warn when posting to a closed bug, and offer to reopen it
-        https://bugs.webkit.org/show_bug.cgi?id=32006
-
-        I decided not to make it warn, and just have it re-open the bug.
-        That's not that different from today's behavior which will
-        just silently attach the patch.
-
-        This patch makes behavior between upload and land-safely consistent
-        (previously one would assign patches and the other would not)
-        as well as adds the ability for both to ensure that the bug is open.
-
-        To test this I had to add a few more methods to MockBugzilla which
-        (positively) affected a few other test results.
-
-        I also made AbstractStep keep a cached copy of the Bug object
-        and used the cached copy where appropriate (including for 'bug_title').
-        This should reduce the number of bug fetches we perform.
-
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/commands/upload.py:
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/__init__.py:
-        * Scripts/webkitpy/tool/steps/abstractstep.py:
-        * Scripts/webkitpy/tool/steps/closebug.py:
-        * Scripts/webkitpy/tool/steps/ensurebugisopenandassigned.py: Added.
-        * Scripts/webkitpy/tool/steps/postdiff.py:
-        * Scripts/webkitpy/tool/steps/postdiffforcommit.py:
-        * Scripts/webkitpy/tool/steps/preparechangelog.py:
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-        * Scripts/webkitpy/tool/steps/updatechangelogswithreviewer.py:
-
-2011-12-02  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Also pass --no-interact to jhbuild when updating dependencies.
-
-        * Scripts/update-webkitgtk-libs:
-
-2011-12-02  Alice Boxhall  <aboxhall@chromium.org>
-
-        Make _build_path check more thoroughly that build paths exist.
-        https://bugs.webkit.org/show_bug.cgi?id=73601
-
-        Reviewed by Ojan Vafai.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        (ChromiumMacPort._build_path):
-
-2011-12-02  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Add libffi to the jhbuild modules list as a glib dependency.
-
-        Rubber-stamped by Martin Robinson.
-
-        * gtk/jhbuild.modules:
-
-2011-12-02  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Build fix. Use internal pcre on glib, make gnutls a dependency of
-        glib-networking, unset AR_FLAGS for jhbuild builds, and run jhbuild
-        in non-interactive mode.
-
-        * Scripts/update-webkitgtk-libs:
-        * gtk/jhbuild.modules:
-        * gtk/run-with-jhbuild:
-
-2011-12-02  Adam Roben  <aroben@apple.com>
-
-        Fix for Python 2.6
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (RunUnitTests.countFailures): Removed the flags parameter to re.split, which was only added
-        in Python 2.7, and used whitespace instead of start-of-string/end-of-string markers when
-        searching for "Tests that timed out:" etc. This makes our check less strict, but it
-        shouldn't matter given the kinds of content we parse.
-
-2011-12-02  Adam Roben  <aroben@apple.com>
-
-        Fix names of failed/timed out tests in run-api-tests output
-
-        Fixes <http://webkit.org/b/73663> run-api-tests prints suite names twice for failed or timed
-        out tests
-
-        We were ending up with the suite name doubled (e.g., "WebKit2.WebKit2.MouseMoveAfterCrash").
-
-        Reviewed by Simon Fraser.
-
-        * Scripts/run-api-tests:
-        (runTest): Don't prepend the suite name to $test. It's already been prepended at the start
-        of this function.
-
-2011-11-29  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] generate-gtkdoc should respect build type
-        https://bugs.webkit.org/show_bug.cgi?id=73296
-
-        Reviewed by Philippe Normand.
-
-        * Scripts/webkitdirs.pm:
-        (buildAutotoolsProject): Pass the --debug to the generate-gtkdoc script.
-        * gtk/common.py: If --build is passed give preference to the Debug build directory.
-
-2011-12-02  Tony Chang  <tony@chromium.org>
-
-        [nrwt] fix wdiff output
-        https://bugs.webkit.org/show_bug.cgi?id=73604
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.wdiff_text):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_wdiff_text):
-
-2011-12-02  Adam Roben  <aroben@apple.com>
-
-        Teach build.webkit.org to display how many unit tests failed or timed out
-
-        Fixes <http://webkit.org/b/73659> It's hard to tell how many unit tests are failing on
-        build.webkit.org
-
-        We now display something like "5 unit tests failed or timed out". Eventually we might want
-        to split out how many failure vs. timeouts there were.
-
-        Reviewed by Darin Adler.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (TestWithFailureCount): Moved this class up to the top of the file so it is before any other
-        classes that may want to subclass it.
-        (RunUnitTests): Changed to inherit from TestWithFailureCount.
-        (RunUnitTests.countFailures): Added. Counts the number of tests following the "Tests that
-        timed out:" and "Tests that failed:" lines, if present.
-
-        * BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py:
-        (StubStdio):
-        (StubRemoteCommand):
-        Added these two stub classes to mimic buildbot's RemoteCommand and log classes.
-
-        (RunUnitTestsTest.assertFailures): Helper method to check that we interpreted the results of
-        the test run correctly.
-
-        (RunUnitTestsTest.test_no_failures_or_timeouts):
-        (RunUnitTestsTest.test_one_failure):
-        (RunUnitTestsTest.test_multiple_failures):
-        (RunUnitTestsTest.test_one_timeout):
-        (RunUnitTestsTest.test_multiple_timeouts):
-        (RunUnitTestsTest.test_multiple_failures_and_timeouts):
-        Test various cases.
-
-2011-12-02  Adam Roben  <aroben@apple.com>
-
-        Teach prepare-ChangeLog to treat master.cfg as a Python file
-
-        Fixes <http://webkit.org/b/73658> prepare-ChangeLog doesn't show modified classes/functions
-        in buildbot's master.cfg
-
-        Reviewed by Darin Adler.
-
-        * Scripts/prepare-ChangeLog:
-        (get_function_line_ranges): Use get_function_line_ranges_for_python if the filename is
-        master.cfg.
-
-2011-12-02  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Create a wrapper script that knows how to install jhbuild and run commands with it
-        https://bugs.webkit.org/show_bug.cgi?id=73669
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Add a wrapper script that knows how to install jhbuild and also to wrap commands
-        in the jhbuild shell.
-
-        * Scripts/webkitdirs.pm:
-        (runAutogenForAutotoolsProject): Use the new wrapper script.
-        (mustReRunAutogen): Ditto.
-        (buildAutotoolsProject): Ditto.
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkDriver.cmd_line): Ditto.
-        * gtk/run-with-jhbuild: Added.
-
-2011-12-01  Adam Roben  <aroben@apple.com>
-
-        Teach check-webkit-style how to check the syntax of JSON files
-
-        Fixes <http://webkit.org/b/73590> check-webkit-style doesn't flag JSON syntax errors
-
-        I previously landed this patch as r101711, but the new tests failed on Snow Leopard. This
-        patch is identical to that one except for two change: assertIn(a, b) (which is new to Python
-        2.7) has been replaced with assertTrue(a in b), and the test_missing_closing_brace test has
-        been removed, since its output differs by platform.
-
-        Reviewed by Darin Adler.
-
-        * Scripts/webkitpy/style/checker.py:
-        (_all_categories): Added JSONChecker's categories to the set of all categories.
-        (FileType): Added a JSON type. Incremented other types.
-        (CheckerDispatcher._file_type): Use the JSON file type for .json files.
-        (CheckerDispatcher._create_checker): Use a JSONChecker for JSON files.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-        (CheckerDispatcherDispatchTest.assert_checker_json): Added this helper method.
-        (CheckerDispatcherDispatchTest.test_json_paths): Added. Based on test_python_paths.
-
-        * Scripts/webkitpy/style/checkers/jsonchecker.py: Added. (I didn't name this just "json",
-        which would have matched our other checkers, because I couldn't figure out how to call
-        "json.loads" without hitting namespace conflicts.)
-        (JSONChecker.__init__): Turn of line filtering so that we always check the whole file, not
-        just the modified lines from a patch.
-        (JSONChecker.check): Try to parse the lines as JSON. Mark an error if there was an
-        exception.
-        (JSONChecker.line_number_from_json_exception): Parse the json modules exception message to
-        try to extract a line number.
-
-        * Scripts/webkitpy/style/checkers/jsonchecker_unittest.py: Added.
-        (MockErrorHandler.__init__):
-        (MockErrorHandler.turn_off_line_filtering):
-        (MockErrorHandler.__call__):
-        Helper class. Copied from xml_unittest.py.
-
-        (JSONCheckerTest.test_line_number_from_json_exception): Test the
-        line_number_from_json_exception helper method.
-
-        (JSONCheckerTest.assert_no_error):
-        (JSONCheckerTest.assert_error):
-        Helper methods to assert that we did or didn't get an error.
-
-        (JSONCheckerTest.mock_handle_style_error): Helper method.
-
-        (JSONCheckerTest.test_conflict_marker):
-        (JSONCheckerTest.test_single_quote):
-        (JSONCheckerTest.test_init):
-        (JSONCheckerTest.test_no_error):
-        Test various cases.
-
-2011-12-02  Gustavo Noronha Silva  <gns@gnome.org>
-
-        [GTK] Add glib, glib-networking, gnutls and libsoup to jhbuild
-        https://bugs.webkit.org/show_bug.cgi?id=73664
-
-        Reviewed by Martin Robinson.
-
-        This patch adds our HTTP library and its main dependencies; this
-        should not affect layout or rendering.
-
-        * gtk/jhbuild.modules:
-
-2011-12-02  Gustavo Noronha Silva  <gns@gnome.org>
-
-        [GTK] Also run DumpRenderTree under jhbuild
-        https://bugs.webkit.org/show_bug.cgi?id=73646
-
-        Reviewed by Martin Robinson.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkDriver.cmd_line):
-
-2011-12-02  Hajime Morrita  <morrita@chromium.org>
-
-        Unreviewed, rolling out r101751 and r101775.
-        http://trac.webkit.org/changeset/101751
-        http://trac.webkit.org/changeset/101775
-        https://bugs.webkit.org/show_bug.cgi?id=73191
-
-        breaks Windows build
-
-        * DumpRenderTree/chromium/config.h:
-        * DumpRenderTree/config.h:
-        * TestWebKitAPI/config.h:
-        * WebKitTestRunner/config.h:
-
-2011-12-02  Kentaro Hara  <haraken@chromium.org>
-
-        Move run-bindings-tests implementation to webkitpy/bindings/main.py
-        https://bugs.webkit.org/show_bug.cgi?id=73619
-
-        Reviewed by Adam Barth.
-
-        As run-bindings-tests has been growing, this patch just moves its implementation
-        to webkitpy/bindings/main.py to integrate with the rest of webkitpy.
-
-        No change in behavior.
-
-        * Scripts/run-bindings-tests:
-        (main):
-        * Scripts/webkitpy/bindings/__init__.py: Added.
-        * Scripts/webkitpy/bindings/main.py: Added.
-        (BindingsTests.__init__):
-        (BindingsTests.generate_from_idl):
-        (BindingsTests.generate_supplemental_dependency):
-        (BindingsTests.detect_changes):
-        (BindingsTests.run_tests):
-
-2011-12-01  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Tools/Scripts: eliminate find_test_files from Port class.
-        https://bugs.webkit.org/show_bug.cgi?id=73553
-
-        rebaseline.py and chromium_gpu.py use Port.find_test_files() the same way as it is used in Port.tests()
-        I'd like to replace all calls to find_test_files with tests and eliminate find_tests_files.
-        Also I'll move _is_test_file() and related functions close to Port.tests().
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.tests):
-        (Port.is_reference_html_file):
-        (Port._has_supported_extension):
-        (Port._is_test_file):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_find_no_paths_specified):
-        (PortTest.test_find_one_test):
-        (PortTest.test_find_glob):
-        (PortTest.test_find_with_skipped_directories):
-        (PortTest.test_find_with_skipped_directories_2):
-        (PortTest.test_is_test_file):
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        (_default_tests_paths):
-        (ChromiumGpuLinuxPort.tests):
-        (ChromiumGpuCgMacPort.tests):
-        (ChromiumGpuMacPort.tests):
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-        (ChromiumGpuTest.test_default_tests_paths.test_paths):
-        (ChromiumGpuTest.test_default_tests_paths):
-        (ChromiumGpuTest.test_test_files.test_paths):
-        (ChromiumGpuTest):
-        (ChromiumGpuTest.test_test_files):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (get_tests_run.RecordingTestDriver.run_test):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (OptimizeBaselines._optimize_baseline):
-        (OptimizeBaselines.execute):
-        (AnalyzeBaselines._analyze_baseline):
-        (AnalyzeBaselines.execute):
-
-2011-12-01  Hajime Morrita  <morrita@chromium.org>
-
-        JS_INLINE and WTF_INLINE should be visible from WebCore
-        https://bugs.webkit.org/show_bug.cgi?id=73191
-
-        Reviewed by Kevin Ollivier.
-
-        Removed macro definitions which is now provided by Platform.h
-
-        * DumpRenderTree/chromium/config.h:
-        * DumpRenderTree/config.h:
-        * TestWebKitAPI/config.h:
-        * WebKitTestRunner/config.h:
-
-2011-12-01  Hayato Ito  <hayato@chromium.org>
-
-        Explicitly pass tolerance=0 to port.diff_image in case of RefTestMismatch failure.
-        https://bugs.webkit.org/show_bug.cgi?id=73406
-
-        Reviewed by Ryosuke Niwa.
-
-        WebKitPort's image_diff uses tolerance='0.1' in default.
-        When reftests fail, we should use tolerace=0 when diff-ing images.
-
-        Since ImageDiff on chromium port doesn't use tolerance value as of now,
-        this change doesn't affect chromium port's behavior.
-
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer.py:
-        (write_test_result):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.diff_image):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.diff_image):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort.diff_image):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort.diff_image):
-        (WebKitPort._start_image_diff_process):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_tolerance.ImageDiffTestPort.diff_image):
-
-2011-12-01  Adam Klein  <adamk@chromium.org>
-
-        Add Chromium ToT GTest build bots (and group selection support) to flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=73599
-
-        Reviewed by Ojan Vafai.
-
-        * TestResultServer/static-dashboards/builders.js:
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        ():
-        (htmlForTestTypeSwitcher):
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-        (testHtmlForTestTypeSwitcherGroup):
-
-2011-12-01  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Parse reftest.list and extract types of ref tests
-        https://bugs.webkit.org/show_bug.cgi?id=66837
-
-        Reviewed by Dirk Pranke.
-
-        Add support for reftest.list to base port.
-
-        * Scripts/webkitpy/common/find_files.py:
-        (find):
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner.__init__):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.__init__): Initialize self._reftest_list. It's a dictionary mapping from a test directory
-        to a dictionary of {test path: ("==" or "!=", reference file path)}
-        (Port._get_reftest_list): Added; calls test_file.parse_reftest_list to fill self._reftest_list.
-        (Port._reference_file_for): Added; obtains the reference file name given a test name.
-        (Port.is_reftest): Added; Calls _reference_file_for.
-        (Port.reftest_expected_filename): Calls _reference_file_for.
-        (Port.reftest_expected_mismatch_filename): Ditto.
-        (Port.find_test_files):
-        (is_reference_html_file): Treat any file that starts with ref- or notref- or ends with
-        -expected, -expected-mismach, -ref, or -notref as a reference file.
-        (_is_test_file):
-        (_parse_reftest_list): Added.
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_is_test_file):
-        (PortTest.test_parse_reftest_list):
-        * Scripts/webkitpy/layout_tests/port/dryrun.py:
-        (DryrunDriver.run_test):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (unit_test_filesystem.add_test_file):
-        (unit_test_filesystem.add_file):
-        (unit_test_filesystem):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (get_tests_run.RecordingTestDriver.run_test):
-        (MainTest.test_unexpected_failures):
-        (MainTest.test_missing_and_unexpected_results):
-        (EndToEndTest.test_end_to_end):
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests.py:
-        (Rebaseliner._compile_rebaselining_tests):
-
-2011-12-01  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r101711.
-        http://trac.webkit.org/changeset/101711
-        https://bugs.webkit.org/show_bug.cgi?id=73605
-
-        Broke 3 webkitpy tests (Requested by rniwa on #webkit).
-
-        * Scripts/webkitpy/style/checker.py:
-        (_all_categories):
-        (FileType):
-        (CheckerDispatcher._file_type):
-        (CheckerDispatcher._create_checker):
-        * Scripts/webkitpy/style/checker_unittest.py:
-        (CheckerDispatcherDispatchTest.assert_checker_cpp):
-        (CheckerDispatcherDispatchTest.test_cpp_paths):
-        * Scripts/webkitpy/style/checkers/jsonchecker.py: Removed.
-        * Scripts/webkitpy/style/checkers/jsonchecker_unittest.py: Removed.
-
-2011-12-01  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Unreviewed. Add myself to GStreamer and WebKit2GTK+ watchlists.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2011-12-01  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Read fonts from the jhbuild root
-        https://bugs.webkit.org/show_bug.cgi?id=73487
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Read fonts from the jhbuild root instead of from the system. This will ensure
-        that all testers use the same fonts instead of leaving this up to luck.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (initializeFonts): Load fonts from jhbuild root.
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort.setup_environ_for_server): Pass an environment variable containing
-        the path to the jhbuild root.
-        * WebKitTestRunner/InjectedBundle/gtk/ActivateFontsGtk.cpp:
-        (WTR::inititializeFontConfigSetting): Load fonts from the jhbuild root.
-
-2011-12-01  Adam Roben  <aroben@apple.com>
-
-        Teach check-webkit-style how to check the syntax of JSON files
-
-        Fixes <http://webkit.org/b/73590> check-webkit-style doesn't flag JSON syntax errors
-
-        Reviewed by Darin Adler.
-
-        * Scripts/webkitpy/style/checker.py:
-        (_all_categories): Added JSONChecker's categories to the set of all categories.
-        (FileType): Added a JSON type. Incremented other types.
-        (CheckerDispatcher._file_type): Use the JSON file type for .json files.
-        (CheckerDispatcher._create_checker): Use a JSONChecker for JSON files.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-        (CheckerDispatcherDispatchTest.assert_checker_json): Added this helper method.
-        (CheckerDispatcherDispatchTest.test_json_paths): Added. Based on test_python_paths.
-
-        * Scripts/webkitpy/style/checkers/jsonchecker.py: Added. (I didn't name this just "json",
-        which would have matched our other checkers, because I couldn't figure out how to call
-        "json.loads" without hitting namespace conflicts.)
-        (JSONChecker.__init__): Turn of line filtering so that we always check the whole file, not
-        just the modified lines from a patch.
-        (JSONChecker.check): Try to parse the lines as JSON. Mark an error if there was an
-        exception.
-        (JSONChecker.line_number_from_json_exception): Parse the json modules exception message to
-        try to extract a line number.
-
-        * Scripts/webkitpy/style/checkers/jsonchecker_unittest.py: Added.
-        (MockErrorHandler.__init__):
-        (MockErrorHandler.turn_off_line_filtering):
-        (MockErrorHandler.__call__):
-        Helper class. Copied from xml_unittest.py.
-
-        (JSONCheckerTest.test_line_number_from_json_exception): Test the
-        line_number_from_json_exception helper method.
-
-        (JSONCheckerTest.assert_no_error):
-        (JSONCheckerTest.assert_error):
-        Helper methods to assert that we did or didn't get an error.
-
-        (JSONCheckerTest.mock_handle_style_error): Helper method.
-
-        (JSONCheckerTest.test_conflict_marker):
-        (JSONCheckerTest.test_single_quote):
-        (JSONCheckerTest.test_init):
-        (JSONCheckerTest.test_missing_closing_brace):
-        (JSONCheckerTest.test_no_error):
-        Test various cases.
-
-2011-12-01  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Add a helper function to find the current executable's path
-        https://bugs.webkit.org/show_bug.cgi?id=73473
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Update MiniBrowser to not pass the binary directory as an environment variable.
-        This means that you can move the binaries around without it breaking.
-
-        * MiniBrowser/gtk/main.c:
-        (main): No longer set the environment variable.
-        * WebKitTestRunner/GNUmakefile.am: No longer add the directory path define.
-        * WebKitTestRunner/gtk/main.cpp:  Ditto.
-
-2011-12-01  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Unreviewed. Fix bad file =(.
-
-        * gtk/jhbuild.modules:
-        * Scripts/webkitdirs.pm:
-        (runAutogenForAutotoolsProject):
-
-2011-12-01  Gustavo Noronha Silva  <gns@gnome.org>
-
-        [GTK] Add freetype to our jhbuild setup
-        https://bugs.webkit.org/show_bug.cgi?id=73488
-
-        Reviewed by Martin Robinson.
-
-        This adds the first library to our jhbuild setup, and makes sure
-        build-webkit calls autogen.sh and make with jhbuild, so that the
-        environment is properly set.
-
-        * Scripts/webkitdirs.pm:
-        (saveSum):
-        (hashFile):
-        (runAutogenForAutotoolsProject): save md5sum of jhbuild-related files, and
-        call autogen under jhbuild run;
-        (mustRunAutogen): generalized the arguments change checking to also force
-        running autogen when jhbuild files change;
-        (buildAutotoolsProject): run make under jhbuild;
-        * gtk/jhbuild.modules: add freetype.
-
-2011-12-01  Dominic Mazzoni  <dmazzoni@google.com>
-
-        Fix WebKitTestRunner compile warnings with XCode 3.2
-        https://bugs.webkit.org/show_bug.cgi?id=73378
-
-        Reviewed by Chris Fleizach.
-
-        * WebKitTestRunner/InjectedBundle/AccessibilityTextMarker.cpp:
-        (WTR::AccessibilityTextMarker::AccessibilityTextMarker):
-        * WebKitTestRunner/InjectedBundle/AccessibilityTextMarkerRange.cpp:
-        (WTR::AccessibilityTextMarkerRange::AccessibilityTextMarkerRange):
-        * WebKitTestRunner/InjectedBundle/mac/AccessibilityUIElementMac.mm:
-        (WTR::AccessibilityUIElement::AccessibilityUIElement):
-        (WTR::AccessibilityUIElement::verticalScrollbar):
-
-2011-12-01  Adam Roben  <aroben@apple.com>
-
-        Allow committers to use their Trac credentials to force builds on the buildbots
-
-        Fixes <http://webkit.org/b/73353>
-
-        A new class, CommitterAuth, handles authentication of WebKit committers. CommitterAuth uses
-        three files to do its job: a config file that contains a list of WebKit committer usernames,
-        an htdigest file that contains Trac credentials, and JSON file that gives the paths for
-        those two files.
-
-        Reviewed by Darin Adler.
-
-        * BuildSlaveSupport/build.webkit.org-config/committer_auth.py: Added.
-        (Error): Basic wrapper around Exception that we use for cases where we couldn't even check
-        whether credentials were valid or not.
-        (CommitterAuth.__init__): Just store the path to auth.json.
-        (CommitterAuth.auth_json): Load, parse, and return auth.json.
-        (CommitterAuth.auth_json_filename): Return the path to auth.json.
-        (CommitterAuth.authenticate): Return true if the user is a WebKit committer and their
-        credentials are valid Trac credentials. Return false otherwise or if an error occurred while
-        checking those conditions.
-        (CommitterAuth.is_webkit_committer): Return true if the user is a WebKit committer. Return
-        false otherwise or if an exception was thrown.
-        (CommitterAuth.is_webkit_trac_user): Return true if the username/password are present in the
-        Trac credentials htdigest file. Return false otherwise or if an exception was thrown.
-
-        (CommitterAuth.open_auth_json_file):
-        (CommitterAuth.open_trac_credentials_file):
-        (CommitterAuth.open_webkit_committers_file):
-        Open the specified file. These are mostly useful for testing purposes.
-
-        (CommitterAuth.trac_credentials_filename):
-        (CommitterAuth.webkit_committers_filename):
-        Return the path to the specified file by retrieving it from auth.json.
-
-        (CommitterAuth.webkit_committers): Load and parse the committers file and extract the list
-        of WebKit committers from it.
-
-        * BuildSlaveSupport/build.webkit.org-config/committer_auth_unittest.py: Added.
-        (CMStringIO.__enter__):
-        (CMStringIO.__exit__):
-        Helper class that makes it possible to use StringIO with the "with" statement.
-
-        (open_override): Helper context manager for overriding the global "open" function
-        temporarily.
-
-        (CommitterAuthTest.setUp): Set up a somewhat-mocked CommitterAuth that is used by most
-        tests.
-        (CommitterAuthTest.fake_open_function): Returns a function that can be used in place of
-        "open" to test that the expected path was opened.
-        (CommitterAuthTest.test_authentication_success): Test that committers can authenticate
-        successfully.
-        (CommitterAuthTest.test_committer_without_trac_credentials_fails): Test that committers who
-        somehow have no Trac account can't authenticate.
-
-        (CommitterAuthTest.test_fail_to_open_auth_json_file):
-        (CommitterAuthTest.test_fail_to_open_trac_credentials_file):
-        (CommitterAuthTest.test_fail_to_open_webkit_committers_file):
-        Test what happens when we can't open the three files we depend upon.
-
-        (CommitterAuthTest.test_implements_IAuth): Test that we fulfill buildbot's expectations for
-        an authentication class.
-
-        (CommitterAuthTest.test_invalid_auth_json_file):
-        (CommitterAuthTest.test_invalid_committers_file):
-        (CommitterAuthTest.test_invalid_trac_credentials_file):
-        (CommitterAuthTest.test_missing_auth_json_keys):
-        Test what happens when the three files we depend upon are invalid in some way.
-
-        (CommitterAuthTest.test_open_auth_json_file):
-        (CommitterAuthTest.test_open_trac_credentials_file):
-        (CommitterAuthTest.test_open_webkit_committers_file):
-        Test that we open the expected paths.
-
-        (CommitterAuthTest.test_trac_credentials_filename):
-        (CommitterAuthTest.test_webkit_committers_filename):
-        Test that we extract filenames out of auth.json correctly.
-
-        (CommitterAuthTest.test_non_committer_fails):
-        (CommitterAuthTest.test_unknown_user_fails):
-        (CommitterAuthTest.test_username_is_prefix_of_valid_user):
-        (CommitterAuthTest.test_wrong_password_fails):
-        Test various failed authentication attempts.
-
-        (CommitterAuthTest.test_webkit_committers): Test that we can parse the list of WebKit
-        committers out of the committers file correctly.
-
-        (CommitterAuthTest.fake_auth_json_file):
-        (CommitterAuthTest.invalid_auth_json_file):
-        (CommitterAuthTest.fake_committers_file):
-        (CommitterAuthTest.invalid_committers_file):
-        (CommitterAuthTest.fake_htdigest_file):
-        (CommitterAuthTest.invalid_htdigest_file):
-        Return various fake files for testing.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Specify an instance of CommitterAuth
-        to be used for authentication in the web interface, and specify that only authenticated
-        users may force builds.
-
-2011-12-01  Adam Roben  <aroben@apple.com>
-
-        Add an HTDigestParser class to webkitpy
-
-        Fixes <http://webkit.org/b/73575> webkitpy doesn't provide a way to parse htdigest files
-
-        This class can be used to parse Apache's htdigest files and check whether a given
-        username/realm/password tuple is present in the file. Eventually this will be used for
-        authenticating users on build.webkit.org (<http://webkit.org/b/73353>).
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/net/htdigestparser.py: Added.
-        (HTDigestParser.__init__): Stores the parsed representation of the file.
-        (HTDigestParser.authenticate): Hashes the username/realm/password tuple to generate a hashed
-        password and returns whether the resulting tuple is present in the file.
-        (HTDigestParser.entries): Just returns the parsed representation of the file.
-        (HTDigestParser.parse_file): Splits each line on colons and checks that each line has the
-        expected syntax ('username:realm:hashed_password'). If any line is invalid, we treat the
-        whole file as invalid and all authentication attempts will fail.
-
-        * Scripts/webkitpy/common/net/htdigestparser_unittest.py: Added.
-        (HTDigestParserTest.assertEntriesEqual): Helper method to assert that fake_htdigest_file,
-        optionally appended with some extra data, generates the expected entries.
-        (HTDigestParserTest.test_authenticate): Tests that tuples present in the file can
-        authenticate, and tuples not present cannot.
-        (HTDigestParserTest.test_entries): Tests that we get the expected entries from
-        fake_htdigest_file.
-
-        (HTDigestParserTest.test_empty_file):
-        (HTDigestParserTest.test_too_few_colons):
-        (HTDigestParserTest.test_too_many_colons):
-        (HTDigestParserTest.test_invalid_hash):
-        Test various forms of invalid files.
-
-        (HTDigestParserTest.fake_htdigest_file): Returns a fake valid htdigest file for testing.
-
-2011-12-01  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] Make the new 64-bit Release bot part of the core set
-        https://bugs.webkit.org/show_bug.cgi?id=73570
-
-        Reviewed by Adam Roben.
-
-        The 64-bit Release bot re-introduced in r101676 replaces the 64-bit
-        Debug bot which was already part of the core set. The GTK
-        gardeners are willing to actively maintain it.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        (BuildBot.__init__):
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-        (test_builder_name_regexps):
-
-2011-12-01  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] Buildslave switch from 32-bit Debug to 64-bit Release
-        https://bugs.webkit.org/show_bug.cgi?id=73547
-
-        Reviewed by Adam Roben.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Rename
-        the 32-bit Debug configuration to 64-bit Release. The new slave is
-        a 64-bit machine already. The 32-bit slave will be shut down.
-
-2011-12-01  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] build-jsc should not trigger gtkdoc generation
-        https://bugs.webkit.org/show_bug.cgi?id=73552
-
-        Reviewed by Philippe Normand.
-
-        Do not generate gtkdoc when building projects other than WebKit. In particular, this ensures
-        that build-jsc does not try to generate gtkdoc.
-
-        * Scripts/webkitdirs.pm:
-        (buildAutotoolsProject): Only generate gtkdoc if the project is "WebKit".
-
-2011-12-01  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
-
-        tests_run0.txt gets clobbered when re-running failing tests
-        https://bugs.webkit.org/show_bug.cgi?id=63844
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.results_directory):
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        (AbstractWorker.__init__):
-        (_ManagerConnection.start_worker):
-        (_InlineManager.start_worker):
-        (_MultiProcessManager.start_worker):
-        (_WorkerConnection.__init__):
-        (_InlineWorkerConnection.__init__):
-        (_MultiProcessWorkerConnection.__init__):
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker_unittest.py:
-        (_TestWorker.__init__):
-        (_TestsMixin.test_cancel):
-        (_TestsMixin.test_done):
-        (_TestsMixin.test_unknown_message):
-        (InterfaceTest.test_managerconnection_is_abstract):
-        (InterfaceTest.test_workerconnection_is_abstract):
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        (Worker.__init__):
-        (Worker.safe_init):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_retries_directory):
-
-2011-12-01  Adam Roben  <aroben@apple.com>
-
-        Buildbot fix
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Moved all of the initialization of
-        BuildmasterConfig not performed by loadBuilderConfig up to the top of the file. This makes
-        it possible for build steps to reference things like the buildbotURL property of the config.
-
-2011-11-30  Adam Roben  <aroben@apple.com>
-
-        Use curl for downloading builds to test slaves
-
-        Buildbot's built-in file transfer capabilities are transferring files much more slowly than
-        curl does. This seems to be due to a combination of buildbot being single-threaded (and thus
-        often busy servicing web requests, etc.) and using an IPC mechanism with fairly high
-        overhead (courtesy of the Twisted framework).
-
-        Eventually we'd like to make Buildbot's built-in transferring more efficient. In the
-        meantime we'll try using curl for downloads and keep thinking about a solution for uploads.
-        This should make the test slaves quite a bit faster, and should ease the CPU load on
-        build.webkit.org a bit.
-
-        Part of <http://webkit.org/b/73484> Mac slaves take 7+ minutes to upload or download a build
-
-        Reviewed by Mark Rowe.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Added the CreateWebKitBuildDirectory
-        to Test slaves. It's run just before DownloadBuiltProduct.
-        (DownloadBuiltProduct): Changed to be a normal ShellCommand that invokes curl to perform the
-        download.
-        (CreateWebKitBuildDirectory): Added. Creates the WebKitBuild directory on a slave.
-        FileDownload used to do this for us automatically.
-
-2011-11-21  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] enable-webaudio websetting
-        https://bugs.webkit.org/show_bug.cgi?id=69836
-
-        Reviewed by Martin Robinson.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::overridePreference): Update WebKitGTK
-        enable-webaudio setting when a layout test requests it.
-
-2011-11-30  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Web Inspector: chromium: I'd like to add a script for running perf tests for WebInspector.
-        https://bugs.webkit.org/show_bug.cgi?id=73079
-
-        The idea is to have performance tests for WebInspector.
-        I was suggested to put these tests into PerformanceTests/inspector.
-        They produce output in a format that is suitable for chromium perf bot drawing scripts.
-
-        I'd like to reuse code for scanning folders for test files.
-        Because of the fact that original test_files.py has common and layout specific parts
-        I decided to extract the generic part and put it into webkitpy/common
-        I think the two packages with name test_files look strange but I have no idea about a better name.
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/run-inspector-perf-tests.py: Added.
-        * Scripts/webkitpy/common/find_files.py: Renamed from Tools/Scripts/webkitpy/layout_tests/port/test_files.py.
-        (find):
-        (_normalize):
-        * Scripts/webkitpy/common/find_files_unittest.py: Added.
-        (MockWinFileSystem.join):
-        (MockWinFileSystem):
-        (MockWinFileSystem.normpath):
-        (TestWinNormalize.assert_filesystem_normalizes):
-        (TestWinNormalize.test_mocked_win):
-        (TestWinNormalize):
-        (TestWinNormalize.test_win):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.tests):
-        (Port.find_test_files):
-        (Port._driver_class):
-        (is_reference_html_file):
-        (_has_supported_extension):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_find_no_paths_specified):
-        (PortTest.test_find_one_test):
-        (PortTest.test_find_glob):
-        (PortTest.test_find_with_skipped_directories):
-        (PortTest.test_find_with_skipped_directories_2):
-        (PortTest):
-        (PortTest.test_is_test_file):
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        (_tests):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/test_files_unittest.py: Removed.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        * Scripts/webkitpy/performance_tests/__init__.py: Added.
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py: Added.
-        (PerfTestsRunner.__init__):
-        (PerfTestsRunner._parse_args):
-        (PerfTestsRunner._collect_tests._is_test_file):
-        (PerfTestsRunner._collect_tests):
-        (PerfTestsRunner.run):
-        (PerfTestsRunner._run_tests_set):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py: Added.
-        (MainTest.TestPort):
-        (MainTest.TestPort.create_driver):
-        (MainTest.TestDriver.run_test):
-        (MainTest.TestDriver):
-        (MainTest.TestDriver.stop):
-        (MainTest.create_runner):
-        (MainTest.run_test):
-        (MainTest.test_run_passing_test):
-        (MainTest.test_run_silent_test):
-        (MainTest.test_run_failed_test):
-        (MainTest.test_run_tonguey_test):
-        (MainTest.test_run_timeout_test):
-        (MainTest.test_run_crash_test):
-        (MainTest.test_run_test_set):
-        (MainTest.test_collect_tests):
-        (MainTest):
-        (MainTest.test_parse_args):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (OptimizeBaselines.execute):
-        (AnalyzeBaselines.execute):
-
-2011-11-30  nduca@chromium.org  <nduca@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
-
-        [chromium] Enable threaded compositing via CCThreadProxy::hasThread only
-        https://bugs.webkit.org/show_bug.cgi?id=70838
-
-        Reviewed by James Robinson.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetWebSettings):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::threadedCompositingEnabled):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::WebViewHost):
-        (WebViewHost::~WebViewHost):
-
-2011-11-30  Chris Fleizach  <cfleizach@apple.com>
-
-        AX: Nodes are reporting that focus can be set when they really can't
-        https://bugs.webkit.org/show_bug.cgi?id=72791
-
-        Reviewed by Beth Dakin.
-
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::isFocusable):
-        * WebKitTestRunner/InjectedBundle/Bindings/AccessibilityUIElement.idl:
-        * WebKitTestRunner/InjectedBundle/mac/AccessibilityUIElementMac.mm:
-        (WTR::AccessibilityUIElement::isFocusable):
-
-2011-11-30  Alejandro G. Castro  <alex@igalia.com>
-
-        Moved myself to the reviewers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-11-30  David Levin  <levin@chromium.org>
-
-        [chromium] Move didUpdateLayout from WebFrameClient to WebViewClient.
-        https://bugs.webkit.org/show_bug.cgi?id=73415
-
-        Reviewed by Darin Fisher.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::didUpdateLayout): Move didUpdateLayout to account for
-        it being moved to a new interface and having the parameter removed.
-        * DumpRenderTree/chromium/WebViewHost.h: Ditto.
-
-2011-11-30  Adam Roben  <aroben@apple.com>
-
-        Make NRWT show DRT/WTR build logs when the build fails or --verbose is passed
-
-        This will make it a lot easier to investigate build failures on the bots.
-
-        Fixes <http://webkit.org/b/71160> NRWT doesn't show build output when building DRT
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/system/executive_mock.py:
-        (MockExecutive.run_command): Include the mock output in the ScriptError we raise since it
-        makes the expected output in WebKitPortTest.test_build_driver more closely mimic the output
-        seen in practice.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ManagerTest.test_http_locking): Pass False for the configure_logging parameter to Printer.
-        The Printer was modifying the root logger in way that would cause my new tests in
-        WebKitPort.test_build_driver to fail. The value of the configure_logging parameter doesn't
-        seem important to the functioning of this test, and passing False makes Printer not modify
-        the root logger.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._run_script): Log the output of the command at the DEBUG level so it will show
-        up when --verbose is passed but not otherwise.
-        (WebKitPort._build_driver): When an error occurs, log the error message and the script's
-        output at the ERROR level so it will always show up.
-
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (WebKitPortTest.test_build_driver): Test that nothing is logged in the normal, successful
-        cases. Test that the build scripts' output is logged when --verbose is passed or the build
-        fails.
-
-2011-11-30  Adam Roben  <aroben@apple.com>
-
-        Add a way to set OutputCapture's log level
-
-        This will be used by some unit tests I'm planning to add.
-
-        Fixes <http://webkit.org/b/73469> OutputCapture can't be used to capture DEBUG messages
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/system/outputcapture.py:
-        (OutputCapture.__init__): Initialize our internal logging level to INFO, which was the only
-        level we ever used before this patch.
-        (OutputCapture.set_log_level): Added. This is useful for testing what log level code that is
-        being tested uses. Sets the log level for any current or future logging handlers.
-        (OutputCapture.capture_output): Use our internal logging level instead of always using INFO.
-
-        * Scripts/webkitpy/common/system/outputcapture_unittest.py: Added.
-        (OutputCaptureTest.setUp): Create an OutputCapture to test.
-        (OutputCaptureTest.log_all_levels): Helper method to log a message at each log level.
-        (OutputCaptureTest.assertLogged): Helper method to assert that a particular set of strings
-        was logged.
-        (OutputCaptureTest.test_initial_log_level): Test that we start out at the INFO level.
-        (OutputCaptureTest.test_set_log_level): Test that set_log_level correctly modifies the log
-        level.
-
-2011-11-29  Beth Dakin  <bdakin@apple.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=72751
-        WebKit2.MouseMoveAfterCrash API test is failing 
-
-        Reviewed by Sam Weinig.
-
-        Like DumpRenderTree, the NSWindow should act as an active window.
-        * TestWebKitAPI/mac/PlatformWebViewMac.mm:
-        (-[ActiveOffscreenWindow isKeyWindow]):
-        (TestWebKitAPI::PlatformWebView::PlatformWebView):
-
-2011-11-30  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Add step to update gtk dependencies to the buildbot
-        https://bugs.webkit.org/show_bug.cgi?id=73455
-
-        Reviewed by Martin Robinson.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-11-30  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        [Qt] Add a fullscreen option to MiniBrowser.
-        https://bugs.webkit.org/show_bug.cgi?id=73445
-
-        Reviewed by Noam Rosenthal.
-
-        This bypasses the compositor on the N9 to increase performances
-        and remove the huge useless gray bar part of the window frame
-        at the bottom.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (printHelp):
-        (MiniBrowserApplication::handleUserOptions):
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-        (WindowOptions::setStartFullScreen):
-        (WindowOptions::startFullScreen):
-
-2011-11-30  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Add an initial jhbuild setup which installs fonts into the WebKitBuild
-        https://bugs.webkit.org/show_bug.cgi?id=73425
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Add initial jhbuild support to the GTK+ port. update-webkitgtk-libs will
-        ensure that the jhbuild root is up-to-date. Currently the only module is
-        the font module.
-
-        * Scripts/update-webkitgtk-libs: Added.
-        * gtk/common.py: Added a helper to get the number of CPUs.
-        * gtk/jhbuild.modules: Added.
-        * gtk/jhbuildrc: Added.
-
-2011-11-30  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Remove dependency of Qt DRT on JavaScriptCore.
-
-        Reviewed by Csaba Osztrogonác.
-
-        * DumpRenderTree/WorkQueue.cpp: Include the correct header file we're using anyway,
-        instead of one that pulls in JavaScriptCore headers.
-        * DumpRenderTree/qt/DumpRenderTree.pro: There's no need to pull in the JSC headers
-        with load(javascriptcore).
-
-2011-11-30  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r101440 and r101442.
-        http://trac.webkit.org/changeset/101440
-        http://trac.webkit.org/changeset/101442
-        https://bugs.webkit.org/show_bug.cgi?id=73429
-
-        multiple crashes on layout tests (Requested by hayato on
-        #webkit).
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetWebSettings):
-        * DumpRenderTree/chromium/TestShell.h:
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::WebViewHost):
-        (WebViewHost::~WebViewHost):
-
-2011-11-30  Fady Samuel  <fsamuel@chromium.org>
-
-        [Chromium] Fix broken DRT build for Aura Linux
-        https://bugs.webkit.org/show_bug.cgi?id=72667
-
-        Reviewed by Tony Chang.
-
-        DRT now builds for Aura Linux. This, more or less, shares the same code as Android.
-
-        The following changes have been made:
-
-          1. Renamed TestShellAndroid to TestShellLinux.
-          2. Stub code moved added in TestShellStub that will only compile on non-GTK Linux builds.
-          3. Code common to Gtk, Aura, and Android moved to TestShellLinux.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::keyDown):
-        * DumpRenderTree/chromium/TestShellAndroid.cpp: Removed.
-        * DumpRenderTree/chromium/TestShellGtk.cpp:
-        * DumpRenderTree/chromium/TestShellLinux.cpp: Copied from Tools/DumpRenderTree/chromium/TestShellGtk.cpp.
-        (AlarmHandler):
-        (TestShell::waitTestFinished):
-        (setupFontconfig):
-        (platformInit):
-        * DumpRenderTree/chromium/TestShellStub.cpp: Added.
-        (checkLayoutTestSystemDependencies):
-        (openStartupDialog):
-
-2011-11-30  Fady Samuel  <fsamuel@chromium.org>
-
-        [Chromium] Set Result Before Early Exit for Fixed Layout Methods in LayoutTestController
-        https://bugs.webkit.org/show_bug.cgi?id=73328
-
-        Reviewed by Kent Tamura.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::enableFixedLayoutMode):
-        (LayoutTestController::setFixedLayoutSize):
-
-2011-11-29  Hayato Ito  <hayato@chromium.org>
-
-        Skip writing the result of diff_image since non-chromium ports don't implement diff_image.
-        https://bugs.webkit.org/show_bug.cgi?id=73381
-
-        Reviewed by Ryosuke Niwa.
-
-        This is a quick fix for the breakage of tests on non-chromium port.
-        We should implement diff_image later on non-chromium ports.
-
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer.py:
-        (write_test_result):
-
-2011-11-29  Balazs Ankes  <Ankes.Balazs@stud.u-szeged.hu>
-
-        [NRWT] Fix --platform=qt-5.0 --new-baseline combo
-        https://bugs.webkit.org/show_bug.cgi?id=72489
-
-        Reviewed by Eric Seidel.
-
-        Before the this fix always added "qt" option for the option list
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-
-2011-11-29  David Levin  <levin@chromium.org>
-
-        Add a way to revert a variable to its previous value after leaving a scope.
-        https://bugs.webkit.org/show_bug.cgi?id=73371
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/ForwardingHeaders/wtf/TemporarilyChange.h: Added.
-        * TestWebKitAPI/TestWebKitAPI.gypi: Added test file to the build.
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj: Ditto.
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj: Ditto.
-        * TestWebKitAPI/Tests/WTF/TemporarilyChange.cpp: Added.
-        (TestWebKitAPI::TEST): Added a test for TemporarilyChange.
-
-2011-11-28  Kentaro Hara  <haraken@chromium.org>
-
-        Implement [Supplemental] IDL and support it in run-bindings-tests
-        https://bugs.webkit.org/show_bug.cgi?id=73162
-
-        Reviewed by Adam Barth.
-
-        run-bindings-tests supports the [Supplemental] IDL in the following way.
-            (1) It creates a file |x| listing all IDL files.
-            (2) It generates a supplemental dependency file |y| using resolve-supplemental.pl and |x|.
-            (3) For each IDL file |z|, it runs generate-bindings.pl with |y|.
-                Then, generate-bindings.pl generates .h and .cpp files for the IDL file |z|,
-                including all attributes in IDL files that are supplementing the IDL file |z|.
-
-        * Scripts/run-bindings-tests:
-        (generate_from_idl):
-        (generate_supplemental_dependency):
-        (detect_changes):
-        (run_tests):
-        (main):
-
-2011-11-18  Nat Duca  <nduca@chromium.org>
-
-        [chromium] Enable threaded compositing via CCThreadProxy::hasThread only
-        https://bugs.webkit.org/show_bug.cgi?id=70838
-
-        Reviewed by James Robinson.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetWebSettings):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::threadedCompositingEnabled):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::WebViewHost):
-        (WebViewHost::~WebViewHost):
-
-2011-11-29  Ojan Vafai  <ojan@chromium.org>
-
-        List of builders in the flakiness dashboard is out of date
-        https://bugs.webkit.org/show_bug.cgi?id=73347
-
-        Reviewed by Adam Barth.
-
-        The chromium gpu bots no longer run layout tests, so kill that
-        group entirely.
-
-        * TestResultServer/static-dashboards/builders.js:
-        * TestResultServer/static-dashboards/dashboard_base.js:
-
-2011-11-29  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Don't hard-code the list of WebKit2 generated sources
-
-        The generated sources are... wait for it... generated. So
-        use the generator itself to figure out which sources we need
-        to compile.
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2011-11-29  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Add a method to detect 'make dist' errors without running 'make dist'
-        https://bugs.webkit.org/show_bug.cgi?id=73216
-
-        Reviewed by Philippe Normand.
-
-        Add a script that tries to sniff out 'make dist' problems without running
-        'make dist.' 'make distcheck' takes a very long time to run and this should
-        reduce the amount of times it needs to be run consecutively.
-
-        * gtk/common.py:
-        (get_build_path.is_valid_build_directory): Guess the source directory
-        by the existence of the GNUmakefile instead of the .libs directory. This
-        allows one to run the script after running autogen.sh but before fully
-        building.
-        * gtk/find-make-dist-errors: Added.
-
-2011-11-29  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Remove use of internal headers in the MiniBrowser
-
-        Reviewed by Simon Hausmann.
-
-        * MiniBrowser/qt/MiniBrowser.pro:
-
-2011-11-29  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Fix debug-shlib build without webkit2
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/qtwebkit.prf: Respect no_webkit2.
-
-2011-11-28  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt][WK2] Unreviewed buildfix after r101307.
-
-        * qmake/mkspecs/features/webkit2.prf: Add missing includepath.
-
-2011-11-29  Roland Steiner  <rolandsteiner@chromium.org>
-
-        <style scoped>: add ENABLE(STYLE_SCOPED) flag to WebKit
-        https://bugs.webkit.org/show_bug.cgi?id=72848
-
-        Add option to build-webkit.
-
-        Reviewed by Dimitri Glazkov.
-
-        * Scripts/build-webkit:
-
-2011-11-28  Ojan Vafai  <ojan@chromium.org>
-
-        gtest normalization in the test results server is sometimes wrong
-        https://bugs.webkit.org/show_bug.cgi?id=73262
-
-        Reviewed by Tony Chang.
-
-        If a gtest has it's modified changed (e.g. add FLAKY_) then it will have two
-        entries in the incremental JSON, one of the entries will have the correct data
-        from the run and the other will have dummy no-data values. Make sure to
-        always pick the one with real data.
-
-        * TestResultServer/model/jsonresults.py:
-        (JsonResults._remove_gtest_modifiers):
-        * TestResultServer/model/jsonresults_unittest.py:
-        (JsonResultsTest.test_remove_gtest_modifiers):
-
-2011-11-28  Ojan Vafai  <ojan@chromium.org>
-
-        Some of the results.json files have results/times entries at the directory level
-        https://bugs.webkit.org/show_bug.cgi?id=73261
-
-        Reviewed by Tony Chang.
-
-        This is just a bug that got introduced in a temporary push of the results server.
-        This patch repairs the broken files. After all the bots have cycled, we can simplify
-        this code to just assert that results/times are not at the directory level.
-
-        Also, when catching exceptions, log the full stacktrace.
-
-        * TestResultServer/model/jsonresults.py:
-        (_is_directory):
-        (JsonResults._load_json):
-        (JsonResults._merge_tests):
-        (JsonResults.merge):
-        * TestResultServer/model/jsonresults_unittest.py:
-        (JsonResultsTest.test_merge_directory_hierarchy_extra_results_and_times):
-
-2011-11-28  Tony Chang  <tony@chromium.org>
-
-        ews bots should pass --force to update-webkit-chromium
-        https://bugs.webkit.org/show_bug.cgi?id=73230
-
-        Reviewed by Adam Barth.
-
-        This makes it less likely for gclient changes to break the bots (e.g.,
-        if a DEPS repository moves or is switched to a branch).
-
-        Also pass --force when using |build-webkit --update-chromium| since this
-        appears to only be used by the bots.
-
-        Take 2: Add Options.non_interactive to update.py's options() method.
-
-        * Scripts/update-webkit:
-        * Scripts/webkitdirs.pm:
-        (determineIsChromium): Add --force-update to update-webkit --chromium.
-        (forceChromiumUpdate):
-        (buildChromium): Pass --force to update-webkit-chromium.
-        * Scripts/webkitpy/tool/steps/update.py:
-        (Update.run): Add --force-update if non-interactive (i.e., bots).
-        * Scripts/webkitpy/tool/steps/update_unittest.py:
-
-2011-11-28  Tony Chang  <tony@chromium.org>
-
-        Revert r101279, broke the ews and cq bots.
-
-        * Scripts/update-webkit:
-        * Scripts/webkitdirs.pm:
-        (determineIsChromium):
-        (buildChromium):
-        * Scripts/webkitpy/common/config/ports.py:
-        (WebKitPort.update_webkit_command):
-        (ChromiumPort.update_webkit_command):
-        * Scripts/webkitpy/common/config/ports_mock.py:
-        (MockPort.update_webkit_command):
-        * Scripts/webkitpy/tool/steps/update.py:
-        * Scripts/webkitpy/tool/steps/update_unittest.py: Removed.
-
-2011-11-28  Ojan Vafai  <ojan@chromium.org>
-
-        testlistjson on the test results server doesn't understand hierarchical results format
-        https://bugs.webkit.org/show_bug.cgi?id=73246
-
-        Reviewed by Tony Chang.
-
-        * TestResultServer/model/jsonresults.py:
-        (JsonResults._delete_results_and_times):
-        Instead of just getting the top-level keys, we now walk the tests tree and
-        delete the results and times values.
-
-        * TestResultServer/model/jsonresults_unittest.py:
-        Simplify the test harness to take in the same JSON format for the tests
-        that the actual results.json uses instead of something very similar but
-        needlessly different. This also allows for testing the broken case of
-        results and times values being at non-leaf level.
-
-2011-11-28  Tony Chang  <tony@chromium.org>
-
-        ews bots should pass --force to update-webkit-chromium
-        https://bugs.webkit.org/show_bug.cgi?id=73230
-
-        Reviewed by Adam Barth.
-
-        This makes it less likely for gclient changes to break the bots (e.g.,
-        if a DEPS repository moves or is switched to a branch).
-
-        Also pass --force when using |build-webkit --update-chromium| since this
-        appears to only be used by the bots.
-
-        * Scripts/update-webkit:
-        * Scripts/webkitdirs.pm:
-        (determineIsChromium): Add --force-update to update-webkit --chromium.
-        (forceChromiumUpdate):
-        (buildChromium): Pass --force to update-webkit-chromium.
-        * Scripts/webkitpy/tool/steps/update.py:
-        (Update.run): Add --force-update if non-interactive (i.e., bots).
-        * Scripts/webkitpy/tool/steps/update_unittest.py:
-
-2011-11-28  Michael Saboff  <msaboff@apple.com>
-
-        Fixed help message for --exclude-kraken to say that
-        it excludes Kraken and not SunSpider.
-
-        Rubber-stamped by Filip Pizlo.
-
-        * Scripts/bencher:
-
-2011-11-28  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r101273.
-        http://trac.webkit.org/changeset/101273
-        https://bugs.webkit.org/show_bug.cgi?id=73244
-
-        multiple test failures and timeouts (Requested by tony^work on
-        #webkit).
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::keyDown):
-        * DumpRenderTree/chromium/TestShellAndroid.cpp: Copied from Tools/DumpRenderTree/chromium/TestShellGtk.cpp.
-        (AlarmHandler):
-        (TestShell::waitTestFinished):
-        (platformInit):
-        (openStartupDialog):
-        (checkLayoutTestSystemDependencies):
-        * DumpRenderTree/chromium/TestShellGtk.cpp:
-        (AlarmHandler):
-        (setupFontconfig):
-        (TestShell::waitTestFinished):
-        (platformInit):
-        * DumpRenderTree/chromium/TestShellLinux.cpp: Removed.
-        * DumpRenderTree/chromium/TestShellStub.cpp: Removed.
-
-2011-11-28  John Yani  <vanuan@gmail.com>
-
-        new-run-webkit-tests is locale dependent
-        https://bugs.webkit.org/show_bug.cgi?id=68691
-
-        Reviewed and modified by Eric Seidel.
-
-        This is a simpler version of John's patch which I'm landing.
-        This just engages the hacks from the Host constructor on a global
-        basis.
-
-        * Scripts/webkitpy/common/host.py:
-        (Host.__init__):
-        (Host._engage_awesome_locale_hacks):
-
-2011-11-28  Fady Samuel  <fsamuel@chromium.org>
-
-        [Chromium] Fix broken DRT build for Aura Linux
-        https://bugs.webkit.org/show_bug.cgi?id=72667
-
-        Reviewed by Tony Chang.
-
-        DRT now builds for Aura Linux. This, more or less, shares the same code as Android.
-
-        The following changes have been made:
-
-          1. Renamed TestShellAndroid to TestShellLinux.
-          2. Stub code moved added in TestShellStub that will only compile on non-GTK Linux builds.
-          3. Code common to Gtk, Aura, and Android moved to TestShellLinux.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::keyDown):
-        * DumpRenderTree/chromium/TestShellAndroid.cpp: Removed.
-        * DumpRenderTree/chromium/TestShellGtk.cpp:
-        * DumpRenderTree/chromium/TestShellLinux.cpp: Copied from Tools/DumpRenderTree/chromium/TestShellGtk.cpp.
-        (AlarmHandler):
-        (TestShell::waitTestFinished):
-        (setupFontconfig):
-        (platformInit):
-        * DumpRenderTree/chromium/TestShellStub.cpp: Added.
-        (checkLayoutTestSystemDependencies):
-        (openStartupDialog):
-
-2011-11-28  Eric Seidel  <eric@webkit.org>
-
-        Add Environment object to Host and fix the GCC smartquotes trouble seen on the commit-queue
-        https://bugs.webkit.org/show_bug.cgi?id=71983
-
-        Reviewed by Adam Barth.
-
-        We'll add more code to Environment overtime,
-        allowing us to mock out more of our direct interactions with os.environ.
-
-        This patch also makes run_command print the passed in environment.
-
-        * Scripts/webkitpy/common/host_mock.py:
-        * Scripts/webkitpy/common/system/environment.py: Copied from Tools/Scripts/webkitpy/tool/steps/build.py.
-        * Scripts/webkitpy/common/system/environment_mock.py: Copied from Tools/Scripts/webkitpy/tool/steps/build.py.
-        * Scripts/webkitpy/common/system/environment_unittest.py: Copied from Tools/Scripts/webkitpy/tool/steps/build.py.
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/common/system/executive_mock.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/steps/build.py:
-
-2011-11-28  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Build system fixes against V8.
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/webcore.prf: Get rid of old v8 cruft.
-        * qmake/mkspecs/features/wtf.prf: If requested, pull in v8 from Qt and configure
-        WTF accordingly to use v8. (WTF in the implementation needs it as well as users of WTF)
-
-2011-11-28  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Make sure the useFixedLayout feature is consistently handled
-        https://bugs.webkit.org/show_bug.cgi?id=73212
-
-        Reviewed by Simon Hausmann.
-
-        The web page parameters are set to our Qt defaults and are now altered
-        in the WebKitTestRunner.
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::WrapperWindow::WrapperWindow):
-
-2011-11-28  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] WTF should be built as separate static library
-        https://bugs.webkit.org/show_bug.cgi?id=73201
-
-        Reviewed by Tor Arne Vestbø.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro: Require wtf.
-        * MiniBrowser/qt/BrowserWindow.cpp: Remove unnecessary config.h inclusion and
-        thus wtf dependency.
-        * WebKitTestRunner/InjectedBundle/Target.pri: Require wtf.
-        * WebKitTestRunner/Target.pri: Ditto.
-        * qmake/mkspecs/features/default_post.prf: When re-ordering the static libs
-        consider wtf, too.
-        * qmake/mkspecs/features/javascriptcore.prf: Remove WTF specific build stuff,
-        moved into wtf.prf.
-        * qmake/mkspecs/features/qtwebkit.prf: For debug builds with shared libs, also
-        link in libwtf.
-        * qmake/mkspecs/features/wtf.prf: Added. Stuff needed for building and using WTF.
-
-2011-11-28  Kentaro Hara  <haraken@chromium.org>
-
-        run-bindings-tests shows diff error for a newly added binding test
-        https://bugs.webkit.org/show_bug.cgi?id=73179
-
-        Reviewed by Adam Barth.
-
-        Currently, when we add a new binding test, say bindings/scripts/test/TestSupplemental.idl,
-        run-bindings-tests just shows diff error because reference files
-        (i.e. {V8,JS,...}TestSupplemental.h and {V8,JS,...}TestSupplemental.cpp) do not yet exist:
-
-            FAIL: (V8) V8TestSupplemental.h
-            diff: WebCore/bindings/scripts/test/V8/V8TestSupplemental.h: No such file or directory
-
-        Instead, this patch treats a non-existent reference file as an empty file and
-        shows the result of the newly added binding test, like this:
-
-            FAIL: (V8) V8TestSupplemental.h
-            --- WebCore/bindings/scripts/test/V8/V8TestSupplemental.h       1970-01-01 09:00:00.000000000 +0900
-            +++ /tmp/tmpmX2i2F/V8TestSupplemental.h 2011-11-28 11:08:34.150707677 +0900
-            @@ -0,0 +1,84 @@
-            +/*
-            +    This file is part of the WebKit open source project.
-            +    This file has been generated by generate-bindings.pl. DO NOT MODIFY!
-            +
-            (omitted)
-
-        * Scripts/run-bindings-tests:
-        (detect_changes): Just added an -N option to the diff command.
-
-2011-11-28  Martin Robinson  <mrobinson@igalia.com>
-
-        [Gtk][gtkdoc] Syntax error in Tools/gtk/generate-gtkdoc
-        https://bugs.webkit.org/show_bug.cgi?id=73165
-
-        Reviewed by Philippe Normand.
-
-        Fix some syntax errors in this script and remove an unused variable.
-
-        * gtk/generate-gtkdoc:
-        (get_webkit2_options.src_path): 
-        (get_webkit2_options):
-        (get_webkit1_options.src_path):
-
-2011-11-26  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix. Enable the inspector.
-        
-        * waf/build/settings.py:
-
-2011-11-26  Martin Robinson  <mrobinson@igalia.com>
-
-        Try to fix the build after r101174.
-
-        * gtk/generate-gtkdoc: Properly handle empty PKG_CONFIG_PATHs.
-
-2011-11-17  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Integrate build-gtkdoc into build-webkit and make
-        https://bugs.webkit.org/show_bug.cgi?id=72626
-
-        Reviewed by Philippe Normand.
-
-        * GNUmakefile.am: Added support for new scripts and "make docs".
-        * Scripts/webkitdirs.pm: Call generate-gtkdoc when building.
-        (buildAutotoolsProject):
-        * gtk/generate-gtkdoc: Added.
-        * gtk/gtkdoc.py: Renamed from Source/WebKit2/UIProcess/API/gtk/docs/gtkdoc.py.
-
-2011-11-25  Ádám Kallai  <Kallai.Adam@stud.u-szeged.hu>
-
-        [Qt] Add support for using OWRT with Qt5
-        https://bugs.webkit.org/show_bug.cgi?id=72947
-
-        Add qt-5.0 platform and don't pass -graphicssystem to QtTestBrowser if using Qt5.
-
-        Reviewed by Csaba Osztrogonác.
-
-        * Scripts/old-run-webkit-tests:
-
-2011-11-25  Yury Semikhatsky  <yurys@chromium.org>
-
-        [Chromium] Web Inspector: get rid of WebDevToolsFrontendClient::sendFrontendLoaded method
-        https://bugs.webkit.org/show_bug.cgi?id=73126
-
-        No need to have a separate client call for this. The front-end can store messages
-        which arrive before front-end loaded and dispatch them later. This happens in layout
-        tests only by the way as all other messages should be initiated by the front-end code.
-
-        Reviewed by Pavel Feldman.
-
-        * DumpRenderTree/chromium/DRTDevToolsAgent.cpp:
-        * DumpRenderTree/chromium/DRTDevToolsAgent.h:
-        * DumpRenderTree/chromium/DRTDevToolsClient.cpp:
-        * DumpRenderTree/chromium/DRTDevToolsClient.h:
-
-2011-11-24  Kentaro Hara  <haraken@chromium.org>
-
-        Replace subprocess.call() with subprocess.Popen()
-        https://bugs.webkit.org/show_bug.cgi?id=73105
-
-        Reviewed by Adam Barth.
-
-        Currently, the stdout and stderr of the child processes of run-bindings-tests
-        are mixed (or even gone away) with the stdout and stderr of run-bindings-tests itself.
-        This is the problem of subprocess.call(), which does not synchronize the stdout and stderr
-        between a parent process and a child process. This patch replaces subprocess.call() with
-        subprocess.Popen() and synchronizes the stdout and stderr between them.
-        This patch also makes output messages of run-bindings-tests more readable.
-
-        With this patch, the output messages of run-bindings-tests look like as follows:
-
-            PASS: (CPP) WebDOMTestObj.h
-            PASS: (CPP) WebDOMTestObj.cpp
-            FAIL: (CPP) WebDOMTestInterface.h
-            --- Source/WebCore/bindings/scripts/test/CPP/WebDOMTestInterface.h      2011-11-25 13:34:09.313516268 +0900
-            +++ /tmp/tmpDAV87G/WebDOMTestInterface.h        2011-11-25 13:44:42.712946812 +0900
-            @@ -23,7 +23,7 @@
-             #ifndef WebDOMTestInterface_h
-             #define WebDOMTestInterface_h
-
-            -#if ENABLE(Condition1) || ENABLE(Condition2)
-            +#if ENABLE(Condition1) || ENABLE(Condition3)
-
-             #include <WebDOMObject.h>
-             #include <WebDOMString.h>
-             @@ -53,5 +53,5 @@
-             WebDOMTestInterface toWebKit(WebCore::TestInterface*);
-
-             #endif
-            -#endif // ENABLE(Condition1) || ENABLE(Condition2)
-            +#endif // ENABLE(Condition1) || ENABLE(Condition3)
-            PASS: (CPP) WebDOMFloat64Array.cpp
-            PASS: (CPP) WebDOMFloat64Array.h
-
-            Some tests FAIL! (To update the reference files, execute "run-bindings-tests --reset-results")
-
-        * Scripts/run-bindings-tests:
-        (generate_from_idl):
-        (detect_changes):
-        (run_tests):
-        (main):
-
-2011-11-24  Kentaro Hara  <haraken@chromium.org>
-
-        Fix the current working directory of run-bindings-tests
-        https://bugs.webkit.org/show_bug.cgi?id=73106
-
-        Reviewed by Adam Barth.
-
-        Currently, run-bindings-tests outputs the following error
-        (although it outputs "all tests passed!" in the end):
-
-            Testing the ObjC generator on TestObj.idl
-            gcc: WebCore/bindings/objc/PublicDOMInterfaces.h: No such file or directory
-            gcc: warning: '-x objective-c' after last input file has no effect
-            gcc: no input files
-
-        This is because CodeGeneratorObjC.pm assumes that the current working directory
-        is WebKit/Source/, but run-bindings-tests sets the current working directory to WebKit/.
-        Thus, this patch changes it to WebKit/Source/.
-
-        * Scripts/run-bindings-tests:
-        (generate_from_idl):
-        (main):
-
-2011-11-24  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Get rid of the buildDirForSource() function in the build system
-
-        At some point the plan was to allow for running qmake on sub-trees
-        of the sources, into the top level build directory, but this is no
-        longer possible, so no reason to keep the convenience function around.
-
-        Reviewed by Simon Hausmann.
-
-        * WebKitTestRunner/DerivedSources.pri:
-        * WebKitTestRunner/InjectedBundle/DerivedSources.pri:
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/default_pre.prf:
-        * qmake/mkspecs/features/functions.prf:
-        * qmake/mkspecs/features/javascriptcore.prf:
-        * qmake/mkspecs/features/webcore.prf:
-        * qmake/mkspecs/features/webkit2.prf:
-
-2011-11-23  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r101107.
-        http://trac.webkit.org/changeset/101107
-        https://bugs.webkit.org/show_bug.cgi?id=73062
-
-        Breaks the commit-queue (Requested by abarth on #webkit).
-
-        * Scripts/webkitpy/common/host.py:
-        (Host._engage_awesome_windows_hacks):
-        * Scripts/webkitpy/common/host_mock.py:
-        (MockHost.__init__):
-        * Scripts/webkitpy/common/system/environment.py: Removed.
-        * Scripts/webkitpy/common/system/environment_unittest.py: Removed.
-        * Scripts/webkitpy/common/system/executive.py:
-        (Executive._run_command_with_teed_output):
-        (Executive.run_and_throw_if_fail):
-        * Scripts/webkitpy/common/system/executive_mock.py:
-        (MockExecutive.run_and_throw_if_fail):
-        (MockExecutive.run_command):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._driver_build_script_name):
-        (WebKitPort._run_script):
-        (WebKitPort._build_driver):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (test_build_driver):
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/steps/build.py:
-        (Build.build):
-
-2011-11-23  Ojan Vafai  <ojan@chromium.org>
-
-        Unreviewed, rolling out r101110.
-        http://trac.webkit.org/changeset/101110
-        https://bugs.webkit.org/show_bug.cgi?id=73057
-
-        The bots have now cycled and this patch is no longer needed.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._upload_json_files):
-
-2011-11-23  Ojan Vafai  <ojan@chromium.org>
-
-        Temporarily save the incremental results json in order to identify bug
-        https://bugs.webkit.org/show_bug.cgi?id=73057
-
-        Reviewed by Dean Jackson.
-
-        The test results server needed to be rolled back from tip of tree
-        due to a JSON merging bug. It's hard to identify what the bug is without
-        the raw data.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._upload_json_files):
-
-2011-11-23  Ojan Vafai  <ojan@chromium.org>
-
-        Merging two version 4 results hits an error in the test results server
-        https://bugs.webkit.org/show_bug.cgi?id=73042
-
-        Reviewed by Adam Barth.
-
-        The old code assumed that if the aggregate results value was not a leaf
-        value that the incremental results would exist, which is just totally
-        wrong. Added a test for that case as well.
-
-        * TestResultServer/model/jsonresults.py:
-        (JsonResults._merge_tests):
-        * TestResultServer/model/jsonresults_unittest.py:
-        (JsonResultsTest.test_merge_build_directory_hierarchy_old_version):
-        (JsonResultsTest.test_merge_build_directory_hierarchy):
-
-2011-11-23  Eric Seidel  <eric@webkit.org>
-
-        Add Environment object to Host and fix the GCC smartquotes trouble seen on the commit-queue
-        https://bugs.webkit.org/show_bug.cgi?id=71983
-
-        Reviewed by Adam Barth.
-
-        We'll add more code to Environment overtime,
-        allowing us to mock out more of our direct interactions with os.environ.
-
-        This patch also makes run_command print the passed in environment.
-
-        * Scripts/webkitpy/common/host_mock.py:
-        * Scripts/webkitpy/common/system/environment.py: Copied from Tools/Scripts/webkitpy/tool/steps/build.py.
-        * Scripts/webkitpy/common/system/environment_mock.py: Copied from Tools/Scripts/webkitpy/tool/steps/build.py.
-        * Scripts/webkitpy/common/system/environment_unittest.py: Copied from Tools/Scripts/webkitpy/tool/steps/build.py.
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/common/system/executive_mock.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/steps/build.py:
-
-2011-11-23  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Re-generate QtWebKit API forwarding headers when API changes
-
-        The forwarding headers are generated by syncqt, and syncqt is run by qmake,
-        so we need sync.profile to live in the same directory as the project file
-        that will be touched when adding/removing API (api.pri in our case).
-
-        Since the WebKit2 APIs live in a separate static library, we have to
-        add the project file for WebKit2 as a dependency of the api.pri file
-        as well, so that any changes to the WebKit2 API will still trigger a
-        run of qmake (and then syncqt).
-
-        Lastly, we use the new QMAKE_SYNCQT_OUTDIR variable in Qt 5 to ensure
-        that the forwarding headers are still generated in the root build dir,
-        not in the Source dir along with the internal forwarding headers.
-
-        Reviewed by Andreas Kling.
-
-        * qmake/mkspecs/features/default_pre.prf:
-        * qmake/mkspecs/features/functions.prf:
-
-2011-11-23  Johnny Ding  <jnd@chromium.org>
-
-        Set right default value to baseURL in LayoutTestController::queueLoadHTMLString.
-        https://bugs.webkit.org/show_bug.cgi?id=72950
-
-        Reviewed by Tony Chang.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::queueLoadHTMLString):
-
-2011-11-23  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should display a message if it can't find results to display
-        https://bugs.webkit.org/show_bug.cgi?id=72991
-
-        Reviewed by Dimitri Glazkov.
-
-        Not all failures (e.g., TIMEOUT) have results that we can display.
-        This patch adds a short message so that the user can see that we're
-        done trying to load the results.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui_unittests.js:
-
-2011-11-23  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should explain more clearly what the builder lists at the top of the page mean
-        https://bugs.webkit.org/show_bug.cgi?id=72992
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch also prepares us to list other sorts of failures, like
-        performance and unit test.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/garden-o-matic.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js:
-
-2011-11-23  Ryan Sleevi  <rsleevi@chromium.org>
-
-        Add new Chromium tests to the flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=72997
-
-        Reviewed by Ojan Vafai.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        ():
-
-2011-11-23  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should support AUDIO failures
-        https://bugs.webkit.org/show_bug.cgi?id=69477
-
-        Reviewed by Dimitri Glazkov.
-
-        This is a first iteration at supporting AUDIO failures in
-        garden-o-matic.  We'll probably need to iterate a bit when we have a
-        real audio failure in the tree to play with.  For example, we'll
-        probably want to add and <audio> element to the "Examine" view to hear
-        the differences, but that all can be done in a subsequent patch.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results.js:
-
-2011-11-23  Scott Graham  <scottmg@chromium.org>
-
-        Adding gamepad support
-        https://bugs.webkit.org/show_bug.cgi?id=69451
-
-        Reviewed by Darin Fisher.
-
-        Add a 'gamepadController' to Chromium DRT. Allows for setting of mock
-        gamepad data that will be retrieved when JS code pulls via API access.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/GamepadController.cpp: Added.
-        (GamepadController::GamepadController):
-        (GamepadController::bindToJavascript):
-        (GamepadController::reset):
-        (GamepadController::connect):
-        (GamepadController::disconnect):
-        (GamepadController::setId):
-        (GamepadController::setButtonCount):
-        (GamepadController::setButtonData):
-        (GamepadController::setAxisCount):
-        (GamepadController::setAxisData):
-        (GamepadController::fallbackCallback):
-        * DumpRenderTree/chromium/GamepadController.h: Added.
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::resetTestController):
-        (TestShell::bindJSObjectsToWindow):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::gamepadController):
-
-2011-11-23  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [CMake] Move the top-level logic to the top-level directory.
-        https://bugs.webkit.org/show_bug.cgi?id=72685
-
-        Reviewed by Brent Fulgham.
-
-        * CMakeLists.txt: Added.
-        * DumpRenderTree/efl/CMakeLists.txt: Keep building into Programs/.
-        * EWebLauncher/CMakeLists.txt: Renamed from Tools/CMakeListsEfl.txt.
-        * Scripts/webkitdirs.pm:
-        (generateBuildSystemFromCMakeProject):
-        * WinCELauncher/CMakeLists.txt: Renamed from Tools/CMakeListsWinCE.txt.
-
-2011-11-17  Vincent Scheib  <scheib@chromium.org>
-
-        Pointer Lock: Initial Tests for navigator.webkitPonter
-        https://bugs.webkit.org/show_bug.cgi?id=72659
-
-        Reviewed by Darin Fisher.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-            Enabling PointerLock in TestShell
-
-2011-11-22  Ryan Sleevi  <rsleevi@chromium.org>
-
-        Update flakiness dashboard for new Chromium builders and tests
-        https://bugs.webkit.org/show_bug.cgi?id=72931
-
-        Reviewed by Ojan Vafai.
-
-        * TestResultServer/static-dashboards/builders.js:
-        * TestResultServer/static-dashboards/dashboard_base.js:
-
-2011-11-22  Adam Roben  <aroben@apple.com>
-
-        Remove some debugging code I accidentally left in r101005
-
-        * Scripts/prepare-ChangeLog:
-        (get_function_line_ranges_for_python):
-
-2011-11-22  Adam Roben  <aroben@apple.com>
-
-        Teach prepare-ChangeLog how to find changed classes/methods/functions in Python files
-
-        Fixes <http://webkit.org/b/57008> prepare-ChangeLog doesn't find names of modified
-        classes/methods in Python source files
-
-        Reviewed by Dan Bates.
-
-        * Scripts/prepare-ChangeLog:
-        (get_function_line_ranges): Call get_function_line_ranges_for_python for files ending in .py
-        or that use python as their interpreter. Modified the code that extracts the interpreter to
-        ignore a leading "/usr/bin/env " in the interpreter line, as is common for our Python
-        scripts.
-        (get_function_line_ranges_for_python): Added. Does simple parsing of Python files to look
-        for class/def lines and generate ranges based on them.
-
-2011-11-21  Yuta Kitamura  <yutak@chromium.org>
-
-        [GTK] Enable WebSocket hybi tests
-        https://bugs.webkit.org/show_bug.cgi?id=72870
-
-        Reviewed by Xan Lopez.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        Reset the setting value to the default value (true).
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::overridePreference):
-        Change the setting value through a function in DumpRenderTreeSupportGtk.
-
-2011-11-21  Ryosuke Niwa  <rniwa@webkit.org>
-
-        ChangeLogEntry should be able to parse entries with multiple authors
-        https://bugs.webkit.org/show_bug.cgi?id=72690
-
-        Reviewed by Eric Seidel.
-
-        Support multi-author change log entries in ChangeLogEntry. Split author names using
-        the same logic as splitting reviewer names. _authors now stores list of dictionaries
-        with "name" and "email" as keys. Unlike reviewers, we can't always resolve authors to
-        accounts because some contributors are never listed in committers.py. 
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-        * Scripts/webkitpy/common/config/committers.py: Fixed a bug that *_by_{name|email}
-        throws an exception when the argument is None.
-
-2011-11-21  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Speed up debug builds.
-        https://bugs.webkit.org/show_bug.cgi?id=72882
-
-        Reviewed by Tor Arne Vestbø.
-
-        Introduce a special type of build that replaces the static jsc/wc/wk2
-        static libraries with shared libraries, that individually are much faster
-        to link and don't require relinking into the big library when changing just
-        one file in one module. It can be enabled with
-        --qmakearg="CONFIG+=force_static_libs_as_shared"
-
-        * qmake/mkspecs/features/force_static_libs_as_shared.prf: Added. With this configuration,
-        disable symbol visibility, static linkage and enable rpath.
-        * qmake/mkspecs/features/functions.prf: Add a helper function to determine if
-        we need to link the convenience libraries together or not and renamed linkStaticLibrary
-        to just linkLibrary (because linkage is not necessarily static).
-        * qmake/mkspecs/features/qtwebkit.prf: When using the trick, make sure to also
-        link against jsc/wc/wk2 when linking app code against QtWebKit.
-        * qmake/mkspecs/features/javascriptcore.prf: Use new +needToLinkLibrary helper
-        function.
-        * qmake/mkspecs/features/webcore.prf: Ditto.
-        * qmake/mkspecs/features/webkit2.prf: Ditto.
-
-2011-11-21  Adam Klein  <adamk@chromium.org>
-
-        Update flakiness dashboard linkification regexps for crbug.com/100000 and above
-        https://bugs.webkit.org/show_bug.cgi?id=72898
-
-        Reviewed by Ojan Vafai.
-
-        Also removed a comment that was going to be more trouble to keep up to
-        date than seemed worthwhile (the code is now the documentation).
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-
-2011-11-21  Dominic Mazzoni  <dmazzoni@google.com>
-
-        [Chromium] WebAccessibilityNotification should use AssertMatchingEnums.
-        https://bugs.webkit.org/show_bug.cgi?id=72895
-
-        Reviewed by Chris Fleizach.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::postAccessibilityNotification):
-
-2011-11-21  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, run-gtk-tests temporary workaround after r98500.
-
-        * Scripts/run-gtk-tests: Try to find the build directory like in
-        build-gtkdoc, until webkit-build-directory --configuration gets fixed.
-
-2011-11-21  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Add a way to skip unit tests in the bots
-        https://bugs.webkit.org/show_bug.cgi?id=72879
-
-        Reviewed by Philippe Normand.
-
-        Rewrite the script in python to make it easier for everybody to
-        change it and add support for skipping tests.
-
-        * Scripts/run-gtk-tests:
-
-2011-11-21  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] Add more appcache functions to ewk_settings.
-        https://bugs.webkit.org/show_bug.cgi?id=72143
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::clearAllApplicationCaches):
-        (LayoutTestController::setAppCacheMaximumSize): Use the right
-        function, this is not related to the memory cache, but rather to the
-        appcache.
-
-2011-11-18  Adam Roben  <aroben@apple.com>
-
-        Make NRWT consider all lines of output from parse-malloc-history, not just the first
-
-        Fixes <http://webkit.org/b/72652> REGRESSION (NRWT): NRWT always reports "1 unique leaks
-        found" even when there are more than 1 unique leaks
-
-        Reviewed by Darin Adler.
-
-        * Scripts/webkitpy/layout_tests/port/leakdetector.py:
-        (LeakDetector.count_total_bytes_and_unique_leaks): Pass re.MULTILINE to re.findall so that
-        "^" will be considered to match the beginning of any line, not only the beginning of the
-        string.
-
-        * Scripts/webkitpy/layout_tests/port/leakdetector_unittest.py:
-        (LeakDetectorTest.test_count_total_bytes_and_unique_leaks): Added a second callstack to the
-        fake output and updated expectations to match.
-
-2011-11-21  Andras Becsi  <andras.becsi@nokia.com>
-
-        [Qt] Clean up MiniBrowser project file after recent changes
-        https://bugs.webkit.org/show_bug.cgi?id=72869
-
-        Reviewed by Simon Hausmann.
-
-        Remove nonexistent files from OTHER_FILES after our touch and desktop webviews were merged.
-
-        * MiniBrowser/qt/MiniBrowser.pro:
-
-2011-11-21  Dominic Mazzoni  <dmazzoni@google.com>
-
-        Accessibility: Multiselect list boxes need to report the active option in addition to which items are selected.
-        https://bugs.webkit.org/show_bug.cgi?id=72479
-
-        Reviewed by Chris Fleizach.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (getIsSelectedOptionActiveCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/chromium/AccessibilityUIElement.cpp:
-        (AccessibilityUIElement::AccessibilityUIElement):
-        (AccessibilityUIElement::isSelectedOptionActiveGetterCallback):
-        * DumpRenderTree/chromium/AccessibilityUIElement.h:
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::isSelectedOptionActive):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::isSelectedOptionActive):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::isSelectedOptionActive):
-
-2011-11-21  Takashi Toyoshima  <toyoshim@chromium.org>
-
-        Use Host().port_factory instead of webkitpy.layout_tests.port.factory.
-        https://bugs.webkit.org/show_bug.cgi?id=72859
-
-        Reviewed by Eric Seidel.
-        
-        * Scripts/new-run-webkit-websocketserver:
-
-2011-11-20  Shinya Kawanaka  <shinyak@google.com>
-
-        [Chromium] Layout test does not return correct misspelling positions if there are multiple misspelled words.
-        https://bugs.webkit.org/show_bug.cgi?id=72655
-
-        Reviewed by Hajime Morita.
-
-        Fixed the calculation of offset.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::finishLastTextCheck):
-
-2011-11-20  Ojan Vafai  <ojan@chromium.org>
-
-        Change the final place where we use version 3 of the results json output
-        https://bugs.webkit.org/show_bug.cgi?id=72838
-
-        Reviewed by Adam Barth.
-
-        This converts the json from being a flat map of test name --> results
-        to being hierarchical by directory. This will make the json files 
-        considerably smaller.
-
-        Also cleaned up some functions that were returning/checking boolean values
-        that were always True.
-
-        * TestResultServer/model/jsonresults.py:
-        * TestResultServer/model/jsonresults_unittest.py:
-
-2011-11-20  Ojan Vafai  <ojan@chromium.org>
-
-        Include the master name when querying the test results server.
-        This will soon be required since leaving the master name out mean
-        that multiple files could match the query.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-
-2011-11-19  Ojan Vafai  <ojan@chromium.org>
-
-        Fix jsonp callback code to add the callback if json content
-        is not jsonp.
-        * TestResultServer/handlers/testfilehandler.py:
-
-2011-11-19  Alice Boxhall  <aboxhall@chromium.org>
-
-        Modify dashboard_base.js to optionally accept version 4 results json.
-
-        Reviewed by Ojan Vafai.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (ADD_RESULTS):
-        (flattenTrie):
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-        (testFlattenTrie):
-
-2011-11-19  Ojan Vafai  <ojan@chromium.org>
-
-        Stop storing results files as jsonp in the test results server
-        https://bugs.webkit.org/show_bug.cgi?id=72814
-
-        Reviewed by Adam Barth.
-
-        * TestResultServer/model/jsonresults.py:
-        * TestResultServer/model/jsonresults_unittest.py:
-
-2011-11-19  Ojan Vafai  <ojan@chromium.org>
-
-        Remove the dependence on jsonp from more of new-run-webkit-tests and the test results server
-        https://bugs.webkit.org/show_bug.cgi?id=72813
-
-        Reviewed by Adam Barth.
-
-        Once this lands, we can start storing pure json in the test results server and then
-        we can delete the code with all the FIXMEs added here.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        Only add jsonp for full_results.json.
-        * TestResultServer/model/jsonresults.py:
-        * TestResultServer/model/jsonresults_unittest.py:
-        Accept pure json uploads.
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (appendJSONScriptElementFor):
-        Use the callback parameter so that the server can start returning pure json if it's left out.
-
-2011-11-19  Ojan Vafai  <ojan@chromium.org>
-
-        Allow json NRWT downloads to be pure json and not jsonp
-        https://bugs.webkit.org/show_bug.cgi?id=72809
-
-        Reviewed by Adam Barth.
-
-        I'm moving the server to storing and serving up raw json instead of jsonp.
-        You can still get the jsonp by passing a "callback" parameter, but there's no
-        need for run-webkit-tests to get jsonp when all it wants is the raw json.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        Make the wrapper stripping only happen if the json is actually wrapped.
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator_unittest.py:
-
-2011-11-18  Daniel Bates  <dbates@rim.com>
-
-        Add CMake build infrastructure for the BlackBerry port
-        https://bugs.webkit.org/show_bug.cgi?id=72768
-
-        Reviewed by Antonio Gomes.
-
-        Add optional --blackberry command line argument to build-webkit to build the
-        BlackBerry port.
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-        (determineBaseProductDir):
-        (argumentsForConfiguration):
-        (builtDylibPathForName):
-        (determineIsQt):
-        (isBlackBerry): Added.
-        (determineIsBlackBerry): Added.
-        (blackberryTargetArchitecture): Added.
-        (isAppleWebKit):
-
-2011-11-18  James Robinson  <jamesr@chromium.org>
-
-        Unreviewed, rolling out r100835.
-        http://trac.webkit.org/changeset/100835
-        https://bugs.webkit.org/show_bug.cgi?id=72778
-
-        Broke some page scale tests
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::scalePageBy):
-
-2011-11-18  Adam Barth  <abarth@webkit.org>
-
-        Prepare to move manual-tests out of WebCore
-        https://bugs.webkit.org/show_bug.cgi?id=72782
-
-        Reviewed by Eric Seidel.
-
-        Update this file to refer to the new location of ManualTests.
-
-        * Scripts/webkitpy/common/config/build.py:
-
-2011-11-18  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Set min/max page scale factors when calling eventSender.scalePageBy to avoid clamping
-        https://bugs.webkit.org/show_bug.cgi?id=72778
-
-        Reviewed by Kenneth Russell.
-
-        Set the min/max page scale clamps when a test calls eventSender.scalePageBy() so that the scale isn't clamped.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::scalePageBy):
-
-2011-11-18  Scott Graham  <scottmg@chromium.org>
-
-        IDL changes for gamepad support
-        https://bugs.webkit.org/show_bug.cgi?id=71753
-
-        Reviewed by Adam Barth.
-
-        Runtime enable gamepad in chromium test shell.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-
-2011-10-27  Darin Fisher  <darin@chromium.org>
-
-        [chromium] Improve fullscreen API
-        https://bugs.webkit.org/show_bug.cgi?id=70477
-
-        Reviewed by Adam Barth.
-
-        Implement enter/exitFullScreen.  The implementation is asynchronous,
-        via postDelayedTask, to simulate how the browser actually behaves.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::enterFullScreen):
-        (WebViewHost::exitFullScreen):
-        (WebViewHost::setAddressBarURL):
-        (WebViewHost::enterFullScreenNow):
-        (WebViewHost::exitFullScreenNow):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2011-11-18  Adam Roben  <aroben@apple.com>
-
-        Ignore an ANGLE leak that is not WebKit's fault
-
-        * Scripts/old-run-webkit-tests:
-        (countAndPrintLeaks):
-        * Scripts/webkitpy/layout_tests/port/leakdetector.py:
-        (LeakDetector._callstacks_to_exclude_from_leaks):
-        Added ScanFromString to the call stacks to exclude on all OS versions.
-
-2011-11-18  Adam Roben  <aroben@apple.com>
-
-        Ignore another Lion-specific leak that is not WebKit's fault
-
-        * Scripts/old-run-webkit-tests:
-        (countAndPrintLeaks):
-        * Scripts/webkitpy/layout_tests/port/leakdetector.py:
-        (LeakDetector._callstacks_to_exclude_from_leaks):
-        Added SecTransformExecute to the call stacks to exclude.
-
-2011-11-18  Yuta Kitamura  <yutak@chromium.org>
-
-        [Qt] Enable WebSocket hybi tests
-        https://bugs.webkit.org/show_bug.cgi?id=72687
-
-        Reviewed by Simon Hausmann.
-
-        Let LayoutTestControllerQt be able to switch WebSocket protocols via overridePreference().
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::resetSettings):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::overridePreference):
-
-2011-11-18  Sergio Villar Senin  <svillar@igalia.com>
-
-        [GTK][WK2] Invalid TestNetscapePlugin path when using new-run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=72707
-
-        Reviewed by Philippe Normand.
-
-        Make new-run-webkit-tests use the right path to locate the test
-        plugin used by WebKitTestRunner.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-
-2011-11-18  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] WTR and InjectedBundle should not link statically against JSC/WTF
-        https://bugs.webkit.org/show_bug.cgi?id=72697
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * Tools.pro: Make WTR linux only for the moment.
-        * WebKitTestRunner/InjectedBundle/Target.pri: Remove static jsc/wtf linkage.
-        * WebKitTestRunner/Target.pri: Ditto.
-        * qmake/mkspecs/features/default_post.prf: Don't build the main webkit sources
-        with ELF visibility on Linux. Instead we're temporarily using an LD version script.
-
-2011-11-18  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        [Qt] Change default size of the MiniBrowser
-
-        Reviewed by Simon Hausmann.
-
-        As we lay out desktop pages using the width of 980, change our default
-        size to 980x735 so that we are not scaling down by default.
-
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-        (WindowOptions::WindowOptions):
-
-2011-11-17  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] Clean up the use of DATA_DIR in the buildsystem
-        https://bugs.webkit.org/show_bug.cgi?id=72681
-
-        Reviewed by Daniel Bates.
-
-        Instead of adding -DDATA_DIR in all scopes, only define it in
-        WebCore/PlatformEFL.cmake, as WebCore is the only place that uses
-        it.
-
-        We can then define DATA_DIR to the generated theme directory for
-        EWebLauncher, since it's what we want here.
-
-        * CMakeListsEfl.txt:
-
-2011-11-17  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] Move platform includes last in DRT's include directories.
-        https://bugs.webkit.org/show_bug.cgi?id=72684
-
-        Reviewed by Daniel Bates.
-
-        This is the first step in fixing the build when a platform include (in
-        this case, Valgrind 3.7.0 ships its config.h) and the wrong config.h
-        is included instead of WebKit's.
-
-        * DumpRenderTree/efl/CMakeLists.txt:
-
-2011-11-17  Ryosuke Niwa  <rniwa@webkit.org>
-
-        fuzzy_match doesn't recognize "Dan B" or "hyatt"
-        https://bugs.webkit.org/show_bug.cgi?id=72636
-
-        Reviewed by Eric Seidel.
-
-        Make contributors_by_fuzz_match search string in shorthand names of contributors such as "Ryosuke N"
-        and user names of email addreses such as rniwa in rniwa@webkit.org.
-
-        Also import legacy contributor names and mispell lists from Eric's script on the bug 26533 as a test.
-
-        * Scripts/webkitpy/common/config/committers.py:
-        * Scripts/webkitpy/common/config/committers_unittest.py:
-
-2011-11-17  Eric Seidel  <eric@webkit.org>
-
-        Remove support for running check-webkit-style w/o a webkit checkout
-        https://bugs.webkit.org/show_bug.cgi?id=72678
-
-        Reviewed by Adam Barth.
-
-        After talking to Dave Levin we've decided to remove this
-        code.  I know of no users of check-webkit-style w/o a webkit checkout
-        and this needlessly adds complexity.
-
-        * Scripts/webkitpy/style/main.py:
-
-2011-11-17  Eric Seidel  <eric@webkit.org>
-
-        Remove more direct uses of os.path
-        https://bugs.webkit.org/show_bug.cgi?id=72677
-
-        Reviewed by Adam Barth.
-
-        Remove more uses of os.path, including refactoring
-        CommitterValidator to use a Host object instead of
-        manual hacks to emulate what SCM and FileSystem provide.
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        * Scripts/webkitpy/common/config/committervalidator.py:
-        * Scripts/webkitpy/common/config/committervalidator_unittest.py:
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-         - Turns out none of our unittests actually looked at this path.
-           now I've made it be a valid path.
-        * Scripts/webkitpy/tool/bot/feeders.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-
-2011-11-17  Eric Seidel  <eric@webkit.org>
-
-        Teach TextFileReader about FileSystem
-        https://bugs.webkit.org/show_bug.cgi?id=72673
-
-        Reviewed by Adam Barth.
-
-        Unfortunately TextFileReader doesn't use FileSystem
-        everywhere yet, so we can't move the unittests to
-        using MockFileSystem, but we're close.
-
-        * Scripts/webkitpy/style/filereader.py:
-        * Scripts/webkitpy/style/filereader_unittest.py:
-        * Scripts/webkitpy/style/main.py:
-
-2011-11-17  Eric Seidel  <eric@webkit.org>
-
-        Give check-webkit-style a Host
-        https://bugs.webkit.org/show_bug.cgi?id=72670
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/checkout/scm/detection.py:
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-         - We don't run these unittests, but this one was looking for the wrong exception.
-        * Scripts/webkitpy/style/main.py:
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests.py:
-         - This was create a new scm object even though it already had one?
-
-2011-11-17  Eric Seidel  <eric@webkit.org>
-
-        Move check-webkit-style change_directory code to more modern mocks
-        https://bugs.webkit.org/show_bug.cgi?id=72664
-
-        Reviewed by Adam Barth.
-
-        * Scripts/check-webkit-style:
-        * Scripts/webkitpy/style/main.py:
-        * Scripts/webkitpy/style/main_unittest.py:
-
-2011-11-17  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] enable ref tests
-        https://bugs.webkit.org/show_bug.cgi?id=72601
-
-        Re-enable ref tests. Run the driver under evenly numbered display if performing
-        pixel tests or under oddly numbered display otherwise. This prevents the ref tests
-        being run in an already used Xvfb instance if pixel tests are disabled.
-
-        Reviewed by Tony Chang.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py: Also set Xvfb variable to None
-        after the process is killed
-
-2011-11-17  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
-
-        Make check-webkit-style accept xxx_p.h as a primary header for xxx.cpp for Qt's sake
-        https://bugs.webkit.org/show_bug.cgi?id=72620
-
-        Reviewed by David Levin.
-
-        Qt's convention of keeping private (but exposed) API suffixed by "_p.h" but not
-        adding the suffix the cpp file. One example of false positive
-        https://bugs.webkit.org/show_bug.cgi?id=72319#c12.
-
-        * Scripts/webkitpy/style/checkers/cpp.py: accept headers ending with _p as primary if its
-        basename contains the cpp's basename.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-
-2011-11-17  Eric Seidel  <eric@webkit.org>
-
-        Move check-webkit-style's guts into webkitpy/style/main.py
-        https://bugs.webkit.org/show_bug.cgi?id=72657
-
-        Reviewed by Adam Barth.
-
-        * Scripts/check-webkit-style:
-        * Scripts/webkitpy/style/main.py:
-
-2011-11-17  Eric Seidel  <eric@webkit.org>
-
-        new-run-webkit-tests is locale dependent
-        https://bugs.webkit.org/show_bug.cgi?id=68691
-
-        Reviewed by Adam Barth.
-
-        Make NRWT use a clean environment, just like ORWT did.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        * Scripts/webkitpy/layout_tests/port/google_chrome_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/win.py:
-
-2011-11-17  Dirk Pranke  <dpranke@chromium.org>
-
-        Chromium Mac 10.5 CG dbg bots are failing to run webkit_gpu_tests
-        https://bugs.webkit.org/show_bug.cgi?id=72615
-
-        Reviewed by James Robinson.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-
-2011-11-17  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Layer violation: qt_runtime.cpp accesses QWebElement and QTDRTNode
-        https://bugs.webkit.org/show_bug.cgi?id=72595
-
-        Reviewed by Noam Rosenthal.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree): Use new initialize() function to
-        ensure the registration of the DRTNode JS bindings.
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::LayoutTestController): Remove unnecessary explicit qt meta type
-        registration of QWebElement (now done implicitly through QWebPage ->
-        QtWebElementRunTime::initialize code path)
-
-2011-11-17  Adam Roben  <aroben@apple.com>
-
-        Fix a crash-inducing typo I introduced in r100648
-
-        Fixes <http://webkit.org/b/72642> REGRESSION (r100648): NRWT crashes on Chromium when
-        handling a crashing test
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumDriver.run_test): Get the driver name from the port.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumDriverTest.test_crashed_process_name): Simulate a crash and check that we got the
-        right crashed process name.
-
-2011-11-17  Adam Roben  <aroben@apple.com>
-
-        Fix NRWT's parsing of the number of excluded leaks
-
-        Fixes <http://webkit.org/b/72635> NRWT crashes when parsing leaks files from which certain
-        leaks were excluded
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/port/leakdetector.py:
-        (LeakDetector._parse_leaks_output): Extract just the number of excluded leaks from the
-        regular expression match, not the entire matched string.
-
-        * Scripts/webkitpy/layout_tests/port/leakdetector_unittest.py:
-        (LeakDetectorTest): Added some example output that shows how things look when leaks are
-        excluded.
-        (LeakDetectorTest.test_parse_leaks_output): Test that we parse the number of exclusions
-        correctly.
-
-2011-11-17  Adam Roben  <aroben@apple.com>
-
-        Make NRWT find crash logs for the crashed process, which may not necessarily be the driver process
-
-        Fixes <http://webkit.org/b/72526> REGRESSION (NRWT): WebKitTestRunner crash log gets saved
-        when web process crashes, but WebProcess crash log should get saved instead
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer.py:
-        (write_test_result): Simplified a little to share more code between the case where we
-        crashed when running the test and where we crashed when checking the expected rendering for
-        a reftest. Changed to pass the crashed process name down to write_crash_report.
-        (TestResultWriter.write_crash_report): Added crashed_process_name parameter, which we pass
-        along to CrashLogs.find_newest_log rather than always using the driver name.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumDriver.run_test): Pass the driver name as the name of the crashed process if we
-        crashed.
-
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestInstance.__init__): Initialize new web_process_crash attribute.
-        (unit_test_list): Added new web-process-crash-with-stderr test, which is used by the new
-        test this patch adds.
-        (TestDriver.run_test): Pass a crashed process name to DriverOutput based on whether the test
-        specifies that the driver crashed or the web process crashed.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_web_process_crash_log): Added. Similar to test_crash_log, but uses a test for
-        which we pretend the web process crashed rather than the driver process.
-
-        (MainTest.test_run_singly_actually_runs_tests):
-        (MainTest.test_unexpected_failures):
-        (EndToEndTest.test_end_to_end):
-        Updated magic numbers to account for new unexpected failing test added to unit_test_list.
-
-2011-11-17  Tony Chang  <tony@chromium.org>
-
-        [chromium] stop spamming features warning on every build
-        https://bugs.webkit.org/show_bug.cgi?id=72629
-
-        Reviewed by Ojan Vafai.
-
-        We toggle $blobSupport on if $mediaStreamSupport is on.  Since
-        $mediaStreamSupport is on by default for chromium, make the default
-        for $blobSupport also on.
-
-        * Scripts/build-webkit:
-
-2011-11-17  Adam Roben  <aroben@apple.com>
-
-        Remove extra quoting of call stacks and types passed to run-leaks by NRWT
-
-        Fixes <http://webkit.org/b/72623> REGRESSION (NRWT): run-webkit-tests --leaks reports leaks
-        that are supposed to be ignored
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/port/leakdetector.py:
-        (LeakDetector._leaks_args): Removed extra quoting of call stacks and types. Quoting is only
-        required when passing arguments via the shell (which we aren't doing here). It is not
-        required by Perl's option-parsing code (as the comment I removed mistakenly claimed).
-
-        * Scripts/webkitpy/layout_tests/port/leakdetector_unittest.py:
-        (LeakDetectorTest.test_leaks_args): Updated expectations.
-
-2011-11-17  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, run-bindings-tests fix after r91028.
-
-        * Scripts/run-bindings-tests: Use scm.detection module.
-
-2011-11-17  Jochen Eisinger  <jochen@chromium.org>
-
-        Silence a warning about control reaching the end of a non-void function
-        https://bugs.webkit.org/show_bug.cgi?id=72616
-
-        Reviewed by Tony Gentilcore.
-
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::verticalScrollbar):
-
-2011-11-17  Adam Roben  <aroben@apple.com>
-
-        Ignore some leaks in frameworks we link against on Lion
-
-        Fixes <http://webkit.org/b/72609> Lion Leaks bot complains about a bunch of leaks that
-        aren't WebKit's fault
-
-        Reviewed by Antti Koivisto.
-
-        * Scripts/old-run-webkit-tests:
-        (countAndPrintLeaks):
-        * Scripts/webkitpy/layout_tests/port/leakdetector.py:
-        (LeakDetector._callstacks_to_exclude_from_leaks):
-        Added some call stacks to exclude on Lion that represent leaks in lower-level frameworks.
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.is_lion): Added.
-
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        (MacPortTest.test_is_version_methods): Added tests for the is_leopard/is_snowleopard/is_lion
-        methods.
-
-2011-11-17  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] Disable ref tests
-        https://bugs.webkit.org/show_bug.cgi?id=72599
-
-        Reviewed by Xan Lopez.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py: Enforce disabled ref
-        tests to avoid massive flakiness.
-
-2011-11-17  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Move WebKit2 C++ APIs to private API and build QML extension plugin on top of that
-
-        A new extension object has been added to QQuickWebView (the same approach should be used
-        for other API classes that need experimental APIs). The QML extension mechanism is then
-        built on top of the experimental object.
-
-        https://bugs.webkit.org/show_bug.cgi?id=72522
-
-        Reviewed by Simon Hausmann.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::webView):
-        * MiniBrowser/qt/BrowserWindow.h:
-        * MiniBrowser/qt/UrlLoader.cpp:
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/default_pre.prf:
-        * qmake/mkspecs/features/qtwebkit-private.prf: Added.
-        * qmake/mkspecs/features/qtwebkit.prf:
-
-2011-11-17  Adam Barth  <abarth@webkit.org>
-
-        Move test_results_uploader.py out of layout_package
-        https://bugs.webkit.org/show_bug.cgi?id=72590
-
-        Reviewed by Eric Seidel.
-
-        Most of the lines of code in this file are wrong, but I've restrained
-        myself and only changed a few of them to generalized this class to the
-        common package.
-
-        This is part of a series of patches to remove layout_package.
-
-        * Scripts/webkitpy/common/net/file_uploader.py: Copied from Tools/Scripts/webkitpy/layout_tests/layout_package/test_results_uploader.py.
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_results_uploader.py: Removed.
-
-2011-11-17  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed. Fix style nits in printing.py.
-
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-
-2011-11-17  Adam Barth  <abarth@webkit.org>
-
-        Minor style nits in run_webkit_tests.py
-        https://bugs.webkit.org/show_bug.cgi?id=72583
-
-        Reviewed by Eric Seidel.
-
-        This patch just fixes some minor style issues as I work my way back
-        into this code.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-11-17  Adam Barth  <abarth@webkit.org>
-
-        Move test_result_writer out of layout_package
-        https://bugs.webkit.org/show_bug.cgi?id=72586
-
-        Rubber-stamped by Eric Seidel.
-
-        This is part of a series of patches to remove layout_package.
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer.py: Copied from Tools/Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py.
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py: Removed.
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-
-2011-11-17  Adam Barth  <abarth@webkit.org>
-
-        svn-apply shouldn't magically move files into Source anymore
-        https://bugs.webkit.org/show_bug.cgi?id=72579
-
-        Reviewed by Eric Seidel.
-
-        The Source directory has existed for long enough that we don't need
-        svn-apply to magically re-write old-style patches anymore.
-
-        * Scripts/VCSUtils.pm:
-        (parseGitDiffHeader):
-        (parseSvnDiffHeader):
-
-2011-11-16  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Add a list of contribution areas
-        https://bugs.webkit.org/show_bug.cgi?id=72566
-
-        Reviewed by Eric Seidel.
-
-        Added ContributionAreas class.
-
-        * Scripts/webkitpy/common/config/contributionareas.py: Added.
-        * Scripts/webkitpy/common/config/contributionareas_unittest.py: Added.
-
-2011-11-16  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Refactor ChangeLogTest.test_parse_reviewer_text
-        https://bugs.webkit.org/show_bug.cgi?id=72572
-
-        Reviewed by Eric Seidel.
-
-        Refactored the test code by introduing two helper functions.
-
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-
-2011-11-16  Eric Seidel  <eric@webkit.org>
-
-        Add SCMDetector object to make scm detection mockable
-        https://bugs.webkit.org/show_bug.cgi?id=72247
-
-        Reviewed by Adam Barth.
-
-        I think SCM detection may eventually be rolled into Checkout,
-        but this patch at least makes it possible to mock code-paths
-        which rely on scm detection.
-        In the process of replacing callers of these free-functions
-        I found that one of the functions was no longer used,
-        and that one of the callers could instead just use the SCM
-        object it already had access to through port.host.scm().
-        I also discovered that I was not calling Host._initialize_scm()
-        and thus host.scm() was always returning None!
-
-        * Scripts/check-webkit-style:
-        * Scripts/webkitpy/common/checkout/checkout_unittest.py:
-        * Scripts/webkitpy/common/checkout/deps.py:
-        * Scripts/webkitpy/common/checkout/scm/__init__.py:
-        * Scripts/webkitpy/common/checkout/scm/detection.py:
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-        * Scripts/webkitpy/common/host.py:
-        * Scripts/webkitpy/common/host_mock.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/tool/servers/rebaselineserver.py:
-
-2011-11-16  Mark Rowe  <mrowe@apple.com>
-
-        Fix the build.
-
-        The C++ standard library interferes with Objective-C exceptions when built with -fno-exceptions.
-        Apply the workaround that we use in other projects to WebKitTestRunner.
-
-        * WebKitTestRunner/Configurations/Base.xcconfig: Use the prefix header for all targets.
-        * WebKitTestRunner/Configurations/WebKitTestRunner.xcconfig: Ditto.
-        * WebKitTestRunner/WebKitTestRunnerPrefix.h: Work around the C++ standard library obnoxiousness.
-
-2011-11-16  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
-
-        [Qt] Fix build after WTR AX support
-        https://bugs.webkit.org/show_bug.cgi?id=72560
-
-        Reviewed by Geoffrey Garen.
-
-        * WebKitTestRunner/InjectedBundle/DerivedSources.pri:
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-
-2011-11-16  Tony Chang  <tony@chromium.org>
-
-        repurpose the flexbox bot for grid layout
-        https://bugs.webkit.org/show_bug.cgi?id=72557
-
-        Reviewed by Ryosuke Niwa.
-
-        Since new flexbox is enabled everywhere, we don't need this bot
-        anymore.  However, work on grid layout has begun, so we can use this
-        bot to compile with ENABLE_CSS_GRID_LAYOUT.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Just rename
-        the bot on the waterfall, I will change the slave config to enable
-        the compile flag and tests.
-
-2011-11-11  Adrienne Walker  <enne@google.com>
-
-        [chromium] Expose mock scrollbars to window.internals
-        https://bugs.webkit.org/show_bug.cgi?id=72195
-
-        Reviewed by James Robinson.
-
-        Because mock scrollbars are a global setting, reset between runs.
-
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::applyTo):
-
-2011-11-16  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Enable video and canvas 2d compositing triggers by default for layout tests in the compositing directory
-        https://bugs.webkit.org/show_bug.cgi?id=72562
-
-        Reviewed by Dirk Pranke.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::runFileTest):
-
-2011-11-16  Tony Chang  <tony@chromium.org>
-
-        [NRWT] speculative fix for multiple subprocess test on cygwin
-        https://bugs.webkit.org/show_bug.cgi?id=72518
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py: cygwin probably
-            tries to emulate posix fd behavior.
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-
-2011-11-16  Dirk Pranke  <dpranke@chromium.org>
-
-        Revert r100509; change was committed twice (first time as r100491).
-        Unreviewed, build fix.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-
-2011-11-16  Dirk Pranke  <dpranke@chromium.org>
-
-        Run a dummy test in the gpu configurations if there's nothing to do.
-        https://bugs.webkit.org/show_bug.cgi?id=72498
-
-        Reviewed by James Robinson.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-
-2011-11-16  Ryosuke Niwa  <rniwa@webkit.org>
-
-        contributors_by_fuzzy_match is super slow
-        https://bugs.webkit.org/show_bug.cgi?id=72540
-
-        Reviewed by Eric Seidel.
-
-        Make contributors_by_name do case insensitive search using a dictionary.
-
-        Also call contributors_by_name first in contributors_by_fuzzy_match now that it's fast
-        because that's the most common case.
-
-        * Scripts/webkitpy/common/config/committers.py:
-        * Scripts/webkitpy/common/config/committers_unittest.py:
-
-2011-11-16  David Levin  <levin@chromium.org>
-
-        check-webkit-style should recognize functions even if they have OVERRIDE after them.
-        https://bugs.webkit.org/show_bug.cgi?id=72515
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-
-2011-11-16  Tony Chang  <tony@chromium.org>
-
-        [NRWT] refactor drivers to require pixel_tests param
-        https://bugs.webkit.org/show_bug.cgi?id=72517
-
-        Reviewed by Ojan Vafai.
-
-        No tests, just a refactoring.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-
-2011-11-16  Dirk Pranke  <dpranke@chromium.org>
-
-        Run a dummy test in the gpu configurations if there's nothing to do.
-        https://bugs.webkit.org/show_bug.cgi?id=72498
-
-        Reviewed by James Robinson.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-
-2011-11-16  Chris Fleizach  <cfleizach@apple.com>
-
-        WebKitTestRunner needs to support accessibility-related DRT APIs
-        https://bugs.webkit.org/show_bug.cgi?id=42131
-
-        Reviewed by Beth Dakin.
-
-        Port the AX code in DRT to WKTestRunner by using IDL.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (horizontalScrollbarCallback):
-        (verticalScrollbarCallback):
-        (AccessibilityUIElement::horizontalScrollbar):
-        (AccessibilityUIElement::verticalScrollbar):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::horizontalScrollbar):
-        (AccessibilityUIElement::verticalScrollbar):
-        * WebKitTestRunner/DerivedSources.make:
-        * WebKitTestRunner/GNUmakefile.am:
-        * WebKitTestRunner/InjectedBundle/AccessibilityController.cpp: Added.
-        (WTR::AccessibilityController::create):
-        (WTR::AccessibilityController::AccessibilityController):
-        (WTR::AccessibilityController::~AccessibilityController):
-        (WTR::AccessibilityController::makeWindowObject):
-        (WTR::AccessibilityController::wrapperClass):
-        (WTR::AccessibilityController::rootElement):
-        (WTR::AccessibilityController::focusedElement):
-        (WTR::AccessibilityController::elementAtPoint):
-        * WebKitTestRunner/InjectedBundle/AccessibilityController.h: Added.
-        (WTR::AccessibilityController::logFocusEvents):
-        (WTR::AccessibilityController::logValueChangeEvents):
-        (WTR::AccessibilityController::logScrollingStartEvents):
-        (WTR::AccessibilityController::logAccessibilityEvents):
-        (WTR::AccessibilityController::addNotificationListener):
-        (WTR::AccessibilityController::notificationReceived):
-        (WTR::AccessibilityController::resetToConsistentState):
-        * WebKitTestRunner/InjectedBundle/AccessibilityTextMarker.cpp: Added.
-        (WTR::AccessibilityTextMarker::create):
-        (WTR::AccessibilityTextMarker::AccessibilityTextMarker):
-        (WTR::AccessibilityTextMarker::~AccessibilityTextMarker):
-        (WTR::AccessibilityTextMarker::platformTextMarker):
-        (WTR::AccessibilityTextMarker::wrapperClass):
-        * WebKitTestRunner/InjectedBundle/AccessibilityTextMarker.h: Added.
-        (WTR::AccessibilityTextMarker::isEqual):
-        * WebKitTestRunner/InjectedBundle/AccessibilityTextMarkerRange.cpp: Added.
-        (WTR::AccessibilityTextMarkerRange::create):
-        (WTR::AccessibilityTextMarkerRange::AccessibilityTextMarkerRange):
-        (WTR::AccessibilityTextMarkerRange::~AccessibilityTextMarkerRange):
-        (WTR::AccessibilityTextMarkerRange::platformTextMarkerRange):
-        (WTR::AccessibilityTextMarkerRange::wrapperClass):
-        * WebKitTestRunner/InjectedBundle/AccessibilityTextMarkerRange.h: Added.
-        (WTR::AccessibilityTextMarkerRange::isEqual):
-        * WebKitTestRunner/InjectedBundle/AccessibilityUIElement.cpp: Added.
-        (WTR::AccessibilityUIElement::create):
-        (WTR::AccessibilityUIElement::wrapperClass):
-        (WTR::AccessibilityUIElement::isValid):
-        (WTR::AccessibilityUIElement::AccessibilityUIElement):
-        (WTR::AccessibilityUIElement::~AccessibilityUIElement):
-        (WTR::AccessibilityUIElement::isEqual):
-        (WTR::AccessibilityUIElement::elementAtPoint):
-        (WTR::AccessibilityUIElement::childAtIndex):
-        (WTR::AccessibilityUIElement::indexOfChild):
-        (WTR::AccessibilityUIElement::childrenCount):
-        (WTR::AccessibilityUIElement::titleUIElement):
-        (WTR::AccessibilityUIElement::parentElement):
-        (WTR::AccessibilityUIElement::takeFocus):
-        (WTR::AccessibilityUIElement::takeSelection):
-        (WTR::AccessibilityUIElement::addSelection):
-        (WTR::AccessibilityUIElement::removeSelection):
-        (WTR::AccessibilityUIElement::allAttributes):
-        (WTR::AccessibilityUIElement::attributesOfLinkedUIElements):
-        (WTR::AccessibilityUIElement::linkedUIElementAtIndex):
-        (WTR::AccessibilityUIElement::attributesOfDocumentLinks):
-        (WTR::AccessibilityUIElement::attributesOfChildren):
-        (WTR::AccessibilityUIElement::parameterizedAttributeNames):
-        (WTR::AccessibilityUIElement::increment):
-        (WTR::AccessibilityUIElement::decrement):
-        (WTR::AccessibilityUIElement::showMenu):
-        (WTR::AccessibilityUIElement::press):
-        (WTR::AccessibilityUIElement::stringAttributeValue):
-        (WTR::AccessibilityUIElement::uiElementAttributeValue):
-        (WTR::AccessibilityUIElement::numberAttributeValue):
-        (WTR::AccessibilityUIElement::boolAttributeValue):
-        (WTR::AccessibilityUIElement::isAttributeSupported):
-        (WTR::AccessibilityUIElement::isAttributeSettable):
-        (WTR::AccessibilityUIElement::isActionSupported):
-        (WTR::AccessibilityUIElement::role):
-        (WTR::AccessibilityUIElement::subrole):
-        (WTR::AccessibilityUIElement::roleDescription):
-        (WTR::AccessibilityUIElement::title):
-        (WTR::AccessibilityUIElement::description):
-        (WTR::AccessibilityUIElement::language):
-        (WTR::AccessibilityUIElement::stringValue):
-        (WTR::AccessibilityUIElement::accessibilityValue):
-        (WTR::AccessibilityUIElement::helpText):
-        (WTR::AccessibilityUIElement::orientation):
-        (WTR::AccessibilityUIElement::x):
-        (WTR::AccessibilityUIElement::y):
-        (WTR::AccessibilityUIElement::width):
-        (WTR::AccessibilityUIElement::height):
-        (WTR::AccessibilityUIElement::intValue):
-        (WTR::AccessibilityUIElement::minValue):
-        (WTR::AccessibilityUIElement::maxValue):
-        (WTR::AccessibilityUIElement::valueDescription):
-        (WTR::AccessibilityUIElement::insertionPointLineNumber):
-        (WTR::AccessibilityUIElement::selectedTextRange):
-        (WTR::AccessibilityUIElement::isEnabled):
-        (WTR::AccessibilityUIElement::isRequired):
-        (WTR::AccessibilityUIElement::isFocused):
-        (WTR::AccessibilityUIElement::isFocusable):
-        (WTR::AccessibilityUIElement::isSelected):
-        (WTR::AccessibilityUIElement::isSelectable):
-        (WTR::AccessibilityUIElement::isMultiSelectable):
-        (WTR::AccessibilityUIElement::setSelectedChild):
-        (WTR::AccessibilityUIElement::selectedChildrenCount):
-        (WTR::AccessibilityUIElement::selectedChildAtIndex):
-        (WTR::AccessibilityUIElement::isExpanded):
-        (WTR::AccessibilityUIElement::isChecked):
-        (WTR::AccessibilityUIElement::isVisible):
-        (WTR::AccessibilityUIElement::isOffScreen):
-        (WTR::AccessibilityUIElement::isCollapsed):
-        (WTR::AccessibilityUIElement::isIgnored):
-        (WTR::AccessibilityUIElement::hasPopup):
-        (WTR::AccessibilityUIElement::hierarchicalLevel):
-        (WTR::AccessibilityUIElement::clickPointX):
-        (WTR::AccessibilityUIElement::clickPointY):
-        (WTR::AccessibilityUIElement::documentEncoding):
-        (WTR::AccessibilityUIElement::documentURI):
-        (WTR::AccessibilityUIElement::url):
-        (WTR::AccessibilityUIElement::speak):
-        (WTR::AccessibilityUIElement::attributesOfColumnHeaders):
-        (WTR::AccessibilityUIElement::attributesOfRowHeaders):
-        (WTR::AccessibilityUIElement::attributesOfColumns):
-        (WTR::AccessibilityUIElement::attributesOfRows):
-        (WTR::AccessibilityUIElement::attributesOfVisibleCells):
-        (WTR::AccessibilityUIElement::attributesOfHeader):
-        (WTR::AccessibilityUIElement::indexInTable):
-        (WTR::AccessibilityUIElement::rowIndexRange):
-        (WTR::AccessibilityUIElement::columnIndexRange):
-        (WTR::AccessibilityUIElement::rowCount):
-        (WTR::AccessibilityUIElement::columnCount):
-        (WTR::AccessibilityUIElement::selectedRowAtIndex):
-        (WTR::AccessibilityUIElement::disclosedByRow):
-        (WTR::AccessibilityUIElement::disclosedRowAtIndex):
-        (WTR::AccessibilityUIElement::ariaOwnsElementAtIndex):
-        (WTR::AccessibilityUIElement::ariaFlowToElementAtIndex):
-        (WTR::AccessibilityUIElement::ariaIsGrabbed):
-        (WTR::AccessibilityUIElement::ariaDropEffects):
-        (WTR::AccessibilityUIElement::lineForIndex):
-        (WTR::AccessibilityUIElement::rangeForLine):
-        (WTR::AccessibilityUIElement::boundsForRange):
-        (WTR::AccessibilityUIElement::setSelectedTextRange):
-        (WTR::AccessibilityUIElement::stringForRange):
-        (WTR::AccessibilityUIElement::attributedStringForRange):
-        (WTR::AccessibilityUIElement::attributedStringRangeIsMisspelled):
-        (WTR::AccessibilityUIElement::uiElementForSearchPredicate):
-        (WTR::AccessibilityUIElement::cellForColumnAndRow):
-        (WTR::AccessibilityUIElement::horizontalScrollbar):
-        (WTR::AccessibilityUIElement::verticalScrollbar):
-        (WTR::AccessibilityUIElement::addNotificationListener):
-        (WTR::AccessibilityUIElement::removeNotificationListener):
-        (WTR::AccessibilityUIElement::textMarkerRangeForElement):
-        (WTR::AccessibilityUIElement::textMarkerRangeLength):
-        (WTR::AccessibilityUIElement::textMarkerRangeForMarkers):
-        (WTR::AccessibilityUIElement::startTextMarkerForTextMarkerRange):
-        (WTR::AccessibilityUIElement::endTextMarkerForTextMarkerRange):
-        (WTR::AccessibilityUIElement::accessibilityElementForTextMarker):
-        (WTR::AccessibilityUIElement::textMarkerForPoint):
-        (WTR::AccessibilityUIElement::previousTextMarker):
-        (WTR::AccessibilityUIElement::nextTextMarker):
-        (WTR::AccessibilityUIElement::stringForTextMarkerRange):
-        * WebKitTestRunner/InjectedBundle/AccessibilityUIElement.h: Added.
-        (WTR::AccessibilityUIElement::platformUIElement):
-        * WebKitTestRunner/InjectedBundle/Bindings/AccessibilityController.idl: Added.
-        * WebKitTestRunner/InjectedBundle/Bindings/AccessibilityTextMarker.idl: Added.
-        * WebKitTestRunner/InjectedBundle/Bindings/AccessibilityTextMarkerRange.idl: Added.
-        * WebKitTestRunner/InjectedBundle/Bindings/AccessibilityUIElement.idl: Added.
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (WTR::InjectedBundle::accessibilityController):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::didClearWindowForFrame):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        * WebKitTestRunner/InjectedBundle/gtk/LayoutTestControllerGtk.cpp:
-        (WTR::LayoutTestController::platformName):
-        * WebKitTestRunner/InjectedBundle/mac/AccessibilityTextMarkerMac.mm: Added.
-        (WTR::AccessibilityTextMarker::isEqual):
-        * WebKitTestRunner/InjectedBundle/mac/AccessibilityTextMarkerRangeMac.mm: Added.
-        (WTR::AccessibilityTextMarkerRange::isEqual):
-        * WebKitTestRunner/InjectedBundle/mac/AccessibilityUIElementMac.mm: Added.
-        (+[NSString stringWithJSStringRef:]):
-        (-[NSString createJSStringRef]):
-        (-[AccessibilityNotificationHandler initWithPlatformElement:]):
-        (-[AccessibilityNotificationHandler dealloc]):
-        (-[AccessibilityNotificationHandler _notificationReceived:]):
-        (-[AccessibilityNotificationHandler setCallback:]):
-        (WTR::AccessibilityUIElement::AccessibilityUIElement):
-        (WTR::AccessibilityUIElement::~AccessibilityUIElement):
-        (WTR::AccessibilityUIElement::isEqual):
-        (WTR::descriptionOfValue):
-        (WTR::attributesOfElement):
-        (WTR::concatenateAttributeAndValue):
-        (WTR::convertNSArrayToVector):
-        (WTR::descriptionOfElements):
-        (WTR::AccessibilityUIElement::getLinkedUIElements):
-        (WTR::AccessibilityUIElement::getDocumentLinks):
-        (WTR::AccessibilityUIElement::getChildren):
-        (WTR::AccessibilityUIElement::getChildrenWithRange):
-        (WTR::AccessibilityUIElement::childrenCount):
-        (WTR::AccessibilityUIElement::elementAtPoint):
-        (WTR::AccessibilityUIElement::indexOfChild):
-        (WTR::AccessibilityUIElement::childAtIndex):
-        (WTR::AccessibilityUIElement::linkedUIElementAtIndex):
-        (WTR::AccessibilityUIElement::ariaOwnsElementAtIndex):
-        (WTR::AccessibilityUIElement::ariaFlowToElementAtIndex):
-        (WTR::AccessibilityUIElement::disclosedRowAtIndex):
-        (WTR::AccessibilityUIElement::selectedChildAtIndex):
-        (WTR::AccessibilityUIElement::selectedChildrenCount):
-        (WTR::AccessibilityUIElement::selectedRowAtIndex):
-        (WTR::AccessibilityUIElement::titleUIElement):
-        (WTR::AccessibilityUIElement::parentElement):
-        (WTR::AccessibilityUIElement::disclosedByRow):
-        (WTR::AccessibilityUIElement::attributesOfLinkedUIElements):
-        (WTR::AccessibilityUIElement::attributesOfDocumentLinks):
-        (WTR::AccessibilityUIElement::attributesOfChildren):
-        (WTR::AccessibilityUIElement::allAttributes):
-        (WTR::AccessibilityUIElement::stringAttributeValue):
-        (WTR::AccessibilityUIElement::numberAttributeValue):
-        (WTR::AccessibilityUIElement::uiElementAttributeValue):
-        (WTR::AccessibilityUIElement::boolAttributeValue):
-        (WTR::AccessibilityUIElement::isAttributeSettable):
-        (WTR::AccessibilityUIElement::isAttributeSupported):
-        (WTR::AccessibilityUIElement::parameterizedAttributeNames):
-        (WTR::AccessibilityUIElement::role):
-        (WTR::AccessibilityUIElement::subrole):
-        (WTR::AccessibilityUIElement::roleDescription):
-        (WTR::AccessibilityUIElement::title):
-        (WTR::AccessibilityUIElement::description):
-        (WTR::AccessibilityUIElement::orientation):
-        (WTR::AccessibilityUIElement::stringValue):
-        (WTR::AccessibilityUIElement::language):
-        (WTR::AccessibilityUIElement::helpText):
-        (WTR::AccessibilityUIElement::x):
-        (WTR::AccessibilityUIElement::y):
-        (WTR::AccessibilityUIElement::width):
-        (WTR::AccessibilityUIElement::height):
-        (WTR::AccessibilityUIElement::clickPointX):
-        (WTR::AccessibilityUIElement::clickPointY):
-        (WTR::AccessibilityUIElement::intValue):
-        (WTR::AccessibilityUIElement::minValue):
-        (WTR::AccessibilityUIElement::maxValue):
-        (WTR::AccessibilityUIElement::valueDescription):
-        (WTR::AccessibilityUIElement::insertionPointLineNumber):
-        (WTR::AccessibilityUIElement::isActionSupported):
-        (WTR::AccessibilityUIElement::isEnabled):
-        (WTR::AccessibilityUIElement::isRequired):
-        (WTR::AccessibilityUIElement::isFocused):
-        (WTR::AccessibilityUIElement::isSelected):
-        (WTR::AccessibilityUIElement::isExpanded):
-        (WTR::AccessibilityUIElement::isChecked):
-        (WTR::AccessibilityUIElement::hierarchicalLevel):
-        (WTR::AccessibilityUIElement::speak):
-        (WTR::AccessibilityUIElement::ariaIsGrabbed):
-        (WTR::AccessibilityUIElement::ariaDropEffects):
-        (WTR::AccessibilityUIElement::lineForIndex):
-        (WTR::AccessibilityUIElement::rangeForLine):
-        (WTR::AccessibilityUIElement::boundsForRange):
-        (WTR::AccessibilityUIElement::stringForRange):
-        (WTR::AccessibilityUIElement::attributedStringForRange):
-        (WTR::AccessibilityUIElement::attributedStringRangeIsMisspelled):
-        (WTR::AccessibilityUIElement::uiElementForSearchPredicate):
-        (WTR::AccessibilityUIElement::attributesOfColumnHeaders):
-        (WTR::AccessibilityUIElement::attributesOfRowHeaders):
-        (WTR::AccessibilityUIElement::attributesOfColumns):
-        (WTR::AccessibilityUIElement::attributesOfRows):
-        (WTR::AccessibilityUIElement::attributesOfVisibleCells):
-        (WTR::AccessibilityUIElement::attributesOfHeader):
-        (WTR::AccessibilityUIElement::rowCount):
-        (WTR::AccessibilityUIElement::columnCount):
-        (WTR::AccessibilityUIElement::indexInTable):
-        (WTR::AccessibilityUIElement::rowIndexRange):
-        (WTR::AccessibilityUIElement::columnIndexRange):
-        (WTR::AccessibilityUIElement::cellForColumnAndRow):
-        (WTR::AccessibilityUIElement::horizontalScrollbar):
-        (WTR::AccessibilityUIElement::verticalScrollbar):
-        (WTR::AccessibilityUIElement::selectedTextRange):
-        (WTR::AccessibilityUIElement::setSelectedTextRange):
-        (WTR::AccessibilityUIElement::increment):
-        (WTR::AccessibilityUIElement::decrement):
-        (WTR::AccessibilityUIElement::showMenu):
-        (WTR::AccessibilityUIElement::press):
-        (WTR::AccessibilityUIElement::setSelectedChild):
-        (WTR::AccessibilityUIElement::accessibilityValue):
-        (WTR::AccessibilityUIElement::documentEncoding):
-        (WTR::AccessibilityUIElement::documentURI):
-        (WTR::AccessibilityUIElement::url):
-        (WTR::AccessibilityUIElement::addNotificationListener):
-        (WTR::AccessibilityUIElement::removeNotificationListener):
-        (WTR::AccessibilityUIElement::isFocusable):
-        (WTR::AccessibilityUIElement::isSelectable):
-        (WTR::AccessibilityUIElement::isMultiSelectable):
-        (WTR::AccessibilityUIElement::isVisible):
-        (WTR::AccessibilityUIElement::isOffScreen):
-        (WTR::AccessibilityUIElement::isCollapsed):
-        (WTR::AccessibilityUIElement::isIgnored):
-        (WTR::AccessibilityUIElement::hasPopup):
-        (WTR::AccessibilityUIElement::takeFocus):
-        (WTR::AccessibilityUIElement::takeSelection):
-        (WTR::AccessibilityUIElement::addSelection):
-        (WTR::AccessibilityUIElement::removeSelection):
-        (WTR::AccessibilityUIElement::textMarkerRangeForElement):
-        (WTR::AccessibilityUIElement::textMarkerRangeLength):
-        (WTR::AccessibilityUIElement::previousTextMarker):
-        (WTR::AccessibilityUIElement::nextTextMarker):
-        (WTR::AccessibilityUIElement::stringForTextMarkerRange):
-        (WTR::AccessibilityUIElement::textMarkerRangeForMarkers):
-        (WTR::AccessibilityUIElement::startTextMarkerForTextMarkerRange):
-        (WTR::AccessibilityUIElement::endTextMarkerForTextMarkerRange):
-        (WTR::AccessibilityUIElement::textMarkerForPoint):
-        (WTR::AccessibilityUIElement::accessibilityElementForTextMarker):
-        * WebKitTestRunner/InjectedBundle/mac/LayoutTestControllerMac.mm:
-        (WTR::LayoutTestController::platformName):
-        * WebKitTestRunner/InjectedBundle/qt/LayoutTestControllerQt.cpp:
-        (WTR::LayoutTestController::platformName):
-        * WebKitTestRunner/InjectedBundle/win/LayoutTestControllerWin.cpp:
-        (WTR::LayoutTestController::platformName):
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-        * WebKitTestRunner/win/InjectedBundle.vcproj:
-
-2011-11-16  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Fix use of config.tests
-
-        We were checking @buildArgs to determine if the optional argument was
-        passed or not, but this is not the right way to do that in Perl. The
-        right way is to not use a prototype for the function, and to pass
-        the list as a reference (to avoid list expansion). That way we can
-        check the number of arguments, and choose the right code path based
-        on that.
-
-        We were also missing a default-value of 0 for any feature that's not
-        set in features.prf.
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-        (qtFeatureDefaults):
-        (buildQMakeProject):
-
-2011-11-16  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Prospective fix for broken plugin tests
-
-        Don't hide symbols for the NPAPI test plugin
-
-        Rubber-stamped by Andreas Kling.
-
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-
-2011-11-16  Adam Roben  <aroben@apple.com>
-
-        Move filenames/line numbers off to the right edge in Leaks Viewer
-
-        Fixes <http://webkit.org/b/72510> Callstacks in Leaks Viewer are a little hard to read
-        because filenames/line numbers are right next to function names
-
-        Reviewed by Andreas Kling.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksParserImpl.js:
-        (LeaksParserImpl.prototype._createNode): Separate the filename and line number out from the
-        function name. Use the filename as the profile node's URL (we don't have enough info to
-        compute a real URL currently) and the line number as the profile node's line number so the
-        Inspector code will put them on the right side of the callstack graph.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/WebInspectorShims.js:
-        (WebInspector.displayNameForURL): Stubbed this out. For now we don't ever get any URLs
-        passed here, just filenames.
-
-        (WebInspector.linkifyURLAsNode):
-        (WebInspector.linkifyResourceAsNode):
-        Copied and slightly modified from inspector.js.
-
-2011-11-16  Adam Roben  <aroben@apple.com>
-
-        Make Leaks Viewer load builds from the new Lion Leaks bot
-
-        Fixes <http://webkit.org/b/72507> REGRESSION: Leaks Viewer no longer shows recent leaky builds
-
-        Reviewed by Andreas Kling.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksViewer.js:
-        (LeaksViewer._displayURLPrompt): Use the Lion Leaks bot instead of the nonexistent
-        SnowLeopard one.
-
-2011-11-16  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] Clean up the offline apps-related functions in ewk_settings.
-        https://bugs.webkit.org/show_bug.cgi?id=72132
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        `ewk_settings_cache' and `ewk_view_setting_cache' are too common
-        prefixes for code that is related only to the HTML5 app cache
-        features.
-
-        Use `ewk_settings_application_cache' and
-        `ewk_view_setting_application_cache' instead.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-
-2011-11-15  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Centralize hide_symbols and ensure all libs are built with symbol visibility & bsymbolic_functions
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/default_post.prf: Place the common hide_symbols and -Bsymbolic-functions
-        magic here where we handle all TEMPLATE = lib .pro files (except plugins).
-        * WebKitTestRunner/InjectedBundle/Target.pri: Mark the injected bundle as plugin, which also
-        removes the .so.0.0.0 and just produces .so.
-
-2011-11-16  Peter Beverloo  <peter@chromium.org>
-
-        Explicitly include unistd.h in TestNetscapePlugIn
-        https://bugs.webkit.org/show_bug.cgi?id=72385
-
-        This is needed for the sleep() call in the indicateTestFailure method,
-        which seems to be implicitly available for other platforms. This is not
-        the case on Android.
-
-        Reviewed by Steve Block.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-
-2011-11-16  Peter Beverloo  <peter@chromium.org>
-
-        [Chromium] Update the Android NDK version being pulled in by update-webkit-chromium
-        https://bugs.webkit.org/show_bug.cgi?id=72384
-
-        Update to Android NDK r7, which was released last Friday. This adds
-        support for RTTI and the -mimplicit-it gcc flag, which are required to
-        respectively build ICU and Skia.
-
-        Reviewed by Steve Block.
-
-        * Scripts/update-webkit-chromium:
-        * Scripts/webkitdirs.pm:
-        (buildChromiumMakefile):
-
-2011-11-16  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Unreviewed, rolling out r100266.
-        http://trac.webkit.org/changeset/100266
-
-        Broke WTR.
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2011-11-16  Eric Seidel  <eric@webkit.org>
-
-        check-webkit-style broken by r99773: "Could not determine the port"
-        https://bugs.webkit.org/show_bug.cgi?id=72275
-
-        Reviewed by Adam Barth.
-
-        I will continue engaging hacks, until windows improves.
-
-        * Scripts/webkitpy/common/host.py:
-         - Host uses self.executive instead of self._executive like Port does.
-         - I wanted to test this, but it mutates global state -- thus impossible to unittest at this time.
-
-2011-11-16  Eric Seidel  <eric@webkit.org>
-
-        check-webkit-style broken by r99773: "Could not determine the port"
-        https://bugs.webkit.org/show_bug.cgi?id=72275
-
-        Reviewed by Adam Barth.
-
-        Engage windows hacks harder.
-
-        This is a speculative fix for ChromiumWin.  We're now
-        creating an SCM object much earlier, so we need to
-        engage our "awesome" windows hacks earlier.
-
-        * Scripts/webkitpy/common/host.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-
-2011-11-15  Darin Adler  <darin@apple.com>
-
-        DRT's uiElementAttributeValueCallback function is leaky
-        https://bugs.webkit.org/show_bug.cgi?id=72453
-
-        Reviewed by Dan Bernstein.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (uiElementAttributeValueCallback): Use JSRetainPtr and don't leak.
-
-2011-11-14  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Implement edit-distance based reviewer recognition algorithm
-        https://bugs.webkit.org/show_bug.cgi?id=72351
-
-        Reviewed by Eric Seidel.
-
-        Implement an algorithm to recognize reviewer's name based on its edit distance (or more precisely
-        its Levenshtein distance) to each reviewer's full name, first, last and middle names, and IRC nicknames.
-        Furthermore, we cap the maximum edit distance at len(name) - 1 to avoid matching a bogus string like
-        "build fix" to a reviewer's name (e.g. with with edit distance 9).
-
-        This algorithm is implemented in CommitterList.contributors_by_fuzzy_match. The function to compute
-        the edit distance is implemented in edit_distance.py.
-
-        Also moved _has_valid_reviewer from ValidateReviewer to ChangeLogEntry because we can no longer rely
-        on the presence of ChangeLogEntry.reviewer() to verify that reviewer string is nicely formatted.
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-        * Scripts/webkitpy/common/config/committers.py:
-        * Scripts/webkitpy/common/config/committers_unittest.py:
-        * Scripts/webkitpy/common/editdistance.py: Added.
-        * Scripts/webkitpy/common/editdistance_unittest.py: Added.
-        * Scripts/webkitpy/tool/steps/validatereviewer.py:
-        * Scripts/webkitpy/tool/steps/validatereviewer_unittest.py: Removed.
-
-2011-11-15  Tony Chang  <tony@chromium.org>
-
-        Skip a failing webkitpy test on cygwin.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-
-2011-11-15  Sam Weinig  <sam@webkit.org>
-
-        TestWebKitAPI should not put its resources in the root products directory
-        https://bugs.webkit.org/show_bug.cgi?id=72446
-
-        Reviewed by Anders Carlsson.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        Change the copy resources phase to place the resources in a TestWebKitAPI.resources
-        directory.
-
-        * TestWebKitAPI/Tests/WebKit2ObjC/WKBrowsingContextLoadDelegateTest.mm:
-        (TEST_F):
-        * TestWebKitAPI/Tests/mac/DOMRangeOfString.mm:
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/mac/DeviceScaleFactorOnBack.mm:
-        (TestWebKitAPI::DeviceScaleFactorOnBack::url):
-        * TestWebKitAPI/Tests/mac/DynamicDeviceScaleFactor.mm:
-        (TestWebKitAPI::DynamicDeviceScaleFactor::url):
-        * TestWebKitAPI/mac/PlatformUtilitiesMac.mm:
-        (TestWebKitAPI::Util::createURLForResource):
-        Update calls to retrieve files from the bundle to look in the newly
-        created subdirectory.
-
-2011-11-15  Tony Chang  <tony@chromium.org>
-
-        Fix a webkitpy test caused by renaming the accelerate-video flag in r100355.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-
-2011-11-15  Tony Chang  <tony@chromium.org>
-
-        Unreviewed, fix test-webkitpy tests.  Move the check for image results
-        earlier.
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-11-15  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Fix flag name in chromium DumpRenderTree for accelerated video trigger
-        https://bugs.webkit.org/show_bug.cgi?id=72444
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-
-2011-11-15  Tony Chang  <tony@chromium.org>
-
-        Unreviewed, better fix for ref tests failures on SL Intel bot.
-        Revert the previous change and return None if pixel results from
-        either the test page or the expected page is missing.
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-11-15  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Merge chromium-gpu layout test configurations into non-gpu versions
-        https://bugs.webkit.org/show_bug.cgi?id=72402
-
-        Reviewed by Dirk Pranke.
-
-        Allows the compositing layout tests to run in the normal layout test run. This sets the default compositing
-        triggers in DumpRenderTree to more closely match what we use in Chromium. There are two exceptions, canvas 2d
-        and video (media) are still controlled by an explicit trigger so that they are true when platform=chromium-gpu
-        and false otherwise, so that we can run the same set of tests in both configurations. This isn't necessary for
-        the normal compositing triggers since we currently run the compositing tests in only one configuration - with
-        compositing enabled.
-
-        Since the compositing tests are currently marked WONTFIX SKIP on non-GPU platforms in test_expectations.txt this
-        patch should not impact any tests.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::resetWebSettings):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::setAcceleratedCompositingForVideoEnabled):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-
-2011-11-15  Tony Chang  <tony@chromium.org>
-
-        Unreviewed, try to fix ref tests failures on SL Intel bot.
-        It looks like ImageDiff isn't returning an image diff.
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py:
-
-2011-11-15  Tony Chang  <tony@chromium.org>
-
-        Unreviewed fix of ref-tests on GTK+.
-        If a driver is never started, _xvfb_process is never set.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-
-2011-11-14  Tony Chang  <tony@chromium.org>
-
-        [NRWT] Reftests should run even when pixel tests are disabled.
-        https://bugs.webkit.org/show_bug.cgi?id=60605
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py: Only skip ref tests if --no-ref-tests is passed.
-            Also add an assert to make sure we get image hashes back when running ref tests.
-        * Scripts/webkitpy/layout_tests/controllers/worker.py: Use Driver.has_crashed() instead of poll().
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py: Use DriverProxy.
-        * Scripts/webkitpy/layout_tests/port/driver.py: Add DriverProxy which does the work
-            of starting a pixel driver if needed.  It handles the logic of sending the test
-            to the correct driver.  Also renamed Driver.poll() to Driver.has_crashed().
-        * Scripts/webkitpy/layout_tests/port/dryrun.py:
-        * Scripts/webkitpy/layout_tests/port/test.py: Switch to using DriverProxy so we get test coverage.
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py: Add --no-ref-tests.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py: Test --no-ref-tests.
-
-2011-11-15  David Kilzer  <ddkilzer@apple.com>
-
-        Don't use File::Slurp for run-leaks unit tests
-        <http://webkit.org/b/72356>
-
-        Reviewed by Daniel Bates.
-
-        * Scripts/webkitperl/run-leaks_unittest/RunLeaks.pm: Added.
-        * Scripts/webkitperl/run-leaks_unittest/run-leaks-report-v1.0.pl:
-        Extracted common package logic into RunLeaks.pm.  Fixed call to
-        RunLeaks::parseLeaksOutput().
-        * Scripts/webkitperl/run-leaks_unittest/run-leaks-report-v2.0-new.pl: Ditto.
-        * Scripts/webkitperl/run-leaks_unittest/run-leaks-report-v2.0-old.pl: Ditto.
-
-2011-11-15  Peter Kasting  <pkasting@google.com>
-
-        Handle svn 1.7 when detecting whether a directory is in an svn checkout.
-        https://bugs.webkit.org/show_bug.cgi?id=72349
-
-        Reviewed by Adam Roben.
-
-        * Scripts/VCSUtils.pm:
-        (isSVNDirectory):
-
-2011-11-15  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Centralize hide_symbols and ensure all libs are built with symbol visibility & bsymbolic_functions
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/default_post.prf: Place the common hide_symbols and -Bsymbolic-functions
-        magic here where we handle all TEMPLATE = lib .pro files.
-
-2011-11-15  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Unreviewed prospective --minimal build fix.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro: Avoid USE_SYSTEM_MALLOC=0
-        and USE_SYSTEM_MALLOC=1 appearing in DEFINES at the same time.
-
-2011-11-15  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Unreviewed --minimal build fix.
-
-        * Scripts/build-webkit: Add to DEFINES+= from @options only if there is
-        a define. The "coverage" option doesn't have one, causing "DEFINES+= =0"
-        to make moc's preprocessor abort.
-
-2011-11-14  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        build-webkit: Accept --cmakearg to pass additional arguments to CMake.
-        https://bugs.webkit.org/show_bug.cgi?id=72156
-
-        Reviewed by Daniel Bates.
-
-        Similar to --makearg and --qmakearg, --cmakearg lets one pass
-        additional arguments to CMake (eg. --cmakearg="-DFOO=bar").
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-        (generateBuildSystemFromCMakeProject):
-
-2011-11-14  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Improve ChangeLogEntry's reviewer parsing algorithm part 2
-        https://bugs.webkit.org/show_bug.cgi?id=72340
-
-        Reviewed by Eric Seidel.
-
-        This patch improves the recognition of NOBODY, wrestler names, and parenthesized clauses,
-        and prepares ChangeLogEntry to support edit-distance-based reviewer-name recognition.
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-
-2011-11-14  Eric Seidel  <eric@webkit.org>
-
-        check-webkit-style broken by r99773: "Could not determine the port"
-        https://bugs.webkit.org/show_bug.cgi?id=72275
-
-        Reviewed by Adam Barth.
-
-        The TestExpectationsChecker was using a generic try/except block
-        which caught all exceptions, so we didn't notice that failing
-        to pass a Host to PortFactory was causing an exception in port instantiation.
-        I've factored out the "lookup the port" logic into a separate function
-        which I've now unittested.  This should fix the bug and prevent
-        others like it from occuring the the future.
-
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-
-2011-11-14  Julien Chaffraix  <jchaffraix@webkit.org>
-
-        Add --css-grid-layout to build-webkit and the build systems
-        https://bugs.webkit.org/show_bug.cgi?id=72320
-
-        Reviewed by Ojan Vafai.
-
-        * Scripts/build-webkit:
-        Added the option.
-
-2011-11-14  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r100192.
-        http://trac.webkit.org/changeset/100192
-        https://bugs.webkit.org/show_bug.cgi?id=72328
-
-        Caused infinite tests to fail (Requested by abarth on
-        #webkit).
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-
-2011-11-14  Tony Chang  <tony@chromium.org>
-
-        Remove the CSS3_FLEXBOX compile time flag and enable on all ports
-        https://bugs.webkit.org/show_bug.cgi?id=72196
-
-        Reviewed by Ojan Vafai.
-
-        * Scripts/build-webkit:
-
-2011-11-14  John Yani  <vanuan@gmail.com>
-
-        new-run-webkit-tests should not be locale dependent https://bugs.webkit.org/show_bug.cgi?id=68691
-        Override LOCALE to en_US.
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-
-2011-11-14  Julien Chaffraix  <jchaffraix@webkit.org>
-
-        [Chromium] build-webkit silently drops the features flags
-        https://bugs.webkit.org/show_bug.cgi?id=72293
-
-        Reviewed by Tony Chang.
-
-        Chromium still ignores @features but now we give a warning!
-
-        * Scripts/build-webkit: Check if one of the features is different
-        from the default and print a warning in this case.
-
-2011-11-14  David Kilzer  <ddkilzer@apple.com>
-
-        run-leaks does not work on Lion?
-        <http://webkit.org/b/71059>
-        <rdar://problem/10428527>
-
-        Reviewed by Adam Roben.
-
-        The output of leaks(1) changed again in Lion to move the
-        "leaks Report Version: 2.0" line from the first line of the
-        output to just above the "Process " lines that run-leaks is
-        interested in parsing.  This required using a more generic
-        algorithm to find the start of the "Process " lines.
-
-        * Scripts/run-leaks:
-        (parseLeaksOutput): Make the code to skip headers more generic.
-        * Scripts/webkitperl/run-leaks_unittest/run-leaks-report-v1.0.pl: Added.
-        * Scripts/webkitperl/run-leaks_unittest/run-leaks-report-v2.0-new.pl: Added.
-        * Scripts/webkitperl/run-leaks_unittest/run-leaks-report-v2.0-old.pl: Added.
-
-2011-11-14  Lei Zhang  <thestig@chromium.org>
-
-        Missing include in Tools/DumpRenderTree/chromium/AccessibilityUIElement.h:
-        https://bugs.webkit.org/show_bug.cgi?id=72088
-
-        Reviewed by Tony Chang.
-
-        * DumpRenderTree/chromium/AccessibilityUIElement.h:
-
-2011-11-14  Andrew Scherkus  <scherkus@chromium.org>
-
-        [Chromium] Skip media layout tests on chromium-gpu-cg-mac-leopard platform
-        https://bugs.webkit.org/show_bug.cgi?id=72147
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-
-2011-11-14  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Move the QtWebKit module file to match the layout of Qt's mkspecs
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/modules/qt_webkit.pri: Renamed from Tools/qmake/qt_webkit.pri.
-
-2011-11-14  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Disable plugins on X11 for WK2
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Currently plugins are in-process and they crash in the likely case of
-        a plugin installation that uses Qt 4, which beautifully clashes with the
-        Qt 5 based QtWebProcess.
-
-        * qmake/mkspecs/features/features.prf:
-
-2011-11-14  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Add support for config tests for Qt 5
-
-        This allows us to build and run configure-tests at build
-        time to determine if a given platform feature is available.
-
-        Reviewed by Simon Hausmann.
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-        (qtFeatureDefaults):
-        * qmake/configure.pro: Added.
-        * qmake/mkspecs/features/features.prf:
-        * qmake/sync.profile: Added.
-
-2011-11-11  Pierre Rossi  <pierre.rossi@gmail.com>
-
-        [Qt] Remove the QStyle dependency in Qt's mobile theme
-        https://bugs.webkit.org/show_bug.cgi?id=67773
-
-        This refactoring splits up RenderThemeQt with two
-        subclasses, a QStyle-backed one, and a Mobile version
-        that uses the old mobile theme for now.
-
-        QStyle availability is detected at compile time, and
-        its use is determined by the QT_WEBKIT_USE_MOBILE_THEME
-        environment variable.
-
-        Reviewed by Simon Hausmann.
-
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-        (WTR::activateFonts):
-        * qmake/mkspecs/features/features.prf: HAVE_QSTYLE detection,
-        based on availability of QtWidgets.
-        * qmake/mkspecs/features/webcore.prf: cleanup.
-
-2011-11-14  Tony Gentilcore  <tonyg@chromium.org>
-
-        Unreviewed, rolling out r100116.
-        http://trac.webkit.org/changeset/100116
-
-        r100104 was rolled out, so no longer needed
-
-        * Scripts/run-bindings-tests:
-
-2011-11-14  Tony Gentilcore  <tonyg@chromium.org>
-
-        Unreviewed, rolling out r100104.
-        http://trac.webkit.org/changeset/100104
-        https://bugs.webkit.org/show_bug.cgi?id=72247
-
-        broke windows builds
-
-        * Scripts/check-webkit-style:
-        * Scripts/webkitpy/common/checkout/checkout_unittest.py:
-        * Scripts/webkitpy/common/checkout/deps.py:
-        * Scripts/webkitpy/common/checkout/scm/__init__.py:
-        * Scripts/webkitpy/common/checkout/scm/detection.py:
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-        * Scripts/webkitpy/common/host.py:
-        * Scripts/webkitpy/common/host_mock.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/tool/servers/rebaselineserver.py:
-
-2011-11-14  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, build fix after r100104. run-binding-tests broke.
-
-        * Scripts/run-bindings-tests: Explicitely use scm.detection.
-
-2011-11-13  Eric Seidel  <eric@webkit.org>
-
-        Add SCMDetector object to make scm detection mockable
-        https://bugs.webkit.org/show_bug.cgi?id=72247
-
-        Reviewed by Adam Barth.
-
-        I think SCM detection may eventually be rolled into Checkout,
-        but this patch at least makes it possible to mock code-paths
-        which rely on scm detection.
-        In the process of replacing callers of these free-functions
-        I found that one of the functions was no longer used,
-        and that one of the callers could instead just use the SCM
-        object it already had access to through port.host.scm().
-        I also discovered that I was not calling Host._initialize_scm()
-        and thus host.scm() was always returning None!
-
-        * Scripts/check-webkit-style:
-        * Scripts/webkitpy/common/checkout/checkout_unittest.py:
-        * Scripts/webkitpy/common/checkout/deps.py:
-        * Scripts/webkitpy/common/checkout/scm/__init__.py:
-        * Scripts/webkitpy/common/checkout/scm/detection.py:
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-        * Scripts/webkitpy/common/host.py:
-        * Scripts/webkitpy/common/host_mock.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/tool/servers/rebaselineserver.py:
-
-2011-11-13  Gavin Peters  <gavinp@chromium.org>
-
-        command line control of webcore log channels in chromium DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=72126
-        
-        The option --webcore-log-channels=<foo>,<bar>,<quux> is the same as
-        what chromium takes.
-
-        Reviewed by Kent Tamura.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-
-2011-11-12  Ariya Hidayat  <ariya@sencha.com>
-
-        [Qt] Fix minor config typo in the build tool documentation
-        https://bugs.webkit.org/show_bug.cgi?id=72194
-
-        Reviewed by Andreas Kling.
-
-        * qmake/README:
-
-2011-11-11  Stephen Chenney  <schenney@chromium.org>
-
-        [Chromium] DRT does not have LayoutTestController.pageSizeAndMarginsInPixels
-        https://bugs.webkit.org/show_bug.cgi?id=49257
-
-        Adds the remaining missing layout test functionality for printing.
-
-        Reviewed by Darin Fisher.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController): Add bindings for new JS methods
-        (parsePageNumber): Method to parse JS arguments for a page number
-        (parsePageNumberSizeMargins): Method to parse JS arguments for page size and margins
-        (LayoutTestController::pageSizeAndMarginsInPixels): Get the page size and margins for a given page.
-        (LayoutTestController::isPageBoxVisible): get the visibility status for printing
-        (LayoutTestController::pageProperty): get a specific CSS property when in printing mode
-        * DumpRenderTree/chromium/LayoutTestController.h: Add declarations for new methods
-
-2011-11-11  Darin Adler  <darin@apple.com>
-
-        Remove all releaseRef implementations except for RetainPtr
-        https://bugs.webkit.org/show_bug.cgi?id=71423
-
-        Reviewed by Julien Chaffraix.
-
-        * DumpRenderTree/cf/WebArchiveDumpSupport.cpp:
-        (createXMLStringFromWebArchiveData): Use leakRef instead of releaseRef.
-
-2011-11-11  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Make ChangeLogEntry's reviewer parsing algorithm support last 4 WebCore change logs
-        https://bugs.webkit.org/show_bug.cgi?id=72090
-
-        Reviewed by Eric Seidel.
-
-        Significantly improve ChangeLogEntry's reviewer parsing algorithm. This version can successfully parse
-        ChangeLog, ChangeLog-2011-10-19, ChangeLog-2011-06-04, ChangeLog-2011-02-16, and ChangeLog-2010-12-06.
-
-        yay! r100002.
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-
-2011-11-11  Tony Chang  <tony@chromium.org>
-
-        Remove --force from gclient sync.  The bots seem to have made it past
-        the update step.
-
-        * Scripts/update-webkit:
-
-2011-11-11  Tony Chang  <tony@chromium.org>
-
-        Add --force to gclient sync. Once the cq bots cycle, we can remove
-        this since it slows down the normal sync.
-
-        * Scripts/update-webkit:
-
-2011-11-11  Marc-Antoine Ruel  <maruel@chromium.org>
-
-        When --force is used, also use --reset
-        https://bugs.webkit.org/show_bug.cgi?id=72129
-
-        Reviewed by Dimitri Glazkov.
-
-        * Scripts/update-webkit-chromium:
-
-2011-11-11  Tony Chang  <tony@chromium.org>
-
-        allow two chromium drivers to run at the same time in NRWT
-        https://bugs.webkit.org/show_bug.cgi?id=72067
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py: close_fds=True on
-            posix prevents the subprocesses from sharing the same fd for stdin.
-            Sharing the same fd prevents us from closing the files unless all references
-            to the fd are closed.
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py: In addition
-            to adding a test for this, speed up a test (from 3sec to 0) by fixing
-            the timeout override. It looks like it regressed in r95875.
-
-2011-11-11  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r99964.
-        http://trac.webkit.org/changeset/99964
-        https://bugs.webkit.org/show_bug.cgi?id=72124
-
-        Broke too many Qt tests (Requested by tronical_ on #webkit).
-
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-        (WTR::activateFonts):
-        * qmake/mkspecs/features/features.prf:
-        * qmake/mkspecs/features/webcore.prf:
-
-2011-11-11  Pierre Rossi  <pierre.rossi@gmail.com>
-
-        [Qt] Remove the QStyle dependency in Qt's mobile theme
-        https://bugs.webkit.org/show_bug.cgi?id=67773
-
-        This refactoring splits up RenderThemeQt with two
-        subclasses, a QStyle-backed one, and a Mobile version
-        that uses the old mobile theme for now.
-
-        QStyle availability is detected at compile time, and
-        its use is determined by the QT_WEBKIT_USE_MOBILE_THEME
-        environment variable.
-
-        Reviewed by Simon Hausmann.
-
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-        (WTR::activateFonts):
-        * qmake/mkspecs/features/features.prf: HAVE_QSTYLE detection,
-        based on availability of QtWidgets.
-        * qmake/mkspecs/features/webcore.prf: cleanup.
-
-2011-11-11  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Add missing include to PlatformWebViewQt
-
-        Reviewed by Simon Hausmann.
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-
-2011-11-11  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Fix incremental builds on Windows after buildsystem refactor
-
-        The qmake rules to ensure that we run make on the derived sources
-        before running qmake on the target were inside a unix-scope, which
-        resulted in flakey builds on Windows.
-
-        We now generate a rule on all platforms that ensures that "make qmake"
-        will always run make on the derived sources. In addition, on platforms
-        that have GNU make (where "make incremental" does not run "make qmake",
-        but only "make"), we add a similar rule that ensures that any time the
-        target makefile is regenerated we first run qmake and make on the derived
-        sources. This rule relies on GNU make's order-only-prerequisites to
-        not trigger a qmake-run of the target every time we run make.
-
-        https://bugs.webkit.org/show_bug.cgi?id=71778
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/functions.prf:
-
-2011-11-11  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt][WK2] Remove QWebNavigationController
-        https://bugs.webkit.org/show_bug.cgi?id=72113
-
-        Reviewed by Andreas Kling.
-
-        Adapt to the move of the QWebNavigationController functions/properties to
-        QQuickWebView.
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-
-2011-11-11  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Build system tweak
-
-        Reviewed by Tor Arne Vestbø.
-
-        Be a good qmake citizen, return true from our linkStaticLibrary
-        "test" function.
-
-        * qmake/mkspecs/features/functions.prf:
-
-2011-11-11  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Add support for QT += webkit-private
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/qt_webkit.pri: Declare private headers.
-
-2011-11-11  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, build fix attempt after r99907. Since that revision
-        GTK layout tests were not running at all...
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-
-2011-11-10  Andrew Scherkus  <scherkus@chromium.org>
-
-        [Chromium] only run media GPU layout tests on platforms supporting accelerated compositing
-        https://bugs.webkit.org/show_bug.cgi?id=72001
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-
-2011-11-05  Filip Pizlo  <fpizlo@apple.com>
-
-        bencher script should support remote benchmarking
-        https://bugs.webkit.org/show_bug.cgi?id=71618
-
-        Rubber-stamped by Geoff Garen.
-        
-        Added the following features:
-        
-        - Benchmark report tells you the hostname and machine model (according to
-          'sysctl hw.model') of the machine you did the run on, and svn revision number
-          (according to 'svn info') of the VMs you're testing.
-        
-        - The --remote option. You give this an ssh-style hostname (i.e. user@host is
-          acceptable, in addition to just host, in which case your username is used)
-          and it automatically packages the build directories of the VMs you're testing,
-          sends them to the remote machine along with your copy of the bencher script
-          and all of the options you passed.  This pretty much seamlessly allows you
-          to run a set of benchmarks on any machine that is sufficiently compatible with
-          yours (i.e. similar OS) and that has the appropriate ~/.bencher file, which
-          must now include a tempPath setting that tells bencher where to put files
-          when that machine is used as a slave in a remote benchmarking run.
-          
-        - Added yet another way of specifying which benchmarks to run. This was sort of
-          necessary for --remote to work as expected. Previously, you either said what
-          suites to exclude (for example --exclude-sunspider) or that you only wanted
-          to run one suite to the exclusion of others (--sunspider-only). But it's
-          often better to just be able to specify the list of suites you want. This is
-          now supported. You can say, for example, --v8 --sunspider, which means, just
-          run V8 and SunSpider. This is equivalent to saying --exclude-kraken, which is
-          still supported.
-
-        * Scripts/bencher:
-
-2011-11-10  Tony Chang  <tony@chromium.org>
-
-        Lazily start DRT instances in NRWT
-        https://bugs.webkit.org/show_bug.cgi?id=72038
-
-        Reviewed by Eric Seidel.
-
-        Just a refactoring, no new tests.
-
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/dryrun.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-11-10  Ryosuke Niwa  <rniwa@webkit.org>
-
-        ChangeLog mistakenly recognizes any string between '*' and ':' as touched files
-        https://bugs.webkit.org/show_bug.cgi?id=72057
-
-        Reviewed by Eric Seidel.
-
-        Make the regular expression more explicit.
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-
-2011-11-10  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt] X11 plugins need to be reworked for Qt5
-        https://bugs.webkit.org/show_bug.cgi?id=70023
-
-        Reviewed by Simon Hausmann.
-
-        Rework our basic plugin support in a way that does
-        not need a bridge between Qt and X. The solution is
-        based on getting the content drawed by the plugin
-        from the server as an image and creating a QImage
-        from it.
-
-        * qmake/mkspecs/features/features.prf: Enable X11
-        plugins if Qt is built with the xcb-xlib backend.
-
-2011-11-10  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Fix keyboard related layout tests after API refactoring
-
-        Reviewed by Tor Arne Vestbø.
-
-        Send key events to the handling page item, not the view.
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::sendEvent):
-        (WTR::PlatformWebView::postEvent):
-
-2011-11-10  Alexandre Mazari  <amazari@igalia.com>
-
-        [GTK] Make the ENABLE(FEATURE) macro work in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=71940
-
-        Reviewed by Philippe Normand.
-
-        * GNUmakefile.am:
-        Add webcore_cppflags to Programs_DumpRenderTree_CPP so
-        ENABLE_* variables are part of the environment.
-
-2011-11-10  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Fix focus related layout tests after API refactoring
-
-        Reviewed by Tor Arne Vestbø.
-
-        Make sure the focus is set on the page now, not on the view
-        (which doesn't actually handle the focus).
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::WrapperWindow::WrapperWindow):
-        (WTR::WrapperWindow::handleStatusChanged):
-
-2011-11-10  Alexis Menard  <alexis.menard@openbossa.org>
-
-        [Qt] Merge QTouchWebView and QDesktopWebView into one class
-        https://bugs.webkit.org/show_bug.cgi?id=71355
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Make MiniBrowser and WebKitTestRunner work again after the
-        merge.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::webView):
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * MiniBrowser/qt/MiniBrowser.qrc:
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        * MiniBrowser/qt/main.cpp:
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-        * MiniBrowser/qt/qml/DesktopView.qml: Removed.
-        * MiniBrowser/qt/qml/TouchView.qml: Removed.
-        * WebKitTestRunner/PlatformWebView.h:
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-
-2011-11-10  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Change semantics of the haveQt() function to match API promises
-
-        Having Qt 5 does not imply that we have Qt 4, from an API point of
-        view, as a major version can in theory break BC/SC. Our minimum
-        version of Qt 4 will always be the latest released version of Qt 4,
-        so the only place we should use haveQt(4, x) is when checking for
-        the minimum requirements.
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/default_pre.prf:
-        * qmake/mkspecs/features/features.prf:
-        * qmake/mkspecs/features/functions.prf:
-
-2011-11-07  Kaustubh Atrawalkar  <kaustubh@motorola.com> and Sergio Villar Senin  <svillar@igalia.com>
-
-        [WK2] [GTK] Implement a MouseDown/MouseUp/MouseMoveTo/MouseScrollBy/LeapForward functions for WebKit2 EventSender
-        https://bugs.webkit.org/show_bug.cgi?id=69411
-
-        Reviewed by Martin Robinson.
-
-        * WebKitTestRunner/EventSenderProxy.h:
-        * WebKitTestRunner/InjectedBundle/EventSendingController.h:
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::didReceiveSynchronousMessageFromInjectedBundle):
-        use the EventSender instead of WebProcess Event Simulation.
-        * WebKitTestRunner/gtk/EventSenderProxyGtk.cpp:
-        (WTR::WTREventQueueItem::WTREventQueueItem):
-        (WTR::EventSenderProxy::EventSenderProxy):
-        (WTR::getMouseButtonModifiers):
-        (WTR::eventSenderButtonToGDKButton):
-        (WTR::EventSenderProxy::createMouseButtonEvent):
-        (WTR::EventSenderProxy::updateClickCountForButton):
-        (WTR::EventSenderProxy::replaySavedEvents):
-        (WTR::EventSenderProxy::sendOrQueueEvent):
-        (WTR::webkitModifiersToGDKModifiers):
-        (WTR::getGDKKeySymForKeyRef):
-        (WTR::EventSenderProxy::keyDown):
-        (WTR::EventSenderProxy::mouseDown):
-        (WTR::EventSenderProxy::mouseUp):
-        (WTR::EventSenderProxy::mouseMoveTo):
-        (WTR::EventSenderProxy::mouseScrollBy):
-        (WTR::EventSenderProxy::leapForward):
-
-2011-11-09  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Enable exports and constructor functions in static libs
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/functions.prf: Use --whole-archive and their
-        mac/win32-msvc equivalents when linking static libraries into a shared
-        library or executable.
-
-2011-11-09  Hayato Ito  <hayato@chromium.org>
-
-        [NRWT] Make results.html aware of reference filename in reftests.
-        https://bugs.webkit.org/show_bug.cgi?id=71574
-
-        Reviewed by Ryosuke Niwa.
-
-        If a reference filename is different from the default one, include that in result summary
-        so results.html can link to the correct reference file.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-
-2011-11-09  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix. Update project files and
-        add LTC stubs for new methods.
-
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::addChromeInputField):
-        (LayoutTestController::removeChromeInputField):
-        (LayoutTestController::focusWebView):
-        (LayoutTestController::setBackingScaleFactor):
-        * waf/build/settings.py:
-
-2011-11-09  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix. Support XCode 4 when building deps.
-
-        * wx/install-unix-extras:
-
-2011-11-09  Eric Seidel  <eric@webkit.org>
-
-        Remove the concept of platform-dependent unittests
-        https://bugs.webkit.org/show_bug.cgi?id=71963
-
-        Unreviewed.  Fix test-webkitpy on cygwin.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-
-2011-11-09  Dana Jansens  <danakj@chromium.org>
-
-        Add cc-bugs group to watch changes in chromium graphics
-        https://bugs.webkit.org/show_bug.cgi?id=71690
-
-        Reviewed by David Levin.
-
-        * Scripts/webkitpy/common/config/committers.py: Make new Account superclass for non-contributor watch accounts
-        * Scripts/webkitpy/common/config/committers_unittest.py: Test the Account superclass
-        * Scripts/webkitpy/common/config/watchlist: Add cc-bugs@google.com to watch list
-        * Scripts/webkitpy/common/watchlist/watchlistparser.py: Check for Accounts also, but require it to be the bugzilla email for any Account/Contributor/etc.
-
-2011-11-09  Eric Seidel  <eric@webkit.org>
-
-        Remove more platform-dependent unittests
-        https://bugs.webkit.org/show_bug.cgi?id=71971
-
-        Reviewed by Adam Barth.
-
-        Tests which only run on a couple platforms will break.
-        All tests should run on all platforms where possible.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/config_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-
-2011-11-09  Ojan Vafai  <ojan@chromium.org>
-
-        Merge in results to the test results server even if build numbers conflict
-        https://bugs.webkit.org/show_bug.cgi?id=71967
-
-        Reviewed by Tony Chang.
-
-        This was initially meant to be a sanity check that we don't
-        enter duplicate runs, but it turns out that we can reasonably get
-        in these situations when a builder is clobbered (e.g. the build
-        numbers start over again from 0).
-
-        * TestResultServer/model/jsonresults.py:
-        * TestResultServer/model/jsonresults_unittest.py:
-
-2011-11-09  Eric Seidel  <eric@webkit.org>
-
-        Remove the concept of platform-dependent unittests
-        https://bugs.webkit.org/show_bug.cgi?id=71963
-
-        Reviewed by Adam Barth.
-
-        These have been the source of never-ending sadness.
-        We'd change behavior and forget to update results in
-        some unittests because they were only run on certain platforms.
-        This change removes a large source of these platform-dependent
-        unittests, which was caused by the port_maker stuff.
-
-        It's possible that this change will break test-webkitpy
-        on some platforms, but that will be a one-time cost.
-        I will fix the breakage by removing the platform-dependantness
-        of any such broken tests.
-
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/efl_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/gtk_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/win_unittest.py:
-
-2011-11-09  Eric Seidel  <eric@webkit.org>
-
-        Make the Port object have a Host
-        https://bugs.webkit.org/show_bug.cgi?id=71961
-
-        Reviewed by Adam Barth.
-
-        This has been a long time coming.
-        Now that Port has a Host object, it's very easy
-        to write unittests which use a properly mocked Port.
-        Soon we will remove the executive, filesystem and user
-        members of Port and get everything through the Host.
-
-        Note how in many callsites we're actually removing
-        explicit mocks, since we're now always going to get the
-        correct Executive/User/FileSystem from the
-        Host and callsites don't need to be careful to pass each one.
-
-        This is prep-work for adding a new Environment member to
-        Host and needing to be able to access the Environment
-        member from Port functions w/o needing to pass an Environment
-        object (or appropriate Mock) every place we create a Port object.
-        Now that we have a single Host object to reach out through, its
-        simple to add additional functionality (like Environment) while
-        keeping our unittests properly mocked.
-
-        * Scripts/webkitpy/common/host.py:
-        * Scripts/webkitpy/common/net/credentials_unittest.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        * Scripts/webkitpy/layout_tests/port/apple.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/dryrun.py:
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        * Scripts/webkitpy/layout_tests/port/google_chrome.py:
-        * Scripts/webkitpy/layout_tests/port/google_chrome_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py:
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        * Scripts/webkitpy/layout_tests/port/win_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests_unittest.py:
-        * Scripts/webkitpy/tool/servers/rebaselineserver.py:
-        * Scripts/webkitpy/tool/servers/rebaselineserver_unittest.py:
-
-2011-11-09  Dominic Mazzoni  <dmazzoni@google.com>
-
-        [Chromium] Implement AccessibilityUIElement::insertionPointLineNumberGetterCallback
-        https://bugs.webkit.org/show_bug.cgi?id=71561
-
-        Reviewed by Dimitri Glazkov.
-
-        * DumpRenderTree/chromium/AccessibilityUIElement.cpp:
-        (AccessibilityUIElement::insertionPointLineNumberGetterCallback):
-
-2011-11-09  Benjamin Poulain  <bpoulain@apple.com>
-
-        Implement dumpProgressFinishedCallback() for Mac layoutTestController
-        https://bugs.webkit.org/show_bug.cgi?id=66772
-
-        Reviewed by Simon Fraser.
-
-        When dumpProgressFinishedCallback is enabled, DumpRenderTree should output
-        "postProgressFinishedNotification" on FrameLoaderClient::postProgressFinishedNotification().
-
-        On Mac, the FrameLoaderClient post a notification. This patch add handling for this notification
-        in the FrameLoadDelegate and print the output in response to the notification.
-
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate init]):
-        (-[FrameLoadDelegate dealloc]):
-        (-[FrameLoadDelegate webViewProgressFinishedNotification:]):
-
-2011-11-09  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK][DRT] window internals object is not reset after each test
-        https://bugs.webkit.org/show_bug.cgi?id=71890
-
-        Reviewed by Martin Robinson.
-
-        Call WebCoreTestSupport::resetInternalsObject without going
-        through DumpRenderTreeSupport.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (runTest):
-
-2011-11-09  Beth Dakin  <bdakin@apple.com>
-
-        Build fix.
-
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::uiElementAttributeValue):
-
-2011-11-09  Beth Dakin  <bdakin@apple.com>
-
-        Speculative build fix.
-
-        * DumpRenderTree/AccessibilityUIElement.h:
-
-2011-11-09  Julien Chaffraix  <jchaffraix@webkit.org>
-
-        Unreviewed build fix.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (AccessibilityUIElement::makeJSAccessibilityUIElement):
-        A bad merge added this check that is making the bots sad.
-
-2011-11-09  Chris Fleizach  <cfleizach@apple.com>
-
-        AX: crash when accessing selectedTab in a tab list
-        https://bugs.webkit.org/show_bug.cgi?id=70938
-
-        Reviewed by Beth Dakin.
-
-        Add the ability to retrieve an element through an arbitrary attribute.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (uiElementAttributeValueCallback):
-        (AccessibilityUIElement::uiElementAttributeValue):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::uiElementAttributeValue):
-
-2011-11-09  Andy Wingo  <wingo@igalia.com>
-
-        Add webkitdirs.pm:getArchitecture implementation for GTK
-        https://bugs.webkit.org/show_bug.cgi?id=71370
-
-        Reviewed by Xan Lopez.
-
-        * Scripts/webkitdirs.pm (determineArchitecture): Add an
-        implementation for ports using autotools, so that a vanilla
-        `run-javascriptcore-tests --gtk' invocation doesn't pass --32-bit
-        to build-jsc on x86-64 machines.
-
-2011-11-09  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Unreviewed, rolling out r99707.
-        http://trac.webkit.org/changeset/99707
-
-        Re-enable until we can disable it together with tests in one
-        shot.
-
-        * qmake/mkspecs/features/features.prf:
-
-2011-11-09  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Disable use of QtUiTools if the library/module is not found
-
-        We rely on the lookup order of prf files to inject our own uitools.prf
-        that will verify that QtUiTools is in fact present before allowing the
-        CONFIG += uitools to have any effect.
-
-        Reviewed by Simon Hausmann.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * QtTestBrowser/QtTestBrowser.pro:
-        * qmake/mkspecs/features/uitools.prf: Added.
-
-2011-11-09  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Unreviewed, rolling out r99701.
-        http://trac.webkit.org/changeset/99701
-
-        Breaks Qt mac build
-
-        * qmake/mkspecs/features/functions.prf:
-
-2011-11-09  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Prospective build fix for Win32/Mac with xmlpatterns
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/features.prf: Disable XSLT support initially.
-        We default to XSLT support if qxmlpatterns is available. However qxmlpatterns
-        is not up to the task of full XSLT support, so we should disable it.
-
-2011-11-09  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Enable exports and constructor functions in static libs
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/functions.prf: Use --whole-archive and their
-        mac/win32-msvc equivalents when linking static libraries into a shared
-        library or executable.
-
-2011-11-09  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK][DRT] window internals object is not reset after each test
-        https://bugs.webkit.org/show_bug.cgi?id=71890
-
-        Reviewed by Xan Lopez.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (runTest): reset the Internals object after each test.
-
-2011-11-09  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Detect presence of QtUiTools and enable it only when available
-
-        The disable_uitools option was a workaround for missing detection.
-
-        Reviewed by Simon Hausmann.
-
-        * QtTestBrowser/QtTestBrowser.pro:
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/default_pre.prf:
-
-2011-11-09  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Don't override config for the build_pass of debug_and_release
-
-        Qmake will parse the profile once for each configuration (debug and
-        release), with the build_pass option set. In that situation we don't
-        want to override what qmake is setting explicitly, otherwise the
-        debug-step will end up hitting all the release-scopes.
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/default_pre.prf:
-
-2011-11-09  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Unbreak the Qt build (copy & paste mistake - oops)
-
-        * qmake/mkspecs/features/functions.prf:
-
-2011-11-09  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Centralize duplicated code for linking the static libs
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/functions.prf:
-        * qmake/mkspecs/features/javascriptcore.prf:
-        * qmake/mkspecs/features/webcore.prf:
-        * qmake/mkspecs/features/webkit2.prf:
-
-2011-11-09  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Build system cleanup
-        https://bugs.webkit.org/show_bug.cgi?id=71815
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * WebKitTestRunner/InjectedBundle/Target.pri: We don't need to link against the webkit2
-        static library.
-        * qmake/mkspecs/features/javascriptcore.prf: The wtf sources pull in a glib dependency
-        (ownPtr functions for glib types). Propagate that to everyone using javascriptcore.
-
-2011-11-08  Hayato Ito  <hayato@chromium.org>
-
-        [NRWT] Make single_test_runner aware of reference filename of test_input.
-        https://bugs.webkit.org/show_bug.cgi?id=71567
-
-        Reviewed by Ryosuke Niwa.
-
-        Make single_test_runner honor a reference filename of given test_input so that
-        we can use any file as reference html, instead of depending on implicit naming convention.
-        The typical use case is to support w3c reftests.
-
-        No tests since no functional changes until there is a client.
-        Test should be easily written with future clients.
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py:
-        * Scripts/webkitpy/layout_tests/models/test_failures.py:
-        * Scripts/webkitpy/layout_tests/models/test_input.py:
-
-2011-11-08  Lucas Forschler  <lforschler@apple.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=71839
-        Update the leaks bot OS to Lion.
-        Update the config.json to reflect the update.
-
-        Reviewed by Stephanie Lewis.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2011-11-08  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r99626.
-        http://trac.webkit.org/changeset/99626
-        https://bugs.webkit.org/show_bug.cgi?id=71866
-
-        "C++ exceptions cannot be disabled without influencing the
-        Objective-C exceptions" (Requested by benjaminp on #webkit).
-
-        * DumpRenderTree/mac/Configurations/DumpRenderTree.xcconfig:
-
-2011-11-08  Benjamin Poulain  <bpoulain@apple.com>
-
-        [Mac] Disable C++ exceptions from DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=71834
-
-        Reviewed by Darin Adler.
-
-        DumpRenderTree Mac does not handle C++ exceptions. When such exception
-        happens, it tends to cause the AutoReleasePool stack to be corrupted,
-        which leads to crashes long after the exception was raised.
-
-        This patch disabled C++ exceptions in order to catch the problems where
-        they happen when a C++ exception is raised.
-
-        * DumpRenderTree/mac/Configurations/DumpRenderTree.xcconfig:
-
-2011-11-08  Julien Chaffraix  <jchaffraix@webkit.org>
-
-        Moved myself to the reviewer list (yay!).
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-11-08  Zeno Albisser  <zeno@webkit.org>
-
-        Added myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-11-08  Andy Wingo  <wingo@igalia.com>
-
-        Skip some ECMAScript tests that fail on Linux in some time zones.
-        https://bugs.webkit.org/show_bug.cgi?id=71371
-
-        Reviewed by Martin Robinson.
-
-        * Scripts/run-javascriptcore-tests: Skip some more tests.
-
-2011-11-08  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Unreviewed trivial fix after build system refactoring.
-
-        * Scripts/run-qtwebkit-tests: Fix path of QtWebProcess for QML tests.
-
-2011-11-08  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Don't set OBJECTS_DIR and DEFINES in default_pre
-
-        If a pro file needs to access the OBJECTS_DIR it should use the
-        form ${QMAKE_VAR_OBJECTS_DIR} to ensure the value is evaluated
-        after defaults_post has been processed.
-
-        Setting DEFINES in defaults_pre is also bad, as any DEFINES=foo on
-        the command line will override whatever we set in defaults_pre.
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/default_pre.prf:
-
-2011-11-08  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Prevent duplicated sources in SOURCES/OBJECTIVE_SOURCES
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2011-11-07  Zeno Albisser  <zeno.albisser@nokia.com>
-
-        [Qt][WK2] MiniBrowser should use urlFromUserInput()
-        https://bugs.webkit.org/show_bug.cgi?id=71680
-
-        Use urlFromUserInput() / QUrl::fromUserInput() to automatically
-        complete urls in MiniBrowser.
-
-        Reviewed by Tor Arne Vestbø.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::load):
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-        * MiniBrowser/qt/utils.cpp:
-        (Utils::urlFromUserInput):
-        * MiniBrowser/qt/utils.h:
-        (Utils::Utils):
-
-2011-11-07  Yuqiang Xian  <yuqiang.xian@intel.com>
-
-        Added myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-11-07  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed webkitpy test fix after r99512.
-
-        * Scripts/webkitpy/tool/commands/suggestnominations_unittest.py:
-        Xianzhu Wang is now a committer, so we can't nominate him as a committer anymore.
-
-2011-11-07  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        Added myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-11-07  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r99470.
-        http://trac.webkit.org/changeset/99470
-        https://bugs.webkit.org/show_bug.cgi?id=71740
-
-        "Broke test-webkitpy" (Requested by eseidel2 on #webkit).
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2011-11-07  Tony Chang  <tony@chromium.org>
-
-        [chromium] update flakiness dashboard to reflect current bots
-
-        Reviewed by Ojan Vafai.
-
-        * TestResultServer/static-dashboards/builders.js: Remove (deps) debug
-            bots and merged linux debug bots into a single bot.
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-        (setupExpectationsTest):
-
-2011-11-07  Dana Jansens  <danakj@chromium.org>
-
-        Add cc-bugs group to watch changes in chromium graphics
-        https://bugs.webkit.org/show_bug.cgi?id=71690
-
-        Reviewed by James Robinson.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2011-11-07  Balazs Ankes  <Ankes.Balazs@stud.u-szeged.hu>
-
-        [NRWT] Parsing of test_expectations.txt should be agnostic to newline at end
-        https://bugs.webkit.org/show_bug.cgi?id=70912
-
-        Reviewed by Ojan Vafai.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py: Add newline at the end of test_expectations.txt.
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py: Make up the test_test_expectations method for the updated webkit.py.
-
-2011-11-07  Eric Seidel  <eric@webkit.org>
-
-        new-run-webkit-tests: support --repeat-each feature from old-run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=62199
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-
-2011-11-07  Fady Samuel  <fsamuel@chromium.org>
-
-        [Chromium] Rename WebView::scalePage to WebView::setPageScaleFactor to match WebCore
-        https://bugs.webkit.org/show_bug.cgi?id=71485
-
-        Reviewed by Darin Fisher.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::scalePageBy):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetTestController):
-
-2011-11-07  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Put the jsc binary in 'bin' instead of leaving it deep in the build tree
-
-        Allows us to not package up the whole Source/JavaScriptCore directory for the
-        buildbots.
-
-        Reviewed-by Simon Hausmann.
-
-        * BuildSlaveSupport/built-product-archive:
-        * Scripts/webkitdirs.pm:
-        (jscProductDir):
-
-2011-11-07  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Ensure we always export symbols for the QtWebKit API when building WebKit
-
-        Reviewed-by Simon Hausmann.
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2011-11-07  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Sanitize qmake paths correctly before comparing
-
-        The qmake function toSanitizedPath had a bug causing empty paths on MinGW,
-        which caused us to always generate derived webcore sources, but never build
-        them. The bug has been fixed, and we now also sanitize paths for the injected
-        bundle derived sources.
-
-        Reviewed by Simon Hausmann.
-
-        * WebKitTestRunner/InjectedBundle/DerivedSources.pri:
-        * qmake/mkspecs/features/functions.prf:
-
-2011-11-07  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Print right order for changing feature defines
-
-        Reviewed by Simon Hausmann.
-
-        * Scripts/webkitdirs.pm:
-        (buildQMakeProject):
-
-2011-11-06  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Unreviewed trivial fix after build system refactoring.
-
-        * Scripts/run-qtwebkit-tests: Fix qml_import_path.
-
-2011-11-06  Eric Seidel  <eric@webkit.org>
-
-        Clarify how the symbol and runtime-feature based test exclusion works and cleanup the code a bit
-        https://bugs.webkit.org/show_bug.cgi?id=66078
-
-        Unreviewed.  Add an assert about the type of "args"
-        to our Executive Mocks and fix a piece of code
-        from this patch which was hitting that assert
-        when executing for real.
-
-        * Scripts/webkitpy/common/system/executive_mock.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-11-06  Eric Seidel  <eric@webkit.org>
-
-        Split chunk handling out of prepare_lists_and_print_output to make it more readable
-        https://bugs.webkit.org/show_bug.cgi?id=71629
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-
-2011-11-06  Eric Seidel  <eric@webkit.org>
-
-        Clarify how the symbol and runtime-feature based test exclusion works and cleanup the code a bit
-        https://bugs.webkit.org/show_bug.cgi?id=66078
-
-        Reviewed by Adam Barth.
-
-        The runtime feature detection was fixed to work in bug 64472.
-        In this bug I moved the symbol-based feature detection from
-        popen() to Executive.run_command and cleaned up the callers
-        and unittests to make sure that we're correctly parsing the
-        nm output correctly.  The old code happened to work even though
-        the runtime-features path was using "str in list" and the
-        symbol features path was using "str in str" and it just happened
-        to do what we wanted to.  Now runtime features and symbol feature
-        blacklists are computed separately (and with better documentation).
-
-        This system remains confusing, partially because these are black-lists
-        which are amended to whatever static blacklist may exist for the
-        port as part of a Skipped list file.
-
-        For example, notice how the runtime feature list only has directory
-        blacklists for a couple features.  If all features are off,
-        how do we skip enough tests with only 2 entries in the blacklist map?
-        The answer is that Windows is the only port to use runtime feature
-        detection, and the win/Skipped file turns off all the other features
-        statically (like mathml, mhtml, wss, etc.) where as some other ports (like AppleMac)
-        which use symbol-based feature detection turn of mathml, wcss, etc
-        using the blacklists found in _missing_symbol_to_skipped_tests.
-
-        I also noticed a couple places where we still referenced xhtmlmp
-        even though support for such has been removed from WebKit.  Removed those.
-
-        This should result in no functional change.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-         - Use self._filesystem instead of os.path
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-
-2011-11-06  Dan Bernstein  <mitz@apple.com>
-
-        Made show-pretty-diff work when the input path contains spaces.
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/show-pretty-diff:
-
-2011-11-05  Daniel Cheng  <dcheng@chromium.org>
-
-        [chromium] Use the security origin instead of the URL when checking notification permissions
-        https://bugs.webkit.org/show_bug.cgi?id=71590
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/NotificationPresenter.cpp:
-        (NotificationPresenter::checkPermission):
-        * DumpRenderTree/chromium/NotificationPresenter.h:
-
-2011-11-05  Darin Adler  <darin@apple.com>
-
-        Fix a small leak in Mac version of LayoutTestController
-        https://bugs.webkit.org/show_bug.cgi?id=71615
-
-        Reviewed by Mark Rowe.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::applicationCacheDiskUsageForOrigin): Release the origin.
-        (LayoutTestController::localStorageDiskUsageForOrigin): Ditto.
-
-2011-11-04  Eric Seidel  <eric@webkit.org>
-
-        Upgrade to the latest Mechanize
-        https://bugs.webkit.org/show_bug.cgi?id=71594
-
-        Reviewed by Adam Barth.
-
-        I noticed our mechanize was somewhat out of date when removing Python 2.5 support.
-        Mechanize is no longer two separate libraries, so importing it is much simpler.
-
-        * Scripts/webkitpy/thirdparty/__init__.py:
-
-2011-11-04  Stephen Chenney  <schenney@chromium.org>
-
-        Crash in ScrollAnimator.cpp
-        https://bugs.webkit.org/show_bug.cgi?id=69865
-
-        The code in ScrollAnimator assumes that horizontal per-page mouse
-        wheel events cannot happen, which is not true. This patch adds layout
-        tests for all paging wheel event situations and fixes the broken
-        horizontal case.
-
-        Reviewed by Anders Carlsson
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::handleMouseWheel): Added the ability to specify that a
-        mouse wheel event should be paging.
-
-2011-11-04  Eric Seidel  <eric@webkit.org>
-
-        Remove deprecated free functions in port.factory
-        https://bugs.webkit.org/show_bug.cgi?id=71494
-
-        Unreviewed.  Fix exception when running new-run-webkit-httpd.
-
-        * Scripts/new-run-webkit-httpd:
-
-2011-11-04  Adam Roben  <aroben@apple.com>
-
-        Remove Leopard-specific code from build.webkit.org
-
-        We don't have any Leopard bots anymore.
-
-        Fixes <http://webkit.org/b/71583> build.webkit.org configuration contains obsolete Leopard code
-
-        Reviewed by Mark Rowe.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Removed now-unused StartATSServer
-        and StopATSServer steps.
-        (unitTestsSupported): Removed check for mac-leopard.
-        (TestFactory.__init__): Removed Leopard-specific steps.
-
-2011-11-04  Eric Seidel  <eric@webkit.org>
-
-        new-run-webkit-tests autoinstalls python-irclib even though it doesn't need to
-        https://bugs.webkit.org/show_bug.cgi?id=71549
-
-        Reviewed by Adam Barth.
-
-        Several members of Host didn't really belong there
-        and were instead specific to WebKitPatch, so I've moved
-        them up onto that class.
-
-        * Scripts/webkitpy/common/host.py:
-        * Scripts/webkitpy/common/host_mock.py:
-        * Scripts/webkitpy/tool/main.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/runtests_unittest.py:
-
-2011-11-04  Tony Chang  <tony@chromium.org>
-
-        garden-o-matic: bring back party time!
-        https://bugs.webkit.org/show_bug.cgi?id=71582
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html: Allow images from file:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/images/partytime.gif: Renamed from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/partytime.gif.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base.js: Add length() for UpdateTracker.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js: Plumb through length().
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/garden-o-matic.js: Toggle partytime.gif via css class.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/onebar.css: Add css styling for partytime.
-
-2011-11-04  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] DRT: Fix the order of the items in the dumped history list.
-        https://bugs.webkit.org/show_bug.cgi?id=71562
-
-        It did not make much sense to hold the history list in a map, as we do not need
-        the keys. And the printed items must be sorted by target, which is more easily
-        done with a vector.
-
-        Should make tests such as http/tests/navigation/error404-frames.html pass.
-
-        Reviewed by Antonio Gomes.
-
-        * DumpRenderTree/efl/DumpHistoryItem.cpp:
-        (compareHistoryItemsByTarget):
-        (dumpHistoryItem):
-
-2011-11-04  Patrick Gansterer  <paroga@webkit.org>
-
-        [Qt] Remove ENABLE_SQLITE from qmake files
-        https://bugs.webkit.org/show_bug.cgi?id=71546
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/features.prf:
-        * qmake/mkspecs/features/webcore.prf:
-
-2011-11-04  Adam Barth  <abarth@webkit.org>
-
-        watchlist for WebIDL shouldn't trigger on Internals.idl
-        https://bugs.webkit.org/show_bug.cgi?id=70657
-
-        Reviewed by David Levin.
-
-        Internals.idl isn't part of the Web-facing IDL in the project.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2011-11-04  Anders Carlsson  <andersca@apple.com>
-
-        Fix WKTR crash when running NPN_ConvertPoint test.
-
-        Call notifyDone in a timeout - otherwise we'll end up entering layout from layout.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/mac/ConvertPoint.cpp:
-        (ConvertPoint::NPP_SetWindow):
-
-2011-11-04  Anders Carlsson  <andersca@apple.com>
-
-        NPN_ConvertPoint plug-in test should be called from NPP_SetWindow
-        https://bugs.webkit.org/show_bug.cgi?id=71570
-
-        Reviewed by Simon Fraser.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-        (PluginTest::NPP_SetWindow):
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.h:
-        Remove the NPP parameter from NPP_SetWindow.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/NPPSetWindowCalledDuringDestruction.cpp:
-        (NPPSetWindowCalledDuringDestruction::NPP_SetWindow):
-        Remove the NPP parameter from NPP_SetWindow.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/PassDifferentNPPStruct.cpp:
-        (PassDifferentNPPStruct::NPP_SetWindow):
-        Remove the NPP parameter from NPP_SetWindow and use PluginTest::log for logging.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/mac/ConvertPoint.cpp:
-        (ConvertPoint::NPP_SetWindow):
-        Run the test from NPP_SetWindow and call notifyDone() when done.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_SetWindow):
-        Remove unnecessary parameter.
-
-2011-11-04  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Fix run-qtwebkit-tests execution on the build bot(s).
-
-        Rubber-stamped by Tor Arne Vestbø.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: The path to the tests
-        changed slightly after the refactoring.
-
-2011-11-04  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Don't warn about disabling WebKit2 when qmake does recursive includes
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/default_pre.prf:
-
-2011-11-04  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Don't error out on wrong Qt version when qmake does recursive includes
-
-        Reviewed by Simmon Hausmann.
-
-        * qmake/mkspecs/features/default_pre.prf:
-
-2011-11-04  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Disable STDIN check before cleaning build dir
-
-        It didn't work on the bots.
-
-        Reviewed by Ossy.
-
-        * Scripts/webkitdirs.pm:
-
-2011-11-04  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Don't build all of webkit when running build-jsc
-
-        In case the whole webkit project was built, but we then subsequently
-        want to build only JSC, we need to run make in the proper subdirectory.
-
-        This also means the incremental target needs to be added to all
-        makefiles.
-
-        Reviewed by Simmon Hausmann.
-
-        * Scripts/webkitdirs.pm:
-        (buildQMakeProject):
-        * qmake/mkspecs/features/default_post.prf:
-
-2011-11-04  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Fix run-javascriptcore-tests for Qt when it's executed by the bot.
-
-        Reviewed by Tor Arne Vestbø.
-
-        * Scripts/webkitdirs.pm:
-        (jscProductDir): jsc path changed.
-
-2011-11-04  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Error out early if trying to build against Qt < 4.8
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/default_pre.prf:
-
-2011-11-04  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Fix run-launcher for Qt and Gtk.
-
-        Rubber-stamped by Tor Arne Vestbø.
-
-        * Scripts/webkitdirs.pm:
-        (isWK2): Re-add isWK2(), as it's used in run-launcher.
-
-2011-11-04  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Ignore '-2' if passed to build-webkit. WebKit2 is now built by default.
-
-        Reviewed by Simon Hausmann.
-
-        * Scripts/build-webkit:
-
-2011-11-04  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Use web view title as window title in MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=71544
-
-        Reviewed by Philippe Normand.
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (webViewURIChanged): Removed extra space.
-        (webViewTitleChanged): Set window title using
-        webkit_web_view_get_title().
-        (browser_window_init): Set initial default window title.
-        (browserWindowConstructed): Connect to WebView notify::title
-        signal.
-
-2011-11-04  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Refactor and clean up the qmake build system
-
-        The qmake build system has accumulated a bit of cruft and redundancy
-        over time. There's also a fairly tight coupling between how to build
-        the various targets, and _what_ to build, making it harder to add new
-        rules or sources. This patch aims to elevate these issues somewhat.
-
-        This is a short-list of the changes:
-
-          * The rules for how to build targets are now mostly contained as
-            prf-files in Tools/qmake/mkspecs/features. Using mkspecs also
-            allows us to do pre- and post-processing of each project file,
-            which helps to clean up the actual project files.
-
-          * Derived sources are no longer generated as a separate make-step
-            but is part of each target's project file as a subdir. Makefile
-            rules are used to ensure that we run make on the derived sources
-            before running qmake on the actual target makefile. This makes
-            it easier to keep a proper dependency between derived sources
-            and the target.
-
-          * We use GNU make and the compiler to generate dependencies on
-            UNIX-based systems running Qt 5. This allows us to lessen the
-            need to run qmake, which should reduce compile time.
-
-          * WebKit2 is now build by default if building with Qt 5. It can
-            be disabled by passing --no-webkit2 to build-webkit.
-
-        The result of these changes are hopefully a cleaner and easier
-        build system to modify, and faster build times due to no longer
-        running qmake on every single build. It's also a first step
-        towards possibly generating the list of sources using another
-        build system.
-
-        https://bugs.webkit.org/show_bug.cgi?id=71222
-
-        Reviewed by Simon Hausmann.
-
-        * DerivedSources.pro: Removed.
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/ImageDiff.pro:
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * QtTestBrowser/QtTestBrowser.pro:
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::initializeView):
-        (LauncherWindow::createChrome):
-        (LauncherWindow::screenshot):
-        * QtTestBrowser/launcherwindow.h:
-        (WindowOptions::WindowOptions):
-        * Scripts/build-webkit:
-        (unlinkZeroFiles):
-        * Scripts/webkitdirs.pm:
-        (qtFeatureDefaults):
-        (promptUser):
-        (buildQMakeProject):
-        * Tools.pro:
-        * WebKitTestRunner/DerivedSources.pri: Added.
-        * WebKitTestRunner/DerivedSources.pro: Removed.
-        * WebKitTestRunner/InjectedBundle/DerivedSources.pri: Added.
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.pro: Added.
-        * WebKitTestRunner/InjectedBundle/Target.pri: Added.
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro: Removed.
-        * WebKitTestRunner/Target.pri: Added.
-        * WebKitTestRunner/WebKitTestRunner.pro:
-        * WebKitTestRunner/qt/TestInvocationQt.cpp:
-        * WebKitTestRunner/qt/WebKitTestRunner.pro: Removed.
-        * qmake/README: Added.
-        * qmake/mkspecs/features/default_post.prf: Added.
-        * qmake/mkspecs/features/default_pre.prf: Added.
-        * qmake/mkspecs/features/features.prf: Renamed from Source/WebCore/features.pri.
-        * qmake/mkspecs/features/functions.prf: Added.
-        * qmake/mkspecs/features/javascriptcore.prf: Renamed from Source/JavaScriptCore/JavaScriptCore.pri.
-        * qmake/mkspecs/features/mac/default_post.prf: Added.
-        * qmake/mkspecs/features/mac/default_pre.prf: Added.
-        * qmake/mkspecs/features/minimal_qt.prf: Added.
-        * qmake/mkspecs/features/qtwebkit.prf: Added.
-        * qmake/mkspecs/features/rpath.prf: Added.
-        * qmake/mkspecs/features/unix/default_post.prf: Added.
-        * qmake/mkspecs/features/unix/default_pre.prf: Added.
-        * qmake/mkspecs/features/valgrind.prf: Added.
-        * qmake/mkspecs/features/webcore.prf: Renamed from Source/WebCore/WebCore.pri.
-        * qmake/mkspecs/features/webkit2.prf: Copied from Source/WebKit2/WebKit2.pri.
-        * qmake/mkspecs/features/win32/default_post.prf: Added.
-        * qmake/qt_webkit.pri: Renamed from Source/WebKit/qt/qt_webkit_version.pri.
-        * qmake/syncqt-4.8: Added.
-        (showUsage):
-        ():
-        (copyFile):
-        (symlinkFile):
-
-2011-11-04  Eric Seidel  <eric@webkit.org>
-
-        Remove deprecated free functions in port.factory
-        https://bugs.webkit.org/show_bug.cgi?id=71494
-
-        Unreviewed.  Fixing exception seen when running test-webkitpy.
-
-        Sorry, I previously had deleted the relevant rebaseline-chromium-webkit-tests
-        unittest, since that script is nearly ready to be deleted.  But I added
-        it back at the last second and failed to run the tests. :(
-        This fixes the exception the bots were seeing.
-
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests_unittest.py:
-
-2011-11-02  Xiaomei Ji  <xji@chromium.org>
-
-        Enable ctrl-arrow move cursor by word in visual order in cr-win by command line flag.
-        https://bugs.webkit.org/show_bug.cgi?id=71163
-
-        Reviewed by Ryosuke Niwa.
-
-        * DumpRenderTree/chromium/WebPreferences.cpp: Set visualWordMovementEabled to false in DRT.
-        (WebPreferences::applyTo):
-
-2011-11-03  Eric Seidel  <eric@webkit.org>
-
-        Remove deprecated free functions in port.factory
-        https://bugs.webkit.org/show_bug.cgi?id=71494
-
-        Reviewed by Adam Barth.
-
-        I removed port.factory.get, get_all, and all_port_names -- long-since deprecated
-        free functions in factory.py.  To remove these required fixing all callsites
-        to use MockHost, Host, or PortFactory where appropriate.  After this change
-        we're only left with a handfull of places where we inappropraitely use a
-        real Executive, FileSystem or User object during unittesting.
-
-        * Scripts/webkitpy/common/checkout/baselineoptimizer_unittest.py:
-         - These PortFactory overrides were from an earlier edition of my previous patch
-           in the end, I removed MockPortFactory so all tests ended up with this same
-           real PortFactory() with a MockHost.  This was simply redundent code.
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-         - Use MockHost to get a mocked-out PortFactory.
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-         - This code has no access to a Host object, so we just use a default PortFactory
-           for now.  This will still incorrectly create real Executive/FileSystem objects
-           durring unittesting, which is wrong. :(
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker_unittest.py:
-         - Use a MockHost to get a mocked PortFactory.
-        * Scripts/webkitpy/layout_tests/controllers/test_expectations_editor_unittest.py:
-         - Use a MockHost to get a mocked PortFactory.
-        * Scripts/webkitpy/layout_tests/models/test_configuration_unittest.py:
-         - ditto.
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-         - ditto.
-        * Scripts/webkitpy/layout_tests/port/__init__.py:
-         - factory.get no longer exists.  Yay!
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-         - Use a MockHost to get a mocked PortFactory.
-           To do this efficiently, I created a helper function
-           and combined all these (mostly redundant) tests into one test
-           with several calls to the helper function.
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-         - Pass MockUser and MockExecutive in these port testing subclasses.
-         - I also removed a bunch of unecessary uses of mocktool. namespacing.
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-         - Awesome windows hacks should only happen on win32.  Once we started
-           using MockExecutives these 'svn help' commands started printing in
-           other tests, which is how I found this bug.
-        * Scripts/webkitpy/layout_tests/port/dryrun.py:
-         - DryRunPort has no Host, so just use a PortFactory() directly.
-           This will do the wrong thing if we're unittesting the DryRun port
-           but it's no worse than the existing code.
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-         - Remove the free functions.
-         - Fix argument overriding to be able to override None.
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-         - Use a mocked-out PortFactory during testing.
-        * Scripts/webkitpy/layout_tests/port/google_chrome_unittest.py:
-         - Pass MockExecutive and MockUser to these manual Port instantiations.
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py:
-         - No access to a Host object here, so just using PortFactory directly.
-           This is wrong, but no more wrong than the existing code was.
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-         - Use a MockHost to get a mocked out PortFactory.
-        * Scripts/webkitpy/layout_tests/port/test.py:
-         - Use our fancy _set_default_overriding_none system to clean this code up and pass a MockExecutive.
-        * Scripts/webkitpy/layout_tests/port/win.py:
-         - Don't run cmd /c ver from WinPort.__init__ or it shows up in unittests which have logging MockExecutive
-           now that we're actually passing MockExecutive to most Port instantiations during testing.
-        * Scripts/webkitpy/layout_tests/port/win_unittest.py:
-         - Pass our new "unittesting" bool to _detect_version when actually unittesting.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-         - Host is the future.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-         - Use a MockHost to get a mocked out PortFactory.  Once we have a mocked PortFactory
-           we don't need to pass MockUser explicitly, it does that automatically for us.
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-         - Use a MockHost to get a mocked out PortFactory.
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-         - We don't have access to a Host object, so using PortFactory() directly.
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-         - Remove unused variable.
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests.py:
-         - Host isn't accessible here, so using PortFactory() directly, which
-           although unfortunate is no worse than before.
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests_unittest.py:
-         - Testing is much easier when you don't need to hack global state...
-        * Scripts/webkitpy/tool/commands/expectations.py:
-         - Use the port_factory on the tool.
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-         - ditto.
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-         - This unittest was wrong.  It was trying to pass the tool object, but failing to pass
-           the arguments in the right order.  Fixing that made it use a MockFileSystem
-           (like it had been trying to), which then required us to actually populate
-           that MockFileSystem with fake expectation files (instead of using the ones on the real disk).
-        * Scripts/webkitpy/tool/commands/rebaselineserver.py:
-         - Get the port_factory from the tool.
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-         - Ditto.
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-         - Use a MockHost to get a mocked out Port object.
-
-2011-11-03  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] DRT: Allow choosing which backing store to use.
-        https://bugs.webkit.org/show_bug.cgi?id=70532
-
-        Reviewed by Antonio Gomes.
-
-        This change makes it possible to change the backing store used by DRT
-        from Tiled Backing Store (TBS) to Single Backing Store (SBS) by
-        setting the environment variable DRT_USE_SINGLE_BACKING_STORE to 1.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::createView):
-        * DumpRenderTree/efl/DumpRenderTreeView.cpp:
-        (shouldUseSingleBackingStore):
-        (chooseAndInitializeAppropriateSmartClass):
-        (drtViewAdd):
-        * DumpRenderTree/efl/DumpRenderTreeView.h:
-
-2011-11-02  Erik Arvidsson  <arv@chromium.org>
-
-        JS Test Harness: Remove more link tags
-        https://bugs.webkit.org/show_bug.cgi?id=71339
-
-        Reviewed by Ojan Vafai.
-
-        * Scripts/make-new-script-test:
-        (writeTestFile): Don't output <link>
-
-2011-11-03  Thouraya ANDOLSI  <thouraya.andolsi@st.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] arguments passed to build-jsc are not taken into account
-        https://bugs.webkit.org/show_bug.cgi?id=58333
-
-        * Scripts/build-jsc:
-
-2011-11-03  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Show url of history items in a status bar in MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=71474
-
-        Reviewed by Martin Robinson.
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (browserWindowSetStatusText): Set status text and show/hide the
-        status label.
-        (resetStatusText): Reset status text when history menu is hidden.
-        (browserWindowHistoryItemSelected): Show url of currently selected
-        history item.
-        (browserWindowCreateBackForwardMenu): Connect to hide signal of
-        menu to reset the status text.
-        (browserWindowConstructed): Use GtkOverlay if available to show
-        status text.
-
-2011-11-03  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Add back/forward menus to MiniBrowser using WebKit2 GTK+ API
-        https://bugs.webkit.org/show_bug.cgi?id=71466
-
-        Reviewed by Martin Robinson.
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (browserWindowHistoryItemActivated): Go to selected back formard
-        list item using webkit_web_view_go_to_back_forward_list_item()
-        (browserWindowCreateBackForwardMenu): Create a GtkMenu for the
-        given GList of WebKitBackForwardListItems.
-        (browserWindowUpdateNavigationActions): Enable/disable back and
-        forward buttons depending on whether it's possible to go
-        back/forward. Create a menu for back and forward toolbar buttons.
-        (backForwadlistChanged): Call browserWindowUpdateNavigationActions().
-        (browserWindowConstructed): Connect to WebKitBackForwardList
-        changed signal.
-
-2011-11-03  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Remove Maemo specific code paths
-        https://bugs.webkit.org/show_bug.cgi?id=71476
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::~LauncherWindow):
-        (LauncherWindow::init):
-        (LauncherWindow::showLinkHover):
-        (LauncherWindow::selectElements):
-        (LauncherWindow::showFPS):
-        (LauncherWindow::updateFPS):
-        * QtTestBrowser/launcherwindow.h:
-        (WindowOptions::WindowOptions):
-        * QtTestBrowser/locationedit.cpp:
-        * QtTestBrowser/locationedit.h:
-
-2011-11-03  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Show load progress information in MiniBrowser using WebKit2 GTK+ API
-        https://bugs.webkit.org/show_bug.cgi?id=71461
-
-        Reviewed by Martin Robinson.
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (resetEntryProgress): Reset the entry progress after a while when
-        load has been completed.
-        (webViewLoadProgressChanged): Update location entry progress.
-        (browserWindowConstructed): Connect to WebView
-        notify::estimated-load-progress signal.
-
-2011-11-03  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Remove WebKit2 C API from MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=71459
-
-        Reviewed by Martin Robinson.
-
-        Use the GTK+ API instead to add minimum functionality. The other
-        features will be ported to GTK+ API in following patches.
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (activateUriEntryCallback): Use webkit_web_view_load_uri().
-        (goBackCallback): Use webkit_web_view_go_back().
-        (goForwardCallback): Use webkit_web_view_go_forward().
-        (webViewURIChanged): Update location entry with current uri using
-        webkit_web_view_get_uri().
-        (browserWindowFinalize):
-        (browserWindowGetProperty):
-        (browserWindowSetProperty):
-        (browser_window_init):
-        (browserWindowConstructed): Connect to notify::uri signal of
-        WebView to be notified when the URI changes.
-        (browser_window_class_init):
-        (browser_window_new): Use WebKitWebView.
-        (browser_window_get_view): Use WebKitWebView
-        * MiniBrowser/gtk/BrowserWindow.h:
-        * MiniBrowser/gtk/GNUmakefile.am:
-        * MiniBrowser/gtk/WebBundle/WebBundleMain.c: Removed.
-        * MiniBrowser/gtk/main.c:
-        (loadURI): Use webkit_web_view_new().
-        (main):
-
-2011-11-03  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Unable to start MiniBrowser after run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=71469
-
-        Reviewed by Csaba Osztrogonác.
-
-        * Scripts/run-launcher: Pass @ARGV instead of @args, which is stripped
-        from things like -2. Neither Gtk or Qt MiniBrowser like unknown command
-        line arguments.
-
-2011-11-03  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] [WK2] ttf-liberation fonts moved to a new location (in Debian)
-        https://bugs.webkit.org/show_bug.cgi?id=71445
-
-        Reviewed by Martin Robinson.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (initializeFonts): set directoriesDescription only when needed.
-        * WebKitTestRunner/InjectedBundle/gtk/ActivateFontsGtk.cpp:
-        (WTR::inititializeFontConfigSetting): Add the new font path for Debian fonts and
-        refactored the font files loading code to avoid copy/pastes, ease
-        maintenance and future font directories additions.
-
-2011-11-03  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Remove GtkLauncher2
-        https://bugs.webkit.org/show_bug.cgi?id=71449
-
-        Reviewed by Martin Robinson.
-
-        GtkLauncher2 is the GtkLauncher code compiled with webkit2. This
-        made sense when we wanted to implement the exactly same wk1 API
-        for wk2. Now the code would require an ifdef for most the api, so
-        it's better to remove GtkLauncher2 and port MiniBrowser to the new
-        GTK+ API.
-
-        * GNUmakefile.am:
-        * GtkLauncher/main.c:
-        (notifyProgressCb):
-        (closeWebViewCb):
-        (createBrowser):
-        (addWebSettingsGroupToContext):
-        (main):
-
-2011-11-02  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] [DRT] ttf-liberation fonts moved to a new location (in Debian)
-        https://bugs.webkit.org/show_bug.cgi?id=71359
-
-        Reviewed by Martin Robinson.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (initializeFonts): Add the new font path for Debian fonts and
-        refactored the font files loading code to avoid copy/pastes, ease
-        maintenance and future font directories additions.
-
-2011-11-02  Eric Seidel  <eric@webkit.org>
-
-        Move Mocks into _mock files near their implementations
-        https://bugs.webkit.org/show_bug.cgi?id=71425
-
-        Reviewed by Adam Barth.
-
-        This entire change is splitting mocktool.py into separate _mock.py files
-        and placing them next to their real implementations.
-
-        I also deleted MockPortFactory (since it was wrong) and was just hiding
-        the fact that the "skipped-ports" command was broken (and has been for a long time).
-        So I made MockHost use a real PortFactory (passed a MockHost) and changed
-        the skipped-ports implementation to use modern PortFactory methods.
-
-        * Scripts/webkitpy/common/checkout/baselineoptimizer_unittest.py:
-        * Scripts/webkitpy/common/checkout/checkout_mock.py: Added.
-        * Scripts/webkitpy/common/checkout/checkout_unittest.py:
-        * Scripts/webkitpy/common/checkout/deps_mock.py: Copied from Tools/Scripts/webkitpy/layout_tests/port/__init__.py.
-        * Scripts/webkitpy/common/checkout/scm/scm_mock.py: Added.
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-        * Scripts/webkitpy/common/config/ports_mock.py: Copied from Tools/Scripts/webkitpy/layout_tests/port/gtk_unittest.py.
-        * Scripts/webkitpy/common/host.py:
-        * Scripts/webkitpy/common/host_mock.py: Added.
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla_mock.py: Added.
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla_unittest.py:
-        * Scripts/webkitpy/common/net/buildbot/buildbot_mock.py: Added.
-        * Scripts/webkitpy/common/net/credentials_unittest.py:
-        * Scripts/webkitpy/common/net/failuremap_unittest.py:
-        * Scripts/webkitpy/common/net/irc/irc_mock.py: Copied from Tools/Scripts/webkitpy/layout_tests/port/__init__.py.
-        * Scripts/webkitpy/common/net/statusserver_mock.py: Copied from Tools/Scripts/webkitpy/layout_tests/port/gtk_unittest.py.
-        * Scripts/webkitpy/common/net/statusserver_unittest.py:
-        * Scripts/webkitpy/common/net/web_mock.py: Copied from Tools/Scripts/webkitpy/layout_tests/port/gtk_unittest.py.
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/common/system/executive_mock.py:
-        * Scripts/webkitpy/common/system/platforminfo_mock.py: Copied from Tools/Scripts/webkitpy/layout_tests/port/__init__.py.
-        * Scripts/webkitpy/common/system/user_mock.py: Copied from Tools/Scripts/webkitpy/layout_tests/port/gtk_unittest.py.
-        * Scripts/webkitpy/common/system/workspace_mock.py: Copied from Tools/Scripts/webkitpy/layout_tests/port/__init__.py.
-        * Scripts/webkitpy/common/system/workspace_unittest.py:
-        * Scripts/webkitpy/common/watchlist/watchlist_mock.py: Copied from Tools/Scripts/webkitpy/layout_tests/port/__init__.py.
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        * Scripts/webkitpy/layout_tests/controllers/test_expectations_editor_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/__init__.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/efl_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/gtk_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/http_lock_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/leakdetector_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/win_unittest.py:
-        * Scripts/webkitpy/test/main.py:
-        * Scripts/webkitpy/tool/bot/botinfo_unittest.py:
-        * Scripts/webkitpy/tool/bot/flakytestreporter_unittest.py:
-        * Scripts/webkitpy/tool/bot/irc_command_unittest.py:
-        * Scripts/webkitpy/tool/commands/queries_unittest.py:
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-
-2011-11-02  Dan Bernstein  <mitz@apple.com>
-
-        Fixed the build and removed another copy to ColorBits.ttf.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-        * WebKitTestRunner/fonts/ColorBits.ttf: Removed.
-
-2011-11-02  Dan Bernstein  <mitz@apple.com>
-
-        REGRESSION (r98759-r98773): platform/mac/fonts/color-bitmap.html failing on Lion Intel Debug (Tests)
-        https://bugs.webkit.org/show_bug.cgi?id=71424
-
-        Reviewed by Sam Weinig.
-
-        Removed the ColorBits font and the code to register it in the process
-        running the tests. The font was only used by the aforementioned test,
-        which is now being removed.
-
-        * DumpRenderTree/fonts/ColorBits-A.png: Removed.
-        * DumpRenderTree/fonts/ColorBits.ttf: Removed.
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (allowedFontFamilySet):
-        (activateTestingFonts):
-        * WebKitTestRunner/InjectedBundle/gtk/ActivateFontsGtk.cpp:
-        (WTR::inititializeFontConfigSetting):
-        * WebKitTestRunner/InjectedBundle/mac/ActivateFonts.mm:
-        (WTR::allowedFontFamilySet):
-        (WTR::activateFonts):
-
-2011-11-02  Dan Bernstein  <mitz@apple.com>
-
-        Fix an intermittent hang in RenderedImageFromDOMRange.
-
-        Reviewed by Anders Carlsson.
-
-        * TestWebKitAPI/mac/PlatformUtilitiesMac.mm:
-        (TestWebKitAPI::Util::run): Made the call to -runMode:beforeDate: return
-        immediately if there are no sources by passing a date in the distant past.
-
-2011-11-02  Adam Roben  <aroben@apple.com>
-
-        Add git-add-reviewer
-
-        I've been using this script for a while to add reviewers to git commits in my local
-        repository before pushing them to the Subversion repository. Basic usage is:
-
-        git-add-reviewer HEAD^ "Joe Schmoe"
-        or
-        git-add-reviewer -i trunk
-
-        Fixes <http://webkit.org/b/71419> Would like an easy way to add reviewer names to existing
-        git commits
-
-        Reviewed by Sam Weinig.
-
-        * Scripts/git-add-reviewer: Added.
-        (top level): Parse options, check that the working tree is clean, then run in either
-        interactive or non-interactive mode as appropriate.
-        (interactive): Write out a temp file that contains each commit with "NOBODY" next to it and
-        open it in the user's editor. The user can replace "NOBODY" with reviewer names. When the
-        editor exits, we check out the commit just before the earliest one we're modifying. Then
-        for each commit, we check it out, update the reviewer, and amend the commit to contain the
-        new reviewer. Finally, we update the branch that was originally checked out to point to the
-        last amended commit.
-        (nonInteractive): Check out the commit to modify, write the current commit message to the
-        MERGE_MSG file so addReviewer will update it, add the reviewer to the ChangeLog(s), amend
-        the commit, and rebase the original branch on top of the amended commit. (usage): Print out
-        a usage message and exit.
-        (requireCleanWorkTree): Do the same steps git-rebase does to ensure that the working tree
-        and index are clean.
-        (fail): Print out the specified error message, if any, and return false. This function is
-        used as a return value in various error cases throughout the script.
-        (cherryPick): Cherry-pick the specified commit and return 1 if we succeeded.
-        (addReviewer): Add the specified reviewer to all the ChangeLogs modified in this commit, and
-        to .git/MERGE_MSG, which will be used as the commit message for the next commit.
-        (commit): Call git-commit and use .git/MERGE_MSG as the commit message.
-
-        (addReviewerToChangeLog):
-        (addReviewerToCommitMessage):
-        These just call through to addReviewerToFile.
-
-        (addReviewerToFile): Read in the file, replacing any "NOBODY" text with the reviewer name(s)
-        and replacing "Reviewed" with "Rubber-stamped" if specified. Write the resulting text to a
-        temp file, then move the temp file over the original file and stage it for the next commit.
-        (head): Returns the name of the currently-checked-out branch.
-        (isAncestor): Returns true if the first commit is an ancestor of the second.
-        (toCommit): Converts a commitish to a commit ID using git-rev-parse.
-        (changeLogsForCommit): Returns a list of all the ChangeLogs modified in the given commit.
-        (resetToCommit): Checks out the given commit, throwing away any local changes.
-        (writeCommitMessageToFile): Gets the commit message for the current commit and writes it to
-        the specified file.
-        (rebaseOntoHead): Rebases the specified branch onto HEAD.
-        (checkout): Checks out the given commit.
-        (getConfigValue): Reads the specified config variable from git-config.
-
-2011-11-02  Dean Jackson  <dino@apple.com>
-
-        Add ENABLE_CSS_SHADERS flag
-        https://bugs.webkit.org/show_bug.cgi?id=71394
-
-        Reviewed by Sam Weinig.
-
-        * Scripts/build-webkit:
-
-2011-10-31  Eric Seidel  <eric@webkit.org>
-
-        BaselineOptimizer tests should use mocks instead of real Executive/FileSystem objects
-        https://bugs.webkit.org/show_bug.cgi?id=71237
-
-        Reviewed by Adam Barth.
-
-        Calling the static version of factory.get() with proper mocking
-        requires passsing an explict filesystem, executive, etc.
-        So instead, we use a PortFactory instance and pass it a Host pointer.
-        I had to add a MockHost since we'd not needed a non-host tool before now.
-
-        * Scripts/webkitpy/common/checkout/baselineoptimizer.py:
-        * Scripts/webkitpy/common/checkout/baselineoptimizer_unittest.py:
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2011-11-02  Anders Carlsson  <andersca@apple.com>
-
-        Update for the WebKit2 API fixage.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-
-2011-11-02  Anders Carlsson  <andersca@apple.com>
-
-        Fix build.
-
-        Add new functions to the page loader client.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-
-2011-11-02  Dan Bernstein  <mitz@apple.com>
-
-        <rdar://problem/10336700> Add API to get rendered text image without having to select it
-        https://bugs.webkit.org/show_bug.cgi?id=71407
-
-        Reviewed by Simon Fraser.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/mac/RenderedImageFromDOMRange.mm: Added.
-        (-[RenderedImageFromDOMRangeFrameLoadDelegate webView:didFinishLoadForFrame:]):
-        (TestWebKitAPI::TEST):
-
-2011-11-02  Benjamin Poulain  <benjamin@webkit.org>
-
-        Make the main frame's base path more explicit in _drt_descriptionSuitableForTestResult
-        https://bugs.webkit.org/show_bug.cgi?id=71351
-
-        Reviewed by Darin Adler.
-
-        Add the delimiter "/" at the end of the path instead of adding +1 when using
-        the path.
-
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        (-[NSURL _drt_descriptionSuitableForTestResult]):
-
-2011-11-02  Tom Sepez  <tsepez@chromium.org>
-
-        XSSAuditor is silent
-        https://bugs.webkit.org/show_bug.cgi?id=70973
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::didDetectXSS):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate webView:didDetectXSS:]):
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (didDetectXSSForFrame):
-        (-[BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        (WTR::InjectedBundlePage::didDetectXSSForFrame):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-
-2011-11-02  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] REGRESSION: 5 editing tests fail
-        https://bugs.webkit.org/show_bug.cgi?id=71117
-
-        Reviewed by Andreas Kling.
-
-        Make sure that the view is properly focused, in order to get the
-        didBeginEditing DRT calls.
-
-        This requires activating the window (the call will result in a FocusIn
-        event to the window as well as setting QGuiApplication::focusWindow())
-        as well as enabling the focus on the view item. The signature of
-        setFocus has changed to take a boolean.
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::WrapperWindow::handleStatusChanged):
-
-2011-11-02  Matt Falkenhagen  <falken@chromium.org>
-
-        [chromium] Add per-script font preferences support in overridePreference
-        https://bugs.webkit.org/show_bug.cgi?id=71110
-
-        This allows a layout test to do something like:
-
-        // Set standard font for Arabic to Ahem.
-        overridePreference("WebKitStandardFontMap", [ "Arab", "Ahem" ]);
-
-        This should make writing a layout test for per-script fonts easier.
-
-        This change only affects the Chromium DumpRenderTree, but the other
-        platforms should probably also have a similar change eventually.
-
-        Reviewed by Tony Chang.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp: add per-script
-        font preferences to overridePreference
-        (LayoutTestController::cppVariantToWebStringArray):
-        (setFontMap):
-        (LayoutTestController::overridePreference):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (setStandardFontFamilyWrapper):
-        (setFixedFontFamilyWrapper):
-        (setSerifFontFamilyWrapper):
-        (setSansSerifFontFamilyWrapper):
-        (setCursiveFontFamilyWrapper):
-        (setFantasyFontFamilyWrapper):
-        (applyFontMap):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h: add per-script font
-        preference members
-        (WebPreferences::UScriptCodeHashTraits::emptyValue):
-        (WebPreferences::UScriptCodeHashTraits::constructDeletedValue):
-        (WebPreferences::UScriptCodeHashTraits::isDeletedValue):
-
-2011-11-02  Elliot Poger  <epoger@google.com>
-
-        until use_skia=1 by default on mac, default port should be chromium-cg-mac
-        https://bugs.webkit.org/show_bug.cgi?id=71312
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-
-2011-11-02  Stephen Chenney  <schenney@chromium.org>
-
-        printing layout test failures after r98634
-        https://bugs.webkit.org/show_bug.cgi?id=71080
-
-        Reviewed by Kent Tamura
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::paintPagesWithBoundaries): Added transforms invert the CG Bitmap so the coord system
-        matches that for Skia.
-
-2011-11-01  Sam Weinig  <sam@webkit.org>
-
-        Can't complete ChangeLog when using resolve-Changelogs and webkit-tools-completion.sh
-        https://bugs.webkit.org/show_bug.cgi?id=71346
-
-        Reviewed by Dan Bernstein.
-
-        * Scripts/webkit-tools-completion.sh:
-        Add "-o default" which allows for completing files in addition to the word list.
-
-2011-11-02  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt][WK2] Add support for touch event testing to WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=71310
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * WebKitTestRunner/DerivedSources.pro: Build system foo to ensure the ENABLE_TOUCH_EVENTS
-        define works in EventSendingController.idl
-        * WebKitTestRunner/EventSenderProxy.h: Add declarations for Qt implementations of touch
-        handlers.
-        * WebKitTestRunner/InjectedBundle/Bindings/EventSendingController.idl: Add touch functions
-        required by tests.
-        * WebKitTestRunner/InjectedBundle/EventSendingController.cpp: Forward touch messages to the
-        ui process.
-        (WTR::EventSendingController::addTouchPoint):
-        (WTR::EventSendingController::updateTouchPoint):
-        (WTR::EventSendingController::setTouchModifier):
-        (WTR::EventSendingController::touchStart):
-        (WTR::EventSendingController::touchMove):
-        (WTR::EventSendingController::touchEnd):
-        (WTR::EventSendingController::clearTouchPoints):
-        (WTR::EventSendingController::releaseTouchPoint):
-        * WebKitTestRunner/InjectedBundle/EventSendingController.h:
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro: Include features.pri for feature
-        defines.
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::didReceiveSynchronousMessageFromInjectedBundle): Forward incoming
-        touch messages to the EventSenderProxy.
-        * WebKitTestRunner/qt/EventSenderProxyQt.cpp: Implement touch test harness functions.
-        (WTR::EventSenderProxy::EventSenderProxy):
-        (WTR::EventSenderProxy::addTouchPoint):
-        (WTR::EventSenderProxy::updateTouchPoint):
-        (WTR::EventSenderProxy::setTouchModifier):
-        (WTR::EventSenderProxy::touchStart):
-        (WTR::EventSenderProxy::touchMove):
-        (WTR::EventSenderProxy::touchEnd):
-        (WTR::EventSenderProxy::clearTouchPoints):
-        (WTR::EventSenderProxy::releaseTouchPoint):
-        (WTR::EventSenderProxy::sendTouchEvent):
-        * WebKitTestRunner/qt/WebKitTestRunner.pro: Include features.pri for feature defines.
-
-2011-11-01  Sam Weinig  <sam@webkit.org>
-
-        resolve-ChangeLogs --help should be faster.
-
-        Reviewed by Adam Roben.
-
-        * Scripts/resolve-ChangeLogs:
-        (usageAndExit):
-        Add a call to usageAndExit() before doing work to find unmerged changelogs
-        if --help or something illegal is provided on the command line.
-
-2011-11-01  Benjamin Poulain  <bpoulain@apple.com>
-
-        [Mac] _drt_descriptionSuitableForTestResult generate an exception for absolute paths above the main frame
-        https://bugs.webkit.org/show_bug.cgi?id=71342
-
-        Reviewed by Darin Adler.
-
-        [NSURL _drt_descriptionSuitableForTestResult] was generating a NSRangeException due to the call to
-        [NSString substringFromIndex:] with an index out of the string range.
-
-        The source of this path is the test-loading-archive-subresource-null-mimetype.html which load a subresource
-        from the root of the disk.
-        The problem was hidden because the exception are catched when calling the delegate.
-
-        This patch changes _drt_descriptionSuitableForTestResult to return absolute string if the resource is not
-        in a subdirectory of the main frame.
-
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        (-[NSURL _drt_descriptionSuitableForTestResult]):
-
-2011-11-01  Alok Priyadarshi  <alokp@chromium.org>
-
-        [chromium] --enable-hardware-gpu flag is not recognized by run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=71318
-
-        Reviewed by James Robinson.
-        
-        Fixed a typo for --enable-hardware-gpu flag.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2011-11-01  Elliot Poger  <epoger@google.com>
-
-        chromium-gpu port should default to chromium-gpu-mac, not chromium-gpu-cg-mac
-        https://bugs.webkit.org/show_bug.cgi?id=71286
-
-        Reviewed by Stephen White.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-
-2011-11-01  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt][WK2] Fix build of WebKitTestRunner with ELF symbol visibility
-        https://bugs.webkit.org/show_bug.cgi?id=71299
-
-        Reviewed by Andreas Kling.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp: Use the properly exported symbol for the Qt
-        build to enable WebCoreTestSupport::injectInternalsObject.
-        (WTR::InjectedBundlePage::didClearWindowForFrame):
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro: Fix include path to DRTSupportQt
-
-2011-11-01  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        [Qt] Merge common desktop and touch view APIs under a base class.
-        https://bugs.webkit.org/show_bug.cgi?id=71280
-
-        Reviewed by Andreas Kling.
-
-        Remove unneded forwarding logic for TouchWebView since those properties are
-        now in the view just as the desktop web view.
-
-        * MiniBrowser/qt/qml/TouchView.qml:
-
-2011-11-01  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        check-webkit-style: Allow names starting with "_q_".
-        https://bugs.webkit.org/show_bug.cgi?id=70625
-
-        Reviewed by Tor Arne Vestbø.
-
-        Used by the Qt port as the standard prefix for private slots.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-
-2011-11-01  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt][WK2] Fix valgrind error about uninitialized variable
-        https://bugs.webkit.org/show_bug.cgi?id=71273
-
-        Reviewed by Kenneth Christiansen.
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::notify): Initialize isPrimary.
-
-2011-10-31  Adam Roben  <aroben@apple.com>
-
-        Make Leaks Viewer less strict when parsing leaks-related output from NRWT/ORWT
-
-        Fixes <http://webkit.org/b/71258> REGRESSION (r98639): Leaks Viewer doesn't show recent
-        leaky builds
-
-        Reviewed by Anders Carlsson.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/RecentBuildsLoader.js:
-        (RecentBuildsLoader.prototype.start): Relax a regex to gloss over differences in ORWT's vs.
-        NRWT's leaks-related output (i.e., "M total leaks found!" vs. "M total leaks found for a
-        total of N bytes!").
-
-2011-10-31  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] Rename ewk_view_setting_scripts_window_open_{get,set} after r93833
-        https://bugs.webkit.org/show_bug.cgi?id=71228
-
-        Reviewed by Antonio Gomes.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::createNewWindow):
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-
-2011-10-31  Eric Seidel  <eric@webkit.org>
-
-        webkitpy tests depend too much on the user's environment
-        https://bugs.webkit.org/show_bug.cgi?id=71234
-
-        Reviewed by Dirk Pranke.
-
-        This change just makes a bunch of our older tests use
-        more modern mocking to avoid trying to launch processes
-        or read from the user's filesystem during unittesting.
-
-        I found many of these by adding an assert in Executive.run_command
-        that we were not unittesting.  I can't add that assert always
-        as there are some valid uses of Executive during unittesting.
-        Once I fix more of these, I may find a way to add such an assert conditionally.
-
-        * Scripts/webkitpy/common/checkout/baselineoptimizer.py:
-        * Scripts/webkitpy/common/net/credentials_unittest.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-
-2011-10-31  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        [Qt] MiniBrowser doesn't resize as the size is always overridden
-        https://bugs.webkit.org/show_bug.cgi?id=71212
-
-        Reviewed by Simon Hausmann.
-
-        Remove call overriden the size.
-
-        * MiniBrowser/qt/main.cpp:
-        (main):
-
-2011-10-30  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r98819, r98823, r98825, and r98830.
-        http://trac.webkit.org/changeset/98819
-        http://trac.webkit.org/changeset/98823
-        http://trac.webkit.org/changeset/98825
-        http://trac.webkit.org/changeset/98830
-        https://bugs.webkit.org/show_bug.cgi?id=71199
-
-        Broke Chromium Windows bot (Requested by rniwa on #webkit).
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        * Scripts/webkitpy/layout_tests/port/google_chrome_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/win.py:
-
-2011-10-30  Eric Seidel  <eric@webkit.org>
-
-        new-run-webkit-tests is locale dependent
-        https://bugs.webkit.org/show_bug.cgi?id=68691
-
-        Unreviewed.
-
-        This is a temporary hack until someone from the cr-win port
-        can take a look and determine which environment variable
-        lighttpd is missing.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-
-2011-10-30  Eric Seidel  <eric@webkit.org>
-
-        new-run-webkit-tests is locale dependent
-        https://bugs.webkit.org/show_bug.cgi?id=68691
-
-        Unreviewed.  I would have preferred to have this reviewed,
-        but relevant reviewers are asleep and bots are broken.
-
-        This was a regression from moving to a clean environment.
-        ChromiumWin (and possibly other ports), need the "PATH"
-        environment copied over.  This wasn't caught in my testing
-        because although we had unittests to cover this, they
-        weren't being run on anything but windows.  The vast majority
-        of this change is just fixing the unittests to use our
-        modern MockFileSystem/MockUser/MockExecutive so they can
-        be run on any system (and removing the platform checks from
-        the unittests so they are run everywhere).
-
-        The actual fix is the single line "PATH" string added to base.py.
-        The rest of this change is just fixing the Chromium port unittests
-        to run on all systems (including changing the Chromium port to
-        use FileSystem.path_to_module instead of __file__).
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/google_chrome_unittest.py:
-
-2011-10-29  Eric Seidel  <eric@webkit.org>
-
-        new-run-webkit-tests is locale dependent
-        https://bugs.webkit.org/show_bug.cgi?id=68691
-
-        Unreviewed.
-
-        Fix the Qt port and unittest the function so we don't break it again.
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-
-2011-10-29  Eric Seidel  <eric@webkit.org>
-
-        new-run-webkit-tests is locale dependent
-        https://bugs.webkit.org/show_bug.cgi?id=68691
-
-        Reviewed by Adam Barth.
-
-        Make NRWT use a clean environment just like ORWT did.
-        I've manually validated that NRWT now copies over
-        the same environment variables that ORWT did.
-        This new code is exercised by existing setup_environ_for_server tests.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/win.py:
-
-2011-10-29  Eric Seidel  <eric@webkit.org>
-
-        new-run-webkit-tests: MASTER BUG: Switch all webkit.org bots over
-        https://bugs.webkit.org/show_bug.cgi?id=34984
-
-        Reviewed by Adam Barth.
-
-        Move run-webkit-tests from using a white-list of supported NRWT ports
-        to a blacklist of ports requiring ORWT.
-
-        I've also added the ability to opt-in to parallel testing on a per-port basis.
-
-        With these changes I'm going to officially declare this bug dead and
-        work on remaining polish issues and individual developer complaints.
-
-        * Scripts/run-webkit-tests:
-        (useNewRunWebKitTests):
-        (platformIsReadyForParallelTesting):
-
-2011-10-29  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r98780.
-        http://trac.webkit.org/changeset/98780
-        https://bugs.webkit.org/show_bug.cgi?id=71173
-
-        Broke Qt bots (Requested by rniwa on #webkit).
-
-        * Scripts/run-webkit-tests:
-        (useNewRunWebKitTests):
-
-2011-10-28  Rafael Weinstein  <rafaelw@chromium.org>
-
-        webkit.py gdb visualizer is broken after change to StringImpl
-        https://bugs.webkit.org/show_bug.cgi?id=71154
-
-        Reviewed by Tony Chang.
-
-        r98624 changed StringImpl m_data to m_data32. This changes updates
-        webkit.py to match.
-
-        * gdb/webkit.py:
-
-2011-10-28  Joseph Pecoraro  <pecoraro@apple.com>
-
-        Fix typo in check-for-inappropriate-objc-class-names
-        https://bugs.webkit.org/show_bug.cgi?id=71144
-
-        Reviewed by Dan Bernstein.
-
-        * Scripts/check-for-inappropriate-objc-class-names:
-
-2011-10-28  Sadrul Habib Chowdhury  <sadrul@chromium.org>
-
-        Add support for sending scroll-update events from EventSender.
-        https://bugs.webkit.org/show_bug.cgi?id=66272
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::EventSender):
-        (EventSender::reset):
-        (EventSender::gestureScrollUpdate):
-        (EventSender::gestureEvent):
-        * DumpRenderTree/chromium/EventSender.h:
-
-2011-10-28  Eric Seidel  <eric@webkit.org>
-
-        new-run-webkit-tests: MASTER BUG: Switch all webkit.org bots over
-        https://bugs.webkit.org/show_bug.cgi?id=34984
-
-        Reviewed by Adam Barth.
-
-        Move run-webkit-tests from using a white-list of supported NRWT ports
-        to a blacklist of ports requiring ORWT.
-
-        I've also added the ability to opt-in to parallel testing on a per-port basis.
-
-        With these changes I'm going to officially declare this bug dead and
-        work on remaining polish issues and individual developer complaints.
-
-        * Scripts/run-webkit-tests:
-        (useNewRunWebKitTests):
-        (platformIsReadyForParallelTesting):
-
-2011-10-28  Eric Seidel  <eric@webkit.org>
-
-        NRWT crashes when parsing leaks output due to UTF-8 decoding error
-        https://bugs.webkit.org/show_bug.cgi?id=71112
-
-        Reviewed by Adam Barth.
-
-        Use read_binary_file instead of read_text_file and add a test
-        case with some non-utf8 data to make sure we don't break this in the future.
-
-        * Scripts/webkitpy/layout_tests/port/leakdetector.py:
-        * Scripts/webkitpy/layout_tests/port/leakdetector_unittest.py:
-
-2011-10-28  David Levin  <levin@chromium.org>
-
-        watchlist should not CC the bug reporter
-        https://bugs.webkit.org/show_bug.cgi?id=71079
-
-        Reviewed by Adam Barth.
-
-        Tested by test_apply_watch_list_local (webkitpy.tool.steps.applywatchlist_unittest.ApplyWatchListTest)
-        which remains upchanged and thus verifies that the reporter doesn't get added to the cc line.
-
-        * Scripts/webkitpy/tool/commands/applywatchlistlocal_unittest.py: Add the new email in the output.
-        * Scripts/webkitpy/tool/mocktool.py: Change the reporter and make them one of the people to cc.
-        * Scripts/webkitpy/tool/steps/applywatchlist.py: Remove the reporter from the cc list.
-
-2011-10-28  Zoltan Horvath  <zoltan@webkit.org>
-
-        Add watchlist for QtWebKit2 API and for WK2's Qt specific files.
-        https://bugs.webkit.org/show_bug.cgi?id=71116
-
-        Reviewed by David Levin.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2011-10-28  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Adapt to QSG* to QQuick* API change in qtdeclarative
-        https://bugs.webkit.org/show_bug.cgi?id=70494
-
-        Reviewed by Kenneth Christiansen.
-
-        Use QQuick* instead of QSG* as well as QStandardPaths
-        instead of QDesktopLocation.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        * MiniBrowser/qt/BrowserWindow.h:
-        * QtTestBrowser/cookiejar.cpp:
-        (TestBrowserCookieJar::TestBrowserCookieJar):
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::setDiskCache):
-        * WebKitTestRunner/PlatformWebView.h:
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::WrapperWindow::WrapperWindow):
-        (WTR::WrapperWindow::handleStatusChanged):
-
-2011-10-28  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        [Qt] Fix the Ctrl behavior for touch mocking in MiniBrowser.
-        https://bugs.webkit.org/show_bug.cgi?id=71106
-
-        Reviewed by Simon Hausmann.
-
-        Holding Ctrl allows multiple touch points to be held on the screen using
-        mouse buttons. It would previously only prevent TouchReleased to be sent
-        and would require another MouseButtonRelease to be sent without holding Ctrl.
-
-        This patch makes sure that all held touch points are released when Ctrl
-        is released if MouseButtonRelease was received.
-        It also removes the touch QEvent::Type logic since it's currently handled
-        by QtGui by observing the modified touch points.
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::notify):
-        (MiniBrowserApplication::sendTouchEvent):
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-
-2011-10-28  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        [Qt] MiniBrowser needs a -window-size option
-        https://bugs.webkit.org/show_bug.cgi?id=70999
-
-        Reviewed by Simon Hausmann.
-
-        Add an -window-size option useful for testing the viewport handling.
-        Also clean up the option handling.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::handleUserOptions):
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-        (WindowOptions::WindowOptions):
-        (WindowOptions::setRequestedWindowSize):
-        (WindowOptions::requestedWindowSize):
-        * MiniBrowser/qt/utils.cpp:
-        (takeOptionValue):
-        * MiniBrowser/qt/utils.h:
-
-2011-10-28  Jochen Eisinger  <jochen@chromium.org>
-
-        Add allowScriptFromSource callback to FrameLoaderClient
-        https://bugs.webkit.org/show_bug.cgi?id=71013
-
-        Reviewed by Darin Fisher.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setScriptsAllowed):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/WebPermissions.cpp:
-        (WebPermissions::allowScriptFromSource):
-        (WebPermissions::setScriptsAllowed):
-        (WebPermissions::reset):
-        * DumpRenderTree/chromium/WebPermissions.h:
-
-2011-10-28  Alexandru Chiculita  <achicu@adobe.com>
-
-        Added myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-10-27  Adam Barth  <abarth@webkit.org>
-
-        Remove WinCairo from the set of core builders.  WinCairo rarely builds
-        and is never green.
-
-        Rubber-stamped by Eric Seidel.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-
-2011-10-27  Yuta Kitamura  <yutak@chromium.org>
-
-        WebSocket: Connecting to localhost:8880 takes one second on Windows
-        https://bugs.webkit.org/show_bug.cgi?id=64788
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/servers/websocket_server.py:
-        Bind to "localhost" instead of "127.0.0.1" to let pywebsocket listen on both
-        IPv4 and IPv6 addresses. This should prevent the test reserved-opcodes.html
-        from timing out on Windows, because this test tries to open a lot of
-        connections to localhost and each attempt takes one second to fall back from
-        IPv6 to IPv4 on Windows (I have no idea why Windows works like this, though).
-
-2011-10-27  Adam Barth  <abarth@webkit.org>
-
-        Dis-integrate run-bindings-tests with webkitpy
-        https://bugs.webkit.org/show_bug.cgi?id=71092
-
-        Reviewed by Ryosuke Niwa.
-
-        These tests aren't really adding any value.
-
-        * Scripts/webkitpy/common/config/ports.py:
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        * Scripts/webkitpy/tool/steps/runtests_unittest.py:
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-
-2011-10-27  Eric Seidel  <eric@webkit.org>
-
-        REGRESSION (r98639): NRWT crashes when parsing leaks output
-        https://bugs.webkit.org/show_bug.cgi?id=71087
-
-        Unreviewed.  Sadly we have no good way to test logging.
-
-        * Scripts/webkitpy/layout_tests/port/leakdetector.py:
-
-2011-10-27  David Levin  <levin@chromium.org>
-
-        Test expectation errors should include the file name and platform in both the log and exception info.
-        https://bugs.webkit.org/show_bug.cgi?id=71067
-
-        Reviewed by Ojan Vafai.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-
-2011-10-27  Eric Seidel  <eric@webkit.org>
-
-        new-run-webkit-tests doesn't understand --qt or --gtk
-        https://bugs.webkit.org/show_bug.cgi?id=63970
-
-        Reviewed by Ojan Vafai.
-
-        Add support for --qt and --gtk to NRWT.
-        I also removed some incorrect comments in the option parsing
-        code (options which we already implement, but said we didn't)
-        as well as moved --platform parsing out of the "results_options"
-        section into the top configuration section.
-
-        Now run-webkit-tests no longer needs NRWT-specific code for passing
-        --platform=qt, etc.
-
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-10-27  Eric Seidel  <eric@webkit.org>
-
-        REGRESSION (NRWT): build.webkit.org doesn't show the total number of leaks found during a test run on the Leaks bot
-        https://bugs.webkit.org/show_bug.cgi?id=66227
-
-        Reviewed by Adam Roben.
-
-        I believe this should fix the bug.
-
-        * Scripts/run-webkit-tests: make NRWT default for --leaks
-        * Scripts/webkitpy/layout_tests/port/leakdetector.py:
-        (LeakDetector._parse_leaks_output): removed the (unneeded) process_pid argument, and made the regexp use named groups (even though we don't ever grab them by name)
-        (LeakDetector.count_total_bytes_and_unique_leaks): renamed from parse_leak_files
-        (LeakDetector.count_total_leaks): new file (the guts of this change) which is used to re-parse the leaks output during the summarize leaks phase.
-        * Scripts/webkitpy/layout_tests/port/leakdetector_unittest.py:
-        Changes to reflect the rename of count_total_bytes_and_unique_leaks and a new test for count_total_leaks.
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        Use count_total_leaks to spit out the total leak count like ORWT did, and remove the FIXME on the subject.
-
-2011-10-27  Stephen Chenney  <schenney@chromium.org>
-
-        [Chromium] Need setPrinting
-        https://bugs.webkit.org/show_bug.cgi?id=46152
-
-        Reviewed by Hajime Morita.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController): Added logic for handling setPrinting.
-        (LayoutTestController::reset): Clearing flags for setPrinting.
-        (LayoutTestController::setPrinting): Set flags for setPrinting.
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController::setIsPrinting): Added the setPrinting methods and flags.
-        (LayoutTestController::isPrinting): Method to return the setPrinting status.
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (dumpFramesAsPrintedText): A method for creating a text dump in printed layout.
-        (TestShell::dump): Modified to dump setPrinting-specific output.
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::paintPagesWithBoundaries): Handling for pixel tests when setPrinting is
-        active.
-        * DumpRenderTree/chromium/WebViewHost.h: Prototype for paintPagesWithBoundaries.
-
-2011-10-27  Sam Weinig  <sam@webkit.org>
-
-        Add allowsPlugIns property to WKBrowsingContextGroup
-        https://bugs.webkit.org/show_bug.cgi?id=70987
-
-        Reviewed by Anders Carlsson.
-
-        * TestWebKitAPI/Tests/WebKit2ObjC/WKBrowsingContextGroupTest.mm:
-        Add basic test for WKBrowsingContextGroup.allowsPlugIns. 
-
-2011-10-27  Adam Roben  <aroben@apple.com>
-
-        Test WKBundlePageGetBackingScaleFactor
-
-        Test for <http://webkit.org/b/71025> <rdar://problem/10355037> REGRESSION (r97191): Clients
-        can't reliably determine the scale factor of snapshots returned via
-        WKBundlePageCreateSnapshot* API
-
-        Reviewed by Sam Weinig.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj: Added new files.
-
-        * TestWebKitAPI/Tests/WebKit2/mac/GetBackingScaleFactor.mm: Added.
-        (TestWebKitAPI::didReceiveMessageFromInjectedBundle): Record the passed-back scale factor.
-        (TestWebKitAPI::setInjectedBundleClient): Hook up our didReceiveMessage callback.
-        (TestWebKitAPI::createWindow): Conjure up a window.
-        (TestWebKitAPI::TEST): Ask the injected bundle code to call the new
-        WKBundlePageGetBackingScaleFactor API when the WKView is in windows with various scale
-        factors and when using a custom scale factor, and check that we get those same scale factors
-        back.
-
-        * TestWebKitAPI/Tests/WebKit2/mac/GetBackingScaleFactor_Bundle.mm: Added.
-        (TestWebKitAPI::GetBackingScaleFactorTest::GetBackingScaleFactorTest): Just initialize our
-        members.
-        (TestWebKitAPI::GetBackingScaleFactorTest::didCreatePage): Store the page for later.
-        (TestWebKitAPI::GetBackingScaleFactorTest::didReceiveMessage): Get the backing scale factor
-        from the page using the new API and send it back.
-
-2011-10-27  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt][WK2] MiniBrowser crashes when started with 0 arguments
-
-        Rubber-stamped by Simon Hausmann.
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::handleUserOptions):
-        Fix typo error.
-
-2011-10-27  Takashi Toyoshima  <toyoshim@chromium.org>
-
-        [WebSocket] update pywebsocket to 0.7.
-        https://bugs.webkit.org/show_bug.cgi?id=70992
-
-        Reviewed by Kent Tamura.
-
-        pywebsocket 0.7 fixed the bug on dual stack support on OS X.
-
-        * Scripts/webkitpy/thirdparty/__init__.py:
-
-2011-10-27  Elliot Poger  <epoger@google.com>
-
-        make lion observe MAC lines in test_expectations.txt
-        https://bugs.webkit.org/show_bug.cgi?id=70941
-
-        Reviewed by Ojan Vafai.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-
-2011-10-27  John Knottenbelt  <jknotten@chromium.org>
-
-        [Chromium] Allow DRT to be built without notifications enabled.
-        https://bugs.webkit.org/show_bug.cgi?id=70919
-
-        Reviewed by Tony Gentilcore.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::grantDesktopNotificationPermission):
-        (LayoutTestController::simulateDesktopNotificationClick):
-        * DumpRenderTree/chromium/NotificationPresenter.cpp:
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::resetTestController):
-
-2011-10-21  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        [Qt] Improve command line arguments handling for MiniBrowser.
-        https://bugs.webkit.org/show_bug.cgi?id=70616
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        - Use two dashes for word arguments.
-        - Return with an error when an unsupported argument is given.
-        - Allow the URL to be placed before option arguments.
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (printHelp):
-        (MiniBrowserApplication::handleUserOptions):
-        * MiniBrowser/qt/utils.cpp:
-        (takeOptionFlag):
-        (takeOptionValue):
-        * MiniBrowser/qt/utils.h:
-
-2011-10-27  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] NRWT doesn't work on qt-mac platform
-        https://bugs.webkit.org/show_bug.cgi?id=64445
-
-        Reviewed by Adam Barth.
-
-        * Scripts/run-webkit-tests: Switch qt-mac platform to NRWT.
-        (useNewRunWebKitTests):
-        * Scripts/webkitpy/layout_tests/port/qt.py: Fix library path on Mac.
-
-2011-10-26  Sam Weinig  <sam@webkit.org>
-
-        Add initial setting to WKBrowsingContextGroup
-        https://bugs.webkit.org/show_bug.cgi?id=70942
-
-        Reviewed by Anders Carlsson.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2ObjC/WKBrowsingContextGroupTest.mm: Added.
-        Add basic test that setting the javaScriptEnabled setting takes. It is not
-        possible to test its effect quite yet.
-
-2011-10-26  Alejandro G. Castro  <alex@igalia.com>
-
-        [GTK] [WK2] Add WebKit2 distcheck support
-        https://bugs.webkit.org/show_bug.cgi?id=70933
-
-        Reviewed by Martin Robinson.
-
-        * WebKitTestRunner/GNUmakefile.am: Add missing files to the
-        sources and EXTRA_DIST.
-
-2011-10-26  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt][WK2] Fix failing assertion on startup of MiniBrowser -touch.
-
-        Reviewed by Tor Arne Vestbø.
-
-        We're using QScroller since r98460, which requires QWidget/QApplication. So
-        use QApplication and QtWidgets for the time being.
-
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::MiniBrowserApplication):
-        (MiniBrowserApplication::notify):
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-
-2011-10-25  Zeno Albisser  <zeno.albisser@nokia.com>
-
-        [Qt][WK2] Rewrite MiniBrowser in QML
-        https://bugs.webkit.org/show_bug.cgi?id=70315
-
-        Add the first QML based implementation of MiniBrowser.
-
-        Patch by Jocelyn Turcotte <jocelyn.turcotte@nokia.com>,
-                 Zeno Albisser <zeno.albisser@nokia.com>
-
-        Reviewed by Tor Arne Vestbø.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::webView):
-        (BrowserWindow::load):
-        (BrowserWindow::keyPressEvent):
-        (BrowserWindow::~BrowserWindow):
-        * MiniBrowser/qt/BrowserWindow.h:
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * MiniBrowser/qt/MiniBrowser.qrc:
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::MiniBrowserApplication):
-        (MiniBrowserApplication::handleUserOptions):
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-        (WindowOptions::WindowOptions):
-        * MiniBrowser/qt/UrlLoader.cpp:
-        (UrlLoader::UrlLoader):
-        * MiniBrowser/qt/icons/next.png: Added.
-        * MiniBrowser/qt/icons/previous.png: Added.
-        * MiniBrowser/qt/icons/refresh.png: Added.
-        * MiniBrowser/qt/icons/stop.png: Added.
-        * MiniBrowser/qt/main.cpp:
-        (main):
-        * MiniBrowser/qt/qml/BrowserWindow.qml: Added.
-
-2011-10-26  Zeno Albisser  <zeno.albisser@nokia.com>
-
-        [Qt][WK2] Remove QtWidgets dependency in MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=70529
-
-        Remove obsolete code for a new QML based implementation
-        of MiniBrowser.
-        Change BrowserWindow to derive from QSGView instead of
-        QMainWindow. QSGView is used as a top level window that
-        provides the container for placing QML content.
-        Make MiniBrowserApplication derive from QGuiApplication
-        instead of QApplication.
-
-        Patch by Jocelyn Turcotte <jocelyn.turcotte@nokia.com>,
-                 Zeno Albisser <zeno.albisser@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        * MiniBrowser/qt/BrowserView.cpp: Removed.
-        * MiniBrowser/qt/BrowserView.h: Removed.
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::load):
-        (BrowserWindow::screenshot):
-        (BrowserWindow::loadURLListFromFile):
-        (BrowserWindow::updateUserAgentList):
-        (BrowserWindow::~BrowserWindow):
-        * MiniBrowser/qt/BrowserWindow.h:
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::MiniBrowserApplication):
-        (MiniBrowserApplication::notify):
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-        * MiniBrowser/qt/UrlLoader.cpp:
-        (UrlLoader::UrlLoader):
-        * MiniBrowser/qt/main.cpp:
-
-2011-10-25  Zeno Albisser  <zeno.albisser@nokia.com>
-
-        [Qt][WK2] Remove QAction from MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=70525
-
-        In order to rewrite MiniBrowser in QML we need a suitable
-        mechanism for triggering navigation actions.
-        Due to the QtWidgets dependency of QAction the current
-        solution is not suitable anymore. Therefore we introduce
-        invokable methods and export properties in QWebNavigationController.
-
-        Patch by Jocelyn Turcotte <jocelyn.turcotte@nokia.com>,
-                 Zeno Albisser <zeno.albisser@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        * MiniBrowser/qt/BrowserView.cpp:
-        * MiniBrowser/qt/BrowserView.h:
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-
-2011-10-26  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        [EFL] Unregister viewport,changed signal in EWebLauncher.
-        https://bugs.webkit.org/show_bug.cgi?id=70478
-
-        Reviewed by Eric Seidel.
-
-        'viewport,changed' signal was registered by EWebLauncher in order to test viewport meta tag.
-        However, it sets wrong layout to some web sites which have viewport meta tag. Because, host pc
-        doesn't support proper DPI value though viewport is using DPI value to compute layout values.
-        This signal is for mobile device.
-
-        * EWebLauncher/main.c:
-        (browserCreate):
-
-2011-10-25  Anders Carlsson  <andersca@apple.com>
-
-        Plug-ins have no way to find out when the device scale factor changes
-        https://bugs.webkit.org/show_bug.cgi?id=67226
-        <rdar://problem/10048276>
-
-        Reviewed by Sam Weinig.
-
-        Keep a cached copy of the contents scale and update it when it changes.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/mac/ContentsScaleFactor.cpp:
-        (ContentsScaleFactor::ContentsScaleFactor):
-        (ContentsScaleFactor::cachedContentsScaleFactor):
-        (ContentsScaleFactor::ScriptableObject::hasProperty):
-        (ContentsScaleFactor::ScriptableObject::getProperty):
-        (ContentsScaleFactor::NPP_New):
-        (ContentsScaleFactor::NPP_SetValue):
-
-2011-10-25  Sam Weinig  <sam@webkit.org>
-
-        Add WKBrowsingContextLoadDelegateTest test for a failed load
-        https://bugs.webkit.org/show_bug.cgi?id=70859
-
-        Reviewed by Anders Carlsson.
-
-        * TestWebKitAPI/Tests/WebKit2ObjC/WKBrowsingContextLoadDelegateTest.mm:
-        (TEST_F): Add TEST_F(WKBrowsingContextLoadDelegateTest, SimpleLoadFail).
- 
-        (-[SimpleLoadFailDelegate browsingContextControllerDidFailProvisionalLoad:withError:]):
-        Test that we are getting the correct NSError code and domain.
-
-2011-10-25  Erik Arvidsson  <arv@chromium.org>
-
-        JS Test Harness: Make successfullyParsed optional
-        https://bugs.webkit.org/show_bug.cgi?id=70784
-
-        Reviewed by Ojan Vafai.
-
-        * Scripts/make-new-script-test:
-        (writeTestFile): Update the template for script tests.
-
-2011-10-25  Anders Carlsson  <andersca@apple.com>
-
-        Plug-ins have to use JavaScript to find out the current device scale factor
-        https://bugs.webkit.org/show_bug.cgi?id=67225
-        <rdar://problem/10048258>
-
-        Reviewed by Darin Adler.
-
-        Add a plug-in test for getting the contents scale factor.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/TestNetscapePlugIn/Tests/mac/ContentsScaleFactor.cpp: Added.
-        (ContentsScaleFactor::ContentsScaleFactor):
-        (ContentsScaleFactor::contentsScaleFactor):
-        (ContentsScaleFactor::ScriptableObject::hasProperty):
-        (ContentsScaleFactor::ScriptableObject::getProperty):
-        (ContentsScaleFactor::ScriptableObject::pluginTest):
-        (ContentsScaleFactor::NPP_GetValue):
-
-2011-10-25  Sam Weinig  <sam@webkit.org>
-
-        Flesh out WKBrowsingContextLoadDelegate a bit
-        https://bugs.webkit.org/show_bug.cgi?id=70846
-
-        Reviewed by Anders Carlsson.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2ObjC: Added.
-        * TestWebKitAPI/Tests/WebKit2ObjC/WKBrowsingContextLoadDelegateTest.mm: Added.
-        (WKBrowsingContextLoadDelegateTest::WKBrowsingContextLoadDelegateTest):
-        (WKBrowsingContextLoadDelegateTest::SetUp):
-        (WKBrowsingContextLoadDelegateTest::TearDown):
-        (-[SimpleLoadDelegate browsingContextControllerDidFinishLoad:]):
-        (TEST_F):
-        Add basic testing for WKBrowsingContextLoadDelegate.
-
-2011-10-25  Alexey Proskuryakov  <ap@apple.com>
-
-        make-script-test-wrappers should not look outside fast/js
-        https://bugs.webkit.org/show_bug.cgi?id=66357
-
-        Reviewed by Maciej Stachowiak.
-
-        * Scripts/make-script-test-wrappers: Don't look for template files everywhere, only support
-        fast/js.
-
-2011-10-25  Adam Barth  <abarth@webkit.org>
-
-        Add a --make option to update-webkit to engage the Makefile-based build system
-        https://bugs.webkit.org/show_bug.cgi?id=70847
-
-        Reviewed by Dimitri Glazkov.
-
-        I can never remember what crazy environment variables I'm supposed to
-        set to tell GYP what to do.
-
-        * Scripts/update-webkit:
-
-2011-10-25  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] DRT: Force layout when sending events.
-        https://bugs.webkit.org/show_bug.cgi?id=70357
-
-        Reviewed by Antonio Gomes.
-
-        Some tests such as editing/input/page-up-down-scrolls.html rely on the
-        scrollbars being properly set up during the onload events.
-        Document::implicitClose(), however, dispatches the onload events before
-        calling FrameView::layout(), so these tests usually fail.
-
-        We now do the same as the GTK+ and Chromium ports and manually force the
-        layout when dispatching events.
-
-        * DumpRenderTree/efl/EventSender.cpp:
-        (sendMouseEvent):
-        (keyDownCallback):
-
-2011-10-25  Daniel Bates  <dbates@rim.com>
-
-        build-webkit --clean should only clean build directory for CMake-based ports
-        https://bugs.webkit.org/show_bug.cgi?id=70834
-
-        Reviewed by Antonio Gomes.
-
-        Currently build-webkit --clean both cleans the build directory and builds WebKit for
-        CMake-based ports. Instead, build-webkit --clean should only clean up the build directory
-        as per its description in the usage message of build-webkit.
-
-        * Scripts/webkitdirs.pm:
-        (buildCMakeProjectOrExit):
-
-2011-10-25  Anna Cavender  <annacc@chromium.org>
-
-        Enable running of track layout tests for Chromium
-        https://bugs.webkit.org/show_bug.cgi?id=70803
-
-        Reviewed by Adam Barth.
-        
-        Make DumpRenderTree/TestShell always run with track enabled
-        (equivalent of --enable-video-track).
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-
-2011-10-25  Vamshikrishna Yellenki  <vamshi@motorola.com>
-
-        [WK2]Main window never gets focus using TAB key in WebKit2 GTK+.
-        https://bugs.webkit.org/show_bug.cgi?id=70603
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (focus):
-        (unFocus):
-        (browserWindowUIClientInit):
-
-2011-10-25  Dan Bernstein  <mitz@apple.com>
-
-        <rdar://problem/10337033> DOMRangeOfString:relativeTo:options has problems with -webkit-user-select: none
-
-        Reviewed by Adam Roben.
-
-        * TestWebKitAPI/Tests/mac/DOMRangeOfString.mm:
-        (TestWebKitAPI::TEST):
-
-2011-10-25  Eric Seidel  <eric@webkit.org>
-
-        WIN: editing tests fail under NRWT because editing delegate callbacks aren't stripped
-        https://bugs.webkit.org/show_bug.cgi?id=64471
-
-        Reviewed by Adam Roben.
-
-        Speculative fix.
-
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        * Scripts/webkitpy/layout_tests/port/win_unittest.py:
-
-2011-10-24  Mikhail Naganov  <mnaganov@chromium.org>
-
-        Fix bug summary when rolling Chromium DEPS to LKGR.
-        https://bugs.webkit.org/show_bug.cgi?id=69917
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        * Scripts/webkitpy/tool/bot/sheriff.py:
-        * Scripts/webkitpy/tool/commands/roll.py:
-        * Scripts/webkitpy/tool/commands/roll_unittest.py:
-
-2011-10-24  Ivan Briano  <ivan@profusion.mobi>
-
-        [EFL] Build fix. Add include path to find npapi.h
-        https://bugs.webkit.org/show_bug.cgi?id=70730
-
-        Unreviewed build fix.
-
-        * DumpRenderTree/efl/CMakeLists.txt: Add include path for npapi.h
-
-2011-10-24  Eric Seidel  <eric@webkit.org>
-
-        Plugin tests are failing after switching WK2 to NRWT
-        https://bugs.webkit.org/show_bug.cgi?id=70760
-
-        Reviewed by Simon Fraser.
-
-        Perpetuate this horrible hack.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-10-24  Eric Seidel  <eric@webkit.org>
-
-        NRWT doesn't support ORWT's --root option, but should
-        https://bugs.webkit.org/show_bug.cgi?id=70416
-
-        Reviewed by Dirk Pranke.
-
-        Add support for ORWT's --root option which is used for
-        running tests with a nightly build of WebKit.
-
-        * Scripts/old-run-webkit-tests:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-         - webkit_build_path was never called by any code, removed.
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-10-24  David Levin  <levin@chromium.org>
-
-        check-webkit-style complains about WEBKIT_EXPORT in test/WebUnitTests.h
-        https://bugs.webkit.org/show_bug.cgi?id=70747
-
-        Reviewed by Tony Chang.
-
-        * Scripts/webkitpy/style/checkers/cpp.py: Allow WEBKIT_EXPORT in tests dir.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Corresponding test.
-
-2011-10-24  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt][WK2] Crash when running pixel tests
-        https://bugs.webkit.org/show_bug.cgi?id=70725
-
-        Reviewed by Chang Shu.
-
-        * WebKitTestRunner/qt/TestInvocationQt.cpp:
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-
-2011-10-24  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Remove g_thread_init() calls
-        https://bugs.webkit.org/show_bug.cgi?id=70717
-
-        Reviewed by Xan Lopez.
-
-        With newer glib it's not needed anymore and with previous versions
-        it was already called by g_type_init().
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (main):
-        * GtkLauncher/main.c:
-        (main):
-        * MiniBrowser/gtk/main.c:
-        (main):
-
-2011-10-24  Alejandro G. Castro  <alex@igalia.com>
-
-        [WK2] [GTK] WebKitTestRunner crashes with heap corruption
-        https://bugs.webkit.org/show_bug.cgi?id=69403
-
-        We did not added autotoolsconfig.h to the config.h file and we
-        were adding Platform.h without the config.h in the
-        WebKitTestRunnerPrefix.h. Added the autotoolsconfig.h include in
-        the Prefix file.
-
-        Reviewed by Martin Robinson.
-
-        * WebKitTestRunner/WebKitTestRunnerPrefix.h:
-
-2011-10-23  Tomasz Morawski  <t.morawski@samsung.com>
-
-        [EFL] Remove unused code from EWebLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=70590
-
-        Reviewed by Andreas Kling.
-
-        Removed unused function on_closeWindow from EWebLauncher
-
-        * EWebLauncher/main.c:
-
-2011-10-23  Luke Macpherson   <macpherson@chromium.org>
-
-        Add watchlist for WebCore/css and put myself on it.
-        https://bugs.webkit.org/show_bug.cgi?id=70701
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/config/watchlist:
-        Add watchlist for WebCore/css and put myself on it.
-
-2011-10-23  Kaustubh Atrawalkar  <kaustubh@motorola.com>
-
-        [GTK] Implement KeyDown function for WebKit2 EventSender.
-        https://bugs.webkit.org/show_bug.cgi?id=69410
-
-        Reviewed by Martin Robinson.
-
-        Implement the KeyDown function on Gtk platform.
-
-        * WebKitTestRunner/GNUmakefile.am:
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::TestController):
-        (WTR::TestController::didReceiveSynchronousMessageFromInjectedBundle):
-        * WebKitTestRunner/gtk/EventSenderProxyGtk.cpp: Added.
-        (WTR::EventSenderProxy::EventSenderProxy):
-        (WTR::dispatchEvent):
-        (WTR::getModifiers):
-        (WTR::getGDKKeySymForKeyRef):
-        (WTR::EventSenderProxy::keyDown):
-
-2011-10-22  Zan Dobersek  <zandobersek@gmail.com>
-
-        [WK2][GTK] run-launcher script fails after testing WK2 tests
-        https://bugs.webkit.org/show_bug.cgi?id=70676
-
-        Reviewed by Andreas Kling.
-
-        Pass the '-2' flag instead of '--webkit-test-runner' when executing
-        run-launcher script after testing with WebKitTestRunner.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-
-2011-10-22  Zan Dobersek  <zandobersek@gmail.com>
-
-        [WK2][GTK] Missing env variables cause WKTR to crash
-        https://bugs.webkit.org/show_bug.cgi?id=70674
-
-        Reviewed by Martin Robinson.
-
-        Set two environment variables that the Gtk's port of WebKitTestRunner
-        depends on and crashes if they're not explicitly set by the user.
-        Also modify the setting of the WEBKIT_INSPECTOR_PATH variable so it
-        properly uses the _build_path method.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py: Set
-        TEST_RUNNER_INJECTED_BUNDLE_FILENAME and TEST_RUNNER_TEST_PLUGIN_PATH
-        environment variables.
-
-2011-10-21  Filip Pizlo  <fpizlo@apple.com>
-
-        Bencher script doesn't measure GC times accurately
-        https://bugs.webkit.org/show_bug.cgi?id=70588
-
-        Reviewed by Geoff Garen.
-        
-        Added two new options which allow different ways of measuring GC times:
-        
-        --measure-gc, which omits calls to gc() between benchmark invocations.
-        This option takes an optional argument, which is the name of the
-        VM in which to enable this feature. This allows comparing a single VM
-        against itself, with and without GC.
-        
-        --rerun <N>, which causes each sample measurement to include N invocations
-        which do not have gc() calls between them. The default is N = 1, which
-        results in the same behavior as before.
-        
-        You can use either --measure-gc or --rerun <N> for N > 1 (preferably
-        N >= 3) to get more of a contribution from GC to the measured times.
-        --rerun results in tighter confidence intervals than --measure-gc, since
-        it amortizes GC effects in each sample, while with --measure-gc some
-        samples will see GC and some won't leading to a higher standard devation
-        and thus requiring more samples to reduce confidence intervals to
-        managable levels.
-
-        * Scripts/bencher:
-
-2011-10-21  Sam Weinig  <sam@webkit.org>
-
-        Remove ability to create a WKView without a WKContextRef and WKPageGroupRef
-        https://bugs.webkit.org/show_bug.cgi?id=70653
-
-        Reviewed by Simon Fraser.
-
-        * MiniBrowser/mac/AppDelegate.h:
-        * MiniBrowser/mac/AppDelegate.m:
-        (-[BrowserAppDelegate init]):
-        (-[BrowserAppDelegate newWindow:]):
-        (-[BrowserAppDelegate openPanelDidEnd:returnCode:contextInfo:]):
-        * MiniBrowser/mac/BrowserWindowController.h:
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController initWithContext:pageGroup:]):
-        (-[BrowserWindowController windowWillClose:]):
-        (createNewPage):
-        (-[BrowserWindowController awakeFromNib]):
-        * TestWebKitAPI/mac/WebKitAgnosticTest.mm:
-        (TestWebKitAPI::WebKitAgnosticTest::runWebKit2Test):
-        Update testing code to pass a PageGroup as necessary.
-
-2011-10-21  Leandro Pereira  <leandro@profusion.mobi>
-
-        webkitpy: Teach NRWT about the EFL port
-        https://bugs.webkit.org/show_bug.cgi?id=70637
-
-        Allows using ``efl'' as a platform when executing NRWT.
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/layout_tests/port/efl.py: Added.
-        * Scripts/webkitpy/layout_tests/port/efl_unittest.py: Added.
-        * Scripts/webkitpy/layout_tests/port/factory.py: Adjust factory to make EflPort objects
-        when using PortFactory.get(port_name='efl').
-
-2011-10-21  Devdatta Deshpande  <pwjd73@motorola.com>
-
-        [Gtk] mousemove event always has metaKey == true
-        https://bugs.webkit.org/show_bug.cgi?id=35299
-
-        Reviewed by Martin Robinson.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (gdkModifierFromJSValue): GDK_META_MASK is used to represent metaKey for platform GTK mouse and
-        keyboard events. So making it in sync with WebCore files.
-        (mouseMoveToCallback): Sending modifier keys state for mouse move event.
-
-2011-10-21  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        watchlist: Add a new entry for WebKit2 GTK+ public API
-        https://bugs.webkit.org/show_bug.cgi?id=70601
-
-        Reviewed by Philippe Normand.
-
-        Subscribe myself to WebKit2 GTK+ API patches. Also add a message
-        for patches that might include new API that points to the WebKit2
-        GTK+ API guidelines.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2011-10-21  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Remove QtScript source code from WebKit.
-        https://bugs.webkit.org/show_bug.cgi?id=64088
-
-        Reviewed by Tor Arne Vestbø.
-
-        Removed dead code that isn't developed anymore.
-
-        * Scripts/webkitpy/style/checker_unittest.py:
-
-2011-10-20  Eric Seidel  <eric@webkit.org>
-
-        Switch webkit2 bot to NRWT
-        https://bugs.webkit.org/show_bug.cgi?id=56729
-
-        Reviewed by Adam Barth.
-
-        Move the WK2 bot to using NRWT instead of ORWT, as announced on webkit-dev:
-        https://lists.webkit.org/pipermail/webkit-dev/2011-October/018337.html
-
-        * Scripts/run-webkit-tests:
-        (runningOnBuildBot):
-        (useNewRunWebKitTests):
-
-2011-10-20  Eric Seidel  <eric@webkit.org>
-
-        NRWT is asserting on DRT due to lack of newline when processing line from DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=70585
-
-        Reviewed by Adam Barth.
-
-        This really should be an assert, as this inidicates a programming error in either DRT or NRWT.
-        However since DRT was functioning fine before in Qt, we'll make this an error log for now
-        and once we find the root cause flip this back to an assert.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-10-20  Yuta Kitamura  <yutak@chromium.org>
-
-        Unreviewed, rolling out r98064.
-        http://trac.webkit.org/changeset/98064
-        https://bugs.webkit.org/show_bug.cgi?id=64788
-
-        Broke Mac bots.
-
-        * Scripts/webkitpy/layout_tests/servers/websocket_server.py:
-
-2011-10-20  Yuta Kitamura  <yutak@chromium.org>
-
-        WebSocket: Connecting to localhost:8880 takes one second on Windows
-        https://bugs.webkit.org/show_bug.cgi?id=64788
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/servers/websocket_server.py:
-        Bind to "localhost" instead of "127.0.0.1" to let pywebsocket listen on both
-        IPv4 and IPv6 addresses. This should prevent the test reserved-opcodes.html
-        from timing out on Windows, because this test tries to open a lot of
-        connections to localhost and each attempt takes one second to fall back from
-        IPv6 to IPv4 on Windows (I have no idea why Windows works like this, though).
-
-2011-10-20  Ryosuke Niwa  <rniwa@webkit.org>
-
-        nrwt: newly generated results are put in cross-platform directory
-        https://bugs.webkit.org/show_bug.cgi?id=68931
-
-        Reviewed by Dirk Pranke.
-
-        The bug was caused by SingleTestRunner._add_missing_baselines's always calling _save_baseline_data
-        with generate_new_baseline set to False. Fixed the bug by always passing True when .png file is missing
-        (because png images are typically different on each platform), and passing True when .txt file is missing
-        and the actual result's first line matches the regular expression "layer at \(\d+,\d+\) size \d+x\d+".
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py: Changed the expectation
-        and added a test case.
-
-2011-10-20  Kent Tamura  <tkent@chromium.org>
-
-        Unreviewed. Adding myself to watchlist.
-
-        * Scripts/webkitpy/common/config/watchlist:
-        Add "ChromiumDumpRenderTree" and "Forms" definitions, and cc them to me.
-
-2011-10-20  Nico Weber  <thakis@chromium.org>
-
-        [chromium/mac] Add support for building with make
-        https://bugs.webkit.org/show_bug.cgi?id=70455
-
-        Reviewed by Adam Barth.
-
-        Depends on http://codereview.chromium.org/8352029/
-        `GYP_GENERATORS=make Tools/Scripts/update-webkit --chromium` will
-        create a toplevel Makefile.chromium.
-
-        If that file exists and is newer than Source/WebKit/chromium/WebKit.xcodeproj,
-        `Tools/Scripts/build-webkit --chromium` will build with make instead of
-        xcodebuild.
-
-        Also let nrwt use a binary from out/ if it exists.
-
-        * Scripts/webkitdirs.pm:
-        (determineBaseProductDir):
-        (isChromiumMacMake):
-        (determineIsChromiumMacMake):
-        (buildChromium):
-
-2011-10-20  Eric Seidel  <eric@webkit.org>
-
-        Possible REGRESSION(97879): NRWT fails when DumpRenderTree crashes
-        https://bugs.webkit.org/show_bug.cgi?id=70524
-
-        Reviewed by Adam Barth.
-
-        This is a speculative fix, since I do not use a platform
-        which outputs crashlogs over stderr.
-
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-10-20  Eric Seidel  <eric@webkit.org>
-
-        REGRESSION(97879): Pixel tests no longer work with NRWT on Mac
-        https://bugs.webkit.org/show_bug.cgi?id=70492
-
-        Reviewed by Adam Barth.
-
-        The bug turned out to be that I was assuming the block.content
-        would be empty before the binary content following Content-Length
-        was read inside _read_block.  Turns out its not, due to extra newlines
-        and "ExpectedHash" header.
-
-        In the process of trying to figure out what was going wrong I ended up
-        cleaning up our newline usage in DumpRenderTree a little.  Moved
-        two error messages from stdout to stderr, and fixed a little code indent/whitespace.
-
-        I also fixed ServerProcess to use "deadline" everywhere instead of timeout
-        per Adam's request in the original bug.
-
-        * DumpRenderTree/PixelDumpSupport.cpp:
-        (dumpWebViewAsPixelsAndCompareWithExpected):
-        * DumpRenderTree/cg/ImageDiffCG.cpp:
-        (main):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dump):
-        * DumpRenderTree/mac/PixelDumpSupportMac.mm:
-        (restoreMainDisplayColorProfile):
-        (setupMainDisplayColorProfile):
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-
-2011-10-20  Tony Chang  <tony@chromium.org>
-
-        [chromium] Remove <stdint.h> from ImageDiff and use
-        unsigned int instead of uint32_t.
-
-        Unreviewed, fixing the chromium win build.
-
-        * DumpRenderTree/chromium/ImageDiff.cpp:
-        (Image::pixelAt):
-        (Image::setPixelAt):
-        (maxOf3):
-        (getRedComponent):
-        (getGreenComponent):
-        (getBlueComponent):
-        (weightedPercentageDifferent):
-        (createImageDiff):
-
-2011-10-20  Hao Zheng  <zhenghao@chromium.org>
-
-        [Chromium] Reduce dependencies of ImageDiff to compile it for Android.
-        https://bugs.webkit.org/show_bug.cgi?id=69997
-
-        Reviewed by Tony Chang.
-
-        This change is required to make ImageDiff for Android, and can benefit
-        other platforms, too. On Android, most targets are built as
-        toolsets:target. while ImageDiff needs to be built as toolsets:host.
-        Currently, building the standalone target of ImageDiff depends on about
-        85 other targets (try  make ImageDiff'), which is inefficient. After the
-        change, ImageDiff only depends on webkit_support_gfx, which in turn
-        depends on libpng and zlib.
-
-        * DumpRenderTree/chromium/ImageDiff.cpp:
-        (main):
-
-2011-10-20  Leandro Pereira  <leandro@profusion.mobi>
-
-        [EFL] Unreviewed DumpRenderTree build fix.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::addChromeInputField): Add stub.
-        (LayoutTestController::removeChromeInputField): Ditto.
-        (LayoutTestController::focusWebView): Ditto.
-        (LayoutTestController::setBackingScaleFactor): Ditto.
-
-2011-10-20  Leandro Pereira  <leandro@profusion.mobi>
-
-        [EFL] Plug ImageDiff/DumpRenderTree on CMake build system
-        https://bugs.webkit.org/show_bug.cgi?id=70142
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * CMakeListsEfl.txt: Include DRT CMakeLists.
-        * DumpRenderTree/efl/CMakeLists.txt: Added.
-
-2011-10-20  Philippe Normand  <pnormand@igalia.com>
-
-        [style] Allow usage of NULL in gst_*
-        https://bugs.webkit.org/show_bug.cgi?id=70498
-
-        Reviewed by David Levin.
-
-        * Scripts/webkitpy/style/checkers/cpp.py: Simplified the detection
-        of gst_ calls. Now just ignore NULL in all of them.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Test for above change.
-
-2011-10-20  Leandro Pereira  <leandro@profusion.mobi>
-
-        [EFL] Unreviewed. Build fix after r97043.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues): Use ewk_view_scale_set() instead of ewk_view_page_scale().
-        * DumpRenderTree/efl/EventSender.cpp:
-        (scalePageByCallback): Ditto.
-
-2011-10-20  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed. Adding myself to watchlists.
-        * Scripts/webkitpy/common/config/watchlist:
-
-2011-10-19  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Teach new-run-webkit-tests about #CRASHED and #CRASHED - WebProcess
-        https://bugs.webkit.org/show_bug.cgi?id=63683
-
-        * Scripts/webkitpy/common/net/layouttestresults.py:
-        * Scripts/webkitpy/common/net/resultsjsonparser.py:
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py:
-        * Scripts/webkitpy/layout_tests/layout_package/worker.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-
-2011-10-19  Jochen Eisinger  <jochen@chromium.org>
-
-        Chromium doesn't support git branch builds, so don't add the branch to the product dir
-        https://bugs.webkit.org/show_bug.cgi?id=70449
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitdirs.pm:
-        (determineBaseProductDir):
-
-2011-10-19  Ojan Vafai  <ojan@chromium.org>
-
-        Unreviewed. Adding myself to watchlists.
-        * Scripts/webkitpy/common/config/watchlist:
-
-2011-10-19  Tom Zakrajsek  <tomz@codeaurora.org>
-
-        Add a suggest-nominations command to webkit-patch for computing potential committer/reviewer nominations
-        https://bugs.webkit.org/show_bug.cgi?id=62166
-
-        Reviewed by Eric Seidel.
-
-        Included options to control committer/reviewer patch count requirements,
-        an age-limit on patches, and verbose output for more in-depth analysis.
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        * Scripts/webkitpy/tool/commands/__init__.py:
-        * Scripts/webkitpy/tool/commands/suggestnominations.py: Added.
-        * Scripts/webkitpy/tool/commands/suggestnominations_unittest.py: Added.
-
-2011-10-19  Eric Seidel  <eric@webkit.org>
-
-        new-run-webkit-tests -2 was crashing due to both "java" and "java/" being listed in Skipped files.
-        Make NRWT normalize directory names in Skipped files during parsing.
-
-        Unreviewed.  Very simple (tested) change.
-
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-10-19  David Levin  <levin@chromium.org>
-
-        watchlist: Should be more robust to bad regex.
-        https://bugs.webkit.org/show_bug.cgi?id=69486
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/config/watchlist: Change the instructions due to
-          watchlist being checked by check-webkit-style (bug 69487) and remove the .* from file
-          patterns since they are no longer anchored on the right hand side.
-        * Scripts/webkitpy/common/watchlist/amountchangedpattern.py: Change *pattern to take a compiled regex directly.
-        * Scripts/webkitpy/common/watchlist/amountchangedpattern_unittest.py: Ditto.
-        * Scripts/webkitpy/common/watchlist/changedlinepattern.py: Ditto.
-        * Scripts/webkitpy/common/watchlist/changedlinepattern_unittest.py: Ditto.
-        * Scripts/webkitpy/common/watchlist/filenamepattern.py: Ditto.
-        * Scripts/webkitpy/common/watchlist/filenamepattern_unittest.py: Ditto and change a test now that
-        filenames are no longer anchored on the right hand side.
-        * Scripts/webkitpy/common/watchlist/watchlistparser.py: Catch regex errors and log them as errors.
-        * Scripts/webkitpy/common/watchlist/watchlistparser_unittest.py: Add some tests to verify that bad regexes
-        don't kill everything.
-
-2011-10-19  David Levin  <levin@chromium.org>
-
-        watchlist: Add a stylecheck to do validity checks for the watchlist config.
-        https://bugs.webkit.org/show_bug.cgi?id=69487
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/style/checker.py: Add the watchlist file type.
-        * Scripts/webkitpy/style/checkers/watchlist.py: Added.
-        * Scripts/webkitpy/style/checkers/watchlist_unittest.py: Added.
-
-2011-10-19  Eric Seidel  <eric@webkit.org>
-
-        NRWT ServerProcess can't read lines from stderr and stdio separately
-        https://bugs.webkit.org/show_bug.cgi?id=70435
-
-        Reviewed by Adam Barth.
-
-        This is the underlying bug behind our lack of WK2 support, and timeout detection on Windows.
-        DRT expects RWT to read one line at a time from stderr and stdout independently.
-        This allows DRT to communicate errors over stderr and have them responded to immediately
-        regardless of what state the stdio stream may be in.  Previously NRWT's ServerProcess
-        class only exposed a read_line function which would read a line from stdout
-        and batch all output from stderr into an error buffer.  Callers would only be able
-        to respond to commands over stderr if they happened to correspond with a stdout line boundary.
-
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-10-19  Chang Shu  <cshu@webkit.org>
-
-        [Qt] Support WK1-only Skipped list
-        https://bugs.webkit.org/show_bug.cgi?id=70254
-
-        Reviewed by Csaba Osztrogonác.
-
-        Added a new search path qt-wk1 for skipping WK1-only tests.
-
-        * Scripts/webkitpy/layout_tests/port/qt.py: NRWT
-        * Scripts/old-run-webkit-tests: ORWT
-
-2011-10-19  Gabor Rapcsanyi  <rgabor@webkit.org>
-
-        [GTK] Enable to use built-product-archive on GTK platform
-        https://bugs.webkit.org/show_bug.cgi?id=70319
-
-        Reviewed by Csaba Osztrogonác.
-
-        * BuildSlaveSupport/built-product-archive:
-
-2011-10-18  David Levin  <levin@chromium.org>
-
-        watchlist: Should try to run if it can and not throw on mistakes.
-        https://bugs.webkit.org/show_bug.cgi?id=70358
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/system/outputcapture.py: Add the ability to capture log output.
-        * Scripts/webkitpy/common/watchlist/watchlistloader_unittest.py: Adapt to the logging of errors.
-        * Scripts/webkitpy/common/watchlist/watchlistparser.py: Change to log problems and fix problems when found.
-        * Scripts/webkitpy/common/watchlist/watchlistparser_unittest.py: Adapt to the logging of errors.
-        * Scripts/webkitpy/common/watchlist/watchlistrule.py: Expose a way to remove instructions.
-        * Scripts/webkitpy/common/watchlist/watchlistrule_unittest.py: Test the new function.
-
-2011-10-18  Sam Weinig  <sam@webkit.org>
-
-        Move uses of C-SPI out of WKView.h and into WKViewPrivate.h
-        https://bugs.webkit.org/show_bug.cgi?id=70387
-
-        Reviewed by Dan Bernstein.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        * TestWebKitAPI/Tests/mac/DeviceScaleFactorOnBack.mm:
-        * TestWebKitAPI/mac/JavaScriptTestMac.mm:
-        * TestWebKitAPI/mac/PlatformWebViewMac.mm:
-        * TestWebKitAPI/mac/WebKitAgnosticTest.mm:
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        Update to include WKViewPrivate.h where necessary.
-
-2011-10-18  Joseph Pecoraro  <joepeck@webkit.org>
-
-        Web Inspector: Some localizedStrings.js Updates
-        https://bugs.webkit.org/show_bug.cgi?id=70365
-
-        Reviewed by Darin Adler.
-
-        * Scripts/check-inspector-strings:
-        Updated to the new webkitpy way to determine checkout root.
-
-        * Scripts/webkitdirs.pm:
-        (copyInspectorFrontendFiles):
-        Made it so build-webkit --inspector-frontend copies over
-        the localizedStrings.js file as well as the frontend files.
-
-2011-10-18  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] DRT: Clear list of visited pages before each test.
-        https://bugs.webkit.org/show_bug.cgi?id=70355
-
-        Reviewed by Antonio Gomes.
-
-        r97596 uncovered a bug in the implementation: the list of visited
-        links was not cleared between tests, which caused tests such as
-        fast/repaint/outline-repaint-glitch.html to be flaky (the link color
-        changed depending on whether fast/repaint/border-repaint-glitch.html
-        was visited before or not).
-
-        Call ewk_history_clear to make sure the visited links list does not
-        persist between tests.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-
-2011-10-18  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Split TestExpectationsEditor into its own file.
-        https://bugs.webkit.org/show_bug.cgi?id=70348
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/controllers/test_expectations_editor.py: Copied from Tools/Scripts/webkitpy/layout_tests/models/test_expectations.py.
-        * Scripts/webkitpy/layout_tests/controllers/test_expectations_editor_unittest.py: Copied from Tools/Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py.
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Adjusted for change.
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py: Ditto.
-        * Scripts/webkitpy/tool/servers/gardeningserver.py: Ditto.
-
-2011-10-18  Ryosuke Niwa  <rniwa@webkit.org>
-
-        [Chromium] buildbot runs nrwt with --chromium instead of --chromium-cg-mac
-        https://bugs.webkit.org/show_bug.cgi?id=70313
-
-        Reviewed by Adam Barth.
-
-        Fixed the bug by passing --platform --chromium-cg-mac in RunWebKitTests. We can't always add
-        this parameter because build-webkit and other scripts don't accept it.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-10-18  Adam Barth  <abarth@webkit.org>
-
-        Subscribe myself to WebIDL changes
-        https://bugs.webkit.org/show_bug.cgi?id=70341
-
-        Reviewed by David Levin.
-
-        I've also added some documentation and refactored my previous
-        subscriptions to make it eaiser for others to subscribe as well.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2011-10-18  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Add myself to the newfangled watchlist plumbing.
-        https://bugs.webkit.org/show_bug.cgi?id=70338
-
-        Reviewed by David Levin.
-
-        * Scripts/webkitpy/common/config/watchlist: Added sheepishly.
-
-2011-10-18  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Fix a unit test in TestFailures.
-        https://bugs.webkit.org/show_bug.cgi?id=70337
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/NewBugForm_unittests.js: Turns out,
-            the value of a method property should always be lowercase.
-
-2011-10-18  Adam Barth  <abarth@webkit.org>
-
-        Always enable ENABLE(XPATH)
-        https://bugs.webkit.org/show_bug.cgi?id=70217
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/build-webkit:
-
-2011-10-18  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        garden-o-matic should not report flaking in expected failures as failures.
-        https://bugs.webkit.org/show_bug.cgi?id=70279
-
-        Reviewed by Adam Barth.
-
-        On the bots, flakes that are already expected to fail aren't reported as failures (they keep the bot green).
-        For example, if TEXT failure is expected, a TEXT TIMEOUT result will not cause the redness. We should do the
-        same for garden-o-matic.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results.js: Spuriously changed to use Array iterators rather than jQuery APIs,
-            rewrote the logic for determining expected or unexpected failures as a central analysis tool.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results_unittests.js: Added unit tests.
-
-2011-10-18  Zan Dobersek  <zandobersek@gmail.com>
-
-        [Gtk] Support for client-based geolocation
-        https://bugs.webkit.org/show_bug.cgi?id=64970
-
-        Reviewed by Martin Robinson.
-
-        Add support for testing client-based geolocation tests in DumpRenderTree.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues): Reset GeolocationClientMock.
-        (createWebView): Create web view after declaring DumpRenderTree mode.
-        That way a mock client for geolocation is used instead of a GeoClue
-        client if a web view is created when testing.
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp: Implement functions for
-        geolocation layout tests.
-        (LayoutTestController::setMockGeolocationPosition):
-        (LayoutTestController::setMockGeolocationError):
-        (LayoutTestController::setGeolocationPermission):
-        (LayoutTestController::numberOfPendingGeolocationPermissionRequests):
-        * Scripts/build-webkit: Note that the Gtk port is using client-based
-        geolocation, even though changing this flag has no effect on compilation.
-
-2011-10-07  Andrey Kosyakov  <caseq@chromium.org>
-
-        [Chromium] suppress console output from DevTools window
-        https://bugs.webkit.org/show_bug.cgi?id=69632
-
-        Reviewed by Pavel Feldman.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::showDevTools):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::didAddMessageToConsole):
-        (WebViewHost::reset):
-        (WebViewHost::setLogConsoleOutput):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2011-10-18  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r97735.
-        http://trac.webkit.org/changeset/97735
-        https://bugs.webkit.org/show_bug.cgi?id=70317
-
-        some people apparently use build-jsc with the qt port without
-        building webkit first (Requested by torarne on #webkit).
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-        (buildQMakeProject):
-        (buildQMakeQtProject):
-
-2011-10-18  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Remove dead code in build-webkit
-
-        build-webkit will iterate over a list of subdirectories to build,
-        but this feature is only used by the Apple ports. For QtWebKit we
-        always pass an empty directory to buildQMakeProject, which makes
-        the logic for dealing with sub-projects in buildQMakeProject just
-        added noise.
-
-        If we do want this feature at some point, we should redo it in
-        the context of the upcoming build system changes for Qt.
-
-        Reviewed by Simon Hausmann.
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-        (buildQt):
-
-2011-10-18  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Remove traces of Symbian support from the build scripts
-
-        Reviewed by Simon Hausmann.
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-        (determineBaseProductDir):
-        (argumentsForConfiguration):
-        (usesPerConfigurationBuildDirectory):
-        (buildQMakeProject):
-
-2011-10-18  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Build fix after r97672.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-
-2011-10-17  Kent Tamura  <tkent@chromium.org>
-
-        A follow-up of r97716.
-        https://bugs.webkit.org/show_bug.cgi?id=68803
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::reset): Initialize m_dumpCreateView.
-
-2011-10-17  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] add LayoutTestController.dumpCreateView() to monitor calls to WebViewClient::createView
-        https://bugs.webkit.org/show_bug.cgi?id=68803
-
-        Reviewed by Nate Chapin.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::dumpCreateView):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController::shouldDumpCreateView):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createView):
-
-2011-10-17  Nate Chapin  <japhet@chromium.org>
-
-        Add myself to watchlists, and add a watch
-        for Source/WebCore/loader/.
-        https://bugs.webkit.org/show_bug.cgi?id=70263
-
-        Reviewed by David Levin.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2011-10-17  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] DRT: Make non-recognized keys work in events as well.
-        https://bugs.webkit.org/show_bug.cgi?id=69860
-
-        Reviewed by Antonio Gomes.
-
-        fast/forms/select-type-ahead-non-latin.html is the canonical case we fix
-        here: it has a select box with a few non-latin options, and one of them
-        is selected via the keyboard.
-
-        In this specific case, we need to make EventHandler::keyEvent send a
-        keyPressEvent to SelectElement, so that
-        SelectElement::defaultEventHandler calls typeAheadFind(). This happens
-        only when PlatformKeyEvent::text() is not empty, which was not the case
-        so far.
-
-        * DumpRenderTree/efl/EventSender.cpp:
-        (keyDownCallback):
-
-2011-10-17  Alok Priyadarshi  <alokp@chromium.org>
-
-        Add layout tests for WebPlugin compositor path
-        https://bugs.webkit.org/show_bug.cgi?id=69027
-
-        Reviewed by James Robinson.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestWebPlugin.cpp: Added.
-        (premultiplyAlpha):
-        (TestWebPlugin::TestWebPlugin):
-        (TestWebPlugin::~TestWebPlugin):
-        (TestWebPlugin::mimeType):
-        (TestWebPlugin::initialize):
-        (TestWebPlugin::destroy):
-        (TestWebPlugin::updateGeometry):
-        (TestWebPlugin::parsePrimitive):
-        (TestWebPlugin::parseColor):
-        (TestWebPlugin::parseOpacity):
-        (TestWebPlugin::initScene):
-        (TestWebPlugin::drawScene):
-        (TestWebPlugin::destroyScene):
-        (TestWebPlugin::initProgram):
-        (TestWebPlugin::initPrimitive):
-        (TestWebPlugin::drawPrimitive):
-        (TestWebPlugin::loadShader):
-        (TestWebPlugin::loadProgram):
-        * DumpRenderTree/chromium/TestWebPlugin.h: Added.
-        (TestWebPlugin::scriptableObject):
-        (TestWebPlugin::paint):
-        (TestWebPlugin::updateFocus):
-        (TestWebPlugin::updateVisibility):
-        (TestWebPlugin::acceptsInputEvents):
-        (TestWebPlugin::handleInputEvent):
-        (TestWebPlugin::didReceiveResponse):
-        (TestWebPlugin::didReceiveData):
-        (TestWebPlugin::didFinishLoading):
-        (TestWebPlugin::didFailLoading):
-        (TestWebPlugin::didFinishLoadingFrameRequest):
-        (TestWebPlugin::didFailLoadingFrameRequest):
-        (TestWebPlugin::Scene::Scene):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createPlugin):
-
-2011-10-17  Ryosuke Niwa  <rniwa@webkit.org>
-
-        [nrwt] Add new category for MISSING
-        https://bugs.webkit.org/show_bug.cgi?id=69990
-
-        Reviewed by Dirk Pranke.
-
-        Treat missing results as a new category in summerize_results.
-
-        Because Chromium port wants to turn bots red when there are tests with missing results,
-        extracted the logic to compute the exit code as exit_code_from_summarized_results in
-        base and chromium ports.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-
-2011-10-17  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        garden-o-matic operations fail because of CSP.
-        https://bugs.webkit.org/show_bug.cgi?id=70249
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html: Added gardening server to the policy.
-
-2011-10-17  Ada Chan  <adachan@apple.com>
-
-        Add a test to call WKPageLoadAlternateHTMLString() with a non-directory URL.
-        https://bugs.webkit.org/show_bug.cgi?id=70168
-
-        Reviewed by Alexey Proskuryakov.
-
-        * TestWebKitAPI/Tests/WebKit2/LoadAlternateHTMLStringWithNonDirectoryURL.cpp: Added.
-        (TestWebKitAPI::didFinishLoadForFrame):
-        (TestWebKitAPI::TEST): Call WKPageLoadAlternateHTMLString() with a file URL and make sure it finishes loading.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        Add the new file.
-
-2011-10-17  Darin Adler  <darin@apple.com>
-
-        Add some more *.pyc ignores in directories with Python scripts.
-
-        * QueueStatusServer: Added property svn:ignore.
-        * Scripts/webkitpy/common/watchlist: Added property svn:ignore.
-        * Scripts/webkitpy/layout_tests/controllers: Added property svn:ignore.
-        * Scripts/webkitpy/layout_tests/views: Added property svn:ignore.
-
-2011-10-17  Alexis Menard  <alexis.menard@openbossa.org>
-
-        [Qt][WK2][meta] Fix failing API tests
-        https://bugs.webkit.org/show_bug.cgi?id=70236
-
-        Reviewed by Csaba Osztrogonác.
-
-        In order to run WebKit2 API tests we need the WebProcess to be in
-        the path so let's add the bin directory when running the API tests of Qt.
-
-        * Scripts/run-qtwebkit-tests:
-
-2011-10-17  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
-
-        [Qt][WK2] Build dependency problems
-        https://bugs.webkit.org/show_bug.cgi?id=68456
-
-        Reviewed by Csaba Osztrogonác.
-
-        * Scripts/webkitdirs.pm:
-        (buildQMakeProject):
-
-2011-10-17  Holger Hans Peter Freyther  <holger@moiji-mobile.com>
-
-        [build] Introduce Qt/SH4 buildbot
-        https://bugs.webkit.org/show_bug.cgi?id=70227
-
-        Reviewed by Adam Roben.
-
-        Add buildslave for Linux/Qt/SH4.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2011-10-16  Adam Barth  <abarth@webkit.org>
-
-        Always enable ENABLE(DOM_STORAGE)
-        https://bugs.webkit.org/show_bug.cgi?id=70189
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/build-webkit:
-        * waf/build/settings.py:
-
-2011-10-15  Adam Barth  <abarth@webkit.org>
-
-        Rename ENABLE(TILED_BACKING_STORE) to USE(TILED_BACKING_STORE)
-        https://bugs.webkit.org/show_bug.cgi?id=70194
-
-        Reviewed by Daniel Bates.
-
-        * Scripts/build-webkit:
-
-2011-10-15  Ojan Vafai  <ojan@chromium.org>
-
-        run-webkit-tests should accept --child-processes
-        https://bugs.webkit.org/show_bug.cgi?id=69713
-
-        Reviewed by Adam Barth.
-
-        Only set --child-processes=1 if --child-processes it not
-        passed on the commandline.
-
-        * Scripts/run-webkit-tests:
-
-2011-10-15  Daniel Bates  <dbates@webkit.org>
-
-        Extract common gdb code into its own function; Remove script gdb-safari
-        https://bugs.webkit.org/show_bug.cgi?id=68499
-
-        Reviewed by David Kilzer.
-
-        Almost identical code is used in webkitdirs::{debugMiniBrowser, debugWebKitTestRunner,
-        runSafari}() and in the script gdb-safari to launch gdb to debug an application.
-        We should extract the common parts into a function that can be shared by all callers
-        so as to remove duplicate code.
-
-        As a side effect of removing duplicate code we can remove the script gdb-safari since
-        its code has been incorporated into webkitdirs::debugSafari() which is called by the
-        script debug-safari.
-
-        * Scripts/debug-safari: Modified to call webkitdirs::debugSafari().
-        * Scripts/gdb-safari: Removed.
-        * Scripts/webkitdirs.pm:
-        (execMacWebKitAppForDebugging): Added; Extracted common debugging code from
-        debugMiniBrowser(), debugWebKitTestRunner(), runSafari() and
-        script gdb-safari to here.
-        (debugSafari): Added.
-        (runSafari): Extracted debugging code to debugSafari() and debugMacWebKitApp();
-        Also, return the exit status of WebKit launcher (WebKit.exe) on Windows. Currently,
-        runSafari() always returns 1 on Windows and the script run-safari exits using this
-        value as its exit status. Hence, the script run-safari always exits with a nonzero
-        exit status (i.e. abnormal termination) on Windows. Instead, we should return the
-        exit status of the WebKit launcher application.
-        (debugMiniBrowser): Modified to call debugMacWebKitApp().
-        (debugWebKitTestRunner): Ditto.
-
-2011-10-15  Robert Hogan  <robert@webkit.org>
-
-        [webkit-patch] Put Source/Tools changes at the top of patches, LayoutTests at the bottom
-        https://bugs.webkit.org/show_bug.cgi?id=70056
-
-        Reviewed by Adam Barth.
-
-        The preferred file-order for patches is LayoutTests at the end and
-        ChangeLogs before everything else in a subdirectory. Specify this in a git 'orderfile' and use 
-        it when creating patches for review and landing.
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-        * Scripts/webkitpy/common/config/orderfile: Added.
-
-2011-10-15  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        [Qt] [Symbian] Remove support for the Symbian platform for the QtWebKit port
-        https://bugs.webkit.org/show_bug.cgi?id=69920
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::open):
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * QtTestBrowser/QtTestBrowser.pro:
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::screenshot):
-        (LauncherWindow::showFPS):
-        (LauncherWindow::updateFPS):
-        * QtTestBrowser/launcherwindow.h:
-        (WindowOptions::WindowOptions):
-        * QtTestBrowser/mainwindow.cpp:
-        (MainWindow::buildUI):
-        * Scripts/webkitpy/style/checker.py: Remove rules for the
-        WebKit/qt/symbian/platformplugin directory.
-        * Scripts/webkitpy/style/checker_unittest.py:
-        * Tools.pro:
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro:
-        * WebKitTestRunner/InjectedBundle/qt/LayoutTestControllerQt.cpp:
-        (WTR::LayoutTestController::platformInitialize):
-        * WebKitTestRunner/qt/TestControllerQt.cpp:
-        (WTR::isExistingLibrary):
-        * WebKitTestRunner/qt/WebKitTestRunner.pro:
-
-2011-10-15  Adam Barth  <abarth@webkit.org>
-
-        Fix typo in webkitpy help
-        https://bugs.webkit.org/show_bug.cgi?id=70169
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/tool/commands/upload.py:
-
-2011-10-15  Tony Chang  <tony@chromium.org>
-
-        fix another typo in treemap.html
-        https://bugs.webkit.org/show_bug.cgi?id=70149
-
-        Reviewed by Ojan Vafai.
-
-        Fixes a bug where #treemapfocus=LayoutTests%2Fhttp didn't focus the http tests.
-
-        * TestResultServer/static-dashboards/treemap.html:
-
-2011-10-14  Adam Barth  <abarth@webkit.org>
-
-        Hide status bubbles from queues which are very far behind
-        https://bugs.webkit.org/show_bug.cgi?id=70133
-
-        Reviewed by Eric Seidel.
-
-        The mac-ews is so far behind that we shouldn't show its status bubble.
-        The status bubble just makes contributors sad.
-
-        * QueueStatusServer/handlers/statusbubble.py:
-
-2011-10-14  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Write unit test to ensure style-checker-filter option is passed properly in webkit-patch
-        https://bugs.webkit.org/show_bug.cgi?id=70143
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/tool/commands/download_unittest.py: Added a test for land-cowboy. Not so cowboy after all.
-        * Scripts/webkitpy/tool/steps/checkstyle.py: Fixed a bug, discovered by the newly added test.
-
-2011-10-14  David Levin  <levin@chromium.org>
-
-        watchlist: Add a validation check for the email names in the list.
-        https://bugs.webkit.org/show_bug.cgi?id=70154
-
-        Reviewed by Adam Barth.
-
-        If an email is listed which doesn't have a bugzilla log in, then any emails
-        added to the bug along with that email will fail to happen, so try to prevent this
-        from happening by validating that emails added to the watchlist are known to be
-        contributors.
-
-        * Scripts/webkitpy/common/config/committers.py: Add my other email aliases for bugzilla.
-        * Scripts/webkitpy/common/watchlist/watchlistparser.py: Add the check.
-        * Scripts/webkitpy/common/watchlist/watchlistparser_unittest.py: A unit test for the check.
-
-2011-10-14  David Levin  <levin@chromium.org>
-
-        watchlist: If the style check fails, then the watchlist will not be run.
-        https://bugs.webkit.org/show_bug.cgi?id=69484
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/tool/commands/queues.py: Run the watch list even
-        if the style part fails and don't allow watch list failures turn the
-        bot run red.
-        * Scripts/webkitpy/tool/commands/queues_unittest.py: Appropriate unit tests.
-        * Scripts/webkitpy/tool/mocktool.py: Add support to make an executive command throw.
-
-2011-10-14  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Plumb style-checker filter up to command options and make land-cowboy use it.
-        https://bugs.webkit.org/show_bug.cgi?id=70119
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/style/checker.py: Added ChangeLogChecker categories to the big list.
-        * Scripts/webkitpy/style/checkers/changelog.py: Declared categories, used in ChangeLogChecker.
-        * Scripts/webkitpy/tool/commands/download.py: Made LandCowboy use filter.
-        * Scripts/webkitpy/tool/commands/download_unittest.py: Tweaked the test.
-        * Scripts/webkitpy/tool/commands/upload_unittest.py: Ditto.
-        * Scripts/webkitpy/tool/steps/checkstyle.py: Made check_style_filter work.
-        * Scripts/webkitpy/tool/steps/options.py: Added new option, check-style-filter.
-
-2011-10-14  Sam Weinig  <sam@webkit.org>
-
-        Remove the Leopard slaves.
-
-        Reviewed by Adam Roben.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2011-10-14  Peter Beverloo  <peter@chromium.org>
-
-        [Chromium] Inherit settings from Chromium's envsetup.sh, address a NDK todo
-        https://bugs.webkit.org/show_bug.cgi?id=70028
-
-        Reviewed by Adam Barth.
-
-        * Scripts/update-webkit-chromium:
-        * Scripts/webkitdirs.pm:
-        (buildChromiumMakefile):
-        (buildChromium):
-
-2011-10-14  Leandro Pereira  <leandro@profusion.mobi>
-
-        Unreviewed; add missing #includes.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        * DumpRenderTree/efl/EventSender.cpp:
-
-2011-10-14  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] Correctly get the absolute URL in LayoutTestController::queueLoad()
-        https://bugs.webkit.org/show_bug.cgi?id=69770
-
-        Reviewed by Antonio Gomes.
-
-        We were just appending the given URL to the absolute URI of the main
-        frame, which resulted in "file:///foo/bar/baz.htmltheother/url.html"
-        instead of "file:///foo/bar/theother/url.html".
-
-        This should make fast/dom/navigation-type-navigate.html behave
-        better (it still fails, but later).
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::queueLoad):
-
-2011-10-13  Arko Saha  <arko@motorola.com>
-
-        Microdata: Basic implementation of document.getItems() method.
-        https://bugs.webkit.org/show_bug.cgi?id=68610
-
-        Reviewed by Ryosuke Niwa.
-
-        Added ENABLE(MICRODATA) feature flag. Implement document.getItems() DOM API.
-        Spec : http://www.whatwg.org/specs/web-apps/current-work/complete/microdata.html
-
-        * Scripts/build-webkit:
-
-2011-10-14  Csaba Osztrogonác  <ossy@webkit.org>
-
-        new-run-webkit-tests does not support qt-4.8 results
-        https://bugs.webkit.org/show_bug.cgi?id=64071
-
-        Roll-back second part of r97252. :)
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-
-2011-10-14  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] DRT: Do not use OwnFastMallocPtr to manage char*'s.
-        https://bugs.webkit.org/show_bug.cgi?id=70106
-
-        Reviewed by Antonio Gomes.
-
-        OwnFastMallocPtr was being used as a smart pointer that automatically called
-        free() on the strings returned by the EFL or by ewk.
-
-        However, when WTF is built in release mode, it uses its own memory management
-        code instead of using the system malloc(), free() and friends. This means bad
-        things will happen when one uses WTF's free() on memory allocated with system
-        malloc() by the EFL or ewk.
-
-        The easiest way to solve this is to call free() ourselves.
-
-        * DumpRenderTree/efl/DumpRenderTree.cpp:
-        (dumpFramesAsText):
-        (getFinalTestURL):
-
-2011-10-14  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] Add DumpRenderTreeSupportEfl
-        https://bugs.webkit.org/show_bug.cgi?id=68458
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Make the calls in DumpRenderTree use DumpRenderTreeSupportEfl.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::initialize): Turn on mock scrollbars.
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        (DumpRenderTreeChrome::onWindowObjectCleared):
-        (DumpRenderTreeChrome::onDocumentLoadFinished):
-        * DumpRenderTree/efl/GCControllerEfl.cpp:
-        (GCController::collect):
-        (GCController::collectOnAlternateThread):
-        (GCController::getJSObjectCount):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::counterValueForElementById):
-        (LayoutTestController::pageNumberForElementById):
-        (LayoutTestController::numberOfPages):
-        (LayoutTestController::workerThreadCount):
-        (LayoutTestController::findString):
-        (LayoutTestController::pauseAnimationAtTimeOnElementWithId):
-        (LayoutTestController::pauseTransitionAtTimeOnElementWithId):
-        (LayoutTestController::sampleSVGAnimationForElementAtTime):
-        (LayoutTestController::numberOfActiveAnimations):
-        (LayoutTestController::suspendAnimations):
-        (LayoutTestController::resumeAnimations):
-        * DumpRenderTree/efl/PixelDumpSupportEfl.cpp:
-        (createBitmapContextFromWebView):
-
-2011-10-14  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Enable NRWT for Qt 4.8 version too, because it is supported after r97461.
-
-        Unreviewed.
-
-        * Scripts/run-webkit-tests:
-        (useNewRunWebKitTests):
-
-2011-10-14  Csaba Osztrogonác  <ossy@webkit.org>
-
-        new-run-webkit-tests does not support qt-4.8 results
-        https://bugs.webkit.org/show_bug.cgi?id=64071
-
-        Roll-back r97252 with unit test fix.
-
-        Reviewed by Csaba Osztrogonác.
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-
-2011-10-13  Ojan Vafai  <ojan@chromium.org>
-
-        Make filter-build-webkit exit 1 if the build fails.
-        https://bugs.webkit.org/show_bug.cgi?id=70080
-
-        Reviewed by Eric Seidel.
-
-        This only works if you redirect stderr to stdout, but it at least makes it possible.
-        This is useful if you want to run a followup command (e.g. run-webkit-tests) but
-        only if the build succeeds.
-
-        * Scripts/filter-build-webkit:
-
-2011-10-13  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        land-cowboy should at least check style.
-        https://bugs.webkit.org/show_bug.cgi?id=70073
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/tool/commands/download.py: Added CheckStyle step to LandCowboy command.
-
-2011-10-13  Tony Chang  <tony@chromium.org>
-
-        fix regex in layout test times dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=70059
-
-        This fixes the treemapfocus query param.
-
-        Reviewed by Ojan Vafai.
-
-        * TestResultServer/static-dashboards/treemap.html:
-
-2011-10-13  Beth Dakin  <bdakin@apple.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=70050
-        DRT and WRT should have HiDPI testing capabilities
-
-        Reviewed by Darin Adler.
-
-        New layoutTestController function setBackingScaleFactor takes a double for a scale 
-        factor and a callback function to call once the backing scale factor has 
-        successfully been set for the view.
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setBackingScaleFactorCallback):
-        (LayoutTestController::staticFunctions):
-
-        On Mac, setBackingScaleFactor calls WebView _setCustomBackingScaleFactor. Other 
-        platforms do nothing.
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setBackingScaleFactor):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setBackingScaleFactor):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setBackingScaleFactor):
-
-        Reset the backing scale factor by calling _setCutsomBackingScaleFactor with a 
-        value of 0, which resets to the system default.
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting):
-
-        When generating the pixel dump, create a Bitmap of the appropriate size based on 
-        the backing scale factor. If it is a HiDPI view, paint into the context using 
-        displayRectIgnoringOpacity.
-        * DumpRenderTree/mac/PixelDumpSupportMac.mm:
-        (createBitmapContextFromWebView):
-
-        And now the same stuff for WK2. Again, new layoutTestController function 
-        setBackingScaleFactor takes a double for a scale factor and a callback function. 
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::setBackingScaleFactor):
-        (WTR::LayoutTestController::callSetBackingScaleFactorCallback):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-        The InjectedBundle sends a message to the UI process to set the backing scale 
-        factor. It also processes a message the UI process will send back once it 
-        completes this task, and at that time, the InjectedBundle calls the callback.
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::didReceiveMessage):
-        (WTR::InjectedBundle::postSetBackingScaleFactor):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-
-        Again, reset the backing scale factor by calling WKPageSetCustomBackingScaleFactor 
-        with a value of 0, which resets to the system default.
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-
-        Upon receiving the SetBackingScaleFactor message, call 
-        WKPageSetCustomBackingScaleFactor to the given scale factor, and post a message 
-        back to InjectedBundle to say it has been done.
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-        
-        Don't use window snapshotting for the HiDPI tests. We don't have a way to fake a 
-        window's scale factor so we have to avoid that.
-        * WebKitTestRunner/cg/TestInvocationCG.cpp:
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-
-2011-10-13  John Knottenbelt  <jknotten@chromium.org>
-
-        [Chromium] Allow building without speech input enabled.
-        https://bugs.webkit.org/show_bug.cgi?id=69867
-
-        Reviewed by Darin Fisher.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::addMockSpeechInputResult):
-
-2011-10-13  Kent Tamura  <tkent@chromium.org>
-
-        [Chromium] A DRT fix for r97348.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::overridePreference):
-        Ignore overridePreference() for "WebKitWebAudioEnabled", and don't
-        print an error message.
-
-2011-10-12  Lucas Forschler  <lforschler@apple.com>
-
-        Update kill-old-processes logic.
-        https://bugs.webkit.org/show_bug.cgi?id=63651
-
-        Reviewed by Ryosuke Niwa.
-
-        Remove unused mac platform specific folder.
-        Update master.config to use new kill-old-processes.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        * BuildSlaveSupport/kill-old-processes:
-        * BuildSlaveSupport/mac: Removed.
-
-2011-10-12  Ryosuke Niwa  <rniwa@webkit.org>
-
-        [NRWT] New tests without expected files are reported as flakey tests
-        https://bugs.webkit.org/show_bug.cgi?id=67268
-
-        Reviewed by Dirk Pranke.
-
-        The bug was caused by summarize_results's regarding all tests that have an entry in result_summary
-        and no entry in retry_summary as flaky. Since we don't retry missing tests, there will be no entries
-        for missing results in retry_summary.
-
-        Fixed the bug by treating missing results separately.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-
-2011-10-12  Adam Barth  <abarth@webkit.org>
-
-        Remove ENABLE(XHTMLMP) and associated code
-        https://bugs.webkit.org/show_bug.cgi?id=69729
-
-        Reviewed by David Levin.
-
-        * Scripts/build-webkit:
-        * Scripts/old-run-webkit-tests:
-        * Scripts/webkitperl/features.pm:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-
-2011-10-12  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Kill old run-webkit-tests processes in kill-process on Mac
-        https://bugs.webkit.org/show_bug.cgi?id=69976
-
-        Reviewed by Dirk Pranke.
-
-        Add a system call to remove all python processes running run-webkit-tests.
-
-        * BuildSlaveSupport/kill-old-processes:
-        * BuildSlaveSupport/mac: Removed.
-
-2011-10-12  Simon Fraser  <simon.fraser@apple.com>
-
-        Many WK2 snapshots are blank
-        https://bugs.webkit.org/show_bug.cgi?id=69953
-
-        Reviewed by Beth Dakin.
-        
-        Two fixes:
-        1. negating a size_t in CGContextTranslateCTM() fails, because
-        size_t is unsigned. Fix by casing to CGFloat before negation.
-        
-        2. Turn on window autodisplay, so that compositing tests snapshot correctly.
-        Autodisplay is necessary to kick off Core Animation rendering.
-
-        * WebKitTestRunner/cg/TestInvocationCG.cpp:
-        (WTR::createCGContextFromImage):
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (WTR::PlatformWebView::PlatformWebView):
-
-2011-10-12  Adam Barth  <abarth@webkit.org>
-
-        commit-queue doesn't have a friendly error message when the reviewer line is messed up
-        https://bugs.webkit.org/show_bug.cgi?id=69979
-
-        Reviewed by Eric Seidel.
-
-        Rather than combining the ChangeLog validation with a more complicated
-        command, this patch has the commit-queue run it as a separate command,
-        which will give us more control over the error message.
-
-        * Scripts/webkitpy/tool/bot/commitqueuetask.py:
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/steps/validatechangelogs.py:
-        * Scripts/webkitpy/tool/steps/validatereviewer.py:
-
-2011-10-12  Eric Seidel  <eric@webkit.org>
-
-        Layout tests asserting in LayoutTestController::pathToLocalResource()
-        https://bugs.webkit.org/show_bug.cgi?id=69898
-
-        Reviewed by Simon Fraser.
-
-        old-run-webkit-tests just didn't know to set LOCAL_RESOURCE_ROOT, oops.
-
-        * Scripts/old-run-webkit-tests:
-        (openDumpTool):
-
-2011-10-12  Adam Barth  <abarth@webkit.org>
-
-        The commit-queue doesn't tell me which tests my patch broke
-        https://bugs.webkit.org/show_bug.cgi?id=69975
-
-        Reviewed by Eric Seidel.
-
-        We now print the list of newly failing tests, like we do for the EWS.
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2011-10-10  Alice Boxhall  <aboxhall@chromium.org>
-
-        Added myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-10-12  Adam Barth  <abarth@webkit.org>
-
-        _run_tests is a confusing variable name in webkitpy
-        https://bugs.webkit.org/show_bug.cgi?id=69971
-
-        Reviewed by Eric Seidel.
-
-        Eric and I thought this was a function.
-
-        * Scripts/webkitpy/tool/bot/earlywarningsystemtask.py:
-
-2011-10-12  Tony Chang  <tony@chromium.org>
-
-        Fix test-webkitpy after r97307 and r97293.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py: options.time_out_ms
-          is None during tests so add back the check.
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py: The
-          output directory is now build/Debug.
-
-2011-10-12  Tony Chang  <tony@chromium.org>
-
-        [chromium] remove old build dirs on chromium-win
-        https://bugs.webkit.org/show_bug.cgi?id=69961
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py: Output is now
-          always in build and never in chrome or webkit.
-
-2011-10-12  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        garden-o-matic's "Expect Failure" button does not work correctly, so we should remove it until the plumbing is fixed to avoid landmines.
-        https://bugs.webkit.org/show_bug.cgi?id=69954
-
-        Also renamed the action and associated event name to address an FIXME.
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js: Renamed event name.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/actions.js: Renamed the action.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js: Removed action temporarily.
-
-2011-10-12  Tony Chang  <tony@chromium.org>
-
-        stop spamming 'stopping test driver timed out, killing it' when running rwt
-        https://bugs.webkit.org/show_bug.cgi?id=69938
-
-        Reviewed by Adam Barth.
-
-        In http://trac.webkit.org/changeset/95875 , we made the timeout for
-        stopping the driver based on time_out_ms, but we based it on the wrong
-        default times.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2011-10-12  Simon Fraser  <simon.fraser@apple.com>
-
-        3D transforms are flattened in WebKit2 snapshots
-        https://bugs.webkit.org/show_bug.cgi?id=68276
-
-        Reviewed by Adam Roben.
-        
-        Fix WKImage leak noticed by Adam.
-
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (WTR::PlatformWebView::windowSnapshotImage):
-
-2011-10-12  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        garden-o-matic should color-code test failure types.
-        https://bugs.webkit.org/show_bug.cgi?id=69945
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures.js: Added an extra span for styling.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures_unittests.js: Updated tests.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js: Ditto.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/notifications.css: Added color-coding.
-
-2011-10-12  Adam Barth  <abarth@webkit.org>
-
-        webkitpy tests are failing on Mac bots
-        https://bugs.webkit.org/show_bug.cgi?id=69929
-
-        Reviewed by Simon Fraser.
-
-        Admit that Lion exists.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-
-2011-10-12  Simon Fraser  <simon.fraser@apple.com>
-
-        Improve output of run-api-tests to make time-outs more obvious
-        https://bugs.webkit.org/show_bug.cgi?id=69788
-
-        Reviewed by Adam Roben.
-        
-        List the tests that failed and timed out at the bottom of the output,
-        if run with --verbose.
-
-        * Scripts/run-api-tests:
-        (runAllTests):
-        (runTest):
-
-2011-10-12  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r97252.
-        http://trac.webkit.org/changeset/97252
-        https://bugs.webkit.org/show_bug.cgi?id=69944
-
-        Broke test-webkpy (Requested by abarth on #webkit).
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-
-2011-10-12  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
-
-        new-run-webkit-tests does not support qt-4.8 results
-        https://bugs.webkit.org/show_bug.cgi?id=64071
-
-        Reviewed by Csaba Osztrogonác.
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-
-2011-10-10  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] [WebKit2] Make adding another unit test easier
-        https://bugs.webkit.org/show_bug.cgi?id=69409
-
-        Reviewed by Gustavo Noronha Silva.
-
-        * Scripts/run-gtk-tests: Update run-gtk-tests to be able to execute
-        new WebKit2 tests.
-
-2011-10-11  Takashi Toyoshima  <toyoshim@chromium.org>
-
-        [WebSocket] update pywebsocket to 0.6b6.
-        https://bugs.webkit.org/show_bug.cgi?id=69824
-
-        Reviewed by Kent Tamura.
-
-        WebKit supports WebSocket with version 8 based protocol for now.
-        We should update its protocol to version 13 based one like hybi-17.
-        pywebsocket 0.6b6 supports both of version 8 and 13.
-
-        * Scripts/webkitpy/thirdparty/__init__.py:
-
-2011-10-11  Simon Fraser  <simon.fraser@apple.com>
-
-        WebKitTestRunner needs to link with WebKit for NSURL category methods
-        https://bugs.webkit.org/show_bug.cgi?id=69892
-
-        Reviewed by Sam Weinig.
-        
-        WebDragClient::declareAndWriteDragImage() was throwing an Obj-C exception on 10.6 because
-        the +_web_originalDataAsString selector on NSURL was not recognized. Link with
-        WebKit.framework to fix this.
-
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-
-2011-10-11  Adam Barth  <abarth@webkit.org>
-
-        sheriffbot takes too long to acknowledge rollout commands
-        https://bugs.webkit.org/show_bug.cgi?id=69871
-
-        Reviewed by Eric Seidel.
-
-        We used to update the working copy before acknowledging the command
-        because we wanted to ping all the relevant IRC nicks.  That's caused a
-        bunch of frustration because folks don't know whether the bot has heard
-        their commands.
-
-        This patch makes the bot reply immediately before updating the working
-        copy.  All the relevenat folks are still pinged when the bot finishes
-        preparing the rollout.
-
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        * Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py:
-
-2011-10-11  Adam Barth  <abarth@webkit.org>
-
-        test-webkitpy fails on Lion
-        https://bugs.webkit.org/show_bug.cgi?id=69873
-
-        Reviewed by Eric Seidel.
-
-        This patch fixes one of the two failures.  I'll need to track down the
-        other failure another time.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-
-2011-10-11  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should warn me when run-webkit-tests errors out (e.g., due to python screw-ups)
-        https://bugs.webkit.org/show_bug.cgi?id=65230
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch causes us to treat crashed or hung run-webkit-tests runs
-        similarly to how we treat compile failures.  In some sense, they're
-        similar because they prevent us from getting test coverage.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders_unittests.js:
-
-2011-10-11  Adam Barth  <abarth@webkit.org>
-
-        Failing builder display in garden-o-matic should have the same visual style as the failure grid
-        https://bugs.webkit.org/show_bug.cgi?id=69876
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch generalizes the view we use for failing builders in the
-        FailureGrid so that we can use it for the list of builders that aren't
-        compiling.
-
-        One downside of this patch is that it makes it harder to tell when
-        debug builders are failing (as opposed to release builders) because
-        that information isn't presented in this view.  A future patch will
-        improve this aspect.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/failures.css:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/notifications.css:
-
-2011-10-11  Filip Pizlo  <fpizlo@apple.com>
-
-        Some API tests are timing out in Release
-        https://bugs.webkit.org/show_bug.cgi?id=69787
-
-        Reviewed by Mark Rowe.
-        
-        NDEBUG must be set in release builds. Otherwise the world breaks. Also added some
-        magic to ensure that GTest builds in release mode in clang with NDEBUG set.
-
-        * TestWebKitAPI/Configurations/Base.xcconfig:
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/config.h:
-
-2011-10-11  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic links to flakiness dashboard should open in a new tab
-        https://bugs.webkit.org/show_bug.cgi?id=69864
-
-        Reviewed by Dimitri Glazkov.
-
-        This bug was obvious in the first five minutes of using this new
-        feature.  :)
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js:
-
-2011-10-11  Adam Barth  <abarth@webkit.org>
-
-        Tweak the Content-Security-Policy for garden-o-matic.  It turns out
-        that * doesn't really mean "all".  I've emailed the W3C working group
-        about changing the spec.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-
-2011-10-11  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should link to the flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=69862
-
-        Reviewed by Dimitri Glazkov.
-
-        The flakiness dashboard has lots of great information about the failure
-        history of each test.  This patch adds a link from garden-o-matic to
-        the flakiness dashboard so the gardener can look at this information.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js:
-
-2011-10-11  David Levin  <levin@chromium.org>
-
-        watchlist: assertRaisesRegexp implementation should be compatible with python 2.7.
-        https://bugs.webkit.org/show_bug.cgi?id=69789
-
-        Reviewed by Eric Seidel.
-
-        Made the signature of _assertRaisesRegexp match that of Python 2.7.
-
-        * Scripts/webkitpy/common/watchlist/watchlistloader_unittest.py: Adjusted to be compatible with Python 2.7.
-        * Scripts/webkitpy/common/watchlist/watchlistparser_unittest.py: Ditto.
-        * Scripts/webkitpy/common/webkitunittest.py: Ditto.
-        * Scripts/webkitpy/tool/commands/applywatchlistlocal_unittest.py: Ditto.
-
-2011-10-11  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] DRT: Do not abort() when an unknown key is pressed.
-        https://bugs.webkit.org/show_bug.cgi?id=69856
-
-        Reviewed by Antonio Gomes.
-
-        A lot of tests crash due to the previous behaviour. Just using the
-        received name of the pressed key works most of the time, and when it
-        does not the failing tests should tell us.
-
-        * DumpRenderTree/efl/EventSender.cpp:
-        (keyPadNameFromJSValue):
-        (keyNameFromJSValue):
-        (keyDownCallback):
-
-2011-10-11  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
-
-        [Qt] [WK2] NRWT failed to launch MiniBrowser after test run
-        https://bugs.webkit.org/show_bug.cgi?id=68016
-
-        Reviewed by Chang Shu.
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-
-2011-10-11  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] DRT: Return the right window count in LayoutTestController.
-        https://bugs.webkit.org/show_bug.cgi?id=69764
-
-        Reviewed by Antonio Gomes.
-
-        Follow-up to r96943: now that we have DumpRenderTreeChrome and
-        DumpRenderTreeView in the tree, we can correctly count the number of
-        open windows in DRT.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::windowCount):
-
-2011-10-11  Jer Noble  <jer.noble@apple.com>
-
-        REGRESSION (r96770-r96777): fast/dom/Window/window-properties.html, fast/dom/prototype-inheritance-2.html, fast/js/global-constructors.html failing on SnowLeopard Intel Release (Tests)
-        https://bugs.webkit.org/show_bug.cgi?id=69800
-
-        Reviewed by Csaba Osztrogonác.
-
-        Enable WEB_AUDIO at runtime.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-
-2011-10-11  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] DRT: Make sure IconDatabase is closed before trying to open it again.
-        https://bugs.webkit.org/show_bug.cgi?id=69769
-
-        Reviewed by Antonio Gomes.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setIconDatabaseEnabled):
-
-2011-10-11  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Remove all references to QTDIR_build and standalone_package
-
-        Qt is now modularized, which means we no longer import WebKit into
-        the Qt source tree. Instead we use git submodules, and building
-        QtWebKit as "part of Qt" is really building QtWebKit as from trunk.
-
-        To decrease the number of buildsystem configurations we also remove
-        the standalone_package code-path used when we were providing tarballs
-        with the derived sources pre-generated.
-
-        Reviewed by Simon Hausmann.
-
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * QtTestBrowser/QtTestBrowser.pro:
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro:
-
-2011-10-11  Dominic Mazzoni  <dmazzoni@google.com>
-
-        Update Chromium accessibility support in DRT.
-        https://bugs.webkit.org/show_bug.cgi?id=69676
-
-        Reviewed by Chris Fleizach.
-
-        Adds several missing properties and methods to enable more
-        tests to pass, and in particular adds support for notification
-        callbacks.
-
-        * DumpRenderTree/chromium/AccessibilityController.cpp:
-        (AccessibilityController::AccessibilityController):
-        (AccessibilityController::reset):
-        (AccessibilityController::getFocusedElement):
-        (AccessibilityController::shouldLogAccessibilityEvents):
-        (AccessibilityController::notificationReceived):
-        (AccessibilityController::logAccessibilityEventsCallback):
-        * DumpRenderTree/chromium/AccessibilityController.h:
-        * DumpRenderTree/chromium/AccessibilityUIElement.cpp:
-        (getHelpText):
-        (getStringValue):
-        (getOrientation):
-        (AccessibilityUIElement::AccessibilityUIElement):
-        (AccessibilityUIElement::getChildAtIndex):
-        (AccessibilityUIElement::isEqual):
-        (AccessibilityUIElement::notificationReceived):
-        (AccessibilityUIElement::roleGetterCallback):
-        (AccessibilityUIElement::titleGetterCallback):
-        (AccessibilityUIElement::descriptionGetterCallback):
-        (AccessibilityUIElement::helpTextGetterCallback):
-        (AccessibilityUIElement::stringValueGetterCallback):
-        (AccessibilityUIElement::xGetterCallback):
-        (AccessibilityUIElement::yGetterCallback):
-        (AccessibilityUIElement::widthGetterCallback):
-        (AccessibilityUIElement::heightGetterCallback):
-        (AccessibilityUIElement::intValueGetterCallback):
-        (AccessibilityUIElement::minValueGetterCallback):
-        (AccessibilityUIElement::maxValueGetterCallback):
-        (AccessibilityUIElement::childrenCountGetterCallback):
-        (AccessibilityUIElement::insertionPointLineNumberGetterCallback):
-        (AccessibilityUIElement::selectedTextRangeGetterCallback):
-        (AccessibilityUIElement::isEnabledGetterCallback):
-        (AccessibilityUIElement::isRequiredGetterCallback):
-        (AccessibilityUIElement::isFocusedGetterCallback):
-        (AccessibilityUIElement::isFocusableGetterCallback):
-        (AccessibilityUIElement::isSelectedGetterCallback):
-        (AccessibilityUIElement::isSelectableGetterCallback):
-        (AccessibilityUIElement::isMultiSelectableGetterCallback):
-        (AccessibilityUIElement::isExpandedGetterCallback):
-        (AccessibilityUIElement::isCheckedGetterCallback):
-        (AccessibilityUIElement::isVisibleGetterCallback):
-        (AccessibilityUIElement::isOffScreenGetterCallback):
-        (AccessibilityUIElement::isCollapsedGetterCallback):
-        (AccessibilityUIElement::hasPopupGetterCallback):
-        (AccessibilityUIElement::isValidGetterCallback):
-        (AccessibilityUIElement::orientationGetterCallback):
-        (AccessibilityUIElement::showMenuCallback):
-        (AccessibilityUIElement::pressCallback):
-        (AccessibilityUIElement::isEqualCallback):
-        (AccessibilityUIElement::addNotificationListenerCallback):
-        (AccessibilityUIElement::removeNotificationListenerCallback):
-        (AccessibilityUIElement::takeFocusCallback):
-        (AccessibilityUIElement::fallbackCallback):
-        (RootAccessibilityUIElement::getChildAtIndex):
-        (AccessibilityUIElementList::getOrCreate):
-        * DumpRenderTree/chromium/AccessibilityUIElement.h:
-        * DumpRenderTree/chromium/CppVariant.cpp:
-        (CppVariant::invokeDefault):
-        * DumpRenderTree/chromium/CppVariant.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::reset):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::postAccessibilityNotification):
-
-2011-10-10  Adam Klein  <adamk@chromium.org>
-
-        Support Distributed-CompileC as an action name in filter-build-webkit
-        https://bugs.webkit.org/show_bug.cgi?id=69783
-
-        Reviewed by Ojan Vafai.
-
-        * Scripts/filter-build-webkit:
-
-2011-10-10  Simon Fraser  <simon.fraser@apple.com>
-
-        3D transforms are flattened in WebKit2 snapshots
-        https://bugs.webkit.org/show_bug.cgi?id=68276
-
-        Reviewed by Anders Carlsson.
-        
-        Use a snapshot of the window, rather than an image from the web process
-        for pixel testing in WebKitTestRunner. This correctly captures compositing
-        layers, so works for 3D transform tests.
-
-        * WebKitTestRunner/PlatformWebView.h: Add a windowSnapshotImage() method.
-        * WebKitTestRunner/cg/TestInvocationCG.cpp:
-        (WTR::createCGContextFromImage): Add a param to optionally flip the image when drawing.
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected): Call windowSnapshotImage(), and if it returns an image,
-        use that instead of the image we get from the web process.
-        * WebKitTestRunner/gtk/PlatformWebViewGtk.cpp:
-        (WTR::PlatformWebView::windowSnapshotImage): Stub out the new method.
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (WTR::PlatformWebView::windowSnapshotImage): Ditto.
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::windowSnapshotImage): Ditto.
-        * WebKitTestRunner/win/PlatformWebViewWin.cpp:
-        (WTR::PlatformWebView::windowSnapshotImage): Ditto.
-
-2011-10-10  David Levin  <levin@chromium.org>
-
-        Quick fix for watchlist unit test failures when using Python 2.7+
-        Reviewed by Adam Barth.
-
-        Filed bug https://bugs.webkit.org/show_bug.cgi?id=69789 about a
-        better fix.
-
-        * Scripts/webkitpy/common/webkitunittest.py: Always use our
-        version of assertRaisesRegexp.
-
-2011-10-10  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r97082.
-        http://trac.webkit.org/changeset/97082
-        https://bugs.webkit.org/show_bug.cgi?id=69784
-
-        broke Windows build (Requested by smfr on #webkit).
-
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-        * WebKitTestRunner/cg/TestInvocationCG.cpp: Renamed from Tools/WebKitTestRunner/cg/TestInvocationCG.mm.
-        (WTR::createCGContextFromImage):
-        (WTR::computeMD5HashStringForContext):
-        (WTR::dumpBitmap):
-        (WTR::paintRepaintRectOverlay):
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (WTR::PlatformWebView::PlatformWebView):
-
-2011-10-10  Simon Fraser  <simon.fraser@apple.com>
-
-        3D transforms are flattened in WebKit2 snapshots
-        https://bugs.webkit.org/show_bug.cgi?id=68276
-
-        Reviewed by Anders Carlsson.
-        
-        The WKImage passed from the WebProcess when pixel dumping is created by painting compositing layers
-        flattened, which flattens 3D transforms. Instead, use CGWindowListCreateImage() to get a snapshot of
-        the window when doing pixel tests.
-        
-        Also allow the window to auto-display, so that Core Animation layers are rendered, and animate.
-
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj: TestInvocationCG became a .mm file
-        * WebKitTestRunner/cg/TestInvocationCG.mm: Renamed from Tools/WebKitTestRunner/cg/TestInvocationCG.cpp.
-        (WTR::createBitmapCGContext): Utility function to create a bitmap context.
-        (WTR::computeMD5HashStringForContext):
-        (WTR::dumpBitmap):
-        (WTR::paintRepaintRectOverlay):
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected): Use CGWindowListCreateImage() to
-        grap a snapshot of the window, rather than relying on the WKImage which was passed from the web process.
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (WTR::PlatformWebView::PlatformWebView): Remove the line that turned off autoDisplay for the NSWindow.
-        We need the window to autodisplay for Core Animation to render layers and start animations.
-
-2011-10-10  Simon Fraser  <simon.fraser@apple.com>
-
-        WebKitTestRunner needs layoutTestController.setWindowIsKey
-        https://bugs.webkit.org/show_bug.cgi?id=42688
-
-        Reviewed by Anders Carlsson.
-
-        Implement layoutTestController.setWindowIsKey() in WebKitTestRunner.
-        This sets a flag that the platform layer uses to indicate that
-        the window is the key window, which fixes focus ring drawing
-        in pixel results.
-        
-        Also focus the web view when we get a 'didCommitLoad' for the main
-        frame, as DumpRenderTree does.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::postSetWindowIsKey):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::cacheLayoutTestControllerCallback): Replace some magic numbers with an enum.
-        (WTR::LayoutTestController::addChromeInputField):
-        (WTR::LayoutTestController::removeChromeInputField):
-        (WTR::LayoutTestController::focusWebView):
-        (WTR::LayoutTestController::setWindowIsKey):
-        (WTR::LayoutTestController::callAddChromeInputFieldCallback):
-        (WTR::LayoutTestController::callRemoveChromeInputFieldCallback):
-        (WTR::LayoutTestController::callFocusWebViewCallback):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        * WebKitTestRunner/PlatformWebView.h: Add an NSWindow subclass
-        so that we can override -isKeyWindow. Use a boolean member variable
-        to track window key status.
-        (WTR::PlatformWebView::setWindowIsKey):
-        (WTR::PlatformWebView::windowIsKey):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::runModal): Change the window key status when showing a modal alert, as DRT does.
-        (WTR::closeOtherPage): Use the same cast as other functions.
-        (WTR::focus): Implement to call setWindowIsKey(true)
-        (WTR::unfocus): Implement to call setWindowIsKey(false)
-        (WTR::TestController::createOtherPage): Add page callbacks for focus and unfocus.
-        (WTR::TestController::initialize):
-        (WTR::TestController::didCommitLoadForFrame): Hook up callback to focus the web view, as DRT does.
-        * WebKitTestRunner/TestController.h:
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::didReceiveSynchronousMessageFromInjectedBundle):
-        * WebKitTestRunner/gtk/PlatformWebViewGtk.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (-[WebKitTestRunnerWindow isKeyWindow]):
-        (WTR::PlatformWebView::PlatformWebView): Make a WebKitTestRunnerWindow.
-        (WTR::PlatformWebView::~PlatformWebView): Clean up the back pointer on the NSWindow subclass, in case it outlives us.
-        (WTR::PlatformWebView::focus): Set the view as the first responder, and the window as the key window, as DRT does.
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-        * WebKitTestRunner/win/PlatformWebViewWin.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-
-2011-10-10  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        check-webkit-style: Add readability exception for Ewk_* data types.
-        https://bugs.webkit.org/show_bug.cgi?id=69763
-
-        Reviewed by David Levin.
-
-        Many EFL-related files (such as EditorClientEfl.h or
-        DumpRenderTreeSupportEfl.h) need to have declarations such as "typedef
-        struct _Ewk_Foo Ewk_Foo", which currently produce false positives in
-        check-webkit-style.
-
-        Add an exception for them, just like there are exceptions for
-        Evas_*, Ecore_* and others.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-
-2011-10-10  Dominic Mazzoni  <dmazzoni@google.com>
-
-        [Chromium] Get rid of WebAccessibilityCache.
-        https://bugs.webkit.org/show_bug.cgi?id=68224
-
-        Reviewed by Dimitri Glazkov.
-
-        * DumpRenderTree/chromium/AccessibilityController.cpp:
-        (AccessibilityController::bindToJavascript):
-
-2011-10-09  Adam Barth  <abarth@webkit.org>
-
-        Remove "near miss" XSS vulnerabilities in garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=69708
-
-        Reviewed by David Levin.
-
-        Collin Jackson did a security audit of garden-o-matic.  He hasn't found
-        any actual vulnerabilities yet, but he did identify a couple "near
-        misses" where a slight change in garden-o-matic could lead to a
-        vulnerability.  This patch removes those potential issues.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Bugzilla.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js:
-
-2011-10-07  Adam Barth  <abarth@webkit.org>
-
-        Add a Content-Security-Policy to garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=69668
-
-        Reviewed by David Levin.
-
-        This will help mitigate cross-site script and will also help us dogfood CSP.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-
-2011-10-07  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] DRT: Add DumpRenderTreeChrome.{cpp,h}
-        https://bugs.webkit.org/show_bug.cgi?id=66380
-
-        Reviewed by Antonio Gomes.
-
-        This encapsulates EWebKit into an object that manages multiple windows
-        and provides a cleaner interface to EFL's DumpRenderTree.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp: Added.
-        (DumpRenderTreeChrome::create):
-        (DumpRenderTreeChrome::DumpRenderTreeChrome):
-        (DumpRenderTreeChrome::~DumpRenderTreeChrome):
-        (DumpRenderTreeChrome::createNewWindow):
-        (DumpRenderTreeChrome::createView):
-        (DumpRenderTreeChrome::removeWindow):
-        (DumpRenderTreeChrome::initialize):
-        (DumpRenderTreeChrome::extraViews):
-        (DumpRenderTreeChrome::mainFrame):
-        (DumpRenderTreeChrome::mainView):
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        (DumpRenderTreeChrome::onWindowObjectCleared):
-        (DumpRenderTreeChrome::onLoadStarted):
-        (DumpRenderTreeChrome::processWork):
-        (DumpRenderTreeChrome::onLoadFinished):
-        (DumpRenderTreeChrome::onStatusbarTextSet):
-        (DumpRenderTreeChrome::onTitleChanged):
-        (DumpRenderTreeChrome::onDocumentLoadFinished):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.h: Added.
-        * DumpRenderTree/efl/EventSender.cpp:
-        (sendClick): Use browser->mainFrame() instead of mainFrame.
-        (mouseDownCallback): Ditto.
-        (mouseUpCallback): Ditto.
-        (mouseMoveToCallback): Ditto.
-        (mouseScrollByCallback): Ditto.
-        (keyDownCallback): Ditto.
-        (scalePageByCallback): Ditto.
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::counterValueForElementById): Use
-        browser->mainFrame() instead of mainFrame.
-        (LayoutTestController::pageNumberForElementById): Ditto.
-        (LayoutTestController::numberOfPages): Ditto.
-        (LayoutTestController::pauseAnimationAtTimeOnElementWithId): Ditto.
-        (LayoutTestController::pauseTransitionAtTimeOnElementWithId): Ditto.
-        (LayoutTestController::sampleSVGAnimationForElementAtTime): Ditto.
-        (LayoutTestController::numberOfActiveAnimations): Ditto.
-        (LayoutTestController::suspendAnimations): Ditto.
-        (LayoutTestController::resumeAnimations): Ditto.
-        (LayoutTestController::setWebViewEditable): Ditto.
-        (LayoutTestController::webHistoryItemCount): Use browser->mainView()
-        instead of browser.
-        (LayoutTestController::queueLoad): Ditto.
-        (LayoutTestController::setAcceptsEditing): Ditto.
-        (LayoutTestController::setUserStyleSheetEnabled): Ditto.
-        (LayoutTestController::setPrivateBrowsingEnabled): Ditto.
-        (LayoutTestController::setFrameFlatteningEnabled): Ditto.
-        (LayoutTestController::setSpatialNavigationEnabled): Ditto.
-        (LayoutTestController::setPluginsEnabled): Ditto.
-        (LayoutTestController::findString): Ditto.
-        (LayoutTestController::setDeveloperExtrasEnabled): Ditto.
-        * DumpRenderTree/efl/PixelDumpSupportEfl.cpp:
-        (createBitmapContextFromWebView): Use browser->mainFrame() instead of
-        mainFrame.
-        * DumpRenderTree/efl/WorkQueueItemEfl.cpp:
-        (LoadItem::invoke): Ditto.
-        (LoadHTMLStringItem::invoke): Ditto.
-        (ScriptItem::invoke): Ditto.
-        (ReloadItem::invoke): Use browser->mainView() instead of browser.
-
-2011-10-07  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt][WK2] Touch mocking is broken with Qt 5 post refactor merge
-        https://bugs.webkit.org/show_bug.cgi?id=69617
-
-        Reviewed by Andreas Kling.
-
-        Injecting fake touch events using qt_translateRawTouchEvent does not work anymore, as it sends
-        the touch events to widgets only. The QML view however is a QWindow. Therefore the fake touch
-        events have to be dispatched through QWindowSystemInterface::handleTouchEvent. As a result the
-        events appear to be spontaenous, which required adjusting the are-we-on-a-real-touch-device
-        logic.
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::MiniBrowserApplication):
-        (MiniBrowserApplication::notify):
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-
-2011-10-06  Adam Barth  <abarth@webkit.org>
-
-        Port PixelZoomer to work in garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=69577
-
-        Reviewed by David Levin.
-
-        This implementation of PixelZoomer is basically a fork of the
-        implementation used by results.html.  These two apps have different
-        requirements on where this code lives.  results.html wants to be
-        self-contained whereas garden-o-matic wants to live in the public_html
-        folder of the buildbot.  We could do something fancy here to share the
-        code, but that's not likely to be of much benefit.
-
-        I had to change a few things about pixelzoomer to accounter for the
-        differences in DOM between results.html and garden-o-matic, but
-        surprisingly little.  I also moved all the code into an anonymous
-        function, which is the style we're suing for module separation in
-        garden-o-matic.  Finally, some jQuery-ims snuck in because I didn't
-        want to drag along too many extra functions from results.html.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/garden-o-matic.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/pixelzoomer.js: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/pixelzoomer.css: Added.
-        (.pixel-zoom-container):
-        (.pixel-zoom-container > *):
-        (.pixel-zoom-container .scaled-image-container):
-        (.scaled-image-container > img):
-
-2011-10-06  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        [EFL] Change data type of parameter in ewk_view_viewport_attributes_get().
-        https://bugs.webkit.org/show_bug.cgi?id=69505
-
-        Reviewed by Andreas Kling.
-
-        * EWebLauncher/main.c: Use *int* variables for width and height of viewport meta tag.
-        (on_viewport_changed):
-
-2011-10-06  Brent Fulgham  <bfulgham@webkit.org>
-
-        [WinCairo] Unreviewed test correction.
-
-        * Scripts/webkitdirs.pm:
-        (argumentsForConfiguration): Add 'wincairo' option to the set of
-        configuration flags used by run-javascript-core tests, so that it
-        does not attempt to run Apple's release version.
-
-2011-10-06  Brent Fulgham  <bfulgham@webkit.org>
-
-        [WinCairo] Unreviewed test correction.
-
-        * BuildSlaveSupport/test-result-archive: Add 'wincairo' to the set
-         of known build slave types so that test-result-archive won't fail
-         when running tests.
-
-2011-10-06  Martin Robinson  <mrobinson@igalia.com>
-
-        The GTK+ WebKit2 headers produce a lot of style warnings
-        https://bugs.webkit.org/show_bug.cgi?id=69481
-
-        Reviewed by David Levin.
-
-        Prevent emitting so many style warnings for GTK+ API. We skip header
-        files in the WebKit2 GTK+ API directory and also avoid warnings about
-        identifier names that begin with "webkit_" in files that contain the
-        string "gtk".
-
-        * Scripts/webkitpy/style/checker.py: Do not check header files in
-        Source/WebKit2/UIProcess/API/gtk that do not end in Private.h. This required
-        adding the ability to specify a regular expression in the skip list. Remove
-        a few files from the skipped list that no longer exist.
-        * Scripts/webkitpy/style/checker_unittest.py: Added a test for this behavior.
-        * Scripts/webkitpy/style/checkers/cpp.py: If a path contains "gtk" don't warn
-        about identifiers that begin with "webkit_".
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Added a test for this behavior.
-
-2011-10-06  Brent Fulgham  <bfulgham@webkit.org>
-
-        [WinCairo] Correct config.json for WinCairo Test builds.
-        https://bugs.webkit.org/show_bug.cgi?id=69272
-
-        Reviewed by Ryosuke Niwa.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Remove
-         old 'WinCairo Debug (Build)' label and replace with correct
-         'WinCairo Release' label.
-
-2011-10-06  David Levin  <levin@chromium.org>
-
-        Add a style checker watchlist definition and add myself to it.
-        https://bugs.webkit.org/show_bug.cgi?id=69564
-
-        Reviewed by Daniel Bates.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2011-10-06  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] DRT: Create icon database path in LayoutTestController::setIconDatabaseEnabled.
-        https://bugs.webkit.org/show_bug.cgi?id=69450
-
-        Reviewed by Ryosuke Niwa.
-
-        This should avoid stderr messages when running
-        webarchive/test-link-rel-icon.html.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setIconDatabaseEnabled):
-
-2011-10-06  Alejandro G. Castro  <alex@igalia.com>
-
-        [WK2] [GTK] Add Skipped file for Webkit2 test runner
-        https://bugs.webkit.org/show_bug.cgi?id=69517
-
-        Use the shared WK2 skipped file also in GTK port.
-
-        Reviewed by Martin Robinson.
-
-        * Scripts/old-run-webkit-tests:
-        (readSkippedFiles):
-
-2011-10-06  Elliot Poger  <epoger@google.com>
-
-        allow new-run-webkit-tests to run on Lion
-        https://bugs.webkit.org/show_bug.cgi?id=69429
-
-        Add fallback lists for chromium-mac-lion, and add chromium-mac-snowleopard
-        directory to fallback lists (even though that directory doesn't exist yet)
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-
-2011-10-03  Hans Wennborg  <hans@chromium.org>
-
-        IndexedDB: Remove SQLite-LevelDB migration code
-        https://bugs.webkit.org/show_bug.cgi?id=69264
-
-        Reviewed by Tony Chang.
-
-        Remove setOverrideIndexedDBBackingStore. It was used in the layout
-        test for migration.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-
-2011-10-05  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Add a command line option to DumpRenderTree and run_webkit_tests.py to enable threaded compositing mode
-        https://bugs.webkit.org/show_bug.cgi?id=69498
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::resetWebSettings):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::setThreadedCompositingEnabled):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-10-05  Erik Arvidsson  <arv@chromium.org>
-
-        [QT] Fix DRT after r96779
-
-        unreviewed.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::dumpHistoryItem):
-
-2011-10-05  Erik Arvidsson  <arv@chromium.org>
-
-        window.location.href and others needlessly decodes URI-encoded characters
-        https://bugs.webkit.org/show_bug.cgi?id=30225
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (normalizeLayoutTestURLInternal): Remove extra encode.
-
-2011-10-05  Darin Adler  <darin@apple.com>
-
-        Fix build.
-
-        * TestWebKitAPI/Tests/WebKit2/CanHandleRequest.cpp:
-        (TestWebKitAPI::TEST): Remove underscore prefix from call to
-        WKContextRegisterURLSchemeAsEmptyDocument.
-
-2011-10-05  Brent Fulgham  <bfulgham@webkit.org>
-
-        [WinCairo] Switch to building Release target, and activate tests.
-        https://bugs.webkit.org/show_bug.cgi?id=69272
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-        Change from debug to release target. Switch from "Build" to
-        "BuildAndTest"
-
-2011-10-05  Simon Fraser  <simon.fraser@apple.com>
-
-        In WebKitTestRunner, text has font smoothing in pixel snapshots
-        https://bugs.webkit.org/show_bug.cgi?id=69396
-
-        Reviewed by Darin Adler.
-        
-        Call the new WKContext method that disables font smoothing in
-        WebKitTestRunner, so that pixel snapshots don't have font smoothing
-        enabled. Remove leading underscore from a WKContext function call.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-
-2011-10-05  David Levin  <levin@chromium.org>
-
-        Improve the watchlist for threading entries.
-        https://bugs.webkit.org/show_bug.cgi?id=69463
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2011-10-05  Adam Roben  <aroben@apple.com>
-
-        Add tests for using RetainPtrs inside HashMap and HashSet
-
-        Fixes <http://webkit.org/b/69414> <rdar://problem/10236833> Using RetainPtr as the key type
-        in HashMap/HashSet fails to compile
-
-        Reviewed by John Sullivan.
-
-        * TestWebKitAPI/Tests/WTF/cf/RetainPtrHashing.cpp: Added.
-        (TestWebKitAPI::TEST): Show that RetainPtr can be used inside HashSet and as both the key
-        and value type of HashMap.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        Added new file.
-
-2011-10-05  Adam Barth  <abarth@webkit.org>
-
-        Mark as Expected in garden-o-matic is confusing
-        https://bugs.webkit.org/show_bug.cgi?id=69452
-
-        Reviewed by David Levin.
-
-        krit didn't understand the difference between this button and the
-        Rebaseline button because both of them seem to indicate that the new
-        behavior is expected.  This patch renames "Mark as Expected" to "Expect
-        Failure" to make it clear that we're just expecting the test to fail
-        rather than accepting the new results as passing.  We might need to
-        iterate on these names a bit more if folks continue to find them
-        confusing.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/actions.js:
-
-2011-10-05  Adam Barth  <abarth@webkit.org>
-
-        Add watchlist entries for abarth
-        https://bugs.webkit.org/show_bug.cgi?id=69461
-
-        Reviewed by David Levin.
-
-        I might have gone a bit overboard.  We'll see if this is too much spam
-        for me.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2011-10-05  Brent Fulgham  <bfulgham@webkit.org>
-
-        [WinCairo] Teach old-run-webkit-tests about wincairo.
-        https://bugs.webkit.org/show_bug.cgi?id=69280
-
-        Reviewed by Adam Roben.
-
-        * Scripts/old-run-webkit-tests: Handle wincairo case.
-        (buildPlatformResultHierarchy):
-        (readSkippedFiles): Ditto
-        * Scripts/webkitdirs.pm: Deal with wincairo build case.
-        (determineConfiguration):
-
-2011-10-05  Chang Shu  <cshu@webkit.org>
-
-        [WK2] Support setMarkedText/hasMarkedText/unmarkText/insertText for WTR TextInputController
-        https://bugs.webkit.org/show_bug.cgi?id=68924
-
-        Added TextInputController files and JS interfaces for the above functions.
-
-        Reviewed by Darin Adler.
-
-        * WebKitTestRunner/DerivedSources.make:
-        * WebKitTestRunner/DerivedSources.pro:
-        * WebKitTestRunner/GNUmakefile.am:
-        * WebKitTestRunner/InjectedBundle/Bindings/TextInputController.idl: Added.
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (WTR::InjectedBundle::textInputController):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::didClearWindowForFrame):
-        * WebKitTestRunner/InjectedBundle/TextInputController.cpp: Added.
-        (WTR::TextInputController::create):
-        (WTR::TextInputController::TextInputController):
-        (WTR::TextInputController::~TextInputController):
-        (WTR::TextInputController::wrapperClass):
-        (WTR::TextInputController::makeWindowObject):
-        (WTR::TextInputController::setMarkedText):
-        (WTR::TextInputController::hasMarkedText):
-        (WTR::TextInputController::unmarkText):
-        (WTR::TextInputController::insertText):
-        * WebKitTestRunner/InjectedBundle/TextInputController.h: Added.
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro:
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-        * WebKitTestRunner/win/InjectedBundle.vcproj:
-
-2011-10-04  Oliver Hunt  <oliver@apple.com>
-
-        Add rudimentary filtering to write barriers
-        https://bugs.webkit.org/show_bug.cgi?id=69392
-
-        Reviewed by Filip Pizlo.
-
-        When we're recording gc phase times Heap.o picks up
-        some exit time destructors, so we'll just ignore Heap.o
-        in this check.
-
-        * Scripts/check-for-exit-time-destructors:
-
-2011-10-05  Chang Shu  <cshu@webkit.org>
-
-        [WK2] WebKitTestRunner needs LayoutTestController.dumpConfigurationForViewport
-        https://bugs.webkit.org/show_bug.cgi?id=69365
-
-        Reviewed by Darin Adler.
-
-        Added js API in WTR LayoutTestController.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::dumpConfigurationForViewport):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2011-10-05  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] ImageDiff: Do not clear the image before it is processed and compared
-        https://bugs.webkit.org/show_bug.cgi?id=69378
-
-        Reviewed by Antonio Gomes.
-
-        Commit 61836 to Evas added a few cleanup calls to some
-        evas_object_image functions which effectively made ImageDiff consider
-        all images to be equal.
-
-        It turns out that now evas_object_image_colorspace_set clears any
-        data set, so the call to evas_object_image_data_set was not having any
-        effect.
-
-        * DumpRenderTree/efl/ImageDiff.cpp:
-        (readImageFromStdin): Call evas_object_image_data_set after
-        evas_object_image_colorspace_set.
-
-2011-10-05  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] Fix Evas_Object_Image reference counts and file descriptor leakage in ImageDiff.
-        https://bugs.webkit.org/show_bug.cgi?id=68449
-
-        Reviewed by Antonio Gomes.
-
-        evas_render() must be called to close up temporary files and unmap unused
-        resources. evas_object_image_data_set() must be called after an
-        evas_object_image_data_get() to balance an internal reference count.
-
-        * DumpRenderTree/efl/ImageDiff.cpp:
-        (differenceImageFromDifferenceBuffer):
-        (calculateDifference):
-        (printImage):
-        (printImageDifferences):
-
-2011-10-05  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt][WK2] Unreviewed build fix.
-
-        Don't use WebCore directly in WTR.
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::addChromeInputField):
-        (WTR::PlatformWebView::removeChromeInputField):
-        (WTR::PlatformWebView::makeWebViewFirstResponder):
-
-2011-10-05  David Levin  <levin@chromium.org>
-
-        watchlist: Add more rules for chromium public api and sort the file.
-        https://bugs.webkit.org/show_bug.cgi?id=69323
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2011-10-05  David Levin  <levin@chromium.org>
-
-        watchlist: Don't add the same message to a bug more than once.
-        https://bugs.webkit.org/show_bug.cgi?id=69303
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/net/bugzilla/bug.py: Added a way to determine
-        if a message is in the comments already.
-        * Scripts/webkitpy/common/net/bugzilla/bug_unittest.py: A test for the above.
-        * Scripts/webkitpy/tool/commands/applywatchlistlocal_unittest.py:
-        Pick a bug supplied by the mock. Change the test due to different output
-        from the mock watch list tool.
-        * Scripts/webkitpy/tool/mocktool.py: Change the mock watch list to return
-        another email so it will be filtered out, fix bugs to have the cc and comment fields,
-        and fix fetch_bug to handle bug_id's which are text (because that took me way too long
-        to debug).
-        * Scripts/webkitpy/tool/steps/applywatchlist.py: Change to filter out comments
-        and/or cc's that are already in the bug.
-        * Scripts/webkitpy/tool/steps/applywatchlist_unittest.py: Pick a bug supplied by the mock,
-        and remove a comment that is filtered out.
-
-2011-10-05  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt][WK2] Unreviewed build fix after r96643.
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::addChromeInputField):
-        (WTR::PlatformWebView::removeChromeInputField):
-        (WTR::PlatformWebView::makeWebViewFirstResponder):
-
-2011-10-04  Kent Tamura  <tkent@chromium.org>
-
-        Introduce feature flags for incomplete input types
-        https://bugs.webkit.org/show_bug.cgi?id=68971
-
-        Reviewed by Hajime Morita.
-
-        * Scripts/build-webkit:
-        Add --input-type-{date,datetime,datetimelocal,month,time,week} flags.
-        They are disabled by default.
-
-2011-10-04  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic doesn't launch it's UI on Lion
-        https://bugs.webkit.org/show_bug.cgi?id=69349
-
-        Reviewed by Darin Adler.
-
-        It turns out that Lion is a bit more picky about file URLs.  This patch
-        switches us from using a path to using an actual file URL, silencing
-        the warning and making the tool actually launch on Lion.
-
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-
-2011-10-04  Daniel Bates  <dbates@rim.com>
-
-        Fix Perl undefined variable warning when using run-safari after
-        <http://trac.webkit.org/changeset/96448> (https://bugs.webkit.org/show_bug.cgi?id=68662)
-
-        Rubber-stamped by Alexey Proskuryakov.
-
-        * Scripts/webkitdirs.pm:
-        (runMacWebKitApp): Check that the optional function argument $useOpenCommand
-        is defined before using it in a comparison operation.
-
-2011-10-04  Scott Graham  <scottmg@chromium.org>
-
-        Add GAMEPAD feature flag
-        https://bugs.webkit.org/show_bug.cgi?id=66859
-
-        Reviewed by Darin Fisher.
-
-        * Scripts/build-webkit:
-
-2011-10-04  Jon Lee  <jonlee@apple.com>
-
-        REGRESSION (WK2): (Shift-)option-tabbing skips over elements when transitioning from chrome to webview
-        https://bugs.webkit.org/show_bug.cgi?id=68412
-        <rdar://problem/9988252>
-
-        Reviewed by Darin Adler.
-
-        In order to create a test for the bug, I had to update DRT and WKTR to create some
-        widget that allows first responder status to move away from the main web view.
-
-        Three methods were added to layoutTestController: addChromeInputField,
-        removeChromeInputField, and focusWebView. addChromeInputField adds a text field
-        that is a sibling to the web view, and sets up the key event loop between the two.
-        removeChromeInputField removes that field. focusWebView moves first responder
-        status to the web view.
-
-        The test makes the call via layoutTestController and passes a callback that it
-        assumes will be executed once the task is completed. In DRT the callback is called
-        synchronously. In WKTR this is handled with message passing between the two
-        processes.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (addChromeInputFieldCallback):
-        (removeChromeInputFieldCallback):
-        (focusWebViewCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::addChromeInputField):
-        (LayoutTestController::removeChromeInputField):
-        (LayoutTestController::focusWebView):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting): When resetting for the next test,
-        make sure to remove the chrome input field.
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::addChromeInputField):
-        (LayoutTestController::removeChromeInputField):
-        (LayoutTestController::focusWebView):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::addChromeInputField):
-        (LayoutTestController::removeChromeInputField):
-        (LayoutTestController::focusWebView):
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::didReceiveMessage):
-        (WTR::InjectedBundle::postAddChromeInputField):
-        (WTR::InjectedBundle::postRemoveChromeInputField):
-        (WTR::InjectedBundle::postFocusWebView):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::callbackMap): Create a hash map that keeps track of the callbacks provided
-        through JS.
-        (WTR::cacheLayoutTestControllerCallback):
-        (WTR::callLayoutTestControllerCallback):
-        (WTR::LayoutTestController::addChromeInputField):
-        (WTR::LayoutTestController::removeChromeInputField):
-        (WTR::LayoutTestController::focusWebView):
-        (WTR::LayoutTestController::callAddChromeInputFieldCallback):
-        (WTR::LayoutTestController::callRemoveChromeInputFieldCallback):
-        (WTR::LayoutTestController::callFocusWebViewCallback):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        * WebKitTestRunner/PlatformWebView.h:
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-        * WebKitTestRunner/gtk/PlatformWebViewGtk.cpp:
-        (WTR::PlatformWebView::addChromeInputField):
-        (WTR::PlatformWebView::removeChromeInputField):
-        (WTR::PlatformWebView::makeWebViewFirstResponder):
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (WTR::PlatformWebView::addChromeInputField):
-        (WTR::PlatformWebView::removeChromeInputField):
-        (WTR::PlatformWebView::makeWebViewFirstResponder):
-        * WebKitTestRunner/win/PlatformWebViewWin.cpp:
-        (WTR::PlatformWebView::addChromeInputField):
-        (WTR::PlatformWebView::removeChromeInputField):
-        (WTR::PlatformWebView::makeWebViewFirstResponder):
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm: These functions have nothing to do
-        with the patch-- just cleaning up style.
-        (LayoutTestController::addDisallowedURL):
-        (originsArrayToJS):
-        (LayoutTestController::queueLoad):
-        (LayoutTestController::setMockDeviceOrientation):
-        (LayoutTestController::setIconDatabaseEnabled):
-        (LayoutTestController::setEditingBehavior):
-
-2011-10-04  Simon Fraser  <simon.fraser@apple.com>
-
-        Move font-fixup code in WebKitTestRunner to a better place
-        https://bugs.webkit.org/show_bug.cgi?id=69356
-
-        Reviewed by Sam Weinig.
-        
-        Move code that swizzles NSFontManager methods to ActivateFonts.mm, which
-        already contains font-related code.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::initialize):
-        * WebKitTestRunner/InjectedBundle/mac/ActivateFonts.mm:
-        (WTR::allowedFontFamilySet):
-        (WTR::drt_NSFontManager_availableFontFamilies):
-        (WTR::drt_NSFontManager_availableFonts):
-        (WTR::swizzleNSFontManagerMethods):
-        (WTR::activateFonts):
-        * WebKitTestRunner/InjectedBundle/mac/InjectedBundleMac.mm:
-        (WTR::InjectedBundle::platformInitialize):
-
-2011-10-04  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] DRT: Add DumpRenderTree.cpp
-        https://bugs.webkit.org/show_bug.cgi?id=62034
-
-        Reviewed by Antonio Gomes.
-
-        This is the main implementation file for EFL's DumpRenderTree.
-
-        * DumpRenderTree/efl/DumpRenderTree.cpp: Added.
-        (dumpFramesAsText):
-        (dumpFrameScrollPosition):
-        (shouldLogFrameLoadDelegates):
-        (shouldDumpAsText):
-        (sendPixelResultsEOF):
-        (invalidateAnyPreviousWaitToDumpWatchdog):
-        (onEcoreEvasResize):
-        (onCloseWindow):
-        (useLongRunningServerMode):
-        (parseCommandLineOptions):
-        (getFinalTestURL):
-        (getExpectedPixelHash):
-        (createLayoutTestController):
-        (runTest):
-        (runTestingServerLoop):
-        (adjustOutputTypeByMimeType):
-        (dumpFrameContentsAsText):
-        (shouldDumpFrameScrollPosition):
-        (shouldDumpPixelsAndCompareWithExpected):
-        (shouldDumpBackForwardList):
-        (initEfl):
-        (shutdownEfl):
-        (displayWebView):
-        (dump):
-        (initEcoreEvas):
-        (main):
-
-2011-10-03  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should remove builders from the failure grid once they start to pass
-        https://bugs.webkit.org/show_bug.cgi?id=69309
-
-        Unreviewed.  dglazkov is on vacation.  I need to interest someone else
-        in reviewing these patches.
-
-        This patch follows the update/purge model from UpdateTracker.  This
-        patch is less awesome than it could be because it causes the UI to
-        flash slightly.  In a future patch, we'll want to use these
-        update/purge notifications to update the UI without flashing.  However,
-        that's not such a big deal because this UI is hidden in the default
-        view.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js:
-
-2011-10-03  David Levin  <levin@chromium.org>
-
-        webkitpy: Expose cc_emails and comments from bug.py
-        https://bugs.webkit.org/show_bug.cgi?id=69308
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/net/bugzilla/bug.py: Expose cc_emails and comments .
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py: Add parsing support for comments.
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla_unittest.py: Fix the unit test due
-        to comments being exposed.
-
-2011-10-03  James Robinson  <jamesr@chromium.org>
-
-        Add myself to the watchlist for platform/graphics/chromium
-        https://bugs.webkit.org/show_bug.cgi?id=69297
-
-        Reviewed by David Levin.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2011-10-03  Anders Carlsson  <andersca@apple.com>
-
-        Remove custom scrollbar painting hooks
-        https://bugs.webkit.org/show_bug.cgi?id=69163
-
-        Reviewed by Alexey Proskuryakov.
-
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::applyTo):
-        No need to enable custom scrollbar painting.
-
-2011-10-03  David Levin  <levin@chromium.org>
-
-        watchlist: Make watchlist run on a bot.
-        https://bugs.webkit.org/show_bug.cgi?id=68974
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/tool/commands/queues.py: Add the watchlist to the style bot.
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        Change to log what is run so that we can see the style command
-        and the watchlist command being run.
-
-2011-10-03  David Levin  <levin@chromium.org>
-
-        watchlist: Allow specified a bug to attach the watchlist info to.
-        https://bugs.webkit.org/show_bug.cgi?id=69288
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/tool/commands/applywatchlistlocal.py: Add support for bugid.
-        * Scripts/webkitpy/tool/commands/applywatchlistlocal_unittest.py:
-        Add tests and fix an existing test because the unit tests do not go through the
-        normal command line processing (so the -g argument remained when we determined bug ids).
-        * Scripts/webkitpy/tool/commands/commandtest.py: Change the derivation to
-        get the assert raises regex method.
-        * Scripts/webkitpy/tool/commands/download.py: Fix the command help to be more unixy.
-
-2011-10-03  Leandro Pereira  <leandro@profusion.mobi>
-
-        [EFL] DRT: Add JSStringUtils.{cpp,h}
-        https://bugs.webkit.org/show_bug.cgi?id=66397
-
-        Reviewed by Ryosuke Niwa.
-        
-        Adds helper functions to compare the equality of C-style strings and
-        JSStringRef objects.
-
-        * DumpRenderTree/efl/JSStringUtils.cpp: Added.
-        (equals):
-        * DumpRenderTree/efl/JSStringUtils.h: Added.
-
-2011-10-03  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should work in Safari 5.1
-        https://bugs.webkit.org/show_bug.cgi?id=69290
-
-        Reviewed by Sam Weinig.
-
-        My old implementation of bind was too clever by half.  This one seems
-        to work better, at least according to this test.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base_unittests.js:
-
-2011-09-29  Ademar de Souza Reis Jr.  <ademar.reis@openbossa.org>
-
-        Unreviewed: change my e-mail in commiters.py
-
-        (I'm leaving the company and my @openbossa.org will be no more)
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/notifications.css:
-
-2011-10-01  Brent Fulgham  <bfulgham@webkit.org>
-
-        Correct post-build step for WinCairo test runs.
-        https://bugs.webkit.org/show_bug.cgi?id=69191 
-
-        Reviewed by Brian Weinstein.
-
-        * DumpRenderTree/win/DumpRenderTreePostBuild.cmd: Add additional
-        shell case to handle the CFLite build.
-
-2011-10-01  Filip Pizlo  <fpizlo@apple.com>
-
-        Added myself to reviewers, because I'm now a reviewer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-10-01  Filip Pizlo  <fpizlo@apple.com>
-
-        Bencher script makes it difficult to do automated performance testing
-        https://bugs.webkit.org/show_bug.cgi?id=69207
-
-        Reviewed by Sam Weinig.
-        
-        This adds two new features:
-        
-        The ability to disable automatic VM detection, which is flaky if any
-        profiling features are enabled in jsc.
-        
-        The ability to compute, and report, a scaled result for all benchmark
-        suites. It is the geometric mean of three numbers: SunSpider's
-        arithmetic mean, V8's geometric mean, and Kraken's arithmetic mean.
-        It is also possible to turn off all other output from bencher and just
-        get this number with the --brief option.
-
-        * Scripts/bencher:
-
-2011-10-01  Sam Weinig  <sam@webkit.org>
-
-        WTR is not successfully changing the NSUserDefaults
-        https://bugs.webkit.org/show_bug.cgi?id=69204
-
-        Reviewed by Dan Bernstein.
-
-        * WebKitTestRunner/InjectedBundle/mac/InjectedBundleMac.mm:
-        (WTR::InjectedBundle::platformInitialize):
-        Use -setVolatileDomain:forName:NSArgumentDomain instead of registerDefaults to
-        get our overrides picked up.
-
-2011-09-30  Daniel Bates  <dbates@rim.com>
-
-        Cleanup: Extract code to launch a Mac WebKit application into a common function
-        https://bugs.webkit.org/show_bug.cgi?id=68662
-
-        Reviewed by Adam Roben.
-
-        Extracts common code to launch a WebKit application on Mac OS X into a function
-        so that we can remove duplicate code.
-
-        * Scripts/run-webkit-app: Modified to use webkitdirs::runMacWebKitApp().
-        * Scripts/webkitdirs.pm: Sorted @EXPORT list and added constant USE_OPEN_COMMAND.
-        (runMacWebKitApp): Added.
-        (runSafari): Modified to use webkitdirs::runMacWebKitApp().
-        (runMiniBrowser): Ditto.
-        (runWebKitTestRunner): Ditto.
-        (runTestWebKitAPI): Ditto.
-
-2011-09-29  David Levin  <levin@chromium.org>
-
-        watchlist: Add webkit-patch command to run watchlist.
-        https://bugs.webkit.org/show_bug.cgi?id=68973
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/host.py: Exposed the watch_list.
-        * Scripts/webkitpy/common/watchlist/watchlist.py: Changed to return
-        the cc and messages as sorted lists. To allow for deterministic ordering.
-        * Scripts/webkitpy/common/watchlist/watchlist_unittest.py: Ditto.
-        * Scripts/webkitpy/tool/commands/__init__.py: Add ApplyWatchListLocal so
-        that it will be exposed as a command by webkit-patch.
-        * Scripts/webkitpy/tool/commands/applywatchlistlocal.py: Added.
-        * Scripts/webkitpy/tool/commands/applywatchlistlocal_unittest.py: Added.
-        * Scripts/webkitpy/tool/commands/download.py: Added ApplyWatchList which mimics CheckStyle.
-        * Scripts/webkitpy/tool/commands/download_unittest.py: Added an appropriate test.
-        * Scripts/webkitpy/tool/mocktool.py: Mock out the watch list.
-        * Scripts/webkitpy/tool/steps/__init__.py: Added ApplyWatchList.
-        * Scripts/webkitpy/tool/steps/applywatchlist.py: Added.
-        * Scripts/webkitpy/tool/steps/applywatchlist_unittest.py: Added.
-
-2011-09-30  David Levin  <levin@chromium.org>
-
-        watchlist: Add a way to detect a net increase or decrease of a pattern (in a file).
-        https://bugs.webkit.org/show_bug.cgi?id=69031
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/config/watchlist: Added usage of the new pattern,
-        a comment to explain something important about the email addresses, and
-        a comment to let emacs know to treat the file as a python file.
-        * Scripts/webkitpy/common/watchlist/amountchangedpattern.py: Added.
-        Detects increases or decreases in a pattern.
-        * Scripts/webkitpy/common/watchlist/amountchangedpattern_unittest.py: Added.
-        * Scripts/webkitpy/common/watchlist/watchlist_unittest.py:
-        Added unit tests for watchlist which has "more" or "less".
-        * Scripts/webkitpy/common/watchlist/watchlistparser.py:
-        Added support for "more" or "less".
-
-2011-09-30  Sam Weinig  <sam@webkit.org>
-
-        Add support for eventSender.mouseScrollBy in WTR
-        https://bugs.webkit.org/show_bug.cgi?id=69189
-
-        Add implementation of eventSender.mouseScrollBy for the mac.
-
-        Reviewed by Simon Fraser.
-
-        * WebKitTestRunner/EventSenderProxy.h:
-        * WebKitTestRunner/InjectedBundle/Bindings/EventSendingController.idl:
-        * WebKitTestRunner/InjectedBundle/EventSendingController.cpp:
-        (WTR::EventSendingController::keyDown):
-        (WTR::EventSendingController::mouseScrollBy):
-        * WebKitTestRunner/InjectedBundle/EventSendingController.h:
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::didReceiveSynchronousMessageFromInjectedBundle):
-        * WebKitTestRunner/mac/EventSenderProxy.mm:
-        (WTR::EventSenderProxy::mouseScrollBy):
-
-2011-09-30  Simon Fraser  <simon.fraser@apple.com>
-
-        fast/forms/text-control-intrinsic-widths.html fails on Mac if Word/Office fonts are installed
-        https://bugs.webkit.org/show_bug.cgi?id=35273
-
-        Reviewed by Dan Bernstein.
-        
-        There are two types of font issue that can cause layout test failure.
-        First, the user may have non-standard fonts installed that affect the layout
-        of some tests. For example, some tests use the MS Gothic font if installed.
-        
-        Secondly, the user may have duplicate fonts installed in ~/Library/Fonts,
-        which override the system fonts (e.g. a copy of Arial from MS Office). For
-        some tests, this can affect font metrics or fallback behavior.
-        
-        This change addresses the first problem only. It limits the set of fonts
-        available through NSFontManager, by swizzling some methods to return
-        a list of fonts or font families which only include fonts from a hardcoded
-        whitelist.
-        
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (allowedFontFamilySet):
-        (drt_NSFontManager_availableFontFamilies):
-        (drt_NSFontManager_availableFonts):
-        (swizzleNSFontManagerMethods):
-        (activateTestingFonts):
-        (adjustFonts):
-        (createWebViewAndOffscreenWindow):
-        (prepareConsistentTestingEnvironment):
-        * WebKitTestRunner/InjectedBundle/mac/InjectedBundleMac.mm:
-        (WTR::allowedFontFamilySet):
-        (WTR::drt_NSFontManager_availableFontFamilies):
-        (WTR::drt_NSFontManager_availableFonts):
-        (WTR::swizzleNSFontManagerMethods):
-        (WTR::InjectedBundle::platformInitialize):
-
-2011-09-30  David Levin  <levin@chromium.org>
-
-        Need to skip webkitpy.common.checkout.baselineoptimizer_unittest.BaselineOptimizerTest on Windows..
-        https://bugs.webkit.org/show_bug.cgi?id=69039
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/checkout/baselineoptimizer_unittest.py:
-        Actually skip only one specific test that is failing on Windows.
-
-2011-09-30  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Prevent qDebug() output from DRT and WTR unless --verbose
-
-        For DRT we didn't install the message handler early enough to
-        catch output while constructing the QApplication. For WTR we
-        didn't even install a message handler.
-
-        Since the UI process will forward any output from the web process
-        we set an environment variable QT_WEBKIT_SUPPRESS_WEB_PROCESS_OUTPUT
-        in WTR before the web process is started. This is picked up by the
-        web process which installs its own message handler.
-
-        The environment variable can be overriden on the command line if you
-        want to see output from the web process, or you can pass --verbose to
-        WTR to see output from both processes.
-
-        https://bugs.webkit.org/show_bug.cgi?id=69132
-
-        Reviewed by Andreas Kling.
-
-        * DumpRenderTree/qt/main.cpp:
-        * WebKitTestRunner/qt/main.cpp:
-
-2011-09-30  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Make sure WTR sizes the window and item correctly
-
-        Revision 96345 changed the logic for how the view and
-        window was created, but missed a vital part, setting
-        the size.
-
-        We now use a QSGView for the window, that has a simple
-        item as its root object that is always resized to fit
-        within the window. The webview is then parented to the
-        root object and set to anchors.fill: parent. That way
-        any window geometry changes will propagate to the web
-        view.
-
-        https://bugs.webkit.org/show_bug.cgi?id=69134
-
-        Reviewed by Andreas Kling.
-
-        * WebKitTestRunner/PlatformWebView.h:
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-
-2011-09-30  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] Only save the current viewport in PixelDumpSupportEfl.
-        https://bugs.webkit.org/show_bug.cgi?id=68450
-
-        Reviewed by Antonio Gomes.
-
-        The previous implementation saved the whole page contents in the final
-        PNG, however the baselines and expectations in the tree only want the
-        current viewport (with a scrollbar, if needed), so we now only save the
-        currently visible contents.
-
-        * DumpRenderTree/efl/PixelDumpSupportEfl.cpp:
-        (createBitmapContextFromWebView): Use
-        ewk_frame_visible_content_geometry_get instead of
-        ewk_frame_contents_size_get.
-
-2011-09-30  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] Support and keep track of extra windows (views).
-        https://bugs.webkit.org/show_bug.cgi?id=68454
-
-        Reviewed by Antonio Gomes.
-
-        So far, window.open and related JavaScript code would not work, as
-        DRTView did not implementation
-        Ewk_View_Smart_Class::window_{open,close}. The default implementation
-        in ewk just returns the current window/view, which broke any
-        layouttest which relied on window.open.
-
-        We now properly create and remove these new views. Unfortunately, the
-        current way ewk works (and due to the fact that we cannot pass class
-        methods as function pointers to the EFL functions), DRTView needs to
-        know that DRTChrome exists and call `browser' directly in some points.
-
-        * DumpRenderTree/efl/DumpRenderTreeView.cpp:
-        (onWindowCreate):
-        (onWindowCloseDelayed):
-        (onWindowClose):
-        (drtViewTiledAdd):
-
-2011-09-30  Qi Zhang  <qi.2.zhang@nokia.com>
-
-        WebKitTestRunner needs layoutTestController.setAppCacheMaximumSize
-        https://bugs.webkit.org/show_bug.cgi?id=42698
-
-        Reviewed by Andreas Kling.
-
-        Implemented layoutTestController.setAppCacheMaximumSize and layoutTestController.clearApplicationCache,
-        and call clearApplicationCache when layoutTest start up.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::clearAllApplicationCaches):
-        (WTR::LayoutTestController::setAppCacheMaximumSize):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2011-09-30  Zeno Albisser  <zeno.albisser@nokia.com>
-
-        [Qt][WK2] Change WebKitTestRunner to use QMouseEvents instead of QGraphicsSceneMouseEvents
-        https://bugs.webkit.org/show_bug.cgi?id=69145
-
-        This is a follow up to https://bugs.webkit.org/show_bug.cgi?id=69105
-        Due to refactorings in Qt5, QMouseEvent now supports floating point coordinates
-        and is perfectly suitable for SceneGraph as well. GraphicsScene events
-        will not be available in QtGui anymore in future. Therefore we also have to change
-        QtWebKit to use QMouseEvents instead of QGraphicsSceneMouseEvents.
-
-        Reviewed by Chang Shu.
-
-        * WebKitTestRunner/EventSenderProxy.h:
-        * WebKitTestRunner/qt/EventSenderProxyQt.cpp:
-        (WTR::EventSenderProxy::createMouseEvent):
-        (WTR::EventSenderProxy::mouseDown):
-        (WTR::EventSenderProxy::mouseUp):
-        (WTR::EventSenderProxy::mouseMoveTo):
-
-2011-09-30  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Add WebKit API for sending input events to the compositor thread
-        https://bugs.webkit.org/show_bug.cgi?id=69117
-
-        Reviewed by Darin Fisher.
-
-        Adds support for creating and setting a compositor thread in DRT.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::WebViewHost):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2011-09-29  David Levin  <levin@chromium.org>
-
-        watchlist: Add cross-checks for WatchList once it is filled.
-        https://bugs.webkit.org/show_bug.cgi?id=68975
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/watchlist/watchlist.py: Made the data members public
-        instead of having trivial getter and setters.
-        * Scripts/webkitpy/common/watchlist/watchlist_unittest.py: Fix the unit tests to
-        pass the validation checks.
-        * Scripts/webkitpy/common/watchlist/watchlistparser.py: Add validation checks
-        and fix a few style nits.
-        * Scripts/webkitpy/common/watchlist/watchlistparser_unittest.py: Add tests for the
-        validation checks.
-        * Scripts/webkitpy/common/watchlist/watchlistrule.py: Make definitions_to_match public.
-
-2011-09-29  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        run-api-tests fails on chromium-win bot
-        https://bugs.webkit.org/show_bug.cgi?id=69121
-
-        On Windows running a perl script needs the interpreter.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/run-api-tests:
-        (buildTestTool):
-
-2011-09-29  Adam Barth  <abarth@webkit.org>
-
-        Attempt to make this tool work on Windows.
-
-        * Scripts/run-api-tests:
-        (buildTestTool):
-
-2011-09-29  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Try to fix the minial build
-
-        * QtTestBrowser/launcherwindow.cpp:
-        * QtTestBrowser/webpage.cpp:
-
-2011-09-23  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Fix build against Qt5 after refactor of widgets out of QtGUi
-
-        QWidget and friends now live in the QtWidgets library. We update
-        includes in implementation files and private headers to us the
-        non-module-prefixed path, and leave the lookup for the include
-        path. For public headers we have to ifdef the includes as the
-        user might now have the modules we need in his QT config.
-
-        Finally, QSGCanvas is no longer a QWidget but a QWindow, so we
-        have to update our code and use windowHandle() for setting the
-        parent relationships.
-
-        https://bugs.webkit.org/show_bug.cgi?id=68687
-
-        Reviewed by Andreas Kling.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/ImageDiff.pro:
-        * MiniBrowser/qt/BrowserView.cpp:
-        * MiniBrowser/qt/BrowserView.h:
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        * MiniBrowser/qt/BrowserWindow.h:
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-        * MiniBrowser/qt/main.cpp:
-        * QtTestBrowser/QtTestBrowser.pro:
-        * QtTestBrowser/launcherwindow.cpp:
-        * QtTestBrowser/launcherwindow.h:
-        * QtTestBrowser/locationedit.h:
-        * QtTestBrowser/main.cpp:
-        * QtTestBrowser/mainwindow.cpp:
-        * QtTestBrowser/mainwindow.h:
-        * QtTestBrowser/webinspector.h:
-        * QtTestBrowser/webpage.cpp:
-        * QtTestBrowser/webview.cpp:
-        * WebKitTestRunner/PlatformWebView.h:
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-
-2011-09-29  Ravi Phaneendra Kasibhatla  <ravi.kasibhatla@motorola.com>
-
-        Initial implementation of WebInspector for WebKit2 GTK port.
-        https://bugs.webkit.org/show_bug.cgi?id=68235
-
-        Reviewed by Martin Robinson.
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (browserWindowConstructed): Set the developer extra flags to true to enable inspect element.
-
-2011-09-29  Adam Barth  <abarth@webkit.org>
-
-        Unbreak the "update expectatations" button by using the existing
-        machinery to create the failureInfo objects.
-
-        Unbreak the "close" button on the progress dialog by using |this|
-        instead of the old name of the object.
-
-        Teach the controllers unit test not to talk to the actual network.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js:
-
-2011-09-29  Hans Wennborg  <hans@chromium.org>
-
-        IndexedDB: Use LevelDB also for in-memory databases
-        https://bugs.webkit.org/show_bug.cgi?id=68903
-
-        Reviewed by Steve Block.
-
-        Remove the temporary dir that was necessary before LevelDB supported
-        in-memory databases.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        * DumpRenderTree/chromium/TestShell.h:
-
-2011-09-28  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        Run TestWebKitAPI on Chromium buildbots
-        https://bugs.webkit.org/show_bug.cgi?id=68678
-
-        Reviewed by Tony Chang.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-09-28  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        garden-o-matic results should anticipate 0 unexpected failures.
-        https://bugs.webkit.org/show_bug.cgi?id=69036
-
-        Also fixes controllers: UnexpectedFailures test.
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js: Tweaked.
-
-2011-09-28  Dirk Pranke  <dpranke@chromium.org>
-
-        Modify new-run-webkit-tests to return the percentage difference in image diffs where possible.
-
-        https://bugs.webkit.org/show_bug.cgi?id=67253
-
-        Reviewed by Eric Seidel.
-
-        Nearly all of the work in this was done by Simon Fraser; I'm
-        just repackaging it and cleaning it up a bit. This change
-        modifies port.diff_image() to return a tuple of (pass/fail,
-        %age), adds the value to the FailureImageHashMismatch, and
-        writes the value into the full_results.json files to be
-        displayed in the results page.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py:
-        * Scripts/webkitpy/layout_tests/models/test_failures.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-
-2011-09-25  Kentaro Hara  <haraken@chromium.org>
-
-        Unreviewed. Adding myself to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-09-28  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic shouldn't depend on test-results.appspot.com
-        https://bugs.webkit.org/show_bug.cgi?id=69019
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch moves garden-o-matic from getting full_results.json from
-        test-results.appspot.com to getting that information directly from the
-        buildbot.  This patch improve the load time and accuracy of
-        garden-o-matic because test-results.appspot.com is slow and is dropping
-        a significant number of writes (see
-        https://bugs.webkit.org/show_bug.cgi?id=68748).
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/net.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results_unittests.js:
-
-2011-09-28  David Levin  <levin@chromium.org>
-
-        watchlist: Add a way to load the watchlist from config.
-        https://bugs.webkit.org/show_bug.cgi?id=68991
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/config/watchlist: Added.
-        * Scripts/webkitpy/common/watchlist/watchlistloader.py: Added.
-        Support for loading the watch list.
-        * Scripts/webkitpy/common/watchlist/watchlistloader_unittest.py: Added.
-        Tests for the loading.
-        * Scripts/webkitpy/common/watchlist/watchlistparser_unittest.py:
-        Adjusted to use the common base class.
-        * Scripts/webkitpy/common/webkitunittest.py: Added.
-        Made a common base class for functionality used in more than one.
-
-2011-09-28  David Levin  <levin@chromium.org>
-
-        Attempt fix for Leopard python unit test run.
-
-        * Scripts/webkitpy/common/watchlist/watchlistparser_unittest.py:
-
-2011-09-27  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        REGRESSION(r95573): Crash when loading SVG documents in a flattened frame or any SVG document in Chromium/Mac.
-        https://bugs.webkit.org/show_bug.cgi?id=68938
-
-        Made Chromium/Mac DRT better match how Chromium/Mac queries WebKit.
-
-        Reviewed by David Hyatt.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::didUpdateLayout): Added width/height queries.
-        * DumpRenderTree/chromium/WebViewHost.h: Updated defs.
-
-2011-09-28  Mihai Parparita  <mihaip@chromium.org>
-
-        Get rebaseline server running again
-        https://bugs.webkit.org/show_bug.cgi?id=69020
-
-        Reviewed by Adam Barth.
-
-        Make rebaseline server run again after r90337 (missing format_date_time
-        import, results_json wasn't outputting anything).
-
-        * Scripts/webkitpy/tool/servers/rebaselineserver.py:
-        * Scripts/webkitpy/tool/servers/reflectionhandler.py:
-
-2011-09-28  David Grogan  <dgrogan@chromium.org>
-
-        Move dgrogan from contributor to committer
-        https://bugs.webkit.org/show_bug.cgi?id=69021
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-09-28  Mihai Parparita  <mihaip@chromium.org>
-
-        Add Mac Skia GPU bots to builders.py
-        https://bugs.webkit.org/show_bug.cgi?id=69016
-
-        Reviewed by Eric Seidel.
-
-        This allows wwebkit-patch rebaseline-expectations to work with Mac Skia
-        GPU tests.
-
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-
-2011-09-28  Gustavo Noronha Silva  <gustavo.noronha@collabora.com>
-
-        Second try at fixing the GTK+ build.
-
-        * GNUmakefile.am:
-
-2011-09-28  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        Let TestWebKitAPI and webkit_unit_tests work for chromium-win
-        https://bugs.webkit.org/show_bug.cgi?id=68680
-
-        Reviewed by Tony Chang.
-
-        * Scripts/run-chromium-webkit-unit-tests:
-        * Scripts/webkitdirs.pm:
-        (determineBaseProductDir):
-
-2011-09-28  Kaustubh Atrawalkar  <kaustubh@motorola.com>
-
-        [Gtk] Implement textInputController.doCommand
-        https://bugs.webkit.org/show_bug.cgi?id=66496
-
-        Reviewed by Martin Robinson.
-
-        * DumpRenderTree/gtk/TextInputController.cpp:
-        (doCommandCallback): Callback function for textInputController.doCommand
-
-2011-09-28  David Levin  <levin@chromium.org>
-
-        watchlist: Suggest corrections for typos and improve error message consistency.
-        https://bugs.webkit.org/show_bug.cgi?id=68976
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/watchlist/watchlistparser.py: Add suggestions
-        for typos and improve consistency of the error messages.
-        * Scripts/webkitpy/common/watchlist/watchlistparser_unittest.py: Add tests
-        and improve the regex that were already present.
-
-2011-09-28  David Levin  <levin@chromium.org>
-
-        watchlist: Add support for matching added or deleted lines.
-        https://bugs.webkit.org/show_bug.cgi?id=68972
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/watchlist/changedlinepattern.py: Added.
-        * Scripts/webkitpy/common/watchlist/changedlinepattern_unittest.py: Added.
-        * Scripts/webkitpy/common/watchlist/watchlist.py: Comment fix up and fix input
-        to the pattern match to only have the diff lines instead of the DiffFile.
-        * Scripts/webkitpy/common/watchlist/watchlist_unittest.py:
-        Add tests for the new patterns and combinations of the patterns.
-        * Scripts/webkitpy/common/watchlist/watchlistparser.py:
-        Sort imports. Add changeline support.
-
-2011-09-28  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Add WebKitError to GTK+ WebKit2 API
-        https://bugs.webkit.org/show_bug.cgi?id=68508
-
-        Reviewed by Martin Robinson.
-
-        * GNUmakefile.am: Add path to webkitgtk derived sources to the
-        include path.
-
-2011-09-28  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] missing WebKit2 support in run-gtk-tests
-        https://bugs.webkit.org/show_bug.cgi?id=68992
-
-        Rubber-stamped by Andreas Kling.
-
-        * Scripts/run-gtk-tests: Get the WebKit2 tests to run from the
-        webkit2 directory.
-
-2011-09-27  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] build-webkit --no-webkit2 still builds WebKit2
-        https://bugs.webkit.org/show_bug.cgi?id=68892
-
-        Reviewed by Martin Robinson.
-
-        Take the --no-webkit2 option in account when building WebKitGTK+.
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-        (buildAutotoolsProject):
-        (buildGtkProject):
-
-2011-09-28  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Make Chromium Win Release (Tests) a core builder
-        https://bugs.webkit.org/show_bug.cgi?id=68906
-
-        Reviewed by Adam Barth.
-
-        Add Chromium Win Release (Tests) to the list of core builders.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-
-2011-09-27  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should load faster and inform the user what is happening
-        https://bugs.webkit.org/show_bug.cgi?id=68954
-
-        Reviewed by Dimitri Glazkov.
-
-        This test disables the expected failures tab.  The web inspector showed
-        that loading the data for this tab was slowing down the loading time
-        for the whole app.  We need to find a way to load that data lazily.
-
-        This patch also improves the update message to better describe the
-        progress the app is making analyzing data from the buildbot.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/garden-o-matic.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js:
-
-2011-09-27  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should show the first result when examining results
-        https://bugs.webkit.org/show_bug.cgi?id=68960
-
-        Reviewed by Dimitri Glazkov.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-
-2011-09-27  David Levin  <levin@chromium.org>
-
-        watchlist: Add support for cc and message rules.
-        https://bugs.webkit.org/show_bug.cgi?id=68950
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/watchlist/watchlist.py: Added support to get
-        the cc's and messages for a patch.
-        * Scripts/webkitpy/common/watchlist/watchlist_unittest.py: Tests for the above.
-        * Scripts/webkitpy/common/watchlist/watchlistparser.py: Parsing support
-        for the rules.
-        * Scripts/webkitpy/common/watchlist/watchlistrule.py: Copied from Tools/Scripts/webkitpy/common/watchlist/watchlist.py.
-        A generic encapsulation of either a message list or a cc list.
-        * Scripts/webkitpy/common/watchlist/watchlistrule_unittest.py: Copied from Tools/Scripts/webkitpy/common/watchlist/watchlist.py.
-
-2011-09-27  Tom Zakrajsek  <tomz@codeaurora.org>
-
-        webkit-patch doesn't like UTF-8 characters in reviewers names
-        https://bugs.webkit.org/show_bug.cgi?id=63452
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkit-patch:
-
-2011-09-27  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic examine buttons shows both expected and unexpected failures
-        https://bugs.webkit.org/show_bug.cgi?id=68918
-
-        Reviewed by Dimitri Glazkov.
-
-        This was a copy/paste error when I refactored this classes to share
-        more code.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-
-2011-09-27  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Add Kaustubh Atrawalkar to the list of contributors.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-09-27  Mihai Parparita  <mihaip@chromium.org>
-
-        [Chromium] Fixed layout mode tests break subsequent tests
-        https://bugs.webkit.org/show_bug.cgi?id=68923
-        
-        Reviewed by Adam Barth.        
-
-        Reset fixed layout mode between tests, so that tests that run after
-        platform/chromium/fast/repaint/fixed-layout-360x240.html still have the
-        regular 800x600 non-fixed layout.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetTestController):
-
-2011-09-27  David Levin  <levin@chromium.org>
-
-        watchlist: Add the filename pattern for definitions.
-        https://bugs.webkit.org/show_bug.cgi?id=68917
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/watchlist/filenamepattern.py: Added.
-        * Scripts/webkitpy/common/watchlist/filenamepattern_unittest.py: Added.
-        * Scripts/webkitpy/common/watchlist/watchlist.py: Added the filename pattern
-        for definitions.
-        * Scripts/webkitpy/common/watchlist/watchlist_unittest.py: Added tests.
-        * Scripts/webkitpy/common/watchlist/watchlistparser_unittest.py: Typo fix.
-
-2011-09-27  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic results view should sort test and builder names
-        https://bugs.webkit.org/show_bug.cgi?id=68488
-
-        Reviewed by Andy Estes.
-
-        Previously, the test and builder names were displayed in an arbitrary
-        order that changed from time to time.  That confused one user study
-        participant.  This patch sorts the lists so that they occur in a
-        predictable order.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
-
-2011-09-27  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r96108, r96111, r96113, and r96116.
-        http://trac.webkit.org/changeset/96108
-        http://trac.webkit.org/changeset/96111
-        http://trac.webkit.org/changeset/96113
-        http://trac.webkit.org/changeset/96116
-        https://bugs.webkit.org/show_bug.cgi?id=68913
-
-        Wait for working Qt5 (Requested by ossy on #webkit).
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/ImageDiff.pro:
-        * MiniBrowser/qt/BrowserView.cpp:
-        (BrowserView::BrowserView):
-        * MiniBrowser/qt/BrowserView.h:
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::urlChanged):
-        (BrowserWindow::~BrowserWindow):
-        * MiniBrowser/qt/BrowserWindow.h:
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-        * MiniBrowser/qt/main.cpp:
-        * QtTestBrowser/QtTestBrowser.pro:
-        * QtTestBrowser/launcherwindow.cpp:
-        * QtTestBrowser/launcherwindow.h:
-        * QtTestBrowser/locationedit.h:
-        * QtTestBrowser/main.cpp:
-        * QtTestBrowser/mainwindow.cpp:
-        * QtTestBrowser/mainwindow.h:
-        * QtTestBrowser/webinspector.h:
-        * QtTestBrowser/webpage.cpp:
-        * QtTestBrowser/webview.cpp:
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro:
-        * WebKitTestRunner/PlatformWebView.h:
-        * WebKitTestRunner/qt/EventSenderProxyQt.cpp:
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::WebView::wkView):
-        (WTR::WebView::pageRef):
-        (WTR::WebView::~WebView):
-        (WTR::WebView::WebView):
-        (WTR::PlatformWebView::PlatformWebView):
-        (WTR::PlatformWebView::sendEvent):
-        (WTR::PlatformWebView::postEvent):
-        * WebKitTestRunner/qt/WebKitTestRunner.pro:
-
-2011-09-27  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Rename WebKit2 GTK+ API main header as webkit2.h
-        https://bugs.webkit.org/show_bug.cgi?id=65178
-
-        Reviewed by Martin Robinson.
-
-        * GNUmakefile.am:
-        * GtkLauncher/main.c: Include <webkit2/webkit2.h>.
-
-2011-09-27  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt][WK2] Buildfix after r96108.
-
-        Rubber-stamped by Andreas Kling.
-
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro:
-        * WebKitTestRunner/qt/EventSenderProxyQt.cpp:
-        * WebKitTestRunner/qt/WebKitTestRunner.pro:
-
-2011-09-27  David Levin  <levin@chromium.org>
-
-        watchlist: Change watchlistparser.py to be class based.
-        https://bugs.webkit.org/show_bug.cgi?id=68869
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/watchlist/watchlistparser.py:
-        * Scripts/webkitpy/common/watchlist/watchlistparser_unittest.py:
-
-2011-09-27  David Levin  <levin@chromium.org>
-
-        watchlist: Break out the diff boilerplate to allow for re-use.
-        https://bugs.webkit.org/show_bug.cgi?id=68871
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/checkout/diff_parser_unittest.py:
-        Break out the diff into a new file.
-        * Scripts/webkitpy/common/checkout/diff_test_data.py: Added.
-
-2011-09-27  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Web Inspector: UI performance: introduce heap size tracking stats.
-        https://bugs.webkit.org/show_bug.cgi?id=68901
-
-        It is interesting how much the heap memory is used by Inspector in order of running the test.
-
-        Reviewed by Yury Semikhatsky.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::showDevTools):
-        (TestShell::closeDevTools):
-
-2011-09-23  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Fix build against Qt5 after refactor of widgets out of QtGUi
-
-        QWidget and friends now live in the QtWidgets library. We update
-        includes in implementation files and private headers to us the
-        non-module-prefixed path, and leave the lookup for the include
-        path. For public headers we have to ifdef the includes as the
-        user might now have the modules we need in his QT config.
-
-        Finally, QSGCanvas is no longer a QWidget but a QWindow, so we
-        have to update our code and use windowHandle() for setting the
-        parent relationships.
-
-        https://bugs.webkit.org/show_bug.cgi?id=68687
-
-        Reviewed by Andreas Kling.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/ImageDiff.pro:
-        * MiniBrowser/qt/BrowserView.cpp:
-        * MiniBrowser/qt/BrowserView.h:
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        * MiniBrowser/qt/BrowserWindow.h:
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-        * MiniBrowser/qt/main.cpp:
-        * QtTestBrowser/QtTestBrowser.pro:
-        * QtTestBrowser/launcherwindow.cpp:
-        * QtTestBrowser/launcherwindow.h:
-        * QtTestBrowser/locationedit.h:
-        * QtTestBrowser/main.cpp:
-        * QtTestBrowser/mainwindow.cpp:
-        * QtTestBrowser/mainwindow.h:
-        * QtTestBrowser/webinspector.h:
-        * QtTestBrowser/webpage.cpp:
-        * QtTestBrowser/webview.cpp:
-        * WebKitTestRunner/PlatformWebView.h:
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-
-2011-09-26  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
-
-        [Qt][WK2] Add support for hover API in Qt WebKit2
-        https://bugs.webkit.org/show_bug.cgi?id=68369
-
-        Reviewed by Andreas Kling.
-
-        Change the statusbar to show the link URL when hovering links in
-        MiniBrowser using QDesktopWebView.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::onLinkHovered):
-        * MiniBrowser/qt/BrowserWindow.h:
-
-2011-09-26  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        garden-o-matic's commit data on summary page should not crowd itself or twitch when hovered over.
-        https://bugs.webkit.org/show_bug.cgi?id=68864
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/summary-mock.js: Updated mocks to work.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js: Changed the structure of commit data to keep commit revision apart from the rest of details.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js: Adjusted unit tests.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/notifications.css: Made things look shiny.
-
-2011-09-26  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt][WK2] One more unreviewed buildfix after r96005.
-
-        * WebKitTestRunner/qt/TestInvocationQt.cpp: Missing include added.
-
-2011-09-26  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt][WK2] Unreviewed buildfix after r96005.
-
-        * WebKitTestRunner/qt/TestInvocationQt.cpp:
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-
-2011-09-26  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        garden-o-matic should be pretty in Open Sans.
-        https://bugs.webkit.org/show_bug.cgi?id=68845
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/common.css: Tweaked to bring back teh fonts.
-
-2011-09-26  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        garden-o-matic should not say "Just now" when it doesn't actually know when an event happened.
-        https://bugs.webkit.org/show_bug.cgi?id=68841
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js: Changed ui.RelativeTime to not initialize with current time.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js: Adjusted unit tests.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui_unittests.js: Ditto.
-
-2011-09-26  David Levin  <levin@chromium.org>
-
-        watchlist: Add parsing for definition section.
-        https://bugs.webkit.org/show_bug.cgi?id=68850
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/watchlist/watchlist.py:
-        * Scripts/webkitpy/common/watchlist/watchlistparser.py:
-        * Scripts/webkitpy/common/watchlist/watchlistparser_unittest.py:
-
-2011-09-26  Simon Fraser  <simon.fraser@apple.com>
-
-        Fix WebKitTestRunner builds for Cairo, Windows and Qt.
-
-        * WebKitTestRunner/cairo/TestInvocationCairo.cpp:
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-        * WebKitTestRunner/win/TestInvocationWin.cpp:
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-
-2011-09-26  Simon Fraser  <simon.fraser@apple.com>
-
-        Repaint tests don't work in WebKit2
-        https://bugs.webkit.org/show_bug.cgi?id=68453
-
-        Reviewed by Sam Weinig.
-        
-        Convert DumpRenderTree to use use the repaint rects
-        exposed via WebKit API when generating the repaint test
-        overlay.
-        
-        Fix WebKitTestRunner to work with repaint tests, again
-        using the repaint rects exposed from WK2.
-        
-        In both cases, layoutTestController.display() now just
-        forces a display of the web view, and turns on repaint
-        rect tracking on the main FrameView.
-        
-        Later, when pixel results are requested, the alpha overlay
-        that shows the repaint rects is generated using the list
-        of rects supplied by WebCore.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        (resetWebViewToConsistentStateBeforeTesting):
-        (displayWebView):
-        * DumpRenderTree/mac/PixelDumpSupportMac.mm:
-        (paintRepaintRectOverlay):
-        (createBitmapContextFromWebView):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-        (WTR::InjectedBundle::done):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (WTR::InjectedBundle::setRepaintRects):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::reset):
-        (WTR::InjectedBundlePage::dump):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::display):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-        * WebKitTestRunner/TestInvocation.h:
-        * WebKitTestRunner/cg/TestInvocationCG.cpp:
-        (WTR::paintRepaintRectOverlay):
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-
-2011-09-26  Nayan Kumar K  <nayankk@motorola.com>
-
-        Get hover'ed element URL from HitTest.
-
-        mouseDidMoveOverElement now gets the hover'ed element link using
-        WKHitTestResult API's.
-        https://bugs.webkit.org/show_bug.cgi?id=68426 
-
-        Reviewed by Anders Carlsson.
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (mouseDidMoveOverElement):
-
-2011-09-26  David Levin  <levin@chromium.org>
-
-        Add skeleton parsing for a WatchList.
-        https://bugs.webkit.org/show_bug.cgi?id=68823
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/watchlist/watchlistparser.py: Added.
-        Parses the top level watch list sections -- none are defined yet -- and
-        throws an exception if an invalid one is listed.
-        * Scripts/webkitpy/common/watchlist/watchlistparser_unittest.py: Added.
-        Verify the exception for an invalid section in a watch list.
-        * Scripts/webkitpy/common/watchlist/watchlist.py: Added.
-
-2011-09-26  Adam Roben  <aroben@apple.com>
-
-        Clean up code imported from WebKitAPITest
-
-        Fixes <http://webkit.org/b/68799> WebViewDestruction tests and related code don't match
-        TestWebKitAPI conventions
-
-        Reviewed by David Levin.
-
-        * TestWebKitAPI/Tests/WebKit/win/WebViewDestruction.cpp: Changed tests to use gtest macros
-        and to share functionality via test fixtures. Prefixed Win32 API calls with ::. Updated
-        namespace name.
-
-        (TestWebKitAPI::WebViewDestruction::SetUp):
-        (TestWebKitAPI::WebViewDestruction::webViewCount):
-        (TestWebKitAPI::WebViewDestructionWithHostWindow::SetUp):
-        (TestWebKitAPI::WebViewDestruction::runMessagePump):
-        (TestWebKitAPI::WebViewDestruction::TearDown):
-        (TestWebKitAPI::WebViewDestructionWithHostWindow::TearDown):
-        Moved functionality from free functions into these new test fixtures.
-
-        * TestWebKitAPI/win/HostWindow.cpp:
-        * TestWebKitAPI/win/HostWindow.h:
-        Prefixed Win32 API calls with ::. Updated namespace name.
-
-2011-09-23  Adam Roben  <aroben@apple.com>
-
-        Merge WebKitAPITest into TestWebKitAPI
-
-        This also means that our formerly-WebKitAPITest tests will be run on the bots!
-
-        I made the minimal changes necessary to get the tests to run in TestWebKitAPI. I'll make
-        them more idiomatic in a separate pass.
-
-        Fixes <http://webkit.org/b/66560> WebKitAPITest and TestWebKitAPI have duplicate
-        functionality (and names!)
-
-        Reviewed by Anders Carlsson.
-
-        * TestWebKitAPI/Tests/WebKit/win/WebViewDestruction.cpp: Renamed from Tools/WebKitAPITest/tests/WebViewDestruction.cpp.
-        * TestWebKitAPI/win/HostWindow.cpp: Renamed from Tools/WebKitAPITest/HostWindow.cpp.
-        * TestWebKitAPI/win/HostWindow.h: Renamed from Tools/WebKitAPITest/HostWindow.h.
-
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj: Added new files.
-
-        * TestWebKitAPI/win/main.cpp:
-        (main): Added a call to ::OleInitialize to make WebKit1 work. This came from WebKitAPITest.
-
-        * WebKitAPITest: Removed this directory and its contents.
-
-2011-09-23  Adam Roben  <aroben@apple.com>
-
-        Remove two failing WebKitAPITest tests
-
-        The failures are covered by <http://webkit.org/b/33162> and <http://webkit.org/b/32868>.
-
-        Reviewed by Anders Carlsson.
-
-        * WebKitAPITest/tests/WebViewDestruction.cpp: Removed the NoCloseOrDestroyViewWindow and
-        MainFrameAfterClose tests.
-
-2011-09-25  Adam Barth  <abarth@webkit.org>
-
-        Finish removing PLATFORM(BREWMP) by removing associated code
-        https://bugs.webkit.org/show_bug.cgi?id=68779
-
-        Reviewed by Sam Weinig.
-
-        * Scripts/webkitpy/common/config/build.py:
-        * waf/build/settings.py:
-
-2011-09-21  Ai Makabi  <makabi@google.com>
-
-        Provides a simple LRU cache class in Python.
-
-        https://bugs.webkit.org/show_bug.cgi?id=67823
-
-        Reviewed by Tony Chang.
-
-        * Scripts/webkitpy/common/lru_cache.py:
-        * Scripts/webkitpy/common/lru_cache_unittest.py:
-
-2011-09-25  Adam Barth  <abarth@webkit.org>
-
-        Remove PLATFORM(HAIKU) and associated code
-        https://bugs.webkit.org/show_bug.cgi?id=68774
-
-        Reviewed by Sam Weinig.
-
-        * Scripts/webkitpy/common/config/build.py:
-        * waf/build/settings.py:
-
-2011-09-24  Adam Barth  <abarth@webkit.org>
-
-        Always enable ENABLE(OFFLINE_WEB_APPLICATIONS)
-        https://bugs.webkit.org/show_bug.cgi?id=68767
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/build-webkit:
-
-2011-09-24  Adam Barth  <abarth@webkit.org>
-
-        Remove ENABLE(WCSS) and associated code
-        https://bugs.webkit.org/show_bug.cgi?id=68759
-
-        Reviewed by Darin Adler.
-
-        * Scripts/build-webkit:
-        * Scripts/old-run-webkit-tests:
-        * Scripts/webkitperl/features.pm:
-        (hasFeature):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-
-2011-09-24  Alejandro G. Castro  <alex@igalia.com>
-
-        Fixed GTK compilation after r95878, the operator== was defined
-        twice when USE_WEBPROCESS_EVENT_SIMULATION is defined.
-
-        * WebKitTestRunner/InjectedBundle/EventSendingController.cpp:
-
-2011-09-23  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [DRT] Include the right config file for EFL's DRT.
-        https://bugs.webkit.org/show_bug.cgi?id=67042
-
-        Reviewed by Martin Robinson.
-
-        Ports which use CMake as their buildsystem (such as the EFL one) also
-        have config.h files, but they are named differently, so include the
-        right one depending on the buildsystem being used.
-
-        * DumpRenderTree/config.h:
-
-2011-09-23  Adam Klein  <adamk@chromium.org>
-
-        Add ENABLE_MUTATION_OBSERVERS feature flag
-        https://bugs.webkit.org/show_bug.cgi?id=68732
-
-        Reviewed by Ojan Vafai.
-
-        This flag will guard an implementation of the "Mutation Observers" proposed in
-        http://lists.w3.org/Archives/Public/public-webapps/2011JulSep/1622.html
-
-        * Scripts/build-webkit:
-
-2011-09-23  Chang Shu  <cshu@webkit.org>
-
-        [WK2] [Qt] Implement MouseDown/MouseUp/MouseMoveTo functions for WebKit2 EventSender
-        https://bugs.webkit.org/show_bug.cgi?id=68556
-
-        Implement the MouseDown/MouseUp/MouseMoveTo functions on Qt platform.
-
-        Reviewed by Darin Adler.
-
-        * WebKitTestRunner/EventSenderProxy.h:
-        * WebKitTestRunner/InjectedBundle/EventSendingController.h:
-        * WebKitTestRunner/PlatformWebView.h:
-        * WebKitTestRunner/mac/EventSenderProxy.mm:
-        (WTR::EventSenderProxy::EventSenderProxy):
-        (WTR::EventSenderProxy::leapForward):
-        * WebKitTestRunner/qt/EventSenderProxyQt.cpp:
-        (WTR::EventSenderProxy::EventSenderProxy):
-        (WTR::getMouseButton):
-        (WTR::getModifiers):
-        (WTR::EventSenderProxy::updateClickCountForButton):
-        (WTR::EventSenderProxy::createGraphicsSceneMouseEvent):
-        (WTR::EventSenderProxy::mouseDown):
-        (WTR::EventSenderProxy::mouseUp):
-        (WTR::EventSenderProxy::mouseMoveTo):
-        (WTR::EventSenderProxy::leapForward):
-        (WTR::EventSenderProxy::sendOrQueueEvent):
-        (WTR::EventSenderProxy::replaySavedEvents):
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::postEvent):
-        * WebKitTestRunner/qt/WebKitTestRunner.pro:
-
-2011-09-23  Lei Zhang  <thestig@chromium.org>
-
-        [chromium] Make the layout test script's kill timeout proportional to --time-out-ms
-        https://bugs.webkit.org/show_bug.cgi?id=68026
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2011-09-23  Elliot Poger  <epoger@google.com>
-
-        update layout_tests to account for new default of use_skia=1
-        https://bugs.webkit.org/show_bug.cgi?id=68698
-
-        Rolls Source/WebKit/chromium/DEPS to pick up new default use_skia=1
-        from http://src.chromium.org/viewvc/chrome?view=rev&revision=102532
-        (Chromium-on-Mac now uses the Skia graphics library instead of
-        Core Graphics).
-
-        Also updates layout_test code to work with that change.
-
-        Reviewed by Mihai Parparita.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-
-2011-09-23  Mark Rowe  <mrowe@apple.com>
-
-        Fix the build.
-        
-        * TestWebKitAPI/Tests/WTF/StringBuilder.cpp: Define operator<<(std::ostream&, const WTF::String&) inside
-        the WTF namespace.
-
-2011-09-22  Dirk Pranke  <dpranke@chromium.org>
-
-        enable NRWT for run-webkit-tests on Lion
-        https://bugs.webkit.org/show_bug.cgi?id=68673
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/run-webkit-tests:
-        (useNewRunWebKitTests):
-
-2011-09-22  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        Add unit test for existing StringBuilder
-        https://bugs.webkit.org/show_bug.cgi?id=67080
-
-        Reviewed by Darin Adler.
-
-        * TestWebKitAPI/TestWebKitAPI.gypi:
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WTF/StringBuilder.cpp: Added.
-        (operator<<):
-        (TestWebKitAPI::expectBuilderContent):
-        (TestWebKitAPI::expectEmpty):
-        (TestWebKitAPI::TEST):
-
-2011-09-22  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] Use ewk_view to navigate in history instead of ewk_history.
-        https://bugs.webkit.org/show_bug.cgi?id=68455
-
-        Reviewed by Antonio Gomes.
-
-        BackForwardItem::invoke() was using ewk_history functions to navigate
-        in history; however, this will only call WebCore::BackForwardListImpl
-        and not move between pages at all. We now call ewk_view_navigate and
-        its siblings to make sure the navigation actually happens.
-
-        This should make tests like fast/dom/navigation-type-back-forward.html
-        stop timing out.
-
-        * DumpRenderTree/efl/WorkQueueItemEfl.cpp:
-        (BackForwardItem::invoke):
-
-2011-09-22  Dean Jackson  <dino@apple.com>
-
-        Add ENABLE_CSS_FILTERS
-        https://bugs.webkit.org/show_bug.cgi?id=68652
-
-        Reviewed by Simon Fraser.
-
-        * Scripts/build-webkit:
-
-2011-09-22  Anders Carlsson  <andersca@apple.com>
-
-        EventSenderProxy::mouseUp should call -[WKView mouseUp:] instead of -[WKView mouseDown:]
-        https://bugs.webkit.org/show_bug.cgi?id=68660
-
-        Reviewed by Adam Barth.
-
-        * WebKitTestRunner/mac/EventSenderProxy.mm:
-        (WTR::EventSenderProxy::mouseUp):
-
-2011-09-22  Adam Roben  <aroben@apple.com>
-
-        Remove FindSafari
-
-        It isn't used or built anymore.
-
-        Fixes <http://webkit.org/b/68628>
-
-        Reviewed by Darin Adler.
-
-        * FindSafari: Removed this directory and its contents.
-
-2011-09-22  Adam Roben  <aroben@apple.com>
-
-        Remove FindSafari from all our .sln files
-
-        It isn't used anymore, so there's no point in building it.
-
-        Part of <http://webkit.org/b/68628> Remove FindSafari
-
-        Reviewed by Steve Falkenburg.
-
-        * DumpRenderTree/DumpRenderTree.sln:
-        * WebKitTestRunner/WebKitTestRunner.sln:
-
-2011-09-22  Adam Roben  <aroben@apple.com>
-
-        Remove all uses of FindSafari
-
-        It isn't really needed anymore.
-
-        Fixes <http://webkit.org/b/68626>.
-
-        Reviewed by Darin Adler.
-
-        * Scripts/old-run-webkit-tests: Moved read/writeRegistryString from here to webkitdirs.pm.
-
-        * Scripts/run-webkit-nightly.cmd: Removed. This used to be used to launch nightly builds of
-        WebKit, but now we use WebKit.exe for that.
-
-        * Scripts/webkitdirs.pm:
-        (installedSafariPath): Changed to use readRegistryString instead of invoking FindSafari to
-        do the same thing.
-
-        (readRegistryString):
-        (writeRegistryString):
-        Moved here from old-run-webkit-tests.
-
-2011-09-22  Adam Roben  <aroben@apple.com>
-
-        Use the "direct object" form of system() to run WebKit.exe
-
-        This prevents the shell from parsing (and possibly splitting, if it contains spaces) the
-        path to WebKit.exe.
-
-        Fixes <http://webkit.org/b/68623> run-safari doesn't work if there are spaces in the path to
-        %WEBKITOUTPUTDIR%
-
-        Reviewed by Steve Falkenburg.
-
-        * Scripts/webkitdirs.pm:
-        (runSafari):
-
-2011-09-22  Adam Roben  <aroben@apple.com>
-
-        Quote the WEBKITLIBRARIESDIR path before passing it to the shell/cygpath
-
-        Fixes <http://webkit.org/b/68621> build-webkit goes totally haywire on Windows if there are
-        spaces in the path to the WebKit source tree
-
-        Reviewed by John Sullivan.
-
-        * Scripts/webkitdirs.pm:
-        (setupCygwinEnv):
-
-2011-09-22  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Use same DPI for application font as rest of app in DRT and WTR
-
-        QApplication will initialize the default application font based
-        on the application DPI at construction time, but we then override
-        the application DPI using QX11Info (hard-coding it to 96 for
-        consistency). This hard-coding is not reflected in the application
-        font, so we explicitly have update the font ourselves.
-
-        The 6 test results that are updated were originally produced with
-        a DPI of 75, as this is the default fallback DPI when a QFont is
-        constructed before QApplication. This was wrong, and the results
-        are updated to match a DPI of 96.
-
-        Reviewed by Csaba Osztrogonác.
-
-        * DumpRenderTree/qt/main.cpp:
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-
-2011-09-21  Anna Cavender  <annacc@chromium.org>
-
-        Update committers.py with a new contributor contact        
-        https://bugs.webkit.org/show_bug.cgi?id=68565
-
-        Reviewed by Eric Carlson.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-09-21  Chang Shu  <cshu@webkit.org>
-
-        [WK2] [Mac] Implement a more-complete MouseDown/MouseUp/MouseMoveTo functions for WebKit2 EventSender
-        https://bugs.webkit.org/show_bug.cgi?id=68108
-
-        This patch implements the event sender mouse events through WebKit2 UIProcess which is
-        closer to the real simulation than a WebProcess-only approach. The patch only supports Mac
-        platform as the first step so the existing code is still kept for other platforms.
-
-        Reviewed by Darin Adler.
-
-        * WebKitTestRunner/EventSenderProxy.h:
-        (WTR::EventSenderProxy::EventSenderProxy):
-        (WTR::EventSenderProxy::leapForward):
-        (WTR::EventSenderProxy::currentEventTime):
-        * WebKitTestRunner/InjectedBundle/EventSendingController.cpp:
-        (WTR::EventSendingController::EventSendingController):
-        (WTR::EventSendingController::mouseDown):
-        (WTR::EventSendingController::mouseUp):
-        (WTR::EventSendingController::mouseMoveTo):
-        (WTR::EventSendingController::leapForward):
-        (WTR::EventSendingController::keyDown):
-        * WebKitTestRunner/InjectedBundle/EventSendingController.h:
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::didReceiveSynchronousMessageFromInjectedBundle):
-        * WebKitTestRunner/mac/EventSenderProxy.mm:
-        (WTR::eventTypeForMouseButtonAndAction):
-        (WTR::operator==):
-        (WTR::EventSenderProxy::updateClickCountForButton):
-        (WTR::EventSenderProxy::mouseDown):
-        (WTR::EventSenderProxy::mouseUp):
-        (WTR::EventSenderProxy::mouseMoveTo):
-        (WTR::EventSenderProxy::keyDown):
-        * WebKitTestRunner/qt/EventSenderProxyQt.cpp:
-        (WTR::EventSenderProxy::keyDown):
-        (WTR::EventSenderProxy::mouseDown):
-        (WTR::EventSenderProxy::mouseUp):
-        (WTR::EventSenderProxy::mouseMoveTo):
-
-2011-09-21  Dan Bernstein  <mitz@apple.com>
-
-        Tools part of: Prevent the WebKit frameworks from defining inappropriately-named Objective-C classes
-        https://bugs.webkit.org/show_bug.cgi?id=68451
-
-        Reviewed by Darin Adler.
-
-        * Scripts/check-for-inappropriate-objc-class-names: Added. Checks for
-        Objective-C classes with names not having one of a list of prefixes
-        passed on the command line.
-
-2011-09-21  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        Ensure TestWebKitAPI works on mac, win, chromium-mac and chromium-linux
-        https://bugs.webkit.org/show_bug.cgi?id=68206
-
-        Reviewed by Tony Chang.
-
-        * Scripts/webkitdirs.pm:
-        (determineBaseProductDir): add support for chromium-mac
-        * TestWebKitAPI/Tests/WTF/MetaAllocator.cpp:
-        * TestWebKitAPI/Tests/WTF/RedBlackTree.cpp:
-
-2011-09-21  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic command should explain that it is starting a local server
-        https://bugs.webkit.org/show_bug.cgi?id=68486
-
-        Reviewed by Dimitri Glazkov.
-
-        In the user study, both participants didn't understand why the
-        garden-o-matic command appeared to hang.  This patch adds an
-        explaination of what's going on.  It also adds a confirmation prompt
-        before launching the browser to give the user a chance to read the
-        text.  If that's too much of a speed bump, we can iterate.
-
-        * Scripts/webkitpy/tool/commands/gardenomatic.py:
-
-2011-09-21  Chang Shu  <cshu@webkit.org>
-
-        [Qt] Implement KeyDown function for WebKit2 EventSender.
-        https://bugs.webkit.org/show_bug.cgi?id=56485
-
-        Implement the KeyDown function on Qt platform.
-
-        Reviewed by Andreas Kling.
-
-        * WebKitTestRunner/PlatformWebView.h:
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::TestController):
-        (WTR::TestController::didReceiveSynchronousMessageFromInjectedBundle):
-        * WebKitTestRunner/qt/EventSenderProxyQt.cpp: Added.
-        (WTR::getModifiers):
-        (WTR::EventSenderProxy::keyDown):
-        (buildModifierFlags):
-        (EventSenderProxy::keyDown):
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::sendEvent):
-        * WebKitTestRunner/qt/WebKitTestRunner.pro:
-
-2011-09-20  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic unit test fail because Safari 5.1 doesn't enumerate dictionaries in the same order as V8
-        https://bugs.webkit.org/show_bug.cgi?id=68496
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch adds a bunch of sorting to make sure things happen in a
-        predictable order in both JavaScriptCore and V8.  We've talked before
-        about whether these two JavaScript engines should enumerate
-        dictionaries in the same order, but the consensus has been that they
-        shouldn't.  Personally, I disagree with that consensus, but such is life.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui_unittests.js:
-
-2011-09-20  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic doesn't work in Safari 5.1 because Safari 5.1 lacks Function.prototype.bind
-        https://bugs.webkit.org/show_bug.cgi?id=68495
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch adds an implementation of Function.prototype.bind if the browser lacks one.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base.js:
-
-2011-09-20  Eric Seidel  <eric@webkit.org>
-
-        [NRWT] REGRESSION: Local loader tests are failing on machines that lost /tmp/LayoutTests symlink
-        https://bugs.webkit.org/show_bug.cgi?id=65781
-
-        Reviewed by Ryosuke Niwa.
-
-        Instead of making NRWT create the symlink, I made DumpRenderTree smart enough
-        to resolve the passed in url relative to the absolute url for the test.
-        For http tests, since the test url is an http url, we can't resolve relative
-        to the test path, and thus use a new LOCAL_RESOURCE_ROOT environment variable
-        for resolving.
-
-        I believe this is a better approach than the on used in the Qt and Chromium DRT's
-        (which resolves the path relative to the built location of the DRT executable)
-        and we should move this new code into a shared location in a follow-up patch.
-
-        It turns out that there was a second use for pathToLocalResource, used by one
-        test (http/tests/plugins/post-url-file.html) used for getting a path to /tmp.
-        To support this test I made the new pathToLocalResource smart enough to map
-        /tmp to DUMPRENDERTREE_TEMP (which is already defined for all ports).
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::pathToLocalResource):
-        * Scripts/webkitpy/layout_tests/port/webkit.py: Set LOCAL_RESOURCE_ROOT for use by DRT.
-
-2011-09-20  Tom Zakrajsek  <tomz@codeaurora.org>
-
-        Need to specify a django version, instead of using default
-        https://bugs.webkit.org/show_bug.cgi?id=68398
-
-        Reviewed by Eric Seidel.
-
-        * QueueStatusServer/__init__.py:
-        * QueueStatusServer/main.py:
-
-2011-09-20  Tom Zakrajsek  <tomz@codeaurora.org>
-
-        Update committers.py with a few more contributor contacts
-        https://bugs.webkit.org/show_bug.cgi?id=68487
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-09-20  Leandro Pereira  <leandro@profusion.mobi>
-
-        Fix webkitpy unit tests after 95547 and 95549
-        https://bugs.webkit.org/show_bug.cgi?id=68483
-
-        Reviewed by Adam Barth.
-        
-        Fix tests for ChangeLog.touched_files() and ChangeLog.parse_entries_from_file().
-
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py: While testing
-        parse_entries_from_file(), use StringIO and entry.reviewer_text().
-        While testing parse_latest_entry_from_file(), expect the correct
-        touched_files() list.
-
-2011-09-20  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic makes it hard to compare images when scroll bars appear
-        https://bugs.webkit.org/show_bug.cgi?id=68482
-
-        Reviewed by Eric Seidel.
-
-        Because we autoscale image width, the images rescale if we overflow
-        vertically and get a scrollbar.  That makes it hard to compare two sets
-        of images.  This patch reserves space for the scrollbar so we won't
-        have the layout change.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/common.css:
-
-2011-09-20  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r95565.
-        http://trac.webkit.org/changeset/95565
-        https://bugs.webkit.org/show_bug.cgi?id=68470
-
-        Broke builds (Requested by andersca on #webkit).
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (mouseDidMoveOverElement):
-
-2011-09-20  Nayan Kumar K  <nayankk@motorola.com>
-
-        Get hover'ed element URL from HitTest.
-        
-        mouseDidMoveOverElement now gets the hover'ed element link using
-        WKHitTestResult API's.
-        https://bugs.webkit.org/show_bug.cgi?id=68426
-
-        Reviewed by Anders Carlsson.
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (mouseDidMoveOverElement):
-
-2011-09-20  Leandro Pereira  <leandro@profusion.mobi>
-
-        Changelog class should have a method to return all entries
-        https://bugs.webkit.org/show_bug.cgi?id=68399
-        
-        Implement ChangeLog.parse_entries_from_file(). This method returns a generator
-        of ChangeLogEntry objects, ordered from the latest to the oldest entry in the file.
-
-        Reviewed by Ryosuke Niwa.
-
-        * Scripts/webkitpy/common/checkout/changelog.py: Copy parse_latest_entry_from_file()
-        and adapt it to become a generator.
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py: Add test case.
-
-2011-09-20  Jarred Nicholls  <jarred@sencha.com>
-
-        [Qt] Permit qrc resources to load in QWebSettings::setUserStyleSheetUrl()
-        https://bugs.webkit.org/show_bug.cgi?id=51159
-
-        Permit any URL with a local scheme to set a user style sheet. Allow qrc
-        resource URLs as arguments to QWebSettings::setUserStyleSheetUrl().
-        
-        Add DRT/WKTR qrc resource to test loading user style sheets from a qrc URL.
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/DumpRenderTree.qrc: Added.
-        * DumpRenderTree/qt/resources/user.css: Added.
-        (body):
-        * WebKitTestRunner/qt/WebKitTestRunner.pro:
-        * WebKitTestRunner/qt/WebKitTestRunner.qrc: Added.
-        * WebKitTestRunner/qt/resources/user.css: Added.
-        (body):
-
-2011-09-20  Leandro Pereira  <leandro@profusion.mobi>
-
-        ChangeLogEntry class should contain a list of touched files
-        https://bugs.webkit.org/show_bug.cgi?id=68115
-
-        Reviewed by Eric Seidel.
-        
-        Add method to return the list of files touched in a ChangeLog entry.
-
-        * Scripts/webkitpy/common/checkout/changelog.py: Add
-        touched_files_regexp and touched_files() method.
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py: Implement
-        unit tests for touched_files() method.
-
-2011-09-20  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r95526 and r95541.
-        http://trac.webkit.org/changeset/95526
-        http://trac.webkit.org/changeset/95541
-        https://bugs.webkit.org/show_bug.cgi?id=68443
-
-        It broke 6 tests (Requested by ossy_ on #webkit).
-
-        * DumpRenderTree/qt/main.cpp:
-        (main):
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-        (WTR::activateFonts):
-
-2011-09-20  Tom Zakrajsek  <tomz@codeaurora.org>
-
-        Fix patch and bug numbering in the mocktool simulation code
-        https://bugs.webkit.org/show_bug.cgi?id=68374
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-        * Scripts/webkitpy/tool/bot/feeders_unittest.py:
-        * Scripts/webkitpy/tool/bot/flakytestreporter_unittest.py:
-        * Scripts/webkitpy/tool/bot/irc_command_unittest.py:
-        * Scripts/webkitpy/tool/bot/layouttestresultsreader_unittest.py:
-        * Scripts/webkitpy/tool/bot/queueengine_unittest.py:
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-        * Scripts/webkitpy/tool/commands/queries_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/commands/queuestest.py:
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-        * Scripts/webkitpy/tool/steps/updatechangelogswithreview_unittest.py:
-
-2011-09-20  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Don't override default QApplication font for DRT and WTR
-
-        Revision 95526 moved the relevant code below the QApplication
-        constructor, to fix a potential crash, and that made the code
-        take effect, breaking 6 tests.
-
-        We should rely on the QWebSettings to set default fonts, and
-        this QApplication::setFont() is a relic from when we didn't
-        have that option, so we remove the code.
-
-        Reviewed by Csaba Osztrogonác.
-
-        * DumpRenderTree/qt/main.cpp:
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-
-2011-09-20  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        WebKitTestRunner: Provide usage if run without arguments
-
-        If WTR is run without either one or more filenames, or
-        a '-' to indicate server mode, we don't need to start
-        up the test machinery. Doing so might actually crash,
-        as we'll exit the application immedeatly after anyways.
-
-        Reviewed by Simon Hausmann.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-
-2011-09-20  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Don't use QFont before initializing QApplication
-
-        Could potentially result in crash.
-
-        Reviewed by Simon Hausmann.
-
-        * DumpRenderTree/qt/main.cpp:
-        (main):
-
-2011-09-19  Adam Barth  <abarth@webkit.org>
-
-        Always enable ENABLE(EVENTSOURCE)
-        https://bugs.webkit.org/show_bug.cgi?id=68414
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/build-webkit:
-
-2011-09-19  David Levin  <levin@chromium.org>
-
-        Sheriffbot rollout should be more intuitive.
-        https://bugs.webkit.org/show_bug.cgi?id=68415
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/tool/bot/irc_command.py: Add support for revert and comma separated args.
-        * Scripts/webkitpy/tool/bot/irc_command_unittest.py: Add parsing tests for comma separated args
-          and a few others cases.
-        * Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py: Verify that revert works.
-
-2011-09-19  David Levin  <levin@chromium.org>
-
-        check-webkit-style generates bogus warning for StructuredExceptionHandlerSupressor.h
-        https://bugs.webkit.org/show_bug.cgi?id=68391
-
-        Reviewed by Darin Adler.
-
-        * Scripts/webkitpy/style/checkers/cpp.py: Skip __asm lines when doing style checks on a line.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Added a test for this.
-
-2011-09-19  Alexis Menard  <alexis.menard@openbossa.org>
-
-        Style checker should not check public Qt WK2 API for parameter_name.
-        https://bugs.webkit.org/show_bug.cgi?id=68359
-
-        Reviewed by Andreas Kling.
-
-        The public Qt WK2 APIs have different rules than WebKit for parameters of methods in h files.
-        Add an exception in the style checker to disable the check. Also added the test for it.
-
-        * Scripts/webkitpy/style/checker.py:
-        * Scripts/webkitpy/style/checker_unittest.py:
-
-2011-09-19  Leandro Pereira  <leandro@profusion.mobi>
-
-        GTK DRT leaks memory while comparing history items
-        https://bugs.webkit.org/show_bug.cgi?id=68086
-
-        Reviewed by Martin Robinson.
-        
-        webkit_web_history_item_get_target() returns a g_strdup()'d string,
-        so memory must be freed before compareHistoryItems() returns.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (compareHistoryItems): Use GOwnPtr to manage memory automatically.
-
-2011-09-19  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
-
-        Buildbot marks a nrwt bot red when tests are missing results
-        https://bugs.webkit.org/show_bug.cgi?id=64812
-
-        Reviewed by Ryosuke Niwa.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-
-2011-09-19  Jessie Berlin  <jberlin@apple.com>
-
-        Sites that use history pushState or replaceState are recorded in history in Private Browsing
-        mode.
-        https://bugs.webkit.org/show_bug.cgi?id=68208
-
-        Reviewed by Brady Eidson.
-
-        Add a test that the WKContextDidNavigateWithNavigationDataCallback (which is invoked by
-        updateGlobalHistory) is not called in Private Browsing when the page does history.pushState.
-
-        * TestWebKitAPI/Tests/WebKit2/PrivateBrowsingPushStateNoHistoryCallback.cpp: Added.
-        (TestWebKitAPI::didNavigateWithNavigationData):
-        This is a context history client callback, so it should not be called when in Private
-        Browsing. Add a call to FAIL().
-        (TestWebKitAPI::didSameDocumentNavigationForFrame):
-        This is a page load client callback that happens after the didNavigateWithNavigationData
-        callback. End the test.
-        (TestWebKitAPI::TEST):
-        Enable Private Browsing and load a page that uses history.pushState.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        Add PrivateBrowsingPushStateNoHistoryCallback.cpp and push-state.html.
-        * TestWebKitAPI/Tests/WebKit2/push-state.html: Added.
-        Ditto.
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        Ditto.
-        * TestWebKitAPI/win/copy-resources.cmd:
-        Ditto.
-
-2011-09-16  Elliot Poger  <epoger@google.com>
-
-        add non-CG Webkit-Mac builds to flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=68265
-
-        Reviewed by Adam Barth.
-
-        As Chromium-on-Mac approaches the switchover from Core Graphics to
-        Skia, we need to add the Skia version to the flakiness dashboard.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-        * TestResultServer/static-dashboards/builders.js:
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-
-2011-09-16  Jochen Eisinger  <jochen@chromium.org>
-
-        Rename FrameLoaderClient::allowImages to FrameLoaderClient::allowImage and include the image URL as parameter
-        https://bugs.webkit.org/show_bug.cgi?id=68071
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/WebPermissions.cpp:
-        (WebPermissions::allowImage):
-        * DumpRenderTree/chromium/WebPermissions.h:
-
-2011-09-16  Tom Zakrajsek  <tomz@codeaurora.org>
-
-        update-webkit-chromium should retry the gclient call if it fails once
-        https://bugs.webkit.org/show_bug.cgi?id=68252
-
-        Reviewed by Adam Barth.
-
-        * Scripts/update-webkit-chromium:
-
-2011-09-16  Rob Buis  <rbuis@rim.com>
-
-        Add Eli's rim address and change the nick.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-09-16  Anders Carlsson  <andersca@apple.com>
-
-        Add back the WKHitTestResultRef parameter to mouseDidMoveOverElement in an ABI preserving way
-        https://bugs.webkit.org/show_bug.cgi?id=68269
-
-        Reviewed by Geoffrey Garen.
-
-        Update client function signatures.
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (browserWindowUIClientInit):
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (mouseDidMoveOverElement):
-        (-[BrowserWindowController awakeFromNib]):
-        * MiniBrowser/win/BrowserView.cpp:
-        (BrowserView::create):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::createOtherPage):
-        (WTR::TestController::initialize):
-
-2011-09-16  Anders Carlsson  <andersca@apple.com>
-
-        Temporarily remove the WKHitTestResultRef parameter to avoid breaking the WK2 ABI/API
-        https://bugs.webkit.org/show_bug.cgi?id=68266
-
-        Reviewed by John Sullivan.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (mouseDidMoveOverElement):
-
-2011-09-16  Vincent Scheib  <scheib@chromium.org>
-
-        Add Vincent Scheib to the committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-09-16  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r95285.
-        http://trac.webkit.org/changeset/95285
-        https://bugs.webkit.org/show_bug.cgi?id=68247
-
-        It broke a webkitpy test (Requested by ossy on #webkit).
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-
-2011-09-16  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
-
-        Buildbot marks a nrwt bot red when tests are missing results
-        https://bugs.webkit.org/show_bug.cgi?id=64812
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-
-2011-09-16  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Disable WebKit2 by default in configure.ac, but enable it with build-webkit
-        https://bugs.webkit.org/show_bug.cgi?id=68178
-
-        Reviewed by Xan Lopez.
-
-        Add a work-around to enable WebKit2 when using build-webkit.
-
-        * Scripts/webkitdirs.pm:
-        (buildAutotoolsProject): 
-
-2011-09-15  James Robinson  <jamesr@chromium.org>
-
-        Add Antoine Labour and Shawn Singh to the contributors-but-not-committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-09-15  Tom Zakrajsek  <tomz@codeaurora.org>
-
-        UpdateChangeLogsWithReviewer should be able to determine reviewer of latest reviewed patch in a bug
-        https://bugs.webkit.org/show_bug.cgi?id=68003
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/updatechangelogswithreview_unittest.py:
-        * Scripts/webkitpy/tool/steps/updatechangelogswithreviewer.py:
-
-2011-09-15  Tom Zakrajsek  <tomz@codeaurora.org>
-
-        Python version check is confusing in test-webkitpy
-        https://bugs.webkit.org/show_bug.cgi?id=68004
-
-        Reviewed by Adam Barth.
-
-        * Scripts/test-webkitpy:
-
-2011-09-15  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        webkit-patch should be able to find users and add them to bugzilla groups
-        https://bugs.webkit.org/show_bug.cgi?id=63351
-
-        These are both very basic commands.  But it's now possible to find
-        all users matching a regexp, as well as add all users matching a regexp
-        to a set of groups.
-
-        bugzilla.py already knew how to find users (for validate-committer-lists)
-        but now it has the ability to modify the user records.
-
-        I split some of the logic out into a new EditUsersParser class
-        to try and reduce the amount of code in Bugzilla/BugzillaQueries.
-
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla_unittest.py:
-        * Scripts/webkitpy/tool/commands/__init__.py:
-        * Scripts/webkitpy/tool/commands/adduserstogroups.py: Added.
-        * Scripts/webkitpy/tool/commands/findusers.py: Added.
-
-2011-09-15  Eric Seidel  <eric@webkit.org>
-
-        Remove ENABLE(SVG_AS_IMAGE) since all major ports have it on by default
-        https://bugs.webkit.org/show_bug.cgi?id=68182
-
-        Reviewed by Adam Barth.
-
-        * Scripts/build-webkit:
-        * waf/build/settings.py:
-
-2011-09-15  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Make contributor email look-up case-insensitive.
-
-        validate-committer-list was incorrectly reporting that "chang.shu@nokia.com"
-        was missing from committers.py due to case sensitivity.
-
-        This also includes a test expectations update to committers_unittest.py
-        after my previous change.
-
-        * Scripts/webkitpy/common/config/committers.py:
-        * Scripts/webkitpy/common/config/committers_unittest.py:
-        * Scripts/webkitpy/tool/bot/irc_command_unittest.py:
-
-2011-09-15  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Updated this based on webkit-patch suggest-nominations and validate-committer-list output.
-
-        Add a bunch of email aliases to committers.py for regular contributors
-        who are committing using other email addresses than they have listed in the file.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-09-15  Eric Seidel  <eric@webkit.org>
-
-        Remove ENABLE_SVG_ANIMATION as all major ports have it on by default
-        https://bugs.webkit.org/show_bug.cgi?id=68022
-
-        Reviewed by Ryosuke Niwa.
-
-        * Scripts/build-webkit:
-        * waf/build/settings.py:
-
-2011-09-15  Anders Carlsson  <andersca@apple.com>
-
-        Fix Mac build by including config.h where needed.
-
-        * TestWebKitAPI/Tests/TestWebKitAPI/mac/InstanceMethodSwizzler.mm:
-        * TestWebKitAPI/Tests/WTF/MetaAllocator.cpp:
-        * TestWebKitAPI/Tests/WTF/RedBlackTree.cpp:
-        * TestWebKitAPI/Tests/WebKit2/WebArchive.cpp:
-        * TestWebKitAPI/Tests/WebKit2/WebArchive_Bundle.cpp:
-        * TestWebKitAPI/Tests/mac/DOMRangeOfString.mm:
-        * TestWebKitAPI/Tests/mac/DeviceScaleFactorOnBack.mm:
-        * TestWebKitAPI/Tests/mac/DynamicDeviceScaleFactor.mm:
-        * TestWebKitAPI/Tests/mac/StringByEvaluatingJavaScriptFromString.mm:
-        * TestWebKitAPI/mac/InstanceMethodSwizzler.mm:
-        * TestWebKitAPI/mac/JavaScriptTestMac.mm:
-        * TestWebKitAPI/mac/PlatformUtilitiesMac.mm:
-        * TestWebKitAPI/mac/PlatformWebViewMac.mm:
-        * TestWebKitAPI/mac/SyntheticBackingScaleFactorWindow.m:
-        * TestWebKitAPI/mac/WebKitAgnosticTest.mm:
-        * TestWebKitAPI/mac/main.mm:
-
-2011-09-15  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        Let TestWebKitAPI work for chromium
-        https://bugs.webkit.org/show_bug.cgi?id=67756
-
-        Reviewed by Sam Weinig.
-
-        * Scripts/build-api-tests:
-        * Scripts/run-api-tests:
-        (isSupportedPlatform):
-        (runTest):
-        (populateTests):
-        * Scripts/webkitdirs.pm:
-        (determineBaseProductDir):
-        * TestWebKitAPI/Configurations/InjectedBundle.xcconfig:
-        * TestWebKitAPI/Configurations/TestWebKitAPI.xcconfig:
-        * TestWebKitAPI/Configurations/TestWebKitAPICommon.vsprops:
-        * TestWebKitAPI/InjectedBundleController.cpp:
-        * TestWebKitAPI/InjectedBundleMain.cpp:
-        * TestWebKitAPI/JavaScriptTest.cpp:
-        * TestWebKitAPI/PlatformUtilities.cpp:
-        * TestWebKitAPI/TestWebKitAPI.gypi: Added.
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/TestWebKitAPIPrefix.h: Removed.
-        * TestWebKitAPI/Tests/WTF/CheckedArithmeticOperations.cpp:
-        * TestWebKitAPI/Tests/WTF/StringOperators.cpp:
-        * TestWebKitAPI/Tests/WTF/VectorBasic.cpp:
-        * TestWebKitAPI/Tests/WTF/VectorReverse.cpp:
-        * TestWebKitAPI/Tests/WebKit2/AboutBlankLoad.cpp:
-        * TestWebKitAPI/Tests/WebKit2/CanHandleRequest.cpp:
-        * TestWebKitAPI/Tests/WebKit2/CanHandleRequest_Bundle.cpp:
-        * TestWebKitAPI/Tests/WebKit2/CookieManager.cpp:
-        * TestWebKitAPI/Tests/WebKit2/DocumentStartUserScriptAlertCrash.cpp:
-        * TestWebKitAPI/Tests/WebKit2/DocumentStartUserScriptAlertCrash_Bundle.cpp:
-        * TestWebKitAPI/Tests/WebKit2/DownloadDecideDestinationCrash.cpp:
-        * TestWebKitAPI/Tests/WebKit2/EvaluateJavaScript.cpp:
-        * TestWebKitAPI/Tests/WebKit2/FailedLoad.cpp:
-        * TestWebKitAPI/Tests/WebKit2/Find.cpp:
-        * TestWebKitAPI/Tests/WebKit2/ForceRepaint.cpp:
-        * TestWebKitAPI/Tests/WebKit2/FrameMIMETypeHTML.cpp:
-        * TestWebKitAPI/Tests/WebKit2/FrameMIMETypePNG.cpp:
-        * TestWebKitAPI/Tests/WebKit2/HitTestResultNodeHandle.cpp:
-        * TestWebKitAPI/Tests/WebKit2/HitTestResultNodeHandle_Bundle.cpp:
-        * TestWebKitAPI/Tests/WebKit2/InjectedBundleBasic.cpp:
-        * TestWebKitAPI/Tests/WebKit2/InjectedBundleBasic_Bundle.cpp:
-        * TestWebKitAPI/Tests/WebKit2/LoadCanceledNoServerRedirectCallback.cpp:
-        * TestWebKitAPI/Tests/WebKit2/LoadCanceledNoServerRedirectCallback_Bundle.cpp:
-        * TestWebKitAPI/Tests/WebKit2/MouseMoveAfterCrash.cpp:
-        * TestWebKitAPI/Tests/WebKit2/MouseMoveAfterCrash_Bundle.cpp:
-        * TestWebKitAPI/Tests/WebKit2/PageLoadBasic.cpp:
-        * TestWebKitAPI/Tests/WebKit2/PageLoadDidChangeLocationWithinPageForFrame.cpp:
-        * TestWebKitAPI/Tests/WebKit2/PreventEmptyUserAgent.cpp:
-        * TestWebKitAPI/Tests/WebKit2/ResponsivenessTimerDoesntFireEarly.cpp:
-        * TestWebKitAPI/Tests/WebKit2/ResponsivenessTimerDoesntFireEarly_Bundle.cpp:
-        * TestWebKitAPI/Tests/WebKit2/RestoreSessionStateContainingFormData.cpp:
-        * TestWebKitAPI/Tests/WebKit2/SpacebarScrolling.cpp:
-        * TestWebKitAPI/Tests/WebKit2/WKPreferences.cpp:
-        * TestWebKitAPI/Tests/WebKit2/WKString.cpp:
-        * TestWebKitAPI/Tests/WebKit2/WKStringJSString.cpp:
-        * TestWebKitAPI/Tests/WebKit2/win/AltKeyGeneratesWMSysCommand.cpp:
-        * TestWebKitAPI/Tests/WebKit2/win/DoNotCopyANullCFURLResponse.cpp:
-        * TestWebKitAPI/Tests/WebKit2/win/HideFindIndicator.cpp:
-        * TestWebKitAPI/Tests/WebKit2/win/ResizeViewWhileHidden.cpp:
-        * TestWebKitAPI/Tests/WebKit2/win/TranslateMessageGeneratesWMChar.cpp:
-        * TestWebKitAPI/Tests/WebKit2/win/WMCloseCallsUIClientClose.cpp:
-        * TestWebKitAPI/Tests/WebKit2/win/WMPrint.cpp:
-        * TestWebKitAPI/TestsController.cpp:
-        * TestWebKitAPI/config.h: Copied from TestWebKitAPI/TestWebKitAPIPrefix.h.
-        * TestWebKitAPI/win/InjectedBundleControllerWin.cpp:
-        * TestWebKitAPI/win/PlatformUtilitiesWin.cpp:
-        * TestWebKitAPI/win/PlatformWebViewWin.cpp:
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        * TestWebKitAPI/win/main.cpp:
-
-2011-09-15  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] extract normalization of LayoutTests URLs to a method of TestShell
-        https://bugs.webkit.org/show_bug.cgi?id=68145
-
-        This will allow for other classes in DumpRenderTree to reuse this functionality
-
-        Reviewed by David Levin.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (normalizeLayoutTestURLInternal):
-        (dumpHistoryItem):
-        (TestShell::normalizeLayoutTestURL):
-        * DumpRenderTree/chromium/TestShell.h:
-
-2011-09-14  Ada Chan  <adachan@apple.com>
-
-        Add test for WKBundleFrameCopyWebArchive().
-        https://bugs.webkit.org/show_bug.cgi?id=67857
-
-        Reviewed by Anders Carlsson.
-
-        * TestWebKitAPI/Tests/WebKit2/WebArchive.cpp: Added.
-        (TestWebKitAPI::didReceiveMessageFromInjectedBundle): Do some basic sanity checks to make sure
-        the returned data is a valid webarchive.
-        (TestWebKitAPI::setInjectedBundleClient):
-        (TestWebKitAPI::didFinishLoadForFrame):
-        (TestWebKitAPI::TEST): Load simple.html in a WebView.  Wait for it to finish loading, and then ask the
-        injected bundle for the webarchive and check the returned webarchive.
-        * TestWebKitAPI/Tests/WebKit2/WebArchive_Bundle.cpp: Added.
-        (TestWebKitAPI::WebArchiveTest::WebArchiveTest):
-        (TestWebKitAPI::WebArchiveTest::didReceiveMessage): Handle the "GetWebArchive" message and return
-        the web archive.
-
-        Add files to project.
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj: Also let Visual Studio reorder a file.
-        * TestWebKitAPI/win/TestWebKitAPIInjectedBundle.vcproj:
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-
-2011-09-14  Ryosuke Niwa  <rniwa@webkit.org>
-
-        committers.py should support multiple IRC nicknames
-        https://bugs.webkit.org/show_bug.cgi?id=68110
-
-        Reviewed by Eric Seidel.
-
-        Add multiple IRC nickname support to committers.py
-
-        * Scripts/webkitpy/common/config/committers.py:
-        * Scripts/webkitpy/common/config/committers_unittest.py:
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        * Scripts/webkitpy/tool/bot/sheriff.py:
-
-2011-09-14  Jon Lee  <jonlee@apple.com>
-
-        Implement globalFlag for WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=68033
-        <rdar://problem/10119204>
-
-        Reviewed by Sam Weinig.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl: Porting globalFlag from DRT
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::LayoutTestController): initialize m_globalFlag to false
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h: add m_globalFlag
-        (WTR::LayoutTestController::globalFlag): simple getter
-        (WTR::LayoutTestController::setGlobalFlag): simple setter
-
-2011-09-13  Eric Seidel  <eric@webkit.org>
-
-        Remove ENABLE_SVG_USE as <use> is required by HTML5
-        https://bugs.webkit.org/show_bug.cgi?id=68019
-
-        Reviewed by Ryosuke Niwa.
-
-        * Scripts/build-webkit:
-        * waf/build/settings.py:
-
-2011-09-14  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Remove Jan Erik Hanssen (added in my r95078) from the list for now
-        since I can't confirm acceptable his committership.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-09-14  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] Remove obsolete WebViewClient methods from DumpRenderTree.
-        https://bugs.webkit.org/show_bug.cgi?id=68066
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2011-09-13  Ryosuke Niwa  <rniwa@webkit.org>
-
-        committers.py is missing some contributors
-        https://bugs.webkit.org/show_bug.cgi?id=68059
-
-        Reviewed by Adam Barth.
-
-        Add David Barr, Jan Erik Hanssen, and Kim Grönholm.
-
-        Also add nicks of Alejandro G. Castro, Collin Jackson, and Matt Lilek.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-09-13  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Fix webkit python test after r95061.
-
-        * Scripts/webkitpy/tool/bot/irc_command_unittest.py:
-
-2011-09-13  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        Add myself as a contributor. No review needed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-09-13  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic has unfriendly error messages when the local server is not available
-        https://bugs.webkit.org/show_bug.cgi?id=68042
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch moves us from using alert to showing the error inline in the
-        progress dialog.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/garden-o-matic.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js:
-
-2011-09-13  Adam Barth  <abarth@webkit.org>
-
-        FailureGrid in garden-o-matic should link to the builder's waterfall page
-        https://bugs.webkit.org/show_bug.cgi?id=68036
-
-        Reviewed by Dimitri Glazkov.
-
-        One of the users in the user study thought the configurations names in
-        the failure grid would link to the underlying bots.  That makes sense,
-        so this patch adds the behavior.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/notifications.css:
-
-2011-09-13  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should be able to mark failures as expected
-        https://bugs.webkit.org/show_bug.cgi?id=68027
-
-        Reviewed by Dimitri Glazkov.
-
-        All the back-end infrastructure exists for this operation.  This patch
-        just adds some UI to the front-end and wires that UI up to the back
-        end.  This exact UI will likely need some more polish, but this should
-        be a reasonable first cut.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/actions.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
-
-2011-09-13  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should tell you about the progress of your rebaseline
-        https://bugs.webkit.org/show_bug.cgi?id=67967
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch adds ui.MessageBox, which is a light wrapper around jQuery
-        UI's dialog widget.  We then use ui.MessageBox to show status messages
-        about in-progress rebaselines.  As each baseline is downloaded, the
-        MessageBox updates.  This UI replaces our temporary "alert"-based UI.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/actions.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/results.css:
-
-2011-09-13  Leandro Pereira  <leandro@profusion.mobi>
-
-        GTK DumpRenderTree uses inefficient idioms to iterate over G[S]Lists
-        https://bugs.webkit.org/show_bug.cgi?id=68024
-
-        Reviewed by Gustavo Noronha Silva.
-        
-        Using g_list_count() and g_list_nth_data() together on a loop is
-        inneficient since they're both O(n). Iterate over lists in a saner
-        way.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (dumpHistoryItem): Reduce the scope for the 'kids' variable, and
-        iterate on it using g_list_next(). Free the list after done with it.
-        (dumpBackForwardListForWebView): Instead of appending (which is
-        expensive in GLists) history items and then iterating from the tail
-        of the itemsToPrint list, prepend items and walk forwards as usual.
-        (dumpBackForwardListForAllWebViews): Walk the list in a saner way,
-        remove the (unneeded) viewList variable.
-
-2011-09-13  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Add Eric's IRC nick.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-09-13  Anders Carlsson  <andersca@apple.com>
-
-        Disable C++ exceptions when building with clang
-        https://bugs.webkit.org/show_bug.cgi?id=68031
-        <rdar://problem/9556880>
-
-        Reviewed by Mark Rowe.
-
-        * MiniBrowser/Configurations/Base.xcconfig:
-        * TestWebKitAPI/Configurations/Base.xcconfig:
-        * WebKitTestRunner/Configurations/Base.xcconfig:
-
-2011-09-13  Ojan Vafai  <ojan@chromium.org>
-
-        [chromium] fix flakiness dashboard for chromium interactive tests
-        https://bugs.webkit.org/show_bug.cgi?id=68029
-
-        Reviewed by Tony Chang.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-
-2011-09-13  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Add Alice and Aryeh to the list of contributors.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-09-13  Ryosuke Niwa  <rniwa@webkit.org>
-
-        sheriffbot whois should also tell us email addresses
-        https://bugs.webkit.org/show_bug.cgi?id=67975
-
-        Reviewed by Eric Seidel and David Levin.
-
-        Taught sheriffbot how to tell us contributor's email addresses.
-
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        * Scripts/webkitpy/tool/bot/irc_command_unittest.py:
-
-2011-09-13  Eric Seidel  <eric@webkit.org>
-
-        Remove ENABLE_SVG_FOREIGN_OBJECT as it is a required part of HTML5
-        https://bugs.webkit.org/show_bug.cgi?id=68018
-
-        Reviewed by Ryosuke Niwa.
-
-        * Scripts/build-webkit:
-        * waf/build/settings.py:
-
-2011-09-13  Chang Shu  <cshu@webkit.org>
-
-        [WK2] [Mac] Implement KeyDown function for WebKit2 EventSender.
-        https://bugs.webkit.org/show_bug.cgi?id=57515
-
-        The code change in WebKitTestRunner first sends keydown event from InjectedBundle to
-        TestController synchronously. The latter then sends simulated event to WebKit2 module,
-        which is synchronous, too.
-
-        Reviewed by Darin Adler.
-
-        * WebKitTestRunner/EventSenderProxy.h: Added.
-        (WTR::EventSenderProxy::EventSenderProxy):
-        * WebKitTestRunner/InjectedBundle/Bindings/EventSendingController.idl:
-        * WebKitTestRunner/InjectedBundle/EventSendingController.cpp:
-        (WTR::EventSendingController::keyDown):
-        * WebKitTestRunner/InjectedBundle/EventSendingController.h:
-        * WebKitTestRunner/PlatformWebView.h:
-        (WTR::PlatformWebView::platformWindow):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::TestController):
-        (WTR::TestController::didReceiveSynchronousMessageFromInjectedBundle):
-        * WebKitTestRunner/TestController.h:
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-        * WebKitTestRunner/mac/EventSenderProxy.mm: Added.
-        (WTR::buildModifierFlags):
-        (WTR::EventSenderProxy::keyDown):
-
-2011-09-12  Leandro Pereira  <leandro@profusion.mobi>
-
-        [EFL] DRT: Add DumpRenderTreeEfl.h
-        https://bugs.webkit.org/show_bug.cgi?id=63993
-
-        Reviewed by Eric Seidel.
-        
-        This header contains some global variables used by EFL's
-        DumpRenderTree implementation.
-
-        * DumpRenderTree/DumpRenderTree.h: Include DumpRenderTreeEfl.h when
-        appropriate.
-        * DumpRenderTree/efl/DumpRenderTreeEfl.h: Added.
-
-2011-09-12  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] Send the right key names for PageUp and PageDown.
-        https://bugs.webkit.org/show_bug.cgi?id=67044
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        PlatformKeyboardEventEfl uses "Prior" and "Next" to refer to PageUp and
-        PageDown (which is close to the defines in WindowsKeyboardCodes.h).
-        However, EventSender was sending "Page_Up" and "Page_Down", so tests
-        such as editing/input/page-up-down-scrolls.html were timing out due to
-        the right key down events not being sent.
-
-        * DumpRenderTree/efl/EventSender.cpp:
-        (keyPadNameFromJSValue):
-        (keyNameFromJSValue):
-
-2011-09-12  Eric Seidel  <eric@webkit.org>
-
-        sheriffbot whois is case sensitive
-        https://bugs.webkit.org/show_bug.cgi?id=67972
-
-        Reviewed by Adam Barth.
-
-        I also fixed a typo in the "More than 5 contributors" message
-        from my previous commit.
-
-        * Scripts/webkitpy/common/config/committers.py:
-        * Scripts/webkitpy/common/config/committers_unittest.py:
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        * Scripts/webkitpy/tool/bot/irc_command_unittest.py:
-
-2011-09-12  Eric Seidel  <eric@webkit.org>
-
-        sheriffbot whois should be smarter
-        https://bugs.webkit.org/show_bug.cgi?id=67971
-
-        Reviewed by Adam Barth.
-
-        This makes sheriffbot whois basically grep the committers list
-        making it much easier to find a contributor by name.
-
-        Unfortunately the current unittests depend on the real committers.py
-        file, so as we add more eric's to the project, this unittest result will
-        change.  I think that's OK for now.  We'll fix it when it breaks.
-
-        * Scripts/webkitpy/common/config/committers.py:
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        * Scripts/webkitpy/tool/bot/irc_command_unittest.py:
-
-2011-09-12  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r94976.
-        http://trac.webkit.org/changeset/94976
-        https://bugs.webkit.org/show_bug.cgi?id=67953
-
-        Broke a bunch of security/load& tests (Requested by rniwa on
-        #webkit).
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::pathToLocalResource):
-
-2011-09-12  Eric Seidel  <eric@webkit.org>
-
-        Rubber-stamped by Adam Barth.
-
-        Remove the "the tree is burning!" warning previously shown
-        when landing patches.  It was a dream.  But it's just noise now.
-
-        Some bots will require a restart to notice the removal of the option
-        so I've left the --ignore-builders option in for now.
-
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-        * Scripts/webkitpy/tool/bot/patchanalysistask.py:
-        * Scripts/webkitpy/tool/commands/download.py:
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/steps/__init__.py:
-        * Scripts/webkitpy/tool/steps/commit.py:
-        * Scripts/webkitpy/tool/steps/ensurebuildersaregreen.py: Removed.
-        * Scripts/webkitpy/tool/steps/postdiffforrevert.py:
-
-2011-09-12  Eric Seidel  <eric@webkit.org>
-
-        [NRWT] REGRESSION: Local loader tests are failing on machines that lost /tmp/LayoutTests symlink
-        https://bugs.webkit.org/show_bug.cgi?id=65781
-
-        Reviewed by Ryosuke Niwa.
-
-        Instead of making NRWT create the symlink, I just made DumpRenderTree smart enough
-        to resolve the passed in url relative to the absolute url for the test.
-
-        I believe this is a better approach than the on used in the Qt and Chromium DRT's
-        (which resolves the path relative to the built location of the DRT executable)
-        and we should move this new code into a shared location in a follow-up patch.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::pathToLocalResource):
-
-2011-09-12  Eric Seidel  <eric@webkit.org>
-
-        Reshuffle some code in WebKitDriver._read_block in preparation for reading stderr/stdout separately
-        https://bugs.webkit.org/show_bug.cgi?id=67530
-
-        Reviewed by Adam Barth.
-
-        I believe I've fixed the bug in the original patch which prompted the rollout.
-        The previous patch was using the wrong deadline for the initial read,
-        subtracting time.time() twice from the deadline value.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-
-2011-09-12  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt][WK2] WebKitTestRunner does not produce crash logs
-        https://bugs.webkit.org/show_bug.cgi?id=67714
-
-        Reviewed by Chang Shu.
-
-        Added a simple way of generating backtrace on crash
-        to the web process. The implementation is similar what
-        we have in DRT. It depends on GNU libc functionality
-        so it is only enabled where we are running in such an environment.
-
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundleQt.cpp:
-        (WTR::printBacktrace):
-        (WTR::crashHandler):
-        (WTR::InjectedBundle::platformInitialize):
-
-2011-09-11  Filip Pizlo  <fpizlo@apple.com>
-
-        Added my IRC nick to the committers file.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-09-01  Filip Pizlo  <fpizlo@apple.com>
-
-        The executable allocator makes it difficult to free individual
-        chunks of executable memory
-        https://bugs.webkit.org/show_bug.cgi?id=66363
-
-        Reviewed by Oliver Hunt.
-        
-        Introduced a best-fit, balanced-tree based allocator. The allocator
-        required a balanced tree that does not allocate memory and that
-        permits the removal of individual nodes directly (as opposed to by
-        key); neither AVLTree nor WebCore's PODRedBlackTree supported this.
-        Changed all references to executable code to use a reference counted
-        handle.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WTF/MetaAllocator.cpp: Added.
-        (TestWebKitAPI::TEST_F):
-        * TestWebKitAPI/Tests/WTF/RedBlackTree.cpp: Added.
-        (TestWebKitAPI::Pair::findExact):
-        (TestWebKitAPI::Pair::remove):
-        (TestWebKitAPI::Pair::findLeastGreaterThanOrEqual):
-        (TestWebKitAPI::Pair::assertFoundAndRemove):
-        (TestWebKitAPI::Pair::assertEqual):
-        (TestWebKitAPI::Pair::assertSameValuesForKey):
-        (TestWebKitAPI::Pair::testDriver):
-        (TestWebKitAPI::TEST_F):
-
-2011-09-10  Andy Estes  <aestes@apple.com>
-
-        Move myself from committers_unable_to_review to reviewers_list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-09-10  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix. MSW build fixes.
-
-        * DumpRenderTree/config.h:
-        * waf/build/wxpresets.py:
-
-2011-09-10  Andreas Kling  <kling@webkit.org>
-
-        Crash beneath WKURLIsEqual() when reloading in MiniBrowser.
-        https://bugs.webkit.org/show_bug.cgi?id=59328
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController updateProvisionalURLForFrame:]): Add missing null check.
-
-2011-09-10  Adam Barth  <abarth@webkit.org>
-
-        Build fix for Android.  DumpRenderTree is a client of the WebKit API
-        and does not have access to notImplemented().
-
-        * DumpRenderTree/chromium/TestShellAndroid.cpp:
-        (openStartupDialog):
-
-2011-09-09  Alexey Proskuryakov  <ap@apple.com>
-
-        Add a script to create a monolithic script-test
-        https://bugs.webkit.org/show_bug.cgi?id=67747
-
-        Reviewed by Darin Adler.
-
-        * Scripts/make-new-script-test: Added.
-
-2011-09-09  Luiz Agostini  <luiz@webkit.org>
-
-        Adding myself to the reviewers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-09-09  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Buildbot may use RunWebKitTest's evaluateCommand on bots that run nrwt
-        https://bugs.webkit.org/show_bug.cgi?id=67855
-
-        Reviewed by Dirk Pranke.
-
-        The bug was caused by the fact some ports use RunWebKitTests instead of NewRunWebKitTests to run tests,
-        and using RunWebKitTests.evaluateCommand after calling _parseNewRunWebKitTestsOutput.
-
-        Fixed the bug by merging evaluateCommand of RunWebKitTests and NewRunWebKitTests.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-09-09  Mark Hahnenberg  <mhahnenberg@apple.com>
-
-        Add myself to committers.py
-        https://bugs.webkit.org/show_bug.cgi?id=67853
-
-        Reviewed by Darin Adler.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-09-09  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
-
-        [Qt] Remove common.pri
-        https://bugs.webkit.org/show_bug.cgi?id=67814
-
-        Reviewed by Andreas Kling.
-
-        * Tools.pro:
-
-2011-09-09  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
-
-        [NRWT] the nrwt check httpd with --no-http option
-        https://bugs.webkit.org/show_bug.cgi?id=67835
-
-        Reviewed by Tony Chang.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-
-2011-09-09  Hao Zheng  <zhenghao@chromium.org>
-
-        [chromium] Implement DRT support for Android.
-        https://bugs.webkit.org/show_bug.cgi?id=67590
-
-        Reviewed by Tony Chang.
-
-        Add 2 mechanism to make DRT interaction more robust on Android:
-        - Send 'QUIT' to DRT to make it stop.
-        - Wait until receiving '#READY' from DRT, so that DRT won't miss any
-        input commands before it starts.
-        And LayoutTestController.cpp needs to include <cctype> for 'tolower'
-        and <clocale> for 'LC_ALL' to compile on Android.
-
-        Also change to use sigaction instead of signal for TestShellGtk.cpp,
-        as signal() man page recommends using sigaction().
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        * DumpRenderTree/chromium/TestShellAndroid.cpp: Added.
-        (AlarmHandler):
-        (TestShell::waitTestFinished):
-        (platformInit):
-        (openStartupDialog):
-        (checkLayoutTestSystemDependencies):
-        * DumpRenderTree/chromium/TestShellGtk.cpp:
-        (AlarmHandler):
-        (TestShell::waitTestFinished):
-
-2011-09-09  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix. Add Source/JavaScriptCore/dfg directory to the build.
-
-        * waf/build/settings.py:
-
-2011-09-09  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r94851.
-        http://trac.webkit.org/changeset/94851
-        https://bugs.webkit.org/show_bug.cgi?id=67847
-
-        It broke a webkitpy test (Requested by ossy on #webkit).
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-
-2011-09-09  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
-
-        [NRWT] the nrwt check httpd with --no-http option
-        https://bugs.webkit.org/show_bug.cgi?id=67835
-
-        Reviewed by Csaba Osztrogonác.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-
-2011-09-08  Brian Weinstein  <bweinstein@apple.com>
-
-        WebKit2: Assertion when calling didPerform*Redirect on null source/destination URL string
-        https://bugs.webkit.org/show_bug.cgi?id=67794
-        <rdar://problem/9892024>
-        
-        Add a test that we don't send a didPerformServerRedirect when a load is cancelled from willSendRequest.
-
-        Reviewed by Brady Eidson.
-
-        * TestWebKitAPI/Tests/WebKit2/LoadCanceledNoServerRedirectCallback.cpp: Added.
-        (TestWebKitAPI::didFinishLoadForFrame): Set flags on whether we've loaded the main frame, iframe, or both.
-        (TestWebKitAPI::didPerformServerRedirect): Set a flag for whether we've performed a server redirect.
-        (TestWebKitAPI::TEST): Set up a WKPageLoaderClient and WKContextHistoryClient, and load simple-iframe.html.
-            Once both frames have loaded (main frame and blocked iframe), make sure that we have never called
-            didPerformServerRedirect.
-
-        * TestWebKitAPI/Tests/WebKit2/LoadCanceledNoServerRedirectCallback_Bundle.cpp: Added.
-        (TestWebKitAPI::LoadCanceledNoServerRedirectCallbackTest::LoadCanceledNoServerRedirectCallbackTest): Initialize
-            our InjectedBundleTest.
-        (TestWebKitAPI::LoadCanceledNoServerRedirectCallbackTest::willSendRequestForFrame): If we are dealing with a request
-            from the main frame (the main resource in simple-iframe.html), allow it. If not (dealing with the iframe), block
-            the request.
-        (TestWebKitAPI::LoadCanceledNoServerRedirectCallbackTest::didCreatePage): Set up the WKBundlePageResourceLoadClient.
-
-        * TestWebKitAPI/Tests/WebKit2/simple-iframe.html: Added.
-        
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj: Add new files.
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj: Ditto.
-        * TestWebKitAPI/win/TestWebKitAPIInjectedBundle.vcproj: Ditto.
-        * TestWebKitAPI/win/copy-resources.cmd: Ditto.
-
-2011-09-08  David Levin  <levin@chromium.org>
-
-        check-webkit-style: Ref|Own Ptr& should be allowed as a parameter.
-        https://bugs.webkit.org/show_bug.cgi?id=67797
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/style/checkers/cpp.py: Allow Ref/Own Ptr when it ends with &.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Added test cases for this.
-
-2011-09-08  Fady Samuel  <fsamuel@chromium.org>
-
-        Fixed Layout Mode should be adjustable from layoutTestController for testing on Chromium platforms
-        https://bugs.webkit.org/show_bug.cgi?id=67723
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/EventSender.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::enableFixedLayoutMode):
-        (LayoutTestController::setFixedLayoutSize):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-
-2011-09-07  Matthew Delaney  <mdelaney@apple.com>
-
-        Add standalone script that filters the output of build-webkit to be more human-readable
-        https://bugs.webkit.org/show_bug.cgi?id=44081
-
-        Reviewed by Daniel Bates.
-
-        * Scripts/filter-build-webkit: Added. Just need to feed it the output of
-        a build script (e.g. build-webkit) and it spits out a prettier version.
-        * Scripts/VCSUtils.pm: Refactored "possiblyColored" out of run-api-tests into VCSUtils.
-        * Scripts/run-api-tests: Now includes VCSUtils to use "possiblyColored"
-
-2011-09-07  Noel Gordon  <noel.gordon@gmail.com>
-
-        Add myself to committers.py                 
-        https://bugs.webkit.org/show_bug.cgi?id=67696
-
-        Reviewed by Kent Tamura.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-09-07  Adam Barth  <abarth@webkit.org>
-
-        rebaseline button in garden-o-matic details view should work
-        https://bugs.webkit.org/show_bug.cgi?id=67738
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch wires up the rebaseline button in garden-o-matic results
-        details view.  The button is current per-test, so there isn't a way to
-        rebaseline individual bots.  This is a place to start.  If we decide we
-        want per-bot rebaselining, we'll need to think of some better UI.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/actions.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/results.css:
-
-2011-09-07  Eric Seidel  <eric@webkit.org>
-
-        Teach the PortFactory object how to pass along executive/user/filesystem to port objects (which fixes the failing rebaseline_test on bots)
-        https://bugs.webkit.org/show_bug.cgi?id=67737
-
-        Reviewed by Adam Barth.
-
-        I got a little over-eager when deprecating host.port_factory in the previous commit.
-        Turns out that Host.port_factory was already the "modern" port/factory.py
-        it was just the Module object.  I un-deprecated the variable, and changed it from
-        being the module to being an actual PortFactory, passing it a host object.
-        I also taught PortFactory how to set user/executive/filesystem in the kwargs
-        when instantiating a new Port object.
-        This magically fixed the test_rebaseline test, since its now no longer talking
-        to the real filesystem.
-
-        * Scripts/webkitpy/common/host.py:
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2011-09-07  Eric Seidel  <eric@webkit.org>
-
-        Add a new PortFactory class for creating new-style ports and deprecate the old PortFactory
-        https://bugs.webkit.org/show_bug.cgi?id=67734
-
-        Reviewed by Adam Barth.
-
-        Right now every place that creates a Port object has to be very careful
-        to pass in a MockSCM/MockUser/MockFilesystem when appropriate.
-        The correct fix is for port/factory.py (which creates most port objects)
-        to know how to pass these in automatically.  However, currently all port/factory.py
-        functions are free functions instead of being on an object.  This patch
-        adds a new PortFactory object and deprecates the PortFactory for the old-style Port objects.
-
-        In a follow-up patch I will add PortFactory to the Host object and teach PortFactory how to
-        pass along the proper scm/user/filesystem to the Port object.
-
-        * Scripts/webkitpy/common/host.py:
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2011-09-07  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r94441.
-        http://trac.webkit.org/changeset/94441
-        https://bugs.webkit.org/show_bug.cgi?id=67731
-
-        "MacEWSes are backed up due to new machines not able to reach
-        git.webkit.org.  Disabling tests for now" (Requested by
-        eseidel2 on #webkit).
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-
-2011-09-07  Elliot Poger  <epoger@google.com>
-
-        filter test_expectations properly for chromium-mac vs chromium-cg-mac
-        https://bugs.webkit.org/show_bug.cgi?id=67324
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-
-2011-09-07  Eric Boren  <borenet@gmail.com>
-
-        [Chromium] Modify WebTouchEvent structure to match WebCore::TouchEvent
-        https://bugs.webkit.org/show_bug.cgi?id=66800
-
-        Reviewed by Darin Fisher.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::sendCurrentTouchEvent):
-
-2011-09-07  Jarred Nicholls  <jarred@sencha.com>
-
-        [Qt][DRT] Normalize file:///tmp/LayoutTests in LayoutTestController::pathToLocalResource()
-        https://bugs.webkit.org/show_bug.cgi?id=67254
-
-        Reviewed by Csaba Osztrogonác.
-
-        Translate file:///tmp/LayoutTests/* urls into the repository LayoutTests directory, which is
-        derived from the running location of DumpRenderTree binary.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::pathToLocalResource):
-        (LayoutTestController::setUserStyleSheetLocation): pass the url through pathToLocalResource
-
-2011-09-07  Csaba Osztrogonác  <ossy@webkit.org>
-
-        REGRESSION(r94288) build-webkit doesn't work on Symbian
-        https://bugs.webkit.org/show_bug.cgi?id=67706
-
-        * Scripts/webkitdirs.pm: Disable automatic clean build on Symbian, because it doesn't support shadow build.
-        (buildQMakeProject):
-
-2011-09-07  Csaba Osztrogonác  <ossy@webkit.org>
-
-        REGRESSION(r94288) build-webkit doesn't work on Windows
-        https://bugs.webkit.org/show_bug.cgi?id=67646
-
-        Roll back r94655 with a small fix.
-
-        * Scripts/webkitdirs.pm:
-        (buildQMakeProject):
-
-2011-09-07  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r94635.
-        http://trac.webkit.org/changeset/94635
-        https://bugs.webkit.org/show_bug.cgi?id=67704
-
-        Linux Touch build is failing to compile this change.
-        (Requested by loislo on #webkit).
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::sendCurrentTouchEvent):
-
-2011-09-07  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r94655.
-        http://trac.webkit.org/changeset/94655
-        https://bugs.webkit.org/show_bug.cgi?id=67703
-
-        It broke Leopard debug bot (Requested by ossy on #webkit).
-
-        * Scripts/webkitdirs.pm:
-
-2011-09-07  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
-
-        REGRESSION(r94288) build-webkit doesn't work on Windows
-        https://bugs.webkit.org/show_bug.cgi?id=67646
-
-        Reviewed by Csaba Osztrogonác.
-
-        * Scripts/webkitdirs.pm:
-
-2011-09-06  Eric Boren  <borenet@gmail.com>
-
-        [Chromium] Modify WebTouchEvent structure to match WebCore::TouchEvent
-        https://bugs.webkit.org/show_bug.cgi?id=66800
-
-        Reviewed by Darin Fisher.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::sendCurrentTouchEvent):
-
-2011-09-06  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic details view should having working rebaseline and next/previous buttons
-        https://bugs.webkit.org/show_bug.cgi?id=67659
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch wires up basic back/forward buttons that let you traverse
-        through the results we're examining in the details view.  This ended up
-        being more code than I expected, but I wanted to keep all the state
-        information in the DOM itself.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/results.css:
-
-2011-09-01  Dirk Pranke  <dpranke@chromium.org>
-
-        fix MockFileSystem.glob(), refactor filesystem tests
-        https://bugs.webkit.org/show_bug.cgi?id=67462
-
-        Reviewed by Eric Seidel.
-
-        In debugging why my proposed change for MockFileSystem.glob()
-        in bug 66228 didn't work, I stumbled across two real bugs
-        that cancelled each other out for the unit tests. I fixed those
-        (glob shouldn't recurse into subdirs, and we weren't populating
-        self.dirs from self.files properly).
-
-        I have also created a "mixin" class for tests that can be shared
-        between the real filesystem and the mock filesystem - MockFileSystem
-        is being used enough it needs its own tests.
-
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        * Scripts/webkitpy/common/system/filesystem_mock_unittest.py: Added.
-        * Scripts/webkitpy/common/system/filesystem_unittest.py:
-
-2011-09-06  Anders Carlsson  <andersca@apple.com>
-
-        Move NPAPI headers in bridge to plugins
-        https://bugs.webkit.org/show_bug.cgi?id=67661
-
-        Update forwarding headers.
-
-        * DumpRenderTree/unix/TestNetscapePlugin/ForwardingHeaders/WebKit/npapi.h:
-        * DumpRenderTree/unix/TestNetscapePlugin/ForwardingHeaders/WebKit/npruntime.h:
-
-2011-09-06  Tony Chang  <tony@chromium.org>
-
-        [chromium] Check in 'build' for compiled binaries first
-        https://bugs.webkit.org/show_bug.cgi?id=67549
-
-        Reviewed by Dirk Pranke.
-
-        I'm working on moving the windows build output to a common location
-        rather than relative to the sln file.  Because of that, we need to
-        check those build locations first for DumpRenderTree.exe.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-
-2011-09-06  Adam Barth  <abarth@webkit.org>
-
-        Use a hierarchial structure for the garden-o-matic results view
-        https://bugs.webkit.org/show_bug.cgi?id=67620
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch re-organizes the results view to use a hierachial structure
-        for selection.  At the top-level are sections for each test.  Expanding
-        the test section shows a tab selector for builders.
-
-        This structure prepares us for wiring up various actions to this view.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        (.):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results.js:
-        ():
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
-        (.):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/results.css:
-        (.results-view>.toolbar):
-        (.results-view>.toolbar ul.actions):
-        (.results-view>.toolbar ul.actions li):
-        (.results-grid table):
-        (.results-grid table td, .results-view table th):
-        (.results-grid table th):
-        (.results-grid .text-result):
-        (.results-grid .image-result):
-
-2011-09-06  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic's base.probe generates spam in the JavaScript console
-        https://bugs.webkit.org/show_bug.cgi?id=67622
-
-        Reviewed by Dimitri Glazkov.
-
-        Now that we have CORS set up on the buildbot, we can use XMLHttpRequest
-        instead of HTMLScriptElement to test whether results exist.  This
-        reduces the console.log spam and saves bandwidth because we can use a
-        HEAD request instead of a GET request.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/net.js:
-
-2011-09-05  Adam Barth  <abarth@webkit.org>
-
-        Add a tab to garden-o-matic for viewing expected failures
-        https://bugs.webkit.org/show_bug.cgi?id=67619
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch adds a basic tab to garden-o-matic that shows all the tests
-        failing on the bots, including the expected failures.  This patch
-        mostly involves refactoring existing classes to allow new subclasses.
-
-        This view is useful for when gardeners mark tests as expected to fail
-        and then rebaseline them later.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/garden-o-matic.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/model.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/summary-mock.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js:
-
-2011-09-05  Adam Barth  <abarth@webkit.org>
-
-        Fix global variable leak in garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=67617
-
-        Reviewed by Dimitri Glazkov.
-
-        Caught by running the unit tests with noglobals turned on.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
-
-2011-09-05  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt][WK2] Add pixel test support
-        https://bugs.webkit.org/show_bug.cgi?id=66283
-
-        Reviewed by Andreas Kling.
-
-        Implemented pixel result generation by reusing the logic
-        that we have in DumpRenderTree.
-        * WebKitTestRunner/qt/TestInvocationQt.cpp:
-        (WTR::dumpImage):
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-
-2011-09-04  Robin Dunn  <robin@alldunn.com>
-
-        [wx] Enable wxWebKit to run using the wxGC Cairo backend on platforms other than GTK.
-        https://bugs.webkit.org/show_bug.cgi?id=67577
-
-        Reviewed by Kevin Ollivier.
-
-        * waf/build/settings.py:
-
-2011-09-03  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix. Add wtf/dtoa directory to build.
-
-        * waf/build/settings.py:
-
-2011-09-03  Dan Bernstein  <mitz@apple.com>
-
-        32-bit build fix.
-
-        * TestWebKitAPI/mac/PlatformUtilitiesMac.mm:
-        (TestWebKitAPI::Util::toSTD):
-
-2011-09-03  Dan Bernstein  <mitz@apple.com>
-
-        Move testStringByEvaluatingJavaScriptFromString() from DumpRenderTree to TestWebKitAPI
-        https://bugs.webkit.org/show_bug.cgi?id=67559
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dumpRenderTree): Moved testStringByEvaluatingJavaScriptFromString() from here and removed
-        the call to it.
-        * TestWebKitAPI/PlatformUtilities.h: Declared Util::toSTD(NSString *)
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj: Added StringByEvaluatingJavaScriptFromString.mm.
-        * TestWebKitAPI/Tests/mac/StringByEvaluatingJavaScriptFromString.mm: Added.
-        (TestWebKitAPI::TEST): Added. Moved testStringByEvaluatingJavaScriptFromString() to here.
-        * TestWebKitAPI/mac/PlatformUtilitiesMac.mm:
-        (TestWebKitAPI::Util::toSTD): Added.
-
-2011-09-03  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic results view should have a better results selector
-        https://bugs.webkit.org/show_bug.cgi?id=67542
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch adds a basic grid-based results selector to the results
-        view.  Currently, this grid just shows how the tests fail on the
-        various bots.  A future patch will let you select which failure to view
-        and to mark the failures for rebaselining.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base_unittests.js:
-          - Add some more basic functions for manipulating dictionaries.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results_unittests.js:
-
-2011-09-03  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic results view should show Actual and Expected results for text failures
-        https://bugs.webkit.org/show_bug.cgi?id=67536
-
-        Reviewed by Eric Seidel.
-
-        In the past, we didn't show actual and expected text results (we just
-        showed the diff) because we didn't have the awesome six-by-two results
-        grid.  Now that we do, we can move show these results.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base_unittests.js:
-          - Fixed some typos that were preventing these unit tests from running.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results.js:
-        (.):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results_unittests.js:
-          - Report -actual.txt and -expected.txt as possible results URLs.
-
-2011-09-03  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic shows "ghost" failures that are already fixed
-        https://bugs.webkit.org/show_bug.cgi?id=67535
-
-        Reviewed by Eric Seidel.
-
-        About 10% of writes fail to stick on test-results.appspot.com.  This
-        patch causes us to fetch the full_results.json blob directly from
-        build.chromium.org rather than relying upon AppEngine.
-
-        Unforuntately, we still need to get historical information from
-        AppEngine.  That will take several patches to fix becuase I need to
-        change the bots to write the full_results.json file to the
-        build-specific directory in addition to the zip file.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/model.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results.js:
-
-2011-09-03  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r94458.
-        http://trac.webkit.org/changeset/94458
-        https://bugs.webkit.org/show_bug.cgi?id=67558
-
-        Caused appcache test to fail on various bots (Requested by
-        rniwa on #webkit).
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-
-2011-09-03  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r94453.
-        http://trac.webkit.org/changeset/94453
-        https://bugs.webkit.org/show_bug.cgi?id=67557
-
-        Caused appcache test to fail on various bots (Requested by
-        rniwa on #webkit).
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-09-02  Michael Saboff  <msaboff@apple.com>
-
-        Add JSC:RegExp functional tests
-        https://bugs.webkit.org/show_bug.cgi?id=67339
-
-        New perl script to build JavaScriptCore and run the RegExp tests.
-
-        Reviewed by Gavin Barraclough.
-
-        * Scripts/run-regexp-tests: Added.
-
-2011-09-02  Michael Saboff  <msaboff@apple.com>
-
-        Add JSC:RegExp functional tests
-        https://bugs.webkit.org/show_bug.cgi?id=67339
-
-        New perl script to build JavaScriptCore and run the RegExp tests.
-
-        Reviewed by Gavin Barraclough.
-
-        * Scripts/run-regexp-tests: Added.
-
-2011-09-02  Eric Seidel  <eric@webkit.org>
-
-        Reshuffle some code in WebKitDriver._read_block in preparation for reading stderr/stdout separately
-        https://bugs.webkit.org/show_bug.cgi?id=67530
-
-        Unreviewed.  Fixing typo from previous commit.
-
-        Turns out there was *no* unittesting of WebKitDriver.  Added a basic test of _read_block
-        which exercises the code I previously made a typo in.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-
-2011-09-02  Eric Seidel  <eric@webkit.org>
-
-        Reshuffle some code in WebKitDriver._read_block in preparation for reading stderr/stdout separately
-        https://bugs.webkit.org/show_bug.cgi?id=67530
-
-        Reviewed by Adam Barth.
-
-        No functional change, just reshuffling code.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-09-02  Darin Adler  <darin@apple.com>
-
-        Added Subversion ignore for .pyc generated files.
-
-        * Scripts/webkitpy/layout_tests/models: Added property svn:ignore.
-        * Scripts/webkitpy/layout_tests/servers: Added property svn:ignore.
-        * Scripts/webkitpy/tool/servers: Added property svn:ignore.
-
-2011-09-02  Adam Barth  <abarth@webkit.org>
-
-        Enable testing on mac-ews
-        https://bugs.webkit.org/show_bug.cgi?id=67505
-
-        Reviewed by Eric Seidel.
-
-        This patch enables testing on the Mac EWS, which should help
-        contributors not turn the Mac bots red.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-
-2011-09-01  Beth Dakin  <bdakin@apple.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=67451
-        Add a test for going back to a cached page after changing the device scale factor
-
-        Reviewed by Adam Roben.
-
-        New test DeviceScaleFactorOnBack.mm inherits from WebKitAgnosticTest.
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/mac/DeviceScaleFactorOnBack.mm: Added.
-        (TestWebKitAPI::DeviceScaleFactorOnBack::url):
-        (TestWebKitAPI::DeviceScaleFactorOnBack::didLoadURL):
-        (TestWebKitAPI::DeviceScaleFactorOnBack::createWindow):
-        (TestWebKitAPI::DeviceScaleFactorOnBack::initializeView):
-        (TestWebKitAPI::DeviceScaleFactorOnBack::runTest):
-        (TestWebKitAPI::TEST_F):
-
-        Added new function to WebKitAgnosticTest to goBack. Separated 
-        waitForLoadToFinish() into its own function (instead of being a part of 
-        loadAndWaitUntilFinished()) so that it can be called from goBack as 
-        well. Also added initializeView() so we can set the cache model.
-        * TestWebKitAPI/mac/WebKitAgnosticTest.h:
-        (TestWebKitAPI::WebKitAgnosticTest::initializeView):
-        * TestWebKitAPI/mac/WebKitAgnosticTest.mm:
-        (TestWebKitAPI::WebKitAgnosticTest::WebKitAgnosticTest):
-        (TestWebKitAPI::WebKitAgnosticTest::runWebKit1Test):
-        (TestWebKitAPI::WebKitAgnosticTest::runWebKit2Test):
-        (TestWebKitAPI::WebKitAgnosticTest::loadURL):
-        (TestWebKitAPI::WebKitAgnosticTest::goBack):
-        (TestWebKitAPI::WebKitAgnosticTest::waitForLoadToFinish):
-
-2011-09-02  Anders Carlsson  <andersca@apple.com>
-
-        Build fix.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/PrivateBrowsing.cpp:
-        (PrivateBrowsing::ScriptableObject::pluginTest):
-
-2011-09-02  Anders Carlsson  <andersca@apple.com>
-
-        Move private browsing test to a PluginTest subclass
-        https://bugs.webkit.org/show_bug.cgi?id=67498
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:
-        (pluginGetProperty):
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.h:
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-        (PluginTest::NPP_SetValue):
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.h:
-        * DumpRenderTree/TestNetscapePlugIn/Tests/PrivateBrowsing.cpp: Added.
-        (PrivateBrowsing::PrivateBrowsing):
-        (PrivateBrowsing::privateBrowsingEnabled):
-        (PrivateBrowsing::cachedPrivateBrowsingEnabled):
-        (PrivateBrowsing::ScriptableObject::hasProperty):
-        (PrivateBrowsing::ScriptableObject::getProperty):
-        (PrivateBrowsing::ScriptableObject::pluginTest):
-        (PrivateBrowsing::NPP_New):
-        (PrivateBrowsing::NPP_GetValue):
-        (PrivateBrowsing::NPP_SetValue):
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_New):
-        (NPP_SetValue):
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * GNUmakefile.am:
-
-2011-09-02  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Build dependency problems
-        https://bugs.webkit.org/show_bug.cgi?id=38054
-
-        Trivial fix after r94288.
-
-        Rubber-stamped by Andras Becsi.
-
-        * Scripts/webkitdirs.pm: We should read the whole defaults.txt, not only the first two lines.
-        (buildQMakeProject):
-
-2011-09-02  Andras Becsi  <andras.becsi@nokia.com>
-
-        Remove my old e-mail address and add my new one.
-
-        Rubber-stamped by Tor Arne Vestbø.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-09-02  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] run-gtk-tests leaves a zombie Xvfb process
-        https://bugs.webkit.org/show_bug.cgi?id=67389
-
-        Reviewed by Martin Robinson.
-
-        * Scripts/run-gtk-tests: Properly close STDIN and STDERR on the
-        child process instead of doing shell redirection.
-
-2011-09-01  Mark Rowe  <mrowe@apple.com>
-
-        Fix the build by adding some more missing return types.
-
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        (-[ResourceLoadDelegate webView:identifierForInitialRequest:fromDataSource:]):
-
-2011-09-01  Eric Seidel  <eric@webkit.org>
-
-        REGRESSION (NRWT): Leaks Viewer can't load leaks from test runs that used NRWT
-        https://bugs.webkit.org/show_bug.cgi?id=66228
-
-        Reviewed by Dirk Pranke.
-
-        ORWT used $(PROCESS)$(NUMBER)-leaks.txt for leaks filenames.
-        The LeaksViewer tool globs for all *-leaks.txt files.
-        This patch makes NRWT output $(PROCESS)-$(PID)-leaks.txt which should match.
-
-        In order to test this I had to fix a limitation in our MockFileSystem.glob
-        method.  However, doing so uncovered a typo and bug in the integration tests.
-        I've disabled the offending integration tests.
-
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        * Scripts/webkitpy/layout_tests/port/leakdetector.py:
-        * Scripts/webkitpy/layout_tests/port/leakdetector_unittest.py:
-
-2011-09-01  Dominic Mazzoni  <dmazzoni@google.com>
-
-        Adds a LayoutTestController method to make it possible to test
-        starting speech input via an API call.
-        https://bugs.webkit.org/show_bug.cgi?id=60170
-
-        Reviewed by Dimitri Glazkov.
-
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::startSpeechInput):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::startSpeechInput):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::startSpeechInput):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::startSpeechInput):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::startSpeechInput):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::startSpeechInput):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::startSpeechInput):
-
-2011-09-01  Tim Horton  <hortont424@gmail.com>
-
-        Fix TestWebKitAPI build on clang-2.0
-
-        * TestWebKitAPI/Tests/WTF/CheckedArithmeticOperations.cpp:
-
-2011-09-01  Adam Barth  <abarth@webkit.org>
-
-        Remove unused "extension" parameter from rebaseline gardeningserver handler
-        https://bugs.webkit.org/show_bug.cgi?id=67384
-
-        Reviewed by James Robinson.
-
-        This parameter hasn't done anything in a while.
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-
-2011-09-01  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.
-
-        Fix a typo in unittests.  Unfortunately fixing it
-        caused several assertions.  Just disabling the test
-        instead, since it was providing no value before due to the typo.
-
-        * Scripts/webkitpy/layout_tests/port/test.py:
-
-2011-09-01  Adam Barth  <abarth@webkit.org>
-
-        Add a "rebaseline" button to the garden-o-matic summary page
-        https://bugs.webkit.org/show_bug.cgi?id=67382
-
-        Reviewed by Dimitri Glazkov.
-
-        As much as we might wish folks to not rebaseline entire test groups at
-        once, the truth is that doing so is a common operation.  Adding a
-        button for this operation is likely to make folks happy.
-
-        This patch also cleans up a bunch of plumbing surrounding failureInfo
-        objects.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/model.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js:
-
-2011-09-01  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should let the gardener assign blame for a group of test failures
-        https://bugs.webkit.org/show_bug.cgi?id=67379
-
-        Reviewed by Dimitri Glazkov.
-
-        If a group of test failures has a large revision range, the gardener
-        might wish to blame a specific revision for the failure.  Currently,
-        this only effect of assigning blame in this way is to hide the other
-        suspect commits.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/actions.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js:
-
-2011-09-01  Adam Barth  <abarth@webkit.org>
-
-        Hide garden-o-matic failure table until hover
-        https://bugs.webkit.org/show_bug.cgi?id=67376
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch removes the failure table for build failures (because it
-        does not make sense) and hides the failure table for test groups until
-        the user hovers over the test failure block, reducing visual noise.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/notifications.css:
-
-2011-09-01  Adam Barth  <abarth@webkit.org>
-
-        Switch garden-o-matic from commitData.title to commitData.summary
-        https://bugs.webkit.org/show_bug.cgi?id=67375
-
-        Reviewed by Dimitri Glazkov.
-
-        commitData.title is a string provided by Trac, which isn't great in all
-        cases.  commitData.summary is my attempt to find the most important
-        one-line summary of the commit.  This patch switches garden-o-matic
-        over to summary.
-
-        Also, this patch tweaks a bunch of CSS to tighten up the summary page
-        and reduce visual noise.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/notifications.css:
-
-2011-09-01  Adam Barth  <abarth@webkit.org>
-
-        Group failing tests in garden-o-matic if there are more than three in a folder
-        https://bugs.webkit.org/show_bug.cgi?id=67373
-
-        Reviewed by Dimitri Glazkov.
-
-        Sometimes a failure will cause many tests in a given directory to fail.
-        When that happens, it's better to list the directory as a single item
-        (with a count) rather than spamming all the test names.
-
-        (This patch also updates a bunch of unit test expected results after my last commit.)
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js:
-
-2011-09-01  Adam Barth  <abarth@webkit.org>
-
-        Lower the visual noise from the failing builders display
-        https://bugs.webkit.org/show_bug.cgi?id=67369
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch ensures that the "Building" row in the failing builders
-        display is always last and dims it by 50% to reduce visual noise.  This
-        lets the gardener focus on the actual failures.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/failures.css: Added.
-
-2011-09-01  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
-
-        [Qt] Build dependency problems
-        https://bugs.webkit.org/show_bug.cgi?id=38054
-
-        Make clean build after the defines are changed.
-
-        Reviewed by Csaba Osztrogonác.
-
-        * Scripts/webkitdirs.pm:
-        (buildQMakeProject):
-
-2011-08-31  Adam Barth  <abarth@webkit.org>
-
-        Move DumpRenderTree to WebKitPlatformSupport
-        https://bugs.webkit.org/show_bug.cgi?id=67331
-
-        Reviewed by Darin Fisher.
-
-        This patch update DumpRenderTree to account for the WebKitClient =>
-        WebKitPlatformSupport rename.
-
-        * DumpRenderTree/chromium/NotificationPresenter.cpp:
-        (NotificationPresenter::show):
-        * DumpRenderTree/chromium/Task.cpp:
-        (postTask):
-
-2011-08-31  Eric Seidel  <eric@webkit.org>
-
-        Add queues.webkit.org/active-bots page to make it easy to see which bots are down
-        https://bugs.webkit.org/show_bug.cgi?id=67314
-
-        Reviewed by Adam Barth.
-
-        Very simple page.  Just lists all the bots, what queue they belong to and what we last heard from them.
-        If we haven't heard from a bot in the last 500 messages (last day or so), then it won't show up here.
-        This makes it very easy for me to see which of my cr-jail bots might be down at any one time.
-
-        I also moved a bunch of code into dashboard.css which belonged there.
-
-        * QueueStatusServer/handlers/activebots.py: Added.
-        * QueueStatusServer/main.py:
-        * QueueStatusServer/stylesheets/dashboard.css:
-        (.queue_bubble):
-        (.queue_name):
-        (.last_heard_from):
-        (.status_text):
-        (.alive):
-        (.behind):
-        (.dead):
-        * QueueStatusServer/templates/activebots.html: Added.
-        * QueueStatusServer/templates/dashboard.html:
-        * QueueStatusServer/templates/recentstatus.html:
-
-2011-08-31  Oliver Hunt  <oliver@apple.com>
-
-        Move CheckedArithmeticOperations.cpp to the intended location
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WTF/CheckedArithmeticOperations.cpp: Renamed from Tools/TestWebKitAPI/Tests/CheckedArithmeticOperations.cpp.
-
-2011-08-31  Elliot Poger  <epoger@google.com>
-
-        add unittest to validate the complete set of Chromium configurations
-        https://bugs.webkit.org/show_bug.cgi?id=67211
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-
-2011-08-31  Nico Weber  <thakis@chromium.org>
-
-        Make ScrollAnimator(Chromium)?Mac check scrollAnimatorEnabled()
-        https://bugs.webkit.org/show_bug.cgi?id=67297
-
-        Reviewed by Tony Chang.
-
-        Explicitly disable smooth scrolling in chromium's DRT.
-
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::applyTo):
-
-2011-08-31  Oliver Hunt  <oliver@apple.com>
-
-        Add Checked<> tests to windows build
-
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-
-2011-08-30  Oliver Hunt  <oliver@apple.com>
-
-        Add support for checked arithmetic
-        https://bugs.webkit.org/show_bug.cgi?id=67095
-
-        Reviewed by Sam Weinig.
-
-        Add test cases for Checked<>
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/CheckedArithmeticOperations.cpp: Added.
-
-2011-08-31  Adam Barth  <abarth@webkit.org>
-
-        Move summary.html to garden-o-matic.html.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/summary.html.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/garden-o-matic.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/summary.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/summary.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/summary.html: Removed.
-
-2011-08-31  Noel Gordon  <noel.gordon@gmail.com>
-
-        [chromium] DRT linux should pass nativeKeyCode to plugins
-        https://bugs.webkit.org/show_bug.cgi?id=66679
-
-        Reviewed by Tony Chang.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::keyDown):  Call a Chromium Linux GTK helper routine that returns the
-        (simulated) nativeKeyCode for the given input keyboard code.
-
-2011-08-31  Adam Barth  <abarth@webkit.org>
-
-        Tighen up UI for garden-o-matic tab strip
-        https://bugs.webkit.org/show_bug.cgi?id=67266
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch add CSS to move the tab strip to the edges of the page and
-        to remove some gratuitous border-radius.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/common.css:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/summary.html:
-
-2011-08-31  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic results view shouldn't be horrifically ugly
-        https://bugs.webkit.org/show_bug.cgi?id=67264
-
-        Reviewed by Dimitri Glazkov.
-
-        Minor tweak to the results view CSS to make it fit in better with the new tabbed UI.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/results.css:
-
-2011-08-31  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic needs a tabstrip
-        https://bugs.webkit.org/show_bug.cgi?id=67263
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch adds a basic tabstrip to garden-o-matic.  The results
-        details view now opens in the "Results" tab, and the user can flip back
-        and forth between the Summary and the Results tab quickly.  There's
-        also a stub for a "Commits" tab, which is disabled.
-
-        This patch isn't the most beautiful in the world, but it gets the ball
-        rolling on a multi-modal UI.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/summary.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/common.css:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/summary.html:
-
-2011-08-31  Ai Makabi  <makabi@google.com>
-
-        Extract reference links from reftest test file.
-        https://bugs.webkit.org/show_bug.cgi?id=66838
-
-        Reviewed by Shinichiro Hamaji.
-
-        * Scripts/webkitpy/layout_tests/reftests/__init__.py: Added.
-        * Scripts/webkitpy/layout_tests/reftests/extract_reference_link.py: Added.
-        * Scripts/webkitpy/layout_tests/reftests/extract_reference_link_unittest.py: Added.
-
-2011-08-03  Philippe Normand  <pnormand@igalia.com>
-
-        [webkitpy] missing log import in common/net/resultsjsonparser.py
-        https://bugs.webkit.org/show_bug.cgi?id=65606
-
-        Reviewed by Martin Robinson.
-
-        * Scripts/webkitpy/common/net/resultsjsonparser.py: Import the logging module.
-
-2011-08-30  Philippe Normand  <pnormand@igalia.com>
-
-        [stylechecker] complains about NULL usage in some gst_structure_ calls
-        https://bugs.webkit.org/show_bug.cgi?id=67194
-
-        Reviewed by Martin Robinson.
-
-        Don't warn about NULL in some gst_structure_ calls. 0 can't be
-        used for these, a proper sentinel is required.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-
-2011-08-30  Adam Barth  <abarth@webkit.org>
-
-        Remove old-style UI from garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=67257
-
-        Reviewed by Dimitri Glazkov.
-
-        This code is nowhere near as awesome as the new hotness.  Let's remove
-        it so it doesn't weigh us down.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/main.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/unexpected-passes.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/unexpected-passes.html: Removed.
-
-2011-08-30  Takashi Toyoshima  <toyoshim@chromium.org>
-
-        [WebSocket] update pywebsocket to 0.6b5.
-        https://bugs.webkit.org/show_bug.cgi?id=66924
-
-        Reviewed by Kent Tamura.
-
-        pywebsocket 0.6b2 supported minimum features of Hybi-08 specification.
-        Now, pywebsocket 0.6b5 supports full features of Hybi-10 specification.
-        0.6b3 or later supports a closing handshake handler and it is useful to
-        verify client's closing handshake implementation.
-        0.6b4 supports AbortedByUserException. It is useful to eliminate
-        unnecessary server warning messages on intended abnormal closures.
-        0.6b5 supports Python 2.5.1 or Mac 10.5.
-
-        * Scripts/webkitpy/thirdparty/__init__.py:
-        Update download URL and directory path.
-
-2011-08-30  Dan Bernstein  <mitz@apple.com>
-
-        Test for <rdar://problem/9281695> Add text search API for getting the DOM range of a text match
-        https://bugs.webkit.org/show_bug.cgi?id=67230
-
-        Reviewed by Darin Adler.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/mac/DOMRangeOfString.html: Added.
-        * TestWebKitAPI/Tests/mac/DOMRangeOfString.mm: Added.
-        (-[DOMRangeOfStringFrameLoadDelegate webView:didFinishLoadForFrame:]):
-        (TestWebKitAPI::TEST):
-
-2011-08-30  Aaron Colwell  <acolwell@chromium.org>
-
-        Add MediaSource API to HTMLMediaElement
-        https://bugs.webkit.org/show_bug.cgi?id=64731
-
-        Reviewed by Eric Carlson.
-
-        * Scripts/build-webkit:
-
-2011-08-30  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
-
-        Emit last progress notification before calling dispatchDidFinishLoad
-        https://bugs.webkit.org/show_bug.cgi?id=28851
-
-        Reviewed by Adam Barth.
-
-        Implement dumpProgressFinishedCallback() in the layoutTestController for Qt,
-        Chromium and GTK ports. The first two were simple changes.
-
-        Some refactoring was needed in GTK port to assure that the dumps are emitted
-        correctly and the processing after the page load finished is in the right place.
-
-        To detect the load finished, we use the callback for the "load-status" notifier
-        signal of the top loading frame. And we use the deprecated "load-finished" signal
-        for dumping (if enabled) the progress finished expected output.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (dumpProgressFinishedCallbackCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::dumpProgressFinishedCallback):
-        (LayoutTestController::setDumpProgressFinishedCallback):
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::dumpProgressFinishedCallback):
-        (LayoutTestController::reset):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController::shouldDumpProgressFinishedCallback):
-        (LayoutTestController::setShouldDumpProgressFinishedCallback):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::didStopLoading):
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webViewLoadFinished):
-        (topLoadingFrameLoadFinished):
-        (webFrameLoadStatusNotified):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::dumpProgressFinishedCallback):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2011-08-30  Filip Pizlo  <fpizlo@apple.com>
-
-        JavaScriptCore does not have a good mechanism for performance
-        regression testing
-        https://bugs.webkit.org/show_bug.cgi?id=67177
-
-        Reviewed by Darin Adler.
-        
-        Added a new script, which allows for testing one, two, or more VMs
-        at once on SunSpider, V8, and Kraken benchmarks.  Benchmark/VM runs
-        are interleaved at random to minimize systematics.  The results
-        that bencher prints includes all possible relevant information about
-        how bencher was invoked.  Bencher can be easily used to measure
-        performance changes down to fractions of a percent.
-        
-        Bencher also includes experimental support for running benchmarks in
-        a DumpRenderTree release build.  This works in SunSpider and V8, but
-        not yet in Kraken.  Running benchmarks in DumpRenderTree more
-        closely mimics the performance when running in browser.
-
-        * Scripts/bencher: Added.
-
-2011-08-29  Alexey Proskuryakov  <ap@apple.com>
-
-        DumpRenderTree should begin each test with an empty cookie store
-        https://bugs.webkit.org/show_bug.cgi?id=63545
-        <rdar://problem/5666907>
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        (setDefaultsToConsistentValuesForTesting):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setAlwaysAcceptCookies):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-        Use new SPIs to manipulate sessions.
-
-2011-08-30  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r94055 and r94057.
-        http://trac.webkit.org/changeset/94055
-        http://trac.webkit.org/changeset/94057
-        https://bugs.webkit.org/show_bug.cgi?id=67191
-
-        Many failures on Mac 10.5 (Requested by toyoshim on #webkit).
-
-        * Scripts/webkitpy/thirdparty/__init__.py:
-
-2011-08-30  Adam Barth  <abarth@webkit.org>
-
-        Chromium Android should not be a core builder
-        https://bugs.webkit.org/show_bug.cgi?id=67184
-
-        Reviewed by Ryosuke Niwa.
-
-        This bot hasn't been consistently green yet because it has never actually run!
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-
-2011-08-30  Takashi Toyoshima  <toyoshim@chromium.org>
-
-        [WebSocket] update pywebsocket to 0.6b4.
-        https://bugs.webkit.org/show_bug.cgi?id=66924
-
-        Reviewed by Kent Tamura.
-
-        pywebsocket 0.6b2 supported minimum features of Hybi-08 specification.
-        Now, pywebsocket 0.6b4 supports full features of Hybi-10 specification.
-        0.6b3 or later supports a closing handshake handler and it is useful to
-        verify client's closing handshake implementation.
-        0.6b4 supports AbortedByUserException. It is useful to eliminate
-        unnecessary server warning messages on intended abnormal closures.
-
-        * Scripts/webkitpy/thirdparty/__init__.py:
-        Update download URL and directory path.
-
-2011-08-29  Tom Zakrajsek  <tomz@codeaurora.org>
-
-        sheriffbot "usage" help statements are wrong
-        https://bugs.webkit.org/show_bug.cgi?id=67170
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        * Scripts/webkitpy/tool/bot/irc_command_unittest.py:
-        * Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py:
-
-2011-08-29  Adam Barth  <abarth@webkit.org>
-
-        Add support for chomium-mac (non-CoreGraphics) baselines
-        https://bugs.webkit.org/show_bug.cgi?id=67163
-
-        Reviewed by Eric Seidel.
-
-        This patch teaches the non-CG chromium-mac bots to look at non-CG
-        baselines.  However, the patch still leaves CG as the default set of
-        baselines.
-
-        * Scripts/webkitpy/common/checkout/baselineoptimizer_unittest.py:
-        * Scripts/webkitpy/common/config/build.py:
-        * Scripts/webkitpy/common/config/build_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests_unittest.py:
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-
-2011-08-29  Shawn Singh  <shawnsingh@chromium.org>
-
-        Small fix in chromium port of new-run-webkit-tests.
-        https://bugs.webkit.org/show_bug.cgi?id=67078
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2011-08-29  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r93987, r93992, r93995, r93998, and
-        r93999.
-        http://trac.webkit.org/changeset/93987
-        http://trac.webkit.org/changeset/93992
-        http://trac.webkit.org/changeset/93995
-        http://trac.webkit.org/changeset/93998
-        http://trac.webkit.org/changeset/93999
-        https://bugs.webkit.org/show_bug.cgi?id=67147
-
-        Many failing tests (Requested by ap on #webkit).
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (setDefaultsToConsistentValuesForTesting):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-
-2011-08-26  Alexey Proskuryakov  <ap@apple.com>
-
-        DumpRenderTree should begin each test with an empty cookie store
-        https://bugs.webkit.org/show_bug.cgi?id=63545
-        <rdar://problem/5666907>
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (setDefaultsToConsistentValuesForTesting):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-        Tell WebCore to use a temporary session, starting with a clean cookie store.
-
-2011-08-23  Chris Marrin  <cmarrin@apple.com>
-
-        [mac] requestAnimationFrame support for mac port
-        https://bugs.webkit.org/show_bug.cgi?id=59146
-
-        Reviewed by Simon Fraser.
-
-        Add support for request-animation-callback flag
-
-        * Scripts/build-webkit:
-
-2011-08-27  Peter Beverloo  <peter@chromium.org>
-
-        Add a build bot for Chromium with OS(ANDROID)
-        https://bugs.webkit.org/show_bug.cgi?id=66687
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2011-08-27  Peter Beverloo  <peter@chromium.org>
-
-        Update the master build bot configuration script to properly
-        deal with the --chromium-android switch.
-        https://bugs.webkit.org/show_bug.cgi?id=66687
-
-        The --chromium-android switch is needed when running
-        update-webkit-chromium and build-webkit, as it'll tell the
-        scripts to pull in the right dependencies and cross-compile
-        WebKit using the Android NDK.
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-08-27  Peter Beverloo  <peter@chromium.org>
-
-        Teach the update and build scripts how to handle dependencies
-        and cross-compiling rules for the Chromium port on OS(ANDROID).
-        https://bugs.webkit.org/show_bug.cgi?id=66687
-
-        Reviewed by Adam Barth.
-
-        * Scripts/build-webkit:
-        * Scripts/update-webkit:
-        * Scripts/update-webkit-chromium:
-        * Scripts/webkitdirs.pm:
-        (argumentsForConfiguration):
-        (isChromium):
-        (isChromiumAndroid):
-        (determineIsChromiumAndroid):
-        (buildChromium):
-
-2011-08-26  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should let me know that I need to run the local server
-        https://bugs.webkit.org/show_bug.cgi?id=66985
-
-        Reviewed by Dimitri Glazkov.
-
-        The patch triggers an alert dialog whenever the user tries to use a
-        feature that requires the local server.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/summary.js:
-
-2011-08-26  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        garden-o-matic summary view should have pretty commit data information.
-        https://bugs.webkit.org/show_bug.cgi?id=67069
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js: Added support for styling commit data.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js: Changed tests.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/common.css: Defined global anchor color.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/notifications.css: Styled commit data.
-
-2011-08-26  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Tweak the use of Open Sans in garden-o-matic summary view to make it look decent on Windows and Linux.
-        https://bugs.webkit.org/show_bug.cgi?id=67066
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/summary-mock.html: Tweaked.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/summary.html: Ditto.
-
-2011-08-26  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [DRT] Include cairo.h in PixelDumpSupportCairo.h for EFL too.
-        https://bugs.webkit.org/show_bug.cgi?id=67041
-
-        Reviewed by Martin Robinson.
-
-        This is a follow-up to r89053: EFL's PixelDumpSupportEfl.cpp includes
-        PixelDumpSupportCairo.h, but the latter was #including cairo.h only
-        when the GTK+ port was being built.
-
-        * DumpRenderTree/cairo/PixelDumpSupportCairo.h:
-
-2011-08-26  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Clean up and line up layout in garden-o-matic summary view.
-        https://bugs.webkit.org/show_bug.cgi?id=67057
-
-        1) Renamed ui.notifications.TestFailures to ui.notifications.TestsFailing to match BuildersFailing;
-        2) Rearranged DOM structure a bit to accommodate recent changes;
-        3) Added minimal CSS to line things up.
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js: Renamed TestFailures to TestsFailing.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/summary-mock.js: Added mocks for BuildersFailing.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures.js: Renamed TestFailures to TestsFailing.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures_unittests.js: Updated tests.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js: Changed DOM structure.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js: Updated tests.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/common.css: Tweaked common appearance.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/notifications.css: Added minimal layout/style.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/summary-mock.html: Added Google Web Fonts hook.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/summary.html: Ditto.
-
-2011-08-26  Alice Liu  <alice.liu@apple.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=66823
-        Add the request info to the WebPageProxy::CreateNewPage message
-
-        Reviewed by Anders Carlsson.
-
-        Update function declarations with additional parameter:
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (createNewPage):
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (createNewPage):
-        * MiniBrowser/win/BrowserView.cpp:
-        (createNewPage):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::createOtherPage):
-        * WebKitTestRunner/TestController.h:
-
-2011-08-26  Noel Gordon  <noel.gordon@gmail.com>
-
-        Make show-pretty-diff work on linux
-        https://bugs.webkit.org/show_bug.cgi?id=67017
-
-        Reviewed by Adam Barth.
-
-        * Scripts/show-pretty-diff:
-
-2011-08-25  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Reorganize garden-o-matic CSS files to match JS-built views.
-        https://bugs.webkit.org/show_bug.cgi?id=66998
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/common.css: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/notifications.css: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/results.css: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/summary.css: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/summary-mock.html: Changed to use new CSS files.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/summary.html: Ditto.
-
-2011-08-25  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should be able to roll out patches
-        https://bugs.webkit.org/show_bug.cgi?id=66982
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch just wires the rollout event through the controller to the
-        local server, which is already set up to perform rollouts.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui_unittests.js:
-
-2011-08-25  Viatcheslav Ostapenko  <ostapenko.viatcheslav@nokia.com>
-
-        [Qt] [WK2] Assert in computeViewportAttributes when MiniBrowser started with -touch
-        https://bugs.webkit.org/show_bug.cgi?id=66951
-
-        Reviewed by Andreas Kling.
-
-        Function computeViewportAttributes() gets called when height is still 0 because MiniBrowser sets
-        width and height one by one and setWidth cause geometryChange event in QTouchWebView. 
-
-        * MiniBrowser/qt/BrowserView.cpp:
-        (BrowserView::resizeEvent):
-
-2011-08-25  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        garden-o-matic summary view should provide information on builders still in flight.
-        https://bugs.webkit.org/show_bug.cgi?id=66992
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js: Added grabbing the list of in-flight builders.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/model.js: Added buildersInFlightForRevision.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/model_unittests.js: Added tests.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js: Split off updating builder results to own method.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js: Added tests.
-
-2011-08-25  Adam Barth  <abarth@webkit.org>
-
-        webkit-patch rebaseline-expectations don't work when run outside the root
-        https://bugs.webkit.org/show_bug.cgi?id=66966
-
-        Reviewed by Eric Seidel.
-
-        Turns out tool.path() used to be relative, which caused problems when
-        running webkit-patch outside the root directory.  This patch makes it
-        absolute.  I checked all callers, and they all appear to want this
-        behavior.
-
-        It was unclear to me how to test this change because we only really
-        have a testing strategy for webkitpy, not for the main script.
-
-        * Scripts/webkit-patch:
-
-2011-08-25  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        garden-o-matic summary needs a mock view that could be used for working on styling
-        https://bugs.webkit.org/show_bug.cgi?id=66971
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/summary-mock.js: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/summary-mock.html: Added.
-
-2011-08-25  Anders Carlsson  <andersca@apple.com>
-
-        Return the correct value for NPNVsupportsCarbonBool
-        https://bugs.webkit.org/show_bug.cgi?id=66964
-
-        Add a test.
-
-        Reviewed by Adam Roben.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/TestNetscapePlugIn/Tests/mac/SupportsCarbonEventModel.cpp: Added.
-        (SupportsCarbonEventModel::SupportsCarbonEventModel):
-        (SupportsCarbonEventModel::testConvert):
-        (SupportsCarbonEventModel::runTest):
-        (SupportsCarbonEventModel::NPP_New):
-
-2011-08-25  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        garden-o-matic summary view should not be broken.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/summary.css:
-        (table.comparison): Added more specificity.
-
-2011-08-25  Adam Barth  <abarth@webkit.org>
-
-        This command has been broken for a while.  This patch updates the
-        callsite to the new API.
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-
-2011-08-25  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        garden-o-matic needs a way to report where and how tests are failing in the summary view.
-        https://bugs.webkit.org/show_bug.cgi?id=66955
-
-        Introduce FailureGrid, your one-stop failure-indicating destination. 
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html: Added new scripts.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures.js: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures_unittests.js: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js: Updated to use FailureGrid.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js: Updated tests.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/summary.html: Added new scripts.
-
-2011-08-25  Igor Oliveira  <igor.oliveira@openbossa.org>
-
-        Add myself to the committers list
-        https://bugs.webkit.org/show_bug.cgi?id=66941
-
-        Reviewed by Andreas Kling.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-08-25  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r93767.
-        http://trac.webkit.org/changeset/93767
-        https://bugs.webkit.org/show_bug.cgi?id=66931
-
-        Broke Qt bot. (Requested by yutak on #webkit).
-
-        * Scripts/webkitpy/thirdparty/__init__.py:
-
-2011-08-25  Takashi Toyoshima  <toyoshim@chromium.org>
-
-        [WebSocket] update pywebsocket to 0.6b3 which supports closing handshake test
-        https://bugs.webkit.org/show_bug.cgi?id=66924
-
-        Reviewed by Kent Tamura.
-
-        * Scripts/webkitpy/thirdparty/__init__.py:
-
-2011-08-24  Adam Barth  <abarth@webkit.org>
-
-        The user can't close the details view in garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=66911
-
-        Reviewed by Dimitri Glazkov.
-
-        In addition to adding a close button, this patch changes the test
-        selector to use a <select> element and refactors the test selector to
-        share code with the builder selector.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/actions.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/actions_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
-
-2011-08-24  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Stacktrace not in test output when a test crashes
-        https://bugs.webkit.org/show_bug.cgi?id=66806
-
-        Reviewed by Dirk Pranke.
-
-        Appends the .error and .text output when a test crashes since on chromium the .text contains the actual stack
-        trace.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2011-08-24  Adam Barth  <abarth@webkit.org>
-
-        Remove empty directory.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui: Removed.
-
-2011-08-24  Adam Barth  <abarth@webkit.org>
-
-        Finish writing up details-view in garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=66891
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch mostly just copies a bunch of CSS from main.css to
-        summary.css.  Presumably we'll delete main.css soon.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/actions.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/actions_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/summary.css:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/summary.html:
-
-2011-08-24  James Robinson  <jamesr@chromium.org>
-
-        Some compositing LayoutTests flakily crashing on Mac 10.6
-        https://bugs.webkit.org/show_bug.cgi?id=66740
-
-        Reviewed by Adam Barth.
-
-        Null-check obj->pluginTest before dereferencing it. This can be null in chromium if the plugin load fails, for
-        example if the test attempts to load a PDF plugin the load will fail since we don't have such a thing in the
-        chromium configuration.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_Destroy):
-
-2011-08-24  Anton D'Auria  <adauria@apple.com>
-
-        No review necessary.
-
-        Adding myself to list of committers.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-08-24  Avi Drissman  <avi@google.com>
-
-        Crash when restoring NSGraphicsContext when running the Chromium GPU layout tests on Mac
-        https://bugs.webkit.org/show_bug.cgi?id=66875
-
-        Reviewed by James Robinson.
-
-        * DumpRenderTree/chromium/WebThemeEngineDRTMac.mm:
-        (WebThemeEngineDRTMac::paintNSScrollerScrollbarThumb):
-
-2011-08-23  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Make notifications appear in time order again.
-        https://bugs.webkit.org/show_bug.cgi?id=66815
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js: Added setting index of the notification.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js: Updated the test.
-
-2011-08-23  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Need a way to test lost compositor context recovery
-        https://bugs.webkit.org/show_bug.cgi?id=66820
-
-        Reviewed by Kenneth Russell.
-
-        Exposes a LayoutTestController interface in chromium to simulate a
-        lost compositor context.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::loseCompositorContext):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-
-2011-08-23  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Change garden-o-matic frontend builder array to be a configuration map.
-        https://bugs.webkit.org/show_bug.cgi?id=66816
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders.js: Made kBuilders a map, with value being a configuration object.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js: Adjusted callsites to expect a map.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/main.js: Ditto.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/model.js: Ditto.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js: Ditto.
-
-2011-08-23  Cary Clark  <caryclark@google.com>
-
-        Turn WebCanvas into CGContext before drawing scrollbar (DRT using Skia on Mac)
-        https://bugs.webkit.org/show_bug.cgi?id=66803
-
-        This fixes the WebKit Canaries, in particular avoids a crash on tests
-        like css1/basic/comments.html.
-
-        Reviewed by James Robinson.
-
-        * DumpRenderTree/chromium/WebThemeEngineDRTMac.mm:
-        (WebThemeEngineDRTMac::paintNSScrollerScrollbarThumb):
-        The NSGraphicsContext call graphicsContextWithGraphicsPort takes a void*
-        parameter, so it took a WebCanvas* (mapped to SkCanvas* in Skia-land)
-        and treated it as if it were a CGContextRef.
-
-2011-08-23  Patrick Gansterer  <paroga@webkit.org>
-
-        Fix mergeChangeLogs test on native windows
-        https://bugs.webkit.org/show_bug.cgi?id=66797
-
-        Reviewed by Adam Roben.
-
-        Windows has no /tmp/ directory and the "TMPDIR" environment variable isn't set in the default setup.
-        Add the "TEMP" environment variable as additional source for the temporary directory used in writeTempFile.
-
-        * Scripts/webkitperl/VCSUtils_unittest/mergeChangeLogs.pl:
-        (writeTempFile):
-
-2011-08-23  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        garden-o-matic relative time is wrong and updates too frequently.
-        https://bugs.webkit.org/show_bug.cgi?id=66802
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base.js: Changed to account for rounding correctly.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base_unittests.js: Updated tests.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js: Upped the interval to 1 minute.
-
-2011-08-23  Patrick Gansterer  <paroga@webkit.org>
-
-        Add missing quotes around filenames in mergeChangeLogs
-        https://bugs.webkit.org/show_bug.cgi?id=66794
-
-        Reviewed by Adam Roben.
-
-        * Scripts/VCSUtils.pm:
-        (mergeChangeLogs):
-
-2011-08-23  Patrick Gansterer  <paroga@webkit.org>
-
-        webkit-perl tests fail on win32 Perl due to lack of list form of pipe open implementation
-        https://bugs.webkit.org/show_bug.cgi?id=49080
-
-        Reviewed by Adam Roben.
-
-        Use the string form of pipe open instead (like we do at all other places).
-
-        * Scripts/VCSUtils.pm:
-        (mergeChangeLogs):
-
-2011-08-23  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic summary should be able to examine failures
-        https://bugs.webkit.org/show_bug.cgi?id=66748
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch refactors a bunch of code from summary.js to independent
-        controllers in controllers.js.  This patch also contains the first
-        iteration of binding the "examine" event to a the behavior showing the
-        details view for the tests.  There's more work to do here to make this
-        work properly (and elegantly), but this patch is a start.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers/rebaseline.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/summary.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/summary.html:
-
-2011-08-23  Adam Barth  <abarth@webkit.org>
-
-        webkitpy/common/config/build.py shouldn't mention non-existant Android directory
-        https://bugs.webkit.org/show_bug.cgi?id=66737
-
-        Reviewed by Steve Block.
-
-        This directory doesn't exist anymore now that the Android port shares
-        more code with Chromium.
-
-        * Scripts/webkitpy/common/config/build.py:
-
-2011-08-22  Eric Seidel  <eric@webkit.org>
-
-        Hack start-queue.sh in an attempt to resurrect the cr-jail-1 cr-mac-ews bot.
-        I won't have ssh access to the bot again for a couple days, so
-        attempting to fix by changing this script.  If this doesn't
-        work we'll just live with the it hung for now.
-
-        Unreviewed.
-
-        * EWSTools/start-queue.sh:
-
-2011-08-22  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        webkit-patch rebaseline-expectations command should not rearrange the entire test_expectations.txt file.
-        https://bugs.webkit.org/show_bug.cgi?id=66727
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Made it possible to run TestExpectationSerializer without a TestConfigurationConverter,
-            in which case the serializer treats all expectations as unparsed.
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py: Added unit tests.
-
-2011-08-22  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Update unit test expectations after r93530.
-
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py: Updated.
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py: Ditto.
-
-2011-08-22  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        [Chromium] Expand CPU/GPU/Skia/CG into a matrix in graphics_type.
-        https://bugs.webkit.org/show_bug.cgi?id=66705
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py: Added plumbing for CG graphics types.
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py: Adjusted unit test.
-
-2011-08-22  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Update builder names for chromium gpu bots due to CG switchover
-        https://bugs.webkit.org/show_bug.cgi?id=66693
-
-        Reviewed by Dirk Pranke.
-
-        Update the port and builder names for the chromium mac gpu bots to
-        account for the CG transition.
-
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-
-2011-08-22  Dirk Pranke  <dpranke@chromium.org>
-
-        fix the GPU bot names on the layout test dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=66697
-
-        Reviewed by Dimitri Glazkov.
-
-        * TestResultServer/static-dashboards/builders.js:
-
-2011-08-22  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        garden-o-matic's relative time display should be updated regularly.
-        https://bugs.webkit.org/show_bug.cgi?id=66682
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js: Moved Time to ui.Time, added code for regular updates.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js: Changed to use ui.Time.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui_unittests.js: Added tests.
-
-2011-08-22  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        Pass --makeargs of build-webkit to chromium linux builder
-        https://bugs.webkit.org/show_bug.cgi?id=66361
-
-        Reviewed by Tony Chang.
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-        (buildChromiumMakefile):
-        (buildChromium):
-
-2011-08-22  Peter Beverloo  <peter@chromium.org>
-
-        Add myself to the contributor list.
-        https://bugs.webkit.org/show_bug.cgi?id=66674
-
-        Reviewed by Tony Gentilcore.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-08-22  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt] ImageDiff does not consider --tolerance
-        https://bugs.webkit.org/show_bug.cgi?id=66299
-
-        Reviewed by Csaba Osztrogonác.
-
-        * DumpRenderTree/qt/ImageDiff.cpp:
-        (main):
-
-2011-08-22  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Update contributor list.
-
-        Reviewed by Zoltan Herczeg.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-08-22  Kristóf Kosztyó  <Kosztyo.Kristof@stud.u-szeged.hu>
-
-        [ORWT] Fix --reset-results --add-platform-exceptions combo
-        https://bugs.webkit.org/show_bug.cgi?id=65464
-
-        Reviewed by Csaba Osztrogonác.
-
-        * Scripts/old-run-webkit-tests:
-
-2011-08-20  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic summary.html should have UI for examining failures
-        https://bugs.webkit.org/show_bug.cgi?id=66625
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch introduces the notion of UI actions and converts our
-        existing manual <button> manipulation with this new abstraction.  The
-        patch also adds an Examine button to failure notifications.  In a
-        future patch, I'll add a controller that wires this button up to
-        something useful.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/actions.js: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/actions_unittests.js: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/summary.html:
-
-2011-08-20  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic summary page should indiciate compile failures
-        https://bugs.webkit.org/show_bug.cgi?id=66624
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch creates a notification-based UI for build failures.  The new
-        UI displays the same information that used to be displayed in the
-        infobar.  There's lots of room for improvement in surfacing more
-        information, but this is a start.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/summary.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js:
-
-2011-08-19  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Default to experimental-fully-parallel mode for chromium gpu port
-        https://bugs.webkit.org/show_bug.cgi?id=66606
-
-        Reviewed by Dirk Pranke.
-
-        The chromium GPU configuration does not (currently) contain any tests
-        incompatible with --experimental-fully-parallel, and this flag is a
-        significan speedup because of the directory canvas/philip/tests which
-        contains 802 tests in the same directory. Setting this option by
-        default on this configuration is a 2x speed in release, 44s to 22s,
-        and a 3x speedup in debug, 223s to 77s, on linux on a 16 core machine.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-08-19  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r93426.
-        http://trac.webkit.org/changeset/93426
-        https://bugs.webkit.org/show_bug.cgi?id=66607
-
-        Broke the Mac build by not building gtest.framework anymore
-        (Requested by andersca on #webkit).
-
-        * TestWebKitAPI/Tests/WTF/StringOperators.cpp:
-
-2011-08-19  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Chromium GPU layout tests should use the normal process number selection, not force 1 worker
-        https://bugs.webkit.org/show_bug.cgi?id=66603
-
-        Reviewed by Dirk Pranke.
-
-        The various ChromiumGpu ports should use the same child worker
-        selection logic as other ports so they can run with full
-        parallelization on multicore systems.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-
-2011-08-19  Alok Priyadarshi  <alokp@chromium.org>
-
-        [chromium] Remove dependency of WebThemeControlDRTWin on skia::PlatformCanvas
-        https://bugs.webkit.org/show_bug.cgi?id=66570
-
-        Reviewed by Mihai Parparita.
-
-        * DumpRenderTree/chromium/WebThemeControlDRTWin.cpp:
-        (WebThemeControlDRTWin::draw):
-        (WebThemeControlDRTWin::drawTextField):
-        (WebThemeControlDRTWin::drawProgressBar):
-        * DumpRenderTree/chromium/WebThemeControlDRTWin.h:
-
-2011-08-18  Dmitry Lomov  <dslomov@google.com>
-
-        TestWebKitAPI breaks on Windows due to fast malloc incompatibility.
-        https://bugs.webkit.org/show_bug.cgi?id=66521
-
-        This patch ensures that gtest uses new and delete operators that are defined in JavaScriptCore.
-
-        Reviewed by David Levin.
-
-        * TestWebKitAPI/Tests/WTF/StringOperators.cpp: Removed redefinition of JS_EXPORTDATA.
-
-2011-08-19  Adam Roben  <aroben@apple.com>
-
-        Add project file changes I left out in r93417
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-
-2011-08-19  Adam Roben  <aroben@apple.com>
-
-        Add a helper class for swizzling ObjC instance methods to TestWebKitAPI
-
-        Fixes <http://webkit.org/b/66565> TestWebKitAPI needs a way to override instance methods of
-        NSScreen
-
-        Reviewed by Anders Carlsson.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj: Added new files.
-
-        * TestWebKitAPI/Tests/TestWebKitAPI/mac/InstanceMethodSwizzler.mm: Added.
-        (-[SimpleObject setValue:]): Original implementation.
-
-        (TestWebKitAPI::setValue2):
-        (TestWebKitAPI::setValue3):
-        Swizzled implementations.
-
-        (TestWebKitAPI::TEST): Test that we can swizzle and re-swizzle and un-swizzle an ObjC
-        instance method.
-
-        * TestWebKitAPI/mac/InstanceMethodSwizzler.h: Added.
-        * TestWebKitAPI/mac/InstanceMethodSwizzler.mm: Added.
-        (TestWebKitAPI::InstanceMethodSwizzler::InstanceMethodSwizzler): Swizzle the method.
-        (TestWebKitAPI::InstanceMethodSwizzler::~InstanceMethodSwizzler): Unswizzle the method.
-
-2011-08-19  Tom Zakrajsek  <tomz@codeaurora.org>
-
-        Fix _path_to_apache() error reporting
-        https://bugs.webkit.org/show_bug.cgi?id=66486
-
-        Reviewed by Ryosuke Niwa.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-08-19  Adam Roben  <aroben@apple.com>
-
-        Windows build fix after r93404
-
-        * TestWebKitAPI/Tests/WebKit2/win/HideFindIndicator.cpp: Added missing #include.
-
-2011-08-19  Tony Gentilcore  <tonyg@chromium.org>
-
-        Add leandrogracia to the committers list
-        https://bugs.webkit.org/show_bug.cgi?id=66552
-
-        Also fix line endings in file.
-
-        No reviewed required.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-08-19  Amruth Raj  <amruthraj@motorola.com>
-
-        Fix compilation issue in WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=66554
-
-        Reviewed by Martin Robinson.
-
-        * WebKitTestRunner/PixelDumpSupport.cpp:
-
-2011-08-19  Adam Roben  <aroben@apple.com>
-
-        Pull some of DynamicDeviceScaleFactor's code up into a shareable base class
-
-        This will make it easier to write other WebKit-agnostic tests
-
-        Fixes <http://webkit.org/b/66558> Would like to be able to reuse DynamicDeviceScaleFactor's
-        code in other WebKit-agnostic tests
-
-        Reviewed by Anders Carlsson.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj: Added new files.
-
-        * TestWebKitAPI/Tests/mac/DynamicDeviceScaleFactor.mm: Fixed copyright. Moved a bunch of
-        code to WebKitAgnosticTest.h/mm. Changed to inherit from WebKitAgnosticTest.
-        (TestWebKitAPI::DynamicDeviceScaleFactor::url): Simple getter.
-        (TestWebKitAPI::DynamicDeviceScaleFactor::didLoadURL): Calls through to runTest.
-        (TestWebKitAPI::DynamicDeviceScaleFactor::runTest): Removed loading code which
-        WebKitAgnosticTest handles for us.
-        (TestWebKitAPI::TEST_F): Removed view-creation code which WebKitAgnosticTest handles for us.
-
-        * TestWebKitAPI/mac/WebKitAgnosticTest.h: Added. Code came from DynamicDeviceScaleFactor.
-        (TestWebKitAPI::WebKitAgnosticTest::loadAndWaitUntilDone): Code came from
-        DynamicDeviceScaleFactor::runTest.
-
-        * TestWebKitAPI/mac/WebKitAgnosticTest.mm: Copied from Tools/TestWebKitAPI/Tests/mac/DynamicDeviceScaleFactor.mm.
-        (TestWebKitAPI::WebKitAgnosticTest::runWebKit1Test): Code came from
-        DynamicDeviceScaleFactor.WebKit.
-        (TestWebKitAPI::WebKitAgnosticTest::runWebKit2Test): Code came from
-        DynamicDeviceScaleFactor.WebKit2.
-
-2011-08-19  Adam Roben  <aroben@apple.com>
-
-        Clean up #includes in TestWebKitAPI
-
-        Fixes <http://webkit.org/b/66556> TestWebKitAPI's prefix header isn't very helpful
-
-        Reviewed by Anders Carlsson.
-
-        * TestWebKitAPI/TestWebKitAPIPrefix.h: Added wtf/Platform.h. Added gtest/gtest.h for C++
-        files and WebKit/WebKit.h for ObjC files.
-
-        * TestWebKitAPI/InjectedBundleController.cpp:
-        * TestWebKitAPI/JavaScriptTest.h:
-        * TestWebKitAPI/PlatformUtilities.h:
-        * TestWebKitAPI/PlatformWebView.h:
-        * TestWebKitAPI/Test.h:
-        * TestWebKitAPI/Tests/WTF/StringOperators.cpp:
-        * TestWebKitAPI/Tests/WTF/VectorBasic.cpp:
-        * TestWebKitAPI/Tests/WTF/VectorReverse.cpp:
-        * TestWebKitAPI/Tests/WebKit2/AboutBlankLoad.cpp:
-        * TestWebKitAPI/Tests/WebKit2/CanHandleRequest.cpp:
-        * TestWebKitAPI/Tests/WebKit2/CookieManager.cpp:
-        * TestWebKitAPI/Tests/WebKit2/DocumentStartUserScriptAlertCrash.cpp:
-        * TestWebKitAPI/Tests/WebKit2/DocumentStartUserScriptAlertCrash_Bundle.cpp:
-        * TestWebKitAPI/Tests/WebKit2/DownloadDecideDestinationCrash.cpp:
-        * TestWebKitAPI/Tests/WebKit2/EvaluateJavaScript.cpp:
-        * TestWebKitAPI/Tests/WebKit2/FailedLoad.cpp:
-        * TestWebKitAPI/Tests/WebKit2/Find.cpp:
-        * TestWebKitAPI/Tests/WebKit2/ForceRepaint.cpp:
-        * TestWebKitAPI/Tests/WebKit2/FrameMIMETypeHTML.cpp:
-        * TestWebKitAPI/Tests/WebKit2/FrameMIMETypePNG.cpp:
-        * TestWebKitAPI/Tests/WebKit2/HitTestResultNodeHandle.cpp:
-        * TestWebKitAPI/Tests/WebKit2/HitTestResultNodeHandle_Bundle.cpp:
-        * TestWebKitAPI/Tests/WebKit2/InjectedBundleBasic.cpp:
-        * TestWebKitAPI/Tests/WebKit2/InjectedBundleBasic_Bundle.cpp:
-        * TestWebKitAPI/Tests/WebKit2/MouseMoveAfterCrash.cpp:
-        * TestWebKitAPI/Tests/WebKit2/PageLoadBasic.cpp:
-        * TestWebKitAPI/Tests/WebKit2/PageLoadDidChangeLocationWithinPageForFrame.cpp:
-        * TestWebKitAPI/Tests/WebKit2/PreventEmptyUserAgent.cpp:
-        * TestWebKitAPI/Tests/WebKit2/ResponsivenessTimerDoesntFireEarly.cpp:
-        * TestWebKitAPI/Tests/WebKit2/RestoreSessionStateContainingFormData.cpp:
-        * TestWebKitAPI/Tests/WebKit2/SpacebarScrolling.cpp:
-        * TestWebKitAPI/Tests/WebKit2/WKPreferences.cpp:
-        * TestWebKitAPI/Tests/WebKit2/WKString.cpp:
-        * TestWebKitAPI/Tests/WebKit2/WKStringJSString.cpp:
-        * TestWebKitAPI/Tests/WebKit2/win/AltKeyGeneratesWMSysCommand.cpp:
-        * TestWebKitAPI/Tests/WebKit2/win/DoNotCopyANullCFURLResponse.cpp:
-        * TestWebKitAPI/Tests/WebKit2/win/HideFindIndicator.cpp:
-        * TestWebKitAPI/Tests/WebKit2/win/ResizeViewWhileHidden.cpp:
-        * TestWebKitAPI/Tests/WebKit2/win/TranslateMessageGeneratesWMChar.cpp:
-        * TestWebKitAPI/Tests/WebKit2/win/WMCloseCallsUIClientClose.cpp:
-        * TestWebKitAPI/Tests/WebKit2/win/WMPrint.cpp:
-        * TestWebKitAPI/Tests/mac/DynamicDeviceScaleFactor.mm:
-        * TestWebKitAPI/TestsController.cpp:
-        * TestWebKitAPI/mac/PlatformUtilitiesMac.mm:
-        Removed now-unnecessary #includes. Moved #includes of Test.h in with the rest of the
-        #includes since it is no longer a special header.
-
-2011-08-18  Dirk Pranke  <dpranke@chromium.org>
-
-        new-run-webkit-tests hung while acquiring http lock on snow leopard bots
-        https://bugs.webkit.org/show_bug.cgi?id=64886
-
-        Temporarily disable the http locking to work around the issue.
-        I'm not actually sure if this is going to work or improve things
-        much.
-
-        Reviewed by Ryosuke Niwa.
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-
-2011-08-18  Tony Chang  <tony@chromium.org>
-
-        add embedded png checksums to WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=66494
-
-        Looks like WebKitTestRunner has never supported embedded checksums.  This copies
-        some code from DRT and adds it to the WebKitTestRunner.
-
-        Reviewed by Darin Adler.
-
-        * WebKitTestRunner/CyclicRedundancyCheck.cpp: Copied from Tools/DumpRenderTree
-        * WebKitTestRunner/CyclicRedundancyCheck.h: Copied from Tools/DumpRenderTree
-        * WebKitTestRunner/GNUmakefile.am: Add new files
-        * WebKitTestRunner/PixelDumpSupport.cpp: Copied from Tools/DumpRenderTree
-        * WebKitTestRunner/PixelDumpSupport.h: Copied from Tools/DumpRenderTree
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj: Add new files
-        * WebKitTestRunner/cairo/TestInvocationCairo.cpp:
-        (WTR::dumpBitmap): Refactor to use PixelDumpSupport.
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-        * WebKitTestRunner/cg/TestInvocationCG.cpp:
-        (WTR::dumpBitmap): Refactor to use PixelDumpSupport.
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-        * WebKitTestRunner/win/WebKitTestRunner.vcproj: Add new files
-
-2011-08-18  Shawn Singh  <shawnsingh@chromium.org>
-
-        https://bugs.webkit.org/show_bug.cgi?id=47240
-
-        Fixed a cygwin path problem in the chromium port of diff_image;
-        Also made the return values of the diff_image function more consistent.
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2011-08-17  Alejandro G. Castro  <alex@igalia.com>
-
-        [GTK] Fix compilation problems with deprecations in gtk+
-        https://bugs.webkit.org/show_bug.cgi?id=66073
-
-        Reviewed by Martin Robinson.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (main): G_CONST_RETURN was deprecated
-        * GtkLauncher/main.c:
-        (createWindow): Added gtk_box_new conditional compilation for
-        gtk+-3.
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (browser_window_init): Replaced gtk_vbox_new with gtk_box_new, we
-        are just supporting gtk+-3 for WebKit2.
-
-2011-08-18  Anders Carlsson  <andersca@apple.com>
-
-        Fix libc++ C++0x build
-        https://bugs.webkit.org/show_bug.cgi?id=66479
-
-        Reviewed by Adam Roben.
-
-        Add missing includes.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        * DumpRenderTree/mac/CheckedMalloc.cpp:
-
-2011-08-18  Adam Roben  <aroben@apple.com>
-
-        Test that WebKit updates style when a WebView is moved between differently-scaled windows
-
-        Test for <http://webkit.org/b/66412> <rdar://problem/9971958> WebKit doesn't react when a
-        WebView is moved between windows with different backing scale factors
-
-        Reviewed by Anders Carlsson.
-
-        * TestWebKitAPI/JavaScriptTest.cpp:
-        (TestWebKitAPI::runJSTest): Moved a little bit of code from here...
-        (TestWebKitAPI::compareJSResult): ...to here. Also made the error message more similar to
-        gtest's built-in error messages.
-
-        * TestWebKitAPI/JavaScriptTest.h: Added overloads of runJSTest that take a WebView * and
-        WKView * for convenience on Mac. Added compareJSResult helper function for implementing
-        those overloads.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj: Added new files.
-
-        * TestWebKitAPI/Tests/mac/DynamicDeviceScaleFactor.mm: Added.
-        (-[FrameLoadDelegate initWithDidFinishLoadBoolean:]): Simple initializer.
-        (-[FrameLoadDelegate webView:didFinishLoadForFrame:]): Record that the load finished.
-        (TestWebKitAPI::didFinishLoadForFrame): Record that the load finished.
-        (TestWebKitAPI::setPageLoaderClient): Set up the client.
-        (TestWebKitAPI::DynamicDeviceScaleFactor::DynamicDeviceScaleFactor): Simple constructor.
-        (TestWebKitAPI::DynamicDeviceScaleFactor::createWindow): Creates a
-        SyntheticBackingScaleFactorWindow and returns it.
-        (TestWebKitAPI::DynamicDeviceScaleFactor::runTest): Loads devicePixelRatio.html and checks
-        that WebKit uses the correct scale factor when the WebView is not in a window, is put in a
-        window, is moved to a differently-scaled window, and is taken out of the window.
-        (TestWebKitAPI::DynamicDeviceScaleFactor::loadURL): Helper function with overloads for
-        WebKit1 and WebKit2.
-        (TestWebKitAPI::TEST_F): Runs the test, with overloads for WebKit1 and WebKit2.
-
-        * TestWebKitAPI/Tests/mac/devicePixelRatio.html: Added.
-
-        * TestWebKitAPI/mac/JavaScriptTestMac.mm: Added.
-        (TestWebKitAPI::runJSTest): Fairly simple overloads for WebView * and WKView *.
-
-        * TestWebKitAPI/mac/SyntheticBackingScaleFactorWindow.h: Added.
-        * TestWebKitAPI/mac/SyntheticBackingScaleFactorWindow.m: Added.
-        (-[SyntheticBackingScaleFactorWindow initWithContentRect:styleMask:backing:defer:]): Simple
-        initializer.
-        (-[SyntheticBackingScaleFactorWindow setBackingScaleFactor:]): Simple setter.
-
-        (-[SyntheticBackingScaleFactorWindow backingScaleFactor]):
-        (-[SyntheticBackingScaleFactorWindow userSpaceScaleFactor]):
-        Overrides of NSWindow methods that WebKit uses to determine the device scale factor.
-
-2011-08-18  Dmitry Lomov  <dslomov@google.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=66425
-        check-webkit-style should detect incorrectly formatted file change descriptions.
-        Description, if present, should be separated from colon with a space.
-
-        Reviewed by David Levin.
-
-        * Scripts/webkitpy/style/checkers/changelog.py: Fix.
-        * Scripts/webkitpy/style/checkers/changelog_unittest.py: Unit tests.
-
-2011-08-18  Adam Barth  <abarth@webkit.org>
-
-        webkit-patch pretty-diff should be shown in main help
-        https://bugs.webkit.org/show_bug.cgi?id=66404
-
-        Reviewed by Dimitri Glazkov.
-
-        As requested by dglazkov.
-
-        * Scripts/webkitpy/tool/commands/prettydiff.py:
-
-2011-08-17  Dmitry Lomov  <dslomov@google.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=66400
-        Fix TestWebKitAPI build on Mac OS.
-
-        Reviewed by David Levin.
-
-        * TestWebKitAPI/Configurations/Base.xcconfig: Added ICU headers to the HEADER_SEARCH_PATH.
-
-2011-08-17  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        garden-o-matic spring cleaning: move scripts, styles, and images in the respective directories.
-        https://bugs.webkit.org/show_bug.cgi?id=66427
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Bugzilla.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Buildbot.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Buildbot_unittests.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder_unittests.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FailingTestsBugForm.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FailingTestsBugForm_unittests.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FlakyLayoutTestDetector.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FlakyLayoutTestDetector_unittests.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FlakyTestBugForm.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FlakyTestBugForm_unittests.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/LayoutTestHistoryAnalyzer.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/LayoutTestResultsLoader.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/NRWTResultsParser.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/NewBugForm.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/NewBugForm_unittests.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ORWTResultsParser.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/PersistentCache.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestFailures.css: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestRelatedBugForm.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestRelatedBugForm_unittests.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Trac.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Utilities.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Utilities_unittests.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/WebKitBugzilla.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/WebKitBuildbot.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/base.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/base_unittests.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/bugzilla_unittests.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/builders.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/builders_unittests.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/checkout.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/checkout_unittests.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/config.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/controllers: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/controllers.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/controllers/rebaseline.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/favicon-green.png: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/favicon-red.png: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/images: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/images/favicon-green.png: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/favicon-green.png.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/images/favicon-red.png: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/favicon-red.png.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/index.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.css: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/model.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/model_unittests.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/net.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/net_unittests.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/rebaseline.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/results.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/results_unittests.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Bugzilla.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Bugzilla.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Buildbot.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Buildbot.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Buildbot_unittests.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Buildbot_unittests.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Builder.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Builder_unittests.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder_unittests.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/FailingTestsBugForm.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FailingTestsBugForm.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/FailingTestsBugForm_unittests.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FailingTestsBugForm_unittests.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/FlakyLayoutTestDetector.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FlakyLayoutTestDetector.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/FlakyLayoutTestDetector_unittests.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FlakyLayoutTestDetector_unittests.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/FlakyTestBugForm.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FlakyTestBugForm.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/FlakyTestBugForm_unittests.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FlakyTestBugForm_unittests.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/LayoutTestHistoryAnalyzer.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/LayoutTestHistoryAnalyzer.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/LayoutTestResultsLoader.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/LayoutTestResultsLoader.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/NRWTResultsParser.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/NRWTResultsParser.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/NewBugForm.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/NewBugForm.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/NewBugForm_unittests.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/NewBugForm_unittests.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ORWTResultsParser.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ORWTResultsParser.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/PersistentCache.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/PersistentCache.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/TestRelatedBugForm.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestRelatedBugForm.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/TestRelatedBugForm_unittests.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestRelatedBugForm_unittests.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Trac.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Trac.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Utilities.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Utilities.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Utilities_unittests.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Utilities_unittests.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ViewController.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/WebKitBugzilla.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/WebKitBugzilla.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/WebKitBuildbot.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/WebKitBuildbot.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/base.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base_unittests.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/base_unittests.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/bugzilla_unittests.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/bugzilla_unittests.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/builders.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders_unittests.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/builders_unittests.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/checkout.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout_unittests.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/checkout_unittests.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/config.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/controllers.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/controllers.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/main.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js.
-        ():
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/model.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/model.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/model_unittests.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/model_unittests.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/net.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/net.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/net_unittests.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/net_unittests.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/results.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results_unittests.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/results_unittests.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/trac_unittests.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/trac_unittests.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui/results.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results_unittests.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui/results_unittests.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui_unittests.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui_unittests.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/unexpected-passes.js: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/unexpected-passes.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/TestFailures.css: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestFailures.css.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/main.css: Copied from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.css.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/summary.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/trac_unittests.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui/results.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui/results_unittests.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui_unittests.js: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/unexpected-passes.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/unexpected-passes.js: Removed.
-
-2011-08-17  Jochen Eisinger  <jochen@chromium.org>
-
-        Make SVNTest.test_svn_apply use the same timezone logic as VCSUtils.pm
-        https://bugs.webkit.org/show_bug.cgi?id=65877
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-
-2011-08-17  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Remove base.keys and replace it with Object.keys.
-        https://bugs.webkit.org/show_bug.cgi?id=66422
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/base.js: Removed base.keys.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/base_unittests.js: Removed unit tests for it.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/model.js: Replaced with Object.keys
-
-2011-08-17  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        garden-o-matic Summary view should have items in descending chronological order.
-        https://bugs.webkit.org/show_bug.cgi?id=66403
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/summary.js: Renamed "push" to "add" for clarity, cleaned up some stuff.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js: Rewrote add to insert DOM elements in order.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js: Added unit tests.
-
-2011-08-17  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Fix a few errors in garden-o-matic frontend unit tests.
-        https://bugs.webkit.org/show_bug.cgi?id=66421
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/base_unittests.js: Changed my excellent test to view time as variable continuum.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/builders_unittests.js: Tweaked the test to accommodate new builder names.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js: Hurriedly covered up my prior sins.
-
-2011-08-17  Adam Barth  <abarth@webkit.org>
-
-        Update Tools to account for (CG) being added to Chromium builder names
-        https://bugs.webkit.org/show_bug.cgi?id=66410
-
-        Reviewed by Adam Barth.
-
-        Some of these names will change back once we turn on Skia bots.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/builders_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/config.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui_unittests.js:
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        * TestResultServer/static-dashboards/builders.js:
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-
-2011-08-16  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Wire up relative time to garden-o-matic summary view.
-        https://bugs.webkit.org/show_bug.cgi?id=66343
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Trac.js: Add time to the commitData object. 
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/model_unittests.js: Adjusted unit tests.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js: Wired up relative date.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js: Updated unit tests.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/trac_unittests.js: Adjusted unit tests.
-
-2011-08-17  Adam Roben  <aroben@apple.com>
-
-        Make run-api-tests run tests in alphabetical order
-
-        Fixes <http://webkit.org/b/66401> run-api-tests runs tests in a semi-random order
-
-        Reviewed by David Kilzer.
-
-        * Scripts/run-api-tests:
-        (runAllTests):
-        (runAllTestsInSuite):
-        Sort the lists of tests and suites before iterating over them.
-
-2011-08-17  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should be able to rebaseline expected failures
-        https://bugs.webkit.org/show_bug.cgi?id=66204
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch introduces a new view for displaying expect, actual, and
-        differences between results.  The new view also has a fledgling
-        controller that handles some basic operations.  The new view is
-        exercised by rebaseline.html, which lets you rebaselines expected
-        failures, but the new view is not fully integrated into
-        garden-o-matic.html
-
-        More patches will be required to make this stuff fully working, but
-        this patch was already somewhat spiraling out of control.  Hopefully
-        this patch will serve as a good starting point for further development.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/controllers: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/controllers.js: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/controllers/rebaseline.js: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.css:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/rebaseline.html: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui/results_unittests.js: Added.
-
-2011-08-16  Chang Shu  <cshu@webkit.org>
-
-        Support reset in WebCore::Internals
-        https://bugs.webkit.org/show_bug.cgi?id=66307
-
-        Reviewed by Dimitri Glazkov.
-
-        Added call to resetInternalsObject in DRT.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetTestController):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::resetSettings):
-
-2011-08-17  Alexis Menard  <alexis.menard@openbossa.org>
-
-        Add a new build slave for the Qt port on Mac OS SnowLeopard.
-        https://bugs.webkit.org/show_bug.cgi?id=66392
-
-        Modify the config file to include the new build slave.
-
-        Reviewed by Adam Roben.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2011-08-17  Sam White  <samuel.white@rochester.edu>
-
-        AccessibilityObject levels are inconsistent
-        https://bugs.webkit.org/show_bug.cgi?id=66180
-        
-        Added the ability to get numeric attribute values using numberAttributeValue. This
-        function complements the existing stringAttributeValue and boolAttributeValue functions.
-        The addition of numberAttributeValue was necessary because the stringAttributeValue
-        function does a type check and will only return strings. This limitation made it
-        impossible to get values for attributes that returned an NSNumber.
-
-        Reviewed by Chris Fleizach.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (numberAttributeValueCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::numberAttributeValue):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::numberAttributeValue):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::numberAttributeValue):
-
-2011-08-17  Adam Roben  <aroben@apple.com>
-
-        Tell Trac logs always to display all specified revisions in a single page
-
-        Trac imposes a default limit of 100 revisions per log page. We need to tell it to allow more
-        revisions than that.
-
-        Fixes <http://webkit.org/b/66373> Links to Trac from TestFailures page don't always show all
-        relevant revisions
-
-        Reviewed by Daniel Bates.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Trac.js:
-        (trac.logURL): Add a limit parameter to the log URL that allows all revisions to be seen in
-        a single page.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FailingTestsBugForm_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/trac_unittests.js:
-        Updated tests for the above.
-
-2011-08-17  Adam Roben  <aroben@apple.com>
-
-        Fix TestFailures's link to file a bug about TestFailures itself
-
-        Fixes <http://webkit.org/b/66387> REGRESSION (r92135): TestFailures page's link to file a
-        bug about itself is broken
-
-        Reviewed by Dan Bates.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype._domForAuxiliaryUIElements): Added a path separator to separate
-        the host from the path.
-
-2011-08-17  Adam Roben  <aroben@apple.com>
-
-        Teach TestFailures to ignore unbelievably short test runs
-
-        Fixes <http://webkit.org/b/66385> TestFailures page thinks all tests passed in
-        http://build.webkit.org/builders/Windows%207%20Release%20(Tests)/builds/14956
-
-        Reviewed by Dan Bates.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder.js:
-        (Builder.prototype.getNumberOfFailingTests): If it looks like all tests passed, but
-        run-webkit-tests took less than 10 seconds to run, assume that some weird error occurred
-        that caused it not to run any tests at all (as happened for a while due to
-        <http://webkit.org/b/64988>). Bumped the cache version to evict old, buggy cached data.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder_unittests.js:
-        Test for the above.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/LayoutTestResultsLoader.js:
-        (LayoutTestResultsLoader.prototype.start): Bumped the cache version to evict old, buggy cached data.
-
-2011-08-16  Adam Barth  <abarth@webkit.org>
-
-        Add a CG qualifier similar to the GPU qualifier
-        https://bugs.webkit.org/show_bug.cgi?id=66359
-
-        Reviewed by Eric Seidel.
-
-        Once we have a Skia configuration on Chromium Mac, we'll use this CG
-        qualifier to note that expectations apply only to the CG configuration.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-
-2011-08-16  Eric Seidel  <eric@webkit.org>
-
-        REGRESSION(92717): WinPort needs to parse version information from port_name
-        https://bugs.webkit.org/show_bug.cgi?id=66325
-
-        Unreviewed.  Fixing an exception/typo seen on the bots (and testing to make sure it works).
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-
-2011-08-16  Adam Barth  <abarth@webkit.org>
-
-        Change webkit-patch analyze-baselines to print in a more unix-friendly way
-        https://bugs.webkit.org/show_bug.cgi?id=66349
-
-        Reviewed by James Robinson.
-
-        As requested by jamesr.
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-
-2011-08-16  Eric Seidel  <eric@webkit.org>
-
-        REGRESSION(92717): WinPort needs to parse version information from port_name
-        https://bugs.webkit.org/show_bug.cgi?id=66325
-
-        Reviewed by Adam Barth.
-
-        WinPort didn't have any port_name parsing logic.
-        Seemed it was best to just share the logic from MacPort.
-        Sharing the logic from MacPort seemed easiest with a shared superclass.
-        Once I created ApplePort (the superclass) there was a bunch of logic to share.
-        I found LeakDetector was just in the way when switching back and forth
-        between win.py and mac.py so I moved it into its own file.
-
-        The only logic change here is that WinPort should now be
-        able to parse port_name values like MacPort (and other ports)
-        can.  The fact that ports do this in their constructors is
-        wrong and a source of many bugs.  But at least now WinPort
-        matches the status-quo.
-
-        * Scripts/webkitpy/layout_tests/port/apple.py: Added.
-        * Scripts/webkitpy/layout_tests/port/leakdetector.py: Added.
-        * Scripts/webkitpy/layout_tests/port/leakdetector_unittest.py: Added.
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        * Scripts/webkitpy/layout_tests/port/win_unittest.py:
-
-2011-08-16  Adam Barth  <abarth@webkit.org>
-
-        Add webkit-patch analyze-baselines, as requested by jamesr.
-
-        * Scripts/webkitpy/common/checkout/baselineoptimizer.py:
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-
-2011-08-16  Adam Barth  <abarth@webkit.org>
-
-        Fold bulk-optimize-baselines into optimize-baselines
-        https://bugs.webkit.org/show_bug.cgi?id=66345
-
-        Reviewed by James Robinson.
-
-        bulk-optimize-baselines is now a superset of optimize-baselines, so
-        they can be combined.
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-
-2011-08-16  Adam Barth  <abarth@webkit.org>
-
-        Move chromium-mac to chromium-cg-mac to prepare for Skia switchover
-        https://bugs.webkit.org/show_bug.cgi?id=66334
-
-        Reviewed by Tony Chang.
-
-        This patch moves us closer to switching the Chromium port from
-        CoreGraphics to Skia.  This patch teaches our tools that the current
-        Chromium Mac configuration is actually chromium-cg-mac, which makes
-        room for a future chromium-mac configuration that uses Skia.
-
-        Shortly after this patch lands, I'll do a server-side move of the
-        chromium-mac and chromium-mac-leopard directories to chromium-cg-mac
-        and chromium-cg-mac-leopard.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-        * Scripts/webkitpy/common/checkout/baselineoptimizer_unittest.py:
-        * Scripts/webkitpy/common/config/build.py:
-        * Scripts/webkitpy/common/config/build_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/dryrun.py:
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/google_chrome_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests_unittest.py:
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-
-2011-08-16  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        garden-o-matic frontend needs a friendly relative time description method.
-        https://bugs.webkit.org/show_bug.cgi?id=66324
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/base.js: Added base.relativizeTime method.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/base_unittests.js: Added unit tests.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js: Wired up Time widget to use it.
-
-2011-08-16  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Summary view should not add multiple entries for the same test failure.
-        https://bugs.webkit.org/show_bug.cgi?id=66318
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/summary.js: Added a simplistic updating button.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js: Added ways to check for
-            equality of ui.notifications.FailingTest, and whether ui.notifications.TestFailures already contains a given failure analysis.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js: Added tests.
-
-2011-08-16  Adam Roben  <aroben@apple.com>
-
-        Teach TestFailures that tests that have failed or passed many times in a row are not flaky
-
-        The basic strategy here is that once a test has failed or passed many times in a row we
-        never again consider it as a possibly flaky test. It's a simple strategy but seems to result
-        in many fewer false positives than our current behavior.
-
-        Fixes <http://webkit.org/b/66327> TestFailures page considers far too many tests to be
-        flaky, including tests that failed for a while but then were fixed
-
-        Reviewed by Dan Bates.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FlakyLayoutTestDetector.js:
-        (FlakyLayoutTestDetector): Initialize new _buildCount property, which is used to track the
-        number of non-too-many-failure builds we've seen.
-        (FlakyLayoutTestDetector.prototype.incorporateTestResults): Don't track tests which haven't
-        failed in the _maximumFailOrPassCount most recent builds. For other not-yet-considered-flaky
-        tests, keep track of how many times they have passed or failed in a row. If they pass or
-        fail more than _maximumFailOrPassCount times, consider them to be non-flaky. (Once a test is
-        considered flaky it doesn't matter how many times it passes or fails.)
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FlakyLayoutTestDetector_unittests.js:
-        Added tests for the above.
-
-2011-08-16  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        garden-o-matic needs a summary view with actions for each problem.
-        https://bugs.webkit.org/show_bug.cgi?id=66144
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html: Added notifications tests.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/summary.js: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/summary.css: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/summary.html: Added.
-
-2011-08-16  Dean Jackson  <dino@apple.com>
-
-        Adding Ted "hober" O'Connor as a non-committing contributor.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-08-16  Adam Roben  <aroben@apple.com>
-
-        Teach TestFailures how to interpret unfinished test runs
-
-        Fixes <http://webkit.org/b/66309> TestFailures thinks all tests passed in
-        http://build.webkit.org/builders/Lion%20Intel%20Debug%20(Tests)/builds/136
-
-        Reviewed by David Kilzer.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder.js:
-        (Builder.prototype.getNumberOfFailingTests): Look for "isFinished" in the layout-test step
-        rather than "isStarted" so that we don't count builds for which the test run never finished.
-        Bumped the cache version to evict old, buggy cached data.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder_unittests.js:
-        Added a test for the above, and made a somewhat synthetic test more realistic by including
-        more of the actual JSON data from build.webkit.org.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/LayoutTestResultsLoader.js:
-        (LayoutTestResultsLoader.prototype.start): Bumped the cache version to evict old, buggy
-        cached data.
-
-2011-08-16  Adam Roben  <aroben@apple.com>
-
-        Make Apple's Windows port fall back to Lion results instead of SnowLeopard
-
-        Apple's Windows port now uses Lion-era versions of CoreFoundation, ICU, etc., so in theory
-        should match Lion's behavior.
-
-        Fixes <http://webkit.org/b/66302> Apple's Windows port matches Lion for some test results,
-        but doesn't use Lion results
-
-        Reviewed by David Kilzer.
-
-        * Scripts/old-run-webkit-tests:
-        (expectedDirectoryForTest):
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        (WinPort.baseline_search_path):
-        * Scripts/webkitpy/layout_tests/port/win_unittest.py:
-        (WinPortTest.test_baseline_search_path):
-        Replaced mac-snowleopard with mac-lion.
-
-        * Scripts/webkitpy/common/config/build.py:
-        (_should_file_trigger_build): Added an entry for the LayoutTests/platform/mac-lion
-        directory, which all Apple Mac platforms and Apple Win platforms could potentially use
-        results from. Removed Apple Win from being affected by mac-snowleopard changes, since it
-        will no longer look there for results.
-
-        * Scripts/webkitpy/common/config/build_unittest.py:
-        (ShouldBuildTest.test_should_build): Tests for the above changes.
-
-2011-08-16  Dean Jackson  <dino@apple.com>
-
-        Move me from contributor to reviewer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-08-15  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        garden-o-matic frontend needs model.commitDataForRevisionRange function.
-        https://bugs.webkit.org/show_bug.cgi?id=66252
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/model.js: Added commitDataForRevisionRange method.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/model_unittests.js: Added tests.
-
-2011-08-15  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        garden-o-matic frontend needs a generic way to track updates.
-        https://bugs.webkit.org/show_bug.cgi?id=66245
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/base.js: Added UpdateTracker.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/base_unittests.js: Added tests.
-
-2011-08-15  Adam Roben  <aroben@apple.com>
-
-        Teach TestWebKitAPI/gtest how to print JavaScript failures nicely
-
-        Failures now give output of the form: foo should be bar but is baz
-
-        Fixes <http://webkit.org/b/66240> It's hard to tell what the actual result of a failed JS
-        test is in TestWebKitAPI's output
-
-        Reviewed by David Levin.
-
-        * TestWebKitAPI/JavaScriptTest.cpp:
-        (TestWebKitAPI::JavaScriptCallbackContext::JavaScriptCallbackContext): Removed now-unused
-        members.
-        (TestWebKitAPI::javaScriptCallback): Changed to just store the result string in the context
-        object, rather than doing any testing of it here.
-        (TestWebKitAPI::runJSTest): Made this function a gtest predicate-formatter. This allows us
-        to use a pretty error message when the test fails.
-
-        * TestWebKitAPI/JavaScriptTest.h: Changed runJSTest to a predicate-formatter, and added nice
-        gtest-style macros that wrap it.
-
-        * TestWebKitAPI/Test.h: Removed now-unused TEST_ASSERT_RETURN.
-
-        * TestWebKitAPI/Tests/WebKit2/MouseMoveAfterCrash.cpp:
-        (TestWebKitAPI::TEST): Changed to use the new macros.
-
-        * TestWebKitAPI/Tests/WebKit2/RestoreSessionStateContainingFormData.cpp:
-        (TestWebKitAPI::createSessionStateContainingFormData): Ditto. Note that this function no
-        longer returns 0 when the JS test fails. That shouldn't have any effect on whether or not
-        the test passes, though. Returning early seems to have been an unnecessary optimization.
-
-        * TestWebKitAPI/Tests/WebKit2/SpacebarScrolling.cpp:
-        (TestWebKitAPI::TEST): Changed to use the new macros.
-
-2011-08-15  Eric Seidel  <eric@webkit.org>
-
-        Move the Leaks bot back to ORWT until I can fix LeaksViewer regressions filed by Adam Roben in bug 66227 and 66228.
-
-        Unreviewed.
-
-        * Scripts/run-webkit-tests:
-        (usingLeaks):
-        (useNewRunWebKitTests):
-
-2011-08-14  Adam Barth  <abarth@webkit.org>
-
-        Switch results detail view over to new-style object-oriented UI widgets
-        https://bugs.webkit.org/show_bug.cgi?id=66200
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch replaces my goofy template-based UI for the results
-        comparison screen with new object-oriented UI widgets.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.css:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui/results.js: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui_unittests.js:
-
-2011-08-13  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        garden-o-matic's analyzeUnexpectedFailures needs a completion callback.
-        https://bugs.webkit.org/show_bug.cgi?id=66166
-
-        Also changed base.RequestTracker to:
-        a) fire callback immediately if requestsInFlight is 0;
-        b) not barf if callback is not supplied.
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js: Started using completion callback.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/model.js: Added completion callback.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/base.js: Changed RequestTracker.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/base_unittest.js: Added unit tests.
-
-2011-08-12  Mark Rowe  <mrowe@apple.com>
-
-        Be more forward-looking in the choice of compiler.
-
-        Rubber-stamped by Jon Honeycutt.
-
-        * DumpRenderTree/mac/Configurations/CompilerVersion.xcconfig:
-        * MiniBrowser/Configurations/CompilerVersion.xcconfig:
-        * TestWebKitAPI/Configurations/CompilerVersion.xcconfig:
-        * WebKitTestRunner/Configurations/CompilerVersion.xcconfig:
-
-2011-08-12  Sadrul Habib Chowdhury  <sadrul@chromium.org>
-
-        DRT: Add support for gesture events.
-        https://bugs.webkit.org/show_bug.cgi?id=66105
-
-        Reviewed by Darin Fisher.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::EventSender):
-        (EventSender::gestureScrollBegin):
-        (EventSender::gestureScrollEnd):
-        (EventSender::gestureTap):
-        (EventSender::gestureEvent):
-        * DumpRenderTree/chromium/EventSender.h:
-
-2011-08-12  Andy Estes  <aestes@apple.com>
-
-        allowRoundingHacksCallback uses the wrong argument for 'thisObject'.
-        https://bugs.webkit.org/show_bug.cgi?id=66158
-
-        Reviewed by Dan Bernstein.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (allowRoundingHacksCallback): The third argument is the 'this'
-        JSObjectRef, not the second.
-
-2011-08-12  Andy Estes  <aestes@apple.com>
-
-        Cancel in onbeforeunload dialog sometime causes a button to stop working.
-        https://bugs.webkit.org/show_bug.cgi?id=26211
-
-        Reviewed by Alexey Proskuryakov.
-
-        Implement a new LayoutTestController method that a test can call to set
-        the return value of DumpRenderTree's beforeunload UI delegate.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController): Initialize
-        m_shouldStayOnPageAfterHandlingBeforeUnload.
-        (setShouldStayOnPageAfterHandlingBeforeUnloadCallback): Call
-        LayoutTestController::setShouldStayOnPageAfterHandlingBeforeUnload().
-        (LayoutTestController::staticFunctions): Register
-        'setShouldStayOnPageAfterHandlingBeforeUnload' as a static function.
-        * DumpRenderTree/LayoutTestController.h: 
-        (LayoutTestController::shouldStayOnPageAfterHandlingBeforeUnload):
-        (LayoutTestController::setShouldStayOnPageAfterHandlingBeforeUnload):
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController): Initialize
-        m_shouldStayOnPageAfterHandlingBeforeUnload and bind
-        'setShouldStayOnPageAfterHandlingBeforeUnload' to its c++ setter.
-        (LayoutTestController::reset): Reset
-        m_shouldStayOnPageAfterHandlingBeforeUnload to false.
-        (LayoutTestController::setShouldStayOnPageAfterHandlingBeforeUnload):
-        Set m_shouldStayOnPageAfterHandlingBeforeUnload to the value passed in
-        from JavaScript.
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController::shouldStayOnPageAfterHandlingBeforeUnload):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::runModalBeforeUnloadDialog): Add the correct logging and
-        return the inverse of
-        LayoutTestController::shouldStayOnPageAfterHandlingBeforeUnload().
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:runBeforeUnloadConfirmPanelWithMessage:initiatedByFrame:]): Ditto.
-        * DumpRenderTree/win/UIDelegate.cpp:
-        (UIDelegate::runBeforeUnloadConfirmPanelWithMessage): Ditto.
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        Define setShouldStayOnPageAfterHandlingBeforeUnload().
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::postNewBeforeUnloadReturnValue): Post a message
-        to the Test Controller telling it what value it should return in its
-        onbeforeunload UI delegate.
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::setShouldStayOnPageAfterHandlingBeforeUnload):
-        Call InjectedBundle::postNewBeforeUnloadReturnValue().
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::TestController): Initialize
-        m_beforeUnloadReturnValue to true.
-        (WTR::runBeforeUnloadConfirmPanel): Add the correct logging and return
-        the value of TestController::beforeUnloadReturnValue().
-        (WTR::TestController::resetStateToConsistentValues): Reset
-        m_beforeUnloadReturnValue to true.
-        * WebKitTestRunner/TestController.h:
-        (WTR::TestController::beforeUnloadReturnValue):
-        (WTR::TestController::setBeforeUnloadReturnValue):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle): Handle the
-        message posted from the injected bundle by retrieving the message body
-        as a WKBoolean and calling TestController::setBeforeUnloadReturnValue().
-
-2011-08-12  Sam Weinig  <sam@webkit.org>
-
-        Move compiler specific macros to their own header
-        https://bugs.webkit.org/show_bug.cgi?id=66119
-
-        Reviewed by Anders Carlsson.
-
-        * DumpRenderTree/ForwardingHeaders/wtf/Compiler.h: Added.
-
-2011-08-11  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Add a way to extend DOM objects in garden-o-matic.
-        https://bugs.webkit.org/show_bug.cgi?id=66096
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/base.js: Added base.extends.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/base_unittests.js: Added tests.
-
-2011-08-11  MORITA Hajime  <morrita@google.com>
-
-        [Chromium][DRT] editing/spelling/spelling-backspace-between-lines.html fails
-        https://bugs.webkit.org/show_bug.cgi?id=45438
-
-        Reviewed by Kent Tamura.
-
-        MockSpellCheck was assuming the input of spellCheckWord() is a word.
-        But it can be a series of word. This change made spellCheckWord()
-        understand simple word boundary which appears in tests.
-        
-        * DumpRenderTree/chromium/MockSpellCheck.cpp:
-        (MockSpellCheck::spellCheckWord):
-
-2011-08-11  Mark Rowe  <mrowe@apple.com>
-
-        Rework some Makefile logic to remove a double-negative.
-
-        Reviewed by Jon Honeycutt.
-
-        * DumpRenderTree/mac/PerlSupport/Makefile:
-
-2011-08-11  Anders Carlsson  <andersca@apple.com>
-
-        Add a FIXME.
-
-        * TestWebKitAPI/TestsController.cpp:
-        (TestWebKitAPI::TestsController::TestsController):
-
-2011-08-11  Anders Carlsson  <andersca@apple.com>
-
-        Initialize threading before running any tests
-        https://bugs.webkit.org/show_bug.cgi?id=66112
-
-        Reviewed by Adam Barth.
-
-        * TestWebKitAPI/TestsController.cpp:
-        (TestWebKitAPI::TestsController::TestsController):
-
-2011-08-11  Adam Barth  <abarth@webkit.org>
-
-        Add unexpected-passes.html to TestFailures for marking tests as passing
-        https://bugs.webkit.org/show_bug.cgi?id=66102
-
-        Reviewed by Dimitri Glazkov.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
-            - Move some code into the library so it can be shared.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/model.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui_unittests.js:
-            - Add round-trip unit tests.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/unexpected-passes.html: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/unexpected-passes.js: Added.
-            - I'm not entirely sure this feature should remain a separate HTML
-              file, but it seemed better than cluttering up the main HTML file
-              with too much extra stuff.
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-            - The gardening server couldn't handle adding PASS expectations.  Now it can.
-
-2011-08-11  Eric Seidel  <eric@webkit.org>
-
-        NRWT has wrong fallback order for Mac now that Lion exists
-        https://bugs.webkit.org/show_bug.cgi?id=66093
-
-        Reviewed by Adam Barth.
-
-        ORWT used a different system for fallback orders than NRWT did.
-        I moved win.py to match ORWT fallback orders in bug 64486.
-        This bug moves mac.py to match ORWT fallback order
-        and adds 'lion' as a supported OS version.
-
-        Because ChromiumMac shares OS version detection code with AppleMac
-        this also added support for 'lion' to chromium mac.  Hopefully that's a good thing.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/win.py:
-
-2011-08-11  Adam Barth  <abarth@webkit.org>
-
-        Update test results now that we use absolute URLs.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/checkout_unittests.js:
-
-2011-08-11  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should be able to determine when tests unexpectedly pass
-        https://bugs.webkit.org/show_bug.cgi?id=66092
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch just contains the library methods for extracting this
-        information.  I'll add some UI in a subsequent patch.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/results_unittests.js:
-
-2011-08-11  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        New expectation entries should be placed next to existing ones.
-        https://bugs.webkit.org/show_bug.cgi?id=66066
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Added the notion of insertion point,
-            which is computed as the last found reference to the same test.
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py: Added and adjusted unit tests.
-
-2011-08-11  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Unreviewed, rolling out r92847.
-        http://trac.webkit.org/changeset/92847
-        https://bugs.webkit.org/show_bug.cgi?id=65986
-
-        Broke check-webkit-style
-
-        * Scripts/webkitpy/style/checker.py:
-        * Scripts/webkitpy/style/checker_unittest.py:
-
-2011-08-11  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Unreviewed, rolling out r92847.
-        http://trac.webkit.org/changeset/92847
-        https://bugs.webkit.org/show_bug.cgi?id=65986
-
-        Broke check-webkit-style
-
-        * Scripts/webkitpy/style/checker.py:
-        * Scripts/webkitpy/style/checker_unittest.py:
-
-2011-08-11  Pierre Rossi  <pierre.rossi@gmail.com>
-
-        [Qt] autotests shouldn't require config.h in the style check
-        https://bugs.webkit.org/show_bug.cgi?id=65986
-
-        Remove the include rules from the style-check for Qt tests.
-        Since for the most part it's just a matter of using the
-        API provided by QtWebKit, enforcing the WebCore set of rules
-        only seems to make sense in the case of MIMESniffing.
-
-        Reviewed by Benjamin Poulain.
-
-        * Scripts/webkitpy/style/checker.py:
-        * Scripts/webkitpy/style/checker_unittest.py:
-
-2011-08-11  Zsolt Fehér  <h490267@stud.u-szeged.hu>
-
-        [WK2] Implement waitForPolicyDelegate
-        https://bugs.webkit.org/show_bug.cgi?id=42330
-
-        Reviewed by Csaba Osztrogonác.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::navigationTypeToString):
-        (WTR::InjectedBundlePage::decidePolicyForNavigationAction):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::LayoutTestController):
-        (WTR::LayoutTestController::setCustomPolicyDelegate):
-        (WTR::LayoutTestController::waitForPolicyDelegate):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (WTR::LayoutTestController::isPolicyDelegateEnabled):
-        (WTR::LayoutTestController::isPolicyDelegatePermissive):
-
-2011-08-11  Adam Barth  <abarth@webkit.org>
-
-        rebaseline-expectations should use the release bots, not the debug
-        bots.  The debug bots don't all run all the tests.  Also, delay
-        updating test_expectations a long as possible to avoid clearing out
-        lines that we'll need for other ports.
-
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-
-2011-08-10  Ryosuke Niwa  <rniwa@webkit.org>
-
-        r92792 inadvertently removed PlatformSpecificScheduler for all Snow Leopard bots.
-        Revert it partially so that the remaining Snow Leopard bots can fulfill their duty.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2011-08-10  Eric Seidel  <eric@webkit.org>
-
-        new-run-webkit-test's WinPort has no fallback logic
-        https://bugs.webkit.org/show_bug.cgi?id=64486
-
-        Unreviewed.
-
-        Turns out that we've long had a subtle bug whereby if you didn't
-        already have DumpRenderTree built, we might end up running unsupported tests
-        because the DumpRenderTree --print-supported-features check would silently fail.
-
-        When I moved the call from using popen to using Executive.run_command, this silent
-        failure became noisy.  (Breaking some bots.)
-
-        This re-orders our steps so that we always build DRT before collecting expectations,
-        as well as adds a warning message when DumpRenderTree can't be found.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-08-10  Eric Seidel  <eric@webkit.org>
-
-        new-run-webkit-test's WinPort has no fallback logic
-        https://bugs.webkit.org/show_bug.cgi?id=64486
-
-        Unreviewed.  Fix test-webkitpy under Python 2.5.
-
-        * Scripts/webkitpy/layout_tests/port/win.py:
-
-2011-08-10  Benjamin Poulain  <benjamin@webkit.org>
-
-        [Qt][WK2] MiniBrowser is firing twice the QDesktopWebView::mousePressEvent method
-        https://bugs.webkit.org/show_bug.cgi?id=65875
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        For some reason, QWidget send fake mouse event on some platform, under certains conditions.
-
-        This causes mouse events to be sent twice in some cases. We work around the problem
-        by defining the first touch point to be a primary touch point (case which hit some
-        weird condition in QWidget, skipping the generation of fake mouse events).
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::notify):
-
-2011-08-10  David Hyatt  <hyatt@apple.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=66004
-
-        Remove the regions and exclusions bots and also the flags in build-webkit, since I'm just turning
-        the code on by default.
-
-        Reviewed by Adam Roben.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-        * Scripts/build-webkit:
-
-2011-08-10  Oliver Hunt  <oliver@apple.com>
-
-        JSEvaluteScript does not return the correct object when given JSONP data
-        https://bugs.webkit.org/show_bug.cgi?id=66003
-
-        Reviewed by Gavin Barraclough.
-
-        Add a test case.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (testStringByEvaluatingJavaScriptFromString):
-
-2011-08-10  Eric Seidel  <eric@webkit.org>
-
-        WIN: NRWT runs compositing tests on configurations that don't support compositing
-        https://bugs.webkit.org/show_bug.cgi?id=64472
-
-        Reviewed by Adam Barth.
-
-        I think the code was just wrong.  It was never splitting the string
-        into list pieces before.
-        I've now tested the supported_features code and theoretically it
-        should now work with Windows DRT.
-
-        I also made the list-lookup functions always return lists, to make
-        it possible to clean up the list-transform code in the future
-        (I opted not to do that cleanup in this patch, but at least now
-        both types of feature lookup functions match return types.)
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-
-2011-08-10  Eric Seidel  <eric@webkit.org>
-
-        Clean up ChromiumDriver a little
-        https://bugs.webkit.org/show_bug.cgi?id=65995
-
-        Unreviewed.
-
-        Fix NRWT for chromium.  Silly python.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2011-08-10  Eric Seidel  <eric@webkit.org>
-
-        Clean up ChromiumDriver a little
-        https://bugs.webkit.org/show_bug.cgi?id=65995
-
-        Reviewed by Adam Barth.
-
-        - We no longer support threading, so remove threading specific code.
-        - Add FIXMEs about using ServerProcess instead.
-        - Condense option-mapping if-cascade into a for loop.
-        - Unindent long if blocks by using early return.
-        - Unwrap lines which are needlessly wrapped.
-
-        There should be no functional changes here, just code cleanup/dead-code removal.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2011-08-10  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Unmuddle construction options for TestConfiguration.
-        https://bugs.webkit.org/show_bug.cgi?id=65988
-
-        The TestConfiguration instance is now constructed only using actual values.
-        Port-based construction is split into a "from_port" class method.
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/layout_tests/models/test_configuration.py: Added TestConfiguration.from_port
-        * Scripts/webkitpy/layout_tests/models/test_configuration_unittest.py: Adjusted code to accommodate the change.
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py: Ditto.
-        * Scripts/webkitpy/layout_tests/port/base.py: Ditto.
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py: Ditto.
-
-2011-08-10  Eric Seidel  <eric@webkit.org>
-
-        Leaks bot shows python logging prefixes as part of summary display
-        https://bugs.webkit.org/show_bug.cgi?id=65931
-
-        Reviewed by Adam Barth.
-
-        The big part of this change is adding a unittesting system for
-        master.cfg, so mere-mortals can make changes to build.webkit.org
-        with greatly-reduced risk of breaking the world.
-
-        Turns out that in typing up my trival logging fix I made 2 typos,
-        so hopefully the hour spent getting master.cfg to load was worth it. :)
-
-        I also tried to make mastercfg_unittest run as part of test-webkitpy
-        but right now test-webkitpy requires that unittest files be located in
-        a module-name-compatible directory.  'build.webkit.org-config' is not
-        a valid module name.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-         - Fixed _parseNewRunWebKitTestsOutput to strip NRWT's python formatter prefix
-           by using a new _strip_python_logging_prefix function.
-         - Also fixed this function to file to work with a more modern
-           simplejson version (which returns unicode objects instead of str objects)
-           and filed a related bug with buildbot.net due to their handling of unicode builder names.
-        * BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py: Added.
-         - BuildBotConfigLoader is a huge pile of code just to get master.cfg to load.
-         - The actual tiny unittest of the new _parseNewRunWebKitTestsOutput logic.
-        * Scripts/webkitpy/thirdparty/__init__.py:
-         - Add autoinstallation of buildbot (and jinja2) for use by mastercfg_unittest.py
-
-2011-08-09  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        garden-o-matic should extrapolate failures given a set of known results
-        https://bugs.webkit.org/show_bug.cgi?id=65882
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_configuration.py: Spuriously covered my old sins.
-        * Scripts/webkitpy/layout_tests/port/builders.py: Augmented builders dictionary to contain build coverage specifiers,
-            adjusted all call sites.
-        * Scripts/webkitpy/tool/servers/gardeningserver.py: Added BuildCoverageExtrapolator, a thing that
-            makes wider net for specific failures.
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py: Added unit tests.
-
-2011-08-10  Adam Barth  <abarth@webkit.org>
-
-        The URL we were computing for retrieving baselines was missing a slash
-        character because our mocks had an extra slash character.  I've
-        corrected both the code and the mock.
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2011-08-09  Adam Barth  <abarth@webkit.org>
-
-        Move the quote mark to the right place.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/checkout.js:
-
-2011-08-09  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should use huerstics to narrow regression range
-        https://bugs.webkit.org/show_bug.cgi?id=65948
-
-        Reviewed by Dimitri Glazkov.
-
-        When analyzing a regression range, if one of the commit messages
-        mentions the test in question, we now hueristically assume that
-        revision caused the failure.  (I'm shamelessly stealing this idea from
-        TestFailures.)
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/model.js:
-
-2011-07-13  Eric Seidel  <eric@webkit.org>
-
-        new-run-webkit-test's WinPort has no fallback logic
-        https://bugs.webkit.org/show_bug.cgi?id=64486
-
-        Reviewed by Adam Roben.
-
-        I've tried to write a patch for bug 64439 twice now, and both times
-        I've ended up re-writing half the port system.  So I'm breaking
-        things up into smaller pieces, this being the first.
-
-        WinPort still does not have any port_name parsing, so when instantiated
-        with the name "win-xp" (i.e. by the rebaseline server) it will just behave as the 'win' port.
-        I'll fix this in a second pass when I standardize port_name parsing for all webkit ports.
-
-        Otherwise this should "just work" for windows.  I've not been able to test the
-        version detection on my mac, but the unit tests show the code behaving as designed.
-
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        * Scripts/webkitpy/layout_tests/port/win_unittest.py: Added.
-
-2011-08-09  Adam Barth  <abarth@webkit.org>
-
-        Teach build.webkit.org's garden-o-matic how to talk to the local server
-        https://bugs.webkit.org/show_bug.cgi?id=65940
-
-        Reviewed by Dimitri Glazkov.
-
-        After this patch, the version of garden-o-matic on build.webkit.org is
-        fully functional.  It can interact with the local server via CORS.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/checkout.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/config.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
-        * Scripts/webkitpy/tool/commands/gardenomatic.py:
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-
-2011-08-09  Adam Barth  <abarth@webkit.org>
-
-        Enable CORS for garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=65936
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch will allow the hosted instance of garden-o-matic to
-        communicate with the local server.
-
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        * Scripts/webkitpy/tool/servers/reflectionhandler.py:
-
-2011-08-09  Adam Barth  <abarth@webkit.org>
-
-        Upgrade jquery in TestFailures
-        https://bugs.webkit.org/show_bug.cgi?id=65935
-
-        Reviewed by Dimitri Glazkov.
-
-        Upgrade to a newer version of jQuery with better support for CORS and CSP.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/index.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html:
-
-2011-08-09  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r92683.
-        http://trac.webkit.org/changeset/92683
-        https://bugs.webkit.org/show_bug.cgi?id=65921
-
-         "Breaks Qt --minimal build. Revert pending update of the Qt
-        minimal configuration" (Requested by simathur on #webkit).
-
-        * QtTestBrowser/cookiejar.cpp:
-        (TestBrowserCookieJar::TestBrowserCookieJar):
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::createChrome):
-        (LauncherWindow::setDiskCache):
-        * QtTestBrowser/main.cpp:
-        (LauncherApplication::handleUserOptions):
-        * QtTestBrowser/webpage.cpp:
-        (WebPage::openUrlInDefaultBrowser):
-
-2011-08-09  Siddharth Mathur  <siddharth.mathur@nokia.com>
-
-        [Qt] Simplify code by removing QT_NO_DESKTOPSERVICES and QT_NO_NETWORKDISKCACHE
-        https://bugs.webkit.org/show_bug.cgi?id=65880
-
-        Reviewed by Andreas Kling.
-
-        QDesktopServices and QNetworkDiskCache have been around for a while now. Kill flags which 
-        check for their feature flags. Assume that any reasonable Qt build provides them. 
-        * QtTestBrowser/cookiejar.cpp:
-        (TestBrowserCookieJar::TestBrowserCookieJar):
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::createChrome):
-        (LauncherWindow::setDiskCache):
-        * QtTestBrowser/main.cpp:
-        (LauncherApplication::handleUserOptions):
-        * QtTestBrowser/webpage.cpp:
-        (WebPage::openUrlInDefaultBrowser):
-
-2011-08-09  Adam Barth  <abarth@webkit.org>
-
-        BaselineOptimizer created the wrong baseline for fast/js/regexp-overflow.html
-        https://bugs.webkit.org/show_bug.cgi?id=65891
-
-        Reviewed by Eric Seidel.
-
-        The problem was that platform/chromium contained a bogus expectation
-        file that needed to be removed, but by the time we got around to
-        removing it, we'd already moved the correct baseline into its place.
-        After this patch, we copy the gold results into memory before
-        reshuffling things on disk (and we delete bad things before adding good
-        things).
-
-        * Scripts/webkitpy/common/checkout/baselineoptimizer.py:
-        * Scripts/webkitpy/common/checkout/baselineoptimizer_unittest.py:
-
-2011-08-08  Adam Barth  <abarth@webkit.org>
-
-        Chromium Windows bots can't figure out what SVN revision they're running
-        https://bugs.webkit.org/show_bug.cgi?id=65893
-
-        Reviewed by Eric Seidel.
-
-        The comment in _engage_awesome_windows_hacks explains why we're making
-        this change.  It's ugly and rediculous, but this approach seems better
-        than using shell=True when calling popen.
-
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-
-2011-08-08  Adam Barth  <abarth@webkit.org>
-
-        Remove deduplicate-tests
-        https://bugs.webkit.org/show_bug.cgi?id=65886
-
-        Reviewed by Tony Chang.
-
-        This script is redundant with "webkit-patch bulk-optimize-baselines",
-        which can find many more duplicates than deduplicate-tests because
-        bulk-optimize-baselines can move results around whereas
-        deduplicate-tests can only remove results.
-
-        * Scripts/deduplicate-tests: Removed.
-        * Scripts/webkitpy/to_be_moved/deduplicate_tests.py: Removed.
-        * Scripts/webkitpy/to_be_moved/deduplicate_tests_unittest.py: Removed.
-
-2011-08-08  Adam Barth  <abarth@webkit.org>
-
-        scm.delete should delete empty parent directories as well
-        https://bugs.webkit.org/show_bug.cgi?id=65878
-
-        Reviewed by Eric Seidel.
-
-        This behavior makes SVN match GIT (which has no concept of empty
-        directories).  This bug comes up a lot when optimizing baselines, which
-        often create empty directories when we're able to optimize everything
-        out of a given folder.
-
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-
-2011-08-08  Lucas Forschler  <lforschler@apple.com>
-
-        Add triggers for Lion WK2 test bots.
-
-        Reviewed by Stephanie Lewis.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2011-08-08  Adam Barth  <abarth@webkit.org>
-
-        bulk-optimize-baselines should take directories on the command line
-        https://bugs.webkit.org/show_bug.cgi?id=65879
-
-        Reviewed by Dimitri Glazkov.
-
-        Passing lists of tests via stdin is a pain.  It's easier if the command
-        takes a list of tests on the command line, like run-webkit-tests.
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-
-2011-08-08  Adam Barth  <abarth@webkit.org>
-
-        Deprecate rebaseline-chromium-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=65873
-
-        Reviewed by Dimitri Glazkov.
-
-        This script never worked correctly and now is redundant with more
-        modern infrastructure for rebaselining tests.  This patch deprecates
-        the script in order to flush out any issues with the new tools.  Once
-        folks are happy with the new tools, we'll delete this script.
-
-        * Scripts/rebaseline-chromium-webkit-tests:
-
-2011-08-08  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        garden-o-matic should only touch expectations that need updating.
-        https://bugs.webkit.org/show_bug.cgi?id=65876
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Added reconstitute_only_these to TestExpectationSerializer.list_to_string,
-            so that a caller could influence which lines to serialize from values.
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py: Added tests.
-        * Scripts/webkitpy/tool/servers/gardeningserver.py: Started using reconstitute_only_these.
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py: Added tests.
-
-2011-08-08  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        TestExpectationsEditor should return a list of updated expectations.
-        https://bugs.webkit.org/show_bug.cgi?id=65872
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Added a list to store lines that are being updated.
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py: Changed tests to account for updated lines.
-
-2011-08-08  Jochen Eisinger  <jochen@chromium.org>
-
-        Fix SCM webkitpy unit test failures
-        https://bugs.webkit.org/show_bug.cgi?id=65823
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-
-2011-08-08  Eric Seidel  <eric@webkit.org>
-
-        Move the --leaks bot back over to NRWT now that I'm back
-        from vacation and able to debug it.
-
-        Unreviewed.
-
-        * Scripts/run-webkit-tests:
-        (usingWebKit2):
-        (useNewRunWebKitTests):
-
-2011-08-05  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Wire up updating expectations in garden-o-matic.
-        https://bugs.webkit.org/show_bug.cgi?id=65794
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/port/factory.py: Moved _port_for_builder from rebaseline.py to here, rename to get_from_builder_name.
-        * Scripts/webkitpy/tool/commands/rebaseline.py: Adapted callsites to new location.
-        * Scripts/webkitpy/tool/servers/gardeningserver.py: Added GardeningExpectationsUpdater, which knows how to update expectations.
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py: Added loads of tests.
-
-2011-08-08  Jochen Eisinger  <jochen@chromium.org>
-
-        webkit-patch doesn't get along with renamed files
-        https://bugs.webkit.org/show_bug.cgi?id=48075
-
-        Possibly a bit heavy handed - I removed all instances of -C and
-        changed every instance of -M with '--no-renames' in git.py. This
-        forces git to not try to tell us about renames at all, which is
-        ultimately the behaviour we want. The old file is shown deleted,
-        then the new file is shown added, followed by any changes that
-        occurred. Also gets rid of the problem where deleting one file
-        and adding another file which has similar content would
-        unexpectedly show up as a rename, and fall out of a diff.
-
-        Based on a patch by Wyatt Carss.
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-
-2011-08-07  Sam White  <samuel.white@rochester.edu>
-
-        Add the ability to search the AccessibilityObject cache
-        https://bugs.webkit.org/show_bug.cgi?id=64994
-        
-        Added testing support for AccessibilityObject cache searching. Currently,
-        only the mac platform is full supported and has had API exposed. Other
-        platforms have only have this new functionality stubbed. Full implementation
-        is a job suited only for an accessibility expert of each respective platform.
-
-        Reviewed by Chris Fleizach.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (uiElementForSearchPredicateCallback):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::uiElementForSearchPredicate):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::uiElementForSearchPredicate):
-        * DumpRenderTree/win/AccessibilityUIElementWin.cpp:
-        (AccessibilityUIElement::uiElementForSearchPredicate):
-
-2011-08-06  Adam Barth  <abarth@webkit.org>
-
-        Remove dead code in webkitpy
-        https://bugs.webkit.org/show_bug.cgi?id=65818
-
-        Reviewed by Dimitri Glazkov.
-
-        This code was added to support the rebaseline2 command six months ago,
-        but the rebaseline2 command was never finished and no one else has used
-        this code since it was landed.  This patch removes the dead code.  If
-        we revive rebaseline2, then we can revert this patch and recover the
-        code.  Until then, this code is just dead weight.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-        * Scripts/webkitpy/common/net/testoutput.py: Removed.
-        * Scripts/webkitpy/common/net/testoutput_unittest.py: Removed.
-        * Scripts/webkitpy/common/net/testoutputset.py: Removed.
-        * Scripts/webkitpy/common/net/testoutputset_unittest.py: Removed.
-        * Scripts/webkitpy/common/system/directoryfileset.py: Removed.
-        * Scripts/webkitpy/common/system/directoryfileset_unittest.py: Removed.
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-08-06  Adam Barth  <abarth@webkit.org>
-
-        webkit-patch optimize-baselines can't handle promotions to base results directory
-        https://bugs.webkit.org/show_bug.cgi?id=65819
-
-        Reviewed by Dimitri Glazkov.
-
-        This bug came up when testing the optimizer on some editing baselines.
-
-        * Scripts/webkitpy/common/checkout/baselineoptimizer.py:
-        * Scripts/webkitpy/common/checkout/baselineoptimizer_unittest.py:
-
-2011-08-06  Adam Barth  <abarth@webkit.org>
-
-        Add a small command to optimize baselines in bulk.
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-
-2011-08-05  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Fix unit test breakage by plumbing convert_404_to_None in MockWeb.
-
-        * Scripts/webkitpy/tool/mocktool.py: Added missing parameter to MockWeb.get_binary
-
-2011-08-05  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Garden-o-matic updateexpectations needs a unit test.
-        https://bugs.webkit.org/show_bug.cgi?id=65780
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py: Added unit test.
-
-2011-08-05  Anders Carlsson  <andersca@apple.com>
-
-        Future proof an Objective-C test
-        https://bugs.webkit.org/show_bug.cgi?id=65788
-
-        Reviewed by Dan Bernstein.
-
-        Add isObjectInstanceOf to ObjCController.
-
-        * DumpRenderTree/mac/ObjCController.m:
-        (+[ObjCController isSelectorExcludedFromWebScript:]):
-        (+[ObjCController webScriptNameForSelector:]):
-        (-[ObjCController isObject:instanceOf:]):
-
-2011-08-05  Adam Barth  <abarth@webkit.org>
-
-        trac.js needs unittests
-        https://bugs.webkit.org/show_bug.cgi?id=65673
-
-        Reviewed by Dimitri Glazkov.
-
-        This tests also have somewhat large fixtures.  I've trimmed the example
-        XML down a bunch while still hitting interesting cases in the parsing.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/trac_unittests.js: Added.
-
-2011-08-05  Adam Barth  <abarth@webkit.org>
-
-        Rebuild rebaseline-chromium-webkit-tests on top of modern infrastructure
-        https://bugs.webkit.org/show_bug.cgi?id=65759
-
-        Reviewed by Dimitri Glazkov.
-
-        rebaseline-chromium-webkit-tests doesn't really fit into webkitpy's
-        architecture, is poorly tested, and has a bunch of quirks.  This patch
-        rebuilds the core functionality of rebaseline-chromium-webkit-tests on
-        top of more modern infrastructure.  In the process, we get more code
-        re-use and better testing.
-
-        Once we're satisfied with this new implementation, we can delete the
-        old implementation.
-
-        * Scripts/webkitpy/common/checkout/baselineoptimizer.py:
-        * Scripts/webkitpy/common/net/web.py:
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-
-2011-08-05  Anders Carlsson  <andersca@apple.com>
-
-        Remove PluginHalter
-        https://bugs.webkit.org/show_bug.cgi?id=65729
-
-        Reviewed by Darin Adler.
-
-        Remove call to set the allowed plug-in run time.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-
-2011-08-05  Ademar de Souza Reis Jr.  <ademar.reis@openbossa.org>
-
-        Unreviewed build fix for Qt-Minimal buildbot
-
-        Use ~/.QtTestBrowser for the cookiejar when QDesktopServices
-        is disabled.
-
-        Rubber-stamped by Holger Freyther.
-
-        * QtTestBrowser/cookiejar.cpp:
-        (TestBrowserCookieJar::TestBrowserCookieJar):
-
-2011-08-05  Ademar de Souza Reis Jr  <ademar.reis@openbossa.org>
-
-        [Qt] QtTestBrowser: Add support for saving cookies on disk
-        https://bugs.webkit.org/show_bug.cgi?id=65328
-
-        Simple cookiejar that saves cookies on disk.
-
-        Added menu options to clear cookies (Edit->Clear cookies) and
-        disable disk cookies (Settings->[ ]Save Cookies on Disk).
-
-        Option -no-disk-cookies is also available.
-
-        Reviewed by Andreas Kling.
-
-        * QtTestBrowser/QtTestBrowser.pro:
-        * QtTestBrowser/cookiejar.cpp: Added.
-        * QtTestBrowser/cookiejar.h: Added.
-        * QtTestBrowser/launcherwindow.cpp:
-        * QtTestBrowser/launcherwindow.h:
-        * QtTestBrowser/main.cpp:
-
-2011-08-04  Adam Barth  <abarth@webkit.org>
-
-        model.js needs some unit testing
-        https://bugs.webkit.org/show_bug.cgi?id=65730
-
-        Reviewed by Dimitri Glazkov.
-
-        These tests do not cover all the functions exported by the model
-        module.  We'll need to add the remaining ones in the future.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/model_unittests.js: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html:
-
-2011-08-04  Adam Barth  <abarth@webkit.org>
-
-        Another speculative fix for the "svn revision on Windows" problem.
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-
-2011-08-04  Mark Rowe  <mrowe@apple.com>
-
-        Future-proof Xcode configuration settings.
-
-        * DumpRenderTree/mac/Configurations/Base.xcconfig:
-        * DumpRenderTree/mac/Configurations/CompilerVersion.xcconfig:
-        * DumpRenderTree/mac/Configurations/DebugRelease.xcconfig:
-        * MiniBrowser/Configurations/Base.xcconfig:
-        * MiniBrowser/Configurations/CompilerVersion.xcconfig:
-        * MiniBrowser/Configurations/DebugRelease.xcconfig:
-        * TestWebKitAPI/Configurations/Base.xcconfig:
-        * TestWebKitAPI/Configurations/CompilerVersion.xcconfig:
-        * TestWebKitAPI/Configurations/DebugRelease.xcconfig:
-        * WebKitTestRunner/Configurations/Base.xcconfig:
-        * WebKitTestRunner/Configurations/CompilerVersion.xcconfig:
-        * WebKitTestRunner/Configurations/DebugRelease.xcconfig:
-
-2011-08-04  Adam Barth  <abarth@webkit.org>
-
-        Fancier debug logging.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-
-2011-08-04  David Levin  <levin@chromium.org>
-
-        [chromium] Fix assertion failure in ThreadIdentifierData::identifier in TestShell.
-        https://bugs.webkit.org/show_bug.cgi?id=65685
-
-        Reviewed by Dmitry Titov.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::WebViewHost): Intialize WTF threading before
-        anything in WTF is used. Usually this is done by WebViewImpl::WebViewImpl
-        but in some cases code may use WTF without creating WebViewImpl and
-        WTF code functionality may call WTF::currentThread, which requires
-        this initialization now.
-
-2011-08-04  Adam Barth  <abarth@webkit.org>
-
-        An educated guess at causing the Windows bots on build.webkit.org to
-        find the SVN revision number.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-
-2011-08-04  Adam Barth  <abarth@webkit.org>
-
-        More logging to help debug the "no SVN rev on Chromium Windows bots"
-        bug.  My current theory is that we're trying to detect the SCM system
-        in the wrong directory.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-
-2011-08-04  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Speed up webkit-patch optimize-expectations significantly by not collecting test files.
-        https://bugs.webkit.org/show_bug.cgi?id=65697
-
-        I neglected to realize that collecting test names is not necessary for this operation.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/tool/commands/expectations.py: Changed to pass an empty list of test files.
-
-2011-08-04  Adam Barth  <abarth@webkit.org>
-
-        checkout_unittest.js should have better coverage of checkout.js
-        https://bugs.webkit.org/show_bug.cgi?id=65671
-
-        Reviewed by Dimitri Glazkov.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/checkout.js:
-            - Remove unused functions.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/checkout_unittests.js:
-            - Test remaining public functions in the checkout module.
-
-2011-08-04  Dmitry Lomov  <dslomov@google.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=65706
-        Run run-unit-tests on release mode test bots.
-        Reenabling after 61812 is fixed.
-
-        Reviewed by Adam Roben.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-08-04  Adam Barth  <abarth@webkit.org>
-
-        builders.js needs unit tests
-        https://bugs.webkit.org/show_bug.cgi?id=65670
-
-        Reviewed by Dimitri Glazkov.
-
-        This test requires somewhat large test fixtures, but using real
-        examples seemed better than trimming them down too much.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/builders.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/builders_unittests.js: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html:
-            - Note: trac_unittests.js doesn't exist (yet!).
-
-2011-08-04  Alexis Menard  <alexis.menard@openbossa.org>
-
-        [Qt] Make navigation actions properly usable in QML.
-        https://bugs.webkit.org/show_bug.cgi?id=65624
-
-        Fix compilation after the introduction of QWebNavigationController.
-
-        Reviewed by Benjamin Poulain.
-
-        * MiniBrowser/qt/BrowserView.cpp:
-        (BrowserView::navigationAction):
-
-2011-08-04  Adam Barth  <abarth@webkit.org>
-
-        Another subtle bug due to lack of testing in main.js.  :(
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
-
-2011-08-04  Adam Barth  <abarth@webkit.org>
-
-        Fix types.  Sadly, main.js has no test coverage.  (I need to think
-        about how to test this part of the code.)
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
-
-2011-08-04  Adam Barth  <abarth@webkit.org>
-
-        bugzilla.js is missing unit tests
-        https://bugs.webkit.org/show_bug.cgi?id=65656
-
-        Reviewed by Adam Roben.
-
-        Testing makes perfect.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/bugzilla_unittests.js: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/net_unittests.js:
-        (NetworkSimulator.prototype.runTest.get if):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html:
-
-2011-08-04  Adam Barth  <abarth@webkit.org>
-
-        Add missing license blocks to garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=65654
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch is entirely boilerplate.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestFailures.css:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/base.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/base_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/builders.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/checkout.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/checkout_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/config.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.css:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/model.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/net.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/net_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/results_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui_unittests.js:
-
-2011-08-04  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic needs a way to mock out the network
-        https://bugs.webkit.org/show_bug.cgi?id=65653
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch introduces the net module, which is a useful mock point for
-        abstracting away the network.  Future patches will use this
-        infrastructure to test some currently untested code.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Bugzilla.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Trac.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/base.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/builders.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/checkout.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/index.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/net.js: Added.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/net_unittests.js: Added.
-        (NetworkSimulator):
-        (NetworkSimulator.prototype.scheduleCallback):
-        (NetworkSimulator.prototype.runTest):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/results_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html:
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-
-2011-08-03  Adam Barth  <abarth@webkit.org>
-
-        Use failureInfo more pervasively in garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=65650
-
-        Reviewed by Dimitri Glazkov.
-
-        These three variable appears in concert together many places.  This
-        patch unifies the remaining uses into being failureInfo objects, which
-        saves some marshalling.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/results_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui_unittests.js:
-
-2011-08-03  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should be able to update expecations from the details pane
-        https://bugs.webkit.org/show_bug.cgi?id=65648
-
-        Reviewed by Dimitri Glazkov.
-
-        The new button queues up the updates, which get executed all at once.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/model.js:
-
-2011-08-03  Adam Barth  <abarth@webkit.org>
-
-        Add UI to garden-o-matic for updating expectations
-        https://bugs.webkit.org/show_bug.cgi?id=65644
-
-        Reviewed by Dimitri Glazkov.
-
-        The patch plumbs the UI back to the gardening server, but the gardening
-        server endpoint is just a stub at this point.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/checkout.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/model.js:
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        * Scripts/webkitpy/tool/servers/reflectionhandler.py:
-
-2011-08-03  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic details view should queue rebaselines for later execution
-        https://bugs.webkit.org/show_bug.cgi?id=65636
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch doesn't contain any confirmation UI, but we'll probably want
-        that at some point.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/checkout.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/model.js:
-
-2011-08-03  Kentaro Hara  <haraken@google.com>
-
-        Implement EventSender.scalePageBy()
-        https://bugs.webkit.org/show_bug.cgi?id=58013
-
-        Reviewed by Darin Fisher.
-
-        Implemented EventSender.scalePageBy(f, x, y), which scales a page by a factor of f
-        and then sets a scroll position to (x, y). Enabled the tests that had been waiting
-        for the implementation of EventSender.scalePageBy(f, x, y).
-
-        Tests: compositing/scaling/tiled-layer-recursion.html
-               fast/repaint/scale-page-shrink.html
-               fast/dom/Element/scale-page-client-rects.html
-               fast/dom/Range/scale-page-client-rects.html
-               fast/events/scroll-in-scaled-page-with-overflow-hidden.html
-               fast/dom/Element/scale-page-bounding-client-rect.html
-               fast/dom/Range/scale-page-bounding-client-rect.html
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::EventSender): Added bindings for scalePageBy().
-        (EventSender::scalePageBy): A wrapper method for scalePage() in WebView.
-        * DumpRenderTree/chromium/EventSender.h:
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetTestController): Resets the scale factor to 1.
-
-2011-08-03  David Levin  <levin@chromium.org>
-
-        Rename WEBKIT_API to WEBKIT_EXPORT in check-webkit-style.
-        https://bugs.webkit.org/show_bug.cgi?id=65652
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-
-2011-08-03  Filip Pizlo  <fpizlo@apple.com>
-
-        Adding Filip Pizlo to committer list.
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-08-03  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Add "optimize-expectations" command to webkit-patch.
-        https://bugs.webkit.org/show_bug.cgi?id=65633
-
-        For now, only operates on Chromium test_expectations.txt and does not report errors/warnings.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/tool/commands/__init__.py: Added command.
-        * Scripts/webkitpy/tool/commands/expectations.py: Added.
-
-2011-08-03  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Allow multiple bug identifiers in test expectations.
-        https://bugs.webkit.org/show_bug.cgi?id=65642
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Tweaked to allow multiple bug ids.
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py: Added tests.
-
-2011-08-03  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Teach BuilderToPort to distinguish between Release and Debug builders.
-        https://bugs.webkit.org/show_bug.cgi?id=65628
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py: Added a smart options object and passed it to port factory.
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py: Added tests.
-
-2011-08-03  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
-
-        [Qt] Fix running qmltests for WK2 in the bot
-        https://bugs.webkit.org/show_bug.cgi?id=65621
-
-        Reviewed by Csaba Osztrogonác.
-
-        The path for QML_IMPORT_PATH was assuming we were running the WK1 tests,
-        but now there's the case for WK2 UIProcess tests as well.
-
-        * Scripts/run-qtwebkit-tests: add both possible paths to the QML_IMPORT_PATH.
-
-2011-08-02  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Add a way to edit test expectations.
-        https://bugs.webkit.org/show_bug.cgi?id=64922
-
-        Implements a TestExpectationsEditor, which provides a standard way to
-        update and remove test expectations.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Changed TestExpectationSerializer to skip lines that match no test configurations,
-            added TestExpectationLine.is_flaky, added BugManager, a simple interface to be fleshed out later, and a TestExpectationsEditor, the big
-            enchilada.
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py: Loads of tests to capture desired behavior.
-
-2011-08-03  Andreas Kling  <kling@webkit.org>
-
-        [Qt] MiniBrowser: Unbreak load progress indication.
-        https://bugs.webkit.org/show_bug.cgi?id=65614
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        loadProgress() was renamed to loadProgressChanged().
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::onLoadProgressChanged):
-        * MiniBrowser/qt/BrowserWindow.h:
-
-2011-08-03  Martin Robinson  <mrobinson@igalia.com>
-
-        Build fix for WebKit2GTK+.
-
-        * WebKitTestRunner/GNUmakefile.am: Include libInternals as one of
-        of the library dependencies of the injected bundle.
-
-2011-08-03  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Install web and plugin processes in libexecdir instead of bindir
-        https://bugs.webkit.org/show_bug.cgi?id=65600
-
-        Reviewed by Martin Robinson.
-
-        Set WEBKIT_EXEC_PATH environment variable to use web and plugin
-        process from current directory instead of the intalled ones.
-
-        * MiniBrowser/gtk/GNUmakefile.am:
-        * MiniBrowser/gtk/main.c:
-        (main):
-        * WebKitTestRunner/GNUmakefile.am:
-        * WebKitTestRunner/gtk/main.cpp:
-        (main):
-
-2011-08-02  Anders Carlsson  <andersca@apple.com>
-
-        Add mac-lion platform to old-run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=65577
-
-        * Scripts/old-run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-        (isLion):
-
-2011-08-02  Alexandru Chiculita  <achicu@adobe.com>
-
-        Buildbot: The Properties object has no "hasProperty" method in buildbot 8.3
-        https://bugs.webkit.org/show_bug.cgi?id=65554
-
-        Using "has_key" instead of "hasProperty" in order to support buildbot 8.3.
-
-        Reviewed by Adam Roben.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-08-02  Jochen Eisinger  <jochen@chromium.org>
-
-        Implement WebPermissionClient::allowPlugins for layout tests
-        https://bugs.webkit.org/show_bug.cgi?id=33991
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setPluginsAllowed):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/WebPermissions.cpp:
-        (WebPermissions::allowPlugins):
-        (WebPermissions::setPluginsAllowed):
-        (WebPermissions::reset):
-        * DumpRenderTree/chromium/WebPermissions.h:
-
-2011-08-02  Adam Barth  <abarth@webkit.org>
-
-        TestFailures unit tests leak a global variable
-        https://bugs.webkit.org/show_bug.cgi?id=65500
-
-        Reviewed by Adam Roben.
-
-        qunit detects the leak if you check the "noglobals" box on run-unittests.html.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder_unittests.js:
-
-2011-08-02  Alexandru Chiculita  <achicu@adobe.com>
-
-        CSS Regions build bot should archive and upload output files
-        https://bugs.webkit.org/show_bug.cgi?id=65200
-
-        Until now the buildbots would only upload the result archive if the 'trigger' parameters was specified. The
-        upload was needed, because the testbots needed to download and use the archive. For CSS Regions we don't have
-        a testbot yet, but we want to save the archive on the server for manual testing. Added new parameter
-        in config.json, called "upload" that when set to "true" will force the upload to the buildmaster server.
-
-        The "features" argument is now taken into account when determining the name of the archive on the server. That
-        was needed in order to avoid the CSS Regions Mac buildbot overwrite the SnowLeopard Mac build.
-
-        Reviewed by Adam Roben.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-08-02  Patrick Gansterer  <paroga@webkit.org>
-
-        Fix _win32_check_running_pid on 64bit windows python
-        https://bugs.webkit.org/show_bug.cgi?id=64950
-
-        Reviewed by Adam Roben.
-
-        Use the correct types for the PROCESSENTRY32 struct.
-        th32DefaultHeapID is declared as ULONG_PTR and not as DWORD.
-        Using 32bit for pointers instead of 64bit results in an ERROR_BAD_LENGTH
-        failure, when calling the Process32First function.
-        This is covered by the executive unittest.
-
-        * Scripts/webkitpy/common/system/executive.py:
-
-2011-08-01  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should call optimize-baselines when rebaselining tests
-        https://bugs.webkit.org/show_bug.cgi?id=65499
-
-        Reviewed by Dimitri Glazkov.
-
-        I took the opportunity to modernize this code to use some of our more
-        powerful primitives from base.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/base.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/base_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/checkout.js:
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-
-2011-08-01  Stephanie Lewis  <slewis@apple.com>
-
-        Finish reconfiguration started by Lucas Forschler
-        Reconfigured slaves:
-        Removed Leopard Intel Release (Build)
-        Removed Leopard Intel Release (Tests)
-        Remove apple-pixel-1
-        Added Lion slaves from disabled Leopard slaves
-
-        Added builders:
-        Lion Intel Release (Build)
-        Lion Intel Debug (Build)
-        Lion Intel Release (Tests)
-        Lion Intel Release WK2 (Tests)
-        Lion Intel Debug (Tests)
-        Lion Intel Debug WK2 (Tests)
-
-        Added triggers:
-        lion-intel-debug-tests
-        lion-intel-debug-test-wk2
-        lion-intel-release-tests
-        lion-intel-release-tests-wk2
-        
-        Removed trigger:
-        leopard-intel-release-tests
-
-        Added PlatformSpecificScheduler:
-        mac-lion
-
-        Added "mac-lion" to build.py and build_unitttest.py
-
-        Reviewed by Mark Rowe.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-        * Scripts/webkitpy/common/config/build.py:
-        * Scripts/webkitpy/common/config/build_unittest.py:
-
- 
-2011-08-01  Adam Barth  <abarth@webkit.org>
-
-        webkit-patch needs to be able to "optimize" the storage of baselines on disk
-        https://bugs.webkit.org/show_bug.cgi?id=65418
-
-        Reviewed by Dimitri Glazkov.
-
-        If we're not careful when rebaselining tests, we can end up with lots
-        of duplicate expected results files in the tree.  This patch adds a
-        webkit-patch command that optimizes the storage of expected results on
-        disk.
-
-        This command is similar to deduplicate-tests, except that it can move
-        test results around rather than just remove duplicate results.
-
-        Unfortunately, this problem is very tricky because the baseline search
-        structure is a hypergraph.  This patch include a huerstic optimizer
-        that appears to work on a bunch of examples I've tried.  We'll likely
-        need to refine it as gain experience.
-
-        * Scripts/webkitpy/common/system/filesystem.py:
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-
-2011-08-01  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Teach TestExpectationSerializer about parsed expectations.
-        https://bugs.webkit.org/show_bug.cgi?id=65444
-
-        This is a bit largish in size, but the essentials are:
-        * TestExpectationSerializer, given a parsed TestExpectationLine, can now spit out a pretty string.
-        * We now store original content of the expectation line on TestExpectationLine.
-        * Lots of tests.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_configuration.py: Fixed an issue where we didn't
-            populate macros correctly, also fixed an issue where we incorrectly returned an empty list
-            for all configurations.
-        * Scripts/webkitpy/layout_tests/models/test_configuration_unittest.py: Added tests for those.
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Removed vestiges of code long gone,
-            refactored TestExpectationsSerializer to recognize and correctly serialize parsed TestExpectationLine instances,
-            changed to store and use TestExpectationLine.original_string.
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py: Added tests.
-
-2011-08-01  Adam Barth  <abarth@webkit.org>
-
-        Remove unused functionality from gardeningserver
-        https://bugs.webkit.org/show_bug.cgi?id=65479
-
-        Reviewed by Dimitri Glazkov.
-
-        We now handle these operations directly from the front-end.  That means
-        they work even without the gardening server running!
-
-        Also, add some missing files to the list of static files.
-
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-
-2011-08-01  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Introduce SpecifierSorter, a thing that knows how specifiers should be ordered.
-        https://bugs.webkit.org/show_bug.cgi?id=65413
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_configuration.py: Added SpecifierSorter and converted
-            existing code to use it.
-        * Scripts/webkitpy/layout_tests/models/test_configuration_unittest.py: Added unit tests and cleaned up a bit.
-
-2011-08-01  Adam Barth  <abarth@webkit.org>
-
-        Refactor bugzilla.js for use by garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=65450
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch refactors bugzilla.js to use the AsynchronousCache and
-        updates the style to use a module instead of an object.  This patch
-        then fixes all the existing code that uses this class to use the new
-        API style.
-
-        This main benefit of this patch is we remove the tricky manual caching
-        and this code is now available to use in garden-o-matic (since the
-        dependency on Utilities.js is now gone).
-
-        I ran all the unit tests and poked around in TestFailures a bit to see
-        that everything seemed to be working properly.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Bugzilla.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FailingTestsBugForm.js:
-        (FailingTestsBugForm):
-        (FailingTestsBugForm.prototype._createBugTitle):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FailingTestsBugForm_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FlakyTestBugForm.js:
-        (FlakyTestBugForm):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FlakyTestBugForm_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/NewBugForm.js:
-        (NewBugForm):
-        (NewBugForm.prototype.domElement):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/NewBugForm_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestRelatedBugForm.js:
-        (TestRelatedBugForm):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestRelatedBugForm_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype._displayBuilder.start):
-        (ViewController.prototype._displayBuilder):
-        (ViewController.prototype._domForAuxiliaryUIElements):
-        (ViewController.prototype._domForNewAndExistingBugs.bugzilla.quickSearch):
-        (ViewController.prototype._domForPossiblyFlakyTests.flakyList.appendChildren):
-        (ViewController.prototype._domForPossiblyFlakyTests):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/config.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/index.html:
-
-2011-08-01  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic shouldn't require local server to determine if compile failed
-        https://bugs.webkit.org/show_bug.cgi?id=65446
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch adds some basic bindings for the buildbot JSON API.  I
-        wanted to use Buildbot.js an Builder.js from the original TestFailures,
-        but they make a number of WebKit-specific assumptions.  We'll
-        eventually need to reconcile these pieces of code.
-
-        I should really add tests for this code, but that will require me to
-        build a better mock network.  I'll be happy to do that in a follow-up
-        patch.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/builders.js: Added.
-            - It's very unclear to me whether didFail is correct.  Supposedly
-              the first entry here is the exit code of the step, which is 0 on
-              success.  I suspect we'll need to improve this function over time.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/results.js:
-
-2011-08-01  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should show all failures, even ones that it can't find a regression range for
-        https://bugs.webkit.org/show_bug.cgi?id=65447
-
-        Reviewed by Dimitri Glazkov.
-
-        Previously, we just wouldn't display test failures that we couldn't
-        identify a regression range for (or whose regression range had fallen
-        off the page).  This patch just displays them at the end of the list,
-        which is slightly (but not much) better.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
-
-2011-08-01  Jeff Miller  <jeffm@apple.com>
-
-        Windows build fix after r92096.
-
-        * TestWebKitAPI/win/InjectedBundleControllerWin.cpp: Use #include, not #import, and don't include Foundation.h.
-        * TestWebKitAPI/win/TestWebKitAPIInjectedBundle.vcproj: Add InjectedBundleControllerWin.cpp.
-
-2011-07-31  Anders Carlsson  <andersca@apple.com>
-
-        DownloadDecideDestinationCrash WebKit2 API tests crashes
-        https://bugs.webkit.org/show_bug.cgi?id=65442
-
-        Reviewed by Sam Weinig.
-
-        Copy the 18-characters.html file to the destination directory so we won't
-        crash trying to make an URL for it.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-
-2011-07-31  Anders Carlsson  <andersca@apple.com>
-
-        Fix SpacebarScrolling WebKit2 API test
-        https://bugs.webkit.org/show_bug.cgi?id=65431
-
-        Reviewed by Sam Weinig.
-
-        Add a way to do platform-specific bundle initialization, and use it to disable smooth
-        scrolling. Also make it possible for a test to load the injected bundle without actually running
-        a test from it.
-
-        * TestWebKitAPI/InjectedBundleController.cpp:
-        (TestWebKitAPI::InjectedBundleController::initialize):
-        * TestWebKitAPI/InjectedBundleController.h:
-        * TestWebKitAPI/PlatformUtilities.cpp:
-        (TestWebKitAPI::Util::createContextWithInjectedBundle):
-        * TestWebKitAPI/PlatformUtilities.h:
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2/SpacebarScrolling.cpp:
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/mac/InjectedBundleControllerMac.mm: Added.
-        (TestWebKitAPI::InjectedBundleController::platformInitialize):
-        * TestWebKitAPI/win/InjectedBundleControllerWin.cpp: Added.
-        (TestWebKitAPI::InjectedBundleController::platformInitialize):
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-
-2011-07-31  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Use set comparison to find duplicate or overlapping specifiers in test expectations.
-        https://bugs.webkit.org/show_bug.cgi?id=65430
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Changed to use set comparisons, because length
-            of a set is wrong.
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py: Added some unit tests to actually catch
-            regressions.
-
-2011-07-31  Xan Lopez  <xlopez@igalia.com>
-
-        Group dependencies CFLAGS together.
-
-        * GNUmakefile.am: ditto.
-
-2011-07-31  Daniel Bates  <dbates@webkit.org>
-
-        Attempt to fix the GTK build after <http://trac.webkit.org/changeset/92059>
-        (https://bugs.webkit.org/show_bug.cgi?id=65419).
-
-        * GNUmakefile.am: Add $(CAIRO_CFLAGS) to libWebCoreInternals_la_CPPFLAGS.
-
-2011-07-30  Patrick Gansterer  <paroga@webkit.org>
-
-        Fix ports_unittest.py on native windows
-        https://bugs.webkit.org/show_bug.cgi?id=64959
-
-        Reviewed by Adam Barth.
-
-        Replace WebKitPort.script_path with WebKitPort.script_shell_command.
-        The latter includes the interpreter executable required on native windows.
-
-        * Scripts/webkitpy/common/config/ports_unittest.py:
-
-2011-07-30  Adam Barth  <abarth@webkit.org>
-
-        Properly escape regular expressions.  (Maybe these shouldn't be regular
-        expressions?)
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-
-2011-07-30  Adam Barth  <abarth@webkit.org>
-
-        Add support for Win7 to garden-o-matic.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/config.js:
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-
-2011-07-30  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic regression ranges expand after fast bots start passing
-        https://bugs.webkit.org/show_bug.cgi?id=65406
-
-        Reviewed by Dimitri Glazkov.
-
-        Once the gardener has fixed a problem, the fast bots pick up the fix,
-        which means we end up using the slow bots to compute the regression
-        range.  Unfortunately, the slow bots give us large regression ranges,
-        leading to this strange effect where the regression range quality
-        degrades as fixes roll in.
-
-        This patch causes us to remember the previous regression ranges we've
-        seen and to use that information in the future, as long as it's
-        consistent with the new information we receive.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/model.js:
-
-2011-07-30  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should have a Refresh button to update its display
-        https://bugs.webkit.org/show_bug.cgi?id=65403
-
-        Reviewed by Dimitri Glazkov.
-
-        The refresh button should be faster and less disruptive than the browser's reload button.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
-
-2011-07-30  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should look for the "patch by" line in revisions ostensibly authored by the commit-queue
-        https://bugs.webkit.org/show_bug.cgi?id=65231
-
-        Reviewed by Dimitri Glazkov.
-
-        The human readable name is easier to understand, especially when the patch is landed by the commit-queue.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Trac.js:
-
-2011-07-30  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should strikeout revisions that have been rolled out
-        https://bugs.webkit.org/show_bug.cgi?id=65227
-
-        Reviewed by Dimitri Glazkov.
-
-        This helps gardeners keep track of which problems have been solved.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Trac.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.css:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/model.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui.js:
-
-2011-07-30  Adam Barth  <abarth@webkit.org>
-
-        Add missing files to the server.
-
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-
-2011-07-29  Adam Barth  <abarth@webkit.org>
-
-        Actually import the logging module!
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-
-2011-07-29  Adam Barth  <abarth@webkit.org>
-
-        More debug logging.  Maybe we're running the git version of this
-        function somehow?  (That would explain why it doesn't work!)
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-
-2011-07-29  Adam Barth  <abarth@webkit.org>
-
-        Add some temporary debug logging messages to try to understand why the
-        windows bots can't figure out their current SVN revision.
-
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-
-2011-07-29  Adam Barth  <abarth@webkit.org>
-
-        Chromium try servers should use downstream test_expectations
-        https://bugs.webkit.org/show_bug.cgi?id=65390
-
-        Reviewed by Dirk Pranke.
-
-        Otherwise the try servers will report bogus failures.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2011-07-29  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Fix an error in macro collapsing, refactor code to be pretty.
-        https://bugs.webkit.org/show_bug.cgi?id=65387
-
-        My set math was wrong.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_configuration.py: Moved collapsing into a classmethod, fixed the math to be correct.
-        * Scripts/webkitpy/layout_tests/models/test_configuration_unittest.py: Added unit tests.
-
-2011-07-27  Ryuan Choi  <ryuan.choi@samsung.com>
-
-        Style bot complains about EFL-specific forward declaration naming.
-        https://bugs.webkit.org/show_bug.cgi?id=64680
-
-        Exclude EFL-specific forward declarations from indentifiers with underscores checks.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-
-2011-07-27  Adam Roben  <aroben@apple.com>
-
-        Use wacky !svn/bc URLs consistently in Leaks Viewer
-
-        This ensures that any resources loaded via relative URLs will still get pulled from the same
-        revision of Subversion.
-
-        Fixes <http://webkit.org/b/65267> Focus/exclude button glyphs don't load on Leaks Viewer
-
-        Reviewed by David Kilzer.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/index.html: Use the
-        !svn/bc-style URL for inspector.css, too, just like we do for all other resources we pull
-        from Subversion.
-
-2011-07-27  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] Drop WorkQueueItemEfl.h in favour of the general WorkQueueItem.h
-        https://bugs.webkit.org/show_bug.cgi?id=65269
-
-        Reviewed by Kent Tamura.
-
-        WorkQueueItemEfl.h was being included by efl's
-        LayoutTestControllerEfl.cpp, however the top-level
-        LayoutTestController still included WorkQueueItem.h, causing a lot of
-        type mismatches when running the WorkQueueItem code.
-
-        We can stick to the original WorkQueueItem header by making a few
-        changes to EFL's LayoutTestController.
-
-        This should make tests such as
-        fast/loader/non-deferred-substitute-load.html stop crashing.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::queueLoad):
-        * DumpRenderTree/efl/WorkQueueItemEfl.cpp:
-        (LoadItem::invoke):
-        (LoadHTMLStringItem::invoke):
-        (ScriptItem::invoke):
-        * DumpRenderTree/efl/WorkQueueItemEfl.h: Removed.
-
-2011-07-27  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Re-add unit tests I accidentally zapped in r91878.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py: Re-added unit tests.
-
-2011-07-27  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Replace SpecificityCalculator with TestConfiguration-driven logic.
-        https://bugs.webkit.org/show_bug.cgi?id=65206
-
-        Use our newly-acquired ability to expand modifiers into a set of
-        matching TestConfiguration instances to calculate specificity and
-        determine whether expectation applies to a given test configuration.
-
-        Also, store bug modifier on TestExpectationsLine.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Replaced the logic of calculating specificity with
-            test configuration matching, removed a bunch of code.
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py: Removed a bunch of tests that aren't useful anymore.
-
-
-2011-07-27  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Allow ports to specify their own test expectation specifier macros.
-        https://bugs.webkit.org/show_bug.cgi?id=65291
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Changed SpecificityCalculator to use port macros.
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py: Ditto.
-        * Scripts/webkitpy/layout_tests/port/base.py: Added configuration_specifier_macros to retrieve the macros.
-        * Scripts/webkitpy/layout_tests/port/chromium.py: Overrode it to return Chromium's macros.
-        * Scripts/webkitpy/layout_tests/port/test.py: Added test macros.
-
-2011-07-27  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Allow TestConfigurationConverter report conversion errors.
-        https://bugs.webkit.org/show_bug.cgi?id=65287
-
-        Also, fix a few miscellaneous testing issues.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_configuration.py: Added a way to report unknown modifier errors.
-        * Scripts/webkitpy/layout_tests/models/test_configuration_unittest.py: Added a test for reporting errors.
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py: Fixed an error where an invalid TestConfiguration instance
-            was created. 'default' is not a valid build type.
-        * Scripts/webkitpy/layout_tests/port/test.py: Ditto. '' is not a valid version.
-
-2011-07-27  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Teach all ports about their test configurations.
-        https://bugs.webkit.org/show_bug.cgi?id=65278
-
-        Each Port object should return a valid set of all TestConfiguration instances,
-        available for this port.
-
-        Reviewed by Philippe Normand.
-
-        * Scripts/webkitpy/layout_tests/models/test_configuration.py: Removed TestConfiguration.all_test_configurations,
-            since it is different for each port.
-        * Scripts/webkitpy/layout_tests/models/test_configuration_unittest.py: Removed related test.
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Changed SpecificityCalculator to take a list of
-            all test configurations as a param.
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py: Adjusted arguments accordingly.
-        * Scripts/webkitpy/layout_tests/port/base.py: Forced all ports to override generation of all test configurations.
-        * Scripts/webkitpy/layout_tests/port/chromium.py: Implemented _generate_all_test_configurations for the port.
-        * Scripts/webkitpy/layout_tests/port/gtk.py: Ditto.
-        * Scripts/webkitpy/layout_tests/port/mac.py: Ditto.
-        * Scripts/webkitpy/layout_tests/port/qt.py: Ditto.
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py: Added an extra test to ensure we're generating a good set.
-        * Scripts/webkitpy/layout_tests/port/test.py: Implemented a fixed-in-time all_test_configurations for testing.
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py: Added a mock all_test_configurations implementation.
-        * Scripts/webkitpy/layout_tests/port/win_unittest.py: Added a unit test for the port.
-
-2011-07-27  Benjamin Poulain  <benjamin@webkit.org>
-
-        [WK2][Qt] Move from QGraphicsView to Qt Scene Graph
-        https://bugs.webkit.org/show_bug.cgi?id=62969
-
-        Reviewed by Andreas Kling.
-
-        Co-authored with Simon Hausmann  <simon.hausmann@nokia.com>
-
-        With the scene graph, the interface to have a window on screen is
-        QSGCanvas. QGraphicsView is not used, and openGL is an enforced
-        dependency.
-
-        Both the BrowserView and the WebKitTest runner are changed from
-        QGraphicsView to QSGCanvas.
-
-        * MiniBrowser/qt/BrowserView.cpp:
-        (BrowserView::BrowserView):
-        (BrowserView::resizeEvent):
-        (BrowserView::view):
-        * MiniBrowser/qt/BrowserView.h:
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::urlChanged):
-        (BrowserWindow::~BrowserWindow):
-        * MiniBrowser/qt/BrowserWindow.h:
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * MiniBrowser/qt/main.cpp:
-        (main):
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro:
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::WebView::WebView):
-        (WTR::PlatformWebView::PlatformWebView):
-        * WebKitTestRunner/qt/WebKitTestRunner.pro:
-
-2011-07-27  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r91792.
-        http://trac.webkit.org/changeset/91792
-        https://bugs.webkit.org/show_bug.cgi?id=65242
-
-        It broke NRWT on Qt and GTK (Requested by Ossy_night on
-        #webkit).
-
-        * Scripts/webkitpy/layout_tests/models/test_configuration.py:
-        * Scripts/webkitpy/layout_tests/models/test_configuration_unittest.py:
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-
-2011-07-26  Adam Barth  <abarth@webkit.org>
-
-        Switch to an older idiom that works on Python 2.5.
-
-        * Scripts/webkitpy/layout_tests/models/test_configuration.py:
-
-2011-07-26  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Add an exception to coding style check for EFL port.
-        https://bugs.webkit.org/show_bug.cgi?id=65162
-
-        Add an exception of whitespace/declaration for EFL port. Because,
-        '*' operator is next to variable in EFL coding style.
-
-        Reviewed by Kent Tamura.
-
-        * Scripts/webkitpy/style/checker.py:
-
-2011-07-26  Keith Kyzivat  <keith.kyzivat@nokia.com>
-
-        [Qt] Add option to turn on disk caching in QtTestBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=65007
-
-        Reviewed by Noam Rosenthal.
-
-        Add menu item and command line option to turn on disk caching in
-        QtTestBrowser. Simple QNetworkDiskCache added to the page's
-        QNetworkAccssManager.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::initializeView):
-        (LauncherWindow::createChrome):
-        (LauncherWindow::setDiskCache):
-        * QtTestBrowser/launcherwindow.h:
-        (WindowOptions::WindowOptions):
-        * QtTestBrowser/main.cpp:
-        (LauncherApplication::handleUserOptions):
-
-2011-07-26  Sadrul Habib Chowdhury  <sadrul@chromium.org>
-
-        Add support for download='filename' attribute in anchors.
-        https://bugs.webkit.org/show_bug.cgi?id=64580
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::loadURLExternally):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2011-07-26  Dan Bernstein  <mitz@apple.com>
-
-        Rubber-stamped by Anders Carlsson.
-
-        Update DumpRenderTree and API tests for the pictograph font family preference.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * TestWebKitAPI/Tests/WebKit2/WKPreferences.cpp:
-        (TestWebKitAPI::TEST):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-
-2011-07-26  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Replace SpecificityCalculator with TestConfiguration-driven logic.
-        https://bugs.webkit.org/show_bug.cgi?id=65206
-
-        Use our newly-acquired ability to expand modifiers into a set of
-        matching TestConfiguration instances to calculate specificity and
-        determine whether expectation applies to a given test configuration.
-
-        Also, store bug modifier on TestExpectationsLine.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_configuration.py: Added a way to report unknown modifier errors.
-        * Scripts/webkitpy/layout_tests/models/test_configuration_unittest.py: Added a test for reporting errors.
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Replaced the logic of calculating specificity with
-            test configuration matching, removed a bunch of code.
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py: Removed a bunch of tests that aren't useful anymore.
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py: Fixed an error where an invalid TestConfiguration instance
-            was created. 'default' is not a valid build type.
-        * Scripts/webkitpy/layout_tests/port/test.py: Ditto. '' is not a valid version.
-
-2011-07-26  Adam Barth  <abarth@webkit.org>
-
-        Increase the information density in garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=65141
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch changes lets us show each revision on a single line,
-        allowing use to show an entire day's worth of commits at once.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.css:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/model.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui.js:
-
-2011-07-26  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        TestConfigurationConverter should not barf on invalid specifiers.
-        https://bugs.webkit.org/show_bug.cgi?id=65194
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_configuration.py: Refactored TestConfigurationConverter.to_config_set a bit,
-            made it return empty set whenever an invalid specifier is encountered.
-        * Scripts/webkitpy/layout_tests/models/test_configuration_unittest.py: Added corresponding tests.
-
-2011-07-26  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Introduce a way to convert between specifier lists and TestConfiguration sets.
-        https://bugs.webkit.org/show_bug.cgi?id=65094
-
-        Add TestConfigurationConverter, a facility to convert:
-        1) a set of specifiers into a set of TestConfiguration instances;
-        2) a set of TestConfiguration instances into a list of sets of specifiers.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_configuration.py: Added TestConfigurationConverter.
-        * Scripts/webkitpy/layout_tests/models/test_configuration_unittest.py: Added tests for it.
-
-2011-07-26  Alexandru Chiculita  <achicu@adobe.com>
-
-        CSS Regions build bot should build with "--css-regions" and "--css-exclusion" flags
-        https://bugs.webkit.org/show_bug.cgi?id=65171
-
-        Added "features" parameter in config.json for "builder" objects. The parameter is optional and must be an array. All the items
-        of the array will be passed to the build-webkit script. The items will automatically be prefixed with "--".
-
-        Reviewed by Adam Roben.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-07-26  Chris Rogers  <crogers@google.com>
-
-        Avoid outputting #EOF twice for web audio tests in chromium DRT
-        https://bugs.webkit.org/show_bug.cgi?id=65201
-
-        Reviewed by Dirk Pranke.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::dump):
-
-2011-07-26  Adam Barth  <abarth@webkit.org>
-
-        Windows bots on build.chromium.org can't figure out the head_svn_revision
-        https://bugs.webkit.org/show_bug.cgi?id=65156
-
-        Reviewed by Tony Chang.
-
-        This patch is a bit of a guess as to the issue based on the
-        investigation in https://bugs.webkit.org/show_bug.cgi?id=65148.  I'm
-        not sure whether it will fix the issue, but it seems worth a try.
-
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-
-2011-07-26  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed. Fix WebKitGtk build with GTK+ 3.x after r91707.
-
-        * DumpRenderTree/gtk/SelfScrollingWebKitWebView.cpp:
-        (getPreferredSizeMethod):
-
-2011-07-26  MORITA Hajime  <morrita@google.com>
-
-        [Chromium][DRT] MockSpellCheck.cpp should be clang clean
-        https://bugs.webkit.org/show_bug.cgi?id=65166
-
-        Reviewed by Kent Tamura.
-
-        * DumpRenderTree/chromium/MockSpellCheck.cpp:
-        (MockSpellCheck::spellCheckWord): -Wsign-compare warning.
-
-2011-07-25  Patrick Gansterer  <paroga@webkit.org>
-
-        Ignore line endings in ChangeLogTests
-        https://bugs.webkit.org/show_bug.cgi?id=64956
-
-        Reviewed by Adam Barth.
-
-        Split the lines of the ChangeLog text before comparing them.
-        This fixes 3 tests on windows, since only the content importent.
-
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-        * Scripts/webkitpy/tool/steps/preparechangelog_unittest.py:
-
-2011-07-25  Adam Barth  <abarth@webkit.org>
-
-        Add some debug logging to NRWT to diagnose why the windows bots can't determine their SVN revision
-        https://bugs.webkit.org/show_bug.cgi?id=65148
-
-        Reviewed by Tony Chang.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-
-2011-07-25  Ojan Vafai  <ojan@chromium.org>
-
-        Tweak whitespace wrapping to improve readability.
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-
-2011-07-25  Ojan Vafai  <ojan@chromium.org>
-
-        Minor tweak to wrap label elements as atomic units.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-
-2011-07-25  Ojan Vafai  <ojan@chromium.org>
-
-        always show flakiness details on the builder page
-        https://bugs.webkit.org/show_bug.cgi?id=65139
-
-        Reviewed by Tony Chang.
-
-        In order to simplify the UI, we hide the flakiness details by default,
-        but there's no actual use-case for this page without the flakiness details.
-        So get rid of that option and always show the flakiness details.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-
-2011-07-25  Ojan Vafai  <ojan@chromium.org>
-
-        simplify the UI of the header above the test list table
-        https://bugs.webkit.org/show_bug.cgi?id=65136
-
-        Reviewed by Adam Barth.
-
-        Use checkboxes instead of links since this is really about which tests to include.
-        Ends up using less text and put the checkboxes to the right of the header instead of below it.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-
-2011-07-25  Chris Rogers  <crogers@google.com>
-
-        Update new-run-webkit-tests to accomodate binary audio data
-        https://bugs.webkit.org/show_bug.cgi?id=65135
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2011-07-25  Chris Rogers  <crogers@google.com>
-
-        Update Chromium DRT to output binary (instead of base64-encoded) data for web audio testing
-        https://bugs.webkit.org/show_bug.cgi?id=65039
-
-        Reviewed by Tony Chang.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setAudioData):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController::audioData):
-        * DumpRenderTree/chromium/TestEventPrinter.cpp:
-        (DRTPrinter::handleAudioHeader):
-        (TestShellPrinter::handleAudioHeader):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::dump):
-
-2011-06-07  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        [GTK] Use WebCore scrollbars for the DRT instead of GtkScrolledWindow
-        https://bugs.webkit.org/show_bug.cgi?id=62252
-
-        Add a new subclass of WebKitWebView that overrides the size request to
-        return 1 pixel by 1 pixel. This ensure that it operates properly when
-        not packed into a GtkScrolledWindow. Also construct the WebKitWebView
-        with self-scrolling set to true.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webInspectorInspectWebView): Use the new SelfScrollingWebKitWebview class here.
-        (createWebView): Ditto.
-        (main): Pack the widget into a GtkBox instead of a GtkScrolledWindow.
-        * DumpRenderTree/gtk/SelfScrollingWebKitWebView.cpp: Added.
-        (self_scrolling_webkit_web_view_class_init):
-        (self_scrolling_webkit_web_view_init):
-        (self_scrolling_webkit_web_view_new):
-        (sizeRequestMethod):
-        (getPreferredSizeMethod):
-        * DumpRenderTree/gtk/SelfScrollingWebKitWebView.h: Added.
-        * GNUmakefile.am: Added SelfScrollingWebKitWebView files to the source list.
-
-2011-07-25  Ojan Vafai  <ojan@chromium.org>
-
-        by default hide tests that have passes for all recorded runs
-        https://bugs.webkit.org/show_bug.cgi?id=65127
-
-        Reviewed by Adam Barth.
-
-        This is part of simplifying the default views of the dashboard to
-        make it show less information for the common use cases.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-
-2011-07-25  Ojan Vafai  <ojan@chromium.org>
-
-        stop generating expectations.json now that it's unused
-        https://bugs.webkit.org/show_bug.cgi?id=65130
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        * TestResultServer/handlers/menu.py:
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-
-2011-07-25  Ojan Vafai  <ojan@chromium.org>
-
-        don't show builders in the flakiness dashboard that have stopped running a given test suite
-        https://bugs.webkit.org/show_bug.cgi?id=65126
-
-        Reviewed by Mihai Parparita.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-
-2011-07-25  Adam Barth  <abarth@webkit.org>
-
-        Overhaul garden-o-matic frontend to integrate revision history and failures
-        https://bugs.webkit.org/show_bug.cgi?id=65089
-
-        Reviewed by Dimitri Glazkov.
-
-        This is a major overhaul of the garden-o-matic frontend.  The new UI
-        integrates the revision history information with failures.  Failures
-        appear in context adjacent to the revisions that caused them (which are
-        highlighted).  Each buildbot receives a collumn to the left, which
-        indicates which revisions that bot has tested and whether that bot
-        showed the indicated failures.
-
-        Failures are selectable with checkboxes, and can then either be
-        examined or rebaselined.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Trac.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/base.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.css:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/results_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui_unittests.js:
-
-2011-07-25  Holger Hans Peter Freyther  <zecke@selfish.org>
-
-        [buildbot] Add Qt Linux MIPSEL Configuration
-        https://bugs.webkit.org/show_bug.cgi?id=65116
-
-        Reviewed by Adam Roben.
-
-        Introduce a Qt Linux MIPS EL build slave. The configuration
-        is a build only configuration.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Add MIPS buildbot.
-
-2011-07-25  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt][WK2] Add multi-point touch mocking to MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=64374
-
-        Reviewed by Benjamin Poulain.
-
-        Each mouse button generate a touch point. The touch point stay
-        virtually on screen if the mouse release happened while the Ctrl
-        modifier was pressed.
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::notify):
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-
-2011-07-25  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt][WK2] Use NRWT for Qt-WK2
-        https://bugs.webkit.org/show_bug.cgi?id=65097
-
-        Reviewed by Andreas Kling.
-
-        * Scripts/run-webkit-tests:
-        (useNewRunWebKitTests):
-
-2011-07-24  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r91635.
-        http://trac.webkit.org/changeset/91635
-        https://bugs.webkit.org/show_bug.cgi?id=65083
-
-        It broke the minimal build (Requested by Ossy___OFFLINE on
-        #webkit).
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::initializeView):
-        (LauncherWindow::createChrome):
-        * QtTestBrowser/launcherwindow.h:
-        (WindowOptions::WindowOptions):
-        * QtTestBrowser/main.cpp:
-        (LauncherApplication::handleUserOptions):
-
-2011-07-24  Adam Barth  <abarth@webkit.org>
-
-        Rename garden-o-matic "alert" to "infobar" and increase the width to 100%.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/config.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.css:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui_unittests.js:
-
-2011-07-23  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        TestConfiguration should be hashable and comparable for equality.
-        https://bugs.webkit.org/show_bug.cgi?id=65070
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_configuration.py: Added __hash__ and __eq__ methods.
-        * Scripts/webkitpy/layout_tests/models/test_configuration_unittest.py: Added unit tests.
-
-2011-07-23  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Extract TestConfiguration from base and write a few unit tests to capture current behavior.
-        https://bugs.webkit.org/show_bug.cgi?id=65066
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_configuration.py: Added.
-        * Scripts/webkitpy/layout_tests/models/test_configuration_unittest.py: Added.
-        * Scripts/webkitpy/layout_tests/port/base.py: Moved code to test_configuration.py
-
-2011-07-23  Alok Priyadarshi  <alokp@chromium.org>
-
-        Switching off acceleration for small canvas broke gpu tests
-        https://bugs.webkit.org/show_bug.cgi?id=65053
-
-        Reviewed by Stephen White.
-
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-
-2011-07-23  Keith Kyzivat  <keith.kyzivat@nokia.com>
-
-        [Qt] Add option to turn on disk caching in QtTestBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=65007
-
-        Reviewed by Noam Rosenthal.
-
-        Add menu item and command line option to turn on disk caching in
-        QtTestBrowser. Simple QNetworkDiskCache added to the page's
-        QNetworkAccssManager.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::initializeView):
-        (LauncherWindow::createChrome):
-        (LauncherWindow::setDiskCache):
-        * QtTestBrowser/launcherwindow.h:
-        (WindowOptions::WindowOptions):
-        * QtTestBrowser/main.cpp:
-        (LauncherApplication::handleUserOptions):
-
-2011-07-22  Ojan Vafai  <ojan@chromium.org>
-
-        Don't match 'DEBUG' when trying to filter BUG modifiers.
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-
-2011-07-22  Ojan Vafai  <ojan@chromium.org>
-
-        Fix issue loading gtests since there's no g_expectations.
-        Also, make filing a bug file a webkit.org bug, not a crbug since
-        the link is only shown for layout tests.
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-
-2011-07-22  Ojan Vafai  <ojan@chromium.org>
-
-        pull test expectations into the dashboard from wvn.webkit.org
-        https://bugs.webkit.org/show_bug.cgi?id=65054
-
-        Reviewed by Adam Barth.
-
-        Now that svn.webkit.org supports cors headers, we can just grab the txt
-        file from there instead of generating a JSON file that we upload
-        to appengine. We'll stop generating the JSON file in a followup patch.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-
-2011-07-22  Adam Barth  <abarth@webkit.org>
-
-        Fix typo so the tool works on a case-sensitive file system.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-
-2011-07-22  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should know what patches are landing
-        https://bugs.webkit.org/show_bug.cgi?id=64978
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch adds a display of the recently committed patches to
-        garden-o-matic.  The UI needs iteration, but this patch establishes the
-        plumbing.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Trac.js:
-            - Teach trac how to extract more information from the commit log.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/config.js:
-            - Add a data attribute for storing the revision.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-            - Add a container for the recent commit history.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.css:
-            - CSS for displaying non-ugly commit history.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
-            - Wire up trac to the UI container.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui.js:
-            - A basic, compact display for a list of commits.
-
-2011-07-22  Ojan Vafai  <ojan@chromium.org>
-
-        Fix bug when switching from layout-tests to another test-type if
-        ToT webkit.org is the selected group.
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-
-2011-07-22  Ojan Vafai  <ojan@chromium.org>
-
-        Add back in line accidentally deleted in http://trac.webkit.org/changeset/91612.
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-
-2011-07-22  Ojan Vafai  <ojan@chromium.org>
-
-        simplify the flakiness dashboard to only show modifiers/expectations for the current builder
-        https://bugs.webkit.org/show_bug.cgi?id=65049
-
-        Reviewed by Tony Chang.
-
-        This communicates less information, but probably makes the dashboard more usable.
-        Also make it show that bug lines that don't point to bug numbers still
-        show up in the bugs column (e.g. BUG_TONY) and stop showing the extra/missing
-        columns in any view. The data is still used, but only in the view that updates
-        the test_expectations.txt file.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-
-2011-07-21  Ojan Vafai  <ojan@chromium.org>
-
-        hook in the rest of the bots to the dashboard now they run NRWT
-        https://bugs.webkit.org/show_bug.cgi?id=64985
-
-        Reviewed by Adam Barth.
-
-        * TestResultServer/static-dashboards/builders.js:
-
-2011-07-22  Alexey Proskuryakov  <ap@apple.com>
-
-        Adding Tim Horton to contributor list for Bugzilla auto-completion. He is CC'ed quite frequently.
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-07-22  Michal Pakula vel Rutka  <m.pakula@samsung.com>
-
-        [EFL] ewk_frame_hit_test_new enchancement
-        https://bugs.webkit.org/show_bug.cgi?id=64260
-
-        Apply changes done in ewk_frame_hit_test_new in EWebLauncher:
-        Replacing Ewk_Hit_Test_Result_Context structure 'flags'
-        in hit test output to by enum 'context'.
-
-        Reviewed by Antonio Gomes.
-
-        * EWebLauncher/main.c:
-        (on_key_down):
-
-2011-07-21  Adam Roben  <aroben@apple.com>
-
-        Fix typo in TestFailures
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-
-2011-07-21  Ojan Vafai  <ojan@chromium.org>
-
-        simplify gtest display now that we strip modifiers from the JSON
-        https://bugs.webkit.org/show_bug.cgi?id=64990
-
-        Reviewed by Adam Barth.
-
-        Now that names are normalized, we can remove all the code that
-        handles gtest name changes (e.g. for adding modifiers like DISABLED_).
-        Instead, if you try to list a test with a modifier in it, we need
-        to strip the modifier so we get the normalized value.
-
-        We also get rid of the concept of extra/missing expectations for gtests.
-        In a patch soon, we'll stop showing extra/missing expectations from the UI
-        entirely and only leave it for the special updating test_expectations.txt
-        view of the dashboard, which doesn't apply to gtests.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-
-2011-07-21  Adam Barth  <abarth@webkit.org>
-
-        Refactor Trac.js for use in garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=64998
-
-        Reviewed by Adam Roben.
-
-        This patch refactors Trac.js to match the architecture and style of
-        garden-o-matic.  I've also factored AsynchronousCache out of Trac (and
-        moved it to base) because it was redundant with some other code we
-        already had.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FailingTestsBugForm.js:
-        (FailingTestsBugForm):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FailingTestsBugForm_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Trac.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype._displayBuilder.start):
-        (ViewController.prototype._displayBuilder):
-        (ViewController.prototype._domForRegressionRange.trac.getCommitDataForRevisionRange):
-        (ViewController.prototype._domForRegressionRange):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/base.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/config.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/index.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html:
-
-2011-07-21  Ojan Vafai  <ojan@chromium.org>
-
-        Fix issue throwing a 500 to the bots. We were modifying
-        the dictionary during an iteration over it's keys and would get
-        RuntimeError: dictionary changed size during iteration
-
-        * TestResultServer/model/jsonresults.py:
-
-2011-07-21  Adam Barth  <abarth@webkit.org>
-
-        ORWT fails to consume some NRWT arguments
-        https://bugs.webkit.org/show_bug.cgi?id=64988
-
-        Reviewed by Adam Roben.
-
-        * Scripts/old-run-webkit-tests:
-
-2011-07-21  Adam Barth  <abarth@webkit.org>
-
-        Merge TestFailures and garden-o-matic unit tests harness
-        https://bugs.webkit.org/show_bug.cgi?id=64984
-
-        Reviewed by Adam Roben.
-
-        One unit testing framework is better than two.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-more-unittests.html: Removed.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html:
-
-2011-07-21  Adam Barth  <abarth@webkit.org>
-
-        Rubber-stamped by Adam Roben.
-
-        Move garden-o-matic files into the same directory as TestFailures to
-        make it easier to integrate the codebases.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/base.js: Copied from Tools/Scripts/webkitpy/tool/servers/data/gardeningserver/base.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/base_unittests.js: Copied from Tools/Scripts/webkitpy/tool/servers/data/gardeningserver/base_unittests.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/checkout.js: Copied from Tools/Scripts/webkitpy/tool/servers/data/gardeningserver/checkout.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/checkout_unittests.js: Copied from Tools/Scripts/webkitpy/tool/servers/data/gardeningserver/checkout_unittests.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/config.js: Copied from Tools/Scripts/webkitpy/tool/servers/data/gardeningserver/config.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/favicon-green.png: Copied from Tools/Scripts/webkitpy/tool/servers/data/gardeningserver/favicon-green.png.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/favicon-red.png: Copied from Tools/Scripts/webkitpy/tool/servers/data/gardeningserver/favicon-red.png.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html: Copied from Tools/Scripts/webkitpy/tool/servers/data/gardeningserver/index.html.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.css: Copied from Tools/Scripts/webkitpy/tool/servers/data/gardeningserver/main.css.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js: Copied from Tools/Scripts/webkitpy/tool/servers/data/gardeningserver/main.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/partytime.gif: Copied from Tools/Scripts/webkitpy/tool/servers/data/gardeningserver/partytime.gif.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/results.js: Copied from Tools/Scripts/webkitpy/tool/servers/data/gardeningserver/results.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/results_unittests.js: Copied from Tools/Scripts/webkitpy/tool/servers/data/gardeningserver/results_unittests.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-more-unittests.html: Copied from Tools/Scripts/webkitpy/tool/servers/data/gardeningserver/run-unittests.html.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui.js: Copied from Tools/Scripts/webkitpy/tool/servers/data/gardeningserver/ui.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui_unittests.js: Copied from Tools/Scripts/webkitpy/tool/servers/data/gardeningserver/ui_unittests.js.
-        * Scripts/webkitpy/tool/commands/abstractlocalservercommand.py:
-        * Scripts/webkitpy/tool/commands/gardenomatic.py:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver: Removed.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/base.js: Removed.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/base_unittests.js: Removed.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/checkout.js: Removed.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/checkout_unittests.js: Removed.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/config.js: Removed.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/favicon-green.png: Removed.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/favicon-red.png: Removed.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/index.html: Removed.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.css: Removed.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.js: Removed.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/partytime.gif: Removed.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results.js: Removed.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results_unittests.js: Removed.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/run-unittests.html: Removed.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui.js: Removed.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui_unittests.js: Removed.
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-
-2011-07-19  Ojan Vafai  <ojan@chromium.org>
-
-        fix links on the flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=64832
-
-        Reviewed by Tony Chang.
-
-        Make them actual anchor tags and linkify the test name instead of
-        adding an extra link. Also simplify the update view since we now
-        show the linkified test name.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-
-2011-07-21  Adam Barth  <abarth@webkit.org>
-
-        webkit.org builders should upload results to test-results AppEngine instance
-        https://bugs.webkit.org/show_bug.cgi?id=64979
-
-        Reviewed by Adam Roben.
-
-        The master just needs to pass some flags to NRWT.  This patch also lets
-        ORWT consume the flags (ignoring them) so we can pass the flags
-        unconditionally.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        * Scripts/old-run-webkit-tests:
-
-2011-07-21  Ojan Vafai  <ojan@chromium.org>
-
-        normalize gtest names in the result json
-        https://bugs.webkit.org/show_bug.cgi?id=64971
-
-        Reviewed by Eric Seidel.
-
-        This will make the resulting JSON smaller and make the
-        flakiness dashboard much more sane (e.g. we won't need to
-        show you the FLAKY_ version and the normal version).
-
-        * TestResultServer/model/jsonresults.py:
-        * TestResultServer/model/jsonresults_unittest.py:
-
-2011-07-21  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Reenable ORWT for the --leaks bot.
-        Something is still wrong with the leaks summarizing
-        but I'm about to head out on vacation for 2 weeks,
-        so it's best to just revert back to ORWT until I'm back.
-
-        * Scripts/run-webkit-tests:
-        (usingLeaks):
-        (useNewRunWebKitTests):
-
-2011-07-21  Ojan Vafai  <ojan@chromium.org>
-
-        cleanup jsonresults.py style in preparation for making some changes
-        https://bugs.webkit.org/show_bug.cgi?id=64968
-
-        Reviewed by Adam Barth.
-
-        No code changes. Unittest still passes. Mostly just removing
-        useless comments and 80 character wrapping.
-
-        * TestResultServer/model/jsonresults.py:
-        * TestResultServer/model/jsonresults_unittest.py:
-
-2011-07-21  Adam Barth  <abarth@webkit.org>
-
-        Add missing column header.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui.js:
-
-2011-07-21  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Just fixing (and unittesting) a previous typo.
-
-        Fix typo in print_leaks_summary regexp which was causing
-        leaks summarizing to fail on the --leaks bot.
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-
-2011-07-21  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should be able to rebaseline many tests at once
-        https://bugs.webkit.org/show_bug.cgi?id=64963
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch contains some UI for rebaselining tests in bulk.  I don't
-        expect this UI to be the final UI, but the underlying infrastructure
-        will be useful.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/checkout.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/index.html:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui.js:
-
-2011-07-21  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic has trouble when the same test fails in different ways on diffrent bots
-        https://bugs.webkit.org/show_bug.cgi?id=64830
-
-        Unreviewed.  (Missing the patch is blocking me from fixing the tree.)
-
-        This patch is just some minor bug fixes.  One of the bugs results from
-        the sadness of having two representations (a list and a space-separated
-        string) for the set of failure types.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results_unittests.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui_unittests.js:
-
-2011-07-20  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Buildbot marks a nrwt bot red when tests are missing results
-        https://bugs.webkit.org/show_bug.cgi?id=64812
-
-        Reviewed by Adam Barth.
-
-        The bug was caused by multiple expressions matching on the single output.
-        Fixed it by exiting the loop as soon as one expression matches.
-
-        Because the regular expression for 'failures' is most general,
-        moved it to the end of the list to avoid it catching other cases.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-07-20  Chang Shu  <cshu@webkit.org>
-
-        Adding myself to the reviewers list; No review needed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-07-20  Eric Seidel  <eric@webkit.org>
-
-        new-run-webkit-tests --leaks does not restart DumpRenderTree often enough
-        https://bugs.webkit.org/show_bug.cgi?id=64912
-
-        Reviewed by Adam Barth.
-
-        The bug was that set_default_option only works if the option's value
-        is "None".  So I fixed --batch-size to default to None instead of 0
-        (which kinda makes sense).
-
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-07-20  Eric Seidel  <eric@webkit.org>
-
-        Make kill-old-processes kill httpd on mac
-        https://bugs.webkit.org/show_bug.cgi?id=64898
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/kill-old-processes:
-         - The line endings seem to have flipped again,
-           Thus making this diff gigantic.  The only line
-           changed is the "httpd" line.  I suspect we'll need
-           to set the line ending style from an svn checkout.
-
-2011-07-20  Ojan Vafai  <ojan@chromium.org>
-
-        show a list of average test times in the treemap
-        https://bugs.webkit.org/show_bug.cgi?id=64899
-
-        Reviewed by Adam Roben.
-
-        For now, you click a link and it replaces the treemap
-        with a reverse sorted list of directories based on
-        average test runtime within that directory.
-
-        To cut some of the noise, we don't show directories
-        that only have one test in them or where the average
-        runtime is less than 100ms.
-
-        * TestResultServer/static-dashboards/treemap.html:
-
-2011-07-20  Eric Seidel  <eric@webkit.org>
-
-        Teach build.webkit.org how to identify leaks in NRWT output
-        https://bugs.webkit.org/show_bug.cgi?id=64891
-
-        Reviewed by Adam Barth.
-
-        This was the last remaining piece blocking turning on
-        NRWT for the leaks bot, so I did that in this change too.
-        If for some reason we see trouble on the bots, I'll
-        revert that part of this change.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        * Scripts/run-webkit-tests:
-
-2011-07-20  Ojan Vafai  <ojan@chromium.org>
-
-        make the treemap display more human friendly
-        https://bugs.webkit.org/show_bug.cgi?id=64896
-
-        Reviewed by Tony Chang.
-
-        * TestResultServer/static-dashboards/treemap.html:
-
-2011-07-20  Eric Seidel  <eric@webkit.org>
-
-        Move HttpLock to using a FileSystem object
-        https://bugs.webkit.org/show_bug.cgi?id=64885
-
-        Reviewed by Adam Barth.
-
-        I made a typo in my previous change, taking the value
-        of read_text_file(pid_file) and setting it to lock_pid_file
-        instead of current_pid.  Fixed now. :)
-
-        In order to test my new change I had to overhaul the unittests
-        for this class to create a separate set of tests which work off
-        of Mock objects instead of the real filesystem.
-
-        Since Executive doesn't yet wrap os.getpid() I added a FIXME
-        in several places where we're currently calling os.getpid().  I
-        felt adding Executive.getpid was outside of the scope of this change
-        but once it exists some of this code will be much simpler to mock.
-
-        * Scripts/webkitpy/layout_tests/port/http_lock.py:
-        * Scripts/webkitpy/layout_tests/port/http_lock_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2011-07-20  Adam Roben  <aroben@apple.com>
-
-        Fix typo in TestFailures's Bugzilla constants
-
-        This was preventing the "Version" field from being pre-filled when filing new bugs.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/WebKitBugzilla.js:
-
-2011-07-20  Eric Seidel  <eric@webkit.org>
-
-        Move HttpLock to using a FileSystem object
-        https://bugs.webkit.org/show_bug.cgi?id=64885
-
-        Reviewed by Adam Barth.
-
-        There is no functional change here.  Just moving off
-        of direct os.foo calls to their filesystem equivalent.
-
-        This makes it possible to now unittest HttpLock using a
-        MockFileSystem instead of needing to talk to the filesystem directly.
-
-        This also will have changed any port test cases which were using a
-        mock file system to now have an HttpLock based on a mock filesystem
-        instead.  I saw no change in the unittests so it's possible
-        we're not testing that configuration (or more likely that it "just works").
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/http_lock.py:
-        * Scripts/webkitpy/layout_tests/port/http_lock_unittest.py:
-
-2011-07-20  Adam Barth  <abarth@webkit.org>
-
-        NRWT results uses too much space per run
-        https://bugs.webkit.org/show_bug.cgi?id=64845
-
-        Reviewed by Ojan Vafai.
-
-        Removing these files saves about 750K per build.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-
-2011-07-20  Zan Dobersek  <zandobersek@gmail.com>
-
-        [Gtk] [NRWT] Xvfb produces a lot of stderr output
-        https://bugs.webkit.org/show_bug.cgi?id=64669
-
-        Reviewed by Philippe Normand.
-
-        Redirect the stderr output of the driver's Xvfb process
-        to /dev/null to suppress unneeded output.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-
-2011-07-19  Eric Seidel  <eric@webkit.org>
-
-        parse-malloc-history always exits 1, causing NRWT to fail
-        https://bugs.webkit.org/show_bug.cgi?id=64835
-
-        Reviewed by Adam Barth.
-
-        ORWT just never checked the return code. :)
-
-        * Scripts/parse-malloc-history:
-        (main):
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-
-2011-07-19  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix, don't add the debug prefix as 2.9 no longer uses one.
-
-        * waf/build/wxpresets.py:
-
-2011-07-19  Eric Seidel  <eric@webkit.org>
-
-        new-run-webkit-tests should only enable MallocStackLogging for DRT
-        https://bugs.webkit.org/show_bug.cgi?id=64792
-
-        Reviewed by Adam Barth.
-
-        The previous code would enable it for all servers launched
-        by the port, which included Apache, the python websocket server
-        as well as ImageDiff.  Now only DumpRenderTree will have
-        MallocStackLogging enabled or the GuardMalloc library injected.
-
-        I also cleaned up the websocket_server code to use filesystem
-        while I was in it.
-
-        I also made DRT restart every 1000 tests when running with
-        --leaks enabled.  I believe this made the --leaks run slightly
-        faster, but it still takes over an hour on my machine. :(
-
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/servers/http_server.py:
-        * Scripts/webkitpy/layout_tests/servers/websocket_server.py:
-
-2011-07-19  Ojan Vafai  <ojan@chromium.org>
-
-        remove the concept of platform fallbacks
-        https://bugs.webkit.org/show_bug.cgi?id=64829
-
-        Reviewed by Adam Barth.
-        
-        In the process, wrote tests for this code and fixed a pretty major
-        bug (now covered by the test).
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-
-2011-07-19  Ojan Vafai  <ojan@chromium.org>
-
-        cleanup some of the PLATFORM logic in the flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=64821
-
-        Reviewed by Adam Barth.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-
-2011-07-19  Ojan Vafai  <ojan@chromium.org>
-
-        cleanup some of the PLATFORM logic in the flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=64821
-
-        Reviewed by Adam Barth.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-
-2011-07-19  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Store line number on TestExpectationLine.
-        https://bugs.webkit.org/show_bug.cgi?id=64800
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Refactored to store line number on TestExpectationLine instances.
-
-2011-07-19  Ojan Vafai  <ojan@chromium.org>
-
-        fix flakiness dashboard for XP bots with XP in the name instead of WIN
-        https://bugs.webkit.org/show_bug.cgi?id=64826
-
-        Reviewed by Mihai Parparita.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-
-2011-07-19  Cary Clark  <caryclark@google.com>
-
-        add myself to committers.py
-        https://bugs.webkit.org/show_bug.cgi?id=64816
-
-        No review needed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-07-19  Daniel Bates  <dbates@webkit.org>
-
-        Rename variable isEmptyTextPatch in svn-{apply, unapply}
-        https://bugs.webkit.org/show_bug.cgi?id=64648
-
-        Reviewed by Adam Roben.
-
-        Rename the variable isEmptyTextPatch to hasTextChunks, which is
-        more descriptive and makes its usage read well in control statements.
-
-        * Scripts/svn-apply:
-        (patch):
-        * Scripts/svn-unapply:
-        (patch):
-
-2011-07-19  Adam Roben  <aroben@apple.com>
-
-        Make TestFailures show existing bugs and a new bug link for flaky tests
-
-        Fixes <http://webkit.org/b/63728> TestFailures page should make it easy to file bugs about
-        flaky tests
-        and
-        <http://webkit.org/b/63830> TestFailures page doesn't show related bugs for possibly-flaky
-        tests, but should
-
-        Reviewed by Sam Weinig.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FlakyTestBugForm.js:
-        Added. This is what's used to file new bugs about flaky tests.
-        (FlakyTestBugForm): Calls up to the base class, stores the arguments, and sets our
-        title, description, and URL.
-
-        (FlakyTestBugForm.prototype._createBugDescription):
-        (FlakyTestBugForm.prototype._createBugTitle):
-        These do what they say.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FlakyTestBugForm_unittests.js:
-        Added. Tests of the above.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestFailures.css:
-        (#failure-history > li):
-        (#possibly-flaky-tests > li):
-        (#failure-history > li, #possibly-flaky-tests > li):
-        (#possibly-flaky-tests > li > :first-child):
-        (.flakiness-examples-list):
-        Styling to account for the new elements.
-
-        (.expandable):
-        (.expanded > .expandable):
-        Generalized the .flakiness-example-list code to a generic .expandable class. Removed the
-        transition properties because we can't transition to/from 'auto' (but really would like
-        to!).
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype._displayBuilder): Moved code to create the FailingTestsBugForm
-        here from _domForNewAndExistingBugs. Updated for changes to _domForPossiblyFlakyTests.
-        (ViewController.prototype._domForNewAndExistingBugs): Changed to take a NewBugForm as an
-        argument instead of creating one ourselves.
-        (ViewController.prototype._domForPossiblyFlakyTests): Changed to take all analyzed builds as
-        an argument instead of just the number of analyzed builds. Put the examples list inside a
-        container <div>, which is also used to hold the new/existing bugs UI. Removed code to deal
-        with animating the height of the examples list; we don't do this anymore because it's hard
-        to make it work correctly with the asynchronous loading of existing bugs. When we populate
-        the examples list, also set up the new/existing bug UI.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/index.html: Pull in
-        FlakyTestBugForm.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html:
-        Pull in FlakyTestBugForm and its tests.
-
-2011-07-19  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Buildbot marks a nrwt bot red when tests are missing results
-        https://bugs.webkit.org/show_bug.cgi?id=64812
-
-        Reviewed by Tony Chang.
-
-        Added "missing results" label for tests that are missing results.
-
-        buildbot Now reports shows a label "X missing results" on a run when X tests were missing
-        expected results on that run.
-
-        Also rephrased "X failed" and "X were flaky" to "X failures" and "X flakes".
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-07-19  Adam Roben  <aroben@apple.com>
-
-        Extract some of FailingTestsBugForm's code into a base class
-
-        Prep work for fixing <http://webkit.org/b/63728> TestFailures page should make it easy to
-        file bugs about flaky tests
-
-        Reviewed by Sam Weinig.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FailingTestsBugForm.js:
-        Moved BugzillaConstants to new WebKitBugzilla file. Moved a bunch of other code from here to
-        TestRelatedBugForm.js.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FailingTestsBugForm_unittests.js:
-        Moved some tests to TestRelatedBugForm_unittests.js.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestRelatedBugForm.js: Added.
-        (TestRelatedBugForm):
-        (TestRelatedBugForm.prototype.domElement):
-        (TestRelatedBugForm.prototype._computeOperatingSystem):
-        (TestRelatedBugForm.prototype._computePlatform):
-        Code came from FailingTestsBugForm.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestRelatedBugForm_unittests.js:
-        Added. Tests came from FailingTestsBugForm_unittests.js
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/WebKitBugzilla.js:
-        Added. Code came from FailingTestsBugForm.js.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/index.html: Pull in
-        TestRelatedBugForm.js and WebKitBugzilla.js. Moved Bugzilla.js out of the list of files that
-        need to be pulled in early for parsing reasons.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html:
-        Pull in TestRelatedBugForm and tests and WebKitBugzilla.
-
-2011-07-19  Sam Weinig  <sam@webkit.org>
-
-        Remove obsolete Mac NRWT test bots
-        https://bugs.webkit.org/show_bug.cgi?id=64806
-
-        Reviewed by Adam Roben.
-
-        Remove "Leopard Intel Release (NRWT)" and "SnowLeopard Intel Release (NRWT)"
-        which have been disconnected for some time and have been obsoleted by
-        the main testers using NRWT.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2011-07-19  Sam Weinig  <sam@webkit.org>
-
-        webkit-patch rebaseline crashes on use
-        https://bugs.webkit.org/show_bug.cgi?id=64775
-
-        Reviewed by Adam Roben.
-
-        Fix incorrectly spelled attribute name.
-
-        * Scripts/webkitpy/common/net/layouttestresults.py:
-        The attribute is test_name, not filename.
-
-        * Scripts/webkitpy/common/net/layouttestresults_unittest.py:
-        Add test for tests_matching_failure_types.
-
-2011-07-18  Eric Seidel  <eric@webkit.org>
-
-        new-run-webkit-tests should support --leaks
-        https://bugs.webkit.org/show_bug.cgi?id=63832
-
-        Reviewed by Dirk Pranke.
-
-        This may not be sufficient to actually transition over the leaks bot,
-        but this is a huge step in the right direction.
-
-        I had to make parse-malloc-history understand being passed more than
-        one file (to avoid the silly cat | nonsense in old-run-webkit-tests).
-
-        I removed some dead code relating to previous iterations of our crash detection.
-
-        I created a new class "LeakDetector" to encapsulate all this logic.
-        Eventually we should consider pulling that class out of mac.py and
-        sharing with other ports.  However given that ORWT has had
-        --leaks support on Mac for almost 7 years and no other port has added
-        it, leaves me to believe we're in no rush to move LeakDetector.
-
-        I've tested --leaks locally.  I suspect there are more bugs to shake out
-        but it seems to work well enough to start.
-
-        I also added support for --guard-malloc, but have not tested it much.  It
-        should be viewed as experimental at this time.
-
-        I also fixed various os.path uses to self._filesystem as I was reading
-        through the various files to understand how best to fix this bug.
-
-        * Scripts/old-run-webkit-tests:
-        (parseLeaksandPrintUniqueLeaks):
-        * Scripts/parse-malloc-history:
-        (main):
-        * Scripts/webkitpy/common/system/crashlogs.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-07-19  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should have a "Triage Failures" button for iterating over failures
-        https://bugs.webkit.org/show_bug.cgi?id=64769
-
-        Reviewed by Eric Seidel.
-
-        This patch adds some global static state and refactors things a bit so
-        that we can iterate over all the failures in the details pane.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/base.js:
-            - Add a generic callback iterator to iterate through a series of
-              callbacks. We use this to iterate through the failures we want to
-              display the details of.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/index.html:
-            - Add a toolbar for the results summary and change the buttons to
-              be real buttons.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.css:
-            - Make the detail pane 75% of the window.
-            - Make the buttons pretty.
-            - Allow the failure type badges to apply to the details pane as well.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.js:
-            - Restructure how we bring up the details pane so we can iterate
-              through a bunch of failures.
-            - Remove the transition between results details because it's
-              annoying when you want to click through a bunch of failures.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui.js:
-            - Add some more structure to the title bar for the results details
-              so it's clearer which results we're currently displaying.
-
-2011-07-19  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should live update as conditions change on the buildbot
-        https://bugs.webkit.org/show_bug.cgi?id=64646
-
-        Reviewed by Eric Seidel.
-
-        This patch causes the garden-o-matic display to update every 10 minutes
-        to show the latest failures.  This patch required a moderately large
-        refactoring of main.js to make the display incremental instead of
-        all-at-once.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/base.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.css:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui.js:
-
-2011-07-18  Tab Atkins  <jackalmage@gmail.com>
-
-        Tab Atkins is not in committers.py (as a non-committer)
-        https://bugs.webkit.org/show_bug.cgi?id=64770
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-07-18  Ojan Vafai  <ojan@chromium.org>
-
-        Load ToT chromium bots by default in the flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=64756
-
-        Reviewed by Adam Barth.
-
-        For now, these are the most useful bots to look at. Eventually,
-        we may want to load the build.webkit.org bots by default once
-        most of the bots there upload results.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-
-2011-07-13  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        Focus and selection events are not fired when a <select>'s selection
-        changes
-        https://bugs.webkit.org/show_bug.cgi?id=64504
-        <rdar://problem/9319881>
-
-        Reviewed by Alice Liu.
-
-        * DumpRenderTree/AccessibilityController.h:
-        Added m_notificationsEventHook for addNotificationListener().
-        m_allEventsHook will now be used for setLogAccessibilityEvents().
-
-        * DumpRenderTree/win/AccessibilityControllerWin.cpp:
-        (AccessibilityController::AccessibilityController):
-        Initialize m_notificationsEventHook.
-        (AccessibilityController::~AccessibilityController):
-        Turn off logging of all accessibility events. If
-        m_notificationsEventHook is non-null, unhook it.
-        (logEventProc):
-        Add handling of EVENT_OBJECT_SELECTION.
-        (AccessibilityController::setLogAccessibilityEvents):
-        If the state of logging is not changing, return early. If we're turning
-        off logging, unhook m_allEventsHook, and zero it out. Otherwise, add a
-        hook for all events.
-        (AccessibilityController::addNotificationListener):
-        Use m_notificationsEventHook rather than m_allEventsHook.
-
-2011-07-18  Eric Seidel  <eric@webkit.org>
-
-        webkit-patch apply-attachment does not work when not called from the root of the checkout
-        https://bugs.webkit.org/show_bug.cgi?id=64751
-
-        Unreviewed.  Just updating unit test results after bug 64751.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-
-2011-07-18  Adam Barth  <abarth@webkit.org>
-
-        simplejson has trouble on chromium-linux
-        https://bugs.webkit.org/show_bug.cgi?id=64757
-
-        Reviewed by Eric Seidel.
-
-        Use the native JSON, if available.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-
-2011-07-18  Ojan Vafai  <ojan@chromium.org>
-
-        update the flakiness dashboard to understand the new platforms/formats in test_expectations
-        https://bugs.webkit.org/show_bug.cgi?id=64743
-
-        Reviewed by Adam Barth.
-
-        The test expectations format changed a long time ago and the flakiness dashboard
-        was never updated to match.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-        * TestResultServer/static-dashboards/timeline_explorer.html:
-
-2011-07-18  Eric Seidel  <eric@webkit.org>
-
-        webkit-patch apply-attachment does not work when not called from the root of the checkout
-        https://bugs.webkit.org/show_bug.cgi?id=64751
-
-        Reviewed by Adam Barth.
-
-        Last week I removed a os.chdir in EnsureWorkingDirectoryClean, which
-        is a step that we run for most commands (as one of the earliest steps).
-        EnsureWorkingDirectoryClean was incorrectly calling os.chdir to change
-        the CWD to the checkout root.  This magically made a bunch of otherwise
-        wrong code work.
-
-        When I realized that apply-attachment no longer worked as expected today,
-        I went and fixed the bug, then realizing that we were not testing
-        what the cwd was when running various commands.  I fixed our MockExecutive
-        to always log what the cwd is and fixed a whole bunch of places
-        where we needed to be setting the cwd.
-
-        Hopefully this will solve our cwd problems once and for-all, and webkit-patch
-        will again correctly work when called from any directory (including outside
-        of a webkit checkout).
-
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/common/system/workspace_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/gtk_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        * Scripts/webkitpy/tool/bot/irc_command_unittest.py:
-        * Scripts/webkitpy/tool/bot/layouttestresultsreader_unittest.py:
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/commands/queuestest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-        * Scripts/webkitpy/tool/steps/build.py:
-        * Scripts/webkitpy/tool/steps/checkstyle.py:
-        * Scripts/webkitpy/tool/steps/editchangelog.py:
-        * Scripts/webkitpy/tool/steps/preparechangelog.py:
-        * Scripts/webkitpy/tool/steps/preparechangelogforrevert.py:
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-        * Scripts/webkitpy/tool/steps/update.py:
-
-2011-07-18  Adam Barth  <abarth@webkit.org>
-
-        Increase information garden-o-matic information density by switching to a table
-        https://bugs.webkit.org/show_bug.cgi?id=64642
-
-        Reviewed by Dimitri Glazkov.
-
-        The old layout couldn't handle the large number of failures we had
-        today.  This patch switches garden-o-matic to a table-based layout,
-        which can handle many more failures gracefully.  (I expect we'll need
-        more UI iterations.)
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.css:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui_unittests.js:
-
-2011-07-18  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should be able to determine when compile breaks
-        https://bugs.webkit.org/show_bug.cgi?id=64190
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch adds a red-ish box to the top of the page whenever there is
-        a compile error on the bots.  The box automatically opens and closes as
-        appropriate and links to the waterfall display.  In the future, we
-        might want to compute a regression range.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/config.js:
-            - Add the build-only bots to the config.  We use these to check
-              whether the build failed, which is faster than waiting for the
-              tester bots to cycle.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/index.html:
-            - Add DOM for the alert bar.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.css:
-            - CSS to support the alert bar.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.js:
-            - Wiring up events to poll the buildbot to see whether compile has
-              failed.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results.js:
-            - Infrastructure for fetching and parsing the buildbot status JSON
-              blob.  This code could be better factored for testability.  :(
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui.js:
-            - UI for displaying compile errors.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui_unittests.js:
-
-2011-07-18  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r91132 and r91135.
-        http://trac.webkit.org/changeset/91132
-        http://trac.webkit.org/changeset/91135
-        https://bugs.webkit.org/show_bug.cgi?id=64681
-
-        Broke GTK and Chromium debug bots (Requested by rniwa on
-        #webkit).
-
-        * DumpRenderTree/AccessibilityController.h:
-        * DumpRenderTree/win/AccessibilityControllerWin.cpp:
-        (AccessibilityController::AccessibilityController):
-        (AccessibilityController::~AccessibilityController):
-        (logEventProc):
-        (AccessibilityController::setLogAccessibilityEvents):
-        (AccessibilityController::addNotificationListener):
-
-2011-07-17  Philippe Normand  <pnormand@igalia.com>
-
-        test-webkitpy failing with Python 2.5
-        https://bugs.webkit.org/show_bug.cgi?id=64594
-
-        Reviewed by Eric Seidel.
-
-        Updated simplejson to version 2.1.6 that fixes an issue when
-        dumping slashes. Also use cgi.parse_qs instead of the urlparse
-        version to be compatible with Python2.5. Verified the fix with
-        test-webkitpy on python 2.5 and python 2.6.
-
-        * Scripts/webkitpy/thirdparty/simplejson/README.txt:
-        * Scripts/webkitpy/thirdparty/simplejson/__init__.py:
-        * Scripts/webkitpy/thirdparty/simplejson/_speedups.c:
-        (json_PyOS_string_to_double):
-        (_convertPyInt_AsSsize_t):
-        (_convertPyInt_FromSsize_t):
-        (ascii_escape_char):
-        (ascii_escape_unicode):
-        (ascii_escape_str):
-        (raise_errmsg):
-        (join_list_unicode):
-        (join_list_string):
-        (_build_rval_index_tuple):
-        (scanstring_str):
-        (scanstring_unicode):
-        (py_scanstring):
-        (py_encode_basestring_ascii):
-        (scanner_dealloc):
-        (scanner_traverse):
-        (scanner_clear):
-        (_parse_object_str):
-        (_parse_object_unicode):
-        (_parse_array_str):
-        (_parse_array_unicode):
-        (_parse_constant):
-        (_match_number_str):
-        (_match_number_unicode):
-        (scan_once_str):
-        (scan_once_unicode):
-        (scanner_call):
-        (scanner_new):
-        (scanner_init):
-        (encoder_new):
-        (encoder_init):
-        (encoder_call):
-        (_encoded_const):
-        (encoder_encode_float):
-        (encoder_encode_string):
-        (_steal_list_append):
-        (encoder_listencode_obj):
-        (encoder_listencode_dict):
-        (encoder_listencode_list):
-        (encoder_dealloc):
-        (encoder_traverse):
-        (encoder_clear):
-        (init_speedups):
-        * Scripts/webkitpy/thirdparty/simplejson/decoder.py:
-        * Scripts/webkitpy/thirdparty/simplejson/encoder.py:
-        * Scripts/webkitpy/thirdparty/simplejson/ordered_dict.py: Added.
-        * Scripts/webkitpy/thirdparty/simplejson/scanner.py:
-        * Scripts/webkitpy/thirdparty/simplejson/tool.py: Added.
-        * Scripts/webkitpy/tool/servers/reflectionhandler.py:
-
-2011-07-17  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Rename ModifierMatcher to SpecificityCalculator.
-        https://bugs.webkit.org/show_bug.cgi?id=64660
-
-        It's a little longer than before, but it is much clearer.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Renamed and adjusted
-            all callsites, also rewrote the comments.
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py: Adjusted callsites
-            and renamed tests.
-
-2011-07-15  Adam Barth  <abarth@webkit.org>
-
-        gardening server should proxy buildbot status for garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=64588
-
-        Reviewed by Eric Seidel.
-
-        This information will be used to detect build breaks.  I took this
-        opportunity to make ChromiumBuildBot non-static.
-
-        * Scripts/webkitpy/common/host.py:
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-
-2011-07-15  Julien Chaffraix  <jchaffraix@webkit.org>
-
-        [NRWT] Add support for --no-http
-        https://bugs.webkit.org/show_bug.cgi?id=64564
-
-        Reviewed by Dirk Pranke.
-
-        Added support for --no-http, which disables both HTTP and websockets tests.
-        It also matches the old-run-webkit-tests behavior if --force is used.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        Fixed HTTP_SUBDIR and WEBSOCKET_SUBDIR as tests do not start with a leading separator.
-        We check if --no-http is set and add the HTTP / websockets tests to the skipped list prior to looking
-        at the expectation file. Fixed the  _test_requires_lock function to use the same code path to determine
-        what is worth have an HTTP lock as --no-http to avoid badness.
-
-        * Scripts/webkitpy/layout_tests/port/test.py: Added 2 new tests to our mock filesystem to validate that
-        we do skip properly HTTP / websocket tests inside platform/.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        Added tests that we properly skip all the tests.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        Added checks for the command line arguments.
-
-2011-07-13  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        Focus and selection events are not fired when a <select>'s selection
-        changes
-        https://bugs.webkit.org/show_bug.cgi?id=64504
-        <rdar://problem/9319881>
-
-        Reviewed by Alice Liu.
-
-        * DumpRenderTree/AccessibilityController.h:
-        Added m_notificationsEventHook for addNotificationListener().
-        m_allEventsHook will now be used for setLogAccessibilityEvents().
-
-        * DumpRenderTree/win/AccessibilityControllerWin.cpp:
-        (AccessibilityController::AccessibilityController):
-        Initialize m_notificationsEventHook.
-        (AccessibilityController::~AccessibilityController):
-        Turn off logging of all accessibility events. If
-        m_notificationsEventHook is non-null, unhook it.
-        (logEventProc):
-        Add handling of EVENT_OBJECT_SELECTION.
-        (AccessibilityController::setLogAccessibilityEvents):
-        If the state of logging is not changing, return early. If we're turning
-        off logging, unhook m_allEventsHook, and zero it out. Otherwise, add a
-        hook for all events.
-        (AccessibilityController::addNotificationListener):
-        Use m_notificationsEventHook rather than m_allEventsHook.
-
-2011-07-15  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Refactor TestExpectationModel to use TestExpectationLine as data item.
-        https://bugs.webkit.org/show_bug.cgi?id=64635
-
-        This is a bit largish in scope. Does the following things:
-
-        1) Adds "path" member to TestExpectationLine to hold normalized path to test, computed at parsing,
-           and changes code that used Port.normalize_test_name to rely on TestExpectationLine.path. As a result, TestExpectationModel no longer
-           needs to have any port knowledge.
-
-        2) Adds "create_passing_expectation" class method to TestExpectationLine to generate a pristine passing expectation out of a test name,
-           and changes TestExpectations._process_tests_without_expectations to use it, thus eliminating the need for a special API entry point.
-           Now all expectations are added to the model in the same way!
-
-        3) Changes TestExpectationModel's main test index to store a tuple consisting of line number and TestExpectationLine instance.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Refactored code.
-
-2011-07-15  Adam Roben  <aroben@apple.com>
-
-        Teach TestFailures how to detect interrupted build steps
-
-        Fixes <http://webkit.org/b/64619> TestFailures page thinks all tests passed in
-        http://build.webkit.org/builders/SnowLeopard%20Intel%20Release%20(WebKit2%20Tests)/builds/13401
-
-        Reviewed by Daniel Bates.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder.js:
-        (Builder.prototype.getNumberOfFailingTests): If the build step has a result code of 4, the
-        build step was interrupted. Treat it as an error (by returning a failureCount of -1).
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder_unittests.js:
-        Added a test for the above.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/LayoutTestResultsLoader.js:
-        (LayoutTestResultsLoader.prototype.start): Bumped the cache version to evict old, buggy
-        cache data that was afflicted by the above bug.
-
-2011-07-15  Eric Seidel  <eric@webkit.org>
-
-        new-run-webkit-tests crashes on Apple's Windows port when trying to launch Apache
-        https://bugs.webkit.org/show_bug.cgi?id=64533
-
-        Reviewed by Adam Roben.
-
-        Blind removal of Chromium-specific code (now that Chromium does not use this file).
-
-        * Scripts/webkitpy/layout_tests/servers/apache_http_server.py:
-
-2011-07-15  Adam Roben  <aroben@apple.com>
-
-        Make TestFailures's list of possibly-flaky tests not so tall
-
-        Fixes <http://webkit.org/b/64618> TestFailures page's list of flaky tests takes up way too
-        much room
-
-        Reviewed by Daniel Bates.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestFailures.css:
-        Removed a no-longer-used .flakiness-example-separator selector.
-
-        (#failure-history > li):
-        (#possibly-flaky-tests > li):
-        (#failure-history > li, #possibly-flaky-tests > li):
-        Use a lot less padding for the possibly-flaky tests.
-
-2011-07-15  Tony Chang  <tony@chromium.org>
-
-        [chromium] land linux selection color layout test
-        https://bugs.webkit.org/show_bug.cgi?id=64631
-
-        Reviewed by Ojan Vafai.
-
-        I had removed this code in r76620 because I thought it wasn't used.
-        Turns out there was a layout test in the chromium tree that never
-        got migrated that used it.  Re-add the code and land the layout
-        test (I will remove it from the chromium tree soon).
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::forceRedSelectionColors):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-
-2011-07-15  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Revert http://trac.webkit.org/changeset/91091, since Python 2.5
-        does not support enumerate() start argument.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Reverted.
-
-2011-07-15  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Clean up test_expectations.py after refactorings.
-        https://bugs.webkit.org/show_bug.cgi?id=64620
-
-        * Renamed all variables holding TestExpectationLine to expectation_line to avoid confusion with
-          its sub-part, the actual expectation.
-        * Renamed all references to options to modifier to eliminate dual terminology.
-        * Made a bunch of parser constants and changed all callsites to use them.
-        * Various other minor clean-ups.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Cleaned up stuff.
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py: Changed callsites after cleanup.
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py: Ditto.
-
-2011-07-15  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Move expectation parsing code to TestExpectationParser.
-        https://bugs.webkit.org/show_bug.cgi?id=64605
-
-        This is a somewhat mechanical move, with two interesting bits:
-        
-        1) TestExpectationParser.parse methods renamed to tokenize, to better
-        reflect what they do
-
-        2) TestExpectationLine now carries all of its info, from tokens to parsed data,
-        and even the list of tests that it matches (a line may refer to more than one test).
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Moved parsing-related TestExpectaions methods
-            to TestExpectationParser, added more members to TestExpectationLine to carry parsed info, renamed existing parse methods
-            to "tokenize", changed callsites to use new code.
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py: Changed unit tests to reflect renames.
-
-2011-07-15  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Switch to use Python enumerate function to enumerate line numbers.
-        https://bugs.webkit.org/show_bug.cgi?id=64602
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Changed to use enumerate.
-
-2011-07-15  Martin Robinson  <mrobinson@igalia.com>
-
-        Build fixes for WebKit2. Ensure that all generated sources are
-        on nodist primaries, that they are on forward declared variables
-        so that BUILT_SOURCES is calculated properly and that zlib is 
-        included during linking (for WOFF support).
-
-        * WebKitTestRunner/GNUmakefile.am:
-
-2011-07-15  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Store error and warning information on TestExpectationLine.
-        https://bugs.webkit.org/show_bug.cgi?id=64565
-
-        Keeping errors and warnings on the TestExpectationLine instance allows us to decouple storing errors
-        from various parsing and validation mechanisms and have more flexibility in reporting and understanding the origin of the errors.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Added TestExpectationLine.warnings list to keep track of non-fatal errors,
-            converted the code to add errors and warnings to corresponding TestExpectationLine instances, removed the code that used to store
-            this info on TestExpectations. In the process, had to refactor ModifierMatcher a bit to take in a TestExpdectationLine instance.
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py: Changed ModifierMatcher callsite.
-
-2011-07-15  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Plumb the use of TestExpectationLine deeper, clean up.
-        https://bugs.webkit.org/show_bug.cgi?id=64559
-
-        Instead of carrying various bits of TestExpectationLine, plumb it down to its consumers,
-        also cleaning up names and remove an unused TestExpectations._get_options_list member.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-
-2011-07-15  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Remove the notion of TestExpectationLine.valid, start storing parsing errors in expectations themselves.
-        https://bugs.webkit.org/show_bug.cgi?id=64554
-
-        This moves us toward the world where errors are collected on the expectations, which allows us to
-        easily enumerate them, keep association with the point of origin, and freely pass TestExpectationLine instances around.
-
-        Also eliminate the validator idea, since validation is a context-dependent concept and has to be decoupled from initial
-        parsing.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Removed TestExpectation.valid, validator,
-            changed TestExpectationParser to collect errors in TestExpectationLine, refactored surrounding code.
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py: Changed tests to accommodate changes.
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py: Ditto.
-
-2011-07-15  Adam Roben  <aroben@apple.com>
-
-        Rename TestFailureBugForm to FailingTestsBugForm
-
-        The new name will match better with a forthcoming FlakyTestBugForm class.
-
-        Fixes <http://webkit.org/b/64598> TestFailures page's TestFailureBugForm class has a bad
-        name
-
-        Reviewed by Daniel Bates.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FailingTestsBugForm.js: Renamed from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestFailureBugForm.js.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FailingTestsBugForm_unittests.js: Renamed from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestFailureBugForm_unittests.js.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html:
-        Updated for renames.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/index.html: Ditto, and
-        reordered <script>s to put files which others depend on for parsing first.
-
-2011-07-15  Adam Barth  <abarth@webkit.org>
-
-        NRWT stores the Chromium revision number in full_results.json
-        https://bugs.webkit.org/show_bug.cgi?id=64586
-
-        I have no earthly idea how to test this change.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-
-2011-07-14  Ojan Vafai  <ojan@chromium.org>
-
-        fix remaining style issues in the static-dashboards directory
-        https://bugs.webkit.org/show_bug.cgi?id=64561
-
-        Reviewed by Adam Barth.
-
-        * TestResultServer/static-dashboards/aggregate_results.html:
-        * TestResultServer/static-dashboards/builders.js:
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-        * TestResultServer/static-dashboards/timeline_explorer.html:
-        * TestResultServer/static-dashboards/treemap.html:
-
-2011-07-14  Yuta Kitamura  <yutak@chromium.org>
-
-        WebSocket: Introduce pywebsocket-0.6b2
-        https://bugs.webkit.org/show_bug.cgi?id=64534
-
-        Reviewed by Kent Tamura.
-
-        * Scripts/webkitpy/thirdparty/__init__.py:
-
-2011-07-14  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Introduce TestExpectationsModel, split out of TestExpectations.
-        https://bugs.webkit.org/show_bug.cgi?id=64531
-
-        This is a simple split-and-make-work refactoring, a first step among many.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Moved all model-related members
-            out of TestExpectations and into TestExpectationsModel.
-
-2011-07-14  Eric Seidel  <eric@webkit.org>
-
-        Move webkitpy off of loose mocks
-        https://bugs.webkit.org/show_bug.cgi?id=64508
-
-        Unreviewed.  Fixing a test which fails under test-webkitpy --all (but not in a normal run).
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-
-2011-07-14  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should have a "rebaseline" button
-        https://bugs.webkit.org/show_bug.cgi?id=64446
-
-        Reviewed by Ojan Vafai.
-
-        This patch adds a basic Rebaseline button that copies the baselines
-        displayed in the results pane into the appropriate directory in your
-        working copy.
-
-        There are two main limitations:
-
-        1) There is no UI for actually committing the baselines.
-
-        2) The baselines are not optimized for redundancy (meaning you can have
-           identical baselines in both chromium-mac and chromium-win).
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-            - Turns out we need to create the directory for the baseline if it doesn't exist yet.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/checkout.js:
-            - Add an programatic API to call the server.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/index.html:
-            - Add the rebaseline button itself.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.css:
-            - Change the CSS so that the Rebaseline and Close buttons can
-              appear in the normal order in the DOM.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.js:
-            - Bind the event and translate the parameters.
-            - Hide/show the rebaseline button, as appropriate.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results.js:
-            - Add some helpful utility functions for manipulating failure types.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results_unittests.js:
-
-2011-07-14  Ryosuke Niwa  <rniwa@webkit.org>
-
-        REGRESSION: webkit-patch roll-chromium-deps is broken
-        https://bugs.webkit.org/show_bug.cgi?id=64568
-
-        Reviewed by Dirk Pranke
-
-        Use _filesystem.join.
-
-        * Scripts/webkitpy/common/checkout/checkout.py:
-        * Scripts/webkitpy/common/checkout/checkout_unittests.py:
-
-2011-07-14  Noam Rosenthal  <noam.rosenthal@nokia.com>
-
-        Adding myself to the reviewers list; No review needed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-07-14  Adam Roben  <aroben@apple.com>
-
-        Don't use Element.prototype.classList in TestFailures
-
-        Safari 5 doesn't support it.
-
-        Fixes <http://webkit.org/b/64550> Can't expand flaky tests on TestFailures page in Safari 5
-
-        Reviewed by Daniel Bates.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Utilities.js:
-        (Element.prototype.hasStyleClass):
-        (Element.prototype.addStyleClass):
-        (Element.prototype.removeStyleClass):
-        (Element.prototype.toggleStyleClass):
-        Added these helper functions which simulate classList functionality.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Utilities_unittests.js:
-        Added. Tests for the above.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype._domForPossiblyFlakyTests): Changed to use
-        toggleStyleClass/hasStyleClass instead of classList.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html:
-        Added Utilities_unittests.js, and reordered the tested files to be in
-        roughly dependency order (i.e., the lowest-level files are imported
-        and tested first).
-
-2011-07-14  Eric Seidel  <eric@webkit.org>
-
-        NRWT doesn't store the svn revision in full_results.json on chromium-win
-        https://bugs.webkit.org/show_bug.cgi?id=64492
-
-        Unreviewed.  Just fixing my test-webkitpy regression.
-
-        Fix the unit tests.  Unfortunately scm does not use a filesystem
-        object so we can't control the result of detect_scm_system.
-        When detect_scm_system would fail, we would log, which would
-        cause all passing_run integration tests to fail.
-
-        * Scripts/webkitpy/common/checkout/scm/scm.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-
-2011-07-14  Eric Seidel  <eric@webkit.org>
-
-        NRWT doesn't store the svn revision in full_results.json on chromium-win
-        https://bugs.webkit.org/show_bug.cgi?id=64492
-
-        Reviewed by Ojan Vafai.
-
-        This should fix the bug.  Unfortunately this code is currently
-        impossible to test since it's impossible to mock detect_scm_system at the
-        moment.  I started re-writing scm.detection.py to be mockable, but decided that
-        was best left for another day.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-
-2011-07-14  Ojan Vafai  <ojan@chromium.org>
-
-        fix coding style of dashboard_base.js
-        https://bugs.webkit.org/show_bug.cgi?id=64545
-
-        Reviewed by Adam Roben.
-
-        The code changes to the files other than dashboard_base.js
-        are just fallout from renaming globals in dashboard_base.js.
-
-        * TestResultServer/static-dashboards/aggregate_results.html:
-        * TestResultServer/static-dashboards/builders.js:
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
-        * TestResultServer/static-dashboards/timeline_explorer.html:
-        * TestResultServer/static-dashboards/treemap.html:
-
-2011-07-14  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed. Fix WebKit2 GTK build after r90953.
-
-        * WebKitTestRunner/GNUmakefile.am:
-
-2011-07-14  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic results pane should be more discoverable
-        https://bugs.webkit.org/show_bug.cgi?id=64513
-
-        Reviewed by Eric Seidel.
-
-        This patch causes us to trigger the results pane on mouse clicks
-        instead of mousein.  Also, handle the case of no results details more
-        elegantly.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.css:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.js:
-            - Change the binding to "click".
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results.js:
-            - Handle the "no results URLs" case explicitly instead of never
-              calling the callback.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results_unittests.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui.js:
-            - Show a message when there are no result details to show.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui_unittests.js:
-
-2011-07-14  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should badge TIMEOUT failures
-        https://bugs.webkit.org/show_bug.cgi?id=64435
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.css:
-        (.regression .what a[draggable].TIMEOUT::before):
-            - Add TIMEOUT.
-
-2011-07-14  Adam Barth  <abarth@webkit.org>
-
-        Fix Python exception blocking the commit-queue.
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-
-2011-07-13  Eric Seidel  <eric@webkit.org>
-
-        Move webkitpy off of loose mocks
-        https://bugs.webkit.org/show_bug.cgi?id=64508
-
-        Reviewed by Adam Barth.
-
-        Using Mock has caused us more pain than help.
-        It's possible that there was a cleaner way to use it
-        (maybe Mock(class) instead of inheriting from it?).
-        But for now, I've removed all uses of Mock from mocktool.py.
-
-        I also moved run_command into the only 3 files which call it
-        instead of leaving the deprecated method in executive.py.
-
-        I changed various direct calls to os.* to use filesystem instead.
-
-        * Scripts/webkitpy/common/checkout/checkout.py:
-        * Scripts/webkitpy/common/checkout/checkout_unittest.py:
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        * Scripts/webkitpy/common/checkout/scm/scm.py:
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/cleanworkingdirectory_unittest.py:
-        * Scripts/webkitpy/tool/steps/ensurelocalcommitifneeded.py:
-
-2011-07-13  Eric Seidel  <eric@webkit.org>
-
-        NRWT doesn't store the svn revision in full_results.json on chromium-win
-        https://bugs.webkit.org/show_bug.cgi?id=64492
-
-        Reviewed by Adam Barth.
-
-        Add a warning message in the revision='' case to help us diagnose
-        what's going wrong on the bot.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-
-2011-07-13  Dirk Pranke  <dpranke@chromium.org>
-
-        new-run-webkit-tests: print baseline search path as part of config output
-        https://bugs.webkit.org/show_bug.cgi?id=64499
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-
-2011-07-13  Adam Barth  <abarth@webkit.org>
-
-        gardening server should have an API for parsing changelogs
-        https://bugs.webkit.org/show_bug.cgi?id=64495
-
-        Reviewed by Eric Seidel.
-
-        This patch exposes much of the same information from CommitInfo in a
-        dictionary form, which is easier to send over-the-wire as JSON to the
-        frontend.
-
-        * Scripts/webkitpy/common/checkout/checkout.py:
-        * Scripts/webkitpy/common/checkout/checkout_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-        * Scripts/webkitpy/tool/servers/reflectionhandler.py:
-
-2011-07-13  Eric Seidel  <eric@webkit.org>
-
-        REGRESSION: GitTestWithMock.test_create_patch fails
-        https://bugs.webkit.org/show_bug.cgi?id=62945
-
-        Reviewed by Daniel Bates.
-
-        I was not able to reproduce the exact failure seen in the bug,
-        however this test was failing on my machine for other reasons.
-
-        I went through and did an audit of our run_command usage, it's
-        entirely in scm classes after this change.  (Not surprising given
-        that scm.py was the second file ever created in webkit.py.)
-
-        The real bug I'm fixing here is that we were setting executive.should_log
-        when the value had changed to executive._should_log.  Now we set the right one
-        and the test works again.
-
-        * Scripts/webkitpy/common/checkout/checkout.py:
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        * Scripts/webkitpy/common/checkout/scm/scm.py:
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-
-2011-07-13  Ilya Sherman  <isherman@chromium.org>
-
-        Fix WTF header guard style check
-        https://bugs.webkit.org/show_bug.cgi?id=64488
-
-        Reviewed by David Levin.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Verify that we don't *always* suggest "WTF_" as a prefix
-
-2011-07-13  Ojan Vafai  <ojan@chromium.org>
-
-        bring flakiness_dashboard.html closer to webkit style
-        https://bugs.webkit.org/show_bug.cgi?id=64477
-
-        Reviewed by Adam Barth.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        Fix bad variable name that would hit only when running the tests.
-        * TestResultServer/static-dashboards/flakiness_dashboard.html:
-        No code/logic changes. All moving/removing brackets, indents and moving things
-        to one line.
-
-2011-07-13  Xan Lopez  <xlopez@igalia.com>
-
-        [GTK] Fix distcheck
-
-        Reviewed by Martin Robinson.
-
-        * WebKitTestRunner/GNUmakefile.am: mark built sources as nodist.
-
-2011-07-13  Joseph Pecoraro  <joepeck@webkit.org>
-
-        Unreviewed fix. Add a "\n" to a printf that somehow got lost.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::dumpApplicationCacheQuota):
-
-2011-07-13  Joseph Pecoraro  <joepeck@webkit.org>
-
-        ApplicationCache Quota Output is Flakey
-        https://bugs.webkit.org/show_bug.cgi?id=64410
-
-        Reviewed by Alexey Proskuryakov.
-
-        Unify the delegate logging for reaching application cache
-        quotas. Truncate the space needed to the nearest 10000
-        for less flakey test output. This also better supports
-        printing NSUInteger on non-64 bit systems by casting to
-        an unsigned long.
-
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:exceededApplicationCacheOriginQuotaForSecurityOrigin:totalSpaceNeeded:]):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::dumpApplicationCacheQuota):
-
-2011-07-13  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Remove unused TestExpectations._overrides.
-        https://bugs.webkit.org/show_bug.cgi?id=64470
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Removed unused member.
-
-2011-07-13  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Introduce TestExpectationSerializer.list_to_string.
-        https://bugs.webkit.org/show_bug.cgi?id=64462
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Added list_to_string and change the relevant callsite to use it.
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py: Added tests for it.
-
-2011-07-13  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Consolidate expectations parsing code.
-        https://bugs.webkit.org/show_bug.cgi?id=64460
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Folded TestExpectationParser._split_expectation_string into TestExpectationParser.parse.
-
-2011-07-12  Brent Fulgham  <bfulgham@webkit.org>
-
-        Standardize WinCairo conditionalized code under PLATFORM macro.
-        https://bugs.webkit.org/show_bug.cgi?id=64377
-
-        Reviewed by Maciej Stachowiak.
-
-        Update compile-time conditions that had previously used #ifdef
-        of WIN_CAIRO to consistently use PLATFORM(WIN_CAIRO).
-
-        * DumpRenderTree/config.h: Switch to PLATFORM(WIN_CAIRO)
-        * DumpRenderTree/win/DumpRenderTreeCairo.vsprops: Remove redundant
-          define of WIN_CAIRO=1.
-        * DumpRenderTree/win/DumpRenderTreeDebugCairoCFLite.vsprops: Add
-          WinCairo.vsprops to set (to match Release build).
-
-2011-07-13  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Eliminate TestExpectationsFile.
-        https://bugs.webkit.org/show_bug.cgi?id=64458
-
-        Turns out, we can just use a Python list.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Folded TestExpectationsFile.append into TestExpectationParser.parse_list,
-            removed TestExpectationsFile.
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py: Moved tests to better reflect new names, removed iterator test,
-            since there's no more custom iterator machinery.
-
-2011-07-13  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, added my other email addresses.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-07-13  Adam Barth  <abarth@webkit.org>
-
-        Folks should only be listed once.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-07-13  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, adding myself as Reviewer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-07-13  Adam Barth  <abarth@webkit.org>
-
-        Fix flickering bug introduced by my previous patch.  I forgot to change
-        the name of the class everywhere.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.js:
-
-2011-07-12  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] media/media-blocked-by-willsendrequest.html fails
-        https://bugs.webkit.org/show_bug.cgi?id=63699
-
-        Reviewed by Martin Robinson.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (willSendRequestCallback): Abort the request if explicitely asked
-        by the LayoutTestController's willSendRequestReturnsNull() function.
-
-2011-07-13  Adam Barth  <abarth@webkit.org>
-
-        Remove "Dismiss" button from garden-o-matic butterbar
-        https://bugs.webkit.org/show_bug.cgi?id=64443
-
-        Reviewed by Dimitri Glazkov.
-
-        We don't have any persistent butter bar messages yet, so the dismiss
-        button is premature (and fairly heavy, visually).
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/index.html:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.js:
-
-2011-07-13  Adam Barth  <abarth@webkit.org>
-
-        Refine garden-o-matic status pane
-        https://bugs.webkit.org/show_bug.cgi?id=64442
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch makes two improvements to the status pane:
-
-        1) We only query the server for failure types that we're expecting.
-           This dramatically reduces the number of HTTP requests, making
-           loading the status pane faster.
-
-        2) The status pane now displays which test and which builder it is
-           showing results for.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/config.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/index.html:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.css:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results_unittests.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui.js:
-
-2011-07-13  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should show test results
-        https://bugs.webkit.org/show_bug.cgi?id=64440
-
-        Reviewed by Adam Roben.
-
-        This patch introduces the results detail pane, which appears at the
-        bottom of the window and contains test results from the bots.
-        Currently, you can activate the pane by mousing over one of the builder
-        names associated with a failing test.
-
-        This is just a first iteration of the UI.  There's no way to resize or
-        zoom in on elements of the details pane, and images likely aren't sized
-        correctly, but it's a place to start.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/config.js:
-            - Add constants for our data attributes so we don't typo them!
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/index.html:
-            - Add DOM structure for the details pane.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.css:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.js:
-            - Bind events for showing and hiding the details pane.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results.js:
-            - Reduce the number of result types that we query for to avoid
-              overfilling the details pane.  We'll probably need another
-              solution here in the long-term.  For example, we could use tabs
-              to pack more results into the pane.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results_unittests.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/run-unittests.html:
-            - Now that we're using the config package during testing, we need
-              to include it in the testing HTML.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui_unittests.js:
-            - Change the DOM structure of the results detail to make it fit
-              nicely in the details pane (rather than flowing freely in the
-              body, as it did before).
-
-2011-07-13  Adam Roben  <aroben@apple.com>
-
-        Make TestFailures show every time a possibly-flaky test failed, but hide it by default
-
-        It's useful to be able to see every time a flaky test failed to see whether it failed the
-        same way every time. But doing so takes a lot of space, so the list of failures is now
-        collapsed by default and can be revealed using a disclosure triangle.
-
-        Fixes <http://webkit.org/b/64455> TestFailures page doesn't show as much information for
-        flaky tests as I would like, even though the page is already so long
-
-        Reviewed by Dimitri Glazkov.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FlakyLayoutTestDetector.js:
-        (FlakyLayoutTestDetector.prototype.allFailures): Replaced flakinessExamples with this
-        function. Now returns all failures for the given test.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FlakyLayoutTestDetector_unittests.js:
-        Added. This just contains some simple tests of the FlakyLayoutTestDetector class. We'll add
-        more over time.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/LayoutTestHistoryAnalyzer.js:
-        (LayoutTestHistoryAnalyzer.prototype.start): Updated the documentation comment to reflect
-        that we no longer return passing builds for possibly-flaky tests.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestFailures.css:
-        (.existing-bugs-list, .suspect-revisions-list, .flakiness-examples-list): Make the list of
-        flakiness examples small, too, since it can get quite long.
-
-        (.disclosure-triangle):
-        (.expanded > .disclosure-triangle):
-        Simple styles for the disclosure triangle.
-
-        (.flakiness-examples-list): Collapse the list by default.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype._displayBuilder): Pass the total number of builds analyzed to
-        _domForPossiblyFlakyTests.
-        (ViewController.prototype._domForPossiblyFlakyTests): Put a disclosure triangle to the left
-        of each test name, and the number of failures to the right. When the disclosure triangle is
-        clicked for the first time, we build up the list of failures and expand the element. After
-        that we just collapse or expand the element on subsequent clicks.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html:
-        Pulled in new tests.
-
-2011-07-13  Adam Roben  <aroben@apple.com>
-        
-        Teach TestFailures to understand NRWT's output when it exits early due to too many failures
-
-        Fixes <http://webkit.org/b/64456> TestFailures page reports way too many failures when NRWT
-        exits early
-
-        Reviewed by Dimitri Glazkov.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder.js:
-        (Builder.prototype.getNumberOfFailingTests): Relaxed the "Exiting early" test not to require
-        it to be at the beginning of the line, since NRWT prints a bunch of junk earlier in the
-        line. Tightened up the regex that's used to parse the number of failing tests to require the
-        leading number to be followed by whitespace so that we won't parse the "2011" in
-        "2011-07-13" as a number of failures.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder_unittests.js:
-        Added a test for the above.
-
-2011-07-12  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Extract model-like TestExpectationLine and TestExpectationFile from TestExpectations.
-        https://bugs.webkit.org/show_bug.cgi?id=64386
-
-        This is the first step in converting TestExpectations to a real model.
-        * TestExpectationsLine represents a line in the test_expectations.txt file, and
-        * TestExpectationsFile represents the file, which is a collection of lines.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-
-2011-07-13  Xan Lopez  <xlopez@igalia.com>
-
-        [GTK] Do not grab focus too early in DRT.
-
-        Reviewed by Gustavo Noronha.
-
-        It causes a layout to happen and a progress signal to be emitted
-        since r90900, but at this point we don't have a
-        LayoutTestController object and we'll eventually crash. Since we
-        already grab focus at the beginning of runTest() this is
-        redundant, so get rid of it to fix the crash.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (main): remove call to grab_focus
-
-2011-07-13  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r90893 and r90894.
-        http://trac.webkit.org/changeset/90893
-        http://trac.webkit.org/changeset/90894
-        https://bugs.webkit.org/show_bug.cgi?id=64441
-
-        NRWT still doesn't work on qt-mac platform (Requested by Ossy
-        on #webkit).
-
-        * Scripts/run-webkit-tests:
-        (useNewRunWebKitTests):
-
-2011-07-13  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] NRWT should pick up the right httpd config file
-        https://bugs.webkit.org/show_bug.cgi?id=64086
-
-        * Scripts/run-webkit-tests: Enable NRWT on qt-mac platform after r90810.
-        (useNewRunWebKitTests):
-
-2011-07-12  Mark Rowe  <mrowe@apple.com>
-
-        Fix the 32-bit build.
-
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:exceededApplicationCacheOriginQuotaForSecurityOrigin:totalSpaceNeeded:]):
-        Cast the NSUInteger value to unsigned long to match the format specifier.
-
-2011-07-12  Adam Barth  <abarth@webkit.org>
-
-        Improve garden-o-matic UI when the bots fail to report revision numbers
-        https://bugs.webkit.org/show_bug.cgi?id=64427
-
-        Reviewed by Dimitri Glazkov.
-
-        At least Win (dbg)(2) seems to fail to report the SVN revision number
-        in full_results.json.  This patch makes garden-o-matic more robust to
-        missing revision numbers.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results_unittests.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui_unittests.js:
-
-2011-07-12  Adam Barth  <abarth@webkit.org>
-
-        Adjust garden-o-matic layout to use fewer lines
-        https://bugs.webkit.org/show_bug.cgi?id=64422
-
-        Reviewed by Ojan Vafai.
-
-        This patch effectively merges the test name line with the list of
-        builders on which the test fails.  Each test failure now occupies two
-        lines instead of three.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.css:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui.js:
-
-2011-07-12  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should label tests failures of new tests as such
-        https://bugs.webkit.org/show_bug.cgi?id=64421
-
-        Reviewed by Ojan Vafai.
-
-        Also, we shouldn't dim failures of new tests, even if we've only seen
-        them once because they're likely to be real problems that need
-        attention.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/base_unittests.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/checkout.js: Added.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/checkout_unittests.js: Added.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/index.html:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.css:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results_unittests.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/run-unittests.html:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui_unittests.js:
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-
-2011-07-12  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should display how many times we've seen a failure
-        https://bugs.webkit.org/show_bug.cgi?id=64417
-
-        Reviewed by Ojan Vafai.
-
-        This patch adds some UI to display how many times we've seen a given
-        failure, which can be helpful for determining whether that failure is a
-        real failure or a flaky test.
-
-        When a failure has only been seen once (i.e., only a single run on a
-        single bot), we set the opacity of to 50% to avoid distracting the
-        gardener.
-
-        This patch also refactors the failure walker to have a simpler API
-        internally by moving from an object-oriented paradigm to a functional
-        paradigm.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.css:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results_unittests.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui_unittests.js:
-
-2011-07-12  Chris Rogers  <crogers@google.com>
-
-        Enable Web Audio for chromium DRT
-        https://bugs.webkit.org/show_bug.cgi?id=64409
-
-        Reviewed by James Robinson.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-
-2011-07-12  Adam Barth  <abarth@webkit.org>
-
-        Tweak some UI in garden-o-matic now that the tree actually has a
-        failure and I can see what this all looks like.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.css:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui_unittests.js:
-
-2011-07-12  Joseph Pecoraro  <joepeck@webkit.org>
-
-        Unreviewed. Skipping a few tests which fail due to differing output
-           Unit tests shouldn't be hitting the disk anyway.  It's possible Config should move off of Port and onto Tool/Host directly.
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        * Scripts/webkitpy/layout_tests/port/gtk_unittest.py: Added.
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-07-12  Adam Roben  <aroben@apple.com>
-
-        Teach TestFailures to recognize when run-webkit-tests gets killed by buildbot
-
-        Fixes <http://webkit.org/b/64358> TestFailures page thinks all tests passed in
-        http://build.webkit.org/builders/Windows%207%20Release%20(Tests)/builds/14672
-
-        Reviewed by Daniel Bates.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder.js:
-        (Builder.prototype.getNumberOfFailingTests): If run-webkit-tests exited with a non-zero
-        exit status but we didn't find any failure counts, assume that there was some error that
-        caused run-webkit-tests to die early (like being killed by buildbot due to a timeout).
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder_unittests.js:
-        Added a new test that shows that we get a failingTestCount of -1 when run-webkit-tests dies
-        early.
-        (runGetNumberOfFailingTestsTest): Moved most code here from the only pre-existing test in this
-        file.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/LayoutTestResultsLoader.js:
-        (LayoutTestResultsLoader.prototype.start): Bump the cache number so old cached data that was
-        tainted by the bug fixed in this patch will be evicted.
-
-2011-07-12  Adam Barth  <abarth@webkit.org>
-
-        cr-linux-ews complains about tests that aren't actually failing
-        https://bugs.webkit.org/show_bug.cgi?id=64367
-
-        The underlying problem here is that full_results.json doesn't have
-        enough information to determine whether a given test result was
-        expected because whether an actual result is expected depends on
-        whether full_results.json was generated duing a test run that included
-        pixel tests.
-
-        The right long-term solution is to make full_results.json a complete
-        description of what happened durning a test run.  In this patch
-        however, to stop the spam, this patch makes the jsonresultsparser
-        ignore pixel failures.
-
-        (I'm landing this patch unreviewed in order to stop the bots from
-        spamming.  I'll happily address any review comments in a follow-up
-        patch.)
-
-        * Scripts/webkitpy/common/net/resultsjsonparser.py:
-        * Scripts/webkitpy/common/net/resultsjsonparser_unittest.py:
-
-2011-07-12  Adam Barth  <abarth@webkit.org>
-
-        Re-work garden-o-matic UI to begin to look like the mocks
-        https://bugs.webkit.org/show_bug.cgi?id=64334
-
-        Reviewed by Dimitri Glazkov.
-
-        This patch changes how we display failures to be more like the mock the
-        dglazkov made. We now can display the same information much more
-        compactly.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/base.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/base_unittests.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/index.html:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.css: Added.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results_unittests.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui_unittests.js:
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-
-2011-07-11  Adam Roben  <aroben@apple.com>
-
-        Extract TestFailures's bug-filing code into two new classes
-
-        Fixes <http://webkit.org/b/64300> TestFailures page's new-bug-filing code is a mess!
-
-        Reviewed by Darin Adler and Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Buildbot.js:
-        (Buildbot.prototype.resultsDirectoryURL): Changed to return a URI-encoded URL. Otherwise the
-        URL isn't valid (and it's harder to mock this function).
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Buildbot_unittests.js:
-        Added. Just tests the above change (for now).
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder_unittests.js:
-        Added a license header, enclosed everything in a closure to avoid polluting the global
-        namespace, changed the test name to actually describe the passing condition, and replaced
-        uses of equals() with equal(). (The latter is the actual name of the function, and matches
-        deepEqual, etc.)
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/NewBugForm.js: Added.
-        (NewBugForm): This class knows how to construct a <form> used for filing new bugs in
-        Bugzilla based on some parameters.
-        (NewBugForm.prototype.domElement): Creates and returns the <form> element. Code came from
-        ViewController.prototype._domForNewAndExistingBugs.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/NewBugForm_unittests.js:
-        Added. Tests the above code.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestFailureBugForm.js: Added.
-        (TestFailureBugForm): This class knows how to construct a <form> element used for filing new
-        bugs specifically about test failures. Code came from
-        ViewController.prototype._domForNewAndExistingBugs.
-        (TestFailureBugForm.prototype.domElement): Slightly customizes the <form> element returned
-        by NewBugForm.
-        (TestFailureBugForm.prototype._computeOperatingSystem):
-        (TestFailureBugForm.prototype._computePlatform):
-        (TestFailureBugForm.prototype._createBugTitle):
-        (TestFailureBugForm.prototype._failingResultsHTMLURL):
-        (TestFailureBugForm.prototype._failingRevision):
-        (TestFailureBugForm.prototype._passingRevision):
-        (TestFailureBugForm.prototype._regressionRangeString):
-        Code came from ViewController.prototype._domForNewAndExistingBugs. I broke it out into
-        separate functions to break up the rat's nest a bit.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestFailureBugForm_unittests.js:
-        Added. Tests the above code.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype._domForNewAndExistingBugs): Moved code from here to
-        TestFailureBugForm/NewBugForm, and changed this code to use a TestFailureBugForm.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/index.html: Pull in
-        NewBugForm/TestFailureBugForm.js.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html:
-        Added new tests and required files.
-
-2011-07-12  Adam Roben  <aroben@apple.com>
-
-        Test that no intermediate WTF::Strings are created when concatenating with string literals
-
-        Test for <http://webkit.org/b/63330> Concatenating string literals and WTF::Strings using
-        operator+ is suboptimal
-
-        Reviewed by Darin Adler.
-
-        * TestWebKitAPI/Tests/WTF/StringOperators.cpp: Added.
-        (TestWebKitAPI::TEST): Test that a bunch of different string concatenation expressions don't
-        create any intermediate WTF::Strings while they're being evaluated.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        Added new file.
-
-2011-07-12  Eric Seidel  <eric@webkit.org>
-
-        [Qt] NRWT should pick up the right httpd config file
-        https://bugs.webkit.org/show_bug.cgi?id=64086
-
-        Reviewed by Adam Barth.
-
-        This is more fall-out from the Port class inappropriately encapsulating
-        both platform and port knowledge.  We need to split out some of this
-        platform knowledge into a separate class which can be better shared
-        between ports.
-
-        The fix was to move all the _path_to_apache_config_file logic down
-        into the WebKitPort baseclass so that all of the ports can find the
-        right apache config file, regardless of what platform they may be running on.
-
-        I did not move this down into base.Port (even though I considered it).
-        Chromium duplicates some of this logic, but since they have separate
-        subclasses for each port-OS combination (e.g. ChromiumMac, ChromiumWin)
-        they wouldn't notice the change.  Eventually we'll move this logic
-        out of Port entirely, and then it will be shared by all ports.
-
-        I also cleaned up the http-config logic for ORWT while I was there,
-        although since we're killing that code, I'm happy to revert that part
-        of the change if changing it is viewed as needlessly risky.
-
-        During this cleanup, I noticed that no ports use the "default" httpd.conf
-        which is left over from Mac OS X Tiger (and old linux distros) which used
-        Apache 1.3.  I've removed httpd.conf (and associated support in ORWT) since
-        we no longer support any ports which use this httpd.conf.
-
-        * Scripts/webkitperl/httpd.pm:
-        (getHTTPDConfigPathForTestDirectory):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        * Scripts/webkitpy/layout_tests/servers/apache_http_server.py:
-
-2011-07-11  Hironori Bono  <hbono@chromium.org>
-
-        Reviewed by Adam Roben.
-
-        Implement layoutTestController.setTextDirection for WebKit2 and Windows.
-        https://bugs.webkit.org/show_bug.cgi?id=61931
-
-        This change implements layoutTextController.setTextDirection for WebKit2
-        and Windows so we can run a layout test added by r87770 on them. Each
-        implementation adds a wrapper function for Editor::setBaseWritingDirection()
-        so LayoutTestController can call it.
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setTextDirection): Implemented the binding function
-        for layoutTestController.setTextDirection (Windows).
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        Added a binding function for layoutTestController.setTextDirection (WebKit2).
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp: ditto.
-        (WTR::LayoutTestController::setTextDirection):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h: ditto.
-
-2011-07-11  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] ImageDiff: Make sure gEcoreEvas is destroyed at the right time.
-        https://bugs.webkit.org/show_bug.cgi?id=64293
-
-        Reviewed by Kent Tamura.
-
-        gEcoreEvas was being destroyed after shutdownEfl() was called, so the
-        call to ecore_evas_free() failed.
-
-        We now shut it down manually before shutdownEfl() is called.
-
-        * DumpRenderTree/efl/ImageDiff.cpp:
-        (main): Destroy gEcoreEvas before shutting down the EFL.
-
-2011-07-11  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Make Chromium Mac and Linux tests bot core builders
-        https://bugs.webkit.org/show_bug.cgi?id=63196
-
-        Reviewed by Adam Barth.
-
-        Added Chromium Mac and Linux Release Tests bots core builders.
-
-        Also rearranged the order of bots so that test bots show up right next to
-        respective builders.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-
-2011-07-11  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] DRT: Add code related to font management.
-        https://bugs.webkit.org/show_bug.cgi?id=63989
-
-        Reviewed by Kent Tamura.
-
-        The added files are responsible for managing fontconfig and adding the
-        fonts required by some layout tests to fontconfig's path.
-
-        * DumpRenderTree/efl/FontManagement.cpp: Added.
-        (getFontDirectories):
-        (getFontFiles):
-        (addFontDirectories):
-        (addFontFiles):
-        (addFontsToEnvironment):
-        * DumpRenderTree/efl/FontManagement.h: Added.
-
-2011-07-08  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: linting fixes
-        https://bugs.webkit.org/show_bug.cgi?id=64225
-
-        Reviewed by Eric Siedel.
-
-        Miscellaneous linting fixes. The most notable change is that
-        we add public attributes for user, executive, filesystem, and
-        options on the Port object, so we don't have to refer to the
-        "protected" versions all over the place".
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        * Scripts/webkitpy/layout_tests/controllers/message_broker.py:
-        * Scripts/webkitpy/layout_tests/controllers/message_broker_unittest.py:
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-07-11  Ryosuke Niwa  <rniwa@webkit.org>
-
-        webkit-patch roll-chromium-deps no longer works
-        https://bugs.webkit.org/show_bug.cgi?id=64324
-
-        Reviewed by James Robinson.
-
-        Lower the minimum commit message length to 10.
-
-        * Scripts/webkitpy/tool/steps/commit.py:
-
-2011-07-11  Alice Boxhall  <aboxhall@chromium.org>
-
-        Convert json_results_generator.py to output version 4 JSON.
-        https://bugs.webkit.org/show_bug.cgi?id=60869
-
-        Reviewed by Ojan Vafai.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator_unittest.py:
-
-2011-07-11  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] [NRWT] Pixel tests do not work
-        https://bugs.webkit.org/show_bug.cgi?id=64091
-
-        Reviewed by Eric Seidel.
-
-        Fix pixel test runs for GTK+ new-run-webkit-tests by exposing the
-        path to the ImageDiff binary.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py: Implement _path_to_image_diff.
-
-2011-07-11  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix hang on win32 in a multiprocessing test that shouldn't have been running.
-
-        Unreviewed, build fix.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-
-2011-07-11  Adam Roben  <aroben@apple.com>
-
-        Don't count leaks as test failures on TestFailures's front page
-
-        As a bonus, this patch adds our first unit test.
-
-        Fixes <http://webkit.org/b/64303> REGRESSION (r90489): TestFailures page says far more tests
-        are failing on the Leaks bot than actually are
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder.js:
-        (Builder.prototype.getNumberOfFailingTests): Exclude lines containing "leak" when summing
-        failure counts.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder_unittests.js:
-        Added. Contains a simple test to show that leaks aren't counted as test failures.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html:
-        Added. This is the test harness.
-
-2011-06-14  Mike Stegeman  <mrstegeman@gmail.com>
-
-        [GTK] Add API to allow setting local storage database path
-        https://bugs.webkit.org/show_bug.cgi?id=62091
-
-        Reviewed by Martin Robinson and Gustavo Noronha.
-
-        Expose the path of the localStorage databases through a setting
-        to allow HTML5 localStorage to be persistent. New setting is:
-        html5-local-storage-database-path
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-
-2011-07-11  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should be able to rebaseline tests
-        https://bugs.webkit.org/show_bug.cgi?id=64186
-
-        Reviewed by Eric Seidel.
-
-        This patch contains a simple HTTP server binding for the
-        rebaseline-test command.  The frontend will appear in another patch.
-
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-        * Scripts/webkitpy/tool/servers/reflectionhandler.py:
-
-2011-07-11  Adam Barth  <abarth@webkit.org>
-
-        Add some basic UI for showing regression ranges
-        https://bugs.webkit.org/show_bug.cgi?id=64243
-
-        Reviewed by Eric Seidel.
-
-        This UI is all temporary.  It exists mostly just to have some buttons
-        to click to exercise the code.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results_unittests.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui_unittests.js:
-
-2011-07-11  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should be able to determine which revisions caused a given failure
-        https://bugs.webkit.org/show_bug.cgi?id=64189
-
-        Reviewed by Adam Roben.
-
-        Walking the failure history looking for failures turns out to be
-        slightly tricky because the network requests are asynchronous.
-        Currently we do all the fetches serially and our cache is unbounded.
-        We'll probably optimize both those parameters eventually.
-
-        This patch also generalizes some functionality in the unit testing
-        framework to make testing this sort of code easier.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/base.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results_unittests.js:
-
-2011-07-11  Adam Barth  <abarth@webkit.org>
-
-        Add a webkit-patch command for rebaselining an individual test
-        https://bugs.webkit.org/show_bug.cgi?id=64246
-
-        Reviewed by Eric Seidel.
-
-        This patch introduces a command that's able to rebaseline a single
-        test.  Currently, the command works only with the build.chromium.org
-        buildbots, but extending it to work with the build.webkit.org bots
-        shouldn't be that hard.
-
-        A complete rebaseling tool should also include an "optimize baselines"
-        command (which moves/deletes baselines in order to reduce the number of
-        expected results files), but that will come in a future patch.
-
-        Really BuilderToPort should be merged into builders.py, but I'm going
-        to save that for a future patch as well.  (We need to stop shaving yaks
-        at some point.)
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-
-2011-07-11  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should be able to roll out patches
-        https://bugs.webkit.org/show_bug.cgi?id=64185
-
-        Reviewed by Eric Seidel.
-
-        This gardening server API is simply a binding to the rollout machinery
-        already present in webkit-patch.
-
-        * Scripts/webkitpy/tool/commands/gardenomatic.py:
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py: Added.
-
-2011-07-11  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt][Mac] Unreviewed fix after r90746.
-
-        * Scripts/run-webkit-tests:
-        (useNewRunWebKitTests): Really disable NRWT for qt-mac platform.
-
-2011-07-11  Adam Roben  <aroben@apple.com>
-
-        Teach TestFailures that ORWT's results.html file might be missing due to all tests passing
-
-        There are three reasons why we might fail to fetch ORWT's results.html:
-          - All tests passed, so no results.html was generated
-          - Some error during the test run caused results.html not to be generated (e.g., ORWT
-            timed out)
-          - Some network error occurred when fetching results.html
-
-        We were failing to account for the first possibility in some cases. For test runs before
-        r89610, we first check build.webkit.org/json to determine how many tests failed and whether
-        ORWT exited early due to too many failures; if all tests passed then we don't fetch
-        results.html at all. r89610 changed ORWT to put information in results.html about exiting
-        early due to too many failures, so we no longer needed to check build.webkit.org/json to get
-        that information, and in r89619 I changed TestFailures to do just that. But I forgot that we
-        still needed to check build.webkit.org/json to find out if all tests passed!
-
-        Now, for test runs after r89610, we check results.html first, and then check
-        build.webkit.org/json if we fail to fetch results.html. This lets us distinguish between all
-        tests passing and the error cases.
-
-        Fixes <http://webkit.org/b/64280> TestFailures page can't pinpoint that r90699 caused 13
-        tests to fail on Windows 7 Release (WebKit2 Tests)
-
-        Reviewed by David Kilzer.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/LayoutTestResultsLoader.js:
-        (LayoutTestResultsLoader.prototype.start): Bumped the cache version so that old, buggy
-        cached data will get evicted. We were marking builds where all tests passed as errors!
-        (LayoutTestResultsLoader.prototype._fetchAndParseORWTResults): Added success/error callback
-        parameters to the fetchAndParseResultsHTML helper function, and added a similar
-        fetchNumberOfFailingTests function that fetches data from build.webkit.org/json (code came
-        from later in the function). For test runs before r89610, we first check
-        build.webkit.org/json then check results.html. For builds after r89610, we first check
-        results.html and then check build.webkit.org/json if we couldn't fetch results.html.
-
-2011-07-11  Csaba Osztrogonác  <ossy@webkit.org>
-
-        new-run-webkit-tests does not support qt-arm or qt-4.8 results
-        https://bugs.webkit.org/show_bug.cgi?id=64071
-
-        [Qt] NRWT should pick up the right httpd config file
-        https://bugs.webkit.org/show_bug.cgi?id=64086
-
-        Reviewed by Zoltán Herczeg.
-
-        * Scripts/run-webkit-tests: Disable NRWT for qt-mac, qt-arm and qt-4.8 platforms until fix.
-        (useNewRunWebKitTests):
-
-2011-07-11  Kenichi Ishibashi  <bashi@chromium.org>
-
-        Add TestNetscapePlugIn/Tests/FormValue.cpp to DRT build files
-        https://bugs.webkit.org/show_bug.cgi?id=64248
-
-        Reviewed by Kent Tamura.
-
-        * DumpRenderTree/DumpRenderTree.gypi: Added FormValue.cpp.
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj: Ditto.
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro: Ditto.
-        * GNUmakefile.am: Ditto.
-
-2011-07-10  Kenichi Ishibashi  <bashi@chromium.org>
-
-        Let plugins participate in form submission
-        https://bugs.webkit.org/show_bug.cgi?id=13061
-
-        Adds NPPVformValue support to the testing plugin.
-
-        Reviewed by Anders Carlsson.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Added FormValue.cpp
-        * DumpRenderTree/TestNetScapePlugIn/Tests/FormValue.cpp: Added.
-        (FormValue::FormValue): Ditto.
-        (FormValue::NPP_GetValue): Ditto.
-
-2011-07-11  Roland Steiner  <rolandsteiner@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Complete functions in filesystem.py
-        https://bugs.webkit.org/show_bug.cgi?id=63528
-
-        - missing text file functions added
-        - functions sorted
-        - removed 'append' optional parameters (were unused)
-        - adapted filesystem_mock in the same way
-
-        * Scripts/webkitpy/common/system/filesystem.py:
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        * Scripts/webkitpy/common/system/filesystem_unittest.py:
-
-2011-07-10  Adam Barth  <abarth@webkit.org>
-
-        Clean up style in fallback path calculation
-        https://bugs.webkit.org/show_bug.cgi?id=64239
-
-        Reviewed by Daniel Bates.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/win.py:
-
-2011-07-10  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt][WK2] Implement the rest of WTR::PlatformWebView
-        https://bugs.webkit.org/show_bug.cgi?id=63630
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::windowFrame):
-        (WTR::PlatformWebView::setWindowFrame):
-
-2011-07-10  Mark Rowe  <mrowe@apple.com>
-
-        Teach build-webkit how to find the latest WebKitSystemInterface binary.
-
-        * Scripts/build-webkit:
-
-2011-07-09  Adam Roben  <aroben@apple.com>
-
-        Teach TestFailures to abbreviate the examples of test flakiness
-
-        These lists can get quite long, and it's not really helpful in most cases to have soooooo
-        many examples of flakiness.
-
-        Fixes <http://webkit.org/b/64203> Lists of flaky revisions on TestFailures page can get so
-        long they're hard to navigate
-
-        Reviewed by Dan Bates.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FlakyLayoutTestDetector.js:
-        (FlakyLayoutTestDetector.prototype.flakinessExamples): If we have more than a certain number
-        of examples, replace the middle items with a separator.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestFailures.css:
-        (.flakiness-example-separator): Added styles for the separator.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype._domForPossiblyFlakyTests): Use a vertical ellipsis to represent
-        the separator.
-
-2011-07-09  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: stack traces from worker-side exceptions aren't very useful inside test-webkitpy
-        https://bugs.webkit.org/show_bug.cgi?id=64218
-
-        Reviewed by Eric Seidel.
-
-        Exceptions aren't picklable and can't be sent across the
-        manager/worker message queue without losing information. NRWT
-        handles this by turning the stack trace into a set of strings,
-        and logging the strings when we receive an exception from the
-        worker. However, when you are running tests and something
-        crashes on the worker side, test-webkitpy prints the
-        manager-side stack trace, which is just confusing and useless.
-
-        This patch changes the logic so that exceptions are passed
-        through as-is when the worker and manager are in the same
-        process (the --worker-model=inline option). This increases the
-        code paths slightly but makes crashes much more useful.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        * Scripts/webkitpy/layout_tests/controllers/message_broker.py:
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-
-2011-07-09  Darin Fisher  <darin@chromium.org>
-
-        Eliminate bad dependency on gfx::Point.
-        https://bugs.webkit.org/show_bug.cgi?id=64228
-
-        Reviewed by Kent Tamura.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (initMouseEvent):
-
-2011-07-08  Ojan Vafai  <ojan@chromium.org>
-
-        pull static dashboard files into the appengine server from the chromium repository
-        https://bugs.webkit.org/show_bug.cgi?id=64208
-
-        Reviewed by Dirk Pranke.
-
-        These files belong in the WebKit repo since they are tied primarily to the webkit tests.
-        They have some extra bits to support chromium's gtests, but that seems fine.
-        Mainly, this will allow other WebKit hackers to hack on the dashboards.
-
-        As a nice side-effect, we can now push the dashboard files when we do appengine pushes
-        instead of the weird thing we used to do of pulling them from the Chromium repository
-        and storing them in the appengine datastore. This allows for cleaning up a lot of code
-        and will likely make the dashboards load a bit faster.
-
-        The new JS files don't fully match WebKit style, but I'd like to clean that up in a
-        followup patch if possible to maintain my sanity with this patch.
-
-        * TestResultServer/app.yaml:
-        * TestResultServer/handlers/dashboardhandler.py: Removed.
-        * TestResultServer/handlers/menu.py:
-        * TestResultServer/main.py:
-        * TestResultServer/model/dashboardfile.py: Removed.
-        * TestResultServer/static-dashboards/LICENSE.dygraph.txt: Added.
-        * TestResultServer/static-dashboards/README.dygraph.txt: Added.
-        * TestResultServer/static-dashboards/README.webtreemap.txt: Added.
-        * TestResultServer/static-dashboards/aggregate_results.html: Added.
-        * TestResultServer/static-dashboards/builders.js: Added.
-        * TestResultServer/static-dashboards/dashboard_base.js: Added.
-        * TestResultServer/static-dashboards/dygraph-combined.js: Added.
-        * TestResultServer/static-dashboards/flakiness_dashboard.html: Added.
-        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js: Added.
-        * TestResultServer/static-dashboards/timeline_explorer.html: Added.
-        * TestResultServer/static-dashboards/treemap.html: Added.
-        * TestResultServer/static-dashboards/webtreemap.css: Added.
-        * TestResultServer/static-dashboards/webtreemap.js: Added.
-        * TestResultServer/stylesheets/dashboardfile.css: Removed.
-        * TestResultServer/stylesheets/menu.css:
-        * TestResultServer/templates/dashboardfilelist.html: Removed.
-        * TestResultServer/templates/menu.html:
-
-2011-07-08  Adam Roben  <aroben@apple.com>
-
-        Make TestFailures's list of flaky tests look more like the list of non-flaky tests
-
-        Fixes <http://webkit.org/b/64204> TestFailures page's flaky tests list is ugly!
-
-        Reviewed by Daniel Bates.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestFailures.css:
-        (#failure-history, #possibly-flaky-tests): Expanded this rule to apply to the list of flaky
-        tests.
-        (#failure-history > li, #possibly-flaky-tests > li): Ditto, but moved the 50px left padding
-        from here...
-        (#failure-history > li): ...to here.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype._domForPossiblyFlakyTests): Give the list an id attribute for
-        styling purposes.
-
-2011-07-08  Jeffrey Pfau  <jpfau@apple.com>
-
-        Unreviewed, add myself as committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-07-08  Adam Barth  <abarth@webkit.org>
-
-        TestResultsServer should keep old test results
-        https://bugs.webkit.org/show_bug.cgi?id=64199
-
-        Reviewed by Ojan Vafai.
-
-        Having historical data will help us do failure archeology.
-
-        * TestResultServer/handlers/testfilehandler.py:
-        * TestResultServer/model/testfile.py:
-        * TestResultServer/templates/showfilelist.jsonp: Added.
-
-2011-07-08  Adam Roben  <aroben@apple.com>
-
-        Remove commit-log-editor's dependency on Module::Load::Conditional
-
-        This module isn't available in Perl 5.8.8 (the version used on Leopard).
-
-        Fixes <http://webkit.org/b/64198> REGRESSION (r90583):
-        webkitpy.common.checkout.checkout_unittest failing on Leopard
-
-        Reviewed by Daniel Bates.
-
-        * Scripts/commit-log-editor: Use the new loadTermReadKey() function instead of
-        Module::Load::Conditional::can_load.
-        (loadTermReadKey): Added. Tries to load Term::ReadKey and returns true if it's successful.
-
-2011-07-08  Adam Roben  <aroben@apple.com>
-
-        Make checkout_unittest more robust against files moving around
-
-        Fixes <http://webkit.org/b/64197> checkout_unittest contains ugly, fragile code to find the
-        Scripts directory
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/checkout/checkout_unittest.py:
-        (CommitMessageForThisCommitTest.test_commit_message_for_this_commit): Instantiate a real SCM
-        object and use it to get the path to the Scripts directory, rather than hard-coding the
-        relative path from this file to Scripts.
-
-2011-07-08  Adam Roben  <aroben@apple.com>
-
-        Make TestFailures remember that run-webkit-tests timed out, even across reloads
-
-        Fixes <http://webkit.org/b/64193> TestFailures page incorrectly thinks all tests passed in
-        http://build.webkit.org/builders/Windows%207%20Release%20(Tests)/builds/14589 after a reload
-
-        Reviewed by Daniel Bates.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/LayoutTestResultsLoader.js:
-        (LayoutTestResultsLoader.prototype.start): Store an "error" attribute in the cached data.
-        When true, it indicates that there was an error retrieving the results for this build and
-        that the errorCallback should be called.
-
-2011-07-08  Adam Barth  <abarth@webkit.org>
-
-        Teach garden-o-matic how to display test results
-        https://bugs.webkit.org/show_bug.cgi?id=64141
-
-        Reviewed by Ojan Vafai.
-
-        This patch includes basic infrastructure for probing build.chromium.org
-        for test results.  We only handle text and image tests, not anything
-        complicated like reftests.  Also, we're using the revision/build
-        independent results store on the server, so we're avoiding that
-        complication for now.
-
-        It's slightly hacky that we need to probe the server to see what kinds
-        of results exist.  A better solution would be to add CORS support to
-        the server or to use the local server to help.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/base.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/index.html:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui_unittests.js:
-
-2011-07-08  Dirk Pranke  <dpranke@chromium.org>
-
-        REGRESSION(90419) NRWT's httpd locking is broken for --child-processes=1
-        https://bugs.webkit.org/show_bug.cgi?id=64092
-
-        Reviewed by Tony Chang.
-
-        The code was incorrectly creating empty shards in the
-        shard_in_two case.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-
-2011-07-08  Adam Roben  <aroben@apple.com>
-
-        Teach buildbot to figure out how many webkitpy/webkitperl tests failed
-
-        Fixes <http://webkit.org/b/64192> It's hard to tell how many test-webkitpy/test-webkitperl
-        tests failed when looking at build.webkit.org
-
-        Reviewed by Eric Seidel.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (TestWithFailureCount): New class that represents a test build step which has an associated
-        failure count. Eventually we should move more of our test classes to deriving from this.
-        (TestWithFailureCount.countFailures): Method for subclasses to override to say how many
-        failures occurred.
-
-        (TestWithFailureCount.commandComplete):
-        (TestWithFailureCount.evaluateCommand):
-        (TestWithFailureCount.getText):
-        (TestWithFailureCount.getText2):
-        These were all based on RunGtkAPITests.
-
-        (RunPythonTests): Changed to inherit from TestWithFailureCount.
-        (RunPythonTests.countFailures): Parses the test-webkitpy output looking for the count of
-        failures.
-        (RunPerlTests): Changed to inherit from TestWithFailureCount.
-        (RunPerlTests.countFailures): Parses the test-webkitperl output looking for the count of
-        failures.
-
-2011-07-08  Adam Roben  <aroben@apple.com>
-
-        Ensure $CHANGE_LOG_EMAIL_ADDRESS is set when testing webkitpy's commit-log-editor integration
-
-        Fixes <http://webkit.org/b/64180> REGRESSION (r90564): test-webkitpy failing on multiple
-        bots due to commit-log-editor errors
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/checkout/checkout_unittest.py:
-        (CommitMessageForThisCommitTest.test_commit_message_for_this_commit): Set
-        $CHANGE_LOG_EMAIL_ADDRESS to the patch author's email address. This ensures that
-        commit-log-editor can find a value for the committer's email, and that the committer and
-        author email addresses match, which will prevent commit-log-editor from inserting a "Patch
-        by" line in the commit message.
-
-2011-07-08  Andreas Kling  <kling@webkit.org>
-
-        [Qt][WK2] Views should expose QActions for basic navigation.
-        https://bugs.webkit.org/show_bug.cgi?id=64174
-
-        Reviewed by Benjamin Poulain.
-
-        Bring the toolbar in Qt's MiniBrowser back to life.
-
-        * MiniBrowser/qt/BrowserView.cpp:
-        (BrowserView::navigationAction):
-        * MiniBrowser/qt/BrowserView.h:
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-
-2011-07-08  Adam Roben  <aroben@apple.com>
-
-        Teach TestFailures how to find test names in commit-log-editor-style commit messages
-
-        TestFailures was relying on Trac turning the list of modified files in our commit messages
-        into an HTML list. But Trac only does this when the list of modified files is indented.
-        commit-log-editor doesn't indent the file list, so the list wasn't being turned into an HTML
-        list, which was confusing TestFailures.
-
-        TestFailures now does much simpler parsing of the commit message (i.e., just a substring
-        search) without relying at all on its structure.
-
-        Fixes <http://webkit.org/b/64173> TestFailures page fails to blame r90608 for breaking
-        fast/dom/HTMLProgressElement/progress-element-markup.html on Windows
-
-        Reviewed by David Kilzer.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Trac.js:
-        (Trac.prototype.getCommitDataForRevisionRange): Instead of trying to parse the commit
-        message, just return its text.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype._domForRegressionRange): Instead of searching for test names in
-        each commit's list of modified files, just search for test names anywhere in the commit's
-        message.
-
-2011-07-08  Adam Barth  <abarth@webkit.org>
-
-        sheriffbot is too spammy in IRC
-        https://bugs.webkit.org/show_bug.cgi?id=64153
-
-        Reviewed by Eric Seidel.
-
-        Reporting failures in IRC worked well when the tree was greener than it
-        is today.  Nowadays, this feature mostly just results in spam about
-        false positives.  If we reach a greener state, we can bring this code
-        back.
-
-        (Another possibility is to restrict this feature to builder bots,
-        rather than including testers, as we did before this patch.)
-
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot_unittest.py:
-
-2011-07-08  Adam Roben  <aroben@apple.com>
-
-        Ensure commit-log-editor adds a "Patch by" line when the author and committer are different
-
-        Previously we were only adding a "Patch by" line when the ChangeLog contained a "Reviewed
-        by" line. But some patches (like rollout patches) don't contain that line. Now we always add
-        "Patch by" to the commit log regardless of the ChangeLog's contents.
-
-        Fixes <http://webkit.org/b/64127> Committer for r90588 is commit-queue@webkit.org, but
-        should have been abarth@webkit.org
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/commit-log-editor:
-        (createCommitMessage): Try to put the "Patch by" line just above the "Reviewed by" line, as
-        before. If there is no "Reviewed by" line, try to put it just above the first modified file.
-        If all else fails, put it at the end of the commit message.
-        (patchAuthorshipString): Added. Code came from createCommitMessage.
-
-2011-07-08  Herczeg Zoltan  <zherczeg@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        Adding myself as a reviewer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-07-07  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix, remove old files from the tree and update paths to new ones.
-
-        * wx/build: Removed.
-        * wx/build/build_utils.py: Removed.
-        * wx/build/settings.py: Removed.
-        * wx/build/waf_extensions.py: Removed.
-        * wx/build/wxpresets.py: Removed.
-        * wx/packaging/build-mac-installer.py:
-
-2011-07-07  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix, more fixes for install name issues.
-
-        * wx/packaging/build-mac-installer.py:
-
-2011-07-07  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy fails on chromium win
-        https://bugs.webkit.org/show_bug.cgi?id=64137
-
-        Reviewed by Eric Seidel.
-
-        test-webkitpy doesn't play nicely with the multiprocessing
-        module on win32. An earlier change actually reenabled the tests
-        on win32 by mistake.
-
-        This patch also fixes a few cases where path names will trip
-        things up on win32 (e.g., by testing unix paths on windows).
-        We do not lose any real coverage here with those fixes.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-
-2011-07-07  Leandro Pereira  <leandro@profusion.mobi>
-
-        [ImageDiff] Calculate/print difference right after reading baseline image.
-        https://bugs.webkit.org/show_bug.cgi?id=64117
-
-        Reviewed by Kent Tamura.
-
-        Otherwise, ImageDiff will block on fgets() until the universe ends or you ^C
-        it.  Whichever happens first.
-
-        * DumpRenderTree/efl/ImageDiff.cpp:
-        (main):
-
-2011-07-07  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        [EFL] DRT: Leak cairo_t to make the pixel tests stop crashing
-        https://bugs.webkit.org/show_bug.cgi?id=64107
-
-        Reviewed by Kent Tamura.
-
-        The pointer is later managed by BitmapContext, but it was being
-        de-refed and deleted earlier by our RefPtr, causing crashes in all
-        pixel tests.
-
-        We now call leakRef() to make sure it is not removed when our
-        createBitmapContextFromWebView goes out of context.
-
-        * DumpRenderTree/efl/PixelDumpSupportEfl.cpp:
-        (createBitmapContextFromWebView):
-
-2011-07-07  Adam Roben  <aroben@apple.com>
-
-        Update TestFailures's title and header immediately upon navigation
-
-        Fixes <http://webkit.org/b/64125> TestFailures page seems slow to react on link clicks
-
-        Reviewed by Daniel Bates.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype.loaded): Create and store an h1 element for displaying the page's
-        title.
-        (ViewController.prototype._displayBuilder): Set the page's title and clear out any old
-        content immediately instead of waiting for the first set of results for the history
-        analyzer. As we receive new results from the analyzer we'll just clear out the main content
-        area and replace it with the new info.
-        (ViewController.prototype._displayTesters): Set the page's title and clear out any old
-        content immediately instead of waiting for the list of testers from the buildbot. Sprinkled
-        in a little use of our removeAllChildren helper, too.
-        (ViewController.prototype._setTitle): Added. Set's the page's title and the header text.
-
-2011-07-07  Adam Roben  <aroben@apple.com>
-
-        Make Checkout use SCM's Executive instead of conjuring up its own
-
-        This will improve integration with the rest of webkitpy, particularly when invoked via
-        webkit-patch.
-
-        Fixes <http://webkit.org/b/64115> REGRESSION (r90564): webkitpy's Checkout class uses
-        Executive inappropriately
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/checkout/checkout.py:
-        (Checkout.commit_message_for_this_commit): Use SCM.run instead of creating an Executive for
-        our own use. SCM might have some super-special Executive that it uses under the covers, and
-        we want to use it, too!
-
-        * Scripts/webkitpy/common/checkout/checkout_unittest.py:
-        (CommitMessageForThisCommitTest.test_commit_message_for_this_commit): Mock the SCM.run
-        method to call through to Executive.run_command.
-
-2011-07-07  Adam Roben  <aroben@apple.com>
-
-        Make Term/ReadKey.pm an optional dependency of commit-log-editor
-
-        When Term/ReadKey.pm isn't present, the --regenerate-log switch will be non-functional.
-
-        Fixes <http://webkit.org/b/64113> REGRESSION (r90564):
-        webkitpy.common.checkout.checkout_unittest failing on GTK bots due to missing
-        Term/ReadKey.pm module
-
-        Reviewed by Xan Lopez.
-
-        * Scripts/commit-log-editor: Use Module::Load::Conditional::can_load to only load
-        Term/ReadKey.pm if it's present. If it isn't present, ignore the --regenerate-log switch so
-        that existing commit messages will be preserved. (Users can manually remove existing commit
-        messages using git-reset.)
-
-2011-07-07  Adam Roben  <aroben@apple.com>
-
-        Keep testing that commit messages containing Unicode are handled properly by webkitpy
-
-        Fixes <http://webkit.org/b/64109> REGRESSION (r90571): test-webkitpy no longer tests that we
-        correctly handle Unicode in commit messages
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/checkout/checkout_unittest.py: Put some Unicode characters in
-        places in the ChangeLog that will end up being included in the commit message.
-
-2011-07-07  Andreas Kling  <kling@webkit.org>
-
-        [Qt][WK2] Remove Symbian code.
-        https://bugs.webkit.org/show_bug.cgi?id=64101
-
-        Reviewed by Benjamin Poulain.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::screenshot):
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-        (WindowOptions::WindowOptions):
-
-2011-07-07  Andreas Kling  <kling@webkit.org>
-
-        [Qt][WK2] Don't support ridiculous matrix of QT_NO_FEATURE combinations.
-        https://bugs.webkit.org/show_bug.cgi?id=64099
-
-        Reviewed by Benjamin Poulain.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::openFile):
-        (BrowserWindow::screenshot):
-        (BrowserWindow::loadURLListFromFile):
-
-2011-07-07  Adam Roben  <aroben@apple.com>
-
-        Completely ignore too-many-failures builds in TestFailures in most circumstances
-
-        Because a semi-arbitrary subset of tests are run in a too-many-failures build, we can't
-        really use them to perform regression analysis. The only time we want to pay attention to
-        too-many-failures builds is when we're trying to explain when the current bout of
-        too-many-failures started.
-
-        Fixes <http://webkit.org/b/64106> TestFailures page sometimes claims a test started failing
-        in a build that didn't even run it (because it exited early due to too many failues)
-
-        Reviewed by David Kilzer.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/LayoutTestHistoryAnalyzer.js:
-        (LayoutTestHistoryAnalyzer.prototype._incorporateBuildHistory): Removed old, broken
-        too-many-failures handling that would cause us to blame builds that didn't even run a given
-        test for breaking it. Instead, skip over all too-many-failures builds unless the most recent
-        build was itself a too-many-failures build.
-
-2011-07-07  Adam Roben  <aroben@apple.com>
-
-        Teach webkitpy's Checkout class to use commit-log-editor to create commit messages
-
-        Fixes <http://webkit.org/b/26755> webkit-patch's commit messages are less readable than
-        commit-log-editor's
-
-        Reviewed by David Kilzer.
-
-        * Scripts/webkitpy/common/checkout/checkout.py:
-        (Checkout.commit_message_for_this_commit): Run commit-log-editor, passing it the paths of
-        the modified ChangeLogs, to generate the commit message, rather than trying to generate one
-        ourselves.
-
-        * Scripts/webkitpy/common/checkout/checkout_unittest.py: Updated the expected commit message
-        to match commit-log-editor's format.
-        (CommitMessageForThisCommitTest.setUp): Write the ChangeLogs into Tools and LayoutTests
-        directories so we can see how the various entries get labeled in the commit message.
-        (CommitMessageForThisCommitTest.test_commit_message_for_this_commit): Create a mock SCM
-        instance that knows how to find commit-log-editor and pass it to our Checkout instance.
-        Don't bother capturing output, since there shouldn't be any.
-
-2011-07-07  Adam Roben  <aroben@apple.com>
-
-        Add a --print-log option to commit-log-editor
-
-        When specified, commit-log-editor takes a set of ChangeLog paths on the command line,
-        generates a commit message from those ChangeLogs, prints it to stdout, and exits.
-
-        Prep work for fixing <http://webkit.org/b/26755> webkit-patch's commit messages are less
-        readable than commit-log-editor's
-
-        Reviewed by David Kilzer.
-
-        * Scripts/commit-log-editor: Changed to use Getopt::Long to parse options. Added --print-log
-        option, which calls through to createCommitMessage, prints the result, and exits.
-        (printUsageAndExit): Renamed from "usage" for clarity. Beefed up the usage statement to
-        explain commit-log-editor's 2.5 (normal, --print-log, and --help) modes of operation.
-
-2011-07-07  Adam Roben  <aroben@apple.com>
-
-        Extract commit-log-editor's commit-message-generation code into a separate function
-
-        As a bonus, we now skip a bunch of work in the case where we are generating a commit message
-        for staged git changes.
-
-        Prep work for fixing <http://webkit.org/b/26755> webkit-patch's commit messages are less
-        readable than commit-log-editor's
-
-        Reviewed by David Kilzer.
-
-        * Scripts/commit-log-editor: Moved the default definition of $endl up toward the top of the
-        file so that it will be defined even if we aren't operating on an existing log message.
-        Moved a bunch of top-level code to generate the commit message from here...
-        (createCommitMessage): ...to here.
-
-2011-07-07  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Open links in a new window when clicking with the middle button in MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=63988
-
-        Reviewed by Martin Robinson.
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (browserWindowConstructed):
-        (decidePolicyForNavigationAction): Ignore the action if a link is
-        clicked with the middle buttonm and open the link in a new window.
-        (browserWindowPolicyClientInit):
-
-2011-07-07  Adam Barth  <abarth@webkit.org>
-
-        Remove style_references.py
-        https://bugs.webkit.org/show_bug.cgi?id=64070
-
-        Reviewed by Eric Seidel.
-
-        We never really adopted the _references design, and this file is a bit
-        of an orphan at this point.
-
-        * Scripts/check-webkit-style:
-        * Scripts/webkitpy/style/checker.py:
-        * Scripts/webkitpy/style/checker_unittest.py:
-        * Scripts/webkitpy/style/checkers/python.py:
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-        * Scripts/webkitpy/style/main_unittest.py:
-        * Scripts/webkitpy/style_references.py: Removed.
-
-2011-07-07  Eric Seidel  <eric@webkit.org>
-
-        Fix WebKit2 expected results search paths for Mac and Qt under new-run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=64056
-
-        Unreviewed.
-
-        I had written this unittest prior to landing my change, but
-        had named it qt_unitest.py, so it wasn't running (nor was
-        it added to my git repo).
-
-        Once I fixe the name of the unittest file, it was very easy
-        to fix the error in webkit.py (which already had a FIXME).
-
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py: Added.
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-07-07  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Add more debug logging about which test expectations we're using.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-07-06  Adam Barth  <abarth@webkit.org>
-
-        Remove unexpected_results.json
-        https://bugs.webkit.org/show_bug.cgi?id=64065
-
-        Reviewed by Eric Seidel.
-
-        No one should be using this file any more.  This patch removes it from
-        the face of the earth.  This patch also removes two NRWT-specific
-        command line options that were implemented using
-        unexpected_results.json.
-
-        * Scripts/webkitpy/common/net/resultsjsonparser_unittest.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        * Scripts/webkitpy/tool/commands/rebaselineserver.py:
-        * Scripts/webkitpy/tool/servers/rebaselineserver_unittest.py:
-
-2011-07-07  Adam Barth  <abarth@webkit.org>
-
-        REGRESSION(90520): chromium GPU tests produce output in the LayoutTests directory
-        https://bugs.webkit.org/show_bug.cgi?id=64067
-
-        Reviewed by Eric Seidel.
-
-        The author of r90520 forgot to change the chromium_gpu.py implemenation
-        of this method as well.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-
-2011-07-06  Eric Seidel  <eric@webkit.org>
-
-        Fix WebKit2 expected results search paths for Mac and Qt under new-run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=64056
-
-        Reviewed by Adam Barth.
-
-        This fixes the MacPort's version of baseline_search_path to include
-        wk2 fallback like WebKitPort's does.  This also re-works the QtPort
-        to set self._name (as other ports do) so that WebKitPort's default
-        implementations will understand Qt operating system flavors correctly
-        (including when running wk2 tests).
-
-        In trying to test this, I realized that nearly all of our port-tests
-        use the default FileSystem(), User() and Executive() objects, which
-        is really bad, because they expose details of your system in the unittest results!
-
-        Once I fixed many of the Port() calls to pass MockFileSystem(), then
-        MacPort.test_tests_for_other_platforms started failing, and I had to
-        teach MockFileSystem.glob how to handle directories to make it work again.
-
-        I removed the useless PortTestCase.test_baseline_search_path and replaced
-        it with more useful test_baseline_search_path tests in MacPortTest and QtPortTest.
-
-        * Scripts/webkitpy/common/config/ports.py:
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/port/test_files.py:
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        * Scripts/webkitpy/to_be_moved/deduplicate_tests.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2011-07-06  Adam Barth  <abarth@webkit.org>
-
-        Wean rebaseline-server off unexpected_results.json
-        https://bugs.webkit.org/show_bug.cgi?id=64063
-
-        Reviewed by Eric Seidel.
-
-        In the process of changing this code to use full_results.json, I
-        noticed that the code was broken (because it wasn't tested).  This
-        patch also adds test coverage for the broken code.
-
-        * Scripts/webkitpy/tool/commands/rebaselineserver.py:
-        * Scripts/webkitpy/tool/servers/rebaselineserver.py:
-        * Scripts/webkitpy/tool/servers/rebaselineserver_unittest.py:
-
-2011-07-06  Adam Barth  <abarth@webkit.org>
-
-        Wean resultsjsonparser off unexpected_results.json
-        https://bugs.webkit.org/show_bug.cgi?id=64061
-
-        Reviewed by Eric Seidel.
-
-        We're about to delete unexpected_results.json, so we need to remove all
-        the users.
-
-        * Scripts/webkitpy/common/config/ports.py:
-        * Scripts/webkitpy/common/net/resultsjsonparser.py:
-        * Scripts/webkitpy/common/net/resultsjsonparser_unittest.py:
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-
-2011-07-06  Adam Barth  <abarth@webkit.org>
-
-        Cleanup result_summary.py
-        https://bugs.webkit.org/show_bug.cgi?id=64057
-
-        Reviewed by Eric Seidel.
-
-        This class had a bunch of out-of-date docstrings that no longer make
-        any sense.
-
-        * Scripts/webkitpy/layout_tests/models/result_summary.py:
-
-2011-07-06  Adam Barth  <abarth@webkit.org>
-
-        Tweak the ChangeLog for DEPS rolls to say "Unreviewed" so that the
-        patches can be landed by the commit-queue.
-
-        * Scripts/webkitpy/tool/steps/preparechangelogfordepsroll.py:
-
-2011-07-06  Adam Barth  <abarth@webkit.org>
-
-        Normalize callers of logging.getLogger to use __name__
-        https://bugs.webkit.org/show_bug.cgi?id=64054
-
-        Reviewed by Eric Seidel.
-
-        Most callers were already using __name__.  This patch makes everyone
-        consistent.
-
-        * Scripts/webkitpy/common/checkout/diff_parser.py:
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-        * Scripts/webkitpy/common/net/statusserver.py:
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/common/system/file_lock.py:
-        * Scripts/webkitpy/common/system/user.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/models/result_summary.py:
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        * Scripts/webkitpy/layout_tests/port/http_lock.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        * Scripts/webkitpy/layout_tests/servers/apache_http_server.py:
-        * Scripts/webkitpy/layout_tests/servers/http_server.py:
-        * Scripts/webkitpy/layout_tests/servers/http_server_base.py:
-        * Scripts/webkitpy/layout_tests/servers/websocket_server.py:
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        * Scripts/webkitpy/python24/versioning.py:
-        * Scripts/webkitpy/style/checker.py:
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-        * Scripts/webkitpy/style/patchreader.py:
-        * Scripts/webkitpy/to_be_moved/update_webgl_conformance_tests.py:
-
-2011-07-06  Adam Barth  <abarth@webkit.org>
-
-        Move model classes out of layout_package and into models
-        https://bugs.webkit.org/show_bug.cgi?id=64053
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-        * Scripts/webkitpy/common/net/layouttestresults.py:
-        * Scripts/webkitpy/common/net/layouttestresults_unittest.py:
-        * Scripts/webkitpy/common/net/resultsjsonparser.py:
-        * Scripts/webkitpy/common/net/resultsjsonparser_unittest.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/result_summary.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations_unittest.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures_unittest.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/test_input.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_results.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/test_results_unittest.py: Removed.
-        * Scripts/webkitpy/layout_tests/models: Added.
-        * Scripts/webkitpy/layout_tests/models/__init__.py: Added.
-        * Scripts/webkitpy/layout_tests/models/result_summary.py: Copied from Tools/Scripts/webkitpy/layout_tests/layout_package/result_summary.py.
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py: Copied from Tools/Scripts/webkitpy/layout_tests/layout_package/test_expectations.py.
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py: Copied from Tools/Scripts/webkitpy/layout_tests/layout_package/test_expectations_unittest.py.
-        * Scripts/webkitpy/layout_tests/models/test_failures.py: Copied from Tools/Scripts/webkitpy/layout_tests/layout_package/test_failures.py.
-        * Scripts/webkitpy/layout_tests/models/test_failures_unittest.py: Copied from Tools/Scripts/webkitpy/layout_tests/layout_package/test_failures_unittest.py.
-        * Scripts/webkitpy/layout_tests/models/test_input.py: Copied from Tools/Scripts/webkitpy/layout_tests/layout_package/test_input.py.
-        * Scripts/webkitpy/layout_tests/models/test_results.py: Copied from Tools/Scripts/webkitpy/layout_tests/layout_package/test_results.py.
-        * Scripts/webkitpy/layout_tests/models/test_results_unittest.py: Copied from Tools/Scripts/webkitpy/layout_tests/layout_package/test_results_unittest.py.
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-        * Scripts/webkitpy/style_references.py:
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-        * Scripts/webkitpy/tool/bot/flakytestreporter_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-
-2011-07-06  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: fix typo preventing http startup on windows
-        https://bugs.webkit.org/show_bug.cgi?id=64050
-
-        Reviewed by Eric Siedel.
-
-        NRWT checks whether it needs to start the servers by looking
-        for "/http/" in the test names. After r90520, the leading slash
-        is not present, so the check isn't quite right.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-
-2011-07-06  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: remove --use-apache from the command line
-        https://bugs.webkit.org/show_bug.cgi?id=63358
-
-        Reviewed by Adam Barth.
-
-        Re-land the fix in bug 63358 - the prior fix was flawed in that
-        we were trying to start the http server during check_sys_deps()
-        but not actually setting up the environment properly. This
-        broken prior to this change, but exposed by it, since the patch
-        changes the chromium port to call the base class's checks.
-
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-07-06  Adam Barth  <abarth@webkit.org>
-
-        Move view-related code out of layout_package and into views
-        https://bugs.webkit.org/show_bug.cgi?id=64051
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/metered_stream.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/metered_stream_unittest.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py: Removed.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/views: Added.
-        * Scripts/webkitpy/layout_tests/views/__init__.py: Added.
-        * Scripts/webkitpy/layout_tests/views/metered_stream.py: Copied from Tools/Scripts/webkitpy/layout_tests/layout_package/metered_stream.py.
-        * Scripts/webkitpy/layout_tests/views/metered_stream_unittest.py: Copied from Tools/Scripts/webkitpy/layout_tests/layout_package/metered_stream_unittest.py.
-        * Scripts/webkitpy/layout_tests/views/printing.py: Copied from Tools/Scripts/webkitpy/layout_tests/layout_package/printing.py.
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py: Copied from Tools/Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py.
-
-2011-07-06  Adam Barth  <abarth@webkit.org>
-
-        Add goofy comments to explain why we have these files.
-
-        * Scripts/webkitpy/layout_tests/controllers/__init__.py:
-        * Scripts/webkitpy/layout_tests/layout_package/__init__.py:
-
-2011-07-06  Adam Barth  <abarth@webkit.org>
-
-        Move a bunch of classes out of layout_tests.layout_package and into layout_tests.controllers
-        https://bugs.webkit.org/show_bug.cgi?id=64048
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/layout_tests/controllers: Added.
-        * Scripts/webkitpy/layout_tests/controllers/__init__.py: Added.
-        * Scripts/webkitpy/layout_tests/controllers/manager.py: Copied from Tools/Scripts/webkitpy/layout_tests/layout_package/manager.py.
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py: Copied from Tools/Scripts/webkitpy/layout_tests/layout_package/manager_unittest.py.
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py: Copied from Tools/Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker.py.
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker_unittest.py: Copied from Tools/Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker_unittest.py.
-        * Scripts/webkitpy/layout_tests/controllers/message_broker.py: Copied from Tools/Scripts/webkitpy/layout_tests/layout_package/message_broker.py.
-        * Scripts/webkitpy/layout_tests/controllers/message_broker_unittest.py: Copied from Tools/Scripts/webkitpy/layout_tests/layout_package/message_broker_unittest.py.
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py: Copied from Tools/Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py.
-        * Scripts/webkitpy/layout_tests/controllers/worker.py: Copied from Tools/Scripts/webkitpy/layout_tests/layout_package/worker.py.
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/manager_unittest.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker_unittest.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker_unittest.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/worker.py: Removed.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-07-06  Adam Barth  <abarth@webkit.org>
-
-        Attempt to fix unittest on Leopard.  Let's enumerate the keys in sorted
-        order so the test results are predictable.
-
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        * Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py:
-
-2011-07-06  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Siedel.
-
-        nrwt: make the code be consistent about using test names instead of filenames or paths
-
-        https://bugs.webkit.org/show_bug.cgi?id=63597
-
-        It can be hard to figure out where in the code we're assuming
-        test names are listed as unix-style relative filenames and where
-        they are either absolute paths or relative paths following the
-        host filesystem convention.
-
-        This patch changes things so that everything outside of the
-        Port object uses (and must assume) unix-style relative
-        filenames (with one exception, which is specifying host-local
-        filenames as a list of test arguments on the command line).
-
-        This should make things clearer and more consistent, and also
-        removes a lot of path conversion calls.
-
-        The changes in this patch outside of port/base.py are largely
-        cosmetic changes of "filename" to "test". We add a few routines
-        to the base Port implementation to manipulate test names to
-        split them, figure out if we're referring to a directory of
-        tests, etc.
-
-        * Scripts/webkitpy/common/net/layouttestresults.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-        * Scripts/webkitpy/layout_tests/layout_package/manager_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/result_summary.py:
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_input.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_results.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_results_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/worker.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/dryrun.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests_unittest.py:
-        * Scripts/webkitpy/tool/bot/flakytestreporter.py:
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        * Scripts/webkitpy/tool/commands/rebaselineserver.py:
-
-2011-07-06  Chris Guillory  <ctguil@chromium.org>
-
-        No review necessary.
-
-        Adding myself to committers list in committers.py.
-        https://bugs.webkit.org/show_bug.cgi?id=63478
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-07-06  Johnny Ding  <jnd@chromium.org>
-
-        https://bugs.webkit.org/show_bug.cgi?id=63857
-        Implement createPopupMenu for Chromium DRT.
-
-        Reviewed by Tony Chang.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createPopupMenu):
-        (WebViewHost::~WebViewHost):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2011-07-06  Mihai Parparita  <mihaip@chromium.org>
-
-        Unreviewed, rolling out r90503.
-        http://trac.webkit.org/changeset/90503
-        https://bugs.webkit.org/show_bug.cgi?id=63358
-
-        Makes Chromium Windows canary bots hang.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-07-06  Adam Barth  <abarth@webkit.org>
-
-        Move buildbot URL in webkitpy to config.urls
-        https://bugs.webkit.org/show_bug.cgi?id=64041
-
-        Reviewed by Eric Seidel.
-
-        This patch prepares for using the buildbot class to talk to the
-        Chromium buildbots.
-
-        * Scripts/webkitpy/common/config/urls.py:
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/ensurebuildersaregreen.py:
-
-2011-07-06  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix, add the correct path to the waf build settings.
-        
-        * wx/packaging/build-win-installer.py:
-
-2011-07-06  Adam Barth  <abarth@webkit.org>
-
-        Add missing include.
-
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-
-2011-07-06  Adam Barth  <abarth@webkit.org>
-
-        Add roll-chromium-deps command to sheriff-bot
-        https://bugs.webkit.org/show_bug.cgi?id=64037
-
-        Reviewed by Eric Seidel.
-
-        Lo, and the DEPS were rolled on command.
-
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        * Scripts/webkitpy/tool/bot/irc_command_unittest.py:
-        * Scripts/webkitpy/tool/bot/sheriff.py:
-        * Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py:
-        * Scripts/webkitpy/tool/commands/roll.py:
-        * Scripts/webkitpy/tool/commands/roll_unittest.py:
-        * Scripts/webkitpy/tool/steps/updatechromiumdeps.py:
-
-2011-07-06  Eric Seidel  <eric@webkit.org>
-
-        Split Driver, DriverOutput and DriverInput out into a new driver.py file
-        https://bugs.webkit.org/show_bug.cgi?id=64031
-
-        Reviewed by Adam Barth.
-
-        This ended up kinda large and I'm happy to break it up if desired.
-
-        As part of cleaning up the Port module, I split Driver, DriverInput and DriverOutput
-        out into its own driver.py file.
-
-        I also cleaned up how we import Port objects, by making port/__init__.py
-        expose Port, Driver, DriverInput, and DriverOutput.  I removed exposure of
-        some various test objects as they were causing circular dependencies.
-        base.py is now an implementation detail of port.  No longer is "base" referenced
-        anywhere in the code.
-
-        I also made Driver.__init__ non-virtual so that sub-classers could all share
-        the data storage on Driver.  This more closely matches how other subclasses
-        work throughout our python code.
-
-        Standard line-unwrapping and doc-string removal as I went through the code.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
-        * Scripts/webkitpy/layout_tests/port/__init__.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/driver.py: Added.
-        * Scripts/webkitpy/layout_tests/port/dryrun.py:
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests_unittest.py:
-        * Scripts/webkitpy/tool/servers/rebaselineserver_unittest.py:
-
-2011-07-06  Adam Roben  <aroben@apple.com>
-
-        Clear TestFailures's getNumberOfFailingTests cache
-
-        Now that we support NRWT, we need to clear out old zero values for the NRWT bots that might
-        have been cached by old versions of TestFailures.
-
-        Fixes <http://webkit.org/b/64029> TestFailures page still doesn't show NRWT bots if you've
-        used it recently
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder.js:
-        (Builder.prototype.getNumberOfFailingTests): Added a .version property to the cache data
-        that must match the current version. Otherwise we'll ignore the cached data.
-
-2011-06-24  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        nrwt: remove --use-apache from the command line
-        https://bugs.webkit.org/show_bug.cgi?id=63358
-
-        This change removes the --use-apache command line argument. It
-        was initially put in when we were trying to get the cygwin
-        apache instance to work with Chromium win, but that code has
-        bitrotted and doesn't work at all now.
-
-        Arguably we should remove all of the code to allow for a choice
-        of web servers, but since we may still want to switch off of
-        LigHTTPd at some point on Windows, I'll leave the rest in for
-        now (or at least yank it in a different change.)
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-07-06  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        garden-o-matic should use a favicon to indicate current state.
-        https://bugs.webkit.org/show_bug.cgi?id=64027
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/favicon-green.png: Added.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/favicon-red.png: Added.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/index.html: Added blurb about icons.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.js: Added setting icon state.
-        * Scripts/webkitpy/tool/servers/gardeningserver.py: Allowed the use of favicons.
-
-2011-07-06  Daniel Bates  <dbates@rim.com>
-
-        Fix webkitpy error after changeset 90483 <http://trac.webkit.org/changeset/90483>; Add missing
-        parameter to _fetch_file_from_results lamdba function.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-
-2011-07-06  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix. Generate the proper install_name for dylibs on Mac.
-
-        * wx/packaging/build-mac-installer.py:
-
-2011-07-06  Xan Lopez  <xlopez@igalia.com>
-
-        [GTK] Only set env. variables in start when strictly needed
-        https://bugs.webkit.org/show_bug.cgi?id=64026
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py: add a
-        setup_environ_for_server method in GtkPort and set as many
-        env. variables as possible there.
-
-2011-07-06  Adam Roben  <aroben@apple.com>
-
-        Teach TestFailures how to load, parse, and interpret NRWT test results
-
-        Fixes <http://webkit.org/b/61877> TestFailures page doesn't show testers that use
-        new-run-webkit-tests
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder.js:
-        (Builder.prototype.failureDiagnosisTextAndURL): Added support for the new 'flaky' failure
-        type. For now we don't account for image-only flakes (but TestFailures doesn't deal with
-        pixel tests at all currently).
-        (Builder.prototype.getNumberOfFailingTests): Relaxed the regex used for parsing the number
-        of failing tests from the buildbot output. Make sure not to count "new passes" (a new
-        category introduced by NRWT) as failures.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/LayoutTestResultsLoader.js:
-        (LayoutTestResultsLoader.prototype.start): Moved a bunch of code from here to
-        _fetchAndParseORWTResults. This function now attempts to load NRWT results, then falls back
-        to loading ORWT results.
-        (LayoutTestResultsLoader.prototype._fetchAndParseNRWTResults): Added. Tries to load and
-        parse the full_results.json file for the given build.
-        (LayoutTestResultsLoader.prototype._fetchAndParseORWTResults): Added. Code came from start.
-        Fixed a bug along the way where we were sometimes calling the error callback instead of the
-        success callback when all tests passed.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/NRWTResultsParser.js: Added.
-        (NRWTResultsParser): Do-nothing constructor.
-        (NRWTResultsParser.prototype.parse): Uses eval() (eww!) to get the test results out of the
-        JS string, then iterates over all the tests in the results data and builds up a data
-        structure matching what ORWTResultsParser returns.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Utilities.js:
-        (Array.prototype.contains):
-        (String.prototype.contains):
-        Added these simple helper functions.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/index.html: Pull in
-        NRWTResultsParser.js.
-
-2011-07-06  Adam Roben  <aroben@apple.com>
-
-        Extract code to parse ORWT's results.html file into its own class
-
-        Prep work for fixing <http://webkit.org/b/61877> TestFailures page doesn't show testers that
-        use new-run-webkit-tests
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/LayoutTestResultsLoader.js:
-        (LayoutTestResultsLoader.prototype.start): Moved a bunch of code from here...
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ORWTResultsParser.js: Added.
-        (ORWTResultsParser):
-        (ORWTResultsParser.prototype.parse):
-        ...to here.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/index.html: Pull in
-        ORWTResultsParser.js.
-
-2011-07-06  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Fix a unittest from hitting the network. :)
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-
-2011-07-06  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed.  Fixing an exception in test-webkitpy, caused by bug 64006.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-
-2011-07-06  Gustavo Noronha Silva  <gustavo.noronha@collabora.com>
-
-        Run an Xvfb instance to run the API tests on, like we do for the
-        layout tests.
-
-        Reviewed by Xan Lopez.
-
-        * Scripts/run-gtk-tests:
-
-2011-07-06  Daniel Bates  <dbates@webkit.org>
-
-        Make SCM unit tests faster
-        https://bugs.webkit.org/show_bug.cgi?id=63883
-
-        Speeds up the SCM unit tests by a factor of 4. Currently, we create a
-        mock SVN repo for each test_ method in SVNTest and GitTest and creating
-        this repo is expensive.
-
-        Instead, it is significantly faster to create the mock SVN repo once
-        and then perform a filesystem copy of it for each test_ method.
-
-        Note, Python 2.7's unittest module implements support for per class and
-        per module setup and tear down methods which could be used to implement
-        similar functionality. At the time of writing, test-webkitpy is designed
-        to support Python 2.5. So, we can't take advantage of these Python 2.7
-        features :(
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-
-2011-07-06  Adam Barth  <abarth@webkit.org>
-
-        Remove unused parameter from _add_test in test_expectations.py
-        https://bugs.webkit.org/show_bug.cgi?id=64008
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-
-2011-07-06  Adam Barth  <abarth@webkit.org>
-
-        Use old-run-webkit-tests when --leaks is present
-        https://bugs.webkit.org/show_bug.cgi?id=64012
-
-        Reviewed by Adam Roben.
-
-        We'll remove this branch once support of --leaks is added to
-        new-run-webkit-tests.
-
-        * Scripts/run-webkit-tests:
-
-2011-07-06  Benjamin Poulain  <benjamin@webkit.org>
-
-        [Qt] [WK2] Add touch mocking to Qt's MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=63995
-
-        Reviewed by Andreas Kling.
-
-        The mouse events are intercepted through QCoreApplication::notify(),
-        and fake touch events are generated for mouse events when necessary.
-
-        If touch events are received from the platform, we assume the current
-        hardware has a touch screen and we stop generating fake events.
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (isTouchEvent):
-        (isMouseEvent):
-        (MiniBrowserApplication::MiniBrowserApplication):
-        (MiniBrowserApplication::notify):
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-
-2011-07-06  Xan Lopez  <xlopez@igalia.com>
-
-        Reviewed by Gustavo Noronha.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py: use Popen correctly.
-
-2011-07-06  Eric Seidel  <eric@webkit.org>
-
-        webkit-patch failure-reason does not understand NRWT results
-        https://bugs.webkit.org/show_bug.cgi?id=64006
-
-        Reviewed by Adam Barth.
-
-        Adam Barth tells me failure-reason should be deleted soon,
-        but aroben's fancy new TestFailures/ page doesn't work for
-        NRWT yet, and I needed to know when
-        third-party-cookie-relaxing started failing.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-
-2011-07-06  Xan Lopez  <xlopez@igalia.com>
-
-        [GTK] Add missing environment variables in NWRT
-        https://bugs.webkit.org/show_bug.cgi?id=64004
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Add missing environment variables needed by the GTK+ port.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py: ditto.
-
-2011-07-06  Adam Roben  <aroben@apple.com>
-
-        Make run-api-tests output intelligible on the bots
-
-        run-api-tests's output on the bots was very hard to read for two reasons:
-          1) It was mixing its own output with gtest's
-          2) It was using ANSI escape sequences to print colored text, but the bots don't support
-             that
-
-        Now, the --verbose flag turns off almost all of run-api-tests's own output so that gtest's
-        output will not be obscured. We still print "Timeout" messages even in verbose mode, since
-        gtest doesn't have any native support for timeouts. Also, when our output is being
-        redirected to a file, we don't print ANSI escape sequences.
-
-        Fixes <http://webkit.org/b/63996> It's very hard to read run-api-tests output on the bots
-
-        Reviewed by Sam Weinig.
-
-        * Scripts/run-api-tests: Don't use the :constants interface of Term::ANSIColor. We want to
-        use the colored function instead.
-        (runAllTestsInSuite): Don't print out suite names in verbose mode; gtest will give us enough
-        context that they aren't needed.
-        (runTest): Don't print out test names or pass/fail messages in verbose mode; gtest will do
-        that for us. Also, use the new possiblyColored function instead of always coloring output.
-        (possiblyColored): Added. When printing to a tty, returns the string with the appropriate
-        ANSI color escape sequences added. Otherwise just returns the string unmodified.
-
-2011-07-06  Xan Lopez  <xlopez@igalia.com>
-
-        Reviewed by Gustavo Noronha.
-
-        Launch Xvfb (mostly) the same way we were launching it in the
-        bots, for maximum compatibility.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-
-2011-07-06  Andreas Kling  <kling@webkit.org>
-
-        [Qt][WK2] Split Qt API into two different web views (touch and desktop)
-        https://bugs.webkit.org/show_bug.cgi?id=63950
-
-        Co-authored with Benjamin Poulain <benjamin@webkit.org>.
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Port WTR/Qt to use QDesktopWebView and force a 800x600 viewport.
-
-        The Qt MiniBrowser now defaults to QDesktopWebView but can be started
-        in QTouchWebView mode by passing -touch on the command line.
-
-        A lot of functionality has been removed and/or disabled from
-        MiniBrowser until we reintroduce the necessary API's.
-
-        * MiniBrowser/qt/BrowserView.cpp:
-        (BrowserView::BrowserView):
-        (BrowserView::~BrowserView):
-        (BrowserView::load):
-        (BrowserView::view):
-        (BrowserView::touchWebView):
-        (BrowserView::desktopWebView):
-        * MiniBrowser/qt/BrowserView.h:
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (newPageFunction):
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::webView):
-        (BrowserWindow::newWindow):
-        (BrowserWindow::showUserAgentDialog):
-        (BrowserWindow::updateUserAgentList):
-        * MiniBrowser/qt/BrowserWindow.h:
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::handleUserOptions):
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-        (WindowOptions::WindowOptions):
-        * MiniBrowser/qt/UrlLoader.cpp:
-        (UrlLoader::UrlLoader):
-        * MiniBrowser/qt/main.cpp:
-        (main):
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::WebView::wkView):
-        (WTR::WebView::pageRef):
-        (WTR::WebView::WebView):
-        (WTR::PlatformWebView::page):
-        (WTR::PlatformWebView::windowFrame):
-        (WTR::PlatformWebView::setWindowFrame):
-
-2011-07-06  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed..
-
-        * Scripts/run-webkit-tests:
-        (useNewRunWebKitTests):
-         - Fix the pass-thru of --gtk and --qt for old-run-webkit-tests,
-           it was previously broken by the existence of isGtk/isQt checks which
-           removed the --gtk/--qt args from @ARGV.
-
-2011-07-06  Eric Seidel  <eric@webkit.org>
-
-        new-run-webkit-tests uses a 35s timeout for Mac and 6s for all other ports
-        https://bugs.webkit.org/show_bug.cgi?id=63983
-
-        Reviewed by Xan Lopez.
-
-        All WebKit ports want to use a 35s timeout.  Only chromium currently
-        uses a 6s timeout.  Eventually we'll move all WebKit ports to 6s too
-        to further speed up new-run-webkit-tests runs, but that's going to be a while.
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-
-2011-07-06  Xan Lopez  <xlopez@igalia.com>
-
-        Unreviewed.
-
-        NWRT actually seems to work locally, so it should work in the bots
-        as long as we take care of the TIMEOUT issue (which is being fixed
-        as I write this). Let's give this another shot and fix whatever
-        breaks.
-
-        * Scripts/run-webkit-tests:
-        (useNewRunWebKitTests):
-
-2011-07-06  Xan Lopez  <xlopez@igalia.com>
-
-        Unreviewed.
-
-        Disable NWRT on GTK. At the very least it needs an updated exected
-        results file since NWRT is more sensitive to timeouts, not sure
-        what the exact problem is.
-
-        * Scripts/run-webkit-tests:
-        (useNewRunWebKitTests):
-
-2011-07-06  Adam Barth  <abarth@webkit.org>
-
-        Fix global variable leak detected by noglobals.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results.js:
-
-2011-07-06  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic shouldn't show flaky tests by default
-        https://bugs.webkit.org/show_bug.cgi?id=63979
-
-        Reviewed by Ojan Vafai.
-
-        If any of the actual test results are PASS, the test is flaky and we
-        can ignore it (at least for now).  If we get awesome at dealing with
-        failing tests, we might want to tackle flaky tests by refering the user
-        to the flakiness dashboard, which is way more awesome at dealing with
-        flaky tests that this tool ever will be.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results_unittests.js:
-
-2011-07-05  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should list the failing tests
-        https://bugs.webkit.org/show_bug.cgi?id=63978
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/config.js: Added.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/index.html:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results_unittests.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/run-unittests.html:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui.js: Added.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/ui_unittests.js: Added.
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-
-
-2011-07-05  Eric Seidel  <eric@webkit.org>
-
-        Re-enable NRWT on Leopard now that bug 63973 is fixed.
-
-        Reviewed by Adam Barth.
-
-        I also made the should-enable expression a black-list instead
-        of a white-list since every bot on build.webkit.org is
-        now using NRWT except windows and WebKit2 bots.
-
-        * Scripts/run-webkit-tests:
-        (useNewRunWebKitTests):
-
-2011-07-05  Eric Seidel  <eric@webkit.org>
-
-        Perl string concat failure on Leopard (causes NRWT to fail)
-        https://bugs.webkit.org/show_bug.cgi?id=63973
-
-        Reviewed by Daniel Bates.
-
-        Leopard's "xcodebuild -version" has a different format from Snow Leopard/Lion
-        thus the version parsing logic in webkitdirs.pm seems to fail.
-
-        Default to "3.0" instead of undef when we can't parse the version number.
-        This should send us down the correct path for Leopard.
-
-        * Scripts/webkitdirs.pm:
-        (determineBaseProductDir):
-
-2011-07-05  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix after addition of Source/WebCore/xml/parser dir.
-
-        * waf/build/settings.py:
-
-2011-07-05  Eric Seidel  <eric@webkit.org>
-
-        Disable NRWT for Leopard until https://bugs.webkit.org/show_bug.cgi?id=63973 can be fixed.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/run-webkit-tests:
-        (useNewRunWebKitTests):
-
-2011-07-05  Eric Seidel  <eric@webkit.org>
-
-        Make run-webkit-tests pass --verbose to new-run-webkit-tests on qt/gtk bots.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/run-webkit-tests:
-        (runningOnBuildBot):
-
-2011-07-05  Adam Barth  <abarth@webkit.org>
-
-        Add results_unittests.js to garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=63971
-
-        Reviewed by Eric Seidel.
-
-        Adding these unit tests forced me to commit to an API for the results
-        module.  I'm not sure if this is the API we'll end up with, but it's
-        something not entirely unreasonable.
-
-        Also, I've changed results.js over to WebKit style, as discussed previously.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/index.html:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results_unittests.js: Added.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/run-unittests.html:
-
-2011-07-05  Eric Seidel  <eric@webkit.org>
-
-        Teach run-webkit-tests how to translate --qt and --gtk for new-run-webkit-tests.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/run-webkit-tests:
-
-2011-07-05  Adam Barth  <abarth@webkit.org>
-
-        Add first unit tests for garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=63969
-
-        Reviewed by Eric Seidel.
-
-        I've also reformated base.js to match WebKit style, as discussed in the
-        previous bug.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/base.js:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/base_unittests.js: Added.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/run-unittests.html: Added.
-
-2011-07-05  Eric Seidel  <eric@webkit.org>
-
-        Move Qt, Gtk and Leopard to NRWT.
-
-        We'll roll out any of these if we see problems.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/run-webkit-tests:
-        (useNewRunWebKitTests):
-
-2011-07-05  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should understand which tests have unexpected failures
-        https://bugs.webkit.org/show_bug.cgi?id=63965
-
-        Reviewed by Eric Seidel.
-
-        Currently, this code just logs the list of unexpected failures to the
-        console.  A future patch will do something useful with this
-        information.  A testing harness will also come in the next patch.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/base.js: Added.
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/index.html:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results.js:
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-
-2011-07-05  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic should know how to fetch test results from the (NRWT) bots
-        https://bugs.webkit.org/show_bug.cgi?id=63959
-
-        Reviewed by Eric Seidel.
-
-        Currently, this code just fetches the results and expectations JSON
-        blob for Linux from the server and logs it to the console.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/index.html:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/results.js: Added.
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-
-2011-07-05  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Python tests are failing on leopard
-        https://bugs.webkit.org/show_bug.cgi?id=63842
-
-        Fix the missing flush() call that appears to be needed by the
-        logging package in python 2.5. Also fix the regressions
-        introduced in the run_webkit_test tests when we switched from
-        thread to processes (since processes aren't available on 2.5).
-
-        Also fix a missing "from __future__ import with_statement' in
-        testfilehandler (unreviewed).
-
-        * Scripts/webkitpy/layout_tests/layout_package/metered_stream.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        * TestResultServer/handlers/testfilehandler.py:
-
-2011-07-05  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        re-enabling new-run-webkit-tests on the Snow Leopard WebKit1 bots
-        now that we believe the stray http-server issue to be solved.
-
-        * Scripts/run-webkit-tests:
-        (useNewRunWebKitTests):
-
-2011-07-05  Adam Barth  <abarth@webkit.org>
-
-        Turns out we need to support numerals too because that's what jQuery
-        uses by default.
-
-        * TestResultServer/handlers/testfilehandler.py:
-
-2011-07-05  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: allow for multiple http shards
-        https://bugs.webkit.org/show_bug.cgi?id=63116
-
-        Reviewed by Tony Chang.
-
-        This modifies the sharding logic to support multiple http
-        shards, but for now we clamp to one shard until we can test
-        perf impact and flakiness impact.
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-        * Scripts/webkitpy/layout_tests/layout_package/manager_unittest.py:
-
-2011-07-05  Dirk Pranke  <dpranke@chromium.org>
-
-        Re-land nrwt: make sharding tests needing locks less hard-coded
-        https://bugs.webkit.org/show_bug.cgi?id=63112
-
-        Reviewed by Ojan Vafai.
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-        * Scripts/webkitpy/layout_tests/layout_package/manager_unittest.py:
-
-2011-07-05  Adam Barth  <abarth@webkit.org>
-
-        TestResultServer should support callback parameter for JSON
-        https://bugs.webkit.org/show_bug.cgi?id=63961
-
-        Reviewed by Ojan Vafai.
-
-        This makes using jQuery.ajax so much more pleasant.
-
-        * TestResultServer/handlers/testfilehandler.py:
-
-2011-07-05  Eric Seidel  <eric@webkit.org>
-
-        buildbot needs to understand whether NRWT exited early after having too many failures
-        https://bugs.webkit.org/show_bug.cgi?id=63839
-
-        Reviewed by Adam Barth.
-
-        Fix-up the exited early messages printed by NRWT so that
-        the buildbot can parse them as expected.
-        It looks for lines using "if line.find('Exiting early') >= 0:"
-
-        I also plumbed the "early exit" status through to results.json
-        in the form of an "interrupted" bool.  It was unclear to me
-        if results.json already had enough information to compute this bool
-        itself.  It's possible Ojan could come up with a better fix.
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-        * Scripts/webkitpy/layout_tests/layout_package/manager_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/result_summary.py:
-
-2011-07-05  Eric Seidel  <eric@webkit.org>
-
-        new-run-webkit-tests fails to start http server if one is already running
-        https://bugs.webkit.org/show_bug.cgi?id=63956
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/kill-old-processes:
-         - Removed ^M line endings and sorted the process names.
-         - There are no functional changes to this file.
-           (except that now that its using unix line endings it can be executed directly!)
-        * Scripts/webkitpy/layout_tests/servers/apache_http_server.py:
-         - Change the name to 'httpd' to match old-run-webkit-test paths.
-
-2011-07-05  Adam Barth  <abarth@webkit.org>
-
-        Add basic ajax support to garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=63874
-
-        Reviewed by Eric Seidel.
-
-        This patch adds some basic infrastructure to garden-o-matic.
-        Currently, the infrastructure is just used to make the "quit" command
-        use Ajax, but in the future, this infrastructure will be used to do
-        more sophistocated remote proceedure calls.
-
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/index.html:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/main.js: Added.
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        * Scripts/webkitpy/tool/servers/reflectionhandler.py:
-
-2011-07-05  Adam Barth  <abarth@webkit.org>
-
-        Add trivial garden-o-matic command (with server)
-        https://bugs.webkit.org/show_bug.cgi?id=63872
-
-        Reviewed by Eric Seidel.
-
-        This patch adds a trivial "Hello, world" garden-o-matic command,
-        complete with an HTTP server.  This command re-uses a bunch of code
-        from the existing rebaseline-server command.  Over time, this command
-        will grow to be a tool useful for gardening the WebKit tree.
-
-        * Scripts/webkitpy/tool/commands/__init__.py:
-        * Scripts/webkitpy/tool/commands/abstractservercommand.py: Added.
-        * Scripts/webkitpy/tool/commands/gardenomatic.py: Added.
-        * Scripts/webkitpy/tool/commands/rebaselineserver.py:
-        * Scripts/webkitpy/tool/servers/data/gardeningserver/index.html: Added.
-        * Scripts/webkitpy/tool/servers/gardeningserver.py: Added.
-        * Scripts/webkitpy/tool/servers/rebaselineserver.py:
-
-2011-07-05  Adam Roben  <aroben@apple.com>
-
-        Make prepare-ChangeLog include modified Perl functions in its ChangeLog template
-
-        This is a very simple first cut. Functions must start with a line that starts with "sub "
-        and end with a line that starts with a closing brace. No leading whitespace is allowed.
-        Package names aren't parsed at all.
-
-        Fixes <http://webkit.org/b/21591> prepare-ChangeLog should know how to find functions in
-        Perl files
-
-        Reviewed by David Kilzer.
-
-        * Scripts/prepare-ChangeLog: Removed redundant code that ignored certain files when
-        searching for function line ranges. This is already done inside the get_function_line_ranges
-        function.
-        (get_function_line_ranges): Cleaned up coding style a little bit. Call
-        get_function_line_ranges_for_perl for files with .pl and .pm extensions. For files with an
-        unknown extension or no extension, read the shebang line to try to determine the script
-        interpreter. Call get_function_line_ranges_for_perl if the interpreter seems to be Perl.
-        (get_function_line_ranges_for_perl): Added. Does extremely basic parsing of the file to find
-        lines starting with "sub " or "}".
-
-2011-07-05  Adam Roben  <aroben@apple.com>
-
-        Clean up run-api-tests output on Windows
-
-        We were mixing run-api-tests output with gtest output, and the result was a mess.
-
-        Fixes <http://webkit.org/b/63954> run-api-tests output is very confusing on Windows
-
-        Reviewed by Dan Bates.
-
-        * Scripts/run-api-tests:
-        (runTest):
-        (populateTests):
-        Made Windows use the formerly-Mac-only codepaths which correctly suppress gtest output
-        except in verbose mode. Most changes are due to indentation. Use of the arch utility is now
-        the only Mac-specific thing in these functions. Some other platform-specific code was moved
-        from here...
-
-        (prepareEnvironmentForRunningTestTool):
-        (testToolPath):
-        ...to here.
-
-2011-07-04  Gavin Barraclough  <barraclough@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        https://bugs.webkit.org/show_bug.cgi?id=16652
-        Firefox and JavaScriptCore differ in Number.toString(integer)
-
-        Added forwarding header.
-
-        * DumpRenderTree/ForwardingHeaders/wtf/StdLibExtras.h: Added.
-
-2011-07-04  Anders Carlsson  <andersca@apple.com>
-
-        Try to fix Qt build.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/NPRuntimeRemoveProperty.cpp:
-
-2011-07-04  Anders Carlsson  <andersca@apple.com>
-
-        NP_RemoveProperty is not called back by Safari when delete npObject.prop is encountered in JavaScript
-        https://bugs.webkit.org/show_bug.cgi?id=63915
-        <rdar://problem/7124300>
-
-        Reviewed by Sam Weinig.
-
-        Extend the NPRuntimeRemoveProperty to handle delete object.property from JavaScript.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-        (PluginTest::NPN_IdentifierIsString):
-        (PluginTest::NPN_UTF8FromIdentifier):
-        (PluginTest::NPN_IntFromIdentifier):
-        (PluginTest::NPN_RetainObject):
-        (PluginTest::NPN_ReleaseObject):
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.h:
-        (PluginTest::Object::removeProperty):
-        (PluginTest::Object::identifierIs):
-        (PluginTest::Object::NP_RemoveProperty):
-        (PluginTest::Object::npClass):
-        * DumpRenderTree/TestNetscapePlugIn/Tests/NPRuntimeRemoveProperty.cpp:
-        (NPRuntimeRemoveProperty::TestObject::TestObject):
-        (NPRuntimeRemoveProperty::TestObject::hasProperty):
-        (NPRuntimeRemoveProperty::TestObject::getProperty):
-        (NPRuntimeRemoveProperty::TestObject::removeProperty):
-        (NPRuntimeRemoveProperty::PluginObject::PluginObject):
-        (NPRuntimeRemoveProperty::PluginObject::~PluginObject):
-        (NPRuntimeRemoveProperty::PluginObject::hasMethod):
-        (NPRuntimeRemoveProperty::PluginObject::invoke):
-        (NPRuntimeRemoveProperty::PluginObject::hasProperty):
-        (NPRuntimeRemoveProperty::PluginObject::getProperty):
-        (NPRuntimeRemoveProperty::NPP_GetValue):
-
-2011-07-04  Leandro Pereira  <leandro@profusion.mobi>
-
-        Reviewed by Kent Tamura.
-
-        [EFL] Add LayoutTestControllerEfl.
-        https://bugs.webkit.org/show_bug.cgi?id=61974
-
-        Only the core features are implemented. Most functions are actually
-        stubs and will be implemented as soon as its features are needed.
-        Build system changes will be made as soon as DRT is completely
-        upstreamed.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp: Added.
-        (LayoutTestController::~LayoutTestController):
-        (LayoutTestController::addDisallowedURL):
-        (LayoutTestController::clearBackForwardList):
-        (LayoutTestController::copyDecodedHostName):
-        (LayoutTestController::copyEncodedHostName):
-        (LayoutTestController::dispatchPendingLoadRequests):
-        (LayoutTestController::display):
-        (LayoutTestController::counterValueForElementById):
-        (LayoutTestController::keepWebHistory):
-        (LayoutTestController::computedStyleIncludingVisitedInfo):
-        (LayoutTestController::nodesFromRect):
-        (LayoutTestController::layerTreeAsText):
-        (LayoutTestController::pageNumberForElementById):
-        (LayoutTestController::numberOfPages):
-        (LayoutTestController::pageProperty):
-        (LayoutTestController::isPageBoxVisible):
-        (LayoutTestController::pageSizeAndMarginsInPixels):
-        (LayoutTestController::webHistoryItemCount):
-        (LayoutTestController::workerThreadCount):
-        (LayoutTestController::notifyDone):
-        (LayoutTestController::pathToLocalResource):
-        (LayoutTestController::queueLoad):
-        (LayoutTestController::setAcceptsEditing):
-        (LayoutTestController::setAlwaysAcceptCookies):
-        (LayoutTestController::setCustomPolicyDelegate):
-        (LayoutTestController::waitForPolicyDelegate):
-        (LayoutTestController::setScrollbarPolicy):
-        (LayoutTestController::addOriginAccessWhitelistEntry):
-        (LayoutTestController::removeOriginAccessWhitelistEntry):
-        (LayoutTestController::setMainFrameIsFirstResponder):
-        (LayoutTestController::setTabKeyCyclesThroughElements):
-        (LayoutTestController::setUseDashboardCompatibilityMode):
-        (LayoutTestController::setUserStyleSheetEnabled):
-        (LayoutTestController::setUserStyleSheetLocation):
-        (LayoutTestController::setValueForUser):
-        (LayoutTestController::setViewModeMediaFeature):
-        (LayoutTestController::setWindowIsKey):
-        (LayoutTestController::setSmartInsertDeleteEnabled):
-        (waitToDumpWatchdogFired):
-        (LayoutTestController::setWaitToDump):
-        (LayoutTestController::windowCount):
-        (LayoutTestController::setPrivateBrowsingEnabled):
-        (LayoutTestController::setJavaScriptCanAccessClipboard):
-        (LayoutTestController::setXSSAuditorEnabled):
-        (LayoutTestController::setFrameFlatteningEnabled):
-        (LayoutTestController::setSpatialNavigationEnabled):
-        (LayoutTestController::setAllowUniversalAccessFromFileURLs):
-        (LayoutTestController::setAllowFileAccessFromFileURLs):
-        (LayoutTestController::setAuthorAndUserStylesEnabled):
-        (LayoutTestController::setAutofilled):
-        (LayoutTestController::disableImageLoading):
-        (LayoutTestController::setMockDeviceOrientation):
-        (LayoutTestController::setMockGeolocationPosition):
-        (LayoutTestController::setMockGeolocationError):
-        (LayoutTestController::setGeolocationPermission):
-        (LayoutTestController::numberOfPendingGeolocationPermissionRequests):
-        (LayoutTestController::addMockSpeechInputResult):
-        (LayoutTestController::setIconDatabaseEnabled):
-        (LayoutTestController::setJavaScriptProfilingEnabled):
-        (LayoutTestController::setSelectTrailingWhitespaceEnabled):
-        (LayoutTestController::setPopupBlockingEnabled):
-        (LayoutTestController::setPluginsEnabled):
-        (LayoutTestController::elementDoesAutoCompleteForElementWithId):
-        (LayoutTestController::execCommand):
-        (LayoutTestController::findString):
-        (LayoutTestController::isCommandEnabled):
-        (LayoutTestController::setCacheModel):
-        (LayoutTestController::setPersistentUserStyleSheetLocation):
-        (LayoutTestController::clearPersistentUserStyleSheet):
-        (LayoutTestController::clearAllApplicationCaches):
-        (LayoutTestController::setApplicationCacheOriginQuota):
-        (LayoutTestController::clearApplicationCacheForOrigin):
-        (LayoutTestController::localStorageDiskUsageForOrigin):
-        (LayoutTestController::originsWithApplicationCache):
-        (LayoutTestController::applicationCacheDiskUsageForOrigin):
-        (LayoutTestController::clearAllDatabases):
-        (LayoutTestController::setDatabaseQuota):
-        (LayoutTestController::originsWithLocalStorage):
-        (LayoutTestController::deleteAllLocalStorage):
-        (LayoutTestController::deleteLocalStorageForOrigin):
-        (LayoutTestController::observeStorageTrackerNotifications):
-        (LayoutTestController::syncLocalStorage):
-        (LayoutTestController::setDomainRelaxationForbiddenForURLScheme):
-        (LayoutTestController::goBack):
-        (LayoutTestController::setDefersLoading):
-        (LayoutTestController::setAppCacheMaximumSize):
-        (LayoutTestController::pauseAnimationAtTimeOnElementWithId):
-        (LayoutTestController::pauseTransitionAtTimeOnElementWithId):
-        (LayoutTestController::sampleSVGAnimationForElementAtTime):
-        (LayoutTestController::numberOfActiveAnimations):
-        (LayoutTestController::suspendAnimations):
-        (LayoutTestController::resumeAnimations):
-        (LayoutTestController::overridePreference):
-        (LayoutTestController::addUserScript):
-        (LayoutTestController::addUserStyleSheet):
-        (LayoutTestController::setDeveloperExtrasEnabled):
-        (LayoutTestController::setAsynchronousSpellCheckingEnabled):
-        (LayoutTestController::showWebInspector):
-        (LayoutTestController::closeWebInspector):
-        (LayoutTestController::evaluateInWebInspector):
-        (LayoutTestController::evaluateScriptInIsolatedWorld):
-        (LayoutTestController::removeAllVisitedLinks):
-        (LayoutTestController::callShouldCloseOnWebView):
-        (LayoutTestController::apiTestNewWindowDataLoadBaseURL):
-        (LayoutTestController::apiTestGoToCurrentBackForwardItem):
-        (LayoutTestController::setWebViewEditable):
-        (LayoutTestController::markerTextForListItem):
-        (LayoutTestController::authenticateSession):
-        (LayoutTestController::setEditingBehavior):
-        (LayoutTestController::abortModal):
-        (LayoutTestController::hasSpellingMarker):
-        (LayoutTestController::hasGrammarMarker):
-        (LayoutTestController::dumpConfigurationForViewport):
-        (LayoutTestController::setSerializeHTTPLoads):
-        (LayoutTestController::setMinimumTimerInterval):
-        (LayoutTestController::setTextDirection):
-        (LayoutTestController::allowRoundingHacks):
-
-2011-06-24  Vsevolod Vlasov  <vsevik@chromium.org>
-
-        Unreviewed, add myself as committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-07-03  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r90347.
-        http://trac.webkit.org/changeset/90347
-        https://bugs.webkit.org/show_bug.cgi?id=63886
-
-        Build breaks on Leopard, Chromium-win, WinCairo, and WinCE.
-        (Requested by tkent on #webkit).
-
-        * DumpRenderTree/ForwardingHeaders/wtf/StdLibExtras.h: Removed.
-
-2011-07-03  Daniel Bates  <dbates@webkit.org>
-
-        Import Checkout in scm_unittests.py and logging in svn.py to fix
-        Python missing global variable errors
-
-        Rubber-stamped by Adam Barth.
-
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py: Import Checkout.
-        * Scripts/webkitpy/common/checkout/scm/svn.py: Import logging.
-
-2011-07-02  Gavin Barraclough  <barraclough@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        https://bugs.webkit.org/show_bug.cgi?id=16652
-        Firefox and JavaScriptCore differ in Number.toString(integer)
-
-        Added forwarding header.
-
-        * DumpRenderTree/ForwardingHeaders/wtf/StdLibExtras.h: Added.
-
-2011-04-02  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Benjamin Poulain.
-
-        [Qt] Support third-party cookie policy for Qt clients
-        https://bugs.webkit.org/show_bug.cgi?id=45455
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::setAlwaysAcceptCookies):
-        (LayoutTestController::setAlwaysBlockCookies):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2011-07-03  Adam Barth  <abarth@webkit.org>
-
-        Factor ReflectionHandler out of the rebaseline server.  Just code motion.
-
-        * Scripts/webkitpy/tool/commands/rebaselineserver.py:
-        * Scripts/webkitpy/tool/servers/rebaselineserver.py:
-        * Scripts/webkitpy/tool/servers/reflectionhandler.py: Added.
-
-2011-07-03  Adam Barth  <abarth@webkit.org>
-
-        Move the rebaseline server out of the commands package and into the
-        (new) servers package.  This patch prepares for refactoring this code
-        to share server infrastructure with the (forthcoming) garden-o-matic
-        command.
-
-        * Scripts/webkitpy/tool/commands/rebaselineserver.py:
-        * Scripts/webkitpy/tool/servers/__init__.py: Added.
-        * Scripts/webkitpy/tool/servers/data/rebaselineserver/loupe.js:
-        * Scripts/webkitpy/tool/servers/data/rebaselineserver/main.css:
-        * Scripts/webkitpy/tool/servers/data/rebaselineserver/queue.js:
-        * Scripts/webkitpy/tool/servers/rebaselineserver.py: Added.
-
-2011-07-01  Adam Barth  <abarth@webkit.org>
-
-        Fix typo in master.cfg, hoping to trigger a master restart.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-07-01  Adam Barth  <abarth@webkit.org>
-
-        Turn off new-run-webkit-tests and remove some debug logging.
-
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitpy/layout_tests/port/http_lock.py:
-
-2011-07-01  Adam Barth  <abarth@webkit.org>
-
-        Add some more debug logging to try to understand why we're getting
-        stuck acquring the HTTP lock.
-
-        * Scripts/webkitpy/layout_tests/port/http_lock.py:
-
-2011-07-01  Adam Barth  <abarth@webkit.org>
-
-        Refactor NRWT parsing logic in master.cfg to understand that run-webkit-tests might run NRWT
-        https://bugs.webkit.org/show_bug.cgi?id=63854
-
-        Reviewed by Dirk Pranke.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-07-01  Eric Seidel  <eric@webkit.org>
-
-        new-run-webkit-tests results does not understand that mac uses test_expectations files
-        https://bugs.webkit.org/show_bug.cgi?id=63838
-
-        Reviewed by Adam Barth.
-
-        We've decided to "enable" test_expectations for the Mac port for now.
-        It makes the results.html results much more confusing to read, but at least they're
-        no longer lying to us.
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-
-2011-07-01  Adam Barth  <abarth@webkit.org>
-
-        Temporarily disable waiting for ReportCrash to see how this code
-        affects performance on the bots.
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-        * Scripts/webkitpy/layout_tests/layout_package/worker.py:
-
-2011-07-01  Dmitry Lomov  <dslomov@google.com>
-
-        Reviewed by Adam Roben.
-
-        https://bugs.webkit.org/show_bug.cgi?id=63818
-        Test bots shouldn't attempt to build TestWebKitAPI on Windows.
-        TestWebKitAPI builds as a part of general webkit build and is a
-        part of build products archive.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        * Scripts/run-api-tests:
-
-2011-07-01  Adam Barth  <abarth@webkit.org>
-
-        We shouldn't wait for ReportCrash while the timeout is running
-        https://bugs.webkit.org/show_bug.cgi?id=63837
-
-        Reviewed by Eric Seidel.
-
-        Instead, we should move this check to worker.py.
-
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
-        * Scripts/webkitpy/layout_tests/layout_package/worker.py:
-
-2011-07-01  Adam Roben  <aroben@apple.com>
-
-        Stop setting unsafe headers on POSTs via XHR from TestFailures page
-
-        Fixes <http://webkit.org/b/63833> TestFailures page causes a bunch of spew in the
-        Inspector's console about unsafe headers
-
-        Reviewed by Dan Bates.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Utilities.js:
-        (fetchResource): Removed unnecessary code to set Content-Length and Connection headers.
-
-2011-07-01  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Switch Snow Leopard over to new-run-webkit-tests (except for wk2)
-        https://bugs.webkit.org/show_bug.cgi?id=63786
-
-        We're down to one bug blocking the "move to NRWT" bug:
-        https://bugs.webkit.org/show_bug.cgi?id=34984
-        so we're trying transitioning Snow Leopard to NRWT as an experiment.
-
-        If we run into any blocking issues we'll of course roll this back out
-        (or anyone reading this should feel encouraged to).
-
-        * Scripts/run-webkit-tests:
-
-2011-07-01  Adam Barth  <abarth@webkit.org>
-
-        Add a compat shim for --leaks.  Support for --leaks will be added in
-        https://bugs.webkit.org/show_bug.cgi?id=63832.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-07-01  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        ReportCrash destabilizes new-run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=63795
-
-        ReportCrash chews up too many system resources that it destablizes
-        tests run concurrently.  This patch causes us to spin down all the
-        worker processes when ReportCrash is running.
-
-        Also, this patch causes the master process to tell the user we're
-        waiting for the crash reporter rather than having that be the worker's
-        job.  This stops the user from getting spammed with too many "waiting
-        for crash reporter" messages and also cleans up some minor UI issues
-        with the meter.
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-
-2011-07-01  Adam Roben  <aroben@apple.com>
-
-        Teach webkitpy about the new format of our ChangeLog template
-
-        r90229 moved the "Need a short description and bug URL" line to the top of the ChangeLog
-        template. But webkitpy didn't know this, so the various rollout-related commands were
-        leaving that line in the ChangeLog.
-
-        Fixes <http://webkit.org/b/63815> REGRESSION (r90229): webkit-patch rollout and sheriffbot
-        rollout are broken
-
-        Reviewed by Dan Bates.
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        (ChangeLog.update_with_unreviewed_message): Changed to look for the "Need a short
-        description and bug URL" line instead of the "Reviewed by" line as the first line of the
-        ChangeLog template.
-
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-        (ChangeLogTest): Updated _new_entry_boilerplate to match what prepare-ChangeLog now
-        generates.
-
-2011-07-01  Adam Roben  <aroben@apple.com>
-
-        Make TestFailures stop loading old builds once we've explained all current failures
-
-        We used to do this, but some refactoring in r90165 broke this logic.
-
-        Fixes <http://webkit.org/b/63808> REGRESSION (r90165): TestFailures page always loads all
-        builds back to the beginning of time
-
-        Reviewed by Dan Bates.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/LayoutTestHistoryAnalyzer.js:
-        (LayoutTestHistoryAnalyzer.prototype.start): Stop fetching old builds once we're told that
-        all current failures have been explained.
-
-2011-07-01  Adam Roben  <aroben@apple.com>
-
-        commit-log-editor reorders ChangeLog entries in unexpected ways
-        https://bugs.webkit.org/show_bug.cgi?id=63804
-
-        Reviewed by Darin Adler.
-
-        commit-log-editor was changed in r46899 to move the bug title and URL to the top of the
-        commit message in order to make git-based tools, which expect the first line of the commit
-        message to be a summary of the change, to work better. But this reordering of the ChangeLog
-        entry was unpredictable and unexpected.
-
-        I changed prepare-ChangeLog to put the bug title and URL at the top of the ChangeLog entry
-        so that commit-log-editor doesn't have to move them. Then I changed commit-log-editor not to
-        try to move them.
-
-        * Scripts/commit-log-editor: Partially reverted r46899. We no longer save the "Reviewed by"
-        line and try to move it down below the bug title and URL. The order of the text in the
-        ChangeLog is now preserved, except that we insert a "Patch by" line just above the "Reviewed
-        by" line in cases where the committer and author are not the same person.
-
-        * Scripts/prepare-ChangeLog: Moved the "Reviewed by" line down below the bug title and URL.
-
-2011-07-01  Mihnea Ovidenie  <mihnea@adobe.com>
-
-        Reviewed by Adam Roben.
-
-        [CSSRegions] Add build slave
-        https://bugs.webkit.org/show_bug.cgi?id=62372
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-        Add an entry for a release build of Mac.
-
-2011-07-01  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r90213.
-        http://trac.webkit.org/changeset/90213
-        https://bugs.webkit.org/show_bug.cgi?id=63792
-
-        The SL bot has an errant HTTP server holding port 8080
-        (Requested by abarth on #webkit).
-
-        * Scripts/run-webkit-tests:
-
-2011-07-01  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed. Fix WebKit2 GTK build after r90163.
-
-        * MiniBrowser/gtk/WebBundle/WebBundleMain.c:
-        (didCreatePage):
-
-2011-07-01  Adam Barth  <abarth@webkit.org>
-
-        Exit faster when we get a keyboard interrupt.  Previously, we'd open
-        Safari if you ^C NRWT after it found a failure.
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-
-2011-07-01  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Switch Snow Leopard over to new-run-webkit-tests (except for wk2)
-        https://bugs.webkit.org/show_bug.cgi?id=63786
-
-        We're down to one bug blocking the "move to NRWT" bug:
-        https://bugs.webkit.org/show_bug.cgi?id=34984
-        so we're trying transitioning Snow Leopard to NRWT as an experiment.
-
-        If we run into any blocking issues we'll of course roll this back out
-        (or anyone reading this should feel encouraged to).
-
-        * Scripts/run-webkit-tests:
-
-2011-07-01  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r90192.
-        http://trac.webkit.org/changeset/90192
-        https://bugs.webkit.org/show_bug.cgi?id=63788
-
-        Appears to have caused NRWT on Chromium WebKit Vista to hang
-        (Requested by abarth on #webkit).
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-        * Scripts/webkitpy/layout_tests/layout_package/manager_unittest.py:
-
-2011-06-30  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Remove the concept of "being wedged" from new-run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=63767
-
-        Worker processes shouldn't ever become wedged.  My understanding is
-        that this code was originally motivated by the old threading-based
-        design but no longer servers any purpose.
-
-        Note: If we actually have a problem with the test harness getting
-        stuck, buildbot will kill us.
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-        * Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker.py:
-        * Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker_unittest.py:
-
-2011-06-30  Adam Barth  <abarth@webkit.org>
-
-        The win32 implementation of fork is sad about forking test-webkitpy.
-        Hopefully this will heal the bot.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-
-2011-06-30  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Update new-run-webkit-tests now that the wk2 shared skipped list has moved
-        https://bugs.webkit.org/show_bug.cgi?id=63780
-
-        The shared list was moved from mac-wk2 to wk2 as part of
-        http://trac.webkit.org/changeset/90125.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-
-2011-06-30  Kenichi Ishibashi  <bashi@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        Style Checker should flag removal of "developmentRegion = English;" from project.pbxproj.
-        https://bugs.webkit.org/show_bug.cgi?id=62022
-
-        Adds XcodeProjectFileChecker to check removal of "developmentRegion".
-
-        * Scripts/webkitpy/style/checker.py: Added XcodeProjectFileChecker as a checker for *.pbxproj.
-        * Scripts/webkitpy/style/checkers/xcodeproj.py: Added.
-        * Scripts/webkitpy/style/checkers/xcodeproj_unittest.py: Added.
-
-2011-06-30  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        nrwt: make sharding tests needing locks less hard-coded
-        https://bugs.webkit.org/show_bug.cgi?id=63112
-
-        This change also changes the manager logic so that it will
-        drop the server lock as soon as all of the shards requiring
-        the lock have completed.
-
-        This change includes some minor namespace/import changes in the
-        unit tests, and also makes the Manager a new-style object, which
-        it should've been all along.
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-        * Scripts/webkitpy/layout_tests/layout_package/manager_unittest.py:
-
-2011-06-30  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Remove threaded mode from new-run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=63771
-
-        This mode is not used and is buggy.  Rather than carry around a bunch
-        of unused buggy code, we should rip it out and focus on the
-        multiprocess implementation.
-
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker.py:
-        * Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/worker.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-
-2011-06-30  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Clean up output from new-run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=63759
-
-        Printing messages from the child process looks super ugly because of
-        the way the pretty-printer works.  Printing a blank line first is a
-        hack, but it makes things at least partially sane.
-
-        Also, handle the case where calling sample throws an exception.
-
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        * Scripts/webkitpy/layout_tests/port/server_process_unittest.py:
-
-2011-06-27  Diego Gonzalez  <diegohcg@webkit.org>
-
-        Reviewed by Antonio Gomes.
-
-        [Qt] DRT: Provide LayoutTestController::setDefersLoading and ::goBack support
-        https://bugs.webkit.org/show_bug.cgi?id=63489
-
-        Unskipped:
-            loader/navigation-while-deferring-loads.html
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::goBack):
-        (LayoutTestController::setDefersLoading):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2011-06-30  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Dirk Pranke.
-
-        new-run-webkit-tests should stop when I ^C it
-        https://bugs.webkit.org/show_bug.cgi?id=63763
-
-        It still doesn't stop fast enough, but at least with this patch it
-        doesn't run more tests.
-
-        Also, I tweaked the UI that happens when there's a keyboard interrupt
-        to not be amazingly ugly.  There's still a garbage "Te" left on the
-        console, but that's a problem for another day.
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-
-2011-06-30  Adam Roben  <aroben@apple.com>
-
-        Make TestFailures never treat a too-many-failures build as a last-passing build for a test
-
-        Fixes <http://webkit.org/b/63758> TestFailures sometimes incorrectly says that a build was
-        the last passing build for a test, when in fact the test wasn't run due to too many failures
-        causing old-run-webkit-tests to exit early
-
-        Reviewed by Anders Carlsson.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/LayoutTestHistoryAnalyzer.js:
-        (LayoutTestHistoryAnalyzer.prototype._incorporateBuildHistory): If there were too many
-        failures in this build, assume that all the tests failed in the last build would have failed
-        in this build, too, had they been run. Introduced some new local variables to reduce typing,
-        and used them throughout.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/LayoutTestResultsLoader.js:
-        (LayoutTestResultsLoader.prototype.start): Fix a regression from r89841 where we wouldn't
-        correctly remember whether old-run-webkit-tests exited early due to too many failures for
-        builds older than r89610. Also removed an unused parameter while I was at it.
-
-2011-06-30  Adam Roben  <aroben@apple.com>
-
-        Make TestFaiulres only load old-results directories as needed
-
-        Fixes <http://webkit.org/b/63752> Tester pages on TestFailures page load very slowly
-
-        Reviewed by Anders Carlsson.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder.js:
-        (Builder.prototype.getBuildNames): Moved up into the API section of the class. Now just
-        calls through to _getBuildNamesFromResultsDirectory.
-        (Builder.prototype.getOldBuildNames): Added. Just calls through to
-        _getBuildNamesFromResultsDirectory.
-        (Builder.prototype._getBuildNamesFromResultsDirectory): Renamed from getBuildNames. Now
-        takes the directory URL as an argument and only fetches that single URL.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/LayoutTestHistoryAnalyzer.js:
-        (LayoutTestHistoryAnalyzer.prototype.start): Moved most logic to _analyzeBuilds. First
-        analyzes builds from Builder.getBuildNames, then from Builder.getOldBuildNames if needed.
-        (LayoutTestHistoryAnalyzer.prototype._analyzeBuilds): Moved logic here from start. (Most
-        changes are just indentation.) Now takes a callback to call when we've finished analyzing
-        all builds in buildNames so that we can try to fetch more build names if needed.
-
-2011-06-30  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Anders Carlsson.
-
-        Update MiniBrowser and WebKitTestRunner to use the client version constants.
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (browserWindowLoaderClientInit):
-        (browserWindowUIClientInit):
-        * MiniBrowser/gtk/WebBundle/WebBundleMain.c:
-        (didCreatePage):
-        (WKBundleInitialize):
-        * MiniBrowser/gtk/main.c:
-        (createWKContextWithInjectedBundle):
-        * MiniBrowser/mac/AppDelegate.m:
-        (-[BrowserAppDelegate init]):
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * MiniBrowser/mac/WebBundle/WebBundleMain.m:
-        (WKBundleInitialize):
-        * MiniBrowser/win/BrowserView.cpp:
-        (BrowserView::create):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::initialize):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::createOtherPage):
-        (WTR::TestController::initialize):
-
-2011-06-30  Adam Roben  <aroben@apple.com>
-
-        Identify revisions that modified failing tests on TestFailures page
-
-        Fixes <http://webkit.org/b/63716> TestFailures page should try to infer which commit caused
-        a failure by looking at commit logs
-
-        Reviewed by David Kilzer.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestFailures.css:
-        (.existing-bugs-list, .suspect-revisions-list): Made this rule apply to the suspect
-        revisions list, too.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Trac.js:
-        (Trac): Initialize our memory cache.
-        (Trac.prototype.getCommitDataForRevisionRange): Added. Fetches the commit log in RSS form,
-        then parses out the revision number, Trac's idea of the commit title, and the files modified
-        by the commit. (To get the modified files, we rely on the commit message including a
-        prepare-ChangeLog-style file list.)
-        (Trac.prototype.logURL): Added a new formatAsRSS parameter.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Utilities.js:
-        (removePathExtension): Added. Returns a new string with the last dot and everything after it
-        removed.
-        (sorted): Added sortFunction parameter.
-        (Node.prototype.removeAllChildren): Added. Does what it says.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype._displayBuilder): Updated for change to _domForRegressionRange.
-        (ViewController.prototype._domForRegressionRange): Changed argument order to match
-        _domForNewAndExistingBugs. Now takes the list of failing tests and uses it to figure out
-        which revisions modified the failing tests and displays the suspect revisions in a list.
-
-2011-06-30  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Rename should_kill_dump_render_tree to driver_needs_restart in preparation for supporting WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=63743
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures.py:
-        * Scripts/webkitpy/layout_tests/layout_package/worker.py:
-
-2011-06-30  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Anders Carlsson.
-
-        [GTK] Crash observed with nspluginwrapper and flash
-        https://bugs.webkit.org/show_bug.cgi?id=62249
-
-        Added a TestNetscapePlugin test which verifies that WebKit properly
-        handles situations where InvalidateRect is called with a null instance.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/x11/CallInvalidateRectWithNullNPPArgument.cpp: Added.
-        (CallInvalidateRectWithNullNPPArgument::CallInvalidateRectWithNullNPPArgument):
-        (CallInvalidateRectWithNullNPPArgument::NPP_New):
-        * GNUmakefile.am: Add the new file to sources list.
-
-2011-06-30  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Remove redundant tests in TestFailuresTest
-        https://bugs.webkit.org/show_bug.cgi?id=63742
-
-        These tests are all already covered by TestFailuresTest.test_loads.
-        I also added the missing "T" from TestFailuresest. :)
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures_unittest.py:
-
-2011-06-30  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        REGRESSION(r84294): new-run-webkit-tests results.html generate links to diffs.html or diff.png that don't exist
-        https://bugs.webkit.org/show_bug.cgi?id=63494
-
-        This patch does two things:
-
-        1) Refactor diff_image to return the image diff instead of writing the
-        diff to a file.  This fixes a bunch of hacks and disentangles a bunch
-        of code.
-
-        2) When there's a checksum mismatch but not image diff, we no longer
-        report an IMAGE failure to results.html.  That fixes the bug in
-        question because results.html won't try to link to a non-existent image
-        diff.
-
-        * Scripts/webkitpy/common/system/executive_mock.py:
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests.py:
-
-2011-06-28  Hans Wennborg  <hans@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        IndexedDB: Prepare for running layout tests with LevelDB
-        https://bugs.webkit.org/show_bug.cgi?id=63593
-
-        The TestShell must always provide a temporary folder for LevelDB,
-        not just when the backing store type is overridden.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::setOverrideIndexedDBBackingStore):
-        (LayoutTestController::clearAllDatabases):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        * DumpRenderTree/chromium/TestShell.h:
-
-2011-06-30  Zsolt Fehér  <h490267@stud.u-szeged.hu>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [WK2] Create a general wk2 specific LayoutTests/platform/wk2 platform
-        qt-wk2, win-wk2, mac-wk2 use this common Skipped list too
-        https://bugs.webkit.org/show_bug.cgi?id=61785 
-
-        * Scripts/old-run-webkit-tests:
-
-2011-06-30  Adam Roben  <aroben@apple.com>
-
-        Use a colon to separate test names from failure info on TestFailures
-
-        This matches how the "Possibly Flaky Tests" list works, and is much prettier when the
-        failure info itself includes parentheses.
-
-        Fixes <http://webkit.org/b/63722> Crashing symbols on TestFailures page look ugly due to
-        double parentheses
-
-        Reviewed by Darin Adler.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype._domForFailedTest): Use a colon instead of surrounding the failure
-        info in parentheses.
-
-2011-06-30  Adam Roben  <aroben@apple.com>
-
-        Robustify PersistentCache against cached data that contains the string ': '
-
-        Fixes <http://webkit.org/b/63721> Exceptions thrown while loading TestFailures page due to
-        passing a bad string to JSON.parse
-
-        Reviewed by Darin Adler.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/PersistentCache.js:
-        (PersistentCache._parseDateAndJSONFromString): Manually split the string on the separator
-        using indexOf and substring. (String.prototype.split always splits on all instances of the
-        separator.)
-
-2011-06-30  Adam Roben  <aroben@apple.com>
-
-        Include the crashing symbol in crash logs links on TestFailures
-
-        Fixes <http://webkit.org/b/63465> Links to crash logs on TestFailures page should include
-        the crashing symbol (like links in results.html do)
-
-        Reviewed by David Kilzer.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/LayoutTestResultsLoader.js:
-        (LayoutTestResultsLoader.prototype.start): Bumped the cache version because we now store
-        crashing symbols for crashing tests. Renamed testsForResultTable to parseResultTable because
-        it now returns more than just the test names. Specifically, it now looks for crash log links
-        and extracts the crashing symbol name from them. Updated callers of parseResultTable to
-        match its new behavior. Changed to store the crashing symbol along with the failure type in
-        the data we pass to the callback for tests which crashed.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestFailures.css:
-        (code): Make <code> elements a little smaller because their contents can be quite long.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype._domForFailureDiagnosis): Include the crashing symbol inside a
-        <code> element in the link, if there is a crashing symbol.
-
-2011-06-30  Adam Roben  <aroben@apple.com>
-
-        Use objects instead of strings to represent a test result in TestFailures code
-
-        This will eventually allow us to store more than just the type of failure for each test.
-        (E.g., we can store the name of the crashing symbol for tests which crashed.)
-
-        Prep work for <http://webkit.org/b/63465> Links to crash logs on TestFailures page should
-        include the crashing symbol (like links in results.html do)
-
-        Reviewed by David Kilzer.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder.js:
-        (Builder.prototype.failureDiagnosisTextAndURL): Changed to expect a testResult object
-        instead of just a failureType string.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FlakyLayoutTestDetector.js:
-        (FlakyLayoutTestDetector.prototype.incorporateTestResults): Changed to store a
-        testResult-like object for passing tests.
-        (FlakyLayoutTestDetector.prototype.flakinessExamples): Changed to expect testResult-like
-        objects.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/LayoutTestResultsLoader.js:
-        (LayoutTestResultsLoader.prototype.start): Store a version number along with the cached data
-        so we can throw away cached data that's in an old format. Store a testResult object for each
-        test instead of just its failure type.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype._domForFailedTest):
-        (ViewController.prototype._domForFailureDiagnosis):
-        Changed to expect testResult objects instead of failureType strings.
-
-2011-06-30  Adam Roben  <aroben@apple.com>
-
-        Show full commit logs when visiting Trac from TestFailures page
-
-        Fixes <http://webkit.org/b/63715> Links to Trac on TestFailures page
-        should show full commit logs
-
-        Reviewed by David Kilzer.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Trac.js:
-        (Trac.prototype.logURL): Added new 'showFullCommitLogs' parameter. When specified, we add
-        verbose=on to the log URL to tell Trac to show full commit logs.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype._domForRegressionRange): Specify true for showFullCommitLogs.
-
-2011-06-30  Adam Roben  <aroben@apple.com>
-
-        Add a link to file a bug about TestFailures to the TestFailures page
-
-        Fixes <http://webkit.org/b/63466> TestFailures page should include a link to file a bug
-        about TestFailures itself
-
-        Reviewed by Anders Carlsson.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestFailures.css:
-        (aside): Added some styles for the new link. It is positioned in the upper-right and
-        hopefully not to glaringly obvious.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype.loaded): Set up our main content element and auxiliary UI.
-
-        (ViewController.prototype._displayBuilder):
-        (ViewController.prototype._displayTesters):
-        Modify the main content element instead of the entire body, as there are other things in the
-        body that we want to preserve.
-
-        (ViewController.prototype._domForAuxiliaryUIElements): Create and return an <aside> element
-        that contains a link to file a bug about the TestFailures page.
-
-2011-06-30  Adam Roben  <aroben@apple.com>
-
-        Ignore callbacks that correspond to old navigations of the TestFailures page
-
-        Fixes <http://webkit.org/b/63711> TestFailures page sometimes ignores back/forward
-        navigations
-
-        Reviewed by Anders Carlsson.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/LayoutTestHistoryAnalyzer.js:
-        (LayoutTestHistoryAnalyzer.prototype.start): Check the return value of the callback. If the
-        callback returns false, stop fetching more data.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController): Initialize new _navigationID member. This member is used to assign each
-        navigation by the user a unique ID.
-        (ViewController.prototype.parseHash): Increment the navigation ID.
-
-        (ViewController.prototype._displayBuilder):
-        (ViewController.prototype._displayTesters):
-        At the start of these functions, record the current navigation ID. Bail out from callbacks
-        if the navigation ID has changed, indicating that the user has navigated elsewhere.
-
-2011-06-30  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Add back/forward menu to MiniBrowser toolbar
-        https://bugs.webkit.org/show_bug.cgi?id=63445
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (browser_window_init): Use a GtkMenuToolButton for navigation
-        widgets.
-        (browserWindowConstructed): Get the page BackForwardList.
-        (browserWindowHistoryItemActivated): Go to activated history item.
-        (browserWindowHistoryItemSelected): Show the url of currently
-        selected history item in the statusbar.
-        (createGtkActionFromBackForwardItem): Create a GtkAction from a
-        WKBackForwardListItemRef.
-        (browserWindowCreateMenuItemFromBackForwardItem): Create a
-        GtkMenuItem from a WKBackForwardListItemRef.
-        (browserWindowCreateBackForwardMenu): Create a GtkMenu with the
-        given history items.
-        (browserWindowUpdateNavigationActions): Update navigation widgets
-        sensitivity and history menus.
-        (didChangeBackForwardList): Call
-        browserWindowUpdateNavigationActions().
-        (browserWindowLoaderClientInit): Add didChangeBackForwardList
-        callback.
-
-2011-06-30  Dmitry Lomov  <dslomov@google.com>
-
-        Reviewed by Adam Roben.
-
-        https://bugs.webkit.org/show_bug.cgi?id=63660
-        This enables unit-tests step on Windows and MacOS SnowLeopard.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-06-30  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt][WK2] Implement the rest of WTR::PlatformWebView
-        https://bugs.webkit.org/show_bug.cgi?id=63630
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::windowFrame):
-        (WTR::PlatformWebView::setWindowFrame):
-
-2011-06-29  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        test-webkitpy is spamming lots of messages about updating test expectations
-        https://bugs.webkit.org/show_bug.cgi?id=63680
-
-        This patch changes the passing_run() function to capture the
-        output to stdout and stderr and assert that it is empty, and
-        also specifies --no-new-test-results by default to avoid getting
-        "generating baseline" messages for the expected-missing results.
-
-        Also check that we are logging messages when we generate new
-        baselines.
-
-        Also fix a minor bug in the way test_tolerance() was
-        checking for whether the tests were passing or not.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-
-2011-06-29  Yuta Kitamura  <yutak@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        DRT: Make Hixie76WebSocketProtocolEnabled preference flag configurable from LayoutTestController
-        https://bugs.webkit.org/show_bug.cgi?id=63532
-
-        LayoutTestController::overridePreference() will be used to change the value of
-        the Hixie76WebSocketProtocolEnabled preference flag from layout tests. In this way,
-        we can avoid writing a lot of boilerplate code in each port's DumpRenderTree, but
-        at least we need to reset preference values in DumpRenderTree every time we start
-        a new test because preference values changed in some test should not be leaked
-        to the next test.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::overridePreference):
-        The name of preference key is defined in WebKit/{mac/WebView,win}/WebPreferenceKeysPrivate.h.
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        Set the default value. This will be called from TestShell::resetTestController().
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues): Set the default value.
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues): Ditto.
-
-2011-06-29  Kenichi Ishibashi  <bashi@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        check-webkit-style fails to detect https://webkit.org/b/XXXXX as a bug number
-        https://webkit.org/b/57360
-
-        Modify the regular expression to match https scheme.
-
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py: Added a test case for https://webkit.org/b/XXXXX.
-        * Scripts/webkitpy/common/config/urls.py: Modified bug_url_short to match https scheme.
-
-2011-06-29  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        new-run-webkit-tests: images page switch actual and expected images before they're loaded
-        https://bugs.webkit.org/show_bug.cgi?id=63199
-
-        We now preload the images and keep the DOM nodes in memory instead of
-        going back to the MemoryCache all the time.  (Also, remove some nutty
-        </img> HTML.)
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py:
-
-2011-06-29  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        new-run-webkit-tests should tell you when it creates new expectations
-        https://bugs.webkit.org/show_bug.cgi?id=63675
-
-        Unforunately, this patch creates a bunch of test-webkitpy spam because
-        we don't understand how Python logging works well enough to stop the
-        spam.  :(
-
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
-
-2011-06-29  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Refactor WebKitDriver.run_test into smaller pieces
-        https://bugs.webkit.org/show_bug.cgi?id=63673
-
-        There is no functional change here.  Just moving code around.
-        This is in preparation for adding support for #CRASHED and #CRASHED - WebProcess
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-06-29  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Simplify skipped file finding in preparation for adding wk2 skipped list fallback
-        https://bugs.webkit.org/show_bug.cgi?id=63501
-
-        Re-landing after fixing a bug in WebKitPort.baseline_search_path which broke
-        the rebaselineserver unit tests.  Also fixed nits brought up by Dirk after previous landing.
-
-        The goal was to add support for wk2 skipped lists.
-        However, I found that our skipped list computation was a
-        manual hack (which only worked for the mac port).
-
-        So I fixed a FIXME to move the skipped list finding
-        into WebKitPort instead of MacPort.
-        Doing so required the concept of a "port_name", since previously
-        the only name accessible from a port object was name()
-        which includes many things beyond "mac" or "chromium", etc.
-
-        Eventually I believe we'll want to re-think the way that we pass
-        in a port_name argument to Port subclasses and expect them to parse
-        it.  But for now I just added a cls.port_name variable which contains
-        the static information needed to compute wk2 names as well as
-        compute Skipped list fallback which works for Mac/Win/Qt and Gtk.
-
-        In order to test my new _skipped_file_search_paths method, I
-        fixed another FIXME by making it return relative paths.
-
-        I also fixed the test_expectations_path code in WebKitPort to use port_name.
-        It was using name() which would return PORT-VERSION so MacPort was overriding
-        it to use just PORT.  After fixing test_expectations_path to use port_name
-        (and making it aware of webkit2) I was able to remove the MacPort implementation.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-         - Add port_name() to access "mac", since name() returns "mac-leopard" etc.
-         - Document that real_name() seems to have no purpose.
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-         - Add _parse_port_name(), eventually we might call this from WebKitPort directly.
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-         - Add _parse_port_name.
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-         - Add _parse_port_name.
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-         - Move Skipped-file finding code down to WebKitPort
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-
-2011-06-29  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r90070.
-        http://trac.webkit.org/changeset/90070
-        https://bugs.webkit.org/show_bug.cgi?id=63676
-
-        Broke test-webkitpy rebaseline tests (Requested by eseidel2 on
-        #webkit).
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        * Scripts/webkitpy/tool/commands/rebaselineserver_unittest.py:
-
-2011-06-29  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        new-run-webkit-tests doesn't support sample-on-timeout
-        https://bugs.webkit.org/show_bug.cgi?id=56731
-
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        * Scripts/webkitpy/layout_tests/port/server_process_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-06-29  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Simplify skipped file finding in preparation for adding wk2 skipped list fallback
-        https://bugs.webkit.org/show_bug.cgi?id=63501
-
-        The goal was to add support for wk2 skipped lists.
-        However, I found that our skipped list computation was a
-        manual hack (which only worked for the mac port).
-
-        So I fixed a FIXME to move the skipped list finding
-        into WebKitPort instead of MacPort.
-        Doing so required the concept of a "port_name", since previously
-        the only name accessible from a port object was name()
-        which includes many things beyond "mac" or "chromium", etc.
-
-        Eventually I believe we'll want to re-think the way that we pass
-        in a port_name argument to Port subclasses and expect them to parse
-        it.  But for now I just added a cls.port_name variable which contains
-        the static information needed to compute wk2 names as well as
-        compute Skipped list fallback which works for Mac/Win/Qt and Gtk.
-
-        In order to test my new _skipped_file_search_paths method, I
-        fixed another FIXME by making it return relative paths.
-
-        I also fixed the test_expectations_path code in WebKitPort to use port_name.
-        It was using name() which would return PORT-VERSION so MacPort was overriding
-        it to use just PORT.  After fixing test_expectations_path to use port_name
-        (and making it aware of webkit2) I was able to remove the MacPort implementation.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-         - Add port_name() to access "mac", since name() returns "mac-leopard" etc.
-         - Document that real_name() seems to have no purpose.
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-         - Add _parse_port_name(), eventually we might call this from WebKitPort directly.
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-         - Add _parse_port_name.
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-         - Add _parse_port_name.
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-         - Move Skipped-file finding code down to WebKitPort
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-
-2011-06-29  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Dirk Pranke.
-
-        new-run-webkit-tests complains about missing pixel results instead of plopping down new expectations
-        https://bugs.webkit.org/show_bug.cgi?id=38063
-
-        This patch changes new-run-webkit-tests to match old-run-webkit-tests
-        in generating new expected results when the expected results are
-        missing.
-
-        There are still a couple details that are different:
-
-        1) Image baselines aren't generated unless you run with -p.
-        2) Render tree dumps are places in the cross-platform directory instead
-        of the platform-specific directory.
-
-        I'm inclined to deal with both of these issues in follow-up patches.
-
-        * Scripts/webkitpy/common/net/layouttestresults.py:
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_results.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-
-2011-06-29  Adam Roben  <aroben@apple.com>
-
-        Teach TestFailures to detect possibly flaky tests and list them separately
-
-        Fixes <http://webkit.org/b/61061> <rdar://problem/9452796> TestFailures page blames
-        arbitrary revisions for breaking flaky tests
-
-        Reviewed by Dan Bates.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/FlakyLayoutTestDetector.js: Added.
-        (FlakyLayoutTestDetector): This class identifies flaky tests when given the test results
-        from various builds (in reverse-chronological order).
-        (FlakyLayoutTestDetector.prototype.incorporateTestResults): Detects flaky tests. Tests move
-        monotonically through three states: LastSeenFailing, LastSeenPassing, and PossiblyFlaky.
-        (FlakyLayoutTestDetector.prototype.flakinessExamples): Finds examples of flakiness for the
-        given test. Essentially, finds all the transitions from passing to failing (or vice-versa)
-        and puts them in an array in reverse-chronological order.
-        (FlakyLayoutTestDetector.prototype.get possiblyFlakyTests): Returns all tests we've detected
-        to be possibly flaky.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/LayoutTestHistoryAnalyzer.js:
-        (LayoutTestHistoryAnalyzer): Initialize new members.
-        (LayoutTestHistoryAnalyzer.prototype.start): Now passes the callback an object with two
-        properties: history and possiblyFlaky. history holds the data this function used to pass to
-        the callback, while possiblyFlaky lists all tests that might be flaky and examples of their
-        flakiness. Updated documentation comment to match.
-        (LayoutTestHistoryAnalyzer.prototype._incorporateBuildHistory): Now uses a
-        FlakyLayoutTestDetector to identify possibly flaky tests. Any possibly flaky tests are
-        removed from the failure history, since when they started failing is no longer meaningful.
-        We tell our caller to keep calling until all current failures have been explained and we've
-        gone through 5 builds without any new flaky tests being identified.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Utilities.js:
-        (sorted): New helper function to return a sorted copy of an array.
-        (Array.prototype.findLast): New helper function. Like findFirst, but finds the last item
-        that matches the predicate.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype._displayBuilder): Updated for change in the object passed to us by
-        the analyzer. Now puts the list of possibly flaky tests after the failure history.
-        (ViewController.prototype._domForFailedTest): Moved some code from here...
-        (ViewController.prototype._domForFailureDiagnosis): ...to here.
-        (ViewController.prototype._domForPossiblyFlakyTests): New function, builds up a list of
-        possibly flaky tests and examples of their flakiness and returns it.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/index.html: Pull in
-        FlakyLayoutTestDetector.js.
-
-2011-06-29  Eric Seidel  <eric@webkit.org>
-
-        Adam says cowboys don't review (or unit test).
-
-        * Scripts/webkitpy/tool/commands/download.py:
-
-2011-06-29  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Make port/config.py mockable for easier unit testing
-        https://bugs.webkit.org/show_bug.cgi?id=63661
-
-        Fix an exception from the unit tests.
-
-        * Scripts/webkitpy/layout_tests/port/config.py:
-
-2011-06-29  Brent Fulgham  <bfulgham@webkit.org>
-
-        Unreviewed build correction.
-
-        * DumpRenderTree/win/ImageDiffWinCairoCommon.vsprops:
-        Link against zlib1.dll, not the static zlib.lib.
-
-2011-06-29  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Make port/config.py mockable for easier unit testing
-        https://bugs.webkit.org/show_bug.cgi?id=63661
-
-        Right now config.py leaks real system paths for
-        webkit_base_dir due to using __file__.  This patch
-        adds a filsystem.py wrapper around __file__ so that
-        we don't have to jump through hoops in webkit_unittest.py
-        to avoid leaking local paths to the unit test results.
-
-        There are probably many more places where we should now
-        use filesystem.path_for_module, but starting with just this one.
-
-        * Scripts/webkitpy/common/system/filesystem.py:
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        * Scripts/webkitpy/layout_tests/port/config.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        * Scripts/webkitpy/tool/commands/rebaselineserver_unittest.py:
-
-2011-06-29  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Remove duplicate methods in filesystem.py
-        https://bugs.webkit.org/show_bug.cgi?id=63658
-
-        Looks like there was a bad merge at some point.
-
-        I also removed a bunch of redundant docstrings.
-
-        * Scripts/webkitpy/common/system/filesystem.py:
-
-2011-06-29  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Pass --no-new-test-results to NRWT on build.webkit.org
-        https://bugs.webkit.org/show_bug.cgi?id=63653
-
-        This is in preparation for https://bugs.webkit.org/show_bug.cgi?id=38063.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-06-29  Xan Lopez  <xlopez@igalia.com>
-
-        Reviewed by Adam Barth.
-
-        [GTK] overlapping drag&drop tests fail on NRWT
-        https://bugs.webkit.org/show_bug.cgi?id=57640
-
-        Make a GTK test driver that spawns one Xvfb instance per
-        thread. This avoids bad interactions in DnD tests between threads.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-
-2011-06-29  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r89888.
-        http://trac.webkit.org/changeset/89888
-        https://bugs.webkit.org/show_bug.cgi?id=63609
-
-         "Seems to be causing merging issues on the dashboard, e.g.
-        http://test-
-        results.appspot.com/dashboards/flakiness_dashboard.html#group=%40ToT%20-%20chromium.org&tests=fast%2Fcanvas"
-        (Requested by aboxhall on #webkit).
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator_unittest.py:
-
-2011-06-29  Philippe Normand  <pnormand@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [webkitpy] Executive.running_pids() sometimes doesn't correctly process "ps" output
-        https://bugs.webkit.org/show_bug.cgi?id=63624
-
-        * Scripts/webkitpy/common/system/executive.py: In some cases the
-        ps output lines can contain one or more leading white-spaces, so
-        strip it before splitting the pid and command name.
-
-2011-06-29  Noel Gordon  <noel.gordon@gmail.com>
-
-        Reviewed by Kent Tamura.
-
-        [Chromium] [DRT] ImageDiff should compile in VS2010
-        https://bugs.webkit.org/show_bug.cgi?id=63614
-
-        * DumpRenderTree/chromium/ImageDiff.cpp: Include <iterator> for back_inserter.
-
-2011-06-27  Diego Gonzalez  <diegohcg@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] DRT support for setInteractiveFormValidationEnabled
-        https://bugs.webkit.org/show_bug.cgi?id=63496
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-
-2011-06-28  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Make new-run-webkit-tests -2 actually use WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=63572
-
-        new-run-webkit-tests -2 works with this change.  However a zillion
-        tests fail since it can't find the right skipped lists for wk2.
-        The Skipped-list fixing is covered in bug 63501.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-06-28  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Add more machines to Chromium Mac Release and Chromium Mac Release (Tests)
-        https://bugs.webkit.org/show_bug.cgi?id=63500
-
-        Added google-mac-3 and google-mac-4.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2011-06-28  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Dirk Pranke.
-
-        Remove webkitpy's tiger support now that WebKit no longer supports tiger
-        https://bugs.webkit.org/show_bug.cgi?id=63568
-
-        I don't think our support actually fully worked anyway.  Regardless
-        tiger is dead now (thankfully)!
-
-        I also unwrapped some short lines and added a couple FIXMEs while
-        touring the code.
-
-        No new tests, only removing old ones which tested our Tiger support.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        * Scripts/webkitpy/tool/commands/rebaselineserver_unittest.py:
-
-2011-06-28  Eric Seidel  <eric@webkit.org>
-
-        Unreviewed, just fixing a typo.
-
-        Fix misspellings of "thead" to "thread".
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-06-28  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests needs a --webkit-test-runner option
-        https://bugs.webkit.org/show_bug.cgi?id=63439
-
-        This was accidentally fixed in bug 63501 as well.
-        The root problem here was that the webkit unit tests were not using
-        enough mocks.  I've fixed them here to use more mocks
-        which should unbreak windows.
-
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-
-2011-06-28  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests should not run mthml tests when MHTML support is disabled
-        https://bugs.webkit.org/show_bug.cgi?id=63549
-
-        This way mhtml tests won't show up as "missing" results on all non-chromium platforms.
-        I happen to go looking for what code was deciding that .mht was a supported
-        extension, found test_files.py and then removed some redundant doc-strings and
-        if branching.
-
-        * Scripts/webkitpy/layout_tests/port/test_files.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-
-2011-06-28  Roland Steiner  <rolandsteiner@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Fix filesystem_unittest.FileSystemTest test_read_and_write_file()
-        https://bugs.webkit.org/show_bug.cgi?id=63514
-
-        - change write_text_file to write_binary_file
-        - check that text_path and binary_path are actually existant files
-        - change cleanup block from 'except' to 'finally'
-
-        * Scripts/webkitpy/common/system/filesystem_unittest.py:
-
-2011-06-28  Adam Roben  <aroben@apple.com>
-
-        Roll out r89924 and r89925
-
-        I didn't mean to commit them!
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/LayoutTestHistoryAnalyzer.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Utilities.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-
-2011-06-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        NRWT should wait for ReportCrash
-        https://bugs.webkit.org/show_bug.cgi?id=63495
-
-        When a test crashes on Mac, ReportCrash confuses us into thinking the
-        test times out.
-
-        I'm not sure how to test this in a meaningful way in our current test
-        harness...
-
-        * Scripts/webkitpy/common/system/crashlogs.py:
-        * Scripts/webkitpy/common/system/crashlogs_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-
-2011-06-27  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r89881.
-        http://trac.webkit.org/changeset/89881
-        https://bugs.webkit.org/show_bug.cgi?id=63513
-
-        Makes Qt massively slow (Requested by abarth on #webkit).
-
-        * Scripts/webkitpy/common/system/crashlogs.py:
-        * Scripts/webkitpy/common/system/crashlogs_unittest.py:
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-
-2011-06-27  Alice Boxhall  <aboxhall@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Convert json_results_generator.py to output version 4 JSON.
-        https://bugs.webkit.org/show_bug.cgi?id=60869
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator_unittest.py:
-
-2011-06-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        NRWT should wait for ReportCrash
-        https://bugs.webkit.org/show_bug.cgi?id=63495
-
-        When a test crashes on Mac, ReportCrash confuses us into thinking the
-        test times out.
-
-        I'm not sure how to test this in a meaningful way in our current test
-        harness...
-
-        * Scripts/webkitpy/common/system/crashlogs.py:
-        * Scripts/webkitpy/common/system/crashlogs_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-
-2011-06-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        new-run-webkit-tests should upload crash logs
-        https://bugs.webkit.org/show_bug.cgi?id=55907
-
-        NRWT used to have a different name for crash logs.  I've changed the
-        name to patch ORWT.
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-
-2011-06-27  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        new-run-webkit-tests needs a --webkit-test-runner option
-        https://bugs.webkit.org/show_bug.cgi?id=63439
-
-        NRWT doesn't actually know how to run with the WebKitTestRunner yet
-        but it does have a --webkit-test-runner option and will build WebKitTestRunner correctly.
-
-        There is a bunch of other little cleanup in this patch which I added as I
-        took a tour through all of our hard-coded DumpRenderTree strings.
-
-        * Scripts/webkitpy/common/net/layouttestresults.py: Added FIXME.
-        * Scripts/webkitpy/common/system/outputcapture.py: Fixed spacing to pass PEP8.
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py: Made the FIXME slightly stronger (bad bug).
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py: test_shell is dead.
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures.py: Unwrapped silly wrapping.
-        * Scripts/webkitpy/layout_tests/port/base.py: Removed two dead methods.
-        * Scripts/webkitpy/layout_tests/port/config.py:
-         - build_dumprendertree had no business in this class, removed it.
-         - Exposed _FLAGS_FROM_CONFIGURATIONS through flag_for_configuration()
-         - Exposed _script_path as script_path() (this probably belongs elsewhere).
-        * Scripts/webkitpy/layout_tests/port/config_unittest.py:
-         - Moved these tests to webkit_unittests.
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-         - Now respects the --webkit-test-runner option.
-         - setup_test_run is empty in base.py too, no need to override it.
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-         - Test the new hotness.
-         - Bad, bad, bad!  The old code was using a real Executive during unit-testing!
-           I think this code is still hitting disk during the unit tests. :(
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-         - Add the option.
-        * Scripts/webkitpy/tool/bot/queueengine_unittest.py:
-         - Remove optional args option.
-        * Scripts/webkitpy/tool/commands/commandtest.py:
-         - Remove optional args option.
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-         - Remove optional args option.
-
-2011-06-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Dirk Pranke.
-
-        new-run-webkit-tests does not report stderr output
-        https://bugs.webkit.org/show_bug.cgi?id=37739
-
-        Almost all the infrastructure appears to be in place to report stderr
-        in results.html.  We just need to wire up a bool to tell results.html
-        to create the hyperlink.
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_results.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-
-2011-06-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Dirk Pranke.
-
-        webkitpy unit tests should have more descriptive names than just "Test"
-        https://bugs.webkit.org/show_bug.cgi?id=63479
-
-        Luckily we kept these classes in separate namespaces in the harness so
-        we were actually running them all even though they had the same name.
-
-        * Scripts/webkitpy/common/system/stack_utils_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_results_unittest.py:
-
-2011-06-27  Greg Simon  <gregsimon@chromium.org>
-
-        No review necessary.
-
-        Add email addr to contributor list
-        https://bugs.webkit.org/show_bug.cgi?id=63478
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-06-27  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r89834.
-        http://trac.webkit.org/changeset/89834
-        https://bugs.webkit.org/show_bug.cgi?id=63476
-
-        Broke test-webkitpy (Requested by abarth on #webkit).
-
-        * Scripts/webkitpy/common/net/layouttestresults.py:
-        * Scripts/webkitpy/common/system/outputcapture.py:
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/config.py:
-        * Scripts/webkitpy/layout_tests/port/config_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/tool/bot/queueengine_unittest.py:
-        * Scripts/webkitpy/tool/commands/commandtest.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2011-06-27  Jeff Miller  <jeffm@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Stop copying obsolete WebKit libraries on Windows
-        https://bugs.webkit.org/show_bug.cgi?id=63474
-        
-        Don't copy obsolete WebKit library directories and files on Windows, they no longer exist and just generate extraneous warnings. These include the CharacterSets directory, dnssd.dll, and icudt40.dll.
-
-        * DumpRenderTree/win/DumpRenderTreePostBuild.cmd:
-        * MiniBrowser/MiniBrowserPostBuild.cmd:
-        * WebKitTestRunner/win/WebKitTestRunnerPostBuild.cmd:
-
-2011-06-27  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Add Wyatt Carss to the list of non-committer contributors.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-06-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        webkitpy should understand crash logs
-        https://bugs.webkit.org/show_bug.cgi?id=63468
-
-        We're planning to use this functionality to upload crash logs along
-        with test results for new-run-webkit-tests.
-
-        * Scripts/webkitpy/common/system/crashlog.py: Added.
-        * Scripts/webkitpy/common/system/crashlog_unittest.py: Added.
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        * Scripts/webkitpy/common/system/filesystem.py:
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        * Scripts/webkitpy/tool/commands/queries.py:
-
-2011-06-27  Adam Roben  <aroben@apple.com>
-
-        Make LayoutTestResultsLoader cache whether old-run-webkit-tests exited early due to too many
-        failures
-
-        Fixes <http://webkit.org/b/63470> TestFailures page for a particular builder forgets
-        old-run-webkit-tests exited early after reload
-
-        Reviewed by Anders Carlsson.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/LayoutTestResultsLoader.js:
-        (LayoutTestResultsLoader.prototype.start): Store both the set of failing tests and whether
-        old-run-webkit-tests exited early due to too many failures in PersistentCache.
-
-2011-06-27  Adam Roben  <aroben@apple.com>
-
-        Make TestFailures load build names from build.webkit.org/old-results too
-
-        Build results are periodically moved from results to old-results. This change makes those
-        builds still visible to TestFailures.
-
-        Fixes <http://webkit.org/b/63453> TestFailures page doesn't show information for builds that
-        have been moved to build.webkit.org/old-results
-
-        Reviewed by Anders Carlsson.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder.js:
-        (Builder.prototype.getBuildNames): Extracted code to parse build names from a
-        build.webkit.org directory listing into a separate function. Instead of omitting .zip files,
-        we now only include directory entries whose names are parseable as build names (since
-        old-results sometimes contains other random files/directories from who knows what). We now
-        fetch both results and old-results (with a FIXME about loading old-results on demand),
-        extract build names from each, and concatenate the two sets of names.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/WebKitBuildbot.js:
-        (WebKitBuildbot.prototype.parseBuildName): Changed to return null when the build name isn't
-        parseable, rather than throwing an exception.
-
-2011-06-26  Adam Roben  <aroben@apple.com>
-
-        Store analyzed history directly in LayoutTestHistoryAnalyzer instead of in a generic cache
-
-        It seems silly to have a whole generic cache just to store a single object.
-
-        Fixes <http://webkit.org/b/63407> LayoutTestHistoryAnalyzer has a generic cache but doesn't
-        need one
-
-        Reviewed by Anders Carlsson.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/LayoutTestHistoryAnalyzer.js:
-        (LayoutTestHistoryAnalyzer): Replaced this._cache with this._history.
-        (LayoutTestHistoryAnalyzer.prototype.start): Ditto.
-        (LayoutTestHistoryAnalyzer.prototype._incorporateBuildHistory): Ditto, and removed the
-        no-longer-needed history argument.
-
-2011-06-26  Adam Roben  <aroben@apple.com>
-
-        Move some inappropriate code out of Builder
-
-        Fixes <http://webkit.org/b/63406> TestFailure page's Builder class has a bunch of code that
-        isn't really about a builder
-
-        Reviewed by Anders Carlsson.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder.js:
-        (Builder.prototype.getBuildNames): Renamed from _getBuildNames, since it now needs to be
-        called by other objects.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/LayoutTestHistoryAnalyzer.js:
-        Added. Code came from Builder.
-        (LayoutTestHistoryAnalyzer):
-        (LayoutTestHistoryAnalyzer.prototype.start):
-        (LayoutTestHistoryAnalyzer.prototype._incorporateBuildHistory):
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/LayoutTestResultsLoader.js:
-        Added. Code came from Builder.
-        (LayoutTestResultsLoader):
-        (LayoutTestResultsLoader.prototype.start):
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype._displayBuilder): Changed to use LayoutTestHistoryAnalyzer.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/index.html: Pull in new
-        scripts.
-
-2011-05-17  Nat Duca  <nduca@chromium.org>
-
-        Reviewed by James Robinson.
-
-        [chromium] Implement CCLayerTreeHost and CCLayerTreeHostImpl portions of threaded compositor
-        https://bugs.webkit.org/show_bug.cgi?id=58408
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::paintInvalidatedRegion):
-
-2011-06-27  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        new-run-webkit-tests needs a --webkit-test-runner option
-        https://bugs.webkit.org/show_bug.cgi?id=63439
-
-        NRWT doesn't actually know how to run with the WebKitTestRunner yet
-        but it does have a --webkit-test-runner option and will build WebKitTestRunner correctly.
-
-        There is a bunch of other little cleanup in this patch which I added as I
-        took a tour through all of our hard-coded DumpRenderTree strings.
-
-        * Scripts/webkitpy/common/net/layouttestresults.py: Added FIXME.
-        * Scripts/webkitpy/common/system/outputcapture.py: Fixed spacing to pass PEP8.
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py: Made the FIXME slightly stronger (bad bug).
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py: test_shell is dead.
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures.py: Unwrapped silly wrapping.
-        * Scripts/webkitpy/layout_tests/port/base.py: Removed two dead methods.
-        * Scripts/webkitpy/layout_tests/port/config.py:
-         - build_dumprendertree had no business in this class, removed it.
-         - Exposed _FLAGS_FROM_CONFIGURATIONS through flag_for_configuration()
-         - Exposed _script_path as script_path() (this probably belongs elsewhere).
-        * Scripts/webkitpy/layout_tests/port/config_unittest.py:
-         - Moved these tests to webkit_unittests.
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-         - Now respects the --webkit-test-runner option.
-         - setup_test_run is empty in base.py too, no need to override it.
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-         - Test the new hotness.
-         - Bad, bad, bad!  The old code was using a real Executive during unit-testing!
-           I think this code is still hitting disk during the unit tests. :(
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-         - Add the option.
-        * Scripts/webkitpy/tool/bot/queueengine_unittest.py:
-         - Remove optional args option.
-        * Scripts/webkitpy/tool/commands/commandtest.py:
-         - Remove optional args option.
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-         - Remove optional args option.
-
-2011-06-27  Chang Shu  <cshu@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        [WK2] WebKitTestRunner should reset FrameFlattening flag to disable before each test
-        https://bugs.webkit.org/show_bug.cgi?id=63457
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-
-2011-06-27  Raphael Kubo da Costa  <kubo@profusion.mobi>
-
-        Reviewed by Kent Tamura.
-
-        [EFL] DRT: Add an ewk_view specialization for EFL's DumpRenderTree.
-        It will be plugged into the build system as soon as the rest of the
-        DRT code is fully upstreamed.
-        https://bugs.webkit.org/show_bug.cgi?id=63086
-
-        * DumpRenderTree/efl/DumpRenderTreeView.cpp: Added.
-        (onConsoleMessage):
-        (onJavaScriptAlert):
-        (onJavaScriptConfirm):
-        (onJavaScriptPrompt):
-        (drtViewTiledAdd):
-        * DumpRenderTree/efl/DumpRenderTreeView.h: Added.
-
-2011-06-27  Leandro Pereira  <leandro@profusion.mobi>
-
-        Reviewed by Kent Tamura.
-
-        [EFL] Add an EventSender implementation to EFL's DumpRenderTree along
-        with support files.
-        Build system changes will be made as soon as the whole DumpRenderTree
-        is upstreamed.
-        https://bugs.webkit.org/show_bug.cgi?id=61962
-
-        * DumpRenderTree/efl/EventSender.cpp: Added.
-        (setEvasModifiers):
-        (translateMouseButtonNumber):
-        (sendMouseEvent):
-        (sendClick):
-        (scheduleAsynchronousClickCallback):
-        (updateClickCount):
-        (modifierFromJSValue):
-        (modifiersFromJSValue):
-        (mouseDownCallback):
-        (mouseUpCallback):
-        (mouseMoveToCallback):
-        (evasMouseEventFromHorizontalAndVerticalOffsets):
-        (mouseScrollByCallback):
-        (continuousMouseScrollByCallback):
-        (keyPadNameFromJSValue):
-        (keyNameFromJSValue):
-        (keyDownCallback):
-        (scalePageByCallback):
-        (getClass):
-        (makeEventSender):
-        * DumpRenderTree/efl/EventSender.h: Added.
-
-2011-06-27  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Remove evil uses of hasattr
-        https://bugs.webkit.org/show_bug.cgi?id=63430
-
-        For some reason these classes believe that they may be called with
-        various flavors of "option" elements and so carefully check to make
-        sure that the options element has their option before checking it.
-
-        We had a set_option_default method which was never called, so I made it
-        do what callsites seemed to want it to do and replaced 3 callers
-        who previously used hasattr manually to use set_option_default instead.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-06-27  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Hajime Morita.
-
-        [Chromium] WebViewHost should be destructed before LayoutTestController, etc.
-        https://bugs.webkit.org/show_bug.cgi?id=63427
-
-        ~WebViewHost() navigates to about:blank, so it calls some
-        callbacks and LayoutTestController functions.
-
-        * DumpRenderTree/chromium/TestShell.h:
-         Move m_printer upper and move m_webViewHost lower.
-
-2011-06-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Move server config files to webkitpy.layout_tests.servers
-        https://bugs.webkit.org/show_bug.cgi?id=63436
-
-        The config files belong with the servers.
-
-        * Scripts/webkitpy/layout_tests/port/httpd2.pem: Removed.
-        * Scripts/webkitpy/layout_tests/port/lighttpd.conf: Removed.
-        * Scripts/webkitpy/layout_tests/servers/http_server.py:
-        * Scripts/webkitpy/layout_tests/servers/httpd2.pem: Copied from Tools/Scripts/webkitpy/layout_tests/port/httpd2.pem.
-        * Scripts/webkitpy/layout_tests/servers/lighttpd.conf: Copied from Tools/Scripts/webkitpy/layout_tests/port/lighttpd.conf.
-
-2011-06-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Move websocket_server and http_server to webkitpy.layout_package.servers
-        https://bugs.webkit.org/show_bug.cgi?id=63434
-
-        These classes do not represent ports.  They represent servers.
-
-        * Scripts/new-run-webkit-httpd:
-        * Scripts/new-run-webkit-websocketserver:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/http_server.py: Removed.
-        * Scripts/webkitpy/layout_tests/port/http_server_base.py: Removed.
-        * Scripts/webkitpy/layout_tests/port/http_server_integrationtest.py: Removed.
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py: Removed.
-        * Scripts/webkitpy/layout_tests/servers/apache_http_server.py:
-        * Scripts/webkitpy/layout_tests/servers/http_server.py: Copied from Tools/Scripts/webkitpy/layout_tests/port/http_server.py.
-        * Scripts/webkitpy/layout_tests/servers/http_server_base.py: Copied from Tools/Scripts/webkitpy/layout_tests/port/http_server_base.py.
-        * Scripts/webkitpy/layout_tests/servers/http_server_integrationtest.py: Copied from Tools/Scripts/webkitpy/layout_tests/port/http_server_integrationtest.py.
-        * Scripts/webkitpy/layout_tests/servers/websocket_server.py: Copied from Tools/Scripts/webkitpy/layout_tests/port/websocket_server.py.
-
-2011-06-27  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Remove Chromium and ChromiumMac implementations of driver_name now that everything uses DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=63428
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-
-2011-06-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Move apache_http_server.py to webkitpy.layout_package.servers
-        https://bugs.webkit.org/show_bug.cgi?id=63433
-
-        The apache_http_server.py is a server, not a port.
-
-        * Scripts/webkitpy/layout_tests/port/apache_http_server.py: Removed.
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/servers: Added.
-        * Scripts/webkitpy/layout_tests/servers/__init__.py: Added.
-        * Scripts/webkitpy/layout_tests/servers/apache_http_server.py: Copied from Tools/Scripts/webkitpy/layout_tests/port/apache_http_server.py.
-
-2011-06-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Move rebaseline-chromium-webkit-tests.py to webkitpy.to_be_moved
-        https://bugs.webkit.org/show_bug.cgi?id=63432
-
-        This code isn't in the dependency cone of new-run-webkit-tests. It's
-        unclear what it's final home should be, but this patch moves it out of
-        layout_tests to simply the package.
-
-        * Scripts/rebaseline-chromium-webkit-tests:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py: Removed.
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests_unittest.py: Removed.
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests.py: Copied from Tools/Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py.
-        * Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests_unittest.py: Copied from Tools/Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests_unittest.py.
-
-2011-06-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Move update_webgl_conformance_tests.py to webkitpy.to_be_moved
-        https://bugs.webkit.org/show_bug.cgi?id=63429
-
-        This package as nothing to do with the layout_tests package.
-
-        * Scripts/update-webgl-conformance-tests:
-        * Scripts/webkitpy/layout_tests/update_webgl_conformance_tests.py: Removed.
-        * Scripts/webkitpy/layout_tests/update_webgl_conformance_tests_unittest.py: Removed.
-        * Scripts/webkitpy/to_be_moved/update_webgl_conformance_tests.py: Copied from Tools/Scripts/webkitpy/layout_tests/update_webgl_conformance_tests.py.
-        * Scripts/webkitpy/to_be_moved/update_webgl_conformance_tests_unittest.py: Copied from Tools/Scripts/webkitpy/layout_tests/update_webgl_conformance_tests_unittest.py.
-
-2011-06-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Move deduplicate_tests.py into webkitpy.to_be_moved
-        https://bugs.webkit.org/show_bug.cgi?id=63426
-
-        deduplicate_tests.py doesn't haven anything to do with layout tests.
-        It's really a separate script.  This patch moves it to the (new)
-        to_be_moved package so that it doesn't distract us when working on NRWT.
-
-        * Scripts/deduplicate-tests:
-        * Scripts/webkitpy/layout_tests/deduplicate_tests.py: Removed.
-        * Scripts/webkitpy/layout_tests/deduplicate_tests_unittest.py: Removed.
-        * Scripts/webkitpy/test/main.py:
-        * Scripts/webkitpy/to_be_moved: Added.
-        * Scripts/webkitpy/to_be_moved/__init__.py: Added.
-        * Scripts/webkitpy/to_be_moved/deduplicate_tests.py: Copied from Tools/Scripts/webkitpy/layout_tests/deduplicate_tests.py.
-        * Scripts/webkitpy/to_be_moved/deduplicate_tests_unittest.py: Copied from Tools/Scripts/webkitpy/layout_tests/deduplicate_tests_unittest.py.
-
-2011-06-26  Adam Barth  <abarth@webkit.org>
-
-        Rubber-stamped by Eric Seidel.
-
-        Remove empty directory.
-
-        * Scripts/webkitpy/layout_tests/test_types: Removed.
-
-2011-06-25  Naoki Takano  <honten@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Change my entry from contributors to committers.
-        https://bugs.webkit.org/show_bug.cgi?id=63043
-
-        * Scripts/webkitpy/common/config/committers.py: Change my e-mail from takano.naoki@gmail.com to honten@chromium.org. And move the entry to commiters from contributors.
-
-2011-06-25  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        [Chromium] Update WebKit for WEBKIT_FRAME_TO_DOCUMENT_API_MOVE
-        https://bugs.webkit.org/show_bug.cgi?id=63394
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::queueLoad):
-
-2011-06-25  Brent Fulgham  <bfulgham@webkit.org>
-
-        Unreviewed build correction after r89426.
-
-        * WebKitTestRunner/Configurations/WebKitTestRunnerCFLite.vsprops:
-          Link with Cairo DLL for new functionality.
-        * WebKitTestRunner/cairo/TestInvocationCairo.cpp: Include compatibility
-          code for snprintf.
-
-2011-06-25  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        run-bindings-tests does not work on Chromium Windows.
-        https://bugs.webkit.org/show_bug.cgi?id=63382
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Removed run-bindings-tests as a build step for cr-win.
-
-2011-06-25  Dan Bernstein  <mitz@apple.com>
-
-        Try to fix the Qt and Chromium builds.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::setEncodedAudioData):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-
-2011-06-24  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Anders Carlsson.
-
-        Add an option to enable legacy rounding hacks
-        https://bugs.webkit.org/show_bug.cgi?id=63363
-
-        Added layoutTestController.allowRoundingHacks() and implemented it
-        on OS X.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (allowRoundingHacksCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::allowRoundingHacks):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::allowRoundingHacks):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::allowRoundingHacks):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::allowRoundingHacks):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::allowRoundingHacks):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::allowRoundingHacks):
-
-2011-06-24  Adam Roben  <aroben@apple.com>
-
-        Include the directory containing the failing tests in titles of bugs filed from TestFailures
-        when all the tests won't fit
-
-        Fixes <http://webkit.org/b/63350> Short bug titles from TestFailures page give no indication
-        which tests are failing
-
-        Reviewed by David Kilzer.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Utilities.js:
-        (longestCommonPathPrefix): Added. Given a set of paths, returns the longest common prefix
-        that ends in a path separator.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype._domForNewAndExistingBugs): When we can't fit all the test names
-        in the title, first try to include the longest common prefix of the test names, then, if
-        that's still too long or there's no common prefix, fall back to not including any
-        information about which tests are failing.
-
-2011-06-24  Adam Roben  <aroben@apple.com>
-
-        Include links to Trac in bugs filed from TestFailures
-
-        Fixes <http://webkit.org/b/63348> Bugs filed from TestFailures page should include links to
-        Trac for suspect revisions
-
-        Reviewed by David Kilzer.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Trac.js:
-        (Trac.prototype.changesetURL): New function, returns the URL for a particular revision in
-        Trac.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype._domForNewAndExistingBugs): If there's only one suspect revision,
-        include a link to Trac for it in the first sentence of the description. Otherwise include a
-        link to the suspect range after the list of failing tests.
-
-2011-06-24  Nat Duca  <nduca@chromium.org>
-
-        Unreviewed, rolling out r89694.
-        http://trac.webkit.org/changeset/89694
-        https://bugs.webkit.org/show_bug.cgi?id=58408
-
-        Test shell still not ready for animate changes.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::paintInvalidatedRegion):
-
-2011-06-24  Adam Roben  <aroben@apple.com>
-
-        Fix typos introduced in r89696
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder.js:
-        (Builder.prototype.getNumberOfFailingTests): Pass the result data's constituent parts to the
-        callback, since that's what it expects.
-
-2011-06-24  Adam Roben  <aroben@apple.com>
-
-        Make TestFailures correctly remember whether old-run-webkit-tests exited early
-
-        Fixes <http://webkit.org/b/63342> TestFailures page incorrectly claims test run ran to
-        completion after reload
-
-        Reviewed by David Kilzer.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder.js:
-        (Builder.prototype.getNumberOfFailingTests): Instead of just storing the number of failures
-        in the PeristentCache, store an object that contains both the number of failures and whether
-        old-run-webkit-tests exited early.
-
-2011-06-24  Adam Roben  <aroben@apple.com>
-
-        Add links to regression ranges in Trac to the TestFailures page
-
-        Fixes <http://webkit.org/b/61060> <rdar://problem/9452153> TestFailures page should provide
-        links to regression ranges in Trac
-
-        Reviewed by David Kilzer.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Trac.js: Added.
-        (Trac): This new class represents a particular instance of Trac for a single project.
-        (Trac.prototype.logURL): Returns the URL that can be used to see the log of the given
-        repository path between the two specified revisions
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController): Added new trac argument.
-        (ViewController.prototype._displayBuilder): Moved code to create the DOM for the
-        passed/failed builds from here...
-        (ViewController.prototype._domForRegressionRange): ...to here. Now also includes a link to
-        Trac if there are multiple suspect revisions.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/index.html: Pull in
-        Trac.js and pass a Trac instance for trac.webkit.org to the ViewController.
-
-2011-05-17  Nat Duca  <nduca@chromium.org>
-
-        Reviewed by James Robinson.
-
-        [chromium] Implement CCLayerTreeHost and CCLayerTreeHostImpl portions of threaded compositor
-        https://bugs.webkit.org/show_bug.cgi?id=58408
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::paintInvalidatedRegion):
-
-2011-06-24  Dominic Cooney   <dominicc@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Convert shadow DOM-related tests to use window.internals
-        https://bugs.webkit.org/show_bug.cgi?id=61671
-
-        Remove ensureShadowRoot, shadowRoot, shadowPseudoId and
-        removeShadowRoot from layoutTestController; these have been
-        replaced by equivalents in window.internals instead.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2011-06-24  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Dirk Schulze.
-
-        Make run-bindings-tests remove its temporary directories.
-        https://bugs.webkit.org/show_bug.cgi?id=63320
-
-        * Scripts/run-bindings-tests:
-
-2011-06-23  MORITA Hajime  <morrita@google.com>
-
-        Reviewed by Kent Tamura.
-
-        [Chromium] Invalid write inside WebKit::FrameLoaderClientImpl::dispatchDidClearWindowObjectInWorld
-        https://bugs.webkit.org/show_bug.cgi?id=63216
-
-        Deleted m_webViewHost which looks leaked.
-        
-        * DumpRenderTree/chromium/TestShell.h:
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::~TestShell):
-
-2011-06-24  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed. Fix WebKit2 GTK build.
-
-        * WebKitTestRunner/GNUmakefile.am:
-
-2011-06-23  Ryuan Choi  <ryuan.choi@samsung.com>
-
-        Unreviewed, add myself as committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-06-23  Nat Duca  <nduca@chromium.org>
-
-        Unreviewed, add myself as committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-06-23  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        nrwt: move http locking code into manager
-        https://bugs.webkit.org/show_bug.cgi?id=63103
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-        * Scripts/webkitpy/layout_tests/layout_package/worker.py:
-
-2011-06-23  Alok Priyadarshi  <alokp@chromium.org>
-
-        Reviewed by James Robinson.
-
-        [chromium] Add support for running layout tests with accelerated rendering
-        https://bugs.webkit.org/show_bug.cgi?id=63274
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-06-23  Adam Roben  <aroben@apple.com>
-
-        Avoid fetching JSON data when possible on TestFailures page to determine if
-        old-run-webkit-tests exited early
-
-        As of r89610, results.html includes information about whether old-run-webkit-tests exited
-        early, so we don't need to look at JSON data to get this information for builds newer than
-        that.
-
-        Fixes <http://webkit.org/b/63281> TestFailures page fetches build JSON for every build,
-        which is slow and limits history to the last build master restart
-
-        Reviewed by David Kilzer.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder.js:
-        (Builder.prototype._getFailingTests): Moved code dealing with results.html into a new
-        function. If we're dealing with a build that has early-exit information in results.html,
-        don't bother fetching JSON data and go straight to parsing results.html. Otherwise first use
-        the JSON data to determine if old-run-webkit-tests exited early, and then parse results.html
-        (as before).
-
-2011-06-23  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        sheriffbot can no longer restart
-        https://bugs.webkit.org/show_bug.cgi?id=63221
-
-        Fixed and unit tested.
-
-        * Scripts/webkitpy/tool/bot/queueengine.py:
-        * Scripts/webkitpy/tool/bot/sheriffircbot.py:
-        * Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py:
-
-2011-06-23  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] [WebKit2] WebKitTestRunner does not properly load TestNetscapePlugin
-        https://bugs.webkit.org/show_bug.cgi?id=63287
-
-        Send the path to the TestNetscapePlugin to the WKTR via an environment variable
-        so that the plugin loads properly.
-
-        * Scripts/old-run-webkit-tests: Pass the appropriate environment variable to WKTR.
-        * WebKitTestRunner/gtk/TestControllerGtk.cpp:
-        (WTR::getEnvironmentVariableAsUTF8String): Added this helper which abstracts away some
-        of the work for getting an environment variable and converting it to UTF-8.
-        (WTR::TestController::initializeInjectedBundlePath): Use the helper.
-        (WTR::TestController::initializeTestPluginDirectory): Get the path from an environment variable now.
-
-2011-06-23  Adam Roben  <aroben@apple.com>
-
-        Record whether old-run-webkit-tests aborted early in results.html
-
-        Fixes <http://webkit.org/b/63280> results.html gives no indication of whether
-        old-run-webkit-tests stopped running tests early
-
-        Reviewed by David Kilzer.
-
-        * Scripts/old-run-webkit-tests:
-        (top level): Switched to heredoc syntax for printing the start of results.html for clarity.
-        Added a <style> element with some styles for the new message. If we stopped running early,
-        put the reason why at the top of results.html.
-        (stopRunningTestsEarlyIfNeeded): Store the message we print in the new
-        $stoppedRunningEarlyMessage global.
-
-2011-06-23  Adam Roben  <aroben@apple.com>
-
-        Cache some of the TestFailures page's data in localStorage
-
-        This makes reloading TestFailures much faster. Right now we only store the number of failing
-        tests and the list of failing tests for each build. We may choose to store more later, but
-        it's easy to run up against quota limits.
-
-        Fixes <http://webkit.org/b/61520> TestFailures page should take advantage of LocalStorage
-        APIs (or similar) to improve loading performance
-
-        Reviewed by David Kilzer.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder.js:
-        (Builder.prototype.getNumberOfFailingTests): Changed to use the new PersistentCache object.
-        (Builder.prototype.startFetchingBuildHistory): Changed to pass whether or not we're still
-        fetching data to the callback.
-        (Builder.prototype._getFailingTests): Changed to use the new PersistentCache object. We now
-        store the tests in the cache just before calling the callback. (The previous code in this
-        function relied on being able to modify the tests object after storing it in the cache and
-        having the cached version be updated. This worked while it was a non-serialized cache, but
-        PersistentCache uses serialization.)
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/PersistentCache.js: Added.
-        (PersistentCache): This object wraps localStorage. It uses JSON to serialize/deserialize
-        values, and stores the date that each value was initially stored along with it. This is
-        later used for pruning the cache.
-        (PersistentCache.contains): Checks whether the key exists in localStorage.
-        (PersistentCache.get): Fetch the string we stored in localStorage and extract the original
-        value out of it.
-        (PersistentCache.set): Serialize the value, add the date to it, and store it in
-        localStorage. If this fails due to quota limits, empty the whole cache and try again.
-        (PersistentCache.prune): Delete any cached data that is deemed old enough.
-        (PersistentCache._addDateToJSONString): Prepend the current date to the string.
-        (PersistentCache._emptyCache): Delete everything from localStorage.
-        (PersistentCache._parseDateAndJSONFromString): Split apart the date and the JSON string and
-        return them.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype._displayBuilder): Updated for change to callback signature. When
-        we finish fetching data, prune the PersistentCache. While I was here I also fixed a bug
-        where we'd never show the new bug link for tests for which we couldn't determine a passing
-        revision.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/index.html: Pull in
-        PersistentCache.js.
-
-2011-06-23  Adam Roben  <aroben@apple.com>
-
-        Make finding existing bugs and filing new bugs work on TestFailures even when lots of tests are failing
-
-        One bug this fixes is <http://webkit.org/b/61660> New bug links on TestFailures page often
-        contain titles that are so long they are rejected by Bugzilla
-
-        Reviewed by David Kilzer.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Bugzilla.js:
-        (Bugzilla.prototype.quickSearch): Use fetchResource to POST the search query rather than
-        using a query string on the URL. If the search query is very long, using a query string can
-        cause the request to be rejected due to the URL being too long. POSTing avoids this issue.
-        (Bugzilla.maximumBugTitleLength): Added this constant based on Bugzilla's implementation.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestFailures.css:
-        (.new-bug-form): Hide the form that we secretly use to file a new bug.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Utilities.js:
-        (fetchResource): Added. Code came from getResource. If we're using a GET request, add the
-        query parameters to the URL. Otherwise, send them as the body of the request along with the
-        appropriate headers.
-        (getResource): Now just calls through to fetchResource.
-        (urlEncodedQueryParameters): Added. Moved some code here...
-        (addQueryParametersToURL): ...from here.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype._domForNewAndExistingBugs): Shorten the title to just mention the
-        number of failing tests if mentioning all the tests would make the title too long. Improved
-        the description for large numbers of failures by listing the tests one-per-line instead of
-        just having them be comma-separated, which was hard to read. Use a form to file the new bug
-        instead of a link so that we can POST the form data. (Using a URL with a query string can
-        result in the URL being too long.) The new bug link now just submits the form.
-
-2011-06-23  Adam Roben  <aroben@apple.com>
-
-        Show closed bugs on the TestFailures page in addition to open ones
-
-        Fixes <http://webkit.org/b/63194> TestFailures page should show closed bugs, too
-
-        Reviewed by David Kilzer.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Bugzilla.js:
-        (Bugzilla.prototype.quickSearch): Added code to extract the bug's status and store it in the
-        returned data.
-        (Bugzilla.isOpenStatus): New function, returns true if the passed-in status indicates that
-        the associated bug is still open.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Utilities.js:
-        (addQueryParametersToURL): Add a missing semicolon.
-        (Node.prototype.appendChildren): New function, like appendChild but takes an array-like
-        object and appends each of the values stored within.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype._domForNewAndExistingBugs): Prepend 'ALL' to the query so closed
-        bugs will be included in the results. Split the returned bugs into two sets: those which are
-        open, and those which are closed. Put the open bugs at the top level of the list, and the
-        closed bugs in a second level.
-
-2011-06-23  Adam Roben  <aroben@apple.com>
-
-        Don't count new tests as failures on the TestFailures page
-
-        Fixes <http://webkit.org/b/63254> TestFailures page calls new tests "failures", even though
-        they aren't
-
-        Reviewed by Anders Carlsson.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder.js:
-        (Builder.prototype.getNumberOfFailingTests): Don't add the number of new tests to the number
-        of failures.
-
-2011-06-23  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        nrwt: make TestInput objects printable
-        https://bugs.webkit.org/show_bug.cgi?id=63225
-
-        This makes debugging slighlty easier.
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_input.py:
-
-2011-06-22  Daniel Bates  <dbates@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        test-webkitpy --all errors out because scm_unittest.py can't find module checkout
-        https://bugs.webkit.org/show_bug.cgi?id=62943
-
-        Remove "from .checkout import Checkout" from scm_unittest.py since it's included
-        by Scripts/webkitpy/common/checkout/__init__.py.
-
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-
-2011-06-22  Dominic Cooney  <dominicc@chromium.org>
-
-        Reviewed by Mark Rowe.
-
-        Add window.internals to WebKit2's WebKitTestRunner.
-        https://bugs.webkit.org/show_bug.cgi?id=61073
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pxbproj:
-        * WebKitTestRunner/Configurations/Base.xcconfig:
-        * WebKitTestRunner/Configurations/InjectedBundleCFLite.vsprops:
-        * WebKitTestRunner/Configurations/InjectedBundleCommon.vsprops:
-        * WebKitTestRunner/Configurations/InjectedBundleCoreFoundation.vsprops:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::didClearWindowForFrame):
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro:
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-
-2011-06-22  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Make sheriff-bot rollout messages a little nicer
-        https://bugs.webkit.org/show_bug.cgi?id=63107
-
-        itertools.chain.from_iterable is new in 2.6,
-        use itertools.chain(*list) for 2.5 compat.
-
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-
-2011-06-22  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Make sheriff-bot robust against exceptions from commands
-        https://bugs.webkit.org/show_bug.cgi?id=63211
-
-        sheriff-bot was acting strange this afternoon.
-        We don't know if this will fix the cause, but
-        at least it adds some unit tests and catches
-        one possible cause.
-
-        * Scripts/webkitpy/tool/bot/sheriffircbot.py:
-        * Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py:
-
-2011-06-22  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by David Levin.
-
-        <http://webkit.org/b/63212> TestWebKitAPI Xcode project has bogus settings since r86287
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj: Fix the reference to libgtest.a to
-        be relative to the built products directory rather than using a hard-coded path. Remove the
-        explicit settings of FRAMEWORK_SEARCH_PATHS, HEADER_SEARCH_PATHS and LIBRARY_SEARCH_PATHS
-        as they're all unnecessary. If they were necessary they should be set in the .xcconfig file
-        rather than in the .xcodeproj directly.
-
-2011-06-22  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: remove obsolete port.shut_down_http_server method
-        https://bugs.webkit.org/show_bug.cgi?id=59993
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/port/win.py:
-
-2011-06-22  Luke Macpherson   <macpherson@chromium.org>
-
-        Reviewed by Andreas Kling.
-
-        Move macpherson from contributor list to committer list.
-        https://bugs.webkit.org/show_bug.cgi?id=63179
-
-        * Scripts/webkitpy/common/config/committers.py:
-        Move macpherson from contributor list to committer list.
-
-2011-06-22  David Levin  <levin@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        check-webkit-style should detect returning (Own|Ref)Ptr instead of the Pass*Ptr version.
-        https://bugs.webkit.org/show_bug.cgi?id=63204
-
-        * Scripts/webkitpy/style/checkers/cpp.py: Added a check for the return value and combined
-          with similar code for the parameter checking.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Removed pass_ptr checks from
-          those done for single lines since they don't make sense in that case (variable decls look like function decls).
-          Removed some redundant comments (one of which was slightly wrong).
-          Added checks for the new functionality and minor other test changes.
-
-2011-06-22  Nate Chapin  <japhet@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Add libsoup to libWebCoreInternals build.
-        https://bugs.webkit.org/show_bug.cgi?id=62066
-
-        * GNUmakefile.am:
-
-2011-06-22  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        nrwt: handle missing httpd cleanly
-        https://bugs.webkit.org/show_bug.cgi?id=62027
-
-        We had reverted the change in r89414, so this adds it back in
-        (modifying check_sys_deps() in port/base.py to check for an
-        installed web server).
-
-        This change then fixes the change in r89414 to stub out the
-        check_sys_deps() in the test port so that the unit tests run correctly.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-
-2011-06-22  David Levin  <levin@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        check-webkit-style should check for invalid uses of RefPtr/OwnPtr as parameters.
-        https://bugs.webkit.org/show_bug.cgi?id=63188
-
-        * Scripts/webkitpy/style/checkers/cpp.py: Added the check.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Added tests.
-
-2011-06-22  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Add a buildbot for testing ENABLE(CSS3_FLEXBOX)
-        https://bugs.webkit.org/show_bug.cgi?id=62891
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2011-06-22  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        nrwt: don't look for http lock when running the test port
-        https://bugs.webkit.org/show_bug.cgi?id=63158
-
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-
-2011-06-22  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt][WK2] Set up plugin tests
-        https://bugs.webkit.org/show_bug.cgi?id=63066
-
-        * WebKitTestRunner/qt/TestControllerQt.cpp:
-        (WTR::TestController::initializeTestPluginDirectory):
-        Use the QTWEBKIT_PLUGIN_PATH environment variable as the path
-        of the test plugin like DRT does.
-
-2011-06-22  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Ojan Vafai.
-
-        Make sheriff-bot rollout messages a little nicer
-        https://bugs.webkit.org/show_bug.cgi?id=63107
-
-        It annoyed me this afternoon that I had to convert sheriff-bots "r12345" revisions
-        into urls myself.  So I have now fixed its "preparing" message to include a url.
-
-        I also figured that I should make the messages mention all of the responsible parties
-        so that rollouts are never surprises.  If you're in the channel and were involved
-        in a patch, you will see if someone is using sheriff-bot to rollout a patch.
-
-        As part of doing this I also changed (and tested) _parse_args to fail-fast
-        when given invalid args.
-
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        * Scripts/webkitpy/tool/bot/irc_command_unittest.py:
-        * Scripts/webkitpy/tool/bot/sheriff.py:
-        * Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py:
-
-2011-06-22  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        run-webkit-websocketserver fails to stop websocket server
-        https://bugs.webkit.org/show_bug.cgi?id=63123
-
-        There's a ten-character change in new-run-webkit-websocketserver
-        that fixes the actual bug, and then we update the code in
-        new-run-webkit-httpd to do the actual stop call, and add more tests
-        (refactoring the existing test code so that it is shared).
-
-        * Scripts/new-run-webkit-httpd:
-        * Scripts/new-run-webkit-websocketserver:
-        * Scripts/webkitpy/layout_tests/port/http_server_integrationtest.py:
-
-2011-06-22  Adam Roben  <aroben@apple.com>
-
-        Add links to existing bugs related to failing tests on TestFailures page
-
-        I changed the layout of the page a little to make it easier to read with all the new
-        information. Passing/failing revisions have been moved down below the list of tests to be
-        closer to the existing bugs and the new bug link. And each set of tests and its relevant
-        information is in a light gray box.
-
-        Fixes <http://webkit.org/b/61665> TestFailures page should link to existing bugs when
-        possible
-
-        Reviewed by Darin Adler.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Bugzilla.js: Added.
-        (Bugzilla): This new class represents a single Bugzilla instance.
-        (Bugzilla.prototype.quickSearch): Searches Bugzilla using its Quick Search functionality,
-        passing the resulting bug titles and URLs to the callback when complete. If called multiple
-        times with the same query before the query returns, caches the callbacks so that only one
-        query is sent over the wire. When the query completes, all pending callbacks are called.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestFailures.css:
-        (#failure-history): Reduce the margin/padding on the top-level list a bit.
-        (#failure-history > li): Put each set of tests in a gray box, and indent most information
-        inside the box.
-        (.test-list): Unindent the list of failing tests so it is visually at the top level.
-        (.new-and-existing-bugs): Reduce the space at the bottom of this area so that the bottom of
-        each box isn't a big empty space.
-        (.existing-bugs-list): Use a smaller text size for existing bugs, since their titles can be
-        quite long.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Utilities.js:
-        (addQueryParametersToURL): New function extracted from
-        ViewController.prototype._domForNewAndExistingBugs.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController): Take and store an optional Bugzilla instance.
-        (ViewController.prototype._displayBuilder): Give the top-level list an id for styling
-        purposes and move the list of failing tests above all other information. Only show bug
-        information once we've determined the most-recent passing revision for a set of tests. It's
-        not that useful to file a new bug before this information has been determined, and searching
-        for existing bugs before we've figured out which tests started failing at the same time
-        would end up giving you information about a bunch of unrelated tests.
-        (ViewController.prototype._domForNewAndExistingBugs): Renamed from _domForNewBugLink. Now
-        returns a DocumentFragment instead of an HTMLParagraphElement. If we don't have a Bugzilla
-        instance, just returns an empty DocumentFragment. Starts a search for bugs related to the
-        failing tests, and adds links to the bugs when the search completes.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/index.html: Pass a
-        Bugzilla instance for bugs.webkit.org to the ViewController.
-
-2011-06-22  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Apply current view settings to newly created views in GtkLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=63142
-
-        * GtkLauncher/main.c:
-        (createWebViewCb):
-
-2011-06-22  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Use GOption to parse main arguments in GtkLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=63060
-
-        Instead of getting the settings from the view, create a new
-        settings object not associated with any view so that we can parse
-        the command line arguments before creating the view. It will also
-        allows to use the same settings for more than one view if we
-        eventually support passing more than one uri from the command
-        line.
-
-        * GtkLauncher/main.c:
-        (parseOptionEntryCallback): Make this function static. Also use
-        g_ascii_strtoll/g_ascii_strtod to parse int/float values instead
-        of atoi/atof to provide better error messages. And always fill the
-        error struct when the function fails.
-        (getOptionEntriesFromWebKitWebSettings): Use an array of
-        GOptionEntry structs instead of a GArray, since that is what
-        g_option_group_add_entries() expects and the array size doesn't
-        change.
-        (addWebSettingsGroupToContext): Helper function to add the
-        websettings group to the option context.
-        (main): Create the option context to parse command line arguments.
-
-2011-06-22  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Adam Roben.
-
-        [GTK] Implement pixel dump support for WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=58242
-
-        * DumpRenderTree/gtk/GNUmakefile.ImageDiff.am: Added.
-        * GNUmakefile.am: Separate out the ImageDiff bits of the GNUmakefile.
-        * Scripts/old-run-webkit-tests: Update to add support for the GTK+ port.
-        * WebKitTestRunner/GNUmakefile.am: Added Cairo specific files to the build.
-        * WebKitTestRunner/TestInvocation.cpp: Moved this code to the platform-independent
-        file so that we can share it across platforms.
-        (WTR::TestInvocation::compareActualHashToExpectedAndDumpResults):
-        * WebKitTestRunner/TestInvocation.h: Updated method list.
-        * WebKitTestRunner/cairo/TestInvocationCairo.cpp: Added Cairo implementation.
-        * WebKitTestRunner/cg/TestInvocationCG.cpp:
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected): Updated to use new helper.
-
-2011-06-22  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r89414.
-        http://trac.webkit.org/changeset/89414
-        https://bugs.webkit.org/show_bug.cgi?id=63130
-
-        It broke webkitpy tests (Requested by Ossy on #webkit).
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-
-2011-06-22  Kristóf Kosztyó  <Kosztyo.Kristof@stud.u-szeged.hu>
-
-        Reviewed by Dirk Pranke.
-
-        [NRWT] Print error message when there is no httpd present on the system
-        https://bugs.webkit.org/show_bug.cgi?id=62027
-
-        * Scripts/webkitpy/layout_tests/port/apache_http_server.py:
-
-2011-06-21  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-        Fix crashes in new-run-webkit-tests resulting from the
-        change to the http_server logic in r89400. Python 2.5
-        on Mac 10.5 has some weird error paths.
-
-        * Scripts/webkitpy/layout_tests/port/http_server_base.py:
-        * Scripts/webkitpy/common/system/executive.py:
-
-2011-06-21  MORITA Hajime  <morrita@google.com>
-
-        Unreviewed, rolling out r89401 and r89403.
-        http://trac.webkit.org/changeset/89401
-        http://trac.webkit.org/changeset/89403
-        https://bugs.webkit.org/show_bug.cgi?id=62970
-
-        Breaks mac build and mistakenly enables the spellcheck API
-
-        * Scripts/build-webkit:
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-
-2011-06-21  Kent Tamura  <tkent@chromium.org>
-
-        [Mac] Sort Xcode project files.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-
-2011-06-20  MORITA Hajime  <morrita@google.com>
-
-        Reviewed by Kent Tamura.
-
-        Spellcheck API should be build-able.
-        https://bugs.webkit.org/show_bug.cgi?id=62970
-
-        * Scripts/build-webkit:
-
-2011-06-21  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        nrwt: attempt #3 at fixing server startup/shutdown
-        https://bugs.webkit.org/show_bug.cgi?id=62829
-
-        Attempt yet again to make starting and stopping servers
-        reliable. It turns out that apache has races between when the
-        ctl process exists and when it writes/removes the pid file.
-        This change accounts for the races.
-
-        * Scripts/new-run-webkit-httpd:
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/layout_tests/port/apache_http_server.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-        * Scripts/webkitpy/layout_tests/port/http_server_base.py:
-        * Scripts/webkitpy/layout_tests/port/http_server_integrationtest.py: Added.
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-
-2011-06-21  Dmitry Lomov  <dslomov@google.com>
-
-        Reviewed by Adam Roben.
-
-        https://bugs.webkit.org/show_bug.cgi?id=63080
-        Unit-tests step on test-only bot is broken.
-        Removing the step until run-api-tests is fixed.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-06-20  Dmitry Lomov  <dslomov@google.com>
-
-        Reviewed by David Levin.
-
-        https://bugs.webkit.org/show_bug.cgi?id=63017
-        "Unit tests" step on bots should provide more information in case of failure.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: added --verbose flag to UnitTests step.
-
-2011-06-20  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: order shards by name, not number of tests
-        https://bugs.webkit.org/show_bug.cgi?id=62753
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-
-2011-06-20  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        we should only log the test names to the tests_run.txt files during layout_tests
-        https://bugs.webkit.org/show_bug.cgi?id=62751
-
-        * Scripts/old-run-webkit-tests:
-        * Scripts/webkitpy/layout_tests/layout_package/worker.py:
-
-2011-06-20  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue/ews-bots should run run-bindings-tests for every patch
-        https://bugs.webkit.org/show_bug.cgi?id=63010
-
-        * Scripts/webkitpy/common/config/ports.py:
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        * Scripts/webkitpy/tool/steps/runtests_unittest.py:
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-
-2011-06-20  Chang Shu  <cshu@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        fast/js/sputnik/Conformance/10_Execution_Contexts/10.2_Entering_An_Execution_Context/10.2.2_Eval_Code tests fail when showModalDialog isn't supported
-        https://bugs.webkit.org/show_bug.cgi?id=53676
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-
-2011-06-20  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        buildbots should run run-bindings-tests
-        https://bugs.webkit.org/show_bug.cgi?id=63001
-
-        run-bindings-tests takes 2.4 seconds on my machine, so
-        I expect this will not be noticeable on the bots.
-
-        I also removed tiger-specific checks since Tiger is no
-        longer a supported platform for webkit.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-06-20  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed. Fix WebKit2 GTK build after r89249.
-
-        * GtkLauncher/main.c:
-        (main):
-
-2011-06-20  Pavel Feldman  <pfeldman@chromium.org>
-
-        Reviewed by Yury Semikhatsky.
-
-        Web Inspector: remove LayoutTestController::setTimelineProfilingEnabled.
-        https://bugs.webkit.org/show_bug.cgi?id=62994
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (closeWebInspectorCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/DRTDevToolsAgent.cpp:
-        * DumpRenderTree/chromium/DRTDevToolsAgent.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2011-06-20  Lukasz Slachciak  <l.slachciak@samsung.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] General mechanism for adjusting WebKitWebSettings in GtkLauncher.
-        https://bugs.webkit.org/show_bug.cgi?id=55308
-
-        * GtkLauncher/main.c: Added general mechanism for adjusting WebKitWebSettings.
-        (parseOptionEntryCallback): Callback for parsing option entry.
-        (getOptionEntriesFromWebKitWebSettings): Basing on the WebKitWebSettings properties prepare
-        list of option entries.
-        (transformStringToBoolean): Transform function for boolean convertion used by parseOptionEntryCallback.
-        (transformStringToInt): Transform function for int convertion used by parseOptionEntryCallback.
-        (transformStringToFloat): Transform function for float convertion used by parseOptionEntryCallback.
-        (parseAdditionalOptions): Help function parsing additional commandline options.
-        (main): Added call to parseAdditionalOptions.
-
-2011-06-20  Viatcheslav Ostapenko  <ostapenko.viatcheslav@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] [WK2] Compile error in ActivateFontsQt.cpp on Mac
-        https://bugs.webkit.org/show_bug.cgi?id=62869
-
-        Add QFont include to fix "incomlete type QFont" error.
-
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-
-2011-06-19  Adam Bergkvist  <adam.bergkvist@ericsson.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Enable Media Stream feature and make it default on
-        https://bugs.webkit.org/show_bug.cgi?id=60394
-
-        * Scripts/build-webkit:
-
-2011-06-19  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r89198.
-        http://trac.webkit.org/changeset/89198
-        https://bugs.webkit.org/show_bug.cgi?id=62953
-
-        Chromium breakage on "Linux Tests" (Requested by senorblanco
-        on #webkit).
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator_unittest.py:
-
-2011-06-18  Daniel Bates  <dbates@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Git.push_local_commits_to_server() should use passed username and
-        password when we don't have cached credentials
-        https://bugs.webkit.org/show_bug.cgi?id=62941
-
-        Fixes a issue where Git.push_local_commits_to_server() would always look
-        for cached credentials regardless of whether a username and password
-        were passed as arguments. Instead, if given both a username and password
-        then we shouldn't look for cached credentials (since we were explicitly given
-        credentials).
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py: Added unit tests.
-
-2011-06-18  Daniel Bates  <dbates@rim.com>
-
-        Rubber-stamped by Eric Seidel.
-
-        Remove run-javascriptcore-tests --skip-build option; Instead add --build/no-build options
-        https://bugs.webkit.org/show_bug.cgi?id=62767
-
-        Part 3 of 3
-
-        Remove the command-line option --skip-build now that the master BuildBot has been restarted
-        following <http://trac.webkit.org/changeset/89138>.
-
-        Instead, specify --no-build to get analogous functionality.
-
-        * Scripts/run-javascriptcore-tests:
-
-2011-06-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: fix test sorting
-        https://bugs.webkit.org/show_bug.cgi?id=58691
-
-        This changes the sorting to use a "natural" sort order such that
-        foo2.html sorts before foo13.html, and sorts the tests so
-        that all the tests in a directory are run before any test in a
-        subdirectory.
-
-        This change also adds a split() method to the filesystem since
-        that is needed to cluster files into a directory otherwise.
-
-        * Scripts/webkitpy/common/system/filesystem.py:
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-        * Scripts/webkitpy/layout_tests/layout_package/manager_unittest.py:
-
-2011-06-18  Evan Martin  <evan@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        Compiler warning in double->int conversion in TestNetscapePlugIn
-        https://bugs.webkit.org/show_bug.cgi?id=51554
-
-        This code is providing a JS API for removing a property by numeric ID.
-        We get it from JS as a double, and must convert it to an int before using it.
-
-        Test: LayoutTests/plugins/npruntime/remove-property.html
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/NPRuntimeRemoveProperty.cpp:
-        (NPRuntimeRemoveProperty::TestObject::invoke):
-
-2011-06-18  Patrick Gansterer  <paroga@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Don't exit webkit-patch when running on Win32 python
-        https://bugs.webkit.org/show_bug.cgi?id=55811
-
-        Most of the basic actions work in the meantime,
-        so let people play with in on Win32 now.
-
-        * Scripts/webkit-patch:
-
-2011-06-18  Alice Boxhall  <aboxhall@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Convert json_results_generator.py to output version 4 JSON.
-        https://bugs.webkit.org/show_bug.cgi?id=60869
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator_unittest.py:
-
-2011-06-18  Berend-Jan Wever  <skylined@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Some names with spaces are incorrectly reported as not containing spaces
-        while running prepare-ChangeLog
-        https://bugs.webkit.org/show_bug.cgi?id=55572
-
-        * Scripts/VCSUtils.pm: Updated CHANGE_LOG_NAME check for spaces to allow
-          non-alphanumeric characters in names.
-
-2011-06-18  Michael Saboff  <msaboff@apple.com>
-
-        Reviewed by Eric Seidel.
-
-        Enhancement: New Script to Format malloc_history output as tree
-        https://bugs.webkit.org/show_bug.cgi?id=56378
-
-        New script to process malloc_history output to tree format.
-
-        * Scripts/malloc-tree: Added.
-
-2011-06-17  Dmitry Lomov  <dslomov@google.com>
-
-        Reviewed by Daniel Bates.
-
-        https://bugs.webkit.org/show_bug.cgi?id=62918 
-        Pass configuration to UnitTests step in master.cfg
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-06-17  Leandro Pereira  <leandro@profusion.mobi>
-
-        Reviewed by Eric Seidel.
-
-        [EFL] Add Evas-based ImageDiff implementation.
-        https://bugs.webkit.org/show_bug.cgi?id=61942
-
-        Build system changes will be performed as soon as the complete
-        DumpRenderTree implementation is upstreamed.
-
-        * DumpRenderTree/efl/ImageDiff.cpp: Added.
-        (pixelFromImageData):
-        (differenceImageFromDifferenceBuffer):
-        (computeDistanceBetweenPixelComponents):
-        (calculatePixelDifference):
-        (calculateDifference):
-        (getTemporaryFile):
-        (printImage):
-        (printImageDifferences):
-        (resizeEcoreEvasIfNeeded):
-        (readImageFromStdin):
-        (parseCommandLineOptions):
-        (shutdownEfl):
-        (abortWithErrorMessage):
-        (initEfl):
-        (main):
-
-2011-06-17  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Dirk Pranke.
-
-        [chromium] force rebaseline-chromium-webkit-tests to use the chromium port
-        https://bugs.webkit.org/show_bug.cgi?id=62907
-
-        This fixes a bug where the ImageDiff on the user's machine doesn't
-        match the logic used on the Chromium buildbots.  This has the downside
-        of requiring that the Chromium ImageDiff is built, but it turns out
-        that even with --tolerance 0, the CG ImageDiff will allow small pixel
-        differences through.
-
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-
-2011-06-17  Brent Fulgham  <bfulgham@webkit.org>
-
-        [WinCairo] Unreviewed build correction.
-
-        * DumpRenderTree/win/DumpRenderTreeCairo.vsprops:
-        Update WinCairo property sheet to link against the Cairo DLL,
-        now that we are using a more recent Cairo build. 
-
-2011-06-17  Brent Fulgham  <bfulgham@webkit.org>
-
-        Reviewed by Brian Weinstein.
-
-        Create a simple example of using the COM-based C++ listeners.
-        A new onclick event is attached (via C++) to the WebKit logo
-        in the default test pattern displayed on startup.  Clicking on
-        the logo causes a message box to be displayed.
-        https://bugs.webkit.org/show_bug.cgi?id=61885
-
-        * WinLauncher/DOMDefaultImpl.h: Added.  Stub implementation of
-          the WebScriptObject and DOMEventListener.
-        * WinLauncher/WinLauncher.cpp:
-        (SimpleEventListener::SimpleEventListener): Example implementation
-          of a simple DOM event listener.
-        (SimpleEventListener::handleEvent): 
-        (WinLauncherWebHost::didFinishLoadForFrame): Added implementation
-         to bind a C++ method to the 'onclick' event for the WebKit logo.
-        (_tWinMain):
-        * WinLauncher/WinLauncher.h:
-        * WinLauncher/WinLauncher.vcproj: Add new DOMDefaultImpl.h file.
-
-2011-06-17  Chang Shu  <cshu@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] [WK2] Support undo/redo in MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=62809
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-
-2011-06-17  Daniel Bates  <dbates@rim.com>
-
-        Rubber-stamped by Eric Seidel.
-
-        Remove run-javascriptcore-tests --skip-build option; Instead add --build/no-build options
-        https://bugs.webkit.org/show_bug.cgi?id=62767
-
-        Part 2 of 3
-
-        Update the BuildBot master.cfg to use the new --no-build run-javascriptcore-tests
-        command line option instead of --skip-build.
-
-        We'll remove --skip-build from run-javascriptcore-test in a follow up patch once the
-        master buildbot picks up the change.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-06-17  Daniel Bates  <dbates@rim.com>
-
-        Rubber-stamped by Eric Seidel.
-
-        Remove run-javascriptcore-tests --skip-build option; Instead add --build/no-build options
-        https://bugs.webkit.org/show_bug.cgi?id=62767
-
-        Part 1 of 3
-
-        Towards renaming the option --skip-build to --no-build. Add --build/--no-build options to
-        run-javascriptcore-tests. Also, add a remark about these options to the usage message
-        printed by run-javascriptcore-tests.
-
-        We'll remove --skip-build in a follow up patch once the master buildbot picks up the changes.
-
-        * Scripts/run-javascriptcore-tests: Additionally, remove unnecessary initialization
-          of $showHelp.
-
-2011-06-17  Joone Hur  <joone.hur@collabora.co.uk>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Replace GdkRectangle by cairo_rectangle_int_t
-        https://bugs.webkit.org/show_bug.cgi?id=60687
-
-        Replace GdkRectangle by cairo_rectangle_int_t.
-
-        * DumpRenderTree/gtk/PixelDumpSupportGtk.cpp: Replace GdkRectangle by cairo_rectangle_int_t.
-        (createBitmapContextFromWebView):
-        * DumpRenderTree/gtk/TextInputController.cpp: Ditto.
-        (firstRectForCharacterRangeCallback):
-
-2011-06-16  Dmitry Lomov  <dslomov@google.com>
-
-        Reviewed by David Levin.
-
-        https://bugs.webkit.org/show_bug.cgi?id=62603
-        Run run-api-tests on bots in debug mode.
-        Release mode is disabled due to https://bugs.webkit.org/show_bug.cgi?id=61812.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-06-16  Leandro Pereira  <leandro@profusion.mobi>
-
-        Reviewed by Eric Seidel.
-
-        [EFL] DumpRenderTree: Add GCController, PixelDumpSupport and
-        WorkQueueItem.
-        They will be plugged into the build system once the EFL's DRT is
-        fully upstreamed.
-        https://bugs.webkit.org/show_bug.cgi?id=61958
-
-        * DumpRenderTree/efl: Added.
-        * DumpRenderTree/efl/GCControllerEfl.cpp: Added.
-        (GCController::collect):
-        (GCController::collectOnAlternateThread):
-        (GCController::getJSObjectCount):
-        * DumpRenderTree/efl/PixelDumpSupportEfl.cpp: Added.
-        (createBitmapContextFromWebView):
-        * DumpRenderTree/efl/WorkQueueItemEfl.cpp: Added.
-        (LoadItem::invoke):
-        (LoadHTMLStringItem::invoke):
-        (ReloadItem::invoke):
-        (ScriptItem::invoke):
-        (BackForwardItem::invoke):
-        * DumpRenderTree/efl/WorkQueueItemEfl.h: Added.
-        (WorkQueueItem::~WorkQueueItem):
-        (LoadItem::LoadItem):
-        (LoadHTMLStringItem::LoadHTMLStringItem):
-        (ScriptItem::ScriptItem):
-        (LoadingScriptItem::LoadingScriptItem):
-        (LoadingScriptItem::invoke):
-        (NonLoadingScriptItem::NonLoadingScriptItem):
-        (NonLoadingScriptItem::invoke):
-        (BackForwardItem::BackForwardItem):
-        (BackItem::BackItem):
-        (ForwardItem::ForwardItem):
-
-2011-06-16  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix, make sure the waf build checks the webKitBranchBuild
-        preference like the perl scripts do.
-
-        * waf/build/build_utils.py:
-        * waf/build/settings.py:
-
-2011-06-16  Tommy Widenflycht  <tommyw@google.com>
-
-        Reviewed by Tony Gentilcore.
-
-        MediaStream API: Runtime enabled features
-        https://bugs.webkit.org/show_bug.cgi?id=62798
-
-        Add the WebRuntimeFeatures API for Media Streams and enable the feature by default in DumpRenderTree.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-
-2011-06-16  Torsten Kurbad  <gentoo@tk-webart.de>
-
-        Reviewed by Eric Seidel.
-
-        Add support for sys.platform == 'linux3' by relaxing
-        conditional statements and/or extending lookup dicts.
-        This way, Linux kernels >=3.0-rc1 get supported in the
-        build process.
-        https://bugs.webkit.org/show_bug.cgi?id=62730
-
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/common/system/file_lock.py:
-        * Scripts/webkitpy/common/system/path_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-06-16  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r88796.
-        http://trac.webkit.org/changeset/88796
-        https://bugs.webkit.org/show_bug.cgi?id=62790
-
-        It made fast/dom/nodesFromRect-basic.html time out on Qt,
-        64-bit, debug mode (Requested by Ossy on #webkit).
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::nodesFromRect):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/qt/PlainTextControllerQt.cpp:
-        (PlainTextController::plainText):
-        * DumpRenderTree/qt/PlainTextControllerQt.h:
-
-2011-06-15  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        Revert the patches in r88995 and r88999; the http servers don't
-        seem to be shutting down reliably.
-
-        * Scripts/webkitpy/layout_tests/port/apache_http_server.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-        * Scripts/webkitpy/layout_tests/port/http_server_base.py:
-        * Scripts/webkitpy/layout_tests/port/http_server_integrationtest.py: Removed.
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-
-2011-06-15  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        Add some debugging messages to triage problems introduced in
-        r88995.
-
-        * Scripts/webkitpy/layout_tests/port/http_server_base.py:
-
-2011-06-15  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        nrwt: should clean up stale server processes from a previous run
-        https://bugs.webkit.org/show_bug.cgi?id=62615
-
-        This change fixes cases where NRWT might start a server and then
-        exit, leaving the server still running. Now NRWT should detect
-        this case and clean up on the next run, without shutting down
-        any processes it didn't start.
-
-        This change also fixes a bug in executive.kill_process on UNIX
-        where zombies weren't being handled properly.
-
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/layout_tests/port/apache_http_server.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-        * Scripts/webkitpy/layout_tests/port/http_server_base.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-
-2011-06-15  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        nrwt: fix http, websocket server startup, shutdown
-        https://bugs.webkit.org/show_bug.cgi?id=62180
-
-        This change refactors all of the server-related code to
-        have consistent semantics. It pushes the start()/stop()
-        logic into the base class and adds four much smaller routines
-        for specialization:
-        _prepare_config() - for optionally writing config files etc.
-            to disk prior to starting the server
-        _remove_stale_log_files()
-        _spawn_process() - the actual launch of the subprocess
-        _cleanup_after_stop() - and custom cleanup code
-
-        Prior to this change the three server implementations were
-        fairly inconsistent, leading to lots of weirdness on the bots
-        with servers being left around, etc.
-
-        * Scripts/webkitpy/layout_tests/port/apache_http_server.py:
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-        * Scripts/webkitpy/layout_tests/port/http_server_base.py:
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-
-2011-06-15  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        webkitpy: clean up code prior to functional changes for server startup/shutdown
-        https://bugs.webkit.org/show_bug.cgi?id=62256
-
-        This patch does a bunch of minor cleanup of the code, but there
-        should be no functional changes except that all of the modules
-        will now use the same exception type. Other changes include
-        removing unused code paths and functions, pushing 'name' and
-        'pid_file' into the base class of the server objects, and using
-        the Filesystem object instead of the codecs, tempfile, and
-        shutils modules.
-
-        * Scripts/webkitpy/layout_tests/port/apache_http_server.py:
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-        * Scripts/webkitpy/layout_tests/port/http_server_base.py:
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-
-2011-06-15  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        webkitpy: add integration tests for new-run-webkit-httpd, stop calling shut_down_http_server
-        https://bugs.webkit.org/show_bug.cgi?id=62251
-
-        shut_down_http_server() was a total hack that was only used by
-        new-run-webkit-httpd, so I've moved the code there and switched
-        to using executive.kill_process() for the common case. The
-        method itself will be removed in the patch on bug 59993.
-
-        * Scripts/new-run-webkit-httpd:
-        * Scripts/webkitpy/layout_tests/port/apache_http_server.py:
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-        * Scripts/webkitpy/layout_tests/port/http_server_integrationtest.py: Added.
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-
-2011-06-15  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-
-        Fix test-webkitpy failure introduced in r88986.
-
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-
-2011-06-15  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        NRWT: doesn't support webarchives, has stale skipping logic.
-        https://bugs.webkit.org/show_bug.cgi?id=58293
-
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-06-15  Jeremy Orlow  <jorlow@webkit.org>
-
-        Change my email to @webkit.org
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-06-15  Nikolas Zimmermann  <nzimmermann@rim.com>
-
-        Reviewed by David Hyatt.
-
-        CSS 2.1: Support replaced elements with relative intrinsic sizes
-        https://bugs.webkit.org/show_bug.cgi?id=15849
-
-        CSS 2.1 failure: html4/replaced-intrinsic-ratio-001
-        https://bugs.webkit.org/show_bug.cgi?id=53099
-
-        Recognize *.htm tests in the old & new DRT implementation, needed for the vanilla css2.1 html4 tests.
-
-        * Scripts/old-run-webkit-tests:
-        * Scripts/webkitpy/layout_tests/port/test_files.py:
-
-2011-06-15  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Add a statusbar to MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=62634
-
-        It shows the url of the current hovered link.
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (browserWindowConstructed): Create the GtkSatusbar.
-        (mouseDidMoveOverElement): Update statusbar text.
-        (browserWindowUIClientInit): Add implementation for
-        mouseDidMoveOverElement().
-        * MiniBrowser/gtk/GNUmakefile.am: Add new files to compilation.
-        * MiniBrowser/gtk/WebBundle/WebBundleMain.c: Added.
-        (mouseDidMoveOverElement): Pass the url of the current hovered
-        link to the UI process.
-        (didCreatePage): Set the UI client adding an implementation for
-        mouseDidMoveOverElement().
-        (WKBundleInitialize):
-        * MiniBrowser/gtk/main.c:
-        (createWKContextWithInjectedBundle): Create a global context with
-        the injected bundle.
-        (loadURI): Use the global context.
-        (main):
-
-2011-06-14  Lucas Forschler  <lforschler@apple.com>
-
-        Reviewed by Stephanie Lewis.
-
-        https://bugs.webkit.org/show_bug.cgi?id=62495
-        Bug 62495 - combine windows and mac kill-old-processes script
-        Add a platform agnostic script.  Remove the recently added mac flavor.
-        Note: Leaving the windows one alone, since it is currently used by the WebKit bots.
-        
-        * BuildSlaveSupport/kill-old-processes: Added.
-        * BuildSlaveSupport/mac: Removed.
-        * BuildSlaveSupport/mac/kill-old-processes: Removed.
-
-2011-06-14  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        nrwt: handle worker exceptions cleanly
-        https://bugs.webkit.org/show_bug.cgi?id=62614
-
-        This change modifiers new-run-webkit-tests to handle exceptions
-        raised by worker threads better, by:
-        - capturing the worker's stack and logging it in the manager
-        - propagating the worker's exception in the caller correctly
-        - attempting to cancel the workers and clean up even when
-          we get an unexpected exception
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-        * Scripts/webkitpy/layout_tests/layout_package/worker.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-
-2011-06-14  Qi Zhang  <qi.2.zhang@nokia.com>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt] fast/dom/HTMLScriptElement/nested-execution.html failed
-        https://bugs.webkit.org/show_bug.cgi?id=62227
-
-        QtWebkit does not yet support different CacheModels. This change will 
-        expose setCacheModel() with a stub implementation, which is enough to pass the LayoutTest.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setCacheModel):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2011-06-14  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] tst_QWebFrame::overloadedSlots() fails
-        https://bugs.webkit.org/show_bug.cgi?id=37319
-
-        Since we don't implictly convert 'document' object to QWebElement
-        in metacalls anymore, change the controller to expect QVariantMap instead.
-
-        The method plainText() was updated to use QVariantMap as well to let the bridge
-        do the conversion directly for us.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::nodesFromRect):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/qt/PlainTextControllerQt.cpp:
-        (PlainTextController::plainText):
-        * DumpRenderTree/qt/PlainTextControllerQt.h:
-
-2011-06-14  Andras Becsi  <abecsi@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        Remove dead code in DumpRenderTree/TestNetscapePlugIn/main.cpp
-        https://bugs.webkit.org/show_bug.cgi?id=62630
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_New): remove dead variable 'forceCarbon'
-
-2011-06-13  Hayato Ito  <hayato@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        [NRWT] Fix a WebKitDriver so that it returns an actual hash value if DRT returns that.
-        https://bugs.webkit.org/show_bug.cgi?id=59188
-
-        A current WebKitDriver doesn't try to return an actual hash value if DRT does not return an image.
-        WebKitDriver should always return an actual hash value if DRT returns that.
-
-        No tests since I'll add sample reftests to make sure mismatch reftests work later,
-        which should be in a separate patch.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-06-13  Kent Tamura  <tkent@chromium.org>
-
-        [Chromium-win] Fix two wrong assertions exposed by r88757.
-
-        * DumpRenderTree/chromium/WebThemeEngineDRTWin.cpp:
-        (WebThemeEngineDRTWin::paintTrackbar):
-
-2011-06-13  Alexey Proskuryakov  <ap@apple.com>
-
-        Added an updated e-mail address for Matt Lilek, to make Bugzilla autocomplete
-        and commit queue happy.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-06-13  Chris Rogers  <crogers@google.com>
-
-        Unreviewed build fix.
-
-        Build fix to chromium DRT until we can rebaseline some tests
-        https://bugs.webkit.org/show_bug.cgi?id=62608
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-
-2011-06-13  Chris Rogers  <crogers@google.com>
-
-        Reviewed by Dirk Pranke.
-
-        Add Web Audio support to chromium DRT
-        https://bugs.webkit.org/show_bug.cgi?id=62306
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::reset):
-        (LayoutTestController::setEncodedAudioData):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController::encodedAudioData):
-        (LayoutTestController::shouldDumpAsAudio):
-        (LayoutTestController::setShouldDumpAsAudio):
-        * DumpRenderTree/chromium/TestEventPrinter.cpp:
-        (DRTPrinter::handleAudioHeader):
-        (TestShellPrinter::handleAudioHeader):
-        * DumpRenderTree/chromium/TestEventPrinter.h:
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::dump):
-
-2011-06-13  Jaehun Lim  <ljaehun.lim@samsung.com>
-
-        Reviewed by Eric Seidel.
-
-        [EFL] Add load error handler to EWebLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=62347
-
-        Add a handler function of "load,error" to EWebLauncher.
-        EWebLauncher now displays a simple error page on load errors.
-
-        * EWebLauncher/main.c:
-        (on_load_error):
-        (browserCreate):
-
-2011-06-13  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Eric Seidel.
-
-        [GTK] [Qt] Eliminate duplicate TestNetscapePlugin implementation
-        https://bugs.webkit.org/show_bug.cgi?id=62385
-
-        Remove duplicate TestNetscapePlugIn implementation. Having two copies
-        of this code makes keeping it in sync much more difficult. The files are
-        almost identical and this change ports the X11 changes to main.cpp.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_New): Do not set the plugin as windowless always. Doing this breaks
-        some results on Qt and this seems to be unnecessary for the moment.
-        (keyEventToChar): Added this helper which converts a X11 keycode into a char.
-        (handleEventX11): Use the handler to properly convert the keycode. Do not print
-        adjustCursorEvent output. The tests currently do not trigger this for Cocoa and thus
-        it should not be in the results.
-        (NPP_GetValue): Properly handle NPPVpluginNeedsXEmbed and make it clearer why the
-        XP_UNIX block is first by guarding against using a null instance.
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro: Update source list add
-        the XP_UNIX define for Linux.
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp: Removed.
-        * GNUmakefile.am: Update source list.
-
-2011-06-13  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r88671.
-        http://trac.webkit.org/changeset/88671
-        https://bugs.webkit.org/show_bug.cgi?id=62591
-
-        "didn't work" (Requested by dpranke on #webkit).
-
-        * Scripts/new-run-webkit-httpd:
-        * Scripts/webkitpy/layout_tests/port/apache_http_server.py:
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-        * Scripts/webkitpy/layout_tests/port/http_server_base.py:
-        * Scripts/webkitpy/layout_tests/port/http_server_integrationtest.py: Removed.
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-
-2011-06-13  Nate Chapin  <japhet@chromium.org>
-
-        Reviewed by Darin Fisher.
-
-        New test method on TestNetscapePlugin for https://bugs.webkit.org/show_bug.cgi?id=61482.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:
-
-2011-06-13  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        webkitpy: add integration tests for new-run-webkit-httpd, stop calling shut_down_http_server
-        https://bugs.webkit.org/show_bug.cgi?id=62251
-
-        shut_down_http_server() was a total hack that was only used by
-        new-run-webkit-httpd, so I've moved the code there and switched
-        to using executive.kill_process() for the common case. The
-        method itself will be removed in the patch on bug 59993.
-
-        * Scripts/new-run-webkit-httpd:
-        * Scripts/webkitpy/layout_tests/port/apache_http_server.py:
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-        * Scripts/webkitpy/layout_tests/port/http_server_integrationtest.py: Added.
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-
-2011-06-13  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        rename ENABLE_NEW_FLEXBOX to ENABLE_CSS3_FLEXBOX
-        https://bugs.webkit.org/show_bug.cgi?id=62578
-
-        * Scripts/build-webkit:
-
-2011-06-13  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        rename ENABLE_FLEXBOX to ENABLE_NEW_FLEXBOX
-        https://bugs.webkit.org/show_bug.cgi?id=62545
-
-        * Scripts/build-webkit:
-
-2011-06-13  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Export an API similar to WebKit1
-        https://bugs.webkit.org/show_bug.cgi?id=57820
-
-        Build GtkLauncher2 for WebKit2. It's actually the same GtkLauncher
-        code, but linking to libwebkit2gtk.
-
-        * GNUmakefile.am:
-        * GtkLauncher/main.c:
-        (createBrowser):
-        (main):
-
-2011-06-12  MORITA Hajime  <morrita@google.com>
-
-        Unreviewed, rolling out r88625.
-        http://trac.webkit.org/changeset/88625
-        https://bugs.webkit.org/show_bug.cgi?id=61073
-
-        Breaks SL Webkit2 Tests
-
-        * WebKitTestRunner/Configurations/InjectedBundleCFLite.vsprops:
-        * WebKitTestRunner/Configurations/InjectedBundleCommon.vsprops:
-        * WebKitTestRunner/Configurations/InjectedBundleCoreFoundation.vsprops:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::didClearWindowForFrame):
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-
-2011-06-12  Mahesh Kulkarni  <mahesh.kulkarni@nokia.com>
-
-        Reviewed by Antonio Gomes.
-
-        [Qt] LayoutTestController needs setTextDirection implementation
-        https://bugs.webkit.org/show_bug.cgi?id=62442
-
-        Implements LayoutController.setTextDirection.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setTextDirection):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2011-06-12  Dominic Cooney  <dominicc@chromium.org>
-
-        Reviewed by Hajime Morita.
-
-        Add window.internals to WebKit2's WebKitTestRunner.
-        https://bugs.webkit.org/show_bug.cgi?id=61073
-
-        Test: fast/harness/internals-object.html
-
-        * WebKitTestRunner/Configurations/InjectedBundleCFLite.vsprops:
-        * WebKitTestRunner/Configurations/InjectedBundleCommon.vsprops:
-        * WebKitTestRunner/Configurations/InjectedBundleCoreFoundation.vsprops:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::didClearWindowForFrame): initialize window.internals
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-
-2011-06-12  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r88616.
-        http://trac.webkit.org/changeset/88616
-        https://bugs.webkit.org/show_bug.cgi?id=62517
-
-        It broke editing/text-iterator/findString.html (Requested by
-        tonikitoo on #webkit).
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2011-06-12  Mahesh Kulkarni  <mahesh.kulkarni@nokia.com>
-
-        Reviewed by Antonio Gomes.
-
-        [Qt] LayoutTestController needs setTextDirection implementation
-        https://bugs.webkit.org/show_bug.cgi?id=62442
-
-        Implements LayoutController.setTextDirection.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setTextDirection):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2011-06-10  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: 'images' links on results.html don't work
-        https://bugs.webkit.org/show_bug.cgi?id=62194
-
-        Use relative path when generating images-diffs.html
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py:
-        Added _output_testname.
-
-2011-06-10  Lucas Forschler  <lforschler@apple.com>
-
-        Reviewed by Stephanie Lewis.
-
-        Script to kill old processes on Mac.
-        This matches the windows version.
-        https://bugs.webkit.org/show_bug.cgi?id=62479  
-        
-        * BuildSlaveSupport/mac: Added.
-        * BuildSlaveSupport/mac/kill-old-processes: Added.
-
-2011-06-10  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by James Robinson.
-
-        When sheriffbot reports failures on IRC instead of saying "(and more..)" it should say the number of tests that are failing
-        https://bugs.webkit.org/show_bug.cgi?id=62489
-
-        * Scripts/webkitpy/tool/bot/sheriff.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot_unittest.py:
-
-2011-06-10  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        add a compile guard ENABLE(FLEXBOX)
-        https://bugs.webkit.org/show_bug.cgi?id=62049
-
-        * Scripts/build-webkit:
-
-2011-06-10  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Dimitri Glazkov.
-
-        <rdar://problem/9562114> Fix DumpRenderTree build for production configuration.
-
-        Ensure that DumpRenderTree can find libWebCoreTestSupport.dylib and the associated
-        header file.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/mac/Configurations/Base.xcconfig:
-
-2011-06-09  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed rolling out r88471, because it broke plugin tests on Qt.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (handleEventX11):
-        (NPP_GetValue):
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp: Added.
-        (webkit_test_plugin_new_instance):
-        (webkit_test_plugin_destroy_instance):
-        (webkit_test_plugin_set_window):
-        (executeScript):
-        (webkit_test_plugin_new_stream):
-        (webkit_test_plugin_destroy_stream):
-        (webkit_test_plugin_stream_as_file):
-        (webkit_test_plugin_write_ready):
-        (webkit_test_plugin_write):
-        (webkit_test_plugin_print):
-        (keyEventToChar):
-        (webkit_test_plugin_handle_event):
-        (webkit_test_plugin_url_notify):
-        (webkit_test_plugin_get_value):
-        (webkit_test_plugin_set_value):
-        (NP_GetMIMEDescription):
-        (NP_Initialize):
-        (NP_Shutdown):
-        (NP_GetValue):
-        * GNUmakefile.am:
-
-2011-06-09  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Eric Seidel.
-
-        [GTK] Implement the next bit of the TextInputController (hasMarkedText and markedRange)
-        https://bugs.webkit.org/show_bug.cgi?id=55603
-
-        Add callbacks to support hasMarkedText and markedRange and also clean up existing 
-        TextInputController support.
-
-        * DumpRenderTree/gtk/TextInputController.cpp:
-        (setMarkedTextCallback): Accept parameters in terms of start and length, instead
-        of start and end. This matches the other ports. Do not use GLib style early returns.
-        (hasMarkedTextCallback): Added.
-        (markedRangeCallback): Added.
-        (insertTextCallback): Cleanup as described above.
-        (unmarkTextCallback): Cleanup as described above.
-        (firstRectForCharacterRangeCallback): Cleanup as described above.
-        (selectedRangeCallback): Cleanup as described above.
-
-2011-06-09  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        nrwt: support webaudio in chromium driver
-        https://bugs.webkit.org/show_bug.cgi?id=62226
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2011-06-09  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Anders Carlsson.
-
-        Added a test for Vector::reverse()
-        https://bugs.webkit.org/show_bug.cgi?id=62393
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WTF/VectorReverse.cpp: Added.
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-
-2011-06-09  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Andreas Kling.
-
-        [GTK] [Qt] Eliminate duplicate TestNetscapePlugin implementation
-        https://bugs.webkit.org/show_bug.cgi?id=62385
-
-        Remove duplicate TestNetscapePlugIn implementation. Having two copies
-        of this code makes keeping it in sync much more difficult. The files are
-        almost identical and this change ports the X11 changes to main.cpp.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (keyEventToChar): Added this helper which converts a X11 keycode into a char.
-        (handleEventX11): Use the handler to properly convert the keycode. Do not print
-        adjustCursorEvent output. The tests currently do not trigger this for Cocoa and thus
-        it should not be in the results.
-        (NPP_GetValue): Properly handle NPPVpluginNeedsXEmbed.
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro: Update source list.
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp: Removed.
-        * GNUmakefile.am: Update source list.
-
-2011-06-09  Noel Gordon  <noel.gordon@gmail.com>
-
-        Reviewed by Tony Chang.
-
-        Test plugin should support event logging on the windows port.
-        https://bugs.webkit.org/show_bug.cgi?id=61721
-
-        The WebKit win port interprets a 0 return from plugin NPP_HandleEvent()
-        calls to mean the plugin handled the event.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (handleEventWin): Return 0 for each event on windows.
-
-2011-06-09  Chang Shu  <cshu@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] [WK2] Many editing tests failed on missing shouldBeginEditingInDOMRange:range printout
-        https://bugs.webkit.org/show_bug.cgi?id=62381
-
-        Activate QGraphicsScene and setFocus on QGraphicsItem to make sure the view has the focus.
-        QWKPagePrivate::isViewFocused() will check it later.
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-
-2011-06-09  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        Teach Qt about window.internals
-        https://bugs.webkit.org/show_bug.cgi?id=61074
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::initJSObjects):
-
-2011-06-09  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Disable running layout tests on Mac EWS bots (and fix cr-linux bots to run them again)
-        https://bugs.webkit.org/show_bug.cgi?id=62362
-
-        The mac bots are failing inspector tests.  We don't know why yet.
-        So for now, turning run-webkit-tests off for the mac-ews.
-
-        Also noticed that due to the wrong variable name the cr-linux
-        bots weren't running tests!
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-
-2011-06-09  Zoltan Herczeg  <zherczeg@inf.u-szeged.hu>
-
-        Reviewed by Csaba Osztrogonac.
-
-        [Qt][WK2] Canvas tests make css2.1 ones failing
-        https://bugs.webkit.org/show_bug.cgi?id=53427
-
-        Adding a workaround for this issue by mimicing the behaviour of DumpRenderTree.
-        Since the Qt port should eventually go to QRawFont, this issue will be resolved
-        in the future. Both clearMemoryCaches() and removeAllApplicationFonts() are
-        needed for the workaround.
-
-        * WebKitTestRunner/InjectedBundle/qt/LayoutTestControllerQt.cpp:
-        (WTR::LayoutTestController::platformInitialize):
-
-2011-06-09  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        Reviewed by Chris Fleizach.
-
-        [GTK] Provide a way in DRT to check the platform name
-        https://bugs.webkit.org/show_bug.cgi?id=56855
-
-        Patch for adding 'platformName' static property to DRT's
-        LayoutController and provide platform specific implementations.
-
-        In principle, this feature will be only of interest for writing
-        accessibility tests, so that's why it's only implemented in the
-        Mac, Gtk and Win platforms.
-
-        * DumpRenderTree/LayoutTestController.h: New method platformName().
-        * DumpRenderTree/LayoutTestController.cpp:
-        (getPlatformNameCallback): New callback for 'platformName'.
-        (LayoutTestController::staticValues): New static property.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::platformName): Implemented.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::platformName): Implemented.
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::platformName): Implemented.
-
-2011-06-08  Mike Lawther  <mikelawther@chromium.org>
-
-        Reviewed by James Robinson.
-
-        Add mikelawther to committers.py
-        https://bugs.webkit.org/show_bug.cgi?id=62354
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-06-08  Kent Tamura  <tkent@chromium.org>
-
-        [Chromium] Fix a typo.
-
-        * DumpRenderTree/chromium/WebThemeControlDRTWin.cpp:
-        (WebThemeControlDRTWin::draw):
-
-2011-06-08  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Hajime Morita.
-
-        [Chromium] Support vertical sliders in Windows DRT
-        https://bugs.webkit.org/show_bug.cgi?id=62352
-
-        * DumpRenderTree/chromium/WebThemeControlDRTWin.cpp:
-        (WebThemeControlDRTWin::draw):
-          Paint VerticalSliderThumbType and VerticalSliderTrackType.
-        * DumpRenderTree/chromium/WebThemeControlDRTWin.h:
-          Add VerticalSliderTrackType and VerticalSliderThumbType.
-        * DumpRenderTree/chromium/WebThemeEngineDRTWin.cpp:
-        (WebThemeEngineDRTWin::paintTrackbar):
-          Convert Windows identifiers to the internal identifiers for vertical sliders.
-
-2011-06-08  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        add a short-flag for --experimental-fully-parallel
-        https://bugs.webkit.org/show_bug.cgi?id=62321
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-06-08  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: don't turn the tree red when there are new passes
-        https://bugs.webkit.org/show_bug.cgi?id=62311
-
-        Look for "new passes" instead of "passed unexpectedly" in evaluateCommand
-        to match commandComplete.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-06-08  Tom Hudson  <tomhudson@google.com>
-
-        Reviewed by Mihai Parparita.
-
-        Allow sorting in RebaselineServer based on 'metric' field in unexpected_results.json
-        https://bugs.webkit.org/show_bug.cgi?id=60964
-
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/index.html:
-        Add 'Sort tests by metric' link.
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/main.js:
-        (disableSorting): Activate 'Sort tests by metric' link.
-        (enableSorting): Deactivate 'Sort tests by metric' link.
-        (selectDirectory): Call enableSorting()/disableSorting() depending
-        on currently selected failure type, and sort tests if requested.
-        * Scripts/webkitpy/tool/commands/data/rebaselineserver/main.css:
-        New .disabled-control class for deactivated links.
-
-2011-06-08  Tom Sepez  <tsepez@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Add web permissions callbacks for mixed content blocking.
-        https://bugs.webkit.org/show_bug.cgi?id=61946
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::setAllowDisplayOfInsecureContent):
-        (LayoutTestController::setAllowRunningOfInsecureContent):
-        (LayoutTestController::overridePreference):
-        * DumpRenderTree/chromium/WebPermissions.cpp:
-        (WebPermissions::allowDisplayingInsecureContent):
-        (WebPermissions::allowRunningInsecureContent):
-        (WebPermissions::setDisplayingInsecureContentAllowed):
-        (WebPermissions::setRunningInsecureContentAllowed):
-        (WebPermissions::reset):
-        * DumpRenderTree/chromium/WebPermissions.h:
-
-2011-06-08  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        webkitpy: fix typo causing us to skip the port unit tests in chromium_linux
-        https://bugs.webkit.org/show_bug.cgi?id=62259
-
-        * Scripts/webkitpy/layout_tests/port/chromium_linux_unittest.py:
-
-2011-06-08  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: master.cfg errors when nrwt successfully runs test
-        https://bugs.webkit.org/show_bug.cgi?id=62303
-
-        Access self.incorrectLayoutLines instead of incorrectLayoutLines in evaluateCommand.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-06-08  Greg Simon  <gregsimon@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Control Indexeddb backends from LayoutTestController
-        https://bugs.webkit.org/show_bug.cgi?id=61000
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setOverrideIndexedDBBackingStore):
-        (LayoutTestController::clearAllDatabases):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-
-2011-06-08  Andreas Kling  <kling@webkit.org>
-
-        Add Pierre Rossi to contributors list for EZ-CC.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-06-08  Ilya Sherman  <isherman@chromium.org>
-
-        Reviewed by Andreas Kling.
-
-        Add Ilya Sherman to list of committers
-        https://bugs.webkit.org/show_bug.cgi?id=62270
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-06-07  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: Bot master should print useful information on waterfall/console for nrwt
-        https://bugs.webkit.org/show_bug.cgi?id=62178
-
-        Added commandComplete and evaluateCommand for NewRunWebKitTests class
-        to parse new-run-webkit-tests' results.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-06-07  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        webkitpy: add a popen() call to executive
-        https://bugs.webkit.org/show_bug.cgi?id=62179
-
-        This change adds a popen() wrapper call to the Executive object.
-        This will allow other webkitpy scripts that currently call
-        subprocess directly to use Executive, instead.
-
-        No additional tests are necessary (the existing tests cover the code).
-
-        * Scripts/webkitpy/common/system/executive.py:
-
-2011-06-07  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Remove repeated IPC traffic from SetRenderTreeSize message
-        https://bugs.webkit.org/show_bug.cgi?id=62244
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        Add stub for didLayoutForFrame.
-
-2011-06-07  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        rebaseline-chromium-webkit-tests: fix baselining order for linux, linux_x86_64
-        https://bugs.webkit.org/show_bug.cgi?id=62241
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2011-06-07  Adam Barth  <abarth@webkit.org>
-
-        Rubber-stamped by Eric Seidel.
-
-        Enable tests on the mac-ews
-
-        When we bring the mac-ews back up, we're going to try running tests!
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-
-2011-06-07  Dmitry Lomov  <dslomov@google.com>
-
-        Reviewed by David Levin.
-
-        https://bugs.webkit.org/show_bug.cgi?id=62215
-        Allow comparisons with 0 in LIKELY and UNLIKELY macros.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-
-2011-06-07  Nico Weber  <thakis@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [chromium] -Wdelete-non-virtual-dtor pass for DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=62210
-
-        The change to TestEventPrinter fixes a latent bug, because
-        objects are deleted through the TestEventPrinter type, but none
-        of the subclasses have destructors or non-POD members.
-
-        The changes to NotificationPresenter and WebViewHost do _not_ to fix a
-        real bug, they just make clang's -Wdelete-non-virtual-dtor happy. As
-        discussed at http://codereview.chromium.org/7094005/, we prefer making
-        leaf class destructors virtual over making the leaf classes final.
-
-        * DumpRenderTree/chromium/NotificationPresenter.cpp:
-        (NotificationPresenter::~NotificationPresenter):
-        * DumpRenderTree/chromium/NotificationPresenter.h:
-        * DumpRenderTree/chromium/TestEventPrinter.cpp:
-        (TestEventPrinter::~TestEventPrinter):
-        * DumpRenderTree/chromium/TestEventPrinter.h:
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2011-06-06  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Reviewed by Dirk Pranke.
-
-        [chromium] Chromium bots on build.webkit.org don't upload results.html
-        https://bugs.webkit.org/show_bug.cgi?id=61961
-
-        Don't fix the path on chromium port erroneously.
-
-        * BuildSlaveSupport/test-result-archive:
-
-2011-06-06  Martin Robinson  <mrobinson@igalia.com>
-
-        Fix the GTK+ build by ensuring that the autogenerated sources
-        necessary for libWebCoreInternals are recorded in a predeclared
-        variable before assigning to BUILT_SOURCES.
-
-        * GNUmakefile.am: Predeclare libwebcoreinternals_built_sources.
-
-2011-06-06  Yong Li  <yoli@rim.com>
-
-        Reviewed by Eric Seidel.
-
-        https://bugs.webkit.org/show_bug.cgi?id=62097
-        Fix the problem that integral bitfield check incorrectly barked at ?: expressions.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-
-2011-06-06  Xan Lopez  <xlopez@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Enable feature/symbol detection in NWRT/GTK
-        https://bugs.webkit.org/show_bug.cgi?id=62136
-
-        Disable feature detection through DRT, since we don't support it,
-        and set the libwebcore patch correctly so that symbol detection
-        through 'nm' works.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-
-2011-06-06  Shishir Agrawal  <shishir@chromium.org>
-
-        Reviewed by Tony Gentilcore.
-
-        Add a "prerender" state for page visibility.
-        https://bugs.webkit.org/show_bug.cgi?id=62062
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::setPageVisibility):
-
-2011-06-06  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Implement download feature for QtTestBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=61865
-
-        Buildfix for --minimal and CONFIG+=qt_minimal build after r88161.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::LauncherWindow):
-        * QtTestBrowser/launcherwindow.h:
-
-2011-06-06  Barát Tibor  <Barat.Tibor@stud.u-szeged.hu>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt] Implement download feature for QtTestBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=61865
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::LauncherWindow):
-        (LauncherWindow::downloadRequest):
-        (LauncherWindow::fileDownloadFinished):
-        * QtTestBrowser/launcherwindow.h:
-
-2011-06-04  Dominic Cooney  <dominicc@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Make DumpRenderTree initialize window.internals.
-        https://bugs.webkit.org/show_bug.cgi?id=61076
-
-        * DumpRenderTree/win/DumpRenderTreeCommon.vsprops: link WebCoreTestSupport.
-        * DumpRenderTree/win/FrameLoadDelegate.cpp:
-        (FrameLoadDelegate::didClearWindowObjectForFrameInStandardWorld):
-
-2011-06-06  Alexandru Chiculita  <achicu@adobe.com>
-
-        Reviewed by Kent Tamura.
-
-        Add ENABLE_CSS_EXCLUSIONS support for build-webkit script
-        https://bugs.webkit.org/show_bug.cgi?id=61628
-
-        * Scripts/build-webkit:
-
-2011-06-06  Mihnea Ovidenie  <mihnea@adobe.com>
-
-        Reviewed by Kent Tamura.
-
-        Add ENABLE(CSS_REGIONS) guard for CSS Regions support
-        https://bugs.webkit.org/show_bug.cgi?id=61631
-
-        * Scripts/build-webkit:
-
-2011-06-06  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed. Fix the GTK+ build.
-
-        * GNUmakefile.am: Use javascriptcore_cflags when building libWebCoreInternals.
-
-2011-06-05  Alexey Proskuryakov  <ap@apple.com>
-
-        Add an e-mail address for Cameron McCormack that matches Bugzilla (so that auto-completion
-        works properly).
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-06-04  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix. Update git branch build dir handling to match what other
-        WebKit scripts expect, so other scripts work properly with wx.
-
-        * waf/build/build_utils.py:
-        * waf/build/settings.py:
-
-2011-06-04  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix. Restore the PPC build and allow users to specify architectures
-        to build on Mac.
-
-        * waf/build/settings.py:
-        * wx/install-unix-extras:
-
-2011-06-04  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fixes for recent trunk changes.
-
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setTextDirection):
-        * waf/build/settings.py:
-
-2011-06-04  Martin Robinson  <mrobinson@igalia.com>
-
-        Fix the GTK+ build.
-
-        * GNUmakefile.am: Add some missing newline escape.
-
-2011-06-03  Martin Robinson  <mrobinson@igalia.com>
-
-        Try to fix the GTK+ bulid.
-
-        * GNUmakefile.am: Add JSDOMWrapper.cpp to the libWebCoreInternals
-        source list.
-
-2011-06-03  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        nrwt: should skip chromium test expectation overrides on upstream bots
-        https://bugs.webkit.org/show_bug.cgi?id=61888
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-
-2011-06-03  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: minor logging, code cleanup
-        https://bugs.webkit.org/show_bug.cgi?id=62055
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-        * Scripts/webkitpy/layout_tests/layout_package/worker.py:
-
-2011-06-03  Martin Robinson  <mrobinson@igalia.com>
-
-        Try to fix the build failure on the GTK+ 32-bit Release bot.
-
-        * GNUmakefile.am: Add JSInternal.{cpp,h} to the BUILT_SOURCES list.
-
-2011-05-31  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Ryosuke Niwa.
-
-        [GTK] Support smart replace for the pasteboard
-        https://bugs.webkit.org/show_bug.cgi?id=61734
-
-        Call into the DumpRenderTreeSupportGtk hooks to toggle smart replace.
-        This is required to produce consistent test results.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues): Set the smart replace setting to on by default.
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setSmartInsertDeleteEnabled): Added an implementation of this
-        methods which calls into DumpRenderTreeSupportGtk.
-
-2011-06-03  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Dimitri Glazkov.
-
-        Teach Gtk build about window.internals
-        https://bugs.webkit.org/show_bug.cgi?id=61071
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webViewWindowObjectCleared): Inject the new internals object when the
-        window object clears.
-        * GNUmakefile.am: Add new source files and includes necessary for window.internals.
-        Also do a little bit of cleanup.
-
-2011-06-03  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Worker may not be stopped after LT.
-        https://bugs.webkit.org/show_bug.cgi?id=61847
-
-        Re-submit a variant of the first fix for this bug. It's possible
-        that actually calling cleanup() in the worker threads was taking
-        too long and we triggered the assertions in the manager thread.
-
-        I've bumped up the timeout in the manager and added better
-        diagnostics. I also cleaned up the cleanup() code a bit because
-        there was some unnecessary if-checks.
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-        * Scripts/webkitpy/layout_tests/layout_package/worker.py:
-
-2011-06-03  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        nrwt: fix duplicate logging regression
-        https://bugs.webkit.org/show_bug.cgi?id=61981
-
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-
-2011-06-03  Robert Kroeger  <rjkroege@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Modified addTouchPoint to correctly re-use touchPoint id values starting
-        from the lowest not-un-use touchPoint id as is done by the embedder
-        APIs. (Fixes BUGCR36415)
-
-        https://bugs.webkit.org/show_bug.cgi?id=62016
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::addTouchPoint):
-
-2011-06-03  Cary Clark  <caryclark@google.com>
-
-        Reviewed by Eric Seidel.
-
-        Draw DRT scroll bar thumb with CG when WebKit renders with Skia
-        https://bugs.webkit.org/show_bug.cgi?id=61534
-
-        Skia on Mac uses Skia to render WebKit, and CG
-        to render UI elements. The CG elements need a
-        transcribed graphics context that preserves the
-        canvas matrix, and the canvas clip.
-
-        The SkiaBitLocker utility class sets up a CGContext
-        from the SkCanvas, locks the bitmap's bits, and
-        releases the lock when the class goes out of scope.
-
-        The SkiaBitLocker implementation is described by
-        this patch:
-        http://codereview.chromium.org/7031006/
-
-        When WebKit uses Skia for rendering, the WebCanvas
-        is an SkCanvas. Create an equivalent CGContext to
-        draw the scrollbar thumb.
-
-        As the Chrome Mac port does not yet use Skia, this
-        patch has no effect and requires no tests.
-
-        * DumpRenderTree/chromium/WebThemeEngineDRTMac.mm:
-        (WebThemeEngineDRTMac::paintHIThemeScrollbarThumb):
-
-2011-06-03  Andras Becsi  <abecsi@webkit.org>
-
-        Unreviewed build fix.
-
-        Fix typo.
-
-        * Scripts/old-run-webkit-tests:
-
-2011-06-03  Andras Becsi  <abecsi@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        Print error message when there is no httpd present on the system
-        https://bugs.webkit.org/show_bug.cgi?id=61939
-
-        * Scripts/old-run-webkit-tests: Propose to run with --no-httpd.
-        * Scripts/webkitperl/httpd.pm:
-
-2011-06-03  Mikhail Naganov  <mnaganov@chromium.org>
-
-        Reviewed by Yury Semikhatsky.
-
-        Web Inspector: [Chromium] cpu-profiler-profiling layout test is flaky on Linux Debug.
-        https://bugs.webkit.org/show_bug.cgi?id=61533
-
-        Skip cpu-profiler-profiling in debug, implement a fast headless alternative.
-
-        * DumpRenderTree/chromium/DRTDevToolsAgent.cpp:
-        (DRTDevToolsAgent::setJavaScriptProfilingEnabled):
-        * DumpRenderTree/chromium/DRTDevToolsAgent.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setJavaScriptProfilingEnabled):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setJavaScriptProfilingEnabled):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::setJavaScriptProfilingEnabled):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2011-06-02  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        NRWT needs a way to log to a file without including backspaces without needing --verbose
-        https://bugs.webkit.org/show_bug.cgi?id=60328
-
-        This change modifies NRWT so that if it can tell if it is
-        writing to a terminal, it will overwrite any messages printed
-        in the 'one-line-progress' and 'updates' print options, and if
-        not (or if --verbose was specified) the messages will be printed
-        without backspaces.
-
-        If the overwriting updates are disabled, one-line-progress will
-        only print every 10 seconds instead of on every update. This
-        ensures that we still get updates once in a while while the
-        tests are running, even if we're not in --verbose mode. Note
-        that one-line-progress will now still be printed in --verbose,
-        since it's useful as long as you're not flooded with the
-        updates.
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-
-2011-06-02  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        [GTK] autogen.sh is run twice for each buld on the bots
-        https://bugs.webkit.org/show_bug.cgi?id=61951
-
-        * Scripts/webkitdirs.pm: Only check the previous autotools arguments
-        for the WebKit project. This prevents build-jsc runs from forcing subsequent
-        build-webkit runs to re-rerun autogen.sh.
-
-2011-06-02  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r87946.
-        http://trac.webkit.org/changeset/87946
-        https://bugs.webkit.org/show_bug.cgi?id=61965
-
-        Cause NRWT to break (Requested by abarth|gardener on #webkit).
-
-        * Scripts/webkitpy/layout_tests/layout_package/worker.py:
-
-2011-06-02  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        Add build logistics and plumbing for window.internals object.
-        https://bugs.webkit.org/show_bug.cgi?id=60313
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Added linking new WebCoreTestSupport library.
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::bindJSObjectsToWindow): Added injection code.
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate didClearWindowObjectInStandardWorldForFrame:]): Ditto.
-
-2011-06-02  Hao Zheng  <zhenghao@chromium.org>
-
-        Reviewed by Dirk Pranke.
-
-        Call cleanup() explicitly at the end of worker.run().
-        https://bugs.webkit.org/show_bug.cgi?id=61847
-
-        * Scripts/webkitpy/layout_tests/layout_package/worker.py:
-
-2011-06-02  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Unreviewed, rolling out r87926.
-        http://trac.webkit.org/changeset/87926
-        https://bugs.webkit.org/show_bug.cgi?id=60313
-
-        Fails to find WebCoreTestSupport.dylib on bots.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::bindJSObjectsToWindow):
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate didClearWindowObjectInStandardWorldForFrame:]):
-
-2011-05-21  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        Add build logistics and plumbing for window.internals object.
-        https://bugs.webkit.org/show_bug.cgi?id=60313
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Added linking new WebCoreTestSupport library.
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::bindJSObjectsToWindow): Added injection code.
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate didClearWindowObjectInStandardWorldForFrame:]): Ditto.
-
-2011-06-02  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Reviewed by Eric Seidel.
-
-        Adjust efl coding style to more efl directories
-        https://bugs.webkit.org/show_bug.cgi?id=61903
-
-        * Scripts/webkitpy/style/checker.py: Adjust efl coding style to efl directories.
-
-2011-06-01  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        old-run-webkit-tests: add support for audio files
-        https://bugs.webkit.org/show_bug.cgi?id=57992
-
-        * Scripts/old-run-webkit-tests:
-
-2011-06-01  Jochen Eisinger  <jochen@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Implement layoutTestController.setImagesAllowed for controlling the respective behavior of the WebPermissionClient
-        https://bugs.webkit.org/show_bug.cgi?id=34314
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setImagesAllowed):
-        (LayoutTestController::setStorageAllowed):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/WebPermissions.cpp: Copied from Tools/DumpRenderTree/chromium/WebPermissions.h.
-        (WebPermissions::WebPermissions):
-        (WebPermissions::~WebPermissions):
-        (WebPermissions::allowImages):
-        (WebPermissions::allowStorage):
-        (WebPermissions::setImagesAllowed):
-        (WebPermissions::setStorageAllowed):
-        (WebPermissions::reset):
-        * DumpRenderTree/chromium/WebPermissions.h:
-
-2011-06-01  Noel Gordon  <noel.gordon@gmail.com>
-
-        Reviewed by Tony Chang.
-
-        Test plugin should support event logging on the windows port.
-        https://bugs.webkit.org/show_bug.cgi?id=61721
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (handleEventWin): Well, handle them.
-
-2011-06-01  Daniel Cheng  <dcheng@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        [chromium] Use correct file name for dragging out images.
-        https://bugs.webkit.org/show_bug.cgi?id=24887
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::EventSender):
-        (EventSender::dumpFilenameBeingDragged):
-        * DumpRenderTree/chromium/EventSender.h:
-
-2011-06-01  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        nrwt: make webaudio work w/o content-length header
-        https://bugs.webkit.org/show_bug.cgi?id=61819
-
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-06-01  Viatcheslav Ostapenko  <ostapenko.viatcheslav@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        [Qt][WK2] Add QGLWidget viewport support to MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=61802
-
-        Add command line parameter and menu item to MiniBrowser application 
-        enabling use of QGLWidget for browser viewport.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::toggleGLViewport):
-        * MiniBrowser/qt/BrowserWindow.h:
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::handleUserOptions):
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-        (WindowOptions::WindowOptions):
-
-2011-06-01  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        Print out autogen arguments when they differ from the last set, to help
-        with debugging build issues.
-
-        * Scripts/webkitdirs.pm: Print out previous and current build arguments
-        when they differ.
-
-2011-06-01  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] run-launcher should run MiniBrowser in WebKit2
-        https://bugs.webkit.org/show_bug.cgi?id=61858
-
-        * Scripts/run-launcher: Check whether -2 command line option has
-        been passed and run MiniBrowser instead of GtkLauncher.
-
-2011-05-31  Hao Zheng  <zhenghao@chromium.org>
-
-        Reviewed by Dirk Pranke.
-
-        Fix exception in verbose printing mode.
-        https://bugs.webkit.org/show_bug.cgi?id=61723
-
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-
-2011-05-31  Yong Li  <yoli@rim.com>
-
-        Reviewed by Eric Seidel.
-
-        https://bugs.webkit.org/show_bug.cgi?id=54807
-        We have been assuming plain bitfields (like "int a : 31") are always signed integers.
-        However some compilers can treat them as unsigned. For example, RVCT 4.0 states plain
-        bitfields (declared without either signed or unsigned qualifiers) are treats as unsigned.
-        http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0348c/Babjddhe.html
-        Although we can use "--signed-bitfields" flag to make RVCT 4.0 behave as most other compilers,
-        always using "signed"/"unsigned" qualifier to declare integral type bitfields is still a good
-        rule we should have in order to make our code independent from compilers and compiler flags.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-
-2011-05-31  Hironori Bono  <hbono@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Add a JavaScript function layoutTestController.setTextDirection().
-        https://bugs.webkit.org/show_bug.cgi?id=50952
-
-        This change adds a new JavaScript function setTextDirection() to the
-        LayoutTestController class of Safari and Chrome to write layout tests
-        that changes the text direction of an editable element.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setTextDirectionCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setTextDirection):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setTextDirection):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setTextDirection):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setTextDirection):
-
-2011-05-31  Ademar de Souza Reis Jr  <ademar.reis@openbossa.org>
-
-        Reviewed by Simon Hausmann.
-
-        [Qt] User-agent list of Qt test browsers is very outdated
-        https://bugs.webkit.org/show_bug.cgi?id=61531
-
-        The user can edit the user-agent manually, so there's no need to have
-        a super complete and up to date list, but it's nice to have it
-        minimally updated.
-
-        * MiniBrowser/qt/useragentlist.txt:
-        * QtTestBrowser/useragentlist.txt:
-
-2011-03-30  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Adam Roben.
-
-        [GTK] [WebKit2] Implement a basic WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=57068
-
-        Add an implementation of WebKitTestRunner for GTK+.
-
-        * Scripts/build-webkittestrunner: Added knowledge of GTK+ TestRunner.
-        * Scripts/old-run-webkit-tests: Ditto.
-        * Scripts/run-launcher: Ditto.
-        * Scripts/webkitdirs.pm: Ditto.
-        * WebKitTestRunner/GNUmakefile.am: Added.
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        * WebKitTestRunner/InjectedBundle/gtk/ActivateFontsGtk.cpp: Added.
-        * WebKitTestRunner/InjectedBundle/gtk/InjectedBundleGtk.cpp: Copied from Source/WebKit2/WebProcess/InjectedBundle/gtk/InjectedBundleGtk.cpp.
-        * WebKitTestRunner/InjectedBundle/gtk/LayoutTestControllerGtk.cpp: Copied from Source/WebKit2/WebProcess/InjectedBundle/gtk/InjectedBundleGtk.cpp.
-        * WebKitTestRunner/PlatformWebView.h:
-        * WebKitTestRunner/gtk/PlatformWebViewGtk.cpp: Added.
-        * WebKitTestRunner/gtk/TestControllerGtk.cpp: Added.
-        * WebKitTestRunner/gtk/TestInvocationGtk.cpp: Copied from Source/WebKit2/WebProcess/InjectedBundle/gtk/InjectedBundleGtk.cpp.
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-        * WebKitTestRunner/gtk/main.cpp: Copied from Source/WebKit2/WebProcess/InjectedBundle/gtk/InjectedBundleGtk.cpp.
-        (main): Added.
-
-2011-05-31  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: doesn't wait for children if it gets a ctrl-c
-        https://bugs.webkit.org/show_bug.cgi?id=60241
-
-        * Scripts/new-run-webkit-tests:
-
-2011-05-31  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Kilzer.
-
-        webkitpy should create zips with zip -9
-        https://bugs.webkit.org/show_bug.cgi?id=61789
-
-        Dave Kilzer suggested we add this to make zips uploaded to bugzilla smaller.
-
-        * Scripts/webkitpy/common/system/workspace.py:
-        * Scripts/webkitpy/common/system/workspace_unittest.py:
-
-2011-05-31  Kristóf Kosztyó  <Kosztyo.Kristof@stud.u-szeged.hu>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt] Implement find feature for QtTestBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=61425
-
-        Buildfix for --minimal and CONFIG+=qt_minimal build.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::LauncherWindow):
-        (LauncherWindow::createChrome):
-        * QtTestBrowser/launcherwindow.h:
-
-2011-05-31  Kristóf Kosztyó  <Kosztyo.Kristof@stud.u-szeged.hu>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt] Implement find feature for QtTestBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=61425
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::LauncherWindow):
-        (LauncherWindow::createChrome):
-        (LauncherWindow::showFindBar):
-        (LauncherWindow::find):
-        * QtTestBrowser/launcherwindow.h:
-
-2011-05-30  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Implement JavaScript dialogs in MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=61725
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (WKStringGetCString): Helper function to get a UTF-8 c string from
-        a WKStringRef.
-        (WKURLGetCString): Helper function to get a UTF-8 c string from a
-        WKURLRef.
-        (browserWindowUpdateURL): Update to use WKURLGetCString.
-        (didReceiveTitleForFrame): Update to use WKStringGetCString.
-        (createMessageDialog): Create a GtkMessageDialog.
-        (runJavaScriptAlert):
-        (runJavaScriptConfirm):
-        (runJavaScriptPrompt):
-        (browserWindowUIClientInit):
-
-2011-05-29  Yuta Kitamura  <yutak@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        WebSocket closing handshake
-        https://bugs.webkit.org/show_bug.cgi?id=35721
-
-        * Scripts/webkitpy/thirdparty/__init__.py:
-        Pull in pywebsocket 0.6b1. We need to update pywebsocket
-        to get the right behavior of closing handshake.
-
-2011-05-29  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by David Kilzer.
-
-        REGRESSION (r86515): svn-apply ignores diffs that omit line count in chunk range
-        https://bugs.webkit.org/show_bug.cgi?id=61162
-
-        Fixes an issue where svn-apply may ignore a diff that contains a chunk range line
-        that omits a line count. In particular, the chunk range regular expression does
-        not match a chunk range line that omits a line count. GNU diff(1) will omit the
-        line count in the chunk range if the line count is exactly 1. For example, appending
-        a new line to the end of an existing file F that contains exactly one line of text will
-        be represented in a diff with a chunk range line that omits the line count for F.
-
-        * Scripts/VCSUtils.pm:
-          (parseChunkRange): Added.
-        * Scripts/webkitperl/VCSUtils_unittest/parseChunkRange.pl: Added.
-        * Scripts/webkitperl/VCSUtils_unittest/parseDiff.pl:
-          - Added unit test "Git: Append new line to the end of an existing file".
-
-2011-05-28  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        EWS builds patches that fail to build twice, which seems useless and slows down the bots
-        https://bugs.webkit.org/show_bug.cgi?id=55585
-
-        This patch switches all the early warning system bots over to the new
-        PatchAnalysisTask-based infrastructure.  This patch makes these bots
-        more efficient (in the case where patches fail to build) and paves the
-        way for running tests on these bots!
-
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-        * Scripts/webkitpy/tool/bot/earlywarningsystemtask.py:
-        * Scripts/webkitpy/tool/bot/patchanalysistask.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-
-2011-05-28  Kenichi Ishibashi  <bashi@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        Add bashi as a committer.
-
-        https://bugs.webkit.org/show_bug.cgi?id=61685
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-05-27  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        When checking whether the tree is red, the EWS posts a link to the wrong log
-        https://bugs.webkit.org/show_bug.cgi?id=61072
-
-        We need to cache the original script error because that contains the
-        failure log we want to upload.  If we don't cache that script error,
-        self._script_error will get overwritten when we sanity check the clean
-        tree (and it also has test failures).
-
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-            - This testing approach is slightly goofy.  We'd like to use
-              assertRaisesRegexp, but that's not available until Python 2.7.
-        * Scripts/webkitpy/tool/bot/patchanalysistask.py:
-
-2011-05-27  Jochen Eisinger  <jochen@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Add layoutTestController.setStorageAllowed() to control whether access
-        to the localStorage API is enabled via the WebPermissionClient
-        https://bugs.webkit.org/show_bug.cgi?id=61581
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setStorageAllowed):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::createNewWindow):
-        * DumpRenderTree/chromium/TestShell.h:
-        * DumpRenderTree/chromium/WebPermissions.h: Added.
-        (WebPermissions::WebPermissions):
-        (WebPermissions::allowStorage):
-        (WebPermissions::setStorageAllowed):
-        (WebPermissions::reset):
-
-2011-05-27  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        NRWT: clean up metered_stream code in preparation for 'nooverwriting' patch
-        https://bugs.webkit.org/show_bug.cgi?id=60326
-
-        This patch removes a lot of the complexity from the
-        metered_stream implementation that was unnecessary since there
-        was only one caller and the logic could be coordinated better.
-
-        There should be no functional changes in this patch, just code
-        getting deleted and cleaned up.
-
-        * Scripts/webkitpy/layout_tests/layout_package/metered_stream.py:
-        * Scripts/webkitpy/layout_tests/layout_package/metered_stream_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-
-2011-05-27  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        NRWT: minor cleanup in printing module
-        https://bugs.webkit.org/show_bug.cgi?id=60329
-
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-
-2011-05-27  Steve Lacey  <sjl@chromium.org>
-
-        Reviewed by David Levin.
-
-        Add sjl@chromium.org as a committer.
-
-        https://bugs.webkit.org/show_bug.cgi?id=61672
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-05-27  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        NRWT: remove --print detailed-progress
-        https://bugs.webkit.org/show_bug.cgi?id=60324
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-05-27  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        NRWT: debug messages from the workers are being logged twice
-        https://bugs.webkit.org/show_bug.cgi?id=60428
-
-        It looks like when the workers are run in separate processes
-        we end up getting two copies of every log message they print.
-        This has to do with the multiprocessing module on UNIX cloning
-        the log configuration in a way I wasn't expecting, and so two
-        log handlers end up getting registered.
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-05-27  Adam Roben  <aroben@apple.com>
-
-        Always decode tester names from location.hash
-
-        When navigating directly to a tester-specific URL (e.g.,
-        <http://build.webkit.org/TestFailures/#/Windows%207%20Release%20(Tests)>), you could end up
-        with a URL-encoded tester name in the page, and then the encoded name could make its way
-        into Bugzilla bugs. Bad!
-
-        Reviewed by David Kilzer.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype.parseHash): Pass the tester name we got from location.hash through
-        decodeURIComponent before trying to use it.
-
-2011-05-27  Adam Roben  <aroben@apple.com>
-
-        Remove testing code that snuck into r87528
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype._domForNewBugLink): Remove a line I was using for some testing.
-
-2011-05-27  Adam Roben  <aroben@apple.com>
-
-        Add links to TestFailures to easily file bugs about failing tests
-
-        Fixes <http://webkit.org/b/61636> <rdar://problem/9514886> TestFailures page should have
-        links to file bugs for failing tests
-
-        Reviewed by David Kilzer.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder.js:
-        (Builder.prototype.resultsPageURL): New helper function to return the URL to results.html
-        for a particular build.
-        (Builder.prototype._getFailingTests): Use resultsPageURL.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype._displayBuilder): Add links to file bugs about each set of
-        failures.
-        (ViewController.prototype._domForBuildName): Use resultsPageURL.
-        (ViewController.prototype._domForNewBugLink): Added. Creates an element that represents the
-        new bug link. The bug has a title, description, and URL already filled in for you!
-
-2011-05-27  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r87464.
-        http://trac.webkit.org/changeset/87464
-        https://bugs.webkit.org/show_bug.cgi?id=61643
-
-        client-close/server-close tests are flaky on Chromium Mac and
-        Windows (Requested by aklein on #webkit).
-
-        * Scripts/webkitpy/thirdparty/__init__.py:
-
-2011-05-27  Alexey Proskuryakov  <ap@apple.com>
-
-        Added Douglas Davidson to contributors list for easier CC'ing.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-05-26  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Fix worldID and destinationDomain argument names
-        https://bugs.webkit.org/show_bug.cgi?id=61571
-
-        As part of working on r87423, I noticed a couple of inconsistencies in
-        argument names:
-        - We would use worldId in .h files but worldID in .cpp files.
-          Standardize on the latter
-        - SecurityOrigin::addOriginAccessWhitelistEntry would take a
-          destinationDomains argument, even though the actual parameter was for
-          a single domain (renamed to be singular).
-
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::evaluateScriptInIsolatedWorld):
-
-2011-05-26  Yuta Kitamura  <yutak@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        WebSocket closing handshake
-        https://bugs.webkit.org/show_bug.cgi?id=35721
-
-        * Scripts/webkitpy/thirdparty/__init__.py:
-        Pull in pywebsocket 0.6b1. We need to update pywebsocket
-        to get the right behavior of closing handshake.
-
-2011-05-26  Qi Zhang  <qi.2.zhang@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        WebKitTestRunner needs layoutTestController.setAuthorAndUserStylesEnabled
-        https://bugs.webkit.org/show_bug.cgi?id=42676
-
-        Implemented layoutTestController.setAuthorAndUserStylesEnabled for WebKitTestRunner.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::setAuthorAndUserStylesEnabled):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2011-05-26  Ademar de Souza Reis Jr.  <ademar.reis@openbossa.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] QtTestBrowser "Switch User Agent" dialog is broken
-        https://bugs.webkit.org/show_bug.cgi?id=61527
-
-        The setMaximumHeight() call is unecessary and breaks the dialog at
-        least on my setup.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::showUserAgentDialog):
-
-2011-05-02  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        [Qt] Allow popup windows from plugins when initiated by a user gesture
-
-        https://bugs.webkit.org/show_bug.cgi?id=41292
-
-        Support parameters introduced in plugin-initiate-popup-window.html
-
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_new_instance):
-        (webkit_test_plugin_handle_event):
-
-2011-05-26  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Support cross-origin XMLHttpRequest in isolated worlds
-        https://bugs.webkit.org/show_bug.cgi?id=59843
-
-        Expose setIsolatedWorldSecurityOrigin in LayoutTestController.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setIsolatedWorldSecurityOrigin):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-
-2011-05-25  Brian Weinstein  <bweinstein@apple.com>
-
-        Reviewed by Adam Roben.
-
-        WebKit2: Status bar, toolbar, and menu bar checks should be in the injected bundle
-        https://bugs.webkit.org/show_bug.cgi?id=61474
-        <rdar://problem/9468337>
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage): Add empty entries in the WKBundlePageUIClient.
-
-2011-05-26  Andreas Kling  <kling@webkit.org>
-
-        Unreviewed, correct address to webkit-committers mailing list.
-
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-
-2011-05-25  Adam Roben  <aroben@apple.com>
-
-        Don't assume that builds finish in the order they were started
-
-        Fixes <http://webkit.org/b/61464> TestFailures page shows failures from a not-most-recent
-        build when one slave is taking a long time to finish a build
-
-        Reviewed by Antti Koivisto.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder.js:
-        (Builder.prototype.getMostRecentCompletedBuildNumber): Don't assume that all builds that are
-        newer than the oldest in-progress build are also themselves in progress. Just check whether
-        each build is actually in progress (as signified by its presence in the currentBuilds set).
-
-2011-05-25  Adam Roben  <aroben@apple.com>
-
-        Correctly detect cases where only a single test failed/crashed/timed out
-
-        Fixes <http://webkit.org/b/61463> TestFailures page doesn't show testers with only a single
-        failing test
-
-        Reviewed by Darin Adler.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder.js:
-        (Builder.prototype.getNumberOfFailingTests): Don't require "test cases" to be plural. It
-        will be singular when only a single test fails/crashes/times out.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype._displayTesters): Only pluralize "test" when more than one test
-        failed/crashed/timed out.
-
-2011-05-26  Tom Hudson  <tomhudson@google.com>
-
-        Reviewed by Tony Chang.
-
-        Add flags to Chromium ImageDiff to write image comparison metrics on
-        stdout.
-        https://bugs.webkit.org/show_bug.cgi?id=60569
-
-        * DumpRenderTree/chromium/ImageDiff.cpp:
-        (Image::createFromStdin): Fix spelling.
-        (maxOf3): New function to do 3-way maximum.
-        (getRedComponent): Extract red component from ABGR packed encoding.
-        (getGreenComponent): Extract green component from ABGR packed encoding.
-        (getBlueComponent): Extract blue component from ABGR packed encoding.
-        (weightedPercentageDifferent): Determine % of pixels different in two
-        images multiplied by intensity difference of each pixel.
-        (printHelp): Document new arguments.
-        (compareImages): Parameterize.
-        (untestedCompareImages): Parameterize.
-        (diffImages): Parameterize; write results on stdout if requested.
-        (main): Parse new arguments.
-
-2011-05-25  Qi Zhang  <qi.2.zhang@nokia.com>
-
-        Reviewed by Simon Hausmann.
-
-        WebKitTestRunner needs layoutTestController.setPrivateBrowsingEnabled
-        https://bugs.webkit.org/show_bug.cgi?id=42697
-
-        Implemented layoutTestController.setPrivateBrowsingEnabled for WebKitTestRunner.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::setPrivateBrowsingEnabled):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2011-05-25  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        REGRESSION (WebKit2): Crash in Flash on USA Today photo gallery
-        https://bugs.webkit.org/show_bug.cgi?id=61428
-        <rdar://problem/9457006>
-
-        Reviewed by Adam Roben.
-
-        The crash occurs when Flash posts a message to a window that it
-        creates, and in processing the message, it calls NPN_Evaluate to
-        evaluate JavaScript that removes the plug-in from the page. Flash then
-        crashes when we return to Flash code.
-
-        This test emulates that behavior.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/CallJSThatDestroysPlugin.cpp: Added.
-        (CallJSThatDestroysPlugin::CallJSThatDestroysPlugin):
-        Initialize member vars.
-        (CallJSThatDestroysPlugin::~CallJSThatDestroysPlugin):
-        Remove our custom property from the message window, and destroy it.
-        (CallJSThatDestroysPlugin::NPP_Destroy):
-        Set m_isDestroyed, log that the plug-in was destroyed, and notify the
-        layout test controller that we're done.
-        (wndProc):
-        Get the PluginTest object, and call its runTest() function.
-        (CallJSThatDestroysPlugin::NPP_New):
-        Setup the test: register a class for the message-only window, create
-        it, and post a message to it to run the test.
-        (CallJSThatDestroysPlugin::runTest):
-        Execute JS that removes the plug-in from the page, and if we're not
-        destroyed, log a success message.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        Add new test to project.
-
-2011-05-25  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        webkitpy's NetworkTransaction shouldn't use mechanize
-        https://bugs.webkit.org/show_bug.cgi?id=61450
-
-        mechanize.HTTPError is just an alias for urllib2.HTTPError, so
-        use urllib2 directly.  Re-add NetworkTransaction to
-        test_results_uploader.py (reverting r87124).
-
-        * Scripts/webkitpy/common/net/networktransaction.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_results_uploader.py:
-
-2011-05-25  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [Chromium] Unreviewed build fix. Do not define WTF/JS_EXPORT_PRIVATE to JS_EXPORTDATA
-        until the port begins using those export macros.
-
-        * DumpRenderTree/chromium/config.h:
-
-2011-05-25  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r87257.
-        http://trac.webkit.org/changeset/87257
-        https://bugs.webkit.org/show_bug.cgi?id=61457
-
-        This broke layout tests, see bug 61431. (Requested by
-        hwennborg on #webkit).
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::clearAllDatabases):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-
-2011-05-25  Qi Zhang  <qi.2.zhang@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] fast/css/disabled-author-styles.html failed
-        https://bugs.webkit.org/show_bug.cgi?id=61438
-
-        Implemented API setAuthorAndUserStylesEnabled in LayoutTestControllerQt.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::resetSettings):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setAuthorAndUserStylesEnabled):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2011-05-25  Adam Roben  <aroben@apple.com>
-
-        Identify, rather than skip, builds where run-webkit-tests exited early due to too many failures
-
-        Fixes <http://webkit.org/b/61441> TestFailures page should show when run-webkit-tests
-        started exiting early due to too many crashes, timeouts, or failures
-
-        Reviewed by David Kilzer.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder.js:
-        (Builder.prototype.getNumberOfFailingTests): Rather than returning -1 ("unknown") when
-        run-webkit-tests exits early due to too many failures, pass that information in another
-        argument to the callback.
-        (Builder.prototype.startFetchingBuildHistory): Updated the documentation comment to reflect
-        the new structure of the object passed to the callback.
-        (Builder.prototype._getFailingTests): Updated to expect a tooManyFailures boolean from
-        getNumberOfFailingTests and to pass that along to our own callbacks.
-        (Builder.prototype._incorporateBuildHistory): Updated to expect a tooManyFailures boolean
-        from _getFailingTests and to store that value in the history object.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestFailures.css:
-        (.info): Added.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype._displayBuilder): Updated for change in structure to the history
-        object and to add a note when run-webkit-tests exited early due to too many failures.
-        (ViewController.prototype._displayTesters): Renamed testersAndFailureCounts to
-        latestBuildInfos since each entry now contains more than just the tester and failure count.
-        Now displays a message for testers where the latest build exited early due to too many
-        failures. Updated to expect a tooManyFailures boolean from getNumberOfFailingTests and to
-        store that value in latestBuildInfos.
-
-2011-05-24  Keishi Hattori  <keishi@webkit.org>
-
-        Reviewed by Kent Tamura.
-
-        Disable textfield implementation of <input type=color>. Add INPUT_COLOR feature flag. Add input color sanitizer.
-        https://bugs.webkit.org/show_bug.cgi?id=61273
-
-        * Scripts/build-webkit: Added INPUT_COLOR feature flag.
-
-2011-05-24  Greg Simon  <gregsimon@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Control Indexeddb backends from LayoutTestController
-        https://bugs.webkit.org/show_bug.cgi?id=61000
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setOverrideIndexedDBBackingStore):
-        (LayoutTestController::clearAllDatabases):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-
-2011-05-24  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Ryosuke Niwa.
-
-        [Qt] Fix fast/events/selectstart-by-single-click-with-shift.html
-        https://bugs.webkit.org/show_bug.cgi?id=61393
-
-        * DumpRenderTree/qt/EventSenderQt.h:
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (getModifiers): static function for interpreting modifiers
-        (EventSender::mouseDown): Respect keyboard modifiers
-        (EventSender::keyDown): use new static function
-        (EventSender::sendOrQueueEvent): whitespace fix
-
-2011-05-24  Jay Civelli  <jcivelli@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Adding MHTML reading support.
-        https://bugs.webkit.org/show_bug.cgi?id=7168
-
-        * Scripts/build-webkit:
-        * Scripts/old-run-webkit-tests:
-        * Scripts/webkitperl/features.pm:
-        * Scripts/webkitpy/layout_tests/port/test_files.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-05-24  Stephen White  <senorblanco@chromium.org>
-
-        Reviewed by Kenneth Russell.
-
-        Remove most style checks on Source/ThirdParty/glu, since it doesn't
-        follow WebKit style.
-        https://bugs.webkit.org/show_bug.cgi?id=61365
-
-        * Scripts/webkitpy/style/checker.py:
-
-2011-05-24  Adam Roben  <aroben@apple.com>
-
-        Don't allow forcing builds through the build.webkit.org web interface
-
-        Someone has been forcing bogus builds.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-05-24  Qi Zhang  <qi.2.zhang@nokia.com>
-
-        Reviewed by Adam Roben.
-
-        WebKitTestRunner needs layoutTestController.setJavaScriptCanAccessClipboard
-        https://bugs.webkit.org/show_bug.cgi?id=42669
-
-        Fixes the regression issue caused by patch 94265. The patch didn't intialize the setting before the 
-        layouttest starting, it will make the test cases after editing/execCommand/clipboard-access.html failed.
-        Because that case changed the setting.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-
-2011-05-24  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [ORWT]Make --skipped=only option work with parameters with LayoutTests/ prefix
-        https://bugs.webkit.org/show_bug.cgi?id=61052
-
-        * Scripts/old-run-webkit-tests:
-
-2011-05-24  Adam Roben  <aroben@apple.com>
-
-        Make TestFailures show how many tests are failing on each tester, and omit testers with no failures
-
-        Fixes <http://webkit.org/b/61063> <rdar://problem/9460533> TestFailures page shows testers
-        that don't have any failing tests, which isn't useful
-
-        Reviewed by David Kilzer.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Buildbot.js:
-        (Buildbot.prototype.getTesters): Renamed from getTesterNames. Now returns Builder objects
-        instead of name strings.
-        (Buildbot.prototype._buildersForNames): Added. Helper function to convert an array of
-        builder names into an array of builders.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder.js:
-        (Builder.prototype.getMostRecentCompletedBuildNumber): Added. Returns the build number of
-        the most recently completed build, or -1 if there is no such build.
-        (Builder.prototype.getNumberOfFailingTests): Added. Returns the number of tests that failed
-        in the given build, or -1 if the number could not be determined. Some of this code came from
-        _getFailingTests.
-        (Builder.prototype._getBuildJSON): Added. Code came from _getFailingTests.
-        (Builder.prototype._getFailingTests): Changed to use new _getBuildJSON and
-        getNumberOfFailingTests functions.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js:
-        (ViewController.prototype._displayTesters): Get the current number of test failures for each
-        tester and show it in the list. Omit testers that have no failures at all. We keep the
-        testers and failure counts in an array and sort it before displaying the current data, as
-        the order in which data will be fetched is unpredictable.
-
-2011-05-23  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        [nrwt] don't use NetworkTranslation when uploading results
-        https://bugs.webkit.org/show_bug.cgi?id=61315
-
-        This avoids autoinstalling mechanize.  It didn't matter anyway
-        because test_results_uploader.py wasn't using mechanize to make the
-        request so NetworkTransaction::run wasn't doing anything extra
-        (it only matters if it catches mechanize.HTTPError).
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_results_uploader.py:
-
-2011-05-23  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Dirk Pranke.
-
-        [chromium] fix the rebaseline tool to work with Linux GPU failures
-        https://bugs.webkit.org/show_bug.cgi?id=61312
-
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-
-2011-05-23  Darin Adler  <darin@apple.com>
-
-        Ignore generated .pyc files in a directory full of python code.
-
-        * Scripts/webkitpy/common/checkout/scm: Added property svn:ignore.
-
-2011-05-23  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        sheriffbot should give more details about the failures in IRC
-        https://bugs.webkit.org/show_bug.cgi?id=61233
-
-        With this patch, sheriffbot will annonce the set of failing tests,
-        which might help folks triage the problem.
-
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot_unittest.py:
-
-2011-05-23  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r87078.
-        http://trac.webkit.org/changeset/87078
-        https://bugs.webkit.org/show_bug.cgi?id=61294
-
-        Patch contains errors and seems likely to break a bunch of
-        bots (Requested by abarth on #webkit).
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator_unittest.py:
-
-2011-05-23  Alice Boxhall  <aboxhall@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Convert json_results_generator.py to output version 4 JSON.
-        https://bugs.webkit.org/show_bug.cgi?id=60869
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator_unittest.py:
-
-2011-05-23  Patrick Gansterer  <paroga@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Move generation of shell_command from port to executive
-        https://bugs.webkit.org/show_bug.cgi?id=61251
-
-        After move it's possible to use the code in other places too.
-
-        * Scripts/webkitpy/common/config/ports.py:
-        * Scripts/webkitpy/common/system/executive.py:
-
-2011-05-23  Qi Zhang  <qi.2.zhang@nokia.com>
-
-        Reviewed by Darin Adler.
-
-        WebKitTestRunner needs layoutTestController.setJavaScriptCanAccessClipboard
-        https://bugs.webkit.org/show_bug.cgi?id=42669
-
-        Implement setJavaScriptCanAccessClipboard in WebKitTestRunner.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::setJavaScriptCanAccessClipboard):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2011-05-22  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Fix policyDelegate in Qt DRT
-        https://bugs.webkit.org/show_bug.cgi?id=61247
-
-        Use the 'policy delegate' implemented in FrameLoaderClient
-        for layout tests. The partial implementation in DumpRenderTreeQt
-        is redundant, so remove it.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::acceptNavigationRequest):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::waitForPolicyDelegate):
-
-2011-05-22  Patrick Gansterer  <paroga@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Use double quotes for filename arguments
-        https://bugs.webkit.org/show_bug.cgi?id=61250
-
-        Windows does not support single quotes on the command line,
-        so replace them with double quotes.
-
-        * Scripts/prepare-ChangeLog:
-
-2011-05-20  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        WebKitTestRunner needs layoutTestController.pauseTransitionAtTimeOnElementWithId
-        https://bugs.webkit.org/show_bug.cgi?id=42550
-        
-        Implement pauseTransitionAtTimeOnElementWithId in WebKitTestRunner.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        Copy the code for pausing animations, FIXME comments and all.
-        (WTR::LayoutTestController::pauseTransitionAtTimeOnElementWithId):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2011-05-20  Alok Priyadarshi  <alokp@chromium.org>
-
-        Reviewed by Stephen White.
-
-        Adding myself to the committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-05-19  Adam Roben  <aroben@apple.com>
-
-        Test that the WebKit2 UI process doesn't crash when starting a download
-
-        Test for <http://webkit.org/b/61142> <rdar://problem/9471680> REGRESSION (r86812): Crash
-        (preceded by assertion) in fastMalloc when downloading a file
-
-        Reviewed by Darin Adler.
-
-        * TestWebKitAPI/Tests/WebKit2/18-characters.html: Added.
-
-        * TestWebKitAPI/Tests/WebKit2/DownloadDecideDestinationCrash.cpp: Added.
-        (TestWebKitAPI::decidePolicyForNavigationAction): Start a download.
-        (TestWebKitAPI::decideDestinationWithSuggestedFilename): Record that the download was
-        started, cancel the download, and return a bogus string.
-
-        (TestWebKitAPI::setContextDownloadClient):
-        (TestWebKitAPI::setPagePolicyClient):
-        Simple helper functions.
-
-        (TestWebKitAPI::TEST): Load 18-characters.html, which should trigger a download thanks to
-        our policy client, and run until we know that the download was started. If we haven't
-        crashed, we win!
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        * TestWebKitAPI/win/copy-resources.cmd:
-        Added new files.
-
-2011-05-20  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Ryosuke Niwa.
-
-        Fix style errors in DumpRenderTree/chromium/.
-        https://bugs.webkit.org/show_bug.cgi?id=61172
-
-        * DumpRenderTree/chromium/CppBoundClass.cpp:
-        (CppBoundClass::getAsCppVariant):
-        (CppBoundClass::bindToJavascript):
-        * DumpRenderTree/chromium/CppBoundClass.h:
-        (CppBoundClass::GetterCallback::~GetterCallback):
-        (CppBoundClass::CppBoundClass):
-        (CppBoundClass::Callback::~Callback):
-        (CppBoundClass::MemberCallback::MemberCallback):
-        (CppBoundClass::MemberCallback::~MemberCallback):
-        (CppBoundClass::MemberGetterCallback::MemberGetterCallback):
-        (CppBoundClass::MemberGetterCallback::~MemberGetterCallback):
-        * DumpRenderTree/chromium/CppVariant.h:
-        * DumpRenderTree/chromium/DRTDevToolsAgent.h:
-        (DRTDevToolsAgent::~DRTDevToolsAgent):
-        * DumpRenderTree/chromium/DRTDevToolsClient.cpp:
-        (DRTDevToolsClient::sendFrontendLoaded):
-        * DumpRenderTree/chromium/DRTDevToolsClient.h:
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (SavedEvent::SavedEvent):
-        (EventSender::EventSender):
-        (EventSender::keyDown):
-        * DumpRenderTree/chromium/EventSender.h:
-        * DumpRenderTree/chromium/ImageDiff.cpp:
-        (Image::Image):
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::WorkQueue::reset):
-        (WorkItemBackForward::WorkItemBackForward):
-        (WorkItemLoadingScript::WorkItemLoadingScript):
-        (WorkItemNonLoadingScript::WorkItemNonLoadingScript):
-        (WorkItemLoad::WorkItemLoad):
-        (WorkItemLoadHTMLString::WorkItemLoadHTMLString):
-        (LayoutTestController::pathToLocalResource):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController::WorkItem::~WorkItem):
-        (LayoutTestController::WorkQueue::WorkQueue):
-        * DumpRenderTree/chromium/MockSpellCheck.cpp:
-        (MockSpellCheck::MockSpellCheck):
-        (MockSpellCheck::~MockSpellCheck):
-        * DumpRenderTree/chromium/MockSpellCheck.h:
-        * DumpRenderTree/chromium/NotificationPresenter.h:
-        (NotificationPresenter::NotificationPresenter):
-        * DumpRenderTree/chromium/Task.cpp:
-        (WebTask::WebTask):
-        * DumpRenderTree/chromium/Task.h:
-        (TaskList::TaskList):
-        * DumpRenderTree/chromium/TestEventPrinter.cpp:
-        (DRTPrinter::DRTPrinter):
-        (TestShellPrinter::TestShellPrinter):
-        * DumpRenderTree/chromium/TestNavigationController.cpp:
-        (TestNavigationEntry::TestNavigationEntry):
-        (TestNavigationEntry::~TestNavigationEntry):
-        (TestNavigationController::TestNavigationController):
-        (TestNavigationController::reload):
-        (TestNavigationController::loadEntry):
-        (TestNavigationController::didNavigateToEntry):
-        * DumpRenderTree/chromium/TestNavigationController.h:
-        (TestShellExtraData::TestShellExtraData):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (dumpHistoryItem):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestParams::TestParams):
-        * DumpRenderTree/chromium/TestShellWin.cpp:
-        (TestShell::waitTestFinished):
-        * DumpRenderTree/chromium/TestWebWorker.h:
-        (TestWebWorker::startWorkerContext):
-        (TestWebWorker::terminateWorkerContext):
-        (TestWebWorker::postMessageToWorkerContext):
-        (TestWebWorker::clientDestroyed):
-        (TestWebWorker::postMessageToWorkerObject):
-        (TestWebWorker::postExceptionToWorkerObject):
-        (TestWebWorker::postConsoleMessageToWorkerObject):
-        (TestWebWorker::confirmMessageFromWorkerObject):
-        (TestWebWorker::reportPendingActivity):
-        (TestWebWorker::workerContextClosed):
-        (TestWebWorker::~TestWebWorker):
-        * DumpRenderTree/chromium/TextInputController.cpp:
-        * DumpRenderTree/chromium/WebThemeControlDRTWin.h:
-        * DumpRenderTree/chromium/WebThemeEngineDRTMac.h:
-        * DumpRenderTree/chromium/WebThemeEngineDRTWin.cpp:
-        (WebThemeEngineDRTWin::paintButton):
-        (WebThemeEngineDRTWin::paintMenuList):
-        (WebThemeEngineDRTWin::paintTrackbar):
-        * DumpRenderTree/chromium/WebThemeEngineDRTWin.h:
-        (WebThemeEngineDRTWin::WebThemeEngineDRTWin):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::navigate):
-        (WebViewHost::updateSessionHistory):
-        (WebViewHost::paintInvalidatedRegion):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2011-05-19  Dmitry Lomov  <dslomov@google.com>
-
-        Reviewed by Adam Roben.
-
-        Detect hangs in run-api-tests
-        https://bugs.webkit.org/show_bug.cgi?id=48043
-
-        * Scripts/run-api-tests: Added test timeouts
-
-2011-05-19  Dmitry Lomov  <dslomov@google.com>
-
-        Reviewed by Adam Roben.
-
-        run-api-tests should run one test per process
-        https://bugs.webkit.org/show_bug.cgi?id=61088
-
-        * Scripts/run-api-tests: Resurrecting the previous revison of this file, with fixes to system call under Windows, 
-        return code, and parsing GTest output format.
-
-2011-05-15  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Antonio Gomes.
-
-        [Qt][GTK] plugins/get-url-with-javascript-url.html fails
-        https://bugs.webkit.org/show_bug.cgi?id=60834
-        Fix unix test plugin for plugins/get-url-with-javascript-url.html
-
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_new_stream):
-        (webkit_test_plugin_write_ready):
-        (webkit_test_plugin_write):
-
-2011-05-19  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r86869, r86873, r86875, and r86877.
-        http://trac.webkit.org/changeset/86869
-        http://trac.webkit.org/changeset/86873
-        http://trac.webkit.org/changeset/86875
-        http://trac.webkit.org/changeset/86877
-        https://bugs.webkit.org/show_bug.cgi?id=61139
-
-        broke builds and debug DRT (Requested by rniwa on #webkit).
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::bindJSObjectsToWindow):
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate didClearWindowObjectInStandardWorldForFrame:]):
-
-2011-05-18  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        Add build logistics and plumbing for window.internals object.
-        https://bugs.webkit.org/show_bug.cgi?id=60313
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Added linking new WebCoreTestSupport library.
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::bindJSObjectsToWindow): Added injection code.
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate didClearWindowObjectInStandardWorldForFrame:]): Ditto.
-
-2011-05-19  Zsolt Fehér  <h490267@stud.u-szeged.hu>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt] Implement eventSender.scalePageBy
-        https://bugs.webkit.org/show_bug.cgi?id=60015
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::scalePageBy):
-        * DumpRenderTree/qt/EventSenderQt.h:
-
-2011-05-19  Kenichi Ishibashi  <bashi@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [Chromium] IME candidate window appears wrong position in an iframe
-        https://bugs.webkit.org/show_bug.cgi?id=61023
-
-        Call the focused frame's firstRectForCharacterRange() instead of the
-        main frame so that DRT behaves as the same as Chromium.
-
-        * DumpRenderTree/chromium/TextInputController.cpp:
-        (TextInputController::firstRectForCharacterRange):
-
-2011-05-18  Adam Roben  <aroben@apple.com>
-
-        Add a new page to build.webkit.org to help find when tests started failing
-
-        The page is accessible at <http://build.webkit.org/TestFailures/>. It is pretty minimalist
-        right now, but already shows some useful information. It's somewhat similar to webkit-patch
-        failure-reason and sheriffbot, and perhaps can be combined with them eventually. It's a
-        little more convenient than either of them, though, because it's all done in the browser
-        (and thus it's easy to go directly to the relevant test results).
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Buildbot.js: Added.
-        (Buildbot): This class represents a Buildbot server.
-        (Buildbot.prototype.buildURL): Returns the URL for the summary page for a particular build.
-        (Buildbot.prototype.builderNamed): Returns a Builder with the given name.
-        (Buildbot.prototype.getTesterNames): Fetches the names of all testers and passes them to the
-        callback.
-        (Buildbot.prototype.parseBuildName): Breaks up a build name into its constituent parts. Must
-        be implemented by a derived class that understands this server's build naming scheme.
-        (Buildbot.prototype.resultsDirectoryURL): Returns the URL for the results directory for a
-        particular build.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Builder.js: Added.
-        (Builder): This class represents one builder on the buildbot.
-        (Builder.prototype.buildURL): Returns the URL for the summary page for a particular build.
-        (Builder.prototype.failureDiagnosisTextAndURL): Returns data that provides a little more
-        information about a particular test failure.
-        (Builder.prototype.startFetchingBuildHistory): Periodically calls the callback with
-        information about when tests started failing.
-        (Builder.prototype.resultsDirectoryURL): Returns the URL for the results directory for a
-        particular build.
-        (Builder.prototype._getBuildNames): Fetches the names of all builds and passes them to the
-        callback.
-        (Builder.prototype._getFailingTests): Fetches the results.html page for the given build and
-        extracts all the failing tests listed in it, passing them to the callback.
-        (Builder.prototype._incorporateBuildHistory): Gets the failing tests for the specified
-        build, merges them into the build history, and calls the callback telling it whether the
-        next build should be fetched to provide more information.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestFailures.css:
-        Added. Just some simple styles.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Utilities.js: Added.
-        (createDefinitionList): Takes an array of pairs and turns them into a DL element.
-        (getResource): Wrapper around XMLHttpRequest.
-        (Array.prototype.findFirst): Finds the first element matching the given predicate and
-        returns it.
-        (Array.prototype.last): Returns the last element of the array.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ViewController.js: Added.
-        (ViewController): This class contains the main logic for displaying the page.
-        (ViewController.loaded): Just calls through to parseHash.
-        (ViewController.parseHash): Either starts analyzing failures on a particular builder, or
-        shows the list of all testers so one can be chosen. This function is called when the page
-        loads and whenever we get a hashchange event.
-        (ViewController._displayBuilder): Asks the builder to fetch build history, and displays it
-        as it is fetched. The display ends up grouping tests by when they started failing.
-        (ViewController._displayTesters): Gets the list of testers and displays it.
-
-        (ViewController._domForBuildName):
-        (ViewController._domForFailedTest):
-        Helper functions to create descriptions and links for a particular build or failed test.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/WebKitBuildbot.js: Added.
-        (WebKitBuildbot): Calls up to the base class constructor with the correct base URL.
-        (WebKitBuildbot.prototype.parseBuildName): Parses a build.webkit.org-style build name.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/index.html: Added. Just
-        loads all the files and sets up a ViewController, which does the rest.
-
-        * BuildSlaveSupport/build.webkit.org-config/templates/root.html: Added a link to the new
-        page.
-
-2011-05-18  Kristóf Kosztyó  <Kosztyo.Kristof@stud.u-szeged.hu>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt] Implement layoutTestController.setValueForUser()
-        https://bugs.webkit.org/show_bug.cgi?id=60956
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setValueForUser):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2011-05-16  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        plugins/invalidate_rect.html fails on linux ports
-
-        - Make the unix test netscape plugin recognize the onPaintEvent
-          and windowedPlugin parameters.
-
-        https://bugs.webkit.org/show_bug.cgi?id=54051
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (handleEventX11):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::displayInvalidatedRegion):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_new_instance):
-        (webkit_test_plugin_handle_event):
-
-2011-05-17  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        [chromium] move Lucid 64 bit results into LayoutTests/platform/chromium-linux
-        https://bugs.webkit.org/show_bug.cgi?id=60895
-
-        Update the tools to handle the move.  Lucid 32 results now go in
-        chromium-linux-x86 and the default platform on Linux is now x86_64.
-
-        * Scripts/webkitpy/layout_tests/deduplicate_tests.py: Default to x86_64
-        * Scripts/webkitpy/layout_tests/deduplicate_tests_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py: Default to Lucid
-        * Scripts/webkitpy/layout_tests/port/base.py: ditto
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py: Update directory fallback and default to Lucid 64
-        * Scripts/webkitpy/layout_tests/port/chromium_linux_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/test.py: Update tests to default to x86_64
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py: Update bot names.
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests_unittest.py: Whitespace cleanup.
-
-2011-05-17  Adam Roben  <aroben@apple.com>
-
-        Make run-api-tests work on Windows when there are spaces in the path
-
-        Fixes <http://webkit.org/b/60954> REGRESSION (r86511): run-api-tests fails if there are
-        spaces in the path to TestWebKitAPI.exe
-
-        Reviewed by David Levin.
-
-        * Scripts/run-api-tests:
-        (runTestTool): Use the "direct object" form of system() to avoid having the path to
-        TestWebKitAPI.exe be split by the shell.
-
-2011-05-16  Ian Henderson  <ianh@apple.com>
-
-        Reviewed by Joseph Pecoraro.
-
-        Page::goToItem doesn't work while loading is deferred
-        https://bugs.webkit.org/show_bug.cgi?id=60412
-
-        Add setDefersLoading and goBack methods to LayoutTestController.  We
-        need to use goBack() instead of history.back() because the latter goes
-        through NavigationScheduler, hence doesn't exhibit the bug.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (goBackCallback):
-        (setDefersLoadingCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::goBack):
-        (LayoutTestController::setDefersLoading):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::goBack):
-        (LayoutTestController::setDefersLoading):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::goBack):
-        (LayoutTestController::setDefersLoading):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::goBack):
-        (LayoutTestController::setDefersLoading):
-
-2011-05-16  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        TestWebKitAPI should build with clang if it can
-        https://bugs.webkit.org/show_bug.cgi?id=60918
-
-        * TestWebKitAPI/Configurations/CompilerVersion.xcconfig:
-        Update CompilerVersion.xcconfig to match others.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        Add CompilerVersion.xcconfig to the project.
-
-        * TestWebKitAPI/Tests/WebKit2/FailedLoad.cpp:
-        (TestWebKitAPI::didFailProvisionalLoadWithErrorForFrame):
-        * TestWebKitAPI/Tests/WebKit2/PageLoadDidChangeLocationWithinPageForFrame.cpp:
-        (TestWebKitAPI::didSameDocumentNavigationForFrame):
-        Add some casts to quiet warnings from clang.
-
-2011-05-16  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by David Levin.
-
-        add dpranke as a reviewer
-        https://bugs.webkit.org/show_bug.cgi?id=60919
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-05-16  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        [Gtk] plugins/get-url-notify-with-url-that-fails-to-load.html crashes on buildbot
-
-        https://bugs.webkit.org/show_bug.cgi?id=60838
-
-        The unix test plugin needs to call the test's NPP_URLNotify
-        rather than the browsers.
-
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_url_notify):
-
-2011-05-16  Brent Fulgham  <bfulgham@webkit.org>
-
-        Rubber-stamped by Adam Roben.
-
-        Adding myself as a reviewer.
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-05-16  Sam Weinig  <sam@webkit.org>
-
-        Fix typo pointed out by Dave Levin.
-
-        * TestWebKitAPI/PlatformUtilities.h:
-        (TestWebKitAPI::Util::assertWKStringEqual):
-        Strig -> String.
-
-2011-05-16  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by David Levin.
-
-        Convert api tester over to using gtest expectations directly
-        https://bugs.webkit.org/show_bug.cgi?id=60862
-
-        * TestWebKitAPI/PlatformUtilities.cpp:
-        (TestWebKitAPI::Util::toSTD):
-        * TestWebKitAPI/PlatformUtilities.h:
-        (TestWebKitAPI::Util::assertWKStrigEqual):
-        Add convenience macro to compare WK2 strings. Add some overloads of toSTD to make
-        the implementation of the macro simpler.
-
-        * TestWebKitAPI/Test.h:
-        Remove TEST_ASSERT forwarder.
-
-        [Test changes elided]
-
-2011-05-16  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/60913> C++ exceptions should not be enabled when building with llvm-gcc-4.2
-        <rdar://problem/9446430>
-
-        Reviewed by Mark Rowe.
-
-        * MiniBrowser/Configurations/Base.xcconfig: Fixed typo.
-        * TestWebKitAPI/Configurations/Base.xcconfig: Ditto.
-        * WebKitTestRunner/Configurations/Base.xcconfig: Ditto.
-
-2011-05-16  Jon Lee  <jonlee@apple.com>
-
-        Reviewed by Simon Fraser.
-
-        Can't horizontally scroll iframes and overflow because wheel events are always accepted
-        https://bugs.webkit.org/show_bug.cgi?id=60779
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage): Set new default method to nil.
-
-2011-05-16  Ademar de Souza Reis Jr.  <ademar.reis@openbossa.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt] Tools.pro misses include(common.pri)
-        https://bugs.webkit.org/show_bug.cgi?id=60883
-
-        It includes features.pri, which depends on common.pri (the build is
-        not broken today with the default options, but this is the right
-        thing to do).
-
-        * Tools.pro:
-
-2011-05-15  Dominic Cooney  <dominicc@chromium.org>
-
-        Unreviewed: adding myself to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-05-15  Daniel Bates  <dbates@webkit.org>
-
-        Reviewed by Chris Jerdonek.
-
-        svn-apply can't handle Git diff that only changes executable bit
-        https://bugs.webkit.org/show_bug.cgi?id=60848
-
-        Fixes an issue where svn-{apply, unapply} fail to handle a Git diff for a file
-        that only has an executable bit change.
-
-        * Scripts/VCSUtils.pm:
-          - Modified regex $chunkRangeRegEx to match chunk range with ending text, say: @@ -2,6 +2,18 @@ foo().
-        (parseDiff): Modified to count the number of text chunks in the diff. This should also help towards
-        fixing <https://bugs.webkit.org/show_bug.cgi?id=29684>.
-        * Scripts/svn-apply:
-        (patch): Only use standard patch tool if the patch is non-empty and for a text file (i.e. not a binary patch).
-        * Scripts/svn-unapply:
-        (patch): Ditto.
-        * Scripts/webkitperl/VCSUtils_unittest/parseDiff.pl:
-          - Updated expected results for test cases to account for numTextChunks.
-          - Fixed malformed chunk range in test cases: "Git: simple", and "Git: Git diff followed by SVN diff".
-          - Added test case "Git: file that only has an executable bit change".
-        * Scripts/webkitperl/VCSUtils_unittest/parseDiffWithMockFiles.pl:
-          - Updated expected results for test cases to account for numTextChunks.
-
-2011-05-15  Sam Weinig  <sam@webkit.org>
-
-        Fix windows build.
-
-        * TestWebKitAPI/win/main.cpp:
-        (main):
-
-2011-05-15  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by David Levin.
-
-        Make API tester more gtest friendly
-        https://bugs.webkit.org/show_bug.cgi?id=60859
-
-        * Scripts/run-api-tests:
-        Numerous changes:
-        - Remove logic to run tests one at a time.
-        - Remove logic to build up a list of tests, instead just pass --gtest_list_tests to 
-          the test runner and allow gtest to print it for us.
-        - Forward stdout from the test tool to stdout, even in non-verbose runs.
-        - Run test tool from the current working directory instead of the root webkit
-          directory.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        Move plist to be with other bundle sources.
-
-        * TestWebKitAPI/TestsController.cpp:
-        (TestWebKitAPI::TestsController::TestsController):
-        (TestWebKitAPI::TestsController::run):
-        * TestWebKitAPI/TestsController.h:
-        * TestWebKitAPI/mac/main.mm:
-        Simplify TestController down to a single run function. We should consider removing the class
-        entirely at some point.
-
-2011-05-15  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r86504.
-        http://trac.webkit.org/changeset/86504
-        https://bugs.webkit.org/show_bug.cgi?id=60853
-
-        "Broke Qt EventSender in editing/selection tests" (Requested
-        by mwenge on #webkit).
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::WebPage):
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        (WebCore::DumpRenderTree::initJSObjects):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        (WebCore::DumpRenderTree::eventSender):
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_new_instance):
-        (webkit_test_plugin_set_window):
-        (webkit_test_plugin_handle_event):
-
-2011-05-12  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Benjamin Poulain.
-
-        [Qt] fix http/tests/plugins/plugin-document-has-focus.html
-
-        The support for this test added to the unix test plugin here
-        may allow other platforms to pass it (nearly everyone
-        skips it). On Qt it required a bit of trickiness with
-        the page's EventSender object to get it working fully though,
-        so only unskipping Qt here.
-
-        https://bugs.webkit.org/show_bug.cgi?id=60722
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::WebPage):
-        (WebCore::WebPage::eventSender):
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::initJSObjects):
-        (WebCore::DumpRenderTree::createWindow):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_new_instance):
-        (webkit_test_plugin_set_window):
-        (webkit_test_plugin_handle_event):
-
-2011-05-14  Arno Renevier  <arno@renevier.net>
-
-        Reviewed by Martin Robinson.
-
-        make run-gtk-tests executable
-        https://bugs.webkit.org/show_bug.cgi?id=59278
-
-        * Scripts/run-gtk-tests:
-
-2011-05-14  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Kevin Decker.
-
-        NPP_URLNotify is not called if a URL passed to NPN_GetURLNotify fails to load
-        https://bugs.webkit.org/show_bug.cgi?id=60823
-        <rdar://problem/9430386>
-
-        Add test that calls NPN_GetURLNotify on a URL that can't be loaded, and checks if NPP_URLNotify is called.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/TestNetscapePlugIn/Tests/GetURLNotifyWithURLThatFailsToLoad.cpp: Added.
-        (GetURLNotifyWithURLThatFailsToLoad::GetURLNotifyWithURLThatFailsToLoad):
-        (GetURLNotifyWithURLThatFailsToLoad::NPP_New):
-        (GetURLNotifyWithURLThatFailsToLoad::NPP_URLNotify):
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * GNUmakefile.am:
-
-2011-05-14  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r86476.
-        http://trac.webkit.org/changeset/86476
-        https://bugs.webkit.org/show_bug.cgi?id=60832
-
-        It made plugins/get-url-notify-with-url-that-fails-to-
-        load.html crash on GTK (Requested by Ossy on #webkit).
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/TestNetscapePlugIn/Tests/GetURLNotifyWithURLThatFailsToLoad.cpp: Removed.
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * GNUmakefile.am:
-
-2011-05-13  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        NPP_URLNotify is not called if a URL passed to NPN_GetURLNotify fails to load
-        https://bugs.webkit.org/show_bug.cgi?id=60823
-        <rdar://problem/9430386>
-
-        Add test that calls NPN_GetURLNotify on a URL that can't be loaded, and checks if NPP_URLNotify is called.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/TestNetscapePlugIn/Tests/GetURLNotifyWithURLThatFailsToLoad.cpp: Added.
-        (GetURLNotifyWithURLThatFailsToLoad::GetURLNotifyWithURLThatFailsToLoad):
-        (GetURLNotifyWithURLThatFailsToLoad::NPP_New):
-        (GetURLNotifyWithURLThatFailsToLoad::NPP_URLNotify):
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * GNUmakefile.am:
-
-2011-05-13  Anders Carlsson  <andersca@apple.com>
-
-        Build fix.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/GetURLWithJavaScriptURL.cpp:
-
-2011-05-13  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        NPN_GetURL with a javascript: URL doesn't send back the result in the stream
-        https://bugs.webkit.org/show_bug.cgi?id=60810
-
-        Add a test that calls NPN_GetURL on a javascript: URL and checks that it gets back the expected result.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * GNUmakefile.am:
-        Add files.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.h:
-        Add new NPN and NPP wrappers and sort them according to the order they appear in npfunctions.h
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/GetURLWithJavaScriptURL.cpp: Added.
-        (GetURLWithJavaScriptURL::GetURLWithJavaScriptURL):
-        (GetURLWithJavaScriptURL::NPP_New):
-        (GetURLWithJavaScriptURL::NPP_NewStream):
-        (GetURLWithJavaScriptURL::NPP_DestroyStream):
-        (GetURLWithJavaScriptURL::NPP_WriteReady):
-        (GetURLWithJavaScriptURL::NPP_Write):
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_NewStream):
-        (NPP_WriteReady):
-        (NPP_Write):
-        (NPP_URLNotify):
-        call the PluginTest NPP wrappers.
-
-2011-05-13  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r86447.
-        http://trac.webkit.org/changeset/86447
-        https://bugs.webkit.org/show_bug.cgi?id=60809
-
-        "Broke some uses of EventSender object on Qt" (Requested by
-        mwenge on #webkit).
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::WebPage):
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::initJSObjects):
-        (WebCore::DumpRenderTree::createWindow):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        (WebCore::DumpRenderTree::eventSender):
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_new_instance):
-        (webkit_test_plugin_set_window):
-        (webkit_test_plugin_handle_event):
-
-2011-05-13  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Benjamin Poulain.
-
-        [Qt] fix http/tests/plugins/plugin-document-has-focus.html
-
-        The support for this test added to the unix test plugin here
-        may allow other platforms to pass it (nearly everyone
-        skips it). On Qt it required a bit of trickiness with
-        the page's EventSender object to get it working fully though,
-        so only unskipping Qt here.
-
-        https://bugs.webkit.org/show_bug.cgi?id=60722
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::WebPage):
-        (WebCore::WebPage::eventSender):
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::initJSObjects):
-        (WebCore::DumpRenderTree::createWindow):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (webkit_test_plugin_new_instance):
-        (webkit_test_plugin_set_window):
-        (webkit_test_plugin_handle_event):
-
-2011-05-13  Adam Roben  <aroben@apple.com>
-
-        Exclude the Leopard NRWT bot from the core builder set
-
-        Fixes <http://webkit.org/b/60392> Leopard Intel Release (NRWT) shouldn't be a core builder
-
-        Reviewed by Darin Adler.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        (BuildBot.__init__): Tighten up the Leopard regexp to only allow the non-NRWT Leopard bots
-        in the core builder set.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-        (BuildBotTest.test_builder_name_regexps): Updated to match the current set of builders and
-        regexps.
-
-2011-05-13  Adam Roben  <aroben@apple.com>
-
-        Group all the NRWT bots together
-
-        This also gets the new NRWT bots out of the middle of Apple's bots. Since these new NRWT
-        bots are experimental, it seems best not to clutter up the non-experimental bots with
-        experimental ones.
-
-        Fixes <http://webkit.org/b/60769> New "(NRWT)" bots are right in the middle of Apple's bots
-        on build.webkit.org
-
-        Reviewed by Dan Bernstein.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Moved the "(NRWT)" bots next to the
-        Chromium testers, which also use new-run-webkit-tests.
-
-2011-05-13  Adam Roben  <aroben@apple.com>
-
-        Add a plugin test that dumps the plugin window's rect
-
-        Part of the test for <http://webkit.org/b/60194> <rdar://problem/9383760> REGRESSION
-        (r79167): Windowed plugins in Google Reader don't move when the article list is scrolled
-
-        Reviewed by Dan Bernstein.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/win/DumpWindowRect.cpp: Added.
-        (DumpWindowRect::DumpWindowRect): Just call up to the base class.
-        (DumpWindowRect::performWindowGeometryTest): Find our window rect relative to the test
-        harness window and log it.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj: Added DumpWindowRect.
-
-2011-05-13  Adam Roben  <aroben@apple.com>
-
-        Move code required for most tests of plugin window geometry into a base class
-
-        WebKit2's asynchronous plugin window positioning makes testing window geometry tricky. By
-        having all the trickiness in a shared base class, writing new window geometry tests will be
-        much easier.
-
-        Fixes <http://webkit.org/b/60776> It's hard to write tests that check plugin window geometry
-
-        Reviewed by Anders Carlsson.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/win/WindowRegionIsSetToClipRect.cpp:
-        (WindowRegionIsSetToClipRect::WindowRegionIsSetToClipRect): Changed to inherit from the new
-        WindowGeometryTest base class. Most of the code from this class was moved to the new base
-        class.
-        (WindowRegionIsSetToClipRect::performWindowGeometryTest): Renamed from checkWindowRegion.
-        This is called by the base class when it is safe to check the window's geometry. Note that
-        the m_didCheckWindowRegion logic was removed completely; it has never been needed and was
-        just vestigial code from an earlier version of this test.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj: Added new
-        WindowGeometryTest class.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/WindowGeometryTest.cpp: Added. Code came from
-        WindowRegionIsSetToClipRect.
-        (WindowGeometryTest::finishTest): This is the only change from WindowRegionIsSetToClipRect.
-        We now call the new virtual performWindowGeometryTest function instead of checkWindowRegion.
-        Subclasses can implement that function to perform their own tests.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/WindowGeometryTest.h: Added.
-
-2011-05-13  Zoltan Herczeg  <zherczeg@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        Missing 2nd #EOF if WebProcess is killed.
-        https://bugs.webkit.org/show_bug.cgi?id=60761
-
-        If the WebProcess is killed, only one #EOF is yielded
-        by WebKitTestRunner. However, run-webkit-test wait for
-        a second #EOF, which signals the finishing of pixel dump.
-        Since this never happens, run-webkit-test waits forever.
-
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::dump):
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-        * WebKitTestRunner/TestInvocation.h:
-
-2011-05-13  Kristóf Kosztyó  <Kosztyo.Kristof@stud.u-szeged.hu>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [NRWT] chromium-linux tests shouldn't run on other platforms
-        https://bugs.webkit.org/show_bug.cgi?id=60162
-
-        Remove _tests_for_other_platforms defs because r82753
-        implemented it properly in the baseclass in webkit.py.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        * Scripts/webkitpy/layout_tests/port/win.py:
-
-2011-05-12  Ryuan Choi  <ryuan.choi@samsung.com>
-
-        Reviewed by Antonio Gomes.
-
-        [EFL] Remove unused option of EWeblauncher
-        https://bugs.webkit.org/show_bug.cgi?id=60747
-
-        Remove sudo-workaround option.
-        This option is not used and make other option wrong.
-
-        * EWebLauncher/main.c:
-
-2011-05-12  Lucas Forschler  <lforschler@apple.com>
-
-        Reviewed by Stephanie Lewis.
-
-        Fix config.json to address missing WK2 builder/tester config.
-        Fix naming of machines (xserve not macpro)
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2011-05-12  Lucas Forschler  <lforschler@apple.com>
-
-        Reviewed by Stephanie Lewis.
-
-        Add SnowLeopard Debug builder and Test bot.
-        apple-xserve-8 = SL Debug Tester.
-        apple-xserve-9 = SL Debug Builder.
-        
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2011-05-12  Adam Barth  <abarth@webkit.org>
-
-        This patch disables sheriffbot's bug postings.  He's just been way too
-        spammy recently due to test flakiness.
-
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-        * Scripts/webkitpy/tool/commands/sheriffbot_unittest.py:
-
-2011-05-11  Brian Weinstein  <bweinstein@apple.com>
-
-        Reviewed by Anders Carlsson.
-
-        After relaunching an unresponsive web process, web page stops responding to mouse movement
-        https://bugs.webkit.org/show_bug.cgi?id=60669
-        <rdar://problem/9409934>
-        
-        This test follows the steps needed to reproduce this bug:
-        1) Hang the web process
-        2) While the web process is hung, move the mouse (so WebPageProxy thinks it is processing a mouse move event)
-        3) Kill and restart the WebProcess
-        4) Move the mouse
-        
-        We are testing that we receive mouse move events after the WebProcess has restarted.
-
-        * TestWebKitAPI/Tests/WebKit2/MouseMoveAfterCrash.cpp: Added.
-        (TestWebKitAPI::didFinishLoadForFrame): Set a flag that we finished loading.
-        (TestWebKitAPI::processDidBecomeUnresponsive): Kill the web process once we become unresponsive.
-        (TestWebKitAPI::processDidCrash): Reload the page when the process crashes, which restarts the web process.
-        (TestWebKitAPI::setPageLoaderClient):
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/MouseMoveAfterCrash_Bundle.cpp: Added.
-        (TestWebKitAPI::MouseMoveAfterCrashTest::MouseMoveAfterCrashTest):
-        (TestWebKitAPI::MouseMoveAfterCrashTest::didReceiveMessage):
-        * TestWebKitAPI/Tests/WebKit2/mouse-move-listener.html: Added.
-
-        * TestWebKitAPI/PlatformWebView.h:
-        * TestWebKitAPI/mac/PlatformWebViewMac.mm:
-        (TestWebKitAPI::PlatformWebView::simulateMouseMove): Sends the messages that simulate a mouse move.
-        * TestWebKitAPI/win/PlatformWebViewWin.cpp:
-        (TestWebKitAPI::PlatformWebView::simulateMouseMove): Ditto.
-
-        Add new files.
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        * TestWebKitAPI/win/TestWebKitAPIInjectedBundle.vcproj:
-        * TestWebKitAPI/win/copy-resources.cmd:
-
-2011-05-12  Tomasz Morawski  <t.morawski@samsung.com>
-
-        Reviewed by Antonio Gomes.
-
-        [EFL] Added initialization/shutdown for ecore_file library
-        https://bugs.webkit.org/show_bug.cgi?id=60457
-
-        Added initialization and shuthown for ecore_file library and replaced
-        realpath function to ecore_file_realpath.
-
-        * EWebLauncher/main.c:
-        (quit):
-        (findThemePath):
-        (main):
-
-2011-05-12  Young Han Lee  <joybro@company100.net>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Implement layoutTestController.layerTreeAsText()
-        https://bugs.webkit.org/show_bug.cgi?id=60367
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::layerTreeAsText):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2011-05-11  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by David Levin.
-
-        Teach validate-committer-lists how to validate committers bugzilla_email()
-        https://bugs.webkit.org/show_bug.cgi?id=60651
-
-        It turns out we currently have 9 committers with invalid values for their
-        bugzilla_email field (meaning we don't know what email is their bugzilla account).
-        "Alexander Kellett" <lypanov@mac.com>
-        "Andre Boule" <aboule@apple.com>
-        "Cameron McCormack" <cam@webkit.org>
-        "Chris Petersen" <cpetersen@apple.com>
-        "Eli Fidler" <eli@staikos.net>
-        "Matt Lilek" <webkit@mattlilek.com>
-        "Pierre d'Herbemont" <pdherbemont@free.fr>
-        "Scott Violet" <sky@chromium.org>
-        "Adam Treat" <treat@kde.org>
-
-        Most of those haven't committed in a very long time, so it's not suprising
-        that we haven't noticed that their bugzilla emails are bogus.
-
-        * Scripts/validate-committer-lists:
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla_unittest.py:
-
-2011-05-11  Dmitry Lomov  <dslomov@google.com>
-
-        Reviewed by David Levin.
-
-        https://bugs.webkit.org/show_bug.cgi?id=59561
-        Switch TestWebKitAPI to GTest
-
-        Fixes Makefiles and WinCairo build as well
-
-        * Makefile:
-        * Scripts/build-api-tests:
-        * Scripts/run-api-tests:
-        * TestWebKitAPI/Configurations/TestWebKitAPICommon.vsprops:
-        * TestWebKitAPI/Test.h:
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WTF/VectorBasic.cpp:
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/TestsController.cpp:
-        (TestWebKitAPI::TestsController::TestsController):
-        (TestWebKitAPI::TestsController::dumpTestNames):
-        (TestWebKitAPI::TestsController::runTestNamed):
-        (TestWebKitAPI::TestsController::runAllTests):
-        * TestWebKitAPI/TestsController.h:
-        * TestWebKitAPI/mac/main.mm:
-        (main):
-
-2011-05-11  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Add Luke Macpherson to committers.py as a Contributor
-        https://bugs.webkit.org/show_bug.cgi?id=60639
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-05-11  Noam Rosenthal  <noam.rosenthal@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Texmap][Qt] Upstream texture-mapper changes from Qt's WebKit2 branch
-        https://bugs.webkit.org/show_bug.cgi?id=60439
-
-        Patch 4/12: Update the build script to enable 3D rendering by default for Qt.
-
-        * Scripts/build-webkit:
-
-2011-05-11  Brian Weinstein  <bweinstein@apple.com>
-
-        Reviewed by Adam Roben.
-
-        REGRESSION (r86161): WKPreferences API test failing on Windows
-        https://bugs.webkit.org/show_bug.cgi?id=60658
-
-        * TestWebKitAPI/Tests/WebKit2/WKPreferences.cpp:
-        (TestWebKitAPI::TEST):
-
-2011-05-11  Alice Boxhall  <aboxhall@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Modify jsonresults_unittest.py to use a dict format for its test data, and modify jsonresults.py to flatten hierarchical directory structures in input JSON.
-        https://bugs.webkit.org/show_bug.cgi?id=60521
-
-        First steps towards making the results JSON all hierarchical.
-
-        * TestResultServer/model/jsonresults.py:
-        * TestResultServer/model/jsonresults_unittest.py:
-
-2011-05-11  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix, adding new LayoutTestController method stubs.
-
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::localStorageDiskUsageForOrigin):
-        (LayoutTestController::applicationCacheDiskUsageForOrigin):
-
-2011-05-11  Jessie Berlin  <jberlin@apple.com>
-
-        Reviewed by Darin Adler.
-
-        [WebKit2] exceededDatabaseQuota function on WKPageUIClient needs to provide information
-        about the usage for both the origin overall and the database in question.
-        https://bugs.webkit.org/show_bug.cgi?id=60573
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::exceededDatabaseQuota):
-
-2011-05-10  Stephen White  <senorblanco@chromium.org>
-
-        Reviewed by David Levin.
-
-        Adding myself as a reviewer.
-        https://bugs.webkit.org/show_bug.cgi?id=60587
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-05-11  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        queues.webkit.org should show 1000+ instead of 1000 when we hit the query limit
-        https://bugs.webkit.org/show_bug.cgi?id=60614
-
-        AppEngine has a result limit of 1000.  We hit that when trying
-        to find out how many patches the style-queue (and other queues)
-        have passed in the last 30 days.  So lets display 1000+ instead
-        of 1000 to avoid confusion. (Ossy was asking about this in #webkit tonight.)
-
-        I also made the status pages show "never" instead of just "ago" when we
-        haven't seen a pass or boot message in the last 1000 messages.
-
-        * QueueStatusServer/handlers/queuestatus.py:
-        * QueueStatusServer/templates/queuestatus.html:
-
-2011-05-11  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        sheriffbot shouldn't spam bugs when it can't figure out who to blame
-        https://bugs.webkit.org/show_bug.cgi?id=60613
-
-        This patch limits the number of bugs sheriffbot will spam to three.
-        Ideally, we'd come up with some smarter huerstics, but hopefully this
-        will cut down on the bugmail spam for slow bots.
-
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-
-2011-05-10  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        EWS bots should be robust against test-webkitpy hangs
-        https://bugs.webkit.org/show_bug.cgi?id=60579
-
-        Added a killAfterTimeout subroutine, which takes a child_pid
-        and timeout, and will setup a watchdog process to kill that child
-        after the timeout.  killAfterTimeout will waitpid on the child.
-
-        * EWSTools/start-queue.sh:
-
-2011-05-10  MORITA Hajime  <morrita@google.com>
-
-        Unreviewed, moved myself to the reviewers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-05-10  Anton D'Auria  <adauria@apple.com>
-
-        Reviewed by David Levin.
-
-        StorageTracker should report actual local storage usage on disk
-        https://bugs.webkit.org/show_bug.cgi?id=60558
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (localStorageDiskUsageForOriginCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::localStorageDiskUsageForOrigin):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::localStorageDiskUsageForOrigin):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::localStorageDiskUsageForOrigin):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::localStorageDiskUsageForOrigin):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::localStorageDiskUsageForOrigin):
-
-2011-05-10  Anton D'Auria  <adauria@apple.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Add ApplicationCache API to get disk usage per origin
-        https://bugs.webkit.org/show_bug.cgi?id=57127
-
-        Added test that loads two frames with ~15Kb image, checks usage,
-        deletes app cache, verifies usage is 0.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (applicationCacheDiskUsageForOriginCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp: Added stub.
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::applicationCacheDiskUsageForOrigin):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp: Added stub.
-        (LayoutTestController::applicationCacheDiskUsageForOrigin):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::applicationCacheDiskUsageForOrigin):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp: Added stub.
-        (LayoutTestController::applicationCacheDiskUsageForOrigin):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp: Added stub.
-        (LayoutTestController::applicationCacheDiskUsageForOrigin):
-
-2011-05-10  Lucas De Marchi  <lucas.demarchi@profusion.mobi>
-
-        Unreviewed, adding Rafael Antognolli as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-05-10  Chris Evans  <cevans@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Add WebCore::Setting to block displaying and/or running insecure content on secure pages
-        https://bugs.webkit.org/show_bug.cgi?id=58378
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setAllowDisplayOfInsecureContent):
-        (LayoutTestController::setAllowRunningOfInsecureContent):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-        Add plumbing for new settings to Chromium DRT.
-
-2011-05-10  Enrica Casucci  <enrica@apple.com>
-
-        Reviewed by Beth Dakin.
-
-        Added my name to the reviewers list and removed my name from
-        to committer-only list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-05-10  David Levin  <levin@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        check-webkit-style shouldn't filter the errors using the modified lines for the xml and test expectations checkers.
-        https://bugs.webkit.org/show_bug.cgi?id=60466
-
-        * Scripts/webkitpy/style/checker.py: (unrelated) style fix.
-        * Scripts/webkitpy/style/checker_unittest.py: Remove the file_path check since
-          that property was removed.
-        * Scripts/webkitpy/style/checkers/test_expectations.py: Turn off the line
-          filtering for errors.
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py: Add testing to
-          verify that the line filtering is turned off.
-        * Scripts/webkitpy/style/checkers/xml.py: Turn off the line filtering for errors
-          and remove the unused file_path parameter.
-        * Scripts/webkitpy/style/checkers/xml_unittest.py: Add testing to verify that the
-          line filtering is turned off (and fix test_no_error).
-        * Scripts/webkitpy/style/error_handlers.py: Added a way to turn off the filtering
-          of errors based on the lines changed in the patch.
-        * Scripts/webkitpy/style/error_handlers_unittest.py: Added a test for turning off
-          the filtering.
-
-2011-05-10  Adam Roben  <aroben@apple.com>
-
-        Update some plugin tests to work with WebKit2's asynchronous windowed plugin positioning on Windows
-
-        Fixes <http://webkit.org/b/60442> <rdar://problem/9403200> REGRESSION (r85795):
-        platform/win/plugins/window-geometry-initialized-before-set-window.html and
-        platform/win/plugins/window-region-is-set-to-clip-rect.html failing on Windows 7 Release
-        (WebKit2 Tests)
-
-        Reviewed by Anders Carlsson.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/win/NPNInvalidateRectInvalidatesWindow.cpp:
-        (NPNInvalidateRectInvalidatesWindow::NPP_SetWindow): Moved some code from here to the new
-        WindowedPluginTest::testHarnessWindow function.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/win/WindowGeometryInitializedBeforeSetWindow.cpp:
-        (WindowGeometryInitializedBeforeSetWindow::NPP_SetWindow): Only check the window's size, not
-        its position. In WebKit2, the position won't have been set yet, so we can't test it. But it
-        turns out only the size mattered for <http://webkit.org/b/46716>, which this test was
-        created for.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/win/WindowRegionIsSetToClipRect.cpp:
-        (WindowRegionIsSetToClipRect::WindowRegionIsSetToClipRect): Converted to be a
-        WindowedPluginTest, and initialized new members.
-        (WindowRegionIsSetToClipRect::startTest): Make our plugin window visible, and set things up
-        to ensure we get a WM_WINDOWPOSCHANGED message about it becoming visible.
-        (WindowRegionIsSetToClipRect::finishTest): Check that the window region is what we expect,
-        then clean up and tell the test harness we're done.
-        (WindowRegionIsSetToClipRect::checkWindowRegion): Moved code to check the window region here
-        from NPP_SetWindow. Changed to use the fancy new log() function instead of pluginLog().
-        (WindowRegionIsSetToClipRect::showTestHarnessWindowIfNeeded): Show the test harness's window
-        if it is hidden. This is needed to ensure we get a WM_WINDOWPOSCHANGED message when our own
-        window becomes visible.
-        (WindowRegionIsSetToClipRect::hideTestHarnessWindowIfNeeded): Hide the test harness's window
-        if it was hidden at the start of the test.
-        (WindowRegionIsSetToClipRect::wndProc): When our timer fires, tell the UI process to paint.
-        This should cause our window to become visible and our window region to get set. When we get
-        a WM_WINDOWPOSCHANGED message, we can finally finish the test.
-        (WindowRegionIsSetToClipRect::NPP_GetValue): Return our script object.
-        (WindowRegionIsSetToClipRect::ScriptObject::hasMethod): We only have one method:
-        "startTest".
-        (WindowRegionIsSetToClipRect::ScriptObject::invoke): Call through to the PluginTest object.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/WindowedPluginTest.cpp:
-        (WindowedPluginTest::testHarnessWindow):
-        * DumpRenderTree/TestNetscapePlugIn/win/WindowedPluginTest.h:
-        Added this helper function. Code came from NPNInvalidateRectInvalidatesWindow.
-
-2011-05-10  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Add new qt-4.8 platform for layout testing
-        https://bugs.webkit.org/show_bug.cgi?id=60544
-
-        * Scripts/old-run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2011-05-09  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r86108.
-        http://trac.webkit.org/changeset/86108
-        https://bugs.webkit.org/show_bug.cgi?id=60533
-
-        Broke makefile based builds and Cairo (Requested by weinig on
-        #webkit).
-
-        * Scripts/build-api-tests:
-        * Scripts/run-api-tests:
-        * TestWebKitAPI/Configurations/TestWebKitAPICommon.vsprops:
-        * TestWebKitAPI/Test.h:
-        (TestWebKitAPI::Test::~Test):
-        (TestWebKitAPI::Test::name):
-        (TestWebKitAPI::Test::Register::Register):
-        (TestWebKitAPI::Test::Register::create):
-        (TestWebKitAPI::Test::Test):
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WTF/VectorBasic.cpp:
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/TestsController.cpp:
-        (TestWebKitAPI::TestsController::TestsController):
-        (TestWebKitAPI::TestsController::dumpTestNames):
-        (TestWebKitAPI::TestsController::runTestNamed):
-        (TestWebKitAPI::TestsController::testFailed):
-        (TestWebKitAPI::TestsController::registerCreateTestFunction):
-        * TestWebKitAPI/TestsController.h:
-        * TestWebKitAPI/mac/main.mm:
-        (main):
-
-2011-05-09  Hayato Ito  <hayato@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Skip reftests if pixel tests are disabled.
-
-        https://bugs.webkit.org/show_bug.cgi?id=59078
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
-        * Scripts/webkitpy/layout_tests/layout_package/worker.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-
-2011-05-09  Chang Shu  <cshu@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] DumpRenderTreeQt needs an implementation of unmarkText
-        https://bugs.webkit.org/show_bug.cgi?id=60499
-
-        The implementation is similar to gtk.
-
-        * DumpRenderTree/qt/TextInputControllerQt.cpp:
-        (TextInputController::unmarkText):
-        * DumpRenderTree/qt/TextInputControllerQt.h:
-
-2011-05-09  James Robinson  <jamesr@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        [chromium] Teach new-run-webkit-tests to follow symlinks when trying to determine the arch of DumpRenderTree on linux
-        https://bugs.webkit.org/show_bug.cgi?id=60520
-
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-
-2011-05-09  Dmitry Lomov  <dslomov@google.com>
-
-        Reviewed by Sam Weinig.
-
-        Switch TestWebKitAPI to GTest
-        https://bugs.webkit.org/show_bug.cgi?id=59561
-
-        * Scripts/build-api-tests:
-        * Scripts/run-api-tests:
-        * TestWebKitAPI/Configurations/TestWebKitAPICommon.vsprops:
-        * TestWebKitAPI/Test.h:
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WTF/VectorBasic.cpp:
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/TestsController.cpp:
-        (TestWebKitAPI::TestsController::TestsController):
-        (TestWebKitAPI::TestsController::dumpTestNames):
-        (TestWebKitAPI::TestsController::runTestNamed):
-        (TestWebKitAPI::TestsController::runAllTests):
-        * TestWebKitAPI/TestsController.h:
-        * TestWebKitAPI/mac/main.mm:
-        (main):
-
-2011-05-09  Igor Oliveira  <igor.oliveira@openbossa.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] DRT eventSender.addTouchPoint method is not setting the start position
-        https://bugs.webkit.org/show_bug.cgi?id=60487
-
-        When adding a new touch point, the start position of this point needs to be set.
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::addTouchPoint):
-
-2011-05-09  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        https://bugs.webkit.org/show_bug.cgi?id=57137
-
-        Unskip plugins/embed-prefers-plugins-for-images.html
-
-        Add image/png mime-type to test netscape plugin on Unix.
-
-        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
-        (NP_GetMIMEDescription):
-
-2011-05-09  Alice Boxhall  <aboxhall@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Pull jsonresults_unittest test cases out into separate test methods.
-        https://bugs.webkit.org/show_bug.cgi?id=60418
-
-        * TestResultServer/model/jsonresults_unittest.py:
-
-2011-05-09  Mahesh Kulkarni  <mahesh.kulkarni@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] fix fast/dom/Geolocation/window-close-crash.html
-        https://bugs.webkit.org/show_bug.cgi?id=60458
-
-        Update all pages with Mock position/error/permission.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setGeolocationPermission):
-        (LayoutTestController::setMockGeolocationError):
-        (LayoutTestController::setMockGeolocationPosition):
-
-2011-05-09  Shishir Agrawal  <shishir@chromium.org>
-
-        Reviewed by Tony Gentilcore.
-
-        Implement Page Visibility API.
-        https://bugs.webkit.org/show_bug.cgi?id=54181
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setPageVisibilityCallback):
-        (resetPageVisibilityCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::setPageVisibility):
-        (LayoutTestController::resetPageVisibility):
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::resetPageVisibility):
-        (LayoutTestController::setPageVisibility):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-
-2011-05-07  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Testing EWS spins on patches with a large number of failures
-        https://bugs.webkit.org/show_bug.cgi?id=60441
-
-        In cases where the tree has a small number of persistent failures but a
-        patch has a large number of failures, we weren't believing any results.
-        That lead to us retrying the patch forever while we waited for
-        trustworthy results that would never come.
-
-        This patch loosens the semantics of unexpected_failures to return a
-        subset (rather than the exact set) of unexpected failures.  In the case
-        where the tree has a bounded number of failures and the patch has an
-        unbounded number of failures, we can accurately compute such a subset
-        and reject the patch.
-
-        * Scripts/webkitpy/tool/bot/expectedfailures.py:
-        * Scripts/webkitpy/tool/bot/expectedfailures_unittest.py:
-        * Scripts/webkitpy/tool/bot/patchanalysistask.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-
-2011-05-07  Joe Mason  <jmason@rim.com>
-
-        Reviewed by Daniel Bates.
-
-        FrameLoader::isProcessingUserGesture is wrong in dispatchWillPerformClientRedirect
-        https://bugs.webkit.org/show_bug.cgi?id=52211
-
-        Dump isUserProcessingGesture in willPerformClientRedirect so that the layout tests can be extended.
-        (For the Mac and Chromium ports - other ports don't support dumping user gestures in DRT.)
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::willPerformClientRedirect):
-        (WebViewHost::didStartProvisionalLoad):
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate webView:willPerformClientRedirectToURL:delay:fireDate:forFrame:]):
-
-2011-05-07  Daniel Bates  <dbates@webkit.org>
-
-        Attempt to fix the build; remove some more references to isTiger(), which was removed in changeset 86007
-        <http://trac.webkit.org/changeset/86007> (bug #60438).
-
-        * Scripts/old-run-webkit-tests:
-          - Removed reference to isTiger() from openDumpTool(), captureSavedCrashLog(), and
-            file local variable. 
-
-2011-05-07  Pratik Solanki  <psolanki@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Remove references to Tiger in scripts
-        https://bugs.webkit.org/show_bug.cgi?id=60438
-
-        Remove isTiger() and all of the code that depends on it.
-
-        * Scripts/build-webkit:
-        * Scripts/ensure-valid-python:
-        * Scripts/gdb-safari:
-        * Scripts/webkitdirs.pm:
-
-2011-05-06  David Grogan  <dgrogan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        update link to message about mac 64bit git binaries
-        https://bugs.webkit.org/show_bug.cgi?id=60411
-
-        The original message implied (correctly, at-the-time) that
-        http://code.google.com/p/git-osx-installer/ doesn't provide 64-bit
-        binaries. The new message notes that they do. This might prevent someone
-        else from spending a few minutes confused.
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-
-2011-05-06  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: crashes in race with crashing DRT
-        https://bugs.webkit.org/show_bug.cgi?id=60238
-
-        This fixes a race where if we wrote the URL to DRT and
-        DRT crashed immediately, we could get a broken pipe
-        error back during the write() and not handle it correctly,
-        causing NRWT to also crash.
-
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-05-06  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add a --skip-integrationtests mode to test-webkitpy
-        https://bugs.webkit.org/show_bug.cgi?id=60354
-
-        These two test suites account for 2/3 of test-webkitpy's running time
-        because they're not actually unit tests.  They're integration tests.
-        This patch adds the ability to skip integration tests by passing a
-        command line argument to test-webkitpy.  The buildbots will continue to
-        run these integration tests to make sure they don't regress.  This
-        option is for use by developers when working on parts of the code that
-        are well-covered by unit tests.
-
-        * Scripts/webkitpy/common/system/file_lock_integrationtest.py: Copied from Tools/Scripts/webkitpy/common/system/file_lock_unittest.py.
-        * Scripts/webkitpy/common/system/file_lock_unittest.py: Removed.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py: Copied from Tools/Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py: Removed.
-        * Scripts/webkitpy/test/main.py:
-
-2011-05-06  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        The results.zip generated by the Chromium EWS are too big
-        https://bugs.webkit.org/show_bug.cgi?id=60352
-
-        Currently results.zip created by the Chromium EWS bot contain roughly
-        1000 tests that we expect to fail.  These test results are not helpful
-        to contributors.
-
-        There are several approaches to solving this problem:
-
-        1) We could be more selective about which files to include in the zip.
-        2) We could ask new-run-webkit-tests not to generate results for
-           expected failures.
-        3) We could ask new-run-webkit-tests not to run tests that we expect to
-           fail.
-
-        This patch takes approach (3).  Currently, we're ignoring the outcome
-        of failing tests anyway, so there's not much point in actually running
-        them.  As a side benefit, this will speed up the test run by about 6%.
-        In the future, we might revisit this decision and choose another
-        approach.
-
-        * Scripts/webkitpy/common/config/ports.py:
-        * Scripts/webkitpy/common/config/ports_unittest.py:
-
-2011-05-06  Gabor Rapcsanyi  <rgabor@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt] Use qt-arm platform instead of qt-linux on ARM platform.
-
-        * Scripts/old-run-webkit-tests:
-
-2011-05-06  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Ojan Vafai.
-
-        Add an option to NRWT to skip failing tests
-        https://bugs.webkit.org/show_bug.cgi?id=60295
-
-        This option is similar to the way old-run-webkit-tests works.  We're
-        planning to use this option on the testing EWS bots because they don't
-        use information from failing tests yet.
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-05-04  Philippe Normand  <pnormand@igalia.com>
-
-        Reviewed by Dimitri Glazkov.
-
-        Implement LayoutTestController::pseudoShadowId()
-        https://bugs.webkit.org/show_bug.cgi?id=60034
-
-        shadowPseudoId support in the various LayoutTestController
-        implementations.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (shadowPseudoIdCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::shadowPseudoId):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::shadowPseudoId):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::shadowPseudoId):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::shadowPseudoId):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::shadowPseudoId):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::shadowPseudoId):
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::shadowPseudoId):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2011-05-06  Adam Barth  <abarth@webkit.org>
-
-        EWS can't reject patches
-        https://bugs.webkit.org/show_bug.cgi?id=60345
-
-        We're supposed to use patch.id() for the attachment ID, silly.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-
-2011-05-05  Steve Lacey  <sjl@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Fix generation of results html file by passing relative path to scm
-        methods.
-        Generate diff images for results html file.
-
-        https://bugs.webkit.org/show_bug.cgi?id=60086
-
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests_unittest.py:
-
-2011-05-05  Andy Estes  <aestes@apple.com>
-
-        Reviewed by Daniel Bates.
-
-        update-webkit should handle Internal using a different VCS than OpenSource.
-        https://bugs.webkit.org/show_bug.cgi?id=60310
-
-        isGit() and isSVN() cache their results, so Internal will always be
-        updated using the VCS commands used for OpenSource. If Internal uses a
-        different VCS, this will fail. Fix this by calling isGitDirectory() and
-        isSVNDirectory() instead, which do not cache their results.
-
-        * Scripts/update-webkit:
-
-2011-05-05  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        nrwt: revamp integration tests incl. tests for servers
-        https://bugs.webkit.org/show_bug.cgi?id=59985
-
-        This change adds the ability to run "integration tests" that
-        depend on (and affect) the local environment on your machine.
-        These tests can be run manually by invoking python on the
-        test file in question and passing the '-i' flag, but are
-        not run automatically as part of test-webkitpy.
-
-        Integration tests are identified by being methods named as
-        "integration_test_*" instead of "test_*", and we use a
-        custom TestLoader instead of the default one provided by
-        unittest.
-
-        This change also adds a protected "_default_to_apache" method
-        to the port object so we can do the right thing when starting
-        and stopping web servers with less mechanism.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-
-2011-05-05  Adam Roben  <aroben@apple.com>
-
-        Robustify DRT's pixel-dumping code against semi-random alpha channel values on Windows
-
-        DRT generates a pixel dump on Windows using the WM_PRINT message. This message (just like
-        most of GDI) doesn't write anything meaningful into the alpha channel. In some cases, the
-        alpha channel will even get filled with zeros (like when ::GradientFill is used). To
-        safeguard against this, we fill the alpha channel with constant full opacity after the
-        WM_PRINT message is handled to ensure we end up with an opaque image. (Note that we can't
-        just ignore the alpha channel when creating the PNG; Mac's pixel results have an alpha
-        channel, and we want to be able to compare Mac and Windows pixel results, so Windows pixel
-        results need an alpha channel, too.)
-
-        Fixes <http://webkit.org/b/60300> draws-gradient.html's pixel results can't be correctly
-        generated due to alpha channel weirdness
-
-        Reviewed by Sam Weinig.
-
-        * DumpRenderTree/win/PixelDumpSupportWin.cpp:
-        (makeAlphaChannelOpaque): Added this helper function to fill a bitmap's alpha channel with
-        constant full opacity.
-        (createBitmapContextFromWebView): Make the bitmap's alpha channel opaque before wrapping it
-        in a CGContext or cairo_surface.
-
-2011-05-05  Adam Roben  <aroben@apple.com>
-
-        Add support for layoutTestController.dumpAsText(true) to WebKitTestRunner
-
-        Passing true tells the test harness to dump pixels even though we're not dumping a render
-        tree.
-
-        Fixes <http://webkit.org/b/60298> Calling layoutTestController.dumpAsText(true) in
-        WebKitTestRunner doesn't result in pixel results being generated
-
-        Reviewed by Sam Weinig.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl: Added dumpPixels
-        argument to dumpAsText.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::dump): Updated for dumpAsText change.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::dumpAsText): Store the dumpPixels argument.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h: Updated for IDL change.
-
-        * WebKitTestRunner/win/InjectedBundle.vcproj: Added .idl files as a convenience for Windows
-        developers.
-
-2011-05-05  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: merge os, version fields in test config
-        https://bugs.webkit.org/show_bug.cgi?id=60004
-
-        This change removes the 'o/s' field from the TestConfiguration
-        object, and changes the 'MAC', 'WIN', and 'LINUX' modifiers in
-        the expectations file to macros that expand to the version names
-        for each platform.
-
-        This means that you can once again put any subset of the
-        operating system versions on a single line, e.g.:
-          BUGX LEOPARD XP LINUX : fast/html/foo.html = FAIL
-
-        This change will break any existing test_expectations.txt
-        file that uses the "OS-VERSION" macros, which are no longer
-        needed. It turns out they were never needed, as just VERSION
-        by itself was sufficient. The test_expectations.txt file should
-        be updated accordingly prior to landing this change.
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-
-2011-05-05  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        [chromium] switch from Lucida to free fonts for Hindi and Thai
-        https://bugs.webkit.org/show_bug.cgi?id=60287
-
-        The fonts are provided by the ttf-thai-tlwg and ttf-indic-fonts
-        packages on Lucid. There are actually multiple Thai fonts in the
-        package, so I just picked one.
-
-        * DumpRenderTree/chromium/TestShellGtk.cpp:
-        (setupFontconfig):
-
-2011-05-05  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        [chromium] google-chrome-64 builds should now fallback to chromium-linux-x86_64 results
-        https://bugs.webkit.org/show_bug.cgi?id=60290
-
-        It used to be that google-chrome-32 was hardy32, google-chrome-64 was
-        hardy64, chromium-linux was hardy32 and chromium-linux-x86_64 was
-        lucid64.  Because of that, google-chrome-64 used to skip the
-        chromium-linux-x86_64 results since they were more incorrect.
-
-        Now that we're switching to lucid for google-chrome, we want
-        google-chrome-64 to fall back to chromium-linux-x86_64.
-
-        * Scripts/webkitpy/layout_tests/port/google_chrome.py:
-
-2011-05-05  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: merge TestExpectations, TestExpectationsFile classes
-        https://bugs.webkit.org/show_bug.cgi?id=60002
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-        * Scripts/webkitpy/layout_tests/layout_package/result_summary.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations_unittest.py:
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-
-2011-05-05  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue should reject patches which fail ewses
-        https://bugs.webkit.org/show_bug.cgi?id=47534
-
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-
-2011-05-05  Chang Shu  <cshu@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt][WK2] Support PageGroup in QGraphicsWKView/QWKPage constructors
-        https://bugs.webkit.org/show_bug.cgi?id=59638
-
-        1. Call QGraphicsWKView constructor with pageGroupRef.
-        2. Disable setFontFamily calls as it breaks Qt test fonts.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::WebView::WebView):
-        (WTR::PlatformWebView::PlatformWebView):
-
-2011-05-05  Joseph Pecoraro  <joepeck@webkit.org>
-
-        Reviewed by David Kilzer.
-
-        Add --only-webkit option to build-webkit
-        https://bugs.webkit.org/show_bug.cgi?id=60245
-
-        * Scripts/build-webkit: If --only-webkit was specified
-        just build the WebKit project, and not its dependencies.
-
-2011-05-05  Jeff Miller  <jeffm@apple.com>
-
-        Reviewed by Darin Adler.
-
-        Add didNotHandleWheelEvent callback to WKPageUIClient
-        https://bugs.webkit.org/show_bug.cgi?id=60203
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (browserWindowUIClientInit): Stub out didNotHandleWheelEvent callback.
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]): Stub out didNotHandleWheelEvent callback.
-        * MiniBrowser/win/BrowserView.cpp:
-        (BrowserView::create): Stub out didNotHandleWheelEvent callback.
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::createOtherPage): Stub out didNotHandleWheelEvent callback.
-        (WTR::TestController::initialize): Stub out didNotHandleWheelEvent callback.
-
-2011-05-04  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add more missing imports from scm refactor
-        https://bugs.webkit.org/show_bug.cgi?id=60239
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-
-2011-05-04  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        sheriff-bot is having more exception trouble
-        https://bugs.webkit.org/show_bug.cgi?id=60233
-
-        A webpage-forced build was causing SB to throw an exception.
-        We've long had this bug, but we just didn't notice it until now.
-
-        In debugging this I found we fetch an absurd amount of data now
-        that we use buildbot's json (instead of xmlrpc), so I added
-        the filter=1 parameter to reduce it a little.  That required
-        me to handle the case where filter=1 would strip
-        result=0 in some cases (it's unclear why it does that).
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-
-2011-05-04  Cris Neckar  <cdn@chromium.org>
-
-        Unreviewed, Adding Cris Neckar as a committer
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-05-04  Siddharth Mathur  <siddharth.mathur@nokia.com>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt][Wk2][Symbian] Capabilities for Qt MiniBrowser and QtWebProcess on Symbian
-        https://bugs.webkit.org/show_bug.cgi?id=59462
-
-        * MiniBrowser/qt/MiniBrowser.pro: Add Symbian OS capabilities to executable. Also enable data paging. 
-
-2011-05-04  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        The testing EWS bots should upload layout-test-results.zip to bugs after failures
-        https://bugs.webkit.org/show_bug.cgi?id=60223
-
-        This required sharing a bit of code between the commit-queue
-        (which already knew how to do this) and the new EWS testing bots.
-
-        In the process I also cleaned up EWS testing a little and
-        removed some dead code from the commit-queue.
-
-        * Scripts/webkitpy/common/config/committervalidator.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2011-05-04  James Kozianski  <koz@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Add method to make a Port able to retrieve TestOutputSets from its builders.
-        https://bugs.webkit.org/show_bug.cgi?id=58211
-
-        This will be used in the new rebaseline script - TestOutputs are
-        potential new baselines.
-
-        * Scripts/webkitpy/common/config/urls.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-05-04  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Ojan Vafai.
-
-        sheriff-bot can't parse results.html
-        https://bugs.webkit.org/show_bug.cgi?id=60196
-
-        The problem was that the NRWT bots are currently core
-        and so sheriff-bot was trying to diagnose failures on
-        them.  It was trying to parse their results.html file
-        and BeautifulSoup was throwing an exception.
-
-        It seems our version of BeautifulSoup was quite old
-        and unable to handle <script> tags correctly.
-        This moves us to 3.2 which doesn't seem to have this bug.
-
-        * Scripts/webkitpy/thirdparty/BeautifulSoup.py:
-
-2011-05-04  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Make the EWS test logging less verbose
-        https://bugs.webkit.org/show_bug.cgi?id=60201
-
-        This should help us generate less than a hundred MB of logs per hour.
-
-        * Scripts/webkitpy/common/config/ports.py:
-        * Scripts/webkitpy/common/config/ports_unittest.py:
-
-2011-05-04  Tao Bai  <michaelbai@chromium.org>
-
-        Reviewed by David Kilzer.
-
-        Populate touch-icon url to FrameLoaderClient
-        https://bugs.webkit.org/show_bug.cgi?id=59143
-
-        Disable touch icon by default. 
-
-        * Scripts/build-webkit:
-
-2011-05-04  Justin Novosad  <junov@chromium.org>
-
-        Reviewed by Kenneth Russell.
-
-        [Chromium] Add gpu acceleration flags to DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=60168
-        Adding support for command line flags 
-        enable-accelerated-2d-canvas an
-        enable-accelerated-drawing in DumpRenderTree.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::resetWebSettings):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::setLegacyAccelerated2dCanvasEnabled):
-        (TestShell::setAcceleratedDrawingEnabled):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-
-2011-05-04  Ademar de Souza Reis Jr.  <ademar.reis@openbossa.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt] run-qtwebkit-tests misses exec bit
-        https://bugs.webkit.org/show_bug.cgi?id=60188
-
-        Also removing an unecessary import (mostly to let this bugfix goes
-        through the system, as this is just a chmod).
-
-        * Scripts/run-qtwebkit-tests:
-
-2011-05-04  Adam Barth  <abarth@webkit.org>
-
-        Fix import of ircproxy module to actually import the module.  I don't
-        really understand how this code could have worked before.
-
-        * Scripts/webkitpy/common/host.py:
-
-2011-05-04  Siddharth Mathur  <siddharth.mathur@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        [Qt][Wk2][Symbian] Minor UI facelift for MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=60172
-
-        * MiniBrowser/qt/BrowserWindow.cpp: Bring in UI layout changes from QtTestBrowser
-        (BrowserWindow::BrowserWindow):
-
-2011-05-04  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        [NRWT] --new-baseline should put baselines in the directory specified by --additional-platform-directory
-        https://bugs.webkit.org/show_bug.cgi?id=60088
-        
-        Makes --new-baseline put new baselines into the first entry in the
-        baseline search path, including any additional directories passed in via
-        --additional-platform-directory.
-        
-        Simplifies baseline_path() by making it return the first entry in the
-        baseline search path instead of requiring each port to have an
-        implementation (should not result in any behavior change).
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-05-04  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Fix circular dependency in webkitpy
-        https://bugs.webkit.org/show_bug.cgi?id=60075
-
-        These functions don't belong in bugzilla.py.  They only exist there
-        because they are old.  Really, these functions shouldn't be free
-        functions at all, but that's a patch for another day.
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-        * Scripts/webkitpy/common/checkout/checkout.py:
-        * Scripts/webkitpy/common/config/urls.py:
-        * Scripts/webkitpy/common/net/bugzilla/__init__.py:
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla_unittest.py:
-        * Scripts/webkitpy/style/checkers/changelog.py:
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        * Scripts/webkitpy/tool/bot/sheriff.py:
-        * Scripts/webkitpy/tool/commands/upload.py:
-
-2011-05-03  Pratik Solanki  <psolanki@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        https://bugs.webkit.org/show_bug.cgi?id=60141
-        Remove reference to libWebKitSystemInterfaceTiger.a from build-webkit
-
-        * Scripts/build-webkit:
-
-2011-05-03  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Update rebaseline queue server to handle hierarchical test results
-        https://bugs.webkit.org/show_bug.cgi?id=60063
-        
-        Update test result parsing done by the rebaseline queue server to handle
-        the hierarchical test result output that is generated as of r85254.
-
-        * RebaselineQueueServer/templates/builder-queue-edit.html:
-
-2011-05-03  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        webkit-patch post-commits HEAD^.. throws an exception
-        https://bugs.webkit.org/show_bug.cgi?id=60027
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-
-2011-05-03  Luiz Agostini  <luiz.agostini@openbossa.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Layout tests may timeout if loadFinished receives false
-        https://bugs.webkit.org/show_bug.cgi?id=60064
-
-        When using layoutTestController.queueLoad(), if QWebPage::loadFinished(bool) receives false
-        then the layout test may timout. It happens that QWebPage::loadFinished() receives false when
-        a response is ignored, like it should be for 204 responses. It is a problem for creating
-        tests for 204 responses for example.
-
-        This change has been tested and it causes no regressions in layout tests.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::maybeDump):
-
-2011-05-03  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, rolling out r85659.
-        http://trac.webkit.org/changeset/85659
-        https://bugs.webkit.org/show_bug.cgi?id=59977
-
-        restarting isn't working correctly
-
-        * Scripts/webkitpy/layout_tests/port/apache_http_server.py:
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-        * Scripts/webkitpy/layout_tests/port/http_server_base.py:
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-
-2011-05-03  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: fix http server startup/shutdown
-
-        Previous versions of the code had three problems that made startup
-        and shutdown flaky. The first is that it would throw exceptions
-        if it couldn't delete stale log files, which was overly
-        paranoid. The second is that some of the exceptions weren't
-        defined properly. The third, and most important, is that it was
-        using urllib to check if ports were available, which was leaving
-        sockets in a half-closed state, and keeping ports from being
-        reused. By switching to raw sockets, we are able to now reliably
-        restart.
-
-        This change also switches the code to using Executives to stop
-        processes, which will let us delete a bunch of code in the
-        port/* implementations and fix a weird layering problem in a
-        subsequent patch.
-
-        https://bugs.webkit.org/show_bug.cgi?id=59977
-
-        * Scripts/webkitpy/layout_tests/port/apache_http_server.py:
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-        * Scripts/webkitpy/layout_tests/port/http_server_base.py:
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-
-2011-05-03  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        fix failing printing_unittest on win32
-        https://bugs.webkit.org/show_bug.cgi?id=59963
-
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-
-2011-05-03  Adam Roben  <aroben@apple.com>
-
-        Fix most strict PassOwnPtr violations on Windows
-
-        Fixes <http://webkit.org/b/60025> Windows should (almost) build with strict PassOwnPtr
-        enabled
-
-        Reviewed by Anders Carlsson.
-
-        * WebKitAPITest/Test.h: Use adoptPtr.
-
-2011-05-03  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
-
-        Reviewed by Andreas Kling.
-
-        Add myself to the committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-05-03  James Robinson  <jamesr@chromium.org>
-
-        Reviewed by Kenneth Russell.
-
-        [chromium] Layout test animations/3d/replace-filling-transform.html failing
-        https://bugs.webkit.org/show_bug.cgi?id=59839
-
-        Add animations/3d to the list of tests run in the chromium-gpu configuration since these tests exercise the compositor.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-
-2011-05-03  Lucas De Marchi  <lucas.demarchi@profusion.mobi>
-
-        Unreviewed, rolling out r85471.
-        http://trac.webkit.org/changeset/85471
-        https://bugs.webkit.org/show_bug.cgi?id=59922
-
-        The rule of thumb in EFL is that you init in all the places
-        you use it. So, if in your application you call ecore_evas_*
-        functions, you have to call ecore_evas_init() first.
-
-        * EWebLauncher/main.c: always call *_init() functions when you use
-        that namespace.
-        (quit):
-        (main):
-
-2011-05-02  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        remove no longer used method
-        https://bugs.webkit.org/show_bug.cgi?id=59981
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator_unittest.py:
-
-2011-05-02  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        add image toggling behavior from old-run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=59978
-
-        Output -diffs.html files. This matches old-run-webkit-tests.
-        In theory, we could use data urls in the results.html file, but
-        data urls don't currently have access to local files.
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py:
-
-2011-05-02  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        [nrwt] remove some obsolete references to .checksum files
-        https://bugs.webkit.org/show_bug.cgi?id=59971
-
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-05-02  Adam Roben  <aroben@apple.com>
-
-        Take advantage of implicit nullptr_t -> PassOwnPtr conversion
-
-        Fixes <http://webkit.org/b/59964> Implicit conversion from std::nullptr_t to PassOwnPtr
-        doesn't work, but should
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/CppBoundClass.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-
-2011-05-02  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] Compiler warning in Tools/MiniBrowser/main.c
-        https://bugs.webkit.org/show_bug.cgi?id=59986
-
-        Remove a compiler warning.
-
-        * MiniBrowser/gtk/main.c: Use full array initializers to prevent some compilers
-        from complaining.
-
-2011-05-02  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add runtests_unittest.py
-        https://bugs.webkit.org/show_bug.cgi?id=59955
-
-        I forgot to add this file in a previous patch.
-
-        * Scripts/webkitpy/tool/steps/runtests_unittest.py: Added.
-
-2011-05-02  Adam Barth  <abarth@webkit.org>
-
-        Change the testing EWS to log failures explicitly to avoid an infinite loop.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-
-2011-05-02  Adrienne Walker  <enne@google.com>
-
-        Unreviewed, fix misspelled contributor name.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-05-02  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        cr-linux-ews should run tests
-        https://bugs.webkit.org/show_bug.cgi?id=59272
-
-        This patch turns on testing for the cr-linux-ews.  Yay!
-
-        * Scripts/webkitpy/tool/bot/layouttestresultsreader_unittest.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-
-2011-05-02  Martin Robinson  <mrobinson@igalia.com>
-
-        Incorporate a review comment that I mistakenly omitted from my last commit.
-
-        * DumpRenderTree/gtk/EventSender.cpp: Use unsigned here instead of unsigned int.
-
-2011-05-02  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        EWS should report the list of unexpected failures
-        https://bugs.webkit.org/show_bug.cgi?id=59923
-
-        We cache the results of the first layout test results run on the task
-        so the EWS can grab them later.  Another option is to include them in
-        the exception that's thrown, but this approach seemed slightly more
-        aesthetic.
-
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-        * Scripts/webkitpy/tool/bot/patchanalysistask.py:
-
-2011-05-02  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add base case for a test-running EWS
-        https://bugs.webkit.org/show_bug.cgi?id=59920
-
-        Later I will subclass this to run the Chromium Linux EWS.
-
-        * Scripts/webkitpy/tool/bot/earlywarningsystemtask.py: Added.
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-
-2011-05-02  Anders Carlsson  <andersca@apple.com>
-
-        Build fix.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        * WebKitTestRunner/InjectedBundle/mac/InjectedBundleMac.mm:
-
-2011-05-02  Nico Weber  <thakis@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        Add --no-webkit2 to the output of "build-webkit -h"
-        https://bugs.webkit.org/show_bug.cgi?id=59942
-
-        * Scripts/build-webkit:
-
-2011-05-02  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] old-run-webkit-tests should disable the Ubuntu overlay scrollbar
-        https://bugs.webkit.org/show_bug.cgi?id=59943
-
-        Disable the Ubuntu overlay scrollbar while testing, by injecting the
-        LIBOVERLAY_SCROLLBAR=0 environment variable.
-
-        * Scripts/old-run-webkit-tests:
-
-2011-05-02  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Eric Seidel.
-
-        [GTK] editing/selection/select-out-of-editable.html failing after r83967
-        https://bugs.webkit.org/show_bug.cgi?id=58667
-
-        Do not trigger mouse down events when the EventSender knows that a mouse button is
-        already down. These type of situations can confuse Xvfb and cause dragging failures.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (mouseDownCallback): Do not trigger another mouse button down event if the mouse button
-        is already down. This can interfere with drags in Xvfb.
-
-2011-05-02  Zsolt Fehér  <h490267@stud.u-szeged.hu>
-
-        Reviewed by Csaba Osztrogonác.
-
-        DRT sideeffect revealed by r71268.
-        https://bugs.webkit.org/show_bug.cgi?id=48958
-
-        Reset QWebSettings::ZoomTextOnly attribute before all tests. 
-
-        Call setTextSizeMultiplier(1.0) to reset TextZoomFactor and 
-        PageZoomFactor too. It should be done before resetsettings() 
-        to guarantee resetting QWebSettings::ZoomTextOnly correctly.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::resetSettings):
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-
-2011-05-02  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r85469.
-        http://trac.webkit.org/changeset/85469
-        https://bugs.webkit.org/show_bug.cgi?id=59928
-
-        Broke  webkitpy-tests on Windows 7, GTK and Qt. (Requested by
-        bbandix on #webkit).
-
-        * Scripts/webkitpy/tool/bot/earlywarningsystemtask.py: Removed.
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-
-2011-05-02  Tomasz Morawski  <t.morawski@samsung.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Cleanup EFL initialization/shutdown in the EWebLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=59922
-
-        Removed ecore_evas_init and edje_init form main function due to they
-        are also called in the ewk_init. Moved ewk_shutdown to quit function.
-
-        * EWebLauncher/main.c:
-        (quit):
-        (main):
-
-2011-05-02  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add base case for a test-running EWS
-        https://bugs.webkit.org/show_bug.cgi?id=59920
-
-        Later I will subclass this to run the Chromium Linux EWS.
-
-        * Scripts/webkitpy/tool/bot/earlywarningsystemtask.py: Added.
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-
-2011-05-02  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add the ability to skip python and perl unit tests on EC2
-        https://bugs.webkit.org/show_bug.cgi?id=59918
-
-        * Scripts/webkitpy/common/config/ports.py:
-            - This is slightly ugly, but it's useful...
-        * Scripts/webkitpy/common/config/ports_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/runtests.py:
-
-2011-05-02  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-
-2011-04-29  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix, add new directory to the build.
-
-        * waf/build/settings.py:
-
-2011-04-29  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Implement UI client in minibrowser
-        https://bugs.webkit.org/show_bug.cgi?id=58416
-
-        It also allows to open more than one minibrowser window from the
-        command line.
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (browserWindowFinalize):
-        (browser_window_init):
-        (browserWindowConstructed):
-        (createNewPage):
-        (showPage):
-        (closePage):
-        (runJavaScriptAlert):
-        (browserWindowUIClientInit):
-        * MiniBrowser/gtk/main.c:
-        (loadURI):
-        (main):
-
-2011-04-29  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Implement page loader client in MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=58024
-
-        A new class BrowserWindow has been added to implement the page
-        loader client. It makes supporting multiple windows easier. Window
-        title and url entry are now updated during the loading process.
-
-        * MiniBrowser/gtk/BrowserWindow.c: Added.
-        (activateUriEntryCallback):
-        (goBackCallback):
-        (goForwardCallback):
-        (browserWindowFinalize):
-        (browserWindowGetProperty):
-        (browserWindowSetProperty):
-        (browser_window_init):
-        (browserWindowConstructed):
-        (browser_window_class_init):
-        (browserWindowUpdateTitle):
-        (browserWindowSetTitle):
-        (browserWindowSetLoadProgress):
-        (browserWindowUpdateURL):
-        (didStartProvisionalLoadForFrame):
-        (didReceiveServerRedirectForProvisionalLoadForFrame):
-        (didFailProvisionalLoadWithErrorForFrame):
-        (didCommitLoadForFrame):
-        (didFinishDocumentLoadForFrame):
-        (didFinishLoadForFrame):
-        (didFailLoadWithErrorForFrame):
-        (didReceiveTitleForFrame):
-        (didFirstLayoutForFrame):
-        (didFirstVisuallyNonEmptyLayoutForFrame):
-        (didRemoveFrameFromHierarchy):
-        (didStartProgress):
-        (didChangeProgress):
-        (didFinishProgress):
-        (didBecomeUnresponsive):
-        (didBecomeResponsive):
-        (browserWindowLoaderClientInit):
-        (browser_window_new):
-        (browser_window_get_view):
-        * MiniBrowser/gtk/BrowserWindow.h: Added.
-        * MiniBrowser/gtk/GNUmakefile.am:
-        * MiniBrowser/gtk/main.c:
-        (createWindow):
-
-2011-04-28  Stephanie Lewis  <slewis@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        http://bugs.webkit.org/show_bug.cgi?id=59743
-        <rdar://problem/9040413> Add an install target for production builds.
-
-        * DumpRenderTree/mac/PerlSupport/Makefile:
-
-2011-04-28  Adam Roben  <aroben@apple.com>
-
-        Stop and restart ATSServer before each test run on Leopard
-
-        This is to work around an ATSServer leak that eventually causes tests
-        to fail.
-
-        Fixes <http://webkit.org/b/51807> <rdar://problem/9273894>
-        fast/blockflow/broken-ideograph-[small-caps|font].html sometimes fails on Leopard buildbots
-        (due to ATSServer leak)
-
-        Reviewed by Dan Bernstein.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (StopATSServer):
-        (StartATSServer):
-        Added these new commands to stop and start ATSServer.
-
-        (TestFactory.__init__): Stop and start ATSServer on Leopard before running tests.
-
-2011-04-28  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Roben.
-
-        add Leopard NRWT bot to the scheduler
-        https://bugs.webkit.org/show_bug.cgi?id=59766
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2011-04-28  Sam Weinig  <sam@webkit.org>
-
-        Fix WebKitTestRunner build.
-
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-        The Derived Sources target needs a product name.
-
-2011-04-28  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Mark Rowe.
-
-        Add install support for WebKitTestRunner.
-        <rdar://problem/9349055>
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        Add missing CompilerVersion.xcconfig.
-
-        * WebKitTestRunner/Configurations/InjectedBundle.xcconfig:
-        * WebKitTestRunner/Configurations/WebKitTestRunner.xcconfig:
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-        Add install path and tell it not to skip installation.
-
-        Add missing CompilerVersion.xcconfig.
-
-2011-04-28  David Levin  <levin@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Remove IMAGE_RESIZER related code.
-        https://bugs.webkit.org/show_bug.cgi?id=59735
-
-        * Scripts/build-webkit:
-
-2011-04-28  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Make reading skipped files from additional platform
-        directories work in WebKit2 mode.
-
-        * Scripts/old-run-webkit-tests:
-        (buildPlatformTestHierarchy): Simplify logic to always use the first
-        and last platforms in the build hierarchy as the test hierarchy, and to
-        insert the WebKit2 platform in the middle if it exists. Yum.
-
-2011-04-28  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Remove WML
-        https://bugs.webkit.org/show_bug.cgi?id=59678
-
-        Remove build system integration and test harness integration for WML.
-
-        * Scripts/build-webkit:
-        * Scripts/old-run-webkit-tests:
-        * Scripts/webkitperl/features.pm:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-
-2011-04-28  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        use a hierarchical data structure to store results json
-        https://bugs.webkit.org/show_bug.cgi?id=59736
-
-        Instead of a map from test name to results dict, we now store a hierarchical
-        data structure.
-
-        Old: { foo/bar/baz.html: results_dict, foo/bar/baz2.html: results_dict }
-        New:
-        { foo: {
-            bar: {
-              baz.html: results_dict,
-              baz2.html: results_dict } } }
-
-        This cut ~52% of the size of times_ms.json. I expect it will cut
-        30-40% of full_results.json and unexpected_results.json.
-
-        * Scripts/webkitpy/common/net/resultsjsonparser.py:
-        * Scripts/webkitpy/common/net/resultsjsonparser_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        Using os.sep was just wrong since relative_test_filename canonicalizes separators.
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/tool/commands/rebaselineserver.py:
-        Instead of plumbing through the change to all of the rebaselineserver
-        python and JS, just convert to the old format after reading in the json.
-
-2011-04-28  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        EWS Bubbles should show commit-queue position when patch is in the commit-queue
-        https://bugs.webkit.org/show_bug.cgi?id=59744
-
-        Add target="_top" to the bubble links.  This was
-        forgotten when I moved from using an onclick to a normal link.
-
-        * QueueStatusServer/templates/statusbubble.html:
-
-2011-04-28  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        EWS bubbles should show "submit to ews" button if they've not been processed
-        https://bugs.webkit.org/show_bug.cgi?id=59751
-
-        * QueueStatusServer/handlers/statusbubble.py:
-        * QueueStatusServer/handlers/submittoews.py:
-        * QueueStatusServer/templates/statusbubble.html:
-        * QueueStatusServer/templates/submittoews.html:
-
-2011-04-28  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        EWS Bubbles should show commit-queue position when patch is in the commit-queue
-        https://bugs.webkit.org/show_bug.cgi?id=59744
-
-        This was actually just a 2 line change to statusbubble.py.
-        I also cleaned up statusbubble.html a little while I was there
-        (the links are now actual <a> tags and have hover).
-
-        * QueueStatusServer/handlers/statusbubble.py:
-        * QueueStatusServer/templates/statusbubble.html:
-
-2011-04-28  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        add a mac leopard release NRWT bot
-        https://bugs.webkit.org/show_bug.cgi?id=59733
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2011-04-28  Ojan Vafai  <ojan@chromium.org>
-
-        Avoid crashing when running new-run-webkit-tests outside of
-        version control.
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-
-2011-04-28  Xan Lopez  <xlopez@igalia.com>
-
-        Unreviewed build fix.
-
-        * GNUmakefile.am:
-
-2011-04-28  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        fix python printing test
-        https://bugs.webkit.org/show_bug.cgi?id=59719
-
-        Now that we run scm commands in summarize_results, --verbose prints
-        debug logging to stderr.
-
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-
-2011-04-28  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        link to tests at a specific revision in the results.html file
-        https://bugs.webkit.org/show_bug.cgi?id=59711
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-        Add a method to get the head svn revision.
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-        Include the svn revision in the results json.
-
-2011-04-28  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Reviewed by Sam Weinig.
-
-        [GTK] Remove WKURLCreateWithURL()
-        https://bugs.webkit.org/show_bug.cgi?id=59691
-
-        Use WKURLCreateWithUTF8CString() instead of WKURLCreateWithURL().
-
-        * MiniBrowser/gtk/main.c:
-        (activateUriEntryCallback):
-        (main):
-
-2011-04-28  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] WKView should be a GtkWidget
-        https://bugs.webkit.org/show_bug.cgi?id=59603
-
-        Don't use WKViewGetWindow(), use WKView as a GtkWidget instead.
-
-        * MiniBrowser/gtk/main.c:
-        (createWindow):
-        (main):
-
-2011-04-28  Gabor Rapcsanyi  <rgabor@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt] Add ARM specific Skipped list
-        https://bugs.webkit.org/show_bug.cgi?id=59680
-
-        * Scripts/old-run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-
-2011-04-27  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        error_log.txt should include PHP errors
-        https://bugs.webkit.org/show_bug.cgi?id=59643
-
-        Turns out this was really easy after I finally learned
-        enough about PHP to do it...
-
-        I'm adding this in hopes of better tracking down
-        our random http failures.
-
-        * Scripts/webkitperl/httpd.pm:
-
-2011-04-27  David Levin  <levin@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        check-webkit-style should flags spacing errors for braces on the same line.
-        https://bugs.webkit.org/show_bug.cgi?id=59665
-
-        * Scripts/webkitpy/style/checkers/cpp.py: Added the check.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Added some tests for the check
-          and fixed some test cases to not trigger this error since it isn't what they are verifying.
-
-2011-04-27  David Levin  <levin@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        check-webkit-style error for spaces after periods in a comment has a bad error
-        message and warns about end of line spaces.
-        https://bugs.webkit.org/show_bug.cgi?id=59663
-
-        * Scripts/webkitpy/style/checkers/cpp.py: Fix both issues.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Added tests for spaces at the end of line
-        and changed the error messages.
-
-2011-04-27  Ojan Vafai  <ojan@chromium.org>
-
-        remove assertion now that platform/mac-tiger no longer exists
-        https://bugs.webkit.org/show_bug.cgi?id=59660
-
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-
-2011-04-27  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        remove test that didn't make sense
-        https://bugs.webkit.org/show_bug.cgi?id=59658
-
-        It was artifically saying the test wasn't expected to pass,
-        but the expectations string was empty. The case of unexpected
-        passes with a real expectations string is tested later in the
-        same test.
-
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-
-2011-04-27  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        WebKit2 needs to notify the client when a plugin fails to initialize
-        https://bugs.webkit.org/show_bug.cgi?id=59657
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-        Add stubs.
-
-2011-04-26  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by David Levin.
-
-        Add a few more missing options to new-run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=59567
-
-        Add support for:
-            --threaded
-            --gc-between-tests
-            --complex-text
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-04-27  Mark Rowe  <mrowe@apple.com>
-
-        Build fix.
-
-        Fix an OwnPtr-related issue that was missed before the strictness was turned on.
-        
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::runTest):
-
-2011-04-27  Ojan Vafai  <ojan@chromium.org>
-
-        Forgot to upload the new times_ms.json file after splitting
-        it out from full_results.json.
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-
-2011-04-27  Ojan Vafai  <ojan@chromium.org>
-
-        Fix snafu in generating the JSON for the chromium tests.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-
-2011-04-27  Ojan Vafai  <ojan@chromium.org>
-
-        Fix bad merge. This broke the chromium tests generating JSON files.
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-
-2011-04-27  Mark Rowe  <mrowe@apple.com>
-
-        Rubber-stamped by Geoff Garen.
-
-        Don't look for results in a location that no longer exists.
-
-        * Scripts/old-run-webkit-tests:
-
-2011-04-27  Adrienne Walker  <enne@google.com>
-
-        Unreviewed, add Chrome GPU folks to contributors that I'm tired of manually CCing
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-04-22  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        only include failures in full_results.json
-        https://bugs.webkit.org/show_bug.cgi?id=59256
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-
-2011-04-22  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Adam Roben.
-
-        move times into their own json file
-        https://bugs.webkit.org/show_bug.cgi?id=59239
-
-        The test runtimes are the only case where we need an entry for
-        every test that was run, including passing tests. Move them into
-        their own json file so we can prune the other json files to only
-        include failing tests.
-
-        Use a trie-like data structure to hold the tests to avoid including
-        full test paths. This cuts 52% of the filesize. The end result is ~700k
-        pre-gzip.
-
-        * Scripts/webkitpy/common/net/resultsjsonparser.py:
-        Exclude times from the parsed TestResults.
-        * Scripts/webkitpy/common/net/resultsjsonparser_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
-
-2011-04-27  Anders Carlsson  <andersca@apple.com>
-
-        More casts and more clang++ build fixes.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (createWebViewAndOffscreenWindow):
-        * TestWebKitAPI/mac/PlatformWebViewMac.mm:
-        (TestWebKitAPI::PlatformWebView::PlatformWebView):
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (WTR::PlatformWebView::PlatformWebView):
-
-2011-04-27  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        lazily autoinstall thirdparty python libraries
-        https://bugs.webkit.org/show_bug.cgi?id=55723
-
-        This helps by only having pywebsocket installed when the bots run.  It
-        doesn't help much for devs since webkit-patch pulls in almost everything.
-
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        * Scripts/webkitpy/common/net/networktransaction.py:
-        * Scripts/webkitpy/common/net/networktransaction_unittest.py:
-        * Scripts/webkitpy/common/net/statusserver.py:
-        * Scripts/webkitpy/layout_tests/port/websocket_server.py:
-        * Scripts/webkitpy/thirdparty/__init__.py: Add an import hook so we can install based on
-            the import command rather than just installing everything.
-        * Scripts/webkitpy/thirdparty/__init___unittest.py: Added.
-
-2011-04-27  Girish Ramakrishnan  <girish@forwardbias.in>
-
-        Add my IRC nick.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-04-27  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Mihai Parparita.
-
-        sherrifbot create-bug shouldn't assign bugs to webkit.review.bot
-        https://bugs.webkit.org/show_bug.cgi?id=59545
-
-        To do this, I needed a way to look up contributors by irc-name
-        (since anyone in #webkit who might use this command may not be a committer).
-        To lookup contributors, I had to make Contributor a real object.
-        Which led me to redesign parts of committers.py...
-        and finally fix one spot in changelog.py where we wanted to be
-        looking up contributors and not committers.
-
-        Overall a pretty simple fix, once you wade through the yak-hair.
-
-        This may not prevent *all* possible ways that bugs would get assigned
-        to webkit.review.bot.  If we don't recognize the requester we will
-        go through the previous code path (which shouldn't change the assignee
-        on the bug from the default as far as I can tell).
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        * Scripts/webkitpy/common/config/committers.py:
-        * Scripts/webkitpy/common/config/committers_unittest.py:
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        * Scripts/webkitpy/tool/bot/irc_command_unittest.py:
-
-2011-04-27  Yi Shen  <yi.4.shen@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Upstream Symbian platform plugin
-        https://bugs.webkit.org/show_bug.cgi?id=58435
-
-        Exempting directory WebKit/qt/symbian/platformplugin from style guide.
-
-        * Scripts/webkitpy/style/checker.py:
-        * Scripts/webkitpy/style/checker_unittest.py:
-
-2011-04-27  Jeff Miller  <jeffm@apple.com>
-
-        Correct my IRC nickname.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-04-27  Lucas De Marchi  <lucas.demarchi@profusion.mobi>
-
-        Reviewed by Darin Adler.
-
-        Change the email used on bugzilla
-        https://bugs.webkit.org/show_bug.cgi?id=59582
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-04-27  James Kozianski  <koz@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Extract map from port to builder name.
-        https://bugs.webkit.org/show_bug.cgi?id=58301
-
-        * Scripts/webkitpy/layout_tests/port/__init__.py:
-        * Scripts/webkitpy/layout_tests/port/builders.py: Added.
-        * Scripts/webkitpy/layout_tests/port/builders_unittest.py: Added.
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-
-2011-04-27  Ryuan Choi  <ryuan.choi@samsung.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Add proxy support to GtkLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=58852
-
-        Add SOUP_TYPE_PROXY_RESOLVER_DEFAULT feature or set SOUP_SESSION_PROXY_URI for developers behind proxy.
-
-        * GNUmakefile.am:
-        * GtkLauncher/main.c:
-        (main):
-
-2011-04-27  Annie Sullivan  <sullivan@chromium.org>
-
-        Reviewed by David Levin.
-
-        Adding myself as a Chromium contributor to committers.py.
-
-        https://bugs.webkit.org/show_bug.cgi?id=59576
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-04-26  David Grogan  <dgrogan@chromium.org>
-
-        Reviewed by David Levin.
-
-        Adding myself to Chromium contributors list in committers.py
-        https://bugs.webkit.org/show_bug.cgi?id=59565
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-04-26  Chang Shu  <cshu@webkit.org>
-
-        Reviewed by Laszlo Gombos.
-
-        WebKitTestRunner needs layoutTestController.addOriginAccessWhitelistEntry
-        https://bugs.webkit.org/show_bug.cgi?id=42544
-
-        Also implemented removeOriginAccessWhitelistEntry and resetOriginAccessWhitelists.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::addOriginAccessWhitelistEntry):
-        (WTR::LayoutTestController::removeOriginAccessWhitelistEntry):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2011-04-26  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Adele Peterson.
-
-        AX: Add more text marker routines to DRT
-        https://bugs.webkit.org/show_bug.cgi?id=58949
-
-        Add a few more methods to help test the text marker system, including nextMarker, previousMarker and
-        stringForMarkerRange.
-
-        * DumpRenderTree/AccessibilityUIElement.cpp:
-        (nextTextMarkerCallback):
-        (previousTextMarkerCallback):
-        (stringForTextMarkerRangeCallback):
-        (AccessibilityUIElement::previousTextMarker):
-        (AccessibilityUIElement::nextTextMarker):
-        (AccessibilityUIElement::stringForTextMarkerRange):
-        (AccessibilityUIElement::getJSClass):
-        * DumpRenderTree/AccessibilityUIElement.h:
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        (AccessibilityUIElement::previousTextMarker):
-        (AccessibilityUIElement::nextTextMarker):
-        (AccessibilityUIElement::stringForTextMarkerRange):
-
-2011-04-26  Dan Bernstein  <mitz@apple.com>
-
-        Build fix.
-
-        * DumpRenderTree/mac/Configurations/CompilerVersion.xcconfig:
-        * MiniBrowser/Configurations/CompilerVersion.xcconfig:
-        * WebKitTestRunner/Configurations/CompilerVersion.xcconfig:
-
-2011-04-26  Kevin Ollivier  <kevino@theolliviers.com>
-
-        Rubberstamped by Eric Seidel.
-
-        Enable waf to be used to build other ports
-        https://bugs.webkit.org/show_bug.cgi?id=58213
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-        * waf: Added.
-        * waf/build: Added.
-        * waf/build/build_utils.py: Added.
-        * waf/build/settings.py: Added.
-        * waf/build/waf_extensions.py: Added.
-        * waf/build/wxpresets.py: Added.
-
-2011-04-26  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by David Hyatt.
-
-        Remove Datagrid from the tree
-        https://bugs.webkit.org/show_bug.cgi?id=59543
-
-        * Scripts/build-webkit:
-        Remove feature.
-
-        * iExploder/iexploder-1.3.2/htdocs/htmltags.in:
-        * iExploder/iexploder-1.7.2/src/html-tags/webkit:
-        Remove from fuzzer.
-
-2011-04-26  Brent Fulgham  <bfulgham@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Update WinLauncher with command-line arguments to allow the
-        transparency to be tested.  Use --transparent to create a
-        transparent view.  Use --desktop to have the view fill the
-        desktop area of the screen.
-        https://bugs.webkit.org/show_bug.cgi?id=58300
-
-        * WinLauncher/WinLauncher.cpp:
-        (usesLayeredWebView): New method to indicate that the
-        program is running with layered windows (alpha-blended
-        transparent windows).
-        (shouldUseFullDesktop): New method to indicate that the
-        program is running across the full desktop (less any
-        task bars.)
-        (resizeSubViews): Layered window mode doesn't have any
-        winapi child windows, so this routine is exited early
-        for that case.
-        (subclassForLayeredWindow): Subclass the window so we can
-        override its defaut message loop.
-        (computeFullDesktopFrame): Convenience function to get the
-        desktop region and update the frame dimensions appropriately.
-        (_tWinMain): Updated to accept the new '--transparent' and
-        '--desktop' arguments.
-        (InitInstance): Modified to exit early for the transparent
-        background case.  WebKit will construct our primary window (with
-        appropriate settings) so we don't need to create one ourselves.
-        (WndProc): 
-        (TransparentWndProc): New message loop for transparent windows,
-        since they need special handling to support dragging.
-
-2011-04-26  Alexandre MAzari  <amazari@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [Gtk] Implement LayoutTestController::setPluginsEnabled
-        https://bugs.webkit.org/show_bug.cgi?id=59184
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setPluginsEnabled):
-
-2011-04-26  Chang Shu  <cshu@webkit.org>
-
-        Reviewed by Laszlo Gombos.
-
-        WebKitTestRunner needs layoutTestController.setAllowFileAccessFromFileURLs
-        https://bugs.webkit.org/show_bug.cgi?id=57572
-
-        Remove the unnecessary code that updates preference.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::setAllowUniversalAccessFromFileURLs):
-
-2011-04-26  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        Reviewed by Eric Seidel.
-
-        [GTK] accessibility/aria-combobox-expected.txt
-        https://bugs.webkit.org/show_bug.cgi?id=59399
-
-        Implement isExpanded(), as it's used in the layout test.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::isExpanded): Implemented.
-
-2011-04-26  Adrienne Walker  <enne@google.com>
-
-        Reviewed by Kent Tamura.
-
-        [chromium] Fix memory leak in DRT due to OwnPtr<T*>
-        https://bugs.webkit.org/show_bug.cgi?id=59489
-
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2011-04-26  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        Reviewed by Eric Seidel.
-
-        [GTK] Implement isChecked in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=59385
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::isChecked): Implemented.
-
-2011-04-26  Alejandro G. Castro  <alex@igalia.com>
-
-        Unreviewed, rolling out r84949.
-        http://trac.webkit.org/changeset/84949
-        https://bugs.webkit.org/show_bug.cgi?id=58852
-
-        Broke GTK+ compilation
-
-        * GtkLauncher/main.c:
-        (main):
-
-2011-04-26  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Mihai Parparita.
-
-        sheriff-bot should have a create-bug command
-        https://bugs.webkit.org/show_bug.cgi?id=59491
-
-        This patch has some stderr unittest spew, but I will
-        fix it after my live demo.
-
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        * Scripts/webkitpy/tool/bot/irc_command_unittest.py:
-        * Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py:
-
-2011-04-26  Ryuan Choi  <ryuan.choi@samsung.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Add proxy support to GtkLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=58852
-
-        Add SOUP_TYPE_PROXY_RESOLVER_DEFAULT feature or set SOUP_SESSION_PROXY_URI for developers behind proxy.
-
-        * GtkLauncher/main.c:
-        (main):
-
-2011-04-26  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        Choose the compiler based on the Xcode version for Snow Leopard debug builds.
-
-        * DumpRenderTree/mac/Configurations/Base.xcconfig:
-        * DumpRenderTree/mac/Configurations/CompilerVersion.xcconfig: Added.
-        * MiniBrowser/Configurations/Base.xcconfig:
-        * MiniBrowser/Configurations/CompilerVersion.xcconfig: Added.
-        * TestWebKitAPI/Configurations/Base.xcconfig:
-        * TestWebKitAPI/Configurations/CompilerVersion.xcconfig: Added.
-        * WebKitTestRunner/Configurations/Base.xcconfig:
-        * WebKitTestRunner/Configurations/CompilerVersion.xcconfig: Added.
-
-2011-04-26  Finnur Thorarinsson  <finnur.webkit@gmail.com>
-
-        Reviewed by David Levin.
-
-        Adding myself as a Chromium contributors to committers.py.
-
-        https://bugs.webkit.org/show_bug.cgi?id=59444
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-04-26  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        DumpRenderTree/chromium should play nice with strict OwnPtrs
-        https://bugs.webkit.org/show_bug.cgi?id=59458
-
-        All these changes are pretty straight forward.
-
-        * DumpRenderTree/chromium/CppBoundClass.cpp:
-        (GetterPropertyCallback::GetterPropertyCallback):
-        (CppBoundClass::bindGetterCallback):
-        * DumpRenderTree/chromium/CppBoundClass.h:
-        (CppBoundClass::bindProperty):
-        (CppBoundClass::bindFallbackCallback):
-        (CppBoundClass::bindFallbackMethod):
-        * DumpRenderTree/chromium/DRTDevToolsClient.cpp:
-        (DRTDevToolsClient::DRTDevToolsClient):
-        * DumpRenderTree/chromium/TestEventPrinter.cpp:
-        (TestEventPrinter::createDRTPrinter):
-        (TestEventPrinter::createTestShellPrinter):
-        * DumpRenderTree/chromium/TestEventPrinter.h:
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::createMainWindow):
-        (TestShell::createDRTDevToolsClient):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::geolocationClientMock):
-        (WebViewHost::speechInputController):
-        (WebViewHost::deviceOrientationClientMock):
-        (WebViewHost::reset):
-        (WebViewHost::navigate):
-        (WebViewHost::setPendingExtraData):
-        (WebViewHost::canvas):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2011-04-26  Adam Roben  <aroben@apple.com>
-
-        Make DRT/win log loading errors the same way DRT/mac does
-
-        Fixes <http://webkit.org/b/59303> [Windows WebKit1 Tests]
-        http/tests/misc/will-send-request-returns-null-on-redirect.html failing since r84742
-
-        Reviewed by Alexey Proskuryakov.
-
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp:
-        (ResourceLoadDelegate::descriptionSuitableForTestResult): Removed the workaround for
-        <rdar://problem/5064234>, which has long since been fixed, and then made this function match
-        -[NSError(DRTExtras) _drt_descriptionSuitableForTestResult] more closely.
-
-2011-04-26  Dan Bernstein  <mitz@apple.com>
-
-        REGRESSION (84876): build-webkit produces an error message
-        https://bugs.webkit.org/show_bug.cgi?id=59460
-
-        * Scripts/webkitdirs.pm:
-
-2011-04-26  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Fix timestamp comparison in check-for-weak-vtables-and-externals
-        https://bugs.webkit.org/show_bug.cgi?id=59416
-        
-        We should only re-run the check-for-weak-vtables-and-externals script
-        if the executable is more recent than the last run.
-
-        * Scripts/check-for-weak-vtables-and-externals:
-
-2011-04-26  Kristóf Kosztyó  <Kosztyo.Kristof@stud.u-szeged.hu>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt] Implement LayoutTestController::setAutofilled
-        https://bugs.webkit.org/show_bug.cgi?id=59439
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setAutofilled):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2011-04-25  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        Teach build-webkit where newer Xcode versions store the application-wide build settings user default.
-
-        * Scripts/webkitdirs.pm:
-
-2011-04-25  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Leaks Viewer throws "Cannot post cyclic structures" in Safari 5
-        https://bugs.webkit.org/show_bug.cgi?id=56090
-
-        Make LeaksViewer work with versions of browsers that don't support message
-        passing of cyclic structures.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksParser.js:
-        (LeaksParser.this._worker.onmessage):
-        (LeaksParser):
-        (LeaksParser.prototype.addLeaksFile):
-        Use LeaksParserImpl directly if we don't support passing cyclic structures.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksParserImpl.js: Copied from BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksParserWorker.js.
-        (LeaksParserImpl):
-        (LeaksParserImpl.prototype.addLeaksFile):
-        (LeaksParserImpl.prototype._incorporateLeaks):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksParserWorker.js:
-        (onmessage):
-        Factor out LeaksParser implementation into LeaksParserImpl.js.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/Utilities.js:
-        (workersSupportCyclicStructures):
-        Add function to detect if workers support passing cyclic structures.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/index.html:
-        Add LeaksParserImpl.js include.
-
-2011-04-25  Jeff Miller  <jeffm@apple.com>
-
-        Reviewed by Timothy Hatcher.
-
-        Treat strings defined with UI_STRING_LOCALIZE_LATER_KEY() as debugging strings in extract-localizable-strings
-        https://bugs.webkit.org/show_bug.cgi?id=59373
-
-        * Scripts/extract-localizable-strings: Add UI_STRING_LOCALIZE_LATER_KEY() to isDebugMacro var.
-
-2011-04-25  Andrew Scherkus  <scherkus@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Adding a few Chromium contributors to committers.py.
-
-        https://bugs.webkit.org/show_bug.cgi?id=59327
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-04-23  Dominic Cooney  <dominicc@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [V8] Nodes in shadow DOM should not be GCed while their hosts are alive
-        https://bugs.webkit.org/show_bug.cgi?id=59284
-
-        Chromium DRT over-refcounted the NPObject wrappers it used to
-        marshal shadowRoot nodes back to tests (WebBindings::makeNode
-        births NPObjects with referenceCount == 1). This masked the GC bug
-        59284 in tests by making shadowRoot nodes live forever.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::shadowRoot):
-        (LayoutTestController::ensureShadowRoot):
-
-2011-04-23  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fixes. Add new methods to wx LayoutTestController,
-        and update the URL for downloading waf.
-        
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::ensureShadowRoot):
-        (LayoutTestController::removeShadowRoot):
-        * Scripts/webkitdirs.pm:
-
-2011-04-22  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r84627.
-        http://trac.webkit.org/changeset/84627
-        https://bugs.webkit.org/show_bug.cgi?id=59271
-
-        It broke Symbian build (Requested by Ossy on #webkit).
-
-        * Scripts/webkitpy/style/checker.py:
-        * Scripts/webkitpy/style/checker_unittest.py:
-
-2011-04-22  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        rebaseline-chromium-webkit-tests: clean up output
-        https://bugs.webkit.org/show_bug.cgi?id=59240
-
-        This change dramatically changes the output the tool provides
-        by default. The previous output (more or less) is still there
-        in -v / verbose / debug mode, but the default output is
-        way terser and more readable. It mostly says which files are
-        updated, which are duplicates, and which are not found in an
-        archive. Feedback desired :).
-
-        This change also adds a scm.exists() method to the SCM object
-        so that we can cleanly figure out what we're doing while
-        rebaselining.
-
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests_unittest.py:
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-
-2011-04-22  Ilya Sherman  <isherman@chromium.org>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Add Ilya Sherman (isherman@chromium.org) to the list of contributors
-        https://bugs.webkit.org/show_bug.cgi?id=59231
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-04-22  Yuta Kitamura  <yutak@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: Exception raised when stderr contains binary data
-        https://bugs.webkit.org/show_bug.cgi?id=59083
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py:
-        Use write_binary_file() instead of write_text_file().
-
-2011-04-22  Chang Shu  <cshu@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        WebKitTestRunner needs layoutTestController.setFrameFlatteningEnabled
-        https://bugs.webkit.org/show_bug.cgi?id=42536
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::setFrameFlatteningEnabled):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2011-04-22  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        CommitQueue should remember the expected failures from patch to patch
-        https://bugs.webkit.org/show_bug.cgi?id=59253
-
-        Previously, we stored the set of expected failures on the task object,
-        which meant the commit-queue forgot about them after each patch.  This
-        patch moves them to the CommitQueue object so they will have a longer
-        lifetime.
-
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-        * Scripts/webkitpy/tool/bot/patchanalysistask.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-
-2011-04-22  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Brian Weinstein.
-
-        WebKit2: Implement JavaScript unresponsiveness timer/callbacks
-        https://bugs.webkit.org/show_bug.cgi?id=59248
-
-        Stub out shouldInterruptJavaScript callbacks.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * MiniBrowser/win/BrowserView.cpp:
-        (BrowserView::create):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::createOtherPage):
-        (WTR::TestController::initialize):
-
-2011-04-22  Daniel Bates  <dbates@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        webkit-patch land hangs if svn prompts for credentials
-        https://bugs.webkit.org/show_bug.cgi?id=31500
-
-        Make has_authorization_for_realm() return True only if there exists a credentials file
-        that contains either the word "password" or "passtype". We assume that these words don't
-        coincide with the actual credential data (e.g. a person's username is "password").
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-          - Added test cases:
-            test_has_authorization_for_realm_using_credentials_with_passtype(),
-            test_has_authorization_for_realm_using_credentials_with_password(),
-            test_not_have_authorization_for_realm_with_credentials_missing_password_and_passtype()
-          - Renamed test_not_have_authorization_for_realm() to test_not_have_authorization_for_realm_when_missing_credentials_file()
-            to better describe what it's testing.
-          - Repurposed test_has_authorization_for_realm() to take realm and credential data to use
-            and return the result of calling has_authorization_for_realm() so that the caller can
-            assert the result; Renamed to _test_has_authorization_for_realm_using_credentials() to
-            better reflect its new purpose.
-
-2011-04-22  Adam Barth  <abarth@webkit.org>
-
-        Remove double-negative.  (Sorry this was bugging me.)
-
-        * Scripts/webkitpy/tool/bot/commitqueuetask.py:
-
-2011-04-22  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Factor LayoutTestResultsReader out of CommitQueue
-        https://bugs.webkit.org/show_bug.cgi?id=59244
-
-        This code will be shared with the EWS when they start running tests.
-
-        * Scripts/webkitpy/tool/bot/layouttestresultsreader.py: Added.
-        * Scripts/webkitpy/tool/bot/layouttestresultsreader_unittest.py: Added.
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2011-04-22  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        webkit-patch rebaseline is broken
-        https://bugs.webkit.org/show_bug.cgi?id=59207
-
-        My recent changes to how LayoutTestResults.results_from_string
-        uncovered a bug in our use of urllib2.
-        We now are treating the return value from _fetch_results_html()
-        (which returns urllib2.openurl()) as a string.  That's incorrect,
-        the return value is a file-like object (which auto-converts to a
-        string in most cases).
-
-        I've updated our urllib2-using code to correctly call .read() on the
-        resulting object before treating it like a string.
-        Unfortunately there is no easy way to test this mis-understanding
-        of the openurl() semantics.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-
-2011-04-22  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Factor PatchAnalysis task out of CommitQueueTask
-        https://bugs.webkit.org/show_bug.cgi?id=59220
-
-        This is a first step towards teaching the EWS to run tests.
-
-        * Scripts/webkitpy/tool/bot/commitqueuetask.py:
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-        * Scripts/webkitpy/tool/bot/patchanalysistask.py: Added.
-
-2011-04-22  Philippe Normand  <pnormand@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] DRT: implement eventSender.scalePageBy
-        https://bugs.webkit.org/show_bug.cgi?id=59082
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (scalePageByCallback): scalePageBy() support.
-
-2011-04-21  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        LayoutTestResults should know how to handle NRWT json files
-        https://bugs.webkit.org/show_bug.cgi?id=59168
-
-        LayoutTestResults was originally created to be a parallel
-        to existing NRWT architecture for dealing with results files.
-        But then it turns out that NRWT has no such architecture. :(
-        So this patch writes the necessary code to handle reading
-        full_results.json and unexpected_results.json files from
-        NRWT layout-test-results directories.
-
-        LayoutTestResults has thus morphed from being ORWT-only to
-        supporting both ORWT and NRWT.  It's possible at some future
-        point that other pieces of the NRWT architecture will learn
-        how to read JSON files in which case this can go away.
-
-        This is all done for making it possible for the commit-queue
-        to run the tests using NWRT and be able to understand the results
-        (for flaky test reporting, etc.)
-
-        * Scripts/webkitpy/common/net/layouttestresults.py:
-        * Scripts/webkitpy/common/net/layouttestresults_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/common/net/resultsjsonparser.py: Added.
-        * Scripts/webkitpy/common/net/resultsjsonparser_unittest.py: Added.
-
-2011-04-22  Yi Shen  <yi.4.shen@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Upstream Symbian platform plugin
-        https://bugs.webkit.org/show_bug.cgi?id=58435
-
-        Exempting directory WebKit/qt/symbian/platformplugin from style guide.
-
-        * Scripts/webkitpy/style/checker.py:
-        * Scripts/webkitpy/style/checker_unittest.py:
-
-2011-04-22  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt][WK2] Qt should use the mac-wk2 skipped list
-        https://bugs.webkit.org/show_bug.cgi?id=58536
-
-        * Scripts/old-run-webkit-tests:
-
-2011-04-21  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        Remove find-mismatched-layout-test-results since it's not needed in a
-        checksum free world.
-        https://bugs.webkit.org/show_bug.cgi?id=59156
-
-        * Scripts/find-mismatched-layout-test-results: Removed.
-
-2011-04-21  Brent Fulgham  <bfulgham@webkit.org>
-
-        Reviewed by Martin Robinson.
-
-        Teach build-webkit and update-webkit that the WinCairo port does
-        not need the non-redistributable WebKitSupportLibraries.zip file.
-        Also append the _Cairo_CFLite label to the build target for the
-        default (no argument) case when building with '--wincairo'
-    
-        https://bugs.webkit.org/show_bug.cgi?id=58801
-
-        * Scripts/build-webkit: Don't die if WebKitSupportLibraries.zip
-          doesn't exist.
-        * Scripts/webkitdirs.pm: Append '_Cairo_CFLite' to the default
-          'Release' build target when passed the '--wincairo' flag.
-        * Scripts/update-webkit: Don't die if WebKitSupportLibraries.zip
-          doesn't exist.
-
-2011-04-21  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        new-run-webkit-tests: obsolete old code, part 5: rename message_broker2 to message_broker
-        https://bugs.webkit.org/show_bug.cgi?id=58758
-
-        Since worker_mixin is now only used by worker, there's no point
-        in having it split across two files.
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker.py:
-        * Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker.py: Added
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker2.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker_unittest.py: * Added
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker2_unittest.py: Removed.
-
-2011-04-21  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: obsolete old code, part 4: merge worker_mixin into worker
-        https://bugs.webkit.org/show_bug.cgi?id=58756
-
-        Since worker_mixin is now only used by worker, there's no point
-        in having it split across two files.
-
-        * Scripts/webkitpy/layout_tests/layout_package/worker.py:
-        * Scripts/webkitpy/layout_tests/layout_package/worker_mixin.py: Removed.
-
-2011-04-21  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: obsolete old code, part 3 - rename test_runner to manager
-        https://bugs.webkit.org/show_bug.cgi?id=58754
-
-        test_runner hasn't been a great name for some time, since all of
-        the test running is actually done in worker and
-        single_test_runner. Rename to manager to match the terminology
-        elsewhere.
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager.py: Added.
-        * Scripts/webkitpy/layout_tests/layout_package/manager_unittest.py: Added.
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner_unittest.py: Removed.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-04-21  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: obsolete old threading code, part 2
-        https://bugs.webkit.org/show_bug.cgi?id=58753
-
-        This merges the test_runner2 code back into test_runner since
-        there's only a single type of test runner now.
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner2.py: Removed.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-04-21  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Add a feature define to allow <details> and <summary> to be disabled
-        https://bugs.webkit.org/show_bug.cgi?id=59118
-        <rdar://problem/9257045>
-
-        * Scripts/build-webkit:
-        * Tools.pro:
-
-2011-04-21  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        webkit-patch upload should assign the bug to you
-        https://bugs.webkit.org/show_bug.cgi?id=33699
-
-        This patch only re-assigns the bug if it is currently unassigned.  We
-        can be more aggressive in the future if people want us to be more
-        agressive.
-
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/postdiff.py:
-
-2011-04-21  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        move json_results.html over to LayoutTests/fast/harness
-        https://bugs.webkit.org/show_bug.cgi?id=59154
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-
-2011-04-21  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        ValidateChangeLogs doesn't work on SVN
-        https://bugs.webkit.org/show_bug.cgi?id=59115
-
-        svn-create-patch lies about the diff in the working copy by moving
-        ChangeLog entries to the top of the diff.  That's fine on most cases,
-        but causes problems for ValidateChangeLogs, which is trying validate
-        the where the ChangeLog entry appears.
-
-        I haven't added a test for this change because I couldn't figure out
-        how to write one.  The issue is more of an integration issue, which
-        we're not really set up to test in our unit testing framework.  If this
-        patch had worked around the output from svn-create-patch, then I could
-        have tested that we behave correctly on sample svn-create-patch output,
-        but, in this case, I've removed the dependency on svn-create-patch.  I
-        could test that we behave correctly on "svn diff" output, but we
-        already have those tests.
-
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/validatechangelogs.py:
-
-2011-04-21  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        old-run-webkit-tests/new-run-webkit-tests shouldn't read or write .checksum files
-        https://bugs.webkit.org/show_bug.cgi?id=58402
-
-        * Scripts/old-run-webkit-tests: Don't read or write .checksum files.
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py: Don't write .checksum files.
-        * Scripts/webkitpy/layout_tests/port/base.py: Don't read .checksum files.
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/test.py: Update passing pngs to include a checksum.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-04-21  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        final tests for results.html file
-        https://bugs.webkit.org/show_bug.cgi?id=59150
-
-        This gets us close to 100% code coverage. Once this is
-        checked in, I'll move this file over to LayoutTests/fast/harness
-        and make it a proper layout test.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results.html:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_test.js:
-
-2011-04-21  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        only expand visible rows
-        https://bugs.webkit.org/show_bug.cgi?id=59130
-
-        For the chromium port, where there are many expected failures,
-        expanding all of them is quite slow. Only expand the visible ones.
-        This makes the default case. Also, make the expanding async to
-        avoid totally killing the process.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results.html:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_test.js:
-
-2011-04-21  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] DRT: implement eventSender.scalePageBy
-        https://bugs.webkit.org/show_bug.cgi?id=59082
-
-        Rolling out r84507 since it broke many GTK+ tests.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-
-2011-04-21  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Simon Fraser.
-
-        Add way to garbage collect between each test when running layout tests
-        https://bugs.webkit.org/show_bug.cgi?id=59126
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (initializeGlobalsFromCommandLineOptions):
-        (runTest):
-        * Scripts/old-run-webkit-tests:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::didReceiveMessage):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::TestController):
-        (WTR::TestController::initialize):
-        (WTR::TestController::resetStateToConsistentValues):
-        * WebKitTestRunner/TestController.h:
-
-2011-04-21  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        fix another innocuous JS error in expand/collapseAllExpectations
-        https://bugs.webkit.org/show_bug.cgi?id=59122
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results.html:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_test.js:
-
-2011-04-20  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        put unexpected passes into their own table
-        https://bugs.webkit.org/show_bug.cgi?id=59016
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results.html:
-
-2011-04-20  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        initial set of tests for new results.html file
-        https://bugs.webkit.org/show_bug.cgi?id=59031
-
-        Also, fix the bugs (mostly innocuous JS errors) the tests found.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results.html:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_test.js: Added.
-
-2011-04-21  Philippe Normand  <pnormand@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] missing LayoutTestController::callShouldCloseOnWebView()
-        https://bugs.webkit.org/show_bug.cgi?id=59086
-
-        callShouldCloseOnWebView() implementation.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::callShouldCloseOnWebView):
-
-2011-04-21  Philippe Normand  <pnormand@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] DRT: implement eventSender.scalePageBy
-        https://bugs.webkit.org/show_bug.cgi?id=59082
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (scalePageByCallback): scalePageBy() support.
-
-2011-04-20  Dominic Cooney  <dominicc@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        layoutTestController can create and destroy shadow DOM
-        https://bugs.webkit.org/show_bug.cgi?id=59058
-
-        Chromium, Mac, GTK and Qt DRT; and WK2 test runner.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (ensureShadowRootCallback):
-        (removeShadowRootCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::ensureShadowRoot):
-        (LayoutTestController::removeShadowRoot):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::ensureShadowRoot):
-        (LayoutTestController::removeShadowRoot):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::shadowRoot):
-        (LayoutTestController::ensureShadowRoot):
-        (LayoutTestController::removeShadowRoot):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::ensureShadowRoot):
-        (LayoutTestController::removeShadowRoot):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::ensureShadowRoot):
-        (LayoutTestController::removeShadowRoot):
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::shadowRoot):
-        (WTR::LayoutTestController::ensureShadowRoot):
-        (WTR::LayoutTestController::removeShadowRoot):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2011-04-20  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        new-run-webkit-tests: handle ctrl-c more cleanly
-        https://bugs.webkit.org/show_bug.cgi?id=58849
-
-        * Scripts/new-run-webkit-tests:
-        * Scripts/webkitpy/layout_tests/layout_package/worker.py:
-
-2011-04-20  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r84431.
-        http://trac.webkit.org/changeset/84431
-        https://bugs.webkit.org/show_bug.cgi?id=59061
-
-        Breaks for folks who don't have editbugs (Requested by abarth
-        on #webkit).
-
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/postdiff.py:
-
-2011-04-20  Leo Yang  <leo.yang@torchmobile.com.cn>
-
-        Unreviewed.
-
-        Adding myself to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-04-20  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        webkit-patch upload should assign the bug to you
-        https://bugs.webkit.org/show_bug.cgi?id=33699
-
-        This patch only re-assigns the bug if it is currently unassigned.  We
-        can be more aggressive in the future if people want us to be more
-        agressive.
-
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/postdiff.py:
-
-2011-04-20 Peter Gal <galpeter@inf.u-szeged.hu>
-
-        Reviewed by Csaba Osztrogonác.
-
-        Modify builder.html template to allow easy access
-        to list more builds on the builder's page.
-
-        https://bugs.webkit.org/show_bug.cgi?id=59008
-
-        * BuildSlaveSupport/build.webkit.org-config/templates/builder.html:
-
-2011-04-20  Peter Gal  <galpeter@inf.u-szeged.hu>
-
-        Reviewed by Csaba Osztrogonác.
-
-        Add the default template for builder page.
-
-        https://bugs.webkit.org/show_bug.cgi?id=59008
-
-        * BuildSlaveSupport/build.webkit.org-config/templates/builder.html: Added.
-
-2011-04-20  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        move page generation into a single function
-        https://bugs.webkit.org/show_bug.cgi?id=59027
-
-        Now executing the script doesn't create any state. We should then
-        be able to write tests for this by setting custom results data.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results.html:
-
-2011-04-20  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        move global state into a shared object
-        https://bugs.webkit.org/show_bug.cgi?id=59023
-
-        This makes the code more testable.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results.html:
-
-2011-04-20  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        move global state into a shared object
-        https://bugs.webkit.org/show_bug.cgi?id=59023
-
-        This makes the code more testable.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results.html:
-
-2011-04-20  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        add expandAll/collapseAll links
-        https://bugs.webkit.org/show_bug.cgi?id=59011
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results.html:
-
-2011-04-20  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fixes for wx 2.9.1, Cocoa and 64-bit builds.
-
-        * Scripts/webkitdirs.pm:
-        * wx/build/build_utils.py:
-        * wx/build/settings.py:
-        * wx/install-unix-extras:
-        * wx/packaging/build-mac-installer.py:
-        * wx/packaging/build-win-installer.py:
-
-2011-04-20  Adam Roben  <aroben@apple.com>
-
-        Replace old-run-webkit-tests's win-7 platform with win-7sp0
-
-        It was an error that we had a win-7 platform to begin with. Windows 7 was the most recent
-        version of Windows we cared about, so its results should just go in win. But now that
-        Windows 7 SP1 exists (and has different results for some tests), we need a place to store
-        results for Windows 7 without SP1 (and older versions of Windows).
-
-        Part of <http://webkit.org/b/56617> Several tests fail on Windows 7 SP1 due to font
-        differences from Windows 7 "SP0"
-
-        Reviewed by David Kilzer.
-
-        * Scripts/old-run-webkit-tests: Replaced win-7 with win-7sp0. Newer versions of Windows 7
-        will just use "win".
-
-        * Scripts/webkitdirs.pm:
-        (isWindows7SP0): Added. Replaces isWindows7, because that function had no remaining callers.
-
-2011-04-20  Adam Roben  <aroben@apple.com>
-
-        Teach webkitdirs::winVersion about build numbers
-
-        The build number isn't currently used, but soon will be.
-
-        As a bonus, winVersion now works on non-Cygwin variants of Perl!
-
-        Fixes <http://webkit.org/b/58991> Need a way to distinguish between Windows 7 and Windows 7
-        SP1
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/webkitdirs.pm:
-        (isAnyWindows): Added. Returns true if we're running on any Windows-ish Perl.
-        (determineWinVersion): Use `cmd /c ver` to get the version number, including the build
-        number. Parse the version number into a hash, similar to how osXVersion() works.
-
-        (isWindows7):
-        (isWindowsVista):
-        (isWindowsXP):
-        Updated for changes to winVersion().
-
-2011-04-20  W. James MacLean  <wjmaclean@chromium.org>
-
-        Reviewed by Kenneth Russell.
-
-        Add support for composite-to-texture to DumpRenderTree.
-        https://bugs.webkit.org/show_bug.cgi?id=58675
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::resetWebSettings):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::setCompositeToTexture):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-
-2011-04-19  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        The commit-queue is confused when non-layout tests fail
-        https://bugs.webkit.org/show_bug.cgi?id=58955
-
-        As seen in http://queues.webkit.org/results/8474435
-
-        It fails to create an archive of the layout test results
-        and then throws an exception.
-
-        I've fixed this by making it catch the exception as well
-        as made it so it never calls that path in the common case.
-
-        I've updated MockFileSystem to understand rmtree's affect on
-        directories as well as files.
-
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        * Scripts/webkitpy/common/system/workspace.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-
-2011-04-19  Ojan Vafai  <ojan@chromium.org>
-
-        Fix check for whether a failure is expected to deal with
-        flaky tests and FAIL expectations.
-        * Scripts/webkitpy/layout_tests/layout_package/json_results.html:
-
-2011-04-19  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        don't show missing text results for tests that only dump image results
-        https://bugs.webkit.org/show_bug.cgi?id=58931
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results.html:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-
-2011-04-19  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        don't show failures table if there are only new tests
-        https://bugs.webkit.org/show_bug.cgi?id=58929
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results.html:
-
-2011-04-19  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        don't show failures table if there are only new tests
-        https://bugs.webkit.org/show_bug.cgi?id=58929
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results.html:
-
-2011-04-19  Ojan Vafai  <ojan@chromium.org>
-
-        Fix unittest failures from http://trac.webkit.org/changeset/84294.
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner_unittest.py:
-
-2011-04-18  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        switch new-run-webkit-tests to using the new results file
-        https://bugs.webkit.org/show_bug.cgi?id=58861
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-
-2011-04-19  Renata Hodovan  <reni@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Move the alignment related macros from Vector.h to new Alignment.h.
-        https://bugs.webkit.org/show_bug.cgi?id=56000
-
-        Adding the new file to the forwarding headers of Tools.
-
-        * DumpRenderTree/ForwardingHeaders/wtf/Alignment.h: Added.
-
-2011-04-19  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix for Win / wx 2.9 wxPython installation.
-
-        * wx/packaging/build-win-installer.py:
-        * wx/packaging/wxWebKitInstaller.iss.in:
-
-2011-04-19  Adam Roben  <aroben@apple.com>
-
-        Skip another accelerated-compositing-sensitive test when accelerated compositing is disabled
-
-        * Scripts/old-run-webkit-tests: Skip media/controls-without-preload.html on Windows when
-        accelerated compositing is disabled.
-
-2011-04-19  Ojan Vafai  <ojan@chromium.org>
-
-        Remove accidentally committed debug code.
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-
-2011-04-19  Brent Fulgham  <bfulgham@webkit.org>
-
-        Unreviewed build correction.
-
-        Avoid duplicate stub implementation of test routine
-        for WinCairo build.
-
-        * WebKitTestRunner/win/TestInvocationWin.cpp: Exclude
-        WinCairo from using this stub.
-
-2011-04-18  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        make results file work with audio and reftests
-        https://bugs.webkit.org/show_bug.cgi?id=58860
-
-        Also fix bug with timeout tests and store a bit in the JSON
-        for new image tests instead of loading the image result to check if it's there.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results.html:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-
-2011-04-19  Jer Noble  <jer.noble@apple.com>
-
-        Reviewed by Adam Roben.
-
-        REGRESSION (r84206): 50 tests failing on SnowLeopard Intel Release (WebKit2 Tests) due to extra "supportsFullScreen() == true" output
-        https://bugs.webkit.org/show_bug.cgi?id=58890
-
-        Add a layoutTestController flag which controls when full screen callbacks are written to stdout.
-        Defaults to false.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl: Added dumpFullScreenCallbacks().
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::supportsFullScreen): Only write to stdout if shouldDumpFullScreenCallbacks is set.
-        (WTR::InjectedBundlePage::enterFullScreenForElement): Ditto.
-        (WTR::InjectedBundlePage::exitFullScreenForElement): Ditto.
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::LayoutTestController): Initialize new ivar.
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (WTR::LayoutTestController::dumpFullScreenCallbacks): Added.
-        (WTR::LayoutTestController::shouldDumpFullScreenCallbacks): Added.
-
-2011-04-19  Kristóf Kosztyó  <Kosztyo.Kristof@stud.u-szeged.hu>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] fast/xmlhttprequest/xmlhttprequest-nonexistent-file.html fails (DRT sideeffect)
-        https://bugs.webkit.org/show_bug.cgi?id=35086
-
-        fast/xmlhttprequest/xmlhttprequest-no-file-access.html caused
-        a DRT sideeffect problem, because the resetSettings didn't set
-        the default value of LocalContentCanAccessFileUrls.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::resetSettings):
-
-2011-04-18  Zan Dobersek  <zandobersek@gmail.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Need support for dumping focus rectangles in pixel results
-        https://bugs.webkit.org/show_bug.cgi?id=53647
-
-        Dump the selection rect if it has been requested.
-
-        * DumpRenderTree/gtk/PixelDumpSupportGtk.cpp:
-        (createBitmapContextFromWebView):
-
-2011-04-18  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        test-webkitpy should run the ActiveWorkItems tests
-        https://bugs.webkit.org/show_bug.cgi?id=58859
-
-        Also make the unit tests pass. :)
-
-        * QueueStatusServer/model/activeworkitems.py:
-        * QueueStatusServer/model/queue.py:
-        * QueueStatusServer/model/workitems.py:
-
-2011-04-18  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        queues.webkit.org should show trailing-days pass counts for queues
-        https://bugs.webkit.org/show_bug.cgi?id=58812
-
-        This lets us see if each bot is pulling its own weight or not.
-        Before I wrote this patch our suspicious was that one of the
-        cq bots was doing most of the work.  Turns out they're actually
-        pretty even in their recent pass counts.
-
-        * QueueStatusServer/handlers/queuestatus.py:
-        * QueueStatusServer/index.yaml:
-        * QueueStatusServer/templates/queuestatus.html:
-
-2011-04-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        new-run-webkit-tests: obsolete old threading code, part 1
-        https://bugs.webkit.org/show_bug.cgi?id=58752
-
-        This patch removes support for the 'old-inline' and
-        'old-threads' worker models, and deletes the corresponding code.
-        Now that the new code is stable, this stuff is no longer
-        necessary.
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/message_broker_unittest.py: Removed.
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-04-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        new-run-webkit-tests: add an --additional-drt-flag option
-        https://bugs.webkit.org/show_bug.cgi?id=58680
-
-        NRWT has a bunch of command line flags that exist to pass
-        custom flags to DRT, especially on chromium. It would be nice
-        if there was a generic mechanism to pass through flags so we
-        didn't have all the custom ones.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-04-05  Jer Noble  <jer.noble@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        WebKit2: WKTR should support WebKit2 full screen APIs
-        https://bugs.webkit.org/show_bug.cgi?id=56318
-
-        Respond to enterFullScreenForElement() and exitFullScreenForElement(), allowing 
-        WKTR to test the LayoutTest/fullscreen/ tests.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage): Add support for WKBundlePageFullScreenClient.
-        (WTR::InjectedBundlePage::supportsFullScreen): Added.
-        (WTR::InjectedBundlePage::enterFullScreenForElement): Added.
-        (WTR::InjectedBundlePage::exitFullScreenForElement): Added.
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues): Enable the full screen preference.
-
-2011-04-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: remove chromium-specific relpath hack for --results-directory
-        https://bugs.webkit.org/show_bug.cgi?id=58388
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2011-04-18  Evan Martin  <evan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        [chromium] expose title direction to webkit client
-        https://bugs.webkit.org/show_bug.cgi?id=58823
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::reset):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController::setTitleTextDirection):
-        Add member and setter to let us stash the title direction at load time.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::didReceiveTitle):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        Adapt to new API; push the title into layoutTestController when we
-        receive it.
-
-2011-04-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed.
-
-        Re-land r84112. It was rolled out in r84127 but it didn't need
-        to be. Only r84111 actually broke things.
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-04-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: don't run more processes than necessary
-        https://bugs.webkit.org/show_bug.cgi?id=58751
-
-        Previously NRWT would start up 1 process for each processor on
-        the machine by default, which was a waste if we were only
-        running a few shards of tests.
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner2.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-04-18  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        include links to actual.png files for new pixel tests
-        https://bugs.webkit.org/show_bug.cgi?id=58831
-
-        Load image elements to confirm whether the files exist.
-        Image elements will load without being appended to the DOM.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results.html:
-
-2011-04-18  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        add a zoomed view for pixel results to the new results html file
-        https://bugs.webkit.org/show_bug.cgi?id=58827
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results.html:
-
-2011-04-18  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        add labels to results html page
-        https://bugs.webkit.org/show_bug.cgi?id=58803
-
-        -fix iframe size to be the size of the png results
-        -fix a bunch of aesthetic nits
-        -fix some incorrectly styled code
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results.html:
-
-2011-04-18  Chang Shu  <cshu@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        WebKitTestRunner needs layoutTestController.pathToLocalResource
-        https://bugs.webkit.org/show_bug.cgi?id=42541
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        * WebKitTestRunner/InjectedBundle/mac/LayoutTestControllerMac.mm:
-        (WTR::LayoutTestController::pathToLocalResource):
-        * WebKitTestRunner/InjectedBundle/qt/LayoutTestControllerQt.cpp:
-        (WTR::LayoutTestController::pathToLocalResource):
-        * WebKitTestRunner/InjectedBundle/win/LayoutTestControllerWin.cpp:
-        (WTR::LayoutTestController::pathToLocalResource):
-
-2011-04-18  Timothy Hatcher  <timothy@apple.com>
-
-        Make update-webkit-localizable-strings put WebKit/win strings in WebCore
-        now that all localized strings in WebKit/win use WEB_UI_STRING.
-
-        https://webkit.org/b/58747
-
-        Reviewed by Dan Bernstein.
-
-        * Scripts/update-webkit-localizable-strings: Remove the code that updated WebKit/win differently.
-
-2011-04-18  Patrick Gansterer  <paroga@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        [WIN] Use WCHAR instead of TCHAR
-        https://bugs.webkit.org/show_bug.cgi?id=58755
-
-        We always use the UNICODE versions of windows functions, so
-        the usage of TCHAR makes no sense and mixing them is bad style.
-
-        * WinLauncher/PrintWebUIDelegate.cpp:
-          Also fix various style issues (including indentation and removal of ugly C-casts).
-        * WinLauncher/WinLauncher.cpp:
-
-2011-04-18  Dominic Cooney  <dominicc@chromium.org>
-
-        Reviewed by Andreas Kling.
-
-        Add layoutTestController.shadowRoot to Qt DRT.
-        https://bugs.webkit.org/show_bug.cgi?id=58759
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::shadowRoot): Added.
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2011-04-18  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r84111.
-        http://trac.webkit.org/changeset/84111
-        https://bugs.webkit.org/show_bug.cgi?id=58771
-
-        Chromium linux layout tests are broken. (Requested by loislo2
-        on #webkit).
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py:
-
-2011-04-18  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r84112.
-        http://trac.webkit.org/changeset/84112
-        https://bugs.webkit.org/show_bug.cgi?id=58770
-
-        Chromium linux layout tests are broken. (Requested by loislo2
-        on #webkit).
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-04-17  Daniel Bates  <dbates@webkit.org>
-
-        Reviewed by Eric Seidel and Adam Barth.
-
-        webkit-patch land hangs if svn prompts for credentials
-        https://bugs.webkit.org/show_bug.cgi?id=31500
-
-        Prompt for username and password when using git-svn and there aren't cached SVN credentials.
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-          - Added mixin class SVNRepository and made both class SVN and Git inherit from it.
-          - Moved SVN.has_authorization_for_realm() to class SVNRepository and removed default value
-            for argument realm; modified call sites as needed.
-          - Modified AuthenticationError constructor to take optional prompt_for_password argument.
-          - Modified {SCM, SVN, Git}.commit_with_message() to take optional password argument.
-          - Modified Git._commit_on_branch() to take optional username and password argument.
-          - Modified Git.push_local_commits_to_server() to take optional username and password
-            argument and to call has_authorization_for_realm().
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-          - Modified SVNTest.test_commit_without_authorization() to take dummy realm argument.
-          - Modified SVNTest.test_not_have_authorization_for_realm() to pass realm argument to
-            SVN.has_authorization_for_realm().
-        * Scripts/webkitpy/common/net/credentials.py:
-          - Modified Credentials.read_credentials() to call User.prompt_password() instead
-            of using getpass.getpass() directly.
-        * Scripts/webkitpy/common/system/user.py:
-          - Added User.prompt_password().
-        * Scripts/webkitpy/tool/steps/commit.py:
-          - Modified Commit.run() to prompt for a password if needed.
-
-2011-04-17  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: save stderr into the layout-test-results dir
-        https://bugs.webkit.org/show_bug.cgi?id=58690
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-04-17  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: read stderr from chromium DRT separately
-        https://bugs.webkit.org/show_bug.cgi?id=58708
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py:
-
-2011-04-17  Patrick Gansterer  <paroga@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Rename PLATFORM(CA) to USE(CA)
-        https://bugs.webkit.org/show_bug.cgi?id=58742
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-
-2011-04-17  Patrick Gansterer  <paroga@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Rename PLATFORM(CG) to USE(CG)
-        https://bugs.webkit.org/show_bug.cgi?id=58729
-
-        * DumpRenderTree/PixelDumpSupport.cpp:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::paintRect):
-        * DumpRenderTree/config.h:
-        * DumpRenderTree/win/PixelDumpSupportWin.cpp:
-        (createBitmapContextFromWebView):
-        * TestWebKitAPI/PlatformWebView.h:
-        * WebKitTestRunner/config.h:
-        * WebKitTestRunner/win/TestInvocationWin.cpp:
-
-2011-04-16  Patrick Gansterer  <paroga@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Rename PLATFORM(CAIRO) to USE(CAIRO)
-        https://bugs.webkit.org/show_bug.cgi?id=55192
-
-        * DumpRenderTree/PixelDumpSupport.cpp:
-        * DumpRenderTree/config.h:
-        * DumpRenderTree/win/PixelDumpSupportWin.cpp:
-        (createBitmapContextFromWebView):
-        * WebKitTestRunner/config.h:
-
-2011-04-16  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        show diffs+test inline in the results page
-        https://bugs.webkit.org/show_bug.cgi?id=58723
-        
-        Put each row in it's own tbody and sort based on tbodies. That way
-        we can append the results to the tbody inline as another table row.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results.html:
-
-2011-04-16  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        handle new tests in the new results html file
-        https://bugs.webkit.org/show_bug.cgi?id=58715
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results.html:
-
-2011-04-15  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        old-run-webkit-tests: save the list of tests actually run to a file
-        https://bugs.webkit.org/show_bug.cgi?id=58692
-
-        * Scripts/old-run-webkit-tests:
-
-2011-04-15  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        fix MockFileSystem.abspath() on windows
-        https://bugs.webkit.org/show_bug.cgi?id=58713
-
-        The existing code was borked on Windows if a path was passed
-        in using a drive letter (e.g., "d:\foo.txt"), and would go
-        into an infinite recursive loop. While win paths shouldn't
-        normally be passed into the mock filesystem, this just
-        bulletproofs things a bit (note that "/foo.txt" is considered
-        an absolute path on windows python as well.
-
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-
-2011-04-15  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        show stderr files and httpd log files
-        https://bugs.webkit.org/show_bug.cgi?id=58714
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results.html:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-
-2011-04-15  Shishir Agrawal  <shishir@chromium.org>
-
-        Reviewed by James Robinson.
-
-        Add a flag to guard Page Visibility API changes.
-        https://bugs.webkit.org/show_bug.cgi?id=58464
-
-        * Scripts/build-webkit:
-
-2011-04-15  Chang Shu  <cshu@webkit.org>
-
-        Reviewed by Alexey Proskuryakov.
-
-        When a message with url embedded is added to console, the "file:" scheme
-        and path should be stripped.
-        https://bugs.webkit.org/show_bug.cgi?id=58665
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::lastFileURLPathComponent):
-        (WTR::InjectedBundlePage::willAddMessageToConsole):
-
-2011-04-15  Jeff Miller  <jeffm@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Add takeFocus callback to WKPageUIClient
-        https://bugs.webkit.org/show_bug.cgi?id=58686
-
-        Add empty WKPageUIClient entries for the takeFocus callback in the MiniBrowser and WebKitTestRunner.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]): Added empty takeFocus entry.
-        * MiniBrowser/win/BrowserView.cpp:
-        (BrowserView::create): Added empty takeFocus entry.
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::createOtherPage): Added empty takeFocus entry.
-        (WTR::TestController::initialize): Added empty takeFocus entry.
-
-2011-04-15  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        only show pretty-diff/wdiff if they were generated
-        https://bugs.webkit.org/show_bug.cgi?id=58682
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results.html:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-
-2011-04-15  Andreas Kling  <kling@webkit.org>
-
-        Reviewed by Antonio Gomes.
-
-        [Qt] DRT: Default custom policy delegate decision should be Ignore.
-
-        If layoutTestController.setCustomPolicyDelegate() is called with only
-        one argument, the second ("permissive") should default to false.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2011-04-15  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        fix path to layout test in new results file
-        https://bugs.webkit.org/show_bug.cgi?id=58618
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results.html:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-
-2011-04-15  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        fix sorting in new results file
-        https://bugs.webkit.org/show_bug.cgi?id=58616
-
-        -Fix the custom sort to return -1, 0, 1 instead of true/false.
-        -Secondary sort by test name when sort values are equal.
-        -Sort by test name by default.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results.html:
-
-2011-04-15  Dmitry Lomov  <dslomov@google.com>
-
-        Reviewed by David Levin.
-
-        check-webkit-style shouldn't complain about not including a primary header file 
-        if none exists
-        https://bugs.webkit.org/show_bug.cgi?id=39514
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-
-2011-04-15  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Mihai Parparita.
-
-        queues.webkit.org should display when a bot last rebooted
-        https://bugs.webkit.org/show_bug.cgi?id=58562
-
-        There is more repeated code here than I would like.  I fear
-        my django-fu isn't quite up to snuff.
-
-        * QueueStatusServer/handlers/queuestatus.py:
-        * QueueStatusServer/templates/queuestatus.html:
-
-2011-04-14  Alok Priyadarshi  <alokp@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Remove dependency on chromium skia::PlatformCanvas
-        https://bugs.webkit.org/show_bug.cgi?id=57563
-        
-        Fixed compile error on Mac when using Core Graphics.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::paintRect):
-
-2011-04-14  Alok Priyadarshi  <alokp@chromium.org>
-
-        Reviewed by James Robinson.
-
-        Remove dependency on chromium skia::PlatformCanvas
-        https://bugs.webkit.org/show_bug.cgi?id=57563
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (makeCanvasOpaque):
-        (TestShell::dumpImage):
-        * DumpRenderTree/chromium/TestShell.h:
-        * DumpRenderTree/chromium/WebThemeControlDRTWin.cpp:
-        (WebThemeControlDRTWin::WebThemeControlDRTWin):
-        (WebThemeControlDRTWin::draw):
-        (WebThemeControlDRTWin::drawTextField):
-        (WebThemeControlDRTWin::drawProgressBar):
-        * DumpRenderTree/chromium/WebThemeControlDRTWin.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::canvas):
-        * DumpRenderTree/chromium/WebViewHost.h:
-
-2011-04-14  Keith Kyzivat  <keith.kyzivat@nokia.com>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt] Add -maximize flag to QtTestBrowser and MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=58007
-
-        Adds flag to start the test browsers maximized.
-        Symbian started maximized on QtTestBrowser - made MiniBrowser follow
-        suit.
-        Also fixes some ToggleFullScreen issues so that prior window state is
-        restored.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::toggleFullScreenMode):
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::handleUserOptions):
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-        (WindowOptions::WindowOptions):
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::init):
-        (LauncherWindow::toggleFullScreenMode):
-        * QtTestBrowser/launcherwindow.h:
-        (WindowOptions::WindowOptions):
-        * QtTestBrowser/main.cpp:
-        (LauncherApplication::handleUserOptions):
-
-2011-04-14  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        add checkbox to only show unexpected results to new results file
-        https://bugs.webkit.org/show_bug.cgi?id=58606
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results.html:
-
-2011-04-13  Brent Fulgham  <bfulgham@webkit.org>
-
-        Reviewed by Martin Robinson.
-
-        [WinCairo] Implement ImageDiff Logic.
-        http://bugs.webkit.org/show_bug.cgi?id=58486
-
-        * DumpRenderTree/win/ImageDiffCairo.cpp: Added.
-        (strtof):
-        (readFromData):
-        (createImageFromStdin):
-        (releaseMallocBuffer):
-        (createDifferenceImage):
-        (imageHasAlpha):
-        (writeToData):
-        (main):
-        * DumpRenderTree/win/ImageDiff.vcproj: Updated for new
-          ImageDiffCairo.cpp (excluding from Apple builds).
-        * DumpRenderTree/win/ImageDiffDebugCairoCFLite.vsprops: Use
-          new ImageDiffWinCairoCommon.vsprops file.
-        * DumpRenderTree/win/ImageDiffReleaseCairoCFLite.vsprops: Use
-          new ImageDiffWinCairoCommon.vsprops file.
-        * DumpRenderTree/win/ImageDiffWinCairoCommon.vsprops: Added.
-        * Scripts/old-run-webkit-tests: Make sure proper executable
-          is built and executed for WinCairo port.
-
-2011-04-14  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        only show expected failure type for ports that use an expectations file
-        https://bugs.webkit.org/show_bug.cgi?id=58588
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results.html:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-
-2011-04-14  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue fails to catch IOError when results.html is missing
-        https://bugs.webkit.org/show_bug.cgi?id=58589
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2011-04-14  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix for Mac installation script.
-
-        * wx/packaging/build-mac-installer.py:
-
-2011-04-14  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        sort columns in the new json_results.html file
-        https://bugs.webkit.org/show_bug.cgi?id=58581
-
-        Also fix padding on TDs and the path to layout tests.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results.html:
-
-2011-04-14  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        queues.webkit.org should display when a bot last passed a patch
-        https://bugs.webkit.org/show_bug.cgi?id=58546
-
-        I am suspicious that some of our commit-queue instances are never
-        actually passing anything.
-
-        This will let us know if those bots are never passing patches.
-
-        * QueueStatusServer/handlers/queuestatus.py:
-        * QueueStatusServer/index.yaml:
-        * QueueStatusServer/templates/queuestatus.html:
-
-2011-04-14  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Roben.
-
-        REGRESSION (r83764): webkitpy.layout_tests.port.chromium_win_unittest.ChromiumWinTest.test_default_worker_model fails on apple-windows-13
-        https://bugs.webkit.org/show_bug.cgi?id=58545
-
-        Remove platform-specific overrides; the default behavior should
-        be working everywhere now, I think.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-
-2011-04-14  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queues are hitting an exception trying to land when the tree is red
-        https://bugs.webkit.org/show_bug.cgi?id=58558
-
-        Just an un-tested (and thus broken) code path from yesterday's changes.
-
-        * Scripts/webkitpy/common/net/layouttestresults.py:
-        * Scripts/webkitpy/common/net/layouttestresults_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2011-04-14  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fixes for wxMSW and wx 2.9.1.1.
-
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::shadowRoot):
-        * wx/build/wxpresets.py:
-
-2011-04-14  Victoria Kirst  <vrk@google.com>
-
-        Reviewed by James Robinson.
-
-        [chromium] Failing GPU video tests
-        https://bugs.webkit.org/show_bug.cgi?id=57926
-
-        Added/updated GPU directory names for rebaseline tool.
-
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-
-2011-04-13  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Adam Barth.
-
-        Perl unit test removeEOL.pl should print test case name on failure
-        https://bugs.webkit.org/show_bug.cgi?id=58513
-
-        * Scripts/webkitperl/VCSUtils_unittest/removeEOL.pl: Pass $title as
-          second argument of Test::Simple::ok().
-
-2011-04-13  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        gdb-safari should pass arguments to safari.
-        https://bugs.webkit.org/show_bug.cgi?id=58439
-
-        We can do:
-          gdb-safari --debug LayoutTests/.../foo.html
-
-        * Scripts/gdb-safari: Passing @ARGV to Safari via gdb --arg.
-
-2011-04-13  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, build fix.
-        https://bugs.webkit.org/show_bug.cgi?id=52763
-
-        r83799 broke test-webkitpy because it assumed we always have
-        access to a real filesystem (we don't during the unit tests).
-        Stubbing out the copy for now but we might need a better
-        solution at some point.
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-
-2011-04-13  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests --run-singly option is busted
-        https://bugs.webkit.org/show_bug.cgi?id=55909
-
-        Python's broken lexical scoping strikes again :(.
-
-        * Scripts/webkitpy/layout_tests/layout_package/worker_mixin.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-04-13  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        generated unexpected_results.html from unexpected_results.json
-        https://bugs.webkit.org/show_bug.cgi?id=52763
-
-        Eventually, we'll merge this with results.html and have a single richer results page.
-        For now, I just want to get something checked in that we can iterate on.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results.html: Added.
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-
-2011-04-13  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Up the failure limit to allow the commit-queue to actually land when the tree is red
-        https://bugs.webkit.org/show_bug.cgi?id=58499
-
-        This change increases the --exit-after-N-failures limit used by the commit-queue
-        from 1 to 10.  This will cause the code added in bug 58494 to actually get
-        exercised and the queues should start being able to land when the trees are red.
-
-        When testing I found that test_runtests_leopard_commit_queue_hack_command was the
-        only unit test to actually detect this change!  Since we don't actually
-        run on leopard anymore, I removed the hack code and repurposed the test.
-
-        * Scripts/webkitpy/tool/bot/commitqueuetask.py:
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        * Scripts/webkitpy/tool/steps/steps_unittest.py:
-
-2011-04-13  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue should be able to land when tree is red
-        https://bugs.webkit.org/show_bug.cgi?id=58494
-
-        There is some yak hair on my hands, I will admit.
-
-        This change is mostly about adding an ExpectedFailures
-        class to track when the bots are red and we should be
-        ignoring failures when landing from the commit-queue.
-
-        However, to make intelligent decisions about patches we
-        need to know whether the run hit the --exit-after-N-failures limit
-        or not.  Right now that information is not saved off in results.html
-        so we have to pull the information from RunTests.
-
-        I've plumbed the --exit-after-N-failures information into
-        LayoutTestResults for now to make the ExpectedFailures code cleaner.
-
-        As a result of adding all these additional calls to delegate.layout_test_results()
-        I broke some of our flaky test detection tests and had to re-write them
-        to not depend on the number of layout_test_results code.
-
-        At the same time I updated the commit-queue to use the newer filesystem
-        API (to allow us to use MockFileSystem) which required further changes
-        to the layout tests.  Changes were required in either case, since
-        we're now calling layout_test_results() in more cases, which previously
-        would try and hit the disk (until I moved it to use tool.filesystem).
-
-        I should note that *all* of this code is disabled for now, since our
-        --exit-after-N-failures limit is currently 1!  (Thus were always in the
-        case where we can't actually tell if the layout test results are legit.)
-        I will up that limit in a second patch (which may require a couple more unit test tweaks).
-
-        * Scripts/webkitpy/common/net/layouttestresults.py:
-        * Scripts/webkitpy/tool/bot/commitqueuetask.py:
-        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
-        * Scripts/webkitpy/tool/bot/expectedfailures.py: Added.
-        * Scripts/webkitpy/tool/bot/expectedfailures_unittest.py: Added.
-        * Scripts/webkitpy/tool/commands/queues.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        * Scripts/webkitpy/tool/commands/queuestest.py:
-        * Scripts/webkitpy/tool/steps/runtests.py:
-
-2011-04-13  Brent Fulgham  <bfulgham@webkit.org>
-
-        Unreviewed build correction.
-
-        * TestWebKitAPI/PlatformWebView.h: Limit include of
-          <CoreGraphics/CGGeometry> to PLATFORM(CG) users.
-
-2011-04-13  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        [NRWT] Rename --baseline-search-patch to --additional-platform-directory to match ORWT
-        https://bugs.webkit.org/show_bug.cgi?id=58489
-        
-        r83743 added --additional-platform-directory to old-run-webkit-tests,
-        rename the equivalent flag in new-run-webkit-tests to be consistent.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-04-13  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        Rebaseline queue server
-        https://bugs.webkit.org/show_bug.cgi?id=57891
-
-        Adds a simple rebaseline queue server (meant to run at
-        http://rebaseline-queue.appspot.com/). It presents a list of all (NRWT)
-        builders and their failing tests, and allows those tests to be added to
-        a per-builer rebaseline queue.
-
-        A subsequent change will add a mode to NRWT (and/or a wrapper script)
-        for pulling the tests to be rebaselined from the server and running them
-        with --reset-results (the initial use-case is for the GPU hardware bots,
-        which do not have checked-in baselines, therefore there is no need for a
-        check-in step yet).
-
-        * RebaselineQueueServer/app.yaml: Added.
-        * RebaselineQueueServer/handlers/__init__.py: Added.
-        * RebaselineQueueServer/handlers/builderqueue.py: Added.
-        * RebaselineQueueServer/handlers/pages.py: Added.
-        * RebaselineQueueServer/index.yaml: Added.
-        * RebaselineQueueServer/main.py: Added.
-        * RebaselineQueueServer/model/__init__.py: Added.
-        * RebaselineQueueServer/model/queueentry.py: Added.
-        * RebaselineQueueServer/static/builder-frame-empty.html: Added.
-        * RebaselineQueueServer/static/styles.css: Added.
-        * RebaselineQueueServer/templates/builder-picker.html: Added.
-        * RebaselineQueueServer/templates/builder-queue-edit.html: Added.
-        * RebaselineQueueServer/templates/builder-queue-list.html: Added.
-        * RebaselineQueueServer/templates/home.html: Added.
-
-2011-04-13  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        nrwt: enable multiple processes by default on Chromium Win.
-        https://bugs.webkit.org/show_bug.cgi?id=55163
-
-        Re-land r79268; it should be more stable now and will hopefully
-        work.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-
-2011-04-13  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: configure logging in child processes properly
-        https://bugs.webkit.org/show_bug.cgi?id=58296
-
-        Logging propagated properly from manager to worker processes on
-        Unix but not on Windows; this fixes that.
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker.py:
-        * Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker_unittest.py:
-
-2011-04-13  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: suppress extraneous pretty patch warnings
-        https://bugs.webkit.org/show_bug.cgi?id=58295
-
-        NRWT wasn't being careful about when it logged messages from
-        PrettyPatch not being available; it should only log during
-        check_build(), and be silent otherwise. This was causing us to
-        get multiple errors at runtime, which was confusing.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2011-04-13  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Jian Li.
-
-        add chromium-linux-x86_64 to rebaseline-chromium-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=58461
-
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-
-2011-04-13  Tony Chang  <tony@chromium.org>
-
-        Unreviewed, fix NRWT.  Stack:
-
-            return super(ChromiumPort, self).results_directory(self)
-        TypeError: results_directory() takes exactly 1 argument (2 given)
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2011-04-13  Adam Roben  <aroben@apple.com>
-
-        Teach ORWT about extra platform-specific directories to be searched before the default ones
-
-        Fixes <http://webkit.org/b/58446> ORWT needs a way to look in a user-specified directory for
-        platform-specific results
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/old-run-webkit-tests:
-        (top-level): Added @additionalPlatformDirectories and hooked up
-        --additional-platform-directories to populate it.
-        (buildPlatformResultHierarchy): Prepend the additional platform directories to the default
-        list (after filtering out any of the additional directories that don't exist).
-
-2011-04-13  Lucas Forschler  <lforschler@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Add the /T command to taskkill.exe.
-        This will kill spawned child processes.
-        
-        * BuildSlaveSupport/win/kill-old-processes:
-
-2011-04-13  Lucas Forschler  <lforschler@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Sort kill list alphabeticaly.
-        Fixed capitalization on VcBuildHelper.  
-
-        * BuildSlaveSupport/win/kill-old-processes:
-
-2011-04-13  Lucas Forschler  <lforschler@apple.com>
-
-        Reviewed by Adam Roben.
-
-        https://bugs.webkit.org/show_bug.cgi?id=58384
-        Update kill-old-processes to include a few new ones.
-        
-        * BuildSlaveSupport/win/kill-old-processes:
-
-2011-04-13  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] PluginPackage should check whether a plugin mixes GTK+ 2 and 3 symbols itself
-        https://bugs.webkit.org/show_bug.cgi?id=58297
-
-        Do not disable flash specifically when built with GTK+ 3 -
-        PluginPackage should do the right thing while loading plugins.
-
-        * GtkLauncher/main.c:
-        (main):
-
-2011-04-12  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [Chromium] Add WebSettings::setValidationMessageTimerMagnification()
-        https://bugs.webkit.org/show_bug.cgi?id=57426
-
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::applyTo): Disable the validation message timer.
-
-2011-04-12  James Kozianski  <koz@chromium.org>
-
-        Unreviewed.
-
-        Adding myself to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-04-12  Brent Fulgham  <bfulgham@webkit.org>
-
-        Unreviewed build correction for WinCairo bot after r83639.
-        https://bugs.webkit.org/show_bug.cgi?id=51790
-
-        Correct typo for the new "update-webkit-wincairo-libs" script.
-
-        * Scripts/build-webkit: Incorrectly calling the
-          update-webkit-cairo-libs which does not exist.
-
-2011-04-12  Alice Liu  <alice.liu@apple.com>
-
-        Reviewed by Jon Honeycutt.
-
-        A change that should have been part of http://trac.webkit.org/changeset/83628
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues): Setting should be off for most tests. Reset to false.
-
-2011-04-12  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: --results-directory is relative to builddir, not $PWD
-        https://bugs.webkit.org/show_bug.cgi?id=58272
-
-        NRWT was interpreting the --results-directory cmd line arg as
-        relative to the build directory, not the current working
-        directory (ORWT uses the latter, which is much more intuitive).
-        
-        This patch fixes the base case, but includes an override for
-        Chromium that is needed until the bots can be updated.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-04-12  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, roll out r83621 as it broke the GTK build.
-
-        [GTK] arguments passed to build-jsc and build-webkit scripts are not taken into account
-        https://bugs.webkit.org/show_bug.cgi?id=58333
-
-        * Scripts/build-jsc:
-        * Scripts/build-webkit:
-
-2011-04-12  Carl Lobo  <carllobo@gmail.com> and Brent Fulgham <bfulgham@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Patch to download the WinCairo dependancies as part of build-webkit.
-        https://bugs.webkit.org/show_bug.cgi?id=51790
-
-        This patch downloads the dependancies from 
-            http://idisk.mac.com/bfulgham-Public/WinCairoRequirements.zip 
-        checking the modification timestamp etc. 
-
-        * Tools/Scripts/build-webkit
-        * Tools/Scripts/update-webkit: Modified to understand the --wincairo
-          flag, and to update WinCairo dependencies when used.
-        * Tools/Scripts/update-webkit-cairo-libs: added
-        * Tools/Scripts/update-webkit-dependency: added
-        * Tools/Scripts/update-webkit-auxiliary-libs
-
-2011-04-12  Jeff Miller  <jeffm@apple.com>
-
-        Reviewed by Adam Roben.
-
-        WebKit2: Pressing Tab in Web Inspector's console does not cycle through completion options
-        https://bugs.webkit.org/show_bug.cgi?id=56020
-
-        Don't call TranslateMessage() in the MiniBrowser or TestWebKitAPI for key messages destined for a WebKit2 view,
-        since WebKit will do this for us.  If we didn't do this, TranslateMessage() would be called twice,
-        which would generate two characters for every keypress (for example).  I didn't bother doing this for
-        WebKitTestRunner, since it doesn't get any WM_KEYDOWN events.
-        
-        Add new WebKit2/TranslateMessageGeneratesWMChar test to test expected TranslateMessage() behavior.
-
-        * MiniBrowser/win/main.cpp:
-        (shouldTranslateMessage): Added.
-        (_tWinMain): Don't call TranslateMessage() unless shouldTranslateMessage() says to.
-        * TestWebKitAPI/PlatformUtilities.h: Added shouldTranslateMessage() on Windows.
-        * TestWebKitAPI/PlatformWebView.h: Added simulateAKeyDown().
-        * TestWebKitAPI/Tests/WebKit2/win/TranslateMessageGeneratesWMChar.cpp: Added.
-        (TestWebKitAPI::didNotHandleKeyEventCallback): Added.
-        (TestWebKitAPI::runAndWatchForWMChar): Added.
-        (TestWebKitAPI::TEST): Added.
-        * TestWebKitAPI/win/PlatformUtilitiesWin.cpp:
-        (TestWebKitAPI::Util::run): Don't call TranslateMessage() unless shouldTranslateMessage() says to.
-        (TestWebKitAPI::Util::shouldTranslateMessage): Added.
-        * TestWebKitAPI/win/PlatformWebViewWin.cpp:
-        (TestWebKitAPI::PlatformWebView::simulateAKeyDown): Added.
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj: Added TranslateMessageGeneratesWMChar.cpp.
-
-2011-04-12  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: update code to use port.results_directory() instead of options.results_directory
-        https://bugs.webkit.org/show_bug.cgi?id=58290
-
-        This is some preliminary refactoring for bug 58272.
-
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-        * Scripts/webkitpy/layout_tests/layout_package/worker_mixin.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-04-12  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        webkitpy: fix mock_filesystem abspath to handle relative paths
-        and add filesystem.chdir() and filesystem.getcwd() to be able
-        to test this and mock it out.
-
-        https://bugs.webkit.org/show_bug.cgi?id=58288
-
-        * Scripts/webkitpy/common/system/filesystem.py:
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        * Scripts/webkitpy/common/system/filesystem_unittest.py:
-
-2011-04-12  Alice Liu  <alice.liu@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        https://bugs.webkit.org/show_bug.cgi?id=58292
-        Provide new setting to allow site icon loading despite disabling automatic image loading in general.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues): Setting should be off for most tests. Reset to false.
-
-2011-04-12  Thouraya ANDOLSI  <thouraya.andolsi@st.com>
-
-        Reviewed by Eric Seidel.
-
-        [Qt] Enable JIT build for SH4 platforms.
-        https://bugs.webkit.org/show_bug.cgi?id=58317
-
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * QtTestBrowser/QtTestBrowser.pro:
-        * Scripts/webkitdirs.pm:
-
-2011-04-12  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] embed checksums in PNGs written by Qt-DRT
-        https://bugs.webkit.org/show_bug.cgi?id=58173
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::dump):
-
-2011-04-12  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        commit-queue should upload failure diffs when tests fail
-        https://bugs.webkit.org/show_bug.cgi?id=58348
-
-        This change was mostly just plumbing.  We were already saving
-        this information for flaky test reporting.  I just made it possible
-        for normal failures to report archives as well.
-
-        I did a little abstraction work to try and share some code between
-        flakytestreporter.py and this new code.  There is still more we could do.
-
-        In making this change I also went through and updated the various
-        places we have urls hard-coded in our python and pointed them at
-        common.config.urls.
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        * Scripts/webkitpy/common/net/statusserver.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/tool/bot/botinfo.py: Added.
-        * Scripts/webkitpy/tool/bot/botinfo_unittest.py: Added.
-        * Scripts/webkitpy/tool/bot/commitqueuetask.py:
-        * Scripts/webkitpy/tool/bot/flakytestreporter.py:
-        * Scripts/webkitpy/tool/bot/flakytestreporter_unittest.py:
-        * Scripts/webkitpy/tool/commands/queues.py:
-
-2011-04-12  Daniel Bates  <dbates@rim.com>
-
-        Rubber-stamped by Eric Seidel.
-
-        svn-apply and/or patch(1) has trouble applying patches that makes changes to files
-        with Windows line endings
-        https://bugs.webkit.org/show_bug.cgi?id=53625
-
-        Fixes an issue where a patch made on a SCM checkout on a Unix file system cannot be
-        applied to an SCM checkout on a Windows file system and vice-versa.
-
-        This issue manifests itself due to custom SCM settings as well as differences in
-        gitattributes support in older versions of Git (e.g. 1.7.0.3). We implement support
-        into svn-apply/unapply to compensate for differences in line endings by converting
-        the line endings in a patch to match the line endings in the target file (if it exists).
-
-        * Scripts/VCSUtils.pm:
-          - Added parseFirstEOL(), which returns the first end-of-line character(s) that appear in the
-            content read from the specified file handle. Obviously, this heuristic will not work
-            for files with mixed line endings, but I don't envision such files to be the norm. If
-            this turns out to be an issue then we can improve the heuristic.
-          - Added firstEOLInFile().
-          - Modified parsePatch() and parseDiff() to take an optional hash reference to an options hash.
-            In particular, added the hash key shouldNotUseIndexPathEOL to control whether to use the line
-            endings in the diff instead of the line endings in the target file.
-          - Extracted local variable $chunkRangeRegEx from fixChangeLogPatch() so that it can be
-            re-used in parseDiff().
-        * Scripts/webkitperl/VCSUtils_unittest/parseDiff.pl: Modified to pass {shouldNotUseIndexPathEOL => 1}
-          to parsePatch() since these unit tests don't create mock files. Instead, created unit tests that use
-          mock files in file VCSUtils_unittest/parseDiffWithMockFiles.pl.
-        * Scripts/webkitperl/VCSUtils_unittest/parseDiffWithMockFiles.pl: Added.
-        * Scripts/webkitperl/VCSUtils_unittest/parseFirstEOL.pl: Added.
-
-2011-04-12  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        REGRESSION (r83550): Multiple http tests crashing in the web process in SQLite beneath CFNetwork on Windows 7 Release (WebKit2 Tests)
-        https://bugs.webkit.org/show_bug.cgi?id=58336
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-        Remove cache clearing as that is causing tests to crash on Windows 7.
-
-2011-04-11  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        REGRESSION(r77974): http/tests/security/aboutBlank/security-context-window-open.html is failing
-        <rdar://problem/8981346>
-        https://bugs.webkit.org/show_bug.cgi?id=54159
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        (WTR::InjectedBundlePage::decidePolicyForNavigationAction):
-        (WTR::InjectedBundlePage::decidePolicyForNewWindowAction):
-        (WTR::InjectedBundlePage::decidePolicyForResponse):
-        (WTR::InjectedBundlePage::unableToImplementPolicy):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-        Add short-circuited policy client which matches WebKit1.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-        Clear the cache between tests to ensure consistent results.
-
-2011-04-11  George Guo  <George.Guo@nokia.com>
-
-        Reviewed by Eric Seidel.
-
-        prepare-ChangeLog support email input but -h did not show the option
-        https://bugs.webkit.org/show_bug.cgi?id=58164
-
-        Add email option to -h to improve the usability
-
-        * Scripts/prepare-ChangeLog:
-
-2011-04-11  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Reviewed by Eric Carlson.
-
-        Rename MediaControls to MediaControlRootElement.
-        https://bugs.webkit.org/show_bug.cgi?id=58250
-
-        * Scripts/do-webcore-rename: Documented the renaming.
-
-2011-04-11  Sam Weinig  <sam@webkit.org>
-
-        Fix Windows build.
-
-        * MiniBrowser/win/BrowserView.cpp:
-        (BrowserView::create):
-
-2011-04-11  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Move focus management out of WebKit via  the UIClient
-        <rdar://problem/8784068>
-        https://bugs.webkit.org/show_bug.cgi?id=58278
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::createOtherPage):
-        (WTR::TestController::initialize):
-        Add stubs for new UIClient functions.
-
-2011-02-03  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Eric Seidel.
-
-        [GTK] The GTK+ DRT needs an implementation of the PlainTextController
-        https://bugs.webkit.org/show_bug.cgi?id=53605
-
-        Add an implementation of the PlainTextController for the GTK+ DRT.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (addControllerToWindow): Added this helper method.
-        (webViewWindowObjectCleared): Use the new helper to add EventSender
-        and the PlainTextController to the window object.
-        * GNUmakefile.am: Added PlainTextController source files.
-        * DumpRenderTree/gtk/PlainTextController.cpp: Added. This will rely
-        on DumpRenderTreeSupportGtk to convert a JSValueRef into a WebKitDOMRange
-        until that functionality exists somewhere in the WebKitGTK+ stack.
-        * DumpRenderTree/gtk/PlainTextController.h: Added.
-
-2011-04-11  Yael Aharon  <yael.aharon@nokia.com>
-
-        Unreviewed.
-
-        Adding my IRC nick.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-04-11  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Roben.
-
-        new-run-webkit-tests: fix crash when running under windows cmd.exe
-        https://bugs.webkit.org/show_bug.cgi?id=58197
-
-        We would intermittently crash when running NRWT directly under
-        cmd.exe on windows because we were sharing the stdin file
-        descriptor between the python process and the http server.
-        cmd.exe really didn't like that, and there was no reason to
-        share the descriptor, so we now use a PIPE instead.
-
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-
-2011-04-11  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: add unit tests for Port.diff_image()
-        https://bugs.webkit.org/show_bug.cgi?id=58196
-
-        Add the unit tests for the fix in bug 58195.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-
-2011-04-11  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: implement support for audio, take two
-        https://bugs.webkit.org/show_bug.cgi?id=58195
-
-        Attempt to re-land the fix for bug 58101 (which was initially
-        landed in r83330, but rolled out). This is the same patch but
-        fixes crashes in Port.diff_image() caused by the change for
-        empty image files being None instead of ''.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/dryrun.py:
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py:
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-04-11  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] Implement AccessibilityUIElement::{row|column}IndexRange in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=57854
-
-        Implement missing features in GTK's DRT.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (indexRangeInTable): New helper function to get the range string
-        for the current cell inside the parent table, either from the
-        point of view of rows or columns.
-        (AccessibilityUIElement::rowIndexRange): Implemented by relying on
-        the new helper function indexRangeInTable().
-        (AccessibilityUIElement::columnIndexRange): Ditto.
-
-2011-04-11  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        Reviewed by Chris Fleizach.
-
-        [GTK] Implement AccessibilityUIElement::cellForColumnAndRow in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=57826
-
-        Implement missing feature in GTK's DRT.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::cellForColumnAndRow): Implemented, by
-        relying on the analogous function from the AtkTable interface.
-
-2011-04-05  Timothy Hatcher  <timothy@apple.com>
-
-        Fix the extract-localizable-strings script errors that started after
-        WEB_UI_STRING was added to LocalizedStrings.h in WebCore.
-
-        * Scripts/extract-localizable-strings: Skip LocalizedStrings.h.
-
-2011-04-11  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        fix crc computation on 64 bit machines
-        https://bugs.webkit.org/show_bug.cgi?id=58243
-
-        unsigned long is dependenct on CPU architecture, so use unsigned which is always 32 bits
-
-        * DumpRenderTree/CyclicRedundancyCheck.cpp:
-        (makeCrcTable):
-        (computeCrc):
-        * DumpRenderTree/CyclicRedundancyCheck.h:
-        * DumpRenderTree/PixelDumpSupport.cpp:
-        (appendIntToVector):
-        (convertChecksumToPNGComment):
-
-2011-04-10  Kimmo Kinnunen  <kimmo.t.kinnunen@nokia.com>
-
-        Reviewed by Eric Seidel.
-
-        Require no undefined symbols during compilation.
-
-        [Qt] [WK2] WebKitTestRunner, QtWebProcess and WTRInjectBundle should fail to compile when there's undefined symbols
-        https://bugs.webkit.org/show_bug.cgi?id=54896
-
-        Add -Wl,--no-undefined to catch missing symbols early.
-
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro:
-        * WebKitTestRunner/qt/WebKitTestRunner.pro:
-
-2011-04-10  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix. Remove collector dirs from the list of build dirs.
-
-        * wx/build/settings.py:
-
-2011-04-10  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix. Add Source/JavaScriptCore/heap to the list of directories.
-
-        * wx/build/settings.py:
-
-2011-04-10  David Levin  <levin@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        REGRESSION(r83384): Change to chromium.py is resulting in failures of the test framework on linux.
-        https://bugs.webkit.org/show_bug.cgi?id=58201
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py: Commented out the assert for now,
-        and filed bug 58202.
-
-2011-04-09  David Levin  <levin@chromium.org>
-
-        Unreviewed, rolling out r83394.
-        http://trac.webkit.org/changeset/83394
-        https://bugs.webkit.org/show_bug.cgi?id=53625
-
-        Patch was incorrect as noted in the bug.
-
-        * Scripts/svn-apply:
-
-2011-04-09  David Levin  <levin@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        svn-apply and/or patch(1) has trouble applying patches that makes changes to files with Windows line endings
-        https://bugs.webkit.org/show_bug.cgi?id=53625
-
-        * Scripts/svn-apply: Ensure that the portions of patches
-        which are for vcproj/vsprops files has DOS line endings.
-
-2011-04-09  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        It looks like NRWT has not been stopping DRT/TestShell
-        instances properly on windows, probably for a long time.
-        This would go a long way to explaining why we often have
-        processes lying around :)
-
-        https://bugs.webkit.org/show_bug.cgi?id=57807
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-
-2011-04-09  Keith Kyzivat  <keith.kyzivat@nokia.com>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt] Don't link against fontconfig or X11 if embedded
-        https://bugs.webkit.org/show_bug.cgi?id=58104
-
-        * DumpRenderTree/qt/DumpRenderTree.pro: fontconfig !included in embedded
-        * QtTestBrowser/QtTestBrowser.pro: ditto
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro: ditto
-        * WebKitTestRunner/qt/WebKitTestRunner.pro: ditto
-
-2011-04-08  Jon Honeycutt  <jhoneycutt@apple.com>
-
-        http/tests/loading/preload-append-scan.php is failing on Windows
-        https://bugs.webkit.org/show_bug.cgi?id=58178
-
-        Reviewed by Brian Weinstein.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (lastPathComponent):
-        Use CFURL API to find the last path component, rather than
-        PathFindFileName(), because the latter will include the query string.
-
-2011-04-08  Jian Li  <jianli@chromium.org>
-
-        Unreviewed, rolling out r83327, r83330 since these patches are very
-        likely to break chromium webkit mac10.6 builders.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/dryrun.py:
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py:
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-04-08  Vincent Scheib  <scheib@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        add chromium-gpu-linux-x86_64 to the recognized list of ports
-        https://bugs.webkit.org/show_bug.cgi?id=58099
-
-        Add chromium-gpu-linux-x86_64 to fix assert.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-
-2011-04-08  Alpha Lam  <hclam@chromium.org>
-
-        Unreviewed, rolling out r83335.
-        http://trac.webkit.org/changeset/83335
-        https://bugs.webkit.org/show_bug.cgi?id=53556
-
-        GTK and QT bots are broken
-
-        * Scripts/build-webkit:
-
-2011-04-07  Anna Cavender  <annacc@chromium.org>
-
-        Reviewed by Eric Carlson.
-
-        Setup ENABLE(TRACK) feature define
-        https://bugs.webkit.org/show_bug.cgi?id=53556
-
-        * Scripts/build-webkit:
-
-2011-04-08  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Roben.
-
-        new-run-webkit-tests: configure a NRWT test bot for Mac SL
-        https://bugs.webkit.org/show_bug.cgi?id=58114
-
-        This change removes the old new-run-webkit-tests entry and
-        updates it for a new test-only bot.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2011-04-08  Dominic Cooney  <dominicc@google.com>
-
-        Reviewed by Adam Roben.
-
-        Make layoutTestController.shadowRoot return null, not undefined,
-        when its argument is invalid.
-        https://bugs.webkit.org/show_bug.cgi?id=58121
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::shadowRoot):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::shadowRoot):
-
-2011-04-08  Pere Martir  <pere.martir4@gmail.com>
-
-        Reviewed by Adam Roben.
-
-        Locate NSTD.EXE in 64-bit Windows
-        https://bugs.webkit.org/show_bug.cgi?id=57847
-
-        * Scripts/old-run-webkit-tests:
-
-2011-04-08  Adam Roben  <aroben@apple.com>
-
-        Qt build fix
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.h: Pull in stdarg.h for va_list.
-
-2011-04-07  Adam Roben  <aroben@apple.com>
-
-        Test that NPP_SetWindow is passed a null window handle during plugin destruction on non-Mac platforms
-
-        Test for <http://webkit.org/b/47009> WebKit2 needs to call NPP_SetWindow when destroying a
-        plugin
-
-        Reviewed by Anders Carlsson.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:
-        (pluginLogWithArguments): Moved code to format and log the message here...
-        (pluginLog): ...from here.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.h: Added pluginLogWithArguments.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-        (PluginTest::log): Added. Calls through to pluginLogWithArguments.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.h: Added log.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/NPPSetWindowCalledDuringDestruction.cpp: Added.
-        (NPPSetWindowCalledDuringDestruction::setWillBeDestroyed): Records that destruction is about
-        to begin.
-        (NPPSetWindowCalledDuringDestruction::NPPSetWindowCalledDuringDestruction): Simple
-        constructor.
-        (NPPSetWindowCalledDuringDestruction::NPP_GetValue): Creates and returns a ScriptObject that
-        can be used to invoke our setWillBeDestroyed function.
-        (NPPSetWindowCalledDuringDestruction::NPP_SetWindow): Records what has happened (and logs if
-        anything unexpected happens).
-        (NPPSetWindowCalledDuringDestruction::NPP_Destroy): On Mac, logs a failure message if
-        NPP_SetWindow was called during destruction. On other platforms, logs a failure message if
-        NPP_SetWindow was *not* called during destruction.
-        (NPPSetWindowCalledDuringDestruction::ScriptObject::hasMethod): Return true for our only
-        method, setWillBeDestroyed.
-        (NPPSetWindowCalledDuringDestruction::ScriptObject::invoke): Call through to the PluginTest
-        object.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * GNUmakefile.am:
-        Added new test.
-
-        * Scripts/old-run-webkit-tests: Skip the new test when using out-of-process plugins with
-        WebKit1 on Mac, since it can't work properly due to <http://webkit.org/b/58077>.
-
-2011-04-08  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Implement increment() and decrement() functions in DRT's AccessibilityUIElement
-        https://bugs.webkit.org/show_bug.cgi?id=58039
-
-        Implement missing functions in GTK's DRT.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::increment): Implemented.
-        (AccessibilityUIElement::decrement): Implemented.
-
-2011-04-08  Dominic Cooney  <dominicc@google.com>
-
-        Reviewed by Kent Tamura.
-
-        Make WK2 layoutTestController.shadowRoot return undefined, not
-        null, when its argument is not an element.
-        https://bugs.webkit.org/show_bug.cgi?id=58121
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::shadowRoot):
-
-2011-04-07  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        Change reference port for Mac GPU baselines from
-        Leopard to SnowLeopard, XP to Win7, and Linux-x86
-        to Linux x86-64.
-
-        https://bugs.webkit.org/show_bug.cgi?id=58099
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2011-04-07  Andrew Scherkus  <scherkus@chromium.org>
-
-        Revert ENABLE_TRACK patch due to compile failures.
-
-        * Scripts/build-webkit:
-
-2011-04-07  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        update DRT to embed checksums in png files
-        https://bugs.webkit.org/show_bug.cgi?id=57871
-
-        We insert the bytes for the comment in printPNG rather than at encode
-        time because each platform does its own PNG encoding (either using CG
-        or cairo).  Putting this in pringPNG avoids having to duplicate this
-        code, although it's not as clean as doing it at encoding time.
-
-        We insert the comment right after the IHDR chunk of the PNG.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/CyclicRedundancyCheck.cpp: Added.
-        (makeCrcTable): Ported from LayoutTests/fast/canvas/webgl/resources/pnglib.js
-        (computeCrc): Ported from LayoutTests/fast/canvas/webgl/resources/pnglib.js
-        * DumpRenderTree/CyclicRedundancyCheck.h: Added.
-        * DumpRenderTree/PixelDumpSupport.cpp:
-        (dumpWebViewAsPixelsAndCompareWithExpected):
-        (convertChecksumToPNGComment): Generate the bytes to insert.
-        (printPNG): Insert the png comment before the first IDAT section.
-        * DumpRenderTree/PixelDumpSupport.h:
-        * DumpRenderTree/cairo/PixelDumpSupportCairo.cpp:
-        (printPNG):
-        (dumpBitmap):
-        * DumpRenderTree/cg/PixelDumpSupportCG.cpp:
-        (printPNG):
-        (dumpBitmap):
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * GNUmakefile.am:
-
-2011-04-07  Jeff Miller  <jeffm@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Replace WKStringGetCharactersPtr() with WKStringGetCharacters()
-        https://bugs.webkit.org/show_bug.cgi?id=58058
-
-        * TestWebKitAPI/Tests/WebKit2/WKString.cpp:
-        (TestWebKitAPI::TEST): Add tests for  WKStringGetLength() and WKStringGetCharactersPtr().
-
-2011-04-07  Chang Shu  <cshu@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        WebKitTestRunner needs layoutTestController.isPageBoxVisible
-        https://bugs.webkit.org/show_bug.cgi?id=42695
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::isPageBoxVisible):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2011-04-07  Adam Roben  <aroben@apple.com>
-
-        Build fix
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Added a missing import.
-
-2011-04-07  Adam Roben  <aroben@apple.com>
-
-        Move ExtractTestResults[AndLeaks]'s summarizing code back from commandComplete() to finished()
-
-        commandComplete() is never called for MasterShellCommands like ExtractTestResults[AndLeaks].
-        (Unfortunately the buildbot documentation does not make this clear.) finished() is the only
-        hook we have, so we have to do our work there. I added a new addCustomURLs method which can
-        be overridden by subclasses to provide extra URLs before we call up to the base class (after
-        which adding more URLs is no longer possible).
-
-        Really hopefully fixes <http://webkit.org/b/56032> Leaks viewer should be linked from leaks
-        bot results page
-
-        Reviewed by John Sullivan.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (ExtractTestResults.addCustomURLs): Moved code to add the "view results" URL here...
-        (ExtractTestResults.finished): ...from here. This replaces commandComplete, since that
-        method is never called for MasterShellCommands.
-        (ExtractTestResultsAndLeaks.addCustomURLs): Replaced commandComplete (which is never called)
-        with this method (which is).
-
-2011-04-07  Adam Roben  <aroben@apple.com>
-
-        Move ExtractTestResults[AndLeaks]'s summarizing code from finished() to commandComplete()
-
-        This matches how most of our other build steps work, so is good just for improving
-        consistency between build steps. It should also make it possible for
-        ExtractTestResultsAndLeaks to successfully add a URL to Leaks Viewer. (Previously we were
-        trying to do this in finished() after we had called up to the base class, but that was
-        apparently too late to add more URLs.)
-
-        Hopefully fixes <http://webkit.org/b/56032> Leaks viewer should be linked from leaks bot
-        results page
-
-        Reviewed by John Sullivan.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (ExtractTestResults): Added a descriptionDone property so that we don't have to manually
-        call setText to get the right text to show up for this step. This matches how most of our
-        other build steps work.
-        (ExtractTestResults.commandComplete): Replaced our override of finished with this function.
-        This is how most of our other build steps work.
-        (ExtractTestResultsAndLeaks.commandComplete): Replaced our override of finished with this
-        function, to match the base class.
-
-2011-04-07  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Maciej Stachowiak.
-
-        webkit-patch shouldn't state the whole working copy when calling check-webkit-style
-        https://bugs.webkit.org/show_bug.cgi?id=58022
-
-        Previously, we were ignoring the args variable!  This patch fixes the
-        regression introduced in http://trac.webkit.org/changeset/82771.
-
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/mocktool.py:
-        * Scripts/webkitpy/tool/steps/checkstyle.py:
-
-2011-04-07  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Adam Barth.
-
-        REGRESSION: "webkit-patch land" doesn't work correctly in SVN subdirectories
-        https://bugs.webkit.org/show_bug.cgi?id=58017
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-
-2011-04-06  Chang Shu  <cshu@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        WebKitTestRunner needs layoutTestController.pageSizeAndMarginsInPixels
-        https://bugs.webkit.org/show_bug.cgi?id=57984
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::pageSizeAndMarginsInPixels):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2011-04-06  Chris Rogers  <crogers@google.com>
-
-        Reviewed by Tony Chang.
-
-        Add web audio support to DumpRenderTree (mac port)
-        https://bugs.webkit.org/show_bug.cgi?id=57969
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (setEncodedAudioDataCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::dumpAsAudio):
-        (LayoutTestController::setDumpAsAudio):
-        (LayoutTestController::encodedAudioData):
-        (LayoutTestController::setEncodedAudioData):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dumpAudio):
-        (dump):
-
-2011-04-06  Benjamin Poulain  <benjamin.poulain@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] LayoutTestController needs to implement numberOfPendingGeolocationPermissionRequests
-        https://bugs.webkit.org/show_bug.cgi?id=56086
-
-        Add the missing method.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::getAllPages): Add a method to return all the pages allocated for the current test.
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::numberOfPendingGeolocationPermissionRequests):
-
-2011-04-06  Dai Mikurube  <dmikurube@chromium.org>
-
-        Reviewed by David Levin.
-
-        Add QUOTA build flag for unified quota API
-        https://bugs.webkit.org/show_bug.cgi?id=57918
-
-        * Scripts/build-webkit: Added QUOTA build flag
-
-2011-04-06  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Adjust the apple webkit port's default timeout to match
-        old-run-webkit-tests at 35 seconds.
-
-        https://bugs.webkit.org/show_bug.cgi?id=37738
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-
-2011-04-06  Scott Cameron  <sccameron@rim.com>
-
-        Reviewed by Eric Seidel.
-
-        Remove global variable $httpdPath and replace with the return value of
-        getHTTPDPath().  Also remove unnecessary calls to getHTTPDPath().
-        https://bugs.webkit.org/show_bug.cgi?id=53499
-
-        * Scripts/run-iexploder-tests:
-        * Scripts/webkitperl/httpd.pm:
-
-2011-04-06  Kevin Ollivier  <kevino@theolliviers.com>
-
-        Reviewed by Darin Adler.
-
-        Make sure JS_EXPORT_PRIVATE is an empty define when we aren't using the export macros.
-        
-        https://bugs.webkit.org/show_bug.cgi?id=27551
-        
-        * DumpRenderTree/config.h:
-        * WebKitAPITest/config.h:
-        * WebKitTestRunner/config.h:
-
-2011-04-06  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        teach run-webkit-tests to read checksums from png files
-        https://bugs.webkit.org/show_bug.cgi?id=57993
-
-        * Scripts/old-run-webkit-tests: Read the first 2k of a .png if there's
-          no .checksum and look for the checksum in there.
-
-2011-04-06  David Dorwin  <ddorwin@chromium.org>
-
-        Reviewed by David Levin.
-
-        Enable fullscreen layout tests for Chromium
-        https://bugs.webkit.org/show_bug.cgi?id=55726
-
-        Make DumpRenderTree always run with fullscreen enabled (equivalent of --enable-fullscreen).
-
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::applyTo):
-
-2011-04-06  Adam Roben  <aroben@apple.com>
-
-        Add a "view leaks" link to builds on SnowLeopard Intel Leaks
-
-        Fixes <http://webkit.org/b/56032> Leaks viewer should be linked from leaks bot results page
-
-        Reviewed by David Kilzer.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (ExtractTestResults.resultDirectoryURL): Added. Moved code to calculate the URL for the
-        build's results directory here...
-        (ExtractTestResults.finished): ...from here.
-        (ExtractTestResultsAndLeaks): New class that's used by the leaks builder
-        (ExtractTestResultsAndLeaks.finished): Calls up to the base class, but also adds a "view
-        leaks" link to point to Leaks Viewer for this build.
-        (TestFactory): Added ExtractTestResultsClass abstraction. This isn't overridden anywhere,
-        but it seemed good to add for consistency with BuildAndTestFactory.
-        (BuildAndTestFactory): Added ExtractTestResultsClass abstraction.
-        (BuildAndTestLeaksFactory): Use ExtractTestResultsAndLeaks as our ExtractTestResultsClass so
-        that we'll get a "view leaks" link.
-
-2011-04-06  Zan Dobersek  <zandobersek@gmail.com>
-
-        Reviewed by Eric Seidel.
-
-        [Gtk] plugins/set-status.html fails
-        https://bugs.webkit.org/show_bug.cgi?id=57844
-
-        Allow an empty status text to be dumped.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webViewStatusBarTextChanged):
-
-2011-04-06  Chang Shu  <cshu@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        WebKitTestRunner needs layoutTestController.pageNumberForElementById
-        https://bugs.webkit.org/show_bug.cgi?id=42329
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::pageNumberForElementById):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2011-04-06  Sergio Villar Senin  <svillar@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] DumpRenderTree: do not try to free NULL SoupURIs
-        https://bugs.webkit.org/show_bug.cgi?id=57932
-
-        Some Layout tests have invalid URIs that do not generate valid
-        SoupURI instances. Do not try to free those NULL SoupURIs.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (willSendRequestCallback):
-
-2011-04-06  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        ORWT shouldn't generate diff files for tests without expected files
-        https://bugs.webkit.org/show_bug.cgi?id=57846
-
-        * Scripts/old-run-webkit-tests:
-
-2011-04-05  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Mac build fix. Handle cases where 10.4 SDK is not installed, and also add x86_64 arch
-        to deps.
-
-        * wx/install-unix-extras:
-
-2011-04-05  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r82978, r82999, and r83001.
-        http://trac.webkit.org/changeset/82978
-        http://trac.webkit.org/changeset/82999
-        http://trac.webkit.org/changeset/83001
-        https://bugs.webkit.org/show_bug.cgi?id=57913
-
-        Does not work in Python 2.5 (Requested by abarth on #webkit).
-
-        * Scripts/webkitpy/common/system/executive.py:
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-
-2011-04-05  Chang Shu  <cshu@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        WebKitTestRunner needs layoutTestController.numberOfPages
-        https://bugs.webkit.org/show_bug.cgi?id=42694
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::numberOfPages):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2011-04-05  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        [chromium] stop putting results downloaded from WebKit Linux in chromium-linux-x86_64
-        https://bugs.webkit.org/show_bug.cgi?id=57889
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-
-2011-04-05  Adam Barth  <abarth@webkit.org>
-
-        Silly with statement, from the future!
-
-        * Scripts/webkitpy/common/system/executive.py:
-
-2011-04-05  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Tony Chang.
-
-        Don't use Exception.message because it's deprecated
-        https://bugs.webkit.org/show_bug.cgi?id=57892
-
-        Suppress the warning for now.  When we move to Python 3, we might need
-        to something more dramatic.
-
-        * Scripts/webkitpy/common/system/executive.py:
-
-2011-04-05  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Add builders.js to dashboard file list
-        https://bugs.webkit.org/show_bug.cgi?id=57899
-
-        Add file added by http://crrev.com/80538 to dashboard file list.
-
-        * TestResultServer/handlers/dashboardhandler.py:
-
-2011-04-05  MORITA Hajime  <morrita@google.com>
-
-        Reviewed by Adam Barth.
-
-        webkit-patch should print git's stderr when git svn dcommit fail
-        http://webkit.org/b/57861
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-
-2011-04-05  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Add --baseline-search-path to NRWT
-        https://bugs.webkit.org/show_bug.cgi?id=56233
-        
-        Add NRWT option to specify additional directories to look for baselines
-        (will be used by hardware GPU bots which will have local per-bot
-        expectations for some tests)
-
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-04-05  Adam Roben  <aroben@apple.com>
-
-        Strip off /results.html from results URLs before trying to load leaks files from them
-
-        r82734 changed build.webkit.org's "view results" URLs to point straight to the results.html
-        files, rather than pointing to the directory that contains them. This is more convenient for
-        people browsing build.webkit.org, but confused Leaks Viewer.
-
-        Fixes <http://webkit.org/b/57869> REGRESSION (r82734): Links in Leaks Viewer's Recent Builds
-        list don't work
-
-        Reviewed by Joseph Pecoraro.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/RecentBuildsLoader.js:
-        (RecentBuildsLoader.prototype.start): Strip off "/results.html" from the results URL.
-
-2011-04-05  Carol Szabo  <carol@webkit.org>
-
-        Unreviewed.
-
-        Updated my info in committers.py
-
-        Scripts\webkitpy\common\config\committers.py 
-
-2011-04-05  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt] Make WebKitLibraries optional for building QtWebKit
-        https://bugs.webkit.org/show_bug.cgi?id=57542
-
-        * Scripts/build-webkit:
-
-2011-04-05  Chang Shu  <cshu@webkit.org>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt] MiniBrowser defaultUrl does not work
-        https://bugs.webkit.org/show_bug.cgi?id=57021
-
-        Match the behavior and coding of MiniBrowser to QtTestBrowser.
-        * MiniBrowser/qt/main.cpp:
-        (main):
-
-2011-04-05  Jade Han  <jade.han@nokia.com>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt] [Symbian] Disable WebKitTestRunner for Symbian
-        https://bugs.webkit.org/show_bug.cgi?id=54977
-
-        This change is a preparation to enable building webkit2 for Symbian.
-        Bug 57834 is filed to fix and enable WebKitTestRunner for Symbian.
-
-        * Tools.pro:
-
-2011-04-05  Zoltan Horvath  <zoltan@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Fix timeoutTimer of MiniBrowser's UrlLoader
-        https://bugs.webkit.org/show_bug.cgi?id=57832
-
-        Only QWKPage has loadFinished signal so connect to it instead of BrowserWindow.
-
-        * MiniBrowser/qt/UrlLoader.cpp:
-        (UrlLoader::UrlLoader):
-
-2011-04-05  Zoltan Horvath  <zoltan@webkit.org>
-
-        [Qt] Linux Release minimal build fix after r82919.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::loadURLListFromFile):
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::loadURLListFromFile):
-
-2011-04-05  Zoltan Horvath  <zoltan@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Make URL loader accessible from testbrowser's menus
-        https://bugs.webkit.org/show_bug.cgi?id=57823
-
-        Add "Load URLs from file" to QtTestBrowser's and to MiniBrowser's menu.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::loadURLListFromFile):
-        (BrowserWindow::~BrowserWindow):
-        * MiniBrowser/qt/BrowserWindow.h:
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::LauncherWindow):
-        (LauncherWindow::~LauncherWindow):
-        (LauncherWindow::createChrome):
-        (LauncherWindow::loadURLListFromFile):
-        * QtTestBrowser/launcherwindow.h:
-
-2011-04-04  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Brian Weinstein.
-
-        Remove duplicate API from WKContext
-        <rdar://problem/8727879>
-        https://bugs.webkit.org/show_bug.cgi?id=57815
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WebKit2/SendingMessagesToTheWebProcessBeforeItIsValid.cpp: Removed.
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        Remove SendingMessagesToTheWebProcessBeforeItIsValid since the API it was testing is now removed.
-
-2011-04-04  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        [chromium] don't write .checksum files if a fallback platform has an embedded checksum
-        https://bugs.webkit.org/show_bug.cgi?id=57783
-
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests_unittest.py:
-
-2011-04-04  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix, run uninstall when cleaning to remove built files
-        from WebKitBuild.
-
-        * Scripts/webkitdirs.pm:
-
-2011-04-04  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        [GTK] WebGL support
-        https://bugs.webkit.org/show_bug.cgi?id=31517
-
-        Add support to the DRT for turning on WebGL when a layout tests requests it.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::overridePreference): Allow turning on WebGL from tests.
-
-2011-04-04  Chang Shu  <cshu@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        WebKitTestRunner needs layoutTestController.setAllowFileAccessFromFileURLs
-        https://bugs.webkit.org/show_bug.cgi?id=57572
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::setAllowFileAccessFromFileURLs):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2011-04-04  Keith Kyzivat  <keith.kyzivat@nokia.com>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt] DumpRenderTree breaks compilation in some uClibc environments
-        https://bugs.webkit.org/show_bug.cgi?id=57602
-
-        * DumpRenderTree/qt/main.cpp:
-        (get_backtrace):
-
-2011-04-04  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix, add new LayoutTestController method stub to wx.
-
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::shadowRoot):
-
-2011-04-04  Pavel Podivilov  <podivilov@chromium.org>
-
-        Unreviewed, fix exception in rebaseline tool.
-
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-
-2011-04-02  Beth Dakin  <bdakin@apple.com>
-
-        Rubber-stamped by Geoff Garen.
-
-        For Dan!
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting):
-
-2011-04-02  Beth Dakin  <bdakin@apple.com>
-
-        Rubber-stamped by Geoff Garen.
-
-        Need to reset the scale, much like zoom.
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting):
-
-2011-04-02  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Beth Dakin.
-
-        https://bugs.webkit.org/show_bug.cgi?id=57605
-        Frame::pageScaleFactor() should not affect getBoundingClientRect() or 
-        getClientRects()
-        -and corresponding-
-        <rdar://problem/9194541>
-
-        Add DRT support for the scaleWebView SPI.
-        * DumpRenderTree/mac/EventSendingController.mm:
-        (+[EventSendingController isSelectorExcludedFromWebScript:]):
-        (+[EventSendingController webScriptNameForSelector:]):
-        (-[EventSendingController scalePageBy:atX:andY:]):
-        * WebKitTestRunner/InjectedBundle/Bindings/EventSendingController.idl:
-        * WebKitTestRunner/InjectedBundle/EventSendingController.cpp:
-        (WTR::EventSendingController::scalePageBy):
-        * WebKitTestRunner/InjectedBundle/EventSendingController.h:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::reset):
-
-2011-04-02  Dominic Cooney  <dominicc@google.com>
-
-        Reviewed by Martin Robinson.
-
-        Add layoutTestController.shadowRoot to GTK DumpRenderTree.
-        https://bugs.webkit.org/show_bug.cgi?id=57551
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::shadowRoot):
-
-2011-04-02  Patrick Gansterer  <paroga@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Remove AbstractStep._run_script and move script names to ports.py
-        https://bugs.webkit.org/show_bug.cgi?id=57704
-
-        Replace deprecated _run_script with _tool.executive.run_and_throw_if_fail.
-
-        * Scripts/webkitpy/common/config/ports.py:
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/commands/roll_unittest.py:
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-        * Scripts/webkitpy/tool/steps/abstractstep.py:
-        * Scripts/webkitpy/tool/steps/checkstyle.py:
-        * Scripts/webkitpy/tool/steps/preparechangelog.py:
-        * Scripts/webkitpy/tool/steps/preparechangelogfordepsroll.py:
-        * Scripts/webkitpy/tool/steps/preparechangelogforrevert.py:
-
-2011-04-02  Patrick Gansterer  <paroga@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Emulate shebang on Win32
-        https://bugs.webkit.org/show_bug.cgi?id=55927
-
-        Scripts on Windows work only if they are called with the explicit interpreter.
-        Read the first line of scripts to detect the correct executable.
-
-        * Scripts/webkitpy/common/config/ports.py:
-        * Scripts/webkitpy/common/system/executive.py: Added interpreter_for_script().
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-
-2011-04-01  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        apos entities shouldn't show up in ChangeLogs when using webkit-patch
-        https://bugs.webkit.org/show_bug.cgi?id=57692
-
-        Previously, we were using BeautifulSoup to process XML from
-        bugs.webkit.org, but that's incorrect.  We should be using
-        BeautifulStoneSoup to process the XML.  We were getting the &apos;
-        entity wrong because &apos; is an XML entity but not an HTML entity.
-
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla_unittest.py:
-
-2011-04-01  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r82721.
-        http://trac.webkit.org/changeset/82721
-        https://bugs.webkit.org/show_bug.cgi?id=57687
-
-        This patch introduced assertion failures on the GTK+ bots.
-        (Requested by mrobinson on #webkit).
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::shadowRoot):
-
-2011-04-01  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed buildfix.
-
-        [Qt][WK2] Build Webkit2 using "-2" option on Qt
-        https://bugs.webkit.org/show_bug.cgi?id=55074
-
-        * Scripts/build-webkit: Ensure that "-2" isn't passed to qmake.
-        (The isWK2() function removes it from @ARGV, but not from @options.)
-
-2011-04-01  Keith Kyzivat  <keith.kyzivat@nokia.com>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt] [WK2] MiniBrowser.qrc not found - regression from rev 82671
-        https://bugs.webkit.org/show_bug.cgi?id=57666
-
-        * MiniBrowser/qt/MiniBrowser.qrc: Renamed from Tools/MiniBrowser/MiniBrowser.qrc.
-
-2011-04-01  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        new-run-webkit-tests: fix feature detection, skipped platform lists on mac
-
-        We apparently never implemented the code to skip tests based on
-        what was compiled into DRT. Also, change the logic used to skip
-        platform directories to match what old-run-webkit-tests does: 
-        skip every test not in a directory in the baseline search path.
-
-        https://bugs.webkit.org/show_bug.cgi?id=57662
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-
-2011-03-29  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Jon Honeycutt.
-
-        <http://webkit.org/b/56730> new-run-webkit-tests fails on Lion seed
-
-        Teach new-run-webkit-tests about the concept of an unreleased version of Mac OS X.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-
-2011-04-01  Chang Shu  <cshu@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt][WK2] Build Webkit2 using "-2" option on Qt
-        https://bugs.webkit.org/show_bug.cgi?id=55074
-
-        * Scripts/build-webkit:
-
-2011-04-01  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: remove spurious port version override in webkit.py
-        base.py provides a default implementation so this is just
-        breaking things.
-
-        https://bugs.webkit.org/show_bug.cgi?id=57667
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-
-2011-04-01  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Make view results on waterfall direct link to results.html
-        https://bugs.webkit.org/show_bug.cgi?id=57671
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Add "/results.html" to the URL.
-        * Scripts/old-run-webkit-tests: Add links to httpd access and error logs.
-
-2011-04-01  Sam Weinig  <sam@webkit.org>
-
-        Fix windows build.
-
-        * TestWebKitAPI/Tests/WebKit2/win/HideFindIndicator.cpp:
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/win/ResizeViewWhileHidden.cpp:
-        (TestWebKitAPI::flushMessages):
-
-2011-04-01  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Add adoptWK to WKRetainPtr.h
-        https://bugs.webkit.org/show_bug.cgi?id=57670
-
-        * TestWebKitAPI/PlatformUtilities.h:
-        * TestWebKitAPI/Tests/WebKit2/AboutBlankLoad.cpp:
-        * TestWebKitAPI/Tests/WebKit2/CanHandleRequest.cpp:
-        * TestWebKitAPI/Tests/WebKit2/CanHandleRequest_Bundle.cpp:
-        * TestWebKitAPI/Tests/WebKit2/CookieManager.cpp:
-        * TestWebKitAPI/Tests/WebKit2/HitTestResultNodeHandle.cpp:
-        * TestWebKitAPI/Tests/WebKit2/PageLoadDidChangeLocationWithinPageForFrame.cpp:
-        * TestWebKitAPI/Tests/WebKit2/ResponsivenessTimerDoesntFireEarly.cpp:
-        * TestWebKitAPI/Tests/WebKit2/RestoreSessionStateContainingFormData.cpp:
-        (TestWebKitAPI::createSessionStateContainingFormData):
-        * WebKitTestRunner/StringFunctions.h:
-        Replace custom versions of adoptWK with the API on in WebKit2/WKRetainPtr.h.
-
-2011-04-01  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Fix leak noticed by Adam Roben in LayoutTestController::shadowRoot.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::shadowRoot):
-        Make judicious use of adoptWK().
-
-2011-04-01  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Timothy Hatcher.
-
-        Fix extract-localizable-strings for macro change from UI_STRING -> WEB_UI_STRING.
-
-        * Scripts/extract-localizable-strings:
-
-2011-04-01  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Shockwave plug-in doesn't accept mouse events
-        https://bugs.webkit.org/show_bug.cgi?id=57653
-        <rdar://problem/8483273>
-
-        Add a plug-in test.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-        (PluginTest::indicateTestFailure):
-        Move code from NPDeallocateCalledBeforeNPShutdown::TestObject::~TestObject here.
-
-        (PluginTest::NPN_ConvertPoint):
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.h:
-        * DumpRenderTree/TestNetscapePlugIn/Tests/NPDeallocateCalledBeforeNPShutdown.cpp:
-        (NPDeallocateCalledBeforeNPShutdown::TestObject::~TestObject):
-        Call indicateTestFailure.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/mac: Added.
-        * DumpRenderTree/TestNetscapePlugIn/Tests/mac/ConvertPoint.cpp: Added.
-        (ConvertPoint::ConvertPoint):
-        (ConvertPoint::testConvert):
-        (ConvertPoint::NPP_New):
-
-2011-04-01  Dominic Cooney  <dominicc@google.com>
-
-        Reviewed by Martin Robinson.
-
-        Add layoutTestController.shadowRoot to GTK DumpRenderTree.
-        https://bugs.webkit.org/show_bug.cgi?id=57551
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::shadowRoot):
-
-2011-04-01  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        WebKitTestRunner needs layoutTestController.shadowRoot
-        https://bugs.webkit.org/show_bug.cgi?id=57661
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::shadowRoot):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        Implement layoutTestController.shadowRoot for WebKit2.
-
-2011-04-01  Chang Shu  <cshu@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        WebKitTestRunner needs layoutTestController.setDatabaseQuota
-        https://bugs.webkit.org/show_bug.cgi?id=57568
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::setDatabaseQuota):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2011-04-01  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        This patch completes the cleanup of
-        rebaseline-chromium-webkit-tests to work with all of the
-        variants of a platform (we can now rebaseline gpu- and non-gpu
-        files at the same time).
-
-        When the rebaselining is complete, any lines declared as
-        REBASELINE in the expectations file that matches a test that was
-        actually rebaselined will be deleted, even if only one of the
-        variants was actually rebaselined. This may cause odd problems,
-        but is better than where we're at today.
-
-        This change removes the -g flag and deprecates -w. The -g flag is gone
-        because GPU baselines are handled just like any other variant.
-        The -w flag is deprecated because this tool now only works
-        against the canaries, since that's the only place we have a full
-        set of bots. It will be trivial to change this to
-        build.webkit.org if we decide that's where we want them to be.
-
-        Also, this patch deletes a lot of cruft that is no longer needed
-        in the test_expectations code and the port-specific code.
-
-        https://bugs.webkit.org/show_bug.cgi?id=55191
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests_unittest.py:
-
-2011-04-01  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        rebaseline-chromium-webkit-tests does not work correctly with
-        version-specific baselines. This patch updates the tool to use
-        all of the version-specific bots on the canaries, and will now
-        attempt to rebaseline all of the versions by default, although
-        it will not update both GPU and CPU versions.
-        
-        Also, it will no longer modify the test_expectations.txt file
-        *at all*. You will have to manually delete the REBASELINE lines
-        after running the tool and determining that it did what you
-        wanted it to do. This should be fixed in a separate bug - see
-        webkit bug #55191.
-
-        https://bugs.webkit.org/show_bug.cgi?id=55608
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_expectations_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests_unittest.py:
-
-2011-03-31  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        [chromium] update the rebaseline tool to know about pngs with checksums
-        https://bugs.webkit.org/show_bug.cgi?id=57481
-
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py: Skip over .checksum files if the checksum is already in the png
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests_unittest.py:
-
-2011-04-01  Adam Roben  <aroben@apple.com>
-
-        Retrieve revision numbers from the build's got_revision property in Leaks Viewer
-
-        Previously, we were getting the revision of the first revision that triggered a build.
-        Choosing the last revision would have been more accurate. But got_revision is what is used
-        everywhere else on build.webkit.org, and should work even when there were no changes that
-        triggered a build (e.g., if someone clicked the Force Build button).
-
-        Fixes <http://webkit.org/b/57630> Leaks viewer gets some revision numbers wrong in the
-        recent builds list
-
-        Reviewed by Anders Carlsson.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/RecentBuildsLoader.js:
-        (RecentBuildsLoader.prototype.start): Pull the revision number out of the got_revision
-        property, rather than out of the first (i.e., earliest) change in the sourceStamp object.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/Utilities.js:
-        (Array.prototype.first): Added this helper function to return the first element in an array
-        that matches the given predicate, or null if no such element exists.
-
-2011-03-31  Adam Roben  <aroben@apple.com>
-
-        Prefer (but don't require) bug URLs to be on their own line when parsing bug numbers from ChangeLogs
-
-        Fixes <http://webkit.org/b/57579> webkit-patch is too strict about bug URL formatting
-
-        Reviewed by Darin Adler.
-
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        (parse_bug_id_from_changelog): Fall back to parse_bug_id if we weren't able to find a bug
-        URL on its own line.
-
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla_unittest.py:
-        (BugzillaTest.test_parse_bug_id_from_changelog): Updated expected results for test
-        progression, and added a new test that uses a short bug URL while I was at it.
-
-2011-04-01  Adam Roben  <aroben@apple.com>
-
-        Mark .vcproj/.vsprops/.sln files as being Windows-only
-
-        Fixes <http://webkit.org/b/57489> Mac builders built 82512, but shouldn't have
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/webkitpy/common/config/build.py:
-        (_should_file_trigger_build): Added patterns to mark .vcproj/.vsprops/.sln files and .vcproj
-        directories as Windows-only.
-
-        * Scripts/webkitpy/common/config/build_unittest.py:
-        (ShoulBuildTest): Added test cases for the above.
-
-2011-04-01  Keith Kyzivat  <keith.kyzivat@nokia.com>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt] Build MiniBrowser for Symbian
-        https://bugs.webkit.org/show_bug.cgi?id=56319
-
-        Have MiniBrowser reference it's own copy of useragentlist.txt instead
-        of copying QtTestBrowser's.
-        Remove Tools/MiniBrowser/DerivedSources.pro
-        This reduces complexity in the Tools scripts due to Symbian limitations.
-
-        * DerivedSources.pro:
-        * MiniBrowser/DerivedSources.pro: Removed.
-        * MiniBrowser/MiniBrowser.qrc:
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * Scripts/webkitdirs.pm:
-
-2011-03-31  Chang Shu  <cshu@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        WebKitTestRunner needs layoutTestController.clearAllDatabases
-        https://bugs.webkit.org/show_bug.cgi?id=42540
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::clearAllDatabases):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2011-03-31  Chang Shu  <cshu@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        WebKitTestRunner needs layoutTestController.setAllowUniversalAccessFromFileURLs
-        https://bugs.webkit.org/show_bug.cgi?id=42692
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-
-2011-03-31  Darin Adler  <darin@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Implement mouseDown, mouseUp, and mouseMoveTo in WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=57573
-
-        * WebKitTestRunner/InjectedBundle/Bindings/EventSendingController.idl:
-        Added real definitions for mouseDown, mouseUp, mouseMoveTo and leapForward.
-        Removed fake definitions of keyDown and contextClick.
-
-        * WebKitTestRunner/InjectedBundle/EventSendingController.cpp:
-        (WTR::operator==): Added. So we can compare two WKPoint structs.
-        (WTR::parseModifier): Added.
-        (WTR::parseModifierArray): Added.
-        (WTR::EventSendingController::EventSendingController): Initialize the
-        new data members.
-        (WTR::EventSendingController::mouseDown): Added. Calls
-        WKBundlePageSimulateMouseDown.
-        (WTR::EventSendingController::mouseUp): Added. Calls
-        WKBundlePageSimulateMouseUp.
-        (WTR::EventSendingController::mouseMoveTo): Added. Calls
-        WKBundlePageSimulateMouseMotion.
-        (WTR::EventSendingController::leapForward): Added.
-        (WTR::EventSendingController::updateClickCount): Added. Used by the
-        mouseDown/Up functions to create a click count.
-
-        * WebKitTestRunner/InjectedBundle/EventSendingController.h: Updated
-        for the changes above.
-
-2011-03-31  Sergio Villar Senin  <svillar@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] implement LayoutTestController::setWillSendRequestReturnsNull
-        https://bugs.webkit.org/show_bug.cgi?id=57362
-
-        Do not generate DRT output if willSendRequestReturnsNull is set.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (willSendRequestCallback):
-
-2011-03-31  Vamshikrishna.Yellenki  <vamshi@motorola.com> and Alejandro G. Castro  <alex@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        Implement MiniBrowser for Gtk port.
-        https://bugs.webkit.org/show_bug.cgi?id=48512
-
-        Initial implementation of the Gtk MiniBrowser.
-
-        * MiniBrowser/gtk/GNUmakefile.am: Added.
-        * MiniBrowser/gtk/main.c: Added.
-        (activateUriEntryCallback):
-        (destroyCallback):
-        (goBackCallback):
-        (goForwardCallback):
-        (createToolbar):
-        (createWebView):
-        (createWindow):
-        (argumentToURL):
-        (main):
-
-2011-03-30  Dominic Cooney  <dominicc@google.com>
-
-        Reviewed by Dimitri Glazkov.
-
-        Adds layoutTestController.shadowRoot accessor to Mac DRT.
-        https://bugs.webkit.org/show_bug.cgi?id=57415
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (shadowRootCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::shadowRoot):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::shadowRoot):
-
-2011-03-30  Matthew Delaney  <mdelaney@apple.com>
-
-        Reviewed by Chris Marrin.
-
-        Update fast/canvas tests to avoid dumping the render tree when possible
-        https://bugs.webkit.org/show_bug.cgi?id=57493
-
-        * DumpRenderTree/mac/DumpRenderTree.mm: Make DRT aware of new default values for
-          accelerated drawing and accelerated drawing for canvas
-
-2011-03-30  Adam Roben  <aroben@apple.com>
-
-        Stop ignoring leaks in CGGradientCreateWithColorStops
-
-        Fixes <rdar://problem/7888547>.
-
-        Rubber-stamped by John Sullivan.
-
-        * Scripts/old-run-webkit-tests:
-        (countAndPrintLeaks): Removed some code to ignore those leaks.
-
-2011-03-30  Timur Iskhodzhanov  <timurrrr@google.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Add some dynamic annotations to JavaScriptCore/wtf
-        https://bugs.webkit.org/show_bug.cgi?id=53747
-
-        By using these annotations we can improve the precision of finding
-        WebKit errors using dynamic analysis tools like ThreadSanitizer and Valgrind.
-        These annotations don't affect the compiled binaries unless USE(DYNAMIC_ANNOTATIONS) is "1".
-
-        These files don't add new functionality, so don't need extra tests.
-
-        * DumpRenderTree/ForwardingHeaders/wtf/DynamicAnnotations.h: Added.
-
-2011-03-30  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Share most vsprops between Release and Production builds in releaseproduction.vsprops
-        https://bugs.webkit.org/show_bug.cgi?id=57508
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginProduction.vsprops:
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginRelease.vsprops:
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginReleaseCairoCFLite.vsprops:
-        * DumpRenderTree/win/DumpRenderTreeProduction.vsprops:
-        * DumpRenderTree/win/DumpRenderTreeRelease.vsprops:
-        * DumpRenderTree/win/DumpRenderTreeReleaseCairoCFLite.vsprops:
-        * DumpRenderTree/win/ImageDiffProduction.vsprops:
-        * DumpRenderTree/win/ImageDiffRelease.vsprops:
-        * DumpRenderTree/win/ImageDiffReleaseCairoCFLite.vsprops:
-        * FindSafari/FindSafariProduction.vsprops:
-        * FindSafari/FindSafariRelease.vsprops:
-        * FindSafari/FindSafariReleaseCairoCFLite.vsprops:
-        * FindSafari/FindSafariReleasePGO.vsprops:
-        * MiniBrowser/Configurations/MiniBrowserProduction.vsprops:
-        * MiniBrowser/Configurations/MiniBrowserRelease.vsprops:
-        * MiniBrowser/Configurations/MiniBrowserReleaseCairoCFLite.vsprops:
-        * TestWebKitAPI/Configurations/TestWebKitAPIRelease.vsprops:
-        * TestWebKitAPI/Configurations/TestWebKitAPIReleaseCairoCFLite.vsprops:
-        * WebKitAPITest/WebKitAPITestProduction.vsprops:
-        * WebKitAPITest/WebKitAPITestRelease.vsprops:
-        * WebKitAPITest/WebKitAPITestReleaseCairoCFLite.vsprops:
-        * WebKitLauncherWin/WebKitLauncherWinProduction.vsprops:
-        * WebKitLauncherWin/WebKitLauncherWinRelease.vsprops:
-        * WebKitLauncherWin/WebKitLauncherWinReleaseCairoCFLite.vsprops:
-        * WebKitTestRunner/win/InjectedBundleProduction.vsprops:
-        * WebKitTestRunner/win/InjectedBundleRelease.vsprops:
-        * WebKitTestRunner/win/InjectedBundleReleaseCairoCFLite.vsprops:
-        * WebKitTestRunner/win/WebKitTestRunnerProduction.vsprops:
-        * WebKitTestRunner/win/WebKitTestRunnerRelease.vsprops:
-        * WebKitTestRunner/win/WebKitTestRunnerReleaseCairoCFLite.vsprops:
-        * WinLauncher/WinLauncherProduction.vsprops:
-        * WinLauncher/WinLauncherRelease.vsprops:
-        * WinLauncher/WinLauncherReleaseCairoCFLite.vsprops:
-        * record-memory-win/record-memory-winProduction.vsprops:
-        * record-memory-win/record-memory-winRelease.vsprops:
-        * record-memory-win/record-memory-winReleaseCairoCFLite.vsprops:
-
-2011-03-30  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Update Windows production build logic for new production configurations
-        https://bugs.webkit.org/show_bug.cgi?id=57494
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginProduction.vsprops:
-        * DumpRenderTree/win/DumpRenderTreeProduction.vsprops:
-        * DumpRenderTree/win/ImageDiffProduction.vsprops:
-        * FindSafari/FindSafariProduction.vsprops:
-        * FindSafari/FindSafariReleasePGO.vsprops:
-        * MiniBrowser/Configurations/MiniBrowserProduction.vsprops:
-        * WebKitAPITest/WebKitAPITestProduction.vsprops:
-        * WebKitLauncherWin/WebKitLauncherWinProduction.vsprops:
-        * WebKitTestRunner/win/InjectedBundleProduction.vsprops:
-        * WebKitTestRunner/win/WebKitTestRunnerProduction.vsprops:
-        * WinLauncher/WinLauncherProduction.vsprops:
-        * record-memory-win/record-memory-winProduction.vsprops:
-
-2011-03-30  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Antonio Gomes.
-
-        [Qt] Fix LoadHTMLStringItem::invoke() after r75966
-        Unskip http/tests/navigation/go-back-to-error-page.html
-
-        Also add the location of DumpRenderTreeSupportQt.h
-        to DRT's include paths.
-
-        https://bugs.webkit.org/show_bug.cgi?id=52614
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        * DumpRenderTree/qt/GCControllerQt.cpp:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::queueLoadHTMLString):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/qt/PlainTextControllerQt.cpp:
-        * DumpRenderTree/qt/TextInputControllerQt.cpp:
-        * DumpRenderTree/qt/WorkQueueItemQt.cpp:
-        (LoadAlternateHTMLStringItem::invoke):
-        * DumpRenderTree/qt/WorkQueueItemQt.h:
-        (LoadAlternateHTMLStringItem::LoadAlternateHTMLStringItem):
-        * QtTestBrowser/QtTestBrowser.pro:
-        * QtTestBrowser/launcherwindow.h:
-
-2011-03-30  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        SheriffBot rollouts take too long
-        https://bugs.webkit.org/show_bug.cgi?id=57498
-
-        We used to build before landing rollouts via the commit-queue to
-        prevent further breakage, but now that our individual commit-queue
-        machines are slower, building takes too long.  I can't remember the
-        last time a rollout broke compile.  It seems like just landing the
-        patch is the better trade-off.
-
-        * Scripts/webkitpy/tool/bot/commitqueuetask.py:
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2011-03-30  Adam Barth  <abarth@webkit.org>
-
-        Remove platform/chromium-mac-snowleopard
-        https://bugs.webkit.org/show_bug.cgi?id=57486
-
-        This directory no longer exists, so we can remove it from the fallback
-        chain.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-
-2011-03-30  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Rename Windows configuration Release_LTCG to Production for clarity
-        https://bugs.webkit.org/show_bug.cgi?id=57465
-
-        * DumpRenderTree/DumpRenderTree.sln:
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginProduction.vsprops: Copied from Tools/DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginReleaseLTCG.vsprops.
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginReleaseLTCG.vsprops: Removed.
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/DumpRenderTreeProduction.vsprops: Copied from Tools/DumpRenderTree/win/DumpRenderTreeReleaseLTCG.vsprops.
-        * DumpRenderTree/win/DumpRenderTreeReleaseLTCG.vsprops: Removed.
-        * DumpRenderTree/win/ImageDiff.vcproj:
-        * DumpRenderTree/win/ImageDiffProduction.vsprops: Copied from Tools/DumpRenderTree/win/ImageDiffReleaseLTCG.vsprops.
-        * DumpRenderTree/win/ImageDiffReleaseLTCG.vsprops: Removed.
-        * FindSafari/FindSafari.vcproj:
-        * FindSafari/FindSafariProduction.vsprops: Copied from Tools/FindSafari/FindSafariReleaseLTCG.vsprops.
-        * FindSafari/FindSafariReleaseLTCG.vsprops: Removed.
-        * MiniBrowser/Configurations/MiniBrowserProduction.vsprops: Copied from Tools/MiniBrowser/Configurations/MiniBrowserReleaseLTCG.vsprops.
-        * MiniBrowser/Configurations/MiniBrowserReleaseLTCG.vsprops: Removed.
-        * MiniBrowser/MiniBrowser.vcproj:
-        * Scripts/webkitdirs.pm:
-        * TestWebKitAPI/win/TestWebKitAPI.sln:
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        * TestWebKitAPI/win/TestWebKitAPIGenerated.vcproj:
-        * TestWebKitAPI/win/TestWebKitAPIInjectedBundle.vcproj:
-        * WebKitAPITest/WebKitAPITest.vcproj:
-        * WebKitAPITest/WebKitAPITestProduction.vsprops: Copied from Tools/WebKitAPITest/WebKitAPITestReleaseLTCG.vsprops.
-        * WebKitAPITest/WebKitAPITestReleaseLTCG.vsprops: Removed.
-        * WebKitLauncherWin/WebKitLauncherWin.vcproj:
-        * WebKitLauncherWin/WebKitLauncherWinProduction.vsprops: Copied from Tools/WebKitLauncherWin/WebKitLauncherWinReleaseLTCG.vsprops.
-        * WebKitLauncherWin/WebKitLauncherWinReleaseLTCG.vsprops: Removed.
-        * WebKitTestRunner/WebKitTestRunner.sln:
-        * WebKitTestRunner/win/InjectedBundle.vcproj:
-        * WebKitTestRunner/win/InjectedBundleGenerated.vcproj:
-        * WebKitTestRunner/win/InjectedBundleProduction.vsprops: Copied from Tools/WebKitTestRunner/win/InjectedBundleReleaseLTCG.vsprops.
-        * WebKitTestRunner/win/InjectedBundleReleaseLTCG.vsprops: Removed.
-        * WebKitTestRunner/win/WebKitTestRunner.vcproj:
-        * WebKitTestRunner/win/WebKitTestRunnerProduction.vsprops: Copied from Tools/WebKitTestRunner/win/WebKitTestRunnerReleaseLTCG.vsprops.
-        * WebKitTestRunner/win/WebKitTestRunnerReleaseLTCG.vsprops: Removed.
-        * WinLauncher/WinLauncher.vcproj:
-        * WinLauncher/WinLauncherProduction.vsprops: Copied from Tools/WinLauncher/WinLauncherReleaseLTCG.vsprops.
-        * WinLauncher/WinLauncherReleaseLTCG.vsprops: Removed.
-        * record-memory-win/record-memory-win.vcproj:
-        * record-memory-win/record-memory-winProduction.vsprops: Copied from Tools/record-memory-win/record-memory-winReleaseLTCG.vsprops.
-        * record-memory-win/record-memory-winReleaseLTCG.vsprops: Removed.
-
-2011-03-30  MORITA Hajime  <morrita@google.com>
-
-        Reviewed by Dimitri Glazkov.
-
-        [Chromium] Expose the shadow DOM to DumpRenderTree JS tests.
-        https://bugs.webkit.org/show_bug.cgi?id=56573
-
-        Added LayoutTestController.shadowRoot() to Chromium DRT.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::shadowRoot):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-
-2011-03-30  Yuta Kitamura  <yutak@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [Chromium] DumpRenderTree: Implement LayoutTestController::setPluginsEnabled
-        https://bugs.webkit.org/show_bug.cgi?id=57430
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setPluginsEnabled):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-
-2011-03-30  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Adam Barth.
-
-        make webkit-patch upload respect -d
-        https://bugs.webkit.org/show_bug.cgi?id=57425
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/tool/steps/commit.py:
-
-2011-03-30  Maciej Stachowiak  <mjs@apple.com>
-
-        Reviewed by Adam Barth.
-
-        Make "webkit-patch --dry-run --verbose land" log the SVN command it's going to use
-        https://bugs.webkit.org/show_bug.cgi?id=57429
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-
-2011-03-29  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r82383.
-        http://trac.webkit.org/changeset/82383
-        https://bugs.webkit.org/show_bug.cgi?id=57417
-
-        "nrwt isn't shutting down cleanly" (Requested by dpranke on
-        #webkit).
-
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-03-29  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Make validation message bubble testable
-        https://bugs.webkit.org/show_bug.cgi?id=57290
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (createWebViewAndOffscreenWindow): Change a setting so that validation
-          bubbles isn't hidden automatically.
-
-2011-03-29  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: use 'threads' on win instead of 'old-threads'
-
-        It's a bit unclear whether multiple threads or multiple
-        processes will be a better model on windows. This change will
-        test threads for now while we're still working out the bugs in
-        multiple-processes.
-
-        https://bugs.webkit.org/show_bug.cgi?id=57410
-
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-03-29  David Levin  <levin@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        check-webkit-style confused by two ChangeLog entries in a row from same user
-        https://bugs.webkit.org/show_bug.cgi?id=57250
-
-        * Scripts/webkitpy/style/checker.py: Add the line should be checked function to ChangeLogChecker.
-        * Scripts/webkitpy/style/checker_unittest.py: Fix test due to that new function.
-        * Scripts/webkitpy/style/checkers/changelog.py: Made this code aware of what lines were being checked.
-          It basically assumes only one ChangeLog entry is being processed because that is the standard case and
-          checking more than that would be very messey.
-        * Scripts/webkitpy/style/checkers/changelog_unittest.py: Add testing to catch the broken case.
-        * Scripts/webkitpy/style/error_handlers.py: Added should_line_be_checked.
-
-2011-03-29  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [Mac] Enable interactive-validation tests on Mac DRT
-        https://bugs.webkit.org/show_bug.cgi?id=57308
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (createWebViewAndOffscreenWindow): Enable the form interactive validation feature.
-
-2011-03-29  Chang Shu  <cshu@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        WebKitTestRunner needs layoutTestController.setAllowUniversalAccessFromFileURLs
-        https://bugs.webkit.org/show_bug.cgi?id=42692
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::setAllowUniversalAccessFromFileURLs):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2011-03-24  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] [DRT] GtkScrolledWindow adds three pixels of padding between the WebView and the scrollbar
-        https://bugs.webkit.org/show_bug.cgi?id=57067
-
-        Eliminate extra spacing between the DRT GtkScrolledWindow and the DRT WebView. This
-        will allow WebKit1GTK+ and WebKit2GTK+ to share test results. Followup commits will
-        update DRT and pixel results as hundreds of results will need to be updated.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (setDefaultsToConsistentStateValuesForTesting): Eliminate spacing on the GtkScrolledWindow
-        by overriding the theme RC/CSS files.
-
-2011-03-29  Steve Falkenburg  <sfalken@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Use per-configuration vsprops in tools projects to avoid WebKitVSPropsRedirectionDir removal by MSVC IDE
-        https://bugs.webkit.org/show_bug.cgi?id=57394
-
-        Visual Studio's IDE was removing instances of $(WebKitVSPropsRedirectionDir) from
-        InheritedPropertySheet rules in our vcproj files when the vcproj was edited from within
-        the IDE. To avoid this, add a separate vsprops file for each project configuration that
-        contains the required inherited property sheets.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginDebug.vsprops: Added.
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginDebugAll.vsprops: Added.
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginDebugCairoCFLite.vsprops: Added.
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginRelease.vsprops: Added.
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginReleaseCairoCFLite.vsprops: Added.
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginReleaseLTCG.vsprops: Added.
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/DumpRenderTreeDebug.vsprops: Added.
-        * DumpRenderTree/win/DumpRenderTreeDebugAll.vsprops: Added.
-        * DumpRenderTree/win/DumpRenderTreeDebugCairoCFLite.vsprops: Added.
-        * DumpRenderTree/win/DumpRenderTreeRelease.vsprops: Added.
-        * DumpRenderTree/win/DumpRenderTreeReleaseCairoCFLite.vsprops: Added.
-        * DumpRenderTree/win/DumpRenderTreeReleaseLTCG.vsprops: Added.
-        * DumpRenderTree/win/ImageDiff.vcproj:
-        * DumpRenderTree/win/ImageDiffDebug.vsprops: Added.
-        * DumpRenderTree/win/ImageDiffDebugAll.vsprops: Added.
-        * DumpRenderTree/win/ImageDiffDebugCairoCFLite.vsprops: Added.
-        * DumpRenderTree/win/ImageDiffRelease.vsprops: Added.
-        * DumpRenderTree/win/ImageDiffReleaseCairoCFLite.vsprops: Added.
-        * DumpRenderTree/win/ImageDiffReleaseLTCG.vsprops: Added.
-        * FindSafari/FindSafari.vcproj:
-        * FindSafari/FindSafariDebug.vsprops: Added.
-        * FindSafari/FindSafariDebugAll.vsprops: Added.
-        * FindSafari/FindSafariDebugCairoCFLite.vsprops: Added.
-        * FindSafari/FindSafariRelease.vsprops: Added.
-        * FindSafari/FindSafariReleaseCairoCFLite.vsprops: Added.
-        * FindSafari/FindSafariReleaseLTCG.vsprops: Added.
-        * FindSafari/FindSafariReleasePGO.vsprops: Added.
-        * MiniBrowser/Configurations/MiniBrowserDebug.vsprops: Added.
-        * MiniBrowser/Configurations/MiniBrowserDebugAll.vsprops: Added.
-        * MiniBrowser/Configurations/MiniBrowserDebugCairoCFLite.vsprops: Added.
-        * MiniBrowser/Configurations/MiniBrowserRelease.vsprops: Added.
-        * MiniBrowser/Configurations/MiniBrowserReleaseCairoCFLite.vsprops: Added.
-        * MiniBrowser/Configurations/MiniBrowserReleaseLTCG.vsprops: Added.
-        * MiniBrowser/MiniBrowser.vcproj:
-        * WebKitAPITest/WebKitAPITest.vcproj:
-        * WebKitAPITest/WebKitAPITestDebug.vsprops: Added.
-        * WebKitAPITest/WebKitAPITestDebugAll.vsprops: Added.
-        * WebKitAPITest/WebKitAPITestDebugCairoCFLite.vsprops: Added.
-        * WebKitAPITest/WebKitAPITestRelease.vsprops: Added.
-        * WebKitAPITest/WebKitAPITestReleaseCairoCFLite.vsprops: Added.
-        * WebKitAPITest/WebKitAPITestReleaseLTCG.vsprops: Added.
-        * WebKitLauncherWin/WebKitLauncherWin.vcproj:
-        * WebKitLauncherWin/WebKitLauncherWinDebug.vsprops: Added.
-        * WebKitLauncherWin/WebKitLauncherWinDebugAll.vsprops: Added.
-        * WebKitLauncherWin/WebKitLauncherWinDebugCairoCFLite.vsprops: Added.
-        * WebKitLauncherWin/WebKitLauncherWinRelease.vsprops: Added.
-        * WebKitLauncherWin/WebKitLauncherWinReleaseCairoCFLite.vsprops: Added.
-        * WebKitLauncherWin/WebKitLauncherWinReleaseLTCG.vsprops: Added.
-        * WebKitTestRunner/win/InjectedBundle.vcproj:
-        * WebKitTestRunner/win/InjectedBundleDebug.vsprops: Added.
-        * WebKitTestRunner/win/InjectedBundleDebugAll.vsprops: Added.
-        * WebKitTestRunner/win/InjectedBundleDebugCairoCFLite.vsprops: Added.
-        * WebKitTestRunner/win/InjectedBundleRelease.vsprops: Added.
-        * WebKitTestRunner/win/InjectedBundleReleaseCairoCFLite.vsprops: Added.
-        * WebKitTestRunner/win/InjectedBundleReleaseLTCG.vsprops: Added.
-        * WebKitTestRunner/win/WebKitTestRunner.vcproj:
-        * WebKitTestRunner/win/WebKitTestRunnerDebug.vsprops: Added.
-        * WebKitTestRunner/win/WebKitTestRunnerDebugAll.vsprops: Added.
-        * WebKitTestRunner/win/WebKitTestRunnerDebugCairoCFLite.vsprops: Added.
-        * WebKitTestRunner/win/WebKitTestRunnerRelease.vsprops: Added.
-        * WebKitTestRunner/win/WebKitTestRunnerReleaseCairoCFLite.vsprops: Added.
-        * WebKitTestRunner/win/WebKitTestRunnerReleaseLTCG.vsprops: Added.
-        * WinLauncher/WinLauncher.vcproj:
-        * WinLauncher/WinLauncherDebug.vsprops: Added.
-        * WinLauncher/WinLauncherDebugAll.vsprops: Added.
-        * WinLauncher/WinLauncherDebugCairoCFLite.vsprops: Added.
-        * WinLauncher/WinLauncherRelease.vsprops: Added.
-        * WinLauncher/WinLauncherReleaseCairoCFLite.vsprops: Added.
-        * WinLauncher/WinLauncherReleaseLTCG.vsprops: Added.
-        * record-memory-win/record-memory-win.vcproj:
-        * record-memory-win/record-memory-winDebug.vsprops: Added.
-        * record-memory-win/record-memory-winDebugAll.vsprops: Added.
-        * record-memory-win/record-memory-winDebugCairoCFLite.vsprops: Added.
-        * record-memory-win/record-memory-winRelease.vsprops: Added.
-        * record-memory-win/record-memory-winReleaseCairoCFLite.vsprops: Added.
-        * record-memory-win/record-memory-winReleaseLTCG.vsprops: Added.
-
-2011-03-29  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        test_runner2.py can crash due to undefined variable
-        https://bugs.webkit.org/show_bug.cgi?id=57356
-
-        Replace reference to undefined variable with a variable that's actually
-        defined.  AFAICT, there's no way to test this code.
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner2.py:
-
-2011-03-29  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        cleanup rebaseline-chromium-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=57375
-
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-            - Split _extract_and_add_new_baselines into 3 functions
-            - Reduce the amount of line wrapping (the file already has lines
-              over 80 col, so may as well try to make the file consistent)
-            - Remove unnecessary ()s
-
-2011-03-29  Brent Fulgham  <bfulgham@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Make WinCairo a core builder.
-        https://bugs.webkit.org/show_bug.cgi?id=57373
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py: Add WinCairo.
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py: Add WinCairo.
-
-2011-03-29  Timothy Hatcher  <timothy@apple.com>
-
-        Update update-webkit-localizable-strings to understand that WebKit and
-        WebKit2 strings go in WebCore.
-
-        Also make extract-localizable-strings optionally use an exclude file. No individual
-        warnings are produced about unlocalized strings when there is no exclude file. This
-        is needed for WebCore, since there are too many bare strings.
-
-        https://webkit.org/b/57354
-
-        Reviewed by Sam Weinig.
-
-        * Scripts/extract-localizable-strings: Support "-" to mean no exclude file.
-        * Scripts/update-webkit-localizable-strings: Update paths to scan WebCore and WebKit2.
-
-2011-03-29  Darin Adler  <darin@apple.com>
-
-        Reviewed by Adam Roben.
-
-        WebKit2 bundle page needs to offer generated file hooks
-        https://bugs.webkit.org/show_bug.cgi?id=57279
-
-        (Land missing part of the original patch after r82289.)
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage): Added new callbacks.
-
-2011-03-29  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        [chromium] NRWT should be able to read checksums from png comments
-        https://bugs.webkit.org/show_bug.cgi?id=57280
-
-        * Scripts/read-checksum-from-png: Added. Utility script to read the checksum
-            from a file.
-        * Scripts/webkitpy/common/system/filesystem.py: Add open_binary_file_for_reading
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        * Scripts/webkitpy/layout_tests/port/base.py: When loading a checksum,
-            if the -checksum.txt file doesn't exist, try looking in the png.
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/read_checksum_from_png.py: Added. Scan the first
-            2k for a png comment with the checksum
-        * Scripts/webkitpy/layout_tests/read_checksum_from_png_unittest.py: Added.
-
-2011-03-29  Philippe Normand  <pnormand@igalia.com>
-
-        Rubber-stamped by Gustavo Noronha Silva.
-
-        [GTK] http/tests/uri/username-with-no-hostname.html fails
-        https://bugs.webkit.org/show_bug.cgi?id=57325
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (willSendRequestCallback): URI host value check done case-insensitively.
-
-2011-03-29  Philippe Normand  <pnormand@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] http/tests/uri/username-with-no-hostname.html fails
-        https://bugs.webkit.org/show_bug.cgi?id=57325
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (willSendRequestCallback): Check URI before submitting the request
-        to WebCore.
-
-2011-03-29  Noel Gordon  <noel.gordon@gmail.com>
-
-        Reviewed by Ojan Vafai.
-
-        [chromium] DRT EventSender: remove identity from dragTargetDragEnter() calls
-        https://bugs.webkit.org/show_bug.cgi?id=57303
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::doDragDrop):
-        (EventSender::beginDragWithFiles):
-
-2011-03-29  Zoltan Horvath  <zoltan@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Add -print-loaded-urls option to Qt's MiniBrowser and to QtTestBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=57314
-
-        Provide possibility to print loaded urls to the standard output.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::BrowserWindow):
-        (BrowserWindow::printURL):
-        * MiniBrowser/qt/BrowserWindow.h:
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::handleUserOptions):
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-        (WindowOptions::WindowOptions):
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::initializeView):
-        (LauncherWindow::printURL):
-        (LauncherWindow::cloneWindow):
-        * QtTestBrowser/launcherwindow.h:
-        (WindowOptions::WindowOptions):
-        * QtTestBrowser/main.cpp:
-        (LauncherApplication::handleUserOptions):
-
-2011-03-29  Gabor Loki  <loki@webkit.org>
-
-        Rubber-stamped by Csaba Osztrogonác.
-
-        [Qt] Teach build-jsc how to build JavaScriptCore on Qt
-        https://bugs.webkit.org/show_bug.cgi?id=56918
-
-        * Scripts/build-jsc: Remove duplicated --qt options to avoid passing them to qmake.
-
-2011-03-28  Gabor Loki  <loki@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt] Teach build-jsc how to build JavaScriptCore on Qt
-        https://bugs.webkit.org/show_bug.cgi?id=56918
-
-        * Scripts/build-jsc:
-        * Scripts/webkitdirs.pm:
-
-2011-03-28  Andrew Foster  <andrewf@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        webkit-patch should be more intelligent about whether a bug applies to a patch
-        Create a new function, parse_bug_id_from_changelog() which determines
-        that a bug is related to a patch by parsing the output generated from
-        prepare-ChangeLog, rather than arbitrarily matching a URL to a bug in
-        the description of a patch.
-        https://bugs.webkit.org/show_bug.cgi?id=56989
-
-        * Scripts/webkitpy/common/checkout/api.py:
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        * Scripts/webkitpy/common/net/bugzilla/__init__.py:
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla_unittest.py:
-        * Scripts/webkitpy/style/checkers/changelog.py:
-        * Scripts/webkitpy/tool/commands/upload.py:
-
-2011-03-28  Maciej Stachowiak  <mjs@apple.com>
-
-        Revert accidentally commited change.
-
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        (-[ResourceLoadDelegate webView:resource:willSendRequest:redirectResponse:fromDataSource:]):
-
-2011-03-28  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        [chromium] have DRT write the png checksum into a png comment
-        https://bugs.webkit.org/show_bug.cgi?id=57255
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::dumpImage):
-
-2011-03-28  Adele Peterson  <adele@apple.com>
-
-        Removing Qt stub, since it doesn't use the same header as the others.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-
-2011-03-28  Adele Peterson  <adele@apple.com>
-
-        Added a few more stubs.
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::hasGrammarMarker):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::hasGrammarMarker):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::hasGrammarMarker):
-
-2011-03-28  Adele Peterson  <adele@apple.com>
-
-        Build fix.
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::hasGrammarMarker):
-
-2011-03-28  Adele Peterson  <adele@apple.com>
-
-        Reviewed by Eric Seidel.
-
-        Testing support for <rdar://problem/9112694> REGRESSION (r79411): "Check grammar with spelling" context menu doesn't check as you type
-        https://bugs.webkit.org/show_bug.cgi?id=57173
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (hasGrammarMarkerCallback): Added.
-        (LayoutTestController::staticFunctions): Added case for hasGrammarMarker.
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/mac/DumpRenderTree.mm: (createWebViewAndOffscreenWindow): Call setGrammarCheckingEnabled.
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm: (LayoutTestController::hasGrammarMarker): Added. Call new hasGrammarMarker method.
-
-2011-03-28  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Benjamin Poulain.
-
-        [Qt] QtWebKit will not compile with QT_ASCII_CAST_WARNINGS enabled
-        https://bugs.webkit.org/show_bug.cgi?id=57087
-
-        Trivial typo fix after r82082.
-
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-        (WTR::activateFonts):
-
-2011-03-28  Alexis Menard  <alexis.menard@openbossa.org>
-
-        Reviewed by Andreas Kling.
-
-        Add myself to the committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-03-28  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        WebKit2 unfortunately uses code from WebKit, so MiniBrowser needs
-        to link against WebKit.framework for now.
-
-        * MiniBrowser/MiniBrowser.xcodeproj/project.pbxproj:
-
-2011-03-28  Benjamin Poulain  <benjamin.poulain@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] QtWebKit will not compile with QT_ASCII_CAST_WARNINGS enabled
-        https://bugs.webkit.org/show_bug.cgi?id=57087
-
-        Disable QT_ASCII_CAST_WARNINGS for applications.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/ImageDiff.pro:
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * QtTestBrowser/QtTestBrowser.pro:
-        * WebKitTestRunner/qt/WebKitTestRunner.pro:
-
-2011-03-28  Andreas Kling  <kling@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] QtTestBrowser doesn't reset its window title when opening about:blank
-        https://bugs.webkit.org/show_bug.cgi?id=57224
-
-        * QtTestBrowser/mainwindow.cpp:
-        (MainWindow::buildUI):
-        (MainWindow::onTitleChanged):
-        * QtTestBrowser/mainwindow.h:
-
-2011-03-27  Jer Noble  <jer.noble@apple.com>
-
-        Reviewed by Maciej Stachowiak.
-
-        Full Screen: disable keyboard access by default
-        https://bugs.webkit.org/show_bug.cgi?id=56684
-
-        Accept the withKeyboard parameter to supportsFullScreenForElement.
-
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:supportsFullScreenForElement:withKeyboard:]):
-
-2011-03-27  Patrick Gansterer  <paroga@webkit.org>
-
-        Reviewed by David Levin.
-
-        check-webkit-style should check ChangeLog for a valid bug number
-        https://bugs.webkit.org/show_bug.cgi?id=57184
-
-        * Scripts/webkitpy/style/checker.py:
-        * Scripts/webkitpy/style/checker_unittest.py:
-        * Scripts/webkitpy/style/checkers/changelog.py: Added.
-        * Scripts/webkitpy/style/checkers/changelog_unittest.py: Added.
-
-2011-03-27  Benjamin Poulain  <benjamin.poulain@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] QtWebKit will not compile with QT_ASCII_CAST_WARNINGS enabled
-        https://bugs.webkit.org/show_bug.cgi?id=57087
-
-        Use explicit conversion for string to avoid depending on the default codec
-        installed by the user code.
-
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-        (WTR::activateFonts):
-
-2011-03-26  Maciej Stachowiak  <mjs@apple.com>
-
-        Revert inadvertantly committed changes.
-
-        * Scripts/old-run-webkit-tests:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-03-26  Andreas Kling  <kling@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Show page icons (favicons) in QtTestBrowser location bar.
-        https://bugs.webkit.org/show_bug.cgi?id=57162
-
-        * QtTestBrowser/QtTestBrowser.qrc:
-        * QtTestBrowser/favicon.png: Added.
-        * QtTestBrowser/locationedit.cpp:
-        (defaultPageIcon):
-        (LocationEdit::LocationEdit):
-        (LocationEdit::setPageIcon):
-        (LocationEdit::resizeEvent):
-        (LocationEdit::updateInternalGeometry):
-        * QtTestBrowser/locationedit.h:
-        * QtTestBrowser/mainwindow.cpp:
-        (MainWindow::buildUI):
-        (MainWindow::onIconChanged):
-        (MainWindow::onLoadStarted):
-        * QtTestBrowser/mainwindow.h:
-
-2011-03-23  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] Force DumpRenderTree to use 96 DPI
-        https://bugs.webkit.org/show_bug.cgi?id=56866
-
-        Make sure that GTK+ is set to use 96 DPI when running tests. This ensures
-        broader compatibility with WebKit2 and makes setting font sizes more straightforward.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (initializeGtkFontSettings): Set the screen resolution and GTK+ xft property to 96 DPI.
-        (resetDefaultsToConsistentValues):Remove the call which repeatedly set the GDK screen resolution.
-        (setDefaultsToConsistentStateValuesForTesting): Update the font sizes to reflect the new DPI.
-
-2011-03-25  Andy Estes  <aestes@apple.com>
-
-        Reviewed by Adele Peterson.
-
-        REGRESSION (r70748): latest nightly builds kills AC_QuickTime.js
-        https://bugs.webkit.org/show_bug.cgi?id=49016
-
-        TestNetscapePlugIn needs to register support for an image MIME type so
-        we can test that the embed tag prefers plug-ins to render image MIME
-        types.
-
-        * DumpRenderTree/TestNetscapePlugIn/mac/Info.plist: Register image/png.
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NP_GetMIMEDescription): Ditto.
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.rc: Ditto.
-
-2011-03-25  Jessie Berlin  <jberlin@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        WebKit2: Need to be able to set and get the Cookie Storage Policy.
-        https://bugs.webkit.org/show_bug.cgi?id=50780
-
-        Add a test for getting and setting the HTTP Cookie Accept Policy in WebKit2.
-
-        The test is named "CookieManager" so that we can eventually exercise more of the
-        CookieManager functionality in the test.
-
-        * TestWebKitAPI/Tests/WebKit2/CookieManager.cpp: Added.
-        (TestWebKitAPI::didGetTestHTTPCookieAcceptPolicy):
-        Assert that the policy returned is equal to the policy set in
-        didGetUserHTTPCookieAcceptPolicy, and then restore the user's policy.
-        (TestWebKitAPI::didGetUserHTTPCookieAcceptPolicy):
-        Set the policy to something different than the user's policy and get the policy again.
-        (TestWebKitAPI::didFinishLoadForFrame):
-        Get the user's policy so that it can be restored at the end of the test.
-        (TestWebKitAPI::TEST):
-        Load about:blank so that the Web Process gets instatiated (needed to get the
-        CookieManager).
-
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        Add CookieManager.cpp.
-
-2011-03-24  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Fix the build so that gcc-4.1 and up can be used to build on SnowLeopard.
-
-        * wx/build/settings.py:
-
-2011-03-24  Ilya Sherman  <isherman@chromium.org>
-
-        Reviewed by Adam Roben.
-
-        Implement layoutTestController.setAutoFilled in DRT on Windows
-        https://bugs.webkit.org/show_bug.cgi?id=56828
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setAutofilled): Implemented.
-
-2011-03-24  Brent Fulgham  <bfulgham@webkit.org>
-
-        Unreviewed build correction.
-
-        Correct vsprops file for Debug variant of the CFLite build.
-        Disable a CFNETWORK-specific test when building for CFLite.
-
-        * TestWebKitAPI/Configurations/TestWebKitAPIDebugCairoCFLite.vsprops:
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-
-2011-03-24  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        fix regressions introduced in 81908 - there were a couple of
-        code paths that only fired under python 2.5 that I missed.
-
-        Also change a couple of 'python' references to sys.executable
-        in order to handle runing test-webkitpy with a binary other than
-        something called 'python'.
-
-        https://bugs.webkit.org/show_bug.cgi?id=57063
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        * Scripts/webkitpy/test/cat.py:
-        * Scripts/webkitpy/test/echo.py:
-
-2011-03-24  Brent Fulgham  <bfulgham@webkit.org>
-
-        Unreviewed build correction.
-
-        Add a stub implementation of the TestInvocation dumping logic.
-        Update project files to reflect new file.
-
-        * WebKitTestRunner/cairo: Added.
-        * WebKitTestRunner/cairo/TestInvocationCairo.cpp: Added.
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-        * WebKitTestRunner/win/WebKitTestRunner.vcproj:
-
-2011-03-24  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        new-run-webkit-tests: clean up worker model defaults. This
-        changes the default behavior to 'threads' instead of
-        'old-threads', and clarifies that chromium-win-* and
-        chromium-mac-leopard are exceptions.
-
-        https://bugs.webkit.org/show_bug.cgi?id=56971
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-03-23  Leandro Gracia Gil  <leandrogracia@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        Media Stream API: fix the order of the options in build-webkit.
-        https://bugs.webkit.org/show_bug.cgi?id=56949
-
-        Fix the order of the options in build-webkit.
-
-        * Scripts/build-webkit:
-
-2011-03-23  Adam Klein  <adamk@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        Add an option to new-run-webkit-httpd to allow overriding the location of LayoutTests directory
-        https://bugs.webkit.org/show_bug.cgi?id=56884
-
-        This option will be utilized by Chromium's ui_tests to allow
-        referencing js-test-resources from a layout test over HTTP.
-
-        * Scripts/new-run-webkit-httpd:
-        Added --layout_tests_dir option.
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-        Plumbed through as layout_tests_dir param.
-
-2011-03-23  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        new-run-webkit-tests: run tests in ascending alphabetical order per
-        dir. This is a second attempt at the fix; the first attempt, in 
-        r81597, broke the behavior on the old-inline and old-threads
-        worker models.
-
-        https://bugs.webkit.org/show_bug.cgi?id=56760
-
-        * Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-03-23  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] GTK's DRT to ouput detail's string for the 'property-change' signal
-        https://bugs.webkit.org/show_bug.cgi?id=56953
-
-        Print the string for the detail of 'property-change' signal.
-
-        * DumpRenderTree/gtk/AccessibilityCallbacks.cpp:
-        (axObjectEventListener): Print the detail string.
-
-2011-03-23  Yury Semikhatsky  <yurys@chromium.org>
-
-        Reviewed by Pavel Feldman.
-
-        [V8] Web Inspector: compile DebuggerScript.js into DebuggerScriptSource.h
-        https://bugs.webkit.org/show_bug.cgi?id=56843
-
-        * DumpRenderTree/chromium/DRTDevToolsAgent.cpp:
-        * DumpRenderTree/chromium/DRTDevToolsAgent.h:
-
-2011-03-22  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Teach update-webkit about gyp
-        https://bugs.webkit.org/show_bug.cgi?id=56881
-
-        This makes it possible for someone who builds from Xcode
-        to just run update-webkit --gyp and have the project files
-        generated after update automatically.
-
-        I also added a stand-alone "generate-project-files" script
-        wrapping Source/gyp/configure.  This makes running gyp simpler
-        since most people will not have gyp or Source/gyp in their path.
-
-        * Scripts/build-webkit:
-        * Scripts/generate-project-files: Added.
-        * Scripts/update-webkit:
-
-2011-03-22  Anton D'Auria  <adauria@apple.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Add +[WebApplicationCache getOriginsWithCache]
-        https://bugs.webkit.org/show_bug.cgi?id=56722
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (originsWithApplicationCacheCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp: Added stub.
-        (LayoutTestController::originsWithApplicationCache):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp: Added stub.
-        (LayoutTestController::originsWithApplicationCache):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm: Pass array of origin's database identifiers.
-        (originsArrayToJS): Helper function for converting array of WebSecurityOrigins to a JS array of origin identifiers.
-        (LayoutTestController::originsWithApplicationCache):
-        (LayoutTestController::originsWithLocalStorage):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp: Added stub.
-        (LayoutTestController::originsWithApplicationCache):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp: Added stub.
-        (LayoutTestController::originsWithApplicationCache):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp: Added stub.
-        (LayoutTestController::originsWithApplicationCache):
-
-2011-03-22  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add support to build-webkit for building with gyp-generated project files
-        https://bugs.webkit.org/show_bug.cgi?id=56877
-
-        build-webkit is a cesspool.  This change just hacks in --gyp support for Mac.
-        Eventually we'll want to support gyp-generated projects in a more general manner.
-
-        * Scripts/build-webkit:
-
-2011-03-22  David Kilzer  <ddkilzer@apple.com>
-
-        <http://webkit.org/b/56781> Add --dsym switch to enable dsym generation when building with Xcode
-
-        Reviewed by Joseph Pecoraro.
-
-        * Scripts/build-webkit: Updated usage statement to include
-        --dsym.
-        * Scripts/webkitdirs.pm: Added $generateDsym variable.
-        (generateDsym): Added. Call determineGenerateDsym() and
-        return $generateDsym.
-        (determineGenerateDsym): Added.  Parse @ARGV for --dsym and set
-        $generateDsym.
-        (argumentsForXcode): Added.  Returns additional arguments for
-        xcodebuild based on command-line switches.
-        (XcodeOptions): Updated to include argumentsForXcode() in the
-        array returned.
-
-2011-03-22  Adam Roben  <aroben@apple.com>
-
-        Make Leopard Debug bots and Windows XP Debug (Tests) core builders
-
-        These bots are consistently green again.
-
-        Fixes <http://webkit.org/b/56830> Leopard Debug bots and Windows XP Debug (Tests) should be
-        core builders
-
-        Rubber-stamped by Antti Koivisto.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        (BuildBot.__init__): Loosened the regexps for Leopard and Windows.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-        (BuildBotTest.test_builder_name_regexps): Updated expectations.
-
-2011-03-21  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r81597.
-        http://trac.webkit.org/changeset/81597
-        https://bugs.webkit.org/show_bug.cgi?id=56801
-
-        Change results in lots of unexpected flaky on the dashboard.
-        (Requested by pfeldman on #webkit).
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-03-21  Sam Weinig  <sam@webkit.org>
-
-        Fix failing tests on the WebKit2 bots.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-
-2011-03-21  Daniel Sievers  <sievers@google.com>
-
-        Reviewed by Simon Fraser.
-
-        [Chromium] Make RenderAsTextBehavior and LayerTreeAsTextBehavior tweakable from the DumpRenderTree commandline
-        https://bugs.webkit.org/show_bug.cgi?id=56139
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::layerTreeAsText):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController::setShowDebugLayerTree):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::runFileTest):
-        (TestShell::dump):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestParams::TestParams):
-
-2011-03-21  Adam Roben  <aroben@apple.com>
-
-        Try again to get buildbot to show run-javascriptcore-tests's actual.html as an HTML file
-
-        Fixes <http://webkit.org/b/56746> build.webkit.org shows run-javascriptcore-tests's HTML
-        output as plain text
-
-        Reviewed by David Kilzer.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (RunJavaScriptCoreTests): List actual.html as one of our log files so it will get uploaded
-        to the master.
-        (RunJavaScriptCoreTests.commandComplete): Reading the actual.html file here won't work,
-        since we're running on the build master, not the slave. Instead, turn the raw source of
-        actual.html which the build slave uploaded into an HTML log.
-
-2011-03-21  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        new-run-webkit-tests: run tests in ascending alphabetical order per dir
-        https://bugs.webkit.org/show_bug.cgi?id=56760
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-
-2011-03-21  Leandro Gracia Gil  <leandrogracia@chromium.org>
-
-        Reviewed by Steve Block.
-
-        Media Stream API patch 0: adding compilation guards.
-        https://bugs.webkit.org/show_bug.cgi?id=56458
-
-        Adding options to enable the media stream API feature in Chromium.
-
-        * Scripts/build-webkit:
-
-2011-03-21  Qi Zhang  <qi.2.zhang@nokia.com>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt] Add a command line option to capture stdout and stderr for DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=56323
-
-        Using freopen to redirect STDOUT and STDERR when DumpRenderTree command line provide 
-        "--stdout" or "--stderr" option.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::~DumpRenderTree):
-        (WebCore::DumpRenderTree::processArgsLine):
-        (WebCore::DumpRenderTree::loadNextTestInStandAloneMode):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        (WebCore::DumpRenderTree::setRedirectOutputFileName):
-        (WebCore::DumpRenderTree::setRedirectErrorFileName):
-        * DumpRenderTree/qt/main.cpp:
-        (isOption):
-        (takeOptionValue):
-        (printUsage):
-        (main):
-
-2011-03-21  Adam Roben  <aroben@apple.com>
-
-        Fix exceptions on the buildbot due to my last change
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (RunJavaScriptCoreTests.commandComplete): Catch exceptions due to actual.html not existing.
-
-2011-03-21  Adam Roben  <aroben@apple.com>
-
-        Teach buildbot to treat run-javascriptcore-tests's actual.html as an HTML file
-
-        Fixes <http://webkit.org/b/56746> build.webkit.org shows run-javascriptcore-tests's HTML
-        output as plain text
-
-        Reviewed by Darin Adler.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (RunJavaScriptCoreTests): Removed the logfiles variable, which can only handle plaintext
-        logs.
-        (RunJavaScriptCoreTests.commandComplete): Use the addHTMLLog method to upload actual.html to
-        the build master. This will correctly treat it as HTML.
-
-2011-03-20  Bill Budge  <bbudge@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Rename ThreadSafeShared to ThreadSafeRefCounted
-        https://bugs.webkit.org/show_bug.cgi?id=56714
-
-        No new tests. Exposes no new functionality.
-
-        * DumpRenderTree/ForwardingHeaders/wtf/ThreadSafeRefCounted.h: Copied from DumpRenderTree/ForwardingHeaders/wtf/ThreadSafeShared.h.
-        * DumpRenderTree/ForwardingHeaders/wtf/ThreadSafeShared.h: Removed.
-        * Scripts/do-webcore-rename:
-
-2011-03-19  Anton D'Auria  <adauria@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        Add stub to LayoutTestControllerGtk.cpp to fix GTK build
-        https://bugs.webkit.org/show_bug.cgi?id=56719
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp: Adding stub.
-        (LayoutTestController::clearApplicationCacheForOrigin):
-
-2011-03-19  Anton D'Auria  <adauria@apple.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        ApplicationCacheGroup is not obsolete after being deleted via ApplicationCacheStorage::deleteEntriesForOrigin
-        https://bugs.webkit.org/show_bug.cgi?id=56415
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (clearApplicationCacheForOriginCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp: Adding stubs.
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::clearAllApplicationCaches):
-        (LayoutTestController::clearApplicationCacheForOrigin): 
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm: Adding stub.
-        (LayoutTestController::clearApplicationCacheForOrigin):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp: Adding stub.
-        (LayoutTestController::clearApplicationCacheForOrigin):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp: Adding stub.
-        (LayoutTestController::clearApplicationCacheForOrigin):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp: Adding stub.
-        (LayoutTestController::clearApplicationCacheForOrigin):
-
-2011-03-18  Dan Bernstein  <mitz@apple.com>
-
-        Revised build fix for r81135.
-
-        * WebKitTestRunner/Configurations/InjectedBundle.xcconfig:
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-
-2011-03-18  Adam Roben  <aroben@apple.com>
-
-        Windows build fix
-
-        * WebKitTestRunner/config.h: Add a missing #endif.
-
-2011-03-18  Andreas Kling  <kling@webkit.org>
-
-        Unbreak Qt build after r81494.
-
-        * WebKitTestRunner/qt/TestInvocationQt.cpp:
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-
-2011-03-18  Sam Weinig  <sam@webkit.org>
-
-        Fix windows build. This was really Adam Roben's fault. I swear!
-
-        * WebKitTestRunner/config.h:
-
-2011-03-18  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Pixel tests don't work in WebKitTestRunner on Windows
-        https://bugs.webkit.org/show_bug.cgi?id=56630
-
-        Cross-platformize (Mac and Windows CG) the pixel dumping code in WebKitTestRunner to use WebKit2
-        built-in snapshotting instead of using the window server on the Mac.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::InjectedBundle):
-        (WTR::InjectedBundle::didReceiveMessage):
-        (WTR::InjectedBundle::beginTesting):
-        (WTR::InjectedBundle::done):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (WTR::InjectedBundle::setPixelResult):
-        (WTR::InjectedBundle::shouldDumpPixels):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::dump):
-        Take the snapshot in the bundle and send it to the UIProcess for dumping.
-
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::invoke):
-        (WTR::TestInvocation::dump):
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-        * WebKitTestRunner/TestInvocation.h:
-        * WebKitTestRunner/cg: Added.
-        * WebKitTestRunner/cg/TestInvocationCG.cpp: Copied from WebKitTestRunner/mac/TestInvocationMac.mm.
-        (WTR::createCGContextFromImage):
-        (WTR::computeMD5HashStringForContext):
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-        * WebKitTestRunner/mac/TestInvocationMac.mm: Removed.
-        Making pixel dumping code shared for CG ports. Also use the WTF/MD5 instead of platform specific code.
-
-        * WebKitTestRunner/win/TestInvocationWin.cpp:
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-        Keep stub for Cairo build.
-
-        * WebKitTestRunner/Configurations/WebKitTestRunnerCoreGraphics.vsprops: Added.
-        Add CG configuration.
-
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-        * WebKitTestRunner/win/WebKitTestRunner.vcproj:
-        Add new files.
-
-2011-03-18  Adam Roben  <aroben@apple.com>
-
-        Don't allow Leaks Viewer's vertical scrollbar to cover up long function names
-
-        Rubber-stamped by Simon Fraser.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksViewer.css:
-        (.data-grid .data-container): Use overflow-y:auto instead of the Inspector's default
-        overflow-y:overlay so that the scrollbar doesn't overlay the content.
-
-2011-03-18  Adam Roben  <aroben@apple.com>
-
-        Don't ellipsize long or indented function names in Leaks Viewer
-
-        Fixes <http://webkit.org/b/56037> Leaks viewer needs horizontal
-        scrollbar
-
-        Reviewed by Simon Fraser.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksViewer.css:
-        (.data-grid .data-container):
-        (.data-grid td > div, .data-grid th > div):
-        Allow the contents to extend to the right.
-
-2011-03-18  Adam Roben  <aroben@apple.com>
-
-        Fix some leaks in DRT seen on the leaks bot
-
-        Fixes <http://webkit.org/b/56638> addURLToRedirectCallback and
-        setWillSendRequestClearHeaderCallback in DRT are leaky
-
-        Reviewed by Alexey Proskuryakov.
-
-        * DumpRenderTree/ForwardingHeaders/wtf/OwnArrayPtr.h: Added.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (addURLToRedirectCallback):
-        (setWillSendRequestClearHeaderCallback):
-        Use OwnArrayPtr to cause the strings to be deleted.
-
-2011-03-18  Adam Roben  <aroben@apple.com>
-
-        Fix a NSURLCredential leak seen on the leaks bot
-
-        Fixes <http://webkit.org/b/56637> -[SynchronousLoader
-        connection:didReceiveAuthenticationChallenge:] is leaky
-
-        Reviewed by John Sullivan.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (-[SynchronousLoader connection:didReceiveAuthenticationChallenge:]): Use a RetainPtr to
-        cause the NSURLCredential to be released.
-
-2011-03-18  John Knottenbelt  <jknotten@chromium.org>
-
-        Unreviewed.
-
-        Remove unnecessary brackets around my email address.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-03-18  Adam Roben  <aroben@apple.com>
-        
-        Remove some files I accidentally added in r81454
-
-        * WebKitTestRunner/Configurations/WebKitTestRunnerCoreGraphics.vsprops: Removed.
-        * WebKitTestRunner/cg/TestInvocationCG.cpp: Removed.
-
-2011-03-18  Adam Roben  <aroben@apple.com>
-
-        Ignore an NSNumberFormatter leak on SnowLeopard
-
-        * Scripts/old-run-webkit-tests:
-        (countAndPrintLeaks): Ignore leaks in -[NSNumberFormatter
-        getObjectValue:forString:errorDescription:].
-
-2011-03-18  Adam Roben  <aroben@apple.com>
-
-        Fix a leak beneath LayoutTestController::authenticateSession seen on the bots
-
-        Rubber-stamped by Mark Rowe.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::authenticateSession): Use a RetainPtr to cause the NSURLRequest to be
-        released.
-
-2011-03-17  Adam Roben  <aroben@apple.com>
-
-        Address a review comment I missed in r81445
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksParserWorker.js:
-        (LeaksParserWorker.prototype._parseLeaks): Anchor the RegExp used to find the number of
-        leaked bytes to speed up searching on long lines.
-
-2011-03-17  Adam Roben  <aroben@apple.com>
-
-        Mark leaky builds orange, even if all regression tests passed
-
-        Fixes <http://webkit.org/b/56609> SnowLeopard Intel Leaks bot appears green on
-        build.webkit.org when all tests pass even though there are still leaks
-
-        Reviewed by Dan Bernstein.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (RunWebKitLeakTests): Set the warnOnWarnings property to True so that the entire build will
-        be marked orange if this build step generates warnings.
-
-2011-03-17  Adam Roben  <aroben@apple.com>
-
-        Allow values in Leaks Viewer to be shown as percentages
-
-        Double-clicking on a column will toggle between showing percentages and showing real values.
-
-        Fixes <http://webkit.org/b/56628> Would like to view values as percentages of the total
-        number of leaked bytes in Leaks Viewer
-
-        Reviewed by Joe Pecoraro.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksParserWorker.js:
-        (LeaksParserWorker.prototype._incorporateLeaks): Calculate the (never-shown) top-level
-        node's totalTime, which is used in calculating percentages.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/WebInspectorShims.js:
-        (monkeyPatchInspectorObjects): Only format values as bytes if we aren't supposed to be
-        showing them as percentages.
-
-2011-03-17  Adam Roben  <aroben@apple.com>
-
-        Show the number of leaked bytes, not just leaked allocations, in Leaks Viewer
-
-        The Self and Total columns now report the number of leaked bytes. The new Calls column shows
-        the number of leaked allocations. And the new Average column shows the average number of
-        leaked bytes per call.
-
-        Fixes <http://webkit.org/b/56344> Leaks Viewer should show how many bytes were leaked, not
-        just how many allocations
-
-        Reviewed by Joe Pecoraro.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksParserWorker.js:
-        (LeaksParserWorker.prototype._parseLeaks): Parse the number of leaked bytes from the "Leak:"
-        line and store it with the leak stack.
-        (LeaksParserWorker.prototype._createNode): Initialize the averageTime and numberOfCalls
-        properties.
-        (LeaksParserWorker.prototype._incorporateLeaks): Updated to get the stack from the .stack
-        property, and changed to store the number of leaked bytes in .selfTime/.totalTime.
-        .numberOfCalls now holds the number of leaked allocations.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/WebInspectorShims.js:
-        (Preferences): Set samplingCPUProfiler to false so that the Average and Calls columns will
-        appear.
-        (monkeyPatchInspectorObjects): Format the values as bytes.
-
-2011-03-17  Adam Roben  <aroben@apple.com>
-
-        Make Leaks Viewer able to count leaks in builds that didn't fail any regression tests
-
-        Fixes <http://webkit.org/b/56626> Leaks Viewer omits recent builds which didn't fail any
-        regression tests
-
-        Reviewed by James Robinson.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/RecentBuildsLoader.js:
-        (RecentBuildsLoader.prototype.start): Get the number of leaks out of the "text" array, which
-        is always populated, even when all regression tests pass.
-
-2011-03-10  Hayato Ito  <hayato@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Add a check logic for reftests in case that a reftest is marked AS REBASELINE.
-
-        https://bugs.webkit.org/show_bug.cgi?id=56076
-
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-
-2011-03-17  Adam Roben  <aroben@apple.com>
-
-        Skip a compositing-sensitive test when accelerated compositing is disabled
-
-        Reviewed by Sam Weinig.
-
-        * Scripts/old-run-webkit-tests: Skip media/media-document-audio-repaint.html when
-        accelerated compositing is disabled.
-
-2011-03-17  Adam Roben  <aroben@apple.com>
-
-        Start using PlatformSpecificScheduler for the Mac builders
-
-        The current set of file/directory patterns should work for Mac builders. We may discover
-        that there are more files and directories we can exclude from the Mac builds, but they can
-        be added later.
-
-        Fixes <http://webkit.org/b/56593> Mac builders do lots of unnecessary builds
-
-        Reviewed by Mark Rowe.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Moved the Mac builders into two
-        PlatformSpecificSchedulers: one for Leopard, and one for SnowLeopard.
-
-        * Scripts/webkitpy/common/config/build.py:
-        (_should_file_trigger_build): Allow "mac-leopard" and "mac-snowleopard" platforms, and
-        cleaned up patterns a little bit.
-
-        * Scripts/webkitpy/common/config/build_unittest.py:
-        (ShouldBuildTest): Fixed some expected results.
-        (ShouldBuildTest.test_should_build): Start testing "mac-leopard" and "mac-snowleopard"
-        platforms.
-
-2011-03-17  Jeff Miller  <jeffm@apple.com>
-
-        Use a consistent set of file patterns in the svn:ignore property for all .xcodeproj directories, specifically:
-        
-        *.mode*
-        *.pbxuser
-        *.perspective*
-        project.xcworkspace
-        xcuserdata
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj: Modified property svn:ignore.
-        * MiniBrowser/MiniBrowser.xcodeproj: Modified property svn:ignore.
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj: Modified property svn:ignore.
-        * WebKitLauncher/WebKitLauncher.xcodeproj: Modified property svn:ignore.
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj: Modified property svn:ignore.
-
-2011-03-17  Adam Roben  <aroben@apple.com>
-
-        Make old-run-webkit-tests pick up mac-wk2 results when running in WebKit2 mode on Windows
-
-        Fixes <http://webkit.org/b/56563> Running WebKit2 tests on Windows should use results from
-        mac-wk2
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/old-run-webkit-tests:
-        (expectedDirectoryForTest): Clean up the code to search in extra Mac platform result
-        directories on Windows. Add mac-wk2 to the set of extra platforms we look in on Windows when
-        we're running in WebKit2 mode.
-
-2011-03-17  Mikhail Naganov  <mnaganov@chromium.org>
-
-        Reviewed by Yury Semikhatsky.
-
-        Web Inspector: Clean up Inspector strings.
-        https://bugs.webkit.org/show_bug.cgi?id=56557
-
-        Modify the script to deal correctly with "\xNN" escapes, and to
-        check strings in Chromium's DevTools.js.
-
-        * Scripts/check-inspector-strings:
-
-2011-03-17  Keith Kyzivat  <keith.kyzivat@nokia.com>
-
-        Reviewed by Benjamin Poulain.
-
-        Update autoinstall to install mechanize 0.2.4
-        https://bugs.webkit.org/show_bug.cgi?id=56499
-
-        Newer versions of mechanize support HTTPS proxies, which is necessary
-        for people using webkit-patch behind firewalls.
-
-        * Scripts/webkitpy/common/system/autoinstall.py:
-        * Scripts/webkitpy/thirdparty/__init__.py:
-
-2011-03-16  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        REGRESSION (r81084): media/invalid-media-url-crash.html and editing/execCommand/indent-paragraphs.html failing on WebKit2
-        https://bugs.webkit.org/show_bug.cgi?id=56541
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::willSendRequestForFrame):
-        Check for an empty host in addition to a null host.  This bug was introduced
-        when porting off of the KURL code and onto the WKURLRef version.
-
-2011-03-16  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        Add Lucas Forschler to the list of WebKit committers.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-03-16  Sam Weinig  <sam@webkit.org>
-
-        Reviewed upon and dictated through Adam Roben.
-
-        Escape crashing function names in results.html. This fixes an issue
-        when a crash involves a type with templates.
-
-        * Scripts/old-run-webkit-tests:
-
-2011-03-16  Daniel Sievers  <sievers@google.com>
-
-        Reviewed by James Robinson.
-
-        Add setting to always force compositing mode
-        https://bugs.webkit.org/show_bug.cgi?id=56156
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::resetWebSettings):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::setForceCompositingMode):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-
-2011-03-15  Hayato Ito  <hayato@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Ignore files that will be used by reftests in old-run-webkit-tests.
-
-        https://bugs.webkit.org/show_bug.cgi?id=55936
-
-        * Scripts/old-run-webkit-tests:
-
-2011-03-15  Felipe Oliveira da Silva Netto  <f.dachshund@gmail.com>
-
-        Reviewed by Adam Roben.
-
-        Function relativeScriptsDir doesn't return the correct relative
-        Scripts directory.
-
-        * Scripts/webkitdirs.pm:
-        (relativeScriptsDir): Ensure we use the directory that contains
-        webkitdirs.pm, not the one that contains the original script that
-        was invoked.
-
-2011-03-15  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fixes for long linker commands on Win and method return error, plus a Mac
-        fix to link against the Security framework after recent WebKitSystemInterface changes.
-
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::originsWithLocalStorage):
-        * wx/build/settings.py:
-        * wx/build/waf_extensions.py:
-
-2011-03-15  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Add script to convert a patch to a prettypatch and show in the default browser
-        https://bugs.webkit.org/show_bug.cgi?id=56416
-
-        This can be used either like
-            $ svn-create-patch | show-pretty-diff
-        or
-            $ show-pretty-diff patch.diff
-
-        * Scripts/show-pretty-diff: Added.
-
-2011-03-15  Brian Weinstein  <bweinstein@apple.com>
-
-        Rubber-stamped by Adam Roben.
-
-        Adding myself as a reviewer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-03-15  Anders Carlsson  <andersca@apple.com>
-
-        Try to fix the Windows build.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/NPDeallocateCalledBeforeNPShutdown.cpp:
-        (NPDeallocateCalledBeforeNPShutdown::TestObject::~TestObject):
-
-2011-03-15  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Make sure that NP_Shutdown is always the last NPP function called
-        https://bugs.webkit.org/show_bug.cgi?id=56391
-
-        Add a test that times out if an NP_Deallocate object is called after NP_Shutdown.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-        (PluginTest::PluginTest):
-        (PluginTest::NP_Shutdown):
-        (PluginTest::registerNPShutdownFunction):
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.h:
-        * DumpRenderTree/TestNetscapePlugIn/Tests/NPDeallocateCalledBeforeNPShutdown.cpp: Added.
-        (NPDeallocateCalledBeforeNPShutdown::NPDeallocateCalledBeforeNPShutdown):
-        (NPDeallocateCalledBeforeNPShutdown::TestObject::~TestObject):
-        (NPDeallocateCalledBeforeNPShutdown::ScriptableObject::hasProperty):
-        (NPDeallocateCalledBeforeNPShutdown::ScriptableObject::getProperty):
-        (NPDeallocateCalledBeforeNPShutdown::NPP_New):
-        (NPDeallocateCalledBeforeNPShutdown::NPP_GetValue):
-        (NPDeallocateCalledBeforeNPShutdown::shutdown):
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NP_Shutdown):
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * GNUmakefile.am:
-
-2011-03-15  Ilya Sherman  <isherman@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Autofilled form elements are assigned fixed background color but not text color
-        https://bugs.webkit.org/show_bug.cgi?id=48382
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setAutofilledCallback): Added.
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setAutofilled): Added.
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setAutofilled): Added.
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setAutofilled): Added.
-        (LayoutTestController::setValueForUser): Style tweak.
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setAutofilled): Added (stub).
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setAutofilled): Added (stub).
-
-2011-03-15  Dan Bernstein  <mitz@apple.com>
-
-        Build fix after r81135.
-
-        * TestWebKitAPI/Configurations/InjectedBundle.xcconfig:
-
-2011-03-15  Dan Bernstein  <mitz@apple.com>
-
-        Build fix after r81135.
-
-        * WebKitTestRunner/Configurations/InjectedBundle.xcconfig:
-        * WebKitTestRunner/mac/TestControllerMac.mm:
-        * WebKitTestRunner/mac/TestInvocationMac.mm:
-        * WebKitTestRunner/mac/main.mm:
-
-2011-03-15  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        REGRESSION(80977): breaks Qt ARMv7 Linux Release bot
-        https://bugs.webkit.org/show_bug.cgi?id=56349
-
-        * QtTestBrowser/QtTestBrowser.pro: Link against fontconfig
-        on platforms where we use it. Copied from DumpRenderTree.pro.
-
-2011-03-15  Dan Bernstein  <mitz@apple.com>
-
-        Build fix after r81135.
-
-        * DumpRenderTree/cf/WebArchiveDumpSupport.cpp:
-        * DumpRenderTree/mac/WebArchiveDumpSupportMac.mm:
-
-2011-03-15  Kevin Ollivier  <kevino@theolliviers.com>
-
-        Reviewed by Darin Adler.
-
-        Introduce WTF_USE_EXPORT_MACROS, which will allow us to put shared library import/export
-        info into the headers rather than in export symbol definition files, but disable it on 
-        all platforms initially so we can deal with port build issues one port at a time.
-        
-        https://bugs.webkit.org/show_bug.cgi?id=27551
-
-        * DumpRenderTree/cg/ImageDiffCG.cpp:
-        * DumpRenderTree/chromium/config.h:
-        * DumpRenderTree/config.h:
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        * TestWebKitAPI/TestWebKitAPIPrefix.h:
-        * WebKitAPITest/HostWindow.cpp:
-        * WebKitAPITest/TestsController.cpp:
-        * WebKitAPITest/config.h: Added.
-        * WebKitAPITest/main.cpp:
-        * WebKitAPITest/tests/WebViewDestruction.cpp:
-        * WebKitTestRunner/InjectedBundle/Bindings/JSWrapper.cpp:
-        * WebKitTestRunner/InjectedBundle/EventSendingController.cpp:
-        * WebKitTestRunner/InjectedBundle/GCController.cpp:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        * WebKitTestRunner/InjectedBundle/InjectedBundleMain.cpp:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundleQt.cpp:
-        * WebKitTestRunner/InjectedBundle/qt/LayoutTestControllerQt.cpp:
-        * WebKitTestRunner/InjectedBundle/win/ActivateFonts.cpp:
-        * WebKitTestRunner/InjectedBundle/win/InjectedBundleWin.cpp:
-        * WebKitTestRunner/InjectedBundle/win/LayoutTestControllerWin.cpp:
-        * WebKitTestRunner/TestController.cpp:
-        * WebKitTestRunner/TestInvocation.cpp:
-        * WebKitTestRunner/config.h: Added.
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        * WebKitTestRunner/qt/TestControllerQt.cpp:
-        * WebKitTestRunner/qt/TestInvocationQt.cpp:
-        * WebKitTestRunner/qt/main.cpp:
-        * WebKitTestRunner/win/PlatformWebViewWin.cpp:
-        * WebKitTestRunner/win/TestControllerWin.cpp:
-        * WebKitTestRunner/win/TestInvocationWin.cpp:
-        * WebKitTestRunner/win/main.cpp:
-        * wx/build/settings.py:
-
-2011-03-15  Hayato Ito  <hayato@chromium.org>
-
-        Reviewed by Shinichiro Hamaji.
-
-        [NRWT] Add support for reftests to new-run-webkit-tests.
-
-        https://bugs.webkit.org/show_bug.cgi?id=55457
-
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/dryrun.py:
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/test_files.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-03-15  Alejandro G. Castro  <alex@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Fix compilation warning after r80892
-        https://bugs.webkit.org/show_bug.cgi?id=56302
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::originsWithLocalStorage):
-
-2011-03-15  Robert Hogan  <robert@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Document the qmakearg argument, and hint how to build webkit2 on Qt
-        https://bugs.webkit.org/show_bug.cgi?id=56326
-
-        * Scripts/build-webkit: add --qmakearg to build-webkit --help
-
-2011-03-15  Adam Roben  <aroben@apple.com>
-
-        Make Windows 7 Release (Tests) a core builder
-
-        We can probably make Windows XP Debug (Tests) a core builder, too, but we should probably
-        give it a few more days of greenness first.
-
-        Fixes <http://webkit.org/b/55665> Windows 7 Release (Tests) should be a core builder
-
-        Reviewed by Sam Weinig.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        (BuildBot): Added a regexp to match Windows 7 Release (Tests).
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-        (BuildBotTest): Updated the list of builders to match the current list on build.webkit.org.
-        Updated the core regexps to match the buildbot module. Updated the expected results to match
-        the current set of core builders.
-
-2011-03-14  Adam Roben  <aroben@apple.com>
-
-        Add forgotten file from r81116
-
-        * TestWebKitAPI/Configurations/TestWebKitAPICFNetwork.vsprops: Added.
-
-2011-03-14  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        about:blank fake responses don't get serialized when sent the UIProcess
-        <rdar://problem/9108119>
-        https://bugs.webkit.org/show_bug.cgi?id=56357
-
-        * TestWebKitAPI/Tests/WebKit2/AboutBlankLoad.cpp: Added.
-        (TestWebKitAPI::decidePolicyForResponse):
-        (TestWebKitAPI::TEST):
-        Add test that loads of about:blank have a response with a MIMEType of text/html.
-
-        * TestWebKitAPI/PlatformUtilities.h:
-        * TestWebKitAPI/mac/PlatformUtilitiesMac.mm:
-        (TestWebKitAPI::Util::MIMETypeForWKURLResponse):
-        * TestWebKitAPI/win/PlatformUtilitiesWin.cpp:
-        (TestWebKitAPI::Util::MIMETypeForWKURLResponse):
-        Add helper to get the MIMEType from a WKURLResponse.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        Add new files.
-
-2011-03-14  Jarkko Sakkinen  <jarkko.j.sakkinen@gmail.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Command-line options for QGLWidget and WebGL to QtTestBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=56006
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::initializeView):
-        * QtTestBrowser/main.cpp:
-        (LauncherApplication::handleUserOptions):
-
-2011-03-14  James Kozianski  <koz@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Add method to make BuildBot return test outputs
-        https://bugs.webkit.org/show_bug.cgi?id=54374
-
-        The Builder.latest_cached_build will be used by the new rebaseline
-        script to determine the build to use baselines from.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-
-2011-03-14  Adam Roben  <aroben@apple.com>
-
-        Test that WKBundlePageCanHandleRequest returns true for empty document URLs
-
-        Reviewed by Sam Weinig.
-
-        * TestWebKitAPI/Tests/WebKit2/CanHandleRequest.cpp: Added.
-        (TestWebKitAPI::didReceiveMessageFromInjectedBundle): Store the result of the test.
-        (TestWebKitAPI::setInjectedBundleClient): Hook up our callback.
-        (TestWebKitAPI::TEST): Register "emptyscheme" as an empty document scheme, load a page to
-        ensure the web process is initialized, then ask the bundle to run the test and assert that
-        it succeeded.
-
-        * TestWebKitAPI/Tests/WebKit2/CanHandleRequest_Bundle.cpp: Added.
-        (TestWebKitAPI::CanHandleRequestTest::CanHandleRequestTest): Just call up to the base class.
-        (TestWebKitAPI::canHandleURL): Helper function to test whether WebKit2 claims to be able to
-        handle a given URL.
-        (TestWebKitAPI::runTest): Check that empty document URLs can be handled (and that an unknown
-        URL type cannot be handled).
-        (TestWebKitAPI::CanHandleRequestTest::didReceiveMessage): Run the test and return the
-        result.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        * TestWebKitAPI/win/TestWebKitAPIInjectedBundle.vcproj:
-        Added new files to the project.
-
-2011-03-14  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r81094.
-        http://trac.webkit.org/changeset/81094
-        https://bugs.webkit.org/show_bug.cgi?id=56355
-
-        Broke the chromium DRT related build. (Requested by dave_levin
-        on #webkit).
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::layerTreeAsText):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::runFileTest):
-        (TestShell::dump):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestParams::TestParams):
-
-2011-03-14  Daniel Sievers  <sievers@google.com>
-
-        Reviewed by Simon Fraser.
-
-        [Chromium] Make RenderAsTextBehavior and LayerTreeAsTextBehavior tweakable from the DumpRenderTree commandline
-        https://bugs.webkit.org/show_bug.cgi?id=56139
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::layerTreeAsText):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController::setShowDebugLayerTree):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::runFileTest):
-        (TestShell::dump):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestParams::TestParams):
-
-2011-03-14  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Reviewed by Adam Roben.
-
-        [Qt][WK2]Unbreak InjectedBundle on Qt
-        https://bugs.webkit.org/show_bug.cgi?id=54109
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::willSendRequestForFrame): Use new WebKit2
-        API's instead of KURL to analyze the URL.
-        * WebKitTestRunner/StringFunctions.h:
-        (WTR::adoptWK): Moved from InjectedBundlePage.cpp to make it available globally
-        in the WebKitTestRunner project.
-        (WTR::toWK): Use adoptWK.
-        (WTR::operator<<): Added helper for printing a WKURL.
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj: Do not link
-        against WebCore.
-
-2011-03-14  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        check-webkit-style falsely should not complain about WebKit2 API headers in the Shared directory
-        https://bugs.webkit.org/show_bug.cgi?id=56321
-
-        * Scripts/webkitpy/style/checker.py: Add the patch "Source/WebKit2/Shared/API/c"
-        to the list of exceptions for WebKit2 C API headers.
-
-2011-03-14  Adam Roben  <aroben@apple.com>
-
-        Show the list of recent leaky builds in reverse chronological order
-
-        Previously they were being shown in a deterministic but surprising order based on
-        lexicographically sorting the build offsets (-1, -10, -2, -3...).
-
-        Fixes <http://webkit.org/b/56342> Leaks Viewer shows recent builds in a strange order
-
-        Reviewed by Darin Adler.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/RecentBuildsLoader.js:
-        (RecentBuildsLoader.prototype.start): Sort the builds by revision before passing them to our
-        callback.
-
-2011-03-14  Adam Roben  <aroben@apple.com>
-
-        Show a list of up to 10 recent leaky builds when Leaks Viewer loads
-
-        Fixes <http://webkit.org/b/56043> Leaks Viewer should present a list of recent builds to
-        analyze
-
-        Reviewed by David Kilzer and Joe Pecoraro.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksViewer.css:
-        (#url-prompt): Made this a bit taller to make room for the list of builds.
-
-        (#recent-builds-loading-indicator):
-        (#recent-builds-list):
-        Added styles for the build list and loading indicator.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksViewer.js:
-        (LeaksViewer.loaded): Pass the URL from the query through decodeURIComponent before loading
-        it. This will unescape it.
-        (LeaksViewer.urlPromptButtonClicked): Moved code from here to _urlChosenFromPrompt.
-        (LeaksViewer._didLoadRecentBuilds): Added. Stores the builds and updates the prompt.
-        (LeaksViewer._displayURLPrompt): Start loading the recent leaky builds.
-        (LeaksViewer._updateURLPrompt): Create a list of the recent leaky builds and add them to the
-        prompt UI.
-        (LeaksViewer._urlChosenFromPrompt): Added. Code came from urlPromptButtonClicked. This is
-        now also used when a recent build is clicked.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/RecentBuildsLoader.js: Added.
-        (RecentBuildsLoader): Store the callback.
-        (RecentBuildsLoader.prototype.start): Load the N most recent builds from the specified
-        builder. Find the revision number, leak count, and results URL for each one. Pass the
-        resulting info to our callback.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/Utilities.js:
-        (range): Added this helper function to return an array containing the integers [0, n).
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/index.html: Added
-        RecentBuildsLoader.js and added text to the prompt UI to show the recent builds.
-
-2011-03-14  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Fix two memory leaks within LayoutTestController's storage support.
-
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::originsWithLocalStorage): Don't leak the JSStringRef that is returned
-        by JSStringCreateWithCFString.
-        (LayoutTestController::deleteLocalStorageForOrigin): Don't leak the WebSecurityOrigin that we
-        allocate.
-
-2011-03-14  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Oliver Hunt.
-
-        <http://webkit.org/b/56304> REGRESSION(r80892): 100,000+ leaks seen on the build bot
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::staticFunctions): Remove duplicate entries.
-
-2011-03-14  Alice Liu  <alice.liu@apple.com>
-
-        Reviewed by Dan Bernstein.
-
-        DumpRenderTree Perl Support fails to build with ARCHS="i386 x86_64"
-
-        * DumpRenderTree/mac/PerlSupport/Makefile:
-        Add whitespace when joining "-arch" with the architectures passed in as arguments.
-
-2011-03-14  Daniel Bates  <dbates@rim.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=55438
-        Add double quotes around value of -DCMAKE_WINCE_SDK that I inadvertently did not add
-        when landing changeset 81041 <http://trac.webkit.org/changeset/81041>.
-
-        * Scripts/build-webkit:
-
-2011-03-14  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by David Kilzer.
-
-        Cleanup: Separate port-specific implementation details from webkitdirs::buildCMakeProject()
-        https://bugs.webkit.org/show_bug.cgi?id=55438
-
-        Separate out the EFL- and WinCE-specific logic from the port-independent logic in
-        webkitdirs::buildCMakeProject(). Also, remove redundant code for generating the
-        CMake arguments for feature defines.
-
-        * Scripts/build-webkit:
-          - Added cMakeArgsFromFeatures() to convert the @features array to CMake arguments.
-          - Modified EFL and WinCE-specific building logic to call buildCMakeProjectOrExit().
-          - Sorted forward declarations.
-          - Initialize $makeArgs with the empty string so as to simplify its use in string operations;
-            Modified call sites as needed.
-        * Scripts/webkitdirs.pm:
-          - Added cleanCMakeGeneratedProject() to clean a CMake build.
-          - Added buildCMakeGeneratedProject() to build using generated build system.
-          - Added buildCMakeProjectOrExit() which is a facade for building a CMake project.
-          - Added generateBuildSystemFromCMakeProject() to generate the build system from
-            a CMake project.
-          - Removed buildCMakeProject(). This functionality is in buildCMakeProjectOrExit().
-
-2011-03-14  John Knottenbelt  <jknotten@chromium.org>
-
-        Reviewed by Steve Block.
-
-        Detach Geolocation from Frame when Page destroyed.
-        https://bugs.webkit.org/show_bug.cgi?id=52877
-
-        Extend the layout test controller to expose the number of pending
-        geolocation requests, so that we can test that the requests have
-        been cancelled on page close.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (numberOfPendingGeolocationPermissionRequestsCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::numberOfPendingGeolocationPermissionRequests):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::numberOfPendingGeolocationPermissionRequests):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::numberOfPendingGeolocationPermissionRequests):
-        * DumpRenderTree/mac/UIDelegate.h:
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate numberOfPendingGeolocationPermissionRequests]):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::numberOfPendingGeolocationPermissionRequests):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::numberOfPendingGeolocationPermissionRequests):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::numberOfPendingGeolocationPermissionRequests):
-
-
-2011-03-14  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Unreviewed. Modify my email address in committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-03-13  Joe Wild  <joseph.wild@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] QtLauncher does not load the same set of fonts as the DRT
-        https://bugs.webkit.org/show_bug.cgi?id=34959
-
-        This patch adds the option "-use-test-fonts" to the QtTestBrowser.
-        When this option is used the webkit fonts are loaded the same
-        as they are in DumpRenderTree.  This option can be used on
-        QtTestBrowser and run-launcher.  It can only be used
-        on Linux systems with FcInit and is configured as such.
-
-        * QtTestBrowser/launcherwindow.h:
-        (WindowOptions::WindowOptions):
-        * QtTestBrowser/main.cpp:
-        (initWebKitTestFonts):
-        (launcherMain):
-        (LauncherApplication::handleUserOptions):
-
-2011-03-12  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Mark Rowe.
-
-        <rdar://problem/8995822> Build DumpRenderTree perl support only for the architectures
-        DumpRenderTree is being built for.
-
-        * DumpRenderTree/mac/PerlSupport/Makefile:
-
-2011-03-12  Dan Bernstein  <mitz@apple.com>
-
-        Suggested by Mark Rowe.
-
-        * DumpRenderTree/mac/Configurations/Base.xcconfig: Leave C++ exceptions enabled
-        as they were before r80915.
-
-2011-03-12  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Should be able to download a PDF to the Downloads folder
-        https://bugs.webkit.org/show_bug.cgi?id=56256
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::createOtherPage):
-        (WTR::TestController::initialize):
-        Update for API changes.
-
-2011-03-11  Anton D'Auria  <adauria@apple.com>
-
-        Reviewed and landed by Brady Eidson.
-
-        https://bugs.webkit.org/show_bug.cgi?id=51878
-        Add WebKit1 API to view and delete local storage
-
-        Added tests that write to LocalStorage, delete one origin, get list of origins with local storage, delete all origins.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/LayoutTestController.cpp:
-        (syncLocalStorageCallback):
-        (observeStorageTrackerNotificationsCallback):
-        (deleteAllLocalStorageCallback):
-        (deleteLocalStorageForOriginCallback):
-        (originsWithLocalStorageCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/StorageTrackerDelegate.h: Added.
-        * DumpRenderTree/StorageTrackerDelegate.mm: Added.
-        (-[StorageTrackerDelegate init]):
-        (-[StorageTrackerDelegate logNotifications:controller:]):
-        (-[StorageTrackerDelegate originModified:]):
-        (-[StorageTrackerDelegate dealloc]):
-        (-[StorageTrackerDelegate setControllerToNotifyDone:]):
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::deleteAllLocalStorage):
-        (LayoutTestController::originsWithLocalStorage):
-        (LayoutTestController::deleteLocalStorageForOrigin):
-        (observeStorageTrackerNotifications):
-        (syncLocalStorage):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::originsWithLocalStorage):
-        (LayoutTestController::deleteAllLocalStorage):
-        (LayoutTestController::deleteLocalStorageForOrigin):
-        (LayoutTestController::observeStorageTrackerNotifications):
-        (LayoutTestController::syncLocalStorage):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        (allocateGlobalControllers):
-        (releaseGlobalControllers):
-        * DumpRenderTree/mac/DumpRenderTreeMac.h:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::syncLocalStorage):
-        (LayoutTestController::observeStorageTrackerNotifications):
-        (LayoutTestController::deleteAllLocalStorage):
-        (LayoutTestController::originsWithLocalStorage):
-        (LayoutTestController::deleteLocalStorageForOrigin):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::originsWithLocalStorage):
-        (LayoutTestController::deleteAllLocalStorage):
-        (LayoutTestController::deleteLocalStorageForOrigin):
-        (LayoutTestController::observeStorageTrackerNotifications):
-        (LayoutTestController::syncLocalStorage):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::clearAllApplicationCaches):
-        (LayoutTestController::syncLocalStorage):
-        (LayoutTestController::observeStorageTrackerNotifications):
-        (LayoutTestController::clearAllDatabases):
-        (LayoutTestController::deleteAllLocalStorage):
-        (LayoutTestController::originsWithLocalStorage):
-        (LayoutTestController::deleteLocalStorageForOrigin):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::syncLocalStorage):
-        (LayoutTestController::observeStorageTrackerNotifications):
-        (LayoutTestController::clearAllDatabases):
-        (LayoutTestController::deleteAllLocalStorage):
-        (LayoutTestController::originsWithLocalStorage):
-        (LayoutTestController::deleteLocalStorageForOrigin):
-
-2011-03-11  Jessie Berlin  <jberlin@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Crash calling WebContext::clearResourceCaches(InMemoryResourceCachesOnly) before the Web
-        Process has finished launching.
-        https://bugs.webkit.org/show_bug.cgi?id=56208
-
-        * TestWebKitAPI/Tests/WebKit2/SendingMessagesToTheWebProcessBeforeItIsValid.cpp: Added.
-        (TestWebKitAPI::TEST):
-        Test that calling WKContextClearResourceCaches works with both options when called before
-        the Web Process is valid.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        Add the new test.
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        Ditto.
-
-2011-03-11  Adam Roben  <aroben@apple.com>
-
-        Make it possible to view all leaks from a build at once in Leaks Viewer
-
-        You can now give Leaks Viewer the URL of a build results page (e.g.,
-        <http://build.webkit.org/results/SnowLeopard%20Intel%20Leaks/r80847%20(15493)/>), and it
-        will load all the leaks files from that build.
-
-        Fixes <http://webkit.org/b/56030> Leaks Viewer: Would like to be able to look at all leaks
-        files from a particular build at once, rather than one at a time
-
-        Reviewed by David Kilzer.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksLoader.js: Added.
-        (LeaksLoader): Initialize our properties.
-        (LeaksLoader.prototype.start): If the URL ends in .txt, assume it's a single leaks file and
-        load it. Otherwise assume it's a build results page URL and start fetching the leaks files
-        from that page.
-        (LeaksLoader.prototype._loadLeaksFiles): Tell our client how many leaks files we're loading
-        so it can provide feedback. Then load each one and pass it to the client.
-        (LeaksLoader.prototype._loadLeaksFromResultsPage): Load the HTML of the results page, parse
-        it into a DOM, pull out all the links to leaks files, and load each one.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksParser.js: Added.
-        (LeaksParser): Initialize our worker.
-        (LeaksParser.prototype.addLeaksFile): Tell the worker about the leaks file's contents.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksParserWorker.js: Added.
-        This code mostly came from Worker.js.
-        (LeaksParserWorker): Initialize our profile.
-        (LeaksParserWorker.prototype.addLeaksFile): Parse the leaks file and incorporate it into our
-        profile.
-        (LeaksParserWorker.prototype._parseLeaks):
-        (LeaksParserWorker.prototype._createNode):
-        (LeaksParserWorker.prototype._incorporateLeaks):
-        Moved these functions here from LeaksViewer. _incorporateLeaks is essentially just a renamed
-        version of createProfile which adds to this.profile instead of making a new profile each
-        time.
-        (onmessage): Parse the file and send back the new profile.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksViewer.css:
-        (#loading-indicator):
-        (#spinner):
-        (#loading-indicator-label):
-        Tweaked styles to accomodate a longer label.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksViewer.js:
-        (LeaksViewer.loaded): Set up a loader and parser.
-
-        (LeaksViewer.get filesLeftToParse):
-        (LeaksViewer.set filesLeftToParse):
-        Added these simple accessors.
-
-        (LeaksViewer._didCountLeaksFiles): Callback from LeaksLoader. Stores the count.
-        (LeaksViewer._didLoadLeaksFile): Callback from LeaksLoader. Passes the file contents off to
-        the parser.
-        (LeaksViewer._didParseLeaksFile): Callback from LeaksParser. If all files have been parsed,
-        tell the ProfilerAgent and mark that we're done loading. (Code came from the old
-        _loadLeaksFromURL function).
-        (LeaksViewer._loadLeaksFromURL): Now just calls through to the loader.
-        (LeaksViewer._loadingIndicatorText): Added. Returns the text that should show up in the
-        loading indicator, including the number of files being loaded.
-        (LeaksViewer._loadingStatusChanged): Update the loading indicator's label, too.
-        (LeaksViewer._updateLoadingIndicatorLabel): Added. Just updates the label!
-        (LeaksViewer._updateTitle): Moved code to compute the "Loading" text to
-        _loadingIndicatorText.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/Utilities.js: Added.
-        (getResource): Moved here from LeaksViewer.js.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/Worker.js: Subsumed by
-        LeaksParserWorker.js.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/index.html: Added new JS
-        files, added a #loading-indicator-label element, and tweaked the prompt wording.
-
-2011-03-11  Adam Roben  <aroben@apple.com>
-
-        Don't trigger a build when build.webkit.org's HTML files are modified
-
-        Fixes <http://webkit.org/b/56190> Windows bots shouldn't have built r80848/r80851, but did
-
-        Reviewed by Dan Bernstein.
-
-        * Scripts/webkitpy/common/config/build.py:
-        (_should_file_trigger_build): Added build.webkit.org's public_html directory to the list of
-        directories that shouldn't trigger builds. Re-sorted the list.
-
-        * Scripts/webkitpy/common/config/build_unittest.py:
-        (ShouldBuildTest): Added a test to cover the above change.
-
-2011-03-11  Adam Roben  <aroben@apple.com>
-
-        Roll out r80848
-
-        It was accidentally committed.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksViewer.js:
-        (LeaksViewer._loadLeaksFromURL):
-
-2011-03-11  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        kill hung lighttpd processes on the chromium win bot
-        https://bugs.webkit.org/show_bug.cgi?id=56152
-
-        Sometimes this process doesn't exit and it holds on to
-        a log file that we can't delete or copy, causing the tests
-        to go red.
-
-        * BuildSlaveSupport/win/kill-old-processes:
-
-2011-03-11  Ilya Sherman  <isherman@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [Chromium] missing HTMLInputElement::setValueForUser() to tests
-        https://bugs.webkit.org/show_bug.cgi?id=55854
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setValueForUser): Added.
-        * DumpRenderTree/chromium/LayoutTestController.h:
-
-2011-03-10  Peter Kasting  <pkasting@google.com>
-
-        Reviewed by Dimitri Glazkov.
-
-        Clean up some gross code in TestShellWin.cpp.  No functional change.
-        https://bugs.webkit.org/show_bug.cgi?id=56048
-
-        * DumpRenderTree/chromium/TestShellWin.cpp:
-        (checkLayoutTestSystemDependencies):
-
-2011-03-10  Keith Kyzivat  <keith.kyzivat@nokia.com>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt] Buildfix for platforms where X11 is not available (e.g. Symbian)
-
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-        (WTR::activateFonts): Guard X11-specific code with Q_WS_X11.
-
-2011-03-10  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [EFL] Make single backing store the default for EWebLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=55753
-
-        Set single backing store the default for EWebLauncher.
-
-        * EWebLauncher/main.c:
-        (main):
-
-2011-03-10  Adam Roben  <aroben@apple.com>
-
-        Ignore errors from files being held open when creating a test result archive
-
-        Fixes <http://webkit.org/b/55581> Test results don't get uploaded if test-result-archive
-        fails to delete the results directory
-
-        Reviewed by Mark Rowe.
-
-        * BuildSlaveSupport/test-result-archive:
-        (archiveTestResults): Ignore errno 2 when deleting the results directory, since it can be
-        thrown when a process is holding a file open.
-
-2011-03-10  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r80701.
-        http://trac.webkit.org/changeset/80701
-        https://bugs.webkit.org/show_bug.cgi?id=56126
-
-        fast/dom/Geolocation/window-close-crash.html fails on Snow
-        Leopard release builds (Requested by mihaip on #webkit).
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        * DumpRenderTree/mac/UIDelegate.h:
-        * DumpRenderTree/mac/UIDelegate.mm:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-
-2011-03-10  Philippe Normand  <pnormand@igalia.com>
-
-        Reviewed by Gustavo Noronha Silva.
-
-        [GTK] run-gtk-tests doesn't fail if a test crashes
-        https://bugs.webkit.org/show_bug.cgi?id=56089
-
-        * Scripts/run-gtk-tests: gtester -k exits with a 0 exit status
-        even if a test crashes. So run the tests individually and if a
-        test fails remember its exit code so run-gtk-test fails too, if
-        required.
-
-2011-01-26  John Knottenbelt  <jknotten@chromium.org>
-
-        Reviewed by Dmitry Titov.
-
-        Detach Geolocation from Frame when Page destroyed.
-        https://bugs.webkit.org/show_bug.cgi?id=52877
-
-        Extend the layout test controller to expose the number of pending
-        geolocation requests, so that we can test that the requests have
-        been cancelled on page close.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (numberOfPendingGeolocationPermissionRequestsCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::numberOfPendingGeolocationPermissionRequests):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::numberOfPendingGeolocationPermissionRequests):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::numberOfPendingGeolocationPermissionRequests):
-        * DumpRenderTree/mac/UIDelegate.h:
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate numberOfPendingGeolocationPermissionRequests]):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::numberOfPendingGeolocationPermissionRequests):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::numberOfPendingGeolocationPermissionRequests):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::numberOfPendingGeolocationPermissionRequests):
-
-
-2011-03-09  Adam Roben  <aroben@apple.com>
-
-        Hide Leaks Viewer's URL prompt by default
-
-        We will show it as needed. I think I left it visible by default by accident after doing some
-        testing.
-
-        Fixes <http://webkit.org/b/56031> Leaks Viewer: URL prompt overlay shouldn't appear when a
-        URL is passed as a query parameter, but does
-
-        Reviewed by Simon Fraser.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/index.html:
-
-2011-03-09  Adam Roben  <aroben@apple.com>
-
-        Don't use Element.classList or box-shadow in Leaks Viewer
-
-        They aren't supported by Safari 5. Luckily we have substitutes for them!
-
-        Fixes <http://webkit.org/b/56035> Leaks viewer doesn't work in Safari 5
-
-        Reviewed by Simon Fraser.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksViewer.css:
-        (#url-prompt): Use -webkit-box-shadow instead of box-shadow.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksViewer.js:
-        (LeaksViewer.urlPromptButtonClicked):
-        (LeaksViewer._displayURLPrompt):
-        (LeaksViewer._setLoadingIndicatorHidden):
-        Use add/removeStyleClass (from utilities.js) instead of Element.classList.
-
-2011-03-09  Adam Roben  <aroben@apple.com>
-
-        Add a link to the Leaks Viewer tool on the build.webkit.org homepage
-
-        Rubber-stamped by David Kilzer.
-
-        * BuildSlaveSupport/build.webkit.org-config/templates/root.html:
-
-2011-03-09  Adam Roben  <aroben@apple.com>
-
-        Add a Leaks Viewer tool to build.webkit.org
-
-        This tool parses leaks from the files generated by the leaks bot and displays them in a
-        view similar to the Web Inspector's Profiles pane (in fact, it uses the Web Inspector's
-        code).
-
-        The URL of the leaks file can be entered in a prompt when the tools is first shown, or can
-        be passed to the tool via the "url" query parameter.
-
-        Only one leaks file can be viewed at a time for now. Only the number of leaks, as opposed to
-        the number of leaked bytes, is shown. And this tool has made apparent some bugs in the Web
-        Inspector's Heavy profile view. But it's still pretty useful as-is.
-
-        Fixes <http://webkit.org/b/56028> Would like a Shark-like tool for viewing leaks from leak bots
-
-        Reviewed by Darin Adler.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksViewer.css: Added.
-        (#url-prompt-container): This is the dark overlay that is shown behind the URL prompt.
-        (#url-prompt): This is the prompt itself.
-
-        (#loading-indicator):
-        (#loading-indicator > img):
-        These show a spinner in the bottom-right when we're loading a leaks file.
-
-        (.percent-time-status-bar-item): Hide the Percent button since we never want to show leaks
-        as percentages.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/LeaksViewer.js: Added.
-        (LeaksViewer.loaded): Initialize ourselves and start loading the leaks file (or prompt for a
-        URL if one wasn't given to us as a query parameter).
-
-        (LeaksViewer.get loading):
-        (LeaksViewer.set loading):
-        (LeaksViewer.get url):
-        (LeaksViewer.set url):
-        Pretty simple accessors.
-
-        (LeaksViewer.urlPromptButtonClicked): Start loading the URL from the prompt and hide the
-        prompt.
-        (LeaksViewer._displayURLPrompt): Show the prompt and focus the URL input.
-        (LeaksViewer._loadLeaksFromURL): Start fetching the leaks file. When we've retrieved the
-        file, hand it off to a Web Worker that will parse it into a fake "profile", then hand off
-        the profile to the Web Inspector code once it's been created.
-        (LeaksViewer._loadingStatusChanged): Update our loading indicator and title.
-        (LeaksViewer._setLoadingIndicatorHidden): Simply hide or show the indicator.
-        (LeaksViewer._updateTitle): Set our title based on our URL and loading status.
-        (getResource): Helper function to fetch a resource via XHR and pass it to a callback.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/WebInspectorShims.js: Added.
-        (WebInspector.UIString): Just a simple implementation since this tool isn't localized.
-        (ProfilerAgent.getProfile): Store the callback.
-        (ProfilerAgent.profileReady): Call the callback.
-        (monkeyPatchInspectorObjects): Fix up WebInspector.ProfileDataGridNode to show the self leak
-        count and total leak counts as real values, not percentages or milliseconds.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/Worker.js: Added.
-        (onmessage): Create a profile based on the leaks file and pass it back to our caller.
-        (parseLeaks): Extract call stacks out of a leaks file.
-        (createNode): Helper function to create a new empty profile node.
-        (createProfile): Take the leak stacks and turn them into a fake "profile" for consumption by
-        WebInspector.ProfileView.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/index.html: Added.
-
-2011-03-09  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Combine multiple --ignore-tests values
-        https://bugs.webkit.org/show_bug.cgi?id=56016
-
-        * Scripts/old-run-webkit-tests:
-
-2011-03-08  Kenji Imasaki  <imasaki@chromium.org>
-
-        Reviewed by David Levin.
-
-        Adding myself to the committer file.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-03-08  Jessie Berlin  <jberlin@apple.com>
-
-        Rubber-stamped by Adam Roben.
-
-        Fix two leaks I introduced into the API tests.
-
-        * TestWebKitAPI/Tests/WebKit2/win/DoNotCopyANullCFURLResponse.cpp:
-        (TestWebKitAPI::TEST):
-
-2011-03-08  Jessie Berlin  <jberlin@apple.com>
-
-        Reviewed by Anders Carlsson.
-
-        Crash in CFNetwork visiting google.com
-        https://bugs.webkit.org/show_bug.cgi?id=55958
-
-        Add a test for not trying to copy a null CFURLResponse.
-
-        * TestWebKitAPI/Tests/WebKit2/win/DoNotCopyANullCFURLResponse.cpp: Added.
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-
-2011-03-08  Hayato Ito  <hayato@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        [NRWT] Renamed a FailureWithType class to a ComparisonTestFailure class.
-
-        FailureWithType is a confusing naming because we have removed test_type/* classes in r79840.
-
-        https://bugs.webkit.org/show_bug.cgi?id=55450
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_failures.py:
-
-2011-03-08  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] Add layoutTestController.setValueForUser() after r80412
-        https://bugs.webkit.org/show_bug.cgi?id=55862
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setValueForUser): Implement setValueForUser()
-
-2011-03-08  Patrick Gansterer  <paroga@webkit.org>
-
-        Reviewed by Adam Barth.
-
-        Add script_shell_command to WebKitPort
-        https://bugs.webkit.org/show_bug.cgi?id=55925
-
-        Add a central place where we generate the shell command from the script name.
-        This function will be used later to detect the correct script interpreter on Win32.
-
-        * Scripts/webkitpy/common/config/ports.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/tool/steps/abstractstep.py:
-        * Scripts/webkitpy/tool/steps/preparechangelog.py:
-
-2011-03-07  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        add webkit-patch attach-to-bug for posting to bugzilla from the commandline
-        https://bugs.webkit.org/show_bug.cgi?id=55749
-
-        * Scripts/webkitpy/tool/commands/upload.py:
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-        * Scripts/webkitpy/tool/steps/__init__.py:
-        * Scripts/webkitpy/tool/steps/attachtobug.py: Added.
-        * Scripts/webkitpy/tool/steps/options.py:
-
-2011-03-07  Daniel Cheng  <dcheng@chromium.org>
-
-        Reviewed by David Levin.
-
-        Add support for DataTransferItems
-        https://bugs.webkit.org/show_bug.cgi?id=55115
-
-        Enable data transfer items in DRT.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-
-2011-03-06  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        [test dashboard] pull treemap files
-        https://bugs.webkit.org/show_bug.cgi?id=55852
-
-        * TestResultServer/handlers/dashboardhandler.py:
-
-2011-03-03  Hayato Ito  <hayato@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        [NRWT] Clear output image file used by DumpRenderTree to make sure the
-        previous image should not be used in the ChromiumDriver.
-
-        Also make sure that output image from the ChromiumDriver should be ''
-        (empty string) if a test crashes for consistency with the WebKitDriver
-        implementation.
-
-        https://bugs.webkit.org/show_bug.cgi?id=55746
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2011-03-07  Zan Dobersek  <zandobersek@gmail.com>
-
-        Reviewed by Martin Robinson.
-
-        [Gtk] fast/js/navigator-language.html fails locally
-        https://bugs.webkit.org/show_bug.cgi?id=55880
-
-        Add LANG variable to the clean environment when running
-        old-run-webkit-tests script.
-
-        * Scripts/old-run-webkit-tests:
-
-2011-03-07  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        [Chromium] Find .checksum files without .pngs and vice-versa
-        https://bugs.webkit.org/show_bug.cgi?id=55236
-
-        * Scripts/find-mismatched-layout-test-results: Added. A script for finding
-            mismatched results.
-
-2011-03-07  Chris Fleizach  <cfleizach@apple.com>
-
-        Reviewed by Beth Dakin.
-
-        AX: WK1 needs to use the ScrollView attachment for AXScrollArea, WK2 should not use this element.
-        https://bugs.webkit.org/show_bug.cgi?id=55706
-
-        The rootElement in DRT should point to the scroll view. In WK1, that will be the parent of the rootObject.
-
-        * DumpRenderTree/mac/AccessibilityControllerMac.mm:
-        (AccessibilityController::focusedElement):
-           Remove FIXME comment about caching the focusedElement. In fact, we shouldn't cache this 
-           because it could change at any time.
-        (AccessibilityController::rootElement):
-
-2011-03-07  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Add unableToImplementPolicy callback for WebKit2 policy client
-        <rdar://problem/9071902>
-        https://bugs.webkit.org/show_bug.cgi?id=55884
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        Update policy client initialization struct for new member.
-
-2011-03-07  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Anders Carlsson.
-
-        Replace WebKit2's decidePolicyForMIMEType with decidePolicyForResponse
-        https://bugs.webkit.org/show_bug.cgi?id=55827
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (decidePolicyForResponse):
-        (-[BrowserWindowController awakeFromNib]):
-        * TestWebKitAPI/Tests/WebKit2/PageLoadBasic.cpp:
-        (TestWebKitAPI::decidePolicyForResponse):
-        (TestWebKitAPI::TEST):
-        Update tools for new name.
-
-2011-03-06  Daniel Bates  <dbates@rim.com>
-
-        Reviewed by Eric Seidel and David Kilzer.
-
-        Fix misspelled word in build-webkit's checkForJavaSDK() and sort forward declarations
-        https://bugs.webkit.org/show_bug.cgi?id=55503
-
-        Fix misspelled word "Dowloads" [sic] in the message printed to standard output
-        in checkForJavaSDK().
-
-        Also, remove extraneous space in function prototype for unlinkZeroFiles.
-
-        * Scripts/build-webkit:
-
-2011-03-05  Brian Weinstein  <bweinstein@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Fix Web Process crashes caused by https://bugs.webkit.org/show_bug.cgi?id=53919.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::willSendRequestForFrame): Retain the WKURLRequestRef returned
-            by willSendRequestForFrame. The API expects a retained reference to the URL request.
-
-2011-03-05  Ilya Sherman  <isherman@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        HTMLInputElement::setValue() should schedule change event when the element is focused
-        In service of https://code.google.com/p/chromium/issues/detail?id=42716
-        https://bugs.webkit.org/show_bug.cgi?id=53160
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setValueForUserCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setValueForUser): Stubbed out; need real implementation.
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setValueForUser): Expose HTMLInputElement::setValueForUser() to tests
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setValueForUser): Stubbed out; need real implementation.
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setValueForUser): Stubbed out; need real implementation.
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setValueForUser): Stubbed out; need real implementation.
-
-2011-03-04  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Alexey Proskuryakov.
-
-        <rdar://problem/9055252> DumpRenderTree is crashing with GuardMalloc
-
-        GuardMalloc does not expect the memory containing its malloc_zone_t to ever be read-only.
-        
-        * DumpRenderTree/mac/CheckedMalloc.cpp:
-        (protectionOfRegion): Retrieve the protection flags for the VM region containing the given address.
-        (makeLargeMallocFailSilently): Save the initial protection flags, temporarily make the region writeable,
-        and then restore the initial protection flags when we're done.
-
-2011-03-04  Evan Martin  <evan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        [gdb] pretty-print KURL in gdb
-        https://bugs.webkit.org/show_bug.cgi?id=55788
-
-        * gdb/webkit.py: extend the pretty-printers to print WTF::CString
-        and KURLGooglePrivate.  As always, "p/r" can be used to sidestep
-        pretty-printing.
-
-2011-03-03  Timothy Hatcher  <timothy@apple.com>
-
-        Update the tests that use WKPageRunJavaScriptInMainFrame use the WKSerializedScriptValueRef.
-
-        Reviewed by Darin Adler.
-
-        * TestWebKitAPI/JavaScriptTest.cpp:
-        (TestWebKitAPI::javaScriptCallback):
-        * TestWebKitAPI/Tests/WebKit2/EvaluateJavaScript.cpp:
-        (TestWebKitAPI::didRunJavaScript):
-        * TestWebKitAPI/Tests/WebKit2/PageLoadDidChangeLocationWithinPageForFrame.cpp:
-        (TestWebKitAPI::nullJavaScriptCallback):
-        * TestWebKitAPI/Tests/WebKit2/PreventEmptyUserAgent.cpp:
-        (TestWebKitAPI::didRunJavaScript):
-
-2011-03-03  Timothy Hatcher  <timothy@apple.com>
-
-        Make run-api-tests show failed if a test fails.
-
-        https://webkit.org/b/55725
-
-        Reviewed by Sam Weinig.
-
-        * Scripts/run-api-tests:
-        (runTest): Remove "my" from the nested $result assignment so the
-        check outside the condition sees the real result.
-
-2011-03-02  MORITA Hajime  <morrita@google.com>
-
-        Reviewed by Kent Tamura.
-
-        [Chromium][DRT] WebTask should use webkit_support::TaskAdaptor
-        https://bugs.webkit.org/show_bug.cgi?id=55434
-
-        Changed WebTask to be a subclass of webkit_support::TaskAdaptor
-        and passed the object webkit_support::PostDelayedTask directly.
-
-        Note that the change keeps postTask() as is because it has a
-        semantics taht webkit_support::PostDelayedTask() has; It jumps to
-        the main thread.
-
-        * DumpRenderTree/chromium/Task.cpp:
-        (postDelayedTask):
-        * DumpRenderTree/chromium/Task.h:
-        (WebTask::Run):
-
-2011-03-03  Mahesh Kulkarni  <mahesh.kulkarni@nokia.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [QT] Implement mock client-based geolocation for layout testing
-        https://bugs.webkit.org/show_bug.cgi?id=54334
-
-        Implement testing for Client-Based geolocation for QtWebkit.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::setGeolocationPermission):
-        (LayoutTestController::setMockGeolocationError):
-        (LayoutTestController::setMockGeolocationPosition):
-
-2011-03-03  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r80237.
-        http://trac.webkit.org/changeset/80237
-        https://bugs.webkit.org/show_bug.cgi?id=55714
-
-        Windows bots aren't ready to be core (Requested by aroben on
-        #webkit).
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-
-2011-03-03  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        NRWT: AttributeError: TestRunner2 instance has no attribute '_cancel_workers'
-        https://bugs.webkit.org/show_bug.cgi?id=55694
-        
-        Fixes for interruptions in NRWT:
-        - Make TestRunInterruptedException be pickleable correctly (the base
-          Exception class defines a __reduce__ that does not include the reason)
-        - Fix ordering of returned arguments from TestRunner2._run_tests
-          (interrupted and keyboard_interrupted were reversed)
-        - Fix cancel_workers callsites (was using old name).
-        - In handle_exception re-raise actual exception instance that was thrown
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner2.py:
-        * Scripts/webkitpy/layout_tests/layout_package/worker.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-03-03  Qi Zhang  <qi.2.zhang@nokia.com>
-
-        Unreviewed.
-
-        Adding myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-03-03  Tony Gentilcore  <tonyg@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        Teach sheriffbot to answer whois commands
-        https://bugs.webkit.org/show_bug.cgi?id=55687
-
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        * Scripts/webkitpy/tool/bot/irc_command_unittest.py:
-        * Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py:
-
-2011-03-03  Victoria Kirst  <vrk@google.com>
-
-        Reviewed by Eric Carlson.
-
-        Enable media tests in chromium-gpu/test_expectations
-        https://bugs.webkit.org/show_bug.cgi?id=53608
-
-        Add media folder to the list of GPU test paths.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-
-2011-03-03  Adam Roben  <aroben@apple.com>
-
-        Work around a bug in KURL's parsing of Windows-style absolute file: URLs
-
-        Fixes <http://webkit.org/b/55674> Many tests fail in WebKit2 mode on Windows due to
-        incorrect parsing of absolute Windows-style file: URLs
-
-        Reviewed by Tim Hatcher.
-
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::createWKURL): Add a "localhost" host to file: URLs we create to work around
-        <http://webkit.org/b/55683>.
-
-2011-03-03  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        [chromium] Run kill-old-processes on the chromium-win bot too
-        https://bugs.webkit.org/show_bug.cgi?id=55630
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        * BuildSlaveSupport/win/kill-old-processes: Add wdiff.exe to the kill list.
-
-2011-03-03  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Reviewed by Martin Robinson.
-
-        [GTK] DRT needs implementation of EventSender.scheduleAsynchronousClick
-        https://bugs.webkit.org/show_bug.cgi?id=53960
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (sendClick):
-        (scheduleAsynchronousClickCallback):
-
-2011-03-03  Adam Roben  <aroben@apple.com>
-
-        Look for Windows-style paths when checking whether a test is an Inspector test
-
-        WTR part of <http://webkit.org/b/55672> <rdar://problem/9080867> All inspector tests time
-        out or crash on Windows 7 Release (WebKit2 Tests)
-
-        Reviewed by Darin Adler.
-
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::shouldOpenWebInspector): Also look for backslashes, since that's what we'll get on
-        Windows.
-
-2011-03-03  Adam Roben  <aroben@apple.com>
-
-        Make Windows 7 Release (Tests) a core builder
-
-        We can probably make Windows XP Debug (Tests) a core builder, too, but we should probably
-        give it a few more days of greenness first.
-
-        Fixes <http://webkit.org/b/55665> Windows 7 Release (Tests) should be a core builder
-
-        Reviewed by Andreas Kling.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        (BuildBot): Added a regexp to match Windows 7 Release (Tests).
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-        (BuildBotTest): Updated the list of builders to match the current list on build.webkit.org.
-        Updated the core regexps to match the buildbot module. Updated the expected results to match
-        the current set of core builders.
-
-2011-03-03  Benjamin Poulain  <benjamin.poulain@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        Adding myself as a reviewer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-03-03  Lukasz Slachciak  <l.slachciak@samsung.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] Extended application cache database API and added unit tests file.
-        https://bugs.webkit.org/show_bug.cgi?id=55335
-
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp: removed external declaration
-        of webkit_application_cache_set_maximum_size due to API exposal.
-
-2011-03-02  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        make webkit-patch upload work for security bugs
-        https://bugs.webkit.org/show_bug.cgi?id=55655
-
-        The problem is that we shell out to prepare-ChangeLog,
-        which does not authenticate with bugzilla. All it needs from
-        bugzilla is the bug title though. We just pass it through from
-        webkit-patch instead.
-
-        * Scripts/prepare-ChangeLog:
-        * Scripts/webkitpy/common/net/bugzilla/bug.py:
-        * Scripts/webkitpy/tool/steps/preparechangelog.py:
-
-2011-03-01  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        [test-dashboard] make gtest JSON match layout-tests JSON
-        https://bugs.webkit.org/show_bug.cgi?id=55556
-
-        http://trac.webkit.org/changeset/80090 stopped converting time_ms to t.
-        Make this code match.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-
-2011-03-02  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        NRWT - implement Linux Hardy 64-bit port support. This involves
-        adding support for non-'x86' architectures and updating the
-        "deduplicate_tests" script to correctly understand that
-        port.name() is not always equal to basename(port.baseline_path()).
-
-        This change introduces two new port names: 'chromium-linux-x86'
-        and 'chromium-linux-x86_64'. Using the prior 'chromium-linux'
-        flag will cause the code to determine which one to use at
-        runtime, just like we currently do with 'chromium-win'.
-
-        https://bugs.webkit.org/show_bug.cgi?id=55535
-
-        * Scripts/webkitpy/common/system/executive_mock.py:
-          Handle 'return_stderr' keyword arg to run_command()
-        * Scripts/webkitpy/layout_tests/deduplicate_tests.py:
-        * Scripts/webkitpy/layout_tests/deduplicate_tests_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        * Scripts/webkitpy/layout_tests/port/google_chrome.py:
-
-2011-03-02  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fix, make sure we put the wxWebKit dylib in the right directory and
-        update symlinks accordingly.
-
-        * wx/packaging/build-mac-installer.py:
-
-2011-03-02  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r80139.
-        http://trac.webkit.org/changeset/80139
-        https://bugs.webkit.org/show_bug.cgi?id=55620
-
-        failing and crashing tests on Snow Leopard bot (Requested by
-        mihaip1 on #webkit).
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        * DumpRenderTree/mac/UIDelegate.h:
-        * DumpRenderTree/mac/UIDelegate.mm:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-
-2011-03-02  Adam Roben  <aroben@apple.com>
-
-        Wait for force a paint in WebKitTestRunner until we're actually ready to dump the output
-
-        This matches DumpRenderTree on Windows.
-
-        Fixes <http://webkit.org/b/55469> <rdar://problem/9068539> REGRESSION (r79863): Lots of
-        dom/html/level2/html/HTMLFrameElement*.html tests crashing in FrameView::paintOverhangAreas
-        in WebKit2
-
-        Reviewed by Beth Dakin.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::dump): Moved code to force a paint here...
-        (WTR::InjectedBundlePage::didFinishLoadForFrame): ...from here.
-
-2011-03-02  Daniel Cheng  <dcheng@chromium.org>
-
-        Reviewed by David Levin.
-
-        Add feature define for data transfer items
-        https://bugs.webkit.org/show_bug.cgi?id=55510
-
-        * Scripts/build-webkit:
-
-2011-03-02  Adam Roben  <aroben@apple.com>
-
-        Look in the new-to-SnowLeopard location for crash logs on SnowLeopard and newer
-
-        ReportCrash saves logs to ~/Library/Logs/CrashReporter on Leopard, but to
-        ~/Library/Logs/DiagnosticReports on SnowLeopard. old-run-webkit-tests was only looking in
-        the former location, but was getting lucky on some SnowLeopard machines because symlinks
-        were being created there pointing into DiagnosticReports. For machines without these
-        symlinks, crash logs were not getting captured.
-
-        Fixes <http://webkit.org/b/55607> old-run-webkit-tests doesn't capture crash logs on some
-        SnowLeopard machines
-
-        Reviewed by Eric Seidel.
-
-        * Scripts/old-run-webkit-tests:
-        (captureSavedCrashLog): Look in ~/Library/Logs/DiagnosticReports on SnowLeopard and newer.
-
-2011-03-02  Adam Roben  <aroben@apple.com>
-
-        Don't try to capture crash logs on platforms that haven't implemented that feature
-
-        Fixes <http://webkit.org/b/55504> Use of uninitialized value in numeric lt (<) at
-        Tools/Scripts/old-run-webkit-tests line 1778 seen on Qt bots after a crash
-
-        Reviewed by Joseph Pecoraro.
-
-        * Scripts/old-run-webkit-tests:
-        (captureSavedCrashLog): Bail if we don't have a crash log glob.
-        (findNewestFileMatchingGlob): Fix a buggy test for when no paths match the glob. This isn't
-        strictly required to fix bug 55504, but seems worthwhile.
-
-2011-01-26  John Knottenbelt  <jknotten@chromium.org>
-
-        Reviewed by Dmitry Titov.
-
-        Detach Geolocation from Frame when Page destroyed.
-        https://bugs.webkit.org/show_bug.cgi?id=52877
-
-        Extend the layout test controller to expose the number of pending
-        geolocation requests, so that we can test that the requests have
-        been cancelled on page close.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (numberOfPendingGeolocationPermissionRequestsCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::numberOfPendingGeolocationPermissionRequests):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::numberOfPendingGeolocationPermissionRequests):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::numberOfPendingGeolocationPermissionRequests):
-        * DumpRenderTree/mac/UIDelegate.h:
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate numberOfPendingGeolocationPermissionRequests]):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::numberOfPendingGeolocationPermissionRequests):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::numberOfPendingGeolocationPermissionRequests):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::numberOfPendingGeolocationPermissionRequests):
-
-
-2011-03-01  Kent Tamura  <tkent@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        Assertion fails when a form validation bubble appears
-        https://bugs.webkit.org/show_bug.cgi?id=55550
-
-        Test: fast/forms/interactive-validation-attach-assertion.html
-
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::applyTo): Enable the interactive validation feature by
-          default. This matches to Chromium browser.
-
-2011-03-01  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Reviewed by Kent Tamura.
-
-        Remove efl port style exception of Webcore/JavaScriptCore
-        https://bugs.webkit.org/show_bug.cgi?id=55549
-
-        WebCore and JavaScriptCore need to adhere WebKit coding style.
-
-        * Scripts/webkitpy/style/checker.py:
-
-2011-03-01  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        [chromium] clean up temp files on chromium-mac builder too
-        https://bugs.webkit.org/show_bug.cgi?id=55525
-
-        * BuildSlaveSupport/chromium/remove-crash-logs:
-
-2011-02-28  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        wrap json in a function call to afford cross-domain loading
-        https://bugs.webkit.org/show_bug.cgi?id=55353
-
-        Also delete the code that compacts the JSON. It turns out this
-        breaks the rebaseline tool and is probably a premature optimization anyways.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/tool/commands/rebaselineserver.py:
-
-2011-03-01  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r80079.
-        http://trac.webkit.org/changeset/80079
-        https://bugs.webkit.org/show_bug.cgi?id=55547
-
-        "Broke the Win debug build?" (Requested by dcheng on #webkit).
-
-        * Scripts/build-webkit:
-
-2011-03-01  Mark Rowe  <mrowe@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Update verification scripts to handle WebKit2.
-
-        * Scripts/check-for-global-initializers: Skip object files that use RefCountedLeakChecker.
-        * Scripts/check-for-inappropriate-files-in-framework: Add some inappropriate file types for
-        WebKit2.
-
-2011-03-01  Daniel Cheng  <dcheng@chromium.org>
-
-        Reviewed by David Levin.
-
-        Add feature define for data transfer items
-        https://bugs.webkit.org/show_bug.cgi?id=55510
-
-        * Scripts/build-webkit:
-
-2011-02-23  Joseph Pecoraro  <joepeck@webkit.org>
-
-        Reviewed by Timothy Hatcher.
-
-        All Console Messages should be passed to ChromeClients.
-        https://bugs.webkit.org/show_bug.cgi?id=54926
-
-        Update DumpRenderTree's UIDelegate to use the new console message delegate.
-
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:addMessageToConsole:withSource:]):
-
-2011-03-01  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Barth.
-
-        Tragically, we stopped running the python unit tests
-        on Chromium Win just as I was getting them to be green.
-        This patch turns them back on.
-
-        https://bugs.webkit.org/show_bug.cgi?id=55521
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-
-2011-03-01  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Roben.
-
-        Disable
-        webkitpy.common.system.executive_unittest.ExecutiveTest.\
-           test_kill_all fails on win until it can be properly triaged.
-
-        https://bugs.webkit.org/show_bug.cgi?id=54790
-
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-
-    2011-03-01  Helder Correia  <helder@sencha.com>
-
-            Unreviewed. Add myself to committers.py.
-
-            * Scripts/webkitpy/common/config/committers.py:
-
-2011-03-01  Adam Roben  <aroben@apple.com>
-
-        Give up if a crash log for the web process is taking too long to be saved on Windows
-
-        This should keep the bots from getting stuck while waiting for a crash log, if writing a
-        crash log ever hangs or the UI process for some reason doesn't notice it's finished.
-
-        Fixes <http://webkit.org/b/55499> WebKitTestRunner can hang forever waiting for a crash log
-        to be saved for the web process
-
-        Reviewed by Steve Falkenburg.
-
-        * WebKitTestRunner/win/TestControllerWin.cpp:
-        (WTR::runRunLoopUntil): Moved code to run the run loop here here from platformRunUntil.
-        Generalized the code slightly to handle the optional object to wait on.
-        (WTR::TestController::platformRunUntil): Use the new runRunLoopUntil function, and also use
-        it (with a timeout) when waiting for a crash log for the web process to be saved. This will
-        prevent us from waiting forever.
-
-2011-03-01  Adam Roben  <aroben@apple.com>
-
-        Give WebKitLauncherWin's PDB file a name different from WebKit's
-
-        WebKitLauncherWin (which builds WebKit.exe) and WebKit (which builds WebKit.dll) were
-        fighting over the same PDB file, meaning that one of them was going to lose and not have
-        symbols. WebKitLauncherWin's PDB file is now named WebKitLauncherWin.pdb.
-
-        Fixes <http://webkit.org/b/55495> Crashes in WebKit.dll have bad backtraces for some test
-        runs (due to missing symbols)
-
-        Reviewed by David Kilzer.
-
-        * WebKitLauncherWin/WebKitLauncherWinCommon.vsprops: Use the project name,
-        "WebKitLauncherWin", instead of the target name, "WebKit", when naming the PDB file.
-
-2011-03-01  Adam Roben  <aroben@apple.com>
-
-        Count web process crashes toward the --exit-after-n-crashes-or-timeouts limit
-
-        Fixes <http://webkit.org/b/55492> Web process crashes aren't counted toward the
-        --exit-after-n-crashes-or-timeouts limit
-
-        Reviewed by David Kilzer.
-
-        * Scripts/old-run-webkit-tests:
-        (stopRunningTestsEarlyIfNeeded): Include web process crashes in the computation, and print
-        the number of tests that caused the web process to crash when exiting early.
-
-2011-03-01  Adam Roben  <aroben@apple.com>
-
-        Save a crash log when the web process crashes
-
-        On Windows, WebKitTestRunner now detects when the web process is crashing and waits to exit
-        until it has finished crashing, which guarantees that the crash log will have had time to be
-        saved, too. On Mac, we always wait until ReportCrash has exited before capturing the crash
-        log, so all we have to do is choose the right crash log out of the CrashReporter directory.
-
-        Fixes <http://webkit.org/b/44121> <rdar://problem/8320759> When the web process crashes and
-        a crash log is being saved, WebKitTestRunner thinks the web process has become unresponsive
-
-        Reviewed by Sam Weinig.
-
-        * Scripts/old-run-webkit-tests:
-        (testCrashedOrTimedOut): Don't kill WebKitTestRunner when the web process crashes. It will
-        kill itself. On Windows, this will cause us to wait until the crash log has been saved. On
-        Mac, it should have no effect. Capture saved crash logs for web process crashes, too.
-        (captureSavedCrashLog): Added $webProcessCrashed argument. On Mac, look for
-        WebProces_*.crash files when the web process crashes.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::initialize): Added an initializationUserData argument. Updated for
-        initializePlatformDefaults -> platformInitialize rename. Pass the initializationUserData
-        along to platformInitialize.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h: See above.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundleMain.cpp:
-        (WKBundleInitialize): Pass along the initializationUserData to the InjectedBundle.
-
-        * WebKitTestRunner/InjectedBundle/mac/InjectedBundleMac.mm:
-        (WTR::InjectedBundle::platformInitialize):
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundleQt.cpp:
-        (WTR::InjectedBundle::platformInitialize):
-        Updated function signature.
-
-        * WebKitTestRunner/InjectedBundle/win/InjectedBundleWin.cpp:
-        (WTR::exceptionFilter): Added. Tells the UI process we're crashing by signaling the
-        webProcessCrashingEvent, then lets the crash continue as normal.
-
-        (WTR::InjectedBundle::platformInitialize): Hook up exceptionFilter. Retrieve the name of the
-        event we should use to tell the UI process we're crashing from the initializationUserData,
-        and get a handle to that event.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::TestController): Initialize new members.
-        (WTR::TestController::processDidCrash): Removed unnecessary WKPageRef argument. Changed to
-        only print the "#CRASHED - WebProcess" message once, since this can be called more than once
-        when a crash log is being saved on Windows. Exit right away if specified. (This is the
-        default.)
-
-        * WebKitTestRunner/TestController.h: Added new members.
-
-        * WebKitTestRunner/win/TestControllerWin.cpp:
-        (WTR::TestController::platformInitialize): Set up the event the web process will use to tell
-        us it's crashing.
-        (WTR::TestController::platformRunUntil): Pass MWMO_INPUTAVAILABLE to
-        ::MsgWaitForMultipleObjectsEx so we'll process messages that have already been seen by
-        ::PeekMessage. (This is unrelated to the bug fix.) Notice when the webProcessCrashingEvent
-        has been signaled. When this happens, print the "#CRASHED - WebProcess" message right away
-        so the test harness will know the web process has crashed and not try to kill us, then wait
-        for the web process to finish crashing so a crash log will have time to be saved.
-        (WTR::toWK): Simple hepler function.
-        (WTR::TestController::platformInitializeContext): Pass along the name of the event the web
-        process should use to tell us it is crashing in the context's initialization user data.
-
-2011-03-01  Dimitri Glazkov  <dglazkov@chromium.org>
-
-        Reviewed by Tony Gentilcore.
-
-        Move the checks to exclude Python/Perl tests for Chromium Win build to the right place.
-        https://bugs.webkit.org/show_bug.cgi?id=55476
-
-        Chromium Win uses BuildAndTestFactory, not TestFactory.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Moved to the right place.
-
-2011-03-01  Adam Roben  <aroben@apple.com>
-
-        Test that the WebKit2 responsiveness timer doesn't fire too early
-
-        Test for <http://webkit.org/b/55417> <rdar://problem/9065287> RunLoop::Timer fires 1000x too
-        early on Windows
-
-        Reviewed by Anders Carlsson.
-
-        * TestWebKitAPI/PlatformUtilities.h: Added sleep().
-
-        * TestWebKitAPI/Tests/WebKit2/ResponsivenessTimerDoesntFireEarly.cpp: Added.
-        (TestWebKitAPI::didReceiveMessageFromInjectedBundle):
-        (TestWebKitAPI::didFinishLoadForFrame):
-        (TestWebKitAPI::processDidBecomeUnresponsive):
-        (TestWebKitAPI::setInjectedBundleClient):
-        (TestWebKitAPI::setPageLoaderClient):
-        Simple helper functions.
-
-        (TestWebKitAPI::TEST): Load an HTML file to make sure the web process is initialized. Then
-        tell the web process to pause and press the spacebar key. The spacebar keypress should cause
-        the responsiveness timer to start, but the web process should unpause before it has a chance
-        to fire. Run until the web process has unpaused, and assert that the timer didn't fire.
-
-        * TestWebKitAPI/Tests/WebKit2/ResponsivenessTimerDoesntFireEarly_Bundle.cpp: Added.
-        (TestWebKitAPI::ResponsivenessTimerDoesntFireEarlyTest::ResponsivenessTimerDoesntFireEarlyTest):
-        Call up to the base class.
-        (TestWebKitAPI::ResponsivenessTimerDoesntFireEarlyTest::didReceiveMessage): When asked to
-        pause, sleep for 0.5 seconds, then send back a message saying we paused.
-
-        * TestWebKitAPI/mac/PlatformUtilitiesMac.mm:
-        (TestWebKitAPI::Util::sleep): Added. Calls through to usleep.
-        * TestWebKitAPI/win/PlatformUtilitiesWin.cpp:
-        (TestWebKitAPI::Util::sleep): Added. Calls through to ::Sleep.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        * TestWebKitAPI/win/TestWebKitAPIInjectedBundle.vcproj:
-        Added new files.
-
-2011-03-01  Andras Becsi  <abecsi@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt] Clean up the project files and move common options to WebKit.pri.
-
-        * WebKitTestRunner/qt/WebKitTestRunner.pro: Deduplicate.
-
-
-2011-03-01  Adam Roben  <aroben@apple.com>
-
-        Skip another multiprocessing test on Windows
-
-        It is sometimes failing (and may be leaving child Python processes around).
-        <http://webkit.org/b/55087> tracks the failure.
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker_unittest.py:
-        (FuncitonTests.test_get__processes): Skip this test on Windows.
-
-2011-03-01  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Reviewed by Pavel Feldman.
-
-        Web Inspector: reduce inspector tests flakiness.
-        https://bugs.webkit.org/show_bug.cgi?id=55401
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::runFileTest):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-
-2011-02-28  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by James Robinson.
-
-        NRWT should still upload results when it exits early due to too many failures
-        https://bugs.webkit.org/show_bug.cgi?id=55432
-        
-        Only keyboard interrupts should prevent results from being uploaded.
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-02-28  Alice Liu  <alice.liu@apple.com>
-
-        Reviewed by Adam Roben and Gavin Barraclough.
-
-        Test for https://bugs.webkit.org/show_bug.cgi?id=54898
-        InjectedBundleNodeHandle dies too early in WKBundleHitTestResultGetNodeHandle.
-
-        * TestWebKitAPI/InjectedBundleController.h:
-        (TestWebKitAPI::InjectedBundleController::bundle):
-        * TestWebKitAPI/PlatformWebView.h:
-        * TestWebKitAPI/Tests/WebKit2/HitTestResultNodeHandle.cpp: Added.
-        (TestWebKitAPI::didFinishLoadForFrame):
-        (TestWebKitAPI::didReceiveMessageFromInjectedBundle):
-        (TestWebKitAPI::setPageLoaderClient):
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/HitTestResultNodeHandle_Bundle.cpp: Added.
-        (TestWebKitAPI::HitTestResultNodeHandleTest::HitTestResultNodeHandleTest):
-        (TestWebKitAPI::HitTestResultNodeHandleTest::getContextMenuFromDefaultMenu):
-        (TestWebKitAPI::HitTestResultNodeHandleTest::didCreatePage):
-        * TestWebKitAPI/mac/PlatformWebViewMac.mm:
-        (TestWebKitAPI::PlatformWebView::simulateRightClick):
-        * TestWebKitAPI/win/PlatformWebViewWin.cpp:
-        (TestWebKitAPI::PlatformWebView::simulateRightClick):
-        
-        Added files to:
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        * TestWebKitAPI/win/TestWebKitAPIInjectedBundle.vcproj:
-
-2011-02-28  Adam Roben  <aroben@apple.com>
-
-        Start running InjectedBundle API tests on Windows
-
-        A new project, TestWebKitAPIInjectedBundle, builds the injected bundle DLL.
-
-        Fixes <http://webkit.org/b/55420> run-api-tests doesn't run injected bundle tests on Windows
-
-        Reviewed by Darin Adler.
-
-        * TestWebKitAPI/Configurations/TestWebKitAPIDebug.vsprops: Added.
-        * TestWebKitAPI/Configurations/TestWebKitAPIDebugAll.vsprops: Added.
-        * TestWebKitAPI/Configurations/TestWebKitAPIDebugCairoCFLite.vsprops: Added.
-        * TestWebKitAPI/Configurations/TestWebKitAPIRelease.vsprops: Added.
-        * TestWebKitAPI/Configurations/TestWebKitAPIReleaseCairoCFLite.vsprops: Added.
-        These are just extracted from TestWebKitAPI.vcproj.
-
-        * TestWebKitAPI/Configurations/TestWebKitAPIInjectedBundleCommon.vsprops: Added. Just sets
-        up the DLL's filename.
-
-        * TestWebKitAPI/win/PlatformUtilitiesWin.cpp: Fixed DLL name.
-        (TestWebKitAPI::Util::createInjectedBundlePath): Changed to use kCFAllocatorNull instead of
-        0 (== kCFAllocatorDefault) so that CF won't try to deallocate our C string.
-
-        * TestWebKitAPI/win/TestWebKitAPI.sln: Added TestWebKitAPIInjectedBundle. Removed the bogus
-        "all" configuration.
-
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj: Changed to use the new .vsprops files. Added
-        injected bundle tests. Let VS resort things.
-
-        * TestWebKitAPI/win/TestWebKitAPIInjectedBundle.vcproj: Copied from Tools/TestWebKitAPI/win/TestWebKitAPI.vcproj.
-
-2011-02-28  Adam Roben  <aroben@apple.com>
-
-        Add a test for the paint rect passed via WM_PAINT to windowless plugins
-
-        Test for <http://webkit.org/b/55365> <rdar://problem/9031089> REGRESSION (r79040): WebKit2:
-        Large portions of pages with plugins paint black
-
-        Reviewed by Anders Carlsson.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-        (PluginTest::NPP_HandleEvent):
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.h:
-        Added NPP_HandleEvent. Just returns 0 at this level.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/win/WindowlessPaintRectCoordinates.cpp: Added.
-        (WindowlessPaintRectCoordinates::WindowlessPaintRectCoordinates): Call up to the base class.
-        (WindowlessPaintRectCoordinates::NPP_New): Mark ourselves as windowless.
-        (WindowlessPaintRectCoordinates::NPP_HandleEvent): Check that the paint rect passed via
-        WM_PAINT has the expected coordinates.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_HandleEvent): Give the PluginTest a chance to handle the event before doing anything
-        else.
-
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj: Added new file, let VS
-        resort things.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::didFinishLoadForFrame): Added a call to WKBundlePageForceRepaint.
-        This is roughly equivalent to the call to -[WebView displayIfNeeded] in -[FrameLoadDelegate
-        webView:didFinishLoadForFrame:] in DumpRenderTree.
-
-        * WebKitTestRunner/win/PlatformWebViewWin.cpp:
-        (WTR::PlatformWebView::PlatformWebView): Tell the WKView it's in a window so that plugins
-        can start running.
-
-2011-02-28  Adam Roben  <aroben@apple.com>
-
-        Tell MiniBrowser's WKViews that they're in a window
-
-        Fixes <http://webkit.org/b/55364> Plugins don't work in MiniBrowser on Windows
-
-        Reviewed by Anders Carlsson.
-
-        * MiniBrowser/win/BrowserView.cpp:
-        (BrowserView::create): Call WKViewSetIsInWindow after creating the view.
-
-2011-02-28  Alexis Menard  <alexis.menard@openbossa.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        The new QML tests require QML_IMPORT_PATH variable to be set in order to
-        load the proper plugin.
-
-        * Scripts/run-qtwebkit-tests:
-
-2011-02-28  Joone Hur  <joone.hur@collabora.co.uk>
-
-        Unreviewed, fix spelling mistake.
-
-        hardware-accelated => hardware-accelerated.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-02-28  Kristian Amlie  <kristian.amlie@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        Made sure that the build-webkit --qmake argument is always respected.
-
-        Previously, it would be respected during the build, but not during
-        the early feature detection. The build would also fail if qmake was
-        not in your path, even if you specified --qmake with a valid qmake
-        binary.
-
-        [Qt] WebKit patches required to work with a modularized version of Qt
-        https://bugs.webkit.org/show_bug.cgi?id=53916
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-
-2011-02-27  Ojan Vafai  <ojan@chromium.org>
-
-        Fix failing tests from http://trac.webkit.org/changeset/79837.
-
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-        This was just a mistake that would break if someone tried printing with this configuration.
-        * Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
-        Method signature changed. Didn't notice that this method was being calling in a unittest.
-
-2011-02-24  Hayato Ito  <hayato@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        [NRWT] Remove test_types/* classes.
-
-        This is the last patch in the series of efforts which tried to remove test_types classes.
-        A single_test_runner module will take over responsibilities of test_type classes.
-
-        From this patch, we won't display statistics per test_type even if a '--verbose' option is given.
-
-        https://bugs.webkit.org/show_bug.cgi?id=55123
-
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_results.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_results_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-        * Scripts/webkitpy/layout_tests/layout_package/worker_mixin.py:
-        * Scripts/webkitpy/layout_tests/test_types/__init__.py: Removed.
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py: Removed.
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py: Removed.
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base_unittest.py: Removed.
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py: Removed.
-
-2011-02-25  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        Change results.json format to the one used by unexpected_results.json
-        https://bugs.webkit.org/show_bug.cgi?id=52267
-
-        Also add runtimes in milliseconds to the JSON and make the output format more compact.
-        Named the file full_results.json to avoid conflicting with the results.json
-        file the test-results server currently serves up.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/printing.py:
-        * Scripts/webkitpy/layout_tests/layout_package/result_summary.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
-
-2011-02-27  Adam Roben  <aroben@apple.com>
-
-        Followup fix to r79827
-
-        * DumpRenderTree/win/UIDelegate.cpp:
-        (UIDelegate::webViewAddMessageToConsole): Replaced call to urlSuitableForTestResult with
-        lastPathComponent. This matches what we did here before r79827, and matches Mac.
-
-2011-02-27  Dan Bernstein  <mitz@apple.com>
-
-        Reviewed by Adam Roben.
-
-        Make bisect-builds print a trac link for the regression range
-        https://bugs.webkit.org/show_bug.cgi?id=55331
-
-        * Scripts/bisect-builds:
-
-2011-02-27  Adam Roben  <aroben@apple.com>
-
-        Use iswalpha instead of isalpha when dealing with wchar_ts in EditingDelegate
-
-        Fixes <http://webkit.org/b/55062> <rdar://problem/9059907> Crash beneath
-        EditingDelegate::checkSpellingOfString when running fast/forms/input-text-maxlength.html or
-        fast/forms/input-text-paste-maxlength.html on Windows with full page heap enabled
-
-        Reviewed by Anders Carlsson.
-
-        * DumpRenderTree/win/EditingDelegate.cpp:
-        (indexOfFirstWordCharacter):
-        (wordLength):
-        Use iswalpha instead of isalpha, since TCHAR is really just wchar_t.
-
-2011-02-27  Adam Roben  <aroben@apple.com>
-
-        Make ResourceLoadDelegate print URLs relative to the main resource on Windows
-
-        This matches Mac. (In fact, the code was ported from Mac!)
-
-        Fixes <http://webkit.org/b/55328> URLs printed by ResourceLoadDelegate on Windows don't
-        match Mac
-
-        Reviewed by Anders Carlsson.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (substringFromIndex): Added. Emulates -[NSString substringFromIndex:].
-        (urlSuitableForTestResult): Ported code from -[NSURL(DRTExtras)
-        _drt_descriptionSuitableForTestResult].
-        (cfStringRefToWString): Moved here from LayoutTestControllerWin.cpp.
-
-        * DumpRenderTree/win/DumpRenderTreeWin.h: Added declaration of cfStringRefToWString.
-
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp: Moved cfStringRefToWString to
-        DumpRenderTree.cpp.
-
-2011-02-27  Adam Roben  <aroben@apple.com>
-
-        Change the order of Chang Shu's email addresses so the first one is their Bugzilla username
-
-        This makes Bugzilla autocompletion work correctly.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2011-02-27  Patrick Gansterer  <paroga@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] fast/loader/user-stylesheet-fast-path.html fails
-        https://bugs.webkit.org/show_bug.cgi?id=50911
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setUserStyleSheetLocation):
-        Use QUrl::fromEncoded since the passed string is already encoded.
-
-2011-02-27  Adam Roben  <aroben@apple.com>
-
-        Ensure $testResultsDirectory is an absolute path before setting up Windows crash log saving
-
-        Windows 7 (and maybe Vista?) launches the post-mortem debugger with a working directory that
-        is different from old-run-webkit-test's. Because of this, the path to the crash log file
-        (which is relative to $testResultsDirectory) must be an absolute path. See the bug for more
-        details.
-
-        Fixes <http://webkit.org/b/55318> Crash logs aren't saved on Windows 7 when a relative
-        --results-directory path is used (like on the test slaves)
-
-        Reviewed by Dan Bernstein.
-
-        * Scripts/old-run-webkit-tests: Moved the call to setUpWindowsCrashLogSaving after we've
-        made $testResultsDirectory an absolute path.
-
-2011-02-26  Dominic Mazzoni  <dmazzoni@google.com>
-
-        Reviewed by Adam Barth.
-
-        m_dumpAccessibilityNotifications should be initialized.
-        https://bugs.webkit.org/show_bug.cgi?id=54874
-
-        * DumpRenderTree/chromium/AccessibilityController.cpp:
-        (AccessibilityController::AccessibilityController):
-
-2011-02-26  Vsevolod Vlasov  <vsevik@chromium.org>
-
-        Reviewed by Pavel Feldman.
-
-        DumpRenderTree should reset frame opener between tests.
-        https://bugs.webkit.org/show_bug.cgi?id=54874
-
-        Added clearOpener() calls between tests.
-        Some tests are using window.open() to change current window location.
-        This changes window.opener property whose nullity is checked before
-        showing xml viewer.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetTestController):
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::reset):
-
-2011-02-26  Yael Aharon  <yael.aharon@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Fix the focus in MiniBrowser.
-        https://bugs.webkit.org/show_bug.cgi?id=55288
-
-        Give focus to the web view when a load starts.
-
-        * MiniBrowser/qt/BrowserWindow.cpp:
-        (BrowserWindow::urlChanged):
-
-2011-02-26  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Reviewed by Adam Barth.
-
-        [EFL] Add coding style exceptions for EFL port
-        https://bugs.webkit.org/show_bug.cgi?id=54733
-
-        The EFL APIs use EFL naming style, which includes both lower-cased and camel-cased,
-        underscore-sparated values. But, style checking rule have found parameter_name errors
-        in efl directories so far.
-
-        * Scripts/webkitpy/style/checker.py: Add prameter_name rule's exception and efl directories.
-
-2011-02-26  David Levin  <levin@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        check-webkit-style should check for spaces after periods in comments
-        https://bugs.webkit.org/show_bug.cgi?id=55253
-
-        * Scripts/webkitpy/style/checkers/cpp.py: Added the check.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Added tests
-          and fixed the name of one related test.
-
-2011-02-26  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        Make it possible to test the targetdensity-dpi support
-        https://bugs.webkit.org/show_bug.cgi?id=55142
-
-        Test the viewport meta tag feature targetdensity-dpi by
-        adding extra arguments to dumpConfigurationForViewport
-
-        Add the new arguments to the shared header and all
-        implementation.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (dumpConfigurationForViewportCallback):
-        * DumpRenderTree/LayoutTestController.h:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::dumpConfigurationForViewport):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::dumpConfigurationForViewport):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::dumpConfigurationForViewport):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::dumpConfigurationForViewport):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::dumpConfigurationForViewport):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-
-2011-02-26  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r79764.
-        http://trac.webkit.org/changeset/79764
-        https://bugs.webkit.org/show_bug.cgi?id=55295
-
-        "broke Chromium builds" (Requested by rniwa on #webkit).
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetTestController):
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::reset):
-
-2011-02-26  Yongjun Zhang  <yongjun_zhang@apple.com>
-
-        Reviewed by David Kilzer.
-
-        https://bugs.webkit.org/show_bug.cgi?id=48781
-
-        Add a resource load delegate method to query if WebCore should paint the default broken image for failed images.
-
-        Add a new resource load client method (shouldPaintBrokenImage).  WebKit client can decide if WebCore
-        should paint the default broken image when an image fails to load or decode.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (setShouldPaintBrokenImageCallback):
-        (LayoutTestController::staticFunctions):
-        (LayoutTestController::setShouldPaintBrokenImage):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::shouldPaintBrokenImage):
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        (-[ResourceLoadDelegate webView:shouldPaintBrokenImageForURL:]):
-
-2011-02-26  Vsevolod Vlasov  <vsevik@chromium.org>
-
-        Reviewed by Pavel Feldman.
-
-        DumpRenderTree should reset frame opener between tests.
-        https://bugs.webkit.org/show_bug.cgi?id=54874
-
-        Added clearOpener() calls between tests.
-        Some tests are using window.open() to change current window location.
-        This changes window.opener property whose nullity is checked before
-        showing xml viewer.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetTestController):
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::reset):
-
-2011-02-25  Lukasz Slachciak  <l.slachciak@samsung.com>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [EFL] Added EWebLauncher command line option to turn on/off frame flattening
-        https://bugs.webkit.org/show_bug.cgi?id=54809
-
-        * EWebLauncher/main.c: Handling -f option added.
-        (on_key_down):
-        (browserCreate):
-        (main):
-
-2011-02-25  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r79324.
-        http://trac.webkit.org/changeset/79324
-        https://bugs.webkit.org/show_bug.cgi?id=55260
-
-        Leopard Debug is once again running out of address space while
-        linking (Requested by aroben on #webkit).
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-
-2011-02-25  Tony Chang  <tony@chromium.org>
-
-        Reviewed by James Robinson.
-
-        Clean up temp files left by crashing DRTs on chromium-win
-        https://bugs.webkit.org/show_bug.cgi?id=55182
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        * BuildSlaveSupport/chromium/remove-crash-logs: Added.
-
-2011-02-25  Adam Roben  <aroben@apple.com>
-
-        Double-check that modifying the registry worked
-
-        On Windows Vista/7 with UAC enabled, regtool will fail to modify the registry, but it will
-        still return a successful exit code. So we double-check here that the value we tried to
-        write to the registry was really written.
-
-        Fixes <http://webkit.org/b/55227> old-run-webkit-tests falsely claims to be saving crash
-        logs on Windows Vista/7
-
-        Reviewed by Darin Adler.
-
-        * Scripts/old-run-webkit-tests:
-        (writeRegistryString): After trying to write the string value, check that it was really
-        written.
-
-2011-02-25  Adam Roben  <aroben@apple.com>
-
-        Set the 32-bit post-mortem debugger on 64-bit OSes
-
-        The post-mortem debugger is controlled by some registry values in
-        HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug. On 64-bit OSes, you can either
-        set the values in that key, which will be used for 64-bit apps, or in the equivalent key
-        under Wow6432Node, which will be used for 32-bit apps. Since DumpRenderTree and
-        WebKitTestRunner are 32-bit, we want to use the latter location.
-
-        Fixes <http://webkit.org/b/55225> old-run-webkit-tests sets the post-mortem debugger for
-        64-bit apps, but should set it for 32-bit apps instead
-
-        Reviewed by Darin Adler.
-
-        * Scripts/old-run-webkit-tests:
-        (readRegistryString):
-        (writeRegistryString):
-        Pass --wow32 to regtool so it will get/set values beneath Wow6432Node, which is where
-        Windows looks for the post-mortem debugger values when a 32-bit app crashes on a 64-bit OS.
-        Passing --wow32 on a 32-bit OS will not have any effect.
-
-2011-02-25  Adam Roben  <aroben@apple.com>
-
-        Clean up code to set up crash log saving on Windows
-
-        Fixes <http://webkit.org/b/55224> old-run-webkit-test's Windows registry code is ugly
-
-        Reviewed by David Kilzer.
-
-        * Scripts/old-run-webkit-tests:
-        (readRegistryString):
-        (writeRegistryString):
-        Moved code to read strings from and write strings to the registry here...
-
-        (setUpWindowsCrashLogSaving): ...from here.
-
-2011-02-25  Adam Roben  <aroben@apple.com>
-
-        Work around Cygwin's crash-suppression behavior
-
-        Cygwin calls ::SetErrorMode(SEM_FAILCRITICALERRORS), which any processes it launches will
-        inherit. This is bad for testing/debugging, as it causes the post-mortem debugger not to be
-        invoked. (Cygwin does this because it makes crashes more UNIX-y.) We reset the error mode
-        when our test apps launch to work around Cygwin's behavior.
-
-        Fixes <http://webkit.org/b/55222> Test apps crash silently (without invoking post-mortem
-        debugger) when launched from Cygwin 1.7
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (main):
-        * TestWebKitAPI/win/main.cpp:
-        (main):
-        * WebKitAPITest/main.cpp:
-        (main):
-        * WebKitTestRunner/win/TestControllerWin.cpp:
-        (WTR::TestController::platformInitialize):
-        Call ::SetErrorMode(0) to undo Cygwin's folly.
-
-2011-02-24  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Revert the support for QNAM affined to a different thread.
-        https://bugs.webkit.org/show_bug.cgi?id=55149
-
-        Qt 4.8 will have QNAM use its own thread internally by default,
-        no need to keep this complexity in WebKit.
-
-        This mainly reverts:
-        http://trac.webkit.org/changeset/73710
-        http://trac.webkit.org/changeset/73712
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::~LauncherWindow):
-        (LauncherWindow::initializeView):
-        (LauncherWindow::createChrome):
-        * QtTestBrowser/launcherwindow.h:
-        (WindowOptions::WindowOptions):
-        * QtTestBrowser/webpage.cpp:
-        (WebPage::WebPage):
-        * QtTestBrowser/webpage.h:
-
-2011-02-24  Adam Barth  <abarth@webkit.org>
-
-        Reviewed by Eric Seidel.
-
-        Add a script for creating gypi files
-        https://bugs.webkit.org/show_bug.cgi?id=55113
-
-        This is a trivial script to create gypi files from the source code in
-        the current directory.
-
-        * Scripts/make-gypi: Added.
-
-2011-02-24  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r79628.
-        http://trac.webkit.org/changeset/79628
-        https://bugs.webkit.org/show_bug.cgi?id=55195
-
-        "broke chromium win tests" (Requested by dpranke on #webkit).
-
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-
-2011-02-24  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        rebaseline-chromium-webkit-tests can't handle GPU variants
-        https://bugs.webkit.org/show_bug.cgi?id=55002
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-
-2011-02-24  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        nrwt: log command used to start web server to --verbose
-
-        https://bugs.webkit.org/show_bug.cgi?id=55188
-
-        * Scripts/webkitpy/layout_tests/port/apache_http_server.py:
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-
-2011-02-24  Victoria Kirst  <vrk@google.com>
-
-        Reviewed by Mihai Parparita.
-
-        [chromium] Move media-file.js and video-test.js back to media/ for UILayoutTests
-        https://bugs.webkit.org/show_bug.cgi?id=55089
-
-        This adds an alias into the media/ directory so that http/tests/media
-        tests can access the media resources when running in an httpd process.
-
-        * Scripts/webkitperl/httpd.pm:
-        * Scripts/webkitpy/layout_tests/port/apache_http_server.py:
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-
-2011-02-24  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        nrwt: enable multiple processes by default on Chromium Win.
-
-        https://bugs.webkit.org/show_bug.cgi?id=55163
-
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-
-2011-02-24  Sam Weinig  <sam@webkit.org>
-
-        Attempt to fix Qt.
-
-        * WebKitTestRunner/TestInvocation.cpp:
-
-2011-02-24  James Robinson  <jamesr@chromium.org>
-
-        Unreviewed, rolling out r79598.
-        http://trac.webkit.org/changeset/79598
-        https://bugs.webkit.org/show_bug.cgi?id=55089
-
-        Appears to be causing trouble with httpd on windows
-
-        * Scripts/webkitperl/httpd.pm:
-        * Scripts/webkitpy/layout_tests/port/apache_http_server.py:
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-
-2011-02-24  Sam Weinig  <sam@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Add basic pixel testing support to WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=55161
-
-        * Scripts/old-run-webkit-tests:
-        Don't print color space information when using WebKitTestRunner since
-        we don't need to change the screen.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::initialize):
-        Add call to initializePlatformDefaults.
-        
-        (WTR::InjectedBundle::done):
-        Return a dictionary on completion with both the text output and pixel dump override.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        Add declaration for initializePlatformDefaults.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::LayoutTestController):
-        (WTR::LayoutTestController::dumpAsText):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (WTR::LayoutTestController::shouldDumpPixels):
-        Make setting dumpAsText override the dump pixels preference.
-
-        * WebKitTestRunner/InjectedBundle/mac/InjectedBundleMac.mm: Added.
-        (WTR::InjectedBundle::initializePlatformDefaults):
-        Set platform defaults matching DumpRenderTree.
-
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundleQt.cpp: Added.
-        (WTR::InjectedBundle::initializePlatformDefaults):
-        * WebKitTestRunner/InjectedBundle/win/InjectedBundleWin.cpp: Added.
-        (WTR::InjectedBundle::initializePlatformDefaults):
-        Add stubs for initializePlatformDefaults.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::runTest):
-        (WTR::TestController::runTestingServerLoop):
-        (WTR::TestController::run):
-        Parse expected pixel results out of stdin and setup the invocation with it.
-
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::TestInvocation):
-        Initialize new members.
-
-        (WTR::TestInvocation::~TestInvocation):
-        (WTR::TestInvocation::setIsPixelTest):
-        (WTR::sizeWebViewForCurrentTest):
-        (WTR::TestInvocation::invoke):
-        (WTR::TestInvocation::dump):
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-        * WebKitTestRunner/TestInvocation.h:
-        Dump pixels in addition to text by calling dumpPixelsAndCompareWithExpected.
-
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (WTR::PlatformWebView::PlatformWebView):
-        Use -[NSColorSpace genericRGBColorSpace] instead of the main screen color space.
-
-        * WebKitTestRunner/mac/TestInvocationMac.mm: Added.
-        (WTR::createCGContextFromPlatformView):
-        (WTR::computeMD5HashStringForContext):
-        (WTR::dumpBitmap):
-        (WTR::forceRepaintFunction):
-        (WTR::TestInvocation::dumpPixelsAndCompareWithExpected):
-        Add mac specific pixel dumping support. Right now, we always pull pixels
-        from the window server.
-
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro:
-        * WebKitTestRunner/qt/WebKitTestRunner.pro:
-        * WebKitTestRunner/win/InjectedBundle.vcproj:
-        * WebKitTestRunner/win/WebKitTestRunner.vcproj:
-        Add new files.
-
-2011-02-24  Chang Shu  <cshu@webkit.org>
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        [Qt] Launch MiniBrowser if the test run is WebKit2. 
-        https://bugs.webkit.org/show_bug.cgi?id=55145
-
-        * Scripts/old-run-webkit-tests:
-        * Scripts/run-launcher:
-        * Scripts/webkitdirs.pm:
-
-2011-02-24  Victoria Kirst  <vrk@google.com>
-
-        Reviewed by Mihai Parparita.
-
-        [chromium] Move media-file.js and video-test.js back to media/ for UILayoutTests
-        https://bugs.webkit.org/show_bug.cgi?id=55089
-
-        This adds an alias into the media/ directory so that http/tests/media
-        tests can access the media resources when running in an httpd process.
-
-        * Scripts/webkitperl/httpd.pm:
-        * Scripts/webkitpy/layout_tests/port/apache_http_server.py:
-        * Scripts/webkitpy/layout_tests/port/http_server.py:
-
-2011-02-24  Andrew Wilson  <atwilson@chromium.org>
-
-        Unreviewed, rolling out r79570.
-        http://trac.webkit.org/changeset/79570
-        https://bugs.webkit.org/show_bug.cgi?id=54874
-
-        Breaks chromium build because glue/mocks/mock_web_frame.h/cc
-        was not updated
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetTestController):
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::reset):
-
-2011-02-24  Mahesh Kulkarni  <mahesh.kulkarni@nokia.com>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt] add android 2.2 user agent to QtTestBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=55085
-
-        Credit to Forrest Hodgkins to find right user-agent which works for youtube.
-        * QtTestBrowser/useragentlist.txt:
-
-2011-02-24  Adam Roben  <aroben@apple.com>
-
-        Change FrameLoadDelegate to support any number of delegates with delayed work to process
-
-        This makes our behavior match Mac more closely, and allows us to remove an incorrect
-        assertion that was firing during some tests. (The assertion was claiming that there was
-        never more than one delegate with delayed work to process, but that was not the case.)
-
-        Fixes <http://webkit.org/b/55146> Assertion failure in FrameLoadDelegate::locationChangeDone
-        when running http/tests/navigation/back-twice-without-commit.html
-
-        Reviewed by Eric Carlson.
-
-        * DumpRenderTree/win/FrameLoadDelegate.cpp:
-        (delegatesWithDelayedWork): Added. Returns all FrameLoadDelegates that have delayed work to
-        process. A single delegate may appear in this Vector more than once (just as, on Mac, a
-        single delegate may have multiple performSelector requests).
-        (processWorkTimer): Pass the HWND to ::KillTimer, for pedantic brownie points. Added an
-        assertion that the timer firing is the shared process work timer. Instead of using the
-        single, global "delegate waiting for timer" delegate, give all delegates that have delayed
-        work to process a chance to process their work.
-        (FrameLoadDelegate::locationChangeDone): If we don't already have an active timer for
-        processing delayed work, create one. Then add ourselves to the delegatesWithDelayedWork
-        Vector so our processWork function will be called when the timer fires.
-
-2011-02-24  Vsevolod Vlasov  <vsevik@chromium.org>
-
-        Reviewed by Alexey Proskuryakov.
-
-        DumpRenderTree should reset frame opener between tests.
-        https://bugs.webkit.org/show_bug.cgi?id=54874
-
-        Added clearOpener() calls between tests.
-        Some tests are using window.open() to change current window location.
-        This changes window.opener property whose nullity is checked before
-        showing xml viewer.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetTestController):
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::reset):
-
-2011-02-24  Adam Roben  <aroben@apple.com>
-
-        Don't trigger Windows builds for changes to WebCore.exp.in or the top-level GNUmakefile.am
-
-        Fixes <http://webkit.org/b/55144> Windows builders should not have built r79343 or r79440,
-        but did
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/webkitpy/common/config/build.py:
-        (_should_file_trigger_build): Loosened the pattern for GNUmakefile.am to include the
-        top-level GNUmakefile.am, and loosened the pattern for .exp files to include WebCore.exp.in.
-
-        * Scripts/webkitpy/common/config/build_unittest.py:
-        (ShouldBuildTest): Added some more tests.
-
-2011-02-24  Andras Becsi  <abecsi@webkit.org>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt] MinGW build fails to link
-        https://bugs.webkit.org/show_bug.cgi?id=55050
-
-        Prepend the libraries of subcomponents instead of appending them
-        to fix the library order according to the dependency of the libraries
-
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro:
-        * WebKitTestRunner/qt/WebKitTestRunner.pro:
-
-2011-02-24  Gabor Loki  <loki@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [Qt] Remove ARMv5 Release buildbot.
-
-        Remove ARMv5 Release buildbot, because there is very little difference
-        between ARMv5 and ARMv7 Release bots, and there is also very little
-        interest in ARMv5 build slave (compared to ARMv7).
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-
-2011-02-22  Ojan Vafai  <ojan@chromium.org>
-
-        Reviewed by Tony Chang.
-
-        fix revision number finding when creating git patches
-        https://bugs.webkit.org/show_bug.cgi?id=55024
-
-        HEAD~n does not walk merge commits correctly. git log however does.
-
-        * Scripts/webkitpy/common/checkout/scm.py:
-        * Scripts/webkitpy/common/checkout/scm_unittest.py:
-
-2011-02-23  Kenneth Russell  <kbr@google.com>
-
-        Unreviewed, rolling out r79387.
-        https://bugs.webkit.org/show_bug.cgi?id=54885
-
-        Reapply the code changes from r79038 since they weren't the root
-        cause of the test timeouts.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::reset):
-
-2011-02-23  Siddharth Mathur  <siddharth.mathur@nokia.com>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt] Make sure Symbian binary UIDs are unique
-
-        * MiniBrowser/qt/MiniBrowser.pro: Resolve the UID collision with
-        QtTestBrowser.pro by changing the UID.
-
-2011-02-23  Patrick Gansterer  <paroga@webkit.org>
-
-        Reviewed by Darin Adler.
-
-        Rename PLATFORM(CF) to USE(CF)
-        https://bugs.webkit.org/show_bug.cgi?id=53540
-
-        * DumpRenderTree/config.h:
-
-2011-02-23  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        nrwt: turn on multiprocessing on chromium_linux, clean up unit tests for worker model defaults
-        https://bugs.webkit.org/show_bug.cgi?id=55016
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_linux_unittest.py: Added.
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-
-2011-02-23  Tony Chang  <tony@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        [chromium] DumpRenderTree --check-layout-test-sys-deps leaks 4 temp dirs
-        https://bugs.webkit.org/show_bug.cgi?id=55004
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (WebKitSupportTestEnvironment::WebKitSupportTestEnvironment):
-        (WebKitSupportTestEnvironment::~WebKitSupportTestEnvironment):
-        (main): Use a C++ object to ensure that TearDownTestEnvironment
-            gets called when --check-layout-test-sys-deps is called
-
-2011-02-23  Gopal Raghavan  <gopal.1.raghavan@nokia.com>
-
-        Reviewed by Anders Carlsson.
-
-        [Qt] [Qt] check webkit style fails in qt/tests
-        https://bugs.webkit.org/show_bug.cgi?id=54998
-
-        check-webkit-style was complaining about missing config.h in WebKit/qt/test/qdeclarativewebview. This patch was originally part of 50222. Reviewer suggested to split and create a separate patch for checker.
-
-        * Scripts/webkitpy/style/checker.py:
-
-2011-02-22  Vsevolod Vlasov  <vsevik@chromium.org>
-
-        Reviewed by Pavel Feldman.
-
-        DumpRenderTree should dump as text if test path contains "dumpAsText/"
-        https://bugs.webkit.org/show_bug.cgi?id=54873
-
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController::setShouldDumpAsText):
-        (LayoutTestController::setShouldGeneratePixelResults):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::runFileTest):
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (shouldDumpAsText):
-        (dump):
-        (runTest):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (shouldDumpAsText):
-        (runTest):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::isDumpAsTextTest):
-        (WebCore::DumpRenderTree::open):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (shouldDumpAsText):
-        (runTest):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::dump):
-
-2011-02-22  Kenneth Russell  <kbr@google.com>
-
-        Reviewed by James Robinson.
-
-        Many tests started timing out on the chrome mac canaries around r79035
-        https://bugs.webkit.org/show_bug.cgi?id=54885
-
-        Revert the code changes, but not the Chromium DEPS roll, from
-        r79038 to see whether this clears up the timing-out tests. Was not
-        able to reproduce the timeouts locally with a Release mode build
-        of DRT (on Snow Leopard).
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::reset):
-
-2011-02-22  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by James Robinson.
-
-        nrwt: --platform chromium-gpu doesn't work with --worker-model=processes
-        https://bugs.webkit.org/show_bug.cgi?id=55009
-
-        * Scripts/webkitpy/layout_tests/port/chromium_gpu.py:
-
-2011-02-18  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Default to 500 for --exit-after-n-failures
-        https://bugs.webkit.org/show_bug.cgi?id=54773
-
-        Make 500 the default value for --exit-after-n-failures (ORWT bots
-        already default to this as of r75726). Similarly, change the default for
-        --exit-after-n-crashes-or-timeouts to 20.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2011-02-02  Martin Robinson  <mrobinson@igalia.com>
-
-        Reviewed by Xan Lopez.
-
-        [GTK] DRT needs an implementation of LayoutTestController.setSelectTrailingWhitespace
-        https://bugs.webkit.org/show_bug.cgi?id=53603
-
-        Add support for LayoutTestController.setSelectTrailingWhitespace by calling through
-        to DumpRenderTreeSupportGtk for this functionality.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues): Always call LayoutTestController.setSelectTrailingWhitespace to
-        false when reseting values between tests.
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setSelectTrailingWhitespaceEnabled): Call LayoutTestController.setSelectTrailingWhitespace
-        with the appropriate value.
-
-2011-02-22  Adam Roben  <aroben@apple.com>
-
-        Don't trigger a Windows build when the top-level ChangeLog changes
-
-        r79320 is an example of a change that shouldn't have built on Windows, but did, because of
-        this bug.
-
-        Fixes <http://webkit.org/b/54957> Windows bots build when top-level ChangeLog changes, but
-        shouldn't
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/webkitpy/common/config/build.py:
-        (_should_file_trigger_build): Modified the ChangeLog pattern to match the top-level
-        ChangeLog, and re-sorted it in the list.
-
-        * Scripts/webkitpy/common/config/build_unittest.py:
-        (ShouldBuildTest): Added a test that ChangeLogs don't trigger builds.
-
-2011-02-22  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r78691.
-        http://trac.webkit.org/changeset/78691
-        https://bugs.webkit.org/show_bug.cgi?id=54956
-
-        Leopard Debug is successfully building again (Requested by
-        aroben on #webkit).
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-
-2011-02-22  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Reviewed by Pavel Feldman.
-
-        Web Inspector: flakyness of inspector tests.
-        https://bugs.webkit.org/show_bug.cgi?id=54729
-
-        As far as we have the protocol with sequence numbers we can simplify test harness support
-        and drop out chomium specific methods.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/DRTDevToolsAgent.cpp:
-        (DRTDevToolsAgent::sendMessageToInspectorFrontend):
-        (DRTDevToolsAgent::runtimePropertyChanged):
-        (DRTDevToolsAgent::asyncCall):
-        (DRTDevToolsAgent::call):
-        * DumpRenderTree/chromium/DRTDevToolsAgent.h:
-        * DumpRenderTree/chromium/DRTDevToolsCallArgs.cpp: Removed.
-        * DumpRenderTree/chromium/DRTDevToolsCallArgs.h: Removed.
-        * DumpRenderTree/chromium/DRTDevToolsClient.cpp:
-        (DRTDevToolsClient::sendMessageToBackend):
-        (DRTDevToolsClient::asyncCall):
-        (DRTDevToolsClient::call):
-        * DumpRenderTree/chromium/DRTDevToolsClient.h:
-
-2011-02-22  Andras Becsi  <abecsi@webkit.org>
-
-        Reviewed by Laszlo Gombos.
-
-        [Qt] Redesign the build system
-        https://bugs.webkit.org/show_bug.cgi?id=51339
-
-        Part 2.
-
-        Build WebCore as a static library, compile the WebKit API and WebKit2 API
-        in a final step and link to WebKit2, WebCore and JSC libraries to fix
-        linking issues resulting from stripped away symbols.
-
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro: Remove superfluous includepaths.
-
-2011-02-21  Lukasz Slachciak  <l.slachciak@samsung.com>
-
-        Reviewed by Antonio Gomes.
-
-        [EFL] Restored spatial navigation option in EWebLauncher since #18662 bug is closed
-        https://bugs.webkit.org/show_bug.cgi?id=54806
-
-        * EWebLauncher/main.c:
-        (on_key_down): calling ewk_view_setting_spatial_navigation_set when "F12" pressed added.
-
-2011-02-21  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Kent Tamura.
-
-        nrwt: revert behavior on 10.5 to "old-threads". It's possible
-        that r79062 has introduced a bunch of flakiness, although I
-        can't explain why right now. This change should restore the
-        old behavior, and then we can look at the build logs to see
-        if the tests stop timing out or being flaky.
-
-        https://bugs.webkit.org/show_bug.cgi?id=54925
-
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-
-2011-02-21  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Dimitri Glazkov.
-
-        nrwt: fix typo causing us to try and repeatedly shut down the servers
-        https://bugs.webkit.org/show_bug.cgi?id=54904
-
-        * Scripts/webkitpy/layout_tests/layout_package/worker_mixin.py:
-
-2011-02-21  Alejandro G. Castro  <alex@igalia.com>
-
-        Reviewed by Csaba Osztrogonác.
-
-        REGRESSION(r79157):
-        plugins/get-url-with-javascript-destroying-plugin.html make the
-        next test crash
-        https://bugs.webkit.org/show_bug.cgi?id=54863
-
-        * GNUmakefile.am:
-
-2011-02-20  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        test-webkitpy: stop skipping a bunch of tests on win32
-        https://bugs.webkit.org/show_bug.cgi?id=54788
-
-        * Scripts/webkitpy/common/net/testoutputset_unittest.py:
-        * Scripts/webkitpy/test/main.py:
-
-2011-02-20  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Fix various bugs related to handling of dir separators and real
-        vs. fake filesystems that were causing test-webkitpy to fail
-        tests on win32. These bugs have a variety of causes but are
-        lumped together because they should be easy to review.
-
-        https://bugs.webkit.org/show_bug.cgi?id=54700
-
-        * Scripts/webkitpy/common/net/testoutput.py:
-          Here we were using os.path.sep but not escaping it prior to
-          using in a regexp, which  caused bad things on win32.
-        * Scripts/webkitpy/common/net/testoutput_unittest.py:
-          Same here.
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-          Here we were using the native filesystem instead of the mock
-          filesystem, making some tests unnecessarily platform dependent.
-          Also we weren't setting the default configuration for the
-          TestChromiumWinPort.
-        * Scripts/webkitpy/layout_tests/update_webgl_conformance_tests.py:
-          Here we *shouldn't* use os.path.join(), just so the code becomes
-          less platform dependent.
-        * Scripts/webkitpy/style/checker.py:
-          Here we should be using os.path.sep instead of "/"; the tests
-          require the native filesystem.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-          Here the underlying code is using os.path.sep, so we probably
-          should as well.
-        * Scripts/webkitpy/style/test_expectations_unittest.py:
-          Here we should be using the filesystem hanging of the port
-          object (which is the mocked filesystem) rather than the native
-          one.
-
-2011-02-20  Anders Carlsson  <andersca@apple.com>
-
-        Reviewed by Maciej Stachowiak.
-
-        Crash when a plug-in requests a javascript: url that destroys the plug-in
-        https://bugs.webkit.org/show_bug.cgi?id=54837
-        <rdar://problem/9005475>
-
-        Add new plug-in test.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-        (PluginTest::NPN_GetURL):
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.h:
-        * DumpRenderTree/TestNetscapePlugIn/Tests/GetURLWithJavaScriptURLDestroyingPlugin.cpp: Added.
-        (GetURLWithJavaScriptURLDestroyingPlugin::GetURLWithJavaScriptURLDestroyingPlugin):
-        (GetURLWithJavaScriptURLDestroyingPlugin::NPP_New):
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-
-2011-02-19  Patrick Gansterer  <paroga@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        Make WinCE a core builder
-        https://bugs.webkit.org/show_bug.cgi?id=54801
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-
-2011-02-19  Lukasz Slachciak  <l.slachciak@samsung.com>
-
-        Reviewed by Andreas Kling.
-
-        Fixed problem with launching EWebLauncher with "run-launcher --efl". Incorrect path referring to non-existing .libs directory ws set.
-        https://webkit.org/b/54778
-
-        * Scripts/webkitdirs.pm:
-
-2011-02-18  David Levin  <levin@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        check-webkit-style: Misses brace style error when the line with the { has a } in it.
-        https://bugs.webkit.org/show_bug.cgi?id=54769
-
-        * Scripts/webkitpy/style/checkers/cpp.py: Fixed the check for the close brace
-          to only look after the last open brace, so that the open brace in this line
-          "} else {" will still be able to trigger the error.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Added related unit tests.
-
-2011-02-18  Zan Dobersek  <zandobersek@gmail.com>
-
-        Reviewed by Martin Robinson.
-
-        [Gtk] Re-enable meter tag support
-        https://bugs.webkit.org/show_bug.cgi?id=54762
-
-        Meter tag is supported on the Gtk port, enable it by default.
-
-        * Scripts/build-webkit:
-
-2011-02-18  David Levin  <levin@chromium.org>
-
-        Reviewed by Eric Seidel.
-
-        check-webkit-style falsely complains about WebKitGTK+ public headers
-        https://bugs.webkit.org/show_bug.cgi?id=54650
-
-        * Scripts/webkitpy/style/checker.py: Add some exceptions for the gtk files.
-        * Scripts/webkitpy/style/checkers/cpp.py: Restrict the checks for WEBKIT_API
-          to the chromium directory (and improved the checks slightly).
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py: Added corresponding tests.
-
-2011-02-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by James Robinson.
-
-        new-run-webkit-tests: enable multiple processes by default on
-        mac. This change removes the artificial restrictions we placed
-        on the # of child processes we used with the old threading
-        model, and switches to the new message-based model and multiple
-        processes, where available. If multiple processes are not
-        available (Leopard / Python 2.5), then we use the 'inline' model
-        instead of the 'old-threads' model on the 'mac' port or one
-        process on the 'chromium-mac' port. We need additional testing
-        to see if the new 'threads' model works reliably and is worth
-        supporting, or if we should just live with things being slightly
-        slow.
-
-        https://bugs.webkit.org/show_bug.cgi?id=54596
-
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-02-18  Andrew Wilson  <atwilson@chromium.org>
-
-        Unreviewed, rolling out r79047.
-        http://trac.webkit.org/changeset/79047
-        https://bugs.webkit.org/show_bug.cgi?id=54596
-
-        Broke canary bots - please watch the canaries the next time
-        you land this
-
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-
-2011-02-18  Emil A Eklund  <eae@chromium.org>
-
-        Reviewed by Darin Adler.
-
-        Crash in EventHandler::sendContextMenuEventForKey
-        https://bugs.webkit.org/show_bug.cgi?id=54495
-
-        Add support for the context menu key (VK_APPS) to EventSender for
-        platforms that support the key.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::keyDown):
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (keyDownCallback):
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::keyDown):
-        * DumpRenderTree/win/EventSender.cpp:
-        (keyDownCallback):
-
-2011-02-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        new-run-webkit-tests: enable multiple processes by default on mac
-        https://bugs.webkit.org/show_bug.cgi?id=54596
-
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-
-2011-02-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Roben.
-
-        Skip pretty patch unit tests if ruby isn't installed.
-
-        https://bugs.webkit.org/show_bug.cgi?id=54699
-
-        * Scripts/webkitpy/common/prettypatch_unittest.py:
-
-2011-02-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Roben.
-
-        Skip mac.test_skipped_file_paths() when running on win32; the
-        test has hardcoded '/' directory separators and since it's a
-        port-specific test and we have coverage on other ports it's not
-        worth it to make the test more generic.
-
-        https://bugs.webkit.org/show_bug.cgi?id=54698
-
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-
-2011-02-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Roben.
-
-        Fix webkitpy.layout_tests.port.config_unittest to work on Win32.
-
-        https://bugs.webkit.org/show_bug.cgi?id=54703
-
-        * Scripts/webkitpy/layout_tests/port/config_unittest.py:
-
-2011-02-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Roben.
-
-        Change the default port we're mocking out on win32 when we
-        run mock_drt_unittest. Normally we'd default to the
-        port-specific default, but that would be "win", which doesn't
-        currently work.
-
-        https://bugs.webkit.org/show_bug.cgi?id=54708
-
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-
-2011-02-18  Kenneth Russell  <kbr@google.com>
-
-        Reviewed by James Robinson.
-
-        [chromium] Clean up initialization of minimum timer interval
-        https://bugs.webkit.org/show_bug.cgi?id=54772
-
-        Use new GetForegroundTabTimerInterval function in webkit_support
-        to reset the minimum timer interval before each test.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::reset):
-
-2011-02-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Roben.
-
-        r78494 fixed the chromium_win unittest failing under win32,
-        but not cygwin. This fixes cygwin as well.
-
-        https://bugs.webkit.org/show_bug.cgi?id=54652
-
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-
-2011-02-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai, Mihai Parparita.
-
-        new-run-webkit-tests: r78522 made it impossible to create a
-        'chromium-win' or 'chromium-mac' port; they would always get the
-        version tacked on to the end. It turns out that we actually need
-        to be able to create these ports in order for
-        rebaseline-chromium-webkit-tests to work correctly given the
-        broken coverage of our layout bots. As soon as we get SL and
-        Win 7 bots running reliably on the canaries, we can get rid of
-        this change. Note that we only need to change the chromium_mac
-        and win ports because linux doesn't yet use versions and that
-        script doesn't work with non-chromium ports.
-
-        Also, this change fixes a bug where we were using
-        "platform/chromium-win-win7" and
-        "platform/chromium-mac-snowleopard" as the baseline dirs for
-        Win 7 and SL; we should've been using the generic directories
-        instead since they are the newest versions of the os's.
-
-        https://bugs.webkit.org/show_bug.cgi?id=54691
-
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
-
-2011-02-16  MORITA Hajime  <morrita@google.com>
-
-        Reviewed by Kent Tamura.
-
-        [Chromium][DRT] some PostDelayedTask() accesses possibly dangling this pointer.
-        http://webkit.org/b/53899
-
-        Replaced static invocation wrappers with MethodTask objects,
-        which are removed on WebViewHost destructor.
-        
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::requestCheckingOfText):
-        (WebViewHost::scheduleAnimation):
-        (WebViewHost::closeWidgetSoon):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost::HostMethodTask::HostMethodTask):
-        (WebViewHost::HostMethodTask::runIfValid):
-        (WebViewHost::taskList):
-
-2011-02-07  Hayato Ito  <hayato@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Get rid of code which writes test results from test_type's
-        compare_output() method.
-        Writing test results now happens in single_test_runner, using
-        newly introduced test_result_writer module.
-
-        Subsequent patches will eliminate test_type/* classes.
-
-        https://bugs.webkit.org/show_bug.cgi?id=53908
-
-        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
-        * Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py: Added.
-        * Scripts/webkitpy/layout_tests/test_types/image_diff.py:
-        * Scripts/webkitpy/layout_tests/test_types/test_type_base.py:
-        * Scripts/webkitpy/layout_tests/test_types/text_diff.py:
-
-2011-02-17  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Roben.
-
-        Add blacklist of remaining webkitpy/* modules that fail on
-        Win32, so that test-webkitpy will at least run cleanly.
-
-        https://bugs.webkit.org/show_bug.cgi?id=54709
-
-        * Scripts/webkitpy/layout_tests/test/main.py:
-
-2011-02-17  Simon Fraser  <simon.fraser@apple.com>
-
-        Reviewed by Sam Weinig.
-
-        Set a preference to ensure that scrollbars are in a predictable
-        state for DRT.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-
-2011-02-17  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Roben.
-
-        test-webkitpy doesn't work with the multiprocessing module on win32
-        or cygwin, so we skip it for now.
-
-        https://bugs.webkit.org/show_bug.cgi?id=54520
-
-        * Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/run_webkit_tests_unittest.py:
-
-2011-02-17  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Adam Roben.
-
-        Fix version, baseline_search_path for chromium-win-win7. Also
-        fix chromium_win_unittests, and fix port_testcase.make_port()
-        to correctly use the options passed into it and only set
-        results_directory() if necessary.
-
-        https://bugs.webkit.org/show_bug.cgi?id=54652
-
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-
-2011-02-17  Dirk Pranke  <dpranke@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        Fix a hang in new-run-webkit-tests when run with
-        --dry-run --worker-model=processes
-
-        https://bugs.webkit.org/show_bug.cgi?id=54595
-
-        * Scripts/webkitpy/layout_tests/layout_package/test_runner2.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
-
-2011-02-17  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Build fixes after recent changes.
-
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setMinimumTimerInterval):
-        * wx/build/settings.py:
-
-2011-02-17  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] ImageDiff sometimes hangs
-        https://bugs.webkit.org/show_bug.cgi?id=54641
-
-        * DumpRenderTree/qt/ImageDiff.cpp: Clear actualImage and baselineImage after all comparison.
-        (main):
-
-2011-02-17  Peter Varga  <pvarga@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        The run-sunspider --v8-suite doesn't work
-        https://bugs.webkit.org/show_bug.cgi?id=54660
-
-        * Scripts/run-sunspider:
-
-2011-02-17  Gabor Rapcsanyi  <rgabor@webkit.org>
-
-        Reviewed by Csaba Osztrogonác.
-
-        [NRWT] Fix environment setup on Qt port.
-        https://bugs.webkit.org/show_bug.cgi?id=54549
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-
-2011-02-16  Yael Aharon  <yael.aharon@nokia.com>
-
-        Reviewed by Andreas Kling.
-
-        [Qt] Enable tiled backing store by default in MiniBrowser.
-        https://bugs.webkit.org/show_bug.cgi?id=54581
-
-        Instead of a flag to turn it on, a new flag is defined to turn
-        tiled backing store off.
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::handleUserOptions):
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-        (WindowOptions::WindowOptions):
-
-2011-02-16  Eric Seidel  <eric@webkit.org>
-
-        Reviewed by Mihai Parparita.
-
-        flaky test archive uploads are always 22 bytes long
-        https://bugs.webkit.org/show_bug.cgi?id=54593
-
-        Speculative fix for the 22-bytes bug.
-
-        * Scripts/webkitpy/tool/bot/flakytestreporter.py:
-
-2011-02-16  Anna Cavender  <annacc@chromium.org>
-
-        Reviewed by Mihai Parparita.
-
-        http/tests/media should be served over HTTP (not from local file)
-        https://bugs.webkit.org/show_bug.cgi?id=54028
-
-        Removed special file:// treatment of http/tests/media
-
-        * Scripts/old-run-webkit-tests:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-
-2011-02-16  Mihai Parparita  <mihaip@chromium.org>
-
-        Reviewed by Ojan Vafai.
-
-        ChangeLog.parse_latest_entry_from_file does not handle rolled over ChangeLogs
-        https://bugs.webkit.org/show_bug.cgi?id=54609
-        
-        r78737 rolled over ChangeLogs, and webkit-patch complains when landing
-        patches such as this one that are the first to add an entry to the
-        ChangeLog (since they don't see a second date line to know where the
-        entry ends).
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-
-== Rolled over to ChangeLog-2011-02-16 ==
diff --git a/Tools/ChangeLog-2012-10-02 b/Tools/ChangeLog-2012-10-02
deleted file mode 100644
index 017168e..0000000
--- a/Tools/ChangeLog-2012-10-02
+++ /dev/null
@@ -1,28362 +0,0 @@
-2012-10-02  Daniel Bates  <dbates@webkit.org>
-
-        Define watch list "webkitperl", "SVNScripts", and "XSS" to watch for changes
-        to Tools/Scripts/{VCSUtils.pm, webkitdirs.pm, webkitperl}, Tools/Scripts/svn-*
-        scripts, and files whose name contains the word "XSS", respectively. Subscribe
-        myself to these lists.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-10-02  Roger Fong  <roger_fong@apple.com>
-
-        executive_unittest.py fails on Apple Windows bots but not when run locally.
-        https://bugs.webkit.org/show_bug.cgi?id=98196
-
-        Reviewed by Eric Seidel.
-
-        Making the test more flexible to check for cygwin and allow different outputs from process.wait().
-
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        (ExecutiveTest.serial_test_kill_process):
-
-2012-10-02  Roger Fong  <roger_fong@apple.com>
-
-        Ignore failing line of SpacebarScrolling API test on Windows.
-        https://bugs.webkit.org/show_bug.cgi?id=84961
-
-        Reviewed by Anders Carlsson.
-
-        Test is failing because of https://bugs.webkit.org/show_bug.cgi?id=97946.
-        Ignoring the line that fails on Windows for now until the larger problem at hand is fixed.
-
-        * TestWebKitAPI/Tests/WebKit2/SpacebarScrolling.cpp:
-        (TestWebKitAPI::TEST):
-
-2012-10-02  Tony Chang  <tony@chromium.org>
-
-        check-webkit-style can't handle qt-arm, qt-win, qt-mac, qt-5.0, qt-5.0-wk1 and qt-5.0-wk2 TestExpecatations
-        https://bugs.webkit.org/show_bug.cgi?id=98140
-
-        Reviewed by Eric Seidel.
-
-        Fix a bug where we were always using the host OS rather than using what was passed in as part of the
-        port name on Qt.
-
-        There's also a bug with being able to test for qt-5.0 expectations files when on a system with
-        Qt 4.8 installed. I'm not sure how to solve that, so for now, stop emitting a style warning about
-        not checking a file.
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort._search_paths): Use passed in OS.
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-        (TestExpectationsChecker.check): Don't warn if we don't know about the TestExpectations file.
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-        (TestExpectationsTestCase.test_determine_port_from_expectations_path): Added a test case for the OS fix.
-        Add a commented out test for the version case.
-
-2012-10-02  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        Remove the last bits of MSYS support from webkitperl.
-        https://bugs.webkit.org/show_bug.cgi?id=98195
-
-        Reviewed by Eric Seidel.
-
-        No ports currently need MinGW/MSYS support, so remove the last
-        hackish bits related to it from our Perl code.
-
-        * Scripts/commit-log-editor:
-        (createCommitMessage):
-        * Scripts/old-run-webkit-tests:
-        * Scripts/webkitdirs.pm:
-        (isAnyWindows):
-        (isWindows):
-
-2012-10-02  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        Remove MSYS-related changes to the http testing infrastructure.
-        https://bugs.webkit.org/show_bug.cgi?id=98183
-
-        Reviewed by Eric Seidel.
-
-        In the process of removing the cruft that has accumulated in our
-        Apache configuration code, we can basically revert r77161 which
-        added some MSYS (mingw)-specific code to old-run-webkit-tests,
-        since it is not being used by any port anymore.
-
-        * Scripts/run-webkit-httpd: Remove isMsys()-dependent hacks.
-        * Scripts/webkitperl/httpd.pm:
-        (getHTTPDPath): Remove isMsys() code path.
-        (getDefaultConfigForTestDirectory): Revert isMsys() hacks.
-        (getHTTPDConfigPathForTestDirectory): Do not point to the noew
-        removed apache2-msys-httpd.conf.
-        (convertMsysPath): Removed.
-
-2012-10-02  Sadrul Habib Chowdhury  <sadrul@chromium.org>
-
-        [chromium] Make sure the touch-points in the touch-events have the correct state.
-        https://bugs.webkit.org/show_bug.cgi?id=98110
-
-        Reviewed by Adam Barth.
-
-        TestWebPlugin can now be configured to print out some details about
-        events. For now, details for only touch events are printed. This is
-        used to verify that touch-points in the touch-events are properly
-        set.
-
-        * DumpRenderTree/chromium/TestWebPlugin.cpp:
-        (pointState):
-        (printTouchList):
-        (printEventDetails):
-        (TestWebPlugin::TestWebPlugin):
-        (TestWebPlugin::handleInputEvent):
-        * DumpRenderTree/chromium/TestWebPlugin.h:
-        (TestWebPlugin):
-
-2012-10-02  Zan Dobersek  <zandobersek@gmail.com>
-
-        [XvfbDriver] First tests in each worker occasionally crash
-        https://bugs.webkit.org/show_bug.cgi?id=96203
-
-        Reviewed by Dirk Pranke.
-
-        Often in debug builds, the first tests in each worker crash because they
-        can't yet open the Xvfb display assigned to them. This indicates Xvfb hasn't
-        yet been set up.
-
-        To avoid this, the execution should halt for a small amount of time before tests
-        are run so the Xvfb process has enough time to get ready. At the moment this is
-        done right after the Xvfb process is spawned and the execution halts for one
-        second. That value is overriden to zero when testing to not prolong the testing time.
-
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver.py:
-        (XvfbDriver.__init__):
-        (XvfbDriver._start):
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver_unittest.py:
-        (XvfbDriverTest.make_driver):
-
-2012-10-02  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Use XvfbDriver for layout tests
-        https://bugs.webkit.org/show_bug.cgi?id=98162
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Use XvfbDriver for layout tests on EFL port.
-
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort._driver_class):
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver.py:
-        (XvfbDriver._start): Set DUMPRENDERTREE_TEMP and LOCAL_RESOURCE_ROOT
-        environment variables in XvfbDriver as those are needed for
-        TestRunner::pathToLocalResource().
-
-2012-10-02  Zan Dobersek  <zandobersek@gmail.com>
-
-        [Gtk] Several tests launch g_object_ref/unref assertion messages
-        https://bugs.webkit.org/show_bug.cgi?id=95062
-
-        Reviewed by Martin Robinson.
-
-        Only increase and decrease reference count of the accessibility
-        UI element if it actually exists.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::AccessibilityUIElement):
-        (AccessibilityUIElement::~AccessibilityUIElement):
-
-2012-10-02  Douglas Stockwell  <dstockwell@chromium.org>
-
-        [chromium] running layout tests on mountainlion should use chromium TestExpectations
-        https://bugs.webkit.org/show_bug.cgi?id=98119
-
-        Reviewed by Adam Barth.
-
-        Some basic support for mountainlion has already been committed but it failed to refer
-        to the chromium TestExpectations.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort):
-        * Scripts/webkitpy/layout_tests/port/chromium_port_testcase.py:
-        (ChromiumPortTestCase.test_all_test_configurations):
-
-2012-10-02  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        webkitpy: Stop listening on port 8081 when using Apache.
-        https://bugs.webkit.org/show_bug.cgi?id=98155
-
-        Reviewed by Eric Seidel.
-
-        No test currently uses this port, and the lighttpd configuration
-        does not open it.
-
-        This helps the efforts of bringing some consistency to the Apache
-        configuration at the moment by opening the same ports in the
-        webkitpy side and in the httpd.conf side (the idea is to remove
-        the httpd.conf side later), and also makes the behavior consistent
-        across the two servers we currently support.
-
-        * Scripts/webkitpy/layout_tests/servers/apache_http_server.py:
-        (LayoutTestApacheHttpd.__init__):
-
-2012-10-02  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [WK2] REGRESSION(r128623): It made layout tests extremely slow
-        https://bugs.webkit.org/show_bug.cgi?id=96862
-
-        Reviewed by Simon Hausmann.
-
-        Disable calling the extremely slow WKBundleSetDatabaseQuota() between tests until proper fix.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-
-2012-10-02  Philip Rogers  <pdr@google.com>
-
-        Fix PerfTest standard deviation calculation.
-        https://bugs.webkit.org/show_bug.cgi?id=98115
-
-        Reviewed by Ryosuke Niwa.
-
-        Previously our standard deviation calculation was incorrect. This patch
-        updates perftest.py's algorithm to calculate the sample standard deviation
-        (with Bessel's correction) using Knuth's online algorithm:
-        http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance#Online_algorithm
-        An existing test has been modified to prove our new results.
-
-        This patch also updates runner.js to use Bessel's correction in
-        its sample standard deviation calculation, which is more accurate
-        for small sample sizes.
-
-        Additionally, runner.js has been modified to not calculate
-        the 'sum' statistic, which was not very useful.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-
-            The unused variable valueSum has also been removed.
-
-        (PageLoadingPerfTest.run):
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py:
-
-            This test calculates the stdev of {2000, 3000, ..., 20000} which
-            was hand-calculated using a spreadsheet.
-
-        (TestPageLoadingPerfTest.test_run):
-
-2012-10-01  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        webkitpy should accept a different httpd.conf specified by the user
-        https://bugs.webkit.org/show_bug.cgi?id=98071
-
-        Reviewed by Dirk Pranke.
-
-        The existing httpd.conf variants (or lighttpd.conf, for that
-        matter) we have do not always suit the user's system. This is
-        particularly true on Linux/Unix, where Apache can be installed in
-        a plethora of ways and the LoadModule calls can fail to specify
-        the proper module paths.
-
-        For now, we start accepting the WEBKIT_HTTP_SERVER_CONF_PATH
-        environment variable, which allows the user to specify the
-        absolute path to another http server configuration file that might
-        work on the user's system.
-
-        In the long term, we should try to generate our configuration file
-        and stop requiring all the different httpd.conf files we have as
-        well as this hack.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port._path_to_apache_config_file):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (test_path_to_apache_config_file):
-
-2012-10-01  Emil A Eklund  <eae@chromium.org>
-
-        Unreviewed, upgrade eae to reviewer. 
-        http://lists.webkit.org/mailman/private/webkit-committers/2012-October/000191.html
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-10-01  Ming Xie  <mxie@rim.com>
-
-        [BlackBerry] Add a early return in buildCMakeProjectOrExit()
-        https://bugs.webkit.org/show_bug.cgi?id=98052
-
-        Reviewed by Rob Buis.
-
-        This option allows our build to only run the CMake build configuration
-        step when environment variable GENERATE_CMAKE_PROJECT_ONLY is specified.
-
-        * Scripts/webkitdirs.pm:
-        (buildCMakeProjectOrExit):
-
-2012-10-01  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [webkitpy] Detect the multiple names of the wdiff binary in the Port class.
-        https://bugs.webkit.org/show_bug.cgi?id=98039
-
-        Reviewed by Dirk Pranke.
-
-        Unify the duplicate checks for the wdiff binary present in
-        different ports into the base Port class.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port):
-        (Port._path_to_wdiff):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        (ChromiumLinuxPort._path_to_wdiff): Removed.
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort._path_to_wdiff): Removed.
-
-2012-10-01  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [chromium] Remove custom implementation of _path_to_apache_config_file in chromium_linux.
-        https://bugs.webkit.org/show_bug.cgi?id=98042
-
-        Reviewed by Dirk Pranke.
-
-        The Chromium-based ports inherit from Port these days, so get rid
-        of the custom implementation of _path_to_apache_config_file() in
-        favor of the more portable one in the Port class.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        (ChromiumLinuxPort._path_to_apache_config_file):
-
-2012-10-01  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [chromium] Remove duplicated _is_redhat_based() implementation from chromium_linux.py.
-        https://bugs.webkit.org/show_bug.cgi?id=98035
-
-        Reviewed by Dirk Pranke.
-
-        Since the Chromium port classes inherit from Port these days, it
-        can rely on the same implementation of _is_redhat_based() present
-        there instead of duplicating it.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        (ChromiumLinuxPort._is_redhat_based): Removed.
-
-2012-10-01  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [GTK] Rely on the general implementation for detecting the Apache server path.
-        https://bugs.webkit.org/show_bug.cgi?id=98033
-
-        Reviewed by Martin Robinson.
-
-        The implemenentation of _path_to_apache() in base.py already
-        checks for the same paths gtk.py tries; the only difference is
-        that all of the are tried regardless of the current distro.
-
-        Doing so is more portable, and lets us remove some distro-checking
-        from the code.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort._path_to_apache): Remove.
-
-2012-10-01  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed, update the URL of the Szeged SVN mirror.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-10-01  Yuta Kitamura  <yutak@chromium.org>
-
-        Unreviewed. Create WebSocket watch list, and add myself to that list.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-09-30  Taiju Tsuiki  <tzik@chromium.org>
-
-        Unreviewed. Adding myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-09-30  Sadrul Habib Chowdhury  <sadrul@chromium.org>
-
-        [chromium] Add a test to verify that a plugin does not receive touch-events unless it explicitly requests for them
-        https://bugs.webkit.org/show_bug.cgi?id=97975
-
-        Reviewed by Adam Barth.
-
-        TestWebPlugin can now be configured to accept touch events or not. Use this
-        configurability to verify that a plugin does not receive touch events unless
-        it explicitly requests for them.
-
-        * DumpRenderTree/chromium/TestWebPlugin.cpp:
-        (TestWebPlugin::TestWebPlugin):
-        (TestWebPlugin::initialize):
-        (TestWebPlugin::parseBoolean):
-        * DumpRenderTree/chromium/TestWebPlugin.h:
-        (TestWebPlugin):
-
-2012-09-28  Mariusz Grzegorczyk  <mariusz.g@samsung.com>
-
-        [WK2][GTK][EFL] Share WebKit2-GTK plugin process implementation with EFL port
-        https://bugs.webkit.org/show_bug.cgi?id=91844
-
-        Reviewed by Simon Hausmann.
-
-        Turn on Netscape Plugin API option by default.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-09-28  Dirk Pranke  <dpranke@chromium.org>
-
-        webkit-patch rebaseline-expectations is broken
-        https://bugs.webkit.org/show_bug.cgi?id=97619
-
-        Reviewed by Ojan Vafai.
-
-        The new expectations format is causing two problems for
-        webkit-patch rebaseline expectations
-
-        1) the transformation into and out of the old syntax (which is
-        still used internally) is somewhat lossy, e.g., we're not
-        preserving the case of Bug(x) identifiers. Also, we can't
-        tell if the input was [ WontFix ] or [ Skip WontFix Pass ]
-        2) the new syntax is more lenient, allowing for multiple ways to
-        specify the same result, e.g., "[ Skip ]" may or may not be
-        missing.
-
-        As a result, we end up rewriting a whole bunch of lines for
-        purely syntactic differences.
-
-        Both of these things are bugs that need to be fixed, but
-        we should also not just rewrite lines that shouldn't be
-        modified.
-
-        This patch fixes the last issue (no rewriting).
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectationLine._format_line):
-        (TestExpectations.remove_rebaselined_tests):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (RebaseliningTest.test_remove):
-
-2012-09-28  Dirk Pranke  <dpranke@chromium.org>
-
-        virtual directories should just rename the beginning of the test path
-        https://bugs.webkit.org/show_bug.cgi?id=97925
-
-        Reviewed by Ojan Vafai.
-
-        We were replacing all occurrences of the base prefix of a
-        virtual test suite with the virtual name, instead of just the
-        first. So, where we had softwarecompositing running the
-        compositing tests, any compositing test that actually had
-        "compositing" in the test base name would get that expanded
-        incorrectly.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.populated_virtual_test_suites):
-        (Port.lookup_virtual_test_base):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_tests):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-
-2012-09-28  Ojan Vafai  <ojan@chromium.org>
-
-        Garden-o-matic sometimes things buildbot warnings are failures
-        https://bugs.webkit.org/show_bug.cgi?id=97926
-
-        Reviewed by Tony Chang.
-
-        It turns out the JSON clearly tells us if it's a failure.
-        We want to skip all warnings even if they don't have "warning" in the text.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders_unittests.js:
-
-2012-09-28  Harald Tveit Alvestrand  <harald@alvestrand.no>
-
-        Implement the GetStats interface on PeerConnection
-        https://bugs.webkit.org/show_bug.cgi?id=95193
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (RTCStatsRequestSucceededTask):
-        (RTCStatsRequestSucceededTask::RTCStatsRequestSucceededTask):
-        (MockWebRTCPeerConnectionHandler::getStats):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.h:
-        (MockWebRTCPeerConnectionHandler):
-
-2012-09-28  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
-
-        [NRWT] XvfbDriver should choose the next free display
-        https://bugs.webkit.org/show_bug.cgi?id=88414
-
-        Reviewed by Dirk Pranke.
-
-        This change how the XvfbDriver choose the next display. Before
-        this the choosing are based on the worker number but it caused
-        errors when several nrwt run on the same time. This add process
-        based free diplay search.
-
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver.py:
-        (XvfbDriver.__init__):
-        (XvfbDriver._next_free_display):
-        (XvfbDriver._start):
-        (XvfbDriver.stop):
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver_unittest.py:
-        (XvfbDriverTest.make_driver):
-        (XvfbDriverTest.test_start_no_pixel_tests):
-        (XvfbDriverTest.test_start_pixel_tests):
-        (XvfbDriverTest.test_start_arbitrary_worker_number):
-        (XvfbDriverTest.test_next_free_display):
-        (XvfbDriverTest):
-        (XvfbDriverTest.test_start_next_worker):
-
-2012-09-28  Huang Dongsung  <luxtella@company100.net>
-
-        [GTK] Enable CSS Shaders layout LayoutTests on GTK+
-        https://bugs.webkit.org/show_bug.cgi?id=97821
-
-        Reviewed by Martin Robinson.
-
-        This feature is disabled via Settings by default, but for testing,
-        we enable it using layoutTestController.overridePreferences. Add the
-        necessary plumbing for DRT.
-
-        WTR already works because support was added for Apple Mac earlier.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues): Feature is off by default.
-        * DumpRenderTree/gtk/TestRunnerGtk.cpp:
-        (TestRunner::overridePreference): Add handling of WebKitCSSCustomFilterEnabled.
-
-2012-09-28  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Make NRWT use wk2/TestExpectations file
-        https://bugs.webkit.org/show_bug.cgi?id=97894
-
-        Reviewed by Simon Hausmann.
-
-        * Scripts/webkitpy/layout_tests/port/qt.py: Remove unnecessary _skipped_file_search_paths function.
-        (QtPort.expectations_files): Add wk2 if --webkit-test-runner option added.
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py: Remove unnecessary test__skipped_file_search_paths function.
-        (QtPortTest._assert_search_path): Removed.
-        (QtPortTest.test_expectations_files): Add wk2 if --webkit-test-runner option added, and code cleanup.
-
-2012-09-28  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL][DRT] EFL's layoutTestController.keepWebHistory should enable visited links tracking
-        https://bugs.webkit.org/show_bug.cgi?id=97901
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        EFL's DRT testRunner.keepWebHistory should enable visited links tracking in order
-        to be consistent with WTR implementation and also several tests rely on that (fast/history).
-
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        (TestRunner::keepWebHistory):
-
-2012-09-28  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL][DRT] EFL DRT should disable visited links tracking by default
-        https://bugs.webkit.org/show_bug.cgi?id=97881
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Visited links tracking is disabled by default for each test.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-
-2012-09-28  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Unreviewed, rolling out r129863.
-        http://trac.webkit.org/changeset/129863
-        https://bugs.webkit.org/show_bug.cgi?id=97173
-
-        Broken debug WK2 layout test
-
-        * MiniBrowser/efl/main.c:
-        (quit):
-        (main):
-        * WebKitTestRunner/efl/PlatformWebViewEfl.cpp:
-        (WTR::initEcoreEvas):
-        (WTR::PlatformWebView::~PlatformWebView):
-        * WebKitTestRunner/efl/main.cpp:
-        (main):
-
-2012-09-28  Kai Koehne  <kai.koehne@digia.com>
-
-        [Qt] Use qInstallMessageHandler()
-        https://bugs.webkit.org/show_bug.cgi?id=96648
-
-        Reviewed by Jocelyn Turcotte.
-
-        qInstallMsgHandler() got deprecated in Qt 5.
-
-        * DumpRenderTree/qt/DumpRenderTreeMain.cpp:
-        (messageHandler):
-        (main):
-        * WebKitTestRunner/qt/main.cpp:
-        (messageHandler):
-        (main):
-
-2012-09-28  Eunmi Lee  <eunmi15.lee@samsung.com>
-
-        [EFL][WK2] Refactoring initialization and shutdown codes of EFL libraries.
-        https://bugs.webkit.org/show_bug.cgi?id=97173
-
-        Reviewed by Gyuyoung Kim.
-
-        The initialization and shutdown are done inside the webkit, so we don't
-        have to call them out of the webkit.
-
-        * MiniBrowser/efl/main.c:
-        (quit):
-        (main):
-        * WebKitTestRunner/efl/PlatformWebViewEfl.cpp:
-        (WTR::initEcoreEvas):
-        (WTR::PlatformWebView::~PlatformWebView):
-        * WebKitTestRunner/efl/main.cpp:
-        (main):
-
-2012-09-27  Alexandre Elias  <aelias@chromium.org>
-
-        [chromium] DumpRenderTree support for software compositing
-        https://bugs.webkit.org/show_bug.cgi?id=96853
-
-        Reviewed by James Robinson.
-
-        This adds software compositor support to DumpRenderTree.  The only
-        thing needed is a minimal OutputSurfaceSoftware that holds a
-        viewport-sized bitmap. Then, I added virtual test suite
-        platform/chromium/virtual/softwarecompositing -- a mirror of the
-        compositing/ directory with --enable-software-compositing, and
-        expectations for not yet supported tests.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::softwareCompositingEnabled):
-        (TestShell::setSoftwareCompositingEnabled):
-        (TestShell):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createOutputSurface):
-        * DumpRenderTree/chromium/WebViewHostOutputSurface.cpp:
-        (WebKit::WebViewHostOutputSurface::create3d):
-        (WebKit):
-        (WebKit::WebViewHostOutputSurface::createSoftware):
-        (WebKit::WebViewHostOutputSurface::WebViewHostOutputSurface):
-        (WebKit::WebViewHostOutputSurface::bindToClient):
-        (WebKit::WebViewHostOutputSurface::surfaceSoftware):
-        * DumpRenderTree/chromium/WebViewHostOutputSurface.h:
-        (WebKit):
-        (WebViewHostOutputSurface):
-        * DumpRenderTree/chromium/WebViewHostSoftwareOutputDevice.cpp: Copied from Tools/DumpRenderTree/chromium/WebViewHostOutputSurface.cpp.
-        (WebKit):
-        (WebKit::WebViewHostSoftwareOutputDevice::lockForWrite):
-        (WebKit::WebViewHostSoftwareOutputDevice::unlockForWrite):
-        (WebKit::WebViewHostSoftwareOutputDevice::lockForRead):
-        (WebKit::WebViewHostSoftwareOutputDevice::unlockForRead):
-        (WebKit::WebViewHostSoftwareOutputDevice::viewportChanged):
-        * DumpRenderTree/chromium/WebViewHostSoftwareOutputDevice.h: Copied from Tools/DumpRenderTree/chromium/WebViewHostOutputSurface.cpp.
-        (WebKit):
-        (WebViewHostSoftwareOutputDevice):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.virtual_test_suites):
-
-2012-09-27  Nasko Oskov  <nasko@chromium.org>
-
-        Move DumpRenderTree to use newer version of the name method of
-        WebFrame and the willCheckAndDispatchMessageEvent method of WebFrameClient
-        https://bugs.webkit.org/show_bug.cgi?id=95254
-
-        Reviewed by Adam Barth.
-
-        The WebFrame name() method is removed and replaced by better named
-        uniqueName() method, so DRT needs to be updated to use this new version.
-        Also the willCheckAndDispatchMessageEvent in WebFrameClient gained
-        one more parameter, which had to be added in DRT.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (dumpFramesAsText):
-        (dumpFramesAsPrintedText):
-        (dumpFrameScrollPosition):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::unableToImplementPolicyWithError):
-        (WebViewHost::willCheckAndDispatchMessageEvent):
-        (WebViewHost::printFrameDescription):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-09-27  Julie Parent  <jparent@chromium.org>
-
-        Add webkit_unit_tests to the flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=97814
-
-        Reviewed by Dirk Pranke.
-
-        webkit_unit_tests run on the same bots as test_shell_tests.
-
-        * TestResultServer/static-dashboards/builders.js:
-        (loadBuildersList):
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (currentBuilderGroupCategory):
-
-2012-09-27  Florin Malita  <fmalita@chromium.org>
-
-        [Perftest] PerfTestRunner exception when using nested git checkouts
-        https://bugs.webkit.org/show_bug.cgi?id=97796
-
-        Reviewed by Ryosuke Niwa.
-
-        In order to support separate Chromium vs. WebKit git trees, PerfTestsRunner needs to
-        instantiate per-repository SCM objects when collecting revision information.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._generate_results_dict):
-
-2012-09-27  Sudarsana Nagineni  <sudarsana.nagineni@intel.com>
-
-        [Mac][DRT] Add support to allow non-array modifier arguments in keyDown()
-        https://bugs.webkit.org/show_bug.cgi?id=97805
-
-        Reviewed by Alexey Proskuryakov.
-
-        Add support for handling a string as modifier argument to keyDown().
-        This support has already been added to other ports, so implementing
-        this on Mac too, to be consistent with the other ports.
-
-        * DumpRenderTree/mac/EventSendingController.mm:
-        (modifierFlags):
-        (buildModifierFlags):
-
-2012-09-27  Dirk Pranke  <dpranke@chromium.org>
-
-        efl wk2 bots weren't looking at platform/wk2/TestExpectations
-        https://bugs.webkit.org/show_bug.cgi?id=97815
-
-        Unreviewed, build fix.
-
-        Should clean up this logic later so that we're just using the
-        implementation in base ...
-
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort._search_paths):
-        (EflPort.expectations_files):
-
-2012-09-27  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: make warning about missing BUG identifiers per-port configurable
-        https://bugs.webkit.org/show_bug.cgi?id=97751
-
-        Reviewed by Ojan Vafai.
-
-        Prior to this change linting TestExpectations files (checking their style)
-        would raise warnings if lines were missing a BUG modifier, even
-        though such a modifier is actually optional in the syntax. As we
-        migrate the entries over from the Skipped files, these warnings
-        will generate a lot of noise, and it's not yet clear that we
-        actually want to require the modifiers on all ports.
-
-        So, this change makes this per-port configurable so that they
-        will generate warnings in the Chromium TestExpectations and not
-        anywhere else.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectationParser._parse_modifiers):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (MiscTests.test_parse_warning):
-        (SemanticTests.test_missing_bugid):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.warn_if_bug_missing_in_test_expectations):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.warn_if_bug_missing_in_test_expectations):
-
-2012-09-27  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] Push more fonts for layout tests to match chromium-linux
-        https://bugs.webkit.org/show_bug.cgi?id=97746
-
-        Reviewed by Dirk Pranke.
-
-        * DumpRenderTree/chromium/android_fallback_fonts.xml: Added the new fonts into fallback list. Removed the Android system fallback font DroidSansFallback.ttf.
-        * Scripts/webkitpy/layout_tests/port/builders.py: Add chromium-android to pass style check.
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.check_build): Added check for md5sum and forwarder utilities to give better error message when they are missing.
-        (ChromiumAndroidPort.check_sys_deps): Allow host font files to come from one of multiple directories.
-        (ChromiumAndroidPort._path_to_md5sum):
-        (ChromiumAndroidDriver._setup_md5sum_and_push_data_if_needed):
-        (ChromiumAndroidDriver._push_fonts):
-        (ChromiumAndroidDriver._push_test_resources):
-
-2012-09-27  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: Enhance MediaConstraints to make it easier to get the constraint data
-        https://bugs.webkit.org/show_bug.cgi?id=97559
-
-        Reviewed by Adam Barth.
-
-        Refactoring for the new WebMediaConstraints api.
-
-        * DumpRenderTree/chromium/MockConstraints.cpp:
-        (MockConstraints::verify):
-
-2012-09-27  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: Rename MockConstraints::verify to verifyConstraints
-        https://bugs.webkit.org/show_bug.cgi?id=97779
-
-        Reviewed by Csaba Osztrogonác.
-
-        The Mac OS X sdk has a macro called verify :/
-
-        * DumpRenderTree/chromium/MockConstraints.cpp:
-        (MockConstraints::verifyConstraints):
-        * DumpRenderTree/chromium/MockConstraints.h:
-        (MockConstraints):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (MockWebRTCPeerConnectionHandler::initialize):
-        * DumpRenderTree/chromium/WebUserMediaClientMock.cpp:
-        (WebUserMediaClientMock::requestUserMedia):
-
-2012-09-27  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: Update getUserMedia to match the latest specification
-        https://bugs.webkit.org/show_bug.cgi?id=97540
-
-        Reviewed by Adam Barth.
-
-        http://dev.w3.org/2011/webrtc/editor/getusermedia.html#navigatorusermedia
-        Navigator.getUserMedia is changed so that the audio and video members can either
-        be a bool or a constraints object.
-
-        * public/WebUserMediaRequest.h:
-        (WebKit):
-        (WebUserMediaRequest):
-        * src/WebUserMediaRequest.cpp:
-        (WebKit::WebUserMediaRequest::audioConstraints):
-        (WebKit):
-        (WebKit::WebUserMediaRequest::videoConstraints):
-
-2012-09-26  Laszlo Gombos  <l.gombos@samsung.com>
-
-        Unreviewed. Update my e-mail address.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-09-26  Dirk Pranke  <dpranke@chromium.org>
-
-        modify old-run-webkit-tests to support TestExpectations files a little
-        https://bugs.webkit.org/show_bug.cgi?id=97276
-
-        Reviewed by Daniel Bates.
-
-        This patch adds minimal support to old-run-webkit-tests so that
-        it can read a TestExpectations file and skip the tests listed
-        there. It will skip *all* tests, regardless of the expectation
-        (even if the test is listed as [ Pass ]), and it will only look
-        at the TestExpectations file if there isn't a Skipped file next
-        to it.
-        
-        This will allow us to switch to using just using
-        TestExpectations files without making old-run-webkit-tests
-        totally useless.
-
-        * Scripts/old-run-webkit-tests:
-        (readSkippedFiles):
-        (processSkippedFileEntry): Added.
-        (startsWith): Added.
-
-2012-09-26  Dirk Pranke  <dpranke@chromium.org>
-
-        The style bot spams about skia_test_expectations.txt
-        https://bugs.webkit.org/show_bug.cgi?id=97699
-
-        Reviewed by Adam Barth.
-
-        Remove the warning about a missing skia_test_expectations.txt
-        file for now. There are some situations where it would be
-        helpful to get this warning as it might indicate that the user
-        is going to get results different than what they're expecting,
-        but at the moment it looks difficult if not impossible to get
-        those warnings and not also get warnings that we don't care
-        about, so the noise is outweighing the value of the signal.
-
-        This at least will stop the false negatives we're getting on the
-        style bots. If it turns out people do need the warning we can
-        add it back in in some other more conditional way.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.expectations_files):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (TestRebaseline.test_rebaseline_updates_expectations_file_noop):
-        (test_rebaseline_updates_expectations_file):
-        (test_rebaseline_does_not_include_overrides):
-        (test_rebaseline_expectations):
-        (_assert_command):
-
-2012-09-26  David Michael Barr  <davidbarr@chromium.org>
-
-        Unreviewed. Upgrade myself from contributor to committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-09-26  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Remove deprecated code from perftestrunner.py
-        https://bugs.webkit.org/show_bug.cgi?id=97724
-
-        Reviewed by Adam Barth.
-
-        Remove the code deprecated in r129580 now that we have landed r129597,
-        which updated master.cfg to use new options, and restarted the buildbot master.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._parse_args):
-        (PerfTestsRunner._generate_and_show_results):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (test_run_with_slave_config_json):
-        (test_parse_args):
-
-2012-09-26  Beth Dakin  <bdakin@apple.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=97629
-        http/tests/security/cross-frame-access-put.html failing on Mac WK2 bots after 
-        being unskipped
-
-        Reviewed by Tim Horton.
-
-        The test was failing because we were failing to use the fake window origin. We 
-        should really always use the fake origin. This patch eliminates 
-        _shouldUseFakeOrigin in favor of always using it.
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (-[WebKitTestRunnerWindow setFrameOrigin:]):
-        (-[WebKitTestRunnerWindow setFrame:display:animate:]):
-        (-[WebKitTestRunnerWindow setFrame:display:]):
-        (-[WebKitTestRunnerWindow frameRespectingFakeOrigin]):
-
-2012-09-26  Tony Chang  <tony@chromium.org>
-
-        C++ style checker should warn when the indentation is wrong
-        https://bugs.webkit.org/show_bug.cgi?id=97602
-
-        Reviewed by Ojan Vafai.
-
-        Rewrite the indentation checker to ensure that indentation is always a factor of 4
-        and that we only indent 4 spaces from the previous line.
-
-        I deleted some of the old indentation checking code since it was filtered out
-        and didn't match the webkit style.
-
-        * Scripts/webkitpy/style/checker.py:
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (check_indentation_amount): New function that checks indentation. Intentionally runs after
-        other indentation checks.
-        (check_style): Delete the old indentation code since we were already filtering out the whitespace/labels warnings.
-        (CppChecker): Remove the whitespace/labels filter.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (CppStyleTest.test_multi_line_comments): Force 4 space indent.
-        (CppStyleTest.test_explicit_single_argument_constructors):
-        (CppStyleTest.test_explicit_single_argument_constructors.Foo):
-        (CppStyleTest.test_explicit_single_argument_constructors.Qualifier):
-        (CppStyleTest.test_slash_star_comment_on_single_line):
-        (CppStyleTest.test_braces):
-        (CppStyleTest.test_spacing_before_last_semicolon):
-        (CppStyleTest.test_static_or_global_stlstrings):
-        (CppStyleTest.test_indent): Added macro test case.
-        (CppStyleTest.test_build_class):
-        (NoNonVirtualDestructorsTest.test_no_error):
-        (NoNonVirtualDestructorsTest.test_no_error.Foo):
-        (NoNonVirtualDestructorsTest.test_no_error.Qualified):
-        (NoNonVirtualDestructorsTest.test_no_destructor_when_virtual_needed):
-        (NoNonVirtualDestructorsTest.test_no_destructor_when_virtual_needed.Foo):
-        (NoNonVirtualDestructorsTest.test_destructor_non_virtual_when_virtual_needed):
-        (NoNonVirtualDestructorsTest.test_destructor_non_virtual_when_virtual_needed.Foo):
-        (NoNonVirtualDestructorsTest.test_no_warn_when_derived):
-        (NoNonVirtualDestructorsTest.test_no_warn_when_derived.Foo):
-        (NoNonVirtualDestructorsTest.test_internal_braces):
-        (NoNonVirtualDestructorsTest.test_internal_braces.Foo):
-        (NoNonVirtualDestructorsTest.test_inner_class_needs_virtual_destructor):
-        (NoNonVirtualDestructorsTest.test_inner_class_needs_virtual_destructor.Foo):
-        (NoNonVirtualDestructorsTest.test_inner_class_needs_virtual_destructor.Foo.Goo):
-        (NoNonVirtualDestructorsTest.test_outer_class_needs_virtual_destructor):
-        (NoNonVirtualDestructorsTest.test_outer_class_needs_virtual_destructor.Foo):
-        (NoNonVirtualDestructorsTest.test_outer_class_needs_virtual_destructor.Foo.Goo):
-        (NoNonVirtualDestructorsTest.test_qualified_class_needs_virtual_destructor):
-        (NoNonVirtualDestructorsTest.test_qualified_class_needs_virtual_destructor.Qualified):
-        (NoNonVirtualDestructorsTest.test_multi_line_declaration_no_error):
-        (NoNonVirtualDestructorsTest.test_multi_line_declaration_no_error.Foo):
-        (NoNonVirtualDestructorsTest.test_multi_line_declaration_with_error):
-        (NoNonVirtualDestructorsTest.test_multi_line_declaration_with_error.Foo):
-        (WebKitStyleTest.test_indentation):
-        (WebKitStyleTest.test_braces): Add test for call params spanning lines.
-
-2012-09-26  Adam Barth  <abarth@webkit.org>
-
-        Rollout messages should be clickable in bugzilla
-        https://bugs.webkit.org/show_bug.cgi?id=97711
-
-        Reviewed by Simon Fraser.
-
-        If we say Bug NNNN instead of just NNNN, bugzilla will autolink to the
-        actual bug.
-
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        * Scripts/webkitpy/tool/steps/createbug.py:
-        (CreateBug.run):
-
-2012-09-26  Marcelo Lira  <marcelo.lira@openbossa.org>
-
-        run-perf-tests must expand environment variables in user provided paths
-        https://bugs.webkit.org/show_bug.cgi?id=97686
-
-        Reviewed by Ryosuke Niwa.
-
-        The run-perf-tests command line options that receive paths from the
-        user now expand any possible environment variables, because Python's
-        file handling methods do not handle those.
-
-        Examples:
-        run-perf-tests --platform=qt --release --output-json-path=~/perf-results
-        run-perf-tests --platform=qt --release --output-json-path=$HOME/perf-results
-
-        Also removed unused imports.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._parse_args._expand_path): expand environment variables in a path passed via command line
-        (PerfTestsRunner._parse_args):
-
-2012-09-26  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r129654.
-        http://trac.webkit.org/changeset/129654
-        https://bugs.webkit.org/show_bug.cgi?id=97702
-
-        breaks chromium windows build (Requested by schenney on
-        #webkit).
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.h:
-        (MockWebRTCPeerConnectionHandler):
-
-2012-09-26  Michael Saboff  <msaboff@apple.com>
-
-        Unreviewed build change.
-
-        Reverting inadvertent change to project file.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-
-2012-09-26  Harald Tveit Alvestrand  <harald@alvestrand.no>
-
-        Implement the GetStats interface on PeerConnection
-        https://bugs.webkit.org/show_bug.cgi?id=95193
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (RTCStatsRequestSucceededTask):
-        (RTCStatsRequestSucceededTask::RTCStatsRequestSucceededTask):
-        (MockWebRTCPeerConnectionHandler::getStats):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.h:
-        (MockWebRTCPeerConnectionHandler):
-
-2012-09-26  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [WK2][WTR] Policy client: dumping from decidePolicyForResponse callback
-        https://bugs.webkit.org/show_bug.cgi?id=97034
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Provided dumping from WTR Policy client 'decidePolicyForResponse' callback.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::decidePolicyForResponse):
-
-2012-09-26  Zoltan Arvai  <zarvai@inf.u-szeged.hu>
-
-        [Qt][WTR] Build fix for MSVC. 
-        https://bugs.webkit.org/show_bug.cgi?id=97667
-
-        Reviewed by Csaba Osztrogonác.
-
-        WTR misses InjectedBundle headers. Adding $$PWD to Target.pri is required for MSVC. Clean build is necessary on Windows.
-
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-
-2012-09-26  Xiaobo Wang  <xbwang@torchmobile.com.cn>
-
-        [BlackBerry] [DRT] eventSender.keyDown() doesn't support Ctrl key modifier
-        https://bugs.webkit.org/show_bug.cgi?id=97665
-
-        Reviewed by Rob Buis.
-
-        This patch fixes test fast/forms/input-text-option-delete.html.
-
-        * DumpRenderTree/blackberry/EventSender.cpp:
-        (keyDownCallback):
-
-2012-09-26  Dinu Jacob  <dinu.s.jacob@intel.com>
-
-        Unreviewed. Adding myself as a committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-09-26  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Remove color codes characters from run-gtk-tests output when not writing to a TTY
-        https://bugs.webkit.org/show_bug.cgi?id=97660
-
-        Reviewed by Philippe Normand.
-
-        Remove also the '\r' characters returned by TTY output to try to fix
-        the double line endings of the script output in the bots.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner.__init__): Compile a regexp for color codes if stdout
-        it not a TTY.
-        (TestRunner._run_test_command.parse_line): Remove color codes and
-        '\r' characters from the line returned by the pseudo-terminal if
-        stdout is not a TTY.
-        * gtk/common.py:
-        (parse_output_lines): Fix the last chunk check to make sure we
-        always send entire lines to the callback, otherwise color codes
-        regexp might fail if the line is not complete.
-
-2012-09-25  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [DRT][WTR] Support overriding the 'WebKitDisplayImagesKey' preference
-        https://bugs.webkit.org/show_bug.cgi?id=96883
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        (TestRunner::overridePreference): Support the
-        'WebKitDisplayImagesKey' preference.
-
-2012-09-26  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] Enable some of the unstable CSS features
-        https://bugs.webkit.org/show_bug.cgi?id=97572
-
-        Reviewed by Martin Robinson.
-
-        Enable the <style scoped> support via DumpRenderTreeSupportGtk method
-        whenever resetting defualts to consistent values.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-
-2012-09-26  Zan Dobersek  <zandobersek@gmail.com>
-
-        REGRESSION (r126189): No more mismatch-did-not-occur failures in reftests
-        https://bugs.webkit.org/show_bug.cgi?id=97112
-
-        Reviewed by Dirk Pranke.
-
-        Don't use the reftest's image hash when gathering output of its reference.
-        This indirectly forces the driver to return the reference's image output
-        as well. This specifically solves the problem when the reftest and its
-        mismatch reference are equal but the unexpected match failure is not
-        reported due to missing image output of the reference file.
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner._run_reftest):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort.diff_image):
-        (TestDriver.run_test):
-
-2012-09-25  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Update master.cfg to invoke run-perf-tests with --no-show-results and --reset-results
-        https://bugs.webkit.org/show_bug.cgi?id=97613
-
-        Reviewed by Dirk Pranke.
-
-        Use options added in r129580.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (RunAndUploadPerfTests):
-
-2012-09-25  Peter Rybin  <peter.rybin@gmail.com>
-
-        Web Inspector: Fix logging in pure protocol test harness
-        https://bugs.webkit.org/show_bug.cgi?id=97579
-
-        Reviewed by Yury Semikhatsky.
-
-        JavaScript alert implementation in DumpRenderTree gets immediate flush to make sure that
-        the message survives crash or kill by timeout.
-
-        * DumpRenderTree/blackberry/DumpRenderTree.cpp:
-        (BlackBerry::WebKit::DumpRenderTree::runJavaScriptAlert):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::runModalAlertDialog):
-        * DumpRenderTree/efl/DumpRenderTreeView.cpp:
-        (onJavaScriptAlert):
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webViewScriptAlert):
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:runJavaScriptAlertPanelWithMessage:initiatedByFrame:]):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::javaScriptAlert):
-        * DumpRenderTree/win/UIDelegate.cpp:
-        (UIDelegate::runJavaScriptAlertPanelWithMessage):
-
-2012-09-25  Dan Bernstein  <mitz@apple.com>
-
-        Tools part of <rdar://problem/11455228> [mac] Stop using screen fonts
-        https://bugs.webkit.org/show_bug.cgi?id=97620
-
-        Reviewed by John Sullivan.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues): Enable screen font substitution when
-        running the tests.
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues): Ditto.
-
-2012-09-25  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Build fix. "values" doesn't necessarily contain multiple values but it needs to be always parsed as an array.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest.parse_output):
-
-2012-09-25  Ryosuke Niwa  <rniwa@webkit.org>
-
-        run-perf-tests: cleanup options and results generation code
-        https://bugs.webkit.org/show_bug.cgi?id=97611
-
-        Reviewed by Dirk Pranke.
-
-        Previously, --test-results-server triggered old JSOn format where the outermost structure was a dictionary
-        instead of an array, and also implicitly triggered --no-show-results, caused the old outputs not to merge,
-        and prevented the generation of results page. Also, it was not obvious that --source-json-path is an option
-        used only on buildbot slaves.
-
-        This patch will:
-        - Remove the old format since perf-o-matic supports new format now.
-        - Add --reset-results option so that we can explicitly clear existing outputs.
-        - Add --slave-config-json-path option to replace --source-json-path option.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._parse_args): Added --reset-results and --slave-config-json-path options.
-        (PerfTestsRunner._generate_and_show_results): Refactored. Also removed the code to strip "values" from
-        results since perf-o-matic can parse and store these values now.
-        (PerfTestsRunner._merge_outputs_if_needed): Renamed from _merge_outputs_if_needed.
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (test_run_with_json_output): Test a harmless behavioral change to generate resuls page even when
-        --test-results-server is present.
-        (test_run_with_description):
-        (test_run_generates_json_by_default):
-        (test_run_merges_output_by_default): Added.
-        (test_run_respects_reset_results): Added.
-        (test_run_with_slave_config_json):
-        (test_run_with_bad_slave_config_json): Use --slave-config-json-path instead of --source-json-path to make
-        sure this optioon works as well.
-        (test_run_with_multiple_repositories):
-        (test_run_with_upload_json):
-
-2012-09-25  Simon Fraser  <simon.fraser@apple.com>
-
-        Fix SnowLeopard build by adding #ifdefs.
-        
-        Fix crashes on some tests where the CFURLRef appears to be null.
-
-        * WebKitTestRunner/InjectedBundle/mac/InjectedBundlePageMac.mm:
-        (WTR::testPathFromURL):
-        (WTR::InjectedBundlePage::platformDidStartProvisionalLoadForFrame):
-
-2012-09-25  Simon Fraser  <simon.fraser@apple.com>
-
-        Speculative build fix for Production builds.
-
-        * DumpRenderTree/mac/Configurations/Base.xcconfig:
-        * WebKitTestRunner/Configurations/Base.xcconfig:
-
-2012-09-25  Simon Fraser  <simon.fraser@apple.com>
-
-        Fix the build after r129566.
-
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-
-2012-09-25  Dominic Mazzoni  <dmazzoni@google.com>
-
-        AX: AccessibilityUIElementChromium.cpp won't build on Windows without wtf/StringExtras.h
-        https://bugs.webkit.org/show_bug.cgi?id=97614
-
-        Unreviewed, fixing windows breakage.
-
-        Added wtf/StringExtras.h to the includes to fix the Chromium/Windows build.
-
-        * DumpRenderTree/chromium/TestRunner/AccessibilityUIElementChromium.cpp:
-
-2012-09-24  Simon Fraser  <simon.fraser@apple.com>
-
-        <rdar://problem/12351906> Have DumpRenderTree and WebKitTestRunner crash logs show which test crashed
-
-        Reviewed by Mark Rowe.
-
-        Use a new WebKitSytemInterface function to add data to crash logs about which 
-        test was running when the crash happened.
-
-        * DumpRenderTree/mac/Configurations/DebugRelease.xcconfig: Make sure WEBKIT_SYSTEM_INTERFACE_LIBRARY is defined.
-        * DumpRenderTree/mac/Configurations/DumpRenderTree.xcconfig: link with the WebKitSystemInterface library.
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (testPathFromURL): Given a (probably) file URL, return the part after "/LayoutTests/"
-        (-[FrameLoadDelegate webView:didStartProvisionalLoadForFrame:]): Tell Crash Reporter which test was running,
-        if we're the main frame and the test is active.
-        * WebKitTestRunner/Configurations/DebugRelease.xcconfig: Make sure WEBKIT_SYSTEM_INTERFACE_LIBRARY is defined.
-        * WebKitTestRunner/Configurations/InjectedBundle.xcconfig: link the injected bundle with the WebKitSystemInterface library.
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::didStartProvisionalLoadForFrame): Call platformDidStartProvisionalLoadForFrame().
-        (WTR::InjectedBundlePage::platformDidStartProvisionalLoadForFrame): Stub for non-Mac platforms.
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-        Add a platformDidStartProvisionalLoadForFrame() for platform-specific work.
-        * WebKitTestRunner/InjectedBundle/mac/InjectedBundlePageMac.mm: Added.
-        (WTR::testPathFromURL): Given a (probably) file URL, return the part after "/LayoutTests/"
-        (WTR::InjectedBundlePage::platformDidStartProvisionalLoadForFrame): Tell Crash Reporter which test was running,
-        if we're the main frame.
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj: Add InjectedBundlePageMac.mm.
-
-2012-09-25  Julie Parent  <jparent@chromium.org>
-
-        Make test_shell_tests show up in flakiness dashboard.
-        https://bugs.webkit.org/show_bug.cgi?id=97585
-
-        Reviewed by Dirk Pranke.
-
-        test_shell_tests run only on chromium.org, and on the same bots as
-        the layout tests, so do not use the generic fallbacks.
-
-        * TestResultServer/static-dashboards/builders.js:
-        (loadBuildersList):
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (currentBuilderGroupCategory):
-
-2012-09-25  Lucas Forschler  <lforschler@apple.com>
-
-        Python tests fail on Windows bots when running with more than one child process.  Temporarily use only one child process until the problem can be fixed.
-        https://bugs.webkit.org/show_bug.cgi?id=97465
-        
-        Reviewed by Tim Horton.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (RunPythonTests.start):
-
-2012-09-25  Mike West  <mkwst@chromium.org>
-
-        Unreviewed. Adding myself as a committer.
-
-        Yay. :)
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-09-25  Beth Dakin  <bdakin@apple.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=95397
-        Need to merge didFirstVisuallyNonEmptyLayout and 
-        didNewFirstVisuallyNonEmptyLayout
-        -and corresponding-
-        <rdar://problem/10791680>
-
-        Reviewed by Sam Weinig.
-
-        Account for the new member of the PageLoadClient.
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-
-        The NewFirstVisuallyNonEmptyLayoutForImages has existed for a while, 
-        but it did not have the right target membership.
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-
-        Use new didLayout API instead of old 
-        didNewFirstVisuallyNonEmptyLayout API.
-        * TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayout.cpp:
-        (TestWebKitAPI):
-        (TestWebKitAPI::didLayout):
-        (TestWebKitAPI::setPageLoaderClient):
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFails.cpp:
-        (TestWebKitAPI):
-        (TestWebKitAPI::didLayout):
-        (TestWebKitAPI::setPageLoaderClient):
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutForImages.cpp:
-        (TestWebKitAPI):
-        (TestWebKitAPI::didLayout):
-        (TestWebKitAPI::setPageLoaderClient):
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFrames.cpp:
-        (TestWebKitAPI):
-        (TestWebKitAPI::didLayout):
-        (TestWebKitAPI::setPageLoaderClient):
-        (TestWebKitAPI::TEST):
-
-2012-09-25  Benjamin Poulain  <bpoulain@apple.com>
-
-        Add missing support for Geolocation tests on WebKit2
-        https://bugs.webkit.org/show_bug.cgi?id=97518
-
-        Reviewed by Sam Weinig.
-
-        There are two main features added to the tooling to make the test run:
-        -Add support for error reporting for position errors through setMockGeolocationPositionUnavailableError.
-        -Support the 3 states permission: undefined-allowed-denied.
-
-        * WebKitTestRunner/GeolocationProviderMock.cpp:
-        (WTR::GeolocationProviderMock::GeolocationProviderMock):
-        (WTR::GeolocationProviderMock::setPosition):
-        (WTR::GeolocationProviderMock::setPositionUnavailableError):
-        (WTR::GeolocationProviderMock::startUpdating):
-        (WTR::GeolocationProviderMock::sendPositionIfNeeded):
-        (WTR::GeolocationProviderMock::sendErrorIfNeeded):
-        * WebKitTestRunner/GeolocationProviderMock.h:
-        (GeolocationProviderMock):
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::setMockGeolocationPositionUnavailableError):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (InjectedBundle):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::setMockGeolocationPositionUnavailableError):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::TestController):
-        (WTR::decidePolicyForGeolocationPermissionRequest):
-        (WTR::TestController::resetStateToConsistentValues):
-        (WTR::TestController::setGeolocationPermission):
-        (WTR::TestController::setMockGeolocationPosition):
-        (WTR::TestController::setMockGeolocationPositionUnavailableError):
-        (WTR::TestController::handleGeolocationPermissionRequest):
-        (WTR::TestController::decidePolicyForGeolocationPermissionRequestIfPossible):
-        * WebKitTestRunner/TestController.h:
-        (TestController):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-
-2012-09-25  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r129517.
-        http://trac.webkit.org/changeset/129517
-        https://bugs.webkit.org/show_bug.cgi?id=97582
-
-        Link errors in chromium (Requested by alecf on #webkit).
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/MockConstraints.cpp: Removed.
-        * DumpRenderTree/chromium/MockConstraints.h: Removed.
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (RTCSessionDescriptionRequestSuccededTask::RTCSessionDescriptionRequestSuccededTask):
-        (RTCSessionDescriptionRequestFailedTask::RTCSessionDescriptionRequestFailedTask):
-        (RTCVoidRequestTask::RTCVoidRequestTask):
-        (isSupportedConstraint):
-        (isValidConstraint):
-        (MockWebRTCPeerConnectionHandler::initialize):
-        * DumpRenderTree/chromium/WebUserMediaClientMock.cpp:
-        (WebKit::WebUserMediaClientMock::requestUserMedia):
-        * DumpRenderTree/chromium/WebUserMediaClientMock.h:
-        (WebKit):
-        (WebUserMediaClientMock):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebKit):
-        (WebViewHost):
-
-2012-09-25  Dominic Mazzoni  <dmazzoni@google.com>
-
-        AX: Chromium doesn't pass accessibility text range and line number tests
-        https://bugs.webkit.org/show_bug.cgi?id=97246
-
-        Reviewed by Chris Fleizach.
-
-        Provide a chromium implementation of some AccessibilityUIElement
-        methods needed by accessibility tests.
-
-        Enables four existing tests to pass on Chromium:
-        Tests: accessibility/textarea-insertion-point-line-number.html
-               accessibility/textarea-line-for-index.html
-               accessibility/textarea-selected-text-range.html
-               accessibility/textbox-role-reports-selection.html
-
-        * DumpRenderTree/chromium/TestRunner/AccessibilityUIElementChromium.cpp:
-        (AccessibilityUIElement::insertionPointLineNumberGetterCallback):
-        (AccessibilityUIElement::selectedTextRangeGetterCallback):
-        (AccessibilityUIElement::lineForIndexCallback):
-        (AccessibilityUIElement::setSelectedTextRangeCallback):
-
-2012-09-25  Peter Beverloo  <peter@chromium.org>
-
-        [Chromium] Android's build archives have grown from 38M to 102M in 11 days
-        https://bugs.webkit.org/show_bug.cgi?id=97336
-
-        Reviewed by Adam Barth.
-
-        Each WebKit target results in four APKs in the out/{Debug,Release}/ directory,
-        while we really only need one. Ignoring the unsigned APKs removes six from
-        the archive will make sure that we only archive a single APK per target,
-        bringing its size back to rougly 40 megabytes.
-
-        * BuildSlaveSupport/built-product-archive:
-        (archiveBuiltProduct):
-
-2012-09-25  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: Update getUserMedia to match the latest specification
-        https://bugs.webkit.org/show_bug.cgi?id=97540
-
-        Reviewed by Adam Barth.
-
-        Adding mock support for the enhanced getUserMedia call.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/MockConstraints.cpp: Copied from Source/WebCore/platform/chromium/support/WebMediaConstraints.cpp.
-        (MockConstraints):
-        (MockConstraints::isSupported):
-        (MockConstraints::isValid):
-        (MockConstraints::verify):
-        * DumpRenderTree/chromium/MockConstraints.h: Copied from Tools/DumpRenderTree/chromium/WebUserMediaClientMock.h.
-        (WebKit):
-        (MockConstraints):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (RTCSessionDescriptionRequestSuccededTask::RTCSessionDescriptionRequestSuccededTask):
-        (RTCSessionDescriptionRequestFailedTask::RTCSessionDescriptionRequestFailedTask):
-        (RTCVoidRequestTask::RTCVoidRequestTask):
-        (MockWebRTCPeerConnectionHandler::initialize):
-        * DumpRenderTree/chromium/WebUserMediaClientMock.cpp:
-        (UserMediaRequestTask):
-        (UserMediaRequestTask::UserMediaRequestTask):
-        (WebUserMediaClientMock::requestUserMedia):
-        * DumpRenderTree/chromium/WebUserMediaClientMock.h:
-        (WebUserMediaClientMock):
-        (WebUserMediaClientMock::taskList):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebKit):
-        (WebViewHost):
-
-2012-09-25  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        [EFL] Do not dump inspector output in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=97018
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Some inspector-related layout tests expect console output from the
-        inspector view to be suppressed. Do that by setting a property in
-        the inspector view that makes the onConsoleMessage callback return
-        early and not output anything.
-
-        Using evas_object_data_{get,set} is not very beautiful, but it is
-        still better than properly subclassing Ewk_View and having to
-        implement something similar to drt_view_console_message_enable_set().
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::createWebInspectorView):
-        * DumpRenderTree/efl/DumpRenderTreeView.cpp:
-        (onConsoleMessage):
-
-2012-09-25  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2][WKTR] TestRunner needs support for setWillSendRequestReturnsNullOnRedirect
-        https://bugs.webkit.org/show_bug.cgi?id=97542
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Implement support for setWillSendRequestReturnsNullOnRedirect
-        in WebKitTestRunner.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::willSendRequestForFrame):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::TestRunner):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (WTR::TestRunner::willSendRequestReturnsNullOnRedirect):
-        (WTR::TestRunner::setWillSendRequestReturnsNullOnRedirect):
-        (TestRunner):
-
-2012-09-25  Xiaobo Wang  <xbwang@torchmobile.com.cn>
-
-        [BlackBerry] [DRT] fast/forms/textarea-live-pseudo-selectors.html failed
-        https://bugs.webkit.org/show_bug.cgi?id=97189
-
-        Reviewed by Rob Buis.
-
-        Translate ASCII key code to BlackBerry key code for BACKSPACE and DELETE key.
-
-        * DumpRenderTree/blackberry/EventSender.cpp:
-        (keyDownCallback):
-
-2012-09-25  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [WK2][WTR] WTR bundle client loads binary data as text
-        https://bugs.webkit.org/show_bug.cgi?id=97532
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        WTR::InjectedBundlePage::decidePolicyForResponse now checks response MIME type
-        and returns WKBundlePagePolicyActionPassThrough if it cannot be shown.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::decidePolicyForResponse):
-
-2012-09-25  Zan Dobersek  <zandobersek@gmail.com>
-
-        Unreviewed, another test case adjustment after r129459. Python 2.7 doesn't
-        seem to be a requirement yet so the assertDictEqual method is not yet available
-        on all builders. Assert that the empty dictionary length equals 0 instead.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ResultSummaryTest.test_interpret_test_failures):
-
-2012-09-24  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Fix build with latest Qt 5
-        https://bugs.webkit.org/show_bug.cgi?id=97479
-
-        Reviewed by Tor Arne Vestbø.
-
-        The variables for syncqt handling are now set in api.pri, but let's add a comment here that we can
-        remove them from default_pre.prf once we're past Qt 5 beta2.
-
-        * qmake/mkspecs/features/default_pre.prf:
-
-2012-09-25  Zan Dobersek  <zandobersek@gmail.com>
-
-        Unreviewed, adjusting the test cases after r129459. The JSON data
-        for reftests now contains the 'reftest_type' key and no more 'is_reftest'
-        or 'is_mismatch_reftest' keys.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (EndToEndTest.test_reftest_with_two_notrefs):
-
-2012-09-24  Zan Dobersek  <zandobersek@gmail.com>
-
-        Unexpected reftest passes are only reported when pixel testing is enabled in results.html as well
-        https://bugs.webkit.org/show_bug.cgi?id=97426
-
-        Reviewed by Ojan Vafai.
-
-        The 'is_reftest' member of the TestResult class has been replaced by the reftest_type
-        member which is a set containing either '!=', '==', both or none if the test represented
-        by the object is not a reftest.
-
-        When summarizing results, the test dictionary is updated to contain the 'reftest_type' key
-        if the test is a reftest. The value of this key is a list of all the reftest types of this test.
-
-        The test failure interpretation method has been refactored, it now reports only
-        missing results of various formats and image diff percent in case of image or
-        reftest mismatch.
-
-        Unit tests have been modified accordingly.
-
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner.py:
-        (LayoutTestRunner._update_summary_with_result):
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner_unittest.py:
-        (LayoutTestRunnerTests.test_update_summary_with_result):
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (interpret_test_failures):
-        (summarize_results):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ResultSummaryTest.test_interpret_test_failures):
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner.run):
-        (SingleTestRunner._run_reftest):
-        * Scripts/webkitpy/layout_tests/models/test_results.py:
-        (TestResult.__init__):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (EndToEndTest.test_reftest_with_two_notrefs):
-
-2012-09-24  Sam Weinig  <sam@webkit.org>
-
-        Use NSUserDefaults rather than an environment variable to control whether to use an XPC Service for the WebProcess
-        https://bugs.webkit.org/show_bug.cgi?id=97514
-
-        Reviewed by Anders Carlsson.
-
-        * Scripts/webkitdirs.pm:
-        (argumentsForRunAndDebugMacWebKitApp):
-        Push "-WebKit2UseXPCServiceForWebProcess YES" as arguments when --use-web-process-xpc-service
-        is provided to set the user default. Move adding of @ARGV to after custom additions as calling
-        shouldUseXPCServiceForWebProcess() can change @ARGV.
-
-        (runMacWebKitApp):
-        (execMacWebKitAppForDebugging):
-        Stop setting the WEBKIT_USE_XPC_SERVICE_FOR_WEB_PROCESS environment variable.
-
-2012-09-24  Laszlo Gombos  <l.gombos@samsung.com>
-
-        [GTK][EFL] Make sure cairo is built with fontconfig support
-        https://bugs.webkit.org/show_bug.cgi?id=97513
-
-        Reviewed by Martin Robinson.
-
-        The GTK and EFL port of WebKit requires a version of cairo that is built with fontconfig support. 
-
-        * efl/jhbuild.modules:
-        * gtk/jhbuild.modules:
-
-2012-09-24  Benjamin Poulain  <bpoulain@apple.com>
-
-        Fix Geolocation error reporting in the test support
-        https://bugs.webkit.org/show_bug.cgi?id=97386
-
-        Reviewed by Sam Weinig.
-        The TestRunner was exposing internal implementation details of
-        the Geolocation object through setMockGeolocationError().
-
-        In practice, only the error code PositionUnavailable is supported
-        or even implemented.
-
-        Exposing setMockGeolocationError() does not make sense for WebKit2 as
-        passing generic errors from the UIProcess is a bad idea. This is the
-        opportunity to clean TestRunner and prepare and interface suitable for WebKit2.
-
-        * DumpRenderTree/TestRunner.cpp:
-        (setMockGeolocationPositionUnavailableErrorCallback):
-        (TestRunner::staticFunctions):
-        * DumpRenderTree/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp:
-        (TestRunner::setMockGeolocationPositionUnavailableError):
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        (DRTTestRunner::setMockGeolocationPositionUnavailableError):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        (TestRunner::setMockGeolocationPositionUnavailableError):
-        * DumpRenderTree/gtk/TestRunnerGtk.cpp:
-        (TestRunner::setMockGeolocationPositionUnavailableError):
-        * DumpRenderTree/mac/MockGeolocationProvider.h:
-        * DumpRenderTree/mac/MockGeolocationProvider.mm:
-        (-[MockGeolocationProvider dealloc]):
-        (-[MockGeolocationProvider resetError]):
-        (-[MockGeolocationProvider setPosition:]):
-        (-[MockGeolocationProvider setPositionUnavailableErrorWithMessage:]):
-        (-[MockGeolocationProvider lastPosition]):
-        (-[MockGeolocationProvider timerFired]):
-        * DumpRenderTree/mac/TestRunnerMac.mm:
-        (TestRunner::setMockGeolocationPositionUnavailableError):
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        (TestRunner::setMockGeolocationPositionUnavailableError):
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunner):
-        * DumpRenderTree/win/TestRunnerWin.cpp:
-        (TestRunner::setMockGeolocationPositionUnavailableError):
-        * DumpRenderTree/wx/TestRunnerWx.cpp:
-        (TestRunner::setMockGeolocationPositionUnavailableError):
-
-2012-09-24  Nikhil Bansal  <n.bansal@samsung.com>
-
-        [EFL][WK2] TestRunner needs touch events support.
-        https://bugs.webkit.org/show_bug.cgi?id=96465
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Simulate touch events in WebkitTestRunner for touch related
-        layout tests. This patch uses ewk_view_feed_touch_event() to
-        generate touch events.
-
-        * WebKitTestRunner/EventSenderProxy.h:
-        (EventSenderProxy):
-        * WebKitTestRunner/efl/EventSenderProxyEfl.cpp:
-        (WTR):
-        (WTR::setEvasModifiers):
-        (WTR::EventSenderProxy::EventSenderProxy):
-        (WTR::EventSenderProxy::~EventSenderProxy):
-        (WTR::EventSenderProxy::sendTouchEvent):
-        (WTR::EventSenderProxy::addTouchPoint):
-        (WTR::EventSenderProxy::updateTouchPoint):
-        (WTR::EventSenderProxy::setTouchModifier):
-        (WTR::EventSenderProxy::touchStart):
-        (WTR::EventSenderProxy::touchMove):
-        (WTR::EventSenderProxy::touchEnd):
-        (WTR::EventSenderProxy::touchCancel):
-        (WTR::EventSenderProxy::clearTouchPoints):
-        (WTR::EventSenderProxy::releaseTouchPoint):
-        (WTR::EventSenderProxy::cancelTouchPoint):
-
-2012-09-24  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2] TestRunner does not support overridePreference with value "0"
-        https://bugs.webkit.org/show_bug.cgi?id=97457
-
-        Reviewed by Alexey Proskuryakov.
-
-        testRunner.overridePreference() was marked as taking a boolean
-        in argument in testRunner.idl even though the test cases are
-        passing strings to it. The current code works if the test
-        case wants to enable a setting and therefore passes "1" string.
-        However, if the test wants to disable a setting and passes "0"
-        string, the current code also evaluates this to true causing
-        certain test cases to fail.
-
-        The argument to testRunner.overridePreference() is now of string
-        type and a function has been added to convert the string passed
-        by the test to a boolean value.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::toBool):
-        (WTR):
-        (WTR::TestRunner::overridePreference):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-
-2012-09-24  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r129343.
-        http://trac.webkit.org/changeset/129343
-        https://bugs.webkit.org/show_bug.cgi?id=97479
-
-        It broke the build (Requested by Ossy_NIGHT on #webkit).
-
-        * qmake/mkspecs/features/default_pre.prf:
-
-2012-09-24  Zan Dobersek  <zandobersek@gmail.com>
-
-        [Gtk] Unskip the Shadow DOM layout tests
-        https://bugs.webkit.org/show_bug.cgi?id=90776
-
-        Reviewed by Ryosuke Niwa.
-
-        Enable Shadow DOM through DumpRenderTreeSupport when resetting defaults in between tests.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-
-2012-09-24  Zan Dobersek  <zandobersek@gmail.com>
-
-        REGRESSION (r129211-r129218): http/tests/loading/redirect-with-no-location-crash.html failing on GTK Linux 64-bit Release WK2 (Tests)
-        https://bugs.webkit.org/show_bug.cgi?id=97404
-
-        Reviewed by Philippe Normand.
-
-        Print out the 'didReceiveTitle' information when dumping frame load callbacks.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webViewTitleChanged):
-
-2012-09-24  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Fix build with latest Qt 5
-
-        Reviewed by Tor Arne Vestbø.
-
-        The variables for syncqt handling are now set in api.pri, but let's add a comment here that we can
-        remove them from default_pre.prf once we're past Qt 5 beta2.
-
-        * qmake/mkspecs/features/default_pre.prf:
-
-2012-09-22  Dominic Mazzoni  <dmazzoni@google.com>
-
-        AX: Layout tests would be easier to write if AccessibilityController could find an element by id
-        https://bugs.webkit.org/show_bug.cgi?id=97301
-
-        Reviewed by Chris Fleizach.
-
-        Adds a new accessibleElementById method to AccessibilityController, to make it
-        easier to write cross-platform layout tests.
-
-        Implemented for Chromium and for Mac (DRT and WKTR).
-
-        * DumpRenderTree/AccessibilityController.cpp:
-        (getAccessibleElementByIdCallback):
-        (AccessibilityController::getJSClass):
-        * DumpRenderTree/AccessibilityController.h:
-        (AccessibilityController):
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/chromium/TestRunner/AccessibilityControllerChromium.cpp:
-        (AccessibilityController::AccessibilityController):
-        (AccessibilityController::findAccessibleElementByIdRecursive):
-        (AccessibilityController::getAccessibleElementById):
-        (AccessibilityController::accessibleElementByIdGetterCallback):
-        * DumpRenderTree/chromium/TestRunner/AccessibilityControllerChromium.h:
-        (AccessibilityController):
-        * DumpRenderTree/gtk/AccessibilityControllerGtk.cpp:
-        (AccessibilityController::accessibleElementById):
-        * DumpRenderTree/mac/AccessibilityCommonMac.h: added
-        * DumpRenderTree/mac/AccessibilityCommonMac.mm: added
-        (+[NSString stringWithJSStringRef:]):
-        (-[NSString createJSStringRef]):
-        * DumpRenderTree/mac/AccessibilityControllerMac.mm:
-        (findAccessibleObjectById):
-        (AccessibilityController::accessibleElementById):
-        * DumpRenderTree/mac/AccessibilityUIElementMac.mm:
-        * DumpRenderTree/win/AccessibilityControllerWin.cpp:
-        (AccessibilityController::accessibleElementById):
-        * WebKitTestRunner/InjectedBundle/AccessibilityController.cpp:
-        (WTR::AccessibilityController::accessibleElementById):
-        * WebKitTestRunner/InjectedBundle/AccessibilityController.h:
-        (AccessibilityController):
-        * WebKitTestRunner/InjectedBundle/Bindings/AccessibilityController.idl:
-        * WebKitTestRunner/InjectedBundle/mac/AccessibilityCommonMac.h: added
-        * WebKitTestRunner/InjectedBundle/mac/AccessibilityCommonMac.mm: added
-        (+[NSString stringWithJSStringRef:]):
-        (-[NSString createJSStringRef]):
-        * WebKitTestRunner/InjectedBundle/mac/AccessibilityControllerMac.mm:
-        (WTR::findAccessibleObjectById):
-        (WTR):
-        (WTR::AccessibilityController::accessibleElementById):
-        * WebKitTestRunner/InjectedBundle/mac/AccessibilityUIElementMac.mm:
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-
-2012-09-22  Zan Dobersek  <zandobersek@gmail.com>
-
-        Unexpected reftest passes are only reported when pixel testing is enabled
-        https://bugs.webkit.org/show_bug.cgi?id=97242
-
-        Reviewed by Dirk Pranke.
-
-        LayoutTestRunner should know whether the finished test it's handling is
-        a reftest. This is necessary when updating result summary for reftests
-        when pixel testing is not enabled - in these circumstances an unexpectedly
-        passing reftest was not reported as such due to pixel testing then being
-        determined by searching for reftest failures in failures list, which were
-        not found in an empty failure list of a passing test. Now the TestResult
-        objects have a member variable indicating the test is a reftest whenever
-        that's the case.
-
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner.py:
-        (LayoutTestRunner._update_summary_with_result):
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner_unittest.py:
-        (LayoutTestRunnerTests.test_update_summary_with_result):
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner.run):
-        (SingleTestRunner._run_reftest):
-        * Scripts/webkitpy/layout_tests/models/test_results.py:
-        (TestResult.__init__):
-
-2012-09-21  Sam Weinig  <sam@webkit.org>
-
-        WebProcess XPC services need have their environment set without disrupting all other XPC services
-        https://bugs.webkit.org/show_bug.cgi?id=95161
-
-        Reviewed by Anders Carlsson.
-
-        Remove setting the __XPC_* environment variables.
-
-        * Scripts/webkitdirs.pm:
-        (setUpGuardMallocIfNeeded):
-        (runMacWebKitApp):
-        (execMacWebKitAppForDebugging):
-
-2012-09-21  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix typo in additional-platform-directory patch just landed
-        https://bugs.webkit.org/show_bug.cgi?id=97380
-        
-        Unreviewed, build fix.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.relative_test_filename):
-        (Port.relative_perf_test_filename):
-
-2012-09-21  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: don't require additional-platform-directory to be an abspath or live under LayoutTests
-        https://bugs.webkit.org/show_bug.cgi?id=97380
-
-        Reviewed by Ojan Vafai.
-
-        There doesn't seem to be a good reason for this restriction and
-        it's useful to be able to point to directories outside the
-        checkout for results (e.g., for local failures due to a 10.7.4
-        install ;).
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.relative_test_filename):
-        (Port.relative_perf_test_filename):
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidDriver._command_from_driver_input):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (_set_up_derived_options):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_additional_platform_directory):
-
-2012-09-21  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: drop support for old TestExpectations syntax
-        https://bugs.webkit.org/show_bug.cgi?id=97364
-
-        Reviewed by Ryosuke Niwa.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectationParser._collect_matching_tests):
-        (TestExpectationParser):
-        (TestExpectationParser._tokenize_line):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (SkippedTests.test_skipped_entry_dont_exist):
-        (ExpectationSyntaxTests.assert_tokenize_exp):
-        (ExpectationSyntaxTests.test_bare_name):
-        (ExpectationSyntaxTests.test_bare_name_and_bugs):
-        (ExpectationSyntaxTests.test_comments):
-        (ExpectationSyntaxTests.test_config_modifiers):
-        (ExpectationSyntaxTests.test_unknown_config):
-        (ExpectationSyntaxTests.test_unknown_expectation):
-        (ExpectationSyntaxTests.test_skip):
-        (ExpectationSyntaxTests.test_slow):
-        (ExpectationSyntaxTests.test_wontfix):
-        (ExpectationSyntaxTests.test_blank_line):
-        (ExpectationSyntaxTests.test_warnings):
-        (RebaseliningTest.test_no_get_rebaselining_failures):
-
-2012-09-21  Simon Fraser  <simon.fraser@apple.com>
-
-        Improve WTR unresponsiveness output a little
-        https://bugs.webkit.org/show_bug.cgi?id=97370
-
-        Reviewed by Timothy Horton.
-
-        Distinguish between conditions that already set the errorMessage,
-        and unresponsiveness due to slow about:blank loads when WTR
-        reports unresponsiveness.
-
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::invoke):
-
-2012-09-21  Chris Rogers  <crogers@google.com>
-
-        Add Web Audio support for deprecated/legacy APIs
-        https://bugs.webkit.org/show_bug.cgi?id=97050
-
-        Reviewed by Eric Carlson.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-09-21  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: update remaining tests to use the new expectation syntax
-        https://bugs.webkit.org/show_bug.cgi?id=97362
-
-        Reviewed by Ojan Vafai.
-
-        This patch updates all the unit tests that were still using the
-        old TestExpectations syntax to use the new syntax *except* for
-        the tests that were specifically testing that we parsed the old
-        syntax correctly.
-
-        Also, a block of tests for the new syntax were duplicated, so
-        I've deleted the duplicate.
-
-        Note that the old syntax is still supported so this change should
-        produce no visible changes.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (MiscTests.test_multiple_results):
-        (MiscTests.test_category_expectations):
-        (MiscTests.test_error_on_different_platform):
-        (MiscTests.test_error_on_different_build_type):
-        (MiscTests.test_overrides):
-        (MiscTests.test_overrides__directory):
-        (MiscTests.test_overrides__duplicate):
-        (MiscTests.test_more_specific_override_resets_skip):
-        (SkippedTests.check):
-        (SkippedTests.test_duplicate_skipped_test_fails_lint):
-        (SkippedTests.test_skipped_file_overrides_expectations):
-        (SkippedTests.test_skipped_dir_overrides_expectations):
-        (SkippedTests.test_skipped_file_overrides_overrides):
-        (SkippedTests.test_skipped_dir_overrides_overrides):
-        (ExpectationSyntaxTests.disabled_test_missing_expectation):
-        (ExpectationSyntaxTests.disabled_test_missing_colon):
-        (ExpectationSyntaxTests.disabled_test_too_many_colons):
-        (ExpectationSyntaxTests.disabled_test_too_many_equals_signs):
-        (ExpectationSyntaxTests):
-        (ExpectationSyntaxTests.test_unrecognized_expectation):
-        (ExpectationSyntaxTests.test_macro):
-        (SemanticTests.test_bug_format):
-        (SemanticTests.test_bad_bugid):
-        (SemanticTests.test_missing_bugid):
-        (SemanticTests.test_slow_and_timeout):
-        (SemanticTests.test_rebaseline):
-        (test_missing_file):
-        (test_ambiguous):
-        (test_more_modifiers):
-        (test_order_in_file):
-        (test_macro_overrides):
-        (OldExpectationParserTests):
-        (OldExpectationParserTests._tokenize):
-        (OldExpectationParserTests.test_tokenize_extra_colon):
-        (OldExpectationParserTests.test_tokenize_missing_equal):
-        (OldExpectationParserTests.test_tokenize_extra_equal):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_skip_failing_tests):
-        (MainTest.test_additional_expectations):
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-        (TestExpectationsTestCase.test_valid_expectations):
-        (TestExpectationsTestCase.test_invalid_expectations):
-        (TestExpectationsTestCase.test_tab):
-
-2012-09-21  Benjamin Poulain  <bpoulain@apple.com>
-
-        [WK2] Add basic testing support for Geolocation
-        https://bugs.webkit.org/show_bug.cgi?id=97278
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Update the Geolocation testing to use the proper API in the UIProcess.
-
-        * WebKitTestRunner/CMakeLists.txt:
-        * WebKitTestRunner/GNUmakefile.am:
-
-        * WebKitTestRunner/GeolocationProviderMock.cpp: Added.
-        (WTR::startUpdatingCallback):
-        (WTR::stopUpdatingCallback):
-        (WTR::GeolocationProviderMock::GeolocationProvierMock):
-        (WTR::GeolocationProviderMock::setMockGeolocationPosition):
-        (WTR::GeolocationProviderMock::startUpdating):
-        (WTR::GeolocationProviderMock::stopUpdating):
-        (GeolocationProviderMock):
-        The GeolocationProvider store the location update and deliver them as needed.
-
-        WebCore GeolocationController do not support asynchronous update on start/stop. This is not
-        a problem in this case because all the messages between the WebProcess and the UIProcess are
-        asynchronous. Because of this, unlike GeolocationClientMock, we do not use a timer for event
-        delivery.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::setGeolocationPermission):
-        (WTR::InjectedBundle::setMockGeolocationPosition):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (InjectedBundle):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::setGeolocationPermission):
-        (WTR::TestRunner::setMockGeolocationPosition):
-        From the InjectedBundle, we now pass the information to the UIProcess so that
-        GeolocationProvider and the TestController can respond appropriately.
-
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-        * WebKitTestRunner/Target.pri:
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::TestController):
-        (WTR::decidePolicyForGeolocationPermissionRequest):
-        (WTR::TestController::createOtherPage):
-        (WTR::TestController::initialize):
-        (WTR::TestController::setMockGeolocationPosition):
-        * WebKitTestRunner/TestController.h:
-        (TestController):
-        (WTR::TestController::setGeolocationPermission):
-        (WTR::TestController::isGeolocationPermissionAllowed):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-        * WebKitTestRunner/win/WebKitTestRunner.vcproj:
-
-2012-09-21  Joanmarie Diggs  <jdiggs@igalia.com>
-
-        REGRESSION (r127882): accessibility/spinbutton-value.html failing on GTK
-        https://bugs.webkit.org/show_bug.cgi?id=96196
-
-        Reviewed by Martin Robinson.
-
-        The "regression" is that a new test was added but the support was missing
-        in the Gtk port for spin buttons.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::valueDescription): Updated the FIXME comment to
-        indicate that this cannot be implemented until it is implemented in ATK.
-        URL of the newly-filed ATK bug included for reference.
-
-2012-09-21  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix test_skip_and_wontfix failure
-        https://bugs.webkit.org/show_bug.cgi?id=97225
-
-        Unreviewed, build fix.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (SemanticTests.test_skip_and_wontfix):
-
-2012-09-21  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Implement ViewState methods in PageClientImpl in WebKit2
-        https://bugs.webkit.org/show_bug.cgi?id=97202
-
-        Reviewed by Martin Robinson.
-
-        * WebKitTestRunner/gtk/PlatformWebViewGtk.cpp:
-        (WTR::PlatformWebView::focus): Focus the view.
-
-2012-09-21  Sudarsana Nagineni  <sudarsana.nagineni@intel.com>
-
-        [WTR] Memory leaks in InjectedBundleController::initialize()
-        https://bugs.webkit.org/show_bug.cgi?id=97329
-
-        Reviewed by Alexey Proskuryakov.
-
-        Fix leaks in InjectedBundleController::initialize() by adopting
-        strings created with WKStringCreateWithUTF8CString().
-
-        * TestWebKitAPI/InjectedBundleController.cpp:
-        (TestWebKitAPI::InjectedBundleController::initialize):
-
-2012-09-21  Marcelo Lira  <marcelo.lira@openbossa.org>
-
-        [Qt][WK2] Removed duplicated code from EventSenderProxy::keyDown
-        https://bugs.webkit.org/show_bug.cgi?id=97235
-
-        Reviewed by Luiz Agostini.
-
-        * WebKitTestRunner/qt/EventSenderProxyQt.cpp:
-        (WTR::EventSenderProxy::keyDown):
-
-2012-09-21  Gergely Kis  <gergely@homejinni.com>
-
-        Add MIPS build slave to build.webkit.org
-        https://bugs.webkit.org/show_bug.cgi?id=96713
-
-        Reviewed by Csaba Osztrogonác.
-
-        Added a build slave for MIPS, and enabled a builder for 
-        Qt Linux MIPS32R2 little-endian release build.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-09-21  Peter Beverloo  <peter@chromium.org>
-
-        [Chromium] Switch back to a fixed fifo path for Android
-        https://bugs.webkit.org/show_bug.cgi?id=97230
-
-        Reviewed by Tony Chang.
-
-        Because not all external storage cards will be formated using a file
-        system that supports named pipes, Chromium has been changed to creating
-        the pipes in a temporary folder on the internal storage. Adapt this in
-        WebKit so we can continue to run layout tests.
-
-        This also includes an *unreviewed* fix for a breakage in the webkitpy
-        tests I made in r129221. Two lines and related to this code, so I decided
-        to include it in this change.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidDriver.__init__):
-        (ChromiumAndroidDriver._setup_test):
-        (ChromiumAndroidDriver._update_version):
-
-2012-09-20  Peter Beverloo  <peter@chromium.org>
-
-        Leverage Chromium's code to set up FIFOs for Chromium Android layout tests
-        https://bugs.webkit.org/show_bug.cgi?id=97227
-
-        Reviewed by Tony Chang.
-
-        We switched Chromium to using FIFOs in order to achieve better consistency,
-        which was done by Marcus in r157541. Remove all custom WebKit code in
-        favor of Chromium's implementation.
-
-        Remove more FIFO code in the test runner itself, including the code in
-        DumpRenderTree that invoked it. We can now switch to Chromium's brand
-        new FIFO-creating code, which is being set-up for all test targets build
-        for Android, including DumpRenderTree, TestWebKitAPI and webkit_unit_tests.
-
-        This also changes the ChromiumAndroidDriver._remove_all_pipes method to
-        delete the files individually. "rm" would fail if one of the earlier files
-        does not exist, and the "-f" argument doesn't seem to be reliable.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/chromium/TestShellAndroid.cpp:
-        (platformInit):
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidDriver.__init__):
-        (ChromiumAndroidDriver._setup_test):
-        (ChromiumAndroidDriver._get_external_storage):
-        (ChromiumAndroidDriver._drt_cmd_line):
-        (ChromiumAndroidDriver._remove_all_pipes):
-        (ChromiumAndroidDriver.stop):
-        * TestWebKitAPI/TestWebKitAPI.gyp/TestWebKitAPI.gyp:
-
-2012-09-21  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2][WKTR] EventSender needs to implement scheduleAsynchronousClick
-        https://bugs.webkit.org/show_bug.cgi?id=97326
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Implement scheduleAsynchronousClick() in WebKitTestRunner's
-        EventSender by sending a "MouseDown" and a "MouseUp" message
-        asynchronously to the WebProcess.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/EventSendingController.idl:
-        * WebKitTestRunner/InjectedBundle/EventSendingController.cpp:
-        (WTR::createMouseMessageBody):
-        (WTR):
-        (WTR::EventSendingController::mouseDown):
-        (WTR::EventSendingController::mouseUp):
-        (WTR::EventSendingController::scheduleAsynchronousClick):
-        * WebKitTestRunner/InjectedBundle/EventSendingController.h:
-        (EventSendingController):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::didReceiveMessageFromInjectedBundle):
-
-2012-09-21  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Error out early if we don't have ICU available
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/configure.prf:
-
-2012-09-21  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Bail out when trying to build WebKit with Qt != 5
-
-        Reviewed by Tor Arne Vestbø.
-
-        Moved check for Qt version out of default_pre into top-level WebKit.pro,
-        because we never reach default_pre.prf due to the lack of .qmake.conf support
-        in older versions of Qt/QMake.
-
-        * qmake/mkspecs/features/default_pre.prf:
-
-2012-09-21  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        WebKitTestRunner needs to print frame load delegate information
-        https://bugs.webkit.org/show_bug.cgi?id=42705
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Added missing dumping from WTR::InjectedBundlePage::didFailLoadWithErrorForFrame.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::didFailLoadWithErrorForFrame):
-
-2012-09-21  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] EventSender should mimic CTRL+o emacs shortcut
-        https://bugs.webkit.org/show_bug.cgi?id=97224
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add support for mimicking CTRL+o emacs shortcut in EFL's
-        EventSender in DumpRenderTree and WebKitTestRunner.
-
-        * DumpRenderTree/efl/EventSender.cpp:
-        (sendKeyDown):
-        * WebKitTestRunner/efl/EventSenderProxyEfl.cpp:
-        (WTR::EventSenderProxy::keyDown):
-
-2012-09-21  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Re-fix clean builds
-
-        Reviewed by Tor Arne Vestbø.
-
-        Re-introduce the sanitization for LIBS when creating a module to use
-        LIBS_PRIVATE and otherwise do _not_ use LIBS_PRIVATE. We decided to
-        continue to use QT, LIBS and PKGCONFIG instead of their _PRIVATE variants
-        throughout the code base, so just using LIBS_PRIVATE in linkAgainstLibrary()
-        causes build issues when depending system libraries end up in LIBS before
-        LIBS_PRIVATE.
-
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/functions.prf:
-
-2012-09-20  Simon Fraser  <simon.fraser@apple.com>
-
-        Comment out a failing webkitpy unit test until Dirk can fix it.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (SemanticTests.test_skip_and_wontfix):
-
-2012-09-20  Dirk Pranke  <dpranke@chromium.org>
-
-        make Skip, WontFix be the only expectations on a line
-        https://bugs.webkit.org/show_bug.cgi?id=97225
-
-        Reviewed by Ojan Vafai.
-
-        It is now incorrect in the new syntax to have a line like:
-
-            foo.html [ WontFix Crash ]
-
-        This will generate a lint warning and be treated as an invalid
-        line. Fixing this caused a whole bunch of unit tests to need updating
-        to no longer be marked as WontFix :). Also, this patch adjusts
-        the warnings so that missing Bug() identifiers will cause lint
-        warnings but will *not* cause the line to be treated as invalid.
-        Fixing these issues also revealed that test_hung_thread was no
-        longer testing the right logic, so I adjusted the timeouts in
-        test.py to make that test work again.
-
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner.py:
-        (Worker._run_test_in_another_thread):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ResultSummaryTest.test_summarized_results_wontfix):
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectationParser._parse_modifiers):
-        (TestExpectationParser._tokenize_line_using_new_format):
-        (TestExpectationLine.is_invalid):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (BasicTests.test_basic):
-        (test_get_test_set):
-        (test_parse_warning):
-        (test_pixel_tests_flag):
-        (SemanticTests.test_missing_bugid):
-        (SemanticTests):
-        (SemanticTests.test_skip_and_wontfix):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestDriver.run_test):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_hung_thread):
-        * Scripts/webkitpy/tool/commands/queries_unittest.py:
-        (PrintExpectationsTest.test_basic):
-        (PrintExpectationsTest.test_multiple):
-        (PrintExpectationsTest.test_full):
-        (PrintExpectationsTest.test_exclude):
-        (PrintExpectationsTest.test_csv):
-
-2012-09-20  Lucas Forschler  <lforschler@apple.com>
-
-        Unreviewed.  Start running tests on the mac-ews.
-        
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (MacEWS):
-
-2012-09-20  Tony Chang  <tony@chromium.org>
-
-        [chromium] Enable more clang warnings
-        https://bugs.webkit.org/show_bug.cgi?id=97257
-
-        Reviewed by James Robinson.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp: Add -Wunused-parameter. Don't add -Wglobal-constructors because
-        there are lots of violations in these files.
-
-2012-09-19  Ryosuke Niwa  <rniwa@webkit.org>
-
-        run-perf-tests should record individual value instead of statistics
-        https://bugs.webkit.org/show_bug.cgi?id=97155
-
-        Reviewed by Hajime Morita.
-
-        Parse the list of individual value reported by tests and include them as "values".
-        We strip "values" from the output JSON when uploading it to the perf-o-matic
-        since it doesn't know how to parse "values" or ignore it.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest):
-        (PerfTest.parse_output): Parse and report "values".
-        (PageLoadingPerfTest.run): Report indivisual page loading time in "values".
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py:
-        (MainTest.test_parse_output):
-        (MainTest.test_parse_output_with_failing_line):
-        (TestPageLoadingPerfTest.test_run):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._generate_and_show_results): Strip "values" from each result
-        until we update perf-o-matic.
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (test_run_memory_test):
-        (test_run_with_json_output):
-        (test_run_with_description):
-        (test_run_with_slave_config_json):
-        (test_run_with_multiple_repositories):
-
-2012-09-20  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Fix production builds
-
-        Unreviewed trivial fix: Follow up r129119 and avoid clobbering LIBS through the use of LIBS_PRIVATE.
-
-        Otherwise the libQtWebKit.prl file for example contains -lWebKit1 -lWebCore, etc.
-
-        * qmake/mkspecs/features/functions.prf:
-
-2012-09-20  Dirk Pranke  <dpranke@chromium.org>
-
-        REGRESSION: layout test results doesn't show diffs
-        https://bugs.webkit.org/show_bug.cgi?id=97182
-
-        Reviewed by Ojan Vafai.
-
-        Go back to storing TEXT, AUDIO, and IMAGE+TEXT in results.json
-        so that results.html (and hopefully garden-o-matic) can
-        determine which things actually failed. However, we keep mapping
-        these results to Failure so that we still only have a single
-        expectation type for them.
-
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        (JSONLayoutResultsGenerator):
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectationParser):
-        (TestExpectations):
-        (TestExpectations.result_was_expected):
-        * Scripts/webkitpy/layout_tests/models/test_failures.py:
-        (determine_result_type):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_missing_and_unexpected_results):
-        (MainTest.test_retrying_and_flaky_tests):
-
-2012-09-20  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: Extend UserMediaRequest with a ownerDocument method
-        https://bugs.webkit.org/show_bug.cgi?id=97095
-
-        Reviewed by Adam Barth.
-
-        Extending WebUserMediaClientMock to check that the owning document is valid,
-        and that the document has a frame.
-
-        * DumpRenderTree/chromium/WebUserMediaClientMock.cpp:
-        (WebKit::WebUserMediaClientMock::requestUserMedia):
-
-2012-09-20  Stephen Chenney  <schenney@chromium.org>
-
-        [Chromium] DRT does not support --dump-all-pixels flag
-        https://bugs.webkit.org/show_bug.cgi?id=95098
-
-        Reviewed by Dirk Pranke.
-
-        Add support for the --pixel-tests and shorthand -p option in Chromium DumpRenderTree. Use
-        of this flag causes pixel results to be created for all tests, regardless of
-        individual test options. If an individual test provides a pixel hash it will be used,
-        otherwise the hash will be empty. This replaces a previously defined but unused option
-        --dump-all-pixels, and is useful primarily when debugging DRT instances.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (runTest): Add a parameter and code to force pixel results for the test.
-        (main): Add parameter handling for --pixels-test and -p, and remove --dump-all-pixels.
-
-2012-09-20  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] run-api-tests should not buffer test stdout
-        https://bugs.webkit.org/show_bug.cgi?id=88474
-
-        Reviewed by Philippe Normand.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner._run_test_command): Use os.forkpty() instead of
-        subprocess.Popen() so that gtest sends the output with colors to
-        stdout. Use common.parse_output_lines() to parse the output and
-        write it to stdout while it's read.
-        (TestRunner._run_test_command.parse_line): Parse the line to get
-        the test pid and write the line to stdout.
-        (TestRunner._run_test_command.waitpid): Helper function to call
-        waitpid handling EINTR.
-        (TestRunner._run_test_command.return_code_from_exit_status):
-        Helper function to convert exit status of test commands to a
-        return code.
-        * gtk/common.py:
-        (parse_output_lines): Helper function that uses select to read
-        the given file descriptor and call the given callback for every
-        line read.
-
-2012-09-20  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Fix initial build
-
-        Reviewed by Tor Arne Vestbø.
-
-        When building QtWebKit the first time there is no qt_webkit.pri module pri file, and therefore
-        $$QT.webkit.name isn't set and so creating_module isn't set. That has all sorts of implications
-        causing incorrect linking for Makefile.api, etc.
-
-        Fix the determination by simply checking if MODULE is set, which only happens in api.pri.
-
-        * qmake/mkspecs/features/webkit_modules.prf:
-
-2012-09-20  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r129091.
-        http://trac.webkit.org/changeset/129091
-        https://bugs.webkit.org/show_bug.cgi?id=97205
-
-        It broke perf tests everywhere (Requested by Ossy on #webkit).
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest):
-        (PerfTest.parse_output):
-        (PageLoadingPerfTest.run):
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py:
-        (MainTest.test_parse_output):
-        (MainTest.test_parse_output_with_failing_line):
-        (TestPageLoadingPerfTest.test_run):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._generate_and_show_results):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (test_run_memory_test):
-        (test_run_with_json_output):
-        (test_run_with_description):
-        (test_run_with_slave_config_json):
-        (test_run_with_multiple_repositories):
-
-2012-09-20  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] QtWebKit module header includes private dependencies
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/default_post.prf: Don't try to sanitize LIBS, because we can make sure
-        that LIBS_PRIVATE is set from the beginning. Moved the creating_module and PKGCONFIG/QT(_PRIVATE)
-        sanitization into webkit_modules.prf. creating_module determination requires TARGET to be set, so
-        we can't do it in default_pre.
-        * qmake/mkspecs/features/webkit_modules.prf:
-
-2012-09-20  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Fix build with MingW
-
-        Reviewed by Tor Arne Vestbø.
-
-        Don't try to compile WebCore, etc. with debug symbols for production
-        builds, it's just too big.
-
-        * qmake/mkspecs/features/production_build.prf:
-
-2012-09-20  Michał Pakuła vel Rutka  <m.pakula@samsung.com>
-
-        [EFL][DRT]DumpRenderTree needs to reset focus state when test starts.
-        https://bugs.webkit.org/show_bug.cgi?id=97087
-
-        Reviewed by Gyuyoung Kim.
-
-        Add focusing a main frame on settings reset.
-        After editing/undo/undo-iframe-location-change was executed a frame
-        was left in unfocused state. This caused flakiness in two tests results.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-
-2012-09-20  Allan Sandfeld Jensen  <allan.jensen@digia.com>
-
-        [Qt] Add eventSender.gestureTap
-        https://bugs.webkit.org/show_bug.cgi?id=66173
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Implement support for sending raw QGesture events.
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::EventSender):
-        (EventSender::gestureTap):
-        * DumpRenderTree/qt/EventSenderQt.h:
-        (EventSender):
-
-2012-09-19  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r129007.
-        http://trac.webkit.org/changeset/129007
-        https://bugs.webkit.org/show_bug.cgi?id=97172
-
-        It broke the build on the Qt bots (Requested by Ossy on
-        #webkit).
-
-        * qmake/config.tests/gccdepends/empty.cpp:
-        * qmake/config.tests/gccdepends/gccdepends.pro:
-        * qmake/mkspecs/features/default_pre.prf:
-
-2012-09-19  Ryosuke Niwa  <rniwa@webkit.org>
-
-        run-perf-tests should record indivisual value instead of statistics
-        https://bugs.webkit.org/show_bug.cgi?id=97155
-
-        Reviewed by Hajime Morita.
-
-        Parse the list of indivisual value reported by tests and include them as "values".
-        We strip "values" from the output JSON when uploading it to the perf-o-matic
-        since it doesn't know how to parse "values" or ignore it.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest):
-        (PerfTest.parse_output): Parse and report "values".
-        (PageLoadingPerfTest.run): Report indivisual page loading time in "values".
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py:
-        (MainTest.test_parse_output):
-        (MainTest.test_parse_output_with_failing_line):
-        (TestPageLoadingPerfTest.test_run):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._generate_and_show_results): Strip "values" from each result
-        until we update perf-o-matic.
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (test_run_memory_test):
-        (test_run_with_json_output):
-        (test_run_with_description):
-        (test_run_with_slave_config_json):
-        (test_run_with_multiple_repositories):
-
-2012-09-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix regex groups for bug matching in flakiness dashboard.
-        https://bugs.webkit.org/show_bug.cgi?id=97152
-
-        Unreviewed, build fix.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (htmlForBugs):
-
-2012-09-19  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: print unexpected results using new TestExpectations syntax
-        https://bugs.webkit.org/show_bug.cgi?id=97159
-
-        Unreviewed, build fix.
-
-        Change new-run-webkit-tests to print out failures using the new
-        syntax when there are unexpected results, e.g.:
-
-        52 tests ran as expected, 19 didn't:
-
-
-        Regressions: Unexpected failures : (2)
-          failures/flaky/text.html [ Failure ]
-          failures/unexpected/text-image-checksum.html [ Failure ]
-
-        and so forth
-
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (Printer._print_unexpected_results):
-
-2012-09-19  Dirk Pranke  <dpranke@chromium.org>
-
-        update flakiness dashboard after cutover to new test expectations syntax
-        https://bugs.webkit.org/show_bug.cgi?id=97152
-
-        Unreviewed, build fix.
-
-        Handle (??) the new Bug notations as well. Hopefully we don't
-        still need the old ones.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (filterBugs):
-        (htmlForBugs):
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-
-2012-09-19  Dirk Pranke  <dpranke@chromium.org>
-
-        update flakiness dashboard after cutover to new test expectations syntax
-        https://bugs.webkit.org/show_bug.cgi?id=97152
-
-        Reviewed by Ryosuke Niwa.
-
-        This change clones the TestExpectation parsing state machine
-        from python into javascript.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (parsedExpectations.lines.forEach):
-        (parsedExpectations):
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-
-2012-09-19  Dana Jansens  <danakj@chromium.org>
-
-        Add backer@chromium.org as contributor
-        https://bugs.webkit.org/show_bug.cgi?id=97150
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-09-19  Dirk Pranke  <dpranke@chromium.org>
-
-        fix MISSING after TestExpectations conversion
-        https://bugs.webkit.org/show_bug.cgi?id=97148
-
-        Unreviewed, expectations change / build fix.
-
-        * Scripts/convert-test-expectations:
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectationParser):
-
-2012-09-19  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: convert chromium TestExpectations to the new syntax
-        https://bugs.webkit.org/show_bug.cgi?id=97139
-
-        Reviewed by Ryosuke Niwa.
-    
-        Add in a file temporarily that does the conversion of
-        test expectations formats
-
-        * Tools/Scripts/convert-test-expectations: Added.
-
-2012-09-19  Ryosuke Niwa  <rniwa@webkit.org>
-
-        REGRESSION: run-perf-tests no longer reports the total test time
-        https://bugs.webkit.org/show_bug.cgi?id=97138
-
-        Reviewed by Tony Chang.
-
-        Report the finished time as a info-level log as opposed to a debug level log.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._run_single_test):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (MainTest.normalizeFinishedTime): Added. It replaces all finished times by 0.1 seconds.
-        (test_run_test_pause_before_testing):
-        (test_run_test_set_for_parser_tests):
-        (test_run_memory_test):
-        (_test_run_with_json_output):
-
-2012-09-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Support new TestExpectations format alongside old one
-        https://bugs.webkit.org/show_bug.cgi?id=96588
-
-        Reviewed by Ojan Vafai.
-
-        This patch adds support for actually reading in lines formatted
-        in the new style, and when we re-serialize/write out the file,
-        all lines will be written in the new style. Note that reading in
-        the old style is still supported, and no updates are being made
-        to the actual TestExpectations files as part of this change.
-
-        This change updates most but not all of the unit tests to use
-        the new syntax. I will update the rest when (or before where
-        possible) I drop support for the old format.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectationParser):
-        (TestExpectationParser._tokenize_line):
-        (TestExpectationParser._tokenize_line_using_new_format):
-        (TestExpectationLine.to_string):
-        (TestExpectationLine._format_line):
-        (TestExpectations):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (test_parse_warning):
-        (SkippedTests.test_skipped_entry_dont_exist):
-        (NewExpectationSyntaxTests.test_warnings):
-        (RemoveConfigurationsTest.test_remove):
-        (test_remove_line):
-        (RebaseliningTest.test_remove):
-        (RebaseliningTest.test_no_get_rebaselining_failures):
-        (TestExpectationParserTests.test_tokenize_blank):
-        (TestExpectationParserTests.test_tokenize_extra_colon):
-        (TestExpectationParserTests.test_tokenize_missing_equal):
-        (TestExpectationParserTests.test_tokenize_extra_equal):
-        (TestExpectationSerializationTests.test_unparsed_to_string):
-        (TestExpectationSerializationTests.test_unparsed_list_to_string):
-        (TestExpectationSerializationTests.test_parsed_to_string):
-        (TestExpectationSerializationTests.test_format_line):
-        (TestExpectationSerializationTests.test_string_roundtrip):
-        (TestExpectationSerializationTests.test_list_roundtrip):
-        (TestExpectationSerializationTests.test_reconstitute_only_these):
-        (TestExpectationSerializationTests.test_string_whitespace_stripping):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (LintTest.test_lint_test_files__errors):
-        * Scripts/webkitpy/tool/commands/queries_unittest.py:
-        (PrintExpectationsTest.test_basic):
-        (PrintExpectationsTest.test_multiple):
-        (PrintExpectationsTest.test_full):
-        (PrintExpectationsTest.test_exclude):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineExpectations.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (TestRebaseline.test_rebaseline_updates_expectations_file_noop):
-        (test_rebaseline_updates_expectations_file):
-        (test_rebaseline_does_not_include_overrides):
-        (test_rebaseline_expectations_noop):
-        (test_overrides_are_included_correctly):
-
-2012-09-19  Dirk Pranke  <dpranke@chromium.org>
-
-        implement first part of support for the new TestExpectations syntax
-        https://bugs.webkit.org/show_bug.cgi?id=96569
-
-        Reviewed by Ryosuke Niwa.
-
-        This patch implements support for parsing a line of the new
-        format for the TestExpectations file and converting it back into
-        the old format for compatibility. This routine is not yet used
-        by anything.
-
-        The new format is documented at:
-          http://trac.webkit.org/wiki/TestExpectations
-
-        but, in short:
-
-          [bugs] [ "[" modifiers "]" ] test_name [ "[" expectations "]" ]
-
-        - Comments are indicated with "#" instead of "//"
-        - If no expectations are specified we default to Skip for
-          compatibility with the Skipped files (these two changes make
-          Skipped files a subset of TestExpectations files)
-
-        - All of the tokens are now CamelCase instead of ALLCAPS.
-        - FAIL -> Failure
-        - IMAGE -> ImageOnlyFailure
-        - WONTFIX -> WontFix
-        - modifiers refer to just the platforms and configurations
-          (release/debug) that the line applies to.
-        - WontFix, Rebaseline, Slow, and Skip move to the right-hand side as
-          expectations
-        - expectations will typically be written out in lexicographic order
-        - We use webkit.org/b/12345, crbug.com/12345, and Bug(dpranke)
-          instead of BUGWK12345, BUGCR12345, and BUGDPRANKE.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectationParser):
-        (TestExpectationParser._tokenize_line_using_new_format):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (NewExpectationSyntaxTests):
-        (NewExpectationSyntaxTests.assert_exp):
-        (NewExpectationSyntaxTests.test_bare_name):
-        (NewExpectationSyntaxTests.test_bare_name_and_bugs):
-        (NewExpectationSyntaxTests.test_comments):
-        (NewExpectationSyntaxTests.test_config_modifiers):
-        (NewExpectationSyntaxTests.test_unknown_config):
-        (NewExpectationSyntaxTests.test_unknown_expectation):
-        (NewExpectationSyntaxTests.test_skip):
-        (NewExpectationSyntaxTests.test_slow):
-        (NewExpectationSyntaxTests.test_wontfix):
-        (NewExpectationSyntaxTests.test_blank_line):
-        (NewExpectationSyntaxTests.test_warnings):
-
-2012-09-19  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: replace TEXT, AUDIO, and IMAGE+TEXT with FAIL
-        https://bugs.webkit.org/show_bug.cgi?id=96845
-
-        Reviewed by Ojan Vafai.
-
-        In preparation for the new TestExpectations syntax, we replace
-        all TEXT, IMAGE+TEXT, and AUDIO failures with FAIL. This will
-        make switching to the new syntax lossless (i.e., we lose
-        information now, not then).
-
-        Note that we can still parse in results.json files that have the
-        old data for backwards compatibility.
-        
-
-        * Scripts/webkitpy/common/net/resultsjsonparser.py:
-        (JSONTestResult._failure_types_from_actual_result):
-        * Scripts/webkitpy/common/net/resultsjsonparser_unittest.py:
-        (ResultsJSONParserTest):
-        (test_basic):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ResultSummaryTest.test_summarized_results_wontfix):
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        (JSONLayoutResultsGenerator):
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectations):
-        (TestExpectations.remove_pixel_failures):
-        (TestExpectations.has_pixel_failures):
-        (TestExpectations.suffixes_for_expectations):
-        (TestExpectations.get_rebaselining_failures):
-        (TestExpectations.remove_configuration_from_test):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (assert_bad_expectations):
-        (BasicTests):
-        (BasicTests.test_basic):
-        (MiscTests):
-        (MiscTests.test_multiple_results):
-        (MiscTests.test_result_was_expected):
-        (MiscTests.test_remove_pixel_failures):
-        (MiscTests.test_suffixes_for_expectations):
-        (test_get_expectations_string):
-        (test_parse_warning):
-        (test_error_on_different_platform):
-        (test_error_on_different_build_type):
-        (test_overrides):
-        (test_overrides__directory):
-        (test_overrides__duplicate):
-        (test_pixel_tests_flag):
-        (test_more_specific_override_resets_skip):
-        (SkippedTests.test_skipped_file_overrides_expectations):
-        (SkippedTests.test_skipped_dir_overrides_expectations):
-        (SkippedTests.test_skipped_file_overrides_overrides):
-        (SkippedTests.test_skipped_dir_overrides_overrides):
-        (ExpectationSyntaxTests.test_missing_colon):
-        (ExpectationSyntaxTests.test_too_many_equals_signs):
-        (SemanticTests.test_bug_format):
-        (SemanticTests.test_bad_bugid):
-        (SemanticTests.test_missing_bugid):
-        (SemanticTests.test_rebaseline):
-        (test_missing_file):
-        (test_more_modifiers):
-        (test_order_in_file):
-        (test_macro_overrides):
-        (RemoveConfigurationsTest.test_remove):
-        (test_remove_line):
-        (RebaseliningTest.test_remove):
-        (TestExpectationSerializationTests.test_serialize_parsed_expectations):
-        * Scripts/webkitpy/layout_tests/models/test_failures.py:
-        (determine_result_type):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (test_test_expectations):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_missing_and_unexpected_results):
-        (MainTest.test_retrying_and_flaky_tests):
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-        (TestExpectationsTestCase.test_valid_expectations):
-        * Scripts/webkitpy/tool/commands/queries_unittest.py:
-        (PrintExpectationsTest.test_basic):
-        (PrintExpectationsTest.test_multiple):
-        (PrintExpectationsTest.test_full):
-        (PrintExpectationsTest.test_exclude):
-        (PrintExpectationsTest.test_csv):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (test_rebaseline_does_not_include_overrides):
-        (test_overrides_are_included_correctly):
-
-2012-09-19  Dominic Mazzoni  <dmazzoni@google.com>
-
-        AX: A few control types are returning the wrong answer for isReadOnly
-        https://bugs.webkit.org/show_bug.cgi?id=96735
-
-        Reviewed by Chris Fleizach.
-
-        Exposing isReadOnly in an AccessibilityObject to DumpRenderTree.
-
-        * DumpRenderTree/chromium/TestRunner/AccessibilityUIElementChromium.cpp:
-        (AccessibilityUIElement::AccessibilityUIElement):
-        (AccessibilityUIElement::isReadOnlyGetterCallback):
-        * DumpRenderTree/chromium/TestRunner/AccessibilityUIElementChromium.h:
-        (AccessibilityUIElement):
-
-2012-09-19  Sudarsana Nagineni  <sudarsana.nagineni@intel.com>
-
-        [WTR] Memory leaks in TestRunner::deliverWebIntent()
-        https://bugs.webkit.org/show_bug.cgi?id=97111
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Fix memory leaks in deliverWebIntent() by adopting strings
-        created with WKStringCreateWithUTF8CString().
-
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::deliverWebIntent):
-
-2012-09-19  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Fix incremental builds with all-in-one-files and gccdepends
-
-        Reviewed by Tor Arne Vestbø.
-
-        Pass -MP to gcc when we use the gcc depends feature, to ensure that implicit rules
-        are not only created for header files but also for .cpp files. AllInOne.cpp files
-        include other .cpp files, and when those are removed we need those dummy rules to
-        avoid a "No rule to make Foo.cpp required by AllInOne.o" error.
-
-        * qmake/config.tests/gccdepends/empty.cpp:
-        (main):
-        * qmake/config.tests/gccdepends/gccdepends.pro:
-        * qmake/mkspecs/features/default_pre.prf:
-
-2012-09-19  Rick Byers  <rbyers@chromium.org>
-
-        Do touch adjustment on GestureTapDown
-        https://bugs.webkit.org/show_bug.cgi?id=96677
-
-        Reviewed by Antonio Gomes.
-
-        Allow radius to be set for GestureTapDown events.
-        * DumpRenderTree/chromium/TestRunner/EventSender.cpp:
-        (EventSender::gestureEvent):
-
-2012-09-19  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] EFL's DRT does not support overriding 'WebKitCSSRegionsEnabled' preference
-        https://bugs.webkit.org/show_bug.cgi?id=97100
-
-        Reviewed by Gyuyoung Kim.
-
-        EFL's DRT now supports overriding the 'WebKitCSSRegionsEnabled'
-        preference, in order to match WebKitTestRunner functionality.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        (TestRunner::overridePreference):
-
-2012-09-18  Kangil Han  <kangil.han@samsung.com>
-
-        [WK2][WTR] CodeGeneratorTestRunner could keep original copyright.
-        https://bugs.webkit.org/show_bug.cgi?id=96181
-
-        Reviewed by Daniel Bates.
-
-        This patch enabled derived files, in DerivedSources/InjectedBundle, to keep original copyright.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/CodeGeneratorTestRunner.pm:
-        (new):
-        (_parseLicenseBlock):
-        (_parseLicenseBlockFromFile):
-        (_defaultLicenseBlock):
-        (_licenseBlock):
-        (_generateHeaderFile):
-        (_generateImplementationFile):
-
-2012-09-18  Byungwoo Lee  <bw80.lee@samsung.com>
-
-        Title string should be changed when document.title is set to ''.
-        https://bugs.webkit.org/show_bug.cgi?id=96793
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Change dump format of dumpTitleChanges more understandable.
-        Uses single quotation marks for the title string.
-
-        * DumpRenderTree/blackberry/DumpRenderTree.cpp:
-        (BlackBerry::WebKit::DumpRenderTree::didReceiveTitleForFrame):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::didReceiveTitle):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::onFrameTitleChanged):
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webViewTitleChanged):
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate webView:didReceiveTitle:forFrame:]):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::titleChanged):
-        * DumpRenderTree/win/FrameLoadDelegate.cpp:
-        (FrameLoadDelegate::didReceiveTitle):
-        * DumpRenderTree/wx/DumpRenderTreeWx.cpp:
-        (LayoutWebViewEventHandler::OnReceivedTitleEvent):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::didReceiveTitleForFrame):
-
-2012-09-18  Szilard Ledan  <szledan@inf.u-szeged.hu>
-
-        EWS shouldn't sleep if there are new patches in its queue
-        https://bugs.webkit.org/show_bug.cgi?id=83038
-
-        Reviewed by Eric Seidel.
-
-        EWS tries to process a security patch. Of course it can't, because the EWS isn't
-        the member of the security group. But the problem is that after it can't process
-        the attachment, it says that queue is empty (but it isn't!) and it sleeps 2 minutes
-        and push the security patch to the end of the queue.
-        Now it stays in the loop until it finds a patch or the queue gets empty.
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-        (AbstractPatchQueue._next_patch):
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        (AbstractPatchQueueTest.test_next_patch):
-
-2012-09-18  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [WK2][WTR] InjectedBundle::booleanForKey() should handle literals effectively
-        https://bugs.webkit.org/show_bug.cgi?id=97014
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        According to http://trac.webkit.org/wiki/EfficientStrings WTF::StringBuilder::appendLiteral() shall
-        be used for literals rather than WTF::StringBuilder::append().
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::booleanForKey):
-
-2012-09-18  Simon Hausmann  <simon.hausmann@digia.com>
-
-        Update my e-mail address.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-09-18  Andras Becsi  <andras.becsi@digia.com>
-
-        Update my e-mail address.
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-09-18  Andras Becsi  <andras.becsi@digia.com>
-
-        [Qt] qt_webkit.pri should not be listed in Tools.pro
-
-        Reviewed and rubber-stamped by Simon Hausmann and Tor Arne Vestbø.
-
-        Since r128751 the module pri file is auto-generated
-        but it was still listed in OTHER_FILES.
-
-        * Tools.pro: Remove unneeded line.
-
-2012-09-18  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Fix build with some versions of the gold linker
-
-        Reviewed by Tor Arne Vestbø.
-
-        Don't unconditionally pass --no-keep-memory to the linker, some versions might not support it.
-        Instead run a compile/link test first to see if it works.
-
-        * qmake/config.tests/gnuld/gnuld.pro: Added.
-        * qmake/config.tests/gnuld/main.cpp: Added.
-        (main):
-        * qmake/mkspecs/features/unix/default_post.prf:
-
-2012-09-18  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Remove forced use of gold.
-
-        Reviewed by Tor Arne Vestbø.
-
-        The choice of what linker to use with WebKit should be taken by Qt's build system and ideally the same for all
-        modules of Qt. Then in turn it is usually up to the administrator of the machine. Recent Debian based systems
-        often offer the automatic use of gold through a symlink and a dpkg-diversion when installing the gold package.
-
-        * qmake/mkspecs/features/unix/default_post.prf:
-
-2012-09-18  Simon Hausmann  <simon.hausmann@digia.com>
-
-        [Qt] Prospective Qt/Windows cross-compiling fix
-
-        Reviewed by Tor Arne Vestbø.
-
-        The win32 scope is not set when cross-compiling from Linux to Windows.
-
-        * qmake/mkspecs/features/functions.prf:
-
-2012-09-18  Seokju Kwon  <seokju.kwon@samsung.com>
-
-        [EFL] Remove background view on EWebLauncher and MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=96905
-
-        Reviewed by Gyuyoung Kim.
-
-        The size of webview was changed after adding url bar.
-        And the background view is not necessary anymore, since it was used for debugging back in the day.
-
-        * EWebLauncher/main.c:
-        (_ELauncher):
-        (on_ecore_evas_resize):
-        (browserCreate):
-        * MiniBrowser/efl/main.c:
-        (_MiniBrowser):
-        (on_ecore_evas_resize):
-        (browserCreate):
-
-2012-09-18  Sergio Villar Senin  <svillar@igalia.com>
-
-        [GTK] run-webkit-tests unable to find TestExpectations for WK2
-        https://bugs.webkit.org/show_bug.cgi?id=96998
-
-        Reviewed by Philippe Normand.
-
-        We should look for TestExpectations files in all the locations where
-        we currently look for Skipped files. This will allow
-        run-webkit-tests to look for TestExpectations files in
-        platform/gtk-wk2 and platform/wk2 if the "-2" flag is used.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort.expectations_files):
-
-2012-09-18  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Fix build without the QtQuick module
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-09-18  Stephanie Lewis  <slewis@apple.com>
-
-        Build fix after http://trac.webkit.org/projects/webkit/changeset/128852.
-
-        Unreviewed.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (poseAsClass):
-
-2012-09-18  Allan Sandfeld Jensen  <allan.jensen@nokia.com>
-
-        Unreviewed update of email addresses for Berlin QtWebKit office.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-09-17  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] fast/loader/display-image-unset-can-block-image-and-can-reload-in-place.html failing after r128645
-        https://bugs.webkit.org/show_bug.cgi?id=96899
-
-        Reviewed by Martin Robinson.
-
-        When overriding the 'WebKitDisplayImageKey' preference, use the
-        'auto-load-images' property of WebKitWebSettings as the property which
-        should be updated with the corresponding preference value.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/gtk/TestRunnerGtk.cpp:
-        (TestRunner::overridePreference):
-
-2012-09-17  Pratik Solanki  <psolanki@apple.com>
-
-        DumpRenderTree and WebKitTestRunner should compile with -Wundef on Mac
-        https://bugs.webkit.org/show_bug.cgi?id=96973
-
-        Reviewed by Dan Bernstein.
-
-        * DumpRenderTree/mac/Configurations/Base.xcconfig:
-        * WebKitTestRunner/Configurations/Base.xcconfig:
-        * WebKitTestRunner/PlatformWebView.h: Use #ifdef __OBJC__ and not #if.
-
-2012-09-17  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: remove "unexpected EOF" warnings
-        https://bugs.webkit.org/show_bug.cgi?id=96970
-
-        Reviewed by Ojan Vafai.
-
-        After debugging this a bit, it looks like there aren't any cases
-        that I can reproduce where a read() of zero indicates something
-        actually wrong; either it is a prelude to a crash, or a false
-        negative. So, I'm removing these warnings and adding a comment.
-
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        (ServerProcess._wait_for_data_and_update_buffers_using_select):
-
-2012-09-17  Dirk Pranke  <dpranke@chromium.org>
-
-        [chromium] ASAN bot is crashing at the end of the run
-        https://bugs.webkit.org/show_bug.cgi?id=96967
-
-        Reviewed by Abhishek Arya.
-
-        The ASAN bot is crashing attempting to decode some output into
-        UTF-8; there's no reason to do this, so let's not do this and
-        see if something else is going on as well.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort._get_crash_log):
-
-2012-09-17  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: --results-directory isn't getting printed properly
-        https://bugs.webkit.org/show_bug.cgi?id=96965
-
-        Reviewed by Ojan Vafai.
-
-        options.results_directory isn't actually initialized with the
-        default values until after we call print_config(), so this
-        changes things to print the value directly.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (run):
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (Printer.print_config):
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-        (Testprinter.test_print_config):
-
-2012-09-17  Rob Buis  <rbuis@rim.com>
-
-        [BlackBerry] Enable VIDEO_TRACK
-        https://bugs.webkit.org/show_bug.cgi?id=96949
-
-        Reviewed by Antonio Gomes.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-09-17  Rick Byers  <rbyers@chromium.org>
-
-        Add handling of new GestureTapCancel in DRT
-
-        https://bugs.webkit.org/show_bug.cgi?id=96183
-
-        Reviewed by Antonio Gomes.
-
-        * DumpRenderTree/chromium/TestWebPlugin.cpp:
-        (TestWebPlugin::handleInputEvent):
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::gestureTapCancel):
-
-2012-09-17  Philip Rogers  <pdr@google.com>
-
-        Teach style checker about preprocessor directive indentation rules
-        https://bugs.webkit.org/show_bug.cgi?id=96874
-
-        Reviewed by Adam Barth.
-
-        Preprocessor directives (#ifdef, #include, #define, etc.) should not be indented.
-        This is not explicit in our style guide but is generally followed in our code.
-        Searching for violations in our codebase shows these are rarely indented:
-            #include - indented in 6 files
-            #ifdef - indented in 0 files
-            #ifndef - indented in 1 file
-            #define - indented in 11 files
-            #if - indented in 7 files
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (check_directive_indentation):
-
-            This is the simple test where we look for spaces followed by a #.
-
-        (check_style):
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-
-            A few tests needed to be modified because they had unintentionally indented
-            preprocessor directives.
-
-        (CppStyleTest.test_build_class.Foo):
-        (CppStyleTest.test_build_class):
-        (CppStyleTest.test_build_class.DERIVE_FROM_GOO):
-        (WebKitStyleTest.test_line_breaking):
-        (WebKitStyleTest.test_directive_indentation):
-
-2012-09-17  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Auto-generate the module pri file for QtWebKit
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/qt_webkit.pri: Removed.
-
-2012-09-14  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: --additional-platform-dir is broken on chromium ports
-        https://bugs.webkit.org/show_bug.cgi?id=96840
-
-        Reviewed by Ojan Vafai.
-
-        Looks like I broke this when cleaning things up as part of
-        adding ML support. Fixing and adding a test.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.default_baseline_search_path):
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.default_baseline_search_path):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        (ChromiumLinuxPort.default_baseline_search_path):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        (ChromiumMacPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        (ChromiumWinPort.setup_environ_for_server):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (test_check_build):
-        (test_additional_platform_directory):
-
-2012-09-13  Stephanie Lewis  <slewis@apple.com>
-
-        mac-future ignores previous platform TestExpectations.
-        https://bugs.webkit.org/show_bug.cgi?id=96718.
-
-        Reviewed by Dirk Pranke.
-
-        TestExpectations match an expectation's configuraton against a list of configurations that are 
-        valid for that port.  That list does not contain mac-future so none of the expectations can be
-        applied.
-
-        * Scripts/webkitpy/layout_tests/port/apple.py:
-        (ApplePort._generate_all_test_configurations):
-
-2012-09-14  Adam Barth  <abarth@webkit.org>
-
-        Remove webkitPostMessage
-        https://bugs.webkit.org/show_bug.cgi?id=96577
-
-        Reviewed by Ojan Vafai.
-
-        Add ENABLE_LEGACY_VENDOR_PREFIXES flag.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2012-09-14  Alexey Proskuryakov  <ap@apple.com>
-
-        [WK2] webarchive/loading/javascript-url-iframe-crash.html fails
-        https://bugs.webkit.org/show_bug.cgi?id=96817
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::didFailProvisionalLoadWithErrorForFrame): This callback
-        got overlooked when adding logging elsewhere.
-
-2012-09-14  Peter Beverloo  <peter@chromium.org>
-
-        [Chromium] Build fix for DumpRenderTree following r128628
-        https://bugs.webkit.org/show_bug.cgi?id=96808
-
-        Reviewed by Tony Chang.
-
-        When building DumpRenderTree from the Chromium project, a compile error
-        shows up because including the header ForwardIOStreamsAndroid.h cannot
-        be located. TestWebKitAPI does this correctly.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-09-14  Dana Jansens  <danakj@chromium.org>
-
-        Change cc-bugs@google.com watchlist to cc-bugs@chromium.org
-        https://bugs.webkit.org/show_bug.cgi?id=96805
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/common/config/committers.py:
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-09-14  Peter Beverloo  <peter@chromium.org>
-
-        [Chromium] Support the --{in,out,err}-fifo arguments on TestWebKitAPI and webkit_unit_tests
-        https://bugs.webkit.org/show_bug.cgi?id=96687
-
-        Reviewed by Tony Chang.
-
-        Android's DumpRenderTree currently supports these arguments, implemented
-        as part of TestShellAndroid:
-        http://trac.webkit.org/browser/trunk/Tools/DumpRenderTree/chromium/TestShellAndroid.cpp?rev=128496
-
-        They're used by the layout test runner to get the STDOUT and STDERR while
-        a layout test run is in process, which is a safer alternative to parsing
-        all the logcat output manually. The implementation can be seen here:
-        http://trac.webkit.org/browser/trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py?rev=128496#L590
-
-        This patch generalizes parsing of and applying the effects of these arguments
-        so that they can be used for TestWebKitAPI and webkit_unit_tests as well.
-        After this patch, this will make it possible to pull out the output-reading
-        code from Android's layout test port and generalize it so it can be re-used
-        in the new test-runner for the other two test suites.
-
-        This has no effect when compiling and running these tests as part of Chromium
-        code, which has a much more advanced test-runner that does parse complete log
-        output, but also directly depends on code licensed under Apache 2.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/chromium/TestShellAndroid.cpp:
-        (platformInit):
-        * TestWebKitAPI/TestWebKitAPI.gyp/TestWebKitAPI.gyp:
-
-2012-09-14  Zoltan Horvath  <zoltan@webkit.org>
-
-        check-webkit-style should not warn in case of NONCOPYABLE and FAST_ALLOCATED macros
-        https://bugs.webkit.org/show_bug.cgi?id=96656
-
-        Reviewed by Adam Barth.
-
-        We should allow to use WTF_MAKE_NONCOPYABLE(ClassName) and WTF_MAKE_FAST_ALLOCATED
-        macros in 1 line.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (check_style.definitions):
-        (check_style): Add rule.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (WebKitStyleTest.test_line_breaking): Add unittest.
-
-2012-09-14  Christophe Dumez  <christophe.dumez@intel.com>
-
-        WebKitTestRunner needs layoutTestController.dumpDatabaseCallbacks
-        https://bugs.webkit.org/show_bug.cgi?id=57570
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Implement testRunner.dumpDatabaseCallbacks in WebKitTestRunner
-        and dump the information expected by the test cases.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting): Explicitly set the default
-        database quota.
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::securityOriginToStr): New convenience function to convert
-        a security origin to the string expected in test results.
-        (WTR):
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        (WTR::InjectedBundlePage::didExceedDatabaseQuota):
-        (WTR::InjectedBundlePage::didReachApplicationCacheOriginQuota): Minor
-        refactoring to share code with didExceedDatabaseQuota.
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-        (InjectedBundlePage):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::TestRunner):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (WTR::TestRunner::dumpDatabaseCallbacks):
-        (WTR::TestRunner::shouldDumpDatabaseCallbacks):
-        (TestRunner):
-
-2012-09-14  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Set force_static_libs_as_shared early enough to be caught by configure
-
-        Rubber-stamped by Simon Hausmann.
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2012-09-14  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Remove old cruft from the qmake build system
-
-        Rubber-stamped by Simon Hausmann.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * qmake/mkspecs/features/default_post.prf:
-
-2012-09-14  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Enable force_static_libs_as_shared for development
-
-        Not enabled for buildbots or production-builds (part of Qt5)
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2012-09-14  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Make force_static_libs_as_shared work on Mac OS
-
-        We had to move a few LIBS += around that were in the wrong place,
-        and not caught when everything was just linked into the final
-        QtWebKit library.
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/force_static_libs_as_shared.prf:
-
-2012-09-14  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Fix build of WTR on Windows
-
-        Reviewed by Tor Arne Vestbø.
-
-        WTR/qt/main.cpp includes TestController.h, which lives in just WTR/
-        With qmake's unix makefile generator as well as with the MingW generator,
-        the directory where the pro file lives (WTR/) is automatically added to
-        the include search path, but not so with MSVC. Instead of relying on qmake's
-        implicit feature here, add WTR/ explicitly to the include search path.
-
-        * WebKitTestRunner/Target.pri:
-
-2012-09-14  Christophe Dumez  <christophe.dumez@intel.com>
-
-        WebKitTestRunner needs layoutTestController.setStopProvisionalFrameLoads
-        https://bugs.webkit.org/show_bug.cgi?id=42691
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add implementation for testrunner.setStopProvisionalFrameLoads()
-        in WebKitTestRunner.
-
-        Original patch by Alexey Proskuryakov.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::didStartProvisionalLoadForFrame):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::TestRunner):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-        (WTR::TestRunner::setStopProvisionalFrameLoads):
-        (WTR::TestRunner::shouldStopProvisionalFrameLoads):
-
-2012-09-14  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Fix handling of debug/release/debug_and_release/build_all
-
-        We now pick up the defaults from Qt, in default_pre (CONFIG already
-        contains the appropriate values for debug and release). We then let
-        the command line arguments to qmake, or the project files themselves,
-        override the configuration, and finally we sanitize the configuration
-        in default_post.
-
-        Reviewed by Simon Hausmann.
-
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-        * Scripts/webkitdirs.pm:
-        (buildQMakeProjects):
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/default_pre.prf:
-        * qmake/mkspecs/features/mac/default_pre.prf:
-
-2012-09-14  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        WebKitTestRunner needs layoutTestController.setTabKeyCyclesThroughElements
-        https://bugs.webkit.org/show_bug.cgi?id=42687
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Implement testRunner.setTabKeyCyclesThroughElements for
-        WebKitTestRunner.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::setTabKeyCyclesThroughElements):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-
-2012-09-14  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        EventSendingController::keyDown does not support non-array modifier arguments
-        https://bugs.webkit.org/show_bug.cgi?id=96727
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add support for handling a string as modifier argument to
-        EventSendingController::keyDown.
-
-        * WebKitTestRunner/InjectedBundle/EventSendingController.cpp:
-        (WTR::parseModifierArray):
-
-2012-09-14  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        WebKitTestRunner needs layoutTestController.setCustomPolicyDelegate
-        https://bugs.webkit.org/show_bug.cgi?id=42546
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Exported TestRunner::setCustomPolicyDelegate() method.
-        Allowed Policy Delegate dumping even if we're not in 'waitUntilDone' mode.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::decidePolicyForNavigationAction):
-
-2012-09-14  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] Clear application cache between tests in DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=96543
-
-        Reviewed by Philippe Normand.
-
-        Call the new DumpRenderTreeSupportGtk method to clear application cache
-        after each test in DumpRenderTree.
-
-        Set the XDG_CACHE_HOME environment variable when running DumpRenderTree
-        as well. It's now being set in XvfbDriver._start so that each driver is assigned
-        a cache directory that's constructed out of the driver's name and its worker
-        number. These directories are located in the layout tests results directory.
-        At least on the builders this ensures a driver-specific empty cache directory
-        with each test run.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (runTest):
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort.setup_environ_for_server):
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver.py:
-        (XvfbDriver._start):
-
-2012-09-14  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Fix linking on Windows
-
-        Reviewed by Tor Arne Vestbø.
-
-        When compiling code _after_ QtWebKit.dll, we need to make sure that the QWEBKIT_EXPORT
-        macro turns into an import macro, which means QT_MAKEDLL should only be set _up until_
-        the QtWebKit.dll creation in the build process and be off afterwards. This is done in
-        win32/default_post.prf using a !contains(QT, webkit): DEFINES += QT_MAKEDLL.
-
-        r128450 sanitized the values of QT and PKGCONFIG to only contain the dependencies we
-        want for QtWebKit.dll, but unfortunately that code was applied to any binary built also
-        after the module. Therefore QT did never contain webkit anymore and we always passed
-        QT_MAKEDLL to DEFINES, resulting in QWEBKIT_EXPORT to _not_ turn into an import macro.
-
-        This patch introduces a creating_module configuration that is used to
-        scope the qt/pkgconfig sanitization.
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2012-09-14  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2][WKTR] TestRunner is not dumping some frame load callbacks information
-        https://bugs.webkit.org/show_bug.cgi?id=96740
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Dump information expected by the test cases about the following
-        frame load callbacks:
-        "didDisplayInsecureContentForFrame"
-        "didRunInsecureContentForFrame"
-        "didDetectXSSForFrame"
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::willPerformClientRedirectForFrame): Print a URL
-        as expected by test results by calling pathSuitableForTestResult() instead
-        of printing raw URL.
-        (WTR::InjectedBundlePage::didDisplayInsecureContentForFrame):
-        (WTR::InjectedBundlePage::didRunInsecureContentForFrame):
-        (WTR::InjectedBundlePage::didDetectXSSForFrame):
-
-2012-09-14  Peter Beverloo  <peter@chromium.org>
-
-        The runtime/unsigned category should be valid in the cpp style-checker.
-        https://bugs.webkit.org/show_bug.cgi?id=96748
-
-        Reviewed by Csaba Osztrogonác.
-
-        This is causing the webkitpy tests to fail because it's not listed in the
-        category array. Furthermore, change an "int" to "long" because it's
-        throwing a double error in one of the earlier asserts.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (CppChecker):
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (WebKitStyleTest.test_names):
-
-2012-09-13  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Evas_Object* is a ref'ed structure, so tread it as such
-        https://bugs.webkit.org/show_bug.cgi?id=96659
-
-        Reviewed by Adam Barth.
-
-        Replace OwnPtr<Evas_Object> with RefPtr.
-
-        * DumpRenderTree/efl/ImageDiff.cpp:
-        (calculateDifference):
-        (printImageDifferences):
-        (readImageFromStdin):
-        (main):
-
-2012-09-14  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Unreviewed, rolling out r128507.
-        http://trac.webkit.org/changeset/128507
-        https://bugs.webkit.org/show_bug.cgi?id=96659
-
-        Revert. r128507 makes too many crashes in EFL layout test bots.
-
-        * DumpRenderTree/efl/ImageDiff.cpp:
-        (calculateDifference):
-        (printImageDifferences):
-        (readImageFromStdin):
-        (main):
-
-2012-09-13  Kevin Funk  <kevin.funk@kdab.com>
-
-        Make compile with both OS(WINCE) and PLATFORM(QT) support
-        https://bugs.webkit.org/show_bug.cgi?id=95536
-
-        Reviewed by Simon Hausmann.
-
-        Fix wince support in qmake files
-
-        * Tools.pro:
-        * qmake/mkspecs/features/configure.prf:
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/features.prf:
-        * qmake/mkspecs/features/functions.prf:
-
-2012-09-13  KwangYong Choi  <ky0.choi@samsung.com>
-
-        [WK2] Add color picker API support for WebKit2
-        https://bugs.webkit.org/show_bug.cgi?id=95058
-
-        Reviewed by Gyuyoung Kim.
-
-        Initialization code for color picker callbacks in UI client.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * MiniBrowser/win/BrowserView.cpp:
-        (BrowserView::create):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::createOtherPage):
-        (WTR::TestController::initialize):
-
-2012-09-13  Yuta Kitamura  <yutak@chromium.org>
-
-        Upgrade yutak to reviewer
-        https://bugs.webkit.org/show_bug.cgi?id=96721
-
-        Reviewed by Kent Tamura.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-09-13  Adenilson Cavalcanti  <cavalcantii@gmail.com>
-
-        Make the style checker report usage of "unsigned int"
-        https://bugs.webkit.org/show_bug.cgi?id=96693
-
-        Reviewed by Dirk Pranke.
-
-        Add a rule to check for uses of unsigned int, as the updated coding style recomends.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (check_language):
-
-2012-09-13  Philip Rogers  <pdr@google.com>
-
-        Add gender-neutral form of webkit-patch land-cowboy
-        https://bugs.webkit.org/show_bug.cgi?id=96709
-
-        Reviewed by Adam Barth.
-
-        Add webkit-patch land-cowhand, the confident and courageous form of webkit-patch for everyone.
-
-        * Scripts/webkitpy/tool/commands/download.py:
-        (LandCowhand):
-
-2012-09-13  Seokju Kwon  <seokju.kwon@samsung.com>
-
-        [EFL] Remove some parameters in browserCreate()
-        https://bugs.webkit.org/show_bug.cgi?id=96499
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        There are too many parameters in browserCreate(). Lots of it seems like settings from command line argument.
-        And I have moved some parameters into User_Arguments.
-
-        * EWebLauncher/main.c:
-        (_User_Arguments):
-        (_ELauncher):
-        (on_key_down):
-        (browserCreate):
-        (findThemePath):
-        (parseUserArguments):
-        (main):
-
-2012-09-13  Mark Lam  <mark.lam@apple.com>
-
-        Unreviewed. Adding myself to the committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-09-13  Ryosuke Niwa  <rniwa@webkit.org>
-
-        run-perf-tests output cryptic error when the config file is missing.
-        https://bugs.webkit.org/show_bug.cgi?id=96453
-
-        Reviewed by Tony Chang.
-
-        Add a special error message when a configuration file is missing.
-
-        Also update the help message of --source-json-path to signify the fact it specifies
-        the configuration file on performance tests bots.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._parse_args):
-        (PerfTestsRunner._generate_and_show_results):
-        (PerfTestsRunner._merge_slave_config_json):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (_test_run_with_json_output): Make upload to fail by default and assert the result
-        in the function so that we can return logs instead.
-        (_test_run_with_json_output.mock_upload_json):
-        (test_run_with_json_output):
-        (test_run_with_description):
-        (test_run_respects_no_results):
-        (test_run_with_slave_config_json):
-        (test_run_with_bad_slave_config_json):
-        (test_run_with_multiple_repositories):
-
-2012-09-13  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Evas_Object* is a ref'ed structure, so tread it as such
-        https://bugs.webkit.org/show_bug.cgi?id=96659
-
-        Reviewed by Adam Barth.
-
-        Replace OwnPtr<Evas_Object> with RefPtr.
-
-        * DumpRenderTree/efl/ImageDiff.cpp:
-        (calculateDifference):
-        (printImageDifferences):
-        (readImageFromStdin):
-        (main):
-
-2012-09-13  Csaba Osztrogonác  <ossy@webkit.org>
-
-        One more unreviewed trivial fix after r128399.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Fix URLs of the SVN mirror server.
-
-2012-09-13  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed trivial fix after r128399.
-
-        * BuildSlaveSupport/wait-for-SVN-server.py: Renamed from Tools/BuildSlaveSupport/build.webkit.org-config/wait-for-SVN-server.py.
-        (getLatestSVNRevision):
-        (waitForSVNRevision):
-
-2012-09-13  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [WK2][WTR] WebKitTestRunner needs testRunner.callShouldCloseOnWebView
-        https://bugs.webkit.org/show_bug.cgi?id=96366
-
-        Reviewed by Anders Carlsson.
-
-        Implement testRunner.callShouldCloseOnWebView for WebKitTestRunner
-        by calling shouldClose() on the FrameLoader.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::callShouldCloseOnWebView):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-
-2012-09-13  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r128453.
-        http://trac.webkit.org/changeset/128453
-        https://bugs.webkit.org/show_bug.cgi?id=96681
-
-        Having tests use the same appcache directory leads to timeouts
-        (Requested by zdobersek on #webkit).
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (runTest):
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort.setup_environ_for_server):
-
-2012-09-13  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Temporarily remove Android Builder (dbg) from garden-o-matic view
-        https://bugs.webkit.org/show_bug.cgi?id=96678
-
-        Reviewed by Dirk Pranke.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-        (.):
-
-2012-09-13  Rob Buis  <rbuis@rim.com>
-
-        Unreviewed changes to watchlist.
-
-        - Add myself to BlackBerry bugs
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-09-13  Stephen Chenney  <schenney@chromium.org>
-
-        Add an SVG entry to the watchlist
-
-        Unreviewed config change.
-
-        * Scripts/webkitpy/common/config/watchlist:
-        - Created a new SVG watchlist label covering WebCore/svg and WebCore/rendering/svg
-        - Added myself and pdr as watchers
-
-2012-09-13  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Make WebKit2 work on Windows with Qt 5
-        https://bugs.webkit.org/show_bug.cgi?id=76776
-
-        Reviewed by Tor Arne Vestbø.
-
-        WebKit2 should compile with Qt on Windows now, so enable it. This patch in fact corrects
-        the check to disable WebKit when we don't have USE_3D_GRAPHICS available, because we need
-        that for the GL TextureMapper (it's only built when that feature is set).
-
-        * qmake/mkspecs/features/configure.prf:
-
-2012-09-13  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Ensure that QT is finalized before loading qt_module.prf
-
-        As qt_module.prf does dependency tracking based on the content of the
-        QT variable. The intermediate WebKit modules modify the variable in
-        their .pri files, so we have to ensure we've loaded all the modules
-        before loading qt_module.
-
-        Reviewed by Tor Arne Vestbø.
-        Patch by Oswald Buddenhagen <oswald.buddenhagen@nokia.com> on 2012-09-13
-
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/webkit_modules.prf: Added.
-
-2012-09-13  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Fix build of Qt WTR/MiniBrowser with MSVC and nmake
-        https://bugs.webkit.org/show_bug.cgi?id=96633
-
-        Reviewed by Csaba Osztrogonác.
-
-        WTR and MiniBrowser both have DRT in their include path (for the shared font stuff). Batch
-        builds with MSVC and nmake result in nmake picking up main.cpp from the wrong directory.
-        It's the usual problem and the usual solution is to rename one of the conflicting files.
-        This patch chooses to rename DRT instead of WTR and MBR.
-
-        Fixed include order at the same time to match style guide.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/DumpRenderTreeMain.cpp: Renamed from Tools/DumpRenderTree/qt/main.cpp.
-        (messageHandler):
-        (isOption):
-        (takeOptionValue):
-        (printUsage):
-        (main):
-
-2012-09-13  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        The Script run-launcher should support -2 in combination with --efl
-        https://bugs.webkit.org/show_bug.cgi?id=96639
-
-        Reviewed by Simon Hausmann.
-
-        Support running the MiniBrowser then supplied -2 as argument.
-
-        * Scripts/run-launcher:
-
-2012-09-13  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
-
-        Unreviewed, add my Intel email address to the list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-09-13  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Don't overwrite LIBS_PRIVATE when sanitizing LIBS
-
-        Reviewed by Ossy.
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2012-09-13  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        [EFL][DRT] Implement LayoutTestController::layerTreeAsText
-        https://bugs.webkit.org/show_bug.cgi?id=82294
-
-        Reviewed by Gyuyoung Kim.
-
-        Implement layerTreeAsText using the DumpRenderTreeSupportEfl method.
-
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        (TestRunner::layerTreeAsText):
-
-2012-09-13  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] Clear application cache between tests in DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=96543
-
-        Reviewed by Philippe Normand.
-
-        Call the new DumpRenderTreeSupportGtk method to clear application cache
-        after each test.
-
-        Set the XDG_CACHE_HOME environment variable when running DumpRenderTree
-        as well. Currently it points to a subdirectory in the layout tests results
-        directory. At least on the builders this ensures an empty cache directory
-        with each test run.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (runTest):
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort.setup_environ_for_server):
-
-2012-09-13  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Make sure LIBS, PKGCONFIG, and QT, do not affect QtWebKit's prl file
-
-        Unless it's actually a dependency of the public QtWebKit API.
-
-        We could replace every occurance of LIBS, PKGCONFIG, and QT, in the pri
-        files with their _PRIVATE equivivalent, but that's likely to break when
-        someone adds a new QT/LIBS/PKGCONFIG += foo line somewhere. Instead we
-        clean up the variables in default_post.
-
-        This means that the CONFIG -= explicitlib in linkAgainstLibrary() is no
-        longer needed, as it was a workaround for the intermediate libraries ending
-        up in the prl file. And, since CONFIG -= staticlib was there to support
-        the explicitlib option, we can remove that too (as well as the exception
-        for gprof, since it would be empty). If gprof needs tweaks to always link
-        statically they should go in gprof.prf.
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/functions.prf:
-
-2012-09-13  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        [GTK] "Infinite" loop in AccessibilityUIElementGtk.cpp
-        https://bugs.webkit.org/show_bug.cgi?id=96632
-
-        Reviewed by Carlos Garcia Campos.
-
-        Fix this by using atk_object_get_n_accessible_children instead of
-        calling getChildren() from childCount.
-
-        * WebKitTestRunner/InjectedBundle/gtk/AccessibilityUIElementGtk.cpp:
-        (WTR::AccessibilityUIElement::childrenCount): Avoid the infinite
-        loop by using atk_object_get_n_accessible_children().
-
-2012-09-13  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt][Win] Enable USE(3D_GRAPHICS)
-        https://bugs.webkit.org/show_bug.cgi?id=90879
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Enable it on Windows as well as on QNX (bug fixed).
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-09-13  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] The ANGLE build on Windows breaks with GnuWin32's flex because it is too old
-        https://bugs.webkit.org/show_bug.cgi?id=96359
-
-        Reviewed by Tor Arne Vestbø.
-
-        GnuWin32's flex is 2.5.4 and that is too old for ANGLE's preprocessor
-        lexer. The only viable alternative I could find on Windows that provides
-        binaries is the winflexbison distribution (http://sourceforge.net/projects/winflexbison/),
-        so let's use that one instead.
-
-        * Scripts/webkitdirs.pm:
-        (checkRequiredSystemConfig):
-        * qmake/mkspecs/features/default_pre.prf:
-
-2012-09-13  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Add configuration for production builds
-        https://bugs.webkit.org/show_bug.cgi?id=96607
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add configuration tweaks for production builds, to ease memory pressure with the GNU toolchain
-        and enable all-in-one-files optimizations.
-
-        * qmake/mkspecs/features/production_build.prf: Added.
-
-2012-09-13  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] GStreamer detection does not work when cross-compiling
-        https://bugs.webkit.org/show_bug.cgi?id=96608
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        When cross-compiling it is not safe to just use system(pkg-config),
-        because there is a high probability that it will find packages in the
-        host system instead of in the target one. Instead use qmake's new
-        packagesExist() function that takes care of this delicate aspect of
-        cross compilation by setting PKG_CONFIG_SYSROOT_DIR and
-        PKG_CONFIG_LIBDIR accordingly.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-09-13  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2][WTR] More efficient string handling in InjectedBundlePage
-        https://bugs.webkit.org/show_bug.cgi?id=96609
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Update StringBuilder usage in InjectedBundlePage to follow
-        the latest recommandations for efficient string handling:
-        http://trac.webkit.org/wiki/EfficientStrings
-
-        This involves using appendLiteral() or appendNumber()
-        instead of append() whenever possible.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::dumpPath):
-        (WTR::rangeToStr):
-        (WTR::styleDecToStr):
-        (WTR::frameToStr):
-        (WTR::dumpResourceURL):
-        (WTR):
-        (WTR::dumpFrameDescriptionSuitableForTestResult):
-        (WTR::dumpRequestDescriptionSuitableForTestResult):
-        (WTR::dumpResponseDescriptionSuitableForTestResult):
-        (WTR::dumpErrorDescriptionSuitableForTestResult):
-        (WTR::InjectedBundlePage::didReceiveIntentForFrame):
-        (WTR::InjectedBundlePage::registerIntentServiceForFrame):
-        (WTR::InjectedBundlePage::didStartProvisionalLoadForFrame):
-        (WTR::InjectedBundlePage::didReceiveServerRedirectForProvisionalLoadForFrame):
-        (WTR::InjectedBundlePage::didCommitLoadForFrame):
-        (WTR::InjectedBundlePage::didFinishProgress):
-        (WTR::dumpFrameScrollPosition):
-        (WTR::dumpFrameText):
-        (WTR::dumpDescendantFramesText):
-        (WTR::InjectedBundlePage::didFinishLoadForFrame):
-        (WTR::InjectedBundlePage::didReceiveTitleForFrame):
-        (WTR::InjectedBundlePage::didCancelClientRedirectForFrame):
-        (WTR::InjectedBundlePage::willPerformClientRedirectForFrame):
-        (WTR::InjectedBundlePage::didFinishDocumentLoadForFrame):
-        (WTR::InjectedBundlePage::didHandleOnloadEventsForFrame):
-        (WTR::InjectedBundlePage::willSendRequestForFrame):
-        (WTR::InjectedBundlePage::didReceiveResponseForResource):
-        (WTR::InjectedBundlePage::didFinishLoadForResource):
-        (WTR::InjectedBundlePage::didFailLoadForResource):
-        (WTR::InjectedBundlePage::shouldCacheResponse):
-        (WTR::InjectedBundlePage::decidePolicyForNavigationAction):
-        (WTR::InjectedBundlePage::willAddMessageToConsole):
-        (WTR::InjectedBundlePage::willSetStatusbarText):
-        (WTR::InjectedBundlePage::willRunJavaScriptAlert):
-        (WTR::InjectedBundlePage::willRunJavaScriptConfirm):
-        (WTR::InjectedBundlePage::willRunJavaScriptPrompt):
-        (WTR::InjectedBundlePage::didReachApplicationCacheOriginQuota):
-        (WTR::InjectedBundlePage::shouldBeginEditing):
-        (WTR::InjectedBundlePage::shouldEndEditing):
-        (WTR::InjectedBundlePage::shouldInsertNode):
-        (WTR::InjectedBundlePage::shouldInsertText):
-        (WTR::InjectedBundlePage::shouldDeleteRange):
-        (WTR::InjectedBundlePage::shouldChangeSelectedRange):
-        (WTR::InjectedBundlePage::shouldApplyStyle):
-        (WTR::InjectedBundlePage::didBeginEditing):
-        (WTR::InjectedBundlePage::didEndEditing):
-        (WTR::InjectedBundlePage::didChange):
-        (WTR::InjectedBundlePage::didChangeSelection):
-        (WTR::InjectedBundlePage::supportsFullScreen):
-        (WTR::InjectedBundlePage::enterFullScreenForElement):
-        (WTR::InjectedBundlePage::exitFullScreenForElement):
-        (WTR::InjectedBundlePage::beganEnterFullScreen):
-        (WTR::InjectedBundlePage::beganExitFullScreen):
-        (WTR::InjectedBundlePage::closeFullScreen):
-        (WTR::dumpBackForwardListItem):
-        (WTR::InjectedBundlePage::dumpBackForwardList):
-
-2012-09-13  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [Qt][WK2] Memory leaks in Qt's TestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=96603
-
-        Reviewed by Csaba Osztrogonác.
-
-        Fix memory leaks in Qt's TestRunner code by adopting WKString
-        created with WKStringCreateWithUTF8CString().
-
-        * WebKitTestRunner/qt/TestControllerQt.cpp:
-        (WTR::TestController::initializeInjectedBundlePath):
-        (WTR::TestController::initializeTestPluginDirectory):
-
-2012-09-13  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK][NRWT] Lower timeout value to 6 seconds (12 for debug configuration)
-        https://bugs.webkit.org/show_bug.cgi?id=96506
-
-        Reviewed by Dirk Pranke.
-
-        Lower the timeout value to 6 seconds for release configuration and 12 seconds
-        for debug configuration. These are the same values the Chromium port uses.
-
-        Currently the value is lowered only for the DumpRenderTree, WebKitTestRunner (and
-        the layout tests under WebKit2 generally) requires more attention and gardening
-        than what the current effort produces.
-
-        The unit test is updated as well to test these changes.
-
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort.default_timeout_ms):
-        * Scripts/webkitpy/layout_tests/port/gtk_unittest.py:
-        (GtkPortTest.test_default_timeout_ms):
-        (GtkPortTest.assertLinesEqual):
-
-2012-09-12  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Add SVN mirror handling feature to build.webkit.org
-        https://bugs.webkit.org/show_bug.cgi?id=85887
-
-        Reviewed by Dirk Pranke.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Add SVN mirrors for Qt buildslaves hosted in Szeged.
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (ConfigureBuild.__init__): Add SVNMirror property to be able to watch which slaves use which mirror on build.webkit.org.
-        (ConfigureBuild.start):
-        (CheckOutSource.__init__): Set baseURL to the SVNMirror or the default http://svn.webkit.org/repository/webkit/
-        (WaitForSVNServer): Add new buildstep for waiting the SVNMirror to be in sync with http://svn.webkit.org/repository/webkit/
-        (Factory.__init__):
-        (BuildFactory.__init__):
-        (TestFactory.__init__):
-        (BuildAndTestFactory.__init__):
-        (BuildAndPerfTestFactory.__init__):
-        (BuildAndPerfTestWebKit2Factory.__init__):
-        (DownloadAndPerfTestFactory.__init__):
-        (DownloadAndPerfTestWebKit2Factory.__init__):
-        (loadBuilderConfig): Use kwargs instead of args to be able to add the optional SVNMirror factory argument.
-        * BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py:
-        (SVNMirrorTest):
-        (SVNMirrorTest.setUp): Load config.json once at startup.
-        (SVNMirrorTest.get_SVNMirrorFromConfig): Get the SVNMirror from config.json for a given buildslave.
-        (SVNMirrorTest.test_CheckOutSource): Compare CheckOutSource.baseURL with SVNMirror in config.json for all builders
-        * BuildSlaveSupport/build.webkit.org-config/wait-for-SVN-server.py: Added.
-        (getLatestSVNRevision): Get the latest SVN revison from the given server.
-        (waitForSVNRevision): Wait until the given SVN revision is committed to the given server. It doesn't wait if the
-                              SVN revision is empty (force build triggered without revision) or the server is unavailable.
-
-2012-09-12  Kangil Han  <kangil.han@samsung.com>
-
-        [WK2][WTR] Set waitUntilDone watchdog timer value equal to WK1.
-        https://bugs.webkit.org/show_bug.cgi?id=81606
-
-        Reviewed by Tim Horton.
-
-        6 seconds is harsh for some jquery test cases.
-        Therefore, adjust the value to match DumpRenderTree.
-
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR):
-
-2012-09-12  KyungTae Kim  <ktf.kim@samsung.com>
-
-        [EFL] Support download attribute feature
-        https://bugs.webkit.org/show_bug.cgi?id=96462
-
-        Reviewed by Gyuyoung Kim.
-
-        Enable DOWNLOAD_ATTRIBUTE feature for EFL port,
-        and add "download,request" callback to the DumpRenderTree for EFL.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::createView):
-        (DumpRenderTreeChrome::onDownloadRequest):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.h:
-        (DumpRenderTreeChrome):
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-09-12  Stephanie Lewis  <slewis@apple.com>
-
-        Reduce parallism on the wk2 testers.
-        https://bugs.webkit.org/show_bug.cgi?id=95906
-
-        Reviewed by Dirk Pranke.
-
-        The wk2 testers on Mountain Lion are getting stuck and timing out.  The problem appears to be due to
-        resource contention.  Reducing the number of processes alleviates the issue.  
-
-        Starting by reducing 25%.
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.default_child_processes):
-
-2012-09-12  Brady Eidson  <beidson@apple.com>
-
-        Assert in NetscapePlugin::destroy() with async plugin init
-        <rdar://problem/12277595> and https://bugs.webkit.org/show_bug.cgi?id=96576
-
-        Reviewed by Anders Carlsson.
-
-        Expose NPN_Invoke to plug-in tests:
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-        (PluginTest::NPN_Invoke):
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.h:
-        (PluginTest):
-
-        Add a test that uses NPN_Invoke on the window object from inside NPP_New to remove the plug-in element:
-        * DumpRenderTree/TestNetscapePlugIn/Tests/InvokeDestroysPluginWithinNPP_New.cpp: Added.
-        (InvokeDestroysPluginWithinNPP_New):
-        (InvokeDestroysPluginWithinNPP_New::InvokeDestroysPluginWithinNPP_New):
-        (InvokeDestroysPluginWithinNPP_New::NPP_New):
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-
-2012-09-12  Dirk Pranke  <dpranke@chromium.org>
-
-        refactor TestExpectations tokenization slightly in preparation for the new syntax
-        https://bugs.webkit.org/show_bug.cgi?id=96564
-
-        Reviewed by Ojan Vafai.
-
-        This change changes how we will tokenize/lex the
-        TestExpectations files, in preparation for supporting both the
-        old syntax and the new one. This change by itself should be a
-        no-op.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectationParser._tokenize_line):
-        (TestExpectationParser):
-        (TestExpectationParser._tokenize_line_using_old_format):
-        (TestExpectationParser._tokenize_line_using_new_format):
-
-2012-09-12  Dirk Pranke  <dpranke@chromium.org>
-
-        remove unused testexpectations editing code from webkitpy, garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=96562
-
-        Reviewed by Adam Barth.
-
-        This code was prototyped but never fully realized. Removing
-        until it reanimates :).
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout_unittests.js:
-        * Scripts/webkitpy/layout_tests/controllers/test_expectations_editor.py: Removed.
-        * Scripts/webkitpy/layout_tests/controllers/test_expectations_editor_unittest.py: Removed.
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        (BuildCoverageExtrapolator.extrapolate_test_configurations):
-        (GardeningHTTPRequestHandler._run_webkit_patch):
-        (GardeningHTTPRequestHandler.ping):
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-        (BuildCoverageExtrapolatorTest.test_extrapolate):
-        (GardeningServerTest.test_rebaseline_new_port):
-
-2012-09-12  Lucas Forschler  <lforschler@apple.com>
-
-        Remove unused bot, apple-xserve-1.
-        https://bugs.webkit.org/show_bug.cgi?id=96570
-        
-        Reviewed by Stephanie Lewis.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-09-12  Xan Lopez  <xlopez@igalia.com>
-
-        [GTK] We attempt to rebase documentation even if it's not present
-        https://bugs.webkit.org/show_bug.cgi?id=96553
-
-        Reviewed by Martin Robinson.
-
-        Do not make the documentation rebase step fatal. This allows make
-        install to succeed when there's no documentation generated.
-
-        * gtk/generate-gtkdoc:
-
-2012-09-12  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        Respect WEBKITOUTPUTDIR when running EFL tests
-        https://bugs.webkit.org/show_bug.cgi?id=96528
-
-        Reviewed by Dirk Pranke.
-
-        Expose user set WEBKITOUTPUTDIR to the web process.
-
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver._start): Add WEBKITOUTPUTDIR to the environment
-        of the web process and its potential jhbuild wrapper.
-
-2012-09-12  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitdirs: fix uname version handling for cygwin
-        https://bugs.webkit.org/show_bug.cgi?id=96436
-
-        Reviewed by Jon Honeycutt.
-
-        Newer versions of cygwin embed an additional version string
-        inside parentheses, so you get "1.7.16(0.249/5/3)" instead of "1.7.16".
-        Update the code to handle that.
-
-        * Scripts/webkitdirs.pm:
-        (setupAppleWinEnv):
-
-2012-09-12  Christophe Dumez  <christophe.dumez@intel.com>
-
-        Regression(r128338): Broke Windows build
-        https://bugs.webkit.org/show_bug.cgi?id=96537
-
-        Unreviewed build fix.
-
-        Fix Apple-Win build by allocating array dynamically
-        since its size is not constant.
-
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::stringArrayToJS):
-
-2012-09-12  Alex Sakhartchouk  <alexst@chromium.org>
-
-        [chromium] Add a virtual test suite for fast/hidpi
-        https://bugs.webkit.org/show_bug.cgi?id=90192
-
-        Reviewed by Dirk Pranke.
-
-        Add a virtual test suite to make sure the pixel tests in fast/hidpi give the same result
-        on the hardware accelerated path as the software path.
-
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::applyTo):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.virtual_test_suites):
-
-2012-09-12  Adam Klein  <adamk@chromium.org>
-
-        [chromium] Add content_browsertests to the flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=96535
-
-        Reviewed by Ojan Vafai.
-
-        * TestResultServer/static-dashboards/dashboard_base.js:
-
-2012-09-12  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2][WKTR] TestRunner needs to implement originsWithApplicationCache
-        https://bugs.webkit.org/show_bug.cgi?id=96496
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add implementation for originsWithApplicationCache to
-        WebKitTestRunner.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::stringArrayToJS):
-        (WTR):
-        (WTR::TestRunner::originsWithApplicationCache):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-
-2012-09-12  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Fix Qt/Windows build with Python3
-        https://bugs.webkit.org/show_bug.cgi?id=96473
-
-        Reviewed by Csaba Osztrogonác.
-
-        In Python 3 print is a real function, so we must use parentheses around
-        the function parameters. This is backwards compatible with Python 2.
-
-        * Scripts/generate-win32-export-forwards:
-
-2012-09-12  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Unreviewed trivial build fix for Qt/Windows after bug #96358.
-
-        As pointed out by Kevin, we should inject the "set PATH=..." statement
-        to add the GnuWin32 directory only if that directory actually exists.
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2012-09-12  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] [WK2] Memory leaks in TestControllerEfl
-        https://bugs.webkit.org/show_bug.cgi?id=96525
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Fix memory leaks in EFL's TestRunner code by adopting an allocation
-        of WKString created with WKStringCreateWithUTF8CString().
-
-        * WebKitTestRunner/efl/TestControllerEfl.cpp:
-        (WTR::TestController::initializeInjectedBundlePath):
-        (WTR::TestController::initializeTestPluginDirectory):
-
-2012-09-12  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2][WKTR] TestRunner needs to implement dumpApplicationCacheDelegateCallbacks
-        https://bugs.webkit.org/show_bug.cgi?id=96374
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Implement support for dumpApplicationCacheDelegateCallbacks
-        and disallowIncreaseForApplicationCacheQuota in
-        WebKitTestRunner and properly dump the information
-        expected by the tests.
-
-        If the application cache quota is reached for a given
-        security origin, WebKitTestRunner will reset the quota
-        to its default value, unless intructed not to via
-        disallowIncreaseForApplicationCacheQuota().
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        (WTR::InjectedBundlePage::didReachApplicationCacheOriginQuota):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-        (InjectedBundlePage):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::TestRunner):
-        (WTR::TestRunner::disallowIncreaseForApplicationCacheQuota):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (WTR::TestRunner::dumpApplicationCacheDelegateCallbacks):
-        (TestRunner):
-        (WTR::TestRunner::shouldDisallowIncreaseForApplicationCacheQuota):
-        (WTR::TestRunner::shouldDumpApplicationCacheDelegateCallbacks):
-
-2012-09-12  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] remove deprecated and unused sets import from chromium_android driver
-        https://bugs.webkit.org/show_bug.cgi?id=96485
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-
-2012-09-12  Zan Dobersek  <zandobersek@gmail.com>
-
-        Flakiness dashboard doesn't recognize new Chromium Android test builder
-        https://bugs.webkit.org/show_bug.cgi?id=96523
-
-        Reviewed by Ojan Vafai.
-
-        Properly return 'ANDROID' as the Chromium platform for Android builders.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (chromiumPlatform):
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-        (test):
-
-2012-09-12  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Build on Windows requires bison/flex in PATH
-        https://bugs.webkit.org/show_bug.cgi?id=96358
-
-        Reviewed by Tor Arne Vestbø.
-
-        The build requires flex, bison, etc. and they need to be in the PATH when building. On Mac OS X
-        and Linux that is rarely a problem given how easily available the tools are. On Windows however
-        a separate installation of various GNU tools is required as the operating system doesn't come with
-        them. To make the development more convenient, Qt 5 provides a copy of the most essential tools in
-        the gnuwin32 directory of the qt5.git top-level repository.
-
-        This patch tries to detect the presence of those tools and prepends them to the PATH if found.
-
-        This is required in preparation for the elimination of qt5/qtwebkit.pri, which currently expands
-        PATH before calling build-webkit. It it also required for the upcoming introduction of win_flex
-        as dependency over flex, which can be done with less hassle when qt5's gnuwin32 directory has been
-        updated with the new tool.
-
-        * Scripts/webkitdirs.pm:
-        (checkRequiredSystemConfig):
-        * qmake/mkspecs/features/default_post.prf:
-
-2012-09-12  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Update build-jsc after r128174
-
-        Reviewed by Ossy.
-
-        * Scripts/build-jsc:
-
-2012-09-12  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Teach addStrictSubdirOrderBetween to handle more than two targets
-
-        By hard-coding the names of the targets we defined we ended up just
-        redefining the previous target when using addStrictSubdirOrderBetween
-        more than once in a single project file.
-
-        We now embed the two base targets into the target names.
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/functions.prf:
-
-2012-09-12  Philippe Liard  <pliard@google.com>
-
-        Depend on {base,net} GYP targets rather than {base,net}_java.
-        https://bugs.webkit.org/show_bug.cgi?id=95690
-
-        Reviewed by Adam Barth.
-
-        {base,net}_java became 'private' targets on the Chromium side that
-        clients should not depend on (see
-        https://chromiumcodereview.appspot.com/10913083/).
-        This removes a bunch of trailing white spaces additionally in
-        TestWebkitAPI.gyp (which includes non-trailing white space changes).
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * TestWebKitAPI/TestWebKitAPI.gyp/TestWebKitAPI.gyp:
-
-2012-09-12  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Fix the build with ENABLE_NETSCAPE_PLUGIN_API=0
-        https://bugs.webkit.org/show_bug.cgi?id=96494
-
-        Reviewed by Tor Arne Vestbø.
-
-        WK2's ENABLE_PLUGIN_PROCESS uses the NPAPI functions unconditionally, so disable the
-        plugin process feature if we don't have NPAPI.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-09-12  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r128280.
-        http://trac.webkit.org/changeset/128280
-        https://bugs.webkit.org/show_bug.cgi?id=96498
-
-        it broke compilation on windows debug bot (Requested by loislo
-        on #webkit).
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-        (InjectedBundlePage):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::TestRunner):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-
-2012-09-12  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Make it possible to build with "make release" and "make debug" on Windows
-        https://bugs.webkit.org/show_bug.cgi?id=96488
-
-        Reviewed by Tor Arne Vestbø.
-
-        A "make debug" is passed through recursively and currently it aborts at Makefile.DerivedSources
-        because there are no such targets. We want the generated sources to be independent from release
-        or debug build configurations, so it is sufficient to provide fake debug and release targets that
-        redirect to the same general-purpose target (first) of creating the derived sources.
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2012-09-12  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        [EFL] Make DumpRenderTree smarter at finding the fonts
-        http://webkit.org/b/96281
-
-        Reviewed by Gyuyoung Kim.
-
-        Respect WEBKITOUTPUTDIR and expand the font dir from it.
-        Use CString consistently.
-
-        * DumpRenderTree/efl/FontManagement.cpp:
-        (buildPath):
-        (getCoreFontFiles):
-        (addFontDirectory):
-        (addFontFiles):
-        (getCustomBuildDir):
-        (getPlatformFontsPath):
-        (addFontsToEnvironment):
-
-2012-09-12  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2][WKTR] TestRunner needs to implement dumpApplicationCacheDelegateCallbacks
-        https://bugs.webkit.org/show_bug.cgi?id=96374
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Implement support for dumpApplicationCacheDelegateCallbacks
-        and disallowIncreaseForApplicationCacheQuota in
-        WebKitTestRunner and properly dump the information
-        expected by the tests.
-
-        If the application cache quota is reached for a given
-        security origin, WebKitTestRunner will reset the quota
-        to its default value, unless intructed not to via
-        disallowIncreaseForApplicationCacheQuota().
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        (WTR::InjectedBundlePage::didReachApplicationCacheOriginQuota):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-        (InjectedBundlePage):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::TestRunner):
-        (WTR::TestRunner::disallowIncreaseForApplicationCacheQuota):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (WTR::TestRunner::dumpApplicationCacheDelegateCallbacks):
-        (TestRunner):
-        (WTR::TestRunner::shouldDisallowIncreaseForApplicationCacheQuota):
-        (WTR::TestRunner::shouldDumpApplicationCacheDelegateCallbacks):
-
-2012-09-12  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [WK2] [WTR] WebKitTestRunner needs TestRunner.workerThreadCount
-        https://bugs.webkit.org/show_bug.cgi?id=96388
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Exported TestRunner.workerThreadCount as readonly attribute.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp: Added workerThreadCount() method implementation.
-        (WTR::TestRunner::workerThreadCount): Returns count of worker threads.
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h: Added workerThreadCount() method. 
-        (TestRunner):
-
-2012-09-12  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] Consume a user gesture when creating a new view.
-        https://bugs.webkit.org/show_bug.cgi?id=96373
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createView):
-
-2012-09-12  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [WK2][WTR] Some of TestRunner special options are not reset before testing
-        https://bugs.webkit.org/show_bug.cgi?id=96384
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Now values of the following special options are reset:
-        void setAcceptsEditing(in boolean value);
-        void setCloseRemainingWindowsWhenComplete(in boolean value);
-        void setXSSAuditorEnabled(in boolean value);
-        void setAllowFileAccessFromFileURLs(in boolean value);
-        void setPluginsEnabled(in boolean value);
-        void setPopupBlockingEnabled(in boolean value);
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-
-2012-09-11  Ryuan Choi  <ryuan.choi@samsung.com>
-
-        [CMAKE] Supply feature defines to CodeGeneratorTestRunner.
-        https://bugs.webkit.org/show_bug.cgi?id=96273
-
-        Reviewed by Gyuyoung Kim.
-
-        Passed FEATURE_DEFINES_WITH_SPACE_SEPARATOR to CodeGeneratorTestRunner
-        in order to distinguish compile time options such as ENABLE(TOUCH_EVENTS).
-
-        * WebKitTestRunner/CMakeLists.txt:
-
-2012-09-11  Dirk Pranke  <dpranke@chromium.org>
-
-        [chromium] rename webkit_resources
-        https://bugs.webkit.org/show_bug.cgi?id=95874
-
-        Reviewed by James Robinson.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-09-11  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] don't include content shell builders in the garden-o-matic view
-        https://bugs.webkit.org/show_bug.cgi?id=96418
-
-        Reviewed by James Robinson.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-
-2012-09-11  Adam Klein  <adamk@chromium.org>
-
-        Garden-o-matic should ignore a wider variety of warnings in buildbot json
-        https://bugs.webkit.org/show_bug.cgi?id=96411
-
-        Reviewed by Adam Barth.
-
-        Previously only the exact string "warning" was treated as a warning
-        result. This patch treats any string with "warning" as a substring
-        as a warning (e.g., "warnings", as seen on the cr-win buildbots).
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders.js:
-        (.):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders_unittests.js:
-
-2012-09-11  Marcelo Lira  <marcelo.lira@openbossa.org>
-
-        Restore original value of mock scrollbars enabled in InternalSettings
-        https://bugs.webkit.org/show_bug.cgi?id=87680
-
-        Reviewed by Adam Barth.
-
-        Added backup support for mock scrollbars state in
-        InternalSettings::Backup, and removed support for these
-        from Qt's DumpRenderTree.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::resetSettings):
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        (TestRunner::setFrameFlatteningEnabled):
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunner):
-
-2012-09-11  Dan Bernstein  <mitz@apple.com>
-
-        Fixed a bug where kill-old-processes failed to kill clang++.
-
-        Rubber-stamped by Alexey Proskuryakov.
-
-        * BuildSlaveSupport/kill-old-processes: Escape the + signs in "clang++"
-        where it is passed as a regular expression to killall.
-
-2012-09-11  Philippe Liard  <pliard@google.com>
-
-        Make sure that md5sum is not setup on non-Chromium Android platforms.
-        https://bugs.webkit.org/show_bug.cgi?id=96393
-
-        Reviewed by Adam Barth.
-
-        Previously md5sum was setup in ChromiumAndroidDriver's constructor
-        which is also invoked on non-Chromium Android platforms. The following patch
-        moves this logic to _startup_test() which is guaranteed to be invoked
-        only on Android.
-
-        This also updates the prompt unit test in chromium_android_unittest.py.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidDriver.__init__):
-        (ChromiumAndroidDriver._setup_md5sum_and_push_data_if_needed):
-        (ChromiumAndroidDriver._setup_test):
-
-2012-09-11  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        [EFL] Rewrite the EFL-related Find modules
-        https://bugs.webkit.org/show_bug.cgi?id=95237
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * DumpRenderTree/efl/CMakeLists.txt: Stop setting the LINK_FLAGS
-        property and include all the Enlightenment Foundation Libraries
-        required by the target.
-        * EWebLauncher/CMakeLists.txt: Ditto.
-        * MiniBrowser/efl/CMakeLists.txt: Ditto.
-        * TestWebKitAPI/PlatformEfl.cmake: Add missing include directories
-        now that they are not added implicitly.
-        * WebKitTestRunner/CMakeLists.txt: Stop setting the LINK_FLAGS
-        property.
-        * WebKitTestRunner/PlatformEfl.cmake: Stop setting the LINK_FLAGS
-        property and include all the Enlightenment Foundation Libraries
-        required by the target.
-
-2012-09-11  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2][WKTR] TestRunner needs to implement setApplicationCacheOriginQuota
-        https://bugs.webkit.org/show_bug.cgi?id=96379
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add implementation for setApplicationCacheOriginQuota
-        to WebKitTestRunner.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::setApplicationCacheOriginQuota):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-
-2012-09-11  Luciano Wolf  <luciano.wolf@openbossa.org>
-
-        [Qt] [WK2] editing/inserting/typing-tab-designmode tests are failing
-        https://bugs.webkit.org/show_bug.cgi?id=91988
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Regular key events generated by Qt for the tab key fill both
-        keyCode and keyText, so we should do the same for our fake events.
-
-        * WebKitTestRunner/qt/EventSenderProxyQt.cpp:
-        (WTR::EventSenderProxy::keyDown):
-
-2012-09-11  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [WK2][WTR] WebKitTestRunner needs testRunner.setSpatialNavigationEnabled
-        https://bugs.webkit.org/show_bug.cgi?id=96269
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Exported missing testRunner.setSpatialNavigationEnabled() method.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::setSpatialNavigationEnabled):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-
-2012-09-11  Philippe Liard  <pliard@chromium.org>
-
-        Support LayoutTests on non-rooted devices for Chromium Android.
-        https://bugs.webkit.org/show_bug.cgi?id=95346
-
-        Reviewed by Dirk Pranke.
-
-        We were requiring root permissions to sync resource files with the
-        device by comparing host and device files' timestamp after we
-        synchronized the device and host clocks.
-        We now rely on md5sum provided by Chromium to handle data files
-        synchronization.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort._check_driver_build_up_to_date):
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidDriver.__init__):
-        (ChromiumAndroidDriver._setup_test):
-        (ChromiumAndroidDriver._push_executable):
-        (ChromiumAndroidDriver._push_test_resources):
-        (ChromiumAndroidDriver._read_prompt):
-
-2012-09-11  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Fix output paths on Windows
-
-        Reviewed by Tor Arne Vestbø.
-
-        BUILD_ROOT_RELATIVE_TO_OUT_PWD was calculated incorrectly Windows, resulting in an incorrect
-        DESTDIR transformation at the end of default_post.prf. The calculation should be baased no qmake
-        paths, which can use drive letters but always use forward slashes. So the use of QMAKE_DIR_SEP is
-        incorrect here and instead for the calculation we should use forward slashes.
-
-        * qmake/mkspecs/features/default_pre.prf:
-
-2012-09-11  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Fix passing of defines from the build system
-
-        We explicitly have to pass -DENABLE_FOO=0 for every single feature
-        that's not explicitly enabled in WEBKIT_CONFIG, since Platform.h
-        will add it's own defaults if the features are not defined.
-
-        At some point we might want to run a configure-test to inspect what
-        Platform.h will do, so we can sync up the build system's view of
-        the feature-defines with the compile-time situation.
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/functions.prf:
-
-2012-09-11  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Fix --qt option to build-webkit
-
-        Reviewed by Ossy.
-
-        * Scripts/webkitdirs.pm:
-        (buildQMakeProjects):
-
-2012-09-11  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Add a configure step to the Qt build system
-
-        This allows building the Qt port using just 'qmake WebKit.pro'. Using
-        the build-webkit script is still supported, and will add slightly more
-        logic to the build, such as detecting the need for clean or incremental
-        builds.
-
-        Internally, the build system now uses a new variable, WEBKIT_CONFIG, for
-        all things related to configuring the build, such as use/have/enable flags,
-        and these are translated to defines in default_post. Project files should
-        no longer check contains(DEFINES,...) to detect features, but use the new
-        enable?(), use?(), and have?() functions. The no_webkit1 and no_webkit2
-        options have been translated into WEBKIT_CONFIG options as well, and can
-        be checked using build?().
-
-        Reviewed by Simon Hausmann.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * QtTestBrowser/QtTestBrowser.pro:
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-        (qtFeatureDefaults):
-        (buildQMakeProjects):
-        * Tools.pro:
-        * WebKitTestRunner/InjectedBundle/DerivedSources.pri:
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-        * WebKitTestRunner/Target.pri:
-        * qmake/.qmake.cache: Added.
-        * qmake/configure.pri: Removed.
-        * qmake/configure.pro: Removed.
-        * qmake/dump-features: Added.
-        * qmake/mkspecs/features/configure.prf: Added.
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/default_pre.prf:
-        * qmake/mkspecs/features/features.prf:
-        * qmake/mkspecs/features/features.pri:
-        * qmake/mkspecs/features/functions.prf:
-        * qmake/mkspecs/features/gprof.prf:
-        * qmake/mkspecs/features/mac/default_pre.prf:
-        * qmake/mkspecs/features/win32/default_pre.prf:
-
-2012-09-11  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2][WKTR] TestRunner needs to implement clearApplicationCacheForOrigin
-        https://bugs.webkit.org/show_bug.cgi?id=96372
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Implement clearApplicationCacheForOrigin() in WebKitTestRunner.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::clearApplicationCacheForOrigin):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-
-2012-09-11  Peter Beverloo  <peter@chromium.org>
-
-        Don't ignore .pak files when making an archive for Android
-        https://bugs.webkit.org/show_bug.cgi?id=96375
-
-        Reviewed by Jochen Eisinger.
-
-        The .pak files do need to be pushed to the device, which is currently
-        preventing the layout test runner from correctly pushing all files.
-
-        * BuildSlaveSupport/built-product-archive:
-        (archiveBuiltProduct):
-
-2012-09-11  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [WK2][WTR] WebKitTestRunner needs layoutTestController.setMinimumTimerInterval
-        https://bugs.webkit.org/show_bug.cgi?id=96256
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Exported TestRunner::setMinimumTimerInterval() method.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::setMinimumTimerInterval):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-
-2012-09-11  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: add RTCPeerConnection::onnegotiationneeded
-        https://bugs.webkit.org/show_bug.cgi?id=96097
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (MockWebRTCPeerConnectionHandler::addStream):
-        (MockWebRTCPeerConnectionHandler::removeStream):
-
-2012-09-11  Peter Beverloo  <peter@chromium.org>
-
-        Recognize the "--chromium-android" argument in run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=96369
-
-        Reviewed by Jochen Eisinger.
-
-        Chromium for the Android platform cannot determine the platform based on
-        the host itself, so we'll use the --chromium-android argument as the build
-        master passes to run-webkit-tests. Make sure the layout test runner
-        can pick the right port when doing so.
-
-        * Scripts/run-webkit-tests:
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        (port_options):
-
-2012-09-11  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [QT] Fix build with newer qmake from Qt 5
-
-        Rubber-stamped by Tor Arne Vestbø.
-
-        Support for "qmake -query QMAKE_MKSPECS" was removed from qmake. Replace
-        it with the use of QT_HOST_DATA/mkspecs.
-        Based on patch by Oswald Buddenhagen <oswald.buddenhagen@nokia.com>.
-
-        * Scripts/webkitdirs.pm:
-        (builtDylibPathForName):
-        (qtMakeCommand):
-
-2012-09-11  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Remove Qt 4 syncqt, no longer needed
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/syncqt-4.8: Removed.
-
-2012-09-11  Andras Becsi  <andras.becsi@nokia.com>
-
-        [Qt][WK2] Fix the build with recent Qt5
-        https://bugs.webkit.org/show_bug.cgi?id=96283
-
-        Reviewed by Simon Hausmann.
-
-        We should not use deprecated Qt API because doing that results
-        in build failure since all the deprecated API was disabled
-        in qtbase (https://codereview.qt-project.org/#change,24890).
-
-        * DumpRenderTree/qt/main.cpp:
-        (main):
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::notify):
-        * MiniBrowser/qt/raw/View.cpp:
-        (View::exposeEvent):
-        (main):
-
-2012-09-11  Christophe Dumez  <christophe.dumez@intel.com>
-
-        WTR needs an implementation of applicationCacheDiskUsageForOrigin
-        https://bugs.webkit.org/show_bug.cgi?id=87188
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add implementation for applicationCacheDiskUsageForOrigin()
-        in WebKitTestRunner.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::applicationCacheDiskUsageForOrigin):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-
-2012-09-10  Joanmarie Diggs  <jdiggs@igalia.com>
-
-        Properly expose <legend> elements to ATs
-        https://bugs.webkit.org/show_bug.cgi?id=84137
-
-        Reviewed by Chris Fleizach.
-
-        Created a new WebCore Accessibility Role, LegendRole. Used it to map to
-        the expected platform role, ATK_ROLE_LABEL. Also established the needed
-        AtkRelation pair, label-for/labelled-by between the legend and fieldset.
-
-        * DumpRenderTree/chromium/TestRunner/AccessibilityUIElementChromium.cpp:
-        (roleToString): added "Legend" string for WebAccessibilityRoleLegend
-
-2012-09-10  Jer Noble  <jer.noble@apple.com>
-
-        Unreviewed; rolling out r128081.
-        http://trac.webkit.org/changeset/128081
-        https://bugs.webkit.org/show_bug.cgi?id=96134
-
-        New test http/tests/media/video-donottrack.html fails to run on Apple test bots.
-
-        * DumpRenderTree/TestRunner.cpp:
-        (TestRunner::TestRunner):
-        (TestRunner::staticFunctions):
-        * DumpRenderTree/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-        (InjectedBundlePage):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::TestRunner):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-
-2012-09-10  Christophe Dumez  <christophe.dumez@intel.com>
-
-        TestExpectationsChecker._determine_port_from_expectations_path() does not support cascaded TestExpectations
-        https://bugs.webkit.org/show_bug.cgi?id=96205
-
-        Reviewed by Tony Chang.
-
-        _determine_port_from_expectations_path() was calling port.path_to_test_expectations_file()
-        internally, which means that it would support only 1 TestExpectations file per port. This
-        is an issue for ports such as EFL that support cascased TestExpectations (efl-wk2 -> efl
-        and efl-wk1 -> efl).
-
-        This patch makes _determine_port_from_expectations_path() call port.expectations_files()
-        instead so that all the ports TestExpectations are recognized. The ports are also
-        constructed twice, with "webkit_test_runner" option set to True and False so that we
-        retrieve the TestExpectations paths for both WebKit1 and WebKit2.
-
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-        (TestExpectationsChecker._determine_port_from_expectations_path):
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py: Add corresponding unit test.
-        (TestExpectationsTestCase.test_determine_port_from_expectations_path):
-
-2012-09-10  Ryuan Choi  <ryuan.choi@samsung.com>
-
-        [WTR] Generated source files should include config.h
-        https://bugs.webkit.org/show_bug.cgi?id=96254
-
-        Reviewed by Benjamin Poulain.
-
-        Current coding style has encouraged to include config.h at the first position,
-        But derived sources, generated by CodeGeneratorTestRunner.pm, don't follow
-        this rule.
-        Therefore, this patch added it.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/CodeGeneratorTestRunner.pm:
-        (_generateImplementationFile):
-
-2012-09-10  Rick Byers  <rbyers@chromium.org>
-
-        Add handling of new GestureTapCancel in DRT
-        
-        https://bugs.webkit.org/show_bug.cgi?id=96183
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/TestWebPlugin.cpp:
-        (TestWebPlugin::handleInputEvent):
-
-2012-09-10  Brady Eidson  <beidson@apple.com>
-
-        Javascript in foreground tabs should not wait synchronously for plug-ins to load
-        <rdar://problem/12067415> and https://bugs.webkit.org/show_bug.cgi?id=96167
-
-        Reviewed by Geoff Garen.
-
-        Enhance the "Slow NPP_New" plug-in to also be able to return properties to javascript.
-
-        * DumpRenderTree/TestNetscapePlugIn/Tests/SlowNPPNew.cpp:
-        (PluginObject):
-        (SlowNPPNew::PluginObject::PluginObject):
-        (SlowNPPNew::PluginObject::~PluginObject):
-        (SlowNPPNew::PluginObject::hasProperty):
-        (SlowNPPNew::PluginObject::getProperty):
-        (SlowNPPNew::NPP_GetValue):
-        (SlowNPPNew):
-
-2012-09-10  Tim Horton  <timothy_horton@apple.com>
-
-        WKTR often reports an unresponsive WebProcess on Mac bots
-        https://bugs.webkit.org/show_bug.cgi?id=95906
-
-        Reviewed by Dan Bernstein.
-
-        Attempt to work around resource contention issues by increasing the NRWT
-        timeout when running against WKTR, as well as WKTR's own WebProcess timeout.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.default_timeout_ms): Default timeout when using WKTR -> 80 seconds.
-        * WebKitTestRunner/TestController.cpp:
-        (WTR): LongTimeout (used when waiting for WebProcess to finish) -> 60 seconds.
-
-2012-09-07  Jer Noble  <jer.noble@apple.com>
-
-        <audio> and <video> should send Do Not Track when appropriate
-        https://bugs.webkit.org/show_bug.cgi?id=96134
-
-        Reviewed by Eric Carlson.
-
-        Add a testRunner JS API for calling setShouldSendDoNotTrackHTTPHeader to DRT and 
-        WTR. Add FrameLoaderClient client methods for retrieving that value.
-
-        * DumpRenderTree/TestRunner.cpp:
-        (setShouldSendDoNotTrackHTTPHeaderCallback): Pass through to the TestRunner.
-        (TestRunner::staticFunctions): Add the setShouldSendDoNotTrackHTTPHeader function.
-        * DumpRenderTree/TestRunner.h:
-        (TestRunner::setShouldSendDoNotTrackHTTPHeader): Simple setter.
-        (TestRunner::shouldSendDoNotTrackHTTPHeader): Simple getter.
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate webViewShouldSendDoNotTrackHTTPHeader:]): 
-            Pass the question on to the TestRunner.
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-            Add the setShouldSendDoNotTrackHTTPHeader client function.
-        (WTR::InjectedBundlePage::shouldSendDoNotTrackHTTPHeader):
-            Pass the question on to the TestRunner.
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (WTR::TestRunner::shouldSendDoNotTrackHTTPHeader): Simple getter.
-        (WTR::TestRunner::setShouldSendDoNotTrackHTTPHeader): Simple Setter.
-
-2012-09-10  Ojan Vafai  <ojan@chromium.org>
-
-        Make EFL bots work on the flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=96164
-
-        Reviewed by Tony Chang.
-
-        Also, update outdated unittests that had started failing.
-
-        * TestResultServer/static-dashboards/builders.js:
-        (isWebkitTestRunner):
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (nonChromiumPlatform):
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-        (test):
-
-2012-09-10  Tommy Widenflycht  <tommyw@google.com>
-
-        [chromium] MediaStream API: Remove the Descriptor postfix
-        https://bugs.webkit.org/show_bug.cgi?id=96268
-
-        Reviewed by Adam Barth.
-
-        After consideration I realized that there is no need whatsoever in using the Descriptor prefix
-        in the WekKit embedder API. Removed from WebRTCSessionDescription and WebRTCICECandidate to start with.
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (RTCSessionDescriptionRequestSuccededTask::RTCSessionDescriptionRequestSuccededTask):
-        (MockWebRTCPeerConnectionHandler::createOffer):
-        (MockWebRTCPeerConnectionHandler::createAnswer):
-        (MockWebRTCPeerConnectionHandler::setLocalDescription):
-        (MockWebRTCPeerConnectionHandler::setRemoteDescription):
-        (MockWebRTCPeerConnectionHandler::localDescription):
-        (MockWebRTCPeerConnectionHandler::remoteDescription):
-        (MockWebRTCPeerConnectionHandler::addICECandidate):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.h:
-        (MockWebRTCPeerConnectionHandler):
-
-2012-09-10  Arnaud Renevier  <a.renevier@sisa.samsung.com>
-
-        [Gtk] failure to build jhbuild dependencies with cups 1.6
-        https://bugs.webkit.org/show_bug.cgi?id=95991
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Bump gtk+ and gnome-themes-standard dependencies to 3.4.2 to allow
-        building with cups >= 1.6 [GNOME #670373].
-
-        * gtk/jhbuild.modules:
-
-2012-09-10  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][DRT] Encoding issue in printed console messages
-        https://bugs.webkit.org/show_bug.cgi?id=96263
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Correctly handle CONSOLE messages that contain non-ascii
-        characters in EFL's DRT. We need to use String::fromUTF8()
-        to construct a WTF::String from a raw string.
-
-        * DumpRenderTree/efl/DumpRenderTreeView.cpp:
-        (onConsoleMessage):
-
-2012-09-10  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [WK2][WTR] User style sheet location should be reset before each test
-        https://bugs.webkit.org/show_bug.cgi?id=96262
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        User style sheet location is reset before each test now.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting):
-
-2012-09-10  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Fix build of WTR with Qt on Windows
-        https://bugs.webkit.org/show_bug.cgi?id=96249
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Windows loves to define min and max as macros, which beautifully
-        clashes in many places where min and max are used as variable or method
-        names. It can be convinced not to do this when min and max are already
-        define as macros (expanding to themselves). We have this kind of
-        workaround in config.h files all over WebKit and as it turns out when
-        building WTR with Qt on Windows we do end up with such a clash. Therefore
-        we need the same workaround.
-
-        * WebKitTestRunner/config.h:
-
-2012-09-10  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2] New fast/forms/number/number-interactive-validation-required.html fails
-        https://bugs.webkit.org/show_bug.cgi?id=95936
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Enable interactive form validation setting in WebKitTestRunner as
-        we are currently doing in DumpRenderTree. This is needed for some
-        tests to pass.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-
-2012-09-09  Zan Dobersek  <zandobersek@gmail.com>
-
-        Clean up the code in XvfbDriver
-        https://bugs.webkit.org/show_bug.cgi?id=96202
-
-        Reviewed by Philippe Normand.
-
-        Changes:
-        - Remove unneeded imports,
-        - assign the _lock_file member variable when the display number is determined,
-        - no need for parentheses around a single string format argument,
-        - use FileSystem.exists method when checking if lock file is present as it
-        makes the intention much more clearer.
-
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver.py:
-        (XvfbDriver._start):
-        (XvfbDriver.stop):
-
-2012-09-09  Patrick Gansterer  <paroga@webkit.org>
-
-        Make the String initialization on the function side of String::number()
-        https://bugs.webkit.org/show_bug.cgi?id=95940
-
-        Reviewed by Benjamin Poulain.
-
-        * TestWebKitAPI/Tests/WTF/IntegerToStringConversion.cpp:
-        (testBoundaries):
-        (testNumbers):
-
-2012-09-09  Pierre Rossi  <pierre.rossi@gmail.com>
-
-        [WK2] expose element rect for color input type
-        https://bugs.webkit.org/show_bug.cgi?id=91664
-
-        Reviewed by Simon Hausmann.
-
-        Update the QML logic in MiniBrowser to take advantage of this.
-        The picker size is now hardcoded and we try to place it below the
-        input element if possible.
-
-        * MiniBrowser/qt/qml/ColorChooser.qml:
-
-2012-09-08  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2] New fast/events/tab-focus-link-in-canvas fails from r126908
-        https://bugs.webkit.org/show_bug.cgi?id=95329
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Explicitely disable TabToLinks setting in WebKitTestRunner.
-        Tests override the "WebKitTabToLinksPreferenceKey" preference
-        to enable it.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues):
-
-2012-09-08  Kenichi Ishibashi  <bashi@chromium.org>
-
-        webkit.py gdb pretty printer can't print CString
-        https://bugs.webkit.org/show_bug.cgi?id=96068
-
-        Reviewed by Tony Chang.
-
-        Update WTFCStringPrinter to follow r126191.
-
-        * gdb/webkit.py:
-        (WTFCStringPrinter.to_string):
-
-2012-09-07  Benjamin Poulain  <bpoulain@apple.com>
-
-        Rename the ustring() accessor to string()
-        https://bugs.webkit.org/show_bug.cgi?id=95919
-
-        Reviewed by Geoffrey Garen.
-
-        Update EFL's DRT.
-
-        Fix some string conversion that have been made useless
-        with recent changes.
-
-        * DumpRenderTree/efl/EventSender.cpp:
-        (keyPadNameFromJSValue):
-        (keyNameFromJSValue):
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        (TestRunner::queueLoad):
-        (TestRunner::addOriginAccessWhitelistEntry):
-        (TestRunner::removeOriginAccessWhitelistEntry):
-        (TestRunner::setUserStyleSheetLocation):
-        (TestRunner::setValueForUser):
-        (TestRunner::elementDoesAutoCompleteForElementWithId):
-        (TestRunner::execCommand):
-        (TestRunner::findString):
-        (TestRunner::isCommandEnabled):
-        (TestRunner::clearApplicationCacheForOrigin):
-        (TestRunner::setDomainRelaxationForbiddenForURLScheme):
-        (TestRunner::pauseAnimationAtTimeOnElementWithId):
-        (TestRunner::pauseTransitionAtTimeOnElementWithId):
-        (toInt):
-        (TestRunner::overridePreference):
-        (TestRunner::addUserScript):
-        (TestRunner::addUserStyleSheet):
-        (TestRunner::evaluateInWebInspector):
-        (TestRunner::evaluateScriptInIsolatedWorld):
-        (TestRunner::setTextDirection):
-        * DumpRenderTree/efl/WorkQueueItemEfl.cpp:
-        (LoadItem::invoke):
-        (LoadHTMLStringItem::invoke):
-        (ScriptItem::invoke):
-
-2012-09-06  Jeffrey Pfau  <jpfau@apple.com>
-
-        Extend third-party storage blocking API to optionally allow blocking all storage
-        https://bugs.webkit.org/show_bug.cgi?id=95915
-
-        Reviewed by Brady Eidson.
-
-        Modified API test to use new revised API.
-
-        * TestWebKitAPI/Tests/WebKit2/WKPreferences.cpp:
-        (TestWebKitAPI::TEST):
-
-2012-09-07  Dominic Mazzoni  <dmazzoni@google.com>
-
-        AX: WebCore accessibility roles should be cross-platform
-        https://bugs.webkit.org/show_bug.cgi?id=94870
-
-        Reviewed by Chris Fleizach.
-
-        Add debug strings to Chromium for new accessibility roles.
-
-        * DumpRenderTree/chromium/TestRunner/AccessibilityUIElementChromium.cpp:
-        (roleToString):
-
-2012-09-07  Dominic Mazzoni  <dmazzoni@google.com>
-
-        AX: Chromium needs access to canvasHasFallbackContent
-        https://bugs.webkit.org/show_bug.cgi?id=96124
-
-        Reviewed by Chris Fleizach.
-
-        Distinguish between canvas roles with and without fallback
-        content on Chromium.
-
-        * DumpRenderTree/chromium/TestRunner/AccessibilityUIElementChromium.cpp:
-        (getRole):
-
-2012-09-07  Ojan Vafai  <ojan@chromium.org>
-
-        Handle non-existant TestExpectations files gracefully
-        https://bugs.webkit.org/show_bug.cgi?id=96149
-
-        Reviewed by Eric Seidel.
-
-        Even when we get rid of Skipped files, we shouldn't have each port
-        require a TestExpectations file for each platform if it doesn't
-        need one.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.expectations_dict):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_nonexistant_expectations):
-
-2012-09-07  Tony Chang  <tony@chromium.org>
-
-        Regression: check-webkit-style no longer checks TestExpectations for syntax errors
-        https://bugs.webkit.org/show_bug.cgi?id=96136
-
-        Reviewed by Ojan Vafai.
-
-        When we renamed the file to TestExpectations, it was no longer considered a text file so
-        it was no longer being checked. Since then, test_expectations_overrides() has been removed
-        from the port object, so I've removed that from the check. I'm not sure what it was
-        supposed to do.
-
-        * Scripts/webkitpy/style/checker.py:
-        (CheckerDispatcher._file_type): Mark TestExpectations as a text file.
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-        (TestExpectationsChecker.check_test_expectations): Remove overrides param.
-        (TestExpectationsChecker.check): Remove overrides param.
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-        (TestExpectationsTestCase.assert_lines_lint): Remove overrides param.
-
-2012-09-07  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Use same default minimum logical font size in DRT and WTR
-        https://bugs.webkit.org/show_bug.cgi?id=96116
-
-        Reviewed by Martin Robinson.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues): Set minimum
-        logical font size to 9 to match the value used in WTR.
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::beginTesting): Explicitly set the minimum
-        logical font size to 9 (default value in WK2)
-
-2012-09-07  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: add RTCPeerConnection::createAnswer
-        https://bugs.webkit.org/show_bug.cgi?id=96092
-
-        Reviewed by Adam Barth.
-
-        Expanding and enhancing MockWebRTCPeerConnectionHandler.
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (MockWebRTCPeerConnectionHandler::createOffer):
-        (MockWebRTCPeerConnectionHandler::createAnswer):
-        (MockWebRTCPeerConnectionHandler::setLocalDescription):
-        (MockWebRTCPeerConnectionHandler::setRemoteDescription):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.h:
-        (MockWebRTCPeerConnectionHandler):
-
-2012-09-07  Dean Jackson  <dino@apple.com>
-
-        Unreviewed changes to watchlist.
-
-        - Add new WebGL and Filters definitions
-        - Add myself to OpenGL bugs
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-09-07  Peter Beverloo  <peter@chromium.org>
-
-        Actually trigger the Android Tester
-        https://bugs.webkit.org/show_bug.cgi?id=96118
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-09-07  Dominic Mazzoni <dmazzoni@google.com>
-
-        New time input needs accessibility
-        https://bugs.webkit.org/show_bug.cgi?id=96032
-
-        Reviewed by Chris Fleizach.
-
-        Add support for valueDescription for testing.
-
-        * DumpRenderTree/chromium/TestRunner/AccessibilityUIElementChromium.cpp:
-        (getValueDescription):
-        (AccessibilityUIElement::AccessibilityUIElement):
-        (AccessibilityUIElement::valueDescriptionGetterCallback):
-        * DumpRenderTree/chromium/TestRunner/AccessibilityUIElementChromium.h:
-        (AccessibilityUIElement):
-
-2012-09-07  Peter Beverloo  <peter@chromium.org>
-
-        Add the google-android-tests build slave to the master's config
-        https://bugs.webkit.org/show_bug.cgi?id=96113
-
-        Reviewed by Csaba Osztrogonác.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-09-07  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [WK2] [EFL] Set theme for WebKit2 API test runner
-        https://bugs.webkit.org/show_bug.cgi?id=96100
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Set the theme generated by the build for the WebKit2 API test runner.
-
-        * TestWebKitAPI/PlatformEfl.cmake:
-        * TestWebKitAPI/efl/PlatformWebView.cpp:
-        (TestWebKitAPI::PlatformWebView::PlatformWebView):
-
-2012-09-07  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed. Add Gábor Ballabás as contributor.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-09-07  Zoltan Arvai  <zarvai@inf.u-szeged.hu>
-
-        [Qt] Fix ROOT_BUILD_DIR on Windows MSVC build.
-        https://bugs.webkit.org/show_bug.cgi?id=96078
-
-        Reviewed by Tor Arne Vestbø.
-
-        Correct JSC, DumpRenderTree, ImageDiff, QtTestBrowser binaries location by adding $$toSystemPath to ROOT_BUILD_DIR generation.
-
-        * qmake/mkspecs/features/default_pre.prf:
-
-2012-09-07  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Add TestExpectations file for efl-wk1
-        https://bugs.webkit.org/show_bug.cgi?id=96019
-
-        Reviewed by Gyuyoung Kim.
-
-        Update TestExpectations cascading for EFL port
-        so that we use efl-wk1 -> efl search paths
-        for WebKit1 EFL.
-
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort._search_paths):
-
-2012-09-07  Zan Dobersek  <zandobersek@gmail.com>
-
-        [NRWT] XvfbDriver should stop the Xvfb more aggressively
-        https://bugs.webkit.org/show_bug.cgi?id=95097
-
-        Reviewed by Dirk Pranke.
-
-        The Xvfb process is now killed when the XvfbDriver is stopping. Simply
-        terminating the process does not always work as expected, leading to timeouts
-        in run-webkit-tests on the buildbot. The lock file Xvfb creates is also removed
-        as it's not removed by the killed Xvfb process.
-
-        Also included is a thorough unittest for XvfbDriver. Proper starting of the driver
-        is tested in different circumstances - whether pixel tests are enabled or not,
-        with an arbitrary worker number or with an Xorg process already running on the system.
-        The stopping of the driver is tested by checking that the Xvfb process is truly killed
-        and then set to None.
-
-        * BuildSlaveSupport/kill-old-processes:
-        Kill any stale Xvfb processes at the start of the build cycle so no Xvfb
-        is left running, potentially clogging up a display at a certain position.
-        * Scripts/webkitpy/common/system/executive_mock.py:
-        (MockExecutive.__init__):
-        The _running_pids is now a dictionary with process names as keys and pids
-        as values.
-        (MockExecutive.check_running_pid):
-        Check whether the passed-in pid is in the _running_pids dictionary's values.
-        (MockExecutive):
-        (MockExecutive.running_pids):
-        This method returns the list of all the process pids of which the name passes
-        through the process_name_filter.
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver.py:
-        Use the Executive object of the port's host to check for running pids and open
-        new subprocesses or kill them throughout the class.
-        (XvfbDriver._start):
-        Use the _server_process_constructor to make testing the XvfbDriver possible. Also,
-        start the server process after it's created.
-        (XvfbDriver.stop):
-        Now kills the Xvfb process instead of terminating it and waiting for it to close.
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver_unittest.py: Added.
-        (XvfbDriverTest):
-        (XvfbDriverTest.make_driver):
-        (XvfbDriverTest.assertDriverStartSuccessful):
-        (XvfbDriverTest.test_start_no_pixel_tests):
-        (XvfbDriverTest.test_start_pixel_tests):
-        (XvfbDriverTest.test_start_arbitrary_worker_number):
-        (XvfbDriverTest.test_start_existing_xorg_process):
-        (XvfbDriverTest.test_stop):
-        (XvfbDriverTest.test_stop.FakeXvfbProcess):
-
-2012-09-06  Peter Beverloo  <peter@chromium.org>
-
-        Introduce the Chromium Android Release (Tests) bot
-        https://bugs.webkit.org/show_bug.cgi?id=95980
-
-        Reviewed by Adam Barth.
-
-        This adds the Chromium Android Release (Tests) bot to the WebKit waterfall,
-        which will be running layout tests on actual Android devices. Right now,
-        four Galaxy Nexus phones are attached.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-09-06  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Use WebCompositorSupport functions instead of WebCompositor statics
-        https://bugs.webkit.org/show_bug.cgi?id=96007
-
-        Reviewed by Adrienne Walker.
-
-        Fixes initialization / settings code to use WebCompositorSupport.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::initialize):
-        (TestShell::setPerTilePaintingEnabled):
-
-2012-09-06  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][WK2] Provide implementation for PlatformWebView::windowFrame()
-        https://bugs.webkit.org/show_bug.cgi?id=95995
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Provide proper implementation for PlatformWebView::windowFrame()
-        in EFL's WebKitTestRunner.
-
-        * WebKitTestRunner/efl/PlatformWebViewEfl.cpp:
-        (WTR::PlatformWebView::windowFrame):
-
-2012-09-06  Fady Samuel  <fsamuel@chromium.org>
-
-        Fix WTF.Lrint on 32-bit platforms
-        https://bugs.webkit.org/show_bug.cgi?id=96003
-
-        Reviewed by Benjamin Poulain.
-
-        Fixed failing WTF.Lrint test on 32-bit platforms.
-
-        * TestWebKitAPI/Tests/WTF/MathExtras.cpp:
-        (TestWebKitAPI::TEST):
-
-2012-09-06  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: Add the local and remote description functionality to RTCPeerConnection
-        https://bugs.webkit.org/show_bug.cgi?id=95839
-
-        Reviewed by Adam Barth.
-
-        In addition to adding the new methods to MockWebRTCPeerConnectionHandler I cleaned
-        up the task definitions a bit. There was no need to have them in the header file.
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (RTCSessionDescriptionRequestSuccededTask):
-        (RTCSessionDescriptionRequestSuccededTask::RTCSessionDescriptionRequestSuccededTask):
-        (RTCSessionDescriptionRequestFailedTask):
-        (RTCSessionDescriptionRequestFailedTask::RTCSessionDescriptionRequestFailedTask):
-        (RTCVoidRequestTask):
-        (RTCVoidRequestTask::RTCVoidRequestTask):
-        (MockWebRTCPeerConnectionHandler::createOffer):
-        (MockWebRTCPeerConnectionHandler::setLocalDescription):
-        (MockWebRTCPeerConnectionHandler::setRemoteDescription):
-        (MockWebRTCPeerConnectionHandler::localDescription):
-        (MockWebRTCPeerConnectionHandler::remoteDescription):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.h:
-        (MockWebRTCPeerConnectionHandler):
-
-2012-09-06  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Fix build on Mac OS X 10.6
-        https://bugs.webkit.org/show_bug.cgi?id=95200
-
-        Reviewed by Tor Arne Vestbø.
-
-        The build on Mac OS X 10.6 is broken when using QuickTime. Enable it only for
-        10.7 and newer.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-09-06  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WKTR] addSelectionKey should be mapped to "Control" modifiers on other OSes than Mac
-        https://bugs.webkit.org/show_bug.cgi?id=95973
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Correctly map "addSelectionKey" to "Control" modifier
-        in WKTR's EventSender on other OSes than Mac OS X,
-        instead of mapping it to the "Meta" modifier.
-
-        * WebKitTestRunner/InjectedBundle/EventSendingController.cpp:
-        (WTR::parseModifier):
-
-2012-09-06  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [nrwt] Harden against empty stdout/stderr after stopping a crashed/timed out driver
-        https://bugs.webkit.org/show_bug.cgi?id=95710
-
-        Reviewed by Dirk Pranke.
-
-        The stdout / stderr output can be None so make sure
-        we won't raise an exception in this case.
-
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.run_test):
-
-2012-09-06  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Sanitize URLs in EWebLauncher / Minibrowser
-        https://bugs.webkit.org/show_bug.cgi?id=95849
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Sanitize URLs passed by the user as program
-        argument or typed in the URL bar in order to
-        be more tolerant.
-
-        * EWebLauncher/CMakeLists.txt:
-        * EWebLauncher/main.c:
-        (main):
-        * EWebLauncher/url_bar.c:
-        (_url_bar_url_get_with_protocol):
-        (on_urlbar_key_down):
-        * EWebLauncher/url_utils.c: Added.
-        (has_scheme):
-        (url_from_user_input): Add utility function to construct a
-        URL from user input.
-        * EWebLauncher/url_utils.h: Added.
-        * MiniBrowser/efl/CMakeLists.txt:
-        * MiniBrowser/efl/main.c:
-        (main):
-
-2012-09-06  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Various small Windows / MSVC build fixes
-        https://bugs.webkit.org/show_bug.cgi?id=95934
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        setFocus takes a boolean as argument: Don't try to implicitly convert
-        an enum to a boolean, MSVC doesn't like that. The intent here is to
-        enable focus, so just pass true.
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::focus):
-
-2012-09-06  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Fix build with ANGLE on platforms that provide EGL/GLESv2
-        https://bugs.webkit.org/show_bug.cgi?id=95965
-
-        Reviewed by Tor Arne Vestbø.
-
-        Add ANGLE as a static library module to the Qt WebKit build system.
-
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/modules/angle.prf: Added.
-
-2012-09-06  Andras Becsi  <andras.becsi@nokia.com>
-
-        [WK2] Make [Qt]ViewportHandler cross platform
-        https://bugs.webkit.org/show_bug.cgi?id=91257
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Remove initial scale from viewport info item since it is
-        set to -1 after applied thus it does not hold any valuable
-        information.
-
-        * MiniBrowser/qt/qml/ViewportInfoItem.qml:
-
-2012-09-05  Tony Chang  <tony@chromium.org>
-
-        [chromium] Remove dependency on webkit_user_agent
-        https://bugs.webkit.org/show_bug.cgi?id=95886
-
-        Reviewed by Adam Barth.
-
-        The code isn't used by DumpRenderTree.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-09-05  Rick Byers  <rbyers@chromium.org>
-
-        Update chromium DumpRenderTree for new WebGestureEvent fields
-        https://bugs.webkit.org/show_bug.cgi?id=95573
-
-        Reviewed by James Robinson.
-
-        Update EventSender to write gesture details into the appropriate
-        type-specific WebGestureEvent fields.
-        * DumpRenderTree/chromium/TestRunner/EventSender.cpp:
-        (EventSender::gestureEvent):
-        (EventSender::gestureFlingStart):
-
-2012-09-05  Dirk Pranke  <dpranke@chromium.org>
-
-        NRWT lies about the number of tests that it's skipping when used with --repeat-each
-        https://bugs.webkit.org/show_bug.cgi?id=95789
-
-        Reviewed by Ojan Vafai.
-
-        Fix miscalculation in log message.
-
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (Printer.print_found):
-
-2012-09-05  Kenichi Ishibashi  <bashi@chromium.org>
-
-        Unreviewed, rolling out r127612, r127660, and r127664.
-        http://trac.webkit.org/changeset/127612
-        http://trac.webkit.org/changeset/127660
-        http://trac.webkit.org/changeset/127664
-        https://bugs.webkit.org/show_bug.cgi?id=95920
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (MockWebRTCPeerConnectionHandler::SuccessCallbackTask::SuccessCallbackTask):
-        (MockWebRTCPeerConnectionHandler::SuccessCallbackTask::runIfValid):
-        (MockWebRTCPeerConnectionHandler::FailureCallbackTask::FailureCallbackTask):
-        (MockWebRTCPeerConnectionHandler::FailureCallbackTask::runIfValid):
-        (MockWebRTCPeerConnectionHandler::createOffer):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.h:
-        (MockWebRTCPeerConnectionHandler):
-        (SuccessCallbackTask):
-        (FailureCallbackTask):
-
-2012-09-05  Allan Sandfeld Jensen  <allan.jensen@nokia.com>
-
-        Ignore-metrics includes scroll offsets.
-        https://bugs.webkit.org/show_bug.cgi?id=95845
-
-        Reviewed by Dirk Pranke.
-
-        Strip scroll-offsets the same way scroll-height and scroll-width is stripped.
-
-        * Scripts/old-run-webkit-tests:
-        (stripMetrics):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (DriverOutput):
-
-2012-09-05  Zan Dobersek  <zandobersek@gmail.com>
-
-        Unreviewed test fix.
-
-        Including a plugin source file into the build that was added in r127595.
-
-        * GNUmakefile.am:
-
-2012-09-05  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: Add the local and remote description functionality to RTCPeerConnection
-        https://bugs.webkit.org/show_bug.cgi?id=95839
-
-        Reviewed by Adam Barth.
-
-        In addition to adding the new methods to MockWebRTCPeerConnectionHandler I cleaned
-        up the task definitions a bit. There was no need to have them in the header file.
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (RTCSessionDescriptionRequestSuccededTask):
-        (RTCSessionDescriptionRequestSuccededTask::RTCSessionDescriptionRequestSuccededTask):
-        (RTCSessionDescriptionRequestFailedTask):
-        (RTCSessionDescriptionRequestFailedTask::RTCSessionDescriptionRequestFailedTask):
-        (RTCVoidRequestTask):
-        (RTCVoidRequestTask::RTCVoidRequestTask):
-        (MockWebRTCPeerConnectionHandler::createOffer):
-        (MockWebRTCPeerConnectionHandler::setLocalDescription):
-        (MockWebRTCPeerConnectionHandler::setRemoteDescription):
-        (MockWebRTCPeerConnectionHandler::localDescription):
-        (MockWebRTCPeerConnectionHandler::remoteDescription):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.h:
-        (MockWebRTCPeerConnectionHandler):
-
-2012-09-05  Kangil Han  <kangil.han@samsung.com>
-
-        [EFL] Remove '+=' usage in String
-        https://bugs.webkit.org/show_bug.cgi?id=95808
-
-        Reviewed by Benjamin Poulain.
-
-        Replaced use of String operator '+=' with StringBuilder.append*() in order to adopt efficient String concatenation.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (descriptionSuitableForTestResult):
-
-2012-09-05  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][WK2] Provide implementation for TestRunner::pathToLocalResource()
-        https://bugs.webkit.org/show_bug.cgi?id=95842
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Provide proper implementation for TestRunner::pathToLocalResource()
-        in EFL WKTR, identical to the one for DumpRenderTree.
-
-        Map /tmp to ${DUMPRENDERTREE_TEMP} environment variable and
-        /tmp/LayoutTests to ${LOCAL_RESOURCE_ROOT} so that local resources
-        are found my WebKitTestRunner.
-
-        * WebKitTestRunner/InjectedBundle/efl/TestRunnerEfl.cpp:
-        (WTR::TestRunner::pathToLocalResource):
-
-2012-09-05  Brady Eidson  <beidson@apple.com>
-
-        Frequent crashes in PluginView::scriptObject under runtimeObjectCustomGetOwnPropertySlot
-        <rdar://problem/12142226> and https://bugs.webkit.org/show_bug.cgi?id=95026
-
-        Reviewed by Andy Estes.
-
-        Add a plug-in that always fails to initialize:
-        * DumpRenderTree/TestNetscapePlugIn/Tests/NPPNewFails.cpp: Added.
-        (NPPNewFails):
-        (NPPNewFails::NPPNewFails):
-        (NPPNewFails::NPP_New):
-
-        Add it to all the project files:
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/TestNetscapePlugIn/CMakeLists.txt:
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-
-2012-09-05  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Fix makefile race condition between derived sources and target
-
-        r121966 removed too much of the old qmake logic, including the rule
-        that ensured that qmake_all would not trigger dual runs of qmake --
-        one of the derived sources -qmake-all rule, and one for making the
-        derived sources.
-
-        We now follow a similar pattern as before, by introducing a custom
-        target that explicitly depends on the derived sources' qmake-all before
-        doing a manual run of make. That ensures a single qmake run for the derived
-        sources.
-
-        https://bugs.webkit.org/show_bug.cgi?id=93847
-
-        Reviewed by Csaba Osztrogonác.
-
-        * qmake/mkspecs/features/functions.prf:
-
-2012-09-05  Christophe Dumez  <christophe.dumez@intel.com>
-
-        WKTR doesn't implement dumpWillCacheResponse()
-        https://bugs.webkit.org/show_bug.cgi?id=94607
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Define shouldCacheResponse() callback in resource
-        load client and provide implementation for
-        dumpWillCacheResponse() in WebKitTestRunner.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        (WTR::InjectedBundlePage::shouldCacheResponse):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-        (InjectedBundlePage):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::TestRunner):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (WTR::TestRunner::dumpWillCacheResponse):
-        (WTR::TestRunner::shouldDumpWillCacheResponse):
-        (TestRunner):
-
-2012-09-05  Kaustubh Atrawalkar  <kaustubh@motorola.com>
-
-        [DRT] LTC:: Move printing related APIs from LayoutTestController to Internals
-        https://bugs.webkit.org/show_bug.cgi?id=92735
-
-        Reviewed by Hajime Morita.
-
-        Move numberOfPages, pageProperty & pageSizeAndMarginsInPixels in Internals and remove duplicated code from DumprenderTree & WebkitTestRunner.
-
-        * DumpRenderTree/TestRunner.cpp:
-        (TestRunner::staticFunctions):
-        * DumpRenderTree/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp:
-        (TestRunner::addUserStyleSheet):
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        (DRTTestRunner::hasCustomPageSizeStyle):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        * DumpRenderTree/gtk/TestRunnerGtk.cpp:
-        * DumpRenderTree/mac/TestRunnerMac.mm:
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        (TestRunner::evaluateScriptInIsolatedWorld):
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunner):
-        * DumpRenderTree/win/TestRunnerWin.cpp:
-        * DumpRenderTree/wx/TestRunnerWx.cpp:
-        (TestRunner::abortModal):
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-        (TestRunner):
-
-2012-09-05  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Automate the use of AllInOne files in the Qt build
-        https://bugs.webkit.org/show_bug.cgi?id=95837
-
-        Reviewed by Tor Arne Vestbø.
-
-        New feature file that implements the all-in-one file automation by
-        adding the requested all-in-one files to SOURCES and removing the files
-        it includes from SOURCES.
-
-        * qmake/mkspecs/features/use_all_in_one_files.prf: Added.
-
-2012-09-04  Tim Horton  <timothy_horton@apple.com>
-
-        Have NRWT log more output when crash logs are missing
-        https://bugs.webkit.org/show_bug.cgi?id=95814
-
-        Reviewed by Dan Bernstein.
-
-        Log the stderr and stdout of the test, in order to provide slightly more
-        context when the WebProcess times out while running tests.
-
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.run_test):
-
-2012-09-04  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] Include device serial number in ChromiumAndroidDriver log messages
-        https://bugs.webkit.org/show_bug.cgi?id=95770
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidDriver.__init__):
-        (ChromiumAndroidDriver._log_error): Added to replace original _log.error().
-        (ChromiumAndroidDriver._log_debug): Added to replace original _log.debug().
-        (ChromiumAndroidDriver._abort): Added to replace original raise AssertionError().
-        (ChromiumAndroidDriver._push_executable):
-        (ChromiumAndroidDriver._push_fonts):
-        (ChromiumAndroidDriver._push_test_resources):
-        (ChromiumAndroidDriver._run_adb_command):
-        (ChromiumAndroidDriver._get_last_stacktrace):
-        (ChromiumAndroidDriver._get_crash_log):
-        (ChromiumAndroidDriver._start):
-        (ChromiumAndroidDriver._start_once):
-        (ChromiumAndroidDriver._start_once.deadlock_detector):
-        * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:
-        (ChromiumAndroidDriverTest.test_get_crash_log):
-
-2012-09-04  Satish Sampath  <satish@chromium.org>
-
-        Run git commands within the checkout directory
-        https://bugs.webkit.org/show_bug.cgi?id=95742
-
-        Reviewed by Eric Seidel.
-
-        git commands run from scm/git.py are sometimes run with cwd set to the
-        checkout_root and other times with whatever directory was the default cwd.
-        Instead all these should run with the checkout root set as the cwd
-        (except where we explicitly need a different path)
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        (Git._run_git):
-        (Git.find_checkout_root):
-        (Git.discard_local_commits):
-        (Git.local_commits):
-        (Git.working_directory_is_clean):
-        (Git.clean_working_directory):
-        (Git.add_list):
-        (Git.delete_list):
-        (Git.exists):
-        (Git._current_branch):
-        (Git._changes_files_for_commit):
-        (Git.revisions_changing_file):
-        (Git.svn_revision):
-        (Git._run_git_svn_find_rev):
-        (Git.contents_at_revision):
-        (Git.diff_for_file):
-        (Git.show_head):
-        (Git.committer_email_for_revision):
-        (Git.apply_reverse_diff):
-        (Git.revert_files):
-        (Git.commit_with_message):
-        (Git._commit_on_branch):
-        (Git.svn_commit_log):
-        (Git.last_svn_commit_log):
-        (Git.svn_blame):
-        (Git._branch_ref_exists):
-        (Git.delete_branch):
-        (Git.remote_merge_base):
-        (Git.commit_locally_with_message):
-        (Git.push_local_commits_to_server):
-        (Git.commit_ids_from_commitish_arguments):
-        (Git.commit_message_for_local_commit):
-        (Git.files_changed_summary_for_commit):
-
-2012-09-04  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: Add the async createOffer functionality to RTCPeerConnection
-        https://bugs.webkit.org/show_bug.cgi?id=95734
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (MockWebRTCPeerConnectionHandler::SuccessCallbackTask::SuccessCallbackTask):
-        (MockWebRTCPeerConnectionHandler::SuccessCallbackTask::runIfValid):
-        (MockWebRTCPeerConnectionHandler::FailureCallbackTask::FailureCallbackTask):
-        (MockWebRTCPeerConnectionHandler::FailureCallbackTask::runIfValid):
-        (MockWebRTCPeerConnectionHandler::createOffer):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.h:
-        (MockWebRTCPeerConnectionHandler):
-        (MockWebRTCPeerConnectionHandler::taskList):
-        (SuccessCallbackTask):
-        (FailureCallbackTask):
-
-2012-09-04  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] Output time and thread info in crash log
-        https://bugs.webkit.org/show_bug.cgi?id=95768
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidDriver._get_logcat): Add '-v threadtime' to adb logcat command line to get time and thread info.
-
-2012-09-04  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: Change the MediaStreamTrackList track added/removed signaling
-        https://bugs.webkit.org/show_bug.cgi?id=95721
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/MockWebMediaStreamCenter.cpp:
-        (MockWebMediaStreamCenter::didAddMediaStreamTrack):
-        (MockWebMediaStreamCenter::didRemoveMediaStreamTrack):
-        * DumpRenderTree/chromium/MockWebMediaStreamCenter.h:
-        (MockWebMediaStreamCenter):
-
-2012-09-04  Tony Chang  <tony@chromium.org>
-
-        Elide test names when running new-run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=95626
-
-        Reviewed by Dirk Pranke.
-
-        When the test name exceeds the number of terminal columns, it leaves
-        text on the screen. Avoid this by eliding the test name when running
-        tests. This is similar to what ninja does when compiling.
-
-        * Scripts/webkitpy/layout_tests/views/metered_stream.py:
-        (MeteredStream):
-        (MeteredStream.number_of_columns): Helper method to get number of
-        terminal columns. Won't work on Win32 python, but meh.
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (Printer._test_status_line): New method for eliding the text. Doesn't use \u2026
-        because stderr appears to be ascii only.
-        (Printer.print_started_test): Route through _test_status_line.
-        (Printer.print_finished_test): Route through _test_status_line.
-        (Printer._print_test_trace): Route through _test_status_line.
-        (Printer._print_baseline): Route through _test_status_line.
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-        (test_test_status_line): Test for _test_status_line.
-
-2012-09-04  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Print API missing documentation when generating gtkdoc
-        https://bugs.webkit.org/show_bug.cgi?id=95703
-
-        Reviewed by Carlos Garcia Campos.
-
-        Print out API missing documentation when generating gtkdoc. This makes it
-        easier to fix documentation errors.
-
-        * gtk/generate-gtkdoc:
-        (print_missing_api): Added.
-        (generate_doc): Inline the rebase step, since it now reports an error
-        when you try to rebase without generating documentation first.
-        * gtk/gtkdoc.py:
-        (GTKDoc.rebase_installed_docs): Raise an error when rebasing without
-        generating documentation first to enable a small cleanup at the caller.
-        (GTKDoc.api_missing_documentation): Added.
-
-2012-09-04  Vincent Scheib  <scheib@chromium.org>
-
-        [Chromium] Allow asyncronous response of pointer lock requests in layout tests.
-        https://bugs.webkit.org/show_bug.cgi?id=95628
-
-        Reviewed by James Robinson.
-
-        Future tests need the ability to respond asynchronously that
-        pointer lock requests have been accepted or rejected. This patch
-        adds the following:
-            testRunner.setPointerLockWillRespondAsynchronously();
-            testRunner.didAcquirePointerLock();
-            testRunner.didNotAcquirePointerLock();
-
-        Tested in existing test:
-            pointerlockchange-pointerlockerror-events.html
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner):
-        (DRTTestRunner::didAcquirePointerLock):
-        (DRTTestRunner::didNotAcquirePointerLock):
-        (DRTTestRunner::setPointerLockWillRespondAsynchronously):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::requestPointerLock):
-        (WebViewHost::didAcquirePointerLock):
-        (WebViewHost::didNotAcquirePointerLock):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-        (WebViewHost::setPointerLockWillRespondAsynchronously):
-
-2012-09-04  Ojan Vafai  <ojan@chromium.org>
-
-        Move content shell bots to their own builder group
-        https://bugs.webkit.org/show_bug.cgi?id=95765
-
-        Reviewed by Adam Barth.
-
-        In their current state of instability, they add too much noise. Once they get more stable,
-        we can add them back to the regular group or just have them replace the other bots.
-
-        Also, fix the filter for Apple Windows bots since some of them are now "Apple Win ...".
-
-        * TestResultServer/static-dashboards/builders.js:
-        (isWebkitTestRunner):
-        (isChromiumContentShellTestRunner):
-        (isChromiumWebkitTipOfTreeTestRunner):
-        (loadBuildersList):
-
-2012-09-03  Ryuan Choi  <ryuan.choi@samsung.com>
-
-        [EFL] Change the focus when the web view is clicked in MiniBrowser and EWebLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=95689
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        In Minibrowser & EWebLauncher, the web view loses the focus when url bar is clicked.
-        So, there are bugs that key events are always generated in url bar although
-        the user clicked the web view.
-
-        This patch recovers the focus of the web view when left button is pressed and
-        adds for MiniBrowser to toggle the focus when middle button is pressed
-        like EWebLauncher already did.
-
-        * EWebLauncher/main.c:
-        (on_mouse_down):
-        * MiniBrowser/efl/main.c:
-        (on_mouse_down):
-        (browserCreate):
-
-2012-09-03  Tao Bai  <michaelbai@chromium.org>
-
-        Added ANDROID_GDBSERVER definition for Ant
-        https://bugs.webkit.org/show_bug.cgi?id=95265
-
-        Reviewed by Adam Barth.
-
-        ANDROID_GDBSERVER will replace ANDROID_TOOLCHAIN, because the ANDROID_TOOLCHAIN
-        is only used for finding the gdbserver.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * TestWebKitAPI/TestWebKitAPI.gyp/TestWebKitAPI.gyp:
-
-2012-09-03  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: Add Ice-related functionality to RTCPeerConnection
-        https://bugs.webkit.org/show_bug.cgi?id=95565
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (MockWebRTCPeerConnectionHandler::MockWebRTCPeerConnectionHandler):
-        (MockWebRTCPeerConnectionHandler::updateICE):
-        (MockWebRTCPeerConnectionHandler::addICECandidate):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.h:
-        (MockWebRTCPeerConnectionHandler):
-
-2012-09-03  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Fix resizing issues related to URL bar in Minibrowser / EWebLauncher
-        https://bugs.webkit.org/show_bug.cgi?id=95670
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Fix layout issues related to the URL bar in Minibrowser
-        and EWebLauncher when the window is resized.
-
-        The URL bar was not resized accordingly and the Web
-        page was moved behing the URL bar, hiding part of it.
-
-        * EWebLauncher/main.c:
-        (on_ecore_evas_resize):
-        (closeWindow):
-        * EWebLauncher/url_bar.c:
-        (url_bar_width_set):
-        (url_bar_add):
-        * EWebLauncher/url_bar.h:
-        * MiniBrowser/efl/main.c:
-        (on_ecore_evas_resize):
-        (main):
-
-2012-09-01  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] Remove hard-coded skipped directories in chromium_android.py
-        https://bugs.webkit.org/show_bug.cgi?id=95605
-
-        Reviewed by Dirk Pranke.
-
-        Now skipping rules are put in LayoutTests/platform/chromium-android/TestExpectations.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.check_sys_deps):
-        (ChromiumAndroidPort.expectations_files):
-        (ChromiumAndroidPort.clean_up_test_run):
-
-2012-09-01  Joanmarie Diggs  <jdiggs@igalia.com>
-
-        [Gtk] Incorrect/unexpected characters in the text of certain accessibles
-        https://bugs.webkit.org/show_bug.cgi?id=95180
-
-        Reviewed by Chris Fleizach.
-
-        The bug that was fixed stood in the way of fully implementing stringValue().
-        Testing that the bug is fixed requires stringValue() to be fully implemented
-        and object replacement characters to be printable.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (replaceCharactersForResults): New method which turns object replacement
-        characters into "<obj>" so that the characters can be properly shown in
-        Layout Test results. Also turns "\n" into "<\\n>" so that printing the
-        accessible text of a single object in the accessible tree doesn't mess up
-        the readibility of the results.
-        (AccessibilityUIElement::stringValue): Remove the code that immediately
-        returned upon encountering an object of ATK_ROLE_PANEL and call the new
-        replaceCharactersForResults() prior to returning the accessible string
-        value.
-
-2012-09-01  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: Add MediaStream management to RTCPeerConnection
-        https://bugs.webkit.org/show_bug.cgi?id=95543
-
-        Reviewed by Adam Barth.
-
-        Extending MockWebRTCPeerConnectionHandler to handle addStream/removeStream.
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (MockWebRTCPeerConnectionHandler::MockWebRTCPeerConnectionHandler):
-        (MockWebRTCPeerConnectionHandler::addStream):
-        (MockWebRTCPeerConnectionHandler::removeStream):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.h:
-        (MockWebRTCPeerConnectionHandler):
-
-2012-08-31  Tony Chang  <tony@chromium.org>
-
-        Remove ENABLE_CSS3_FLEXBOX compile time flag
-        https://bugs.webkit.org/show_bug.cgi?id=95382
-
-        Reviewed by Ojan Vafai.
-
-        Everyone is already enabling this by default and the spec has stablized.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2012-08-31  Pratik Solanki  <psolanki@apple.com>
-
-        objc_msgSend and IMP should be cast appropriately before using
-        https://bugs.webkit.org/show_bug.cgi?id=95242
-
-        Reviewed by Benjamin Poulain.
-
-        Fix for older compilers. Pass id as the return type to the template
-        instead of relying on default type.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (drt_NSFontManager_availableFontFamilies):
-        * WebKitTestRunner/InjectedBundle/mac/ActivateFonts.mm:
-        (WTR::wtr_NSFontManager_availableFontFamilies):
-
-2012-08-31  Zan Dobersek  <zandobersek@gmail.com>
-
-        nrwt: use scm instead of calling svn directly to get the revision in json results generator
-        https://bugs.webkit.org/show_bug.cgi?id=89616
-
-        Reviewed by Eric Seidel.
-
-        Add the new 'executive' optional function argument to the SCM.in_working_directory
-        class method. This way we get to reuse an Executive instance which is necessary in testing
-        when we're operating with a mock version of the object.
-
-        In JSONResultsGeneratorBase, it's now possible to get the current SVN revision by using
-        the SCMDetector with the generator's FileSystem and Executive instances.
-
-        * Scripts/webkitpy/common/checkout/scm/detection.py:
-        (SCMDetector.detect_scm_system):
-        * Scripts/webkitpy/common/checkout/scm/detection_unittest.py:
-        (SCMDetectorTest.test_detect_scm_system): Update the unit test to capture the mock
-        Executive output and test it against expected output.
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        (Git.in_working_directory):
-        * Scripts/webkitpy/common/checkout/scm/scm.py:
-        (SCM.in_working_directory):
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-        (SVN.in_working_directory):
-        * Scripts/webkitpy/layout_tests/layout_package/json_results_generator.py:
-        (JSONResultsGeneratorBase.__init__):
-        (JSONResultsGeneratorBase._get_svn_revision):
-
-2012-08-31  Jon Lee  <jonlee@apple.com>
-
-        [Tests] Add basic tests to http/tests/notifications
-        https://bugs.webkit.org/show_bug.cgi?id=95493
-        <rdar://problem/12209303>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Add permission request support for WTR.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-        (WTR::TestController::decidePolicyForNotificationPermissionRequest): Always allow.
-        * WebKitTestRunner/TestController.h:
-        (TestController):
-
-2012-08-31  Jon Lee  <jonlee@apple.com>
-
-        [DRT] Make simulating a web click on a notification a queued task
-        https://bugs.webkit.org/show_bug.cgi?id=95546
-        <rdar://problem/12214170>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Making the web click happen asynchronously better mimics user interaction with the platform.
-
-        * DumpRenderTree/TestRunner.h: Add a flag that determines whether we have a pending notification click.
-        (TestRunner::hasPendingWebNotificationClick): Exposed so that dump() can check that the flag is
-        not set.
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (dump): Assert that the flag is not set.
-        * DumpRenderTree/mac/TestRunnerMac.mm:
-        (TestRunner::simulateWebNotificationClick): Set the flag, then add a task to click the
-        notification. In the case where the block gets executed after the flag has been unset, we avoid
-        performing the click.
-
-2012-08-31  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt] ImageDiff output is not in the expected form if image dimensions differ
-        https://bugs.webkit.org/show_bug.cgi?id=95575
-
-        Reviewed by Csaba Osztrogonác.
-
-        Output 100% difference in the case of differing image dimensions so
-        the test harness knows that we won't produce any output further.
-        This matches the behavior of other ports.
-
-        * DumpRenderTree/qt/ImageDiff.cpp:
-        (main):
-
-2012-08-31  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r127261.
-        http://trac.webkit.org/changeset/127261
-        https://bugs.webkit.org/show_bug.cgi?id=95572
-
-        This patch depends on other build fixes (see blockers of bug
-        95466) which should land first (Requested by milian on
-        #webkit).
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-08-31  Milian Wolff  <milian.wolff@kdab.com>
-
-        [Qt] Support WebKit2/QML on QNX
-        https://bugs.webkit.org/show_bug.cgi?id=95466
-
-        Reviewed by Noam Rosenthal.
-
-        Enable USE(3D_GRAPHICS) on QNX again, paired with the other bug fixes
-        this should finally work now.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-08-30  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] Skip compositing/webgl and platform/chromium/virtual/threaded/compositing/webgl tests
-        https://bugs.webkit.org/show_bug.cgi?id=95400
-
-        Reviewed by Dirk Pranke.
-
-        WebGL is not enabled and should be skipped on Android (http://crbug.com/135877).
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.skipped_layout_tests):
-
-2012-08-30  Gustavo Noronha Silva  <gns@gnome.org>
-
-        [GTK] Tries to run empty string when calling generate-gtkdoc when not using jhbuild
-        https://bugs.webkit.org/show_bug.cgi?id=95499
-
-        Unreviewed. One more fix to avoid trying to run the empty string.
-
-        * Scripts/webkitdirs.pm:
-        (buildAutotoolsProject):
-
-2012-08-30  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r127171.
-        http://trac.webkit.org/changeset/127171
-        https://bugs.webkit.org/show_bug.cgi?id=95505
-
-        testRunner does not need dumpWebNotificationCallbacks().
-        (Requested by jonlee on #webkit).
-
-        * DumpRenderTree/TestRunner.cpp:
-        (TestRunner::TestRunner):
-        (TestRunner::staticFunctions):
-        * DumpRenderTree/TestRunner.h:
-        (TestRunner):
-        * DumpRenderTree/mac/MockWebNotificationProvider.mm:
-        (-[MockWebNotificationProvider webView:didShowNotification:]):
-        (-[MockWebNotificationProvider webView:didClickNotification:]):
-        (-[MockWebNotificationProvider webView:didCloseNotifications:]):
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:decidePolicyForNotificationRequestFromOrigin:listener:]):
-
-2012-08-30  Pratik Solanki  <psolanki@apple.com>
-
-        objc_msgSend and IMP should be cast appropriately before using
-        https://bugs.webkit.org/show_bug.cgi?id=95242
-
-        Reviewed by Benjamin Poulain.
-
-        Use wtfObjcMsgSend and wtfCallIMP templates which do appropriate casts
-        to a function pointer with right types when calling objc_msgSend and an
-        IMP method directly.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (drt_NSFontManager_availableFontFamilies):
-        * WebKitTestRunner/InjectedBundle/mac/ActivateFonts.mm:
-        (WTR::wtr_NSFontManager_availableFontFamilies):
-
-2012-08-30  Benjamin Poulain  <bpoulain@apple.com>
-
-        Replace JSC::UString by WTF::String
-        https://bugs.webkit.org/show_bug.cgi?id=95271
-
-        Reviewed by Geoffrey Garen.
-
-        Get rid of UString.
-
-        * DumpRenderTree/efl/WorkQueueItemEfl.cpp:
-        * gdb/webkit.py:
-        (WTFStringPrinter.to_string):
-        (JSCIdentifierPrinter.to_string):
-        (JSCJSStringPrinter.to_string):
-        (add_pretty_printers):
-
-2012-08-30  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt should have TestExpectations everywhere we have Skipped files for apple ports
-        https://bugs.webkit.org/show_bug.cgi?id=95495
-
-        Reviewed by Ojan Vafai.
-
-        This is a follow-on to bug 95370 that adds in support for
-        platform/wk2/TestExpectations and
-        platform/{mac,win}-$version/TestExpectations.
-
-        * Scripts/webkitpy/layout_tests/port/apple.py:
-        (ApplePort.expectations_files):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port._skipped_file_search_paths):
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        (MacTest.test_expectations_files):
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        (MockDRTPortTest.make_port):
-        * Scripts/webkitpy/layout_tests/port/win_unittest.py:
-        (WinPortTest.test_expectations_files):
-
-2012-08-30  Dirk Pranke  <dpranke@chromium.org>
-
-        executive.run_in_parallel() hangs if given nothing to do
-        https://bugs.webkit.org/show_bug.cgi?id=95387
-
-        Reviewed by Ojan Vafai.
-
-        Check to make sure that Executive.run_in_parallel() requires
-        a non-empty list of commands to execute; passing an empty list
-        seems surely like a programming error.
-
-        * Scripts/webkitpy/common/system/executive.py:
-        (Executive.run_in_parallel):
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        (ExecutiveTest.test_run_in_parallel_assert_nonempty):
-
-2012-08-30  Dirk Pranke  <dpranke@chromium.org>
-
-        decide what (and how) we should set the tolerance for ref test pixel compares and test for that
-        https://bugs.webkit.org/show_bug.cgi?id=94746
-
-        Reviewed by Ojan Vafai.
-
-        Add an assertion to diff_image() to check that we are passing
-        tolerance=0 explicitly when diffing ref test results.
-
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort.diff_image):
-
-2012-08-30  Dirk Pranke  <dpranke@chromium.org>
-
-        NRWT should look in mac-wk2 for a TestExpecations file
-        https://bugs.webkit.org/show_bug.cgi?id=95370
-
-        Reviewed by Ojan Vafai.
-
-        Adds support for mac-wk2 and win-wk2 to expectations_files()
-        for the apple mac and apple win ports.
-        
-        * Scripts/webkitpy/layout_tests/port/apple.py:
-        (ApplePort.expectations_files):
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        (MacTest.test_expectations_files):
-        * Scripts/webkitpy/layout_tests/port/win_unittest.py:
-        (WinTest.test_expectations_files):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (PortTestCase.test_expectations_files):
-
-2012-08-30  Jon Lee  <jonlee@apple.com>
-
-        [Mac] Add testRunner.dumpWebNotificationCallbacks() to DRT
-        https://bugs.webkit.org/show_bug.cgi?id=95232
-        <rdar://problem/12190776>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Add additional output when running test, if testRunner.dumpWebNotificationCallbacks() is called.
-
-        * DumpRenderTree/TestRunner.cpp:
-        (TestRunner::TestRunner):
-        (dumpWebNotificationCallbacksCallback):
-        (TestRunner::staticFunctions):
-        * DumpRenderTree/TestRunner.h:
-        (TestRunner):
-        (TestRunner::dumpWebNotificationCallbacks):
-        (TestRunner::setDumpWebNotificationCallbacks):
-        * DumpRenderTree/mac/MockWebNotificationProvider.mm:
-        (-[WebNotification _drt_descriptionSuitableForTestResult]):
-        (-[MockWebNotificationProvider webView:didShowNotification:]):
-        (-[MockWebNotificationProvider webView:didClickNotification:]):
-        (-[MockWebNotificationProvider webView:didCloseNotifications:]):
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:decidePolicyForNotificationRequestFromOrigin:listener:]):
-
-2012-08-30  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: Introduce MediaConstraints
-        https://bugs.webkit.org/show_bug.cgi?id=95198
-
-        Reviewed by Adam Barth.
-
-        Extending the MockWebRTCPeerConnectionHandler with MediaConstraints functionality.
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (MockWebRTCPeerConnectionHandler::MockWebRTCPeerConnectionHandler):
-        (isSupportedConstraint):
-        (isValidConstraint):
-        (MockWebRTCPeerConnectionHandler::initialize):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.h:
-        (MockWebRTCPeerConnectionHandler):
-
-2012-08-30  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [WK2][WTR] Add didReceiveServerRedirectForProvisionalLoadForFrame dumping
-        https://bugs.webkit.org/show_bug.cgi?id=95454
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Added didReceiveServerRedirectForProvisionalLoadForFrame dumping to WTR.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::didReceiveServerRedirectForProvisionalLoadForFrame):
-
-2012-08-30  Leo Yang  <leoyang@rim.com>
-
-        Update my email address.
-
-        Not reviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-08-30  Jochen Eisinger  <jochen@chromium.org>
-
-        [NRWT] Add support for recognizing arbitrary process names in crash lines
-        https://bugs.webkit.org/show_bug.cgi?id=95435
-
-        Reviewed by Adam Barth.
-
-        When running layout tests in the chromium port using the content shell,
-        we want to be able to report sub-process crashes as well.
-
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver._check_for_driver_crash):
-        * Scripts/webkitpy/layout_tests/port/driver_unittest.py:
-        (DriverTest.test_check_for_driver_crash):
-
-2012-08-29  Zan Dobersek  <zandobersek@gmail.com>
-
-        Random test-webkitpy failures on the buildbot
-        https://bugs.webkit.org/show_bug.cgi?id=95096
-
-        Reviewed by Dirk Pranke.
-
-        Suppress occasional errors when running test-webkitpy on GTK builders
-        by running these tests serially. The 64-bit Release builder is especially
-        prone to these as it can run up to 24 tests in parallel.
-
-        Despite the tests not being run in parallel, the testing only lasts a handful
-        of seconds more, so this is a worthy trade-off to avoid unnecessary
-        false-alarm redness on the GTK builders.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (RunPythonTests.start):
-
-2012-08-29  Benjamin Poulain  <bpoulain@apple.com>
-
-        REGRESSION(r126780): Crash using StringImpl::is8Bit before checking if there is an impl
-        https://bugs.webkit.org/show_bug.cgi?id=95380
-
-        Reviewed by Michael Saboff.
-
-        * TestWebKitAPI/Tests/WTF/WTFString.cpp:
-        Add very basic tests for String::ascii(). This covers the case of null strings that caused
-        the crash.
-
-2012-08-29  Dominic Mazzoni  <dmazzoni@google.com>
-
-        AX: Canvas should have a distinct role
-        https://bugs.webkit.org/show_bug.cgi?id=95248
-
-        Reviewed by Chris Fleizach.
-
-        Add support for canvas accessibility role.
-
-        * DumpRenderTree/chromium/TestRunner/AccessibilityUIElementChromium.cpp:
-        (roleToString):
-
-2012-08-29  José Dapena Paz  <jdapena@igalia.com>
-
-        [Gtk] Process Gtk 3.4 smooth scroll events properly
-        https://bugs.webkit.org/show_bug.cgi?id=88070
-
-        Added continousMouseScrollBy support in WebKitTestRunner, and added
-        implementation for gtk, and stub for Qt, mac and EFL.
-
-        Added layout tests support for smooth scroll in Gtk 3.4, and use smooth
-        scroll for emulating multi-tick mouseScrollBy events.
-
-        Reviewed by Martin Robinson.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (mouseScrollByCallback):
-        (continuousMouseScrollByCallback):
-        * WebKitTestRunner/EventSenderProxy.h:
-        (EventSenderProxy):
-        * WebKitTestRunner/InjectedBundle/Bindings/EventSendingController.idl:
-        * WebKitTestRunner/InjectedBundle/EventSendingController.cpp:
-        (WTR::EventSendingController::mouseScrollBy):
-        (WTR):
-        (WTR::EventSendingController::continuousMouseScrollBy):
-        * WebKitTestRunner/InjectedBundle/EventSendingController.h:
-        (EventSendingController):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::didReceiveSynchronousMessageFromInjectedBundle):
-        * WebKitTestRunner/gtk/EventSenderProxyGtk.cpp:
-        (WTR):
-        (WTR::EventSenderProxy::mouseScrollBy):
-        (WTR::EventSenderProxy::continuousMouseScrollBy):
-        * WebKitTestRunner/efl/EventSenderProxyEfl.cpp:
-        (WTR):
-        (WTR::EventSenderProxy::continuousMouseScrollBy):
-        * WebKitTestRunner/mac/EventSenderProxy.mm:
-        (WTR::EventSenderProxy::continuousScrollBy):
-        * WebKitTestRunner/qt/EventSenderProxyQt.cpp:
-        (WTR::EventSenderProxy::continuousMouseScrollBy):
-        (WTR):
-
-2012-08-29  Alex Sakhartchouk  <alexst@chromium.org>
-
-        [chromium] Support high DIP pixel tests with DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=94935
-
-        Reviewed by James Robinson.
-
-        Adding device scale factor into the drt image dumping code
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::reset):
-        (DRTTestRunner::setBackingScaleFactor):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::setDeviceScaleFactor):
-        (WebViewHost::paintInvalidatedRegion):
-        (WebViewHost::canvas):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-08-29  Kevin Funk  <kevin.funk@kdab.com>
-
-        Fix check-webkit-style (and probably others) when WebKit is in a git submodule
-        https://bugs.webkit.org/show_bug.cgi?id=95177
-
-        Reviewed by Dirk Pranke.
-
-        Find the real checkout root by using 'git rev-parse --show-toplevel' instead of '--git-dir'
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-
-2012-08-29  Dirk Pranke  <dpranke@chromium.org>
-
-        webkit-patch rebaseline-expectations wrongly touches other platforms' TestExpectations
-        https://bugs.webkit.org/show_bug.cgi?id=95222
-
-        Reviewed by Adam Barth.
-
-        The code we had to remove REBASELINE lines from the
-        TestExpectations files did not handle multiple files (in a
-        cascade) correctly; we weren't limiting lines to a particular
-        file correctly in without_rebaseline_modifier(). This patch
-        fixes that and corrects the tests (which weren't correct and
-        didn't cover things very well).
-
-        Note also that the webkit-patch rebaseline-commands are still
-        using the include_overrides=False option in a couple places;
-        this is never correct or needed at this point. This patch fixes
-        the usage for webkit-patch rebaseline-expectations, but I still
-        need to fix rebaseline-test-internal, which I will do in a
-        separate patch (see bug 95268).
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectations.remove_rebaselined_tests.without_rebaseline_modifier):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (RebaseliningTest.assertRemove):
-        (RebaseliningTest.test_remove):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineExpectations._update_expectations_files):
-
-2012-08-29  Dirk Pranke  <dpranke@chromium.org>
-
-        webkit-patch rebaseline-expectations hangs
-        https://bugs.webkit.org/show_bug.cgi?id=95243
-
-        Reviewed by Tony Chang.
-
-        Don't try to run no commands in parallel; report an error
-        instead that we didn't find any tests to rebaseline.
-
-        Filed bug 95387 as well to make sure run_in_parallel() doesn't hang forever.
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineExpectations.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (_assert_command):
-        (test_rebaseline_expectations_noop):
-
-2012-08-29  Brady Eidson  <beidson@apple.com>
-
-        REGRESSION: Not sending NPP_SetWindow is causing Flash to not throttle itself
-        <rdar://problem/12133021> and https://bugs.webkit.org/show_bug.cgi?id=95274
-
-        Reviewed by Sam Weinig.
-
-        Add a test plug-in that calls back into the page with info on the NPWindow passed
-        in to NPP_SetWindow.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/TestNetscapePlugIn/Tests/LogNPPSetWindow.cpp: Added.
-        (LogNPPSetWindow):
-        (LogNPPSetWindow::LogNPPSetWindow):
-        (LogNPPSetWindow::NPP_SetWindow):
-
-2012-08-29  Jon Lee  <jonlee@apple.com>
-
-        [Mac] Basic DRT support for web notifications
-        https://bugs.webkit.org/show_bug.cgi?id=79492
-        <rdar://problem/10357639>
-
-        Reviewed by Alexey Proskuryakov.
-
-        This patch implements the stubs for web notification support on DRT. Assume that when
-        Notification.requestPermission() is called, the user always chooses to allow it. This can be easily
-        overridden in layout tests with testRunner.denyWebNotificationPermission() when needed.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Add MockWebNotificationProvider.
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (createWebViewAndOffscreenWindow): Set MockWebNotificationProvider singleton as the provider for the
-        web view.
-        (resetWebViewToConsistentStateBeforeTesting): Make sure to reset the provider's state between each test.
-
-        * DumpRenderTree/mac/TestRunnerMac.mm:
-        (TestRunner::grantWebNotificationPermission): Set permission to granted for specified origin.
-        (TestRunner::denyWebNotificationPermission): Set permission to denied for specified origin.
-        (TestRunner::removeAllWebNotificationPermissions):
-        (TestRunner::simulateWebNotificationClick): Retrieve the notification ID from the JS notification object, and
-        simulate the click. This is similar to how WTR performs the click.
-        * DumpRenderTree/mac/UIDelegate.mm:
-        (-[UIDelegate webView:decidePolicyForNotificationRequestFromOrigin:listener:]): Assume when asked, the
-        user allows web notifications.
-
-        * DumpRenderTree/mac/MockWebNotificationProvider.h: Added. Maintains a list of registered web views, known permissions,
-        a map of notification IDs to WebNotification instances, and a map of the WebViews from which the notifications were dispatched.
-        * DumpRenderTree/mac/MockWebNotificationProvider.mm: Added.
-        (+[MockWebNotificationProvider shared]): The provider is a singleton.
-        (-[MockWebNotificationProvider init]): Instantiate the permissions map.
-        (-[MockWebNotificationProvider registerWebView:]):
-        (-[MockWebNotificationProvider unregisterWebView:]):
-        (-[MockWebNotificationProvider showNotification:fromWebView:]): Add the notification to the maps. Tell the web view that the
-        notification did show.
-        (-[MockWebNotificationProvider cancelNotification:]): Tell the web view the notification did close.
-        (-[MockWebNotificationProvider notificationDestroyed:]): Remove the notification from the maps. Here we don't make a callback.
-        (-[MockWebNotificationProvider clearNotifications:]): Remove the specified notifications from the maps. Here we don't make a callback.
-        (-[MockWebNotificationProvider webView:didShowNotification:]): Delegate callback. Dispatch the show event.
-        (-[MockWebNotificationProvider webView:didClickNotification:]): Delegate callback. Dispatch the click event.
-        (-[MockWebNotificationProvider webView:didCloseNotifications:]): Delegate callback. Dispatch the close event.
-        (-[MockWebNotificationProvider simulateWebNotificationClick:]): Tell the web view we clicked the notification.
-        (-[MockWebNotificationProvider policyForOrigin:]): Look in the permission dictionary.
-        (-[MockWebNotificationProvider setWebNotificationOrigin:permission:]): Set the permission for the origin in the dictionary.
-        (-[MockWebNotificationProvider removeAllWebNotificationPermissions]): Clear the permission map.
-        (-[MockWebNotificationProvider reset]): Remove all mappings and permissions.
-
-2012-08-29  Rob Buis  <rbuis@rim.com>
-
-        [BlackBerry] Adjust wtf include header style
-        https://bugs.webkit.org/show_bug.cgi?id=95368
-
-        Reviewed by Yong Li.
-
-        Switch to #include <wtf/...> like the other ports.
-
-        * DumpRenderTree/blackberry/DumpRenderTree.cpp:
-        * DumpRenderTree/blackberry/PNGImageEncoder.cpp:
-        * DumpRenderTree/blackberry/PNGImageEncoder.h:
-        * DumpRenderTree/blackberry/PixelDumpSupportBlackBerry.cpp:
-        * DumpRenderTree/blackberry/PixelDumpSupportBlackBerry.h:
-        * DumpRenderTree/blackberry/WorkQueueItemBlackBerry.cpp:
-
-2012-08-29  Roger Fong  <roger_fong@apple.com>
-
-        Update cygwin-downloader.zip to match modified downloader script.
-        https://bugs.webkit.org/show_bug.cgi?id=76936
-
-        Rubber Stamped by Jon Honeycutt.
-
-        cygwin-downloader.py was modified in http://trac.webkit.org/changeset/126948.
-        Updating zip to reflect changes.
-
-        * CygwinDownloader/cygwin-downloader.zip:
-
-2012-08-29  Dominik Röttsches  <dominik.rottsches@intel.com>
-
-        Stylechecker warns about comparison to zero when comparing to 0.5
-        https://bugs.webkit.org/show_bug.cgi?id=94913
-
-        Reviewed by Dirk Pranke.
-
-        According to the python documentation, \W is the character group with all
-        non-alphanumeric characters, equivalent to [^a-zA-Z0-9_], which is equal to
-        to [^\w]. We need to exclude the dot "." as well, so that floating point
-        values do not trigger this warning. Adding a unit test that shows the problem.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (check_for_comparisons_to_zero): Modifying the regex to not get triggered by comparing to floats.
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (WebKitStyleTest.test_null_false_zero): Unit test exposing this issue.
-
-2012-08-29  Jon Lee  <jonlee@apple.com>
-
-        WTR build fixes.
-
-        * WebKitTestRunner/CMakeLists.txt:
-        * WebKitTestRunner/GNUmakefile.am:
-        * WebKitTestRunner/Target.pri:
-        * WebKitTestRunner/WebNotificationProvider.cpp:
-        (WTR::WebNotificationProvider::showWebNotification): Make ML happier.
-        * WebKitTestRunner/win/WebKitTestRunner.vcproj:
-
-2012-08-29  Jon Lee  <jonlee@apple.com>
-
-        [WK2] Basic WTR support for web notifications
-        https://bugs.webkit.org/show_bug.cgi?id=95154
-        <rdar://problem/12184492>
-
-        Reviewed by Alexey Proskuryakov.
-
-        Implement WTR support, without platform event output (bug 95233).
-
-        Legacy APIs will not be supported, since many of the tests are skipped
-        on ports that do test notifications, and the issue with using file:// as the origin means a lot of the permissions
-        tests won't work. Bugs 81048 and 81697 will track migrating the existing tests to use the new testRunner API, and move
-        the tests to http/tests/notifications.
-
-        Permissions will be handled only in the injected bundle. This allows tests to set permission synchronously, and not
-        require a chain of setTimeout()'s when writing a notification test. Clicking a notification, however, should
-        be invoked from the UIProcess.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::didReceiveMessage): When told to "Reset", clear out all of the permissions.
-        (WTR::InjectedBundle::postSimulateWebNotificationClick): Tell the bundle client to simulate a click based on the
-        notification's internal ID.
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::grantWebNotificationPermission): Manually set the permission using WKBundle SPI.
-        (WTR::TestRunner::denyWebNotificationPermission): Manually set the permission using WKBundle SPI.
-        (WTR::TestRunner::removeAllWebNotificationPermissions):
-        (WTR::TestRunner::simulateWebNotificationClick): Post a message through the injected bundle.
-        * WebKitTestRunner/InjectedBundle/TestRunner.h:
-
-        Because supporting web notifications goes beyond a couple functions, move all of the logic into a WebNotificationProvider
-        class.
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle): When the injected bundle sends a message to simulate a click,
-        TestInvocation forwards that request to the TestController.
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize): Set the provider.
-        (WTR::TestController::resetStateToConsistentValues): Tell the provider to reset.
-        (WTR::TestController::simulateWebNotificationClick): Tell the provider to simulate a user clicking on a platform notification.
-        * WebKitTestRunner/TestController.h: Holds an instance to the provider.
-
-        The provider maintains a pointer to one notification manager (presumably the web process associated with WTR), and a set
-        of notification IDs that have been "shown" by the platform. This allows us to simulate a click on a notification.
-        * WebKitTestRunner/WebNotificationProvider.h: Added.
-        * WebKitTestRunner/WebNotificationProvider.cpp: Added.
-        (WTR::WebNotificationProvider::showWebNotification): Adds the notification to set of shown notifications. Notifies provider that
-        the notification got shown.
-        (WTR::WebNotificationProvider::closeWebNotification): Removes the notification from the set. Notifies provider that the notification
-        got closed.
-        (WTR::WebNotificationProvider::addNotificationManager): Maintains one manager, which is fine for testing purposes.
-        (WTR::WebNotificationProvider::removeNotificationManager): Maintains one manager.
-        (WTR::WebNotificationProvider::notificationPermissions): When the web process starts, it maintains an initial set of known
-        permissions. For testing purposes, we always want this set to be empty.
-        (WTR::WebNotificationProvider::simulateWebNotificationClick): Notifies provider that the notification got "clicked".
-        (WTR::WebNotificationProvider::reset): To reset the state, we pretend that we closed all of the platform notifications.
-
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj: Add WebNotificationProvider.
-
-2012-08-29  Kamil Blank  <k.blank@samsung.com>
-
-        [EFL] Add setting API for allow universal/file access from file URLs.
-        https://bugs.webkit.org/show_bug.cgi?id=83121
-
-        Reviewed by Eric Seidel.
-
-        Implementation of setAllowUniversalAccessFromFileURLs and setAllowFileAccessFromFileURLs.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        (TestRunner::setAllowUniversalAccessFromFileURLs):
-        (TestRunner::setAllowFileAccessFromFileURLs):
-
-2012-08-29  Jon Lee  <jonlee@apple.com>
-
-        Update TestRunner API for web notifications
-        https://bugs.webkit.org/show_bug.cgi?id=95093
-        <rdar://problem/12179649>
-
-        Reviewed by Alexey Proskuryakov.
-
-        As it turns out the patch for this accidentally got squashed into the commit for
-        bug 95099 (r126909). This amendment patch adds some comments about the renaming
-        of the older TestRunner API for web notifications.
-
-        * DumpRenderTree/TestRunner.h:
-        (TestRunner):
-
-2012-08-29  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r126972.
-        http://trac.webkit.org/changeset/126972
-        https://bugs.webkit.org/show_bug.cgi?id=95349
-
-        accessibility/canvas-description-and-role.html has been
-        failing consistently on several bots and Dominic needs some
-        time to investigate why (Requested by jchaffraix on #webkit).
-
-        * DumpRenderTree/chromium/TestRunner/AccessibilityUIElementChromium.cpp:
-        (roleToString):
-
-2012-08-29  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        [EFL] Resolve CMake warnings on overlapping search paths for EFL jhbuild-enabled build
-        https://bugs.webkit.org/show_bug.cgi?id=84707
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Most of the warnings have been fixed now that FindCairo.cmake and
-        FindGLIB.cmake have been rewritten. The remaining one, related to
-        FindFontconfig.cmake, shows up when building on a 64-bit
-        Debian-based systems.
-
-        jhbuild installs libraries into lib64/ by default on 64-bit Linux
-        installations, while CMake does not look for libraries in lib64/
-        when /etc/debian_version exists on the system. The FIND_LIBRARY()
-        would then sometimes end up using the system installation instead of
-        the jhbuild one, causing mismatches and, when pkg-config is not used
-        at all, failing to find libraries altogether.
-
-        * efl/jhbuildrc: Set the CMAKE_LIBRARY_PATH environment variable
-        when use_lib64 is set to force CMake to look into lib64/ regardless
-        of the presence of /etc/debian_version.
-
-2012-08-29  Dominik Röttsches  <dominik.rottsches@intel.com>
-
-        The 2d.imageData.object.round canvas test is failing
-        https://bugs.webkit.org/show_bug.cgi?id=40272
-
-        Reviewed by Benjamin Poulain.
-
-        Updating patch to address Benjamin's review comments.
-        Adding a WTF test to test lrint implementation.
-
-        * TestWebKitAPI/CMakeLists.txt: Added MathExtras.cpp test file.
-        * TestWebKitAPI/GNUmakefile.am: Added MathExtras.cpp test file.
-        * TestWebKitAPI/TestWebKitAPI.gypi: Added MathExtras.cpp test file.
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj: Added MathExtras.cpp test file.
-        * TestWebKitAPI/Tests/WTF/MathExtras.cpp: Added this test file containing a test for lrint().
-        (TestWebKitAPI):
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj: Added MathExtras.cpp test file.
-
-2012-08-29  Florin Malita  <fmalita@chromium.org>
-
-        Unreviewed, updating Kelly Norton's email address at his request.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-08-29  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
-
-        [NRWT] The nrwt should check the contents of the skipped files with --lint-test-files
-        https://bugs.webkit.org/show_bug.cgi?id=93723
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectationParser.expectation_for_skipped_test):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (SkippedTests.test_skipped_entry_dont_exist):
-
-2012-08-29  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r120113.
-        http://trac.webkit.org/changeset/120113
-        https://bugs.webkit.org/show_bug.cgi?id=95320
-
-        Wrong fix for the problem, experimentally rolling it out for
-        bug 95237. (Requested by rakuco on #webkit).
-
-        * efl/jhbuildrc:
-
-2012-08-29  Dominic Mazzoni  <dmazzoni@google.com>
-
-        AX: Canvas should have a distinct role
-        https://bugs.webkit.org/show_bug.cgi?id=95248
-
-        Reviewed by Chris Fleizach.
-
-        Add support for canvas accessibility role.
-
-        * DumpRenderTree/chromium/TestRunner/AccessibilityUIElementChromium.cpp:
-        (roleToString):
-
-2012-08-28  Eric Seidel  <eric@webkit.org>
-
-        cr-ews bot doesn't set CWD correctly when zipping layout test results
-        https://bugs.webkit.org/show_bug.cgi?id=91265
-
-        Reviewed by Kenneth Russell.
-
-        This should make the zips slightly less cumbersome to deal with.
-
-        * Scripts/webkitpy/common/system/workspace.py:
-        (Workspace.create_zip):
-        * Scripts/webkitpy/common/system/workspace_unittest.py:
-        (WorkspaceTest.test_create_zip):
-        (WorkspaceTest.test_create_zip_exception):
-
-2012-08-28  Benjamin Poulain  <benjamin@webkit.org>
-
-        Fix the Commiters script
-
-        Unreviewed.
-
-        Remove Roger Fong from the Contributor list, he appears in the Commiter list since r126949.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-08-28  Roger Fong  <roger_fong@apple.com>
-
-        Unreviewed. Adding myself to committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-08-28  Roger Fong  <roger_fong@apple.com>
-
-        Add minires to list of required cygwin install packages.
-        https://bugs.webkit.org/show_bug.cgi?id=76936
-
-        Reviewed by Tim Horton.
-
-        * CygwinDownloader/cygwin-downloader.py:
-
-2012-08-28  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] Upstream layout test expectations (Part 2)
-        https://bugs.webkit.org/show_bug.cgi?id=95212
-
-        Reviewed by Adam Barth.
-
-        - Now run both gpu path and non-gpu path of 2d canvas layout tests
-        because both are used in chromium-android.
-
-        - Exclude all webgl tests because webgl is not enabled yet.
-
-        - Removed 'win' from the baseline fallback list. This was a mistake.
-
-        - Moved some small directories to TestExpectations from skipped_layout_tests().
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort):
-        (ChromiumAndroidPort.skipped_layout_tests):
-
-2012-08-28  Joanmarie Diggs  <jdiggs@igalia.com>
-
-        Implement AccessibilityUIElement::titleUIElement() and AccessibilityUIElement::stringValue()
-        https://bugs.webkit.org/show_bug.cgi?id=95185
-
-        Reviewed by Chris Fleizach.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::titleUIElement): Implemented
-        Gets the ATK_RELATION_LABELLED_BY target.
-        (AccessibilityUIElement::stringValue): Implemented for all roles but ATK_ROLE_PANEL.
-        Gets the string from atk_text_get_text(). Will implement for ATK_ROLE_PANEL after
-        bug 95180 is fixed.
-
-2012-08-28  Dominic Mazzoni  <dmazzoni@google.com>
-
-        AX: Crash due to object getting deleted inside updateBackingStore
-        https://bugs.webkit.org/show_bug.cgi?id=94619
-
-        Reviewed by Chris Fleizach.
-
-        Change isValid to !isDetached after deleting isValid from
-        chromium WebAccessibilityObject as being redundant.
-
-        * DumpRenderTree/chromium/TestRunner/AccessibilityUIElementChromium.cpp:
-        (AccessibilityUIElement::isValidGetterCallback):
-
-2012-08-28  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r126914.
-        http://trac.webkit.org/changeset/126914
-        https://bugs.webkit.org/show_bug.cgi?id=95239
-
-        it breaks everything and fixes nothing (Requested by pizlo on
-        #webkit).
-
-        * DumpRenderTree/chromium/MockWebSpeechInputController.cpp:
-        (MockWebSpeechInputController::addMockRecognitionResult):
-        * DumpRenderTree/chromium/NotificationPresenter.cpp:
-        (NotificationPresenter::simulateClick):
-        (NotificationPresenter::show):
-        * DumpRenderTree/chromium/TestRunner/CppBoundClass.cpp:
-        (CppBoundClass::~CppBoundClass):
-        (CppBoundClass::invoke):
-        (CppBoundClass::getProperty):
-        (CppBoundClass::setProperty):
-        (CppBoundClass::bindCallback):
-        (CppBoundClass::bindProperty):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (applyFontMap):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::printResourceDescription):
-        * DumpRenderTree/mac/TestRunnerMac.mm:
-        (worldIDForWorld):
-        (TestRunner::evaluateScriptInIsolatedWorld):
-        * DumpRenderTree/win/AccessibilityControllerWin.cpp:
-        (AccessibilityController::~AccessibilityController):
-        (AccessibilityController::winNotificationReceived):
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp:
-        (ResourceLoadDelegate::descriptionSuitableForTestResult):
-        * DumpRenderTree/win/TestRunnerWin.cpp:
-        (worldIDForWorld):
-        (TestRunner::evaluateScriptInIsolatedWorld):
-        * TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionBasic_Bundle.cpp:
-        (TestWebKitAPI::DOMWindowExtensionBasic::willDestroyPage):
-        * TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionNoCache_Bundle.cpp:
-        (TestWebKitAPI::DOMWindowExtensionNoCache::willDestroyPage):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::worldIDForWorld):
-        (WTR::TestRunner::evaluateScriptInIsolatedWorld):
-
-2012-08-28  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
-
-        Rename first/second to key/value in HashMap iterators
-        https://bugs.webkit.org/show_bug.cgi?id=82784
-
-        Reviewed by Eric Seidel.
-
-        * DumpRenderTree/chromium/MockWebSpeechInputController.cpp:
-        (MockWebSpeechInputController::addMockRecognitionResult):
-        * DumpRenderTree/chromium/NotificationPresenter.cpp:
-        (NotificationPresenter::simulateClick):
-        (NotificationPresenter::show):
-        * DumpRenderTree/chromium/TestRunner/CppBoundClass.cpp:
-        (CppBoundClass::~CppBoundClass):
-        (CppBoundClass::invoke):
-        (CppBoundClass::getProperty):
-        (CppBoundClass::setProperty):
-        (CppBoundClass::bindCallback):
-        (CppBoundClass::bindProperty):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (applyFontMap):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::printResourceDescription):
-        * DumpRenderTree/mac/TestRunnerMac.mm:
-        (worldIDForWorld):
-        (TestRunner::evaluateScriptInIsolatedWorld):
-        * DumpRenderTree/win/AccessibilityControllerWin.cpp:
-        (AccessibilityController::~AccessibilityController):
-        (AccessibilityController::winNotificationReceived):
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp:
-        (ResourceLoadDelegate::descriptionSuitableForTestResult):
-        * DumpRenderTree/win/TestRunnerWin.cpp:
-        (worldIDForWorld):
-        (TestRunner::evaluateScriptInIsolatedWorld):
-        * TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionBasic_Bundle.cpp:
-        (TestWebKitAPI::DOMWindowExtensionBasic::willDestroyPage):
-        * TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionNoCache_Bundle.cpp:
-        (TestWebKitAPI::DOMWindowExtensionNoCache::willDestroyPage):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::worldIDForWorld):
-        (WTR::TestRunner::evaluateScriptInIsolatedWorld):
-
-2012-08-27  Jon Lee  <jonlee@apple.com>
-
-        Update TestRunner API for web notifications
-        https://bugs.webkit.org/show_bug.cgi?id=95093
-        <rdar://problem/12179649>
-
-        Reviewed by Jessie Berlin.
-
-        This is work toward providing Mac support for web notifications in DRT and WTR (77969).
-
-        Some of the legacy APIs are less than ideal, and not tenable with the WTR infrastructure.
-        This first patch renames the TestRunner calls to use the term "web notifications" instead of
-        "desktop notifications", deprecates a couple API calls that are not used by anyone, and adds
-        additional calls that will be used in the tests that test the standard API.
-
-        * DumpRenderTree/TestRunner.h:
-        (TestRunner): For consistency, rename a couple member variables. Remove unused checkDesktopNotificationPermission()
-        and areDesktopNotificationPermissionRequestsIgnored(). Remove origin mapping since each port implements its own solution.
-        * DumpRenderTree/TestRunner.cpp: Push grantWebNotificationPermission() to individual ports.
-        (TestRunner::TestRunner):
-        (ignoreLegacyWebNotificationPermissionRequestsCallback): Renamed.
-        (simulateLegacyWebNotificationClickCallback): Renamed.
-        (grantWebNotificationPermissionCallback): Renamed.
-        (denyWebNotificationPermissionCallback): Added.
-        (removeAllWebNotificationPermissionsCallback): Added.
-        (simulateWebNotificationClickCallback): Added.
-        (TestRunner::staticFunctions):
-        (TestRunner::ignoreLegacyWebNotificationPermissionRequests):
-
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        (DRTTestRunner::DRTTestRunner): Added bindings for new APIs.
-        (DRTTestRunner::grantWebNotificationPermission):
-        (DRTTestRunner::denyWebNotificationPermission): Stub.
-        (DRTTestRunner::removeAllWebNotificationPermissions): Stub.
-        (DRTTestRunner::simulateWebNotificationClick): Stub.
-        (DRTTestRunner::simulateLegacyWebNotificationClick):
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        (DRTTestRunner):
-
-        Added stubs.
-        * DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp:
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        * DumpRenderTree/gtk/TestRunnerGtk.cpp:
-        * DumpRenderTree/mac/TestRunnerMac.mm: Later patch will contain implementation of this API.
-        * DumpRenderTree/qt/TestRunnerQt.cpp: Added Qt-based stubs.
-        * DumpRenderTree/win/TestRunnerWin.cpp:
-
-2012-08-28  Szilard Ledan  <szledan@inf.u-szeged.hu>
-
-        [webkit-patch] gets stuck into an infinite loop if bugzilla doesn't respond in time.
-        https://bugs.webkit.org/show_bug.cgi?id=94700
-
-        Reviewed by Eric Seidel.
-
-        Interrupting download with a timeout would be a possible solution.
-        I imported the socket module and used the setdefaulttimeout() method.
-        Fixing it is important, because EWS bots need to be restarted regularly
-        because of this bug.
-
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        (Bugzilla._get_browser):
-        (Bugzilla.setdefaulttimeout):
-
-2012-08-28  Gabor Rapcsanyi  <rgabor@webkit.org>
-
-        [Qt] Keep QT_QPA_PLATFORM_PLUGIN_PATH environment variable in NRWT
-        https://bugs.webkit.org/show_bug.cgi?id=95194
-
-        Reviewed by Simon Hausmann.
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort.setup_environ_for_server):
-
-2012-08-28  Andras Becsi  <andras.becsi@nokia.com>
-
-        [watchlist] Unreviewed, subscribe to Qt bugs.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-08-28  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] New test introduced in r126611 fails: fast/css/image-set-setting.html
-        https://bugs.webkit.org/show_bug.cgi?id=95054
-
-        Reviewed by Eric Seidel.
-
-        Enable CSS_IMAGE_SET for the Qt build.
-
-        * qmake/mkspecs/features/features.pri:
-
-2012-08-27  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Enable CSS sticky position
-        https://bugs.webkit.org/show_bug.cgi?id=95172
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/features.pri:
-
-2012-08-27  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] Memory cache should be cleared in between test runs
-        https://bugs.webkit.org/show_bug.cgi?id=95105
-
-        Reviewed by Martin Robinson.
-
-        Call the new DumpRenderTreeSupportGtk helper method after every test
-        to clear the memory cache.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (runTest):
-
-2012-08-27  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r126836.
-        http://trac.webkit.org/changeset/126836
-        https://bugs.webkit.org/show_bug.cgi?id=95163
-
-        Broke all Apple ports, EFL, and Qt. (Requested by tkent on
-        #webkit).
-
-        * DumpRenderTree/chromium/MockWebSpeechInputController.cpp:
-        (MockWebSpeechInputController::addMockRecognitionResult):
-        * DumpRenderTree/chromium/NotificationPresenter.cpp:
-        (NotificationPresenter::simulateClick):
-        (NotificationPresenter::show):
-        * DumpRenderTree/chromium/TestRunner/CppBoundClass.cpp:
-        (CppBoundClass::~CppBoundClass):
-        (CppBoundClass::invoke):
-        (CppBoundClass::getProperty):
-        (CppBoundClass::setProperty):
-        (CppBoundClass::bindCallback):
-        (CppBoundClass::bindProperty):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (applyFontMap):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::printResourceDescription):
-        * DumpRenderTree/win/AccessibilityControllerWin.cpp:
-        (AccessibilityController::~AccessibilityController):
-        (AccessibilityController::winNotificationReceived):
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp:
-        (ResourceLoadDelegate::descriptionSuitableForTestResult):
-        * DumpRenderTree/win/TestRunnerWin.cpp:
-        (worldIDForWorld):
-        (TestRunner::evaluateScriptInIsolatedWorld):
-        * TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionBasic_Bundle.cpp:
-        (TestWebKitAPI::DOMWindowExtensionBasic::willDestroyPage):
-        * TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionNoCache_Bundle.cpp:
-        (TestWebKitAPI::DOMWindowExtensionNoCache::willDestroyPage):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::worldIDForWorld):
-        (WTR::TestRunner::evaluateScriptInIsolatedWorld):
-
-2012-08-27  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
-
-        Rename first/second to key/value in HashMap iterators
-        https://bugs.webkit.org/show_bug.cgi?id=82784
-
-        Reviewed by Eric Seidel.
-
-        * DumpRenderTree/chromium/MockWebSpeechInputController.cpp:
-        (MockWebSpeechInputController::addMockRecognitionResult):
-        * DumpRenderTree/chromium/NotificationPresenter.cpp:
-        (NotificationPresenter::simulateClick):
-        (NotificationPresenter::show):
-        * DumpRenderTree/chromium/TestRunner/CppBoundClass.cpp:
-        (CppBoundClass::~CppBoundClass):
-        (CppBoundClass::invoke):
-        (CppBoundClass::getProperty):
-        (CppBoundClass::setProperty):
-        (CppBoundClass::bindCallback):
-        (CppBoundClass::bindProperty):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (applyFontMap):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::printResourceDescription):
-        * DumpRenderTree/win/AccessibilityControllerWin.cpp:
-        (AccessibilityController::~AccessibilityController):
-        (AccessibilityController::winNotificationReceived):
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp:
-        (ResourceLoadDelegate::descriptionSuitableForTestResult):
-        * DumpRenderTree/win/TestRunnerWin.cpp:
-        (worldIDForWorld):
-        (TestRunner::evaluateScriptInIsolatedWorld):
-        * TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionBasic_Bundle.cpp:
-        (TestWebKitAPI::DOMWindowExtensionBasic::willDestroyPage):
-        * TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionNoCache_Bundle.cpp:
-        (TestWebKitAPI::DOMWindowExtensionNoCache::willDestroyPage):
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp:
-        (WTR::TestRunner::worldIDForWorld):
-        (WTR::TestRunner::evaluateScriptInIsolatedWorld):
-
-2012-08-24  James Robinson  <jamesr@chromium.org>
-
-        WebGL should not flip textures on presentation if contents are unchanged
-        https://bugs.webkit.org/show_bug.cgi?id=94961
-
-        Reviewed by Kenneth Russell.
-
-        Run some compositing webgl tests in threaded mode to catch regressions specific to that mode.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.virtual_test_suites):
-
-2012-08-27  Gavin Peters  <gavinp@chromium.org>
-
-        [webkit-patch] Don't crash chrome-channels command when a previously unknown platform shows up.
-        https://bugs.webkit.org/show_bug.cgi?id=95104
-
-        Reviewed by Adam Barth.
-
-        Today I found out this command was broken by the new iOS platform showing up on omahaproxy. Now the webkit-patch chrome-channels command gracefully handles new, previously unknown platforms. Also, it prints iOS in the proper mixed case.
-
-        * Scripts/webkitpy/common/net/omahaproxy.py:
-        (OmahaProxy):
-        (OmahaProxy.get_revisions):
-        * Scripts/webkitpy/common/net/omahaproxy_unittest.py:
-        (OmahaProxyTest):
-        (OmahaProxyTest.test_get_revisions):
-
-2012-08-27  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL][WK2] Free Url_Bar on program exit
-        https://bugs.webkit.org/show_bug.cgi?id=95086
-
-        Reviewed by Eric Seidel.
-
-        Fix a memory leak by freeing the Url_Bar on program exit.
-
-        * MiniBrowser/efl/main.c:
-        (main): Call url_bar_del() to free the Url_Bar.
-
-2012-08-27  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Fix exit code status logic in run-chromium-webkit-unit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=95115
-
-        Reviewed by Adam Barth.
-
-        Use VCSUtils utility function to check if webkit_unit_tests terminates normally so we generate a non-zero exit
-        code if the unit tests crash.
-
-        * Scripts/run-chromium-webkit-unit-tests:
-
-2012-08-27  Benjamin Poulain  <benjamin@webkit.org>
-
-        Add ECMAScript Number to String conversion to WTF::String
-        https://bugs.webkit.org/show_bug.cgi?id=95016
-
-        Reviewed by Geoffrey Garen.
-
-        * TestWebKitAPI/Tests/WTF/WTFString.cpp:
-        (TestWebKitAPI::testNumberToStringECMAScript):
-        (TestWebKitAPI): Add tests for String's ECMAString number conversion.
-
-2012-08-27  Philippe Normand  <pnormand@igalia.com>
-
-        [GStreamer][Qt] WebAudio support
-        https://bugs.webkit.org/show_bug.cgi?id=94806
-
-        Reviewed by Simon Hausmann.
-
-        * MiniBrowser/qt/qml/BrowserWindow.qml: Enable WebAudio support.
-
-2012-08-27  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        Rename RegisterProtocolHandler API to NavigatorContentUtils
-        https://bugs.webkit.org/show_bug.cgi?id=94920
-
-        Reviewed by Adam Barth.
-
-        Renamed 'register-protocol-handler' feature to 'navigator-content-utils'.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2012-08-24  Benjamin Poulain  <bpoulain@apple.com>
-
-        Unify Number to StringImpl conversion
-        https://bugs.webkit.org/show_bug.cgi?id=94879
-
-        Reviewed by Geoffrey Garen.
-
-        Add testing for the new IntegerToStringConversion.
-
-        * TestWebKitAPI/CMakeLists.txt:
-        * TestWebKitAPI/GNUmakefile.am:
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WTF/IntegerToStringConversion.cpp: Added.
-
-2012-08-23  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Convert WebLayerTreeView interface into pure virtual
-        https://bugs.webkit.org/show_bug.cgi?id=94866
-
-        Reviewed by Adrienne Walker.
-
-        Updates DumpRenderTree's WebViewHost to vend a WebCompositorOutputSurface so DumpRenderTree can run compositing
-        tests.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createOutputSurface):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-        * DumpRenderTree/chromium/WebViewHostOutputSurface.cpp: Copied from Source/WebKit/chromium/src/WebLayerTreeViewImpl.h.
-        (WebKit):
-        (WebKit::WebViewHostOutputSurface::WebViewHostOutputSurface):
-        (WebKit::WebViewHostOutputSurface::~WebViewHostOutputSurface):
-        (WebKit::WebViewHostOutputSurface::bindToClient):
-        (WebKit::WebViewHostOutputSurface::capabilities):
-        (WebKit::WebViewHostOutputSurface::context3D):
-        (WebKit::WebViewHostOutputSurface::sendFrameToParentCompositor):
-        * DumpRenderTree/chromium/WebViewHostOutputSurface.h: Copied from Source/WebKit/chromium/src/WebLayerTreeViewImpl.h.
-        (WebKit):
-        (WebViewHostOutputSurface):
-
-2012-08-24  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] Many 'Unexpected EOF ...' when a test crashes
-        https://bugs.webkit.org/show_bug.cgi?id=94865
-
-        Reviewed by Dirk Pranke.
-
-        Android detects crash of test by checking if the return value of read() is None.
-        Added a parameter 'treat_no_data_as_crash' to let ServerProcess know the special requirement of Android.
-        If set, ServerProcess will set _crashed unconditionaly when there is no data.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.__init__):
-        (ChromiumAndroidPort):
-        (ChromiumAndroidPort._android_server_process_constructor):
-        (ChromiumAndroidDriver._start_once):
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        (ServerProcess.__init__):
-        (ServerProcess._wait_for_data_and_update_buffers_using_select):
-
-2012-08-24  Arnaud Renevier  <a.renevier@sisa.samsung.com>
-
-        build-webkit --gtk fails with Can't exec ""
-        https://bugs.webkit.org/show_bug.cgi?id=94944
-
-        Reviewed by Martin Robinson.
-
-        When jhbuild wrapper is not needed, do unshift a blank string to build
-        arguments.
-
-        * Scripts/webkitdirs.pm:
-        (runAutogenForAutotoolsProjectIfNecessary):
-
-2012-08-24  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: Add readyState functionality to RTCPeerConnection
-        https://bugs.webkit.org/show_bug.cgi?id=94813
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp:
-        (MockWebRTCPeerConnectionHandler::MockWebRTCPeerConnectionHandler):
-        (MockWebRTCPeerConnectionHandler::stop):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.h:
-        (MockWebRTCPeerConnectionHandler):
-
-2012-08-24  Michael Brüning  <michaelbruening@gmail.com>
-
-        Unreviewed. Adding myself to committers list.
-
-        Also updated email information.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-08-24  Michael Brüning  <michaelbruening@gmail.com>
-
-        [Qt][WK2] Make viewport related experimental.test properties encapsulated.
-        https://bugs.webkit.org/show_bug.cgi?id=88320
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Changed the access to the viewport attributes to use the viewport object that is introduced by this change.
-
-        * MiniBrowser/qt/qml/ViewportInfoItem.qml:
-
-2012-08-23  Dirk Pranke  <dpranke@chromium.org>
-
-        leak detection broken after r126247 on mac
-        https://bugs.webkit.org/show_bug.cgi?id=94893
-
-        Unreviewed, build fix.
-
-        Adds is_snowleopard(), is_lion back() in for the mac port. We'll
-        probably need an is_mountainlion() or equivalent at some point,
-        I'm guessing (but I've deleted the leopard code).
-
-        * Scripts/webkitpy/layout_tests/port/leakdetector.py:
-        (LeakDetector._callstacks_to_exclude_from_leaks):
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort):
-        (MacPort.is_snowleopard):
-        (MacPort.is_lion):
-
-2012-08-23  Julien Chaffraix  <jchaffraix@webkit.org>
-
-        [Chromium] Enable AtomicString && CString && WTFString && StringImpl unit tests
-        https://bugs.webkit.org/show_bug.cgi?id=94871
-
-        Reviewed by Benjamin Poulain.
-
-        * TestWebKitAPI/TestWebKitAPI.gypi:
-        Added the missing files to Chromium's build system.
-
-2012-08-23  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        [watchlist] Unreviewed, subscribe to WebKit2-EFL bugs.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-08-23  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Replay tests take forever to load
-        https://bugs.webkit.org/show_bug.cgi?id=94764
-
-        Reviewed by Adam Barth.
-
-        Don't load about:blank at the beginning. This appears to clog the DRT.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (ReplayPerfTest.run_single):
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py:
-        (TestReplayPerfTest.test_run_single):
-        (TestReplayPerfTest.test_run_single_fails_when_output_has_error):
-
-2012-08-23  Kenneth Russell  <kbr@google.com>
-
-        Unreviewed, rolling out r126497.
-        http://trac.webkit.org/changeset/126497
-        https://bugs.webkit.org/show_bug.cgi?id=94764
-
-        Caused webkitpy-test step to start failing.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (ReplayPerfTest.run_single):
-
-2012-08-23  Emil A Eklund  <eae@chromium.org>
-
-        Add saturation arithmetic support to FractionalLayoutUnit
-        https://bugs.webkit.org/show_bug.cgi?id=94364
-
-        Reviewed by Benjamin Poulain.
-
-        Add test for new saturatedArithmetic functions.
-
-        * TestWebKitAPI/CMakeLists.txt:
-        * TestWebKitAPI/GNUmakefile.am:
-        * TestWebKitAPI/TestWebKitAPI.gypi:
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WTF/SaturatedArithmeticOperations.cpp: Added.
-        (TestWebKitAPI):
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-
-2012-08-23  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Replay tests take forever to load
-        https://bugs.webkit.org/show_bug.cgi?id=94764
-
-        Reviewed by Adam Barth.
-
-        Don't load about:blank at the beginning. This appears to clog the DRT.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (ReplayPerfTest.run_single):
-
-2012-08-23  Wei Jia  <wjia@chromium.org>
-
-        create different WebKit::WebMediaPlayer based on URL
-        https://bugs.webkit.org/show_bug.cgi?id=91301
-
-        Reviewed by Adam Barth.
-
-        Pass URL to createMediaPlayer. This corresponds to change in base
-        class WebKit::WebFrameClient.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createMediaPlayer): add URL as additional argument.
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-08-23  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Unreviewed, upgrade gyuyoung to reviewer.
-        http://lists.webkit.org/pipermail/webkit-dev/2012-August/022004.html
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-08-23  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        REGRESSION(r126306): it broke the plugin process
-        https://bugs.webkit.org/show_bug.cgi?id=94797
-
-        Reviewed by Xan Lopez.
-
-        * GNUmakefile.am:
-
-2012-08-23  Ryuan Choi  <ryuan.choi@samsung.com>
-
-        [EFL] Add url bar to EWebLauncher and MiniBrowser/Efl.
-        https://bugs.webkit.org/show_bug.cgi?id=63966
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        EWebLauncher and MiniBrowser/Efl did not have functionality that users
-        navigates the site which they want.
-        This patch adds the urlbar and functionality to load url which users want.
-
-        * CMakeLists.txt:
-        Added to share urlbar theme for both EWebLauncher and MiniBrowser/Efl.
-        * EWebLauncher/CMakeLists.txt:
-        Added urlbar.c and dependency of urlbar theme.
-        In addition, changed macro name to THEME_DIR to share the code easily.
-        * EWebLauncher/ControlTheme/CMakeLists.txt: Added for urlbar theme.
-        * EWebLauncher/ControlTheme/entry.edc: Implemented urlbar theme.
-        * EWebLauncher/main.c:
-        Implemented to use the urlbar.
-        In addition, remove unnecessary border of webview to control webview and urlbar easily.
-        (_ELauncher):
-        (on_url_changed):
-        (browserCreate):
-        (closeWindow):
-        (findThemePath):
-        * EWebLauncher/url_bar.c: Implemented functionality of the urlbar.
-        (_url_bar_url_get_with_protocol):
-        (on_urlbar_key_down):
-        (on_urlbar_mouse_down):
-        (on_urlbar_focus_out):
-        (url_bar_add):
-        (url_bar_del):
-        (url_bar_url_set):
-        * EWebLauncher/url_bar.h: Added.
-        * MiniBrowser/efl/CMakeLists.txt:
-        * MiniBrowser/efl/main.c: Implemented to use the urlbar.
-        (_MiniBrowser):
-        (on_url_changed):
-        (browserCreate):
-
-2012-08-23  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [nrwt, WTR] Remove workaround for timeout handing from r126062
-        https://bugs.webkit.org/show_bug.cgi?id=94609
-
-        Reviewed by Dirk Pranke.
-
-        Don't try to reset state if a timeout occured but inform
-        the harness that the web process is no longer reliable.
-
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.run_test): Remove the workaround. Furthermore, handle the case when
-        the pid is unknown.
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::run):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::invoke):
-        (WTR::TestInvocation::dumpWebProcessUnresponsiveness):
-        * WebKitTestRunner/TestInvocation.h:
-        (TestInvocation):
-
-2012-08-23  Ádám Kallai  <kadam@inf.u-szeged.hu>
-
-        Unreviewed. Adding myself to committers list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-08-22  Alexis Menard  <alexis@webkit.org>
-
-        Unreviewed update of my email.
-
-        * Scripts/webkitpy/common/config/committers.py:
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-08-22  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix typos in r126374
-        https://bugs.webkit.org/show_bug.cgi?id=94665
-        Unreviewed, build fix.
-
-        Fix two issues that snuck in, one that caused a crash if there
-        were no baselines to optimize and one that occurred as a result
-        of failing to rename a variable when I changed the recursion to
-        a loop in the previous patch.
-
-        * Scripts/webkitpy/common/checkout/baselineoptimizer.py:
-        (BaselineOptimizer._optimize_by_pushing_results_up):
-
-2012-08-22  Dirk Pranke  <dpranke@chromium.org>
-
-        Baseline optimizer should try to optimize per-port if global optimization fails
-        https://bugs.webkit.org/show_bug.cgi?id=94665
-
-        Reviewed by Adam Barth.
-
-        Add a fallback strategy for optimizing baselines if the default
-        one fails; this one simply attempts to shift baselines up in the
-        tree and consolidates them if a parent and child in the fallback
-        path have the same result. This strategy is somewhat flawed in
-        that we will always put something in a parent dir even if we
-        "shouldn't"; for example, if chromium-mac produces a different
-        result from chromium-win and chromium-linux, then the new
-        algorithm will move the mac result into platform/chromium,
-        leaving chromium-mac empty. This result is still correct, but
-        perhaps confusing.
-
-        I haven't done much testing of this algorithm yet, so it's not
-        clear how many cases where this does a better job than the
-        default algorithm and how many it'll do a worse job.
-
-        * Scripts/webkitpy/common/checkout/baselineoptimizer.py:
-        (BaselineOptimizer._find_optimal_result_placement):
-        (BaselineOptimizer._optimize_by_most_specific_common_directory):
-        (BaselineOptimizer):
-        (BaselineOptimizer._optimize_by_pushing_results_up):
-        (BaselineOptimizer._find_in_fallbackpath):
-        * Scripts/webkitpy/common/checkout/baselineoptimizer_unittest.py:
-        (BaselineOptimizerTest.test_platform_mac_different):
-
-2012-08-22  Dirk Pranke  <dpranke@chromium.org>
-
-        add debug info, another test to webkit-patch optimize-baselines
-        https://bugs.webkit.org/show_bug.cgi?id=94762
-
-        Reviewed by Adam Barth.
-
-        This patch adds more debug logging for optimize-baselines so
-        that you can tell the before and after states and figure out
-        what the command is actually deciding to do.
-
-        Also, this command adds a (disabled) test for the problem in bug
-        94665. It's disabled because we don't have the fix yet (that
-        will be posted in a patch to that bug).
-
-        There should be no functional changes in this patch apart from
-        the additional logging.
-
-        Note that adding the debug logging exposed a bug in
-        filesystem_mock.relpath() (that would return None if the path
-        wasn't a subpath of the start); the real relpath computes a
-        relpath with parent dirs. Fixing this revealed a bad check in
-        the style checker's change_directory() call which was checking
-        for None.
-
-        * Scripts/webkitpy/common/checkout/baselineoptimizer.py:
-        (BaselineOptimizer._find_optimal_result_placement):
-        (BaselineOptimizer):
-        (BaselineOptimizer._optimize_by_most_specific_common_directory):
-        (BaselineOptimizer._move_baselines):
-        (BaselineOptimizer.optimize):
-        * Scripts/webkitpy/common/checkout/baselineoptimizer_unittest.py:
-        (BaselineOptimizerTest.disabled_test_platform_mac_different):
-        * Scripts/webkitpy/common/system/filesystem.py:
-        (FileSystem):
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        (MockFileSystem):
-        (MockFileSystem.__init__):
-        (MockFileSystem.relpath):
-        * Scripts/webkitpy/common/system/filesystem_unittest.py:
-        (RealFileSystemTest.test_sep):
-        * Scripts/webkitpy/style/main.py:
-        (change_directory):
-
-2012-08-22  Alejandro Piñeiro  <apinheiro@igalia.com>
-
-        Dojo toggle buttons should expose ROLE_TOGGLE_BUTTON not ROLE_PUSH_BUTTON
-        https://bugs.webkit.org/show_bug.cgi?id=73819
-
-        Reviewed by Chris Fleizach.
-
-        Added a new role, Toggle Button, based on whether aria-pressed is present.
-        http://www.w3.org/TR/wai-aria/states_and_properties#aria-pressed
-
-        * DumpRenderTree/chromium/TestRunner/AccessibilityUIElementChromium.cpp:
-        (roleToString): added "ToggleButton" string for WebAccessibilityRoleToggleButton
-
-2012-08-23  Victor Carbune  <victor@rosedu.org>
-
-        Add myself to the committer list
-        https://bugs.webkit.org/show_bug.cgi?id=94659
-
-        Reviewed by James Robinson.
-
-        Added my email and IRC handle.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-08-22  Scott Graham  <scottmg@chromium.org>
-
-        Don't unconditionally define NOMINMAX on Windows
-        https://bugs.webkit.org/show_bug.cgi?id=94742
-
-        Reviewed by Adrienne Walker.
-
-        Avoids a warning when building on Windows when NOMINMAX is defined
-        elsewhere or on the command line.
-
-        * TestWebKitAPI/config.h:
-
-2012-08-22  Zan Dobersek  <zandobersek@gmail.com>
-
-        REGRESSION(r126189): Reftest mismatches are (again) run through ImageDiff with 0.1 tolerance
-        https://bugs.webkit.org/show_bug.cgi?id=94704
-
-        Reviewed by Dirk Pranke.
-
-        Use tolerance=0 when acquiring diff image of reftest output.
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner._compare_output_with_reference):
-
-2012-08-22  Tommy Widenflycht  <tommyw@google.com>
-
-        [chromium] MediaStream API: Add MockWebRTCPeerConnectionHandler
-        https://bugs.webkit.org/show_bug.cgi?id=93091
-
-        Reviewed by Adam Barth.
-
-        Add a skeleton MockWebRTCPeerConnectionHandler to DumpRenderTree,
-        to complete the infrastructure for RTCPeerConnection.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/MockWebKitPlatformSupport.cpp:
-        (MockWebKitPlatformSupport::createRTCPeerConnectionHandler):
-        * DumpRenderTree/chromium/MockWebKitPlatformSupport.h:
-        (MockWebKitPlatformSupport):
-        * DumpRenderTree/chromium/MockWebMediaStreamCenter.cpp:
-        * DumpRenderTree/chromium/MockWebMediaStreamCenter.h:
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp: Copied from Tools/DumpRenderTree/chromium/MockWebKitPlatformSupport.h.
-        (MockWebRTCPeerConnectionHandler::MockWebRTCPeerConnectionHandler):
-        (MockWebRTCPeerConnectionHandler::initialize):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.h: Copied from Tools/DumpRenderTree/chromium/MockWebKitPlatformSupport.h.
-        (WebKit):
-        (MockWebRTCPeerConnectionHandler):
-        (MockWebRTCPeerConnectionHandler::MockWebRTCPeerConnectionHandler):
-
-2012-08-21  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Merge TestExpectationSerializer into TestExpectationLine
-        https://bugs.webkit.org/show_bug.cgi?id=94638
-
-        Reviewed by Dimitri Glazkov.
-
-        Moved all methods except, list_to_string which was moved to TestExpectations
-        from TestExpectationSerializer to TestExpectationLine and removed TestExpectationSerializer.
-
-        * Scripts/webkitpy/layout_tests/controllers/test_expectations_editor_unittest.py:
-        (TestExpectationEditorTests.assert_remove_roundtrip):
-        (TestExpectationEditorTests.assert_update_roundtrip):
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (ParseError.__repr__):
-        (TestExpectationLine):
-        (TestExpectationLine.create_passing_expectation):
-        (TestExpectationLine.to_string): Moved from TestExpectationSerializer.
-        (TestExpectationLine.to_csv): Ditto.
-        (TestExpectationLine._serialize_parsed_expectations): Ditto.
-        (TestExpectationLine._serialize_parsed_modifiers): Ditto.
-        (TestExpectationLine._format_line):
-        (TestExpectations.remove_configuration_from_test):
-        (TestExpectations.remove_rebaselined_tests):
-        (TestExpectations.add_skipped_tests):
-        (TestExpectations):
-        (TestExpectations.list_to_string): Moved from TestExpectationSerializer.
-        (TestExpectations.list_to_string.serialize):
-        (TestExpectations.list_to_string.nones_out):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (TestExpectationSerializationTests): Renamed from TestExpectationSerializerTests.
-        (TestExpectationSerializationTests.__init__):
-        (TestExpectationSerializationTests.assert_round_trip):
-        (TestExpectationSerializationTests.assert_list_round_trip):
-        (TestExpectationSerializationTests.test_unparsed_to_string):
-        (TestExpectationSerializationTests.test_unparsed_list_to_string):
-        (TestExpectationSerializationTests.test_parsed_to_string):
-        (TestExpectationSerializationTests.test_serialize_parsed_expectations):
-        (TestExpectationSerializationTests.test_serialize_parsed_modifier_string):
-        (TestExpectationSerializationTests.test_format_line):
-        (TestExpectationSerializationTests.test_reconstitute_only_these):
-        * Scripts/webkitpy/tool/commands/expectations.py:
-        (OptimizeExpectations.execute):
-        * Scripts/webkitpy/tool/commands/queries.py:
-        (PrintExpectations.execute):
-        (PrintExpectations._format_lines):
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        (GardeningExpectationsUpdater.update_expectations):
-
-2012-08-22  Alexandre Elias  <aelias@chromium.org>
-
-        Unreviewed, add aelias@chromium.org to committers
-
-        I (aelias@chromium.org) have been approved for commit access and Apple
-        has confirmed receipt of my committer agreement.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-08-22  Alexey Proskuryakov  <ap@apple.com>
-
-        [WK2] Support posting injected bundle messages to a page
-        https://bugs.webkit.org/show_bug.cgi?id=94630
-
-        Reviewed by Sam Weinig.
-
-        * MiniBrowser/mac/WebBundle/WebBundleMain.m:
-        * TestWebKitAPI/InjectedBundleController.cpp:
-        (TestWebKitAPI::InjectedBundleController::initialize):
-        (TestWebKitAPI::InjectedBundleController::didReceiveMessageToPage):
-        * TestWebKitAPI/InjectedBundleController.h:
-        * TestWebKitAPI/InjectedBundleTest.h:
-        (TestWebKitAPI::InjectedBundleTest::didReceiveMessageToPage):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::didReceiveMessage):
-        (WTR::InjectedBundle::didReceiveMessageToPage):
-        (WTR::InjectedBundle::initialize):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        Updated for new client API call.
-
-2012-08-22  Dominic Mazzoni  <dmazzoni@google.com>
-
-        REGRESSION (r125710): accessibility/accessibility-node-reparent.html, accessibility/accessibility-node-memory-management.html failing on GTK Linux
-        https://bugs.webkit.org/show_bug.cgi?id=94200
-
-        Reviewed by Chris Fleizach.
-
-        Adds reference counting for AtkObjects referenced by
-        AccessibilityUIElementGtk. This prevents bogus results and
-        assertion failures on AccessibilityUIElements whose underlying
-        object has been deleted (as opposed to just made defunct).
-
-        This fixes two tests that were previously failing because of this bug.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::AccessibilityUIElement):
-        (AccessibilityUIElement::~AccessibilityUIElement):
-
-2012-08-22  Gustavo Noronha Silva  <gns@gnome.org>
-
-        [GTK] Split WebCore/platform into a separate library
-        https://bugs.webkit.org/show_bug.cgi?id=94435
-
-        Reviewed by Martin Robinson.
-
-        More people have been reporting problems when linking WebCore because
-        the command line limit is being exceeded. Splitting WebCore a bit more
-        is in order.
-
-        * GNUmakefile.am: link libWebCorePlatform into DRT
-
-2012-08-22  Allan Sandfeld Jensen  <allan.jensen@nokia.com>
-
-        Unreviewed buildfix for Qt-minimal after r126291
-
-        Disable smooth scrolling when request-animation-frame has been disabled either
-        explicitly or as part of --minimal.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-08-22  Allan Sandfeld Jensen  <allan.jensen@nokia.com>
-
-        [Qt] Optionally support smooth-scrolling on all platforms
-        https://bugs.webkit.org/show_bug.cgi?id=74926
-
-        Reviewed by Simon Hausmann.
-
-        Enabled SMOOTH_SCROLLING on Qt, and expose the enable scroll animator
-        setting in QtTestBrowser so it can be tested.
-
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::createChrome):
-        (LauncherWindow::toggleScrollAnimator):
-        * QtTestBrowser/launcherwindow.h:
-        (WindowOptions::WindowOptions):
-        (WindowOptions):
-        (LauncherWindow):
-        * qmake/mkspecs/features/features.pri:
-
-2012-08-22  Dominik Röttsches  <dominik.rottsches@intel.com>
-
-        Unreviewed, adding myself to committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-08-21  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [GTK] contextClick and getMenuItemTitle callbacks are leaky in DRT's EventSender
-        https://bugs.webkit.org/show_bug.cgi?id=94669
-
-        Reviewed by Carlos Garcia Campos.
-
-        Fix memory leaks in DRT's EventSender code.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (getMenuItemTitleCallback): Use JSRetainPtr and don't leak.
-        (contextClickCallback): Use GOwnPtr to manage memory of a
-        newly-allocated list automatically.
-
-2012-08-21  Dirk Pranke  <dpranke@chromium.org>
-
-        Add mountain lion to perf-tests, layout tests
-        https://bugs.webkit.org/show_bug.cgi?id=94553
-
-        Reviewed by Adam Barth.
-
-        This patch adds support for the 'mac-mountainlion' platform and
-        stamps out the last references to 'mac-leopard' as a supported
-        name.
-        
-        This patch does a small amount of refactoring to try and make
-        things a little clearer how we treat the "most recent version"
-        specially for baselines and skipped files, and so you only
-        should have to touch the VERSION_FALLBACK_ORDER constants on the
-        ports, but unfortunately changing this list changes a bunch of
-        the unit tests which are doing exact matches for correctness, so
-        you have to touch more than a couple files :(. There's probably
-        still more refactoring that can be done so that we don't have to
-        do all of this functional testing to feel completely correct.
-
-        * Scripts/webkitpy/common/system/platforminfo.py:
-        (PlatformInfo._determine_mac_version):
-        * Scripts/webkitpy/common/system/platforminfo_unittest.py:
-        (TestPlatformInfo.test_os_version):
-        * Scripts/webkitpy/layout_tests/port/apple.py:
-        (ApplePort.__init__):
-        (ApplePort):
-        (ApplePort._skipped_file_search_paths):
-        (ApplePort._generate_all_test_configurations):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        (ChromiumMacPort):
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-        (FactoryTest.test_mac):
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort):
-        (MacPort._build_driver_flags):
-        (MacPort.should_retry_crashes):
-        (MacPort.default_baseline_search_path):
-        (MacPort.operating_system):
-        (MacPort.default_child_processes):
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        (MacTest):
-        (MacTest.test_skipped_file_search_paths):
-        (test_versions):
-        (test_baseline_search_path):
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        (WinPort):
-        (WinPort.default_baseline_search_path):
-
-2012-08-21  Zan Dobersek  <zandobersek@gmail.com>
-
-        [GTK] fast/xmlhttprequest/xmlhttprequest-nonexistent-file.html is failing
-        https://bugs.webkit.org/show_bug.cgi?id=94617
-
-        Reviewed by Martin Robinson.
-
-        Set the 'enable-file-access-from-file-uris' setting to true when
-        resetting default values. The other ports do this as well, giving
-        documents with local security origin permission to load other
-        local resources.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-
-2012-08-21  Kent Tamura  <tkent@chromium.org>
-
-        [Chromium] DRT produces wrong back-forward list
-        https://bugs.webkit.org/show_bug.cgi?id=94575
-
-        Reviewed by Adam Barth.
-
-        DRT clears its history state before running every tests. However
-        HistoryController in WebCore isn't reset. So, it is possible that
-        'isNewNavigation' flag is false even though the navigation should be
-        handled as "new" for DRT.
-
-        This change might fix a problem of
-        fast/forms/select/select-state-restore.html (Bug 90207).
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::updateForCommittedLoad):
-        Treat the first page load (m_pageID == -1) as new navigation except for about:blank.
-        Without this change, a navigation entry for this loading won't be recorded.
-
-2012-08-21  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [EFL] Enable CSS Text Decoration by default
-        https://bugs.webkit.org/show_bug.cgi?id=94483
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-08-21  Benjamin Poulain  <bpoulain@apple.com>
-
-        Store CString data in the CStringBuffer to avoid the double indirection
-        https://bugs.webkit.org/show_bug.cgi?id=94562
-
-        Reviewed by Darin Adler.
-
-        Add test coverage for WTF::CString.
-
-        * TestWebKitAPI/CMakeLists.txt:
-        * TestWebKitAPI/GNUmakefile.am:
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WTF/CString.cpp:
-
-2012-08-21  Dirk Pranke  <dpranke@chromium.org>
-
-        Text Autosizing: ::first-letter pseudo-element is incorrectly sized
-        https://bugs.webkit.org/show_bug.cgi?id=94540
-
-        Reviewed by Ojan Vafai.
-
-        Revert the changes in bugs 94517 and 94396 so that we are
-        actually looking for stderr output from ImageDiff and doing
-        image compares on ref tests on the wk2 ports again.
-
-        Also, do an actual diff_image() call if the hash checks fail on
-        reftests, and only fail the test if we get real diffs (or don't,
-        for mismatches).
-
-        Lastly, clean up the log messages to be more helpful.
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner._compare_image):
-        (SingleTestRunner._compare_output_with_reference):
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer.py:
-        (write_test_result):
-
-2012-08-21  Dirk Pranke  <dpranke@chromium.org>
-
-        _compare_image() swaps actual and expected images by mistake
-        https://bugs.webkit.org/show_bug.cgi?id=94567
-
-        Reviewed by Ojan Vafai.
-
-        Re-work the code so that we consistently pass (expected, actual)
-        across all of the compare/diff routines.
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner._run_compare_test):
-        (SingleTestRunner._compare_output):
-        (SingleTestRunner._compare_text):
-        (SingleTestRunner._compare_audio):
-        (SingleTestRunner._compare_image):
-        (SingleTestRunner._run_reftest):
-        (SingleTestRunner._compare_output_with_reference):
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer.py:
-        (write_test_result):
-
-2012-08-21  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed. Move the commit-queue to building release only. Previously,
-        we built debug too, but for some reason the debug build doesn't work on
-        the bots. We can re-enable debug builds once we fix the underlying
-        problem.
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-        (CommitQueue.build_style):
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-
-2012-08-21  Ryosuke Niwa  <rniwa@webkit.org>
-
-        TestExpectationsParser doesn't warn about test files that don't exist.
-        https://bugs.webkit.org/show_bug.cgi?id=94632
-
-        Reviewed by Dirk Pranke.
-
-        Exit early and warn when the test file doesn't exist as well when a test directory doesn't exist.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectationParser._parse_line):
-        (TestExpectationParser._check_test_exists):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (test_parse_warning):
-
-2012-08-20  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Move free functions in test_expectations to TestExpectations class
-        https://bugs.webkit.org/show_bug.cgi?id=94557
-
-        Reviewed by Dirk Pranke.
-
-        Moved test_result_was_expected, test_remove_pixel_failures, and test_suffixes_for_expectations into TestExpectations
-        to allow further refactoring.
-
-        * Scripts/webkitpy/common/net/resultsjsonparser.py:
-        (JSONTestResult.did_run_as_expected):
-        (JSONTestResult._tokenize):
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectations):
-        (TestExpectations.result_was_expected):
-        (TestExpectations.remove_pixel_failures):
-        (TestExpectations.has_pixel_failures):
-        (TestExpectations.suffixes_for_expectations):
-        (TestExpectations.matches_an_expected_result):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (MockBugManager.create_bug):
-        (test_result_was_expected):
-        (test_remove_pixel_failures):
-        (test_suffixes_for_expectations):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineExpectations._tests_to_rebaseline):
-
-2012-08-21  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Unreviewed build fix for newer Qt 5: The meaning of private_includes changed to be fully
-        self-contained. The module name is not appended automatically anymore.
-
-        * qmake/qt_webkit.pri:
-
-2012-08-20  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] Add stop_when_done parameter to ChromiumAndroidDriver.run_test()
-        https://bugs.webkit.org/show_bug.cgi?id=94558
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidDriver.run_test):
-
-2012-08-20  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Cleanup TestExpectationParser.parse
-        https://bugs.webkit.org/show_bug.cgi?id=94545
-
-        Reviewed by Dirk Pranke.
-
-        Refactor TestExpectations to simplify the code.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectationParser.parse): Merged _tokenize_list.
-        (TestExpectationParser._parse_line): Removed the call to _check_modifiers_against_expectations
-        since the check is now done in _parser_modifiers.
-        (TestExpectationParser._parse_modifiers): Merged _check_modifiers_against_expectations.
-        (TestExpectationParser._tokenize_line): Renamed from _tokenize.
-        (TestExpectationParser._split_space_separated): No longer calls lower() on all modifiers.
-        This is done on a local variable in _parse_modifiers, preserving the original case.
-        (TestExpectations.remove_rebaselined_tests.without_rebaseline_modifier): Check the existence
-        of 'rebaseline' against parsed modifiers.
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (TestExpectationParserTests._tokenize):
-        (TestExpectationParserTests.test_tokenize_valid_with_comment): Preserves case.
-        (TestExpectationParserTests.test_tokenize_valid_with_multiple_modifiers): Ditto.
-        (TestExpectationSerializerTests._tokenize):
-        (TestExpectationSerializerTests.assert_list_round_trip): Call parse since _tokenize_list has
-        been merged into parse.
-        * Scripts/webkitpy/tool/commands/queries_unittest.py:
-        (PrintExpectationsTest.test_csv): Preserves the case.
-
-2012-08-20  Gustavo Noronha Silva  <gns@gnome.org>
-
-        [jhbuild] EFL now runs jhbuild update for every build
-        https://bugs.webkit.org/show_bug.cgi?id=94267
-
-        Reviewed by Martin Robinson.
-
-        Try to fix WinCE build by returning the empty string instead of
-        env when no jhbuild infrastructure is found.
-
-        * Scripts/webkitdirs.pm:
-        (jhbuildWrapperPrefixIfNeeded):
-
-2012-08-20  Benjamin Poulain  <benjamin@webkit.org>
-
-        Add a watcher for WTF changes
-
-        Unreviewed.
-
-        Add myself as a watcher for changes in WTF.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-08-20  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [EFL] Move jhbuild dependencies based on SVN to tarballs
-        https://bugs.webkit.org/show_bug.cgi?id=90374
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Moved all the dependencies based on SVN to tarballs taken from a
-        equivalent snapshot from the official git mirror. This will make
-        update-webkitefl not dependent on network connection after the first
-        run. The bots will not fail if EFL SVN server in unreachable.
-        The reason why git mirror is not used directly is to minimize the
-        total size of source code we need to download.
-
-        * efl/jhbuild.modules:
-
-2012-08-20  Simon Fraser  <simon.fraser@apple.com>
-
-        Lots of "error, test and reference image have different properties" in pixel test output
-        https://bugs.webkit.org/show_bug.cgi?id=92578
-
-        Reviewed by Dirk Pranke.
-
-        Improve ImageDiff's error reporting when test result image and expected image
-        differ in their properties.
-
-        * DumpRenderTree/cg/ImageDiffCG.cpp:
-
-2012-08-20  Nate Chapin  <japhet@chromium.org>
-
-        Unsafe vsprintf usage in TestNetscapePlugin
-        https://bugs.webkit.org/show_bug.cgi?id=94522
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:
-        (pluginLogWithArguments): Using vsnprintf instead of vsprintf to ensure we don't overflow
-            the message buffer.
-        (testDocumentOpen):
-        (testWindowOpen):
-
-2012-08-20  George Staikos  <staikos@webkit.org>
-
-        [BlackBerry] Enable XHR Response BLOB
-        https://bugs.webkit.org/show_bug.cgi?id=94525
-
-        Reviewed by Rob Buis.
-
-        Turn on the XHR response blob feature for the BlackBerry port.
-
-        * Scripts/webkitperl/FeatureList.pm: Add the feature and enable it.
-
-2012-08-20  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix change for timeout detection to not crash if we have no output :)
-        https://bugs.webkit.org/show_bug.cgi?id=94505
-
-        Unreviewed, build fix.
-
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.run_test):
-
-2012-08-20  Dirk Pranke  <dpranke@chromium.org>
-
-        temporarily disable ImageDiff on WK2 ports for ref tests
-        https://bugs.webkit.org/show_bug.cgi?id=94517
-
-        Reviewed by Brady Eidson.
-
-        ImageDiff appears to be unable to handle the pngs returned from
-        WebKitTestRunner, so we disable checking images by default
-        for ref tests on wk2 ports (unless pixel tests is explicitly enabled).
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner._compare_output_with_reference):
-
-2012-08-20  Dirk Pranke  <dpranke@chromium.org>
-
-        Add missing FIXME: to previous change.
-        https://bugs.webkit.org/show_bug.cgi?id=94505
-
-        Reviewed by Ojan Vafai.
-
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.run_test):
-
-2012-08-20  Dirk Pranke  <dpranke@chromium.org>
-
-        Intermittenly, many WebKit2 tests have results from the wrong test compared to the test just run, giving false failures.
-        https://bugs.webkit.org/show_bug.cgi?id=94505
-
-        Reviewed by Ojan Vafai.
-
-        It looks like if the webprocess times out, WTR may tell NRWT
-        that the test completed, but not properly reset its internal
-        state, and then return stale output for subsequent tests.
-
-        This patch modifies NRWT temporarily to check for
-        "Timed out waiting for final message from web process" in stdout
-        and treat that as a timeout (and thus kill WTR); this seems
-        to solve the cascade of failures, but of course there's probably
-        still a bug in WTR that needs to be fixed.
-
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.run_test):
-
-2012-08-20  Dirk Pranke  <dpranke@chromium.org>
-
-        NRWT reports unexpected EOF
-        https://bugs.webkit.org/show_bug.cgi?id=94387
-
-        Reviewed by Adam Barth.
-
-        Stop logging "Unexpected EOF" when we are reading the last few
-        bytes from stdout/stderr after stopping the subprocess.
-
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        (ServerProcess._wait_for_data_and_update_buffers_using_select):
-        (ServerProcess.stop):
-
-2012-08-20  Brady Eidson  <beidson@apple.com>
-
-        Temporarily disable the 20+ crash and 500+ failure options on WK2 bots.
-        https://bugs.webkit.org/show_bug.cgi?id=94506
-
-        Reviewed by Dirk Pranke.
-
-        When running WK2 tests, don't add the "abort early" command line options.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (ConfigureBuild.start):
-        (RunWebKitTests):
-        (RunWebKitTests.start):
-        (RunWebKit2Tests.start):
-
-2012-08-19  Stephanie Lewis  <slewis@apple.com>
-
-        Add mountain lion to build config.
-        https://bugs.webkit.org/show_bug.cgi?id=94441
-
-        Reviewed by Adam Barth.
-
-        Add Mountain Lion to the build trigger configurations.
-
-        * Scripts/webkitpy/common/config/build.py:
-        (_should_file_trigger_build):
-        * Scripts/webkitpy/common/config/build_unittest.py:
-        (ShouldBuildTest):
-        (ShouldBuildTest.test_should_build):
-
-2012-08-17  Kiran Muppala  <cmuppala@apple.com>
-
-        Add self to webkit contributors list
-        https://bugs.webkit.org/show_bug.cgi?id=94409
-
-        Reviewed by Dirk Pranke.
-
-        Add name, email and irc handle to webkit contributors list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-08-17  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Perfalizer should differentiate results with and without the patch
-        https://bugs.webkit.org/show_bug.cgi?id=94399
-
-        Reviewed by Dirk Pranke.
-
-        Add "with 12345" and "without 12345" descriptions in results JSON so that graphs in
-        the results page are labled accordingly.
-
-        Also use _build_without_patch when building without a patch so that we get the right error message.
-
-        * Scripts/webkitpy/tool/commands/perfalizer.py:
-        (PerfalizerTask.run):
-        (PerfalizerTask._run_perf_test):
-        * Scripts/webkitpy/tool/commands/perfalizer_unittest.py:
-        (PerfalizerTaskTest._create_and_run_perfalizer.run_perf_test):
-
-2012-08-17  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: don't fail tests if ImageDiff fails on the wk2 ports
-        https://bugs.webkit.org/show_bug.cgi?id=94396
-
-        Reviewed by Ryosuke Niwa.
-
-        It appears that WTR is generating PNGs that ImageDiff doesn't
-        like, and so we're getting lots of "can not get ImageDiff"
-        errors (see bug 81962). The change in r124581 made this a test
-        failure, and this is causing the WK2 bots to frequently abort
-        with 500+ failures. 
-
-        This change makes ImageDiff errors not be test failures just for
-        WK2 for now until we can better triage what's going on.
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner._compare_image):
-
-2012-08-17  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Add a style check for #include "cc/..." in chromium files
-        https://bugs.webkit.org/show_bug.cgi?id=94382
-
-        Reviewed by Adam Barth.
-
-        Adds a style check to make sure new chromium code follows the correct convention for including cc files.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (check_include_line):
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (OrderOfIncludesTest.test_check_cc_includes):
-
-2012-08-17  Ojan Vafai  <ojan@chromium.org>
-
-        Delete some dead code from the flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=94380
-
-        Reviewed by Dirk Pranke.
-
-        This code became dead in one of the refactors of how we handle BuilderGroups.
-        There's no bug here, it's just dead code.
-        * TestResultServer/static-dashboards/builders.js:
-        (requestBuilderList):
-        (loadBuildersList):
-
-2012-08-17  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] Add content shell bots to the flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=94369
-
-        Reviewed by Ojan Vafai.
-
-        The bots are named $OS (Content Shell).
-
-        * TestResultServer/static-dashboards/builders.js:
-        (isChromiumWebkitTipOfTreeTestRunner):
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-
-2012-08-17  Shadi Khalek  <shadi@chromium.org>
-
-        Add AV perf layout tests to webkit flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=94255
-
-        Reviewed by Ojan Vafai.
-
-        Added missing mappings to LEGACY_BUILDER_MASTERS_TO_GROUPS.
-        The isChromiumDepsAVTestRunner() filter does not work on current builder names. 
-        It assumes the new names they are getting renamed to (AV Linux, AV Win7).
-
-        * TestResultServer/static-dashboards/builders.js:
-        (isChromiumTipOfTreeAVTestRunner):
-        (loadBuildersList):
-
-2012-08-17  Milian Wolff  <milian.wolff@kdab.com>
-
-        [Qt] QtWebKit fails to build with OpenGL support on QNX
-        https://bugs.webkit.org/show_bug.cgi?id=93278
-
-        Reviewed by Noam Rosenthal.
-
-        Change the order in which we define WTF_USE_3D_GRAPHICS and ENABLE_WEBGL.
-        First, we now defined WTF_USE_3D_GRAPHICS=1, but only if QT_CONFIG
-        contains opengl. Furthermore, we disable this feature on win32-* as usual,
-        but now also disable it on QNX.
-
-        Then, we set ENABLE_WEBGL=1 but only if we previously set WTF_USE_3D_GRAPHICS=1.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-08-16  Gustavo Noronha Silva  <gns@gnome.org>
-
-        [jhbuild] EFL now runs jhbuild update for every build
-        https://bugs.webkit.org/show_bug.cgi?id=94267
-
-        Reviewed by Dirk Pranke.
-
-        This change makes EFL's approach to jhbuild more in line with the one
-        used by WebKitGTK+. update-webkitefl-libs will only be called by build-
-        webkit if --update-efl is given explicitly. The EWS bot will do that
-        from now on.
-
-        * Scripts/webkitdirs.pm:
-        (jhbuildWrapperPrefixIfNeeded): return jhbuild wrapper only if the
-        Dependencies directory exists also for EFL
-        (generateBuildSystemFromCMakeProject): no longer run update-webkitefl-libs
-        (buildCMakeProjectOrExit): build update-webkitefl-libs if --update-efl is
-        given
-        * Scripts/webkitpy/common/config/ports.py:
-        (EflPort.build_webkit_command): make EWS bots pass --update-efl to build-webkit
-        * Scripts/webkitpy/common/config/ports_unittest.py:
-        (DeprecatedPortTest.test_efl_port): add unit testing for EFL port
-
-2012-08-16  Kent Tamura  <tkent@chromium.org>
-
-        Add forms-bugs@chromium.org as a contributor.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-08-16  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Unreviewed warning fix, sys.argv is a python construct.
-
-        * Scripts/update-webkitefl-libs:
-
-2012-08-16  Dirk Pranke  <dpranke@chromium.org>
-
-        NRWT cutting off the output from LayoutTest run under Valgrind
-        https://bugs.webkit.org/show_bug.cgi?id=94011
-
-        Reviewed by Ojan Vafai.
-
-        Make NRWT work with valgrind again ... I needed to rework the
-        driver infrastructure so that we could get the stderr written
-        between a test completing and a process being stopped and
-        associate it with the DriverOutput for the test; this meant that
-        run_test() needed to stop the driver at the end of the test
-        directly if/when appropriate. This also entailed reworking
-        run_test() so that we would gather stderr and stdout
-        consistently regardless of whether this was a normal test, or
-        stop_when_done, or a crash or timeout.
-
-        Also, I had to rework the process_stop_time() (and renamed it to
-        driver_stop_timeout) so that it would be longer if --time-out-ms
-        was long as well (so that valgrind would get enough time to
-        run), and I reworked driver.stop(kill_directly=True) to just
-        driver.stop(timeout=0.0).
-
-        Lastly, adding the new stop_when_done parameter entailed
-        touching a lot of test mock functions :(.
-
-        This change appeared to be well-covered by existing tests.
-
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner.py:
-        (Worker._run_test):
-        (Worker._run_test_with_timeout):
-        (Worker._run_test_in_another_thread):
-        (Worker._run_test_in_another_thread.SingleTestThread.run):
-        (Worker._run_test_in_this_thread):
-        (Worker._run_single_test):
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (run_single_test):
-        (SingleTestRunner.__init__):
-        (SingleTestRunner._run_compare_test):
-        (SingleTestRunner._run_rebaseline):
-        (SingleTestRunner._run_reftest):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.driver_stop_timeout):
-        (Port.variable.default_configuration):
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.driver_stop_timeout):
-        (ChromiumAndroidDriver.stop):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.run_test):
-        (Driver.stop):
-        (DriverProxy.run_test):
-        * Scripts/webkitpy/layout_tests/port/driver_unittest.py:
-        (DriverTest.test_check_for_driver_crash.FakeServerProcess.stop):
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        (ServerProcess.write):
-        (ServerProcess._wait_for_data_and_update_buffers_using_select):
-        (ServerProcess.stop):
-        (ServerProcess.kill):
-        (ServerProcess):
-        (ServerProcess._kill):
-        * Scripts/webkitpy/layout_tests/port/server_process_unittest.py:
-        (TrivialMockPort.__init__):
-        (MockProc.wait):
-        (TestServerProcess.test_basic):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestDriver.run_test):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (get_tests_run.RecordingTestDriver.run_test):
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest.run_single):
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py:
-        (TestPageLoadingPerfTest.MockDriver.run_test):
-        (TestReplayPerfTest.ReplayTestPort.__init__.ReplayTestDriver.run_test):
-        (TestReplayPerfTest.test_run_single.run_test):
-        (TestReplayPerfTest.test_run_single_fails_when_output_has_error.run_test):
-        (TestReplayPerfTest.test_prepare.run_test):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (MainTest.TestDriver.run_test):
-
-2012-08-16  Roger Fong  <roger_fong@apple.com>
-
-        Typo in old-run-webkit-tests script from https://bugs.webkit.org/show_bug.cgi?id=93904.
-        https://bugs.webkit.org/show_bug.cgi?id=94228
-
-        Reviewed by Tim Horton.
-
-        I previously made the change but made a typo that causes the script not ignore mismatch ref tests.
-
-        * Scripts/old-run-webkit-tests:
-        (isUsedInReftest):
-
-2012-08-16  Peter Beverloo  <peter@chromium.org>
-
-        [Chromium] Pass the --strip-binary argument to the apk test generator
-        https://bugs.webkit.org/show_bug.cgi?id=94224
-
-        Reviewed by Adam Barth.
-
-        The native test generator currently relies on the $STRIP environment
-        variable to be available, which it shouldn't do. Instead, pass it as an
-        argument to the script. The $STRIP variable is being deprecated.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * TestWebKitAPI/TestWebKitAPI.gyp/TestWebKitAPI.gyp:
-
-2012-08-16  Xiaobo Wang  <xbwang@torchmobile.com.cn>
-
-        [BlackBerry] Update format of JS console message to keep consistent with other ports.
-        https://bugs.webkit.org/show_bug.cgi?id=94058
-
-        Reviewed by Yong Li.
-        Reviewed internally by George Staikos.
-
-        1. Remove line number if it's zero.
-        2. Print only file name for "file://" URL.
-
-        * DumpRenderTree/blackberry/DumpRenderTree.cpp:
-        (BlackBerry::WebKit::DumpRenderTree::addMessageToConsole):
-
-2012-08-16  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Make DRT results more reliable on X11
-
-        Reviewed by Jocelyn Turcotte.
-
-        Disable desktop setting awareness, to prevent QApplication on X11 from reading palette settings from
-        the running desktop environment.
-
-        * DumpRenderTree/qt/main.cpp:
-        (main):
-
-2012-08-16  Pierre Rossi  <pierre.rossi@gmail.com>
-
-        [Qt] Remove FontQt4, HAVE_QRAWFONT flag and the related dead code
-        https://bugs.webkit.org/show_bug.cgi?id=93960
-
-        Reviewed by Simon Hausmann.
-
-        Following the removal of Qt 4 support from trunk in r124879.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-08-16  Taiju Tsuiki  <tzik@chromium.org>
-
-        Add deleteFileSystem support to DumpRenderTree for chromium
-        https://bugs.webkit.org/show_bug.cgi?id=94071
-
-        Reviewed by Kent Tamura.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::deleteFileSystem): Added
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-08-15  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Rename LayoutTestController to TestRunner in WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=93942
-
-        Reviewed by Simon Fraser.
-
-        Renamed the class and relevant files.
-
-        * WebKitTestRunner/CMakeLists.txt:
-        * WebKitTestRunner/DerivedSources.make:
-        * WebKitTestRunner/GNUmakefile.am:
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl: Removed.
-        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl: Copied from Tools/WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl.
-        * WebKitTestRunner/InjectedBundle/DerivedSources.pri:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::didReceiveMessage):
-        (WTR::InjectedBundle::beginTesting):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (WTR::InjectedBundle::testRunner):
-        (InjectedBundle):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp: Removed.
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h: Removed.
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-        * WebKitTestRunner/InjectedBundle/TestRunner.cpp: Copied from Tools/WebKitTestRunner/InjectedBundle/LayoutTestController.cpp.
-        * WebKitTestRunner/InjectedBundle/TestRunner.h: Copied from Tools/WebKitTestRunner/InjectedBundle/LayoutTestController.h.
-        (TestRunner):
-        * WebKitTestRunner/InjectedBundle/efl/LayoutTestControllerEfl.cpp: Removed.
-        * WebKitTestRunner/InjectedBundle/efl/TestRunnerEfl.cpp: Copied from Tools/WebKitTestRunner/InjectedBundle/efl/LayoutTestControllerEfl.cpp.
-        (WTR::waitToDumpWatchdogTimerCallback):
-        (WTR::TestRunner::platformInitialize):
-        (WTR::TestRunner::invalidateWaitToDumpWatchdogTimer):
-        (WTR::TestRunner::initializeWaitToDumpWatchdogTimerIfNeeded):
-        (WTR::TestRunner::pathToLocalResource):
-        (WTR::TestRunner::platformName):
-        * WebKitTestRunner/InjectedBundle/gtk/LayoutTestControllerGtk.cpp: Removed.
-        * WebKitTestRunner/InjectedBundle/gtk/TestRunnerGtk.cpp: Copied from Tools/WebKitTestRunner/InjectedBundle/gtk/LayoutTestControllerGtk.cpp.
-        (WTR::waitToDumpWatchdogTimerCallback):
-        (WTR::TestRunner::platformInitialize):
-        (WTR::TestRunner::invalidateWaitToDumpWatchdogTimer):
-        (WTR::TestRunner::initializeWaitToDumpWatchdogTimerIfNeeded):
-        (WTR::TestRunner::pathToLocalResource):
-        (WTR::TestRunner::platformName):
-        * WebKitTestRunner/InjectedBundle/mac/LayoutTestControllerMac.mm: Removed.
-        * WebKitTestRunner/InjectedBundle/mac/TestRunnerMac.mm: Copied from Tools/WebKitTestRunner/InjectedBundle/mac/LayoutTestControllerMac.mm.
-        (WTR::TestRunner::platformInitialize):
-        (WTR::TestRunner::invalidateWaitToDumpWatchdogTimer):
-        (WTR::waitUntilDoneWatchdogTimerFired):
-        (WTR::TestRunner::initializeWaitToDumpWatchdogTimerIfNeeded):
-        (WTR::TestRunner::pathToLocalResource):
-        (WTR::TestRunner::platformName):
-        * WebKitTestRunner/InjectedBundle/qt/LayoutTestControllerQt.cpp: Removed.
-        * WebKitTestRunner/InjectedBundle/qt/TestRunnerQt.cpp: Copied from Tools/WebKitTestRunner/InjectedBundle/qt/LayoutTestControllerQt.cpp.
-        (WTR::WatchdogTimerHelper::timerFired):
-        (WTR::TestRunner::platformInitialize):
-        (WTR::TestRunner::invalidateWaitToDumpWatchdogTimer):
-        (WTR::TestRunner::initializeWaitToDumpWatchdogTimerIfNeeded):
-        (WTR::TestRunner::pathToLocalResource):
-        (WTR::TestRunner::platformName):
-        * WebKitTestRunner/InjectedBundle/win/LayoutTestControllerWin.cpp: Removed.
-        * WebKitTestRunner/InjectedBundle/win/TestRunnerWin.cpp: Copied from Tools/WebKitTestRunner/InjectedBundle/win/LayoutTestControllerWin.cpp.
-        (WTR::TestRunner::platformInitialize):
-        (WTR::TestRunner::invalidateWaitToDumpWatchdogTimer):
-        (WTR::waitToDumpWatchdogTimerFired):
-        (WTR::TestRunner::initializeWaitToDumpWatchdogTimerIfNeeded):
-        (WTR::TestRunner::pathToLocalResource):
-        (WTR::TestRunner::platformName):
-        * WebKitTestRunner/PlatformEfl.cmake:
-        * WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj:
-        * WebKitTestRunner/win/InjectedBundle.vcproj:
-
-2012-08-15  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] DumpRenderTree timeouts before NRWT timeouts
-        https://bugs.webkit.org/show_bug.cgi?id=94155
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.create_driver): Force no_timeout=True
-
-2012-08-15  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Add a hyperlink to perf-o-matic from build.webkit.org/root.html
-        https://bugs.webkit.org/show_bug.cgi?id=93749
-
-        Reviewed by Csaba Osztrogonác.
-
-        Added the hyperlink to webkit-perf.appspot.com. Also added hyperlinks to the waterfall display
-        of performance tests.
-
-        * BuildSlaveSupport/build.webkit.org-config/templates/root.html:
-
-2012-08-15  Bruno de Oliveira Abinader  <bruno.abinader@basyskom.com>
-
-        [css3-text] Add CSS3 Text decoration compile flag
-        https://bugs.webkit.org/show_bug.cgi?id=93863
-
-        Reviewed by Julien Chaffraix.
-
-        This patch handles the compile flag implementation, which will come disabled by
-        default, thus not exposing the CSS3 text decoration features to the web, unless
-        when explicitly enabling it with "--css3-text-decoration" build parameter.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2012-08-15  Beth Dakin  <bdakin@apple.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=93693
-        [WK2] REGRESSION(125091): pixel results don't sow scrollbars 
-        anymore
-
-        Reviewed by Sam Weinig.
-
-        Use new API WKBundlePageCreateSnapshotWithOptions().
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::dump):
-
-2012-08-15  Alexey Proskuryakov  <ap@apple.com>
-
-        Add rfong to Bugzilla CC "contributor" list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-08-15  Scott Graham  <scottmg@chromium.org>
-
-        Rename window.internals.fastMallocStatistics to mallocStatistics
-        https://bugs.webkit.org/show_bug.cgi?id=94033
-
-        Reviewed by Adam Barth.
-
-        * GNUmakefile.am:
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (test_run_memory_test):
-
-2012-08-15  Peter Beverloo  <peter@chromium.org>
-
-        Fix a warning in TestWebKitAPI's MediaTime test-suite
-        https://bugs.webkit.org/show_bug.cgi?id=94096
-
-        Reviewed by Adam Barth.
-
-        This warning is visible when building the file with certain GCC versions,
-        including the one used by Chromium for Android. The warning is visible in
-        the cr-android build bot output:
-
-        MediaTime.cpp:152: warning: this decimal constant is unsigned only in ISO C90
-
-        * TestWebKitAPI/Tests/WTF/MediaTime.cpp:
-        (TestWebKitAPI::TEST):
-
-2012-08-15  Kevin Funk  <kevin.funk@kdab.com>
-
-        Fix the 'git log' call in VCSUtils.pm for Windows
-        https://bugs.webkit.org/show_bug.cgi?id=94113
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Failed because of invalid enquoting characters.
-
-        * Scripts/VCSUtils.pm:
-
-2012-08-14  Gustavo Noronha Silva  <gns@gnome.org>
-
-        [jhbuild] move md5sum checking to update-webkit-libs-jhbuild
-        https://bugs.webkit.org/show_bug.cgi?id=93208
-
-        Reviewed by Martin Robinson.
-
-        This change makes the md5sum check and saving be done by the script
-        that performs the dependencies update. build-webkit no longer prefixes
-        calls to commands with jhbuild-wrapper if jhbuild has not been
-        bootstrapped by the developer and --update-gtk is not given.
-
-        * Scripts/update-webkit-libs-jhbuild:
-        (getMD5HashForFile): moved from webkitdirs.
-        (jhbuildConfigurationChanged): ditto.
-        (saveJhbuildMd5): ditto.
-        (cleanJhbuild): ditto, and changed to run jhbuild clean before removing
-        jhbuild.
-        * Scripts/webkitdirs.pm:
-        (runAutogenForAutotoolsProjectIfNecessary): use jhbuildWrapperPrefixIfNeeded.
-        (buildAutotoolsProject): ditto.
-        (jhbuildWrapperPrefixIfNeeded): add a code branch for GTK+.
-        (generateBuildSystemFromCMakeProject): call update-webkitefl-libs
-        unconditionally for EFL.
-        * jhbuild/jhbuild-wrapper:
-        (update_webkit_libs_jhbuild): removed, jhbuild-wrapper no longer runs the
-        update script itself
-        (ensure_jhbuild): remove update call.
-
-2012-08-15  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2] Add support for Web Intents MessagePorts
-        https://bugs.webkit.org/show_bug.cgi?id=89072
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Use WKBundleIntent instead of WebIntentData in
-        WebKitTestRunner. WTR now prints the number of
-        MessagePorts in received Web intents as
-        expected by the following layout tests:
-        webintents/web-intents-invoke-port.html
-        webintents/web-intents-obj-constructor.html
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::didReceiveIntentForFrame):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::deliverWebIntent):
-
-2012-08-14  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Build fix after r125516. Revert the erroneous rename since we need to keep exposing
-        layoutTestController in Chromium port as explained r124785.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::bindJSObjectsToWindow):
-
-2012-08-14  Dan Bernstein  <mitz@apple.com>
-
-        fast/events/overflow-scroll-fake-mouse-move.html and fast/events/frame-scroll-fake-mouse-move.html are failing in WebKit1
-        https://bugs.webkit.org/show_bug.cgi?id=94045
-
-        Reviewed by Geoff Garen.
-
-        * DumpRenderTree/mac/DumpRenderTreeWindow.mm:
-        (-[DumpRenderTreeWindow _hasKeyAppearance]): Added. Returns [self isKeyWindow]. This is
-        needed now that WebView uses -_hasKeyAppearance instead of -isKeyWindow.
-
-2012-08-14  Alexey Proskuryakov  <ap@apple.com>
-
-        [WK2] Fix some typos in MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=94047
-
-        Reviewed by Jon Honeycutt.
-
-        * MiniBrowser/mac/AppDelegate.m:
-        (didReceiveMessageFromInjectedBundle): (-[BrowserAppDelegate init]):
-        * MiniBrowser/mac/WebBundle/WebBundleMain.m:
-        (didReceiveMessage):
-        (WKBundleInitialize):
-
-2012-08-14  Roger Fong  <roger_fong@apple.com>
-
-        old-run-webkit-tests should skip all file extensions for ref tests, not just .html.
-        https://bugs.webkit.org/show_bug.cgi?id=93904
-
-        Reviewed by Tim Horton.
-
-        old-run-webkit-tests ref test only skipped .html test.
-        They need to skip .html, .shtml, .xml, .xhtml, .pl, .htm, .php, .svg, .mht.
-        
-        * Scripts/old-run-webkit-tests:
-        (isUsedInReftest): Skip all extensions for ref tests.
-
-2012-08-14  Lauro Neto  <lauro.neto@openbossa.org>
-
-        Convert signals/slots to Q_* macros.
-
-        [Qt] Use Q_SLOTS and Q_SIGNALS instead of slots and signals
-        https://bugs.webkit.org/show_bug.cgi?id=93996
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Change usage of keyword-conflicting 'signals' and 'slots' for
-        Q_SIGNALS and Q_SLOTS macro.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        (NetworkAccessManager):
-        (WebPage):
-        * DumpRenderTree/qt/EventSenderQt.h:
-        (EventSender):
-        * DumpRenderTree/qt/GCControllerQt.h:
-        (GCController):
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        (TestRunner):
-        * DumpRenderTree/qt/TextInputControllerQt.h:
-        (TextInputController):
-        * MiniBrowser/qt/BrowserWindow.h:
-        (BrowserWindow):
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-        (WindowOptions):
-        * MiniBrowser/qt/UrlLoader.h:
-        (UrlLoader):
-        * QtTestBrowser/cookiejar.h:
-        (TestBrowserCookieJar):
-        * QtTestBrowser/fpstimer.h:
-        (FpsTimer):
-        * QtTestBrowser/launcherwindow.h:
-        (LauncherWindow):
-        * QtTestBrowser/locationedit.h:
-        (LocationEdit):
-        * QtTestBrowser/mainwindow.h:
-        (MainWindow):
-        * QtTestBrowser/urlloader.h:
-        (UrlLoader):
-        * QtTestBrowser/webinspector.h:
-        (WebInspector):
-        * QtTestBrowser/webpage.h:
-        (WebPage):
-        * QtTestBrowser/webview.h:
-        (WebViewGraphicsBased):
-        * WebKitTestRunner/InjectedBundle/qt/LayoutTestControllerQt.cpp:
-        (WatchdogTimerHelper):
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WrapperWindow):
-        * WebKitTestRunner/qt/main.cpp:
-        (Launcher):
-
-2012-08-14  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        WebKitTestRunner needs layoutTestController.dumpResourceLoadCallbacks
-        https://bugs.webkit.org/show_bug.cgi?id=42332
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Added Resource Callbacks logging. Several aux dumping functions are added.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::isFileScheme):
-        (WTR):
-        (WTR::pathSuitableForTestResult):
-        (WTR::urlSuitableForTestResult):
-        (WTR::InjectedBundlePage::resetAfterTest):
-        (WTR::dumpRequestDescriptionSuitableForTestResult):
-        (WTR::dumpResponseDescriptionSuitableForTestResult):
-        (WTR::dumpErrorDescriptionSuitableForTestResult):
-        (WTR::InjectedBundlePage::didInitiateLoadForResource):
-        (WTR::InjectedBundlePage::willSendRequestForFrame):
-        (WTR::InjectedBundlePage::didReceiveResponseForResource):
-        (WTR::InjectedBundlePage::didFinishLoadForResource):
-        (WTR::InjectedBundlePage::didFailLoadForResource):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::LayoutTestController):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (WTR::LayoutTestController::dumpResourceLoadCallbacks):
-        (WTR::LayoutTestController::shouldDumpResourceLoadCallbacks):
-        (LayoutTestController):
-
-2012-08-14  Alexis Menard  <alexis.menard@openbossa.org>
-
-        Update INdT build bot to Mountain Lion.
-        https://bugs.webkit.org/show_bug.cgi?id=93963
-
-        Reviewed by Csaba Osztrogonác.
-
-        We updated the machine as well as the OS as the Qt port is now running
-        on top of Qt5.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-08-14  Peter Beverloo  <peter@chromium.org>
-
-        [Chromium] Remove unneeded build logic for Android
-        https://bugs.webkit.org/show_bug.cgi?id=93962
-
-        Reviewed by Dimitri Glazkov.
-
-        The Android SDK and NDK have been checked in to the Chromium tree, which
-        allows WebKit to leverage those as well. They will already be pulled in
-        through a DEPS change made last week, and by not setting the ANDROID_NDK_ROOT
-        environment variable, the envsetup.sh will set the project files up
-        appropriately for us.
-
-        * Scripts/webkitdirs.pm:
-
-2012-08-14  Sergio Villar Senin  <svillar@igalia.com>
-
-        [WK2] [GTK] Plugin tests failing in WK2 bot
-        https://bugs.webkit.org/show_bug.cgi?id=93954
-
-        Reviewed by Carlos Garcia Campos.
-
-        Plugin tests are failing in the WK2 bot because we aren't exporting
-        the Netscape plugin when creating the product archive.
-
-        * BuildSlaveSupport/built-product-archive: added TestNetscapePlugin
-        to the list of directories to export.
-        (archiveBuiltProduct):
-
-2012-08-14  Peter Beverloo  <peter@chromium.org>
-
-        [Chromium] Fix apk generation for the Android platform
-        https://bugs.webkit.org/show_bug.cgi?id=93841
-
-        Unreviewed build fix.
-
-        APK generation was broken as the configuration file assumed compilation
-        would only occur in the Chromium tree. Pass the path to Chromium's source
-        base directory as a property to ant.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * TestWebKitAPI/TestWebKitAPI.gyp/TestWebKitAPI.gyp:
-
-2012-08-14  Sergio Villar Senin  <svillar@igalia.com>
-
-        [GTK] REGRESSION (r122428) WebKit2APITests/TestWebKitFindController fails "next" test
-        https://bugs.webkit.org/show_bug.cgi?id=91083
-
-        Reviewed by Carlos Garcia Campos.
-
-        Unskipped a couple of API tests that should work fine from now on.
-
-        * Scripts/run-gtk-tests:
-        (TestRunner):
-
-2012-08-14  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
-
-        [NRWT] Compare results between different platforms
-        https://bugs.webkit.org/show_bug.cgi?id=90555
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.baseline_search_path):
-        (Port):
-        (Port.compare_baseline):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-
-2012-08-13  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Rename LayoutTestController to TestRunner in DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=93758
-
-        Reviewed by Tony Chang.
-
-        Renamed LayoutTestController to TestRunner. For Chromium port, it's renamed to DRTTestRunner
-        since it already has TestRunner class shared between DumpRenderTree and content_shell.
-
-        * DumpRenderTree/DumpRenderTree.h:
-        * DumpRenderTree/PixelDumpSupport.cpp:
-        * DumpRenderTree/StorageTrackerDelegate.h:
-        * DumpRenderTree/StorageTrackerDelegate.mm:
-        * DumpRenderTree/TestRunner.cpp:
-        * DumpRenderTree/TestRunner.h:
-        * DumpRenderTree/blackberry/DumpRenderTree.cpp:
-        * DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp:
-        * DumpRenderTree/chromium/DRTTestRunner.cpp:
-        * DumpRenderTree/chromium/DRTTestRunner.h:
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        * DumpRenderTree/chromium/NotificationPresenter.h:
-        * DumpRenderTree/chromium/TestShell.cpp:
-        * DumpRenderTree/chromium/TestShell.h:
-        * DumpRenderTree/chromium/WebPermissions.cpp:
-        * DumpRenderTree/chromium/WebPermissions.h:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        * DumpRenderTree/chromium/WebViewHost.h:
-        * DumpRenderTree/efl/DumpRenderTree.cpp:
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        * DumpRenderTree/efl/DumpRenderTreeView.cpp:
-        * DumpRenderTree/efl/EditingCallbacks.cpp:
-        * DumpRenderTree/efl/TestRunnerEfl.cpp:
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        * DumpRenderTree/gtk/EditingCallbacks.cpp:
-        * DumpRenderTree/gtk/TestRunnerGtk.cpp:
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        * DumpRenderTree/mac/DumpRenderTreeWindow.mm:
-        * DumpRenderTree/mac/EditingDelegate.mm:
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        * DumpRenderTree/mac/HistoryDelegate.mm:
-        * DumpRenderTree/mac/PixelDumpSupportMac.mm:
-        * DumpRenderTree/mac/PolicyDelegate.h:
-        * DumpRenderTree/mac/PolicyDelegate.mm:
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        * DumpRenderTree/mac/TestRunnerMac.mm:
-        * DumpRenderTree/mac/UIDelegate.mm:
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        * DumpRenderTree/qt/TestRunnerQt.cpp:
-        * DumpRenderTree/qt/TestRunnerQt.h:
-        * DumpRenderTree/win/DRTDesktopNotificationPresenter.cpp:
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        * DumpRenderTree/win/EditingDelegate.cpp:
-        * DumpRenderTree/win/FrameLoadDelegate.cpp:
-        * DumpRenderTree/win/HistoryDelegate.cpp:
-        * DumpRenderTree/win/PolicyDelegate.h:
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp:
-        * DumpRenderTree/win/TestRunnerWin.cpp:
-        * DumpRenderTree/win/UIDelegate.cpp:
-        * DumpRenderTree/wx/DumpRenderTreeWx.cpp:
-        * DumpRenderTree/wx/TestRunnerWx.cpp:
-
-2012-08-14  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [GTK] String returned by g_path_get_dirname() must be freed
-        https://bugs.webkit.org/show_bug.cgi?id=93885
-
-        Reviewed by Philippe Normand.
-
-        Fix a memory leak in GTK's DRT code.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (pathFromSoupURI): Free the string returned by g_path_get_dirname().
-
-2012-08-14  Zan Dobersek  <zandobersek@gmail.com>
-
-        Unreviewed GTK build fix after r125508.
-
-        Do the renaming in GNUmakefile.am as well, LayoutTestController -> TestRunner.
-
-        * GNUmakefile.am:
-
-2012-08-13  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Rename files that declare and define LayoutTestController in DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=93899
-
-        Reviewed by Tony Chang.
-
-        Renamed files and fixed style errors.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/LayoutTestController.cpp: Removed.
-        * DumpRenderTree/LayoutTestController.h: Removed.
-        * DumpRenderTree/PixelDumpSupport.cpp:
-        * DumpRenderTree/StorageTrackerDelegate.mm:
-        * DumpRenderTree/TestRunner.cpp: Copied from Tools/DumpRenderTree/LayoutTestController.cpp.
-        * DumpRenderTree/TestRunner.h: Copied from Tools/DumpRenderTree/LayoutTestController.h.
-        (LayoutTestController):
-        * DumpRenderTree/blackberry/DumpRenderTree.cpp:
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp: Removed.
-        * DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp: Copied from Tools/DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp.
-        * DumpRenderTree/chromium/DRTTestRunner.cpp: Copied from Tools/DumpRenderTree/chromium/LayoutTestController.cpp.
-        * DumpRenderTree/chromium/DRTTestRunner.h: Copied from Tools/DumpRenderTree/chromium/LayoutTestController.h.
-        * DumpRenderTree/chromium/LayoutTestController.cpp: Removed.
-        * DumpRenderTree/chromium/LayoutTestController.h: Removed.
-        * DumpRenderTree/chromium/TestShell.cpp:
-        * DumpRenderTree/chromium/TestShell.h:
-        * DumpRenderTree/chromium/WebPermissions.cpp:
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        * DumpRenderTree/efl/CMakeLists.txt:
-        * DumpRenderTree/efl/DumpRenderTree.cpp:
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        * DumpRenderTree/efl/DumpRenderTreeView.cpp:
-        * DumpRenderTree/efl/EditingCallbacks.cpp:
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp: Removed.
-        * DumpRenderTree/efl/TestRunnerEfl.cpp: Copied from Tools/DumpRenderTree/efl/LayoutTestControllerEfl.cpp.
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        * DumpRenderTree/gtk/EditingCallbacks.cpp:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp: Removed.
-        * DumpRenderTree/gtk/TestRunnerGtk.cpp: Copied from Tools/DumpRenderTree/gtk/LayoutTestControllerGtk.cpp.
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        * DumpRenderTree/mac/DumpRenderTreeWindow.mm:
-        * DumpRenderTree/mac/EditingDelegate.mm:
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        * DumpRenderTree/mac/HistoryDelegate.mm:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm: Removed.
-        * DumpRenderTree/mac/PixelDumpSupportMac.mm:
-        * DumpRenderTree/mac/PolicyDelegate.mm:
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        * DumpRenderTree/mac/TestRunnerMac.mm: Copied from Tools/DumpRenderTree/mac/LayoutTestControllerMac.mm.
-        * DumpRenderTree/mac/UIDelegate.mm:
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp: Removed.
-        * DumpRenderTree/qt/LayoutTestControllerQt.h: Removed.
-        * DumpRenderTree/qt/TestRunnerQt.cpp: Copied from Tools/DumpRenderTree/qt/LayoutTestControllerQt.cpp.
-        * DumpRenderTree/qt/TestRunnerQt.h: Copied from Tools/DumpRenderTree/qt/LayoutTestControllerQt.h.
-        (WebCore):
-        (LayoutTestController):
-        (LayoutTestController::setCloseRemainingWindowsWhenComplete):
-        (LayoutTestController::dumpSelectionRect):
-        (LayoutTestController::setCallCloseOnWebViews):
-        (LayoutTestController::addDisallowedURL):
-        (LayoutTestController::abortModal):
-        * DumpRenderTree/win/DRTDesktopNotificationPresenter.cpp:
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/EditingDelegate.cpp:
-        * DumpRenderTree/win/FrameLoadDelegate.cpp:
-        * DumpRenderTree/win/HistoryDelegate.cpp:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp: Removed.
-        * DumpRenderTree/win/PolicyDelegate.cpp:
-        * DumpRenderTree/win/ResourceLoadDelegate.cpp:
-        * DumpRenderTree/win/TestRunnerWin.cpp: Copied from Tools/DumpRenderTree/win/LayoutTestControllerWin.cpp.
-        (LayoutTestController::setUserStyleSheetEnabled):
-        (resolveCygwinPath):
-        * DumpRenderTree/win/UIDelegate.cpp:
-        * DumpRenderTree/wscript:
-        * DumpRenderTree/wx/DumpRenderTreeWx.cpp:
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp: Removed.
-        * DumpRenderTree/wx/TestRunnerWx.cpp: Copied from Tools/DumpRenderTree/wx/LayoutTestControllerWx.cpp.
-
-2012-08-13  Alex Christensen  <alex.christensen@flexsim.com>
-
-        Windows 64 bit compliance
-        https://bugs.webkit.org/show_bug.cgi?id=93275
-
-        Reviewed by Brent Fulgham.
-
-        Fixed a few compile and link problems for Win64
-
-        * WinLauncher/WinLauncher.cpp:
-        * win/DLLLauncher/DLLLauncherMain.cpp:
-
-2012-08-13  MORITA Hajime  <morrita@google.com>
-
-        Unreviewed update for webcomponents-bugzilla address.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-08-11  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        [CMake] Rewrite FindLibSoup2.cmake.
-        https://bugs.webkit.org/show_bug.cgi?id=93191
-
-        Reviewed by Rob Buis.
-
-        * DumpRenderTree/efl/CMakeLists.txt: Use LIBSOUP_FOO instead of
-        LIBSOUP24_FOO, and do not use LIBSOUP24_LDFLAGS, as it is not
-        needed anymore.
-        * EWebLauncher/CMakeLists.txt: Ditto.
-        * MiniBrowser/efl/CMakeLists.txt: Ditto.
-        * TestWebKitAPI/PlatformEfl.cmake: Ditto.
-        * WebKitTestRunner/CMakeLists.txt: Ditto.
-        * WebKitTestRunner/PlatformEfl.cmake: Ditto.
-
-2012-08-13  Brady Eidson  <beidson@apple.com>
-
-        With asynchronous plug-in initialization, WebProcess and PluginProcess can deadlock
-        <rdar://problem/12062125> and https://bugs.webkit.org/show_bug.cgi?id=93894
-
-        Reviewed by Alexey Proskuryakov.
-
-        Add a test that calls out to NPP_Evaluate for some JS inside of NPP_New.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/TestNetscapePlugIn/Tests/EvaluateJSWithinNPP_New.cpp: Added.
-        (EvaluteJSWithinNPP_New):
-        (EvaluteJSWithinNPP_New::EvaluteJSWithinNPP_New):
-        (EvaluteJSWithinNPP_New::NPP_New):
-
-2012-08-13  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r125422.
-        http://trac.webkit.org/changeset/125422
-        https://bugs.webkit.org/show_bug.cgi?id=93902
-
-        Broke the Android canary build (Requested by fmalita on
-        #webkit).
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * TestWebKitAPI/TestWebKitAPI.gyp/TestWebKitAPI.gyp:
-
-2012-08-13  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        [CMake] Remove glib-related Find modules and write single new one instead.
-        https://bugs.webkit.org/show_bug.cgi?id=93786
-
-        Reviewed by Rob Buis.
-
-        * DumpRenderTree/efl/CMakeLists.txt: Use GLIB_* instead of Glib_*.
-        * EWebLauncher/CMakeLists.txt: Ditto.
-        * MiniBrowser/efl/CMakeLists.txt: Ditto.
-        * WebKitTestRunner/PlatformEfl.cmake: Ditto.
-
-2012-08-13  Peter Beverloo  <peter@chromium.org>
-
-        [Chromium] Fix apk generation for the Android platform
-        https://bugs.webkit.org/show_bug.cgi?id=93841
-
-        Reviewed by Dimitri Glazkov.
-
-        APK generation was broken as the configuration file assumed compilation
-        would only occur in the Chromium tree. Pass the path to Chromium's source
-        base directory as a property to ant.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * TestWebKitAPI/TestWebKitAPI.gyp/TestWebKitAPI.gyp:
-
-2012-08-13  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [WK2] [WTR] InjectedBundlePage::didFailLoadForResource invokes wrong callback
-        https://bugs.webkit.org/show_bug.cgi?id=93825
-
-        Reviewed by Antonio Gomes.
-
-        Corrected from didFinishLoadForResource() invoke to didFailLoadForResource() invoke. 
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::didFailLoadForResource):
-
-2012-08-13  Kwang Yul Seo  <skyul@company100.net>
-
-        [Qt] Add gprof.prf to build WebKit with gprof enabled
-        https://bugs.webkit.org/show_bug.cgi?id=90283
-
-        Reviewed by Eric Seidel.
-
-        * qmake/mkspecs/features/functions.prf:
-        gprof does not support profiling a shared library.
-        To profile WebKit, applications must link QtWebKit statically.
-
-        * qmake/mkspecs/features/gprof.prf: Added.
-        Add -pg option to both QMAKE_CXXFLAGS and QMAKE_LFLAGS.
-
-2012-08-13  KwangYong Choi  <ky0.choi@samsung.com>
-
-        [TestNetscapePlugin][X11] Additional key up event handler routine is required
-        https://bugs.webkit.org/show_bug.cgi?id=91357
-
-        Reviewed by Eric Seidel.
-
-        Fixed key up event handler routine to pass http/tests/plugins/plugin-document-
-        has-focus.html on X11 architecture. The test can not be done without this patch.
-        All other ports implemented it already.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (handleEventX11): Modified key up event handler for X11
-
-2012-08-13  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][WK2] Replace Skipped list by TestExpectations
-        https://bugs.webkit.org/show_bug.cgi?id=93796
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Enable cascaded TestExpectations for EFL port so
-        that we can use TestExpectations in WK2-EFL.
-
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort._search_paths):
-        (EflPort):
-        (EflPort.expectations_files):
-
-2012-08-13  Peter Gal  <galpeter@inf.u-szeged.hu>
-
-        REGRESSION(r125153): It broke the 'Unexpected no expected results' case
-        https://bugs.webkit.org/show_bug.cgi?id=93789
-
-        Reviewed by Csaba Osztrogonác.
-
-        Fix the regex, so the text won't be a capturing group.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (RunWebKitTests._parseNewRunWebKitTestsOutput):
-
-2012-08-12  MORITA Hajime  <morrita@google.com>
-
-        Unreviewed, added a proxy address to contributors_who_are_not_committers.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-08-12  Loïc Yhuel  <loic.yhuel@softathome.com>
-
-        [Qt] Make it possible to build without QtTest/QtPrintSupport
-        https://bugs.webkit.org/show_bug.cgi?id=93492
-
-        Reviewed by Tor Arne Vestbø.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro: Optional printsupport
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore):
-        (WebCore::DumpRenderTree::dryRunPrint): Does nothing if no printsupport
-        * QtTestBrowser/QtTestBrowser.pro: Optional printsupport
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::createChrome): No print menu if no printsupport
-        (LauncherWindow::print): Does nothing if no printsupport
-        * QtTestBrowser/launcherwindow.h:
-        * Tools.pro: Disable DRT/WTR if QtTest not present
-        * qmake/mkspecs/features/default_pre.prf: printsupport no more mandatory
-        * qmake/mkspecs/features/features.prf: Qt module availability tests
-
-2012-08-12  Csaba Osztrogonác  <ossy@webkit.org>
-
-        master.cfg unittest cleanup: Show DeprecationWarnings with python >= 2.7 too
-        https://bugs.webkit.org/show_bug.cgi?id=90161
-
-        Reviewed by Eric Seidel.
-
-        * BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py:
-
-2012-08-12  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Unreviewed trivial build fix: Newer Qt versions don't implicitly include qwindowsysteminterface.h
-        through the QTestLib headers anymore.
-
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        * WebKitTestRunner/Target.pri:
-        * WebKitTestRunner/qt/EventSenderProxyQt.cpp:
-
-2012-08-11  Sam Weinig  <sam@webkit.org>
-
-        Remove ability to run MiniBrowser in threaded mode, it hasn't worked for a long time
-        https://bugs.webkit.org/show_bug.cgi?id=93774
-
-        Reviewed by Dan Bernstein.
-
-        Remove support for opening windows using the shared thread WKContextRef. WKContextGetSharedThreadContext()
-        is going away, due to not working for a long time, and the first step is removing all the callers.
-
-        While here, remove the BrowserStatisticsWindow, which was not providing interesting information.
-
-        * MiniBrowser/MiniBrowser.xcodeproj/project.pbxproj:
-        * MiniBrowser/mac/AppDelegate.h:
-        * MiniBrowser/mac/AppDelegate.m:
-        (-[BrowserAppDelegate init]):
-        (-[BrowserAppDelegate newWindow:]):
-        (-[BrowserAppDelegate openPanelDidEnd:returnCode:contextInfo:]):
-        * MiniBrowser/mac/BrowserStatisticsWindow.xib: Removed.
-        * MiniBrowser/mac/BrowserStatisticsWindowController.h: Removed.
-        * MiniBrowser/mac/BrowserStatisticsWindowController.m: Removed.
-        * MiniBrowser/mac/MainMenu.xib:
-        * MiniBrowser/win/BrowserView.cpp:
-        (BrowserView::create):
-
-2012-08-11  Sam Weinig  <sam@webkit.org>
-
-        Enable XPC Service based WebProcess with runtime flag
-        https://bugs.webkit.org/show_bug.cgi?id=93773
-
-        Reviewed by Dan Bernstein.
-
-        Convert --use-web-process-xpc-service passed to run-safari (and similar scripts)
-        to setting WEBKIT_USE_XPC_SERVICE_FOR_WEB_PROCESS=YES in the environment and setting
-        up __XPC_DYLD_FRAMEWORK_PATH and __XPC_DYLD_INSERT_LIBRARIES variables. NOTE: using
-        the XPC service is not the default code path.
-
-        * Scripts/webkitdirs.pm:
-        (shouldUseXPCServiceForWebProcess):
-        (determineShouldUseXPCServiceForWebProcess):
-        Add functions to extract --use-web-process-xpc-service from ARGV and set a
-        global variable.
-
-        (printHelpAndExitForRunAndDebugWebKitAppIfNeeded):
-        Add help text for --use-web-process-xpc-service.
-
-        (runMacWebKitApp):
-        Set the WEBKIT_USE_XPC_SERVICE_FOR_WEB_PROCESS environment variable and DYLD
-        if --use-web-process-xpc-service was passed on the command line.
-
-        (execMacWebKitAppForDebugging):
-        Set the WEBKIT_USE_XPC_SERVICE_FOR_WEB_PROCESS environment variable and DYLD
-        if --use-web-process-xpc-service was passed on the command line. Also, bail
-        if both --use-web-process-xpc-service and --target-web-process are passed on
-        the command line, as we don't currently support using both.
-
-2012-08-11  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        [EFL] Bump harfbuzz dependency to v0.9.2
-        https://bugs.webkit.org/show_bug.cgi?id=93762
-
-        Reviewed by Eric Seidel.
-
-        EFL port has used harfbuzz 0.9.0 ver. However, the 0.9.2 version was released on 10th Aug 2012.
-        In addition, 0.9.0 ver. was disappeared. So, EFL port needs to use 0.9.2 ver. from now on.
-
-        * efl/jhbuild.modules:
-
-2012-08-10  Ryosuke Niwa  <rniwa@webkit.org>
-
-        run-perf-tests should upload memory statistics to perf-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=93690
-
-        Reviewed by Dirk Pranke.
-
-        Upload JS Heap and FastMalloc results for a test X/Y as: X/Y:JSHeap and X/Y:FastMalloc.
-        Note "JS Heap" is converted to the CamelCase JSHeap.
-
-        Also did some refactoring in PerfTest.parse_output and PerfTestRunnerTest and updated
-        some helps in PerfTest.parse_output per arv's comments.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest):
-        (PerfTest.parse_output): Include JSHeap and FastMalloc statistics in results as well as of Time.
-        Also refactored it to avoid hard-coding indices in _result_classes and moved complied regular
-        exressions out of the function to avoid re-compiling them every time the method runs.
-        (PerfTest.output_statistics): Convert ':' to ': ' as well as '/'.
-        (ChromiumStylePerfTest.parse_output): Removed an unused variable.
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._parse_args): Uploaded some helps per arv's feedback.
-        (PerfTestsRunner._output_json_path): Extracted from _generate_and_show_results to be used in
-        PerfTestRunnerTest.create_runner.
-        (PerfTestsRunner._generate_and_show_results):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (create_runner): Extracted runner.load_output_json from various tests.
-        (test_run_memory_test): Added.
-        (PerfTestRunner): Extracted _event_target_wrapper_and_inspector_results from various tests.
-        (test_run_with_json_output):
-        (test_run_with_description):
-        (test_run_generates_json_by_default):
-        (test_run_generates_and_show_results_page):
-        (test_run_with_json_source):
-        (test_run_with_multiple_repositories):
-
-2012-08-10  Benjamin Poulain  <bpoulain@apple.com>
-
-        Add support for String initialization from literal to WTFString
-        https://bugs.webkit.org/show_bug.cgi?id=93426
-
-        Reviewed by Anders Carlsson.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WTF/StringImpl.cpp:
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WTF/WTFString.cpp: Copied from Tools/TestWebKitAPI/Tests/WTF/StringImpl.cpp.
-        (TestWebKitAPI):
-        (TestWebKitAPI::TEST):
-
-2012-08-10  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        NRWT crashes when DRT with --encode-binary crashes just before it dumps pixels
-        https://bugs.webkit.org/show_bug.cgi?id=93728
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (ContentBlock.decode_content): Check self.content is not None before calling base64.b64decode().
-
-2012-08-10  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android][NRWT] Executable might not be pushed correctly when there are multiple builds
-        https://bugs.webkit.org/show_bug.cgi?id=93688
-
-        Reviewed by Dirk Pranke.
-
-        There might be other better methods, but this change is the smallest.
-        I think the chance of equal timestamp can be ignored because we flock
-        to avoid concurrent linkers.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidDriver._push_executable): Changed '<' to '!=' to compare the timestamp.
-
-2012-08-09  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] Skip layout tests directories that are not applicable
-        https://bugs.webkit.org/show_bug.cgi?id=93670
-
-        Reviewed by Dirk Pranke.
-
-        Added back ChromiumAndroidPort.skipped_layout_tests to skip some whole directories.
-        The method is more convenient to skip whole directories than SKIP in TestExpectations
-        because its higher priority. Will still use TestExpectations to skip individual tests.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.skipped_layout_tests):
-
-2012-08-09  Elliott Sprehn  <esprehn@chromium.org>
-
-        Add myself to the Contributor list.
-        https://bugs.webkit.org/show_bug.cgi?id=93653
-
-        Reviewed by Dirk Pranke.
-
-        Add my email to the contributor list.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-08-09  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: should log progress like ninja does
-        https://bugs.webkit.org/show_bug.cgi?id=93563
-
-        Reviewed by Ojan Vafai.
-
-        This change modifies the output of nrwt in the
-        non--debug-rwt-logging modes.
-
-        In non-verbose mode, the output changes from:
-          "Testing (50%): 96 ran as expected, 4 didn't, 100 left"
-        to:
-          "[100/200] foo.html (+4)"
-        or:
-          "[100/200] foo.html failed  unexpectedly (text diff)"
-
-        which indicates the earliest test currently running (optionally plus the
-        count of other currently-executing tests if we're running tests in parallel)
-        or the result of said test.
-
-        If the test produces unexpected results, that line is flushed
-        rather than erased (so we no longer need the %d didn't running
-        tally).
-
-        In --verbose mode, the output is similar, but every test gets a
-        line (and tests are logged in order of them being started, not
-        order of them being completed) (and in --details mode, the
-        first line of each test matches --verbose but the other lines
-        are unchanged).
-        
-        The overall result should be easier to read and is simpler to
-        implement as well (apart from managing the number of tests that
-        have started but not completed, which is slightly annoying).
-
-        This also matches the output style for test-webkitpy, more-or-less.
-
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner.py:
-        (LayoutTestRunner.run_tests):
-        (LayoutTestRunner._update_summary_with_result):
-        (LayoutTestRunner._handle_started_test):
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner_unittest.py:
-        (FakePrinter):
-        (FakePrinter.print_started_test):
-        (FakePrinter.print_finished_test):
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (Printer.__init__):
-        (Printer.print_started_test):
-        (Printer.print_finished_test):
-        (Printer._print_test_trace):
-        (Printer._print_progress):
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-        (test_details):
-
-2012-08-09  Alexey Proskuryakov  <ap@apple.com>
-
-        [WK2] Add a process model constant for multiple processes
-        https://bugs.webkit.org/show_bug.cgi?id=93642
-
-        Reviewed by Anders Carlsson.
-
-        * MiniBrowser/mac/AppDelegate.h: Updated process model enum to match WebKit.
-
-2012-08-09  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Build fix after r125178.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest.parse_output): Don't include non-time results in the JSON output.
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py: Updated the test outputs so to match
-        actual test outputs.
-        (MainTest.test_parse_output):
-        (MainTest.test_parse_output_with_failing_line):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py: Ditto.
-
-2012-08-09  Zoltan Horvath  <zoltan@webkit.org>
-
-        JSHeap and FastMallocStatistics based memory measurement for performance-tests
-        https://bugs.webkit.org/show_bug.cgi?id=90858
-
-        Reviewed by Ryosuke Niwa.
-
-        Measure the memory usage of the performancetests with the help of the windows.memory.usedJSHeapSize
-        object and the window.internals.fastMallocStatistics() function call.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest):
-        (PerfTest.parse_output):
-        (PerfTest.output_statistics):
-
-2012-08-09  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt][Win] Build system bug revealed by r124835
-        https://bugs.webkit.org/show_bug.cgi?id=93339
-
-        Reviewed by Tor Arne Vestbø.
-
-        Don't add "LC_ALL=c" on Windows in svnRevisionForDirectory() and in pathRelativeToSVNRepositoryRootForPath().
-
-        * Scripts/VCSUtils.pm:
-        (isWindows): Copied from webkitdirs.pm.
-        (svnRevisionForDirectory):
-        (pathRelativeToSVNRepositoryRootForPath):
-
-2012-08-08  Dirk Pranke  <dpranke@chromium.org>
-
-        update bot parsing of new-run-webkit-tests' output
-        https://bugs.webkit.org/show_bug.cgi?id=93537
-
-        Reviewed by Ryosuke Niwa.
-
-        This change updates the way we parse the output from
-        new-run-webkit-tests on the bots so that we can show a summary
-        of the results properly after I re-land the changes that were
-        reverted in r124994 and r124870.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (RunWebKitTests._parseNewRunWebKitTestsOutput):
-
-2012-08-08  Shane Stephens  <shanestephens@google.com>
-
-        Compile flag for CSS Hierarchies
-        https://bugs.webkit.org/show_bug.cgi?id=92433
-
-        Reviewed by Tony Chang.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2012-08-08  Benjamin Poulain  <bpoulain@apple.com>
-
-        Use char* instead of LChar* for the public interface of String construction from literals
-        https://bugs.webkit.org/show_bug.cgi?id=93402
-
-        Reviewed by Michael Saboff.
-
-        * TestWebKitAPI/Tests/WTF/StringImpl.cpp:
-        (TestWebKitAPI::TEST):
-
-2012-08-08  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: rename finder.py to layout_test_finder.py
-        https://bugs.webkit.org/show_bug.cgi?id=93557
-
-        Reviewed by Ryosuke Niwa.
-
-        One last cleanup per old review feedback from rniwa.
-
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_finder.py: Renamed from Tools/Scripts/webkitpy/layout_tests/controllers/finder.py.
-        (LayoutTestFinder):
-        (LayoutTestFinder.__init__):
-        (LayoutTestFinder.find_tests):
-        (LayoutTestFinder._strip_test_dir_prefixes):
-        (LayoutTestFinder._strip_test_dir_prefix):
-        (LayoutTestFinder._read_test_names_from_file):
-        (LayoutTestFinder._strip_comments):
-        (LayoutTestFinder.skip_tests):
-        (LayoutTestFinder.split_into_chunks):
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-
-2012-08-08  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Add Perf EWS IRC bot
-        https://bugs.webkit.org/show_bug.cgi?id=92913
-
-        Reviewed by Dirk Pranke.
-
-        Adds the preliminary implementation of perfalizer, a IRC bot that runs performance tests
-        based on IRC requests.
-
-        * Scripts/webkitpy/common/checkout/scm/scm_mock.py:
-        (MockSCM.head_svn_revision): The actual implementation returns string, so match that.
-        (MockSCM.svn_revision): Ditto.
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        (Bugzilla.add_attachment_to_bug): Added mimetype.
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla_mock.py:
-        (MockBugzilla.add_attachment_to_bug): Ditto.
-        * Scripts/webkitpy/common/system/filesystem.py:
-        (FileSystem.copytree): Added.
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        (MockFileSystem.copytree): Added.
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py: Rebaselined tests
-        that had assumed revision numbers were integers.
-        (test_run_with_json_output):
-        (test_run_with_description):
-        (test_run_generates_json_by_default):
-        (test_run_generates_and_show_results_page):
-        (test_run_with_json_source):
-        (test_run_with_multiple_repositories):
-        * Scripts/webkitpy/tool/bot/flakytestreporter_unittest.py:
-        * Scripts/webkitpy/tool/commands/__init__.py:
-        * Scripts/webkitpy/tool/commands/perfalizer.py: Added.
-        (PerfalizerTask):
-        (PerfalizerTask.__init__):
-        (PerfalizerTask._copy_build_product_without_patch):
-        (PerfalizerTask.run):
-        (PerfalizerTask.parent_command):
-        (PerfalizerTask.run_webkit_patch):
-        (PerfalizerTask._json_path):
-        (PerfalizerTask._results_page_path):
-        (PerfalizerTask._run_perf_test):
-        (PerfalizerTask.run_command):
-        (PerfalizerTask.command_passed):
-        (PerfalizerTask.command_failed):
-        (PerfalizerTask.refetch_patch):
-        (PerfalizerTask.expected_failures):
-        (PerfalizerTask.build_style):
-        (PerfTest): IRC command.
-        (PerfTest.execute):
-        (Perfalizer): IRC bot.
-        (Perfalizer.begin_work_queue):
-        (Perfalizer.work_item_log_path):
-        (Perfalizer._is_old_failure):
-        (Perfalizer.next_work_item):
-        (Perfalizer.process_work_item):
-        (Perfalizer.handle_unexpected_error):
-        (Perfalizer.handle_script_error):
-        * Scripts/webkitpy/tool/commands/perfalizer_unittest.py: Added.
-        (PerfalizerTaskTest):
-        (PerfalizerTaskTest._create_and_run_perfalizer):
-        (PerfalizerTaskTest._create_and_run_perfalizer.logger):
-        (PerfalizerTaskTest._create_and_run_perfalizer.run_webkit_patch):
-        (PerfalizerTaskTest._create_and_run_perfalizer.run_perf_test):
-        (PerfalizerTaskTest.test_run):
-        (PerfalizerTaskTest.test_run_with_clean_fails):
-        (PerfalizerTaskTest.test_run_with_update_fails):
-        (PerfalizerTaskTest.test_run_with_build_fails):
-        (PerfalizerTaskTest.test_run_with_perf_test_fails):
-        (PerfalizerTaskTest.test_run_without_results_page):
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        (AbstractPatchQueueTest.test_upload_results_archive_for_patch): Rebaselined.
-        * Scripts/webkitpy/tool/commands/upload_unittest.py:
-        (test_attach_to_bug): Ditto.
-        (test_attach_to_bug_no_description_or_comment): Ditto.
-
-2012-08-08  Dirk Pranke  <dpranke@chromium.org>
-
-        webkit-patch rebaseline-expectations needs to support multiple expectations files
-        https://bugs.webkit.org/show_bug.cgi?id=89051
-
-        Reviewed by Adam Barth.
-
-        fixed the bug described above, added unit test in
-        test_expectations_unittest, and updated the tool tests
-        to not contain all of the "missing skia expectations" warnings.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectations.remove_rebaselined_tests):
-        (TestExpectations.remove_rebaselined_tests.without_rebaseline_modifier):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (RebaseliningTest.assertRemove):
-        (RebaseliningTest.test_remove):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineExpectations._update_expectations_files):
-        (RebaselineExpectations.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (TestRebaseline.test_rebaseline_updates_expectations_file_noop):
-        (test_rebaseline_expectations):
-
-2012-08-08  Alexey Proskuryakov  <ap@apple.com>
-
-        [WK2] MiniBrowser crashes on quit if any windows were previously closed
-        https://bugs.webkit.org/show_bug.cgi?id=93529
-
-        Reviewed by John Sullivan.
-
-        * MiniBrowser/mac/AppDelegate.h:
-        * MiniBrowser/mac/AppDelegate.m:
-        (-[BrowserAppDelegate init]):
-        (-[BrowserAppDelegate newWindow:]):
-        (-[BrowserAppDelegate browserWindowWillClose:]):
-        (-[BrowserAppDelegate applicationWillTerminate:]):
-        (-[BrowserAppDelegate frontmostBrowserWindowController]):
-        Track browser windows explicitly, not relying on [NSApp windows]. Closed windows
-        are not automatically removed from the list until deallocated, so a refcounting
-        error can result in working on a closed window.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController dealloc]): Moved code from -windowWillClose: here.
-        Releasing data members is -dealloc's job.
-        (-[BrowserWindowController windowWillClose:]): Notify BrowserAppDelegate that
-        the window is no longer open. Autorelease self, making sure that WKView and
-        then WebPageProxy get released.
-        (-[BrowserWindowController applicationTerminating]): Don't release _webView.pageRef.
-        WKView is responsible for its lifetime.
-        (closePage): Ditto.
-
-2012-08-08  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] Apply all Linux layout test expectations
-        https://bugs.webkit.org/show_bug.cgi?id=92653
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.skipped_layout_tests): Removed. Skip these tests in TestExpectations instead.
-
-2012-08-08  Josh Hawn  <jhawn@apple.com>
-
-        Add MountainLion WebKit Bots.
-        https://bugs.webkit.org/show_bug.cgi?id=93417
-
-        Reviewed by Stephanie Lewis.
-
-        Mountain Lion is now available, so we've added the appropriate Apple bots,
-        mirroring the configuration of the Lion bots.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-        Added 10 "apple-mini-###" slaves.
-        Added MountainLion Builders and Schedulers.
-
-2012-08-08  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [WK2] Coding style violation was brought with r125031
-        https://bugs.webkit.org/show_bug.cgi?id=93503
-
-        Reviewed by Alexey Proskuryakov.
-
-        WKURLResponseCopyMimeType is corrected to WKURLResponseCopyMIMEType.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::didReceiveResponseForResource):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (WTR::LayoutTestController::dumpProgressFinishedCallback): Removed trailing whitespace that was brought with the same revision.
-
-2012-08-08  Peter Beverloo  <peter@chromium.org>
-
-        Buildmaster changes in preparation of a Chromium Android tester
-        https://bugs.webkit.org/show_bug.cgi?id=92251
-
-        Reviewed by Adam Barth.
-
-        Slightly update the build master's configuration in preparation of adding
-        a Chromium Android tester.
-
-        The change in built-product-archive is required as the out/ directory
-        for Android has a number of unstripped .so binaries and unaligned APKs,
-        causing the default release.zip file to be 2.7 gigabytes. By excluding
-        these file types, the file is only 59.7 megabytes. We can't disable
-        them for all of Chromium, as Mac and Linux do use their .so files.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (ArchiveBuiltProduct): Pass the full platform name instead of just the
-            generic type, i.e. chromium-android instead of chromium.
-        (ExtractBuiltProduct): Dito, stay consistent for this script.
-        (RunUnitTests): Pass --chromium-android as well as --chromium. Since we
-            now read the full platform name, stay on the safe side with 'win'
-            even though there (as far as I know) is no win-* platform.
-        (RunChromiumWebKitUnitTests): Dito. The platform wasn't being passed
-            at all, but we'll be needing different handling here.
-        (unitTestsSupported): Next to refactoring work required, as we'll be
-            running this test on a device, there is no reason to disable this
-            in the master's configuration.
-        * BuildSlaveSupport/built-product-archive:
-        (main): Determine the generic platform.
-        (archiveBuiltProduct): Use an identical set of ignorePatterns, but
-            extend the list with .so, .pak and -unaligned.apk for Android.
-
-2012-08-08  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed. Stop running tests on the mac-ews while we wait for more
-        hardware. As requested by lforschler.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-
-2012-08-08  Peter Beverloo  <peter@chromium.org>
-
-        The cr-android EWS should actually be building Chromium for Android
-        https://bugs.webkit.org/show_bug.cgi?id=93489
-
-        Reviewed by Adam Barth.
-
-        The cr-android EWS bots should be building Chromium for Android, which
-        requires some additional flags to Chromium's default configuration.
-
-        * Scripts/webkitdirs.pm:
-        (buildChromium):
-        * Scripts/webkitpy/common/config/ports.py:
-        (DeprecatedPort.port):
-        (ChromiumAndroidPort):
-        (ChromiumAndroidPort.update_webkit_command):
-        (ChromiumAndroidPort.build_webkit_command):
-        * Scripts/webkitpy/common/config/ports_unittest.py:
-        (DeprecatedPortTest.test_chromium_android_port):
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (ChromiumAndroidEWS):
-        * Scripts/webkitpy/tool/steps/update_unittest.py:
-        (UpdateTest.test_update_command_non_interactive):
-        (UpdateTest.test_update_command_interactive):
-
-2012-08-08  Alexey Proskuryakov  <ap@apple.com>
-
-        [WK2] MiniBrowser crashes on window.open()
-        https://bugs.webkit.org/show_bug.cgi?id=93413
-
-        Reviewed by Dan Bernstein.
-
-        * MiniBrowser/mac/BrowserWindowController.m: (createNewPage): This is a "create"
-        API, so it needs to return a retained result.
-
-        * MiniBrowser/mac/WebBundle/WebBundleMain.m: (didClearWindowObjectForFrame):
-        When this function is called, URL appears to be poorly defined. Sometimes, it's
-        the new URL, other times it's the old one. An "old" URL is null in a new page.
-
-2012-08-08  Loïc Yhuel  <loic.yhuel@softathome.com>
-
-        [Qt] Compile errors with OpenGLES2
-        https://bugs.webkit.org/show_bug.cgi?id=93206
-
-        Reviewed by Noam Rosenthal.
-
-        Fix build with OpenGLES2 on Linux desktop
-
-        * qmake/mkspecs/features/features.prf: Don't use GLX with OpenGLES2
-
-2012-08-08  Peter Beverloo  <peter@chromium.org>
-
-        Introduce cr-android bots in the EWS system
-        https://bugs.webkit.org/show_bug.cgi?id=93472
-
-        Reviewed by Adam Barth.
-
-        This adds the queue to the EWS scripts. Two builders are ready to be
-        attached to the queue. All webkitpy tests pass with this change applied.
-
-        * QueueStatusServer/model/queues.py:
-        (Queue):
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (ChromiumAndroidEWS):
-        * Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
-        (EarlyWarningSytemTest.test_builder_ewses):
-
-2012-08-08  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed. Fix GTK+ build with GTK2 after r121475.
-
-        * TestWebKitAPI/Tests/gtk/InputMethodFilter.cpp: Add missing
-        include required when building with GTK2.
-
-2012-08-08  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [WK2] [WTR] Provide Resource Response dumping.
-        https://bugs.webkit.org/show_bug.cgi?id=93454
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Added missing dumpResourceResponseMIMETypes() method to testRunner. Provided resource response dumping.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::didReceiveResponseForResource):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::LayoutTestController):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (WTR::LayoutTestController::dumpProgressFinishedCallback):
-        (WTR::LayoutTestController::dumpResourceResponseMIMETypes):
-        (WTR::LayoutTestController::shouldDumpResourceResponseMIMETypes):
-        (LayoutTestController):
-
-2012-08-08  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt][Win] Fix compilation of DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=93461
-
-        Reviewed by Tor Arne Vestbø.
-
-        DRT includes stdint.h, for which we have wrappers in Source/JavaScriptCore/os-win32. Use these not only
-        for libraries but any building template.
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2012-08-08  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [WK2] [WTR] Refactoring: LayoutTestController::shouldDumpProgressFinishedCallback() should be const
-        https://bugs.webkit.org/show_bug.cgi?id=93457
-
-        Reviewed by Csaba Osztrogonác.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (WTR::LayoutTestController::shouldDumpProgressFinishedCallback): Added constness.
-
-2012-08-07  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed typo fix after r124988.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectations):
-
-2012-08-07  YoungTaeck Song  <youngtaeck.song@samsung.com>
-
-        [WK2][EFL] Implement accelerated compositing on WK2 Efl port
-        https://bugs.webkit.org/show_bug.cgi?id=89840
-
-        Reviewed by Noam Rosenthal.
-
-        Implement accelerated composition with TiledBackingStore on WK2 Efl port.
-        Add OPENGL_LIBRARIES in CMakeList.txt.
-
-        * MiniBrowser/efl/CMakeLists.txt:
-        * WebKitTestRunner/PlatformEfl.cmake:
-
-2012-08-07  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [NRWT] REGRESSION(r124967): New tests without expected results handled as failures
-        https://bugs.webkit.org/show_bug.cgi?id=93434
-
-        Reviewed by Tony Chang.
-
-        Change back "missing results" to "no expected result found", because master.cfg's results parser expects it.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectations):
-
-2012-08-07  Csaba Osztrogonác  <ossy@webkit.org>
-
-        buildbot: Remove the configuration of hfreyther*
-        https://bugs.webkit.org/show_bug.cgi?id=91849
-
-        Unreviewed typo fix after r123757.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-08-07  Dirk Pranke  <dpranke@chromium.org>
-
-        REGRESSION: PrettyPatchTest.test_pretty_diff_encodings has been failing on Chromium Windows
-        https://bugs.webkit.org/show_bug.cgi?id=93192
-
-        Unreviewed, build fix.
-
-        Disabling the test for now as PrettyPatch is just broken on win32.
-
-        * Scripts/webkitpy/common/prettypatch_unittest.py:
-        (test_pretty_diff_encodings):
-
-2012-08-07  Dirk Pranke  <dpranke@chromium.org>
-
-        [NRWT] Would like an output mode similar to ORWT verbose one
-        https://bugs.webkit.org/show_bug.cgi?id=88702
-
-        Reviewed by Ryosuke Niwa.
-
-        Change the --verbose logging for new-run-webkit-tests so that
-        it matches ORWT more; we just print one line per test. Use
-        --debug-rwt-logging to get the full debug stream (aka old ORWT
-        --verbose).
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectations):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (_set_up_derived_options):
-        (parse_args):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_retrying_and_flaky_tests):
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (print_options):
-        (Printer._print_result_summary_entry):
-        (Printer._print_one_line_summary):
-        (Printer._print_test_result):
-        (Printer._print_baseline):
-        (Printer._print_unexpected_results):
-
-2012-08-07  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: handle errors from image diff better
-        https://bugs.webkit.org/show_bug.cgi?id=92934
-
-        Reviewed by Ojan Vafai.
-
-        Re-land the change in r124801 with a fix ... in the case where
-        the ImageDiff is passed a tolerance and passes the fuzzy check,
-        we were returning the wrong value (missing an empty error
-        string) and crashing; this patch fixes that and adds a test for
-        that case (TestImageDiffer.test_image_diff_passed).
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner._compare_image):
-        (SingleTestRunner._compare_output_with_reference):
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer.py:
-        (write_test_result):
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer_unittest.py:
-        (TestResultWriterTest.test_reftest_diff_image.ImageDiffTestPort.diff_image):
-        (TestResultWriterTest):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.diff_image):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.diff_image):
-        * Scripts/webkitpy/layout_tests/port/chromium_port_testcase.py:
-        (ChromiumPortTestCase.test_diff_image_crashed):
-        * Scripts/webkitpy/layout_tests/port/image_diff.py:
-        (ImageDiffer.diff_image):
-        (ImageDiffer._read):
-        * Scripts/webkitpy/layout_tests/port/image_diff_unittest.py:
-        (TestImageDiffer.test_diff_image):
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        (MockDRTPortTest.test_diff_image_crashed):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (PortTestCase.test_diff_image):
-        (PortTestCase.test_diff_image_crashed):
-        (PortTestCase.test_diff_image_crashed.make_proc):
-        * Scripts/webkitpy/layout_tests/port/server_process_mock.py:
-        (MockServerProcess.__init__):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort.diff_image):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_tolerance.ImageDiffTestPort.diff_image):
-
-2012-08-07  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: --no-build isn't working
-        https://bugs.webkit.org/show_bug.cgi?id=93415
-
-        Reviewed by Ryosuke Niwa.
-
-        Turns out our optimization to avoid calling
-        webkit-build-directory N times for each worker broke --no-build.
-
-        Fixing, and adding a test.
-
-        Also, the gtk port wasn't using the default check_build() logic,
-        but I don't know why not. Removing their custom hook and will
-        verify that this is okay in the review ...
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.__init__):
-        (Port.check_build):
-        (Port._build_path):
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort._path_to_image_diff):
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        (MockDRTPortTest.test_check_build):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (test_path_to_apache_config_file):
-        (test_check_build):
-        (test_check_build.build_driver_called):
-
-2012-08-07  Ryosuke Niwa  <rniwa@webkit.org>
-
-        run-perf-tests should support --no-show-results
-        https://bugs.webkit.org/show_bug.cgi?id=93409
-
-        Reviewed by Dirk Pranke.
-
-        Add the support for --no-show-results.
-
-        Also replace only local paths to jquery and flot instead of embedding them.
-        The results page is still standalone in that it tries to load scripts
-        from both webkit.org and local filesystem.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._parse_args):
-        (PerfTestsRunner.run):
-        (PerfTestsRunner._generate_and_show_results):
-        (PerfTestsRunner._generate_output_files):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (create_runner_and_setup_results_template):
-        (test_run_generates_and_show_results_page):
-        (test_run_respects_no_show_results):
-
-2012-08-07  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy hangs in a new checkout on snow leopard
-        https://bugs.webkit.org/show_bug.cgi?id=93301
-
-        Reviewed by Ryosuke Niwa.
-
-        This change works around what appears to be a bug in Python
-        2.6.1 (the version that ships on Mac Snow Leopard) that causes
-        the multiprocessing module to hang after we use the
-        autoinstaller; I'm guessing it's some sort of python sockets
-        issue. I was unable to reproduce this with 2.6.5 or newer
-        versions of Python.
-
-        * Scripts/webkitpy/common/system/autoinstall.py:
-        (AutoInstaller.install):
-        * Scripts/webkitpy/test/main.py:
-        (Tester._run_tests):
-        * Scripts/webkitpy/thirdparty/__init__.py:
-        (AutoinstallImportHook._install_mechanize):
-        (AutoinstallImportHook._install_pep8):
-        (AutoinstallImportHook._install_pylint):
-        (AutoinstallImportHook._install_buildbot):
-        (AutoinstallImportHook._install_coverage):
-        (AutoinstallImportHook._install_eliza):
-        (AutoinstallImportHook._install_irc):
-        (AutoinstallImportHook._install_webpagereplay):
-        (AutoinstallImportHook._install):
-        (autoinstall_everything):
-
-2012-08-07  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android][NRWT] Fix 2 FIXMEs in chromium_android.py
-        https://bugs.webkit.org/show_bug.cgi?id=93381
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidDriver.__init__):
-        (ChromiumAndroidDriver._push_executable): Remove temporary lines as the chromium change has been landed: http://src.chromium.org/viewvc/chrome?view=rev&revision=150371
-        (ChromiumAndroidDriver._setup_performance): Update all scaling governor files.
-        (ChromiumAndroidDriver._teardown_performance): Update all scaling governor files.
-
-2012-08-07  W. James MacLean  <wjmaclean@chromium.org>
-
-        [chromium] Add support to DumpRenderTree [EventSender] for GestureTapDown events.
-        https://bugs.webkit.org/show_bug.cgi?id=93286
-
-        Reviewed by James Robinson.
-
-        Adds support to generate GestureTapDown events from EventSender, to facilitate
-        link highlighting layout tests.
- 
-        Added a GestureTapEvent to one existing test, more tests to follow when LinkHighlight CLs start to land.
-
-        * DumpRenderTree/chromium/TestRunner/EventSender.cpp:
-        (EventSender::EventSender):
-        (EventSender::gestureTapDown):
-        (EventSender::gestureEvent):
-        * DumpRenderTree/chromium/TestRunner/EventSender.h:
-        (EventSender):
-
-2012-08-07  Marcelo Lira  <marcelo.lira@openbossa.org>
-
-        [Qt] Add support for the Gamepad API
-        https://bugs.webkit.org/show_bug.cgi?id=90637
-
-        Reviewed by Alexis Menard.
-
-        If the libudev library is present, the GAMEPAD flag is
-        turned on by default for the Qt port.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.prf:
-
-2012-08-07  Rob Buis  <rbuis@rim.com>
-
-        [BlackBerry] Turn on CSS Variables
-        https://bugs.webkit.org/show_bug.cgi?id=93376
-
-        Reviewed by Antonio Gomes.
-
-        Turn on CSS Variables for BlackBerry port.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-08-07  No'am Rosenthal  <noam.rosenthal@nokia.com>
-
-        [Qt] Make it possible to build without QtQuick
-
-        Reviewed by Simon Hausmann.
-
-        * Tools.pro:
-        * qmake/mkspecs/features/features.prf:
-
-2012-08-02  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Remove Qt 4 specific code paths
-        https://bugs.webkit.org/show_bug.cgi?id=88161
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        (EventSender::touchCancel):
-        (EventSender::sendTouchEvent):
-        * DumpRenderTree/qt/EventSenderQt.h:
-        (EventSender):
-        * DumpRenderTree/qt/ImageDiff.pro:
-        * DumpRenderTree/qt/main.cpp:
-        (main):
-        * QtTestBrowser/QtTestBrowser.pro:
-        * QtTestBrowser/cookiejar.cpp:
-        (TestBrowserCookieJar::TestBrowserCookieJar):
-        * QtTestBrowser/launcherwindow.cpp:
-        (LauncherWindow::setDiskCache):
-        * qmake/configure.pri:
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/default_pre.prf:
-        * qmake/mkspecs/features/features.prf:
-        * qmake/mkspecs/features/functions.prf:
-        * qmake/mkspecs/features/qtwebkit.prf: Removed.
-        * qmake/mkspecs/features/unix/default_pre.prf:
-
-2012-08-07  Andras Becsi  <andras.becsi@nokia.com>
-
-        [Qt][WK2] MiniBrowser should only synthesize multiple touch points if Ctrl is pressed
-        https://bugs.webkit.org/show_bug.cgi?id=93277
-
-        Reviewed by Jocelyn Turcotte.
-
-        MiniBrowser's multi-touch mocking does not check if Ctrl is pressed
-        when registering multiple touch points based on pressed mouse buttons
-        and sends inconsistent touch events to the WebView which triggers an
-        assert in the pinch gesture recognizer.
-        MiniBrowserApplication::updateTouchPoint should only register multiple
-        touch points if the Ctrl button is pressed else it should ignore the
-        update request.
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::updateTouchPoint):
-
-2012-08-07  Csaba Osztrogonác  <ossy@webkit.org>
-
-        REGRESSION(r124800): It broke NRWT result parsing of build.webkit.org
-        https://bugs.webkit.org/show_bug.cgi?id=93346
-
-        Rubber-stamped by Simon Hausmann.
-
-        Change back "unexpected" to "Unexpected", because master.cfg's results parser expects it.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_retrying_and_flaky_tests):
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (Printer._print_unexpected_results):
-
-2012-08-06  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [NRWT] runs platform specific tests that it shouldn't with --force
-        https://bugs.webkit.org/show_bug.cgi?id=91089
-
-        Reviewed by Dirk Pranke.
-
-        Ignore other platform's directories from platform/.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port._expanded_paths):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_platform_tests_are_found):
-        Updated integration test in accordance to the new behavior.
-
-2012-08-06  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        [EFL] Enable link prefetch
-        https://bugs.webkit.org/show_bug.cgi?id=93281
-
-        Reviewed by Kentaro Hara.
-
-        * Scripts/webkitperl/FeatureList.pm: Enable LINK_PREFETCH feature.
-
-2012-08-06  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r124801.
-        http://trac.webkit.org/changeset/124801
-        https://bugs.webkit.org/show_bug.cgi?id=93338
-
-        It broke NRWT (Requested by Ossy on #webkit).
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner._compare_image):
-        (SingleTestRunner._compare_output_with_reference):
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer.py:
-        (write_test_result):
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer_unittest.py:
-        (TestResultWriterTest.test_reftest_diff_image.ImageDiffTestPort.diff_image):
-        (TestResultWriterTest):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.diff_image):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.diff_image):
-        * Scripts/webkitpy/layout_tests/port/chromium_port_testcase.py:
-        (ChromiumPortTestCase.test_diff_image):
-        * Scripts/webkitpy/layout_tests/port/image_diff.py:
-        (ImageDiffer.diff_image):
-        (ImageDiffer._read):
-        * Scripts/webkitpy/layout_tests/port/image_diff_unittest.py:
-        (TestImageDiffer.test_diff_image):
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        (MockDRTPortTest.test_diff_image):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (PortTestCase.test_diff_image):
-        * Scripts/webkitpy/layout_tests/port/server_process_mock.py:
-        (MockServerProcess.__init__):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort.diff_image):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_tolerance.ImageDiffTestPort.diff_image):
-
-2012-08-06  Wei James  <james.wei@intel.com>
-
-        [Chromium]duplicated command line options in Android LayoutTest
-        https://bugs.webkit.org/show_bug.cgi?id=93233
-
-        Reviewed by Tony Chang.
-
-        Duplicated options found in Android layout test command line:
-        --encode-binary and --enable-hardware-gpu.
-
-        If there are multiple ChromiumAndroidPort instances,
-        these two options will be appended for multiple times.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.additional_drt_flag):
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.__init__):
-        (ChromiumAndroidPort.additional_drt_flag):
-        * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:
-        (ChromiumAndroidTwoPortsTest):
-        (ChromiumAndroidTwoPortsTest.test_options_with_two_ports):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.cmd_line):
-
-2012-08-03  Brady Eidson  <beidson@apple.com>
-
-        Out-of-process plug-ins should support asynchronous initialization
-        <rdar://problem/10598594> and https://bugs.webkit.org/show_bug.cgi?id=92919
-
-        Reviewed by Anders Carlsson.
-
-        Add a plug-in with an NPP_New that takes 550ms (a reasonable trade-off between a solid test and a slow running test)
-        for testing asynchronous plug-in initialization.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/TestNetscapePlugIn/Tests/SlowNPPNew.cpp: Copied from Source/WebKit2/Shared/Plugins/PluginProcessCreationParameters.h.
-        (SlowNPPNew):
-        (SlowNPPNew::SlowNPPNew):
-        (SlowNPPNew::NPP_New):
-
-2012-08-06  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] Virtual test suites fail
-        https://bugs.webkit.org/show_bug.cgi?id=92515
-
-        Reviewed by Dirk Pranke.
-
-        The failure is because our bypassing of DriverProxy.
-        Repeat the logic of virtual tests in DriverProxy in ChromiumAndroidDriver
-        and restart DRT when the command line changes.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidDriver.__init__):
-        (ChromiumAndroidDriver.cmd_line): Added comments about why we override this and have _drt_cmd_line().
-        (ChromiumAndroidDriver.run_test): Repeat the logic of virtual tests in DriverProxy.
-        (ChromiumAndroidDriver.start): Restart DRT when the command line changes.
-        (ChromiumAndroidDriver._start_once):
-
-2012-08-06  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        Remove NRWT --shard-ref-tests
-        https://bugs.webkit.org/show_bug.cgi?id=91539
-
-        This is basically a revert of "[Chromium-Android] Run ref tests together to avoid expensive driver restarts"
-        (https://bugs.webkit.org/show_bug.cgi?id=91533, http://trac.webkit.org/changeset/122914),
-        with some conflicts resolved (because of refactory of Manager/LayoutTestRunner/Sharder classes).
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner.py:
-        (LayoutTestRunner.run_tests):
-        (Sharder.shard_tests):
-        (Sharder._shard_in_two):
-        (Sharder._shard_by_directory):
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner_unittest.py:
-        (SharderTests):
-        (SharderTests.get_test_input):
-        (SharderTests.get_shards):
-        (SharderTests.test_shard_by_dir):
-        (SharderTests.test_shard_in_two):
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._test_input_for_file):
-        (Manager._test_is_slow):
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.__init__):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-
-2012-08-06  Luciano Wolf  <luciano.wolf@openbossa.org>
-
-        [Qt] Default sizes for input-text and text-area are different when running DRT/WTR
-        https://bugs.webkit.org/show_bug.cgi?id=91990
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Initializing TestFonts information into WTR binary. Doing it 
-        later leads to wrong font names usage (Dejavu Serif instead
-        of Liberation Serif).
-
-        * WebKitTestRunner/Target.pri:
-        * WebKitTestRunner/qt/main.cpp:
-        (main):
-
-2012-08-06  Jeff Timanus  <twiz@chromium.org>
-
-        Add twiz@{chromium|google}.org to the set of non-committer contributors.
-        https://bugs.webkit.org/show_bug.cgi?id=93288
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-08-06  Adam Barth  <abarth@webkit.org>
-
-        REGRESSION(124789): EWS errors out because --print option is missing
-        https://bugs.webkit.org/show_bug.cgi?id=93299
-
-        Unreviewed.
-
-        The --print option doesn't exist anymore.  Let's try --quiet instead.
-
-        * Scripts/webkitpy/tool/steps/runtests.py:
-        (RunTests.run):
-        * Scripts/webkitpy/tool/steps/runtests_unittest.py:
-
-2012-08-06  Ryosuke Niwa  <rniwa@webkit.org>
-
-        run-webkit-tests should have ability to add description to its JSON output
-        https://bugs.webkit.org/show_bug.cgi?id=93296
-
-        Reviewed by Dirk Pranke.
-
-        Add --description option.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._parse_args):
-        (PerfTestsRunner._generate_and_show_results):
-        (PerfTestsRunner._generate_results_dict):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (test_run_with_description):
-
-2012-08-06  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: handle errors from image diff better
-        https://bugs.webkit.org/show_bug.cgi?id=92934
-
-        Reviewed by Ojan Vafai.
-
-        Currently if ImageDiff crashes, returns a weird exit code, or
-        produces any stderr output, it's basically swallowed. This
-        change ensures that we log errors to stderr, and also appends
-        the error to the stderr for the test (so it'll show up in
-        results.html).
-
-        Most importantly, it'll cause diff_image() to fail and we'll
-        report ImageHashMismatch ... this may be kinda untrue, but I
-        think it's better than ignoring the error.
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner._compare_image):
-        (SingleTestRunner._compare_output_with_reference):
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer.py:
-        (write_test_result):
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer_unittest.py:
-        (TestResultWriterTest.test_reftest_diff_image.ImageDiffTestPort.diff_image):
-        (TestResultWriterTest):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.diff_image):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.diff_image):
-        * Scripts/webkitpy/layout_tests/port/chromium_port_testcase.py:
-        (ChromiumPortTestCase.test_diff_image_crashed):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.run_test):
-        * Scripts/webkitpy/layout_tests/port/image_diff.py:
-        (ImageDiffer.diff_image):
-        (ImageDiffer._read):
-        * Scripts/webkitpy/layout_tests/port/image_diff_unittest.py:
-        (TestImageDiffer.test_diff_image):
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        (MockDRTPortTest.test_diff_image_crashed):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (PortTestCase.test_diff_image):
-        (PortTestCase):
-        (PortTestCase.test_diff_image_crashed):
-        (PortTestCase.test_diff_image_crashed.make_proc):
-        * Scripts/webkitpy/layout_tests/port/server_process_mock.py:
-        (MockServerProcess.__init__):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort.diff_image):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_tolerance.ImageDiffTestPort.diff_image):
-
-2012-08-06  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: clean up printing.py
-        https://bugs.webkit.org/show_bug.cgi?id=93026
-
-        Reviewed by Dirk Pranke.
-
-        This patch cleans up the implementation of printing.py now
-        that we're not using all the original complexity.
-
-        There should be no changes in functionality and everything
-        should be covered by the existing tests.
-
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner.py:
-        (LayoutTestRunner.run_tests):
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (Printer.__init__):
-        (Printer.__del__):
-        (Printer.print_config):
-        (Printer.print_found):
-        (Printer.print_expected):
-        (Printer.print_workers_and_shards):
-        (Printer):
-        (Printer._print_expected_results_of_type):
-        (Printer.print_results):
-        (Printer._print_timing_statistics):
-        (Printer._print_aggregate_test_statistics):
-        (Printer._print_individual_test_times):
-        (Printer._print_test_list_timing):
-        (Printer._print_directory_timings):
-        (Printer._print_statistics_for_test_timings):
-        (Printer._print_result_summary):
-        (Printer._print_result_summary_entry):
-        (Printer._print_one_line_summary):
-        (Printer.print_finished_test):
-        (Printer._print_test_result):
-        (Printer._print_test_trace):
-        (Printer._print_baseline):
-        (Printer._print_unexpected_test_result):
-        (Printer._print_progress):
-        (Printer._print_unexpected_results):
-        (Printer._print_unexpected_results.add_result):
-        (Printer._print_quiet):
-        (Printer._print_default):
-        (Printer._print_debug):
-        (Printer._print_for_bot):
-        (Printer.write_update):
-        (Printer.writeln):
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-        (Testprinter.get_printer):
-        (Testprinter.test_print_config):
-        (Testprinter.test_print_one_line_summary):
-        (Testprinter.test_print_unexpected_results):
-        (test_details):
-
-2012-08-06  Dirk Pranke  <dpranke@chromium.org>
-
-        change bots to pass --debug-rwt-logging instead of --verbose to new-run-webkit-tests
-        https://bugs.webkit.org/show_bug.cgi?id=93043
-
-        Reviewed by Ryosuke Niwa.
-
-        in preparation for the cleanup of the logging flags in new-run-webkit-tests.
-
-        * Scripts/run-webkit-tests:
-
-2012-08-06  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: clean up logging, part 1
-        https://bugs.webkit.org/show_bug.cgi?id=93018
-
-        Reviewed by Ojan Vafai.
-
-        remove --print, --help-printing from nrwt, add three new options:
-        --quiet, which just logs warnings,errors, and unexpected results
-        --debug-rwt-logging, a new name for --verbose
-        --details, to get the old --print trace-everything behavior
-
-        This patch does not implement the new "one line per test"
-        --verbose behavior specified in bug 88702, and there's a bunch
-        of internal cleanup I can do in printing.py that I'll defer to
-        a later patch to make things easier to review.
-
-        This patch deletes a lot of unit tests that are no longer
-        necessary since there aren't so many logging combinations.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (run):
-        (main):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (parse_args):
-        (passing_run):
-        (StreamTestingMixin.assertContains):
-        (MainTest.test_child_processes_2):
-        (MainTest.test_child_processes_min):
-        (MainTest.test_full_results_html):
-        (MainTest.test_no_tests_found):
-        (MainTest.test_no_tests_found_2):
-        (MainTest.test_repeat_each_iterations_num_tests):
-        (MainTest.test_additional_platform_directory):
-        (RebaselineTest.assertBaselines):
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (print_options):
-        (Printer.__init__):
-        (Printer.enabled):
-        (Printer.print_unexpected_results):
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-        (TestUtilityFunctions.test_print_options):
-        (Testprinter.get_result_summary):
-        (Testprinter.test_configure_and_cleanup):
-        (Testprinter.test_print_config):
-        (Testprinter.test_print_one_line_summary):
-        (Testprinter.test_print_unexpected_results):
-        (test_details):
-        (test_default):
-        (test_quiet):
-        (test_verbose):
-
-2012-08-06  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] Store test executable, data and fonts in /data/local/tmp
-        https://bugs.webkit.org/show_bug.cgi?id=91910
-
-        /data/local/tmp is a directory with permission 0777 by default.
-        Place DumpRenderTree resources here so that both the native test app and
-        the NRWT script can access them even if adb shell isn't running as root.
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/TestShellAndroid.cpp:
-        (createFIFO): Set fifo mode to 0666 to allow unrooted adb shell to access.
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.driver_cmd_line):
-        (ChromiumAndroidDriver.__init__):
-        (ChromiumAndroidDriver._setup_test):
-        (ChromiumAndroidDriver._push_executable):
-        * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:
-        (ChromiumAndroidPortTest.make_port):
-        (ChromiumAndroidPortTest.test_expectations_files):
-        (ChromiumAndroidDriverTest.test_drt_cmd_line):
-
-2012-08-06  Abhishek Arya  <inferno@chromium.org>
-
-        [Chromium] Re-expose layoutTestController as various fuzzers depend on it
-        https://bugs.webkit.org/show_bug.cgi?id=93282
-
-        Reviewed by Ryosuke Niwa.
-
-        Unfortunately, various fuzzers used in the Chromium project still depends on
-        window.layoutTestController. Re-expose the object while they're making the transition.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::bindJSObjectsToWindow):
-
-2012-08-06  Balazs Kelemen  <kbalazs@webkit.org>
-
-        WTR should be able to load external resources
-        https://bugs.webkit.org/show_bug.cgi?id=89382
-
-        Reviewed by Ryosuke Niwa.
-
-        Allow to load an external resource as the main frame
-        and allow all subsequent external loads for such a main
-        frame. This behavior is necessary for being able to run
-        performance tests (https://bugs.webkit.org/show_bug.cgi?id=84008).
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::isLocalHost):
-        (WTR):
-        (WTR::isHTTPOrHTTPSScheme):
-        (WTR::InjectedBundlePage::willSendRequestForFrame):
-
-2012-08-06  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [WK2] REGRESSION(124596) lot of web process unresponsiveness appears on Apple bots
-        https://bugs.webkit.org/show_bug.cgi?id=93120
-
-        Reviewed by Csaba Osztrogonác.
-
-        Set the short timeout back to 15 seconds and add more time to WebKitTestRunner
-        so it will be able to detect an unresponsive web process.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.default_timeout_ms):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR):
-
-2012-08-06  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed. Fix make distcheck.
-
-        * GNUmakefile.am: Add jhbuildutils.py to EXTRA_DIST.
-
-2012-08-06  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL] EFL's LayoutTestController needs removeAllVisitedLinks implementation
-        https://bugs.webkit.org/show_bug.cgi?id=82724
-
-        Reviewed by Csaba Osztrogonác.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::removeAllVisitedLinks):
-
-2012-08-06  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        [WK2][GTK] Implement a new spell checker API for WebKit2GTK+
-        https://bugs.webkit.org/show_bug.cgi?id=90268
-
-        Reviewed by Martin Robinson.
-
-        Ignore WebKitTextChecker.* private files for gtk-doc.
-
-        * gtk/generate-gtkdoc:
-        (get_webkit2_options):
-
-2012-08-06  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Unreviewed. Roll out r124728 because of build bot test fail.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-08-05  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Unreviewed. Change my email address for watch list.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-08-04  Nico Weber  <thakis@chromium.org>
-
-        [Chromium Mac] Tests are exiting early due to failures to load missingImage.png
-        https://bugs.webkit.org/show_bug.cgi?id=93186
-
-        Reviewed by Ryosuke Niwa.
-
-        Add missingImage.png to DumpRenderTree.app's Resource folder.
-        Depends on http://crrev.com/150037 rolling into webkit first.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-08-03  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Stop exposing window.layoutTestController in layout tests in favor of window.testRunner
-        https://bugs.webkit.org/show_bug.cgi?id=93173
-
-        Reviewed by Adam Barth.
-
-        Don't expose window.layoutTestController since all layout tests use window.testRunner
-        instead of window.layoutTestController as of r124685.
-
-        We can safely rename classes and files to use TestRunner once this patch is landed.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::makeWindowObject):
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp:
-        (notifyTestCompletion):
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-        (PluginTest::waitUntilDone):
-        (PluginTest::notifyDone):
-        * DumpRenderTree/TestNetscapePlugIn/Tests/mac/ConvertPoint.cpp:
-        (ConvertPoint::NPP_SetWindow):
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (handleEventCarbon):
-        (handleEventCocoa):
-        (handleEventWin):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::bindJSObjectsToWindow):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::initJSObjects):
-        * Scripts/bencher:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::makeWindowObject):
-
-2012-08-04  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Unreviewed: Web Inspector: extend instrumenting methods set in ReportMemoryUsage clang plugin
-        Three methods addString, addVectorPtr and addInstrumentedVectorPtr were added to the list of instrumentation methods.
-
-        * clang/ReportMemoryUsagePlugin/ReportMemoryUsage.cpp:
-        (clang::ReportMemoryUsageConsumer::ReportMemoryUsageConsumer):
-
-2012-08-03  Yaron Friedman  <yfriedman@chromium.org>
-
-        [Chrome-Android] - Prepare apk tests for switch to checked in SDK.
-        https://bugs.webkit.org/show_bug.cgi?id=92931
-
-        Reviewed by Adam Barth.
-
-        Pass Android-specific gyp variables to the native test generator,
-        avoiding any dependencies on environment variables during build time.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * TestWebKitAPI/TestWebKitAPI.gyp/TestWebKitAPI.gyp:
-
-2012-08-03  Rick Byers  <rbyers@chromium.org>
-
-        Double tap gesture should send dblclick event
-        https://bugs.webkit.org/show_bug.cgi?id=92412
-
-        Reviewed by Adam Barth.
-
-        Enable EventSender to set the tap count on tap gesture events.  The
-        delta X/Y parameters were not actually being used anymore (used to be
-        used for radius information).
-
-        * DumpRenderTree/chromium/TestRunner/EventSender.cpp:
-        (EventSender::gestureEvent):
-
-2012-08-03  Ryosuke Niwa  <rniwa@webkit.org>
-
-        run-perf-tests should generate JSON output and results page by default
-        https://bugs.webkit.org/show_bug.cgi?id=93042
-
-        Reviewed by Eric Seidel.
-
-        Generate results JSON and page named PerfTestResults.json and PerfTestResults.html by default.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.perf_results_directory): Added.
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner): Added _DEFAULT_JSON_FILENAME.
-        (PerfTestsRunner._parse_args): Added --no-results option in the case a user doens't want to generate
-        results JSON or results page.
-        (PerfTestsRunner.run):
-        (PerfTestsRunner._generate_and_show_results): Extracted from run. Set the default json file path using
-        port's perf_results_directory and call show_results_html_file at the end if the results page is generated.
-        (PerfTestsRunner._generate_results_dict): Renamed from _generate_output to disambiguate it from
-        _generate_and_show_results.
-        (PerfTestsRunner._generate_output_files): Takes results page's path instead of a boolean indicating
-        whether results page should be generated or not.
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (create_runner_and_setup_results_template):
-        (test_run_respects_results_output): Added.
-        (test_run_generates_json_by_default): Added.
-        (test_run_generates_and_show_results_page): Added a check to ensure show_results_html_file is called.
-
-2012-08-03  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r124628.
-        http://trac.webkit.org/changeset/124628
-        https://bugs.webkit.org/show_bug.cgi?id=93155
-
-        Causes random crashes of DRT on Chromium bots (Requested by
-        dimich on #webkit).
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/MockWebKitPlatformSupport.cpp:
-        (MockWebKitPlatformSupport::createMediaStreamCenter):
-        * DumpRenderTree/chromium/MockWebKitPlatformSupport.h:
-        (MockWebKitPlatformSupport):
-        * DumpRenderTree/chromium/MockWebMediaStreamCenter.cpp:
-        * DumpRenderTree/chromium/MockWebMediaStreamCenter.h:
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp: Removed.
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.h: Removed.
-
-2012-08-03  Brady Eidson  <beidson@apple.com>
-
-        Small part of "Out-of-process plug-ins should support asynchronous initialization."
-        <rdar://problem/10598594> and https://bugs.webkit.org/show_bug.cgi?id=92919
-
-        Reviewed by Anders Carlsson.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::resetStateToConsistentValues): Reset all preferences related to asynchronous plugin initialization.
-
-2012-08-02  Jeffrey Pfau  <jpfau@apple.com>
-
-        Add API for enabling blanket third-party data blocking
-        https://bugs.webkit.org/show_bug.cgi?id=93022
-
-        Reviewed by Anders Carlsson.
-
-        Added test for default setting of new third-party storage blocking API.
-
-        * TestWebKitAPI/Tests/WebKit2/WKPreferences.cpp:
-        (TestWebKitAPI::TEST):
-
-2012-08-03  Arvid Nilsson  <anilsson@rim.com>
-
-        Unreviewed, adding self to committers.py after becoming committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-08-03  Ádám Kallai  <kadam@inf.u-szeged.hu>
-
-        Limited the number of queried cached build infos in URLs used by Garden-o-matic.
-        https://bugs.webkit.org/show_bug.cgi?id=92992.
-
-        Reviewed by Adam Barth.
-
-        I added a limit to the cached builds that are included in the URL to avoid too long URLs in Garden-o-matic.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders.js:
-        (.):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-
-2012-08-03  Tommy Widenflycht  <tommyw@google.com>
-
-        [chromium] MediaStream API: Add MockWebRTCPeerConnectionHandler
-        https://bugs.webkit.org/show_bug.cgi?id=93091
-
-        Reviewed by Adam Barth.
-
-        Add a skeleton MockWebRTCPeerConnectionHandler to DumpRenderTree,
-        to complete the infrastructure for RTCPeerConnection.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/MockWebKitPlatformSupport.cpp:
-        (MockWebKitPlatformSupport::createRTCPeerConnectionHandler):
-        * DumpRenderTree/chromium/MockWebKitPlatformSupport.h:
-        (MockWebKitPlatformSupport):
-        * DumpRenderTree/chromium/MockWebMediaStreamCenter.cpp:
-        * DumpRenderTree/chromium/MockWebMediaStreamCenter.h:
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.cpp: Copied from Tools/DumpRenderTree/chromium/MockWebKitPlatformSupport.h.
-        (MockWebRTCPeerConnectionHandler::MockWebRTCPeerConnectionHandler):
-        (MockWebRTCPeerConnectionHandler::initialize):
-        * DumpRenderTree/chromium/MockWebRTCPeerConnectionHandler.h: Copied from Tools/DumpRenderTree/chromium/MockWebKitPlatformSupport.h.
-        (WebKit):
-        (MockWebRTCPeerConnectionHandler):
-        (MockWebRTCPeerConnectionHandler::MockWebRTCPeerConnectionHandler):
-
-2012-08-03  Hugo Parente Lima  <hugo.lima@openbossa.org>
-
-        [Qt][WK2] There's no way to test the gesture tap on WTR
-        https://bugs.webkit.org/show_bug.cgi?id=92895
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        WTR doesn't create the QQuickItem from C++, not from QML, so a call
-        to componentComplete() was added to mimic the QML behaviour.
-
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-
-2012-08-03  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Unreviewed, rolling out r124567.
-        http://trac.webkit.org/changeset/124567
-        https://bugs.webkit.org/show_bug.cgi?id=89382
-
-        Broke some tests with external resources
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::willSendRequestForFrame):
-
-2012-08-03  Philippe Normand  <pnormand@igalia.com>
-
-        Unreviewed, rolling out r124614.
-        http://trac.webkit.org/changeset/124614
-        https://bugs.webkit.org/show_bug.cgi?id=91727
-
-        gstreamer core .po files mess up the build again
-
-        * Scripts/webkitdirs.pm:
-        (buildAutotoolsProject):
-        * gtk/jhbuild.modules:
-
-2012-08-03  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK][jhbuild] Switch to GStreamer 0.11 build
-        https://bugs.webkit.org/show_bug.cgi?id=91727
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Switch build-webkit --gtk to GStreamer 0.11 support and build the
-        necessary GStreamer git modules from JHBuild.
-
-        * Scripts/webkitdirs.pm:
-        (buildAutotoolsProject): Build WebKit with GStreamer 0.11 support.
-        * gtk/jhbuild.modules: GStreamer build support.
-
-2012-08-03  Nico Weber  <thakis@chromium.org>
-
-        [chromium mac] DumpRenderTree compile fails with warning/error in LayoutTestHelper.mm with 10.7sdk
-        https://bugs.webkit.org/show_bug.cgi?id=92820
-
-        Reviewed by Jochen Eisinger.
-
-        When building with the 10.7 SDK, use newer functions to switch color
-        profiles. Note that these newer functions aren't available on 10.6,
-        but we don't intend to ship DRT to users, and no bots that currently
-        build with the 10.7 SDK ship their binaries to 10.6 testers.
-
-        The new code was copied from Apple's DRT/mac/LayoutTestHelper.m.
-
-        * DumpRenderTree/chromium/LayoutTestHelper.mm:
-        (installLayoutTestColorProfile):
-        (restoreUserColorProfile):
-        (saveCurrentColorProfile):
-
-2012-08-03  Benjamin Poulain  <benjamin@webkit.org>
-
-        StringImpl created from literal should be BufferInternal
-        https://bugs.webkit.org/show_bug.cgi?id=92940
-
-        Reviewed by Anders Carlsson.
-
-        Add tests for the contruction of strings from literal.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WTF/AtomicString.cpp: Added.
-        (TestWebKitAPI):
-        (TestWebKitAPI::TEST):
-        * TestWebKitAPI/Tests/WTF/StringImpl.cpp: Added.
-        (TestWebKitAPI):
-        (TestWebKitAPI::TEST):
-
-2012-08-03  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [nrwt] fix unit tests after turned pixel testing to be a per test setting
-        https://bugs.webkit.org/show_bug.cgi?id=93112
-
-        Reviewed by Csaba Osztrogonác.
-
-        Change unit tests in accordance of per test switching of pixel testing.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:
-        (ChromiumAndroidDriverTest.test_command_from_driver_input):
-        * Scripts/webkitpy/layout_tests/port/driver_unittest.py:
-        (DriverTest.test_no_timeout):
-
-2012-08-03  Oswald Buddenhagen  <oswald.buddenhagen@nokia.com>
-
-        [Qt] Populate .qmake.cache from the top-level project file
-
-        This makes it possible to build webkit without using the perl build
-        script. The duplicated logic in build-webkit will be removed when we
-        remove the Qt4 code paths. The build-webkit script will then simply
-        call 'qmake WebKit.pro' from WEBKITOUTPUTDIR.
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/win32/default_pre.prf:
-
-2012-08-03  Oswald Buddenhagen  <oswald.buddenhagen@nokia.com>
-
-        [Qt] Move build config default to build-webkit instead of default_pre
-
-        Allows the qmake buildsystem have its own default.
-
-        Reviewed by Tor Arne Vestbø.
-
-        * Scripts/webkitdirs.pm:
-        (buildQMakeProjects):
-        * qmake/mkspecs/features/default_pre.prf:
-
-2012-08-03  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        Unreviewed build fix for GTK after r124581.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (runTest): Fix wrong variable name in ASSERT.
-
-2012-08-03  Oswald Buddenhagen  <oswald.buddenhagen@nokia.com>
-
-        [Qt] Always save CONFIG & DEFINES in default_pre
-
-        Always doing it is cheaper than checking whether it needs to be done.
-        apart from that, it would break configuration initiated from another
-        project.
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/default_pre.prf:
-
-2012-08-03  Joone Hur  <joone.hur@intel.com>
-
-        [EFL][DRT] fast/loader/stop-provisional-loads.html fails
-        https://bugs.webkit.org/show_bug.cgi?id=92219
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        This patch adds the ability to tell DRT to call ewk_frame_stop 
-        inside of a didStartProvisionalLoadForFrame signal handler.
-        It allows to pass fast/loader/stop-provisional-loads.html.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::onFrameProvisionalLoad):
-
-2012-08-03  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [WTR] process unresponsiveness is reported to the wrong test
-        https://bugs.webkit.org/show_bug.cgi?id=88404
-
-        2nd unreviewed buildfix.
-
-        * WebKitTestRunner/TestInvocation.cpp:
-
-2012-08-03  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [WTR] process unresponsiveness is reported to the wrong test
-        https://bugs.webkit.org/show_bug.cgi?id=88404
-
-        Unreviewed buildfix. Also made the change on the array size
-        suggested on review because I forgot it when landed.
-
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::invoke):
-
-2012-08-03  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [WTR] process unresponsiveness is reported to the wrong test
-        https://bugs.webkit.org/show_bug.cgi?id=88404
-
-        Reviewed by Zoltan Herczeg.
-
-        Do resetting to consistent state after the finished test,
-        not before the next. This way we can report unresponsiveness
-        to the test that triggered it, and we do a restart before the
-        next test so it will start in a functional state.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver._check_for_driver_crash):
-        Print the error line for unresponsive web process, otherwise
-        it's hard to tell what happened.
-        * WebKitTestRunner/TestController.cpp:
-        (WTR):
-        Decreased the default short timeout so we can detect unresponsiveness
-        before the timer of the test harness times out. It was unnecessarily
-        high anyway, we should get answer from the web process in those cases
-        when the short timeout is used in less than a second.
-        (WTR::TestController::runTest):
-        (WTR::TestController::run):
-        * WebKitTestRunner/TestController.h:
-        (TestController):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::invoke):
-        (WTR::TestInvocation::dump):
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-        * WebKitTestRunner/TestInvocation.h:
-        (TestInvocation): Make the dump function static as it doesn't need an object.
-
-2012-08-03  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] (REGRESSION 124581) : EFL 64-bit Debug bot is red and build is exiting early after 20 test crashes
-        https://bugs.webkit.org/show_bug.cgi?id=93084
-
-        Reviewed by Csaba Osztrogonác.
-
-        Fix regression introduced in r124581.
-
-        * DumpRenderTree/efl/DumpRenderTree.cpp:
-        (getFinalTestURL): Convert the path into a full file URL.
-        (runTest):
-
-2012-08-03  Balazs Kelemen  <kbalazs@webkit.org>
-
-        All ports should support per test switching of pixel testing
-        https://bugs.webkit.org/show_bug.cgi?id=92398
-
-        Reviewed by Dirk Pranke.
-
-        Teach all test drivers to accept a per test control of whether
-        to dump pixels. Drivers now accept a -p/--pixel-test argument
-        on the standart input that means that running the current
-        test as pixel test is allowed (even if the expected hash is
-        missing). Removed the --pixel-tests command line option since
-        there is no need for it anymore.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/DumpRenderTree.h:
-        (TestCommand::TestCommand):
-        (TestCommand):
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/DumpRenderTreeCommon.cpp: Added.
-        (CommandTokenizer):
-        (CommandTokenizer::CommandTokenizer):
-        (CommandTokenizer::pump):
-        (CommandTokenizer::next):
-        (CommandTokenizer::hasNext):
-        (die):
-        (parseInputLine):
-        Common logic to parse the input line from the standard input (or from the command line
-        in standalone mode). Made it somewhat general so we can easily add more arguments if
-        there is a need.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (runTest):
-        (main):
-
-        * DumpRenderTree/chromium/TestRunner/AccessibilityControllerChromium.cpp: Renamed from Tools/DumpRenderTree/chromium/TestRunner/AccessibilityController.cpp.
-        * DumpRenderTree/chromium/TestRunner/AccessibilityControllerChromium.h: Renamed from Tools/DumpRenderTree/chromium/TestRunner/AccessibilityController.h.
-        * DumpRenderTree/chromium/TestRunner/AccessibilityUIElementChromium.cpp: Renamed from Tools/DumpRenderTree/chromium/TestRunner/AccessibilityUIElement.cpp.
-        * DumpRenderTree/chromium/TestRunner/AccessibilityUIElementChromium.h: Renamed from Tools/DumpRenderTree/chromium/TestRunner/AccessibilityUIElement.h.
-        Renamed these files with a Chromium suffix because they were clashing with the common ones used by other ports after adding the root
-        DumpRenderTree directory to the include path.
-
-        * DumpRenderTree/chromium/TestRunner/TestInterfaces.cpp:
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::runFileTest):
-        (TestShell::dump):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestParams::TestParams):
-        (TestShell):
-        * DumpRenderTree/efl/CMakeLists.txt:
-        * DumpRenderTree/efl/DumpRenderTree.cpp:
-        (parseCommandLineOptions):
-        (runTest):
-        (shouldDumpPixelsAndCompareWithExpected):
-        (main):
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (initializeGlobalsFromCommandLineOptions):
-        (dump):
-        (runTest):
-        (main):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (initializeGlobalsFromCommandLineOptions):
-        (dumpRenderTree):
-        (dump):
-        (runTest):
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::open):
-        (WebCore::DumpRenderTree::processLine):
-        (WebCore::DumpRenderTree::dump):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        (DumpRenderTree):
-        * DumpRenderTree/qt/main.cpp:
-        (isOption):
-        (printUsage):
-        (main):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (dump):
-        (runTest):
-        (dllLauncherEntryPoint):
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/wscript:
-        * DumpRenderTree/wx/DumpRenderTreeWx.cpp:
-        (dump):
-        (runTest):
-        (MyApp::OnInit):
-        * GNUmakefile.am:
-
-        * Scripts/old-run-webkit-tests:
-        * Scripts/old-run-webkit-tests:
-        Pass --pixel-test before the hash.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.should_run_as_pixel_test): Removed now that all ports supports it.
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.cmd_line): Don't pass --pixel-tests anymore.
-        (Driver._command_from_driver_input):
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort.should_run_as_pixel_test):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort.should_run_as_pixel_test):
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::TestController):
-        (WTR::TestController::initialize):
-        (WTR::TestCommand::TestCommand):
-        (TestCommand):
-        (WTR):
-        (CommandTokenizer):
-        (WTR::CommandTokenizer::CommandTokenizer):
-        (WTR::CommandTokenizer::pump):
-        (WTR::CommandTokenizer::next):
-        (WTR::CommandTokenizer::hasNext):
-        (WTR::die):
-        (WTR::parseInputLine):
-        (WTR::TestController::runTest):
-        * WebKitTestRunner/TestController.h:
-        (TestController):
-        Duplicate the logic for parsing the command line because
-        unfortunately there is no way to share code between
-        WebKitTestRunner and DumpRenderTree.
-
-2012-08-03  Ilya Tikhonovsky  <loislo@chromium.org>
-
-        Web Inspector: clang plugin for checking native memory instrumentation coverage.
-        https://bugs.webkit.org/show_bug.cgi?id=92650
-
-        Reviewed by Yury Semikhatsky.
-
-        This is the clang plugin for checking native memory instrumentation coverage.
-        The idea: InspectorMemoryAgent traverses through instrumented objects and collects pointers and their sizes and types.
-        It is doing that with help of reportMemoryUsage function that needs to be implemented in each, significant
-        from native memory footprint point of view, WebCore class.
-        This plugin checks that the list of class members is matching with the list of members reported in reportMemoryUsage function
-        and makes a warning for the each member that needs to be reported.
-
-        * clang/ReportMemoryUsagePlugin/CMakeLists.txt: Added.
-        * clang/ReportMemoryUsagePlugin/Makefile: Added.
-        * clang/ReportMemoryUsagePlugin/ReportMemoryUsage.cpp: Added.
-        (clang):
-        (AddMemberCallVisitor):
-        (clang::AddMemberCallVisitor::VisitCallExpr):
-        (clang::AddMemberCallVisitor::instrumentedMembers):
-        (ReportMemoryUsageVisitor):
-        (clang::ReportMemoryUsageVisitor::ReportMemoryUsageVisitor):
-        (clang::ReportMemoryUsageVisitor::VisitCXXMethodDecl):
-        (clang::ReportMemoryUsageVisitor::emitWarning):
-        (clang::ReportMemoryUsageVisitor::findInstrumentationMethod):
-        (clang::ReportMemoryUsageVisitor::needsToBeInstrumented):
-        (clang::ReportMemoryUsageVisitor::CheckMembersCoverage):
-        (ReportMemoryUsageConsumer):
-        (clang::ReportMemoryUsageConsumer::ReportMemoryUsageConsumer):
-        (clang::ReportMemoryUsageConsumer::HandleTranslationUnit):
-        (ReportMemoryUsageAction):
-        (clang::ReportMemoryUsageAction::CreateASTConsumer):
-        (clang::ReportMemoryUsageAction::ParseArgs):
-        * clang/ReportMemoryUsagePlugin/tests/Source/WebCore/Test.cpp: Added.
-        (aNamespace):
-        (MemoryInstrumentation):
-        (MemoryClassInfo):
-        (aNamespace::MemoryClassInfo::MemoryClassInfo):
-        (aNamespace::MemoryClassInfo::addMember):
-        (aNamespace::MemoryClassInfo::addInstrumentedMember):
-        (OwnPtr):
-        (aNamespace::OwnPtr::OwnPtr):
-        (RefPtr):
-        (aNamespace::RefPtr::RefPtr):
-        (Vector):
-        (String):
-        (NotInstrumentedClass):
-        (InstrumentedClass):
-        (aNamespace::InstrumentedClass::reportMemoryUsage):
-        (InstrumentedChildClass):
-        (aNamespace::InstrumentedChildClass::reportMemoryUsage):
-        (InstrumentedChildChildClass):
-        (InstrumentedChildChildClass::reportMemoryUsage):
-        (main):
-
-2012-08-03  Joone Hur  <joone.hur@intel.com>
-
-        [EFL][DRT] WebKitAnimation API compile-time disabled
-        https://bugs.webkit.org/show_bug.cgi?id=84593
-
-        Reviewed by Laszlo Gombos.
-
-        Enable ENABLE_ANIMATION_API by default on the Efl port.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-08-03  Balazs Kelemen  <kbalazs@webkit.org>
-
-        WTR should be able to load external resources
-        https://bugs.webkit.org/show_bug.cgi?id=89382
-
-        Reviewed by Ryosuke Niwa.
-
-        Allow to load an external resource as the main frame
-        and allow all subsequent external loads for such a main
-        frame. This behavior is necessary for being able to run
-        performance tests (wkb.ug/84008).
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::isLocalHost):
-        (WTR):
-        (WTR::isHTTPOrHTTPSScheme):
-        (WTR::InjectedBundlePage::willSendRequestForFrame):
-
-2012-08-02  Joone Hur  <joone.hur@intel.com>
-
-        [GTK] Build break when building DumpRenderTree/gtk/EditingCallbacks.cpp
-        https://bugs.webkit.org/show_bug.cgi?id=93061
-
-        Unreviewed, Fix build break for WebKitGtk+.
-
-        Use webkit_dom_element_get_class_name instead of webkit_dom_html_element_get_class_name.
-
-        * DumpRenderTree/gtk/EditingCallbacks.cpp:
-        (shouldShowDeleteInterfaceForElement):
-
-2012-08-02  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy can fail on a clean checkout
-        https://bugs.webkit.org/show_bug.cgi?id=93039
-
-        Reviewed by Adam Barth.
-
-        Now that we run tests in parallel that can cause the installer
-        to try and install packages in parallel (even the same package),
-        and that probably won't work. We fix this by autoinstalling
-        everything up front (serially).
-
-        * Scripts/webkitpy/test/main.py:
-        (Tester._run_tests):
-        * Scripts/webkitpy/thirdparty/__init__.py:
-        (autoinstall_everything):
-
-2012-06-15  David Barton  <dbarton@mathscribe.com>
-
-        MathML: nested square root symbols have varying descenders
-        https://bugs.webkit.org/show_bug.cgi?id=43819
-
-        Reviewed by Eric Seidel.
-
-        Allow the STIXGeneral font to be used during layout tests, especially for MathML.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (allowedFontFamilySet):
-        * WebKitTestRunner/InjectedBundle/mac/ActivateFonts.mm:
-        (WTR::allowedFontFamilySet):
-
-2012-08-02  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: some tests need to run by themselves
-        https://bugs.webkit.org/show_bug.cgi?id=92926
-
-        Reviewed by Ojan Vafai.
-
-        Due to timing issues some of the executive tests will collide
-        and fail if they're run concurrently. This patch adds support
-        for writing tests that will be executed one at a time
-        (serially); to get them, add "serial_" to the front of the test
-        method name. 
-
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        (ExecutiveTest.serial_test_kill_process):
-        (ExecutiveTest.serial_test_kill_all):
-        (ExecutiveTest.serial_test_check_running_pid):
-        (ExecutiveTest.serial_test_running_pids):
-        (ExecutiveTest.serial_test_run_in_parallel):
-        * Scripts/webkitpy/test/main.py:
-        (Tester._run_tests):
-        (Tester._test_names):
-
-2012-08-02  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: integrate proper support for integration tests
-        https://bugs.webkit.org/show_bug.cgi?id=92925
-
-        Reviewed by Ojan Vafai.
-
-        This patch merges the custom loader I used for integration tests
-        into the main test-webkitpy code. Integration tests are not run
-        by default yet, but at least they can be run.
-
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        (MockTestShellTest.test_test_shell_parse_options):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (test_path_to_apache_config_file):
-        * Scripts/webkitpy/layout_tests/servers/http_server_integrationtest.py:
-        (WebsocketserverTest):
-        * Scripts/webkitpy/test/main.py:
-        (Tester._parse_args):
-        (Tester._run_tests):
-        (Tester._test_names):
-        (Tester._log_exception):
-        (_Loader):
-        (_Loader.getTestCaseNames):
-        (_Loader.getTestCaseNames.isTestMethod):
-
-2012-08-02  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: clean up runner in preparation for running tests serially as necessary
-        https://bugs.webkit.org/show_bug.cgi?id=92922
-
-        Reviewed by Ojan Vafai.
-
-        In order to run some tests by themselves (serially, rather than
-        in parallel with other tests), we will need to be able to run
-        multiple test suites; this causes us to move loading the logic
-        for finding test method names out of the runner and into main.
-
-        I'm taking advantage of this to simplify some other stuff from
-        the runner as well; it is now very simple and doesn't expose its
-        dependency on unittest.TestResult at all (nor will the Printer
-        use TestResult).
-
-        Subsequent patches will move the custom loader from
-        port_testcase so that we can properly choose whether to run
-        integration tests and/or serial tests, and then update the
-        appropriate tests to run only serially.
-
-        * Scripts/webkitpy/test/main.py:
-        (Tester._run_tests):
-        (Tester):
-        (Tester._check_imports):
-        (Tester._test_names):
-        (Tester._all_test_names):
-        * Scripts/webkitpy/test/printer.py:
-        (Printer.__init__):
-        (Printer.write_update):
-        (Printer):
-        (Printer.print_finished_test):
-        (Printer.print_result):
-        * Scripts/webkitpy/test/runner.py:
-        (unit_test_name):
-        (Runner.__init__):
-        (Runner.run):
-        (Runner.handle):
-        (_Worker.handle):
-        * Scripts/webkitpy/test/runner_unittest.py:
-        (FakeLoader.loadTestsFromName):
-        (RunnerTest.test_run):
-
-2012-08-02  Adam Barth  <abarth@webkit.org>
-
-        Turn on tests for the mac-ews, for realz this time.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-        (MacEWS):
-
-2012-08-02  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] Run layout tests on multiple devices in parallel
-        https://bugs.webkit.org/show_bug.cgi?id=92877
-
-        Reviewed by Dirk Pranke.
-
-        Moved methods that run command on a particular device from ChromiumAndroidPort to ChromiumAndroidDriver.
-        The drivers run adb commands with the '-s serial_number' parameter which specifies the device according to the work_number.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.__init__):
-        (ChromiumAndroidPort.default_child_processes): Default to the number of attached devices.
-        (ChromiumAndroidPort.test_expectations): Removed because it is unused. 
-        (ChromiumAndroidPort.setup_test_run): Most contents moved into ChromiumAndroidDriver._setup_test()
-        (ChromiumAndroidPort.clean_up_test_run): Now the http server is stopped here.
-        (ChromiumAndroidPort._get_devices):
-        (ChromiumAndroidPort._get_device_serial):
-        (ChromiumAndroidDriver):
-        (ChromiumAndroidDriver.__init__):
-        (ChromiumAndroidDriver.__del__):
-        (ChromiumAndroidDriver._setup_test): Original contents of ChromiumAndroidPort.setup_test_run().
-        (ChromiumAndroidDriver._push_executable): Moved from ChromiumAndroidPort.
-        (ChromiumAndroidDriver._push_fonts): Moved from ChromiumAndroidPort.
-        (ChromiumAndroidDriver._push_test_resources): Moved from ChromiumAndroidPort.
-        (ChromiumAndroidDriver._synchronize_datetime): Moved from ChromiumAndroidPort.
-        (ChromiumAndroidDriver._run_adb_command): Moved from ChromiumAndroidPort.
-        (ChromiumAndroidDriver._teardown_performance): Moved from ChromiumAndroidPort.
-        (ChromiumAndroidDriver._get_crash_log): Moved from ChromiumAndroidPort.
-        (ChromiumAndroidDriver.cmd_line):
-        (ChromiumAndroidDriver._file_exists_on_device):
-        (ChromiumAndroidDriver._remove_all_pipes):
-        (ChromiumAndroidDriver._start):
-        (ChromiumAndroidDriver._start_once):
-        (ChromiumAndroidDriver.stop):
-        * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:
-        (MockRunCommand):
-        (MockRunCommand.__init__):
-        (MockRunCommand.mock_run_command_fn):
-        (MockRunCommand.mock_no_device):
-        (MockRunCommand.mock_one_device):
-        (MockRunCommand.mock_two_devices):
-        (MockRunCommand.mock_no_tombstone_dir):
-        (MockRunCommand.mock_no_tombstone_file):
-        (MockRunCommand.mock_ten_tombstones):
-        (MockRunCommand.mock_logcat):
-        (ChromiumAndroidPortTest):
-        (ChromiumAndroidPortTest.make_port):
-        (ChromiumAndroidPortTest.test_driver_cmd_line):
-        (ChromiumAndroidPortTest.test_get_devices_no_device):
-        (ChromiumAndroidPortTest.test_get_devices_one_device):
-        (ChromiumAndroidPortTest.test_get_devices_two_devices):
-        (ChromiumAndroidPortTest.test_get_device_serial_no_device):
-        (ChromiumAndroidPortTest.test_get_device_serial_one_device):
-        (ChromiumAndroidPortTest.test_get_device_serial_two_devices):
-        (ChromiumAndroidDriverTest):
-        (ChromiumAndroidDriverTest.setUp):
-        (ChromiumAndroidDriverTest.test_get_last_stacktrace):
-        (ChromiumAndroidDriverTest.test_get_crash_log):
-        (ChromiumAndroidDriverTest.test_cmd_line):
-        (ChromiumAndroidDriverTwoDriversTest):
-        (ChromiumAndroidDriverTwoDriversTest.test_two_drivers):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.run_test):
-        (Driver._get_crash_log): Added to allow subclasses to override.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args): Removed the --adb-args command-line parameter because now we select device automatically. Added --adb-device to specify devices.
-
-2012-08-02  Dinu Jacob  <dinu.jacob@nokia.com>
-
-        WebKitTestRunner needs layoutTestController.setUserStyleSheetEnabled
-        https://bugs.webkit.org/show_bug.cgi?id=42679
-
-        Reviewed by Eric Seidel.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl: Added 
-        setUserStyleSheetEnabled and setUserStyleSheetLocation.
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::LayoutTestController): Initialize new members added.
-        (WTR::LayoutTestController::setUserStyleSheetEnabled): Added.
-        (WTR::LayoutTestController::setUserStyleSheetLocation): Added.
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h: Added members
-        userStyleSheetEnabled, and m_userStyleSheetLocation and methods
-        setUserStyleSheetEnabled, and setUserStyleSheetLocation.
-
-2012-08-02  Hans Wennborg  <hans@chromium.org>
-
-        Speech JavaScript API: Fire speech start event at the same time as sound start event
-        https://bugs.webkit.org/show_bug.cgi?id=92971
-
-        Reviewed by Adam Barth.
-
-        Update the MockWebSpeechRecognizer to not fire "speech started" events
-        separately.
-
-        * DumpRenderTree/chromium/MockWebSpeechRecognizer.cpp:
-        (MockWebSpeechRecognizer::start):
-
-2012-08-02  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] make sometimes using a single core
-        https://bugs.webkit.org/show_bug.cgi?id=92998
-
-        Reviewed by Martin Robinson.
-
-        In the GTK 64-bit Release buildbot some builds use a single core
-        for the make process. I suspect this is because in those cases
-        nproc reports a single core available. The proposed solution is to
-        always rely on all the cores available in the machine.
-
-        * Scripts/webkitdirs.pm:
-        (determineNumberOfCPUs):
-
-2012-08-02  Adam Barth  <abarth@webkit.org>
-
-        Re-land http://trac.webkit.org/changeset/94441 now that lforschler is ready.
-
-        This patch enables testing on the mac-ews bots.
-
-        * Scripts/webkitpy/tool/commands/earlywarningsystem.py:
-
-2012-08-02  Adam Barth  <abarth@webkit.org>
-
-        [Chromium] Merge final nits to DumpRenderTree.gyp for Android
-        https://bugs.webkit.org/show_bug.cgi?id=90920
-
-        Reviewed by Tony Chang.
-
-        This patch contains the last few small changes to DumpRenderTree.gyp
-        from the chromium-android branch. After this change, this file will be
-        fully merged.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-08-02  Peter Beverloo  <peter@chromium.org>
-
-        [Chromium] Toggle the type of ant compile for webkit_unit_tests and TestWebKitAPI
-        https://bugs.webkit.org/show_bug.cgi?id=92858
-
-        Reviewed by Adam Barth.
-
-        Now that the sdk_build variable is available, we can remove these two differences
-        as well. This goes together with Adam's bug 90920.
-
-        After this patch, the whole Tools/ directory will be unforked :-).
-
-        * TestWebKitAPI/TestWebKitAPI.gyp/TestWebKitAPI.gyp:
-
-2012-08-02  Zoltan Arvai  <zarvai@inf.u-szeged.hu>
-
-        [Qt] MSVC specific buildfix for DRT.
-        https://bugs.webkit.org/show_bug.cgi?id=92978
-
-        Reviewed by Simon Hausmann.
-
-        DumpRenderTree/qt subdirectory is missing from generated makefile under MSVC build, need to be added to the pro file.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-
-2012-08-02  Alexander Shalamov  <alexander.shalamov@intel.com>
-
-        [EFL][WK2] WTR is failing when X server is not running
-        https://bugs.webkit.org/show_bug.cgi?id=92719
-
-        Reviewed by Hajime Morita.
-
-        EFL's WebKitTestRunner doesn't execute tests when X server is not running.
-        This patch fixes the problem by checking environment variable before ecore x initialization.
-
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort.setup_environ_for_server):
-        * WebKitTestRunner/efl/main.cpp:
-        (main):
-
-2012-08-01  Dirk Pranke  <dpranke@chromium.org>
-
-        REGRESSION(r123893): Reftest mismatches are run through ImageDiff with 0.1 tolerance
-        https://bugs.webkit.org/show_bug.cgi?id=92847
-
-        Reviewed by Ojan Vafai.
-
-        I was failing to distinguish between 'None' and 0 :(. Fixed and added tests.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.diff_image):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (PortTestCase.test_diff_image.make_proc):
-        (PortTestCase.test_diff_image):
-
-2012-08-01  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: clean up handling of tests to skip
-        https://bugs.webkit.org/show_bug.cgi?id=92909
-
-        Reviewed by Ryosuke Niwa.
-
-        This change moves the handling of tests to skip into main.py
-        where it is at least slightly more findable and generic.
-
-        Also fix a couple of lint nits.
-
-        * Scripts/webkitpy/test/finder.py:
-        (Finder.__init__):
-        (Finder.skip):
-        (Finder._default_names):
-        * Scripts/webkitpy/test/main.py:
-        (main):
-        (Tester.skip):
-        * Scripts/webkitpy/test/main_unittest.py:
-        (TesterTest.test_no_tests_found):
-        * Scripts/webkitpy/test/runner_unittest.py:
-
-2012-08-01  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: remove --skip-integrationtests flag
-        https://bugs.webkit.org/show_bug.cgi?id=92907
-
-        Reviewed by Ryosuke Niwa.
-
-        This flag is no longer used since the tests complete quickly.
-        
-        Also clean up the unused skip_if_parallel arg in finder, and
-        make a couple of lint fixes.
-
-        * Scripts/webkitpy/test/finder.py:
-        (Finder.find_names):
-        (Finder._default_names):
-        * Scripts/webkitpy/test/finder_unittest.py:
-        (FinderTest.check_names):
-        (FinderTest.test_default_names):
-        * Scripts/webkitpy/test/main.py:
-        (Tester._parse_args):
-        (Tester.run):
-        * Scripts/webkitpy/test/main_unittest.py:
-        (TesterTest.test_no_tests_found):
-
-2012-08-01  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Generalize SheriffIRCBot to prepare for PerfBot
-        https://bugs.webkit.org/show_bug.cgi?id=92912
-
-        Reviewed by Adam Barth.
-
-        Renamed SheriffIRCBot to IRCBot and generalized to support non-sheriffbot IRC bot in the future.
-        This will be useful when I add an experimental perf EWS IRC bot.
-
-        * Scripts/webkitpy/tool/bot/irc_command.py:
-        (Whois.execute):
-        * Scripts/webkitpy/tool/bot/irc_command_unittest.py:
-        (IRCCommandTest):
-        * Scripts/webkitpy/tool/bot/ircbot.py: Moved from Tools/Scripts/webkitpy/tool/bot/sheriffircbot.py.
-        (Eliza): Moved from irc_command.
-        (Eliza.__init__):
-        (Eliza.execute):
-        (IRCBot):
-        (IRCBot.__init__):
-        (IRCBot.irc_delegate):
-        (IRCBot._parse_command_and_args):
-        (IRCBot.process_message):
-        * Scripts/webkitpy/tool/bot/ircbot_unittest.py: Moved from Tools/Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py.
-        (run):
-        (IRCBotTest):
-        (IRCBotTest.test_eliza): Moved from IRCCommandTest.
-        (IRCBotTest.test_parse_command_and_args):
-        (IRCBotTest.test_exception_during_command):
-        * Scripts/webkitpy/tool/bot/sheriffircbot.py: Removed.
-        * Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py: Removed.
-        * Scripts/webkitpy/tool/commands/sheriffbot.py:
-        (SheriffBot.begin_work_queue):
-        * Scripts/webkitpy/webkitpy.pyproj:
-
-2012-08-01  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: reenable the test for --verbose working in child processes
-        https://bugs.webkit.org/show_bug.cgi?id=92894
-
-        Reviewed by Ryosuke Niwa.
-
-        This change rewrites the test to not use outputcapture, meaning
-        that the MockHost can propagate to Worker properly and things
-        work again :).
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_verbose_in_child_processes):
-
-2012-08-01  Ryosuke Niwa  <rniwa@webkit.org>
-
-        run-perf-tests --build-directory doesn't work
-        https://bugs.webkit.org/show_bug.cgi?id=92051
-
-        Reviewed by Dirk Pranke.
-
-        The bug was caused by not prepending build_directory even when one is defined.
-        Fixed that.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port._build_path):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_build_path):
-
-2012-08-01  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r123865.
-        http://trac.webkit.org/changeset/123865
-        https://bugs.webkit.org/show_bug.cgi?id=92891
-
-        This patch is causing the style-queue to fall behind
-        (Requested by abarth on #webkit).
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-        (AbstractReviewQueue.begin_work_queue):
-        (StyleQueue.__init__):
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        (StyleQueueTest.test_style_queue_with_style_exception):
-        (test_style_queue_with_watch_list_exception):
-
-2012-08-01  Ryosuke Niwa  <rniwa@webkit.org>
-
-        run-perf-tests throws an exception when the output json is malformed
-        https://bugs.webkit.org/show_bug.cgi?id=92887
-
-        Reviewed by Dirk Pranke.
-
-        Catch exceptions and gracefully fail. Also split _generate_json into smaller methods.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner):
-        (PerfTestsRunner.run):
-        (PerfTestsRunner._generate_output): Extracted from _generate_json.
-        (PerfTestsRunner._merge_source_json): Ditto; catch all exceptions since they are too many
-        exceptions to consder here.
-        (PerfTestsRunner._merge_outputs): Ditto.
-        (PerfTestsRunner._generate_output_files): Extracted from _generate_json.
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (_test_run_with_json_output): Don't assert logs when we except an non-zero exit code.
-        (create_runner_and_setup_results_template): Extracted from test_run_generates_results_page.
-        (test_run_generates_results_page):
-        (test_run_with_bad_output_json): Added.
-        (test_run_with_bad_json_source): Added.
-        (test_run_with_upload_json):
-
-2012-08-01  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        Regression(r124135): nrwt: --verbose logging does not work right on windows
-        https://bugs.webkit.org/show_bug.cgi?id=92845
-
-        Reviewed by Dirk Pranke.
-
-        Disabled the failing test. The Workers spawned by this test are using Host()
-        instead of MockHost() and trying to access the real filesystem instead of the
-        MockFilesytem.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.disabled_test_verbose):
-
-2012-08-01  Arnaud Renevier  <a.renevier@sisa.samsung.com>
-
-        keyring.get_password may raise an exception.
-        https://bugs.webkit.org/show_bug.cgi?id=92876
-
-        Reviewed by Dirk Pranke.
-
-        keyring.get_password sometimes raises an exception. We wrap this call,
-        and also set_password to avoid breaking webkit-patch in that case.
-
-        * Scripts/webkitpy/common/net/credentials.py:
-        (Credentials._offer_to_store_credentials_in_keyring):
-        (Credentials.read_credentials):
-
-2012-08-01  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        Layout Test fast/text/descent-clip-in-scaled-page.html is failing on linux since it was added
-        https://bugs.webkit.org/show_bug.cgi?id=91386
-
-        Reviewed by Tony Chang.
-
-        Added font mapping from SubpixelPositioningAhem to Ahem on Linux and Android
-        (used in layout test fast/text/descent-clip-in-scaled-page.html).
-        Added font mapping from SubpixelPositioning to Times New Roman on Android to match Linux
-        (used in platform/chromium-linux/fast/text/chromium-linux-text-subpixel-positioning.html)
-
-        * DumpRenderTree/chromium/android_main_fonts.xml:
-        * DumpRenderTree/chromium/fonts.conf:
-
-2012-08-01  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r124325.
-        http://trac.webkit.org/changeset/124325
-        https://bugs.webkit.org/show_bug.cgi?id=92865
-
-        broke android build (Requested by mnaganov on #webkit).
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-08-01  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [EFL] Dump a backtrace in case of a crash on the UIProcess
-        https://bugs.webkit.org/show_bug.cgi?id=92843
-
-        Reviewed by Csaba Osztrogonác.
-
-        We are already dumping the backtraces when automated tests are
-        crashing, but only for the WebProcess. This patch adds the same
-        hooks for the UIProcess.
-
-        * TestWebKitAPI/efl/main.cpp:
-        (main):
-        * WebKitTestRunner/efl/main.cpp:
-        (main):
-
-2012-08-01  Adam Barth  <abarth@webkit.org>
-
-        [Chromium] Merge final nits to DumpRenderTree.gyp for Android
-        https://bugs.webkit.org/show_bug.cgi?id=90920
-
-        Reviewed by Tony Chang.
-
-        This patch contains the last few small changes to DumpRenderTree.gyp
-        from the chromium-android branch. After this change, this file will be
-        fully merged.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-08-01  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] ImageDiff should use float division instead of integer
-        https://bugs.webkit.org/show_bug.cgi?id=92859
-
-        Reviewed by Zoltan Herczeg.
-
-        * DumpRenderTree/qt/ImageDiff.cpp:
-        (main):
-
-2012-08-01  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r124313.
-        http://trac.webkit.org/changeset/124313
-        https://bugs.webkit.org/show_bug.cgi?id=92855
-
-        Compilation failed on Chromium ports (Requested by yosin on
-        #webkit).
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/DumpRenderTree.h:
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/DumpRenderTreeCommon.cpp: Removed.
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (runTest):
-        (main):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::runFileTest):
-        (TestShell::dump):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestParams):
-        (TestParams::TestParams):
-        (TestShell):
-        * DumpRenderTree/efl/CMakeLists.txt:
-        * DumpRenderTree/efl/DumpRenderTree.cpp:
-        (parseCommandLineOptions):
-        (getFinalTestURL):
-        (getExpectedPixelHash):
-        (runTest):
-        (shouldDumpPixelsAndCompareWithExpected):
-        (main):
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (initializeGlobalsFromCommandLineOptions):
-        (dump):
-        (runTest):
-        (main):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (initializeGlobalsFromCommandLineOptions):
-        (dumpRenderTree):
-        (dump):
-        (runTest):
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::processLine):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (dump):
-        (runTest):
-        (dllLauncherEntryPoint):
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/wscript:
-        * DumpRenderTree/wx/DumpRenderTreeWx.cpp:
-        (dump):
-        (runTest):
-        (MyApp::OnInit):
-        * GNUmakefile.am:
-        * Scripts/old-run-webkit-tests:
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.supports_switching_pixel_tests_per_test):
-        (Port):
-        (Port._supports_switching_pixel_tests_per_test):
-        (Port.should_run_as_pixel_test):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.cmd_line):
-        (Driver._command_from_driver_input):
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort._supports_switching_pixel_tests_per_test):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort.supports_switching_pixel_tests_per_test):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::TestController):
-        (WTR::TestController::initialize):
-        (WTR::TestController::runTest):
-        * WebKitTestRunner/TestController.h:
-        (TestController):
-
-2012-08-01  Balazs Kelemen  <kbalazs@webkit.org>
-
-        All ports should support per test switching of pixel testing
-        https://bugs.webkit.org/show_bug.cgi?id=92398
-
-        Reviewed by Dirk Pranke.
-
-        Teach all test drivers to accept a per test control of whether
-        to dump pixels. Drivers now accept a -p/--pixel-test argument
-        on the standart input that means that running the current
-        test as pixel test is allowed (even if the expected hash is
-        missing). Removed the --pixel-tests command line option since
-        there is no need for it anymore.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/DumpRenderTree.h:
-        (TestCommand::TestCommand):
-        (TestCommand):
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/DumpRenderTreeCommon.cpp: Added.
-        (CommandTokenizer):
-        (CommandTokenizer::CommandTokenizer):
-        (CommandTokenizer::pump):
-        (CommandTokenizer::next):
-        (CommandTokenizer::hasNext):
-        (die):
-        (parseInputLine):
-        Common logic to parse the input line from the standard input (or from the command line
-        in standalone mode). Made it somewhat general so we can easily add more arguments if
-        there is a need.
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (runTest):
-        (main):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::runFileTest):
-        (TestShell::dump):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestParams::TestParams):
-        (TestShell):
-        * DumpRenderTree/efl/CMakeLists.txt:
-        * DumpRenderTree/efl/DumpRenderTree.cpp:
-        (parseCommandLineOptions):
-        (runTest):
-        (shouldDumpPixelsAndCompareWithExpected):
-        (main):
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (initializeGlobalsFromCommandLineOptions):
-        (dump):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (initializeGlobalsFromCommandLineOptions):
-        (dumpRenderTree):
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::processLine):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (dump):
-        (runTest):
-        (dllLauncherEntryPoint):
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/wscript:
-        * DumpRenderTree/wx/DumpRenderTreeWx.cpp:
-        (dump):
-        (runTest):
-        (MyApp::OnInit):
-        * Scripts/old-run-webkit-tests: Pass --pixel-test before the hash.
-        Changed the separator form ' to : because it don't need to be escaped
-        when passing manually on the comand line.
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.should_run_as_pixel_test): Removed now that all ports supports it.
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.cmd_line): Don't pass --pixel-tests anymore.
-        (Driver._command_from_driver_input):
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::TestController):
-        (WTR::TestController::initialize):
-        (WTR::TestCommand::TestCommand):
-        (TestCommand):
-        (WTR):
-        (CommandTokenizer):
-        (WTR::CommandTokenizer::CommandTokenizer):
-        (WTR::CommandTokenizer::pump):
-        (WTR::CommandTokenizer::next):
-        (WTR::CommandTokenizer::hasNext):
-        (WTR::die):
-        (WTR::parseInputLine):
-        (WTR::TestController::runTest):
-        * WebKitTestRunner/TestController.h:
-        (TestController):
-        Duplicate the logic for parsing the command line because
-        unfortunately there is no way to share code between
-        WebKitTestRunner and DumpRenderTree.
-
-2012-08-01  Martin Robinson  <mrobinson@igalia.com>
-
-        Add the jhbuild source directory to the __builtin__ object
-
-        Reviewed by Philippe Normand.
-
-        It seems that the jhbuild script explicitly looks for the SRCDIR __builtin__ when
-        initializing. This is necessary for loading the jhbuild from the checkout directory.
-
-        * jhbuild/jhbuildutils.py:
-        (enter_jhbuild_environment_if_available): Set SRCDIR to the source directory.
-
-2012-07-31  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: move actual test-running code into layout_test_runner.py
-        https://bugs.webkit.org/show_bug.cgi?id=92806
-
-        Reviewed by Ryosuke Niwa.
-
-        This is the final patch in manager-refactoring series (for now).
-        This moves all of the logic to actually run the tests into
-        layout_test_runner (in a new LayoutTestRunner) class. Now
-        the mechanics of actually executing all of  the tests are
-        contained in one file (of course the actual work of talking to
-        DRT/WTR and diff'ing the results is still in single_test_runner).
-
-        Now manager is left with setting up and tearing down the test
-        environment, finding the tests to run, and processing the
-        results of the tests, which is a pretty managable amount of code
-        (no pun intended).
-
-        The unit tests for manager were split in two and all of the
-        runner-specific tests moved into layout_test_runner_unittest.
-        They were significantly cleaned up to be easier to read and
-        maintain as a part of this.
-
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner.py:
-        (TestRunInterruptedException):
-        (TestRunInterruptedException.__init__):
-        (TestRunInterruptedException.__reduce__):
-        (LayoutTestRunner):
-        (LayoutTestRunner.__init__):
-        (LayoutTestRunner.test_key):
-        (LayoutTestRunner.run_tests):
-        (LayoutTestRunner.run_tests.worker_factory):
-        (LayoutTestRunner.run_tests.instead):
-        (LayoutTestRunner._mark_interrupted_tests_as_skipped):
-        (LayoutTestRunner._interrupt_if_at_failure_limits):
-        (LayoutTestRunner._interrupt_if_at_failure_limits.interrupt_if_at_failure_limit):
-        (LayoutTestRunner._update_summary_with_result):
-        (LayoutTestRunner.start_servers_with_lock):
-        (LayoutTestRunner.stop_servers_with_lock):
-        (LayoutTestRunner.handle):
-        (LayoutTestRunner._handle_started_test):
-        (LayoutTestRunner._handle_finished_test_list):
-        (LayoutTestRunner._handle_finished_test_list.find):
-        (LayoutTestRunner._handle_finished_test):
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner_unittest.py:
-        (FakePrinter):
-        (FakePrinter.print_workers_and_shards):
-        (FakePrinter.print_finished_test):
-        (FakePrinter.write):
-        (FakePrinter.write_update):
-        (FakePrinter.flush):
-        (LockCheckingRunner):
-        (LockCheckingRunner.__init__):
-        (LockCheckingRunner.handle_finished_list):
-        (LayoutTestRunnerTests):
-        (LayoutTestRunnerTests._runner):
-        (LayoutTestRunnerTests._result_summary):
-        (LayoutTestRunnerTests._run_tests):
-        (LayoutTestRunnerTests.test_http_locking):
-        (LayoutTestRunnerTests.test_perf_locking):
-        (LayoutTestRunnerTests.test_interrupt_if_at_failure_limits):
-        (LayoutTestRunnerTests.test_update_summary_with_result):
-        (LayoutTestRunnerTests.test_servers_started):
-        (LayoutTestRunnerTests.test_servers_started.start_http_server):
-        (LayoutTestRunnerTests.test_servers_started.start_websocket_server):
-        (LayoutTestRunnerTests.test_servers_started.stop_http_server):
-        (LayoutTestRunnerTests.test_servers_started.stop_websocket_server):
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (summarize_results):
-        (Manager.__init__):
-        (Manager._is_http_test):
-        (Manager):
-        (Manager._is_websocket_test):
-        (Manager._websocket_tests):
-        (Manager._prepare_lists):
-        (Manager._is_ref_test):
-        (Manager.run):
-        (Manager._run_tests):
-        (Manager._look_for_new_crash_logs):
-        (Manager._show_results_html_file):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ManagerTest.test_look_for_new_crash_logs):
-        (ResultSummaryTest.summarized_results):
-        (ResultSummaryTest.test_summarized_results_wontfix):
-
-2012-07-31  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: move sharding logic into layout_test_runner.py
-        https://bugs.webkit.org/show_bug.cgi?id=92805
-
-        Reviewed by Ryosuke Niwa.
-
-        The sharding logic is specific to how we actually run the tests,
-        so it belongs in this file instead of manager.py or finder.py.
-
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner.py:
-        (Worker._run_single_test):
-        (TestShard):
-        (TestShard.__init__):
-        (TestShard.__repr__):
-        (TestShard.__eq__):
-        (Sharder):
-        (Sharder.__init__):
-        (Sharder.shard_tests):
-        (Sharder.shard_tests.or):
-        (Sharder._shard_in_two):
-        (Sharder._shard_every_file):
-        (Sharder._shard_by_directory):
-        (Sharder._resize_shards):
-        (Sharder._resize_shards.divide_and_round_up):
-        (Sharder._resize_shards.extract_and_flatten):
-        (Sharder._resize_shards.split_at):
-        (Sharder._dir_for_test_input):
-        (Sharder.test_key):
-        (Sharder.natural_sort_key):
-        (Sharder.natural_sort_key.tryint):
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner_unittest.py: Added.
-        (SharderTests):
-        (SharderTests.get_test_input):
-        (SharderTests.get_shards):
-        (SharderTests.get_shards.split):
-        (SharderTests.assert_shards):
-        (SharderTests.test_shard_by_dir):
-        (SharderTests.test_shard_by_dir_sharding_ref_tests):
-        (SharderTests.test_shard_every_file):
-        (SharderTests.test_shard_in_two):
-        (SharderTests.test_shard_in_two_sharding_ref_tests):
-        (SharderTests.test_shard_in_two_has_no_locked_shards):
-        (SharderTests.test_shard_in_two_has_no_unlocked_shards):
-        (SharderTests.test_multiple_locked_shards):
-        (NaturalCompareTest):
-        (NaturalCompareTest.assert_cmp):
-        (NaturalCompareTest.test_natural_compare):
-        (KeyCompareTest):
-        (KeyCompareTest.setUp):
-        (KeyCompareTest.setUp.split):
-        (KeyCompareTest.assert_cmp):
-        (KeyCompareTest.test_test_key):
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.__init__):
-        (Manager._prepare_lists):
-        (Manager._is_ref_test):
-        (Manager._run_tests):
-        (Manager._handle_finished_test):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ManagerTest.get_options):
-        (ManagerTest.test_interrupt_if_at_failure_limits):
-        (ManagerTest.test_update_summary_with_result):
-        (ManagerTest.test_needs_servers.get_manager_with_tests):
-        (ManagerTest.integration_test_needs_servers.get_manager_with_tests):
-        (ManagerTest.test_look_for_new_crash_logs.get_manager_with_tests):
-        (ManagerTest.test_servers_started):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-
-2012-07-31  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: rename worker.py to layout_test_runner.py
-        https://bugs.webkit.org/show_bug.cgi?id=92804
-
-        Reviewed by Ojan Vafai.
-
-        Home stretch of this round of manager refactoring ... I will be
-        moving all of the actual test-running code (which includes the
-        code that shards the tests for the workers) into a different
-        module, and it makes sense for that module to contain the actual
-        worker code, so I'm renaming worker.py to layout_test_runner.py.
-
-        * Scripts/webkitpy/layout_tests/controllers/layout_test_runner.py: Renamed from Tools/Scripts/webkitpy/layout_tests/controllers/worker.py.
-        (Worker):
-        (Worker.__init__):
-        (Worker.__del__):
-        (Worker.start):
-        (Worker.handle):
-        (Worker._update_test_input):
-        (Worker._run_test):
-        (Worker.stop):
-        (Worker._timeout):
-        (Worker._kill_driver):
-        (Worker._run_test_with_timeout):
-        (Worker._clean_up_after_test):
-        (Worker._run_test_in_another_thread):
-        (Worker._run_test_in_another_thread.SingleTestThread):
-        (Worker._run_test_in_another_thread.SingleTestThread.__init__):
-        (Worker._run_test_in_another_thread.SingleTestThread.run):
-        (Worker._run_test_in_this_thread):
-        (Worker._run_single_test):
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._run_tests.worker_factory):
-
-2012-07-31  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: clean up names in sharding code
-        https://bugs.webkit.org/show_bug.cgi?id=92785
-
-        Reviewed by Ryosuke Niwa.
-
-        More refactoring ... this makes the methods use TestInputs
-        consistently (and updates the names accordingly) and improves
-        encapsulation a bit. The sharding code is now pretty
-        self-contained.
-
-        This change adds no new functionality and is covered by the
-        existing (updated) tests.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (TestShard.visible.__init__):
-        (TestShard.visible.__repr__):
-        (Manager._dir_for_test_input):
-        (Manager._shard_tests):
-        (Manager._shard_in_two):
-        (Manager._shard_every_file):
-        (Manager._shard_by_directory):
-        (Manager._run_tests):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ManagerWrapper._test_input_for_file):
-        (ShardingTests.get_shards):
-        * Scripts/webkitpy/layout_tests/models/test_input.py:
-        (TestInput.__init__):
-        (TestInput.__repr__):
-
-2012-07-31  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: clean up TestInputs in preparation for cleaning up sharding
-        https://bugs.webkit.org/show_bug.cgi?id=92784
-
-        Reviewed by Ryosuke Niwa.
-
-        Currently, in order to shard the tests you need to refer to
-        state in the manager as well as the state in the TestInputs;
-        this change embeds the necessary state into the TestInputs so
-        sharding them can be a standalone operation.
-
-        The actual clean up of the sharding will follow in a subsequent patch.
-
-        Covered by existing tests; no new functionality. However, I did
-        rework the sharding tests to be less dependent on the test
-        scaffolding and easier to follow.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._test_input_for_file):
-        (Manager._shard_in_two):
-        (Manager._shard_every_file):
-        (Manager._shard_by_directory):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ManagerWrapper._test_input_for_file):
-        (ShardingTests.assert_shards):
-        (ShardingTests.test_shard_by_dir):
-        (ShardingTests.test_shard_by_dir_sharding_ref_tests):
-        (ShardingTests.test_shard_every_file):
-        (ShardingTests.test_shard_in_two):
-        (ShardingTests.test_shard_in_two_sharding_ref_tests):
-        (ShardingTests.test_shard_in_two_has_no_unlocked_shards):
-        (ShardingTests.test_multiple_locked_shards):
-        * Scripts/webkitpy/layout_tests/models/test_input.py:
-        (TestInput.__init__):
-        (TestInput.__repr__):
-
-2012-07-31  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [EFL] Dump a backtrace in case of a crash
-        https://bugs.webkit.org/show_bug.cgi?id=92489
-
-        Reviewed by Csaba Osztrogonác.
-
-        Dump a stack trace in case of a unexpected signal. This should
-        provide a better report at the build bots when WTR crashes.
-
-        * DumpRenderTree/efl/DumpRenderTree.cpp:
-        (main):
-        * TestWebKitAPI/efl/InjectedBundleController.cpp:
-        (TestWebKitAPI::InjectedBundleController::platformInitialize):
-        * WebKitTestRunner/InjectedBundle/efl/InjectedBundleEfl.cpp:
-        (WTR::InjectedBundle::platformInitialize):
-
-2012-07-31  Joshua Netterfield  <jnetterfield@rim.com>
-
-        [BlackBerry] Enable CSS Filter Effects
-        https://bugs.webkit.org/show_bug.cgi?id=92685
-
-        Reviewed by Rob Buis.
-
-        Enable CSS filter effects, with the exception of custom effects (CSS shaders) and reference effects (SVG effects)
-
-        Internally reviewed by Arvid Nilsson <anilsson@rim.com> and Antonio Gomes <agomes@rim.com>.
-
-        * Scripts/webkitperl/FeatureList.pm: Acknowledge CSS filter effects.
-
-2012-07-31  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: clean up prepare_lists_and_print_output, run, set_up_run a bit
-        https://bugs.webkit.org/show_bug.cgi?id=92781
-
-        Reviewed by Ryosuke Niwa.
-
-        More refactoring ... rename prepare_lists_and_print_output to
-        just prepare_lists so that it only has a single purpose, and
-        clean up the surrounding code a bit as well.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._collect_tests):
-        (Manager._prepare_lists):
-        (Manager._set_up_run):
-        (Manager.run):
-
-2012-07-31  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: clean up self._test_files_list vs. self._test_files, other nits
-        https://bugs.webkit.org/show_bug.cgi?id=92702
-
-        Reviewed by Ojan Vafai.
-
-        Get rid of self._test_files, rename self._test_files_list to
-        self._test_names (removing the confusion between the two fields).
-
-        Also inline the one call to _parse_expectations, remove the one
-        use of more_tests_to_skip, and fix a couple of minor nits.
-
-        * Scripts/webkitpy/layout_tests/controllers/finder.py:
-        (LayoutTestFinder.split_into_chunks):
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.__init__):
-        (Manager._collect_tests):
-        (Manager._http_tests):
-        (Manager._websocket_tests):
-        (Manager._is_perf_test):
-        (Manager.prepare_lists_and_print_output):
-        (Manager.needs_servers):
-        (Manager.run):
-        (Manager._mark_interrupted_tests_as_skipped):
-        (Manager._update_summary_with_result):
-        (Manager._upload_json_files):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ManagerTest.test_interrupt_if_at_failure_limits):
-        (ManagerTest.test_needs_servers.get_manager_with_tests):
-        (ManagerTest.test_servers_started):
-
-2012-07-31  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: --verbose logging does not work right on windows
-        https://bugs.webkit.org/show_bug.cgi?id=92673
-
-        Reviewed by Ojan Vafai.
-
-        Add a test for r124090.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_verbose):
-
-2012-07-31  Dirk Pranke  <dpranke@chromium.org>
-
-        REGRESSION(124116): Number of skipped tests isn't printed anymore
-        https://bugs.webkit.org/show_bug.cgi?id=92736
-
-        Reviewed by Tony Chang.
-
-        Add the skipped number back in; it was useful ... also clean up
-        the formatting a little bit.
-
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (Printer.print_found):
-
-2012-07-31  Hans Wennborg  <hans@chromium.org>
-
-        Speech JavaScript API: Throw exception for start() when already started
-        https://bugs.webkit.org/show_bug.cgi?id=92756
-
-        Reviewed by Adam Barth.
-
-        Fix the task queue in MockWebSpeechRecognizer.
-        It's important that we remove the task from the queue before we run
-        it, as running the task could alter the queue's state.
-
-        * DumpRenderTree/chromium/MockWebSpeechRecognizer.cpp:
-        (MockWebSpeechRecognizer::abort):
-        (MockWebSpeechRecognizer::setError):
-        (MockWebSpeechRecognizer::clearTaskQueue):
-        (MockWebSpeechRecognizer::StepTask::runIfValid):
-        * DumpRenderTree/chromium/MockWebSpeechRecognizer.h:
-        (MockWebSpeechRecognizer):
-
-2012-07-31  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: move handling the initial list of tests to skip to finder
-        https://bugs.webkit.org/show_bug.cgi?id=92701
-
-        Reviewed by Ryosuke Niwa.
-
-        More refactoring of manager ...
-
-        * Scripts/webkitpy/layout_tests/controllers/finder.py:
-        (LayoutTestFinder.skip_tests):
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._collect_tests):
-        (Manager.prepare_lists_and_print_output):
-
-2012-07-31  Alexey Proskuryakov  <ap@apple.com>
-
-        [WK2] Kill the concept of secondary shared process
-        https://bugs.webkit.org/show_bug.cgi?id=92676
-
-        Reviewed by Sam Weinig.
-
-        * MiniBrowser/win/BrowserView.cpp: (BrowserView::create): Update Windows build fix.
-        Don't create a new context for every view.
-
-2012-07-31  Peter Beverloo  <peter@chromium.org>
-
-        [Chromium] Don't use ninja for building Chromium for Android
-        https://bugs.webkit.org/show_bug.cgi?id=92764
-
-        Reviewed by Adam Barth.
-
-        When Ninja projects files are generated (which will be done for Android),
-        make sure that the Android builder doesn't unintentionally switch to
-        using Ninja. We should make that switch at a predetermined time.
-
-        * Scripts/webkitdirs.pm:
-        (buildChromium):
-
-2012-07-31  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        Add a mechanism to dump the stack trace in case of a crash
-        https://bugs.webkit.org/show_bug.cgi?id=92666
-
-        Reviewed by Csaba Osztrogonác.
-
-        Move crash signal handlers to WTFInstallReportBacktraceOnCrashHook()
-        and eliminate some duplicated code.
-
-        * DumpRenderTree/qt/main.cpp:
-        (main):
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundleQt.cpp:
-        (WTR::InjectedBundle::platformInitialize):
-
-2012-07-31  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] move EventSender into TestRunner.a
-        https://bugs.webkit.org/show_bug.cgi?id=92277
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/chromium/TestRunner/EventSender.cpp: Renamed from Tools/DumpRenderTree/chromium/EventSender.cpp.
-        * DumpRenderTree/chromium/TestRunner/EventSender.h: Renamed from Tools/DumpRenderTree/chromium/EventSender.h.
-        * DumpRenderTree/chromium/TestRunner/TestInterfaces.cpp:
-        (TestInterfaces::Internal::eventSender):
-        (TestInterfaces::Internal):
-        (TestInterfaces::Internal::Internal):
-        (TestInterfaces::Internal::~Internal):
-        (TestInterfaces::Internal::setWebView):
-        (TestInterfaces::Internal::setDelegate):
-        (TestInterfaces::Internal::bindTo):
-        (TestInterfaces::Internal::resetAll):
-        (TestInterfaces::eventSender):
-        * DumpRenderTree/chromium/TestRunner/TestInterfaces.h:
-        (TestInterfaces):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::initialize):
-        (TestShell::createMainWindow):
-        (TestShell::~TestShell):
-        (TestShell::resetTestController):
-        (TestShell::bindJSObjectsToWindow):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::eventSender):
-        (TestShell):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-
-2012-07-31  Jochen Eisinger  <jochen@chromium.org>
-
-        Unreviewed. Update watchlist
-
-        * Scripts/webkitpy/common/config/watchlist: Turned out to be less useful than I had hoped
-
-2012-07-31  Kent Tamura  <tkent@chromium.org>
-
-        Unreviewed, update watchlist
-
-        * Scripts/webkitpy/common/config/watchlist:
-        - Improve "Forms" filename pattern.
-        - tkent stops watching Chromium DRT. It was not so helpful.
-
-2012-07-31  Martin Robinson  <mrobinson@igalia.com>
-
-        [jhbuild] Also try to load jhbuild Python module from the source checkout
-
-        Reviewed by Philippe Normand.
-
-        JHBuild also seems to have an installation mode where it prefers to load its
-        Python modules from the source checkout. This seems to be used particularly
-        on the GTK+ 64-bit release bot. We should fall back to this mode.
-
-        * jhbuild/jhbuildutils.py:
-        (enter_jhbuild_environment_if_available): Use the source checkout if there
-        is no installation path.
-
-2012-07-30  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Revert r124153 and land the "right" build fix per ap's comment on the bug 92676.
-
-        * MiniBrowser/win/BrowserView.cpp:
-        (BrowserView::create):
-
-2012-07-30  Sam Weinig  <sam@webkit.org>
-
-        Rename WebKit2.h to WebKit2_C.h
-        https://bugs.webkit.org/show_bug.cgi?id=92704
-
-        Reviewed by Dan Bernstein.
-
-        * MiniBrowser/mac/MiniBrowser_Prefix.pch:
-        * MiniBrowser/win/BrowserView.h:
-        * TestWebKitAPI/config.h:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        * WebKitTestRunner/WebKitTestRunnerPrefix.h:
-        * WebKitTestRunner/config.h:
-        Update for changed header file name.
-
-2012-07-30  Dirk Pranke  <dpranke@chromium.org>
-
-        chromium win compile broken after removing webkit.py
-        https://bugs.webkit.org/show_bug.cgi?id=92549
-
-        Reviewed by Ryosuke Niwa.
-
-        Remove the stub file for webkit.py now that it's no longer
-        necessary.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py: Removed.
-
-2012-07-30  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Windows build fix attempt after r124092.
-
-        * MiniBrowser/win/BrowserView.cpp:
-        (BrowserView::create):
-
-2012-07-30  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Remove erroneously committed debugging print call from a test.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (test_run_generates_results_page):
-
-2012-07-30  Arnaud Renevier  <a.renevier@sisa.samsung.com>
-
-        webkit-patch: system keyring is not used to read my password
-        https://bugs.webkit.org/show_bug.cgi?id=92532
-
-        Reviewed by Dirk Pranke.
-
-        In case no username can be fetched from environment, git or keychain,
-        prompt for username, and try to get password from keyring associated
-        with that username.
-
-        * Scripts/webkitpy/common/net/credentials.py:
-        (Credentials.read_credentials):
-        * Scripts/webkitpy/common/net/credentials_unittest.py:
-        (test_keyring_without_git_repo_nor_keychain):
-        (test_keyring_without_git_repo_nor_keychain.MockKeyring):
-        (test_keyring_without_git_repo_nor_keychain.MockKeyring.get_password):
-        (test_keyring_without_git_repo_nor_keychain.FakeCredentials):
-        (test_keyring_without_git_repo_nor_keychain.FakeCredentials._credentials_from_keychain):
-        (test_keyring_without_git_repo_nor_keychain.FakeCredentials._credentials_from_environment):
-        (test_keyring_without_git_repo_nor_keychain.FakeUser):
-        (test_keyring_without_git_repo_nor_keychain.FakeUser.prompt):
-        (test_keyring_without_git_repo_nor_keychain.FakeUser.prompt_password):
-
-2012-07-30  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: move the code that identifies the chunk of tests to run into finder
-        https://bugs.webkit.org/show_bug.cgi?id=92694
-
-        Reviewed by Ryosuke Niwa.
-
-        Another patch to make manager.py smaller and clearer; this patch moves
-        the handling of breaking the list of tests into chunks (--run-part,
-        --run-chunk) from manager.py to finder.py.
-
-        There are no functional changes and this is covered by existing tests.
-
-        * Scripts/webkitpy/layout_tests/controllers/finder.py:
-        (Finder.__init__):
-        (Finder._read_test_files):
-        (Finder):
-        (Finder.split_into_chunks_if_necessary):
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.__init__):
-        (Manager._collect_tests):
-        (Manager._parse_expectations):
-        (Manager.prepare_lists_and_print_output):
-
-2012-07-30  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: split test-finding code out from manager.py
-        https://bugs.webkit.org/show_bug.cgi?id=92693
-
-        Reviewed by Ryosuke Niwa.
-
-        In the interest of making manager.py smaller, this patch moves
-        the code that actually takes the command line arguments and
-        --test-file lists of tests to run and expands them into an
-        actual list of tests out into a separate module.
-
-        * Scripts/webkitpy/layout_tests/controllers/finder.py: Added.
-        (LayoutTestFinder):
-        (LayoutTestFinder.__init__):
-        (LayoutTestFinder.find_tests):
-        (LayoutTestFinder._strip_test_dir_prefixes):
-        (LayoutTestFinder._strip_test_dir_prefix):
-        (LayoutTestFinder._read_test_names_from_file):
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._collect_tests):
-        (Manager._handle_finished_test):
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (strip_comments):
-
-2012-07-30  Adam Barth  <abarth@webkit.org>
-
-        commit-queue is corrupting ChangeLogs
-        https://bugs.webkit.org/show_bug.cgi?id=92681
-
-        Reviewed by Tony Chang.
-
-        Some commits made with the commit-queue are ending up with duplicate
-        ChangeLog entries. I've hot-patched the servers to not use a special
-        merge driver for ChangeLogs, which should fix this issue. This patch
-        removes the merge driver from our cold-boot.sh script so that we won't
-        use it on new commit-queue instances.
-
-        * EWSTools/cold-boot.sh:
-
-2012-07-28  Sam Weinig  <sam@webkit.org>
-
-        Add ability to load from a string to the ObjC WK API
-        https://bugs.webkit.org/show_bug.cgi?id=92590
-
-        Reviewed by Dan Bernstein.
-
-        Add tests for [WKBrowsingContextController loadHTMLString:baseURL:]. We will be able
-        to greatly improve these tests (to test more than just not crashing) when methods to
-        access page content are added (soon!).
-
-        Adds:
-            Test: WKBrowsingContextLoadDelegateTest_SimpleLoadOfHTMLString
-            Test: WKBrowsingContextLoadDelegateTest_SimpleLoadOfHTMLString_NilBaseURL
-            Test: WKBrowsingContextLoadDelegateTest_SimpleLoadOfHTMLString_NilHTMLStringAndBaseURL
-
-        * TestWebKitAPI/Tests/WebKit2ObjC/WKBrowsingContextLoadDelegateTest.mm:
-        Adds tests and refactors delegates to not use global state.
-
-2012-07-30  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [CMake] TestWebKitAPI bundle should link with WTF
-        https://bugs.webkit.org/show_bug.cgi?id=92616
-
-        Reviewed by Antonio Gomes.
-
-        Fixes build when shared core is disabled.
-
-        * TestWebKitAPI/CMakeLists.txt:
-
-2012-07-30  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: clean up handling of 'expected' stats
-        https://bugs.webkit.org/show_bug.cgi?id=92527
-
-        Reviewed by Tony Chang.
-
-        This patch alters the way we compute and log the "expected"
-        results and how we treat skipped tests; we will now log the
-        number of skipped tests separately from the categories, e.g.:
-
-        Found 31607 tests; running 24464.
-        Expect: 23496 passes   (23496 now,    0 wontfix)
-        Expect:   548 failures (  543 now,    5 wontfix)
-        Expect:   420 flaky    (  245 now,  175 wontfix)
-
-        (so that the "expect" totals add up to the "running" totals);
-        in addition, the totals in the one-line-progress reflect the
-        number of tests we will actually run. If --iterations or
-        --repeat-each are specified, the number of tests we run are
-        multiplied as appropriate, but the "expect" numbers are
-        unchanged, since we don't count multiple invocations of the same
-        test multiple times. In addition, if we are using --run-part or
-        --run-chunk, the tests we don't run are treated as skipped
-        for consistency. We will also log the values for --iterations
-        and --repeat each as part of the found/running line.
-
-        Previously the code had parsed and re-parsed the
-        TestExpectations files several times in an attempt to come up
-        with some sane statistics, but this was expensive and lead to
-        confusing layer; treating files as skipped in the way described
-        above is more consistent and cleaner.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._split_into_chunks_if_necessary):
-        (Manager.prepare_lists_and_print_output):
-        (Manager.run):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ManagerTest.test_interrupt_if_at_failure_limits):
-        (ManagerTest.test_update_summary_with_result):
-        (ManagerTest.test_look_for_new_crash_logs):
-        (ResultSummaryTest.get_result_summary):
-        * Scripts/webkitpy/layout_tests/models/result_summary.py:
-        (ResultSummary.__init__):
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectationParser.expectation_for_skipped_test):
-        (TestExpectations.__init__):
-        (TestExpectations.add_skipped_tests):
-          Here we make add_skipped_tests() public, so that we can update
-          the expectations for tests that we are skipping due to
-          --run-part or --run-chunk; we use the wontfix flag so that
-          the tests that are intentionally skipped aren't considered
-          "fixable".
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (SkippedTests.check):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (Printer.print_found):
-        (Printer):
-        (Printer.print_expected):
-        (Printer._print_result_summary):
-        (Printer._print_result_summary_entry):
-          Here we split out printing the number of tests found and run
-          from the expected results, to be clearer and so that we don't
-          have to reparse the expectations to update the stats.
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-        (Testprinter.get_result_summary):
-
-2012-07-30  Sadrul Habib Chowdhury  <sadrul@chromium.org>
-
-        Propagate gesture events to plugins.
-        https://bugs.webkit.org/show_bug.cgi?id=92281
-
-        Reviewed by Adam Barth.
-
-        Update TestWebPlugin to receive events, and output logs for the events.
-
-        * DumpRenderTree/chromium/TestWebPlugin.cpp:
-        (TestWebPlugin::handleInputEvent):
-        * DumpRenderTree/chromium/TestWebPlugin.h:
-        (TestWebPlugin::acceptsInputEvents):
-        (TestWebPlugin):
-
-2012-07-30  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        [jhbuild] gnutls 2.12.14 does not build with glibc 2.16.0
-        https://bugs.webkit.org/show_bug.cgi?id=90643
-
-        Reviewed by Gustavo Noronha Silva.
-
-        The 2.x series of gnutls has a version of Gnulib that is
-        incompatible with glibc 2.16.0, which now does not define gets()
-        by default.
-
-        After talking to kov, mrobinson and philn, it looks like it makes
-        sense to simply remove gnutls from jhbuild.modules and rely on the
-        version installed on the system being recent enough.
-
-        This means at least version 2.12.8 for PKCS11 support, or at the
-        very least 2.11.0 (these are the minimum versions enforced by
-        glib-networking's configure.ac).
-
-        * efl/jhbuild.modules: Do not build gnutls anymore, make
-        glib-networking depend on glib instead, and move the libgcrypt
-        dependency to eet, which is what currently needs it.
-        * gtk/jhbuild.modules: Do not build gnutls anymore.
-
-2012-07-30  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: --verbose logging does not work right on windows
-        https://bugs.webkit.org/show_bug.cgi?id=92673
-
-        Unreviewed, build fix.
-
-        The --verbose log level is not being propagated to the worker
-        processes on windows properly; this has been broken ever since I
-        refactored logging into the message pool directly :(.
-
-        Also, fixing this revealed that outputcapture wasn't saving and
-        restoring log levels correctly, so I had to fix that as well.
-
-        * Scripts/webkitpy/common/message_pool.py:
-        (_MessagePool._start_workers):
-        (_MessagePool._worker_log_level):
-        (_Worker.__init__):
-        (_Worker._set_up_logging):
-        (_WorkerLogHandler.__init__):
-        * Scripts/webkitpy/common/system/outputcapture.py:
-        (OutputCapture.capture_output):
-        (OutputCapture.restore_output):
-
-2012-07-30  Dirk Pranke  <dpranke@chromium.org>
-
-        After r123895, new-run-webkit-tests can fail with TypeError when a test crashes
-        https://bugs.webkit.org/show_bug.cgi?id=92664
-
-        Reviewed by Michael Saboff.
-
-        Updated to handle crash_logs being returned as a tuple of (stderr, crash_log).
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.look_for_new_crash_logs):
-
-2012-07-30  Stephen White  <senorblanco@chromium.org>
-
-        Added a SkiaGraphics definition to the watchlist file; cc'ed myself
-        to that group.  Unreviewed.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-07-30  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r123966 and r123967.
-        http://trac.webkit.org/changeset/123966
-        http://trac.webkit.org/changeset/123967
-        https://bugs.webkit.org/show_bug.cgi?id=92656
-
-        This patch is causing assertion failures on the debug bot
-        (also rolling out a dependent patch) (Requested by mrobinson
-        on #webkit).
-
-        * gtk/generate-gtkdoc:
-        (get_webkit2_options):
-
-2012-07-30  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Add a non-subprocess jhbuild environment and use it for run-gtk-tests
-        https://bugs.webkit.org/show_bug.cgi?id=92626
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Instead of always shelling out to enter a jhbuild environment, add a Python
-        hook for entering a jhbuild environment directly. This avoids requiring a
-        script to be wrapped in jhbuild.
-
-        * GNUmakefile.am: Remove gtk/run-api-tests from the distribution list.
-        * Scripts/run-gtk-tests: Move most of the logic from run-api-tests here
-        with additional code for entering a jhbuild environment directly.
-        * gtk/run-api-tests: Removed.
-        * jhbuild/jhbuild-wrapper: Use the new helper methods defined in jhbuildutils.py.
-        * jhbuild/jhbuildutils.py: Add some new helper methods here including
-        a method which can transform the current environment into a jhbuild-ified one.
-
-2012-07-30  Alexander Pavlov  <apavlov@chromium.org>
-
-        Unreviewed, upgrade apavlov to reviewer.
-        http://lists.webkit.org/mailman/private/webkit-committers/2012-July/000184.html
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-07-30  Robin Cao  <robin.cao@torchmobile.com.cn>
-
-        [BlackBerry] Adapt to changes in the SharedArray platform API
-        https://bugs.webkit.org/show_bug.cgi?id=92631
-
-        Reviewed by Rob Buis.
-
-        Adapt to changes in the SharedArray platform API. No behavioural change.
-
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
-        (LayoutTestController::webHistoryItemCount):
-
-2012-07-30  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt][NRWT] REGRESSION(123729): Forcing pixel tests with -p doesn't work
-        https://bugs.webkit.org/show_bug.cgi?id=92627
-
-        Reviewed by Noam Rosenthal.
-
-        Remove the default behavior I added in r123729 so that we run all tests as pixel
-        test with -p. It was intentional but it seems like we don't have consensus on
-        that we want it.
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort._supports_switching_pixel_tests_per_test):
-
-2012-07-30  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL][WTR] Enforce SHIFT modifier to upper case keys in event sender.
-        https://bugs.webkit.org/show_bug.cgi?id=92366
-
-        Reviewed by Antonio Gomes.
-
-        Add SHIFT modifier for capital letters as VK_
-        codes do not distinguish between lows and caps and also to be consistent
-        with other ports which send caps as lowercase letters with the shift key down.
-
-        * WebKitTestRunner/efl/EventSenderProxyEfl.cpp:
-        (WTR::EventSenderProxy::keyDown):
-
-2012-07-29  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        [EFL][jhbuild] Make run-with-jhbuild become the jhbuild process itself.
-        https://bugs.webkit.org/show_bug.cgi?id=92592
-
-        Reviewed by Eric Seidel.
-
-        Adapt to the changes made to GTK+'s run-with-jhbuild in r123979
-        and make EFL's run-with-jhbuild call os.execve() instead of
-        launching a subprocess as well.
-
-        This should make it possible to interrupt execution of jhbuild
-        cleanly.
-
-        * efl/run-with-jhbuild:
-
-2012-07-28  Ryosuke Niwa  <rniwa@webkit.org>
-
-        run-perf-tests should generate a results page
-        https://bugs.webkit.org/show_bug.cgi?id=92575
-
-        Reviewed by Eric Seidel.
-
-        Added the ability to generate a results page that summarizes performance test results from
-        multiple runs of run-perf-tests when --output-json-path is specified and --test-results-server
-        is not specified. We cannot generate a results page when --test-results-server is specified
-        because perf-o-matic cannot parse the new JSON format.
-
-        The new JSON format is simply an array of the old JSON output. This JSON is then merged into
-        results-template.html along with jQuery and copied as a HTML file of the same filename as
-        the output JSON file with a .html extension.
-
-        We merge all scripts and the JSON output into the results page as opposed to including them
-        with the src content attribute to make it standalone so that we may post it on Bugzilla or
-        e-mail it to someone else without breaking it.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner.run):
-        (PerfTestsRunner._generate_json): Merge "contents" with the existing JSON file when generating
-        a results page, and generate the results page from results-template.html merged with jQuery and
-        the generated JSON output.
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (_test_run_with_json_output): Extracted from test_run_with_upload_json to be shared with
-        several test cases.
-        (_test_run_with_json_output.mock_upload_json): Ditto.
-        (test_run_with_json_output): Refactored to use _test_run_with_json_output.
-        (test_run_generates_results_page): Added. Tests the new feature.
-        (test_run_with_json_source): Refactored to use _test_run_with_json_output.
-        (test_run_with_multiple_repositories): Ditto.
-        (test_run_with_upload_json): Ditto.
-
-2012-07-29  Rik Cabanier  <cabanier@adobe.com>
-
-        Add ENABLE_CSS_COMPOSITING flag
-        https://bugs.webkit.org/show_bug.cgi?id=92553
-
-        Reviewed by Dirk Schulze.
-
-        Adds compiler flag CSS_COMPOSITING to build systems to enable CSS blending and compositing. See spec https://dvcs.w3.org/hg/FXTF/rawfile/tip/compositing/index.html
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-07-29  Gustavo Noronha Silva  <gns@gnome.org>
-
-        Reviewed by Martin Robinson.
-
-        Make the jhbuild wrapper scripts become the jhbuild process
-        instead of starting it as a child. This should make it possible to
-        interrupt execution of jhbuild cleanly.
-
-        * gtk/run-with-jhbuild:
-        * jhbuild/jhbuild-wrapper:
-
-2012-07-29  Mike West  <mkwst@chromium.org>
-
-        Extend `application/x-webkit-test-netscape` plugins to better support multiple frames.
-        https://bugs.webkit.org/show_bug.cgi?id=92478
-
-        Reviewed by Adam Barth.
-
-        DumpRenderTree currently understands
-        `<object src="data:application/x-webkit-test-netscape,alertwhenloaded">`.
-        It would be useful if it understood `logifloaded`, which could give
-        more context regarding test expectations, and can be written in such
-        as way as to support plugins loaded into multiple iframes in a single
-        test.
-
-        * DumpRenderTree/TestNetscapePlugIn/main.cpp:
-        (NPP_New):
-            Adding support for `logifloaded`.
-
-2012-07-28  Peter Kasting  <pkasting@google.com>
-
-        Fix Chromium/Win compile.
-        https://bugs.webkit.org/show_bug.cgi?id=88787
-
-        Unreviewed, build fix.
-
-        Chromium/Win needs _USE_MATH_DEFINES but doesn't define PLATFORM(WIN).
-        The other files in WebKit that define this macro (both in
-        WebCore/platform/graphics/cg) do it by unconditionally #defining it to 1
-        above the #include of "config.h", so copy that pattern here.
-
-        * TestWebKitAPI/Tests/WTF/MediaTime.cpp:
-
-2012-07-28  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        [WK2][GTK] Implement a new spell checker API for WebKit2GTK+
-        https://bugs.webkit.org/show_bug.cgi?id=90268
-
-        Reviewed by Martin Robinson.
-
-        Ignore WebKitTextChecker.* private files for gtk-doc.
-
-        * gtk/generate-gtkdoc:
-        (get_webkit2_options):
-
-2012-07-28  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK] Transparent Media controls timeline and panel
-        https://bugs.webkit.org/show_bug.cgi?id=85279
-
-        Reviewed by Martin Robinson.
-
-        * gtk/jhbuild.modules: Provide gnome-themes-standard build
-        support, this is necessary so the media controls panel colors are
-        properly initialized from the GTK+ theme.
-
-2012-07-27  Kihong Kwon  <kihong.kwon@samsung.com>
-
-        [EFL] Support for HTML media capture
-        https://bugs.webkit.org/show_bug.cgi?id=91842
-
-        Reviewed by Ryosuke Niwa.
-
-        Add HTML media capture feature to the feature list.
-        In addition, enable that on the Efl port.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-07-27  Dirk Pranke  <dpranke@chromium.org>
-
-        "webkit-patch rebaseline <test>" fails with exit_code 1
-        https://bugs.webkit.org/show_bug.cgi?id=91560
-
-        Reviewed by Adam Barth.
-
-        webkit-patch rebaseline-json crashes in an svn checkout if it
-        tries to add files and there are no files to add; arguably
-        svn.add() should be robust against this, but rebaseline-json
-        shouldn't be calling it, either. This patch fixes the latter and
-        adds better debugging info to garden-o-matic so we can see what
-        caused the crash.
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (AbstractParallelRebaselineCommand._rebaseline):
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        (GardeningHTTPRequestHandler.rebaselineall):
-        (GardeningHTTPRequestHandler.rebaselineall.error_handler):
-        (GardeningHTTPRequestHandler):
-
-2012-07-27  Brady Eidson  <beidson@apple.com>
-
-        Plugins should not be allowed to override standard properties/attributes in non-standard worlds
-        <rdar://problem/11975252> and https://bugs.webkit.org/show_bug.cgi?id=92519
-
-        Reviewed by Anders Carlsson.
-
-        Add a test plugin which overrides all properties it is asked about:
-        * DumpRenderTree/TestNetscapePlugIn/Tests/PluginScriptableObjectOverridesAllProperties.cpp: Added.
-        (PluginScriptableObjectOverridesAllProperties):
-        (PluginScriptableObjectOverridesAllProperties::PluginScriptableObjectOverridesAllProperties):
-        (PluginObject):
-        (PluginScriptableObjectOverridesAllProperties::PluginObject::PluginObject):
-        (PluginScriptableObjectOverridesAllProperties::PluginObject::~PluginObject):
-        (PluginScriptableObjectOverridesAllProperties::PluginObject::hasProperty):
-        (PluginScriptableObjectOverridesAllProperties::PluginObject::getProperty):
-        (PluginScriptableObjectOverridesAllProperties::NPP_GetValue):
-
-        Expose NPN_MemAlloc to the test plugin:
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-        (PluginTest::NPN_MemAlloc):
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.h:
-        (PluginTest):
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
-        * DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
-        * DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
-
-2012-07-27  Rafael Brandao  <rafael.lobo@openbossa.org>
-
-        "webkit-patch upload" should strip colors from patch if necessary
-        https://bugs.webkit.org/show_bug.cgi?id=92306
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/checkout/scm/git.py: Explicity remove colors from diff.
-
-2012-07-27  Eric Seidel  <eric@webkit.org>
-
-        clean-pending-commit throws exception when encountering Ossy
-        https://bugs.webkit.org/show_bug.cgi?id=92534
-
-        Reviewed by Adam Barth.
-
-        Mark a couple strings as unicode so that reviewers with unicode names do not cause
-        clean-pending-commit to barf.
-
-        * Scripts/webkitpy/tool/commands/upload.py:
-        (CleanPendingCommit._flags_to_clear_on_patch):
-        (CleanPendingCommit.execute):
-        (AssignToCommitter._assign_bug_to_last_patch_attacher):
-
-2012-07-27  Dirk Pranke  <dpranke@chromium.org>
-
-        chromium win compile broken after removing webkit.py
-        https://bugs.webkit.org/show_bug.cgi?id=92549
-
-        Unreviewed, build fix.
-
-        It turns out that this file is listed in the chromium downstream
-        'browser_tests.isolate' file, and so deleting it broke gyp.
-        Adding a stub file back in until we can remove the entry from
-        the file.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py: Added.
-
-2012-07-27  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: remove 'webkit.py' and the 'WebKitPort'
-        https://bugs.webkit.org/show_bug.cgi?id=92450
-
-        Reviewed by Ryosuke Niwa.
-
-        This patch finishes the work of merging WebKitPort into Port.
-        Now Port is way too big :).
-
-        This is all cutting and pasting; no new functionality and
-        no changes in the tests.
-
-        * Scripts/webkitpy/layout_tests/port/apple.py:
-        (ApplePort):
-        (ApplePort.__init__):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.skipped_layout_tests):
-        (Port):
-        (Port._port_flag_for_scripts):
-        (Port._arguments_for_configuration):
-        (Port._run_script):
-        (Port._build_driver):
-        (Port._build_driver_flags):
-        (Port._tests_for_other_platforms):
-        (Port._runtime_feature_list):
-        (Port.nm_command):
-        (Port._modules_to_search_for_symbols):
-        (Port._symbols_string):
-        (Port._missing_feature_to_skipped_tests):
-        (Port._missing_symbol_to_skipped_tests):
-        (Port._has_test_in_directories):
-        (Port._skipped_tests_for_unsupported_features):
-        (Port._wk2_port_name):
-        (Port._skipped_file_search_paths):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort):
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_port_testcase.py:
-        (ChromiumPortTestCase.test_check_build):
-        * Scripts/webkitpy/layout_tests/port/driver_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort):
-        (EflPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort):
-        (GtkPort.setup_environ_for_server):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (TestWebKitPort):
-        (TestWebKitPort.__init__):
-        (TestWebKitPort.all_test_configurations):
-        (TestWebKitPort._symbols_string):
-        (TestWebKitPort._tests_for_other_platforms):
-        (TestWebKitPort._tests_for_disabled_features):
-        (PortTestCase):
-        (PortTestCase.test_diff_image):
-        (PortTestCase.test_path_to_test_expectations_file):
-        (PortTestCase.test_skipped_directories_for_symbols):
-        (test_skipped_directories_for_features):
-        (test_skipped_directories_for_features_no_matching_tests_in_test_list):
-        (test_skipped_tests_for_unsupported_features_empty_test_list):
-        (test_skipped_layout_tests):
-        (test_skipped_file_search_paths):
-        (test_root_option):
-        (test_test_expectations):
-        (test_build_driver):
-        (_assert_config_file_for_platform):
-        (test_linux_distro_detection):
-        (test_apache_config_file_name_for_platform):
-        (test_path_to_apache_config_file):
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort):
-        (QtPort.__init__):
-        (QtPort.setup_environ_for_server):
-        * Scripts/webkitpy/layout_tests/port/webkit.py: Removed.
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py: Removed.
-        * Scripts/webkitpy/tool/servers/rebaselineserver.py:
-        (get_test_baselines.AllPlatformsPort):
-        (get_test_baselines.AllPlatformsPort.__init__):
-        * Scripts/webkitpy/tool/servers/rebaselineserver_unittest.py:
-        (get_test_config.TestMacPort):
-
-2012-07-27  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2][WTR] LayoutTestController.deliverWebIntent() needs to be implemented
-        https://bugs.webkit.org/show_bug.cgi?id=92228
-
-        Reviewed by Anders Carlsson.
-
-        Implement LayoutTestController.deliverWebIntent() to
-        allow test cases to deliver a Web intent and test this
-        functionality.
-
-        This functionality is needed by:
-        - webintents/web-intents-delivery.html
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::deliverWebIntent):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (LayoutTestController):
-
-2012-07-27  Jer Noble  <jer.noble@apple.com>
-
-        Unreviewed build fix.
-
-        Wrap MSVC-specific fixes is a COMPILER() check, not a PLATFORM() check.
-
-        * TestWebKitAPI/Tests/WTF/MediaTime.cpp:
-
-2012-07-27  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] NRWT better handling of DRT deadlocks and crashes
-        https://bugs.webkit.org/show_bug.cgi?id=92299
-
-        Reviewed by Dirk Pranke.
-
-        1. Changed the deadlock detector thread target from a method of driver to a function to avoid its reference to the
-           current driver (see the bug for the problem of the reference.
-        2. Let the deadlock detector thread exit early when the normal_startup_event is set to avoid it from blocking the main thread when the main thread is exiting.
-        3. Extracted common loop until timeout logic into ChromiumAndroidDriver._loop_with_timeout().
-        4. Use the "for i in range(n)" style suggested by dpranke in https://bugs.webkit.org/show_bug.cgi?id=89124 in several functions.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.__init__):
-        (ChromiumAndroidPort._run_adb_command): Reduced the verbose output.
-        (ChromiumAndroidDriver.__init__):
-        (ChromiumAndroidDriver._loop_with_timeout): Extracted common loop until timeout logic here.
-        (ChromiumAndroidDriver._all_pipes_created):
-        (ChromiumAndroidDriver._remove_all_pipes):
-        (ChromiumAndroidDriver._start): Changed the retry loop style.
-        (ChromiumAndroidDriver._start_once): Changed the loop style and code related to deadlock detector.
-        (ChromiumAndroidDriver._start_once.deadlock_detector): Moved the original ChromiumAndroidDriver._deadlock_detector() here.
-        (ChromiumAndroidDriver.stop): Changed the loop style.
-
-2012-07-27  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: move collect_tests(), parse_expectations() into manager
-        https://bugs.webkit.org/show_bug.cgi?id=92423
-
-        Reviewed by Ojan Vafai.
-
-        This is the first in a series of patches refactoring
-        run_webkit_tests.py and manager.py to make them more
-        maintainable; all this patch does is move a couple of functions
-        into manager.run_tests() so manager's public interface is
-        simple.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._collect_tests):
-        (Manager._parse_expectations):
-        (Manager._split_into_chunks_if_necessary):
-        (Manager.run):
-        (read_test_files):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ManagerTest.test_http_locking):
-        (ManagerTest.test_perf_locking):
-        (ManagerTest.integration_test_needs_servers.get_manager_with_tests):
-        (ManagerTest.test_look_for_new_crash_logs.get_manager_with_tests):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (run):
-
-2012-07-27  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: print filtered stderr after a crash correctly
-        https://bugs.webkit.org/show_bug.cgi?id=92428
-
-        Reviewed by Adam Barth.
-
-        Some ports will run the stderr output from DRT/WTR through a
-        filter after a crash in order to print a more useful stack
-        trace; while that gets written to the crash log correctly, we
-        don't log it to the debug output properly. This change fixes
-        that and makes it clearer that we're logging stderr, not the
-        crash log.
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner._handle_error):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port._get_crash_log):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort._get_crash_log):
-        * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:
-        (ChromiumAndroidPortTest.test_get_crash_log):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.run_test):
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        * Scripts/webkitpy/layout_tests/port/gtk_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort._get_crash_log):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (PortTestCase.test_get_crash_log):
-
-2012-07-27  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: move image diffing code to a separate module
-        https://bugs.webkit.org/show_bug.cgi?id=92447
-
-        Reviewed by Ryosuke Niwa.
-
-        This patch moves the code to talk to ImageDiff into its own
-        module, and adds more tests for it. In addition, the patch
-        modifies diff_image() so that we don't automatically stop
-        ImageDiff after a single invocation, and thus subsequent
-        diffs may be slightly faster. (Note that the chromium ports
-        don't use any of this code; that is not changed by this patch).
-
-        The main motivation for this change is to move more "generic"
-        code out of the port/* classes, and in particular to move more
-        code out of webkit.py so that we can eventually eliminate it by
-        merging it into base.py.
-
-        This patch also splits MockServerProcess out from driver_unittest.py
-        so that it can be re-used.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.__init__):
-        (Port.diff_image):
-        (Port.clean_up_test_run):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.__init__):
-        (Driver._start):
-        * Scripts/webkitpy/layout_tests/port/driver_unittest.py:
-        (DriverTest.test_stop_cleans_up_properly):
-        (DriverTest.test_two_starts_cleans_up_properly):
-        (DriverTest.test_start_actually_starts):
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort.clean_up_test_run):
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort.clean_up_test_run):
-        * Scripts/webkitpy/layout_tests/port/image_diff.py: Added.
-        (ImageDiffer):
-        (ImageDiffer.__init__):
-        (ImageDiffer.diff_image):
-        (ImageDiffer._start):
-        (ImageDiffer._read):
-        (ImageDiffer.stop):
-        * Scripts/webkitpy/layout_tests/port/image_diff_unittest.py: Added.
-        (for):
-        (FakePort):
-        (FakePort.__init__):
-        (FakePort._path_to_image_diff):
-        (FakePort.setup_environ_for_server):
-        (TestImageDiffer):
-        (TestImageDiffer.test_diff_image):
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        (MockDRTPortTest.test_diff_image):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (PortTestCase.test_diff_image__missing_both):
-        (PortTestCase.test_diff_image):
-        (PortTestCase.test_diff_image.make_proc):
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        (ServerProcess._start):
-        * Scripts/webkitpy/layout_tests/port/server_process_mock.py: Added.
-        (MockServerProcess):
-        (MockServerProcess.__init__):
-        (MockServerProcess.write):
-        (MockServerProcess.has_crashed):
-        (MockServerProcess.read_stdout_line):
-        (MockServerProcess.read_stdout):
-        (MockServerProcess.pop_all_buffered_stderr):
-        (MockServerProcess.read_either_stdout_or_stderr_line):
-        (MockServerProcess.start):
-        (MockServerProcess.stop):
-        (MockServerProcess.kill):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._build_driver_flags):
-        (WebKitPort._symbols_string):
-
-2012-07-27  Tom Hudson  <hudson@google.com>
-
-        Activate committer bit granted April 6th so I can garden.
-        https://bugs.webkit.org/show_bug.cgi?id=92500
-
-        Reviewed by Jochen Eisinger.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-07-27  Jer Noble  <jer.noble@apple.com>
-
-        Support a rational time class for use by media elements.
-        https://bugs.webkit.org/show_bug.cgi?id=88787
-
-        Add unit tests for the WTF::MediaTime class.
-
-        Reviewed by Eric Carlson.
-
-        * TestWebKitAPI/GNUmakefile.am:
-        * TestWebKitAPI/TestWebKitAPI.gypi:
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WTF/MediaTime.cpp: Added.
-        * TestWebKitAPI/win/TestWebKitAPI.vcproj:
-        (WTF::operator<<):
-        (TestWebKitAPI):
-        (TestWebKitAPI::TEST):
-
-2012-07-27  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [NRWT] should have a way to restrict pixel tests for individual directories
-        https://bugs.webkit.org/show_bug.cgi?id=91754
-
-        Unreviewed attempt to fix the chaos I introduced.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::processLine):
-
-2012-07-27  YoungTaeck Song  <youngtaeck.song@samsung.com>
-
-        [WK2][EFL] Add an ACCELERATED_COMPOSITING implementation for Efl WebKit2
-        https://bugs.webkit.org/show_bug.cgi?id=91581
-
-        Reviewed by Noam Rosenthal.
-
-        Add a MiniBrowser's option for selecting evas engine.
-
-        * MiniBrowser/efl/main.c:
-        (browserCreate):
-        (main):
-
-2012-07-27  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r123869.
-        http://trac.webkit.org/changeset/123869
-        https://bugs.webkit.org/show_bug.cgi?id=92501
-
-        "it did not fix anything but made things even worst"
-        (Requested by kbalazs on #webkit).
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::open):
-        (WebCore::DumpRenderTree::processLine):
-        (WebCore::DumpRenderTree::setDumpPixelsForAllTests):
-        (WebCore::DumpRenderTree::dump):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        (DumpRenderTree):
-        * DumpRenderTree/qt/main.cpp:
-        (main):
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner._should_fetch_expected_checksum):
-        (SingleTestRunner._overwrite_baselines):
-        (SingleTestRunner._compare_output):
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        (Worker._update_test_input):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.supports_switching_pixel_tests_per_test):
-        (Port):
-        (Port._supports_switching_pixel_tests_per_test):
-        (Port.should_run_as_pixel_test):
-        (Port._should_run_as_pixel_test):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.cmd_line):
-        (Driver._command_from_driver_input):
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort.check_sys_deps):
-        (QtPort):
-        (QtPort._supports_switching_pixel_tests_per_test):
-        (QtPort._should_run_as_pixel_test):
-        (QtPort._default_pixel_test_directories):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort.supports_switching_pixel_tests_per_test):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (_set_up_derived_options):
-        (parse_args):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_run_singly_actually_runs_tests):
-        (MainTest.test_pixel_test_directories):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::TestController):
-        (WTR::TestController::initialize):
-        (WTR::TestController::runTest):
-        * WebKitTestRunner/TestController.h:
-        (TestController):
-
-2012-07-27  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [NRWT] should have a way to restrict pixel tests for individual directories
-        https://bugs.webkit.org/show_bug.cgi?id=91754
-
-        Reviewed by Zoltan Herczeg.
-
-        Rollout r123729 because it made Qt debug bots crasy.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::open):
-        (WebCore::DumpRenderTree::processLine):
-        (WebCore::DumpRenderTree::setDumpPixels):
-        (WebCore::DumpRenderTree::dump):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        (DumpRenderTree):
-        * DumpRenderTree/qt/main.cpp:
-        (main):
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner._should_fetch_expected_checksum):
-        (SingleTestRunner._overwrite_baselines):
-        (SingleTestRunner._compare_output):
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        (Worker._update_test_input):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.lookup_virtual_test_args):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.cmd_line):
-        (Driver._command_from_driver_input):
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort.check_sys_deps):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort.virtual_test_suites):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (_set_up_derived_options):
-        (parse_args):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_run_singly_actually_runs_tests):
-        (MainTest.test_missing_and_unexpected_results):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::TestController):
-        (WTR::TestController::initialize):
-        (WTR::TestController::runTest):
-        * WebKitTestRunner/TestController.h:
-        (TestController):
-
-2012-07-27  Adam Barth  <abarth@webkit.org>
-
-        webkit.review.bot should run clean-review-queue and clean-pending-commit periodically
-        https://bugs.webkit.org/show_bug.cgi?id=92472
-
-        Reviewed by Eric Seidel.
-
-        We need to run these command periodically to keep cruft from
-        accumulating in bugs.webkit.org. Rather than running them manually, we
-        should just have a bot run them. This patch has the style-queue run the
-        commands, which admittedly is a bit odd but it doesn't seem worthwhile
-        to create another bot specifically for this purposes.
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-        (AbstractReviewQueue):
-        (StyleQueue.begin_work_queue):
-        (StyleQueue):
-        (StyleQueue.clean_bugzilla):
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        (StyleQueueTest.test_style_queue_with_style_exception):
-        (test_style_queue_with_watch_list_exception):
-
-2012-07-27  Dominik Röttsches  <dominik.rottsches@intel.com>
-
-        [Cairo] Add complex font drawing using HarfbuzzNG
-        https://bugs.webkit.org/show_bug.cgi?id=91864
-
-        Reviewed by Simon Hausmann and Martin Robinson.
-
-        Bringing Harfbuzz support to EFL with this patch, so we need HarfBuzz in the pulled in jhbuild dependencies.
-
-        * WebKitTestRunner/CMakeLists.txt: Adding additional header include directories.
-        * efl/jhbuild.modules: Adding source for HarfBuzz release version 0.9.0.
-
-2012-07-27  KwangYong Choi  <ky0.choi@samsung.com>
-
-        [WK2][EFL][WTR] TestNetscapePlugin is required.
-        https://bugs.webkit.org/show_bug.cgi?id=88756
-
-        Reviewed by Simon Hausmann.
-
-        libTestNetscapePlugin.so should be required for DRT/WTR/EFL.
-
-        * CMakeLists.txt:
-        * DumpRenderTree/TestNetscapePlugin/CMakeList.txt:
-
-2012-07-27  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] Memory leaks in EFL DRT
-        https://bugs.webkit.org/show_bug.cgi?id=92347
-
-        Reviewed by Simon Hausmann.
-
-        Fix a memory leak in EFL's DRT code by adopting an allocation
-        of JSString created with JSStringCreateWithUTF8CString.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::onWindowObjectCleared):
-
-2012-07-27  Adam Barth  <abarth@webkit.org>
-
-        Simplify ExpectedFailures
-        https://bugs.webkit.org/show_bug.cgi?id=92216
-
-        Reviewed by Eric Seidel.
-
-        This patch simplifies the ExpectedFailures class we use to remember
-        which tests are currently failing on the bots. When we wrote this code
-        originally, we weren't entirely sure how it would work. Now that we
-        understand it more clearly, we can write the code more clearly.
-
-        * Scripts/webkitpy/tool/bot/expectedfailures.py:
-        (_has_failures):
-        (_is_trustworthy):
-        (ExpectedFailures.__init__):
-        (ExpectedFailures.failures_were_expected):
-        (ExpectedFailures.unexpected_failures_observed):
-        (ExpectedFailures.update):
-        * Scripts/webkitpy/tool/bot/expectedfailures_unittest.py:
-        (ExpectedFailuresTest._assert_can_trust):
-        (ExpectedFailuresTest.test_failures_were_expected):
-        (ExpectedFailuresTest.test_unexpected_failures_observed):
-        (ExpectedFailuresTest.test_unexpected_failures_observed_when_tree_is_hosed):
-        * Scripts/webkitpy/tool/bot/patchanalysistask.py:
-        (PatchAnalysisTask._test):
-        (PatchAnalysisTask._build_and_test_without_patch):
-        (PatchAnalysisTask._test_patch):
-
-2012-07-27  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt][WK2] REGRESSION(r119127): resetting window.internals settings between tests doesn't work properly
-        https://bugs.webkit.org/show_bug.cgi?id=88064
-
-        Reviewed by Zoltan Herczeg.
-
-        Use resetInternalsObject() instead of injectInternalsObject().
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::resetAfterTest):
-
-2012-07-26  Ryuan Choi  <ryuan.choi@samsung.com>
-
-        [EFL] Remove forwarding headers from MiniBrowser/Efl.
-        https://bugs.webkit.org/show_bug.cgi?id=91627
-
-        Reviewed by Kentaro Hara.
-
-        * MiniBrowser/efl/CMakeLists.txt: Remove unnecessary forwarding headers.
-
-2012-07-26  Yoshifumi Inoue  <yosin@chromium.org>
-
-        [Forms] Introduce runtime feature flags for input type datetime, datetimelocal, month, time, week
-        https://bugs.webkit.org/show_bug.cgi?id=92339
-
-        Reviewed by Kent Tamura.
-
-        This patch enables runtime features for input type datetime, datetime-local,
-        month, time and week for Chromium DRT.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell): Call enableInputType{DateTime,DateTimeLocal,Month,Time,Week}.
-
-2012-07-26  Jeffrey Pfau  <jpfau@apple.com>
-
-        Reloading substitute-data/alternate html string for unreachableURL will add an item to the back-forward-history for each reload
-        https://bugs.webkit.org/show_bug.cgi?id=84041
-
-        Reviewed by Brady Eidson.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/mac/BackForwardList.mm: Added.
-        (-[BackForwardListTest webView:didFinishLoadForFrame:]):
-        (-[BackForwardListTest webView:didFailProvisionalLoadWithError:forFrame:]):
-        (TestWebKitAPI):
-        (TestWebKitAPI::TEST):
-
-2012-07-26  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r123799.
-        http://trac.webkit.org/changeset/123799
-        https://bugs.webkit.org/show_bug.cgi?id=92431
-
-        broke the Apple Mac build (Requested by bweinstein on
-        #webkit).
-
-        * DumpRenderTree/chromium/TestWebPlugin.cpp:
-        * DumpRenderTree/chromium/TestWebPlugin.h:
-        (TestWebPlugin::acceptsInputEvents):
-        (TestWebPlugin::handleInputEvent):
-
-2012-07-26  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: pass --verbose twice on the bots to ensure getting the debug output for now
-        https://bugs.webkit.org/show_bug.cgi?id=92172
-
-        Reviewed by Tony Chang.
-
-        Right now new-run-webkit-tests --verbose prints out too much
-        information (it's like --verbose + debugging). I plan to fix
-        this in bug 88702, and also clean up and simplify all of the
-        --print options, but in preparation for these changes I need to
-        pass --verbose twice to get the same level of output
-        temporarily (for compatibility).
-
-        * Scripts/run-webkit-tests:
-
-2012-07-26  Sadrul Habib Chowdhury  <sadrul@chromium.org>
-
-        Propagate gesture events to plugins.
-        https://bugs.webkit.org/show_bug.cgi?id=92281
-
-        Reviewed by Adam Barth.
-
-        Update TestWebPlugin to receive events, and output logs for the events.
-
-        * DumpRenderTree/chromium/TestWebPlugin.cpp:
-        (TestWebPlugin::handleInputEvent):
-        * DumpRenderTree/chromium/TestWebPlugin.h:
-        (TestWebPlugin::acceptsInputEvents):
-        (TestWebPlugin):
-
-2012-07-26  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [nrwt] get rid of --skip-pixel-test-if-no-baseline
-        https://bugs.webkit.org/show_bug.cgi?id=92377
-
-        Reviewed by Adam Barth.
-
-        Remove the option and all code paths that handled it.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.should_run_as_pixel_test):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (_set_up_derived_options):
-        (parse_args):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_repeat_each):
-
-2012-07-26  Olivier Blin  <olivier.blin@softathome.com>
-
-        Add FastMalloc statistics in window.internals
-        https://bugs.webkit.org/show_bug.cgi?id=91274
-
-        Reviewed by Ryosuke Niwa.
-
-        * GNUmakefile.am:
-
-2012-07-26  Olivier Blin  <olivier.blin@softathome.com>
-
-        Add FastMalloc statistics in window.internals
-        https://bugs.webkit.org/show_bug.cgi?id=91274
-
-        Reviewed by Ryosuke Niwa.
-
-        * GNUmakefile.am:
-
-2012-07-20  Holger Hans Peter Freyther  <holger@moiji-mobile.com>
-
-        buildbot: Remove the configuration of hfreyther*
-        https://bugs.webkit.org/show_bug.cgi?id=91849
-
-        Reviewed by Adam Roben.
-
-        The machine running these configs was decommissioned and
-        there is no replacement at this point. Remove them from the
-        configuration.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Remove hfreyther* from
-        the config. The Qt Linux SH4 and Qt Linux MIPS schedulers are orphaned, remove
-        them too.
-
-2012-07-26  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Unreviewed speculative Mac buildfix after r123729 - 2nd attempt.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::runTest):
-
-2012-07-26  Balazs Kelemen  <kbalazs@webkit.org>
-
-        Unreviewed speculative buildfix after r123729.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::runTest): Fix sign errors.
-
-2012-07-26  Zoltan Nyul  <zoltan.nyul@intel.com>
-
-        [EFL] EFL port should use XDG paths
-        https://bugs.webkit.org/show_bug.cgi?id=91719
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        The appcache/localstorage/webdatabase path should be set in the
-        ewk_main.cpp instead of the DumpRenderTree, and the XDG_DATA_HOME and
-        XDG_CACHE_HOME should be set to different directory for each processes
-        for the layout-tests.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::initialize):
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort.setup_environ_for_server):
-        * efl/jhbuild.modules:
-
-2012-07-26  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [NRWT] should have a way to restrict pixel tests for individual directories
-        https://bugs.webkit.org/show_bug.cgi?id=91754
-
-        Reviewed by Dirk Pranke.
-
-        Added --pixel-test-directories option to nrwt. It implies --pixel-tests.
-        If the platform supports this option only tests from these directories will
-        be executed as pixel tests. Furthermore, platforms can have a default set of
-        pixel test directories. To support the feature the test harness have to be
-        able to inform the driver whether to dump pixels for each tests. For this
-        purpose I changed WTR and the Qt DRT to handle a --pixel-test argument from
-        the standard output and made NRWT use this argument with these drivers.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::DumpRenderTree):
-        (WebCore::DumpRenderTree::open):
-        (WebCore::DumpRenderTree::processLine):
-        (WebCore::DumpRenderTree::setDumpPixelsForAllTests):
-        (WebCore::DumpRenderTree::dump):
-        * DumpRenderTree/qt/DumpRenderTreeQt.h:
-        (DumpRenderTree):
-        * DumpRenderTree/qt/main.cpp:
-        (main):
-        Handle the --pixel-test argument.
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner._should_fetch_expected_checksum):
-        (SingleTestRunner._overwrite_baselines):
-        (SingleTestRunner._compare_output):
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        (Worker._update_test_input):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.supports_switching_pixel_tests_per_test): Ports can override this to inform
-        the harness that --pixel-test argument is supported. True for WTR, otherwise calls
-        private version that can be overridden by the actual platform. Only true with WTR
-        and Qt DRT currently. This supposed to exist only temporary until there are ports
-        that doesn't support the feature in their DRT's.
-        (Port):
-        (Port._supports_switching_pixel_tests_per_test):
-        (Port.should_run_as_pixel_test):
-        (Port._should_run_as_pixel_test): Ports can override this to define their
-        default set of pixel tests directories.
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.cmd_line): Don't pass --pixel-tests if the platform supports per test
-        --pixel-test.
-        (Driver._command_from_driver_input): Pass --pixel-test if it is supported and pixel
-        tests are enabled.
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort.check_sys_deps):
-        (QtPort):
-        (QtPort._supports_switching_pixel_tests_per_test):
-        (QtPort._should_run_as_pixel_test):
-        (QtPort._default_pixel_test_directories): Only compositing will be our default pixel
-        test directory for the time being.
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort.supports_switching_pixel_tests_per_test):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (_set_up_derived_options):
-        (parse_args):
-        Handle the --pixel-test-directory option. It expect a directory below LayoutTests
-        and can be specified multiple times. Added fixme's that we should improve how we
-        handle these arguments.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_run_singly_actually_runs_tests):
-        (MainTest.test_pixel_test_directories):
-        Added an integration test for the feature.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::TestController):
-        (WTR::TestController::initialize):
-        (WTR::TestController::runTest):
-        * WebKitTestRunner/TestController.h:
-        (TestController):
-        Handle the --pixel-test argument.
-
-2012-07-26  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Regression(r123604): webintents/web-intents-obj-constructor.html is crashing
-        https://bugs.webkit.org/show_bug.cgi?id=92349
-
-        Reviewed by Kentaro Hara.
-
-        Fix crash occurring after r123604, which replaced strdup()
-        usage with eina_stringshare_add(). Unfortunately, the DRT
-        was not updated accordingly to use eina_stringshare_del()
-        instead of free() on the values returned by Ewk_Intent
-        getters and it was causing
-        webintents/web-intents-obj-constructor.html to crash.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::onFrameIntentNew):
-
-2012-07-26  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed attempt to fix the chromium-win build.
-
-        * DumpRenderTree/chromium/TestRunner/TestRunner.cpp:
-
-2012-07-26  Kaustubh Atrawalkar  <kaustubh@motorola.com>
-
-        [DRT] LTC:: pageNumberForElementById() could be moved to Internals
-        https://bugs.webkit.org/show_bug.cgi?id=92091
-
-        Reviewed by Adam Barth.
-
-        Move the pageNumberForElementById from LayoutTestCotroller to Internals and
-        remove the old platform specific implementations as it exclusively tests WebCore functionality.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setPrinting):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (LayoutTestController):
-
-2012-07-25  Adam Barth  <abarth@webkit.org>
-
-        TestRunner.a should contain a TestRunner object
-        https://bugs.webkit.org/show_bug.cgi?id=92313
-
-        Reviewed by Kent Tamura.
-
-        This patch adds a stub implementation of TestRunner, which is the new
-        home for our implementation of window.testRunner. A future patch will
-        migrate functions from LayoutTestController to TestRunner.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        * DumpRenderTree/chromium/TestRunner/TestRunner.cpp: Added.
-        * DumpRenderTree/chromium/TestRunner/TestRunner.h: Added.
-
-2012-07-25  Wei James  <james.wei@intel.com>
-
-        [Chromium] Fix infinite loop issue for chromium android layout test
-        https://bugs.webkit.org/show_bug.cgi?id=92197
-
-        Reviewed by Adam Barth.
-
-        The change brought in by r123530 will cause infinite loop when running
-        Chromium Android Layout Test.
-        Revert the change for this line only.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort._build_path):
-
-2012-07-25  Adam Barth  <abarth@webkit.org>
-
-        Jochen is our a newest reviewer!
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-07-25  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] don't use webkit_support methods directly from test runners but through the test delegate
-        https://bugs.webkit.org/show_bug.cgi?id=92256
-
-        Reviewed by Adam Barth.
-
-        This will allow for the content_shell to provide its own implementation
-        for setting the Gamepad data instead.
-
-        * DumpRenderTree/chromium/TestRunner/GamepadController.cpp:
-        (GamepadController::setDelegate):
-        (GamepadController::reset):
-        (GamepadController::connect):
-        (GamepadController::disconnect):
-        (GamepadController::setId):
-        (GamepadController::setButtonCount):
-        (GamepadController::setButtonData):
-        (GamepadController::setAxisCount):
-        (GamepadController::setAxisData):
-        * DumpRenderTree/chromium/TestRunner/GamepadController.h:
-        (GamepadController):
-        * DumpRenderTree/chromium/TestRunner/TestDelegate.h:
-        (WebKit):
-        (TestDelegate):
-        * DumpRenderTree/chromium/TestRunner/TestInterfaces.cpp:
-        (TestInterfaces::Internal):
-        (TestInterfaces::Internal::~Internal):
-        (TestInterfaces::Internal::setDelegate):
-        (TestInterfaces::setDelegate):
-        * DumpRenderTree/chromium/TestRunner/TestInterfaces.h:
-        (TestInterfaces):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::createMainWindow):
-        (TestShell::~TestShell):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::setGamepadData):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-07-25  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2][WTR] LayoutTestController.sendWebIntentResponse() needs to be implemented
-        https://bugs.webkit.org/show_bug.cgi?id=92227
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Implement LayoutTestController.sendWebIntentResponse() so
-        that a test case can reply to a Web intent request and
-        test this functionality.
-
-        In order to support this functionality, we need to keep
-        a pointer to the current intent request in
-        InjectedBundlePage::didReceiveIntentForFrame() so that
-        we can reuse it later in
-        LayoutTestController::sendWebIntentResponse().
-
-        The following tests need this functionality:
-        - webintents/web-intents-failure.html
-        - webintents/web-intents-reply.html
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::didReceiveIntentForFrame):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-        (InjectedBundlePage):
-        (WTR::InjectedBundlePage::currentIntentRequest):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::sendWebIntentResponse):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (LayoutTestController):
-
-2012-07-25  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL][WK2][WTR] Alt, Shift and Ctrl keys are not handled by EventSenderProxy.
-        https://bugs.webkit.org/show_bug.cgi?id=92241
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Alt, Shift and Ctrl keys were not handled by EventSenderProxy.
-        It caused failure of fast/events/keydown-leftright-keys.html test.
-
-        * WebKitTestRunner/efl/EventSenderProxyEfl.cpp: Added handling of Alt, Shift and Ctrl keys.
-        (WTR::keyName):
-
-2012-07-25  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][WK2] Fix timeout issues when debugging WebProcess.
-        https://bugs.webkit.org/show_bug.cgi?id=92245
-
-        Reviewed by Dirk Pranke.
-
-        Fix timeout issues when debugging the WebProcess
-        under valgrind or gdb.
-
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort.default_timeout_ms):
-        * WebKitTestRunner/efl/TestControllerEfl.cpp:
-        (WTR::TestController::platformInitialize):
-
-2012-07-25  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] NRWT driver should not restart between reftests
-        https://bugs.webkit.org/show_bug.cgi?id=92267
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidDriver.start): Resets self._pixel_tests when the pixel_tests parameter changes.
-
-2012-07-25  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: Update MediaStreamTrack to match the specification
-        https://bugs.webkit.org/show_bug.cgi?id=90180
-
-        Reviewed by Adam Barth.
-
-        Adding a Mock WebMediaStreamCenter to enable better LayoutTests.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/MockWebKitPlatformSupport.cpp:
-        (MockWebKitPlatformSupport::createMediaStreamCenter):
-        * DumpRenderTree/chromium/MockWebMediaStreamCenter.cpp: Added.
-        (WebKit):
-        (WebKit::MockWebMediaStreamCenter::MockWebMediaStreamCenter):
-        (WebKit::MockWebMediaStreamCenter::queryMediaStreamSources):
-        (WebKit::MockWebMediaStreamCenter::didEnableMediaStreamTrack):
-        (WebKit::MockWebMediaStreamCenter::didDisableMediaStreamTrack):
-        (WebKit::MockWebMediaStreamCenter::didStopLocalMediaStream):
-        (WebKit::MockWebMediaStreamCenter::didCreateMediaStream):
-        (WebKit::MockWebMediaStreamCenter::constructSDP):
-        * DumpRenderTree/chromium/MockWebMediaStreamCenter.h: Copied from Tools/DumpRenderTree/chromium/MockWebKitPlatformSupport.cpp.
-        (WebKit):
-        (MockWebMediaStreamCenter):
-        (WebKit::MockWebMediaStreamCenter::MockWebMediaStreamCenter):
-
-2012-07-25  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
-
-        [NRWT] Rename baseline_search_path() to default_baseline_search_path()
-        https://bugs.webkit.org/show_bug.cgi?id=92122
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.baseline_version_dir):
-        (Port.baseline_search_path):
-        (Port):
-        (Port.default_baseline_search_path):
-        (Port.expected_baselines):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_additional_platform_directory):
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.default_baseline_search_path):
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort.default_baseline_search_path):
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        (WinPort.default_baseline_search_path):
-
-2012-07-25  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        [EFL] Use eina_stringshare_add instead of strdup.
-        https://bugs.webkit.org/show_bug.cgi?id=92072
-
-        Reviewed by Kentaro Hara.
-
-        Eina of EFL libraries supports a string functionality that replaces strdup. So, EFL port needs
-        to replace strdup with eina_stringshare_add function.
-
-        DumpRenderTree also needs to be modified according to ewk APIs's parameter change.
-
-        * DumpRenderTree/efl/DumpRenderTree.cpp:
-        (dumpFramesAsText):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::onFrameIntentNew):
-        * DumpRenderTree/efl/DumpRenderTreeView.cpp:
-        (onJavaScriptPrompt):
-
-2012-07-25  Alexander Shalamov  <alexander.shalamov@intel.com>
-
-        [WTR][EFL] Wheel events are not emitted
-        https://bugs.webkit.org/show_bug.cgi?id=92094
-
-        Reviewed by Csaba Osztrogonác.
-
-        Wheel events are not emitted, therefore, layout tests that use mouseScrollBy method are failing.
-
-        * WebKitTestRunner/efl/EventSenderProxyEfl.cpp:
-        (WTR::dispatchMouseScrollByEvent):
-        (WTR::EventSenderProxy::mouseScrollBy):
-        * WebKitTestRunner/efl/PlatformWebViewEfl.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-        (WTR::PlatformWebView::focus):
-
-2012-07-25  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL][WK2] Add ewk_main.{cpp,h} to EFL WK2
-        https://bugs.webkit.org/show_bug.cgi?id=92101
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Added a centralized place for general initialization in UI process for EFL WK2.
-
-        * MiniBrowser/efl/main.c: Added using of newly added ewk_init() and ewk_shutdown() functions.
-        (main):
-        * WebKitTestRunner/efl/main.cpp: Ditto.
-        (main):
-
-2012-07-24  Benjamin Poulain  <bpoulain@apple.com> && Joseph Pecoraro  <pecoraro@apple.com>
-
-        QualifiedName's HashSet should be big enough to hold at least all the static names
-        https://bugs.webkit.org/show_bug.cgi?id=91891
-
-        Reviewed by Darin Adler.
-
-        Add a test for WTF::hashTableCapacityForSize.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/WTF/HashSet.cpp: Added.
-        (InitialCapacityTestHashTraits):
-        (TestWebKitAPI::testInitialCapacity):
-        (TestWebKitAPI::generateTestCapacityUpToSize):
-        (TestWebKitAPI::TEST):
-
-2012-07-24  Adam Barth  <abarth@webkit.org>
-
-        The EWS bots get flaky when we hit the failure limit
-        https://bugs.webkit.org/show_bug.cgi?id=92212
-
-        Reviewed by Eric Seidel.
-
-        Previously we were missing some failure types, which means we didn't
-        notice that the bots were hitting the failure limit.
-
-        * Scripts/webkitpy/common/net/layouttestresults.py:
-        (LayoutTestResults.failing_test_results):
-        * Scripts/webkitpy/common/net/layouttestresults_unittest.py:
-        (LayoutTestResultsTest.test_results_from_string):
-        (LayoutTestResultsTest.test_tests_matching_failure_types):
-
-2012-07-24  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        [EFL] Unreviewed build fix.
-
-        * WebKitTestRunner/efl/EventSenderProxyEfl.cpp: Include unistd.h
-        for usleep(3).
-
-2012-07-24  Dirk Pranke  <dpranke@chromium.org>
-
-        make test-webkitpy at least kinda work in parallel on win32
-        https://bugs.webkit.org/show_bug.cgi?id=91700
-
-        Reviewed by Adam Barth.
-
-        This change makes the hoop-jumping we have to do to make running
-        new-run-webkit-tests in parallel on win32 generic so that we can
-        re-use it for test-webkitpy as well.
-
-        * Scripts/new-run-webkit-tests:
-        * Scripts/test-webkitpy:
-        * Scripts/webkitpy/common/multiprocessing_bootstrap.py: Copied from Tools/Scripts/new-run-webkit-tests.
-        (run):
-        * Scripts/webkitpy/test/main.py:
-        (main):
-        (Tester._log_exception):
-
-2012-07-24  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r123499.
-        http://trac.webkit.org/changeset/123499
-        https://bugs.webkit.org/show_bug.cgi?id=92161
-
-        Android fails to compile (Requested by zhenyao on #webkit).
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/MockWebKitPlatformSupport.cpp:
-        (MockWebKitPlatformSupport::createMediaStreamCenter):
-        * DumpRenderTree/chromium/MockWebKitPlatformSupport.h:
-        (MockWebKitPlatformSupport):
-        * DumpRenderTree/chromium/MockWebMediaStreamCenter.cpp: Removed.
-        * DumpRenderTree/chromium/MockWebMediaStreamCenter.h: Removed.
-
-2012-07-24  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: never finds binaries in the 'out' dir on chromium win
-        https://bugs.webkit.org/show_bug.cgi?id=91890
-
-        Reviewed by Tony Chang.
-
-        Attempt to fix this bug yet again; it turns out that --root and
-        --build-directory don't have the same meaning (--root should
-        include the configuration, --build-directory should not).
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port._build_path):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort._static_build_path):
-        (ChromiumPort.default_results_directory):
-        (ChromiumPort._build_path):
-        (ChromiumPort):
-        (ChromiumPort._build_path_with_configuration):
-        (ChromiumPort._build_path_with_configuration.does):
-        (ChromiumPort._path_to_image_diff):
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort._build_path):
-        (ChromiumAndroidPort):
-        (ChromiumAndroidPort._build_path_with_configuration):
-        (ChromiumAndroidPort._path_to_driver):
-        (ChromiumAndroidPort._path_to_forwarder):
-        (ChromiumAndroidPort._push_executable):
-        (ChromiumAndroidPort._push_fonts):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        (ChromiumLinuxPort._determine_driver_path_statically):
-        (ChromiumLinuxPort._modules_to_search_for_symbols):
-        (ChromiumLinuxPort._path_to_driver):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux_unittest.py:
-        (ChromiumLinuxPortTest.test_build_path):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        (ChromiumMacPort._modules_to_search_for_symbols):
-        (ChromiumMacPort._path_to_driver):
-        (ChromiumMacPort._path_to_helper):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        (ChromiumMacPortTest.test_build_path):
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        (ChromiumWinPort._path_to_driver):
-        (ChromiumWinPort._path_to_helper):
-        (ChromiumWinPort._path_to_image_diff):
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        (ChromiumWinTest.test_build_path):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-
-2012-07-24  Peter Beverloo  <peter@chromium.org>
-
-        Android-chromium layout tests failing with GPU related crash
-        https://bugs.webkit.org/show_bug.cgi?id=92126
-
-        Reviewed by Adam Barth.
-
-        Remove support for the "--enable-hardware-gpu" flag from run_webkit_tests,
-        as it's not being used by any port anymore, and neither is being passed
-        on to the test runner. Instead, append the flag directly to DRT for the
-        Chromium Android port, which does rely on this functionality.
-
-        The ChromiumAndroidUnitTest tests didn't catch this as the property was
-        set to True, but it's unable to detect whether they'll actually be used.
-        No occurrances of "--enable-hardware-gpu" exist in either Tools/Scripts/
-        or Tools/BuildSlaveSupport/, so nothing upstream seems to rely on the flag.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:
-        (ChromiumAndroidPortTest.test_attributes):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-
-2012-07-24  Alexander Shalamov  <alexander.shalamov@intel.com>
-
-        [WTR][EFL] Multiple mouse clicks are not emitted in EventSenderProxyEfl
-        https://bugs.webkit.org/show_bug.cgi?id=92107
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Fixes mouse click events in EventSenderProxyEfl.
-
-        * WebKitTestRunner/efl/EventSenderProxyEfl.cpp:
-        (WTR::dispatchMouseDownEvent):
-        (WTR::EventSenderProxy::dispatchEvent):
-
-2012-07-24  Tommy Widenflycht  <tommyw@google.com>
-
-        MediaStream API: Update MediaStreamTrack to match the specification
-        https://bugs.webkit.org/show_bug.cgi?id=90180
-
-        Reviewed by Adam Barth.
-
-        Adding a Mock WebMediaStreamCenter to enable better LayoutTests.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/MockWebKitPlatformSupport.cpp:
-        (MockWebKitPlatformSupport::createMediaStreamCenter):
-        * DumpRenderTree/chromium/MockWebMediaStreamCenter.cpp: Added.
-        (WebKit):
-        (WebKit::MockWebMediaStreamCenter::MockWebMediaStreamCenter):
-        (WebKit::MockWebMediaStreamCenter::queryMediaStreamSources):
-        (WebKit::MockWebMediaStreamCenter::didEnableMediaStreamTrack):
-        (WebKit::MockWebMediaStreamCenter::didDisableMediaStreamTrack):
-        (WebKit::MockWebMediaStreamCenter::didStopLocalMediaStream):
-        (WebKit::MockWebMediaStreamCenter::didCreateMediaStream):
-        (WebKit::MockWebMediaStreamCenter::constructSDP):
-        * DumpRenderTree/chromium/MockWebMediaStreamCenter.h: Copied from Tools/DumpRenderTree/chromium/MockWebKitPlatformSupport.cpp.
-        (WebKit):
-        (MockWebMediaStreamCenter):
-        (WebKit::MockWebMediaStreamCenter::MockWebMediaStreamCenter):
-
-2012-07-23  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Fix regressions in replay performance tests
-        https://bugs.webkit.org/show_bug.cgi?id=92052
-
-        Reviewed by Dirk Pranke.
-
-        Fix regression that accumulated over time to make replay tests work again.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::willSendRequest): Use the main document URL in the request since the main frame's
-        URL hadn't been updated yet When requesting a new URL on the main frame.
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (ReplayServer.wait_until_ready): Waiting for 6 seconds (3 tries) seems enough.
-        (ReplayPerfTest.prepare): Pass self._archive_path to run_signle as that is the current contract.
-        (ReplayPerfTest.run_single): Use the archive path to generate -expected.png path.
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py:
-        (TestReplayPerfTest.test_run_single):
-        (TestReplayPerfTest.test_prepare):
-        (TestReplayPerfTest.test_prepare_calls_run_single.run_single):
-        (TestReplayPerfTest):
-
-2012-07-24  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] MSVC: unresolved external symbol __DllMainCRTStartup@12
-        https://bugs.webkit.org/show_bug.cgi?id=91229
-
-        Reviewed by Jocelyn Turcotte.
-
-        In order to successfully link a DLL on Windows we need to have at least
-        one object file (or compilation unit). The forward export header files were
-        supposed to be that, but unfortunately the rule in win32/default_post.prf for
-        creating the header files had some bugs, among others that it did an exists()
-        check on the depending static library. At the time qmake is ran those libraries
-        do not exist yet and therefore the corresponding extra compiler rules were never
-        created, resulting in empty OBJECTS/SOURCES.
-
-        Even without such an exists() check, qmake extra compilers require the files
-        referred to in the .input variable to exist at qmake time. In this case the input
-        files were the static libraries, which do not exist yet.
-
-        This patch solves this by using a qmake extra target instead of extra
-        compiler, which does not have this limitation. The target is referenced
-        through the extension of GENERATED_SOURCES.
-
-        The patch also adds a d/_debug suffix for debug builds, do allow for separate
-        symbol exports if necessary.
-
-        * Scripts/generate-win32-export-forwards: Support multiple input files, i.e.
-        consider the last argument to be the output file and everything else input.
-        * qmake/mkspecs/features/win32/default_post.prf:
-
-2012-07-24  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt] Add quirks for running the web process in a profiler shell, like valgrind
-        https://bugs.webkit.org/show_bug.cgi?id=87672
-
-        Reviewed by Jocelyn Turcotte.
-
-        Add --no-timeout-at-all command line switch to not time out no matter how
-        long the web process does it's job. --no-timeout is not enough for profiling
-        purposes because it only affects the timeout when we are waiting for the end
-        of the test. We use another timeout to control how much we wait for the web
-        process to initialize before and reset after the test and it could also easily
-        expire when running under valgrind. We should keep the behavior of --no-timeout
-        to not disable this timout check because --no-timeout is used by performace tests
-        and those should not wait for the web process to initialize and reset more than
-        normal tests.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::TestController):
-        (WTR::TestController::initialize):
-        (WTR::TestController::runUntil):
-        * WebKitTestRunner/TestController.h:
-
-2012-07-24  Peter Beverloo  <peter@chromium.org>
-
-        [Chromium] Fix a class/struct mismatch error in TestDelegate.h (showing up on clang)
-        https://bugs.webkit.org/show_bug.cgi?id=92097
-
-        Unreviewed build fix.
-
-        WebContextMenuData is declared as a struct in Source/WebKit/chromium/public/WebContextMenuData.h,
-        but TestDelegate.h forward declares it as a class.
-
-        * DumpRenderTree/chromium/TestRunner/TestDelegate.h:
-        (WebKit):
-
-2012-07-23  Oswald Buddenhagen  <oswald.buddenhagen@nokia.com>
-
-        [Qt] Fix compilation against namespaced Qt
-
-        Reviewed by Simon Hausmann.
-
-        * QtTestBrowser/launcherwindow.h:
-        * WebKitTestRunner/PlatformWebView.h:
-
-2012-07-24  Peter Beverloo  <peter@chromium.org>
-
-        Update a few Chromium Android contributors in committers.py
-        https://bugs.webkit.org/show_bug.cgi?id=92090
-
-        Reviewed by Kent Tamura.
-
-        Add Sami Kyostila, who has been doing significant work on Chromium's
-        compositor. Add IRC nicknames for John Mellor and Tien-Ren Chen, and
-        remove John Grabowski who changed projects, and add my webkit.org alias.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-07-24  Pierre Rossi  <pierre.rossi@gmail.com>
-
-        [Qt] Enable touch slider when touch events are enabled
-        https://bugs.webkit.org/show_bug.cgi?id=91013
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        TOUCH_SLIDER guards are used in WebCore, so we should really
-        be setting the corresponding ENABLE define in features.prf.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-07-24  Ryuan Choi  <ryuan.choi@samsung.com>
-
-        [EFL] EWebLauncher should not require config.h in the style check
-        https://bugs.webkit.org/show_bug.cgi?id=92070
-
-        Reviewed by Kentaro Hara.
-
-        * Scripts/webkitpy/style/checker.py:
-        Remove the include rules from the style-check for EWebLauncher because
-        EWebLauncher is simple EFL application.
-
-2012-07-24  Jochen Eisinger  <jochen@chromium.or>
-
-        [Chromium] EventSender shouldn't know about TestShell
-        https://bugs.webkit.org/show_bug.cgi?id=91449
-
-        Reviewed by Adam Barth.
-
-        Original patch by Adam Barth.
-
-        This patch removes the dependency from EventSender to TestShell.  Most
-        of EventSender works directly with a WebView, but there are a handful
-        of references to WebViewHost.  We don't want to re-use WebViewHost in
-        ContentShell because we want to use the multi-process embedding
-        environment for WebViews.
-
-        To avoid the dependency on WebViewHost, this patch introduces
-        TestDelegate, which is an abstract base class for WebViewHost.  In
-        ContentShell, we'll need another object to implement these functions.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::EventSender):
-        (EventSender::keyDown):
-        (makeMenuItemStringsFor):
-        (EventSender::contextClick):
-        * DumpRenderTree/chromium/EventSender.h:
-        (EventSender):
-        (EventSender::setDelegate):
-        (EventSender::setWebView):
-        (EventSender::webview):
-        * DumpRenderTree/chromium/TestRunner/TestDelegate.h: Added.
-        (WebKit):
-        (TestDelegate):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::initialize):
-        (TestShell::createMainWindow):
-        (TestShell::~TestShell):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::fillSpellingSuggestionList):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-07-24  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        Make WebIntents and WebIntentsTag a build option for the build-webkit script
-        https://bugs.webkit.org/show_bug.cgi?id=91841
-
-        Reviewed by Philippe Normand.
-
-        And it will also be disabled when building with --minimal.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-07-23  Dirk Pranke  <dpranke@chromium.org>
-
-        Unreviewed, rolling out r123360.
-        http://trac.webkit.org/changeset/123360
-        https://bugs.webkit.org/show_bug.cgi?id=91890
-
-        broke the chromium bots
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort._static_build_path):
-        (ChromiumPort.default_results_directory):
-        (ChromiumPort._build_path):
-        (ChromiumPort._path_to_image_diff):
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort._build_path):
-        (ChromiumAndroidPort._path_to_driver):
-        (ChromiumAndroidPort._path_to_forwarder):
-        (ChromiumAndroidPort._push_executable):
-        (ChromiumAndroidPort._push_fonts):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        (ChromiumLinuxPort._determine_driver_path_statically):
-        (ChromiumLinuxPort._modules_to_search_for_symbols):
-        (ChromiumLinuxPort._path_to_driver):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux_unittest.py:
-        (ChromiumLinuxPortTest.test_build_path):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        (ChromiumMacPort._modules_to_search_for_symbols):
-        (ChromiumMacPort._path_to_driver):
-        (ChromiumMacPort._path_to_helper):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        (ChromiumMacPortTest.test_build_path):
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        (ChromiumWinPort._path_to_driver):
-        (ChromiumWinPort._path_to_helper):
-        (ChromiumWinPort._path_to_image_diff):
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        (ChromiumWinTest.test_build_path):
-
-2012-07-23  Adam Barth  <abarth@webkit.org>
-
-        [Chromium] TestInterfaces should be responsible for owning and binding AccessibilityController and TextInputController
-        https://bugs.webkit.org/show_bug.cgi?id=91459
-
-        Reviewed by Ryosuke Niwa.
-
-        Rather than having TestShell own and bind each of these JavaScript APIs
-        individually, TestShell should delegate that work to TestInterfaces.
-        This patch moves AccessibilityController and TextInputController to be
-        the responsibility of TestInterfaces.
-
-        * DumpRenderTree/chromium/TestRunner/TestInterfaces.cpp:
-        (TestInterfaces::TestInterfaces):
-        (TestInterfaces::~TestInterfaces):
-        (TestInterfaces::setWebView):
-        (TestInterfaces::bindTo):
-        (TestInterfaces::resetAll):
-        * DumpRenderTree/chromium/TestRunner/TestInterfaces.h:
-        (WebKit):
-        (TestInterfaces):
-        (TestInterfaces::accessibilityController):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::initialize):
-        (TestShell::createMainWindow):
-        (TestShell::~TestShell):
-        (TestShell::resetTestController):
-        (TestShell::bindJSObjectsToWindow):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::accessibilityController):
-        (TestShell):
-
-2012-07-23  Balazs Kelemen  <kbalazs@webkit.org>
-
-        nrwt swallows early exceptions
-        https://bugs.webkit.org/show_bug.cgi?id=91884
-
-        Reviewed by Dirk Pranke.
-
-        Put everything in a try block so we won't miss any error.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (run):
-        (main):
-
-2012-07-23  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2] WebKitTestRunner needs to print information about Web intents
-        https://bugs.webkit.org/show_bug.cgi?id=90873
-
-        Reviewed by Anders Carlsson.
-
-        Print out information about new intents requests and intent
-        services registrations in WebKitTestRunner. This is expected
-        by tests under webintents/*.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::InjectedBundlePage):
-        (WTR::InjectedBundlePage::didReceiveIntentForFrame):
-        (WTR):
-        (WTR::InjectedBundlePage::registerIntentServiceForFrame):
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-        (InjectedBundlePage):
-
-2012-07-23  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: never finds binaries in the 'out' dir on chromium win
-        https://bugs.webkit.org/show_bug.cgi?id=91890
-
-        Reviewed by Tony Chang.
-
-        We were figuring out which directory look in for binaries by
-        testing for the base directory (the directory above
-        Debug/Release). In chromium-win's case, we look in src/build,
-        which always exists because there are checked-in files in it,
-        which means we'd always pick that directory over src/out. All of
-        the other ports' build_path() implementation was including
-        Debug/Release. If we matched that, we wouldn't have a problem,
-        so this change fixes that and updates all of the callers of the
-        chromium ports' implementation to not pass configuration as part
-        of the path to look up; we still need to pass configuration in
-        some cases (to test if the build is out of date between debug
-        and release) so the implementation gets slightly more
-        complicated.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort._static_build_path):
-        (ChromiumPort.default_results_directory):
-        (ChromiumPort._build_path):
-        (ChromiumPort._path_to_image_diff):
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort._build_path):
-        (ChromiumAndroidPort._path_to_driver):
-        (ChromiumAndroidPort._path_to_forwarder):
-        (ChromiumAndroidPort._push_executable):
-        (ChromiumAndroidPort._push_fonts):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        (ChromiumLinuxPort._determine_driver_path_statically):
-        (ChromiumLinuxPort._modules_to_search_for_symbols):
-        (ChromiumLinuxPort._path_to_driver):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux_unittest.py:
-        (ChromiumLinuxPortTest.test_build_path):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        (ChromiumMacPort._modules_to_search_for_symbols):
-        (ChromiumMacPort._path_to_driver):
-        (ChromiumMacPort._path_to_helper):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        (ChromiumMacPortTest.test_build_path):
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        (ChromiumWinPort._path_to_driver):
-        (ChromiumWinPort._path_to_helper):
-        (ChromiumWinPort._path_to_image_diff):
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        (ChromiumWinTest.test_build_path):
-
-2012-07-23  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r123339.
-        http://trac.webkit.org/changeset/123339
-        https://bugs.webkit.org/show_bug.cgi?id=92006
-
-        massive media tests failure (Requested by philn on #webkit).
-
-        * Scripts/webkitdirs.pm:
-        (buildAutotoolsProject):
-        * gtk/jhbuild.modules:
-
-2012-07-23  Tommy Widenflycht  <tommyw@google.com>
-
-        [chromium] MediaStream API: Clean up the MockWebKitPlatformSupport object at shutdown
-        https://bugs.webkit.org/show_bug.cgi?id=91857
-
-        Reviewed by Adam Barth.
-
-        Made a few changes so that the destructor could be called at shutdown.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (WebKitSupportTestEnvironment::WebKitSupportTestEnvironment):
-        (WebKitSupportTestEnvironment):
-        * DumpRenderTree/chromium/MockWebKitPlatformSupport.cpp:
-        (MockWebKitPlatformSupport::create):
-        * DumpRenderTree/chromium/MockWebKitPlatformSupport.h:
-        (MockWebKitPlatformSupport):
-        (MockWebKitPlatformSupport::~MockWebKitPlatformSupport):
-
-2012-07-23  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK][jhbuild] Switch to GStreamer 0.11 build
-        https://bugs.webkit.org/show_bug.cgi?id=91727
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Switch build-webkit --gtk to GStreamer 0.11 support and build the
-        necessary GStreamer git modules from JHBuild.
-
-        * Scripts/webkitdirs.pm:
-        (buildAutotoolsProject): Build WebKit with GStreamer 0.11 support.
-        * gtk/jhbuild.modules: GStreamer build support.
-
-2012-07-23  Christophe Dumez  <christophe.dumez@intel.com>
-
-        WebKit2 needs layoutTestController.setAlwaysAcceptCookies
-        https://bugs.webkit.org/show_bug.cgi?id=42778
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add support for layoutTestController.setAlwaysAcceptCookies()
-        since it is required by some tests.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::setAlwaysAcceptCookies):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (LayoutTestController):
-
-2012-07-23  Kent Tamura  <tkent@chromium.org>
-
-        Rename ENABLE_METER_TAG and ENABLE_PROGRESS_TAG to ENABLE_METER_ELEMENT and ENABLE_PROGRESS_ELEMENT respectively
-        https://bugs.webkit.org/show_bug.cgi?id=91941
-
-        Reviewed by Kentaro Hara.
-
-        A flag name for an elmement should be ENABLE_*_ELEMENT.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2012-07-22  Kent Tamura  <tkent@chromium.org>
-
-        Rename ENABLE_DETAILS to ENABLE_DETAILS_ELEMENT
-        https://bugs.webkit.org/show_bug.cgi?id=91928
-
-        Reviewed by Kentaro Hara.
-
-        A flag name for an elmement should be ENABLE_*_ELEMENT.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2012-07-20  Kent Tamura  <tkent@chromium.org>
-
-        Rename ENABLE_DATALIST to ENABLE_DATALIST_ELEMENT
-        https://bugs.webkit.org/show_bug.cgi?id=91846
-
-        Reviewed by Kentaro Hara.
-
-        A flag name for an elmement should be ENABLE_*_ELEMENT.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2012-07-20  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] Store test pipes in /data/local/tmp
-        https://bugs.webkit.org/show_bug.cgi?id=91909
-
-        In the previous change (bug 91873, r123258) we placed the pipes in /sdcard/native_tests.
-        However after tests we found some devices don't allow the app to create pipes there.
-        So /data/local/tmp is a better place for the pipes.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-
-2012-07-20  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chomium-Android] Place DRT input/output pipes where both app and unrooted shell can read/write
-        https://bugs.webkit.org/show_bug.cgi?id=91873
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-
-2012-07-20  Han Shen  <shenhan@google.com>
-
-        [Chromium] Compilation fails under gcc 4.7
-        https://bugs.webkit.org/show_bug.cgi?id=90227
-
-        Reviewed by Tony Chang.
-
-        Disable warnings about c++0x compatibility in gcc newer than 4.6.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-07-20  Dirk Pranke  <dpranke@chromium.org>
-
-        REGRESSION: run-perf-tests --pause-before-testing is broken
-        https://bugs.webkit.org/show_bug.cgi?id=91789
-
-        Reviewed by Ryosuke Niwa.
-
-        Turns out start() wasn't actually starting things :(. Fixed, and
-        added tests.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:
-        (ChromiumAndroidDriverTest.test_read_prompt):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.__init__):
-        (Driver._start):
-        * Scripts/webkitpy/layout_tests/port/driver_unittest.py:
-        (DriverTest.test_read_block):
-        (DriverTest.test_read_binary_block):
-        (DriverTest.test_read_base64_block):
-        (DriverTest.test_stop_cleans_up_properly):
-        (DriverTest.test_two_starts_cleans_up_properly):
-        (DriverTest.test_start_actually_starts):
-        (MockServerProcess.__init__):
-        (MockServerProcess.start):
-
-2012-07-20  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] Don't include WebCore headers in TestInterfaces so it's safe to include from outside of WebCore
-        https://bugs.webkit.org/show_bug.cgi?id=91847
-
-        Reviewed by Adam Barth.
-
-        This allows for including the TestIntefaces.h from content shell
-        without introducing a dependency to WebCore/wtf
-
-        * DumpRenderTree/chromium/TestRunner/TestInterfaces.cpp:
-        (TestInterfaces::Internal):
-        (TestInterfaces::Internal::Internal):
-        (TestInterfaces::Internal::~Internal):
-        (TestInterfaces::Internal::bindTo):
-        (TestInterfaces::Internal::resetAll):
-        (TestInterfaces::TestInterfaces):
-        (TestInterfaces::~TestInterfaces):
-        (TestInterfaces::bindTo):
-        (TestInterfaces::resetAll):
-        * DumpRenderTree/chromium/TestRunner/TestInterfaces.h:
-        (TestInterfaces):
-
-2012-07-20  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
-
-        [Qt] Make WTR use the same color palette as DRT
-        https://bugs.webkit.org/show_bug.cgi?id=91870
-
-        Reviewed by Noam Rosenthal.
-
-        Make sure that WebKitTestRunner and DumpRenderTree use the same palette: the
-        standard from QWindowsStyle.
-
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-        (WTR::activateFonts): Moved code to platformInitialize since setting style is not
-        exactly font related.
-        * WebKitTestRunner/InjectedBundle/qt/InjectedBundleQt.cpp:
-        (WTR::InjectedBundle::platformInitialize): Force the usage of the style's
-        palette.  Because at this point QApplication was already instantiated, the
-        default palette was already initialized to be the system one, so we need to
-        explicitly set the palette to be the standard from style. This is not needed in
-        DRT because there we set the style before instantiating QApplication.
-
-2012-07-20  Tony Chang  <tony@chromium.org>
-
-        Baseline align text in the flakiness dashboard toolbar
-        https://bugs.webkit.org/show_bug.cgi?id=91784
-
-        Reviewed by Ojan Vafai.
-
-        Baseline align the flex items.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.css:
-        (.forms): Add box-align: baseline
-        (.forms > *): Use block display to force flex items rather than box.
-        (#tests-form): Add box-align: baseline
-        (#tests-form > *): Use block display to force flex items rather than box.
-
-2012-07-20  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r123220.
-        http://trac.webkit.org/changeset/123220
-        https://bugs.webkit.org/show_bug.cgi?id=91880
-
-        broke Debug build (Requested by philn on #webkit).
-
-        * Scripts/webkitdirs.pm:
-        (buildAutotoolsProject):
-        * gtk/jhbuild.modules:
-
-2012-07-20  Philippe Normand  <pnormand@igalia.com>
-
-        [GTK][jhbuild] Switch to GStreamer 0.11 build
-        https://bugs.webkit.org/show_bug.cgi?id=91727
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Switch build-webkit --gtk to GStreamer 0.11 support and build the
-        necessary GStreamer git modules from JHBuild.
-
-        * Scripts/webkitdirs.pm:
-        (buildAutotoolsProject): Build WebKit with GStreamer 0.11 support.
-        * gtk/jhbuild.modules: GStreamer build support.
-
-2012-07-20  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Proxy configuration should honor the no_proxy environment variable
-        https://bugs.webkit.org/show_bug.cgi?id=91747
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add ProxyResolverSoup to the list of classes that contain GObjects
-        in style checker script so that it does not complain about naming
-        convention issues that are mandated by GObject.
-
-        * Scripts/webkitpy/style/checker.py:
-
-2012-07-20  Zeno Albisser  <zeno@webkit.org>
-
-        [Qt][WK2] Add configure tests for Xrender and GLX.
-        https://bugs.webkit.org/show_bug.cgi?id=91845
-
-        GraphicsSurface on linux requires Xcomposite, Xrender
-        and GLX. If any of these requirements is not met,
-        we should disable GraphicsSurface.
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * qmake/config.tests/glx/glx.cpp: Added.
-        (main):
-        * qmake/config.tests/glx/glx.pro: Added.
-        * qmake/config.tests/libXrender/libXrender.cpp: Added.
-        (main):
-        * qmake/config.tests/libXrender/libXrender.pro: Added.
-        * qmake/configure.pri:
-        * qmake/mkspecs/features/features.prf:
-
-2012-07-20  Kangil Han  <kangil.han@samsung.com>
-
-        [EFL][WK2][WTR] Implement EventSenderProxy
-        https://bugs.webkit.org/show_bug.cgi?id=91731
-
-        Reviewed by Kentaro Hara.
-
-        This is an initial EFL port implementation of EventSenderProxy.
-
-        * WebKitTestRunner/EventSenderProxy.h:
-        (WTR):
-        (EventSenderProxy):
-        * WebKitTestRunner/InjectedBundle/EventSendingController.h:
-        * WebKitTestRunner/PlatformEfl.cmake:
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::TestController):
-        (WTR::TestController::didReceiveSynchronousMessageFromInjectedBundle):
-        * WebKitTestRunner/efl/EventSenderProxyEfl.cpp: Added.
-        (WTR):
-        (WTREvent):
-        (WTR::WTREvent::WTREvent):
-        (WTR::KeyEventInfo::KeyEventInfo):
-        (KeyEventInfo):
-        (WTR::evasMouseButton):
-        (WTR::setEvasModifiers):
-        (WTR::dispatchMouseDownEvent):
-        (WTR::dispatchMouseUpEvent):
-        (WTR::dispatchMouseMoveEvent):
-        (WTR::dispatchMouseScrollByEvent):
-        (WTR::keyPadName):
-        (WTR::keyName):
-        (WTR::EventSenderProxy::EventSenderProxy):
-        (WTR::EventSenderProxy::updateClickCountForButton):
-        (WTR::EventSenderProxy::dispatchEvent):
-        (WTR::EventSenderProxy::replaySavedEvents):
-        (WTR::EventSenderProxy::sendOrQueueEvent):
-        (WTR::EventSenderProxy::mouseDown):
-        (WTR::EventSenderProxy::mouseUp):
-        (WTR::EventSenderProxy::mouseMoveTo):
-        (WTR::EventSenderProxy::mouseScrollBy):
-        (WTR::EventSenderProxy::leapForward):
-        (WTR::EventSenderProxy::keyDown):
-        (WTR::EventSenderProxy::addTouchPoint):
-        (WTR::EventSenderProxy::updateTouchPoint):
-        (WTR::EventSenderProxy::setTouchModifier):
-        (WTR::EventSenderProxy::touchStart):
-        (WTR::EventSenderProxy::touchMove):
-        (WTR::EventSenderProxy::touchEnd):
-        (WTR::EventSenderProxy::touchCancel):
-        (WTR::EventSenderProxy::clearTouchPoints):
-        (WTR::EventSenderProxy::releaseTouchPoint):
-        (WTR::EventSenderProxy::cancelTouchPoint):
-        (WTR::EventSenderProxy::setTouchPointRadius):
-
-2012-07-20  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Unreviewed, rolling out r123085.
-        http://trac.webkit.org/changeset/123085
-        https://bugs.webkit.org/show_bug.cgi?id=91719
-
-        r123085 causes crashes on EFL layout test bot.
-
-        * WebKitTestRunner/CMakeLists.txt:
-        * WebKitTestRunner/InjectedBundle/efl/LayoutTestControllerEfl.cpp:
-        (WTR::LayoutTestController::platformInitialize):
-
-2012-07-20  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        [WTR] Add *explicit* keyword to constructor which has a parameter
-        https://bugs.webkit.org/show_bug.cgi?id=91745
-
-        Reviewed by Adam Barth.
-
-        Add *explicit* keyword to contructor which has a parameter in order to avoid implicit type conversion.
-
-        * WebKitTestRunner/EventSenderProxy.h:
-        (EventSenderProxy):
-        * WebKitTestRunner/TestInvocation.h:
-        (TestInvocation):
-
-2012-07-19  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] [WK2] Add methods to get/set a custom text encoding
-        https://bugs.webkit.org/show_bug.cgi?id=90604
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Added support for setting custom character encoding in MiniBrowser.
-        Use 'F3' to set the custom character encoding.
-
-        * MiniBrowser/efl/main.c:
-        (on_key_down):
-
-2012-07-19  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: executive_unittest still failing when run in parallel
-        https://bugs.webkit.org/show_bug.cgi?id=91795
-
-        Reviewed by Adam Barth.
-
-        It turns out that test_kill_process and test_kill_all are both
-        launching the same process, and so if they're run at the same
-        time, test_kill_all interferes w/ test_kill_process.
-
-        Merging the two tests solves the issue :).
-
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        (ExecutiveTest.test_kill_process):
-        (ExecutiveTest._assert_windows_image_name):
-        (ExecutiveTest):
-        (ExecutiveTest.test_windows_image_name):
-
-2012-07-19  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] [WK2] Add a callback to handle delete request in MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=91483
-
-        Reviewed by Dirk Pranke.
-
-        Add a callback to handle delete request and quit the main loop when
-        window is asked to be deleted so that all the resources allocated
-        for the window will be freed properly.
-
-        * MiniBrowser/efl/main.c:
-        (closeWindow):
-        (browserCreate):
-
-2012-07-19  No'am Rosenthal  <noam.rosenthal@nokia.com>
-
-        [Qt] Enable CSS shaders in Qt (software mode)
-        https://bugs.webkit.org/show_bug.cgi?id=85140
-
-        Reviewed by Simon Hausmann.
-
-        Enable CSS_SHADERS when WEBGL and CSS_FILTERS are enabled.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-07-19  No'am Rosenthal  <noam.rosenthal@nokia.com>
-
-        [Qt] Enable CSS shaders in Qt (software mode)
-        https://bugs.webkit.org/show_bug.cgi?id=85140
-
-        Reviewed by Simon Hausmann.
-
-        Enable CSS_SHADERS when WEBGL and CSS_FILTERS are enabled.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-07-19  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: fix executive_unittest nits, including a missing 'errno' import
-        https://bugs.webkit.org/show_bug.cgi?id=91770
-
-        Reviewed by Adam Barth.
-
-        The missing errno import is causing a flaky failure when run in
-        parallel on the bots.
-
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        (ExecutiveTest.assert_interpreter_for_content):
-
-2012-07-19  Oliver Hunt  <oliver@apple.com>
-
-        Make style bot handle underscores in names more reasonably
-        https://bugs.webkit.org/show_bug.cgi?id=91777
-
-        Reviewed by Gavin Barraclough.
-
-        This patch adds a naming/readability/underscores category for style errors.
-        That allows us to use underscores in those portions of JSC (and potentially
-        gtk?) without turning off all naming checks for the effected directories.
-        We also filter out the DFG_OPERATION warning, and a few other minor changes
-        to make the style bot less noisy when running over JSC at least.
-
-        * Scripts/webkitpy/style/checker.py:
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (check_identifier_name_in_declaration):
-        (CppChecker):
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (WebKitStyleTest.test_names):
-
-2012-07-19  Dirk Pranke  <dpranke@chromium.org>
-
-        config_standalone.py is crashing on apple win's cygwin port
-        https://bugs.webkit.org/show_bug.cgi?id=91682
-
-        Reviewed by Adam Roben.
-
-        Work around a weird interaction of ctypes and cygwin that
-        is causing unit tests to crash for me locally.
-
-        * Scripts/webkitpy/common/system/executive.py:
-        (Executive._win32_check_running_pid):
-
-2012-07-19  Xabier Rodriguez Calvar  <calvaris@igalia.com>
-
-        [GTK] WebKit test runner ignores all system environment variables
-        https://bugs.webkit.org/show_bug.cgi?id=90284
-
-        Reviewed by Dirk Pranke.
-
-        Added support in unit test framework to pass a custom environment
-        variable to the tests by using the --additional-env-var parameter.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.to.setup_environ_for_server): Adding environment variables
-        that come through the additional_env_var option.
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_additional_env_var): Added unit test for the
-        additional_env_var option
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args): Added the --additional-env-var parameter.
-
-2012-07-19  Joshua Bell  <jsbell@chromium.org>
-
-        Roll out r121610 and r122487 which may have been causing flaky crashes
-        https://bugs.webkit.org/show_bug.cgi?id=91637
-
-        Reviewed by Kentaro Hara.
-
-        Flaky crashes started in random tests following r121610. It's not clear
-        that r121610 is to blame, but we'd like to prove or disprove it.
-        If this doesn't resolve the crashes, this patch should be rolled out.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.h:
-        (PluginTest):
-        * DumpRenderTree/TestNetscapePlugIn/Tests/LeakWindowScriptableObject.cpp: Removed.
-
-2012-07-19  Pierre Rossi  <pierre.rossi@gmail.com>
-
-        [Qt][WK2] Map the elementRect exposed in QML to the view for popup menu
-        https://bugs.webkit.org/show_bug.cgi?id=91645
-
-        Reviewed by Simon Hausmann.
-
-        Also improved the logic slightly for edge cases.
-
-        * MiniBrowser/qt/qml/ItemSelector.qml:
-
-2012-07-19  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Bump libsoup dependency to v2.39.4.1 to fix cookie issues
-        https://bugs.webkit.org/show_bug.cgi?id=91741
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Bump libsoup dependency in jhbuild to v2.39.4.1 to fix issues
-        with cookies in non-suffixed/private domains [GNOME #679230].
-
-        * efl/jhbuild.modules:
-
-2012-07-19  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Remove support for Qt versions before 4.8.0
-        https://bugs.webkit.org/show_bug.cgi?id=91730
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Remove Qt version check #ifdefs for Qt versions before 4.8.0.
-
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::setAlwaysBlockCookies):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController):
-
-2012-07-19  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        [GTK] Enable MHTML support by default at build time
-        https://bugs.webkit.org/show_bug.cgi?id=89987
-
-        Reviewed by Carlos Garcia Campos.
-
-        Enable MHTML support by default for GTK in build-webkit.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-07-19  Zoltan Nyul  <zoltan.nyul@intel.com>
-
-        [EFL][WK2] Using different cache directory for each WTR process
-        https://bugs.webkit.org/show_bug.cgi?id=91719
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        The testrunner script may be running multiple processes in
-        parallel, and it makes appcache tests fail if they are using the same
-        directory. I modified the EFL's LayoutTestController to use the
-        DUMPRENDERTREE_TEMP for application cache directory because it's
-        different for each process.
-
-        * WebKitTestRunner/CMakeLists.txt:
-        * WebKitTestRunner/InjectedBundle/efl/LayoutTestControllerEfl.cpp:
-        (WTR::LayoutTestController::platformInitialize):
-
-2012-07-19  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        [WK2][GTK] Complete implementation of AccessibilityController in WKTR for GTK
-        https://bugs.webkit.org/show_bug.cgi?id=89224
-
-        Reviewed by Chris Fleizach.
-
-        Implement logAccessibilityEvents() and resetToConsistentState(),
-        so we can ask WKTR from the layout tests for logging all the
-        accessibility related events into the result.
-
-        * WebKitTestRunner/GNUmakefile.am:
-        * WebKitTestRunner/InjectedBundle/AccessibilityController.cpp:
-        (WTR::AccessibilityController::AccessibilityController):
-        (WTR):
-        (WTR::AccessibilityController::logAccessibilityEvents):
-        (WTR::AccessibilityController::resetToConsistentState):
-        * WebKitTestRunner/InjectedBundle/AccessibilityController.h:
-        (AccessibilityController):
-        * WebKitTestRunner/InjectedBundle/gtk/AccessibilityControllerGtk.cpp: Added.
-        (WTR):
-        (WTR::printAccessibilityEvent):
-        (WTR::axObjectEventListener):
-        (WTR::AccessibilityController::logAccessibilityEvents):
-        (WTR::AccessibilityController::resetToConsistentState):
-
-        Ensure we reset the accessibility controller to a consistent
-        whenever a test has finished running.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::done):
-
-2012-07-19  Dominik Röttsches  <dominik.rottsches@intel.com>
-
-        [EFL][Wk2] Add a bot that runs WTR / WebKit2 tests
-        https://bugs.webkit.org/show_bug.cgi?id=90788
-
-        Reviewed by Kentaro Hara.
-
-        Adding EFL 64bit WK2 BuildAndTest bot. At this point, we cannot transfer
-        the build product from one bot to the other due to link path issues with jhbuild,
-        so we do a full build and test cycle for WebKit2 on this bot.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Adding the new slave.
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Adding a new factory for building and testing WebKit2.
-        (BuildAndTestWebKit2Factory):
-
-2012-07-18  Mihnea Ovidenie  <mihnea@adobe.com>
-
-        Unreviewed. Adding Andrei Bucur, Mihai Balan and Raul Hudea to the contributors list.
-        They are Adobe contributors working on CSSRegions.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-07-18  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [CMake][EFL] Should try to find the same libsoup version pulled by jhbuild
-        https://bugs.webkit.org/show_bug.cgi?id=91626
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Update jhbuild to pull libsoup 2.39.3 tarball from Gnome FTP instead
-        of fetching a tag from Gnome GIT. We need to do this to map the version
-        of libsoup that is required by our CMake config.
-
-        * efl/jhbuild.modules:
-
-2012-07-18  MORITA Hajime  <morrita@google.com>
-
-        Add window resize benchmark
-        https://bugs.webkit.org/show_bug.cgi?id=91070
-
-        Reviewed by Ryosuke Niwa.
-
-        Added some more output filters to take care of html5.html output.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest):
-
-2012-07-18  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: merge WebKitDriver into Driver
-        https://bugs.webkit.org/show_bug.cgi?id=91696
-
-        Reviewed by Adam Barth.
-
-        As part of merging WebKitPort into Port, we also should merge
-        WebKitDriver into Driver, since all of the non-test Drivers now
-        inherit from WebKitDriver.
-
-        There are no functional changes in this patch, and all the changes should
-        be covered by the existing tests.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port._driver_class):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort._check_file_exists):
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidDriver):
-        (ChromiumAndroidDriver.__init__):
-        (ChromiumAndroidDriver._drt_cmd_line):
-        * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:
-        (ChromiumAndroidDriverTest.test_read_prompt):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver):
-        (Driver.__init__):
-        (Driver.__del__):
-        (Driver.run_test):
-        (Driver.has_crashed):
-        (Driver.start):
-        (Driver._start):
-        (Driver.stop):
-        (Driver.cmd_line):
-        (Driver._check_for_driver_crash):
-        (Driver._command_from_driver_input):
-        (Driver._read_first_block):
-        (Driver._read_optional_image_block):
-        (Driver._read_header):
-        (Driver._process_stdout_line):
-        (Driver._strip_eof):
-        (Driver._read_block):
-        (ContentBlock):
-        (ContentBlock.__init__):
-        (ContentBlock.decode_content):
-        * Scripts/webkitpy/layout_tests/port/driver_unittest.py:
-        (DriverTest.make_port):
-        (DriverTest._assert_wrapper):
-        (DriverTest.test_read_block):
-        (DriverTest):
-        (DriverTest.test_read_binary_block):
-        (DriverTest.test_read_base64_block):
-        (DriverTest.test_no_timeout):
-        (DriverTest.test_check_for_driver_crash):
-        (DriverTest.test_check_for_driver_crash.FakeServerProcess):
-        (DriverTest.test_check_for_driver_crash.FakeServerProcess.__init__):
-        (DriverTest.test_check_for_driver_crash.FakeServerProcess.pid):
-        (DriverTest.test_check_for_driver_crash.FakeServerProcess.name):
-        (DriverTest.test_check_for_driver_crash.FakeServerProcess.has_crashed):
-        (DriverTest.test_check_for_driver_crash.FakeServerProcess.stop):
-        (DriverTest.test_check_for_driver_crash.assert_crash):
-        (DriverTest.test_creating_a_port_does_not_write_to_the_filesystem):
-        (DriverTest.test_stop_cleans_up_properly):
-        (DriverTest.test_two_starts_cleans_up_properly):
-        (MockServerProcess):
-        (MockServerProcess.__init__):
-        (MockServerProcess.has_crashed):
-        (MockServerProcess.read_stdout_line):
-        (MockServerProcess.read_stdout):
-        (MockServerProcess.read_either_stdout_or_stderr_line):
-        (MockServerProcess.start):
-        (MockServerProcess.stop):
-        (MockServerProcess.kill):
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._read_image_diff):
-        (WebKitPort.skipped_layout_tests):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (test_path_to_apache_config_file):
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver.py:
-        (XvfbDriver):
-        (XvfbDriver.stop):
-
-2012-07-18  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy.common.system.executive_unittest.ExecutiveTest.test_kill_process is flaky
-        https://bugs.webkit.org/show_bug.cgi?id=91698
-
-        Unreviewed, build fix.
-
-        This is a workaround for the test failing (apparently mostly?)
-        when run in parallel with other tests. The underlying bug still
-        needs to be diagnosed as we shouldn't be getting ECHILD from
-        process.wait().
-
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        (ExecutiveTest.test_kill_process):
-
-2012-07-18  Dirk Pranke  <dpranke@chromium.org>
-
-        Disable running python unit tests in parallel on win32 for now.
-        https://bugs.webkit.org/show_bug.cgi?id=91697
-
-        Unreviewed, build fix.
-
-        * Scripts/webkitpy/test/main.py:
-        (Tester._parse_args):
-
-2012-07-18  Dave Tu  <dtu@chromium.org>
-
-        [chromium] Add gl_tests to flakiness dashboard.
-        https://bugs.webkit.org/show_bug.cgi?id=91680
-
-        Reviewed by Dirk Pranke.
-
-        * TestResultServer/static-dashboards/builders.js:
-        (loadBuildersList):
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (currentBuilderGroupCategory):
-
-2012-07-18  Dirk Pranke  <dpranke@chromium.org>
-
-        fix python unit tests failing under cygwin
-        https://bugs.webkit.org/show_bug.cgi?id=91678
-
-        Reviewed by Adam Barth.
-
-        Fix a case where executive.kill_process was failing under cygwin
-        (apple win port) in an unexpected way.
-        
-        * Scripts/webkitpy/common/system/executive.py:
-        (Executive.kill_process):
-
-2012-07-18  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: run tests in parallel by default
-        https://bugs.webkit.org/show_bug.cgi?id=91422
-
-        Reviewed by Adam Barth.
-
-        We use multiprocessing.cpu_count() for the default number of
-        jobs to run; memory overhead should be very low, so this should
-        be fine.
-
-        * Scripts/webkitpy/test/main.py:
-        (Tester._parse_args):
-
-2012-07-18  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Add Pravin D to the list of contributors.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-07-18  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt] feature detection in orwt/nrwt does not work with force_static_libs_as_shared
-        https://bugs.webkit.org/show_bug.cgi?id=91514
-
-        Reviewed by Dirk Pranke.
-
-        Analyzing libQtWebKit.so is not enough in the case of force_static_libs_as_shared.
-        We need to analyze all the shared library or at least the WebCore one.
-
-        * Scripts/webkitdirs.pm:
-        (builtDylibPathForName):
-        In orwt it is hard coded to search for symbols in the WebCore library.
-        While in theory it is possible that symbols for a given feature are not
-        located in that, it doesn't happen in practice, so returning the path of
-        the WebCore library for a force_static_libs_as_shared build is enough to
-        fix the bug and it doesn't require a bigger refactoring. For a default
-        build we still return the path of the QtWebKit lib.
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort._modules_to_search_for_symbols):
-        Enumerate all dynamic libraries, not just the QtWebKit one.
-
-2012-07-18  Tony Chang  <tony@chromium.org>
-
-        [chromium] Unreviewed, more compile fixes on Chromium Win.
-
-        * DumpRenderTree/chromium/TestShellWin.cpp:
-        (TestShell::waitTestFinished):
-        * DumpRenderTree/chromium/WebThemeControlDRTWin.cpp:
-
-2012-07-18  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Add central error management to EFL port
-        https://bugs.webkit.org/show_bug.cgi?id=91598
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Map WebKitNetworkError to NSURLErrorDomain when
-        printing in DumpRenderTree so that the output
-        matches the expected one.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (descriptionSuitableForTestResult):
-
-2012-07-18  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: start merging port/webkit.py into port/base.py
-        https://bugs.webkit.org/show_bug.cgi?id=91559
-
-        Reviewed by Ojan Vafai.
-
-        Since all the non-test port implementations now derive from
-        WebKitPort, there's no real point in keeping WebKitPort distinct
-        from Port. This patch starts merging the two by moving nearly
-        all of the webkit implementations of routines with no default
-        behavior into base.py. The few that didn't move rely on
-        additional infrastructure that should be refactored differently
-        (like the image diffing, which should probably be its own
-        class) and deserve their own patches.
-
-        This patch should just be moving code around, and require no
-        additional tests; in fact, we can delete the tests that were
-        asserting virtual methods in the base class.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.baseline_search_path):
-        (Port.check_build):
-        (Port):
-        (Port._check_driver):
-        (Port._check_port_build):
-        (Port.check_image_diff):
-        (Port.driver_name):
-        (Port.default_results_directory):
-        (Port.to.setup_environ_for_server):
-        (Port._path_to_apache):
-        (Port._is_redhat_based):
-        (Port._is_debian_based):
-        (Port._apache_config_file_name_for_platform):
-        (Port._path_to_apache_config_file):
-        (Port._build_path):
-        (Port._path_to_driver):
-        (Port._path_to_webcore_library):
-        (Port._path_to_helper):
-        (Port._path_to_image_diff):
-        (Port._path_to_wdiff):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_httpd_returns_error_code):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort):
-        (WebKitPort._build_driver_flags):
-        (WebKitPort._read_image_diff):
-        (WebKitPort.skipped_layout_tests):
-
-2012-07-18  Tommy Widenflycht  <tommyw@google.com>
-
-        [chromium] MediaStream API: Moving the mock create* WebRTC calls into a shadow Platform class
-        https://bugs.webkit.org/show_bug.cgi?id=86215
-
-        Reviewed by Adam Barth.
-
-        Adding a shadow Platform object that is used to override some WebKit::Platform funtions to
-        instead create mock objects. No actual mock objects created yet.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (WebKitSupportTestEnvironment::WebKitSupportTestEnvironment):
-        * DumpRenderTree/chromium/MockWebKitPlatformSupport.cpp: Copied from Tools/DumpRenderTree/chromium/config.h.
-        (MockWebKitPlatformSupport::create):
-        (MockWebKitPlatformSupport::MockWebKitPlatformSupport):
-        (MockWebKitPlatformSupport::cryptographicallyRandomValues):
-        (MockWebKitPlatformSupport::createMediaStreamCenter):
-        * DumpRenderTree/chromium/MockWebKitPlatformSupport.h: Copied from Tools/DumpRenderTree/chromium/config.h.
-        (MockWebKitPlatformSupport):
-        * DumpRenderTree/chromium/config.h:
-
-2012-07-18  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [CMake][EFL] Build and run TestWebKitAPI unit tests
-        https://bugs.webkit.org/show_bug.cgi?id=90671
-
-        Reviewed by Daniel Bates.
-
-        This patch enables almost for free a significant amount of test for the
-        WebKit C API, WTF and KURL. It makes easy for CMake based ports to
-        enable TestWebKitAPI since the missing bits to implement are
-        relatively simple.
-
-        * CMakeLists.txt:
-        * TestWebKitAPI/CMakeLists.txt: Added.
-        * TestWebKitAPI/PlatformEfl.cmake: Added.
-        * TestWebKitAPI/PlatformWebView.h:
-        * TestWebKitAPI/config.h:
-        * TestWebKitAPI/efl/InjectedBundleController.cpp: Added.
-        (TestWebKitAPI):
-        (TestWebKitAPI::InjectedBundleController::platformInitialize):
-        * TestWebKitAPI/efl/PlatformUtilities.cpp: Added.
-        (TestWebKitAPI):
-        (Util):
-        (TestWebKitAPI::Util::run):
-        (TestWebKitAPI::Util::sleep):
-        (TestWebKitAPI::Util::createURLForResource):
-        (TestWebKitAPI::Util::createInjectedBundlePath):
-        (TestWebKitAPI::Util::URLForNonExistentResource):
-        * TestWebKitAPI/efl/PlatformWebView.cpp: Added.
-        (TestWebKitAPI):
-        (TestWebKitAPI::initEcoreEvas):
-        (TestWebKitAPI::PlatformWebView::PlatformWebView):
-        (TestWebKitAPI::PlatformWebView::~PlatformWebView):
-        (TestWebKitAPI::PlatformWebView::page):
-        * TestWebKitAPI/efl/main.cpp: Added.
-        (checkForUseX11WindowArgument):
-        (main):
-
-2012-07-18  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [CMake][EFL] Building jsc causes reconfiguration
-        https://bugs.webkit.org/show_bug.cgi?id=91387
-
-        Reviewed by Daniel Bates.
-
-        We should remove CMakeCache only when running build-webkit script,
-        otherwise it will cause a reconfiguration every time someone calls
-        generateBuildSystemFromCMakeProject(). We were re-building "jsc" and
-        not running WebKit2 unit tests on the bots because the project was
-        reconfigured with default values by the scripts that run these tests.
-
-        * Scripts/build-webkit:
-        * Scripts/webkitdirs.pm:
-        (removeCMakeCache):
-        (generateBuildSystemFromCMakeProject):
-
-2012-07-18  Seokju Kwon  <seokju.kwon@samsung.com>
-
-        [EFL][DRT] Add support for Web Inspector in WebKit-EFL DRT
-        https://bugs.webkit.org/show_bug.cgi?id=87935
-
-        Reviewed by Andreas Kling.
-
-        Web Inspector will be shown when path or url contains "inspector/".
-        Dumprendertree should wait util web inspector resources are loaded totally
-        and handle the signals for creating or removing a view of web inspector.
-        ("inspector,view,create" and "inspector,view,close")
-
-        * DumpRenderTree/efl/DumpRenderTree.cpp:
-        (shouldOpenWebInspector):
-        (createLayoutTestController):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::createView):
-        (DumpRenderTreeChrome::createWebInspectorView):
-        (DumpRenderTreeChrome::removeWebInspectorView):
-        (DumpRenderTreeChrome::waitInspectorLoadFinished):
-        (DumpRenderTreeChrome::onInspectorViewCreate):
-        (DumpRenderTreeChrome::onInspectorViewClose):
-        (DumpRenderTreeChrome::onInspectorFrameLoadFinished):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.h:
-        (DumpRenderTreeChrome):
-        * DumpRenderTree/efl/DumpRenderTreeView.cpp:
-        (onConsoleMessage):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::showWebInspector):
-        (LayoutTestController::closeWebInspector):
-        (LayoutTestController::evaluateInWebInspector):
-
-2012-07-18  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [ANGLE] On QT, use Bison and Flex during ANGLE build
-        https://bugs.webkit.org/show_bug.cgi?id=91108
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * qmake/mkspecs/features/default_post.prf: Add support for variable_out to our generators, to allow
-        generating not only for SOURCES but also ANGLE_SOURCES (in this bug)
-
-2012-07-18  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt] plugin tests should not be disabled for WebKit1
-        https://bugs.webkit.org/show_bug.cgi?id=91604
-
-        Reviewed by Simon Hausmann.
-
-        Instead of not building TestNetscapePlugIn, we could programatically
-        disable actually loading it from WTR until https://bugs.webkit.org/show_bug.cgi?id=86620
-        has been solved, so we can still test plugins on WebKit1.
-
-        * Tools.pro:
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-        * WebKitTestRunner/qt/TestControllerQt.cpp:
-        (WTR::TestController::initializeTestPluginDirectory):
-
-2012-07-18  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        [WK2][GTK] Implement AccessibilityUIElement in WKTR for GTK
-        https://bugs.webkit.org/show_bug.cgi?id=89223
-
-        Reviewed by Chris Fleizach.
-
-        Implemented AccessibilityUIElement in WKTR for GTK, based in the
-        implementation present in DumpRenderTree.
-
-        Added new files in gtk/ and updated the cross-platform ones.
-
-        * WebKitTestRunner/GNUmakefile.am:
-        * WebKitTestRunner/InjectedBundle/AccessibilityUIElement.cpp:
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/AccessibilityUIElement.h:
-        (AccessibilityUIElement):
-        * WebKitTestRunner/InjectedBundle/gtk/AccessibilityUIElementGtk.cpp: Added.
-        (WTR):
-        (WTR::attributeSetToString):
-        (WTR::checkElementState):
-        (WTR::indexRangeInTable):
-        (WTR::alterCurrentValue):
-        (WTR::AccessibilityUIElement::AccessibilityUIElement):
-        (WTR::AccessibilityUIElement::~AccessibilityUIElement):
-        (WTR::AccessibilityUIElement::isEqual):
-        (WTR::AccessibilityUIElement::getChildren):
-        (WTR::AccessibilityUIElement::getChildrenWithRange):
-        (WTR::AccessibilityUIElement::childrenCount):
-        (WTR::AccessibilityUIElement::elementAtPoint):
-        (WTR::AccessibilityUIElement::indexOfChild):
-        (WTR::AccessibilityUIElement::childAtIndex):
-        (WTR::AccessibilityUIElement::linkedUIElementAtIndex):
-        (WTR::AccessibilityUIElement::ariaOwnsElementAtIndex):
-        (WTR::AccessibilityUIElement::ariaFlowToElementAtIndex):
-        (WTR::AccessibilityUIElement::disclosedRowAtIndex):
-        (WTR::AccessibilityUIElement::rowAtIndex):
-        (WTR::AccessibilityUIElement::selectedChildAtIndex):
-        (WTR::AccessibilityUIElement::selectedChildrenCount):
-        (WTR::AccessibilityUIElement::selectedRowAtIndex):
-        (WTR::AccessibilityUIElement::titleUIElement):
-        (WTR::AccessibilityUIElement::parentElement):
-        (WTR::AccessibilityUIElement::disclosedByRow):
-        (WTR::AccessibilityUIElement::attributesOfLinkedUIElements):
-        (WTR::AccessibilityUIElement::attributesOfDocumentLinks):
-        (WTR::AccessibilityUIElement::attributesOfChildren):
-        (WTR::AccessibilityUIElement::allAttributes):
-        (WTR::AccessibilityUIElement::stringAttributeValue):
-        (WTR::AccessibilityUIElement::numberAttributeValue):
-        (WTR::AccessibilityUIElement::uiElementAttributeValue):
-        (WTR::AccessibilityUIElement::boolAttributeValue):
-        (WTR::AccessibilityUIElement::isAttributeSettable):
-        (WTR::AccessibilityUIElement::isAttributeSupported):
-        (WTR::AccessibilityUIElement::parameterizedAttributeNames):
-        (WTR::AccessibilityUIElement::role):
-        (WTR::AccessibilityUIElement::subrole):
-        (WTR::AccessibilityUIElement::roleDescription):
-        (WTR::AccessibilityUIElement::title):
-        (WTR::AccessibilityUIElement::description):
-        (WTR::AccessibilityUIElement::orientation):
-        (WTR::AccessibilityUIElement::stringValue):
-        (WTR::AccessibilityUIElement::language):
-        (WTR::AccessibilityUIElement::helpText):
-        (WTR::AccessibilityUIElement::x):
-        (WTR::AccessibilityUIElement::y):
-        (WTR::AccessibilityUIElement::width):
-        (WTR::AccessibilityUIElement::height):
-        (WTR::AccessibilityUIElement::clickPointX):
-        (WTR::AccessibilityUIElement::clickPointY):
-        (WTR::AccessibilityUIElement::intValue):
-        (WTR::AccessibilityUIElement::minValue):
-        (WTR::AccessibilityUIElement::maxValue):
-        (WTR::AccessibilityUIElement::valueDescription):
-        (WTR::AccessibilityUIElement::insertionPointLineNumber):
-        (WTR::AccessibilityUIElement::isActionSupported):
-        (WTR::AccessibilityUIElement::isEnabled):
-        (WTR::AccessibilityUIElement::isRequired):
-        (WTR::AccessibilityUIElement::isFocused):
-        (WTR::AccessibilityUIElement::isSelected):
-        (WTR::AccessibilityUIElement::isExpanded):
-        (WTR::AccessibilityUIElement::isChecked):
-        (WTR::AccessibilityUIElement::hierarchicalLevel):
-        (WTR::AccessibilityUIElement::speak):
-        (WTR::AccessibilityUIElement::ariaIsGrabbed):
-        (WTR::AccessibilityUIElement::ariaDropEffects):
-        (WTR::AccessibilityUIElement::lineForIndex):
-        (WTR::AccessibilityUIElement::rangeForLine):
-        (WTR::AccessibilityUIElement::rangeForPosition):
-        (WTR::AccessibilityUIElement::boundsForRange):
-        (WTR::AccessibilityUIElement::stringForRange):
-        (WTR::AccessibilityUIElement::attributedStringForRange):
-        (WTR::AccessibilityUIElement::attributedStringRangeIsMisspelled):
-        (WTR::AccessibilityUIElement::uiElementForSearchPredicate):
-        (WTR::AccessibilityUIElement::attributesOfColumnHeaders):
-        (WTR::AccessibilityUIElement::attributesOfRowHeaders):
-        (WTR::AccessibilityUIElement::attributesOfColumns):
-        (WTR::AccessibilityUIElement::attributesOfRows):
-        (WTR::AccessibilityUIElement::attributesOfVisibleCells):
-        (WTR::AccessibilityUIElement::attributesOfHeader):
-        (WTR::AccessibilityUIElement::rowCount):
-        (WTR::AccessibilityUIElement::columnCount):
-        (WTR::AccessibilityUIElement::indexInTable):
-        (WTR::AccessibilityUIElement::rowIndexRange):
-        (WTR::AccessibilityUIElement::columnIndexRange):
-        (WTR::AccessibilityUIElement::cellForColumnAndRow):
-        (WTR::AccessibilityUIElement::horizontalScrollbar):
-        (WTR::AccessibilityUIElement::verticalScrollbar):
-        (WTR::AccessibilityUIElement::selectedTextRange):
-        (WTR::AccessibilityUIElement::setSelectedTextRange):
-        (WTR::AccessibilityUIElement::increment):
-        (WTR::AccessibilityUIElement::decrement):
-        (WTR::AccessibilityUIElement::showMenu):
-        (WTR::AccessibilityUIElement::press):
-        (WTR::AccessibilityUIElement::setSelectedChild):
-        (WTR::AccessibilityUIElement::accessibilityValue):
-        (WTR::AccessibilityUIElement::documentEncoding):
-        (WTR::AccessibilityUIElement::documentURI):
-        (WTR::AccessibilityUIElement::url):
-        (WTR::AccessibilityUIElement::addNotificationListener):
-        (WTR::AccessibilityUIElement::removeNotificationListener):
-        (WTR::AccessibilityUIElement::isFocusable):
-        (WTR::AccessibilityUIElement::isSelectable):
-        (WTR::AccessibilityUIElement::isMultiSelectable):
-        (WTR::AccessibilityUIElement::isVisible):
-        (WTR::AccessibilityUIElement::isOffScreen):
-        (WTR::AccessibilityUIElement::isCollapsed):
-        (WTR::AccessibilityUIElement::isIgnored):
-        (WTR::AccessibilityUIElement::hasPopup):
-        (WTR::AccessibilityUIElement::takeFocus):
-        (WTR::AccessibilityUIElement::takeSelection):
-        (WTR::AccessibilityUIElement::addSelection):
-        (WTR::AccessibilityUIElement::removeSelection):
-        (WTR::AccessibilityUIElement::textMarkerRangeForElement):
-        (WTR::AccessibilityUIElement::textMarkerRangeLength):
-        (WTR::AccessibilityUIElement::previousTextMarker):
-        (WTR::AccessibilityUIElement::nextTextMarker):
-        (WTR::AccessibilityUIElement::stringForTextMarkerRange):
-        (WTR::AccessibilityUIElement::textMarkerRangeForMarkers):
-        (WTR::AccessibilityUIElement::startTextMarkerForTextMarkerRange):
-        (WTR::AccessibilityUIElement::endTextMarkerForTextMarkerRange):
-        (WTR::AccessibilityUIElement::textMarkerForPoint):
-        (WTR::AccessibilityUIElement::accessibilityElementForTextMarker):
-        (WTR::AccessibilityUIElement::attributedStringForTextMarkerRangeContainsAttribute):
-        (WTR::AccessibilityUIElement::indexForTextMarker):
-        (WTR::AccessibilityUIElement::isTextMarkerValid):
-        (WTR::AccessibilityUIElement::textMarkerForIndex):
-
-        Add documentEncoding and documentURI to AccessibilityUIElement.idl.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/AccessibilityUIElement.idl:
-
-2012-07-18  Alexis Menard  <alexis.menard@openbossa.org>
-
-        [EFL] Build fix in WebKitTestRunner.
-        https://bugs.webkit.org/show_bug.cgi?id=91567
-
-        Reviewed by Kentaro Hara.
-
-        sleep() is defined in unistd.h, we need to include it.
-
-        * WebKitTestRunner/efl/TestControllerEfl.cpp:
-
-2012-07-18  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
-
-        [NRWT] Unreviewed gardening after r122913
-        https://bugs.webkit.org/show_bug.cgi?id=91601
-
-        * Scripts/webkitpy/layout_tests/port/server_process_unittest.py:
-        (TrivialMockPort.process_kill_time):
-
-2012-07-17  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] Run ref tests together to avoid expensive driver restarts
-        https://bugs.webkit.org/show_bug.cgi?id=91533
-
-        Reviewed by Dirk Pranke.
-
-        Though DriverProxy maintains two drivers to support pixel tests and non-pixel tests,
-        chromium-android uses another way because it can't support multiple drivers.
-        It restarts the driver when pixel-test mode changes (e.g. when running a ref test after
-        a normal test in --no-pixel-tests mode). However restarting driver is expensive on
-        Android (several seconds each time). To reduce the cost, a command line option
-        '--shard-ref-tests' is added to group ref tests in dedicated shards.
-        The option is by default enabled on Android.
-
-        Will remove the option once DRT supports switching pixel test mode during one run.
-        (https://bugs.webkit.org/show_bug.cgi?id=91538, https://bugs.webkit.org/show_bug.cgi?id=91539)
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._shard_tests):
-        (Manager._shard_in_two):
-        (Manager._shard_by_directory):
-        (Manager._run_tests):
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        (Worker._update_test_input):
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.__init__):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-
-2012-07-17  Don Olmstead  <don.olmstead@am.sony.com>
-
-        NRWT The time before server_process kills DRT should be variable
-        https://bugs.webkit.org/show_bug.cgi?id=91542
-
-        Reviewed by Dirk Pranke.
-
-        Added the ability to configure the amount of time
-        server_process waits before killing the DRT process
-        during the call to stop.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.variable.process_kill_time):
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        (ServerProcess.stop):
-
-2012-07-17  Alexis Menard  <alexis.menard@openbossa.org>
-
-        webkitdirs.pm should fallback to uname -m if arch is not present.
-        https://bugs.webkit.org/show_bug.cgi?id=91543
-
-        Reviewed by Martin Robinson.
-
-        It seems that coreutils is moving away from the 'arch' command. Archlinux
-        for example doesn't ship it anymore (coreutils 8.17). We can then fallback
-        to 'uname -m' to find out the architecture.
-
-        * Scripts/webkitdirs.pm:
-        (determineArchitecture):
-
-2012-07-17  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: rename printer.print_update to printer.write_update to match metered_stream
-        https://bugs.webkit.org/show_bug.cgi?id=91557
-
-        Reviewed by Ojan Vafai.
-
-        Now that all of the printing logic is in printer.py, I want the
-        public interface to printer to follow the meteredstream
-        interface where possible. renaming write_update() gets us close.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._run_tests):
-        (Manager._set_up_run):
-        (Manager.start_servers_with_lock):
-        (Manager.stop_servers_with_lock):
-        (Manager._clobber_old_results):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (run):
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (Printer.write_update):
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-        (Testprinter.test_write_update):
-
-2012-07-17  Tony Chang  <tony@chromium.org>
-
-        Fix a bug where optimize-baselines would incorrectly fail to optimize
-        https://bugs.webkit.org/show_bug.cgi?id=91551
-
-        Reviewed by Adam Barth.
-
-        In some cases, optimize-baseline would correctly optimize the results, but because
-        we weren't filtering the virtual ports out of _results_by_port_name, we thought
-        that we had failed to optimize.
-
-        * Scripts/webkitpy/common/checkout/baselineoptimizer.py:
-        (BaselineOptimizer._find_optimal_result_placement): No virtual filtering here.
-        (BaselineOptimizer._filtered_results_by_port_name): New function that filters out virtual directories.
-        (BaselineOptimizer.optimize): Filter out virtual ports.
-        * Scripts/webkitpy/common/checkout/baselineoptimizer_unittest.py:
-        (TestBaselineOptimizer._move_baselines): Add a stub so we don't actual move results.
-        (BaselineOptimizerTest._assertOptimization): Call optimize and verify that the right files were moved.
-        (BaselineOptimizerTest._assertOptimizationFailed): Add a method for when optimization should fail.
-        (BaselineOptimizerTest.test_common_directory_includes_root): Update since this test should fail.
-        (BaselineOptimizerTest.test_virtual_ports_filtered): New test case that demonstrates the bug.
-
-2012-07-17  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium] Add --encode-binary command line option for DRT
-        https://bugs.webkit.org/show_bug.cgi?id=91532
-
-        Reviewed by Adam Barth.
-
-        When the option presents, DRT will encode binary output data in base64.
-        ChromiumAndroidPort will pass the option because 'adb shell' doesn't support
-        binary data output.
-
-        This change is a refactoring to replace the original hard-coded code for Android.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp:
-        (main):
-        * DumpRenderTree/chromium/TestEventPrinter.cpp:
-        (TestEventPrinter::TestEventPrinter):
-        (TestEventPrinter::handleAudio): New function replacing the original handleAudioHeader
-        (TestEventPrinter::handleImage):
-        (TestEventPrinter::handleBinary): Extracted common function for handleAudio and handleImage
-        * DumpRenderTree/chromium/TestEventPrinter.h:
-        (TestEventPrinter):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::initialize):
-        (TestShell::dump):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell):
-        (TestShell::setEncodeBinary):
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py: Add --encode-binary to additional_drt_flags
-        (ChromiumAndroidPort.__init__):
-
-2012-07-17  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: move per-test result output into printing.py
-        https://bugs.webkit.org/show_bug.cgi?id=91465
-
-        Reviewed by Ojan Vafai.
-
-        This moves the last substantive logging/printing code from the
-        manager into printing.py. Subsequent patches in this thread can
-        largely focus on cleaning up printing.py and will leave the rest
-        of the code alone.
-
-        This patch also removes manager.update() and
-        manager.update_summary(), two routines that were no longer being
-        used or needed (they have been dead for a long time but I didn't
-        notice them until now).
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.results_directory):
-        (Manager._look_for_new_crash_logs):
-        (Manager._update_summary_with_result):
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (Printer.print_finished_test):
-
-2012-07-17  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: move config-specific logging to printing.py
-        https://bugs.webkit.org/show_bug.cgi?id=91450
-
-        Reviewed by Ojan Vafai.
-
-        More refactoring ... this moves the 'config' output to
-        printing.py.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._resize_shards):
-        (Manager._run_tests):
-        (Manager._upload_json_files):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ManagerTest.get_options):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (run):
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (Printer.print_config):
-        (Printer.print_workers_and_shards):
-        (Printer._print_config):
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-        (Testprinter.test_fallback_path_in_config):
-        (Testprinter.test_print_config):
-
-2012-07-17  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: clean up logging when we're only running one chunk of the tests
-        https://bugs.webkit.org/show_bug.cgi?id=91447
-
-        Reviewed by Ojan Vafai.
-
-        Apparently we were creating a 'tests_run.txt' in the results
-        directory if we were only running one chunk of the tests; after
-        3+ years of hacking on this code, that was news to me, so I'm
-        guessing no one uses this. I'm removing this, and changing the
-        _print_expected calls to debug messages to simplify the
-        layering.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._split_into_chunks_if_necessary):
-
-2012-07-17  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix regression in style checker introduced in r122868.
-        https://bugs.webkit.org/show_bug.cgi?id=91470
-
-        Unreviewed, build fix.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (_FileState.__init__):
-
-2012-07-17  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: move the bulk of the "expected" output to printing.py
-        https://bugs.webkit.org/show_bug.cgi?id=91442
-
-        Reviewed by Ojan Vafai.
-
-        More printing-related refactoring. This moves all of the code
-        that prints the results we expect to get, but doesn't move a few
-        dangling printfs (those'll get hit in a later patch).
-        
-        No functional changes; covered by existing tests.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._split_into_chunks_if_necessary):
-        (Manager.prepare_lists_and_print_output):
-        (Manager.print_config):
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (Printer.print_expected):
-        (Printer):
-        (Printer._print_expected_results_of_type):
-        (Printer._num_digits):
-        (Printer._print_expected):
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-        (Testprinter.test_print_expected):
-
-2012-07-17  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Replace 0 by NULL in public headers documentation
-        https://bugs.webkit.org/show_bug.cgi?id=91470
-
-        Reviewed by Dirk Pranke.
-
-        Fix style checking to properly detect C headers as C
-        files. Without this change, the style script would
-        complain if we use NULL (instead of 0 / null) in C
-        headers.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (_FileState.__init__):
-        (_FileState.is_c):
-        (_FileState.is_c_or_objective_c):
-
-2012-07-17  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [chromium] remove --test-shell support from DRT
-        https://bugs.webkit.org/show_bug.cgi?id=86927
-
-        Reviewed by Adam Barth.
-
-        Now no one use --test-shell. All of us use the standard DRT mode.
-
-        * DumpRenderTree/chromium/DumpRenderTree.cpp: Removed support of --test-shell and --pixel-tests=filename options. (--pixel-tests without '=' is kept for DRT mode.)
-        (runTest):
-        (main):
-        * DumpRenderTree/chromium/TestEventPrinter.cpp:
-        (TestEventPrinter::TestEventPrinter):
-        (TestEventPrinter::~TestEventPrinter):
-        (TestEventPrinter::handleTestHeader):
-        (TestEventPrinter::handleTimedOut):
-        (TestEventPrinter::handleTextHeader):
-        (TestEventPrinter::handleTextFooter):
-        (TestEventPrinter::handleAudioHeader):
-        (TestEventPrinter::handleAudioFooter):
-        (TestEventPrinter::handleImage): Removed the unused filename parameter.
-        (TestEventPrinter::handleTestFooter):
-        * DumpRenderTree/chromium/TestEventPrinter.h:
-        (TestEventPrinter): Made it a concrete class because we have only one implementation.
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::initialize):
-        (TestShell::dumpImage):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestParams): Removed pixelFileName field.
-        (TestShell):
-
-2012-07-17  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        remove ChromiumDriver from NRWT
-        https://bugs.webkit.org/show_bug.cgi?id=88478
-
-        Now WebKitDriver has replaced ChromiumDriver since test_shell mode is deperecated.
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py: Removed ChromiumDriver code.
-        (ChromiumPort._driver_class): Removed. WebKitPort._driver_class() will be used.
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-
-2012-07-17  No'am Rosenthal  <noam.rosenthal@nokia.com>
-
-        Unreviewed. Add QtGraphics, TextureMapper and OpenGL to watchlist.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-07-17  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r122828.
-        http://trac.webkit.org/changeset/122828
-        https://bugs.webkit.org/show_bug.cgi?id=91516
-
-        DumpRenderTree crashes after printing test results. (Requested
-        by vsevik on #webkit).
-
-        * DumpRenderTree/chromium/TestRunner/TestInterfaces.cpp:
-        (TestInterfaces::TestInterfaces):
-        (TestInterfaces::~TestInterfaces):
-        (TestInterfaces::bindTo):
-        (TestInterfaces::resetAll):
-        * DumpRenderTree/chromium/TestRunner/TestInterfaces.h:
-        (TestInterfaces):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::initialize):
-        (TestShell::createMainWindow):
-        (TestShell::~TestShell):
-        (TestShell::resetTestController):
-        (TestShell::bindJSObjectsToWindow):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::accessibilityController):
-        (TestShell):
-
-2012-07-17  Gabor Ballabas  <gaborb@inf.u-szeged.hu>
-
-        [Qt][V8] Remove the V8 related codepaths and configuration
-        https://bugs.webkit.org/show_bug.cgi?id=90863
-
-        Reviewed by Simon Hausmann.
-
-        * Scripts/build-webkit: Remove --v8 option.
-
-2012-07-17  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r122834.
-        http://trac.webkit.org/changeset/122834
-        https://bugs.webkit.org/show_bug.cgi?id=91492
-
-        it broke the chromium (Requested by kkristof on #webkit).
-
-        * Scripts/build-webkit:
-
-2012-07-17  Gabor Ballabas  <gaborb@inf.u-szeged.hu>
-
-        [Qt][V8] Remove the V8 related codepaths and configuration
-        https://bugs.webkit.org/show_bug.cgi?id=90863
-
-        Reviewed by Simon Hausmann.
-
-        * Scripts/build-webkit: Remove --v8 option.
-
-2012-07-17  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt] Add --use-test-fonts option to Minibrowser
-        https://bugs.webkit.org/show_bug.cgi?id=91402
-
-        Reviewed by Tor Arne Vestbø.
-
-        Same stuff that already exists for QtTestBrowser.
-
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::handleUserOptions):
-
-2012-07-17  Adam Barth  <abarth@webkit.org>
-
-        [Chromium] TestInterfaces should be responsible for owning and binding AccessibilityController and TextInputController
-        https://bugs.webkit.org/show_bug.cgi?id=91459
-
-        Reviewed by Ryosuke Niwa.
-
-        Rather than having TestShell own and bind each of these JavaScript APIs
-        individually, TestShell should delegate that work to TestInterfaces.
-        This patch moves AccessibilityController and TextInputController to be
-        the responsibility of TestInterfaces.
-
-        * DumpRenderTree/chromium/TestRunner/TestInterfaces.cpp:
-        (TestInterfaces::TestInterfaces):
-        (TestInterfaces::~TestInterfaces):
-        (TestInterfaces::setWebView):
-        (TestInterfaces::bindTo):
-        (TestInterfaces::resetAll):
-        * DumpRenderTree/chromium/TestRunner/TestInterfaces.h:
-        (WebKit):
-        (TestInterfaces):
-        (TestInterfaces::accessibilityController):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::initialize):
-        (TestShell::createMainWindow):
-        (TestShell::~TestShell):
-        (TestShell::resetTestController):
-        (TestShell::bindJSObjectsToWindow):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell::accessibilityController):
-        (TestShell):
-
-2012-07-17  Adam Barth  <abarth@webkit.org>
-
-        [Chromium] Move TextInputController into TestRunner.a
-        https://bugs.webkit.org/show_bug.cgi?id=91457
-
-        Reviewed by Ryosuke Niwa.
-
-        This patch is purely moving code. TextInputController is one of the
-        objects exposed to JavaScript and so should be in the TestRunner
-        library.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/TextInputController.cpp: Renamed from Tools/DumpRenderTree/chromium/TextInputController.cpp.
-        * DumpRenderTree/chromium/TestRunner/TextInputController.h: Renamed from Tools/DumpRenderTree/chromium/TextInputController.h.
-
-2012-07-17  Adam Barth  <abarth@webkit.org>
-
-        [Chromium] TextInputController shouldn't know about TestShell
-        https://bugs.webkit.org/show_bug.cgi?id=91455
-
-        Reviewed by Kent Tamura.
-
-        This patch uses the same pattern we used for the
-        AccessibilityController to remove the dependency on TestShell.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::initialize):
-        (TestShell::createMainWindow):
-        (TestShell::~TestShell):
-        * DumpRenderTree/chromium/TextInputController.cpp:
-        (TextInputController::TextInputController):
-        (TextInputController::insertText):
-        (TextInputController::doCommand):
-        (TextInputController::setMarkedText):
-        (TextInputController::unmarkText):
-        (TextInputController::hasMarkedText):
-        (TextInputController::markedRange):
-        (TextInputController::selectedRange):
-        (TextInputController::firstRectForCharacterRange):
-        (TextInputController::validAttributesForMarkedText):
-        (TextInputController::setComposition):
-        * DumpRenderTree/chromium/TextInputController.h:
-        (WebKit):
-        (TextInputController):
-        (TextInputController::setWebView):
-
-2012-07-17  David Barr  <davidbarr@chromium.org>
-
-        Introduce ENABLE_CSS_IMAGE_ORIENTATION compile flag
-        https://bugs.webkit.org/show_bug.cgi?id=89055
-
-        Reviewed by Kent Tamura.
-
-        The css3-images module is at candidate recommendation.
-        http://www.w3.org/TR/2012/CR-css3-images-20120417/#the-image-orientation
-
-        Add a configuration option for CSS image-orientation support, disabling it by default.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2012-07-16  Adam Barth  <abarth@webkit.org>
-
-        [Chromium] Move Task.(cpp|h) into TestRunner.a
-        https://bugs.webkit.org/show_bug.cgi?id=91446
-
-        Reviewed by Ryosuke Niwa.
-
-        Task is a dependency of EventSender, which needs to move into TestRunner.a.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/Task.cpp: Renamed from Tools/DumpRenderTree/chromium/Task.cpp.
-        * DumpRenderTree/chromium/TestRunner/Task.h: Renamed from Tools/DumpRenderTree/chromium/Task.h.
-
-2012-07-16  Adam Barth  <abarth@webkit.org>
-
-        [Chromium] Move AccessibilityController and AccessibilityUIElement into TestRunner.a
-        https://bugs.webkit.org/show_bug.cgi?id=91443
-
-        Reviewed by Tony Chang.
-
-        Purely a file move (and a sorting of #includes).
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/AccessibilityController.cpp: Renamed from Tools/DumpRenderTree/chromium/AccessibilityController.cpp.
-        * DumpRenderTree/chromium/TestRunner/AccessibilityController.h: Renamed from Tools/DumpRenderTree/chromium/AccessibilityController.h.
-        * DumpRenderTree/chromium/TestRunner/AccessibilityUIElement.cpp: Renamed from Tools/DumpRenderTree/chromium/AccessibilityUIElement.cpp.
-        * DumpRenderTree/chromium/TestRunner/AccessibilityUIElement.h: Renamed from Tools/DumpRenderTree/chromium/AccessibilityUIElement.h.
-
-2012-07-16  Adam Barth  <abarth@webkit.org>
-
-        [Chromium] AccessibilityController shouldn't know anything about TestShell
-        https://bugs.webkit.org/show_bug.cgi?id=91441
-
-        Reviewed by Tony Chang.
-
-        This patch is a precursor to moving AccessibilityController.cpp into TestRunner.a.
-
-        * DumpRenderTree/chromium/AccessibilityController.cpp:
-        (AccessibilityController::AccessibilityController):
-        (AccessibilityController::getFocusedElement):
-        (AccessibilityController::getRootElement):
-        * DumpRenderTree/chromium/AccessibilityController.h:
-        (WebKit):
-        (AccessibilityController):
-        (AccessibilityController::setWebView):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::initialize):
-        (TestShell::createMainWindow):
-        (TestShell::~TestShell):
-
-2012-07-16  Adam Barth  <abarth@webkit.org>
-
-        [Chromium] Introduce TestInterfaces to hold all the JavaScript interfaces needed for LayoutTests
-        https://bugs.webkit.org/show_bug.cgi?id=91312
-
-        Reviewed by Ryosuke Niwa.
-
-        Looking forward to moving more objects into TestRunner.a, we're going
-        to need an object to own all the interfaces and to put them through
-        their lifecycle.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::initialize):
-        (TestShell::resetTestController):
-        (TestShell::bindJSObjectsToWindow):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell):
-        * DumpRenderTree/chromium/TestRunner/TestInterfaces.cpp: Added.
-        * DumpRenderTree/chromium/TestRunner/TestInterfaces.h: Added.
-
-2012-07-16  Ryuan Choi  <ryuan.choi@samsung.com>
-
-        [EFL][WK2] Add APIs to support theme.
-        https://bugs.webkit.org/show_bug.cgi?id=90107
-
-        Reviewed by Hajime Morita.
-
-        Override default theme path for MiniBrowser and WebKitTestRunner.
-
-        * MiniBrowser/efl/CMakeLists.txt:
-        * MiniBrowser/efl/main.c:
-        (browserCreate):
-        * WebKitTestRunner/PlatformEfl.cmake:
-        * WebKitTestRunner/efl/PlatformWebViewEfl.cpp:
-        (WTR::PlatformWebView::PlatformWebView):
-
-2012-07-16  Ryuan Choi  <ryuan.choi@samsung.com>
-
-        [EFL][DRT] Implement dumpFrameScrollPosition
-        https://bugs.webkit.org/show_bug.cgi?id=87638
-
-        Reviewed by Hajime Morita.
-
-        * DumpRenderTree/efl/DumpRenderTree.cpp:
-        (dumpFrameScrollPosition): Implemented.
-        (shouldDumpFrameScrollPosition): Fixed wrong condition like other ports.
-
-2012-07-16  Don Olmstead  <don.olmstead@am.sony.com>
-
-        NRWRT Should provide a VS project to work on
-        https://bugs.webkit.org/show_bug.cgi?id=91436
-
-        Reviewed by Dirk Pranke.
-
-        Adding VS2010 project for modifying webkitpy. Uses pytools
-        <http://pytools.codeplex.com> which integrates python into 
-        Visual Studio.
-
-        * Scripts/webkitpy/webkitpy.pyproj: Added.
-        * Scripts/webkitpy/webkitpy.sln: Added.
-
-2012-07-16  Adam Barth  <abarth@webkit.org>
-
-        [Chromium] Move GamepadController into TestRunner.a
-        https://bugs.webkit.org/show_bug.cgi?id=91311
-
-        Reviewed by Tony Chang.
-
-        GamepadController looks like a simple class to move into TestRunner.a
-        because it has almost zero dependence on TestShell.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/CppBoundClass.cpp: Renamed from Tools/DumpRenderTree/chromium/CppBoundClass.cpp.
-        * DumpRenderTree/chromium/TestRunner/CppBoundClass.h: Renamed from Tools/DumpRenderTree/chromium/CppBoundClass.h.
-        * DumpRenderTree/chromium/TestRunner/CppVariant.cpp: Renamed from Tools/DumpRenderTree/chromium/CppVariant.cpp.
-        * DumpRenderTree/chromium/TestRunner/CppVariant.h: Renamed from Tools/DumpRenderTree/chromium/CppVariant.h.
-            - GamepadController depends on these bindings helpers.
-        * DumpRenderTree/chromium/TestRunner/GamepadController.cpp: Renamed from Tools/DumpRenderTree/chromium/GamepadController.cpp.
-        * DumpRenderTree/chromium/TestRunner/GamepadController.h: Renamed from Tools/DumpRenderTree/chromium/GamepadController.h.
-            - Just moved these files and removed the unused TestShell
-              references.
-        * DumpRenderTree/chromium/TestRunner/Stub.cpp: Removed.
-            - No longer needed.
-        * DumpRenderTree/chromium/TestShell.cpp:
-            - Update call to constructor to avoid passing in this.
-
-2012-07-16  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-android] Don't use test_shell mode of DRT
-        https://bugs.webkit.org/show_bug.cgi?id=88542
-
-        Reviewed by Dirk Pranke.
-
-        Test shell mode is about to be removed.
-        Switch to use DRT mode for chromium-android.
-
-        Summary of changes:
-        1. ChromiumAndroidDriver now inherits from WebKitDriver instead of ChromiumDriver (to be deprecated).
-        2. Conforms to the DRT mode protocol for input/output of DumpRenderTree.
-        3. Added support for Android 'adb shell' input/output (base64, newline mode, etc.)
-
-        * DumpRenderTree/chromium/TestEventPrinter.cpp:
-        (DRTPrinter::handleImage): Outputs base64 on Android.
-        * DumpRenderTree/chromium/TestShellAndroid.cpp:
-        (platformInit): Changed err_file to err_fifo, required by python ServerProcess.
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.__init__):
-        (ChromiumAndroidPort.create_driver): Override to create driver without DriverProxy to ensure 1 Driver per run.
-        (ChromiumAndroidDriver):
-        (ChromiumAndroidDriver.__init__):
-        (ChromiumAndroidDriver.cmd_line):
-        (ChromiumAndroidDriver._deadlock_detector):
-        (ChromiumAndroidDriver._drt_cmd_line):
-        (ChromiumAndroidDriver.start):
-        (ChromiumAndroidDriver._start):
-        (ChromiumAndroidDriver._start_once):
-        (ChromiumAndroidDriver.run_test):
-        (ChromiumAndroidDriver.stop):
-        (ChromiumAndroidDriver._command_from_driver_input):
-        (ChromiumAndroidDriver._read_prompt):
-        * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:
-        (ChromiumAndroidPortTest.test_driver_cmd_line):
-        (ChromiumAndroidDriverTest.test_cmd_line):
-        (ChromiumAndroidDriverTest):
-        (ChromiumAndroidDriverTest.test_drt_cmd_line):
-        (ChromiumAndroidDriverTest.test_read_prompt):
-        (ChromiumAndroidDriverTest.test_command_from_driver_input):
-        (ChromiumAndroidDriverTest.test_write_command_and_read_line):
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        (ServerProcess.__init__): Added universal_newlines to handle Android 'adb shell' line ends.
-        (ServerProcess._start):
-        (ServerProcess._wait_for_data_and_update_buffers_using_select): Handles unexpected EOF which indicates crash on Android.
-        (ServerProcess.stop): Added kill_directly parameter to kill the process without waiting it (which always timeouts for Android).
-        (ServerProcess.replace_outputs): Added to combine different input/output pipes into one ServerProcess.
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver._command_from_driver_input):
-        (WebKitDriver.run_test): Changed timeout origin so that slow start() on Android won't cause timeout of layout test case.
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (MockServerProcess.read_stdout):
-        (MockServerProcess.start):
-        (MockServerProcess):
-        (MockServerProcess.stop):
-        (MockServerProcess.kill):
-        (WebKitDriverTest.test_read_block):
-        (WebKitDriverTest.test_read_binary_block):
-        (WebKitDriverTest.test_read_base64_block):
-
-2012-07-16  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: move a bunch of printing code from manager.py to printing.py
-        https://bugs.webkit.org/show_bug.cgi?id=91439
-
-        Reviewed by Ojan Vafai.
-
-        All of the logic that handles what gets logged should eventually
-        live in printing.py; this patch moves a large chunk of code that
-        prints all of the stuff after the run completes.
-
-        There are no functional changes, this is just moving code
-        around. Covered by existing tests (updated as necessary).
-
-        This code is all pretty messy and most of it should be deleted
-        (or extracted after the fact from results.json), but I'm saving
-        that for further patches. My goal is just to manager.py to a
-        more manageable state.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.prepare_lists_and_print_output):
-        (Manager.run):
-        (Manager._mark_interrupted_tests_as_skipped):
-        (Manager._update_summary_with_result):
-        (Manager._num_digits):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ManagerTest.test_interrupt_if_at_failure_limits):
-        (ResultSummaryTest.summarized_results):
-        * Scripts/webkitpy/layout_tests/models/result_summary.py:
-        (ResultSummary.__init__):
-        (ResultSummary.add):
-        Here we had to add a list of the slow tests to the result
-        summary so that we didn't need to call back into the manager and
-        the test expectations object to figure out if a test is SLOW.
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (Printer.print_results):
-        (Printer):
-        (Printer._print_timing_statistics):
-        (Printer._print_aggregate_test_statistics):
-        (Printer._print_individual_test_times):
-        (Printer._print_test_list_timing):
-        (Printer._print_directory_timings):
-        (Printer._print_statistics_for_test_timings):
-        (Printer._print_result_summary):
-        (Printer._print_result_summary_entry):
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-        (Testprinter.test_print_unexpected_results.get_unexpected_results):
-        (Testprinter):
-
-2012-07-16  Adam Barth  <abarth@webkit.org>
-
-        [Chromium] Create a stub TestRunner.a target
-        https://bugs.webkit.org/show_bug.cgi?id=91309
-
-        Reviewed by Ryosuke Niwa.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestRunner/Stub.cpp: Added.
-
-2012-07-16  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: clean up logging to make it ninja-esque
-        https://bugs.webkit.org/show_bug.cgi?id=91297
-
-        Reviewed by Adam Barth.
-
-        This patch changes the output of test-webkitpy to be closer to
-        what ninja produces. Namely:
-
-        If you are running with stderr writing to a tty (and not -v), we
-        will no longer print '...' as tests complete. Instead, we use a
-        metered stream and print entries of the form:
-           '[X/Y] test_name passed/failed/erred'
-        where X is the current test # and Y is the total number of tests.
-
-        If you are running with stderr piped to a file or other non-tty
-        object (or with -v), you get the same output, one per line for
-        every test.
-
-        In addition, if tests fail or err out, you get the stack trace
-        immediately; you don't have to wait until the end of the run.
-
-        Lastly, this change cleans up the unit tests for test-webkitpy
-        itself to not confuse the logger and to work cleanly w/ multiple
-        processes. It looks like between this and all the clean up in
-        MessagePool that happened as it landed, we can now run
-        multiprocessing tests in parallel.
-
-        * Scripts/webkitpy/test/finder.py:
-        (Finder._default_names):
-        * Scripts/webkitpy/test/finder_unittest.py:
-        (FinderTest.setUp):
-        (FinderTest.tearDown):
-        * Scripts/webkitpy/test/printer.py:
-        (Printer.__init__):
-        (Printer.configure):
-        (Printer.print_started_test):
-        (Printer.print_finished_test):
-        (Printer._test_line):
-        (Printer.print_result):
-        * Scripts/webkitpy/test/runner.py:
-        (Runner.run):
-        * Scripts/webkitpy/test/runner_unittest.py:
-        (RunnerTest.setUp):
-        (RunnerTest):
-        (RunnerTest.tearDown):
-        (RunnerTest.assert_run):
-        (RunnerTest.test_regular):
-        (RunnerTest.test_verbose):
-        (RunnerTest.test_timing):
-
-2012-07-16  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: handle failures properly when running in parallel
-        https://bugs.webkit.org/show_bug.cgi?id=91416
-
-        Reviewed by Adam Barth.
-
-        It turns out that unittest.TestResults contain a handle to the
-        test method itself, which isn't picklable; it's sufficient to just
-        store the test name instead of the actual method. By doing so
-        we can move the test_name() method from the printer to the
-        runner where it belongs (so the printer is less dependent on the
-        unittest framework's data structures).
-
-        This change should really have a test but I don't know how to
-        write one that properly captures the behavior and won't cause
-        test-webkitpy itself to fail. I've verified the fix by hand, at
-        least, in the meantime.
-
-        * Scripts/webkitpy/test/printer.py:
-        (Printer.__init__):
-        (Printer.print_result):
-        * Scripts/webkitpy/test/runner.py:
-        (_test_name):
-        (Runner.all_test_names):
-        (_Worker.handle):
-
-2012-07-16  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: handle failures properly when running in parallel
-        https://bugs.webkit.org/show_bug.cgi?id=91416
-
-        Reviewed by Tony Chang.
-
-        It turns out that unittest.TestResults contain a handle to the
-        test method itself, which isn't picklable; it's sufficient to just
-        store the test name instead of the actual method. By doing so
-        we can move the test_name() method from the printer to the
-        runner where it belongs (so the printer is less dependent on the
-        unittest framework's data structures).
-
-        This change should really have a test but I don't know how to
-        write one that properly captures the behavior and won't cause
-        test-webkitpy itself to fail. I've verified the fix by hand, at
-        least, in the meantime.
-
-        * Scripts/webkitpy/test/printer.py:
-        (Printer.__init__):
-        (Printer.print_result):
-        * Scripts/webkitpy/test/runner.py:
-        (_test_name):
-        (Runner.all_test_names):
-        (_Worker.handle):
-
-2012-07-16  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: run tests in parallel
-        https://bugs.webkit.org/show_bug.cgi?id=91294
-
-        Reviewed by Ojan Vafai.
-
-        This change adds support for running tests in parallel. This is
-        not yet on by default, since the logging isn't very pretty w/
-        parallel tests.
-
-        Also, there are some (multiprocessing-related) tests that can't be
-        run in parallel and so we skip them in that situation; I need to
-        come up with a mechanism for dealing with this, since you
-        apparently can't use multiprocessing as both a parent and a
-        child process.
-
-        * Scripts/webkitpy/test/finder.py:
-        (Finder.find_names):
-        (Finder._default_names):
-        * Scripts/webkitpy/test/main.py:
-        (Tester._parse_args):
-        (Tester.run):
-        * Scripts/webkitpy/test/main_unittest.py:
-        (TesterTest.test_no_tests_found):
-        * Scripts/webkitpy/test/runner.py:
-        (Runner.run):
-        * Scripts/webkitpy/test/runner_unittest.py:
-        (RunnerTest.test_regular):
-        (RunnerTest.test_verbose):
-        (RunnerTest.test_timing):
-
-2012-07-16  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: use message pools
-        https://bugs.webkit.org/show_bug.cgi?id=91292
-
-        Reviewed by Ojan Vafai.
-
-        Restructure the test-running code to be message-driven and
-        use a MessagePool; note that this does not yet actually run the
-        tests in parallel.
-
-        Also clean up the unit tests so that the fake loader is passed
-        to the _Worker properly, and reduce a lot of the cut&pasted code
-        in the tests.
-
-        No functional changes; covered by existing tests.
-
-        * Scripts/webkitpy/test/printer.py:
-        (Printer.print_started_test):
-        (Printer.print_finished_test):
-        * Scripts/webkitpy/test/runner.py:
-        (Runner.__init__):
-        (Runner.run):
-        (Runner.handle):
-        (_Worker):
-        (_Worker.__init__):
-        (_Worker.handle):
-        * Scripts/webkitpy/test/runner_unittest.py:
-        (RunnerTest.assert_run):
-        (RunnerTest.test_regular):
-        (RunnerTest.test_verbose):
-        (RunnerTest.test_timing):
-
-2012-07-16  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Fix Qt5 module dependencies
-        https://bugs.webkit.org/show_bug.cgi?id=91388
-
-        Reviewed by Laszlo Gombos.
-
-        Removed ancient qtscript and qtxmlpatterns module dependencies.
-
-        * qmake/qt_webkit.pri:
-
-2012-07-16  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        run-webkit-test returns 254 at exit even when it succeeds
-        https://bugs.webkit.org/show_bug.cgi?id=91370
-
-        Reviewed by Simon Hausmann.
-
-        sys.exit() is implemented by raising SystemExit which inherits from
-        BaseException. Since we are catching BaseException, run_webkit_tests.py
-        was always returning an error code.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-
-2012-07-15  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed. Fix make distcheck.
-
-        * GNUmakefile.am: Add missing file to compilation.
-
-2012-07-15  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Unreviewed. Add EFLWebKit2PublicAPI, EFLWebKit2PlatformSpecific to watch list.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-07-15  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Unreviewed. Add gyuyoung.kim@samsung.com to watch list.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-07-15  Joseph Pecoraro  <pecoraro@apple.com>
-
-        Windowless WebView not firing JavaScript load event if there is a media element
-        https://bugs.webkit.org/show_bug.cgi?id=91331
-
-        Reviewed by Eric Carlson.
-
-        Test a windowless WebView loading a page with a media element. The load
-        event should happen on the next spin of the run loop, but we spin check
-        the page, with a timeout of 250ms.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/mac/WindowlessWebViewWithMedia.html: Added.
-        * TestWebKitAPI/Tests/mac/WindowlessWebViewWithMedia.mm: Added.
-        (-[WindowlessWebViewWithMediaFrameLoadDelegate webView:didFinishLoadForFrame:]):
-        (TestWebKitAPI::spinLoop): Spin check with timeout. Runs a block each spin to early bail.
-        (TestWebKitAPI::TEST):
-
-2012-07-14  Benjamin Poulain  <bpoulain@apple.com>
-
-        [Mac] Do not try to update the cache model for every WebPreferences change
-        https://bugs.webkit.org/show_bug.cgi?id=91302
-
-        Reviewed by Joseph Pecoraro.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/mac/SetAndUpdateCacheModel.mm: Added.
-        (TestWebKitAPI):
-        (TestWebKitAPI::TEST):
-
-2012-07-14  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r122665.
-        http://trac.webkit.org/changeset/122665
-        https://bugs.webkit.org/show_bug.cgi?id=91321
-
-        Broke Mac builds (Requested by rniwa on #webkit).
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/mac/SetAndUpdateCacheModel.mm: Removed.
-
-2012-07-13  Benjamin Poulain  <bpoulain@apple.com>
-
-        [Mac] Do not try to update the cache model for every WebPreferences change
-        https://bugs.webkit.org/show_bug.cgi?id=91302
-
-        Reviewed by Joseph Pecoraro.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/mac/SetAndUpdateCacheModel.mm: Added.
-        (TestWebKitAPI):
-        (TestWebKitAPI::TEST):
-
-2012-07-13  Dirk Pranke  <dpranke@chromium.org>
-
-        run-webkit-test outputs the wrong number of tests executed when some are skipped.
-        https://bugs.webkit.org/show_bug.cgi?id=89894
-
-        Reviewed by Ojan Vafai.
-
-        Fix the logging of the actual number of tests run so that tests
-        that are skipped aren't included.
-
-        Also revamp the 'expected' output so we distinguish the number
-        of tests found from the number of tests run (to account for
-        --repeat-each and --iterations).
-
-        Covered by existing tests.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.prepare_lists_and_print_output):
-        (Manager._log_num_workers):
-        (Manager.run):
-        (Manager._print_result_summary):
-        * Scripts/webkitpy/layout_tests/models/result_summary.py:
-        (ResultSummary.__init__):
-        (ResultSummary.add):
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (Printer.print_one_line_summary):
-        * Scripts/webkitpy/layout_tests/views/printing_unittest.py:
-        (Testprinter.test_print_one_line_summary):
-
-2012-07-13  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: actually print the exception name and message for otherwise unhandled exceptions
-        https://bugs.webkit.org/show_bug.cgi?id=91305
-
-        Reviewed by Adam Barth.
-
-        Two more places where I was printing the stack trace but not the
-        exception itself :(. These two spots can't easily be
-        unit-tested, but I tested them by hand.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (run):
-        (main):
-
-2012-07-13  Josh Hawn  <jhawn@apple.com>
-
-        Fix for WebContext::getWebCoreStatistics() causes crash if no m_process
-        https://bugs.webkit.org/show_bug.cgi?id=91116
-
-        Reviewed by Simon Fraser.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-            Added new test file.
-        * TestWebKitAPI/Tests/WebKit2/WebCoreStatisticsWithNoWebProcess.cpp: Added.
-        (TestWebKitAPI::wkContextGetStatisticsCallback):
-            Tests that callback function receives an error.
-        (TestWebKitAPI::TEST):
-            Creates a dummy web context object (no web process).
-            Calls WKContextGetStatistics with the web context and test callback.
-            The test callback should get an expected error.
-
-2012-07-13  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: move printing-related code out of the runner
-        https://bugs.webkit.org/show_bug.cgi?id=91289
-
-        Reviewed by Ryosuke Niwa.
-
-        More refactoring ... this moves all printing-related stuff out
-        of runner.py and into printer.py.
-
-        No functional changes; covered by existing tests.
-
-        * Scripts/webkitpy/test/main.py:
-        (Tester._run_tests):
-        * Scripts/webkitpy/test/printer.py:
-        (Printer.__init__):
-        (Printer):
-        (Printer.test_name):
-        (Printer.print_started_test):
-        (Printer.print_finished_test):
-        (Printer.print_result):
-        * Scripts/webkitpy/test/runner.py:
-        (Runner.__init__):
-        (Runner.all_test_names):
-        (Runner.run):
-        * Scripts/webkitpy/test/runner_unittest.py:
-        (RunnerTest.test_regular):
-        (RunnerTest.test_verbose):
-        (RunnerTest.test_timing):
-
-2012-07-13  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: split printing/logging code for test-webkitpy out into a new class
-        https://bugs.webkit.org/show_bug.cgi?id=91282
-
-        Reviewed by Ojan Vafai.
-
-        This patch is the first step at splitting all of the
-        printing/logging code out separately from the actual
-        test-running code.
-
-        This is just moving stuff around; no new functionality and no
-        new tests needed.
-
-        * Scripts/webkitpy/test/finder_unittest.py:
-        (FinderTest.setUp):
-        * Scripts/webkitpy/test/main.py:
-        (Tester.__init__):
-        (Tester._parse_args):
-        (Tester.run):
-        (Tester._run_tests):
-        (Tester._log_exception):
-        * Scripts/webkitpy/test/main_unittest.py:
-        (TesterTest.test_no_tests_found):
-        * Scripts/webkitpy/test/printer.py: Added.
-        (Printer):
-        (Printer.__init__):
-        (Printer.configure):
-        (Printer.configure.filter):
-        (_CaptureAndPassThroughStream):
-        (_CaptureAndPassThroughStream.__init__):
-        (_CaptureAndPassThroughStream.write):
-        (_CaptureAndPassThroughStream._message_is_from_pdb):
-        (_CaptureAndPassThroughStream.flush):
-        (_CaptureAndPassThroughStream.getvalue):
-
-2012-07-13  James Simonsen  <simonjam@chromium.org>
-
-        [Navigation Timing] Imported W3C tests contain duplicates and are DOS formatted
-        https://bugs.webkit.org/show_bug.cgi?id=91184
-
-        Reviewed by Adam Barth.
-
-        The upstream 'html5' tests are just duplicates of the 'html' tests.
-
-        * Scripts/import-w3c-performance-wg-tests:
-
-2012-07-13  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: hide yield_to_caller from callers in MessagePool :)
-        https://bugs.webkit.org/show_bug.cgi?id=91269
-
-        Reviewed by Adam Barth.
-
-        yield_to_caller() was an optimization/hack to allow us to run
-        both manager and worker in a single process/loop without
-        starving the manager while the worker is running tests. The
-        worker was required to call yield_to_caller() periodically. It
-        turns out that I can get equivalent responsiveness by yielding
-        inside the MessagePool every time the worker posts a message, and this
-        allows me to no longer need the worker to call the routine. Thus
-        I rename yield_to_caller() to _yield_to_manager() to be a little
-        clearer about its purpose.
-
-        Tested by existing tests.
-
-        * Scripts/webkitpy/common/message_pool.py:
-        (_Worker.run):
-        (_Worker.post):
-        (_Worker._yield_to_manager):
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        (Worker.handle):
-
-2012-07-13  Adam Barth  <abarth@webkit.org>
-
-        EWSTools should be able to build a commit-queue instance from scratch
-        https://bugs.webkit.org/show_bug.cgi?id=91264
-
-        Reviewed by Eric Seidel.
-
-        I've been using this script to build commit-queue instances on Google
-        Compute Engine and it seems to work.
-
-        * EWSTools/GoogleComputeEngine/build-commit-queue.sh: Added.
-
-2012-07-13  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: make worker.start() and worker.stop() optional in the messagepool
-        https://bugs.webkit.org/show_bug.cgi?id=91170
-
-        Reviewed by Ojan Vafai.
-
-        test-webkitpy will use messagepool workers that don't actually
-        have any per-worker state, so they don't need start() and stop()
-        methods. Now we will only call the methods if they exist; this
-        means that workers only need to expose a handle() method.
-
-        * Scripts/webkitpy/common/message_pool.py:
-        (_Worker.terminate):
-        (_Worker.run):
-
-2012-07-13  Dirk Pranke  <dpranke@chromium.org>
-
-        NRWT doesn't print exceptions
-        https://bugs.webkit.org/show_bug.cgi?id=91129
-
-        Reviewed by Ojan Vafai.
-
-        Although we printed exceptions in most cases, if an unexpected
-        exception (like a runtime error) was raised when creating a
-        port, we wouldn't. This patch fixes that, and also cleans up
-        how we were logging exceptions from the workers to be less
-        verbose.
-
-        Because of the corner cases where these errors are occurring,
-        it's difficult to write automated unit tests for them. I've
-        tested it quite a bit by hand, though.
-
-        * Scripts/webkitpy/common/message_pool.py:
-        (_MessagePool._close):
-        (_MessagePool._handle_worker_exception):
-        (_Worker.run):
-        (_Worker._raise):
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._run_tests):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (main):
-
-2012-07-13  Wei James  <james.wei@intel.com>
-
-        enable TestWebKitAPI/webkit_unit_tests apk on x86 android platform by adding abi support
-        https://bugs.webkit.org/show_bug.cgi?id=91194
-
-        Reviewed by Adam Barth.
-
-        * TestWebKitAPI/TestWebKitAPI.gyp/TestWebKitAPI.gyp:
-
-2012-07-13  Simon Pena  <spena@igalia.com>
-
-        [GTK] Gardening: update API tests skipped list
-        https://bugs.webkit.org/show_bug.cgi?id=91224
-
-        Unreviewed gardening.
-
-        Skip "next" and "previous" tests of FindController until bug #91083
-        is fixed.
-
-        * gtk/run-api-tests:
-        (TestRunner):
-
-2012-07-13  Zeno Albisser  <zeno@webkit.org>
-
-        [Qt][WK2] Implement GraphicsSurface for Linux/GLX.
-        https://bugs.webkit.org/show_bug.cgi?id=90881
-
-        Enable GraphicsSurface for Linux based platforms
-        whenever the Xcomposite extension is available.
-
-        Reviewed by Noam Rosenthal.
-
-        * qmake/config.tests/libXcomposite/libXcomposite.cpp: Added.
-        (main):
-        * qmake/config.tests/libXcomposite/libXcomposite.pro: Added.
-          Add a configure test to detect Xcomposite extension and
-          activate GraphicsSurface on linux in case the extension is available.
-        * qmake/configure.pri:
-        * qmake/mkspecs/features/features.prf:
-
-2012-07-13  David Grogan  <dgrogan@chromium.org>
-
-        nrwt: don't choke when printing invalid utf-8 to stderr
-        https://bugs.webkit.org/show_bug.cgi?id=91181
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer.py:
-        (TestResultWriter.write_stderr):
-
-2012-07-13  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: more class renaming cleanup
-        https://bugs.webkit.org/show_bug.cgi?id=91182
-
-        Reviewed by Adam Barth.
-
-        More removing of the unnecessary "Test" prefix.
-
-        * Scripts/webkitpy/test/finder.py:
-        (_DirectoryTree):
-        (Finder.add_tree):
-        * Scripts/webkitpy/test/main.py:
-        (Tester._run_tests):
-        * Scripts/webkitpy/test/runner.py:
-        (Runner):
-        * Scripts/webkitpy/test/runner_unittest.py:
-        (RunnerTest.test_regular):
-        (RunnerTest.test_verbose):
-        (RunnerTest.test_timing):
-
-2012-07-12  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2][EFL] Facilitate debugging of the Web Process
-        https://bugs.webkit.org/show_bug.cgi?id=90768
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add a new --webprocess-cmd-prefix argument to
-        run-webkit-tests script for EFL port. If provided,
-        the prefix will be prepended to the command used
-        to spawn the Web process. This can be used for
-        debugging purposes with prefixes such as:
-        "xterm -title renderer -e gdb --args".
-
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort.__init__):
-        (EflPort.setup_environ_for_server):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-        * WebKitTestRunner/efl/TestControllerEfl.cpp:
-        (WTR::TestController::platformRunUntil): Implement support for
-        m_noTimeout timeout value.
-
-2012-07-12  Adam Barth  <abarth@webkit.org>
-
-        Fix crash in the commit-queue.  We need to initialize self.port during __init__.
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-        (CommitQueue.__init__):
-        (CommitQueue.begin_work_queue):
-
-2012-07-12  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: rename test_finder to finder
-        https://bugs.webkit.org/show_bug.cgi?id=91175
-
-        Reviewed by Adam Barth.
-
-        Rename test_finder -> finder, TestFinder -> Finder to remove
-        some of the stutter in the names.
-
-        * Scripts/webkitpy/test/finder.py: Renamed from Tools/Scripts/webkitpy/test/test_finder.py.
-        * Scripts/webkitpy/test/finder_unittest.py: Renamed from Tools/Scripts/webkitpy/test/test_finder_unittest.py.
-        * Scripts/webkitpy/test/main.py:
-        (Tester.__init__):
-
-2012-07-12  Adam Barth  <abarth@webkit.org>
-
-        CommitQueue is confused about what port it is using
-        https://bugs.webkit.org/show_bug.cgi?id=91040
-
-        Reviewed by Dirk Pranke.
-
-        On EC2, we explicitly pass --port to the commit-queue, but that
-        requires editing the start-queue.sh script locally on each bot. In
-        moving to Google Compute Engine, we're try to avoid any local edits to
-        the EWSTools.
-
-        Rather than passing --port to the commit-queue, this patch teaches the
-        CommitQueue which port its running, which is the approach we use for
-        the EWS bots.
-
-        Mutating tool._deprecated_port is a bit ugly, but it's what we're doing
-        currently for the EWS bots.
-
-        * Scripts/webkitpy/tool/commands/queues.py:
-        (CommitQueue):
-        (CommitQueue.begin_work_queue):
-        (CommitQueue.run_command):
-        * Scripts/webkitpy/tool/commands/queues_unittest.py:
-        (CommitQueueTest.test_commit_queue):
-        (mock_run_webkit_patch):
-        (test_rollout):
-        (test_rollout_lands):
-        (test_manual_reject_during_processing):
-
-2012-07-12  James Simonsen  <simonjam@chromium.org>
-
-        [Navigation Timing] Import the W3C Navigation Timing test suite
-        https://bugs.webkit.org/show_bug.cgi?id=84887
-
-        Reviewed by Tony Gentilcore.
-
-        * Scripts/import-w3c-performance-wg-tests: Added.
-
-2012-07-12  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.  Nit: git config files use tabs, not spaces.
-
-        * EWSTools/cold-boot.sh:
-
-2012-07-12  Kwang Yul Seo  <skyul@company100.net>
-
-        Unreviewed. Add Dongsung Huang to the list of contributors. He
-        has submitted over 30 patches on texture mapper, canvas and image decoders.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-07-12  Kwang Yul Seo  <skyul@company100.net>
-
-        Unreviewed. Change my irc nickname to kseo.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-07-12  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: clean up logging handlers, lint common.message_pool
-        https://bugs.webkit.org/show_bug.cgi?id=91152
-
-        Reviewed by Ojan Vafai.
-
-        The unix implementation of multiprocessing clones any logging
-        handlers from the parent process into the child; we currently
-        don't want this behavior in our code, so I was hand-removing the
-        installed handlers in the child process I knew about. After thinking
-        about it further, I think it was simpler and safe enough to just
-        remove all handlers in the child, since the message pool
-        propagates any message from the child back into the parent.
-        
-        We can always change this in the future if it turns out to be an issue.
-
-        I'm also fixing a couple of other lint warnings while I'm at it.
-
-        * Scripts/webkitpy/common/message_pool.py:
-        (_MessagePool.__exit__):
-        (_MessagePool._handle_worker_exception):
-        (_Worker._set_up_logging):
-
-2012-07-12  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: rename manager_worker_broker to message_pool
-        https://bugs.webkit.org/show_bug.cgi?id=91145
-
-        Reviewed by Ojan Vafai.
-
-        Since the MessagePool interface is more generic (and simpler)
-        now and will be reused by test-webkitpy, I'm renaming it and
-        moving it to webkitpy.common.
-
-        * Scripts/webkitpy/common/message_pool.py: Renamed from Tools/Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py.
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (TestRunInterruptedException.__reduce__):
-        (Manager._run_tests.worker_factory):
-        (Manager._run_tests):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-
-2012-07-12  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt crashes saving the output for a platform-specific expected test reference
-        https://bugs.webkit.org/show_bug.cgi?id=90872
-
-        Reviewed by Ojan Vafai.
-
-        The expected output for a test is copied alongside the test
-        itself in the layout-test-results directory; in other words, for
-        foo/bar-expected.txt sits alongside foo/bar.html even if we're
-        actually using platform/mac/foo/bar-expected.txt.
-
-        Unless the test is a reftest, in which case we would copy the
-        output to platform/mac/foo/bar-expected.html and set a
-        'ref_file' parameter in results.json to indicate the path. This
-        can be useful in the cases where we have multiple references for
-        a single test or when multiple tests share the same reference.
-
-        We found a bug where we weren't creating platform/mac/foo under
-        the results directory, and so this wasn't actually working.
-        However, treating reftests differently seems like a bad thing,
-        so we should probably be consistent. This change puts the
-        -expected.html next to the test, and reworks test_result_writer
-        so that we create directories uniformly and consistently.
-
-        Note that we weren't catching this problem in unit tests because
-        the MockFileSystem creates a directory automatically if it
-        doesn't exist; this was done intentionally for convenience, but
-        is really a bug and should be fixed; see https://bugs.webkit.org/show_bug.cgi?id=91028.
-
-        I have not added additional tests here since fixing that bug
-        should be sufficient.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (interpret_test_failures):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ResultSummaryTest.test_interpret_test_failures):
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer.py:
-        (write_test_result):
-        (TestResultWriter._write_binary_file):
-        (TestResultWriter):
-        (TestResultWriter._write_text_file):
-        (TestResultWriter.write_output_files):
-        (TestResultWriter.write_stderr):
-        (TestResultWriter.write_crash_log):
-        (TestResultWriter.create_text_diff_and_write_result):
-        (TestResultWriter.write_image_diff_files):
-        (write_reftest):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (EndToEndTest.test_reftest_with_two_notrefs):
-
-2012-07-12  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: reimplement manager_worker_broker in a much simpler form
-        https://bugs.webkit.org/show_bug.cgi?id=90513
-
-        Reviewed by Ojan Vafai.
-
-        This is a wholesale replacement of the MessagePool() implementation
-        and the other classes in manager_worker_broker.py. All of the
-        BrokerConnection*, Broker*, etc. classes are gone, and there are now
-        just a MessagePool class and a _Worker class. Happiness ensues.
- 
-        I'm removing manager_worker_broker_unittest.py as well; we get
-        nearly complete coverage from the integration tests, and will
-        get more coverage when test-webkitpy moves to use this as well,
-        so having unit tests seems like unnecessary overhead. (running
-        coverage numbers with test-webkitpy shows that pretty much the only
-        uncovered lines are lines that are only run in the child processes,
-        which coverage doesn't handle at the moment).
- 
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        (_MessagePool.__init__):
-        (_MessagePool.run):
-        (_MessagePool._start_workers):
-        (_MessagePool):
-        (_MessagePool.wait):
-        (_MessagePool._close):
-        (_MessagePool._handle_done):
-        (_MessagePool._can_pickle):
-        (_MessagePool._loop):
-        (WorkerException):
-        (_Message.__init__):
-        (_Message.__repr__):
-        (_Worker):
-        (_Worker.__init__):
-        (_Worker.terminate):
-        (_Worker._close):
-        (_Worker.run):
-        (_Worker.post):
-        (_Worker.yield_to_caller):
-        (_Worker._post):
-        (_Worker._raise):
-        (_Worker._set_up_logging):
-        (_WorkerLogHandler.__init__):
-        (_WorkerLogHandler.emit):
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker_unittest.py: Removed.
-
-2012-07-12  Tony Chang  <tony@chromium.org>
-
-        [chromium] Remove drag and drop API methods that are no longer used
-        https://bugs.webkit.org/show_bug.cgi?id=90996
-
-        Reviewed by Adam Barth.
-
-        Migrate DRT to use the methods that take modifier keys.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::doDragDrop):
-        (EventSender::doMouseUp):
-        (EventSender::doMouseMove):
-        (EventSender::beginDragWithFiles):
-
-2012-07-12  Ojan Vafai  <ojan@chromium.org>
-
-        Allow putting ranges in user.py list prompts
-        https://bugs.webkit.org/show_bug.cgi?id=91115
-
-        Reviewed by Adam Barth.
-
-        Ranges are inclusive and denoted by a dash. This is useful for rebaselining a whole port
-        since the items are listed with each port's builders being contiguous.
-
-        * Scripts/webkitpy/common/system/user.py:
-        (User._wait_on_list_response):
-        * Scripts/webkitpy/common/system/user_unittest.py:
-        (UserTest.test_prompt_with_multiple_lists.run_prompt_test):
-        (UserTest.test_prompt_with_multiple_lists):
-
-2012-07-12  Arnaud Renevier  <arno@renevier.net>
-
-        [GTK] Implement disableImageLoading in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=87973
-
-        Reviewed by Martin Robinson.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::disableImageLoading):
-
-2012-07-12  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Internal symbols are exported on Linux
-        https://bugs.webkit.org/show_bug.cgi?id=90981
-
-        Reviewed by Jocelyn Turcotte.
-
-        I should've re-enabled ELF symbol visibility when removing the symbol map in
-        r106650.
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2012-07-11  Mark Rowe  <mrowe@apple.com>
-
-        <http://webkit.org/b/91024> Build against the latest SDK when targeting older OS X versions.
-
-        Reviewed by Dan Bernstein.
-
-        The deployment target is already set to the version that we're targeting, and it's that setting
-        which determines which functionality from the SDK is available to us.
-
-        * DumpRenderTree/mac/Configurations/Base.xcconfig:
-        * TestWebKitAPI/Configurations/Base.xcconfig:
-        * WebKitTestRunner/Configurations/Base.xcconfig:
-
-2012-07-11  Mark Rowe  <mrowe@apple.com>
-
-        Replace definitions of BUILDING_ON / TARGETING macros with macros that will error when used.
-
-        Part of <http://webkit.org/b/91015> Remove BUILDING_ON / TARGETING macros in favor of system availability macros.
-
-        Reviewed by Anders Carlsson.
-
-        * DumpRenderTree/TestNetscapePlugIn/PluginObject.h: Remove the macros completely from here since
-        they're completely unused in TestNetscapePlugIn.
-        * DumpRenderTree/config.h:
-
-2012-07-11  Mark Rowe  <mrowe@apple.com>
-
-        <http://webkit.org/b/91015> Remove BUILDING_ON / TARGETING macros in favor of system availability macros
-
-        This removal was handled by a script that translates the relevant macros in to the equivalent checks
-        using the system availability macros.
-
-        Reviewed by Filip Pizlo.
-
-        * DumpRenderTree/cf/WebArchiveDumpSupport.cpp:
-        * DumpRenderTree/mac/CheckedMalloc.cpp:
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        * DumpRenderTree/mac/DumpRenderTreeDraggingInfo.mm:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        * DumpRenderTree/mac/TextInputController.m:
-        * TestWebKitAPI/mac/InjectedBundleControllerMac.mm:
-        * WebKitTestRunner/InjectedBundle/mac/ActivateFonts.mm:
-        * WebKitTestRunner/InjectedBundle/mac/InjectedBundleMac.mm:
-
-2012-07-11  Robert Kroeger  <rjkroege@chromium.org>
-
-        Suppress horizontal conversion of PlatformWheelEvents when hasPreciseScrollingDeltas is true
-        https://bugs.webkit.org/show_bug.cgi?id=89580
-
-        WebKit GTK and Chromium Linux force vertical wheel events to
-        scroll horizontally when over horizontal scroll bars.  This is
-        undesirable for touchpad scrolling with
-        hasPreciseScrollingDeltas() == true. Modified DumpRenderTree to
-        let a layout test specify this attribute so that the change's impact
-        on scrolling can be tested in a layout test.
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::handleMouseWheel):
-
-2012-07-11  Simon Fraser  <simon.fraser@apple.com>
-
-        Fix the build by declaring -isPaginated before use.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-
-2012-07-11  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r122358.
-        http://trac.webkit.org/changeset/122358
-        https://bugs.webkit.org/show_bug.cgi?id=91037
-
-        Build break on WebKit Win (Requested by hayato on #webkit).
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::doDragDrop):
-        (EventSender::doMouseUp):
-        (EventSender::doMouseMove):
-        (EventSender::beginDragWithFiles):
-
-2012-07-03  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: add a MessagePool abstraction that the manager will call to replace the broker
-        https://bugs.webkit.org/show_bug.cgi?id=90511
-
-        Reviewed by Ojan Vafai.
-
-        This change introduces the new MessagePool abstraction that will
-        replace the classes in manager_worker_broker. It is a minimal
-        interface that tries to follow the conventions in
-        multiprocessing.Pool and concurrency.futures ... it provides a
-        context manager and a run() method that sends N messages to M
-        workers processes (starting workers as necessary) and waits for
-        them all to complete, handling cleanup as necessary. The caller
-        is responsible for providing a handle() method to handle
-        messages received from the workers.
-        
-        This interface basically hides all of the multiprocessing logic from
-        the manager class.
-
-        The initial implementation of MessagePool is a simple shim
-        around the existing broker classes; a subsequent change will
-        replace all the other classes with a much simpler
-        implementation.
-
-        No additional tests are provided for now; existing tests should
-        provide adequate coverage, and I will add new unit tests for the
-        MessagePool class when I replace the existing implementation.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (TestRunInterruptedException.__reduce__):
-        (Manager.__init__):
-        (Manager._run_tests):
-        (Manager._run_tests.instead):
-        (Manager.handle):
-        (Manager._handle_started_test):
-        (Manager._handle_finished_test_list):
-        (Manager._handle_finished_test):
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        (get):
-        (_MessagePool):
-        (_MessagePool.__init__):
-        (_MessagePool.__enter__):
-        (_MessagePool.__exit__):
-        (_MessagePool.run):
-        (_MessagePool.wait):
-        (_MessagePool.is_done):
-        (_MessagePool._worker_is_done):
-        (_MessagePool._close):
-        (_MessagePool.handle_done):
-        (_MessagePool.handle_started_test):
-        (_MessagePool.handle_finished_test):
-        (_MessagePool.handle_finished_test_list):
-        (_MessagePool.handle_exception):
-        (_MessagePool._log_messages):
-        (_MessagePool._handle_worker_exception):
-        (_WorkerState):
-        (_WorkerState.for):
-        (_WorkerState.__init__):
-        (_WorkerState.__repr__):
-        (_get_broker):
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker_unittest.py:
-        (make_broker):
-
-2012-07-11  Simon Fraser  <simon.fraser@apple.com>
-
-        Add an option to enter paginated mode in MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=91035
-
-        Reviewed by Dan Bernstein.
-
-        Add an item to the Debug menu for MiniBrowser that puts
-        the web view into paginated mode. For now, we only
-        do left-to-right pagination, with a fixed column width.
-
-        * MiniBrowser/mac/BrowserWindowController.h:
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController validateMenuItem:]): Update the checked
-        state of the menu item.
-        (-[BrowserWindowController isPaginated]): Return YES if paginated.
-        (-[BrowserWindowController togglePaginationMode:]): Toggle in
-        and out of pagination mode.
-        * MiniBrowser/mac/MainMenu.xib: Add the debug menu item.
-
-2012-07-11  Adam Barth  <abarth@webkit.org>
-
-        commit-queue instances on Compute Engine are missing git-svn
-        https://bugs.webkit.org/show_bug.cgi?id=91034
-
-        Reviewed by Eric Seidel.
-
-        git-svn is needed to actually commit to SVN from a git working copy.
-
-        * EWSTools/cold-boot.sh:
-
-2012-07-11  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: lint code in webkitpy.layout_tests.models
-        https://bugs.webkit.org/show_bug.cgi?id=90416
-
-        Reviewed by Ojan Vafai.
-
-        Cleaning up errors reported from lint-webkitpy.
-
-        Also, suppress the warnings about wildcard imports in pylintrc;
-        we have nothing particularly against them.
-
-        * Scripts/webkitpy/layout_tests/models/test_configuration.py:
-        (TestConfigurationConverter.combinations):
-        * Scripts/webkitpy/layout_tests/models/test_configuration_unittest.py:
-        (TestConfigurationTest.test_hash.query_unknown_key):
-        (TestConfigurationTest.test_eq):
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (ParseError.__init__):
-        (TestExpectationLine.__init__):
-        (TestExpectationsModel.get_expectations_string):
-        (TestExpectationsModel):
-        (TestExpectationsModel.expectation_to_string):
-        (TestExpectationsModel.add_expectation_line):
-        (TestExpectationsModel._clear_expectations_for_test):
-        (TestExpectationsModel._remove_from_sets):
-        (TestExpectations.get_expectations_string):
-        (TestExpectations.expectation_to_string):
-        (TestExpectations._report_warnings):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (Base.__init__):
-        (parse_exp):
-        (SkippedTests.check):
-        (TestExpectationParserTests.test_parse_empty_string):
-        * Scripts/webkitpy/layout_tests/models/test_failures.py:
-        (FailureTimeout.__init__):
-        (FailureCrash.__init__):
-        (FailureImageHashMismatch.__init__):
-        (FailureReftestMismatch.__init__):
-        (FailureReftestMismatchDidNotOccur.__init__):
-        (FailureReftestNoImagesGenerated.__init__):
-        * Scripts/webkitpy/layout_tests/models/test_failures_unittest.py:
-        (TestFailuresTest.test_unknown_failure_type.UnknownFailure.message):
-        (TestFailuresTest.test_unknown_failure_type):
-        (TestFailuresTest):
-        (TestFailuresTest.test_message_is_virtual):
-        * Scripts/webkitpy/layout_tests/models/test_results.py:
-        (TestResult.loads):
-        (TestResult.has_failure_matching_types):
-        * Scripts/webkitpy/pylintrc:
-
-2012-07-11  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: clean up names in worker.py
-        https://bugs.webkit.org/show_bug.cgi?id=90510
-
-        Reviewed by Ojan Vafai.
-
-        This is the last patch in the series of refactoring worker.py;
-        all this does is change some names of methods, instance
-        variables, and method parameters to be clearer (it also changes
-        some code in manager.py and manager_worker.py to be consistent).
-
-        There are no functional changes in this patch and the existing
-        tests should cover everything.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.__init__):
-        (Manager.prepare_lists_and_print_output):
-        (Manager._run_tests.worker_factory):
-        (Manager._run_tests):
-        (Manager._show_results_html_file):
-        (Manager.handle_finished_test_list):
-        (_WorkerState.__init__):
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        (_Broker.post_message):
-        (_Broker._dispatch_message):
-        (AbstractWorker.__init__):
-        (AbstractWorker.run):
-        (AbstractWorker.yield_to_caller):
-        (AbstractWorker.post):
-        (_WorkerConnection.__init__):
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker_unittest.py:
-        (_TestWorker.__init__):
-        (_TestWorker.start):
-        (_TestWorker.handle):
-        (_TestWorker.stop):
-        (_TestsMixin):
-        (_TestsMixin.test_name):
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        (Worker.__init__):
-        (Worker.__del__):
-        (Worker.start):
-        (Worker.handle):
-        (Worker._run_test):
-        (Worker.stop):
-        (Worker._timeout):
-        (Worker._kill_driver):
-        (Worker._run_test_with_timeout):
-        (Worker._clean_up_after_test):
-        (Worker._run_test_in_another_thread.SingleTestThread.run):
-        (Worker._run_test_in_this_thread):
-        (Worker._run_single_test):
-
-2012-07-11  Adam Barth  <abarth@webkit.org>
-
-        The commit-queue needs some extra git config to be able to commit
-        https://bugs.webkit.org/show_bug.cgi?id=91025
-
-        Reviewed by Eric Seidel.
-
-        In order for the commit-queue to actually commit, it needs to know the
-        location of the SVN server.
-
-        * EWSTools/cold-boot.sh:
-
-2012-07-11  Adam Barth  <abarth@webkit.org>
-
-        Teach EWSTools how to configure SVN auth credentials
-        https://bugs.webkit.org/show_bug.cgi?id=91021
-
-        Reviewed by Eric Seidel.
-
-        To move the commit-queue over to Google Compute Engine, we need a way
-        to configure the commit-queue's credentials during the machine build
-        process. There doesn't seem to be a nice command line way of
-        configuring SVN auth credentials. I tried doing a bogus commit and
-        supplying the credentials that way, but that's super hacky.
-
-        The approach in this patch is to write the config file directly. The
-        format of these configurations files is documented in the SVN book, so
-        this approach doesn't see too sketchy.
-
-        * EWSTools/configure-svn-auth.sh: Added.
-
-2012-07-11  Ojan Vafai  <ojan@chromium.org>
-
-        Dedupe suffixes passed to webkit-patch rebaseline
-        https://bugs.webkit.org/show_bug.cgi?id=91017
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (Rebaseline._suffixes_to_update):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (test_rebaseline_multiple_builders_and_tests_command_line):
-
-2012-07-11  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix. Add new directories and a new LayoutTestController method.
-
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setStorageDatabaseIdleInterval):
-        * waf/build/settings.py:
-
-2012-07-11  Tony Chang  <tony@chromium.org>
-
-        [chromium] Remove drag and drop API methods that are no longer used
-        https://bugs.webkit.org/show_bug.cgi?id=90996
-
-        Reviewed by Adam Barth.
-
-        Migrate DRT to use the methods that take modifier keys.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::doDragDrop):
-        (EventSender::doMouseUp):
-        (EventSender::doMouseMove):
-        (EventSender::beginDragWithFiles):
-
-2012-07-11  Mark Rowe  <mrowe@apple.com>
-
-        Add a Mountain Lion version of libWebKitSystemInterface.a.
-
-        Reviewed by John Sullivan.
-
-        * Scripts/copy-webkitlibraries-to-product-directory: Include libWebKitSystemInterfaceMountainLion.a in the list of libraries to copy.
-
-2012-07-09  Mark Rowe  <mrowe@apple.com>
-
-        <http://webkit.org/b/90835> Teach bisect-builds to work with a Safari.app that has entitlements.
-
-        Reviewed by Dan Bernstein.
-
-        * Scripts/bisect-builds: Use safariPathFromSafariBundle to determine which binary within the application
-        should be invoked.
-
-2012-07-11  Zan Dobersek  <zandobersek@gmail.com>
-
-        [Gtk] fast/events/keydown-function-keys.html is failing
-        https://bugs.webkit.org/show_bug.cgi?id=90891
-
-        Reviewed by Martin Robinson.
-
-        Work around the context menu being shown on F10 key being pressed by
-        unbiding the key when running tests in DumpRenderTree. The problem
-        appears when using a recent version of the xkeyboard-config package.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (setDefaultsToConsistentStateValuesForTesting):
-
-2012-07-11  No'am Rosenthal  <noam.rosenthal@nokia.com>
-
-        [Qt] QRawWebView should notify when rendering is done, so that pixel results can be grabbed at the appropriate moment.
-        https://bugs.webkit.org/show_bug.cgi?id=90641
-
-        Reviewed by Jocelyn Turcotte.
-
-        * MiniBrowser/qt/raw/View.h: Comment used old class name (WKView).
-        (View):
-
-2012-07-11  Min Qin  <qinmin@chromium.org>
-
-        [Android] sending an extra to the DRT apk so that DRT can be run in a seperate thread
-        https://bugs.webkit.org/show_bug.cgi?id=90831
-
-        Reviewed by Adam Barth.
-
-        On android, DRT needs to run in a background thread to avoid ANR.
-        However, the java tests are running on UI thread by default.
-        We need to send an intent extra to the apk so that it can run on a sub thread.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidDriver._start_once):
-
-2012-07-11  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] REGRESSION(r107171): Fix --timeout option of Qt's DRT
-        https://bugs.webkit.org/show_bug.cgi?id=90966
-
-        Reviewed by Ryosuke Niwa.
-
-        * DumpRenderTree/qt/main.cpp:
-        (main): Don't remove the argument, because takeOptionValue() did it before.
-
-2012-07-11  Allan Sandfeld Jensen  <allan.jensen@nokia.com>
-
-        First commit; moving myself to commiters.
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-07-11  Balazs Ankes  <bank@inf.u-szeged.hu>
-
-        webkit-patch land should automatically add svn:mime-type for .png files
-        https://bugs.webkit.org/show_bug.cgi?id=75825
-
-        Reviewed by Dirk Pranke.
-
-        Refactor the png.py to avoid code duplication.
-
-        * Scripts/webkitpy/common/checksvnconfigfile.py: Added.
-        (check):
-        (config_file_path):
-        (errorstr_autoprop):
-        (errorstr_png):
-        * Scripts/webkitpy/style/checkers/png.py:
-        (PNGChecker.check):
-        * Scripts/webkitpy/tool/commands/download.py:
-        (Land):
-        * Scripts/webkitpy/tool/steps/__init__.py:
-        * Scripts/webkitpy/tool/steps/addsvnmimetypeforpng.py: Added.
-        (AddSvnMimetypeForPng):
-        (AddSvnMimetypeForPng.__init__):
-        (AddSvnMimetypeForPng.run):
-        (AddSvnMimetypeForPng._check_pngs):
-        * Scripts/webkitpy/tool/steps/addsvnmimetypeforpng_unittest.py: Added.
-        (MockSCMDetector):
-        (MockSCMDetector.__init__):
-        (MockSCMDetector.display_name):
-        (AddSvnMimetypeForPngTest):
-        (AddSvnMimetypeForPngTest.test_run):
-
-2012-07-11  Hayato Ito  <hayato@chromium.org>
-
-        Unreviewed gardening.
-        One more fix for r122292.
-
-        * TestWebKitAPI/TestWebKitAPI.gyp/TestWebKitAPI.gyp:
-
-2012-07-11  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r122301.
-        http://trac.webkit.org/changeset/122301
-        https://bugs.webkit.org/show_bug.cgi?id=90947
-
-        Android builder started to fail (Requested by hayato on
-        #webkit).
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-07-10  Adam Barth  <abarth@webkit.org>
-
-        [Chromium] Merge final nits to DumpRenderTree.gyp for Android
-        https://bugs.webkit.org/show_bug.cgi?id=90920
-
-        Reviewed by Tony Chang.
-
-        This patch contains the last few small changes to DumpRenderTree.gyp
-        from the chromium-android branch. After this change, this file will be
-        fully merged.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-07-10  Adam Barth  <abarth@webkit.org>
-
-        [Chromium-Android] Add apk test targets for webkit_unit_tests and TestWebKitAPI
-        https://bugs.webkit.org/show_bug.cgi?id=90918
-
-        Reviewed by Tony Chang.
-
-        The rules are similar to what we have added for DumpRenderTree apk.
-        All references to gtest_target_type can be removed once we enable APK
-        tests on the all bots.
-
-        * TestWebKitAPI/TestWebKitAPI.gyp/TestWebKitAPI.gyp:
-
-2012-07-10  Kenneth Russell  <kbr@google.com>
-
-        Add --no-build option to perf test runner
-        https://bugs.webkit.org/show_bug.cgi?id=90916
-
-        Reviewed by Ryosuke Niwa.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._parse_args):
-            Support --no-build option to perf tests, as in layout tests.
-
-2012-07-10  Adam Barth  <abarth@webkit.org>
-
-        EWSTools should be able to build a chromium-ews bot from scratch
-        https://bugs.webkit.org/show_bug.cgi?id=90912
-
-        Reviewed by Eric Seidel.
-
-        I've been using this script to kick off the build process for the
-        chromium-ews bots on Google Compute Engine.
-
-        * EWSTools/GoogleComputeEngine: Added.
-        * EWSTools/GoogleComputeEngine/build-chromium-ews.sh: Added.
-
-2012-07-10  Alec Flett  <alecflett@chromium.org>
-
-        Add alecflett to the list of committers
-        https://bugs.webkit.org/show_bug.cgi?id=90903
-
-        Reviewed by Ojan Vafai.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-07-10  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        Unreviewed fix of webkitpy unittest break about chromium_android.py
-        caused by r122251.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:
-        (ChromiumAndroidDriverTest.test_cmd_line):
-
-2012-07-10  Ojan Vafai  <ojan@chromium.org>
-
-        webkit-patch rebaseline doesn't work for audio/pixel tests
-        https://bugs.webkit.org/show_bug.cgi?id=90905
-
-        Reviewed by Adam Barth.
-
-        We just need to pass the correct suffix list to rebaseline-test-internal
-        and optimize-baselines. By default, pass all suffixes.
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (Rebaseline):
-        (Rebaseline.__init__):
-        (Rebaseline._suffixes_to_update):
-        (Rebaseline.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (test_rebaseline_multiple_builders_and_tests_command_line):
-
-2012-07-10  Adam Barth  <abarth@webkit.org>
-
-        Remove LayoutTestController and WebKitTestRunner support for Hixie76 WebSockets
-        https://bugs.webkit.org/show_bug.cgi?id=90853
-
-        Reviewed by Eric Seidel.
-
-        WebKit no longer implements the Hixie76 version of the WebSocket
-        protocol. We don't need to support it in our test framework.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::overridePreference):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-        (WebPreferences):
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::overridePreference):
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::resetSettings):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::overridePreference):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-
-2012-07-10  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] Fix typos in chromium_android.py in r151492
-        https://bugs.webkit.org/show_bug.cgi?id=90904
-
-        Reviewed by Ojan Vafai.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.setup_test_run):
-
-2012-07-10  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] Use setup_test_runner() instead of start_helper() to setup test environment
-        https://bugs.webkit.org/show_bug.cgi?id=90894
-
-        Reviewed by Adam Barth.
-
-        start_helper() is actually start_pixel_test_helper() since r115601 (bug 81729).
-        Should use setup_test_runner() to setup test environment for chromium-android.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.setup_test_run): Renamed from start_helper(). Added cache cleanup code.
-        (ChromiumAndroidPort.clean_up_test_run): Renamed from stop_helper().
-        (ChromiumAndroidPort._path_to_helper): Returns None as we don't have a helper now.
-        (ChromiumAndroidPort):
-        (ChromiumAndroidPort._path_to_forwarder): Original _path_to_helper().
-        (ChromiumAndroidPort._push_executable):
-        (ChromiumAndroidDriver.__init__):
-        (ChromiumAndroidDriver.cmd_line):
-
-2012-07-09  Ojan Vafai  <ojan@chromium.org>
-
-        Improve webkit-patch rebaseline to work for more cases
-        https://bugs.webkit.org/show_bug.cgi?id=90504
-
-        Reviewed by Adam Barth.
-
-        -Makes it work for the build.chromium.org bots.
-        -Lets you rebaseline all builders instead of just one.
-        -Lets you pass in the builders or tests to rebaseline.
-
-        * Scripts/webkitpy/common/host.py:
-        (Host.buildbot_for_builder_name):
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        (Builder.__init__):
-        (Builder.latest_layout_test_results):
-        Provide a way to get to the LayoutTestResults of the latest build.
-        Most of the time we only need to get the latest one and the Chromium bots
-        only expose the full_results.json file for the latest build.
-
-        (Builder):
-        (Builder._fetch_file_from_results):
-        (Builder.fetch_layout_test_results):
-        Move these functions into Builder so that Builder and Build can both
-        fetch layout test results.
-
-        (Build.results_zip_url):
-        (Build.layout_test_results):
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-        (BuilderTest.test_latest_layout_test_results):
-        (BuildTest.test_layout_test_results):
-        * Scripts/webkitpy/common/system/user.py:
-        (User.prompt_with_multiple_lists):
-        Prompt with multiple sublists, but still have a global numbering.
-        This lets the build.chromium.org bots be clearly separated from the
-        build.webkit.org bots, which helps understand the builder names.
-
-        (User):
-        (User._wait_on_list_response):
-        (User.prompt_with_list):
-        * Scripts/webkitpy/common/system/user_unittest.py:
-        (UserTest.test_prompt_with_multiple_lists):
-        (UserTest.test_prompt_with_multiple_lists.run_prompt_test):
-        (UserTest.test_prompt_with_multiple_lists.run_prompt_test.mock_raw_input):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.is_chromium):
-        Provide a way to tell if a port is a Chromium port that doesn't involve string
-        manipulation on the port name or builder name.
-
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        (builder_path_from_name):
-        (all_builder_names):
-        Memoizing here is incorrect because the test override _exact_matches,
-        so these can return different values. In either case, I'm pretty sure these
-        are not remotely hot codepaths. I manually inspected all call sites and they're
-        all in high-level calls (e.g. execute calls for webkit-patch commands) and not
-        called in a loop.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.is_chromium):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineTest._results_url):
-        (AbstractParallelRebaselineCommand.__init__):
-        (Rebaseline.__init__):
-        (Rebaseline):
-        (Rebaseline._builders_to_pull_from):
-        (Rebaseline._tests_to_update):
-        (Rebaseline.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (test_rebaseline.mock_builders_to_pull_from):
-        (test_rebaseline):
-        (test_rebaseline_command_line_flags):
-        (test_rebaseline_multiple_builders):
-        (test_rebaseline_multiple_builders.mock_builders_to_pull_from):
-        (test_rebaseline_multiple_builders.mock_tests_to_update):
-        (test_rebaseline_multiple_builders_and_tests_command_line):
-        * Scripts/webkitpy/tool/mocktool.py:
-        (MockTool.irc):
-        (MockTool):
-        (MockTool.buildbot_for_builder_name):
-
-2012-07-10  Alice Cheng  <alice_cheng@apple.com>
-
-        Editing: Reproducible crasher when pasting a 0x0 image into Mail
-        https://bugs.webkit.org/show_bug.cgi?id=90640
-        <rdar://problem/11141920>
-
-        Reviewed by Brady Eidson.
-
-        Test cases for the patch. 0x0 images don't get a resource representation in the WebArchive, so we need a null check.
-
-        * TestWebKitAPI/Tests/mac/0.png: Added.
-        * TestWebKitAPI/Tests/mac/WebViewCanPasteZeroPng.mm: Added.
-        (TestWebKitAPI):
-        (TestWebKitAPI::TEST):
-
-2012-07-10  Leandro Gracia Gil  <leandrogracia@chromium.org>
-
-        WebSurroundingText layout tests should use the same code path as the rest of the feature.
-        https://bugs.webkit.org/show_bug.cgi?id=90807
-
-        Reviewed by Adam Barth.
-
-        Make the textSurroundingNode method take a pair of point coordinates
-        instead of a node offset.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::textSurroundingNode):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController):
-
-2012-07-10  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] REGRESSION(r122175): It broke the Windows build
-        https://bugs.webkit.org/show_bug.cgi?id=90850
-
-        Reviewed by Noam Rosenthal.
-
-        * qmake/mkspecs/features/features.prf: Disable USE(3D_GRAPHICS) on Windows temporarily until proper fix.
-
-2012-07-10  János Badics  <jbadics@inf.u-szeged.hu>
-
-        [Qt][NRWT] Enable cascaded TestExpectations
-        https://bugs.webkit.org/show_bug.cgi?id=89108
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort.expectations_files):
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        (QtPortTest._assert_expectations_files):
-        (QtPortTest.test_expectations_files):
-
-2012-07-10  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] WebKit DRT and WTR fail to build due to undefined reference to WTF::MD5::*
-        https://bugs.webkit.org/show_bug.cgi?id=90868
-
-        Unreviewed EFL build fix.
-
-        Correct CMake configuration to have EFL's DRT and WebKitTestRunner link
-        WTF library. This is needed to resolve undefined reference to WTF::MD5::*.
-
-        * DumpRenderTree/efl/CMakeLists.txt:
-        * WebKitTestRunner/PlatformEfl.cmake:
-
-2012-07-10  Adam Barth  <abarth@webkit.org>
-
-        LayoutTestController.dumpConfigurationForViewport should move to Internals
-        https://bugs.webkit.org/show_bug.cgi?id=45652
-
-        Reviewed by Eric Seidel.
-
-        Remove dumpConfigurationForViewport from LayoutTestController. This API
-        has been replaced by an API on Internals that does the same thing in a
-        port-agnostic way.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-
-2012-07-09  Matt Falkenhagen  <falken@chromium.org>
-
-        Add ENABLE_DIALOG_ELEMENT and skeleton files
-        https://bugs.webkit.org/show_bug.cgi?id=90521
-
-        Reviewed by Kent Tamura.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-07-09  Kent Tamura  <tkent@chromium.org>
-
-        Improve the boilerplate generated by prepare-ChangeLog
-        https://bugs.webkit.org/show_bug.cgi?id=89560
-
-        Reviewed by Ryosuke Niwa.
-
-        Produce the following boilerplate:
-
-        > 2012-06-20  Kent Tamura  <tkent@chromium.org>
-        >
-        >         Need a short description (Oops!).
-        >         Need the bug URL (Oops!).
-        >
-        >         Reviewed by NOBODY (Oops!).
-        >
-        >         Additional information of the change such as approach, rationale. Please add per-function descriptions below. (Oops!).
-        >
-        >         No new tests (Oops!).
-
-        * Scripts/prepare-ChangeLog:
-        (generateNewChangeLogs): Generate the updated template.
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        (ChangeLog.update_with_unreviewed_message):
-        Update the pattern for the beginning of the boilerplate.
-        (ChangeLog.set_short_description_and_bug_url):
-        - Use self._changelog_indent
-        - Update the pattern for the description line
-        - Skip the bug boilerplate.
-        We substitute the specified bug URL to the description boilerplate
-        because we need to add it even if the bug URL boilerplate is missing.
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py: Update the boilerplate data.
-        (test_set_short_description_and_bug_url):
-        - Update the description boilerplate.
-        - Add a test for a case with both of the description boilerplace and the
-          bug URL boilerplate.
-        * Scripts/webkitpy/tool/steps/preparechangelog_unittest.py:
-        (PrepareChangeLogTest.test_ensure_bug_url): Update the expected boilerplate.
-
-2012-07-09  No'am Rosenthal  <noam.rosenthal@nokia.com>
-
-        Shared code that is guarded with ENABLE(WEBGL) should be guarded with USE()
-        https://bugs.webkit.org/show_bug.cgi?id=90506
-
-        Reviewed by Martin Robinson.
-
-        Always enable the WTF_USE_3D_GRAPHICS flag in features.prf if we're compiling with Qt5
-        or if the OpenGL module is enabled.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-07-09  Yongjun Zhang  <yongjun_zhang@apple.com>
-
-        Consider closing unused localStorage database after a timeout.
-        https://bugs.webkit.org/show_bug.cgi?id=90713
-
-        For a localStorage, if there is no active document referencing to it for certain amount of time (300 seconds),
-        we can close the underlying sqlite database.
-
-        Reviewed by Brady Eidson.
-
-        * DumpRenderTree/LayoutTestController.cpp: add a JS method setStorageDatabaseIdleInterval to testRunner
-            to set a different timeout value for closing localStorage database.
-        (setStorageDatabaseIdleIntervalCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setStorageDatabaseIdleInterval): add empty method.
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setStorageDatabaseIdleInterval): ditto.
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setStorageDatabaseIdleInterval): ditto.
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setStorageDatabaseIdleInterval): ditto.
-
-2012-07-09  Adam Klein  <adamk@chromium.org>
-
-        Rename WebCore::WebKitMutationObserver to WebCore::MutationObserver
-        https://bugs.webkit.org/show_bug.cgi?id=90810
-
-        Reviewed by Ojan Vafai.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-
-2012-07-09  Mihai Parparita  <mihaip@chromium.org>
-
-        Handle missing results in TestResultsServer better
-        https://bugs.webkit.org/show_bug.cgi?id=90816
-
-        Reviewed by Ojan Vafai.
-
-        If we can't load the results JSON, don't try to wrap it with the JSONP
-        callback invocation.
-
-        * TestResultServer/handlers/testfilehandler.py:
-        (GetFile.get):
-
-2012-07-09  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r122124.
-        http://trac.webkit.org/changeset/122124
-        https://bugs.webkit.org/show_bug.cgi?id=90815
-
-        It broke NRWT on Qt (Requested by Ossy_HOME on #webkit).
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort._skipped_file_search_paths):
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        (QtPortTest._assert_skipped_path):
-        (QtPortTest.test_skipped_file_search_path):
-
-2012-07-09  Zan Dobersek  <zandobersek@gmail.com>
-
-        [Gtk] Implement dumpFrameScrollPosition in DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=89356
-
-        Reviewed by Martin Robinson.
-
-        Implement dumpFrameScrollPosition, acquiring the scroll position
-        through WebKitDOMDOMWindow of the WebKitDOMDocument loaded in the frame
-        whose scroll position is being dumped.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (dumpFrameScrollPosition):
-
-2012-07-09  János Badics  <jbadics@inf.u-szeged.hu>
-
-        [Qt][NRWT] Enable cascaded TestExpectations
-        https://bugs.webkit.org/show_bug.cgi?id=89108
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort.expectations_files):
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        (QtPortTest._assert_expectations_files):
-        (QtPortTest.test_expectations_files):
-
-2012-07-09  Dan Bernstein  <mitz@apple.com>
-
-        Fixed clean builds of the All target in the DumpRenderTree project.
-
-        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Let Xcode know that the
-        DumpRenderTree Perl Support target depends on the DumpRenderTree target.
-
-2012-07-09  Zan Dobersek  <zandobersek@gmail.com>
-
-        [Gtk] Unskip the CSS Regions layout tests
-        https://bugs.webkit.org/show_bug.cgi?id=90771
-
-        Reviewed by Martin Robinson.
-
-        Use the DumpRenderTreeSupportGtk method for enabling the CSS Regions,
-        calling it when resetting the defaults in DumpRenderTree or when the
-        settings value is overriden through the testRunner.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::overridePreference):
-
-2012-07-09  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r122107.
-        http://trac.webkit.org/changeset/122107
-        https://bugs.webkit.org/show_bug.cgi?id=90794
-
-        Build failure on Mac debug bots (Requested by falken_ on
-        #webkit).
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-07-09  Matt Falkenhagen  <falken@chromium.org>
-
-        Add ENABLE_DIALOG_ELEMENT and skeleton files
-        https://bugs.webkit.org/show_bug.cgi?id=90521
-
-        Reviewed by Kent Tamura.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-07-08  Kent Tamura  <tkent@chromium.org>
-
-        Unreviewed, rolling out r122076.
-        http://trac.webkit.org/changeset/122076
-        https://bugs.webkit.org/show_bug.cgi?id=89560
-
-        Broke sheriffbot rollout
-
-        * Scripts/prepare-ChangeLog:
-        (generateNewChangeLogs):
-
-2012-07-08  Leandro Gracia Gil  <leandrogracia@chromium.org>
-
-        Update the description of LayoutTestController::textSurroundingElement
-        https://bugs.webkit.org/show_bug.cgi?id=90620
-
-        Reviewed by Adam Barth.
-
-        Rename and fix the description of the method as its behaviour changed
-        during the review of https://bugs.webkit.org/show_bug.cgi?id=82461
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::textSurroundingNode):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController):
-
-2012-07-08  Kent Tamura  <tkent@chromium.org>
-
-        Improve the template generated by prepare-ChangeLog
-        https://bugs.webkit.org/show_bug.cgi?id=89560
-
-        Reviewed by Ryosuke Niwa.
-
-        Produce the following template:
-
-        > 2012-06-20  Kent Tamura  <tkent@chromium.org>
-        >
-        >         Need a short description (Oops!).
-        >         Need the bug URL (Oops!).
-        >
-        >         Reviewed by Ryosuke Niwa.
-        >
-        >         Additional information of the change such as approach, rationale. Please add per-function descriptions below. (Oops!).
-        >
-        >         No new tests (Oops!).
-
-        * Scripts/prepare-ChangeLog:
-        (generateNewChangeLogs):
-
-2012-07-08  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        [wx] Unreviewed. Fix notificaitons directory path after notifications move.
-
-        * waf/build/settings.py:
-
-2012-07-07  Nuno Lopes  <nlopes@apple.com>
-
-        Fix build with recent clang.
-        https://bugs.webkit.org/show_bug.cgi?id=90712
-
-        Reviewed by Alexey Proskuryakov.
-
-        * TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionBasic_Bundle.cpp:
-        (DOMWindowExtensionBasic):
-        * TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionNoCache_Bundle.cpp:
-        (DOMWindowExtensionNoCache):
-        * TestWebKitAPI/Tests/WebKit2/DocumentStartUserScriptAlertCrash_Bundle.cpp:
-        (TestWebKitAPI::DocumentStartUserScriptAlertCrashTest::initialize):
-
-2012-07-06  Zan Dobersek  <zandobersek@gmail.com>
-
-        [Gtk] Add a configuration option for disabling unstable features in releases
-        https://bugs.webkit.org/show_bug.cgi?id=87995
-
-        Reviewed by Martin Robinson.
-
-        Pass the --enable-unstable-features flag when building the Gtk port through build-webkit.
-
-        * Scripts/webkitdirs.pm:
-        (buildAutotoolsProject):
-
-2012-07-06  Jessie Berlin  <jberlin@apple.com>
-
-        WKContext should ask for its initialization data when it needs it so the client doesn't have
-        to keep it up to date.
-        https://bugs.webkit.org/show_bug.cgi?id=90627
-
-        Reviewed by Anders Carlsson.
-
-        Add tests and update other WKContextInjectedBundleClients.
-
-        * MiniBrowser/mac/AppDelegate.m:
-        (-[BrowserAppDelegate init]):
-        Updated for the change to WKContextInjectedBundleClient.
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-        Ditto.
-
-        * TestWebKitAPI/PlatformUtilities.cpp:
-        (TestWebKitAPI::Util::createInitializationDictionaryForInjectedBundleTest):
-        Moved the logic to create the initialization dictionary here ...
-        (TestWebKitAPI::Util::createContextForInjectedBundleTest):
-        ... from here so that it can be used without automatically using
-        WKContextSetInitializationUserDataForInjectedBundle.
-        * TestWebKitAPI/PlatformUtilities.h:
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        Add the new test files.
-        * TestWebKitAPI/GNUmakefile.am:
-        Ditto.
-
-        * TestWebKitAPI/Tests/WebKit2/GetInjectedBundleInitializationUserDataCallback.cpp: Added.
-        (TestWebKitAPI::didReceiveMessageFromInjectedBundle):
-        Check that the message received from the injected bundle matches the user data it was
-        initialized with.
-        (TestWebKitAPI::getInjectedBundleInitializationUserData):
-        Return the user data that the injected bundle should be initialized with.
-        (TestWebKitAPI::TEST):
-        Set up WKContextInjectedBundleClient and load a page.
-        * TestWebKitAPI/Tests/WebKit2/GetInjectedBundleInitializationUserDataCallback_Bundle.cpp: Added.
-        (TestWebKitAPI::GetInjectedBundleInitializationUserDataCallbackTest::initialize):
-        Send the initialization user data back up to the UI Process.
-
-        * TestWebKitAPI/Tests/WebKit2/InjectedBundleInitializationUserDataCallbackWins.cpp: Added.
-        (TestWebKitAPI::didReceiveMessageFromInjectedBundle):
-        Check that the message received from the injected bundle matches the user data it was
-        initialized with in the callback.
-        (TestWebKitAPI::getInjectedBundleInitializationUserData):
-        Return the user data that the injected bundle should be initialized with.
-        (TestWebKitAPI::TEST):
-        Set up the context and use WKContextSetInitializationUserDataForInjectedBundle to set the
-        initialization user data (which should be overridden by the user data returned in
-        getInjectedBundleInitializationUserData).
-        * TestWebKitAPI/Tests/WebKit2/InjectedBundleInitializationUserDataCallbackWins_Bundle.cpp: Added.
-        (TestWebKitAPI::InjectedBundleInitializationUserDataCallbackWinsTest::initialize):
-        Send the initialization user data back up to the UI Process.
-
-2012-07-06  Dongwoo Im  <dw.im@samsung.com>
-
-        [EFL][GTK] jhbuild : Disable pixman demos build depending on GTK+
-        https://bugs.webkit.org/show_bug.cgi?id=90593
-
-        Reviewed by Philippe Normand.
-
-        * efl/jhbuild.modules: Give '--enable-gtk=no' option to pixman.
-        * gtk/jhbuild.modules: Give '--enable-gtk=no' option to pixman.
-
-2012-07-06  Luciano Wolf <luciano.wolf@openbossa.org>
-
-        [Qt] DumpRenderTree does not use 'monospace' font when directed
-        https://bugs.webkit.org/show_bug.cgi?id=85203
-
-        The test fonts used for Qt tests were moved to the Liberation font family.
-
-        Due to this change we are skipping tons of tests. They will be gradually
-        unskipped in batches, ASAP.
-
-        Also, the now unneeded special font configuration for Qt5 WK1 was removed.
-
-        Reviewed by Tor Arne Vestbø.
-
-        * DumpRenderTree/qt/QtInitializeTestFonts.cpp:
-        (WebKit::initializeTestFonts):
-
-2012-07-06  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Buildfix for newer Qt5
-        https://bugs.webkit.org/show_bug.cgi?id=90519
-
-        Reviewed by Tor Arne Vestbø.
-
-        * MiniBrowser/qt/MiniBrowser.pro: We also need to depend on gui-private in the MiniBrowser to get access to these headers.
-        * MiniBrowser/qt/MiniBrowserApplication.h: Include qpa/qwindowsysteminterface.h instead of deprecated qwindowsysteminterface_qpa.h
-        * WebKitTestRunner/qt/PlatformWebViewQt.cpp: Include qpa/qwindowsysteminterface.h instead of deprecated qwindowsysteminterface_qpa.h
-
-2012-07-06  Oswald Buddenhagen  <oswald.buddenhagen@nokia.com>
-
-        [Qt] Make use of Qt5 qmake's changed makefile recursion behavior
-
-        When not using the -r option, qmake now interleaves qmake and make calls,
-        so we don't need custom logic for this. There's also an option to supress
-        the effect of the -r option, which we use to make WebKit.pro the only
-        project file parsed in a recursive qmake-run.
-
-        https://bugs.webkit.org/show_bug.cgi?id=90461
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/functions.prf:
-
-2012-07-06  Oswald Buddenhagen  <oswald.buddenhagen@nokia.com>
-
-        [Qt] Remove custom qmake logic for module creation
-
-        Qmake now has the necessary hooks to cleanly override the build locations.
-
-        https://bugs.webkit.org/show_bug.cgi?id=90461
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/default_pre.prf:
-
-2012-07-06  Oswald Buddenhagen  <oswald.buddenhagen@nokia.com>
-
-        [Qt] Add top-level .qmake.conf
-
-        With Qt5, this makes setting $QMAKEPATH externally unnecessary.
-
-        The magic in the perl scripts to set QMAKEPATH is still there, as it doesn't
-        hurt, and is still required for Qt4.
-
-        https://bugs.webkit.org/show_bug.cgi?id=90461
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/default_pre.prf:
-
-2012-07-06  Oswald Buddenhagen  <oswald.buddenhagen@nokia.com>
-
-        [Qt] Unify qtFeatureDefaults code paths
-
-        There's no reason to run qmake on features.prf directly anymore, as we
-        can selectivly run configure tests in the project file now.
-
-        https://bugs.webkit.org/show_bug.cgi?id=90461
-
-        Reviewed by Tor Arne Vestbø.
-
-        * Scripts/webkitdirs.pm:
-        (qtFeatureDefaults):
-        * qmake/configure.pri:
-        * qmake/mkspecs/features/features.prf:
-
-2012-07-06  Oswald Buddenhagen  <oswald.buddenhagen@nokia.com>
-
-        [Qt] Don't let qt_webkit.pri proclaim its own location
-
-        This won't work any more with recent Qt5 versions, as the forwarding
-        pri is created by qt_module_config, which needs MODULE_PRI to be set
-        up already.
-
-        We also need to load build_config, not qt_module.
-
-        https://bugs.webkit.org/show_bug.cgi?id=90461
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/qt_webkit.pri:
-
-2012-07-06  Oswald Buddenhagen  <oswald.buddenhagen@nokia.com>
-
-        [Qt] Remove redundant CONFIG+=module
-
-        qt_module_config takes care of that.
-
-        In api.pri we are actually testing the flag ourselves, so now we need to
-        test a related flag qt_module_config sets instead.
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/default_post.prf:
-
-2012-07-06  Oswald Buddenhagen  <oswald.buddenhagen@nokia.com>
-
-        [Qt] Switch to new-style Qt 5 configure tests
-
-        Use explicit project file action instead of syncqt magic.
-
-        https://bugs.webkit.org/show_bug.cgi?id=90461
-
-        Reviewed by Tor Arne Vestbø.
-
-        * Scripts/webkitdirs.pm:
-        (buildQMakeProjects):
-        * qmake/configure.pri: Copied from Tools/qmake/configure.pro.
-        * qmake/configure.pro:
-        * qmake/mkspecs/features/default_pre.prf:
-        * qmake/mkspecs/features/features.prf:
-        * qmake/sync.profile: Removed.
-
-2012-07-05  Jason Liu  <jason.liu@torchmobile.com.cn>
-
-        Add Jason Liu to committers.py.
-        https://bugs.webkit.org/show_bug.cgi?id=90654
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-07-05  Benjamin Poulain  <bpoulain@apple.com>
-
-        Double release of resources if the load is canceled in a callback of ResourceLoader::didFinishLoading
-        https://bugs.webkit.org/show_bug.cgi?id=90431
-
-        Reviewed by Anders Carlsson.
-
-        Add a Mac API test.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/mac/CancelLoadFromResourceLoadDelegate.html: Added.
-        * TestWebKitAPI/Tests/mac/CancelLoadFromResourceLoadDelegate.mm: Added.
-        (-[CancelLoadFromResourceLoadDelegate webView:resource:didFinishLoadingFromDataSource:]):
-        (-[CancelLoadFromResourceLoadDelegateFrameLoadDelegate webView:didFinishLoadForFrame:]):
-        (TestWebKitAPI):
-        (TestWebKitAPI::TEST):
-
-2012-07-05  Dave Tharp  <dtharp@codeaurora.org>
-
-        Adding myself as committer to committers.py
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-07-05  Alexey Proskuryakov  <ap@apple.com>
-
-        [Mac][WK2] Enable HTTPS tests
-        https://bugs.webkit.org/show_bug.cgi?id=90600
-
-        Reviewed by Brady Eidson.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm: (dumpRenderTree): Removed a misleading comment.
-        It explained why we were doing this here instead of a frame load delegate, but that's
-        just history, not an explanation of why we need this code.
-
-        * WebKitTestRunner/InjectedBundle/mac/InjectedBundleMac.mm: (WTR::InjectedBundle::platformInitialize):
-        Ignore certificate errors for localhost and 127.0.0.1. Since this is only needed
-        for tests, it seems appropriate to have platform specific solutions in every WTR,
-        and not add a WebKit2 API.
-
-2012-07-05  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Remove rpath-hacks in qt_webkit.pri
-
-        Having it in qt_webkit.pri meant that all client apps would inherit the rpath,
-        even if they were not using QtWebKit.
-
-        This is a regression for people who build client apps against a non-installed
-        QtWebKit, as the client app will be missing a rpath to the standalone WebKit
-        build dir. This can be solved by LD_LIBRARY_PATH or custom QMAKE_RPATHDIR
-        logic, until the real issue is fixed in Qt.
-
-        Reviewed by Csaba Osztrogonác.
-
-        * qmake/mkspecs/features/rpath.prf:
-        * qmake/qt_webkit.pri:
-
-2012-07-05  Dongwoo Im  <dw.im@samsung.com>
-
-        [EFL] Enable the CUSTOM_SCHEME_HANDLER feature as default.
-        https://bugs.webkit.org/show_bug.cgi?id=88608
-
-        Reviewed by Hajime Morita.
-
-        * Scripts/webkitperl/FeatureList.pm: Enable the CUSTOM_SCHEME_HANDLER feature as default.
-
-2012-07-05  Ryuan Choi  <ryuan.choi@samsung.com>
-
-        [Wk2][EFL] EFL needs a WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=87659
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add an implementation of WebKitTestRunner for Efl port.
-
-        * CMakeLists.txt: Includes WebKitTestRunner build script.
-        * Scripts/build-webkittestrunner: Added knowledge of WebKitTestRunner/Efl.
-        * Scripts/webkitpy/layout_tests/port/efl.py: Ditto.
-        (EflPort.setup_environ_for_server):
-        * WebKitTestRunner/CMakeLists.txt: Added.
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        * WebKitTestRunner/InjectedBundle/efl/ActivateFontsEfl.cpp: Added.
-        * WebKitTestRunner/InjectedBundle/efl/InjectedBundleEfl.cpp: Added.
-        * WebKitTestRunner/InjectedBundle/efl/LayoutTestControllerEfl.cpp: Added.
-        * WebKitTestRunner/PlatformEfl.cmake: Added.
-        * WebKitTestRunner/PlatformWebView.h:
-        * WebKitTestRunner/TestController.cpp:
-        * WebKitTestRunner/config.h: Added knowledge of WebKitTestRunner/Efl.
-        * WebKitTestRunner/efl/PlatformWebViewEfl.cpp: Added.
-        * WebKitTestRunner/efl/TestControllerEfl.cpp: Added.
-        * WebKitTestRunner/efl/main.cpp: Added.
-        (main):
-
-2012-07-05  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2][EFL] Ewk_View needs API to load HTML data
-        https://bugs.webkit.org/show_bug.cgi?id=90540
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Update EFL MiniBrowser to catch the "load,error" signal
-        on the view and display an error page.
-
-        * MiniBrowser/efl/main.c:
-        (on_error):
-        (browserCreate):
-
-2012-07-05  Sergio Villar Senin  <svillar@igalia.com>
-
-        Hidden dirs are not copied when creating the built product archive
-        https://bugs.webkit.org/show_bug.cgi?id=90559
-
-        Reviewed by Carlos Garcia Campos.
-
-        Hidden dirs are not copied inside the built product archive
-        because the recursive copy command was ignoring them. We need those
-        hidden directories for the GTK WebKit2 testing bot to work fine.
-
-        * BuildSlaveSupport/built-product-archive:
-        (archiveBuiltProduct): replaced "*" by "." to include hidden
-        dirs/files.
-
-2012-07-04  Yoshifumi Inoue  <yosin@chromium.org>
-
-        Unreviewed Chromium gardening, Disable always failed python tests on Windows.
-        https://bugs.webkit.org/show_bug.cgi?id=90587
-
-        PortTest.qt_linux and mac_lion are always failed on Chromium Windows at
-        creating child process.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (PortTest.disabled_test_qt_linux):
-        (PortTest.disabled_test_mac_lion):
-
-2012-07-04  Yoshifumi Inoue  <yosin@chromium.org>
-
-        [Tools] webkit_unittest.py got assertion
-        https://bugs.webkit.org/show_bug.cgi?id=90579
-
-        Reviewed by Hajime Morita.
-
-        This patch updates expectation of assertion in test_skipped_directories_for_symbols().
-        r121874 added new (exclude) directory (inspector/styles/variables), however it didn't
-        update one of two assertions.
-
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-
-2012-07-04  Balazs Ankes  <bank@inf.u-szeged.hu>
-
-        webkit-patch should add reviewer if "Reviewed by NOBODY ..." is missing
-        https://bugs.webkit.org/show_bug.cgi?id=67935
-
-        Reviewed by Ryosuke Niwa.
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        (ChangeLog.set_reviewer):
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-        (test_set_reviewer):
-        (test_set_short_description_and_bug_url):
-
-2012-07-04  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r121862.
-        http://trac.webkit.org/changeset/121862
-        https://bugs.webkit.org/show_bug.cgi?id=90569
-
-        It broke built-product-archive for GTK, Qt and EFL (Requested
-        by svillar on #webkit).
-
-        * BuildSlaveSupport/built-product-archive:
-        (archiveBuiltProduct):
-
-2012-07-04  Sergio Villar Senin  <svillar@igalia.com>
-
-        Hidden dirs are not copied when creating the built product archive
-        https://bugs.webkit.org/show_bug.cgi?id=90559
-
-        Reviewed by Carlos Garcia Campos.
-
-        Hidden dirs are not copied inside the built product archive because
-        the recursive copy command was ignoring them. We need those hidden
-        directories for the GTK WebKit2 testing bot to work fine.
-
-        * BuildSlaveSupport/built-product-archive:
-        (archiveBuiltProduct): removed the trailing "*" from the copy
-        command.
-
-2012-07-04  John Mellor  <johnme@chromium.org>
-
-        Text Autosizing: Add compile flag and runtime setting
-        https://bugs.webkit.org/show_bug.cgi?id=87394
-
-        This patch renames Font Boosting to Text Autosizing.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2012-07-04  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Replace deprecated IN_PWD with PWD
-
-        Reviewed by Csaba Osztrogonác.
-
-        * qmake/mkspecs/features/default_pre.prf:
-
-2012-07-04  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Don't try to build WTR twice
-
-        Reviewed by Csaba Osztrogonác.
-
-        * Tools.pro:
-
-2012-07-04  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r121821.
-        http://trac.webkit.org/changeset/121821
-        https://bugs.webkit.org/show_bug.cgi?id=90551
-
-        This patch did not receive a high-quality review and has a
-        number of errors (Requested by abarth on #webkit).
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        (Build.results_url):
-        * Scripts/webkitpy/common/net/buildbot/chromiumbuildbot.py:
-        (ChromiumBuilder.accumulated_results_url):
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (AbstractParallelRebaselineCommand.__init__):
-        (Rebaseline):
-        (Rebaseline._builder_to_pull_from):
-        (Rebaseline._tests_to_update):
-        (Rebaseline.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (test_rebaseline.mock_builder_to_pull_from):
-        (test_rebaseline):
-
-2012-07-04  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Get rid of un-needed QT += declarative for Qt 5
-
-        The declarative module has been renamed to quick1 in Qt 5, and the
-        engine-only module for Qt 5 is named 'qml'. For many of the instances
-        we could just remove 'declarative', since the project file was only
-        used for Qt5/WebKit2 builds. In the other cases the module was wrapped
-        in a haveQt(4) scope.
-
-        Reviewed by Csaba Osztrogonác.
-
-        * MiniBrowser/qt/MiniBrowser.pro:
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-        * WebKitTestRunner/Target.pri:
-
-2012-07-04  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Remove a few un-needed load(features) after r121777
-
-        The features are computed by configure.pro and cached in .qmake.cache.
-
-        Reviewed by Jocelyn Turcotte..
-
-        * MiniBrowser/qt/raw/Target.pri:
-
-2012-07-04  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Use haveQtModule() in project files instead of manual checks
-
-        Reviewed by Jocelyn Turcotte.
-
-        * qmake/mkspecs/features/default_pre.prf:
-        * qmake/mkspecs/features/features.prf:
-
-2012-07-04  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Fix haveQtModule() check
-
-        Without {} brackets we were pulling out the value of the module.name variable.
-
-        Reviewed by Jocelyn Turcotte.
-
-        * qmake/mkspecs/features/functions.prf:
-
-2012-07-04  Sergio Villar Senin  <svillar@igalia.com>
-
-        [WK2] [GTK] WK2 testing bot unable to find the InjectedBundle library
-        https://bugs.webkit.org/show_bug.cgi?id=90541
-
-        Reviewed by Carlos Garcia Campos.
-
-        We must add the contents of WebKitBuild/*/Libraries/ directory to
-        the file to be uploaded to b.w.o to successfully run WebKit2 tests
-        in the WebKit2 testing bot.
-
-        * BuildSlaveSupport/built-product-archive:
-        (archiveBuiltProduct): appended Libraries to the list of
-        neededDirectories.
-
-2012-07-04  Sergio Villar Senin  <svillar@igalia.com>
-
-        [GTK] WebKit2 testing bot unable to find the build directory
-        https://bugs.webkit.org/show_bug.cgi?id=90523
-
-        Reviewed by Carlos Garcia Campos.
-
-        The presence of GNUmakefile was used to determine whether a given
-        directory was a valid build directory or not. That's not correct for
-        testing bots as we export only the minimum required stuff to run the
-        tests.
-
-        * gtk/common.py:
-        (get_build_path.is_valid_build_directory): added an extra check.:
-
-2012-07-04  Joe Thomas  <joethomas@motorola.com>
-
-        Adding myself to committers list.
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-07-03  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2][EFL] Ewk_View should report the load progress
-        https://bugs.webkit.org/show_bug.cgi?id=90457
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Update EFL MiniBrowser so that it listens for the
-        "load,progress" on the Ewk_View and updates its
-        window title accordingly.
-
-        * MiniBrowser/efl/main.c:
-        (title_set):
-        (on_title_changed):
-        (on_progress):
-        (browserCreate):
-
-2012-07-03  Dirk Pranke  <dpranke@chromium.org>
-
-        disable failing mock-chromium-mac python unit tests
-
-        Unreviewed, build fix.
-
-        Disable these tests until I can figure out why they're failing
-        on the bots.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (PortTest.disabled_test_chromium_mac_lion):
-        (PortTest.disabled_test_chromium_mac_lion_in_test_shell_mode):
-
-2012-07-03  Ian Vollick  <vollick@chromium.org>
-
-        Add vollick to the list of committers
-        https://bugs.webkit.org/show_bug.cgi?id=90512
-
-        Reviewed by Adrienne Walker.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-07-03  Ojan Vafai  <ojan@chromium.org>
-
-        Improve webkit-patch rebaseline to work for more cases
-        https://bugs.webkit.org/show_bug.cgi?id=90504
-
-        Reviewed by Dirk Pranke.
-
-        -Makes it work for the build.chromium.org bots.
-        -Lets you rebaseline all builders instead of just one.
-        -Lets you pass in the builder or test to rebaseline.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        (Build.results_url):
-        Make this work for build.chromium.org builders as well.
-
-        * Scripts/webkitpy/common/net/buildbot/chromiumbuildbot.py:
-        (ChromiumBuilder):
-        (ChromiumBuilder.latest_cached_build):
-        ChromiumBuilder doesn't support large parts of the Builder interface.
-        This provides the bare minimum for this patch to work. Eventually,
-        we should create a single interface that can be supported for both
-        sets of buildbots.
-
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        (builder_path_from_name):
-        (all_builder_names):
-        memoizing here is incorrect because the test override _exact_matches,
-        so these can return different values. In either case, I'm pretty sure these
-        are not remotely hot codepaths.
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (AbstractParallelRebaselineCommand.__init__):
-        (Rebaseline):
-        (Rebaseline.__init__):
-        (Rebaseline._builders_to_pull_from):
-        (Rebaseline._builder_with_name):
-        (Rebaseline._tests_to_update):
-        (Rebaseline.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (test_rebaseline.mock_builders_to_pull_from):
-        (test_rebaseline):
-        (test_rebaseline_command_line_flags):
-        (test_rebaseline_multiple_builders):
-        (test_rebaseline_multiple_builders.mock_builders_to_pull_from):
-        (test_rebaseline_multiple_builders.mock_tests_to_update):
-
-2012-07-03  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Enable CSS variables support at compile time
-        https://bugs.webkit.org/show_bug.cgi?id=90448
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Turn on CSS_VARIABLES flag by default on EFL port.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-07-03  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: clean up exception handling and make sure we log some more failures
-        https://bugs.webkit.org/show_bug.cgi?id=90503
-
-        Reviewed by Ojan Vafai.
-
-        There were several places where exceptions weren't getting
-        logged, most notably if you passed a bad value to --platform.
-        This change tests that and cleans things up a bit; more cleanup
-        will be possible when we rework the manager_worker_broker code.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        (_BrokerConnection.raise_exception):
-        (_InlineWorkerConnection.raise_exception):
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        (Worker.run):
-        (Worker.kill_driver):
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        (PortFactory.get):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (run):
-        (main):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_unsupported_platfrom):
-
-2012-07-03  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: fix mock port
-        https://bugs.webkit.org/show_bug.cgi?id=90500
-
-        Reviewed by Ojan Vafai.
-
-        The MockDRT code was never updated when we switched the chromium
-        ports to using "drt mode" by default. This change updates that
-        code, fixes a typo in the chromium port that went undetected
-        (default_test_timeout_ms -> default_timeout_ms), and adds tests
-        that actually exercise some of the mock ports. These tests are
-        useful in that they will exercise the port-specific code in an
-        end-to-end-manner, but they are a bit slow for some reason (>1s
-        each) that I need to look into.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumDriver.stop):
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.default_timeout_ms):
-        * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:
-        (TestChromiumAndroidPort.test_default_timeout_ms):
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py:
-        (main):
-        (parse_options):
-        (MockTestShell):
-        (MockTestShell.output_for_test):
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        (MockDRTTest.assertTest):
-        (MockTestShellTest):
-        (MockTestShellTest.make_drt):
-        (MockTestShellTest.test_test_shell_parse_options):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (PortTest):
-        (PortTest.assert_mock_port_works):
-        (PortTest.test_chromium_mac_lion):
-        (PortTest.test_chromium_mac_lion_in_test_shell_mode):
-        (PortTest.test_qt_linux):
-        (PortTest.test_mac_lion):
-
-2012-07-03  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: make the worker class stand alone with a cleaner interface
-        https://bugs.webkit.org/show_bug.cgi?id=90409
-
-        Reviewed by Ojan Vafai.
-
-        Currently the Worker class derives from AbstractWorker, which is
-        kind of crufty and awkward; it would be better if we did not
-        rely on shared state.
-
-        This change changes that so that Worker derives from object, and
-        exposes the following interface:
-          __init__() - called in the manager process
-          safe_init() - called in the worker process to initialize
-            unpicklable state
-          handle() - a single routine to handle all messages
-          cleanup() - called so the worker can clean up
-
-        Also, all of the "administrative" messages that are handled by
-        the worker (notification of start/stop/etc.) move into
-        manager_worker_broker - this reduces worker.py to just handling
-        the mechanics of actually running each test.
-
-        For the moment, we do this by creating Yet Another wrapper/proxy
-        class in manager_worker_broker, but this will get simpler
-        shortly when the rest of m_w_b is cleaned up.
-
-        With this change worker is now in its new form but there will be
-        a follow-on change that cleans up some names and other minor
-        things.
-
-        This change is again mostly just moving things around and should
-        be covered by the (updated) existing tests.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        (get):
-        (AbstractWorker.__init__):
-        (AbstractWorker.run):
-        (AbstractWorker):
-        (AbstractWorker.handle_stop):
-        (AbstractWorker.handle_test_list):
-        (AbstractWorker.yield_to_broker):
-        (AbstractWorker.post_message):
-        (_WorkerConnection.__init__):
-        (_Process.run):
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker_unittest.py:
-        (_TestWorker):
-        (_TestWorker.__init__):
-        (_TestWorker.name):
-        (_TestWorker.cleanup):
-        (_TestWorker.handle):
-        (_TestWorker.safe_init):
-        (_TestWorker.stop):
-        (_TestsMixin.handle_finished_test):
-        (_TestsMixin.setUp):
-        (_TestsMixin.test_cancel):
-        (_TestsMixin.test_done):
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        (Worker):
-        (Worker.__init__):
-        (Worker.safe_init):
-        (Worker.handle):
-
-2012-07-03  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: moving child process logging code into manager_worker_broker
-        https://bugs.webkit.org/show_bug.cgi?id=90408
-
-        Reviewed by Ojan Vafai.
-
-        Users of manager_worker_broker should not have to be aware of
-        whether they're in the same process or different processes and
-        configure logging themselves; mwb should hide this complexity.
-        We can't quite do this completely/correctly yet, since the
-        manager expects to get a list of messages to log, but this
-        change fixes the worker side of it, at least.
-
-        This is just moving code around, there is no new functionality
-        and this should be covered by existing tests.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        (AbstractWorker.__init__):
-        (_WorkerConnection.__init__):
-        (_WorkerConnection.post_message):
-        (_WorkerConnection):
-        (_WorkerConnection.set_up_logging):
-        (_WorkerConnection.clean_up_logging):
-        (_InlineWorkerConnection.run):
-        (_MultiProcessWorkerConnection.run):
-        (_WorkerLogHandler):
-        (_WorkerLogHandler.__init__):
-        (_WorkerLogHandler.emit):
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker_unittest.py:
-        (_TestWorker.run):
-        (_TestsMixin.handle_done):
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        (Worker.__init__):
-        (Worker.run):
-        (Worker._run_test):
-        (Worker.cleanup):
-        (Worker.run_single_test):
-
-2012-07-03  Tony Chang  <tony@chromium.org>
-
-        [chromium] Don't archive build files generated by VS2010
-        https://bugs.webkit.org/show_bug.cgi?id=90493
-
-        Reviewed by Ojan Vafai.
-
-        In particular, the pch (pre compiled header) files are gigantic, making
-        release.zip almost a 1gb in size.
-
-        * BuildSlaveSupport/built-product-archive:
-        (archiveBuiltProduct):
-
-2012-07-03  Tony Chang  <tony@chromium.org>
-
-        [chromium] Unreviewed, update .gitignore to handle VS2010 files.
-
-        * .gitignore:
-        * DumpRenderTree/DumpRenderTree.gyp/.gitignore:
-        * TestWebKitAPI/TestWebKitAPI.gyp/.gitignore:
-
-2012-07-03  Ojan Vafai  <ojan@chromium.org>
-
-        Have webkit-patch rebaseline use rebaseline-test-internal
-        https://bugs.webkit.org/show_bug.cgi?id=90491
-
-        Reviewed by Dirk Pranke.
-
-        This lets it handle new files, reduces duplicate code and lays the
-        groundwork for making rebaseline have a richer interface.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot_mock.py:
-        (MockBuild):
-        (MockBuild.__init__):
-        (MockBuilder.build):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (AbstractParallelRebaselineCommand._files_to_add):
-        (Rebaseline):
-        (Rebaseline._builder_to_pull_from):
-        (Rebaseline._tests_to_update):
-        (Rebaseline.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (test_overrides_are_included_correctly):
-        (test_rebaseline):
-        (test_rebaseline.mock_builder_to_pull_from):
-        (test_rebaseline.mock_tests_to_update):
-
-2012-07-03  Ojan Vafai  <ojan@chromium.org>
-
-        Rename rebaseline-test to rebaseline-test-internal
-        https://bugs.webkit.org/show_bug.cgi?id=90485
-
-        Reviewed by Adam Barth.
-
-        It's now only used by other rebaseline commands. It's still useful to leave it
-        as it's own command to aid in debugging when something goes wrong. In a followup
-        patch, I'll make webkit-patch rebaseline cover any use-cases that rebaseline-test
-        might have covered.
-
-        We no longer need the --print-scm-changes option since the only caller always passes
-        that option in.
-
-        Also, make all the arguments command-line flags instead. Simplifies the code
-        a bit in my opinion.
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineTest):
-        (RebaselineTest.__init__):
-        (RebaselineTest.execute):
-        (AbstractParallelRebaselineCommand._rebaseline_commands):
-        (RebaselineExpectations.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (test_rebaseline_all):
-
-2012-07-03  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt][WTR] Get rid of using DumpRenderTreeSupportQt
-        https://bugs.webkit.org/show_bug.cgi?id=90262
-
-        Unreviewed build fix.
-
-        Reverting r121550 manually because it caused build
-        break on ARM and Mac. It turned out that the Qt build
-        system is too broken for this change now, first we have
-        to address two issues:
-            * symbol hiding was forbidden accidentally on x86 Linux
-            * Qt lacks a separate library for test support
-
-        * Tools.pro:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::resetAfterTest):
-        (WTR::InjectedBundlePage::didClearWindowForFrame):
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-
-2012-07-03  Tony Chang  <tony@chromium.org>
-
-        [chromium] Handle trailing backslash on %VSINSTALLDIR%
-        https://bugs.webkit.org/show_bug.cgi?id=90410
-
-        Reviewed by Ojan Vafai.
-
-        * Scripts/webkitdirs.pm:
-        (buildChromiumVisualStudioProject): Handle VSINSTALLDIR ending in a backslash, the backslash escapes the closing double quote.
-
-2012-07-02  Ojan Vafai  <ojan@chromium.org>
-
-        Make the skia_test_expectations.txt file optional.
-        https://bugs.webkit.org/show_bug.cgi?id=90400
-
-        Reviewed by Dirk Pranke.
-
-        It used to be optional. This regressed at some point. It's important that it be
-        optional so that webkit-patch commands work in a pure-webkit checkout for chromium bots.
-        Specifically, this was breaking webkit-patch rebaseline-test when it would go to update
-        TestExpectations.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.expectations_files):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumDriverTest.test_expectations_dict):
-
-2012-07-03  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        [jhbuild][EFL] Bump libffi dependency.
-        https://bugs.webkit.org/show_bug.cgi?id=85373
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Update libffi to 3.0.11, which fixes the build on some platforms
-        where 3.0.10 had problems.
-
-        * efl/jhbuild.modules:
-
-2012-07-03  George Staikos  <staikos@webkit.org>
-
-        [BlackBerry] Enable microdata support for BlackBerry.
-        https://bugs.webkit.org/show_bug.cgi?id=90429
-
-        Reviewed by Rob Buis.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-07-03  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Make use of .qmake.cache for caching features
-
-        Instead of loading() features from the files that need them (and re-running
-        a bunch of checks), we now run feature detection as part of configure.pro,
-        and have build-webkit write the computed feature-defines and CONFIG to
-        .qmake.cache, which is then loaded by qmake _before_ even defaults_pre
-        when building WebKit.pro.
-
-        At some point we'll be able to selectivly prevent running of config tests
-        in configure.pro, which means we don't need a separate code-path for
-        the build-webkit --help case.
-
-        We should also move the code in build-webkit that now uses .webkit.config
-        to detect clean builds, to use .qmake.cache, since we now store the same
-        thing there.
-
-        Original patch by Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
-
-        Reviewed by Tor Arne Vestbø.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * QtTestBrowser/QtTestBrowser.pro:
-        * Scripts/webkitdirs.pm:
-        (qtFeatureDefaults):
-        (buildQMakeProjects):
-        * Tools.pro:
-        * WebKitTestRunner/InjectedBundle/DerivedSources.pri:
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-        * WebKitTestRunner/Target.pri:
-        * qmake/.qmake.conf: Added.
-        * qmake/configure.pro:
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/default_pre.prf:
-        * qmake/mkspecs/features/features.prf:
-
-2012-07-03  Nico Weber  <thakis@chromium.org>
-
-        -Wunused-private-field cleanup, linux edition
-        https://bugs.webkit.org/show_bug.cgi?id=90463
-
-        Reviewed by Stephen White.
-
-        * DumpRenderTree/chromium/DRTDevToolsAgent.h:
-        * DumpRenderTree/chromium/GamepadController.h:
-        (GamepadController):
-        * DumpRenderTree/chromium/NotificationPresenter.h:
-        (NotificationPresenter::NotificationPresenter):
-        (NotificationPresenter):
-
-2012-07-03  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r121766.
-        http://trac.webkit.org/changeset/121766
-        https://bugs.webkit.org/show_bug.cgi?id=90465
-
-        It caused flakey build errors on the bots (Requested by Ossy
-        on #webkit).
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * QtTestBrowser/QtTestBrowser.pro:
-        * Scripts/webkitdirs.pm:
-        (qtFeatureDefaults):
-        (buildQMakeProjects):
-        * Tools.pro:
-        * WebKitTestRunner/InjectedBundle/DerivedSources.pri:
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-        * WebKitTestRunner/Target.pri:
-        * qmake/.qmake.conf: Removed.
-        * qmake/configure.pro:
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/default_pre.prf:
-        * qmake/mkspecs/features/features.prf:
-
-2012-07-03  George Staikos  <staikos@webkit.org>
-
-        [BlackBerry] Enable Custom Scheme Handlers for BlackBerry.
-        https://bugs.webkit.org/show_bug.cgi?id=90422
-
-        Reviewed by Rob Buis.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-07-03  George Staikos  <staikos@webkit.org>
-
-        [BlackBerry] Enable RegisterProtocolHandler for BlackBerry.
-        https://bugs.webkit.org/show_bug.cgi?id=90422
-
-        Reviewed by Rob Buis.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-07-03  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [EFL] Add run API tests as a step on the build bots
-        https://bugs.webkit.org/show_bug.cgi?id=87252
-
-        Reviewed by Daniel Bates.
-
-        Run EFL API test suite on the build bots.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (RunEflAPITests):
-        (TestFactory.__init__):
-        (BuildAndTestFactory.__init__):
-        * Scripts/run-efl-tests: Added.
-
-2012-07-03  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Make use of .qmake.cache for caching features
-
-        Instead of loading() features from the files that need them (and re-running
-        a bunch of checks), we now run feature detection as part of configure.pro,
-        and have build-webkit write the computed feature-defines and CONFIG to
-        .qmake.cache, which is then loaded by qmake _before_ even defaults_pre
-        when building WebKit.pro.
-
-        At some point we'll be able to selectivly prevent running of config tests
-        in configure.pro, which means we don't need a separate code-path for
-        the build-webkit --help case.
-
-        We should also move the code in build-webkit that now uses .webkit.config
-        to detect clean builds, to use .qmake.cache, since we now store the same
-        thing there.
-
-        Original patch by Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
-
-        Reviewed by Tor Arne Vestbø.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * QtTestBrowser/QtTestBrowser.pro:
-        * Scripts/webkitdirs.pm:
-        (qtFeatureDefaults):
-        (buildQMakeProjects):
-        * Tools.pro:
-        * WebKitTestRunner/InjectedBundle/DerivedSources.pri:
-        * WebKitTestRunner/InjectedBundle/Target.pri:
-        * WebKitTestRunner/Target.pri:
-        * qmake/.qmake.conf: Added.
-        * qmake/configure.pro:
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/default_pre.prf:
-        * qmake/mkspecs/features/features.prf:
-
-2012-07-03  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>  Joel Dillon <joel.dillon@codethink.co.uk>
-
-        [Qt][Win] Fix broken QtWebKit5.lib linking
-        https://bugs.webkit.org/show_bug.cgi?id=88321
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        On windows the import/export definition is part of the symbol's signature.
-        Define STATICALLY_LINKED_WITH_$$library for each dependend module
-        that is being linked statically to make sure that they can be linked together
-        later on.
-
-        Also do not compile Assertions.cpp in DumpRenderTree anymore since all the
-        used symbols are exported and it would cause a duplicate symbols error.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-        * qmake/mkspecs/features/default_post.prf:
-
-2012-07-03  Szilard Ledan  <szledan@inf.u-szeged.hu>
-
-        master.cfg cleanup, pass BuildStep instances instead of BuildStep subclasses
-        https://bugs.webkit.org/show_bug.cgi?id=89001
-
-        Reviewed by Csaba Osztrogonác.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (UploadBuiltProduct.__init__):
-        (UploadTestResults.__init__):
-        (ExtractTestResults.__init__):
-        (Factory.__init__):
-        (BuildFactory.__init__):
-        (TestFactory.__init__):
-        (BuildAndTestFactory.__init__):
-        (BuildAndPerfTestFactory.__init__):
-        (BuildAndPerfTestWebKit2Factory.__init__):
-        (DownloadAndPerfTestFactory.__init__):
-
-2012-07-03  Ádám Kallai  <kadam@inf.u-szeged.hu>
-
-        Update unit test after r121724.
-        https://bugs.webkit.org/show_bug.cgi?id=90444
-
-        Reviewed by Csaba Osztrogonác.
-
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-        (GardeningServerTest.test_rebaseline_new_port):
-
-2012-07-03  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r121749.
-        http://trac.webkit.org/changeset/121749
-        https://bugs.webkit.org/show_bug.cgi?id=90441
-
-        Tests crash on the paralel NRWT Qt bot (Requested by Ossy on
-        #webkit).
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort._build_driver):
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver.py:
-        (XvfbDriver._start):
-        (XvfbDriver._start.x_filter):
-        (XvfbDriver.stop):
-
-2012-07-03  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
-
-        [NRWT] XvfbDriver should choose the next free display
-        https://bugs.webkit.org/show_bug.cgi?id=88414
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort._driver_class):
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver.py:
-        (XvfbDriver.__init__):
-        (XvfbDriver._start):
-        (XvfbDriver._start.next_free_id):
-        (XvfbDriver.stop):
-
-2012-07-03  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Enable MICRODATA support
-        https://bugs.webkit.org/show_bug.cgi?id=90377
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Turn on MICRODATA flag for EFL port by default.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-07-02  George Staikos  <staikos@webkit.org>
-
-        [BlackBerry] Enable scoped style for BlackBerry.
-        https://bugs.webkit.org/show_bug.cgi?id=90418
-
-        Reviewed by Rob Buis.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-07-02  Xiaobo Wang  <xbwang@torchmobile.com.cn>
-
-        [BlackBerry] Use PUBLIC_BUILD to enable/disable DRT
-        https://bugs.webkit.org/show_bug.cgi?id=90271
-
-        Reviewed by George Staikos.
-
-        RIM PR #154707
-
-        Currently DRT code will be compiled only if ENABLE_DRT is set, and it's not
-        defined by default.
-        We should enable DRT by default unless PUBLIC_BUILD is set. In this way we don't
-        need to rebuild webkit before running DRT.
-
-        * Scripts/webkitdirs.pm:
-        (blackberryCMakeArguments):
-
-2012-07-02  Ojan Vafai  <ojan@chromium.org>
-
-        webkit-patch rebaseline-expectations should share code with rebaseline-all
-        https://bugs.webkit.org/show_bug.cgi?id=90413
-
-        Reviewed by Dirk Pranke.
-
-        Make them share code. In addition to reducing code duplication this makes
-        rebaseline-expectations considerably faster by rebaselining in parallel.
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (AbstractParallelRebaselineCommand):
-        (AbstractParallelRebaselineCommand._run_webkit_patch):
-        (AbstractParallelRebaselineCommand._rebaseline):
-        (RebaselineJson):
-        (RebaselineJson.execute):
-        (RebaselineExpectations):
-        (RebaselineExpectations._update_expectations_file):
-        (RebaselineExpectations._tests_to_rebaseline):
-        (RebaselineExpectations._add_tests_to_rebaseline_for_port):
-        (RebaselineExpectations.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (test_rebaseline_all):
-        (test_rebaseline_expectations.run_in_parallel):
-        (test_rebaseline_expectations):
-
-2012-07-02  Xiaobo Wang  <xbwang@torchmobile.com.cn>
-
-        [BlackBerry] Update DumpRenderTree to have it work interactively in parallel
-        https://bugs.webkit.org/show_bug.cgi?id=88326
-
-        Reviewed by Rob Buis.
-
-        1. Test name is sent to torch-launcher via PPS message(from host machine).
-           So we get test list by monitoring and receiving PPS message instead of
-           reading file index.drt.
-        2. Torch-launcher create a <test file>.done file when it finished a test.
-        3. We don't need to search for Ref-tests in DumpRenderTree.cpp any more. NRWT
-           will get them for us.
-
-        * DumpRenderTree/blackberry/DumpRenderTree.cpp:
-        (BlackBerry::WebKit::DumpRenderTree::DumpRenderTree):
-        (BlackBerry::WebKit::DumpRenderTree::doneDrt):
-        (BlackBerry::WebKit::DumpRenderTree::runRemainingTests):
-        (BlackBerry::WebKit::DumpRenderTree::ensurePPS):
-        (WebKit):
-        (BlackBerry::WebKit::DumpRenderTree::handlePPSData):
-        (BlackBerry::WebKit::DumpRenderTree::waitForTest):
-        (BlackBerry::WebKit::DumpRenderTree::runTests):
-        (BlackBerry::WebKit::DumpRenderTree::dump):
-        * DumpRenderTree/blackberry/DumpRenderTreeBlackBerry.h:
-        (DumpRenderTree):
-
-2012-07-02  Adam Barth  <abarth@webkit.org>
-
-        Remove flashplugin-installer from the EWS image because it causes some tests to crash
-        https://bugs.webkit.org/show_bug.cgi?id=90403
-
-        Reviewed by Tony Chang.
-
-        * EWSTools/cold-boot.sh:
-
-2012-07-02  Leandro Gracia Gil  <leandrogracia@chromium.org>
-
-        [Chromium] Implement a Layout Test for editing/SurroundingText
-        https://bugs.webkit.org/show_bug.cgi?id=82461
-
-        Reviewed by Ryosuke Niwa.
-
-        Add a new method to the layout test controller in order to retrieve the
-        text surrounding a provided element.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::textSurroundingElement):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController):
-
-2012-07-02  Ojan Vafai  <ojan@chromium.org>
-
-        Delete unused rebaseline method in gardeningserver.py
-        https://bugs.webkit.org/show_bug.cgi?id=90396
-
-        Reviewed by Eric Seidel.
-
-        As best I can tell, the only usage was in this unittest.
-
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        (GardeningHTTPRequestHandler.updateexpectations):
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-        (GardeningServerTest.test_rebaseline_new_port):
-
-2012-07-02  Csaba Osztrogonác  <ossy@webkit.org>
-
-        REGRESSION(r121497): It switched off and broke many unittests
-        https://bugs.webkit.org/show_bug.cgi?id=90371
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        (ChromiumMacPortTest): Use snowleopard as os_version instead of leopard, because it isn't supported anymore.
-        * Scripts/webkitpy/layout_tests/port/chromium_port_testcase.py:
-        (ChromiumPortTestCase.test_all_test_configurations): Remove leopard testcases, because it isn't supported anymore.
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (PortTestCase): Inherit class PortTestCase from unittest.TestCase instead of object.
-
-2012-07-02  Ojan Vafai  <ojan@chromium.org>
-
-        Move rebaseline-all command from the gardening-server down into webkit-patch
-        https://bugs.webkit.org/show_bug.cgi?id=90395
-
-        Reviewed by Adam Barth.
-
-        This is just moving code. It it in preparation for making rebaseline-expectations
-        use the same code in order to get the parallelism benefits and reduces the amount
-        of code we have for doing rebaselines.
-
-        * Scripts/webkitpy/common/checkout/checkout_unittest.py:
-        (CheckoutTest.test_apply_patch):
-        Updated due to the change to executive_mock.
-        * Scripts/webkitpy/common/system/executive_mock.py:
-        (MockExecutive.run_command):
-        Update to print out the input passed to stdin.
-        * Scripts/webkitpy/tool/commands/download_unittest.py:
-        Updated due to executive_mock change.
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineAll):
-        (RebaselineAll._run_webkit_patch):
-        (RebaselineAll._builders_to_fetch_from):
-        (RebaselineAll._rebaseline_commands):
-        (RebaselineAll._files_to_add):
-        (RebaselineAll._optimize_baselines):
-        (RebaselineAll._rebaseline):
-        (RebaselineAll.execute):
-        All this code is just copy-pasted except for mechanical changes
-        (e.g. self.server.tool --> self._tool) and the reading in of the 
-        JSON from stdin instead of the post body.
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (test_rebaseline_all):
-        Copied the test-case out of gardeningserver_unittest.py.
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        (GardeningHTTPRequestHandler):
-        (GardeningHTTPRequestHandler.rebaseline):
-        (GardeningHTTPRequestHandler.rebaselineall):
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-        (GardeningServerTest.test_rebaselineall):
-        (GardeningServerTest.test_rebaselineall.run_command):
-
-2012-07-02  Ojan Vafai  <ojan@chromium.org>
-
-        Remove Leopard support from the flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=90390
-
-        Reviewed by Adam Barth.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (nonChromiumPlatform):
-        (chromiumPlatform):
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-        (test):
-        * TestResultServer/static-dashboards/run-embedded-unittests.html:
-        * TestResultServer/static-dashboards/run-unittests.html:
-
-2012-07-02  Ojan Vafai  <ojan@chromium.org>
-
-        Fix posting from garden-o-matic. This broke in moving away from jquery's ajax method
-        in http://trac.webkit.org/changeset/121617.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/net.js:
-
-2012-07-02  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Read fonts path when running layout tests from alternative fonts dir when main dir doesn't exist
-        https://bugs.webkit.org/show_bug.cgi?id=89437
-
-        Reviewed by Martin Robinson.
-
-        If main fonts directory doesn't exist, try with an alternative
-        fonts directory at build directory.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (getOutputDir):
-        (getFontsPath):
-        (initializeFonts):
-        * WebKitTestRunner/InjectedBundle/gtk/ActivateFontsGtk.cpp:
-        (WTR::getOutputDir):
-        (WTR):
-        (WTR::getFontsPath):
-        (WTR::inititializeFontConfigSetting):
-
-2012-07-02  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Don't run the tests with jhbuild wrapper if it's already running under jhbuild
-        https://bugs.webkit.org/show_bug.cgi?id=89435
-
-        Reviewed by Martin Robinson.
-
-        * Scripts/new-run-webkit-tests: Don't run the tests with the
-        jhbuild wrapper if there isn't a Dependencies directory inside the
-        build directory.
-
-2012-06-29  Oswald Buddenhagen  <oswald.buddenhagen@nokia.com>
-
-        [Qt] Simplify detection of non-installed module file
-
-        Has the additional advantage that we do not rely on additional information.
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/qt_webkit.pri:
-
-2012-07-01  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Add Gamepad support
-        https://bugs.webkit.org/show_bug.cgi?id=90170
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * Scripts/webkitperl/FeatureList.pm: Turn on GAMEPAD flag
-        by default for EFL port.
-        * efl/jhbuild.modules: Bump dependency versions of EFL libs
-        since the latest Eeze is required for gamepad support.
-
-2012-07-01  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        Using the default start cylinder for fdisk causes a warning about the
-        partition not starting on physical sector boundary.  The Ubuntu forums
-        recommend using a number that's divisible by 8, which is what we do in
-        this patch.
-
-        * EWSTools/cold-boot.sh:
-
-2012-07-01  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        It turns out we need to use Ubuntu 10.04 to get the right image results
-        for chromium-linux. This patch updates our scripts to be compatible
-        with Ubuntu 10.04.
-
-        * EWSTools/cold-boot.sh:
-            - fdisk doesn't have p and 1 as default commands in 10.04.
-        * EWSTools/start-queue.sh:
-            - git doesn't understanding the -B argument in 10.04. We've been
-              using this change locally on the EC2 bots for a while.
-
-2012-07-01  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        * EWSTools/boot.sh:
-            - We need to start the screen in detached mode so that we can run
-              it remotely via ssh.
-
-2012-07-01  Adam Barth  <abarth@webkit.org>
-
-        Unreviewed.
-
-        * EWSTools/cold-boot.sh:
-            - Turns out we need to sudo this command in order for it to
-              actually dimiss the EULA screen. :)
-
-2012-06-29  Adam Barth  <abarth@webkit.org>
-
-        Turns out we need zip too.
-
-        * EWSTools/cold-boot.sh:
-
-2012-06-29  Adam Barth  <abarth@webkit.org>
-
-        Add a cold-boot.sh script for the EWS
-        https://bugs.webkit.org/show_bug.cgi?id=90330
-
-        Unreviewed.
-
-        * EWSTools/cold-boot.sh: Added.
-            - This script can take us from a cold GCE instance to a running EWS
-              bot in one fell swoop.
-        * EWSTools/start-queue.sh:
-            - The if-block at the top of this script was causing trouble. I
-              removed it from the bots a while ago. Now that we're using SVN to
-              cold-boot the EWS bots, we need to make this change in the repo.
-
-2012-06-29  Luiz Agostini  <luiz.agostini@nokia.com>
-
-        [Qt][WK2] Private non-QtQuick API
-        https://bugs.webkit.org/show_bug.cgi?id=84532
-
-        MiniBrowserRaw is an usage example for the QRawWebView API.
-        It is only an example and is not fully implemented.
-
-        Reviewed by Noam Rosenthal.
-
-        * MiniBrowser/qt/raw/DerivedSources.pri: Added.
-        * MiniBrowser/qt/raw/MiniBrowserRaw.pro: Added.
-        * MiniBrowser/qt/raw/Target.pri: Added.
-        * MiniBrowser/qt/raw/View.cpp: Added.
-        * MiniBrowser/qt/raw/View.h: Added.
-        * Scripts/webkitpy/style/checker.py:
-        * Tools.pro:
-
-2012-06-29  Ojan Vafai  <ojan@chromium.org>
-
-        Remove leopard bots from garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=90328
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js:
-
-2012-06-29  Ojan Vafai  <ojan@chromium.org>
-
-        garden-o-matic broken: TypeError: 'undefined' is not an object (evaluating 'buildLocations[currentIndex].url')
-        https://bugs.webkit.org/show_bug.cgi?id=90243
-
-        Reviewed by Dirk Pranke.
-
-        jQuery was trying to be too smart and parsing the jsonp as json because of it's content-type.
-        Excise jQuery and just use XHR directly since it's easier to maintain something where we control it
-        all.
-
-        Not really sure how to unittest this. I tested it all manually of course.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/net.js:
-        Made net.ajax a drop-in replacement for the features of $.ajax that we were using.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui_unittests.js:
-        Not related to this patch, but figured I'd update the failing test while I was at it.
-
-2012-06-29  Yaron Friedman  <yfriedman@chromium.org>
-
-        Fix layout test runner for Android after https://bugs.webkit.org/show_bug.cgi?id=88134
-        https://bugs.webkit.org/show_bug.cgi?id=90309
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.start_http_server):
-
-2012-06-29  James Weatherall  <wez@chromium.org>
-
-        NPObjectWrapper may not address all window script object lifetime issues
-        https://bugs.webkit.org/show_bug.cgi?id=85679
-
-        TestNetscapePlugin now has a leak-window-scriptable-object test which takes a reference to the window script object, and a second reference to it via the "self" property, and does not release those references. This is used to simulate a leaky plugin in layout tests of the NPAPI scripting interface glue code.
-
-        Reviewed by Nate Chapin.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
-        (PluginTest::NPN_GetProperty):
-        * DumpRenderTree/TestNetscapePlugIn/PluginTest.h:
-        (PluginTest):
-        * DumpRenderTree/TestNetscapePlugIn/Tests/LeakWindowScriptableObject.cpp: Added.
-        (LeakWindowScriptableObject):
-        (LeakWindowScriptableObject::LeakWindowScriptableObject):
-        (LeakWindowScriptableObject::NPP_New):
-
-2012-06-29  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: add comment about how determine_full_port_name() works for apple ports, fix -wk2 bug
-        https://bugs.webkit.org/show_bug.cgi?id=90314
-
-        Reviewed by Ojan Vafai.
-
-        Add comments and fix a bug in how we would handle the mac-wk2
-        and win-wk2 port names after confusion around in bug 90312 :).
-
-        * Scripts/webkitpy/layout_tests/port/apple.py:
-        (ApplePort.determine_full_port_name):
-
-2012-06-29  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: remove support for mac leopard from chromium configurations
-        https://bugs.webkit.org/show_bug.cgi?id=90313
-
-        Reviewed by Tony Chang.
-
-        Google has shipped the last version of Chrome that will support
-        Mac OS 10.5 (Leopard), and we no longer have bots that run this
-        configuration, so we're removing support for it.
-
-        A subsequent change will remove the baselines in platform/chromium-mac-leopard.
-
-        * Scripts/webkitpy/common/checkout/baselineoptimizer_unittest.py:
-        (BaselineOptimizerTest.test_complex_shadowing):
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        (ChromiumMacPort):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        (ChromiumMacPortTest.test_versions):
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-        (FactoryTest.test_mac):
-        (FactoryTest.test_chromium_mac):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (test_rebaseline_and_copy_test_with_lion_result):
-
-2012-06-29  Ojan Vafai  <ojan@chromium.org>
-
-        Fix optimize-baselines to not move baselines from win to win-7sp0
-        https://bugs.webkit.org/show_bug.cgi?id=90312
-
-        Reviewed by Dirk Pranke.
-
-        It used to consider win-7sp0 as the common directory for all the Apple
-        windows ports and incorrectly move results out of win.
-
-        * Scripts/webkitpy/common/checkout/baselineoptimizer.py:
-        * Scripts/webkitpy/common/checkout/baselineoptimizer_unittest.py:
-        (BaselineOptimizerTest.test_win_does_not_drop_to_win_7sp0):
-        (BaselineOptimizerTest.test_common_directory_includes_root):
-
-2012-06-28  Ojan Vafai  <ojan@chromium.org>
-
-        Fix rebaselining for Qt and Apple ports
-        https://bugs.webkit.org/show_bug.cgi?id=90204
-
-        Reviewed by Dirk Pranke.
-
-        -Apporpriately put wk2 results in the -wk2 directories.
-        -Since Qt and Apple-Win don't have bots that correspond to the
-        platform/qt and platform/win directories, we need to fudge it
-        and always put the results in those directories for those ports.
-
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        (rebaseline_override_dir):
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        (_builder_options):
-        Identify webkit2 builders by the WK2 in the builder name.
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineTest._baseline_directory):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (TestRebaseline.test_baseline_directory):
-
-2012-06-29  Zoltan Horvath  <zoltan@webkit.org>
-
-        Add support for --force parameter to run-performance-tests
-        https://bugs.webkit.org/show_bug.cgi?id=90279
-
-        Reviewed by Dirk Pranke.
-
-        It's helpful to be able to run tests from the Skipped list of the performance tests.
-
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner._parse_args):
-        (PerfTestsRunner._collect_tests):
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py: Add test.
-        (test_collect_tests_with_skipped_list):
-
-2012-06-29  Tony Chang  <tony@chromium.org>
-
-        [GTK] Enable CSS grid layout LayoutTests on GTK+
-        https://bugs.webkit.org/show_bug.cgi?id=90226
-
-        Reviewed by Martin Robinson.
-
-        This feature is disabled via Settings by default, but for testing,
-        we enable it using layoutTestController.overridePreferences. Add the
-        necessary plumbing for DRT.
-
-        WTR already works because support was added for Apple Mac earlier.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (resetDefaultsToConsistentValues): Feature is off by default.
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::overridePreference): Add handling of WebKitCSSGridLayoutEnabled.
-
-2012-06-29  Ádám Kallai  <kadam@inf.u-szeged.hu>
-
-        [Qt] Added Qt port for garden-o-matic.
-        https://bugs.webkit.org/show_bug.cgi?id=82719
-
-        Reviewed by Adam Barth.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-        (.):
-
-2012-06-29  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt][WTR] Get rid of using DumpRenderTreeSupportQt
-        https://bugs.webkit.org/show_bug.cgi?id=90262
-
-        Reviewed by Alexey Proskuryakov.
-
-        Now that we decided to not support v8 in WebKit2
-        we can get rid of using DumpRenderTreeSupportQt
-        in WebKitTestRunner.
-
-        * Tools.pro:
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::resetAfterTest):
-        (WTR::InjectedBundlePage::didClearWindowForFrame):
-        * WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
-
-2012-06-29  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Revert r121540, it broke most Qt builds
-
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/functions.prf:
-
-2012-06-29  Oswald Buddenhagen  <oswald.buddenhagen@nokia.com>
-
-        [Qt] Make build-webkit reject uknown configurations, eg. --profile
-
-        The qmake-based buildsystem doesn't support it.
-
-        Reviewed by Tor Arne Vestbø.
-
-        * Scripts/webkitdirs.pm:
-        (buildQMakeProjects):
-
-2012-06-29  Oswald Buddenhagen  <oswald.buddenhagen@nokia.com>
-
-        [Qt] Don't add Qt module dependencies in features.prf
-
-        The required dependencies are already added in WebCore.pri.
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-06-27  Oswald Buddenhagen  <oswald.buddenhagen@nokia.com>
-
-        [Qt] Use LIBS_PRIVATE instead of putting dependencies into LIBS
-
-        Reviewed by Tor Arne Vestbø..
-
-        * qmake/mkspecs/features/default_post.prf:
-        * qmake/mkspecs/features/functions.prf:
-
-2012-06-28  Ryosuke Niwa  <rniwa@webkit.org>
-
-        DOMHTMLCollection::item may return a wrong element after namedItem is called
-        https://bugs.webkit.org/show_bug.cgi?id=90240
-
-        Reviewed by Antti Koivisto.
-
-        Add a WebKit API test since namedItem is not used in the JS/V8 binding code.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/mac/HTMLCollectionNamedItem.html: Copied from Tools/TestWebKitAPI/Tests/mac/HTMLFormCollectionNamedItem.html.
-        * TestWebKitAPI/Tests/mac/HTMLCollectionNamedItem.mm: Copied from Tools/TestWebKitAPI/Tests/mac/HTMLFormCollectionNamedItem.mm.
-        (TestWebKitAPI::TEST):
-
-2012-06-28  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: remove the 'google-chrome' port code
-        https://bugs.webkit.org/show_bug.cgi?id=88824
-
-        Reviewed by Ojan Vafai.
-
-        NRWT now supports passing additional baseline directories
-        and expectations files on the command line, so there's no need
-        to support the concept of a 'google-chrome' port directly.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.path_to_test_expectations_file):
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        (ChromiumMacPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        (ChromiumWinPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        (PortFactory):
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-        (FactoryTest.test_win):
-        * Scripts/webkitpy/layout_tests/port/google_chrome.py: Removed.
-        * Scripts/webkitpy/layout_tests/port/google_chrome_unittest.py: Removed.
-
-2012-06-28  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: clean up how arguments are passed to workers
-        https://bugs.webkit.org/show_bug.cgi?id=90126
-
-        Reviewed by Ojan Vafai.
-
-        The way arguments are passed to workers has been crufty. It
-        turns out it can be a lot cleaner via two things:
-        1) using a factory method instead of instantiating objects
-        directly in manager_worker_broker removes the need for passing
-        'worker arguments' to the broker.
-        2) it turns out that since mock hosts and test ports are purely
-        in-memory constructions, they can be pickled and passed to child
-        workers, meaning that the worker no longer needs hacky code to
-        pass the port in a special case or to guess what to do if we
-        don't have a host - all of the test-specific logic can move to
-        the test file, where we can stub out the mock host's
-        port_factory to return the same already-created port when it
-        needs to be shared.
-
-        This change also moves WorkerException to manager_worker_broker.py
-        where it belongs, and removes several useless tests that were
-        just a maintenance burden (and would've needed rewriting when we
-        change the rest of the broker implementation).
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._run_tests.worker_factory):
-        (Manager._run_tests):
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
-        (get):
-        (WorkerException):
-        (AbstractWorker.__init__):
-        (_ManagerConnection.__init__):
-        (_ManagerConnection.start_worker):
-        (_InlineManager.__init__):
-        (_InlineManager.start_worker):
-        (_MultiProcessManager._can_pickle_host):
-        (_MultiProcessManager):
-        (_MultiProcessManager.start_worker):
-        (_WorkerConnection.__init__):
-        (_InlineWorkerConnection.__init__):
-        (_InlineWorkerConnection.join):
-        (_InlineWorkerConnection.run):
-        (_Process.run):
-        (_MultiProcessWorkerConnection.__init__):
-        (_MultiProcessWorkerConnection.start):
-        (_MultiProcessWorkerConnection):
-        (_MultiProcessWorkerConnection.run):
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker_unittest.py:
-        (_TestWorker.__init__):
-        (_TestWorker.run):
-        (_TestsMixin.test_name):
-        (_TestsMixin.test_cancel):
-        (_TestsMixin.test_done):
-        (_TestsMixin.test_unknown_message):
-        (InlineBrokerTests.setUp):
-        (MultiProcessBrokerTests.setUp):
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        (Worker.__init__):
-        (Worker.run):
-        * Scripts/webkitpy/layout_tests/controllers/worker_unittest.py: Removed.
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (passing_run):
-        (logging_run):
-        (run_and_capture):
-        (MainTest.test_child_processes_2):
-        (MainTest.test_child_processes_min):
-        (MainTest.test_exception_raised):
-        (MainTest.test_keyboard_interrupt):
-        (MainTest.test_retrying_and_flaky_tests):
-        (MainTest.test_run_order__inline):
-
-2012-06-28  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: don't try to catch worker exceptions in run_webkit_tests.__main__
-        https://bugs.webkit.org/show_bug.cgi?id=90125
-
-        Reviewed by Ojan Vafai.
-
-        It turns out run_webkit_tests.py wasn't really using
-        WorkerException and the catch we had for it was pointless. I've
-        removed the symbol import and moved it to the integration tests
-        where it is needed. Eventually the definition of the exception
-        moves to the broker module, and so minimizing the number of
-        users of it is a good thing.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_exception_raised):
-
-2012-06-28  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: clean up passing of log messages between processes
-        https://bugs.webkit.org/show_bug.cgi?id=90123
-
-        Reviewed by Ojan Vafai.
-
-        It turns out log messages are perfectly picklable by themselves
-        and contain the process id of the process that generated the
-        message, so if we just pass the record from the worker to the
-        manager and call logger.handle() in the manager, everything just
-        works :).
-
-        The change is covered by existing tests.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._log_messages):
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        (_WorkerLogHandler.emit):
-        * Scripts/webkitpy/layout_tests/views/metered_stream.py:
-        (MeteredStream.__init__):
-        (_LogHandler.emit):
-
-2012-06-28  Dirk Pranke  <dpranke@chromium.org>
-
-        add a pylint wrapper for linting python code
-        https://bugs.webkit.org/show_bug.cgi?id=90232
-
-        Reviewed by Adam Barth.
-
-        Currently we use 'pep8' to check python code in
-        check-webkit-style. pep8 is fast but simple; pylint is slower
-        but has much more robust linting capabilities and will catch
-        variable typos and all sorts of other things. Eventually we
-        should switch check-webkit-style to use this, but our code is
-        far from linting now so it needs to be cleaned up first.
-
-        This change adds the infrastructure and a wrapper so we can
-        start doing that.
-
-        * Scripts/lint-webkitpy: Added.
-        * Scripts/webkitpy/pylintrc: Added.
-        * Scripts/webkitpy/thirdparty/__init__.py:
-        (AutoinstallImportHook.find_module):
-        (AutoinstallImportHook._install_pylint):
-
-2012-06-28  Tony Chang  <tony@chromium.org>
-
-        [GTK] Use WEBKITOUTPUTDIR to find fonts in DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=90215
-
-        Reviewed by Martin Robinson.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (initializeFonts): Check for WEBKITOUTPUTDIR first.
-        * Scripts/webkitpy/layout_tests/port/gtk.py:
-        (GtkPort.setup_environ_for_server): Copy the environment variable to the child process.
-        * WebKitTestRunner/InjectedBundle/gtk/ActivateFontsGtk.cpp:
-        (WTR::inititializeFontConfigSetting): Check for WEBKITOUTPUTDIR first.
-
-2012-06-28  Dirk Pranke  <dpranke@chromium.org>
-
-        derive ChromiumPort from WebKitPort in NRWT in order to support skipping tests if symbols are missing
-        https://bugs.webkit.org/show_bug.cgi?id=89706
-
-        Reviewed by Ojan Vafai.
-
-        Try again to land the change first landed in r121363. This patch
-        adds a bunch more tests and reworks the handling of
-        port-specific default values for --pixel-tests and --time-out-ms
-        to be more consistent (adding a default_pixel_tests() method,
-        pushing the webkit default_timeout_ms() value up into base.py,
-        and overriding it properly in the chromium and apple mac ports.
-
-        Also change the logic in
-        run_webkit_tests._setup_derived_options() to not second-guess
-        what the port wants the timeout value to be for debug builds;
-        computing this in two different places led to several bugs.
-
-        This change also changes the Chromium unittest ports to derive
-        from ChromiumPortTestCase instead of PortTestCase, so that we
-        ensure that we're running the same tests on all port variants
-        more easily. There's more cleanup that can be done here, but
-        this is good enough for now
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.default_pixel_tests):
-        (Port):
-        (Port.default_timeout_ms):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort):
-        (ChromiumPort.__init__):
-        (ChromiumPort.default_pixel_tests):
-        (ChromiumPort.default_timeout_ms):
-        (ChromiumPort.driver_name):
-        (ChromiumPort._driver_class):
-        (ChromiumPort._missing_symbol_to_skipped_tests):
-        (ChromiumPort.skipped_layout_tests):
-        (ChromiumPort.setup_test_run):
-        (ChromiumPort._path_to_image_diff):
-        (ChromiumPort._convert_path):
-        * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:
-        (ChromiumAndroidPortTest):
-        (ChromiumAndroidPortTest.test_expectations_files):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        (ChromiumLinuxPort._modules_to_search_for_symbols):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux_unittest.py:
-        (ChromiumLinuxPortTest):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        (ChromiumMacPort._modules_to_search_for_symbols):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        (ChromiumMacPortTest):
-        * Scripts/webkitpy/layout_tests/port/chromium_port_testcase.py:
-        split off from chromium_unittest.
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        (ChromiumWinPort._modules_to_search_for_symbols):
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        (ChromiumWinTest):
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.default_timeout_ms):
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        (MacTest.test_default_timeout_ms):
-        * Scripts/webkitpy/layout_tests/port/mock_drt.py:
-        (MockDRTPort.start_http_server):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (PortTestCase.test_default_timeout_ms):
-        (PortTestCase):
-        (PortTestCase.test_default_pixel_tests):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort.default_pixel_tests):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._modules_to_search_for_symbols):
-        (WebKitPort):
-        (WebKitPort._symbols_string):
-        (WebKitPort._skipped_tests_for_unsupported_features):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (TestWebKitPort._symbols_string):
-        (TestWebKitPort._tests_for_disabled_features):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (_set_up_derived_options):
-
-2012-06-28  Joshua Bell  <jsbell@chromium.org>
-
-        run-bindings-tests should return non-zero exit code on test failure
-        https://bugs.webkit.org/show_bug.cgi?id=90205
-
-        Reviewed by Adam Barth.
-
-        * Scripts/run-bindings-tests:
-        (main):
-
-2012-06-28  Terry Anderson  <tdanderson@chromium.org>
-
-        [chromium] Reset the device scale factor to 1 before each test is run
-        https://bugs.webkit.org/show_bug.cgi?id=90212
-
-        Reviewed by Adam Barth.
-
-        Some tests change the device scale factor, so this needs to be reset to
-        1.0 at the start of each test to avoid test flakiness.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::reset):
-
-2012-06-28  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Cleanup HTMLFormCollection
-        https://bugs.webkit.org/show_bug.cgi?id=90111
-
-        Reviewed by Andreas Kling.
-
-        Add a WebKit API test using copy-paste design pattern per kling's request.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/mac/HTMLFormCollectionNamedItem.html: Added.
-        * TestWebKitAPI/Tests/mac/HTMLFormCollectionNamedItem.mm: Added.
-        (-[HTMLFormCollectionNamedItemTest webView:didFinishLoadForFrame:]):
-        (TestWebKitAPI):
-        (TestWebKitAPI::TEST):
-
-2012-06-28  Tim Horton  <timothy_horton@apple.com>
-
-        [mac] WKTR windows still don't stay off screen sometimes
-        https://bugs.webkit.org/show_bug.cgi?id=90214
-        <rdar://problem/11760263>
-
-        Reviewed by Simon Fraser.
-
-        In some cases, the system itself will consult [WebKitTestRunnerWindow frame], so we should refrain from
-        overriding it and instead provide a different method to use when we want the web-facing "fake" window origin
-        (for PlatformWebView::windowFrame()).
-
-        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
-        (-[WebKitTestRunnerWindow frameRespectingFakeOrigin]):
-        (WTR::PlatformWebView::windowFrame):
-
-2012-06-28  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Add unit tests for GtkInputMethodFilter
-        https://bugs.webkit.org/show_bug.cgi?id=88698
-
-        Reviewed by Carlos Garcia Campos.
-
-        Add unit tests for GtkInputMethodFilter in the WebCore platform layer.
-        This change adds the TestGtk test suite which will be used for all non-API
-        layer GTK unit tests.
-
-        * TestWebKitAPI/GNUmakefile.am: Update the build to include the new tests.
-        * TestWebKitAPI/Tests/gtk/InputMethodFilter.cpp: Added.
-        (TestWebKitAPI::PlatformWebView::PlatformWebView): Remove the call to gtk_init here
-        as it's now in main.cpp.
-        * TestWebKitAPI/gtk/main.cpp: Change the g_type_init call to gtk_init, because now
-        a majority of all unit tests depend on GTK+ being initialized.
-
-2012-06-28  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Enable support for HTML5 datalist
-        https://bugs.webkit.org/show_bug.cgi?id=90157
-
-        Reviewed by Martin Robinson.
-
-        Turn on DATALIST flag by default on EFL port to
-        support HTML5 datalist tag.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-06-28  Tony Chang  <tony@chromium.org>
-
-        Enable CSS grid layout LayoutTests on platform Mac
-        https://bugs.webkit.org/show_bug.cgi?id=90113
-
-        Reviewed by Ojan Vafai.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues): Reset the value to NO between tests.
-
-2012-06-28  Mike Fenton  <mifenton@rim.com>
-
-        [BlackBerry] Add watchlist options for Blackberry and editing.
-        https://bugs.webkit.org/show_bug.cgi?id=90193
-
-        Unreviewed.
-
-        Add BlackBerry and Editing watchlist and monitor them.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-06-28  Tim Horton  <timothy_horton@apple.com>
-
-        Unreviewed, upgrade myself to a reviewer!
-
-        http://www.webkit.org/blog/2082/tim-horton-is-now-a-webkit-reviewer/
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-06-28  Terry Anderson  <tdanderson@chromium.org>
-
-        [Chromium] Chromium's LayoutTestController is missing setBackingScaleFactor
-        https://bugs.webkit.org/show_bug.cgi?id=83635
-
-        Reviewed by Adam Barth.
-
-        Added InvokeCallbackTask, a new derived class of MethodTask. When
-        setBackingScaleFactor is called, a call to setDeviceScaleFactor in
-        WebView is made and then postTask is used to invoke the callback
-        function specified in testRunner.setBackingScaleFactor. 
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (InvokeCallbackTask):
-        (InvokeCallbackTask::InvokeCallbackTask):
-        (InvokeCallbackTask::runIfValid):
-        (LayoutTestController::setBackingScaleFactor):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController):
-
-2012-06-28  Ojan Vafai  <ojan@chromium.org>
-
-        Make rebaseline-test and rebaseline-expectations work for non-Chromium ports
-        https://bugs.webkit.org/show_bug.cgi?id=90186
-
-        Reviewed by Adam Barth.
-
-        This makes rebaselining work for all ports that have a TestExpectations file
-        in the tree. I didn't test other ports.
-
-        This doesn't address 100% of the problem. The rebaseline code puts the expectations
-        in the most specific directory and relies on optimize-baselines to merge baselines
-        appropriately. This only works if every platform directory has an equivalent bot
-        that runs the tests, which is not true for most ports.
-
-        * Scripts/webkitpy/common/net/buildbot/buildbot.py:
-        (Builder._revision_and_build_for_filename):
-        Some bots have filenames that aren't revision/build number pairs
-        e.g. they are random junk like aQhxvx. Handle this gracefully.
-        (Builder._fetch_revision_to_build_map):
-        (Builder._file_info_list_to_revision_to_build_list):
-        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
-        (BuilderTest.test_build_and_revision_for_filename):
-        (BuilderTest.test_file_info_list_to_revision_to_build_list):
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        Update the list of builders. This list needs to be kept up
-        to date for the rebaseline tool to work.
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineTest._results_url):
-        (RebaselineExpectations._run_webkit_patch):
-        (RebaselineExpectations._rebaseline_port):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        Qt port uses qmake to determine the right version. Systems without qmake correctly fallback
-        to a specific version.
-
-2012-06-28  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt][NRWT] Fix baseline and skipped file search path.
-        https://bugs.webkit.org/show_bug.cgi?id=89882
-
-        Unreviewed trivial typo fix after r121430.
-
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        (QtPortTest._assert_search_path):
-        (QtPortTest._assert_skipped_path):
-
-2012-06-28  János Badics  <jbadics@inf.u-szeged.hu>
-
-        [Qt][NRWT] Fix baseline and skipped file search path.
-        https://bugs.webkit.org/show_bug.cgi?id=89882
-
-        Reviewed by Csaba Osztrogonác.
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort._search_paths):
-        (QtPort):
-        (QtPort.baseline_search_path):
-        (QtPort._skipped_file_search_paths):
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        (QtPortTest):
-        (QtPortTest._assert_skipped_path):
-        (QtPortTest.test_baseline_search_path):
-        (QtPortTest.test_skipped_file_search_path):
-
-2012-06-28  Alexander Pavlov  <apavlov@chromium.org>
-
-        [Qt] inspector/styles/inject-stylesheet.html makes 4 tests flakey (TEXT PASS)
-        https://bugs.webkit.org/show_bug.cgi?id=90167
-
-        Reviewed by Csaba Osztrogonác.
-
-        DRT should remove user stylesheets from the page group when resetting before running another test.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):
-
-2012-06-28  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt][DRT] Reset AcceleratedCompositingEnabled between tests
-        https://bugs.webkit.org/show_bug.cgi?id=90164
-
-        Reviewed by Simon Hausmann.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::resetSettings):
-
-2012-06-28  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Restore original value of mock scrollbars between tests
-        https://bugs.webkit.org/show_bug.cgi?id=90155
-
-        Reviewed by Simon Hausmann.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::resetSettings):
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::setMockScrollbarsEnabled):
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController):
-
-2012-06-27  Mark Rowe  <mrowe@apple.com>
-
-        <http://webkit.org/b/90096> Building within Xcode sometimes does a full rebuild after building via build-webkit
-
-        We need to ensure that build-webkit uses the same setting for SHARED_PRECOMPS_DIR
-        as what Xcode itself will use when building, otherwise switching between the two
-        can result in the precompiled headers being rebuilt and thus the entire world
-        rebuilding.
-
-        Reviewed by Dan Bernstein.
-
-        * Scripts/webkitdirs.pm:
-        (determineBaseProductDir):
-
-2012-06-27  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r121363, r121367, r121384, and
-        r121390.
-        http://trac.webkit.org/changeset/121363
-        http://trac.webkit.org/changeset/121367
-        http://trac.webkit.org/changeset/121384
-        http://trac.webkit.org/changeset/121390
-        https://bugs.webkit.org/show_bug.cgi?id=90134
-
-        It broke debug NRWT on GTK and on Qt (Requested by Ossy_NIGHT
-        on #webkit).
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort):
-        (ChromiumPort.__init__):
-        (ChromiumPort._check_file_exists):
-        (ChromiumPort.default_results_directory):
-        (ChromiumPort._driver_class):
-        (ChromiumPort._build_path):
-        (ChromiumPort._path_to_image_diff):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        (ChromiumLinuxPort.baseline_search_path):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        (ChromiumMacPort.baseline_search_path):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumPortTest):
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        (ChromiumWinPort.baseline_search_path):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort.__init__):
-        (WebKitPort._webcore_symbols_string):
-        (WebKitPort._skipped_tests_for_unsupported_features):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (TestWebKitPort._webcore_symbols_string):
-        (WebKitPortUnitTests.test_default_options):
-
-2012-06-27  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix typo in r121384 :(
-
-        Unreviewed, build fix.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort.default_test_timeout_ms):
-
-2012-06-27  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: default timeout for debug bots broke in r121363
-        https://bugs.webkit.org/show_bug.cgi?id=90112
-
-        Unreviewed, build fix.
-
-        I forgot to account for release and debug having different
-        default values :(.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.default_test_timeout_ms):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort):
-        (WebKitPort.default_test_timeout_ms):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (WebKitPortUnitTests.test_default_options):
-
-2012-06-27  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: fix a couple of issues running under cygwin
-        https://bugs.webkit.org/show_bug.cgi?id=90035
-
-        Reviewed by Eric Seidel.
-
-        These were causing unit tests to fail on cygwin (apple win bot).
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/performance_tests/perftest.py:
-
-2012-06-27  Adam Barth  <abarth@webkit.org>
-
-        [Chromium] DumpRenderTree on Android should call SkUseTestFontConfigFile once available
-        https://bugs.webkit.org/show_bug.cgi?id=89801
-
-        Reviewed by Nate Chapin.
-
-        Let's call SkUseTestFontConfigFile now that it exists.
-
-        * DumpRenderTree/chromium/TestShellAndroid.cpp:
-        (platformInit):
-
-2012-06-27  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix typo introduced in r121363.
-
-        Unreviewed, build fix.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._symbols_string):
-
-2012-06-27  Mark Hahnenberg  <mhahnenberg@apple.com>
-
-        Moving from committers to reviewers :-)
-
-        Rubber stamped by Filip Pizlo.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-06-27  Dirk Pranke  <dpranke@chromium.org>
-
-        Derive ChromiumPort from WebKitPort to add support for missing symbols to skip tests
-        https://bugs.webkit.org/show_bug.cgi?id=89706
-
-        Reviewed by Adam Barth.
-
-        Based on the original patch by Raymond Toy.
-
-        This patch changes ChromiumPort to derive from webkit.WebKitPort
-        instead of base.Port. This is a long-awaited change and a
-        precursor to merging base.Port and webkit.WebKitPort, but is
-        driven by the desire to dynamically detect whether the MP3 and
-        AAC codecs are compiled into DRT on Chromium, for which we
-        wanted to re-use the existing logic in WebKit port for determine
-        what to skip at compile time.
-
-        Most of the changes are shuffling things around so that we don't
-        change any other logic and so we override the necessary methods
-        in WebKitPort (and try to follow the same method definition
-        order where possible).
-
-        Also, on the Chromium port the mp3 and aac codecs are actually
-        defined in a separate library, so scanning webcore isn't
-        sufficient. This patch generalizes the symbol lookup to handle
-        multiple libraries, and uses different libraries as appropriate
-        for Chromium.
-
-        The only functional/visible changes should be in the value
-        returned for skipped_layout_tests().
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort):
-        (ChromiumPort.__init__):
-        (ChromiumPort.driver_name):
-        (ChromiumPort._driver_class):
-        (ChromiumPort._missing_symbol_to_skipped_tests):
-        (ChromiumPort.skipped_layout_tests):
-        (ChromiumPort.setup_test_run):
-        (ChromiumPort._path_to_image_diff):
-        (ChromiumPort._convert_path):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumPortTest.test_missing_symbol_to_skipped_tests):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        (ChromiumLinuxPort._modules_to_search_for_symbols):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        (ChromiumLinuxPort._modules_to_search_for_symbols):
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        (ChromiumLinuxPort._modules_to_search_for_symbols):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort):
-        (WebKitPort.__init__):
-        (WebKitPort._symbols_string):
-        (WebKitPort._modules_to_search_for_symbols):
-
-2012-06-27  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] REGRESSION(r121339): It broke the build on the Qt Windows bots
-        https://bugs.webkit.org/show_bug.cgi?id=90081
-
-        Buildfix for Qt 4.8 Windows. Use the former path for Qt 4.8, and the newer one for Qt 5.
-
-        Reviewed by Noam Rosenthal.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-06-27  Sergio Villar Senin  <svillar@igalia.com>
-
-        [WK2] [GTK] WebKit2 testing bot fails to run tests due to missing files
-        https://bugs.webkit.org/show_bug.cgi?id=90061
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Add "-no-install -no-fast-install" to the LDFLAGS in bots. With
-        this flag libtool tells the linker to set the rpath for the output
-        file to the full path of the .libs directory, instead of using a
-        wrapper script to set up the LD_LIBRARY_PATH. This will allow us
-        to directly reuse builds in the pure testing bots.
-
-        * BuildSlaveSupport/gtk/daemontools-buildbot.conf:
-
-2012-06-27  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] No need to save and restore TEMPLATE in a function
-
-        This was a leftover from when the logic was not in its own function scope.
-
-        QMAKE_FRAMEWORK_BUNDLE_NAME on the other hand is exported in qtLibraryTarget, which
-        will surprisingly affect the global scope as well, so we have to save and restore it.
-
-        Original patch by Oswald Buddenhagen <oswald.buddenhagen@nokia.com> on 2012-06-27
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/functions.prf:
-
-2012-06-27  Oswald Buddenhagen  <oswald.buddenhagen@nokia.com>
-
-        [Qt] Fix lookup location for sqlite sources
-
-        Don't look in the install dir - we are unlikely to find anything there
-        unless we are doing a developer build.
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-06-27  Zan Dobersek  <zandobersek@gmail.com>
-
-        [Gtk] Add support for the Gamepad API
-        https://bugs.webkit.org/show_bug.cgi?id=87503
-
-        Reviewed by Carlos Garcia Campos.
-
-        Enable the gamepad support for the GTK port.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-06-27  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Fix gcc build after r121302
-        https://bugs.webkit.org/show_bug.cgi?id=90055
-
-        Reviewed by Mark Rowe.
-
-        Assume RTTI is always disabled so that gtest builds on XCode 3.2.6.
-
-        It appears that gcc doesn't like window.get().* inside a template so replace that by [window.get() *] instead.
-
-        * TestWebKitAPI/Configurations/Base.xcconfig:
-        * TestWebKitAPI/Tests/mac/AcceptsFirstMouse.mm:
-        (TestWebKitAPI::AcceptsFirstMouse::runTest):
-
-2012-06-27  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Add master.cfg unittest to help migration - pass BuildStep instances instead of BuildStep subclasses
-        https://bugs.webkit.org/show_bug.cgi?id=89564
-
-        Reviewed by Tony Chang.
-
-        * BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py:
-        (BuildStepsConstructorTest):
-        (BuildStepsConstructorTest.generateTests):
-        (BuildStepsConstructorTest.createTest):
-        (BuildStepsConstructorTest.createTest.doTest):
-
-2012-06-26  Mark Hahnenberg  <mhahnenberg@apple.com>
-
-        Add support for preciseTime() to WebKitTestRunner
-        https://bugs.webkit.org/show_bug.cgi?id=90027
-
-        Reviewed by Darin Adler.
-
-        It would be nice to be able to use preciseTime() in WebKitTestRunner like we can in DumpRenderTree.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp: 
-        (WTR::LayoutTestController::preciseTime): 
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (LayoutTestController):
-
-2012-06-26  Lucas Forschler  <lforschler@apple.com>
-
-      Teach the Apple port how to build the test tools in build-webkit
-      https://bugs.webkit.org/show_bug.cgi?id=89540
-
-      Reviewed by Jon Lee & Simon Fraser.
-
-      * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-      (RunWebKitTests.start): pass --no-build since tools should now be in the downloaded archive
-      (RunUnitTests.start): ditto
-      * Scripts/build-webkit: add tools to the projects build list
-
-2012-06-26  Ojan Vafai  <ojan@chromium.org>
-
-        Only show the platform-appropriate builders for non-layout test failures in garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=90025
-
-        Reviewed by Simon Fraser.
-
-        Move the chromium-specific filtering code into config.js and replace it with a method on each platform
-        config. Also, let the webkit test step name be webkit_tests (build.chromium.org) or layout-test (build.webkit.org).
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-
-2012-06-26  Ojan Vafai  <ojan@chromium.org>
-
-        Fix failing garden-o-matic unittests
-        https://bugs.webkit.org/show_bug.cgi?id=90021
-
-        Reviewed by Adam Barth.
-
-        These had all just fallen out of date.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui_unittests.js:
-
-2012-06-26  Ojan Vafai  <ojan@chromium.org>
-
-        Fix platform picker change handler in garden-o-matic
-        https://bugs.webkit.org/show_bug.cgi?id=90010
-
-        Reviewed by Simon Fraser.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js:
-        The old code never worked. This is hard to test because change handlers require
-        a user-initiated action and the code is changing the window's location, which would
-        navigate the test page.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/onebar.css:
-        Fix the CSS so it doesn't cause the tabstrip to be disconnected from the tabs on Linux
-        due to the large margin-bottom.
-
-2012-06-26  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        webkitpy: Make webkit-patch patches-to-review useful
-        https://bugs.webkit.org/show_bug.cgi?id=89470
-
-        Reviewed by Eric Seidel.
-
-        webkit-patch patches-to-review will now output the list of
-        bugs with patches pending for review that has the user on CC,
-        excluding patches with cq-, sorted by the age of the patch.
-
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        (BugzillaQueries.fetch_bugs_from_review_queue):
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla_mock.py:
-        (MockBugzillaQueries.fetch_bugs_from_review_queue):
-        (MockBugzilla.__init__):
-        (MockBugzilla.authenticate):
-        * Scripts/webkitpy/tool/commands/queries.py:
-        (PatchesToReview):
-        (PatchesToReview.__init__):
-        (PatchesToReview._print_report):
-        (PatchesToReview._generate_report):
-        (PatchesToReview.execute):
-        * Scripts/webkitpy/tool/commands/queries_unittest.py:
-        (QueryCommandsTest.test_patches_to_review):
-
-2012-06-26  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: broken for chromium on vista
-        https://bugs.webkit.org/show_bug.cgi?id=89988
-
-        Reviewed by Tony Chang.
-
-        r121194 removed support for 'chromium-win-vista' as a separate
-        port, but this actually prevented the code from running on vista
-        at all, which is unduly harsh and broke the websocket tests on
-        the (non-webkit) chromium bots that are still running on vista.
-
-        It's probably good enough to pretend that vista is win7 instead;
-        some layout tests will still fail but at least things'll run.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        (ChromiumWinPort.determine_full_port_name):
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        (ChromiumWinTest.test_versions):
-
-2012-06-26  Csaba Osztrogonác  <ossy@webkit.org>
-
-        master.cfg cleanup: Pass CheckOutSource instance instead of class to BuildStep.addStep
-        https://bugs.webkit.org/show_bug.cgi?id=89215
-
-        We need it because it is deprecated and will be dropped in buildbot 0.8.7
-
-        Reviewed by Tony Chang.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (CheckOutSource.__init__):
-        (Factory.__init__):
-
-2012-06-26  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt][Win] Symbols are not exported in QtWebKit5.dll
-        https://bugs.webkit.org/show_bug.cgi?id=88873
-
-        Reviewed by Tor Arne Vestbø.
-
-        When linking the target dll make sure to re-export the symbols from
-        the static libraries marked as export, with the help of a little python
-        script and a qmake extra compiler.
-
-        * Scripts/generate-win32-export-forwards: Added.
-        * qmake/mkspecs/features/win32/default_post.prf:
-
-2012-06-25  Jocelyn Turcotte  <turcotte.j@gmail.com>
-
-        Add a note about hostname completion not working well with --cc completion
-
-        Reviewed by Simon Hausmann.
-
-        Hostname completion tries to resolve anything after an @ sign which is present
-        in the completed list of contributor emails to CC.
-
-        * Scripts/webkit-tools-completion.sh:
-
-2012-06-26  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r121244.
-        http://trac.webkit.org/changeset/121244
-        https://bugs.webkit.org/show_bug.cgi?id=89966
-
-        skip list path is incorrect now. (Requested by Ossy on
-        #webkit).
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort.baseline_search_path):
-        (QtPort._skipped_file_search_paths):
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        (QtPortTest.test_baseline_search_path):
-
-2012-06-26  János Badics  <jbadics@inf.u-szeged.hu>
-
-        [Qt][NRWT] Fix baseline and skipped file search path.
-        https://bugs.webkit.org/show_bug.cgi?id=89882
-
-        Reviewed by Csaba Osztrogonác.
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort.baseline_search_path):
-        * Scripts/webkitpy/layout_tests/port/qt_unittest.py:
-        (QtPortTest.test_baseline_search_path):
-
-2012-06-26  Tony Chang  <tony@chromium.org>
-
-        [Qt] Enable grid layout LayoutTests
-        https://bugs.webkit.org/show_bug.cgi?id=89909
-
-        Reviewed by Csaba Osztrogonác.
-
-        These tests pass, we just need to hook up the overridePreference.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::WebPage::resetSettings): Reset grid layout and regions between tests.
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        (LayoutTestController::overridePreference): Add WebKitCSSGridLayoutEnabled.
-
-2012-06-26  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r121236.
-        http://trac.webkit.org/changeset/121236
-        https://bugs.webkit.org/show_bug.cgi?id=89956
-
-        It's broke the nrwt on qt and gtk platform (Requested by
-        kkristof on #webkit).
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort._build_driver):
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver.py:
-        (XvfbDriver._start):
-        (XvfbDriver._start.x_filter):
-        (XvfbDriver.stop):
-
-2012-06-26  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
-
-        [NRWT] XvfbDriver should choose the next free display
-        https://bugs.webkit.org/show_bug.cgi?id=88414
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort._driver_class):
-        * Scripts/webkitpy/layout_tests/port/xvfbdriver.py:
-        (XvfbDriver.__init__):
-        (XvfbDriver._start):
-        (XvfbDriver._start.next_free_id):
-        (XvfbDriver.stop):
-
-2012-06-25  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Make it possible to build WebKit without QtWidgets
-        https://bugs.webkit.org/show_bug.cgi?id=78109
-
-        Reviewed by Tor Arne Vestbø.
-
-        * Tools.pro: Disable various tools that depend on WK1.
-        * qmake/mkspecs/features/default_post.prf: Add WK1 as supported static lib in WEBKIT
-        * qmake/mkspecs/features/default_pre.prf: Disable WK1 if QtWidgets is not built.
-        * qmake/mkspecs/modules/webkit1.prf: Added.
-
-2012-06-25  Dirk Pranke  <dpranke@chromium.org>
-
-        put vista back for chromium (non-webkit) bots ...
-        https://bugs.webkit.org/show_bug.cgi?id=89929
-
-        Unreviewed, build fix.
-
-        Turns out we've only gotten rid of vista on the webkit tests so
-        far. Put vista back for the other chromium bots ...
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (chromiumPlatform):
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-        (test):
-
-2012-06-25  Dirk Pranke  <dpranke@chromium.org>
-
-        update flakiness dashboard after removing chromium-vista bots
-        https://bugs.webkit.org/show_bug.cgi?id=89925
-
-        Unreviewed, build fix.
-
-        More changes missed in r121194 :(.
-
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (chromiumPlatform):
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-        (test):
-
-2012-06-25  Dirk Pranke  <dpranke@chromium.org>
-
-        remove support for chromium vista from tools
-        https://bugs.webkit.org/show_bug.cgi?id=89915
-
-        Reviewed by Tony Chang.
-
-        This change is all deleting code and updating tests to handle
-        the configuration being gone. All tests now pass except for a
-        few unittests for the flakiness dashboard which were failing
-        before this patch.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js:
-        * Scripts/webkitpy/common/checkout/baselineoptimizer_unittest.py:
-        (BaselineOptimizerTest.test_complex_shadowing):
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        (ChromiumWinPort):
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        (ChromiumWinTest.test_versions):
-        (ChromiumWinTest.test_baseline_path):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-        (BuildCoverageExtrapolatorTest.test_extrapolate):
-
-2012-06-25  Scott Graham  <scottmg@chromium.org>
-
-        [Chromium] add empty impl of WebThemeEngine::getSize() for DRT
-        https://bugs.webkit.org/show_bug.cgi?id=89907
-
-        Not reviewed. Fix build in Chromium.
-
-        * DumpRenderTree/chromium/WebThemeEngineDRTWin.cpp:
-        (WebThemeEngineDRTWin::getSize):
-        * DumpRenderTree/chromium/WebThemeEngineDRTWin.h:
-        (WebThemeEngineDRTWin):
-
-2012-06-25  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        [EFL] Implement Network Information API
-        https://bugs.webkit.org/show_bug.cgi?id=87067
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * efl/jhbuild.modules: Add eeze library dependency.
-
-2012-06-25  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Fix Win32 debug build
-
-        Reviewed by Tor Arne Vestbø.
-
-        Consolidate use_all_in_one_files into mac/unix/win32 default_pre.prf.
-
-        * qmake/mkspecs/features/unix/default_pre.prf:
-        * qmake/mkspecs/features/win32/default_pre.prf: Added.
-
-2012-06-24  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [Qt] Enable <input type="color"> support by default
-        https://bugs.webkit.org/show_bug.cgi?id=89653
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        This feature is complete for Qt WebKit2. Enabling by default
-        will help to mature the implementation.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2012-06-24  Dan Bernstein  <mitz@apple.com>
-
-        Made debug-{minibrowser,safari,test-runner} work with LLDB.
-
-        Reviewed by Sam Weinig.
-
-        * Scripts/debug-minibrowser: Pass INCLUDE_OPTIONS_FOR_DEBUGGING to
-        printHelpAndExitForRunAndDebugWebKitAppIfNeeded().
-        * Scripts/debug-safari: Ditto.
-        * Scripts/debug-test-runner: Ditto.
-        * Scripts/webkitdirs.pm:
-        (debugger): Added. Calls determineDebugger() if needed and returns the chosen debugger.
-        (determineDebugger): Added. Sets the debugger to "lldb" if the --use-lldb switch is present,
-        and to "gdb" otherwise.
-        (printHelpAndExitForRunAndDebugWebKitAppIfNeeded): Changed to print help for the
-        --target-web-process and --use-lldb switches if passed INCLUDE_OPTIONS_FOR_DEBUGGING.
-        (execMacWebKitAppForDebugging): Changed to use the chosen debugger.
-
-2012-06-24  Adam Barth  <abarth@webkit.org>
-
-        [Chromium] Release media resources after each LayoutTest on Android
-        https://bugs.webkit.org/show_bug.cgi?id=89720
-
-        Reviewed by Eric Carlson.
-
-        The LayoutTests can hang when run on Android because we sometimes run
-        out of media resources. This patch causes us to release our media
-        resources after each test in order to avoid running out of this
-        resource. In production, there are other mechanisms that manage this
-        resource.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::resetTestController):
-
-2012-06-23  Zan Dobersek  <zandobersek@gmail.com>
-
-        [Gtk] REGRESSION(r120918): Causes flaky DND tests
-        https://bugs.webkit.org/show_bug.cgi?id=89770
-
-        Reviewed by Martin Robinson.
-
-        Connect to the run-file-chooser signal of the WebKitWebView and
-        return TRUE so no file chooser dialog is run. This prevents certain
-        test failures.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (webViewRunFileChooser):
-        (createWebView):
-
-2012-06-23  Dan Bernstein  <mitz@apple.com>
-
-        debug-{minibrowser,safari,test-runner} fail when gdb is not installed in /usr/bin.
-
-        Reviewed by Sam Weinig.
-
-        * Scripts/webkitdirs.pm:
-        (execMacWebKitAppForDebugging): Use xcrun to locate gdb.
-
-2012-06-23  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed. Skip GTK+ unit test /webkit2/WebKitFindController/hide.
-
-        It fails always when running it in Xvfb.
-
-        * gtk/run-api-tests:
-        (TestRunner):
-
-2012-06-23  Wajahat Siddiqui  <mdwajahatali.siddiqui@motorola.com>
-
-        [GTK][WK2]Mis-spelt defaultWindowTitle
-        https://bugs.webkit.org/show_bug.cgi?id=89808
-
-        Reviewed by Carlos Garcia Campos.
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-
-2012-06-23  Sergio Villar Senin  <svillar@igalia.com>
-
-        [GTK] Add a new webkit2 tests slave bot
-        https://bugs.webkit.org/show_bug.cgi?id=89336
-
-        Reviewed by Csaba Osztrogonác.
-
-        Slave configuration for a new GTK 64 bit release bot that will run
-        WebKit2 tests.
-
-        Also BuildAndTest now accepts the "triggers" parametter,
-        this means that apart from building and testing it can trigger
-        some other build/test sequences in other slaves.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (BuildAndTestFactory.__init__):
-
-2012-06-23  Kwang Yul Seo  <skyul@company100.net>
-
-        Unreviewed. Update my email.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-06-22  Adam Barth  <abarth@webkit.org>
-
-        [Chromium] DumpRenderTree on Android needs to configure fonts for testing
-        https://bugs.webkit.org/show_bug.cgi?id=89721
-
-        Reviewed by Nate Chapin.
-
-        This patch teaches DumpRenderTree to configure Skia to use the fallback
-        fonts that the LayoutTests assume. This patch reduces the number result
-        differences between chromium-android and chromium-linux.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/chromium/TestShellAndroid.cpp:
-        (platformInit):
-        * DumpRenderTree/chromium/android_fallback_fonts.xml: Added.
-        * DumpRenderTree/chromium/android_main_fonts.xml: Added.
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-
-2012-06-22  Alexandru Chiculita  <achicu@adobe.com>
-
-        [CSS Shaders] Re-enable the CSS Shaders compile time flag on Safari Mac
-        https://bugs.webkit.org/show_bug.cgi?id=89781
-
-        Reviewed by Dean Jackson.
-
-        Added CSS Shaders as enabled by default on Safari for Mac.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-06-22  Adam Barth  <abarth@webkit.org>
-
-        Add support for test_expectations_android.txt for overriding test expecations on the chromium-android branch
-        https://bugs.webkit.org/show_bug.cgi?id=89791
-
-        Reviewed by Dirk Pranke.
-
-        Downstream, the chromium-android port maintains a test expectations
-        file to keep track of which tests pass or fail. That causes them to
-        keep a patch in chromium_android.py in their branch.
-
-        This patch teaches chromium_android.py to use test_expectations_android.txt.
-        We don't intend to use this file upstream, but having this code patch
-        upstream lets us unfork webkitpy.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.expectations_files):
-
-2012-06-22  Dirk Pranke  <dpranke@chromium.org>
-
-        run_webkit_tests.py failed with AttributeError(''NoneType' object has no attribute 'pid'')
-        https://bugs.webkit.org/show_bug.cgi?id=89734
-
-        Reviewed by Ryosuke Niwa.
-
-        Fix a crash in ServerProcess if you called .pid() after it
-        crashed during a write(). We had a test for this case but the
-        test wasn't calling pid(), just has_crashed(). Fixed the problem
-        and the test.
-
-        * Scripts/webkitpy/layout_tests/port/server_process.py:
-        (ServerProcess.__init__):
-        (ServerProcess.pid):
-        (ServerProcess._start):
-        (ServerProcess.stop):
-        * Scripts/webkitpy/layout_tests/port/server_process_unittest.py:
-        (FakeServerProcess._start):
-        (TestServerProcess.test_broken_pipe):
-
-2012-06-22  Peter Beverloo  <peter@chromium.org>
-
-        [Chromium] Disable c++0x compatibility warnings in JavaScriptCore.gyp when building for Android
-        https://bugs.webkit.org/show_bug.cgi?id=88853
-
-        Reviewed by Steve Block.
-
-        The Android exclusions were necessary to fix a gyp generation error, as
-        the gcc_version variable wasn't being defined for Android. Remove these
-        exceptions when Chromium is able to define the gcc_version variable.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-06-22  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        Unreviewed gardening. Unskipping test passing after fixing bug 88419.
-
-        * gtk/run-api-tests:
-        (TestRunner): Unskip WTF.HashMap.
-
-2012-06-22  Zoltan Horvath  <zoltan@webkit.org>
-
-        [Qt] Allow DumpRenderTree to dump about:blank
-        https://bugs.webkit.org/show_bug.cgi?id=89685
-
-        Reviewed by Ryosuke Niwa.
-
-        We need to allow DumpRenderTree to dump about:blank page, then it will be consistent with other ports,
-        additionaly this behavior is required for running WTR performance tests.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::processLine):
-
-2012-06-21  Adam Barth  <abarth@webkit.org>
-
-        [Chromium] Reset mediaPlaybackRequiresUserGesture WebSettings after each test
-        https://bugs.webkit.org/show_bug.cgi?id=89718
-
-        Reviewed by Kent Tamura.
-
-        We should reset this WebSetting to its default value so that it behaves
-        consistently across tests.
-
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-        (WebPreferences):
-
-2012-06-21  Zoltan Horvath  <zoltan@webkit.org>
-
-        DRT/WTR python interface handles about:blank incorrectly
-        https://bugs.webkit.org/show_bug.cgi?id=89563
-
-        Reviewed by Dirk Pranke.
-
-        Currently DRT/WTR python interface's _command_from_driver_input function
-        puts the test directory path before about:blank. Remove this incorrect behavior.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver._command_from_driver_input):
-
-2012-06-21  Dirk Pranke  <dpranke@chromium.org>
-
-        reenable perf tests on win
-        https://bugs.webkit.org/show_bug.cgi?id=89690
-
-        Reviewed by Ryosuke Niwa.
-
-        Only the replay tests don't work, and those are disabled by
-        default. This change also fixes the undefined _log reference
-        that was causing a crash.
-
-        * Scripts/run-perf-tests:
-
-2012-06-21  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r120937.
-        http://trac.webkit.org/changeset/120937
-        https://bugs.webkit.org/show_bug.cgi?id=89679
-
-        This patch brought buildbot master down (Requested by svillar
-        on #webkit).
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-06-21  Martin Robinson  <mrobinson@igalia.com>
-
-        [GTK] Combine WebKit API tests into fewer binaries
-        https://bugs.webkit.org/show_bug.cgi?id=88458
-
-        Reviewed by Carlos Garcia Campos.
-
-        Instead of creating one binary per-test file, create binaries for each
-        category of tests. Right now this includes WTF and the WebKit2 C API,
-        but later tests can be added for the GTK+ platform layer and the WebKit1
-        and WebKit2 API layers.
-
-        * TestWebKitAPI/GNUmakefile.am: Compile only two test binaries, one for the WebKit2
-          C API and one for WTF. Refresh the source list to ensure that new test are active.
-        * gtk/run-api-tests: Change the way that tests are skipped by splitting out the
-        concept of skipping a test and skipping a suite (program) of tests. Test cases are
-        skipped because of legitimate failures, but entire programs are skipped because of
-        problems in the harness. As of right now a test program is only skipped if the
-        accessibility bus cannot be started.
-        (SkippedTest.__init__): Make the test case a required argument and have one skipped
-        test case per SkippedTest instance.
-        (SkippedTest.__str__): Ditto.
-        (TestRunner): Update the directory list. We only have two gtest binaries now and they are
-        in one directory. Reformat the test list to make it slightly easier to read.
-        (TestRunner.__init__): Add the _skipped_test_program member, which handles entire
-        test programs that are skipped.
-        (TestRunner._setup_testing_environment): Use the new member.
-        (TestRunner._test_cases_to_skip): Collect all skipped test cases now instead of just
-        the first SkippedTest that matches.
-        (TestRunner._should_run_test_program): Take a look at the new member to make this
-        decision.
-        (TestRunner._run_test_command): Use the name test_program instead of test
-        to disambiguate between test cases and test suites.
-        (TestRunner._run_test_glib): ditto.
-        (TestRunner._run_test_google): Ditto.
-        (TestRunner._run_test): Ditto.
-        (TestRunner.run_tests): Ditto.
-
-2012-06-21  Yong Li  <yoli@rim.com>
-
-        Unreviewed. Moving myself from committer to reviewer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-06-21  Sergio Villar Senin  <svillar@igalia.com>
-
-        [GTK] Add a new webkit2 tests slave bot
-        https://bugs.webkit.org/show_bug.cgi?id=89336
-
-        Reviewed by Philippe Normand.
-
-        Slave configuration for a new GTK bot that will run WebKit2 tests.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-06-21  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [Qt] Add a custom Color Chooser widget to MiniBrowser
-        https://bugs.webkit.org/show_bug.cgi?id=87988
-
-        Reviewed by Alexis Menard.
-
-        Added custom color chooser example for the MiniBrowser.
-
-        * MiniBrowser/qt/MiniBrowser.qrc:
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-        * MiniBrowser/qt/qml/ColorChooser.qml: Added.
-
-2012-06-21  Vivek Galatage  <vivekgalatage@gmail.com>
-
-        Remove the warning "File not found" in MiniBrowser post-build event
-        https://bugs.webkit.org/show_bug.cgi?id=89601
-
-        Reviewed by Adam Roben.
-
-        * MiniBrowser/MiniBrowserPostBuild.cmd:
-
-2012-06-21  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [Qt] DRT in standalone mode hangs after the first test
-        https://bugs.webkit.org/show_bug.cgi?id=89613
-
-        Reviewed by Csaba Osztrogonác.
-
-        Break an inline signal slot chain that ends up in setting
-        LayoutTestController::m_hasDumped too early. In LayoutTestController::maybeDump()
-        we emit done() which starts the chain that finishes in DumpRenderTree::open().
-        The next line in maybeDump sets m_hasDumped to true. We could simply reorder
-        these two lines but it seems to be wrong in general to start the next load
-        from this call chain. The server mode (when DRT is runned by the test harness)
-        also uses a queued connection to read the next test from stdin.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::processArgsLine):
-
-2012-06-20  Hans Wennborg  <hans@chromium.org>
-
-        Speech JavaScript API: SpeechRecognition should hook up with ActiveDOMObject more
-        https://bugs.webkit.org/show_bug.cgi?id=89217
-
-        Reviewed by Adam Barth.
-
-        Add a method for checking whether the mock speech
-        recognition was aborted.
-
-        Also redo the way the mock posts tasks. Instead of posting them all at once,
-        maintain an internal queue of task objects, and call postTask() for them
-        once at the time. This means that for example when the page is navigated
-        away and abort() is called, that call doesn't end up after a bunch
-        of previously posted events on the event loop.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::wasMockSpeechRecognitionAborted):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/chromium/MockWebSpeechRecognizer.cpp:
-        (WebKit::ClientCallTask::ClientCallTask):
-        (WebKit::ResultTask::ResultTask):
-        (WebKit::NoMatchTask::NoMatchTask):
-        (WebKit::ErrorTask::ErrorTask):
-        (MockWebSpeechRecognizer::start):
-        (MockWebSpeechRecognizer::abort):
-        (MockWebSpeechRecognizer::setError):
-        (MockWebSpeechRecognizer::MockWebSpeechRecognizer):
-        (MockWebSpeechRecognizer::startTaskQueue):
-        (MockWebSpeechRecognizer::StepTask::runIfValid):
-        * DumpRenderTree/chromium/MockWebSpeechRecognizer.h:
-        (MockWebSpeechRecognizer::hasBeenAborted):
-        (MockWebSpeechRecognizer):
-        (MockWebSpeechRecognizer::taskList):
-        (Task):
-        (MockWebSpeechRecognizer::Task::Task):
-        (MockWebSpeechRecognizer::Task::~Task):
-        (StepTask):
-        (MockWebSpeechRecognizer::StepTask::StepTask):
-
-2012-06-21  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        [GTK] Add support for window.showModalDialog in WebKit2GTK+
-        https://bugs.webkit.org/show_bug.cgi?id=79500
-
-        Reviewed by Carlos Garcia Campos.
-
-        Add support for modal dialogs in GTK's MiniBrowser.
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (webViewRunAsModal):
-        (webViewCreate):
-        (webViewDecidePolicy):
-        (browser_window_new):
-        * MiniBrowser/gtk/BrowserWindow.h:
-        * MiniBrowser/gtk/main.c:
-        (createBrowserWindow):
-
-2012-06-20  Brent Fulgham  <bfulgham@webkit.org>
-
-        [WinCairo] Unreviewed build fix.
-        The wrapper script that launched new- and old-run-webkit-tests
-        was discarding the --wincairo argument needed to get the proper
-        test infrastructure to build under WinCairo.
-
-        * Scripts/run-webkit-tests: Emulate the Qt, Wx, Chromium, etc.,
-        behavior to chain the --wincairo flag through to the new build
-        and test scripts.
-
-2012-06-20  Mark Rowe  <mrowe@apple.com>
-
-        <http://webkit.org/b/89606> Teach run-safari and debug-safari to work with a Safari.app that has entitlements
-
-        Reviewed by Dan Bernstein.
-
-        * Scripts/webkitdirs.pm:
-        (executableHasEntitlements):
-        (safariPathFromSafariBundle):
-
-2012-06-20  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r120821.
-        http://trac.webkit.org/changeset/120821
-        https://bugs.webkit.org/show_bug.cgi?id=89605
-
-        It made duplicated reviewer entries (Requested by Ossy on
-        #webkit).
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        (ChangeLog.set_reviewer):
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-        (test_set_reviewer):
-        (test_set_short_description_and_bug_url):
-
-2012-06-20  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt outputs empty files for wdiff output if wdiff is not installed
-        https://bugs.webkit.org/show_bug.cgi?id=88709
-
-        Reviewed by Tony Chang.
-
-        Reviewed by Tony Chang.
-
-        Don't write -wdiff or -pretty.html files if wdiff or prettypatch
-        aren't available, and clean up the handling for them in the port
-        code.
-
-        * Scripts/webkitpy/run_webkit_tests_integrationtest.py:
-        (MainTest.test_output_diffs):
-        * Scripts/webkitpy/layout_tests/controllers/test_result_writer.py:
-        (TestResultWriter.create_text_diff_and_write_result):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.check_pretty_patch):
-        (Port.check_wdiff):
-        (Port._wdiff_missing_message):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        (ChromiumLinuxPort.check_build):
-        (ChromiumLinuxPort._wdiff_missing_message):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        (ChromiumMacPort.check_build):
-        (ChromiumMacPort):
-        (ChromiumMacPort._wdiff_missing_message):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        (ChromiumMacPortTest):
-
-2012-06-20  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: fix unit tests for ensuring svn revision is correct
-        https://bugs.webkit.org/show_bug.cgi?id=89498
-
-        Reviewed by Eric Seidel.
-
-        Reviewed by Eric Seidel.
-
-        Fix the unit tests for testing that we are embedding the SVN
-        revision in the results json for NRWT properly; this was broken
-        in r120646 but because the MockHost worked differently than the
-        real one (by always initializing the MockSCM object) we didn't
-        notice. Unfortunately, just changing the default breaks all
-        sorts of unit tests ...
-
-        * Scripts/webkitpy/common/host_mock.py:
-        (MockHost.__init__):
-        (MockHost._initialize_scm):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ResultSummaryTest.test_no_svn_revision):
-        (ResultSummaryTest.test_svn_revision):
-
-2012-06-20  Dirk Pranke  <dpranke@chromium.org>
-
-        new-run-webkit-tests appends "/Debug" or "/Release" to $WEBKITOUTPUTDIR
-        https://bugs.webkit.org/show_bug.cgi?id=69360
-
-        Reviewed by Eric Seidel.
-
-        Reviewed by Eric Seidel.
-
-        Propagate the 'port_implementation' part of the platform (i.e.,
-        gtk,qt,chromium) to webkit-build-directory so that we can pick
-        up the gtk-specific handling of WEBKITOUTPUTDIR ...
-
-        I didn't write any additional tests for this; testing it
-        properly is an integration test between the python code and the
-        perl code, which I verified by hand.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.__init__):
-        * Scripts/webkitpy/layout_tests/port/config.py:
-        (Config.__init__):
-        (Config.build_directory):
-        * Scripts/webkitpy/layout_tests/port/config_mock.py:
-        (MockConfig.__init__):
-        * Scripts/webkitpy/layout_tests/port/config_unittest.py:
-        (ConfigTest.test_build_directory_passes_port_implementation):
-
-2012-06-20  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix import sorting missed in r120846
-
-        Reviewed by Tony Chang.
-
-        * Scripts/webkitpy/layout_tests/servers/apache_http_server_unittest.py:
-
-2012-06-20  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix chromium win http servers after breakage introduced in r120846.
-
-        Unreviewed, build fix.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.to.start_http_server):
-        * Scripts/webkitpy/layout_tests/servers/http_server.py:
-        (Lighttpd.__init__):
-
-2012-06-20  Dirk Pranke  <dpranke@chromium.org>
-
-        tweak output of webkit-patch print-{baselines,expectations}
-        https://bugs.webkit.org/show_bug.cgi?id=89588
-
-        Reviewed by Tony Chang.
-
-        Minor tweaks to the output to make it more readable, including
-        turning off csv by default for print-baselines with multiple ports.
-
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort):
-        * Scripts/webkitpy/tool/commands/queries.py:
-        (PrintExpectations.execute):
-        (PrintBaselines.execute):
-        * Scripts/webkitpy/tool/commands/queries_unittest.py:
-        (PrintExpectationsTest.run_test):
-        (PrintExpectationsTest.test_multiple):
-        (PrintBaselinesTest.setUp):
-        (PrintBaselinesTest.test_multiple):
-
-2012-06-18  Dirk Pranke  <dpranke@chromium.org>
-
-        new-run-webkit-tests should spin-up enough httpd processes to avoid timeouts
-        https://bugs.webkit.org/show_bug.cgi?id=88134
-
-        Reviewed by Tony Chang.
-
-        Change NRWT to spin up 2*min(child_processes, locked_shards)
-        http servers by default so that we are less likely to get a
-        bunch of http timeouts at the beginning of a test run.
-
-        Note that I had to tweak executive_mock to support mocked stderr
-        because the apache_http_server code reads stderr when starting a
-        process to ensure it started okay.
-
-        * Scripts/webkitpy/common/system/executive_mock.py:
-        (MockProcess.__init__):
-        * Scripts/webkitpy/common/system/outputcapture.py:
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._run_tests):
-        (Manager.start_servers_with_lock):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.to.start_http_server):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (TestPort.start_http_server):
-        (TestPort._path_to_apache):
-        (TestPort):
-        (TestPort._path_to_apache_config_file):
-        * Scripts/webkitpy/layout_tests/servers/apache_http_server.py:
-        (LayoutTestApacheHttpd.__init__):
-        * Scripts/webkitpy/layout_tests/servers/apache_http_server_unittest.py: Added
-        (LayoutTestApacheHttpd.__init__):
-        * Scripts/webkitpy/layout_tests/servers/http_server.py:
-        (Lighttpd.__init__):
-        * Scripts/webkitpy/layout_tests/servers/http_server_base.py:
-        (HttpServerBase.__init__):
-
-2012-06-20  Tom Zakrajsek  <tomz@codeaurora.org>
-
-        Unreviewed: Back out accidentally checked in debug print which broke a test
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest.parse_output):
-
-2012-06-20  Tom Zakrajsek  <tomz@codeaurora.org>
-
-        Import themaninblue.com/experiment/AnimationBenchmark/ as performance tests
-        https://bugs.webkit.org/show_bug.cgi?id=78789
-
-        Reviewed by Ryosuke Niwa.
-
-        Updated parser to include fps as a valid unit.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest):
-        (PerfTest.parse_output):
-
-2012-06-20  Balazs Ankes  <bank@inf.u-szeged.hu>
-
-        webkit-patch should add reviewer if "Reviewed by NOBODY ..." is missing
-        https://bugs.webkit.org/show_bug.cgi?id=67935
-
-        Reviewed by Ryosuke Niwa.
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        (ChangeLog.set_reviewer):
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-        (test_set_reviewer):
-        (test_set_short_description_and_bug_url):
-
-2012-06-20  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        Unreviewed trivial permissions fix.
-
-        * qmake/mkspecs/features/features.prf: Don't mark this file as executable.
-
-2012-06-19  Ryuan Choi  <ryuan.choi@samsung.com>
-
-        [EFL][Regression] Build break after r120786
-        https://bugs.webkit.org/show_bug.cgi?id=89549
-
-        Unreviewed build fix for Efl port.
-
-        * DumpRenderTree/efl/CMakeLists.txt: Added disassembler in includes.
-
-2012-06-19  Dirk Pranke  <dpranke@chromium.org>
-
-        NRWT spins up and down the WebSocket server when running a single HTTP test from the command line
-        https://bugs.webkit.org/show_bug.cgi?id=64489
-
-        Reviewed by Tony Chang.
-
-        This change changes NRWT so that we don't start the websocket
-        server if we aren't running websocket tests and don't start the
-        HTTP server if we aren't running http tests.
-        
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._websocket_tests):
-        (Manager.start_servers_with_lock):
-        (Manager.stop_servers_with_lock):
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ManagerTest.test_servers_started):
-
-2012-06-19  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy: add a -p flag to pass through captured output to enable debugging
-        https://bugs.webkit.org/show_bug.cgi?id=89158
-
-        Reviewed by Eric Seidel.
-
-        Normally when outputcapture runs it intercepts stdout/stderr,
-        which makes running under the debugger difficult and mostly
-        pointless (since you can't see any output). This change adds a
-        flag to test-webkitpy (-p) that will cause outputcapture to pass
-        through the output as well as capture it.
-
-        * Scripts/webkitpy/common/system/outputcapture.py:
-        (OutputCapture.stream_wrapper):
-        (OutputCapture._capture_output_with_name):
-        * Scripts/webkitpy/common/system/outputcapture_unittest.py:
-        (OutputCaptureTest.setUp):
-        * Scripts/webkitpy/test/main.py:
-        (Tester._parse_args):
-        (Tester._run_tests):
-        (Tester._log_exception):
-        (_CaptureAndPassThroughStream):
-        (_CaptureAndPassThroughStream.__init__):
-        (_CaptureAndPassThroughStream.write):
-        (_CaptureAndPassThroughStream._message_is_from_pdb):
-        (_CaptureAndPassThroughStream.flush):
-        (_CaptureAndPassThroughStream.getvalue):
-
-2012-06-19  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic fails to rebaseline tests with MISSING results
-        https://bugs.webkit.org/show_bug.cgi?id=89521
-
-        Reviewed by Kenneth Russell.
-
-        If the bots report "MISSING", we should try to find PNG and TXT results on the server.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results.js:
-
-2012-06-19  Adam Barth  <abarth@webkit.org>
-
-        svn.delete_list fails to delete empty parent directories
-        https://bugs.webkit.org/show_bug.cgi?id=89520
-
-        Reviewed by Dirk Pranke.
-
-        These functions were calling scm.delete and scm.add, which already
-        delete the parent directory. We'd get an exception when we tried to
-        delete the parent directory again.
-
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-        (SVN._add_parent_directories):
-        (SVN._delete_parent_directories):
-
-2012-06-19  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        webkitpy: Simplify fetch_bugs_matching_search()
-        https://bugs.webkit.org/show_bug.cgi?id=89497
-
-        Reviewed by Adam Barth.
-
-        Removed parameter with default value. It's not being used
-        and the handling of the parameter was wrong. Saves a check.
-
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        (BugzillaQueries.fetch_bugs_matching_search):
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla_mock.py:
-        (MockBugzillaQueries.fetch_bugs_matching_search):
-
-2012-06-19  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: remove unneeded imports in layout_tests/port/chromium.py
-        https://bugs.webkit.org/show_bug.cgi?id=89522
-
-        Reviewed by Eric Seidel.
-
-        They were no longer being used. No tests necessary.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-
-2012-06-19  Adam Barth  <abarth@webkit.org>
-
-        Missing results aren't shown in garden-o-matic
-
-        Reviewed by Kenneth Russell.
-
-        Previously we didn't know to look for text and image results when the
-        bot told us that results were missing.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results.js:
-
-2012-06-19  Dirk Pranke  <dpranke@chromium.org>
-
-        Fix regression introduced in r120646 where the svn revision isn't saved in results.json
-
-        Unreviewed, build fix.
-
-        It turns out that we store the svn revision two different ways
-        in the JSON, and I only caught one of them :(. This should fix
-        the other.
-
-        Also, this part of the code is poorly tested. I will investigate
-        adding at least a basic test for this in a separate fix.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (summarize_results):
-
-2012-06-19  Dirk Pranke  <dpranke@chromium.org>
-
-        REGRESSION (NRWT): Results for new non-text-only tests are always put in the most-specific platform directory
-        https://bugs.webkit.org/show_bug.cgi?id=78127
-
-        Reviewed by Ryosuke Niwa.
-
-        Add the --add-platform-exceptions flag from ORWT, and ensure
-        that --new-baseline is equivalent to --reset-results
-        --add-platform-exceptions. Also fix the default logic for where to
-        put PNGs and render tree dumps if --new-test-results is true:
-        if --add-platform-exceptions is False, baselines should go in
-        the least-specific platform directory (e.g., platform/mac)
-        rather than the most-specific (platform/mac-snowleopard).
-
-        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
-        (SingleTestRunner):
-        (SingleTestRunner.run):
-        (SingleTestRunner._run_rebaseline):
-        (SingleTestRunner._add_missing_baselines):
-        (SingleTestRunner._location_for_new_baseline):
-        (SingleTestRunner._overwrite_baselines):
-        (SingleTestRunner._save_baseline_data):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.baseline_path):
-        (Port):
-        (Port.baseline_platform_dir):
-        (Port.baseline_version_dir):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (_set_up_derived_options):
-        (parse_args):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (RebaselineTest.assertBaselines):
-        (RebaselineTest.test_reset_results):
-        (RebaselineTest.test_missing_results):
-        (RebaselineTest.test_new_baseline):
-
-2012-06-19  Dirk Pranke  <dpranke@chromium.org>
-
-        NRWT should not take memory used as disk cache into account when deciding how many processes to launch
-        https://bugs.webkit.org/show_bug.cgi?id=81379
-
-        Reviewed by Eric Seidel.
-
-        The 'free memory' calculation we were running on the mac seemed
-        to underestimate how many children we can run in parallel, and
-        it was complex. This patch replaces that calculation with a
-        simpler one that reserves 2GB for overhead and assumes 256MB per
-        DRT/WTR, so if we had 4GB of RAM we can run up to 8 DRTs.
-
-        Also, there was a bug where we were truncating the memory
-        installed on the machine to 4GB by casting to an int instead of
-        a long; this was probably the source of some of the earlier
-        problems when using total memory.
-
-        This patch also removes the no-longer-needed restrictions on the
-        number of workers on beefy Lion boxes for both Apple Mac and Chromium
-        Mac; we should now use all of the cores by default.
-
-        The memory calculations have only been implemented on the mac;
-        having the calculation in base.default_child_processes() was IMO
-        misleading, and so this patch also moves the computation into
-        the MacPort. I have not heard of the # of workers being an issue
-        on any other ports, so this should be fine.
-
-        * Scripts/webkitpy/common/system/platforminfo.py:
-        (PlatformInfo.total_bytes_memory):
-        * Scripts/webkitpy/common/system/platforminfo_mock.py:
-        (PlatformInfo.total_bytes_memory):
-        (PlatformInfo.total_bytes_memory):
-        (PlatformInfo._win_version_tuple_from_cmd):
-        * Scripts/webkitpy/common/system/platforminfo_unittest.py:
-        (TestPlatformInfo.test_total_bytes_memory):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.default_child_processes):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_default_child_processes):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        (ChromiumMacPort.operating_system):
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.default_child_processes):
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        (TestMacPort.test_default_child_processes):
-
-2012-06-19  Dirk Pranke  <dpranke@chromium.org>
-
-        new-run-webkit-tests reports unexpected pass of pixel tests when pixel testing is disabled
-        https://bugs.webkit.org/show_bug.cgi?id=85446
-
-        Reviewed by Simon Fraser.
-
-        Embed whether pixel testing was enabled into the results.json.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (summarize_results):
-
-2012-06-19  Zoltan Horvath  <zoltan@webkit.org>
-
-        [Qt] Modify HTTPS port to 8443 for performance tests
-        https://bugs.webkit.org/show_bug.cgi?id=89442
-
-        Reviewed by Ryosuke Niwa.
-
-        We should be consistent with the default HTTPS port and with the changelog of r119188.
-
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (ReplayServer.__init__):
-
-2012-06-19  Mike West  <mkwst@chromium.org>
-
-        Introduce ENABLE_CSP_NEXT configuration flag.
-        https://bugs.webkit.org/show_bug.cgi?id=89300
-
-        Reviewed by Adam Barth.
-
-        The 1.0 draft of the Content Security Policy spec is just about to
-        move to Last Call. We'll hide work on the upcoming 1.1 spec behind
-        this ENABLE flag, disabled by default.
-
-        Spec: https://dvcs.w3.org/hg/content-security-policy/raw-file/tip/csp-specification.dev.html
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2012-06-19  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] EFL's LayoutTestController does not support setTextDirection
-        https://bugs.webkit.org/show_bug.cgi?id=87481
-
-        Reviewed by Hajime Morita.
-
-        Implement setTextDirection in EFL's LayoutTestController and
-        properly reset its value between test cases to avoid flakiness.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setTextDirection):
-
-2012-06-19  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
-
-        [Qt] Temporarily disable xvfb driver in nrwt
-        https://bugs.webkit.org/show_bug.cgi?id=88414
-
-        Reviewed by Csaba Osztrogonác.
-
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort._build_driver):
-
-2012-06-18  Joone Hur  <joone.hur@intel.com>
-
-        [EFL] Fontconfig can't be linked properly
-        https://bugs.webkit.org/show_bug.cgi?id=89418
-
-        Unreviewed build fix.
-
-        Make Fontconfig be linked correctly.
-
-        * MiniBrowser/efl/CMakeLists.txt: add FONTCONFIG_LIBRARIES to MiniBrowser_LIBRARIES.
-
-2012-06-18  Joone Hur  <joone.hur@intel.com>
-
-        Unreviewed. Updating email for committers.py script.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-06-18  Simon Fraser  <simon.fraser@apple.com>
-
-        Fix a typo that caused TestFailures to have a syntax error.
-        
-        Sadly TestFailures is broken for another reason now too:
-        https://bugs.webkit.org/show_bug.cgi?id=89419
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ViewController.js:
-        (ViewController.prototype._domForBuildName):
-
-2012-06-18  Simon Fraser  <simon.fraser@apple.com>
-
-        Provide bug links for suspicious commits
-        https://bugs.webkit.org/show_bug.cgi?id=89408
-        
-        Reviewed by Adam Barth.
-
-        Add links to bugs for the suspicious commits if we have bug data.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Bugzilla.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/notifications.css:
-        (ol.notifications>li ul.causes>li>div.description>span>span.bugID::before):
-        (ol.notifications>li ul.causes>li>div.description>span>span.bugID>a):
-
-2012-06-18  Amy Ousterhout  <aousterh@chromium.org>
-
-        [Chromium] DeviceOrientation Cleanup
-        https://bugs.webkit.org/show_bug.cgi?id=89354
-
-        Reviewed by Kent Tamura.
-
-        * DumpRenderTree/chromium/WebViewHost.h: added OVERRIDE specifier for virtual function
-        (WebViewHost):
-
-2012-06-18  James Robinson  <jamesr@chromium.org>
-
-        [chromium] Stop passing deprecated 'direct' parameter to webkit_support::CreateGraphicsContext3D
-        https://bugs.webkit.org/show_bug.cgi?id=89254
-
-        Reviewed by Adrienne Walker.
-
-        This parameter doesn't mean anything since this codepath is only used for onscreen contexts and is deprecated
-        upstream.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createGraphicsContext3D):
-
-2012-06-18  Simon Fraser  <simon.fraser@apple.com>
-
-        Minor fix suggested by Adam Barth.
-
-        Use $(this._what).empty(); rather than removing children one at a time.
-        For some reason removeAllChildren() is undefined on this node.
-        
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js:
-
-2012-06-18  Simon Fraser  <simon.fraser@apple.com>
-
-        Show TOT revision in garden-o-matic, and make the revisions into links
-        https://bugs.webkit.org/show_bug.cgi?id=89396
-
-        Reviewed by Adam Barth.
-
-        The "latest revision" notification now reads "Latest revision processed by every bot: NN (trunk is at NN)"
-        where the revisions are links to trac.
-        
-        To avoid setting innerHTML, I made base.createLinkNode() and used it in a bunch of places, which had
-        the knock-on effect of flipping the target and href attributes for anchors in some test output.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ViewController.js:
-        (ViewController.prototype._displayTesters.updateList.list):
-        (ViewController.prototype._displayTesters.updateList):
-        (ViewController.prototype._domForRegressionRange.trac.commitDataForRevisionRange):
-        (ViewController.prototype._domForRegressionRange):
-        (ViewController.prototype._domForAuxiliaryUIElements):
-        (ViewController.prototype._domForBuildName):
-        (ViewController.prototype):
-        (ViewController.prototype.):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/garden-o-matic.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/model.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js:
-
-2012-06-18  Csaba Osztrogonác  <ossy@webkit.org>
-
-        REGRESSION(r100558): NRWT should work without SVN or GIT
-        https://bugs.webkit.org/show_bug.cgi?id=76630
-
-        Reviewed by Dirk Pranke.
-
-        NRWT is not supposed to have a requirement that we have an
-        actual SVN or Git checkout, and we were unnecessarily
-        initializing the checkout. This patch removes that line :).
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (main):
-
-2012-06-18  Zan Dobersek  <zandobersek@gmail.com>
-
-        [garden-o-matic] Add support for the GTK builders
-        https://bugs.webkit.org/show_bug.cgi?id=89360
-
-        Reviewed by Adam Barth.
-
-        Add the 'gtk' platform, essentially a copy of the 'apple' platform since
-        both get their data from build.webkit.org.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-        (.):
-
-2012-06-18  Nico Weber  <thakis@chromium.org>
-
-        [chromium/mac] Unbreak smooth scrolling.
-        https://bugs.webkit.org/show_bug.cgi?id=89327
-
-        Reviewed by Dimitri Glazkov.
-
-        Broken by Sam in r115589 / r115591.
-
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetDefaultsToConsistentValues):
-        * TestWebKitAPI/mac/InjectedBundleControllerMac.mm:
-        (TestWebKitAPI::InjectedBundleController::platformInitialize):
-        * WebKitTestRunner/InjectedBundle/mac/InjectedBundleMac.mm:
-        (WTR::InjectedBundle::platformInitialize):
-
-2012-06-18  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r120541, r120547, and r120548.
-        http://trac.webkit.org/changeset/120541
-        http://trac.webkit.org/changeset/120547
-        http://trac.webkit.org/changeset/120548
-        https://bugs.webkit.org/show_bug.cgi?id=89383
-
-        This approach doesn't work for WebKit2 (Requested by abarth on
-        #webkit).
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (setBackingScaleFactorCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
-        (LayoutTestController::setBackingScaleFactor):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setBackingScaleFactor):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::setBackingScaleFactor):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::setBackingScaleFactor):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::setBackingScaleFactor):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::setBackingScaleFactor):
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::didReceiveMessage):
-        (WTR::InjectedBundle::postSetBackingScaleFactor):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (InjectedBundle):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::setBackingScaleFactor):
-        (WTR):
-        (WTR::LayoutTestController::callSetBackingScaleFactorCallback):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (LayoutTestController):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-
-2012-06-18  Zan Dobersek  <zandobersek@gmail.com>
-
-        REGRESSION(r120546): It made 3 webkitpy tests fail
-        https://bugs.webkit.org/show_bug.cgi?id=89332
-
-        Reviewed by Adam Barth.
-
-        Update the BaselineOptimizer unittest after r120546.
-
-        * Scripts/webkitpy/common/checkout/baselineoptimizer_unittest.py:
-        (BaselineOptimizerTest.test_no_add_mac_future):
-        (BaselineOptimizerTest.test_mac_future):
-        (BaselineOptimizerTest.test_complex_shadowing):
-
-2012-06-18  Dirk Pranke  <dpranke@chromium.org>
-
-        new-run-webkit-tests output gets confused when logging
-        https://bugs.webkit.org/show_bug.cgi?id=63793
-
-        Reviewed by Adam Barth.
-
-        Ship all of the log messages generated in the worker back
-        to the manager; this allows the messages to be properly
-        serialized to stderr and for the meter to flush its output correctly.
-
-        Note however that this will likely result in messages to be
-        logged out of order between workers; I'm not sure that there's
-        an easy way to fix this short of buffering a potentially
-        unbounded amount of data. It might be better to just log through
-        stderr unless we're in 'metering' mode, but it's also worth
-        noting that we already get messages out of order through stderr
-        on Windows.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.handle_done):
-        (Manager.handle_finished_test):
-        (Manager._log_messages):
-        * Scripts/webkitpy/layout_tests/controllers/worker.py:
-        (Worker.__init__):
-        (Worker._set_up_logging):
-        (Worker.run):
-        (Worker._run_test):
-        (Worker.cleanup):
-        (Worker.run_single_test):
-        (_WorkerLogHandler):
-        (_WorkerLogHandler.__init__):
-        (_WorkerLogHandler.emit):
-        * Scripts/webkitpy/layout_tests/views/metered_stream.py:
-        (MeteredStream.write):
-        (MeteredStream.writeln):
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (Printer.writeln):
-
-2012-06-18  Zan Dobersek  <zandobersek@gmail.com>
-
-        [garden-o-matic] Builder names without underscores cause incorrect BuildSelector behavior
-        https://bugs.webkit.org/show_bug.cgi?id=89362
-
-        Reviewed by Simon Fraser.
-
-        Replace white spaces, braces and dots in the builder name with underscores. This
-        way the JQuery tabs will be properly matched with the according container.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
-
-2012-06-18  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: metered output doesn't handle ^C cleanly
-        https://bugs.webkit.org/show_bug.cgi?id=89249
-
-        Reviewed by Tony Chang.
-
-        If you ctrl-c a running nrwt (w/o --verbose), then all but
-        two characters of the last update are erased, and then we print
-        "interrupted, exiting" as an update, which itself then gets
-        erased. Fix this so that we flush the meter (making the last
-        update persistent, so that we print the ^C for a visual clue),
-        print the interrupt message, and move on ...
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._run_tests):
-        * Scripts/webkitpy/layout_tests/views/metered_stream.py:
-        (MeteredStream.flush):
-        * Scripts/webkitpy/layout_tests/views/printing.py:
-        (Printer._write):
-        (Printer):
-        (Printer.flush):
-
-2012-06-18  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium] Change back "linuxish" to "linux" and include WebFontRendering.cpp on Android
-        https://bugs.webkit.org/show_bug.cgi?id=89228
-
-        Reviewed by Tony Chang.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        * DumpRenderTree/chromium/TestShellAndroid.cpp:
-
-2012-06-18  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        [GTK] Get rid of DumpRenderTreeSupportGtk::{in|de}crementAccessibilityValue
-        https://bugs.webkit.org/show_bug.cgi?id=89226
-
-        Reviewed by Martin Robinson.
-
-        Implement increment() and decrement() functions in term of the AtkValue interface,
-        instead of using DumpRenderTreeSupportGtk helper class.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (AccessibilityUIElement::intValue):
-        (AccessibilityUIElement::minValue):
-        (AccessibilityUIElement::maxValue):
-        (alterCurrentValue):
-        (AccessibilityUIElement::increment):
-        (AccessibilityUIElement::decrement):
-
-2012-06-17  Simon Fraser  <simon.fraser@apple.com>
-
-        garden-o-matic 'Results' panel is broken for the Apple platform
-        https://bugs.webkit.org/show_bug.cgi?id=89310
-
-        Reviewed by Adam Barth.
-        
-        For platforms that don't use accumulated build directories on the server,
-        carry along buildLocation data with buildInfo, so that we know where to
-        look for the test results files for a given test.
-        
-        Renamed historicalResultsSummaryURLs to historicalResultsLocations because
-        it now returns an array of objects with buildNumber, revision and url info.
-        
-        Fixed results.fetchResultsURLs() to use this data to find results.
-        
-        Fixed the results display to not scroll when you click on a test to see the results.
-        Made the h3s look less ugly
-        
-        Don't try to show the flakiness dashboard for the Apple platform.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/results.css:
-        (.results-view .top-panel):
-        (.results-view h3):
-
-2012-06-16  Simon Fraser  <simon.fraser@apple.com>
-
-        Make garden-o-matic work for the Apple Mac port
-        https://bugs.webkit.org/show_bug.cgi?id=84642
-
-        Reviewed by Adam Barth.
-        
-        Make garden-o-matic work for the Apple, webkit.org-hosted builders and testers. This involved
-        educating the scripts in various ways:
-        * Wrap up platform-related differences in config.kPlatforms[]
-        * Add a <select> to switch between platforms, and support a url parameter, ?platform=chromium/apple
-        * The webkit.org bots don't accumulate test results into a single directory like the chromium.org ones do,
-          so add config.haveBuilderAccumulatedResults and logic in fetchResultsByBuilder() to find the most
-          recent build with valid results.
-        * The webkit.org bots often generate results directories with no layout test data (e.g. when testers
-          try to test a build that has already been deleted). Make walkHistory() more robust here.
-        * webkit.org uses differently named test result directories, that include the SVN revision as
-          well as the build number. That forces us to fetch more build info before we can get the
-          result directory URL.
-        * chromium.org serves raw directory listings for a builder's results directories. webkit.org serves
-          those with Twisted, so rather than scrape directory listings, we use buildbot JSON to find results
-          dirs.
-        * Various URLs differ between webkit.org and chromium.org
-        * Better UI for the failures info, so that some info is visible even when not hovered.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/LayoutTestResultsLoader.js:
-        (LayoutTestResultsLoader.prototype.set _fetchAndParseNRWTResults):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/model.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/net.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/summary-mock.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/perf.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui_unittests.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/notifications.css:
-        (ol.notifications>li table.failures):
-        (ol.notifications>li:hover table.failures):
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/onebar.css:
-        (#onebar #platform-picker):
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-
-2012-06-16  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r120536.
-        http://trac.webkit.org/changeset/120536
-        https://bugs.webkit.org/show_bug.cgi?id=89296
-
-        Does not compile on chromium-linux (Requested by abarth on
-        #webkit).
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::setTextSubpixelPositioning):
-        * DumpRenderTree/chromium/TestShellAndroid.cpp:
-
-2012-06-16  Adam Barth  <abarth@webkit.org>
-
-        layoutTestController.setBackingScaleFactor is redundant with (and less awesome than) internals.settings.setDeviceScaleFactor
-        https://bugs.webkit.org/show_bug.cgi?id=89274
-
-        Reviewed by Levi Weintraub.
-
-        Delete (mostly stub) implementations of layoutTestController.setBackingScaleFactor.
-        Note: The WebKit2 API that setBackingScaleFactor exercises is still
-        tested by API-level tests.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::didReceiveMessage):
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.h:
-        (InjectedBundle):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (LayoutTestController):
-        * WebKitTestRunner/TestInvocation.cpp:
-        (WTR::TestInvocation::didReceiveMessageFromInjectedBundle):
-
-2012-06-16  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium] Move chromium/public/linuxish/WebFontRendering.h out of linuxish directory
-        https://bugs.webkit.org/show_bug.cgi?id=89228
-
-        Reviewed by Tony Chang.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::setTextSubpixelPositioning):
-        * DumpRenderTree/chromium/TestShellAndroid.cpp:
-
-2012-06-15  Adam Barth  <abarth@webkit.org>
-
-        garden-o-matic's results.js should use RequestTracker
-        https://bugs.webkit.org/show_bug.cgi?id=89257
-
-        Reviewed by Dimitri Glazkov.
-
-        We wrote results.js before we recognized the RequestTracker pattern.
-        This patch replaces the manual implementations of RequestTracker with
-        the real deal.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results.js:
-
-2012-06-15  Darin Adler  <darin@apple.com>
-
-        * Scripts/webkitpy/bindings: Added property svn:ignore.
-
-2012-06-15  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r120511.
-        http://trac.webkit.org/changeset/120511
-        https://bugs.webkit.org/show_bug.cgi?id=89255
-
-        Breaks at least Android builder (Requested by wangxianzhu on
-        #webkit).
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::setTextSubpixelPositioning):
-
-2012-06-15  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium] Move chromium/public/linuxish/WebFontRendering.h out of linuxish directory
-        https://bugs.webkit.org/show_bug.cgi?id=89228
-
-        Reviewed by Tony Chang.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::setTextSubpixelPositioning):
-
-2012-06-15  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: remove DummyOptions and clean up the code in Port.get_option() and Port.set_option_default()
-        https://bugs.webkit.org/show_bug.cgi?id=89135
-
-        Re-land change in r120370 with fix in
-        PortFactory.get_from_builder_name() that changes BuilderOptions
-        to an actual optparse.Values object.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.__init__):
-        (Port.get_option):
-        (Port.set_option_default):
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        (ChromiumWinTest.test_setup_environ_for_server_register_cygwin):
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        (_builder_options):
-        (PortFactory.get_from_builder_name):
-        * Scripts/webkitpy/layout_tests/port/factory_unittest.py:
-        (FactoryTest.test_get_from_builder_name):
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-        (TestExpectationsChecker._determine_port_from_expectations_path):
-        * Scripts/webkitpy/tool/mocktool.py:
-        (MockOptions.ensure_value):
-
-2012-06-15  Bill Budge  <bbudge@chromium.org>
-
-        Add bbudge@chromium.org to committers.py
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-06-15  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unreviewed style fix after r120351.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/default.css:
-        (body.interface):
-
-2012-06-15  Csaba Osztrogonác  <ossy@webkit.org>
-
-        master.cfg cleanup, remove unnecessary workaround
-        https://bugs.webkit.org/show_bug.cgi?id=88994
-
-        Reviewed by Lucas Forschler.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (loadBuilderConfig):
-
-2012-06-15  Dirk Pranke  <dpranke@chromium.org>
-
-        webkit-patch rebaseline-expectations should only rebaseline the appropriate suffixes for the failure in question
-        https://bugs.webkit.org/show_bug.cgi?id=88581
-
-        Reviewed by Adam Barth.
-
-        Make sure we only optimize the suffixes we rebaselined during
-        rebaseline-expectations, and not all suffixes for a test.
-        While optimizing is somewhere between harmless and good, it's also confusing :)
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineExpectations._rebaseline_port):
-        (RebaselineExpectations.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-
-2012-06-15  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Update builder.html template for newer buildmaster
-        https://bugs.webkit.org/show_bug.cgi?id=89207
-
-        Rebasing builder.html template from v0.8.3 to v0.8.6p1.
-
-        Reviewed by Zoltan Herczeg.
-
-        * BuildSlaveSupport/build.webkit.org-config/templates/builder.html:
-
-2012-06-15  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Add ForceScheduler to build.webkit.org
-        https://bugs.webkit.org/show_bug.cgi?id=88982
-
-        Reviewed by Ryosuke Niwa.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (loadBuilderConfig):
-
-2012-06-15  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][WK2] Add title support to Ewk_View
-        https://bugs.webkit.org/show_bug.cgi?id=89095
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Update the MiniBrowser so it listens for the "title,change"
-        signal on the view and keeps the browser window title
-        up-to-date.
-
-        * MiniBrowser/efl/main.c:
-        (on_title_changed):
-        (browserCreate):
-
-2012-06-15  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2][EFL] Implement navigation back/forward in Ewk_View
-        https://bugs.webkit.org/show_bug.cgi?id=89173
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Implement navigation back / forward in MiniBrowser. Use
-        'F1' to navigate back and 'F2' to navigate forward.
-
-        * MiniBrowser/efl/main.c:
-        (on_key_down):
-
-2012-06-15  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] EFL's LayoutTestController does not support titleTextDirection
-        https://bugs.webkit.org/show_bug.cgi?id=86475
-
-        Reviewed by Hajime Morita.
-
-        Add titleTextDirection getter and setter to LayoutTestController and
-        expose its value to JavaScript.
-        Update the titleTextDirection value from EFL's "title,changed"
-        callback in DumpRenderTree.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (getTitleTextDirectionCallback):
-        (LayoutTestController::staticValues):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::titleTextDirection):
-        (LayoutTestController::setTitleTextDirection):
-        (LayoutTestController):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::onFrameTitleChanged):
-
-2012-06-15  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL][WK2] Implement reload / stop in Ewk_View
-        https://bugs.webkit.org/show_bug.cgi?id=89168
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Implement view reload / stop loading in MiniBrowser.
-        Use 'F5' for reload and 'F6' for stopping the load.
-
-        * MiniBrowser/efl/main.c:
-        (on_key_down):
-        (browserCreate):
-
-2012-06-15  Hironori Bono  <hbono@chromium.org>
-
-        Allow platforms to choose whether to remove markers on editing
-        https://bugs.webkit.org/show_bug.cgi?id=88838
-
-        Reviewed by Hajime Morita.
-
-        This change implements WebViewHost::checkTextOfParagraph so DumpRenderTree can
-        run grammar tests.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::checkTextOfParagraph): Implement this function with our mock spell checker and grammar checker.
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost): Override WebSpellCheckClient::checkTextOfParagraph.
-
-2012-06-15  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r120370.
-        http://trac.webkit.org/changeset/120370
-        https://bugs.webkit.org/show_bug.cgi?id=89183
-
-        Broke webkit-patch rebaseline (Requested by zdobersek on
-        #webkit).
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (DummyOptions):
-        (DummyOptions.__init__):
-        (DummyOptions.__init__.this):
-        (Port.__init__):
-        (Port.get_option):
-        (Port.set_option_default):
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        (ChromiumWinTest.RegisterCygwinOption):
-        (ChromiumWinTest.RegisterCygwinOption.__init__):
-        (ChromiumWinTest.test_setup_environ_for_server_register_cygwin):
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-        (TestExpectationsChecker._determine_port_from_expectations_path):
-        * Scripts/webkitpy/tool/mocktool.py:
-        (MockOptions.update):
-
-2012-06-14  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] Initialize font rendering in DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=89133
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::reset):
-        (LayoutTestController::setTextSubpixelPositioning):
-        * DumpRenderTree/chromium/TestShellAndroid.cpp:
-        (platformInit):
-
-2012-06-14  Dongwoo Im  <dw.im@samsung.com>
-
-        [EFL] [DRT] Reset the WebAudio setting on DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=88622
-
-        Reviewed by Philippe Normand.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp: Reset the setting of the Web Audio feature as default.
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-
-2012-06-14  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] Should retry a few times when failed to start DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=89124
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidDriver._start):
-        (ChromiumAndroidDriver):
-        (ChromiumAndroidDriver._start_once):
-
-2012-06-14  Tony Gentilcore  <tonyg@chromium.org>
-
-        Update webpagereplay to 1.1.2
-        https://bugs.webkit.org/show_bug.cgi?id=89118
-
-        This includes the following patch which avoids pkg_resources import errors:
-        http://code.google.com/p/web-page-replay/source/detail?r=476
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/thirdparty/__init__.py:
-        (AutoinstallImportHook._install_webpagereplay):
-
-2012-06-14  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Get rid of FAIL test expectation
-        https://bugs.webkit.org/show_bug.cgi?id=89137
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ResultSummaryTest.test_summarized_results_wontfix):
-        * Scripts/webkitpy/layout_tests/controllers/test_expectations_editor_unittest.py:
-        * Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
-        (JSONLayoutResultsGenerator):
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (result_was_expected):
-        (suffixes_for_expectations):
-        (TestExpectationsModel._add_test):
-        (TestExpectations):
-        (TestExpectations.get_rebaselining_failures):
-        (TestExpectations.remove_configuration_from_test):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (FunctionsTest.test_result_was_expected):
-        (FunctionsTest.test_suffixes_for_expectations):
-        (TestExpectationSerializerTests.test_parsed_expectations_string):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (test_test_expectations):
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-        (TestExpectationsTestCase.test_valid_expectations):
-
-2012-06-14  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: remove DummyOptions and clean up the code in Port.get_option() and Port.set_option_default()
-        https://bugs.webkit.org/show_bug.cgi?id=89135
-
-        Reviewed by Ryosuke Niwa.
-
-        This patch is just some minor cleanup and simplification. There
-        should be no functional changes here.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.__init__):
-        (Port.get_option):
-        (Port.set_option_default):
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        (ChromiumWinTest.test_setup_environ_for_server_register_cygwin):
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-        (TestExpectationsChecker._determine_port_from_expectations_path):
-        * Scripts/webkitpy/tool/mocktool.py:
-        (MockOptions.ensure_value):
-
-2012-06-14  Ian Vollick  <vollick@chromium.org>
-
-        [chromium] Certain settings in CCSettings could be global
-        https://bugs.webkit.org/show_bug.cgi?id=88384
-
-        Reviewed by James Robinson.
-
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::TestShell):
-        (TestShell::resetWebSettings):
-        (TestShell::setPerTilePaintingEnabled):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell):
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::reset):
-        (WebPreferences::applyTo):
-        * DumpRenderTree/chromium/WebPreferences.h:
-        (WebPreferences):
-
-2012-06-14  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r120352.
-        http://trac.webkit.org/changeset/120352
-        https://bugs.webkit.org/show_bug.cgi?id=89120
-
-        It seems something is still wrong with it :/ (Requested by
-        Ossy on #webkit).
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (Factory.__init__):
-        (BuildFactory.__init__):
-        (TestFactory.__init__):
-        (BuildAndTestFactory.__init__):
-        (BuildAndPerfTestFactory.__init__):
-        (BuildAndPerfTestWebKit2Factory.__init__):
-        (DownloadAndPerfTestFactory.__init__):
-        (DownloadAndPerfTestWebKit2Factory.__init__):
-
-2012-06-14  Jia Pu  <jpu@apple.com>
-
-        Mark text with text alternative with blue underline.
-        https://bugs.webkit.org/show_bug.cgi?id=83047
-
-        Reviewed by NOBODY Enrica Casucci.
-
-        * DumpRenderTree/mac/TextInputController.m:
-        (+[TextInputController isSelectorExcludedFromWebScript:]):
-        (+[TextInputController webScriptNameForSelector:]):
-        (-[TextInputController dictatedStringWithPrimaryString:alternative:alternativeOffset:alternativeLength:]):
-
-2012-06-14  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r120353.
-        http://trac.webkit.org/changeset/120353
-        https://bugs.webkit.org/show_bug.cgi?id=89119
-
-        It seems we still need this workaround (Requested by Ossy on
-        #webkit).
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (loadBuilderConfig):
-
-2012-06-14  Csaba Osztrogonác  <ossy@webkit.org>
-
-        master.cfg cleanup, remove unnecessary workaround
-        https://bugs.webkit.org/show_bug.cgi?id=88994
-
-        Reviewed by Lucas Forschler.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (loadBuilderConfig):
-
-2012-06-14  Csaba Osztrogonác  <ossy@webkit.org>
-
-        master.cfg cleanup, pass BuildStep instances instead of BuildStep subclasses
-        https://bugs.webkit.org/show_bug.cgi?id=89001
-
-        Reviewed by Lucas Forschler.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (Factory.__init__):
-        (BuildFactory.__init__):
-        (TestFactory.__init__):
-        (BuildAndTestFactory.__init__):
-        (BuildAndPerfTestFactory.__init__):
-        (BuildAndPerfTestWebKit2Factory.__init__):
-        (DownloadAndPerfTestFactory.__init__):
-        (DownloadAndPerfTestWebKit2Factory.__init__):
-
-2012-06-14  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Unhide login form on the build.webkit.org
-        https://bugs.webkit.org/show_bug.cgi?id=88981
-
-        Reviewed by Lucas Forschler.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/default.css:
-
-2012-06-14  Zan Dobersek  <zandobersek@gmail.com>
-
-        [Gtk] Add support in DumpRenderTree for tracking repaints
-        https://bugs.webkit.org/show_bug.cgi?id=87658
-
-        Reviewed by Martin Robinson.
-
-        Reimplement the displayWebView method in DumpRenderTree - force a
-        repaint before starting tracking repaints and resetting them.
-
-        When gathering pixel output from a web view, if tracking repaints,
-        paint an overlay over the output with the overlay being clear in the
-        areas where the repaints occurred.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (displayWebView):
-        (resetDefaultsToConsistentValues):
-        * DumpRenderTree/gtk/PixelDumpSupportGtk.cpp:
-        (paintOverlay):
-        (fillRepaintOverlayIntoContext):
-        (createBitmapContextFromWebView):
-
-2012-06-14  Dirk Pranke  <dpranke@chromium.org>
-
-        new-run-webkit-tests doesn't find similar platform tests for a keyword
-        https://bugs.webkit.org/show_bug.cgi?id=37956
-
-        Reviewed by Ryosuke Niwa.
-
-        This patches adds support for NRWT so that if you type
-        "new-run-webkit-tests foo" it will run all the tests in foo as
-        well as platform/foo for all of the platforms that are normally
-        searched (this only applies to directories, not to individual tests).
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.collect_tests):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.tests):
-        (Port):
-        (Port._expanded_paths):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_no_http_tests):
-        (MainTest):
-        (MainTest.test_platform_tests_are_found):
-
-2012-06-14  Dirk Pranke  <dpranke@chromium.org>
-
-        NRWT should honor --skipped=[default|ignore|only], like ORWT does
-        https://bugs.webkit.org/show_bug.cgi?id=66308
-
-        Reviewed by Ryosuke Niwa.
-
-        This patch adds support for ORWT's --skipped=(default|ignore|only)
-        flag and cleans up the interaction between that and --ignore.
-
-        Individual tests (but not directories) explicitly listed on the
-        command line will always be run regardless of what is passed
-        for --skipped and --ignore.
-
-        This patch also changes the "found" and "running" log messages
-        since it wasn't clear how the skipped tests were included in those numbers.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager.__init__):
-        (Manager.collect_tests):
-        (Manager.prepare_lists_and_print_output):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (_set_up_derived_options):
-        (parse_args):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_ignore_flag):
-        (MainTest):
-        (MainTest.test_skipped_flag):
-
-2012-06-14  Takashi Toyoshima  <toyoshim@chromium.org>
-
-        new-run-webkit-websocketserver must handle TLS related arguments
-        https://bugs.webkit.org/show_bug.cgi?id=89079
-
-        Reviewed by Dirk Pranke.
-
-        PyWebSocket class must accept private_key, certificate, and
-        ca_certificate arguments and pass them to launching pywebsocket.
-        Also add ca_certificate handling to new-run-webkit-websocketserver.
-
-        * Scripts/new-run-webkit-websocketserver:
-        (main):
-        * Scripts/webkitpy/layout_tests/servers/websocket_server.py:
-        (PyWebSocket.__init__):
-        (PyWebSocket._prepare_config):
-
-2012-06-14  Qi Zhang  <qi.2.zhang@nokia.com>
-
-        Unreviewed. Update my email.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-06-14  Takashi Toyoshima  <toyoshim@chromium.org>
-
-        Update pywebsocket to 0.7.6 from 0.7.4
-        https://bugs.webkit.org/show_bug.cgi?id=88975
-
-        Reviewed by Kent Tamura.
-
-        This new version of pywebsocket introduce following features.
-         - Allow handlers to send a close frame with empty body in response of
-             a client initiated closing handshake
-         - Implement perframe compression extension
-         - Support client certificate authentication
-
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/COPYING:
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/_stream_hybi.py:
-        (_create_control_frame):
-        (Stream._receive_frame):
-        (Stream.send_message):
-        (Stream.receive_message):
-        (Stream._send_closing_handshake):
-        (Stream.close_connection):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/common.py:
-        (ExtensionParsingException):
-        (ExtensionParsingException.__init__):
-        (_parse_extension_param):
-        (_parse_extension):
-        (parse_extensions):
-        (format_extension):
-        (format_extensions):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/extensions.py:
-        (_parse_compression_method):
-        (_create_accepted_method_desc):
-        (PerFrameCompressionExtensionProcessor):
-        (PerFrameCompressionExtensionProcessor.__init__):
-        (PerFrameCompressionExtensionProcessor._lookup_compression_processor):
-        (PerFrameCompressionExtensionProcessor._get_compression_processor_response):
-        (PerFrameCompressionExtensionProcessor.get_extension_response):
-        (PerFrameCompressionExtensionProcessor.setup_stream_options):
-        (PerFrameCompressionExtensionProcessor.get_compression_processor):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/_base.py:
-        (parse_token_list):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/hybi.py:
-        (Handshaker._parse_extensions):
-        (Handshaker._send_handshake):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/standalone.py:
-        (WebSocketServer._create_sockets):
-        (_get_logger_from_class):
-        (_configure_logging):
-        (_build_option_parser):
-        (_main.if):
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/util.py:
-        (RepeatedXorMasker.mask):
-
-2012-06-14  Zoltan Horvath  <zoltan@webkit.org>
-
-        [Qt] Remove USE(QT_IMAGE_DECODER) macro, since we don't use it anymore
-
-        Reviewed by Noam Rosenthal.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-06-14  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2] Add implementation for registerIntentService in WebFrameLoaderClient
-        https://bugs.webkit.org/show_bug.cgi?id=88399
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Update initialization of WKPageLoaderClient.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-
-2012-06-14  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] [DRT] Implement setDomainRelaxationForbiddenForURLScheme in EFL DRT
-        https://bugs.webkit.org/show_bug.cgi?id=84577
-
-        Reviewed by Ryosuke Niwa.
-
-        Add missing implementation setDomainRelaxationForbiddenForURLScheme to EFL's
-        LayoutTestController.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setDomainRelaxationForbiddenForURLScheme):
-
-2012-06-13  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2] Add implementation for dispatchIntent in WebFrameLoaderClient
-        https://bugs.webkit.org/show_bug.cgi?id=88340
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Update initialization of WKPageLoaderClient.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-
-2012-06-13  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r120268.
-        http://trac.webkit.org/changeset/120268
-        https://bugs.webkit.org/show_bug.cgi?id=89060
-
-        WebCompositor::setPerTilePaintingEnabled hits an assertion in
-        DEBUG (Requested by dominicc|work on #webkit).
-
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::applyTo):
-
-2012-06-13  Tim Horton  <timothy_horton@apple.com>
-
-        REGRESSION (r120252): run-webkit-tests on Mac fails
-        https://bugs.webkit.org/show_bug.cgi?id=89057
-
-        Reviewed by Dan Bernstein.
-
-        get_option will happily return None (the default only kicks in if
-        the option is actually *not set*). We should instead check get_option's
-        return value and default to "x86_64" architecture ourselves.
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.__init__):
-
-2012-06-13  Ian Vollick  <vollick@chromium.org>
-
-        [chromium] Certain settings in CCSettings could be global
-        https://bugs.webkit.org/show_bug.cgi?id=88384
-
-        Reviewed by James Robinson.
-
-        * DumpRenderTree/chromium/WebPreferences.cpp:
-        (WebPreferences::applyTo):
-
-2012-06-13  Dirk Pranke  <dpranke@chromium.org>
-
-        new-run-webkit-tests does not support --32-bit like ORWT did
-        https://bugs.webkit.org/show_bug.cgi?id=71634
-
-        Reviewed by Ojan Vafai.
-
-        This patch adds support for 32-bit apple mac builds, adding the
-        --32-bit flag for compatibility with ORWT and fixing the port
-        architecture() definition to actually return the correct values.
-
-        * Scripts/webkitpy/layout_tests/port/apple.py:
-        (ApplePort._generate_all_test_configurations):
-        * Scripts/webkitpy/layout_tests/port/factory.py:
-        (port_options):
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort):
-        (MacPort.__init__):
-        (MacPort._build_driver_flags):
-        (MacPort.setup_environ_for_server):
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        (test_sample_process_throws_exception):
-        (test_32bit):
-        (test_32bit.run_script):
-        (test_64bit):
-        (test_64bit.run_script):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._build_driver):
-        (WebKitPort._build_driver_flags):
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        (WinPort):
-
-2012-06-13  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Remove webkitpy code to support legacy test_expectations.txt files
-        https://bugs.webkit.org/show_bug.cgi?id=89038
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.path_to_test_expectations_file):
-        (Port.expectations_dict):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_uses_test_expectations_file):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (WebKitPortTest.test_path_to_test_expectations_file):
-        (test_test_expectations):
-        * Scripts/webkitpy/style/checker.py:
-        (CheckerDispatcher.should_skip_without_warning):
-        (CheckerDispatcher._create_checker):
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-        (TestExpectationsTestCase._expect_port_for_expectations_path):
-        * Scripts/webkitpy/tool/steps/commit.py:
-        (Commit._check_test_expectations):
-        * Scripts/webkitpy/tool/steps/commit_unittest.py:
-        (CommitTest.test_check_test_expectations):
-
-2012-06-13  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: remove port.test_expectations() and port.test_expectations_overrides()
-        https://bugs.webkit.org/show_bug.cgi?id=88948
-
-        Reviewed by Ojan Vafai.
-
-        In the final patch of this run, we remove the
-        test_expectations() and test_expectation_overrides() methods
-        from the Port class - callers must now use just
-        expectations_dict().
-
-        Note that support for the cascade in new-run-webkit-tests is
-        complete but only Chromium uses it; webkit-patch
-        rebaseline-expectations still does not support updating entries
-        in any file other than the first expectations file, however.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.path_to_test_expectations_file):
-        (Port.uses_test_expectations_file):
-        (Port.expectations_files):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_additional_expectations):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumPortTest.test_expectations_files):
-        * Scripts/webkitpy/layout_tests/port/google_chrome_unittest.py:
-        (TestGoogleChromePort.test_get_google_chrome_port):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (test_test_expectations):
-        (test_legacy_test_expectations):
-
-2012-06-13  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: implement the actual cascade of TestExpectations
-        https://bugs.webkit.org/show_bug.cgi?id=88947
-
-        Reviewed by Ojan Vafai.
-
-        This change implements the actual cascade by removing the
-        concept of 'overrides' from the TestExpectations object and
-        parsing each file separately.
-
-        There is an actual semantic change in this patch, in that
-        setting an expectation on a directory in one file will override
-        the expectations on any individual tests set in prior files. The
-        test_overrides__directory() unit test verifies this.
-
-        Otherwise, this patch mostly consists of deleting code :).
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectationsModel.__init__):
-        (TestExpectationsModel.add_expectation_line):
-        (TestExpectationsModel._add_test):
-        (TestExpectationsModel._already_seen_better_match):
-        (TestExpectations.__init__):
-        (TestExpectations._add_expectations):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (test_overrides__directory):
-
-2012-06-13  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: update callers to use port.expectation_dict() instead of test_expectations() and test_expectations_overrides()
-        https://bugs.webkit.org/show_bug.cgi?id=88946
-
-        Reviewed by Ojan Vafai.
-
-        In preparation for fully supporting cascading expectations files
-        and removing the 'overrides' concept.
-
-        There should be no functional changes in this patch.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ManagerTest.test_update_summary_with_result):
-        (ResultSummaryTest.get_result_summary):
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectations.__init__):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (parse_exp):
-        (SkippedTests.check):
-        (RemoveConfigurationsTest.test_remove):
-        (test_remove_line):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (LintTest.test_all_configurations.FakePort.__init__):
-        (LintTest.test_all_configurations.FakePort.expectations_dict):
-        (LintTest.test_lint_test_files__errors):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (test_overrides_are_included_correctly):
-
-2012-06-13  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: rework the TestExpectations style checker in preparation for the cascade
-        https://bugs.webkit.org/show_bug.cgi?id=88945
-
-        Reviewed by Ojan Vafai.
-
-        This patch changes the style checker to call the
-        TestExpectations parser directly and be oblivious as to what the
-        port's actual expectations are.
-
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-        (TestExpectationsChecker.__init__):
-        (TestExpectationsChecker.check_test_expectations):
-
-2012-06-13  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: restructure the port classes to handle multiple expectations files
-        https://bugs.webkit.org/show_bug.cgi?id=88944
-
-        Reviewed by Ojan Vafai.
-
-        This patch restructures the Port classes so that each port
-        returns a list of TestExpectations files to be used (in a new, public,
-        expectations_files() method), and the base implementation rolls them
-        up into the ordered expectations_dict(), which becomes a public
-        method.
-
-        port.path_to_test_expectations_file(), port.test_expectations(),
-        and port.test_expectations_overrides() are then reimplemented as
-        wrappers around port.expectations_dict().
-        port.test_expectations() and port.test_expectations_overrides()
-        will eventually be removed when the cascade is fully completed,
-        and port.path_to_test_expectations_file() will be removed when
-        the rebaselining tool supports the cascade
-        (expectations_files() may also become private at that point).
-
-        There should be no functional changes in this patch, but a bunch
-        of custom logic gets deleted!
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.expectations_dict):
-        (Port):
-        (Port.expectations_files):
-        (Port.test_expectations):
-        (Port.test_expectations_overrides):
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_additional_expectations):
-        (PortTest.test_uses_test_expectations_file):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.all_baseline_variants):
-        (ChromiumPort.expectations_files):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumPortTest.test_overrides_and_builder_names):
-        * Scripts/webkitpy/layout_tests/port/google_chrome.py:
-        (_expectations_files):
-        (GoogleChromeLinux32Port.expectations_files):
-        (GoogleChromeLinux64Port.expectations_files):
-        (GoogleChromeMacPort.expectations_files):
-        (GoogleChromeWinPort.expectations_files):
-        * Scripts/webkitpy/layout_tests/port/google_chrome_unittest.py:
-        (TestGoogleChromePort._verify_expectations_overrides):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (PortTestCase.test_expectations_ordering):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort._skipped_file_search_paths):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (TestRebaseline.test_rebaseline_updates_expectations_file_noop):
-        (test_rebaseline_updates_expectations_file):
-        (test_rebaseline_does_not_include_overrides):
-        (test_rebaseline_expectations):
-        (test_overrides_are_included_correctly):
-
-2012-06-13  Brent Fulgham  <bfulgham@webkit.org>
-
-        [WinCairo] Update URL of WinCairoRequirements.zip download.
-        https://bugs.webkit.org/show_bug.cgi?id=89009
-
-        Reviewed by Martin Robinson.
-
-        * Tools/Scripts/update-webkit-dependency: Put fallback code
-        to download a "last update" time from servers that don't properly
-        report Last-Modified in their HTTP header.
-        * Tools/Scripts/update-webkit-wincairo-libs: Change download link
-        for the WinCairo build requirements bundle.
-
-2012-06-13  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: preliminary cleanup before supporting cascading expectations files
-        https://bugs.webkit.org/show_bug.cgi?id=88942
-
-        Reviewed by Ojan Vafai.
-
-        This change just prepares the TestExpectations parser to get filenames
-        along with the expectations, and improves the warning messages so that
-        they contain the filenames along with the line numbers.
-
-        There should be no functional changes in this patch.
-
-        * Scripts/webkitpy/layout_tests/controllers/test_expectations_editor_unittest.py:
-        (TestExpectationEditorTests.make_parsed_expectation_lines):
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectationParser.parse):
-        (TestExpectationParser.expectation_for_skipped_test):
-        (TestExpectationParser._tokenize):
-        (TestExpectationParser._tokenize_list):
-        (TestExpectationLine):
-        (TestExpectationsModel.__init__):
-        (TestExpectationsModel._already_seen_better_match):
-        (TestExpectations.__init__):
-        (TestExpectations._shorten_filename):
-        (TestExpectations._report_warnings):
-        (TestExpectations._add_skipped_tests):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (TestExpectationParserTests._tokenize):
-        (TestExpectationParserTests.test_tokenize_blank):
-        (TestExpectationParserTests.test_tokenize_missing_colon):
-        (TestExpectationParserTests.test_tokenize_extra_colon):
-        (TestExpectationParserTests.test_tokenize_empty_comment):
-        (TestExpectationParserTests.test_tokenize_comment):
-        (TestExpectationParserTests.test_tokenize_missing_equal):
-        (TestExpectationParserTests.test_tokenize_extra_equal):
-        (TestExpectationParserTests.test_tokenize_valid):
-        (TestExpectationParserTests.test_tokenize_valid_with_comment):
-        (TestExpectationParserTests.test_tokenize_valid_with_multiple_modifiers):
-        (TestExpectationParserTests.test_parse_empty_string):
-        (TestExpectationSerializerTests._tokenize):
-        (TestExpectationSerializerTests.assert_round_trip):
-        (TestExpectationSerializerTests.assert_list_round_trip):
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        (GardeningExpectationsUpdater.update_expectations):
-
-2012-06-13  Zan Dobersek  <zandobersek@gmail.com>
-
-        [Gtk] Enable link prefetch support in the developer builds
-        https://bugs.webkit.org/show_bug.cgi?id=89011
-
-        Reviewed by Martin Robinson.
-
-        Enable the link prefetch support for Gtk by default in developer
-        builds.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-06-13  Csaba Osztrogonác  <ossy@webkit.org>
-
-        Update buildbot master in autoinstaller to match build.webkit.org
-        https://bugs.webkit.org/show_bug.cgi?id=88992
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/thirdparty/__init__.py:
-        (AutoinstallImportHook._install_buildbot):
-
-2012-06-13  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r120209.
-        http://trac.webkit.org/changeset/120209
-        https://bugs.webkit.org/show_bug.cgi?id=89007
-
-        Broke the WebKit2 mac build. (Requested by andersca on
-        #webkit).
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-
-2012-06-13  Zoltan Horvath  <zoltan@webkit.org>
-
-        check-webkit-style needs to respect Qt API coding style
-        https://bugs.webkit.org/show_bug.cgi?id=88995
-
-        Reviewed by Csaba Osztrogonác.
-
-        Add -whitespace/declaration exception to Qt API files.
-
-        * Scripts/webkitpy/style/checker.py:
-
-2012-06-13  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [WK2] Add implementation for dispatchIntent in WebFrameLoaderClient
-        https://bugs.webkit.org/show_bug.cgi?id=88340
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Update initialization of WKPageLoaderClient.
-
-        * MiniBrowser/mac/BrowserWindowController.m:
-        (-[BrowserWindowController awakeFromNib]):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR::TestController::initialize):
-
-2012-06-13  Allan Sandfeld Jensen  <allan.jensen@nokia.com>
-
-        [Qt] Handle multiple held buttons in touch mocking.
-        https://bugs.webkit.org/show_bug.cgi?id=88865
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        Add handling for multiple held mouse-buttons in the appropiate places.
-        To do this last-pos and start-pos are now also read from the last recorded
-        touch-point instead from object-global variables.
-
-        * MiniBrowser/qt/MiniBrowserApplication.cpp:
-        (MiniBrowserApplication::notify):
-        (MiniBrowserApplication::updateTouchPoint):
-        * MiniBrowser/qt/MiniBrowserApplication.h:
-        (MiniBrowserApplication):
-
-2012-06-13  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Make it possible to disable -Werror in production builds
-
-        Reviewed by Tor Arne Vestbø.
-
-        Don't do -Werror if build-webkit is called with --qmakearg=CONFIG+=production_build,
-        something qt5.git's qtwebkit.pri will soon do.
-
-        * qmake/mkspecs/features/unix/default_post.prf:
-
-2012-06-13  Dominik Röttsches  <dominik.rottsches@intel.com>
-
-        [EFL] Store and compare md5sum of jhbuild files to trigger cleaning Dependencies
-        https://bugs.webkit.org/show_bug.cgi?id=85790
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Add md5 checks for jhbuild configuration for EFL, reusing the gtk jhbuild related
-        code in webkitdirs.pm.
-
-        * Scripts/webkitdirs.pm:
-        (jhbuildConfigurationChanged):
-        (saveJhbuildMd5):
-        (cleanJhbuild):
-        (buildAutotoolsProject):
-        (generateBuildSystemFromCMakeProject):
-
-2012-06-13  Qi Zhang  <qi.2.zhang@nokia.com>
-
-        [Qt] Add configure test for zlib and set WTF_USE_ZLIB if found
-        https://bugs.webkit.org/show_bug.cgi?id=88763
-
-        Add configure test for zlib and set WTF_USE_ZLIB if found to enable websocket
-        extension.
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/config.tests/libzlib: Added.
-        * qmake/config.tests/libzlib/libzlib.cpp: Added.
-        (main):
-        * qmake/config.tests/libzlib/libzlib.pro: Added.
-        * qmake/mkspecs/features/features.prf:
-        * qmake/sync.profile:
-
-2012-06-13  Robin Cao  <robin.cao@torchmobile.com.cn>
-
-        [BlackBerry] Enable MEDIA_STREAM by default
-        https://bugs.webkit.org/show_bug.cgi?id=88849
-
-        Reviewed by Antonio Gomes.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-06-13  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        Prevent stderr output from messing up detection of build path
-
-        https://bugs.webkit.org/show_bug.cgi?id=88075
-
-        Warnings such as 'perl: warning: Setting locale failed' will otherwise
-        end up as the build path when calling out to webkit-build-directory.
-
-        Reviewed by Ojan Vafai.
-
-        * Scripts/webkitpy/layout_tests/port/config.py:
-        (Config.build_directory):
-
-2012-06-13  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Update the builder name for Apple Lion builders.
-
-        * Scripts/webkitpy/layout_tests/port/builders.py:
-
-2012-06-13  Joel Dillon  <joel.dillon@codethink.co.uk>
-
-        [Qt][Win]QtTestBrowser somehow picks up DumpRenderTree's main.cpp, causing a failure to link
-        https://bugs.webkit.org/show_bug.cgi?id=88874
-
-        Reviewed by Simon Hausmann.
-
-        Rename main.cpp in QtTestBrowser because on Windows
-        it conflicts with main.cpp from DumpRenderTree.
-
-        * QtTestBrowser/QtTestBrowser.pro:
-        * QtTestBrowser/qttestbrowser.cpp: Renamed from Tools/QtTestBrowser/main.cpp.
-        (launcherMain):
-        (LauncherApplication):
-        (LauncherApplication::urls):
-        (LauncherApplication::isRobotized):
-        (LauncherApplication::robotTimeout):
-        (LauncherApplication::robotExtraTime):
-        (LauncherApplication::applyDefaultSettings):
-        (LauncherApplication::LauncherApplication):
-        (requiresGraphicsView):
-        (LauncherApplication::handleUserOptions):
-        (main):
-
-2012-06-12  Lucas Forschler  <lforschler@apple.com>
-
-        Wrap bot types inside ().
-        https://bugs.webkit.org/show_bug.cgi?id=88893
-        
-        Reviewed by Stephanie Lewis.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-06-12  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [soup] Prevent setting or editing httpOnly cookies from JavaScript
-        https://bugs.webkit.org/show_bug.cgi?id=88760
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Update libsoup to v2.39.2, glib to v2.33.2 and glib-networking
-        to v2.33.2 for both GTK and EFL ports.
-
-        * efl/jhbuild.modules:
-        * gtk/jhbuild.modules:
-
-2012-06-12  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Enable SHADOW_DOM flag
-        https://bugs.webkit.org/show_bug.cgi?id=87732
-
-        Reviewed by Kentaro Hara.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues): Enable
-        SHADOW_DOM by default in DRT.
-        * DumpRenderTree/efl/DumpRenderTreeView.cpp:
-        (onFocusCanCycle): Enable focus cycling in EFL DRT to behave like
-        Chromium and Mac ports.
-        (drtViewAdd):
-        * Scripts/webkitperl/FeatureList.pm: Enable SHADOW_DOM flag by default
-        at compile time for EFL port.
-
-2012-06-12  Ashod Nakashian  <ashodnakashian@yahoo.com>
-
-        WinLauncher should show loading errors
-        https://bugs.webkit.org/show_bug.cgi?id=80760
-
-        Reviewed by Brent Fulgham.
-
-        * WinLauncher/WinLauncher.cpp: Added load-fail handler to show messagebox with error.
-        (WinLauncherWebHost::didFailProvisionalLoadWithError):
-        * WinLauncher/WinLauncher.h:
-        (WinLauncherWebHost::didFailProvisionalLoadWithError):
-        (WinLauncherWebHost):
-
-2012-06-12  Ryuan Choi  <ryuan.choi@samsung.com>
-
-        [EFL][WK2] Add MiniBrowserEfl.
-        https://bugs.webkit.org/show_bug.cgi?id=61850
-
-        Reviewed by Chang Shu.
-
-        Implement MiniBrowser for EFL.
-
-        * CMakeLists.txt:
-        * MiniBrowser/efl/CMakeLists.txt: Added.
-        * MiniBrowser/efl/main.c: Added.
-        (_MiniBrowser):
-        (main_signal_exit):
-        (on_ecore_evas_resize):
-        (browserCreate):
-        (main):
-
-2012-06-12  Helder Correia  <helder.correia@nokia.com>
-
-        Unreviewed. Update my email address in committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-06-12  Dominik Röttsches  <dominik.rottsches@intel.com>
-
-        [EFL] Resolve CMake warnings on overlapping search paths for EFL jhbuild-enabled build
-        https://bugs.webkit.org/show_bug.cgi?id=84707
-
-        Fixing CMAKE prefix path for 64bit systems to avoid CMAKE warnings on those.
-        use_lib64 variable is preconfigured to True by jhbuild.
-
-        Reviewed by Dirk Pranke.
-
-        * efl/jhbuildrc:
-
-2012-06-12  Dana Jansens  <danakj@chromium.org>
-
-        Add zlieber@chromium.org to contributors list
-        https://bugs.webkit.org/show_bug.cgi?id=88904
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-06-12  Lucas Forschler  <lforschler@apple.com>
-
-        Rename Apple bots to a standard convention.
-        https://bugs.webkit.org/show_bug.cgi?id=88893
-        
-        Note: This has the side effect of grouping all of the Apple bots together in the waterfall.
-
-        Reviewed by Simon Fraser.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-06-12  Mike West  <mkwst@chromium.org>
-
-        Make document.documentURI readonly from JavaScript
-        https://bugs.webkit.org/show_bug.cgi?id=65187
-
-        Reviewed by Alexey Proskuryakov.
-
-        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
-        * TestWebKitAPI/Tests/mac/SetDocumentURI.html: Added.
-        * TestWebKitAPI/Tests/mac/SetDocumentURI.mm: Added.
-        (-[SetDocumentURITest webView:didFinishLoadForFrame:]):
-        (TestWebKitAPI):
-        (TestWebKitAPI::TEST):
-
-2012-06-12  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] enable LEGACY_WEBKIT_BLOB_BUILDER flag
-        https://bugs.webkit.org/show_bug.cgi?id=88715
-
-        Reviewed by Noam Rosenthal.
-
-        Enable LEGACY_WEBKIT_BLOB_BUILDER flag by default on EFL port.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-06-12  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Fix -Werror for the buildbots
-        https://bugs.webkit.org/show_bug.cgi?id=88223
-
-        Rubber-stamped by Tor Arne Vestbø.
-
-        Revert a part of r119269 to enable Werror again for non qt-developer-builds. (for bots for example)
-
-        * qmake/mkspecs/features/unix/default_post.prf:
-
-2012-06-12  Balazs Kelemen  <kbalazs@webkit.org>
-
-        [REGRESSION][WTR] Build fail with werror after r120054
-        https://bugs.webkit.org/show_bug.cgi?id=88862
-
-        Reviewed by Csaba Osztrogonác.
-
-        Some static helpers become unused after counterValueForElementById
-        has moved to Internals. Let's remove them.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR):
-
-2012-06-12  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Slave losts cause build break on bots
-        https://bugs.webkit.org/show_bug.cgi?id=38980
-
-        Minor fix after r59261.
-
-        Reviewed by Tor Arne Vestbø.
-
-        * Scripts/build-webkit:
-        (unlinkZeroFiles): Don't remove 0 byte sized directories, because they are always 0 byte sized on Windows.
-
-2012-06-11  Kaustubh Atrawalkar  <kaustubh@motorola.com>
-
-        [DRT] LTC:: counterValueForElementById() could be moved to Internals.
-        https://bugs.webkit.org/show_bug.cgi?id=84406
-
-        Reviewed by Hajime Morita.
-
-        Move the counterValueForElementById from LayoutTestCotroller to Internals and
-        remove the old platform specific implementations as it exclusively tests WebCore functionality.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setPOSIXLocale):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (LayoutTestController):
-
-2012-06-11  Hans Wennborg  <hans@chromium.org>
-
-        Speech JavaScript API: Make SpeechRecognitionError an Event
-        https://bugs.webkit.org/show_bug.cgi?id=88784
-
-        Reviewed by Adam Barth.
-
-        Make it possible to have MockWebSpeechRecognizer fire error events.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::setMockSpeechRecognitionError):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/chromium/MockWebSpeechRecognizer.cpp:
-        (WebKit):
-        (ErrorTask):
-        (WebKit::ErrorTask::ErrorTask):
-        (MockWebSpeechRecognizer::addMockResult):
-        (MockWebSpeechRecognizer::setError):
-        * DumpRenderTree/chromium/MockWebSpeechRecognizer.h:
-        (MockWebSpeechRecognizer):
-
-2012-06-11  Ojan Vafai  <ojan@chromium.org>
-
-        Don't show the ASAN builders in garden-o-matic since they don't get block WebKit rolls.
-        https://bugs.webkit.org/show_bug.cgi?id=88836
-
-        Reviewed by Dirk Pranke.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders_unittests.js:
-
-2012-06-11  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Remove CMakeCache.txt before building
-        https://bugs.webkit.org/show_bug.cgi?id=88717
-
-        Reviewed by Antonio Gomes.
-
-        Remove CMake cache file before every build to avoid using outdated
-        build flags when new features get enabled. This will avoid unexpected
-        failures on the bots due to outdated build flags.
-
-        * Scripts/webkitdirs.pm:
-        (generateBuildSystemFromCMakeProject):
-
-2012-06-11  Vincent Scheib  <scheib@chromium.org>
-
-        Add new Pointer Lock spec attribute webkitPointerLockElement.
-        https://bugs.webkit.org/show_bug.cgi?id=88799
-
-        Reviewed by Dimitri Glazkov.
-
-        Part of a series of refactoring changes to update pointer lock API to
-        the fullscreen locking style. https://bugs.webkit.org/show_bug.cgi?id=84402
-
-        New attribute webkitPointerLockElement added. Follow up patches
-        will remove the previous isLocked attribute. Tests updated to use
-        the new attribute.
-
-        WebViewHost logic required modification to correctly repond to
-        a lock, unlock, pointerLockElement call series. Specifically,
-        unlocking must be queued after a lock command is issued always
-        as the lock state may not be set yet with a lock request in flight.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::requestPointerUnlock): Always post didLosePointerLock task.
-        (WebViewHost::didLosePointerLock): Signal didLosePointerLock only if pointer was locked.
-
-2012-06-11  Alexis Menard  <alexis.menard@openbossa.org>
-
-        [CSS3 Backgrounds and Borders] Protect box-decoration-break behind a feature flag.
-        https://bugs.webkit.org/show_bug.cgi?id=88804
-
-        Reviewed by Tony Chang.
-
-        Protect box-decoration-break behind a feature flag enabled by default.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2012-06-11  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        [CMAKE][EFL] Remove duplicated executable output path
-        https://bugs.webkit.org/show_bug.cgi?id=88765
-
-        Reviewed by Daniel Bates.
-
-        CMake files for EFL port have redefined executable output path. However, EFL port doesn't
-        need to define again because it is already defined in top-level CMake file.
-
-        * DumpRenderTree/efl/CMakeLists.txt:
-        * EWebLauncher/CMakeLists.txt:
-
-2012-06-11  Ojan Vafai  <ojan@chromium.org>
-
-        Don't consider show warnings in the garden-o-matic UI for non-layout test failures
-        https://bugs.webkit.org/show_bug.cgi?id=88816
-
-        Reviewed by Dirk Pranke.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base.js:
-        Expose a way to clear AsynchronousCaches.
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders_unittests.js:
-        Clear the buildInfo cache at the beginning of each test in order to avoid having one test affect another.
-
-2012-06-11  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt exits early too frequently
-        https://bugs.webkit.org/show_bug.cgi?id=73843
-
-        Reviewed by Ryosuke Niwa.
-
-        Change the defaults for new-run-webkit-tests for both
-        --exit-after-n-failures and --exit-after-n-crashes-or-timeouts
-        to zero (i.e., we will never exit early by default).
-
-        If people want their buildbots to exit early it is their
-        responsibility to update their buildbot configs appropriately.
-
-        Note that we have tests that ensure that these flags work for
-        non-zero numbers, but we don't have tests that either test the
-        default or ensure that zero means "run all of the tests". I
-        think that's okay but can add tests if others disagree.
-
-        Also note that it looks like no changes on the build.webkit.org
-        master.cfg are necessary; all of the bots seem to be using the
-        RunWebKitTests wrapper which is already setting the flags. There
-        is a NewRunWebKitTests wrapper, but that looks to be unused; I
-        will delete that in a separate patch.
-
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-
-2012-06-11  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] [DRT] Reset CacheModel before running each test
-        https://bugs.webkit.org/show_bug.cgi?id=87534
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Reset cache model to default before running each test to fix some
-        flaky tests on EFL build bots. Also fix case value in setCacheModel.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setCacheModel):
-
-2012-06-11  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [GTK] Memory leaks in DRT EventSender.cpp
-        https://bugs.webkit.org/show_bug.cgi?id=88774
-
-        Reviewed by Martin Robinson.
-
-        Fix a few possible memory leaks in EventSender code.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (contextClickCallback): Free the event returned by gdk_event_new().
-        (mouseDownCallback): Ditto.
-        (mouseUpCallback): Ditto.
-
-2012-06-11  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] REGRESSION (r119788): tests rely on pathToLocalResource are failing after r119788
-        https://bugs.webkit.org/show_bug.cgi?id=88661
-
-        Reviewed by Dirk Pranke.
-
-        Pass string length explicitly when creating String object from
-        non-null-terminated UChar* returned by characters().
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::pathToLocalResource):
-
-2012-06-11  David Dorwin  <ddorwin@chromium.org>
-
-        [chromium] Provide access to the WebPlugin created by the helper plugin widget
-        https://bugs.webkit.org/show_bug.cgi?id=88028
-
-        Reviewed by Adam Barth.
-
-        Added isPlaceholder() to WebPlugin.
-
-        * DumpRenderTree/chromium/TestWebPlugin.h:
-        (TestWebPlugin::isPlaceholder):
-
-2012-06-11  Tony Chang  <tony@chromium.org>
-
-        rebaseline from garden-o-matic leaves N processes each time it is run
-        https://bugs.webkit.org/show_bug.cgi?id=88586
-
-        Reviewed by Dirk Pranke.
-
-        This appears to only be a problem on python 2.7. Maybe a bug causing
-        pools to not be garbage collected?
-
-        * Scripts/webkitpy/common/system/executive.py:
-        (Executive.run_in_parallel): close() and join() the process pool.
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        (ExecutiveTest.test_run_in_parallel):
-
-2012-06-11  Zoltan Horvath  <zoltan@webkit.org>
-
-        [Qt] Add config tests for WEBP imagedecoder library, modify HAVE(decoderlibrary) to USE(...)
-        https://bugs.webkit.org/show_bug.cgi?id=87841
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/config.tests/libwebp/libwebp.cpp: Added.
-        (main):
-        * qmake/config.tests/libwebp/libwebp.pro: Added.
-        * qmake/sync.profile:
-
-2012-06-10  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Expose layoutTestController as testRunner
-        https://bugs.webkit.org/show_bug.cgi?id=88210
-
-        Reviewed by Darin Adler.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::makeWindowObject):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::bindJSObjectsToWindow):
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        (WebCore::DumpRenderTree::initJSObjects):
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::makeWindowObject):
-
-2012-06-09  Dominic Cooney  <dominicc@chromium.org>
-
-        [Chromium] Remove JavaScriptCore dependencies from gyp
-        https://bugs.webkit.org/show_bug.cgi?id=88510
-
-        Reviewed by Adam Barth.
-
-        Chromium doesn't support JSC any more and there doesn't seem to be
-        a strong interest in using GYP as the common build system in other
-        ports.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * Scripts/generate-project-files: Removed.
-
-2012-06-09  Sukolsak Sakshuwong  <sukolsak@google.com>
-
-        Add UNDO_MANAGER flag
-        https://bugs.webkit.org/show_bug.cgi?id=87908
-
-        Reviewed by Tony Chang.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2012-06-08  Ryosuke Niwa  <rniwa@webkit.org>
-
-        webkit-patch land-safely should set cq? if the patch author is not in committers.py
-        https://bugs.webkit.org/show_bug.cgi?id=88689
-
-        Reviewed by Dirk Pranke.
-
-        When posting a patch on Bugzilla, trun cq+ into cq? if the Bugzilla login is not listed
-        in committers.py or the contributor cannot commit. If anything, the contributor can still
-        set cq+ on thier patches manually so I don't think this will be an issue for people who
-        don't list their Bugzille email on committers.py.
-
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
-        (Bugzilla._commit_queue_flag):
-        * Scripts/webkitpy/common/net/bugzilla/bugzilla_unittest.py:
-        (test_commit_queue_flag):
-        (test_commit_queue_flag.assert_commit_queue_flag):
-
-2012-06-08  Dirk Pranke  <dpranke@chromium.org>
-
-        remove obsolete NewRunWebKitTests buildbot master factory classes
-        https://bugs.webkit.org/show_bug.cgi?id=88693
-
-        Reviewed by Ryosuke Niwa.
-
-        I believe these aren't used any more ...
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (RunWebKitTests.getText2):
-        (BuildAndTestLeaksFactory):
-
-2012-06-08  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] Build DumpRenderTree with Android SDK
-        https://bugs.webkit.org/show_bug.cgi?id=88598
-
-        Change WebKit side of DRT related code according to some recent changes at chromium side.
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.__init__):
-        (ChromiumAndroidPort._path_to_driver):
-
-2012-06-08  Wei James  <james.wei@intel.com>
-
-        Add app_abi option for DumpRenderTree_apk
-        https://bugs.webkit.org/show_bug.cgi?id=88626
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-06-08  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        [GTK] Add API to get the library version to WebKit2 GTK+
-        https://bugs.webkit.org/show_bug.cgi?id=88426
-
-        Reviewed by Martin Robinson.
-
-        * gtk/generate-gtkdoc:
-        (get_webkit2_options): Add built sources to the list of files, but
-        ignore enum types and marshallers.
-
-2012-06-07  Vincent Scheib  <scheib@chromium.org>
-
-        Layout Test pointer-lock/pointerlockchange-pointerlockerror-events.html is failing
-        https://bugs.webkit.org/show_bug.cgi?id=88604
-
-        Reviewed by Kent Tamura.
-
-        DumpRenderTree fixed to not call didLosePointerLock if pointer is not currently locked.
-        Fixes debug only assert crash in pointer-lock/pointerlockchange-pointerlockerror-events.html test.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::requestPointerUnlock):
-
-2012-06-08  Hans Wennborg  <hans@chromium.org>
-
-        Speech JavaScript API: mock WebSpeechRecognizer for DumpRenderTree
-        https://bugs.webkit.org/show_bug.cgi?id=87976
-
-        Reviewed by Kent Tamura.
-
-        Provide a mock implementation of WebSpeechRecognizer for
-        DumpRenderTree. This will allow better testing of the API via layout
-        tests.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::addMockSpeechRecognitionResult):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/chromium/MockWebSpeechRecognizer.cpp: Added.
-        (MockWebSpeechRecognizer::create):
-        (MockWebSpeechRecognizer::start):
-        (MockWebSpeechRecognizer::stop):
-        (MockWebSpeechRecognizer::abort):
-        (MockWebSpeechRecognizer::MockWebSpeechRecognizer):
-        (MockWebSpeechRecognizer::~MockWebSpeechRecognizer):
-        (MockWebSpeechRecognizer::ResultTask::runIfValid):
-        * DumpRenderTree/chromium/MockWebSpeechRecognizer.h: Added.
-        (WebKit):
-        (MockWebSpeechRecognizer):
-        (MockWebSpeechRecognizer::addMockResult):
-        (MockWebSpeechRecognizer::taskList):
-        (ClientCallTask):
-        (MockWebSpeechRecognizer::ClientCallTask::ClientCallTask):
-        (ResultTask):
-        (MockWebSpeechRecognizer::ResultTask::ResultTask):
-        (NoMatchTask):
-        (MockWebSpeechRecognizer::NoMatchTask::NoMatchTask):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::speechRecognizer):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-        (WebViewHost::mockSpeechRecognizer):
-
-2012-06-07  Kinuko Yasuda  <kinuko@chromium.org>
-
-        check-webkit-style needs to be taught about <public/Foo.h>
-        https://bugs.webkit.org/show_bug.cgi?id=88524
-
-        Reviewed by David Levin.
-
-        * Scripts/webkitpy/style/checkers/cpp.py:
-        (_classify_include):
-        * Scripts/webkitpy/style/checkers/cpp_unittest.py:
-        (OrderOfIncludesTest.test_public_primary_header):
-        (OrderOfIncludesTest.test_classify_include):
-
-2012-06-07  Joshua Lock  <joshua.lock@intel.com>
-
-        [EFL][DRT] Normalize file:///tmp/LayoutTests in LayoutTestController::pathToLocalResource()
-        https://bugs.webkit.org/show_bug.cgi?id=67255
-
-        Reviewed by Dirk Pranke.
-
-        Implement pathToLocalResource to redirect file:///tmp URL's to
-        DUMPRENDERTREE_TEMP and file:///tmp/LayoutTests to point to the
-        LayoutTests sub-directory of the WebKit source tree.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::pathToLocalResource):
-
-2012-06-07  Tony Payne  <tpayne@chromium.org>
-
-        [chromium] Allow LayoutTests under new git workflow
-        https://bugs.webkit.org/show_bug.cgi?id=88575
-
-        On Windows, chromium indirects through git.bat. Adds the same hack that
-        is currently used for discovering svn.bat to support the new git
-        workflow.
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        (Git): Replaces all hard-coded references to 'git' with the class
-        variable executable_name.
-        (Git._check_git_architecture):
-        (Git.in_working_directory):
-        (Git.find_checkout_root):
-        (Git.read_git_config):
-        (Git.discard_local_commits):
-        (Git.local_commits):
-        (Git.working_directory_is_clean):
-        (Git.clean_working_directory):
-        (Git.status_command):
-        (Git.add_list):
-        (Git.delete_list):
-        (Git.exists):
-        (Git._current_branch):
-        (Git.changed_files):
-        (Git._changes_files_for_commit):
-        (Git.revisions_changing_file):
-        (Git.conflicted_files):
-        (Git.svn_revision):
-        (Git.create_patch):
-        (Git._run_git_svn_find_rev):
-        (Git.contents_at_revision):
-        (Git.diff_for_file):
-        (Git.show_head):
-        (Git.committer_email_for_revision):
-        (Git.apply_reverse_diff):
-        (Git.revert_files):
-        (Git.commit_with_message):
-        (Git._commit_on_branch):
-        (Git.svn_commit_log):
-        (Git.last_svn_commit_log):
-        (Git.svn_blame):
-        (Git._branch_ref_exists):
-        (Git.delete_branch):
-        (Git.remote_merge_base):
-        (Git.commit_locally_with_message):
-        (Git.push_local_commits_to_server):
-        (Git.commit_ids_from_commitish_arguments):
-        (Git.commit_message_for_local_commit):
-        (Git.files_changed_summary_for_commit):
-        * Scripts/webkitpy/common/host.py:
-        (Host._engage_awesome_windows_hacks): Adds an awesome 'git.bat' hack
-        that duplicates the logic in the existing 'svn.bat' hack.
-
-2012-06-07  Ojan Vafai  <ojan@chromium.org>
-
-        Style build architectures like build versions for non-layout test failures
-        https://bugs.webkit.org/show_bug.cgi?id=88590
-
-        Reviewed by Tony Chang.
-
-        Since we show the list of failing tests after the architecture, we want the
-        buildtype and architecture to be grouped together visually.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/failures.css:
-        (.effects a.failing-builder>span.architecture):
-
-2012-06-07  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium] Remove header dependency of ImageDiff to WTF
-        https://bugs.webkit.org/show_bug.cgi?id=88422
-
-        Reviewed by Ryosuke Niwa.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/chromium/ImageDiff.cpp:
-        (untestedCompareImages):
-
-2012-06-07  Dongwoo Im  <dw.im@samsung.com>
-
-        [EFL] [DRT] DRT enables WebAudio when WebAudio feature is enabled.
-        https://bugs.webkit.org/show_bug.cgi?id=88491
-
-        Reviewed by Dirk Pranke.
-
-        DRT should enable WebAudio when WebAudio feature is enabled,
-        so that the WebAudio feature could be tested by the Layouttest.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp: Enable WebAudio when WebAudio feature is enabled.
-        (LayoutTestController::overridePreference):
-
-2012-06-07  Dirk Pranke  <dpranke@chromium.org>
-
-        webkit-patch rebaseline-expectations should only rebaseline the appropriate suffixes for the failure in question
-        https://bugs.webkit.org/show_bug.cgi?id=88581
-
-        Reviewed by Ojan Vafai.
-
-        webkit-paptch rebaseline-expectations was ignoring what the
-        expected results for a test were and pulling down all the result
-        files from a bot. This could lead to us pulling down old,
-        incorrect .txt or .png files. With this patch we will now only
-        pull down expectations of the appropriate file types (so an
-        IMAGE failure will only pull the png and not the txt file).
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (has_pixel_failures):
-        (suffixes_for_expectations):
-        * Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py:
-        (FunctionsTest.test_suffixes_for_expectations):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (AbstractRebaseliningCommand.__init__):
-        (RebaselineExpectations._is_supported_port):
-        (RebaselineExpectations._update_expectations_file):
-        (RebaselineExpectations._tests_to_rebaseline):
-        (RebaselineExpectations._rebaseline_port):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (test_overrides_are_included_correctly):
-
-2012-06-07  Ojan Vafai  <ojan@chromium.org>
-
-        Fix recent null pointer error regression in the flakiness dashboard
-        https://bugs.webkit.org/show_bug.cgi?id=88573
-
-        Reviewed by Dirk Pranke.
-
-        * TestResultServer/static-dashboards/builders.js:
-        (requestBuilderList):
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-
-2012-06-07  Konrad Piascik  <kpiascik@rim.com>
-
-        Add Konrad Piascik to committers.py
-        https://bugs.webkit.org/show_bug.cgi?id=88560
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-06-07  Tony Chang  <tony@chromium.org>
-
-        [chromium] Win mock scrollbars appear to overflow by a pixel to the right and bottom
-        https://bugs.webkit.org/show_bug.cgi?id=77368
-
-        Reviewed by Ojan Vafai.
-
-        It doesn't look like we ever get a rect with width or height of 0.
-        I ran css1, css2.1, fast/forms, and tables without any crashes.
-
-        * DumpRenderTree/chromium/WebThemeEngineDRTWin.cpp:
-        (webRectToSkIRect): Correctly convert a WebRect to a SkIRect.
-
-2012-06-07  Dirk Pranke  <dpranke@chromium.org>
-
-        run-webkit-tests --lint-test-files gives an error when run on linux
-        https://bugs.webkit.org/show_bug.cgi?id=88551
-
-        Reviewed by Ojan Vafai.
-
-        We weren't mapping the expectations properly for the
-        google-chrome ports.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.path_to_test_expectations_file):
-        * Scripts/webkitpy/layout_tests/port/google_chrome_unittest.py:
-        (TestGoogleChromePort.test_path_to_expectations):
-
-2012-06-07  Daniel Erat  <derat@chromium.org>
-
-        [chromium] Add LayoutTestController::setTextSubpixelPositioning() for Linux.
-        https://bugs.webkit.org/show_bug.cgi?id=88263
-
-        Reviewed by Tony Chang.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (LayoutTestController::reset):
-        (LayoutTestController::setTextSubpixelPositioning):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/chromium/fonts.conf:
-
-2012-06-07  Zan Dobersek  <zandobersek@gmail.com>
-
-        [Gtk] Assertions in gtk_widget_draw when acquiring pixel output
-        https://bugs.webkit.org/show_bug.cgi?id=88060
-
-        Reviewed by Martin Robinson.
-
-        Spin the main loop before acquiring the pixel content. This ensures things
-        like late size allocations are finished before calling gtk_widget_draw,
-        avoiding assertions and subsequent empty pixel results.
-
-        * DumpRenderTree/gtk/PixelDumpSupportGtk.cpp:
-        (createBitmapContextFromWebView):
-
-2012-06-06  Kenneth Rohde Christiansen  <kenneth@webkit.org>
-
-        [Qt] Improve the visual of the viewport info box
-        https://bugs.webkit.org/show_bug.cgi?id=88410
-
-        Reviewed by Tor Arne Vestbø.
-
-        Improve the visual and make it possible to see the content more easy.
-
-        * MiniBrowser/qt/qml/ViewportInfoItem.qml:
-
-2012-06-06  Mariusz Grzegorczyk  <mariusz.g@samsung.com>
-
-        [EFL][WK2] Compile webkit1 and webkit2 by default.
-        https://bugs.webkit.org/show_bug.cgi?id=85041
-
-        Reviewed by Chang Shu.
-
-        Compile webkit1 and webkit2 while running Tools/Scripts/build-webkit --efl.
-        Webkit2 build can be skipped by adding --no-webkit2 option to build-webkit script.
-
-        * Scripts/build-webkit:
-
-2012-06-06  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r119662.
-        http://trac.webkit.org/changeset/119662
-        https://bugs.webkit.org/show_bug.cgi?id=88487
-
-        Broke builds (Requested by rniwa on #webkit).
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/chromium/ImageDiff.cpp:
-        (untestedCompareImages):
-
-2012-06-06  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium] Remove header dependency of ImageDiff to WTF
-        https://bugs.webkit.org/show_bug.cgi?id=88422
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/chromium/ImageDiff.cpp:
-        (untestedCompareImages):
-
-2012-06-06  Amy Ousterhout  <aousterh@chromium.org>
-
-        [WebKit] DeviceOrientation cleanup
-        https://bugs.webkit.org/show_bug.cgi?id=88406
-
-        Reviewed by Kent Tamura.
-
-        Updated LayoutTestController to use new public default constructor in WebDeviceOrientation.h.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::setMockDeviceOrientation):
-
-2012-05-29  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: add support for an ordered dict of test expectations
-        https://bugs.webkit.org/show_bug.cgi?id=87802
-
-        Reviewed by Ojan Vafai.
-
-        As per https://bugs.webkit.org/show_bug.cgi?id=65834 we want to
-        support a cascaded list of test expectations files. An easy way
-        to think of this is as an ordered dictionary of name -> contents
-        for files, where the name is usually a path on disk (I say
-        usually because we want to support other kinds of expectations
-        like the compile-time skips for unsupported features in
-        webkit.py, and we want to continue to support "in-memory" test
-        expectations that don't require a filesystem).
-
-        Conveniently there is an OrderedDict implementation in Python
-        2.7+ and it is available as a backport, so the first step in
-        adding this support is to use that implementation. Subsequent
-        patches will update the test_expectations.py module (and other
-        callers) to access the dict directly.
-
-        This patch just changes the base internal implementation and
-        provides wrappers for compatibility. The derived ports
-        (WebKitPort, TestPort, etc.) still need to be updated.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port._expectations_dict):
-        (Port.test_expectations):
-        (Port):
-        (Port._expectations_overrides_dict):
-        (Port.test_expectations_overrides):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (PortTestCase.test_expectations_ordering):
-        (PortTestCase):
-        (PortTestCase.test_expectations_overrides_ordering):
-        * Scripts/webkitpy/thirdparty/ordered_dict.py: Added.
-        (OrderedDict):
-        (OrderedDict.__init__):
-        (OrderedDict.clear):
-        (OrderedDict.__setitem__):
-        (OrderedDict.__delitem__):
-        (OrderedDict.__iter__):
-        (OrderedDict.__reversed__):
-        (OrderedDict.popitem):
-        (OrderedDict.__reduce__):
-        (OrderedDict.__repr__):
-        (OrderedDict.copy):
-        (OrderedDict.fromkeys):
-
-2012-06-06  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        Unreviewed gardening. Unit test fails on GTK 64bit debug bot.
-
-        * gtk/run-api-tests:
-        (TestRunner): Skip TestWebKitAPI/WTF/TestHashMap.
-
-2012-06-06  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt should look in 'out' for binaries on chromium win to support ninja
-        https://bugs.webkit.org/show_bug.cgi?id=88273
-
-        Reviewed by Tony Chang.
-
-        This patch standardizes the search algorithm the chromium ports
-        use to figure out which driver to run. We will look in a
-        chromium location before a webkit location (e.g., in
-        Source/WebKit/chromium/out before out/) and we will look in the
-        "legacy" directory (xcodebuild) before the directory ninja uses
-        (out).
-
-        Unfortunately due to the way the test code is set up testing the
-        properly requires some duplication of test code. I will fix that
-        in a followup patch.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort):
-        (ChromiumPort._static_build_path):
-        (ChromiumPort._build_path):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        (ChromiumLinuxPort):
-        (ChromiumLinuxPort._determine_driver_path_statically):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux_unittest.py:
-        (ChromiumLinuxPortTest.test_build_path):
-        (ChromiumLinuxPortTest):
-        (ChromiumLinuxPortTest.test_driver_name_option):
-        (ChromiumLinuxPortTest.path_to_image_diff):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac.py:
-        (ChromiumMacPort):
-        * Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
-        (ChromiumMacPortTest.test_build_path):
-        (ChromiumMacPortTest):
-        (ChromiumMacPortTest.test_driver_name_option):
-        (ChromiumMacPortTest.path_to_image_diff):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumPortTest.test_overrides_and_builder_names):
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        (ChromiumWinPort):
-        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
-        (ChromiumWinTest.test_build_path):
-        (ChromiumWinTest.test_operating_system):
-        (ChromiumWinTest):
-        (ChromiumWinTest.test_driver_name_option):
-        (ChromiumWinPortTest.path_to_image_diff):
-        * Scripts/webkitpy/layout_tests/port/port_testcase.py:
-        (PortTestCase.assert_build_path):
-
-2012-06-06  Jessie Berlin  <jberlin@apple.com>
-
-        Remove very red Windows WebKit2 testers
-        https://bugs.webkit.org/show_bug.cgi?id=88452
-
-        Reviewed by Steve Falkenburg.
-
-        Remove the Windows 7 Release WK2 testers so that the hardware can be repurposed. We are
-        need to focus on getting the WK1 testers green.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-06-06  Dirk Pranke  <dpranke@chromium.org>
-
-        get rebaselining tools to kinda work with the skia overrides file
-        https://bugs.webkit.org/show_bug.cgi?id=88456
-
-        Reviewed by Ryosuke Niwa.
-
-        Update rebaseline-expectations so that we read in the overrides
-        when looking for tests to rebaseline, but don't read in the
-        overrides when we are writing the expectations file back out.
-        This prevents the overrides from getting written into the main
-        file. This is kind of a hack but will have to do until we
-        support multiple expectations files properly.
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineExpectations._expectations):
-        (RebaselineExpectations._update_expectations_file):
-        (RebaselineExpectations._tests_to_rebaseline):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (test_overrides_are_included_correctly):
-
-2012-06-06  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: two manager_worker_broker_unittest tests are broken
-        https://bugs.webkit.org/show_bug.cgi?id=88445
-
-        Reviewed by Ojan Vafai.
-
-        These tests were never updated when we removed the
-        --worker-model argument, and we were passing 'inline' instead of
-        1 (for the number of workers) :(. As a result we were creating
-        multiprocessing queues unnecessarily and that was failing on cygwin.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager_worker_broker_unittest.py:
-        (InterfaceTest.test_managerconnection_is_abstract):
-        (InterfaceTest.test_workerconnection_is_abstract):
-
-2012-06-06  Ryosuke Niwa  <rniwa@webkit.org>
-
-        REGRESSION(r117789): "webkit-patch rebaseline-expectations" copies contents in skia_test_expectations.txt into test_expectations.txt
-        https://bugs.webkit.org/show_bug.cgi?id=87406
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectations.__init__):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineTest._update_expectations_file):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (test_rebaseline_does_not_include_overrides):
-
-2012-06-06  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: perf tests unit tests fail on chromium win
-        https://bugs.webkit.org/show_bug.cgi?id=88279
-
-        Reviewed by Ryosuke Niwa.
-
-        I'm seeing weird failures running the unit tests in my win32
-        checkout, and we don't really expect webpagereplay to work on
-        win32 anyway, so I'm skipping the import of that module for now
-        and adding a warning.
-
-        * Scripts/run-perf-tests:
-        * Scripts/webkitpy/performance_tests/perftest.py:
-
-2012-06-06  Yong Li <yoli@rim.com>
-
-        Unreviewed. Update my email address in committers.py.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-06-06  Robert Kroeger  <rjkroege@chromium.org>
-
-        Add Robert Kroeger  to commiters.py
-        https://bugs.webkit.org/show_bug.cgi?id=88415
-
-        Unreviewed.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-06-06  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL][DRT] http/tests/globalhistory testcases do not pass
-        https://bugs.webkit.org/show_bug.cgi?id=82579
-
-        Reviewed by Csaba Osztrogonác.
-
-        DRT has provided callbacks for ewk_view "global history delegate" signals.
-
-        * DumpRenderTree/efl/DumpRenderTree.cpp:
-        (isGlobalHistoryTest): Aux function to ident global history testcase.
-        (createLayoutTestController):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::createView):
-        (DumpRenderTreeChrome::onTitleChanged): Handles also some global history testcases.
-        (DumpRenderTreeChrome::onWebViewNavigatedWithData): New callback function.
-        (DumpRenderTreeChrome::onWebViewServerRedirect): Ditto.
-        (DumpRenderTreeChrome::onWebViewClientRedirect): Ditto.
-        (DumpRenderTreeChrome::onWebViewPopulateVisitedLinks): Ditto.
-        * DumpRenderTree/efl/DumpRenderTreeChrome.h:
-        (DumpRenderTreeChrome):
-
-2012-06-06  János Badics  <jbadics@inf.u-szeged.hu>
-
-        [Qt] run-qtwebkit-tests hangs with -j1
-        run-qtwebkit-tests used to hang when wk2 API tests were run with -j1 and --timeout.
-        This could happen due to an uncancelled timer after results were returned. This timer was
-        started only if --timeout was set.
-        https://bugs.webkit.org/show_bug.cgi?id=85475
-
-        Reviewed by Csaba Osztrogonác.
-
-        * Scripts/run-qtwebkit-tests:
-        (run_test):
-
-2012-06-06  Michael Brüning  <michael.bruning@nokia.com>
-
-        [Qt][WK2] Add preferredMinimumContentsWidth to the viewport info in MiniBrowser.
-        https://bugs.webkit.org/show_bug.cgi?id=88327
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * MiniBrowser/qt/MiniBrowser.qrc: Added contents_width.png.
-        * MiniBrowser/qt/icons/contents_width.png: Added.
-        * MiniBrowser/qt/qml/BrowserWindow.qml: Added button for toggling preferredMinimumContentsWidth.
-        * MiniBrowser/qt/qml/ViewportInfoItem.qml: Added display of preferredMinimumContentsWidth.
-
-2012-06-05  Jon Lee  <jonlee@apple.com>
-
-        Buildbot fix.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: We lose the type attribute earlier
-        in the function. Store in a local variable.
-        (loadBuilderConfig):
-
-2012-06-05  Jon Lee  <jonlee@apple.com>
-
-        Buildbot fix.
-
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
-        (loadBuilderConfig):
-
-2012-06-04  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: clean up win-specific path handling and tests
-        https://bugs.webkit.org/show_bug.cgi?id=88281
-
-        Reviewed by Adam Barth.
-
-        There was a bunch of inconsistent logic for handling path
-        conversions for win32 and cygwin paths due to us sometimes
-        looking at sys.platform and sometimes using mock hosts. This
-        patch cleans everything up so that we are required to pass
-        PlatformInfo objects to the path module and stop trying to do
-        different things when running on cygwin or win32 hosts (except
-        in the path_unittest module itself).
-
-        This may slightly reduce test coverage for the win32 code paths
-        but will be a lot easier to follow and maintain.
-
-        * Scripts/webkitpy/common/system/path.py:
-        (abspath_to_uri):
-        (_convert_path):
-        * Scripts/webkitpy/common/system/path_unittest.py:
-        (AbspathTest.platforminfo):
-        (AbspathTest.test_abspath_to_uri_cygwin):
-        (AbspathTest.test_abspath_to_uri_unixy):
-        (AbspathTest.test_abspath_to_uri_win):
-        (AbspathTest.test_abspath_to_uri_escaping_unixy):
-        (AbspathTest.test_abspath_to_uri_escaping_cygwin):
-        (AbspathTest.test_stop_cygpath_subprocess):
-        * Scripts/webkitpy/common/system/platforminfo.py:
-        (PlatformInfo.__init__):
-        (PlatformInfo.is_cygwin):
-        * Scripts/webkitpy/common/system/platforminfo_mock.py:
-        (MockPlatformInfo.is_cygwin):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.to.show_results_html_file):
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.test_to_uri):
-        (Driver.uri_to_test):
-        * Scripts/webkitpy/layout_tests/port/driver_unittest.py:
-        (DriverTest.test_test_to_uri):
-        (DriverTest.test_uri_to_test):
-        * Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
-        (MockDRTPortTest.make_port):
-        (MockDRTTest.input_line):
-        (MockChromiumDRTTest.test_pixeltest__fails):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        * Scripts/webkitpy/layout_tests/port/win.py:
-        (WinPort.show_results_html_file):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
-        (MainTest.test_unexpected_failures):
-        (MainTest.test_results_directory_absolute):
-        (MainTest.test_results_directory_default):
-        (MainTest.test_results_directory_relative):
-
-2012-06-05  Jon Lee  <jonlee@apple.com>
-
-        Workaround buildbot bug when merging build requests.
-        https://bugs.webkit.org/show_bug.cgi?id=88158
-
-        Reviewed by Mark Rowe.
-
-        For expediency, we still want testers to pick the latest build to test, but to ensure
-        that the builders are reporting the correct revision number, we should let the building bots
-        run as they normally would. That is, the builder picks the oldest revision, and merges
-        subsequent requests. Because merged requests get appended to the list of changes for a given
-        build, the last change in that list is also the latest change. When we used pickLatestBuild
-        for the builders, this was not the case (it would always report the penultimate change).
-
-        http://trac.buildbot.net/ticket/2309 is tracking the buildbot bug.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json: Remove the mergeRequests override
-        for all Apple builders.
-        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Have only non-building bots pick
-        the latest build to run.
-        (loadBuilderConfig):
-
-2012-06-05  Jessie Berlin  <jberlin@apple.com>
-
-        [Win] DumpRenderTree should call resetInternalsObject
-        https://bugs.webkit.org/show_bug.cgi?id=88346
-
-        Reviewed by Simon Fraser.
-
-        Invoke it on Windows in the same place it is invoked on Mac.
-
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting):
-
-2012-06-05  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [GTK] Fix two more memory leaks in DRT
-        https://bugs.webkit.org/show_bug.cgi?id=88255
-
-        Reviewed by Martin Robinson.
-
-        Fixed memory leaks in GTK's DRT code.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (dumpHistoryItem): webkit_web_history_item_get_target() returns a
-        g_strdup()'d string. So, use GOwnPtr to manage memory automatically.
-        * DumpRenderTree/gtk/PixelDumpSupportGtk.cpp:
-        (createBitmapContextFromWebView): Free the cairo surface.
-
-2012-06-05  Allan Sandfeld Jensen  <allan.jensen@nokia.com>
-
-        [Qt] Building when a top directory is named Source
-        https://bugs.webkit.org/show_bug.cgi?id=77727
-
-        Reviewed by Tor Arne Vestbø.
-
-        Change regex to only replace the last instance of OUT_PWD.
-
-        * qmake/mkspecs/features/default_pre.prf:
-
-2012-06-05  Dongwoo Im  <dw.im@samsung.com>
-
-        Add 'isProtocolHandlerRegistered' and 'unregisterProtocolHandler'.
-        https://bugs.webkit.org/show_bug.cgi?id=73176
-
-        Reviewed by Adam Barth.
-
-        Two more APIs are added in Custom Scheme Handler specification.
-        http://dev.w3.org/html5/spec/Overview.html#custom-handlers
-        One is 'isProtocolHandlerRegistered' to query whether the specific URL
-        is registered or not.
-        The other is 'unregisterProtocolHandler' to remove the registered URL.
-
-        * Scripts/webkitperl/FeatureList.pm: Add a macro 'ENABLE_CUSTOM_SCHEME_HANDLER'.
-
-2012-06-05  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        [GTK][WK2] Implement API for Geolocation permission requests in the GTK port
-        https://bugs.webkit.org/show_bug.cgi?id=83879
-
-        Reviewed by Carlos Garcia Campos.
-
-        Make minibrowser connect to the new 'permission requests' signal
-        to allow users handle the Geolocation permission requests.
-
-        * MiniBrowser/gtk/BrowserWindow.c:
-        (geolocationRequestDialogCallback): Callback for the dialog asking
-        the user for allowing or not geolocation permission requests.
-        (webViewDecidePermissionRequest): Launch a dialog to ask the user
-        whether to allow or deny geolocation permission requests.
-        (browserWindowConstructed): Connect to 'permission-request' signal.
-
-2012-06-04  Chase Phillips  <cmp@google.com>
-
-        Make a builder group support+expect multiple loads.
-        https://bugs.webkit.org/show_bug.cgi?id=88260
-
-        Change BuilderGroup to allow expecting multiple
-        loads.  This allows merging results for a given set
-        of builders into one group.
-
-        Add a test that verifies that the group count
-        increments correctly based on successful and failed
-        list loads.
-
-        Reviewed by Ojan Vafai.
-
-        * TestResultServer/static-dashboards/builders.js:
-        (BuilderGroup):
-        (BuilderGroup.prototype.setbuilder):
-        (BuilderGroup.prototype.append):
-        (BuilderGroup.prototype.loaded):
-        (requestBuilderList.xhr.onload):
-        (requestBuilderList.xhr.onerror):
-        (onErrorLoadingBuilderList):
-        (loadBuildersList):
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-        (test):
-        * TestResultServer/static-dashboards/run-unittests.html:
-
-2012-06-04  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Python test fix attempt for Chromium Windows.
-
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.uri_to_test):
-
-2012-06-04  Hugo Parente Lima  <hugo.lima@openbossa.org>
-
-        Turn LEGACY_VIEWPORT_ADAPTION USE flag into an ENABLE flag.
-        https://bugs.webkit.org/show_bug.cgi?id=88243
-
-        Reviewed by Adam Barth.
-
-        * qmake/mkspecs/features/features.prf:
-
-2012-06-04  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy.layout_tests.port.server_process_unittest.TestServerProcess.test_basic is flaky
-        https://bugs.webkit.org/show_bug.cgi?id=88280
-
-        Unreviewed, build fix.
-
-        * Scripts/webkitpy/layout_tests/port/server_process_unittest.py:
-        (TestServerProcess.test_basic):
-
-2012-06-04  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy is hanging under cygwin
-        https://bugs.webkit.org/show_bug.cgi?id=88269
-
-        Reviewed by Ryosuke Niwa.
-
-        The 'multiprocessing' module doesn't work correctly under Cygwin yet,
-        so we need to skip any tests that use it.
-
-        * Scripts/webkitpy/common/system/executive.py:
-        (Executive.run_in_parallel):
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        (ExecutiveTest.test_run_in_parallel):
-
-2012-06-04  Dirk Pranke  <dpranke@chromium.org>
-
-        test-webkitpy is failing on win32 after r115054
-        https://bugs.webkit.org/show_bug.cgi?id=88264
-
-        Reviewed by Ryosuke Niwa.
-
-        The failing http_server test was improperly suppressed (the
-        tuple was missing a comma, and so wasn't a tuple at all, just a
-        string) and so we were skipping *all* tests on win32. The right
-        way to skip a single test is to disable it inside the test
-        itself.
-
-        * Scripts/webkitpy/layout_tests/servers/http_server_unittest.py:
-        (TestHttpServer.test_start_cmd):
-        * Scripts/webkitpy/test/test_finder.py:
-        (TestFinder._default_names):
-        * Scripts/webkitpy/test/main.py:
-        (Tester.run): Add error message if we don't find any tests to run.
-        * Scripts/webkitpy/test/main_unittest.py:
-            
-
-2012-06-04  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [GTK] Memory leaks in AccessibilityUIElementGtk.cpp
-        https://bugs.webkit.org/show_bug.cgi?id=88215
-
-        Reviewed by Martin Robinson.
-
-        Fixed memory leaks in AccessibilityUIElement by using GOwnPtr
-        for newly allocated strings.
-
-        * DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp:
-        (attributeSetToString):
-        (AccessibilityUIElement::allAttributes):
-
-2012-06-04  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [GTK] Memory leaks in DumpRenderTree.cpp
-        https://bugs.webkit.org/show_bug.cgi?id=88213
-
-        Reviewed by Martin Robinson.
-
-        Fixed memory leaks in DumpRenderTree.
-
-        * DumpRenderTree/gtk/DumpRenderTree.cpp:
-        (appendString): Accepts const gchar* as the second argument.
-        (dumpFramesAsText): Free the string returned by g_strdup_printf().
-        (dumpHistoryItem): Free the string returned by g_uri_parse_scheme().
-
-2012-06-04  David Dorwin  <ddorwin@chromium.org>
-
-        Enable Chromium media player to instantiate a plugin
-        https://bugs.webkit.org/show_bug.cgi?id=87399
-
-        Reviewed by Kent Tamura.
-
-        Adds WebHelperPlugin, an off-screen widget that contains an <object> tag.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::createPopupMenu):
-
-2012-06-04  Mario Sanchez Prada  <msanchez@igalia.com>
-
-        [GTK][WK2] Implement geolocation provider for the GTK port
-        https://bugs.webkit.org/show_bug.cgi?id=83877
-
-        Reviewed by Carlos Garcia Campos.
-
-        * gtk/generate-gtkdoc:
-        (get_webkit2_options): Ignore WebKitGeolocationProvider files.
-
-2012-06-04  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL] Reset "WebKitTabToLinksPreferenceKey" in DumpRenderTreeChrome::resetDefaultsToConsistentValues
-        https://bugs.webkit.org/show_bug.cgi?id=87668
-
-        Reviewed by Ryosuke Niwa.
-
-        Layout test controller "WebKitTabToLinksPreferenceKey" setting should be reset to false
-        otherwise LayoutTests/fast/html/tab-order.html is failing as it has a link inside the test description which might 
-        be included in focus chain (if "WebKitTabToLinksPreferenceKey" setting is set to true). 
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-
-2012-06-04  Tomasz Morawski  <t.morawski@samsung.com>
-
-        [EFL] Refactor ewk_view_context_paint code.
-        https://bugs.webkit.org/show_bug.cgi?id=85588
-
-        Reviewed by Hajime Morita.
-
-        * DumpRenderTree/efl/CMakeLists.txt: Added include directory.
-
-2012-06-04  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Compilation warning in DumpRenderTreeView.cpp on 64-Bit
-        https://bugs.webkit.org/show_bug.cgi?id=87869
-
-        Reviewed by Andreas Kling.
-
-        Replace %lld by PRId64 macro to print an int64_t value and silent a
-        compilation warning on 64-Bit.
-
-        * DumpRenderTree/efl/DumpRenderTreeView.cpp:
-        (onExceededApplicationCacheQuota):
-
-2012-06-03  Varun Jain  <varunjain@google.com>
-
-        [chromium] Add new gesture type (two finger tap) that triggers context menu.
-        https://bugs.webkit.org/show_bug.cgi?id=88173
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/chromium/EventSender.cpp:
-        (EventSender::EventSender):
-        (EventSender::gestureTwoFingerTap):
-        (EventSender::gestureEvent):
-        * DumpRenderTree/chromium/EventSender.h:
-        (EventSender):
-
-2012-06-02  Zeno Albisser  <zeno@webkit.org>
-
-        Fix and enable WebGL for WebKit2 on Qt.
-        https://bugs.webkit.org/show_bug.cgi?id=86214
-
-        Enable WebGL by default for Qt MiniBrowser.
-
-        Reviewed by Noam Rosenthal.
-
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-
-2012-06-02  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Teach svn-apply how to apply changes in test_expectations.txt to TestExpectations
-        https://bugs.webkit.org/show_bug.cgi?id=88164
-
-        Reviewed by Kentaro Hara.
-
-        Just like r74856, adjust git/svn headers from test_expectations.txt to TestExpectations.
-        Also replace all occurrences of /test_expectations.txt: by /TestExpectations: in change log entries.
-
-        * Scripts/VCSUtils.pm:
-        (adjustPathForRecentRenamings):
-        (fixChangeLogPatch):
-
-2012-06-01  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Rename test_expectations.txt to TestExpectations
-        https://bugs.webkit.org/show_bug.cgi?id=86690
-
-        Reviewed by Dirk Pranke.
-
-        Make webkitpy aware of both test_expectations.txt and TestExpectations while we rename files.
-        We can the code to read test_expectations.txt once we've successfully transitioned.
-
-        * Scripts/webkitpy/layout_tests/models/test_expectations.py:
-        (TestExpectationParser._check_path_does_not_exist):
-        (TestExpectationParser._tokenize):
-        (TestExpectations): Removed TEST_LIST, which is not used anywhere.
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.path_to_test_expectations_file): Moved from WebKitPort and ChromiumPort. Returns the path to
-        test_expectations.txt if one exists and the path to TestExpectations otherwise.
-        * Scripts/webkitpy/layout_tests/port/base_unittest.py:
-        (PortTest.test_virtual_methods): path_to_test_expectations_file and test_expectations are no longer
-        virtual.
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort.path_from_chromium_base):
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.test_expectations):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-        (add_unit_tests_to_mock_filesystem): Use TestExpectations instead of test_expectations.txt.
-        (TestPort.__init__):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort.baseline_search_path):
-        (WebKitPort.test_expectations):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py: Added some test cases. We should move these
-        tests to base as a follow up.
-        (WebKitPortTest.test_path_to_test_expectations_file):
-        (test_test_expectations):
-        (test_legacy_test_expectations):
-        * Scripts/webkitpy/style/checker.py:
-        (CheckerDispatcher.should_skip_without_warning): Replace the check for legacy drt_expectations.txt
-        with one for TestExpectations.
-        * Scripts/webkitpy/style/checkers/test_expectations.py:
-        (TestExpectationsChecker): Accept both test_expectations.txt and TestExpectations in warning outputs.
-        * Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
-        (TestExpectationsTestCase._expect_port_for_expectations_path): Test both TestExpectations and
-        test_expectations.txt.
-        (TestExpectationsTestCase.test_determine_port_from_expectations_path):
-        (TestExpectationsTestCase.assert_lines_lint):
-        * Scripts/webkitpy/tool/commands/queries.py:
-        (PrintExpectations.__init__):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineExpectations):
-        * Scripts/webkitpy/tool/steps/commit.py:
-        (Commit._check_test_expectations):
-        * Scripts/webkitpy/tool/steps/commit_unittest.py:
-        (CommitTest._test_check_test_expectations): Extracted from test_check_test_expectations.
-        (CommitTest.test_check_test_expectations): For TestExpectations.
-        (CommitTest.test_check_legacy_test_expectations): For test_expectations.txt
-        * TestResultServer/static-dashboards/dashboard_base.js:
-        (requestExpectationsFile): Look for TestExpectations first, and fallback to test_expectations.txt.
-        Error only when neither exists.
-        * TestResultServer/static-dashboards/flakiness_dashboard.js:
-        (processMissingAndExtraExpectations):
-        (htmlForTestsWithExpectationsButNoFailures):
-        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
-
-2012-06-01  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        Remove dependency from ImageDiff to WTF
-        https://bugs.webkit.org/show_bug.cgi?id=88147
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-06-01  Dirk Pranke  <dpranke@chromium.org>
-
-        NRWT seems to leak (more?) temp dirs
-        https://bugs.webkit.org/show_bug.cgi?id=88126
-
-        Re-land r119297 with chromium fix (weren't calling the
-        super() method if not in --test-shell mode in start().
-        Add unit tests to chromium_unittest as well to check.
-
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumDriver.start):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver.__del__):
-        (WebKitDriver._start):
-        (WebKitDriver.run_test):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (WebKitDriverTest.test_check_for_driver_crash):
-        (WebKitDriverTest.test_stop_cleans_up_properly):
-        (WebKitDriverTest):
-        (WebKitDriverTest.test_two_starts_cleans_up_properly):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumDriverTest.test_stop_cleans_up_properly):
-        (ChromiumDriverTest.test_two_starts_cleans_up_properly):
-
-2012-06-01  Tim Horton  <timothy_horton@apple.com>
-
-        Lots of "failed download-built-product" on Apple bots
-        https://bugs.webkit.org/show_bug.cgi?id=88158
-
-        Reviewed by Jessie Berlin.
-        
-        Disable mergeRequests on all Apple builders. This is a speculative fix.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-06-01  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r119297.
-        http://trac.webkit.org/changeset/119297
-        https://bugs.webkit.org/show_bug.cgi?id=88156
-
-        May have broken Chromium bots (Requested by rniwa on #webkit).
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver.__del__):
-        (WebKitDriver.run_test):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (WebKitDriverTest.test_check_for_driver_crash):
-        (WebKitDriverTest.test_stop_cleans_up_properly):
-
-2012-06-01  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt seems to leak tmpdirs
-        https://bugs.webkit.org/show_bug.cgi?id=88126
-
-        Reviewed by Ojan Vafai.
-
-        Fix leak possibly introduced in r118979 - we now will
-        make sure we clean up any stale temp directories during the
-        start routine and attempt to clean up again in __del__. It
-        turns out that asserting in __del__ logs a message but is
-        caught by the runtime, so it's mostly useless.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver.__del__):
-        (WebKitDriver._start):
-        (WebKitDriver.run_test):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (WebKitDriverTest.test_check_for_driver_crash):
-        (WebKitDriverTest.test_stop_cleans_up_properly):
-        (WebKitDriverTest):
-        (WebKitDriverTest.test_two_starts_cleans_up_properly):
-
-2012-06-01  Michael Saboff  <msaboff@apple.com>
-
-        WebFrame::_stringByEvaluatingJavaScriptFromString methods don't handle nil string
-        https://bugs.webkit.org/show_bug.cgi?id=88109
-
-        Reviewed by Geoffrey Garen.
-
-        Additional test case.
-
-        * TestWebKitAPI/Tests/mac/StringByEvaluatingJavaScriptFromString.mm:
-        (TestWebKitAPI::TEST):
-
-2012-06-01  Simon Hausmann  <simon.hausmann@nokia.com>
-
-        [Qt] Use -Werror only in developer builds
-
-        Rubber-stamped by Tor Arne Vestbø.
-
-        In production builds -Werror with custom toolchains and wierd system
-        headers, -Werror is of no use and just creates confusion. So use it
-        only if Qt is configured with -developer-build.
-
-        * qmake/mkspecs/features/default_pre.prf: Move qt_developer_build determination here...
-        * qmake/mkspecs/features/unix/default_post.prf: ... so that we can use it here to do -Werror
-        only if qt_developer_build is set.
-
-2012-06-01  Jochen Eisinger  <jochen@chromium.org>
-
-        [watchlist] Add myself to loader and v8 bindings changes
-        https://bugs.webkit.org/show_bug.cgi?id=88112
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-06-01  Jacky Jiang  <zhajiang@rim.com>
-
-        Adding Jacky Jiang to committers.py
-        https://bugs.webkit.org/show_bug.cgi?id=88122
-
-        Reviewed by Rob Buis.
-
-        Adding myself to committers.py as a Committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-06-01  Jessie Berlin  <jberlin@apple.com>
-
-        Fix Windows build.
-
-        * TestWebKitAPI/Tests/WebKit2/MouseMoveAfterCrash.cpp:
-
-2012-06-01  Jessie Berlin  <jberlin@apple.com>
-
-        Windows WK2 MouseMoveAfterCrash API test failing
-        https://bugs.webkit.org/show_bug.cgi?id=69982
-
-        Disable the test on Windows to get the bots greener.
-
-        * TestWebKitAPI/Tests/WebKit2/MouseMoveAfterCrash.cpp:
-        (TestWebKitAPI::TEST):
-
-2012-06-01  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] EFL port does not enable WEB_INTENTS_TAG flag
-        https://bugs.webkit.org/show_bug.cgi?id=86866
-
-        Reviewed by Adam Barth.
-
-        Catch new "intent,service,register" signal on the frame and print out
-        information about the Web Intent service in EFL's DumpRenderTree.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::createView):
-        (DumpRenderTreeChrome::onFrameCreated):
-        (DumpRenderTreeChrome::onFrameIntentServiceRegistration):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.h:
-        (DumpRenderTreeChrome):
-
-2012-06-01  Martin Robinson  <mrobinson@igalia.com>
-
-        The ChangeLog parser cannot handle reviewers with initials in their name
-        https://bugs.webkit.org/show_bug.cgi?id=87864
-
-        Reviewed by Ryosuke Niwa.
-
-        Add support in the ChangeLog parser for reviewer names that have
-        initials in them.
-
-        * Scripts/webkitpy/common/checkout/changelog.py:
-        (ChangeLogEntry): Add a new group of regular expressions that need a backreference
-        in the replacement string. This allows for matching the word characters before a
-        period, without totally throwing them away.
-        (ChangeLogEntry._parse_reviewer_text): Use the new regular expression.
-        * Scripts/webkitpy/common/checkout/changelog_unittest.py:
-        (test_fuzzy_reviewer_match_initial): Add a test for a reviewer name that has an initial.
-
-2012-06-01  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] EFL's LayoutTestController needs to implement deliverWebIntent
-        https://bugs.webkit.org/show_bug.cgi?id=86865
-
-        Reviewed by Adam Barth.
-
-        Add deliverWebIntent method to LayoutTestController and provide
-        implementation for EFL port.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (deliverWebIntentCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
-        (LayoutTestController::deliverWebIntent):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::deliverWebIntent):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::deliverWebIntent):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::deliverWebIntent):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::deliverWebIntent):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::deliverWebIntent):
-
-2012-06-01  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Make Qt Creator aware of files in webkitpy/perl for easy editing
-
-        Reviewed by Simon Hausmann.
-
-        * Tools.pro:
-
-2012-06-01  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Add public page loading performance tests using web-page-replay
-        https://bugs.webkit.org/show_bug.cgi?id=84008
-
-        Reviewed by Dirk Pranke.
-
-        Add the primitive implementation of replay performance tests. We use web-page-replay (http://code.google.com/p/web-page-replay/)
-        to cache data locally. Each replay test is represented by a text file with .replay extension containing a single URL.
-        To hash out bugs and isolate them from the rest of performance tests, replay tests are hidden behind --replay flag.
-
-        Run "run-perf-tests --replay PerformanceTests/Replay" after changing the system network preference to forward HTTP and HTTPS requests
-        to localhost:8080 and localhost:8443 respectively (i.e. configure the system as if there are HTTP proxies at ports 8080 and 8443)
-        excluding: *.webkit.org, *.googlecode.com, *.sourceforge.net, pypi.python.org, and www.adambarth.com for thirdparty Python dependencies.
-        run-perf-tests starts web-page-replay, which provides HTTP proxies at ports 8080 and 8443 to replay pages.
-
-        * Scripts/webkitpy/layout_tests/port/driver.py:
-        (Driver.is_external_http_test): Added.
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver._command_from_driver_input): Allow test names that starts with http:// or https://.
-        * Scripts/webkitpy/performance_tests/perftest.py:
-        (PerfTest.__init__): Takes port.
-        (PerfTest.prepare): Added. Overridden by ReplayPerfTest.
-        (PerfTest):
-        (PerfTest.run): Calls run_single.
-        (PerfTest.run_single): Extracted from PageLoadingPerfTest.run.
-        (ChromiumStylePerfTest.__init__):
-        (PageLoadingPerfTest.__init__):
-        (PageLoadingPerfTest.run):
-        (ReplayServer): Added. Responsible for starting and stopping replay.py in the web-page-replay.
-        (ReplayServer.__init__):
-        (ReplayServer.wait_until_ready): Wait until port 8080 is ready. I have tried looking at the piped output from web-page-replay
-        but it caused a dead lock on some web pages.
-        (ReplayServer.stop):
-        (ReplayServer.__del__):
-        (ReplayPerfTest):
-        (ReplayPerfTest.__init__):
-        (ReplayPerfTest._start_replay_server):
-        (ReplayPerfTest.prepare): Creates test.wpr and test-expected.png to cache the page when a replay test is ran for the first time.
-        The subsequent runs of the same test will just use test.wpr.
-        (ReplayPerfTest.run_single):
-        (PerfTestFactory):
-        (PerfTestFactory.create_perf_test):
-        * Scripts/webkitpy/performance_tests/perftest_unittest.py:
-        (MainTest.test_parse_output):
-        (MainTest.test_parse_output_with_failing_line):
-        (TestPageLoadingPerfTest.test_run):
-        (TestPageLoadingPerfTest.test_run_with_bad_output):
-        (TestReplayPerfTest):
-        (TestReplayPerfTest.ReplayTestPort):
-        (TestReplayPerfTest.ReplayTestPort.__init__):
-        (TestReplayPerfTest.ReplayTestPort.__init__.ReplayTestDriver):
-        (TestReplayPerfTest.ReplayTestPort.__init__.ReplayTestDriver.run_test):
-        (TestReplayPerfTest.ReplayTestPort._driver_class):
-        (TestReplayPerfTest.MockReplayServer):
-        (TestReplayPerfTest.MockReplayServer.__init__):
-        (TestReplayPerfTest.MockReplayServer.stop):
-        (TestReplayPerfTest._add_file):
-        (TestReplayPerfTest._setup_test):
-        (TestReplayPerfTest.test_run_single):
-        (TestReplayPerfTest.test_run_single.run_test):
-        (TestReplayPerfTest.test_run_single_fails_without_webpagereplay):
-        (TestReplayPerfTest.test_prepare_fails_when_wait_until_ready_fails):
-        (TestReplayPerfTest.test_run_single_fails_when_output_has_error):
-        (TestReplayPerfTest.test_run_single_fails_when_output_has_error.run_test):
-        (TestReplayPerfTest.test_prepare):
-        (TestReplayPerfTest.test_prepare.run_test):
-        (TestReplayPerfTest.test_prepare_calls_run_single):
-        (TestReplayPerfTest.test_prepare_calls_run_single.run_single):
-        (TestPerfTestFactory.test_regular_test):
-        (TestPerfTestFactory.test_inspector_test):
-        (TestPerfTestFactory.test_page_loading_test):
-        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
-        (PerfTestsRunner):
-        (PerfTestsRunner._parse_args): Added --replay flag to enable replay tests.
-        (PerfTestsRunner._collect_tests): Collect .replay files when replay tests are enabled.
-        (PerfTestsRunner._collect_tests._is_test_file):
-        (PerfTestsRunner.run): Exit early if one of calls to prepare() fails.
-        * Scripts/webkitpy/performance_tests/perftestsrunner_unittest.py:
-        (create_runner):
-        (run_test):
-        (_tests_for_runner):
-        (test_run_test_set):
-        (test_run_test_set_kills_drt_per_run):
-        (test_run_test_pause_before_testing):
-        (test_run_test_set_for_parser_tests):
-        (test_run_test_set_with_json_output):
-        (test_run_test_set_with_json_source):
-        (test_run_test_set_with_multiple_repositories):
-        (test_run_with_upload_json):
-        (test_upload_json):
-        (test_upload_json.MockFileUploader.upload_single_text_file):
-        (_add_file):
-        (test_collect_tests):
-        (test_collect_tests_with_multile_files):
-        (test_collect_tests_with_multile_files.add_file):
-        (test_collect_tests_with_skipped_list):
-        (test_collect_tests_with_page_load_svg):
-        (test_collect_tests_should_ignore_replay_tests_by_default):
-        (test_collect_tests_with_replay_tests):
-        (test_parse_args):
-        * Scripts/webkitpy/thirdparty/__init__.py: Added the dependency for web-page-replay version 1.1.1.
-        (AutoinstallImportHook.find_module):
-        (AutoinstallImportHook._install_webpagereplay):
-
-2012-05-31  Yaron Friedman  <yfriedman@chromium.org>
-
-        Support building the Android port of chromium with Ninja
-        https://bugs.webkit.org/show_bug.cgi?id=87545
-
-        Reviewed by Adam Barth.
-
-        Ensures that shared libraries are looked up in a generator-agnostic
-        way and that output is placed in the correct directory.
-
-        Depends on http://codereview.chromium.org/10386188/
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-
-2012-05-31  Ryosuke Niwa  <rniwa@webkit.org>
-
-        [Chromium] Chromium DRT should be able to load external resources
-        https://bugs.webkit.org/show_bug.cgi?id=87893
-
-        Reviewed by Dirk Pranke.
-
-        Allow external resources to be loaded when the main frame's URL is also an external resource.
-        This change is analogous to r118231 for Mac port.
-
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (blockRequest):
-        (isLocalhost):
-        (hostIsUsedBySomeTestsToGenerateError):
-        (WebViewHost::willSendRequest):
-
-2012-05-31  Anders Carlsson  <andersca@apple.com>
-
-        Build fixes.
-
-        Disable the C++11 extensions warning.
-
-        * DumpRenderTree/mac/Configurations/Base.xcconfig:
-        * TestWebKitAPI/Configurations/Base.xcconfig:
-        * WebKitTestRunner/Configurations/Base.xcconfig:
-
-2012-05-31  Alexey Proskuryakov  <ap@apple.com>
-
-        [WK2] window.internals settings are not reset between tests
-        https://bugs.webkit.org/show_bug.cgi?id=87783
-
-        Reviewed by Mihai Parparita.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
-        (WTR::InjectedBundle::done): Call resetAfterTest().
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:
-        (WTR::InjectedBundlePage::prepare): Renamed from "reset" for clarity.
-        (WTR::InjectedBundlePage::resetAfterTest): Added a function that resets internals.
-        This needs to be done after a tets, because the code assumes that there is an object
-        with this name in global scope.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h:
-
-2012-05-31  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL][DRT] EFL's DRT navigation_policy_decision implementation
-        https://bugs.webkit.org/show_bug.cgi?id=85006
-
-        Reviewed by Tor Arne Vestbø.
-
-        Added navigation_policy_decision implementation for DumpRenderTreeView.
-        Added LayoutTestController::setCustomPolicyDelegate implementation.
-        Modified LayoutTestController::waitForPolicyDelegate.
-
-        * DumpRenderTree/efl/DumpRenderTree.cpp:
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        * DumpRenderTree/efl/DumpRenderTreeEfl.h:
-        * DumpRenderTree/efl/DumpRenderTreeView.cpp:
-        (navigationTypeToString): aux function
-        (onNavigationPolicyDecision): navigation_policy_decision implementation
-        (drtViewAdd):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setCustomPolicyDelegate):
-        (LayoutTestController::waitForPolicyDelegate):
-
-2012-05-31  Jussi Kukkonen  <jussi.kukkonen@intel.com>
-
-        [EFL][DRT] LayoutTestController does not implement clearApplicationCacheForOrigin
-        https://bugs.webkit.org/show_bug.cgi?id=86195
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Implement clearApplicationCacheForOrigin in EFL
-        LayoutTestController.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::clearApplicationCacheForOrigin):
-
-2012-05-31  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Simplify QT_VERSION_CHECKS for Qt5 by introducing HAVE(QT5)
-        https://bugs.webkit.org/show_bug.cgi?id=87955
-
-        Reviewed by Simon Hausmann.
-
-        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
-        * DumpRenderTree/qt/EventSenderQt.cpp:
-        * DumpRenderTree/qt/QtInitializeTestFonts.cpp:
-        * DumpRenderTree/qt/main.cpp:
-        * QtTestBrowser/cookiejar.cpp:
-        * QtTestBrowser/launcherwindow.cpp:
-        * WebKitTestRunner/InjectedBundle/qt/LayoutTestControllerQt.cpp:
-        * qmake/mkspecs/features/default_post.prf:
-
-2012-05-31  Zoltan Horvath  <zoltan@webkit.org>
-
-        [Qt] Don't enforce the version of libpng for the config test when passing the option to the linker
-
-        Rubber-stamped by Kenneth Rohde Christiansen.
-
-        * qmake/config.tests/libpng/libpng.pro:
-
-2012-05-30  Peter Beverloo  <peter@chromium.org>
-
-        [Chromium] Automatically install 64-bit linker for Android
-        https://bugs.webkit.org/show_bug.cgi?id=79780
-
-        Reviewed by Adam Barth.
-
-        Change the update-webkit-chromium script to check whether the 64-bit
-        linker needs to be installed as part of the update process. The actual
-        code for doing these checks and "installing" it has been added to the
-        webkitdirs.pm script.
-
-        The linker itself is part of the third_party/aosp repository, which
-        will be pulled in through the DEPS change.
-
-        * Scripts/update-webkit-chromium:
-        * Scripts/webkitdirs.pm:
-        (chromiumInstall64BitAndroidLinkerIfNeeded):
-        (chromiumReplaceAndroidLinkerIfNeeded):
-
-2012-05-30  Stephanie Lewis  <slewis@apple.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=87803
-        Layout tests often fail trying to stat nonexistent logs 
-
-        Reviewed by Dirk Pranke.
-
-        CrashReporter removes logs using a heuristic to conserve space.  Wrap a 
-        try/catch block around accessing the logs as a precaution.
-
-        * Scripts/webkitpy/common/system/crashlogs.py:
-        (CrashLogs._find_newest_log_darwin):
-
-2012-05-30  Gavin Peters  <gavinp@chromium.org>
-
-        Add a LayoutTest for prerender remove after stop.
-        https://bugs.webkit.org/show_bug.cgi?id=87860
-
-        These very boring mocks in DumpRenderTree mean that the basic Prerendering API
-        can be tested by LayoutTests now.
-
-        Reviewed by Adam Barth.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/MockWebPrerenderingSupport.cpp: Added.
-        (MockWebPrerenderingSupport::MockWebPrerenderingSupport):
-        (MockWebPrerenderingSupport::~MockWebPrerenderingSupport):
-        (MockWebPrerenderingSupport::add):
-        (MockWebPrerenderingSupport::cancel):
-        (MockWebPrerenderingSupport::abandon):
-        * DumpRenderTree/chromium/MockWebPrerenderingSupport.h: Added.
-        (MockWebPrerenderingSupport):
-        * DumpRenderTree/chromium/TestShell.cpp:
-        (TestShell::initialize):
-        * DumpRenderTree/chromium/TestShell.h:
-        (TestShell):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::willAddPrerender):
-        (WebViewHost::setWebWidget):
-        * DumpRenderTree/chromium/WebViewHost.h:
-        (WebViewHost):
-
-2012-05-30  Stephanie Lewis  <slewis@apple.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=87717
-        Unresponsive WebProcesses can be mistaken for WebProcess crashes.
-
-        Reviewed by Dirk Pranke.
-
-        Change the error message from #CRASHED to #UNRESPONSIVE PROCESS
-        If there isn't a crash log found for the process add a message saying
-        the process was unresponsive.
-
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver.__init__):
-        (WebKitDriver._check_for_driver_crash):
-        (WebKitDriver.run_test):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (WebKitDriverTest.test_check_for_driver_crash.assert_crash):
-        (WebKitDriverTest):
-        (WebKitDriverTest.test_check_for_driver_crash):
-        * WebKitTestRunner/TestController.cpp:
-        (WTR):
-        (WTR::TestController::runTest):
-
-2012-05-30  Stephanie Lewis  <slewis@apple.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=87714
-        Mac crash logs can take a really long time to be written out.
-
-        Reviewed by Dirk Pranke.
-
-        Make a second pass looking for crash logs after the tests have completed running.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (use_trac_links_in_results_html):
-        (Manager.run):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.repository_paths):
-        (Port.look_for_new_crash_logs):
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.look_for_new_crash_logs):
-        * Scripts/webkitpy/layout_tests/port/mac_unittest.py:
-        (test_get_crash_log):
-        (test_look_for_new_crash_logs):
-        (test_look_for_new_crash_logs.fake_time_cb):
-
-2012-05-30  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Fix 2.9 issues with c_str() type by using the wx fprintf wrapper.
-
-        * DumpRenderTree/wx/DumpRenderTreeWx.cpp:
-        (LayoutWebViewEventHandler::OnAlertEvent):
-        (LayoutWebViewEventHandler::OnConfirmEvent):
-        (LayoutWebViewEventHandler):
-        (LayoutWebViewEventHandler::OnPromptEvent):
-        (LayoutWebViewEventHandler::OnConsoleMessageEvent):
-        (LayoutWebViewEventHandler::OnReceivedTitleEvent):
-
-2012-05-30  Ojan Vafai  <ojan@chromium.org>
-
-        Only give lint errors for -expected.png png files that lack a checksum
-        https://bugs.webkit.org/show_bug.cgi?id=87875
-
-        Reviewed by Tony Chang.
-
-        We have other pngs in the tree, e.g. for the inspector, that legitimately
-        lack a checksum.
-
-        * Scripts/webkitpy/style/checkers/png.py:
-        (PNGChecker.check):
-        * Scripts/webkitpy/style/checkers/png_unittest.py:
-        (PNGCheckerTest.test_check):
-
-2012-05-30  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: seems to leak temp dirs
-        https://bugs.webkit.org/show_bug.cgi?id=87795
-
-        Reviewed by Ojan Vafai.
-
-        There appears to be a bug where the chromium bots are creating
-        temporary directories and not cleaning them up that started
-        after the switch to WebKitDriver. It's possible that __del__
-        wasn't getting called in a timely manner (or at all), and it's
-        generally bad style to rely on __del__ being called, so this
-        code changes things so that we create a temp dir in
-        driver.start() and remove it in driver.stop(). We could be
-        paranoid and leave the __del__ code in, but there doesn't seem
-        to be much advantage to it. If there are bugs that result in
-        drivers being started but not stopped, we have other problems.
-
-        * Scripts/webkitpy/common/system/filesystem_mock.py:
-        (MockFileSystem.__init__):
-        (MockFileSystem._mktemp):
-        (MockFileSystem.mkdtemp):
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitDriver.__init__):
-        (WebKitDriver._start):
-        (WebKitDriver.stop):
-        * Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
-        (WebKitDriverTest.test_check_for_driver_crash):
-        (WebKitDriverTest):
-        (WebKitDriverTest.test_creating_a_port_does_not_write_to_the_filesystem):
-        (WebKitDriverTest.test_stop_cleans_up_properly):
-
-2012-05-30  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] EFL's DRT should print the number of MessagePorts for new each new intent
-        https://bugs.webkit.org/show_bug.cgi?id=86841
-
-        Reviewed by Adam Barth.
-
-        Print the number of MessagePorts for each new intent in EFL's DRT.
-        This output is expected by several Web Intents test cases.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::onFrameIntentNew):
-
-2012-05-30  Kevin Ollivier  <kevino@theolliviers.com>
-
-        [wx] Unreviewed build fix after removal of setJavaScriptProfilingEnabled.
-
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-
-2012-05-30  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Ewk_Intent_Request's postResult/postFailure should take serialized script values in argument
-        https://bugs.webkit.org/show_bug.cgi?id=87829
-
-        Reviewed by Adam Barth.
-
-        EFL's LayoutTestController now makes uses of the new helper method in
-        DumpRenderTreeSupportEfl in order to send the intent response. This is
-        now needed because the Ewk_Intent_Request postResult / postFailure
-        methods were made private.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::sendWebIntentResponse):
-
-2012-05-30  Xueqing Huang  <huangxueqing@baidu.com>
-
-        eventSender.beginDragWithFiles should be implemented in Windows, which blocked drag and drop related tests.
-        https://bugs.webkit.org/show_bug.cgi?id=86296
-
-        Reviewed by Tony Chang.
-
-        * DumpRenderTree/win/DRTDataObject.cpp: Added.
-        (cfHDropFormat):
-        (cfFileNameWFormat):
-        (cfUrlWFormat):
-        (WCEnumFormatEtc):
-        (WCEnumFormatEtc::WCEnumFormatEtc):
-        (WCEnumFormatEtc::QueryInterface):
-        (WCEnumFormatEtc::AddRef):
-        (WCEnumFormatEtc::Release):
-        (WCEnumFormatEtc::Next):
-        (WCEnumFormatEtc::Skip):
-        (WCEnumFormatEtc::Reset):
-        (WCEnumFormatEtc::Clone):
-        (DRTDataObject::createInstance):
-        (DRTDataObject::DRTDataObject):
-        (DRTDataObject::~DRTDataObject):
-        (DRTDataObject::QueryInterface):
-        (DRTDataObject::AddRef):
-        (DRTDataObject::Release):
-        (DRTDataObject::GetData):
-        (DRTDataObject::GetDataHere):
-        (DRTDataObject::QueryGetData):
-        (DRTDataObject::GetCanonicalFormatEtc):
-        (DRTDataObject::SetData):
-        (DRTDataObject::CopyMedium):
-        (DRTDataObject::EnumFormatEtc):
-        (DRTDataObject::DAdvise):
-        (DRTDataObject::DUnadvise):
-        (DRTDataObject::EnumDAdvise):
-        (DRTDataObject::clearData):
-        * DumpRenderTree/win/DRTDataObject.h: Added.
-        (DRTDataObject):
-        * DumpRenderTree/win/DRTDropSource.cpp: Added.
-        (DRTDropSource::DRTDropSource):
-        (DRTDropSource::~DRTDropSource):
-        (DRTDropSource::QueryInterface):
-        (DRTDropSource::AddRef):
-        (DRTDropSource::Release):
-        (DRTDropSource::createInstance):
-        (DRTDropSource::QueryContinueDrag):
-        (DRTDropSource::GiveFeedback):
-        * DumpRenderTree/win/DRTDropSource.h: Added.
-        (DRTDropSource):
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/EventSender.cpp:
-        (beginDragWithFilesCallback):
-
-2012-05-30  Marcelo Lira  <marcelo.lira@openbossa.org>
-
-        WebKit2: Implement layoutTestController.setPluginsEnabled() in WebKitTestRunner.
-        https://bugs.webkit.org/show_bug.cgi?id=58593
-
-        Adds the ability to change the pluginsEnabled flag in WebCore::Settings
-        to WebKitTestRunner's LayoutTestController. The flag is modified via the
-        public C API of the WebProcess.
-
-        Reviewed by Darin Adler.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::setPluginsEnabled): Just calls the
-        WKBundleSetPluginsEnabled function in the public C API of WebProcess.
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2012-05-30  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL][DRT] http/tests/navigation/new-window-redirect-history.html does not pass
-        https://bugs.webkit.org/show_bug.cgi?id=87848
-
-        Reviewed by Csaba Osztrogonác.
-
-        The reason was that DumpRenderTreeChrome::extraViews() returned copy of the vector
-        and dumpBackForwardListForWebViews() used iterators belonging actually to different vectors
-        (browser->extraViews().begin() and browser->extraViews().end()) as if they had belonged to the same vector.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::extraViews):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.h:
-        (DumpRenderTreeChrome):
-
-2012-05-30  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL][DRT] EFL's DRT needs "postProgressFinishedNotification" message
-        https://bugs.webkit.org/show_bug.cgi?id=87833
-
-        Reviewed by Tor Arne Vestbø.
-
-        Print "postProgressFinishedNotification" message if frame load finished 
-        to unskip http/tests/loading/progress-finished-callback.html.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::onFrameLoadFinished):
-
-2012-05-30  Mariusz Grzegorczyk  <mariusz.g@samsung.com>, Ryuan Choi  <ryuan.choi@samsung.com>
-
-        [EFL][WK2] Fix WebKit2-EFL build
-        https://bugs.webkit.org/show_bug.cgi?id=83693
-
-        Reviewed by Carlos Garcia Campos.
-
-        * CMakeLists.txt:  Guard Webkit1 related codes with ENABLE_WEBKIT.
-
-2012-05-29  János Badics  <jbadics@inf.u-szeged.hu>
-
-        [Qt] Modified ORWT and NRWT to check for test expectations in platform/qt-5.0-wk1 too
-        (They only used to check for Skipped in platform/qt-5.0-wk1)
-        https://bugs.webkit.org/show_bug.cgi?id=87376
-
-        Reviewed by Csaba Osztrogonác.
-
-        * Scripts/old-run-webkit-tests:
-        (buildPlatformResultHierarchy):
-        * Scripts/webkitpy/layout_tests/port/qt.py:
-        (QtPort.baseline_search_path):
-
-2012-05-29  Ojan Vafai  <ojan@chromium.org>
-
-        Add a linter error for pngs that lack an embedded checksum
-        https://bugs.webkit.org/show_bug.cgi?id=87793
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/read-checksum-from-png:
-        * Scripts/webkitpy/common/read_checksum_from_png.py: Renamed from Tools/Scripts/webkitpy/layout_tests/read_checksum_from_png.py.
-        (read_checksum):
-        * Scripts/webkitpy/common/read_checksum_from_png_unittest.py: Renamed from Tools/Scripts/webkitpy/layout_tests/read_checksum_from_png_unittest.py.
-        (ReadChecksumFromPngTest):
-        (ReadChecksumFromPngTest.test_read_checksum):
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        * Scripts/webkitpy/style/checkers/png.py:
-        (PNGChecker.check):
-        * Scripts/webkitpy/style/checkers/png_unittest.py:
-        (PNGCheckerTest.test_check):
-
-2012-05-29  Stephanie Lewis  <slewis@apple.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=87720
-        WebProcess is often killed due to being unresponsive on the bots
-
-        Reviewed by Alexey Proskuryakov.
-
-        Blind attempt to improve flakiness on the bots by reducing the number
-        of crashes due to an unresponsive process.  This helped on my personal machine
-        under stress conditions.  I don't have enough cores to hit the problem
-        under normal conditions.
-
-        * WebKitTestRunner/TestController.cpp:
-        (WTR):
-
-2012-05-29  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: rename 'rm' to 'delete' in rebaseline scm output
-        https://bugs.webkit.org/show_bug.cgi?id=87779
-
-        Reviewed by Eric Seidel.
-
-        Update output to match the names in scm.py as per
-        https://bugs.webkit.org/show_bug.cgi?id=87451#c26 .
-
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (RebaselineTest.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (test_rebaseline_test_and_print_scm_changes):
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-        (GardeningServerTest.test_rebaselineall):
-
-2012-05-29  Stephanie Lewis  <slewis@apple.com>
-
-        https://bugs.webkit.org/show_bug.cgi?id=87711
-
-        Reviewed by Jessie Berlin.
-
-        Remove Snowleopard testers so the hardware can be repurposed.  The lion bots
-        are better maintained.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-05-29  Dirk Pranke  <dpranke@chromium.org>
-
-        webkit-patch optimize-baselines should add/delete files in batches from the vcs
-        https://bugs.webkit.org/show_bug.cgi?id=87538
-
-        Reviewed by Ojan Vafai.
-
-        Invoking git and svn on one file at a time is kinda slow. We
-        should batch the add and rm operations together.
-
-        * Scripts/webkitpy/common/checkout/baselineoptimizer.py:
-        (BaselineOptimizer._move_baselines):
-
-2012-05-29  Dirk Pranke  <dpranke@chromium.org>
-
-        garden-o-matic should rebaseline baselines in parallel
-        https://bugs.webkit.org/show_bug.cgi?id=87451
-
-        Reviewed by Ojan Vafai.
-                                                                               
-        This modifies garden-o-matic so that we will fetch all                  
-        of the baselines in parallel from the bots, and then                    
-        optimize the baselines serially (since that should be fairly            
-        quick and we get into trouble if we optimize in parallel due            
-        to concurrent access to the source control system).                     
-
-        This change adds a flag to webkit-patch rebaseline-test (--print-scm-changes)
-        so that the files that need to be modified in the SCM are returned to 
-        garden-o-matic rather than actually added or removed. This is done so that
-        we can run multiple rebaseline-tests in parallel (we can't modify the SCM
-        concurrently). In order to safely return the files (as a JSON dict) I
-        needed to shift all of the logging in rebaseline-test to use the logging
-        module (and hence log to stderr).
-
-        I also had to stub out a line in chromium.py that would get confused if
-        the skia overrides file didn't exist in a mock checkout.
-
-        * Scripts/webkitpy/common/system/executive.py:
-        (Executive.popen):
-        (Executive):
-        (Executive.run_in_parallel):
-        (_run_command_thunk):
-        * Scripts/webkitpy/common/system/executive_mock.py:
-        (MockExecutive.run_in_parallel):
-        * Scripts/webkitpy/common/system/executive_unittest.py:
-        (ExecutiveTest.test_run_in_parallel):
-        * Scripts/webkitpy/layout_tests/port/chromium.py:
-        (ChromiumPort._expectations_file_contents):
-        * Scripts/webkitpy/tool/commands/rebaseline.py:
-        (AbstractRebaseliningCommand.__init__):
-        (RebaselineTest.__init__):
-        (RebaselineTest._copy_existing_baseline):
-        (RebaselineTest._save_baseline):
-        (RebaselineTest):
-        (RebaselineTest._add_to_scm):
-        (RebaselineTest._rebaseline_test):
-        (RebaselineTest.execute):
-        (RebaselineExpectations._rebaseline_port):
-        (RebaselineExpectations.execute):
-        (Rebaseline._builder_to_pull_from):
-        (Rebaseline.execute):
-        * Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
-        (test_rebaseline_updates_expectations_file):
-        (test_rebaseline_test):
-        (test_rebaseline_test_and_print_scm_changes):
-        (test_rebaseline_and_copy_test):
-        (test_rebaseline_and_copy_test_no_existing_result):
-        (test_rebaseline_and_copy_test_with_lion_result):
-        (test_rebaseline_and_copy_no_overwrite_test):
-        (test_rebaseline_expectations):
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        (GardeningHTTPRequestHandler._rebaseline_commands):
-        (GardeningHTTPRequestHandler):
-        (GardeningHTTPRequestHandler._files_to_add):
-        (GardeningHTTPRequestHandler._optimize_baselines):
-        (GardeningHTTPRequestHandler.rebaselineall):
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-        (GardeningServerTest._post_to_path):
-        (GardeningServerTest.test_rebaselineall):
-        (GardeningServerTest.test_rebaselineall.run_command):
-
-2012-05-29  Benjamin Poulain  <bpoulain@apple.com>
-
-        Fix the type of dispatch_time() offset
-
-        Rubber-stamped by Joseph Pecoraro.
-
-        In r118631, I erroneously used the type NSTimeInterval for the delta of dispatch_time().
-
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate webView:didStartProvisionalLoadForFrame:]):
-
-2012-05-29  Arvid Nilsson  <anilsson@rim.com>
-
-        2012-05-29  Arvid Nilsson  <anilsson@rim.com>
-
-        [BlackBerry] OpenGL content is not rendered on simulator
-        https://bugs.webkit.org/show_bug.cgi?id=87721
-
-        Reviewed by George Staikos.
-
-        Fixed by enabling GLES2 support in simulator builds.
-
-        To experiment with building without OpenGL support, you can set the
-        DISABLE_GLES2 environment variable to a non-empty string and rebuild.
-
-        PR #150695
-
-        * Scripts/webkitdirs.pm:
-        (blackberryCMakeArguments):
-
-2012-05-29  David Barr  <davidbarr@chromium.org>
-
-        Introduce ENABLE_CSS_IMAGE_RESOLUTION compile flag
-        https://bugs.webkit.org/show_bug.cgi?id=87685
-
-        Reviewed by Eric Seidel.
-
-        Add a configuration option for CSS image-resolution support, disabling it by default.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2012-05-29  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Don't add cxx-flags to QMAKE_CFLAGS
-
-        Prevents warnings such as: "command line option ‘-Wno-c++0x-compat’ is
-            valid for C++/ObjC++ but not for C [enabled by default]"
-
-        Reviewed by Simon Hausmann.
-
-        * qmake/mkspecs/features/unix/default_post.prf:
-
-2012-05-29  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Sync up favicon-implementation with WebView url changes in r118158
-
-        https://bugs.webkit.org/show_bug.cgi?id=87133
-
-        We now base64-encode the page url in the image-provider url, so that any
-        normalization done by QUrl will not mess up the page-url. The logic of
-        creating and parsing the provider-url has been moved into the image
-        provider, to keep it in one place.
-
-        We were also releasing icons (even ones we hadn't retained), which we can't
-        do since we don't know when the icon url is no longer in use.
-
-        Reviewed-by Simon Hausmann.
-
-        * MiniBrowser/qt/icons/favicon.png:
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-
-2012-05-29  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL] Refactoring. Get rid of unnecessary singleCharacterString() function
-        https://bugs.webkit.org/show_bug.cgi?id=87654
-
-        Reviewed by Csaba Osztrogonác.
-
-        Event sender provides strings for all the key events.
-        Also KeyEventInfo constructor parameters order was changed to simplify the case when
-        a key event has empty string.
-
-        * DumpRenderTree/efl/EventSender.cpp:
-        (KeyEventInfo::KeyEventInfo):
-        (keyPadNameFromJSValue):
-        (keyNameFromJSValue):
-
-2012-05-23  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Cancel potential url-edit when going back/forward
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-
-2012-05-29  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] Compilation warning in DumpRenderTreeView.cpp
-        https://bugs.webkit.org/show_bug.cgi?id=87636
-
-        Reviewed by Filip Pizlo.
-
-        Fix compilation error in DumpRenderTreeView.cpp due to wrong format
-        specifier in printf. Also fix the return type for
-        onExceededApplicationCacheQuota callback.
-
-        * DumpRenderTree/efl/DumpRenderTreeView.cpp:
-        (onExceededApplicationCacheQuota):
-
-2012-05-29  Hironori Bono  <hbono@chromium.org>
-
-        Adding Hironori Bono to committers.py.
-        https://bugs.webkit.org/show_bug.cgi?id=87697
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-05-28  Jonathan Dong  <jonathan.dong@torchmobile.com.cn>
-
-        [BlackBerry] http authenticate dialog popup only once no matter authentication pass or fail
-        https://bugs.webkit.org/show_bug.cgi?id=80135
-
-        Reviewed by Rob Buis.
-
-        Implemented interface function didReceiveAuthenticationChallenge in class
-        DumpRenderTree.
-
-        Resubmit the patch reverted by r115104 after the digest infinite loop
-        issue for BlackBerry porting get identified and fixed.
-
-        Internally reviewed by Joe Mason <jmason@rim.com>
-
-        * DumpRenderTree/blackberry/DumpRenderTree.cpp:
-        (drtCredentialDescription):
-        (BlackBerry::WebKit::DumpRenderTree::didReceiveAuthenticationChallenge):
-        (WebKit):
-        * DumpRenderTree/blackberry/DumpRenderTreeBlackBerry.h:
-        (WebCore):
-        (DumpRenderTree):
-
-2012-05-25  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
-
-        WebKitTestRunner needs to support layoutTestController.setJavaScriptProfilingEnabled
-        https://bugs.webkit.org/show_bug.cgi?id=42328
-
-        Reviewed by Eric Seidel.
-
-        Removed unneeded setJavaScriptProfilingEnabled function from DRT after its
-        move to windows.internals.settings.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
-        * DumpRenderTree/chromium/DRTDevToolsAgent.cpp:
-        * DumpRenderTree/chromium/DRTDevToolsAgent.h:
-        (DRTDevToolsAgent):
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        * DumpRenderTree/chromium/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        * DumpRenderTree/mac/DumpRenderTree.mm:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
-        * DumpRenderTree/qt/LayoutTestControllerQt.h:
-        (LayoutTestController):
-        * DumpRenderTree/win/DumpRenderTree.cpp:
-        (resetWebViewToConsistentStateBeforeTesting):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-        (LayoutTestController):
-
-2012-05-28  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Move allowRoundingHacks to Internals interface
-        https://bugs.webkit.org/show_bug.cgi?id=87328
-
-        Reviewed by Hajime Morita.
-
-        Remove allowRoundingHacks functions, because it is able to work in the
-        cross-port way through the Internals interface.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-
-2012-05-28  Luke Macpherson  <macpherson@chromium.org>
-
-        Fix mac build with older XCode by defining NSEC_PER_MSEC.
-        https://bugs.webkit.org/show_bug.cgi?id=87616
-
-        Reviewed by Hajime Morita.
-
-        The following patch introduced the use of NSEC_PER_MSEC which is not defined for older XCode versions.
-        http://trac.webkit.org/changeset/118631/trunk/Tools/DumpRenderTree/mac/FrameLoadDelegate.mm
-        Patch just adds a #ifndef / #define check.
-
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate webView:didStartProvisionalLoadForFrame:]):
-
-2012-05-27  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] Enable blob support for the EFL port
-        https://bugs.webkit.org/show_bug.cgi?id=85363
-
-        Reviewed by Hajime Morita.
-
-        Enable Blob support by default for the EFL port.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-05-27  Benjamin Poulain  <bpoulain@apple.com>
-
-        When pages are loaded from AppCache with DeferredLoading, willSendRequest() is never called
-        https://bugs.webkit.org/show_bug.cgi?id=87582
-
-        Reviewed by Darin Adler.
-
-        Extend DumpRenderTree to support loading the main resource deferred with a delay. This makes it
-        possible to test pages in a similar way as they are loaded in Browsers.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (LayoutTestController::LayoutTestController):
-        (setUseDeferredFrameLoadingCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController::useDeferredFrameLoading):
-        (LayoutTestController::setUseDeferredFrameLoading):
-        (LayoutTestController):
-        * DumpRenderTree/mac/FrameLoadDelegate.mm:
-        (-[FrameLoadDelegate webView:didStartProvisionalLoadForFrame:]):
-
-2012-05-27  David Barton  <dbarton@mathscribe.com>
-
-        [watchlist] Improve MathML rule
-        https://bugs.webkit.org/show_bug.cgi?id=87592
-
-        Reviewed by Adam Barth.
-
-        The old rule "filename": r".*mathml" works fine because "filename" is a prefix match,
-        but if this changed the rule would be slow. We protect against this, clarify the rule,
-        and make it more similar to existing rules.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-05-27  David Barton  <dbarton@mathscribe.com>
-
-        [watchlist] Add myself & a rule for MathML
-        https://bugs.webkit.org/show_bug.cgi?id=87586
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-05-26  David Kilzer  <ddkilzer@apple.com>
-
-        Use xcrun to find path to nm for Mac port
-        <http://webkit.org/b/87588>
-
-        Reviewed by Dan Bernstein.
-
-        * Scripts/webkitpy/layout_tests/port/mac.py:
-        (MacPort.nm_command): Add. Tries to find a path for the nm
-        command using xcrun.  Falls back to returning 'nm'.
-        * Scripts/webkitpy/layout_tests/port/webkit.py:
-        (WebKitPort.nm_command): Add. Returns 'nm'.
-        (WebKitPort._webcore_symbols_string): Call self.nm_command().
-
-2012-05-25  Lynn Neir  <lynn.neir@skype.net>
-
-        Added windows implementation in DRT for TextInputController, https://bugs.webkit.org/show_bug.cgi?id=32021
-
-        Reviewed by Eric Seidel.
-
-        * DumpRenderTree/win/DumpRenderTree.vcproj:
-        * DumpRenderTree/win/FrameLoadDelegate.cpp:
-        (FrameLoadDelegate::FrameLoadDelegate):
-        (FrameLoadDelegate::didClearWindowObjectForFrameInStandardWorld):
-        * DumpRenderTree/win/FrameLoadDelegate.h:
-        (FrameLoadDelegate):
-        * DumpRenderTree/win/TextInputController.cpp: Added.
-        (setMarkedTextCallback):
-        (hasMarkedTextCallback):
-        (unmarkTextCallback):
-        (markedRangeCallback):
-        (insertTextCallback):
-        (firstRectForCharacterRangeCallback):
-        (selectedRangeCallback):
-        (TextInputController::makeWindowObject):
-        (TextInputController::getJSClass):
-        (TextInputController::staticValues):
-        (TextInputController::staticFunctions):
-        * DumpRenderTree/win/TextInputController.h: Added.
-        (TextInputController):
-        * DumpRenderTree/win/TextInputControllerWin.cpp: Added.
-        (TextInputController::setMarkedText):
-        (TextInputController::hasMarkedText):
-        (TextInputController::unmarkText):
-        (TextInputController::markedRange):
-        (TextInputController::insertText):
-        (TextInputController::firstRectForCharacterRange):
-        (TextInputController::selectedRange):
-
-2012-05-25  Dirk Pranke  <dpranke@chromium.org>
-
-        webkitpy: change scm.add(), scm.delete() to accept multiple paths
-        https://bugs.webkit.org/show_bug.cgi?id=87528
-
-        Reviewed by Ojan Vafai.
-
-        launching git or svn for individual files can be slow; this
-        change will hand multiple paths at once to git and svn so they
-        can be added in a batch.
-
-        * Scripts/webkitpy/common/checkout/scm/git.py:
-        (Git.add_list):
-        (Git.delete_list):
-        * Scripts/webkitpy/common/checkout/scm/scm.py:
-        (SCM.add):
-        (SCM):
-        (SCM.add_list):
-        (SCM.delete):
-        (SCM.delete_list):
-        * Scripts/webkitpy/common/checkout/scm/scm_mock.py:
-        (MockSCM.add):
-        (MockSCM):
-        (MockSCM.add_list):
-        (MockSCM.delete):
-        (MockSCM.delete_list):
-        * Scripts/webkitpy/common/checkout/scm/scm_unittest.py:
-        (_shared_test_exists):
-        (_shared_test_added_files):
-        (_test_delete_list):
-        * Scripts/webkitpy/common/checkout/scm/svn.py:
-        (SVN.add_list):
-        (SVN.delete_list):
-
-2012-05-25  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [NRWT] Add unit testing for perf tests on locked shards
-        https://bugs.webkit.org/show_bug.cgi?id=87489
-
-        Reviewed by Dirk Pranke.
-
-        Adding utests that makes sure that perf tests are running in locked
-        shards and by passing --no-http won't break NRWT (r118421).
-
-        * Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:
-        (ShardingTests):
-        (ShardingTests.test_shard_by_dir):
-        (ShardingTests.test_shard_every_file):
-        (ShardingTests.test_shard_in_two):
-        (ShardingTests.test_multiple_locked_shards):
-        (LockCheckingManager):
-        (LockCheckingManager.__init__):
-        (LockCheckingManager.handle_finished_list):
-        (ManagerTest.test_http_locking):
-        (ManagerTest):
-        (ManagerTest.test_perf_locking):
-        * Scripts/webkitpy/layout_tests/port/test.py:
-
-2012-05-25  Jessie Berlin  <jberlin@apple.com>
-
-        [Win] fast/events/keydown-leftright-keys.html failing since introduction in r118001
-        https://bugs.webkit.org/show_bug.cgi?id=87511
-
-        Reviewed by Alexey Proskuryakov.
-
-        Update the Windows implementation of keyDown to match the Mac one changed in r118001.
-
-        * DumpRenderTree/win/EventSender.cpp:
-        (keyDownCallback):
-
-2012-05-25  Ken Buchanan  <kenrb@chromium.org>
-
-        Adding Ken Buchanan to committers.py
-        https://bugs.webkit.org/show_bug.cgi?id=87443
-
-        Unreviewed.
-
-        Adding self to committers.py as a Committer.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-05-25  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Buildfix for newer Qt5
-        https://bugs.webkit.org/show_bug.cgi?id=87257
-
-        Reviewed by Simon Hausmann.
-
-        * MiniBrowser/qt/MiniBrowserApplication.h: QtDeclarative -> QtQml renaming.
-
-2012-05-25  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Unreviewed fix after r118484.
-
-        Enable CSS_EXCLUSIONS and CSS_REGIONS.
-        They were enabled uncoditinally before r118484.
-
-        * qmake/mkspecs/features/features.pri:
-
-2012-05-24  Tim Horton  <timothy_horton@apple.com>
-
-        Add feature defines for web-facing parts of CSS Regions and Exclusions
-        https://bugs.webkit.org/show_bug.cgi?id=87442
-        <rdar://problem/10887709>
-
-        Reviewed by Dan Bernstein.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-05-24  Hironori Bono  <hbono@chromium.org>
-
-        Enable grammar checking on Chromium when we paste text (Take 2)
-        https://bugs.webkit.org/show_bug.cgi?id=74393
-
-        Reviewed by Ryosuke Niwa.
-
-        This change enables grammar checking on Chromium and implements a mock grammar
-        checker to fix a failing test.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/MockGrammarCheck.cpp: Added.
-        (MockGrammarCheck::checkGrammarOfString):
-        * DumpRenderTree/chromium/MockGrammarCheck.h: Added.
-        (WebKit):
-        (MockGrammarCheck):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::finishLastTextCheck): Call MockGrammarCheck::checkGrammarOfString to check grammatical errors.
-
-2012-05-24  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] [DRT] Add support for WebKitOfflineWebApplicationCacheEnabled preference
-        https://bugs.webkit.org/show_bug.cgi?id=86842
-
-        Reviewed by Antonio Gomes.
-
-        Add support for overriding the application cache support preference
-        through EFL's LayoutTestController.
-
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::overridePreference):
-
-2012-05-24  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
-
-        [EFL] Remove unnecessary extra call to set developer extras setting on the test startup
-        https://bugs.webkit.org/show_bug.cgi?id=85209
-
-        Reviewed by Antonio Gomes.
-
-        Set developer extras setting called twice on the test startup. Hence, removing
-        an unnecessary extra call which set wrong value. 
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-
-2012-05-24  Dirk Pranke  <dpranke@chromium.org>
-
-        garden-o-matic should not fetch from debug bots if it also knows about the release bots
-        https://bugs.webkit.org/show_bug.cgi?id=86916
-
-        Reviewed by Adam Barth.
-
-        Note that if release and debug are failing differently, debug
-        will be ignored ...
-
-        Note: also change the use of a fake port name from
-        "mock-port-name" to "test-mac-leopard" to make it more friendly
-        to the port factory ("mock" actually is a real port).
-
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        (GardeningHTTPRequestHandler._builders_to_fetch_from):
-        (GardeningHTTPRequestHandler.rebaselineall):
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-        (GardeningServerTest.test_rebaselineall):
-        (GardeningServerTest.test_rebaseline_new_port):
-
-2012-05-24  Dirk Pranke  <dpranke@chromium.org>
-
-        nrwt: fix baseline search path for official chrome builders
-        https://bugs.webkit.org/show_bug.cgi?id=87432
-
-        Reviewed by Tony Chang.
-
-        The official chrome builders need to use the win7 and SL
-        baseline paths, not the XP and Leopard paths. Linux is correct.
-
-        * Scripts/webkitpy/layout_tests/port/google_chrome.py:
-        (GoogleChromeMacPort.determine_full_port_name):
-        (GoogleChromeWinPort.determine_full_port_name):
-        * Scripts/webkitpy/layout_tests/port/google_chrome_unittest.py:
-        (TestGoogleChromePort._verify_baseline_search_path_startswith):
-        (TestGoogleChromePort.test_get_google_chrome_port):
-
-2012-05-24  Thiago Marcos P. Santos  <thiago.santos@intel.com>
-
-        [NRWT] REGRESSION(r116021): Assertion when running with --no-http
-        https://bugs.webkit.org/show_bug.cgi?id=86800
-
-        Reviewed by Dirk Pranke.
-
-        Don't launch a HTTP server with lock based only on the existence of
-        locked shards since we now run perf on locked shards too.
-
-        * Scripts/webkitpy/layout_tests/controllers/manager.py:
-        (Manager._run_tests):
-
-2012-05-24  Jochen Eisinger  <jochen@chromium.org>
-
-        Add --driver-name option to run_webkit_tests.py to allow for selecting alternative DRT binaries
-        https://bugs.webkit.org/show_bug.cgi?id=87128
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.driver_name):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        (ChromiumLinuxPort._path_to_driver):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumPortTest.test_driver_name_option):
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        (ChromiumWinPort._path_to_driver):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-
-2012-05-24  John Mellor  <johnme@chromium.org>
-
-        Font Boosting: Add compile flag and runtime setting
-        https://bugs.webkit.org/show_bug.cgi?id=87394
-
-        Reviewed by Adam Barth.
-
-        Add ENABLE_FONT_BOOSTING.
-
-        * Scripts/webkitperl/FeatureList.pm:
-        * qmake/mkspecs/features/features.pri:
-
-2012-05-24  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL] [DRT] keyboard-related tests do not pass
-        https://bugs.webkit.org/show_bug.cgi?id=85369
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Add SHIFT modifier for capital letters as VK_ 
-        codes do not distinguish between lows and caps and also to be consistent
-        with other ports which send caps as lowercase letters with the shift key down.
-
-        * DumpRenderTree/efl/EventSender.cpp:
-        (keyNameFromJSValue): 
-
-2012-05-24  Alexey Proskuryakov  <ap@apple.com>
-
-        [WK2] Let the client give local files universal access on a case by case basis
-        https://bugs.webkit.org/show_bug.cgi?id=87174
-        <rdar://problem/11024330>
-
-        Reviewed by Maciej Stachowiak.
-
-        * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp: (WTR::InjectedBundlePage::InjectedBundlePage):
-        Added initialization of a new structure member to prevent build failure.
-
-2012-05-24  Raphael Kubo da Costa  <rakuco@webkit.org>
-
-        [EFL] Modify keycode conversion functions to return keycodes with location information after r118001.
-        https://bugs.webkit.org/show_bug.cgi?id=87203
-
-        Reviewed by Andreas Kling.
-
-        Add the required changes to make
-        fast/events/keydown-leftright-keys.html pass after r118001.
-
-        * DumpRenderTree/efl/EventSender.cpp:
-        (keyNameFromJSValue): Translate "{left,right}{Shift,Alt,Control}"
-        into the proper X11 keysym definitions.
-
-2012-05-24  Sheriff Bot  <webkit.review.bot@gmail.com>
-
-        Unreviewed, rolling out r118352.
-        http://trac.webkit.org/changeset/118352
-        https://bugs.webkit.org/show_bug.cgi?id=87390
-
-        Caused 6 editing/spelling tests crash/fail on chromium in
-        debug. (Requested by vsevik on #webkit).
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/MockGrammarCheck.cpp: Removed.
-        * DumpRenderTree/chromium/MockGrammarCheck.h: Removed.
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::finishLastTextCheck):
-
-2012-05-24  Peter Beverloo  <peter@chromium.org>
-
-        Add John Mellor as a contributor
-        https://bugs.webkit.org/show_bug.cgi?id=87389
-
-        Reviewed by Kenneth Rohde Christiansen.
-
-        John will be working on Font Boosting and is very involved with various
-        web-facing subjects of Chrome for Android, such as viewport.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-05-24  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
-
-        [EFL][DRT] LayoutTestController's setCacheModel() implementation
-        https://bugs.webkit.org/show_bug.cgi?id=86840
-
-        Reviewed by Csaba Osztrogonác.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues): Reset dead decoded data deletion interval.
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::setCacheModel): Implementation added.
-
-2012-05-24  Hironori Bono  <hbono@chromium.org>
-
-        Enable grammar checking on Chromium when we paste text.
-        https://bugs.webkit.org/show_bug.cgi?id=74393
-
-        Reviewed by Hajime Morita.
-
-        This change enables grammar checking on Chromium and implements a mock grammar
-        checker to fix a failing test.
-
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/MockGrammarCheck.cpp: Added.
-        (MockGrammarCheck::checkGrammarOfString):
-        * DumpRenderTree/chromium/MockGrammarCheck.h: Added.
-        (WebKit):
-        (MockGrammarCheck):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::finishLastTextCheck): Call MockGrammarCheck::checkGrammarOfString to check grammatical errors.
-
-2012-05-24  Csaba Osztrogonác  <ossy@webkit.org>
-
-        [Qt] Unreviewed fix, add ENABLE_CSS3_FLEXBOX after r118304.
-
-        * qmake/mkspecs/features/features.pri:
-
-2012-05-24  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] EFL's LayoutTestController needs to implement sendWebIntentResponse
-        https://bugs.webkit.org/show_bug.cgi?id=86867
-
-        Reviewed by Adam Barth.
-
-        Add implementation for sendWebIntentResponse() in EFL's
-        LayoutTestController and add empty implementation for other ports.
-
-        * DumpRenderTree/LayoutTestController.cpp:
-        (sendWebIntentResponseCallback):
-        (LayoutTestController::staticFunctions):
-        * DumpRenderTree/LayoutTestController.h:
-        (LayoutTestController):
-        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
-        (LayoutTestController::sendWebIntentResponse):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::currentIntentRequest):
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-        (DumpRenderTreeChrome::onFrameIntentNew):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.h:
-        (DumpRenderTreeChrome):
-        * DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
-        (LayoutTestController::sendWebIntentResponse):
-        * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
-        (LayoutTestController::sendWebIntentResponse):
-        * DumpRenderTree/mac/LayoutTestControllerMac.mm:
-        (LayoutTestController::sendWebIntentResponse):
-        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
-        (LayoutTestController::sendWebIntentResponse):
-        * DumpRenderTree/wx/LayoutTestControllerWx.cpp:
-        (LayoutTestController::sendWebIntentResponse):
-
-2012-05-24  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] The EFL port has no support for title directionality
-        https://bugs.webkit.org/show_bug.cgi?id=86462
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Update "title,changed" signal handlers in DRT and EWebLauncher to
-        reflect the change from const char* to Ewk_Text_With_Direction* type
-        for the title.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::onTitleChanged):
-        * EWebLauncher/main.c:
-        (title_set):
-        (on_title_changed):
-        (on_key_down):
-
-2012-05-23  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
-
-        Change EFL debug build name with more detail one
-        https://bugs.webkit.org/show_bug.cgi?id=87254
-
-        Reviewed by Ryosuke Niwa.
-
-        EFL Linux Debug buildbot name needs to be consistent with other EFL buildbot name.
-        In addition, remove efl-linux-debug triggerable since nobody uses it.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-05-23  Kangil Han  <kangil.han@samsung.com>
-
-        [EFL][DRT] Fix WebCore library path and rebaseline result
-        https://bugs.webkit.org/show_bug.cgi?id=86355
-
-        Reviewed by Dirk Pranke.
-
-        Currently EFL DRT uses wrong WebCore library path when running DRT.
-        Therefore, this patch adjusted the path correctly.
-
-        * Scripts/webkitpy/layout_tests/port/efl.py:
-        (EflPort._path_to_webcore_library):
-
-2012-05-23  Ojan Vafai  <ojan@chromium.org>
-
-        add back the ability to disable flexbox
-        https://bugs.webkit.org/show_bug.cgi?id=87147
-
-        Reviewed by Tony Chang.
-
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-05-23  Tony Chang  <tony@chromium.org>
-
-        Remove the Chromium Grid Layout bot from the waterfall
-        https://bugs.webkit.org/show_bug.cgi?id=87311
-
-        Reviewed by Ryosuke Niwa.
-
-        I removed the compiler define in r117613, so we don't need a separate
-        bot to compile/test this code.
-
-        * BuildSlaveSupport/build.webkit.org-config/config.json:
-
-2012-05-23  Ian Vollick  <vollick@chromium.org>
-
-        Add vollick to list of contributors.
-        https://bugs.webkit.org/show_bug.cgi?id=87305
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-05-23  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] Fix chromium_android_unittest
-        https://bugs.webkit.org/show_bug.cgi?id=87196
-
-        Reviewed by Tony Chang.
-
-        Update unit tests after ChromiumAndroidPort supported apk based
-        DumpRenderTree.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:
-        (ChromiumAndroidPortTest):
-        (ChromiumAndroidPortTest.mock_run_command_fn): Moved out from test_get_last_stacktrace so that other tests can use it as a common command line handler.
-        (ChromiumAndroidPortTest.test_get_last_stacktrace):
-        (ChromiumAndroidPortTest.test_get_crash_log): Added to test our overridden _get_crash_log()
-        (ChromiumAndroidDriverTest):
-        (ChromiumAndroidDriverTest.setUp):
-        (ChromiumAndroidDriverTest.test_cmd_line): Added to test our overridden cmd_line()
-        (ChromiumAndroidDriverTest.test_write_command_and_read_line): Added test of unexpected EOF (indicating crash on Android)
-
-2012-05-23  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
-
-        [watchlist] Add myself and create a watch rule to catch Attribute related patches
-        https://bugs.webkit.org/show_bug.cgi?id=87303
-
-        Reviewed by Alexis Menard.
-
-        * Scripts/webkitpy/common/config/watchlist:
-
-2012-05-23  Dirk Pranke  <dpranke@chromium.org>
-
-        garden-o-matic should not fetch from debug bots if it also knows about the release bots
-        https://bugs.webkit.org/show_bug.cgi?id=86916
-
-        Reviewed by Adam Barth.
-
-        This change pushes all of the logic for rebaselining a cluster
-        of failures (a list of tests failing a list of suffixes on a
-        list of bots) onto the server, so there is a single call from
-        the web page; we will then be able to optimize the performance
-        of the rebaselining better.
-
-        Also remove the 'optimizebaseline' entry point on garden-o-matic
-        (and the client-side call) since we don't need it any more.
-
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout.js:
-        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout_unittests.js:
-        * Scripts/webkitpy/tool/servers/gardeningserver.py:
-        (GardeningHTTPRequestHandler.rebaselineall):
-        * Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:
-
-2012-05-21  Ryosuke Niwa  <rniwa@webkit.org>
-
-        Mac DRT should be able to load external URLs for replay performance tests
-        https://bugs.webkit.org/show_bug.cgi?id=86191
-
-        Reviewed by Alexey Proskuryakov.
-
-        Let external URL requests go through if the test file is not a local file or hosted at localhost.
-        e.g. "DumpRenderTree http://webkit.org/" as supposed to "DumpRenderTree test.html" or
-        "DumpRenderTree http://localhost:8000/".
-
-        * DumpRenderTree/mac/ResourceLoadDelegate.mm:
-        (isLocalhost):
-        (hostIsUsedBySomeTestsToGenerateError):
-        (-[ResourceLoadDelegate webView:resource:willSendRequest:redirectResponse:fromDataSource:]):
-
-2012-05-23  Malcolm MacLeod <malcolm.macleod@tshwanedje.com>
-
-        [wx] In wxWebKit release builds on MSW, keep release settings but also build the 
-        debug symbols for easier debugging.
-        https://bugs.webkit.org/show_bug.cgi?id=87151
-
-        Reviewed by Kevin Ollivier.
-
-        * waf/build/settings.py:
-        (common_configure):
-
-2012-05-23  Carlos Garcia Campos  <cgarcia@igalia.com>
-
-        Unreviewed. Move myself to reviewers.
-
-        * Scripts/webkitpy/common/config/committers.py:
-
-2012-05-23  Dongwoo Im  <dw.im@samsung.com>
-
-        [EFL] Implements the registerProtocolHandler method and option.
-        https://bugs.webkit.org/show_bug.cgi?id=73638
-
-        Reviewed by Andreas Kling.
-
-        * Scripts/webkitperl/FeatureList.pm: Turn on the ENABLE_REGISTER_PROTOCOL_HANDLER option as default on EFL port.
-
-2012-05-23  Zan Dobersek  <zandobersek@gmail.com>
-
-        [Gtk] EventSender should properly handle (left|right)(control|shift|alt) after r118001
-        https://bugs.webkit.org/show_bug.cgi?id=87221
-
-        Reviewed by Martin Robinson.
-
-        Convert leftAlt, leftControl, leftShift, rightAlt, rightControl and
-        rightShift key names into proper GDK key symbols.
-
-        * DumpRenderTree/gtk/EventSender.cpp:
-        (createKeyPressEvent):
-
-2012-04-18  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
-
-        [Qt] Make the web view's url property follow the active url
-
-        https://bugs.webkit.org/show_bug.cgi?id=77554
-
-        Update  the location bar in the minibrowser to behave
-        a bit more like normal browsers in terms of when the url will change
-        and how active focus is handled.
-
-        Reviewed by Simon Hausmann.
-
-        * MiniBrowser/qt/qml/BrowserWindow.qml:
-
-2012-05-23  Oswald Buddenhagen  <oswald.buddenhagen@nokia.com>
-
-        [Qt] Remove references to $$QT_SOURCE_TREE
-
-        With a modularized Qt, it's ambigious. What we really want is qtbase,
-        which qtcore is a proxy for (we assume it will always live in qtbase).
-
-        Reviewed by Tor Arne Vestbø.
-
-        * DumpRenderTree/qt/DumpRenderTree.pro:
-
-2012-05-23  Oswald Buddenhagen  <oswald.buddenhagen@nokia.com>
-
-        [Qt] Fix qmake conditional for c++-11 compat warnings
-
-        Reviewed by Tor Arne Vestbø.
-
-        * qmake/mkspecs/features/unix/default_post.prf:
-
-2012-05-23  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] EFL's DRT does not print didFailProvisionalLoadWithError messages
-        https://bugs.webkit.org/show_bug.cgi?id=85956
-
-        Reviewed by Gustavo Noronha Silva.
-
-        Catch new "load,provisional,failed" signal and print
-        didFailProvisionalLoadWithError messages when LayoutTestController's
-        dumpFrameLoadCallbacks() returns true. Also make sure the
-        didFailLoadWithError message is not printed in case of provisional
-        load failure.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::createView):
-        (DumpRenderTreeChrome::onFrameCreated):
-        (DumpRenderTreeChrome::onFrameProvisionalLoadFailed):
-        (DumpRenderTreeChrome::onFrameLoadError):
-        * DumpRenderTree/efl/DumpRenderTreeChrome.h:
-        (DumpRenderTreeChrome):
-
-2012-05-23  Christophe Dumez  <christophe.dumez@intel.com>
-
-        [EFL] EFL's DRT needs to call Settings::setValidationMessageTimerMagnification(-1)
-        https://bugs.webkit.org/show_bug.cgi?id=86366
-
-        Reviewed by Antonio Gomes.
-
-        Call Settings::setValidationMessageTimerMagnification(-1) between the tests.
-
-        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
-        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
-
-2012-05-22  Darin Adler  <darin@apple.com>
-
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket: Added property svn:ignore.
-        * Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake: Added property svn:ignore.
-
-2012-05-22  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] Run DumpRenderTree as an apk (C++ and gyp part)
-        https://bugs.webkit.org/show_bug.cgi?id=86922
-
-        Because we have new platformInit() in TestShellAndroid.cpp, and
-        we still need the timeout part in TestShellLinux.cpp, TestShellLinux.cpp
-        is split into TestShellPosix.cpp and TestShellX11.cpp.
-
-        Reviewed by Kent Tamura.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/DumpRenderTree.gypi:
-        * DumpRenderTree/chromium/TestShellAndroid.cpp: Added. Handles command lines to redirect stdin/stdout/stderr.
-        (platformInit):
-        * DumpRenderTree/chromium/TestShellGtk.cpp: Removed. Merged into TestShellX11.cpp
-        * DumpRenderTree/chromium/TestShellLinux.cpp: Removed. Split into TestShellPosix.cpp and TestShellX11.cpp.
-        * DumpRenderTree/chromium/TestShellPosix.cpp: Split from TestShellLinux.cpp, containing the timeout handling part, compiled when os_posix=1 (excluding mac).
-        (AlarmHandler):
-        (TestShell::waitTestFinished):
-        * DumpRenderTree/chromium/TestShellX11.cpp: Split from TestShellLinux.cpp, containing the fontconfig part, compiled when use_x11=1
-        (openStartupDialog): from TestShellGtk.cpp
-        (checkLayoutTestSystemDependencies): from TestShellGtk.cpp.
-        (setupFontconfig):
-        (platformInit):
-
-2012-05-22  Kangil Han  <kangil.han@samsung.com>
-
-        [EFL][DRT] Implement touch event
-        https://bugs.webkit.org/show_bug.cgi?id=86720
-
-        Reviewed by Hajime Morita.
-
-        Currently EFL DRT doesn't support touch event.
-        Therefore, this patch enabled it and implemented some eventSender function callbacks.
-
-        * DumpRenderTree/efl/EventSender.cpp:
-        (TouchEventInfo::TouchEventInfo):
-        (TouchEventInfo):
-        (touchPointList):
-        (sendTouchEvent):
-        (addTouchPointCallback):
-        (touchStartCallback):
-        (updateTouchPointCallback):
-        (touchMoveCallback):
-        (cancelTouchPointCallback):
-        (touchCancelCallback):
-        (releaseTouchPointCallback):
-        (touchEndCallback):
-        (clearTouchPointsCallback):
-        (setTouchModifierCallback):
-        * Scripts/webkitperl/FeatureList.pm:
-
-2012-05-22  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] Fix chromium_android_unittest
-        https://bugs.webkit.org/show_bug.cgi?id=87196
-
-        Not reviewed.
-        Temporarily disable chromium_android_unittest.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:
-        (ChromiumAndroidPortTest):
-        (ChromiumAndroidDriverTest):
-
-2012-05-22  Jessie Berlin  <jberlin@apple.com>
-
-        WebKitTestRunner needs an implementation of layoutTestController.setDefersLoading
-        https://bugs.webkit.org/show_bug.cgi?id=64313
-
-        Reviewed by Jon Honeycutt.
-
-        Add it.
-
-        * WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
-        Make sure to generate the binding.
-
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.cpp:
-        (WTR::LayoutTestController::setDefersLoading):
-        Call WKBundlePageSetDefersLoading.
-        * WebKitTestRunner/InjectedBundle/LayoutTestController.h:
-
-2012-05-22  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium-Android] Run DumpRenderTree as an apk (python part)
-        https://bugs.webkit.org/show_bug.cgi?id=86923
-
-        chromium_android.py is modified to support running DumpRenderTree as
-        an apk, so that we can run the tests (e.g. video) requiring features
-        implemented in Java on Android.
-
-        Reviewed by Adam Barth.
-
-        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
-        (ChromiumAndroidPort.__init__):
-        (ChromiumAndroidPort.default_child_processes):
-        (ChromiumAndroidPort.check_wdiff):
-        (ChromiumAndroidPort.check_build):
-        (ChromiumAndroidPort.start_helper):
-        (ChromiumAndroidPort.skipped_layout_tests):
-        (ChromiumAndroidPort):
-        (ChromiumAndroidPort._path_to_driver):
-        (ChromiumAndroidPort._get_crash_log):
-        (ChromiumAndroidPort._push_executable):
-        (ChromiumAndroidPort._run_adb_command):
-        (ChromiumAndroidPort._get_last_stacktrace):
-        (ChromiumAndroidPort._get_logcat):
-        (ChromiumAndroidPort._setup_performance):
-        (ChromiumAndroidDriver):
-        (ChromiumAndroidDriver.__init__):
-        (ChromiumAndroidDriver._command_wrapper):
-        (ChromiumAndroidDriver.cmd_line):
-        (ChromiumAndroidDriver._file_exists_on_device):
-        (ChromiumAndroidDriver._deadlock_detector):
-        (ChromiumAndroidDriver._start):
-        (ChromiumAndroidDriver.run_test):
-        (ChromiumAndroidDriver.stop):
-        (ChromiumAndroidDriver._write_command_and_read_line):
-        (ChromiumAndroidDriver._output_image):
-        (ChromiumAndroidDriver._get_stderr):
-
-2012-05-22  Joshua Bell  <jsbell@chromium.org>
-
-        [Chromium] Reverting r118084 - webkit_tests failing on chromium mac.
-
-        Unreviewed gardening.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.driver_name):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        (ChromiumLinuxPort._path_to_driver):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumPortTest.test_overrides_and_builder_names):
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        (ChromiumWinPort._path_to_driver):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-
-2012-05-22  Xianzhu Wang  <wangxianzhu@chromium.org>
-
-        [Chromium] Move conditions in DumpRenderTree.gypi into DumpRenderTree.gyp
-        https://bugs.webkit.org/show_bug.cgi?id=87176
-
-        Reviewed by Tony Chang.
-
-        * DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
-        * DumpRenderTree/DumpRenderTree.gypi:
-
-2012-05-22  Jochen Eisinger  <jochen@chromium.org>
-
-        [chromium] add --driver-name option to run_webkit_tests.py to allow for selecting alternative DRT binaries
-        https://bugs.webkit.org/show_bug.cgi?id=87128
-
-        Reviewed by Dirk Pranke.
-
-        * Scripts/webkitpy/layout_tests/port/base.py:
-        (Port.driver_name):
-        * Scripts/webkitpy/layout_tests/port/chromium_linux.py:
-        (ChromiumLinuxPort._path_to_driver):
-        * Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
-        (ChromiumPortTest.test_driver_name_option):
-        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
-        (ChromiumWinPort._path_to_driver):
-        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
-        (parse_args):
-
-2012-05-22  Jessie Berlin  <jberlin@apple.com>
-
-        WTR fix after r118001.
-
-        Rubber-stamped by Alexey Proskuryakov.
-
-        Update the WTR implementation of keyDown to match the DRT one changed in r118001.
-
-        * WebKitTestRunner/mac/EventSenderProxy.mm:
-        (WTR::EventSenderProxy::keyDown):
-
-2012-05-22  Kausalya Madhusudhanan  <kmadhusu@chromium.org>
-
-        [Chromium] Use overloaded printBegin() webkit API to support auto fit to page functionality.
-        https://bugs.webkit.org/show_bug.cgi?id=86684
-
-        Reviewed by Darin Fisher.
-
-        * DumpRenderTree/chromium/LayoutTestController.cpp:
-        (LayoutTestController::numberOfPages):
-        * DumpRenderTree/chromium/WebViewHost.cpp:
-        (WebViewHost::printPage):
-
-== Rolled over to ChangeLog-2012-05-22 ==
diff --git a/Tools/CodeCoverage/README b/Tools/CodeCoverage/README
deleted file mode 100644
index 7a85527..0000000
--- a/Tools/CodeCoverage/README
+++ /dev/null
@@ -1,22 +0,0 @@
-Generate coverage on Mac
-
-call Tools/Script/generate-coverage-data
-
-or by hand
-
-
-# delete
-find . -name '*.gcda' -delete
-
-# build, -framework CoreFoundation might suffice as well
-Tools/Scripts/build-webkit GCC_GENERATE_TEST_COVERAGE_FILES=YES GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES EXTRA_LINK=" -ftest-coverage -fprofile-arcs" OTHER_CFLAGS=" -MD " OTHER_LDFLAGS=" -ftest-coverage -fprofile-arcs -framework AppKit"
-Tools/Scripts/run-webkit-tests
-Tools/Scripts/run-javascriptcore-tests GCC_GENERATE_TEST_COVERAGE_FILES=YES GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES EXTRA_LINK=" -ftest-coverage -fprofile-arcs" OTHER_CFLAGS=" -MD " OTHER_LDFLAGS=" -ftest-coverage -fprofile-arcs -framework AppKit"
-
-
-# Collect files
-Tools/CodeCoverage/run-generate-coverage-data <RUN_ID> ../coverage-results/
-
-
-# Generate graph
-Tools/CodeCoverage/regenerate-coverage-display ../coverage-results/ ../coverage-results/html
diff --git a/Tools/CodeCoverage/amber.png b/Tools/CodeCoverage/amber.png
deleted file mode 100644
index ee5d920..0000000
--- a/Tools/CodeCoverage/amber.png
+++ /dev/null
Binary files differ
diff --git a/Tools/CodeCoverage/cov.py b/Tools/CodeCoverage/cov.py
deleted file mode 100644
index 443e601..0000000
--- a/Tools/CodeCoverage/cov.py
+++ /dev/null
@@ -1,201 +0,0 @@
-# Copyright (C) 2004, 2005, 2006 Nathaniel Smith
-# Copyright (C) 2006, 2007 Holger Hans Peter Freyther
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import csv
-import time
-import os.path
-import shutil
-
-def analyze_coverage(possible_gcov_files, source_files, runid, data_dir, base):
-
-    if not os.path.exists(data_dir):
-        os.makedirs(data_dir)
-
-    output = open(os.path.join(data_dir, runid + ".csv"), "w")
-    w = csv.writer(output)
-    # First row: id and time
-    w.writerow([runid, time.time()])
-
-    results = scan_gcov_files(possible_gcov_files, source_files)
-    annotated_dir = os.path.join(data_dir, runid + ".annotated")
-    if os.path.exists(annotated_dir):
-        shutil.rmtree(annotated_dir)
-
-    keys = results.keys()
-    keys.sort()
-    for path in keys:
-        (total, covered, annotated_data) = results[path]
-        path = path[path.find(base)+len(base):]
-        # Rest of the rows: filename, total_lines, covered_lines
-        w.writerow([path, total, covered])
-
-        if path[:1] == "/":
-            path = path[1:]
-        annotated_path = os.path.join(annotated_dir, path)
-        try:
-            os.makedirs(os.path.dirname(annotated_path))
-        except OSError:
-            pass
-        a = open(annotated_path, "w")
-        a.write(annotated_data)
-        a.close()
-
-
-# zecke's rewrite
-STATE_NOT_CODE = -1
-STATE_NOT_SEEN = -2
-STATE_TEST_CODE = -3
-
-def find_gcov(f, possible_gcovs):
-    """
-    Find .gcov files that could be of interest for us
-    """
-    try:
-        return possible_gcovs[f]
-    except:
-        return []
-
-
-def parse_source_file(file):
-    """
-    Parse one source file and return a list of lines
-    """
-    f_source_list = []
-    init_state = STATE_NOT_SEEN
-    in_test_code = False
-    nesting = 0
-
-    for line in open(file, "r"):
-        code = line.split(":", 2)[-1]
-        if not in_test_code and code.startswith("#ifdef BUILD_UNIT_TESTS"):
-            in_test_code = 1
-        if in_test_code and code.startswith("#if"):
-            nesting += 1
-        if in_test_code and code.startswith("#endif"):
-            nesting -= 1
-            if not nesting:
-                in_test_code = True
-        if in_test_code:
-            init_state = STATE_TEST_CODE
-        else:
-            init_state = STATE_NOT_SEEN
-        f_source_list.append([init_state, line.split(":", 1)[1]])
-
-    return f_source_list
-
-# Runner-up, 3rd annual "write Python that looks like Perl" competition,
-# Well, not really.  It doesn't even use regexps.
-# He is right so I'm cleaning it up (zecke)
-def scan_gcov_files(possible_gcov_files, source_files):
-    """Takes a list of gcov filenames and a list of source filenames.
-
-    The gcov files should have names of the form foo.o##foo.cc.gcov, as
-    created by 'gcov -l'.
-
-    Returns a dict mapping source filenames to tuples
-      (total_lines, tested_lines, gcov_annotated_source)
-    which are a number, a number, and a very long string, respectively.
-
-    The fun bit is that we merge .gcov output generated by different object
-    files; this way we can provide accurate information for header files and
-    for monotone's current unit test system."""
-    results = {}
-    for f in source_files:
-        possible_gcovs = find_gcov(f, possible_gcov_files)
-        base_name = os.path.splitext(os.path.basename(f))[0]
-        if len(possible_gcovs) == 0:
-            print "No gcov files found for: '%s' but it was compiled" % f
-            continue
-
-            (garbage,extension) = os.path.splitext(f)
-            if extension  in [".cc", ".c", ".moc", ".cpp", ".cxx", ".m", ".mm"]:
-                lines = open(f, "r").readlines()
-                results[f] = (len(lines), 0, "".join(lines))
-            continue
-        elif len(possible_gcovs) > 1:
-            print "More than one gcov file for %s %d" % (f,len(possible_gcovs))
-        base_gcov_lines = parse_source_file(possible_gcovs[0])
-
-        # Now we will try hard to merge the results with others
-        # Our requirement is that we have the same amount of lines as
-        # as the original file
-        for cov_file in possible_gcovs:
-            lines = open(cov_file, "r").readlines()
-
-            # e.g. with phonon we have visualisation.h and we can not know
-            # which header file (foldername) it is refering to. This is a gcov
-            # limitation and i have no workaround yet. We just hope we will pick
-            # the right header file...
-            if len(lines) != len(base_gcov_lines):
-                print "Error Base: %s and Target: %s have different amount of lines" % (possible_gcovs[0],cov_file)
-                continue
-
-            # now do the merging of the file. If it has the same basename
-            # and the same number of lines things might work out
-            # In the future take a look at the header of the file
-            i = 0
-            for line in lines:
-                accumulator = base_gcov_lines[i]
-                if accumulator[0] != STATE_TEST_CODE:
-                    info = line.split(":", 1)[0]
-                    if info.endswith("-"):
-                        if accumulator[0] == STATE_NOT_SEEN:
-                            accumulator[0] = STATE_NOT_CODE
-                    else:
-                        if info.endswith("#"):
-                            num = 0
-                        else:
-                            num = int(info)
-                        if accumulator[0] in (STATE_NOT_SEEN, STATE_NOT_CODE):
-                            accumulator[0] = 0
-                        accumulator[0] += num
-                i += 1
-
-        # post processing of ths file
-        (total_lines, total_covered) = (0, 0)
-        annotated_lines = []
-        for state, line in base_gcov_lines:
-            if state == STATE_NOT_SEEN:
-                desc = "?????"
-            elif state == STATE_TEST_CODE:
-                desc = "+"
-            elif state == STATE_NOT_CODE:
-                desc = "-"
-            elif state == 0:
-                desc = "#####"
-                total_lines += 1
-            else:
-                desc = str(state)
-                total_lines += 1
-                total_covered += 1
-            annotated_lines.append(":".join([desc.rjust(9), line]))
-        results[f] = (total_lines, total_covered, "".join(annotated_lines))
-    return results
-
-
-
-    return results
diff --git a/Tools/CodeCoverage/emerald.png b/Tools/CodeCoverage/emerald.png
deleted file mode 100644
index 0e60294..0000000
--- a/Tools/CodeCoverage/emerald.png
+++ /dev/null
Binary files differ
diff --git a/Tools/CodeCoverage/gcov.css b/Tools/CodeCoverage/gcov.css
deleted file mode 100644
index 71ca080..0000000
--- a/Tools/CodeCoverage/gcov.css
+++ /dev/null
@@ -1,116 +0,0 @@
-body {
-  color: black; background-color: white;
-  font-family: Helvetica,Arial,sans-serif;
-  margin: 0; padding: 0em;
-	text-align: center;
-}
-
-.title {
-	text-align:center;
-	font-weight:bold;
-	font-style:italic;
-	font-size:1.8em;
-	padding:10px;
-}
-
-.ruler {
-	height:3px;
-	background-color:#638AD6;
-	margin-left:10px;
-	margin-right:10px;
-}
-
-.headerItem {
-	text-align:right;
-	font-weight:bold;
-}
-
-.headerValue {
-	text-align:left;
-	font-weight:bold;
-	color:#638AD6;
-}
-
-.tableHead {
-	text-align:center;
-	font-weight:bold;
-	background-color:#638AD6;
-	color:white;
-	
-}
-
-.coverFile {
-  font-family: Courier;
-	background-color:#DEE7FF;
-	padding:3px;
-	width:70%;
-}
-
-.coverBar {
-	background-color:#DEE7FF;
-	padding:3px;
-	width:5%;
-}
-
-.coverBarOutline {
-}
-
-.coverPerHi {
-  font-family: Times;
-	text-align:center;
-	font-weight:bold;
-	background-color:lightgreen;	
-	padding:3px;
-	width:5%;
-}
-
-.coverNumHi {
-  font-family: Times;
-	text-align:right;
-	background-color:lightgreen;	
-	padding:3px;
-	width:25%;
-}
-
-.coverPerMed {
-  font-family: Times;
-	text-align:center;
-	font-weight:bold;
-	background-color:yellow;	
-	padding:3px;
-}
-
-.coverNumMed {
-  font-family: Times;
-	text-align:right;
-	background-color:yellow;	
-	padding:3px;
-}
-
-.coverPerLo {
-  font-family: Times;
-	text-align:center;
-	font-weight:bold;
-	background-color:red;	
-	padding:3px;
-}
-
-.coverNumLo {
-  font-family: Times;
-	text-align:right;
-	background-color:red;	
-	padding:3px;
-}
-
-.lineNum {
-	background-color:#EFE384;	
-}
-
-.lineCov {
-	background-color:#CED7FF;	
-}
-
-.lineNoCov {
-	background-color:#FF6131;	
-}
-
diff --git a/Tools/CodeCoverage/glass.png b/Tools/CodeCoverage/glass.png
deleted file mode 100644
index a4ba373..0000000
--- a/Tools/CodeCoverage/glass.png
+++ /dev/null
Binary files differ
diff --git a/Tools/CodeCoverage/regenerate-coverage-display b/Tools/CodeCoverage/regenerate-coverage-display
deleted file mode 100755
index c25b412..0000000
--- a/Tools/CodeCoverage/regenerate-coverage-display
+++ /dev/null
@@ -1,382 +0,0 @@
-#!/usr/bin/env python
-#
-# Copyright (C) 2004, 2005, 2006 Nathaniel Smith
-# Copyright (C) 2007 Holger Hans Peter Freyther
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-#
-# HTML output inspired by the output of lcov as found on the GStreamer
-# site. I assume this is not copyrightable.
-#
-
-
-#
-# Read all CSV files and
-#  Create an overview file
-#
-#
-
-
-import sys
-import csv
-import glob
-import time
-import os
-import os.path
-import datetime
-import shutil
-
-os.environ["TTFPATH"] = ":".join(["/usr/share/fonts/truetype/" + d
-                                  for d in "ttf-bitstream-vera",
-                                           "freefont",
-                                           "msttcorefonts"])
-
-level_LOW    = 10
-level_MEDIUM = 70
-
-def copy_files(dest_dir):
-    """
-    Copy the CSS and the png's to the destination directory
-    """
-    images = ["amber.png", "emerald.png", "glass.png", "ruby.png", "snow.png"]
-    css    = "gcov.css"
-    (base_path, name) = os.path.split(__file__)
-    base_path = os.path.abspath(base_path)
-
-    shutil.copyfile(os.path.join(base_path,css), os.path.join(dest_dir,css))
-    map(lambda x: shutil.copyfile(os.path.join(base_path,x), os.path.join(dest_dir,x)), images)
-
-def sumcov(cov):
-        return "%.2f%% (%s/%s)" % (cov[1] * 100.0 / (cov[0] or 1), cov[1], cov[0])
-
-def create_page(dest_dir, name):
-    index = open(os.path.join(dest_dir, name), "w")
-    index.write("""<HTML>
-    <HEAD>
-        <TITLE>WebKit test coverage information</TITLE>
-        <link rel="stylesheet" type="text/css" href="gcov.css">
-    </HEAD>
-    <BODY>
-    """)
-    return index
-
-def generate_header(file, last_time, total_lines, total_executed, path, image):
-    product = "WebKit"
-    date = time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime(last_time))
-    covered_lines = sumcov((total_lines, total_executed))
-
-    file.write("""<table width="100%%" border=0 cellspacing=0 cellpadding=0>
-    <tr><td class="title">GCOV code coverage report</td></tr>
-    <tr><td class="ruler"><img src="glass.png" width=3 height=3 alt=""></td></tr>
-
-    <tr>
-      <td width="100%%">
-        <table cellpadding=1 border=0 width="100%%">
-        <tr>
-          <td class="headerItem" width="20%%">Current&nbsp;view:</td>
-          <td class="headerValue" width="80%%" colspan=4>%(path)s</td>
-        </tr>
-        <tr>
-          <td class="headerItem" width="20%%">Test:</td>
-          <td class="headerValue" width="80%%" colspan=4>%(product)s</td>
-        </tr>
-        <tr>
-          <td class="headerItem" width="20%%">Date:</td>
-          <td class="headerValue" width="20%%">%(date)s</td>
-          <td width="20%%"></td>
-          <td class="headerItem" width="20%%">Instrumented&nbsp;lines:</td>
-          <td class="headerValue" width="20%%">%(total_lines)s</td>
-        </tr>
-        <tr>
-          <td class="headerItem" width="20%%">Code&nbsp;covered:</td>
-          <td class="headerValue" width="20%%">%(covered_lines)s</td>
-          <td width="20%%"></td>
-          <td class="headerItem" width="20%%">Executed&nbsp;lines:</td>
-          <td class="headerValue" width="20%%">%(total_executed)s</td>
-        </tr>
-        </table>
-      </td>
-    </tr>
-    <tr><td class="ruler"><img src="glass.png" width=3 height=3 alt=""></td></tr>
-  </table>""" % vars())
-    # disabled for now <tr><td><img src="%(image)s"></td></tr>
-
-def generate_table_item(file, name, total_lines, covered_lines):
-    covered_precise = (covered_lines*100.0)/(total_lines or 1.0)
-    covered = int(round(covered_precise))
-    remainder = 100-covered
-    (image,perClass,numClass) = coverage_icon(covered_precise)
-    site = "%s.html" % name.replace(os.path.sep,'__')
-    file.write("""
-        <tr>
-      <td class="coverFile"><a href="%(site)s">%(name)s</a></td>
-      <td class="coverBar" align="center">
-        <table border=0 cellspacing=0 cellpadding=1><tr><td class="coverBarOutline"><img src="%(image)s" width=%(covered)s height=10 alt="%(covered_precise).2f"><img src="snow.png" width=%(remainder)s height=10 alt="%(covered_precise).2f"></td></tr></table>
-      </td>
-      <td class="%(perClass)s">%(covered_precise).2f&nbsp;%%</td>
-      <td class="%(numClass)s">%(covered_lines)s&nbsp;/&nbsp;%(total_lines)s&nbsp;lines</td>
-    </tr>
-    """ % vars())
-
-def generate_table_header_start(file):
-  file.write("""<center>
-  <table width="80%%" cellpadding=2 cellspacing=1 border=0>
-
-    <tr>
-      <td width="50%%"><br></td>
-      <td width="15%%"></td>
-      <td width="15%%"></td>
-      <td width="20%%"></td>
-    </tr>
-
-    <tr>
-      <td class="tableHead">Directory&nbsp;name</td>
-      <td class="tableHead" colspan=3>Coverage</td>
-    </tr>
-    """)
-
-def coverage_icon(percent):
-    if percent < level_LOW:
-        return ("ruby.png", "coverPerLo", "coverNumLo")
-    elif percent < level_MEDIUM:
-        return ("amber.png", "coverPerMed", "coverNumMed")
-    else:
-        return ("emerald.png", "coverPerHi", "coverNumHi")
-
-def replace(text, *pairs):
-    """
-    From pydoc... almost identical at least
-    """
-    from string import split, join
-    while pairs:
-        (a,b) = pairs[0]
-        text = join(split(text, a), b)
-        pairs = pairs[1:]
-    return text
-
-def escape(text):
-    """
-    Escape string to be conform HTML
-    """
-    return replace(text,
-                        ('&', '&amp;'),
-                        ('<', '&lt;' ),
-                        ('>', '&gt;' ) )
-
-def generate_table_header_end(file):
-    file.write("""</table>
-    </center>""")
-
-def write_title_page(dest_dir, last_time, last_tot_lines, last_tot_covered, dir_series):
-    """
-    Write the index.html with a overview of each directory
-    """
-    index= create_page(dest_dir, "index.html")
-    generate_header(index, last_time, last_tot_lines, last_tot_covered, "directory", "images/Total.png")
-    # Create the directory overview
-    generate_table_header_start(index)
-    dirs = dir_series.keys()
-    dirs.sort()
-    for dir in dirs:
-        (dir_files, total_lines, covered_lines,_) = dir_series[dir][-1]
-        generate_table_item(index, dir, total_lines, covered_lines)
-    generate_table_header_end(index)
-
-    index.write("""</BODY></HTML>""")
-    index.close()
-
-def write_directory_site(dest_dir, dir_name, last_time, dir_series, file_series):
-    escaped_dir = dir_name.replace(os.path.sep,'__')
-    site = create_page(dest_dir, "%s.html" % escaped_dir)
-    (_,tot_lines,tot_covered,files) = dir_series[dir_name][-1]
-    generate_header(site, last_time, tot_lines, tot_covered, "directory - %s" % dir_name, "images/%s.png" % escaped_dir)
-
-    files.sort()
-
-    generate_table_header_start(site)
-    for file in files:
-        (lines,covered) = file_series[file][-1]
-        generate_table_item(site, file, lines, covered)
-
-    generate_table_header_end(site)
-    site.write("""</BODY></HTML>""")
-    site.close()
-
-def write_file_site(dest_dir, file_name, last_time, data_dir, last_id, file_series):
-    escaped_name = file_name.replace(os.path.sep,'__')
-    site = create_page(dest_dir, "%s.html" % escaped_name)
-    (tot_lines,tot_covered) = file_series[file_name][-1]
-    generate_header(site, last_time, tot_lines, tot_covered, "file - %s" % file_name, "images/%s.png" % escaped_name)
-
-    path = "%s/%s.annotated%s" % (data_dir,last_id,file_name)
-
-    # In contrast to the lcov we want to show files that have been compiled
-    # but have not been tested at all. This means we have sourcefiles with 0
-    # lines covered in the path but they are not lcov files.
-    # To identify them we check the first line now. If we see that we can
-    # continue
-    #         -:    0:Source:
-    try:
-        file = open(path, "r")
-    except:
-        return
-    all_lines = file.read().split("\n")
-
-    # Convert the gcov file to HTML if we have a chanche to do so
-    # Scan each line and see if it was covered or not and escape the
-    # text
-    if len(all_lines) == 0 or not "-:    0:Source:" in all_lines[0]:
-        site.write("<p>The file was not excercised</p>")
-    else:
-        site.write("""</br><table cellpadding=0 cellspacing=0 border=0>
-    <tr>
-      <td><br></td>
-    </tr>
-    <tr>
-      <td><pre class="source">
-    """)
-        for line in all_lines:
-            split_line = line.split(':',2)
-            # e.g. at the EOF
-            if len(split_line) == 1:
-                continue
-            line_number = split_line[1].strip()
-            if line_number == "0":
-                continue
-            covered = 15*" "
-            end = ""
-            if "#####" in split_line[0]:
-                covered = '<span class="lineNoCov">%15s' % "0"
-                end = "</span>"
-            elif split_line[0].strip() != "-":
-                covered = '<span class="lineCov">%15s' % split_line[0].strip()
-                end = "</span>"
-
-            escaped_line = escape(split_line[2])
-            str = '<span class="lineNum">%(line_number)10s </span>%(covered)s: %(escaped_line)s%(end)s\n' % vars()
-            site.write(str)
-        site.write("</pre></td></tr></table>")
-    site.write("</BODY></HTML>")
-    site.close()
-
-def main(progname, args):
-    if len(args) != 2:
-        sys.exit("Usage: %s DATADIR OUTDIR" % progname)
-
-    branch = "WebKit from trunk"
-    datadir, outdir = args
-
-    # First, load in all data from the data directory.
-    data = []
-    for datapath in glob.glob(os.path.join(datadir, "*.csv")):
-        data.append(read_csv(datapath))
-    # Sort by time
-    data.sort()
-
-    # Calculate time series for each file.
-    times = [sample[0] for sample in data]
-    times = [datetime.datetime.utcfromtimestamp(t) for t in times]
-
-    all_files = {}
-    all_dirs  = {}
-    for sample in data:
-        t, i, tot_line, tot_cover, per_file, per_dir = sample
-        all_files.update(per_file)
-        all_dirs.update(per_dir)
-    total_series = []
-    file_serieses = dict([[k, [(0, 0)] * len(times)] for k in all_files.keys()])
-    dir_serieses  = dict([[k, [(0, 0, 0, [])] * len(times)] for k in all_dirs.keys()])
-    data_idx = 0
-    for sample in data:
-        t, i, tot_line, tot_cover, per_file, per_dir = sample
-        total_series.append([tot_line, tot_cover])
-        for f, covinfo in per_file.items():
-            file_serieses[f][data_idx] = covinfo
-        for f, covinfo in per_dir.items():
-            dir_serieses[f][data_idx] = covinfo
-        data_idx += 1
-
-
-    # Okay, ready to start outputting.  First make sure our directories
-    # exist.
-    if not os.path.exists(outdir):
-        os.makedirs(outdir)
-    rel_imgdir = "images"
-    imgdir = os.path.join(outdir, rel_imgdir)
-    if not os.path.exists(imgdir):
-        os.makedirs(imgdir)
-
-
-    # And look up the latest revision id, and coverage information
-    last_time, last_id, last_tot_lines, last_tot_covered = data[-1][:4]
-
-    # Now start generating our html file
-    copy_files(outdir)
-    write_title_page(outdir, last_time, last_tot_lines, last_tot_covered, dir_serieses)
-
-    dir_keys = dir_serieses.keys()
-    dir_keys.sort()
-    for dir_name in dir_keys:
-        write_directory_site(outdir, dir_name, last_time, dir_serieses, file_serieses)
-
-    file_keys = file_serieses.keys()
-    for file_name in file_keys:
-        write_file_site(outdir, file_name, last_time, datadir, last_id, file_serieses)
-
-def read_csv(path):
-    r = csv.reader(open(path, "r"))
-    # First line is id, time
-    for row in r:
-        id, time_str = row
-        break
-    time = int(float(time_str))
-    # Rest of lines are path, total_lines, covered_lines
-    per_file = {}
-    per_dir  = {}
-    grand_total_lines, grand_covered_lines = 0, 0
-    for row in r:
-        path, total_lines_str, covered_lines_str = row
-        total_lines = int(total_lines_str)
-        covered_lines = int(covered_lines_str)
-        grand_total_lines += total_lines
-        grand_covered_lines += covered_lines
-        per_file[path] = [total_lines, covered_lines]
-
-        # Update dir statistics
-        dirname = os.path.dirname(path)
-        if not dirname in per_dir:
-            per_dir[dirname] = (0,0,0,[])
-        (dir_files,dir_total_lines,dir_covered_lines, files) = per_dir[dirname]
-        dir_files += 1
-        dir_total_lines += total_lines
-        dir_covered_lines += covered_lines
-        files.append(path)
-        per_dir[dirname] = (dir_files,dir_total_lines,dir_covered_lines,files)
-    return [time, id, grand_total_lines, grand_covered_lines, per_file, per_dir]
-
-if __name__ == "__main__":
-    import sys
-    main(sys.argv[0], sys.argv[1:])
diff --git a/Tools/CodeCoverage/ruby.png b/Tools/CodeCoverage/ruby.png
deleted file mode 100644
index a582d35..0000000
--- a/Tools/CodeCoverage/ruby.png
+++ /dev/null
Binary files differ
diff --git a/Tools/CodeCoverage/run-generate-coverage-data b/Tools/CodeCoverage/run-generate-coverage-data
deleted file mode 100755
index a87da1d..0000000
--- a/Tools/CodeCoverage/run-generate-coverage-data
+++ /dev/null
@@ -1,240 +0,0 @@
-#!/usr/bin/env python
-
-# Copyright (C) 2004, 2005, 2006 Nathaniel Smith
-# Copyright (C) 2007 Holger Hans Peter Freyther
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import os, sys
-
-# from BitBake
-def mkdirhier(dir):
-    """Create a directory like 'mkdir -p', but does not complain if
-    directory already exists like os.makedirs
-    """
-    try:
-        os.makedirs(dir)
-    except OSError, e:
-        if e.errno != 17: raise e
-
-def collect_base(src,match_array):
-    """
-    Collect all files that match the match_array.
-    """
-
-    sources = []
-    for root, dirs, files in os.walk(src):
-        if ".svn" in root:
-            continue
-
-        for file in files:
-            base,ext = os.path.splitext(file)
-            if ext in match_array:
-                sources.append( os.path.join(root, file) )
-
-    return sources
-
-def collect_depends(src):
-    return collect_base(src, [".d"])
-
-def parse_dependency_file(src, base_dir, black_list):
-    """
-    Parse the .d files of the gcc
-
-    Wow, the first time os.path.join is doing the right thing. We might
-    have a relative path in the depends using os.path.join(dirname of .d, dep)
-    we will end up in 
-    """
-    file = open(src)
-    file = file.read()
-    file = file.replace('\\', '').replace('\n', '')
-
-    # We now have object: dependencies splitted
-    ar  = file.split(':', 1)
-    obj = ar[0].strip()
-    dir = os.path.dirname(obj)
-    deps = ar[1].split(' ')
-
-    # Remove files outside WebKit, make path absolute
-    deps = filter(lambda x: base_dir in x, deps)
-    deps = map(lambda x: os.path.abspath(os.path.join(dir, x)), deps)
-    return (obj, dir, deps)
-
-def collect_cov(base_path,targets):
-    """
-    Collect gcov files, collect_sources is not used as it also creates
-    dirs and needs to do substituting.
-    Actually we will build a mapping from source file to gcov files of
-    interest. This is because we could have bytestream.h in many different
-    subdirectories. And we would endup with bla.cpp##bytestream.h and we
-    do not know which bytestream file was tested
-    """
-    def find_source_file(root,cov_file):
-        """ Find a Source line or crash
-
-        '#Users#ich#projekte#src#threadmessage.cpp###space#dports#include#qt3#qstring.h.gcov'
-        '#Users#ich#projekte#src#threadmessage.cpp##..#^#src#threadmessage.cpp.gcov'
-
-        ### is absolute path
-        ##..#^# is relative path... well a gcov bug as well
-        ##  normal split file in the same directory
-        """
-        if '###' in cov_file:
-            split = cov_file.split('###')
-            if not len(split) == 2:
-                raise "Unexpected split result"
-            filepath = split[1][:-5].replace('#',os.path.sep)
-            return os.path.join(os.path.sep,filepath)
-        elif '##..#^#' in cov_file: 
-            split = cov_file.split('##..#^#')
-            if not len(split) == 2:
-                raise "Unexpected split result"
-            filepath = split[1][:-5].replace('#',os.path.sep)
-            return os.path.abspath(os.path.join(root,os.path.pardir,os.path.pardir,filepath))
-        elif '##' in cov_file:
-            split = cov_file.split('##')
-            if not len(split) == 2:
-                raise "Unexpected split result"
-            filepath = split[1][:-5].replace('#',os.path.sep)
-            return os.path.abspath(os.path.join(root,filepath))
-        elif '#' in cov_file:
-            # wow a not broken gcov on OSX
-            basename=os.path.basename(cov_file).replace('#',os.path.sep)[:-5]
-            return os.path.abspath(os.path.join(root,basename))
-
-        else:
-            raise "No source found %s" % cov_file
-
-    def sanitize_path(path):
-        """
-        Well fix up paths once again /usr/lib/gcc/i486-linux-gnu/4.1.2/^/^/^/^/include/c++/4.1.2/bits/stl_pair.h
-        according to gcov '^' is a relative path, we will now build one from this one. Somehow it depends
-        on the gcov version if .. really gets replaced to ^....
-        """
-        import os
-        split = path.split(os.path.sep)
-        str = ""
-        for part in split:
-            if part == '':
-                str = os.path.sep
-            elif part == '^':
-                str = "%s..%s" % (str,os.path.sep)
-            else:
-                str = "%s%s%s" % (str,part,os.path.sep)
-        return os.path.abspath(str)
-
-
-    gcov = {}
-    for root, dirs, files in os.walk(base_path):
-        if ".svn" in root:
-            continue
-        for file in files:
-            base,ext = os.path.splitext(file)
-            if ext in [".gcov"]:
-                try:
-                    cov = os.path.join(root, file)
-                    src = find_source_file( root, cov )
-                    src = sanitize_path( src )
-
-                    if not src in gcov:
-                        gcov[src] = []
-                    gcov[src].append( cov )
-                except Exception,e:
-                    print "Exception on ", e
-                    #import sys
-                    #sys.exit(0)
-                    pass
-
-    #print gcov
-    return gcov
-
-def generate_covs(candidates):
-    """
-    Generate gcov files in the right directory
-
-    candidtaes contains the directories we have used when
-    building. Each directory contains a set of files we will
-    try to generate gcov files for.
-    """
-    print candidates.keys()
-    for dir in candidates.keys():
-        print "Trying in %s" % (dir)
-        for dep in candidates[dir].keys():
-            cmd = "cd %s; gcov -p -l %s" % (dir, dep)
-            os.system("%s > /dev/null 2>&1 " % cmd)
-
-
-def analyze_coverage(sources,data,dirs,runid,base):
-    """
-    sources actual source files relative to src_dir e.g kdelibs/kdecore/klibloader.cpp
-    data    Where to put the stuff
-    dirs    Where to take a look for gcov files
-    base    The base directory for files. All files not inside base will be ignored
-    """
-    import cov
-    print base
-    gcov = collect_cov(base,dirs)
-    result = cov.analyze_coverage(gcov, sources, runid, data, base)
-    print result
-
-if __name__ == "__main__":
-    #global targets
-    if not len(sys.argv) == 3:
-        print "This script needs three parameters"
-        print "Call it with generate_cov RUNID ResultsDir"
-        sys.exit(-1)
-    runid = sys.argv[1]
-    results = sys.argv[2]
-
-    # create directories for out result
-    mkdirhier(results)
-
-    print "Collection Sources and preparing data tree"
-    base_dir = os.path.abspath(os.path.curdir)
-    depends = collect_depends(base_dir)
-    candidates = map(lambda x: parse_dependency_file(x,base_dir,[]), depends)
-
-    # Build a number of sources from the candidates. This is a Set for the poor
-    # Two level dict. One for 
-    dirs = {}
-    files = {}
-    for (_,dir,deps) in candidates:
-        if not dir in dirs:
-            dirs[dir] = {}
-        for dep in deps:
-            if not dep in dirs[dir]:
-                dirs[dir][dep] = dep
-            if not dep in files:
-                files[dep] = dep
-
-    sources = files.keys()
-
-    print "Found %d candidates" % (len(sources))
-    print "Will run inefficient generation of gcov files now"
-    generate_covs(dirs)
-
-    print "Analyzing Gcov"
-    analyze_coverage(sources, results, dirs.keys(), runid, base_dir)
-    print "Done"
diff --git a/Tools/CodeCoverage/snow.png b/Tools/CodeCoverage/snow.png
deleted file mode 100644
index a4ba373..0000000
--- a/Tools/CodeCoverage/snow.png
+++ /dev/null
Binary files differ
diff --git a/Tools/CygwinDownloader/cygwin-downloader.py b/Tools/CygwinDownloader/cygwin-downloader.py
deleted file mode 100644
index 01fa69c..0000000
--- a/Tools/CygwinDownloader/cygwin-downloader.py
+++ /dev/null
@@ -1,158 +0,0 @@
-#!/usr/bin/env python
-
-import os, random, sys, time, urllib
-
-#
-# Options
-#
-
-dry_run = len(sys.argv) > 1 and "--dry-run" in set(sys.argv[1:])
-quiet = len(sys.argv) > 1 and "--quiet" in set(sys.argv[1:])
-
-#
-# Functions and constants
-#
-
-def download_progress_hook(block_count, block_size, total_blocks):
-        if quiet or random.random() > 0.5:
-                return
-        sys.stdout.write(".")
-        sys.stdout.flush()
-
-def download_url_to_file(url, file, message):
-        if not quiet:
-                print message + " ",
-        if not dry_run:
-                dir = os.path.dirname(file)
-                if len(dir) and not os.path.exists(dir):
-                    os.makedirs(dir)
-                urllib.urlretrieve(url, file, download_progress_hook)
-        if not quiet:
-                print
- 
-# This is mostly just the list of North America http mirrors from http://cygwin.com/mirrors.html,
-# but a few have been removed that seemed unresponsive from Cupertino.
-mirror_servers = ["http://cygwin.elite-systems.org/",
-                  "http://mirror.mcs.anl.gov/cygwin/",
-                  "http://cygwin.osuosl.org/",
-                  "http://mirrors.kernel.org/sourceware/cygwin/",
-                  "http://mirrors.xmission.com/cygwin/",
-                  "http://sourceware.mirrors.tds.net/pub/sourceware.org/cygwin/"]
-
-package_mirror_url = mirror_servers[random.choice(range(len(mirror_servers)))]
-
-def download_package(package, message):
-        download_url_to_file(package_mirror_url + package["path"], package["path"], message)
-
-required_packages = frozenset(["apache",
-                               "bc",
-                               "bison",
-                               "curl",
-                               "diffutils",
-                               "e2fsprogs",
-                               "emacs",
-                               "flex",
-                               "gcc",
-                               "gperf",
-                               "keychain",
-                               "make",
-                               "minires",
-                               "nano",
-                               "openssh",
-                               "patch",
-                               "perl",
-                               "perl-libwin32",
-                               "python",
-                               "rebase",
-                               "rsync",
-                               "ruby",
-                               "subversion",
-                               "unzip",
-                               "vim",
-                               "zip"])
-
-#
-# Main
-#
-
-print "Using Cygwin mirror server " + package_mirror_url + " to download setup.ini..."
-
-urllib.urlretrieve(package_mirror_url + "setup.ini", "setup.ini.orig")
-
-downloaded_packages_file_path = "setup.ini.orig"
-downloaded_packages_file = file(downloaded_packages_file_path, "r")
-if not dry_run:
-    modified_packages_file = file("setup.ini", "w")
-
-packages = {}
-current_package = ''
-for line in downloaded_packages_file.readlines():
-        if line[0] == "@":
-                current_package = line[2:-1]
-                packages[current_package] = {"name": current_package, "needs_download": False, "requires": [], "path": ""}
-        elif line[:10] == "category: ":
-                if current_package in required_packages:
-                        line = "category: Base\n"
-                if "Base" in set(line[10:-1].split()):
-                        packages[current_package]["needs_download"] = True
-        elif line[:10] == "requires: ":
-                packages[current_package]["requires"] = line[10:].split()
-                packages[current_package]["requires"].sort()
-        elif line[:9] == "install: " and not len(packages[current_package]["path"]):
-                end_of_path = line.find(" ", 9)
-                if end_of_path != -1:
-                        packages[current_package]["path"] = line[9:end_of_path]
-        if not dry_run:
-            modified_packages_file.write(line)
-
-downloaded_packages_file.close()
-os.remove(downloaded_packages_file_path)
-if not dry_run:
-    modified_packages_file.close()
-
-names_to_download = set()
-package_names = packages.keys()
-package_names.sort()
-
-def add_package_and_dependencies(name):
-        if name in names_to_download:
-                return
-        if not name in packages:
-                return
-        packages[name]["needs_download"] = True
-        names_to_download.add(name)
-        for dep in packages[name]["requires"]:
-                add_package_and_dependencies(dep)
-
-for name in package_names:
-        if packages[name]["needs_download"]:
-                add_package_and_dependencies(name)
-
-downloaded_so_far = 0
-for name in package_names:
-        if packages[name]["needs_download"]:
-                downloaded_so_far += 1
-                download_package(packages[name], "Downloading package %3d of %3d (%s)" % (downloaded_so_far, len(names_to_download), name))
-
-download_url_to_file("http://cygwin.com/setup.exe", "setup.exe", "Downloading setup.exe")
-
-seconds_to_sleep = 10
-
-print """
-Finished downloading Cygwin. In %d seconds,
-I will run setup.exe. Select the "Install
-from Local Directory" option and browse to
-"%s"
-when asked for the "Local Package Directory".
-""" % (seconds_to_sleep, os.getcwd())
-
-
-while seconds_to_sleep > 0:
-        print "%d..." % seconds_to_sleep,
-        sys.stdout.flush()
-        time.sleep(1)
-        seconds_to_sleep -= 1
-print
-
-if not dry_run:
-        os.execl("setup.exe")
diff --git a/Tools/CygwinDownloader/cygwin-downloader.zip b/Tools/CygwinDownloader/cygwin-downloader.zip
deleted file mode 100644
index 4b24787..0000000
--- a/Tools/CygwinDownloader/cygwin-downloader.zip
+++ /dev/null
Binary files differ
diff --git a/Tools/CygwinDownloader/make-zip.sh b/Tools/CygwinDownloader/make-zip.sh
deleted file mode 100755
index 4a389a9..0000000
--- a/Tools/CygwinDownloader/make-zip.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/sh
-
-PYTHONEXE=$(cygpath -u "${SYSTEMDRIVE}\\Python25\\python.exe")
-ZIPNAME="cygwin-downloader.zip"
-
-if [[ ! -f "${PYTHONEXE}" ]]; then
-        echo "Couldn't find python.exe at ${PYTHONEXE}" 1>&2
-        exit 1
-fi
-
-"${PYTHONEXE}" setup.py py2exe || {
-        echo "Failed executing setup.py" 1>&2
-        exit 1
-}
-
-rm -f "${ZIPNAME}"
-
-cd dist
-
-zip -r ../"${ZIPNAME}" * || {
-        echo "Failed to create cygwin-downloader" 1>&2
-        exit 1
-}
-
-cd ..
-
-rm -rf build dist || {
-        echo "Failed to cleanup cygwin-downloader and build directories" 1>&2
-        exit 1
-}
diff --git a/Tools/CygwinDownloader/setup.py b/Tools/CygwinDownloader/setup.py
deleted file mode 100644
index c3171d9..0000000
--- a/Tools/CygwinDownloader/setup.py
+++ /dev/null
@@ -1,4 +0,0 @@
-from distutils.core import setup
-import py2exe
-
-setup(console=['cygwin-downloader.py'])
diff --git a/Tools/DumpRenderTree/AccessibilityController.cpp b/Tools/DumpRenderTree/AccessibilityController.cpp
deleted file mode 100644
index 49d453a..0000000
--- a/Tools/DumpRenderTree/AccessibilityController.cpp
+++ /dev/null
@@ -1,164 +0,0 @@
-/*
- * Copyright (C) 2008, 2009, 2010 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#include "config.h"
-#include "AccessibilityController.h"
-
-#include "AccessibilityUIElement.h"
-#include <JavaScriptCore/JSRetainPtr.h>
-
-// Static Value Getters
-
-static JSValueRef getFocusedElementCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    AccessibilityController* controller = static_cast<AccessibilityController*>(JSObjectGetPrivate(thisObject));
-    return AccessibilityUIElement::makeJSAccessibilityUIElement(context, controller->focusedElement());
-}
-
-static JSValueRef getRootElementCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    AccessibilityController* controller = static_cast<AccessibilityController*>(JSObjectGetPrivate(thisObject));
-    return AccessibilityUIElement::makeJSAccessibilityUIElement(context, controller->rootElement());
-}
-
-// Object Creation
-
-void AccessibilityController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> accessibilityControllerStr(Adopt, JSStringCreateWithUTF8CString("accessibilityController"));
-    
-    JSClassRef classRef = getJSClass();
-    JSValueRef accessibilityControllerObject = JSObjectMake(context, classRef, this);
-    JSClassRelease(classRef);
-
-    JSObjectSetProperty(context, windowObject, accessibilityControllerStr.get(), accessibilityControllerObject, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, exception);
-}
-
-static JSValueRef logFocusEventsCallback(JSContextRef ctx, JSObjectRef, JSObjectRef thisObject, size_t, const JSValueRef[], JSValueRef*)
-{
-    AccessibilityController* controller = static_cast<AccessibilityController*>(JSObjectGetPrivate(thisObject));
-    controller->setLogFocusEvents(true);
-    return JSValueMakeUndefined(ctx);
-}
-
-static JSValueRef logValueChangeEventsCallback(JSContextRef ctx, JSObjectRef, JSObjectRef thisObject, size_t, const JSValueRef[], JSValueRef*)
-{
-    AccessibilityController* controller = static_cast<AccessibilityController*>(JSObjectGetPrivate(thisObject));
-    controller->setLogValueChangeEvents(true);
-    return JSValueMakeUndefined(ctx);
-}
-
-static JSValueRef logScrollingStartEventsCallback(JSContextRef ctx, JSObjectRef, JSObjectRef thisObject, size_t, const JSValueRef[], JSValueRef*)
-{
-    AccessibilityController* controller = static_cast<AccessibilityController*>(JSObjectGetPrivate(thisObject));
-    controller->setLogScrollingStartEvents(true);
-    return JSValueMakeUndefined(ctx);
-}
-
-static JSValueRef logAccessibilityEventsCallback(JSContextRef ctx, JSObjectRef, JSObjectRef thisObject, size_t, const JSValueRef[], JSValueRef*)
-{
-    AccessibilityController* controller = static_cast<AccessibilityController*>(JSObjectGetPrivate(thisObject));
-    controller->setLogAccessibilityEvents(true);
-    return JSValueMakeUndefined(ctx);
-}
-
-static JSValueRef getElementAtPointCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    int x = 0;
-    int y = 0;
-    if (argumentCount == 2) {
-        x = JSValueToNumber(context, arguments[0], exception);
-        y = JSValueToNumber(context, arguments[1], exception);
-    }
-    
-    AccessibilityController* controller = static_cast<AccessibilityController*>(JSObjectGetPrivate(thisObject));
-    return AccessibilityUIElement::makeJSAccessibilityUIElement(context, controller->elementAtPoint(x, y));
-}
-
-static JSValueRef getAccessibleElementByIdCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    JSStringRef idAttribute = 0;
-    if (argumentCount == 1)
-        idAttribute = JSValueToStringCopy(context, arguments[0], exception);    
-    AccessibilityController* controller = static_cast<AccessibilityController*>(JSObjectGetPrivate(thisObject));
-    JSValueRef result = AccessibilityUIElement::makeJSAccessibilityUIElement(context, controller->accessibleElementById(idAttribute));
-    if (idAttribute)
-        JSStringRelease(idAttribute);
-    return result;
-}
-
-static JSValueRef addNotificationListenerCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount != 1)
-        return JSValueMakeBoolean(context, false);
-    
-    AccessibilityController* controller = static_cast<AccessibilityController*>(JSObjectGetPrivate(thisObject));
-    JSObjectRef callback = JSValueToObject(context, arguments[0], exception);
-    bool succeeded = controller->addNotificationListener(callback);
-    return JSValueMakeBoolean(context, succeeded);
-}
-
-static JSValueRef removeNotificationListenerCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    AccessibilityController* controller = static_cast<AccessibilityController*>(JSObjectGetPrivate(thisObject));
-    controller->removeNotificationListener();
-    return JSValueMakeUndefined(context);
-}
-
-JSClassRef AccessibilityController::getJSClass()
-{
-    static JSStaticFunction staticFunctions[] = {
-        { "logFocusEvents", logFocusEventsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "logValueChangeEvents", logValueChangeEventsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "logScrollingStartEvents", logScrollingStartEventsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "logAccessibilityEvents", logAccessibilityEventsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "elementAtPoint", getElementAtPointCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "accessibleElementById", getAccessibleElementByIdCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "addNotificationListener", addNotificationListenerCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "removeNotificationListener", removeNotificationListenerCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { 0, 0, 0 }
-    };
-
-    static JSStaticValue staticValues[] = {
-        { "focusedElement", getFocusedElementCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "rootElement", getRootElementCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { 0, 0, 0, 0 }
-    };
-
-    static JSClassDefinition classDefinition = {
-        0, kJSClassAttributeNone, "AccessibilityController", 0, staticValues, staticFunctions,
-        0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
-    };
-
-    return JSClassCreate(&classDefinition);
-}
-
-void AccessibilityController::resetToConsistentState()
-{
-    setLogFocusEvents(false);
-    setLogValueChangeEvents(false);
-    setLogScrollingStartEvents(false);
-    setLogAccessibilityEvents(false);
-}
diff --git a/Tools/DumpRenderTree/AccessibilityController.h b/Tools/DumpRenderTree/AccessibilityController.h
deleted file mode 100644
index 1bb066f..0000000
--- a/Tools/DumpRenderTree/AccessibilityController.h
+++ /dev/null
@@ -1,93 +0,0 @@
-/*
- * Copyright (C) 2008, 2009, 2010 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#ifndef AccessibilityController_h
-#define AccessibilityController_h
-
-#include "AccessibilityUIElement.h"
-#include <JavaScriptCore/JSObjectRef.h>
-#include <string>
-#include <wtf/HashMap.h>
-#include <wtf/Platform.h>
-#if PLATFORM(WIN)
-#include <windows.h>
-#endif
-#if HAVE(ACCESSIBILITY) && (PLATFORM(GTK) || PLATFORM(EFL))
-#include <atk/atk.h>
-#endif
-
-class AccessibilityController {
-public:
-    AccessibilityController();
-    ~AccessibilityController();
-
-    void makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception);
-
-    // Controller Methods - platform-independent implementations
-    AccessibilityUIElement rootElement();
-    AccessibilityUIElement focusedElement();
-    AccessibilityUIElement elementAtPoint(int x, int y);
-    AccessibilityUIElement accessibleElementById(JSStringRef id);
-
-    void setLogFocusEvents(bool);
-    void setLogValueChangeEvents(bool);
-    void setLogScrollingStartEvents(bool);
-    void setLogAccessibilityEvents(bool);
-
-    void resetToConsistentState();
-
-    // Global notification listener, captures notifications on any object.
-    bool addNotificationListener(JSObjectRef functionCallback);
-    void removeNotificationListener();
-
-#if PLATFORM(WIN)
-    // Helper methods so this class can add the listeners on behalf of AccessibilityUIElement.
-    void winAddNotificationListener(PlatformUIElement, JSObjectRef functionCallback);
-    void winNotificationReceived(PlatformUIElement, const std::string& eventName);
-#endif
-
-#if HAVE(ACCESSIBILITY) && (PLATFORM(GTK) || PLATFORM(EFL))
-    AtkObject* childElementById(AtkObject* parent, const char* id);
-#endif
-
-private:
-    static JSClassRef getJSClass();
-
-#if PLATFORM(WIN)
-    HWINEVENTHOOK m_focusEventHook;
-    HWINEVENTHOOK m_valueChangeEventHook;
-    HWINEVENTHOOK m_scrollingStartEventHook;
-
-    HWINEVENTHOOK m_allEventsHook;
-    HWINEVENTHOOK m_notificationsEventHook;
-    HashMap<PlatformUIElement, JSObjectRef> m_notificationListeners;
-#endif
-
-#if PLATFORM(MAC)
-    RetainPtr<NotificationHandler> m_globalNotificationHandler;
-#endif
-};
-
-#endif // AccessibilityController_h
diff --git a/Tools/DumpRenderTree/AccessibilityTextMarker.cpp b/Tools/DumpRenderTree/AccessibilityTextMarker.cpp
deleted file mode 100644
index 1250497..0000000
--- a/Tools/DumpRenderTree/AccessibilityTextMarker.cpp
+++ /dev/null
@@ -1,134 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#include "config.h"
-#include "AccessibilityTextMarker.h"
-
-#include "AccessibilityUIElement.h"
-#include <JavaScriptCore/JSRetainPtr.h>
-
-// MARK: AccessibilityTextMarker
-
-// Callback methods
-
-AccessibilityTextMarker* toTextMarker(JSObjectRef object)
-{
-    return static_cast<AccessibilityTextMarker*>(JSObjectGetPrivate(object));
-}
-
-static JSValueRef isMarkerEqualCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount != 1)
-        return JSValueMakeBoolean(context, false);
-
-    JSObjectRef otherMarker = JSValueToObject(context, arguments[0], exception);
-    return JSValueMakeBoolean(context, toTextMarker(thisObject)->isEqual(toTextMarker(otherMarker)));
-}
-
-// Destruction
-
-static void markerFinalize(JSObjectRef thisObject)
-{
-    delete toTextMarker(thisObject);
-}
-
-// Object Creation
-
-JSObjectRef AccessibilityTextMarker::makeJSAccessibilityTextMarker(JSContextRef context, const AccessibilityTextMarker& element)
-{
-    return JSObjectMake(context, AccessibilityTextMarker::getJSClass(), new AccessibilityTextMarker(element));
-}
-
-JSClassRef AccessibilityTextMarker::getJSClass()
-{
-    static JSStaticValue staticValues[] = {
-        { 0, 0, 0, 0 }
-    };
-    
-    static JSStaticFunction staticFunctions[] = {
-        { "isEqual", isMarkerEqualCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { 0, 0, 0 }
-    };
-    
-    static JSClassDefinition classDefinition = {
-        0, kJSClassAttributeNone, "AccessibilityTextMarker", 0, staticValues, staticFunctions,
-        0, markerFinalize, 0, 0, 0, 0, 0, 0, 0, 0, 0
-    };
-    
-    static JSClassRef accessibilityTextMarkerClass = JSClassCreate(&classDefinition);
-    return accessibilityTextMarkerClass;
-}
-
-// MARK: AccessibilityTextMarkerRange
-
-// Callback methods
-
-AccessibilityTextMarkerRange* toTextMarkerRange(JSObjectRef object)
-{
-    return static_cast<AccessibilityTextMarkerRange*>(JSObjectGetPrivate(object));
-}
-
-static JSValueRef isMarkerRangeEqualCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount != 1)
-        return JSValueMakeBoolean(context, false);
-    
-    JSObjectRef otherMarker = JSValueToObject(context, arguments[0], exception);
-    return JSValueMakeBoolean(context, toTextMarkerRange(thisObject)->isEqual(toTextMarkerRange(otherMarker)));
-}
-
-// Destruction
-
-static void markerRangeFinalize(JSObjectRef thisObject)
-{
-    delete toTextMarkerRange(thisObject);
-}
-
-// Object Creation
-
-JSObjectRef AccessibilityTextMarkerRange::makeJSAccessibilityTextMarkerRange(JSContextRef context, const AccessibilityTextMarkerRange& element)
-{
-    return JSObjectMake(context, AccessibilityTextMarkerRange::getJSClass(), new AccessibilityTextMarkerRange(element));
-}
-
-JSClassRef AccessibilityTextMarkerRange::getJSClass()
-{
-    static JSStaticValue staticValues[] = {
-        { 0, 0, 0, 0 }
-    };
-    
-    static JSStaticFunction staticFunctions[] = {
-        { "isEqual", isMarkerRangeEqualCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { 0, 0, 0 }
-    };
-    
-    static JSClassDefinition classDefinition = {
-        0, kJSClassAttributeNone, "AccessibilityTextMarkerRange", 0, staticValues, staticFunctions,
-        0, markerRangeFinalize, 0, 0, 0, 0, 0, 0, 0, 0, 0
-    };
-    
-    static JSClassRef accessibilityTextMarkerRangeClass = JSClassCreate(&classDefinition);
-    return accessibilityTextMarkerRangeClass;
-}
diff --git a/Tools/DumpRenderTree/AccessibilityTextMarker.h b/Tools/DumpRenderTree/AccessibilityTextMarker.h
deleted file mode 100644
index aeb078d..0000000
--- a/Tools/DumpRenderTree/AccessibilityTextMarker.h
+++ /dev/null
@@ -1,105 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#ifndef AccessibilityTextMarker_h
-#define AccessibilityTextMarker_h
-
-#include <JavaScriptCore/JSObjectRef.h>
-
-#if PLATFORM(MAC)
-#define SUPPORTS_AX_TEXTMARKERS 1
-#else
-#define SUPPORTS_AX_TEXTMARKERS 0
-#endif
-
-#if PLATFORM(MAC)
-#include <wtf/RetainPtr.h>
-typedef CFTypeRef PlatformTextMarker;
-typedef CFTypeRef PlatformTextMarkerRange;
-#else
-typedef void* PlatformTextMarker;
-typedef void* PlatformTextMarkerRange;
-#endif
-
-class AccessibilityUIElement;
-
-class AccessibilityTextMarker {
-public:
-    AccessibilityTextMarker(PlatformTextMarker);
-    AccessibilityTextMarker(const AccessibilityTextMarker&);
-    ~AccessibilityTextMarker();
-    
-    PlatformTextMarker platformTextMarker() const;
-    
-    static JSObjectRef makeJSAccessibilityTextMarker(JSContextRef, const AccessibilityTextMarker&);
-    bool isEqual(AccessibilityTextMarker*);
-    
-private:
-    static JSClassRef getJSClass();
-#if PLATFORM(MAC)
-    RetainPtr<PlatformTextMarker> m_textMarker;
-#else
-    PlatformTextMarker m_textMarker;
-#endif
-};
-
-class AccessibilityTextMarkerRange {
-public:
-    AccessibilityTextMarkerRange(PlatformTextMarkerRange);
-    AccessibilityTextMarkerRange(const AccessibilityTextMarkerRange&);
-    ~AccessibilityTextMarkerRange();
-    
-    PlatformTextMarkerRange platformTextMarkerRange() const;
-    
-    static JSObjectRef makeJSAccessibilityTextMarkerRange(JSContextRef, const AccessibilityTextMarkerRange&);
-    bool isEqual(AccessibilityTextMarkerRange*);
-    
-private:
-    static JSClassRef getJSClass();
-#if PLATFORM(MAC)
-    RetainPtr<PlatformTextMarkerRange> m_textMarkerRange;
-#else
-    PlatformTextMarkerRange m_textMarkerRange;
-#endif
-};
-
-AccessibilityTextMarker* toTextMarker(JSObjectRef object);
-AccessibilityTextMarkerRange* toTextMarkerRange(JSObjectRef object);
-
-#if !SUPPORTS_AX_TEXTMARKERS
-inline AccessibilityTextMarker::AccessibilityTextMarker(PlatformTextMarker) { }
-inline AccessibilityTextMarker::AccessibilityTextMarker(const AccessibilityTextMarker&) { }
-inline AccessibilityTextMarker::~AccessibilityTextMarker() { }
-inline bool AccessibilityTextMarker::isEqual(AccessibilityTextMarker*) { return false; }
-inline PlatformTextMarker AccessibilityTextMarker::platformTextMarker() const { return m_textMarker; }
-
-inline AccessibilityTextMarkerRange::AccessibilityTextMarkerRange(PlatformTextMarkerRange) { }
-inline AccessibilityTextMarkerRange::AccessibilityTextMarkerRange(const AccessibilityTextMarkerRange&) { }
-inline AccessibilityTextMarkerRange::~AccessibilityTextMarkerRange() { }
-inline bool AccessibilityTextMarkerRange::isEqual(AccessibilityTextMarkerRange*) { return false; }
-inline PlatformTextMarkerRange AccessibilityTextMarkerRange::platformTextMarkerRange() const { return m_textMarkerRange; }
-#endif
-
-#endif // AccessibilityUIElement_h
diff --git a/Tools/DumpRenderTree/AccessibilityUIElement.cpp b/Tools/DumpRenderTree/AccessibilityUIElement.cpp
deleted file mode 100644
index 9dfbc6c..0000000
--- a/Tools/DumpRenderTree/AccessibilityUIElement.cpp
+++ /dev/null
@@ -1,1347 +0,0 @@
-/*
- * Copyright (C) 2008, 2009 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#include "config.h"
-#include "AccessibilityUIElement.h"
-
-#include <JavaScriptCore/JSRetainPtr.h>
-
-// Static Functions
-
-static inline AccessibilityUIElement* toAXElement(JSObjectRef object)
-{
-    // FIXME: We should ASSERT that it is the right class here.
-    return static_cast<AccessibilityUIElement*>(JSObjectGetPrivate(object));
-}
-
-static JSValueRef allAttributesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> attributes(Adopt, toAXElement(thisObject)->allAttributes());
-    return JSValueMakeString(context, attributes.get());
-}
-
-static JSValueRef attributesOfLinkedUIElementsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> linkedUIDescription(Adopt, toAXElement(thisObject)->attributesOfLinkedUIElements());
-    return JSValueMakeString(context, linkedUIDescription.get());
-}
-
-static JSValueRef attributesOfDocumentLinksCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> linkedUIDescription(Adopt, toAXElement(thisObject)->attributesOfDocumentLinks());
-    return JSValueMakeString(context, linkedUIDescription.get());
-}
-
-static JSValueRef attributesOfChildrenCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> childrenDescription(Adopt, toAXElement(thisObject)->attributesOfChildren());
-    return JSValueMakeString(context, childrenDescription.get());
-}
-
-static JSValueRef parameterizedAttributeNamesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> parameterizedAttributeNames(Adopt, toAXElement(thisObject)->parameterizedAttributeNames());
-    return JSValueMakeString(context, parameterizedAttributeNames.get());
-}
-
-static JSValueRef attributesOfColumnHeadersCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> attributesOfColumnHeaders(Adopt, toAXElement(thisObject)->attributesOfColumnHeaders());
-    return JSValueMakeString(context, attributesOfColumnHeaders.get());
-}
-
-static JSValueRef attributesOfRowHeadersCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> attributesOfRowHeaders(Adopt, toAXElement(thisObject)->attributesOfRowHeaders());
-    return JSValueMakeString(context, attributesOfRowHeaders.get());
-}
-
-static JSValueRef attributesOfColumnsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> attributesOfColumns(Adopt, toAXElement(thisObject)->attributesOfColumns());
-    return JSValueMakeString(context, attributesOfColumns.get());
-}
-
-static JSValueRef attributesOfRowsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> attributesOfRows(Adopt, toAXElement(thisObject)->attributesOfRows());
-    return JSValueMakeString(context, attributesOfRows.get());
-}
-
-static JSValueRef attributesOfVisibleCellsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> attributesOfVisibleCells(Adopt, toAXElement(thisObject)->attributesOfVisibleCells());
-    return JSValueMakeString(context, attributesOfVisibleCells.get());
-}
-
-static JSValueRef attributesOfHeaderCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> attributesOfHeader(Adopt, toAXElement(thisObject)->attributesOfHeader());
-    return JSValueMakeString(context, attributesOfHeader.get());
-}
-
-static JSValueRef indexInTableCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    return JSValueMakeNumber(context, toAXElement(thisObject)->indexInTable());
-}
-
-static JSValueRef rowIndexRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> rowIndexRange(Adopt, toAXElement(thisObject)->rowIndexRange());
-    return JSValueMakeString(context, rowIndexRange.get());
-}
-
-static JSValueRef columnIndexRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> columnIndexRange(Adopt, toAXElement(thisObject)->columnIndexRange());
-    return JSValueMakeString(context, columnIndexRange.get());
-}
-
-static JSValueRef lineForIndexCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    int indexNumber = -1;
-    if (argumentCount == 1)
-        indexNumber = JSValueToNumber(context, arguments[0], exception);
-    
-    return JSValueMakeNumber(context, toAXElement(thisObject)->lineForIndex(indexNumber));
-}
-
-static JSValueRef rangeForLineCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    int indexNumber = -1;
-    if (argumentCount == 1)
-        indexNumber = JSValueToNumber(context, arguments[0], exception);
-    
-    JSRetainPtr<JSStringRef> rangeLine(Adopt, toAXElement(thisObject)->rangeForLine(indexNumber));
-    return JSValueMakeString(context, rangeLine.get());
-}
-
-static JSValueRef boundsForRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    unsigned location = UINT_MAX, length = 0;
-    if (argumentCount == 2) {
-        location = JSValueToNumber(context, arguments[0], exception);
-        length = JSValueToNumber(context, arguments[1], exception);
-    }
-
-    JSRetainPtr<JSStringRef> boundsDescription(Adopt, toAXElement(thisObject)->boundsForRange(location, length));
-    return JSValueMakeString(context, boundsDescription.get());    
-}
-
-static JSValueRef rangeForPositionCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    int x = 0, y = 0;
-    if (argumentCount == 2) {
-        x = JSValueToNumber(context, arguments[0], exception);
-        y = JSValueToNumber(context, arguments[1], exception);
-    }
-    
-    JSRetainPtr<JSStringRef> rangeDescription(Adopt, toAXElement(thisObject)->rangeForPosition(x, y));
-    return JSValueMakeString(context, rangeDescription.get());    
-}
-
-static JSValueRef stringForRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    unsigned location = UINT_MAX, length = 0;
-    if (argumentCount == 2) {
-        location = JSValueToNumber(context, arguments[0], exception);
-        length = JSValueToNumber(context, arguments[1], exception);
-    }
-    
-    JSRetainPtr<JSStringRef> stringDescription(Adopt, toAXElement(thisObject)->stringForRange(location, length));
-    return JSValueMakeString(context, stringDescription.get());    
-}
-
-static JSValueRef attributedStringForRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    unsigned location = UINT_MAX, length = 0;
-    if (argumentCount == 2) {
-        location = JSValueToNumber(context, arguments[0], exception);
-        length = JSValueToNumber(context, arguments[1], exception);
-    }
-    
-    JSRetainPtr<JSStringRef> stringDescription(Adopt, toAXElement(thisObject)->attributedStringForRange(location, length));
-    return JSValueMakeString(context, stringDescription.get());    
-}
-
-static JSValueRef attributedStringRangeIsMisspelledCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    unsigned location = UINT_MAX, length = 0;
-    if (argumentCount == 2) {
-        location = JSValueToNumber(context, arguments[0], exception);
-        length = JSValueToNumber(context, arguments[1], exception);
-    }
-    
-    return JSValueMakeBoolean(context, toAXElement(thisObject)->attributedStringRangeIsMisspelled(location, length));
-}
-
-static JSValueRef uiElementForSearchPredicateCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    AccessibilityUIElement* startElement = 0;
-    bool isDirectionNext = true;
-    JSStringRef searchKey = 0;
-    JSStringRef searchText = 0;
-    if (argumentCount == 4) {
-        JSObjectRef startElementObject = JSValueToObject(context, arguments[0], exception);
-        if (startElementObject)
-            startElement = toAXElement(startElementObject);
-        isDirectionNext = JSValueToBoolean(context, arguments[1]);
-        if (JSValueIsString(context, arguments[2]))
-            searchKey = JSValueToStringCopy(context, arguments[2], exception);
-        if (JSValueIsString(context, arguments[3]))
-            searchText = JSValueToStringCopy(context, arguments[3], exception);
-    }
-    
-    JSObjectRef resultObject = AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->uiElementForSearchPredicate(startElement, isDirectionNext, searchKey, searchText));
-    if (searchKey)
-        JSStringRelease(searchKey);
-    if (searchText)
-        JSStringRelease(searchText);
-    
-    return resultObject;
-}
-
-static JSValueRef indexOfChildCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount != 1)
-        return 0;
-    
-    JSObjectRef otherElement = JSValueToObject(context, arguments[0], exception);
-    AccessibilityUIElement* childElement = toAXElement(otherElement);
-    return JSValueMakeNumber(context, (double)toAXElement(thisObject)->indexOfChild(childElement));
-}
-
-#if PLATFORM(IOS)
-
-static JSValueRef headerElementAtIndexCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount != 1)
-        return 0;
-    
-    unsigned index = JSValueToNumber(context, arguments[0], exception);
-    return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->headerElementAtIndex(index));
-}
-
-static JSValueRef linkedElementCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->linkedElement());
-}
-
-static JSValueRef elementsForRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount != 2)
-        return 0;
-    
-    unsigned location = JSValueToNumber(context, arguments[0], exception);
-    unsigned length = JSValueToNumber(context, arguments[1], exception);
-    
-    Vector<AccessibilityUIElement> elements;
-    toAXElement(thisObject)->elementsForRange(location, length, elements);
-    
-    unsigned elementsSize = elements.size();
-    JSValueRef valueElements[elementsSize];
-    for (unsigned k = 0; k < elementsSize; ++k)
-        valueElements[k] = AccessibilityUIElement::makeJSAccessibilityUIElement(context, elements[k]);
-    
-    return JSObjectMakeArray(context, elementsSize, valueElements, 0);
-}
-
-static JSValueRef increaseTextSelectionCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    toAXElement(thisObject)->increaseTextSelection();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef decreaseTextSelectionCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    toAXElement(thisObject)->decreaseTextSelection();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef assistiveTechnologySimulatedFocusCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    toAXElement(thisObject)->assistiveTechnologySimulatedFocus();
-    return JSValueMakeUndefined(context);
-}
-
-#endif
-
-static JSValueRef childAtIndexCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    int indexNumber = -1;
-    if (argumentCount == 1)
-        indexNumber = JSValueToNumber(context, arguments[0], exception);
-    
-    return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->getChildAtIndex(indexNumber));
-}
-
-static JSValueRef selectedChildAtIndexCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    int indexNumber = -1;
-    if (argumentCount == 1)
-        indexNumber = JSValueToNumber(context, arguments[0], exception);
-    
-    return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->selectedChildAtIndex(indexNumber));
-}
-
-static JSValueRef linkedUIElementAtIndexCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    int indexNumber = -1;
-    if (argumentCount == 1)
-        indexNumber = JSValueToNumber(context, arguments[0], exception);
-    
-    return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->linkedUIElementAtIndex(indexNumber));
-}
-
-static JSValueRef disclosedRowAtIndexCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    int indexNumber = 0;
-    if (argumentCount == 1)
-        indexNumber = JSValueToNumber(context, arguments[0], exception);
-    
-    return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->disclosedRowAtIndex(indexNumber));
-}
-
-static JSValueRef ariaOwnsElementAtIndexCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    int indexNumber = 0;
-    if (argumentCount == 1)
-        indexNumber = JSValueToNumber(context, arguments[0], exception);
-    
-    return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->ariaOwnsElementAtIndex(indexNumber));
-}
-
-static JSValueRef ariaFlowToElementAtIndexCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    int indexNumber = 0;
-    if (argumentCount == 1)
-        indexNumber = JSValueToNumber(context, arguments[0], exception);
-    
-    return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->ariaFlowToElementAtIndex(indexNumber));
-}
-
-static JSValueRef selectedRowAtIndexCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    int indexNumber = 0;
-    if (argumentCount == 1)
-        indexNumber = JSValueToNumber(context, arguments[0], exception);
-    
-    return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->selectedRowAtIndex(indexNumber));
-}
-
-static JSValueRef rowAtIndexCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    int indexNumber = 0;
-    if (argumentCount == 1)
-        indexNumber = JSValueToNumber(context, arguments[0], exception);
-    
-    return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->rowAtIndex(indexNumber));
-}
-
-static JSValueRef isEqualCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    JSObjectRef otherElement = 0;
-    if (argumentCount == 1)
-        otherElement = JSValueToObject(context, arguments[0], exception);
-    else
-        return JSValueMakeBoolean(context, false);
-    
-    return JSValueMakeBoolean(context, toAXElement(thisObject)->isEqual(toAXElement(otherElement)));
-}
-
-static JSValueRef setSelectedChildCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    JSObjectRef element = 0;
-    if (argumentCount == 1)
-        element = JSValueToObject(context, arguments[0], exception);
-
-    toAXElement(thisObject)->setSelectedChild(toAXElement(element));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef elementAtPointCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    int x = 0;
-    int y = 0;
-    if (argumentCount == 2) {
-        x = JSValueToNumber(context, arguments[0], exception);
-        y = JSValueToNumber(context, arguments[1], exception);
-    }
-    
-    return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->elementAtPoint(x, y));
-}
-
-static JSValueRef isAttributeSupportedCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    JSStringRef attribute = 0;
-    if (argumentCount == 1)
-        attribute = JSValueToStringCopy(context, arguments[0], exception);    
-    JSValueRef result = JSValueMakeBoolean(context, toAXElement(thisObject)->isAttributeSupported(attribute));
-    if (attribute)
-        JSStringRelease(attribute);
-    return result;
-}
-
-static JSValueRef isAttributeSettableCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    JSStringRef attribute = 0;
-    if (argumentCount == 1)
-        attribute = JSValueToStringCopy(context, arguments[0], exception);    
-    JSValueRef result = JSValueMakeBoolean(context, toAXElement(thisObject)->isAttributeSettable(attribute));
-    if (attribute)
-        JSStringRelease(attribute);
-    return result;
-}
-
-static JSValueRef isPressActionSupportedCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    return JSValueMakeBoolean(context, toAXElement(thisObject)->isPressActionSupported());
-}
-
-static JSValueRef isIncrementActionSupportedCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    return JSValueMakeBoolean(context, toAXElement(thisObject)->isIncrementActionSupported());
-}
-
-static JSValueRef isDecrementActionSupportedCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    return JSValueMakeBoolean(context, toAXElement(thisObject)->isDecrementActionSupported());
-}
-
-static JSValueRef boolAttributeValueCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    JSStringRef attribute = 0;
-    if (argumentCount == 1)
-        attribute = JSValueToStringCopy(context, arguments[0], exception);
-    bool val = toAXElement(thisObject)->boolAttributeValue(attribute);
-    JSValueRef result = JSValueMakeBoolean(context, val);
-    if (attribute)
-        JSStringRelease(attribute);
-    return result;
-}
-
-static JSValueRef stringAttributeValueCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    JSStringRef attribute = 0;
-    if (argumentCount == 1)
-        attribute = JSValueToStringCopy(context, arguments[0], exception);
-    JSRetainPtr<JSStringRef> stringAttributeValue(Adopt, toAXElement(thisObject)->stringAttributeValue(attribute));
-    JSValueRef result = JSValueMakeString(context, stringAttributeValue.get());
-    if (attribute)
-        JSStringRelease(attribute);
-    return result;
-}
-
-static JSValueRef uiElementAttributeValueCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> attribute;
-    if (argumentCount == 1)
-        attribute.adopt(JSValueToStringCopy(context, arguments[0], exception));
-    
-    return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->uiElementAttributeValue(attribute.get()));
-}
-
-static JSValueRef numberAttributeValueCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    JSStringRef attribute = 0;
-    if (argumentCount == 1)
-        attribute = JSValueToStringCopy(context, arguments[0], exception);
-    double val = toAXElement(thisObject)->numberAttributeValue(attribute);
-    JSValueRef result = JSValueMakeNumber(context, val);
-    if (attribute)
-        JSStringRelease(attribute);
-    return result;
-}
-
-static JSValueRef cellForColumnAndRowCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    unsigned column = 0, row = 0;
-    if (argumentCount == 2) {
-        column = JSValueToNumber(context, arguments[0], exception);
-        row = JSValueToNumber(context, arguments[1], exception);
-    }
-    
-    return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->cellForColumnAndRow(column, row));
-}
-
-static JSValueRef titleUIElementCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->titleUIElement());
-}
-
-static JSValueRef parentElementCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->parentElement());
-}
-
-static JSValueRef disclosedByRowCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->disclosedByRow());
-}
-
-static JSValueRef setSelectedTextRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    unsigned location = UINT_MAX, length = 0;
-    if (argumentCount == 2) {
-        location = JSValueToNumber(context, arguments[0], exception);
-        length = JSValueToNumber(context, arguments[1], exception);
-    }
-    
-    toAXElement(thisObject)->setSelectedTextRange(location, length);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef incrementCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    toAXElement(thisObject)->increment();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef decrementCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    toAXElement(thisObject)->decrement();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef showMenuCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    toAXElement(thisObject)->showMenu();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef pressCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    toAXElement(thisObject)->press();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef scrollToMakeVisibleCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    toAXElement(thisObject)->scrollToMakeVisible();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef takeFocusCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    toAXElement(thisObject)->takeFocus();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef takeSelectionCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    toAXElement(thisObject)->takeSelection();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef addSelectionCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    toAXElement(thisObject)->addSelection();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef removeSelectionCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    toAXElement(thisObject)->removeSelection();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef textMarkerRangeForElementCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    AccessibilityUIElement* uiElement = 0;
-    if (argumentCount == 1)
-        uiElement = toAXElement(JSValueToObject(context, arguments[0], exception));
-    
-    return AccessibilityTextMarkerRange::makeJSAccessibilityTextMarkerRange(context, toAXElement(thisObject)->textMarkerRangeForElement(uiElement));
-}
-
-static JSValueRef attributedStringForTextMarkerRangeContainsAttributeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    AccessibilityTextMarkerRange* markerRange = 0;
-    JSStringRef attribute = 0;
-    if (argumentCount == 2) {
-        attribute = JSValueToStringCopy(context, arguments[0], exception);
-        markerRange = toTextMarkerRange(JSValueToObject(context, arguments[1], exception));
-    }
-    
-    JSValueRef result = JSValueMakeBoolean(context, toAXElement(thisObject)->attributedStringForTextMarkerRangeContainsAttribute(attribute, markerRange));
-    if (attribute)
-        JSStringRelease(attribute);
-    
-    return result;    
-}
-
-static JSValueRef indexForTextMarkerCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    AccessibilityTextMarker* marker = 0;
-    if (argumentCount == 1)
-        marker = toTextMarker(JSValueToObject(context, arguments[0], exception));
-    
-    return JSValueMakeNumber(context, toAXElement(thisObject)->indexForTextMarker(marker));
-}
-
-static JSValueRef isTextMarkerValidCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    AccessibilityTextMarker* marker = 0;
-    if (argumentCount == 1)
-        marker = toTextMarker(JSValueToObject(context, arguments[0], exception));
-    
-    return JSValueMakeBoolean(context, toAXElement(thisObject)->isTextMarkerValid(marker));
-}
-
-static JSValueRef textMarkerForIndexCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    int textIndex = 0;
-    if (argumentCount == 1)
-        textIndex = JSValueToNumber(context, arguments[0], exception);
-    
-    return AccessibilityTextMarker::makeJSAccessibilityTextMarker(context, toAXElement(thisObject)->textMarkerForIndex(textIndex));
-}
-
-static JSValueRef textMarkerRangeLengthCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    AccessibilityTextMarkerRange* range = 0;
-    if (argumentCount == 1)
-        range = toTextMarkerRange(JSValueToObject(context, arguments[0], exception));
-    
-    return JSValueMakeNumber(context, (int)toAXElement(thisObject)->textMarkerRangeLength(range));
-}
-
-static JSValueRef nextTextMarkerCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    AccessibilityTextMarker* marker = 0;
-    if (argumentCount == 1)
-        marker = toTextMarker(JSValueToObject(context, arguments[0], exception));
-    
-    return AccessibilityTextMarker::makeJSAccessibilityTextMarker(context, toAXElement(thisObject)->nextTextMarker(marker));
-}
-
-static JSValueRef previousTextMarkerCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    AccessibilityTextMarker* marker = 0;
-    if (argumentCount == 1)
-        marker = toTextMarker(JSValueToObject(context, arguments[0], exception));
-    
-    return AccessibilityTextMarker::makeJSAccessibilityTextMarker(context, toAXElement(thisObject)->previousTextMarker(marker));
-}
-
-static JSValueRef stringForTextMarkerRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    AccessibilityTextMarkerRange* markerRange = 0;
-    if (argumentCount == 1)
-        markerRange = toTextMarkerRange(JSValueToObject(context, arguments[0], exception));
-    
-    JSRetainPtr<JSStringRef> markerRangeString(Adopt, toAXElement(thisObject)->stringForTextMarkerRange(markerRange));
-    return JSValueMakeString(context, markerRangeString.get());    
-}
-
-static JSValueRef textMarkerForPointCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    int x = 0;
-    int y = 0;
-    if (argumentCount == 2) {
-        x = JSValueToNumber(context, arguments[0], exception);
-        y = JSValueToNumber(context, arguments[1], exception);
-    }
-    
-    return AccessibilityTextMarker::makeJSAccessibilityTextMarker(context, toAXElement(thisObject)->textMarkerForPoint(x, y));
-}
-
-static JSValueRef textMarkerRangeForMarkersCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    AccessibilityTextMarker* startMarker = 0;
-    AccessibilityTextMarker* endMarker = 0;
-    if (argumentCount == 2) {
-        startMarker = toTextMarker(JSValueToObject(context, arguments[0], exception));
-        endMarker = toTextMarker(JSValueToObject(context, arguments[1], exception));
-    }
-    
-    return AccessibilityTextMarkerRange::makeJSAccessibilityTextMarkerRange(context, toAXElement(thisObject)->textMarkerRangeForMarkers(startMarker, endMarker));
-}
-
-static JSValueRef startTextMarkerForTextMarkerRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    AccessibilityTextMarkerRange* markerRange = 0;
-    if (argumentCount == 1)
-        markerRange = toTextMarkerRange(JSValueToObject(context, arguments[0], exception));
-    
-    return AccessibilityTextMarker::makeJSAccessibilityTextMarker(context, toAXElement(thisObject)->startTextMarkerForTextMarkerRange(markerRange));
-}
-
-static JSValueRef endTextMarkerForTextMarkerRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    AccessibilityTextMarkerRange* markerRange = 0;
-    if (argumentCount == 1)
-        markerRange = toTextMarkerRange(JSValueToObject(context, arguments[0], exception));
-    
-    return AccessibilityTextMarker::makeJSAccessibilityTextMarker(context, toAXElement(thisObject)->endTextMarkerForTextMarkerRange(markerRange));
-}
-
-static JSValueRef accessibilityElementForTextMarkerCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    AccessibilityTextMarker* marker = 0;
-    if (argumentCount == 1)
-        marker = toTextMarker(JSValueToObject(context, arguments[0], exception));
-    
-    return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->accessibilityElementForTextMarker(marker));
-}
-
-// Static Value Getters
-
-static JSValueRef getARIADropEffectsCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> dropEffects(Adopt, toAXElement(thisObject)->ariaDropEffects());
-    return JSValueMakeString(context, dropEffects.get());
-}
-
-static JSValueRef getARIAIsGrabbedCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    return JSValueMakeBoolean(context, toAXElement(thisObject)->ariaIsGrabbed());
-}
-
-static JSValueRef getIsValidCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    AccessibilityUIElement* uiElement = toAXElement(thisObject);
-    if (!uiElement->platformUIElement())
-        return JSValueMakeBoolean(context, false);
-    
-    // There might be other platform logic that one could check here...
-    
-    return JSValueMakeBoolean(context, true);
-}
-
-static JSValueRef getRoleCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> role(Adopt, toAXElement(thisObject)->role());
-    return JSValueMakeString(context, role.get());
-}
-
-static JSValueRef getSubroleCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> role(Adopt, toAXElement(thisObject)->subrole());
-    return JSValueMakeString(context, role.get());
-}
-
-static JSValueRef getRoleDescriptionCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> roleDesc(Adopt, toAXElement(thisObject)->roleDescription());
-    return JSValueMakeString(context, roleDesc.get());
-}
-
-static JSValueRef getTitleCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> title(Adopt, toAXElement(thisObject)->title());
-    return JSValueMakeString(context, title.get());
-}
-
-static JSValueRef getDescriptionCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> description(Adopt, toAXElement(thisObject)->description());
-    return JSValueMakeString(context, description.get());
-}
-
-static JSValueRef getStringValueCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> stringValue(Adopt, toAXElement(thisObject)->stringValue());
-    return JSValueMakeString(context, stringValue.get());
-}
-
-static JSValueRef getLanguageCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> language(Adopt, toAXElement(thisObject)->language());
-    return JSValueMakeString(context, language.get());
-}
-
-static JSValueRef getHelpTextCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> language(Adopt, toAXElement(thisObject)->helpText());
-    return JSValueMakeString(context, language.get());
-}
-
-static JSValueRef getOrientationCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> orientation(Adopt, toAXElement(thisObject)->orientation());
-    return JSValueMakeString(context, orientation.get());
-}
-
-static JSValueRef getChildrenCountCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    return JSValueMakeNumber(context, toAXElement(thisObject)->childrenCount());
-}
-
-static JSValueRef rowCountCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    return JSValueMakeNumber(context, toAXElement(thisObject)->rowCount());
-}
-
-static JSValueRef columnCountCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    return JSValueMakeNumber(context, toAXElement(thisObject)->columnCount());
-}
-
-static JSValueRef getXCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    return JSValueMakeNumber(context, toAXElement(thisObject)->x());
-}
-
-static JSValueRef getYCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    return JSValueMakeNumber(context, toAXElement(thisObject)->y());
-}
-
-static JSValueRef getWidthCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    return JSValueMakeNumber(context, toAXElement(thisObject)->width());
-}
-
-static JSValueRef getHeightCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    return JSValueMakeNumber(context, toAXElement(thisObject)->height());
-}
-
-static JSValueRef getClickPointXCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    return JSValueMakeNumber(context, toAXElement(thisObject)->clickPointX());
-}
-
-static JSValueRef getClickPointYCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    return JSValueMakeNumber(context, toAXElement(thisObject)->clickPointY());
-}
-
-static JSValueRef getIntValueCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    return JSValueMakeNumber(context, toAXElement(thisObject)->intValue());
-}
-
-static JSValueRef getMinValueCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    return JSValueMakeNumber(context, toAXElement(thisObject)->minValue());
-}
-
-static JSValueRef getMaxValueCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    return JSValueMakeNumber(context, toAXElement(thisObject)->maxValue());
-}
-
-static JSValueRef getInsertionPointLineNumberCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    return JSValueMakeNumber(context, toAXElement(thisObject)->insertionPointLineNumber());
-}
-
-static JSValueRef getSelectedTextRangeCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> selectedTextRange(Adopt, toAXElement(thisObject)->selectedTextRange());
-    return JSValueMakeString(context, selectedTextRange.get());
-}
-
-static JSValueRef getIsEnabledCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    return JSValueMakeBoolean(context, toAXElement(thisObject)->isEnabled());
-}
-
-static JSValueRef getIsRequiredCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef, JSValueRef*)
-{
-    return JSValueMakeBoolean(context, toAXElement(thisObject)->isRequired());
-}
-
-static JSValueRef getIsFocusedCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef, JSValueRef*)
-{
-    return JSValueMakeBoolean(context, toAXElement(thisObject)->isFocused());
-}
-
-static JSValueRef getIsFocusableCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef, JSValueRef*)
-{
-    return JSValueMakeBoolean(context, toAXElement(thisObject)->isFocusable());
-}
-
-static JSValueRef getIsSelectedCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef, JSValueRef*)
-{
-    return JSValueMakeBoolean(context, toAXElement(thisObject)->isSelected());
-}
-
-static JSValueRef getIsSelectableCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef, JSValueRef*)
-{
-    return JSValueMakeBoolean(context, toAXElement(thisObject)->isSelectable());
-}
-
-static JSValueRef getIsMultiSelectableCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef, JSValueRef*)
-{
-    return JSValueMakeBoolean(context, toAXElement(thisObject)->isMultiSelectable());
-}
-
-static JSValueRef getIsSelectedOptionActiveCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef, JSValueRef*)
-{
-    return JSValueMakeBoolean(context, toAXElement(thisObject)->isSelectedOptionActive());
-}
-
-static JSValueRef getIsExpandedCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef, JSValueRef*)
-{
-    return JSValueMakeBoolean(context, toAXElement(thisObject)->isExpanded());
-}
-
-static JSValueRef getIsCheckedCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef, JSValueRef*)
-{
-    return JSValueMakeBoolean(context, toAXElement(thisObject)->isChecked());
-}
-
-static JSValueRef getIsVisibleCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef, JSValueRef*)
-{
-    return JSValueMakeBoolean(context, toAXElement(thisObject)->isVisible());
-}
-
-static JSValueRef getIsOffScreenCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef, JSValueRef*)
-{
-    return JSValueMakeBoolean(context, toAXElement(thisObject)->isOffScreen());
-}
-
-static JSValueRef getIsCollapsedCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef, JSValueRef*)
-{
-    return JSValueMakeBoolean(context, toAXElement(thisObject)->isCollapsed());
-}
-
-static JSValueRef isIgnoredCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef, JSValueRef*)
-{
-    return JSValueMakeBoolean(context, toAXElement(thisObject)->isIgnored());
-}
-
-static JSValueRef speakCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef, JSValueRef*)
-{
-    JSRetainPtr<JSStringRef> speakString(Adopt, toAXElement(thisObject)->speak());
-    return JSValueMakeString(context, speakString.get());
-}
-
-static JSValueRef selectedChildrenCountCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    return JSValueMakeNumber(context, toAXElement(thisObject)->selectedChildrenCount());
-}
-
-static JSValueRef horizontalScrollbarCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->horizontalScrollbar());
-}
-
-static JSValueRef verticalScrollbarCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->verticalScrollbar());
-}
-
-static JSValueRef getHasPopupCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef, JSValueRef*)
-{
-    return JSValueMakeBoolean(context, toAXElement(thisObject)->hasPopup());
-}
-
-static JSValueRef hierarchicalLevelCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef, JSValueRef*)
-{
-    return JSValueMakeNumber(context, toAXElement(thisObject)->hierarchicalLevel());
-}
-
-static JSValueRef getValueDescriptionCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> valueDescription(Adopt, toAXElement(thisObject)->valueDescription());
-    return JSValueMakeString(context, valueDescription.get());
-}
-
-static JSValueRef getAccessibilityValueCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> accessibilityValue(Adopt, toAXElement(thisObject)->accessibilityValue());
-    return JSValueMakeString(context, accessibilityValue.get());
-}
-
-static JSValueRef getDocumentEncodingCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> documentEncoding(Adopt, toAXElement(thisObject)->documentEncoding());
-    return JSValueMakeString(context, documentEncoding.get());
-}
-
-static JSValueRef getDocumentURICallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> documentURI(Adopt, toAXElement(thisObject)->documentURI());
-    return JSValueMakeString(context, documentURI.get());
-}
-
-static JSValueRef getURLCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> url(Adopt, toAXElement(thisObject)->url());
-    return JSValueMakeString(context, url.get());
-}
-
-static JSValueRef addNotificationListenerCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount != 1)
-        return JSValueMakeBoolean(context, false);
-    
-    JSObjectRef callback = JSValueToObject(context, arguments[0], exception);
-    bool succeeded = toAXElement(thisObject)->addNotificationListener(callback);
-    return JSValueMakeBoolean(context, succeeded);
-}
-
-static JSValueRef removeNotificationListenerCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    toAXElement(thisObject)->removeNotificationListener();
-    return JSValueMakeUndefined(context);
-}
-
-#if PLATFORM(IOS)
-
-static JSValueRef stringForSelectionCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> labelString(Adopt, toAXElement(thisObject)->stringForSelection());
-    return JSValueMakeString(context, labelString.get());
-}
-
-static JSValueRef getIPhoneLabelCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> labelString(Adopt, toAXElement(thisObject)->iphoneLabel());
-    return JSValueMakeString(context, labelString.get());
-}
-
-static JSValueRef getIPhoneHintCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> hintString(Adopt, toAXElement(thisObject)->iphoneHint());
-    return JSValueMakeString(context, hintString.get());
-}
-
-static JSValueRef getIPhoneValueCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> valueString(Adopt, toAXElement(thisObject)->iphoneValue());
-    return JSValueMakeString(context, valueString.get());
-}
-
-static JSValueRef getIPhoneIdentifierCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> valueString(Adopt, toAXElement(thisObject)->iphoneIdentifier());
-    return JSValueMakeString(context, valueString.get());
-}
-
-
-static JSValueRef getIPhoneTraitsCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> valueString(Adopt, toAXElement(thisObject)->iphoneTraits());
-    return JSValueMakeString(context, valueString.get());
-}
-
-static JSValueRef getIPhoneIsElementCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    return JSValueMakeBoolean(context, toAXElement(thisObject)->iphoneIsElement());
-}
-
-static JSValueRef getIPhoneElementTextPositionCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    return JSValueMakeNumber(context, toAXElement(thisObject)->iphoneElementTextPosition());
-}
-
-static JSValueRef getIPhoneElementTextLengthCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    return JSValueMakeNumber(context, toAXElement(thisObject)->iphoneElementTextLength());
-}
-
-#endif // PLATFORM(IOS)
-
-#if PLATFORM(MAC) && !PLATFORM(IOS)
-static JSValueRef supportedActionsCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> valueString(Adopt, toAXElement(thisObject)->supportedActions());
-    return JSValueMakeString(context, valueString.get());
-}
-#endif
-
-// Implementation
-
-// Unsupported methods on various platforms.
-#if !PLATFORM(MAC) || PLATFORM(IOS)
-JSStringRef AccessibilityUIElement::speak() { return 0; }
-JSStringRef AccessibilityUIElement::rangeForLine(int line) { return 0; }
-JSStringRef AccessibilityUIElement::rangeForPosition(int, int) { return 0; }
-void AccessibilityUIElement::setSelectedChild(AccessibilityUIElement*) const { }
-unsigned AccessibilityUIElement::selectedChildrenCount() const { return 0; }
-AccessibilityUIElement AccessibilityUIElement::selectedChildAtIndex(unsigned) const { return 0; }
-AccessibilityUIElement AccessibilityUIElement::horizontalScrollbar() const { return 0; }
-AccessibilityUIElement AccessibilityUIElement::verticalScrollbar() const { return 0; }
-AccessibilityUIElement AccessibilityUIElement::uiElementAttributeValue(JSStringRef) const { return 0; }
-#endif
-
-#if !PLATFORM(WIN)
-bool AccessibilityUIElement::isEqual(AccessibilityUIElement* otherElement)
-{
-    if (!otherElement)
-        return false;
-    return platformUIElement() == otherElement->platformUIElement();
-}
-#endif
-
-#if !SUPPORTS_AX_TEXTMARKERS
-
-AccessibilityTextMarkerRange AccessibilityUIElement::textMarkerRangeForElement(AccessibilityUIElement*)
-{
-    return 0;
-}
-
-int AccessibilityUIElement::textMarkerRangeLength(AccessibilityTextMarkerRange*)
-{
-    return 0;
-}
-
-AccessibilityTextMarkerRange AccessibilityUIElement::textMarkerRangeForMarkers(AccessibilityTextMarker*, AccessibilityTextMarker*)
-{
-    return 0;
-}
-
-AccessibilityTextMarker AccessibilityUIElement::startTextMarkerForTextMarkerRange(AccessibilityTextMarkerRange*)
-{
-    return 0;
-}
-
-AccessibilityTextMarker AccessibilityUIElement::endTextMarkerForTextMarkerRange(AccessibilityTextMarkerRange*)
-{
-    return 0;   
-}
-
-AccessibilityUIElement AccessibilityUIElement::accessibilityElementForTextMarker(AccessibilityTextMarker*)
-{
-    return 0;
-}
-
-AccessibilityTextMarker AccessibilityUIElement::textMarkerForPoint(int x, int y)
-{
-    return 0;
-}
-
-AccessibilityTextMarker AccessibilityUIElement::previousTextMarker(AccessibilityTextMarker*)
-{
-    return 0;    
-}
-
-AccessibilityTextMarker AccessibilityUIElement::nextTextMarker(AccessibilityTextMarker*)
-{
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::stringForTextMarkerRange(AccessibilityTextMarkerRange*)
-{
-    return 0;
-}
-
-bool AccessibilityUIElement::attributedStringForTextMarkerRangeContainsAttribute(JSStringRef, AccessibilityTextMarkerRange*)
-{
-    return false;
-}
-
-int AccessibilityUIElement::indexForTextMarker(AccessibilityTextMarker*)
-{
-    return -1;
-}
-
-bool AccessibilityUIElement::isTextMarkerValid(AccessibilityTextMarker*)
-{
-    return false;
-}
-
-AccessibilityTextMarker AccessibilityUIElement::textMarkerForIndex(int)
-{
-    return 0;
-}
-
-#endif
-
-// Destruction
-
-static void finalize(JSObjectRef thisObject)
-{
-    delete toAXElement(thisObject);
-}
-
-// Object Creation
-
-JSObjectRef AccessibilityUIElement::makeJSAccessibilityUIElement(JSContextRef context, const AccessibilityUIElement& element)
-{
-    return JSObjectMake(context, AccessibilityUIElement::getJSClass(), new AccessibilityUIElement(element));
-}
-
-JSClassRef AccessibilityUIElement::getJSClass()
-{
-    static JSStaticValue staticValues[] = {
-        { "accessibilityValue", getAccessibilityValueCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "role", getRoleCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "subrole", getSubroleCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "roleDescription", getRoleDescriptionCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "title", getTitleCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "description", getDescriptionCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "language", getLanguageCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "helpText", getHelpTextCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "stringValue", getStringValueCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "x", getXCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "y", getYCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "width", getWidthCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "height", getHeightCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "clickPointX", getClickPointXCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "clickPointY", getClickPointYCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "intValue", getIntValueCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "minValue", getMinValueCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "maxValue", getMaxValueCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "childrenCount", getChildrenCountCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "rowCount", rowCountCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "columnCount", columnCountCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "insertionPointLineNumber", getInsertionPointLineNumberCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "selectedTextRange", getSelectedTextRangeCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "isEnabled", getIsEnabledCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "isRequired", getIsRequiredCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "isFocused", getIsFocusedCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "isFocusable", getIsFocusableCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "isSelected", getIsSelectedCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "isSelectable", getIsSelectableCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "isMultiSelectable", getIsMultiSelectableCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "isSelectedOptionActive", getIsSelectedOptionActiveCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "isExpanded", getIsExpandedCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "isChecked", getIsCheckedCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "isVisible", getIsVisibleCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "isOffScreen", getIsOffScreenCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "isCollapsed", getIsCollapsedCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "hasPopup", getHasPopupCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "valueDescription", getValueDescriptionCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "hierarchicalLevel", hierarchicalLevelCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "documentEncoding", getDocumentEncodingCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "documentURI", getDocumentURICallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "url", getURLCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "isValid", getIsValidCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "orientation", getOrientationCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "ariaIsGrabbed", getARIAIsGrabbedCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "ariaDropEffects", getARIADropEffectsCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "isIgnored", isIgnoredCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "speak", speakCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "selectedChildrenCount", selectedChildrenCountCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "horizontalScrollbar", horizontalScrollbarCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "verticalScrollbar", verticalScrollbarCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-#if PLATFORM(IOS)
-        { "iphoneLabel", getIPhoneLabelCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "iphoneHint", getIPhoneHintCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "iphoneValue", getIPhoneValueCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "iphoneIdentifier", getIPhoneIdentifierCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "iphoneTraits", getIPhoneTraitsCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "iphoneIsElement", getIPhoneIsElementCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "iphoneElementTextPosition", getIPhoneElementTextPositionCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "iphoneElementTextLength", getIPhoneElementTextLengthCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "stringForSelection", stringForSelectionCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-#endif // PLATFORM(IOS)
-#if PLATFORM(MAC) && !PLATFORM(IOS)
-        { "supportedActions", supportedActionsCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-#endif
-        { 0, 0, 0, 0 }
-    };
-
-    static JSStaticFunction staticFunctions[] = {
-        { "allAttributes", allAttributesCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "attributesOfLinkedUIElements", attributesOfLinkedUIElementsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "attributesOfDocumentLinks", attributesOfDocumentLinksCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "attributesOfChildren", attributesOfChildrenCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "parameterizedAttributeNames", parameterizedAttributeNamesCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "lineForIndex", lineForIndexCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "rangeForLine", rangeForLineCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "boundsForRange", boundsForRangeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "rangeForPosition", rangeForPositionCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "stringForRange", stringForRangeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "attributedStringForRange", attributedStringForRangeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "attributedStringRangeIsMisspelled", attributedStringRangeIsMisspelledCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "uiElementForSearchPredicate", uiElementForSearchPredicateCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "childAtIndex", childAtIndexCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "linkedUIElementAtIndex", linkedUIElementAtIndexCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "indexOfChild", indexOfChildCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "elementAtPoint", elementAtPointCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "attributesOfColumnHeaders", attributesOfColumnHeadersCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "attributesOfRowHeaders", attributesOfRowHeadersCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "attributesOfColumns", attributesOfColumnsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "attributesOfRows", attributesOfRowsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "attributesOfVisibleCells", attributesOfVisibleCellsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "attributesOfHeader", attributesOfHeaderCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "indexInTable", indexInTableCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "rowIndexRange", rowIndexRangeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "columnIndexRange", columnIndexRangeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "cellForColumnAndRow", cellForColumnAndRowCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "titleUIElement", titleUIElementCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setSelectedTextRange", setSelectedTextRangeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "stringAttributeValue", stringAttributeValueCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "uiElementAttributeValue", uiElementAttributeValueCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "numberAttributeValue", numberAttributeValueCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "boolAttributeValue", boolAttributeValueCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "isAttributeSupported", isAttributeSupportedCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "isAttributeSettable", isAttributeSettableCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "isPressActionSupported", isPressActionSupportedCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "isIncrementActionSupported", isIncrementActionSupportedCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "isDecrementActionSupported", isDecrementActionSupportedCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "parentElement", parentElementCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "disclosedByRow", disclosedByRowCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "increment", incrementCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "decrement", decrementCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "showMenu", showMenuCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "press", pressCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "disclosedRowAtIndex", disclosedRowAtIndexCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "ariaOwnsElementAtIndex", ariaOwnsElementAtIndexCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "ariaFlowToElementAtIndex", ariaFlowToElementAtIndexCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "selectedRowAtIndex", selectedRowAtIndexCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "rowAtIndex", rowAtIndexCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "isEqual", isEqualCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "addNotificationListener", addNotificationListenerCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "removeNotificationListener", removeNotificationListenerCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "takeFocus", takeFocusCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "takeSelection", takeSelectionCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "addSelection", addSelectionCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "removeSelection", removeSelectionCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "textMarkerRangeForElement", textMarkerRangeForElementCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "attributedStringForTextMarkerRangeContainsAttribute", attributedStringForTextMarkerRangeContainsAttributeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "indexForTextMarker", indexForTextMarkerCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "isTextMarkerValid", isTextMarkerValidCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "textMarkerRangeForMarkers", textMarkerRangeForMarkersCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "textMarkerForIndex", textMarkerForIndexCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "startTextMarkerForTextMarkerRange", startTextMarkerForTextMarkerRangeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "endTextMarkerForTextMarkerRange", endTextMarkerForTextMarkerRangeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "accessibilityElementForTextMarker", accessibilityElementForTextMarkerCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "textMarkerRangeLength", textMarkerRangeLengthCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "textMarkerForPoint", textMarkerForPointCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "nextTextMarker", nextTextMarkerCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "previousTextMarker", previousTextMarkerCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "stringForTextMarkerRange", stringForTextMarkerRangeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setSelectedChild", setSelectedChildCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "selectedChildAtIndex", selectedChildAtIndexCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "scrollToMakeVisible", scrollToMakeVisibleCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-#if PLATFORM(IOS)
-        { "linkedElement", linkedElementCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "headerElementAtIndex", headerElementAtIndexCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "elementsForRange", elementsForRangeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "increaseTextSelection", increaseTextSelectionCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "decreaseTextSelection", decreaseTextSelectionCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "assistiveTechnologySimulatedFocus", assistiveTechnologySimulatedFocusCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        
-#endif
-        { 0, 0, 0 }
-    };
-
-    static JSClassDefinition classDefinition = {
-        0, kJSClassAttributeNone, "AccessibilityUIElement", 0, staticValues, staticFunctions,
-        0, finalize, 0, 0, 0, 0, 0, 0, 0, 0, 0
-    };
-
-    static JSClassRef accessibilityUIElementClass = JSClassCreate(&classDefinition);
-    return accessibilityUIElementClass;
-}
diff --git a/Tools/DumpRenderTree/AccessibilityUIElement.h b/Tools/DumpRenderTree/AccessibilityUIElement.h
deleted file mode 100644
index 794a15d..0000000
--- a/Tools/DumpRenderTree/AccessibilityUIElement.h
+++ /dev/null
@@ -1,273 +0,0 @@
-/*
- * Copyright (C) 2008 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#ifndef AccessibilityUIElement_h
-#define AccessibilityUIElement_h
-
-#include "AccessibilityTextMarker.h"
-#include <JavaScriptCore/JSObjectRef.h>
-#include <wtf/Platform.h>
-#include <wtf/Vector.h>
-
-#if PLATFORM(MAC)
-#ifdef __OBJC__
-typedef id PlatformUIElement;
-#else
-typedef struct objc_object* PlatformUIElement;
-#endif
-#elif PLATFORM(WIN)
-#undef _WINSOCKAPI_
-#define _WINSOCKAPI_ // Prevent inclusion of winsock.h in windows.h
-
-#include <WebCore/COMPtr.h>
-#include <oleacc.h>
-
-typedef COMPtr<IAccessible> PlatformUIElement;
-#elif HAVE(ACCESSIBILITY) && (PLATFORM(GTK) || PLATFORM(EFL))
-#include <atk/atk.h>
-typedef AtkObject* PlatformUIElement;
-#else
-typedef void* PlatformUIElement;
-#endif
-
-#if PLATFORM(MAC)
-#ifdef __OBJC__
-typedef id NotificationHandler;
-#else
-typedef struct objc_object* NotificationHandler;
-#endif
-#endif
-
-class AccessibilityUIElement {
-public:
-    AccessibilityUIElement(PlatformUIElement);
-    AccessibilityUIElement(const AccessibilityUIElement&);
-    ~AccessibilityUIElement();
-
-    PlatformUIElement platformUIElement() { return m_element; }
-
-    static JSObjectRef makeJSAccessibilityUIElement(JSContextRef, const AccessibilityUIElement&);
-
-    bool isEqual(AccessibilityUIElement* otherElement);
-
-    void getLinkedUIElements(Vector<AccessibilityUIElement>&);
-    void getDocumentLinks(Vector<AccessibilityUIElement>&);
-    void getChildren(Vector<AccessibilityUIElement>&);
-    void getChildrenWithRange(Vector<AccessibilityUIElement>&, unsigned location, unsigned length);
-    
-    AccessibilityUIElement elementAtPoint(int x, int y);
-    AccessibilityUIElement getChildAtIndex(unsigned);
-    unsigned indexOfChild(AccessibilityUIElement*);
-    int childrenCount();
-    AccessibilityUIElement titleUIElement();
-    AccessibilityUIElement parentElement();
-
-    void takeFocus();
-    void takeSelection();
-    void addSelection();
-    void removeSelection();
-
-    // Methods - platform-independent implementations
-    JSStringRef allAttributes();
-    JSStringRef attributesOfLinkedUIElements();
-    AccessibilityUIElement linkedUIElementAtIndex(unsigned);
-    
-    JSStringRef attributesOfDocumentLinks();
-    JSStringRef attributesOfChildren();
-    JSStringRef parameterizedAttributeNames();
-    void increment();
-    void decrement();
-    void showMenu();
-    void press();
-
-    // Attributes - platform-independent implementations
-    JSStringRef stringAttributeValue(JSStringRef attribute);
-    double numberAttributeValue(JSStringRef attribute);
-    AccessibilityUIElement uiElementAttributeValue(JSStringRef attribute) const;    
-    bool boolAttributeValue(JSStringRef attribute);
-    bool isAttributeSupported(JSStringRef attribute);
-    bool isAttributeSettable(JSStringRef attribute);
-    bool isPressActionSupported();
-    bool isIncrementActionSupported();
-    bool isDecrementActionSupported();
-    JSStringRef role();
-    JSStringRef subrole();
-    JSStringRef roleDescription();
-    JSStringRef title();
-    JSStringRef description();
-    JSStringRef language();
-    JSStringRef stringValue();
-    JSStringRef accessibilityValue() const;
-    JSStringRef helpText() const;
-    JSStringRef orientation() const;
-    double x();
-    double y();
-    double width();
-    double height();
-    double intValue() const;
-    double minValue();
-    double maxValue();
-    JSStringRef valueDescription();
-    int insertionPointLineNumber();
-    JSStringRef selectedTextRange();
-    bool isEnabled();
-    bool isRequired() const;
-    
-    bool isFocused() const;
-    bool isFocusable() const;
-    bool isSelected() const;
-    bool isSelectable() const;
-    bool isMultiSelectable() const;
-    bool isSelectedOptionActive() const;
-    void setSelectedChild(AccessibilityUIElement*) const;
-    unsigned selectedChildrenCount() const;
-    AccessibilityUIElement selectedChildAtIndex(unsigned) const;
-    
-    bool isExpanded() const;
-    bool isChecked() const;
-    bool isVisible() const;
-    bool isOffScreen() const;
-    bool isCollapsed() const;
-    bool isIgnored() const;
-    bool hasPopup() const;
-    int hierarchicalLevel() const;
-    double clickPointX();
-    double clickPointY();
-    JSStringRef documentEncoding();
-    JSStringRef documentURI();
-    JSStringRef url();
-
-    // CSS3-speech properties.
-    JSStringRef speak();
-    
-    // Table-specific attributes
-    JSStringRef attributesOfColumnHeaders();
-    JSStringRef attributesOfRowHeaders();
-    JSStringRef attributesOfColumns();
-    JSStringRef attributesOfRows();
-    JSStringRef attributesOfVisibleCells();
-    JSStringRef attributesOfHeader();
-    int indexInTable();
-    JSStringRef rowIndexRange();
-    JSStringRef columnIndexRange();
-    int rowCount();
-    int columnCount();
-    
-    // Tree/Outline specific attributes
-    AccessibilityUIElement selectedRowAtIndex(unsigned);
-    AccessibilityUIElement disclosedByRow();
-    AccessibilityUIElement disclosedRowAtIndex(unsigned);
-    AccessibilityUIElement rowAtIndex(unsigned);
-
-    // ARIA specific
-    AccessibilityUIElement ariaOwnsElementAtIndex(unsigned);
-    AccessibilityUIElement ariaFlowToElementAtIndex(unsigned);
-
-    // ARIA Drag and Drop
-    bool ariaIsGrabbed() const;
-    // A space concatentated string of all the drop effects.
-    JSStringRef ariaDropEffects() const;
-    
-    // Parameterized attributes
-    int lineForIndex(int);
-    JSStringRef rangeForLine(int);
-    JSStringRef rangeForPosition(int x, int y);
-    JSStringRef boundsForRange(unsigned location, unsigned length);
-    void setSelectedTextRange(unsigned location, unsigned length);
-    JSStringRef stringForRange(unsigned location, unsigned length);
-    JSStringRef attributedStringForRange(unsigned location, unsigned length);
-    bool attributedStringRangeIsMisspelled(unsigned location, unsigned length);
-    AccessibilityUIElement uiElementForSearchPredicate(AccessibilityUIElement* startElement, bool isDirectionNext, JSStringRef searchKey, JSStringRef searchText);
-#if PLATFORM(IOS)
-    void elementsForRange(unsigned location, unsigned length, Vector<AccessibilityUIElement>& elements);
-    JSStringRef stringForSelection();
-    void increaseTextSelection();
-    void decreaseTextSelection();
-    AccessibilityUIElement linkedElement();
-#endif
-
-    // Table-specific
-    AccessibilityUIElement cellForColumnAndRow(unsigned column, unsigned row);
-
-    // Scrollarea-specific
-    AccessibilityUIElement horizontalScrollbar() const;
-    AccessibilityUIElement verticalScrollbar() const;
-
-    // Text markers.
-    AccessibilityTextMarkerRange textMarkerRangeForElement(AccessibilityUIElement*);    
-    AccessibilityTextMarkerRange textMarkerRangeForMarkers(AccessibilityTextMarker* startMarker, AccessibilityTextMarker* endMarker);
-    AccessibilityTextMarker startTextMarkerForTextMarkerRange(AccessibilityTextMarkerRange*);
-    AccessibilityTextMarker endTextMarkerForTextMarkerRange(AccessibilityTextMarkerRange*);
-    AccessibilityTextMarker textMarkerForPoint(int x, int y);
-    AccessibilityTextMarker previousTextMarker(AccessibilityTextMarker*);
-    AccessibilityTextMarker nextTextMarker(AccessibilityTextMarker*);
-    AccessibilityUIElement accessibilityElementForTextMarker(AccessibilityTextMarker*);
-    JSStringRef stringForTextMarkerRange(AccessibilityTextMarkerRange*);
-    int textMarkerRangeLength(AccessibilityTextMarkerRange*);
-    bool attributedStringForTextMarkerRangeContainsAttribute(JSStringRef, AccessibilityTextMarkerRange*);
-    int indexForTextMarker(AccessibilityTextMarker*);
-    bool isTextMarkerValid(AccessibilityTextMarker*);
-    AccessibilityTextMarker textMarkerForIndex(int);
-    
-    void scrollToMakeVisible();
-    void scrollToMakeVisibleWithSubFocus(int x, int y, int width, int height);
-    void scrollToGlobalPoint(int x, int y);
-
-    // Notifications
-    // Function callback should take one argument, the name of the notification.
-    bool addNotificationListener(JSObjectRef functionCallback);
-    // Make sure you call remove, because you can't rely on objects being deallocated in a timely fashion.
-    void removeNotificationListener();
-    
-#if PLATFORM(IOS)
-    JSStringRef iphoneLabel();
-    JSStringRef iphoneValue();
-    JSStringRef iphoneTraits();
-    JSStringRef iphoneHint();
-    JSStringRef iphoneIdentifier();
-    bool iphoneIsElement();
-    int iphoneElementTextPosition();
-    int iphoneElementTextLength();
-    AccessibilityUIElement headerElementAtIndex(unsigned);
-    // This will simulate the accessibilityDidBecomeFocused API in UIKit.
-    void assistiveTechnologySimulatedFocus();
-#endif // PLATFORM(IOS)
-
-#if PLATFORM(MAC) && !PLATFORM(IOS)
-    // Returns an ordered list of supported actions for an element.
-    JSStringRef supportedActions();
-#endif
-    
-private:
-    static JSClassRef getJSClass();
-    PlatformUIElement m_element;
-    
-    // A retained, platform specific object used to help manage notifications for this object.
-#if PLATFORM(MAC)
-    NotificationHandler m_notificationHandler;
-#endif
-};
-
-#endif // AccessibilityUIElement_h
diff --git a/Tools/DumpRenderTree/CyclicRedundancyCheck.cpp b/Tools/DumpRenderTree/CyclicRedundancyCheck.cpp
deleted file mode 100644
index 5622253..0000000
--- a/Tools/DumpRenderTree/CyclicRedundancyCheck.cpp
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
- * Copyright (C) 2010, Robert Eisele <robert@xarg.org> All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *     * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "CyclicRedundancyCheck.h"
-
-#include <wtf/Vector.h>
-
-static void makeCrcTable(unsigned crcTable[256])
-{
-    for (unsigned i = 0; i < 256; i++) {
-        unsigned c = i;
-        for (int k = 0; k < 8; k++) {
-            if (c & 1)
-                c = -306674912 ^ ((c >> 1) & 0x7fffffff);
-            else
-                c = c >> 1;
-        }
-        crcTable[i] = c;
-    }
-}
-
-unsigned computeCrc(const Vector<unsigned char>& buffer)
-{
-    static unsigned crcTable[256];
-    static bool crcTableComputed = false;
-    if (!crcTableComputed) {
-        makeCrcTable(crcTable);
-        crcTableComputed = true;
-    }
-
-    unsigned crc = 0xffffffffU;
-    for (size_t i = 0; i < buffer.size(); ++i)
-        crc = crcTable[(crc ^ buffer[i]) & 0xff] ^ ((crc >> 8) & 0x00ffffffU);
-    return crc ^ 0xffffffffU;
-}
-
diff --git a/Tools/DumpRenderTree/CyclicRedundancyCheck.h b/Tools/DumpRenderTree/CyclicRedundancyCheck.h
deleted file mode 100644
index ef1d78e..0000000
--- a/Tools/DumpRenderTree/CyclicRedundancyCheck.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *     * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef CyclicRedundancyCheck_h
-#define CyclicRedundancyCheck_h
-
-#include <wtf/Vector.h>
-
-unsigned computeCrc(const Vector<unsigned char>&);
-
-#endif
diff --git a/Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp b/Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp
index c4a666c..9825a51 100644
--- a/Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp
+++ b/Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp
@@ -34,16 +34,6 @@
         'tools_dir': '../..',
         'source_dir': '../../../Source',
         'conditions': [
-            # Location of the chromium src directory and target type is different
-            # if webkit is built inside chromium or as standalone project.
-            ['inside_chromium_build==0', {
-                # Webkit is being built outside of the full chromium project.
-                # e.g. via build-webkit --chromium
-                'chromium_src_dir': '<(source_dir)/WebKit/chromium',
-            },{
-                # WebKit is checked out in src/chromium/third_party/WebKit
-                'chromium_src_dir': '<(tools_dir)/../../..',
-            }],
             ['OS=="linux"', {
                 'use_custom_freetype%': 1,
             }, {
@@ -53,14 +43,14 @@
     },
     'includes': [
         '../DumpRenderTree.gypi',
-        '../../../Source/WebKit/chromium/features.gypi',
+        '../../../Source/core/features.gypi',
     ],
     'targets': [
         {
             'target_name': 'ImageDiff',
             'type': 'executable',
             'dependencies': [
-                '<(chromium_src_dir)/webkit/support/webkit_support.gyp:webkit_support_gfx',
+                '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_support_gfx',
             ],
             'include_dirs': [
                 '<(DEPTH)',
@@ -81,7 +71,7 @@
         },
         {
             'target_name': 'TestRunner',
-            'type': 'static_library',
+            'type': '<(component)',
             'defines': [
                 'WEBTESTRUNNER_IMPLEMENTATION=1',
             ],
@@ -91,7 +81,7 @@
                 '<(source_dir)/WebKit/chromium/WebKit.gyp:webkit_test_support',
             ],
             'include_dirs': [
-                '<(chromium_src_dir)',
+                '<(DEPTH)',
                 '<(source_dir)/WebKit/chromium/public',
                 '<(DEPTH)',
                 '../chromium/TestRunner/public',
@@ -108,47 +98,42 @@
                 '<@(test_runner_files)',
             ],
             'conditions': [
-                ['inside_chromium_build == 1', {
-                    'type': '<(component)',
-                    'conditions': [
-                        ['component=="shared_library"', {
-                            'defines': [
-                                'WEBTESTRUNNER_DLL',
-                                'WEBTESTRUNNER_IMPLEMENTATION=1',
-                            ],
-                            'dependencies': [
-                                '<(chromium_src_dir)/base/base.gyp:base',
-                                '<(chromium_src_dir)/build/temp_gyp/googleurl.gyp:googleurl',
-                                '<(chromium_src_dir)/skia/skia.gyp:skia',
-                                '<(chromium_src_dir)/v8/tools/gyp/v8.gyp:v8',
-                            ],
-                            'direct_dependent_settings': {
-                                'defines': [
-                                    'WEBTESTRUNNER_DLL',
-                                ],
-                            },
-                            'export_dependent_settings': [
-                                '<(chromium_src_dir)/build/temp_gyp/googleurl.gyp:googleurl',
-                                '<(chromium_src_dir)/v8/tools/gyp/v8.gyp:v8',
-                            ],
-                            'msvs_settings': {
-                                'VCLinkerTool': {
-                                    'conditions': [
-                                        ['incremental_chrome_dll==1', {
-                                            'UseLibraryDependencyInputs': 'true',
-                                        }],
-                                    ],
-                                },
-                            },
-                        }],
+                ['component=="shared_library"', {
+                    'defines': [
+                        'WEBTESTRUNNER_DLL',
+                        'WEBTESTRUNNER_IMPLEMENTATION=1',
                     ],
+                    'dependencies': [
+                        '<(DEPTH)/base/base.gyp:base',
+                        '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl',
+                        '<(DEPTH)/skia/skia.gyp:skia',
+                        '<(DEPTH)/v8/tools/gyp/v8.gyp:v8',
+                    ],
+                    'direct_dependent_settings': {
+                        'defines': [
+                            'WEBTESTRUNNER_DLL',
+                        ],
+                    },
+                    'export_dependent_settings': [
+                        '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl',
+                        '<(DEPTH)/v8/tools/gyp/v8.gyp:v8',
+                    ],
+                    'msvs_settings': {
+                        'VCLinkerTool': {
+                            'conditions': [
+                                ['incremental_chrome_dll==1', {
+                                    'UseLibraryDependencyInputs': 'true',
+                                }],
+                            ],
+                        },
+                    },
                 }],
                 ['toolkit_uses_gtk == 1', {
                     'defines': [
                         'WTF_USE_GTK=1',
                     ],
                     'dependencies': [
-                        '<(chromium_src_dir)/build/linux/system.gyp:gtk',
+                        '<(DEPTH)/build/linux/system.gyp:gtk',
                     ],
                     'include_dirs': [
                         '<(source_dir)/WebKit/chromium/public/gtk',
@@ -201,9 +186,15 @@
                         ],
                     },
                 }],
+                # The test plugin relies on X11.
+                ['OS=="linux" and use_x11==0', {
+                    'dependencies!': [
+                        'copy_TestNetscapePlugIn',
+                    ],
+                }],
                 ['use_x11 == 1', {
                     'dependencies': [
-                        '<(chromium_src_dir)/tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
+                        '<(DEPTH)/tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
                     ],
                     'copies': [{
                         'destination': '<(PRODUCT_DIR)',
@@ -241,19 +232,19 @@
             'dependencies': [
                 'TestRunner',
                 'DumpRenderTree_resources',
-                '<(source_dir)/WebKit/chromium/WebKit.gyp:inspector_resources',
+                '<(source_dir)/devtools/devtools.gyp:devtools_frontend_resources',
                 '<(source_dir)/WebKit/chromium/WebKit.gyp:webkit',
                 '<(source_dir)/WebKit/chromium/WebKit.gyp:webkit_wtf_support',
-                '<(source_dir)/WTF/WTF.gyp/WTF.gyp:wtf',
-                '<(chromium_src_dir)/base/base.gyp:test_support_base',
-                '<(chromium_src_dir)/build/temp_gyp/googleurl.gyp:googleurl',
-                '<(chromium_src_dir)/third_party/icu/icu.gyp:icuuc',
-                '<(chromium_src_dir)/third_party/mesa/mesa.gyp:osmesa',
-                '<(chromium_src_dir)/v8/tools/gyp/v8.gyp:v8',
-                '<(chromium_src_dir)/webkit/support/webkit_support.gyp:webkit_support',
+                '<(source_dir)/wtf/wtf.gyp:wtf',
+                '<(DEPTH)/base/base.gyp:test_support_base',
+                '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl',
+                '<(DEPTH)/third_party/icu/icu.gyp:icuuc',
+                '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa',
+                '<(DEPTH)/v8/tools/gyp/v8.gyp:v8',
+                '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_support',
             ],
             'include_dirs': [
-                '<(chromium_src_dir)',
+                '<(DEPTH)',
                 '<(source_dir)/WebKit/chromium/public',
                 '<(tools_dir)/DumpRenderTree',
                 '<(DEPTH)',
@@ -276,8 +267,8 @@
                 }],
                 ['OS=="win"', {
                     'dependencies': [
-                        '<(chromium_src_dir)/third_party/angle/src/build_angle.gyp:libEGL',
-                        '<(chromium_src_dir)/third_party/angle/src/build_angle.gyp:libGLESv2',
+                        '<(DEPTH)/third_party/angle/src/build_angle.gyp:libEGL',
+                        '<(DEPTH)/third_party/angle/src/build_angle.gyp:libGLESv2',
                     ],
                     'resource_include_dirs': ['<(SHARED_INTERMEDIATE_DIR)/webkit'],
                     'sources': [
@@ -287,19 +278,15 @@
                         '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_resources.rc',
                         '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_en-US.rc',
                     ],
-                    'conditions': [
-                        ['inside_chromium_build==1', {
-                            'configurations': {
-                                'Debug_Base': {
-                                    'msvs_settings': {
-                                        'VCLinkerTool': {
-                                            'LinkIncremental': '<(msvs_large_module_debug_link_mode)',
-                                        },
-                                    },
+                    'configurations': {
+                        'Debug_Base': {
+                            'msvs_settings': {
+                                'VCLinkerTool': {
+                                    'LinkIncremental': '<(msvs_large_module_debug_link_mode)',
                                 },
                             },
-                        }],
-                    ],
+                        },
+                    },
                 },{ # OS!="win"
                     'sources/': [
                         ['exclude', 'Win\\.cpp$'],
@@ -322,7 +309,7 @@
                 }],
                 ['use_x11 == 1', {
                     'dependencies': [
-                        '<(chromium_src_dir)/build/linux/system.gyp:fontconfig',
+                        '<(DEPTH)/build/linux/system.gyp:fontconfig',
                     ],
                     'variables': {
                         # FIXME: Enable warnings on other platforms.
@@ -331,7 +318,7 @@
                     'conditions': [
                         ['linux_use_tcmalloc == 1', {
                             'dependencies': [
-                                '<(chromium_src_dir)/base/allocator/allocator.gyp:allocator',
+                                '<(DEPTH)/base/allocator/allocator.gyp:allocator',
                             ],
                         }],
                     ],
@@ -345,7 +332,7 @@
                         'WTF_USE_GTK=1',
                     ],
                     'dependencies': [
-                        '<(chromium_src_dir)/build/linux/system.gyp:gtk',
+                        '<(DEPTH)/build/linux/system.gyp:gtk',
                     ],
                     'include_dirs': [
                         '<(source_dir)/WebKit/chromium/public/gtk',
@@ -354,10 +341,10 @@
                 ['OS=="android"', {
                     'type': 'shared_library',
                     'dependencies': [
-                        '<(chromium_src_dir)/base/base.gyp:test_support_base',
-                        '<(chromium_src_dir)/testing/android/native_test.gyp:native_test_native_code',
-                        '<(chromium_src_dir)/tools/android/forwarder/forwarder.gyp:forwarder',
-                        '<(chromium_src_dir)/tools/android/md5sum/md5sum.gyp:md5sum',
+                        '<(DEPTH)/base/base.gyp:test_support_base',
+                        '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code',
+                        '<(DEPTH)/tools/android/forwarder/forwarder.gyp:forwarder',
+                        '<(DEPTH)/tools/android/md5sum/md5sum.gyp:md5sum',
                     ],
                 }, { # OS!="android"
                     'sources/': [
@@ -366,29 +353,24 @@
                 }],
                 ['use_custom_freetype==1', {
                    'dependencies': [
-                       '<(chromium_src_dir)/third_party/freetype2/freetype2.gyp:freetype2',
+                       '<(DEPTH)/third_party/freetype2/freetype2.gyp:freetype2',
                    ],
                 }],
-                ['inside_chromium_build==0', {
-                    'dependencies': [
-                        '<(chromium_src_dir)/webkit/support/setup_third_party.gyp:third_party_headers',
-                    ]
-                }],
             ],
         },
         {
             'target_name': 'DumpRenderTree_resources',
             'type': 'none',
             'dependencies': [
-                '<(chromium_src_dir)/net/net.gyp:net_resources',
-                '<(chromium_src_dir)/ui/ui.gyp:ui_resources',
-                '<(chromium_src_dir)/webkit/support/webkit_support.gyp:webkit_resources',
-                '<(chromium_src_dir)/webkit/support/webkit_support.gyp:webkit_strings',
+                '<(DEPTH)/net/net.gyp:net_resources',
+                '<(DEPTH)/ui/ui.gyp:ui_resources',
+                '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_resources',
+                '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_strings',
             ],
             'actions': [{
                 'action_name': 'repack_local',
                 'variables': {
-                    'repack_path': '<(chromium_src_dir)/tools/grit/grit/format/repack.py',
+                    'repack_path': '<(DEPTH)/tools/grit/grit/format/repack.py',
                     'pak_inputs': [
                         '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.pak',
                         '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.pak',
@@ -420,10 +402,10 @@
             'type': 'loadable_module',
             'sources': [ '<@(test_plugin_files)' ],
             'dependencies': [
-                '<(chromium_src_dir)/third_party/npapi/npapi.gyp:npapi',
+                '<(DEPTH)/third_party/npapi/npapi.gyp:npapi',
             ],
             'include_dirs': [
-                '<(chromium_src_dir)',
+                '<(DEPTH)',
                 '<(tools_dir)/DumpRenderTree/TestNetscapePlugIn',
                 '<(tools_dir)/DumpRenderTree/chromium/TestNetscapePlugIn/ForwardingHeaders',
             ],
@@ -513,7 +495,7 @@
                 },
             }],
         }],
-        ['os_posix==1 and OS!="mac" and gcc_version>=46', {
+        ['gcc_version>=46', {
             'target_defaults': {
                 # Disable warnings about c++0x compatibility, as some names (such
                 # as nullptr) conflict with upcoming c++0x types.
@@ -526,67 +508,16 @@
                 'target_name': 'DumpRenderTree_apk',
                 'type': 'none',
                 'dependencies': [
-                    '<(chromium_src_dir)/base/base.gyp:base_java',
-                    '<(chromium_src_dir)/media/media.gyp:media_java',
-                    '<(chromium_src_dir)/net/net.gyp:net_java',
+                    '<(DEPTH)/base/base.gyp:base_java',
+                    '<(DEPTH)/media/media.gyp:media_java',
+                    '<(DEPTH)/net/net.gyp:net_java',
                     'DumpRenderTree',
                 ],
                 'variables': {
+                    'test_suite_name': 'DumpRenderTree',
                     'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)DumpRenderTree<(SHARED_LIB_SUFFIX)',
-                    'conditions': [
-                        ['inside_chromium_build==1', {
-                            'ant_build_to_chromium_src': '<(ant_build_out)/../../',
-                        }, {
-                            'ant_build_to_chromium_src': '<(chromium_src_dir)',
-                        }],
-                    ],
                 },
-                # Part of the following was copied from <(chromium_src_dir)/build/apk_test.gpyi.
-                # Not including it because gyp include doesn't support variable in path or under
-                # conditions. And we also have some different requirements.
-                'actions': [{
-                    'action_name': 'apk_DumpRenderTree',
-                    'message': 'Building DumpRenderTree test apk.',
-                    'inputs': [
-                        '<(chromium_src_dir)/testing/android/AndroidManifest.xml',
-                        '<(chromium_src_dir)/testing/android/generate_native_test.py',
-                        '<(input_shlib_path)',
-                        '>@(input_jars_paths)',
-                    ],
-                    'outputs': [
-                        '<(PRODUCT_DIR)/DumpRenderTree_apk/DumpRenderTree-debug.apk',
-                    ],
-                    'action': [
-                        '<(chromium_src_dir)/testing/android/generate_native_test.py',
-                        '--native_library',
-                        '<(input_shlib_path)',
-                        '--output',
-                        '<(PRODUCT_DIR)/DumpRenderTree_apk',
-                        '--strip-binary=<(android_strip)',
-                        '--ant-args',
-                        '-quiet',
-                        '--ant-args',
-                        '-DANDROID_SDK=<(android_sdk)',
-                        '--ant-args',
-                        '-DANDROID_SDK_ROOT=<(android_sdk_root)',
-                        '--ant-args',
-                        '-DANDROID_SDK_TOOLS=<(android_sdk_tools)',
-                        '--ant-args',
-                        '-DANDROID_SDK_VERSION=<(android_sdk_version)',
-                        '--ant-args',
-                        '-DANDROID_TOOLCHAIN=<(android_toolchain)',
-                        '--ant-args',
-                        '-DANDROID_GDBSERVER=<(android_gdbserver)',
-                        '--ant-args',
-                        '-DPRODUCT_DIR=<(ant_build_out)',
-                        '--ant-args',
-                        '-DCHROMIUM_SRC=<(ant_build_to_chromium_src)',
-                        '--ant-args',
-                        '-DINPUT_JARS_PATHS=>@(input_jars_paths)',
-                        '--app_abi',
-                        '<(android_app_abi)',
-                    ],
-                }],
+                'includes': [ '../../../../../build/apk_test.gypi' ],
             }],
         }],
         ['clang==1', {
diff --git a/Tools/DumpRenderTree/DumpRenderTree.gypi b/Tools/DumpRenderTree/DumpRenderTree.gypi
index 32155df..7ce8140 100644
--- a/Tools/DumpRenderTree/DumpRenderTree.gypi
+++ b/Tools/DumpRenderTree/DumpRenderTree.gypi
@@ -114,6 +114,7 @@
             'TestNetscapePlugIn/Tests/GetURLWithJavaScriptURLDestroyingPlugin.cpp',
             'TestNetscapePlugIn/Tests/GetUserAgentWithNullNPPFromNPPNew.cpp',
             'TestNetscapePlugIn/Tests/LogNPPSetWindow.cpp',
+            'TestNetscapePlugIn/Tests/NPDeallocateCalledBeforeNPShutdown.cpp',
             'TestNetscapePlugIn/Tests/NPPNewFails.cpp',
             'TestNetscapePlugIn/Tests/NPRuntimeCallsWithNullNPP.cpp',
             'TestNetscapePlugIn/Tests/NPRuntimeObjectFromDestroyedPlugin.cpp',
@@ -122,7 +123,6 @@
             'TestNetscapePlugIn/Tests/PassDifferentNPPStruct.cpp',
             'TestNetscapePlugIn/Tests/PluginScriptableNPObjectInvokeDefault.cpp',
             'TestNetscapePlugIn/Tests/PluginScriptableObjectOverridesAllProperties.cpp',
-            'TestNetscapePlugIn/Tests/PrivateBrowsing.cpp',
             'TestNetscapePlugIn/main.cpp',
         ],
     }
diff --git a/Tools/DumpRenderTree/DumpRenderTree.h b/Tools/DumpRenderTree/DumpRenderTree.h
index 62789b5..8cc13ca 100644
--- a/Tools/DumpRenderTree/DumpRenderTree.h
+++ b/Tools/DumpRenderTree/DumpRenderTree.h
@@ -34,20 +34,6 @@
 #include <wtf/Platform.h>
 #endif
 
-#if PLATFORM(MAC)
-#include "DumpRenderTreeMac.h"
-#elif PLATFORM(WIN)
-#include "DumpRenderTreeWin.h"
-#elif PLATFORM(GTK)
-#include "DumpRenderTreeGtk.h"
-#elif PLATFORM(WX)
-#include "DumpRenderTreeWx.h"
-#elif PLATFORM(EFL)
-#include "DumpRenderTreeEfl.h"
-#elif PLATFORM(BLACKBERRY)
-#include "DumpRenderTreeBlackBerry.h"
-#endif
-
 #include <string>
 #include <wtf/RefPtr.h>
 
diff --git a/Tools/DumpRenderTree/DumpRenderTree.sln b/Tools/DumpRenderTree/DumpRenderTree.sln
deleted file mode 100644
index 5a9a70a..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.sln
+++ /dev/null
@@ -1,100 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 9.00
-# Visual Studio 2005
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DumpRenderTree", "win\DumpRenderTree.vcproj", "{6567DFD4-D6DE-4CD5-825D-17E353D160E1}"
-	ProjectSection(ProjectDependencies) = postProject
-		{C0737398-3565-439E-A2B8-AB2BE4D5430C} = {C0737398-3565-439E-A2B8-AB2BE4D5430C}
-	EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestNetscapePlugin", "TestNetscapePlugin\win\TestNetscapePlugin.vcproj", "{C0737398-3565-439E-A2B8-AB2BE4D5430C}"
-	ProjectSection(ProjectDependencies) = postProject
-		{DD7949B6-F2B4-47C2-9C42-E21E84CB1017} = {DD7949B6-F2B4-47C2-9C42-E21E84CB1017}
-	EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ImageDiff", "win\ImageDiff.vcproj", "{59CC0547-70AC-499C-9B19-EC01C6F61137}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DumpRenderTreeLauncher", "win\DumpRenderTreeLauncher.vcproj", "{2974EA02-840B-4995-8719-8920A61006F1}"
-	ProjectSection(ProjectDependencies) = postProject
-		{6567DFD4-D6DE-4CD5-825D-17E353D160E1} = {6567DFD4-D6DE-4CD5-825D-17E353D160E1}
-	EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ImageDiffLauncher", "win\ImageDiffLauncher.vcproj", "{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}"
-	ProjectSection(ProjectDependencies) = postProject
-		{59CC0547-70AC-499C-9B19-EC01C6F61137} = {59CC0547-70AC-499C-9B19-EC01C6F61137}
-	EndProjectSection
-EndProject
-Global
-	GlobalSection(SolutionConfigurationPlatforms) = preSolution
-		Debug_All|Win32 = Debug_All|Win32
-		Debug_Cairo_CFLite|Win32 = Debug_Cairo_CFLite|Win32
-		Debug|Win32 = Debug|Win32
-		Production|Win32 = Production|Win32
-		Release_Cairo_CFLite|Win32 = Release_Cairo_CFLite|Win32
-		Release|Win32 = Release|Win32
-	EndGlobalSection
-	GlobalSection(ProjectConfigurationPlatforms) = postSolution
-		{6567DFD4-D6DE-4CD5-825D-17E353D160E1}.Debug_All|Win32.ActiveCfg = Debug_All|Win32
-		{6567DFD4-D6DE-4CD5-825D-17E353D160E1}.Debug_All|Win32.Build.0 = Debug_All|Win32
-		{6567DFD4-D6DE-4CD5-825D-17E353D160E1}.Debug_Cairo_CFLite|Win32.ActiveCfg = Debug_Cairo_CFLite|Win32
-		{6567DFD4-D6DE-4CD5-825D-17E353D160E1}.Debug_Cairo_CFLite|Win32.Build.0 = Debug_Cairo_CFLite|Win32
-		{6567DFD4-D6DE-4CD5-825D-17E353D160E1}.Debug|Win32.ActiveCfg = Debug|Win32
-		{6567DFD4-D6DE-4CD5-825D-17E353D160E1}.Debug|Win32.Build.0 = Debug|Win32
-		{6567DFD4-D6DE-4CD5-825D-17E353D160E1}.Production|Win32.ActiveCfg = Production|Win32
-		{6567DFD4-D6DE-4CD5-825D-17E353D160E1}.Production|Win32.Build.0 = Production|Win32
-		{6567DFD4-D6DE-4CD5-825D-17E353D160E1}.Release_Cairo_CFLite|Win32.ActiveCfg = Release_Cairo_CFLite|Win32
-		{6567DFD4-D6DE-4CD5-825D-17E353D160E1}.Release_Cairo_CFLite|Win32.Build.0 = Release_Cairo_CFLite|Win32
-		{6567DFD4-D6DE-4CD5-825D-17E353D160E1}.Release|Win32.ActiveCfg = Release|Win32
-		{6567DFD4-D6DE-4CD5-825D-17E353D160E1}.Release|Win32.Build.0 = Release|Win32
-		{C0737398-3565-439E-A2B8-AB2BE4D5430C}.Debug_All|Win32.ActiveCfg = Debug_All|Win32
-		{C0737398-3565-439E-A2B8-AB2BE4D5430C}.Debug_All|Win32.Build.0 = Debug_All|Win32
-		{C0737398-3565-439E-A2B8-AB2BE4D5430C}.Debug_Cairo_CFLite|Win32.ActiveCfg = Debug_Cairo_CFLite|Win32
-		{C0737398-3565-439E-A2B8-AB2BE4D5430C}.Debug_Cairo_CFLite|Win32.Build.0 = Debug_Cairo_CFLite|Win32
-		{C0737398-3565-439E-A2B8-AB2BE4D5430C}.Debug|Win32.ActiveCfg = Debug|Win32
-		{C0737398-3565-439E-A2B8-AB2BE4D5430C}.Debug|Win32.Build.0 = Debug|Win32
-		{C0737398-3565-439E-A2B8-AB2BE4D5430C}.Production|Win32.ActiveCfg = Production|Win32
-		{C0737398-3565-439E-A2B8-AB2BE4D5430C}.Production|Win32.Build.0 = Production|Win32
-		{C0737398-3565-439E-A2B8-AB2BE4D5430C}.Release_Cairo_CFLite|Win32.ActiveCfg = Release_Cairo_CFLite|Win32
-		{C0737398-3565-439E-A2B8-AB2BE4D5430C}.Release_Cairo_CFLite|Win32.Build.0 = Release_Cairo_CFLite|Win32
-		{C0737398-3565-439E-A2B8-AB2BE4D5430C}.Release|Win32.ActiveCfg = Release|Win32
-		{C0737398-3565-439E-A2B8-AB2BE4D5430C}.Release|Win32.Build.0 = Release|Win32
-		{59CC0547-70AC-499C-9B19-EC01C6F61137}.Debug_All|Win32.ActiveCfg = Debug_All|Win32
-		{59CC0547-70AC-499C-9B19-EC01C6F61137}.Debug_All|Win32.Build.0 = Debug_All|Win32
-		{59CC0547-70AC-499C-9B19-EC01C6F61137}.Debug_Cairo_CFLite|Win32.ActiveCfg = Debug_Cairo_CFLite|Win32
-		{59CC0547-70AC-499C-9B19-EC01C6F61137}.Debug_Cairo_CFLite|Win32.Build.0 = Debug_Cairo_CFLite|Win32
-		{59CC0547-70AC-499C-9B19-EC01C6F61137}.Debug|Win32.ActiveCfg = Debug|Win32
-		{59CC0547-70AC-499C-9B19-EC01C6F61137}.Debug|Win32.Build.0 = Debug|Win32
-		{59CC0547-70AC-499C-9B19-EC01C6F61137}.Production|Win32.ActiveCfg = Production|Win32
-		{59CC0547-70AC-499C-9B19-EC01C6F61137}.Production|Win32.Build.0 = Production|Win32
-		{59CC0547-70AC-499C-9B19-EC01C6F61137}.Release_Cairo_CFLite|Win32.ActiveCfg = Release_Cairo_CFLite|Win32
-		{59CC0547-70AC-499C-9B19-EC01C6F61137}.Release_Cairo_CFLite|Win32.Build.0 = Release_Cairo_CFLite|Win32
-		{59CC0547-70AC-499C-9B19-EC01C6F61137}.Release|Win32.ActiveCfg = Release|Win32
-		{59CC0547-70AC-499C-9B19-EC01C6F61137}.Release|Win32.Build.0 = Release|Win32
-		{2974EA02-840B-4995-8719-8920A61006F1}.Debug_All|Win32.ActiveCfg = Debug_All|Win32
-		{2974EA02-840B-4995-8719-8920A61006F1}.Debug_All|Win32.Build.0 = Debug_All|Win32
-		{2974EA02-840B-4995-8719-8920A61006F1}.Debug_Cairo_CFLite|Win32.ActiveCfg = Debug_Cairo_CFLite|Win32
-		{2974EA02-840B-4995-8719-8920A61006F1}.Debug_Cairo_CFLite|Win32.Build.0 = Debug_Cairo_CFLite|Win32
-		{2974EA02-840B-4995-8719-8920A61006F1}.Debug|Win32.ActiveCfg = Debug|Win32
-		{2974EA02-840B-4995-8719-8920A61006F1}.Debug|Win32.Build.0 = Debug|Win32
-		{2974EA02-840B-4995-8719-8920A61006F1}.Production|Win32.ActiveCfg = Production|Win32
-		{2974EA02-840B-4995-8719-8920A61006F1}.Production|Win32.Build.0 = Production|Win32
-		{2974EA02-840B-4995-8719-8920A61006F1}.Release_Cairo_CFLite|Win32.ActiveCfg = Release_Cairo_CFLite|Win32
-		{2974EA02-840B-4995-8719-8920A61006F1}.Release_Cairo_CFLite|Win32.Build.0 = Release_Cairo_CFLite|Win32
-		{2974EA02-840B-4995-8719-8920A61006F1}.Release|Win32.ActiveCfg = Release|Win32
-		{2974EA02-840B-4995-8719-8920A61006F1}.Release|Win32.Build.0 = Release|Win32
-		{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}.Debug_All|Win32.ActiveCfg = Debug_All|Win32
-		{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}.Debug_All|Win32.Build.0 = Debug_All|Win32
-		{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}.Debug_Cairo_CFLite|Win32.ActiveCfg = Debug_Cairo_CFLite|Win32
-		{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}.Debug_Cairo_CFLite|Win32.Build.0 = Debug_Cairo_CFLite|Win32
-		{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}.Debug|Win32.ActiveCfg = Debug|Win32
-		{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}.Debug|Win32.Build.0 = Debug|Win32
-		{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}.Production|Win32.ActiveCfg = Production|Win32
-		{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}.Production|Win32.Build.0 = Production|Win32
-		{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}.Release_Cairo_CFLite|Win32.ActiveCfg = Release_Cairo_CFLite|Win32
-		{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}.Release_Cairo_CFLite|Win32.Build.0 = Release_Cairo_CFLite|Win32
-		{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}.Release|Win32.ActiveCfg = Release|Win32
-		{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}.Release|Win32.Build.0 = Release|Win32
-	EndGlobalSection
-	GlobalSection(SolutionProperties) = preSolution
-		HideSolutionNode = FALSE
-	EndGlobalSection
-EndGlobal
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree.sln b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree.sln
deleted file mode 100644
index 285e252..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree.sln
+++ /dev/null
@@ -1,56 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 11.00
-# Visual Studio 2010
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestNetscapePlugin", "TestNetscapePlugin\TestNetscapePlugin.vcxproj", "{C0737398-3565-439E-A2B8-AB2BE4D5430C}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ImageDiffLauncher", "ImageDiff\ImageDiffLauncher.vcxproj", "{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}"
-	ProjectSection(ProjectDependencies) = postProject
-		{59CC0547-70AC-499C-9B19-EC01C6F61137} = {59CC0547-70AC-499C-9B19-EC01C6F61137}
-	EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ImageDiff", "ImageDiff\ImageDiff.vcxproj", "{59CC0547-70AC-499C-9B19-EC01C6F61137}"
-	ProjectSection(ProjectDependencies) = postProject
-		{C0737398-3565-439E-A2B8-AB2BE4D5430C} = {C0737398-3565-439E-A2B8-AB2BE4D5430C}
-	EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DumpRenderTree", "DumpRenderTree\DumpRenderTree.vcxproj", "{6567DFD4-D6DE-4CD5-825D-17E353D160E1}"
-	ProjectSection(ProjectDependencies) = postProject
-		{DD7949B6-F2B4-47C2-9C42-E21E84CB1017} = {DD7949B6-F2B4-47C2-9C42-E21E84CB1017}
-	EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DumpRenderTreeLauncher", "DumpRenderTree\DumpRenderTreeLauncher.vcxproj", "{2974EA02-840B-4995-8719-8920A61006F1}"
-	ProjectSection(ProjectDependencies) = postProject
-		{6567DFD4-D6DE-4CD5-825D-17E353D160E1} = {6567DFD4-D6DE-4CD5-825D-17E353D160E1}
-	EndProjectSection
-EndProject
-Global
-	GlobalSection(SolutionConfigurationPlatforms) = preSolution
-		Debug|Win32 = Debug|Win32
-		Release|Win32 = Release|Win32
-	EndGlobalSection
-	GlobalSection(ProjectConfigurationPlatforms) = postSolution
-		{C0737398-3565-439E-A2B8-AB2BE4D5430C}.Debug|Win32.ActiveCfg = Debug|Win32
-		{C0737398-3565-439E-A2B8-AB2BE4D5430C}.Debug|Win32.Build.0 = Debug|Win32
-		{C0737398-3565-439E-A2B8-AB2BE4D5430C}.Release|Win32.ActiveCfg = Release|Win32
-		{C0737398-3565-439E-A2B8-AB2BE4D5430C}.Release|Win32.Build.0 = Release|Win32
-		{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}.Debug|Win32.ActiveCfg = Debug|Win32
-		{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}.Debug|Win32.Build.0 = Debug|Win32
-		{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}.Release|Win32.ActiveCfg = Release|Win32
-		{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}.Release|Win32.Build.0 = Release|Win32
-		{59CC0547-70AC-499C-9B19-EC01C6F61137}.Debug|Win32.ActiveCfg = Debug|Win32
-		{59CC0547-70AC-499C-9B19-EC01C6F61137}.Debug|Win32.Build.0 = Debug|Win32
-		{59CC0547-70AC-499C-9B19-EC01C6F61137}.Release|Win32.ActiveCfg = Release|Win32
-		{59CC0547-70AC-499C-9B19-EC01C6F61137}.Release|Win32.Build.0 = Release|Win32
-		{6567DFD4-D6DE-4CD5-825D-17E353D160E1}.Debug|Win32.ActiveCfg = Debug|Win32
-		{6567DFD4-D6DE-4CD5-825D-17E353D160E1}.Debug|Win32.Build.0 = Debug|Win32
-		{6567DFD4-D6DE-4CD5-825D-17E353D160E1}.Release|Win32.ActiveCfg = Release|Win32
-		{6567DFD4-D6DE-4CD5-825D-17E353D160E1}.Release|Win32.Build.0 = Release|Win32
-		{2974EA02-840B-4995-8719-8920A61006F1}.Debug|Win32.ActiveCfg = Debug|Win32
-		{2974EA02-840B-4995-8719-8920A61006F1}.Debug|Win32.Build.0 = Debug|Win32
-		{2974EA02-840B-4995-8719-8920A61006F1}.Release|Win32.ActiveCfg = Release|Win32
-		{2974EA02-840B-4995-8719-8920A61006F1}.Release|Win32.Build.0 = Release|Win32
-	EndGlobalSection
-	GlobalSection(SolutionProperties) = preSolution
-		HideSolutionNode = FALSE
-	EndGlobalSection
-EndGlobal
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTree.vcxproj b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTree.vcxproj
deleted file mode 100644
index 5f8a752..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTree.vcxproj
+++ /dev/null
@@ -1,189 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ItemGroup Label="ProjectConfigurations">

-    <ProjectConfiguration Include="DebugSuffix|Win32">

-      <Configuration>DebugSuffix</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Debug_WinCairo|Win32">

-      <Configuration>Debug_WinCairo</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Debug|Win32">

-      <Configuration>Debug</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Production|Win32">

-      <Configuration>Production</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Release_WinCairo|Win32">

-      <Configuration>Release_WinCairo</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Release|Win32">

-      <Configuration>Release</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-  </ItemGroup>

-  <PropertyGroup Label="Globals">

-    <ProjectGuid>{6567DFD4-D6DE-4CD5-825D-17E353D160E1}</ProjectGuid>

-    <RootNamespace>DumpRenderTree</RootNamespace>

-    <Keyword>Win32Proj</Keyword>

-  </PropertyGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">

-    <ConfigurationType>DynamicLibrary</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'" Label="Configuration">

-    <ConfigurationType>DynamicLibrary</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Production|Win32'" Label="Configuration">

-    <ConfigurationType>DynamicLibrary</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">

-    <ConfigurationType>DynamicLibrary</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'" Label="Configuration">

-    <ConfigurationType>DynamicLibrary</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'" Label="Configuration">

-    <ConfigurationType>DynamicLibrary</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />

-  <ImportGroup Label="ExtensionSettings">

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="DumpRenderTreeRelease.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="DumpRenderTreeReleaseWinCairo.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Production|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="DumpRenderTreeProduction.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="DumpRenderTreeDebug.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="DumpRenderTreeDebugWinCairo.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="DumpRenderTreeDebug.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\debugsuffix.props" />

-  </ImportGroup>

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup>

-    <_ProjectFileVersion>10.0.40219.1</_ProjectFileVersion>

-  </PropertyGroup>

-  <ItemDefinitionGroup>

-  </ItemDefinitionGroup>

-  <ItemGroup>

-    <ClCompile Include="..\..\AccessibilityController.cpp" />

-    <ClCompile Include="..\..\AccessibilityTextMarker.cpp" />

-    <ClCompile Include="..\..\AccessibilityUIElement.cpp" />

-    <ClCompile Include="..\..\cairo\PixelDumpSupportCairo.cpp">

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">true</ExcludedFromBuild>

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'">true</ExcludedFromBuild>

-    </ClCompile>

-    <ClCompile Include="..\..\cg\PixelDumpSupportCG.cpp">

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'">true</ExcludedFromBuild>

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">true</ExcludedFromBuild>

-    </ClCompile>

-    <ClCompile Include="..\..\CyclicRedundancyCheck.cpp" />

-    <ClCompile Include="..\..\DumpRenderTreeCommon.cpp" />

-    <ClCompile Include="..\..\GCController.cpp" />

-    <ClCompile Include="..\..\PixelDumpSupport.cpp" />

-    <ClCompile Include="..\..\TestRunner.cpp" />

-    <ClCompile Include="..\..\win\AccessibilityControllerWin.cpp" />

-    <ClCompile Include="..\..\win\AccessibilityUIElementWin.cpp" />

-    <ClCompile Include="..\..\win\DRTDataObject.cpp" />

-    <ClCompile Include="..\..\win\DRTDesktopNotificationPresenter.cpp" />

-    <ClCompile Include="..\..\win\DRTDropSource.cpp" />

-    <ClCompile Include="..\..\win\DumpRenderTree.cpp" />

-    <ClCompile Include="..\..\win\EditingDelegate.cpp" />

-    <ClCompile Include="..\..\win\EventSender.cpp" />

-    <ClCompile Include="..\..\win\FrameLoadDelegate.cpp" />

-    <ClCompile Include="..\..\win\GCControllerWin.cpp" />

-    <ClCompile Include="..\..\win\HistoryDelegate.cpp" />

-    <ClCompile Include="..\..\win\MD5.cpp" />

-    <ClCompile Include="..\..\win\PixelDumpSupportWin.cpp" />

-    <ClCompile Include="..\..\win\PolicyDelegate.cpp" />

-    <ClCompile Include="..\..\win\ResourceLoadDelegate.cpp" />

-    <ClCompile Include="..\..\win\TestRunnerWin.cpp" />

-    <ClCompile Include="..\..\win\TextInputController.cpp" />

-    <ClCompile Include="..\..\win\TextInputControllerWin.cpp" />

-    <ClCompile Include="..\..\win\UIDelegate.cpp" />

-    <ClCompile Include="..\..\win\WorkQueueItemWin.cpp" />

-    <ClCompile Include="..\..\WorkQueue.cpp" />

-  </ItemGroup>

-  <ItemGroup>

-    <ClInclude Include="..\..\AccessibilityController.h" />

-    <ClInclude Include="..\..\AccessibilityTextMarker.h" />

-    <ClInclude Include="..\..\AccessibilityUIElement.h" />

-    <ClInclude Include="..\..\cairo\PixelDumpSupportCairo.h">

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">true</ExcludedFromBuild>

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'">true</ExcludedFromBuild>

-    </ClInclude>

-    <ClInclude Include="..\..\cg\PixelDumpSupportCG.h">

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'">true</ExcludedFromBuild>

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">true</ExcludedFromBuild>

-    </ClInclude>

-    <ClInclude Include="..\..\config.h" />

-    <ClInclude Include="..\..\CyclicRedundancyCheck.h" />

-    <ClInclude Include="..\..\DumpRenderTree.h" />

-    <ClInclude Include="..\..\DumpRenderTreePrefix.h" />

-    <ClInclude Include="..\..\GCController.h" />

-    <ClInclude Include="..\..\PixelDumpSupport.h" />

-    <ClInclude Include="..\..\TestRunner.h" />

-    <ClInclude Include="..\..\win\DraggingInfo.h" />

-    <ClInclude Include="..\..\win\DRTDataObject.h" />

-    <ClInclude Include="..\..\win\DRTDesktopNotificationPresenter.h" />

-    <ClInclude Include="..\..\win\DRTDropSource.h" />

-    <ClInclude Include="..\..\win\DumpRenderTreeWin.h" />

-    <ClInclude Include="..\..\win\EditingDelegate.h" />

-    <ClInclude Include="..\..\win\EventSender.h" />

-    <ClInclude Include="..\..\win\FrameLoadDelegate.h" />

-    <ClInclude Include="..\..\win\HistoryDelegate.h" />

-    <ClInclude Include="..\..\win\MD5.h" />

-    <ClInclude Include="..\..\win\PolicyDelegate.h" />

-    <ClInclude Include="..\..\win\ResourceLoadDelegate.h" />

-    <ClInclude Include="..\..\win\TextInputController.h" />

-    <ClInclude Include="..\..\win\UIDelegate.h" />

-    <ClInclude Include="..\..\WorkQueue.h" />

-    <ClInclude Include="..\..\WorkQueueItem.h" />

-    <CustomBuildStep Include="MD5.h" />

-    <CustomBuildStep Include="..\cairo\PixelDumpSupportCairo.h">

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'">true</ExcludedFromBuild>

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'">true</ExcludedFromBuild>

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">true</ExcludedFromBuild>

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">true</ExcludedFromBuild>

-    </CustomBuildStep>

-    <CustomBuildStep Include="..\cg\PixelDumpSupportCG.h" />

-  </ItemGroup>

-  <ItemGroup>

-    <None Include="DumpRenderTreePostBuild.cmd" />

-    <None Include="DumpRenderTreePreBuild.cmd" />

-  </ItemGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />

-  <ImportGroup Label="ExtensionTargets">

-  </ImportGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTree.vcxproj.filters b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTree.vcxproj.filters
deleted file mode 100644
index 92151e0..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTree.vcxproj.filters
+++ /dev/null
@@ -1,195 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ItemGroup>

-    <Filter Include="Controllers">

-      <UniqueIdentifier>{f76f7e03-4f6a-46fd-a3e6-3cc4d2f7e918}</UniqueIdentifier>

-    </Filter>

-    <Filter Include="Delegates">

-      <UniqueIdentifier>{964367be-8e77-444f-9b05-7c906d89e35e}</UniqueIdentifier>

-    </Filter>

-    <Filter Include="Support">

-      <UniqueIdentifier>{59309c9f-8148-4c01-a552-888c6c065f73}</UniqueIdentifier>

-    </Filter>

-  </ItemGroup>

-  <ItemGroup>

-    <ClCompile Include="..\..\AccessibilityController.cpp">

-      <Filter>Controllers</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\GCController.cpp">

-      <Filter>Controllers</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestRunner.cpp">

-      <Filter>Controllers</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\win\AccessibilityControllerWin.cpp">

-      <Filter>Controllers</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\win\DRTDataObject.cpp">

-      <Filter>Controllers</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\win\DRTDropSource.cpp">

-      <Filter>Controllers</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\win\EventSender.cpp">

-      <Filter>Controllers</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\win\GCControllerWin.cpp">

-      <Filter>Controllers</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\win\TestRunnerWin.cpp">

-      <Filter>Controllers</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\win\TextInputController.cpp">

-      <Filter>Controllers</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\win\TextInputControllerWin.cpp">

-      <Filter>Controllers</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\win\DRTDesktopNotificationPresenter.cpp">

-      <Filter>Delegates</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\win\HistoryDelegate.cpp">

-      <Filter>Delegates</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\win\PolicyDelegate.cpp">

-      <Filter>Delegates</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\win\ResourceLoadDelegate.cpp">

-      <Filter>Delegates</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\win\UIDelegate.cpp">

-      <Filter>Delegates</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\win\EditingDelegate.cpp">

-      <Filter>Delegates</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\win\FrameLoadDelegate.cpp">

-      <Filter>Delegates</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\AccessibilityTextMarker.cpp">

-      <Filter>Support</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\win\AccessibilityUIElementWin.cpp">

-      <Filter>Support</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\AccessibilityUIElement.cpp">

-      <Filter>Support</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\CyclicRedundancyCheck.cpp">

-      <Filter>Support</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\DumpRenderTreeCommon.cpp">

-      <Filter>Support</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\win\DumpRenderTree.cpp">

-      <Filter>Support</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\win\MD5.cpp">

-      <Filter>Support</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\PixelDumpSupport.cpp">

-      <Filter>Support</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\win\WorkQueueItemWin.cpp">

-      <Filter>Support</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\cairo\PixelDumpSupportCairo.cpp">

-      <Filter>Support</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\cg\PixelDumpSupportCG.cpp">

-      <Filter>Support</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\win\PixelDumpSupportWin.cpp">

-      <Filter>Support</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\WorkQueue.cpp">

-      <Filter>Support</Filter>

-    </ClCompile>

-  </ItemGroup>

-  <ItemGroup>

-    <ClInclude Include="..\..\AccessibilityController.h">

-      <Filter>Controllers</Filter>

-    </ClInclude>

-    <ClInclude Include="..\..\GCController.h">

-      <Filter>Controllers</Filter>

-    </ClInclude>

-    <ClInclude Include="..\..\TestRunner.h">

-      <Filter>Controllers</Filter>

-    </ClInclude>

-    <ClInclude Include="..\..\win\DRTDataObject.h">

-      <Filter>Controllers</Filter>

-    </ClInclude>

-    <ClInclude Include="..\..\win\DRTDropSource.h">

-      <Filter>Controllers</Filter>

-    </ClInclude>

-    <ClInclude Include="..\..\win\EventSender.h">

-      <Filter>Controllers</Filter>

-    </ClInclude>

-    <ClInclude Include="..\..\win\TextInputController.h">

-      <Filter>Controllers</Filter>

-    </ClInclude>

-    <ClInclude Include="..\..\win\DRTDesktopNotificationPresenter.h">

-      <Filter>Delegates</Filter>

-    </ClInclude>

-    <ClInclude Include="..\..\win\HistoryDelegate.h">

-      <Filter>Delegates</Filter>

-    </ClInclude>

-    <ClInclude Include="..\..\win\PolicyDelegate.h">

-      <Filter>Delegates</Filter>

-    </ClInclude>

-    <ClInclude Include="..\..\win\ResourceLoadDelegate.h">

-      <Filter>Delegates</Filter>

-    </ClInclude>

-    <ClInclude Include="..\..\win\UIDelegate.h">

-      <Filter>Delegates</Filter>

-    </ClInclude>

-    <ClInclude Include="..\..\win\EditingDelegate.h">

-      <Filter>Delegates</Filter>

-    </ClInclude>

-    <ClInclude Include="..\..\win\FrameLoadDelegate.h">

-      <Filter>Delegates</Filter>

-    </ClInclude>

-    <ClInclude Include="..\..\config.h" />

-    <ClInclude Include="..\..\AccessibilityTextMarker.h">

-      <Filter>Support</Filter>

-    </ClInclude>

-    <ClInclude Include="..\..\AccessibilityUIElement.h">

-      <Filter>Support</Filter>

-    </ClInclude>

-    <ClInclude Include="..\..\DumpRenderTreePrefix.h" />

-    <ClInclude Include="..\..\CyclicRedundancyCheck.h">

-      <Filter>Support</Filter>

-    </ClInclude>

-    <ClInclude Include="..\..\win\DraggingInfo.h">

-      <Filter>Support</Filter>

-    </ClInclude>

-    <ClInclude Include="..\..\DumpRenderTree.h">

-      <Filter>Support</Filter>

-    </ClInclude>

-    <ClInclude Include="..\..\win\DumpRenderTreeWin.h">

-      <Filter>Support</Filter>

-    </ClInclude>

-    <ClInclude Include="..\..\win\MD5.h">

-      <Filter>Support</Filter>

-    </ClInclude>

-    <ClInclude Include="..\..\PixelDumpSupport.h">

-      <Filter>Support</Filter>

-    </ClInclude>

-    <ClInclude Include="..\..\cairo\PixelDumpSupportCairo.h">

-      <Filter>Support</Filter>

-    </ClInclude>

-    <ClInclude Include="..\..\cg\PixelDumpSupportCG.h">

-      <Filter>Support</Filter>

-    </ClInclude>

-    <ClInclude Include="..\..\WorkQueue.h">

-      <Filter>Support</Filter>

-    </ClInclude>

-    <ClInclude Include="..\..\WorkQueueItem.h">

-      <Filter>Support</Filter>

-    </ClInclude>

-  </ItemGroup>

-  <ItemGroup>

-    <None Include="DumpRenderTreePostBuild.cmd" />

-    <None Include="DumpRenderTreePreBuild.cmd" />

-  </ItemGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeApple.props b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeApple.props
deleted file mode 100644
index 3aa5156..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeApple.props
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ItemDefinitionGroup>

-    <ClCompile>

-      <AdditionalIncludeDirectories>$(ProjectDir)\..\..\cg;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>

-    </ClCompile>

-    <Link>

-      <AdditionalDependencies>CoreGraphics.lib;CoreFoundation.lib;CFNetwork.lib;%(AdditionalDependencies)</AdditionalDependencies>

-    </Link>

-  </ItemDefinitionGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeCommon.props b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeCommon.props
deleted file mode 100644
index 0ac58a1..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeCommon.props
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ItemDefinitionGroup>

-    <ClCompile>

-      <AdditionalIncludeDirectories>$(ProjectDir)\..\..;$(ProjectDir)\..\..\win;$(ConfigurationBuildDir)\Include;$(ConfigurationBuildDir)\Include\private;$(ConfigurationBuildDir)\Include\DumpRenderTree\ForwardingHeaders;$(ConfigurationBuildDir)\Include\JavaScriptCore;$(ConfigurationBuildDir)\Include\private\JavaScriptCore;$(ConfigurationBuildDir)\Include\WebCoreTestSupport;$(ConfigurationBuildDir)\Include\WebCore;$(WebKit_Libraries)\Include;$(WebKit_Libraries)\Include\private;$(WebKit_Libraries)\include\pthreads;$(WebKit_Libraries)\Include\WebCore;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>

-      <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>

-      <DisableSpecificWarnings>4146;%(DisableSpecificWarnings)</DisableSpecificWarnings>

-      <ForcedIncludeFiles>DumpRenderTreePrefix.h;%(ForcedIncludeFiles)</ForcedIncludeFiles>

-    </ClCompile>

-    <Link>

-      <AdditionalOptions>/NXCOMPAT %(AdditionalOptions)</AdditionalOptions>

-      <AdditionalDependencies>JavaScriptCore.lib;WebKitGUID.lib;WebKit.lib;WebCoreTestSupport.lib;pthreadVC2.lib;gdi32.lib;ole32.lib;oleaut32.lib;user32.lib;shlwapi.lib;oleacc.lib;comsuppw.lib;%(AdditionalDependencies)</AdditionalDependencies>

-      <SubSystem>Console</SubSystem>

-    </Link>

-  </ItemDefinitionGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeDebug.props b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeDebug.props
deleted file mode 100644
index 06bcf15..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeDebug.props
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\FeatureDefines.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\debug.props" />

-    <Import Project="DumpRenderTreeCommon.props" />

-    <Import Project="DumpRenderTreeApple.props" />

-  </ImportGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeDebugWinCairo.props b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeDebugWinCairo.props
deleted file mode 100644
index 8c5f6d6..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeDebugWinCairo.props
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\FeatureDefinesCairo.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\debug.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\WinCairo.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\cURL.props" />

-    <Import Project="$(WebKit_Source)\WebKit\WebKit.vcxproj\WebKit\WebKitCFLite.props" />

-    <Import Project="DumpRenderTreeCommon.props" />

-  </ImportGroup>

-  <ItemDefinitionGroup>

-    <ClCompile>

-      <AdditionalIncludeDirectories>$(ProjectDir)\..\..\cairo;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>

-    </ClCompile>

-  </ItemDefinitionGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncher.vcxproj b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncher.vcxproj
deleted file mode 100644
index a67ee22..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncher.vcxproj
+++ /dev/null
@@ -1,127 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ItemGroup Label="ProjectConfigurations">

-    <ProjectConfiguration Include="DebugSuffix|Win32">

-      <Configuration>DebugSuffix</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Debug_WinCairo|Win32">

-      <Configuration>Debug_WinCairo</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Debug|Win32">

-      <Configuration>Debug</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Production|Win32">

-      <Configuration>Production</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Release_WinCairo|Win32">

-      <Configuration>Release_WinCairo</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Release|Win32">

-      <Configuration>Release</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-  </ItemGroup>

-  <PropertyGroup Label="Globals">

-    <ProjectGuid>{2974EA02-840B-4995-8719-8920A61006F1}</ProjectGuid>

-    <RootNamespace>DumpRenderTreeLauncher</RootNamespace>

-    <Keyword>Win32Proj</Keyword>

-  </PropertyGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Production|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />

-  <ImportGroup Label="ExtensionSettings">

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="DumpRenderTreeLauncherRelease.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="DumpRenderTreeLauncherRelease.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Production|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="DumpRenderTreeLauncherProduction.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="DumpRenderTreeLauncherDebug.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="DumpRenderTreeLauncherDebug.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="DumpRenderTreeLauncherDebug.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\debugsuffix.props" />

-  </ImportGroup>

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup>

-    <_ProjectFileVersion>10.0.40219.1</_ProjectFileVersion>

-  </PropertyGroup>

-  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">

-    <Link>

-      <AdditionalOptions>/SAFESEH %(AdditionalOptions)</AdditionalOptions>

-    </Link>

-  </ItemDefinitionGroup>

-  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'">

-    <Link>

-      <AdditionalOptions>/SAFESEH %(AdditionalOptions)</AdditionalOptions>

-    </Link>

-  </ItemDefinitionGroup>

-  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'">

-    <Link>

-      <AdditionalOptions>/SAFESEH %(AdditionalOptions)</AdditionalOptions>

-    </Link>

-  </ItemDefinitionGroup>

-  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">

-    <Link>

-      <AdditionalOptions>/SAFESEH %(AdditionalOptions)</AdditionalOptions>

-    </Link>

-  </ItemDefinitionGroup>

-  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">

-    <Link>

-      <AdditionalOptions>/SAFESEH %(AdditionalOptions)</AdditionalOptions>

-    </Link>

-  </ItemDefinitionGroup>

-  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">

-    <Link>

-      <AdditionalOptions>/SAFESEH %(AdditionalOptions)</AdditionalOptions>

-    </Link>

-  </ItemDefinitionGroup>

-  <ItemGroup>

-    <ClCompile Include="..\..\..\win\DLLLauncher\DLLLauncherMain.cpp" />

-  </ItemGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />

-  <ImportGroup Label="ExtensionTargets">

-  </ImportGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncherCommon.props b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncherCommon.props
deleted file mode 100644
index ef4af31..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncherCommon.props
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <PropertyGroup>

-    <TargetName>DumpRenderTree</TargetName>

-  </PropertyGroup>

-  <ItemDefinitionGroup>

-    <ClCompile>

-      <PreprocessorDefinitions>USE_CONSOLE_ENTRY_POINT;%(PreprocessorDefinitions)</PreprocessorDefinitions>

-    </ClCompile>

-    <Link>

-      <AdditionalDependencies>shlwapi.lib;%(AdditionalDependencies)</AdditionalDependencies>

-      <OutputFile>$(OutDir)DumpRenderTree.exe</OutputFile>

-      <SubSystem>Console</SubSystem>

-      <ProgramDatabaseFile>$(TargetDir)$(TargetName)Launcher.pdb</ProgramDatabaseFile>

-    </Link>

-  </ItemDefinitionGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncherDebug.props b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncherDebug.props
deleted file mode 100644
index 0faa57f..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncherDebug.props
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\debug.props" />

-    <Import Project="DumpRenderTreeLauncherCommon.props" />

-  </ImportGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncherProduction.props b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncherProduction.props
deleted file mode 100644
index a7098d8..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncherProduction.props
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\production.props" />

-    <Import Project="DumpRenderTreeLauncherCommon.props" />

-  </ImportGroup>

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup />

-  <ItemDefinitionGroup />

-  <ItemGroup />

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncherRelease.props b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncherRelease.props
deleted file mode 100644
index b02cd0d..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeLauncherRelease.props
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\release.props" />

-    <Import Project="DumpRenderTreeLauncherCommon.props" />

-  </ImportGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreePostBuild.cmd b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreePostBuild.cmd
deleted file mode 100644
index 3d0ff4b..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreePostBuild.cmd
+++ /dev/null
@@ -1,62 +0,0 @@
-if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed"
-
-if not defined ARCHIVE_BUILD (if defined PRODUCTION exit /b)
-
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\bin"
-
-if not exist "%WEBKIT_LIBRARIES%\bin\CoreFoundation.dll" GOTO:CFLITE
-
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\CoreFoundation.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\CoreFoundation.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\CoreVideo.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\CoreVideo.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\CFNetwork.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\CFNetwork.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d /e /i "%WEBKIT_LIBRARIES%\bin\CFNetwork.resources" "%CONFIGURATIONBUILDDIR%\bin\CFNetwork.resources"
-xcopy /y /d /e /i "%WEBKIT_LIBRARIES%\bin\CoreFoundation.resources" "%CONFIGURATIONBUILDDIR%\bin\CoreFoundation.resources"
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\CoreGraphics.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\CoreGraphics.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKIT_LIBRARIES%\bin\icudt40.dll" xcopy /y /d "%WEBKIT_LIBRARIES%\bin\icudt40.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKIT_LIBRARIES%\bin\icudt40.dll"xcopy /y /d "%WEBKIT_LIBRARIES%\bin\icudt40.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKIT_LIBRARIES%\bin\icuin40.dll"xcopy /y /d "%WEBKIT_LIBRARIES%\bin\icuin40.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKIT_LIBRARIES%\bin\icuin40.pdb"xcopy /y /d "%WEBKIT_LIBRARIES%\bin\icuin40.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKIT_LIBRARIES%\bin\icuuc40.dll"xcopy /y /d "%WEBKIT_LIBRARIES%\bin\icuuc40.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKIT_LIBRARIES%\bin\icuuc40.pdb"xcopy /y /d "%WEBKIT_LIBRARIES%\bin\icuuc40.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKIT_LIBRARIES%\bin\icudt42.dll" xcopy /y /d "%WEBKIT_LIBRARIES%\bin\icudt42.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKIT_LIBRARIES%\bin\icudt42.dll"xcopy /y /d "%WEBKIT_LIBRARIES%\bin\icudt42.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKIT_LIBRARIES%\bin\icuin42.dll"xcopy /y /d "%WEBKIT_LIBRARIES%\bin\icuin42.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKIT_LIBRARIES%\bin\icuin42.pdb"xcopy /y /d "%WEBKIT_LIBRARIES%\bin\icuin42.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKIT_LIBRARIES%\bin\icuuc42.dll"xcopy /y /d "%WEBKIT_LIBRARIES%\bin\icuuc42.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKIT_LIBRARIES%\bin\icuuc42.pdb"xcopy /y /d "%WEBKIT_LIBRARIES%\bin\icuuc42.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\libxml2.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\libxslt.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\pthreadVC2.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\pthreadVC2.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\SQLite3.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\SQLite3.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\zlib1.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\zlib1.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-exit /b
-
-:CFLITE
-if not exist "%WEBKIT_LIBRARIES%\bin\CFLite.dll" exit /b
-
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\CFLite.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\CFLite.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d /e /i "%WEBKIT_LIBRARIES%\bin\CFLite.resources" "%CONFIGURATIONBUILDDIR%\bin\CFLite.resources"
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\libcurl.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\libeay32.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\ssleay32.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\cairo.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\icudt46.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\libicuuc.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\libicuin.dll" "%CONFIGURATIONBUILDDIR%\bin"
-
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\libxml2.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\libxslt.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\pthreadVC2.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKIT_LIBRARIES%\bin\pthreadVC2.pdb" xcopy /y /d "%WEBKIT_LIBRARIES%\bin\pthreadVC2.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\SQLite3.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKIT_LIBRARIES%\bin\SQLite3.pdb" xcopy /y /d "%WEBKIT_LIBRARIES%\bin\SQLite3.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKIT_LIBRARIES%\bin\zlib1.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKIT_LIBRARIES%\bin\zlib1.pdb" xcopy /y /d "%WEBKIT_LIBRARIES%\bin\zlib1.pdb" "%CONFIGURATIONBUILDDIR%\bin"
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreePreBuild.cmd b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreePreBuild.cmd
deleted file mode 100644
index 43c41c8..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreePreBuild.cmd
+++ /dev/null
@@ -1,20 +0,0 @@
-%SystemDrive%\cygwin\bin\which.exe bash
-if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
-cmd /c
-if exist "%CONFIGURATIONBUILDDIR%\buildfailed" grep XX%PROJECTNAME%XX "%CONFIGURATIONBUILDDIR%\buildfailed"
-if errorlevel 1 exit 1
-echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed"
-
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\DumpRenderTree"
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\DumpRenderTree\ForwardingHeaders"
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\DumpRenderTree\ForwardingHeaders\runtime"
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\DumpRenderTree\ForwardingHeaders\wtf"
-
-xcopy /y /d "%PROJECTDIR%\..\..\ForwardingHeaders\wtf\*.h" "%CONFIGURATIONBUILDDIR%\include\DumpRenderTree\ForwardingHeaders\wtf"
-xcopy /y /d "%PROJECTDIR%\..\..\ForwardingHeaders\runtime\*.h" "%CONFIGURATIONBUILDDIR%\include\DumpRenderTree\ForwardingHeaders\runtime"
-
-if "%CONFIGURATIONNAME%"=="Debug_Cairo_CFLite" xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\wtf\MD5.h" "%CONFIGURATIONBUILDDIR%\include\DumpRenderTree\ForwardingHeaders\wtf"
-if "%CONFIGURATIONNAME%"=="Release_Cairo_CFLite" xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\wtf\MD5.h" "%CONFIGURATIONBUILDDIR%\include\DumpRenderTree\ForwardingHeaders\wtf"
-
-if "%CONFIGURATIONNAME%"=="Debug_Cairo" xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\wtf\MD5.h" "%CONFIGURATIONBUILDDIR%\include\DumpRenderTree\ForwardingHeaders\wtf"
-if "%CONFIGURATIONNAME%"=="Release_Cairo" xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\wtf\MD5.h" "%CONFIGURATIONBUILDDIR%\include\DumpRenderTree\ForwardingHeaders\wtf"
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeProduction.props b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeProduction.props
deleted file mode 100644
index 9b6aae0..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeProduction.props
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\FeatureDefines.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\production.props" />

-    <Import Project="DumpRenderTreeApple.props" />

-    <Import Project="DumpRenderTreeCommon.props" />

-  </ImportGroup>

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup />

-  <ItemDefinitionGroup />

-  <ItemGroup />

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeRelease.props b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeRelease.props
deleted file mode 100644
index 610d794..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeRelease.props
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\FeatureDefines.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\release.props" />

-    <Import Project="DumpRenderTreeCommon.props" />

-    <Import Project="DumpRenderTreeApple.props" />

-  </ImportGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeReleaseWinCairo.props b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeReleaseWinCairo.props
deleted file mode 100644
index bf1f852..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreeReleaseWinCairo.props
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\FeatureDefinesCairo.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\release.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\WinCairo.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\cURL.props" />

-    <Import Project="$(WebKit_Source)\WebKit\WebKit.vcxproj\WebKit\WebKitCFLite.props" />

-    <Import Project="DumpRenderTreeCommon.props" />

-  </ImportGroup>

-  <ItemDefinitionGroup>

-    <ClCompile>

-      <AdditionalIncludeDirectories>$(ProjectDir)\..\..\cairo;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>

-    </ClCompile>

-  </ItemDefinitionGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiff.vcxproj b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiff.vcxproj
deleted file mode 100644
index 144b6b2..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiff.vcxproj
+++ /dev/null
@@ -1,112 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ItemGroup Label="ProjectConfigurations">

-    <ProjectConfiguration Include="DebugSuffix|Win32">

-      <Configuration>DebugSuffix</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Debug_WinCairo|Win32">

-      <Configuration>Debug_WinCairo</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Debug|Win32">

-      <Configuration>Debug</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Production|Win32">

-      <Configuration>Production</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Release_WinCairo|Win32">

-      <Configuration>Release_WinCairo</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Release|Win32">

-      <Configuration>Release</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-  </ItemGroup>

-  <PropertyGroup Label="Globals">

-    <ProjectGuid>{59CC0547-70AC-499C-9B19-EC01C6F61137}</ProjectGuid>

-    <RootNamespace>ImageDiff</RootNamespace>

-  </PropertyGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">

-    <ConfigurationType>DynamicLibrary</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'" Label="Configuration">

-    <ConfigurationType>DynamicLibrary</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Production|Win32'" Label="Configuration">

-    <ConfigurationType>DynamicLibrary</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">

-    <ConfigurationType>DynamicLibrary</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'" Label="Configuration">

-    <ConfigurationType>DynamicLibrary</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'" Label="Configuration">

-    <ConfigurationType>DynamicLibrary</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />

-  <ImportGroup Label="ExtensionSettings">

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="ImageDiffRelease.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="ImageDiffReleaseWinCairo.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Production|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="ImageDiffProduction.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="ImageDiffDebug.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="ImageDiffDebugWinCairo.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="ImageDiffDebug.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\debugsuffix.props" />

-  </ImportGroup>

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup>

-    <_ProjectFileVersion>10.0.40219.1</_ProjectFileVersion>

-  </PropertyGroup>

-  <ItemDefinitionGroup>

-  </ItemDefinitionGroup>

-  <ItemGroup>

-    <ClCompile Include="..\..\cg\ImageDiffCG.cpp">

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'">true</ExcludedFromBuild>

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">true</ExcludedFromBuild>

-    </ClCompile>

-    <ClCompile Include="..\..\win\ImageDiffCairo.cpp">

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">true</ExcludedFromBuild>

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'">true</ExcludedFromBuild>

-    </ClCompile>

-    <ClCompile Include="..\..\win\ImageDiffWin.cpp" />

-  </ItemGroup>

-  <ItemGroup>

-    <None Include="ImageDiffPostBuild.cmd" />

-    <None Include="ImageDiffPreBuild.cmd" />

-  </ItemGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />

-  <ImportGroup Label="ExtensionTargets">

-  </ImportGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffCommon.props b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffCommon.props
deleted file mode 100644
index 071b082..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffCommon.props
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ItemDefinitionGroup>

-    <ClCompile>

-      <AdditionalIncludeDirectories>$(ConfigurationBuildDir)\include;$(ConfigurationBuildDir)\include\private;$(ConfigurationBuildDir)\include\private\JavaScriptCore;$(WebKit_Libraries)\include;$(WebKit_Libraries)\include\private;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>

-      <PreprocessorDefinitions>NOMINMAX;%(PreprocessorDefinitions)</PreprocessorDefinitions>

-    </ClCompile>

-    <Link>

-      <AdditionalOptions>/NXCOMPAT %(AdditionalOptions)</AdditionalOptions>

-      <AdditionalDependencies>JavaScriptCore.lib;CoreGraphics.lib;CoreFoundation.lib;%(AdditionalDependencies)</AdditionalDependencies>

-      <SubSystem>Console</SubSystem>

-    </Link>

-  </ItemDefinitionGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffCommonWinCairo.props b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffCommonWinCairo.props
deleted file mode 100644
index 380be3c..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffCommonWinCairo.props
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ItemDefinitionGroup>

-    <ClCompile>

-      <AdditionalIncludeDirectories>$(ConfigurationBuildDir)\include;$(ConfigurationBuildDir)\include\private;$(ConfigurationBuildDir)\include\private\JavaScriptCore;$(WebKit_Libraries)\include;$(WebKit_Libraries)\include\private;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>

-      <PreprocessorDefinitions>NOMINMAX;%(PreprocessorDefinitions)</PreprocessorDefinitions>

-    </ClCompile>

-    <Link>

-      <AdditionalOptions>/NXCOMPAT %(AdditionalOptions)</AdditionalOptions>

-      <AdditionalDependencies>JavaScriptCore.lib;CFLite.lib;%(AdditionalDependencies)</AdditionalDependencies>

-      <SubSystem>Console</SubSystem>

-    </Link>

-  </ItemDefinitionGroup>

-</Project>

diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffDebug.props b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffDebug.props
deleted file mode 100644
index 29ef2dd..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffDebug.props
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\debug.props" />

-    <Import Project="ImageDiffCommon.props" />

-  </ImportGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffDebugWinCairo.props b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffDebugWinCairo.props
deleted file mode 100644
index 45cdc16..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffDebugWinCairo.props
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\debug.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\WinCairo.props" />

-    <Import Project="ImageDiffCommonWinCairo.props" />

-  </ImportGroup>

-</Project>

diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncher.vcxproj b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncher.vcxproj
deleted file mode 100644
index a89688e..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncher.vcxproj
+++ /dev/null
@@ -1,99 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ItemGroup Label="ProjectConfigurations">

-    <ProjectConfiguration Include="DebugSuffix|Win32">

-      <Configuration>DebugSuffix</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Debug_WinCairo|Win32">

-      <Configuration>Debug_WinCairo</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Debug|Win32">

-      <Configuration>Debug</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Production|Win32">

-      <Configuration>Production</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Release_WinCairo|Win32">

-      <Configuration>Release_WinCairo</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Release|Win32">

-      <Configuration>Release</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-  </ItemGroup>

-  <PropertyGroup Label="Globals">

-    <ProjectGuid>{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}</ProjectGuid>

-    <RootNamespace>ImageDiffLauncher</RootNamespace>

-    <Keyword>Win32Proj</Keyword>

-  </PropertyGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Production|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />

-  <ImportGroup Label="ExtensionSettings">

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="ImageDiffLauncherRelease.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="ImageDiffLauncherRelease.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Production|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="ImageDiffLauncherProduction.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="ImageDiffLauncherDebug.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="ImageDiffLauncherDebug.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="ImageDiffLauncherDebug.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\debugsuffix.props" />

-  </ImportGroup>

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup>

-    <_ProjectFileVersion>10.0.40219.1</_ProjectFileVersion>

-  </PropertyGroup>

-  <ItemDefinitionGroup>

-  </ItemDefinitionGroup>

-  <ItemGroup>

-    <ClCompile Include="..\..\..\win\DLLLauncher\DLLLauncherMain.cpp" />

-  </ItemGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />

-  <ImportGroup Label="ExtensionTargets">

-  </ImportGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncherCommon.props b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncherCommon.props
deleted file mode 100644
index 315f23f..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncherCommon.props
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <PropertyGroup>

-    <TargetName>ImageDiff</TargetName>

-  </PropertyGroup>

-  <ItemDefinitionGroup>

-    <ClCompile>

-      <PreprocessorDefinitions>USE_CONSOLE_ENTRY_POINT;%(PreprocessorDefinitions)</PreprocessorDefinitions>

-    </ClCompile>

-    <Link>

-      <AdditionalDependencies>shlwapi.lib;%(AdditionalDependencies)</AdditionalDependencies>

-      <OutputFile>$(OutDir)ImageDiff.exe</OutputFile>

-      <SubSystem>Console</SubSystem>

-      <ProgramDatabaseFile>$(TargetDir)$(TargetName)Launcher.pdb</ProgramDatabaseFile>

-    </Link>

-  </ItemDefinitionGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncherDebug.props b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncherDebug.props
deleted file mode 100644
index 7fb6db6..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncherDebug.props
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\debug.props" />

-    <Import Project="ImageDiffLauncherCommon.props" />

-  </ImportGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncherProduction.props b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncherProduction.props
deleted file mode 100644
index ae18695..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncherProduction.props
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\production.props" />

-    <Import Project="ImageDiffLauncherCommon.props" />

-  </ImportGroup>

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup />

-  <ItemDefinitionGroup />

-  <ItemGroup />

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncherRelease.props b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncherRelease.props
deleted file mode 100644
index 3209436..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffLauncherRelease.props
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\release.props" />

-    <Import Project="ImageDiffLauncherCommon.props" />

-  </ImportGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffPostBuild.cmd b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffPostBuild.cmd
deleted file mode 100644
index 26707ca..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffPostBuild.cmd
+++ /dev/null
@@ -1 +0,0 @@
-if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed"
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffPreBuild.cmd b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffPreBuild.cmd
deleted file mode 100644
index a770776..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffPreBuild.cmd
+++ /dev/null
@@ -1,6 +0,0 @@
-%SystemDrive%\cygwin\bin\which.exe bash
-if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
-cmd /c
-if exist "%CONFIGURATIONBUILDDIR%\buildfailed" grep XX%PROJECTNAME%XX "%CONFIGURATIONBUILDDIR%\buildfailed"
-if errorlevel 1 exit 1
-echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed"
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffProduction.props b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffProduction.props
deleted file mode 100644
index d9296c8..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffProduction.props
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\production.props" />

-    <Import Project="ImageDiffCommon.props" />

-  </ImportGroup>

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup />

-  <ItemDefinitionGroup />

-  <ItemGroup />

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffRelease.props b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffRelease.props
deleted file mode 100644
index f1be547..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffRelease.props
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\release.props" />

-    <Import Project="ImageDiffCommon.props" />

-  </ImportGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffReleaseWinCairo.props b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffReleaseWinCairo.props
deleted file mode 100644
index b0fd860..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/ImageDiff/ImageDiffReleaseWinCairo.props
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\release.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\WinCairo.props" />

-    <Import Project="ImageDiffCommonWinCairo.props" />

-  </ImportGroup>

-</Project>

diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePlugin.def b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePlugin.def
deleted file mode 100644
index ac41e7e..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePlugin.def
+++ /dev/null
@@ -1,6 +0,0 @@
-LIBRARY	"npTestNetscapePlugin"

-

-EXPORTS

-        NP_GetEntryPoints   @1

-        NP_Initialize       @2

-        NP_Shutdown         @3

diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePlugin.rc b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePlugin.rc
deleted file mode 100644
index c0b38ee..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePlugin.rc
+++ /dev/null
@@ -1,102 +0,0 @@
-// Microsoft Visual C++ generated resource script.

-//

-#include "resource.h"

-

-#define APSTUDIO_READONLY_SYMBOLS

-/////////////////////////////////////////////////////////////////////////////

-//

-// Generated from the TEXTINCLUDE 2 resource.

-//

-#include "windows.h"

-

-/////////////////////////////////////////////////////////////////////////////

-#undef APSTUDIO_READONLY_SYMBOLS

-

-/////////////////////////////////////////////////////////////////////////////

-// English (U.S.) resources

-

-#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)

-#ifdef _WIN32

-LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US

-#pragma code_page(1252)

-#endif //_WIN32

-

-#ifdef APSTUDIO_INVOKED

-/////////////////////////////////////////////////////////////////////////////

-//

-// TEXTINCLUDE

-//

-

-1 TEXTINCLUDE 

-BEGIN

-    "resource.h\0"

-END

-

-2 TEXTINCLUDE 

-BEGIN

-    "#include ""windows.h""\r\n"

-    "\0"

-END

-

-3 TEXTINCLUDE 

-BEGIN

-    "\r\n"

-    "\0"

-END

-

-#endif    // APSTUDIO_INVOKED

-

-

-/////////////////////////////////////////////////////////////////////////////

-//

-// Version

-//

-

-VS_VERSION_INFO VERSIONINFO

- FILEVERSION 1,0,0,1

- PRODUCTVERSION 1,0,0,1

- FILEFLAGSMASK 0x17L

-#ifdef _DEBUG

- FILEFLAGS 0x1L

-#else

- FILEFLAGS 0x0L

-#endif

- FILEOS 0x4L

- FILETYPE 0x2L

- FILESUBTYPE 0x0L

-BEGIN

-    BLOCK "StringFileInfo"

-    BEGIN

-        BLOCK "040904e4"

-        BEGIN

-            VALUE "CompanyName", "Apple Inc."

-            VALUE "FileDescription", "Simple Netscape plug-in that handles test content for WebKit"

-            VALUE "FileExtents", "testnetscape|png"

-            VALUE "FileOpenName", "test netscape content|PNG image"

-            VALUE "LegalCopyright", "Copyright Apple Inc. 2007-2009"

-            VALUE "MIMEType", "application/x-webkit-test-netscape|image/png"

-            VALUE "OriginalFilename", "npTestNetscapePlugin.dll"

-            VALUE "ProductName", "WebKit Test PlugIn"

-        END

-    END

-    BLOCK "VarFileInfo"

-    BEGIN

-        VALUE "Translation", 0x409, 1252

-    END

-END

-

-#endif    // English (U.S.) resources

-/////////////////////////////////////////////////////////////////////////////

-

-

-

-#ifndef APSTUDIO_INVOKED

-/////////////////////////////////////////////////////////////////////////////

-//

-// Generated from the TEXTINCLUDE 3 resource.

-//

-

-

-/////////////////////////////////////////////////////////////////////////////

-#endif    // not APSTUDIO_INVOKED

-

diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePlugin.vcxproj b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePlugin.vcxproj
deleted file mode 100644
index b955aa1..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePlugin.vcxproj
+++ /dev/null
@@ -1,147 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ItemGroup Label="ProjectConfigurations">

-    <ProjectConfiguration Include="DebugSuffix|Win32">

-      <Configuration>DebugSuffix</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Debug_WinCairo|Win32">

-      <Configuration>Debug_WinCairo</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Debug|Win32">

-      <Configuration>Debug</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Production|Win32">

-      <Configuration>Production</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Release_WinCairo|Win32">

-      <Configuration>Release_WinCairo</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Release|Win32">

-      <Configuration>Release</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-  </ItemGroup>

-  <ItemGroup>

-    <ClCompile Include="..\..\TestNetscapePlugIn\main.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\PluginObject.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\PluginTest.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\TestObject.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\DocumentOpenInDestroyStream.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\EvaluateJSAfterRemovingPluginElement.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\FormValue.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\GetURLNotifyWithURLThatFailsToLoad.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\GetURLWithJavaScriptURL.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\GetURLWithJavaScriptURLDestroyingPlugin.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\GetUserAgentWithNullNPPFromNPPNew.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\LogNPPSetWindow.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\NPDeallocateCalledBeforeNPShutdown.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\NPPNewFails.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\NPPSetWindowCalledDuringDestruction.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\NPRuntimeCallsWithNullNPP.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\NPRuntimeObjectFromDestroyedPlugin.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\NPRuntimeRemoveProperty.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\NullNPPGetValuePointer.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\PassDifferentNPPStruct.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\PluginScriptableNPObjectInvokeDefault.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\PluginScriptableObjectOverridesAllProperties.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\PrivateBrowsing.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\win\CallJSThatDestroysPlugin.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\win\DrawsGradient.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\win\DumpWindowRect.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\win\GetValueNetscapeWindow.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\win\NPNInvalidateRectInvalidatesWindow.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\win\WindowGeometryInitializedBeforeSetWindow.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\win\WindowlessPaintRectCoordinates.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\win\WindowRegionIsSetToClipRect.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\win\WindowedPluginTest.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\win\WindowGeometryTest.cpp" />

-  </ItemGroup>

-  <ItemGroup>

-    <ClInclude Include="..\..\TestNetscapePlugIn\PluginObject.h" />

-    <ClInclude Include="..\..\TestNetscapePlugIn\PluginTest.h" />

-    <ClInclude Include="..\..\TestNetscapePlugIn\TestObject.h" />

-    <ClInclude Include="..\..\TestNetscapePlugIn\win\WindowedPluginTest.h" />

-    <ClInclude Include="..\..\TestNetscapePlugIn\win\WindowGeometryTest.h" />

-    <ClInclude Include="resource.h" />

-  </ItemGroup>

-  <ItemGroup>

-    <None Include="TestNetscapePlugin.def" />

-    <None Include="TestNetscapePluginPostBuild.cmd" />

-    <None Include="TestNetscapePluginPreBuild.cmd" />

-  </ItemGroup>

-  <ItemGroup>

-    <ResourceCompile Include="TestNetscapePlugin.rc" />

-  </ItemGroup>

-  <PropertyGroup Label="Globals">

-    <ProjectGuid>{C0737398-3565-439E-A2B8-AB2BE4D5430C}</ProjectGuid>

-    <RootNamespace>TestNetscapePlugin</RootNamespace>

-    <Keyword>Win32Proj</Keyword>

-  </PropertyGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">

-    <ConfigurationType>DynamicLibrary</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'" Label="Configuration">

-    <ConfigurationType>DynamicLibrary</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Production|Win32'" Label="Configuration">

-    <ConfigurationType>DynamicLibrary</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">

-    <ConfigurationType>DynamicLibrary</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'" Label="Configuration">

-    <ConfigurationType>DynamicLibrary</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'" Label="Configuration">

-    <ConfigurationType>DynamicLibrary</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />

-  <ImportGroup Label="ExtensionSettings">

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="TestNetscapePluginRelease.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="TestNetscapePluginRelease.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Production|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="TestNetscapePluginProduction.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="TestNetscapePluginDebug.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="TestNetscapePluginDebug.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="TestNetscapePluginDebug.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\debugsuffix.props" />

-  </ImportGroup>

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup>

-    <_ProjectFileVersion>10.0.40219.1</_ProjectFileVersion>

-  </PropertyGroup>

-  <ItemDefinitionGroup>

-  </ItemDefinitionGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />

-  <ImportGroup Label="ExtensionTargets">

-  </ImportGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePlugin.vcxproj.filters b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePlugin.vcxproj.filters
deleted file mode 100644
index 45797e2..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePlugin.vcxproj.filters
+++ /dev/null
@@ -1,136 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ItemGroup>

-    <ClCompile Include="..\..\TestNetscapePlugIn\main.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\PluginObject.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\PluginTest.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\TestObject.cpp" />

-    <ClCompile Include="..\..\TestNetscapePlugIn\win\WindowedPluginTest.cpp">

-      <Filter>win</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\win\WindowGeometryTest.cpp">

-      <Filter>win</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\DocumentOpenInDestroyStream.cpp">

-      <Filter>Tests</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\EvaluateJSAfterRemovingPluginElement.cpp">

-      <Filter>Tests</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\FormValue.cpp">

-      <Filter>Tests</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\GetURLNotifyWithURLThatFailsToLoad.cpp">

-      <Filter>Tests</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\GetURLWithJavaScriptURL.cpp">

-      <Filter>Tests</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\GetURLWithJavaScriptURLDestroyingPlugin.cpp">

-      <Filter>Tests</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\GetUserAgentWithNullNPPFromNPPNew.cpp">

-      <Filter>Tests</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\LogNPPSetWindow.cpp">

-      <Filter>Tests</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\NPDeallocateCalledBeforeNPShutdown.cpp">

-      <Filter>Tests</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\NPPNewFails.cpp">

-      <Filter>Tests</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\NPPSetWindowCalledDuringDestruction.cpp">

-      <Filter>Tests</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\NPRuntimeCallsWithNullNPP.cpp">

-      <Filter>Tests</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\NPRuntimeObjectFromDestroyedPlugin.cpp">

-      <Filter>Tests</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\NPRuntimeRemoveProperty.cpp">

-      <Filter>Tests</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\NullNPPGetValuePointer.cpp">

-      <Filter>Tests</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\PassDifferentNPPStruct.cpp">

-      <Filter>Tests</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\PluginScriptableNPObjectInvokeDefault.cpp">

-      <Filter>Tests</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\PluginScriptableObjectOverridesAllProperties.cpp">

-      <Filter>Tests</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\PrivateBrowsing.cpp">

-      <Filter>Tests</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\win\CallJSThatDestroysPlugin.cpp">

-      <Filter>Tests\win</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\win\DrawsGradient.cpp">

-      <Filter>Tests\win</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\win\DumpWindowRect.cpp">

-      <Filter>Tests\win</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\win\GetValueNetscapeWindow.cpp">

-      <Filter>Tests\win</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\win\NPNInvalidateRectInvalidatesWindow.cpp">

-      <Filter>Tests\win</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\win\WindowGeometryInitializedBeforeSetWindow.cpp">

-      <Filter>Tests\win</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\win\WindowlessPaintRectCoordinates.cpp">

-      <Filter>Tests\win</Filter>

-    </ClCompile>

-    <ClCompile Include="..\..\TestNetscapePlugIn\Tests\win\WindowRegionIsSetToClipRect.cpp">

-      <Filter>Tests\win</Filter>

-    </ClCompile>

-  </ItemGroup>

-  <ItemGroup>

-    <ClInclude Include="..\..\TestNetscapePlugIn\PluginObject.h" />

-    <ClInclude Include="..\..\TestNetscapePlugIn\PluginTest.h" />

-    <ClInclude Include="..\..\TestNetscapePlugIn\TestObject.h" />

-    <ClInclude Include="..\..\TestNetscapePlugIn\win\WindowedPluginTest.h">

-      <Filter>win</Filter>

-    </ClInclude>

-    <ClInclude Include="..\..\TestNetscapePlugIn\win\WindowGeometryTest.h">

-      <Filter>win</Filter>

-    </ClInclude>

-    <ClInclude Include="resource.h">

-      <Filter>Resources</Filter>

-    </ClInclude>

-  </ItemGroup>

-  <ItemGroup>

-    <Filter Include="win">

-      <UniqueIdentifier>{aa1f1b22-247a-4070-93ee-9c1bb139a200}</UniqueIdentifier>

-    </Filter>

-    <Filter Include="Resources">

-      <UniqueIdentifier>{a13508d3-bda2-4026-bd33-320d54d4ae5a}</UniqueIdentifier>

-    </Filter>

-    <Filter Include="Tests">

-      <UniqueIdentifier>{33b0adeb-c8af-4e7a-b827-3ea7ed8a095b}</UniqueIdentifier>

-    </Filter>

-    <Filter Include="Tests\win">

-      <UniqueIdentifier>{62e11b7d-49c8-463f-8897-fcc43d8f314c}</UniqueIdentifier>

-    </Filter>

-  </ItemGroup>

-  <ItemGroup>

-    <None Include="TestNetscapePlugin.def">

-      <Filter>Resources</Filter>

-    </None>

-    <None Include="TestNetscapePluginPostBuild.cmd" />

-    <None Include="TestNetscapePluginPreBuild.cmd" />

-  </ItemGroup>

-  <ItemGroup>

-    <ResourceCompile Include="TestNetscapePlugin.rc">

-      <Filter>Resources</Filter>

-    </ResourceCompile>

-  </ItemGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginCommon.props b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginCommon.props
deleted file mode 100644
index 8b2461c..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginCommon.props
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <PropertyGroup>

-    <TargetName>np$(ProjectName)$(DebugSuffix)</TargetName>

-  </PropertyGroup>

-  <ItemDefinitionGroup>

-    <ClCompile>

-      <AdditionalIncludeDirectories>$(ProjectDir);$(ProjectDir)..\..\TestNetscapePlugIn;$(ProjectDir)..\..\TestNetscapePlugIn\win;$(ConfigurationBuildDir)\Include;$(ConfigurationBuildDir)\Include\private;$(ConfigurationBuildDir)\Include\JavaScriptCore;$(ConfigurationBuildDir)\Include\WebCore\ForwardingHeaders;$(WebKit_Libraries)\include;$(WebKit_Libraries)\include\private;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>

-      <PreprocessorDefinitions>snprintf=_snprintf;%(PreprocessorDefinitions)</PreprocessorDefinitions>

-    </ClCompile>

-    <Link>

-      <AdditionalDependencies>Msimg32.lib;%(AdditionalDependencies)</AdditionalDependencies>

-      <OutputFile>$(OutDir)$(ProjectName)\np$(ProjectName).dll</OutputFile>

-      <ModuleDefinitionFile>TestNetscapePlugin.def</ModuleDefinitionFile>

-    </Link>

-  </ItemDefinitionGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginDebug.props b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginDebug.props
deleted file mode 100644
index 87aa3fd..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginDebug.props
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\debug.props" />

-    <Import Project="TestNetscapePluginCommon.props" />

-  </ImportGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginPostBuild.cmd b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginPostBuild.cmd
deleted file mode 100644
index 26707ca..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginPostBuild.cmd
+++ /dev/null
@@ -1 +0,0 @@
-if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed"
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginPreBuild.cmd b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginPreBuild.cmd
deleted file mode 100644
index a770776..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginPreBuild.cmd
+++ /dev/null
@@ -1,6 +0,0 @@
-%SystemDrive%\cygwin\bin\which.exe bash
-if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
-cmd /c
-if exist "%CONFIGURATIONBUILDDIR%\buildfailed" grep XX%PROJECTNAME%XX "%CONFIGURATIONBUILDDIR%\buildfailed"
-if errorlevel 1 exit 1
-echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed"
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginProduction.props b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginProduction.props
deleted file mode 100644
index 0edbb86..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginProduction.props
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\production.props" />

-    <Import Project="TestNetscapePluginCommon.props" />

-  </ImportGroup>

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup />

-  <ItemDefinitionGroup />

-  <ItemGroup />

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginRelease.props b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginRelease.props
deleted file mode 100644
index 42c8d7d..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/TestNetscapePluginRelease.props
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\release.props" />

-    <Import Project="TestNetscapePluginCommon.props" />

-  </ImportGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/resource.h b/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/resource.h
deleted file mode 100644
index b0ce340..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.vcxproj/TestNetscapePlugin/resource.h
+++ /dev/null
@@ -1,14 +0,0 @@
-//{{NO_DEPENDENCIES}}
-// Microsoft Visual C++ generated include file.
-// Used by TestNetscapePlugin.rc
-
-// Next default values for new objects
-// 
-#ifdef APSTUDIO_INVOKED
-#ifndef APSTUDIO_READONLY_SYMBOLS
-#define _APS_NEXT_RESOURCE_VALUE        101
-#define _APS_NEXT_COMMAND_VALUE         40001
-#define _APS_NEXT_CONTROL_VALUE         1001
-#define _APS_NEXT_SYMED_VALUE           101
-#endif
-#endif
diff --git a/Tools/DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj b/Tools/DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj
deleted file mode 100644
index 49a9978..0000000
--- a/Tools/DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj
+++ /dev/null
@@ -1,1315 +0,0 @@
-// !$*UTF8*$!
-{
-	archiveVersion = 1;
-	classes = {
-	};
-	objectVersion = 42;
-	objects = {
-
-/* Begin PBXAggregateTarget section */
-		A84F608D08B1370600E9745F /* All */ = {
-			isa = PBXAggregateTarget;
-			buildConfigurationList = A84F609208B1371400E9745F /* Build configuration list for PBXAggregateTarget "All" */;
-			buildPhases = (
-			);
-			dependencies = (
-				2D403F211508736C005358D2 /* PBXTargetDependency */,
-				A84F609108B1370E00E9745F /* PBXTargetDependency */,
-				A84F608F08B1370E00E9745F /* PBXTargetDependency */,
-				141BF238096A451E00E0753C /* PBXTargetDependency */,
-				5DC82A701023C93D00FD1D3B /* PBXTargetDependency */,
-			);
-			name = All;
-			productName = All;
-		};
-/* End PBXAggregateTarget section */
-
-/* Begin PBXBuildFile section */
-		0F37A4A711E6628700275F54 /* PluginObjectMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0F37A4A611E6628700275F54 /* PluginObjectMac.mm */; };
-		0F37A4AA11E6629100275F54 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B5A752A108AF5D1F00138E45 /* QuartzCore.framework */; };
-		141BF435096A455900E0753C /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9335435F03D75502008635CE /* WebKit.framework */; };
-		141BF436096A455900E0753C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A84F608908B136DA00E9745F /* Cocoa.framework */; };
-		141BF438096A455900E0753C /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A817090308B164D300CCB9FB /* JavaScriptCore.framework */; };
-		141BF439096A455900E0753C /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AE8257EF08D22389000507AB /* Carbon.framework */; };
-		141BF453096A45EB00E0753C /* PluginObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 141BF447096A45C800E0753C /* PluginObject.h */; };
-		14770FE20A22ADF7009342EE /* GCController.h in Headers */ = {isa = PBXBuildFile; fileRef = 14770FE00A22ADF7009342EE /* GCController.h */; };
-		1A14C8A51406DE0400B254F7 /* SupportsCarbonEventModel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A14C8A31406DE0400B254F7 /* SupportsCarbonEventModel.cpp */; };
-		1A1E4298141141C400388758 /* PrivateBrowsing.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A1E4296141141C400388758 /* PrivateBrowsing.cpp */; };
-		1A215A8111F2609C008AD0F5 /* PluginTest.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A215A7F11F2609C008AD0F5 /* PluginTest.cpp */; };
-		1A215A8211F2609C008AD0F5 /* PluginTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A215A8011F2609C008AD0F5 /* PluginTest.h */; };
-		1A215BE711F27658008AD0F5 /* DocumentOpenInDestroyStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A215A7511F26072008AD0F5 /* DocumentOpenInDestroyStream.cpp */; };
-		1A24BAA9120734EE00FBB059 /* NPRuntimeObjectFromDestroyedPlugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A24BAA8120734EE00FBB059 /* NPRuntimeObjectFromDestroyedPlugin.cpp */; };
-		1A31EB3813466AC100017372 /* ConvertPoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A31EB3713466AC100017372 /* ConvertPoint.cpp */; };
-		1A3E28AA1311D73B00501349 /* GetURLWithJavaScriptURLDestroyingPlugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A3E28A91311D73B00501349 /* GetURLWithJavaScriptURLDestroyingPlugin.cpp */; };
-		1A5CC1F5137DD2EC00A5D7E7 /* GetURLWithJavaScriptURL.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A5CC1F3137DD2EC00A5D7E7 /* GetURLWithJavaScriptURL.cpp */; };
-		1A66C35114576A920099A115 /* ContentsScaleFactor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A66C34F14576A920099A115 /* ContentsScaleFactor.cpp */; };
-		1A8F02E80BB9B4EC008CFA34 /* TestObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A8F024C0BB9B056008CFA34 /* TestObject.h */; };
-		1AC6C8490D07638600CD3161 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AC6C77F0D07589B00CD3161 /* main.cpp */; };
-		1AC6C84A0D07638600CD3161 /* PluginObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AC6C7800D07589B00CD3161 /* PluginObject.cpp */; };
-		1AC6C84B0D07638600CD3161 /* TestObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AC6C7810D07589B00CD3161 /* TestObject.cpp */; };
-		1AC77DCF120605B6005C19EF /* NPRuntimeRemoveProperty.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AC77DCE120605B6005C19EF /* NPRuntimeRemoveProperty.cpp */; };
-		1ACF898D132EF41C00E915D4 /* NPDeallocateCalledBeforeNPShutdown.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1ACF898B132EF41C00E915D4 /* NPDeallocateCalledBeforeNPShutdown.cpp */; };
-		1AD4CB2212A6D1350027A7AF /* GetUserAgentWithNullNPPFromNPPNew.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD4CB2012A6D1350027A7AF /* GetUserAgentWithNullNPPFromNPPNew.cpp */; };
-		1AD8683F163B2FD000A28583 /* NPRuntimeCallsWithNullNPP.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD8683D163B2FD000A28583 /* NPRuntimeCallsWithNullNPP.cpp */; };
-		1AD9D2FE12028409001A70D1 /* PluginScriptableNPObjectInvokeDefault.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AD9D2FD12028409001A70D1 /* PluginScriptableNPObjectInvokeDefault.cpp */; };
-		1AFF66BC137DEFD200791696 /* GetURLNotifyWithURLThatFailsToLoad.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AFF66BB137DEA8300791696 /* GetURLNotifyWithURLThatFailsToLoad.cpp */; };
-		23BCB8900EA57623003C6289 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 23BCB88F0EA57623003C6289 /* OpenGL.framework */; };
-		29CFBA10122736E600BC30C0 /* AccessibilityTextMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 29CFBA0E122736E600BC30C0 /* AccessibilityTextMarker.h */; };
-		29CFBA11122736E600BC30C0 /* AccessibilityTextMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29CFBA0F122736E600BC30C0 /* AccessibilityTextMarker.cpp */; };
-		29CFBA2E12273A1000BC30C0 /* AccessibilityTextMarkerMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 29CFBA2D12273A1000BC30C0 /* AccessibilityTextMarkerMac.mm */; };
-		2D403F05150871F9005358D2 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AE8257EF08D22389000507AB /* Carbon.framework */; };
-		2D403F06150871F9005358D2 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A84F608908B136DA00E9745F /* Cocoa.framework */; };
-		2D403F08150871F9005358D2 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 23BCB88F0EA57623003C6289 /* OpenGL.framework */; };
-		2D403F1B15087209005358D2 /* LayoutTestHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D403EA215087142005358D2 /* LayoutTestHelper.m */; };
-		31117B3C15D9A56A00163BC8 /* MockWebNotificationProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 31117B3A15D9A56A00163BC8 /* MockWebNotificationProvider.h */; };
-		31117B3D15D9A56A00163BC8 /* MockWebNotificationProvider.mm in Sources */ = {isa = PBXBuildFile; fileRef = 31117B3B15D9A56A00163BC8 /* MockWebNotificationProvider.mm */; };
-		3A5626CB131CA02A002BE6D9 /* StorageTrackerDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3A5626C1131C8B17002BE6D9 /* StorageTrackerDelegate.mm */; };
-		3A5626CC131CA036002BE6D9 /* StorageTrackerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A5626C0131C8B17002BE6D9 /* StorageTrackerDelegate.h */; };
-		417DAA1D137B3E24007C57FB /* WebCoreTestSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 417DAA1C137B3E24007C57FB /* WebCoreTestSupport.h */; };
-		440590711268453800CFD48D /* WebArchiveDumpSupportMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 440590701268453800CFD48D /* WebArchiveDumpSupportMac.mm */; };
-		4437730E125CBC3600AAE02C /* WebArchiveDumpSupport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 44A997830FCDE86400580F10 /* WebArchiveDumpSupport.cpp */; };
-		4437730F125CBC4D00AAE02C /* WebArchiveDumpSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 44A997820FCDE86400580F10 /* WebArchiveDumpSupport.h */; };
-		4AD6A11413C8124000EA9737 /* FormValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4AD6A11313C8124000EA9737 /* FormValue.cpp */; };
-		5106803E15CC7B10001A8A23 /* SlowNPPNew.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5106803D15CC7B10001A8A23 /* SlowNPPNew.cpp */; };
-		51134C9916014FDC001AA513 /* InvokeDestroysPluginWithinNPP_New.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51134C9816014FDB001AA513 /* InvokeDestroysPluginWithinNPP_New.cpp */; };
-		5113DE6715F6CBE5005EC8B3 /* NPPNewFails.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5113DE6615F6CBE5005EC8B3 /* NPPNewFails.cpp */; };
-		515C0CD015EE785700F5A613 /* LogNPPSetWindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 515C0CCF15EE785700F5A613 /* LogNPPSetWindow.cpp */; };
-		515F429C15C07872007C8F90 /* PluginScriptableObjectOverridesAllProperties.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 515F429B15C07872007C8F90 /* PluginScriptableObjectOverridesAllProperties.cpp */; };
-		5185F6B210714E07007AA393 /* HistoryDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5185F69F10714A57007AA393 /* HistoryDelegate.mm */; };
-		5185F6B310714E12007AA393 /* HistoryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5185F69E10714A57007AA393 /* HistoryDelegate.h */; };
-		51CACBD815D96FD000EB53A2 /* EvaluateJSWithinNPP_New.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51CACBD715D96FD000EB53A2 /* EvaluateJSWithinNPP_New.cpp */; };
-		53CBB832134E42F3001CE6A4 /* CyclicRedundancyCheck.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CBB830134E42F3001CE6A4 /* CyclicRedundancyCheck.cpp */; };
-		53CBB833134E42F3001CE6A4 /* CyclicRedundancyCheck.h in Headers */ = {isa = PBXBuildFile; fileRef = 53CBB831134E42F3001CE6A4 /* CyclicRedundancyCheck.h */; };
-		5DB9AC970F722C3600684641 /* AHEM____.TTF in Copy Font Files */ = {isa = PBXBuildFile; fileRef = AA7F10C20CB3C1030003BDC9 /* AHEM____.TTF */; };
-		5DB9AC980F722C3600684641 /* WebKitWeightWatcher100.ttf in Copy Font Files */ = {isa = PBXBuildFile; fileRef = 375F09710DAC3CB600C8B4E5 /* WebKitWeightWatcher100.ttf */; };
-		5DB9AC990F722C3600684641 /* WebKitWeightWatcher200.ttf in Copy Font Files */ = {isa = PBXBuildFile; fileRef = 375F09720DAC3CB600C8B4E5 /* WebKitWeightWatcher200.ttf */; };
-		5DB9AC9A0F722C3600684641 /* WebKitWeightWatcher300.ttf in Copy Font Files */ = {isa = PBXBuildFile; fileRef = 375F09730DAC3CB600C8B4E5 /* WebKitWeightWatcher300.ttf */; };
-		5DB9AC9B0F722C3600684641 /* WebKitWeightWatcher400.ttf in Copy Font Files */ = {isa = PBXBuildFile; fileRef = 375F09740DAC3CB600C8B4E5 /* WebKitWeightWatcher400.ttf */; };
-		5DB9AC9C0F722C3600684641 /* WebKitWeightWatcher500.ttf in Copy Font Files */ = {isa = PBXBuildFile; fileRef = 375F09750DAC3CB600C8B4E5 /* WebKitWeightWatcher500.ttf */; };
-		5DB9AC9D0F722C3600684641 /* WebKitWeightWatcher600.ttf in Copy Font Files */ = {isa = PBXBuildFile; fileRef = 375F09760DAC3CB600C8B4E5 /* WebKitWeightWatcher600.ttf */; };
-		5DB9AC9E0F722C3600684641 /* WebKitWeightWatcher700.ttf in Copy Font Files */ = {isa = PBXBuildFile; fileRef = 375F09770DAC3CB600C8B4E5 /* WebKitWeightWatcher700.ttf */; };
-		5DB9AC9F0F722C3600684641 /* WebKitWeightWatcher800.ttf in Copy Font Files */ = {isa = PBXBuildFile; fileRef = 375F09780DAC3CB600C8B4E5 /* WebKitWeightWatcher800.ttf */; };
-		5DB9ACA00F722C3600684641 /* WebKitWeightWatcher900.ttf in Copy Font Files */ = {isa = PBXBuildFile; fileRef = 375F09790DAC3CB600C8B4E5 /* WebKitWeightWatcher900.ttf */; };
-		5DE8AE4413A2C15900D6A37D /* libWebCoreTestSupport.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DE8AE4313A2C15800D6A37D /* libWebCoreTestSupport.dylib */; };
-		80045AED147718E7008290A8 /* AccessibilityNotificationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 80045AEB147718E7008290A8 /* AccessibilityNotificationHandler.h */; };
-		80045AEE147718E7008290A8 /* AccessibilityNotificationHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 80045AEC147718E7008290A8 /* AccessibilityNotificationHandler.mm */; };
-		8465E2C70FFA8DF2003B8342 /* PixelDumpSupport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8465E2C60FFA8DF2003B8342 /* PixelDumpSupport.cpp */; };
-		8CCDA82A151A72D10003F937 /* SampleFont.sfont in Copy Font Files */ = {isa = PBXBuildFile; fileRef = 8CCDA81F151A56550003F937 /* SampleFont.sfont */; };
-		9340994C08540CAE007F3BC8 /* DumpRenderTreePrefix.h in Headers */ = {isa = PBXBuildFile; fileRef = 32A70AAB03705E1F00C91783 /* DumpRenderTreePrefix.h */; };
-		9340995108540CAE007F3BC8 /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9335435F03D75502008635CE /* WebKit.framework */; };
-		9830F31F15C81181005AB206 /* DumpRenderTreeCommon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9830F31E15C81181005AB206 /* DumpRenderTreeCommon.cpp */; };
-		A817090008B163EF00CCB9FB /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A84F608908B136DA00E9745F /* Cocoa.framework */; };
-		A817090408B164D300CCB9FB /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A817090308B164D300CCB9FB /* JavaScriptCore.framework */; };
-		A84F608A08B136DA00E9745F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A84F608908B136DA00E9745F /* Cocoa.framework */; };
-		A8B91ADA0CF3B32F008F91FF /* DumpRenderTreePasteboard.m in Sources */ = {isa = PBXBuildFile; fileRef = A8B91AD70CF3B32F008F91FF /* DumpRenderTreePasteboard.m */; };
-		A8B91ADC0CF3B32F008F91FF /* DumpRenderTreeWindow.mm in Sources */ = {isa = PBXBuildFile; fileRef = A8B91AD90CF3B32F008F91FF /* DumpRenderTreeWindow.mm */; };
-		A8B91AE00CF3B372008F91FF /* DumpRenderTreeWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = A8B91ADD0CF3B372008F91FF /* DumpRenderTreeWindow.h */; };
-		A8B91AE20CF3B372008F91FF /* DumpRenderTreePasteboard.h in Headers */ = {isa = PBXBuildFile; fileRef = A8B91ADF0CF3B372008F91FF /* DumpRenderTreePasteboard.h */; };
-		A8B91BFD0CF522B4008F91FF /* CheckedMalloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8B91BF70CF522B4008F91FF /* CheckedMalloc.cpp */; };
-		A8B91BFF0CF522B4008F91FF /* CheckedMalloc.h in Headers */ = {isa = PBXBuildFile; fileRef = A8B91BF90CF522B4008F91FF /* CheckedMalloc.h */; };
-		A8D79CEA0FC28B2C004AC8FE /* DumpRenderTreeFileDraggingSource.h in Headers */ = {isa = PBXBuildFile; fileRef = A8D79CE80FC28B2C004AC8FE /* DumpRenderTreeFileDraggingSource.h */; };
-		A8D79CEB0FC28B2C004AC8FE /* DumpRenderTreeFileDraggingSource.m in Sources */ = {isa = PBXBuildFile; fileRef = A8D79CE90FC28B2C004AC8FE /* DumpRenderTreeFileDraggingSource.m */; };
-		AA5A15EF16E15CD000F7C561 /* AccessibilityControllerIOS.mm in Sources */ = {isa = PBXBuildFile; fileRef = AA5A15ED16E15CD000F7C561 /* AccessibilityControllerIOS.mm */; };
-		AA5A15F016E15CD000F7C561 /* AccessibilityUIElementIOS.mm in Sources */ = {isa = PBXBuildFile; fileRef = AA5A15EE16E15CD000F7C561 /* AccessibilityUIElementIOS.mm */; };
-		AE8259F308D22463000507AB /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AE8257EF08D22389000507AB /* Carbon.framework */; };
-		AE8259F408D22463000507AB /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AE8257EF08D22389000507AB /* Carbon.framework */; };
-		B5A752A208AF5D1F00138E45 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B5A752A108AF5D1F00138E45 /* QuartzCore.framework */; };
-		BC0131DA0C9772010087317D /* TestRunner.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC0131D80C9772010087317D /* TestRunner.cpp */; };
-		BC0131DB0C9772010087317D /* TestRunner.h in Headers */ = {isa = PBXBuildFile; fileRef = BC0131D90C9772010087317D /* TestRunner.h */; };
-		BC0E24E00E2D9451001B6BC2 /* AccessibilityUIElement.h in Headers */ = {isa = PBXBuildFile; fileRef = BC0E24DE0E2D9451001B6BC2 /* AccessibilityUIElement.h */; };
-		BC0E24E10E2D9451001B6BC2 /* AccessibilityUIElement.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC0E24DF0E2D9451001B6BC2 /* AccessibilityUIElement.cpp */; };
-		BC0E26150E2DA4C6001B6BC2 /* AccessibilityUIElementMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = BC0E26140E2DA4C6001B6BC2 /* AccessibilityUIElementMac.mm */; };
-		BC0E26150E2DA4C6001B6BC3 /* AccessibilityCommonMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = BC0E26140E2DA4C6001B6BC3 /* AccessibilityCommonMac.mm */; };
-		BC47412A0D038A4C0072B006 /* JavaScriptThreading.h in Headers */ = {isa = PBXBuildFile; fileRef = BC4741290D038A4C0072B006 /* JavaScriptThreading.h */; };
-		BC4741410D038A570072B006 /* JavaScriptThreadingPthreads.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC4741400D038A570072B006 /* JavaScriptThreadingPthreads.cpp */; };
-		BC9D90240C97472E0099A4A3 /* WorkQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC9D90210C97472D0099A4A3 /* WorkQueue.cpp */; };
-		BC9D90250C97472E0099A4A3 /* WorkQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = BC9D90220C97472E0099A4A3 /* WorkQueue.h */; };
-		BC9D90260C97472E0099A4A3 /* WorkQueueItem.h in Headers */ = {isa = PBXBuildFile; fileRef = BC9D90230C97472E0099A4A3 /* WorkQueueItem.h */; };
-		BCA18B230C9B014B00114369 /* GCControllerMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B210C9B014B00114369 /* GCControllerMac.mm */; };
-		BCA18B240C9B014B00114369 /* TestRunnerMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B220C9B014B00114369 /* TestRunnerMac.mm */; };
-		BCA18B260C9B015C00114369 /* WorkQueueItemMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B250C9B015C00114369 /* WorkQueueItemMac.mm */; };
-		BCA18B310C9B01B400114369 /* ObjCController.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B2F0C9B01B400114369 /* ObjCController.h */; };
-		BCA18B320C9B01B400114369 /* ObjCController.m in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B300C9B01B400114369 /* ObjCController.m */; };
-		BCA18B380C9B021900114369 /* AppleScriptController.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B360C9B021900114369 /* AppleScriptController.h */; };
-		BCA18B390C9B021900114369 /* AppleScriptController.m in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B370C9B021900114369 /* AppleScriptController.m */; };
-		BCA18B3C0C9B024900114369 /* TextInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B3A0C9B024900114369 /* TextInputController.h */; };
-		BCA18B490C9B02C400114369 /* TextInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B480C9B02C400114369 /* TextInputController.m */; };
-		BCA18B610C9B08C200114369 /* EditingDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B570C9B08C200114369 /* EditingDelegate.h */; };
-		BCA18B620C9B08C200114369 /* EditingDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B580C9B08C200114369 /* EditingDelegate.mm */; };
-		BCA18B630C9B08C200114369 /* FrameLoadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B590C9B08C200114369 /* FrameLoadDelegate.h */; };
-		BCA18B640C9B08C200114369 /* FrameLoadDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B5A0C9B08C200114369 /* FrameLoadDelegate.mm */; };
-		BCA18B650C9B08C200114369 /* PolicyDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B5B0C9B08C200114369 /* PolicyDelegate.h */; };
-		BCA18B660C9B08C200114369 /* PolicyDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B5C0C9B08C200114369 /* PolicyDelegate.mm */; };
-		BCA18B670C9B08C200114369 /* ResourceLoadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B5D0C9B08C200114369 /* ResourceLoadDelegate.h */; };
-		BCA18B680C9B08C200114369 /* ResourceLoadDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B5E0C9B08C200114369 /* ResourceLoadDelegate.mm */; };
-		BCA18B690C9B08C200114369 /* UIDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B5F0C9B08C200114369 /* UIDelegate.h */; };
-		BCA18B6A0C9B08C200114369 /* UIDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B600C9B08C200114369 /* UIDelegate.mm */; };
-		BCA18B6F0C9B08DB00114369 /* EventSendingController.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B6B0C9B08DB00114369 /* EventSendingController.h */; };
-		BCA18B700C9B08DB00114369 /* EventSendingController.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B6C0C9B08DB00114369 /* EventSendingController.mm */; };
-		BCA18B710C9B08DB00114369 /* NavigationController.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B6D0C9B08DB00114369 /* NavigationController.h */; };
-		BCA18B720C9B08DB00114369 /* NavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B6E0C9B08DB00114369 /* NavigationController.m */; };
-		BCA18B7A0C9B08F100114369 /* DumpRenderTreeDraggingInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B730C9B08F100114369 /* DumpRenderTreeDraggingInfo.h */; };
-		BCA18B7B0C9B08F100114369 /* DumpRenderTreeDraggingInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B740C9B08F100114369 /* DumpRenderTreeDraggingInfo.mm */; };
-		BCA18B7D0C9B08F100114369 /* ObjCPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B760C9B08F100114369 /* ObjCPlugin.h */; };
-		BCA18B7E0C9B08F100114369 /* ObjCPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B770C9B08F100114369 /* ObjCPlugin.m */; };
-		BCA18B7F0C9B08F100114369 /* ObjCPluginFunction.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B780C9B08F100114369 /* ObjCPluginFunction.h */; };
-		BCA18B800C9B08F100114369 /* ObjCPluginFunction.m in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B790C9B08F100114369 /* ObjCPluginFunction.m */; };
-		BCA18C0B0C9B59EF00114369 /* DumpRenderTreeMac.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18C0A0C9B59EF00114369 /* DumpRenderTreeMac.h */; };
-		BCA18C470C9B5B9400114369 /* DumpRenderTree.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCA18C460C9B5B9400114369 /* DumpRenderTree.mm */; settings = {COMPILER_FLAGS = "-Wno-deprecated-declarations"; }; };
-		BCB284C70CFA83C4007E533E /* PixelDumpSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = BCB2848A0CFA820F007E533E /* PixelDumpSupport.h */; };
-		BCB284CD0CFA83C8007E533E /* PixelDumpSupportCG.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCB284880CFA8202007E533E /* PixelDumpSupportCG.cpp */; };
-		BCB284D00CFA83CC007E533E /* PixelDumpSupportCG.h in Headers */ = {isa = PBXBuildFile; fileRef = BCB284890CFA8202007E533E /* PixelDumpSupportCG.h */; };
-		BCB284D60CFA83D1007E533E /* PixelDumpSupportMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCB2848C0CFA8221007E533E /* PixelDumpSupportMac.mm */; };
-		BCB284F60CFA84F8007E533E /* ImageDiffCG.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCB284F30CFA84F2007E533E /* ImageDiffCG.cpp */; };
-		BCD08B3A0E1057EF00A7D0C1 /* AccessibilityController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCD08B390E1057EF00A7D0C1 /* AccessibilityController.cpp */; };
-		BCD08B710E1059D200A7D0C1 /* AccessibilityControllerMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCD08B700E1059D200A7D0C1 /* AccessibilityControllerMac.mm */; };
-		BCF6C6500C98E9C000AC063E /* GCController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCF6C64F0C98E9C000AC063E /* GCController.cpp */; };
-		C031182B134E4A2B00919757 /* NPPSetWindowCalledDuringDestruction.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C031182A134E4A2B00919757 /* NPPSetWindowCalledDuringDestruction.cpp */; };
-		C06F9ABC1267A7060058E1F6 /* PassDifferentNPPStruct.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C06F9ABB1267A7060058E1F6 /* PassDifferentNPPStruct.cpp */; };
-		C0E720751281C828004EF533 /* EvaluateJSAfterRemovingPluginElement.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0E720741281C828004EF533 /* EvaluateJSAfterRemovingPluginElement.cpp */; };
-		C0EC3C9C12787F0500939164 /* NullNPPGetValuePointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0EC3C9B12787F0500939164 /* NullNPPGetValuePointer.cpp */; };
-		E1B7816511AF31B7007E1BC2 /* MockGeolocationProvider.mm in Sources */ = {isa = PBXBuildFile; fileRef = E1B7808711AF1669007E1BC2 /* MockGeolocationProvider.mm */; };
-		E1B7816711AF31C3007E1BC2 /* MockGeolocationProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = E1B7808511AF1643007E1BC2 /* MockGeolocationProvider.h */; };
-/* End PBXBuildFile section */
-
-/* Begin PBXContainerItemProxy section */
-		141BF237096A451E00E0753C /* PBXContainerItemProxy */ = {
-			isa = PBXContainerItemProxy;
-			containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
-			proxyType = 1;
-			remoteGlobalIDString = 141BF21E096A441D00E0753C;
-			remoteInfo = TestNetscapePlugIn;
-		};
-		2D403F201508736C005358D2 /* PBXContainerItemProxy */ = {
-			isa = PBXContainerItemProxy;
-			containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
-			proxyType = 1;
-			remoteGlobalIDString = 2D403EB2150871F9005358D2;
-			remoteInfo = LayoutTestHelper;
-		};
-		378C802315AB589B00746821 /* PBXContainerItemProxy */ = {
-			isa = PBXContainerItemProxy;
-			containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
-			proxyType = 1;
-			remoteGlobalIDString = 9340994A08540CAE007F3BC8;
-			remoteInfo = DumpRenderTree;
-		};
-		5DC82A6F1023C93D00FD1D3B /* PBXContainerItemProxy */ = {
-			isa = PBXContainerItemProxy;
-			containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
-			proxyType = 1;
-			remoteGlobalIDString = 5DC82A661023C8DE00FD1D3B;
-			remoteInfo = "DumpRenderTree Perl Support";
-		};
-		A84F608E08B1370E00E9745F /* PBXContainerItemProxy */ = {
-			isa = PBXContainerItemProxy;
-			containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
-			proxyType = 1;
-			remoteGlobalIDString = B5A7525A08AF4A4A00138E45;
-			remoteInfo = ImageDiff;
-		};
-		A84F609008B1370E00E9745F /* PBXContainerItemProxy */ = {
-			isa = PBXContainerItemProxy;
-			containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
-			proxyType = 1;
-			remoteGlobalIDString = 9340994A08540CAE007F3BC8;
-			remoteInfo = DumpRenderTree;
-		};
-/* End PBXContainerItemProxy section */
-
-/* Begin PBXCopyFilesBuildPhase section */
-		5DB9ACAA0F722C4400684641 /* Copy Font Files */ = {
-			isa = PBXCopyFilesBuildPhase;
-			buildActionMask = 2147483647;
-			dstPath = DumpRenderTree.resources;
-			dstSubfolderSpec = 7;
-			files = (
-				5DB9AC970F722C3600684641 /* AHEM____.TTF in Copy Font Files */,
-				8CCDA82A151A72D10003F937 /* SampleFont.sfont in Copy Font Files */,
-				5DB9AC980F722C3600684641 /* WebKitWeightWatcher100.ttf in Copy Font Files */,
-				5DB9AC990F722C3600684641 /* WebKitWeightWatcher200.ttf in Copy Font Files */,
-				5DB9AC9A0F722C3600684641 /* WebKitWeightWatcher300.ttf in Copy Font Files */,
-				5DB9AC9B0F722C3600684641 /* WebKitWeightWatcher400.ttf in Copy Font Files */,
-				5DB9AC9C0F722C3600684641 /* WebKitWeightWatcher500.ttf in Copy Font Files */,
-				5DB9AC9D0F722C3600684641 /* WebKitWeightWatcher600.ttf in Copy Font Files */,
-				5DB9AC9E0F722C3600684641 /* WebKitWeightWatcher700.ttf in Copy Font Files */,
-				5DB9AC9F0F722C3600684641 /* WebKitWeightWatcher800.ttf in Copy Font Files */,
-				5DB9ACA00F722C3600684641 /* WebKitWeightWatcher900.ttf in Copy Font Files */,
-			);
-			name = "Copy Font Files";
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-/* End PBXCopyFilesBuildPhase section */
-
-/* Begin PBXFileReference section */
-		0F37A4A611E6628700275F54 /* PluginObjectMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PluginObjectMac.mm; sourceTree = "<group>"; };
-		141BF233096A44CF00E0753C /* TestNetscapePlugIn.plugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TestNetscapePlugIn.plugin; sourceTree = BUILT_PRODUCTS_DIR; };
-		141BF447096A45C800E0753C /* PluginObject.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = PluginObject.h; sourceTree = "<group>"; };
-		141BF448096A45C800E0753C /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.plist.xml; name = Info.plist; path = mac/Info.plist; sourceTree = "<group>"; };
-		14770FE00A22ADF7009342EE /* GCController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GCController.h; sourceTree = "<group>"; };
-		1A14C8A31406DE0400B254F7 /* SupportsCarbonEventModel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SupportsCarbonEventModel.cpp; sourceTree = "<group>"; };
-		1A1E4296141141C400388758 /* PrivateBrowsing.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PrivateBrowsing.cpp; sourceTree = "<group>"; };
-		1A215A7511F26072008AD0F5 /* DocumentOpenInDestroyStream.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DocumentOpenInDestroyStream.cpp; sourceTree = "<group>"; };
-		1A215A7F11F2609C008AD0F5 /* PluginTest.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PluginTest.cpp; sourceTree = "<group>"; };
-		1A215A8011F2609C008AD0F5 /* PluginTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PluginTest.h; sourceTree = "<group>"; };
-		1A24BAA8120734EE00FBB059 /* NPRuntimeObjectFromDestroyedPlugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NPRuntimeObjectFromDestroyedPlugin.cpp; sourceTree = "<group>"; };
-		1A31EB3713466AC100017372 /* ConvertPoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ConvertPoint.cpp; sourceTree = "<group>"; };
-		1A3E28A91311D73B00501349 /* GetURLWithJavaScriptURLDestroyingPlugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GetURLWithJavaScriptURLDestroyingPlugin.cpp; sourceTree = "<group>"; };
-		1A5CC1F3137DD2EC00A5D7E7 /* GetURLWithJavaScriptURL.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GetURLWithJavaScriptURL.cpp; sourceTree = "<group>"; };
-		1A66C34F14576A920099A115 /* ContentsScaleFactor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ContentsScaleFactor.cpp; sourceTree = "<group>"; };
-		1A8F024C0BB9B056008CFA34 /* TestObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestObject.h; sourceTree = "<group>"; };
-		1AC6C77F0D07589B00CD3161 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = "<group>"; };
-		1AC6C7800D07589B00CD3161 /* PluginObject.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PluginObject.cpp; sourceTree = "<group>"; };
-		1AC6C7810D07589B00CD3161 /* TestObject.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TestObject.cpp; sourceTree = "<group>"; };
-		1AC77DCE120605B6005C19EF /* NPRuntimeRemoveProperty.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NPRuntimeRemoveProperty.cpp; sourceTree = "<group>"; };
-		1ACF898B132EF41C00E915D4 /* NPDeallocateCalledBeforeNPShutdown.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NPDeallocateCalledBeforeNPShutdown.cpp; sourceTree = "<group>"; };
-		1AD4CB2012A6D1350027A7AF /* GetUserAgentWithNullNPPFromNPPNew.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GetUserAgentWithNullNPPFromNPPNew.cpp; sourceTree = "<group>"; };
-		1AD8683D163B2FD000A28583 /* NPRuntimeCallsWithNullNPP.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NPRuntimeCallsWithNullNPP.cpp; sourceTree = "<group>"; };
-		1AD9D2FD12028409001A70D1 /* PluginScriptableNPObjectInvokeDefault.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PluginScriptableNPObjectInvokeDefault.cpp; sourceTree = "<group>"; };
-		1AFF66BB137DEA8300791696 /* GetURLNotifyWithURLThatFailsToLoad.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GetURLNotifyWithURLThatFailsToLoad.cpp; sourceTree = "<group>"; };
-		23BCB88F0EA57623003C6289 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = /System/Library/Frameworks/OpenGL.framework; sourceTree = "<absolute>"; };
-		29CFBA0E122736E600BC30C0 /* AccessibilityTextMarker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccessibilityTextMarker.h; sourceTree = "<group>"; };
-		29CFBA0F122736E600BC30C0 /* AccessibilityTextMarker.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AccessibilityTextMarker.cpp; sourceTree = "<group>"; };
-		29CFBA2D12273A1000BC30C0 /* AccessibilityTextMarkerMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AccessibilityTextMarkerMac.mm; path = mac/AccessibilityTextMarkerMac.mm; sourceTree = "<group>"; };
-		2D403EA215087142005358D2 /* LayoutTestHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = LayoutTestHelper.m; path = mac/LayoutTestHelper.m; sourceTree = "<group>"; };
-		2D403F19150871F9005358D2 /* LayoutTestHelper */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = LayoutTestHelper; sourceTree = BUILT_PRODUCTS_DIR; };
-		31117B3A15D9A56A00163BC8 /* MockWebNotificationProvider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MockWebNotificationProvider.h; path = mac/MockWebNotificationProvider.h; sourceTree = "<group>"; };
-		31117B3B15D9A56A00163BC8 /* MockWebNotificationProvider.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = MockWebNotificationProvider.mm; path = mac/MockWebNotificationProvider.mm; sourceTree = "<group>"; };
-		32A70AAB03705E1F00C91783 /* DumpRenderTreePrefix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DumpRenderTreePrefix.h; sourceTree = "<group>"; };
-		375F09710DAC3CB600C8B4E5 /* WebKitWeightWatcher100.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = WebKitWeightWatcher100.ttf; path = fonts/WebKitWeightWatcher100.ttf; sourceTree = "<group>"; };
-		375F09720DAC3CB600C8B4E5 /* WebKitWeightWatcher200.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = WebKitWeightWatcher200.ttf; path = fonts/WebKitWeightWatcher200.ttf; sourceTree = "<group>"; };
-		375F09730DAC3CB600C8B4E5 /* WebKitWeightWatcher300.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = WebKitWeightWatcher300.ttf; path = fonts/WebKitWeightWatcher300.ttf; sourceTree = "<group>"; };
-		375F09740DAC3CB600C8B4E5 /* WebKitWeightWatcher400.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = WebKitWeightWatcher400.ttf; path = fonts/WebKitWeightWatcher400.ttf; sourceTree = "<group>"; };
-		375F09750DAC3CB600C8B4E5 /* WebKitWeightWatcher500.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = WebKitWeightWatcher500.ttf; path = fonts/WebKitWeightWatcher500.ttf; sourceTree = "<group>"; };
-		375F09760DAC3CB600C8B4E5 /* WebKitWeightWatcher600.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = WebKitWeightWatcher600.ttf; path = fonts/WebKitWeightWatcher600.ttf; sourceTree = "<group>"; };
-		375F09770DAC3CB600C8B4E5 /* WebKitWeightWatcher700.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = WebKitWeightWatcher700.ttf; path = fonts/WebKitWeightWatcher700.ttf; sourceTree = "<group>"; };
-		375F09780DAC3CB600C8B4E5 /* WebKitWeightWatcher800.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = WebKitWeightWatcher800.ttf; path = fonts/WebKitWeightWatcher800.ttf; sourceTree = "<group>"; };
-		375F09790DAC3CB600C8B4E5 /* WebKitWeightWatcher900.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = WebKitWeightWatcher900.ttf; path = fonts/WebKitWeightWatcher900.ttf; sourceTree = "<group>"; };
-		3A5626C0131C8B17002BE6D9 /* StorageTrackerDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StorageTrackerDelegate.h; sourceTree = "<group>"; };
-		3A5626C1131C8B17002BE6D9 /* StorageTrackerDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = StorageTrackerDelegate.mm; sourceTree = "<group>"; };
-		417DAA1C137B3E24007C57FB /* WebCoreTestSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WebCoreTestSupport.h; path = WebCoreTestSupport/WebCoreTestSupport.h; sourceTree = BUILT_PRODUCTS_DIR; };
-		440590701268453800CFD48D /* WebArchiveDumpSupportMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = WebArchiveDumpSupportMac.mm; path = mac/WebArchiveDumpSupportMac.mm; sourceTree = "<group>"; };
-		44A997820FCDE86400580F10 /* WebArchiveDumpSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WebArchiveDumpSupport.h; path = cf/WebArchiveDumpSupport.h; sourceTree = "<group>"; };
-		44A997830FCDE86400580F10 /* WebArchiveDumpSupport.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = WebArchiveDumpSupport.cpp; path = cf/WebArchiveDumpSupport.cpp; sourceTree = "<group>"; };
-		4AD6A11313C8124000EA9737 /* FormValue.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FormValue.cpp; sourceTree = "<group>"; };
-		5106803D15CC7B10001A8A23 /* SlowNPPNew.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SlowNPPNew.cpp; path = TestNetscapePlugIn/Tests/SlowNPPNew.cpp; sourceTree = SOURCE_ROOT; };
-		51134C9816014FDB001AA513 /* InvokeDestroysPluginWithinNPP_New.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = InvokeDestroysPluginWithinNPP_New.cpp; sourceTree = "<group>"; };
-		5113DE6615F6CBE5005EC8B3 /* NPPNewFails.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NPPNewFails.cpp; sourceTree = "<group>"; };
-		515C0CCF15EE785700F5A613 /* LogNPPSetWindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LogNPPSetWindow.cpp; sourceTree = "<group>"; };
-		515F429B15C07872007C8F90 /* PluginScriptableObjectOverridesAllProperties.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PluginScriptableObjectOverridesAllProperties.cpp; sourceTree = "<group>"; };
-		5185F69E10714A57007AA393 /* HistoryDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HistoryDelegate.h; path = mac/HistoryDelegate.h; sourceTree = "<group>"; };
-		5185F69F10714A57007AA393 /* HistoryDelegate.mm */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.objcpp; fileEncoding = 4; name = HistoryDelegate.mm; path = mac/HistoryDelegate.mm; sourceTree = "<group>"; };
-		51CACBD715D96FD000EB53A2 /* EvaluateJSWithinNPP_New.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = EvaluateJSWithinNPP_New.cpp; path = TestNetscapePlugIn/Tests/EvaluateJSWithinNPP_New.cpp; sourceTree = SOURCE_ROOT; };
-		53CBB830134E42F3001CE6A4 /* CyclicRedundancyCheck.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CyclicRedundancyCheck.cpp; sourceTree = "<group>"; };
-		53CBB831134E42F3001CE6A4 /* CyclicRedundancyCheck.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CyclicRedundancyCheck.h; sourceTree = "<group>"; };
-		5DE8AE4313A2C15800D6A37D /* libWebCoreTestSupport.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; path = libWebCoreTestSupport.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
-		80045AEB147718E7008290A8 /* AccessibilityNotificationHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AccessibilityNotificationHandler.h; path = mac/AccessibilityNotificationHandler.h; sourceTree = "<group>"; };
-		80045AEC147718E7008290A8 /* AccessibilityNotificationHandler.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AccessibilityNotificationHandler.mm; path = mac/AccessibilityNotificationHandler.mm; sourceTree = "<group>"; };
-		8465E2C60FFA8DF2003B8342 /* PixelDumpSupport.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = PixelDumpSupport.cpp; sourceTree = "<group>"; };
-		8CCDA81F151A56550003F937 /* SampleFont.sfont */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; name = SampleFont.sfont; path = fonts/SampleFont.sfont; sourceTree = "<group>"; };
-		9335435F03D75502008635CE /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = WebKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
-		9340995408540CAF007F3BC8 /* DumpRenderTree */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = DumpRenderTree; sourceTree = BUILT_PRODUCTS_DIR; };
-		9830F31E15C81181005AB206 /* DumpRenderTreeCommon.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DumpRenderTreeCommon.cpp; sourceTree = "<group>"; };
-		A803FF7409CAAD08009B2A37 /* DumpRenderTree.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.h; fileEncoding = 4; path = DumpRenderTree.h; sourceTree = "<group>"; };
-		A817090308B164D300CCB9FB /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = JavaScriptCore.framework; sourceTree = BUILT_PRODUCTS_DIR; };
-		A84F608908B136DA00E9745F /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; };
-		A8B91AD70CF3B32F008F91FF /* DumpRenderTreePasteboard.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DumpRenderTreePasteboard.m; path = mac/DumpRenderTreePasteboard.m; sourceTree = "<group>"; };
-		A8B91AD90CF3B32F008F91FF /* DumpRenderTreeWindow.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = DumpRenderTreeWindow.mm; path = mac/DumpRenderTreeWindow.mm; sourceTree = "<group>"; };
-		A8B91ADD0CF3B372008F91FF /* DumpRenderTreeWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DumpRenderTreeWindow.h; path = mac/DumpRenderTreeWindow.h; sourceTree = "<group>"; };
-		A8B91ADF0CF3B372008F91FF /* DumpRenderTreePasteboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DumpRenderTreePasteboard.h; path = mac/DumpRenderTreePasteboard.h; sourceTree = "<group>"; };
-		A8B91BF70CF522B4008F91FF /* CheckedMalloc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CheckedMalloc.cpp; path = mac/CheckedMalloc.cpp; sourceTree = "<group>"; };
-		A8B91BF90CF522B4008F91FF /* CheckedMalloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CheckedMalloc.h; path = mac/CheckedMalloc.h; sourceTree = "<group>"; };
-		A8D79CE80FC28B2C004AC8FE /* DumpRenderTreeFileDraggingSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DumpRenderTreeFileDraggingSource.h; sourceTree = "<group>"; };
-		A8D79CE90FC28B2C004AC8FE /* DumpRenderTreeFileDraggingSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DumpRenderTreeFileDraggingSource.m; sourceTree = "<group>"; };
-		AA5A15ED16E15CD000F7C561 /* AccessibilityControllerIOS.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AccessibilityControllerIOS.mm; path = ios/AccessibilityControllerIOS.mm; sourceTree = "<group>"; };
-		AA5A15EE16E15CD000F7C561 /* AccessibilityUIElementIOS.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AccessibilityUIElementIOS.mm; path = ios/AccessibilityUIElementIOS.mm; sourceTree = "<group>"; };
-		AA7F10C20CB3C1030003BDC9 /* AHEM____.TTF */ = {isa = PBXFileReference; lastKnownFileType = file; name = "AHEM____.TTF"; path = "qt/fonts/AHEM____.TTF"; sourceTree = "<group>"; };
-		AE8257EF08D22389000507AB /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = /System/Library/Frameworks/Carbon.framework; sourceTree = "<absolute>"; };
-		B5A7526708AF4A4A00138E45 /* ImageDiff */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = ImageDiff; sourceTree = BUILT_PRODUCTS_DIR; };
-		B5A752A108AF5D1F00138E45 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = /System/Library/Frameworks/QuartzCore.framework; sourceTree = "<absolute>"; };
-		BC0131D80C9772010087317D /* TestRunner.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = TestRunner.cpp; sourceTree = "<group>"; };
-		BC0131D90C9772010087317D /* TestRunner.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = TestRunner.h; sourceTree = "<group>"; };
-		BC0E24DE0E2D9451001B6BC2 /* AccessibilityUIElement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccessibilityUIElement.h; sourceTree = "<group>"; };
-		BC0E24DF0E2D9451001B6BC2 /* AccessibilityUIElement.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AccessibilityUIElement.cpp; sourceTree = "<group>"; };
-		BC0E26140E2DA4C6001B6BC2 /* AccessibilityUIElementMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AccessibilityUIElementMac.mm; path = mac/AccessibilityUIElementMac.mm; sourceTree = "<group>"; };
-		BC0E26140E2DA4C6001B6BC3 /* AccessibilityCommonMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AccessibilityCommonMac.mm; path = mac/AccessibilityCommonMac.mm; sourceTree = "<group>"; };
-		BC4741290D038A4C0072B006 /* JavaScriptThreading.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JavaScriptThreading.h; sourceTree = "<group>"; };
-		BC4741400D038A570072B006 /* JavaScriptThreadingPthreads.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = JavaScriptThreadingPthreads.cpp; path = pthreads/JavaScriptThreadingPthreads.cpp; sourceTree = "<group>"; };
-		BC9D90210C97472D0099A4A3 /* WorkQueue.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = WorkQueue.cpp; sourceTree = "<group>"; };
-		BC9D90220C97472E0099A4A3 /* WorkQueue.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = WorkQueue.h; sourceTree = "<group>"; };
-		BC9D90230C97472E0099A4A3 /* WorkQueueItem.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = WorkQueueItem.h; sourceTree = "<group>"; };
-		BCA18B210C9B014B00114369 /* GCControllerMac.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; name = GCControllerMac.mm; path = mac/GCControllerMac.mm; sourceTree = "<group>"; };
-		BCA18B220C9B014B00114369 /* TestRunnerMac.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = TestRunnerMac.mm; path = mac/TestRunnerMac.mm; sourceTree = "<group>"; };
-		BCA18B250C9B015C00114369 /* WorkQueueItemMac.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; name = WorkQueueItemMac.mm; path = mac/WorkQueueItemMac.mm; sourceTree = "<group>"; };
-		BCA18B2F0C9B01B400114369 /* ObjCController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = ObjCController.h; path = mac/ObjCController.h; sourceTree = "<group>"; };
-		BCA18B300C9B01B400114369 /* ObjCController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = ObjCController.m; path = mac/ObjCController.m; sourceTree = "<group>"; };
-		BCA18B360C9B021900114369 /* AppleScriptController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = AppleScriptController.h; path = mac/AppleScriptController.h; sourceTree = "<group>"; };
-		BCA18B370C9B021900114369 /* AppleScriptController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = AppleScriptController.m; path = mac/AppleScriptController.m; sourceTree = "<group>"; };
-		BCA18B3A0C9B024900114369 /* TextInputController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = TextInputController.h; path = mac/TextInputController.h; sourceTree = "<group>"; };
-		BCA18B480C9B02C400114369 /* TextInputController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = TextInputController.m; path = mac/TextInputController.m; sourceTree = "<group>"; };
-		BCA18B570C9B08C200114369 /* EditingDelegate.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = EditingDelegate.h; path = mac/EditingDelegate.h; sourceTree = "<group>"; };
-		BCA18B580C9B08C200114369 /* EditingDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; name = EditingDelegate.mm; path = mac/EditingDelegate.mm; sourceTree = "<group>"; };
-		BCA18B590C9B08C200114369 /* FrameLoadDelegate.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = FrameLoadDelegate.h; path = mac/FrameLoadDelegate.h; sourceTree = "<group>"; };
-		BCA18B5A0C9B08C200114369 /* FrameLoadDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; name = FrameLoadDelegate.mm; path = mac/FrameLoadDelegate.mm; sourceTree = "<group>"; };
-		BCA18B5B0C9B08C200114369 /* PolicyDelegate.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PolicyDelegate.h; path = mac/PolicyDelegate.h; sourceTree = "<group>"; };
-		BCA18B5C0C9B08C200114369 /* PolicyDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; name = PolicyDelegate.mm; path = mac/PolicyDelegate.mm; sourceTree = "<group>"; };
-		BCA18B5D0C9B08C200114369 /* ResourceLoadDelegate.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = ResourceLoadDelegate.h; path = mac/ResourceLoadDelegate.h; sourceTree = "<group>"; };
-		BCA18B5E0C9B08C200114369 /* ResourceLoadDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; name = ResourceLoadDelegate.mm; path = mac/ResourceLoadDelegate.mm; sourceTree = "<group>"; };
-		BCA18B5F0C9B08C200114369 /* UIDelegate.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = UIDelegate.h; path = mac/UIDelegate.h; sourceTree = "<group>"; };
-		BCA18B600C9B08C200114369 /* UIDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; name = UIDelegate.mm; path = mac/UIDelegate.mm; sourceTree = "<group>"; };
-		BCA18B6B0C9B08DB00114369 /* EventSendingController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = EventSendingController.h; path = mac/EventSendingController.h; sourceTree = "<group>"; };
-		BCA18B6C0C9B08DB00114369 /* EventSendingController.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; name = EventSendingController.mm; path = mac/EventSendingController.mm; sourceTree = "<group>"; };
-		BCA18B6D0C9B08DB00114369 /* NavigationController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = NavigationController.h; path = mac/NavigationController.h; sourceTree = "<group>"; };
-		BCA18B6E0C9B08DB00114369 /* NavigationController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = NavigationController.m; path = mac/NavigationController.m; sourceTree = "<group>"; };
-		BCA18B730C9B08F100114369 /* DumpRenderTreeDraggingInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = DumpRenderTreeDraggingInfo.h; path = mac/DumpRenderTreeDraggingInfo.h; sourceTree = "<group>"; };
-		BCA18B740C9B08F100114369 /* DumpRenderTreeDraggingInfo.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; name = DumpRenderTreeDraggingInfo.mm; path = mac/DumpRenderTreeDraggingInfo.mm; sourceTree = "<group>"; };
-		BCA18B760C9B08F100114369 /* ObjCPlugin.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = ObjCPlugin.h; path = mac/ObjCPlugin.h; sourceTree = "<group>"; };
-		BCA18B770C9B08F100114369 /* ObjCPlugin.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = ObjCPlugin.m; path = mac/ObjCPlugin.m; sourceTree = "<group>"; };
-		BCA18B780C9B08F100114369 /* ObjCPluginFunction.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = ObjCPluginFunction.h; path = mac/ObjCPluginFunction.h; sourceTree = "<group>"; };
-		BCA18B790C9B08F100114369 /* ObjCPluginFunction.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = ObjCPluginFunction.m; path = mac/ObjCPluginFunction.m; sourceTree = "<group>"; };
-		BCA18C0A0C9B59EF00114369 /* DumpRenderTreeMac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DumpRenderTreeMac.h; path = mac/DumpRenderTreeMac.h; sourceTree = "<group>"; };
-		BCA18C460C9B5B9400114369 /* DumpRenderTree.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; name = DumpRenderTree.mm; path = mac/DumpRenderTree.mm; sourceTree = "<group>"; };
-		BCB281EE0CFA713D007E533E /* Base.xcconfig */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xcconfig; name = Base.xcconfig; path = mac/Configurations/Base.xcconfig; sourceTree = "<group>"; };
-		BCB281F00CFA713D007E533E /* DumpRenderTree.xcconfig */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xcconfig; name = DumpRenderTree.xcconfig; path = mac/Configurations/DumpRenderTree.xcconfig; sourceTree = "<group>"; };
-		BCB282F40CFA7450007E533E /* DebugRelease.xcconfig */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xcconfig; name = DebugRelease.xcconfig; path = mac/Configurations/DebugRelease.xcconfig; sourceTree = "<group>"; };
-		BCB283D80CFA7AFD007E533E /* ImageDiff.xcconfig */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xcconfig; name = ImageDiff.xcconfig; path = mac/Configurations/ImageDiff.xcconfig; sourceTree = "<group>"; };
-		BCB283DE0CFA7C20007E533E /* TestNetscapePlugIn.xcconfig */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xcconfig; name = TestNetscapePlugIn.xcconfig; path = mac/Configurations/TestNetscapePlugIn.xcconfig; sourceTree = "<group>"; };
-		BCB284880CFA8202007E533E /* PixelDumpSupportCG.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = PixelDumpSupportCG.cpp; path = cg/PixelDumpSupportCG.cpp; sourceTree = "<group>"; };
-		BCB284890CFA8202007E533E /* PixelDumpSupportCG.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PixelDumpSupportCG.h; path = cg/PixelDumpSupportCG.h; sourceTree = "<group>"; };
-		BCB2848A0CFA820F007E533E /* PixelDumpSupport.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = PixelDumpSupport.h; sourceTree = "<group>"; };
-		BCB2848C0CFA8221007E533E /* PixelDumpSupportMac.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; name = PixelDumpSupportMac.mm; path = mac/PixelDumpSupportMac.mm; sourceTree = "<group>"; };
-		BCB284B20CFA82CB007E533E /* ApplicationServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ApplicationServices.framework; path = /System/Library/Frameworks/ApplicationServices.framework; sourceTree = "<absolute>"; };
-		BCB284F30CFA84F2007E533E /* ImageDiffCG.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = ImageDiffCG.cpp; path = cg/ImageDiffCG.cpp; sourceTree = "<group>"; };
-		BCD08A580E10496B00A7D0C1 /* AccessibilityController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccessibilityController.h; sourceTree = "<group>"; };
-		BCD08B390E1057EF00A7D0C1 /* AccessibilityController.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AccessibilityController.cpp; sourceTree = "<group>"; };
-		BCD08B700E1059D200A7D0C1 /* AccessibilityControllerMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AccessibilityControllerMac.mm; path = mac/AccessibilityControllerMac.mm; sourceTree = "<group>"; };
-		BCF6C64F0C98E9C000AC063E /* GCController.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = GCController.cpp; sourceTree = "<group>"; };
-		C031182A134E4A2B00919757 /* NPPSetWindowCalledDuringDestruction.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NPPSetWindowCalledDuringDestruction.cpp; sourceTree = "<group>"; };
-		C06F9ABB1267A7060058E1F6 /* PassDifferentNPPStruct.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PassDifferentNPPStruct.cpp; sourceTree = "<group>"; };
-		C0E720741281C828004EF533 /* EvaluateJSAfterRemovingPluginElement.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = EvaluateJSAfterRemovingPluginElement.cpp; sourceTree = "<group>"; };
-		C0EC3C9B12787F0500939164 /* NullNPPGetValuePointer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NullNPPGetValuePointer.cpp; sourceTree = "<group>"; };
-		E1B7808511AF1643007E1BC2 /* MockGeolocationProvider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MockGeolocationProvider.h; path = mac/MockGeolocationProvider.h; sourceTree = "<group>"; };
-		E1B7808711AF1669007E1BC2 /* MockGeolocationProvider.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = MockGeolocationProvider.mm; path = mac/MockGeolocationProvider.mm; sourceTree = "<group>"; };
-/* End PBXFileReference section */
-
-/* Begin PBXFrameworksBuildPhase section */
-		141BF21D096A441D00E0753C /* Frameworks */ = {
-			isa = PBXFrameworksBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				141BF439096A455900E0753C /* Carbon.framework in Frameworks */,
-				141BF436096A455900E0753C /* Cocoa.framework in Frameworks */,
-				141BF438096A455900E0753C /* JavaScriptCore.framework in Frameworks */,
-				0F37A4AA11E6629100275F54 /* QuartzCore.framework in Frameworks */,
-				141BF435096A455900E0753C /* WebKit.framework in Frameworks */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-		2D403F03150871F9005358D2 /* Frameworks */ = {
-			isa = PBXFrameworksBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				2D403F05150871F9005358D2 /* Carbon.framework in Frameworks */,
-				2D403F06150871F9005358D2 /* Cocoa.framework in Frameworks */,
-				2D403F08150871F9005358D2 /* OpenGL.framework in Frameworks */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-		9340994F08540CAE007F3BC8 /* Frameworks */ = {
-			isa = PBXFrameworksBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				AE8259F308D22463000507AB /* Carbon.framework in Frameworks */,
-				A84F608A08B136DA00E9745F /* Cocoa.framework in Frameworks */,
-				A817090408B164D300CCB9FB /* JavaScriptCore.framework in Frameworks */,
-				5DE8AE4413A2C15900D6A37D /* libWebCoreTestSupport.dylib in Frameworks */,
-				23BCB8900EA57623003C6289 /* OpenGL.framework in Frameworks */,
-				9340995108540CAE007F3BC8 /* WebKit.framework in Frameworks */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-		B5A7525F08AF4A4A00138E45 /* Frameworks */ = {
-			isa = PBXFrameworksBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				AE8259F408D22463000507AB /* Carbon.framework in Frameworks */,
-				A817090008B163EF00CCB9FB /* Cocoa.framework in Frameworks */,
-				B5A752A208AF5D1F00138E45 /* QuartzCore.framework in Frameworks */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-/* End PBXFrameworksBuildPhase section */
-
-/* Begin PBXGroup section */
-		08FB7794FE84155DC02AAC07 /* DumpRenderTree */ = {
-			isa = PBXGroup;
-			children = (
-				9830F31E15C81181005AB206 /* DumpRenderTreeCommon.cpp */,
-				32A70AAB03705E1F00C91783 /* DumpRenderTreePrefix.h */,
-				1422A2750AF6F4BD00E1A883 /* Delegates */,
-				1422A2690AF6F45200E1A883 /* Controllers */,
-				BCB284870CFA81ED007E533E /* PixelDump */,
-				A803FF7409CAAD08009B2A37 /* DumpRenderTree.h */,
-				BCA18C460C9B5B9400114369 /* DumpRenderTree.mm */,
-				A8B91BF70CF522B4008F91FF /* CheckedMalloc.cpp */,
-				A8B91BF90CF522B4008F91FF /* CheckedMalloc.h */,
-				BC4741290D038A4C0072B006 /* JavaScriptThreading.h */,
-				BC4741400D038A570072B006 /* JavaScriptThreadingPthreads.cpp */,
-				BCA18C0A0C9B59EF00114369 /* DumpRenderTreeMac.h */,
-				BCA18B730C9B08F100114369 /* DumpRenderTreeDraggingInfo.h */,
-				BCA18B740C9B08F100114369 /* DumpRenderTreeDraggingInfo.mm */,
-				A8D79CE80FC28B2C004AC8FE /* DumpRenderTreeFileDraggingSource.h */,
-				A8D79CE90FC28B2C004AC8FE /* DumpRenderTreeFileDraggingSource.m */,
-				44A997820FCDE86400580F10 /* WebArchiveDumpSupport.h */,
-				44A997830FCDE86400580F10 /* WebArchiveDumpSupport.cpp */,
-				440590701268453800CFD48D /* WebArchiveDumpSupportMac.mm */,
-				BC9D90210C97472D0099A4A3 /* WorkQueue.cpp */,
-				BC9D90220C97472E0099A4A3 /* WorkQueue.h */,
-				BC9D90230C97472E0099A4A3 /* WorkQueueItem.h */,
-				A8B91AD20CF3B305008F91FF /* AppKit Overrides */,
-				A8B91AC40CF3B170008F91FF /* ObjCPlugin */,
-				141BF1F5096A439800E0753C /* TestNetscapePlugIn */,
-				2D403EA015087135005358D2 /* LayoutTestHelper */,
-				9345229B0BD12B2C0086EDA0 /* Resources */,
-				417DA9181373674D007C57FB /* WebCoreTestSupport */,
-				A803FF6409CAACC1009B2A37 /* Frameworks */,
-				9340995508540CAF007F3BC8 /* Products */,
-				BCB281ED0CFA711D007E533E /* Configurations */,
-			);
-			name = DumpRenderTree;
-			sourceTree = "<group>";
-		};
-		141BF1F5096A439800E0753C /* TestNetscapePlugIn */ = {
-			isa = PBXGroup;
-			children = (
-				1A215A6E11F25FF1008AD0F5 /* Tests */,
-				141BF448096A45C800E0753C /* Info.plist */,
-				1AC6C77F0D07589B00CD3161 /* main.cpp */,
-				1AC6C7800D07589B00CD3161 /* PluginObject.cpp */,
-				141BF447096A45C800E0753C /* PluginObject.h */,
-				0F37A4A611E6628700275F54 /* PluginObjectMac.mm */,
-				1A215A7F11F2609C008AD0F5 /* PluginTest.cpp */,
-				1A215A8011F2609C008AD0F5 /* PluginTest.h */,
-				1AC6C7810D07589B00CD3161 /* TestObject.cpp */,
-				1A8F024C0BB9B056008CFA34 /* TestObject.h */,
-			);
-			path = TestNetscapePlugIn;
-			sourceTree = "<group>";
-		};
-		1422A2690AF6F45200E1A883 /* Controllers */ = {
-			isa = PBXGroup;
-			children = (
-				BC0E26140E2DA4C6001B6BC3 /* AccessibilityCommonMac.mm */,
-				BCD08B390E1057EF00A7D0C1 /* AccessibilityController.cpp */,
-				BCD08A580E10496B00A7D0C1 /* AccessibilityController.h */,
-				AA5A15ED16E15CD000F7C561 /* AccessibilityControllerIOS.mm */,
-				BCD08B700E1059D200A7D0C1 /* AccessibilityControllerMac.mm */,
-				80045AEB147718E7008290A8 /* AccessibilityNotificationHandler.h */,
-				80045AEC147718E7008290A8 /* AccessibilityNotificationHandler.mm */,
-				29CFBA0F122736E600BC30C0 /* AccessibilityTextMarker.cpp */,
-				29CFBA0E122736E600BC30C0 /* AccessibilityTextMarker.h */,
-				29CFBA2D12273A1000BC30C0 /* AccessibilityTextMarkerMac.mm */,
-				BC0E24DF0E2D9451001B6BC2 /* AccessibilityUIElement.cpp */,
-				BC0E24DE0E2D9451001B6BC2 /* AccessibilityUIElement.h */,
-				AA5A15EE16E15CD000F7C561 /* AccessibilityUIElementIOS.mm */,
-				BC0E26140E2DA4C6001B6BC2 /* AccessibilityUIElementMac.mm */,
-				BCA18B360C9B021900114369 /* AppleScriptController.h */,
-				BCA18B370C9B021900114369 /* AppleScriptController.m */,
-				BCA18B6B0C9B08DB00114369 /* EventSendingController.h */,
-				BCA18B6C0C9B08DB00114369 /* EventSendingController.mm */,
-				BCF6C64F0C98E9C000AC063E /* GCController.cpp */,
-				14770FE00A22ADF7009342EE /* GCController.h */,
-				BCA18B210C9B014B00114369 /* GCControllerMac.mm */,
-				E1B7808511AF1643007E1BC2 /* MockGeolocationProvider.h */,
-				E1B7808711AF1669007E1BC2 /* MockGeolocationProvider.mm */,
-				31117B3A15D9A56A00163BC8 /* MockWebNotificationProvider.h */,
-				31117B3B15D9A56A00163BC8 /* MockWebNotificationProvider.mm */,
-				BCA18B6D0C9B08DB00114369 /* NavigationController.h */,
-				BCA18B6E0C9B08DB00114369 /* NavigationController.m */,
-				BCA18B2F0C9B01B400114369 /* ObjCController.h */,
-				BCA18B300C9B01B400114369 /* ObjCController.m */,
-				BC0131D80C9772010087317D /* TestRunner.cpp */,
-				BC0131D90C9772010087317D /* TestRunner.h */,
-				BCA18B220C9B014B00114369 /* TestRunnerMac.mm */,
-				BCA18B3A0C9B024900114369 /* TextInputController.h */,
-				BCA18B480C9B02C400114369 /* TextInputController.m */,
-			);
-			name = Controllers;
-			sourceTree = "<group>";
-			usesTabs = 0;
-		};
-		1422A2750AF6F4BD00E1A883 /* Delegates */ = {
-			isa = PBXGroup;
-			children = (
-				BCA18B570C9B08C200114369 /* EditingDelegate.h */,
-				BCA18B580C9B08C200114369 /* EditingDelegate.mm */,
-				BCA18B590C9B08C200114369 /* FrameLoadDelegate.h */,
-				BCA18B5A0C9B08C200114369 /* FrameLoadDelegate.mm */,
-				5185F69E10714A57007AA393 /* HistoryDelegate.h */,
-				5185F69F10714A57007AA393 /* HistoryDelegate.mm */,
-				BCA18B5B0C9B08C200114369 /* PolicyDelegate.h */,
-				BCA18B5C0C9B08C200114369 /* PolicyDelegate.mm */,
-				BCA18B5D0C9B08C200114369 /* ResourceLoadDelegate.h */,
-				BCA18B5E0C9B08C200114369 /* ResourceLoadDelegate.mm */,
-				3A5626C0131C8B17002BE6D9 /* StorageTrackerDelegate.h */,
-				3A5626C1131C8B17002BE6D9 /* StorageTrackerDelegate.mm */,
-				BCA18B5F0C9B08C200114369 /* UIDelegate.h */,
-				BCA18B600C9B08C200114369 /* UIDelegate.mm */,
-			);
-			name = Delegates;
-			sourceTree = "<group>";
-		};
-		1A215A6E11F25FF1008AD0F5 /* Tests */ = {
-			isa = PBXGroup;
-			children = (
-				1A31EB3613466AC100017372 /* mac */,
-				1A215A7511F26072008AD0F5 /* DocumentOpenInDestroyStream.cpp */,
-				C0E720741281C828004EF533 /* EvaluateJSAfterRemovingPluginElement.cpp */,
-				51CACBD715D96FD000EB53A2 /* EvaluateJSWithinNPP_New.cpp */,
-				4AD6A11313C8124000EA9737 /* FormValue.cpp */,
-				1AFF66BB137DEA8300791696 /* GetURLNotifyWithURLThatFailsToLoad.cpp */,
-				1A5CC1F3137DD2EC00A5D7E7 /* GetURLWithJavaScriptURL.cpp */,
-				1A3E28A91311D73B00501349 /* GetURLWithJavaScriptURLDestroyingPlugin.cpp */,
-				1AD4CB2012A6D1350027A7AF /* GetUserAgentWithNullNPPFromNPPNew.cpp */,
-				51134C9816014FDB001AA513 /* InvokeDestroysPluginWithinNPP_New.cpp */,
-				515C0CCF15EE785700F5A613 /* LogNPPSetWindow.cpp */,
-				1ACF898B132EF41C00E915D4 /* NPDeallocateCalledBeforeNPShutdown.cpp */,
-				5113DE6615F6CBE5005EC8B3 /* NPPNewFails.cpp */,
-				C031182A134E4A2B00919757 /* NPPSetWindowCalledDuringDestruction.cpp */,
-				1AD8683D163B2FD000A28583 /* NPRuntimeCallsWithNullNPP.cpp */,
-				1A24BAA8120734EE00FBB059 /* NPRuntimeObjectFromDestroyedPlugin.cpp */,
-				1AC77DCE120605B6005C19EF /* NPRuntimeRemoveProperty.cpp */,
-				C0EC3C9B12787F0500939164 /* NullNPPGetValuePointer.cpp */,
-				C06F9ABB1267A7060058E1F6 /* PassDifferentNPPStruct.cpp */,
-				1AD9D2FD12028409001A70D1 /* PluginScriptableNPObjectInvokeDefault.cpp */,
-				515F429B15C07872007C8F90 /* PluginScriptableObjectOverridesAllProperties.cpp */,
-				1A1E4296141141C400388758 /* PrivateBrowsing.cpp */,
-				5106803D15CC7B10001A8A23 /* SlowNPPNew.cpp */,
-			);
-			path = Tests;
-			sourceTree = "<group>";
-		};
-		1A31EB3613466AC100017372 /* mac */ = {
-			isa = PBXGroup;
-			children = (
-				1A66C34F14576A920099A115 /* ContentsScaleFactor.cpp */,
-				1A31EB3713466AC100017372 /* ConvertPoint.cpp */,
-				1A14C8A31406DE0400B254F7 /* SupportsCarbonEventModel.cpp */,
-			);
-			path = mac;
-			sourceTree = "<group>";
-		};
-		2D403EA015087135005358D2 /* LayoutTestHelper */ = {
-			isa = PBXGroup;
-			children = (
-				2D403EA215087142005358D2 /* LayoutTestHelper.m */,
-			);
-			name = LayoutTestHelper;
-			sourceTree = "<group>";
-		};
-		417DA9181373674D007C57FB /* WebCoreTestSupport */ = {
-			isa = PBXGroup;
-			children = (
-				417DAA1C137B3E24007C57FB /* WebCoreTestSupport.h */,
-			);
-			name = WebCoreTestSupport;
-			sourceTree = "<group>";
-		};
-		9340995508540CAF007F3BC8 /* Products */ = {
-			isa = PBXGroup;
-			children = (
-				9340995408540CAF007F3BC8 /* DumpRenderTree */,
-				B5A7526708AF4A4A00138E45 /* ImageDiff */,
-				2D403F19150871F9005358D2 /* LayoutTestHelper */,
-				141BF233096A44CF00E0753C /* TestNetscapePlugIn.plugin */,
-			);
-			name = Products;
-			sourceTree = "<group>";
-		};
-		9345229B0BD12B2C0086EDA0 /* Resources */ = {
-			isa = PBXGroup;
-			children = (
-				AA7F10C20CB3C1030003BDC9 /* AHEM____.TTF */,
-				8CCDA81F151A56550003F937 /* SampleFont.sfont */,
-				375F09710DAC3CB600C8B4E5 /* WebKitWeightWatcher100.ttf */,
-				375F09720DAC3CB600C8B4E5 /* WebKitWeightWatcher200.ttf */,
-				375F09730DAC3CB600C8B4E5 /* WebKitWeightWatcher300.ttf */,
-				375F09740DAC3CB600C8B4E5 /* WebKitWeightWatcher400.ttf */,
-				375F09750DAC3CB600C8B4E5 /* WebKitWeightWatcher500.ttf */,
-				375F09760DAC3CB600C8B4E5 /* WebKitWeightWatcher600.ttf */,
-				375F09770DAC3CB600C8B4E5 /* WebKitWeightWatcher700.ttf */,
-				375F09780DAC3CB600C8B4E5 /* WebKitWeightWatcher800.ttf */,
-				375F09790DAC3CB600C8B4E5 /* WebKitWeightWatcher900.ttf */,
-			);
-			name = Resources;
-			sourceTree = "<group>";
-		};
-		A803FF6409CAACC1009B2A37 /* Frameworks */ = {
-			isa = PBXGroup;
-			children = (
-				BCB284B20CFA82CB007E533E /* ApplicationServices.framework */,
-				AE8257EF08D22389000507AB /* Carbon.framework */,
-				A84F608908B136DA00E9745F /* Cocoa.framework */,
-				A817090308B164D300CCB9FB /* JavaScriptCore.framework */,
-				5DE8AE4313A2C15800D6A37D /* libWebCoreTestSupport.dylib */,
-				23BCB88F0EA57623003C6289 /* OpenGL.framework */,
-				B5A752A108AF5D1F00138E45 /* QuartzCore.framework */,
-				9335435F03D75502008635CE /* WebKit.framework */,
-			);
-			name = Frameworks;
-			sourceTree = "<group>";
-		};
-		A8B91AC40CF3B170008F91FF /* ObjCPlugin */ = {
-			isa = PBXGroup;
-			children = (
-				BCA18B760C9B08F100114369 /* ObjCPlugin.h */,
-				BCA18B770C9B08F100114369 /* ObjCPlugin.m */,
-				BCA18B780C9B08F100114369 /* ObjCPluginFunction.h */,
-				BCA18B790C9B08F100114369 /* ObjCPluginFunction.m */,
-				BCA18B250C9B015C00114369 /* WorkQueueItemMac.mm */,
-			);
-			name = ObjCPlugin;
-			sourceTree = "<group>";
-		};
-		A8B91AD20CF3B305008F91FF /* AppKit Overrides */ = {
-			isa = PBXGroup;
-			children = (
-				A8B91ADF0CF3B372008F91FF /* DumpRenderTreePasteboard.h */,
-				A8B91AD70CF3B32F008F91FF /* DumpRenderTreePasteboard.m */,
-				A8B91ADD0CF3B372008F91FF /* DumpRenderTreeWindow.h */,
-				A8B91AD90CF3B32F008F91FF /* DumpRenderTreeWindow.mm */,
-			);
-			name = "AppKit Overrides";
-			sourceTree = "<group>";
-		};
-		BCB281ED0CFA711D007E533E /* Configurations */ = {
-			isa = PBXGroup;
-			children = (
-				BCB281EE0CFA713D007E533E /* Base.xcconfig */,
-				BCB282F40CFA7450007E533E /* DebugRelease.xcconfig */,
-				BCB281F00CFA713D007E533E /* DumpRenderTree.xcconfig */,
-				BCB283D80CFA7AFD007E533E /* ImageDiff.xcconfig */,
-				BCB283DE0CFA7C20007E533E /* TestNetscapePlugIn.xcconfig */,
-			);
-			name = Configurations;
-			sourceTree = "<group>";
-		};
-		BCB284870CFA81ED007E533E /* PixelDump */ = {
-			isa = PBXGroup;
-			children = (
-				53CBB830134E42F3001CE6A4 /* CyclicRedundancyCheck.cpp */,
-				53CBB831134E42F3001CE6A4 /* CyclicRedundancyCheck.h */,
-				BCB284F30CFA84F2007E533E /* ImageDiffCG.cpp */,
-				8465E2C60FFA8DF2003B8342 /* PixelDumpSupport.cpp */,
-				BCB2848A0CFA820F007E533E /* PixelDumpSupport.h */,
-				BCB284880CFA8202007E533E /* PixelDumpSupportCG.cpp */,
-				BCB284890CFA8202007E533E /* PixelDumpSupportCG.h */,
-				BCB2848C0CFA8221007E533E /* PixelDumpSupportMac.mm */,
-			);
-			name = PixelDump;
-			sourceTree = "<group>";
-		};
-/* End PBXGroup section */
-
-/* Begin PBXHeadersBuildPhase section */
-		141BF44E096A45DD00E0753C /* Headers */ = {
-			isa = PBXHeadersBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				141BF453096A45EB00E0753C /* PluginObject.h in Headers */,
-				1A215A8211F2609C008AD0F5 /* PluginTest.h in Headers */,
-				1A8F02E80BB9B4EC008CFA34 /* TestObject.h in Headers */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-		9340994B08540CAE007F3BC8 /* Headers */ = {
-			isa = PBXHeadersBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				80045AED147718E7008290A8 /* AccessibilityNotificationHandler.h in Headers */,
-				29CFBA10122736E600BC30C0 /* AccessibilityTextMarker.h in Headers */,
-				BC0E24E00E2D9451001B6BC2 /* AccessibilityUIElement.h in Headers */,
-				BCA18B380C9B021900114369 /* AppleScriptController.h in Headers */,
-				A8B91BFF0CF522B4008F91FF /* CheckedMalloc.h in Headers */,
-				53CBB833134E42F3001CE6A4 /* CyclicRedundancyCheck.h in Headers */,
-				BCA18B7A0C9B08F100114369 /* DumpRenderTreeDraggingInfo.h in Headers */,
-				A8D79CEA0FC28B2C004AC8FE /* DumpRenderTreeFileDraggingSource.h in Headers */,
-				BCA18C0B0C9B59EF00114369 /* DumpRenderTreeMac.h in Headers */,
-				A8B91AE20CF3B372008F91FF /* DumpRenderTreePasteboard.h in Headers */,
-				9340994C08540CAE007F3BC8 /* DumpRenderTreePrefix.h in Headers */,
-				A8B91AE00CF3B372008F91FF /* DumpRenderTreeWindow.h in Headers */,
-				BCA18B610C9B08C200114369 /* EditingDelegate.h in Headers */,
-				BCA18B6F0C9B08DB00114369 /* EventSendingController.h in Headers */,
-				BCA18B630C9B08C200114369 /* FrameLoadDelegate.h in Headers */,
-				14770FE20A22ADF7009342EE /* GCController.h in Headers */,
-				5185F6B310714E12007AA393 /* HistoryDelegate.h in Headers */,
-				BC47412A0D038A4C0072B006 /* JavaScriptThreading.h in Headers */,
-				E1B7816711AF31C3007E1BC2 /* MockGeolocationProvider.h in Headers */,
-				31117B3C15D9A56A00163BC8 /* MockWebNotificationProvider.h in Headers */,
-				BCA18B710C9B08DB00114369 /* NavigationController.h in Headers */,
-				BCA18B310C9B01B400114369 /* ObjCController.h in Headers */,
-				BCA18B7D0C9B08F100114369 /* ObjCPlugin.h in Headers */,
-				BCA18B7F0C9B08F100114369 /* ObjCPluginFunction.h in Headers */,
-				BCB284C70CFA83C4007E533E /* PixelDumpSupport.h in Headers */,
-				BCB284D00CFA83CC007E533E /* PixelDumpSupportCG.h in Headers */,
-				BCA18B650C9B08C200114369 /* PolicyDelegate.h in Headers */,
-				BCA18B670C9B08C200114369 /* ResourceLoadDelegate.h in Headers */,
-				3A5626CC131CA036002BE6D9 /* StorageTrackerDelegate.h in Headers */,
-				BC0131DB0C9772010087317D /* TestRunner.h in Headers */,
-				BCA18B3C0C9B024900114369 /* TextInputController.h in Headers */,
-				BCA18B690C9B08C200114369 /* UIDelegate.h in Headers */,
-				4437730F125CBC4D00AAE02C /* WebArchiveDumpSupport.h in Headers */,
-				417DAA1D137B3E24007C57FB /* WebCoreTestSupport.h in Headers */,
-				BC9D90250C97472E0099A4A3 /* WorkQueue.h in Headers */,
-				BC9D90260C97472E0099A4A3 /* WorkQueueItem.h in Headers */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-		B5A7525B08AF4A4A00138E45 /* Headers */ = {
-			isa = PBXHeadersBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-/* End PBXHeadersBuildPhase section */
-
-/* Begin PBXLegacyTarget section */
-		5DC82A661023C8DE00FD1D3B /* DumpRenderTree Perl Support */ = {
-			isa = PBXLegacyTarget;
-			buildArgumentsString = "$(ACTION)";
-			buildConfigurationList = 5DC82A6E1023C92A00FD1D3B /* Build configuration list for PBXLegacyTarget "DumpRenderTree Perl Support" */;
-			buildPhases = (
-			);
-			buildToolPath = make;
-			buildWorkingDirectory = "$(SRCROOT)/mac/PerlSupport";
-			dependencies = (
-				378C802415AB589B00746821 /* PBXTargetDependency */,
-			);
-			name = "DumpRenderTree Perl Support";
-			passBuildSettingsInEnvironment = 1;
-			productName = "DumpRenderTree Perl Support";
-		};
-/* End PBXLegacyTarget section */
-
-/* Begin PBXNativeTarget section */
-		141BF21E096A441D00E0753C /* TestNetscapePlugIn */ = {
-			isa = PBXNativeTarget;
-			buildConfigurationList = 141BF221096A441E00E0753C /* Build configuration list for PBXNativeTarget "TestNetscapePlugIn" */;
-			buildPhases = (
-				141BF21B096A441D00E0753C /* Resources */,
-				141BF44E096A45DD00E0753C /* Headers */,
-				141BF21C096A441D00E0753C /* Sources */,
-				141BF21D096A441D00E0753C /* Frameworks */,
-			);
-			buildRules = (
-			);
-			dependencies = (
-			);
-			name = TestNetscapePlugIn;
-			productName = TestNetscapePlugIn.plugin;
-			productReference = 141BF233096A44CF00E0753C /* TestNetscapePlugIn.plugin */;
-			productType = "com.apple.product-type.bundle";
-		};
-		2D403EB2150871F9005358D2 /* LayoutTestHelper */ = {
-			isa = PBXNativeTarget;
-			buildConfigurationList = 2D403F15150871F9005358D2 /* Build configuration list for PBXNativeTarget "LayoutTestHelper" */;
-			buildPhases = (
-				2D403ED8150871F9005358D2 /* Sources */,
-				2D403F03150871F9005358D2 /* Frameworks */,
-			);
-			buildRules = (
-			);
-			dependencies = (
-			);
-			name = LayoutTestHelper;
-			productInstallPath = "$(HOME)/bin";
-			productName = DumpRenderTree;
-			productReference = 2D403F19150871F9005358D2 /* LayoutTestHelper */;
-			productType = "com.apple.product-type.tool";
-		};
-		9340994A08540CAE007F3BC8 /* DumpRenderTree */ = {
-			isa = PBXNativeTarget;
-			buildConfigurationList = 149C29BF08902C6D008A9EFC /* Build configuration list for PBXNativeTarget "DumpRenderTree" */;
-			buildPhases = (
-				9340994B08540CAE007F3BC8 /* Headers */,
-				9340994D08540CAE007F3BC8 /* Sources */,
-				9340994F08540CAE007F3BC8 /* Frameworks */,
-				5DB9ACAA0F722C4400684641 /* Copy Font Files */,
-			);
-			buildRules = (
-			);
-			dependencies = (
-			);
-			name = DumpRenderTree;
-			productInstallPath = "$(HOME)/bin";
-			productName = DumpRenderTree;
-			productReference = 9340995408540CAF007F3BC8 /* DumpRenderTree */;
-			productType = "com.apple.product-type.tool";
-		};
-		B5A7525A08AF4A4A00138E45 /* ImageDiff */ = {
-			isa = PBXNativeTarget;
-			buildConfigurationList = B5A7526408AF4A4A00138E45 /* Build configuration list for PBXNativeTarget "ImageDiff" */;
-			buildPhases = (
-				B5A7525B08AF4A4A00138E45 /* Headers */,
-				B5A7525D08AF4A4A00138E45 /* Sources */,
-				B5A7525F08AF4A4A00138E45 /* Frameworks */,
-			);
-			buildRules = (
-			);
-			dependencies = (
-			);
-			name = ImageDiff;
-			productInstallPath = "$(HOME)/bin";
-			productName = DumpRenderTree;
-			productReference = B5A7526708AF4A4A00138E45 /* ImageDiff */;
-			productType = "com.apple.product-type.tool";
-		};
-/* End PBXNativeTarget section */
-
-/* Begin PBXProject section */
-		08FB7793FE84155DC02AAC07 /* Project object */ = {
-			isa = PBXProject;
-			attributes = {
-			};
-			buildConfigurationList = 149C29C308902C6D008A9EFC /* Build configuration list for PBXProject "DumpRenderTree" */;
-			compatibilityVersion = "Xcode 2.4";
-			developmentRegion = English;
-			hasScannedForEncodings = 1;
-			knownRegions = (
-				English,
-				Japanese,
-				French,
-				German,
-			);
-			mainGroup = 08FB7794FE84155DC02AAC07 /* DumpRenderTree */;
-			productRefGroup = 9340995508540CAF007F3BC8 /* Products */;
-			projectDirPath = "";
-			projectRoot = "";
-			targets = (
-				A84F608D08B1370600E9745F /* All */,
-				9340994A08540CAE007F3BC8 /* DumpRenderTree */,
-				B5A7525A08AF4A4A00138E45 /* ImageDiff */,
-				141BF21E096A441D00E0753C /* TestNetscapePlugIn */,
-				5DC82A661023C8DE00FD1D3B /* DumpRenderTree Perl Support */,
-				2D403EB2150871F9005358D2 /* LayoutTestHelper */,
-			);
-		};
-/* End PBXProject section */
-
-/* Begin PBXResourcesBuildPhase section */
-		141BF21B096A441D00E0753C /* Resources */ = {
-			isa = PBXResourcesBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-/* End PBXResourcesBuildPhase section */
-
-/* Begin PBXSourcesBuildPhase section */
-		141BF21C096A441D00E0753C /* Sources */ = {
-			isa = PBXSourcesBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				1A66C35114576A920099A115 /* ContentsScaleFactor.cpp in Sources */,
-				1A31EB3813466AC100017372 /* ConvertPoint.cpp in Sources */,
-				1A215BE711F27658008AD0F5 /* DocumentOpenInDestroyStream.cpp in Sources */,
-				C0E720751281C828004EF533 /* EvaluateJSAfterRemovingPluginElement.cpp in Sources */,
-				51CACBD815D96FD000EB53A2 /* EvaluateJSWithinNPP_New.cpp in Sources */,
-				4AD6A11413C8124000EA9737 /* FormValue.cpp in Sources */,
-				1AFF66BC137DEFD200791696 /* GetURLNotifyWithURLThatFailsToLoad.cpp in Sources */,
-				1A5CC1F5137DD2EC00A5D7E7 /* GetURLWithJavaScriptURL.cpp in Sources */,
-				1A3E28AA1311D73B00501349 /* GetURLWithJavaScriptURLDestroyingPlugin.cpp in Sources */,
-				1AD4CB2212A6D1350027A7AF /* GetUserAgentWithNullNPPFromNPPNew.cpp in Sources */,
-				51134C9916014FDC001AA513 /* InvokeDestroysPluginWithinNPP_New.cpp in Sources */,
-				515C0CD015EE785700F5A613 /* LogNPPSetWindow.cpp in Sources */,
-				1AC6C8490D07638600CD3161 /* main.cpp in Sources */,
-				1ACF898D132EF41C00E915D4 /* NPDeallocateCalledBeforeNPShutdown.cpp in Sources */,
-				5113DE6715F6CBE5005EC8B3 /* NPPNewFails.cpp in Sources */,
-				C031182B134E4A2B00919757 /* NPPSetWindowCalledDuringDestruction.cpp in Sources */,
-				1AD8683F163B2FD000A28583 /* NPRuntimeCallsWithNullNPP.cpp in Sources */,
-				1A24BAA9120734EE00FBB059 /* NPRuntimeObjectFromDestroyedPlugin.cpp in Sources */,
-				1AC77DCF120605B6005C19EF /* NPRuntimeRemoveProperty.cpp in Sources */,
-				C0EC3C9C12787F0500939164 /* NullNPPGetValuePointer.cpp in Sources */,
-				C06F9ABC1267A7060058E1F6 /* PassDifferentNPPStruct.cpp in Sources */,
-				1AC6C84A0D07638600CD3161 /* PluginObject.cpp in Sources */,
-				0F37A4A711E6628700275F54 /* PluginObjectMac.mm in Sources */,
-				1AD9D2FE12028409001A70D1 /* PluginScriptableNPObjectInvokeDefault.cpp in Sources */,
-				515F429C15C07872007C8F90 /* PluginScriptableObjectOverridesAllProperties.cpp in Sources */,
-				1A215A8111F2609C008AD0F5 /* PluginTest.cpp in Sources */,
-				1A1E4298141141C400388758 /* PrivateBrowsing.cpp in Sources */,
-				5106803E15CC7B10001A8A23 /* SlowNPPNew.cpp in Sources */,
-				1A14C8A51406DE0400B254F7 /* SupportsCarbonEventModel.cpp in Sources */,
-				1AC6C84B0D07638600CD3161 /* TestObject.cpp in Sources */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-		2D403ED8150871F9005358D2 /* Sources */ = {
-			isa = PBXSourcesBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				2D403F1B15087209005358D2 /* LayoutTestHelper.m in Sources */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-		9340994D08540CAE007F3BC8 /* Sources */ = {
-			isa = PBXSourcesBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				BC0E26150E2DA4C6001B6BC3 /* AccessibilityCommonMac.mm in Sources */,
-				BCD08B3A0E1057EF00A7D0C1 /* AccessibilityController.cpp in Sources */,
-				BCD08B710E1059D200A7D0C1 /* AccessibilityControllerMac.mm in Sources */,
-				80045AEE147718E7008290A8 /* AccessibilityNotificationHandler.mm in Sources */,
-				29CFBA11122736E600BC30C0 /* AccessibilityTextMarker.cpp in Sources */,
-				29CFBA2E12273A1000BC30C0 /* AccessibilityTextMarkerMac.mm in Sources */,
-				BC0E24E10E2D9451001B6BC2 /* AccessibilityUIElement.cpp in Sources */,
-				BC0E26150E2DA4C6001B6BC2 /* AccessibilityUIElementMac.mm in Sources */,
-				BCA18B390C9B021900114369 /* AppleScriptController.m in Sources */,
-				A8B91BFD0CF522B4008F91FF /* CheckedMalloc.cpp in Sources */,
-				53CBB832134E42F3001CE6A4 /* CyclicRedundancyCheck.cpp in Sources */,
-				BCA18C470C9B5B9400114369 /* DumpRenderTree.mm in Sources */,
-				9830F31F15C81181005AB206 /* DumpRenderTreeCommon.cpp in Sources */,
-				BCA18B7B0C9B08F100114369 /* DumpRenderTreeDraggingInfo.mm in Sources */,
-				A8D79CEB0FC28B2C004AC8FE /* DumpRenderTreeFileDraggingSource.m in Sources */,
-				A8B91ADA0CF3B32F008F91FF /* DumpRenderTreePasteboard.m in Sources */,
-				A8B91ADC0CF3B32F008F91FF /* DumpRenderTreeWindow.mm in Sources */,
-				BCA18B620C9B08C200114369 /* EditingDelegate.mm in Sources */,
-				BCA18B700C9B08DB00114369 /* EventSendingController.mm in Sources */,
-				BCA18B640C9B08C200114369 /* FrameLoadDelegate.mm in Sources */,
-				BCF6C6500C98E9C000AC063E /* GCController.cpp in Sources */,
-				BCA18B230C9B014B00114369 /* GCControllerMac.mm in Sources */,
-				AA5A15EF16E15CD000F7C561 /* AccessibilityControllerIOS.mm in Sources */,
-				5185F6B210714E07007AA393 /* HistoryDelegate.mm in Sources */,
-				BC4741410D038A570072B006 /* JavaScriptThreadingPthreads.cpp in Sources */,
-				E1B7816511AF31B7007E1BC2 /* MockGeolocationProvider.mm in Sources */,
-				31117B3D15D9A56A00163BC8 /* MockWebNotificationProvider.mm in Sources */,
-				BCA18B720C9B08DB00114369 /* NavigationController.m in Sources */,
-				BCA18B320C9B01B400114369 /* ObjCController.m in Sources */,
-				BCA18B7E0C9B08F100114369 /* ObjCPlugin.m in Sources */,
-				BCA18B800C9B08F100114369 /* ObjCPluginFunction.m in Sources */,
-				8465E2C70FFA8DF2003B8342 /* PixelDumpSupport.cpp in Sources */,
-				BCB284CD0CFA83C8007E533E /* PixelDumpSupportCG.cpp in Sources */,
-				BCB284D60CFA83D1007E533E /* PixelDumpSupportMac.mm in Sources */,
-				BCA18B660C9B08C200114369 /* PolicyDelegate.mm in Sources */,
-				AA5A15F016E15CD000F7C561 /* AccessibilityUIElementIOS.mm in Sources */,
-				BCA18B680C9B08C200114369 /* ResourceLoadDelegate.mm in Sources */,
-				3A5626CB131CA02A002BE6D9 /* StorageTrackerDelegate.mm in Sources */,
-				BC0131DA0C9772010087317D /* TestRunner.cpp in Sources */,
-				BCA18B240C9B014B00114369 /* TestRunnerMac.mm in Sources */,
-				BCA18B490C9B02C400114369 /* TextInputController.m in Sources */,
-				BCA18B6A0C9B08C200114369 /* UIDelegate.mm in Sources */,
-				4437730E125CBC3600AAE02C /* WebArchiveDumpSupport.cpp in Sources */,
-				440590711268453800CFD48D /* WebArchiveDumpSupportMac.mm in Sources */,
-				BC9D90240C97472E0099A4A3 /* WorkQueue.cpp in Sources */,
-				BCA18B260C9B015C00114369 /* WorkQueueItemMac.mm in Sources */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-		B5A7525D08AF4A4A00138E45 /* Sources */ = {
-			isa = PBXSourcesBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				BCB284F60CFA84F8007E533E /* ImageDiffCG.cpp in Sources */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-/* End PBXSourcesBuildPhase section */
-
-/* Begin PBXTargetDependency section */
-		141BF238096A451E00E0753C /* PBXTargetDependency */ = {
-			isa = PBXTargetDependency;
-			target = 141BF21E096A441D00E0753C /* TestNetscapePlugIn */;
-			targetProxy = 141BF237096A451E00E0753C /* PBXContainerItemProxy */;
-		};
-		2D403F211508736C005358D2 /* PBXTargetDependency */ = {
-			isa = PBXTargetDependency;
-			target = 2D403EB2150871F9005358D2 /* LayoutTestHelper */;
-			targetProxy = 2D403F201508736C005358D2 /* PBXContainerItemProxy */;
-		};
-		378C802415AB589B00746821 /* PBXTargetDependency */ = {
-			isa = PBXTargetDependency;
-			target = 9340994A08540CAE007F3BC8 /* DumpRenderTree */;
-			targetProxy = 378C802315AB589B00746821 /* PBXContainerItemProxy */;
-		};
-		5DC82A701023C93D00FD1D3B /* PBXTargetDependency */ = {
-			isa = PBXTargetDependency;
-			target = 5DC82A661023C8DE00FD1D3B /* DumpRenderTree Perl Support */;
-			targetProxy = 5DC82A6F1023C93D00FD1D3B /* PBXContainerItemProxy */;
-		};
-		A84F608F08B1370E00E9745F /* PBXTargetDependency */ = {
-			isa = PBXTargetDependency;
-			target = B5A7525A08AF4A4A00138E45 /* ImageDiff */;
-			targetProxy = A84F608E08B1370E00E9745F /* PBXContainerItemProxy */;
-		};
-		A84F609108B1370E00E9745F /* PBXTargetDependency */ = {
-			isa = PBXTargetDependency;
-			target = 9340994A08540CAE007F3BC8 /* DumpRenderTree */;
-			targetProxy = A84F609008B1370E00E9745F /* PBXContainerItemProxy */;
-		};
-/* End PBXTargetDependency section */
-
-/* Begin XCBuildConfiguration section */
-		141BF222096A441E00E0753C /* Debug */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BCB283DE0CFA7C20007E533E /* TestNetscapePlugIn.xcconfig */;
-			buildSettings = {
-				INFOPLIST_FILE = TestNetscapePlugIn/mac/Info.plist;
-			};
-			name = Debug;
-		};
-		141BF223096A441E00E0753C /* Release */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BCB283DE0CFA7C20007E533E /* TestNetscapePlugIn.xcconfig */;
-			buildSettings = {
-				INFOPLIST_FILE = TestNetscapePlugIn/mac/Info.plist;
-			};
-			name = Release;
-		};
-		149C29C008902C6D008A9EFC /* Debug */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BCB281F00CFA713D007E533E /* DumpRenderTree.xcconfig */;
-			buildSettings = {
-			};
-			name = Debug;
-		};
-		149C29C108902C6D008A9EFC /* Release */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BCB281F00CFA713D007E533E /* DumpRenderTree.xcconfig */;
-			buildSettings = {
-			};
-			name = Release;
-		};
-		149C29C408902C6D008A9EFC /* Debug */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BCB282F40CFA7450007E533E /* DebugRelease.xcconfig */;
-			buildSettings = {
-				GCC_OPTIMIZATION_LEVEL = 0;
-			};
-			name = Debug;
-		};
-		149C29C508902C6D008A9EFC /* Release */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BCB282F40CFA7450007E533E /* DebugRelease.xcconfig */;
-			buildSettings = {
-			};
-			name = Release;
-		};
-		2D403F16150871F9005358D2 /* Debug */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BCB281F00CFA713D007E533E /* DumpRenderTree.xcconfig */;
-			buildSettings = {
-				PRODUCT_NAME = LayoutTestHelper;
-			};
-			name = Debug;
-		};
-		2D403F17150871F9005358D2 /* Release */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BCB281F00CFA713D007E533E /* DumpRenderTree.xcconfig */;
-			buildSettings = {
-				PRODUCT_NAME = LayoutTestHelper;
-			};
-			name = Release;
-		};
-		2D403F18150871F9005358D2 /* Production */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BCB281F00CFA713D007E533E /* DumpRenderTree.xcconfig */;
-			buildSettings = {
-				INSTALL_PATH = "$(SYSTEM_LIBRARY_DIR)/Frameworks/$(WEBKIT_FRAMEWORK_RESOURCES_PATH)";
-				PRODUCT_NAME = LayoutTestHelper;
-				SKIP_INSTALL = NO;
-			};
-			name = Production;
-		};
-		5DC82A671023C8DE00FD1D3B /* Debug */ = {
-			isa = XCBuildConfiguration;
-			buildSettings = {
-				PRODUCT_NAME = "DumpRenderTree Perl Support";
-			};
-			name = Debug;
-		};
-		5DC82A681023C8DE00FD1D3B /* Release */ = {
-			isa = XCBuildConfiguration;
-			buildSettings = {
-				PRODUCT_NAME = "DumpRenderTree Perl Support";
-			};
-			name = Release;
-		};
-		5DC82A691023C8DE00FD1D3B /* Production */ = {
-			isa = XCBuildConfiguration;
-			buildSettings = {
-				PRODUCT_NAME = "DumpRenderTree Perl Support";
-			};
-			name = Production;
-		};
-		90CBC3500F748B1300A712B7 /* Production */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BCB281EE0CFA713D007E533E /* Base.xcconfig */;
-			buildSettings = {
-				WEBKIT_FRAMEWORK_RESOURCES_PATH = WebKit.framework/Versions/A/Resources;
-			};
-			name = Production;
-		};
-		90CBC3510F748B1300A712B7 /* Production */ = {
-			isa = XCBuildConfiguration;
-			buildSettings = {
-				INSTALL_PATH = "$(SYSTEM_LIBRARY_DIR)/Frameworks/$(WEBKIT_FRAMEWORK_RESOURCES_PATH)";
-				PRODUCT_NAME = All;
-			};
-			name = Production;
-		};
-		90CBC3520F748B1300A712B7 /* Production */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BCB281F00CFA713D007E533E /* DumpRenderTree.xcconfig */;
-			buildSettings = {
-				INSTALL_PATH = "$(SYSTEM_LIBRARY_DIR)/Frameworks/$(WEBKIT_FRAMEWORK_RESOURCES_PATH)";
-				SKIP_INSTALL = NO;
-			};
-			name = Production;
-		};
-		90CBC3530F748B1300A712B7 /* Production */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BCB283D80CFA7AFD007E533E /* ImageDiff.xcconfig */;
-			buildSettings = {
-				INSTALL_PATH = "$(SYSTEM_LIBRARY_DIR)/Frameworks/$(WEBKIT_FRAMEWORK_RESOURCES_PATH)";
-				SKIP_INSTALL = NO;
-			};
-			name = Production;
-		};
-		90CBC3540F748B1300A712B7 /* Production */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BCB283DE0CFA7C20007E533E /* TestNetscapePlugIn.xcconfig */;
-			buildSettings = {
-				INFOPLIST_FILE = TestNetscapePlugIn/mac/Info.plist;
-				INSTALL_PATH = "$(SYSTEM_LIBRARY_DIR)/Frameworks/$(WEBKIT_FRAMEWORK_RESOURCES_PATH)";
-				SKIP_INSTALL = NO;
-			};
-			name = Production;
-		};
-		A84F609308B1371400E9745F /* Debug */ = {
-			isa = XCBuildConfiguration;
-			buildSettings = {
-				COPY_PHASE_STRIP = NO;
-				GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
-				GCC_OPTIMIZATION_LEVEL = 0;
-				OTHER_CFLAGS = "";
-				OTHER_REZFLAGS = "";
-				PRODUCT_NAME = All;
-				SECTORDER_FLAGS = "";
-				WARNING_CFLAGS = (
-					"-Wmost",
-					"-Wno-four-char-constants",
-					"-Wno-unknown-pragmas",
-				);
-			};
-			name = Debug;
-		};
-		A84F609408B1371400E9745F /* Release */ = {
-			isa = XCBuildConfiguration;
-			buildSettings = {
-				COPY_PHASE_STRIP = YES;
-				GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
-				GCC_OPTIMIZATION_LEVEL = 0;
-				OTHER_CFLAGS = "";
-				OTHER_REZFLAGS = "";
-				PRODUCT_NAME = All;
-				SECTORDER_FLAGS = "";
-				WARNING_CFLAGS = (
-					"-Wmost",
-					"-Wno-four-char-constants",
-					"-Wno-unknown-pragmas",
-				);
-			};
-			name = Release;
-		};
-		B5A7526508AF4A4A00138E45 /* Debug */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BCB283D80CFA7AFD007E533E /* ImageDiff.xcconfig */;
-			buildSettings = {
-			};
-			name = Debug;
-		};
-		B5A7526608AF4A4A00138E45 /* Release */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BCB283D80CFA7AFD007E533E /* ImageDiff.xcconfig */;
-			buildSettings = {
-			};
-			name = Release;
-		};
-/* End XCBuildConfiguration section */
-
-/* Begin XCConfigurationList section */
-		141BF221096A441E00E0753C /* Build configuration list for PBXNativeTarget "TestNetscapePlugIn" */ = {
-			isa = XCConfigurationList;
-			buildConfigurations = (
-				141BF222096A441E00E0753C /* Debug */,
-				141BF223096A441E00E0753C /* Release */,
-				90CBC3540F748B1300A712B7 /* Production */,
-			);
-			defaultConfigurationIsVisible = 0;
-			defaultConfigurationName = Production;
-		};
-		149C29BF08902C6D008A9EFC /* Build configuration list for PBXNativeTarget "DumpRenderTree" */ = {
-			isa = XCConfigurationList;
-			buildConfigurations = (
-				149C29C008902C6D008A9EFC /* Debug */,
-				149C29C108902C6D008A9EFC /* Release */,
-				90CBC3520F748B1300A712B7 /* Production */,
-			);
-			defaultConfigurationIsVisible = 0;
-			defaultConfigurationName = Production;
-		};
-		149C29C308902C6D008A9EFC /* Build configuration list for PBXProject "DumpRenderTree" */ = {
-			isa = XCConfigurationList;
-			buildConfigurations = (
-				149C29C408902C6D008A9EFC /* Debug */,
-				149C29C508902C6D008A9EFC /* Release */,
-				90CBC3500F748B1300A712B7 /* Production */,
-			);
-			defaultConfigurationIsVisible = 0;
-			defaultConfigurationName = Production;
-		};
-		2D403F15150871F9005358D2 /* Build configuration list for PBXNativeTarget "LayoutTestHelper" */ = {
-			isa = XCConfigurationList;
-			buildConfigurations = (
-				2D403F16150871F9005358D2 /* Debug */,
-				2D403F17150871F9005358D2 /* Release */,
-				2D403F18150871F9005358D2 /* Production */,
-			);
-			defaultConfigurationIsVisible = 0;
-			defaultConfigurationName = Production;
-		};
-		5DC82A6E1023C92A00FD1D3B /* Build configuration list for PBXLegacyTarget "DumpRenderTree Perl Support" */ = {
-			isa = XCConfigurationList;
-			buildConfigurations = (
-				5DC82A671023C8DE00FD1D3B /* Debug */,
-				5DC82A681023C8DE00FD1D3B /* Release */,
-				5DC82A691023C8DE00FD1D3B /* Production */,
-			);
-			defaultConfigurationIsVisible = 0;
-			defaultConfigurationName = Production;
-		};
-		A84F609208B1371400E9745F /* Build configuration list for PBXAggregateTarget "All" */ = {
-			isa = XCConfigurationList;
-			buildConfigurations = (
-				A84F609308B1371400E9745F /* Debug */,
-				A84F609408B1371400E9745F /* Release */,
-				90CBC3510F748B1300A712B7 /* Production */,
-			);
-			defaultConfigurationIsVisible = 0;
-			defaultConfigurationName = Production;
-		};
-		B5A7526408AF4A4A00138E45 /* Build configuration list for PBXNativeTarget "ImageDiff" */ = {
-			isa = XCConfigurationList;
-			buildConfigurations = (
-				B5A7526508AF4A4A00138E45 /* Debug */,
-				B5A7526608AF4A4A00138E45 /* Release */,
-				90CBC3530F748B1300A712B7 /* Production */,
-			);
-			defaultConfigurationIsVisible = 0;
-			defaultConfigurationName = Production;
-		};
-/* End XCConfigurationList section */
-	};
-	rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
-}
diff --git a/Tools/DumpRenderTree/DumpRenderTreeFileDraggingSource.h b/Tools/DumpRenderTree/DumpRenderTreeFileDraggingSource.h
deleted file mode 100644
index e2f45d6..0000000
--- a/Tools/DumpRenderTree/DumpRenderTreeFileDraggingSource.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright (c) 2009, Google Inc. All rights reserved.
-// 
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions are
-// met:
-// 
-//     * Redistributions of source code must retain the above copyright
-// notice, this list of conditions and the following disclaimer.
-//     * Redistributions in binary form must reproduce the above
-// copyright notice, this list of conditions and the following disclaimer
-// in the documentation and/or other materials provided with the
-// distribution.
-//     * Neither the name of Google Inc. nor the names of its
-// contributors may be used to endorse or promote products derived from
-// this software without specific prior written permission.
-// 
-// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-#import <Cocoa/Cocoa.h>
-
-// An implementation of NSDraggingSource for use with DumpRenderTreeDraggingInfo when dragging files
-// Used by -[EventSendingController beginDragWithFiles:]
-
-@interface DumpRenderTreeFileDraggingSource : NSObject {
-}
-
-- (NSDragOperation)draggingSourceOperationMaskForLocal:(BOOL)flag;
-
-@end
diff --git a/Tools/DumpRenderTree/DumpRenderTreeFileDraggingSource.m b/Tools/DumpRenderTree/DumpRenderTreeFileDraggingSource.m
deleted file mode 100644
index 449d918..0000000
--- a/Tools/DumpRenderTree/DumpRenderTreeFileDraggingSource.m
+++ /dev/null
@@ -1,38 +0,0 @@
-// Copyright (c) 2009, Google Inc. All rights reserved.
-// 
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions are
-// met:
-// 
-//     * Redistributions of source code must retain the above copyright
-// notice, this list of conditions and the following disclaimer.
-//     * Redistributions in binary form must reproduce the above
-// copyright notice, this list of conditions and the following disclaimer
-// in the documentation and/or other materials provided with the
-// distribution.
-//     * Neither the name of Google Inc. nor the names of its
-// contributors may be used to endorse or promote products derived from
-// this software without specific prior written permission.
-// 
-// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-#import "DumpRenderTreeFileDraggingSource.h"
-
-@implementation DumpRenderTreeFileDraggingSource
-
-- (NSDragOperation)draggingSourceOperationMaskForLocal:(BOOL)flag
-{
-    return NSDragOperationCopy;
-}
-
-@end
diff --git a/Tools/DumpRenderTree/DumpRenderTreePrefix.h b/Tools/DumpRenderTree/DumpRenderTreePrefix.h
deleted file mode 100644
index 010ca01..0000000
--- a/Tools/DumpRenderTree/DumpRenderTreePrefix.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * Copyright (C) 2005 Apple Computer, Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifdef __OBJC__
-
-#import <Foundation/Foundation.h>
-
-#endif
-
-#if defined(WIN32) || defined(_WIN32)
-
-// If we don't define these, they get defined in windef.h. 
-// We want to use std::min and std::max
-#define max max
-#define min min
-
-#endif
diff --git a/Tools/DumpRenderTree/ForwardingHeaders/runtime/JSExportMacros.h b/Tools/DumpRenderTree/ForwardingHeaders/runtime/JSExportMacros.h
deleted file mode 100755
index 4c5dcb9..0000000
--- a/Tools/DumpRenderTree/ForwardingHeaders/runtime/JSExportMacros.h
+++ /dev/null
@@ -1 +0,0 @@
-#include <JavaScriptCore/JSExportMacros.h>
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/GCController.cpp b/Tools/DumpRenderTree/GCController.cpp
deleted file mode 100644
index 06a04fb..0000000
--- a/Tools/DumpRenderTree/GCController.cpp
+++ /dev/null
@@ -1,100 +0,0 @@
-/*
- * Copyright (C) 2007 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "GCController.h"
-
-#include <JavaScriptCore/JSObjectRef.h>
-#include <JavaScriptCore/JSRetainPtr.h>
-
-GCController::GCController()
-{
-}
-
-GCController::~GCController()
-{
-}
-
-// Static Functions
-
-static JSValueRef collectCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    GCController* controller = static_cast<GCController*>(JSObjectGetPrivate(thisObject));
-    controller->collect();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef collectOnAlternateThreadCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    bool waitUntilDone = false;
-    if (argumentCount > 0)
-        waitUntilDone = JSValueToBoolean(context, arguments[0]);
-
-    GCController* controller = static_cast<GCController*>(JSObjectGetPrivate(thisObject));
-    controller->collectOnAlternateThread(waitUntilDone);
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef getJSObjectCountCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    GCController* controller = static_cast<GCController*>(JSObjectGetPrivate(thisObject));
-    size_t jsObjectCount = controller->getJSObjectCount();
-
-    return JSValueMakeNumber(context, jsObjectCount);
-}
-
-// Object Creation
-
-void GCController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> gcControllerStr(Adopt, JSStringCreateWithUTF8CString("GCController"));
-
-    JSClassRef classRef = getJSClass();
-    JSValueRef gcControllerObject = JSObjectMake(context, classRef, this);
-    JSClassRelease(classRef);
-
-    JSObjectSetProperty(context, windowObject, gcControllerStr.get(), gcControllerObject, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, exception);
-}
-
-JSClassRef GCController::getJSClass()
-{
-    static JSStaticFunction staticFunctions[] = {
-        { "collect", collectCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "collectOnAlternateThread", collectOnAlternateThreadCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "getJSObjectCount", getJSObjectCountCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { 0, 0, 0 }
-    };
-
-    static JSClassDefinition classDefinition = {
-        0, kJSClassAttributeNone, "GCController", 0, 0, staticFunctions,
-        0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
-    };
-
-    return JSClassCreate(&classDefinition);
-}
diff --git a/Tools/DumpRenderTree/GCController.h b/Tools/DumpRenderTree/GCController.h
deleted file mode 100644
index afc1de0..0000000
--- a/Tools/DumpRenderTree/GCController.h
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
- * Copyright (C) 2006 Apple Computer, Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef GCController_h
-#define GCController_h
-
-#include <JavaScriptCore/JSObjectRef.h>
-
-class GCController {
-public:
-    GCController();
-    ~GCController();
-
-    void makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception);
-
-    // Controller Methods - platfrom independant implementations
-    void collect() const;
-    void collectOnAlternateThread(bool waitUntilDone) const;
-    size_t getJSObjectCount() const;
-
-private:
-    static JSClassRef getJSClass();
-};
-
-#endif // GCController_h
diff --git a/Tools/DumpRenderTree/JavaScriptThreading.h b/Tools/DumpRenderTree/JavaScriptThreading.h
deleted file mode 100644
index 43795a1..0000000
--- a/Tools/DumpRenderTree/JavaScriptThreading.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * Copyright (C) 2005, 2006, 2007 Apple Inc. All rights reserved.
- *           (C) 2007 Graham Dennis (graham.dennis@gmail.com)
- *           (C) 2007 Eric Seidel <eric@webkit.org>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef JavaScriptThreading_h
-#define JavaScriptThreading_h
-
-/* These functions start/stop threads used to abuse the JavaScript interpreter
- and assure that our JS implementation remains threadsafe */
-
-void startJavaScriptThreads();
-void stopJavaScriptThreads();
-
-#endif // JavaScriptThreading_h
diff --git a/Tools/DumpRenderTree/Makefile b/Tools/DumpRenderTree/Makefile
deleted file mode 100644
index 344ef48..0000000
--- a/Tools/DumpRenderTree/Makefile
+++ /dev/null
@@ -1,9 +0,0 @@
-SCRIPTS_PATH = ../Scripts
-
-ifneq (,$(findstring iphoneos,$(SDKROOT)))
-	OTHER_OPTIONS += -target All-iOS
-else ifneq (,$(findstring iphonesimulator,$(SDKROOT)))
-	OTHER_OPTIONS += -target All-iOS
-endif
-
-include ../../Makefile.shared
diff --git a/Tools/DumpRenderTree/OWNERS b/Tools/DumpRenderTree/OWNERS
new file mode 100644
index 0000000..72e8ffc
--- /dev/null
+++ b/Tools/DumpRenderTree/OWNERS
@@ -0,0 +1 @@
+*
diff --git a/Tools/DumpRenderTree/PixelDumpSupport.cpp b/Tools/DumpRenderTree/PixelDumpSupport.cpp
deleted file mode 100644
index 1652911..0000000
--- a/Tools/DumpRenderTree/PixelDumpSupport.cpp
+++ /dev/null
@@ -1,138 +0,0 @@
-/*
- * Copyright (C) 2009 Apple, Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PixelDumpSupport.h"
-
-#include "CyclicRedundancyCheck.h"
-#include "DumpRenderTree.h"
-#include "TestRunner.h"
-#include <cstdio>
-#include <wtf/Assertions.h>
-#include <wtf/RefPtr.h>
-#include <wtf/Vector.h>
-
-#if USE(CG)
-#include "PixelDumpSupportCG.h"
-#elif USE(CAIRO)
-#include "PixelDumpSupportCairo.h"
-#elif PLATFORM(BLACKBERRY)
-#include "PixelDumpSupportBlackBerry.h"
-#endif
-
-void dumpWebViewAsPixelsAndCompareWithExpected(const std::string& expectedHash)
-{
-    RefPtr<BitmapContext> context;
-#if PLATFORM(MAC)
-    if (gTestRunner->isPrinting())
-        context = createPagedBitmapContext();
-    else
-#endif
-        context = createBitmapContextFromWebView(gTestRunner->testOnscreen(), gTestRunner->testRepaint(), gTestRunner->testRepaintSweepHorizontally(), gTestRunner->dumpSelectionRect());
-    ASSERT(context);
-    
-    // Compute the hash of the bitmap context pixels
-    char actualHash[33];
-    computeMD5HashStringForBitmapContext(context.get(), actualHash);
-    printf("\nActualHash: %s\n", actualHash); // FIXME: No need for the leading newline.
-
-    // Check the computed hash against the expected one and dump image on mismatch
-    bool dumpImage = true;
-    if (expectedHash.length() > 0) {
-        ASSERT(expectedHash.length() == 32);
-
-        printf("\nExpectedHash: %s\n", expectedHash.c_str()); // FIXME: No need for the leading newline.
-        
-        if (expectedHash == actualHash) // FIXME: do case insensitive compare
-            dumpImage = false;
-    }
-
-    if (dumpImage)
-        dumpBitmap(context.get(), actualHash);
-}
-
-static void appendIntToVector(unsigned number, Vector<unsigned char>& vector)
-{
-    size_t offset = vector.size();
-    vector.grow(offset + 4);
-    vector[offset] = ((number >> 24) & 0xff);
-    vector[offset + 1] = ((number >> 16) & 0xff);
-    vector[offset + 2] = ((number >> 8) & 0xff);
-    vector[offset + 3] = (number & 0xff);
-}
-
-static void convertChecksumToPNGComment(const char* checksum, Vector<unsigned char>& bytesToAdd)
-{
-    // Chunks of PNG files are <length>, <type>, <data>, <crc>.
-    static const char textCommentPrefix[] = "\x00\x00\x00\x29tEXtchecksum\x00";
-    static const size_t prefixLength = sizeof(textCommentPrefix) - 1; // The -1 is for the null at the end of the char[].
-    static const size_t checksumLength = 32;
-
-    bytesToAdd.append(textCommentPrefix, prefixLength);
-    bytesToAdd.append(checksum, checksumLength);
-
-    Vector<unsigned char> dataToCrc;
-    dataToCrc.append(textCommentPrefix + 4, prefixLength - 4); // Don't include the chunk length in the crc.
-    dataToCrc.append(checksum, checksumLength);
-    unsigned crc32 = computeCrc(dataToCrc);
-
-    appendIntToVector(crc32, bytesToAdd);
-}
-
-static size_t offsetAfterIHDRChunk(const unsigned char* data, const size_t dataLength)
-{
-    const int pngHeaderLength = 8;
-    const int pngIHDRChunkLength = 25; // chunk length + "IHDR" + 13 bytes of data + checksum
-    return pngHeaderLength + pngIHDRChunkLength;
-}
-
-void printPNG(const unsigned char* data, const size_t dataLength, const char* checksum)
-{
-    Vector<unsigned char> bytesToAdd;
-    convertChecksumToPNGComment(checksum, bytesToAdd);
-
-    printf("Content-Type: %s\n", "image/png");
-    printf("Content-Length: %lu\n", static_cast<unsigned long>(dataLength + bytesToAdd.size()));
-
-    size_t insertOffset = offsetAfterIHDRChunk(data, dataLength);
-
-    fwrite(data, 1, insertOffset, stdout);
-    fwrite(bytesToAdd.data(), 1, bytesToAdd.size(), stdout);
-
-    const size_t bytesToWriteInOneChunk = 1 << 15;
-    data += insertOffset;
-    size_t dataRemainingToWrite = dataLength - insertOffset;
-    while (dataRemainingToWrite) {
-        size_t bytesToWriteInThisChunk = std::min(dataRemainingToWrite, bytesToWriteInOneChunk);
-        size_t bytesWritten = fwrite(data, 1, bytesToWriteInThisChunk, stdout);
-        if (bytesWritten != bytesToWriteInThisChunk)
-            break;
-        dataRemainingToWrite -= bytesWritten;
-        data += bytesWritten;
-    }
-}
diff --git a/Tools/DumpRenderTree/PixelDumpSupport.h b/Tools/DumpRenderTree/PixelDumpSupport.h
deleted file mode 100644
index 3bd8820..0000000
--- a/Tools/DumpRenderTree/PixelDumpSupport.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * Copyright (C) 2007 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef PixelDumpSupport_h
-#define PixelDumpSupport_h
-
-#include <string>
-
-#include <wtf/PassRefPtr.h>
-
-class BitmapContext;
-
-void computeMD5HashStringForBitmapContext(BitmapContext*, char hashString[33]);
-PassRefPtr<BitmapContext> createPagedBitmapContext();
-PassRefPtr<BitmapContext> createBitmapContextFromWebView(bool onscreen, bool incrementalRepaint, bool sweepHorizontally, bool drawSelectionRect);
-void dumpBitmap(BitmapContext*, const char* checksum);
-void dumpWebViewAsPixelsAndCompareWithExpected(const std::string& expectedHash);
-void printPNG(const unsigned char* data, const size_t dataLength, const char* checksum);
-
-#endif // PixelDumpSupport_h
diff --git a/Tools/DumpRenderTree/StorageTrackerDelegate.h b/Tools/DumpRenderTree/StorageTrackerDelegate.h
deleted file mode 100644
index 73032ef..0000000
--- a/Tools/DumpRenderTree/StorageTrackerDelegate.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-class TestRunner;
-
-@interface StorageTrackerDelegate : NSObject {
-    unsigned numberOfNotificationsToLog;
-    TestRunner* controllerToNotifyDone;
-}
-
-- (void)logNotifications:(unsigned)number controller:(TestRunner*)controller;
-- (void)originModified:(NSNotification *)notification;
-- (void)setControllerToNotifyDone:(TestRunner*)controller;
-
-@end
diff --git a/Tools/DumpRenderTree/StorageTrackerDelegate.mm b/Tools/DumpRenderTree/StorageTrackerDelegate.mm
deleted file mode 100644
index 121fa17..0000000
--- a/Tools/DumpRenderTree/StorageTrackerDelegate.mm
+++ /dev/null
@@ -1,82 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#import "config.h"
-#import "StorageTrackerDelegate.h"
-
-#import "TestRunner.h"
-#import <WebKit/WebSecurityOriginPrivate.h>
-#import <WebKit/WebStorageManagerPrivate.h>
-
-@implementation StorageTrackerDelegate
-
-- (id)init
-{
-    self = [super init];
-    if (!self)
-        return nil;
-
-    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(originModified:) name:WebStorageDidModifyOriginNotification object:nil];
-
-    return self;
-}
-
-- (void)logNotifications:(unsigned)number controller:(TestRunner*)controller
-{
-    controllerToNotifyDone = controller;
-
-    numberOfNotificationsToLog = number;
-}
-
-- (void)originModified:(NSNotification *)notification
-{
-    if (!numberOfNotificationsToLog)
-        return;
-
-    numberOfNotificationsToLog--;
-    
-    if (numberOfNotificationsToLog == 0 && controllerToNotifyDone) {
-        NSArray *origins = [[WebStorageManager sharedWebStorageManager] origins];
-        for (WebSecurityOrigin *origin in origins)
-            printf("Origin identifier: '%s'\n", [[origin databaseIdentifier] UTF8String]);
-        
-        controllerToNotifyDone->notifyDone();
-    }
-}
-
-- (void)dealloc
-{
-    [[NSNotificationCenter defaultCenter] removeObserver:self name:WebStorageDidModifyOriginNotification object:nil];
-    
-    [super dealloc];
-}
-
-- (void)setControllerToNotifyDone:(TestRunner*)controller
-{
-    controllerToNotifyDone = controller;
-}
-
-
-@end
diff --git a/Tools/DumpRenderTree/TestNetscapePlugIn/CMakeLists.txt b/Tools/DumpRenderTree/TestNetscapePlugIn/CMakeLists.txt
deleted file mode 100644
index c180e09..0000000
--- a/Tools/DumpRenderTree/TestNetscapePlugIn/CMakeLists.txt
+++ /dev/null
@@ -1,39 +0,0 @@
-set(WEBKIT_TESTNETSCAPEPLUGIN_DIR "${TOOLS_DIR}/DumpRenderTree/TestNetscapePlugIn")
-
-set(WebKitTestNetscapePlugin_SOURCES
-    ${WEBKIT_TESTNETSCAPEPLUGIN_DIR}/PluginObject.cpp
-    ${WEBKIT_TESTNETSCAPEPLUGIN_DIR}/PluginTest.cpp
-    ${WEBKIT_TESTNETSCAPEPLUGIN_DIR}/TestObject.cpp
-    ${WEBKIT_TESTNETSCAPEPLUGIN_DIR}/main.cpp
-
-    ${WEBKIT_TESTNETSCAPEPLUGIN_DIR}/Tests/DocumentOpenInDestroyStream.cpp
-    ${WEBKIT_TESTNETSCAPEPLUGIN_DIR}/Tests/EvaluateJSAfterRemovingPluginElement.cpp
-    ${WEBKIT_TESTNETSCAPEPLUGIN_DIR}/Tests/FormValue.cpp
-    ${WEBKIT_TESTNETSCAPEPLUGIN_DIR}/Tests/GetURLNotifyWithURLThatFailsToLoad.cpp
-    ${WEBKIT_TESTNETSCAPEPLUGIN_DIR}/Tests/GetURLWithJavaScriptURL.cpp
-    ${WEBKIT_TESTNETSCAPEPLUGIN_DIR}/Tests/GetURLWithJavaScriptURLDestroyingPlugin.cpp
-    ${WEBKIT_TESTNETSCAPEPLUGIN_DIR}/Tests/GetUserAgentWithNullNPPFromNPPNew.cpp
-    ${WEBKIT_TESTNETSCAPEPLUGIN_DIR}/Tests/LogNPPSetWindow.cpp
-    ${WEBKIT_TESTNETSCAPEPLUGIN_DIR}/Tests/NPDeallocateCalledBeforeNPShutdown.cpp
-    ${WEBKIT_TESTNETSCAPEPLUGIN_DIR}/Tests/NPPNewFails.cpp
-    ${WEBKIT_TESTNETSCAPEPLUGIN_DIR}/Tests/NPPSetWindowCalledDuringDestruction.cpp
-    ${WEBKIT_TESTNETSCAPEPLUGIN_DIR}/Tests/NPRuntimeCallsWithNullNPP.cpp
-    ${WEBKIT_TESTNETSCAPEPLUGIN_DIR}/Tests/NPRuntimeObjectFromDestroyedPlugin.cpp
-    ${WEBKIT_TESTNETSCAPEPLUGIN_DIR}/Tests/NPRuntimeRemoveProperty.cpp
-    ${WEBKIT_TESTNETSCAPEPLUGIN_DIR}/Tests/NullNPPGetValuePointer.cpp
-    ${WEBKIT_TESTNETSCAPEPLUGIN_DIR}/Tests/PassDifferentNPPStruct.cpp
-    ${WEBKIT_TESTNETSCAPEPLUGIN_DIR}/Tests/PluginScriptableNPObjectInvokeDefault.cpp
-    ${WEBKIT_TESTNETSCAPEPLUGIN_DIR}/Tests/PluginScriptableObjectOverridesAllProperties.cpp
-    ${WEBKIT_TESTNETSCAPEPLUGIN_DIR}/Tests/PrivateBrowsing.cpp
-    ${WEBKIT_TESTNETSCAPEPLUGIN_DIR}/Tests/x11/CallInvalidateRectWithNullNPPArgument.cpp
-)
-
-set(WebKitTestNetscapePlugin_INCLUDE_DIRECTORIES
-    ${WEBKIT_TESTNETSCAPEPLUGIN_DIR}
-    ${WEBKIT_TESTNETSCAPEPLUGIN_DIR}/unix/ForwardingHeaders
-    ${WEBCORE_DIR}
-)
-
-include_directories(${WebKitTestNetscapePlugin_INCLUDE_DIRECTORIES})
-
-add_library(TestNetscapePlugin SHARED ${WebKitTestNetscapePlugin_SOURCES})
diff --git a/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/LogNPPSetWindow.cpp b/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/LogNPPSetWindow.cpp
index 4b19437..d282fc0 100644
--- a/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/LogNPPSetWindow.cpp
+++ b/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/LogNPPSetWindow.cpp
@@ -25,6 +25,8 @@
 
 #include "PluginTest.h"
 
+#include <stdio.h>
+
 using namespace std;
 
 class LogNPPSetWindow : public PluginTest {
diff --git a/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/PluginScriptableObjectOverridesAllProperties.cpp b/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/PluginScriptableObjectOverridesAllProperties.cpp
index ca399a8..ddeb8e9 100644
--- a/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/PluginScriptableObjectOverridesAllProperties.cpp
+++ b/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/PluginScriptableObjectOverridesAllProperties.cpp
@@ -25,6 +25,7 @@
 
 #include "PluginTest.h"
 
+#include <stdio.h>
 #include <string.h>
 
 using namespace std;
diff --git a/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/PrivateBrowsing.cpp b/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/PrivateBrowsing.cpp
deleted file mode 100644
index ea5ac1c..0000000
--- a/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/PrivateBrowsing.cpp
+++ /dev/null
@@ -1,106 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "PluginTest.h"
-
-using namespace std;
-
-class PrivateBrowsing : public PluginTest {
-public:
-    PrivateBrowsing(NPP npp, const string& identifier)
-        : PluginTest(npp, identifier)
-        , m_cachedPrivateBrowsingEnabled(false)
-    {
-    }
-
-private:
-    bool privateBrowsingEnabled()
-    {
-        NPBool privateBrowsingEnabled = FALSE;
-        NPN_GetValue(NPNVprivateModeBool, &privateBrowsingEnabled);
-        return privateBrowsingEnabled;
-    }
-
-    bool cachedPrivateBrowsingEnabled()
-    {
-        return m_cachedPrivateBrowsingEnabled;
-    }
-
-    class ScriptableObject : public Object<ScriptableObject> { 
-    public:
-        bool hasProperty(NPIdentifier propertyName)
-        {
-            return identifierIs(propertyName, "privateBrowsingEnabled")
-                || identifierIs(propertyName, "cachedPrivateBrowsingEnabled");
-        }
-        
-        bool getProperty(NPIdentifier propertyName, NPVariant* result)
-        {
-            if (identifierIs(propertyName, "privateBrowsingEnabled")) {
-                BOOLEAN_TO_NPVARIANT(pluginTest()->privateBrowsingEnabled(), *result);
-                return true;
-            }
-            if (identifierIs(propertyName, "cachedPrivateBrowsingEnabled")) {
-                BOOLEAN_TO_NPVARIANT(pluginTest()->cachedPrivateBrowsingEnabled(), *result);
-                return true;
-            }
-            return false;
-        }
-
-    private:
-        PrivateBrowsing* pluginTest() const { return static_cast<PrivateBrowsing*>(Object<ScriptableObject>::pluginTest()); }
-    };
-
-    virtual NPError NPP_New(NPMIMEType pluginType, uint16_t mode, int16_t argc, char* argn[], char* argv[], NPSavedData *saved)
-    {
-        m_cachedPrivateBrowsingEnabled = privateBrowsingEnabled();
-        return NPERR_NO_ERROR;
-    }
-
-    virtual NPError NPP_GetValue(NPPVariable variable, void* value)
-    {
-        if (variable != NPPVpluginScriptableNPObject)
-            return NPERR_GENERIC_ERROR;
-        
-        *(NPObject**)value = ScriptableObject::create(this);
-        
-        return NPERR_NO_ERROR;
-    }
-
-    virtual NPError NPP_SetValue(NPNVariable variable, void* value)
-    {
-        switch (variable) {
-        case NPNVprivateModeBool:
-            m_cachedPrivateBrowsingEnabled = *(NPBool*)value;
-            return NPERR_NO_ERROR;
-        default:
-            return NPERR_GENERIC_ERROR;
-        }
-
-    }
-    bool m_cachedPrivateBrowsingEnabled;
-};
-
-static PluginTest::Register<PrivateBrowsing> privateBrowsing("private-browsing");
diff --git a/Tools/DumpRenderTree/TestNetscapePlugIn/unix/ForwardingHeaders/WebKit/npapi.h b/Tools/DumpRenderTree/TestNetscapePlugIn/unix/ForwardingHeaders/WebKit/npapi.h
deleted file mode 100644
index 627bc97..0000000
--- a/Tools/DumpRenderTree/TestNetscapePlugIn/unix/ForwardingHeaders/WebKit/npapi.h
+++ /dev/null
@@ -1 +0,0 @@
-#include <plugins/npapi.h>
diff --git a/Tools/DumpRenderTree/TestNetscapePlugIn/unix/ForwardingHeaders/WebKit/npfunctions.h b/Tools/DumpRenderTree/TestNetscapePlugIn/unix/ForwardingHeaders/WebKit/npfunctions.h
deleted file mode 100644
index 54a603d..0000000
--- a/Tools/DumpRenderTree/TestNetscapePlugIn/unix/ForwardingHeaders/WebKit/npfunctions.h
+++ /dev/null
@@ -1 +0,0 @@
-#include <plugins/npfunctions.h>
diff --git a/Tools/DumpRenderTree/TestNetscapePlugIn/unix/ForwardingHeaders/WebKit/npruntime.h b/Tools/DumpRenderTree/TestNetscapePlugIn/unix/ForwardingHeaders/WebKit/npruntime.h
deleted file mode 100644
index e435ae2..0000000
--- a/Tools/DumpRenderTree/TestNetscapePlugIn/unix/ForwardingHeaders/WebKit/npruntime.h
+++ /dev/null
@@ -1 +0,0 @@
-#include <plugins/npruntime.h>
diff --git a/Tools/DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj b/Tools/DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj
deleted file mode 100644
index 7908dee..0000000
--- a/Tools/DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj
+++ /dev/null
@@ -1,568 +0,0 @@
-<?xml version="1.0" encoding="windows-1251"?>
-<VisualStudioProject
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="TestNetscapePlugin"
-	ProjectGUID="{C0737398-3565-439E-A2B8-AB2BE4D5430C}"
-	RootNamespace="TestNetscapePlugin"
-	Keyword="Win32Proj"
-	>
-	<Platforms>
-		<Platform
-			Name="Win32"
-		/>
-	</Platforms>
-	<ToolFiles>
-	</ToolFiles>
-	<Configurations>
-		<Configuration
-			Name="Debug|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\TestNetscapePluginDebug.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\TestNetscapePluginRelease.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_Cairo_CFLite|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\TestNetscapePluginDebugCairoCFLite.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_All|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\TestNetscapePluginDebugAll.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Production|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\TestNetscapePluginProduction.vsprops"
-			CharacterSet="1"
-			WholeProgramOptimization="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release_Cairo_CFLite|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\TestNetscapePluginReleaseCairoCFLite.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-	</Configurations>
-	<References>
-	</References>
-	<Files>
-		<Filter
-			Name="Tests"
-			>
-			<File
-				RelativePath="..\Tests\DocumentOpenInDestroyStream.cpp"
-				>
-			</File>
-			<File
-				RelativePath="..\Tests\EvaluateJSAfterRemovingPluginElement.cpp"
-				>
-			</File>
-			<File
-				RelativePath="..\Tests\FormValue.cpp"
-				>
-			</File>
-			<File
-				RelativePath="..\Tests\GetURLNotifyWithURLThatFailsToLoad.cpp"
-				>
-			</File>
-			<File
-				RelativePath="..\Tests\GetURLWithJavaScriptURL.cpp"
-				>
-			</File>
-			<File
-				RelativePath="..\Tests\GetURLWithJavaScriptURLDestroyingPlugin.cpp"
-				>
-			</File>
-			<File
-				RelativePath="..\Tests\GetUserAgentWithNullNPPFromNPPNew.cpp"
-				>
-			</File>
-			<File
-				RelativePath="..\Tests\NPDeallocateCalledBeforeNPShutdown.cpp"
-				>
-			</File>
-			<File
-				RelativePath="..\Tests\NPPNewFails.cpp"
-				>
-			</File>
-			<File
-				RelativePath="..\Tests\NPPSetWindowCalledDuringDestruction.cpp"
-				>
-			</File>
-			<File
-				RelativePath="..\Tests\NPRuntimeCallsWithNullNPP.cpp"
-				>
-			</File>
-			<File
-				RelativePath="..\Tests\NPRuntimeObjectFromDestroyedPlugin.cpp"
-				>
-			</File>
-			<File
-				RelativePath="..\Tests\NPRuntimeRemoveProperty.cpp"
-				>
-			</File>
-			<File
-				RelativePath="..\Tests\NullNPPGetValuePointer.cpp"
-				>
-			</File>
-			<File
-				RelativePath="..\Tests\PassDifferentNPPStruct.cpp"
-				>
-			</File>
-			<File
-				RelativePath="..\Tests\PluginScriptableNPObjectInvokeDefault.cpp"
-				>
-			</File>
-			<File
-				RelativePath="..\Tests\PluginScriptableObjectOverridesAllProperties.cpp"
-				>
-			</File>
-			<File
-				RelativePath="..\Tests\PrivateBrowsing.cpp"
-				>
-			</File>
-			<Filter
-				Name="win"
-				>
-				<File
-					RelativePath="..\Tests\win\CallJSThatDestroysPlugin.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\Tests\win\DrawsGradient.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\Tests\win\DumpWindowRect.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\Tests\win\GetValueNetscapeWindow.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\Tests\win\NPNInvalidateRectInvalidatesWindow.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\Tests\win\WindowGeometryInitializedBeforeSetWindow.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\Tests\win\WindowlessPaintRectCoordinates.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\Tests\win\WindowRegionIsSetToClipRect.cpp"
-					>
-				</File>
-			</Filter>
-		</Filter>
-		<Filter
-			Name="win"
-			>
-			<File
-				RelativePath=".\WindowedPluginTest.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\WindowedPluginTest.h"
-				>
-			</File>
-			<File
-				RelativePath=".\WindowGeometryTest.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\WindowGeometryTest.h"
-				>
-			</File>
-		</Filter>
-		<File
-			RelativePath="..\main.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\PluginObject.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\PluginObject.h"
-			>
-		</File>
-		<File
-			RelativePath="..\PluginTest.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\PluginTest.h"
-			>
-		</File>
-		<File
-			RelativePath=".\resource.h"
-			>
-		</File>
-		<File
-			RelativePath=".\TestNetscapePlugin.def"
-			>
-		</File>
-		<File
-			RelativePath=".\TestNetscapePlugin.rc"
-			>
-		</File>
-		<File
-			RelativePath=".\TestNetscapePlugin_debug.def"
-			>
-		</File>
-		<File
-			RelativePath="..\TestObject.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\TestObject.h"
-			>
-		</File>
-	</Files>
-	<Globals>
-	</Globals>
-</VisualStudioProject>
diff --git a/Tools/DumpRenderTree/TestRunner.cpp b/Tools/DumpRenderTree/TestRunner.cpp
deleted file mode 100644
index d600452..0000000
--- a/Tools/DumpRenderTree/TestRunner.cpp
+++ /dev/null
@@ -1,2241 +0,0 @@
-/*
- * Copyright (C) 2007, 2008, 2009, 2011, 2012 Apple Inc. All rights reserved.
- * Copyright (C) 2010 Joone Hur <joone@kldp.org>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "TestRunner.h"
-
-#include "WorkQueue.h"
-#include "WorkQueueItem.h"
-#include <cstring>
-#include <JavaScriptCore/JSContextRef.h>
-#include <JavaScriptCore/JSObjectRef.h>
-#include <JavaScriptCore/JSRetainPtr.h>
-#include <locale.h>
-#include <stdio.h>
-#include <wtf/Assertions.h>
-#include <wtf/CurrentTime.h>
-#include <wtf/MathExtras.h>
-#include <wtf/OwnArrayPtr.h>
-#include <wtf/RefPtr.h>
-
-TestRunner::TestRunner(const std::string& testPathOrURL, const std::string& expectedPixelHash)
-    : m_disallowIncreaseForApplicationCacheQuota(false)
-    , m_dumpApplicationCacheDelegateCallbacks(false)
-    , m_dumpAsAudio(false)
-    , m_dumpAsPDF(false)
-    , m_dumpAsText(false)
-    , m_dumpBackForwardList(false)
-    , m_dumpChildFrameScrollPositions(false)
-    , m_dumpChildFramesAsText(false)
-    , m_dumpDOMAsWebArchive(false)
-    , m_dumpDatabaseCallbacks(false)
-    , m_dumpEditingCallbacks(false)
-    , m_dumpFrameLoadCallbacks(false)
-    , m_dumpProgressFinishedCallback(false)
-    , m_dumpUserGestureInFrameLoadCallbacks(false)
-    , m_dumpHistoryDelegateCallbacks(false)
-    , m_dumpResourceLoadCallbacks(false)
-    , m_dumpResourceResponseMIMETypes(false)
-    , m_dumpSelectionRect(false)
-    , m_dumpSourceAsWebArchive(false)
-    , m_dumpStatusCallbacks(false)
-    , m_dumpTitleChanges(false)
-    , m_dumpIconChanges(false)
-    , m_dumpVisitedLinksCallback(false)
-    , m_dumpWillCacheResponse(false)
-    , m_generatePixelResults(true)
-    , m_callCloseOnWebViews(true)
-    , m_canOpenWindows(false)
-    , m_closeRemainingWindowsWhenComplete(true)
-    , m_newWindowsCopyBackForwardList(false)
-    , m_stopProvisionalFrameLoads(false)
-    , m_testOnscreen(false)
-    , m_testRepaint(false)
-    , m_testRepaintSweepHorizontally(false)
-    , m_waitToDump(false)
-    , m_willSendRequestReturnsNull(false)
-    , m_willSendRequestReturnsNullOnRedirect(false)
-    , m_windowIsKey(true)
-    , m_alwaysAcceptCookies(false)
-    , m_globalFlag(false)
-    , m_isGeolocationPermissionSet(false)
-    , m_geolocationPermission(false)
-    , m_handlesAuthenticationChallenges(false)
-    , m_isPrinting(false)
-    , m_deferMainResourceDataLoad(true)
-    , m_useDeferredFrameLoading(false)
-    , m_shouldPaintBrokenImage(true)
-    , m_shouldStayOnPageAfterHandlingBeforeUnload(false)
-    , m_areLegacyWebNotificationPermissionRequestsIgnored(false)
-    , m_customFullScreenBehavior(false) 
-    , m_hasPendingWebNotificationClick(false)
-    , m_testPathOrURL(testPathOrURL)
-    , m_expectedPixelHash(expectedPixelHash)
-    , m_titleTextDirection("ltr")
-{
-}
-
-PassRefPtr<TestRunner> TestRunner::create(const std::string& testPathOrURL, const std::string& expectedPixelHash)
-{
-    return adoptRef(new TestRunner(testPathOrURL, expectedPixelHash));
-}
-
-// Static Functions
-
-static JSValueRef disallowIncreaseForApplicationCacheQuotaCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setDisallowIncreaseForApplicationCacheQuota(true);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef dumpApplicationCacheDelegateCallbacksCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setDumpApplicationCacheDelegateCallbacks(true);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef dumpAsPDFCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setDumpAsPDF(true);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef dumpAsTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setDumpAsText(true);
-
-    // Optional paramater, describing whether it's allowed to dump pixel results in dumpAsText mode.
-    controller->setGeneratePixelResults(argumentCount > 0 ? JSValueToBoolean(context, arguments[0]) : false);
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef dumpBackForwardListCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setDumpBackForwardList(true);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef dumpChildFramesAsTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setDumpChildFramesAsText(true);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef dumpChildFrameScrollPositionsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setDumpChildFrameScrollPositions(true);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef dumpDatabaseCallbacksCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setDumpDatabaseCallbacks(true);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef dumpDOMAsWebArchiveCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setDumpDOMAsWebArchive(true);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef dumpEditingCallbacksCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setDumpEditingCallbacks(true);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef dumpFrameLoadCallbacksCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setDumpFrameLoadCallbacks(true);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef dumpProgressFinishedCallbackCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setDumpProgressFinishedCallback(true);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef dumpUserGestureInFrameLoadCallbacksCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setDumpUserGestureInFrameLoadCallbacks(true);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef dumpResourceLoadCallbacksCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setDumpResourceLoadCallbacks(true);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef dumpResourceResponseMIMETypesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setDumpResourceResponseMIMETypes(true);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef dumpSelectionRectCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setDumpSelectionRect(true);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef dumpSourceAsWebArchiveCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setDumpSourceAsWebArchive(true);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef dumpStatusCallbacksCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setDumpStatusCallbacks(true);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef dumpTitleChangesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setDumpTitleChanges(true);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef dumpIconChangesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setDumpIconChanges(true);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef dumpWillCacheResponseCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setDumpWillCacheResponse(true);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef pathToLocalResourceCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    JSRetainPtr<JSStringRef> localPath(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-
-    JSRetainPtr<JSStringRef> convertedPath(Adopt, controller->pathToLocalResource(context, localPath.get()));
-    if (!convertedPath)
-        return JSValueMakeUndefined(context);
-
-    return JSValueMakeString(context, convertedPath.get());
-}
-
-static JSValueRef removeAllVisitedLinksCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setDumpVisitedLinksCallback(true);
-    controller->removeAllVisitedLinks();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef repaintSweepHorizontallyCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setTestRepaintSweepHorizontally(true);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setCallCloseOnWebViewsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setCallCloseOnWebViews(JSValueToBoolean(context, arguments[0]));
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setCanOpenWindowsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setCanOpenWindows(true);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setCloseRemainingWindowsWhenCompleteCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setCloseRemainingWindowsWhenComplete(JSValueToBoolean(context, arguments[0]));
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setEncodedAudioDataCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> encodedAudioData(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-    
-    size_t maxLength = JSStringGetMaximumUTF8CStringSize(encodedAudioData.get());
-    OwnArrayPtr<char> encodedAudioDataBuffer = adoptArrayPtr(new char[maxLength + 1]);
-    JSStringGetUTF8CString(encodedAudioData.get(), encodedAudioDataBuffer.get(), maxLength + 1);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setEncodedAudioData(encodedAudioDataBuffer.get());
-    controller->setDumpAsAudio(true);
-    
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef testOnscreenCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setTestOnscreen(true);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef testRepaintCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setTestRepaint(true);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef addDisallowedURLCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> url(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->addDisallowedURL(url.get());
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef addURLToRedirectCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 2)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> origin(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-
-    JSRetainPtr<JSStringRef> destination(Adopt, JSValueToStringCopy(context, arguments[1], exception));
-    ASSERT(!*exception);
-
-    size_t maxLength = JSStringGetMaximumUTF8CStringSize(origin.get());
-    OwnArrayPtr<char> originBuffer = adoptArrayPtr(new char[maxLength + 1]);
-    JSStringGetUTF8CString(origin.get(), originBuffer.get(), maxLength + 1);
-
-    maxLength = JSStringGetMaximumUTF8CStringSize(destination.get());
-    OwnArrayPtr<char> destinationBuffer = adoptArrayPtr(new char[maxLength + 1]);
-    JSStringGetUTF8CString(destination.get(), destinationBuffer.get(), maxLength + 1);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->addURLToRedirect(originBuffer.get(), destinationBuffer.get());
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef callShouldCloseOnWebViewCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-
-    return JSValueMakeBoolean(context, controller->callShouldCloseOnWebView());
-}
-
-static JSValueRef clearAllApplicationCachesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac implementation
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->clearAllApplicationCaches();
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef clearApplicationCacheForOriginCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> originURL(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->clearApplicationCacheForOrigin(originURL.get());
-    
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef applicationCacheDiskUsageForOriginCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> originURL(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-    
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-
-    return JSValueMakeNumber(context, controller->applicationCacheDiskUsageForOrigin(originURL.get()));
-}
-
-static JSValueRef originsWithApplicationCacheCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    return controller->originsWithApplicationCache(context);
-}
-
-static JSValueRef clearAllDatabasesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->clearAllDatabases();
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef syncLocalStorageCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-
-    controller->syncLocalStorage();
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef observeStorageTrackerNotificationsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    unsigned numNotifications = JSValueToNumber(context, arguments[0], exception);
-
-    ASSERT(!*exception);
-
-    controller->observeStorageTrackerNotifications(numNotifications);
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef deleteAllLocalStorageCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->deleteAllLocalStorage();
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef deleteLocalStorageForOriginCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> url(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-
-    controller->deleteLocalStorageForOrigin(url.get());
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef localStorageDiskUsageForOriginCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> originURL(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-
-    return JSValueMakeNumber(context, controller->localStorageDiskUsageForOrigin(originURL.get()));
-}
-
-static JSValueRef originsWithLocalStorageCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    return controller->originsWithLocalStorage(context);
-}
-
-static JSValueRef clearBackForwardListCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->clearBackForwardList();
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef clearPersistentUserStyleSheetCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->clearPersistentUserStyleSheet();
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef decodeHostNameCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> name(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    JSRetainPtr<JSStringRef> decodedHostName(Adopt, controller->copyDecodedHostName(name.get()));
-    return JSValueMakeString(context, decodedHostName.get());
-}
-
-static JSValueRef dispatchPendingLoadRequestsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac implementation, needs windows implementation
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->dispatchPendingLoadRequests();
-    
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef displayCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->display();
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef displayInvalidatedRegionCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    // TestRunner::display() only renders the invalidated region so
-    // we can just use that.
-    controller->display();
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef encodeHostNameCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> name(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    JSRetainPtr<JSStringRef> encodedHostName(Adopt, controller->copyEncodedHostName(name.get()));
-    return JSValueMakeString(context, encodedHostName.get());
-}
-
-static JSValueRef execCommandCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has Mac & Windows implementations.
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> name(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-
-    // Ignoring the second parameter (userInterface), as this command emulates a manual action.
-
-    JSRetainPtr<JSStringRef> value;
-    if (argumentCount >= 3) {
-        value.adopt(JSValueToStringCopy(context, arguments[2], exception));
-        ASSERT(!*exception);
-    } else
-        value.adopt(JSStringCreateWithUTF8CString(""));
-
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->execCommand(name.get(), value.get());
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef findStringCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has Mac implementation.
-    if (argumentCount < 2)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> target(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-
-    JSObjectRef options = JSValueToObject(context, arguments[1], exception);
-    ASSERT(!*exception);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    return JSValueMakeBoolean(context, controller->findString(context, target.get(), options));
-}
-
-static JSValueRef goBackCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->goBack();
-    
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef isCommandEnabledCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has Mac implementation.
-
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> name(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-
-    return JSValueMakeBoolean(context, controller->isCommandEnabled(name.get()));
-}
-
-static JSValueRef overridePreferenceCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 2)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> key(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-    JSRetainPtr<JSStringRef> value(Adopt, JSValueToStringCopy(context, arguments[1], exception));
-    ASSERT(!*exception);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->overridePreference(key.get(), value.get());
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef keepWebHistoryCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac implementation
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->keepWebHistory();
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef notifyDoneCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    // May be able to be made platform independant by using shared WorkQueue
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->notifyDone();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef numberOfPendingGeolocationPermissionRequestsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    return JSValueMakeNumber(context, controller->numberOfPendingGeolocationPermissionRequests());
-}
-
-static JSValueRef queueBackNavigationCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    // May be able to be made platform independant by using shared WorkQueue
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    double howFarBackDouble = JSValueToNumber(context, arguments[0], exception);
-    ASSERT(!*exception);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->queueBackNavigation(static_cast<int>(howFarBackDouble));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef queueForwardNavigationCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    // May be able to be made platform independant by using shared WorkQueue
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    double howFarForwardDouble = JSValueToNumber(context, arguments[0], exception);
-    ASSERT(!*exception);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->queueForwardNavigation(static_cast<int>(howFarForwardDouble));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef queueLoadCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    // May be able to be made platform independant by using shared WorkQueue
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> url(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-
-    JSRetainPtr<JSStringRef> target;
-    if (argumentCount >= 2) {
-        target.adopt(JSValueToStringCopy(context, arguments[1], exception));
-        ASSERT(!*exception);
-    } else
-        target.adopt(JSStringCreateWithUTF8CString(""));
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->queueLoad(url.get(), target.get());
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef queueLoadHTMLStringCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has Mac & Windows implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> content(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-
-    JSRetainPtr<JSStringRef> baseURL;
-    if (argumentCount >= 2) {
-        baseURL.adopt(JSValueToStringCopy(context, arguments[1], exception));
-        ASSERT(!*exception);
-    } else
-        baseURL.adopt(JSStringCreateWithUTF8CString(""));
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-
-    if (argumentCount >= 3) {
-        JSRetainPtr<JSStringRef> unreachableURL;
-        unreachableURL.adopt(JSValueToStringCopy(context, arguments[2], exception));
-        ASSERT(!*exception);
-        controller->queueLoadAlternateHTMLString(content.get(), baseURL.get(), unreachableURL.get());
-        return JSValueMakeUndefined(context);
-    }
-
-    controller->queueLoadHTMLString(content.get(), baseURL.get());
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef queueReloadCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    // May be able to be made platform independant by using shared WorkQueue
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->queueReload();
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef queueLoadingScriptCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    // May be able to be made platform independant by using shared WorkQueue
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> script(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->queueLoadingScript(script.get());
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef queueNonLoadingScriptCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    // May be able to be made platform independant by using shared WorkQueue
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> script(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->queueNonLoadingScript(script.get());
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setAcceptsEditingCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setAcceptsEditing(JSValueToBoolean(context, arguments[0]));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setAlwaysAcceptCookiesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setAlwaysAcceptCookies(JSValueToBoolean(context, arguments[0]));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setAppCacheMaximumSizeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-
-    double size = JSValueToNumber(context, arguments[0], NULL);
-    if (!std::isnan(size))
-        controller->setAppCacheMaximumSize(static_cast<unsigned long long>(size));
-        
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setApplicationCacheOriginQuotaCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-
-    double size = JSValueToNumber(context, arguments[0], NULL);
-    if (!std::isnan(size))
-        controller->setApplicationCacheOriginQuota(static_cast<unsigned long long>(size));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setAuthenticationPasswordCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> password(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-
-    size_t maxLength = JSStringGetMaximumUTF8CStringSize(password.get());
-    char* passwordBuffer = new char[maxLength + 1];
-    JSStringGetUTF8CString(password.get(), passwordBuffer, maxLength + 1);
-    
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setAuthenticationPassword(passwordBuffer);
-    delete[] passwordBuffer;
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setAuthenticationUsernameCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> username(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-
-    size_t maxLength = JSStringGetMaximumUTF8CStringSize(username.get());
-    char* usernameBuffer = new char[maxLength + 1];
-    JSStringGetUTF8CString(username.get(), usernameBuffer, maxLength + 1);
-    
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setAuthenticationUsername(usernameBuffer);
-    delete[] usernameBuffer;
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setAuthorAndUserStylesEnabledCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setAuthorAndUserStylesEnabled(JSValueToBoolean(context, arguments[0]));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setCacheModelCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has Mac implementation.
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    int cacheModel = JSValueToNumber(context, arguments[0], exception);
-    ASSERT(!*exception);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setCacheModel(cacheModel);
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setCustomPolicyDelegateCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-    
-    bool permissive = false;
-    if (argumentCount >= 2)
-        permissive = JSValueToBoolean(context, arguments[1]);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setCustomPolicyDelegate(JSValueToBoolean(context, arguments[0]), permissive);
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setDatabaseQuotaCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-
-    double quota = JSValueToNumber(context, arguments[0], NULL);
-    if (!std::isnan(quota))
-        controller->setDatabaseQuota(static_cast<unsigned long long>(quota));
-        
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setDeferMainResourceDataLoadCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has Mac and Windows implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setDeferMainResourceDataLoad(JSValueToBoolean(context, arguments[0]));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setDefersLoadingCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setDefersLoading(JSValueToBoolean(context, arguments[0]));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setUseDeferredFrameLoadingCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setUseDeferredFrameLoading(JSValueToBoolean(context, arguments[0]));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setDomainRelaxationForbiddenForURLSchemeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has Mac and Windows implementation
-    if (argumentCount < 2)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-
-    bool forbidden = JSValueToBoolean(context, arguments[0]);
-    JSRetainPtr<JSStringRef> scheme(Adopt, JSValueToStringCopy(context, arguments[1], 0));
-    controller->setDomainRelaxationForbiddenForURLScheme(forbidden, scheme.get());
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setMockDeviceOrientationCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 6)
-        return JSValueMakeUndefined(context);
-
-    bool canProvideAlpha = JSValueToBoolean(context, arguments[0]);
-    double alpha = JSValueToNumber(context, arguments[1], exception);
-    ASSERT(!*exception);
-    bool canProvideBeta = JSValueToBoolean(context, arguments[2]);
-    double beta = JSValueToNumber(context, arguments[3], exception);
-    ASSERT(!*exception);
-    bool canProvideGamma = JSValueToBoolean(context, arguments[4]);
-    double gamma = JSValueToNumber(context, arguments[5], exception);
-    ASSERT(!*exception);
-
-    TestRunner* controller = reinterpret_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setMockDeviceOrientation(canProvideAlpha, alpha, canProvideBeta, beta, canProvideGamma, gamma);
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setMockGeolocationPositionCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 3)
-        return JSValueMakeUndefined(context);
-
-    double latitude = JSValueToNumber(context, arguments[0], 0);
-    double longitude = JSValueToNumber(context, arguments[1], 0);
-    double accuracy = JSValueToNumber(context, arguments[2], 0);
-
-    bool canProvideAltitude = false;
-    double altitude = 0.;
-    if (argumentCount > 3 && !JSValueIsUndefined(context, arguments[3])) {
-        canProvideAltitude = true;
-        altitude = JSValueToNumber(context, arguments[3], 0);
-    }
-
-    bool canProvideAltitudeAccuracy = false;
-    double altitudeAccuracy = 0.;
-    if (argumentCount > 4 && !JSValueIsUndefined(context, arguments[4])) {
-        canProvideAltitudeAccuracy = true;
-        altitudeAccuracy = JSValueToNumber(context, arguments[4], 0);
-    }
-
-    bool canProvideHeading = false;
-    double heading = 0.;
-    if (argumentCount > 5 && !JSValueIsUndefined(context, arguments[5])) {
-        canProvideHeading = true;
-        heading = JSValueToNumber(context, arguments[5], 0);
-    }
-
-    bool canProvideSpeed = false;
-    double speed = 0.;
-    if (argumentCount > 6 && !JSValueIsUndefined(context, arguments[6])) {
-        canProvideSpeed = true;
-        speed = JSValueToNumber(context, arguments[6], 0);
-    }
-
-    TestRunner* controller = reinterpret_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setMockGeolocationPosition(latitude, longitude, accuracy, canProvideAltitude, altitude, canProvideAltitudeAccuracy, altitudeAccuracy, canProvideHeading, heading, canProvideSpeed, speed);
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setMockGeolocationPositionUnavailableErrorCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount != 1)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> message(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-
-    TestRunner* controller = reinterpret_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setMockGeolocationPositionUnavailableError(message.get());
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef addMockSpeechInputResultCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 3)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> result(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-
-    double confidence = JSValueToNumber(context, arguments[1], exception);
-
-    JSRetainPtr<JSStringRef> language(Adopt, JSValueToStringCopy(context, arguments[2], exception));
-    ASSERT(!*exception);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->addMockSpeechInputResult(result.get(), confidence, language.get());
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setMockSpeechInputDumpRectCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    bool dumpRect = JSValueToBoolean(context, arguments[0]);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setMockSpeechInputDumpRect(dumpRect);
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setNewWindowsCopyBackForwardListCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-    
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setNewWindowsCopyBackForwardList(JSValueToBoolean(context, arguments[0]));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setGeolocationPermissionCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setGeolocationPermission(JSValueToBoolean(context, arguments[0]));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setHandlesAuthenticationChallengesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setHandlesAuthenticationChallenges(JSValueToBoolean(context, arguments[0]));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setPOSIXLocaleCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    JSRetainPtr<JSStringRef> locale(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-    controller->setPOSIXLocale(locale.get());
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setIconDatabaseEnabledCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setIconDatabaseEnabled(JSValueToBoolean(context, arguments[0]));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setMainFrameIsFirstResponderCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setMainFrameIsFirstResponder(JSValueToBoolean(context, arguments[0]));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setPersistentUserStyleSheetLocationCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> path(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setPersistentUserStyleSheetLocation(path.get());
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setPrivateBrowsingEnabledCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setPrivateBrowsingEnabled(JSValueToBoolean(context, arguments[0]));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setJavaScriptCanAccessClipboardCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setJavaScriptCanAccessClipboard(JSValueToBoolean(context, arguments[0]));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setXSSAuditorEnabledCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setXSSAuditorEnabled(JSValueToBoolean(context, arguments[0]));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setSpatialNavigationEnabledCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac implementation.
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setSpatialNavigationEnabled(JSValueToBoolean(context, arguments[0]));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setPrintingCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setIsPrinting(true);
-    return JSValueMakeUndefined(context);
-}
-
-
-static JSValueRef setAllowUniversalAccessFromFileURLsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setAllowUniversalAccessFromFileURLs(JSValueToBoolean(context, arguments[0]));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setAllowFileAccessFromFileURLsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setAllowFileAccessFromFileURLs(JSValueToBoolean(context, arguments[0]));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setTabKeyCyclesThroughElementsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setTabKeyCyclesThroughElements(JSValueToBoolean(context, arguments[0]));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setUseDashboardCompatibilityModeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setUseDashboardCompatibilityMode(JSValueToBoolean(context, arguments[0]));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setUserStyleSheetEnabledCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setUserStyleSheetEnabled(JSValueToBoolean(context, arguments[0]));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setUserStyleSheetLocationCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> path(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setUserStyleSheetLocation(path.get());
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setValueForUserCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac implementation
-    if (argumentCount != 2)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> value(Adopt, JSValueToStringCopy(context, arguments[1], exception));
-    ASSERT(!*exception);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setValueForUser(context, arguments[0], value.get());
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setViewModeMediaFeatureCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> mode(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setViewModeMediaFeature(mode.get());
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setWillSendRequestClearHeaderCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> header(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-
-    size_t maxLength = JSStringGetMaximumUTF8CStringSize(header.get());
-    OwnArrayPtr<char> headerBuffer = adoptArrayPtr(new char[maxLength + 1]);
-    JSStringGetUTF8CString(header.get(), headerBuffer.get(), maxLength + 1);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setWillSendRequestClearHeader(headerBuffer.get());
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setWillSendRequestReturnsNullCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has cross-platform implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setWillSendRequestReturnsNull(JSValueToBoolean(context, arguments[0]));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setWillSendRequestReturnsNullOnRedirectCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has cross-platform implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setWillSendRequestReturnsNullOnRedirect(JSValueToBoolean(context, arguments[0]));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setWindowIsKeyCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setWindowIsKey(JSValueToBoolean(context, arguments[0]));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef waitUntilDoneCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setWaitToDump(true);
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef windowCountCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac implementation
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    int windows = controller->windowCount();
-    return JSValueMakeNumber(context, windows);
-}
-
-static JSValueRef setPopupBlockingEnabledCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setPopupBlockingEnabled(JSValueToBoolean(context, arguments[0]));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setPluginsEnabledCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-    
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setPluginsEnabled(JSValueToBoolean(context, arguments[0]));
-    
-    return JSValueMakeUndefined(context);
-}    
-
-static JSValueRef setPageVisibilityCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has mac & windows implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> visibility(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-
-    size_t maxLength = JSStringGetMaximumUTF8CStringSize(visibility.get());
-    char* visibilityBuffer = new char[maxLength + 1];
-    JSStringGetUTF8CString(visibility.get(), visibilityBuffer, maxLength + 1);
-    
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setPageVisibility(visibilityBuffer);
-    delete[] visibilityBuffer;
-    
-    return JSValueMakeUndefined(context);
-}    
-
-static JSValueRef resetPageVisibilityCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->resetPageVisibility();
-    return JSValueMakeUndefined(context);
-}    
-
-static JSValueRef setAutomaticLinkDetectionEnabledCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setAutomaticLinkDetectionEnabled(JSValueToBoolean(context, arguments[0]));
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setStopProvisionalFrameLoadsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setStopProvisionalFrameLoads(true);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef showWebInspectorCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->showWebInspector();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef closeWebInspectorCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->closeWebInspector();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef evaluateInWebInspectorCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    double callId = JSValueToNumber(context, arguments[0], exception);
-    ASSERT(!*exception);
-    JSRetainPtr<JSStringRef> script(Adopt, JSValueToStringCopy(context, arguments[1], exception));
-    ASSERT(!*exception);
-
-    controller->evaluateInWebInspector(static_cast<long>(callId), script.get());
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef evaluateScriptInIsolatedWorldCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    double worldID = JSValueToNumber(context, arguments[0], exception);
-    ASSERT(!*exception);
-    JSRetainPtr<JSStringRef> script(Adopt, JSValueToStringCopy(context, arguments[1], exception));
-    ASSERT(!*exception);
-
-    controller->evaluateScriptInIsolatedWorld(static_cast<unsigned>(worldID), JSContextGetGlobalObject(context), script.get());
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef evaluateScriptInIsolatedWorldAndReturnValueCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    double worldID = JSValueToNumber(context, arguments[0], exception);
-    ASSERT(!*exception);
-    JSRetainPtr<JSStringRef> script(Adopt, JSValueToStringCopy(context, arguments[1], exception));
-    ASSERT(!*exception);
-
-    controller->evaluateScriptInIsolatedWorldAndReturnValue(static_cast<unsigned>(worldID), JSContextGetGlobalObject(context), script.get());
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef waitForPolicyDelegateCallback(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t, const JSValueRef[], JSValueRef*)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->waitForPolicyDelegate();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef addOriginAccessWhitelistEntryCallback(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount != 4)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> sourceOrigin(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-    JSRetainPtr<JSStringRef> destinationProtocol(Adopt, JSValueToStringCopy(context, arguments[1], exception));
-    ASSERT(!*exception);
-    JSRetainPtr<JSStringRef> destinationHost(Adopt, JSValueToStringCopy(context, arguments[2], exception));
-    ASSERT(!*exception);
-    bool allowDestinationSubdomains = JSValueToBoolean(context, arguments[3]);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->addOriginAccessWhitelistEntry(sourceOrigin.get(), destinationProtocol.get(), destinationHost.get(), allowDestinationSubdomains);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef removeOriginAccessWhitelistEntryCallback(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount != 4)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> sourceOrigin(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-    JSRetainPtr<JSStringRef> destinationProtocol(Adopt, JSValueToStringCopy(context, arguments[1], exception));
-    ASSERT(!*exception);
-    JSRetainPtr<JSStringRef> destinationHost(Adopt, JSValueToStringCopy(context, arguments[2], exception));
-    ASSERT(!*exception);
-    bool allowDestinationSubdomains = JSValueToBoolean(context, arguments[3]);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->removeOriginAccessWhitelistEntry(sourceOrigin.get(), destinationProtocol.get(), destinationHost.get(), allowDestinationSubdomains);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setScrollbarPolicyCallback(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount != 2)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> orientation(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-    JSRetainPtr<JSStringRef> policy(Adopt, JSValueToStringCopy(context, arguments[1], exception));
-    ASSERT(!*exception);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setScrollbarPolicy(orientation.get(), policy.get());
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef addUserScriptCallback(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount != 3)
-        return JSValueMakeUndefined(context);
-    
-    JSRetainPtr<JSStringRef> source(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-    bool runAtStart = JSValueToBoolean(context, arguments[1]);
-    bool allFrames = JSValueToBoolean(context, arguments[2]);
-    
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->addUserScript(source.get(), runAtStart, allFrames);
-    return JSValueMakeUndefined(context);
-}
- 
-static JSValueRef addUserStyleSheetCallback(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount != 2)
-        return JSValueMakeUndefined(context);
-    
-    JSRetainPtr<JSStringRef> source(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-    bool allFrames = JSValueToBoolean(context, arguments[1]);
-   
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->addUserStyleSheet(source.get(), allFrames);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setShouldPaintBrokenImageCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has Mac implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setShouldPaintBrokenImage(JSValueToBoolean(context, arguments[0]));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef apiTestNewWindowDataLoadBaseURLCallback(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount != 2)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> utf8Data(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-
-    JSRetainPtr<JSStringRef> baseURL(Adopt, JSValueToStringCopy(context, arguments[1], exception));
-    ASSERT(!*exception);
-        
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->apiTestNewWindowDataLoadBaseURL(utf8Data.get(), baseURL.get());
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef apiTestGoToCurrentBackForwardItemCallback(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->apiTestGoToCurrentBackForwardItem();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setWebViewEditableCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has Mac implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setWebViewEditable(JSValueToBoolean(context, arguments[0]));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef abortModalCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->abortModal();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef authenticateSessionCallback(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // authenticateSession(url, username, password)
-    if (argumentCount != 3)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> url(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-    JSRetainPtr<JSStringRef> username(Adopt, JSValueToStringCopy(context, arguments[1], exception));
-    ASSERT(!*exception);
-    JSRetainPtr<JSStringRef> password(Adopt, JSValueToStringCopy(context, arguments[2], exception));
-    ASSERT(!*exception);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->authenticateSession(url.get(), username.get(), password.get());
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setSerializeHTTPLoadsCallback(JSContextRef context, JSObjectRef, JSObjectRef, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    bool serialize = true;
-    if (argumentCount == 1)
-        serialize = JSValueToBoolean(context, arguments[0]);
-
-    TestRunner::setSerializeHTTPLoads(serialize);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setShouldStayOnPageAfterHandlingBeforeUnloadCallback(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    
-    if (argumentCount == 1)
-        controller->setShouldStayOnPageAfterHandlingBeforeUnload(JSValueToBoolean(context, arguments[0]));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef addChromeInputFieldCallback(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->addChromeInputField();
-    // the first argument is a callback that is called once the input field has been added
-    if (argumentCount == 1)
-        JSObjectCallAsFunction(context, JSValueToObject(context, arguments[0], 0), thisObject, 0, 0, 0);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef removeChromeInputFieldCallback(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->removeChromeInputField();
-    // the first argument is a callback that is called once the input field has been added
-    if (argumentCount == 1)
-        JSObjectCallAsFunction(context, JSValueToObject(context, arguments[0], 0), thisObject, 0, 0, 0);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef focusWebViewCallback(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->focusWebView();
-    // the first argument is a callback that is called once the input field has been added
-    if (argumentCount == 1)
-        JSObjectCallAsFunction(context, JSValueToObject(context, arguments[0], 0), thisObject, 0, 0, 0);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setBackingScaleFactorCallback(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount != 2)
-        return JSValueMakeUndefined(context);
-
-    double backingScaleFactor = JSValueToNumber(context, arguments[0], exception);
-    ASSERT(!*exception);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setBackingScaleFactor(backingScaleFactor);
-
-    // The second argument is a callback that is called once the backing scale factor has been set.
-    JSObjectCallAsFunction(context, JSValueToObject(context, arguments[1], 0), thisObject, 0, 0, 0);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef preciseTimeCallback(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    return JSValueMakeNumber(context, WTF::currentTime());
-}
-
-// Static Values
-
-static JSValueRef getGlobalFlagCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    return JSValueMakeBoolean(context, controller->globalFlag());
-}
-
-static JSValueRef getWebHistoryItemCountCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    return JSValueMakeNumber(context, controller->webHistoryItemCount());
-}
-
-#if PLATFORM(MAC) || PLATFORM(GTK) || PLATFORM(WIN) || PLATFORM(EFL)
-static JSValueRef getPlatformNameCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    JSRetainPtr<JSStringRef> platformName(controller->platformName());
-    if (!platformName.get())
-        return JSValueMakeUndefined(context);
-    return JSValueMakeString(context, platformName.get());
-}
-#endif
-
-static JSValueRef getTitleTextDirectionCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    JSRetainPtr<JSStringRef> titleDirection(Adopt, JSStringCreateWithUTF8CString(controller->titleTextDirection().c_str()));
-    return JSValueMakeString(context, titleDirection.get());
-}
-
-static bool setGlobalFlagCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef value, JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setGlobalFlag(JSValueToBoolean(context, value));
-    return true;
-}
-
-static JSValueRef ignoreLegacyWebNotificationPermissionRequestsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->ignoreLegacyWebNotificationPermissionRequests();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef simulateLegacyWebNotificationClickCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject)); 
-    JSRetainPtr<JSStringRef> title(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    controller->simulateLegacyWebNotificationClick(title.get());
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setTextDirectionCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount == 1) {
-        JSRetainPtr<JSStringRef> direction(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-        TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-        controller->setTextDirection(direction.get());
-    }
-
-    return JSValueMakeUndefined(context);
-
-}
-
-static JSValueRef setHasCustomFullScreenBehaviorCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount == 1) {
-        bool hasCustomBehavior = JSValueToBoolean(context, arguments[0]);
-        TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-        controller->setHasCustomFullScreenBehavior(hasCustomBehavior);
-    }
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setStorageDatabaseIdleIntervalCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount != 1)
-        return JSValueMakeUndefined(context);
-
-    double interval = JSValueToNumber(context, arguments[0], exception);
-    ASSERT(!*exception);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->setStorageDatabaseIdleInterval(interval);
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef closeIdleLocalStorageDatabasesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-    controller->closeIdleLocalStorageDatabases();
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef grantWebNotificationPermissionCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-
-    JSRetainPtr<JSStringRef> origin(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-    controller->grantWebNotificationPermission(origin.get());
-
-    return JSValueMakeUndefined(context);
-}
-
-
-static JSValueRef denyWebNotificationPermissionCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-
-    JSRetainPtr<JSStringRef> origin(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-    controller->denyWebNotificationPermission(origin.get());
-
-    return JSValueMakeUndefined(context);
-}
-
-
-static JSValueRef removeAllWebNotificationPermissionsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-
-    controller->removeAllWebNotificationPermissions();
-
-    return JSValueMakeUndefined(context);
-}
-
-
-static JSValueRef simulateWebNotificationClickCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    // Has Windows implementation
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(thisObject));
-
-    controller->simulateWebNotificationClick(arguments[0]);
-
-    return JSValueMakeUndefined(context);
-}
-
-static void testRunnerObjectFinalize(JSObjectRef object)
-{
-    TestRunner* controller = static_cast<TestRunner*>(JSObjectGetPrivate(object));
-    controller->deref();
-}
-
-// Object Creation
-
-void TestRunner::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> testRunnerStr(Adopt, JSStringCreateWithUTF8CString("testRunner"));
-    ref();
-
-    JSClassRef classRef = getJSClass();
-    JSValueRef layoutTestContollerObject = JSObjectMake(context, classRef, this);
-    JSClassRelease(classRef);
-
-    JSObjectSetProperty(context, windowObject, testRunnerStr.get(), layoutTestContollerObject, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, exception);
-}
-
-JSClassRef TestRunner::getJSClass()
-{
-    static JSStaticValue* staticValues = TestRunner::staticValues();
-    static JSStaticFunction* staticFunctions = TestRunner::staticFunctions();
-    static JSClassDefinition classDefinition = {
-        0, kJSClassAttributeNone, "TestRunner", 0, staticValues, staticFunctions,
-        0, testRunnerObjectFinalize, 0, 0, 0, 0, 0, 0, 0, 0, 0
-    };
-
-    return JSClassCreate(&classDefinition);
-}
-
-JSStaticValue* TestRunner::staticValues()
-{
-    static JSStaticValue staticValues[] = {
-        { "globalFlag", getGlobalFlagCallback, setGlobalFlagCallback, kJSPropertyAttributeNone },
-        { "webHistoryItemCount", getWebHistoryItemCountCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-#if PLATFORM(MAC) || PLATFORM(GTK) || PLATFORM(WIN) || PLATFORM(EFL)
-        { "platformName", getPlatformNameCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-#endif
-        { "titleTextDirection", getTitleTextDirectionCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { 0, 0, 0, 0 }
-    };
-    return staticValues;
-}
-
-JSStaticFunction* TestRunner::staticFunctions()
-{
-    static JSStaticFunction staticFunctions[] = {
-        { "abortModal", abortModalCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "addDisallowedURL", addDisallowedURLCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "addURLToRedirect", addURLToRedirectCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "addUserScript", addUserScriptCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "addUserStyleSheet", addUserStyleSheetCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "apiTestNewWindowDataLoadBaseURL", apiTestNewWindowDataLoadBaseURLCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "apiTestGoToCurrentBackForwardItem", apiTestGoToCurrentBackForwardItemCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "applicationCacheDiskUsageForOrigin", applicationCacheDiskUsageForOriginCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "callShouldCloseOnWebView", callShouldCloseOnWebViewCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "clearAllApplicationCaches", clearAllApplicationCachesCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "clearAllDatabases", clearAllDatabasesCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "clearApplicationCacheForOrigin", clearApplicationCacheForOriginCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "clearBackForwardList", clearBackForwardListCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "clearPersistentUserStyleSheet", clearPersistentUserStyleSheetCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "closeWebInspector", closeWebInspectorCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "decodeHostName", decodeHostNameCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "disallowIncreaseForApplicationCacheQuota", disallowIncreaseForApplicationCacheQuotaCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "dispatchPendingLoadRequests", dispatchPendingLoadRequestsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "display", displayCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "displayInvalidatedRegion", displayInvalidatedRegionCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "dumpApplicationCacheDelegateCallbacks", dumpApplicationCacheDelegateCallbacksCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "dumpAsText", dumpAsTextCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "dumpBackForwardList", dumpBackForwardListCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "dumpChildFrameScrollPositions", dumpChildFrameScrollPositionsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "dumpChildFramesAsText", dumpChildFramesAsTextCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "dumpDOMAsWebArchive", dumpDOMAsWebArchiveCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "dumpDatabaseCallbacks", dumpDatabaseCallbacksCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "dumpEditingCallbacks", dumpEditingCallbacksCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "dumpFrameLoadCallbacks", dumpFrameLoadCallbacksCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "dumpProgressFinishedCallback", dumpProgressFinishedCallbackCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "dumpUserGestureInFrameLoadCallbacks", dumpUserGestureInFrameLoadCallbacksCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },        
-        { "dumpResourceLoadCallbacks", dumpResourceLoadCallbacksCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "dumpResourceResponseMIMETypes", dumpResourceResponseMIMETypesCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "dumpSelectionRect", dumpSelectionRectCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "dumpSourceAsWebArchive", dumpSourceAsWebArchiveCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "dumpStatusCallbacks", dumpStatusCallbacksCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "dumpTitleChanges", dumpTitleChangesCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "dumpIconChanges", dumpIconChangesCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "dumpWillCacheResponse", dumpWillCacheResponseCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "encodeHostName", encodeHostNameCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "evaluateInWebInspector", evaluateInWebInspectorCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "evaluateScriptInIsolatedWorldAndReturnValue", evaluateScriptInIsolatedWorldAndReturnValueCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "evaluateScriptInIsolatedWorld", evaluateScriptInIsolatedWorldCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "execCommand", execCommandCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "findString", findStringCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "originsWithApplicationCache", originsWithApplicationCacheCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "goBack", goBackCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, 
-        { "ignoreLegacyWebNotificationPermissionRequests", ignoreLegacyWebNotificationPermissionRequestsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "isCommandEnabled", isCommandEnabledCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "keepWebHistory", keepWebHistoryCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "numberOfPendingGeolocationPermissionRequests", numberOfPendingGeolocationPermissionRequestsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "notifyDone", notifyDoneCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "overridePreference", overridePreferenceCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "pathToLocalResource", pathToLocalResourceCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "printToPDF", dumpAsPDFCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "queueBackNavigation", queueBackNavigationCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "queueForwardNavigation", queueForwardNavigationCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "queueLoad", queueLoadCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "queueLoadHTMLString", queueLoadHTMLStringCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "queueLoadingScript", queueLoadingScriptCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "queueNonLoadingScript", queueNonLoadingScriptCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "queueReload", queueReloadCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "removeAllVisitedLinks", removeAllVisitedLinksCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "removeOriginAccessWhitelistEntry", removeOriginAccessWhitelistEntryCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "repaintSweepHorizontally", repaintSweepHorizontallyCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "resetPageVisibility", resetPageVisibilityCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setAcceptsEditing", setAcceptsEditingCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setAllowUniversalAccessFromFileURLs", setAllowUniversalAccessFromFileURLsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setAllowFileAccessFromFileURLs", setAllowFileAccessFromFileURLsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setAlwaysAcceptCookies", setAlwaysAcceptCookiesCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setAppCacheMaximumSize", setAppCacheMaximumSizeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setApplicationCacheOriginQuota", setApplicationCacheOriginQuotaCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setEncodedAudioData", setEncodedAudioDataCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setAuthenticationPassword", setAuthenticationPasswordCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setAuthenticationUsername", setAuthenticationUsernameCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setAuthorAndUserStylesEnabled", setAuthorAndUserStylesEnabledCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setCacheModel", setCacheModelCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setCallCloseOnWebViews", setCallCloseOnWebViewsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setCanOpenWindows", setCanOpenWindowsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setCloseRemainingWindowsWhenComplete", setCloseRemainingWindowsWhenCompleteCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setCustomPolicyDelegate", setCustomPolicyDelegateCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setDatabaseQuota", setDatabaseQuotaCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, 
-        { "setDeferMainResourceDataLoad", setDeferMainResourceDataLoadCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setDefersLoading", setDefersLoadingCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setUseDeferredFrameLoading", setUseDeferredFrameLoadingCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setDomainRelaxationForbiddenForURLScheme", setDomainRelaxationForbiddenForURLSchemeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setGeolocationPermission", setGeolocationPermissionCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setHandlesAuthenticationChallenges", setHandlesAuthenticationChallengesCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setIconDatabaseEnabled", setIconDatabaseEnabledCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setAutomaticLinkDetectionEnabled", setAutomaticLinkDetectionEnabledCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setMainFrameIsFirstResponder", setMainFrameIsFirstResponderCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setMockDeviceOrientation", setMockDeviceOrientationCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setMockGeolocationPositionUnavailableError", setMockGeolocationPositionUnavailableErrorCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setMockGeolocationPosition", setMockGeolocationPositionCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "addMockSpeechInputResult", addMockSpeechInputResultCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setMockSpeechInputDumpRect", setMockSpeechInputDumpRectCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setNewWindowsCopyBackForwardList", setNewWindowsCopyBackForwardListCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setPageVisibility", setPageVisibilityCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setPOSIXLocale", setPOSIXLocaleCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setPersistentUserStyleSheetLocation", setPersistentUserStyleSheetLocationCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setPopupBlockingEnabled", setPopupBlockingEnabledCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setPluginsEnabled", setPluginsEnabledCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setPrinting", setPrintingCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setPrivateBrowsingEnabled", setPrivateBrowsingEnabledCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setSerializeHTTPLoads", setSerializeHTTPLoadsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setSpatialNavigationEnabled", setSpatialNavigationEnabledCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setStopProvisionalFrameLoads", setStopProvisionalFrameLoadsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setTabKeyCyclesThroughElements", setTabKeyCyclesThroughElementsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setUseDashboardCompatibilityMode", setUseDashboardCompatibilityModeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setUserStyleSheetEnabled", setUserStyleSheetEnabledCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setUserStyleSheetLocation", setUserStyleSheetLocationCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setValueForUser", setValueForUserCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setViewModeMediaFeature", setViewModeMediaFeatureCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setWebViewEditable", setWebViewEditableCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setWillSendRequestClearHeader", setWillSendRequestClearHeaderCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setWillSendRequestReturnsNull", setWillSendRequestReturnsNullCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setWillSendRequestReturnsNullOnRedirect", setWillSendRequestReturnsNullOnRedirectCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setWindowIsKey", setWindowIsKeyCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setJavaScriptCanAccessClipboard", setJavaScriptCanAccessClipboardCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setXSSAuditorEnabled", setXSSAuditorEnabledCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "showWebInspector", showWebInspectorCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "simulateLegacyWebNotificationClick", simulateLegacyWebNotificationClickCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "testOnscreen", testOnscreenCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "testRepaint", testRepaintCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "waitForPolicyDelegate", waitForPolicyDelegateCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "waitUntilDone", waitUntilDoneCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "windowCount", windowCountCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "addOriginAccessWhitelistEntry", addOriginAccessWhitelistEntryCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setScrollbarPolicy", setScrollbarPolicyCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "authenticateSession", authenticateSessionCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "deleteAllLocalStorage", deleteAllLocalStorageCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "syncLocalStorage", syncLocalStorageCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },                
-        { "observeStorageTrackerNotifications", observeStorageTrackerNotificationsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },        
-        { "deleteLocalStorageForOrigin", deleteLocalStorageForOriginCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "localStorageDiskUsageForOrigin", localStorageDiskUsageForOriginCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "originsWithLocalStorage", originsWithLocalStorageCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setShouldPaintBrokenImage", setShouldPaintBrokenImageCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setTextDirection", setTextDirectionCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setShouldStayOnPageAfterHandlingBeforeUnload", setShouldStayOnPageAfterHandlingBeforeUnloadCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "addChromeInputField", addChromeInputFieldCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "removeChromeInputField", removeChromeInputFieldCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "focusWebView", focusWebViewCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setBackingScaleFactor", setBackingScaleFactorCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "preciseTime", preciseTimeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setHasCustomFullScreenBehavior", setHasCustomFullScreenBehaviorCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "setStorageDatabaseIdleInterval", setStorageDatabaseIdleIntervalCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "closeIdleLocalStorageDatabases", closeIdleLocalStorageDatabasesCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "grantWebNotificationPermission", grantWebNotificationPermissionCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "denyWebNotificationPermission", denyWebNotificationPermissionCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "removeAllWebNotificationPermissions", removeAllWebNotificationPermissionsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "simulateWebNotificationClick", simulateWebNotificationClickCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { 0, 0, 0 }
-    };
-
-    return staticFunctions;
-}
-
-void TestRunner::queueLoadHTMLString(JSStringRef content, JSStringRef baseURL)
-{
-    WorkQueue::shared()->queue(new LoadHTMLStringItem(content, baseURL));
-}
-
-void TestRunner::queueLoadAlternateHTMLString(JSStringRef content, JSStringRef baseURL, JSStringRef unreachableURL)
-{
-    WorkQueue::shared()->queue(new LoadHTMLStringItem(content, baseURL, unreachableURL));
-}
-
-void TestRunner::queueBackNavigation(int howFarBack)
-{
-    WorkQueue::shared()->queue(new BackItem(howFarBack));
-}
-
-void TestRunner::queueForwardNavigation(int howFarForward)
-{
-    WorkQueue::shared()->queue(new ForwardItem(howFarForward));
-}
-
-void TestRunner::queueLoadingScript(JSStringRef script)
-{
-    WorkQueue::shared()->queue(new LoadingScriptItem(script));
-}
-
-void TestRunner::queueNonLoadingScript(JSStringRef script)
-{
-    WorkQueue::shared()->queue(new NonLoadingScriptItem(script));
-}
-
-void TestRunner::queueReload()
-{
-    WorkQueue::shared()->queue(new ReloadItem);
-}
-
-void TestRunner::ignoreLegacyWebNotificationPermissionRequests()
-{
-    m_areLegacyWebNotificationPermissionRequestsIgnored = false;
-}
-
-void TestRunner::waitToDumpWatchdogTimerFired()
-{
-    const char* message = "FAIL: Timed out waiting for notifyDone to be called\n";
-    fprintf(stderr, "%s", message);
-    fprintf(stdout, "%s", message);
-    notifyDone();
-}
-
-void TestRunner::setGeolocationPermissionCommon(bool allow)
-{
-    m_isGeolocationPermissionSet = true;
-    m_geolocationPermission = allow;
-}
-
-void TestRunner::setPOSIXLocale(JSStringRef locale)
-{
-    char localeBuf[32];
-    JSStringGetUTF8CString(locale, localeBuf, sizeof(localeBuf));
-    setlocale(LC_ALL, localeBuf);
-}
-
-void TestRunner::addURLToRedirect(std::string origin, std::string destination)
-{
-    m_URLsToRedirect[origin] = destination;
-}
-
-const std::string& TestRunner::redirectionDestinationForURL(std::string origin)
-{
-    return m_URLsToRedirect[origin];
-}
-
-void TestRunner::setShouldPaintBrokenImage(bool shouldPaintBrokenImage)
-{
-    m_shouldPaintBrokenImage = shouldPaintBrokenImage;
-}
-
-const unsigned TestRunner::maxViewWidth = 800;
-const unsigned TestRunner::maxViewHeight = 600;
diff --git a/Tools/DumpRenderTree/TestRunner.h b/Tools/DumpRenderTree/TestRunner.h
deleted file mode 100644
index f0a9b6a..0000000
--- a/Tools/DumpRenderTree/TestRunner.h
+++ /dev/null
@@ -1,424 +0,0 @@
-/*
- * Copyright (C) 2007, 2008, 2009, 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- 
-#ifndef TestRunner_h
-#define TestRunner_h
-
-#include <JavaScriptCore/JSObjectRef.h>
-#include <JavaScriptCore/JSRetainPtr.h>
-#include <map>
-#include <set>
-#include <string>
-#include <vector>
-#include <wtf/PassRefPtr.h>
-#include <wtf/RefCounted.h>
-
-class TestRunner : public RefCounted<TestRunner> {
-public:
-    static PassRefPtr<TestRunner> create(const std::string& testPathOrURL, const std::string& expectedPixelHash);
-    ~TestRunner();
-
-    void makeWindowObject(JSContextRef, JSObjectRef windowObject, JSValueRef* exception);
-
-    void addDisallowedURL(JSStringRef url);
-    void addURLToRedirect(std::string origin, std::string destination);
-    const std::string& redirectionDestinationForURL(std::string);
-    void clearAllApplicationCaches();
-    void clearAllDatabases();
-    void clearApplicationCacheForOrigin(JSStringRef name);
-    void clearBackForwardList();
-    void clearPersistentUserStyleSheet();
-    bool callShouldCloseOnWebView();
-    JSStringRef copyDecodedHostName(JSStringRef name);
-    JSStringRef copyEncodedHostName(JSStringRef name);
-    void dispatchPendingLoadRequests();
-    void display();
-    void displayInvalidatedRegion();
-    void execCommand(JSStringRef name, JSStringRef value);
-    bool findString(JSContextRef, JSStringRef, JSObjectRef optionsArray);
-    void goBack();
-    JSValueRef originsWithApplicationCache(JSContextRef);
-    long long applicationCacheDiskUsageForOrigin(JSStringRef name);
-    bool isCommandEnabled(JSStringRef name);
-    void keepWebHistory();
-    void notifyDone();
-    int numberOfPendingGeolocationPermissionRequests();
-    void overridePreference(JSStringRef key, JSStringRef value);
-    JSStringRef pathToLocalResource(JSContextRef, JSStringRef url);
-    void queueBackNavigation(int howFarBackward);
-    void queueForwardNavigation(int howFarForward);
-    void queueLoad(JSStringRef url, JSStringRef target);
-    void queueLoadHTMLString(JSStringRef content, JSStringRef baseURL);
-    void queueLoadAlternateHTMLString(JSStringRef content, JSStringRef baseURL, JSStringRef unreachableURL);
-    void queueLoadingScript(JSStringRef script);
-    void queueNonLoadingScript(JSStringRef script);
-    void queueReload();
-    void removeAllVisitedLinks();
-    void setAcceptsEditing(bool);
-    void setAllowUniversalAccessFromFileURLs(bool);
-    void setAllowFileAccessFromFileURLs(bool);
-    void setAppCacheMaximumSize(unsigned long long quota);
-    void setApplicationCacheOriginQuota(unsigned long long);
-    void setAuthorAndUserStylesEnabled(bool);
-    void setCacheModel(int);
-    void setCustomPolicyDelegate(bool setDelegate, bool permissive);
-    void setDatabaseQuota(unsigned long long quota);
-    void setDomainRelaxationForbiddenForURLScheme(bool forbidden, JSStringRef scheme);
-    void setDefersLoading(bool);
-    void setIconDatabaseEnabled(bool);
-    void setJavaScriptCanAccessClipboard(bool flag);
-    void setAutomaticLinkDetectionEnabled(bool flag);
-    void setMainFrameIsFirstResponder(bool flag);
-    void setMockDeviceOrientation(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma);
-    void setMockGeolocationPosition(double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed);
-    void setMockGeolocationPositionUnavailableError(JSStringRef message);
-    void addMockSpeechInputResult(JSStringRef result, double confidence, JSStringRef language);
-    void setMockSpeechInputDumpRect(bool flag);
-    void setPersistentUserStyleSheetLocation(JSStringRef path);
-    void setPluginsEnabled(bool);
-    void setPopupBlockingEnabled(bool);
-    void setPrivateBrowsingEnabled(bool);
-    void setTabKeyCyclesThroughElements(bool);
-    void setUseDashboardCompatibilityMode(bool flag);
-    void setUserStyleSheetEnabled(bool flag);
-    void setUserStyleSheetLocation(JSStringRef path);
-    void setValueForUser(JSContextRef, JSValueRef nodeObject, JSStringRef value);
-    void setViewModeMediaFeature(JSStringRef);
-    void setXSSAuditorEnabled(bool flag);
-    void setSpatialNavigationEnabled(bool);
-    void setScrollbarPolicy(JSStringRef orientation, JSStringRef policy);
-    void startSpeechInput(JSContextRef inputElement);
-    void setPageVisibility(const char*);
-    void resetPageVisibility();
-
-    void waitForPolicyDelegate();
-    size_t webHistoryItemCount();
-    int windowCount();
-    
-#if PLATFORM(MAC) || PLATFORM(GTK) || PLATFORM(WIN) || PLATFORM(EFL)
-    JSRetainPtr<JSStringRef> platformName() const;
-#endif
-
-    // Legacy here refers to the old TestRunner API for handling web notifications, not the legacy web notification API.
-    void ignoreLegacyWebNotificationPermissionRequests();
-    // Legacy here refers to the old TestRunner API for handling web notifications, not the legacy web notification API.
-    void simulateLegacyWebNotificationClick(JSStringRef title);
-    void grantWebNotificationPermission(JSStringRef origin);
-    void denyWebNotificationPermission(JSStringRef origin);
-    void removeAllWebNotificationPermissions();
-    void simulateWebNotificationClick(JSValueRef notification);
-
-    bool dumpAsAudio() const { return m_dumpAsAudio; }
-    void setDumpAsAudio(bool dumpAsAudio) { m_dumpAsAudio = dumpAsAudio; }
-    
-    bool dumpAsPDF() const { return m_dumpAsPDF; }
-    void setDumpAsPDF(bool dumpAsPDF) { m_dumpAsPDF = dumpAsPDF; }
-
-    bool dumpAsText() const { return m_dumpAsText; }
-    void setDumpAsText(bool dumpAsText) { m_dumpAsText = dumpAsText; }
-
-    bool generatePixelResults() const { return m_generatePixelResults; }
-    void setGeneratePixelResults(bool generatePixelResults) { m_generatePixelResults = generatePixelResults; }
-
-    bool disallowIncreaseForApplicationCacheQuota() const { return m_disallowIncreaseForApplicationCacheQuota; }
-    void setDisallowIncreaseForApplicationCacheQuota(bool disallowIncrease) { m_disallowIncreaseForApplicationCacheQuota = disallowIncrease; }
-
-    bool dumpApplicationCacheDelegateCallbacks() const { return m_dumpApplicationCacheDelegateCallbacks; }
-    void setDumpApplicationCacheDelegateCallbacks(bool dumpCallbacks) { m_dumpApplicationCacheDelegateCallbacks = dumpCallbacks; }
-
-    bool dumpBackForwardList() const { return m_dumpBackForwardList; }
-    void setDumpBackForwardList(bool dumpBackForwardList) { m_dumpBackForwardList = dumpBackForwardList; }
-
-    bool dumpChildFrameScrollPositions() const { return m_dumpChildFrameScrollPositions; }
-    void setDumpChildFrameScrollPositions(bool dumpChildFrameScrollPositions) { m_dumpChildFrameScrollPositions = dumpChildFrameScrollPositions; }
-
-    bool dumpChildFramesAsText() const { return m_dumpChildFramesAsText; }
-    void setDumpChildFramesAsText(bool dumpChildFramesAsText) { m_dumpChildFramesAsText = dumpChildFramesAsText; }
-
-    bool dumpDatabaseCallbacks() const { return m_dumpDatabaseCallbacks; }
-    void setDumpDatabaseCallbacks(bool dumpDatabaseCallbacks) { m_dumpDatabaseCallbacks = dumpDatabaseCallbacks; }
-
-    bool dumpDOMAsWebArchive() const { return m_dumpDOMAsWebArchive; }
-    void setDumpDOMAsWebArchive(bool dumpDOMAsWebArchive) { m_dumpDOMAsWebArchive = dumpDOMAsWebArchive; }
-
-    bool dumpEditingCallbacks() const { return m_dumpEditingCallbacks; }
-    void setDumpEditingCallbacks(bool dumpEditingCallbacks) { m_dumpEditingCallbacks = dumpEditingCallbacks; }
-
-    bool dumpFrameLoadCallbacks() const { return m_dumpFrameLoadCallbacks; }
-    void setDumpFrameLoadCallbacks(bool dumpFrameLoadCallbacks) { m_dumpFrameLoadCallbacks = dumpFrameLoadCallbacks; }
-
-    bool dumpProgressFinishedCallback() const { return m_dumpProgressFinishedCallback; }
-    void setDumpProgressFinishedCallback(bool dumpProgressFinishedCallback) { m_dumpProgressFinishedCallback = dumpProgressFinishedCallback; }
-    
-    bool dumpUserGestureInFrameLoadCallbacks() const { return m_dumpUserGestureInFrameLoadCallbacks; }
-    void setDumpUserGestureInFrameLoadCallbacks(bool dumpUserGestureInFrameLoadCallbacks) { m_dumpUserGestureInFrameLoadCallbacks = dumpUserGestureInFrameLoadCallbacks; }    
-
-    bool dumpHistoryDelegateCallbacks() const { return m_dumpHistoryDelegateCallbacks; }
-    void setDumpHistoryDelegateCallbacks(bool dumpHistoryDelegateCallbacks) { m_dumpHistoryDelegateCallbacks = dumpHistoryDelegateCallbacks; }
-    
-    bool dumpResourceLoadCallbacks() const { return m_dumpResourceLoadCallbacks; }
-    void setDumpResourceLoadCallbacks(bool dumpResourceLoadCallbacks) { m_dumpResourceLoadCallbacks = dumpResourceLoadCallbacks; }
-    
-    bool dumpResourceResponseMIMETypes() const { return m_dumpResourceResponseMIMETypes; }
-    void setDumpResourceResponseMIMETypes(bool dumpResourceResponseMIMETypes) { m_dumpResourceResponseMIMETypes = dumpResourceResponseMIMETypes; }
-
-    bool dumpSelectionRect() const { return m_dumpSelectionRect; }
-    void setDumpSelectionRect(bool dumpSelectionRect) { m_dumpSelectionRect = dumpSelectionRect; }
-
-    bool dumpSourceAsWebArchive() const { return m_dumpSourceAsWebArchive; }
-    void setDumpSourceAsWebArchive(bool dumpSourceAsWebArchive) { m_dumpSourceAsWebArchive = dumpSourceAsWebArchive; }
-
-    bool dumpStatusCallbacks() const { return m_dumpStatusCallbacks; }
-    void setDumpStatusCallbacks(bool dumpStatusCallbacks) { m_dumpStatusCallbacks = dumpStatusCallbacks; }
-
-    bool dumpTitleChanges() const { return m_dumpTitleChanges; }
-    void setDumpTitleChanges(bool dumpTitleChanges) { m_dumpTitleChanges = dumpTitleChanges; }
-
-    bool dumpIconChanges() const { return m_dumpIconChanges; }
-    void setDumpIconChanges(bool dumpIconChanges) { m_dumpIconChanges = dumpIconChanges; }
-
-    bool dumpVisitedLinksCallback() const { return m_dumpVisitedLinksCallback; }
-    void setDumpVisitedLinksCallback(bool dumpVisitedLinksCallback) { m_dumpVisitedLinksCallback = dumpVisitedLinksCallback; }
-    
-    bool dumpWillCacheResponse() const { return m_dumpWillCacheResponse; }
-    void setDumpWillCacheResponse(bool dumpWillCacheResponse) { m_dumpWillCacheResponse = dumpWillCacheResponse; }
-    
-    bool callCloseOnWebViews() const { return m_callCloseOnWebViews; }
-    void setCallCloseOnWebViews(bool callCloseOnWebViews) { m_callCloseOnWebViews = callCloseOnWebViews; }
-
-    bool canOpenWindows() const { return m_canOpenWindows; }
-    void setCanOpenWindows(bool canOpenWindows) { m_canOpenWindows = canOpenWindows; }
-
-    bool closeRemainingWindowsWhenComplete() const { return m_closeRemainingWindowsWhenComplete; }
-    void setCloseRemainingWindowsWhenComplete(bool closeRemainingWindowsWhenComplete) { m_closeRemainingWindowsWhenComplete = closeRemainingWindowsWhenComplete; }
-    
-    bool newWindowsCopyBackForwardList() const { return m_newWindowsCopyBackForwardList; }
-    void setNewWindowsCopyBackForwardList(bool newWindowsCopyBackForwardList) { m_newWindowsCopyBackForwardList = newWindowsCopyBackForwardList; }
-    
-    bool stopProvisionalFrameLoads() const { return m_stopProvisionalFrameLoads; }
-    void setStopProvisionalFrameLoads(bool stopProvisionalFrameLoads) { m_stopProvisionalFrameLoads = stopProvisionalFrameLoads; }
-
-    bool testOnscreen() const { return m_testOnscreen; }
-    void setTestOnscreen(bool testOnscreen) { m_testOnscreen = testOnscreen; }
-
-    bool testRepaint() const { return m_testRepaint; }
-    void setTestRepaint(bool testRepaint) { m_testRepaint = testRepaint; }
-
-    bool testRepaintSweepHorizontally() const { return m_testRepaintSweepHorizontally; }
-    void setTestRepaintSweepHorizontally(bool testRepaintSweepHorizontally) { m_testRepaintSweepHorizontally = testRepaintSweepHorizontally; }
-
-    bool waitToDump() const { return m_waitToDump; }
-    void setWaitToDump(bool);
-    void waitToDumpWatchdogTimerFired();
-
-    const std::set<std::string>& willSendRequestClearHeaders() const { return m_willSendRequestClearHeaders; }
-    void setWillSendRequestClearHeader(std::string header) { m_willSendRequestClearHeaders.insert(header); }
-
-    bool willSendRequestReturnsNull() const { return m_willSendRequestReturnsNull; }
-    void setWillSendRequestReturnsNull(bool returnsNull) { m_willSendRequestReturnsNull = returnsNull; }
-
-    bool willSendRequestReturnsNullOnRedirect() const { return m_willSendRequestReturnsNullOnRedirect; }
-    void setWillSendRequestReturnsNullOnRedirect(bool returnsNull) { m_willSendRequestReturnsNullOnRedirect = returnsNull; }
-
-    bool windowIsKey() const { return m_windowIsKey; }
-    void setWindowIsKey(bool);
-
-    bool alwaysAcceptCookies() const { return m_alwaysAcceptCookies; }
-    void setAlwaysAcceptCookies(bool);
-    
-    bool handlesAuthenticationChallenges() const { return m_handlesAuthenticationChallenges; }
-    void setHandlesAuthenticationChallenges(bool handlesAuthenticationChallenges) { m_handlesAuthenticationChallenges = handlesAuthenticationChallenges; }
-    
-    bool isPrinting() const { return m_isPrinting; }
-    void setIsPrinting(bool isPrinting) { m_isPrinting = isPrinting; }
-
-    const std::string& authenticationUsername() const { return m_authenticationUsername; }
-    void setAuthenticationUsername(std::string username) { m_authenticationUsername = username; }
-    
-    const std::string& authenticationPassword() const { return m_authenticationPassword; }
-    void setAuthenticationPassword(std::string password) { m_authenticationPassword = password; }
-
-    bool globalFlag() const { return m_globalFlag; }
-    void setGlobalFlag(bool globalFlag) { m_globalFlag = globalFlag; }
-    
-    bool deferMainResourceDataLoad() const { return m_deferMainResourceDataLoad; }
-    void setDeferMainResourceDataLoad(bool flag) { m_deferMainResourceDataLoad = flag; }
-
-    bool useDeferredFrameLoading() const { return m_useDeferredFrameLoading; }
-    void setUseDeferredFrameLoading(bool flag) { m_useDeferredFrameLoading = flag; }
-
-    const std::string& testPathOrURL() const { return m_testPathOrURL; }
-    const std::string& expectedPixelHash() const { return m_expectedPixelHash; }
-
-    const std::string& encodedAudioData() const { return m_encodedAudioData; }
-    void setEncodedAudioData(const std::string& encodedAudioData) { m_encodedAudioData = encodedAudioData; }
-
-    void addOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef destinationProtocol, JSStringRef destinationHost, bool allowDestinationSubdomains);
-    void removeOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef destinationProtocol, JSStringRef destinationHost, bool allowDestinationSubdomains);
-
-    void addUserScript(JSStringRef source, bool runAtStart, bool allFrames);
-    void addUserStyleSheet(JSStringRef source, bool allFrames);
-
-    void setGeolocationPermission(bool allow);
-    bool isGeolocationPermissionSet() const { return m_isGeolocationPermissionSet; }
-    bool geolocationPermission() const { return m_geolocationPermission; }
-
-    void setDeveloperExtrasEnabled(bool);
-    void showWebInspector();
-    void closeWebInspector();
-    void evaluateInWebInspector(long callId, JSStringRef script);
-    void evaluateScriptInIsolatedWorld(unsigned worldID, JSObjectRef globalObject, JSStringRef script);
-    void evaluateScriptInIsolatedWorldAndReturnValue(unsigned worldID, JSObjectRef globalObject, JSStringRef script);
-
-    bool shouldStayOnPageAfterHandlingBeforeUnload() const { return m_shouldStayOnPageAfterHandlingBeforeUnload; }
-    void setShouldStayOnPageAfterHandlingBeforeUnload(bool shouldStayOnPageAfterHandlingBeforeUnload) { m_shouldStayOnPageAfterHandlingBeforeUnload = shouldStayOnPageAfterHandlingBeforeUnload; }
-
-    void addChromeInputField();
-    void removeChromeInputField();
-    void focusWebView();
-
-    void setBackingScaleFactor(double);
-
-    void setPOSIXLocale(JSStringRef);
-
-    void setWebViewEditable(bool);
-
-    void abortModal();
-
-    static void setSerializeHTTPLoads(bool);
-
-    // The following API test functions should probably be moved to platform-specific 
-    // unit tests outside of DRT once they exist.
-    void apiTestNewWindowDataLoadBaseURL(JSStringRef utf8Data, JSStringRef baseURL);
-    void apiTestGoToCurrentBackForwardItem();
-
-    // Simulate a request an embedding application could make, populating per-session credential storage.
-    void authenticateSession(JSStringRef url, JSStringRef username, JSStringRef password);
-
-    JSValueRef originsWithLocalStorage(JSContextRef);
-    void deleteAllLocalStorage();
-    void deleteLocalStorageForOrigin(JSStringRef originIdentifier);
-    long long localStorageDiskUsageForOrigin(JSStringRef originIdentifier);
-    void observeStorageTrackerNotifications(unsigned number);
-    void syncLocalStorage();
-
-    void setShouldPaintBrokenImage(bool);
-    bool shouldPaintBrokenImage() const { return m_shouldPaintBrokenImage; }
-
-    static const unsigned maxViewWidth;
-    static const unsigned maxViewHeight;
-
-    void setTextDirection(JSStringRef);
-    const std::string& titleTextDirection() const { return m_titleTextDirection; }
-    void setTitleTextDirection(const std::string& direction) { m_titleTextDirection = direction; }
-
-    // Custom full screen behavior.
-    void setHasCustomFullScreenBehavior(bool value) { m_customFullScreenBehavior = value; }
-    bool hasCustomFullScreenBehavior() const { return m_customFullScreenBehavior; }
-
-    void setStorageDatabaseIdleInterval(double);
-    void closeIdleLocalStorageDatabases();
-
-    bool hasPendingWebNotificationClick() const { return m_hasPendingWebNotificationClick; }
-
-private:
-    TestRunner(const std::string& testPathOrURL, const std::string& expectedPixelHash);
-
-    void setGeolocationPermissionCommon(bool allow);
-
-    bool m_disallowIncreaseForApplicationCacheQuota;
-    bool m_dumpApplicationCacheDelegateCallbacks;
-    bool m_dumpAsAudio;
-    bool m_dumpAsPDF;
-    bool m_dumpAsText;
-    bool m_dumpBackForwardList;
-    bool m_dumpChildFrameScrollPositions;
-    bool m_dumpChildFramesAsText;
-    bool m_dumpDOMAsWebArchive;
-    bool m_dumpDatabaseCallbacks;
-    bool m_dumpEditingCallbacks;
-    bool m_dumpFrameLoadCallbacks;
-    bool m_dumpProgressFinishedCallback;
-    bool m_dumpUserGestureInFrameLoadCallbacks;
-    bool m_dumpHistoryDelegateCallbacks;
-    bool m_dumpResourceLoadCallbacks;
-    bool m_dumpResourceResponseMIMETypes;
-    bool m_dumpSelectionRect;
-    bool m_dumpSourceAsWebArchive;
-    bool m_dumpStatusCallbacks;
-    bool m_dumpTitleChanges;
-    bool m_dumpIconChanges;
-    bool m_dumpVisitedLinksCallback;
-    bool m_dumpWillCacheResponse;
-    bool m_generatePixelResults;
-    bool m_callCloseOnWebViews;
-    bool m_canOpenWindows;
-    bool m_closeRemainingWindowsWhenComplete;
-    bool m_newWindowsCopyBackForwardList;
-    bool m_stopProvisionalFrameLoads;
-    bool m_testOnscreen;
-    bool m_testRepaint;
-    bool m_testRepaintSweepHorizontally;
-    bool m_waitToDump; // True if waitUntilDone() has been called, but notifyDone() has not yet been called.
-    bool m_willSendRequestReturnsNull;
-    bool m_willSendRequestReturnsNullOnRedirect;
-    bool m_windowIsKey;
-    bool m_alwaysAcceptCookies;
-    bool m_globalFlag;
-    bool m_isGeolocationPermissionSet;
-    bool m_geolocationPermission;
-    bool m_handlesAuthenticationChallenges;
-    bool m_isPrinting;
-    bool m_deferMainResourceDataLoad;
-    bool m_useDeferredFrameLoading;
-    bool m_shouldPaintBrokenImage;
-    bool m_shouldStayOnPageAfterHandlingBeforeUnload;
-    // FIXME 81697: This variable most likely will be removed once we have migrated the tests from fast/notifications to http/tests/notifications.
-    bool m_areLegacyWebNotificationPermissionRequestsIgnored;
-    bool m_customFullScreenBehavior;
-    bool m_hasPendingWebNotificationClick;
-
-    std::string m_authenticationUsername;
-    std::string m_authenticationPassword; 
-    std::string m_testPathOrURL;
-    std::string m_expectedPixelHash; // empty string if no hash
-    std::string m_titleTextDirection;
-
-    std::set<std::string> m_willSendRequestClearHeaders;
-    
-    // base64 encoded WAV audio data is stored here.
-    std::string m_encodedAudioData;
-
-    std::map<std::string, std::string> m_URLsToRedirect;
-    
-    static JSClassRef getJSClass();
-    static JSStaticValue* staticValues();
-    static JSStaticFunction* staticFunctions();
-};
-
-#endif // TestRunner_h
diff --git a/Tools/DumpRenderTree/WorkQueue.cpp b/Tools/DumpRenderTree/WorkQueue.cpp
deleted file mode 100644
index f38d81a..0000000
--- a/Tools/DumpRenderTree/WorkQueue.cpp
+++ /dev/null
@@ -1,108 +0,0 @@
-/*
- * Copyright (C) 2007, 2009 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "WorkQueue.h"
-
-#if PLATFORM(QT)
-#include "WorkQueueItemQt.h"
-#else
-#include "WorkQueueItem.h"
-#endif
-#include <wtf/Assertions.h>
-
-static const unsigned queueLength = 1024;
-
-static WorkQueueItem* theQueue[queueLength];
-static unsigned startOfQueue;
-static unsigned endOfQueue;
-
-WorkQueue* WorkQueue::shared()
-{
-    static WorkQueue* sharedInstance = new WorkQueue;
-    return sharedInstance;
-}
-
-WorkQueue::WorkQueue()
-    : m_frozen(false)
-{
-}
-
-void WorkQueue::queue(WorkQueueItem* item)
-{
-    ASSERT(endOfQueue < queueLength);
-    ASSERT(endOfQueue >= startOfQueue);
-
-    if (m_frozen) {
-        delete item;
-        return;
-    }
-
-    theQueue[endOfQueue++] = item;
-}
-
-WorkQueueItem* WorkQueue::dequeue()
-{
-    ASSERT(endOfQueue >= startOfQueue);
-
-    if (startOfQueue == endOfQueue)
-        return 0;
-
-    return theQueue[startOfQueue++];
-}
-
-unsigned WorkQueue::count()
-{
-    return endOfQueue - startOfQueue;
-}
-
-void WorkQueue::clear()
-{
-    for (unsigned i = startOfQueue; i < endOfQueue; ++i) {
-        delete theQueue[i];
-        theQueue[i] = 0;
-    }
-
-    startOfQueue = 0;
-    endOfQueue = 0;
-}
-
-bool WorkQueue::processWork()
-{
-    bool startedLoad = false;
-
-    while (!startedLoad && count()) {
-        WorkQueueItem* item = dequeue();
-        ASSERT(item);
-        startedLoad = item->invoke();
-        delete item;
-    }
-
-    // If we're done and we didn't start a load, then we're really done, so return true.
-    return !startedLoad;
-}
diff --git a/Tools/DumpRenderTree/WorkQueue.h b/Tools/DumpRenderTree/WorkQueue.h
deleted file mode 100644
index 649c6c1..0000000
--- a/Tools/DumpRenderTree/WorkQueue.h
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- * Copyright (C) 2007, 2009 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef WorkQueue_h
-#define WorkQueue_h
-
-class WorkQueueItem;
-
-class WorkQueue {
-public:
-    static WorkQueue* shared();
-
-    void queue(WorkQueueItem*);
-    WorkQueueItem* dequeue();
-    void clear();
-    unsigned count();
-
-    void setFrozen(bool b) { m_frozen = b; }
-
-    bool processWork(); // Returns true if all work is done, false if we started a load.
-
-private:
-    WorkQueue();
-
-    bool m_frozen;
-};
-
-#endif // !defined(WorkQueue_h)
diff --git a/Tools/DumpRenderTree/WorkQueueItem.h b/Tools/DumpRenderTree/WorkQueueItem.h
deleted file mode 100644
index a5823c1..0000000
--- a/Tools/DumpRenderTree/WorkQueueItem.h
+++ /dev/null
@@ -1,149 +0,0 @@
-/*
- * Copyright (C) 2007, 2009 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef WorkQueueItem_h
-#define WorkQueueItem_h
-
-#include <JavaScriptCore/JSRetainPtr.h>
-#include <JavaScriptCore/JSBase.h>
-
-class WorkQueueItem {
-public:
-    virtual ~WorkQueueItem() { }
-    virtual bool invoke() const = 0; // Returns true if this started a load.
-};
-
-class LoadItem : public WorkQueueItem {
-public:
-    LoadItem(const JSStringRef url, const JSStringRef target)
-        : m_url(url)
-        , m_target(target)
-    {
-    }
-
-private:
-    virtual bool invoke() const;
-
-    JSRetainPtr<JSStringRef> m_url;
-    JSRetainPtr<JSStringRef> m_target;
-};
-
-class LoadHTMLStringItem : public WorkQueueItem {
-public:
-    LoadHTMLStringItem(const JSStringRef content, const JSStringRef baseURL)
-        : m_content(content)
-        , m_baseURL(baseURL)
-    {
-    }
-
-    LoadHTMLStringItem(const JSStringRef content, const JSStringRef baseURL, const JSStringRef unreachableURL)
-        : m_content(content)
-        , m_baseURL(baseURL)
-        , m_unreachableURL(unreachableURL)
-    {
-    }
-
-private:
-    virtual bool invoke() const;
-
-    JSRetainPtr<JSStringRef> m_content;
-    JSRetainPtr<JSStringRef> m_baseURL;
-    JSRetainPtr<JSStringRef> m_unreachableURL;
-};
-
-class ReloadItem : public WorkQueueItem {
-private:
-    virtual bool invoke() const;
-};
-
-class ScriptItem : public WorkQueueItem {
-protected:
-    ScriptItem(const JSStringRef script)
-        : m_script(script)
-    {
-    }
-
-protected:
-    virtual bool invoke() const;
-
-private:
-    JSRetainPtr<JSStringRef> m_script;
-};
-
-class LoadingScriptItem : public ScriptItem {
-public:
-    LoadingScriptItem(const JSStringRef script)
-        : ScriptItem(script)
-    {
-    }
-
-private:
-    virtual bool invoke() const { return ScriptItem::invoke(); }
-};
-
-class NonLoadingScriptItem : public ScriptItem {
-public:
-    NonLoadingScriptItem(const JSStringRef script)
-        : ScriptItem(script)
-    {
-    }
-
-private:
-    virtual bool invoke() const { ScriptItem::invoke(); return false; }
-};
-
-class BackForwardItem : public WorkQueueItem {
-protected:
-    BackForwardItem(int howFar)
-        : m_howFar(howFar)
-    {
-    }
-
-private:
-    virtual bool invoke() const;
-
-    int m_howFar;
-};
-
-class BackItem : public BackForwardItem {
-public:
-    BackItem(unsigned howFar)
-        : BackForwardItem(-howFar)
-    {
-    }
-};
-
-class ForwardItem : public BackForwardItem {
-public:
-    ForwardItem(unsigned howFar)
-        : BackForwardItem(howFar)
-    {
-    }
-};
-
-#endif // !defined(WorkQueueItem_h)
diff --git a/Tools/DumpRenderTree/atk/AccessibilityCallbacks.h b/Tools/DumpRenderTree/atk/AccessibilityCallbacks.h
deleted file mode 100644
index 7225757..0000000
--- a/Tools/DumpRenderTree/atk/AccessibilityCallbacks.h
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright (C) 2011 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef AccessibilityCallbacks_h
-#define AccessibilityCallbacks_h
-
-void connectAccessibilityCallbacks();
-void disconnectAccessibilityCallbacks();
-
-#endif
diff --git a/Tools/DumpRenderTree/atk/AccessibilityCallbacksAtk.cpp b/Tools/DumpRenderTree/atk/AccessibilityCallbacksAtk.cpp
deleted file mode 100644
index 1ea4f4a..0000000
--- a/Tools/DumpRenderTree/atk/AccessibilityCallbacksAtk.cpp
+++ /dev/null
@@ -1,170 +0,0 @@
-/*
- * Copyright (C) 2011 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "AccessibilityCallbacks.h"
-
-#if HAVE(ACCESSIBILITY)
-
-#include "AccessibilityController.h"
-#include "DumpRenderTree.h"
-#include <atk/atk.h>
-#include <wtf/gobject/GOwnPtr.h>
-
-#if PLATFORM(GTK)
-#include "WebCoreSupport/DumpRenderTreeSupportGtk.h"
-#include <webkit/webkit.h>
-#endif
-
-#if PLATFORM(EFL)
-#include "DumpRenderTreeChrome.h"
-#include "WebCoreSupport/DumpRenderTreeSupportEfl.h"
-#endif
-
-static guint stateChangeListenerId = 0;
-static guint focusEventListenerId = 0;
-static guint activeDescendantChangedListenerId = 0;
-static guint childrenChangedListenerId = 0;
-static guint propertyChangedListenerId = 0;
-static guint visibleDataChangedListenerId = 0;
-
-static void printAccessibilityEvent(AtkObject* accessible, const gchar* signalName, const gchar* signalValue)
-{
-    // Do not handle state-change:defunct signals, as the AtkObject
-    // associated to them will not be valid at this point already.
-    if (!signalName || !g_strcmp0(signalName, "state-change:defunct"))
-        return;
-
-    if (!accessible || !ATK_IS_OBJECT(accessible))
-        return;
-
-    const gchar* objectName = atk_object_get_name(accessible);
-    AtkRole objectRole = atk_object_get_role(accessible);
-
-    // Try to always provide a name to be logged for the object.
-    if (!objectName || *objectName == '\0')
-        objectName = "(No name)";
-
-    GOwnPtr<gchar> signalNameAndValue(signalValue ? g_strdup_printf("%s = %s", signalName, signalValue) : g_strdup(signalName));
-    printf("Accessibility object emitted \"%s\" / Name: \"%s\" / Role: %d\n", signalNameAndValue.get(), objectName, objectRole);
-}
-
-static gboolean axObjectEventListener(GSignalInvocationHint *signalHint, guint numParamValues, const GValue *paramValues, gpointer data)
-{
-    // At least we should receive the instance emitting the signal.
-    if (numParamValues < 1)
-        return TRUE;
-
-    AtkObject* accessible = ATK_OBJECT(g_value_get_object(&paramValues[0]));
-    if (!accessible || !ATK_IS_OBJECT(accessible))
-        return TRUE;
-
-    GSignalQuery signalQuery;
-    GOwnPtr<gchar> signalName;
-    GOwnPtr<gchar> signalValue;
-
-    g_signal_query(signalHint->signal_id, &signalQuery);
-
-    if (!g_strcmp0(signalQuery.signal_name, "state-change")) {
-        signalName.set(g_strdup_printf("state-change:%s", g_value_get_string(&paramValues[1])));
-        signalValue.set(g_strdup_printf("%d", g_value_get_boolean(&paramValues[2])));
-    } else if (!g_strcmp0(signalQuery.signal_name, "focus-event")) {
-        signalName.set(g_strdup("focus-event"));
-        signalValue.set(g_strdup_printf("%d", g_value_get_boolean(&paramValues[1])));
-    } else if (!g_strcmp0(signalQuery.signal_name, "children-changed")) {
-        signalName.set(g_strdup("children-changed"));
-        signalValue.set(g_strdup_printf("%d", g_value_get_uint(&paramValues[1])));
-    } else if (!g_strcmp0(signalQuery.signal_name, "property-change"))
-        signalName.set(g_strdup_printf("property-change:%s", g_quark_to_string(signalHint->detail)));
-    else
-        signalName.set(g_strdup(signalQuery.signal_name));
-
-    printAccessibilityEvent(accessible, signalName.get(), signalValue.get());
-
-    return TRUE;
-}
-
-void connectAccessibilityCallbacks()
-{
-    // Ensure no callbacks are connected before.
-    disconnectAccessibilityCallbacks();
-
-    // Ensure that accessibility is initialized for the WebView by querying for
-    // the root accessible object, which will create the full hierarchy.
-#if PLATFORM(GTK)
-    DumpRenderTreeSupportGtk::getRootAccessibleElement(mainFrame);
-#elif PLATFORM(EFL)
-    DumpRenderTreeSupportEfl::rootAccessibleElement(browser->mainFrame());
-#endif
-
-    // Add global listeners for AtkObject's signals.
-    stateChangeListenerId = atk_add_global_event_listener(axObjectEventListener, "ATK:AtkObject:state-change");
-    focusEventListenerId = atk_add_global_event_listener(axObjectEventListener, "ATK:AtkObject:focus-event");
-    activeDescendantChangedListenerId = atk_add_global_event_listener(axObjectEventListener, "ATK:AtkObject:active-descendant-changed");
-    childrenChangedListenerId = atk_add_global_event_listener(axObjectEventListener, "ATK:AtkObject:children-changed");
-    propertyChangedListenerId = atk_add_global_event_listener(axObjectEventListener, "ATK:AtkObject:property-change");
-    visibleDataChangedListenerId = atk_add_global_event_listener(axObjectEventListener, "ATK:AtkObject:visible-data-changed");
-
-    // Ensure the Atk interface types are registered, otherwise
-    // the AtkDocument signal handlers below won't get registered.
-    GObject* dummyAxObject = G_OBJECT(g_object_new(ATK_TYPE_OBJECT, 0));
-    AtkObject* dummyNoOpAxObject = atk_no_op_object_new(dummyAxObject);
-    g_object_unref(G_OBJECT(dummyNoOpAxObject));
-    g_object_unref(dummyAxObject);
-}
-
-void disconnectAccessibilityCallbacks()
-{
-    // AtkObject signals.
-    if (stateChangeListenerId) {
-        atk_remove_global_event_listener(stateChangeListenerId);
-        stateChangeListenerId = 0;
-    }
-    if (focusEventListenerId) {
-        atk_remove_global_event_listener(focusEventListenerId);
-        focusEventListenerId = 0;
-    }
-    if (activeDescendantChangedListenerId) {
-        atk_remove_global_event_listener(activeDescendantChangedListenerId);
-        activeDescendantChangedListenerId = 0;
-    }
-    if (childrenChangedListenerId) {
-        atk_remove_global_event_listener(childrenChangedListenerId);
-        childrenChangedListenerId = 0;
-    }
-    if (propertyChangedListenerId) {
-        atk_remove_global_event_listener(propertyChangedListenerId);
-        propertyChangedListenerId = 0;
-    }
-    if (visibleDataChangedListenerId) {
-        atk_remove_global_event_listener(visibleDataChangedListenerId);
-        visibleDataChangedListenerId = 0;
-    }
-}
-
-#endif
diff --git a/Tools/DumpRenderTree/atk/AccessibilityControllerAtk.cpp b/Tools/DumpRenderTree/atk/AccessibilityControllerAtk.cpp
deleted file mode 100644
index faecfd0..0000000
--- a/Tools/DumpRenderTree/atk/AccessibilityControllerAtk.cpp
+++ /dev/null
@@ -1,116 +0,0 @@
-/*
- * Copyright (C) 2008, 2009, 2010 Apple Inc. All Rights Reserved.
- * Copyright (C) 2009 Jan Michael Alonzo
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "AccessibilityController.h"
-
-#if HAVE(ACCESSIBILITY)
-
-#include "AccessibilityCallbacks.h"
-#include "AccessibilityUIElement.h"
-#include "DumpRenderTree.h"
-
-#include <atk/atk.h>
-
-static bool loggingAccessibilityEvents = false;
-
-AccessibilityController::AccessibilityController()
-{
-}
-
-AccessibilityController::~AccessibilityController()
-{
-}
-
-AccessibilityUIElement AccessibilityController::elementAtPoint(int x, int y)
-{
-    // FIXME: implement
-    return 0;
-}
-
-
-void AccessibilityController::setLogFocusEvents(bool)
-{
-}
-
-void AccessibilityController::setLogScrollingStartEvents(bool)
-{
-}
-
-void AccessibilityController::setLogValueChangeEvents(bool)
-{
-}
-
-void AccessibilityController::setLogAccessibilityEvents(bool logAccessibilityEvents)
-{
-    if (logAccessibilityEvents == loggingAccessibilityEvents)
-        return;
-
-    if (!logAccessibilityEvents) {
-        disconnectAccessibilityCallbacks();
-        loggingAccessibilityEvents = false;
-        return;
-    }
-
-    connectAccessibilityCallbacks();
-    loggingAccessibilityEvents = true;
-}
-
-bool AccessibilityController::addNotificationListener(JSObjectRef)
-{
-    return false;
-}
-
-void AccessibilityController::removeNotificationListener()
-{
-}
-
-AtkObject* AccessibilityController::childElementById(AtkObject* parent, const char* id)
-{
-    if (!ATK_IS_OBJECT(parent))
-        return 0;
-
-    AtkAttributeSet* attributeSet = atk_object_get_attributes(parent);
-    for (GSList* attributes = attributeSet; attributes; attributes = attributes->next) {
-        AtkAttribute* attribute = static_cast<AtkAttribute*>(attributes->data);
-        if (!strcmp(attribute->name, "html-id")) {
-            if (!strcmp(attribute->value, id))
-                return parent;
-            break;
-        }
-    }
-
-    int childCount = atk_object_get_n_accessible_children(parent);
-    for (int i = 0; i < childCount; i++) {
-        AtkObject* result = childElementById(atk_object_ref_accessible_child(parent, i), id);
-        if (ATK_IS_OBJECT(result))
-            return result;
-    }
-
-    return 0;
-}
-
-#endif
diff --git a/Tools/DumpRenderTree/atk/AccessibilityUIElementAtk.cpp b/Tools/DumpRenderTree/atk/AccessibilityUIElementAtk.cpp
deleted file mode 100644
index 0015723..0000000
--- a/Tools/DumpRenderTree/atk/AccessibilityUIElementAtk.cpp
+++ /dev/null
@@ -1,1063 +0,0 @@
-/*
- * Copyright (C) 2008 Apple Inc. All Rights Reserved.
- * Copyright (C) 2009 Jan Michael Alonzo
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#include "config.h"
-#include "AccessibilityUIElement.h"
-
-#if HAVE(ACCESSIBILITY)
-
-#include <JavaScriptCore/JSStringRef.h>
-#include <atk/atk.h>
-#include <wtf/Assertions.h>
-#include <wtf/gobject/GOwnPtr.h>
-#include <wtf/gobject/GRefPtr.h>
-#include <wtf/text/CString.h>
-#include <wtf/text/WTFString.h>
-#include <wtf/unicode/CharacterNames.h>
-
-static String coreAttributeToAtkAttribute(JSStringRef attribute)
-{
-    size_t bufferSize = JSStringGetMaximumUTF8CStringSize(attribute);
-    GOwnPtr<gchar> buffer(static_cast<gchar*>(g_malloc(bufferSize)));
-    JSStringGetUTF8CString(attribute, buffer.get(), bufferSize);
-
-    String attributeString = String::fromUTF8(buffer.get());
-    if (attributeString == "AXPlaceholderValue")
-        return "placeholder-text";
-
-    return "";
-}
-
-static inline String roleToString(AtkRole role)
-{
-    switch (role) {
-    case ATK_ROLE_ALERT:
-        return "AXRole: AXAlert";
-    case ATK_ROLE_CANVAS:
-        return "AXRole: AXCanvas";
-    case ATK_ROLE_CHECK_BOX:
-        return "AXRole: AXCheckBox";
-    case ATK_ROLE_COLUMN_HEADER:
-        return "AXRole: AXColumnHeader";
-    case ATK_ROLE_COMBO_BOX:
-        return "AXRole: AXComboBox";
-    case ATK_ROLE_DOCUMENT_FRAME:
-        return "AXRole: AXWebArea";
-    case ATK_ROLE_ENTRY:
-        return "AXRole: AXTextField";
-    case ATK_ROLE_FOOTER:
-        return "AXRole: AXFooter";
-    case ATK_ROLE_FORM:
-        return "AXRole: AXForm";
-    case ATK_ROLE_GROUPING:
-        return "AXRole: AXGroup";
-    case ATK_ROLE_HEADING:
-        return "AXRole: AXHeading";
-    case ATK_ROLE_IMAGE:
-        return "AXRole: AXImage";
-    case ATK_ROLE_IMAGE_MAP:
-        return "AXRole: AXImageMap";
-    case ATK_ROLE_LABEL:
-        return "AXRole: AXLabel";
-    case ATK_ROLE_LINK:
-        return "AXRole: AXLink";
-    case ATK_ROLE_LIST:
-        return "AXRole: AXList";
-    case ATK_ROLE_LIST_BOX:
-        return "AXRole: AXListBox";
-    case ATK_ROLE_LIST_ITEM:
-        return "AXRole: AXListItem";
-    case ATK_ROLE_MENU:
-        return "AXRole: AXMenu";
-    case ATK_ROLE_MENU_BAR:
-        return "AXRole: AXMenuBar";
-    case ATK_ROLE_MENU_ITEM:
-        return "AXRole: AXMenuItem";
-    case ATK_ROLE_PAGE_TAB:
-        return "AXRole: AXTab";
-    case ATK_ROLE_PAGE_TAB_LIST:
-        return "AXRole: AXTabGroup";
-    case ATK_ROLE_PANEL:
-        return "AXRole: AXGroup";
-    case ATK_ROLE_PARAGRAPH:
-        return "AXRole: AXParagraph";
-    case ATK_ROLE_PASSWORD_TEXT:
-        return "AXRole: AXPasswordField";
-    case ATK_ROLE_PUSH_BUTTON:
-        return "AXRole: AXButton";
-    case ATK_ROLE_RADIO_BUTTON:
-        return "AXRole: AXRadioButton";
-    case ATK_ROLE_ROW_HEADER:
-        return "AXRole: AXRowHeader";
-    case ATK_ROLE_RULER:
-        return "AXRole: AXRuler";
-    case ATK_ROLE_SCROLL_BAR:
-        return "AXRole: AXScrollBar";
-    case ATK_ROLE_SCROLL_PANE:
-        return "AXRole: AXScrollArea";
-    case ATK_ROLE_SECTION:
-        return "AXRole: AXDiv";
-    case ATK_ROLE_SEPARATOR:
-        return "AXRole: AXHorizontalRule";
-    case ATK_ROLE_SLIDER:
-        return "AXRole: AXSlider";
-    case ATK_ROLE_SPIN_BUTTON:
-        return "AXRole: AXSpinButton";
-    case ATK_ROLE_TABLE:
-        return "AXRole: AXTable";
-    case ATK_ROLE_TABLE_CELL:
-        return "AXRole: AXCell";
-    case ATK_ROLE_TABLE_COLUMN_HEADER:
-        return "AXRole: AXColumnHeader";
-    case ATK_ROLE_TABLE_ROW:
-        return "AXRole: AXRow";
-    case ATK_ROLE_TABLE_ROW_HEADER:
-        return "AXRole: AXRowHeader";
-    case ATK_ROLE_TOGGLE_BUTTON:
-        return "AXRole: AXToggleButton";
-    case ATK_ROLE_TOOL_BAR:
-        return "AXRole: AXToolbar";
-    case ATK_ROLE_TOOL_TIP:
-        return "AXRole: AXUserInterfaceTooltip";
-    case ATK_ROLE_TREE:
-        return "AXRole: AXTree";
-    case ATK_ROLE_TREE_TABLE:
-        return "AXRole: AXTreeGrid";
-    case ATK_ROLE_TREE_ITEM:
-        return "AXRole: AXTreeItem";
-    case ATK_ROLE_WINDOW:
-        return "AXRole: AXWindow";
-    case ATK_ROLE_UNKNOWN:
-        return "AXRole: AXUnknown";
-    default:
-        // We want to distinguish ATK_ROLE_UNKNOWN from a known AtkRole which
-        // our DRT isn't properly handling.
-        return "AXRole: FIXME not identified";
-    }
-}
-
-static inline gchar* replaceCharactersForResults(gchar* str)
-{
-    String uString = String::fromUTF8(str);
-
-    // The object replacement character is passed along to ATs so we need to be
-    // able to test for their presence and do so without causing test failures.
-    uString.replace(objectReplacementCharacter, "<obj>");
-
-    // The presence of newline characters in accessible text of a single object
-    // is appropriate, but it makes test results (especially the accessible tree)
-    // harder to read.
-    uString.replace("\n", "<\\n>");
-
-    return g_strdup(uString.utf8().data());
-}
-
-static bool checkElementState(PlatformUIElement element, AtkStateType stateType)
-{
-    if (!ATK_IS_OBJECT(element))
-        return false;
-
-    GRefPtr<AtkStateSet> stateSet = adoptGRef(atk_object_ref_state_set(ATK_OBJECT(element)));
-    return atk_state_set_contains_state(stateSet.get(), stateType);
-}
-
-AccessibilityUIElement::AccessibilityUIElement(PlatformUIElement element)
-    : m_element(element)
-{
-    if (m_element)
-        g_object_ref(m_element);
-}
-
-AccessibilityUIElement::AccessibilityUIElement(const AccessibilityUIElement& other)
-    : m_element(other.m_element)
-{
-    if (m_element)
-        g_object_ref(m_element);
-}
-
-AccessibilityUIElement::~AccessibilityUIElement()
-{
-    if (m_element)
-        g_object_unref(m_element);
-}
-
-void AccessibilityUIElement::getLinkedUIElements(Vector<AccessibilityUIElement>& elements)
-{
-    // FIXME: implement
-}
-
-void AccessibilityUIElement::getDocumentLinks(Vector<AccessibilityUIElement>&)
-{
-    // FIXME: implement
-}
-
-void AccessibilityUIElement::getChildren(Vector<AccessibilityUIElement>& children)
-{
-    int count = childrenCount();
-    for (int i = 0; i < count; i++) {
-        AtkObject* child = atk_object_ref_accessible_child(ATK_OBJECT(m_element), i);
-        children.append(AccessibilityUIElement(child));
-    }
-}
-
-void AccessibilityUIElement::getChildrenWithRange(Vector<AccessibilityUIElement>& elementVector, unsigned start, unsigned end)
-{
-    for (unsigned i = start; i < end; i++) {
-        AtkObject* child = atk_object_ref_accessible_child(ATK_OBJECT(m_element), i);
-        elementVector.append(AccessibilityUIElement(child));
-    }
-}
-
-int AccessibilityUIElement::rowCount()
-{
-    if (!m_element)
-        return 0;
-
-    ASSERT(ATK_IS_TABLE(m_element));
-
-    return atk_table_get_n_rows(ATK_TABLE(m_element));
-}
-
-int AccessibilityUIElement::columnCount()
-{
-    if (!m_element)
-        return 0;
-
-    ASSERT(ATK_IS_TABLE(m_element));
-
-    return atk_table_get_n_columns(ATK_TABLE(m_element));
-}
-
-int AccessibilityUIElement::childrenCount()
-{
-    if (!m_element)
-        return 0;
-
-    ASSERT(ATK_IS_OBJECT(m_element));
-
-    return atk_object_get_n_accessible_children(ATK_OBJECT(m_element));
-}
-
-AccessibilityUIElement AccessibilityUIElement::elementAtPoint(int x, int y)
-{
-    if (!m_element)
-        return 0;
-
-    return AccessibilityUIElement(atk_component_ref_accessible_at_point(ATK_COMPONENT(m_element), x, y, ATK_XY_WINDOW));
-}
-
-AccessibilityUIElement AccessibilityUIElement::linkedUIElementAtIndex(unsigned index)
-{
-    // FIXME: implement
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::getChildAtIndex(unsigned index)
-{
-    Vector<AccessibilityUIElement> children;
-    getChildrenWithRange(children, index, index + 1);
-
-    if (children.size() == 1)
-        return children.at(0);
-
-    return 0;
-}
-
-unsigned AccessibilityUIElement::indexOfChild(AccessibilityUIElement* element)
-{ 
-    // FIXME: implement
-    return 0;
-}
-
-gchar* attributeSetToString(AtkAttributeSet* attributeSet)
-{
-    GString* str = g_string_new(0);
-    for (GSList* attributes = attributeSet; attributes; attributes = attributes->next) {
-        AtkAttribute* attribute = static_cast<AtkAttribute*>(attributes->data);
-        GOwnPtr<gchar> attributeData(g_strconcat(attribute->name, ":", attribute->value, NULL));
-        g_string_append(str, attributeData.get());
-        if (attributes->next)
-            g_string_append(str, ", ");
-    }
-
-    return g_string_free(str, FALSE);
-}
-
-JSStringRef AccessibilityUIElement::allAttributes()
-{
-    if (!m_element)
-        return JSStringCreateWithCharacters(0, 0);
-
-    ASSERT(ATK_IS_OBJECT(m_element));
-    GOwnPtr<gchar> attributeData(attributeSetToString(atk_object_get_attributes(ATK_OBJECT(m_element))));
-    return JSStringCreateWithUTF8CString(attributeData.get());
-}
-
-JSStringRef AccessibilityUIElement::attributesOfLinkedUIElements()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::attributesOfDocumentLinks()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-AccessibilityUIElement AccessibilityUIElement::titleUIElement()
-{
-    if (!m_element)
-        return 0;
-
-    AtkRelationSet* set = atk_object_ref_relation_set(ATK_OBJECT(m_element));
-    if (!set)
-        return 0;
-
-    AtkObject* target = 0;
-    int count = atk_relation_set_get_n_relations(set);
-    for (int i = 0; i < count; i++) {
-        AtkRelation* relation = atk_relation_set_get_relation(set, i);
-        if (atk_relation_get_relation_type(relation) == ATK_RELATION_LABELLED_BY) {
-            GPtrArray* targetList = atk_relation_get_target(relation);
-            if (targetList->len)
-                target = static_cast<AtkObject*>(g_ptr_array_index(targetList, 0));
-        }
-    }
-
-    g_object_unref(set);
-    return target ? AccessibilityUIElement(target) : 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::parentElement()
-{
-    if (!m_element)
-        return 0;
-
-    ASSERT(ATK_IS_OBJECT(m_element));
-
-    AtkObject* parent =  atk_object_get_parent(ATK_OBJECT(m_element));
-    return parent ? AccessibilityUIElement(parent) : 0;
-}
-
-JSStringRef AccessibilityUIElement::attributesOfChildren()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::parameterizedAttributeNames()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::role()
-{
-    AtkRole role = atk_object_get_role(ATK_OBJECT(m_element));
-    if (!role)
-        return JSStringCreateWithCharacters(0, 0);
-
-    String roleString = roleToString(role);
-    return JSStringCreateWithUTF8CString(roleString.utf8().data());
-}
-
-JSStringRef AccessibilityUIElement::subrole()
-{
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::roleDescription()
-{
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::title()
-{
-    const gchar* name = atk_object_get_name(ATK_OBJECT(m_element));
-    GOwnPtr<gchar> axTitle(g_strdup_printf("AXTitle: %s", name ? name : ""));
-
-    return JSStringCreateWithUTF8CString(axTitle.get());
-}
-
-JSStringRef AccessibilityUIElement::description()
-{
-    const gchar* description = atk_object_get_description(ATK_OBJECT(m_element));
-
-    if (!description)
-        return JSStringCreateWithCharacters(0, 0);
-
-    GOwnPtr<gchar> axDesc(g_strdup_printf("AXDescription: %s", description));
-
-    return JSStringCreateWithUTF8CString(axDesc.get());
-}
-
-JSStringRef AccessibilityUIElement::stringValue()
-{
-    if (!m_element || !ATK_IS_TEXT(m_element))
-        return JSStringCreateWithCharacters(0, 0);
-
-    gchar* text = atk_text_get_text(ATK_TEXT(m_element), 0, -1);
-    GOwnPtr<gchar> axValue(g_strdup_printf("AXValue: %s", replaceCharactersForResults(text)));
-    g_free(text);
-
-    return JSStringCreateWithUTF8CString(axValue.get());
-}
-
-JSStringRef AccessibilityUIElement::language()
-{
-    if (!m_element)
-        return JSStringCreateWithCharacters(0, 0);
-
-    // In ATK, the document language is exposed as the document's locale.
-    if (atk_object_get_role(ATK_OBJECT(m_element)) == ATK_ROLE_DOCUMENT_FRAME)
-        return JSStringCreateWithUTF8CString(g_strdup_printf("AXLanguage: %s", atk_document_get_locale(ATK_DOCUMENT(m_element))));
-
-    // For all other objects, the language is exposed as an AtkText attribute.
-    if (!ATK_IS_TEXT(m_element))
-        return JSStringCreateWithCharacters(0, 0);
-
-    for (GSList* textAttributes = atk_text_get_default_attributes(ATK_TEXT(m_element)); textAttributes; textAttributes = textAttributes->next) {
-        AtkAttribute* atkAttribute = static_cast<AtkAttribute*>(textAttributes->data);
-        if (!strcmp(atkAttribute->name, atk_text_attribute_get_name(ATK_TEXT_ATTR_LANGUAGE)))
-            return JSStringCreateWithUTF8CString(g_strdup_printf("AXLanguage: %s", atkAttribute->value));
-    }
-
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-double AccessibilityUIElement::x()
-{
-    int x, y;
-
-    atk_component_get_position(ATK_COMPONENT(m_element), &x, &y, ATK_XY_SCREEN);
-
-    return x;
-}
-
-double AccessibilityUIElement::y()
-{
-    int x, y;
-
-    atk_component_get_position(ATK_COMPONENT(m_element), &x, &y, ATK_XY_SCREEN);
-
-    return y;
-}
-
-double AccessibilityUIElement::width()
-{
-    int width, height;
-
-    atk_component_get_size(ATK_COMPONENT(m_element), &width, &height);
-
-    return width;
-}
-
-double AccessibilityUIElement::height()
-{
-    int width, height;
-
-    atk_component_get_size(ATK_COMPONENT(m_element), &width, &height);
-
-    return height;
-}
-
-double AccessibilityUIElement::clickPointX()
-{
-    // Note: This is not something we have in ATK.
-    return 0.f;
-}
-
-double AccessibilityUIElement::clickPointY()
-{
-    // Note: This is not something we have in ATK.
-    return 0.f;
-}
-
-JSStringRef AccessibilityUIElement::orientation() const
-{
-    if (!m_element || !ATK_IS_OBJECT(m_element))
-        return JSStringCreateWithCharacters(0, 0);
-
-    const char* axOrientation = 0;
-    if (checkElementState(m_element, ATK_STATE_HORIZONTAL))
-        axOrientation = "AXOrientation: AXHorizontalOrientation";
-    else if (checkElementState(m_element, ATK_STATE_VERTICAL))
-        axOrientation = "AXOrientation: AXVerticalOrientation";
-
-    if (!axOrientation)
-        return JSStringCreateWithCharacters(0, 0);
-
-    return JSStringCreateWithUTF8CString(axOrientation);
-}
-
-double AccessibilityUIElement::intValue() const
-{
-    GValue value = { 0, { { 0 } } };
-
-    if (!ATK_IS_VALUE(m_element))
-        return 0.0f;
-
-    atk_value_get_current_value(ATK_VALUE(m_element), &value);
-    if (!G_VALUE_HOLDS_FLOAT(&value))
-        return 0.0f;
-    return g_value_get_float(&value);
-}
-
-double AccessibilityUIElement::minValue()
-{
-    GValue value = { 0, { { 0 } } };
-
-    if (!ATK_IS_VALUE(m_element))
-        return 0.0f;
-
-    atk_value_get_minimum_value(ATK_VALUE(m_element), &value);
-    if (!G_VALUE_HOLDS_FLOAT(&value))
-        return 0.0f;
-    return g_value_get_float(&value);
-}
-
-double AccessibilityUIElement::maxValue()
-{
-    GValue value = { 0, { { 0 } } };
-
-    if (!ATK_IS_VALUE(m_element))
-        return 0.0f;
-
-    atk_value_get_maximum_value(ATK_VALUE(m_element), &value);
-    if (!G_VALUE_HOLDS_FLOAT(&value))
-        return 0.0f;
-    return g_value_get_float(&value);
-}
-
-JSStringRef AccessibilityUIElement::valueDescription()
-{
-    // FIXME: implement after it has been implemented in ATK.
-    // See: https://bugzilla.gnome.org/show_bug.cgi?id=684576
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-bool AccessibilityUIElement::isEnabled()
-{
-    return checkElementState(m_element, ATK_STATE_ENABLED);
-}
-
-int AccessibilityUIElement::insertionPointLineNumber()
-{
-    // FIXME: implement
-    return 0;
-}
-
-bool AccessibilityUIElement::isPressActionSupported()
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isIncrementActionSupported()
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isDecrementActionSupported()
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isRequired() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isFocused() const
-{
-    if (!ATK_IS_OBJECT(m_element))
-        return false;
-
-    GRefPtr<AtkStateSet> stateSet = adoptGRef(atk_object_ref_state_set(ATK_OBJECT(m_element)));
-    gboolean isFocused = atk_state_set_contains_state(stateSet.get(), ATK_STATE_FOCUSED);
-
-    return isFocused;
-}
-
-bool AccessibilityUIElement::isSelected() const
-{
-    return checkElementState(m_element, ATK_STATE_SELECTED);
-}
-
-int AccessibilityUIElement::hierarchicalLevel() const
-{
-    // FIXME: implement
-    return 0;
-}
-
-bool AccessibilityUIElement::ariaIsGrabbed() const
-{
-    return false;
-}
-
-JSStringRef AccessibilityUIElement::ariaDropEffects() const
-{   
-    return 0; 
-}
-
-bool AccessibilityUIElement::isExpanded() const
-{
-    if (!ATK_IS_OBJECT(m_element))
-        return false;
-
-    GRefPtr<AtkStateSet> stateSet = adoptGRef(atk_object_ref_state_set(ATK_OBJECT(m_element)));
-    gboolean isExpanded = atk_state_set_contains_state(stateSet.get(), ATK_STATE_EXPANDED);
-
-    return isExpanded;
-}
-
-bool AccessibilityUIElement::isChecked() const
-{
-    if (!ATK_IS_OBJECT(m_element))
-        return false;
-
-    GRefPtr<AtkStateSet> stateSet = adoptGRef(atk_object_ref_state_set(ATK_OBJECT(m_element)));
-    gboolean isChecked = atk_state_set_contains_state(stateSet.get(), ATK_STATE_CHECKED);
-
-    return isChecked;
-}
-
-JSStringRef AccessibilityUIElement::attributesOfColumnHeaders()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::attributesOfRowHeaders()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::attributesOfColumns()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::attributesOfRows()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::attributesOfVisibleCells()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::attributesOfHeader()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-int AccessibilityUIElement::indexInTable()
-{
-    // FIXME: implement
-    return 0;
-}
-
-static JSStringRef indexRangeInTable(PlatformUIElement element, bool isRowRange)
-{
-    GOwnPtr<gchar> rangeString(g_strdup("{0, 0}"));
-
-    if (!element)
-        return JSStringCreateWithUTF8CString(rangeString.get());
-
-    ASSERT(ATK_IS_OBJECT(element));
-
-    AtkObject* axTable = atk_object_get_parent(ATK_OBJECT(element));
-    if (!axTable || !ATK_IS_TABLE(axTable))
-        return JSStringCreateWithUTF8CString(rangeString.get());
-
-    // Look for the cell in the table.
-    gint indexInParent = atk_object_get_index_in_parent(ATK_OBJECT(element));
-    if (indexInParent == -1)
-        return JSStringCreateWithUTF8CString(rangeString.get());
-
-    int row = -1;
-    int column = -1;
-    row = atk_table_get_row_at_index(ATK_TABLE(axTable), indexInParent);
-    column = atk_table_get_column_at_index(ATK_TABLE(axTable), indexInParent);
-
-    // Get the actual values, if row and columns are valid values.
-    if (row != -1 && column != -1) {
-        int base = 0;
-        int length = 0;
-        if (isRowRange) {
-            base = row;
-            length = atk_table_get_row_extent_at(ATK_TABLE(axTable), row, column);
-        } else {
-            base = column;
-            length = atk_table_get_column_extent_at(ATK_TABLE(axTable), row, column);
-        }
-        rangeString.set(g_strdup_printf("{%d, %d}", base, length));
-    }
-
-    return JSStringCreateWithUTF8CString(rangeString.get());
-}
-
-JSStringRef AccessibilityUIElement::rowIndexRange()
-{
-    // Range in table for rows.
-    return indexRangeInTable(m_element, true);
-}
-
-JSStringRef AccessibilityUIElement::columnIndexRange()
-{
-    // Range in table for columns.
-    return indexRangeInTable(m_element, false);
-}
-
-int AccessibilityUIElement::lineForIndex(int)
-{
-    // FIXME: implement
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::boundsForRange(unsigned location, unsigned length)
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::stringForRange(unsigned, unsigned) 
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-} 
-
-JSStringRef AccessibilityUIElement::attributedStringForRange(unsigned, unsigned)
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-bool AccessibilityUIElement::attributedStringRangeIsMisspelled(unsigned location, unsigned length)
-{
-    // FIXME: implement
-    return false;
-}
-
-AccessibilityUIElement AccessibilityUIElement::uiElementForSearchPredicate(AccessibilityUIElement* startElement, bool isDirectionNext, JSStringRef searchKey, JSStringRef searchText)
-{
-    // FIXME: implement
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::cellForColumnAndRow(unsigned column, unsigned row)
-{
-    if (!m_element)
-        return 0;
-
-    ASSERT(ATK_IS_TABLE(m_element));
-
-    // Adopt the AtkObject representing the cell because
-    // at_table_ref_at() transfers full ownership.
-    GRefPtr<AtkObject> foundCell = adoptGRef(atk_table_ref_at(ATK_TABLE(m_element), row, column));
-    return foundCell ? AccessibilityUIElement(foundCell.get()) : 0;
-}
-
-JSStringRef AccessibilityUIElement::selectedTextRange()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-void AccessibilityUIElement::setSelectedTextRange(unsigned location, unsigned length)
-{
-    // FIXME: implement
-}
-
-JSStringRef AccessibilityUIElement::stringAttributeValue(JSStringRef attribute)
-{
-    if (!m_element)
-        return JSStringCreateWithCharacters(0, 0);
-
-    String atkAttributeName = coreAttributeToAtkAttribute(attribute);
-    if (atkAttributeName.isEmpty())
-        return JSStringCreateWithCharacters(0, 0);
-
-    for (GSList* atkAttributes = atk_object_get_attributes(ATK_OBJECT(m_element)); atkAttributes; atkAttributes = atkAttributes->next) {
-        AtkAttribute* atkAttribute = static_cast<AtkAttribute*>(atkAttributes->data);
-        if (!strcmp(atkAttribute->name, atkAttributeName.utf8().data()))
-            return JSStringCreateWithUTF8CString(atkAttribute->value);
-    }
-
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-double AccessibilityUIElement::numberAttributeValue(JSStringRef attribute)
-{
-    // FIXME: implement
-    return 0.0f;
-}
-
-bool AccessibilityUIElement::boolAttributeValue(JSStringRef attribute)
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isAttributeSettable(JSStringRef attribute)
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isAttributeSupported(JSStringRef attribute)
-{
-    return false;
-}
-
-static void alterCurrentValue(PlatformUIElement element, int factor)
-{
-    if (!element)
-        return;
-
-    ASSERT(ATK_IS_VALUE(element));
-
-    GValue currentValue = G_VALUE_INIT;
-    atk_value_get_current_value(ATK_VALUE(element), &currentValue);
-
-    GValue increment = G_VALUE_INIT;
-    atk_value_get_minimum_increment(ATK_VALUE(element), &increment);
-
-    GValue newValue = G_VALUE_INIT;
-    g_value_init(&newValue, G_TYPE_FLOAT);
-
-    g_value_set_float(&newValue, g_value_get_float(&currentValue) + factor * g_value_get_float(&increment));
-    atk_value_set_current_value(ATK_VALUE(element), &newValue);
-
-    g_value_unset(&newValue);
-    g_value_unset(&increment);
-    g_value_unset(&currentValue);
-}
-
-void AccessibilityUIElement::increment()
-{
-    alterCurrentValue(m_element, 1);
-}
-
-void AccessibilityUIElement::decrement()
-{
-    alterCurrentValue(m_element, -1);
-}
-
-void AccessibilityUIElement::press()
-{
-    if (!m_element)
-        return;
-
-    ASSERT(ATK_IS_OBJECT(m_element));
-
-    if (!ATK_IS_ACTION(m_element))
-        return;
-
-    // Only one action per object is supported so far.
-    atk_action_do_action(ATK_ACTION(m_element), 0);
-}
-
-void AccessibilityUIElement::showMenu()
-{
-    // FIXME: implement
-}
-
-AccessibilityUIElement AccessibilityUIElement::disclosedRowAtIndex(unsigned index)
-{
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::ariaOwnsElementAtIndex(unsigned index)
-{
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::ariaFlowToElementAtIndex(unsigned index)
-{
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::selectedRowAtIndex(unsigned index)
-{
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::rowAtIndex(unsigned index)
-{
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::disclosedByRow()
-{
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::accessibilityValue() const
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::documentEncoding()
-{
-    AtkRole role = atk_object_get_role(ATK_OBJECT(m_element));
-    if (role != ATK_ROLE_DOCUMENT_FRAME)
-        return JSStringCreateWithCharacters(0, 0);
-
-    return JSStringCreateWithUTF8CString(atk_document_get_attribute_value(ATK_DOCUMENT(m_element), "Encoding"));
-}
-
-JSStringRef AccessibilityUIElement::documentURI()
-{
-    AtkRole role = atk_object_get_role(ATK_OBJECT(m_element));
-    if (role != ATK_ROLE_DOCUMENT_FRAME)
-        return JSStringCreateWithCharacters(0, 0);
-
-    return JSStringCreateWithUTF8CString(atk_document_get_attribute_value(ATK_DOCUMENT(m_element), "URI"));
-}
-
-JSStringRef AccessibilityUIElement::url()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-bool AccessibilityUIElement::addNotificationListener(JSObjectRef functionCallback)
-{
-    // FIXME: implement
-    return false;
-}
-
-void AccessibilityUIElement::removeNotificationListener()
-{
-    // FIXME: implement
-}
-
-bool AccessibilityUIElement::isFocusable() const
-{
-    if (!ATK_IS_OBJECT(m_element))
-        return false;
-
-    GRefPtr<AtkStateSet> stateSet = adoptGRef(atk_object_ref_state_set(ATK_OBJECT(m_element)));
-    gboolean isFocusable = atk_state_set_contains_state(stateSet.get(), ATK_STATE_FOCUSABLE);
-
-    return isFocusable;
-}
-
-bool AccessibilityUIElement::isSelectable() const
-{
-    return checkElementState(m_element, ATK_STATE_SELECTABLE);
-}
-
-bool AccessibilityUIElement::isMultiSelectable() const
-{
-    return checkElementState(m_element, ATK_STATE_MULTISELECTABLE);
-}
-
-bool AccessibilityUIElement::isSelectedOptionActive() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isVisible() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isOffScreen() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isCollapsed() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isIgnored() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::hasPopup() const
-{
-    // FIXME: implement
-    return false;
-}
-
-void AccessibilityUIElement::takeFocus()
-{
-    // FIXME: implement
-}
-
-void AccessibilityUIElement::takeSelection()
-{
-    // FIXME: implement
-}
-
-void AccessibilityUIElement::addSelection()
-{
-    // FIXME: implement
-}
-
-void AccessibilityUIElement::removeSelection()
-{
-    // FIXME: implement
-}
-
-void AccessibilityUIElement::scrollToMakeVisible()
-{
-    // FIXME: implement
-}
-
-void AccessibilityUIElement::scrollToMakeVisibleWithSubFocus(int x, int y, int width, int height)
-{
-    // FIXME: implement
-}
-
-void AccessibilityUIElement::scrollToGlobalPoint(int x, int y)
-{
-    // FIXME: implement
-}
-
-#endif
diff --git a/Tools/DumpRenderTree/blackberry/AccessibilityControllerBlackBerry.cpp b/Tools/DumpRenderTree/blackberry/AccessibilityControllerBlackBerry.cpp
deleted file mode 100644
index cdac14f..0000000
--- a/Tools/DumpRenderTree/blackberry/AccessibilityControllerBlackBerry.cpp
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * Copyright (C) 2010, 2012 Research In Motion Limited. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
- */
-
-#include "config.h"
-#include "AccessibilityController.h"
-
-#include "AccessibilityUIElement.h"
-#include "NotImplemented.h"
-
-AccessibilityController::AccessibilityController()
-{
-}
-
-AccessibilityController::~AccessibilityController()
-{
-}
-
-AccessibilityUIElement AccessibilityController::focusedElement()
-{
-    notImplemented();
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityController::rootElement()
-{
-    notImplemented();
-    return 0;
-}
-
-void AccessibilityController::setLogFocusEvents(bool)
-{
-    notImplemented();
-}
-
-void AccessibilityController::setLogScrollingStartEvents(bool)
-{
-    notImplemented();
-}
-
-void AccessibilityController::setLogValueChangeEvents(bool)
-{
-    notImplemented();
-}
-
-AccessibilityUIElement AccessibilityController::elementAtPoint(int, int)
-{
-    notImplemented();
-    return 0;
-}
-
-void AccessibilityController::setLogAccessibilityEvents(bool)
-{
-    notImplemented();
-}
-
-bool AccessibilityController::addNotificationListener(JSObjectRef)
-{
-    return false;
-}
-
-void AccessibilityController::removeNotificationListener()
-{
-}
-
diff --git a/Tools/DumpRenderTree/blackberry/AccessibilityUIElementBlackBerry.cpp b/Tools/DumpRenderTree/blackberry/AccessibilityUIElementBlackBerry.cpp
deleted file mode 100644
index bd34782..0000000
--- a/Tools/DumpRenderTree/blackberry/AccessibilityUIElementBlackBerry.cpp
+++ /dev/null
@@ -1,651 +0,0 @@
-/*
- * Copyright (C) 2010, 2012 Research In Motion Limited. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
- */
-
-#include "config.h"
-#include "AccessibilityUIElement.h"
-
-#include "NotImplemented.h"
-
-AccessibilityUIElement::AccessibilityUIElement(PlatformUIElement element)
-    : m_element(element)
-{
-}
-
-AccessibilityUIElement::AccessibilityUIElement(const AccessibilityUIElement& other)
-    : m_element(other.m_element)
-{
-}
-
-AccessibilityUIElement::~AccessibilityUIElement()
-{
-}
-
-void AccessibilityUIElement::getLinkedUIElements(Vector<AccessibilityUIElement>&)
-{
-    notImplemented();
-}
-
-void AccessibilityUIElement::getDocumentLinks(Vector<AccessibilityUIElement>&)
-{
-    notImplemented();
-}
-
-void AccessibilityUIElement::getChildren(Vector<AccessibilityUIElement>&)
-{
-    notImplemented();
-}
-
-void AccessibilityUIElement::getChildrenWithRange(Vector<AccessibilityUIElement>&, unsigned, unsigned)
-{
-    notImplemented();
-}
-
-int AccessibilityUIElement::childrenCount()
-{
-    notImplemented();
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::elementAtPoint(int, int)
-{
-    notImplemented();
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::getChildAtIndex(unsigned)
-{
-    notImplemented();
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::linkedUIElementAtIndex(unsigned)
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::allAttributes()
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::attributesOfLinkedUIElements()
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::attributesOfDocumentLinks()
-{
-    notImplemented();
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::titleUIElement()
-{
-    notImplemented();
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::parentElement()
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::attributesOfChildren()
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::parameterizedAttributeNames()
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::role()
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::subrole()
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::roleDescription()
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::title()
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::description()
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::stringValue()
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::language()
-{
-    notImplemented();
-    return 0;
-}
-
-double AccessibilityUIElement::x()
-{
-    notImplemented();
-    return 0;
-}
-
-double AccessibilityUIElement::y()
-{
-    notImplemented();
-    return 0;
-}
-
-double AccessibilityUIElement::width()
-{
-    notImplemented();
-    return 0;
-}
-
-double AccessibilityUIElement::height()
-{
-    notImplemented();
-    return 0;
-}
-
-double AccessibilityUIElement::clickPointX()
-{
-    notImplemented();
-    return 0;
-}
-
-double AccessibilityUIElement::clickPointY()
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::orientation() const
-{
-    notImplemented();
-    return 0;
-}
-
-double AccessibilityUIElement::minValue()
-{
-    notImplemented();
-    return 0;
-}
-
-double AccessibilityUIElement::maxValue()
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::valueDescription()
-{
-    notImplemented();
-    return 0;
-}
-
-bool AccessibilityUIElement::isEnabled()
-{
-    notImplemented();
-    return 0;
-}
-
-int AccessibilityUIElement::insertionPointLineNumber()
-{
-    notImplemented();
-    return 0;
-}
-
-bool AccessibilityUIElement::isPressActionSupported()
-{
-    notImplemented();
-    return 0;
-}
-
-bool AccessibilityUIElement::isIncrementActionSupported()
-{
-    notImplemented();
-    return 0;
-}
-
-bool AccessibilityUIElement::isDecrementActionSupported()
-{
-    notImplemented();
-    return 0;
-}
-
-bool AccessibilityUIElement::isRequired() const
-{
-    notImplemented();
-    return 0;
-}
-
-bool AccessibilityUIElement::isSelected() const
-{
-    notImplemented();
-    return 0;
-}
-
-int AccessibilityUIElement::hierarchicalLevel() const
-{
-    notImplemented();
-    return 0;
-}
-
-bool AccessibilityUIElement::ariaIsGrabbed() const
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::ariaDropEffects() const
-{
-    notImplemented();
-    return 0;
-}
-
-bool AccessibilityUIElement::isExpanded() const
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::attributesOfColumnHeaders()
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::attributesOfRowHeaders()
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::attributesOfColumns()
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::attributesOfRows()
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::attributesOfVisibleCells()
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::attributesOfHeader()
-{
-    notImplemented();
-    return 0;
-}
-
-int AccessibilityUIElement::indexInTable()
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::rowIndexRange()
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::columnIndexRange()
-{
-    notImplemented();
-    return 0;
-}
-
-int AccessibilityUIElement::lineForIndex(int)
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::boundsForRange(unsigned, unsigned)
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::stringForRange(unsigned, unsigned)
-{
-    notImplemented();
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::uiElementForSearchPredicate(AccessibilityUIElement*, bool, JSStringRef, JSStringRef)
-{
-    notImplemented();
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::cellForColumnAndRow(unsigned, unsigned)
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::selectedTextRange()
-{
-    notImplemented();
-    return 0;
-}
-
-void AccessibilityUIElement::setSelectedTextRange(unsigned, unsigned)
-{
-    notImplemented();
-}
-
-bool AccessibilityUIElement::isAttributeSettable(JSStringRef)
-{
-    notImplemented();
-    return 0;
-}
-
-bool AccessibilityUIElement::isAttributeSupported(JSStringRef)
-{
-    notImplemented();
-    return 0;
-}
-
-void AccessibilityUIElement::increment()
-{
-    notImplemented();
-}
-
-void AccessibilityUIElement::decrement()
-{
-    notImplemented();
-}
-
-void AccessibilityUIElement::showMenu()
-{
-    notImplemented();
-}
-
-AccessibilityUIElement AccessibilityUIElement::disclosedRowAtIndex(unsigned)
-{
-    notImplemented();
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::ariaOwnsElementAtIndex(unsigned)
-{
-    notImplemented();
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::ariaFlowToElementAtIndex(unsigned)
-{
-    notImplemented();
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::selectedRowAtIndex(unsigned)
-{
-    notImplemented();
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::rowAtIndex(unsigned)
-{
-    notImplemented();
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::disclosedByRow()
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::accessibilityValue() const
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::documentEncoding()
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::documentURI()
-{
-    notImplemented();
-    return 0;
-}
-
-unsigned AccessibilityUIElement::indexOfChild(AccessibilityUIElement*)
-{
-    notImplemented();
-    return 0;
-}
-
-double AccessibilityUIElement::numberAttributeValue(JSStringRef)
-{
-    notImplemented();
-    return 0;
-}
-
-bool AccessibilityUIElement::boolAttributeValue(JSStringRef)
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::stringAttributeValue(JSStringRef)
-{
-    notImplemented();
-    return 0;
-}
-
-double AccessibilityUIElement::intValue() const
-{
-    notImplemented();
-    return 0;
-}
-
-bool AccessibilityUIElement::isChecked() const
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::url()
-{
-    notImplemented();
-    return 0;
-}
-
-
-bool AccessibilityUIElement::addNotificationListener(JSObjectRef)
-{
-    notImplemented();
-    return 0;
-}
-
-bool AccessibilityUIElement::isSelectable() const
-{
-    notImplemented();
-    return false;
-}
-
-bool AccessibilityUIElement::isMultiSelectable() const
-{
-    notImplemented();
-    return false;
-}
-
-bool AccessibilityUIElement::isSelectedOptionActive() const
-{
-    notImplemented();
-    return false;
-}
-
-bool AccessibilityUIElement::isVisible() const
-{
-    notImplemented();
-    return false;
-}
-
-bool AccessibilityUIElement::isOffScreen() const
-{
-    notImplemented();
-    return false;
-}
-
-bool AccessibilityUIElement::isCollapsed() const
-{
-    notImplemented();
-    return false;
-}
-
-bool AccessibilityUIElement::hasPopup() const
-{
-    notImplemented();
-    return false;
-}
-
-void AccessibilityUIElement::scrollToMakeVisible()
-{
-    notImplemented();
-}
-
-void AccessibilityUIElement::scrollToMakeVisibleWithSubFocus(int x, int y, int width, int height)
-{
-    notImplemented();
-}
-
-void AccessibilityUIElement::scrollToGlobalPoint(int x, int y)
-{
-    notImplemented();
-}
-
-void AccessibilityUIElement::takeFocus()
-{
-    notImplemented();
-}
-
-void AccessibilityUIElement::takeSelection()
-{
-    notImplemented();
-}
-
-void AccessibilityUIElement::addSelection()
-{
-    notImplemented();
-}
-
-void AccessibilityUIElement::removeSelection()
-{
-    notImplemented();
-}
-
-int AccessibilityUIElement::columnCount()
-{
-    notImplemented();
-    return 0;
-}
-
-void AccessibilityUIElement::removeNotificationListener()
-{
-    notImplemented();
-}
-
-void AccessibilityUIElement::press()
-{
-    notImplemented();
-}
-
-int AccessibilityUIElement::rowCount()
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::helpText() const
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::attributedStringForRange(unsigned, unsigned)
-{
-    notImplemented();
-    return 0;
-}
-
-bool AccessibilityUIElement::attributedStringRangeIsMisspelled(unsigned, unsigned)
-{
-    notImplemented();
-    return 0;
-}
-
-bool AccessibilityUIElement::isIgnored() const
-{
-    notImplemented();
-    return false;
-}
-
-bool AccessibilityUIElement::isFocused() const
-{
-    notImplemented();
-    return false;
-}
-
-bool AccessibilityUIElement::isFocusable() const
-{
-    notImplemented();
-    return false;
-}
-
diff --git a/Tools/DumpRenderTree/blackberry/DumpRenderTree.cpp b/Tools/DumpRenderTree/blackberry/DumpRenderTree.cpp
deleted file mode 100644
index 956444b..0000000
--- a/Tools/DumpRenderTree/blackberry/DumpRenderTree.cpp
+++ /dev/null
@@ -1,965 +0,0 @@
-/*
- * Copyright (C) 2009, 2010, 2011, 2012 Research In Motion Limited. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
- */
-
-#include "config.h"
-#include "DumpRenderTree.h"
-
-#include "APICast.h"
-#include "AccessibilityController.h"
-#include "BackForwardController.h"
-#include "BackForwardListImpl.h"
-#include "Credential.h"
-#include "DatabaseTracker.h"
-#include "DocumentLoader.h"
-#include "DumpRenderTree/GCController.h"
-#include "DumpRenderTreeSupport.h"
-#include "EditingBehaviorTypes.h"
-#include "EditorClientBlackBerry.h"
-#include "EditorInsertAction.h"
-#include "Element.h"
-#include "EventSender.h"
-#include "Frame.h"
-#include "FrameLoaderTypes.h"
-#include "FrameTree.h"
-#include "FrameView.h"
-#include "HTTPParsers.h"
-#include "HistoryItem.h"
-#include "HitTestResult.h"
-#include "IntSize.h"
-#include "JSDOMBinding.h"
-#include "MouseEvent.h"
-#include "Node.h"
-#include "NotImplemented.h"
-#include "Page.h"
-#include "PageGroup.h"
-#include "PixelDumpSupport.h"
-#include "PixelDumpSupportBlackBerry.h"
-#include "Range.h"
-#include "RenderTreeAsText.h"
-#include "ScriptController.h"
-#include "SecurityOrigin.h"
-#include "Settings.h"
-#include "TestRunner.h"
-#include "TextAffinity.h"
-#include "Timer.h"
-#include "WebCoreTestSupport.h"
-#include "WebPage.h"
-#include "WebPageClient.h"
-#include "WorkQueue.h"
-#include "WorkQueueItem.h"
-#include <BlackBerryPlatformLayoutTest.h>
-#include <BlackBerryPlatformPrimitives.h>
-#include <WebSettings.h>
-#include <stdio.h>
-#include <sys/stat.h>
-#include <unistd.h>
-#include <wtf/NonCopyingSort.h>
-#include <wtf/OwnArrayPtr.h>
-#include <wtf/Vector.h>
-
-#define SDCARD_PATH "/developer"
-
-volatile bool testDone;
-
-RefPtr<TestRunner> gTestRunner;
-
-WebCore::Frame* mainFrame = 0;
-WebCore::Frame* topLoadingFrame = 0;
-bool waitForPolicy = false;
-bool runFromCommandLine = false;
-
-// FIXME: Assuming LayoutTests has been copied to /developer/LayoutTests/
-static const char* const kSDCLayoutTestsURI = "file:///developer/LayoutTests/";
-static const char* httpTestSyntax = "http/tests/";
-static const char* localTestSyntax = "local/";
-static const char* httpPrefixURL = "http://127.0.0.1:8000/";
-
-using namespace std;
-
-static String drtAffinityDescription(WebCore::EAffinity affinity)
-{
-    if (affinity == WebCore::UPSTREAM)
-        return String("NSSelectionAffinityUpstream");
-    if (affinity == WebCore::DOWNSTREAM)
-        return String("NSSelectionAffinityDownstream");
-    return "";
-}
-
-static String drtDumpPath(WebCore::Node* node)
-{
-    WebCore::Node* parent = node->parentNode();
-    String str = String::format("%s", node->nodeName().utf8().data());
-    if (parent) {
-        str.append(" > ");
-        str.append(drtDumpPath(parent));
-    }
-    return str;
-}
-
-static String drtRangeDescription(WebCore::Range* range)
-{
-    if (!range)
-        return "(null)";
-    return String::format("range from %d of %s to %d of %s", range->startOffset(), drtDumpPath(range->startContainer()).utf8().data(), range->endOffset(), drtDumpPath(range->endContainer()).utf8().data());
-}
-
-static String drtFrameDescription(WebCore::Frame* frame)
-{
-    String name = frame->tree()->uniqueName().string();
-    if (frame == mainFrame) {
-        if (!name.isNull() && name.length())
-            return String::format("main frame \"%s\"", name.utf8().data());
-        return "main frame";
-    }
-    if (!name.isNull())
-        return String::format("frame \"%s\"", name.utf8().data());
-    return "frame (anonymous)";
-}
-
-static WTF::String drtCredentialDescription(WebCore::Credential&)
-{
-    // TODO: Implementation needed.
-    return "<unknown>";
-}
-
-static bool shouldLogFrameLoadDelegates(const String& url)
-{
-    return url.contains("loading/");
-}
-
-static bool shouldDumpAsText(const String& url)
-{
-    return url.contains("dumpAsText/");
-}
-
-namespace BlackBerry {
-namespace WebKit {
-
-DumpRenderTree* DumpRenderTree::s_currentInstance = 0;
-
-static void createFile(const String& fileName)
-{
-    FILE* fd = fopen(fileName.utf8().data(), "wb");
-    if (fd)
-        fclose(fd);
-}
-
-static bool isFullUrl(const String& url)
-{
-    static Vector<String> *prefixes = 0;
-    if (!prefixes)  {
-        prefixes = new Vector<String>();
-        prefixes->append("http://");
-        prefixes->append("file://");
-    }
-    for (unsigned i = 0; i < prefixes->size(); ++i) {
-        if (url.startsWith(prefixes->at(i), false))
-            return true;
-    }
-    return false;
-}
-
-DumpRenderTree::DumpRenderTree(BlackBerry::WebKit::WebPage* page)
-    : m_gcController(0)
-    , m_accessibilityController(0)
-    , m_page(page)
-    , m_enablePixelTests(getenv("pixelTests"))
-    , m_waitToDumpWatchdogTimer(this, &DumpRenderTree::waitToDumpWatchdogTimerFired)
-    , m_workTimer(this, &DumpRenderTree::processWork)
-    , m_acceptsEditing(true)
-    , m_policyDelegateEnabled(false)
-{
-    const char* workerNumber = getenv("WORKER_NUMBER") ? getenv("WORKER_NUMBER") : "0";
-    String sdcardPath = SDCARD_PATH;
-    m_resultsDir = sdcardPath + "/results/";
-    m_doneFile = sdcardPath + "/done" + workerNumber;
-    m_currentTestFile = sdcardPath + "/current" + workerNumber + ".drt";
-    m_page->resetVirtualViewportOnCommitted(false);
-    m_page->setVirtualViewportSize(Platform::IntSize(800, 600));
-    s_currentInstance = this;
-}
-
-DumpRenderTree::~DumpRenderTree()
-{
-    delete m_gcController;
-    delete m_accessibilityController;
-}
-
-void DumpRenderTree::runTest(const String& url, const String& imageHash)
-{
-    mainFrame->loader()->stopForUserCancel();
-    resetToConsistentStateBeforeTesting(url, imageHash);
-    if (shouldLogFrameLoadDelegates(url))
-        gTestRunner->setDumpFrameLoadCallbacks(true);
-    if (!runFromCommandLine) {
-        createFile(m_resultsDir + *m_currentTest + ".dump.crash");
-
-        String stdoutFile = m_resultsDir + *m_currentTest + ".dump";
-        String stderrFile = m_resultsDir + *m_currentTest + ".stderr";
-
-        // FIXME: we should preserve the original stdout and stderr here but aren't doing
-        // that yet due to issues with dup, etc.
-        freopen(stdoutFile.utf8().data(), "wb", stdout);
-        freopen(stderrFile.utf8().data(), "wb", stderr);
-    }
-    FILE* current = fopen(m_currentTestFile.utf8().data(), "w");
-    if (current) {
-        fwrite(m_currentTest->utf8().data(), 1, m_currentTest->utf8().length(), current);
-        fclose(current);
-    }
-    m_page->load(url, BlackBerry::Platform::String::emptyString(), false);
-}
-
-void DumpRenderTree::doneDrt()
-{
-    fclose(stdout);
-    fclose(stderr);
-    unlink(getPPSPath().c_str());
-
-    // Notify the external world that we're done.
-    createFile(m_doneFile);
-    (m_page->client())->notifyRunLayoutTestsFinished();
-}
-
-void DumpRenderTree::runCurrentTest()
-{
-    String imageHash = "";
-    int posSplitter = m_currentTest->find('?');
-    if (posSplitter > 1 && (unsigned)posSplitter < m_currentTest->length() - 1) {
-        imageHash = m_currentTest->substring(posSplitter + 1);
-        m_currentTest->truncate(posSplitter);
-    }
-    if (isHTTPTest(m_currentTest->utf8().data())) {
-        m_currentHttpTest = m_currentTest->utf8().data();
-        m_currentHttpTest.remove(0, strlen(httpTestSyntax));
-        runTest(httpPrefixURL + m_currentHttpTest, imageHash);
-    } else if (isFullUrl(*m_currentTest))
-        runTest(*m_currentTest, imageHash);
-    else
-        runTest(kSDCLayoutTestsURI + *m_currentTest, imageHash);
-}
-
-void DumpRenderTree::runRemainingTests()
-{
-    if (runFromCommandLine) {
-        doneDrt();
-        return;
-    }
-
-    // FIXME: fflush should not be necessary but is temporarily required due to a bug in stdio output.
-    fflush(stdout);
-    fflush(stderr);
-
-    if (m_currentTest >= m_tests.end() - 1) {
-        m_tests.clear();
-        if (m_bufferedTests.size() > 0) {
-            m_tests.append(m_bufferedTests);
-            m_bufferedTests.clear();
-            m_currentTest = m_tests.begin();
-            runCurrentTest();
-        }
-        return;
-    }
-
-    m_currentTest++;
-    runCurrentTest();
-}
-
-void DumpRenderTree::resetToConsistentStateBeforeTesting(const String& url, const String& imageHash)
-{
-    gTestRunner = TestRunner::create(url.utf8().data(), imageHash.utf8().data());
-
-    if (shouldDumpAsText(url)) {
-        gTestRunner->setDumpAsText(true);
-        gTestRunner->setGeneratePixelResults(false);
-    }
-    gTestRunner->setIconDatabaseEnabled(false);
-
-    DumpRenderTreeSupport::resetGeolocationMock(m_page);
-
-    topLoadingFrame = 0;
-    m_loadFinished = false;
-    m_policyDelegateEnabled = false;
-    waitForPolicy = false;
-    testDone = false;
-    WorkQueue::shared()->clear();
-    WorkQueue::shared()->setFrozen(false);
-
-    WebSettings* settings = m_page->settings();
-    // Apply new settings to current page, see more in the destructor of WebSettingsTransaction.
-    WebSettingsTransaction webSettingTransaction(settings);
-
-    settings->setTextReflowMode(WebSettings::TextReflowDisabled);
-    settings->setJavaScriptEnabled(true);
-    settings->setLoadsImagesAutomatically(true);
-    settings->setJavaScriptOpenWindowsAutomatically(true);
-    settings->setZoomToFitOnLoad(false);
-    settings->setDefaultFontSize(16);
-    settings->setDefaultFixedFontSize(13);
-    settings->setMinimumFontSize(1);
-    settings->setSerifFontFamily("Times");
-    settings->setFixedFontFamily("Courier New");
-    settings->setSansSerifFontFamily("Arial");
-    settings->setStandardFontFamily("Times");
-    settings->setXSSAuditorEnabled(false);
-    settings->setMaximumPagesInCache(0);
-    settings->setPluginsEnabled(true);
-
-    BlackBerry::WebKit::DumpRenderTree::currentInstance()->page()->clearBackForwardList(false);
-
-    setAcceptsEditing(true);
-    DumpRenderTreeSupport::setLinksIncludedInFocusChain(true);
-
-    m_page->setVirtualViewportSize(Platform::IntSize(800, 600));
-    m_page->resetVirtualViewportOnCommitted(false);
-    m_page->setUserScalable(true);
-    m_page->setJavaScriptCanAccessClipboard(true);
-
-    if (WebCore::Page* page = DumpRenderTreeSupport::corePage(m_page)) {
-        page->setTabKeyCyclesThroughElements(true);
-
-        // FIXME: Remove this once BlackBerry uses resetInternalsObject: https://bugs.webkit.org/show_bug.cgi?id=86899.
-        page->settings()->setEditingBehaviorType(WebCore::EditingUnixBehavior);
-
-        page->settings()->setDOMPasteAllowed(true);
-        page->settings()->setValidationMessageTimerMagnification(-1);
-        page->settings()->setInteractiveFormValidationEnabled(true);
-        page->settings()->setAllowFileAccessFromFileURLs(true);
-        page->settings()->setAllowUniversalAccessFromFileURLs(true);
-        page->settings()->setAuthorAndUserStylesEnabled(true);
-        page->settings()->setUsePreHTML5ParserQuirks(false);
-        // FIXME: Other ports also clear history/backForwardList allong with visited links.
-        page->group().removeVisitedLinks();
-        if (mainFrame = page->mainFrame()) {
-            mainFrame->tree()->clearName();
-            mainFrame->loader()->setOpener(0);
-            // [WebKit bug #86899] Reset JS state settings.
-            JSGlobalContextRef jsContext = toGlobalRef(mainFrame->script()->globalObject(WebCore::mainThreadNormalWorld())->globalExec());
-            WebCoreTestSupport::resetInternalsObject(jsContext);
-        }
-    }
-
-    // For now we manually garbage collect between each test to make sure the device won't run out of memory due to lazy collection.
-    DumpRenderTreeSupport::garbageCollectorCollect();
-}
-
-void DumpRenderTree::runTests()
-{
-    m_gcController = new GCController();
-    m_accessibilityController = new AccessibilityController();
-    if (!ensurePPS()) {
-        fprintf(stderr, "Failed to open PPS file '%s', error=%d\n", getPPSPath().c_str(), errno);
-        (m_page->client())->notifyRunLayoutTestsFinished();
-        return;
-    }
-
-    mainFrame = DumpRenderTreeSupport::corePage(m_page)->mainFrame();
-
-    if (const char* testFile = getenv("drtTestFile")) {
-        runFromCommandLine = true;
-        addTest(testFile);
-    } else {
-        // Get Test file name from PPS: /pps/services/drt/input
-        // Example: test_file::fast/js/arguments.html
-        waitForTest();
-    }
-}
-
-void DumpRenderTree::addTest(const char* testFile)
-{
-    String test(testFile);
-    if (test == "#DONE")
-        doneDrt();
-    else if (!test.isEmpty()) {
-        if (m_tests.isEmpty()) {
-            // No test is being run, initialize iterator and start test
-            m_tests.append(test);
-            m_currentTest = m_tests.begin();
-            runCurrentTest();
-        } else
-            m_bufferedTests.append(test);
-    }
-}
-
-String DumpRenderTree::dumpFramesAsText(WebCore::Frame* frame)
-{
-    String s;
-    WebCore::Element* documentElement = frame->document()->documentElement();
-    if (!documentElement)
-        return s.utf8().data();
-
-    if (frame->tree()->parent())
-        s = String::format("\n--------\nFrame: '%s'\n--------\n", frame->tree()->uniqueName().string().utf8().data());
-
-    s = s + documentElement->innerText() + "\n";
-
-    if (gTestRunner->dumpChildFramesAsText()) {
-        WebCore::FrameTree* tree = frame->tree();
-        for (WebCore::Frame* child = tree->firstChild(); child; child = child->tree()->nextSibling())
-            s = s + dumpFramesAsText(child);
-    }
-    return s;
-}
-
-static void dumpToFile(const String& data)
-{
-    fwrite(data.utf8().data(), 1, data.utf8().length(), stdout);
-}
-
-bool DumpRenderTree::isHTTPTest(const String& test)
-{
-    if (test.length() < strlen(httpTestSyntax))
-        return false;
-    String testLower = test.lower();
-    int lenHttpTestSyntax = strlen(httpTestSyntax);
-    return testLower.substring(0, lenHttpTestSyntax) == httpTestSyntax
-        && testLower.substring(lenHttpTestSyntax, strlen(localTestSyntax)) != localTestSyntax;
-}
-
-void DumpRenderTree::invalidateAnyPreviousWaitToDumpWatchdog()
-{
-    m_waitToDumpWatchdogTimer.stop();
-    waitForPolicy = false;
-}
-
-String DumpRenderTree::renderTreeDump() const
-{
-    if (mainFrame) {
-        if (mainFrame->view() && mainFrame->view()->layoutPending())
-            mainFrame->view()->layout();
-
-        return externalRepresentation(mainFrame);
-    }
-    return "";
-}
-
-static bool historyItemCompare(const RefPtr<WebCore::HistoryItem>& a, const RefPtr<WebCore::HistoryItem>& b)
-{
-    return codePointCompare(a->urlString(), b->urlString()) < 0;
-}
-
-static String dumpHistoryItem(PassRefPtr<WebCore::HistoryItem> item, int indent, bool current)
-{
-    String result;
-
-    int start = 0;
-    if (current) {
-        result = result + "curr->";
-        start = 6;
-    }
-    for (int i = start; i < indent; i++)
-        result = result + " ";
-
-    String url = item->urlString();
-    if (url.contains("file://")) {
-        static String layoutTestsString("/LayoutTests/");
-        static String fileTestString("(file test):");
-
-        String res = url.substring(url.find(layoutTestsString) + layoutTestsString.length());
-        if (res.isEmpty())
-            return result;
-
-        result = result + fileTestString;
-        result = result + res;
-    } else
-        result = result + url;
-
-    String target = item->target();
-    if (!target.isEmpty())
-        result = result + " (in frame \"" + target + "\")";
-
-    if (item->isTargetItem())
-        result = result + "  **nav target**";
-    result = result + "\n";
-
-    WebCore::HistoryItemVector children = item->children();
-    // Must sort to eliminate arbitrary result ordering which defeats reproducible testing.
-    nonCopyingSort(children.begin(), children.end(), historyItemCompare);
-    unsigned resultSize = children.size();
-    for (unsigned i = 0; i < resultSize; ++i)
-        result = result + dumpHistoryItem(children[i], indent + 4, false);
-
-    return result;
-}
-
-static String dumpBackForwardListForWebView()
-{
-    String result = "\n============== Back Forward List ==============\n";
-    // FORMAT:
-    // "        (file test):fast/loader/resources/click-fragment-link.html  **nav target**"
-    // "curr->  (file test):fast/loader/resources/click-fragment-link.html#testfragment  **nav target**"
-    WebCore::BackForwardListImpl* bfList = static_cast<WebCore::BackForwardListImpl*>(mainFrame->page()->backForward()->client());
-    int maxItems = bfList->capacity();
-    WebCore::HistoryItemVector entries;
-    bfList->backListWithLimit(maxItems, entries);
-    unsigned resultSize = entries.size();
-    for (unsigned i = 0; i < resultSize; ++i)
-        result = result + dumpHistoryItem(entries[i], 8, false);
-
-    result = result + dumpHistoryItem(bfList->currentItem(), 8, true);
-
-    bfList->forwardListWithLimit(maxItems, entries);
-    resultSize = entries.size();
-    for (unsigned i = 0; i < resultSize; ++i)
-        result = result + dumpHistoryItem(entries[i], 8, false);
-
-    result = result +  "===============================================\n";
-
-    return result;
-}
-
-void DumpRenderTree::dump()
-{
-    if (testDone)
-        return;
-
-    invalidateAnyPreviousWaitToDumpWatchdog();
-
-    String dumpFile = m_resultsDir + *m_currentTest + ".dump";
-
-    String resultMimeType = "text/plain";
-    String responseMimeType = mainFrame->loader()->documentLoader()->responseMIMEType();
-
-    bool dumpAsText = gTestRunner->dumpAsText() || responseMimeType == "text/plain";
-    String data = dumpAsText ? dumpFramesAsText(mainFrame) : renderTreeDump();
-
-    if (gTestRunner->dumpBackForwardList())
-        data = data + dumpBackForwardListForWebView();
-
-    String result = "Content-Type: " + resultMimeType + "\n" + data;
-
-    dumpToFile(result);
-
-    if (!runFromCommandLine) {
-        // There are two scenarios for dumping pixels:
-        // 1. When the test case explicitly asks for it by calling dumpAsText(true) with that extra true passed as a parameter value, from JavaScript
-        bool explicitPixelResults = gTestRunner->dumpAsText() && gTestRunner->generatePixelResults();
-        // 2. When the test case implicitly allows it by not calling dumpAsText() at all (with no parameters).
-        bool implicitPixelResults = !gTestRunner->dumpAsText();
-
-        // But only if m_enablePixelTests is set, to say that the user wants to run pixel tests at all.
-        bool generatePixelResults = m_enablePixelTests && (explicitPixelResults || implicitPixelResults);
-        if (generatePixelResults) {
-            // signal end of text block
-            fputs("#EOF\n", stdout);
-            dumpWebViewAsPixelsAndCompareWithExpected(gTestRunner->expectedPixelHash());
-        }
-
-        String crashFile = dumpFile + ".crash";
-        unlink(crashFile.utf8().data());
-
-        String doneFile =  m_resultsDir + *m_currentTest + ".done";
-        createFile(doneFile);
-    }
-    testDone = true;
-    runRemainingTests();
-}
-
-void DumpRenderTree::setWaitToDumpWatchdog(double interval)
-{
-    invalidateAnyPreviousWaitToDumpWatchdog();
-    m_waitToDumpWatchdogTimer.startOneShot(interval);
-}
-
-void DumpRenderTree::waitToDumpWatchdogTimerFired(WebCore::Timer<DumpRenderTree>*)
-{
-    gTestRunner->waitToDumpWatchdogTimerFired();
-}
-
-void DumpRenderTree::processWork(WebCore::Timer<DumpRenderTree>*)
-{
-    if (topLoadingFrame)
-        return;
-
-    if (WorkQueue::shared()->processWork() && !gTestRunner->waitToDump())
-        dump();
-}
-
-void DumpRenderTree::locationChangeForFrame(WebCore::Frame* frame)
-{
-    if (frame != topLoadingFrame)
-        return;
-
-    topLoadingFrame = 0;
-    WorkQueue::shared()->setFrozen(true); // first complete load freezes the queue
-    if (gTestRunner->waitToDump())
-        return;
-
-    if (WorkQueue::shared()->count())
-        m_workTimer.startOneShot(0);
-    else
-        dump();
-}
-
-// FrameLoadClient delegates.
-void DumpRenderTree::didStartProvisionalLoadForFrame(WebCore::Frame* frame)
-{
-    if (!testDone && gTestRunner->dumpFrameLoadCallbacks())
-        printf("%s - didStartProvisionalLoadForFrame\n", drtFrameDescription(frame).utf8().data());
-
-    if (!testDone && gTestRunner->dumpUserGestureInFrameLoadCallbacks())
-        printf("Frame with user gesture \"%s\" - in didStartProvisionalLoadForFrame\n", WebCore::ScriptController::processingUserGesture() ? "true" : "false");
-
-    if (!topLoadingFrame && !testDone)
-        topLoadingFrame = frame;
-
-    if (!testDone && gTestRunner->stopProvisionalFrameLoads()) {
-        printf("%s - stopping load in didStartProvisionalLoadForFrame callback\n", drtFrameDescription(frame).utf8().data());
-        frame->loader()->stopForUserCancel();
-    }
-}
-
-void DumpRenderTree::didCommitLoadForFrame(WebCore::Frame* frame)
-{
-    if (!testDone && gTestRunner->dumpFrameLoadCallbacks())
-        printf("%s - didCommitLoadForFrame\n", drtFrameDescription(frame).utf8().data());
-
-    gTestRunner->setWindowIsKey(true);
-}
-
-void DumpRenderTree::didFailProvisionalLoadForFrame(WebCore::Frame* frame)
-{
-    if (!testDone && gTestRunner->dumpFrameLoadCallbacks())
-        printf("%s - didFailProvisionalLoadWithError\n", drtFrameDescription(frame).utf8().data());
-
-    locationChangeForFrame(frame);
-}
-
-void DumpRenderTree::didFailLoadForFrame(WebCore::Frame* frame)
-{
-    if (!testDone && gTestRunner->dumpFrameLoadCallbacks())
-        printf("%s - didFailLoadWithError\n", drtFrameDescription(frame).utf8().data());
-
-    locationChangeForFrame(frame);
-}
-
-void DumpRenderTree::didFinishLoadForFrame(WebCore::Frame* frame)
-{
-    if (!testDone && gTestRunner->dumpFrameLoadCallbacks())
-        printf("%s - didFinishLoadForFrame\n", drtFrameDescription(frame).utf8().data());
-
-    if (frame == topLoadingFrame) {
-        m_loadFinished = true;
-        locationChangeForFrame(frame);
-    }
-}
-
-void DumpRenderTree::didFinishDocumentLoadForFrame(WebCore::Frame* frame)
-{
-    if (!testDone) {
-        if (gTestRunner->dumpFrameLoadCallbacks())
-            printf("%s - didFinishDocumentLoadForFrame\n", drtFrameDescription(frame).utf8().data());
-        else {
-            unsigned pendingFrameUnloadEvents = frame->document()->domWindow()->pendingUnloadEventListeners();
-            if (pendingFrameUnloadEvents)
-                printf("%s - has %u onunload handler(s)\n", drtFrameDescription(frame).utf8().data(), pendingFrameUnloadEvents);
-        }
-    }
-}
-
-void DumpRenderTree::didClearWindowObjectInWorld(WebCore::DOMWrapperWorld*, JSGlobalContextRef context, JSObjectRef windowObject)
-{
-    JSValueRef exception = 0;
-
-    gTestRunner->makeWindowObject(context, windowObject, &exception);
-    ASSERT(!exception);
-
-    m_gcController->makeWindowObject(context, windowObject, &exception);
-    ASSERT(!exception);
-
-    m_accessibilityController->makeWindowObject(context, windowObject, &exception);
-    ASSERT(!exception);
-
-    JSStringRef eventSenderStr = JSStringCreateWithUTF8CString("eventSender");
-    JSValueRef eventSender = makeEventSender(context);
-    JSObjectSetProperty(context, windowObject, eventSenderStr, eventSender, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, 0);
-    JSStringRelease(eventSenderStr);
-    WebCoreTestSupport::injectInternalsObject(context);
-}
-
-void DumpRenderTree::didReceiveTitleForFrame(const String& title, WebCore::Frame* frame)
-{
-    if (!testDone && gTestRunner->dumpFrameLoadCallbacks())
-        printf("%s - didReceiveTitle: %s\n", drtFrameDescription(frame).utf8().data(), title.utf8().data());
-
-    if (gTestRunner->dumpTitleChanges())
-        printf("TITLE CHANGED: %s\n", title.utf8().data());
-}
-
-// ChromeClient delegates.
-void DumpRenderTree::addMessageToConsole(const String& message, unsigned lineNumber, const String& sourceID)
-{
-    printf("CONSOLE MESSAGE: ");
-    if (lineNumber)
-        printf("line %d: ", lineNumber);
-    String newMessage = message;
-    int pos = message.find("file://");
-    if (pos >= 0) {
-        newMessage = message.substring(0, pos);
-        String remaining = message.substring(pos);
-        String fileName;
-        int indexFile = remaining.reverseFind('/') + 1;
-        if (indexFile > 0 && unsigned(indexFile) < remaining.length())
-            fileName = remaining.substring(indexFile);
-        else
-            fileName = "file:";
-        newMessage.append(fileName);
-    }
-    printf("%s\n", newMessage.utf8().data());
-}
-
-void DumpRenderTree::runJavaScriptAlert(const String& message)
-{
-    if (!testDone)
-        printf("ALERT: %s\n", message.utf8().data());
-}
-
-bool DumpRenderTree::runJavaScriptConfirm(const String& message)
-{
-    if (!testDone)
-        printf("CONFIRM: %s\n", message.utf8().data());
-    return true;
-}
-
-String DumpRenderTree::runJavaScriptPrompt(const String& message, const String& defaultValue)
-{
-    if (!testDone)
-        printf("PROMPT: %s, default text: %s\n", message.utf8().data(), defaultValue.utf8().data());
-    return defaultValue;
-}
-
-bool DumpRenderTree::runBeforeUnloadConfirmPanel(const String& message)
-{
-    if (!testDone)
-        printf("CONFIRM NAVIGATION: %s\n", message.utf8().data());
-    return true;
-}
-
-void DumpRenderTree::setStatusText(const String& status)
-{
-    if (gTestRunner->dumpStatusCallbacks())
-        printf("UI DELEGATE STATUS CALLBACK: setStatusText:%s\n", status.utf8().data());
-}
-
-void DumpRenderTree::exceededDatabaseQuota(WebCore::SecurityOrigin* origin, const String& name)
-{
-    if (!testDone && gTestRunner->dumpDatabaseCallbacks())
-        printf("UI DELEGATE DATABASE CALLBACK: exceededDatabaseQuotaForSecurityOrigin:{%s, %s, %i} database:%s\n", origin->protocol().utf8().data(), origin->host().utf8().data(), origin->port(), name.utf8().data());
-
-    WebCore::DatabaseTracker::tracker().setQuota(mainFrame->document()->securityOrigin(), 5 * 1024 * 1024);
-}
-
-bool DumpRenderTree::allowsOpeningWindow()
-{
-    return gTestRunner->canOpenWindows();
-}
-
-void DumpRenderTree::windowCreated(BlackBerry::WebKit::WebPage* page)
-{
-    page->settings()->setJavaScriptOpenWindowsAutomatically(true);
-}
-
-// EditorClient delegates.
-void DumpRenderTree::didBeginEditing()
-{
-    if (!testDone && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: webViewDidBeginEditing:%s\n", "WebViewDidBeginEditingNotification");
-}
-
-void DumpRenderTree::didEndEditing()
-{
-    if (!testDone && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: webViewDidEndEditing:%s\n", "WebViewDidEndEditingNotification");
-}
-
-void DumpRenderTree::didChange()
-{
-    if (!testDone && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: webViewDidChange:%s\n", "WebViewDidChangeNotification");
-}
-
-void DumpRenderTree::didChangeSelection()
-{
-    if (!testDone && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: webViewDidChangeSelection:%s\n", "WebViewDidChangeSelectionNotification");
-}
-
-bool DumpRenderTree::shouldBeginEditingInDOMRange(WebCore::Range* range)
-{
-    if (!testDone && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: shouldBeginEditingInDOMRange:%s\n", drtRangeDescription(range).utf8().data());
-    return m_acceptsEditing;
-}
-
-bool DumpRenderTree::shouldEndEditingInDOMRange(WebCore::Range* range)
-{
-    if (!testDone && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: shouldEndEditingInDOMRange:%s\n", drtRangeDescription(range).utf8().data());
-    return m_acceptsEditing;
-}
-
-bool DumpRenderTree::shouldDeleteDOMRange(WebCore::Range* range)
-{
-    if (!testDone && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: shouldDeleteDOMRange:%s\n", drtRangeDescription(range).utf8().data());
-    return m_acceptsEditing;
-}
-
-bool DumpRenderTree::shouldChangeSelectedDOMRangeToDOMRangeAffinityStillSelecting(WebCore::Range* fromRange, WebCore::Range* toRange, int affinity, bool stillSelecting)
-{
-    if (!testDone && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: shouldChangeSelectedDOMRange:%s toDOMRange:%s affinity:%s stillSelecting:%s\n", drtRangeDescription(fromRange).utf8().data(), drtRangeDescription(toRange).utf8().data(), drtAffinityDescription(static_cast<WebCore::EAffinity>(affinity)).utf8().data(), stillSelecting ? "TRUE" : "FALSE");
-    return m_acceptsEditing;
-}
-
-static const char* insertActionString(WebCore::EditorInsertAction action)
-{
-    switch (action) {
-    case WebCore::EditorInsertActionTyped:
-        return "WebViewInsertActionTyped";
-    case WebCore::EditorInsertActionPasted:
-        return "WebViewInsertActionPasted";
-    case WebCore::EditorInsertActionDropped:
-        return "WebViewInsertActionDropped";
-    }
-    ASSERT_NOT_REACHED();
-    return "WebViewInsertActionTyped";
-}
-
-bool DumpRenderTree::shouldInsertNode(WebCore::Node* node, WebCore::Range* range, int action)
-{
-    if (!testDone && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: shouldInsertNode:%s replacingDOMRange:%s givenAction:%s\n", drtDumpPath(node).utf8().data(), drtRangeDescription(range).utf8().data(), insertActionString((WebCore::EditorInsertAction)action));
-    return m_acceptsEditing;
-}
-
-bool DumpRenderTree::shouldInsertText(const String& text, WebCore::Range* range, int action)
-{
-    if (!testDone && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: shouldInsertText:%s replacingDOMRange:%s givenAction:%s\n", text.utf8().data(), drtRangeDescription(range).utf8().data(), insertActionString((WebCore::EditorInsertAction)action));
-    return m_acceptsEditing;
-}
-
-void DumpRenderTree::didDecidePolicyForNavigationAction(const WebCore::NavigationAction& action, const WebCore::ResourceRequest& request, WebCore::Frame* frame)
-{
-    if (testDone || !m_policyDelegateEnabled)
-        return;
-
-    const char* typeDescription;
-    switch (action.type()) {
-    case WebCore::NavigationTypeLinkClicked:
-        typeDescription = "link clicked";
-        break;
-    case WebCore::NavigationTypeFormSubmitted:
-        typeDescription = "form submitted";
-        break;
-    case WebCore::NavigationTypeBackForward:
-        typeDescription = "back/forward";
-        break;
-    case WebCore::NavigationTypeReload:
-        typeDescription = "reload";
-        break;
-    case WebCore::NavigationTypeFormResubmitted:
-        typeDescription = "form resubmitted";
-        break;
-    case WebCore::NavigationTypeOther:
-        typeDescription = "other";
-        break;
-    default:
-        typeDescription = "illegal value";
-    }
-
-    bool shouldWaitForResponse = !request.url().string().startsWith("mailto:");
-    printf("Policy delegate: attempt to load %s with navigation type '%s'", request.url().string().utf8().data(), typeDescription);
-    // Originating part, borrowed from Chromium.
-    RefPtr<WebCore::Node> node;
-    for (const WebCore::Event* event = action.event(); event; event = event->underlyingEvent()) {
-        if (event->isMouseEvent()) {
-            const WebCore::MouseEvent* mouseEvent = static_cast<const WebCore::MouseEvent*>(event);
-            node = frame->eventHandler()->hitTestResultAtPoint(mouseEvent->absoluteLocation(), false).innerNonSharedNode();
-            break;
-        }
-    }
-    if (node.get())
-        printf(" originating from %s\n", drtDumpPath(node.get()).utf8().data());
-    else
-        printf("\n");
-
-    if (waitForPolicy && !shouldWaitForResponse)
-        gTestRunner->notifyDone();
-}
-
-void DumpRenderTree::didDecidePolicyForResponse(const WebCore::ResourceResponse& response)
-{
-    if (!testDone && m_policyDelegateEnabled) {
-        if (WebCore::contentDispositionType(response.httpHeaderField("Content-Disposition")) == WebCore::ContentDispositionAttachment)
-            printf("Policy delegate: resource is an attachment, suggested file name '%s'\n", response.suggestedFilename().utf8().data());
-        if (waitForPolicy)
-            gTestRunner->notifyDone();
-    }
-}
-
-void DumpRenderTree::didDispatchWillPerformClientRedirect()
-{
-    if (!testDone && gTestRunner->dumpUserGestureInFrameLoadCallbacks())
-        printf("Frame with user gesture \"%s\" - in willPerformClientRedirect\n", WebCore::ScriptController::processingUserGesture() ? "true" : "false");
-}
-
-void DumpRenderTree::didHandleOnloadEventsForFrame(WebCore::Frame* frame)
-{
-    if (!testDone && gTestRunner->dumpFrameLoadCallbacks())
-        printf("%s - didHandleOnloadEventsForFrame\n", drtFrameDescription(frame).utf8().data());
-}
-
-void DumpRenderTree::didReceiveResponseForFrame(WebCore::Frame* frame, const WebCore::ResourceResponse& response)
-{
-    if (!testDone && gTestRunner->dumpResourceResponseMIMETypes())
-        printf("%s has MIME type %s\n", response.url().lastPathComponent().utf8().data(), response.mimeType().utf8().data());
-}
-
-bool DumpRenderTree::didReceiveAuthenticationChallenge(WebCore::Credential& credential)
-{
-    if (!gTestRunner->handlesAuthenticationChallenges()) {
-        credential = WebCore::Credential();
-        printf("%s - didReceiveAuthenticationChallenge - Simulating cancelled authentication\n", drtCredentialDescription(credential).utf8().data());
-        return false;
-    }
-    const char* user = gTestRunner->authenticationUsername().c_str();
-    const char* password = gTestRunner->authenticationPassword().c_str();
-    credential = WebCore::Credential(user, password, WebCore::CredentialPersistenceForSession);
-    printf("%s - didReceiveAuthenticationChallenge - Responding with %s:%s\n", drtCredentialDescription(credential).utf8().data(), user, password);
-    return true;
-}
-
-void DumpRenderTree::setCustomPolicyDelegate(bool setDelegate, bool permissive)
-{
-    m_policyDelegateEnabled = setDelegate;
-    UNUSED_PARAM(permissive);
-}
-}
-}
-
-// Static dump() function required by cross-platform DRT code.
-void dump()
-{
-    BlackBerry::WebKit::DumpRenderTree* dumper = BlackBerry::WebKit::DumpRenderTree::currentInstance();
-    if (!dumper)
-        return;
-
-    dumper->dump();
-}
diff --git a/Tools/DumpRenderTree/blackberry/DumpRenderTreeBlackBerry.h b/Tools/DumpRenderTree/blackberry/DumpRenderTreeBlackBerry.h
deleted file mode 100644
index 267c4dc..0000000
--- a/Tools/DumpRenderTree/blackberry/DumpRenderTreeBlackBerry.h
+++ /dev/null
@@ -1,154 +0,0 @@
-/*
- * Copyright (C) 2009, 2010, 2011, 2012 Research In Motion Limited. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
- */
-
-#ifndef DumpRenderTreeBlackBerry_h
-#define DumpRenderTreeBlackBerry_h
-
-#include "BlackBerryGlobal.h"
-
-
-#include "DumpRenderTreeClient.h"
-#include "Timer.h"
-#include <BlackBerryPlatformLayoutTest.h>
-#include <FindOptions.h>
-#include <wtf/Vector.h>
-#include <wtf/text/WTFString.h>
-
-namespace WebCore {
-class Credential;
-class DOMWrapperWorld;
-class Frame;
-class Range;
-}
-
-extern WebCore::Frame* mainFrame;
-extern WebCore::Frame* topLoadingFrame;
-extern bool waitForPolicy;
-
-class AccessibilityController;
-class GCController;
-
-namespace BlackBerry {
-namespace WebKit {
-class WebPage;
-
-class DumpRenderTree : public BlackBerry::WebKit::DumpRenderTreeClient, public BlackBerry::Platform::LayoutTestClient {
-public:
-    DumpRenderTree(WebPage*);
-    virtual ~DumpRenderTree();
-
-    static DumpRenderTree* currentInstance() { return s_currentInstance; }
-
-    void dump();
-
-    void setWaitToDumpWatchdog(double interval);
-
-    WebPage* page() { return m_page; }
-
-    bool loadFinished() const { return m_loadFinished; }
-
-    // FrameLoaderClient delegates
-    void didStartProvisionalLoadForFrame(WebCore::Frame*);
-    void didCommitLoadForFrame(WebCore::Frame*);
-    void didFailProvisionalLoadForFrame(WebCore::Frame*);
-    void didFailLoadForFrame(WebCore::Frame*);
-    void didFinishLoadForFrame(WebCore::Frame*);
-    void didFinishDocumentLoadForFrame(WebCore::Frame*);
-    void didClearWindowObjectInWorld(WebCore::DOMWrapperWorld*, JSGlobalContextRef, JSObjectRef windowObject);
-    void didReceiveTitleForFrame(const String& title, WebCore::Frame*);
-    void didDecidePolicyForNavigationAction(const WebCore::NavigationAction&, const WebCore::ResourceRequest&, WebCore::Frame*);
-    void didDecidePolicyForResponse(const WebCore::ResourceResponse&);
-    void didDispatchWillPerformClientRedirect();
-    void didHandleOnloadEventsForFrame(WebCore::Frame*);
-    void didReceiveResponseForFrame(WebCore::Frame*, const WebCore::ResourceResponse&);
-
-    // ChromeClient delegates
-    void addMessageToConsole(const String& message, unsigned lineNumber, const String& sourceID);
-    void runJavaScriptAlert(const String& message);
-    bool runJavaScriptConfirm(const String& message);
-    String runJavaScriptPrompt(const String& message, const String& defaultValue);
-    bool runBeforeUnloadConfirmPanel(const String& message);
-    void setStatusText(const String&);
-    void exceededDatabaseQuota(WebCore::SecurityOrigin*, const String& name);
-    bool allowsOpeningWindow();
-    void windowCreated(WebPage*);
-
-    // EditorClient delegates
-    void setAcceptsEditing(bool acceptsEditing) { m_acceptsEditing = acceptsEditing; }
-
-    void didBeginEditing();
-    void didEndEditing();
-    void didChange();
-    void didChangeSelection();
-    bool shouldBeginEditingInDOMRange(WebCore::Range*);
-    bool shouldEndEditingInDOMRange(WebCore::Range*);
-    bool shouldDeleteDOMRange(WebCore::Range*);
-    bool shouldChangeSelectedDOMRangeToDOMRangeAffinityStillSelecting(WebCore::Range* fromRange, WebCore::Range* toRange, int affinity, bool stillSelecting);
-    bool shouldInsertNode(WebCore::Node*, WebCore::Range*, int insertAction);
-    bool shouldInsertText(const String&, WebCore::Range*, int insertAction);
-
-    bool didReceiveAuthenticationChallenge(WebCore::Credential&);
-
-    // BlackBerry::Platform::BlackBerryPlatformLayoutTestClient method
-    virtual void addTest(const char* testFile);
-    void setCustomPolicyDelegate(bool setDelegate, bool permissive);
-private:
-    void runTest(const String& url, const String& imageHash);
-    void runTests();
-    void runCurrentTest();
-
-    void processWork(WebCore::Timer<DumpRenderTree>*);
-
-private:
-    static DumpRenderTree* s_currentInstance;
-
-    String dumpFramesAsText(WebCore::Frame*);
-    void locationChangeForFrame(WebCore::Frame*);
-
-    void doneDrt();
-    bool isHTTPTest(const String& test);
-    String renderTreeDump() const;
-    void resetToConsistentStateBeforeTesting(const String& url, const String& imageHash);
-    void runRemainingTests();
-    void invalidateAnyPreviousWaitToDumpWatchdog();
-    void waitToDumpWatchdogTimerFired(WebCore::Timer<DumpRenderTree>*);
-
-    Vector<String> m_tests;
-    Vector<String>::iterator m_currentTest;
-    Vector<String> m_bufferedTests;
-
-    String m_resultsDir;
-    String m_doneFile;
-    String m_currentHttpTest;
-    String m_currentTestFile;
-
-    GCController* m_gcController;
-    AccessibilityController* m_accessibilityController;
-    WebPage* m_page;
-    bool m_enablePixelTests;
-    WebCore::Timer<DumpRenderTree> m_waitToDumpWatchdogTimer;
-    WebCore::Timer<DumpRenderTree> m_workTimer;
-
-    bool m_acceptsEditing;
-    bool m_loadFinished;
-    bool m_policyDelegateEnabled;
-};
-}
-}
-
-#endif // DumpRenderTreeBlackBerry_h
diff --git a/Tools/DumpRenderTree/blackberry/EventSender.cpp b/Tools/DumpRenderTree/blackberry/EventSender.cpp
deleted file mode 100644
index 941a2ed..0000000
--- a/Tools/DumpRenderTree/blackberry/EventSender.cpp
+++ /dev/null
@@ -1,451 +0,0 @@
-/*
- * Copyright (C) 2007, 2008 Apple Inc. All rights reserved.
- * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/
- * Copyright (C) 2009, 2010, 2012 Research In Motion Limited. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
- */
-
-#include "config.h"
-#include "EventSender.h"
-
-#include "DumpRenderTreeBlackBerry.h"
-#include "DumpRenderTreeSupport.h"
-#include "IntPoint.h"
-#include "NotImplemented.h"
-#include "WebKitThreadViewportAccessor.h"
-#include "WebPage.h"
-
-#include <BlackBerryPlatformKeyboardEvent.h>
-#include <BlackBerryPlatformMouseEvent.h>
-#include <BlackBerryPlatformTouchEvent.h>
-#include <JavaScriptCore/JSObjectRef.h>
-#include <JavaScriptCore/JSStringRef.h>
-#include <JavaScriptCore/JSValueRef.h>
-#include <wtf/Vector.h>
-
-using namespace WebCore;
-
-static IntPoint lastMousePosition;
-static Vector<BlackBerry::Platform::TouchPoint> touches;
-static bool touchActive = false;
-
-void sendTouchEvent(BlackBerry::Platform::TouchEvent::Type);
-
-// Callbacks
-
-static JSValueRef getDragModeCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception)
-{
-    notImplemented();
-    return JSValueMakeUndefined(context);
-}
-
-static bool setDragModeCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception)
-{
-    notImplemented();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef mouseWheelToCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef*    exception)
-{
-    notImplemented();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef contextClickCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef*    exception)
-{
-    notImplemented();
-    return JSValueMakeUndefined(context);
-}
-
-void setMouseEventDocumentPos(BlackBerry::Platform::MouseEvent &event, const BlackBerry::WebKit::WebPage* page)
-{
-    // We have added document viewport position and document content position as members of the mouse event, when we create the event, we should initialize them as well.
-    BlackBerry::Platform::ViewportAccessor* viewportAccessor = page->webkitThreadViewportAccessor();
-    IntPoint documentContentPos = viewportAccessor->roundToDocumentFromPixelContents(BlackBerry::Platform::FloatPoint(viewportAccessor->pixelContentsFromViewport(lastMousePosition)));
-    IntPoint documentViewportMousePos = viewportAccessor->roundToDocumentFromPixelContents(BlackBerry::Platform::FloatPoint(lastMousePosition));
-    event.populateDocumentPosition(documentViewportMousePos, documentContentPos);
-}
-
-static JSValueRef mouseDownCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    BlackBerry::WebKit::WebPage* page = BlackBerry::WebKit::DumpRenderTree::currentInstance()->page();
-    BlackBerry::Platform::MouseEvent event(BlackBerry::Platform::MouseEvent::ScreenLeftMouseButton, 0, lastMousePosition, IntPoint::zero(), 0, 0, 0);
-
-    setMouseEventDocumentPos(event, page);
-
-    page->mouseEvent(event);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef mouseUpCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    BlackBerry::WebKit::WebPage* page = BlackBerry::WebKit::DumpRenderTree::currentInstance()->page();
-    BlackBerry::Platform::MouseEvent event(0, BlackBerry::Platform::MouseEvent::ScreenLeftMouseButton, lastMousePosition, IntPoint::zero(), 0, 0, 0);
-
-    setMouseEventDocumentPos(event, page);
-
-    page->mouseEvent(event);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef mouseMoveToCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 2)
-        return JSValueMakeUndefined(context);
-
-    int x = static_cast<int>(JSValueToNumber(context, arguments[0], exception));
-    ASSERT(!exception || !*exception);
-    int y = static_cast<int>(JSValueToNumber(context, arguments[1], exception));
-    ASSERT(!exception || !*exception);
-
-    lastMousePosition = IntPoint(x, y);
-    BlackBerry::WebKit::WebPage* page = BlackBerry::WebKit::DumpRenderTree::currentInstance()->page();
-    BlackBerry::Platform::MouseEvent event(BlackBerry::Platform::MouseEvent::ScreenLeftMouseButton, BlackBerry::Platform::MouseEvent::ScreenLeftMouseButton, lastMousePosition, IntPoint::zero(), 0, 0, 0);
-
-    setMouseEventDocumentPos(event, page);
-
-    page->mouseEvent(event);
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef beginDragWithFilesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    notImplemented();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef leapForwardCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    notImplemented();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef keyDownCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSStringRef character = JSValueToStringCopy(context, arguments[0], exception);
-    ASSERT(!*exception);
-    unsigned charCode = 0;
-    bool needsShiftKeyModifier = false;
-    if (JSStringIsEqualToUTF8CString(character, "leftArrow"))
-        charCode = KEYCODE_LEFT;
-    else if (JSStringIsEqualToUTF8CString(character, "rightArrow"))
-        charCode = KEYCODE_RIGHT;
-    else if (JSStringIsEqualToUTF8CString(character, "upArrow"))
-        charCode = KEYCODE_UP;
-    else if (JSStringIsEqualToUTF8CString(character, "downArrow"))
-        charCode = KEYCODE_DOWN;
-    else if (JSStringIsEqualToUTF8CString(character, "pageUp"))
-        charCode = KEYCODE_PG_UP;
-    else if (JSStringIsEqualToUTF8CString(character, "pageDown"))
-        charCode = KEYCODE_PG_DOWN;
-    else if (JSStringIsEqualToUTF8CString(character, "home"))
-        charCode = KEYCODE_HOME;
-    else if (JSStringIsEqualToUTF8CString(character, "end"))
-        charCode = KEYCODE_END;
-    else if (JSStringIsEqualToUTF8CString(character, "delete"))
-        charCode = KEYCODE_BACKSPACE;
-    else {
-        charCode = JSStringGetCharactersPtr(character)[0];
-        if (0x8 == charCode)
-            charCode = KEYCODE_BACKSPACE;
-        else if (0x7F == charCode)
-            charCode = KEYCODE_DELETE;
-        else if (WTF::isASCIIUpper(charCode))
-            needsShiftKeyModifier = true;
-    }
-    JSStringRelease(character);
-
-    static const JSStringRef lengthProperty = JSStringCreateWithUTF8CString("length");
-    bool needsAltKeyModifier = false;
-    bool needsCtrlKeyModifier = false;
-    if (argumentCount > 1) {
-        if (JSObjectRef modifiersArray = JSValueToObject(context, arguments[1], 0)) {
-            int modifiersCount = JSValueToNumber(context, JSObjectGetProperty(context, modifiersArray, lengthProperty, 0), 0);
-            for (int i = 0; i < modifiersCount; ++i) {
-                JSStringRef string = JSValueToStringCopy(context, JSObjectGetPropertyAtIndex(context, modifiersArray, i, 0), 0);
-                if (JSStringIsEqualToUTF8CString(string, "shiftKey"))
-                    needsShiftKeyModifier = true;
-                else if (JSStringIsEqualToUTF8CString(string, "altKey"))
-                    needsAltKeyModifier = true;
-                else if (JSStringIsEqualToUTF8CString(string, "ctrlKey"))
-                    needsCtrlKeyModifier = true;
-                JSStringRelease(string);
-            }
-        }
-    }
-
-    BlackBerry::WebKit::WebPage* page = BlackBerry::WebKit::DumpRenderTree::currentInstance()->page();
-
-    unsigned modifiers = 0;
-    if (needsShiftKeyModifier)
-        modifiers |= KEYMOD_SHIFT;
-    if (needsAltKeyModifier)
-        modifiers |= KEYMOD_ALT;
-    if (needsCtrlKeyModifier)
-        modifiers |= KEYMOD_CTRL;
-
-    page->keyEvent(BlackBerry::Platform::KeyboardEvent(charCode, BlackBerry::Platform::KeyboardEvent::KeyDown, modifiers));
-    page->keyEvent(BlackBerry::Platform::KeyboardEvent(charCode, BlackBerry::Platform::KeyboardEvent::KeyUp, modifiers));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef textZoomInCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    notImplemented();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef textZoomOutCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    notImplemented();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef zoomPageInCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    notImplemented();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef zoomPageOutCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    notImplemented();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef addTouchPointCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 2)
-        return JSValueMakeUndefined(context);
-
-    int x = static_cast<int>(JSValueToNumber(context, arguments[0], exception));
-    ASSERT(!exception || !*exception);
-    int y = static_cast<int>(JSValueToNumber(context, arguments[1], exception));
-    ASSERT(!exception || !*exception);
-
-    int id = touches.isEmpty() ? 0 : touches.last().id() + 1;
-
-    // pixelViewportPosition is unused in the WebKit layer, so use this for screen position
-    IntPoint pos(x, y);
-
-    BlackBerry::Platform::TouchPoint touch(id, BlackBerry::Platform::TouchPoint::TouchPressed, pos, pos, 0);
-
-    // Unfortunately we don't know the scroll position at this point, so use pos for the content position too.
-    // This assumes scroll position is 0,0
-    touch.populateDocumentPosition(pos, pos);
-
-    touches.append(touch);
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef updateTouchPointCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 3)
-        return JSValueMakeUndefined(context);
-
-    int index = static_cast<int>(JSValueToNumber(context, arguments[0], exception));
-    ASSERT(!exception || !*exception);
-    int x = static_cast<int>(JSValueToNumber(context, arguments[1], exception));
-    ASSERT(!exception || !*exception);
-    int y = static_cast<int>(JSValueToNumber(context, arguments[2], exception));
-    ASSERT(!exception || !*exception);
-
-    if (index < 0 || index >= (int)touches.size())
-        return JSValueMakeUndefined(context);
-
-    BlackBerry::Platform::TouchPoint& touch = touches[index];
-
-    // pixelViewportPosition is unused in the WebKit layer
-    IntPoint pos(x, y);
-
-    // Unfortunately we don't know the scroll position at this point, so use pos for the content position too.
-    // This assumes scroll position is 0,0
-    touch.populateDocumentPosition(pos, pos);
-    touch.setScreenPosition(pos);
-    touch.updateState(BlackBerry::Platform::TouchPoint::TouchMoved);
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setTouchModifierCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    notImplemented();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef touchStartCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (!touchActive) {
-        sendTouchEvent(BlackBerry::Platform::TouchEvent::TouchStart);
-        touchActive = true;
-    } else
-        sendTouchEvent(BlackBerry::Platform::TouchEvent::TouchMove);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef touchCancelCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    notImplemented();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef touchMoveCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    sendTouchEvent(BlackBerry::Platform::TouchEvent::TouchMove);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef touchEndCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    for (unsigned i = 0; i < touches.size(); ++i)
-        if (touches[i].state() != BlackBerry::Platform::TouchPoint::TouchReleased) {
-            sendTouchEvent(BlackBerry::Platform::TouchEvent::TouchMove);
-            return JSValueMakeUndefined(context);
-        }
-    sendTouchEvent(BlackBerry::Platform::TouchEvent::TouchEnd);
-    touchActive = false;
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef clearTouchPointsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    touches.clear();
-    touchActive = false;
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef cancelTouchPointCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    notImplemented();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef releaseTouchPointCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    int index = static_cast<int>(JSValueToNumber(context, arguments[0], exception));
-    ASSERT(!exception || !*exception);
-    if (index < 0 || index >= (int)touches.size())
-        return JSValueMakeUndefined(context);
-
-    touches[index].updateState(BlackBerry::Platform::TouchPoint::TouchReleased);
-    return JSValueMakeUndefined(context);
-}
-
-void sendTouchEvent(BlackBerry::Platform::TouchEvent::Type type)
-{
-    BlackBerry::Platform::TouchEvent event;
-    event.m_type = type;
-    event.m_points.assign(touches.begin(), touches.end());
-    BlackBerry::WebKit::DumpRenderTree::currentInstance()->page()->touchEvent(event);
-
-    Vector<BlackBerry::Platform::TouchPoint> t;
-
-    for (Vector<BlackBerry::Platform::TouchPoint>::iterator it = touches.begin(); it != touches.end(); ++it) {
-        if (it->state() != BlackBerry::Platform::TouchPoint::TouchReleased) {
-            it->updateState(BlackBerry::Platform::TouchPoint::TouchStationary);
-            t.append(*it);
-        }
-    }
-    touches = t;
-}
-
-static JSValueRef scalePageByCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 3)
-        return JSValueMakeUndefined(context);
-
-    float scaleFactor = JSValueToNumber(context, arguments[0], exception);
-    float x = JSValueToNumber(context, arguments[1], exception);
-    float y = JSValueToNumber(context, arguments[2], exception);
-
-    BlackBerry::WebKit::WebPage* page = BlackBerry::WebKit::DumpRenderTree::currentInstance()->page();
-    if (!page)
-        return JSValueMakeUndefined(context);
-
-    DumpRenderTreeSupport::scalePageBy(page, scaleFactor, x, y);
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSStaticFunction staticFunctions[] = {
-    { "mouseWheelTo", mouseWheelToCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "contextClick", contextClickCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "mouseDown", mouseDownCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "mouseUp", mouseUpCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "mouseMoveTo", mouseMoveToCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "beginDragWithFiles", beginDragWithFilesCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "leapForward", leapForwardCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "keyDown", keyDownCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "textZoomIn", textZoomInCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "textZoomOut", textZoomOutCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "addTouchPoint", addTouchPointCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "cancelTouchPoint", cancelTouchPointCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "clearTouchPoints", clearTouchPointsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "releaseTouchPoint", releaseTouchPointCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "scalePageBy", scalePageByCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "setTouchModifier", setTouchModifierCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "touchCancel", touchCancelCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "touchEnd", touchEndCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "touchMove", touchMoveCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "touchStart", touchStartCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "updateTouchPoint", updateTouchPointCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "zoomPageIn", zoomPageInCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "zoomPageOut", zoomPageOutCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { 0, 0, 0 }
-};
-
-static JSStaticValue staticValues[] = {
-    { "dragMode", getDragModeCallback, setDragModeCallback, kJSPropertyAttributeNone },
-    { 0, 0, 0, 0 }
-};
-
-static JSClassRef getClass(JSContextRef context)
-{
-    static JSClassRef eventSenderClass = 0;
-
-    if (!eventSenderClass) {
-        JSClassDefinition classDefinition = {
-            0, 0, 0, 0, 0, 0,
-            0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
-        classDefinition.staticFunctions = staticFunctions;
-        classDefinition.staticValues = staticValues;
-
-        eventSenderClass = JSClassCreate(&classDefinition);
-    }
-
-    return eventSenderClass;
-}
-
-void replaySavedEvents()
-{
-    notImplemented();
-}
-
-JSObjectRef makeEventSender(JSContextRef context)
-{
-    return JSObjectMake(context, getClass(context), 0);
-}
-
diff --git a/Tools/DumpRenderTree/blackberry/EventSender.h b/Tools/DumpRenderTree/blackberry/EventSender.h
deleted file mode 100644
index 66f7196..0000000
--- a/Tools/DumpRenderTree/blackberry/EventSender.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Copyright (C) 2007, 2008 Apple Inc. All rights reserved.
- * Copyright (C) 2009, 2012 Research In Motion Limited. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
- */
-
-#ifndef EventSender_h
-#define EventSender_h
-
-typedef const struct OpaqueJSContext* JSContextRef;
-typedef struct OpaqueJSValue* JSObjectRef;
-
-JSObjectRef makeEventSender(JSContextRef);
-void replaySavedEvents();
-
-#endif
diff --git a/Tools/DumpRenderTree/blackberry/GCControllerBlackBerry.cpp b/Tools/DumpRenderTree/blackberry/GCControllerBlackBerry.cpp
deleted file mode 100644
index 8e8bd96..0000000
--- a/Tools/DumpRenderTree/blackberry/GCControllerBlackBerry.cpp
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * Copyright (C) 2007 Apple Inc. All rights reserved.
- * Copyright (C) 2009, 2010, 2012 Research In Motion Limited. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
- */
-
-#include "config.h"
-#include "DumpRenderTree/GCController.h"
-
-#include "DumpRenderTreeSupport.h"
-
-void GCController::collect() const
-{
-    DumpRenderTreeSupport::garbageCollectorCollect();
-}
-
-void GCController::collectOnAlternateThread(bool waitUntilDone) const
-{
-    DumpRenderTreeSupport::garbageCollectorCollectOnAlternateThread(waitUntilDone);
-}
-
-size_t GCController::getJSObjectCount() const
-{
-    return DumpRenderTreeSupport::javaScriptObjectsCount();
-}
-
diff --git a/Tools/DumpRenderTree/blackberry/PNGImageEncoder.cpp b/Tools/DumpRenderTree/blackberry/PNGImageEncoder.cpp
deleted file mode 100644
index bc4e7ab..0000000
--- a/Tools/DumpRenderTree/blackberry/PNGImageEncoder.cpp
+++ /dev/null
@@ -1,145 +0,0 @@
-/*
- * Copyright (C) 2011, 2012 Research In Motion Limited. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
- *
- * Portions of this file are Copyright 2005 Google Inc.
- */
-
-#include "config.h"
-#include "PNGImageEncoder.h"
-
-
-extern "C" {
-#include "png.h"
-}
-
-#include <wtf/OwnArrayPtr.h>
-
-// This code is almost a mirror of the code in WebCore/platform/image-encoders/skia/PNGImageEncoder.cpp
-// since we can't include this private WebCore file in a WebKit-client application.
-
-// Keep the premultipied for as it is the most faithful information
-static void BGRAtoRGBA(const unsigned char* input, int numberOfPixels, unsigned char* output)
-{
-    for (int x = 0; x < numberOfPixels; x++) {
-        output[0] = input[2];
-        output[1] = input[1];
-        output[2] = input[0];
-        output[3] = input[3];
-        input += 4;
-        output += 4;
-    }
-}
-
-// Passed around as the io_ptr in the png structs so our callbacks know where
-// to write data.
-struct PNGEncoderState {
-    PNGEncoderState(Vector<unsigned char>* o) : m_out(o) { }
-    Vector<unsigned char>* m_out;
-};
-
-// Called by libpng to flush its internal buffer to ours.
-void encoderWriteCallback(png_structp png, png_bytep data, png_size_t size)
-{
-    PNGEncoderState* state = static_cast<PNGEncoderState*>(png_get_io_ptr(png));
-    ASSERT(state->m_out);
-
-    size_t oldSize = state->m_out->size();
-    state->m_out->resize(oldSize + size);
-    memcpy(&(*state->m_out)[oldSize], data, size);
-}
-
-// Automatically destroys the given write structs on destruction to make
-// cleanup and error handling code cleaner.
-class PNGWriteStructDestroyer {
-public:
-    PNGWriteStructDestroyer(png_struct** ps, png_info** pi)
-        : m_pngStruct(ps)
-        , m_pngInfo(pi)
-    {
-    }
-
-    ~PNGWriteStructDestroyer()
-    {
-        png_destroy_write_struct(m_pngStruct, m_pngInfo);
-    }
-
-private:
-    png_struct** m_pngStruct;
-    png_info** m_pngInfo;
-};
-
-typedef void (*PixelConversionFunc)(const unsigned char*, int, unsigned char*);
-static bool encodeImpl(const unsigned char* input, int imageWidth, int imageHeight, int bytesPerRow, Vector<unsigned char>* output, PixelConversionFunc conversionFunc)
-{
-    int inputColorComponents = 4;
-    int outputColorComponents = 4;
-    int pngOutputColorType = PNG_COLOR_TYPE_RGB_ALPHA;
-
-    if (imageWidth < 0)
-        imageWidth = 0;
-
-    if (imageHeight < 0)
-        imageHeight = 0;
-
-    // Row stride should be at least as long as the length of the data.
-    if (inputColorComponents * imageWidth > bytesPerRow) {
-        ASSERT(false);
-        return false;
-    }
-
-    png_struct* pngPtr = png_create_write_struct(PNG_LIBPNG_VER_STRING, 0, 0, 0);
-    if (!pngPtr)
-        return false;
-
-    png_info* infoPtr = png_create_info_struct(pngPtr);
-    if (!infoPtr) {
-        png_destroy_write_struct(&pngPtr, 0);
-        return false;
-    }
-    PNGWriteStructDestroyer destroyer(&pngPtr, &infoPtr);
-
-    if (setjmp(png_jmpbuf(pngPtr))) {
-        // The destroyer will ensure that the structures are cleaned up in this
-        // case, even though we may get here as a jump from random parts of the
-        // PNG library called below.
-        return false;
-    }
-
-    // Set our callback for libpng to give us the data.
-    PNGEncoderState state(output);
-    png_set_write_fn(pngPtr, &state, encoderWriteCallback, 0);
-
-    png_set_IHDR(pngPtr, infoPtr, imageWidth, imageHeight, 8, pngOutputColorType,
-        PNG_INTERLACE_NONE, PNG_COMPRESSION_TYPE_DEFAULT,
-        PNG_FILTER_TYPE_DEFAULT);
-    png_write_info(pngPtr, infoPtr);
-
-    OwnArrayPtr<unsigned char> rowPixels = adoptArrayPtr(new unsigned char[imageWidth * outputColorComponents]);
-    for (int y = 0; y < imageHeight; y ++) {
-        conversionFunc(&input[y * bytesPerRow], imageWidth, rowPixels.get());
-        png_write_row(pngPtr, rowPixels.get());
-    }
-
-    png_write_end(pngPtr, infoPtr);
-    return true;
-}
-
-bool encodeBitmapToPNG(unsigned char* data, int width, int height, Vector<unsigned char>* output)
-{
-    bool result = encodeImpl(data, width, height, width * 4, output, BGRAtoRGBA);
-    return result;
-}
diff --git a/Tools/DumpRenderTree/blackberry/PNGImageEncoder.h b/Tools/DumpRenderTree/blackberry/PNGImageEncoder.h
deleted file mode 100644
index 7a320a7..0000000
--- a/Tools/DumpRenderTree/blackberry/PNGImageEncoder.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * Copyright (C) 2011, 2012 Research In Motion Limited. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
- */
-
-#ifndef PNGImageEncoder_h
-#define PNGImageEncoder_h
-
-#include <wtf/Vector.h>
-
-bool encodeBitmapToPNG(unsigned char* data, int width, int height, WTF::Vector<unsigned char>* output);
-
-#endif // PNGImageEncoder_h
diff --git a/Tools/DumpRenderTree/blackberry/PixelDumpSupportBlackBerry.cpp b/Tools/DumpRenderTree/blackberry/PixelDumpSupportBlackBerry.cpp
deleted file mode 100644
index 37d95ff..0000000
--- a/Tools/DumpRenderTree/blackberry/PixelDumpSupportBlackBerry.cpp
+++ /dev/null
@@ -1,133 +0,0 @@
-/*
- * Copyright (C) 2011, 2012 Research In Motion Limited. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
- */
-
-#include "config.h"
-#include "PixelDumpSupportBlackBerry.h"
-
-#include "BackingStore.h"
-#include "BlackBerryPlatformExecutableMessage.h"
-#include "BlackBerryPlatformGraphics.h"
-#include "BlackBerryPlatformGraphicsContext.h"
-#include "BlackBerryPlatformGraphicsImpl.h"
-#include "BlackBerryPlatformMessageClient.h"
-#include "DumpRenderTreeBlackBerry.h"
-#include "PNGImageEncoder.h"
-#include "PixelDumpSupport.h"
-#include "WebPage.h"
-#include "WebPageClient.h"
-
-#include <BlackBerryPlatformWindow.h>
-#if USE(SKIA)
-#include <SkDevice.h>
-#endif
-#include <wtf/MD5.h>
-#include <wtf/Vector.h>
-
-using namespace BlackBerry::WebKit;
-using namespace BlackBerry;
-using namespace WTF;
-
-void readPixelsUserInterfaceThread(BlackBerry::Platform::Graphics::PlatformGraphicsContext* context, const BlackBerry::Platform::IntRect& srcRect, unsigned char* pixels)
-{
-    context->readPixels(srcRect, pixels, false, false);
-}
-
-PassRefPtr<BitmapContext> createBitmapContextFromWebView(bool /*onscreen*/, bool /*incrementalRepaint*/, bool /*sweepHorizontally*/, bool /*drawSelectionRect*/)
-{
-    Platform::Graphics::Window* window = DumpRenderTree::currentInstance()->page()->client()->window();
-    ASSERT(window);
-
-    // The BackingStore has a queue of pending jobs, which are run on idle
-    // and which may not have been run yet.
-    BackingStore* backingStore = DumpRenderTree::currentInstance()->page()->backingStore();
-    while (backingStore->hasBlitJobs())
-        backingStore->blitOnIdle();
-
-    const Platform::IntRect& windowRect = window->viewportRect();
-    const Platform::IntSize& windowSize = window->viewportSize();
-    unsigned char* data = new unsigned char[windowSize.width() * windowSize.height() * 4];
-
-#if USE(SKIA)
-    // We need to force a synchronous update to the window or we may get an empty bitmap.
-    // For example, running DRT with one test case that finishes before the screen is updated.
-    window->post(windowRect);
-
-    SkBitmap bitmap;
-    bitmap.setConfig(SkBitmap::kARGB_8888_Config, windowSize.width(), windowSize.height());
-    bitmap.allocPixels();
-    bitmap.eraseARGB(0, 0, 0, 0);
-
-    SkCanvas canvas(bitmap);
-    backingStore->drawContents(&canvas, windowRect, windowSize);
-
-    // Read that SkBitmap rather than change it. So use false on accessBitmap.
-    const SkBitmap& contentsBitmap = canvas.getDevice()->accessBitmap(false/*changePixels*/);
-    contentsBitmap.lockPixels();
-
-    const unsigned char* windowPixels = 0;
-    if (!contentsBitmap.empty()) {
-        windowPixels = static_cast<const unsigned char*>(contentsBitmap.getPixels());
-        if (windowPixels)
-            memcpy(data, windowPixels, windowSize.width() * windowSize.height() * 4);
-    }
-#else
-    BlackBerry::Platform::Graphics::Buffer* buffer = BlackBerry::Platform::Graphics::createBuffer(windowSize, BlackBerry::Platform::Graphics::AlwaysBacked);
-    BlackBerry::Platform::Graphics::Drawable* drawable = BlackBerry::Platform::Graphics::lockBufferDrawable(buffer);
-    if (drawable) {
-        backingStore->drawContents(drawable, windowRect, windowSize);
-        BlackBerry::Platform::userInterfaceThreadMessageClient()->dispatchSyncMessage(
-            BlackBerry::Platform::createFunctionCallMessage(&readPixelsUserInterfaceThread, drawable, windowRect, data));
-        BlackBerry::Platform::Graphics::releaseBufferDrawable(buffer);
-    }
-    BlackBerry::Platform::Graphics::destroyBuffer(buffer);
-#endif
-    return BitmapContext::createByAdoptingData(data, windowSize.width(), windowSize.height());
-}
-
-void computeMD5HashStringForBitmapContext(BitmapContext* context, char hashString[33])
-{
-    int pixelsWide = context->m_width;
-    int pixelsHigh = context->m_height;
-    int bytesPerRow = context->m_width * 4;
-    unsigned char* pixelData = context->m_data;
-
-    MD5 md5;
-    for (int i = 0; i < pixelsHigh; ++i) {
-        md5.addBytes(pixelData, 4 * pixelsWide);
-        pixelData += bytesPerRow;
-    }
-
-    Vector<uint8_t, 16> hash;
-    md5.checksum(hash);
-
-    hashString[0] = '\0';
-    for (int i = 0; i < 16; ++i)
-        snprintf(hashString, 33, "%s%02x", hashString, hash[i]);
-}
-
-static void printPNG(BitmapContext* context, const char* checksum)
-{
-    Vector<unsigned char> pngData;
-    encodeBitmapToPNG(context->m_data, context->m_width, context->m_height, &pngData);
-    printPNG(pngData.data(), pngData.size(), checksum);
-}
-
-void dumpBitmap(BitmapContext* context, const char* checksum)
-{
-    printPNG(context, checksum);
-}
diff --git a/Tools/DumpRenderTree/blackberry/PixelDumpSupportBlackBerry.h b/Tools/DumpRenderTree/blackberry/PixelDumpSupportBlackBerry.h
deleted file mode 100644
index 87c6bf0..0000000
--- a/Tools/DumpRenderTree/blackberry/PixelDumpSupportBlackBerry.h
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- * Copyright (C) 2011, 2012 Research In Motion Limited. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
- */
-
-#ifndef PixelDumpSupportBlackBerry_h
-#define PixelDumpSupportBlackBerry_h
-
-#include <stdio.h>
-#include <wtf/PassRefPtr.h>
-#include <wtf/RefCounted.h>
-
-class BitmapContext : public RefCounted<BitmapContext> {
-public:
-
-    static PassRefPtr<BitmapContext> createByAdoptingData(unsigned char* data, int width, int height)
-    {
-        return adoptRef(new BitmapContext(data, width, height));
-    }
-
-    ~BitmapContext()
-    {
-        delete m_data;
-    }
-
-    unsigned char* m_data;
-    int m_width, m_height;
-
-private:
-
-    BitmapContext(unsigned char* data, int width, int height)
-        : m_data(data)
-        , m_width(width)
-        , m_height(height)
-    {
-    }
-};
-
-#endif // PixelDumpSupportBlackBerry_h
diff --git a/Tools/DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp b/Tools/DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp
deleted file mode 100644
index 0b2d58f..0000000
--- a/Tools/DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp
+++ /dev/null
@@ -1,714 +0,0 @@
-/*
- * Copyright (C) 2009, 2010, 2012 Research In Motion Limited. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
- */
-
-#include "config.h"
-#include "TestRunner.h"
-
-#include "DatabaseTracker.h"
-#include "Document.h"
-#include "DocumentLoader.h"
-#include "DocumentMarker.h"
-#include "DumpRenderTree.h"
-#include "DumpRenderTreeBlackBerry.h"
-#include "DumpRenderTreeSupport.h"
-#include "EditingBehaviorTypes.h"
-#include "EditorClientBlackBerry.h"
-#include "Element.h"
-#include "Frame.h"
-#include "HTMLInputElement.h"
-#include "JSElement.h"
-#include "KURL.h"
-#include "NotImplemented.h"
-#include "Page.h"
-#include "RenderTreeAsText.h"
-#include "SchemeRegistry.h"
-#include "SecurityOrigin.h"
-#include "SecurityPolicy.h"
-#include "Settings.h"
-#include "WorkQueue.h"
-#include "WorkQueueItem.h"
-
-#include <JavaScriptCore/APICast.h>
-#include <SharedPointer.h>
-#include <WebPage.h>
-#include <WebSettings.h>
-
-#include <wtf/OwnArrayPtr.h>
-#include <wtf/UnusedParam.h>
-#include <wtf/text/CString.h>
-
-using WebCore::toElement;
-using WebCore::toJS;
-
-TestRunner::~TestRunner()
-{
-}
-
-void TestRunner::addDisallowedURL(JSStringRef url)
-{
-    UNUSED_PARAM(url);
-    notImplemented();
-}
-
-void TestRunner::clearAllDatabases()
-{
-#if ENABLE(DATABASE)
-    WebCore::DatabaseTracker::tracker().deleteAllDatabases();
-#endif
-}
-
-void TestRunner::clearBackForwardList()
-{
-    BlackBerry::WebKit::DumpRenderTree::currentInstance()->page()->clearBackForwardList(true);
-}
-
-void TestRunner::clearPersistentUserStyleSheet()
-{
-    notImplemented();
-}
-
-JSStringRef TestRunner::copyDecodedHostName(JSStringRef name)
-{
-    UNUSED_PARAM(name);
-    notImplemented();
-    return 0;
-}
-
-JSStringRef TestRunner::copyEncodedHostName(JSStringRef name)
-{
-    UNUSED_PARAM(name);
-    notImplemented();
-    return 0;
-}
-
-void TestRunner::dispatchPendingLoadRequests()
-{
-    notImplemented();
-}
-
-void TestRunner::display()
-{
-    notImplemented();
-}
-
-static String jsStringRefToWebCoreString(JSStringRef str)
-{
-    size_t strArrSize = JSStringGetMaximumUTF8CStringSize(str);
-    OwnArrayPtr<char> strArr = adoptArrayPtr(new char[strArrSize]);
-    JSStringGetUTF8CString(str, strArr.get(), strArrSize);
-    return String::fromUTF8(strArr.get());
-}
-
-void TestRunner::execCommand(JSStringRef name, JSStringRef value)
-{
-    if (!mainFrame)
-        return;
-
-    String nameStr = jsStringRefToWebCoreString(name);
-    String valueStr = jsStringRefToWebCoreString(value);
-
-    mainFrame->editor()->command(nameStr).execute(valueStr);
-}
-
-bool TestRunner::isCommandEnabled(JSStringRef name)
-{
-    if (!mainFrame)
-        return false;
-
-    String nameStr = jsStringRefToWebCoreString(name);
-
-    return mainFrame->editor()->command(nameStr).isEnabled();
-}
-
-void TestRunner::keepWebHistory()
-{
-    notImplemented();
-}
-
-void TestRunner::notifyDone()
-{
-    if (m_waitToDump && (!topLoadingFrame || BlackBerry::WebKit::DumpRenderTree::currentInstance()->loadFinished()) && !WorkQueue::shared()->count())
-        dump();
-
-    m_waitToDump = false;
-    waitForPolicy = false;
-}
-
-JSStringRef TestRunner::pathToLocalResource(JSContextRef, JSStringRef url)
-{
-    return JSStringRetain(url);
-}
-
-void TestRunner::queueLoad(JSStringRef url, JSStringRef target)
-{
-    size_t urlArrSize = JSStringGetMaximumUTF8CStringSize(url);
-    OwnArrayPtr<char> urlArr = adoptArrayPtr(new char[urlArrSize]);
-    JSStringGetUTF8CString(url, urlArr.get(), urlArrSize);
-
-    WebCore::KURL base = mainFrame->loader()->documentLoader()->response().url();
-    WebCore::KURL absolute(base, urlArr.get());
-
-    JSRetainPtr<JSStringRef> absoluteURL(Adopt, JSStringCreateWithUTF8CString(absolute.string().utf8().data()));
-    WorkQueue::shared()->queue(new LoadItem(absoluteURL.get(), target));
-}
-
-void TestRunner::setAcceptsEditing(bool acceptsEditing)
-{
-    BlackBerry::WebKit::DumpRenderTree::currentInstance()->setAcceptsEditing(acceptsEditing);
-}
-
-void TestRunner::setAppCacheMaximumSize(unsigned long long quota)
-{
-    UNUSED_PARAM(quota);
-    notImplemented();
-}
-
-void TestRunner::setAuthorAndUserStylesEnabled(bool enable)
-{
-    mainFrame->page()->settings()->setAuthorAndUserStylesEnabled(enable);
-}
-
-void TestRunner::setCacheModel(int)
-{
-    notImplemented();
-}
-
-void TestRunner::setCustomPolicyDelegate(bool setDelegate, bool permissive)
-{
-    BlackBerry::WebKit::DumpRenderTree::currentInstance()->setCustomPolicyDelegate(setDelegate, permissive);
-}
-
-void TestRunner::clearApplicationCacheForOrigin(OpaqueJSString*)
-{
-    // FIXME: Implement to support deleting all application caches for an origin.
-    notImplemented();
-}
-
-long long TestRunner::localStorageDiskUsageForOrigin(JSStringRef)
-{
-    // FIXME: Implement to support getting disk usage in bytes for an origin.
-    notImplemented();
-    return 0;
-}
-
-JSValueRef TestRunner::originsWithApplicationCache(JSContextRef context)
-{
-    // FIXME: Implement to get origins that contain application caches.
-    notImplemented();
-    return JSValueMakeUndefined(context);
-}
-
-void TestRunner::setDatabaseQuota(unsigned long long quota)
-{
-    if (!mainFrame)
-        return;
-
-    WebCore::DatabaseTracker::tracker().setQuota(mainFrame->document()->securityOrigin(), quota);
-}
-
-void TestRunner::setDomainRelaxationForbiddenForURLScheme(bool forbidden, JSStringRef scheme)
-{
-    WebCore::SchemeRegistry::setDomainRelaxationForbiddenForURLScheme(forbidden, jsStringRefToWebCoreString(scheme));
-}
-
-void TestRunner::setIconDatabaseEnabled(bool iconDatabaseEnabled)
-{
-    UNUSED_PARAM(iconDatabaseEnabled);
-    notImplemented();
-}
-
-void TestRunner::setMainFrameIsFirstResponder(bool flag)
-{
-    UNUSED_PARAM(flag);
-    notImplemented();
-}
-
-void TestRunner::setPersistentUserStyleSheetLocation(JSStringRef path)
-{
-    UNUSED_PARAM(path);
-    notImplemented();
-}
-
-void TestRunner::setPopupBlockingEnabled(bool flag)
-{
-    BlackBerry::WebKit::DumpRenderTree::currentInstance()->page()->settings()->setJavaScriptOpenWindowsAutomatically(!flag);
-}
-
-void TestRunner::setPrivateBrowsingEnabled(bool flag)
-{
-    UNUSED_PARAM(flag);
-    notImplemented();
-}
-
-void TestRunner::setXSSAuditorEnabled(bool flag)
-{
-    BlackBerry::WebKit::DumpRenderTree::currentInstance()->page()->settings()->setXSSAuditorEnabled(flag);
-}
-
-void TestRunner::setTabKeyCyclesThroughElements(bool cycles)
-{
-    if (!mainFrame)
-        return;
-
-    mainFrame->page()->setTabKeyCyclesThroughElements(cycles);
-}
-
-void TestRunner::setUseDashboardCompatibilityMode(bool flag)
-{
-    UNUSED_PARAM(flag);
-    notImplemented();
-}
-
-void TestRunner::setUserStyleSheetEnabled(bool flag)
-{
-    UNUSED_PARAM(flag);
-    notImplemented();
-}
-
-void TestRunner::setUserStyleSheetLocation(JSStringRef path)
-{
-    String pathStr = jsStringRefToWebCoreString(path);
-    BlackBerry::WebKit::DumpRenderTree::currentInstance()->page()->settings()->setUserStyleSheetLocation(pathStr.utf8().data());
-}
-
-void TestRunner::waitForPolicyDelegate()
-{
-    setCustomPolicyDelegate(true, true);
-    setWaitToDump(true);
-    waitForPolicy = true;
-}
-
-size_t TestRunner::webHistoryItemCount()
-{
-    SharedArray<BlackBerry::WebKit::WebPage::BackForwardEntry> backForwardList;
-    BlackBerry::WebKit::DumpRenderTree::currentInstance()->page()->getBackForwardList(backForwardList);
-    return backForwardList.length();
-}
-
-int TestRunner::windowCount()
-{
-    notImplemented();
-    return 0;
-}
-
-void TestRunner::setWaitToDump(bool waitToDump)
-{
-    // Change from 30s to 35s because some test cases in multipart need 30 seconds,
-    // refer to http/tests/multipart/resources/multipart-wait-before-boundary.php please.
-    static const double kWaitToDumpWatchdogInterval = 35.0;
-    m_waitToDump = waitToDump;
-    if (m_waitToDump)
-        BlackBerry::WebKit::DumpRenderTree::currentInstance()->setWaitToDumpWatchdog(kWaitToDumpWatchdogInterval);
-}
-
-void TestRunner::setWindowIsKey(bool windowIsKey)
-{
-    m_windowIsKey = windowIsKey;
-    notImplemented();
-}
-
-void TestRunner::removeAllVisitedLinks()
-{
-    notImplemented();
-}
-
-void TestRunner::overridePreference(JSStringRef key, JSStringRef value)
-{
-    if (!mainFrame)
-        return;
-
-    String keyStr = jsStringRefToWebCoreString(key);
-    String valueStr = jsStringRefToWebCoreString(value);
-
-    if (keyStr == "WebKitUsesPageCachePreferenceKey")
-        BlackBerry::WebKit::DumpRenderTree::currentInstance()->page()->settings()->setMaximumPagesInCache(1);
-    else if (keyStr == "WebKitUsePreHTML5ParserQuirks")
-        mainFrame->page()->settings()->setUsePreHTML5ParserQuirks(true);
-    else if (keyStr == "WebKitTabToLinksPreferenceKey")
-        DumpRenderTreeSupport::setLinksIncludedInFocusChain(valueStr == "true" || valueStr == "1");
-    else if (keyStr == "WebKitHyperlinkAuditingEnabled")
-        mainFrame->page()->settings()->setHyperlinkAuditingEnabled(valueStr == "true" || valueStr == "1");
-    else if (keyStr == "WebSocketsEnabled")
-        BlackBerry::WebKit::DumpRenderTree::currentInstance()->page()->settings()->setWebSocketsEnabled(valueStr == "true" || valueStr == "1");
-    else if (keyStr == "WebKitDefaultTextEncodingName")
-        BlackBerry::WebKit::DumpRenderTree::currentInstance()->page()->settings()->setDefaultTextEncodingName(valueStr);
-    else if (keyStr == "WebKitDisplayImagesKey")
-        BlackBerry::WebKit::DumpRenderTree::currentInstance()->page()->settings()->setLoadsImagesAutomatically(valueStr == "true" || valueStr == "1");
-}
-
-void TestRunner::setAlwaysAcceptCookies(bool alwaysAcceptCookies)
-{
-    UNUSED_PARAM(alwaysAcceptCookies);
-    notImplemented();
-}
-
-void TestRunner::setMockGeolocationPosition(double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed)
-{
-    DumpRenderTreeSupport::setMockGeolocationPosition(BlackBerry::WebKit::DumpRenderTree::currentInstance()->page(), latitude, longitude, accuracy, providesAltitude, altitude, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed);
-}
-
-void TestRunner::setMockGeolocationPositionUnavailableError(JSStringRef message)
-{
-    String messageStr = jsStringRefToWebCoreString(message);
-    DumpRenderTreeSupport::setMockGeolocationPositionUnavailableError(BlackBerry::WebKit::DumpRenderTree::currentInstance()->page(), messageStr);
-}
-
-void TestRunner::showWebInspector()
-{
-    notImplemented();
-}
-
-void TestRunner::closeWebInspector()
-{
-    notImplemented();
-}
-
-void TestRunner::evaluateInWebInspector(long callId, JSStringRef script)
-{
-    UNUSED_PARAM(callId);
-    UNUSED_PARAM(script);
-    notImplemented();
-}
-
-void TestRunner::evaluateScriptInIsolatedWorldAndReturnValue(unsigned worldID, JSObjectRef globalObject, JSStringRef script)
-{
-    UNUSED_PARAM(worldID);
-    UNUSED_PARAM(globalObject);
-    UNUSED_PARAM(script);
-    notImplemented();
-}
-
-void TestRunner::evaluateScriptInIsolatedWorld(unsigned worldID, JSObjectRef globalObject, JSStringRef script)
-{
-    UNUSED_PARAM(worldID);
-    UNUSED_PARAM(globalObject);
-    UNUSED_PARAM(script);
-    notImplemented();
-}
-
-void TestRunner::addUserScript(JSStringRef source, bool runAtStart, bool allFrames)
-{
-    UNUSED_PARAM(source);
-    UNUSED_PARAM(runAtStart);
-    UNUSED_PARAM(allFrames);
-    notImplemented();
-}
-
-void TestRunner::addUserStyleSheet(JSStringRef, bool)
-{
-    notImplemented();
-}
-
-void TestRunner::setScrollbarPolicy(JSStringRef, JSStringRef)
-{
-    notImplemented();
-}
-
-void TestRunner::setWebViewEditable(bool)
-{
-    notImplemented();
-}
-
-void TestRunner::authenticateSession(JSStringRef url, JSStringRef username, JSStringRef password)
-{
-    notImplemented();
-}
-
-bool TestRunner::callShouldCloseOnWebView()
-{
-    notImplemented();
-    return false;
-}
-
-void TestRunner::setSpatialNavigationEnabled(bool enable)
-{
-    notImplemented();
-}
-
-void TestRunner::addOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef destinationProtocol, JSStringRef destinationHost, bool allowDestinationSubdomains)
-{
-    WebCore::SecurityPolicy::addOriginAccessWhitelistEntry(*WebCore::SecurityOrigin::createFromString(jsStringRefToWebCoreString(sourceOrigin)),
-        jsStringRefToWebCoreString(destinationProtocol),
-        jsStringRefToWebCoreString(destinationHost),
-        allowDestinationSubdomains);
-}
-
-void TestRunner::removeOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef destinationProtocol, JSStringRef destinationHost, bool allowDestinationSubdomains)
-{
-    WebCore::SecurityPolicy::removeOriginAccessWhitelistEntry(*WebCore::SecurityOrigin::createFromString(jsStringRefToWebCoreString(sourceOrigin)),
-        jsStringRefToWebCoreString(destinationProtocol),
-        jsStringRefToWebCoreString(destinationHost),
-        allowDestinationSubdomains);
-}
-
-void TestRunner::setAllowFileAccessFromFileURLs(bool enabled)
-{
-    if (!mainFrame)
-        return;
-
-    mainFrame->page()->settings()->setAllowFileAccessFromFileURLs(enabled);
-}
-
-void TestRunner::setAllowUniversalAccessFromFileURLs(bool enabled)
-{
-    if (!mainFrame)
-        return;
-
-    mainFrame->page()->settings()->setAllowUniversalAccessFromFileURLs(enabled);
-}
-
-void TestRunner::apiTestNewWindowDataLoadBaseURL(JSStringRef utf8Data, JSStringRef baseURL)
-{
-    notImplemented();
-}
-
-void TestRunner::apiTestGoToCurrentBackForwardItem()
-{
-    notImplemented();
-}
-
-void TestRunner::setJavaScriptCanAccessClipboard(bool flag)
-{
-    BlackBerry::WebKit::DumpRenderTree::currentInstance()->page()->setJavaScriptCanAccessClipboard(flag);
-}
-
-void TestRunner::setPluginsEnabled(bool flag)
-{
-    notImplemented();
-}
-
-void TestRunner::abortModal()
-{
-    notImplemented();
-}
-
-void TestRunner::clearAllApplicationCaches()
-{
-    notImplemented();
-}
-
-void TestRunner::setApplicationCacheOriginQuota(unsigned long long quota)
-{
-    notImplemented();
-}
-
-void TestRunner::setMockDeviceOrientation(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma)
-{
-    DumpRenderTreeSupport::setMockDeviceOrientation(BlackBerry::WebKit::DumpRenderTree::currentInstance()->page(), canProvideAlpha, alpha, canProvideBeta, beta, canProvideGamma, gamma);
-}
-
-void TestRunner::addMockSpeechInputResult(JSStringRef result, double confidence, JSStringRef language)
-{
-    notImplemented();
-}
-
-void TestRunner::setGeolocationPermission(bool allow)
-{
-    setGeolocationPermissionCommon(allow);
-    DumpRenderTreeSupport::setMockGeolocationPermission(BlackBerry::WebKit::DumpRenderTree::currentInstance()->page(), allow);
-}
-
-void TestRunner::setViewModeMediaFeature(const JSStringRef mode)
-{
-    notImplemented();
-}
-
-void TestRunner::setSerializeHTTPLoads(bool)
-{
-    // FIXME: Implement if needed for https://bugs.webkit.org/show_bug.cgi?id=50758.
-    notImplemented();
-}
-
-void TestRunner::setTextDirection(JSStringRef)
-{
-    notImplemented();
-}
-
-void TestRunner::goBack()
-{
-    // FIXME: implement to enable loader/navigation-while-deferring-loads.html
-    notImplemented();
-}
-
-void TestRunner::setDefersLoading(bool)
-{
-    // FIXME: implement to enable loader/navigation-while-deferring-loads.html
-    notImplemented();
-}
-
-JSValueRef TestRunner::originsWithLocalStorage(JSContextRef context)
-{
-    notImplemented();
-    return JSValueMakeUndefined(context);
-}
-
-void TestRunner::observeStorageTrackerNotifications(unsigned)
-{
-    notImplemented();
-}
-
-void TestRunner::syncLocalStorage()
-{
-    notImplemented();
-}
-
-void TestRunner::deleteAllLocalStorage()
-{
-    notImplemented();
-}
-
-int TestRunner::numberOfPendingGeolocationPermissionRequests()
-{
-    return DumpRenderTreeSupport::numberOfPendingGeolocationPermissionRequests(BlackBerry::WebKit::DumpRenderTree::currentInstance()->page());
-}
-
-bool TestRunner::findString(JSContextRef context, JSStringRef target, JSObjectRef optionsArray)
-{
-    WebCore::FindOptions options = 0;
-
-    String nameStr = jsStringRefToWebCoreString(target);
-
-    JSRetainPtr<JSStringRef> lengthPropertyName(Adopt, JSStringCreateWithUTF8CString("length"));
-    size_t length = 0;
-    if (optionsArray) {
-        JSValueRef lengthValue = JSObjectGetProperty(context, optionsArray, lengthPropertyName.get(), 0);
-        if (!JSValueIsNumber(context, lengthValue))
-            return false;
-        length = static_cast<size_t>(JSValueToNumber(context, lengthValue, 0));
-    }
-
-    for (size_t i = 0; i < length; ++i) {
-        JSValueRef value = JSObjectGetPropertyAtIndex(context, optionsArray, i, 0);
-        if (!JSValueIsString(context, value))
-            continue;
-
-        JSRetainPtr<JSStringRef> optionName(Adopt, JSValueToStringCopy(context, value, 0));
-
-        if (JSStringIsEqualToUTF8CString(optionName.get(), "CaseInsensitive"))
-            options |= WebCore::CaseInsensitive;
-        else if (JSStringIsEqualToUTF8CString(optionName.get(), "AtWordStarts"))
-            options |= WebCore::AtWordStarts;
-        else if (JSStringIsEqualToUTF8CString(optionName.get(), "TreatMedialCapitalAsWordStart"))
-            options |= WebCore::TreatMedialCapitalAsWordStart;
-        else if (JSStringIsEqualToUTF8CString(optionName.get(), "Backwards"))
-            options |= WebCore::Backwards;
-        else if (JSStringIsEqualToUTF8CString(optionName.get(), "WrapAround"))
-            options |= WebCore::WrapAround;
-        else if (JSStringIsEqualToUTF8CString(optionName.get(), "StartInSelection"))
-            options |= WebCore::StartInSelection;
-    }
-
-    // FIXME: we don't need to call WebPage::findNextString(), this is a workaround
-    // so that test platform/blackberry/editing/text-iterator/findString-markers.html can pass.
-
-    // Our layout tests assume find will wrap and highlight all matches.
-    BlackBerry::WebKit::DumpRenderTree::currentInstance()->page()->findNextString(nameStr.utf8().data(),
-        !(options & WebCore::Backwards), !(options & WebCore::CaseInsensitive), true /* wrap */, true /* highlightAllMatches */);
-
-    return mainFrame->page()->findString(nameStr, options);
-}
-
-void TestRunner::deleteLocalStorageForOrigin(JSStringRef URL)
-{
-    // FIXME: Implement.
-}
-
-void TestRunner::setValueForUser(JSContextRef context, JSValueRef nodeObject, JSStringRef value)
-{
-    JSC::ExecState* exec = toJS(context);
-    WebCore::Element* element = toElement(toJS(exec, nodeObject));
-    if (!element)
-        return;
-    WebCore::HTMLInputElement* inputElement = element->toInputElement();
-    if (!inputElement)
-        return;
-
-    inputElement->setValueForUser(jsStringRefToWebCoreString(value));
-}
-
-long long TestRunner::applicationCacheDiskUsageForOrigin(JSStringRef origin)
-{
-    // FIXME: Implement to support getting disk usage by all application caches for an origin.
-    return 0;
-}
-
-void TestRunner::addChromeInputField()
-{
-}
-
-void TestRunner::removeChromeInputField()
-{
-}
-
-void TestRunner::focusWebView()
-{
-}
-
-void TestRunner::setBackingScaleFactor(double)
-{
-}
-
-void TestRunner::setMockSpeechInputDumpRect(bool)
-{
-}
-
-void TestRunner::grantWebNotificationPermission(JSStringRef origin)
-{
-}
-
-void TestRunner::denyWebNotificationPermission(JSStringRef jsOrigin)
-{
-}
-
-void TestRunner::removeAllWebNotificationPermissions()
-{
-}
-
-void TestRunner::simulateWebNotificationClick(JSValueRef jsNotification)
-{
-}
-
-void TestRunner::simulateLegacyWebNotificationClick(JSStringRef title)
-{
-}
-
-void TestRunner::resetPageVisibility()
-{
-    notImplemented();
-}
-
-void TestRunner::setPageVisibility(const char*)
-{
-    notImplemented();
-}
-
-void TestRunner::setAutomaticLinkDetectionEnabled(bool)
-{
-    notImplemented();
-}
-
-void TestRunner::setStorageDatabaseIdleInterval(double)
-{
-    // FIXME: Implement this.
-    notImplemented();
-}
-
-void TestRunner::closeIdleLocalStorageDatabases()
-{
-    notImplemented();
-}
diff --git a/Tools/DumpRenderTree/blackberry/WorkQueueItemBlackBerry.cpp b/Tools/DumpRenderTree/blackberry/WorkQueueItemBlackBerry.cpp
deleted file mode 100644
index 5607c5e..0000000
--- a/Tools/DumpRenderTree/blackberry/WorkQueueItemBlackBerry.cpp
+++ /dev/null
@@ -1,90 +0,0 @@
-/*
- * Copyright (C) 2009, 2010, 2012 Research In Motion Limited. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
- */
-
-#include "config.h"
-#include "WorkQueueItem.h"
-
-#include "DumpRenderTreeBlackBerry.h"
-#include "Frame.h"
-#include "FrameLoadRequest.h"
-#include "KURL.h"
-#include "WebPage.h"
-#include <wtf/OwnArrayPtr.h>
-
-using namespace WebCore;
-
-bool LoadItem::invoke() const
-{
-    size_t targetArrSize = JSStringGetMaximumUTF8CStringSize(m_target.get());
-    size_t urlArrSize = JSStringGetMaximumUTF8CStringSize(m_url.get());
-    OwnArrayPtr<char> target = adoptArrayPtr(new char[targetArrSize]);
-    OwnArrayPtr<char> url = adoptArrayPtr(new char[urlArrSize]);
-    size_t targetLen = JSStringGetUTF8CString(m_target.get(), target.get(), targetArrSize) - 1;
-    JSStringGetUTF8CString(m_url.get(), url.get(), urlArrSize);
-
-    Frame* frame;
-    if (target && targetLen)
-        frame = mainFrame->tree()->find(target.get());
-    else
-        frame = mainFrame;
-
-    if (!frame)
-        return false;
-
-    KURL kurl = KURL(KURL(), url.get());
-    frame->loader()->load(FrameLoadRequest(frame, ResourceRequest(kurl)));
-    return true;
-}
-
-bool LoadHTMLStringItem::invoke() const
-{
-    size_t contentSize = JSStringGetMaximumUTF8CStringSize(m_content.get());
-    size_t baseURLSize = JSStringGetMaximumUTF8CStringSize(m_baseURL.get());
-    size_t unreachableURLSize = JSStringGetMaximumUTF8CStringSize(m_unreachableURL.get());
-    OwnArrayPtr<char> content = adoptArrayPtr(new char[contentSize]);
-    OwnArrayPtr<char> baseURL = adoptArrayPtr(new char[baseURLSize]);
-    OwnArrayPtr<char> unreachableURL = adoptArrayPtr(new char[unreachableURLSize]);
-    JSStringGetUTF8CString(m_content.get(), content.get(), contentSize);
-    JSStringGetUTF8CString(m_baseURL.get(), baseURL.get(), baseURLSize);
-    JSStringGetUTF8CString(m_unreachableURL.get(), unreachableURL.get(), unreachableURLSize);
-    BlackBerry::WebKit::DumpRenderTree::currentInstance()->page()->loadString(content.get(), baseURL.get(), "text/html", unreachableURLSize ? unreachableURL.get() : "");
-    return true;
-}
-
-bool ReloadItem::invoke() const
-{
-    mainFrame->loader()->reload(true);
-    return true;
-}
-
-bool ScriptItem::invoke() const
-{
-    BlackBerry::WebKit::JavaScriptDataType type;
-    BlackBerry::Platform::String result;
-    size_t scriptArrSize = JSStringGetMaximumUTF8CStringSize(m_script.get());
-    OwnArrayPtr<char> script = adoptArrayPtr(new char[scriptArrSize]);
-    JSStringGetUTF8CString(m_script.get(), script.get(), scriptArrSize);
-    BlackBerry::WebKit::DumpRenderTree::currentInstance()->page()->executeJavaScript(BlackBerry::Platform::String::fromRawData(script.get(), scriptArrSize), type, result);
-    return true;
-}
-
-bool BackForwardItem::invoke() const
-{
-    return BlackBerry::WebKit::DumpRenderTree::currentInstance()->page()->goBackOrForward(m_howFar);
-}
-
diff --git a/Tools/DumpRenderTree/blackberry/build b/Tools/DumpRenderTree/blackberry/build
deleted file mode 100755
index fb8dce4..0000000
--- a/Tools/DumpRenderTree/blackberry/build
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-
-# This file builds the ImageDiff executable, to run
-# on the host machine.
-
-which qmake-qt4 > /dev/null
-if [ $? -eq 0 ] ; then
-    qmake-qt4
-else
-    qmake
-fi
-make
diff --git a/Tools/DumpRenderTree/blackberry/src.pro b/Tools/DumpRenderTree/blackberry/src.pro
deleted file mode 100644
index 1096795..0000000
--- a/Tools/DumpRenderTree/blackberry/src.pro
+++ /dev/null
@@ -1,16 +0,0 @@
-lessThan(QT_VERSION, 4.5) {
-    error("Qt 4.5 or greater is required.")
-}
-
-TEMPLATE = app
-TARGET = ImageDiff
-
-SOURCES += ../qt/ImageDiff.cpp
-DESTDIR = .
-
-unix:CONFIG += debug_and_release
-mac:CONFIG -= app_bundle
-win32: CONFIG += console
-
-QT = core gui
-
diff --git a/Tools/DumpRenderTree/cairo/PixelDumpSupportCairo.cpp b/Tools/DumpRenderTree/cairo/PixelDumpSupportCairo.cpp
deleted file mode 100644
index c10a3a7..0000000
--- a/Tools/DumpRenderTree/cairo/PixelDumpSupportCairo.cpp
+++ /dev/null
@@ -1,93 +0,0 @@
-/*
- * Copyright (C) 2009 Apple Inc. All rights reserved.
- *           (C) 2009 Brent Fulgham <bfulgham@webkit.org>
- *           (C) 2010 Igalia S.L
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PixelDumpSupportCairo.h"
-
-#include "DumpRenderTree.h"
-#include "PixelDumpSupport.h"
-#include <algorithm>
-#include <ctype.h>
-#include <wtf/Assertions.h>
-#include <wtf/MD5.h>
-#include <wtf/RefPtr.h>
-#include <wtf/StringExtras.h>
-
-using namespace std;
-
-static cairo_status_t writeFunction(void* closure, const unsigned char* data, unsigned int length)
-{
-    Vector<unsigned char>* in = reinterpret_cast<Vector<unsigned char>*>(closure);
-    in->append(data, length);
-    return CAIRO_STATUS_SUCCESS;
-}
-
-static void printPNG(cairo_surface_t* image, const char* checksum)
-{
-    Vector<unsigned char> pixelData;
-    // Only PNG output is supported for now.
-    cairo_surface_write_to_png_stream(image, writeFunction, &pixelData);
-
-    const size_t dataLength = pixelData.size();
-    const unsigned char* data = pixelData.data();
-
-    printPNG(data, dataLength, checksum);
-}
-
-void computeMD5HashStringForBitmapContext(BitmapContext* context, char hashString[33])
-{
-    cairo_t* bitmapContext = context->cairoContext();
-    cairo_surface_t* surface = cairo_get_target(bitmapContext);
-
-    ASSERT(cairo_image_surface_get_format(surface) == CAIRO_FORMAT_ARGB32); // ImageDiff assumes 32 bit RGBA, we must as well.
-
-    size_t pixelsHigh = cairo_image_surface_get_height(surface);
-    size_t pixelsWide = cairo_image_surface_get_width(surface);
-    size_t bytesPerRow = cairo_image_surface_get_stride(surface);
-
-    MD5 md5Context;
-    unsigned char* bitmapData = static_cast<unsigned char*>(cairo_image_surface_get_data(surface));
-    for (unsigned row = 0; row < pixelsHigh; row++) {
-        md5Context.addBytes(bitmapData, 4 * pixelsWide);
-        bitmapData += bytesPerRow;
-    }
-    Vector<uint8_t, 16> hash;
-    md5Context.checksum(hash);
-
-    snprintf(hashString, 33, "%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",
-        hash[0], hash[1], hash[2], hash[3], hash[4], hash[5], hash[6], hash[7],
-        hash[8], hash[9], hash[10], hash[11], hash[12], hash[13], hash[14], hash[15]);
-}
-
-void dumpBitmap(BitmapContext* context, const char* checksum)
-{
-    cairo_surface_t* surface = cairo_get_target(context->cairoContext());
-    printPNG(surface, checksum);
-}
diff --git a/Tools/DumpRenderTree/cairo/PixelDumpSupportCairo.h b/Tools/DumpRenderTree/cairo/PixelDumpSupportCairo.h
deleted file mode 100644
index 071e874..0000000
--- a/Tools/DumpRenderTree/cairo/PixelDumpSupportCairo.h
+++ /dev/null
@@ -1,81 +0,0 @@
-/*
- * Copyright (C) 2009 Apple Inc. All rights reserved.
- *           (C) 2009 Brent Fulgham <bfulgham@webkit.org>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef PixelDumpSupportCairo_h
-#define PixelDumpSupportCairo_h
-
-#include <wtf/PassRefPtr.h>
-#include <wtf/RefCounted.h>
-
-#if PLATFORM(WIN)
-#include <windows.h>
-#include <cairo-win32.h>
-#elif PLATFORM(GTK) || PLATFORM(EFL)
-#include <cairo.h>
-#endif
-
-#if PLATFORM(WIN)
-typedef HBITMAP PlatformBitmapBuffer;
-#else
-typedef void* PlatformBitmapBuffer;
-#endif
-
-class BitmapContext : public RefCounted<BitmapContext> {
-public:
-    static PassRefPtr<BitmapContext> createByAdoptingBitmapAndContext(PlatformBitmapBuffer buffer, cairo_t* context)
-    {
-        return adoptRef(new BitmapContext(buffer, context));
-    }
-
-    ~BitmapContext()
-    {
-        if (m_buffer)
-#if PLATFORM(WIN)
-            DeleteObject(m_buffer);
-#else
-            free(m_buffer);
-#endif
-        cairo_destroy(m_context);
-    }
-
-    cairo_t* cairoContext() const { return m_context; }
-
-private:
-
-    BitmapContext(PlatformBitmapBuffer buffer, cairo_t* context)
-        : m_buffer(buffer)
-        , m_context(context)
-    {
-    }
-
-    PlatformBitmapBuffer m_buffer;
-    cairo_t* m_context;
-};
-
-#endif // PixelDumpSupportCairo_h
diff --git a/Tools/DumpRenderTree/cf/WebArchiveDumpSupport.cpp b/Tools/DumpRenderTree/cf/WebArchiveDumpSupport.cpp
deleted file mode 100644
index 1f7f172..0000000
--- a/Tools/DumpRenderTree/cf/WebArchiveDumpSupport.cpp
+++ /dev/null
@@ -1,230 +0,0 @@
-/*
- * Copyright (C) 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "WebArchiveDumpSupport.h"
-
-#include <CoreFoundation/CoreFoundation.h>
-#include <CFNetwork/CFNetwork.h>
-#include <wtf/RetainPtr.h>
-
-extern "C" {
-
-CFURLRef CFURLResponseGetURL(CFURLResponseRef response);
-CFStringRef CFURLResponseGetMIMEType(CFURLResponseRef response);
-CFStringRef CFURLResponseGetTextEncodingName(CFURLResponseRef response);
-SInt64 CFURLResponseGetExpectedContentLength(CFURLResponseRef response);
-CFHTTPMessageRef CFURLResponseGetHTTPResponse(CFURLResponseRef response);
-
-CFTypeID CFURLResponseGetTypeID(void);
-
-}
-
-static void convertMIMEType(CFMutableStringRef mimeType)
-{
-#if __MAC_OS_X_VERSION_MIN_REQUIRED == 1050
-    // Workaround for <rdar://problem/5539824> on Leopard
-    if (CFStringCompare(mimeType, CFSTR("text/xml"), kCFCompareAnchored | kCFCompareCaseInsensitive) == kCFCompareEqualTo)
-        CFStringReplaceAll(mimeType, CFSTR("application/xml"));
-#endif
-    // Workaround for <rdar://problem/6234318> with Dashcode 2.0
-    if (CFStringCompare(mimeType, CFSTR("application/x-javascript"), kCFCompareAnchored | kCFCompareCaseInsensitive) == kCFCompareEqualTo)
-        CFStringReplaceAll(mimeType, CFSTR("text/javascript"));
-}
-
-static void convertWebResourceDataToString(CFMutableDictionaryRef resource)
-{
-    CFMutableStringRef mimeType = (CFMutableStringRef)CFDictionaryGetValue(resource, CFSTR("WebResourceMIMEType"));
-    CFStringLowercase(mimeType, CFLocaleGetSystem());
-    convertMIMEType(mimeType);
-
-    CFArrayRef supportedMIMETypes = supportedNonImageMIMETypes();
-    if (CFStringHasPrefix(mimeType, CFSTR("text/")) || CFArrayContainsValue(supportedMIMETypes, CFRangeMake(0, CFArrayGetCount(supportedMIMETypes)), mimeType)) {
-        CFStringRef textEncodingName = static_cast<CFStringRef>(CFDictionaryGetValue(resource, CFSTR("WebResourceTextEncodingName")));
-        CFStringEncoding stringEncoding;
-        if (textEncodingName && CFStringGetLength(textEncodingName))
-            stringEncoding = CFStringConvertIANACharSetNameToEncoding(textEncodingName);
-        else
-            stringEncoding = kCFStringEncodingUTF8;
-
-        CFDataRef data = static_cast<CFDataRef>(CFDictionaryGetValue(resource, CFSTR("WebResourceData")));
-        RetainPtr<CFStringRef> dataAsString(AdoptCF, CFStringCreateFromExternalRepresentation(kCFAllocatorDefault, data, stringEncoding));
-        if (dataAsString)
-            CFDictionarySetValue(resource, CFSTR("WebResourceData"), dataAsString.get());
-    }
-}
-
-static void normalizeHTTPResponseHeaderFields(CFMutableDictionaryRef fields)
-{
-    // Normalize headers
-    if (CFDictionaryContainsKey(fields, CFSTR("Date")))
-        CFDictionarySetValue(fields, CFSTR("Date"), CFSTR("Sun, 16 Nov 2008 17:00:00 GMT"));
-    if (CFDictionaryContainsKey(fields, CFSTR("Last-Modified")))
-        CFDictionarySetValue(fields, CFSTR("Last-Modified"), CFSTR("Sun, 16 Nov 2008 16:55:00 GMT"));
-    if (CFDictionaryContainsKey(fields, CFSTR("Etag")))
-        CFDictionarySetValue(fields, CFSTR("Etag"), CFSTR("\"301925-21-45c7d72d3e780\""));
-    if (CFDictionaryContainsKey(fields, CFSTR("Server")))
-        CFDictionarySetValue(fields, CFSTR("Server"), CFSTR("Apache/2.2.9 (Unix) mod_ssl/2.2.9 OpenSSL/0.9.7l PHP/5.2.6"));
-
-    // Remove headers
-    CFDictionaryRemoveValue(fields, CFSTR("Connection"));
-    CFDictionaryRemoveValue(fields, CFSTR("Keep-Alive"));
-}
-
-static void normalizeWebResourceURL(CFMutableStringRef webResourceURL)
-{
-    static CFIndex fileUrlLength = CFStringGetLength(CFSTR("file://"));
-    CFRange layoutTestsWebArchivePathRange = CFStringFind(webResourceURL, CFSTR("/LayoutTests/"), kCFCompareBackwards);
-    if (layoutTestsWebArchivePathRange.location == kCFNotFound)
-        return;
-    CFRange currentWorkingDirectoryRange = CFRangeMake(fileUrlLength, layoutTestsWebArchivePathRange.location - fileUrlLength);
-    CFStringReplace(webResourceURL, currentWorkingDirectoryRange, CFSTR(""));
-}
-
-static void convertWebResourceResponseToDictionary(CFMutableDictionaryRef propertyList)
-{
-    CFDataRef responseData = static_cast<CFDataRef>(CFDictionaryGetValue(propertyList, CFSTR("WebResourceResponse"))); // WebResourceResponseKey in WebResource.m
-    if (CFGetTypeID(responseData) != CFDataGetTypeID())
-        return;
-
-    RetainPtr<CFURLResponseRef> response(AdoptCF, createCFURLResponseFromResponseData(responseData));
-    if (!response)
-        return;
-
-    RetainPtr<CFMutableDictionaryRef> responseDictionary(AdoptCF, CFDictionaryCreateMutable(kCFAllocatorDefault, 0, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks));
-
-    RetainPtr<CFMutableStringRef> urlString(AdoptCF, CFStringCreateMutableCopy(kCFAllocatorDefault, 0, CFURLGetString(CFURLResponseGetURL(response.get()))));
-    normalizeWebResourceURL(urlString.get());
-    CFDictionarySetValue(responseDictionary.get(), CFSTR("URL"), urlString.get());
-
-    RetainPtr<CFMutableStringRef> mimeTypeString(AdoptCF, CFStringCreateMutableCopy(kCFAllocatorDefault, 0, CFURLResponseGetMIMEType(response.get())));
-    convertMIMEType(mimeTypeString.get());
-    CFDictionarySetValue(responseDictionary.get(), CFSTR("MIMEType"), mimeTypeString.get());
-
-    CFStringRef textEncodingName = CFURLResponseGetTextEncodingName(response.get());
-    if (textEncodingName)
-        CFDictionarySetValue(responseDictionary.get(), CFSTR("textEncodingName"), textEncodingName);
-
-    SInt64 expectedContentLength = CFURLResponseGetExpectedContentLength(response.get());
-    RetainPtr<CFNumberRef> expectedContentLengthNumber(AdoptCF, CFNumberCreate(kCFAllocatorDefault, kCFNumberSInt64Type, &expectedContentLength));
-    CFDictionarySetValue(responseDictionary.get(), CFSTR("expectedContentLength"), expectedContentLengthNumber.get());
-
-    if (CFHTTPMessageRef httpMessage = CFURLResponseGetHTTPResponse(response.get())) {
-        RetainPtr<CFDictionaryRef> allHeaders(AdoptCF, CFHTTPMessageCopyAllHeaderFields(httpMessage));
-        RetainPtr<CFMutableDictionaryRef> allHeaderFields(AdoptCF, CFDictionaryCreateMutableCopy(kCFAllocatorDefault, 0, allHeaders.get()));
-        normalizeHTTPResponseHeaderFields(allHeaderFields.get());
-        CFDictionarySetValue(responseDictionary.get(), CFSTR("allHeaderFields"), allHeaderFields.get());
-
-        CFIndex statusCode = CFHTTPMessageGetResponseStatusCode(httpMessage);
-        RetainPtr<CFNumberRef> statusCodeNumber(AdoptCF, CFNumberCreate(kCFAllocatorDefault, kCFNumberCFIndexType, &statusCode));
-        CFDictionarySetValue(responseDictionary.get(), CFSTR("statusCode"), statusCodeNumber.get());
-    }
-
-    CFDictionarySetValue(propertyList, CFSTR("WebResourceResponse"), responseDictionary.get());
-}
-
-static CFComparisonResult compareResourceURLs(const void *val1, const void *val2, void *context)
-{
-    CFStringRef url1 = static_cast<CFStringRef>(CFDictionaryGetValue(static_cast<CFDictionaryRef>(val1), CFSTR("WebResourceURL")));
-    CFStringRef url2 = static_cast<CFStringRef>(CFDictionaryGetValue(static_cast<CFDictionaryRef>(val2), CFSTR("WebResourceURL")));
- 
-    return CFStringCompare(url1, url2, kCFCompareAnchored);
-}
-
-CFStringRef createXMLStringFromWebArchiveData(CFDataRef webArchiveData)
-{
-    CFErrorRef error = 0;
-    CFPropertyListFormat format = kCFPropertyListBinaryFormat_v1_0;
-
-#if __MAC_OS_X_VERSION_MIN_REQUIRED == 1050
-    CFIndex bytesCount = CFDataGetLength(webArchiveData);
-    RetainPtr<CFReadStreamRef> readStream(AdoptCF, CFReadStreamCreateWithBytesNoCopy(kCFAllocatorDefault, CFDataGetBytePtr(webArchiveData), bytesCount, kCFAllocatorNull));
-    CFReadStreamOpen(readStream.get());
-    RetainPtr<CFMutableDictionaryRef> propertyList(AdoptCF, (CFMutableDictionaryRef)CFPropertyListCreateFromStream(kCFAllocatorDefault, readStream.get(), bytesCount, kCFPropertyListMutableContainersAndLeaves, &format, 0));
-    CFReadStreamClose(readStream.get());
-#else
-    RetainPtr<CFMutableDictionaryRef> propertyList(AdoptCF, (CFMutableDictionaryRef)CFPropertyListCreateWithData(kCFAllocatorDefault, webArchiveData, kCFPropertyListMutableContainersAndLeaves, &format, &error));
-#endif
-
-    if (!propertyList) {
-        if (error)
-            return CFErrorCopyDescription(error);
-        return static_cast<CFStringRef>(CFRetain(CFSTR("An unknown error occurred converting data to property list.")));
-    }
-
-    RetainPtr<CFMutableArrayRef> resources(AdoptCF, CFArrayCreateMutable(kCFAllocatorDefault, 0, &kCFTypeArrayCallBacks));
-    CFArrayAppendValue(resources.get(), propertyList.get());
-
-    while (CFArrayGetCount(resources.get())) {
-        RetainPtr<CFMutableDictionaryRef> resourcePropertyList = (CFMutableDictionaryRef)CFArrayGetValueAtIndex(resources.get(), 0);
-        CFArrayRemoveValueAtIndex(resources.get(), 0);
-
-        CFMutableDictionaryRef mainResource = (CFMutableDictionaryRef)CFDictionaryGetValue(resourcePropertyList.get(), CFSTR("WebMainResource"));
-        normalizeWebResourceURL((CFMutableStringRef)CFDictionaryGetValue(mainResource, CFSTR("WebResourceURL")));
-        convertWebResourceDataToString(mainResource);
-
-        // Add subframeArchives to list for processing
-        CFMutableArrayRef subframeArchives = (CFMutableArrayRef)CFDictionaryGetValue(resourcePropertyList.get(), CFSTR("WebSubframeArchives")); // WebSubframeArchivesKey in WebArchive.m
-        if (subframeArchives)
-            CFArrayAppendArray(resources.get(), subframeArchives, CFRangeMake(0, CFArrayGetCount(subframeArchives)));
-
-        CFMutableArrayRef subresources = (CFMutableArrayRef)CFDictionaryGetValue(resourcePropertyList.get(), CFSTR("WebSubresources")); // WebSubresourcesKey in WebArchive.m
-        if (!subresources)
-            continue;
-
-        CFIndex subresourcesCount = CFArrayGetCount(subresources);
-        for (CFIndex i = 0; i < subresourcesCount; ++i) {
-            CFMutableDictionaryRef subresourcePropertyList = (CFMutableDictionaryRef)CFArrayGetValueAtIndex(subresources, i);
-            normalizeWebResourceURL((CFMutableStringRef)CFDictionaryGetValue(subresourcePropertyList, CFSTR("WebResourceURL")));
-            convertWebResourceResponseToDictionary(subresourcePropertyList);
-            convertWebResourceDataToString(subresourcePropertyList);
-        }
-
-        // Sort the subresources so they're always in a predictable order for the dump
-        CFArraySortValues(subresources, CFRangeMake(0, CFArrayGetCount(subresources)), compareResourceURLs, 0);
-    }
-
-    error = 0;
-
-#if __MAC_OS_X_VERSION_MIN_REQUIRED == 1050
-    RetainPtr<CFDataRef> xmlData(AdoptCF, CFPropertyListCreateXMLData(kCFAllocatorDefault, propertyList.get()));
-#else
-    RetainPtr<CFDataRef> xmlData(AdoptCF, CFPropertyListCreateData(kCFAllocatorDefault, propertyList.get(), kCFPropertyListXMLFormat_v1_0, 0, &error));
-#endif
-
-    if (!xmlData) {
-        if (error)
-            return CFErrorCopyDescription(error);
-        return static_cast<CFStringRef>(CFRetain(CFSTR("An unknown error occurred converting property list to data.")));
-    }
-
-    RetainPtr<CFStringRef> xmlString(AdoptCF, CFStringCreateFromExternalRepresentation(kCFAllocatorDefault, xmlData.get(), kCFStringEncodingUTF8));
-    RetainPtr<CFMutableStringRef> string(AdoptCF, CFStringCreateMutableCopy(kCFAllocatorDefault, 0, xmlString.get()));
-
-    // Replace "Apple Computer" with "Apple" in the DTD declaration.
-    CFStringFindAndReplace(string.get(), CFSTR("-//Apple Computer//"), CFSTR("-//Apple//"), CFRangeMake(0, CFStringGetLength(string.get())), 0);
-
-    return string.leakRef();
-}
diff --git a/Tools/DumpRenderTree/cf/WebArchiveDumpSupport.h b/Tools/DumpRenderTree/cf/WebArchiveDumpSupport.h
deleted file mode 100644
index 00c5818..0000000
--- a/Tools/DumpRenderTree/cf/WebArchiveDumpSupport.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * Copyright (C) 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef WebArchiveDumpSupport_h
-#define WebArchiveDumpSupport_h
-
-#include <CoreFoundation/CoreFoundation.h>
-
-typedef struct _CFURLResponse* CFURLResponseRef;
-
-CFStringRef createXMLStringFromWebArchiveData(CFDataRef webArchiveData);
-
-// MARK: -
-// MARK: Platform-specific methods
-
-CFURLResponseRef createCFURLResponseFromResponseData(CFDataRef responseData);
-CFArrayRef supportedNonImageMIMETypes();
-
-#endif /* WebArchiveDumpSupport_h */
diff --git a/Tools/DumpRenderTree/cg/ImageDiffCG.cpp b/Tools/DumpRenderTree/cg/ImageDiffCG.cpp
deleted file mode 100644
index 7fa5110..0000000
--- a/Tools/DumpRenderTree/cg/ImageDiffCG.cpp
+++ /dev/null
@@ -1,265 +0,0 @@
-/*
- * Copyright (C) 2005, 2007 Apple Inc. All rights reserved.
- * Copyright (C) 2005 Ben La Monica <ben.lamonica@gmail.com>.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#if defined(WIN32) || defined(_WIN32)
-#define max max
-#define min min
-#endif
-
-// FIXME: We need to be able to include these defines from a config.h somewhere.
-#define JS_EXPORT_PRIVATE
-#define WTF_EXPORT_PRIVATE
-
-#include <stdio.h>
-#include <wtf/Platform.h>
-#include <wtf/RetainPtr.h>
-
-#if PLATFORM(WIN)
-#include <winsock2.h>
-#include <windows.h>
-#include <fcntl.h>
-#include <io.h>
-#include <wtf/MathExtras.h>
-#endif
-
-#include <CoreGraphics/CGBitmapContext.h>
-#include <CoreGraphics/CGImage.h>
-#include <ImageIO/CGImageDestination.h>
-
-#if PLATFORM(MAC)
-#include <LaunchServices/UTCoreTypes.h>
-#endif
-
-#ifndef CGFLOAT_DEFINED
-#ifdef __LP64__
-typedef double CGFloat;
-#else
-typedef float CGFloat;
-#endif
-#define CGFLOAT_DEFINED 1
-#endif
-
-using namespace std;
-
-#if PLATFORM(WIN)
-static inline float strtof(const char *nptr, char **endptr)
-{
-    return strtod(nptr, endptr);
-}
-static const CFStringRef kUTTypePNG = CFSTR("public.png");
-#endif
-
-static RetainPtr<CGImageRef> createImageFromStdin(int bytesRemaining)
-{
-    unsigned char buffer[2048];
-    RetainPtr<CFMutableDataRef> data(AdoptCF, CFDataCreateMutable(0, bytesRemaining));
-
-    while (bytesRemaining > 0) {
-        size_t bytesToRead = min(bytesRemaining, 2048);
-        size_t bytesRead = fread(buffer, 1, bytesToRead, stdin);
-        CFDataAppendBytes(data.get(), buffer, static_cast<CFIndex>(bytesRead));
-        bytesRemaining -= static_cast<int>(bytesRead);
-    }
-    RetainPtr<CGDataProviderRef> dataProvider(AdoptCF, CGDataProviderCreateWithCFData(data.get()));
-    return RetainPtr<CGImageRef>(AdoptCF, CGImageCreateWithPNGDataProvider(dataProvider.get(), 0, false, kCGRenderingIntentDefault));
-}
-
-static void releaseMallocBuffer(void* info, const void* data, size_t size)
-{
-    free((void*)data);
-}
-
-static RetainPtr<CGImageRef> createDifferenceImage(CGImageRef baseImage, CGImageRef testImage, float& difference)
-{
-    size_t width = CGImageGetWidth(baseImage);
-    size_t height = CGImageGetHeight(baseImage);
-    size_t rowBytes = width * 4;
-
-    // Draw base image in bitmap context
-    void* baseBuffer = calloc(height, rowBytes);
-    RetainPtr<CGContextRef> baseContext(AdoptCF, CGBitmapContextCreate(baseBuffer, width, height, 8, rowBytes, CGImageGetColorSpace(baseImage), kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host));
-    CGContextDrawImage(baseContext.get(), CGRectMake(0, 0, width, height), baseImage);
-
-    // Draw test image in bitmap context
-    void* buffer = calloc(height, rowBytes);
-    RetainPtr<CGContextRef> context(AdoptCF, CGBitmapContextCreate(buffer, width, height, 8, rowBytes, CGImageGetColorSpace(testImage), kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host));
-    CGContextDrawImage(context.get(), CGRectMake(0, 0, width, height), testImage);
-
-    // Compare the content of the 2 bitmaps
-    void* diffBuffer = malloc(width * height);
-    float count = 0.0f;
-    float sum = 0.0f;
-    float maxDistance = 0.0f;
-    unsigned char* basePixel = (unsigned char*)baseBuffer;
-    unsigned char* pixel = (unsigned char*)buffer;
-    unsigned char* diff = (unsigned char*)diffBuffer;
-    for (size_t y = 0; y < height; ++y) {
-        for (size_t x = 0; x < width; ++x) {
-            float red = (pixel[0] - basePixel[0]) / max<float>(255 - basePixel[0], basePixel[0]);
-            float green = (pixel[1] - basePixel[1]) / max<float>(255 - basePixel[1], basePixel[1]);
-            float blue = (pixel[2] - basePixel[2]) / max<float>(255 - basePixel[2], basePixel[2]);
-            float alpha = (pixel[3] - basePixel[3]) / max<float>(255 - basePixel[3], basePixel[3]);
-            float distance = sqrtf(red * red + green * green + blue * blue + alpha * alpha) / 2.0f;
-            
-            *diff++ = (unsigned char)(distance * 255.0f);
-            
-            if (distance >= 1.0f / 255.0f) {
-                count += 1.0f;
-                sum += distance;
-                if (distance > maxDistance)
-                    maxDistance = distance;
-            }
-            
-            basePixel += 4;
-            pixel += 4;
-        }
-    }
-    
-    // Compute the difference as a percentage combining both the number of different pixels and their difference amount i.e. the average distance over the entire image
-    if (count > 0.0f)
-        difference = 100.0f * sum / (height * width);
-    else
-        difference = 0.0f;
-
-    RetainPtr<CGImageRef> diffImage;
-    // Generate a normalized diff image if there is any difference
-    if (difference > 0.0f) {
-        if (maxDistance < 1.0f) {
-            diff = (unsigned char*)diffBuffer;
-            for(size_t p = 0; p < height * width; ++p)
-                diff[p] = diff[p] / maxDistance;
-        }
-        
-        static CGColorSpaceRef diffColorspace = CGColorSpaceCreateDeviceGray();
-        RetainPtr<CGDataProviderRef> provider(AdoptCF, CGDataProviderCreateWithData(0, diffBuffer, width * height, releaseMallocBuffer));
-        diffImage.adoptCF(CGImageCreate(width, height, 8, 8, width, diffColorspace, 0, provider.get(), 0, false, kCGRenderingIntentDefault));
-    }
-    else
-        free(diffBuffer);
-    
-    // Destroy drawing buffers
-    if (buffer)
-        free(buffer);
-    if (baseBuffer)
-        free(baseBuffer);
-    
-    return diffImage;
-}
-
-static inline bool imageHasAlpha(CGImageRef image)
-{
-    CGImageAlphaInfo info = CGImageGetAlphaInfo(image);
-    
-    return (info >= kCGImageAlphaPremultipliedLast) && (info <= kCGImageAlphaFirst);
-}
-
-int main(int argc, const char* argv[])
-{
-#if PLATFORM(WIN)
-    _setmode(0, _O_BINARY);
-    _setmode(1, _O_BINARY);
-#endif
-
-    float tolerance = 0.0f;
-
-    for (int i = 1; i < argc; ++i) {
-        if (!strcmp(argv[i], "-t") || !strcmp(argv[i], "--tolerance")) {
-            if (i >= argc - 1)
-                exit(1);
-            tolerance = strtof(argv[i + 1], 0);
-            ++i;
-            continue;
-        }
-    }
-
-    char buffer[2048];
-    RetainPtr<CGImageRef> actualImage;
-    RetainPtr<CGImageRef> baselineImage;
-
-    while (fgets(buffer, sizeof(buffer), stdin)) {
-        // remove the CR
-        char* newLineCharacter = strchr(buffer, '\n');
-        if (newLineCharacter)
-            *newLineCharacter = '\0';
-
-        if (!strncmp("Content-Length: ", buffer, 16)) {
-            strtok(buffer, " ");
-            int imageSize = strtol(strtok(0, " "), 0, 10);
-
-            if (imageSize > 0 && !actualImage)
-                actualImage = createImageFromStdin(imageSize);
-            else if (imageSize > 0 && !baselineImage)
-                baselineImage = createImageFromStdin(imageSize);
-            else
-                fputs("Error: image size must be specified.\n", stderr);
-        }
-
-        if (actualImage && baselineImage) {
-            RetainPtr<CGImageRef> diffImage;
-            float difference = 100.0f;
-
-            if ((CGImageGetWidth(actualImage.get()) == CGImageGetWidth(baselineImage.get())) && (CGImageGetHeight(actualImage.get()) == CGImageGetHeight(baselineImage.get())) && (imageHasAlpha(actualImage.get()) == imageHasAlpha(baselineImage.get()))) {
-                diffImage = createDifferenceImage(actualImage.get(), baselineImage.get(), difference); // difference is passed by reference
-                if (difference <= tolerance)
-                    difference = 0.0f;
-                else {
-                    difference = roundf(difference * 100.0f) / 100.0f;
-                    difference = max(difference, 0.01f); // round to 2 decimal places
-                }
-            } else {
-                if (CGImageGetWidth(actualImage.get()) != CGImageGetWidth(baselineImage.get()) || CGImageGetHeight(actualImage.get()) != CGImageGetHeight(baselineImage.get()))
-                    fprintf(stderr, "Error: test and reference images have different sizes. Test image is %lux%lu, reference image is %lux%lu\n",
-                        CGImageGetWidth(actualImage.get()), CGImageGetHeight(actualImage.get()),
-                        CGImageGetWidth(baselineImage.get()), CGImageGetHeight(baselineImage.get()));
-                else if (imageHasAlpha(actualImage.get()) != imageHasAlpha(baselineImage.get()))
-                    fprintf(stderr, "Error: test and reference images differ in alpha. Test image %s alpha, reference image %s alpha.\n",
-                        imageHasAlpha(actualImage.get()) ? "has" : "does not have",
-                        imageHasAlpha(baselineImage.get()) ? "has" : "does not have");
-            }
-            
-            if (difference > 0.0f) {
-                if (diffImage) {
-                    RetainPtr<CFMutableDataRef> imageData(AdoptCF, CFDataCreateMutable(0, 0));
-                    RetainPtr<CGImageDestinationRef> imageDest(AdoptCF, CGImageDestinationCreateWithData(imageData.get(), kUTTypePNG, 1, 0));
-                    CGImageDestinationAddImage(imageDest.get(), diffImage.get(), 0);
-                    CGImageDestinationFinalize(imageDest.get());
-                    printf("Content-Length: %lu\n", CFDataGetLength(imageData.get()));
-                    fwrite(CFDataGetBytePtr(imageData.get()), 1, CFDataGetLength(imageData.get()), stdout);
-                }
-
-                fprintf(stdout, "diff: %01.2f%% failed\n", difference);
-            } else
-                fprintf(stdout, "diff: %01.2f%% passed\n", difference);
-            
-            actualImage = 0;
-            baselineImage = 0;
-        }
-
-        fflush(stdout);
-    }
-
-    return 0;
-}
diff --git a/Tools/DumpRenderTree/cg/PixelDumpSupportCG.cpp b/Tools/DumpRenderTree/cg/PixelDumpSupportCG.cpp
deleted file mode 100644
index bf59b03..0000000
--- a/Tools/DumpRenderTree/cg/PixelDumpSupportCG.cpp
+++ /dev/null
@@ -1,113 +0,0 @@
-/*
- * Copyright (C) 2005, 2006, 2007 Apple Inc. All rights reserved.
- *           (C) 2007 Graham Dennis (graham.dennis@gmail.com)
- *           (C) 2007 Eric Seidel <eric@webkit.org>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PixelDumpSupportCG.h"
-
-#include "DumpRenderTree.h"
-#include "PixelDumpSupport.h"
-#include <ImageIO/CGImageDestination.h>
-#include <algorithm>
-#include <ctype.h>
-#include <wtf/Assertions.h>
-#include <wtf/RefPtr.h>
-#include <wtf/RetainPtr.h>
-#include <wtf/StringExtras.h>
-
-#if PLATFORM(WIN)
-#include "MD5.h"
-#elif PLATFORM(MAC)
-#include <LaunchServices/UTCoreTypes.h>
-#define COMMON_DIGEST_FOR_OPENSSL
-#include <CommonCrypto/CommonDigest.h>
-#endif
-
-using namespace std;
-
-#if PLATFORM(WIN)
-static const CFStringRef kUTTypePNG = CFSTR("public.png");
-#endif
-
-static void printPNG(CGImageRef image, const char* checksum)
-{
-    RetainPtr<CFMutableDataRef> imageData(AdoptCF, CFDataCreateMutable(0, 0));
-    RetainPtr<CGImageDestinationRef> imageDest(AdoptCF, CGImageDestinationCreateWithData(imageData.get(), kUTTypePNG, 1, 0));
-    CGImageDestinationAddImage(imageDest.get(), image, 0);
-    CGImageDestinationFinalize(imageDest.get());
-
-    const UInt8* data = CFDataGetBytePtr(imageData.get());
-    CFIndex dataLength = CFDataGetLength(imageData.get());
-
-    printPNG(static_cast<const unsigned char*>(data), static_cast<size_t>(dataLength), checksum);
-}
-
-void computeMD5HashStringForBitmapContext(BitmapContext* context, char hashString[33])
-{
-    CGContextRef bitmapContext = context->cgContext();
-
-    ASSERT(CGBitmapContextGetBitsPerPixel(bitmapContext) == 32); // ImageDiff assumes 32 bit RGBA, we must as well.
-    size_t pixelsHigh = CGBitmapContextGetHeight(bitmapContext);
-    size_t pixelsWide = CGBitmapContextGetWidth(bitmapContext);
-    size_t bytesPerRow = CGBitmapContextGetBytesPerRow(bitmapContext);
-
-    // We need to swap the bytes to ensure consistent hashes independently of endianness
-    MD5_CTX md5Context;
-    MD5_Init(&md5Context);
-    unsigned char* bitmapData = static_cast<unsigned char*>(CGBitmapContextGetData(bitmapContext));
-#if PLATFORM(MAC)
-    if ((CGBitmapContextGetBitmapInfo(bitmapContext) & kCGBitmapByteOrderMask) == kCGBitmapByteOrder32Big) {
-        for (unsigned row = 0; row < pixelsHigh; row++) {
-            uint32_t buffer[pixelsWide];
-            for (unsigned column = 0; column < pixelsWide; column++)
-                buffer[column] = OSReadLittleInt32(bitmapData, 4 * column);
-            MD5_Update(&md5Context, buffer, 4 * pixelsWide);
-            bitmapData += bytesPerRow;
-        }
-    } else
-#endif
-    {
-        for (unsigned row = 0; row < pixelsHigh; row++) {
-            MD5_Update(&md5Context, bitmapData, 4 * pixelsWide);
-            bitmapData += bytesPerRow;
-        }
-    }
-    unsigned char hash[16];
-    MD5_Final(hash, &md5Context);
-
-    hashString[0] = '\0';
-    for (int i = 0; i < 16; i++)
-        snprintf(hashString, 33, "%s%02x", hashString, hash[i]);
-}
-
-void dumpBitmap(BitmapContext* context, const char* checksum)
-{
-    RetainPtr<CGImageRef> image(AdoptCF, CGBitmapContextCreateImage(context->cgContext()));
-    printPNG(image.get(), checksum);
-}
diff --git a/Tools/DumpRenderTree/cg/PixelDumpSupportCG.h b/Tools/DumpRenderTree/cg/PixelDumpSupportCG.h
deleted file mode 100644
index f0c9746..0000000
--- a/Tools/DumpRenderTree/cg/PixelDumpSupportCG.h
+++ /dev/null
@@ -1,84 +0,0 @@
-/*
- * Copyright (C) 2005, 2006, 2007 Apple Inc. All rights reserved.
- *           (C) 2007 Graham Dennis (graham.dennis@gmail.com)
- *           (C) 2007 Eric Seidel <eric@webkit.org>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef PixelDumpSupportCG_h
-#define PixelDumpSupportCG_h
-
-#include <wtf/PassRefPtr.h>
-#include <wtf/RefCounted.h>
-#include <wtf/RetainPtr.h>
-
-#if PLATFORM(WIN)
-#include <windows.h>
-#endif
-
-typedef struct CGContext* CGContextRef;
-
-#if PLATFORM(MAC)
-typedef void* PlatformBitmapBuffer;
-#elif PLATFORM(WIN)
-typedef HBITMAP PlatformBitmapBuffer;
-#endif
-
-class BitmapContext : public RefCounted<BitmapContext> {
-public:
-    static PassRefPtr<BitmapContext> createByAdoptingBitmapAndContext(PlatformBitmapBuffer buffer, CGContextRef context)
-    {
-        return adoptRef(new BitmapContext(buffer, context));
-    }
-
-    ~BitmapContext()
-    {
-        if (m_buffer)
-#if PLATFORM(MAC)
-            free(m_buffer);
-#elif PLATFORM(WIN)
-            DeleteObject(m_buffer);
-#endif
-    }
-
-    CGContextRef cgContext() const { return m_context.get(); }
-
-private:
-
-    BitmapContext(PlatformBitmapBuffer buffer, CGContextRef context)
-        : m_buffer(buffer)
-        , m_context(AdoptCF, context)
-    {
-    }
-
-    PlatformBitmapBuffer m_buffer;
-    RetainPtr<CGContextRef> m_context;
-
-};
-
-PassRefPtr<BitmapContext> createBitmapContextFromWebView(bool onscreen, bool incrementalRepaint, bool sweepHorizontally, bool drawSelectionRect);
-
-#endif // PixelDumpSupportCG_h
diff --git a/Tools/DumpRenderTree/chromium/MockPlatform.cpp b/Tools/DumpRenderTree/chromium/MockPlatform.cpp
index 3e79b78..ee94578 100644
--- a/Tools/DumpRenderTree/chromium/MockPlatform.cpp
+++ b/Tools/DumpRenderTree/chromium/MockPlatform.cpp
@@ -62,7 +62,6 @@
     CRASH();
 }
 
-#if ENABLE(MEDIA_STREAM)
 WebMediaStreamCenter* MockPlatform::createMediaStreamCenter(WebMediaStreamCenterClient* client)
 {
     ASSERT(m_interfaces);
@@ -79,4 +78,3 @@
 
     return m_interfaces->createWebRTCPeerConnectionHandler(client);
 }
-#endif // ENABLE(MEDIA_STREAM)
diff --git a/Tools/DumpRenderTree/chromium/MockPlatform.h b/Tools/DumpRenderTree/chromium/MockPlatform.h
index 68b87d2..726e135 100644
--- a/Tools/DumpRenderTree/chromium/MockPlatform.h
+++ b/Tools/DumpRenderTree/chromium/MockPlatform.h
@@ -47,19 +47,15 @@
     void setInterfaces(WebTestRunner::WebTestInterfaces*);
     virtual void cryptographicallyRandomValues(unsigned char* buffer, size_t length) OVERRIDE;
 
-#if ENABLE(MEDIA_STREAM)
     virtual WebKit::WebMediaStreamCenter* createMediaStreamCenter(WebKit::WebMediaStreamCenterClient*) OVERRIDE;
     virtual WebKit::WebRTCPeerConnectionHandler* createRTCPeerConnectionHandler(WebKit::WebRTCPeerConnectionHandlerClient*) OVERRIDE;
-#endif // ENABLE(MEDIA_STREAM)
 
 private:
     MockPlatform();
 
     WebTestRunner::WebTestInterfaces* m_interfaces;
 
-#if ENABLE(MEDIA_STREAM)
     OwnPtr<WebKit::WebMediaStreamCenter> m_mockMediaStreamCenter;
-#endif // ENABLE(MEDIA_STREAM)
 };
 
 #endif // MockPlatform_h
diff --git a/Tools/DumpRenderTree/chromium/TestRunner/public/OWNERS b/Tools/DumpRenderTree/chromium/TestRunner/public/OWNERS
new file mode 100644
index 0000000..10b47ec
--- /dev/null
+++ b/Tools/DumpRenderTree/chromium/TestRunner/public/OWNERS
@@ -0,0 +1,7 @@
+set noparent
+abarth@chromium.org
+dglazkov@chromium.org
+darin@chromium.org
+jamesr@chromium.org
+jochen@chromium.org
+tkent@chromium.org
diff --git a/Tools/DumpRenderTree/chromium/TestRunner/public/WebPreferences.h b/Tools/DumpRenderTree/chromium/TestRunner/public/WebPreferences.h
index bfce5af..74eb547 100644
--- a/Tools/DumpRenderTree/chromium/TestRunner/public/WebPreferences.h
+++ b/Tools/DumpRenderTree/chromium/TestRunner/public/WebPreferences.h
@@ -63,10 +63,11 @@
     bool allowRunningOfInsecureContent;
     bool authorAndUserStylesEnabled;
     WebKit::WebString defaultTextEncodingName;
-    bool developerExtrasEnabled;
     bool experimentalWebGLEnabled;
     bool experimentalCSSRegionsEnabled;
+    bool experimentalCSSExclusionsEnabled;
     bool experimentalCSSGridLayoutEnabled;
+    bool experimentalWebSocketEnabled;
     bool javaEnabled;
     bool javaScriptCanAccessClipboard;
     bool javaScriptCanOpenWindowsAutomatically;
@@ -79,8 +80,6 @@
     bool shrinksStandaloneImagesToFit;
     bool textAreasAreResizable;
     WebKit::WebURL userStyleSheetLocation;
-    bool usesPageCache;
-    bool pageCacheSupportsPlugins;
     bool webSecurityEnabled;
     bool allowUniversalAccessFromFileURLs;
     WebKit::WebSettings::EditingBehavior editingBehavior;
diff --git a/Tools/DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h b/Tools/DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h
index f797972..1897f55 100644
--- a/Tools/DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h
+++ b/Tools/DumpRenderTree/chromium/TestRunner/public/WebTestDelegate.h
@@ -39,8 +39,11 @@
 #define WEBTESTRUNNER_NEW_HISTORY_CAPTURE
 
 namespace WebKit {
+class WebFrame;
 class WebGamepads;
 class WebHistoryItem;
+class WebMediaPlayer;
+class WebMediaPlayerClient;
 struct WebRect;
 struct WebURLError;
 }
@@ -154,6 +157,9 @@
     // Returns the back/forward history for the WebView associated with the
     // given WebTestProxyBase as well as the index of the current entry.
     virtual void captureHistoryForWindow(WebTestProxyBase*, WebKit::WebVector<WebKit::WebHistoryItem>*, size_t* currentEntryIndex) = 0;
+
+    // Returns a media player corresponding to |url| as src.
+    virtual WebKit::WebMediaPlayer* createWebMediaPlayer(WebKit::WebFrame*, const WebKit::WebURL&, WebKit::WebMediaPlayerClient*) = 0;
 };
 
 }
diff --git a/Tools/DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h b/Tools/DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h
index e5e1d60..12fca42 100644
--- a/Tools/DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h
+++ b/Tools/DumpRenderTree/chromium/TestRunner/public/WebTestProxy.h
@@ -60,6 +60,8 @@
 class WebGeolocationClient;
 class WebGeolocationClientMock;
 class WebImage;
+class WebMediaPlayer;
+class WebMediaPlayerClient;
 class WebNode;
 class WebNotificationPresenter;
 class WebPlugin;
@@ -152,6 +154,7 @@
     void didStopLoading();
     void showContextMenu(WebKit::WebFrame*, const WebKit::WebContextMenuData&);
     WebKit::WebUserMediaClient* userMediaClient();
+    WebKit::WebMediaPlayer* createMediaPlayer(WebKit::WebFrame*, const WebKit::WebURL&, WebKit::WebMediaPlayerClient*);
     void printPage(WebKit::WebFrame*);
     WebKit::WebNotificationPresenter* notificationPresenter();
     WebKit::WebGeolocationClient* geolocationClient();
@@ -180,7 +183,6 @@
     void didDisplayInsecureContent(WebKit::WebFrame*);
     void didRunInsecureContent(WebKit::WebFrame*, const WebKit::WebSecurityOrigin&, const WebKit::WebURL& insecureURL);
     void didDetectXSS(WebKit::WebFrame*, const WebKit::WebURL& insecureURL, bool didBlockEntirePage);
-    void assignIdentifierToRequest(WebKit::WebFrame*, unsigned identifier, const WebKit::WebURLRequest&);
     void willRequestResource(WebKit::WebFrame*, const WebKit::WebCachedURLRequest&);
     bool canHandleRequest(WebKit::WebFrame*, const WebKit::WebURLRequest&);
     WebKit::WebURLError cannotHandleRequestError(WebKit::WebFrame*, const WebKit::WebURLRequest&);
@@ -196,7 +198,7 @@
     bool runModalConfirmDialog(WebKit::WebFrame*, const WebKit::WebString&);
     bool runModalPromptDialog(WebKit::WebFrame*, const WebKit::WebString& message, const WebKit::WebString& defaultValue, WebKit::WebString* actualValue);
     bool runModalBeforeUnloadDialog(WebKit::WebFrame*, const WebKit::WebString&);
-    WebKit::WebNavigationPolicy decidePolicyForNavigation(WebKit::WebFrame*, const WebKit::WebURLRequest&, WebKit::WebNavigationType, const WebKit::WebNode& originatingNode, WebKit::WebNavigationPolicy defaultPolicy, bool isRedirect);
+    WebKit::WebNavigationPolicy decidePolicyForNavigation(WebKit::WebFrame*, const WebKit::WebURLRequest&, WebKit::WebNavigationType, WebKit::WebNavigationPolicy defaultPolicy, bool isRedirect);
     bool willCheckAndDispatchMessageEvent(WebKit::WebFrame* sourceFrame, WebKit::WebFrame* targetFrame, WebKit::WebSecurityOrigin target, WebKit::WebDOMMessageEvent);
 
 private:
@@ -288,7 +290,7 @@
     virtual void startDragging(WebKit::WebFrame* frame, const WebKit::WebDragData& data, WebKit::WebDragOperationsMask mask, const WebKit::WebImage& image, const WebKit::WebPoint& point)
     {
         WebTestProxyBase::startDragging(frame, data, mask, image, point);
-        Base::startDragging(frame, data, mask, image, point);
+        // Don't forward this call to Base because we don't want to do a real drag-and-drop.
     }
     virtual bool shouldBeginEditing(const WebKit::WebRange& range)
     {
@@ -377,6 +379,10 @@
     {
         return WebTestProxyBase::userMediaClient();
     }
+    virtual WebKit::WebMediaPlayer* createMediaPlayer(WebKit::WebFrame* frame, const WebKit::WebURL& url, WebKit::WebMediaPlayerClient* client)
+    {
+        return WebTestProxyBase::createMediaPlayer(frame, url, client);
+    }
     virtual void printPage(WebKit::WebFrame* frame)
     {
         WebTestProxyBase::printPage(frame);
@@ -505,11 +511,6 @@
         WebTestProxyBase::didDetectXSS(frame, insecureURL, didBlockEntirePage);
         Base::didDetectXSS(frame, insecureURL, didBlockEntirePage);
     }
-    virtual void assignIdentifierToRequest(WebKit::WebFrame* frame, unsigned identifier, const WebKit::WebURLRequest& request)
-    {
-        WebTestProxyBase::assignIdentifierToRequest(frame, identifier, request);
-        Base::assignIdentifierToRequest(frame, identifier, request);
-    }
     virtual void willRequestResource(WebKit::WebFrame* frame, const WebKit::WebCachedURLRequest& request)
     {
         WebTestProxyBase::willRequestResource(frame, request);
@@ -584,12 +585,12 @@
     {
         return WebTestProxyBase::runModalBeforeUnloadDialog(frame, message);
     }
-    virtual WebKit::WebNavigationPolicy decidePolicyForNavigation(WebKit::WebFrame* frame, const WebKit::WebURLRequest& request, WebKit::WebNavigationType type, const WebKit::WebNode& originatingNode, WebKit::WebNavigationPolicy defaultPolicy, bool isRedirect)
+    virtual WebKit::WebNavigationPolicy decidePolicyForNavigation(WebKit::WebFrame* frame, const WebKit::WebURLRequest& request, WebKit::WebNavigationType type, WebKit::WebNavigationPolicy defaultPolicy, bool isRedirect)
     {
-        WebKit::WebNavigationPolicy policy = WebTestProxyBase::decidePolicyForNavigation(frame, request, type, originatingNode, defaultPolicy, isRedirect);
+        WebKit::WebNavigationPolicy policy = WebTestProxyBase::decidePolicyForNavigation(frame, request, type, defaultPolicy, isRedirect);
         if (policy == WebKit::WebNavigationPolicyIgnore)
             return policy;
-        return Base::decidePolicyForNavigation(frame, request, type, originatingNode, defaultPolicy, isRedirect);
+        return Base::decidePolicyForNavigation(frame, request, type, defaultPolicy, isRedirect);
     }
     virtual bool willCheckAndDispatchMessageEvent(WebKit::WebFrame* sourceFrame, WebKit::WebFrame* targetFrame, WebKit::WebSecurityOrigin target, WebKit::WebDOMMessageEvent event)
     {
diff --git a/Tools/DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.cpp b/Tools/DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.cpp
index 6dcc406..ed82881 100644
--- a/Tools/DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.cpp
+++ b/Tools/DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.cpp
@@ -408,6 +408,8 @@
     bindProperty("orientation", &AccessibilityUIElement::orientationGetterCallback);
     bindProperty("clickPointX", &AccessibilityUIElement::clickPointXGetterCallback);
     bindProperty("clickPointY", &AccessibilityUIElement::clickPointYGetterCallback);
+    bindProperty("rowCount", &AccessibilityUIElement::rowCountGetterCallback);
+    bindProperty("columnCount", &AccessibilityUIElement::columnCountGetterCallback);
 
     //
     // Methods
@@ -428,6 +430,7 @@
     bindMethod("attributesOfRows", &AccessibilityUIElement::attributesOfRowsCallback);
     bindMethod("attributesOfVisibleCells", &AccessibilityUIElement::attributesOfVisibleCellsCallback);
     bindMethod("attributesOfHeader", &AccessibilityUIElement::attributesOfHeaderCallback);
+    bindMethod("tableHeader", &AccessibilityUIElement::tableHeaderCallback);
     bindMethod("indexInTable", &AccessibilityUIElement::indexInTableCallback);
     bindMethod("rowIndexRange", &AccessibilityUIElement::rowIndexRangeCallback);
     bindMethod("columnIndexRange", &AccessibilityUIElement::columnIndexRangeCallback);
@@ -674,6 +677,16 @@
     result->set(accessibilityObject().clickPoint().y);
 }
 
+void AccessibilityUIElement::rowCountGetterCallback(CppVariant* result)
+{
+    result->set(static_cast<int32_t>(accessibilityObject().rowCount()));
+}
+
+void AccessibilityUIElement::columnCountGetterCallback(CppVariant* result)
+{
+    result->set(static_cast<int32_t>(accessibilityObject().columnCount()));
+}
+
 //
 // Methods
 //
@@ -798,6 +811,17 @@
     result->setNull();
 }
 
+void AccessibilityUIElement::tableHeaderCallback(const CppArgumentList&, CppVariant* result)
+{
+    WebAccessibilityObject obj = accessibilityObject().headerContainerObject();
+    if (obj.isNull()) {
+        result->setNull();
+        return;
+    }
+
+    result->set(*(m_factory->getOrCreate(obj)->getAsCppVariant()));
+}
+
 void AccessibilityUIElement::indexInTableCallback(const CppArgumentList&, CppVariant* result)
 {
     result->setNull();
@@ -805,17 +829,37 @@
 
 void AccessibilityUIElement::rowIndexRangeCallback(const CppArgumentList&, CppVariant* result)
 {
-    result->setNull();
+    unsigned rowIndex = accessibilityObject().cellRowIndex();
+    unsigned rowSpan = accessibilityObject().cellRowSpan();
+    char buffer[100];
+    snprintf(buffer, sizeof(buffer), "{%d, %d}", rowIndex, rowSpan);
+    string value = buffer;
+    result->set(std::string(buffer));
 }
 
 void AccessibilityUIElement::columnIndexRangeCallback(const CppArgumentList&, CppVariant* result)
 {
-    result->setNull();
+    unsigned columnIndex = accessibilityObject().cellColumnIndex();
+    unsigned columnSpan = accessibilityObject().cellColumnSpan();
+    char buffer[100];
+    snprintf(buffer, sizeof(buffer), "{%d, %d}", columnIndex, columnSpan);
+    result->set(std::string(buffer));
 }
 
-void AccessibilityUIElement::cellForColumnAndRowCallback(const CppArgumentList&, CppVariant* result)
+void AccessibilityUIElement::cellForColumnAndRowCallback(const CppArgumentList& arguments, CppVariant* result)
 {
-    result->setNull();
+    if (arguments.size() != 2 || !arguments[0].isNumber() || !arguments[1].isNumber())
+        return;
+
+    int column = arguments[0].toInt32();
+    int row = arguments[1].toInt32();
+    WebAccessibilityObject obj = accessibilityObject().cellForColumnAndRow(column, row);
+    if (obj.isNull()) {
+        result->setNull();
+        return;
+    }
+
+    result->set(*(m_factory->getOrCreate(obj)->getAsCppVariant()));
 }
 
 void AccessibilityUIElement::titleUIElementCallback(const CppArgumentList&, CppVariant* result)
diff --git a/Tools/DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.h b/Tools/DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.h
index c6cb1a2..0ee2e8a 100644
--- a/Tools/DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.h
+++ b/Tools/DumpRenderTree/chromium/TestRunner/src/AccessibilityUIElementChromium.h
@@ -95,6 +95,8 @@
     void orientationGetterCallback(CppVariant*);
     void clickPointXGetterCallback(CppVariant*);
     void clickPointYGetterCallback(CppVariant*);
+    void rowCountGetterCallback(CppVariant*);
+    void columnCountGetterCallback(CppVariant*);
 
     // Bound methods.
     void allAttributesCallback(const CppArgumentList&, CppVariant*);
@@ -113,6 +115,7 @@
     void attributesOfRowsCallback(const CppArgumentList&, CppVariant*);
     void attributesOfVisibleCellsCallback(const CppArgumentList&, CppVariant*);
     void attributesOfHeaderCallback(const CppArgumentList&, CppVariant*);
+    void tableHeaderCallback(const CppArgumentList&, CppVariant*);
     void indexInTableCallback(const CppArgumentList&, CppVariant*);
     void rowIndexRangeCallback(const CppArgumentList&, CppVariant*);
     void columnIndexRangeCallback(const CppArgumentList&, CppVariant*);
diff --git a/Tools/DumpRenderTree/chromium/TestRunner/src/EventSender.cpp b/Tools/DumpRenderTree/chromium/TestRunner/src/EventSender.cpp
index 008a010..1a2c717 100644
--- a/Tools/DumpRenderTree/chromium/TestRunner/src/EventSender.cpp
+++ b/Tools/DumpRenderTree/chromium/TestRunner/src/EventSender.cpp
@@ -43,6 +43,7 @@
 #include "config.h"
 #include "EventSender.h"
 
+#include <deque>
 #include "KeyCodeMapping.h"
 #include "MockSpellCheck.h"
 #include "TestCommon.h"
@@ -51,7 +52,6 @@
 #include "WebTestDelegate.h"
 #include "WebTouchPoint.h"
 #include "WebView.h"
-#include <deque>
 #include <public/WebDragData.h>
 #include <public/WebPoint.h>
 #include <public/WebString.h>
@@ -518,6 +518,8 @@
     } else {
         WebMouseEvent event;
         initMouseEvent(WebInputEvent::MouseMove, pressedButton, mousePos, &event, getCurrentEventTimeSec(m_delegate));
+        if (arguments.size() >= 3 && (arguments[2].isObject() || arguments[2].isString()))
+            applyKeyModifiers(&(arguments[2]), &event);
         doMouseMove(event);
     }
 }
@@ -1242,6 +1244,14 @@
         event.x = point.x;
         event.y = point.y;
         break;
+    case WebInputEvent::GestureTapUnconfirmed:
+        if (arguments.size() >= 3)
+            event.data.tap.tapCount = static_cast<float>(arguments[2].toDouble());
+        else
+          event.data.tap.tapCount = 1;
+        event.x = point.x;
+        event.y = point.y;
+        break;
     case WebInputEvent::GestureTapDown:
         event.x = point.x;
         event.y = point.y;
@@ -1286,13 +1296,18 @@
     event.globalY = event.y;
     event.timeStampSeconds = getCurrentEventTimeSec(m_delegate);
     webview()->handleInputEvent(event);
+
+    // Long press might start a drag drop session. Complete it if so.
+    if (type == WebInputEvent::GestureLongPress && !currentDragData.isNull()) {
+        WebMouseEvent mouseEvent;
+        initMouseEvent(WebInputEvent::MouseDown, pressedButton, point, &mouseEvent, getCurrentEventTimeSec(m_delegate));
+        finishDragAndDrop(mouseEvent, WebKit::WebDragOperationNone);
+    }
 }
 
-void EventSender::gestureFlingCancel(const CppArgumentList& arguments, CppVariant* result)
+void EventSender::gestureFlingCancel(const CppArgumentList&, CppVariant* result)
 {
     result->setNull();
-    if (!arguments.size())
-        return;
 
     WebGestureEvent event;
     event.type = WebInputEvent::GestureFlingCancel;
diff --git a/Tools/DumpRenderTree/chromium/TestRunner/src/MockConstraints.cpp b/Tools/DumpRenderTree/chromium/TestRunner/src/MockConstraints.cpp
index 1436550..539c5a6 100644
--- a/Tools/DumpRenderTree/chromium/TestRunner/src/MockConstraints.cpp
+++ b/Tools/DumpRenderTree/chromium/TestRunner/src/MockConstraints.cpp
@@ -30,7 +30,6 @@
 
 #include "config.h"
 
-#if ENABLE_WEBRTC
 #include "MockConstraints.h"
 
 #include <public/WebMediaConstraints.h>
@@ -79,5 +78,3 @@
 }
 
 }
-
-#endif // ENABLE_WEBRTC
diff --git a/Tools/DumpRenderTree/chromium/TestRunner/src/MockGrammarCheck.cpp b/Tools/DumpRenderTree/chromium/TestRunner/src/MockGrammarCheck.cpp
index 61eee0c..3255012 100644
--- a/Tools/DumpRenderTree/chromium/TestRunner/src/MockGrammarCheck.cpp
+++ b/Tools/DumpRenderTree/chromium/TestRunner/src/MockGrammarCheck.cpp
@@ -70,7 +70,7 @@
         {"zz apple orange.", 0, 16},
     };
     for (size_t i = 0; i < ARRAYSIZE_UNSAFE(grammarErrors); ++i) {
-        int offset = 0;
+        size_t offset = 0;
         string16 error(grammarErrors[i].text, grammarErrors[i].text + strlen(grammarErrors[i].text));
         while ((offset = stringText.find(error, offset)) != string16::npos) {
             results->push_back(WebTextCheckingResult(WebTextCheckingTypeGrammar, offset + grammarErrors[i].location, grammarErrors[i].length));
diff --git a/Tools/DumpRenderTree/chromium/TestRunner/src/MockWebMediaStreamCenter.cpp b/Tools/DumpRenderTree/chromium/TestRunner/src/MockWebMediaStreamCenter.cpp
index 6cea70f..2528825 100644
--- a/Tools/DumpRenderTree/chromium/TestRunner/src/MockWebMediaStreamCenter.cpp
+++ b/Tools/DumpRenderTree/chromium/TestRunner/src/MockWebMediaStreamCenter.cpp
@@ -30,7 +30,6 @@
 
 #include "config.h"
 
-#if ENABLE_WEBRTC
 #include "MockWebMediaStreamCenter.h"
 
 #include <public/WebAudioDestinationConsumer.h>
@@ -102,5 +101,3 @@
 }
 
 }
-
-#endif // ENABLE_WEBRTC
diff --git a/Tools/DumpRenderTree/chromium/TestRunner/src/MockWebRTCDTMFSenderHandler.cpp b/Tools/DumpRenderTree/chromium/TestRunner/src/MockWebRTCDTMFSenderHandler.cpp
index 16db432..85cad72 100644
--- a/Tools/DumpRenderTree/chromium/TestRunner/src/MockWebRTCDTMFSenderHandler.cpp
+++ b/Tools/DumpRenderTree/chromium/TestRunner/src/MockWebRTCDTMFSenderHandler.cpp
@@ -25,7 +25,6 @@
 
 #include "config.h"
 
-#if ENABLE_WEBRTC
 #include "MockWebRTCDTMFSenderHandler.h"
 
 #include "WebTestDelegate.h"
@@ -94,5 +93,3 @@
 }
 
 }
-
-#endif // ENABLE_WEBRTC
diff --git a/Tools/DumpRenderTree/chromium/TestRunner/src/MockWebRTCDataChannelHandler.cpp b/Tools/DumpRenderTree/chromium/TestRunner/src/MockWebRTCDataChannelHandler.cpp
index ac4d252..0376ee0 100644
--- a/Tools/DumpRenderTree/chromium/TestRunner/src/MockWebRTCDataChannelHandler.cpp
+++ b/Tools/DumpRenderTree/chromium/TestRunner/src/MockWebRTCDataChannelHandler.cpp
@@ -24,7 +24,6 @@
 
 #include "config.h"
 
-#if ENABLE_WEBRTC
 #include "MockWebRTCDataChannelHandler.h"
 
 #include "WebTestDelegate.h"
@@ -97,5 +96,3 @@
 }
 
 }
-
-#endif // ENABLE_WEBRTC
diff --git a/Tools/DumpRenderTree/chromium/TestRunner/src/MockWebRTCPeerConnectionHandler.cpp b/Tools/DumpRenderTree/chromium/TestRunner/src/MockWebRTCPeerConnectionHandler.cpp
index 084ead6..4edd796 100644
--- a/Tools/DumpRenderTree/chromium/TestRunner/src/MockWebRTCPeerConnectionHandler.cpp
+++ b/Tools/DumpRenderTree/chromium/TestRunner/src/MockWebRTCPeerConnectionHandler.cpp
@@ -29,8 +29,6 @@
  */
 
 #include "config.h"
-
-#if ENABLE_WEBRTC
 #include "MockWebRTCPeerConnectionHandler.h"
 
 #include "MockConstraints.h"
@@ -304,5 +302,3 @@
 }
 
 }
-
-#endif // ENABLE_WEBRTC
diff --git a/Tools/DumpRenderTree/chromium/TestRunner/src/SpellCheckClient.cpp b/Tools/DumpRenderTree/chromium/TestRunner/src/SpellCheckClient.cpp
index f457f7a..6880053 100644
--- a/Tools/DumpRenderTree/chromium/TestRunner/src/SpellCheckClient.cpp
+++ b/Tools/DumpRenderTree/chromium/TestRunner/src/SpellCheckClient.cpp
@@ -106,7 +106,11 @@
     webResults->assign(results);
 }
 
-void SpellCheckClient::requestCheckingOfText(const WebString& text, WebTextCheckingCompletion* completion)
+void SpellCheckClient::requestCheckingOfText(
+        const WebString& text,
+        const WebVector<uint32_t>& markers,
+        const WebVector<unsigned>& markerOffsets,
+        WebTextCheckingCompletion* completion)
 {
     if (text.isEmpty()) {
         if (completion)
diff --git a/Tools/DumpRenderTree/chromium/TestRunner/src/SpellCheckClient.h b/Tools/DumpRenderTree/chromium/TestRunner/src/SpellCheckClient.h
index a20e32f..7168270 100644
--- a/Tools/DumpRenderTree/chromium/TestRunner/src/SpellCheckClient.h
+++ b/Tools/DumpRenderTree/chromium/TestRunner/src/SpellCheckClient.h
@@ -52,7 +52,10 @@
     // WebKit::WebSpellCheckClient implementation.
     virtual void spellCheck(const WebKit::WebString&, int& offset, int& length, WebKit::WebVector<WebKit::WebString>* optionalSuggestions);
     virtual void checkTextOfParagraph(const WebKit::WebString&, WebKit::WebTextCheckingTypeMask, WebKit::WebVector<WebKit::WebTextCheckingResult>*);
-    virtual void requestCheckingOfText(const WebKit::WebString&, WebKit::WebTextCheckingCompletion*);
+    virtual void requestCheckingOfText(const WebKit::WebString&,
+                                       const WebKit::WebVector<uint32_t>&,
+                                       const WebKit::WebVector<unsigned>&,
+                                       WebKit::WebTextCheckingCompletion*);
     virtual WebKit::WebString autoCorrectWord(const WebKit::WebString&);
 
 private:
diff --git a/Tools/DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp b/Tools/DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp
index afd65d8..857ae76 100644
--- a/Tools/DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp
+++ b/Tools/DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp
@@ -31,6 +31,7 @@
 #include "config.h"
 #include "TestInterfaces.h"
 
+#include <string>
 #include "AccessibilityControllerChromium.h"
 #include "EventSender.h"
 #include "GamepadController.h"
@@ -41,7 +42,6 @@
 #include "WebRuntimeFeatures.h"
 #include <public/WebString.h>
 #include <public/WebURL.h>
-#include <string>
 
 using namespace WebKit;
 using namespace std;
@@ -59,33 +59,9 @@
 {
     WebKit::setLayoutTestMode(true);
 
-    WebRuntimeFeatures::enableDataTransferItems(true);
-    WebRuntimeFeatures::enableDeviceMotion(false);
-    WebRuntimeFeatures::enableGeolocation(true);
-    WebRuntimeFeatures::enableIndexedDatabase(true);
-    WebRuntimeFeatures::enableInputTypeDateTime(true);
-    WebRuntimeFeatures::enableInputTypeDateTimeLocal(true);
-    WebRuntimeFeatures::enableInputTypeMonth(true);
-    WebRuntimeFeatures::enableInputTypeTime(true);
-    WebRuntimeFeatures::enableInputTypeWeek(true);
-    WebRuntimeFeatures::enableFileSystem(true);
-    WebRuntimeFeatures::enableFontLoadEvents(true);
-    WebRuntimeFeatures::enableJavaScriptI18NAPI(true);
-    WebRuntimeFeatures::enableMediaSource(true);
-    WebRuntimeFeatures::enableEncryptedMedia(true);
-    WebRuntimeFeatures::enableMediaStream(true);
-    WebRuntimeFeatures::enablePeerConnection(true);
-    WebRuntimeFeatures::enableWebAudio(true);
-    WebRuntimeFeatures::enableVideoTrack(true);
-    WebRuntimeFeatures::enableGamepad(true);
-    WebRuntimeFeatures::enableShadowDOM(true);
-    WebRuntimeFeatures::enableCustomDOMElements(true);
-    WebRuntimeFeatures::enableStyleScoped(true);
-    WebRuntimeFeatures::enableScriptedSpeech(true);
-    WebRuntimeFeatures::enableRequestAutocomplete(true);
-    WebRuntimeFeatures::enableExperimentalContentSecurityPolicyFeatures(true);
-    WebRuntimeFeatures::enableSeamlessIFrames(true);
-    WebRuntimeFeatures::enableCanvasPath(true);
+    WebRuntimeFeatures::enableStableFeatures(true);
+    WebRuntimeFeatures::enableExperimentalFeatures(true);
+    WebRuntimeFeatures::enableTestOnlyFeatures(true);
 
     resetAll();
 }
diff --git a/Tools/DumpRenderTree/chromium/TestRunner/src/TestPlugin.cpp b/Tools/DumpRenderTree/chromium/TestRunner/src/TestPlugin.cpp
index 754f1d3..53895ef 100644
--- a/Tools/DumpRenderTree/chromium/TestRunner/src/TestPlugin.cpp
+++ b/Tools/DumpRenderTree/chromium/TestRunner/src/TestPlugin.cpp
@@ -496,6 +496,8 @@
     case WebInputEvent::GestureFlingStart:   eventName = "GestureFlingStart"; break;
     case WebInputEvent::GestureFlingCancel:  eventName = "GestureFlingCancel"; break;
     case WebInputEvent::GestureTap:          eventName = "GestureTap"; break;
+    case WebInputEvent::GestureTapUnconfirmed:
+                                             eventName = "GestureTapUnconfirmed"; break;
     case WebInputEvent::GestureTapDown:      eventName = "GestureTapDown"; break;
     case WebInputEvent::GestureTapCancel:    eventName = "GestureTapCancel"; break;
     case WebInputEvent::GestureDoubleTap:    eventName = "GestureDoubleTap"; break;
diff --git a/Tools/DumpRenderTree/chromium/TestRunner/src/TestPlugin.h b/Tools/DumpRenderTree/chromium/TestRunner/src/TestPlugin.h
index 53b22e1..6e5522d 100644
--- a/Tools/DumpRenderTree/chromium/TestRunner/src/TestPlugin.h
+++ b/Tools/DumpRenderTree/chromium/TestRunner/src/TestPlugin.h
@@ -79,6 +79,8 @@
     // WebExternalTextureLayerClient methods:
     virtual unsigned prepareTexture(WebKit::WebTextureUpdater&) { return m_colorTexture; }
     virtual WebKit::WebGraphicsContext3D* context() { return m_context; }
+    virtual bool prepareMailbox(WebKit::WebExternalTextureMailbox*) { return false; };
+    virtual void mailboxReleased(const WebKit::WebExternalTextureMailbox&) { }
 
 private:
     TestPlugin(WebKit::WebFrame*, const WebKit::WebPluginParams&, WebTestDelegate*);
diff --git a/Tools/DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp b/Tools/DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp
index 69e692e..1d3587c 100644
--- a/Tools/DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp
+++ b/Tools/DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp
@@ -192,7 +192,6 @@
     bindMethod("removeOriginAccessWhitelistEntry", &TestRunner::removeOriginAccessWhitelistEntry);
     bindMethod("hasCustomPageSizeStyle", &TestRunner::hasCustomPageSizeStyle);
     bindMethod("forceRedSelectionColors", &TestRunner::forceRedSelectionColors);
-    bindMethod("addUserScript", &TestRunner::addUserScript);
     bindMethod("addUserStyleSheet", &TestRunner::addUserStyleSheet);
     bindMethod("startSpeechInput", &TestRunner::startSpeechInput);
     bindMethod("findString", &TestRunner::findString);
@@ -313,7 +312,6 @@
     bindMethod("setApplicationCacheOriginQuota", &TestRunner::notImplemented);
     bindMethod("setCallCloseOnWebViews", &TestRunner::notImplemented);
     bindMethod("setMainFrameIsFirstResponder", &TestRunner::notImplemented);
-    bindMethod("setPrivateBrowsingEnabled", &TestRunner::notImplemented);
     bindMethod("setUseDashboardCompatibilityMode", &TestRunner::notImplemented);
     bindMethod("deleteAllLocalStorage", &TestRunner::notImplemented);
     bindMethod("localStorageDiskUsageForOrigin", &TestRunner::notImplemented);
@@ -1265,17 +1263,6 @@
     m_webView->setSelectionColors(0xffee0000, 0xff00ee00, 0xff000000, 0xffc0c0c0);
 }
 
-void TestRunner::addUserScript(const CppArgumentList& arguments, CppVariant* result)
-{
-    result->setNull();
-    if (arguments.size() < 3 || !arguments[0].isString() || !arguments[1].isBool() || !arguments[2].isBool())
-        return;
-    WebView::addUserScript(
-        cppVariantToWebString(arguments[0]), WebVector<WebString>(),
-        arguments[1].toBoolean() ? WebView::UserScriptInjectAtDocumentStart : WebView::UserScriptInjectAtDocumentEnd,
-        arguments[2].toBoolean() ? WebView::UserContentInjectInAllFrames : WebView::UserContentInjectInTopFrameOnly);
-}
-
 void TestRunner::addUserStyleSheet(const CppArgumentList& arguments, CppVariant* result)
 {
     result->setNull();
@@ -1614,10 +1601,6 @@
         prefs->pluginsEnabled = cppVariantToBool(value);
     else if (key == "WebKitJavaEnabled")
         prefs->javaEnabled = cppVariantToBool(value);
-    else if (key == "WebKitUsesPageCachePreferenceKey")
-        prefs->usesPageCache = cppVariantToBool(value);
-    else if (key == "WebKitPageCacheSupportsPluginsPreferenceKey")
-        prefs->pageCacheSupportsPlugins = cppVariantToBool(value);
     else if (key == "WebKitOfflineWebApplicationCacheEnabled")
         prefs->offlineWebApplicationCacheEnabled = cppVariantToBool(value);
     else if (key == "WebKitTabToLinksPreferenceKey")
@@ -1628,6 +1611,8 @@
         prefs->experimentalCSSRegionsEnabled = cppVariantToBool(value);
     else if (key == "WebKitCSSGridLayoutEnabled")
         prefs->experimentalCSSGridLayoutEnabled = cppVariantToBool(value);
+    else if (key == "WebKitExperimentalWebSocketEnabled")
+        prefs->experimentalWebSocketEnabled = cppVariantToBool(value);
     else if (key == "WebKitHyperlinkAuditingEnabled")
         prefs->hyperlinkAuditingEnabled = cppVariantToBool(value);
     else if (key == "WebKitEnableCaretBrowsing")
diff --git a/Tools/DumpRenderTree/chromium/TestRunner/src/TestRunner.h b/Tools/DumpRenderTree/chromium/TestRunner/src/TestRunner.h
index c1aa7d2..7e5f6e7 100644
--- a/Tools/DumpRenderTree/chromium/TestRunner/src/TestRunner.h
+++ b/Tools/DumpRenderTree/chromium/TestRunner/src/TestRunner.h
@@ -231,8 +231,7 @@
     // Forces the selection colors for testing under Linux.
     void forceRedSelectionColors(const CppArgumentList&, CppVariant*);
 
-    // Adds a user script or user style sheet to be injected into new documents.
-    void addUserScript(const CppArgumentList&, CppVariant*);
+    // Adds a user style sheet to be injected into new documents.
     void addUserStyleSheet(const CppArgumentList&, CppVariant*);
 
     void startSpeechInput(const CppArgumentList&, CppVariant*);
diff --git a/Tools/DumpRenderTree/chromium/TestRunner/src/WebPreferences.cpp b/Tools/DumpRenderTree/chromium/TestRunner/src/WebPreferences.cpp
index 5d882ae..eb3b384 100644
--- a/Tools/DumpRenderTree/chromium/TestRunner/src/WebPreferences.cpp
+++ b/Tools/DumpRenderTree/chromium/TestRunner/src/WebPreferences.cpp
@@ -81,10 +81,11 @@
     allowRunningOfInsecureContent = true;
     authorAndUserStylesEnabled = true;
     defaultTextEncodingName = WebString::fromUTF8("ISO-8859-1");
-    developerExtrasEnabled = true;
     experimentalWebGLEnabled = false;
+    experimentalCSSExclusionsEnabled = true;
     experimentalCSSRegionsEnabled = true;
     experimentalCSSGridLayoutEnabled = false;
+    experimentalWebSocketEnabled = false;
     javaEnabled = false;
     javaScriptCanAccessClipboard = true;
     javaScriptCanOpenWindowsAutomatically = true;
@@ -97,8 +98,6 @@
     shrinksStandaloneImagesToFit = false;
     textAreasAreResizable = true;
     userStyleSheetLocation = WebURL();
-    usesPageCache = false;
-    pageCacheSupportsPlugins = false;
     webSecurityEnabled = true;
     caretBrowsingEnabled = false;
 
@@ -153,11 +152,12 @@
     settings->setAllowRunningOfInsecureContent(allowRunningOfInsecureContent);
     settings->setAuthorAndUserStylesEnabled(authorAndUserStylesEnabled);
     settings->setDefaultTextEncodingName(defaultTextEncodingName);
-    settings->setDeveloperExtrasEnabled(developerExtrasEnabled);
     settings->setExperimentalWebGLEnabled(experimentalWebGLEnabled);
     WebRuntimeFeatures::enableCSSRegions(experimentalCSSRegionsEnabled);
+    WebRuntimeFeatures::enableCSSExclusions(experimentalCSSExclusionsEnabled);
     settings->setExperimentalCSSGridLayoutEnabled(experimentalCSSGridLayoutEnabled);
     settings->setExperimentalCSSCustomFilterEnabled(cssCustomFilterEnabled);
+    WebRuntimeFeatures::enableExperimentalWebSocket(experimentalWebSocketEnabled);
     settings->setJavaEnabled(javaEnabled);
     settings->setJavaScriptCanAccessClipboard(javaScriptCanAccessClipboard);
     settings->setJavaScriptCanOpenWindowsAutomatically(javaScriptCanOpenWindowsAutomatically);
@@ -170,8 +170,6 @@
     settings->setShrinksStandaloneImagesToFit(shrinksStandaloneImagesToFit);
     settings->setTextAreasAreResizable(textAreasAreResizable);
     settings->setUserStyleSheetLocation(userStyleSheetLocation);
-    settings->setUsesPageCache(usesPageCache);
-    settings->setPageCacheSupportsPlugins(pageCacheSupportsPlugins);
     settings->setWebSecurityEnabled(webSecurityEnabled);
     settings->setAllowUniversalAccessFromFileURLs(allowUniversalAccessFromFileURLs);
     settings->setEditingBehavior(editingBehavior);
@@ -197,6 +195,7 @@
 
     // Fixed values.
     settings->setTouchDragDropEnabled(false);
+    settings->setTouchEditingEnabled(false);
     settings->setTextDirectionSubmenuInclusionBehaviorNeverIncluded();
     settings->setDownloadableBinaryFontsEnabled(true);
     settings->setAllowScriptsToCloseWindows(false);
@@ -213,7 +212,6 @@
     settings->setValidationMessageTimerMagnification(-1);
     settings->setVisualWordMovementEnabled(false);
     settings->setPasswordEchoEnabled(false);
-    settings->setApplyDeviceScaleFactorInCompositor(true);
     settings->setSmartInsertDeleteEnabled(true);
 #ifdef WIN32
     settings->setSelectTrailingWhitespaceEnabled(true);
diff --git a/Tools/DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp b/Tools/DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp
index c2dbd16..532264a 100644
--- a/Tools/DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp
+++ b/Tools/DumpRenderTree/chromium/TestRunner/src/WebTestInterfaces.cpp
@@ -94,7 +94,6 @@
     return m_interfaces.get();
 }
 
-#if ENABLE_WEBRTC
 WebMediaStreamCenter* WebTestInterfaces::createMediaStreamCenter(WebMediaStreamCenterClient* client)
 {
     return new MockWebMediaStreamCenter(client);
@@ -104,6 +103,5 @@
 {
     return new MockWebRTCPeerConnectionHandler(client, m_interfaces.get());
 }
-#endif // ENABLE_WEBRTC
 
 }
diff --git a/Tools/DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp b/Tools/DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp
index ac3ebb7..d017d0e 100644
--- a/Tools/DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp
+++ b/Tools/DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp
@@ -63,8 +63,8 @@
 #include "WebUserMediaClientMock.h"
 #include "WebView.h"
 // FIXME: Including platform_canvas.h here is a layering violation.
-#include "skia/ext/platform_canvas.h"
 #include <cctype>
+#include "skia/ext/platform_canvas.h"
 #include <public/WebCString.h>
 #include <public/WebURLError.h>
 #include <public/WebURLRequest.h>
@@ -986,13 +986,14 @@
 
 WebUserMediaClient* WebTestProxyBase::userMediaClient()
 {
-#if ENABLE_WEBRTC
     if (!m_userMediaClient.get())
         m_userMediaClient.reset(new WebUserMediaClientMock(m_delegate));
     return m_userMediaClient.get();
-#else
-    return 0;
-#endif // ENABLE_WEBRTC
+}
+
+WebMediaPlayer* WebTestProxyBase::createMediaPlayer(WebFrame* frame, const WebURL& url, WebMediaPlayerClient* client)
+{
+    return m_delegate->createWebMediaPlayer(frame, url, client);
 }
 
 // Simulate a print by going into print mode and then exit straight away.
@@ -1222,14 +1223,6 @@
         m_delegate->printMessage("didDetectXSS\n");
 }
 
-void WebTestProxyBase::assignIdentifierToRequest(WebFrame*, unsigned identifier, const WebKit::WebURLRequest& request)
-{
-    if (m_testInterfaces->testRunner()->shouldDumpResourceLoadCallbacks() || m_testInterfaces->testRunner()->shouldDumpResourcePriorities()) {
-        WEBKIT_ASSERT(m_resourceIdentifierMap.find(identifier) == m_resourceIdentifierMap.end());
-        m_resourceIdentifierMap[identifier] = descriptionSuitableForTestResult(request.url().spec());
-    }
-}
-
 void WebTestProxyBase::willRequestResource(WebFrame* frame, const WebKit::WebCachedURLRequest& request)
 {
     if (m_testInterfaces->testRunner()->shouldDumpResourceRequestCallbacks()) {
@@ -1280,6 +1273,11 @@
 
     GURL mainDocumentURL = request.firstPartyForCookies();
 
+    if (redirectResponse.isNull() && (m_testInterfaces->testRunner()->shouldDumpResourceLoadCallbacks() || m_testInterfaces->testRunner()->shouldDumpResourcePriorities())) {
+        WEBKIT_ASSERT(m_resourceIdentifierMap.find(identifier) == m_resourceIdentifierMap.end());
+        m_resourceIdentifierMap[identifier] = descriptionSuitableForTestResult(requestURL);
+    }
+
     if (m_testInterfaces->testRunner()->shouldDumpResourceLoadCallbacks()) {
         if (m_resourceIdentifierMap.find(identifier) == m_resourceIdentifierMap.end())
             m_delegate->printMessage("<unknown>");
@@ -1459,18 +1457,13 @@
     m_testInterfaces->testRunner()->setTopLoadingFrame(frame, true);
 }
 
-WebNavigationPolicy WebTestProxyBase::decidePolicyForNavigation(WebFrame*, const WebURLRequest& request, WebNavigationType type, const WebNode& originatingNode, WebNavigationPolicy defaultPolicy, bool isRedirect)
+WebNavigationPolicy WebTestProxyBase::decidePolicyForNavigation(WebFrame*, const WebURLRequest& request, WebNavigationType type, WebNavigationPolicy defaultPolicy, bool isRedirect)
 {
     WebNavigationPolicy result;
     if (!m_testInterfaces->testRunner()->policyDelegateEnabled())
         return defaultPolicy;
 
-    m_delegate->printMessage(string("Policy delegate: attempt to load ") + URLDescription(request.url()) + " with navigation type '" + webNavigationTypeToString(type) + "'");
-    if (!originatingNode.isNull()) {
-        m_delegate->printMessage(" originating from ");
-        printNodeDescription(m_delegate, originatingNode, 0);
-    }
-    m_delegate->printMessage("\n");
+    m_delegate->printMessage(string("Policy delegate: attempt to load ") + URLDescription(request.url()) + " with navigation type '" + webNavigationTypeToString(type) + "'\n");
     if (m_testInterfaces->testRunner()->policyDelegateIsPermissive())
         result = WebKit::WebNavigationPolicyCurrentTab;
     else
diff --git a/Tools/DumpRenderTree/chromium/TestRunner/src/WebUserMediaClientMock.cpp b/Tools/DumpRenderTree/chromium/TestRunner/src/WebUserMediaClientMock.cpp
index 1813e18..bed7ebc 100644
--- a/Tools/DumpRenderTree/chromium/TestRunner/src/WebUserMediaClientMock.cpp
+++ b/Tools/DumpRenderTree/chromium/TestRunner/src/WebUserMediaClientMock.cpp
@@ -29,8 +29,6 @@
  */
 
 #include "config.h"
-
-#if ENABLE_WEBRTC
 #include "WebUserMediaClientMock.h"
 
 #include "MockConstraints.h"
@@ -133,5 +131,3 @@
 }
 
 }
-
-#endif // ENABLE_WEBRTC
diff --git a/Tools/DumpRenderTree/chromium/TestShell.cpp b/Tools/DumpRenderTree/chromium/TestShell.cpp
index 942ec1d..3b011a7 100644
--- a/Tools/DumpRenderTree/chromium/TestShell.cpp
+++ b/Tools/DumpRenderTree/chromium/TestShell.cpp
@@ -41,7 +41,6 @@
 #include "WebElement.h"
 #include "WebFrame.h"
 #include "WebHistoryItem.h"
-#include "WebIDBFactory.h"
 #include "WebTestingSupport.h"
 #include "WebSettings.h"
 #include "WebTestProxy.h"
@@ -134,15 +133,12 @@
     m_testInterfaces = adoptPtr(new WebTestInterfaces());
     platformSupport->setInterfaces(m_testInterfaces.get());
     m_devToolsTestInterfaces = adoptPtr(new WebTestInterfaces());
-#if ENABLE(LINK_PRERENDER)
     m_prerenderingSupport = adoptPtr(new MockWebPrerenderingSupport());
-#endif
-#if !defined(USE_DEFAULT_RENDER_THEME) && (OS(WINDOWS) || OS(MAC_OS_X))
+#if !defined(USE_DEFAULT_RENDER_THEME) && (OS(WINDOWS) || OS(DARWIN))
     // Set theme engine.
     webkit_support::SetThemeEngine(m_testInterfaces->themeEngine());
 #endif
 
-
     WTF::initializeThreading();
 
     if (m_threadedCompositingEnabled)
@@ -404,7 +400,7 @@
     // drawing may have erased it in a few places. So on Windows we force it to
     // opaque and also don't write the alpha channel for the reference. Linux
     // doesn't have the wrong alpha like Windows, but we match Windows.
-#if OS(MAC_OS_X)
+#if OS(DARWIN)
     bool discardTransparency = false;
 #else
     bool discardTransparency = true;
diff --git a/Tools/DumpRenderTree/chromium/TestShell.h b/Tools/DumpRenderTree/chromium/TestShell.h
index 17498d3..010c320 100644
--- a/Tools/DumpRenderTree/chromium/TestShell.h
+++ b/Tools/DumpRenderTree/chromium/TestShell.h
@@ -200,9 +200,7 @@
     // It's important that this thread is destroyed after the WebViewHost.
     OwnPtr<WebKit::WebThread> m_webCompositorThread;
     OwnPtr<WebViewHost> m_webViewHost;
-#if ENABLE(LINK_PRERENDER)
     OwnPtr<MockWebPrerenderingSupport> m_prerenderingSupport;
-#endif
 
     TestParams m_params;
     bool m_dumpPixelsForCurrentTest;
diff --git a/Tools/DumpRenderTree/chromium/TestShellWin.cpp b/Tools/DumpRenderTree/chromium/TestShellWin.cpp
index 251641e..f494f5d 100644
--- a/Tools/DumpRenderTree/chromium/TestShellWin.cpp
+++ b/Tools/DumpRenderTree/chromium/TestShellWin.cpp
@@ -181,7 +181,7 @@
     ::GetVersionEx(&versionInfo);
     const bool isVistaOrLater = (versionInfo.dwMajorVersion >= 6);
     NONCLIENTMETRICS metrics = {0};
-    metrics.cbSize = isVistaOrLater ? (sizeof NONCLIENTMETRICS) : NONCLIENTMETRICS_SIZE_PRE_VISTA;
+    metrics.cbSize = isVistaOrLater ? sizeof(NONCLIENTMETRICS) : NONCLIENTMETRICS_SIZE_PRE_VISTA;
     const bool success = !!::SystemParametersInfo(SPI_GETNONCLIENTMETRICS, metrics.cbSize, &metrics, 0);
     ASSERT(success);
     LOGFONTW* systemFonts[] =
diff --git a/Tools/DumpRenderTree/chromium/WebViewHost.cpp b/Tools/DumpRenderTree/chromium/WebViewHost.cpp
index 9c542a4..f2068e3 100644
--- a/Tools/DumpRenderTree/chromium/WebViewHost.cpp
+++ b/Tools/DumpRenderTree/chromium/WebViewHost.cpp
@@ -209,7 +209,7 @@
 
 void WebViewHost::didUpdateLayout()
 {
-#if OS(MAC_OS_X)
+#if OS(DARWIN)
     static bool queryingPreferredSize = false;
     if (queryingPreferredSize)
         return;
@@ -409,15 +409,6 @@
     return webkit_support::CreateWebPlugin(frame, params);
 }
 
-WebMediaPlayer* WebViewHost::createMediaPlayer(WebFrame* frame, const WebURL& url, WebMediaPlayerClient* client)
-{
-#if ENABLE(MEDIA_STREAM)
-    return webkit_support::CreateMediaPlayer(frame, url, client, testMediaStreamClient());
-#else
-    return webkit_support::CreateMediaPlayer(frame, url, client);
-#endif
-}
-
 WebApplicationCacheHost* WebViewHost::createApplicationCacheHost(WebFrame* frame, WebApplicationCacheHostClient* client)
 {
     return webkit_support::CreateApplicationCacheHost(frame, client);
@@ -437,9 +428,7 @@
 }
 
 WebNavigationPolicy WebViewHost::decidePolicyForNavigation(
-    WebFrame*, const WebURLRequest&,
-    WebNavigationType, const WebNode&,
-    WebNavigationPolicy defaultPolicy, bool)
+    WebFrame*, const WebURLRequest&, WebNavigationType, WebNavigationPolicy defaultPolicy, bool)
 {
     return defaultPolicy;
 }
@@ -729,6 +718,13 @@
     }
 }
 
+WebMediaPlayer* WebViewHost::createWebMediaPlayer(WebFrame* frame, const WebURL& url, WebMediaPlayerClient* client)
+{
+    return webkit_support::CreateMediaPlayer(frame, url, client,
+        testMediaStreamClient()
+        );
+}
+
 // Public functions -----------------------------------------------------------
 
 WebViewHost::WebViewHost(TestShell* shell)
@@ -992,11 +988,9 @@
     webView()->didExitFullScreen();
 }
 
-#if ENABLE(MEDIA_STREAM)
 webkit_support::TestMediaStreamClient* WebViewHost::testMediaStreamClient()
 {
     if (!m_testMediaStreamClient.get())
         m_testMediaStreamClient = adoptPtr(new webkit_support::TestMediaStreamClient());
     return m_testMediaStreamClient.get();
 }
-#endif
diff --git a/Tools/DumpRenderTree/chromium/WebViewHost.h b/Tools/DumpRenderTree/chromium/WebViewHost.h
index 7b1cb22..4be88fb 100644
--- a/Tools/DumpRenderTree/chromium/WebViewHost.h
+++ b/Tools/DumpRenderTree/chromium/WebViewHost.h
@@ -122,6 +122,7 @@
     virtual void loadURLForFrame(const WebKit::WebURL&, const std::string& frameName) OVERRIDE;
     virtual bool allowExternalPages() OVERRIDE;
     virtual void captureHistoryForWindow(WebTestRunner::WebTestProxyBase*, WebKit::WebVector<WebKit::WebHistoryItem>*, size_t* currentEntryIndex) OVERRIDE;
+    virtual WebKit::WebMediaPlayer* createWebMediaPlayer(WebKit::WebFrame*, const WebKit::WebURL&, WebKit::WebMediaPlayerClient*) OVERRIDE;
 
     // NavigationHost
     virtual bool navigate(const TestNavigationEntry&, bool reload);
@@ -175,14 +176,12 @@
 
     // WebKit::WebFrameClient
     virtual WebKit::WebPlugin* createPlugin(WebKit::WebFrame*, const WebKit::WebPluginParams&);
-    virtual WebKit::WebMediaPlayer* createMediaPlayer(WebKit::WebFrame*, const WebKit::WebURL&, WebKit::WebMediaPlayerClient*);
     virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost(WebKit::WebFrame*, WebKit::WebApplicationCacheHostClient*);
     virtual void loadURLExternally(WebKit::WebFrame*, const WebKit::WebURLRequest&, WebKit::WebNavigationPolicy);
     virtual void loadURLExternally(WebKit::WebFrame*, const WebKit::WebURLRequest&, WebKit::WebNavigationPolicy, const WebKit::WebString& downloadName);
     virtual WebKit::WebNavigationPolicy decidePolicyForNavigation(
         WebKit::WebFrame*, const WebKit::WebURLRequest&,
-        WebKit::WebNavigationType, const WebKit::WebNode&,
-        WebKit::WebNavigationPolicy, bool isRedirect);
+        WebKit::WebNavigationType, WebKit::WebNavigationPolicy, bool isRedirect);
     virtual bool canHandleRequest(WebKit::WebFrame*, const WebKit::WebURLRequest&);
     virtual WebKit::WebURLError cancelledError(WebKit::WebFrame*, const WebKit::WebURLRequest&);
     virtual void unableToImplementPolicyWithError(WebKit::WebFrame*, const WebKit::WebURLError&);
@@ -239,9 +238,7 @@
 
     void updateViewportSize();
 
-#if ENABLE(MEDIA_STREAM)
     webkit_support::TestMediaStreamClient* testMediaStreamClient();
-#endif
 
     // Non-owning pointer. The WebViewHost instance is owned by this TestShell instance.
     TestShell* m_shell;
@@ -271,13 +268,9 @@
     std::string m_editCommandName;
     std::string m_editCommandValue;
 
-
     OwnPtr<WebKit::WebContextMenuData> m_lastContextMenuData;
 
-
-#if ENABLE(MEDIA_STREAM)
     OwnPtr<webkit_support::TestMediaStreamClient> m_testMediaStreamClient;
-#endif
 
     OwnPtr<TestNavigationController> m_navigationController;
 
diff --git a/Tools/DumpRenderTree/chromium/config.h b/Tools/DumpRenderTree/chromium/config.h
index ef418ae..04502d3 100644
--- a/Tools/DumpRenderTree/chromium/config.h
+++ b/Tools/DumpRenderTree/chromium/config.h
@@ -32,7 +32,6 @@
 #define config_h
 
 #include <wtf/Platform.h>
-#include <wtf/ExportMacros.h>
 
 #if OS(WINDOWS) && !COMPILER(GCC)
 // Allow 'this' to be used in base member initializer list.
diff --git a/Tools/DumpRenderTree/config.h b/Tools/DumpRenderTree/config.h
deleted file mode 100644
index c6ae105..0000000
--- a/Tools/DumpRenderTree/config.h
+++ /dev/null
@@ -1,95 +0,0 @@
-/*
- * Copyright (C) 2008 Nuanti Ltd.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this library; see the file COPYING.LIB.  If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- *
- */
-
-#define Config_H
-
-#if defined(HAVE_CONFIG_H) && HAVE_CONFIG_H
-#if defined(BUILDING_WITH_CMAKE)
-#include "cmakeconfig.h"
-#else
-#include "autotoolsconfig.h"
-#endif
-#endif
-
-#include <wtf/Platform.h>
-#include <wtf/ExportMacros.h>
-#if USE(JSC)
-#include <runtime/JSExportMacros.h>
-#endif
-
-// On MSW, wx headers need to be included before windows.h is.
-// The only way we can always ensure this is if we include wx here.
-#if PLATFORM(WX)
-#include <wx/defs.h>
-#endif
-
-
-#ifdef __cplusplus
-#undef new
-#undef delete
-#include <wtf/FastMalloc.h>
-#endif
-
-#if PLATFORM(MAC)
-#define WTF_USE_CF 1
-
-// FIXME: These can be removed after sufficient time has passed since the removal of BUILDING_ON / TARGETING macros.
-
-#define ERROR_PLEASE_COMPARE_WITH_MAC_OS_X_VERSION_MIN_REQUIRED 0 / 0
-#define ERROR_PLEASE_COMPARE_WITH_MAC_OS_X_VERSION_MAX_ALLOWED 0 / 0
-
-#define BUILDING_ON_LEOPARD ERROR_PLEASE_COMPARE_WITH_MAC_OS_X_VERSION_MIN_REQUIRED
-#define BUILDING_ON_SNOW_LEOPARD ERROR_PLEASE_COMPARE_WITH_MAC_OS_X_VERSION_MIN_REQUIRED
-#define BUILDING_ON_LION ERROR_PLEASE_COMPARE_WITH_MAC_OS_X_VERSION_MIN_REQUIRED
-
-#define TARGETING_LEOPARD ERROR_PLEASE_COMPARE_WITH_MAC_OS_X_VERSION_MAX_ALLOWED
-#define TARGETING_SNOW_LEOPARD ERROR_PLEASE_COMPARE_WITH_MAC_OS_X_VERSION_MAX_ALLOWED
-#define TARGETING_LION ERROR_PLEASE_COMPARE_WITH_MAC_OS_X_VERSION_MAX_ALLOWED
-
-#endif // PLATFORM(MAC)
-
-#if OS(WINDOWS)
-// If we don't define these, they get defined in windef.h. 
-// We want to use std::min and std::max
-#undef max
-#define max max
-#undef min
-#define min min
-#endif
-
-#if PLATFORM(WIN)
-#define WTF_USE_CF 1 
-#if PLATFORM(WIN_CAIRO)
-#define WTF_USE_CAIRO 1
-#define WTF_USE_CURL 1
-#else
-#define WTF_USE_CG 1
-#define WTF_USE_CFNETWORK 1
-#endif
-
-#undef _WIN32_WINNT
-#define _WIN32_WINNT 0x0502
-
-#undef WINVER
-#define WINVER 0x0502
-
-#undef _WINSOCKAPI_
-#define _WINSOCKAPI_ // Prevent inclusion of winsock.h in windows.h
-#endif  // PLATFORM(WIN)
diff --git a/Tools/DumpRenderTree/efl/AccessibilityControllerEfl.cpp b/Tools/DumpRenderTree/efl/AccessibilityControllerEfl.cpp
deleted file mode 100644
index 8012da6..0000000
--- a/Tools/DumpRenderTree/efl/AccessibilityControllerEfl.cpp
+++ /dev/null
@@ -1,77 +0,0 @@
-/*
- * Copyright (C) 2008, 2009, 2010 Apple Inc. All Rights Reserved.
- * Copyright (C) 2009 Jan Michael Alonzo
- * Copyright (C) 2013 Samsung Electronics. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "AccessibilityController.h"
-
-#if HAVE(ACCESSIBILITY)
-
-#include "AccessibilityCallbacks.h"
-#include "AccessibilityUIElement.h"
-#include "DumpRenderTree.h"
-#include "DumpRenderTreeChrome.h"
-#include "WebCoreSupport/DumpRenderTreeSupportEfl.h"
-
-#include <atk/atk.h>
-#include <wtf/gobject/GOwnPtr.h>
-
-AccessibilityUIElement AccessibilityController::focusedElement()
-{
-    AtkObject* accessible =  DumpRenderTreeSupportEfl::focusedAccessibleElement(browser->mainFrame());
-    if (!accessible)
-        return 0;
-
-    return AccessibilityUIElement(accessible);
-}
-
-AccessibilityUIElement AccessibilityController::rootElement()
-{
-    AtkObject* accessible = DumpRenderTreeSupportEfl::rootAccessibleElement(browser->mainFrame());
-    if (!accessible)
-        return 0;
-
-    return AccessibilityUIElement(accessible);
-}
-
-AccessibilityUIElement AccessibilityController::accessibleElementById(JSStringRef id)
-{
-    AtkObject* root = DumpRenderTreeSupportEfl::rootAccessibleElement(browser->mainFrame());
-    if (!root)
-        return 0;
-
-    size_t bufferSize = JSStringGetMaximumUTF8CStringSize(id);
-    GOwnPtr<gchar> idBuffer(static_cast<gchar*>(g_malloc(bufferSize)));
-    JSStringGetUTF8CString(id, idBuffer.get(), bufferSize);
-
-    AtkObject* result = childElementById(root, idBuffer.get());
-    if (ATK_IS_OBJECT(result))
-        return AccessibilityUIElement(result);
-
-    return 0;
-}
-
-#endif
diff --git a/Tools/DumpRenderTree/efl/AccessibilityUIElementEfl.cpp b/Tools/DumpRenderTree/efl/AccessibilityUIElementEfl.cpp
deleted file mode 100644
index 9e115d9..0000000
--- a/Tools/DumpRenderTree/efl/AccessibilityUIElementEfl.cpp
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * Copyright (C) 2008 Apple Inc. All Rights Reserved.
- * Copyright (C) 2009 Jan Michael Alonzo
- * Copyright (C) 2013 Samsung Electronics. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#include "config.h"
-#include "AccessibilityUIElement.h"
-
-#if HAVE(ACCESSIBILITY)
-
-#include "WebCoreSupport/DumpRenderTreeSupportEfl.h"
-#include <JavaScriptCore/JSStringRef.h>
-#include <atk/atk.h>
-#include <wtf/Assertions.h>
-#include <wtf/gobject/GOwnPtr.h>
-#include <wtf/gobject/GRefPtr.h>
-#include <wtf/text/WTFString.h>
-#include <wtf/unicode/CharacterNames.h>
-
-JSStringRef AccessibilityUIElement::helpText() const
-{
-    if (!m_element)
-        return JSStringCreateWithCharacters(0, 0);
-
-    ASSERT(ATK_IS_OBJECT(m_element));
-
-    String helpText = DumpRenderTreeSupportEfl::accessibilityHelpText(ATK_OBJECT(m_element));
-    GOwnPtr<gchar> axHelpText(g_strdup_printf("AXHelp: %s", helpText.utf8().data()));
-    return JSStringCreateWithUTF8CString(axHelpText.get());
-}
-
-#endif
diff --git a/Tools/DumpRenderTree/efl/CMakeLists.txt b/Tools/DumpRenderTree/efl/CMakeLists.txt
deleted file mode 100644
index bedaa5c..0000000
--- a/Tools/DumpRenderTree/efl/CMakeLists.txt
+++ /dev/null
@@ -1,143 +0,0 @@
-set(DumpRenderTree_SOURCES
-    ${TOOLS_DIR}/DumpRenderTree/AccessibilityController.cpp
-    ${TOOLS_DIR}/DumpRenderTree/AccessibilityTextMarker.cpp
-    ${TOOLS_DIR}/DumpRenderTree/AccessibilityUIElement.cpp
-    ${TOOLS_DIR}/DumpRenderTree/DumpRenderTreeCommon.cpp
-    ${TOOLS_DIR}/DumpRenderTree/CyclicRedundancyCheck.cpp
-    ${TOOLS_DIR}/DumpRenderTree/GCController.cpp
-    ${TOOLS_DIR}/DumpRenderTree/TestRunner.cpp
-    ${TOOLS_DIR}/DumpRenderTree/PixelDumpSupport.cpp
-    ${TOOLS_DIR}/DumpRenderTree/WorkQueue.cpp
-    ${TOOLS_DIR}/DumpRenderTree/atk/AccessibilityCallbacksAtk.cpp
-    ${TOOLS_DIR}/DumpRenderTree/atk/AccessibilityControllerAtk.cpp
-    ${TOOLS_DIR}/DumpRenderTree/atk/AccessibilityUIElementAtk.cpp
-    ${TOOLS_DIR}/DumpRenderTree/cairo/PixelDumpSupportCairo.cpp
-    ${TOOLS_DIR}/DumpRenderTree/efl/AccessibilityControllerEfl.cpp
-    ${TOOLS_DIR}/DumpRenderTree/efl/AccessibilityUIElementEfl.cpp
-    ${TOOLS_DIR}/DumpRenderTree/efl/DumpHistoryItem.cpp
-    ${TOOLS_DIR}/DumpRenderTree/efl/DumpRenderTree.cpp
-    ${TOOLS_DIR}/DumpRenderTree/efl/DumpRenderTreeChrome.cpp
-    ${TOOLS_DIR}/DumpRenderTree/efl/DumpRenderTreeView.cpp
-    ${TOOLS_DIR}/DumpRenderTree/efl/EditingCallbacks.cpp
-    ${TOOLS_DIR}/DumpRenderTree/efl/EventSender.cpp
-    ${TOOLS_DIR}/DumpRenderTree/efl/FontManagement.cpp
-    ${TOOLS_DIR}/DumpRenderTree/efl/GCControllerEfl.cpp
-    ${TOOLS_DIR}/DumpRenderTree/efl/JSStringUtils.cpp
-    ${TOOLS_DIR}/DumpRenderTree/efl/TestRunnerEfl.cpp
-    ${TOOLS_DIR}/DumpRenderTree/efl/PixelDumpSupportEfl.cpp
-    ${TOOLS_DIR}/DumpRenderTree/efl/TextInputController.cpp
-    ${TOOLS_DIR}/DumpRenderTree/efl/WorkQueueItemEfl.cpp
-)
-
-set(DumpRenderTree_LIBRARIES
-    ${JavaScriptCore_LIBRARY_NAME}
-    ${WebCoreTestSupport_LIBRARY_NAME}
-    ${WebCore_LIBRARY_NAME}
-    ${WebKit_LIBRARY_NAME}
-    ${WTF_LIBRARY_NAME}
-    ${CAIRO_LIBRARIES}
-    ${ECORE_LIBRARIES}
-    ${ECORE_EVAS_LIBRARIES}
-    ${ECORE_FILE_LIBRARIES}
-    ${ECORE_INPUT_LIBRARIES}
-    ${EDJE_LIBRARIES}
-    ${EINA_LIBRARIES}
-    ${EO_LIBRARIES}
-    ${EVAS_LIBRARIES}
-    ${FONTCONFIG_LIBRARIES}
-    ${LIBXML2_LIBRARIES}
-    ${LIBXSLT_LIBRARIES}
-    ${SQLITE_LIBRARIES}
-    ${GLIB_LIBRARIES}
-    ${LIBSOUP_LIBRARIES}
-)
-
-set(DumpRenderTree_INCLUDE_DIRECTORIES
-    "${WEBKIT_DIR}/efl/ewk"
-    ${WEBKIT_DIR}/efl
-    ${WEBKIT_DIR}/efl/WebCoreSupport
-    ${WEBCORE_DIR}
-    ${WEBCORE_DIR}/bridge
-    ${WEBCORE_DIR}/bridge/jsc
-    ${WEBCORE_DIR}/bindings
-    ${WEBCORE_DIR}/dom
-    ${WEBCORE_DIR}/editing
-    ${WEBCORE_DIR}/css
-    ${WEBCORE_DIR}/html
-    ${WEBCORE_DIR}/inspector
-    ${WEBCORE_DIR}/page
-    ${WEBCORE_DIR}/page/animation
-    ${WEBCORE_DIR}/platform
-    ${WEBCORE_DIR}/platform/animation
-    ${WEBCORE_DIR}/platform/text
-    ${WEBCORE_DIR}/platform/graphics
-    ${WEBCORE_DIR}/platform/graphics/cairo
-    ${WEBCORE_DIR}/platform/graphics/transforms
-    ${WEBCORE_DIR}/platform/network
-    ${WEBCORE_DIR}/platform/network/soup
-    ${WEBCORE_DIR}/plugins
-    ${WEBCORE_DIR}/rendering
-    ${WEBCORE_DIR}/rendering/style
-    ${WEBCORE_DIR}/history
-    ${WEBCORE_DIR}/loader
-    ${WEBCORE_DIR}/loader/cache
-    ${WEBCORE_DIR}/loader/icon
-    ${JAVASCRIPTCORE_DIR}
-    ${JAVASCRIPTCORE_DIR}/API
-    ${JAVASCRIPTCORE_DIR}/assembler
-    ${JAVASCRIPTCORE_DIR}/bytecode
-    ${JAVASCRIPTCORE_DIR}/dfg
-    ${JAVASCRIPTCORE_DIR}/disassembler
-    ${JAVASCRIPTCORE_DIR}/heap
-    ${JAVASCRIPTCORE_DIR}/interpreter
-    ${JAVASCRIPTCORE_DIR}/jit
-    ${JAVASCRIPTCORE_DIR}/llint
-    ${JAVASCRIPTCORE_DIR}/profiler
-    ${JAVASCRIPTCORE_DIR}/runtime
-    ${JAVASCRIPTCORE_DIR}/ForwardingHeaders
-    ${TOOLS_DIR}/DumpRenderTree
-    ${TOOLS_DIR}/DumpRenderTree/atk
-    ${TOOLS_DIR}/DumpRenderTree/cairo
-    ${TOOLS_DIR}/DumpRenderTree/efl
-    ${WTF_DIR}
-    ${CMAKE_SOURCE_DIR}/Source
-    ${CMAKE_BINARY_DIR}
-    ${DERIVED_SOURCES_WEBCORE_DIR}
-    ${WEBCORE_DIR}/bindings/js
-    ${WEBCORE_DIR}/testing/js
-    ${CAIRO_INCLUDE_DIRS}
-    ${ECORE_INCLUDE_DIRS}
-    ${ECORE_INCLUDE_DIRS}
-    ${ECORE_EVAS_INCLUDE_DIRS}
-    ${ECORE_FILE_INCLUDE_DIRS}
-    ${ECORE_INPUT_INCLUDE_DIRS}
-    ${EDJE_INCLUDE_DIRS}
-    ${EINA_INCLUDE_DIRS}
-    ${EO_INCLUDE_DIRS}
-    ${EVAS_INCLUDE_DIRS}
-    ${FONTCONFIG_INCLUDE_DIR}
-    ${GLIB_INCLUDE_DIRS}
-    ${LIBSOUP_INCLUDE_DIRS}
-)
-
-if (ENABLE_ACCESSIBILITY)
-    list(APPEND DumpRenderTree_INCLUDE_DIRECTORIES
-        ${TOOLS_DIR}/DumpRenderTree/atk
-        ${ATK_INCLUDE_DIRS}
-    )
-    list(APPEND DumpRenderTree_LIBRARIES
-        ${ATK_LIBRARIES}
-    )
-endif ()
-
-# FIXME: DOWNLOADED_FONTS_DIR should not hardcode the directory
-# structure. See <https://bugs.webkit.org/show_bug.cgi?id=81475>.
-add_definitions(-DFONTS_CONF_DIR="${TOOLS_DIR}/DumpRenderTree/gtk/fonts"
-                -DDOWNLOADED_FONTS_DIR="${CMAKE_SOURCE_DIR}/WebKitBuild/Dependencies/Source/webkitgtk-test-fonts-0.0.3"
-                -DDATA_DIR="${THEME_BINARY_DIR}")
-
-include_directories(${DumpRenderTree_INCLUDE_DIRECTORIES})
-
-add_executable(DumpRenderTree ${DumpRenderTree_SOURCES})
-target_link_libraries(DumpRenderTree ${DumpRenderTree_LIBRARIES})
-set_target_properties(DumpRenderTree PROPERTIES FOLDER "Tools")
diff --git a/Tools/DumpRenderTree/efl/DumpHistoryItem.cpp b/Tools/DumpRenderTree/efl/DumpHistoryItem.cpp
deleted file mode 100644
index 125b128..0000000
--- a/Tools/DumpRenderTree/efl/DumpHistoryItem.cpp
+++ /dev/null
@@ -1,134 +0,0 @@
-/*
- * Copyright (C) 2011 ProFUSION Embedded Systems
- * Copyright (C) 2011 Samsung Electronics
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
- * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "DumpHistoryItem.h"
-
-#include "DumpRenderTree.h"
-#include "DumpRenderTreeChrome.h"
-#include "WebCoreSupport/DumpRenderTreeSupportEfl.h"
-#include "ewk_private.h"
-#include <EWebKit.h>
-#include <algorithm>
-#include <cstdio>
-#include <wtf/HashMap.h>
-#include <wtf/OwnPtr.h>
-#include <wtf/Vector.h>
-#include <wtf/text/WTFString.h>
-
-Ewk_History_Item* prevTestBFItem = 0;
-const unsigned historyItemIndent = 8;
-
-static bool compareHistoryItemsByTarget(const Ewk_History_Item* item1, const Ewk_History_Item* item2)
-{
-    return WTF::codePointCompare(DumpRenderTreeSupportEfl::historyItemTarget(item1),
-                                 DumpRenderTreeSupportEfl::historyItemTarget(item2)) < 1;
-}
-
-static void dumpHistoryItem(const Ewk_History_Item* item, int indent, bool current)
-{
-    ASSERT(item);
-    int start = 0;
-    if (current) {
-        printf("curr->");
-        start = 6;
-    }
-    for (int i = start; i < indent; i++)
-        putchar(' ');
-
-    // normalize file URLs.
-    const char* uri = ewk_history_item_uri_get(item);
-    if (!strncasecmp(uri, "file://", sizeof("file://") - 1)) {
-        const char* pos = strstr(uri, "/LayoutTests/");
-        if (!pos)
-            return;
-
-        printf("(file test):%s", pos + sizeof("/LayoutTests/") - 1);
-    } else
-        printf("%s", uri);
-
-    const String target = DumpRenderTreeSupportEfl::historyItemTarget(item);
-    if (!target.isEmpty())
-        printf(" (in frame \"%s\")", target.utf8().data());
-    if (DumpRenderTreeSupportEfl::isTargetItem(item))
-        printf("  **nav target**");
-    putchar('\n');
-
-    HistoryItemChildrenVector children = DumpRenderTreeSupportEfl::childHistoryItems(item);
-
-    // Must sort to eliminate arbitrary result ordering which defeats reproducible testing.
-    std::stable_sort(children.begin(), children.end(), compareHistoryItemsByTarget);
-
-    const size_t size = children.size();
-    for (size_t i = 0; i < size; ++i)
-        dumpHistoryItem(children[i], indent + 4, false);
-}
-
-static void dumpBackForwardListForWebView(Evas_Object* view)
-{
-    printf("\n============== Back Forward List ==============\n");
-
-    const Ewk_History* history = ewk_view_history_get(view);
-
-    // Print out all items in the list after prevTestBFItem, which was from the previous test
-    // Gather items from the end of the list, the print them out from oldest to newest
-    Eina_List* itemsToPrint = 0;
-    void* historyItem;
-    Eina_List* backwardList = ewk_history_back_list_get(history);
-    EINA_LIST_FREE(backwardList, historyItem) {
-        if (historyItem == prevTestBFItem) {
-            eina_list_free(backwardList);
-            break;
-        }
-        itemsToPrint = eina_list_append(itemsToPrint, historyItem);
-    }
-
-    const Ewk_History_Item* currentItem = ewk_history_history_item_current_get(history);
-    if (currentItem)
-        itemsToPrint = eina_list_append(itemsToPrint, currentItem);
-
-    Eina_List* forwardList = ewk_history_forward_list_get(history);
-    EINA_LIST_FREE(forwardList, historyItem) {
-        ASSERT(historyItem != prevTestBFItem);
-        itemsToPrint = eina_list_append(itemsToPrint, historyItem);
-    }
-
-    EINA_LIST_FREE(itemsToPrint, historyItem) {
-        dumpHistoryItem(static_cast<Ewk_History_Item*>(historyItem), historyItemIndent, historyItem == currentItem);
-        ewk_history_item_free(static_cast<Ewk_History_Item*>(historyItem));
-    }
-
-    printf("===============================================\n");
-}
-
-void dumpBackForwardListForWebViews()
-{
-    // Dump the back forward list of the main WebView first
-    dumpBackForwardListForWebView(browser->mainView());
-
-    Vector<Evas_Object*>::const_iterator it = browser->extraViews().begin();
-    for (; it != browser->extraViews().end(); ++it)
-        dumpBackForwardListForWebView(*it);
-}
diff --git a/Tools/DumpRenderTree/efl/DumpHistoryItem.h b/Tools/DumpRenderTree/efl/DumpHistoryItem.h
deleted file mode 100644
index ea8afea..0000000
--- a/Tools/DumpRenderTree/efl/DumpHistoryItem.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Copyright (C) 2011 ProFUSION Embedded Systems
- * Copyright (C) 2011 Samsung Electronics
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
- * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef DumpHistoryItem_h
-#define DumpHistoryItem_h
-
-#include <Evas.h>
-
-void dumpBackForwardListForWebViews();
-
-#endif // DumpHistoryItem_h
diff --git a/Tools/DumpRenderTree/efl/DumpRenderTree.cpp b/Tools/DumpRenderTree/efl/DumpRenderTree.cpp
deleted file mode 100644
index 6de2d4a..0000000
--- a/Tools/DumpRenderTree/efl/DumpRenderTree.cpp
+++ /dev/null
@@ -1,476 +0,0 @@
-/*
- * Copyright (C) 2011 ProFUSION Embedded Systems
- * Copyright (C) 2011 Samsung Electronics
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
- * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "DumpRenderTree.h"
-
-#include "DumpHistoryItem.h"
-#include "DumpRenderTreeChrome.h"
-#include "DumpRenderTreeView.h"
-#include "EventSender.h"
-#include "FontManagement.h"
-#include "NotImplemented.h"
-#include "PixelDumpSupport.h"
-#include "TestRunner.h"
-#include "WebCoreSupport/DumpRenderTreeSupportEfl.h"
-#include "WebCoreTestSupport.h"
-#include "WorkQueue.h"
-#include "ewk_private.h"
-#include <EWebKit.h>
-#include <Ecore.h>
-#include <Ecore_Evas.h>
-#include <Ecore_File.h>
-#include <Edje.h>
-#include <Evas.h>
-#include <fontconfig/fontconfig.h>
-#include <getopt.h>
-#include <stdlib.h>
-#include <unistd.h>
-#include <wtf/Assertions.h>
-#include <wtf/OwnPtr.h>
-#include <wtf/text/CString.h>
-#include <wtf/text/StringBuilder.h>
-
-OwnPtr<DumpRenderTreeChrome> browser;
-Evas_Object* topLoadingFrame = 0;
-bool waitForPolicy = false;
-bool policyDelegateEnabled = false;
-bool policyDelegatePermissive = false;
-Ecore_Timer* waitToDumpWatchdog = 0;
-extern Ewk_History_Item* prevTestBFItem;
-
-// From the top-level DumpRenderTree.h
-RefPtr<TestRunner> gTestRunner;
-volatile bool done = false;
-
-static bool dumpPixelsForCurrentTest;
-static int dumpPixelsForAllTests = false;
-static int dumpTree = true;
-static int printSeparators = true;
-
-static String dumpFramesAsText(Evas_Object* frame)
-{
-    if (!frame)
-        return String();
-
-    String result;
-    const char* frameContents = ewk_frame_plain_text_get(frame);
-
-    if (!frameContents)
-        return String();
-
-    if (browser->mainFrame() != frame) {
-        result.append("\n--------\nFrame: '");
-        result.append(String::fromUTF8(ewk_frame_name_get(frame)));
-        result.append("'\n--------\n");
-    }
-
-    result.append(String::fromUTF8(frameContents));
-    result.append("\n");
-    eina_stringshare_del(frameContents);
-
-    if (gTestRunner->dumpChildFramesAsText()) {
-        Eina_List* children = DumpRenderTreeSupportEfl::frameChildren(frame);
-        void* iterator;
-
-        EINA_LIST_FREE(children, iterator) {
-            Evas_Object* currentFrame = static_cast<Evas_Object*>(iterator);
-            String tempText(dumpFramesAsText(currentFrame));
-
-            if (tempText.isEmpty())
-                continue;
-
-            result.append(tempText);
-        }
-    }
-
-    return result;
-}
-
-static void dumpFrameScrollPosition(Evas_Object* frame)
-{
-    int x, y;
-    ewk_frame_scroll_pos_get(frame, &x, &y);
-    if (abs(x) > 0 || abs(y) > 0) {
-        StringBuilder result;
-
-        Evas_Object* parent = evas_object_smart_parent_get(frame);
-
-        // smart parent of main frame is view object.
-        if (parent != browser->mainView()) {
-            result.append("frame '");
-            result.append(ewk_frame_name_get(frame));
-            result.append("' ");
-        }
-
-        result.append("scrolled to ");
-        result.append(WTF::String::number(x));
-        result.append(",");
-        result.append(WTF::String::number(y));
-        result.append("\n");
-
-        printf("%s", result.toString().utf8().data());
-    }
-
-    if (gTestRunner->dumpChildFrameScrollPositions()) {
-        Eina_List* children = DumpRenderTreeSupportEfl::frameChildren(frame);
-        void* iterator;
-
-        EINA_LIST_FREE(children, iterator) {
-            Evas_Object* currentFrame = static_cast<Evas_Object*>(iterator);
-            dumpFrameScrollPosition(currentFrame);
-        }
-    }
-}
-
-static bool shouldLogFrameLoadDelegates(const String& pathOrURL)
-{
-    return pathOrURL.contains("loading/");
-}
-
-static bool shouldDumpAsText(const String& pathOrURL)
-{
-    return pathOrURL.contains("dumpAsText/");
-}
-
-static bool shouldOpenWebInspector(const String& pathOrURL)
-{
-    return pathOrURL.contains("inspector/");
-}
-
-static void sendPixelResultsEOF()
-{
-    puts("#EOF");
-    fflush(stdout);
-    fflush(stderr);
-}
-
-static void invalidateAnyPreviousWaitToDumpWatchdog()
-{
-    if (waitToDumpWatchdog) {
-        ecore_timer_del(waitToDumpWatchdog);
-        waitToDumpWatchdog = 0;
-    }
-    waitForPolicy = false;
-}
-
-static void onEcoreEvasResize(Ecore_Evas* ecoreEvas)
-{
-    int width, height;
-
-    ecore_evas_geometry_get(ecoreEvas, 0, 0, &width, &height);
-    evas_object_move(browser->mainView(), 0, 0);
-    evas_object_resize(browser->mainView(), width, height);
-}
-
-static void onCloseWindow(Ecore_Evas*)
-{
-    notImplemented();
-}
-
-static Eina_Bool useLongRunningServerMode(int argc, char** argv)
-{
-    return (argc == optind + 1 && !strcmp(argv[optind], "-"));
-}
-
-static bool parseCommandLineOptions(int argc, char** argv)
-{
-    static const option options[] = {
-        {"notree", no_argument, &dumpTree, false},
-        {"pixel-tests", no_argument, &dumpPixelsForAllTests, true},
-        {"tree", no_argument, &dumpTree, true},
-        {0, 0, 0, 0}
-    };
-
-    int option;
-    while ((option = getopt_long(argc, (char* const*)argv, "", options, 0)) != -1) {
-        switch (option) {
-        case '?':
-        case ':':
-            return false;
-        }
-    }
-
-    return true;
-}
-
-static inline bool isGlobalHistoryTest(const String& cTestPathOrURL)
-{
-    return cTestPathOrURL.contains("/globalhistory/");
-}
-
-static void createTestRunner(const String& testURL, const String& expectedPixelHash)
-{
-    gTestRunner =
-        TestRunner::create(std::string(testURL.utf8().data()),
-                                     std::string(expectedPixelHash.utf8().data()));
-
-    topLoadingFrame = 0;
-    done = false;
-
-    gTestRunner->setIconDatabaseEnabled(false);
-
-    if (shouldLogFrameLoadDelegates(testURL))
-        gTestRunner->setDumpFrameLoadCallbacks(true);
-
-    gTestRunner->setDeveloperExtrasEnabled(true);
-    if (shouldOpenWebInspector(testURL))
-        gTestRunner->showWebInspector();
-
-    gTestRunner->setDumpHistoryDelegateCallbacks(isGlobalHistoryTest(testURL));
-
-    if (shouldDumpAsText(testURL)) {
-        gTestRunner->setDumpAsText(true);
-        gTestRunner->setGeneratePixelResults(false);
-    }
-}
-
-static String getFinalTestURL(const String& testURL)
-{
-    if (!testURL.startsWith("http://") && !testURL.startsWith("https://")) {
-        char* cFilePath = ecore_file_realpath(testURL.utf8().data());
-        const String filePath = String::fromUTF8(cFilePath);
-        free(cFilePath);
-
-        if (ecore_file_exists(filePath.utf8().data()))
-            return String("file://") + filePath;
-    }
-
-    return testURL;
-}
-
-static void runTest(const char* inputLine)
-{
-    TestCommand command = parseInputLine(inputLine);
-    const String testPathOrURL(command.pathOrURL.c_str());
-    ASSERT(!testPathOrURL.isEmpty());
-    dumpPixelsForCurrentTest = command.shouldDumpPixels || dumpPixelsForAllTests;
-    const String expectedPixelHash(command.expectedPixelHash.c_str());
-
-    // Convert the path into a full file URL if it does not look
-    // like an HTTP/S URL (doesn't start with http:// or https://).
-    const String testURL = getFinalTestURL(testPathOrURL);
-
-    browser->resetDefaultsToConsistentValues();
-    createTestRunner(testURL, expectedPixelHash);
-
-    WorkQueue::shared()->clear();
-    WorkQueue::shared()->setFrozen(false);
-
-    const bool isSVGW3CTest = testURL.contains("svg/W3C-SVG-1.1");
-    const int width = isSVGW3CTest ? 480 : TestRunner::maxViewWidth;
-    const int height = isSVGW3CTest ? 360 : TestRunner::maxViewHeight;
-    evas_object_resize(browser->mainView(), width, height);
-
-    if (prevTestBFItem)
-        ewk_history_item_free(prevTestBFItem);
-    const Ewk_History* history = ewk_view_history_get(browser->mainView());
-    prevTestBFItem = ewk_history_history_item_current_get(history);
-
-    evas_object_focus_set(browser->mainView(), EINA_TRUE);
-    ewk_view_uri_set(browser->mainView(), testURL.utf8().data());
-
-    ecore_main_loop_begin();
-
-    gTestRunner->closeWebInspector();
-    gTestRunner->setDeveloperExtrasEnabled(false);
-
-    browser->clearExtraViews();
-
-    // FIXME: Move to DRTChrome::resetDefaultsToConsistentValues() after bug 85209 lands.
-    WebCoreTestSupport::resetInternalsObject(DumpRenderTreeSupportEfl::globalContextRefForFrame(browser->mainFrame()));
-
-    ewk_view_uri_set(browser->mainView(), "about:blank");
-
-    gTestRunner.clear();
-    sendPixelResultsEOF();
-}
-
-static void runTestingServerLoop()
-{
-    char filename[PATH_MAX];
-
-    while (fgets(filename, sizeof(filename), stdin)) {
-        char* newLine = strrchr(filename, '\n');
-        if (newLine)
-            *newLine = '\0';
-
-        if (filename[0] != '\0')
-            runTest(filename);
-    }
-}
-
-static void adjustOutputTypeByMimeType(const Evas_Object* frame)
-{
-    const String responseMimeType(DumpRenderTreeSupportEfl::responseMimeType(frame));
-    if (responseMimeType == "text/plain") {
-        gTestRunner->setDumpAsText(true);
-        gTestRunner->setGeneratePixelResults(false);
-    }
-}
-
-static void dumpFrameContentsAsText(Evas_Object* frame)
-{
-    String result;
-    if (gTestRunner->dumpAsText())
-        result = dumpFramesAsText(frame);
-    else
-        result = DumpRenderTreeSupportEfl::renderTreeDump(frame);
-
-    printf("%s", result.utf8().data());
-}
-
-static bool shouldDumpFrameScrollPosition()
-{
-    return !gTestRunner->dumpAsText() && !gTestRunner->dumpDOMAsWebArchive() && !gTestRunner->dumpSourceAsWebArchive();
-}
-
-static bool shouldDumpPixelsAndCompareWithExpected()
-{
-    return dumpPixelsForCurrentTest && gTestRunner->generatePixelResults() && !gTestRunner->dumpDOMAsWebArchive() && !gTestRunner->dumpSourceAsWebArchive();
-}
-
-static bool shouldDumpBackForwardList()
-{
-    return gTestRunner->dumpBackForwardList();
-}
-
-static bool initEfl()
-{
-    if (!ecore_evas_init())
-        return false;
-    if (!ecore_file_init()) {
-        ecore_evas_shutdown();
-        return false;
-    }
-    if (!edje_init()) {
-        ecore_file_shutdown();
-        ecore_evas_shutdown();
-        return false;
-    }
-    if (!ewk_init()) {
-        edje_shutdown();
-        ecore_file_shutdown();
-        ecore_evas_shutdown();
-        return false;
-    }
-
-    return true;
-}
-
-static void shutdownEfl()
-{
-    ewk_shutdown();
-    edje_shutdown();
-    ecore_file_shutdown();
-    ecore_evas_shutdown();
-}
-
-void displayWebView()
-{
-    DumpRenderTreeSupportEfl::forceLayout(browser->mainFrame());
-    DumpRenderTreeSupportEfl::setTracksRepaints(browser->mainFrame(), true);
-    DumpRenderTreeSupportEfl::resetTrackedRepaints(browser->mainFrame());
-}
-
-void dump()
-{
-    Evas_Object* frame = browser->mainFrame();
-
-    invalidateAnyPreviousWaitToDumpWatchdog();
-
-    if (dumpTree) {
-        adjustOutputTypeByMimeType(frame);
-        dumpFrameContentsAsText(frame);
-
-        if (shouldDumpFrameScrollPosition())
-            dumpFrameScrollPosition(frame);
-
-        if (shouldDumpBackForwardList())
-            dumpBackForwardListForWebViews();
-
-        if (printSeparators) {
-            puts("#EOF");
-            fputs("#EOF\n", stderr);
-            fflush(stdout);
-            fflush(stderr);
-        }
-    }
-
-    if (shouldDumpPixelsAndCompareWithExpected())
-        dumpWebViewAsPixelsAndCompareWithExpected(gTestRunner->expectedPixelHash());
-
-    done = true;
-    ecore_main_loop_quit();
-}
-
-static Ecore_Evas* initEcoreEvas()
-{
-    const char* engine = 0;
-#if defined(WTF_USE_ACCELERATED_COMPOSITING) && defined(HAVE_ECORE_X)
-    engine = "opengl_x11";
-#endif
-    Ecore_Evas* ecoreEvas = ecore_evas_new(engine, 0, 0, 800, 600, 0);
-    if (!ecoreEvas) {
-        shutdownEfl();
-        exit(EXIT_FAILURE);
-    }
-
-    ecore_evas_title_set(ecoreEvas, "EFL DumpRenderTree");
-    ecore_evas_callback_resize_set(ecoreEvas, onEcoreEvasResize);
-    ecore_evas_callback_delete_request_set(ecoreEvas, onCloseWindow);
-    ecore_evas_show(ecoreEvas);
-
-    return ecoreEvas;
-}
-
-int main(int argc, char** argv)
-{
-    if (!parseCommandLineOptions(argc, argv))
-        return EXIT_FAILURE;
-
-    if (!initEfl())
-        return EXIT_FAILURE;
-
-    WTFInstallReportBacktraceOnCrashHook();
-
-    OwnPtr<Ecore_Evas> ecoreEvas = adoptPtr(initEcoreEvas());
-    browser = DumpRenderTreeChrome::create(ecore_evas_get(ecoreEvas.get()));
-    addFontsToEnvironment();
-
-    if (useLongRunningServerMode(argc, argv)) {
-        printSeparators = true;
-        runTestingServerLoop();
-    } else {
-        printSeparators = (optind < argc - 1 || (dumpPixelsForCurrentTest && dumpTree));
-        for (int i = optind; i != argc; ++i)
-            runTest(argv[i]);
-    }
-
-    ecoreEvas.clear();
-
-    shutdownEfl();
-    return EXIT_SUCCESS;
-}
diff --git a/Tools/DumpRenderTree/efl/DumpRenderTreeChrome.cpp b/Tools/DumpRenderTree/efl/DumpRenderTreeChrome.cpp
deleted file mode 100644
index 6127c9d..0000000
--- a/Tools/DumpRenderTree/efl/DumpRenderTreeChrome.cpp
+++ /dev/null
@@ -1,869 +0,0 @@
-/*
- * Copyright (C) 2011 ProFUSION Embedded Systems
- * Copyright (C) 2011 Samsung Electronics
- * Copyright (C) 2012 Intel Corporation
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND ITS CONTRIBUTORS
- * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
- * PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT
- * HOLDERS OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
- * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
- * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "DumpRenderTreeChrome.h"
-
-#include "DumpRenderTree.h"
-#include "DumpRenderTreeView.h"
-#include "EditingCallbacks.h"
-#include "EventSender.h"
-#include "GCController.h"
-#include "KURL.h"
-#include "NotImplemented.h"
-#include "TestRunner.h"
-#include "TextInputController.h"
-#include "WebCoreSupport/DumpRenderTreeSupportEfl.h"
-#include "WebCoreTestSupport.h"
-#include "WorkQueue.h"
-#include "ewk_private.h" // FIXME: create some WebCoreSupport/DumpRenderTree.cpp instead
-
-#include <EWebKit.h>
-#include <Ecore.h>
-#include <Eina.h>
-#include <Evas.h>
-#include <cstdio>
-#include <wtf/NotFound.h>
-#include <wtf/text/StringBuilder.h>
-
-#if HAVE(ACCESSIBILITY)
-#include "AccessibilityController.h"
-#endif
-
-using namespace WebCore;
-
-HashMap<unsigned long, CString> DumpRenderTreeChrome::m_dumpAssignedUrls;
-Evas_Object* DumpRenderTreeChrome::m_provisionalLoadFailedFrame = 0;
-
-PassOwnPtr<DumpRenderTreeChrome> DumpRenderTreeChrome::create(Evas* evas)
-{
-    OwnPtr<DumpRenderTreeChrome> chrome = adoptPtr(new DumpRenderTreeChrome(evas));
-
-    if (!chrome->initialize())
-        return nullptr;
-
-    return chrome.release();
-}
-
-DumpRenderTreeChrome::DumpRenderTreeChrome(Evas* evas)
-    : m_mainView(0)
-    , m_mainFrame(0)
-    , m_evas(evas)
-    , m_gcController(adoptPtr(new GCController))
-    , m_axController(adoptPtr(new AccessibilityController))
-{
-}
-
-DumpRenderTreeChrome::~DumpRenderTreeChrome()
-{
-}
-
-Evas_Object* DumpRenderTreeChrome::createNewWindow()
-{
-    Evas_Object* newView = createView();
-
-    ewk_view_setting_scripts_can_open_windows_set(newView, EINA_TRUE);
-    ewk_view_setting_scripts_can_close_windows_set(newView, EINA_TRUE);
-
-    m_extraViews.append(newView);
-
-    return newView;
-}
-
-Evas_Object* DumpRenderTreeChrome::createView() const
-{
-    Evas_Object* view = drtViewAdd(m_evas);
-    if (!view)
-        return 0;
-
-    ewk_view_theme_set(view, DATA_DIR"/default.edj");
-
-    evas_object_smart_callback_add(view, "download,request", onDownloadRequest, 0);
-    evas_object_smart_callback_add(view, "load,resource,failed", onResourceLoadFailed, 0);
-    evas_object_smart_callback_add(view, "load,resource,finished", onResourceLoadFinished, 0);
-    evas_object_smart_callback_add(view, "load,started", onLoadStarted, 0);
-    evas_object_smart_callback_add(view, "window,object,cleared", onWindowObjectCleared, m_gcController.get());
-    evas_object_smart_callback_add(view, "statusbar,text,set", onStatusbarTextSet, 0);
-    evas_object_smart_callback_add(view, "load,document,finished", onDocumentLoadFinished, 0);
-    evas_object_smart_callback_add(view, "resource,request,new", onNewResourceRequest, 0);
-    evas_object_smart_callback_add(view, "resource,request,willsend", onWillSendRequest, 0);
-    evas_object_smart_callback_add(view, "resource,response,received", onResponseReceived, 0);
-    evas_object_smart_callback_add(view, "onload,event", onWebViewOnloadEvent, 0);
-    evas_object_smart_callback_add(view, "mixedcontent,run", onInsecureContentRun, 0);
-    evas_object_smart_callback_add(view, "mixedcontent,displayed", onInsecureContentDisplayed, 0);
-    evas_object_smart_callback_add(view, "frame,created", onFrameCreated, 0);
-    evas_object_smart_callback_add(view, "navigate,with,data", onWebViewNavigatedWithData, 0);
-    evas_object_smart_callback_add(view, "perform,server,redirect", onWebViewServerRedirect, 0);
-    evas_object_smart_callback_add(view, "perform,client,redirect", onWebViewClientRedirect, 0);
-    evas_object_smart_callback_add(view, "populate,visited,links", onWebViewPopulateVisitedLinks, 0);
-    evas_object_smart_callback_add(view, "inspector,view,create", onInspectorViewCreate, 0);
-    evas_object_smart_callback_add(view, "inspector,view,close", onInspectorViewClose, 0);
-
-    connectEditingCallbacks(view);
-
-    Evas_Object* mainFrame = ewk_view_frame_main_get(view);
-    evas_object_smart_callback_add(mainFrame, "icon,changed", onFrameIconChanged, 0);
-    evas_object_smart_callback_add(mainFrame, "load,provisional", onFrameProvisionalLoad, 0);
-    evas_object_smart_callback_add(mainFrame, "load,provisional,failed", onFrameProvisionalLoadFailed, 0);
-    evas_object_smart_callback_add(mainFrame, "load,committed", onFrameLoadCommitted, 0);
-    evas_object_smart_callback_add(mainFrame, "load,finished", onFrameLoadFinished, 0);
-    evas_object_smart_callback_add(mainFrame, "load,error", onFrameLoadError, 0);
-    evas_object_smart_callback_add(mainFrame, "redirect,cancelled", onFrameRedirectCancelled, 0);
-    evas_object_smart_callback_add(mainFrame, "redirect,load,provisional", onFrameRedirectForProvisionalLoad, 0);
-    evas_object_smart_callback_add(mainFrame, "redirect,requested", onFrameRedirectRequested, 0);
-    evas_object_smart_callback_add(mainFrame, "title,changed", onFrameTitleChanged, 0);
-    evas_object_smart_callback_add(mainFrame, "xss,detected", onDidDetectXSS, 0);
-
-    return view;
-}
-
-Evas_Object* DumpRenderTreeChrome::createInspectorView()
-{
-    Evas_Object* inspectorView = drtViewAdd(m_evas);
-    if (!inspectorView)
-        return 0;
-
-    // Inspector-related views are not expected to have their output logged.
-    const bool ignoreMessages = true;
-    evas_object_data_set(inspectorView, "ignore-console-messages", &ignoreMessages);
-
-    ewk_view_theme_set(inspectorView, DATA_DIR"/default.edj");
-
-    Evas_Object* mainFrame = ewk_view_frame_main_get(inspectorView);
-    evas_object_smart_callback_add(mainFrame, "load,finished", onInspectorFrameLoadFinished, 0);
-
-    evas_object_resize(inspectorView, TestRunner::maxViewWidth, TestRunner::maxViewHeight);
-    evas_object_show(inspectorView);
-    evas_object_focus_set(inspectorView, true);
-
-    return inspectorView;
-}
-
-void DumpRenderTreeChrome::removeInspectorView()
-{
-    Evas_Object* inspectorView = ewk_view_inspector_view_get(mainView());
-    if (!inspectorView)
-        return;
-
-    Evas_Object* mainFrame = ewk_view_frame_main_get(inspectorView);
-    evas_object_smart_callback_del(mainFrame, "load,finished", onInspectorFrameLoadFinished);
-
-    evas_object_del(inspectorView);
-    ewk_view_inspector_view_set(mainView(), 0);
-}
-
-void DumpRenderTreeChrome::waitInspectorLoadFinished()
-{
-    // Waits until the page has finished loading.
-    // Because it can't complete loading inspector.html before loading testURL.
-    Evas_Object* inspectorView = ewk_view_inspector_view_get(mainView());
-    if (inspectorView)
-        ecore_main_loop_begin();
-}
-
-void DumpRenderTreeChrome::removeWindow(Evas_Object* view)
-{
-    const size_t pos = m_extraViews.find(view);
-
-    if (pos == notFound)
-        return;
-
-    m_extraViews.remove(pos);
-    evas_object_del(view);
-}
-
-bool DumpRenderTreeChrome::initialize()
-{
-    // Notifies that DRT is running for ewkView to create testable objects.
-    DumpRenderTreeSupportEfl::setDumpRenderTreeModeEnabled(true);
-    DumpRenderTreeSupportEfl::setMockScrollbarsEnabled(true);
-
-    m_mainView = createView();
-    if (!m_mainView)
-        return false;
-
-    ewk_view_theme_set(m_mainView, DATA_DIR"/default.edj");
-
-    evas_object_name_set(m_mainView, "m_mainView");
-    evas_object_move(m_mainView, 0, 0);
-    evas_object_resize(m_mainView, 800, 600);
-    evas_object_layer_set(m_mainView, EVAS_LAYER_MAX);
-    evas_object_show(m_mainView);
-    evas_object_focus_set(m_mainView, EINA_TRUE);
-
-    m_mainFrame = ewk_view_frame_main_get(m_mainView);
-
-    return true;
-}
-
-const Vector<Evas_Object*>& DumpRenderTreeChrome::extraViews() const
-{
-    return m_extraViews;
-}
-
-void DumpRenderTreeChrome::clearExtraViews()
-{
-    Vector<Evas_Object*>::iterator it = m_extraViews.begin();
-    for (; it != m_extraViews.end(); ++it)
-        evas_object_del(*it);
-    m_extraViews.clear();
-}
-
-Evas_Object* DumpRenderTreeChrome::mainFrame() const
-{
-    return m_mainFrame;
-}
-
-Evas_Object* DumpRenderTreeChrome::mainView() const
-{
-    return m_mainView;
-}
-
-void DumpRenderTreeChrome::resetDefaultsToConsistentValues()
-{
-    ewk_settings_icon_database_clear();
-    ewk_settings_icon_database_path_set(0);
-
-    ewk_web_database_remove_all();
-    ewk_settings_web_database_default_quota_set(5 * 1024 * 1024);
-
-    ewk_settings_memory_cache_clear();
-    ewk_settings_application_cache_clear();
-    ewk_settings_shadow_dom_enable_set(EINA_TRUE);
-
-    ewk_view_setting_private_browsing_set(mainView(), EINA_FALSE);
-    ewk_view_setting_spatial_navigation_set(mainView(), EINA_FALSE);
-    ewk_view_setting_enable_frame_flattening_set(mainView(), EINA_FALSE);
-    ewk_view_setting_application_cache_set(mainView(), EINA_TRUE);
-    ewk_view_setting_enable_scripts_set(mainView(), EINA_TRUE);
-    ewk_view_font_family_name_set(mainView(), EWK_FONT_FAMILY_STANDARD, "Times");
-    ewk_view_font_family_name_set(mainView(), EWK_FONT_FAMILY_MONOSPACE, "Courier");
-    ewk_view_font_family_name_set(mainView(), EWK_FONT_FAMILY_SERIF, "Times");
-    ewk_view_font_family_name_set(mainView(), EWK_FONT_FAMILY_SANS_SERIF, "Helvetica");
-    ewk_view_font_family_name_set(mainView(), EWK_FONT_FAMILY_CURSIVE, "cursive");
-    ewk_view_font_family_name_set(mainView(), EWK_FONT_FAMILY_FANTASY, "fantasy");
-    ewk_view_setting_font_default_size_set(mainView(), 16);
-    ewk_view_setting_font_monospace_size_set(mainView(), 13);
-    ewk_view_setting_font_minimum_size_set(mainView(), 0);
-    ewk_view_setting_caret_browsing_set(mainView(), EINA_FALSE);
-    ewk_view_setting_page_cache_set(mainView(), EINA_FALSE);
-    ewk_view_setting_enable_auto_resize_window_set(mainView(), EINA_TRUE);
-    ewk_view_setting_enable_plugins_set(mainView(), EINA_TRUE);
-    ewk_view_setting_scripts_can_open_windows_set(mainView(), EINA_TRUE);
-    ewk_view_setting_scripts_can_close_windows_set(mainView(), EINA_TRUE);
-    ewk_view_setting_auto_load_images_set(mainView(), EINA_TRUE);
-    ewk_view_setting_user_stylesheet_set(mainView(), 0);
-    ewk_view_setting_enable_xss_auditor_set(browser->mainView(), EINA_TRUE);
-    ewk_view_setting_enable_webgl_set(mainView(), EINA_TRUE);
-    ewk_view_setting_enable_hyperlink_auditing_set(mainView(), EINA_FALSE);
-    ewk_view_setting_include_links_in_focus_chain_set(mainView(), EINA_FALSE);
-    ewk_view_setting_scripts_can_access_clipboard_set(mainView(), EINA_TRUE);
-    ewk_view_setting_web_audio_set(mainView(), EINA_FALSE);
-    ewk_view_setting_allow_universal_access_from_file_urls_set(mainView(), EINA_TRUE);
-    ewk_view_setting_allow_file_access_from_file_urls_set(mainView(), EINA_TRUE);
-    ewk_view_setting_resizable_textareas_set(mainView(), EINA_TRUE);
-
-    ewk_view_zoom_set(mainView(), 1.0, 0, 0);
-    ewk_view_scale_set(mainView(), 1.0, 0, 0);
-    ewk_view_text_zoom_set(mainView(), 1.0);
-    ewk_view_visibility_state_set(mainView(), EWK_PAGE_VISIBILITY_STATE_VISIBLE, true);
-    ewk_view_text_direction_set(mainView(), EWK_TEXT_DIRECTION_DEFAULT);
-
-    ewk_history_clear(ewk_view_history_get(mainView()));
-
-    ewk_frame_feed_focus_in(mainFrame());
-
-    ewk_cookies_clear();
-    ewk_cookies_policy_set(EWK_COOKIE_JAR_ACCEPT_NO_THIRD_PARTY);
-
-    ewk_security_policy_whitelist_origin_reset();
-
-#if HAVE(ACCESSIBILITY)
-    browser->accessibilityController()->resetToConsistentState();
-#endif
-
-    DumpRenderTreeSupportEfl::clearFrameName(mainFrame());
-    DumpRenderTreeSupportEfl::clearOpener(mainFrame());
-    DumpRenderTreeSupportEfl::clearUserScripts(mainView());
-    DumpRenderTreeSupportEfl::clearUserStyleSheets(mainView());
-    DumpRenderTreeSupportEfl::resetGeolocationClientMock(mainView());
-    DumpRenderTreeSupportEfl::setInteractiveFormValidationEnabled(mainView(), true);
-    DumpRenderTreeSupportEfl::setValidationMessageTimerMagnification(mainView(), -1);
-    DumpRenderTreeSupportEfl::setAuthorAndUserStylesEnabled(mainView(), true);
-    DumpRenderTreeSupportEfl::setCSSGridLayoutEnabled(mainView(), false);
-    DumpRenderTreeSupportEfl::setDefersLoading(mainView(), false);
-    DumpRenderTreeSupportEfl::setLoadsSiteIconsIgnoringImageLoadingSetting(mainView(), false);
-    DumpRenderTreeSupportEfl::setSerializeHTTPLoads(false);
-    DumpRenderTreeSupportEfl::setMinimumLogicalFontSize(mainView(), 9);
-    DumpRenderTreeSupportEfl::setCSSRegionsEnabled(mainView(), true);
-    DumpRenderTreeSupportEfl::setShouldTrackVisitedLinks(false);
-    DumpRenderTreeSupportEfl::setTracksRepaints(mainFrame(), false);
-    DumpRenderTreeSupportEfl::setSeamlessIFramesEnabled(true);
-
-    // Reset capacities for the memory cache for dead objects.
-    static const unsigned cacheTotalCapacity =  8192 * 1024;
-    ewk_settings_object_cache_capacity_set(0, cacheTotalCapacity, cacheTotalCapacity);
-    DumpRenderTreeSupportEfl::setDeadDecodedDataDeletionInterval(0);
-    ewk_settings_page_cache_capacity_set(3);
-
-    policyDelegateEnabled = false;
-    policyDelegatePermissive = false;
-}
-
-static CString pathSuitableForTestResult(const char* uriString)
-{
-    if (!uriString)
-        return CString();
-
-    KURL uri = KURL(ParsedURLString, uriString);
-
-    if (!uri.isLocalFile())
-        return uri.string().utf8();
-
-    String pathString = uri.path();
-    size_t indexBaseName = pathString.reverseFind('/');
-    String baseName;
-    if (indexBaseName == notFound)
-        baseName = pathString;
-    else
-        baseName = pathString.substring(indexBaseName + 1);
-
-    String dirName;
-    if (indexBaseName != notFound) {
-        size_t indexDirName = pathString.reverseFind('/', indexBaseName - 1);
-        if (indexDirName != notFound)
-            dirName = pathString.substring(indexDirName + 1, indexBaseName - indexDirName - 1);
-    }
-
-    String ret = dirName + "/" + baseName;
-    return ret.utf8();
-}
-
-static CString urlSuitableForTestResult(const char* uriString)
-{
-    KURL uri = KURL(ParsedURLString, uriString);
-    if (!uri.isLocalFile())
-        return CString(uriString);
-
-    unsigned startIndex = uri.pathAfterLastSlash();
-    return uri.string().substring(startIndex).utf8();
-}
-
-static CString descriptionSuitableForTestResult(Ewk_Frame_Resource_Request* request)
-{
-    StringBuilder builder;
-    builder.appendLiteral("<NSURLRequest URL ");
-    builder.append(pathSuitableForTestResult(request->url).data());
-    builder.appendLiteral(", main document URL ");
-    builder.append(urlSuitableForTestResult(request->first_party).data());
-    builder.appendLiteral(", http method ");
-
-    if (request->http_method)
-        builder.append(String(request->http_method));
-    else
-        builder.appendLiteral("(none)");
-
-    builder.append('>');
-    return builder.toString().utf8();
-}
-
-static CString descriptionSuitableForTestResult(const Ewk_Frame_Resource_Response* response)
-{
-    if (!response)
-        return CString("(null)");
-
-    StringBuilder builder;
-    builder.appendLiteral("<NSURLResponse ");
-    builder.append(pathSuitableForTestResult(response->url).data());
-    builder.appendLiteral(", http status code ");
-    builder.append(String::number(response->status_code));
-    builder.append('>');
-    return builder.toString().utf8();
-}
-
-static CString descriptionSuitableForTestResult(Ewk_Frame_Load_Error* error)
-{
-    const char* errorDomain = error->domain;
-    int errorCode = error->code;
-
-    // We need to do some error mapping here to match
-    // the test expectations.
-    if (!strcmp(error->domain, "WebKitNetworkError")) {
-        errorDomain = "NSURLErrorDomain";
-        errorCode = -999;
-    }
-
-    if (!strcmp(errorDomain, "WebKitPolicyError"))
-        errorDomain = "WebKitErrorDomain";
-
-    String ret = makeString("<NSError domain ", errorDomain, ", code ", String::number(errorCode));
-    if (error->failing_url && *error->failing_url != '\0')
-        ret = makeString(ret, ", failing URL \"", error->failing_url, "\"");
-    ret = makeString(ret, ">");
-
-    return ret.utf8();
-}
-
-// Smart Callbacks
-// ---------------
-
-void DumpRenderTreeChrome::onWindowObjectCleared(void* userData, Evas_Object*, void* eventInfo)
-{
-    Ewk_Window_Object_Cleared_Event* objectClearedInfo = static_cast<Ewk_Window_Object_Cleared_Event*>(eventInfo);
-    JSValueRef exception = 0;
-    ASSERT(gTestRunner);
-
-#if HAVE(ACCESSIBILITY)
-    browser->accessibilityController()->makeWindowObject(objectClearedInfo->context, objectClearedInfo->windowObject, &exception);
-    ASSERT(!exception);
-#endif
-
-    GCController* gcController = static_cast<GCController*>(userData);
-    ASSERT(gcController);
-
-    gTestRunner->makeWindowObject(objectClearedInfo->context, objectClearedInfo->windowObject, &exception);
-    ASSERT(!exception);
-
-    gcController->makeWindowObject(objectClearedInfo->context, objectClearedInfo->windowObject, &exception);
-    ASSERT(!exception);
-
-    JSRetainPtr<JSStringRef> controllerName(Adopt, JSStringCreateWithUTF8CString("eventSender"));
-    JSObjectSetProperty(objectClearedInfo->context, objectClearedInfo->windowObject,
-                        controllerName.get(),
-                        makeEventSender(objectClearedInfo->context, !DumpRenderTreeSupportEfl::frameParent(objectClearedInfo->frame)),
-                        kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, 0);
-
-    JSRetainPtr<JSStringRef> textInputControllerName(Adopt, JSStringCreateWithUTF8CString("textInputController"));
-    JSObjectSetProperty(objectClearedInfo->context, objectClearedInfo->windowObject,
-                        textInputControllerName.get(),
-                        makeTextInputController(objectClearedInfo->context),
-                        kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, 0);
-
-    WebCoreTestSupport::injectInternalsObject(objectClearedInfo->context);
-}
-
-void DumpRenderTreeChrome::onLoadStarted(void*, Evas_Object* view, void* eventInfo)
-{
-    Evas_Object* frame = static_cast<Evas_Object*>(eventInfo);
-
-    // Make sure we only set this once per test. If it gets cleared, and then set again, we might
-    // end up doing two dumps for one test.
-    if (!topLoadingFrame && !done)
-        topLoadingFrame = frame;
-}
-
-Eina_Bool DumpRenderTreeChrome::processWork(void*)
-{
-    if (WorkQueue::shared()->processWork() && !gTestRunner->waitToDump())
-        dump();
-
-    return ECORE_CALLBACK_CANCEL;
-}
-
-void DumpRenderTreeChrome::topLoadingFrameLoadFinished()
-{
-    topLoadingFrame = 0;
-
-    WorkQueue::shared()->setFrozen(true);
-    if (gTestRunner->waitToDump())
-        return;
-
-    if (WorkQueue::shared()->count())
-        ecore_idler_add(processWork, 0 /*frame*/);
-    else
-        dump();
-}
-
-void DumpRenderTreeChrome::onStatusbarTextSet(void*, Evas_Object*, void* eventInfo)
-{
-    if (!gTestRunner->dumpStatusCallbacks())
-        return;
-
-    const char* statusbarText = static_cast<const char*>(eventInfo);
-    printf("UI DELEGATE STATUS CALLBACK: setStatusText:%s\n", statusbarText);
-}
-
-void DumpRenderTreeChrome::onFrameIconChanged(void*, Evas_Object* frame, void*)
-{
-    if (!done && gTestRunner->dumpIconChanges()) {
-        const String frameName(DumpRenderTreeSupportEfl::suitableDRTFrameName(frame));
-        printf("%s - didChangeIcons\n", frameName.utf8().data());
-    }
-}
-
-void DumpRenderTreeChrome::onFrameTitleChanged(void*, Evas_Object* frame, void* eventInfo)
-{
-    const Ewk_Text_With_Direction* titleText = static_cast<const Ewk_Text_With_Direction*>(eventInfo);
-
-    if (!done && gTestRunner->dumpFrameLoadCallbacks()) {
-        const String frameName(DumpRenderTreeSupportEfl::suitableDRTFrameName(frame));
-        printf("%s - didReceiveTitle: %s\n", frameName.utf8().data(), (titleText && titleText->string) ? titleText->string : "");
-    }
-
-    if (!done && gTestRunner->dumpTitleChanges())
-        printf("TITLE CHANGED: '%s'\n", (titleText && titleText->string) ? titleText->string : "");
-
-    if (!done && gTestRunner->dumpHistoryDelegateCallbacks())
-        printf("WebView updated the title for history URL \"%s\" to \"%s\".\n", ewk_frame_uri_get(frame)
-               , (titleText && titleText->string) ? titleText->string : "");
-
-    gTestRunner->setTitleTextDirection(titleText->direction == EWK_TEXT_DIRECTION_LEFT_TO_RIGHT ? "ltr" : "rtl");
-}
-
-void DumpRenderTreeChrome::onDocumentLoadFinished(void*, Evas_Object*, void* eventInfo)
-{
-    const Evas_Object* frame = static_cast<Evas_Object*>(eventInfo);
-    const String frameName(DumpRenderTreeSupportEfl::suitableDRTFrameName(frame));
-
-    if (!done && gTestRunner->dumpFrameLoadCallbacks())
-        printf("%s - didFinishDocumentLoadForFrame\n", frameName.utf8().data());
-    else if (!done) {
-        const unsigned pendingFrameUnloadEvents = DumpRenderTreeSupportEfl::pendingUnloadEventCount(frame);
-        if (pendingFrameUnloadEvents)
-            printf("%s - has %u onunload handler(s)\n", frameName.utf8().data(), pendingFrameUnloadEvents);
-    }
-}
-
-void DumpRenderTreeChrome::onWillSendRequest(void*, Evas_Object*, void* eventInfo)
-{
-    Ewk_Frame_Resource_Messages* messages = static_cast<Ewk_Frame_Resource_Messages*>(eventInfo);
-
-    if (!done && gTestRunner->dumpResourceLoadCallbacks())
-        printf("%s - willSendRequest %s redirectResponse %s\n",
-               m_dumpAssignedUrls.contains(messages->request->identifier) ? m_dumpAssignedUrls.get(messages->request->identifier).data() : "<unknown>",
-               descriptionSuitableForTestResult(messages->request).data(),
-               descriptionSuitableForTestResult(messages->redirect_response).data());
-
-    if (!done && gTestRunner->willSendRequestReturnsNull()) {
-        // As requested by the TestRunner, don't perform the request.
-        messages->request->url = 0;
-        return;
-    }
-
-    if (!done && gTestRunner->willSendRequestReturnsNullOnRedirect() && messages->redirect_response) {
-        printf("Returning null for this redirect\n");
-        messages->request->url = 0;
-        return;
-    }
-
-    KURL url = KURL(ParsedURLString, messages->request->url);
-
-    if (url.isValid()
-        && url.protocolIsInHTTPFamily()
-        && url.host() != "127.0.0.1"
-        && url.host() != "255.255.255.255"
-        && url.host().lower() != "localhost") {
-        printf("Blocked access to external URL %s\n", messages->request->url);
-        messages->request->url = 0;
-        return;
-    }
-
-    const std::string& destination = gTestRunner->redirectionDestinationForURL(url.string().utf8().data());
-    if (destination.length())
-        messages->request->url = strdup(destination.c_str());
-}
-
-void DumpRenderTreeChrome::onWebViewOnloadEvent(void*, Evas_Object*, void* eventInfo)
-{
-    const Evas_Object* frame = static_cast<Evas_Object*>(eventInfo);
-
-    if (!done && gTestRunner->dumpFrameLoadCallbacks()) {
-        const String frameName(DumpRenderTreeSupportEfl::suitableDRTFrameName(frame));
-        printf("%s - didHandleOnloadEventsForFrame\n", frameName.utf8().data());
-    }
-}
-
-void DumpRenderTreeChrome::onInsecureContentRun(void*, Evas_Object*, void*)
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks())
-        printf("didRunInsecureContent\n");
-}
-
-void DumpRenderTreeChrome::onInsecureContentDisplayed(void*, Evas_Object*, void*)
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks())
-        printf("didDisplayInsecureContent\n");
-}
-
-void DumpRenderTreeChrome::onFrameCreated(void*, Evas_Object*, void* eventInfo)
-{
-    Evas_Object* frame = static_cast<Evas_Object*>(eventInfo);
-
-    evas_object_smart_callback_add(frame, "icon,changed", onFrameIconChanged, 0);
-    evas_object_smart_callback_add(frame, "load,provisional", onFrameProvisionalLoad, 0);
-    evas_object_smart_callback_add(frame, "load,provisional,failed", onFrameProvisionalLoadFailed, 0);
-    evas_object_smart_callback_add(frame, "load,committed", onFrameLoadCommitted, 0);
-    evas_object_smart_callback_add(frame, "load,finished", onFrameLoadFinished, 0);
-    evas_object_smart_callback_add(frame, "load,error", onFrameLoadError, 0);
-    evas_object_smart_callback_add(frame, "redirect,cancelled", onFrameRedirectCancelled, 0);
-    evas_object_smart_callback_add(frame, "redirect,load,provisional", onFrameRedirectForProvisionalLoad, 0);
-    evas_object_smart_callback_add(frame, "redirect,requested", onFrameRedirectRequested, 0);
-    evas_object_smart_callback_add(frame, "title,changed", onFrameTitleChanged, 0);
-    evas_object_smart_callback_add(frame, "xss,detected", onDidDetectXSS, 0);
-}
-
-void DumpRenderTreeChrome::onWebViewNavigatedWithData(void*, Evas_Object*, void* eventInfo)
-{
-    if (done || !gTestRunner->dumpHistoryDelegateCallbacks())
-        return;
-
-    ASSERT(eventInfo);
-    const Ewk_View_Navigation_Data* navigationData = static_cast<Ewk_View_Navigation_Data*>(eventInfo);
-
-    ASSERT(navigationData->request);
-    ASSERT(navigationData->response);
-
-    const bool wasFailure = navigationData->has_substitute_data || navigationData->response->status_code >= 400;
-    const bool wasRedirected = navigationData->client_redirect_source && *(navigationData->client_redirect_source);
-
-    printf("WebView navigated to url \"%s\" with title \"%s\" with HTTP equivalent method \"%s\".  The navigation was %s and was %s%s.\n",
-        navigationData->url,
-        navigationData->title,
-        navigationData->request->http_method,
-        wasFailure? "a failure" : "successful",
-        (wasRedirected ? "a client redirect from " : "not a client redirect"),
-        (wasRedirected ? navigationData->client_redirect_source : ""));
-}
-
-void DumpRenderTreeChrome::onWebViewServerRedirect(void*, Evas_Object*, void* eventInfo)
-{
-    if (done || !gTestRunner->dumpHistoryDelegateCallbacks())
-        return;
-
-    ASSERT(eventInfo);
-    const Ewk_View_Redirection_Data* data = static_cast<Ewk_View_Redirection_Data*>(eventInfo);
-    printf("WebView performed a server redirect from \"%s\" to \"%s\".\n", data->source_url, data->destination_url);
-}
-
-void DumpRenderTreeChrome::onWebViewClientRedirect(void*, Evas_Object*, void* eventInfo)
-{
-    if (done || !gTestRunner->dumpHistoryDelegateCallbacks())
-        return;
-
-    ASSERT(eventInfo);
-    const Ewk_View_Redirection_Data* data = static_cast<Ewk_View_Redirection_Data*>(eventInfo);
-    printf("WebView performed a client redirect from \"%s\" to \"%s\".\n", data->source_url, data->destination_url);
-}
-
-void DumpRenderTreeChrome::onWebViewPopulateVisitedLinks(void*, Evas_Object* ewkView, void*)
-{
-    if (done || !gTestRunner->dumpHistoryDelegateCallbacks())
-        return;
-
-    printf("Asked to populate visited links for WebView \"%s\"\n", ewk_view_uri_get(ewkView));
-}
-
-void DumpRenderTreeChrome::onInspectorViewCreate(void*, Evas_Object*, void*)
-{
-    Evas_Object* inspectorView = browser->createInspectorView();
-    if (inspectorView)
-        ewk_view_inspector_view_set(browser->mainView(), inspectorView);
-}
-
-void DumpRenderTreeChrome::onInspectorViewClose(void*, Evas_Object*, void*)
-{
-    browser->removeInspectorView();
-}
-
-void DumpRenderTreeChrome::onInspectorFrameLoadFinished(void*, Evas_Object*, void*)
-{
-    Evas_Object* inspectorView = ewk_view_inspector_view_get(browser->mainView());
-    if (inspectorView)
-        ecore_main_loop_quit();
-}
-
-void DumpRenderTreeChrome::onFrameProvisionalLoad(void*, Evas_Object* frame, void*)
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks()) {
-        const String frameName(DumpRenderTreeSupportEfl::suitableDRTFrameName(frame));
-        printf("%s - didStartProvisionalLoadForFrame\n", frameName.utf8().data());
-    }
-
-    if (!topLoadingFrame && !done)
-        topLoadingFrame = frame;
-  
-    if (!done && gTestRunner->stopProvisionalFrameLoads()) { 
-        const String frameName(DumpRenderTreeSupportEfl::suitableDRTFrameName(frame));
-        printf("%s - stopping load in didStartProvisionalLoadForFrame callback\n", frameName.utf8().data());
-        ewk_frame_stop(frame);
-    }   
-}
-
-void DumpRenderTreeChrome::onFrameProvisionalLoadFailed(void*, Evas_Object* frame, void*)
-{
-    m_provisionalLoadFailedFrame = frame;
-
-    if (!done && gTestRunner->dumpFrameLoadCallbacks()) {
-        const String frameName(DumpRenderTreeSupportEfl::suitableDRTFrameName(frame));
-        printf("%s - didFailProvisionalLoadWithError\n", frameName.utf8().data());
-    }
-}
-
-void DumpRenderTreeChrome::onFrameLoadCommitted(void*, Evas_Object* frame, void*)
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks()) {
-        const String frameName(DumpRenderTreeSupportEfl::suitableDRTFrameName(frame));
-        printf("%s - didCommitLoadForFrame\n", frameName.utf8().data());
-    }
-}
-
-void DumpRenderTreeChrome::onFrameLoadFinished(void*, Evas_Object* frame, void* eventInfo)
-{
-    const Ewk_Frame_Load_Error* error = static_cast<Ewk_Frame_Load_Error*>(eventInfo);
-
-    // EFL port emits both "load,finished" and "load,error" signals in error case.
-    // Error case is therefore already handled in onFrameLoadError() and we don't need
-    // to handle it here.
-    if (error)
-        return;
-
-    if (!done && gTestRunner->dumpProgressFinishedCallback())
-        printf("postProgressFinishedNotification\n");
-
-    if (!done && gTestRunner->dumpFrameLoadCallbacks()) {
-        const String frameName(DumpRenderTreeSupportEfl::suitableDRTFrameName(frame));
-        printf("%s - didFinishLoadForFrame\n", frameName.utf8().data());
-    }
-
-    if (frame == topLoadingFrame)
-        topLoadingFrameLoadFinished();
-}
-
-void DumpRenderTreeChrome::onFrameLoadError(void*, Evas_Object* frame, void*)
-{
-    // In case of provisional load error, we receive both "load,error" and "load,provisional,failed"
-    // signals. m_provisionalLoadFailedFrame is used to avoid printing twice the load error: in
-    // onFrameProvisionalLoadFailed() and onFrameLoadError().
-    if (!done && gTestRunner->dumpFrameLoadCallbacks() && frame != m_provisionalLoadFailedFrame) {
-        const String frameName(DumpRenderTreeSupportEfl::suitableDRTFrameName(frame));
-        printf("%s - didFailLoadWithError\n", frameName.utf8().data());
-    }
-
-    if (m_provisionalLoadFailedFrame && frame == m_provisionalLoadFailedFrame)
-        m_provisionalLoadFailedFrame = 0;
-
-    if (frame == topLoadingFrame)
-        topLoadingFrameLoadFinished();
-}
-
-void DumpRenderTreeChrome::onFrameRedirectCancelled(void*, Evas_Object* frame, void*)
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks()) {
-        const String frameName(DumpRenderTreeSupportEfl::suitableDRTFrameName(frame));
-        printf("%s - didCancelClientRedirectForFrame\n", frameName.utf8().data());
-    }
-}
-
-void DumpRenderTreeChrome::onFrameRedirectForProvisionalLoad(void*, Evas_Object* frame, void*)
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks()) {
-        const String frameName(DumpRenderTreeSupportEfl::suitableDRTFrameName(frame));
-        printf("%s - didReceiveServerRedirectForProvisionalLoadForFrame\n", frameName.utf8().data());
-    }
-}
-
-void DumpRenderTreeChrome::onFrameRedirectRequested(void*, Evas_Object* frame, void* eventInfo)
-{
-    const char* url = static_cast<const char*>(eventInfo);
-
-    if (!done && gTestRunner->dumpFrameLoadCallbacks()) {
-        const String frameName(DumpRenderTreeSupportEfl::suitableDRTFrameName(frame));
-        printf("%s - willPerformClientRedirectToURL: %s \n", frameName.utf8().data(), pathSuitableForTestResult(url).data());
-    }
-}
-
-void DumpRenderTreeChrome::onDidDetectXSS(void*, Evas_Object* view, void*)
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks())
-        printf("didDetectXSS\n");
-}
-
-void DumpRenderTreeChrome::onResponseReceived(void*, Evas_Object*, void* eventInfo)
-{
-    Ewk_Frame_Resource_Response* response = static_cast<Ewk_Frame_Resource_Response*>(eventInfo);
-
-    if (!done && gTestRunner->dumpResourceLoadCallbacks()) {
-        CString responseDescription(descriptionSuitableForTestResult(response));
-        printf("%s - didReceiveResponse %s\n",
-               m_dumpAssignedUrls.contains(response->identifier) ? m_dumpAssignedUrls.get(response->identifier).data() : "<unknown>",
-               responseDescription.data());
-    }
-
-    if (!done && gTestRunner->dumpResourceResponseMIMETypes()) {
-        printf("%s has MIME type %s\n",
-               KURL(ParsedURLString, response->url).lastPathComponent().utf8().data(),
-               response->mime_type);
-    }
-}
-
-void DumpRenderTreeChrome::onResourceLoadFinished(void*, Evas_Object*, void* eventInfo)
-{
-    unsigned long identifier = *static_cast<unsigned long*>(eventInfo);
-
-    if (!done && gTestRunner->dumpResourceLoadCallbacks())
-        printf("%s - didFinishLoading\n",
-               (m_dumpAssignedUrls.contains(identifier) ? m_dumpAssignedUrls.take(identifier).data() : "<unknown>"));
-}
-
-void DumpRenderTreeChrome::onResourceLoadFailed(void*, Evas_Object*, void* eventInfo)
-{
-    Ewk_Frame_Load_Error* error = static_cast<Ewk_Frame_Load_Error*>(eventInfo);
-
-    if (!done && gTestRunner->dumpResourceLoadCallbacks())
-        printf("%s - didFailLoadingWithError: %s\n",
-               (m_dumpAssignedUrls.contains(error->resource_identifier) ? m_dumpAssignedUrls.take(error->resource_identifier).data() : "<unknown>"),
-               descriptionSuitableForTestResult(error).data());
-}
-
-void DumpRenderTreeChrome::onNewResourceRequest(void*, Evas_Object*, void* eventInfo)
-{
-    Ewk_Frame_Resource_Request* request = static_cast<Ewk_Frame_Resource_Request*>(eventInfo);
-
-    if (!done && gTestRunner->dumpResourceLoadCallbacks())
-        m_dumpAssignedUrls.add(request->identifier, pathSuitableForTestResult(request->url));
-}
-
-void DumpRenderTreeChrome::onDownloadRequest(void*, Evas_Object*, void* eventInfo)
-{
-    // In case of "download,request", the URL need to be downloaded, not opened on the current view.
-    // Because there is no download agent for the DumpRenderTree,
-    // create a new view and load the URL on that view just for a test.
-    Evas_Object* newView = browser->createView();
-    if (!newView)
-        return;
-
-    Ewk_Download* download = static_cast<Ewk_Download*>(eventInfo);
-    ewk_view_theme_set(newView, DATA_DIR"/default.edj");
-    ewk_view_uri_set(newView, download->url);
- 
-    browser->m_extraViews.append(newView);
-}
-
-AccessibilityController* DumpRenderTreeChrome::accessibilityController() const
-{
-    return m_axController.get();
-}
diff --git a/Tools/DumpRenderTree/efl/DumpRenderTreeChrome.h b/Tools/DumpRenderTree/efl/DumpRenderTreeChrome.h
deleted file mode 100644
index 4cb592b..0000000
--- a/Tools/DumpRenderTree/efl/DumpRenderTreeChrome.h
+++ /dev/null
@@ -1,147 +0,0 @@
-/*
- * Copyright (C) 2011 ProFUSION Embedded Systems
- * Copyright (C) 2011 Samsung Electronics
- * Copyright (C) 2012 Intel Corporation
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND ITS CONTRIBUTORS
- * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
- * PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT
- * HOLDERS OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
- * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
- * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef DumpRenderTreeChrome_h
-#define DumpRenderTreeChrome_h
-
-#include "GCController.h"
-
-#include <Eina.h>
-#include <Evas.h>
-#include <wtf/HashMap.h>
-#include <wtf/OwnPtr.h>
-#include <wtf/PassOwnPtr.h>
-#include <wtf/Vector.h>
-#include <wtf/text/CString.h>
-
-#if HAVE(ACCESSIBILITY)
-#include "AccessibilityController.h"
-#endif
-
-class DumpRenderTreeChrome {
-public:
-    ~DumpRenderTreeChrome();
-
-    static PassOwnPtr<DumpRenderTreeChrome> create(Evas*);
-
-    Evas_Object* createNewWindow();
-    void removeWindow(Evas_Object*);
-
-    Evas_Object* createInspectorView();
-    void removeInspectorView();
-    void waitInspectorLoadFinished();
-
-    const Vector<Evas_Object*>& extraViews() const;
-    void clearExtraViews();
-
-    Evas_Object* mainFrame() const;
-    Evas_Object* mainView() const;
-
-    void resetDefaultsToConsistentValues();
-
-private:
-    DumpRenderTreeChrome(Evas*);
-
-    Evas_Object* createView() const;
-    bool initialize();
-    AccessibilityController* accessibilityController() const;
-
-    Evas_Object* m_mainFrame;
-    Evas_Object* m_mainView;
-    Evas* m_evas;
-    OwnPtr<AccessibilityController> m_axController;
-    OwnPtr<GCController> m_gcController;
-    Vector<Evas_Object*> m_extraViews;
-    static HashMap<unsigned long, CString> m_dumpAssignedUrls;
-    static Evas_Object* m_provisionalLoadFailedFrame;
-
-    // Smart callbacks
-    static void onWindowObjectCleared(void*, Evas_Object*, void*);
-    static void onLoadStarted(void*, Evas_Object*, void*);
-
-    static Eina_Bool processWork(void*);
-
-    static void topLoadingFrameLoadFinished();
-
-    static void onStatusbarTextSet(void*, Evas_Object*, void*);
-
-    static void onFrameTitleChanged(void*, Evas_Object*, void*);
-
-    static void onDocumentLoadFinished(void*, Evas_Object*, void*);
-
-    static void onWillSendRequest(void*, Evas_Object*, void*);
-
-    static void onWebViewOnloadEvent(void*, Evas_Object*, void*);
-
-    static void onWebViewNavigatedWithData(void*, Evas_Object*, void*);
-
-    static void onWebViewServerRedirect(void*, Evas_Object*, void*);
-
-    static void onWebViewClientRedirect(void*, Evas_Object*, void*);
-
-    static void onWebViewPopulateVisitedLinks(void*, Evas_Object*, void*);
-
-    static void onInsecureContentRun(void*, Evas_Object*, void*);
-
-    static void onInsecureContentDisplayed(void*, Evas_Object*, void*);
-
-    static void onFrameCreated(void*, Evas_Object*, void*);
-
-    static void onInspectorViewCreate(void*, Evas_Object*, void*);
-
-    static void onInspectorViewClose(void*, Evas_Object*, void*);
-
-    static void onInspectorFrameLoadFinished(void*, Evas_Object*, void*);
-
-    static void onFrameIconChanged(void*, Evas_Object*, void*);
-
-    static void onFrameProvisionalLoad(void*, Evas_Object*, void*);
-    static void onFrameProvisionalLoadFailed(void*, Evas_Object*, void*);
-
-    static void onFrameLoadCommitted(void*, Evas_Object*, void*);
-
-    static void onFrameLoadFinished(void*, Evas_Object*, void*);
-
-    static void onFrameRedirectCancelled(void*, Evas_Object*, void*);
-    static void onFrameRedirectForProvisionalLoad(void*, Evas_Object*, void*);
-    static void onFrameRedirectRequested(void*, Evas_Object*, void*);
-
-    static void onFrameLoadError(void*, Evas_Object*, void*);
-    static void onDidDetectXSS(void*, Evas_Object*, void*);
-
-    static void onResponseReceived(void*, Evas_Object*, void*);
-
-    static void onResourceLoadFinished(void*, Evas_Object*, void*);
-
-    static void onResourceLoadFailed(void*, Evas_Object*, void*);
-
-    static void onNewResourceRequest(void*, Evas_Object*, void*);
-
-    static void onDownloadRequest(void*, Evas_Object*, void*);
-};
-
-#endif // DumpRenderTreeChrome_h
diff --git a/Tools/DumpRenderTree/efl/DumpRenderTreeEfl.h b/Tools/DumpRenderTree/efl/DumpRenderTreeEfl.h
deleted file mode 100644
index f474c89..0000000
--- a/Tools/DumpRenderTree/efl/DumpRenderTreeEfl.h
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * Copyright (C) 2011 ProFUSION Embedded Systems
- * Copyright (C) 2011 Samsung Electronics
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Red istributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND ITS CONTRIBUTORS
- * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
- * PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT
- * HOLDERS OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
- * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
- * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef DumpRenderTreeEfl_h
-#define DumpRenderTreeEfl_h
-
-#include <Ecore.h>
-#include <Evas.h>
-#include <wtf/OwnPtr.h>
-
-class DumpRenderTreeChrome;
-
-extern OwnPtr<DumpRenderTreeChrome> browser;
-extern Evas_Object* topLoadingFrame;
-extern bool waitForPolicy;
-extern bool policyDelegateEnabled;
-extern bool policyDelegatePermissive;
-extern Ecore_Timer* waitToDumpWatchdog;
-
-#endif /* DumpRenderTreeEfl_h */
diff --git a/Tools/DumpRenderTree/efl/DumpRenderTreeView.cpp b/Tools/DumpRenderTree/efl/DumpRenderTreeView.cpp
deleted file mode 100644
index d24bf36..0000000
--- a/Tools/DumpRenderTree/efl/DumpRenderTreeView.cpp
+++ /dev/null
@@ -1,229 +0,0 @@
-/*
- * Copyright (C) 2011 ProFUSION Embedded Systems
- * Copyright (C) 2011 Samsung Electronics
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Red istributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
- * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#define __STDC_FORMAT_MACROS
-#include "config.h"
-#include "DumpRenderTreeView.h"
-
-#include "DumpRenderTree.h"
-#include "DumpRenderTreeChrome.h"
-#include "DumpRenderTreeEfl.h"
-#include "TestRunner.h"
-#include <EWebKit.h>
-#include <Ecore.h>
-#include <Eina.h>
-#include <Evas.h>
-#include <cstdio>
-#include <cstdlib>
-#include <inttypes.h>
-#include <wtf/NotFound.h>
-#include <wtf/text/CString.h>
-#include <wtf/text/WTFString.h>
-
-using namespace std;
-
-static Ewk_View_Smart_Class gParentSmartClass = EWK_VIEW_SMART_CLASS_INIT_NULL;
-
-static WTF::String urlSuitableForTestResult(const WTF::String& uriString)
-{
-    if (uriString.isEmpty() || !uriString.startsWith("file://"))
-        return uriString;
-
-    const size_t index = uriString.reverseFind('/');
-    return (index == WTF::notFound) ? uriString : uriString.substring(index + 1);
-}
-
-static void onConsoleMessage(Ewk_View_Smart_Data* smartData, const char* message, unsigned lineNumber, const char*)
-{
-    Evas_Object* evasObject = smartData->self;
-    if (evas_object_data_get(evasObject, "ignore-console-messages"))
-        return;
-
-    // Tests expect only the filename part of local URIs
-    WTF::String newMessage = WTF::String::fromUTF8(message);
-    if (!newMessage.isEmpty()) {
-        const size_t fileProtocol = newMessage.find("file://");
-        if (fileProtocol != WTF::notFound)
-            newMessage = newMessage.left(fileProtocol) + urlSuitableForTestResult(newMessage.substring(fileProtocol));
-    }
-
-    // Ignore simple translation-related messages and unnecessary messages
-    if (newMessage.contains("Localized string") || newMessage.contains("Protocol Error: the message is for non-existing domain 'Profiler'"))
-        return;
-
-    printf("CONSOLE MESSAGE: ");
-    if (lineNumber)
-        printf("line %u: ", lineNumber);
-    printf("%s\n", newMessage.utf8().data());
-}
-
-static void onJavaScriptAlert(Ewk_View_Smart_Data*, Evas_Object*, const char* message)
-{
-    printf("ALERT: %s\n", message);
-    fflush(stdout);
-}
-
-static Eina_Bool onJavaScriptConfirm(Ewk_View_Smart_Data*, Evas_Object*, const char* message)
-{
-    printf("CONFIRM: %s\n", message);
-    return EINA_TRUE;
-}
-
-static Eina_Bool onJavaScriptPrompt(Ewk_View_Smart_Data*, Evas_Object*, const char* message, const char* defaultValue, const char** value)
-{
-    printf("PROMPT: %s, default text: %s\n", message, defaultValue);
-    *value = eina_stringshare_add(defaultValue);
-    return EINA_TRUE;
-}
-
-static Evas_Object* onWindowCreate(Ewk_View_Smart_Data*, Eina_Bool, const Ewk_Window_Features*)
-{
-    return gTestRunner->canOpenWindows() ? browser->createNewWindow() : 0;
-}
-
-static Eina_Bool onWindowCloseDelayed(void* data)
-{
-    Evas_Object* view = static_cast<Evas_Object*>(data);
-    browser->removeWindow(view);
-    return EINA_FALSE;
-}
-
-static void onWindowClose(Ewk_View_Smart_Data* smartData)
-{
-    Evas_Object* view = smartData->self;
-    ecore_idler_add(onWindowCloseDelayed, view);
-}
-
-static uint64_t onExceededDatabaseQuota(Ewk_View_Smart_Data* smartData, Evas_Object* frame, const char* databaseName, uint64_t currentSize, uint64_t expectedSize)
-{
-    if (!gTestRunner->dumpDatabaseCallbacks())
-        return 0;
-
-    Ewk_Security_Origin* origin = ewk_frame_security_origin_get(frame);
-    printf("UI DELEGATE DATABASE CALLBACK: exceededDatabaseQuotaForSecurityOrigin:{%s, %s, %i} database:%s\n",
-            ewk_security_origin_protocol_get(origin),
-            ewk_security_origin_host_get(origin),
-            ewk_security_origin_port_get(origin),
-            databaseName);
-    ewk_security_origin_free(origin);
-
-    return 5 * 1024 * 1024;
-}
-
-static int64_t onExceededApplicationCacheQuota(Ewk_View_Smart_Data*, Ewk_Security_Origin *origin, int64_t defaultOriginQuota, int64_t totalSpaceNeeded)
-{
-    if (gTestRunner->dumpApplicationCacheDelegateCallbacks()) {
-        // For example, numbers from 30000 - 39999 will output as 30000.
-        // Rounding up or down does not really matter for these tests. It's
-        // sufficient to just get a range of 10000 to determine if we were
-        // above or below a threshold.
-        int64_t truncatedSpaceNeeded = (totalSpaceNeeded / 10000) * 10000;
-        printf("UI DELEGATE APPLICATION CACHE CALLBACK: exceededApplicationCacheOriginQuotaForSecurityOrigin:{%s, %s, %i} totalSpaceNeeded:~%" PRId64 "\n",
-               ewk_security_origin_protocol_get(origin),
-               ewk_security_origin_host_get(origin),
-               ewk_security_origin_port_get(origin),
-               truncatedSpaceNeeded);
-    }
-
-    if (gTestRunner->disallowIncreaseForApplicationCacheQuota())
-        return 0;
-
-    return defaultOriginQuota;
-}
-
-static bool shouldUseTiledBackingStore()
-{
-    const char* useTiledBackingStore = getenv("DRT_USE_TILED_BACKING_STORE");
-    return useTiledBackingStore && *useTiledBackingStore == '1';
-}
-
-static bool chooseAndInitializeAppropriateSmartClass(Ewk_View_Smart_Class* api)
-{
-    return !shouldUseTiledBackingStore() ? ewk_view_single_smart_set(api) : ewk_view_tiled_smart_set(api);
-}
-
-// Taken from the file "WebKit/Tools/DumpRenderTree/chromium/WebViewHost.cpp".
-static inline const char* navigationTypeToString(const Ewk_Navigation_Type type)
-{
-    switch (type) {
-    case EWK_NAVIGATION_TYPE_LINK_CLICKED:
-        return "link clicked";
-    case EWK_NAVIGATION_TYPE_FORM_SUBMITTED:
-        return "form submitted";
-    case EWK_NAVIGATION_TYPE_BACK_FORWARD:
-        return "back/forward";
-    case EWK_NAVIGATION_TYPE_RELOAD:
-        return "reload";
-    case EWK_NAVIGATION_TYPE_FORM_RESUBMITTED:
-        return "form resubmitted";
-    case EWK_NAVIGATION_TYPE_OTHER:
-        return "other";
-    }
-    return "illegal value";
-}
-
-static Eina_Bool onNavigationPolicyDecision(Ewk_View_Smart_Data*, Ewk_Frame_Resource_Request* request, Ewk_Navigation_Type navigationType)
-{
-    if (!policyDelegateEnabled)
-        return true;
-
-    printf("Policy delegate: attempt to load %s with navigation type '%s'\n", urlSuitableForTestResult(request->url).utf8().data(),
-           navigationTypeToString(navigationType));
-
-    if (gTestRunner)
-        gTestRunner->notifyDone();
-
-    return policyDelegatePermissive;
-}
-
-static Eina_Bool onFocusCanCycle(Ewk_View_Smart_Data*, Ewk_Focus_Direction)
-{
-    // This is the behavior of Mac and Chromium ports and is expected by some test cases.
-    return true;
-}
-
-Evas_Object* drtViewAdd(Evas* evas)
-{
-    static Ewk_View_Smart_Class api = EWK_VIEW_SMART_CLASS_INIT_NAME_VERSION("DRT_View");
-
-    if (!chooseAndInitializeAppropriateSmartClass(&api))
-        return 0;
-
-    if (EINA_UNLIKELY(!gParentSmartClass.sc.add))
-        ewk_view_base_smart_set(&gParentSmartClass);
-
-    api.add_console_message = onConsoleMessage;
-    api.run_javascript_alert = onJavaScriptAlert;
-    api.run_javascript_confirm = onJavaScriptConfirm;
-    api.run_javascript_prompt = onJavaScriptPrompt;
-    api.window_create = onWindowCreate;
-    api.window_close = onWindowClose;
-    api.exceeded_application_cache_quota = onExceededApplicationCacheQuota;
-    api.exceeded_database_quota = onExceededDatabaseQuota;
-    api.navigation_policy_decision = onNavigationPolicyDecision;
-    api.focus_can_cycle = onFocusCanCycle;
-
-    return evas_object_smart_add(evas, evas_smart_class_new(&api.sc));
-}
diff --git a/Tools/DumpRenderTree/efl/DumpRenderTreeView.h b/Tools/DumpRenderTree/efl/DumpRenderTreeView.h
deleted file mode 100644
index 72ddab5..0000000
--- a/Tools/DumpRenderTree/efl/DumpRenderTreeView.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * Copyright (C) 2011 ProFUSION Embedded Systems. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Red istributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
- * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef DumpRenderTreeView_h
-#define DumpRenderTreeView_h
-
-#include <Evas.h>
-
-Evas_Object* drtViewAdd(Evas*);
-
-#endif // DumpRenderTreeView_h
diff --git a/Tools/DumpRenderTree/efl/EditingCallbacks.cpp b/Tools/DumpRenderTree/efl/EditingCallbacks.cpp
deleted file mode 100644
index 7a03cdd..0000000
--- a/Tools/DumpRenderTree/efl/EditingCallbacks.cpp
+++ /dev/null
@@ -1,187 +0,0 @@
-/*
- * Copyright (C) 2010 Igalia S.L.
- * Copyright (C) 2012 Samsung Electronics
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "EditingCallbacks.h"
-
-#include "DumpRenderTree.h"
-#include "EditorClientEfl.h"
-#include "EditorInsertAction.h"
-#include "Node.h"
-#include "Range.h"
-#include "StylePropertySet.h"
-#include "TestRunner.h"
-#include "TextAffinity.h"
-#include <wtf/text/CString.h>
-#include <wtf/text/WTFString.h>
-
-static WTF::String dumpPath(WebCore::Node* node)
-{
-    WebCore::Node* parent = node->parentNode();
-    WTF::String str = WTF::String::format("%s", node->nodeName().utf8().data());
-    if (parent) {
-        str.append(" > ");
-        str.append(dumpPath(parent));
-    }
-    return str;
-}
-
-static WTF::String dumpRange(WebCore::Range* range)
-{
-    if (!range)
-        return "(null)";
-    return WTF::String::format("range from %d of %s to %d of %s", range->startOffset(), dumpPath(range->startContainer()).utf8().data(), range->endOffset(), dumpPath(range->endContainer()).utf8().data());
-}
-
-static const char* insertActionString(WebCore::EditorInsertAction action)
-{
-    switch (action) {
-    case WebCore::EditorInsertActionTyped:
-        return "WebViewInsertActionTyped";
-    case WebCore::EditorInsertActionPasted:
-        return "WebViewInsertActionPasted";
-    case WebCore::EditorInsertActionDropped:
-        return "WebViewInsertActionDropped";
-    }
-    ASSERT_NOT_REACHED();
-    return "WebViewInsertActionTyped";
-}
-
-static const char* selectionAffinityString(WebCore::EAffinity affinity)
-{
-    switch (affinity) {
-    case WebCore::UPSTREAM:
-        return "NSSelectionAffinityUpstream";
-    case WebCore::DOWNSTREAM:
-        return "NSSelectionAffinityDownstream";
-    }
-    ASSERT_NOT_REACHED();
-    return "NSSelectionAffinityUpstream";
-}
-
-void shouldBeginEditing(void*, Evas_Object*, void* eventInfo)
-{
-    if (!done && gTestRunner->dumpEditingCallbacks()) {
-        WebCore::Range* range = static_cast<WebCore::Range*>(eventInfo);
-        printf("EDITING DELEGATE: shouldBeginEditingInDOMRange:%s\n", dumpRange(range).utf8().data());
-    }
-}
-
-void shouldEndEditing(void*, Evas_Object*, void* eventInfo)
-{
-    if (!done && gTestRunner->dumpEditingCallbacks()) {
-        WebCore::Range* range = static_cast<WebCore::Range*>(eventInfo);
-        printf("EDITING DELEGATE: shouldEndEditingInDOMRange:%s\n", dumpRange(range).utf8().data());
-    }
-}
-
-void shouldInsertNode(void*, Evas_Object*, void* eventInfo)
-{
-    if (!done && gTestRunner->dumpEditingCallbacks()) {
-        Ewk_Should_Insert_Node_Event* shouldInsertNodeEvent = static_cast<Ewk_Should_Insert_Node_Event*>(eventInfo);
-        printf("EDITING DELEGATE: shouldInsertNode:%s replacingDOMRange:%s givenAction:%s\n",
-               dumpPath(shouldInsertNodeEvent->node).utf8().data(), dumpRange(shouldInsertNodeEvent->range).utf8().data(),
-               insertActionString(shouldInsertNodeEvent->action));
-    }
-}
-
-void shouldInsertText(void*, Evas_Object*, void* eventInfo)
-{
-    if (!done && gTestRunner->dumpEditingCallbacks()) {
-        Ewk_Should_Insert_Text_Event* shouldInsertTextEvent = static_cast<Ewk_Should_Insert_Text_Event*>(eventInfo);
-        printf("EDITING DELEGATE: shouldInsertText:%s replacingDOMRange:%s givenAction:%s\n",
-                shouldInsertTextEvent->text, dumpRange(shouldInsertTextEvent->range).utf8().data(), insertActionString(shouldInsertTextEvent->action));
-    }
-}
-
-void shouldDeleteRange(void*, Evas_Object*, void* eventInfo)
-{
-    if (!done && gTestRunner->dumpEditingCallbacks()) {
-        WebCore::Range* range = static_cast<WebCore::Range*>(eventInfo);
-        printf("EDITING DELEGATE: shouldDeleteDOMRange:%s\n", dumpRange(range).utf8().data());
-    }
-}
-
-void shouldChangeSelectedRange(void*, Evas_Object*, void* eventInfo)
-{
-    if (!done && gTestRunner->dumpEditingCallbacks()) {
-        Ewk_Should_Change_Selected_Range_Event* shouldChangeSelectedRangeEvent = static_cast<Ewk_Should_Change_Selected_Range_Event*>(eventInfo);
-        printf("EDITING DELEGATE: shouldChangeSelectedDOMRange:%s toDOMRange:%s affinity:%s stillSelecting:%s\n",
-               dumpRange(shouldChangeSelectedRangeEvent->fromRange).utf8().data(), dumpRange(shouldChangeSelectedRangeEvent->toRange).utf8().data(),
-               selectionAffinityString(shouldChangeSelectedRangeEvent->affinity), shouldChangeSelectedRangeEvent->stillSelecting ? "TRUE" : "FALSE");
-    }
-}
-
-void shouldApplyStyle(void*, Evas_Object*, void* eventInfo)
-{
-    if (!done && gTestRunner->dumpEditingCallbacks()) {
-        Ewk_Should_Apply_Style_Event* shouldApplyStyleEvent = static_cast<Ewk_Should_Apply_Style_Event*>(eventInfo);
-        printf("EDITING DELEGATE: shouldApplyStyle:%s toElementsInDOMRange:%s\n",
-                shouldApplyStyleEvent->style->asText().utf8().data(), dumpRange(shouldApplyStyleEvent->range).utf8().data());
-    }
-}
-
-void editingBegan(void*, Evas_Object*, void*)
-{
-    if (!done && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification\n");
-}
-
-void userChangedContents(void*, Evas_Object*, void*)
-{
-    if (!done && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification\n");
-}
-
-void editingEnded(void*, Evas_Object*, void*)
-{
-    if (!done && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification\n");
-}
-
-void selectionChanged(void*, Evas_Object*, void*)
-{
-    if (!done && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification\n");
-}
-
-void connectEditingCallbacks(Evas_Object* webView)
-{
-    evas_object_smart_callback_add(webView, "editorclient,editing,begin", shouldBeginEditing, 0);
-    evas_object_smart_callback_add(webView, "editorclient,editing,end", shouldEndEditing, 0);
-    evas_object_smart_callback_add(webView, "editorclient,node,insert", shouldInsertNode, 0);
-    evas_object_smart_callback_add(webView, "editorclient,text,insert", shouldInsertText, 0);
-    evas_object_smart_callback_add(webView, "editorclient,range,delete", shouldDeleteRange, 0);
-    evas_object_smart_callback_add(webView, "editorclient,selected,range,change", shouldChangeSelectedRange, 0);
-    evas_object_smart_callback_add(webView, "editorclient,style,apply", shouldApplyStyle, 0);
-    evas_object_smart_callback_add(webView, "editorclient,editing,began", editingBegan, 0);
-    evas_object_smart_callback_add(webView, "editorclient,contents,changed", userChangedContents, 0);
-    evas_object_smart_callback_add(webView, "editorclient,editing,ended", editingEnded, 0);
-    evas_object_smart_callback_add(webView, "editorclient,selection,changed", selectionChanged, 0);
-}
diff --git a/Tools/DumpRenderTree/efl/EditingCallbacks.h b/Tools/DumpRenderTree/efl/EditingCallbacks.h
deleted file mode 100644
index cf535e4..0000000
--- a/Tools/DumpRenderTree/efl/EditingCallbacks.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * Copyright (C) 2010 Igalia S.L.
- * Copyright (C) 2012 Samsung Electronics
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef EditingCallbacks_h
-#define EditingCallbacks_h
-
-#include <Evas.h>
-
-void connectEditingCallbacks(Evas_Object*);
-
-#endif
diff --git a/Tools/DumpRenderTree/efl/EventSender.cpp b/Tools/DumpRenderTree/efl/EventSender.cpp
deleted file mode 100644
index 92b7889..0000000
--- a/Tools/DumpRenderTree/efl/EventSender.cpp
+++ /dev/null
@@ -1,1035 +0,0 @@
-/*
- * Copyright (C) 2007, 2008 Apple Inc. All rights reserved.
- * Copyright (C) 2009 Zan Dobersek <zandobersek@gmail.com>
- * Copyright (C) 2009 Holger Hans Peter Freyther
- * Copyright (C) 2010 Igalia S.L.
- * Copyright (C) 2011 ProFUSION Embedded Systems
- * Copyright (C) 2011, 2012 Samsung Electronics
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "EventSender.h"
-
-#include "DumpRenderTree.h"
-#include "DumpRenderTreeChrome.h"
-#include "IntPoint.h"
-#include "JSStringUtils.h"
-#include "NotImplemented.h"
-#include "PlatformEvent.h"
-#include "WebCoreSupport/DumpRenderTreeSupportEfl.h"
-#include "ewk_private.h"
-#include <EWebKit.h>
-#include <Ecore_Input.h>
-#include <JavaScriptCore/JSObjectRef.h>
-#include <JavaScriptCore/JSRetainPtr.h>
-#include <JavaScriptCore/JSStringRef.h>
-#include <JavaScriptCore/OpaqueJSString.h>
-#include <wtf/ASCIICType.h>
-#include <wtf/Platform.h>
-#include <wtf/text/CString.h>
-
-static bool gDragMode;
-static int gTimeOffset = 0;
-
-static int gLastMousePositionX;
-static int gLastMousePositionY;
-static int gLastClickPositionX;
-static int gLastClickPositionY;
-static int gLastClickTimeOffset;
-static int gLastClickButton;
-static int gButtonCurrentlyDown;
-static int gClickCount;
-
-static const float zoomMultiplierRatio = 1.2f;
-
-// Key event location code defined in DOM Level 3.
-enum KeyLocationCode {
-    DomKeyLocationStandard,
-    DomKeyLocationLeft,
-    DomKeyLocationRight,
-    DomKeyLocationNumpad
-};
-
-enum EvasKeyModifier {
-    EvasKeyModifierNone    = 0,
-    EvasKeyModifierControl = 1 << 0,
-    EvasKeyModifierShift   = 1 << 1,
-    EvasKeyModifierAlt     = 1 << 2,
-    EvasKeyModifierMeta    = 1 << 3
-};
-
-enum EvasMouseButton {
-    EvasMouseButtonNone,
-    EvasMouseButtonLeft,
-    EvasMouseButtonMiddle,
-    EvasMouseButtonRight
-};
-
-enum EvasMouseEvent {
-    EvasMouseEventNone        = 0,
-    EvasMouseEventDown        = 1 << 0,
-    EvasMouseEventUp          = 1 << 1,
-    EvasMouseEventMove        = 1 << 2,
-    EvasMouseEventScrollUp    = 1 << 3,
-    EvasMouseEventScrollDown  = 1 << 4,
-    EvasMouseEventScrollLeft  = 1 << 5,
-    EvasMouseEventScrollRight = 1 << 6,
-    EvasMouseEventClick       = EvasMouseEventMove | EvasMouseEventDown | EvasMouseEventUp,
-};
-
-enum ZoomEvent {
-    ZoomIn,
-    ZoomOut
-};
-
-enum EventQueueStrategy {
-    FeedQueuedEvents,
-    DoNotFeedQueuedEvents
-};
-
-struct KeyEventInfo {
-    KeyEventInfo(const CString& keyName, unsigned modifiers, const CString& keyString = CString())
-        : keyName(keyName)
-        , keyString(keyString)
-        , modifiers(modifiers)
-    {
-    }
-
-    const CString keyName;
-    const CString keyString;
-    unsigned modifiers;
-};
-
-struct MouseEventInfo {
-    MouseEventInfo(EvasMouseEvent event, unsigned modifiers = EvasKeyModifierNone, EvasMouseButton button = EvasMouseButtonNone, int horizontalDelta = 0, int verticalDelta = 0)
-        : event(event)
-        , modifiers(modifiers)
-        , button(button)
-        , horizontalDelta(horizontalDelta)
-        , verticalDelta(verticalDelta)
-    {
-    }
-
-    EvasMouseEvent event;
-    unsigned modifiers;
-    EvasMouseButton button;
-    int horizontalDelta;
-    int verticalDelta;
-};
-
-struct DelayedEvent {
-    DelayedEvent(MouseEventInfo* eventInfo, unsigned long delay = 0)
-        : eventInfo(eventInfo)
-        , delay(delay)
-    {
-    }
-
-    MouseEventInfo* eventInfo;
-    unsigned long delay;
-};
-
-struct TouchEventInfo {
-    TouchEventInfo(unsigned id, Ewk_Touch_Point_Type state, const WebCore::IntPoint& point)
-        : state(state)
-        , point(point)
-        , id(id)
-    {
-    }
-
-    unsigned id;
-    Ewk_Touch_Point_Type state;
-    WebCore::IntPoint point;
-};
-
-static unsigned touchModifiers;
-
-WTF::Vector<TouchEventInfo>& touchPointList()
-{
-    DEFINE_STATIC_LOCAL(WTF::Vector<TouchEventInfo>, staticTouchPointList, ());
-    return staticTouchPointList;
-}
-
-WTF::Vector<DelayedEvent>& delayedEventQueue()
-{
-    DEFINE_STATIC_LOCAL(WTF::Vector<DelayedEvent>, staticDelayedEventQueue, ());
-    return staticDelayedEventQueue;
-}
-
-
-static void feedOrQueueMouseEvent(MouseEventInfo*, EventQueueStrategy);
-static void feedMouseEvent(MouseEventInfo*);
-static void feedQueuedMouseEvents();
-
-static void setEvasModifiers(Evas* evas, unsigned modifiers)
-{
-    static const char* modifierNames[] = { "Control", "Shift", "Alt", "Super" };
-    for (unsigned modifier = 0; modifier < 4; ++modifier) {
-        if (modifiers & (1 << modifier))
-            evas_key_modifier_on(evas, modifierNames[modifier]);
-        else
-            evas_key_modifier_off(evas, modifierNames[modifier]);
-    }
-}
-
-static EvasMouseButton translateMouseButtonNumber(int eventSenderButtonNumber)
-{
-    static const EvasMouseButton translationTable[] = {
-        EvasMouseButtonLeft,
-        EvasMouseButtonMiddle,
-        EvasMouseButtonRight,
-        EvasMouseButtonMiddle // fast/events/mouse-click-events expects the 4th button to be treated as the middle button
-    };
-    static const unsigned translationTableSize = sizeof(translationTable) / sizeof(translationTable[0]);
-
-    if (eventSenderButtonNumber < translationTableSize)
-        return translationTable[eventSenderButtonNumber];
-
-    return EvasMouseButtonLeft;
-}
-
-static Eina_Bool sendClick(void*)
-{
-    MouseEventInfo* eventInfo = new MouseEventInfo(EvasMouseEventClick, EvasKeyModifierNone, EvasMouseButtonLeft);
-    feedOrQueueMouseEvent(eventInfo, FeedQueuedEvents);
-    return ECORE_CALLBACK_CANCEL;
-}
-
-static JSValueRef scheduleAsynchronousClickCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    ecore_idler_add(sendClick, 0);
-    return JSValueMakeUndefined(context);
-}
-
-static void updateClickCount(int button)
-{
-    if (gLastClickPositionX != gLastMousePositionX
-        || gLastClickPositionY != gLastMousePositionY
-        || gLastClickButton != button
-        || gTimeOffset - gLastClickTimeOffset >= 1)
-        gClickCount = 1;
-    else
-        gClickCount++;
-}
-
-static EvasKeyModifier modifierFromJSValue(JSContextRef context, const JSValueRef value)
-{
-    JSRetainPtr<JSStringRef> jsKeyValue(Adopt, JSValueToStringCopy(context, value, 0));
-
-    if (equals(jsKeyValue, "ctrlKey") || equals(jsKeyValue, "addSelectionKey"))
-        return EvasKeyModifierControl;
-    if (equals(jsKeyValue, "shiftKey") || equals(jsKeyValue, "rangeSelectionKey"))
-        return EvasKeyModifierShift;
-    if (equals(jsKeyValue, "altKey"))
-        return EvasKeyModifierAlt;
-    if (equals(jsKeyValue, "metaKey"))
-        return EvasKeyModifierMeta;
-
-    return EvasKeyModifierNone;
-}
-
-static unsigned modifiersFromJSValue(JSContextRef context, const JSValueRef modifiers)
-{
-    // The value may either be a string with a single modifier or an array of modifiers.
-    if (JSValueIsString(context, modifiers))
-        return modifierFromJSValue(context, modifiers);
-
-    JSObjectRef modifiersArray = JSValueToObject(context, modifiers, 0);
-    if (!modifiersArray)
-        return EvasKeyModifierNone;
-
-    unsigned modifier = EvasKeyModifierNone;
-    JSRetainPtr<JSStringRef> lengthProperty(Adopt, JSStringCreateWithUTF8CString("length"));
-    int modifiersCount = JSValueToNumber(context, JSObjectGetProperty(context, modifiersArray, lengthProperty.get(), 0), 0);
-    for (int i = 0; i < modifiersCount; ++i)
-        modifier |= modifierFromJSValue(context, JSObjectGetPropertyAtIndex(context, modifiersArray, i, 0));
-    return modifier;
-}
-
-static JSValueRef getMenuItemTitleCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception)
-{
-    Ewk_Context_Menu_Item* item = static_cast<Ewk_Context_Menu_Item*>(JSObjectGetPrivate(object));
-    CString label;
-    if (ewk_context_menu_item_type_get(item) == EWK_SEPARATOR_TYPE)
-        label = "<separator>";
-    else
-        label = ewk_context_menu_item_title_get(item);
-
-    return JSValueMakeString(context, JSStringCreateWithUTF8CString(label.data()));
-}
-
-static bool setMenuItemTitleCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception)
-{
-    return true;
-}
-
-static JSValueRef menuItemClickCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    Ewk_Context_Menu_Item* item = static_cast<Ewk_Context_Menu_Item*>(JSObjectGetPrivate(thisObject));
-    ewk_context_menu_item_select(ewk_context_menu_item_parent_get(item), item);
-    return JSValueMakeUndefined(context);
-}
-
-static JSStaticFunction staticMenuItemFunctions[] = {
-    { "click", menuItemClickCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { 0, 0, 0 }
-};
-
-static JSStaticValue staticMenuItemValues[] = {
-    { "title", getMenuItemTitleCallback, setMenuItemTitleCallback, kJSPropertyAttributeNone },
-    { 0, 0, 0, 0 }
-};
-
-static JSClassRef getMenuItemClass()
-{
-    static JSClassRef menuItemClass = 0;
-
-    if (!menuItemClass) {
-        JSClassDefinition classDefinition = {
-            0, 0, 0, 0, 0, 0,
-            0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
-        classDefinition.staticFunctions = staticMenuItemFunctions;
-        classDefinition.staticValues = staticMenuItemValues;
-
-        menuItemClass = JSClassCreate(&classDefinition);
-    }
-
-    return menuItemClass;
-}
-
-static JSValueRef contextClickCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    Evas_Object* view = ewk_frame_view_get(browser->mainFrame());
-    if (!view)
-        return JSValueMakeUndefined(context);
-
-    Evas* evas = evas_object_evas_get(view);
-    if (!evas)
-        return JSValueMakeUndefined(context);
-
-    Evas_Event_Mouse_Down mouseDown;
-    mouseDown.button = 3;
-    mouseDown.output.x = gLastMousePositionX;
-    mouseDown.output.y = gLastMousePositionY;
-    mouseDown.canvas.x = gLastMousePositionX;
-    mouseDown.canvas.y = gLastMousePositionY;
-    mouseDown.data = 0;
-    mouseDown.modifiers = const_cast<Evas_Modifier*>(evas_key_modifier_get(evas));
-    mouseDown.locks = const_cast<Evas_Lock*>(evas_key_lock_get(evas));
-    mouseDown.flags = EVAS_BUTTON_NONE;
-    mouseDown.timestamp = ecore_loop_time_get();
-    mouseDown.event_flags = EVAS_EVENT_FLAG_NONE;
-    mouseDown.dev = 0;
-
-    ewk_view_context_menu_forward_event(view, &mouseDown);
-    Ewk_Context_Menu* ewkMenu = ewk_view_context_menu_get(view);
-
-    JSValueRef valueRef = JSObjectMakeArray(context, 0, 0, 0);
-    if (ewkMenu) {
-        const Eina_List* ewkMenuItems = ewk_context_menu_item_list_get(ewkMenu);
-        JSValueRef arrayValues[eina_list_count(ewkMenuItems)];
-
-        const Eina_List* listIterator;
-        void* data;
-        int index = 0;
-        EINA_LIST_FOREACH(ewkMenuItems, listIterator, data)
-            arrayValues[index++] = JSObjectMake(context, getMenuItemClass(), data);
-
-        if (index)
-            valueRef = JSObjectMakeArray(context, index - 1, arrayValues, 0);
-    }
-
-    return valueRef;
-}
-
-static JSValueRef mouseDownCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    int button = 0;
-    if (argumentCount == 1) {
-        button = static_cast<int>(JSValueToNumber(context, arguments[0], exception));
-
-        if (exception && *exception)
-            return JSValueMakeUndefined(context);
-    }
-
-    button = translateMouseButtonNumber(button);
-    // If the same mouse button is already in the down position don't send another event as it may confuse Xvfb.
-    if (gButtonCurrentlyDown == button)
-        return JSValueMakeUndefined(context);
-
-    updateClickCount(button);
-
-    unsigned modifiers = argumentCount >= 2 ? modifiersFromJSValue(context, arguments[1]) : EvasKeyModifierNone;
-    MouseEventInfo* eventInfo = new MouseEventInfo(EvasMouseEventDown, modifiers, static_cast<EvasMouseButton>(button));
-    feedOrQueueMouseEvent(eventInfo, FeedQueuedEvents);
-    gButtonCurrentlyDown = button;
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef mouseUpCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    int button = 0;
-    if (argumentCount == 1) {
-        button = static_cast<int>(JSValueToNumber(context, arguments[0], exception));
-        if (exception && *exception)
-            return JSValueMakeUndefined(context);
-    }
-
-    gLastClickPositionX = gLastMousePositionX;
-    gLastClickPositionY = gLastMousePositionY;
-    gLastClickButton = gButtonCurrentlyDown;
-    gLastClickTimeOffset = gTimeOffset;
-    gButtonCurrentlyDown = 0;
-
-    unsigned modifiers = argumentCount >= 2 ? modifiersFromJSValue(context, arguments[1]) : EvasKeyModifierNone;
-    MouseEventInfo* eventInfo = new MouseEventInfo(EvasMouseEventUp, modifiers, translateMouseButtonNumber(button));
-    feedOrQueueMouseEvent(eventInfo, FeedQueuedEvents);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef mouseMoveToCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 2)
-        return JSValueMakeUndefined(context);
-
-    gLastMousePositionX = static_cast<int>(JSValueToNumber(context, arguments[0], exception));
-    if (exception && *exception)
-        return JSValueMakeUndefined(context);
-    gLastMousePositionY = static_cast<int>(JSValueToNumber(context, arguments[1], exception));
-    if (exception && *exception)
-        return JSValueMakeUndefined(context);
-
-    MouseEventInfo* eventInfo = new MouseEventInfo(EvasMouseEventMove);
-    feedOrQueueMouseEvent(eventInfo, DoNotFeedQueuedEvents);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef leapForwardCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount > 0) {
-        const unsigned long leapForwardDelay = JSValueToNumber(context, arguments[0], exception);
-        if (delayedEventQueue().isEmpty())
-            delayedEventQueue().append(DelayedEvent(0, leapForwardDelay));
-        else
-            delayedEventQueue().last().delay = leapForwardDelay;
-        gTimeOffset += leapForwardDelay;
-    }
-
-    return JSValueMakeUndefined(context);
-}
-
-static EvasMouseEvent evasMouseEventFromHorizontalAndVerticalOffsets(int horizontalOffset, int verticalOffset)
-{
-    unsigned mouseEvent = 0;
-
-    if (verticalOffset > 0)
-        mouseEvent |= EvasMouseEventScrollUp;
-    else if (verticalOffset < 0)
-        mouseEvent |= EvasMouseEventScrollDown;
-
-    if (horizontalOffset > 0)
-        mouseEvent |= EvasMouseEventScrollRight;
-    else if (horizontalOffset < 0)
-        mouseEvent |= EvasMouseEventScrollLeft;
-
-    return static_cast<EvasMouseEvent>(mouseEvent);
-}
-
-static JSValueRef mouseScrollByCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 2)
-        return JSValueMakeUndefined(context);
-
-    // We need to invert scrolling values since in EFL negative z value means that
-    // canvas is scrolling down
-    const int horizontal = -(static_cast<int>(JSValueToNumber(context, arguments[0], exception)));
-    if (exception && *exception)
-        return JSValueMakeUndefined(context);
-    const int vertical = -(static_cast<int>(JSValueToNumber(context, arguments[1], exception)));
-    if (exception && *exception)
-        return JSValueMakeUndefined(context);
-
-    MouseEventInfo* eventInfo = new MouseEventInfo(evasMouseEventFromHorizontalAndVerticalOffsets(horizontal, vertical), EvasKeyModifierNone, EvasMouseButtonNone, horizontal, vertical);
-    feedOrQueueMouseEvent(eventInfo, FeedQueuedEvents);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef continuousMouseScrollByCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    return JSValueMakeUndefined(context);
-}
-
-static KeyEventInfo* keyPadNameFromJSValue(JSStringRef character, unsigned modifiers)
-{
-    if (equals(character, "leftArrow"))
-        return new KeyEventInfo("KP_Left", modifiers);
-    if (equals(character, "rightArrow"))
-        return new KeyEventInfo("KP_Right", modifiers);
-    if (equals(character, "upArrow"))
-        return new KeyEventInfo("KP_Up", modifiers);
-    if (equals(character, "downArrow"))
-        return new KeyEventInfo("KP_Down", modifiers);
-    if (equals(character, "pageUp"))
-        return new KeyEventInfo("KP_Prior", modifiers);
-    if (equals(character, "pageDown"))
-        return new KeyEventInfo("KP_Next", modifiers);
-    if (equals(character, "home"))
-        return new KeyEventInfo("KP_Home", modifiers);
-    if (equals(character, "end"))
-        return new KeyEventInfo("KP_End", modifiers);
-    if (equals(character, "insert"))
-        return new KeyEventInfo("KP_Insert", modifiers);
-    if (equals(character, "delete"))
-        return new KeyEventInfo("KP_Delete", modifiers);
-
-    return new KeyEventInfo(character->string().utf8(), modifiers, character->string().utf8());
-}
-
-static KeyEventInfo* keyNameFromJSValue(JSStringRef character, unsigned modifiers)
-{
-    if (equals(character, "leftArrow"))
-        return new KeyEventInfo("Left", modifiers);
-    if (equals(character, "rightArrow"))
-        return new KeyEventInfo("Right", modifiers);
-    if (equals(character, "upArrow"))
-        return new KeyEventInfo("Up", modifiers);
-    if (equals(character, "downArrow"))
-        return new KeyEventInfo("Down", modifiers);
-    if (equals(character, "pageUp"))
-        return new KeyEventInfo("Prior", modifiers);
-    if (equals(character, "pageDown"))
-        return new KeyEventInfo("Next", modifiers);
-    if (equals(character, "home"))
-        return new KeyEventInfo("Home", modifiers);
-    if (equals(character, "end"))
-        return new KeyEventInfo("End", modifiers);
-    if (equals(character, "insert"))
-        return new KeyEventInfo("Insert", modifiers);
-    if (equals(character, "delete"))
-        return new KeyEventInfo("Delete", modifiers);
-    if (equals(character, "printScreen"))
-        return new KeyEventInfo("Print", modifiers);
-    if (equals(character, "menu"))
-        return new KeyEventInfo("Menu", modifiers);
-    if (equals(character, "leftControl"))
-        return new KeyEventInfo("Control_L", modifiers);
-    if (equals(character, "rightControl"))
-        return new KeyEventInfo("Control_R", modifiers);
-    if (equals(character, "leftShift"))
-        return new KeyEventInfo("Shift_L", modifiers);
-    if (equals(character, "rightShift"))
-        return new KeyEventInfo("Shift_R", modifiers);
-    if (equals(character, "leftAlt"))
-        return new KeyEventInfo("Alt_L", modifiers);
-    if (equals(character, "rightAlt"))
-        return new KeyEventInfo("Alt_R", modifiers);
-    if (equals(character, "F1"))
-        return new KeyEventInfo("F1", modifiers);
-    if (equals(character, "F2"))
-        return new KeyEventInfo("F2", modifiers);
-    if (equals(character, "F3"))
-        return new KeyEventInfo("F3", modifiers);
-    if (equals(character, "F4"))
-        return new KeyEventInfo("F4", modifiers);
-    if (equals(character, "F5"))
-        return new KeyEventInfo("F5", modifiers);
-    if (equals(character, "F6"))
-        return new KeyEventInfo("F6", modifiers);
-    if (equals(character, "F7"))
-        return new KeyEventInfo("F7", modifiers);
-    if (equals(character, "F8"))
-        return new KeyEventInfo("F8", modifiers);
-    if (equals(character, "F9"))
-        return new KeyEventInfo("F9", modifiers);
-    if (equals(character, "F10"))
-        return new KeyEventInfo("F10", modifiers);
-    if (equals(character, "F11"))
-        return new KeyEventInfo("F11", modifiers);
-    if (equals(character, "F12"))
-        return new KeyEventInfo("F12", modifiers);
-
-    int charCode = JSStringGetCharactersPtr(character)[0];
-    if (charCode == '\n' || charCode == '\r')
-        return new KeyEventInfo("Return", modifiers, "\r");
-    if (charCode == '\t')
-        return new KeyEventInfo("Tab", modifiers, "\t");
-    if (charCode == '\x8')
-        return new KeyEventInfo("BackSpace", modifiers, "\x8");
-    if (charCode == ' ')
-        return new KeyEventInfo("space", modifiers, " ");
-    if (charCode == '\x1B')
-        return new KeyEventInfo("Escape", modifiers, "\x1B");
-
-    if ((character->length() == 1) && (charCode >= 'A' && charCode <= 'Z'))
-        modifiers |= EvasKeyModifierShift;
-
-    return new KeyEventInfo(character->string().utf8(), modifiers, character->string().utf8());
-}
-
-static KeyEventInfo* createKeyEventInfo(JSContextRef context, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (!ewk_frame_view_get(browser->mainFrame()))
-        return 0;
-
-    if (argumentCount < 1)
-        return 0;
-
-    // handle location argument.
-    int location = DomKeyLocationStandard;
-    if (argumentCount > 2)
-        location = static_cast<int>(JSValueToNumber(context, arguments[2], exception));
-
-    JSRetainPtr<JSStringRef> character(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    if (exception && *exception)
-        return 0;
-
-    unsigned modifiers = EvasKeyModifierNone;
-    if (argumentCount >= 2)
-        modifiers = modifiersFromJSValue(context, arguments[1]);
-
-    return (location == DomKeyLocationNumpad) ? keyPadNameFromJSValue(character.get(), modifiers) : keyNameFromJSValue(character.get(), modifiers);
-}
-
-static void sendKeyDown(Evas* evas, KeyEventInfo* keyEventInfo)
-{
-    if (!keyEventInfo)
-        return;
-
-    const char* keyName = keyEventInfo->keyName.data();
-    const char* keyString = keyEventInfo->keyString.data();
-    unsigned modifiers = keyEventInfo->modifiers;
-
-    DumpRenderTreeSupportEfl::layoutFrame(browser->mainFrame());
-
-    ASSERT(evas);
-
-    int eventIndex = 0;
-    // Mimic the emacs ctrl-o binding by inserting a paragraph
-    // separator and then putting the cursor back to its original
-    // position. Allows us to pass emacs-ctrl-o.html
-    if ((modifiers & EvasKeyModifierControl) && !strcmp(keyName, "o")) {
-        setEvasModifiers(evas, EvasKeyModifierNone);
-        evas_event_feed_key_down(evas, "Return", "Return", "\r", 0, eventIndex++, 0);
-        evas_event_feed_key_up(evas, "Return", "Return", "\r", 0, eventIndex++, 0);
-
-        modifiers = EvasKeyModifierNone;
-        keyName = "Left";
-        keyString = 0;
-    }
-
-    setEvasModifiers(evas, modifiers);
-    evas_event_feed_key_down(evas, keyName, keyName, keyString, 0, eventIndex++, 0);
-    evas_event_feed_key_up(evas, keyName, keyName, keyString, 0, eventIndex++, 0);
-    setEvasModifiers(evas, EvasKeyModifierNone);
-
-    DumpRenderTreeSupportEfl::deliverAllMutationsIfNecessary();
-}
-
-static JSValueRef keyDownCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    OwnPtr<KeyEventInfo> keyEventInfo = adoptPtr(createKeyEventInfo(context, argumentCount, arguments, exception));
-    sendKeyDown(evas_object_evas_get(browser->mainFrame()), keyEventInfo.get());
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef scalePageByCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 3)
-        return JSValueMakeUndefined(context);
-
-    Evas_Object* view = ewk_frame_view_get(browser->mainFrame());
-    if (!view)
-        return JSValueMakeUndefined(context);
-
-    float scaleFactor = JSValueToNumber(context, arguments[0], exception);
-    float x = JSValueToNumber(context, arguments[1], exception);
-    float y = JSValueToNumber(context, arguments[2], exception);
-    ewk_view_scale_set(view, scaleFactor, x, y);
-
-    return JSValueMakeUndefined(context);
-}
-
-static void textZoom(ZoomEvent zoomEvent)
-{
-    Evas_Object* view = ewk_frame_view_get(browser->mainFrame());
-    if (!view)
-        return;
-
-    float zoomFactor = ewk_view_text_zoom_get(view);
-    if (zoomEvent == ZoomIn)
-        zoomFactor *= zoomMultiplierRatio;
-    else
-        zoomFactor /= zoomMultiplierRatio;
-
-    ewk_view_text_zoom_set(view, zoomFactor);
-}
-
-static void pageZoom(ZoomEvent zoomEvent)
-{
-    Evas_Object* view = ewk_frame_view_get(browser->mainFrame());
-    if (!view)
-        return;
-
-    float zoomFactor = ewk_view_page_zoom_get(view);
-    if (zoomEvent == ZoomIn)
-        zoomFactor *= zoomMultiplierRatio;
-    else
-        zoomFactor /= zoomMultiplierRatio;
-
-    ewk_view_page_zoom_set(view, zoomFactor);
-}
-
-static JSValueRef textZoomInCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    textZoom(ZoomIn);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef textZoomOutCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    textZoom(ZoomOut);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef zoomPageInCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    pageZoom(ZoomIn);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef zoomPageOutCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    pageZoom(ZoomOut);
-    return JSValueMakeUndefined(context);
-}
-
-static Eina_Bool sendAsynchronousKeyDown(void* userData)
-{
-    OwnPtr<KeyEventInfo> keyEventInfo = adoptPtr(static_cast<KeyEventInfo*>(userData));
-    sendKeyDown(evas_object_evas_get(browser->mainFrame()), keyEventInfo.get());
-    return ECORE_CALLBACK_CANCEL;
-}
-
-static JSValueRef scheduleAsynchronousKeyDownCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    KeyEventInfo* keyEventInfo = createKeyEventInfo(context, argumentCount, arguments, exception);
-    ecore_idler_add(sendAsynchronousKeyDown, static_cast<void*>(keyEventInfo));
-    return JSValueMakeUndefined(context);
-}
-
-static void sendTouchEvent(Ewk_Touch_Event_Type type)
-{
-    Eina_List* eventList = 0;
-
-    for (unsigned i = 0; i < touchPointList().size(); ++i) {
-        Ewk_Touch_Point* event = new Ewk_Touch_Point;
-        WebCore::IntPoint point = touchPointList().at(i).point;
-        event->id = touchPointList().at(i).id;
-        event->x = point.x();
-        event->y = point.y();
-        event->state = touchPointList().at(i).state;
-        eventList = eina_list_append(eventList, event);
-    }
-
-    ewk_frame_feed_touch_event(browser->mainFrame(), type, eventList, touchModifiers);
-
-    void* listData;
-    EINA_LIST_FREE(eventList, listData) {
-        Ewk_Touch_Point* event = static_cast<Ewk_Touch_Point*>(listData);
-        delete event;
-    }
-
-    for (unsigned i = 0; i < touchPointList().size(); ) {
-        if (touchPointList().at(i).state == EWK_TOUCH_POINT_RELEASED)
-            touchPointList().remove(i);
-        else {
-            touchPointList().at(i).state = EWK_TOUCH_POINT_STATIONARY;
-            ++i;
-        }
-    }
-}
-
-static JSValueRef addTouchPointCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount != 2)
-        return JSValueMakeUndefined(context);
-
-    int x = static_cast<int>(JSValueToNumber(context, arguments[0], exception));
-    ASSERT(!exception || !*exception);
-    int y = static_cast<int>(JSValueToNumber(context, arguments[1], exception));
-    ASSERT(!exception || !*exception);
-
-    const WebCore::IntPoint point(x, y);
-    const unsigned id = touchPointList().isEmpty() ? 0 : touchPointList().last().id + 1;
-    TouchEventInfo eventInfo(id, EWK_TOUCH_POINT_PRESSED, point);
-    touchPointList().append(eventInfo);
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef touchStartCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    sendTouchEvent(EWK_TOUCH_START);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef updateTouchPointCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount != 3)
-        return JSValueMakeUndefined(context);
-
-    int index = static_cast<int>(JSValueToNumber(context, arguments[0], exception));
-    ASSERT(!exception || !*exception);
-    int x = static_cast<int>(JSValueToNumber(context, arguments[1], exception));
-    ASSERT(!exception || !*exception);
-    int y = static_cast<int>(JSValueToNumber(context, arguments[2], exception));
-    ASSERT(!exception || !*exception);
-
-    if (index < 0 || index >= touchPointList().size())
-        return JSValueMakeUndefined(context);
-
-    WebCore::IntPoint& point = touchPointList().at(index).point;
-    point.setX(x);
-    point.setY(y);
-    touchPointList().at(index).state = EWK_TOUCH_POINT_MOVED;
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef touchMoveCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    sendTouchEvent(EWK_TOUCH_MOVE);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef cancelTouchPointCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount != 1)
-        return JSValueMakeUndefined(context);
-
-    int index = static_cast<int>(JSValueToNumber(context, arguments[0], exception));
-    ASSERT(!exception || !*exception);
-    if (index < 0 || index >= touchPointList().size())
-        return JSValueMakeUndefined(context);
-
-    touchPointList().at(index).state = EWK_TOUCH_POINT_CANCELLED;
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef touchCancelCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    sendTouchEvent(EWK_TOUCH_CANCEL);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef releaseTouchPointCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount != 1)
-        return JSValueMakeUndefined(context);
-
-    int index = static_cast<int>(JSValueToNumber(context, arguments[0], exception));
-    ASSERT(!exception || !*exception);
-    if (index < 0 || index >= touchPointList().size())
-        return JSValueMakeUndefined(context);
-
-    touchPointList().at(index).state = EWK_TOUCH_POINT_RELEASED;
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef touchEndCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    sendTouchEvent(EWK_TOUCH_END);
-    touchModifiers = 0;
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef clearTouchPointsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    touchPointList().clear();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef setTouchModifierCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount != 2)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> jsModifier(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    unsigned mask = 0;
-
-    if (equals(jsModifier, "alt"))
-        mask |= ECORE_EVENT_MODIFIER_ALT;
-    else if (equals(jsModifier, "ctrl"))
-        mask |= ECORE_EVENT_MODIFIER_CTRL;
-    else if (equals(jsModifier, "meta"))
-        mask |= ECORE_EVENT_MODIFIER_WIN;
-    else if (equals(jsModifier, "shift"))
-        mask |= ECORE_EVENT_MODIFIER_SHIFT;
-
-    if (JSValueToBoolean(context, arguments[1]))
-        touchModifiers |= mask;
-    else
-        touchModifiers &= ~mask;
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSStaticFunction staticFunctions[] = {
-    { "contextClick", contextClickCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "mouseScrollBy", mouseScrollByCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "continuousMouseScrollBy", continuousMouseScrollByCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "mouseDown", mouseDownCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "mouseUp", mouseUpCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "mouseMoveTo", mouseMoveToCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "leapForward", leapForwardCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "keyDown", keyDownCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "scheduleAsynchronousClick", scheduleAsynchronousClickCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "scheduleAsynchronousKeyDown", scheduleAsynchronousKeyDownCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "scalePageBy", scalePageByCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "textZoomIn", textZoomInCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "textZoomOut", textZoomOutCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "zoomPageIn", zoomPageInCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "zoomPageOut", zoomPageOutCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "addTouchPoint", addTouchPointCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "touchStart", touchStartCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "updateTouchPoint", updateTouchPointCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "touchMove", touchMoveCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "releaseTouchPoint", releaseTouchPointCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "touchEnd", touchEndCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "cancelTouchPoint", cancelTouchPointCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "touchCancel", touchCancelCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "clearTouchPoints", clearTouchPointsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "setTouchModifier", setTouchModifierCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { 0, 0, 0 }
-};
-
-static JSStaticValue staticValues[] = {
-    { 0, 0, 0, 0 }
-};
-
-static JSClassRef getClass(JSContextRef context)
-{
-    static JSClassRef eventSenderClass = 0;
-
-    if (!eventSenderClass) {
-        JSClassDefinition classDefinition = {
-                0, 0, 0, 0, 0, 0,
-                0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
-        classDefinition.staticFunctions = staticFunctions;
-        classDefinition.staticValues = staticValues;
-
-        eventSenderClass = JSClassCreate(&classDefinition);
-    }
-
-    return eventSenderClass;
-}
-
-JSObjectRef makeEventSender(JSContextRef context, bool isTopFrame)
-{
-    if (isTopFrame) {
-        gDragMode = true;
-
-        // Fly forward in time one second when the main frame loads. This will
-        // ensure that when a test begins clicking in the same location as
-        // a previous test, those clicks won't be interpreted as continuations
-        // of the previous test's click sequences.
-        gTimeOffset += 1000;
-
-        gLastMousePositionX = gLastMousePositionY = 0;
-        gLastClickPositionX = gLastClickPositionY = 0;
-        gLastClickTimeOffset = 0;
-        gLastClickButton = 0;
-        gButtonCurrentlyDown = 0;
-        gClickCount = 0;
-    }
-
-    return JSObjectMake(context, getClass(context), 0);
-}
-
-static void feedOrQueueMouseEvent(MouseEventInfo* eventInfo, EventQueueStrategy strategy)
-{
-    if (!delayedEventQueue().isEmpty()) {
-        if (delayedEventQueue().last().eventInfo)
-            delayedEventQueue().append(DelayedEvent(eventInfo));
-        else
-            delayedEventQueue().last().eventInfo = eventInfo;
-
-        if (strategy == FeedQueuedEvents)
-            feedQueuedMouseEvents();
-    } else
-        feedMouseEvent(eventInfo);
-}
-
-static void feedMouseEvent(MouseEventInfo* eventInfo)
-{
-    if (!eventInfo)
-        return;
-
-    unsigned timeStamp = 0;
-    Evas_Object* mainFrame = browser->mainFrame();
-    Evas* evas = evas_object_evas_get(mainFrame);
-    EvasMouseEvent event = eventInfo->event;
-
-    setEvasModifiers(evas, eventInfo->modifiers);
-
-    Evas_Button_Flags flags = EVAS_BUTTON_NONE;
-
-    // FIXME: We need to pass additional information with our events, so that
-    // we could construct correct PlatformWheelEvent. At the moment, max number
-    // of clicks is 3
-    if (gClickCount == 3)
-        flags = EVAS_BUTTON_TRIPLE_CLICK;
-    else if (gClickCount == 2)
-        flags = EVAS_BUTTON_DOUBLE_CLICK;
-
-    if (event & EvasMouseEventMove)
-        evas_event_feed_mouse_move(evas, gLastMousePositionX, gLastMousePositionY, timeStamp++, 0);
-    if (event & EvasMouseEventDown)
-        evas_event_feed_mouse_down(evas, eventInfo->button, flags, timeStamp++, 0);
-    if (event & EvasMouseEventUp)
-        evas_event_feed_mouse_up(evas, eventInfo->button, flags, timeStamp++, 0);
-    if (event & EvasMouseEventScrollLeft | event & EvasMouseEventScrollRight)
-        evas_event_feed_mouse_wheel(evas, 1, eventInfo->horizontalDelta, timeStamp, 0);
-    if (event & EvasMouseEventScrollUp | event & EvasMouseEventScrollDown)
-        evas_event_feed_mouse_wheel(evas, 0, eventInfo->verticalDelta, timeStamp, 0);
-
-    setEvasModifiers(evas, EvasKeyModifierNone);
-
-    delete eventInfo;
-}
-
-static void feedQueuedMouseEvents()
-{
-    WTF::Vector<DelayedEvent>::const_iterator it = delayedEventQueue().begin();
-    for (; it != delayedEventQueue().end(); it++) {
-        DelayedEvent delayedEvent = *it;
-        if (delayedEvent.delay)
-            usleep(delayedEvent.delay * 1000);
-        feedMouseEvent(delayedEvent.eventInfo);
-    }
-    delayedEventQueue().clear();
-}
diff --git a/Tools/DumpRenderTree/efl/EventSender.h b/Tools/DumpRenderTree/efl/EventSender.h
deleted file mode 100644
index bded655..0000000
--- a/Tools/DumpRenderTree/efl/EventSender.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * Copyright (C) 2007 Apple Inc.  All rights reserved.
- * Copyright (C) 2009 Holger Hans Peter Freyther
- * Copyright (C) 2011 ProFUSION Embedded Systems
- * Copyright (C) 2011 Samsung Electronics
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef EventSender_h
-#define EventSender_h
-
-typedef const struct OpaqueJSContext* JSContextRef;
-typedef struct OpaqueJSValue* JSObjectRef;
-
-// The boolean parameter refers to whether this is being called from a top-level frame.
-JSObjectRef makeEventSender(JSContextRef, bool);
-
-#endif // EventSender_h
diff --git a/Tools/DumpRenderTree/efl/FontManagement.cpp b/Tools/DumpRenderTree/efl/FontManagement.cpp
deleted file mode 100644
index df8a150..0000000
--- a/Tools/DumpRenderTree/efl/FontManagement.cpp
+++ /dev/null
@@ -1,140 +0,0 @@
-/*
- * Copyright (C) 2011 ProFUSION Embedded Systems
- * Copyright (C) 2011 Samsung Electronics
- * Copyright (C) 2012 Intel Corporation. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
- * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "FontManagement.h"
-
-#include <Ecore_File.h>
-#include <cstdio>
-#include <fontconfig/fontconfig.h>
-#include <wtf/Vector.h>
-#include <wtf/text/CString.h>
-#include <wtf/text/StringBuilder.h>
-
-static CString buildPath(const char* base, const char* first, ...)
-{
-    va_list ap;
-    StringBuilder result;
-    result.append(base);
-
-    if (const char* current = first) {
-        va_start(ap, first);
-        do {
-            result.append('/');
-            result.append(current);
-        } while ((current = va_arg(ap, const char*)));
-        va_end(ap);
-    }
-
-    return result.toString().utf8();
-}
-
-static Vector<CString> getCoreFontFiles()
-{
-    Vector<CString> fontFilePaths;
-
-    // Ahem is used by many layout tests.
-    fontFilePaths.append(CString(FONTS_CONF_DIR "/AHEM____.TTF"));
-    // A font with no valid Fontconfig encoding to test https://bugs.webkit.org/show_bug.cgi?id=47452
-    fontFilePaths.append(CString(FONTS_CONF_DIR "/FontWithNoValidEncoding.fon"));
-
-    for (int i = 1; i <= 9; i++) {
-        char fontPath[EINA_PATH_MAX];
-        snprintf(fontPath, EINA_PATH_MAX - 1, FONTS_CONF_DIR "/../../fonts/WebKitWeightWatcher%i00.ttf", i);
-        fontFilePaths.append(CString(fontPath));
-    }
-
-    return fontFilePaths;
-}
-
-static void addFontDirectory(const CString& fontDirectory, FcConfig* config)
-{
-    const char* fontPath = fontDirectory.data();
-    if (!fontPath || !FcConfigAppFontAddDir(config, reinterpret_cast<const FcChar8*>(fontPath)))
-        fprintf(stderr, "Could not add font directory %s!\n", fontPath);
-}
-
-static void addFontFiles(const Vector<CString>& fontFiles, FcConfig* config)
-{
-    Vector<CString>::const_iterator it, end = fontFiles.end();
-    for (it = fontFiles.begin(); it != end; ++it) {
-        const char* filePath = (*it).data();
-        if (!FcConfigAppFontAddFile(config, reinterpret_cast<const FcChar8*>(filePath)))
-            fprintf(stderr, "Could not load font at %s!\n", filePath);
-    }
-}
-
-static CString getCustomBuildDir()
-{
-    if (const char* userChosenBuildDir = getenv("WEBKITOUTPUTDIR")) {
-        if (ecore_file_is_dir(userChosenBuildDir))
-            return userChosenBuildDir;
-        fprintf(stderr, "WEBKITOUTPUTDIR set to '%s', but path doesn't exist.\n", userChosenBuildDir);
-    }
-
-    return CString();
-}
-
-static CString getPlatformFontsPath()
-{
-    CString customBuildDir = getCustomBuildDir();
-    if (!customBuildDir.isNull()) {
-        CString fontsPath = buildPath(customBuildDir.data(), "Dependencies", "Root", "webkitgtk-test-fonts", 0);
-        if (!ecore_file_exists(fontsPath.data()))
-            fprintf(stderr, "WEBKITOUTPUTDIR set to '%s', but could not local test fonts.\n", customBuildDir.data());
-        return fontsPath;
-    }
-
-    CString fontsPath = CString(DOWNLOADED_FONTS_DIR);
-    if (ecore_file_exists(fontsPath.data()))
-        return fontsPath;
-
-    fprintf(stderr, "Could not locate tests fonts, try setting WEBKITOUTPUTDIR.\n");
-    return CString();
-}
-
-void addFontsToEnvironment()
-{
-    FcInit();
-
-    // Load our configuration file, which sets up proper aliases for family
-    // names like sans, serif and monospace.
-    FcConfig* config = FcConfigCreate();
-    const char* fontConfigFilename = FONTS_CONF_DIR "/fonts.conf";
-    if (!FcConfigParseAndLoad(config, reinterpret_cast<const FcChar8*>(fontConfigFilename), true)) {
-        fprintf(stderr, "Couldn't load font configuration file from: %s\n", fontConfigFilename);
-        exit(1);
-    }
-
-    addFontFiles(getCoreFontFiles(), config);
-    addFontDirectory(getPlatformFontsPath(), config);
-
-    if (!FcConfigSetCurrent(config)) {
-        fprintf(stderr, "Could not set the current font configuration!\n");
-        exit(1);
-    }
-}
-
diff --git a/Tools/DumpRenderTree/efl/FontManagement.h b/Tools/DumpRenderTree/efl/FontManagement.h
deleted file mode 100644
index d497513..0000000
--- a/Tools/DumpRenderTree/efl/FontManagement.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * Copyright (C) 2011 ProFUSION Embedded Systems
- * Copyright (C) 2011 Samsung Electronics
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
- * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef FontManagement_h
-#define FontManagement_h
-
-void addFontsToEnvironment();
-
-#endif // FontManagement_h
diff --git a/Tools/DumpRenderTree/efl/GCControllerEfl.cpp b/Tools/DumpRenderTree/efl/GCControllerEfl.cpp
deleted file mode 100644
index 1f55a5c..0000000
--- a/Tools/DumpRenderTree/efl/GCControllerEfl.cpp
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Copyright (C) 2011 ProFUSION Embedded Systems
- * Copyright (C) 2011 Samsung Electronics
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "GCController.h"
-
-#include "WebCoreSupport/DumpRenderTreeSupportEfl.h"
-#include "ewk_private.h"
-
-void GCController::collect() const
-{
-    DumpRenderTreeSupportEfl::garbageCollectorCollect();
-}
-
-void GCController::collectOnAlternateThread(bool waitUntilDone) const
-{
-    DumpRenderTreeSupportEfl::garbageCollectorCollectOnAlternateThread(waitUntilDone);
-}
-
-size_t GCController::getJSObjectCount() const
-{
-    return DumpRenderTreeSupportEfl::javaScriptObjectsCount();
-}
diff --git a/Tools/DumpRenderTree/efl/JSStringUtils.cpp b/Tools/DumpRenderTree/efl/JSStringUtils.cpp
deleted file mode 100644
index 19ca557..0000000
--- a/Tools/DumpRenderTree/efl/JSStringUtils.cpp
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Copyright (C) 2011 ProFUSION Embedded Systems
- * Copyright (C) 2011 Samsung Electronics
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND ITS CONTRIBUTORS
- * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
- * PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT
- * HOLDERS OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
- * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
- * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "JSStringUtils.h"
-
-bool equals(JSStringRef jsString, const char* cString)
-{
-    return JSStringIsEqualToUTF8CString(jsString, cString);
-}
-
-bool equals(JSRetainPtr<JSStringRef> jsString, const char* cString)
-{
-    return equals(jsString.get(), cString);
-}
diff --git a/Tools/DumpRenderTree/efl/JSStringUtils.h b/Tools/DumpRenderTree/efl/JSStringUtils.h
deleted file mode 100644
index 04d7e08..0000000
--- a/Tools/DumpRenderTree/efl/JSStringUtils.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Copyright (C) 2011 ProFUSION Embedded Systems
- * Copyright (C) 2011 Samsung Electronics
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND ITS CONTRIBUTORS
- * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
- * PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT
- * HOLDERS OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
- * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
- * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-
-#ifndef JSStringUtils_h
-#define JSStringUtils_h
-
-#include <JavaScriptCore/JSRetainPtr.h>
-#include <JavaScriptCore/JSStringRef.h>
-
-bool equals(JSStringRef, const char*);
-bool equals(JSRetainPtr<JSStringRef>, const char*);
-
-#endif // JSStringUtils_h
-
diff --git a/Tools/DumpRenderTree/efl/PixelDumpSupportEfl.cpp b/Tools/DumpRenderTree/efl/PixelDumpSupportEfl.cpp
deleted file mode 100644
index 2419039..0000000
--- a/Tools/DumpRenderTree/efl/PixelDumpSupportEfl.cpp
+++ /dev/null
@@ -1,97 +0,0 @@
-/*
- * Copyright (C) 2009 Zan Dobersek <zandobersek@gmail.com>
- * Copyright (C) 2010 Igalia S.L.
- * Copyright (C) 2011 ProFUSION Embedded Systems
- * Copyright (C) 2011 Samsung Electronics
- * Copyright (C) 2012 Intel Corporation. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include "DumpRenderTree.h"
-#include "DumpRenderTreeChrome.h"
-#include "IntRect.h"
-#include "PixelDumpSupportCairo.h"
-#include "RefPtrCairo.h"
-#include "WebCoreSupport/DumpRenderTreeSupportEfl.h"
-#include "ewk_view.h"
-
-PassRefPtr<BitmapContext> createBitmapContextFromWebView(bool, bool, bool, bool drawSelectionRect)
-{
-    Ewk_View_Smart_Data* smartData = static_cast<Ewk_View_Smart_Data*>(evas_object_smart_data_get(browser->mainView()));
-    Ewk_View_Private_Data* privateData = static_cast<Ewk_View_Private_Data*>(smartData->_priv);
-    const Evas_Object* mainFrame = browser->mainFrame();
-
-    int x, y, width, height;
-    evas_object_geometry_get(browser->mainFrame(), &x, &y, &width, &height);
-    const Eina_Rectangle rect = { x, y, width, height };
-
-    RefPtr<cairo_surface_t> surface = adoptRef(cairo_image_surface_create(CAIRO_FORMAT_ARGB32, rect.w, rect.h));
-    RefPtr<cairo_t> context = adoptRef(cairo_create(surface.get()));
-
-    if (!ewk_view_paint(privateData, context.get(), &rect))
-        return 0;
-
-    if (DumpRenderTreeSupportEfl::isTrackingRepaints(mainFrame)) {
-        cairo_push_group(context.get());
-
-        // Paint the gray mask over the original image.
-        cairo_set_source_rgba(context.get(), 0, 0, 0, 0.66);
-        cairo_paint(context.get());
-
-        // Paint transparent rectangles over the mask to show the repainted regions.
-        cairo_set_source_rgba(context.get(), 0, 0, 0, 0);
-        cairo_set_operator(context.get(), CAIRO_OPERATOR_SOURCE);
-
-        Eina_List* repaintRects = DumpRenderTreeSupportEfl::trackedRepaintRects(mainFrame);
-        void* iter = 0;
-        EINA_LIST_FREE(repaintRects, iter) {
-            Eina_Rectangle* rect = static_cast<Eina_Rectangle*>(iter);
-
-            cairo_rectangle(context.get(), rect->x, rect->y, rect->w, rect->h);
-            cairo_fill(context.get());
-
-            eina_rectangle_free(rect);
-        }
-
-        cairo_pop_group_to_source(context.get());
-        cairo_paint(context.get());
-    }
-
-    if (drawSelectionRect) {
-        const WebCore::IntRect selectionRect = DumpRenderTreeSupportEfl::selectionRectangle(mainFrame);
-
-        if (!selectionRect.isEmpty()) {
-            cairo_set_line_width(context.get(), 1.0);
-            cairo_rectangle(context.get(), selectionRect.x(), selectionRect.y(), selectionRect.width(), selectionRect.height());
-            cairo_set_source_rgba(context.get(), 1.0, 0.0, 0.0, 1.0);
-            cairo_stroke(context.get());
-        }
-    }
-
-    return BitmapContext::createByAdoptingBitmapAndContext(0, context.release().leakRef());
-}
diff --git a/Tools/DumpRenderTree/efl/TestRunnerEfl.cpp b/Tools/DumpRenderTree/efl/TestRunnerEfl.cpp
deleted file mode 100644
index 044dfd4..0000000
--- a/Tools/DumpRenderTree/efl/TestRunnerEfl.cpp
+++ /dev/null
@@ -1,846 +0,0 @@
-/*
- * Copyright (C) 2007, 2012 Apple Inc. All rights reserved.
- * Copyright (C) 2007 Eric Seidel <eric@webkit.org>
- * Copyright (C) 2008 Nuanti Ltd.
- * Copyright (C) 2009 Jan Michael Alonzo <jmalonzo@gmail.com>
- * Copyright (C) 2009,2011 Collabora Ltd.
- * Copyright (C) 2010 Joone Hur <joone@kldp.org>
- * Copyright (C) 2011 ProFUSION Embedded Systems
- * Copyright (C) 2011 Samsung Electronics
- * Copyright (C) 2012 Intel Corporation
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "TestRunner.h"
-
-#include "DumpRenderTree.h"
-#include "DumpRenderTreeChrome.h"
-#include "JSStringUtils.h"
-#include "NotImplemented.h"
-#include "WebCoreSupport/DumpRenderTreeSupportEfl.h"
-#include "WorkQueue.h"
-#include "WorkQueueItem.h"
-#include "ewk_private.h"
-#include <EWebKit.h>
-#include <Ecore_File.h>
-#include <JavaScriptCore/JSRetainPtr.h>
-#include <JavaScriptCore/JSStringRef.h>
-#include <JavaScriptCore/OpaqueJSString.h>
-#include <KURL.h>
-#include <editing/FindOptions.h>
-#include <stdio.h>
-#include <wtf/text/WTFString.h>
-
-// Same as Mac cache model enum in Source/WebKit/mac/WebView/WebPreferences.h.
-enum {
-    WebCacheModelDocumentViewer = 0,
-    WebCacheModelDocumentBrowser = 1,
-    WebCacheModelPrimaryWebBrowser = 2
-};
-
-TestRunner::~TestRunner()
-{
-}
-
-void TestRunner::addDisallowedURL(JSStringRef)
-{
-    notImplemented();
-}
-
-void TestRunner::clearBackForwardList()
-{
-    Ewk_History* history = ewk_view_history_get(browser->mainView());
-    if (!history)
-        return;
-
-    Ewk_History_Item* item = ewk_history_history_item_current_get(history);
-    ewk_history_clear(history);
-    ewk_history_history_item_add(history, item);
-    ewk_history_history_item_set(history, item);
-    ewk_history_item_free(item);
-}
-
-JSStringRef TestRunner::copyDecodedHostName(JSStringRef)
-{
-    notImplemented();
-    return 0;
-}
-
-JSStringRef TestRunner::copyEncodedHostName(JSStringRef)
-{
-    notImplemented();
-    return 0;
-}
-
-void TestRunner::dispatchPendingLoadRequests()
-{
-    // FIXME: Implement for testing fix for 6727495
-    notImplemented();
-}
-
-void TestRunner::display()
-{
-    displayWebView();
-}
-
-void TestRunner::keepWebHistory()
-{
-    DumpRenderTreeSupportEfl::setShouldTrackVisitedLinks(true);
-}
-
-size_t TestRunner::webHistoryItemCount()
-{
-    const Ewk_History* history = ewk_view_history_get(browser->mainView());
-    if (!history)
-        return -1;
-
-    return ewk_history_back_list_length(history) + ewk_history_forward_list_length(history);
-}
-
-void TestRunner::notifyDone()
-{
-    if (m_waitToDump && !topLoadingFrame && !WorkQueue::shared()->count())
-        dump();
-    m_waitToDump = false;
-    waitForPolicy = false;
-}
-
-JSStringRef TestRunner::pathToLocalResource(JSContextRef context, JSStringRef url)
-{
-    String requestedUrl(url->characters(), url->length());
-    String resourceRoot;
-    String requestedRoot;
-
-    if (requestedUrl.find("LayoutTests") != notFound) {
-        // If the URL contains LayoutTests we need to remap that to
-        // LOCAL_RESOURCE_ROOT which is the path of the LayoutTests directory
-        // within the WebKit source tree.
-        requestedRoot = "/tmp/LayoutTests";
-        resourceRoot = getenv("LOCAL_RESOURCE_ROOT");
-    } else if (requestedUrl.find("tmp") != notFound) {
-        // If the URL is a child of /tmp we need to convert it to be a child
-        // DUMPRENDERTREE_TEMP replace tmp with DUMPRENDERTREE_TEMP
-        requestedRoot = "/tmp";
-        resourceRoot = getenv("DUMPRENDERTREE_TEMP");
-    }
-
-    size_t indexOfRootStart = requestedUrl.reverseFind(requestedRoot);
-    size_t indexOfSeparatorAfterRoot = indexOfRootStart + requestedRoot.length();
-    String fullPathToUrl = "file://" + resourceRoot + requestedUrl.substring(indexOfSeparatorAfterRoot);
-
-    return JSStringCreateWithUTF8CString(fullPathToUrl.utf8().data());
-}
-
-void TestRunner::queueLoad(JSStringRef url, JSStringRef target)
-{
-    WebCore::KURL baseURL(WebCore::KURL(), String::fromUTF8(ewk_frame_uri_get(browser->mainFrame())));
-    WebCore::KURL absoluteURL(baseURL, url->string());
-
-    JSRetainPtr<JSStringRef> jsAbsoluteURL(
-        Adopt, JSStringCreateWithUTF8CString(absoluteURL.string().utf8().data()));
-
-    WorkQueue::shared()->queue(new LoadItem(jsAbsoluteURL.get(), target));
-}
-
-void TestRunner::setAcceptsEditing(bool acceptsEditing)
-{
-    ewk_view_editable_set(browser->mainView(), acceptsEditing);
-}
-
-void TestRunner::setAlwaysAcceptCookies(bool alwaysAcceptCookies)
-{
-    ewk_cookies_policy_set(alwaysAcceptCookies ? EWK_COOKIE_JAR_ACCEPT_ALWAYS : EWK_COOKIE_JAR_ACCEPT_NEVER);
-}
-
-void TestRunner::setCustomPolicyDelegate(bool enabled, bool permissive)
-{
-    policyDelegateEnabled = enabled;
-    policyDelegatePermissive = permissive;
-}
-
-void TestRunner::waitForPolicyDelegate()
-{
-    setCustomPolicyDelegate(true, false);
-    waitForPolicy = true;
-    setWaitToDump(true);
-}
-
-void TestRunner::setScrollbarPolicy(JSStringRef, JSStringRef)
-{
-    notImplemented();
-}
-
-void TestRunner::addOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef protocol, JSStringRef host, bool includeSubdomains)
-{
-    WebCore::KURL kurl;
-    kurl.setProtocol(String(protocol->characters(), protocol->length()));
-    kurl.setHost(String(host->characters(), host->length()));
-
-    ewk_security_policy_whitelist_origin_add(sourceOrigin->string().utf8().data(), kurl.string().utf8().data(), includeSubdomains);
-}
-
-void TestRunner::removeOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef protocol, JSStringRef host, bool includeSubdomains)
-{
-    WebCore::KURL kurl;
-    kurl.setProtocol(String(protocol->characters(), protocol->length()));
-    kurl.setHost(String(host->characters(), host->length()));
-
-    ewk_security_policy_whitelist_origin_del(sourceOrigin->string().utf8().data(), kurl.string().utf8().data(), includeSubdomains);
-}
-
-void TestRunner::setMainFrameIsFirstResponder(bool)
-{
-    notImplemented();
-}
-
-void TestRunner::setTabKeyCyclesThroughElements(bool)
-{
-    notImplemented();
-}
-
-void TestRunner::setUseDashboardCompatibilityMode(bool)
-{
-    notImplemented();
-}
-
-static CString gUserStyleSheet;
-static bool gUserStyleSheetEnabled = true;
-
-void TestRunner::setUserStyleSheetEnabled(bool flag)
-{
-    gUserStyleSheetEnabled = flag;
-    ewk_view_setting_user_stylesheet_set(browser->mainView(), flag ? gUserStyleSheet.data() : 0);
-}
-
-void TestRunner::setUserStyleSheetLocation(JSStringRef path)
-{
-    gUserStyleSheet = path->string().utf8();
-
-    if (gUserStyleSheetEnabled)
-        setUserStyleSheetEnabled(true);
-}
-
-void TestRunner::setValueForUser(JSContextRef context, JSValueRef nodeObject, JSStringRef value)
-{
-    DumpRenderTreeSupportEfl::setValueForUser(context, nodeObject, value->string());
-}
-
-void TestRunner::setViewModeMediaFeature(JSStringRef mode)
-{
-    Evas_Object* view = browser->mainView();
-    if (!view)
-        return;
-
-    if (equals(mode, "windowed"))
-        ewk_view_mode_set(view, EWK_VIEW_MODE_WINDOWED);
-    else if (equals(mode, "floating"))
-        ewk_view_mode_set(view, EWK_VIEW_MODE_FLOATING);
-    else if (equals(mode, "fullscreen"))
-        ewk_view_mode_set(view, EWK_VIEW_MODE_FULLSCREEN);
-    else if (equals(mode, "maximized"))
-        ewk_view_mode_set(view, EWK_VIEW_MODE_MAXIMIZED);
-    else if (equals(mode, "minimized"))
-        ewk_view_mode_set(view, EWK_VIEW_MODE_MINIMIZED);
-}
-
-void TestRunner::setWindowIsKey(bool)
-{
-    notImplemented();
-}
-
-static Eina_Bool waitToDumpWatchdogFired(void*)
-{
-    waitToDumpWatchdog = 0;
-    gTestRunner->waitToDumpWatchdogTimerFired();
-    return ECORE_CALLBACK_CANCEL;
-}
-
-void TestRunner::setWaitToDump(bool waitUntilDone)
-{
-    static const double timeoutSeconds = 30;
-
-    m_waitToDump = waitUntilDone;
-    if (m_waitToDump && !waitToDumpWatchdog)
-        waitToDumpWatchdog = ecore_timer_add(timeoutSeconds, waitToDumpWatchdogFired, 0);
-}
-
-int TestRunner::windowCount()
-{
-    return browser->extraViews().size() + 1; // + 1 for the main view.
-}
-
-void TestRunner::setPrivateBrowsingEnabled(bool flag)
-{
-    ewk_view_setting_private_browsing_set(browser->mainView(), flag);
-}
-
-void TestRunner::setJavaScriptCanAccessClipboard(bool flag)
-{
-    ewk_view_setting_scripts_can_access_clipboard_set(browser->mainView(), flag);
-}
-
-void TestRunner::setXSSAuditorEnabled(bool flag)
-{
-    ewk_view_setting_enable_xss_auditor_set(browser->mainView(), flag);
-}
-
-void TestRunner::setSpatialNavigationEnabled(bool flag)
-{
-    ewk_view_setting_spatial_navigation_set(browser->mainView(), flag);
-}
-
-void TestRunner::setAllowUniversalAccessFromFileURLs(bool flag)
-{
-    ewk_view_setting_allow_universal_access_from_file_urls_set(browser->mainView(), flag);
-}
- 
-void TestRunner::setAllowFileAccessFromFileURLs(bool flag)
-{
-    ewk_view_setting_allow_file_access_from_file_urls_set(browser->mainView(), flag);
-}
- 
-void TestRunner::setAuthorAndUserStylesEnabled(bool flag)
-{
-    DumpRenderTreeSupportEfl::setAuthorAndUserStylesEnabled(browser->mainView(), flag);
-}
-
-void TestRunner::setMockDeviceOrientation(bool, double, bool, double, bool, double)
-{
-    // FIXME: Implement for DeviceOrientation layout tests.
-    // See https://bugs.webkit.org/show_bug.cgi?id=30335.
-    notImplemented();
-}
-
-void TestRunner::setMockGeolocationPosition(double latitude, double longitude, double accuracy, bool canProvideAltitude, double altitude, bool canProvideAltitudeAccuracy, double altitudeAccuracy, bool canProvideHeading, double heading, bool canProvideSpeed, double speed)
-{
-    Evas_Object* view = browser->mainView();
-    if (browser->extraViews().size() > 0)
-        view = browser->extraViews().last();
-
-    DumpRenderTreeSupportEfl::setMockGeolocationPosition(view, latitude, longitude, accuracy, canProvideAltitude, altitude, canProvideAltitudeAccuracy, altitudeAccuracy, canProvideHeading, heading, canProvideSpeed, speed);
-}
-
-void TestRunner::setMockGeolocationPositionUnavailableError(JSStringRef message)
-{
-    Evas_Object* view = browser->mainView();
-    if (browser->extraViews().size() > 0)
-        view = browser->extraViews().last();
-
-    DumpRenderTreeSupportEfl::setMockGeolocationPositionUnavailableError(view, message->string().utf8().data());
-}
-
-void TestRunner::setGeolocationPermission(bool allow)
-{
-    setGeolocationPermissionCommon(allow);
-    Evas_Object* view = browser->mainView();
-    if (browser->extraViews().size() > 0)
-        view = browser->extraViews().last();
-
-    DumpRenderTreeSupportEfl::setMockGeolocationPermission(view, allow);
-}
-
-int TestRunner::numberOfPendingGeolocationPermissionRequests()
-{
-    Evas_Object* view = browser->mainView();
-    if (browser->extraViews().size() > 0)
-        view = browser->extraViews().last();
-
-    return DumpRenderTreeSupportEfl::numberOfPendingGeolocationPermissionRequests(view);
-}
-
-void TestRunner::addMockSpeechInputResult(JSStringRef, double, JSStringRef)
-{
-    // FIXME: Implement for speech input layout tests.
-    // See https://bugs.webkit.org/show_bug.cgi?id=39485.
-    notImplemented();
-}
-
-void TestRunner::setMockSpeechInputDumpRect(bool)
-{
-    // FIXME: Implement for speech input layout tests.
-    // See https://bugs.webkit.org/show_bug.cgi?id=39485.
-    notImplemented();
-}
-
-void TestRunner::startSpeechInput(JSContextRef inputElement)
-{
-    // FIXME: Implement for speech input layout tests.
-    // See https://bugs.webkit.org/show_bug.cgi?id=39485.
-    notImplemented();
-}
-
-void TestRunner::setIconDatabaseEnabled(bool enabled)
-{
-    ewk_settings_icon_database_path_set(0);
-
-    if (!enabled)
-        return;
-
-    String databasePath;
-    const char* tempDir = getenv("TMPDIR");
-
-    if (tempDir)
-        databasePath = String::fromUTF8(tempDir);
-    else if (tempDir = getenv("TEMP"))
-        databasePath = String::fromUTF8(tempDir);
-    else
-        databasePath = String::fromUTF8("/tmp");
-
-    databasePath.append("/DumpRenderTree/IconDatabase");
-
-    if (ecore_file_mkpath(databasePath.utf8().data()))
-        ewk_settings_icon_database_path_set(databasePath.utf8().data());
-}
-
-void TestRunner::setPopupBlockingEnabled(bool flag)
-{
-    ewk_view_setting_scripts_can_open_windows_set(browser->mainView(), !flag);
-}
-
-void TestRunner::setPluginsEnabled(bool flag)
-{
-    ewk_view_setting_enable_plugins_set(browser->mainView(), flag);
-}
-
-void TestRunner::execCommand(JSStringRef name, JSStringRef value)
-{
-    DumpRenderTreeSupportEfl::executeCoreCommandByName(browser->mainView(), name->string().utf8().data(), value->string().utf8().data());
-}
-
-bool TestRunner::findString(JSContextRef context, JSStringRef target, JSObjectRef optionsArray)
-{
-    JSRetainPtr<JSStringRef> lengthPropertyName(Adopt, JSStringCreateWithUTF8CString("length"));
-    JSValueRef lengthValue = JSObjectGetProperty(context, optionsArray, lengthPropertyName.get(), 0);
-    if (!JSValueIsNumber(context, lengthValue))
-        return false;
-
-    WebCore::FindOptions options = 0;
-
-    const size_t length = static_cast<size_t>(JSValueToNumber(context, lengthValue, 0));
-    for (size_t i = 0; i < length; ++i) {
-        JSValueRef value = JSObjectGetPropertyAtIndex(context, optionsArray, i, 0);
-        if (!JSValueIsString(context, value))
-            continue;
-
-        JSRetainPtr<JSStringRef> optionName(Adopt, JSValueToStringCopy(context, value, 0));
-
-        if (equals(optionName, "CaseInsensitive"))
-            options |= WebCore::CaseInsensitive;
-        else if (equals(optionName, "AtWordStarts"))
-            options |= WebCore::AtWordStarts;
-        else if (equals(optionName, "TreatMedialCapitalAsWordStart"))
-            options |= WebCore::TreatMedialCapitalAsWordStart;
-        else if (equals(optionName, "Backwards"))
-            options |= WebCore::Backwards;
-        else if (equals(optionName, "WrapAround"))
-            options |= WebCore::WrapAround;
-        else if (equals(optionName, "StartInSelection"))
-            options |= WebCore::StartInSelection;
-    }
-
-    return DumpRenderTreeSupportEfl::findString(browser->mainView(), target->string(), options);
-}
-
-bool TestRunner::isCommandEnabled(JSStringRef name)
-{
-    return DumpRenderTreeSupportEfl::isCommandEnabled(browser->mainView(), name->string().utf8().data());
-}
-
-void TestRunner::setCacheModel(int cacheModel)
-{
-    unsigned int cacheTotalCapacity;
-    unsigned int cacheMinDeadCapacity;
-    unsigned int cacheMaxDeadCapacity;
-    double deadDecodedDataDeletionInterval;
-    unsigned int pageCacheCapacity;
-
-    // These constants are derived from the Mac cache model enum in Source/WebKit/mac/WebView/WebPreferences.h.
-    switch (cacheModel) {
-    case WebCacheModelDocumentViewer:
-        pageCacheCapacity = 0;
-        cacheTotalCapacity = 0;
-        cacheMinDeadCapacity = 0;
-        cacheMaxDeadCapacity = 0;
-        deadDecodedDataDeletionInterval = 0;
-        break;
-    case WebCacheModelDocumentBrowser:
-        pageCacheCapacity = 2;
-        cacheTotalCapacity = 16 * 1024 * 1024;
-        cacheMinDeadCapacity = cacheTotalCapacity / 8;
-        cacheMaxDeadCapacity = cacheTotalCapacity / 4;
-        deadDecodedDataDeletionInterval = 0;
-        break;
-    case WebCacheModelPrimaryWebBrowser:
-        pageCacheCapacity = 3;
-        cacheTotalCapacity = 32 * 1024 * 1024;
-        cacheMinDeadCapacity = cacheTotalCapacity / 4;
-        cacheMaxDeadCapacity = cacheTotalCapacity / 2;
-        deadDecodedDataDeletionInterval = 60;
-        break;
-    default:
-        fprintf(stderr, "trying to set an invalid value %d for the Cache model.", cacheModel);
-        return;
-    }
-
-    ewk_settings_object_cache_capacity_set(cacheMinDeadCapacity, cacheMaxDeadCapacity, cacheTotalCapacity);
-    DumpRenderTreeSupportEfl::setDeadDecodedDataDeletionInterval(deadDecodedDataDeletionInterval);
-    ewk_settings_page_cache_capacity_set(pageCacheCapacity);
-}
-
-void TestRunner::setPersistentUserStyleSheetLocation(JSStringRef)
-{
-    notImplemented();
-}
-
-void TestRunner::clearPersistentUserStyleSheet()
-{
-    notImplemented();
-}
-
-void TestRunner::clearAllApplicationCaches()
-{
-    ewk_settings_application_cache_clear();
-}
-
-void TestRunner::setApplicationCacheOriginQuota(unsigned long long quota)
-{
-    Ewk_Security_Origin* origin = ewk_frame_security_origin_get(browser->mainFrame());
-    ewk_security_origin_application_cache_quota_set(origin, quota);
-    ewk_security_origin_free(origin);
-}
-
-void TestRunner::clearApplicationCacheForOrigin(OpaqueJSString* url)
-{
-    Ewk_Security_Origin* origin = ewk_security_origin_new_from_string(url->string().utf8().data());
-    ewk_security_origin_application_cache_clear(origin);
-    ewk_security_origin_free(origin);
-}
-
-long long TestRunner::localStorageDiskUsageForOrigin(JSStringRef)
-{
-    // FIXME: Implement to support getting disk usage in bytes for an origin.
-    notImplemented();
-    return 0;
-}
-
-JSValueRef TestRunner::originsWithApplicationCache(JSContextRef context)
-{
-    // FIXME: Implement to get origins that contain application caches.
-    notImplemented();
-    return JSValueMakeUndefined(context);
-}
-
-long long TestRunner::applicationCacheDiskUsageForOrigin(JSStringRef)
-{
-    notImplemented();
-    return 0;
-}
-
-void TestRunner::clearAllDatabases()
-{
-    ewk_web_database_remove_all();
-}
-
-void TestRunner::setDatabaseQuota(unsigned long long quota)
-{
-    Ewk_Security_Origin* origin = ewk_frame_security_origin_get(browser->mainFrame());
-    ewk_security_origin_web_database_quota_set(origin, quota);
-    ewk_security_origin_free(origin);
-}
-
-JSValueRef TestRunner::originsWithLocalStorage(JSContextRef context)
-{
-    notImplemented();
-    return JSValueMakeUndefined(context);
-}
-
-void TestRunner::deleteAllLocalStorage()
-{
-    notImplemented();
-}
-
-void TestRunner::deleteLocalStorageForOrigin(JSStringRef)
-{
-    notImplemented();
-}
-
-void TestRunner::observeStorageTrackerNotifications(unsigned)
-{
-    notImplemented();
-}
-
-void TestRunner::syncLocalStorage()
-{
-    notImplemented();
-}
-
-void TestRunner::setDomainRelaxationForbiddenForURLScheme(bool forbidden, JSStringRef scheme)
-{
-    DumpRenderTreeSupportEfl::setDomainRelaxationForbiddenForURLScheme(forbidden, scheme->string());
-}
-
-void TestRunner::goBack()
-{
-    ewk_frame_back(browser->mainFrame());
-}
-
-void TestRunner::setDefersLoading(bool defers)
-{
-    DumpRenderTreeSupportEfl::setDefersLoading(browser->mainView(), defers);
-}
-
-void TestRunner::setAppCacheMaximumSize(unsigned long long size)
-{
-    ewk_settings_application_cache_max_quota_set(size);
-}
-
-static inline bool toBool(JSStringRef value)
-{
-    return equals(value, "true") || equals(value, "1");
-}
-
-static inline int toInt(JSStringRef value)
-{
-    return atoi(value->string().utf8().data());
-}
-
-void TestRunner::overridePreference(JSStringRef key, JSStringRef value)
-{
-    if (equals(key, "WebKitJavaScriptEnabled"))
-        ewk_view_setting_enable_scripts_set(browser->mainView(), toBool(value));
-    else if (equals(key, "WebKitDefaultFontSize"))
-        ewk_view_setting_font_default_size_set(browser->mainView(), toInt(value));
-    else if (equals(key, "WebKitMinimumFontSize"))
-        ewk_view_setting_font_minimum_size_set(browser->mainView(), toInt(value));
-    else if (equals(key, "WebKitPluginsEnabled"))
-        ewk_view_setting_enable_plugins_set(browser->mainView(), toBool(value));
-    else if (equals(key, "WebKitWebGLEnabled"))
-        ewk_view_setting_enable_webgl_set(browser->mainView(), toBool(value));
-    else if (equals(key, "WebKitEnableCaretBrowsing"))
-        ewk_view_setting_caret_browsing_set(browser->mainView(), toBool(value));
-    else if (equals(key, "WebKitUsesPageCachePreferenceKey"))
-        ewk_view_setting_page_cache_set(browser->mainView(), toBool(value));
-    else if (equals(key, "WebKitHyperlinkAuditingEnabled"))
-        ewk_view_setting_enable_hyperlink_auditing_set(browser->mainView(), toBool(value));
-    else if (equals(key, "WebKitTabToLinksPreferenceKey"))
-        ewk_view_setting_include_links_in_focus_chain_set(browser->mainView(), toBool(value));
-    else if (equals(key, "WebKitOfflineWebApplicationCacheEnabled"))
-        ewk_view_setting_application_cache_set(browser->mainView(), toBool(value));
-    else if (equals(key, "WebKitLoadSiteIconsKey"))
-        DumpRenderTreeSupportEfl::setLoadsSiteIconsIgnoringImageLoadingSetting(browser->mainView(), toBool(value));
-    else if (equals(key, "WebKitCSSGridLayoutEnabled"))
-        DumpRenderTreeSupportEfl::setCSSGridLayoutEnabled(browser->mainView(), toBool(value));
-    else if (equals(key, "WebKitCSSRegionsEnabled"))
-        DumpRenderTreeSupportEfl::setCSSRegionsEnabled(browser->mainView(), toBool(value));
-    else if (equals(key, "WebKitWebAudioEnabled"))
-        ewk_view_setting_web_audio_set(browser->mainView(), toBool(value));
-    else if (equals(key, "WebKitDisplayImagesKey"))
-        ewk_view_setting_auto_load_images_set(browser->mainView(), toBool(value));
-    else
-        fprintf(stderr, "TestRunner::overridePreference tried to override unknown preference '%s'.\n", value->string().utf8().data());
-}
-
-void TestRunner::addUserScript(JSStringRef source, bool runAtStart, bool allFrames)
-{
-    DumpRenderTreeSupportEfl::addUserScript(browser->mainView(), source->string(), runAtStart, allFrames);
-}
-
-void TestRunner::addUserStyleSheet(JSStringRef source, bool allFrames)
-{
-    DumpRenderTreeSupportEfl::addUserStyleSheet(browser->mainView(), source->string(), allFrames);
-}
-
-void TestRunner::setDeveloperExtrasEnabled(bool enabled)
-{
-    ewk_view_setting_enable_developer_extras_set(browser->mainView(), enabled);
-}
-
-void TestRunner::showWebInspector()
-{
-    ewk_view_inspector_show(browser->mainView());
-    browser->waitInspectorLoadFinished();
-}
-
-void TestRunner::closeWebInspector()
-{
-    ewk_view_inspector_close(browser->mainView());
-}
-
-void TestRunner::evaluateInWebInspector(long callId, JSStringRef script)
-{
-    DumpRenderTreeSupportEfl::evaluateInWebInspector(browser->mainView(), callId, script->string());
-}
-
-void TestRunner::evaluateScriptInIsolatedWorldAndReturnValue(unsigned, JSObjectRef, JSStringRef)
-{
-    notImplemented();
-}
-
-void TestRunner::evaluateScriptInIsolatedWorld(unsigned worldID, JSObjectRef globalObject, JSStringRef script)
-{
-    DumpRenderTreeSupportEfl::evaluateScriptInIsolatedWorld(browser->mainFrame(), worldID, globalObject, script->string());
-}
-
-void TestRunner::removeAllVisitedLinks()
-{
-    Ewk_History* history = ewk_view_history_get(browser->mainView());
-    if (!history)
-        return;
-
-    ewk_history_clear(history);
-}
-
-bool TestRunner::callShouldCloseOnWebView()
-{
-    return DumpRenderTreeSupportEfl::callShouldCloseOnWebView(browser->mainFrame());
-}
-
-void TestRunner::apiTestNewWindowDataLoadBaseURL(JSStringRef, JSStringRef)
-{
-    notImplemented();
-}
-
-void TestRunner::apiTestGoToCurrentBackForwardItem()
-{
-    notImplemented();
-}
-
-void TestRunner::setWebViewEditable(bool)
-{
-    ewk_frame_editable_set(browser->mainFrame(), EINA_TRUE);
-}
-
-void TestRunner::authenticateSession(JSStringRef, JSStringRef, JSStringRef)
-{
-    notImplemented();
-}
-
-void TestRunner::abortModal()
-{
-    notImplemented();
-}
-
-void TestRunner::setSerializeHTTPLoads(bool serialize)
-{
-    DumpRenderTreeSupportEfl::setSerializeHTTPLoads(serialize);
-}
-
-void TestRunner::setTextDirection(JSStringRef direction)
-{
-    Ewk_Text_Direction ewkDirection;
-    if (JSStringIsEqualToUTF8CString(direction, "auto"))
-        ewkDirection = EWK_TEXT_DIRECTION_DEFAULT;
-    else if (JSStringIsEqualToUTF8CString(direction, "rtl"))
-        ewkDirection = EWK_TEXT_DIRECTION_RIGHT_TO_LEFT;
-    else if (JSStringIsEqualToUTF8CString(direction, "ltr"))
-        ewkDirection = EWK_TEXT_DIRECTION_LEFT_TO_RIGHT;
-    else {
-        fprintf(stderr, "TestRunner::setTextDirection called with unknown direction: '%s'.\n", direction->string().utf8().data());
-        return;
-    }
-
-    ewk_view_text_direction_set(browser->mainView(), ewkDirection);
-}
-
-void TestRunner::addChromeInputField()
-{
-    notImplemented();
-}
-
-void TestRunner::removeChromeInputField()
-{
-    notImplemented();
-}
-
-void TestRunner::focusWebView()
-{
-    notImplemented();
-}
-
-void TestRunner::setBackingScaleFactor(double)
-{
-    notImplemented();
-}
-
-void TestRunner::grantWebNotificationPermission(JSStringRef origin)
-{
-}
-
-void TestRunner::denyWebNotificationPermission(JSStringRef jsOrigin)
-{
-}
-
-void TestRunner::removeAllWebNotificationPermissions()
-{
-}
-
-void TestRunner::simulateWebNotificationClick(JSValueRef jsNotification)
-{
-}
-
-void TestRunner::simulateLegacyWebNotificationClick(JSStringRef title)
-{
-}
-
-void TestRunner::resetPageVisibility()
-{
-    ewk_view_visibility_state_set(browser->mainView(), EWK_PAGE_VISIBILITY_STATE_VISIBLE, true);
-}
-
-void TestRunner::setPageVisibility(const char* visibility)
-{
-    String newVisibility(visibility);
-    if (newVisibility == "visible")
-        ewk_view_visibility_state_set(browser->mainView(), EWK_PAGE_VISIBILITY_STATE_VISIBLE, false);
-    else if (newVisibility == "hidden")
-        ewk_view_visibility_state_set(browser->mainView(), EWK_PAGE_VISIBILITY_STATE_HIDDEN, false);
-    else if (newVisibility == "prerender")
-        ewk_view_visibility_state_set(browser->mainView(), EWK_PAGE_VISIBILITY_STATE_PRERENDER, false);
-    else if (newVisibility == "preview")
-        ewk_view_visibility_state_set(browser->mainView(), EWK_PAGE_VISIBILITY_STATE_PREVIEW, false);
-}
-
-void TestRunner::setAutomaticLinkDetectionEnabled(bool)
-{
-    notImplemented();
-}
-
-void TestRunner::setStorageDatabaseIdleInterval(double)
-{
-    notImplemented();
-}
-
-void TestRunner::closeIdleLocalStorageDatabases()
-{
-    notImplemented();
-}
-
-JSRetainPtr<JSStringRef> TestRunner::platformName() const
-{
-    JSRetainPtr<JSStringRef> platformName(Adopt, JSStringCreateWithUTF8CString("efl"));
-    return platformName;
-}
diff --git a/Tools/DumpRenderTree/efl/TextInputController.cpp b/Tools/DumpRenderTree/efl/TextInputController.cpp
deleted file mode 100644
index 62b6d6b..0000000
--- a/Tools/DumpRenderTree/efl/TextInputController.cpp
+++ /dev/null
@@ -1,178 +0,0 @@
-/*
- * Copyright (C) 2010 Google Inc. All rights reserved.
- * Copyright (C) 2011 Igalia S.L.
- * Copyright (C) 2012 Samsung Electronics
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "TextInputController.h"
-
-#include "DumpRenderTree.h"
-#include "DumpRenderTreeChrome.h"
-#include "WebCoreSupport/DumpRenderTreeSupportEfl.h"
-#include <JavaScriptCore/JSObjectRef.h>
-#include <JavaScriptCore/JSRetainPtr.h>
-#include <JavaScriptCore/JSStringRef.h>
-#include <JavaScriptCore/OpaqueJSString.h>
-
-static JSValueRef setMarkedTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (!browser->mainView() || argumentCount < 3)
-        return JSValueMakeUndefined(context);
-
-    JSStringRef string = JSValueToStringCopy(context, arguments[0], exception);
-
-    size_t bufferSize = JSStringGetMaximumUTF8CStringSize(string);
-    char* text = new char[bufferSize];
-    JSStringGetUTF8CString(string, text, bufferSize);
-    JSStringRelease(string);
-
-    int start = static_cast<int>(JSValueToNumber(context, arguments[1], exception));
-    int length = static_cast<int>(JSValueToNumber(context, arguments[2], exception));
-
-    DumpRenderTreeSupportEfl::setComposition(browser->mainView(), text, start, length);
-
-    delete[] text;
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef hasMarkedTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (!browser->mainView())
-        return JSValueMakeUndefined(context);
-
-    return JSValueMakeBoolean(context, DumpRenderTreeSupportEfl::hasComposition(browser->mainView()));
-}
-
-static JSValueRef markedRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (!browser->mainView())
-        return JSValueMakeUndefined(context);
-
-    int start, length;
-    if (!DumpRenderTreeSupportEfl::compositionRange(browser->mainView(), &start, &length))
-        return JSValueMakeUndefined(context);
-
-    JSValueRef arrayValues[2];
-    arrayValues[0] = JSValueMakeNumber(context, start);
-    arrayValues[1] = JSValueMakeNumber(context, length);
-    JSObjectRef arrayObject = JSObjectMakeArray(context, 2, arrayValues, exception);
-    return arrayObject;
-}
-
-static JSValueRef insertTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (!browser->mainView() || argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSStringRef string = JSValueToStringCopy(context, arguments[0], exception);
-
-    size_t bufferSize = JSStringGetMaximumUTF8CStringSize(string);
-    char* text = new char[bufferSize];
-    JSStringGetUTF8CString(string, text, bufferSize);
-    JSStringRelease(string);
-
-    DumpRenderTreeSupportEfl::confirmComposition(browser->mainView(), text);
-
-    delete[] text;
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef unmarkTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (!browser->mainView())
-        return JSValueMakeUndefined(context);
-
-    DumpRenderTreeSupportEfl::confirmComposition(browser->mainView(), 0);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef firstRectForCharacterRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (!browser->mainView() || argumentCount < 2)
-        return JSValueMakeUndefined(context);
-
-    int location = static_cast<int>(JSValueToNumber(context, arguments[0], exception));
-    int length = static_cast<int>(JSValueToNumber(context, arguments[1], exception));
-
-    WebCore::IntRect rect = DumpRenderTreeSupportEfl::firstRectForCharacterRange(browser->mainView(), location, length);
-
-    JSValueRef arrayValues[4];
-    arrayValues[0] = JSValueMakeNumber(context, rect.x());
-    arrayValues[1] = JSValueMakeNumber(context, rect.y());
-    arrayValues[2] = JSValueMakeNumber(context, rect.width());
-    arrayValues[3] = JSValueMakeNumber(context, rect.height());
-    JSObjectRef arrayObject = JSObjectMakeArray(context, 4, arrayValues, exception);
-    return arrayObject;
-}
-
-static JSValueRef selectedRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (!browser->mainView())
-        return JSValueMakeUndefined(context);
-
-    int start, length;
-    if (!DumpRenderTreeSupportEfl::selectedRange(browser->mainView(), &start, &length))
-        return JSValueMakeUndefined(context);
-
-    JSValueRef arrayValues[2];
-    arrayValues[0] = JSValueMakeNumber(context, start);
-    arrayValues[1] = JSValueMakeNumber(context, length);
-    JSObjectRef arrayObject = JSObjectMakeArray(context, 2, arrayValues, exception);
-    return arrayObject;
-}
-
-static JSStaticFunction staticFunctions[] = {
-    { "setMarkedText", setMarkedTextCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "hasMarkedText", hasMarkedTextCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "markedRange", markedRangeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "insertText", insertTextCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "unmarkText", unmarkTextCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "firstRectForCharacterRange", firstRectForCharacterRangeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "selectedRange", selectedRangeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { 0, 0, 0 }
-};
-
-static JSClassRef getClass(JSContextRef context)
-{
-    static JSClassRef textInputControllerClass = 0;
-
-    if (!textInputControllerClass) {
-        JSClassDefinition classDefinition = {
-                0, 0, 0, 0, 0, 0,
-                0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
-        classDefinition.staticFunctions = staticFunctions;
-
-        textInputControllerClass = JSClassCreate(&classDefinition);
-    }
-
-    return textInputControllerClass;
-}
-
-JSObjectRef makeTextInputController(JSContextRef context)
-{
-    return JSObjectMake(context, getClass(context), 0);
-}
-
diff --git a/Tools/DumpRenderTree/efl/TextInputController.h b/Tools/DumpRenderTree/efl/TextInputController.h
deleted file mode 100644
index 5ee2719..0000000
--- a/Tools/DumpRenderTree/efl/TextInputController.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * Copyright (C) 2010 Google Inc. All rights reserved.
- * Copyright (C) 2011 Igalia S.L.
- * Copyright (C) 2012 Samsung Electronics
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef TextInputController_h
-#define TextInputController_h
-
-typedef const struct OpaqueJSContext* JSContextRef;
-typedef struct OpaqueJSValue* JSObjectRef;
-
-JSObjectRef makeTextInputController(JSContextRef);
-
-#endif
diff --git a/Tools/DumpRenderTree/efl/WorkQueueItemEfl.cpp b/Tools/DumpRenderTree/efl/WorkQueueItemEfl.cpp
deleted file mode 100644
index 5ffec29..0000000
--- a/Tools/DumpRenderTree/efl/WorkQueueItemEfl.cpp
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * Copyright (C) 2007 Alp Toker <alp@atoker.com>
- * Copyright (C) 2011 ProFUSION Embedded Systems
- * Copyright (C) 2011 Samsung Electronics
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this library; see the file COPYING.LIB.  If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-#include "config.h"
-#include "WorkQueueItem.h"
-
-#include "DumpRenderTree.h"
-#include "DumpRenderTreeChrome.h"
-
-#include <EWebKit.h>
-#include <JavaScriptCore/JSStringRef.h>
-#include <JavaScriptCore/OpaqueJSString.h>
-#include <wtf/text/CString.h>
-#include <wtf/text/WTFString.h>
-
-bool LoadItem::invoke() const
-{
-    Evas_Object* targetFrame;
-
-    if (!m_target->length())
-        targetFrame = browser->mainFrame();
-    else
-        targetFrame = ewk_frame_child_find(browser->mainFrame(), m_target->string().utf8().data());
-
-    ewk_frame_uri_set(targetFrame, m_url->string().utf8().data());
-
-    return true;
-}
-
-bool LoadHTMLStringItem::invoke() const
-{
-    if (!m_unreachableURL->length())
-        ewk_frame_contents_set(browser->mainFrame(), m_content->string().utf8().data(), 0, 0, 0, m_baseURL->string().utf8().data());
-    else
-        ewk_frame_contents_alternate_set(browser->mainFrame(), m_content->string().utf8().data(), 0, 0, 0, m_baseURL->string().utf8().data(), m_unreachableURL->string().utf8().data());
-
-    return true;
-}
-
-bool ReloadItem::invoke() const
-{
-    ewk_view_reload(browser->mainView());
-    return true;
-}
-
-bool ScriptItem::invoke() const
-{
-    return ewk_frame_script_execute(browser->mainFrame(), m_script->string().utf8().data());
-}
-
-bool BackForwardItem::invoke() const
-{
-    if (m_howFar == 1)
-        ewk_view_forward(browser->mainView());
-    else if (m_howFar == -1)
-        ewk_view_back(browser->mainView());
-    else
-        ewk_view_navigate(browser->mainView(), m_howFar);
-
-    return true;
-}
diff --git a/Tools/DumpRenderTree/gtk/AccessibilityControllerGtk.cpp b/Tools/DumpRenderTree/gtk/AccessibilityControllerGtk.cpp
deleted file mode 100644
index d89a8d2..0000000
--- a/Tools/DumpRenderTree/gtk/AccessibilityControllerGtk.cpp
+++ /dev/null
@@ -1,74 +0,0 @@
-/*
- * Copyright (C) 2008, 2009, 2010 Apple Inc. All Rights Reserved.
- * Copyright (C) 2009 Jan Michael Alonzo
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "AccessibilityController.h"
-
-#include "AccessibilityCallbacks.h"
-#include "AccessibilityUIElement.h"
-#include "DumpRenderTree.h"
-#include "WebCoreSupport/DumpRenderTreeSupportGtk.h"
-
-#include <atk/atk.h>
-#include <gtk/gtk.h>
-#include <webkit/webkit.h>
-#include <wtf/gobject/GOwnPtr.h>
-
-AccessibilityUIElement AccessibilityController::focusedElement()
-{
-    AtkObject* accessible =  DumpRenderTreeSupportGtk::getFocusedAccessibleElement(mainFrame);
-    if (!accessible)
-        return 0;
-
-    return AccessibilityUIElement(accessible);
-}
-
-AccessibilityUIElement AccessibilityController::rootElement()
-{
-    AtkObject* accessible = DumpRenderTreeSupportGtk::getRootAccessibleElement(mainFrame);
-    if (!accessible)
-        return 0;
-
-    return AccessibilityUIElement(accessible);
-}
-
-AccessibilityUIElement AccessibilityController::accessibleElementById(JSStringRef id)
-{
-    AtkObject* root = DumpRenderTreeSupportGtk::getRootAccessibleElement(mainFrame);
-    if (!root)
-        return 0;
-
-    size_t bufferSize = JSStringGetMaximumUTF8CStringSize(id);
-    GOwnPtr<gchar> idBuffer(static_cast<gchar*>(g_malloc(bufferSize)));
-    JSStringGetUTF8CString(id, idBuffer.get(), bufferSize);
-
-    AtkObject* result = childElementById(root, idBuffer.get());
-    if (ATK_IS_OBJECT(result))
-        return AccessibilityUIElement(result);
-
-    return 0;
-
-}
diff --git a/Tools/DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp b/Tools/DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp
deleted file mode 100644
index 30f7b64..0000000
--- a/Tools/DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
- * Copyright (C) 2008 Apple Inc. All Rights Reserved.
- * Copyright (C) 2009 Jan Michael Alonzo
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#include "config.h"
-#include "AccessibilityUIElement.h"
-
-#include "WebCoreSupport/DumpRenderTreeSupportGtk.h"
-#include <JavaScriptCore/JSStringRef.h>
-#include <atk/atk.h>
-#include <gtk/gtk.h>
-#include <wtf/Assertions.h>
-#include <wtf/gobject/GOwnPtr.h>
-#include <wtf/gobject/GRefPtr.h>
-#include <wtf/text/WTFString.h>
-#include <wtf/unicode/CharacterNames.h>
-
-JSStringRef AccessibilityUIElement::helpText() const
-{
-    if (!m_element)
-        return JSStringCreateWithCharacters(0, 0);
-
-    ASSERT(ATK_IS_OBJECT(m_element));
-
-    CString helpText = DumpRenderTreeSupportGtk::accessibilityHelpText(ATK_OBJECT(m_element));
-    GOwnPtr<gchar> axHelpText(g_strdup_printf("AXHelp: %s", helpText.data()));
-    return JSStringCreateWithUTF8CString(axHelpText.get());
-}
diff --git a/Tools/DumpRenderTree/gtk/DumpRenderTree.cpp b/Tools/DumpRenderTree/gtk/DumpRenderTree.cpp
deleted file mode 100644
index cee461c..0000000
--- a/Tools/DumpRenderTree/gtk/DumpRenderTree.cpp
+++ /dev/null
@@ -1,1526 +0,0 @@
-/*
- * Copyright (C) 2007 Eric Seidel <eric@webkit.org>
- * Copyright (C) 2008 Alp Toker <alp@nuanti.com>
- * Copyright (C) 2009 Jan Alonzo <jmalonzo@gmail.com>
- * Copyright (C) 2010, 2011 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "DumpRenderTree.h"
-
-#include "AccessibilityController.h"
-#include "EditingCallbacks.h"
-#include "EventSender.h"
-#include "GCController.h"
-#include "PixelDumpSupport.h"
-#include "SelfScrollingWebKitWebView.h"
-#include "TestRunner.h"
-#include "TextInputController.h"
-#include "WebCoreSupport/DumpRenderTreeSupportGtk.h"
-#include "WebCoreTestSupport.h"
-#include "WorkQueue.h"
-#include "WorkQueueItem.h"
-#include <JavaScriptCore/JavaScript.h>
-#include <cassert>
-#include <cstdlib>
-#include <cstring>
-#include <getopt.h>
-#include <gtk/gtk.h>
-#include <locale.h>
-#include <webkit/webkit.h>
-#include <wtf/Assertions.h>
-#include <wtf/gobject/GOwnPtr.h>
-#include <wtf/gobject/GlibUtilities.h>
-
-#if PLATFORM(X11)
-#include <fontconfig/fontconfig.h>
-#endif
-
-
-using namespace std;
-
-extern "C" {
-// This API is not yet public.
-extern gchar* webkit_web_history_item_get_target(WebKitWebHistoryItem*);
-extern gboolean webkit_web_history_item_is_target_item(WebKitWebHistoryItem*);
-extern GList* webkit_web_history_item_get_children(WebKitWebHistoryItem*);
-extern void webkit_web_settings_add_extra_plugin_directory(WebKitWebView* view, const gchar* directory);
-extern gchar* webkit_web_frame_get_response_mime_type(WebKitWebFrame* frame);
-}
-
-volatile bool done;
-static bool printSeparators;
-static int dumpPixelsForAllTests = false;
-static bool dumpPixelsForCurrentTest;
-static int dumpTree = 1;
-static int useTimeoutWatchdog = 1;
-
-AccessibilityController* axController = 0;
-RefPtr<TestRunner> gTestRunner;
-static GCController* gcController = 0;
-static WebKitWebView* webView;
-static GtkWidget* window;
-static GtkWidget* container;
-static GtkWidget* webInspectorWindow;
-WebKitWebFrame* mainFrame = 0;
-WebKitWebFrame* topLoadingFrame = 0;
-guint waitToDumpWatchdog = 0;
-bool waitForPolicy = false;
-
-// This is a list of opened webviews
-GSList* webViewList = 0;
-
-// current b/f item at the end of the previous test
-static WebKitWebHistoryItem* prevTestBFItem = NULL;
-
-const unsigned historyItemIndent = 8;
-
-static void runTest(const string& inputLine);
-
-static void didRunInsecureContent(WebKitWebFrame*, WebKitSecurityOrigin*, const char* url);
-
-static bool shouldLogFrameLoadDelegates(const string& pathOrURL)
-{
-    return pathOrURL.find("loading/") != string::npos;
-}
-
-static bool shouldOpenWebInspector(const string& pathOrURL)
-{
-    return pathOrURL.find("inspector/") != string::npos;
-}
-
-static bool shouldDumpAsText(const string& pathOrURL)
-{
-    return pathOrURL.find("dumpAsText/") != string::npos;
-}
-
-static bool shouldEnableDeveloperExtras(const string& pathOrURL)
-{
-    return true;
-}
-
-void dumpFrameScrollPosition(WebKitWebFrame* frame)
-{
-    WebKitDOMDocument* document = webkit_web_frame_get_dom_document(frame);
-    if (!document)
-        return;
-
-    WebKitDOMDOMWindow* domWindow = webkit_dom_document_get_default_view(document);
-    if (!domWindow)
-        return;
-
-    glong x = webkit_dom_dom_window_get_page_x_offset(domWindow);
-    glong y = webkit_dom_dom_window_get_page_y_offset(domWindow);
-
-    if (abs(x) > 0 || abs(y) > 0) {
-        if (webkit_web_frame_get_parent(frame))
-            printf("frame '%s' ", webkit_web_frame_get_name(frame));
-        printf("scrolled to %ld,%ld\n", x, y);
-    }
-
-    if (gTestRunner->dumpChildFrameScrollPositions()) {
-        GSList* children = DumpRenderTreeSupportGtk::getFrameChildren(frame);
-        for (GSList* child = children; child; child = g_slist_next(child))
-            dumpFrameScrollPosition(static_cast<WebKitWebFrame*>(child->data));
-        g_slist_free(children);
-    }
-}
-
-void displayWebView()
-{
-    DumpRenderTreeSupportGtk::forceWebViewPaint(webView);
-    DumpRenderTreeSupportGtk::setTracksRepaints(mainFrame, true);
-    DumpRenderTreeSupportGtk::resetTrackedRepaints(mainFrame);
-}
-
-static void appendString(gchar*& target, const gchar* string)
-{
-    gchar* oldString = target;
-    target = g_strconcat(target, string, NULL);
-    g_free(oldString);
-}
-
-static void initializeGtkFontSettings(const char* testURL)
-{
-    GtkSettings* settings = gtk_settings_get_default();
-    if (!settings)
-        return;
-    g_object_set(settings,
-                 "gtk-xft-dpi", 98304, // This is 96 * 1024 or 96 DPI according to the GTK+ docs.
-                 "gtk-xft-antialias", 1,
-                 "gtk-xft-hinting", 0,
-                 "gtk-font-name", "Liberation Sans 12",
-                 "gtk-icon-theme-name", "gnome",
-                 NULL);
-    gdk_screen_set_resolution(gdk_screen_get_default(), 96.0);
-
-    // One test needs subpixel anti-aliasing turned on, but generally we
-    // want all text in other tests to use to grayscale anti-aliasing.
-    if (testURL && strstr(testURL, "xsettings_antialias_settings.html"))
-        g_object_set(settings, "gtk-xft-rgba", "rgb", NULL);
-    else
-        g_object_set(settings, "gtk-xft-rgba", "none", NULL);
-}
-
-CString getTopLevelPath()
-{
-    if (!g_getenv("WEBKIT_TOP_LEVEL"))
-        g_setenv("WEBKIT_TOP_LEVEL", TOP_LEVEL_DIR, FALSE);
-
-    return TOP_LEVEL_DIR;
-}
-
-CString getOutputDir()
-{
-    const char* webkitOutputDir = g_getenv("WEBKITOUTPUTDIR");
-    if (webkitOutputDir)
-        return webkitOutputDir;
-
-    CString topLevelPath = getTopLevelPath();
-    GOwnPtr<char> outputDir(g_build_filename(topLevelPath.data(), "WebKitBuild", NULL));
-    return outputDir.get();
-}
-
-static CString getFontsPath()
-{
-    CString webkitOutputDir = getOutputDir();
-    GOwnPtr<char> fontsPath(g_build_filename(webkitOutputDir.data(), "Dependencies", "Root", "webkitgtk-test-fonts", NULL));
-    if (g_file_test(fontsPath.get(), static_cast<GFileTest>(G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR)))
-        return fontsPath.get();
-
-    // Try alternative fonts path.
-    fontsPath.set(g_build_filename(webkitOutputDir.data(), "webkitgtk-test-fonts", NULL));
-    if (g_file_test(fontsPath.get(), static_cast<GFileTest>(G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR)))
-        return fontsPath.get();
-
-    return CString();
-}
-
-static void initializeFonts(const char* testURL = 0)
-{
-#if PLATFORM(X11)
-    initializeGtkFontSettings(testURL);
-
-    FcInit();
-
-    // If a test resulted a font being added or removed via the @font-face rule, then
-    // we want to reset the FontConfig configuration to prevent it from affecting other tests.
-    static int numFonts = 0;
-    FcFontSet* appFontSet = FcConfigGetFonts(0, FcSetApplication);
-    if (appFontSet && numFonts && appFontSet->nfont == numFonts)
-        return;
-
-    // Load our configuration file, which sets up proper aliases for family
-    // names like sans, serif and monospace.
-    FcConfig* config = FcConfigCreate();
-    GOwnPtr<gchar> fontConfigFilename(g_build_filename(FONTS_CONF_DIR, "fonts.conf", NULL));
-    if (!FcConfigParseAndLoad(config, reinterpret_cast<FcChar8*>(fontConfigFilename.get()), true))
-        g_error("Couldn't load font configuration file from: %s", fontConfigFilename.get());
-
-    CString fontsPath = getFontsPath();
-    if (fontsPath.isNull())
-        g_error("Could not locate test fonts at %s. Is WEBKIT_TOP_LEVEL set?", fontsPath.data());
-
-    GOwnPtr<GDir> fontsDirectory(g_dir_open(fontsPath.data(), 0, 0));
-    while (const char* directoryEntry = g_dir_read_name(fontsDirectory.get())) {
-        if (!g_str_has_suffix(directoryEntry, ".ttf") && !g_str_has_suffix(directoryEntry, ".otf"))
-            continue;
-        GOwnPtr<gchar> fontPath(g_build_filename(fontsPath.data(), directoryEntry, NULL));
-        if (!FcConfigAppFontAddFile(config, reinterpret_cast<const FcChar8*>(fontPath.get())))
-            g_error("Could not load font at %s!", fontPath.get());
-
-    }
-
-    // Ahem is used by many layout tests.
-    GOwnPtr<gchar> ahemFontFilename(g_build_filename(FONTS_CONF_DIR, "AHEM____.TTF", NULL));
-    if (!FcConfigAppFontAddFile(config, reinterpret_cast<FcChar8*>(ahemFontFilename.get())))
-        g_error("Could not load font at %s!", ahemFontFilename.get()); 
-
-    for (int i = 1; i <= 9; i++) {
-        GOwnPtr<gchar> fontFilename(g_strdup_printf("WebKitWeightWatcher%i00.ttf", i));
-        GOwnPtr<gchar> fontPath(g_build_filename(FONTS_CONF_DIR, "..", "..", "fonts", fontFilename.get(), NULL));
-        if (!FcConfigAppFontAddFile(config, reinterpret_cast<FcChar8*>(fontPath.get())))
-            g_error("Could not load font at %s!", fontPath.get()); 
-    }
-
-    // A font with no valid Fontconfig encoding to test https://bugs.webkit.org/show_bug.cgi?id=47452
-    GOwnPtr<gchar> fontWithNoValidEncodingFilename(g_build_filename(FONTS_CONF_DIR, "FontWithNoValidEncoding.fon", NULL));
-    if (!FcConfigAppFontAddFile(config, reinterpret_cast<FcChar8*>(fontWithNoValidEncodingFilename.get())))
-        g_error("Could not load font at %s!", fontWithNoValidEncodingFilename.get()); 
-
-    if (!FcConfigSetCurrent(config))
-        g_error("Could not set the current font configuration!");
-
-    numFonts = FcConfigGetFonts(config, FcSetApplication)->nfont;
-#endif
-}
-
-static gchar* dumpFramesAsText(WebKitWebFrame* frame)
-{
-    gchar* result = 0;
-
-    // Add header for all but the main frame.
-    bool isMainFrame = (webkit_web_view_get_main_frame(webView) == frame);
-
-    CString innerText = DumpRenderTreeSupportGtk::getInnerText(frame);
-    if (isMainFrame)
-        result = g_strdup_printf("%s\n", innerText.data());
-    else {
-        const gchar* frameName = webkit_web_frame_get_name(frame);
-        result = g_strdup_printf("\n--------\nFrame: '%s'\n--------\n%s\n", frameName, innerText.data());
-    }
-
-    if (gTestRunner->dumpChildFramesAsText()) {
-        GSList* children = DumpRenderTreeSupportGtk::getFrameChildren(frame);
-        for (GSList* child = children; child; child = g_slist_next(child)) {
-            GOwnPtr<gchar> childData(dumpFramesAsText(static_cast<WebKitWebFrame*>(child->data)));
-            appendString(result, childData.get());
-        }
-        g_slist_free(children);
-    }
-
-    return result;
-}
-
-static gint compareHistoryItems(gpointer* item1, gpointer* item2)
-{
-    GOwnPtr<gchar> firstItemTarget(webkit_web_history_item_get_target(WEBKIT_WEB_HISTORY_ITEM(item1)));
-    GOwnPtr<gchar> secondItemTarget(webkit_web_history_item_get_target(WEBKIT_WEB_HISTORY_ITEM(item2)));
-    return g_ascii_strcasecmp(firstItemTarget.get(), secondItemTarget.get());
-}
-
-static void dumpHistoryItem(WebKitWebHistoryItem* item, int indent, bool current)
-{
-    ASSERT(item != NULL);
-    int start = 0;
-    g_object_ref(item);
-    if (current) {
-        printf("curr->");
-        start = 6;
-    }
-    for (int i = start; i < indent; i++)
-        putchar(' ');
-
-    // normalize file URLs.
-    const gchar* uri = webkit_web_history_item_get_uri(item);
-    gchar* uriScheme = g_uri_parse_scheme(uri);
-    if (g_strcmp0(uriScheme, "file") == 0) {
-        gchar* pos = g_strstr_len(uri, -1, "/LayoutTests/");
-        if (!pos) {
-            g_free(uriScheme);
-            return;
-        }
-
-        GString* result = g_string_sized_new(strlen(uri));
-        result = g_string_append(result, "(file test):");
-        result = g_string_append(result, pos + strlen("/LayoutTests/"));
-        printf("%s", result->str);
-        g_string_free(result, TRUE);
-    } else
-        printf("%s", uri);
-
-    g_free(uriScheme);
-
-    GOwnPtr<gchar> target(webkit_web_history_item_get_target(item));
-    if (target.get() && strlen(target.get()) > 0)
-        printf(" (in frame \"%s\")", target.get());
-    if (webkit_web_history_item_is_target_item(item))
-        printf("  **nav target**");
-    putchar('\n');
-
-    if (GList* kids = webkit_web_history_item_get_children(item)) {
-        // must sort to eliminate arbitrary result ordering which defeats reproducible testing
-        for (GList* kid = g_list_sort(kids, (GCompareFunc) compareHistoryItems); kid; kid = g_list_next(kid)) {
-            WebKitWebHistoryItem* item = WEBKIT_WEB_HISTORY_ITEM(kid->data);
-            dumpHistoryItem(item, indent + 4, FALSE);
-            g_object_unref(item);
-        }
-        g_list_free(kids);
-    }
-    g_object_unref(item);
-}
-
-static void dumpBackForwardListForWebView(WebKitWebView* view)
-{
-    printf("\n============== Back Forward List ==============\n");
-    WebKitWebBackForwardList* bfList = webkit_web_view_get_back_forward_list(view);
-
-    // Print out all items in the list after prevTestBFItem, which was from the previous test
-    // Gather items from the end of the list, the print them out from oldest to newest
-    GList* itemsToPrint = NULL;
-    gint forwardListCount = webkit_web_back_forward_list_get_forward_length(bfList);
-    for (int i = forwardListCount; i > 0; i--) {
-        WebKitWebHistoryItem* item = webkit_web_back_forward_list_get_nth_item(bfList, i);
-        // something is wrong if the item from the last test is in the forward part of the b/f list
-        ASSERT(item != prevTestBFItem);
-        g_object_ref(item);
-        itemsToPrint = g_list_prepend(itemsToPrint, item);
-    }
-
-    WebKitWebHistoryItem* currentItem = webkit_web_back_forward_list_get_current_item(bfList);
-    g_object_ref(currentItem);
-    itemsToPrint = g_list_prepend(itemsToPrint, currentItem);
-
-    gint backListCount = webkit_web_back_forward_list_get_back_length(bfList);
-    for (int i = -1; i >= -(backListCount); i--) {
-        WebKitWebHistoryItem* item = webkit_web_back_forward_list_get_nth_item(bfList, i);
-        if (item == prevTestBFItem)
-            break;
-        g_object_ref(item);
-        itemsToPrint = g_list_prepend(itemsToPrint, item);
-    }
-
-    for (GList* itemToPrint = itemsToPrint; itemToPrint; itemToPrint = g_list_next(itemToPrint)) {
-        WebKitWebHistoryItem* item = WEBKIT_WEB_HISTORY_ITEM(itemToPrint->data);
-        dumpHistoryItem(item, historyItemIndent, item == currentItem);
-        g_object_unref(item);
-    }
-
-    g_list_free(itemsToPrint);
-    printf("===============================================\n");
-}
-
-static void dumpBackForwardListForAllWebViews()
-{
-    // Dump the back forward list of the main WebView first
-    dumpBackForwardListForWebView(webView);
-
-    // The view list is prepended. Reverse the list so we get the order right.
-    for (GSList* currentView = g_slist_reverse(webViewList); currentView; currentView = g_slist_next(currentView))
-        dumpBackForwardListForWebView(WEBKIT_WEB_VIEW(currentView->data));
-}
-
-void setWaitToDumpWatchdog(guint timer)
-{
-    waitToDumpWatchdog = timer;
-}
-
-bool shouldSetWaitToDumpWatchdog()
-{
-    return !waitToDumpWatchdog && useTimeoutWatchdog;
-}
-
-static void invalidateAnyPreviousWaitToDumpWatchdog()
-{
-    if (waitToDumpWatchdog) {
-        g_source_remove(waitToDumpWatchdog);
-        waitToDumpWatchdog = 0;
-    }
-
-    waitForPolicy = false;
-}
-
-static void resetDefaultsToConsistentValues()
-{
-    WebKitWebSettings* settings = webkit_web_view_get_settings(webView);
-    GOwnPtr<gchar> localStoragePath(g_build_filename(g_get_user_data_dir(), "DumpRenderTreeGtk", "databases", NULL));
-    g_object_set(G_OBJECT(settings),
-                 "enable-private-browsing", FALSE,
-                 "enable-developer-extras", FALSE,
-                 "enable-spell-checking", TRUE,
-                 "enable-html5-database", TRUE,
-                 "enable-html5-local-storage", TRUE,
-                 "html5-local-storage-database-path", localStoragePath.get(),
-                 "enable-xss-auditor", FALSE,
-                 "enable-spatial-navigation", FALSE,
-                 "javascript-can-access-clipboard", TRUE,
-                 "javascript-can-open-windows-automatically", TRUE,
-                 "enable-offline-web-application-cache", TRUE,
-                 "enable-universal-access-from-file-uris", TRUE,
-                 "enable-file-access-from-file-uris", TRUE,
-                 "enable-scripts", TRUE,
-                 "enable-dom-paste", TRUE,
-                 "default-font-family", "Times",
-                 "monospace-font-family", "Courier",
-                 "serif-font-family", "Times",
-                 "sans-serif-font-family", "Helvetica",
-                 "cursive-font-family", "cursive",
-                 "fantasy-font-family", "fantasy",
-                 "default-font-size", 12,
-                 "default-monospace-font-size", 10,
-                 "minimum-font-size", 0,
-                 "enable-caret-browsing", FALSE,
-                 "enable-page-cache", FALSE,
-                 "auto-resize-window", TRUE,
-                 "auto-load-images", TRUE,
-                 "enable-java-applet", FALSE,
-                 "enable-plugins", TRUE,
-                 "enable-hyperlink-auditing", FALSE,
-                 "editing-behavior", WEBKIT_EDITING_BEHAVIOR_UNIX,
-                 "enable-fullscreen", TRUE,
-                 NULL);
-    webkit_web_view_set_settings(webView, settings);
-    webkit_set_cache_model(WEBKIT_CACHE_MODEL_DOCUMENT_BROWSER);
-
-    DumpRenderTreeSupportGtk::clearMainFrameName(mainFrame);
-    DumpRenderTreeSupportGtk::scalePageBy(webView, 1, 0, 0);
-
-    WebKitWebInspector* inspector = webkit_web_view_get_inspector(webView);
-    g_object_set(G_OBJECT(inspector), "javascript-profiling-enabled", FALSE, NULL);
-
-    webkit_web_view_set_zoom_level(webView, 1.0);
-
-    DumpRenderTreeSupportGtk::resetOriginAccessWhiteLists();
-
-    WebKitWebBackForwardList* list = webkit_web_view_get_back_forward_list(webView);
-    webkit_web_back_forward_list_clear(list);
-
-    SoupSession* session = webkit_get_default_session();
-    SoupCookieJar* jar = reinterpret_cast<SoupCookieJar*>(soup_session_get_feature(session, SOUP_TYPE_COOKIE_JAR));
-
-    // We only create the jar when the soup backend needs to do
-    // HTTP. Should we initialize it earlier, perhaps?
-    if (jar)
-        g_object_set(G_OBJECT(jar), SOUP_COOKIE_JAR_ACCEPT_POLICY, SOUP_COOKIE_JAR_ACCEPT_NO_THIRD_PARTY, NULL);
-
-    setlocale(LC_ALL, "");
-
-    DumpRenderTreeSupportGtk::setLinksIncludedInFocusChain(true);
-    webkit_icon_database_set_path(webkit_get_icon_database(), 0);
-    DumpRenderTreeSupportGtk::setDefersLoading(webView, false);
-    DumpRenderTreeSupportGtk::setSerializeHTTPLoads(false);
-
-    if (axController)
-        axController->resetToConsistentState();
-
-    DumpRenderTreeSupportGtk::clearOpener(mainFrame);
-    DumpRenderTreeSupportGtk::setTracksRepaints(mainFrame, false);
-
-    DumpRenderTreeSupportGtk::resetGeolocationClientMock(webView);
-
-    DumpRenderTreeSupportGtk::setCSSGridLayoutEnabled(webView, false);
-    DumpRenderTreeSupportGtk::setCSSRegionsEnabled(webView, true);
-    DumpRenderTreeSupportGtk::setCSSCustomFilterEnabled(webView, false);
-    DumpRenderTreeSupportGtk::setExperimentalContentSecurityPolicyFeaturesEnabled(true);
-    DumpRenderTreeSupportGtk::setSeamlessIFramesEnabled(true);
-    DumpRenderTreeSupportGtk::setShadowDOMEnabled(true);
-    DumpRenderTreeSupportGtk::setStyleScopedEnabled(true);
-
-    if (gTestRunner) {
-        gTestRunner->setAuthenticationPassword("");
-        gTestRunner->setAuthenticationUsername("");
-        gTestRunner->setHandlesAuthenticationChallenges(false);
-    }
-
-    gtk_widget_set_direction(GTK_WIDGET(webView), GTK_TEXT_DIR_NONE);
-}
-
-static bool useLongRunningServerMode(int argc, char *argv[])
-{
-    // This assumes you've already called getopt_long
-    return (argc == optind+1 && !strcmp(argv[optind], "-"));
-}
-
-static void runTestingServerLoop()
-{
-    // When DumpRenderTree runs in server mode, we just wait around for file names
-    // to be passed to us and read each in turn, passing the results back to the client
-    char filenameBuffer[2048];
-    while (fgets(filenameBuffer, sizeof(filenameBuffer), stdin)) {
-        char* newLineCharacter = strchr(filenameBuffer, '\n');
-        if (newLineCharacter)
-            *newLineCharacter = '\0';
-
-        if (!strlen(filenameBuffer))
-            continue;
-
-        runTest(filenameBuffer);
-    }
-}
-
-static void initializeGlobalsFromCommandLineOptions(int argc, char *argv[])
-{
-    struct option options[] = {
-        {"notree", no_argument, &dumpTree, false},
-        {"pixel-tests", no_argument, &dumpPixelsForAllTests, true},
-        {"tree", no_argument, &dumpTree, true},
-        {"no-timeout", no_argument, &useTimeoutWatchdog, false},
-        {NULL, 0, NULL, 0}
-    };
-    
-    int option;
-    while ((option = getopt_long(argc, (char * const *)argv, "", options, NULL)) != -1) {
-        switch (option) {
-        case '?': // unknown or ambiguous option
-        case ':': // missing argument
-            exit(1);
-            break;
-        }
-    }
-}
-
-
-void dump()
-{
-    invalidateAnyPreviousWaitToDumpWatchdog();
-
-    // Grab widget focus before dumping the contents of a widget, in
-    // case it was lost in the course of the test.
-    gtk_widget_grab_focus(GTK_WIDGET(webView));
-
-    if (dumpTree) {
-        char* result = 0;
-        gchar* responseMimeType = webkit_web_frame_get_response_mime_type(mainFrame);
-
-        if (g_str_equal(responseMimeType, "text/plain")) {
-            gTestRunner->setDumpAsText(true);
-            gTestRunner->setGeneratePixelResults(false);
-        }
-        g_free(responseMimeType);
-
-        if (gTestRunner->dumpAsText())
-            result = dumpFramesAsText(mainFrame);
-        else {
-            // Widget resizing is done asynchronously in GTK+. We pump the main
-            // loop here, to flush any pending resize requests. This prevents
-            // timing issues which affect the size of elements in the output.
-            // We only enable this workaround for tests that print the render tree
-            // because this seems to break some dumpAsText tests: see bug 39988
-            // After fixing that test, we should apply this approach to all dumps.
-            while (gtk_events_pending())
-                gtk_main_iteration();
-
-            result = g_strdup(DumpRenderTreeSupportGtk::dumpRenderTree(mainFrame).data());
-        }
-
-        if (!result) {
-            const char* errorMessage;
-            if (gTestRunner->dumpAsText())
-                errorMessage = "[documentElement innerText]";
-            else if (gTestRunner->dumpDOMAsWebArchive())
-                errorMessage = "[[mainFrame DOMDocument] webArchive]";
-            else if (gTestRunner->dumpSourceAsWebArchive())
-                errorMessage = "[[mainFrame dataSource] webArchive]";
-            else
-                errorMessage = "[mainFrame renderTreeAsExternalRepresentation]";
-            printf("ERROR: nil result from %s", errorMessage);
-        } else {
-            printf("%s", result);
-            g_free(result);
-            if (!gTestRunner->dumpAsText() && !gTestRunner->dumpDOMAsWebArchive() && !gTestRunner->dumpSourceAsWebArchive())
-                dumpFrameScrollPosition(mainFrame);
-
-            if (gTestRunner->dumpBackForwardList())
-                dumpBackForwardListForAllWebViews();
-        }
-
-        if (printSeparators) {
-            puts("#EOF"); // terminate the content block
-            fputs("#EOF\n", stderr);
-            fflush(stdout);
-            fflush(stderr);
-        }
-    }
-
-    if (dumpPixelsForCurrentTest
-     && gTestRunner->generatePixelResults()
-     && !gTestRunner->dumpDOMAsWebArchive()
-     && !gTestRunner->dumpSourceAsWebArchive()) {
-        DumpRenderTreeSupportGtk::forceWebViewPaint(webView);
-        dumpWebViewAsPixelsAndCompareWithExpected(gTestRunner->expectedPixelHash());
-    }
-
-    // FIXME: call displayWebView here when we support --paint
-
-    done = true;
-    gtk_main_quit();
-}
-
-static CString temporaryDatabaseDirectory()
-{
-    const char* directoryFromEnvironment = g_getenv("DUMPRENDERTREE_TEMP");
-    if (directoryFromEnvironment)
-        return directoryFromEnvironment;
-    GOwnPtr<char> fallback(g_build_filename(g_get_user_data_dir(), "gtkwebkitdrt", "databases", NULL));
-    return fallback.get();
-}
-
-static void setDefaultsToConsistentStateValuesForTesting()
-{
-    resetDefaultsToConsistentValues();
-
-#if PLATFORM(X11)
-    webkit_web_settings_add_extra_plugin_directory(webView, TEST_PLUGIN_DIR);
-#endif
-
-    webkit_set_web_database_directory_path(temporaryDatabaseDirectory().data());
-
-#if defined(GTK_API_VERSION_2)
-    gtk_rc_parse_string("style \"nix_scrollbar_spacing\"                    "
-                        "{                                                  "
-                        "    GtkScrolledWindow::scrollbar-spacing = 0       "
-                        "}                                                  "
-                        "class \"GtkWidget\" style \"nix_scrollbar_spacing\"");
-
-#else
-    GtkCssProvider* cssProvider = gtk_css_provider_new();
-    gtk_css_provider_load_from_data(cssProvider,
-                                    "@binding-set NoKeyboardNavigation {        "
-                                    "   unbind \"<shift>F10\";                  "
-                                    "}                                          "
-                                    " * {                                       "
-                                    "   -GtkScrolledWindow-scrollbar-spacing: 0;"
-                                    "   gtk-key-bindings: NoKeyboardNavigation; "
-                                    "}                                          ",
-                                    -1, 0);
-    gtk_style_context_add_provider_for_screen(gdk_display_get_default_screen(gdk_display_get_default()),
-                                              GTK_STYLE_PROVIDER(cssProvider),
-                                              GTK_STYLE_PROVIDER_PRIORITY_APPLICATION);
-    g_object_unref(cssProvider);
-#endif
-}
-
-static void sendPixelResultsEOF()
-{
-    puts("#EOF");
-
-    fflush(stdout);
-    fflush(stderr);
-}
-
-static void runTest(const string& inputLine)
-{
-    ASSERT(!inputLine.empty());
-
-    TestCommand command = parseInputLine(inputLine);
-    string& testURL = command.pathOrURL;
-    dumpPixelsForCurrentTest = command.shouldDumpPixels || dumpPixelsForAllTests;
-
-    // Convert the path into a full file URL if it does not look
-    // like an HTTP/S URL (doesn't start with http:// or https://).
-    if (testURL.find("http://") && testURL.find("https://")) {
-        GFile* testFile = g_file_new_for_path(testURL.c_str());
-        gchar* testURLCString = g_file_get_uri(testFile);
-        testURL = testURLCString;
-        g_free(testURLCString);
-        g_object_unref(testFile);
-    }
-
-    resetDefaultsToConsistentValues();
-
-    gTestRunner = TestRunner::create(testURL, command.expectedPixelHash);
-    topLoadingFrame = 0;
-    done = false;
-
-    gTestRunner->setIconDatabaseEnabled(false);
-
-    if (shouldLogFrameLoadDelegates(testURL))
-        gTestRunner->setDumpFrameLoadCallbacks(true);
-
-    if (shouldEnableDeveloperExtras(testURL)) {
-        gTestRunner->setDeveloperExtrasEnabled(true);
-        if (shouldOpenWebInspector(testURL))
-            gTestRunner->showWebInspector();
-        if (shouldDumpAsText(testURL)) {
-            gTestRunner->setDumpAsText(true);
-            gTestRunner->setGeneratePixelResults(false);
-        }
-    }
-
-    WorkQueue::shared()->clear();
-    WorkQueue::shared()->setFrozen(false);
-
-    bool isSVGW3CTest = (testURL.find("svg/W3C-SVG-1.1") != string::npos);
-    GtkAllocation size;
-    size.x = size.y = 0;
-    size.width = isSVGW3CTest ? 480 : TestRunner::maxViewWidth;
-    size.height = isSVGW3CTest ? 360 : TestRunner::maxViewHeight;
-    gtk_window_resize(GTK_WINDOW(window), size.width, size.height);
-    gtk_widget_size_allocate(container, &size);
-
-    if (prevTestBFItem)
-        g_object_unref(prevTestBFItem);
-    WebKitWebBackForwardList* bfList = webkit_web_view_get_back_forward_list(webView);
-    prevTestBFItem = webkit_web_back_forward_list_get_current_item(bfList);
-    if (prevTestBFItem)
-        g_object_ref(prevTestBFItem);
-
-    initializeFonts(testURL.c_str());
-
-    // Focus the web view before loading the test to avoid focusing problems
-    gtk_widget_grab_focus(GTK_WIDGET(webView));
-    webkit_web_view_open(webView, testURL.c_str());
-
-    gtk_main();
-
-    // If developer extras enabled Web Inspector may have been open by the test.
-    if (shouldEnableDeveloperExtras(testURL)) {
-        gTestRunner->closeWebInspector();
-        gTestRunner->setDeveloperExtrasEnabled(false);
-    }
-
-    // Also check if we still have opened webViews and free them.
-    if (gTestRunner->closeRemainingWindowsWhenComplete() || webViewList) {
-        while (webViewList) {
-            g_object_unref(WEBKIT_WEB_VIEW(webViewList->data));
-            webViewList = g_slist_next(webViewList);
-        }
-        g_slist_free(webViewList);
-        webViewList = 0;
-    }
-
-    WebCoreTestSupport::resetInternalsObject(webkit_web_frame_get_global_context(mainFrame));
-    DumpRenderTreeSupportGtk::clearMemoryCache();
-    DumpRenderTreeSupportGtk::clearApplicationCache();
-
-    // A blank load seems to be necessary to reset state after certain tests.
-    webkit_web_view_open(webView, "about:blank");
-
-    gTestRunner.clear();
-
-    // terminate the (possibly empty) pixels block after all the state reset
-    sendPixelResultsEOF();
-}
-
-void webViewLoadStarted(WebKitWebView* view, WebKitWebFrame* frame, void*)
-{
-    // Make sure we only set this once per test.  If it gets cleared, and then set again, we might
-    // end up doing two dumps for one test.
-    if (!topLoadingFrame && !done)
-        topLoadingFrame = frame;
-}
-
-static gboolean processWork(void* data)
-{
-    // if we finish all the commands, we're ready to dump state
-    if (WorkQueue::shared()->processWork() && !gTestRunner->waitToDump())
-        dump();
-
-    return FALSE;
-}
-
-static char* getFrameNameSuitableForTestResult(WebKitWebView* view, WebKitWebFrame* frame)
-{
-    char* frameName = g_strdup(webkit_web_frame_get_name(frame));
-
-    if (frame == webkit_web_view_get_main_frame(view)) {
-        // This is a bit strange. Shouldn't web_frame_get_name return NULL?
-        if (frameName && (frameName[0] != '\0')) {
-            char* tmp = g_strdup_printf("main frame \"%s\"", frameName);
-            g_free(frameName);
-            frameName = tmp;
-        } else {
-            g_free(frameName);
-            frameName = g_strdup("main frame");
-        }
-    } else if (!frameName || (frameName[0] == '\0')) {
-        g_free(frameName);
-        frameName = g_strdup("frame (anonymous)");
-    } else {
-        char* tmp = g_strdup_printf("frame \"%s\"", frameName);
-        g_free(frameName);
-        frameName = tmp;
-    }
-
-    return frameName;
-}
-
-static void webViewLoadFinished(WebKitWebView* view, WebKitWebFrame* frame, void*)
-{
-    // The deprecated "load-finished" signal is triggered by postProgressFinishedNotification(),
-    // so we can use it here in the DRT to provide the correct dump.
-    if (frame != topLoadingFrame)
-        return;
-    if (gTestRunner->dumpProgressFinishedCallback())
-        printf("postProgressFinishedNotification\n");
-}
-
-static gboolean webViewLoadError(WebKitWebView*, WebKitWebFrame*, gchar*, gpointer, gpointer)
-{
-    return TRUE; // Return true here to disable the default error page.
-}
-
-static void webViewDocumentLoadFinished(WebKitWebView* view, WebKitWebFrame* frame, void*)
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks()) {
-        char* frameName = getFrameNameSuitableForTestResult(view, frame);
-        printf("%s - didFinishDocumentLoadForFrame\n", frameName);
-        g_free(frameName);
-    } else if (!done) {
-        guint pendingFrameUnloadEvents = DumpRenderTreeSupportGtk::getPendingUnloadEventCount(frame);
-        if (pendingFrameUnloadEvents) {
-            char* frameName = getFrameNameSuitableForTestResult(view, frame);
-            printf("%s - has %u onunload handler(s)\n", frameName, pendingFrameUnloadEvents);
-            g_free(frameName);
-        }
-    }
-}
-
-static void webViewOnloadEvent(WebKitWebView* view, WebKitWebFrame* frame, void*)
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks()) {
-        char* frameName = getFrameNameSuitableForTestResult(view, frame);
-        printf("%s - didHandleOnloadEventsForFrame\n", frameName);
-        g_free(frameName);
-    }
-}
-
-static void addControllerToWindow(JSContextRef context, JSObjectRef windowObject, const char* controllerName, JSValueRef controller)
-{
-    JSStringRef controllerNameStr = JSStringCreateWithUTF8CString(controllerName);
-    JSObjectSetProperty(context, windowObject, controllerNameStr, controller, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, 0);
-    JSStringRelease(controllerNameStr); 
-}
-
-static void webViewWindowObjectCleared(WebKitWebView* view, WebKitWebFrame* frame, JSGlobalContextRef context, JSObjectRef windowObject, gpointer data)
-{
-    JSValueRef exception = 0;
-    ASSERT(gTestRunner);
-
-    gTestRunner->makeWindowObject(context, windowObject, &exception);
-    ASSERT(!exception);
-
-    gcController->makeWindowObject(context, windowObject, &exception);
-    ASSERT(!exception);
-
-    axController->makeWindowObject(context, windowObject, &exception);
-    ASSERT(!exception);
-
-    addControllerToWindow(context, windowObject, "eventSender", makeEventSender(context, !webkit_web_frame_get_parent(frame)));
-    addControllerToWindow(context, windowObject, "textInputController", makeTextInputController(context));
-    WebCoreTestSupport::injectInternalsObject(context);
-}
-
-static gboolean webViewConsoleMessage(WebKitWebView* view, const gchar* message, unsigned int line, const gchar* sourceId, gpointer data)
-{
-    gchar* testMessage = 0;
-    const gchar* uriScheme;
-
-    // Tests expect only the filename part of local URIs
-    uriScheme = g_strstr_len(message, -1, "file://");
-    if (uriScheme) {
-        GString* tempString = g_string_sized_new(strlen(message));
-        gchar* filename = g_strrstr(uriScheme, G_DIR_SEPARATOR_S);
-
-        if (filename) {
-            // If the path is a lone slash, keep it to avoid empty output.
-            if (strlen(filename) > 1)
-                filename += strlen(G_DIR_SEPARATOR_S);
-            tempString = g_string_append_len(tempString, message, (uriScheme - message));
-            tempString = g_string_append_len(tempString, filename, strlen(filename));
-            testMessage = g_string_free(tempString, FALSE);
-        }
-    }
-
-    fprintf(stdout, "CONSOLE MESSAGE: ");
-    if (line)
-        fprintf(stdout, "line %d: ", line);
-    fprintf(stdout, "%s\n", testMessage ? testMessage : message);
-    g_free(testMessage);
-
-    return TRUE;
-}
-
-
-static gboolean webViewScriptAlert(WebKitWebView* view, WebKitWebFrame* frame, const gchar* message, gpointer data)
-{
-    fprintf(stdout, "ALERT: %s\n", message);
-    fflush(stdout);
-    return TRUE;
-}
-
-static gboolean webViewScriptPrompt(WebKitWebView* webView, WebKitWebFrame* frame, const gchar* message, const gchar* defaultValue, gchar** value, gpointer data)
-{
-    fprintf(stdout, "PROMPT: %s, default text: %s\n", message, defaultValue);
-    *value = g_strdup(defaultValue);
-    return TRUE;
-}
-
-static gboolean webViewScriptConfirm(WebKitWebView* view, WebKitWebFrame* frame, const gchar* message, gboolean* didConfirm, gpointer data)
-{
-    fprintf(stdout, "CONFIRM: %s\n", message);
-    *didConfirm = TRUE;
-    return TRUE;
-}
-
-static void webViewTitleChanged(WebKitWebView* view, WebKitWebFrame* frame, const gchar* title, gpointer data)
-{
-    if (gTestRunner->dumpFrameLoadCallbacks() && !done) {
-        GOwnPtr<char> frameName(getFrameNameSuitableForTestResult(view, frame));
-        printf("%s - didReceiveTitle: %s\n", frameName.get(), title ? title : "");
-    }
-
-    if (gTestRunner->dumpTitleChanges() && !done)
-        printf("TITLE CHANGED: '%s'\n", title ? title : "");
-}
-
-static bool webViewNavigationPolicyDecisionRequested(WebKitWebView* view, WebKitWebFrame* frame,
-                                                     WebKitNetworkRequest* request,
-                                                     WebKitWebNavigationAction* navAction,
-                                                     WebKitWebPolicyDecision* policyDecision)
-{
-    // Use the default handler if we're not waiting for policy,
-    // i.e., TestRunner::waitForPolicyDelegate
-    if (!waitForPolicy)
-        return FALSE;
-
-    gchar* typeDescription;
-    WebKitWebNavigationReason reason;
-    g_object_get(G_OBJECT(navAction), "reason", &reason, NULL);
-
-    switch(reason) {
-        case WEBKIT_WEB_NAVIGATION_REASON_LINK_CLICKED:
-            typeDescription = g_strdup("link clicked");
-            break;
-        case WEBKIT_WEB_NAVIGATION_REASON_FORM_SUBMITTED:
-            typeDescription = g_strdup("form submitted");
-            break;
-        case WEBKIT_WEB_NAVIGATION_REASON_BACK_FORWARD:
-            typeDescription = g_strdup("back/forward");
-            break;
-        case WEBKIT_WEB_NAVIGATION_REASON_RELOAD:
-            typeDescription = g_strdup("reload");
-            break;
-        case WEBKIT_WEB_NAVIGATION_REASON_FORM_RESUBMITTED:
-            typeDescription = g_strdup("form resubmitted");
-            break;
-        case WEBKIT_WEB_NAVIGATION_REASON_OTHER:
-            typeDescription = g_strdup("other");
-            break;
-        default:
-            typeDescription = g_strdup("illegal value");
-    }
-
-    printf("Policy delegate: attempt to load %s with navigation type '%s'\n", webkit_network_request_get_uri(request), typeDescription);
-    g_free(typeDescription);
-
-    webkit_web_policy_decision_ignore(policyDecision);
-    gTestRunner->notifyDone();
-
-    return TRUE;
-}
-
-static void webViewStatusBarTextChanged(WebKitWebView* view, const gchar* message, gpointer data)
-{
-    // Are we doing anything wrong? One test that does not call
-    // dumpStatusCallbacks gets true here
-    if (gTestRunner->dumpStatusCallbacks())
-        printf("UI DELEGATE STATUS CALLBACK: setStatusText:%s\n", message);
-}
-
-static gboolean webViewClose(WebKitWebView* view)
-{
-    ASSERT(view);
-
-    webViewList = g_slist_remove(webViewList, view);
-    g_object_unref(view);
-
-    return TRUE;
-}
-
-static void databaseQuotaExceeded(WebKitWebView* view, WebKitWebFrame* frame, WebKitWebDatabase *database)
-{
-    ASSERT(view);
-    ASSERT(frame);
-    ASSERT(database);
-
-    WebKitSecurityOrigin* origin = webkit_web_database_get_security_origin(database);
-    if (gTestRunner->dumpDatabaseCallbacks()) {
-        printf("UI DELEGATE DATABASE CALLBACK: exceededDatabaseQuotaForSecurityOrigin:{%s, %s, %i} database:%s\n",
-            webkit_security_origin_get_protocol(origin),
-            webkit_security_origin_get_host(origin),
-            webkit_security_origin_get_port(origin),
-            webkit_web_database_get_name(database));
-    }
-    webkit_security_origin_set_web_database_quota(origin, 5 * 1024 * 1024);
-}
-
-static bool
-geolocationPolicyDecisionRequested(WebKitWebView*, WebKitWebFrame*, WebKitGeolocationPolicyDecision* decision)
-{
-    if (!gTestRunner->isGeolocationPermissionSet())
-        return FALSE;
-    if (gTestRunner->geolocationPermission())
-        webkit_geolocation_policy_allow(decision);
-    else
-        webkit_geolocation_policy_deny(decision);
-
-    return TRUE;
-}
-
-
-static WebKitWebView* webViewCreate(WebKitWebView*, WebKitWebFrame*);
-
-static gboolean webInspectorShowWindow(WebKitWebInspector*, gpointer data)
-{
-    gtk_window_set_default_size(GTK_WINDOW(webInspectorWindow), 800, 600);
-    gtk_widget_show_all(webInspectorWindow);
-    return TRUE;
-}
-
-static gboolean webInspectorCloseWindow(WebKitWebInspector*, gpointer data)
-{
-    gtk_widget_destroy(webInspectorWindow);
-    webInspectorWindow = 0;
-    return TRUE;
-}
-
-static WebKitWebView* webInspectorInspectWebView(WebKitWebInspector*, gpointer data)
-{
-    webInspectorWindow = gtk_window_new(GTK_WINDOW_TOPLEVEL);
-
-    GtkWidget* webView = self_scrolling_webkit_web_view_new();
-    gtk_container_add(GTK_CONTAINER(webInspectorWindow),
-                      webView);
-
-    return WEBKIT_WEB_VIEW(webView);
-}
-
-static void topLoadingFrameLoadFinished()
-{
-    topLoadingFrame = 0;
-    WorkQueue::shared()->setFrozen(true); // first complete load freezes the queue for the rest of this test
-    if (gTestRunner->waitToDump())
-        return;
-
-    if (WorkQueue::shared()->count())
-        g_timeout_add(0, processWork, 0);
-    else
-        dump();
-}
-
-static void webFrameLoadStatusNotified(WebKitWebFrame* frame, gpointer user_data)
-{
-    WebKitLoadStatus loadStatus = webkit_web_frame_get_load_status(frame);
-
-    if (gTestRunner->dumpFrameLoadCallbacks()) {
-        GOwnPtr<char> frameName(getFrameNameSuitableForTestResult(webkit_web_frame_get_web_view(frame), frame));
-
-        switch (loadStatus) {
-        case WEBKIT_LOAD_PROVISIONAL:
-            if (!done)
-                printf("%s - didStartProvisionalLoadForFrame\n", frameName.get());
-            break;
-        case WEBKIT_LOAD_COMMITTED:
-            if (!done)
-                printf("%s - didCommitLoadForFrame\n", frameName.get());
-            break;
-        case WEBKIT_LOAD_FINISHED:
-            if (!done)
-                printf("%s - didFinishLoadForFrame\n", frameName.get());
-            break;
-        default:
-            break;
-        }
-    }
-
-    if ((loadStatus == WEBKIT_LOAD_FINISHED || loadStatus == WEBKIT_LOAD_FAILED)
-        && frame == topLoadingFrame)
-        topLoadingFrameLoadFinished();
-}
-
-static void frameCreatedCallback(WebKitWebView* webView, WebKitWebFrame* webFrame, gpointer user_data)
-{
-    g_signal_connect(webFrame, "notify::load-status", G_CALLBACK(webFrameLoadStatusNotified), NULL);
-    g_signal_connect(webFrame, "insecure-content-run", G_CALLBACK(didRunInsecureContent), NULL);
-}
-
-
-static CString pathFromSoupURI(SoupURI* uri)
-{
-    if (!uri)
-        return CString();
-
-    if (g_str_equal(uri->scheme, "http") || g_str_equal(uri->scheme, "ftp")) {
-        GOwnPtr<char> uriString(soup_uri_to_string(uri, FALSE));
-        return CString(uriString.get());
-    }
-
-    GOwnPtr<gchar> parentPath(g_path_get_dirname(uri->path));
-    GOwnPtr<gchar> pathDirname(g_path_get_basename(parentPath.get()));
-    GOwnPtr<gchar> pathBasename(g_path_get_basename(uri->path));
-    GOwnPtr<gchar> urlPath(g_strdup_printf("%s/%s", pathDirname.get(), pathBasename.get()));
-    return CString(urlPath.get());
-}
-
-static CString convertSoupMessageToURLPath(SoupMessage* soupMessage)
-{
-    if (!soupMessage)
-        return CString();
-    if (SoupURI* requestURI = soup_message_get_uri(soupMessage))
-        return pathFromSoupURI(requestURI);
-    return CString();
-}
-
-static CString convertNetworkRequestToURLPath(WebKitNetworkRequest* request)
-{
-    return convertSoupMessageToURLPath(webkit_network_request_get_message(request));
-}
-
-static CString convertWebResourceToURLPath(WebKitWebResource* webResource)
-{
-    SoupURI* uri = soup_uri_new(webkit_web_resource_get_uri(webResource));
-    CString urlPath(pathFromSoupURI(uri));
-    soup_uri_free(uri);
-    return urlPath;
-}
-
-static CString urlSuitableForTestResult(const char* uriString)
-{
-    if (!g_str_has_prefix(uriString, "file://"))
-        return CString(uriString);
-
-    GOwnPtr<gchar> basename(g_path_get_basename(uriString));
-    return CString(basename.get());
-}
-
-static CString descriptionSuitableForTestResult(SoupURI* uri)
-{
-    if (!uri)
-        return CString("");
-
-    GOwnPtr<char> uriString(soup_uri_to_string(uri, false));
-    return urlSuitableForTestResult(uriString.get());
-}
-
-static CString descriptionSuitableForTestResult(WebKitWebView* webView, WebKitWebFrame* webFrame, WebKitWebResource* webResource)
-{
-    SoupURI* uri = soup_uri_new(webkit_web_resource_get_uri(webResource));
-    CString description;
-    WebKitWebDataSource* dataSource = webkit_web_frame_get_data_source(webFrame);
-
-    if (webResource == webkit_web_data_source_get_main_resource(dataSource)
-        && (!webkit_web_view_get_progress(webView) || g_str_equal(uri->scheme, "file")))
-        description = CString("<unknown>");
-    else
-        description = convertWebResourceToURLPath(webResource);
-
-    if (uri)
-        soup_uri_free(uri);
-
-    return description;
-}
-
-static CString descriptionSuitableForTestResult(GError* error, WebKitWebResource* webResource)
-{
-    const gchar* errorDomain = g_quark_to_string(error->domain);
-    CString resourceURIString(urlSuitableForTestResult(webkit_web_resource_get_uri(webResource)));
-
-    if (g_str_equal(errorDomain, "webkit-network-error-quark") || g_str_equal(errorDomain, "soup_http_error_quark"))
-        errorDomain = "NSURLErrorDomain";
-
-    if (g_str_equal(errorDomain, "WebKitPolicyError"))
-        errorDomain = "WebKitErrorDomain";
-
-    // TODO: the other ports get the failingURL from the ResourceError
-    GOwnPtr<char> errorString(g_strdup_printf("<NSError domain %s, code %d, failing URL \"%s\">",
-                                              errorDomain, error->code, resourceURIString.data()));
-    return CString(errorString.get());
-}
-
-static CString descriptionSuitableForTestResult(WebKitNetworkRequest* request)
-{
-    SoupMessage* soupMessage = webkit_network_request_get_message(request);
-
-    if (!soupMessage)
-        return CString("");
-
-    SoupURI* requestURI = soup_message_get_uri(soupMessage);
-    SoupURI* mainDocumentURI = soup_message_get_first_party(soupMessage);
-    CString requestURIString(descriptionSuitableForTestResult(requestURI));
-    CString mainDocumentURIString(descriptionSuitableForTestResult(mainDocumentURI));
-    CString path(convertNetworkRequestToURLPath(request));
-    GOwnPtr<char> description(g_strdup_printf("<NSURLRequest URL %s, main document URL %s, http method %s>",
-        path.data(), mainDocumentURIString.data(), soupMessage->method));
-    return CString(description.get());
-}
-
-static CString descriptionSuitableForTestResult(WebKitNetworkResponse* response)
-{
-    if (!response)
-        return CString("(null)");
-
-    int statusCode = 0;
-    CString responseURIString(urlSuitableForTestResult(webkit_network_response_get_uri(response)));
-    SoupMessage* soupMessage = webkit_network_response_get_message(response);
-    CString path;
-
-    if (soupMessage) {
-        statusCode = soupMessage->status_code;
-        path = convertSoupMessageToURLPath(soupMessage);
-    } else
-        path = CString("");
-
-    GOwnPtr<char> description(g_strdup_printf("<NSURLResponse %s, http status code %d>", path.data(), statusCode));
-    return CString(description.get());
-}
-
-static void willSendRequestCallback(WebKitWebView* webView, WebKitWebFrame* webFrame, WebKitWebResource* resource, WebKitNetworkRequest* request, WebKitNetworkResponse* response)
-{
-
-
-    if (!done && gTestRunner->willSendRequestReturnsNull()) {
-        // As requested by the TestRunner, don't perform the request.
-        webkit_network_request_set_uri(request, "about:blank");
-        return;
-    }
-
-    if (!done && gTestRunner->dumpResourceLoadCallbacks())
-        printf("%s - willSendRequest %s redirectResponse %s\n",
-               convertNetworkRequestToURLPath(request).data(),
-               descriptionSuitableForTestResult(request).data(),
-               descriptionSuitableForTestResult(response).data());
-
-    SoupMessage* soupMessage = webkit_network_request_get_message(request);
-    SoupURI* uri = soup_uri_new(webkit_network_request_get_uri(request));
-
-    if (SOUP_URI_VALID_FOR_HTTP(uri) && g_strcmp0(uri->host, "127.0.0.1")
-        && g_strcmp0(uri->host, "255.255.255.255")
-        && g_ascii_strncasecmp(uri->host, "localhost", 9)) {
-        printf("Blocked access to external URL %s\n", soup_uri_to_string(uri, FALSE));
-        // Cancel load of blocked resource to avoid potential
-        // network-related timeouts in tests.
-        webkit_network_request_set_uri(request, "about:blank");
-        soup_uri_free(uri);
-        return;
-    }
-
-    if (uri)
-        soup_uri_free(uri);
-
-    if (soupMessage) {
-        const set<string>& clearHeaders = gTestRunner->willSendRequestClearHeaders();
-        for (set<string>::const_iterator header = clearHeaders.begin(); header != clearHeaders.end(); ++header)
-            soup_message_headers_remove(soupMessage->request_headers, header->c_str());
-    }
-}
-
-
-static void didReceiveResponse(WebKitWebView* webView, WebKitWebFrame*, WebKitWebResource* webResource, WebKitNetworkResponse* response)
-{
-    if (!done && gTestRunner->dumpResourceLoadCallbacks()) {
-        CString responseDescription(descriptionSuitableForTestResult(response));
-        CString path(convertWebResourceToURLPath(webResource));
-        printf("%s - didReceiveResponse %s\n", path.data(), responseDescription.data());
-    }
-
-    // TODO: add "has MIME type" whenever dumpResourceResponseMIMETypes() is supported.
-    // See https://bugs.webkit.org/show_bug.cgi?id=58222.
-}
-
-static void didFinishLoading(WebKitWebView* webView, WebKitWebFrame* webFrame, WebKitWebResource* webResource)
-{
-    if (!done && gTestRunner->dumpResourceLoadCallbacks())
-        printf("%s - didFinishLoading\n", descriptionSuitableForTestResult(webView, webFrame, webResource).data());
-}
-
-static void didFailLoadingWithError(WebKitWebView* webView, WebKitWebFrame* webFrame, WebKitWebResource* webResource, GError* webError)
-{
-    if (!done && gTestRunner->dumpResourceLoadCallbacks()) {
-        CString webErrorString(descriptionSuitableForTestResult(webError, webResource));
-        printf("%s - didFailLoadingWithError: %s\n", descriptionSuitableForTestResult(webView, webFrame, webResource).data(),
-               webErrorString.data());
-    }
-}
-
-static void didRunInsecureContent(WebKitWebFrame*, WebKitSecurityOrigin*, const char* url)
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks())
-        printf("didRunInsecureContent\n");
-}
-
-static gboolean webViewRunFileChooser(WebKitWebView*, WebKitFileChooserRequest*)
-{
-    // We return TRUE to not propagate the event further so the
-    // default file chooser dialog is not shown.
-    return TRUE;
-}
-
-static void frameLoadEventCallback(WebKitWebFrame* frame, DumpRenderTreeSupportGtk::FrameLoadEvent event, const char* url)
-{
-    if (done || !gTestRunner->dumpFrameLoadCallbacks())
-        return;
-
-    GOwnPtr<char> frameName(getFrameNameSuitableForTestResult(webkit_web_frame_get_web_view(frame), frame));
-    switch (event) {
-    case DumpRenderTreeSupportGtk::WillPerformClientRedirectToURL:
-        ASSERT(url);
-        printf("%s - willPerformClientRedirectToURL: %s \n", frameName.get(), url);
-        break;
-    case DumpRenderTreeSupportGtk::DidCancelClientRedirect:
-        printf("%s - didCancelClientRedirectForFrame\n", frameName.get());
-        break;
-    case DumpRenderTreeSupportGtk::DidReceiveServerRedirectForProvisionalLoad:
-        printf("%s - didReceiveServerRedirectForProvisionalLoadForFrame\n", frameName.get());
-        break;
-    case DumpRenderTreeSupportGtk::DidDisplayInsecureContent:
-        printf ("didDisplayInsecureContent\n");
-        break;
-    case DumpRenderTreeSupportGtk::DidDetectXSS:
-        printf ("didDetectXSS\n");
-        break;
-    default:
-        ASSERT_NOT_REACHED();
-    }
-}
-
-static bool authenticationCallback(CString& username, CString& password)
-{
-    if (!gTestRunner->handlesAuthenticationChallenges()) {
-        printf("<unknown> - didReceiveAuthenticationChallenge - Simulating cancelled authentication sheet\n");
-        return false;
-    }
-
-    username = gTestRunner->authenticationUsername().c_str();
-    password = gTestRunner->authenticationPassword().c_str();
-    printf("<unknown> - didReceiveAuthenticationChallenge - Responding with %s:%s\n", username.data(), password.data());
-    return true;
-}
-
-static WebKitWebView* createWebView()
-{
-    // It is important to declare DRT is running early so when creating
-    // web view mock clients are used instead of proper ones.
-    DumpRenderTreeSupportGtk::setDumpRenderTreeModeEnabled(true);
-
-    DumpRenderTreeSupportGtk::setFrameLoadEventCallback(frameLoadEventCallback);
-    DumpRenderTreeSupportGtk::setAuthenticationCallback(authenticationCallback);
-
-    WebKitWebView* view = WEBKIT_WEB_VIEW(self_scrolling_webkit_web_view_new());
-
-    g_object_connect(G_OBJECT(view),
-                     "signal::load-started", webViewLoadStarted, 0,
-                     "signal::load-finished", webViewLoadFinished, 0,
-                     "signal::load-error", webViewLoadError, 0,
-                     "signal::window-object-cleared", webViewWindowObjectCleared, 0,
-                     "signal::console-message", webViewConsoleMessage, 0,
-                     "signal::script-alert", webViewScriptAlert, 0,
-                     "signal::script-prompt", webViewScriptPrompt, 0,
-                     "signal::script-confirm", webViewScriptConfirm, 0,
-                     "signal::title-changed", webViewTitleChanged, 0,
-                     "signal::navigation-policy-decision-requested", webViewNavigationPolicyDecisionRequested, 0,
-                     "signal::status-bar-text-changed", webViewStatusBarTextChanged, 0,
-                     "signal::create-web-view", webViewCreate, 0,
-                     "signal::close-web-view", webViewClose, 0,
-                     "signal::database-quota-exceeded", databaseQuotaExceeded, 0,
-                     "signal::document-load-finished", webViewDocumentLoadFinished, 0,
-                     "signal::geolocation-policy-decision-requested", geolocationPolicyDecisionRequested, 0,
-                     "signal::onload-event", webViewOnloadEvent, 0,
-                     "signal::drag-begin", dragBeginCallback, 0,
-                     "signal::drag-end", dragEndCallback, 0,
-                     "signal::drag-failed", dragFailedCallback, 0,
-                     "signal::frame-created", frameCreatedCallback, 0,
-                     "signal::resource-request-starting", willSendRequestCallback, 0,
-                     "signal::resource-response-received", didReceiveResponse, 0,
-                     "signal::resource-load-finished", didFinishLoading, 0,
-                     "signal::resource-load-failed", didFailLoadingWithError, 0,
-                     "signal::run-file-chooser", webViewRunFileChooser, 0,
-                     NULL);
-    connectEditingCallbacks(view);
-
-    WebKitWebInspector* inspector = webkit_web_view_get_inspector(view);
-    g_object_connect(G_OBJECT(inspector),
-                     "signal::inspect-web-view", webInspectorInspectWebView, 0,
-                     "signal::show-window", webInspectorShowWindow, 0,
-                     "signal::close-window", webInspectorCloseWindow, 0,
-                     NULL);
-
-    if (webView) {
-        WebKitWebSettings* settings = webkit_web_view_get_settings(webView);
-        webkit_web_view_set_settings(view, settings);
-    }
-
-    // frame-created is not issued for main frame. That's why we must do this here
-    WebKitWebFrame* frame = webkit_web_view_get_main_frame(view);
-    g_signal_connect(frame, "notify::load-status", G_CALLBACK(webFrameLoadStatusNotified), NULL);
-    g_signal_connect(frame, "insecure-content-run", G_CALLBACK(didRunInsecureContent), NULL);
-
-    return view;
-}
-
-static WebKitWebView* webViewCreate(WebKitWebView* view, WebKitWebFrame* frame)
-{
-    if (!gTestRunner->canOpenWindows())
-        return 0;
-
-    // Make sure that waitUntilDone has been called.
-    ASSERT(gTestRunner->waitToDump());
-
-    WebKitWebView* newWebView = createWebView();
-    g_object_ref_sink(G_OBJECT(newWebView));
-    webViewList = g_slist_prepend(webViewList, newWebView);
-    return newWebView;
-}
-
-static void logHandler(const gchar* domain, GLogLevelFlags level, const gchar* message, gpointer data)
-{
-    if (level < G_LOG_LEVEL_DEBUG)
-        fprintf(stderr, "%s\n", message);
-}
-
-int main(int argc, char* argv[])
-{
-    gtk_init(&argc, &argv);
-
-    // Some plugins might try to use the GLib logger for printing debug
-    // messages. This will cause tests to fail because of unexpected output.
-    // We squelch all debug messages sent to the logger.
-    g_log_set_default_handler(logHandler, 0);
-
-    initializeGlobalsFromCommandLineOptions(argc, argv);
-    initializeFonts();
-
-    window = gtk_window_new(GTK_WINDOW_POPUP);
-#ifdef GTK_API_VERSION_2
-    container = gtk_hbox_new(TRUE, 0);
-#else
-    container = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0);
-    gtk_box_set_homogeneous(GTK_BOX(container), TRUE);
-#endif
-    gtk_container_add(GTK_CONTAINER(window), container);
-    gtk_widget_show_all(window);
-
-    webView = createWebView();
-    gtk_box_pack_start(GTK_BOX(container), GTK_WIDGET(webView), TRUE, TRUE, 0);
-    gtk_widget_realize(GTK_WIDGET(webView));
-    gtk_widget_show_all(container);
-    mainFrame = webkit_web_view_get_main_frame(webView);
-
-    setDefaultsToConsistentStateValuesForTesting();
-
-    gcController = new GCController();
-    axController = new AccessibilityController();
-
-    if (useLongRunningServerMode(argc, argv)) {
-        printSeparators = true;
-        runTestingServerLoop();
-    } else {
-        printSeparators = (optind < argc-1 || (dumpPixelsForCurrentTest && dumpTree));
-        for (int i = optind; i != argc; ++i)
-            runTest(argv[i]);
-    }
-
-    delete gcController;
-    gcController = 0;
-
-    delete axController;
-    axController = 0;
-
-    gtk_widget_destroy(window);
-
-    return 0;
-}
diff --git a/Tools/DumpRenderTree/gtk/DumpRenderTreeGtk.h b/Tools/DumpRenderTree/gtk/DumpRenderTreeGtk.h
deleted file mode 100644
index e07d6f0..0000000
--- a/Tools/DumpRenderTree/gtk/DumpRenderTreeGtk.h
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * Copyright (C) 2007 Eric Seidel <eric@webkit.org>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef DumpRenderTreeGtk_h
-#define DumpRenderTreeGtk_h
-
-#include <webkit/webkitdefines.h>
-#include <JavaScriptCore/JSBase.h>
-#include <glib.h>
-#include <wtf/text/CString.h>
-
-extern WebKitWebFrame* mainFrame;
-extern WebKitWebFrame* topLoadingFrame;
-extern bool waitForPolicy;
-extern GSList* webViewList;
-
-gchar* JSStringCopyUTF8CString(JSStringRef jsString);
-CString getTopLevelPath();
-
-void setWaitToDumpWatchdog(guint timer);
-bool shouldSetWaitToDumpWatchdog();
-
-#endif // DumpRenderTreeGtk_h
diff --git a/Tools/DumpRenderTree/gtk/EditingCallbacks.cpp b/Tools/DumpRenderTree/gtk/EditingCallbacks.cpp
deleted file mode 100644
index ef5a969..0000000
--- a/Tools/DumpRenderTree/gtk/EditingCallbacks.cpp
+++ /dev/null
@@ -1,202 +0,0 @@
-/*
- * Copyright (C) 2010 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "EditingCallbacks.h"
-
-#include "DumpRenderTree.h"
-#include "TestRunner.h"
-#include <gtk/gtk.h>
-#include <webkit/webkit.h>
-#include <wtf/gobject/GOwnPtr.h>
-#include <wtf/text/CString.h>
-
-static CString dumpNodePath(WebKitDOMNode* node)
-{
-    GOwnPtr<gchar> nodeName(webkit_dom_node_get_node_name(node));
-    GString* path = g_string_new(nodeName.get());
-
-    WebKitDOMNode* parent = webkit_dom_node_get_parent_node(node);
-    while (parent) {
-        GOwnPtr<gchar> parentName(webkit_dom_node_get_node_name(parent));
-
-        g_string_append(path, " > ");
-        g_string_append(path, parentName.get());
-        parent = webkit_dom_node_get_parent_node(parent);
-    }
-
-    GOwnPtr<gchar> pathBuffer(g_string_free(path, FALSE));
-    return pathBuffer.get();
-}
-
-static CString dumpRange(WebKitDOMRange* range)
-{
-    if (!range)
-        return "(null)";
-
-    GOwnPtr<gchar> dump(g_strdup_printf("range from %li of %s to %li of %s",
-        webkit_dom_range_get_start_offset(range, 0),
-        dumpNodePath(webkit_dom_range_get_start_container(range, 0)).data(),
-        webkit_dom_range_get_end_offset(range, 0),
-        dumpNodePath(webkit_dom_range_get_end_container(range, 0)).data()));
-
-    return dump.get();
-}
-
-static const char* insertActionString(WebKitInsertAction action)
-{
-    switch (action) {
-    case WEBKIT_INSERT_ACTION_TYPED:
-        return "WebViewInsertActionTyped";
-    case WEBKIT_INSERT_ACTION_PASTED:
-        return "WebViewInsertActionPasted";
-    case WEBKIT_INSERT_ACTION_DROPPED:
-        return "WebViewInsertActionDropped";
-    }
-    ASSERT_NOT_REACHED();
-    return "WebViewInsertActionTyped";
-}
-
-static const char* selectionAffinityString(WebKitSelectionAffinity affinity)
-{
-    switch (affinity) {
-    case WEBKIT_SELECTION_AFFINITY_UPSTREAM:
-        return "NSSelectionAffinityUpstream";
-    case WEBKIT_SELECTION_AFFINITY_DOWNSTREAM:
-        return "NSSelectionAffinityDownstream";
-    }
-    ASSERT_NOT_REACHED();
-    return "NSSelectionAffinityUpstream";
-}
-
-gboolean shouldBeginEditing(WebKitWebView* webView, WebKitDOMRange* range)
-{
-    if (!done && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: shouldBeginEditingInDOMRange:%s\n", dumpRange(range).data());
-    return TRUE;
-}
-
-gboolean shouldEndEditing(WebKitWebView* webView, WebKitDOMRange* range)
-{
-    if (!done && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: shouldEndEditingInDOMRange:%s\n", dumpRange(range).data());
-    return TRUE;
-}
-
-gboolean shouldInsertNode(WebKitWebView* webView, WebKitDOMNode* node, WebKitDOMRange* range, WebKitInsertAction action)
-{
-    if (!done && gTestRunner->dumpEditingCallbacks()) {
-        printf("EDITING DELEGATE: shouldInsertNode:%s replacingDOMRange:%s givenAction:%s\n",
-               dumpNodePath(node).data(), dumpRange(range).data(), insertActionString(action));
-    }
-    return TRUE;
-}
-
-gboolean shouldInsertText(WebKitWebView* webView, const gchar* text, WebKitDOMRange* range, WebKitInsertAction action)
-{
-    if (!done && gTestRunner->dumpEditingCallbacks()) {
-        printf("EDITING DELEGATE: shouldInsertText:%s replacingDOMRange:%s givenAction:%s\n",
-               text, dumpRange(range).data(), insertActionString(action));
-    }
-    return TRUE;
-}
-
-gboolean shouldDeleteRange(WebKitWebView* webView, WebKitDOMRange* range)
-{
-    if (!done && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: shouldDeleteDOMRange:%s\n", dumpRange(range).data());
-    return TRUE;
-}
-
-gboolean shouldShowDeleteInterfaceForElement(WebKitWebView* webView, WebKitDOMHTMLElement* element)
-{
-    return FALSE;
-}
-
-gboolean shouldChangeSelectedRange(WebKitWebView* webView, WebKitDOMRange* fromRange, WebKitDOMRange* toRange, WebKitSelectionAffinity affinity, gboolean stillSelecting)
-{
-    if (!done && gTestRunner->dumpEditingCallbacks()) {
-        printf("EDITING DELEGATE: shouldChangeSelectedDOMRange:%s toDOMRange:%s affinity:%s stillSelecting:%s\n",
-               dumpRange(fromRange).data(), dumpRange(toRange).data(), selectionAffinityString(affinity),
-               stillSelecting ? "TRUE" : "FALSE");
-    }
-    return TRUE;
-}
-
-gboolean shouldApplyStyle(WebKitWebView* webView, WebKitDOMCSSStyleDeclaration* style, WebKitDOMRange* range)
-{
-    if (!done && gTestRunner->dumpEditingCallbacks()) {
-        GOwnPtr<gchar> styleText(webkit_dom_css_style_declaration_get_css_text(style));
-        printf("EDITING DELEGATE: shouldApplyStyle:%s toElementsInDOMRange:%s\n",
-               styleText.get(), dumpRange(range).data());
-    }
-    return TRUE;
-}
-
-void editingBegan(WebKitWebView*)
-{
-    if (!done && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification\n");
-}
-
-void userChangedContents(WebKitWebView*)
-{
-    if (!done && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification\n");
-}
-
-void editingEnded(WebKitWebView*)
-{
-    if (!done && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification\n");
-}
-
-void selectionChanged(WebKitWebView*)
-{
-    if (!done && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification\n");
-}
-
-void connectEditingCallbacks(WebKitWebView* webView)
-{
-    g_object_connect(G_OBJECT(webView),
-                     "signal::should-begin-editing", shouldBeginEditing, 0,
-                     "signal::should-end-editing", shouldEndEditing, 0,
-                     "signal::should-insert-node", shouldInsertNode, 0,
-                     "signal::should-insert-text", shouldInsertText, 0,
-                     "signal::should-delete-range", shouldDeleteRange, 0,
-                     "signal::should-show-delete-interface-for-element", shouldShowDeleteInterfaceForElement, 0,
-                     "signal::should-change-selected-range", shouldChangeSelectedRange, 0,
-                     "signal::should-apply-style", shouldApplyStyle, 0,
-                     "signal::editing-began", editingBegan, 0,
-                     "signal::user-changed-contents", userChangedContents, 0,
-                     "signal::editing-ended", editingEnded, 0,
-                     "signal::selection-changed", selectionChanged, 0,
-                     NULL);
-}
-
diff --git a/Tools/DumpRenderTree/gtk/EditingCallbacks.h b/Tools/DumpRenderTree/gtk/EditingCallbacks.h
deleted file mode 100644
index 7a95149..0000000
--- a/Tools/DumpRenderTree/gtk/EditingCallbacks.h
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright (C) 2010 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef EditingCallbacks_h
-#define EditingCallbacks_h
-
-typedef struct _WebKitWebView WebKitWebView;
-void connectEditingCallbacks(WebKitWebView*);
-
-#endif
diff --git a/Tools/DumpRenderTree/gtk/EventSender.cpp b/Tools/DumpRenderTree/gtk/EventSender.cpp
deleted file mode 100644
index dca2c0b..0000000
--- a/Tools/DumpRenderTree/gtk/EventSender.cpp
+++ /dev/null
@@ -1,995 +0,0 @@
-/*
- * Copyright (C) 2007, 2008 Apple Inc. All rights reserved.
- * Copyright (C) 2009 Zan Dobersek <zandobersek@gmail.com>
- * Copyright (C) 2009 Holger Hans Peter Freyther
- * Copyright (C) 2010 Igalia S.L.
- * Copyright (C) 2012 ChangSeok Oh <shivamidow@gmail.com>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "EventSender.h"
-
-#include "DumpRenderTree.h"
-#include "WebCoreSupport/DumpRenderTreeSupportGtk.h"
-#include <GOwnPtrGtk.h>
-#include <GRefPtrGtk.h>
-#include <GtkVersioning.h>
-#include <JavaScriptCore/JSObjectRef.h>
-#include <JavaScriptCore/JSRetainPtr.h>
-#include <JavaScriptCore/JSStringRef.h>
-#include <cstring>
-#include <gdk/gdk.h>
-#include <gdk/gdkkeysyms.h>
-#include <webkit/webkitwebframe.h>
-#include <webkit/webkitwebview.h>
-#include <wtf/ASCIICType.h>
-#include <wtf/Platform.h>
-#include <wtf/text/CString.h>
-
-extern "C" {
-    extern GtkMenu* webkit_web_view_get_context_menu(WebKitWebView*);
-}
-
-static bool dragMode;
-static int timeOffset = 0;
-
-static int lastMousePositionX;
-static int lastMousePositionY;
-static int lastClickPositionX;
-static int lastClickPositionY;
-static int lastClickTimeOffset;
-static int lastClickButton;
-static unsigned buttonCurrentlyDown;
-static int clickCount;
-GdkDragContext* currentDragSourceContext;
-
-struct DelayedMessage {
-    GdkEvent* event;
-    gulong delay;
-};
-
-static DelayedMessage msgQueue[1024];
-
-static unsigned endOfQueue;
-static unsigned startOfQueue;
-
-static const float zoomMultiplierRatio = 1.2f;
-
-// WebCore and layout tests assume this value.
-static const float pixelsPerScrollTick = 40;
-
-// Key event location code defined in DOM Level 3.
-enum KeyLocationCode {
-    DOM_KEY_LOCATION_STANDARD      = 0x00,
-    DOM_KEY_LOCATION_LEFT          = 0x01,
-    DOM_KEY_LOCATION_RIGHT         = 0x02,
-    DOM_KEY_LOCATION_NUMPAD        = 0x03
-};
-
-static void sendOrQueueEvent(GdkEvent*, bool = true);
-static void dispatchEvent(GdkEvent* event);
-static guint getStateFlags();
-
-static JSValueRef getDragModeCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception)
-{
-    return JSValueMakeBoolean(context, dragMode);
-}
-
-static bool setDragModeCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception)
-{
-    dragMode = JSValueToBoolean(context, value);
-    return true;
-}
-
-static JSValueRef leapForwardCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount > 0) {
-        msgQueue[endOfQueue].delay = JSValueToNumber(context, arguments[0], exception);
-        timeOffset += msgQueue[endOfQueue].delay;
-        ASSERT(!exception || !*exception);
-    }
-
-    return JSValueMakeUndefined(context);
-}
-
-bool prepareMouseButtonEvent(GdkEvent* event, int eventSenderButtonNumber, guint modifiers)
-{
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    if (!view)
-        return false;
-
-    // The logic for mapping EventSender button numbers to GDK button
-    // numbers originates from the Windows EventSender.
-    int gdkButtonNumber = 3;
-    if (eventSenderButtonNumber >= 0 && eventSenderButtonNumber <= 2)
-        gdkButtonNumber = eventSenderButtonNumber + 1;
-
-    // fast/events/mouse-click-events expects the 4th button
-    // to be event->button = 1, so send a middle-button event.
-    else if (eventSenderButtonNumber == 3)
-        gdkButtonNumber = 2;
-
-    event->button.button = gdkButtonNumber;
-    event->button.x = lastMousePositionX;
-    event->button.y = lastMousePositionY;
-    event->button.window = gtk_widget_get_window(GTK_WIDGET(view));
-    g_object_ref(event->button.window);
-    event->button.device = getDefaultGDKPointerDevice(event->button.window);
-    event->button.state = modifiers | getStateFlags();
-    event->button.time = GDK_CURRENT_TIME;
-    event->button.axes = 0;
-
-    int xRoot, yRoot;
-    gdk_window_get_root_coords(gtk_widget_get_window(GTK_WIDGET(view)), lastMousePositionX, lastMousePositionY, &xRoot, &yRoot);
-    event->button.x_root = xRoot;
-    event->button.y_root = yRoot;
-
-    return true;
-}
-
-static JSValueRef getMenuItemTitleCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception)
-{
-    GtkWidget* widget = GTK_WIDGET(JSObjectGetPrivate(object));
-    CString label;
-    if (GTK_IS_SEPARATOR_MENU_ITEM(widget))
-        label = "<separator>";
-    else
-        label = gtk_menu_item_get_label(GTK_MENU_ITEM(widget));
-
-    JSRetainPtr<JSStringRef> itemText(Adopt, JSStringCreateWithUTF8CString(label.data()));
-    return JSValueMakeString(context, itemText.get());
-}
-
-static bool setMenuItemTitleCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception)
-{
-    return true;
-}
-
-static JSValueRef menuItemClickCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    GtkMenuItem* item = GTK_MENU_ITEM(JSObjectGetPrivate(thisObject));
-    gtk_menu_item_activate(item);
-    return JSValueMakeUndefined(context);
-}
-
-static JSStaticFunction staticMenuItemFunctions[] = {
-    { "click", menuItemClickCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { 0, 0, 0 }
-};
-
-static JSStaticValue staticMenuItemValues[] = {
-    { "title", getMenuItemTitleCallback, setMenuItemTitleCallback, kJSPropertyAttributeNone },
-    { 0, 0, 0, 0 }
-};
-
-static JSClassRef getMenuItemClass()
-{
-    static JSClassRef menuItemClass = 0;
-
-    if (!menuItemClass) {
-        JSClassDefinition classDefinition = {
-                0, 0, 0, 0, 0, 0,
-                0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
-        classDefinition.staticFunctions = staticMenuItemFunctions;
-        classDefinition.staticValues = staticMenuItemValues;
-
-        menuItemClass = JSClassCreate(&classDefinition);
-    }
-
-    return menuItemClass;
-}
-
-
-static JSValueRef contextClickCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    GdkEvent* pressEvent = gdk_event_new(GDK_BUTTON_PRESS);
-
-    if (!prepareMouseButtonEvent(pressEvent, 2, 0)) {
-        gdk_event_free(pressEvent);
-        return JSObjectMakeArray(context, 0, 0, 0);
-    }
-
-    GdkEvent* releaseEvent = gdk_event_copy(pressEvent);
-    sendOrQueueEvent(pressEvent);
-
-    JSValueRef valueRef = JSObjectMakeArray(context, 0, 0, 0);
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    GtkMenu* gtkMenu = webkit_web_view_get_context_menu(view);
-    if (gtkMenu) {
-        GOwnPtr<GList> items(gtk_container_get_children(GTK_CONTAINER(gtkMenu)));
-        JSValueRef arrayValues[g_list_length(items.get())];
-        int index = 0;
-        for (GList* item = g_list_first(items.get()); item; item = g_list_next(item)) {
-            arrayValues[index] = JSObjectMake(context, getMenuItemClass(), item->data);
-            index++;
-        }
-        if (index)
-            valueRef = JSObjectMakeArray(context, index - 1, arrayValues, 0);
-    }
-
-    releaseEvent->type = GDK_BUTTON_RELEASE;
-    sendOrQueueEvent(releaseEvent);
-    return valueRef;
-}
-
-static gboolean sendClick(gpointer)
-{
-    GdkEvent* pressEvent = gdk_event_new(GDK_BUTTON_PRESS);
-
-    if (!prepareMouseButtonEvent(pressEvent, 1, 0)) {
-        gdk_event_free(pressEvent);
-        return FALSE;
-    }
-
-    GdkEvent* releaseEvent = gdk_event_copy(pressEvent);
-    dispatchEvent(pressEvent);
-    releaseEvent->type = GDK_BUTTON_RELEASE;
-    dispatchEvent(releaseEvent);
-
-    return FALSE;
-}
-
-static JSValueRef scheduleAsynchronousClickCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    g_timeout_add(0, sendClick, 0);
-    return JSValueMakeUndefined(context);
-}
-
-static void updateClickCount(int button)
-{
-    if (lastClickPositionX != lastMousePositionX
-        || lastClickPositionY != lastMousePositionY
-        || lastClickButton != button
-        || timeOffset - lastClickTimeOffset >= 1)
-        clickCount = 1;
-    else
-        clickCount++;
-}
-
-static guint gdkModifierFromJSValue(JSContextRef context, const JSValueRef value)
-{
-    JSStringRef string = JSValueToStringCopy(context, value, 0);
-    guint gdkModifier = 0;
-    if (JSStringIsEqualToUTF8CString(string, "ctrlKey")
-        || JSStringIsEqualToUTF8CString(string, "addSelectionKey"))
-        gdkModifier = GDK_CONTROL_MASK;
-    else if (JSStringIsEqualToUTF8CString(string, "shiftKey")
-             || JSStringIsEqualToUTF8CString(string, "rangeSelectionKey"))
-        gdkModifier = GDK_SHIFT_MASK;
-    else if (JSStringIsEqualToUTF8CString(string, "altKey"))
-        gdkModifier = GDK_MOD1_MASK;
-    
-    // Currently the metaKey as defined in WebCore/platform/gtk/PlatformMouseEventGtk.cpp
-    // is GDK_META_MASK. This code must be kept in sync with that file.
-    else if (JSStringIsEqualToUTF8CString(string, "metaKey"))
-        gdkModifier = GDK_META_MASK;
-    
-    JSStringRelease(string);
-    return gdkModifier;
-}
-
-static guint gdkModifersFromJSValue(JSContextRef context, const JSValueRef modifiers)
-{
-    // The value may either be a string with a single modifier or an array of modifiers.
-    if (JSValueIsString(context, modifiers))
-        return gdkModifierFromJSValue(context, modifiers);
-
-    JSObjectRef modifiersArray = JSValueToObject(context, modifiers, 0);
-    if (!modifiersArray)
-        return 0;
-
-    guint gdkModifiers = 0;
-    JSRetainPtr<JSStringRef> lengthProperty(Adopt, JSStringCreateWithUTF8CString("length"));
-    int modifiersCount = JSValueToNumber(context, JSObjectGetProperty(context, modifiersArray, lengthProperty.get(), 0), 0);
-    for (int i = 0; i < modifiersCount; ++i)
-        gdkModifiers |= gdkModifierFromJSValue(context, JSObjectGetPropertyAtIndex(context, modifiersArray, i, 0));
-    return gdkModifiers;
-}
-
-static JSValueRef mouseDownCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    int button = 0;
-    if (argumentCount == 1) {
-        button = static_cast<int>(JSValueToNumber(context, arguments[0], exception));
-        g_return_val_if_fail((!exception || !*exception), JSValueMakeUndefined(context));
-    }
-    guint modifiers = argumentCount >= 2 ? gdkModifersFromJSValue(context, arguments[1]) : 0;
-
-    GdkEvent* event = gdk_event_new(GDK_BUTTON_PRESS);
-    if (!prepareMouseButtonEvent(event, button, modifiers)) {
-        gdk_event_free(event);
-        return JSValueMakeUndefined(context);
-    }
-
-    // If the same mouse button is already in the down position don't send another event as it may confuse Xvfb.
-    if (buttonCurrentlyDown == event->button.button) {
-        gdk_event_free(event);
-        return JSValueMakeUndefined(context);
-    }
-
-    buttonCurrentlyDown = event->button.button;
-
-    // Normally GDK will send both GDK_BUTTON_PRESS and GDK_2BUTTON_PRESS for
-    // the second button press during double-clicks. WebKit GTK+ selectively
-    // ignores the first GDK_BUTTON_PRESS of that pair using gdk_event_peek.
-    // Since our events aren't ever going onto the GDK event queue, WebKit won't
-    // be able to filter out the first GDK_BUTTON_PRESS, so we just don't send
-    // it here. Eventually this code should probably figure out a way to get all
-    // appropriate events onto the event queue and this work-around should be
-    // removed.
-    updateClickCount(event->button.button);
-    if (clickCount == 2)
-        event->type = GDK_2BUTTON_PRESS;
-    else if (clickCount == 3)
-        event->type = GDK_3BUTTON_PRESS;
-
-    sendOrQueueEvent(event);
-    return JSValueMakeUndefined(context);
-}
-
-static guint getStateFlags()
-{
-    if (buttonCurrentlyDown == 1)
-        return GDK_BUTTON1_MASK;
-    if (buttonCurrentlyDown == 2)
-        return GDK_BUTTON2_MASK;
-    if (buttonCurrentlyDown == 3)
-        return GDK_BUTTON3_MASK;
-    return 0;
-}
-
-static JSValueRef mouseUpCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    int button = 0;
-    if (argumentCount == 1) {
-        button = static_cast<int>(JSValueToNumber(context, arguments[0], exception));
-        g_return_val_if_fail((!exception || !*exception), JSValueMakeUndefined(context));
-    }
-    guint modifiers = argumentCount >= 2 ? gdkModifersFromJSValue(context, arguments[1]) : 0;
-
-    GdkEvent* event = gdk_event_new(GDK_BUTTON_RELEASE);
-    if (!prepareMouseButtonEvent(event, button, modifiers)) {
-        gdk_event_free(event);
-        return JSValueMakeUndefined(context);
-    }
-
-    lastClickPositionX = lastMousePositionX;
-    lastClickPositionY = lastMousePositionY;
-    lastClickButton = buttonCurrentlyDown;
-    lastClickTimeOffset = timeOffset;
-    buttonCurrentlyDown = 0;
-
-    sendOrQueueEvent(event);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef mouseMoveToCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    if (!view)
-        return JSValueMakeUndefined(context);
-
-    if (argumentCount < 2)
-        return JSValueMakeUndefined(context);
-
-    lastMousePositionX = (int)JSValueToNumber(context, arguments[0], exception);
-    g_return_val_if_fail((!exception || !*exception), JSValueMakeUndefined(context));
-    lastMousePositionY = (int)JSValueToNumber(context, arguments[1], exception);
-    g_return_val_if_fail((!exception || !*exception), JSValueMakeUndefined(context));
-
-    GdkEvent* event = gdk_event_new(GDK_MOTION_NOTIFY);
-    event->motion.x = lastMousePositionX;
-    event->motion.y = lastMousePositionY;
-
-    event->motion.time = GDK_CURRENT_TIME;
-    event->motion.window = gtk_widget_get_window(GTK_WIDGET(view));
-    g_object_ref(event->motion.window);
-    event->button.device = getDefaultGDKPointerDevice(event->motion.window);
-
-    guint modifiers = argumentCount >= 3 ? gdkModifersFromJSValue(context, arguments[2]) : 0;
-    event->motion.state = modifiers | getStateFlags();
-    event->motion.axes = 0;
-
-    int xRoot, yRoot;
-    gdk_window_get_root_coords(gtk_widget_get_window(GTK_WIDGET(view)), lastMousePositionX, lastMousePositionY, &xRoot, &yRoot);
-    event->motion.x_root = xRoot;
-    event->motion.y_root = yRoot;
-
-    sendOrQueueEvent(event, false);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef mouseScrollByCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    if (!view)
-        return JSValueMakeUndefined(context);
-
-    if (argumentCount < 2)
-        return JSValueMakeUndefined(context);
-
-    int horizontal = (int)JSValueToNumber(context, arguments[0], exception);
-    g_return_val_if_fail((!exception || !*exception), JSValueMakeUndefined(context));
-    int vertical = (int)JSValueToNumber(context, arguments[1], exception);
-    g_return_val_if_fail((!exception || !*exception), JSValueMakeUndefined(context));
-
-    GdkEvent* event = gdk_event_new(GDK_SCROLL);
-    event->scroll.x = lastMousePositionX;
-    event->scroll.y = lastMousePositionY;
-    event->scroll.time = GDK_CURRENT_TIME;
-    event->scroll.window = gtk_widget_get_window(GTK_WIDGET(view));
-    g_object_ref(event->scroll.window);
-
-    // GTK+ only supports one tick in each scroll event that is not smooth. For the cases of more than one direction,
-    // and more than one step in a direction, we can only use smooth events, supported from Gtk 3.3.18.
-#if GTK_CHECK_VERSION(3, 3, 18)
-    if ((horizontal && vertical) || horizontal > 1 || horizontal < -1 || vertical > 1 || vertical < -1) {
-        event->scroll.direction = GDK_SCROLL_SMOOTH;
-        event->scroll.delta_x = -horizontal;
-        event->scroll.delta_y = -vertical;
-
-        sendOrQueueEvent(event);
-        return JSValueMakeUndefined(context);
-    }
-#else
-    g_return_val_if_fail((!vertical || !horizontal), JSValueMakeUndefined(context));
-#endif
-
-    if (horizontal < 0)
-        event->scroll.direction = GDK_SCROLL_RIGHT;
-    else if (horizontal > 0)
-        event->scroll.direction = GDK_SCROLL_LEFT;
-    else if (vertical < 0)
-        event->scroll.direction = GDK_SCROLL_DOWN;
-    else if (vertical > 0)
-        event->scroll.direction = GDK_SCROLL_UP;
-    else
-        g_assert_not_reached();
-
-    sendOrQueueEvent(event);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef continuousMouseScrollByCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-#if GTK_CHECK_VERSION(3, 3, 18)
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    if (!view)
-        return JSValueMakeUndefined(context);
-
-    if (argumentCount < 2)
-        return JSValueMakeUndefined(context);
-
-    int horizontal = JSValueToNumber(context, arguments[0], exception);
-    g_return_val_if_fail((!exception || !*exception), JSValueMakeUndefined(context));
-    int vertical = JSValueToNumber(context, arguments[1], exception);
-    g_return_val_if_fail((!exception || !*exception), JSValueMakeUndefined(context));
-
-    // We do not yet support continuous scrolling by page.
-    if (argumentCount >= 3 && JSValueToBoolean(context, arguments[2]))
-        return JSValueMakeUndefined(context);
-
-    GdkEvent* event = gdk_event_new(GDK_SCROLL);
-    event->scroll.x = lastMousePositionX;
-    event->scroll.y = lastMousePositionY;
-    event->scroll.time = GDK_CURRENT_TIME;
-    event->scroll.window = gtk_widget_get_window(GTK_WIDGET(view));
-    g_object_ref(event->scroll.window);
-
-    event->scroll.direction = GDK_SCROLL_SMOOTH;
-    event->scroll.delta_x = -horizontal / pixelsPerScrollTick;
-    event->scroll.delta_y = -vertical / pixelsPerScrollTick;
-
-    sendOrQueueEvent(event);
-#endif
-    return JSValueMakeUndefined(context);
-}
-
-static void dragWithFilesDragDataGetCallback(GtkWidget*, GdkDragContext*, GtkSelectionData *data, guint, guint, gpointer userData)
-{
-    gtk_selection_data_set_uris(data, static_cast<gchar**>(userData));
-}
-
-static void dragWithFilesDragEndCallback(GtkWidget* widget, GdkDragContext*, gpointer userData)
-{
-    g_signal_handlers_disconnect_by_func(widget, reinterpret_cast<void*>(dragWithFilesDragEndCallback), userData);
-    g_signal_handlers_disconnect_by_func(widget, reinterpret_cast<void*>(dragWithFilesDragDataGetCallback), userData);
-    g_strfreev(static_cast<gchar**>(userData));
-}
-
-static JSValueRef beginDragWithFilesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSObjectRef filesArray = JSValueToObject(context, arguments[0], exception);
-    ASSERT(!exception || !*exception);
-
-    const gchar* mainFrameURI = webkit_web_frame_get_uri(mainFrame);
-    GRefPtr<GFile> testFile(adoptGRef(g_file_new_for_uri(mainFrameURI)));
-    GRefPtr<GFile> parentDirectory(g_file_get_parent(testFile.get()));
-    if (!parentDirectory)
-        return JSValueMakeUndefined(context);
-
-    // If this is an HTTP test, we still need to pass a local file path
-    // to WebCore. Even though the file doesn't exist, this should be fine
-    // for most tests.
-    GOwnPtr<gchar> scheme(g_file_get_uri_scheme(parentDirectory.get()));
-    if (g_str_equal(scheme.get(), "http") || g_str_equal(scheme.get(), "https")) {
-        GOwnPtr<gchar> currentDirectory(g_get_current_dir());
-        parentDirectory = g_file_new_for_path(currentDirectory.get());
-    }
-
-    JSStringRef lengthProperty = JSStringCreateWithUTF8CString("length");
-    int filesArrayLength = JSValueToNumber(context, JSObjectGetProperty(context, filesArray, lengthProperty, 0), 0);
-    JSStringRelease(lengthProperty);
-
-    gchar** draggedFilesURIList = g_new0(gchar*, filesArrayLength + 1);
-    for (int i = 0; i < filesArrayLength; ++i) {
-        JSStringRef filenameString = JSValueToStringCopy(context,
-                                                         JSObjectGetPropertyAtIndex(context, filesArray, i, 0), 0);
-        size_t bufferSize = JSStringGetMaximumUTF8CStringSize(filenameString);
-        GOwnPtr<gchar> filenameBuffer(static_cast<gchar*>(g_malloc(bufferSize)));
-        JSStringGetUTF8CString(filenameString, filenameBuffer.get(), bufferSize);
-        JSStringRelease(filenameString);
-
-        GRefPtr<GFile> dragFile(g_file_get_child(parentDirectory.get(), filenameBuffer.get()));
-        draggedFilesURIList[i] = g_file_get_uri(dragFile.get());
-    }
-
-    GtkWidget* view = GTK_WIDGET(webkit_web_frame_get_web_view(mainFrame));
-    g_object_connect(G_OBJECT(view),
-        "signal::drag-end", dragWithFilesDragEndCallback, draggedFilesURIList,
-        "signal::drag-data-get", dragWithFilesDragDataGetCallback, draggedFilesURIList,
-        NULL);
-
-    GdkEvent event;
-    GdkWindow* viewGDKWindow = gtk_widget_get_window(view);
-    memset(&event, 0, sizeof(event));
-    event.type = GDK_MOTION_NOTIFY;
-    event.motion.x = lastMousePositionX;
-    event.motion.y = lastMousePositionY;
-    event.motion.time = GDK_CURRENT_TIME;
-    event.motion.window = viewGDKWindow;
-    event.motion.device = getDefaultGDKPointerDevice(viewGDKWindow);
-    event.motion.state = GDK_BUTTON1_MASK;
-
-    int xRoot, yRoot;
-    gdk_window_get_root_coords(viewGDKWindow, lastMousePositionX, lastMousePositionY, &xRoot, &yRoot);
-    event.motion.x_root = xRoot;
-    event.motion.y_root = yRoot;
-
-    GtkTargetList* targetList = gtk_target_list_new(0, 0);
-    gtk_target_list_add_uri_targets(targetList, 0);
-    gtk_drag_begin(view, targetList, GDK_ACTION_COPY, 1, &event);
-    gtk_target_list_unref(targetList);
-
-    return JSValueMakeUndefined(context);
-}
-
-static void sendOrQueueEvent(GdkEvent* event, bool shouldReplaySavedEvents)
-{
-    // Mouse move events are queued if the previous event was queued or if a
-    // delay was set up by leapForward().
-    if ((dragMode && buttonCurrentlyDown) || endOfQueue != startOfQueue || msgQueue[endOfQueue].delay) {
-        msgQueue[endOfQueue++].event = event;
-
-        if (shouldReplaySavedEvents)
-            replaySavedEvents();
-
-        return;
-    }
-
-    dispatchEvent(event);
-}
-
-static void dispatchEvent(GdkEvent* event)
-{
-    DumpRenderTreeSupportGtk::layoutFrame(mainFrame);
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    if (!view) {
-        gdk_event_free(event);
-        return;
-    }
-
-    // The widget focus may have been lost in the course of the test,
-    // so force another explicit focus grab here.
-    gtk_widget_grab_focus(GTK_WIDGET(view));
-    gtk_main_do_event(event);
-
-    if (!currentDragSourceContext) {
-        gdk_event_free(event);
-        return;
-    }
-
-    if (event->type == GDK_MOTION_NOTIFY) {
-        // WebKit has called gtk_drag_start(), but because the main loop isn't
-        // running GDK internals don't know that the drag has started yet. Pump
-        // the main loop a little bit so that GDK is in the correct state.
-        while (gtk_events_pending())
-            gtk_main_iteration();
-
-        // Simulate a drag motion on the top-level GDK window.
-        GtkWidget* parentWidget = gtk_widget_get_parent(GTK_WIDGET(view));
-        GdkWindow* parentWidgetWindow = gtk_widget_get_window(parentWidget);
-        gdk_drag_motion(currentDragSourceContext, parentWidgetWindow, GDK_DRAG_PROTO_XDND,
-            event->motion.x_root, event->motion.y_root,
-            gdk_drag_context_get_selected_action(currentDragSourceContext),
-            gdk_drag_context_get_actions(currentDragSourceContext),
-            GDK_CURRENT_TIME);
-
-    } else if (currentDragSourceContext && event->type == GDK_BUTTON_RELEASE) {
-        // We've released the mouse button, we should just be able to spin the
-        // event loop here and have GTK+ send the appropriate notifications for
-        // the end of the drag.
-        while (gtk_events_pending())
-            gtk_main_iteration();
-    }
-
-    gdk_event_free(event);
-}
-
-void replaySavedEvents()
-{
-    // First send all the events that are ready to be sent
-    while (startOfQueue < endOfQueue) {
-        if (msgQueue[startOfQueue].delay) {
-            g_usleep(msgQueue[startOfQueue].delay * 1000);
-            msgQueue[startOfQueue].delay = 0;
-        }
-
-        dispatchEvent(msgQueue[startOfQueue++].event);
-    }
-
-    startOfQueue = 0;
-    endOfQueue = 0;
-}
-
-static GdkEvent* createKeyPressEvent(JSContextRef context, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    g_return_val_if_fail(argumentCount >= 1, 0);
-    guint modifiers = argumentCount >= 2 ? gdkModifersFromJSValue(context, arguments[1]) : 0;
-
-    // handle location argument.
-    int location = DOM_KEY_LOCATION_STANDARD;
-    if (argumentCount > 2)
-        location = (int)JSValueToNumber(context, arguments[2], exception);
-
-    JSStringRef character = JSValueToStringCopy(context, arguments[0], exception);
-    g_return_val_if_fail((!exception || !*exception), 0);
-
-    int gdkKeySym = GDK_VoidSymbol;
-    if (location == DOM_KEY_LOCATION_NUMPAD) {
-        if (JSStringIsEqualToUTF8CString(character, "leftArrow"))
-            gdkKeySym = GDK_KP_Left;
-        else if (JSStringIsEqualToUTF8CString(character, "rightArrow"))
-            gdkKeySym = GDK_KP_Right;
-        else if (JSStringIsEqualToUTF8CString(character, "upArrow"))
-            gdkKeySym = GDK_KP_Up;
-        else if (JSStringIsEqualToUTF8CString(character, "downArrow"))
-            gdkKeySym = GDK_KP_Down;
-        else if (JSStringIsEqualToUTF8CString(character, "pageUp"))
-            gdkKeySym = GDK_KP_Page_Up;
-        else if (JSStringIsEqualToUTF8CString(character, "pageDown"))
-            gdkKeySym = GDK_KP_Page_Down;
-        else if (JSStringIsEqualToUTF8CString(character, "home"))
-            gdkKeySym = GDK_KP_Home;
-        else if (JSStringIsEqualToUTF8CString(character, "end"))
-            gdkKeySym = GDK_KP_End;
-        else if (JSStringIsEqualToUTF8CString(character, "insert"))
-            gdkKeySym = GDK_KP_Insert;
-        else if (JSStringIsEqualToUTF8CString(character, "delete"))
-            gdkKeySym = GDK_KP_Delete;
-        else
-            // If we get some other key specified with the numpad location,
-            // crash here, so we add it sooner rather than later.
-            g_assert_not_reached();
-    } else {
-        if (JSStringIsEqualToUTF8CString(character, "leftArrow"))
-            gdkKeySym = GDK_Left;
-        else if (JSStringIsEqualToUTF8CString(character, "rightArrow"))
-            gdkKeySym = GDK_Right;
-        else if (JSStringIsEqualToUTF8CString(character, "upArrow"))
-            gdkKeySym = GDK_Up;
-        else if (JSStringIsEqualToUTF8CString(character, "downArrow"))
-            gdkKeySym = GDK_Down;
-        else if (JSStringIsEqualToUTF8CString(character, "pageUp"))
-            gdkKeySym = GDK_Page_Up;
-        else if (JSStringIsEqualToUTF8CString(character, "pageDown"))
-            gdkKeySym = GDK_Page_Down;
-        else if (JSStringIsEqualToUTF8CString(character, "home"))
-            gdkKeySym = GDK_Home;
-        else if (JSStringIsEqualToUTF8CString(character, "end"))
-            gdkKeySym = GDK_End;
-        else if (JSStringIsEqualToUTF8CString(character, "insert"))
-            gdkKeySym = GDK_Insert;
-        else if (JSStringIsEqualToUTF8CString(character, "delete"))
-            gdkKeySym = GDK_Delete;
-        else if (JSStringIsEqualToUTF8CString(character, "printScreen"))
-            gdkKeySym = GDK_Print;
-        else if (JSStringIsEqualToUTF8CString(character, "menu"))
-            gdkKeySym = GDK_Menu;
-        else if (JSStringIsEqualToUTF8CString(character, "F1"))
-            gdkKeySym = GDK_F1;
-        else if (JSStringIsEqualToUTF8CString(character, "F2"))
-            gdkKeySym = GDK_F2;
-        else if (JSStringIsEqualToUTF8CString(character, "F3"))
-            gdkKeySym = GDK_F3;
-        else if (JSStringIsEqualToUTF8CString(character, "F4"))
-            gdkKeySym = GDK_F4;
-        else if (JSStringIsEqualToUTF8CString(character, "F5"))
-            gdkKeySym = GDK_F5;
-        else if (JSStringIsEqualToUTF8CString(character, "F6"))
-            gdkKeySym = GDK_F6;
-        else if (JSStringIsEqualToUTF8CString(character, "F7"))
-            gdkKeySym = GDK_F7;
-        else if (JSStringIsEqualToUTF8CString(character, "F8"))
-            gdkKeySym = GDK_F8;
-        else if (JSStringIsEqualToUTF8CString(character, "F9"))
-            gdkKeySym = GDK_F9;
-        else if (JSStringIsEqualToUTF8CString(character, "F10"))
-            gdkKeySym = GDK_F10;
-        else if (JSStringIsEqualToUTF8CString(character, "F11"))
-            gdkKeySym = GDK_F11;
-        else if (JSStringIsEqualToUTF8CString(character, "F12"))
-            gdkKeySym = GDK_F12;
-        else if (JSStringIsEqualToUTF8CString(character, "leftAlt"))
-            gdkKeySym = GDK_Alt_L;
-        else if (JSStringIsEqualToUTF8CString(character, "leftControl"))
-            gdkKeySym = GDK_Control_L;
-        else if (JSStringIsEqualToUTF8CString(character, "leftShift"))
-            gdkKeySym = GDK_Shift_L;
-        else if (JSStringIsEqualToUTF8CString(character, "rightAlt"))
-            gdkKeySym = GDK_Alt_R;
-        else if (JSStringIsEqualToUTF8CString(character, "rightControl"))
-            gdkKeySym = GDK_Control_R;
-        else if (JSStringIsEqualToUTF8CString(character, "rightShift"))
-            gdkKeySym = GDK_Shift_R;
-        else {
-            int charCode = JSStringGetCharactersPtr(character)[0];
-            if (charCode == '\n' || charCode == '\r')
-                gdkKeySym = GDK_Return;
-            else if (charCode == '\t')
-                gdkKeySym = GDK_Tab;
-            else if (charCode == '\x8')
-                gdkKeySym = GDK_BackSpace;
-            else {
-                gdkKeySym = gdk_unicode_to_keyval(charCode);
-                if (WTF::isASCIIUpper(charCode))
-                    modifiers |= GDK_SHIFT_MASK;
-            }
-        }
-    }
-    JSStringRelease(character);
-
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    g_return_val_if_fail(view, 0);
-
-    GdkEvent* pressEvent = gdk_event_new(GDK_KEY_PRESS);
-    pressEvent->key.keyval = gdkKeySym;
-    pressEvent->key.state = modifiers;
-    pressEvent->key.window = gtk_widget_get_window(GTK_WIDGET(view));
-    g_object_ref(pressEvent->key.window);
-#ifndef GTK_API_VERSION_2
-    gdk_event_set_device(pressEvent, getDefaultGDKPointerDevice(pressEvent->key.window));
-#endif
-
-    // When synthesizing an event, an invalid hardware_keycode value
-    // can cause it to be badly processed by Gtk+.
-    GOwnPtr<GdkKeymapKey> keys;
-    gint nKeys;
-    if (gdk_keymap_get_entries_for_keyval(gdk_keymap_get_default(), gdkKeySym, &keys.outPtr(), &nKeys))
-        pressEvent->key.hardware_keycode = keys.get()[0].keycode;
-
-    return pressEvent;
-}
-
-static void sendKeyDown(GdkEvent* pressEvent)
-{
-    g_return_if_fail(pressEvent);
-    GdkEvent* releaseEvent = gdk_event_copy(pressEvent);
-    releaseEvent->type = GDK_KEY_RELEASE;
-
-    dispatchEvent(pressEvent);
-    dispatchEvent(releaseEvent);
-
-    DumpRenderTreeSupportGtk::deliverAllMutationsIfNecessary();
-}
-
-static JSValueRef keyDownCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    GdkEvent* pressEvent = createKeyPressEvent(context, argumentCount, arguments, exception);
-    sendKeyDown(pressEvent);
-
-    return JSValueMakeUndefined(context);
-}
-
-static void zoomIn(gboolean fullContentsZoom)
-{
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    if (!view)
-        return;
-
-    webkit_web_view_set_full_content_zoom(view, fullContentsZoom);
-    gfloat currentZoom = webkit_web_view_get_zoom_level(view);
-    webkit_web_view_set_zoom_level(view, currentZoom * zoomMultiplierRatio);
-}
-
-static void zoomOut(gboolean fullContentsZoom)
-{
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    if (!view)
-        return;
-
-    webkit_web_view_set_full_content_zoom(view, fullContentsZoom);
-    gfloat currentZoom = webkit_web_view_get_zoom_level(view);
-    webkit_web_view_set_zoom_level(view, currentZoom / zoomMultiplierRatio);
-}
-
-static JSValueRef textZoomInCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    zoomIn(FALSE);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef textZoomOutCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    zoomOut(FALSE);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef zoomPageInCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    zoomIn(TRUE);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef zoomPageOutCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    zoomOut(TRUE);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef scalePageByCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 3)
-        return JSValueMakeUndefined(context);
-
-    float scaleFactor = JSValueToNumber(context, arguments[0], exception);
-    float x = JSValueToNumber(context, arguments[1], exception);
-    float y = JSValueToNumber(context, arguments[2], exception);
-
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    if (!view)
-        return JSValueMakeUndefined(context);
-
-    DumpRenderTreeSupportGtk::scalePageBy(view, scaleFactor, x, y);
-
-    return JSValueMakeUndefined(context);
-}
-
-static gboolean sendAsynchronousKeyDown(gpointer userData)
-{
-    sendKeyDown(static_cast<GdkEvent*>(userData));
-    return FALSE;
-}
-
-static JSValueRef scheduleAsynchronousKeyDownCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    GdkEvent* pressEvent = createKeyPressEvent(context, argumentCount, arguments, exception);
-    if (pressEvent)
-        g_timeout_add(0, sendAsynchronousKeyDown, static_cast<gpointer>(pressEvent));
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSStaticFunction staticFunctions[] = {
-    { "mouseScrollBy", mouseScrollByCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "continuousMouseScrollBy", continuousMouseScrollByCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "contextClick", contextClickCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "mouseDown", mouseDownCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "mouseUp", mouseUpCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "mouseMoveTo", mouseMoveToCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "beginDragWithFiles", beginDragWithFilesCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "leapForward", leapForwardCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "keyDown", keyDownCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "textZoomIn", textZoomInCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "textZoomOut", textZoomOutCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "zoomPageIn", zoomPageInCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "zoomPageOut", zoomPageOutCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "scheduleAsynchronousClick", scheduleAsynchronousClickCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "scalePageBy", scalePageByCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "scheduleAsynchronousKeyDown", scheduleAsynchronousKeyDownCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-
-    { 0, 0, 0 }
-};
-
-static JSStaticValue staticValues[] = {
-    { "dragMode", getDragModeCallback, setDragModeCallback, kJSPropertyAttributeNone },
-    { 0, 0, 0, 0 }
-};
-
-static JSClassRef getClass(JSContextRef context)
-{
-    static JSClassRef eventSenderClass = 0;
-
-    if (!eventSenderClass) {
-        JSClassDefinition classDefinition = {
-                0, 0, 0, 0, 0, 0,
-                0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
-        classDefinition.staticFunctions = staticFunctions;
-        classDefinition.staticValues = staticValues;
-
-        eventSenderClass = JSClassCreate(&classDefinition);
-    }
-
-    return eventSenderClass;
-}
-
-JSObjectRef makeEventSender(JSContextRef context, bool isTopFrame)
-{
-    if (isTopFrame) {
-        dragMode = true;
-
-        // Fly forward in time one second when the main frame loads. This will
-        // ensure that when a test begins clicking in the same location as
-        // a previous test, those clicks won't be interpreted as continuations
-        // of the previous test's click sequences.
-        timeOffset += 1000;
-
-        lastMousePositionX = lastMousePositionY = 0;
-        lastClickPositionX = lastClickPositionY = 0;
-        lastClickTimeOffset = 0;
-        lastClickButton = 0;
-        buttonCurrentlyDown = 0;
-        clickCount = 0;
-
-        endOfQueue = 0;
-        startOfQueue = 0;
-
-        currentDragSourceContext = 0;
-    }
-
-    return JSObjectMake(context, getClass(context), 0);
-}
-
-void dragBeginCallback(GtkWidget*, GdkDragContext* context, gpointer)
-{
-    currentDragSourceContext = context;
-}
-
-void dragEndCallback(GtkWidget*, GdkDragContext* context, gpointer)
-{
-    currentDragSourceContext = 0;
-}
-
-gboolean dragFailedCallback(GtkWidget*, GdkDragContext* context, gpointer)
-{
-    // Return TRUE here to disable the stupid GTK+ drag failed animation,
-    // which introduces asynchronous behavior into our drags.
-    return TRUE;
-}
diff --git a/Tools/DumpRenderTree/gtk/EventSender.h b/Tools/DumpRenderTree/gtk/EventSender.h
deleted file mode 100644
index f440f0d..0000000
--- a/Tools/DumpRenderTree/gtk/EventSender.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * Copyright (C) 2007 Apple Inc.  All rights reserved.
- * Copyright (C) 2009 Holger Hans Peter Freyther
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef EventSender_h
-#define EventSender_h
-
-typedef const struct OpaqueJSContext* JSContextRef;
-typedef struct OpaqueJSValue* JSObjectRef;
-
-JSObjectRef makeEventSender(JSContextRef context, bool isTopFrame);
-void replaySavedEvents();
-void dragBeginCallback(GtkWidget*, GdkDragContext*, gpointer);
-void dragEndCallback(GtkWidget*, GdkDragContext*, gpointer);
-gboolean dragFailedCallback(GtkWidget*, GdkDragContext*, gpointer);
-
-#endif
diff --git a/Tools/DumpRenderTree/gtk/GCControllerGtk.cpp b/Tools/DumpRenderTree/gtk/GCControllerGtk.cpp
deleted file mode 100644
index 4eb5d6e..0000000
--- a/Tools/DumpRenderTree/gtk/GCControllerGtk.cpp
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
- * Copyright (C) 2007 Eric Seidel <eric@webkit.org>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "GCController.h"
-
-#include "WebCoreSupport/DumpRenderTreeSupportGtk.h"
-
-#include <glib.h>
-#include <webkit/webkit.h>
-
-void GCController::collect() const
-{
-    DumpRenderTreeSupportGtk::gcCollectJavascriptObjects();
-}
-
-void GCController::collectOnAlternateThread(bool waitUntilDone) const
-{
-    DumpRenderTreeSupportGtk::gcCollectJavascriptObjectsOnAlternateThread(waitUntilDone);
-}
-
-size_t GCController::getJSObjectCount() const
-{
-    return DumpRenderTreeSupportGtk::gcCountJavascriptObjects();
-}
diff --git a/Tools/DumpRenderTree/gtk/PixelDumpSupportGtk.cpp b/Tools/DumpRenderTree/gtk/PixelDumpSupportGtk.cpp
deleted file mode 100644
index 0a800ec..0000000
--- a/Tools/DumpRenderTree/gtk/PixelDumpSupportGtk.cpp
+++ /dev/null
@@ -1,115 +0,0 @@
-/*
- * Copyright (C) 2009 Zan Dobersek <zandobersek@gmail.com>
- * Copyright (C) 2010 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include "DumpRenderTree.h"
-#include "GtkVersioning.h"
-#include "PixelDumpSupportCairo.h"
-#include "WebCoreSupport/DumpRenderTreeSupportGtk.h"
-#include <webkit/webkit.h>
-
-static void paintOverlay(cairo_surface_t* surface)
-{
-    cairo_t* context = cairo_create(surface);
-
-    // Paint a transparent black overlay from which the repainted rectangles are then cleared.
-    // The alpha component of the overlay should have a value of 0.66, as on other ports.
-    cairo_set_source_rgba(context, 0.0, 0.0, 0.0, 0.66);
-    cairo_rectangle(context, 0, 0, cairo_image_surface_get_width(surface), cairo_image_surface_get_height(surface));
-    cairo_fill(context);
-
-    GSList* trackedRectsList = DumpRenderTreeSupportGtk::trackedRepaintRects(mainFrame);
-    for (GSList* listElement = trackedRectsList; listElement; listElement = g_slist_next(listElement)) {
-        GdkRectangle* rect = static_cast<GdkRectangle*>(listElement->data);
-
-        cairo_set_operator(context, CAIRO_OPERATOR_CLEAR);
-        cairo_rectangle(context, rect->x, rect->y, rect->width, rect->height);
-        cairo_fill(context);
-    }
-
-    g_slist_free_full(trackedRectsList, g_free);
-    cairo_destroy(context);
-}
-
-static void fillRepaintOverlayIntoContext(cairo_t* context, gint width, gint height)
-{
-    cairo_surface_t* overlaySurface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, width, height);
-    paintOverlay(overlaySurface);
-
-    cairo_set_source_surface(context, overlaySurface, 0, 0);
-    cairo_rectangle(context, 0, 0, width, height);
-    cairo_fill(context);
-
-    cairo_surface_destroy(overlaySurface);
-}
-
-PassRefPtr<BitmapContext> createBitmapContextFromWebView(bool, bool, bool, bool drawSelectionRect)
-{
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    GtkWidget* viewContainer = gtk_widget_get_parent(GTK_WIDGET(view));
-    gint width, height;
-#ifdef GTK_API_VERSION_2
-    GdkPixmap* pixmap = gtk_widget_get_snapshot(viewContainer, 0);
-    gdk_pixmap_get_size(pixmap, &width, &height);
-#else
-    width = gtk_widget_get_allocated_width(viewContainer);
-    height = gtk_widget_get_allocated_height(viewContainer);
-#endif
-
-    while (gtk_events_pending())
-        gtk_main_iteration();
-
-    cairo_surface_t* imageSurface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, width, height);
-    cairo_t* context = cairo_create(imageSurface);
-
-#ifdef GTK_API_VERSION_2
-    gdk_cairo_set_source_pixmap(context, pixmap, 0, 0);
-    cairo_paint(context);
-    g_object_unref(pixmap);
-#else
-    gtk_widget_draw(viewContainer, context);
-#endif
-
-    if (DumpRenderTreeSupportGtk::isTrackingRepaints(mainFrame))
-        fillRepaintOverlayIntoContext(context, width, height);
-
-    if (drawSelectionRect) {
-        cairo_rectangle_int_t rectangle;
-        DumpRenderTreeSupportGtk::rectangleForSelection(mainFrame, &rectangle);
-
-        cairo_set_line_width(context, 1.0);
-        cairo_rectangle(context, rectangle.x, rectangle.y, rectangle.width, rectangle.height);
-        cairo_set_source_rgba(context, 1.0, 0.0, 0.0, 1.0);
-        cairo_stroke(context);
-    }
-
-    cairo_surface_destroy(imageSurface);
-    return BitmapContext::createByAdoptingBitmapAndContext(0, context);
-}
diff --git a/Tools/DumpRenderTree/gtk/SelfScrollingWebKitWebView.cpp b/Tools/DumpRenderTree/gtk/SelfScrollingWebKitWebView.cpp
deleted file mode 100644
index d77cfd5..0000000
--- a/Tools/DumpRenderTree/gtk/SelfScrollingWebKitWebView.cpp
+++ /dev/null
@@ -1,78 +0,0 @@
-/*
- * Copyright (C) 2011 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "SelfScrollingWebKitWebView.h"
-
-#include <webkit/webkit.h>
-
-G_BEGIN_DECLS
-
-#ifdef GTK_API_VERSION_2
-static void sizeRequestMethod(GtkWidget*, GtkRequisition*);
-#else
-static void getPreferredSizeMethod(GtkWidget*, gint* minimum, gint* natural);
-#endif
-
-G_DEFINE_TYPE(SelfScrollingWebKitWebView, self_scrolling_webkit_web_view, WEBKIT_TYPE_WEB_VIEW)
-
-static void self_scrolling_webkit_web_view_class_init(SelfScrollingWebKitWebViewClass* klass)
-{
-    GtkWidgetClass* widgetClass = GTK_WIDGET_CLASS(klass);
-#ifdef GTK_API_VERSION_2
-    widgetClass->size_request = sizeRequestMethod;
-#else
-    widgetClass->get_preferred_width = getPreferredSizeMethod;
-    widgetClass->get_preferred_height = getPreferredSizeMethod;
-#endif
-}
-
-static void self_scrolling_webkit_web_view_init(SelfScrollingWebKitWebView* webView)
-{
-}
-
-GtkWidget* self_scrolling_webkit_web_view_new()
-{
-    return GTK_WIDGET(g_object_new(self_scrolling_webkit_web_view_get_type(), "self-scrolling", TRUE, NULL));
-}
-
-#ifdef GTK_API_VERSION_2
-static void sizeRequestMethod(GtkWidget*, GtkRequisition* requisition)
-{
-    requisition->width = 1;
-    requisition->height = 1;
-}
-#else
-static void getPreferredSizeMethod(GtkWidget*, gint* minimum, gint* natural)
-{
-    *minimum = 1;
-    *natural = 1;
-}
-#endif
-
-G_END_DECLS
diff --git a/Tools/DumpRenderTree/gtk/SelfScrollingWebKitWebView.h b/Tools/DumpRenderTree/gtk/SelfScrollingWebKitWebView.h
deleted file mode 100644
index 648d38c..0000000
--- a/Tools/DumpRenderTree/gtk/SelfScrollingWebKitWebView.h
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Copyright (C) 2011 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef SelfScrollingWebKitWebView_h
-#define SelfScrollingWebKitWebView_h
-
-#include <webkit/webkit.h>
-
-G_BEGIN_DECLS
-
-typedef struct _SelfScrollingWebKitWebView      SelfScrollingWebKitWebView;
-typedef struct _SelfScrollingWebKitWebViewClass SelfScrollingWebKitWebViewClass;
-
-struct _SelfScrollingWebKitWebView {
-    WebKitWebView web_view;
-};
-
-struct _SelfScrollingWebKitWebViewClass {
-    WebKitWebViewClass parent_class;
-};
-
-GtkWidget* self_scrolling_webkit_web_view_new();
-
-G_END_DECLS
-
-#endif // SelfScrollingWebKitWebView_h
diff --git a/Tools/DumpRenderTree/gtk/TestRunnerGtk.cpp b/Tools/DumpRenderTree/gtk/TestRunnerGtk.cpp
deleted file mode 100644
index bff0115..0000000
--- a/Tools/DumpRenderTree/gtk/TestRunnerGtk.cpp
+++ /dev/null
@@ -1,930 +0,0 @@
-/*
- * Copyright (C) 2007, 2012 Apple Inc. All rights reserved.
- * Copyright (C) 2007 Eric Seidel <eric@webkit.org>
- * Copyright (C) 2008 Nuanti Ltd.
- * Copyright (C) 2009 Jan Michael Alonzo <jmalonzo@gmail.com>
- * Copyright (C) 2009,2011 Collabora Ltd.
- * Copyright (C) 2010 Joone Hur <joone@kldp.org>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "TestRunner.h"
-
-#include "DumpRenderTree.h"
-#include "WebCoreSupport/DumpRenderTreeSupportGtk.h"
-#include "WorkQueue.h"
-#include "WorkQueueItem.h"
-#include <JavaScriptCore/JSRetainPtr.h>
-#include <JavaScriptCore/JSStringRef.h>
-#include <cstring>
-#include <iostream>
-#include <sstream>
-#include <stdio.h>
-#include <glib.h>
-#include <libsoup/soup.h>
-#include <webkit/webkit.h>
-#include <wtf/gobject/GOwnPtr.h>
-#include <wtf/text/WTFString.h>
-
-extern "C" {
-void webkit_web_inspector_execute_script(WebKitWebInspector* inspector, long callId, const gchar* script);
-}
-
-TestRunner::~TestRunner()
-{
-    // FIXME: implement
-}
-
-void TestRunner::addDisallowedURL(JSStringRef url)
-{
-    // FIXME: implement
-}
-
-void TestRunner::clearBackForwardList()
-{
-    WebKitWebView* webView = webkit_web_frame_get_web_view(mainFrame);
-    WebKitWebBackForwardList* list = webkit_web_view_get_back_forward_list(webView);
-    WebKitWebHistoryItem* item = webkit_web_back_forward_list_get_current_item(list);
-    g_object_ref(item);
-
-    // We clear the history by setting the back/forward list's capacity to 0
-    // then restoring it back and adding back the current item.
-    gint limit = webkit_web_back_forward_list_get_limit(list);
-    webkit_web_back_forward_list_set_limit(list, 0);
-    webkit_web_back_forward_list_set_limit(list, limit);
-    webkit_web_back_forward_list_add_item(list, item);
-    webkit_web_back_forward_list_go_to_item(list, item);
-    g_object_unref(item);
-}
-
-JSStringRef TestRunner::copyDecodedHostName(JSStringRef name)
-{
-    // FIXME: implement
-    return 0;
-}
-
-JSStringRef TestRunner::copyEncodedHostName(JSStringRef name)
-{
-    // FIXME: implement
-    return 0;
-}
-
-void TestRunner::dispatchPendingLoadRequests()
-{
-    // FIXME: Implement for testing fix for 6727495
-}
-
-void TestRunner::display()
-{
-    displayWebView();
-}
-
-void TestRunner::keepWebHistory()
-{
-    // FIXME: implement
-}
-
-size_t TestRunner::webHistoryItemCount()
-{
-    WebKitWebView* webView = webkit_web_frame_get_web_view(mainFrame);
-    WebKitWebBackForwardList* list = webkit_web_view_get_back_forward_list(webView);
-
-    if (!list)
-        return -1;
-
-    // We do not add the current page to the total count as it's not
-    // considered in DRT tests
-    return webkit_web_back_forward_list_get_back_length(list) +
-            webkit_web_back_forward_list_get_forward_length(list);
-}
-
-JSRetainPtr<JSStringRef> TestRunner::platformName() const
-{
-    JSRetainPtr<JSStringRef> platformName(Adopt, JSStringCreateWithUTF8CString("gtk"));
-    return platformName;
-}
-
-void TestRunner::notifyDone()
-{
-    if (m_waitToDump && !topLoadingFrame && !WorkQueue::shared()->count())
-        dump();
-    m_waitToDump = false;
-    waitForPolicy = false;
-}
-
-JSStringRef TestRunner::pathToLocalResource(JSContextRef context, JSStringRef url)
-{
-    GOwnPtr<char> urlCString(JSStringCopyUTF8CString(url));
-    if (!g_str_has_prefix(urlCString.get(), "file:///tmp/LayoutTests/"))
-        return JSStringRetain(url);
-
-    const char* layoutTestsSuffix = urlCString.get() + strlen("file:///tmp/");
-    GOwnPtr<char> testPath(g_build_filename(getTopLevelPath().data(), layoutTestsSuffix, NULL));
-    GOwnPtr<char> testURI(g_filename_to_uri(testPath.get(), 0, 0));
-    return JSStringCreateWithUTF8CString(testURI.get());
-}
-
-static CString soupURIToStringPreservingPassword(SoupURI* soupURI)
-{
-    if (!soupURI->password) {
-        GOwnPtr<char> uriString(soup_uri_to_string(soupURI, FALSE));
-        return uriString.get();
-    }
-
-    // soup_uri_to_string does not insert the password into the string, so we need to create the
-    // URI string and then reinsert any credentials that were present in the SoupURI. All tests that
-    // use URL-embedded credentials use HTTP, so it's safe here.
-    GOwnPtr<char> password(soupURI->password);
-    GOwnPtr<char> user(soupURI->user);
-    soupURI->password = 0;
-    soupURI->user = 0;
-
-    GOwnPtr<char> uriString(soup_uri_to_string(soupURI, FALSE));
-    String absoluteURIWithoutCredentialString = String::fromUTF8(uriString.get());
-    String protocolAndCredential = String::format("http://%s:%s@", user ? user.get() : "", password.get());
-    return absoluteURIWithoutCredentialString.replace("http://", protocolAndCredential).utf8();
-}
-
-void TestRunner::queueLoad(JSStringRef url, JSStringRef target)
-{
-    GOwnPtr<gchar> relativeURL(JSStringCopyUTF8CString(url));
-    SoupURI* baseURI = soup_uri_new(webkit_web_frame_get_uri(mainFrame));
-    SoupURI* absoluteURI = soup_uri_new_with_base(baseURI, relativeURL.get());
-    soup_uri_free(baseURI);
-
-    if (!absoluteURI) {
-        WorkQueue::shared()->queue(new LoadItem(url, target));
-        return;
-    }
-
-    CString absoluteURIString = soupURIToStringPreservingPassword(absoluteURI);
-    JSRetainPtr<JSStringRef> absoluteURL(Adopt, JSStringCreateWithUTF8CString(absoluteURIString.data()));
-    WorkQueue::shared()->queue(new LoadItem(absoluteURL.get(), target));
-    soup_uri_free(absoluteURI);
-}
-
-void TestRunner::setAcceptsEditing(bool acceptsEditing)
-{
-    WebKitWebView* webView = webkit_web_frame_get_web_view(mainFrame);
-    webkit_web_view_set_editable(webView, acceptsEditing);
-}
-
-void TestRunner::setAlwaysAcceptCookies(bool alwaysAcceptCookies)
-{
-    SoupSession* session = webkit_get_default_session();
-    SoupCookieJar* jar = reinterpret_cast<SoupCookieJar*>(soup_session_get_feature(session, SOUP_TYPE_COOKIE_JAR));
-
-    /* If the jar was not created - we create it on demand, i.e, just
-       in case we have HTTP requests - then we must create it here in
-       order to set the proper accept policy */
-    if (!jar) {
-        jar = soup_cookie_jar_new();
-        soup_session_add_feature(session, SOUP_SESSION_FEATURE(jar));
-        g_object_unref(jar);
-    }
-
-    SoupCookieJarAcceptPolicy policy;
-
-    if (alwaysAcceptCookies)
-        policy = SOUP_COOKIE_JAR_ACCEPT_ALWAYS;
-    else
-        policy = SOUP_COOKIE_JAR_ACCEPT_NO_THIRD_PARTY;
-
-    g_object_set(G_OBJECT(jar), SOUP_COOKIE_JAR_ACCEPT_POLICY, policy, NULL);
-}
-
-void TestRunner::setCustomPolicyDelegate(bool setDelegate, bool permissive)
-{
-    // FIXME: implement
-}
-
-void TestRunner::waitForPolicyDelegate()
-{
-    waitForPolicy = true;
-    setWaitToDump(true);
-}
-
-void TestRunner::setScrollbarPolicy(JSStringRef orientation, JSStringRef policy)
-{
-    // FIXME: implement
-}
-
-void TestRunner::addOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef protocol, JSStringRef host, bool includeSubdomains)
-{
-    gchar* sourceOriginGChar = JSStringCopyUTF8CString(sourceOrigin);
-    gchar* protocolGChar = JSStringCopyUTF8CString(protocol);
-    gchar* hostGChar = JSStringCopyUTF8CString(host);
-    DumpRenderTreeSupportGtk::whiteListAccessFromOrigin(sourceOriginGChar, protocolGChar, hostGChar, includeSubdomains);
-    g_free(sourceOriginGChar);
-    g_free(protocolGChar);
-    g_free(hostGChar);
-}
-
-void TestRunner::removeOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef protocol, JSStringRef host, bool includeSubdomains)
-{
-    GOwnPtr<gchar> sourceOriginGChar(JSStringCopyUTF8CString(sourceOrigin));
-    GOwnPtr<gchar> protocolGChar(JSStringCopyUTF8CString(protocol));
-    GOwnPtr<gchar> hostGChar(JSStringCopyUTF8CString(host));
-    DumpRenderTreeSupportGtk::removeWhiteListAccessFromOrigin(sourceOriginGChar.get(), protocolGChar.get(), hostGChar.get(), includeSubdomains);
-}
-
-void TestRunner::setMainFrameIsFirstResponder(bool flag)
-{
-    // FIXME: implement
-}
-
-void TestRunner::setTabKeyCyclesThroughElements(bool cycles)
-{
-    WebKitWebView* webView = webkit_web_frame_get_web_view(mainFrame);
-    WebKitWebSettings* settings = webkit_web_view_get_settings(webView);
-    g_object_set(G_OBJECT(settings), "tab-key-cycles-through-elements", cycles, NULL);
-}
-
-void TestRunner::setUseDashboardCompatibilityMode(bool flag)
-{
-    // FIXME: implement
-}
-
-static gchar* userStyleSheet = NULL;
-static gboolean userStyleSheetEnabled = TRUE;
-
-void TestRunner::setUserStyleSheetEnabled(bool flag)
-{
-    userStyleSheetEnabled = flag;
-
-    WebKitWebView* webView = webkit_web_frame_get_web_view(mainFrame);
-    WebKitWebSettings* settings = webkit_web_view_get_settings(webView);
-    if (flag && userStyleSheet)
-        g_object_set(G_OBJECT(settings), "user-stylesheet-uri", userStyleSheet, NULL);
-    else
-        g_object_set(G_OBJECT(settings), "user-stylesheet-uri", "", NULL);
-}
-
-void TestRunner::setUserStyleSheetLocation(JSStringRef path)
-{
-    g_free(userStyleSheet);
-    userStyleSheet = JSStringCopyUTF8CString(path);
-    if (userStyleSheetEnabled)
-        setUserStyleSheetEnabled(true);
-}
-
-void TestRunner::setValueForUser(JSContextRef context, JSValueRef nodeObject, JSStringRef value)
-{
-    DumpRenderTreeSupportGtk::setValueForUser(context, nodeObject, value);
-}
-
-void TestRunner::setViewModeMediaFeature(JSStringRef mode)
-{
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    ASSERT(view);
-
-    char* viewMode = JSStringCopyUTF8CString(mode);
-
-    if (!g_strcmp0(viewMode, "windowed"))
-        webkit_web_view_set_view_mode(view, WEBKIT_WEB_VIEW_VIEW_MODE_WINDOWED);
-    else if (!g_strcmp0(viewMode, "floating"))
-        webkit_web_view_set_view_mode(view, WEBKIT_WEB_VIEW_VIEW_MODE_FLOATING);
-    else if (!g_strcmp0(viewMode, "fullscreen"))
-        webkit_web_view_set_view_mode(view, WEBKIT_WEB_VIEW_VIEW_MODE_FULLSCREEN);
-    else if (!g_strcmp0(viewMode, "maximized"))
-        webkit_web_view_set_view_mode(view, WEBKIT_WEB_VIEW_VIEW_MODE_MAXIMIZED);
-    else if (!g_strcmp0(viewMode, "minimized"))
-        webkit_web_view_set_view_mode(view, WEBKIT_WEB_VIEW_VIEW_MODE_MINIMIZED);
-
-    g_free(viewMode);
-}
-
-void TestRunner::setWindowIsKey(bool windowIsKey)
-{
-    // FIXME: implement
-}
-
-static gboolean waitToDumpWatchdogFired(void*)
-{
-    setWaitToDumpWatchdog(0);
-    gTestRunner->waitToDumpWatchdogTimerFired();
-    return FALSE;
-}
-
-void TestRunner::setWaitToDump(bool waitUntilDone)
-{
-    static const int timeoutSeconds = 30;
-
-    m_waitToDump = waitUntilDone;
-    if (m_waitToDump && shouldSetWaitToDumpWatchdog())
-        setWaitToDumpWatchdog(g_timeout_add_seconds(timeoutSeconds, waitToDumpWatchdogFired, 0));
-}
-
-int TestRunner::windowCount()
-{
-    // +1 -> including the main view
-    return g_slist_length(webViewList) + 1;
-}
-
-void TestRunner::setPrivateBrowsingEnabled(bool flag)
-{
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    ASSERT(view);
-
-    WebKitWebSettings* settings = webkit_web_view_get_settings(view);
-    g_object_set(G_OBJECT(settings), "enable-private-browsing", flag, NULL);
-}
-
-void TestRunner::setJavaScriptCanAccessClipboard(bool flag)
-{
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    ASSERT(view);
-
-    WebKitWebSettings* settings = webkit_web_view_get_settings(view);
-    g_object_set(G_OBJECT(settings), "javascript-can-access-clipboard", flag, NULL);
-}
-
-void TestRunner::setXSSAuditorEnabled(bool flag)
-{
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    ASSERT(view);
-
-    WebKitWebSettings* settings = webkit_web_view_get_settings(view);
-    g_object_set(G_OBJECT(settings), "enable-xss-auditor", flag, NULL);
-}
-
-void TestRunner::setSpatialNavigationEnabled(bool flag)
-{
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    ASSERT(view);
-
-    WebKitWebSettings* settings = webkit_web_view_get_settings(view);
-    g_object_set(G_OBJECT(settings), "enable-spatial-navigation", flag, NULL);
-}
-
-void TestRunner::setAllowUniversalAccessFromFileURLs(bool flag)
-{
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    ASSERT(view);
-
-    WebKitWebSettings* settings = webkit_web_view_get_settings(view);
-    g_object_set(G_OBJECT(settings), "enable-universal-access-from-file-uris", flag, NULL);
-}
-
-void TestRunner::setAllowFileAccessFromFileURLs(bool flag)
-{
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    ASSERT(view);
-
-    WebKitWebSettings* settings = webkit_web_view_get_settings(view);
-    g_object_set(G_OBJECT(settings), "enable-file-access-from-file-uris", flag, NULL);
-}
-
-void TestRunner::setAuthorAndUserStylesEnabled(bool flag)
-{
-    // FIXME: implement
-}
-
-void TestRunner::setMockDeviceOrientation(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma)
-{
-    // FIXME: Implement for DeviceOrientation layout tests.
-    // See https://bugs.webkit.org/show_bug.cgi?id=30335.
-}
-
-void TestRunner::setMockGeolocationPosition(double latitude, double longitude, double accuracy, bool, double, bool, double, bool, double, bool, double)
-{
-    WebKitWebView* view = WEBKIT_WEB_VIEW(g_slist_nth_data(webViewList, 0));
-    if (!view)
-        view = webkit_web_frame_get_web_view(mainFrame);
-    ASSERT(view);
-
-    DumpRenderTreeSupportGtk::setMockGeolocationPosition(view, latitude, longitude, accuracy);
-}
-
-void TestRunner::setMockGeolocationPositionUnavailableError(JSStringRef message)
-{
-    WebKitWebView* view = WEBKIT_WEB_VIEW(g_slist_nth_data(webViewList, 0));
-    if (!view)
-        view = webkit_web_frame_get_web_view(mainFrame);
-    ASSERT(view);
-
-    GOwnPtr<gchar> cMessage(JSStringCopyUTF8CString(message));
-    DumpRenderTreeSupportGtk::setMockGeolocationPositionUnavailableError(view, cMessage.get());
-}
-
-void TestRunner::setGeolocationPermission(bool allow)
-{
-    setGeolocationPermissionCommon(allow);
-    WebKitWebView* view = WEBKIT_WEB_VIEW(g_slist_nth_data(webViewList, 0));
-    if (!view)
-        view = webkit_web_frame_get_web_view(mainFrame);
-    ASSERT(view);
-
-    DumpRenderTreeSupportGtk::setMockGeolocationPermission(view, allow);
-}
-
-int TestRunner::numberOfPendingGeolocationPermissionRequests()
-{
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    if (!view)
-        view = webkit_web_frame_get_web_view(mainFrame);
-    ASSERT(view);
-
-    return DumpRenderTreeSupportGtk::numberOfPendingGeolocationPermissionRequests(view);
-}
-
-void TestRunner::addMockSpeechInputResult(JSStringRef result, double confidence, JSStringRef language)
-{
-    // FIXME: Implement for speech input layout tests.
-    // See https://bugs.webkit.org/show_bug.cgi?id=39485.
-}
-
-void TestRunner::setMockSpeechInputDumpRect(bool flag)
-{
-    // FIXME: Implement for speech input layout tests.
-    // See https://bugs.webkit.org/show_bug.cgi?id=39485.
-}
-
-void TestRunner::startSpeechInput(JSContextRef inputElement)
-{
-    // FIXME: Implement for speech input layout tests.
-    // See https://bugs.webkit.org/show_bug.cgi?id=39485.
-}
-
-void TestRunner::setIconDatabaseEnabled(bool enabled)
-{
-    WebKitIconDatabase* database = webkit_get_icon_database();
-    if (enabled) {
-        GOwnPtr<gchar> iconDatabasePath(g_build_filename(g_get_tmp_dir(), "DumpRenderTree", "icondatabase", NULL));
-        webkit_icon_database_set_path(database, iconDatabasePath.get());
-    } else
-        webkit_icon_database_set_path(database, 0);
-}
-
-void TestRunner::setPopupBlockingEnabled(bool flag)
-{
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    ASSERT(view);
-
-    WebKitWebSettings* settings = webkit_web_view_get_settings(view);
-    g_object_set(G_OBJECT(settings), "javascript-can-open-windows-automatically", !flag, NULL);
-
-}
-
-void TestRunner::setPluginsEnabled(bool flag)
-{
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    ASSERT(view);
-
-    WebKitWebSettings* settings = webkit_web_view_get_settings(view);
-    g_object_set(G_OBJECT(settings), "enable-plugins", flag, NULL);
-}
-
-void TestRunner::execCommand(JSStringRef name, JSStringRef value)
-{
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    ASSERT(view);
-
-    gchar* cName = JSStringCopyUTF8CString(name);
-    gchar* cValue = JSStringCopyUTF8CString(value);
-    DumpRenderTreeSupportGtk::executeCoreCommandByName(view, cName, cValue);
-    g_free(cName);
-    g_free(cValue);
-}
-
-bool TestRunner::findString(JSContextRef context, JSStringRef target, JSObjectRef optionsArray)
-{
-    WebKitFindOptions findOptions = 0;
-    WebKitWebView* webView = webkit_web_frame_get_web_view(mainFrame);
-    ASSERT(webView);
-
-    JSRetainPtr<JSStringRef> lengthPropertyName(Adopt, JSStringCreateWithUTF8CString("length"));
-    JSValueRef lengthValue = JSObjectGetProperty(context, optionsArray, lengthPropertyName.get(), 0); 
-    if (!JSValueIsNumber(context, lengthValue))
-        return false;
-
-    GOwnPtr<gchar> targetString(JSStringCopyUTF8CString(target));
-
-    size_t length = static_cast<size_t>(JSValueToNumber(context, lengthValue, 0));
-    for (size_t i = 0; i < length; ++i) {
-        JSValueRef value = JSObjectGetPropertyAtIndex(context, optionsArray, i, 0); 
-        if (!JSValueIsString(context, value))
-            continue;
-    
-        JSRetainPtr<JSStringRef> optionName(Adopt, JSValueToStringCopy(context, value, 0));
-
-        if (JSStringIsEqualToUTF8CString(optionName.get(), "CaseInsensitive"))
-            findOptions |= WebKit::WebFindOptionsCaseInsensitive;
-        else if (JSStringIsEqualToUTF8CString(optionName.get(), "AtWordStarts"))
-            findOptions |= WebKit::WebFindOptionsAtWordStarts;
-        else if (JSStringIsEqualToUTF8CString(optionName.get(), "TreatMedialCapitalAsWordStart"))
-            findOptions |= WebKit::WebFindOptionsTreatMedialCapitalAsWordStart;
-        else if (JSStringIsEqualToUTF8CString(optionName.get(), "Backwards"))
-            findOptions |= WebKit::WebFindOptionsBackwards;
-        else if (JSStringIsEqualToUTF8CString(optionName.get(), "WrapAround"))
-            findOptions |= WebKit::WebFindOptionsWrapAround;
-        else if (JSStringIsEqualToUTF8CString(optionName.get(), "StartInSelection"))
-            findOptions |= WebKit::WebFindOptionsStartInSelection;
-    }   
-
-    return DumpRenderTreeSupportGtk::findString(webView, targetString.get(), findOptions); 
-}
-
-bool TestRunner::isCommandEnabled(JSStringRef name)
-{
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    ASSERT(view);
-
-    gchar* cName = JSStringCopyUTF8CString(name);
-    bool result = DumpRenderTreeSupportGtk::isCommandEnabled(view, cName);
-    g_free(cName);
-    return result;
-}
-
-void TestRunner::setCacheModel(int cacheModel)
-{
-    // These constants are derived from the Mac cache model enum in Source/WebKit/mac/WebView/WebPreferences.h.
-    switch (cacheModel) {
-    case 0:
-        webkit_set_cache_model(WEBKIT_CACHE_MODEL_DOCUMENT_VIEWER);
-        break;
-    case 1:
-        webkit_set_cache_model(WEBKIT_CACHE_MODEL_DOCUMENT_BROWSER);
-        break;
-    case 2:
-        webkit_set_cache_model(WEBKIT_CACHE_MODEL_WEB_BROWSER);
-        break;
-    default:
-        ASSERT_NOT_REACHED();
-    }
-}
-
-void TestRunner::setPersistentUserStyleSheetLocation(JSStringRef jsURL)
-{
-    // FIXME: implement
-}
-
-void TestRunner::clearPersistentUserStyleSheet()
-{
-    // FIXME: implement
-}
-
-void TestRunner::clearAllApplicationCaches()
-{
-    // FIXME: Implement to support application cache quotas.
-}
-
-void TestRunner::setApplicationCacheOriginQuota(unsigned long long quota)
-{
-    // FIXME: Implement to support application cache quotas.
-}
-
-void TestRunner::clearApplicationCacheForOrigin(OpaqueJSString*)
-{
-    // FIXME: Implement to support deleting all application caches for an origin.
-}
-
-long long TestRunner::localStorageDiskUsageForOrigin(JSStringRef originIdentifier)
-{
-    // FIXME: Implement to support getting disk usage in bytes for an origin.
-    return 0;
-}
-
-JSValueRef TestRunner::originsWithApplicationCache(JSContextRef context)
-{
-    // FIXME: Implement to get origins that contain application caches.
-    return JSValueMakeUndefined(context);
-}
-
-long long TestRunner::applicationCacheDiskUsageForOrigin(JSStringRef name)
-{
-    // FIXME: implement
-    return 0;
-}
-
-void TestRunner::clearAllDatabases()
-{
-    webkit_remove_all_web_databases();
-}
- 
-void TestRunner::setDatabaseQuota(unsigned long long quota)
-{
-    WebKitSecurityOrigin* origin = webkit_web_frame_get_security_origin(mainFrame);
-    webkit_security_origin_set_web_database_quota(origin, quota);
-}
-
-JSValueRef TestRunner::originsWithLocalStorage(JSContextRef context)
-{
-    // FIXME: implement
-    return JSValueMakeUndefined(context);
-}
-
-void TestRunner::deleteAllLocalStorage()
-{
-        // FIXME: implement
-}
-
-void TestRunner::deleteLocalStorageForOrigin(JSStringRef originIdentifier)
-{
-        // FIXME: implement
-}
-
-void TestRunner::observeStorageTrackerNotifications(unsigned number)
-{
-        // FIXME: implement
-}
-
-void TestRunner::syncLocalStorage()
-{
-    // FIXME: implement
-}
-
-void TestRunner::setDomainRelaxationForbiddenForURLScheme(bool forbidden, JSStringRef scheme)
-{
-    GOwnPtr<gchar> urlScheme(JSStringCopyUTF8CString(scheme));
-    DumpRenderTreeSupportGtk::setDomainRelaxationForbiddenForURLScheme(forbidden, urlScheme.get());
-}
-
-void TestRunner::goBack()
-{
-    WebKitWebView* webView = webkit_web_frame_get_web_view(mainFrame);
-    webkit_web_view_go_back(webView);
-}
-
-void TestRunner::setDefersLoading(bool defers)
-{
-    WebKitWebView* webView = webkit_web_frame_get_web_view(mainFrame);
-    DumpRenderTreeSupportGtk::setDefersLoading(webView, defers);
-}
-
-void TestRunner::setAppCacheMaximumSize(unsigned long long size)
-{
-    webkit_application_cache_set_maximum_size(size);
-}
-
-static gboolean booleanFromValue(gchar* value)
-{
-    return !g_ascii_strcasecmp(value, "true") || !g_ascii_strcasecmp(value, "1");
-}
-
-void TestRunner::overridePreference(JSStringRef key, JSStringRef value)
-{
-    GOwnPtr<gchar> originalName(JSStringCopyUTF8CString(key));
-    GOwnPtr<gchar> valueAsString(JSStringCopyUTF8CString(value));
-
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    ASSERT(view);
-
-    // This transformation could be handled by a hash table (and it once was), but
-    // having it prominent, makes it easier for people from other ports to keep the
-    // list up to date.
-    const gchar* propertyName = 0;
-    if (g_str_equal(originalName.get(), "WebKitJavaScriptEnabled"))
-        propertyName = "enable-scripts";
-    else if (g_str_equal(originalName.get(), "WebKitDefaultFontSize"))
-        propertyName = "default-font-size";
-    else if (g_str_equal(originalName.get(), "WebKitEnableCaretBrowsing"))
-        propertyName = "enable-caret-browsing";
-    else if (g_str_equal(originalName.get(), "WebKitUsesPageCachePreferenceKey"))
-        propertyName = "enable-page-cache";
-    else if (g_str_equal(originalName.get(), "WebKitPluginsEnabled"))
-        propertyName = "enable-plugins";
-    else if (g_str_equal(originalName.get(), "WebKitHyperlinkAuditingEnabled"))
-        propertyName = "enable-hyperlink-auditing";
-    else if (g_str_equal(originalName.get(), "WebKitWebGLEnabled"))
-        propertyName = "enable-webgl";
-    else if (g_str_equal(originalName.get(), "WebKitWebAudioEnabled"))
-        propertyName = "enable-webaudio";
-    else if (g_str_equal(originalName.get(), "WebKitDisplayImagesKey"))
-        propertyName = "auto-load-images";
-    else if (g_str_equal(originalName.get(), "WebKitTabToLinksPreferenceKey")) {
-        DumpRenderTreeSupportGtk::setLinksIncludedInFocusChain(booleanFromValue(valueAsString.get()));
-        return;
-    } else if (g_str_equal(originalName.get(), "WebKitPageCacheSupportsPluginsPreferenceKey")) {
-        DumpRenderTreeSupportGtk::setPageCacheSupportsPlugins(webkit_web_frame_get_web_view(mainFrame), booleanFromValue(valueAsString.get()));
-        return;
-    } else if (g_str_equal(originalName.get(), "WebKitCSSGridLayoutEnabled")) {
-        DumpRenderTreeSupportGtk::setCSSGridLayoutEnabled(webkit_web_frame_get_web_view(mainFrame), booleanFromValue(valueAsString.get()));
-        return;
-    } else if (g_str_equal(originalName.get(), "WebKitCSSRegionsEnabled")) {
-        DumpRenderTreeSupportGtk::setCSSRegionsEnabled(webkit_web_frame_get_web_view(mainFrame), booleanFromValue(valueAsString.get()));
-        return;
-    } else if (g_str_equal(originalName.get(), "WebKitCSSCustomFilterEnabled")) {
-        DumpRenderTreeSupportGtk::setCSSCustomFilterEnabled(webkit_web_frame_get_web_view(mainFrame), booleanFromValue(valueAsString.get()));
-        return;
-    } else {
-        fprintf(stderr, "TestRunner::overridePreference tried to override "
-                "unknown preference '%s'.\n", originalName.get());
-        return;
-    }
-
-    WebKitWebSettings* settings = webkit_web_view_get_settings(view);
-    GParamSpec* pspec = g_object_class_find_property(G_OBJECT_CLASS(
-        WEBKIT_WEB_SETTINGS_GET_CLASS(settings)), propertyName);
-    GValue currentPropertyValue = { 0, { { 0 } } };
-    g_value_init(&currentPropertyValue, pspec->value_type);
-
-    if (G_VALUE_HOLDS_STRING(&currentPropertyValue))
-        g_object_set(settings, propertyName, valueAsString.get(), NULL);
-    else if (G_VALUE_HOLDS_BOOLEAN(&currentPropertyValue))
-        g_object_set(G_OBJECT(settings), propertyName, booleanFromValue(valueAsString.get()), NULL);
-    else if (G_VALUE_HOLDS_INT(&currentPropertyValue))
-        g_object_set(G_OBJECT(settings), propertyName, atoi(valueAsString.get()), NULL);
-    else if (G_VALUE_HOLDS_FLOAT(&currentPropertyValue)) {
-        gfloat newValue = g_ascii_strtod(valueAsString.get(), 0);
-        g_object_set(G_OBJECT(settings), propertyName, newValue, NULL);
-    } else
-        fprintf(stderr, "TestRunner::overridePreference failed to override "
-                "preference '%s'.\n", originalName.get());
-}
-
-void TestRunner::addUserScript(JSStringRef source, bool runAtStart, bool allFrames)
-{
-    GOwnPtr<gchar> sourceCode(JSStringCopyUTF8CString(source));
-    DumpRenderTreeSupportGtk::addUserScript(mainFrame, sourceCode.get(), runAtStart, allFrames);
-}
-
-void TestRunner::addUserStyleSheet(JSStringRef source, bool allFrames)
-{
-    GOwnPtr<gchar> sourceCode(JSStringCopyUTF8CString(source));
-    DumpRenderTreeSupportGtk::addUserStyleSheet(mainFrame, sourceCode.get(), allFrames);
-    // FIXME: needs more investigation why userscripts/user-style-top-frame-only.html fails when allFrames is false.
-
-}
-
-void TestRunner::setDeveloperExtrasEnabled(bool enabled)
-{
-    WebKitWebView* webView = webkit_web_frame_get_web_view(mainFrame);
-    WebKitWebSettings* webSettings = webkit_web_view_get_settings(webView);
-
-    g_object_set(webSettings, "enable-developer-extras", enabled, NULL);
-}
-
-void TestRunner::showWebInspector()
-{
-    WebKitWebView* webView = webkit_web_frame_get_web_view(mainFrame);
-    WebKitWebInspector* inspector = webkit_web_view_get_inspector(webView);
-
-    webkit_web_inspector_show(inspector);
-}
-
-void TestRunner::closeWebInspector()
-{
-    WebKitWebView* webView = webkit_web_frame_get_web_view(mainFrame);
-    WebKitWebInspector* inspector = webkit_web_view_get_inspector(webView);
-
-    webkit_web_inspector_close(inspector);
-}
-
-void TestRunner::evaluateInWebInspector(long callId, JSStringRef script)
-{
-    WebKitWebView* webView = webkit_web_frame_get_web_view(mainFrame);
-    WebKitWebInspector* inspector = webkit_web_view_get_inspector(webView);
-    char* scriptString = JSStringCopyUTF8CString(script);
-
-    webkit_web_inspector_execute_script(inspector, callId, scriptString);
-    g_free(scriptString);
-}
-
-void TestRunner::evaluateScriptInIsolatedWorldAndReturnValue(unsigned worldID, JSObjectRef globalObject, JSStringRef script)
-{
-    // FIXME: Implement this.
-}
-
-void TestRunner::evaluateScriptInIsolatedWorld(unsigned worldID, JSObjectRef globalObject, JSStringRef script)
-{
-    // FIXME: Implement this.
-}
-
-void TestRunner::removeAllVisitedLinks()
-{
-    // FIXME: Implement this.
-}
-
-bool TestRunner::callShouldCloseOnWebView()
-{
-    return DumpRenderTreeSupportGtk::shouldClose(mainFrame);
-}
-
-void TestRunner::apiTestNewWindowDataLoadBaseURL(JSStringRef utf8Data, JSStringRef baseURL)
-{
-
-}
-
-void TestRunner::apiTestGoToCurrentBackForwardItem()
-{
-
-}
-
-void TestRunner::setWebViewEditable(bool)
-{
-}
-
-void TestRunner::authenticateSession(JSStringRef, JSStringRef, JSStringRef)
-{
-}
-
-void TestRunner::abortModal()
-{
-}
-
-void TestRunner::setSerializeHTTPLoads(bool serialize)
-{
-    DumpRenderTreeSupportGtk::setSerializeHTTPLoads(serialize);
-}
-
-void TestRunner::setTextDirection(JSStringRef direction)
-{
-    GOwnPtr<gchar> writingDirection(JSStringCopyUTF8CString(direction));
-
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    ASSERT(view);
-
-    if (g_str_equal(writingDirection.get(), "auto"))
-        gtk_widget_set_direction(GTK_WIDGET(view), GTK_TEXT_DIR_NONE);
-    else if (g_str_equal(writingDirection.get(), "ltr"))
-        gtk_widget_set_direction(GTK_WIDGET(view), GTK_TEXT_DIR_LTR);
-    else if (g_str_equal(writingDirection.get(), "rtl"))
-        gtk_widget_set_direction(GTK_WIDGET(view), GTK_TEXT_DIR_RTL);
-    else
-        fprintf(stderr, "TestRunner::setTextDirection called with unknown direction: '%s'.\n", writingDirection.get());
-}
-
-void TestRunner::addChromeInputField()
-{
-}
-
-void TestRunner::removeChromeInputField()
-{
-}
-
-void TestRunner::focusWebView()
-{
-}
-
-void TestRunner::setBackingScaleFactor(double)
-{
-}
-
-void TestRunner::grantWebNotificationPermission(JSStringRef origin)
-{
-}
-
-void TestRunner::denyWebNotificationPermission(JSStringRef jsOrigin)
-{
-}
-
-void TestRunner::removeAllWebNotificationPermissions()
-{
-}
-
-void TestRunner::simulateWebNotificationClick(JSValueRef jsNotification)
-{
-}
-
-void TestRunner::simulateLegacyWebNotificationClick(JSStringRef title)
-{
-}
-
-void TestRunner::resetPageVisibility()
-{
-    // FIXME: Implement this.
-}
-
-void TestRunner::setPageVisibility(const char*)
-{
-    // FIXME: Implement this.
-}
-
-void TestRunner::setAutomaticLinkDetectionEnabled(bool)
-{
-    // FIXME: Implement this.
-}
-
-void TestRunner::setStorageDatabaseIdleInterval(double)
-{
-    // FIXME: Implement this.
-}
-
-void TestRunner::closeIdleLocalStorageDatabases()
-{
-}
diff --git a/Tools/DumpRenderTree/gtk/TextInputController.cpp b/Tools/DumpRenderTree/gtk/TextInputController.cpp
deleted file mode 100644
index eed3bbe..0000000
--- a/Tools/DumpRenderTree/gtk/TextInputController.cpp
+++ /dev/null
@@ -1,215 +0,0 @@
-/*
- * Copyright (C) 2011 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "TextInputController.h"
-
-#include "DumpRenderTree.h"
-#include "WebCoreSupport/DumpRenderTreeSupportGtk.h"
-#include <GOwnPtrGtk.h>
-#include <JavaScriptCore/JSObjectRef.h>
-#include <JavaScriptCore/JSRetainPtr.h>
-#include <JavaScriptCore/JSStringRef.h>
-#include <cstring>
-#include <webkit/webkit.h>
-
-static JSValueRef setMarkedTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    ASSERT(view);
-    if (argumentCount < 3)
-        return JSValueMakeUndefined(context);
-
-    JSStringRef string = JSValueToStringCopy(context, arguments[0], exception);
-    ASSERT(!exception || !*exception);
-
-    size_t bufferSize = JSStringGetMaximumUTF8CStringSize(string);
-    GOwnPtr<gchar> stringBuffer(static_cast<gchar*>(g_malloc(bufferSize)));
-    JSStringGetUTF8CString(string, stringBuffer.get(), bufferSize);
-    JSStringRelease(string);
-
-    int start = static_cast<int>(JSValueToNumber(context, arguments[1], exception));
-    ASSERT(!exception || !*exception);
-
-    int length = static_cast<int>(JSValueToNumber(context, arguments[2], exception));
-    ASSERT(!exception || !*exception);
-
-    DumpRenderTreeSupportGtk::setComposition(view, stringBuffer.get(), start, length);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef hasMarkedTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    ASSERT(view);
-    return JSValueMakeBoolean(context, DumpRenderTreeSupportGtk::hasComposition(view));
-}
-
-static JSValueRef markedRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    ASSERT(view);
-
-    int start, length;
-    if (!DumpRenderTreeSupportGtk::compositionRange(view, &start, &length))
-        return JSValueMakeUndefined(context);
-
-    JSValueRef arrayValues[2];
-    arrayValues[0] = JSValueMakeNumber(context, start);
-    arrayValues[1] = JSValueMakeNumber(context, length);
-    JSObjectRef arrayObject = JSObjectMakeArray(context, 2, arrayValues, exception);
-    ASSERT(!exception || !*exception);
-    return arrayObject;
-}
-
-static JSValueRef insertTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    ASSERT(view);
-
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSStringRef string = JSValueToStringCopy(context, arguments[0], exception);
-    ASSERT(!exception || !*exception);
-
-    size_t bufferSize = JSStringGetMaximumUTF8CStringSize(string);
-    GOwnPtr<gchar> stringBuffer(static_cast<gchar*>(g_malloc(bufferSize)));
-    JSStringGetUTF8CString(string, stringBuffer.get(), bufferSize);
-    JSStringRelease(string);
-
-    DumpRenderTreeSupportGtk::confirmComposition(view, stringBuffer.get());
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef unmarkTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    ASSERT(view);
-
-    DumpRenderTreeSupportGtk::confirmComposition(view, 0);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef firstRectForCharacterRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    ASSERT(view);
-    if (argumentCount < 2)
-        return JSValueMakeUndefined(context);
-
-    int location = static_cast<int>(JSValueToNumber(context, arguments[0], exception));
-    ASSERT(!exception || !*exception);
-
-    int length = static_cast<int>(JSValueToNumber(context, arguments[1], exception));
-    ASSERT(!exception || !*exception);
-
-    cairo_rectangle_int_t rect;
-    if (!DumpRenderTreeSupportGtk::firstRectForCharacterRange(view, location, length, &rect))
-        return JSValueMakeUndefined(context);
-
-    JSValueRef arrayValues[4];
-    arrayValues[0] = JSValueMakeNumber(context, rect.x);
-    arrayValues[1] = JSValueMakeNumber(context, rect.y);
-    arrayValues[2] = JSValueMakeNumber(context, rect.width);
-    arrayValues[3] = JSValueMakeNumber(context, rect.height);
-    JSObjectRef arrayObject = JSObjectMakeArray(context, 4, arrayValues, exception);
-    ASSERT(!exception || !*exception);
-
-    return arrayObject;
-}
-
-static JSValueRef selectedRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    ASSERT(view);
-
-    int start, length;
-    if (!DumpRenderTreeSupportGtk::selectedRange(view, &start, &length))
-        return JSValueMakeUndefined(context);
-
-    JSValueRef arrayValues[2];
-    arrayValues[0] = JSValueMakeNumber(context, start);
-    arrayValues[1] = JSValueMakeNumber(context, length);
-    JSObjectRef arrayObject = JSObjectMakeArray(context, 2, arrayValues, exception);
-    ASSERT(!exception || !*exception);
-
-    return arrayObject;
-}
-
-static JSValueRef doCommandCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame);
-    ASSERT(view);
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSStringRef string = JSValueToStringCopy(context, arguments[0], exception);
-    ASSERT(!exception || !*exception);
-
-    size_t bufferSize = JSStringGetMaximumUTF8CStringSize(string);
-    GOwnPtr<gchar> stringBuffer(static_cast<gchar*>(g_malloc(bufferSize)));
-    JSStringGetUTF8CString(string, stringBuffer.get(), bufferSize);
-    JSStringRelease(string);
-
-    DumpRenderTreeSupportGtk::doCommand(view, stringBuffer.get());
-    return JSValueMakeUndefined(context);
-}
-
-static JSStaticFunction staticFunctions[] = {
-    { "setMarkedText", setMarkedTextCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "hasMarkedText", hasMarkedTextCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "markedRange", markedRangeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "insertText", insertTextCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "unmarkText", unmarkTextCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "firstRectForCharacterRange", firstRectForCharacterRangeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "selectedRange", selectedRangeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "doCommand", doCommandCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { 0, 0, 0 }
-};
-
-static JSClassRef getClass(JSContextRef context)
-{
-    static JSClassRef textInputControllerClass = 0;
-
-    if (!textInputControllerClass) {
-        JSClassDefinition classDefinition = {
-                0, 0, 0, 0, 0, 0,
-                0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
-        classDefinition.staticFunctions = staticFunctions;
-
-        textInputControllerClass = JSClassCreate(&classDefinition);
-    }
-
-    return textInputControllerClass;
-}
-
-JSObjectRef makeTextInputController(JSContextRef context)
-{
-    return JSObjectMake(context, getClass(context), 0);
-}
diff --git a/Tools/DumpRenderTree/gtk/TextInputController.h b/Tools/DumpRenderTree/gtk/TextInputController.h
deleted file mode 100644
index 53793f6..0000000
--- a/Tools/DumpRenderTree/gtk/TextInputController.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * Copyright (C) 2011 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef TextInputController_h
-#define TextInputController_h
-
-typedef const struct OpaqueJSContext* JSContextRef;
-typedef struct OpaqueJSValue* JSObjectRef;
-
-JSObjectRef makeTextInputController(JSContextRef);
-
-#endif
diff --git a/Tools/DumpRenderTree/gtk/WorkQueueItemGtk.cpp b/Tools/DumpRenderTree/gtk/WorkQueueItemGtk.cpp
deleted file mode 100644
index 23eca7b..0000000
--- a/Tools/DumpRenderTree/gtk/WorkQueueItemGtk.cpp
+++ /dev/null
@@ -1,102 +0,0 @@
-/*
- * Copyright (C) 2007 Alp Toker <alp@atoker.com>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this library; see the file COPYING.LIB.  If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-#include "config.h"
-#include "WorkQueueItem.h"
-
-#include "DumpRenderTree.h"
-
-#include <JavaScriptCore/JSStringRef.h>
-#include <string.h>
-#include <webkit/webkit.h>
-#include <wtf/gobject/GOwnPtr.h>
-
-// Returns a newly allocated UTF-8 character buffer which must be freed with g_free()
-gchar* JSStringCopyUTF8CString(JSStringRef jsString)
-{
-    size_t dataSize = JSStringGetMaximumUTF8CStringSize(jsString);
-    gchar* utf8 = (gchar*)g_malloc(dataSize);
-    JSStringGetUTF8CString(jsString, utf8, dataSize);
-
-    return utf8;
-}
-
-bool LoadItem::invoke() const
-{
-    gchar* targetString = JSStringCopyUTF8CString(m_target.get());
-
-    WebKitWebFrame* targetFrame;
-    if (!strlen(targetString))
-        targetFrame = mainFrame;
-    else
-        targetFrame = webkit_web_frame_find_frame(mainFrame, targetString);
-    g_free(targetString);
-
-    gchar* urlString = JSStringCopyUTF8CString(m_url.get());
-    WebKitNetworkRequest* request = webkit_network_request_new(urlString);
-    g_free(urlString);
-    webkit_web_frame_load_request(targetFrame, request);
-    g_object_unref(request);
-
-    return true;
-}
-
-bool LoadHTMLStringItem::invoke() const
-{
-    GOwnPtr<gchar> content(JSStringCopyUTF8CString(m_content.get()));
-    GOwnPtr<gchar> baseURL(JSStringCopyUTF8CString(m_baseURL.get()));
-
-    if (m_unreachableURL) {
-        GOwnPtr<gchar> unreachableURL(JSStringCopyUTF8CString(m_unreachableURL.get()));
-        webkit_web_frame_load_alternate_string(mainFrame, content.get(), baseURL.get(), unreachableURL.get());
-        return true;
-    }
-    webkit_web_frame_load_string(mainFrame, content.get(), 0, 0, baseURL.get());
-    return true;
-}
-
-bool ReloadItem::invoke() const
-{
-    webkit_web_frame_reload(mainFrame);
-    return true;
-}
-
-bool ScriptItem::invoke() const
-{
-    WebKitWebView* webView = webkit_web_frame_get_web_view(mainFrame);
-    gchar* scriptString = JSStringCopyUTF8CString(m_script.get());
-    webkit_web_view_execute_script(webView, scriptString);
-    g_free(scriptString);
-    return true;
-}
-
-bool BackForwardItem::invoke() const
-{
-    WebKitWebView* webView = webkit_web_frame_get_web_view(mainFrame);
-    if (m_howFar == 1)
-        webkit_web_view_go_forward(webView);
-    else if (m_howFar == -1)
-        webkit_web_view_go_back(webView);
-    else {
-        WebKitWebBackForwardList* webBackForwardList = webkit_web_view_get_back_forward_list(webView);
-        WebKitWebHistoryItem* item = webkit_web_back_forward_list_get_nth_item(webBackForwardList, m_howFar);
-        webkit_web_view_go_to_back_forward_item(webView, item);
-    }
-    return true;
-}
diff --git a/Tools/DumpRenderTree/gtk/fonts/AHEM____.TTF b/Tools/DumpRenderTree/gtk/fonts/AHEM____.TTF
deleted file mode 100644
index ac81cb0..0000000
--- a/Tools/DumpRenderTree/gtk/fonts/AHEM____.TTF
+++ /dev/null
Binary files differ
diff --git a/Tools/DumpRenderTree/gtk/fonts/FontWithNoValidEncoding.fon b/Tools/DumpRenderTree/gtk/fonts/FontWithNoValidEncoding.fon
deleted file mode 100644
index 8fff7d9..0000000
--- a/Tools/DumpRenderTree/gtk/fonts/FontWithNoValidEncoding.fon
+++ /dev/null
Binary files differ
diff --git a/Tools/DumpRenderTree/gtk/fonts/fonts.conf b/Tools/DumpRenderTree/gtk/fonts/fonts.conf
deleted file mode 100644
index 3c55e87..0000000
--- a/Tools/DumpRenderTree/gtk/fonts/fonts.conf
+++ /dev/null
@@ -1,419 +0,0 @@
-<?xml version="1.0"?>
-<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
-<fontconfig>
-
-    <!-- Due to patent (http://freetype.sourceforge.net/patents.html)
-         issues hinting gives different results depending on the
-         freetype version of the linux distribution, avoiding hinting
-         gives more consistent results. When all the distributions
-         release freetype the 2.4, which enables by default the
-         hinting method that was patented, we could undo this change
-         and try the hinting again. -->
-    <match target="font">
-        <edit name="hinting" mode="assign">
-            <bool>false</bool>
-        </edit>
-    </match>
-
-    <!-- This system may have turned off selection of bitmap fonts, but
-         we must turn it on again, because we want to be able to test that
-         bitmap fonts with no valid encodings are *never* selected regardless
-         of the Fontconfig settings. So force Fontconfig to select our cruddy
-         bitmap font -->
-    <selectfont>
-        <acceptfont>
-            <pattern>
-                <patelt name="family">
-                    <string>FontWithNoValidEncoding</string>
-                </patelt>
-            </pattern>
-        </acceptfont>
-    </selectfont>
-
-    <!-- The sans-serif font should be Liberation Serif -->
-    <match target="pattern">
-        <test qual="any" name="family">
-            <string>serif</string>
-        </test>
-        <edit name="family" mode="assign">
-            <string>Liberation Serif</string>
-        </edit>
-    </match>
-    <match target="pattern">
-        <test qual="any" name="family">
-            <string>Times</string>
-        </test>
-        <edit name="family" mode="assign">
-            <string>Liberation Serif</string>
-        </edit>
-    </match>
-    <match target="pattern">
-        <test qual="any" name="family">
-            <string>Times New Roman</string>
-        </test>
-        <edit name="family" mode="assign">
-            <string>Liberation Serif</string>
-        </edit>
-    </match>
-
-    <!-- Until we find good fonts to use for cursive and fantasy
-         just use our serif font. -->
-    <match target="pattern">
-        <test qual="any" name="family">
-            <string>cursive</string>
-        </test>
-        <edit name="family" mode="assign">
-            <string>Liberation Serif</string>
-        </edit>
-    </match>
-    <match target="pattern">
-        <test qual="any" name="family">
-            <string>fantasy</string>
-        </test>
-        <edit name="family" mode="assign">
-            <string>Liberation Serif</string>
-        </edit>
-    </match>
-
-    <!-- The sans-serif font should be Liberation Sans -->
-    <match target="pattern">
-        <test qual="any" name="family">
-            <string>sans serif</string>
-        </test>
-        <edit name="family" mode="assign">
-            <string>Liberation Sans</string>
-        </edit>
-    </match>
-    <match target="pattern">
-        <test qual="any" name="family">
-            <string>sans</string>
-        </test>
-        <edit name="family" mode="assign">
-            <string>Liberation Sans</string>
-        </edit>
-    </match>
-    <!-- We need to ensure that layout tests that use "Helvetica" don't
-        fall back to the default serif font -->
-    <match target="pattern">
-      <test qual="any" name="family">
-        <string>Helvetica</string>
-      </test>
-      <edit name="family" mode="assign">
-        <string>Liberation Sans</string>
-      </edit>
-    </match>
-    <match target="pattern">
-      <test qual="any" name="family">
-        <string>Arial</string>
-      </test>
-      <edit name="family" mode="assign">
-        <string>Liberation Sans</string>
-      </edit>
-    </match>
-    <match target="pattern">
-      <test qual="any" name="family">
-        <string>Lucida Grande</string>
-      </test>
-      <edit name="family" mode="assign">
-        <string>Liberation Sans</string>
-      </edit>
-    </match>
-
-    <!-- The Monospace font should be Liberation Mono -->
-    <match target="pattern">
-        <test qual="any" name="family">
-            <string>monospace</string>
-        </test>
-        <edit name="family" mode="assign">
-            <string>Liberation Mono</string>
-        </edit>
-    </match>
-    <match target="pattern">
-        <test qual="any" name="family">
-            <string>mono</string>
-        </test>
-        <edit name="family" mode="assign">
-            <string>Liberation Mono</string>
-        </edit>
-    </match>
-    <!-- We need to ensure that layout tests that use "Courier", "Courier New",
-         and "Monaco" (all monospace fonts) don't fall back to the default
-         serif font -->
-    <match target="pattern">
-      <test qual="any" name="family">
-        <string>Courier</string>
-      </test>
-      <edit name="family" mode="assign">
-        <string>Liberation Mono</string>
-      </edit>
-    </match>
-    <match target="pattern">
-      <test qual="any" name="family">
-        <string>Courier New</string>
-      </test>
-      <edit name="family" mode="assign">
-        <string>Liberation Mono</string>
-      </edit>
-    </match>
-    <match target="pattern">
-      <test qual="any" name="family">
-        <string>Monaco</string>
-      </test>
-      <edit name="family" mode="assign">
-        <string>Liberation Mono</string>
-      </edit>
-    </match>
-
-    <!-- The following hinting specializations are adapted from those in the
-         Chromium test_shell.  We try to duplicate their incredibly thorough
-         testing here -->
-    <match target="pattern">
-        <test name="family" compare="eq">
-            <string>NonAntiAliasedSans</string>
-        </test>
-        <edit name="family" mode="assign">
-            <string>Liberation Sans</string>
-        </edit>
-        <edit name="antialias" mode="assign">
-            <bool>false</bool>
-        </edit>
-    </match>
-    
-    <match target="pattern">
-        <test name="family" compare="eq">
-            <string>SlightHintedSerif</string>
-        </test>
-        <edit name="family" mode="assign">
-            <string>Liberation Serif</string>
-        </edit>
-        <edit name="hinting" mode="assign">
-            <bool>true</bool>
-        </edit>
-        <edit name="hintstyle" mode="assign">
-            <const>hintslight</const>
-        </edit>
-    </match>
-    
-    <match target="pattern">
-        <test name="family" compare="eq">
-            <string>NonHintedSans</string>
-        </test>
-        <edit name="family" mode="assign">
-            <string>Liberation Sans</string>
-        </edit>
-        <!-- These deliberately contradict each other. The 'hinting' preference
-             should take priority -->
-        <edit name="hintstyle" mode="assign">
-            <const>hintfull</const>
-        </edit>
-        <edit name="hinting" mode="assign">
-            <bool>false</bool>
-        </edit>
-    </match>
-    
-    <match target="pattern">
-        <test name="family" compare="eq">
-            <string>AutohintedSerif</string>
-        </test>
-        <edit name="family" mode="assign">
-            <string>Liberation Serif</string>
-        </edit>
-        <edit name="hinting" mode="assign">
-            <bool>true</bool>
-        </edit>
-        <edit name="autohint" mode="assign">
-            <bool>true</bool>
-        </edit>
-        <edit name="hintstyle" mode="assign">
-            <const>hintmedium</const>
-        </edit>
-    </match>
-    
-    <match target="pattern">
-        <test name="family" compare="eq">
-            <string>HintedSerif</string>
-        </test>
-        <edit name="family" mode="assign">
-            <string>Liberation Serif</string>
-        </edit>
-        <edit name="hinting" mode="assign">
-            <bool>true</bool>
-        </edit>
-        <edit name="autohint" mode="assign">
-            <bool>false</bool>
-        </edit>
-        <edit name="hintstyle" mode="assign">
-            <const>hintmedium</const>
-        </edit>
-    </match>
-    
-    <match target="pattern">
-        <test name="family" compare="eq">
-            <string>FullAndAutoHintedSerif</string>
-        </test>
-        <edit name="family" mode="assign">
-            <string>Liberation Serif</string>
-        </edit>
-        <edit name="hinting" mode="assign">
-            <bool>true</bool>
-        </edit>
-        <edit name="autohint" mode="assign">
-            <bool>true</bool>
-        </edit>
-        <edit name="hintstyle" mode="assign">
-            <const>hintfull</const>
-        </edit>
-    </match>
-    
-    <match target="pattern">
-        <test name="family" compare="eq">
-            <string>SubpixelEnabledSans</string>
-        </test>
-        <edit name="family" mode="assign">
-            <string>Liberation Sans</string>
-        </edit>
-        <edit name="rgba" mode="assign">
-            <const>rgb</const>
-        </edit>
-    </match>
-    
-    <match target="pattern">
-        <test name="family" compare="eq">
-            <string>SubpixelDisabledSans</string>
-        </test>
-        <edit name="family" mode="assign">
-            <string>Liberation Sans</string>
-        </edit>
-        <edit name="rgba" mode="assign">
-            <const>none</const>
-        </edit>
-    </match>
-
-    <!-- We need to enable simulated bold to for DejaVu Serif to ensure that we interpret
-         this property correctly in: platform/gtk/fonts/fontconfig-synthetic-bold.html -->
-    <match target="font">
-        <test qual="any" name="family">
-            <string>DejaVu Serif</string>
-        </test>
-        <test name="weight" compare="less_eq">
-            <const>medium</const>
-        </test>
-        <test target="pattern" name="weight" compare="more">
-            <const>medium</const>
-        </test>
-        <edit name="embolden" mode="assign">
-            <bool>true</bool>
-        </edit>
-        <edit name="weight" mode="assign">
-            <const>bold</const>
-        </edit>
-    </match>
-
-    <!-- We need to enable simulated oblique to for DejaVu Serif to ensure that we interpret
-         this property correctly in: platform/gtk/fonts/fontconfig-synthetic-oblique.html -->
-    <match target="font">
-        <test qual="any" name="family">
-            <string>DejaVu Serif</string>
-        </test>
-        <test name="slant">
-            <const>roman</const>
-        </test>
-        <test target="pattern" name="slant" compare="not_eq">
-            <const>roman</const>
-        </test>
-        <edit name="matrix" mode="assign">
-            <times>
-                <name>matrix</name>
-                <matrix><double>1</double><double>0.2</double>
-                    <double>0</double><double>1</double>
-                </matrix>
-            </times>
-        </edit>
-        <edit name="slant" mode="assign">
-            <const>oblique</const>
-        </edit>
-        <edit name="embeddedbitmap" mode="assign">
-            <bool>false</bool>
-        </edit>
-    </match>
-
-    <!-- If this font doesn't have a family name we are falling back. The fallback
-         font will certainly be one of the DejaVu fonts that we have in our
-         collection since they have a wide range of characters. Fontconfig might
-         choose DejaVu Sans or DejaVu Serif depending on the system, so we force
-         the use of DejaVu Sans in these situations to maintain consistency. -->
-    <match target="pattern">
-        <test qual="all" name="family" compare="eq">
-            <string></string>
-        </test>
-        <edit name="family" mode="append_last">
-            <string>DejaVu Sans</string>
-        </edit>
-    </match>
-
-    <config>
-        <!-- These are the default Unicode chars that are expected to be blank
-             in fonts. All other blank chars are assumed to be broken and won't
-             appear in the resulting charsets -->
-        <blank>
-            <int>0x0020</int>    <!-- SPACE -->
-            <int>0x00A0</int>    <!-- NO-BREAK SPACE -->
-            <int>0x00AD</int>    <!-- SOFT HYPHEN -->
-            <int>0x034F</int>    <!-- COMBINING GRAPHEME JOINER -->
-            <int>0x0600</int>    <!-- ARABIC NUMBER SIGN -->
-            <int>0x0601</int>    <!-- ARABIC SIGN SANAH -->
-            <int>0x0602</int>    <!-- ARABIC FOOTNOTE MARKER -->
-            <int>0x0603</int>    <!-- ARABIC SIGN SAFHA -->
-            <int>0x06DD</int>    <!-- ARABIC END OF AYAH -->
-            <int>0x070F</int>    <!-- SYRIAC ABBREVIATION MARK -->
-            <int>0x115F</int>    <!-- HANGUL CHOSEONG FILLER -->
-            <int>0x1160</int>    <!-- HANGUL JUNGSEONG FILLER -->
-            <int>0x1680</int>    <!-- OGHAM SPACE MARK -->
-            <int>0x17B4</int>    <!-- KHMER VOWEL INHERENT AQ -->
-            <int>0x17B5</int>    <!-- KHMER VOWEL INHERENT AA -->
-            <int>0x180E</int>    <!-- MONGOLIAN VOWEL SEPARATOR -->
-            <int>0x2000</int>    <!-- EN QUAD -->
-            <int>0x2001</int>    <!-- EM QUAD -->
-            <int>0x2002</int>    <!-- EN SPACE -->
-            <int>0x2003</int>    <!-- EM SPACE -->
-            <int>0x2004</int>    <!-- THREE-PER-EM SPACE -->
-            <int>0x2005</int>    <!-- FOUR-PER-EM SPACE -->
-            <int>0x2006</int>    <!-- SIX-PER-EM SPACE -->
-            <int>0x2007</int>    <!-- FIGURE SPACE -->
-            <int>0x2008</int>    <!-- PUNCTUATION SPACE -->
-            <int>0x2009</int>    <!-- THIN SPACE -->
-            <int>0x200A</int>    <!-- HAIR SPACE -->
-            <int>0x200B</int>    <!-- ZERO WIDTH SPACE -->
-            <int>0x200C</int>    <!-- ZERO WIDTH NON-JOINER -->
-            <int>0x200D</int>    <!-- ZERO WIDTH JOINER -->
-            <int>0x200E</int>    <!-- LEFT-TO-RIGHT MARK -->
-            <int>0x200F</int>    <!-- RIGHT-TO-LEFT MARK -->
-            <int>0x2028</int>    <!-- LINE SEPARATOR -->
-            <int>0x2029</int>    <!-- PARAGRAPH SEPARATOR -->
-            <int>0x202A</int>    <!-- LEFT-TO-RIGHT EMBEDDING -->
-            <int>0x202B</int>    <!-- RIGHT-TO-LEFT EMBEDDING -->
-            <int>0x202C</int>    <!-- POP DIRECTIONAL FORMATTING -->
-            <int>0x202D</int>    <!-- LEFT-TO-RIGHT OVERRIDE -->
-            <int>0x202E</int>    <!-- RIGHT-TO-LEFT OVERRIDE -->
-            <int>0x202F</int>    <!-- NARROW NO-BREAK SPACE -->
-            <int>0x205F</int>    <!-- MEDIUM MATHEMATICAL SPACE -->
-            <int>0x2060</int>    <!-- WORD JOINER -->
-            <int>0x2061</int>    <!-- FUNCTION APPLICATION -->
-            <int>0x2062</int>    <!-- INVISIBLE TIMES -->
-            <int>0x2063</int>    <!-- INVISIBLE SEPARATOR -->
-            <int>0x206A</int>    <!-- INHIBIT SYMMETRIC SWAPPING -->
-            <int>0x206B</int>    <!-- ACTIVATE SYMMETRIC SWAPPING -->
-            <int>0x206C</int>    <!-- INHIBIT ARABIC FORM SHAPING -->
-            <int>0x206D</int>    <!-- ACTIVATE ARABIC FORM SHAPING -->
-            <int>0x206E</int>    <!-- NATIONAL DIGIT SHAPES -->
-            <int>0x206F</int>    <!-- NOMINAL DIGIT SHAPES -->
-            <int>0x3000</int>    <!-- IDEOGRAPHIC SPACE -->
-            <int>0x3164</int>    <!-- HANGUL FILLER -->
-            <int>0xFEFF</int>    <!-- ZERO WIDTH NO-BREAK SPACE -->
-            <int>0xFFA0</int>    <!-- HALFWIDTH HANGUL FILLER -->
-            <int>0xFFF9</int>    <!-- INTERLINEAR ANNOTATION ANCHOR -->
-            <int>0xFFFA</int>    <!-- INTERLINEAR ANNOTATION SEPARATOR -->
-            <int>0xFFFB</int>    <!-- INTERLINEAR ANNOTATION TERMINATOR -->
-        </blank>
-    </config>
-</fontconfig>
diff --git a/Tools/DumpRenderTree/ios/AccessibilityControllerIOS.mm b/Tools/DumpRenderTree/ios/AccessibilityControllerIOS.mm
deleted file mode 100644
index 2321b5d..0000000
--- a/Tools/DumpRenderTree/ios/AccessibilityControllerIOS.mm
+++ /dev/null
@@ -1,129 +0,0 @@
-/*
- * Copyright (C) 2009 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#import "config.h"
-#import "DumpRenderTree.h"
-#import "AccessibilityController.h"
-
-#if PLATFORM(IOS)
-
-#import "AccessibilityCommonMac.h"
-#import "AccessibilityUIElement.h"
-#import <Foundation/Foundation.h>
-#import <WebKit/WebFramePrivate.h>
-#import <WebKit/WebHTMLViewPrivate.h>
-
-@interface WebHTMLView (Private)
-- (id)accessibilityFocusedUIElement;
-@end
-
-AccessibilityController::AccessibilityController()
-{
-}
-
-AccessibilityController::~AccessibilityController()
-{
-}
-
-AccessibilityUIElement AccessibilityController::elementAtPoint(int x, int y)
-{
-    // FIXME: implement
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityController::focusedElement()
-{
-    id webDocumentView = [[mainFrame frameView] documentView];
-    if ([webDocumentView isKindOfClass:[WebHTMLView class]])
-        return AccessibilityUIElement([(WebHTMLView *)webDocumentView accessibilityFocusedUIElement]);
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityController::rootElement()
-{
-    // FIXME: we could do some caching here.
-    id webDocumentView = [[mainFrame frameView] documentView];
-    if ([webDocumentView isKindOfClass:[WebHTMLView class]])
-        return AccessibilityUIElement([(WebHTMLView *)webDocumentView accessibilityRootElement]);
-    return 0;
-}
-
-static id findAccessibleObjectById(id obj, NSString *idAttribute)
-{
-    id objIdAttribute = [obj accessibilityIdentifier];
-    if ([objIdAttribute isKindOfClass:[NSString class]] && [objIdAttribute isEqualToString:idAttribute])
-        return obj;
-    
-    NSUInteger childrenCount = [obj accessibilityElementCount];
-    for (NSUInteger i = 0; i < childrenCount; ++i) {
-        id result = findAccessibleObjectById([obj accessibilityElementAtIndex:i], idAttribute);
-        if (result)
-            return result;
-    }
-    
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityController::accessibleElementById(JSStringRef idAttributeRef)
-{
-    id webDocumentView = [[mainFrame frameView] documentView];
-    if (![webDocumentView isKindOfClass:[WebHTMLView class]])
-        return 0;
-    
-    id root = [(WebHTMLView *)webDocumentView accessibilityRootElement];
-    NSString *idAttribute = [NSString stringWithJSStringRef:idAttributeRef];
-    id result = findAccessibleObjectById(root, idAttribute);
-    if (result)
-        return AccessibilityUIElement(result);
-    
-    return 0;
-}
-
-void AccessibilityController::setLogFocusEvents(bool)
-{
-}
-
-void AccessibilityController::setLogScrollingStartEvents(bool)
-{
-}
-
-void AccessibilityController::setLogValueChangeEvents(bool)
-{
-}
-
-void AccessibilityController::setLogAccessibilityEvents(bool)
-{
-}
-
-bool AccessibilityController::addNotificationListener(JSObjectRef functionCallback)
-{
-    return false;
-}
-
-void AccessibilityController::removeNotificationListener()
-{
-}
-
-#endif // PLATFORM(IOS)
diff --git a/Tools/DumpRenderTree/ios/AccessibilityUIElementIOS.mm b/Tools/DumpRenderTree/ios/AccessibilityUIElementIOS.mm
deleted file mode 100644
index 0f0fa49..0000000
--- a/Tools/DumpRenderTree/ios/AccessibilityUIElementIOS.mm
+++ /dev/null
@@ -1,768 +0,0 @@
-/*
- * Copyright (C) 2009 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#import "config.h"
-#import "DumpRenderTree.h"
-#import "AccessibilityUIElement.h"
-
-#import "AccessibilityCommonMac.h"
-#import <Foundation/Foundation.h>
-#import <JavaScriptCore/JSRetainPtr.h>
-#import <JavaScriptCore/JSStringRef.h>
-#import <JavaScriptCore/JSStringRefCF.h>
-#import <WebCore/TextGranularity.h>
-#import <WebKit/WebFrame.h>
-#import <WebKit/WebHTMLView.h>
-#import <WebKit/WebTypesInternal.h>
-#import <wtf/RetainPtr.h>
-#import <wtf/Vector.h>
-
-#if PLATFORM(IOS)
-
-#import <UIKit/UIKit.h>
-
-typedef void (*AXPostedNotificationCallback)(id element, NSString* notification, void* context);
-
-AccessibilityUIElement::AccessibilityUIElement(PlatformUIElement element)
-    : m_element(element)
-{
-    [m_element retain];
-}
-
-AccessibilityUIElement::AccessibilityUIElement(const AccessibilityUIElement& other)
-    : m_element(other.m_element)
-{
-    [m_element retain];
-}
-
-AccessibilityUIElement::~AccessibilityUIElement()
-{
-    [m_element release];
-}
-
-@interface NSObject (UIAccessibilityHidden)
-- (id)accessibilityHitTest:(CGPoint)point;
-- (id)accessibilityLinkedElement;
-- (NSRange)accessibilityColumnRange;
-- (NSRange)accessibilityRowRange;
-- (id)accessibilityElementForRow:(NSInteger)row andColumn:(NSInteger)column;
-- (NSURL *)accessibilityURL;
-- (NSArray *)accessibilityHeaderElements;
-- (NSString *)accessibilityPlaceholderValue;
-- (NSString *)stringForRange:(NSRange)range;
-- (NSArray *)elementsForRange:(NSRange)range;
-- (NSString *)selectionRangeString;
-- (void)accessibilityModifySelection:(WebCore::TextGranularity)granularity increase:(BOOL)increase;
-- (void)accessibilitySetPostedNotificationCallback:(AXPostedNotificationCallback)function withContext:(void*)context;
-@end
-
-static JSStringRef concatenateAttributeAndValue(NSString* attribute, NSString* value)
-{
-    Vector<UniChar> buffer([attribute length]);
-    [attribute getCharacters:buffer.data()];
-    buffer.append(':');
-    buffer.append(' ');
-    
-    Vector<UniChar> valueBuffer([value length]);
-    [value getCharacters:valueBuffer.data()];
-    buffer.append(valueBuffer);
-    
-    return JSStringCreateWithCharacters(buffer.data(), buffer.size());
-}
-
-#pragma mark iPhone Attributes
-
-JSStringRef AccessibilityUIElement::iphoneLabel()
-{
-    return concatenateAttributeAndValue(@"AXLabel", [m_element accessibilityLabel]);
-}
-
-JSStringRef AccessibilityUIElement::iphoneHint()
-{
-    return concatenateAttributeAndValue(@"AXHint", [m_element accessibilityHint]);
-}
-
-JSStringRef AccessibilityUIElement::iphoneValue()
-{
-    return concatenateAttributeAndValue(@"AXValue", [m_element accessibilityValue]);
-}
-
-JSStringRef AccessibilityUIElement::iphoneIdentifier()
-{
-    return concatenateAttributeAndValue(@"AXIdentifier", [m_element accessibilityIdentifier]);
-}
-
-JSStringRef AccessibilityUIElement::iphoneTraits()
-{
-    return concatenateAttributeAndValue(@"AXTraits", [NSString stringWithFormat:@"%qu", [m_element accessibilityTraits]]);
-}
-
-bool AccessibilityUIElement::iphoneIsElement()
-{
-    return [m_element isAccessibilityElement];
-}
-
-int AccessibilityUIElement::iphoneElementTextPosition()
-{
-    NSRange range = [[m_element valueForKey:@"elementTextRange"] rangeValue];
-    return range.location;
-}
-
-int AccessibilityUIElement::iphoneElementTextLength()
-{
-    NSRange range = [[m_element valueForKey:@"elementTextRange"] rangeValue];
-    return range.length;    
-}
-
-JSStringRef AccessibilityUIElement::url()
-{
-    NSURL *url = [m_element accessibilityURL];
-    return [[url absoluteString] createJSStringRef];    
-}
-
-double AccessibilityUIElement::x()
-{
-    CGRect frame = [m_element accessibilityFrame];
-    return frame.origin.x;
-}
-
-double AccessibilityUIElement::y()
-{
-    CGRect frame = [m_element accessibilityFrame];
-    return frame.origin.y;
-}
-
-double AccessibilityUIElement::width()
-{
-    CGRect frame = [m_element accessibilityFrame];
-    return frame.size.width;
-}
-
-double AccessibilityUIElement::height()
-{
-    CGRect frame = [m_element accessibilityFrame];
-    return frame.size.height;
-}
-
-double AccessibilityUIElement::clickPointX()
-{
-    CGPoint centerPoint = [m_element accessibilityActivationPoint];
-    return centerPoint.x;
-}
-
-double AccessibilityUIElement::clickPointY()
-{
-    CGPoint centerPoint = [m_element accessibilityActivationPoint];
-    return centerPoint.y;
-}
-
-void AccessibilityUIElement::getChildren(Vector<AccessibilityUIElement>& elementVector)
-{
-    NSInteger childCount = [m_element accessibilityElementCount];
-    for (NSInteger k = 0; k < childCount; ++k)
-        elementVector.append(AccessibilityUIElement([m_element accessibilityElementAtIndex:k]));
-}
-
-void AccessibilityUIElement::getChildrenWithRange(Vector<AccessibilityUIElement>& elementVector, unsigned location, unsigned length)
-{
-    NSUInteger childCount = [m_element accessibilityElementCount];
-    for (NSUInteger k = location; k < childCount && k < (location+length); ++k)
-        elementVector.append(AccessibilityUIElement([m_element accessibilityElementAtIndex:k]));    
-}
-
-int AccessibilityUIElement::childrenCount()
-{
-    Vector<AccessibilityUIElement> children;
-    getChildren(children);
-    
-    return children.size();
-}
-
-AccessibilityUIElement AccessibilityUIElement::elementAtPoint(int x, int y)
-{
-    id element = [m_element accessibilityHitTest:NSMakePoint(x, y)];
-    if (!element)
-        return nil;
-    
-    return AccessibilityUIElement(element); 
-}
-
-unsigned AccessibilityUIElement::indexOfChild(AccessibilityUIElement* element)
-{
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::getChildAtIndex(unsigned index)
-{
-    Vector<AccessibilityUIElement> children;
-    getChildrenWithRange(children, index, 1);
-    
-    if (children.size() == 1)
-        return children[0];
-    return nil;
-}
-
-AccessibilityUIElement AccessibilityUIElement::headerElementAtIndex(unsigned index)
-{
-    NSArray *headers = [m_element accessibilityHeaderElements];
-    if (index < [headers count])
-        return [headers objectAtIndex:index];
-    
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::linkedElement()
-{
-    id linkedElement = [m_element accessibilityLinkedElement];
-    if (linkedElement)
-        return AccessibilityUIElement(linkedElement);
-    
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::linkedUIElementAtIndex(unsigned index)
-{
-    // FIXME: implement
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::ariaOwnsElementAtIndex(unsigned index)
-{
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::ariaFlowToElementAtIndex(unsigned index)
-{
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::disclosedRowAtIndex(unsigned index)
-{
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::selectedRowAtIndex(unsigned index)
-{
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::rowAtIndex(unsigned index)
-{
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::titleUIElement()
-{
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::parentElement()
-{
-    id accessibilityObject = [m_element accessibilityContainer];
-    if (accessibilityObject)
-        return AccessibilityUIElement(accessibilityObject);
-    
-    return nil;
-}
-
-AccessibilityUIElement AccessibilityUIElement::disclosedByRow()
-{
-    return 0;
-}
-
-void AccessibilityUIElement::increaseTextSelection()
-{
-    [m_element accessibilityModifySelection:WebCore::CharacterGranularity increase:YES];
-}
-
-void AccessibilityUIElement::decreaseTextSelection()
-{
-    [m_element accessibilityModifySelection:WebCore::CharacterGranularity increase:NO];    
-}
-
-JSStringRef AccessibilityUIElement::stringForSelection() 
-{ 
-    NSString *stringForRange = [m_element selectionRangeString];
-    if (!stringForRange)
-        return 0;
-    
-    return [stringForRange createJSStringRef];
-}
-
-JSStringRef AccessibilityUIElement::stringForRange(unsigned location, unsigned length) 
-{ 
-    NSString *stringForRange = [m_element stringForRange:NSMakeRange(location, length)];
-    if (!stringForRange)
-        return 0;
-    
-    return [stringForRange createJSStringRef];
-}
-
-JSStringRef AccessibilityUIElement::attributedStringForRange(unsigned, unsigned)
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-bool AccessibilityUIElement::attributedStringRangeIsMisspelled(unsigned, unsigned)
-{
-    return false;
-}
-
-
-void AccessibilityUIElement::elementsForRange(unsigned location, unsigned length, Vector<AccessibilityUIElement>& elements)
-{ 
-    NSArray *elementsForRange = [m_element elementsForRange:NSMakeRange(location, length)];
-    for (id object in elementsForRange) {
-        AccessibilityUIElement element = AccessibilityUIElement(object);
-        elements.append(element);
-    }
-}
-
-#pragma mark Unused
-
-void AccessibilityUIElement::getLinkedUIElements(Vector<AccessibilityUIElement>& elementVector)
-{
-}
-
-void AccessibilityUIElement::getDocumentLinks(Vector<AccessibilityUIElement>& elementVector)
-{
-}
-
-JSStringRef AccessibilityUIElement::attributesOfLinkedUIElements()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::attributesOfDocumentLinks()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::attributesOfChildren()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::allAttributes()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::stringAttributeValue(JSStringRef attribute)
-{
-    if (JSStringIsEqualToUTF8CString(attribute, "AXPlaceholderValue"))
-        return [[m_element accessibilityPlaceholderValue] createJSStringRef];
-    
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-bool AccessibilityUIElement::isPressActionSupported()
-{
-    return false;
-}
-
-bool AccessibilityUIElement::isIncrementActionSupported()
-{
-    return false;
-}
-
-bool AccessibilityUIElement::isDecrementActionSupported()
-{
-    return false;
-}
-
-bool AccessibilityUIElement::boolAttributeValue(JSStringRef attribute)
-{
-    return false;
-}
-
-bool AccessibilityUIElement::isAttributeSettable(JSStringRef attribute)
-{
-    return false;
-}
-
-bool AccessibilityUIElement::isAttributeSupported(JSStringRef attribute)
-{
-    return false;
-}
-
-JSStringRef AccessibilityUIElement::parameterizedAttributeNames()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::role()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::subrole()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::roleDescription()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::title()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::description()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}    
-
-JSStringRef AccessibilityUIElement::orientation() const
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::stringValue()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::language()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::helpText() const
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-double AccessibilityUIElement::intValue() const
-{
-    return 0.0f;
-}
-
-double AccessibilityUIElement::minValue()
-{
-    return 0.0f;
-}
-
-double AccessibilityUIElement::maxValue()
-{
-    return 0.0;
-}
-
-JSStringRef AccessibilityUIElement::valueDescription()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-int AccessibilityUIElement::insertionPointLineNumber()
-{
-    return -1;
-}
-
-bool AccessibilityUIElement::isEnabled()
-{
-    return false;
-}
-
-bool AccessibilityUIElement::isRequired() const
-{
-    return false;
-}
-
-bool AccessibilityUIElement::isFocused() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isSelected() const
-{
-    UIAccessibilityTraits traits = [m_element accessibilityTraits];
-    return (traits & UIAccessibilityTraitSelected);
-}
-
-bool AccessibilityUIElement::isExpanded() const
-{
-    return false;
-}
-
-bool AccessibilityUIElement::isChecked() const
-{
-    return false;
-}
-
-int AccessibilityUIElement::hierarchicalLevel() const
-{
-    return 0;
-}
-
-bool AccessibilityUIElement::ariaIsGrabbed() const
-{
-    return false;
-}
-
-JSStringRef AccessibilityUIElement::ariaDropEffects() const
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-int AccessibilityUIElement::lineForIndex(int index)
-{
-    return -1;
-}
-
-JSStringRef AccessibilityUIElement::boundsForRange(unsigned location, unsigned length)
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::attributesOfColumnHeaders()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::attributesOfRowHeaders()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::attributesOfColumns()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::attributesOfRows()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::attributesOfVisibleCells()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::attributesOfHeader()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-int AccessibilityUIElement::rowCount()
-{
-    return -1;
-}
-
-int AccessibilityUIElement::columnCount()
-{
-    return -1;
-}
-
-int AccessibilityUIElement::indexInTable()
-{
-    return -1;
-}
-
-JSStringRef AccessibilityUIElement::rowIndexRange()
-{
-    NSRange range = [m_element accessibilityRowRange];
-    NSMutableString* rangeDescription = [NSMutableString stringWithFormat:@"{%lu, %lu}", (unsigned long)range.location, (unsigned long)range.length];
-    return [rangeDescription createJSStringRef];
-}
-
-JSStringRef AccessibilityUIElement::columnIndexRange()
-{
-    NSRange range = [m_element accessibilityColumnRange];
-    NSMutableString* rangeDescription = [NSMutableString stringWithFormat:@"{%lu, %lu}", (unsigned long)range.location, (unsigned long)range.length];
-    return [rangeDescription createJSStringRef];    
-}
-
-AccessibilityUIElement AccessibilityUIElement::cellForColumnAndRow(unsigned col, unsigned row)
-{
-    return AccessibilityUIElement([m_element accessibilityElementForRow:row andColumn:col]);
-}
-
-JSStringRef AccessibilityUIElement::selectedTextRange()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-void AccessibilityUIElement::assistiveTechnologySimulatedFocus()
-{
-    [m_element accessibilityElementDidBecomeFocused];
-}
-
-void AccessibilityUIElement::setSelectedTextRange(unsigned location, unsigned length)
-{
-}
-
-void AccessibilityUIElement::increment()
-{
-    [m_element accessibilityIncrement];
-}
-
-void AccessibilityUIElement::decrement()
-{
-    [m_element accessibilityDecrement];
-}
-
-void AccessibilityUIElement::showMenu()
-{
-}
-
-void AccessibilityUIElement::press()
-{
-}
-
-JSStringRef AccessibilityUIElement::accessibilityValue() const
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::documentEncoding()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::documentURI()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-static void _accessibilityNotificationCallback(id element, NSString* notification, void* context)
-{
-    if (!context)
-        return;
-    
-    JSObjectRef functionCallback = static_cast<JSObjectRef>(context);
-    
-    JSRetainPtr<JSStringRef> jsNotification(Adopt, [notification createJSStringRef]);
-    JSValueRef argument = JSValueMakeString([mainFrame globalContext], jsNotification.get());
-    JSObjectCallAsFunction([mainFrame globalContext], functionCallback, NULL, 1, &argument, NULL);
-}
-
-bool AccessibilityUIElement::addNotificationListener(JSObjectRef functionCallback)
-{
-    if (!functionCallback)
-        return false;
-    
-    m_notificationFunctionCallback = functionCallback;
-    [platformUIElement() accessibilitySetPostedNotificationCallback:_accessibilityNotificationCallback withContext:reinterpret_cast<void*>(m_notificationFunctionCallback)];
-    return true;    
-}
-
-void AccessibilityUIElement::removeNotificationListener()
-{
-    m_notificationFunctionCallback = 0;
-    [platformUIElement() accessibilitySetPostedNotificationCallback:nil withContext:nil];
-}
-
-bool AccessibilityUIElement::isFocusable() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isSelectable() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isMultiSelectable() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isSelectedOptionActive() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isVisible() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isOffScreen() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isCollapsed() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isIgnored() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::hasPopup() const
-{
-    // FIXME: implement
-    return false;
-}
-
-void AccessibilityUIElement::takeFocus()
-{
-    // FIXME: implement
-}
-
-void AccessibilityUIElement::takeSelection()
-{
-    // FIXME: implement
-}
-
-void AccessibilityUIElement::addSelection()
-{
-    // FIXME: implement
-}
-
-void AccessibilityUIElement::removeSelection()
-{
-    // FIXME: implement
-}
-
-AccessibilityUIElement AccessibilityUIElement::uiElementForSearchPredicate(AccessibilityUIElement* startElement, bool isDirectionNext, JSStringRef searchKey, JSStringRef searchText)
-{
-    // FIXME: implement
-    return 0;
-}
-
-double AccessibilityUIElement::numberAttributeValue(JSStringRef attribute)
-{
-    // FIXME: implement
-    return 0;
-}
-#endif // PLATFORM(IOS)
diff --git a/Tools/DumpRenderTree/mac/AccessibilityCommonMac.h b/Tools/DumpRenderTree/mac/AccessibilityCommonMac.h
deleted file mode 100644
index c8b9125..0000000
--- a/Tools/DumpRenderTree/mac/AccessibilityCommonMac.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * Copyright (C) 2012 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *     * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef AccessibilityCommonMac_h
-#define AccessibilityCommonMac_h
-
-#import <JavaScriptCore/JSStringRef.h>
-
-// If an unsupported attribute is passed in, it will raise an accessibility exception. These are usually caught by the Accessibility Runtime to inform
-// the AX client app of the error. However, DRT is the AX client app, so it must catch these exceptions.
-#define BEGIN_AX_OBJC_EXCEPTIONS @try {
-#define END_AX_OBJC_EXCEPTIONS } @catch(NSException *e) { if (![[e name] isEqualToString:NSAccessibilityException]) @throw; }
-
-
-@interface NSString (JSStringRefAdditions)
-+ (NSString *)stringWithJSStringRef:(JSStringRef)jsStringRef;
-- (JSStringRef)createJSStringRef;
-@end
-
-#endif // AccessibilityCommonMac_h
diff --git a/Tools/DumpRenderTree/mac/AccessibilityCommonMac.mm b/Tools/DumpRenderTree/mac/AccessibilityCommonMac.mm
deleted file mode 100644
index 082c0f0..0000000
--- a/Tools/DumpRenderTree/mac/AccessibilityCommonMac.mm
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- * Copyright (C) 2012 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *     * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "AccessibilityCommonMac.h"
-
-#import <JavaScriptCore/JSStringRefCF.h>
-
-@implementation NSString (JSStringRefAdditions)
-
-+ (NSString *)stringWithJSStringRef:(JSStringRef)jsStringRef
-{
-    if (!jsStringRef)
-        return nil;
-
-    CFStringRef cfString = JSStringCopyCFString(kCFAllocatorDefault, jsStringRef);
-    return [(NSString *)cfString autorelease];
-}
-
-- (JSStringRef)createJSStringRef
-{
-    return JSStringCreateWithCFString((CFStringRef)self);
-}
-
-@end
diff --git a/Tools/DumpRenderTree/mac/AccessibilityControllerMac.mm b/Tools/DumpRenderTree/mac/AccessibilityControllerMac.mm
deleted file mode 100644
index 0909b86..0000000
--- a/Tools/DumpRenderTree/mac/AccessibilityControllerMac.mm
+++ /dev/null
@@ -1,143 +0,0 @@
-/*
- * Copyright (C) 2008, 2009, 2010 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#import "config.h"
-#import "DumpRenderTree.h"
-#import "AccessibilityController.h"
-
-#import "AccessibilityCommonMac.h"
-#import "AccessibilityNotificationHandler.h"
-#import "AccessibilityUIElement.h"
-#import <AppKit/NSColor.h>
-#import <Foundation/Foundation.h>
-#import <JavaScriptCore/JSStringRef.h>
-#import <JavaScriptCore/JSStringRefCF.h>
-#import <WebKit/WebFrame.h>
-#import <WebKit/WebFramePrivate.h>
-#import <WebKit/WebHTMLView.h>
-
-AccessibilityController::AccessibilityController()
-{
-}
-
-AccessibilityController::~AccessibilityController()
-{
-    // The notification handler should be nil because removeNotificationListener() should have been called in the test.
-    ASSERT(!m_globalNotificationHandler);
-}
-
-AccessibilityUIElement AccessibilityController::elementAtPoint(int x, int y)
-{
-    id accessibilityObject = [[[mainFrame frameView] documentView] accessibilityHitTest:NSMakePoint(x, y)];
-    return AccessibilityUIElement(accessibilityObject);    
-}
-
-AccessibilityUIElement AccessibilityController::focusedElement()
-{
-    id accessibilityObject = [[mainFrame accessibilityRoot] accessibilityFocusedUIElement];
-    return AccessibilityUIElement(accessibilityObject);
-}
-
-AccessibilityUIElement AccessibilityController::rootElement()
-{
-    // FIXME: we could do some caching here.
-    
-    // Layout tests expect that the root element will be the scroll area
-    // containing the web area object. That will be the parent of the accessibilityRoot on WK1.
-    
-    id accessibilityObject = [[mainFrame accessibilityRoot] accessibilityAttributeValue:NSAccessibilityParentAttribute];
-    return AccessibilityUIElement(accessibilityObject);
-}
-
-static id findAccessibleObjectById(id obj, NSString *idAttribute)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id objIdAttribute = [obj accessibilityAttributeValue:@"AXDRTElementIdAttribute"];
-    if ([objIdAttribute isKindOfClass:[NSString class]] && [objIdAttribute isEqualToString:idAttribute])
-        return obj;
-    END_AX_OBJC_EXCEPTIONS
-
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray *children = [obj accessibilityAttributeValue:NSAccessibilityChildrenAttribute];
-    NSUInteger childrenCount = [children count];
-    for (NSUInteger i = 0; i < childrenCount; ++i) {
-        id result = findAccessibleObjectById([children objectAtIndex:i], idAttribute);
-        if (result)
-            return result;
-    }
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityController::accessibleElementById(JSStringRef idAttributeRef)
-{
-    NSString *idAttribute = [NSString stringWithJSStringRef:idAttributeRef];
-    id root = [[mainFrame accessibilityRoot] accessibilityAttributeValue:NSAccessibilityParentAttribute];
-    id result = findAccessibleObjectById(root, idAttribute);
-    if (result)
-        return AccessibilityUIElement(result);
-
-    return 0;
-}
-
-void AccessibilityController::setLogFocusEvents(bool)
-{
-}
-
-void AccessibilityController::setLogScrollingStartEvents(bool)
-{
-}
-
-void AccessibilityController::setLogValueChangeEvents(bool)
-{
-}
-
-void AccessibilityController::setLogAccessibilityEvents(bool)
-{
-}
-
-bool AccessibilityController::addNotificationListener(JSObjectRef functionCallback)
-{
-    if (!functionCallback)
-        return false;
- 
-    // Mac programmers should not be adding more than one global notification listener.
-    // Other platforms may be different.
-    if (m_globalNotificationHandler)
-        return false;
-    m_globalNotificationHandler = [[AccessibilityNotificationHandler alloc] init];
-    [m_globalNotificationHandler.get() setCallback:functionCallback];
-    [m_globalNotificationHandler.get() startObserving];
-
-    return true;
-}
-
-void AccessibilityController::removeNotificationListener()
-{
-    // Mac programmers should not be trying to remove a listener that's already removed.
-    ASSERT(m_globalNotificationHandler);
-    m_globalNotificationHandler.clear();
-}
diff --git a/Tools/DumpRenderTree/mac/AccessibilityNotificationHandler.h b/Tools/DumpRenderTree/mac/AccessibilityNotificationHandler.h
deleted file mode 100644
index 19386ce..0000000
--- a/Tools/DumpRenderTree/mac/AccessibilityNotificationHandler.h
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *     * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef AccessibilityNotificationHandler_h
-#define AccessibilityNotificationHandler_h
-
-#import <JavaScriptCore/JSObjectRef.h>
-
-@interface AccessibilityNotificationHandler : NSObject {
-    id m_platformElement;
-    JSObjectRef m_notificationFunctionCallback;
-}
-
-- (id)init;
-- (void)setPlatformElement:(id)platformElement;
-- (void)setCallback:(JSObjectRef)callback;
-- (void)startObserving;
-
-@end
-
-#endif // AccessibilityNotificationHandler_h
diff --git a/Tools/DumpRenderTree/mac/AccessibilityNotificationHandler.mm b/Tools/DumpRenderTree/mac/AccessibilityNotificationHandler.mm
deleted file mode 100644
index 13d08c9..0000000
--- a/Tools/DumpRenderTree/mac/AccessibilityNotificationHandler.mm
+++ /dev/null
@@ -1,131 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *     * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "DumpRenderTree.h"
-#import "AccessibilityNotificationHandler.h"
-#import "AccessibilityUIElement.h"
-
-#import <JavaScriptCore/JSRetainPtr.h>
-#import <JavaScriptCore/JSStringRef.h>
-#import <JavaScriptCore/JSStringRefCF.h>
-#import <WebKit/WebFrame.h>
-#import <WebKit/WebTypesInternal.h>
-#import <wtf/RetainPtr.h>
-
-@interface NSObject (WebAccessibilityObjectWrapperAdditions)
-+ (void)accessibilitySetShouldRepostNotifications:(BOOL)repost;
-@end
-
-@interface NSString (JSStringRefAdditions)
-- (JSStringRef)createJSStringRef;
-@end
-
-@implementation NSString (JSStringRefAdditions)
-
-- (JSStringRef)createJSStringRef
-{
-    return JSStringCreateWithCFString((CFStringRef)self);
-}
-
-@end
-
-@implementation AccessibilityNotificationHandler
-
-- (id)init
-{
-    if (!(self = [super init]))
-        return nil;
-
-    m_platformElement = nil;
-    return self;
-}
-
-- (void)setPlatformElement:(id)platformElement
-{
-    m_platformElement = platformElement;
-}
-
-- (void)dealloc
-{
-    [[NSNotificationCenter defaultCenter] removeObserver:self];
-    JSValueUnprotect([mainFrame globalContext], m_notificationFunctionCallback);
-    m_notificationFunctionCallback = 0;
-    
-    [super dealloc];
-}
-
-- (void)setCallback:(JSObjectRef)callback
-{
-    if (!callback)
-        return;
- 
-    if (m_notificationFunctionCallback) 
-        JSValueUnprotect([mainFrame globalContext], m_notificationFunctionCallback);
-    
-    m_notificationFunctionCallback = callback;
-    JSValueProtect([mainFrame globalContext], m_notificationFunctionCallback);
-}
-
-- (void)startObserving
-{
-    // Once we start requesting notifications, it's on for the duration of the program.
-    // This is to avoid any race conditions between tests turning this flag on and off. Instead
-    // AccessibilityNotificationHandler can ignore events it doesn't care about.
-    id webAccessibilityObjectWrapperClass = NSClassFromString(@"WebAccessibilityObjectWrapper");
-    ASSERT(webAccessibilityObjectWrapperClass);
-    [webAccessibilityObjectWrapperClass accessibilitySetShouldRepostNotifications:YES];
-    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(_notificationReceived:) name:@"AXDRTNotification" object:nil];
-}
-
-- (void)_notificationReceived:(NSNotification *)notification
-{
-    NSString *notificationName = [[notification userInfo] objectForKey:@"notificationName"];
-    if (!notificationName)
-        return;
-    if (m_platformElement && m_platformElement != [notification object])
-        return;
-
-    JSRetainPtr<JSStringRef> jsNotification(Adopt, [notificationName createJSStringRef]);
-    JSValueRef notificationNameArgument = JSValueMakeString([mainFrame globalContext], jsNotification.get());
-    if (m_platformElement) {
-        // Listener for one element just gets one argument, the notification name.
-        JSObjectCallAsFunction([mainFrame globalContext], m_notificationFunctionCallback, 0, 1, &notificationNameArgument, 0);
-    } else {
-        // A global listener gets the element and the notification name as arguments.
-        JSValueRef arguments[2];
-        arguments[0] = AccessibilityUIElement::makeJSAccessibilityUIElement([mainFrame globalContext], AccessibilityUIElement([notification object]));
-        arguments[1] = notificationNameArgument;
-        JSObjectCallAsFunction([mainFrame globalContext], m_notificationFunctionCallback, 0, 2, arguments, 0);
-    }
-}
-
-@end
-
diff --git a/Tools/DumpRenderTree/mac/AccessibilityTextMarkerMac.mm b/Tools/DumpRenderTree/mac/AccessibilityTextMarkerMac.mm
deleted file mode 100644
index 18ddb85..0000000
--- a/Tools/DumpRenderTree/mac/AccessibilityTextMarkerMac.mm
+++ /dev/null
@@ -1,81 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#import "config.h"
-
-#import "AccessibilityTextMarker.h"
-#import "DumpRenderTree.h"
-
-// MARK: AccessibilityTextMarker
-
-AccessibilityTextMarker::AccessibilityTextMarker(PlatformTextMarker marker)
-    : m_textMarker(marker)
-{
-}
-
-AccessibilityTextMarker::AccessibilityTextMarker(const AccessibilityTextMarker& marker)
-    : m_textMarker(marker.platformTextMarker())
-{
-}
-
-AccessibilityTextMarker::~AccessibilityTextMarker()
-{
-}
-
-bool AccessibilityTextMarker::isEqual(AccessibilityTextMarker* other)
-{
-    return [(id)platformTextMarker() isEqual:(id)other->platformTextMarker()];
-}
-
-PlatformTextMarker AccessibilityTextMarker::platformTextMarker() const 
-{ 
-    return m_textMarker.get();
-}
-
-// MARK: AccessibilityTextMarkerRange
-
-AccessibilityTextMarkerRange::AccessibilityTextMarkerRange(PlatformTextMarkerRange markerRange)
-    : m_textMarkerRange(markerRange)
-{
-}
-
-AccessibilityTextMarkerRange::AccessibilityTextMarkerRange(const AccessibilityTextMarkerRange& markerRange)
-    : m_textMarkerRange(markerRange.platformTextMarkerRange())
-{
-}
-
-AccessibilityTextMarkerRange::~AccessibilityTextMarkerRange()
-{
-}
-
-bool AccessibilityTextMarkerRange::isEqual(AccessibilityTextMarkerRange* other)
-{
-    return [(id)platformTextMarkerRange() isEqual:(id)other->platformTextMarkerRange()];
-}
-
-PlatformTextMarkerRange AccessibilityTextMarkerRange::platformTextMarkerRange() const
-{
-    return m_textMarkerRange.get();
-}
diff --git a/Tools/DumpRenderTree/mac/AccessibilityUIElementMac.mm b/Tools/DumpRenderTree/mac/AccessibilityUIElementMac.mm
deleted file mode 100644
index 63a6bd9..0000000
--- a/Tools/DumpRenderTree/mac/AccessibilityUIElementMac.mm
+++ /dev/null
@@ -1,1465 +0,0 @@
-/*
- * Copyright (C) 2008 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#import "config.h"
-#import "DumpRenderTree.h"
-#import "AccessibilityCommonMac.h"
-#import "AccessibilityNotificationHandler.h"
-#import "AccessibilityUIElement.h"
-
-#import <Foundation/Foundation.h>
-#import <JavaScriptCore/JSRetainPtr.h>
-#import <JavaScriptCore/JSStringRef.h>
-#import <JavaScriptCore/JSStringRefCF.h>
-#import <WebKit/WebFrame.h>
-#import <WebKit/WebHTMLView.h>
-#import <WebKit/WebTypesInternal.h>
-#import <wtf/RetainPtr.h>
-#import <wtf/Vector.h>
-
-
-#ifndef NSAccessibilityOwnsAttribute
-#define NSAccessibilityOwnsAttribute @"AXOwns"
-#endif
-
-#ifndef NSAccessibilityGrabbedAttribute
-#define NSAccessibilityGrabbedAttribute @"AXGrabbed"
-#endif
-
-#ifndef NSAccessibilityDropEffectsAttribute
-#define NSAccessibilityDropEffectsAttribute @"AXDropEffects"
-#endif
-
-typedef void (*AXPostedNotificationCallback)(id element, NSString* notification, void* context);
-
-@interface NSObject (WebKitAccessibilityAdditions)
-- (NSArray *)accessibilityArrayAttributeValues:(NSString *)attribute index:(NSUInteger)index maxCount:(NSUInteger)maxCount;
-- (NSUInteger)accessibilityIndexOfChild:(id)child;
-- (NSUInteger)accessibilityArrayAttributeCount:(NSString *)attribute;
-@end
-
-AccessibilityUIElement::AccessibilityUIElement(PlatformUIElement element)
-    : m_element(element)
-    , m_notificationHandler(0)
-{
-    // FIXME: ap@webkit.org says ObjC objects need to be CFRetained/CFRelease to be GC-compliant on the mac.
-    [m_element retain];
-}
-
-AccessibilityUIElement::AccessibilityUIElement(const AccessibilityUIElement& other)
-    : m_element(other.m_element)
-    , m_notificationHandler(0)
-{
-    [m_element retain];
-}
-
-AccessibilityUIElement::~AccessibilityUIElement()
-{
-    // The notification handler should be nil because removeNotificationListener() should have been called in the test.
-    ASSERT(!m_notificationHandler);
-    [m_element release];
-}
-
-static NSString* descriptionOfValue(id valueObject, id focusedAccessibilityObject)
-{
-    if (!valueObject)
-        return NULL;
-
-    if ([valueObject isKindOfClass:[NSArray class]])
-        return [NSString stringWithFormat:@"<array of size %lu>", static_cast<unsigned long>([(NSArray*)valueObject count])];
-
-    if ([valueObject isKindOfClass:[NSNumber class]])
-        return [(NSNumber*)valueObject stringValue];
-
-    if ([valueObject isKindOfClass:[NSValue class]]) {
-        NSString* type = [NSString stringWithCString:[valueObject objCType] encoding:NSASCIIStringEncoding];
-        NSValue* value = (NSValue*)valueObject;
-        if ([type rangeOfString:@"NSRect"].length > 0)
-            return [NSString stringWithFormat:@"NSRect: %@", NSStringFromRect([value rectValue])];
-        if ([type rangeOfString:@"NSPoint"].length > 0)
-            return [NSString stringWithFormat:@"NSPoint: %@", NSStringFromPoint([value pointValue])];
-        if ([type rangeOfString:@"NSSize"].length > 0)
-            return [NSString stringWithFormat:@"NSSize: %@", NSStringFromSize([value sizeValue])];
-        if ([type rangeOfString:@"NSRange"].length > 0)
-            return [NSString stringWithFormat:@"NSRange: %@", NSStringFromRange([value rangeValue])];
-    }
-
-    // Strip absolute URL paths
-    NSString* description = [valueObject description];
-    NSRange range = [description rangeOfString:@"LayoutTests"];
-    if (range.length)
-        return [description substringFromIndex:range.location];
-
-    // Strip pointer locations
-    if ([description rangeOfString:@"0x"].length) {
-        NSString* role = [focusedAccessibilityObject accessibilityAttributeValue:NSAccessibilityRoleAttribute];
-        NSString* title = [focusedAccessibilityObject accessibilityAttributeValue:NSAccessibilityTitleAttribute];
-        if ([title length])
-            return [NSString stringWithFormat:@"<%@: '%@'>", role, title];
-        return [NSString stringWithFormat:@"<%@>", role];
-    }
-    
-    return [valueObject description];
-}
-
-static NSString* attributesOfElement(id accessibilityObject)
-{
-    NSArray* supportedAttributes = [accessibilityObject accessibilityAttributeNames];
-
-    NSMutableString* attributesString = [NSMutableString string];
-    for (NSUInteger i = 0; i < [supportedAttributes count]; ++i) {
-        NSString* attribute = [supportedAttributes objectAtIndex:i];
-        
-        // Right now, position provides useless and screen-specific information, so we do not
-        // want to include it for the sake of universally passing tests.
-        if ([attribute isEqualToString:@"AXPosition"])
-            continue;
-        
-        // accessibilityAttributeValue: can throw an if an attribute is not returned.
-        // For DumpRenderTree's purpose, we should ignore those exceptions
-        BEGIN_AX_OBJC_EXCEPTIONS
-        id valueObject = [accessibilityObject accessibilityAttributeValue:attribute];
-        NSString* value = descriptionOfValue(valueObject, accessibilityObject);
-        [attributesString appendFormat:@"%@: %@\n", attribute, value];
-        END_AX_OBJC_EXCEPTIONS
-    }
-    
-    return attributesString;
-}
-
-static JSStringRef concatenateAttributeAndValue(NSString* attribute, NSString* value)
-{
-    Vector<UniChar> buffer([attribute length]);
-    [attribute getCharacters:buffer.data()];
-    buffer.append(':');
-    buffer.append(' ');
-
-    Vector<UniChar> valueBuffer([value length]);
-    [value getCharacters:valueBuffer.data()];
-    buffer.append(valueBuffer);
-
-    return JSStringCreateWithCharacters(buffer.data(), buffer.size());
-}
-
-static void convertNSArrayToVector(NSArray* array, Vector<AccessibilityUIElement>& elementVector)
-{
-    NSUInteger count = [array count];
-    for (NSUInteger i = 0; i < count; ++i)
-        elementVector.append(AccessibilityUIElement([array objectAtIndex:i]));
-}
-
-static JSStringRef descriptionOfElements(Vector<AccessibilityUIElement>& elementVector)
-{
-    NSMutableString* allElementString = [NSMutableString string];
-    size_t size = elementVector.size();
-    for (size_t i = 0; i < size; ++i) {
-        NSString* attributes = attributesOfElement(elementVector[i].platformUIElement());
-        [allElementString appendFormat:@"%@\n------------\n", attributes];
-    }
-    
-    return [allElementString createJSStringRef];
-}
-
-void AccessibilityUIElement::getLinkedUIElements(Vector<AccessibilityUIElement>& elementVector)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* linkedElements = [m_element accessibilityAttributeValue:NSAccessibilityLinkedUIElementsAttribute];
-    convertNSArrayToVector(linkedElements, elementVector);
-    END_AX_OBJC_EXCEPTIONS
-}
-
-void AccessibilityUIElement::getDocumentLinks(Vector<AccessibilityUIElement>& elementVector)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* linkElements = [m_element accessibilityAttributeValue:@"AXLinkUIElements"];
-    convertNSArrayToVector(linkElements, elementVector);
-    END_AX_OBJC_EXCEPTIONS
-}
-
-void AccessibilityUIElement::getChildren(Vector<AccessibilityUIElement>& elementVector)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* children = [m_element accessibilityAttributeValue:NSAccessibilityChildrenAttribute];
-    convertNSArrayToVector(children, elementVector);
-    END_AX_OBJC_EXCEPTIONS
-}
-
-void AccessibilityUIElement::getChildrenWithRange(Vector<AccessibilityUIElement>& elementVector, unsigned location, unsigned length)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* children = [m_element accessibilityArrayAttributeValues:NSAccessibilityChildrenAttribute index:location maxCount:length];
-    convertNSArrayToVector(children, elementVector);
-    END_AX_OBJC_EXCEPTIONS
-}
-
-int AccessibilityUIElement::childrenCount()
-{
-    Vector<AccessibilityUIElement> children;
-    getChildren(children);
-    
-    return children.size();
-}
-
-AccessibilityUIElement AccessibilityUIElement::elementAtPoint(int x, int y)
-{
-    id element = [m_element accessibilityHitTest:NSMakePoint(x, y)];
-    if (!element)
-        return nil;
-    
-    return AccessibilityUIElement(element); 
-}
-
-unsigned AccessibilityUIElement::indexOfChild(AccessibilityUIElement* element)
-{
-    return [m_element accessibilityIndexOfChild:element->platformUIElement()];
-}
-
-AccessibilityUIElement AccessibilityUIElement::getChildAtIndex(unsigned index)
-{
-    Vector<AccessibilityUIElement> children;
-    getChildrenWithRange(children, index, 1);
-
-    if (children.size() == 1)
-        return children[0];
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::linkedUIElementAtIndex(unsigned index)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* objects = [m_element accessibilityAttributeValue:NSAccessibilityLinkedUIElementsAttribute];
-    if (index < [objects count])
-        return [objects objectAtIndex:index];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::ariaOwnsElementAtIndex(unsigned index)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* objects = [m_element accessibilityAttributeValue:NSAccessibilityOwnsAttribute];
-    if (index < [objects count])
-        return [objects objectAtIndex:index];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::ariaFlowToElementAtIndex(unsigned index)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* objects = [m_element accessibilityAttributeValue:NSAccessibilityLinkedUIElementsAttribute];
-    if (index < [objects count])
-        return [objects objectAtIndex:index];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::disclosedRowAtIndex(unsigned index)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* rows = [m_element accessibilityAttributeValue:NSAccessibilityDisclosedRowsAttribute];
-    if (index < [rows count])
-        return [rows objectAtIndex:index];
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::selectedChildAtIndex(unsigned index) const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* array = [m_element accessibilityAttributeValue:NSAccessibilitySelectedChildrenAttribute];
-    if (index < [array count])
-        return [array objectAtIndex:index];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-unsigned AccessibilityUIElement::selectedChildrenCount() const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    return [m_element accessibilityArrayAttributeCount:NSAccessibilitySelectedChildrenAttribute];
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::selectedRowAtIndex(unsigned index)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* rows = [m_element accessibilityAttributeValue:NSAccessibilitySelectedRowsAttribute];
-    if (index < [rows count])
-        return [rows objectAtIndex:index];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::rowAtIndex(unsigned index)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* rows = [m_element accessibilityAttributeValue:NSAccessibilityRowsAttribute];
-    if (index < [rows count])
-        return [rows objectAtIndex:index];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::titleUIElement()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id accessibilityObject = [m_element accessibilityAttributeValue:NSAccessibilityTitleUIElementAttribute];
-    if (accessibilityObject)
-        return AccessibilityUIElement(accessibilityObject);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::parentElement()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id accessibilityObject = [m_element accessibilityAttributeValue:NSAccessibilityParentAttribute];
-    if (accessibilityObject)
-        return AccessibilityUIElement(accessibilityObject);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::disclosedByRow()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id accessibilityObject = [m_element accessibilityAttributeValue:NSAccessibilityDisclosedByRowAttribute];
-    if (accessibilityObject)
-        return AccessibilityUIElement(accessibilityObject);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::attributesOfLinkedUIElements()
-{
-    Vector<AccessibilityUIElement> linkedElements;
-    getLinkedUIElements(linkedElements);
-    return descriptionOfElements(linkedElements);
-}
-
-JSStringRef AccessibilityUIElement::attributesOfDocumentLinks()
-{
-    Vector<AccessibilityUIElement> linkElements;
-    getDocumentLinks(linkElements);
-    return descriptionOfElements(linkElements);
-}
-
-JSStringRef AccessibilityUIElement::attributesOfChildren()
-{
-    Vector<AccessibilityUIElement> children;
-    getChildren(children);
-    return descriptionOfElements(children);
-}
-
-JSStringRef AccessibilityUIElement::allAttributes()
-{
-    NSString* attributes = attributesOfElement(m_element);
-    return [attributes createJSStringRef];
-}
-
-JSStringRef AccessibilityUIElement::stringAttributeValue(JSStringRef attribute)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:[NSString stringWithJSStringRef:attribute]];
-    if ([value isKindOfClass:[NSString class]])
-        return [value createJSStringRef];
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::uiElementAttributeValue(JSStringRef attribute) const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id uiElement = [m_element accessibilityAttributeValue:[NSString stringWithJSStringRef:attribute]];
-    return AccessibilityUIElement(uiElement);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-
-double AccessibilityUIElement::numberAttributeValue(JSStringRef attribute)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:[NSString stringWithJSStringRef:attribute]];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [value doubleValue];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-bool AccessibilityUIElement::boolAttributeValue(JSStringRef attribute)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:[NSString stringWithJSStringRef:attribute]];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [value boolValue];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return false;
-}
-
-bool AccessibilityUIElement::isAttributeSettable(JSStringRef attribute)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    return [m_element accessibilityIsAttributeSettable:[NSString stringWithJSStringRef:attribute]];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return false;
-}
-
-bool AccessibilityUIElement::isAttributeSupported(JSStringRef attribute)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    return [[m_element accessibilityAttributeNames] containsObject:[NSString stringWithJSStringRef:attribute]];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return false;
-}
-
-JSStringRef AccessibilityUIElement::parameterizedAttributeNames()
-{
-    NSArray* supportedParameterizedAttributes = [m_element accessibilityParameterizedAttributeNames];
-    
-    NSMutableString* attributesString = [NSMutableString string];
-    for (NSUInteger i = 0; i < [supportedParameterizedAttributes count]; ++i) {
-        [attributesString appendFormat:@"%@\n", [supportedParameterizedAttributes objectAtIndex:i]];
-    }
-    
-    return [attributesString createJSStringRef];
-}
-
-JSStringRef AccessibilityUIElement::role()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSString *role = descriptionOfValue([m_element accessibilityAttributeValue:NSAccessibilityRoleAttribute], m_element);
-    return concatenateAttributeAndValue(@"AXRole", role);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::subrole()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSString* role = descriptionOfValue([m_element accessibilityAttributeValue:NSAccessibilitySubroleAttribute], m_element);
-    return concatenateAttributeAndValue(@"AXSubrole", role);
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::roleDescription()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSString* role = descriptionOfValue([m_element accessibilityAttributeValue:NSAccessibilityRoleDescriptionAttribute], m_element);
-    return concatenateAttributeAndValue(@"AXRoleDescription", role);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::title()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSString* title = descriptionOfValue([m_element accessibilityAttributeValue:NSAccessibilityTitleAttribute], m_element);
-    return concatenateAttributeAndValue(@"AXTitle", title);
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::description()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id description = descriptionOfValue([m_element accessibilityAttributeValue:NSAccessibilityDescriptionAttribute], m_element);
-    return concatenateAttributeAndValue(@"AXDescription", description);
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::orientation() const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id description = descriptionOfValue([m_element accessibilityAttributeValue:NSAccessibilityOrientationAttribute], m_element);
-    return concatenateAttributeAndValue(@"AXOrientation", description);    
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::stringValue()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id description = descriptionOfValue([m_element accessibilityAttributeValue:NSAccessibilityValueAttribute], m_element);
-    return concatenateAttributeAndValue(@"AXValue", description);
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::language()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id description = descriptionOfValue([m_element accessibilityAttributeValue:@"AXLanguage"], m_element);
-    return concatenateAttributeAndValue(@"AXLanguage", description);
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::helpText() const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id description = descriptionOfValue([m_element accessibilityAttributeValue:NSAccessibilityHelpAttribute], m_element);
-    return concatenateAttributeAndValue(@"AXHelp", description);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-double AccessibilityUIElement::x()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSValue* positionValue = [m_element accessibilityAttributeValue:NSAccessibilityPositionAttribute];
-    return static_cast<double>([positionValue pointValue].x);    
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0.0f;
-}
-
-double AccessibilityUIElement::y()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSValue* positionValue = [m_element accessibilityAttributeValue:NSAccessibilityPositionAttribute];
-    return static_cast<double>([positionValue pointValue].y);    
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0.0f;
-}
-
-double AccessibilityUIElement::width()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSValue* sizeValue = [m_element accessibilityAttributeValue:NSAccessibilitySizeAttribute];
-    return static_cast<double>([sizeValue sizeValue].width);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0.0f;
-}
-
-double AccessibilityUIElement::height()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSValue* sizeValue = [m_element accessibilityAttributeValue:NSAccessibilitySizeAttribute];
-    return static_cast<double>([sizeValue sizeValue].height);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0.0f;
-}
-
-double AccessibilityUIElement::clickPointX()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSValue* positionValue = [m_element accessibilityAttributeValue:@"AXClickPoint"];
-    return static_cast<double>([positionValue pointValue].x);        
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0.0f;
-}
-
-double AccessibilityUIElement::clickPointY()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSValue* positionValue = [m_element accessibilityAttributeValue:@"AXClickPoint"];
-    return static_cast<double>([positionValue pointValue].y);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0.0f;
-}
-
-double AccessibilityUIElement::intValue() const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilityValueAttribute];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [(NSNumber*)value doubleValue]; 
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0.0f;
-}
-
-double AccessibilityUIElement::minValue()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilityMinValueAttribute];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [(NSNumber*)value doubleValue]; 
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0.0f;
-}
-
-double AccessibilityUIElement::maxValue()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilityMaxValueAttribute];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [(NSNumber*)value doubleValue]; 
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0.0;
-}
-
-JSStringRef AccessibilityUIElement::valueDescription()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSString* valueDescription = [m_element accessibilityAttributeValue:NSAccessibilityValueDescriptionAttribute];
-    if ([valueDescription isKindOfClass:[NSString class]])
-         return [valueDescription createJSStringRef];
-
-    END_AX_OBJC_EXCEPTIONS
-    return 0;
-}
-
-int AccessibilityUIElement::insertionPointLineNumber()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilityInsertionPointLineNumberAttribute];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [(NSNumber *)value intValue]; 
-    END_AX_OBJC_EXCEPTIONS
-    
-    return -1;
-}
-
-bool AccessibilityUIElement::isPressActionSupported()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* actions = [m_element accessibilityActionNames];
-    return [actions containsObject:NSAccessibilityPressAction];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return false;
-}
-
-bool AccessibilityUIElement::isIncrementActionSupported()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* actions = [m_element accessibilityActionNames];
-    return [actions containsObject:NSAccessibilityIncrementAction];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return false;
-}
-
-bool AccessibilityUIElement::isDecrementActionSupported()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* actions = [m_element accessibilityActionNames];
-    return [actions containsObject:NSAccessibilityDecrementAction];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return false;
-}
-
-bool AccessibilityUIElement::isEnabled()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilityEnabledAttribute];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [value boolValue];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return false;
-}
-
-bool AccessibilityUIElement::isRequired() const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:@"AXRequired"];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [value boolValue];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return false;
-}
-
-bool AccessibilityUIElement::isFocused() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isSelected() const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilitySelectedAttribute];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [value boolValue];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return false;
-}
-
-bool AccessibilityUIElement::isExpanded() const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilityExpandedAttribute];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [value boolValue];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return false;
-}
-
-bool AccessibilityUIElement::isChecked() const
-{
-    // On the Mac, intValue()==1 if a a checkable control is checked.
-    return intValue() == 1;
-}
-
-int AccessibilityUIElement::hierarchicalLevel() const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilityDisclosureLevelAttribute];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [value intValue];
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::speak()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:@"AXDRTSpeechAttribute"];
-    if ([value isKindOfClass:[NSString class]])
-        return [value createJSStringRef];
-    END_AX_OBJC_EXCEPTIONS
-        
-    return 0;
-}
-
-bool AccessibilityUIElement::ariaIsGrabbed() const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilityGrabbedAttribute];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [value boolValue];
-    END_AX_OBJC_EXCEPTIONS
-
-    return false;
-}
-
-JSStringRef AccessibilityUIElement::ariaDropEffects() const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilityDropEffectsAttribute];
-    if (![value isKindOfClass:[NSArray class]])
-        return 0;
-
-    NSMutableString* dropEffects = [NSMutableString string];
-    NSInteger length = [value count];
-    for (NSInteger k = 0; k < length; ++k) {
-        [dropEffects appendString:[value objectAtIndex:k]];
-        if (k < length - 1)
-            [dropEffects appendString:@","];
-    }
-    
-    return [dropEffects createJSStringRef];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-// parameterized attributes
-int AccessibilityUIElement::lineForIndex(int index)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilityLineForIndexParameterizedAttribute forParameter:[NSNumber numberWithInt:index]];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [(NSNumber *)value intValue]; 
-    END_AX_OBJC_EXCEPTIONS
-
-    return -1;
-}
-
-JSStringRef AccessibilityUIElement::rangeForLine(int line)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilityRangeForLineParameterizedAttribute forParameter:[NSNumber numberWithInt:line]];
-    if ([value isKindOfClass:[NSValue class]])
-        return [NSStringFromRange([value rangeValue]) createJSStringRef];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::rangeForPosition(int x, int y)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilityRangeForPositionParameterizedAttribute forParameter:[NSValue valueWithPoint:NSMakePoint(x, y)]];
-    if ([value isKindOfClass:[NSValue class]])
-        return [NSStringFromRange([value rangeValue]) createJSStringRef];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-
-JSStringRef AccessibilityUIElement::boundsForRange(unsigned location, unsigned length)
-{
-    NSRange range = NSMakeRange(location, length);
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilityBoundsForRangeParameterizedAttribute forParameter:[NSValue valueWithRange:range]];
-    NSRect rect = NSMakeRect(0,0,0,0);
-    if ([value isKindOfClass:[NSValue class]])
-        rect = [value rectValue]; 
-    
-    // don't return position information because it is platform dependent
-    NSMutableString* boundsDescription = [NSMutableString stringWithFormat:@"{{%f, %f}, {%f, %f}}",-1.0f,-1.0f,rect.size.width,rect.size.height];
-    return [boundsDescription createJSStringRef];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::stringForRange(unsigned location, unsigned length)
-{
-    NSRange range = NSMakeRange(location, length);
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id string = [m_element accessibilityAttributeValue:NSAccessibilityStringForRangeParameterizedAttribute forParameter:[NSValue valueWithRange:range]];
-    if (![string isKindOfClass:[NSString class]])
-        return 0;
-    
-    return [string createJSStringRef];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::attributedStringForRange(unsigned location, unsigned length)
-{
-    NSRange range = NSMakeRange(location, length);
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSAttributedString* string = [m_element accessibilityAttributeValue:NSAccessibilityAttributedStringForRangeParameterizedAttribute forParameter:[NSValue valueWithRange:range]];
-    if (![string isKindOfClass:[NSAttributedString class]])
-        return 0;
-    
-    NSString* stringWithAttrs = [string description];
-    return [stringWithAttrs createJSStringRef];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-bool AccessibilityUIElement::attributedStringRangeIsMisspelled(unsigned location, unsigned length)
-{
-    NSRange range = NSMakeRange(location, length);
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSAttributedString* string = [m_element accessibilityAttributeValue:NSAccessibilityAttributedStringForRangeParameterizedAttribute forParameter:[NSValue valueWithRange:range]];
-    if (![string isKindOfClass:[NSAttributedString class]])
-        return false;
-
-    NSDictionary* attrs = [string attributesAtIndex:0 effectiveRange:nil];
-    if([[attrs objectForKey:NSAccessibilityMisspelledTextAttribute] boolValue])
-        return true;    
-    END_AX_OBJC_EXCEPTIONS
-    
-    return false;
-}
-
-AccessibilityUIElement AccessibilityUIElement::uiElementForSearchPredicate(AccessibilityUIElement* startElement, bool isDirectionNext, JSStringRef searchKey, JSStringRef searchText)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSMutableDictionary* parameter = [NSMutableDictionary dictionary];
-    [parameter setObject:(isDirectionNext) ? @"AXDirectionNext" : @"AXDirectionPrevious" forKey:@"AXDirection"];
-    [parameter setObject:[NSNumber numberWithInt:1] forKey:@"AXResultsLimit"];
-    if (startElement && startElement->platformUIElement())
-        [parameter setObject:(id)startElement->platformUIElement() forKey:@"AXStartElement"];
-    if (searchKey)
-        [parameter setObject:[NSString stringWithJSStringRef:searchKey] forKey:@"AXSearchKey"];
-    if (searchText)
-        [parameter setObject:[NSString stringWithJSStringRef:searchText] forKey:@"AXSearchText"];
-    
-    id uiElement = [[m_element accessibilityAttributeValue:@"AXUIElementsForSearchPredicate" forParameter:parameter] lastObject];
-    return AccessibilityUIElement(uiElement);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::attributesOfColumnHeaders()
-{
-    // not yet defined in AppKit... odd
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* columnHeadersArray = [m_element accessibilityAttributeValue:@"AXColumnHeaderUIElements"];
-    Vector<AccessibilityUIElement> columnHeadersVector;
-    convertNSArrayToVector(columnHeadersArray, columnHeadersVector);
-    return descriptionOfElements(columnHeadersVector);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::attributesOfRowHeaders()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* rowHeadersArray = [m_element accessibilityAttributeValue:@"AXRowHeaderUIElements"];
-    Vector<AccessibilityUIElement> rowHeadersVector;
-    convertNSArrayToVector(rowHeadersArray, rowHeadersVector);
-    return descriptionOfElements(rowHeadersVector);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::attributesOfColumns()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* columnsArray = [m_element accessibilityAttributeValue:NSAccessibilityColumnsAttribute];
-    Vector<AccessibilityUIElement> columnsVector;
-    convertNSArrayToVector(columnsArray, columnsVector);
-    return descriptionOfElements(columnsVector);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::attributesOfRows()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* rowsArray = [m_element accessibilityAttributeValue:NSAccessibilityRowsAttribute];
-    Vector<AccessibilityUIElement> rowsVector;
-    convertNSArrayToVector(rowsArray, rowsVector);
-    return descriptionOfElements(rowsVector);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::attributesOfVisibleCells()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* cellsArray = [m_element accessibilityAttributeValue:@"AXVisibleCells"];
-    Vector<AccessibilityUIElement> cellsVector;
-    convertNSArrayToVector(cellsArray, cellsVector);
-    return descriptionOfElements(cellsVector);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::attributesOfHeader()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id headerObject = [m_element accessibilityAttributeValue:NSAccessibilityHeaderAttribute];
-    if (!headerObject)
-        return [@"" createJSStringRef];
-    
-    Vector<AccessibilityUIElement> headerVector;
-    headerVector.append(headerObject);
-    return descriptionOfElements(headerVector);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-int AccessibilityUIElement::rowCount()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    return [m_element accessibilityArrayAttributeCount:NSAccessibilityRowsAttribute];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-int AccessibilityUIElement::columnCount()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    return [m_element accessibilityArrayAttributeCount:NSAccessibilityColumnsAttribute];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-int AccessibilityUIElement::indexInTable()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSNumber* indexNumber = [m_element accessibilityAttributeValue:NSAccessibilityIndexAttribute];
-    if (indexNumber)
-        return [indexNumber intValue];
-    END_AX_OBJC_EXCEPTIONS
-
-    return -1;
-}
-
-JSStringRef AccessibilityUIElement::rowIndexRange()
-{
-    NSRange range = NSMakeRange(0, 0);
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSValue* indexRange = [m_element accessibilityAttributeValue:@"AXRowIndexRange"];
-    if (indexRange)
-        range = [indexRange rangeValue];
-    NSMutableString* rangeDescription = [NSMutableString stringWithFormat:@"{%lu, %lu}", static_cast<unsigned long>(range.location), static_cast<unsigned long>(range.length)];
-    return [rangeDescription createJSStringRef];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::columnIndexRange()
-{
-    NSRange range = NSMakeRange(0, 0);
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSNumber* indexRange = [m_element accessibilityAttributeValue:@"AXColumnIndexRange"];
-    if (indexRange)
-        range = [indexRange rangeValue];
-    NSMutableString* rangeDescription = [NSMutableString stringWithFormat:@"{%lu, %lu}",static_cast<unsigned long>(range.location), static_cast<unsigned long>(range.length)];
-    return [rangeDescription createJSStringRef];    
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::cellForColumnAndRow(unsigned col, unsigned row)
-{
-    NSArray *colRowArray = [NSArray arrayWithObjects:[NSNumber numberWithUnsignedInt:col], [NSNumber numberWithUnsignedInt:row], nil];
-    BEGIN_AX_OBJC_EXCEPTIONS
-    return [m_element accessibilityAttributeValue:@"AXCellForColumnAndRow" forParameter:colRowArray];
-    END_AX_OBJC_EXCEPTIONS    
-
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::horizontalScrollbar() const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    return AccessibilityUIElement([m_element accessibilityAttributeValue:NSAccessibilityHorizontalScrollBarAttribute]);
-    END_AX_OBJC_EXCEPTIONS    
-    
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::verticalScrollbar() const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    return AccessibilityUIElement([m_element accessibilityAttributeValue:NSAccessibilityVerticalScrollBarAttribute]);
-    END_AX_OBJC_EXCEPTIONS        
-
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::selectedTextRange()
-{
-    NSRange range = NSMakeRange(NSNotFound, 0);
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSValue *indexRange = [m_element accessibilityAttributeValue:NSAccessibilitySelectedTextRangeAttribute];
-    if (indexRange)
-        range = [indexRange rangeValue];
-    NSMutableString *rangeDescription = [NSMutableString stringWithFormat:@"{%lu, %lu}", static_cast<unsigned long>(range.location), static_cast<unsigned long>(range.length)];
-    return [rangeDescription createJSStringRef];    
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-void AccessibilityUIElement::setSelectedTextRange(unsigned location, unsigned length)
-{
-    NSRange textRange = NSMakeRange(location, length);
-    NSValue *textRangeValue = [NSValue valueWithRange:textRange];
-    BEGIN_AX_OBJC_EXCEPTIONS
-    [m_element accessibilitySetValue:textRangeValue forAttribute:NSAccessibilitySelectedTextRangeAttribute];
-    END_AX_OBJC_EXCEPTIONS
-}
-
-void AccessibilityUIElement::increment()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    [m_element accessibilityPerformAction:NSAccessibilityIncrementAction];
-    END_AX_OBJC_EXCEPTIONS
-}
-
-void AccessibilityUIElement::decrement()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    [m_element accessibilityPerformAction:NSAccessibilityDecrementAction];
-    END_AX_OBJC_EXCEPTIONS
-}
-
-void AccessibilityUIElement::showMenu()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    [m_element accessibilityPerformAction:NSAccessibilityShowMenuAction];
-    END_AX_OBJC_EXCEPTIONS
-}
-
-void AccessibilityUIElement::press()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    [m_element accessibilityPerformAction:NSAccessibilityPressAction];
-    END_AX_OBJC_EXCEPTIONS
-}
-
-void AccessibilityUIElement::setSelectedChild(AccessibilityUIElement* element) const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* array = [NSArray arrayWithObject:element->platformUIElement()];
-    [m_element accessibilitySetValue:array forAttribute:NSAccessibilitySelectedChildrenAttribute];
-    END_AX_OBJC_EXCEPTIONS    
-}
-
-JSStringRef AccessibilityUIElement::accessibilityValue() const
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::documentEncoding()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::documentURI()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::url()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSURL *url = [m_element accessibilityAttributeValue:NSAccessibilityURLAttribute];
-    return [[url absoluteString] createJSStringRef];    
-    END_AX_OBJC_EXCEPTIONS
-    
-    return nil;
-}
-
-bool AccessibilityUIElement::addNotificationListener(JSObjectRef functionCallback)
-{
-    if (!functionCallback)
-        return false;
- 
-    // Mac programmers should not be adding more than one notification listener per element.
-    // Other platforms may be different.
-    if (m_notificationHandler)
-        return false;
-    m_notificationHandler = [[AccessibilityNotificationHandler alloc] init];
-    [m_notificationHandler setPlatformElement:platformUIElement()];
-    [m_notificationHandler setCallback:functionCallback];
-    [m_notificationHandler startObserving];
-
-    return true;
-}
-
-void AccessibilityUIElement::removeNotificationListener()
-{
-    // Mac programmers should not be trying to remove a listener that's already removed.
-    ASSERT(m_notificationHandler);
-
-    [m_notificationHandler release];
-    m_notificationHandler = nil;
-}
-
-bool AccessibilityUIElement::isFocusable() const
-{
-    bool result = false;
-    BEGIN_AX_OBJC_EXCEPTIONS
-    result = [m_element accessibilityIsAttributeSettable:NSAccessibilityFocusedAttribute];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return result;
-}
-
-bool AccessibilityUIElement::isSelectable() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isMultiSelectable() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isSelectedOptionActive() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isVisible() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isOffScreen() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isCollapsed() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isIgnored() const
-{
-    BOOL result = NO;
-    BEGIN_AX_OBJC_EXCEPTIONS
-    result = [m_element accessibilityIsIgnored];
-    END_AX_OBJC_EXCEPTIONS
-    return result;
-}
-
-bool AccessibilityUIElement::hasPopup() const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:@"AXHasPopup"];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [value boolValue];
-    END_AX_OBJC_EXCEPTIONS
-
-    return false;
-}
-
-void AccessibilityUIElement::takeFocus()
-{
-    // FIXME: implement
-}
-
-void AccessibilityUIElement::takeSelection()
-{
-    // FIXME: implement
-}
-
-void AccessibilityUIElement::addSelection()
-{
-    // FIXME: implement
-}
-
-void AccessibilityUIElement::removeSelection()
-{
-    // FIXME: implement
-}
-
-#if SUPPORTS_AX_TEXTMARKERS
-
-// Text markers
-AccessibilityTextMarkerRange AccessibilityUIElement::textMarkerRangeForElement(AccessibilityUIElement* element)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id textMarkerRange = [m_element accessibilityAttributeValue:@"AXTextMarkerRangeForUIElement" forParameter:element->platformUIElement()];
-    return AccessibilityTextMarkerRange(textMarkerRange);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-int AccessibilityUIElement::textMarkerRangeLength(AccessibilityTextMarkerRange* range)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSNumber* lengthValue = [m_element accessibilityAttributeValue:@"AXLengthForTextMarkerRange" forParameter:(id)range->platformTextMarkerRange()];
-    return [lengthValue intValue];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-bool AccessibilityUIElement::attributedStringForTextMarkerRangeContainsAttribute(JSStringRef attribute, AccessibilityTextMarkerRange* range)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSAttributedString* string = [m_element accessibilityAttributeValue:@"AXAttributedStringForTextMarkerRange" forParameter:(id)range->platformTextMarkerRange()];
-    if (![string isKindOfClass:[NSAttributedString class]])
-        return false;
-    
-    NSDictionary* attrs = [string attributesAtIndex:0 effectiveRange:nil];
-    if ([attrs objectForKey:[NSString stringWithJSStringRef:attribute]])
-        return true;    
-    END_AX_OBJC_EXCEPTIONS
-    
-    return false;
-}
-
-int AccessibilityUIElement::indexForTextMarker(AccessibilityTextMarker* marker)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSNumber* indexNumber = [m_element accessibilityAttributeValue:@"AXIndexForTextMarker" forParameter:(id)marker->platformTextMarker()];
-    return [indexNumber intValue];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return -1;
-}
-
-AccessibilityTextMarker AccessibilityUIElement::textMarkerForIndex(int textIndex)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id textMarker = [m_element accessibilityAttributeValue:@"AXTextMarkerForIndex" forParameter:[NSNumber numberWithInteger:textIndex]];
-    return AccessibilityTextMarker(textMarker);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-bool AccessibilityUIElement::isTextMarkerValid(AccessibilityTextMarker* textMarker)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSNumber* validNumber = [m_element accessibilityAttributeValue:@"AXTextMarkerIsValid" forParameter:(id)textMarker->platformTextMarker()];
-    return [validNumber boolValue];
-    END_AX_OBJC_EXCEPTIONS
-
-    return false;
-}
-
-AccessibilityTextMarker AccessibilityUIElement::previousTextMarker(AccessibilityTextMarker* textMarker)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id previousMarker = [m_element accessibilityAttributeValue:@"AXPreviousTextMarkerForTextMarker" forParameter:(id)textMarker->platformTextMarker()];
-    return AccessibilityTextMarker(previousMarker);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-AccessibilityTextMarker AccessibilityUIElement::nextTextMarker(AccessibilityTextMarker* textMarker)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id nextMarker = [m_element accessibilityAttributeValue:@"AXNextTextMarkerForTextMarker" forParameter:(id)textMarker->platformTextMarker()];
-    return AccessibilityTextMarker(nextMarker);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::stringForTextMarkerRange(AccessibilityTextMarkerRange* markerRange)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id textString = [m_element accessibilityAttributeValue:@"AXStringForTextMarkerRange" forParameter:(id)markerRange->platformTextMarkerRange()];
-    return [textString createJSStringRef];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-AccessibilityTextMarkerRange AccessibilityUIElement::textMarkerRangeForMarkers(AccessibilityTextMarker* startMarker, AccessibilityTextMarker* endMarker)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* textMarkers = [NSArray arrayWithObjects:(id)startMarker->platformTextMarker(), (id)endMarker->platformTextMarker(), nil];
-    id textMarkerRange = [m_element accessibilityAttributeValue:@"AXTextMarkerRangeForUnorderedTextMarkers" forParameter:textMarkers];
-    return AccessibilityTextMarkerRange(textMarkerRange);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-AccessibilityTextMarker AccessibilityUIElement::startTextMarkerForTextMarkerRange(AccessibilityTextMarkerRange* range)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id textMarker = [m_element accessibilityAttributeValue:@"AXStartTextMarkerForTextMarkerRange" forParameter:(id)range->platformTextMarkerRange()];
-    return AccessibilityTextMarker(textMarker);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;    
-}
-
-AccessibilityTextMarker AccessibilityUIElement::endTextMarkerForTextMarkerRange(AccessibilityTextMarkerRange* range)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id textMarker = [m_element accessibilityAttributeValue:@"AXEndTextMarkerForTextMarkerRange" forParameter:(id)range->platformTextMarkerRange()];
-    return AccessibilityTextMarker(textMarker);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;    
-}
-
-AccessibilityTextMarker AccessibilityUIElement::textMarkerForPoint(int x, int y)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id textMarker = [m_element accessibilityAttributeValue:@"AXTextMarkerForPosition" forParameter:[NSValue valueWithPoint:NSMakePoint(x, y)]];
-    return AccessibilityTextMarker(textMarker);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;    
-}
-
-AccessibilityUIElement AccessibilityUIElement::accessibilityElementForTextMarker(AccessibilityTextMarker* marker)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id uiElement = [m_element accessibilityAttributeValue:@"AXUIElementForTextMarker" forParameter:(id)marker->platformTextMarker()];
-    return AccessibilityUIElement(uiElement);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;  
-}
-
-#endif // SUPPORTS_AX_TEXTMARKERS
-
-JSStringRef AccessibilityUIElement::supportedActions()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray *names = [m_element accessibilityActionNames];
-    return [[names componentsJoinedByString:@","] createJSStringRef];
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0;
-}
-
-void AccessibilityUIElement::scrollToMakeVisible()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    [m_element accessibilityPerformAction:@"AXScrollToVisible"];
-    END_AX_OBJC_EXCEPTIONS
-}
-
-void AccessibilityUIElement::scrollToMakeVisibleWithSubFocus(int x, int y, int width, int height)
-{
-    // FIXME: implement
-}
-
-void AccessibilityUIElement::scrollToGlobalPoint(int x, int y)
-{
-    // FIXME: implement
-}
diff --git a/Tools/DumpRenderTree/mac/AppleScriptController.h b/Tools/DumpRenderTree/mac/AppleScriptController.h
deleted file mode 100644
index c29789c..0000000
--- a/Tools/DumpRenderTree/mac/AppleScriptController.h
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * Copyright (C) 2006 Apple Computer, Inc.  All rights reserved.
- * Copyright (C) 2006 Alexey Proskuryakov (ap@nypop.com)
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import <Foundation/Foundation.h>
-
-@class WebView;
-
-@interface AppleScriptController : NSObject
-{
-    WebView *webView;
-}
-- (id)initWithWebView:(WebView *)view;
-@end
diff --git a/Tools/DumpRenderTree/mac/AppleScriptController.m b/Tools/DumpRenderTree/mac/AppleScriptController.m
deleted file mode 100644
index 2eab827..0000000
--- a/Tools/DumpRenderTree/mac/AppleScriptController.m
+++ /dev/null
@@ -1,127 +0,0 @@
-/*
- * Copyright (C) 2006 Apple Computer, Inc.  All rights reserved.
- * Copyright (C) 2006 Alexey Proskuryakov (ap@nypop.com)
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "AppleScriptController.h"
-
-#import <WebKit/WebView.h>
-#import <WebKit/WebViewPrivate.h>   // for aeDescByEvaluatingJavaScriptFromString, which is pending API review
-
-@implementation AppleScriptController
-
-+ (BOOL)isSelectorExcludedFromWebScript:(SEL)aSelector
-{
-    if (aSelector == @selector(doJavaScript:))
-        return NO;
-    return YES;
-}
-
-+ (NSString *)webScriptNameForSelector:(SEL)aSelector
-{
-    if (aSelector == @selector(doJavaScript:))
-        return @"doJavaScript";
-
-    return nil;
-}
-
-- (id)initWithWebView:(WebView *)wv
-{
-    self = [super init];
-    webView = wv;
-    return self;
-}
-
-static id convertAEDescToObject(NSAppleEventDescriptor *aeDesc)
-{
-    id value = nil;
-
-    DescType descType = [aeDesc descriptorType];
-    switch (descType) {
-        case typeUnicodeText:
-            value = [NSString stringWithFormat:@"\"%@\"", [aeDesc stringValue]];
-            break;
-        case typeLongDateTime:
-            if ([[aeDesc data] length] == sizeof(LongDateTime)) {
-                LongDateTime d;
-                [[aeDesc data] getBytes:&d];
-                value = [NSString stringWithFormat:@"%016llX", (unsigned long long)d];
-            }
-            break;
-        case typeAEList:
-            value = [NSMutableString stringWithString:@"("];
-            int numItems = [aeDesc numberOfItems];
-            for (int i = 0; i < numItems; ++i) {
-                if (i != 0)
-                    [(NSMutableString*)value appendString:@", "];
-                id obj = convertAEDescToObject([aeDesc descriptorAtIndex:(i + 1)]);
-                [(NSMutableString*)value appendString:[obj description]];
-            }
-            [(NSMutableString*)value appendString:@")"];
-            break;
-        case typeType: {
-            OSType type = [aeDesc typeCodeValue];
-
-            char typeStr[5];
-            typeStr[0] = type >> 24;
-            typeStr[1] = type >> 16;
-            typeStr[2] = type >> 8;
-            typeStr[3] = type;
-            typeStr[4] = 0;
-
-            value = [NSString stringWithFormat:@"'%s'", typeStr];
-            break;
-        }
-    }
-
-    if (!value)
-        value = [aeDesc stringValue];
-    if (!value)
-        value = [aeDesc data];
-
-    return value;
-}
-
-- (NSString *)doJavaScript:(NSString *)aString
-{
-    NSAppleEventDescriptor *aeDesc = [webView aeDescByEvaluatingJavaScriptFromString:aString];
-    if (!aeDesc)
-        return @"(null)";
-    
-    DescType descType = [aeDesc descriptorType];
-    char descTypeStr[5];
-    descTypeStr[0] = descType >> 24;
-    descTypeStr[1] = descType >> 16;
-    descTypeStr[2] = descType >> 8;
-    descTypeStr[3] = descType;
-    descTypeStr[4] = 0;
-
-    return [NSString stringWithFormat:@"%@ ('%s')", convertAEDescToObject(aeDesc), descTypeStr];
-}
-
-@end
diff --git a/Tools/DumpRenderTree/mac/CheckedMalloc.cpp b/Tools/DumpRenderTree/mac/CheckedMalloc.cpp
deleted file mode 100644
index b56cb28..0000000
--- a/Tools/DumpRenderTree/mac/CheckedMalloc.cpp
+++ /dev/null
@@ -1,92 +0,0 @@
-/*
- * Copyright (C) 2005, 2006, 2007, 2010 Apple Inc. All rights reserved.
- *           (C) 2007 Graham Dennis (graham.dennis@gmail.com)
- *           (C) 2007 Eric Seidel <eric@webkit.org>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h" 
-#import "CheckedMalloc.h"
-
-#import <mach/mach_init.h>
-#import <mach/mach_vm.h>
-#import <mach/vm_region.h>
-#import <malloc/malloc.h>
-#import <unistd.h>
-
-static void* (*savedMalloc)(malloc_zone_t*, size_t);
-static void* (*savedRealloc)(malloc_zone_t*, void*, size_t);
-
-static void* checkedMalloc(malloc_zone_t* zone, size_t size)
-{
-    if (size >= 0x10000000)
-        return 0;
-    return savedMalloc(zone, size);
-}
-
-static void* checkedRealloc(malloc_zone_t* zone, void* ptr, size_t size)
-{
-    if (size >= 0x10000000)
-        return 0;
-    return savedRealloc(zone, ptr, size);
-}
-
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1070
-static vm_prot_t protectionOfRegion(mach_vm_address_t address)
-{
-    mach_vm_size_t regionSize = 0;
-    vm_region_basic_info_64 regionInfo;
-    mach_msg_type_number_t regionInfoCount = VM_REGION_BASIC_INFO_COUNT_64;
-    mach_port_t objectName;
-    if (mach_vm_region(mach_task_self(), &address, &regionSize, VM_REGION_BASIC_INFO_64, (vm_region_info_t)&regionInfo, &regionInfoCount, &objectName))
-        CRASH();
-    return regionInfo.protection;
-}
-#endif
-
-void makeLargeMallocFailSilently()
-{
-    malloc_zone_t* zone = malloc_default_zone();
-
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1070
-    mach_vm_address_t pageStart = reinterpret_cast<vm_address_t>(zone) & static_cast<vm_size_t>(~(getpagesize() - 1));
-    vm_prot_t initialProtection = protectionOfRegion(pageStart);
-
-    vm_size_t len = reinterpret_cast<vm_address_t>(zone) - pageStart + sizeof(malloc_zone_t);
-    if (mach_vm_protect(mach_task_self(), pageStart, len, 0, initialProtection | VM_PROT_WRITE))
-        CRASH();
-#endif
-
-    savedMalloc = zone->malloc;
-    savedRealloc = zone->realloc;
-    zone->malloc = checkedMalloc;
-    zone->realloc = checkedRealloc;
-
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1070
-    if (mach_vm_protect(mach_task_self(), pageStart, len, 0, initialProtection))
-        CRASH();
-#endif
-}
diff --git a/Tools/DumpRenderTree/mac/CheckedMalloc.h b/Tools/DumpRenderTree/mac/CheckedMalloc.h
deleted file mode 100644
index c03bd20..0000000
--- a/Tools/DumpRenderTree/mac/CheckedMalloc.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * Copyright (C) 2005, 2006, 2007 Apple, Inc.  All rights reserved.
- *           (C) 2007 Graham Dennis (graham.dennis@gmail.com)
- *           (C) 2007 Eric Seidel <eric@webkit.org>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-void makeLargeMallocFailSilently();
diff --git a/Tools/DumpRenderTree/mac/Configurations/Base.xcconfig b/Tools/DumpRenderTree/mac/Configurations/Base.xcconfig
deleted file mode 100644
index be91f5e..0000000
--- a/Tools/DumpRenderTree/mac/Configurations/Base.xcconfig
+++ /dev/null
@@ -1,56 +0,0 @@
-// Copyright (C) 2009 Apple Inc. All rights reserved.
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions
-// are met:
-// 1. Redistributions of source code must retain the above copyright
-//    notice, this list of conditions and the following disclaimer.
-// 2. Redistributions in binary form must reproduce the above copyright
-//    notice, this list of conditions and the following disclaimer in the
-//    documentation and/or other materials provided with the distribution.
-//
-// THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
-// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-// PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
-// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-
-CLANG_CXX_LANGUAGE_STANDARD = gnu++0x;
-CLANG_CXX_LIBRARY = libc++;
-CLANG_WARN_CXX0X_EXTENSIONS = NO;
-HEADER_SEARCH_PATHS = $(BUILT_PRODUCTS_DIR)/usr/local/include ForwardingHeaders mac/InternalHeaders $(NEXT_ROOT)/usr/local/include/WebCoreTestSupport ${SRCROOT}/../../Source/JavaScriptCore/icu;
-FRAMEWORK_SEARCH_PATHS = $(SYSTEM_LIBRARY_DIR)/Frameworks/Quartz.framework/Frameworks $(SYSTEM_LIBRARY_DIR)/Frameworks/ApplicationServices.framework/Frameworks $(SYSTEM_LIBRARY_DIR)/Frameworks/CoreServices.framework/Frameworks;
-GCC_PREPROCESSOR_DEFINITIONS = ENABLE_DASHBOARD_SUPPORT WEBKIT_VERSION_MIN_REQUIRED=WEBKIT_VERSION_LATEST;
-DEBUG_INFORMATION_FORMAT = dwarf-with-dsym;
-PREBINDING = NO
-GCC_C_LANGUAGE_STANDARD = gnu99
-GCC_ENABLE_CPP_RTTI = NO;
-GCC_OBJC_CALL_CXX_CDTORS = YES
-GCC_PRECOMPILE_PREFIX_HEADER = YES
-GCC_TREAT_WARNINGS_AS_ERRORS = YES
-GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
-GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO
-GCC_WARN_UNUSED_FUNCTION = YES
-GCC_WARN_UNUSED_VARIABLE = YES
-WARNING_CFLAGS = -Wall -W -Wno-unused-parameter -Wundef
-LINKER_DISPLAYS_MANGLED_NAMES = YES;
-
-TARGET_MAC_OS_X_VERSION_MAJOR = $(MAC_OS_X_VERSION_MAJOR);
-
-
-TARGETING_SAME_OS_X_VERSION = $(TARGETING_SAME_OS_X_VERSION_$(MAC_OS_X_VERSION_MAJOR)_$(TARGET_MAC_OS_X_VERSION_MAJOR));
-TARGETING_SAME_OS_X_VERSION_1070_1070 = YES;
-TARGETING_SAME_OS_X_VERSION_1080_1080 = YES;
-TARGETING_SAME_OS_X_VERSION_1090_1090 = YES;
-
-// Don't build against an SDK unless we're targeting an older OS version.
-SDKROOT = $(SDKROOT_TARGETING_SAME_OS_X_VERSION_$(TARGETING_SAME_OS_X_VERSION));
-SDKROOT_TARGETING_SAME_OS_X_VERSION_ = macosx;
-
-WEBKIT_SYSTEM_INTERFACE_LIBRARY = WebKitSystemInterface
diff --git a/Tools/DumpRenderTree/mac/Configurations/DebugRelease.xcconfig b/Tools/DumpRenderTree/mac/Configurations/DebugRelease.xcconfig
deleted file mode 100644
index fd5ebdb..0000000
--- a/Tools/DumpRenderTree/mac/Configurations/DebugRelease.xcconfig
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright (C) 2009 Apple Inc. All rights reserved.
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions
-// are met:
-// 1. Redistributions of source code must retain the above copyright
-//    notice, this list of conditions and the following disclaimer.
-// 2. Redistributions in binary form must reproduce the above copyright
-//    notice, this list of conditions and the following disclaimer in the
-//    documentation and/or other materials provided with the distribution.
-//
-// THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
-// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-// PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
-// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-
-#include "Base.xcconfig"
-
-ARCHS = $(ARCHS_STANDARD_32_64_BIT);
-
-ONLY_ACTIVE_ARCH = YES;
-
-MACOSX_DEPLOYMENT_TARGET = $(MACOSX_DEPLOYMENT_TARGET_$(TARGET_MAC_OS_X_VERSION_MAJOR))
-MACOSX_DEPLOYMENT_TARGET_1070 = 10.7;
-MACOSX_DEPLOYMENT_TARGET_1080 = 10.8;
-MACOSX_DEPLOYMENT_TARGET_1090 = 10.9;
-
-WEBKIT_SYSTEM_INTERFACE_LIBRARY = $(WEBKIT_SYSTEM_INTERFACE_LIBRARY_$(PLATFORM_NAME));
-WEBKIT_SYSTEM_INTERFACE_LIBRARY_iphoneos = WebKitSystemInterface;
-WEBKIT_SYSTEM_INTERFACE_LIBRARY_iphonesimulator = $(WEBKIT_SYSTEM_INTERFACE_LIBRARY_iphoneos);
-WEBKIT_SYSTEM_INTERFACE_LIBRARY_macosx = $(WEBKIT_SYSTEM_INTERFACE_LIBRARY_macosx_$(TARGET_MAC_OS_X_VERSION_MAJOR));
-WEBKIT_SYSTEM_INTERFACE_LIBRARY_macosx_1070 = WebKitSystemInterfaceLion;
-WEBKIT_SYSTEM_INTERFACE_LIBRARY_macosx_1080 = WebKitSystemInterfaceMountainLion;
-WEBKIT_SYSTEM_INTERFACE_LIBRARY_macosx_1090 = WebKitSystemInterfaceMountainLion;
diff --git a/Tools/DumpRenderTree/mac/Configurations/DumpRenderTree.xcconfig b/Tools/DumpRenderTree/mac/Configurations/DumpRenderTree.xcconfig
deleted file mode 100644
index 8235bdb..0000000
--- a/Tools/DumpRenderTree/mac/Configurations/DumpRenderTree.xcconfig
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright (C) 2009 Apple Inc. All rights reserved.
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions
-// are met:
-// 1. Redistributions of source code must retain the above copyright
-//    notice, this list of conditions and the following disclaimer.
-// 2. Redistributions in binary form must reproduce the above copyright
-//    notice, this list of conditions and the following disclaimer in the
-//    documentation and/or other materials provided with the distribution.
-//
-// THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
-// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-// PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
-// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-
-OTHER_LDFLAGS = -sectcreate __DATA Ahem qt/fonts/AHEM____.TTF -sectcreate __DATA WeightWatcher100 fonts/WebKitWeightWatcher100.ttf -sectcreate __DATA WeightWatcher200 fonts/WebKitWeightWatcher200.ttf -sectcreate __DATA WeightWatcher300 fonts/WebKitWeightWatcher300.ttf -sectcreate __DATA WeightWatcher400 fonts/WebKitWeightWatcher400.ttf -sectcreate __DATA WeightWatcher500 fonts/WebKitWeightWatcher500.ttf -sectcreate __DATA WeightWatcher600 fonts/WebKitWeightWatcher600.ttf -sectcreate __DATA WeightWatcher700 fonts/WebKitWeightWatcher700.ttf -sectcreate __DATA WeightWatcher800 fonts/WebKitWeightWatcher800.ttf -sectcreate __DATA WeightWatcher900 fonts/WebKitWeightWatcher900.ttf -sectcreate __DATA HiraMaruMono-W4 fonts/SampleFont.sfont -l$(WEBKIT_SYSTEM_INTERFACE_LIBRARY)
-LD_RUNPATH_SEARCH_PATHS = "@loader_path/.";
-PRODUCT_NAME = DumpRenderTree
-GCC_ENABLE_OBJC_EXCEPTIONS = YES
-GCC_PREFIX_HEADER = DumpRenderTreePrefix.h
diff --git a/Tools/DumpRenderTree/mac/Configurations/ImageDiff.xcconfig b/Tools/DumpRenderTree/mac/Configurations/ImageDiff.xcconfig
deleted file mode 100644
index 35968af..0000000
--- a/Tools/DumpRenderTree/mac/Configurations/ImageDiff.xcconfig
+++ /dev/null
@@ -1,24 +0,0 @@
-// Copyright (C) 2009 Apple Inc. All rights reserved.
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions
-// are met:
-// 1. Redistributions of source code must retain the above copyright
-//    notice, this list of conditions and the following disclaimer.
-// 2. Redistributions in binary form must reproduce the above copyright
-//    notice, this list of conditions and the following disclaimer in the
-//    documentation and/or other materials provided with the distribution.
-//
-// THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
-// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-// PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
-// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-
-PRODUCT_NAME = ImageDiff
diff --git a/Tools/DumpRenderTree/mac/Configurations/TestNetscapePlugIn.xcconfig b/Tools/DumpRenderTree/mac/Configurations/TestNetscapePlugIn.xcconfig
deleted file mode 100644
index 22ea4c2..0000000
--- a/Tools/DumpRenderTree/mac/Configurations/TestNetscapePlugIn.xcconfig
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright (C) 2009 Apple Inc. All rights reserved.
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions
-// are met:
-// 1. Redistributions of source code must retain the above copyright
-//    notice, this list of conditions and the following disclaimer.
-// 2. Redistributions in binary form must reproduce the above copyright
-//    notice, this list of conditions and the following disclaimer in the
-//    documentation and/or other materials provided with the distribution.
-//
-// THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
-// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-// PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
-// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-
-PRODUCT_NAME = TestNetscapePlugIn
-WRAPPER_EXTENSION = plugin
-INFOPLIST_FILE = TestNetscapePlugIn.subproj/Info.plist
-INSTALL_PATH = "$(USER_LIBRARY_DIR)/Plugins"
-WARNING_CFLAGS = -Wmost -Wno-four-char-constants -Wno-unknown-pragmas
-LIBRARY_STYLE = BUNDLE
diff --git a/Tools/DumpRenderTree/mac/DumpRenderTree.mm b/Tools/DumpRenderTree/mac/DumpRenderTree.mm
deleted file mode 100644
index 8073e69..0000000
--- a/Tools/DumpRenderTree/mac/DumpRenderTree.mm
+++ /dev/null
@@ -1,1453 +0,0 @@
-/*
- * Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
- *           (C) 2007 Graham Dennis (graham.dennis@gmail.com)
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "DumpRenderTree.h"
-
-#import "AccessibilityController.h"
-#import "CheckedMalloc.h"
-#import "DumpRenderTreeDraggingInfo.h"
-#import "DumpRenderTreePasteboard.h"
-#import "DumpRenderTreeWindow.h"
-#import "EditingDelegate.h"
-#import "EventSendingController.h"
-#import "FrameLoadDelegate.h"
-#import "HistoryDelegate.h"
-#import "JavaScriptThreading.h"
-#import "TestRunner.h"
-#import "MockGeolocationProvider.h"
-#import "MockWebNotificationProvider.h"
-#import "NavigationController.h"
-#import "ObjCPlugin.h"
-#import "ObjCPluginFunction.h"
-#import "PixelDumpSupport.h"
-#import "PolicyDelegate.h"
-#import "ResourceLoadDelegate.h"
-#import "StorageTrackerDelegate.h"
-#import "UIDelegate.h"
-#import "WebArchiveDumpSupport.h"
-#import "WebCoreTestSupport.h"
-#import "WorkQueue.h"
-#import "WorkQueueItem.h"
-#import <Carbon/Carbon.h>
-#import <CoreFoundation/CoreFoundation.h>
-#import <JavaScriptCore/HeapStatistics.h>
-#import <JavaScriptCore/Options.h>
-#import <WebCore/FoundationExtras.h>
-#import <WebKit/DOMElement.h>
-#import <WebKit/DOMExtensions.h>
-#import <WebKit/DOMRange.h>
-#import <WebKit/WebArchive.h>
-#import <WebKit/WebBackForwardList.h>
-#import <WebKit/WebCache.h>
-#import <WebKit/WebCoreStatistics.h>
-#import <WebKit/WebDataSourcePrivate.h>
-#import <WebKit/WebDatabaseManagerPrivate.h>
-#import <WebKit/WebDocumentPrivate.h>
-#import <WebKit/WebDeviceOrientationProviderMock.h>
-#import <WebKit/WebDynamicScrollBarsView.h>
-#import <WebKit/WebEditingDelegate.h>
-#import <WebKit/WebFrameView.h>
-#import <WebKit/WebHistory.h>
-#import <WebKit/WebHistoryItemPrivate.h>
-#import <WebKit/WebInspector.h>
-#import <WebKit/WebKitNSStringExtras.h>
-#import <WebKit/WebPluginDatabase.h>
-#import <WebKit/WebPreferences.h>
-#import <WebKit/WebPreferencesPrivate.h>
-#import <WebKit/WebPreferenceKeysPrivate.h>
-#import <WebKit/WebResourceLoadDelegate.h>
-#import <WebKit/WebStorageManagerPrivate.h>
-#import <WebKit/WebTypesInternal.h>
-#import <WebKit/WebViewPrivate.h>
-#import <getopt.h>
-#import <wtf/Assertions.h>
-#import <wtf/FastMalloc.h>
-#import <wtf/RetainPtr.h>
-#import <wtf/Threading.h>
-#import <wtf/ObjcRuntimeExtras.h>
-#import <wtf/OwnPtr.h>
-
-extern "C" {
-#import <mach-o/getsect.h>
-}
-
-using namespace std;
-
-@interface DumpRenderTreeApplication : NSApplication
-@end
-
-@interface DumpRenderTreeEvent : NSEvent
-@end
-
-@interface NSURLRequest (PrivateThingsWeShouldntReallyUse)
-+(void)setAllowsAnyHTTPSCertificate:(BOOL)allow forHost:(NSString *)host;
-@end
-
-#if USE(APPKIT)
-@interface NSSound (Details)
-+ (void)_setAlertType:(NSUInteger)alertType;
-@end
-#endif
-
-static void runTest(const string& testPathOrURL);
-
-// Deciding when it's OK to dump out the state is a bit tricky.  All these must be true:
-// - There is no load in progress
-// - There is no work queued up (see workQueue var, below)
-// - waitToDump==NO.  This means either waitUntilDone was never called, or it was called
-//       and notifyDone was called subsequently.
-// Note that the call to notifyDone and the end of the load can happen in either order.
-
-volatile bool done;
-
-NavigationController* gNavigationController = 0;
-RefPtr<TestRunner> gTestRunner;
-
-WebFrame *mainFrame = 0;
-// This is the topmost frame that is loading, during a given load, or nil when no load is 
-// in progress.  Usually this is the same as the main frame, but not always.  In the case
-// where a frameset is loaded, and then new content is loaded into one of the child frames,
-// that child frame is the "topmost frame that is loading".
-WebFrame *topLoadingFrame = nil;     // !nil iff a load is in progress
-
-
-CFMutableSetRef disallowedURLs = 0;
-static CFRunLoopTimerRef waitToDumpWatchdog = 0;
-
-// Delegates
-static FrameLoadDelegate *frameLoadDelegate;
-static UIDelegate *uiDelegate;
-static EditingDelegate *editingDelegate;
-static ResourceLoadDelegate *resourceLoadDelegate;
-static HistoryDelegate *historyDelegate;
-PolicyDelegate *policyDelegate;
-StorageTrackerDelegate *storageDelegate;
-
-static int dumpPixelsForAllTests = NO;
-static bool dumpPixelsForCurrentTest = false;
-static int threaded;
-static int dumpTree = YES;
-static int useTimeoutWatchdog = YES;
-static int forceComplexText;
-static int gcBetweenTests;
-static BOOL printSeparators;
-static RetainPtr<CFStringRef> persistentUserStyleSheetLocation;
-
-static WebHistoryItem *prevTestBFItem = nil;  // current b/f item at the end of the previous test
-
-#ifdef __OBJC2__
-static void swizzleAllMethods(Class imposter, Class original)
-{
-    unsigned int imposterMethodCount;
-    Method* imposterMethods = class_copyMethodList(imposter, &imposterMethodCount);
-
-    unsigned int originalMethodCount;
-    Method* originalMethods = class_copyMethodList(original, &originalMethodCount);
-
-    for (unsigned int i = 0; i < imposterMethodCount; i++) {
-        SEL imposterMethodName = method_getName(imposterMethods[i]);
-
-        // Attempt to add the method to the original class.  If it fails, the method already exists and we should
-        // instead exchange the implementations.
-        if (class_addMethod(original, imposterMethodName, method_getImplementation(imposterMethods[i]), method_getTypeEncoding(imposterMethods[i])))
-            continue;
-
-        unsigned int j = 0;
-        for (; j < originalMethodCount; j++) {
-            SEL originalMethodName = method_getName(originalMethods[j]);
-            if (sel_isEqual(imposterMethodName, originalMethodName))
-                break;
-        }
-
-        // If class_addMethod failed above then the method must exist on the original class.
-        ASSERT(j < originalMethodCount);
-        method_exchangeImplementations(imposterMethods[i], originalMethods[j]);
-    }
-
-    free(imposterMethods);
-    free(originalMethods);
-}
-#endif
-
-static void poseAsClass(const char* imposter, const char* original)
-{
-    Class imposterClass = objc_getClass(imposter);
-    Class originalClass = objc_getClass(original);
-
-#ifndef __OBJC2__
-    class_poseAs(imposterClass, originalClass);
-#else
-
-    // Swizzle instance methods
-    swizzleAllMethods(imposterClass, originalClass);
-    // and then class methods
-    swizzleAllMethods(object_getClass(imposterClass), object_getClass(originalClass));
-#endif
-}
-
-void setPersistentUserStyleSheetLocation(CFStringRef url)
-{
-    persistentUserStyleSheetLocation = url;
-}
-
-static bool shouldIgnoreWebCoreNodeLeaks(const string& URLString)
-{
-    static char* const ignoreSet[] = {
-        // Keeping this infrastructure around in case we ever need it again.
-    };
-    static const int ignoreSetCount = sizeof(ignoreSet) / sizeof(char*);
-    
-    for (int i = 0; i < ignoreSetCount; i++) {
-        // FIXME: ignore case
-        string curIgnore(ignoreSet[i]);
-        // Match at the end of the URLString
-        if (!URLString.compare(URLString.length() - curIgnore.length(), curIgnore.length(), curIgnore))
-            return true;
-    }
-    return false;
-}
-
-static NSSet *allowedFontFamilySet()
-{
-    static NSSet *fontFamiliySet = [[NSSet setWithObjects:
-        @"Ahem",
-        @"Al Bayan",
-        @"American Typewriter",
-        @"Andale Mono",
-        @"Apple Braille",
-        @"Apple Color Emoji",
-        @"Apple Chancery",
-        @"Apple Garamond BT",
-        @"Apple LiGothic",
-        @"Apple LiSung",
-        @"Apple Symbols",
-        @"AppleGothic",
-        @"AppleMyungjo",
-        @"Arial Black",
-        @"Arial Hebrew",
-        @"Arial Narrow",
-        @"Arial Rounded MT Bold",
-        @"Arial Unicode MS",
-        @"Arial",
-        @"Ayuthaya",
-        @"Baghdad",
-        @"Baskerville",
-        @"BiauKai",
-        @"Big Caslon",
-        @"Brush Script MT",
-        @"Chalkboard",
-        @"Chalkduster",
-        @"Charcoal CY",
-        @"Cochin",
-        @"Comic Sans MS",
-        @"Copperplate",
-        @"Corsiva Hebrew",
-        @"Courier New",
-        @"Courier",
-        @"DecoType Naskh",
-        @"Devanagari MT",
-        @"Didot",
-        @"Euphemia UCAS",
-        @"Futura",
-        @"GB18030 Bitmap",
-        @"Geeza Pro",
-        @"Geneva CY",
-        @"Geneva",
-        @"Georgia",
-        @"Gill Sans",
-        @"Gujarati MT",
-        @"GungSeo",
-        @"Gurmukhi MT",
-        @"HeadLineA",
-        @"Hei",
-        @"Heiti SC",
-        @"Heiti TC",
-        @"Helvetica CY",
-        @"Helvetica Neue",
-        @"Helvetica",
-        @"Herculanum",
-        @"Hiragino Kaku Gothic Pro",
-        @"Hiragino Kaku Gothic ProN",
-        @"Hiragino Kaku Gothic Std",
-        @"Hiragino Kaku Gothic StdN",
-        @"Hiragino Maru Gothic Monospaced",
-        @"Hiragino Maru Gothic Pro",
-        @"Hiragino Maru Gothic ProN",
-        @"Hiragino Mincho Pro",
-        @"Hiragino Mincho ProN",
-        @"Hiragino Sans GB",
-        @"Hoefler Text",
-        @"Impact",
-        @"InaiMathi",
-        @"Kai",
-        @"Kailasa",
-        @"Kokonor",
-        @"Krungthep",
-        @"KufiStandardGK",
-        @"LiHei Pro",
-        @"LiSong Pro",
-        @"Lucida Grande",
-        @"Marker Felt",
-        @"Menlo",
-        @"Microsoft Sans Serif",
-        @"Monaco",
-        @"Mshtakan",
-        @"Nadeem",
-        @"New Peninim MT",
-        @"Optima",
-        @"Osaka",
-        @"Papyrus",
-        @"PCMyungjo",
-        @"PilGi",
-        @"Plantagenet Cherokee",
-        @"Raanana",
-        @"Sathu",
-        @"Silom",
-        @"Skia",
-        @"STFangsong",
-        @"STHeiti",
-        @"STIXGeneral",
-        @"STIXSizeOneSym",
-        @"STKaiti",
-        @"STSong",
-        @"Symbol",
-        @"Tahoma",
-        @"Thonburi",
-        @"Times New Roman",
-        @"Times",
-        @"Trebuchet MS",
-        @"Verdana",
-        @"Webdings",
-        @"WebKit WeightWatcher",
-        @"Wingdings 2",
-        @"Wingdings 3",
-        @"Wingdings",
-        @"Zapf Dingbats",
-        @"Zapfino",
-        nil] retain];
-    
-    return fontFamiliySet;
-}
-
-static IMP appKitAvailableFontFamiliesIMP;
-static IMP appKitAvailableFontsIMP;
-
-static NSArray *drt_NSFontManager_availableFontFamilies(id self, SEL _cmd)
-{
-    static NSArray *availableFontFamilies;
-    if (availableFontFamilies)
-        return availableFontFamilies;
-    
-    NSArray *availableFamilies = wtfCallIMP<id>(appKitAvailableFontFamiliesIMP, self, _cmd);
-
-    NSMutableSet *prunedFamiliesSet = [NSMutableSet setWithArray:availableFamilies];
-    [prunedFamiliesSet intersectSet:allowedFontFamilySet()];
-
-    availableFontFamilies = [[prunedFamiliesSet allObjects] retain];
-    return availableFontFamilies;
-}
-
-static NSArray *drt_NSFontManager_availableFonts(id self, SEL _cmd)
-{
-    static NSArray *availableFonts;
-    if (availableFonts)
-        return availableFonts;
-    
-    NSSet *allowedFamilies = allowedFontFamilySet();
-    NSMutableArray *availableFontList = [[NSMutableArray alloc] initWithCapacity:[allowedFamilies count] * 2];
-    for (NSString *fontFamily in allowedFontFamilySet()) {
-        NSArray* fontsForFamily = [[NSFontManager sharedFontManager] availableMembersOfFontFamily:fontFamily];
-        for (NSArray* fontInfo in fontsForFamily) {
-            // Font name is the first entry in the array.
-            [availableFontList addObject:[fontInfo objectAtIndex:0]];
-        }
-    }
-    
-    availableFonts = availableFontList;
-    return availableFonts;
-}
-
-static void swizzleNSFontManagerMethods()
-{
-    Method availableFontFamiliesMethod = class_getInstanceMethod(objc_getClass("NSFontManager"), @selector(availableFontFamilies));
-    ASSERT(availableFontFamiliesMethod);
-    if (!availableFontFamiliesMethod) {
-        NSLog(@"Failed to swizzle the \"availableFontFamilies\" method on NSFontManager");
-        return;
-    }
-    
-    appKitAvailableFontFamiliesIMP = method_setImplementation(availableFontFamiliesMethod, (IMP)drt_NSFontManager_availableFontFamilies);
-
-    Method availableFontsMethod = class_getInstanceMethod(objc_getClass("NSFontManager"), @selector(availableFonts));
-    ASSERT(availableFontsMethod);
-    if (!availableFontsMethod) {
-        NSLog(@"Failed to swizzle the \"availableFonts\" method on NSFontManager");
-        return;
-    }
-    
-    appKitAvailableFontsIMP = method_setImplementation(availableFontsMethod, (IMP)drt_NSFontManager_availableFonts);
-}
-
-static void activateTestingFonts()
-{
-    // Work around <rdar://problem/6698023> by activating fonts from disk
-    // FIXME: This code can be removed once <rdar://problem/6698023> is addressed.
-
-    static const char* fontFileNames[] = {
-        "AHEM____.TTF",
-        "WebKitWeightWatcher100.ttf",
-        "WebKitWeightWatcher200.ttf",
-        "WebKitWeightWatcher300.ttf",
-        "WebKitWeightWatcher400.ttf",
-        "WebKitWeightWatcher500.ttf",
-        "WebKitWeightWatcher600.ttf",
-        "WebKitWeightWatcher700.ttf",
-        "WebKitWeightWatcher800.ttf",
-        "WebKitWeightWatcher900.ttf",
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1080
-        "SampleFont.sfont",
-#endif
-        0
-    };
-
-    NSMutableArray *fontURLs = [NSMutableArray array];
-    NSURL *resourcesDirectory = [NSURL URLWithString:@"DumpRenderTree.resources" relativeToURL:[[NSBundle mainBundle] executableURL]];
-    for (unsigned i = 0; fontFileNames[i]; ++i) {
-        NSURL *fontURL = [resourcesDirectory URLByAppendingPathComponent:[NSString stringWithUTF8String:fontFileNames[i]]];
-        [fontURLs addObject:[fontURL absoluteURL]];
-    }
-
-    CFArrayRef errors = 0;
-    if (!CTFontManagerRegisterFontsForURLs((CFArrayRef)fontURLs, kCTFontManagerScopeProcess, &errors)) {
-        NSLog(@"Failed to activate fonts: %@", errors);
-        CFRelease(errors);
-        exit(1);
-    }
-}
-
-static void adjustFonts()
-{
-    swizzleNSFontManagerMethods();
-    activateTestingFonts();
-}
-
-@interface DRTMockScroller : NSScroller
-@end
-
-@implementation DRTMockScroller
-
-- (NSRect)rectForPart:(NSScrollerPart)partCode
-{
-    switch (partCode) {
-    case NSScrollerKnob: {
-        NSRect frameRect = [self frame];
-        NSRect bounds = [self bounds];
-        BOOL isHorizontal = frameRect.size.width > frameRect.size.height;
-        CGFloat trackLength = isHorizontal ? bounds.size.width : bounds.size.height;
-        CGFloat minKnobSize = isHorizontal ? bounds.size.height : bounds.size.width;
-        CGFloat knobLength = max(minKnobSize, static_cast<CGFloat>(round(trackLength * [self knobProportion])));
-        CGFloat knobPosition = static_cast<CGFloat>((round([self doubleValue] * (trackLength - knobLength))));
-        
-        if (isHorizontal)
-            return NSMakeRect(bounds.origin.x + knobPosition, bounds.origin.y, knobLength, bounds.size.height);
-
-        return NSMakeRect(bounds.origin.x, bounds.origin.y +  + knobPosition, bounds.size.width, knobLength);
-    }
-    }
-    
-    return [super rectForPart:partCode];
-}
-
-- (void)drawKnob
-{
-    if (![self isEnabled])
-        return;
-
-    NSRect knobRect = [self rectForPart:NSScrollerKnob];
-    
-    static NSColor *knobColor = [[NSColor colorWithDeviceRed:0x80 / 255.0 green:0x80 / 255.0 blue:0x80 / 255.0 alpha:1] retain];
-    [knobColor set];
-
-    NSRectFill(knobRect);
-}
-
-- (void)drawRect:(NSRect)dirtyRect
-{
-    static NSColor *trackColor = [[NSColor colorWithDeviceRed:0xC0 / 255.0 green:0xC0 / 255.0 blue:0xC0 / 255.0 alpha:1] retain];
-    static NSColor *disabledTrackColor = [[NSColor colorWithDeviceRed:0xE0 / 255.0 green:0xE0 / 255.0 blue:0xE0 / 255.0 alpha:1] retain];
-
-    if ([self isEnabled])
-        [trackColor set];
-    else
-        [disabledTrackColor set];
-
-    NSRectFill(dirtyRect);
-    
-    [self drawKnob];
-}
-
-@end
-
-static void registerMockScrollbars()
-{
-    [WebDynamicScrollBarsView setCustomScrollerClass:[DRTMockScroller class]];
-}
-
-WebView *createWebViewAndOffscreenWindow()
-{
-    NSRect rect = NSMakeRect(0, 0, TestRunner::maxViewWidth, TestRunner::maxViewHeight);
-    WebView *webView = [[WebView alloc] initWithFrame:rect frameName:nil groupName:@"org.webkit.DumpRenderTree"];
-        
-    [webView setUIDelegate:uiDelegate];
-    [webView setFrameLoadDelegate:frameLoadDelegate];
-    [webView setEditingDelegate:editingDelegate];
-    [webView setResourceLoadDelegate:resourceLoadDelegate];
-    [webView _setGeolocationProvider:[MockGeolocationProvider shared]];
-    [webView _setDeviceOrientationProvider:[WebDeviceOrientationProviderMock shared]];
-    [webView _setNotificationProvider:[MockWebNotificationProvider shared]];
-
-    // Register the same schemes that Safari does
-    [WebView registerURLSchemeAsLocal:@"feed"];
-    [WebView registerURLSchemeAsLocal:@"feeds"];
-    [WebView registerURLSchemeAsLocal:@"feedsearch"];
-    
-    [webView setContinuousSpellCheckingEnabled:YES];
-    [webView setDefersCallbacks:NO];
-    [webView setGrammarCheckingEnabled:YES];
-    [webView setInteractiveFormValidationEnabled:YES];
-    [webView setValidationMessageTimerMagnification:-1];
-    
-    // To make things like certain NSViews, dragging, and plug-ins work, put the WebView a window, but put it off-screen so you don't see it.
-    // Put it at -10000, -10000 in "flipped coordinates", since WebCore and the DOM use flipped coordinates.
-    NSRect windowRect = NSOffsetRect(rect, -10000, [(NSScreen *)[[NSScreen screens] objectAtIndex:0] frame].size.height - rect.size.height + 10000);
-    DumpRenderTreeWindow *window = [[DumpRenderTreeWindow alloc] initWithContentRect:windowRect styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:YES];
-
-    [window setColorSpace:[[NSScreen mainScreen] colorSpace]];
-    [window setCollectionBehavior:NSWindowCollectionBehaviorStationary];
-    [[window contentView] addSubview:webView];
-    [window orderBack:nil];
-    [window setAutodisplay:NO];
-    [window _setWindowResolution:1 displayIfChanged:YES];
-
-    [window startListeningForAcceleratedCompositingChanges];
-    
-    // For reasons that are not entirely clear, the following pair of calls makes WebView handle its
-    // dynamic scrollbars properly. Without it, every frame will always have scrollbars.
-    NSBitmapImageRep *imageRep = [webView bitmapImageRepForCachingDisplayInRect:[webView bounds]];
-    [webView cacheDisplayInRect:[webView bounds] toBitmapImageRep:imageRep];
-        
-    return webView;
-}
-
-static NSString *libraryPathForDumpRenderTree()
-{
-    //FIXME: This may not be sufficient to prevent interactions/crashes
-    //when running more than one copy of DumpRenderTree.
-    //See https://bugs.webkit.org/show_bug.cgi?id=10906
-    char* dumpRenderTreeTemp = getenv("DUMPRENDERTREE_TEMP");
-    if (dumpRenderTreeTemp)
-        return [[NSFileManager defaultManager] stringWithFileSystemRepresentation:dumpRenderTreeTemp length:strlen(dumpRenderTreeTemp)];
-    else
-        return [@"~/Library/Application Support/DumpRenderTree" stringByExpandingTildeInPath];
-}
-
-// Called before each test.
-static void resetDefaultsToConsistentValues()
-{
-    static const int NoFontSmoothing = 0;
-    static const int BlueTintedAppearance = 1;
-
-    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
-    [defaults setInteger:4 forKey:@"AppleAntiAliasingThreshold"]; // smallest font size to CG should perform antialiasing on
-    [defaults setInteger:NoFontSmoothing forKey:@"AppleFontSmoothing"];
-    [defaults setInteger:BlueTintedAppearance forKey:@"AppleAquaColorVariant"];
-    [defaults setObject:@"0.709800 0.835300 1.000000" forKey:@"AppleHighlightColor"];
-    [defaults setObject:@"0.500000 0.500000 0.500000" forKey:@"AppleOtherHighlightColor"];
-    [defaults setObject:[NSArray arrayWithObject:@"en"] forKey:@"AppleLanguages"];
-    [defaults setBool:YES forKey:WebKitEnableFullDocumentTeardownPreferenceKey];
-    [defaults setBool:YES forKey:WebKitFullScreenEnabledPreferenceKey];
-    [defaults setBool:YES forKey:@"UseWebKitWebInspector"];
-
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1070
-    [defaults setObject:[NSDictionary dictionaryWithObjectsAndKeys:@"notational", @"notationl", nil] forKey:@"NSTestCorrectionDictionary"];
-#endif
-
-    // Scrollbars are drawn either using AppKit (which uses NSUserDefaults) or using HIToolbox (which uses CFPreferences / kCFPreferencesAnyApplication / kCFPreferencesCurrentUser / kCFPreferencesAnyHost)
-    [defaults setObject:@"DoubleMax" forKey:@"AppleScrollBarVariant"];
-    RetainPtr<CFTypeRef> initialValue = CFPreferencesCopyValue(CFSTR("AppleScrollBarVariant"), kCFPreferencesAnyApplication, kCFPreferencesCurrentUser, kCFPreferencesAnyHost);
-    CFPreferencesSetValue(CFSTR("AppleScrollBarVariant"), CFSTR("DoubleMax"), kCFPreferencesAnyApplication, kCFPreferencesCurrentUser, kCFPreferencesAnyHost);
-#ifndef __LP64__
-    // See <rdar://problem/6347388>.
-    ThemeScrollBarArrowStyle style;
-    GetThemeScrollBarArrowStyle(&style); // Force HIToolbox to read from CFPreferences
-#endif
-
-
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1080 && !PLATFORM(CHROMIUM)
-    [defaults setBool:NO forKey:@"NSScrollAnimationEnabled"];
-#else
-    [defaults setBool:NO forKey:@"AppleScrollAnimationEnabled"];
-#endif
-
-    [defaults setBool:NO forKey:@"NSOverlayScrollersEnabled"];
-    [defaults setObject:@"Always" forKey:@"AppleShowScrollBars"];
-
-    if (initialValue)
-        CFPreferencesSetValue(CFSTR("AppleScrollBarVariant"), initialValue.get(), kCFPreferencesAnyApplication, kCFPreferencesCurrentUser, kCFPreferencesAnyHost);
-
-    NSString *path = libraryPathForDumpRenderTree();
-    [defaults setObject:[path stringByAppendingPathComponent:@"Databases"] forKey:WebDatabaseDirectoryDefaultsKey];
-    [defaults setObject:[path stringByAppendingPathComponent:@"LocalStorage"] forKey:WebStorageDirectoryDefaultsKey];
-    [defaults setObject:[path stringByAppendingPathComponent:@"LocalCache"] forKey:WebKitLocalCacheDefaultsKey];
-
-    [defaults setBool:NO forKey:@"WebKitKerningAndLigaturesEnabledByDefault"];
-
-    WebPreferences *preferences = [WebPreferences standardPreferences];
-
-    [preferences setAllowUniversalAccessFromFileURLs:YES];
-    [preferences setAllowFileAccessFromFileURLs:YES];
-    [preferences setStandardFontFamily:@"Times"];
-    [preferences setFixedFontFamily:@"Courier"];
-    [preferences setSerifFontFamily:@"Times"];
-    [preferences setSansSerifFontFamily:@"Helvetica"];
-    [preferences setCursiveFontFamily:@"Apple Chancery"];
-    [preferences setFantasyFontFamily:@"Papyrus"];
-    [preferences setPictographFontFamily:@"Apple Color Emoji"];
-    [preferences setDefaultFontSize:16];
-    [preferences setDefaultFixedFontSize:13];
-    [preferences setMinimumFontSize:0];
-    [preferences setDefaultTextEncodingName:@"ISO-8859-1"];
-    [preferences setJavaEnabled:NO];
-    [preferences setJavaScriptEnabled:YES];
-    [preferences setEditableLinkBehavior:WebKitEditableLinkOnlyLiveWithShiftKey];
-    [preferences setTabsToLinks:NO];
-    [preferences setDOMPasteAllowed:YES];
-    [preferences setShouldPrintBackgrounds:YES];
-    [preferences setCacheModel:WebCacheModelDocumentBrowser];
-    [preferences setXSSAuditorEnabled:NO];
-    [preferences setExperimentalNotificationsEnabled:NO];
-    [preferences setPlugInsEnabled:YES];
-    [preferences setTextAreasAreResizable:YES];
-
-    [preferences setPrivateBrowsingEnabled:NO];
-    [preferences setAuthorAndUserStylesEnabled:YES];
-    [preferences setJavaScriptCanOpenWindowsAutomatically:YES];
-    [preferences setJavaScriptCanAccessClipboard:YES];
-    [preferences setOfflineWebApplicationCacheEnabled:YES];
-    [preferences setDeveloperExtrasEnabled:NO];
-    [preferences setJavaScriptExperimentsEnabled:YES];
-    [preferences setLoadsImagesAutomatically:YES];
-    [preferences setLoadsSiteIconsIgnoringImageLoadingPreference:NO];
-    [preferences setFrameFlatteningEnabled:NO];
-    [preferences setSpatialNavigationEnabled:NO];
-    if (persistentUserStyleSheetLocation) {
-        [preferences setUserStyleSheetLocation:[NSURL URLWithString:(NSString *)(persistentUserStyleSheetLocation.get())]];
-        [preferences setUserStyleSheetEnabled:YES];
-    } else
-        [preferences setUserStyleSheetEnabled:NO];
-
-    // The back/forward cache is causing problems due to layouts during transition from one page to another.
-    // So, turn it off for now, but we might want to turn it back on some day.
-    [preferences setUsesPageCache:NO];
-    [preferences setAcceleratedCompositingEnabled:YES];
-#if USE(CA) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 1070
-    [preferences setCanvasUsesAcceleratedDrawing:YES];
-    [preferences setAcceleratedDrawingEnabled:NO];
-#endif
-    [preferences setWebGLEnabled:NO];
-    [preferences setCSSRegionsEnabled:YES];
-    [preferences setCSSGridLayoutEnabled:NO];
-    [preferences setUsePreHTML5ParserQuirks:NO];
-    [preferences setAsynchronousSpellCheckingEnabled:NO];
-    [preferences setMockScrollbarsEnabled:YES];
-    [preferences setSeamlessIFramesEnabled:YES];
-
-#if ENABLE(WEB_AUDIO)
-    [preferences setWebAudioEnabled:YES];
-#endif
-
-    [preferences setScreenFontSubstitutionEnabled:YES];
-
-    [WebPreferences _setCurrentNetworkLoaderSessionCookieAcceptPolicy:NSHTTPCookieAcceptPolicyOnlyFromMainDocumentDomain];
-    
-    TestRunner::setSerializeHTTPLoads(false);
-
-    setlocale(LC_ALL, "");
-}
-
-// Called once on DumpRenderTree startup.
-static void setDefaultsToConsistentValuesForTesting()
-{
-    // FIXME: We'd like to start with a clean state for every test, but this function can't be used more than once yet.
-    [WebPreferences _switchNetworkLoaderToNewTestingSession];
-
-    resetDefaultsToConsistentValues();
-
-    NSString *path = libraryPathForDumpRenderTree();
-    NSURLCache *sharedCache =
-        [[NSURLCache alloc] initWithMemoryCapacity:1024 * 1024
-                                      diskCapacity:0
-                                          diskPath:[path stringByAppendingPathComponent:@"URLCache"]];
-    [NSURLCache setSharedURLCache:sharedCache];
-    [sharedCache release];
-}
-
-static void runThread(void* arg)
-{
-    static ThreadIdentifier previousId = 0;
-    ThreadIdentifier currentId = currentThread();
-    // Verify 2 successive threads do not get the same Id.
-    ASSERT(previousId != currentId);
-    previousId = currentId;
-}
-
-static void* runPthread(void* arg)
-{
-    runThread(arg);
-    return 0;
-}
-
-static void testThreadIdentifierMap()
-{
-    // Imitate 'foreign' threads that are not created by WTF.
-    pthread_t pthread;
-    pthread_create(&pthread, 0, &runPthread, 0);
-    pthread_join(pthread, 0);
-
-    pthread_create(&pthread, 0, &runPthread, 0);
-    pthread_join(pthread, 0);
-
-    // Now create another thread using WTF. On OSX, it will have the same pthread handle
-    // but should get a different ThreadIdentifier.
-    createThread(runThread, 0, "DumpRenderTree: test");
-}
-
-static void allocateGlobalControllers()
-{
-    // FIXME: We should remove these and move to the ObjC standard [Foo sharedInstance] model
-    gNavigationController = [[NavigationController alloc] init];
-    frameLoadDelegate = [[FrameLoadDelegate alloc] init];
-    uiDelegate = [[UIDelegate alloc] init];
-    editingDelegate = [[EditingDelegate alloc] init];
-    resourceLoadDelegate = [[ResourceLoadDelegate alloc] init];
-    policyDelegate = [[PolicyDelegate alloc] init];
-    historyDelegate = [[HistoryDelegate alloc] init];
-    storageDelegate = [[StorageTrackerDelegate alloc] init];
-}
-
-// ObjC++ doens't seem to let me pass NSObject*& sadly.
-static inline void releaseAndZero(NSObject** object)
-{
-    [*object release];
-    *object = nil;
-}
-
-static void releaseGlobalControllers()
-{
-    releaseAndZero(&gNavigationController);
-    releaseAndZero(&frameLoadDelegate);
-    releaseAndZero(&editingDelegate);
-    releaseAndZero(&resourceLoadDelegate);
-    releaseAndZero(&uiDelegate);
-    releaseAndZero(&policyDelegate);
-    releaseAndZero(&storageDelegate);
-}
-
-static void initializeGlobalsFromCommandLineOptions(int argc, const char *argv[])
-{
-    struct option options[] = {
-        {"notree", no_argument, &dumpTree, NO},
-        {"pixel-tests", no_argument, &dumpPixelsForAllTests, YES},
-        {"tree", no_argument, &dumpTree, YES},
-        {"threaded", no_argument, &threaded, YES},
-        {"complex-text", no_argument, &forceComplexText, YES},
-        {"gc-between-tests", no_argument, &gcBetweenTests, YES},
-        {"no-timeout", no_argument, &useTimeoutWatchdog, NO},
-        {NULL, 0, NULL, 0}
-    };
-    
-    int option;
-    while ((option = getopt_long(argc, (char * const *)argv, "", options, NULL)) != -1) {
-        switch (option) {
-            case '?':   // unknown or ambiguous option
-            case ':':   // missing argument
-                exit(1);
-                break;
-        }
-    }
-}
-
-static void addTestPluginsToPluginSearchPath(const char* executablePath)
-{
-    NSString *pwd = [[NSString stringWithUTF8String:executablePath] stringByDeletingLastPathComponent];
-    [WebPluginDatabase setAdditionalWebPlugInPaths:[NSArray arrayWithObject:pwd]];
-    [[WebPluginDatabase sharedDatabase] refresh];
-}
-
-static bool useLongRunningServerMode(int argc, const char *argv[])
-{
-    // This assumes you've already called getopt_long
-    return (argc == optind+1 && strcmp(argv[optind], "-") == 0);
-}
-
-static void runTestingServerLoop()
-{
-    // When DumpRenderTree run in server mode, we just wait around for file names
-    // to be passed to us and read each in turn, passing the results back to the client
-    char filenameBuffer[2048];
-    while (fgets(filenameBuffer, sizeof(filenameBuffer), stdin)) {
-        char *newLineCharacter = strchr(filenameBuffer, '\n');
-        if (newLineCharacter)
-            *newLineCharacter = '\0';
-
-        if (strlen(filenameBuffer) == 0)
-            continue;
-
-        runTest(filenameBuffer);
-    }
-}
-
-static void prepareConsistentTestingEnvironment()
-{
-    poseAsClass("DumpRenderTreePasteboard", "NSPasteboard");
-    poseAsClass("DumpRenderTreeEvent", "NSEvent");
-
-    setDefaultsToConsistentValuesForTesting();
-    adjustFonts();
-    registerMockScrollbars();
-    
-    allocateGlobalControllers();
-    
-    makeLargeMallocFailSilently();
-
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1090
-    static id assertion = [[[NSProcessInfo processInfo] beginSuspensionOfSystemBehaviors:NSSystemBehaviorCommonBehaviors
-        reason:@"DumpRenderTree should not be subject to process suppression"] retain];
-    ASSERT_UNUSED(assertion, assertion);
-#endif
-}
-
-void dumpRenderTree(int argc, const char *argv[])
-{
-    initializeGlobalsFromCommandLineOptions(argc, argv);
-    prepareConsistentTestingEnvironment();
-    addTestPluginsToPluginSearchPath(argv[0]);
-
-    if (forceComplexText)
-        [WebView _setAlwaysUsesComplexTextCodePath:YES];
-
-#if USE(APPKIT)
-    [NSSound _setAlertType:0];
-#endif
-
-    WebView *webView = createWebViewAndOffscreenWindow();
-    mainFrame = [webView mainFrame];
-
-    [[NSURLCache sharedURLCache] removeAllCachedResponses];
-    [WebCache empty];
-
-    [NSURLRequest setAllowsAnyHTTPSCertificate:YES forHost:@"localhost"];
-    [NSURLRequest setAllowsAnyHTTPSCertificate:YES forHost:@"127.0.0.1"];
-
-    // http://webkit.org/b/32689
-    testThreadIdentifierMap();
-
-    if (threaded)
-        startJavaScriptThreads();
-
-    if (useLongRunningServerMode(argc, argv)) {
-        printSeparators = YES;
-        runTestingServerLoop();
-    } else {
-        printSeparators = optind < argc - 1;
-        for (int i = optind; i != argc; ++i)
-            runTest(argv[i]);
-    }
-
-    if (threaded)
-        stopJavaScriptThreads();
-
-    NSWindow *window = [webView window];
-    [webView close];
-    mainFrame = nil;
-
-    // Work around problem where registering drag types leaves an outstanding
-    // "perform selector" on the window, which retains the window. It's a bit
-    // inelegant and perhaps dangerous to just blow them all away, but in practice
-    // it probably won't cause any trouble (and this is just a test tool, after all).
-    [NSObject cancelPreviousPerformRequestsWithTarget:window];
-    
-    [window close]; // releases when closed
-    [webView release];
-    
-    releaseGlobalControllers();
-    
-    [DumpRenderTreePasteboard releaseLocalPasteboards];
-
-    // FIXME: This should be moved onto TestRunner and made into a HashSet
-    if (disallowedURLs) {
-        CFRelease(disallowedURLs);
-        disallowedURLs = 0;
-    }
-}
-
-int main(int argc, const char *argv[])
-{
-    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
-    [DumpRenderTreeApplication sharedApplication]; // Force AppKit to init itself
-    dumpRenderTree(argc, argv);
-    [WebCoreStatistics garbageCollectJavaScriptObjects];
-    [WebCoreStatistics emptyCache]; // Otherwise SVGImages trigger false positives for Frame/Node counts
-    if (JSC::Options::logHeapStatisticsAtExit())
-        JSC::HeapStatistics::reportSuccess();
-    [pool release];
-    return 0;
-}
-
-static NSInteger compareHistoryItems(id item1, id item2, void *context)
-{
-    return [[item1 target] caseInsensitiveCompare:[item2 target]];
-}
-
-static NSData *dumpAudio()
-{
-    const char *encodedAudioData = gTestRunner->encodedAudioData().c_str();
-    
-    NSData *data = [NSData dataWithBytes:encodedAudioData length:gTestRunner->encodedAudioData().length()];
-    return data;
-}
-
-static void dumpHistoryItem(WebHistoryItem *item, int indent, BOOL current)
-{
-    int start = 0;
-    if (current) {
-        printf("curr->");
-        start = 6;
-    }
-    for (int i = start; i < indent; i++)
-        putchar(' ');
-    
-    NSString *urlString = [item URLString];
-    if ([[NSURL URLWithString:urlString] isFileURL]) {
-        NSRange range = [urlString rangeOfString:@"/LayoutTests/"];
-        urlString = [@"(file test):" stringByAppendingString:[urlString substringFromIndex:(range.length + range.location)]];
-    }
-    
-    printf("%s", [urlString UTF8String]);
-    NSString *target = [item target];
-    if (target && [target length] > 0)
-        printf(" (in frame \"%s\")", [target UTF8String]);
-    if ([item isTargetItem])
-        printf("  **nav target**");
-    putchar('\n');
-    NSArray *kids = [item children];
-    if (kids) {
-        // must sort to eliminate arbitrary result ordering which defeats reproducible testing
-        kids = [kids sortedArrayUsingFunction:&compareHistoryItems context:nil];
-        for (unsigned i = 0; i < [kids count]; i++)
-            dumpHistoryItem([kids objectAtIndex:i], indent+4, NO);
-    }
-}
-
-static void dumpFrameScrollPosition(WebFrame *f)
-{
-    WebScriptObject* scriptObject = [f windowObject];
-    NSPoint scrollPosition = NSMakePoint(
-        [[scriptObject valueForKey:@"pageXOffset"] floatValue],
-        [[scriptObject valueForKey:@"pageYOffset"] floatValue]);
-    if (ABS(scrollPosition.x) > 0.00000001 || ABS(scrollPosition.y) > 0.00000001) {
-        if ([f parentFrame] != nil)
-            printf("frame '%s' ", [[f name] UTF8String]);
-        printf("scrolled to %.f,%.f\n", scrollPosition.x, scrollPosition.y);
-    }
-
-    if (gTestRunner->dumpChildFrameScrollPositions()) {
-        NSArray *kids = [f childFrames];
-        if (kids)
-            for (unsigned i = 0; i < [kids count]; i++)
-                dumpFrameScrollPosition([kids objectAtIndex:i]);
-    }
-}
-
-static NSString *dumpFramesAsText(WebFrame *frame)
-{
-    DOMDocument *document = [frame DOMDocument];
-    DOMElement *documentElement = [document documentElement];
-
-    if (!documentElement)
-        return @"";
-
-    NSMutableString *result = [[[NSMutableString alloc] init] autorelease];
-
-    // Add header for all but the main frame.
-    if ([frame parentFrame])
-        result = [NSMutableString stringWithFormat:@"\n--------\nFrame: '%@'\n--------\n", [frame name]];
-
-    [result appendFormat:@"%@\n", [documentElement innerText]];
-
-    if (gTestRunner->dumpChildFramesAsText()) {
-        NSArray *kids = [frame childFrames];
-        if (kids) {
-            for (unsigned i = 0; i < [kids count]; i++)
-                [result appendString:dumpFramesAsText([kids objectAtIndex:i])];
-        }
-    }
-
-    return result;
-}
-
-static NSData *dumpFrameAsPDF(WebFrame *frame)
-{
-    if (!frame)
-        return nil;
-
-    // Sadly we have to dump to a file and then read from that file again
-    // +[NSPrintOperation PDFOperationWithView:insideRect:] requires a rect and prints to a single page
-    // likewise +[NSView dataWithPDFInsideRect:] also prints to a single continuous page
-    // The goal of this function is to test "real" printing across multiple pages.
-    // FIXME: It's possible there might be printing SPI to let us print a multi-page PDF to an NSData object
-    NSString *path = [libraryPathForDumpRenderTree() stringByAppendingPathComponent:@"test.pdf"];
-
-    NSMutableDictionary *printInfoDict = [NSMutableDictionary dictionaryWithDictionary:[[NSPrintInfo sharedPrintInfo] dictionary]];
-    [printInfoDict setObject:NSPrintSaveJob forKey:NSPrintJobDisposition];
-    [printInfoDict setObject:path forKey:NSPrintSavePath];
-
-    NSPrintInfo *printInfo = [[NSPrintInfo alloc] initWithDictionary:printInfoDict];
-    [printInfo setHorizontalPagination:NSAutoPagination];
-    [printInfo setVerticalPagination:NSAutoPagination];
-    [printInfo setVerticallyCentered:NO];
-
-    NSPrintOperation *printOperation = [NSPrintOperation printOperationWithView:[frame frameView] printInfo:printInfo];
-    [printOperation setShowPanels:NO];
-    [printOperation runOperation];
-
-    [printInfo release];
-
-    NSData *pdfData = [NSData dataWithContentsOfFile:path];
-    [[NSFileManager defaultManager] removeFileAtPath:path handler:nil];
-
-    return pdfData;
-}
-
-static void dumpBackForwardListForWebView(WebView *view)
-{
-    printf("\n============== Back Forward List ==============\n");
-    WebBackForwardList *bfList = [view backForwardList];
-
-    // Print out all items in the list after prevTestBFItem, which was from the previous test
-    // Gather items from the end of the list, the print them out from oldest to newest
-    NSMutableArray *itemsToPrint = [[NSMutableArray alloc] init];
-    for (int i = [bfList forwardListCount]; i > 0; i--) {
-        WebHistoryItem *item = [bfList itemAtIndex:i];
-        // something is wrong if the item from the last test is in the forward part of the b/f list
-        assert(item != prevTestBFItem);
-        [itemsToPrint addObject:item];
-    }
-            
-    assert([bfList currentItem] != prevTestBFItem);
-    [itemsToPrint addObject:[bfList currentItem]];
-    int currentItemIndex = [itemsToPrint count] - 1;
-
-    for (int i = -1; i >= -[bfList backListCount]; i--) {
-        WebHistoryItem *item = [bfList itemAtIndex:i];
-        if (item == prevTestBFItem)
-            break;
-        [itemsToPrint addObject:item];
-    }
-
-    for (int i = [itemsToPrint count]-1; i >= 0; i--)
-        dumpHistoryItem([itemsToPrint objectAtIndex:i], 8, i == currentItemIndex);
-
-    [itemsToPrint release];
-    printf("===============================================\n");
-}
-
-static void sizeWebViewForCurrentTest()
-{
-    // W3C SVG tests expect to be 480x360
-    bool isSVGW3CTest = (gTestRunner->testPathOrURL().find("svg/W3C-SVG-1.1") != string::npos);
-    if (isSVGW3CTest)
-        [[mainFrame webView] setFrameSize:NSMakeSize(480, 360)];
-    else
-        [[mainFrame webView] setFrameSize:NSMakeSize(TestRunner::maxViewWidth, TestRunner::maxViewHeight)];
-}
-
-static const char *methodNameStringForFailedTest()
-{
-    const char *errorMessage;
-    if (gTestRunner->dumpAsText())
-        errorMessage = "[documentElement innerText]";
-    else if (gTestRunner->dumpDOMAsWebArchive())
-        errorMessage = "[[mainFrame DOMDocument] webArchive]";
-    else if (gTestRunner->dumpSourceAsWebArchive())
-        errorMessage = "[[mainFrame dataSource] webArchive]";
-    else
-        errorMessage = "[mainFrame renderTreeAsExternalRepresentation]";
-
-    return errorMessage;
-}
-
-static void dumpBackForwardListForAllWindows()
-{
-    CFArrayRef openWindows = (CFArrayRef)[DumpRenderTreeWindow openWindows];
-    unsigned count = CFArrayGetCount(openWindows);
-    for (unsigned i = 0; i < count; i++) {
-        NSWindow *window = (NSWindow *)CFArrayGetValueAtIndex(openWindows, i);
-        WebView *webView = [[[window contentView] subviews] objectAtIndex:0];
-        dumpBackForwardListForWebView(webView);
-    }
-}
-
-static void invalidateAnyPreviousWaitToDumpWatchdog()
-{
-    if (waitToDumpWatchdog) {
-        CFRunLoopTimerInvalidate(waitToDumpWatchdog);
-        CFRelease(waitToDumpWatchdog);
-        waitToDumpWatchdog = 0;
-    }
-}
-
-void setWaitToDumpWatchdog(CFRunLoopTimerRef timer)
-{
-    ASSERT(timer);
-    ASSERT(shouldSetWaitToDumpWatchdog());
-    waitToDumpWatchdog = timer;
-    CFRunLoopAddTimer(CFRunLoopGetCurrent(), waitToDumpWatchdog, kCFRunLoopCommonModes);
-}
-
-bool shouldSetWaitToDumpWatchdog()
-{
-    return !waitToDumpWatchdog && useTimeoutWatchdog;
-}
-
-void dump()
-{
-    invalidateAnyPreviousWaitToDumpWatchdog();
-    ASSERT(!gTestRunner->hasPendingWebNotificationClick());
-
-    if (dumpTree) {
-        NSString *resultString = nil;
-        NSData *resultData = nil;
-        NSString *resultMimeType = @"text/plain";
-
-        if ([[[mainFrame dataSource] _responseMIMEType] isEqualToString:@"text/plain"]) {
-            gTestRunner->setDumpAsText(true);
-            gTestRunner->setGeneratePixelResults(false);
-        }
-        if (gTestRunner->dumpAsAudio()) {
-            resultData = dumpAudio();
-            resultMimeType = @"audio/wav";
-        } else if (gTestRunner->dumpAsText()) {
-            resultString = dumpFramesAsText(mainFrame);
-        } else if (gTestRunner->dumpAsPDF()) {
-            resultData = dumpFrameAsPDF(mainFrame);
-            resultMimeType = @"application/pdf";
-        } else if (gTestRunner->dumpDOMAsWebArchive()) {
-            WebArchive *webArchive = [[mainFrame DOMDocument] webArchive];
-            resultString = HardAutorelease(createXMLStringFromWebArchiveData((CFDataRef)[webArchive data]));
-            resultMimeType = @"application/x-webarchive";
-        } else if (gTestRunner->dumpSourceAsWebArchive()) {
-            WebArchive *webArchive = [[mainFrame dataSource] webArchive];
-            resultString = HardAutorelease(createXMLStringFromWebArchiveData((CFDataRef)[webArchive data]));
-            resultMimeType = @"application/x-webarchive";
-        } else
-            resultString = [mainFrame renderTreeAsExternalRepresentationForPrinting:gTestRunner->isPrinting()];
-
-        if (resultString && !resultData)
-            resultData = [resultString dataUsingEncoding:NSUTF8StringEncoding];
-
-        printf("Content-Type: %s\n", [resultMimeType UTF8String]);
-
-        if (gTestRunner->dumpAsAudio())
-            printf("Content-Transfer-Encoding: base64\n");
-
-        WTF::FastMallocStatistics mallocStats = WTF::fastMallocStatistics();
-        printf("DumpMalloc: %li\n", mallocStats.committedVMBytes);
-
-        if (resultData) {
-            fwrite([resultData bytes], 1, [resultData length], stdout);
-
-            if (!gTestRunner->dumpAsText() && !gTestRunner->dumpDOMAsWebArchive() && !gTestRunner->dumpSourceAsWebArchive())
-                dumpFrameScrollPosition(mainFrame);
-
-            if (gTestRunner->dumpBackForwardList())
-                dumpBackForwardListForAllWindows();
-        } else
-            printf("ERROR: nil result from %s", methodNameStringForFailedTest());
-
-        // Stop the watchdog thread before we leave this test to make sure it doesn't
-        // fire in between tests causing the next test to fail.
-        // This is a speculative fix for: https://bugs.webkit.org/show_bug.cgi?id=32339
-        invalidateAnyPreviousWaitToDumpWatchdog();
-
-        if (printSeparators) {
-            puts("#EOF");       // terminate the content block
-            fputs("#EOF\n", stderr);
-        }            
-    }
-
-    if (dumpPixelsForCurrentTest && gTestRunner->generatePixelResults())
-        // FIXME: when isPrinting is set, dump the image with page separators.
-        dumpWebViewAsPixelsAndCompareWithExpected(gTestRunner->expectedPixelHash());
-
-    puts("#EOF");   // terminate the (possibly empty) pixels block
-
-    fflush(stdout);
-    fflush(stderr);
-
-    done = YES;
-}
-
-static bool shouldLogFrameLoadDelegates(const char* pathOrURL)
-{
-    return strstr(pathOrURL, "loading/");
-}
-
-static bool shouldLogHistoryDelegates(const char* pathOrURL)
-{
-    return strstr(pathOrURL, "globalhistory/");
-}
-
-static bool shouldOpenWebInspector(const char* pathOrURL)
-{
-    return strstr(pathOrURL, "inspector/");
-}
-
-static bool shouldDumpAsText(const char* pathOrURL)
-{
-    return strstr(pathOrURL, "dumpAsText/");
-}
-
-static bool shouldEnableDeveloperExtras(const char* pathOrURL)
-{
-    return true;
-}
-
-static void resetWebViewToConsistentStateBeforeTesting()
-{
-    WebView *webView = [mainFrame webView];
-    [webView setEditable:NO];
-    [(EditingDelegate *)[webView editingDelegate] setAcceptsEditing:YES];
-    [webView makeTextStandardSize:nil];
-    [webView resetPageZoom:nil];
-    [webView _scaleWebView:1.0 atOrigin:NSZeroPoint];
-    [webView _setCustomBackingScaleFactor:0];
-    [webView setTabKeyCyclesThroughElements:YES];
-    [webView setPolicyDelegate:nil];
-    [policyDelegate setPermissive:NO];
-    [policyDelegate setControllerToNotifyDone:0];
-    [frameLoadDelegate resetToConsistentState];
-    [webView _setDashboardBehavior:WebDashboardBehaviorUseBackwardCompatibilityMode to:NO];
-    [webView _clearMainFrameName];
-    [[webView undoManager] removeAllActions];
-    [WebView _removeAllUserContentFromGroup:[webView groupName]];
-    [[webView window] setAutodisplay:NO];
-    [webView setTracksRepaints:NO];
-    
-    resetDefaultsToConsistentValues();
-
-    if (gTestRunner) {
-        WebCoreTestSupport::resetInternalsObject([mainFrame globalContext]);
-        // in the case that a test using the chrome input field failed, be sure to clean up for the next test
-        gTestRunner->removeChromeInputField();
-    }
-
-    [WebView _setUsesTestModeFocusRingColor:YES];
-    [WebView _resetOriginAccessWhitelists];
-    [WebView _setAllowsRoundingHacks:NO];
-
-    [[MockGeolocationProvider shared] stopTimer];
-    [[MockWebNotificationProvider shared] reset];
-    
-    // Clear the contents of the general pasteboard
-    [[NSPasteboard generalPasteboard] declareTypes:[NSArray arrayWithObject:NSStringPboardType] owner:nil];
-
-    [mainFrame _clearOpener];
-}
-
-static void runTest(const string& inputLine)
-{
-    ASSERT(!inputLine.empty());
-
-    TestCommand command = parseInputLine(inputLine);
-    const string& pathOrURL = command.pathOrURL;
-    dumpPixelsForCurrentTest = command.shouldDumpPixels || dumpPixelsForAllTests;
-
-    NSString *pathOrURLString = [NSString stringWithUTF8String:pathOrURL.c_str()];
-    if (!pathOrURLString) {
-        fprintf(stderr, "Failed to parse \"%s\" as UTF-8\n", pathOrURL.c_str());
-        return;
-    }
-
-    NSURL *url;
-    if ([pathOrURLString hasPrefix:@"http://"] || [pathOrURLString hasPrefix:@"https://"] || [pathOrURLString hasPrefix:@"file://"])
-        url = [NSURL URLWithString:pathOrURLString];
-    else
-        url = [NSURL fileURLWithPath:pathOrURLString];
-    if (!url) {
-        fprintf(stderr, "Failed to parse \"%s\" as a URL\n", pathOrURL.c_str());
-        return;
-    }
-
-    const string testURL([[url absoluteString] UTF8String]);
-    
-    resetWebViewToConsistentStateBeforeTesting();
-
-    gTestRunner = TestRunner::create(testURL, command.expectedPixelHash);
-    topLoadingFrame = nil;
-    ASSERT(!draggingInfo); // the previous test should have called eventSender.mouseUp to drop!
-    releaseAndZero(&draggingInfo);
-    done = NO;
-
-    sizeWebViewForCurrentTest();
-    gTestRunner->setIconDatabaseEnabled(false);
-
-    if (disallowedURLs)
-        CFSetRemoveAllValues(disallowedURLs);
-    if (shouldLogFrameLoadDelegates(pathOrURL.c_str()))
-        gTestRunner->setDumpFrameLoadCallbacks(true);
-
-    if (shouldLogHistoryDelegates(pathOrURL.c_str()))
-        [[mainFrame webView] setHistoryDelegate:historyDelegate];
-    else
-        [[mainFrame webView] setHistoryDelegate:nil];
-
-    if (shouldEnableDeveloperExtras(pathOrURL.c_str())) {
-        gTestRunner->setDeveloperExtrasEnabled(true);
-        if (shouldOpenWebInspector(pathOrURL.c_str()))
-            gTestRunner->showWebInspector();
-        if (shouldDumpAsText(pathOrURL.c_str())) {
-            gTestRunner->setDumpAsText(true);
-            gTestRunner->setGeneratePixelResults(false);
-        }
-    }
-
-    if ([WebHistory optionalSharedHistory])
-        [WebHistory setOptionalSharedHistory:nil];
-    lastMousePosition = NSZeroPoint;
-    lastClickPosition = NSZeroPoint;
-
-    [prevTestBFItem release];
-    prevTestBFItem = [[[[mainFrame webView] backForwardList] currentItem] retain];
-
-    WorkQueue::shared()->clear();
-    WorkQueue::shared()->setFrozen(false);
-
-    bool ignoreWebCoreNodeLeaks = shouldIgnoreWebCoreNodeLeaks(testURL);
-    if (ignoreWebCoreNodeLeaks)
-        [WebCoreStatistics startIgnoringWebCoreNodeLeaks];
-
-    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
-    [mainFrame loadRequest:[NSURLRequest requestWithURL:url]];
-    [pool release];
-
-    while (!done) {
-        pool = [[NSAutoreleasePool alloc] init];
-        [[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantPast]]; 
-        [pool release];
-    }
-
-    pool = [[NSAutoreleasePool alloc] init];
-    [EventSendingController clearSavedEvents];
-    [[mainFrame webView] setSelectedDOMRange:nil affinity:NSSelectionAffinityDownstream];
-
-    WorkQueue::shared()->clear();
-
-    if (gTestRunner->closeRemainingWindowsWhenComplete()) {
-        NSArray* array = [DumpRenderTreeWindow openWindows];
-
-        unsigned count = [array count];
-        for (unsigned i = 0; i < count; i++) {
-            NSWindow *window = [array objectAtIndex:i];
-
-            // Don't try to close the main window
-            if (window == [[mainFrame webView] window])
-                continue;
-            
-            WebView *webView = [[[window contentView] subviews] objectAtIndex:0];
-
-            [webView close];
-            [window close];
-        }
-    }
-
-    // If developer extras enabled Web Inspector may have been open by the test.
-    if (shouldEnableDeveloperExtras(pathOrURL.c_str())) {
-        gTestRunner->closeWebInspector();
-        gTestRunner->setDeveloperExtrasEnabled(false);
-    }
-
-    resetWebViewToConsistentStateBeforeTesting();
-
-    [mainFrame loadHTMLString:@"<html></html>" baseURL:[NSURL URLWithString:@"about:blank"]];
-    [mainFrame stopLoading];
-
-    [pool release];
-
-    // We should only have our main window left open when we're done
-    ASSERT(CFArrayGetCount(openWindowsRef) == 1);
-    ASSERT(CFArrayGetValueAtIndex(openWindowsRef, 0) == [[mainFrame webView] window]);
-
-    gTestRunner.clear();
-
-    if (ignoreWebCoreNodeLeaks)
-        [WebCoreStatistics stopIgnoringWebCoreNodeLeaks];
-
-    if (gcBetweenTests)
-        [WebCoreStatistics garbageCollectJavaScriptObjects];
-}
-
-void displayWebView()
-{
-    WebView *webView = [mainFrame webView];
-    [webView display];
-    
-    [webView setTracksRepaints:YES];
-    [webView resetTrackedRepaints];
-}
-
-@implementation DumpRenderTreeEvent
-
-+ (NSPoint)mouseLocation
-{
-    return [[[mainFrame webView] window] convertBaseToScreen:lastMousePosition];
-}
-
-@end
-
-@implementation DumpRenderTreeApplication
-
-- (BOOL)isRunning
-{
-    // <rdar://problem/7686123> Java plug-in freezes unless NSApplication is running
-    return YES;
-}
-
-@end
diff --git a/Tools/DumpRenderTree/mac/DumpRenderTreeDraggingInfo.h b/Tools/DumpRenderTree/mac/DumpRenderTreeDraggingInfo.h
deleted file mode 100644
index 249809c..0000000
--- a/Tools/DumpRenderTree/mac/DumpRenderTreeDraggingInfo.h
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- * Copyright (C) 2005, 2006 Apple Computer, Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import <Cocoa/Cocoa.h>
-
-@interface DumpRenderTreeDraggingInfo : NSObject <NSDraggingInfo> {
-@private
-    NSSize offset;
-    NSImage *draggedImage;
-    NSPasteboard *draggingPasteboard;
-    id draggingSource;
-}
-
-- (id)initWithImage:(NSImage *)image offset:(NSSize)offset pasteboard:(NSPasteboard *)pasteboard source:(id)source;
-
-- (NSWindow *)draggingDestinationWindow;
-- (NSDragOperation)draggingSourceOperationMask;
-- (NSPoint)draggingLocation;
-- (NSPoint)draggedImageLocation;
-- (NSImage *)draggedImage;
-- (NSPasteboard *)draggingPasteboard;
-- (id)draggingSource;
-- (int)draggingSequenceNumber;
-
-- (void)slideDraggedImageTo:(NSPoint)screenPoint;
-- (NSArray *)namesOfPromisedFilesDroppedAtDestination:(NSURL *)dropDestination;
-@end
-
diff --git a/Tools/DumpRenderTree/mac/DumpRenderTreeDraggingInfo.mm b/Tools/DumpRenderTree/mac/DumpRenderTreeDraggingInfo.mm
deleted file mode 100644
index b6b22c2..0000000
--- a/Tools/DumpRenderTree/mac/DumpRenderTreeDraggingInfo.mm
+++ /dev/null
@@ -1,146 +0,0 @@
-/*
- * Copyright (C) 2005, 2006 Apple Computer, Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "DumpRenderTreeDraggingInfo.h"
-
-#import "DumpRenderTree.h"
-#import "EventSendingController.h"
-#import <WebKit/WebKit.h>
-
-@implementation DumpRenderTreeDraggingInfo
-
-- (id)initWithImage:(NSImage *)anImage offset:(NSSize)o pasteboard:(NSPasteboard *)pboard source:(id)source
-{
-    draggedImage = [anImage retain];
-    draggingPasteboard = [pboard retain];
-    draggingSource = [source retain];
-    offset = o;
-    
-    return [super init];
-}
-
-- (void)dealloc
-{
-    [draggedImage release];
-    [draggingPasteboard release];
-    [draggingSource release];
-    [super dealloc];
-}
-
-- (NSWindow *)draggingDestinationWindow 
-{
-    return [[mainFrame webView] window];
-}
-
-- (NSDragOperation)draggingSourceOperationMask 
-{
-    return [draggingSource draggingSourceOperationMaskForLocal:YES];
-}
-
-- (NSPoint)draggingLocation
-{ 
-    return lastMousePosition; 
-}
-
-- (NSPoint)draggedImageLocation 
-{
-    return NSMakePoint(lastMousePosition.x + offset.width, lastMousePosition.y + offset.height);
-}
-
-- (NSImage *)draggedImage
-{
-    return draggedImage;
-}
-
-- (NSPasteboard *)draggingPasteboard
-{
-    return draggingPasteboard;
-}
-
-- (id)draggingSource
-{
-    return draggingSource;
-}
-
-- (int)draggingSequenceNumber
-{
-    NSLog(@"DumpRenderTree doesn't support draggingSequenceNumber");
-    return 0;
-}
-
-- (void)slideDraggedImageTo:(NSPoint)screenPoint
-{
-    NSLog(@"DumpRenderTree doesn't support slideDraggedImageTo:");
-}
-
-- (NSArray *)namesOfPromisedFilesDroppedAtDestination:(NSURL *)dropDestination
-{
-    NSLog(@"DumpRenderTree doesn't support namesOfPromisedFilesDroppedAtDestination:");
-    return nil;
-}
-
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1070
-- (NSDraggingFormation)draggingFormation
-{
-    return NSDraggingFormationDefault;
-}
-
-- (void)setDraggingFormation:(NSDraggingFormation)formation
-{
-    // Ignored.
-}
-
-- (BOOL)animatesToDestination
-{
-    return NO;
-}
-
-- (void)setAnimatesToDestination:(BOOL)flag
-{
-    // Ignored.
-}
-
-- (NSInteger)numberOfValidItemsForDrop
-{
-    return 1;
-}
-
-- (void)setNumberOfValidItemsForDrop:(NSInteger)number
-{
-    // Ignored.
-}
-
-- (void)enumerateDraggingItemsWithOptions:(NSEnumerationOptions)enumOpts forView:(NSView *)view classes:(NSArray *)classArray searchOptions:(NSDictionary *)searchOptions usingBlock:(void (^)(NSDraggingItem *draggingItem, NSInteger idx, BOOL *stop))block
-{
-    // Ignored.
-}
-#endif // __MAC_OS_X_VERSION_MIN_REQUIRED >= 1070
-
-@end
-
diff --git a/Tools/DumpRenderTree/mac/DumpRenderTreeMac.h b/Tools/DumpRenderTree/mac/DumpRenderTreeMac.h
deleted file mode 100644
index e6898a9..0000000
--- a/Tools/DumpRenderTree/mac/DumpRenderTreeMac.h
+++ /dev/null
@@ -1,72 +0,0 @@
-/*
- * Copyright (C) 2007 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef DumpRenderTreeMac_h
-#define DumpRenderTreeMac_h
-
-#include <CoreFoundation/CoreFoundation.h>
-
-#ifdef __OBJC__
-@class DumpRenderTreeDraggingInfo;
-@class NavigationController;
-@class PolicyDelegate;
-@class StorageTrackerDelegate;
-@class WebFrame;
-@class WebScriptWorld;
-@class WebView;
-#else
-class DumpRenderTreeDraggingInfo;
-class NavigationController;
-class PolicyDelegate;
-class StorageTrackerDelegate;
-class WebFrame;
-class WebScriptWorld;
-class WebView;
-#endif
-
-extern CFMutableArrayRef openWindowsRef;
-extern CFMutableSetRef disallowedURLs;
-extern WebFrame* mainFrame;
-extern WebFrame* topLoadingFrame;
-extern DumpRenderTreeDraggingInfo *draggingInfo;
-extern NavigationController* gNavigationController;
-extern PolicyDelegate* policyDelegate;
-extern StorageTrackerDelegate* storageDelegate;
-
-extern const unsigned maxViewHeight;
-extern const unsigned maxViewWidth;
-
-void setWaitToDumpWatchdog(CFRunLoopTimerRef);
-bool shouldSetWaitToDumpWatchdog();
-
-WebView* createWebViewAndOffscreenWindow();
-void setPersistentUserStyleSheetLocation(CFStringRef);
-
-unsigned worldIDForWorld(WebScriptWorld *);
-
-#endif // DumpRenderTreeMac_h 
diff --git a/Tools/DumpRenderTree/mac/DumpRenderTreePasteboard.h b/Tools/DumpRenderTree/mac/DumpRenderTreePasteboard.h
deleted file mode 100644
index ba2754b..0000000
--- a/Tools/DumpRenderTree/mac/DumpRenderTreePasteboard.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Copyright (C) 2005, 2006, 2007 Apple, Inc.  All rights reserved.
- *           (C) 2007 Graham Dennis (graham.dennis@gmail.com)
- *           (C) 2007 Eric Seidel <eric@webkit.org>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import <AppKit/AppKit.h>
-#import <WebKit/WebTypesInternal.h>
-
-@interface DumpRenderTreePasteboard : NSPasteboard
-- (NSInteger)declareType:(NSString *)type owner:(id)newOwner;
-+ (void)releaseLocalPasteboards;
-@end
-
diff --git a/Tools/DumpRenderTree/mac/DumpRenderTreePasteboard.m b/Tools/DumpRenderTree/mac/DumpRenderTreePasteboard.m
deleted file mode 100644
index 04fafd8..0000000
--- a/Tools/DumpRenderTree/mac/DumpRenderTreePasteboard.m
+++ /dev/null
@@ -1,211 +0,0 @@
-/*
- * Copyright (C) 2005, 2006, 2007 Apple, Inc.  All rights reserved.
- *           (C) 2007 Graham Dennis (graham.dennis@gmail.com)
- *           (C) 2007 Eric Seidel <eric@webkit.org>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "DumpRenderTreeMac.h"
-#import "DumpRenderTreePasteboard.h"
-
-#import <WebKit/WebTypesInternal.h>
-
-@interface LocalPasteboard : NSPasteboard
-{
-    NSMutableArray *typesArray;
-    NSMutableSet *typesSet;
-    NSMutableDictionary *dataByType;
-    NSInteger changeCount;
-    NSString *pasteboardName;
-}
-
--(id)initWithName:(NSString *)name;
-@end
-
-static NSMutableDictionary *localPasteboards;
-
-@implementation DumpRenderTreePasteboard
-
-// Return a local pasteboard so we don't disturb the real pasteboards when running tests.
-+ (NSPasteboard *)_pasteboardWithName:(NSString *)name
-{
-    static int number = 0;
-    if (!name)
-        name = [NSString stringWithFormat:@"LocalPasteboard%d", ++number];
-    if (!localPasteboards)
-        localPasteboards = [[NSMutableDictionary alloc] init];
-    LocalPasteboard *pasteboard = [localPasteboards objectForKey:name];
-    if (pasteboard)
-        return pasteboard;
-    pasteboard = [[LocalPasteboard alloc] initWithName:name];
-    [localPasteboards setObject:pasteboard forKey:name];
-    [pasteboard release];
-    return pasteboard;
-}
-
-+ (void)releaseLocalPasteboards
-{
-    [localPasteboards release];
-    localPasteboards = nil;
-}
-
-// Convenience method for JS so that it doesn't have to try and create a NSArray on the objc side instead
-// of the usual WebScriptObject that is passed around
-- (NSInteger)declareType:(NSString *)type owner:(id)newOwner
-{
-    return [self declareTypes:[NSArray arrayWithObject:type] owner:newOwner];
-}
-
-@end
-
-@implementation LocalPasteboard
-
-+ (id)alloc
-{
-    return NSAllocateObject(self, 0, 0);
-}
-
-- (id)initWithName:(NSString *)name
-{
-    typesArray = [[NSMutableArray alloc] init];
-    typesSet = [[NSMutableSet alloc] init];
-    dataByType = [[NSMutableDictionary alloc] init];
-    pasteboardName = [name copy];
-    return self;
-}
-
-- (void)dealloc
-{
-    [typesArray release];
-    [typesSet release];
-    [dataByType release];
-    [pasteboardName release];
-    [super dealloc];
-}
-
-- (NSString *)name
-{
-    return pasteboardName;
-}
-
-- (void)releaseGlobally
-{
-}
-
-- (NSInteger)declareTypes:(NSArray *)newTypes owner:(id)newOwner
-{
-    [typesArray removeAllObjects];
-    [typesSet removeAllObjects];
-    [dataByType removeAllObjects];
-    return [self addTypes:newTypes owner:newOwner];
-}
-
-- (NSInteger)addTypes:(NSArray *)newTypes owner:(id)newOwner
-{
-    unsigned count = [newTypes count];
-    unsigned i;
-    for (i = 0; i < count; ++i) {
-        NSString *type = [newTypes objectAtIndex:i];
-        NSString *setType = [typesSet member:type];
-        if (!setType) {
-            setType = [type copy];
-            [typesArray addObject:setType];
-            [typesSet addObject:setType];
-            [setType release];
-        }
-        if (newOwner && [newOwner respondsToSelector:@selector(pasteboard:provideDataForType:)])
-            [newOwner pasteboard:self provideDataForType:setType];
-    }
-    return ++changeCount;
-}
-
-- (NSInteger)changeCount
-{
-    return changeCount;
-}
-
-- (NSArray *)types
-{
-    return typesArray;
-}
-
-- (NSString *)availableTypeFromArray:(NSArray *)types
-{
-    unsigned count = [types count];
-    unsigned i;
-    for (i = 0; i < count; ++i) {
-        NSString *type = [types objectAtIndex:i];
-        NSString *setType = [typesSet member:type];
-        if (setType)
-            return setType;
-    }
-    return nil;
-}
-
-- (BOOL)setData:(NSData *)data forType:(NSString *)dataType
-{
-    if (data == nil)
-        data = [NSData data];
-    if (![typesSet containsObject:dataType])
-        return NO;
-    [dataByType setObject:data forKey:dataType];
-    ++changeCount;
-    return YES;
-}
-
-- (NSData *)dataForType:(NSString *)dataType
-{
-    return [dataByType objectForKey:dataType];
-}
-
-- (BOOL)setPropertyList:(id)propertyList forType:(NSString *)dataType
-{
-    CFDataRef data = NULL;
-    if (propertyList)
-        data = CFPropertyListCreateXMLData(NULL, propertyList);
-    BOOL result = [self setData:(NSData *)data forType:dataType];
-    if (data)
-        CFRelease(data);
-    return result;
-}
-
-- (BOOL)setString:(NSString *)string forType:(NSString *)dataType
-{
-    CFDataRef data = NULL;
-    if (string) {
-        if ([string length] == 0)
-            data = CFDataCreate(NULL, NULL, 0);
-        else
-            data = CFStringCreateExternalRepresentation(NULL, (CFStringRef)string, kCFStringEncodingUTF8, 0);
-    }
-    BOOL result = [self setData:(NSData *)data forType:dataType];
-    if (data)
-        CFRelease(data);
-    return result;
-}
-
-@end
diff --git a/Tools/DumpRenderTree/mac/DumpRenderTreeWindow.h b/Tools/DumpRenderTree/mac/DumpRenderTreeWindow.h
deleted file mode 100644
index 3b1d77e..0000000
--- a/Tools/DumpRenderTree/mac/DumpRenderTreeWindow.h
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- * Copyright (C) 2005, 2006, 2007 Apple, Inc.  All rights reserved.
- *           (C) 2007 Graham Dennis (graham.dennis@gmail.com)
- *           (C) 2007 Eric Seidel <eric@webkit.org>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import <AppKit/AppKit.h>
-
-@class WebView;
-
-@interface NSWindow (Details)
-
-- (void)_setWindowResolution:(CGFloat)resolution displayIfChanged:(BOOL)displayIfChanged;
-
-@end
-
-@interface DumpRenderTreeWindow : NSWindow
-{
-}
-
-// I'm not sure why we can't just use [NSApp windows]
-+ (NSArray *)openWindows;
-
-- (WebView *)webView;
-
-- (void)startListeningForAcceleratedCompositingChanges;
-
-@end
diff --git a/Tools/DumpRenderTree/mac/DumpRenderTreeWindow.mm b/Tools/DumpRenderTree/mac/DumpRenderTreeWindow.mm
deleted file mode 100644
index 4a6fd6b..0000000
--- a/Tools/DumpRenderTree/mac/DumpRenderTreeWindow.mm
+++ /dev/null
@@ -1,128 +0,0 @@
-/*
- * Copyright (C) 2005, 2006, 2007 Apple, Inc.  All rights reserved.
- *           (C) 2007 Graham Dennis (graham.dennis@gmail.com)
- *           (C) 2007 Eric Seidel <eric@webkit.org>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- 
-#import "config.h"
-#import "DumpRenderTreeWindow.h"
-
-#import "DumpRenderTree.h"
-
-// FIXME: This file is ObjC++ only because of this include. :(
-#import "TestRunner.h"
-#import <WebKit/WebViewPrivate.h>
-#import <WebKit/WebTypesInternal.h>
-
-CFMutableArrayRef openWindowsRef = 0;
-
-static CFArrayCallBacks NonRetainingArrayCallbacks = {
-    0,
-    NULL,
-    NULL,
-    CFCopyDescription,
-    CFEqual
-};
-
-@implementation DumpRenderTreeWindow
-
-+ (NSArray *)openWindows
-{
-    return [[(NSArray *)openWindowsRef copy] autorelease];
-}
-
-- (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)styleMask backing:(NSBackingStoreType)bufferingType defer:(BOOL)deferCreation
-{
-    if (!openWindowsRef)
-        openWindowsRef = CFArrayCreateMutable(NULL, 0, &NonRetainingArrayCallbacks);
-
-    CFArrayAppendValue(openWindowsRef, self);
-            
-    return [super initWithContentRect:contentRect styleMask:styleMask backing:bufferingType defer:deferCreation];
-}
-
-- (void)close
-{
-    [[NSNotificationCenter defaultCenter] removeObserver:self];
-
-    CFRange arrayRange = CFRangeMake(0, CFArrayGetCount(openWindowsRef));
-    CFIndex i = CFArrayGetFirstIndexOfValue(openWindowsRef, arrayRange, self);
-    if (i != kCFNotFound)
-        CFArrayRemoveValueAtIndex(openWindowsRef, i);
-
-    [super close];
-}
-
-- (BOOL)isKeyWindow
-{
-    return gTestRunner ? gTestRunner->windowIsKey() : YES;
-}
-
-- (BOOL)_hasKeyAppearance
-{
-    return [self isKeyWindow];
-}
-
-- (void)keyDown:(NSEvent *)event
-{
-    // Do nothing, avoiding the beep we'd otherwise get from NSResponder,
-    // once we get to the end of the responder chain.
-}
-
-- (WebView *)webView
-{
-    NSView *firstView = nil;
-    if ([[[self contentView] subviews] count] > 0) {
-        firstView = [[[self contentView] subviews] objectAtIndex:0];
-        if ([firstView isKindOfClass:[WebView class]])
-            return static_cast<WebView *>(firstView);
-    }
-    return nil;
-}
-
-- (void)startListeningForAcceleratedCompositingChanges
-{
-    [[self webView] _setPostsAcceleratedCompositingNotifications:YES];
-    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(webViewStartedAcceleratedCompositing:)
-        name:_WebViewDidStartAcceleratedCompositingNotification object:nil];
-}
-
-- (void)webViewStartedAcceleratedCompositing:(NSNotification *)notification
-{
-    // If the WebView has gone into compositing mode, turn on window autodisplay. This is necessary for CA
-    // to update layers and start animations.
-    // We only ever turn autodisplay on here, because we turn it off before every test.
-    if ([[self webView] _isUsingAcceleratedCompositing])
-        [self setAutodisplay:YES];
-}
-
-- (CGFloat)backingScaleFactor
-{
-    return 1;
-}
-
-@end
diff --git a/Tools/DumpRenderTree/mac/EditingDelegate.h b/Tools/DumpRenderTree/mac/EditingDelegate.h
deleted file mode 100644
index b5563c8..0000000
--- a/Tools/DumpRenderTree/mac/EditingDelegate.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Copyright (C) 2005, 2006 Apple Computer, Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- 
-#import <Cocoa/Cocoa.h>
-
-@interface EditingDelegate : NSObject
-{
-    BOOL acceptsEditing;
-}
-
-- (void)setAcceptsEditing:(BOOL)newAcceptsEditing;
-
-@end
diff --git a/Tools/DumpRenderTree/mac/EditingDelegate.mm b/Tools/DumpRenderTree/mac/EditingDelegate.mm
deleted file mode 100644
index d6227a7..0000000
--- a/Tools/DumpRenderTree/mac/EditingDelegate.mm
+++ /dev/null
@@ -1,192 +0,0 @@
-/*
- * Copyright (C) 2005, 2006 Apple Computer, Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- 
-#import "config.h"
-#import "EditingDelegate.h"
-
-#import "DumpRenderTree.h"
-#import "TestRunner.h"
-#import <WebKit/WebKit.h>
-
-@interface DOMNode (dumpPath)
-- (NSString *)dumpPath;
-@end
-
-@implementation DOMNode (dumpPath)
-- (NSString *)dumpPath
-{
-    DOMNode *parent = [self parentNode];
-    NSString *str = [NSString stringWithFormat:@"%@", [self nodeName]];
-    if (parent != nil) {
-        str = [str stringByAppendingString:@" > "];
-        str = [str stringByAppendingString:[parent dumpPath]];
-    }
-    return str;
-}
-@end
-
-@interface DOMRange (dump)
-- (NSString *)dump;
-@end
-
-@implementation DOMRange (dump)
-- (NSString *)dump
-{
-    return [NSString stringWithFormat:@"range from %d of %@ to %d of %@", [self startOffset], [[self startContainer] dumpPath], [self endOffset], [[self endContainer] dumpPath]];
-}
-@end
-
-@implementation EditingDelegate
-
-- (id)init
-{
-    self = [super init];
-    if (!self)
-        return nil;
-    acceptsEditing = YES;
-    return self;
-}
-
-- (BOOL)webView:(WebView *)webView shouldBeginEditingInDOMRange:(DOMRange *)range
-{
-    if (!done && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: shouldBeginEditingInDOMRange:%s\n", [[range dump] UTF8String]);
-    return acceptsEditing;
-}
-
-- (BOOL)webView:(WebView *)webView shouldEndEditingInDOMRange:(DOMRange *)range
-{
-    if (!done && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: shouldEndEditingInDOMRange:%s\n", [[range dump] UTF8String]);
-    return acceptsEditing;
-}
-
-- (BOOL)webView:(WebView *)webView shouldInsertNode:(DOMNode *)node replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action
-{
-    static const char *insertactionstring[] = {
-        "WebViewInsertActionTyped",
-        "WebViewInsertActionPasted",
-        "WebViewInsertActionDropped",
-    };
-
-    if (!done && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: shouldInsertNode:%s replacingDOMRange:%s givenAction:%s\n", [[node dumpPath] UTF8String], [[range dump] UTF8String], insertactionstring[action]);
-    return acceptsEditing;
-}
-
-- (BOOL)webView:(WebView *)webView shouldInsertText:(NSString *)text replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action
-{
-    static const char *insertactionstring[] = {
-        "WebViewInsertActionTyped",
-        "WebViewInsertActionPasted",
-        "WebViewInsertActionDropped",
-    };
-
-    if (!done && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: shouldInsertText:%s replacingDOMRange:%s givenAction:%s\n", [[text description] UTF8String], [[range dump] UTF8String], insertactionstring[action]);
-    return acceptsEditing;
-}
-
-- (BOOL)webView:(WebView *)webView shouldDeleteDOMRange:(DOMRange *)range
-{
-    if (!done && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: shouldDeleteDOMRange:%s\n", [[range dump] UTF8String]);
-    return acceptsEditing;
-}
-
-- (BOOL)webView:(WebView *)webView shouldShowDeleteInterfaceForElement:(DOMHTMLElement *)element
-{
-    return [[element className] isEqualToString:@"needsDeletionUI"];
-}
-
-- (BOOL)webView:(WebView *)webView shouldChangeSelectedDOMRange:(DOMRange *)currentRange toDOMRange:(DOMRange *)proposedRange affinity:(NSSelectionAffinity)selectionAffinity stillSelecting:(BOOL)flag
-{
-    static const char *affinitystring[] = {
-        "NSSelectionAffinityUpstream",
-        "NSSelectionAffinityDownstream"
-    };
-    static const char *boolstring[] = {
-        "FALSE",
-        "TRUE"
-    };
-
-    if (!done && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: shouldChangeSelectedDOMRange:%s toDOMRange:%s affinity:%s stillSelecting:%s\n", [[currentRange dump] UTF8String], [[proposedRange dump] UTF8String], affinitystring[selectionAffinity], boolstring[flag]);
-    return acceptsEditing;
-}
-
-- (BOOL)webView:(WebView *)webView shouldApplyStyle:(DOMCSSStyleDeclaration *)style toElementsInDOMRange:(DOMRange *)range
-{
-    if (!done && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: shouldApplyStyle:%s toElementsInDOMRange:%s\n", [[style description] UTF8String], [[range dump] UTF8String]);
-    return acceptsEditing;
-}
-
-- (BOOL)webView:(WebView *)webView shouldChangeTypingStyle:(DOMCSSStyleDeclaration *)currentStyle toStyle:(DOMCSSStyleDeclaration *)proposedStyle
-{
-    if (!done && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: shouldChangeTypingStyle:%s toStyle:%s\n", [[currentStyle description] UTF8String], [[proposedStyle description] UTF8String]);
-    return acceptsEditing;
-}
-
-- (void)webViewDidBeginEditing:(NSNotification *)notification
-{
-    if (!done && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: webViewDidBeginEditing:%s\n", [[notification name] UTF8String]);
-}
-
-- (void)webViewDidChange:(NSNotification *)notification
-{
-    if (!done && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: webViewDidChange:%s\n", [[notification name] UTF8String]);
-}
-
-- (void)webViewDidEndEditing:(NSNotification *)notification
-{
-    if (!done && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: webViewDidEndEditing:%s\n", [[notification name] UTF8String]);
-}
-
-- (void)webViewDidChangeTypingStyle:(NSNotification *)notification
-{
-    if (!done && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: webViewDidChangeTypingStyle:%s\n", [[notification name] UTF8String]);
-}
-
-- (void)webViewDidChangeSelection:(NSNotification *)notification
-{
-    if (!done && gTestRunner->dumpEditingCallbacks())
-        printf("EDITING DELEGATE: webViewDidChangeSelection:%s\n", [[notification name] UTF8String]);
-}
-
-- (void)setAcceptsEditing:(BOOL)newAcceptsEditing
-{
-    acceptsEditing = newAcceptsEditing;
-}
-
-@end
diff --git a/Tools/DumpRenderTree/mac/EventSendingController.h b/Tools/DumpRenderTree/mac/EventSendingController.h
deleted file mode 100644
index 9440575..0000000
--- a/Tools/DumpRenderTree/mac/EventSendingController.h
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- * Copyright (C) 2005, 2006, 2007 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- 
-#import <Cocoa/Cocoa.h>
-#import <WebKit/WebKit.h>
-
-@interface EventSendingController : NSObject <DOMEventListener>
-{
-    BOOL leftMouseButtonDown;
-    BOOL dragMode;
-    int clickCount;
-    NSTimeInterval lastClick;
-    int eventNumber;
-    double timeOffset;
-}
-
-+ (void)saveEvent:(NSInvocation *)event;
-+ (void)replaySavedEvents;
-+ (void)clearSavedEvents;
-
-- (void)scheduleAsynchronousClick;
-
-- (void)enableDOMUIEventLogging:(WebScriptObject *)node;
-
-- (void)handleEvent:(DOMEvent *)event;
-
-@end
-
-extern NSPoint lastMousePosition;
-extern NSPoint lastClickPosition;
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/mac/EventSendingController.mm b/Tools/DumpRenderTree/mac/EventSendingController.mm
deleted file mode 100644
index 6f328a5..0000000
--- a/Tools/DumpRenderTree/mac/EventSendingController.mm
+++ /dev/null
@@ -1,962 +0,0 @@
-/*
- * Copyright (C) 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
- * Copyright (C) 2006 Jonas Witt <jonas.witt@gmail.com>
- * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
- * Copyright (C) 2006 Alexey Proskuryakov <ap@nypop.com>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "EventSendingController.h"
-
-#import "DumpRenderTree.h"
-#import "DumpRenderTreeDraggingInfo.h"
-#import "DumpRenderTreeFileDraggingSource.h"
-
-#import <Carbon/Carbon.h>                           // for GetCurrentEventTime()
-#import <WebKit/DOMPrivate.h>
-#import <WebKit/WebKit.h>
-#import <WebKit/WebViewPrivate.h>
-
-extern "C" void _NSNewKillRingSequence();
-
-enum MouseAction {
-    MouseDown,
-    MouseUp,
-    MouseDragged
-};
-
-// Match the DOM spec (sadly the DOM spec does not provide an enum)
-enum MouseButton {
-    LeftMouseButton = 0,
-    MiddleMouseButton = 1,
-    RightMouseButton = 2,
-    NoMouseButton = -1
-};
-
-struct KeyMappingEntry {
-    int macKeyCode;
-    int macNumpadKeyCode;
-    unichar character;
-    NSString* characterName;
-};
-
-NSPoint lastMousePosition;
-NSPoint lastClickPosition;
-int lastClickButton = NoMouseButton;
-NSArray *webkitDomEventNames;
-NSMutableArray *savedMouseEvents; // mouse events sent between mouseDown and mouseUp are stored here, and then executed at once.
-BOOL replayingSavedEvents;
-
-@implementation EventSendingController
-
-+ (void)initialize
-{
-    webkitDomEventNames = [[NSArray alloc] initWithObjects:
-        @"abort",
-        @"beforecopy",
-        @"beforecut",
-        @"beforepaste",
-        @"blur",
-        @"change",
-        @"click",
-        @"contextmenu",
-        @"copy",
-        @"cut",
-        @"dblclick",
-        @"drag",
-        @"dragend",
-        @"dragenter",
-        @"dragleave",
-        @"dragover",
-        @"dragstart",
-        @"drop",
-        @"error",
-        @"focus",
-        @"input",
-        @"keydown",
-        @"keypress",
-        @"keyup",
-        @"load",
-        @"mousedown",
-        @"mousemove",
-        @"mouseout",
-        @"mouseover",
-        @"mouseup",
-        @"mousewheel",
-        @"beforeunload",
-        @"paste",
-        @"readystatechange",
-        @"reset",
-        @"resize", 
-        @"scroll", 
-        @"search",
-        @"select",
-        @"selectstart",
-        @"submit", 
-        @"textInput", 
-        @"textzoomin",
-        @"textzoomout",
-        @"unload",
-        @"zoom",
-        nil];
-}
-
-+ (BOOL)isSelectorExcludedFromWebScript:(SEL)aSelector
-{
-    if (aSelector == @selector(beginDragWithFiles:)
-            || aSelector == @selector(clearKillRing)
-            || aSelector == @selector(contextClick)
-            || aSelector == @selector(enableDOMUIEventLogging:)
-            || aSelector == @selector(fireKeyboardEventsToElement:)
-            || aSelector == @selector(keyDown:withModifiers:withLocation:)
-            || aSelector == @selector(leapForward:)
-            || aSelector == @selector(mouseDown:withModifiers:)
-            || aSelector == @selector(mouseMoveToX:Y:)
-            || aSelector == @selector(mouseUp:withModifiers:)
-            || aSelector == @selector(scheduleAsynchronousClick)
-            || aSelector == @selector(scheduleAsynchronousKeyDown:withModifiers:withLocation:)
-            || aSelector == @selector(textZoomIn)
-            || aSelector == @selector(textZoomOut)
-            || aSelector == @selector(zoomPageIn)
-            || aSelector == @selector(zoomPageOut)
-            || aSelector == @selector(scalePageBy:atX:andY:)
-            || aSelector == @selector(mouseScrollByX:andY:)
-            || aSelector == @selector(continuousMouseScrollByX:andY:))
-        return NO;
-    return YES;
-}
-
-+ (BOOL)isKeyExcludedFromWebScript:(const char*)name
-{
-    if (strcmp(name, "dragMode") == 0)
-        return NO;
-    return YES;
-}
-
-+ (NSString *)webScriptNameForSelector:(SEL)aSelector
-{
-    if (aSelector == @selector(beginDragWithFiles:))
-        return @"beginDragWithFiles";
-    if (aSelector == @selector(contextClick))
-        return @"contextClick";
-    if (aSelector == @selector(enableDOMUIEventLogging:))
-        return @"enableDOMUIEventLogging";
-    if (aSelector == @selector(fireKeyboardEventsToElement:))
-        return @"fireKeyboardEventsToElement";
-    if (aSelector == @selector(keyDown:withModifiers:withLocation:))
-        return @"keyDown";
-    if (aSelector == @selector(scheduleAsynchronousKeyDown:withModifiers:withLocation:))
-        return @"scheduleAsynchronousKeyDown";
-    if (aSelector == @selector(leapForward:))
-        return @"leapForward";
-    if (aSelector == @selector(mouseDown:withModifiers:))
-        return @"mouseDown";
-    if (aSelector == @selector(mouseUp:withModifiers:))
-        return @"mouseUp";
-    if (aSelector == @selector(mouseMoveToX:Y:))
-        return @"mouseMoveTo";
-    if (aSelector == @selector(setDragMode:))
-        return @"setDragMode";
-    if (aSelector == @selector(mouseScrollByX:andY:))
-        return @"mouseScrollBy";
-    if (aSelector == @selector(continuousMouseScrollByX:andY:))
-        return @"continuousMouseScrollBy";
-    if (aSelector == @selector(scalePageBy:atX:andY:))
-        return @"scalePageBy";
-    return nil;
-}
-
-- (id)init
-{
-    self = [super init];
-    if (self)
-        dragMode = YES;
-    return self;
-}
-
-- (void)dealloc
-{
-    [super dealloc];
-}
-
-- (double)currentEventTime
-{
-    return GetCurrentEventTime() + timeOffset;
-}
-
-- (void)leapForward:(int)milliseconds
-{
-    if (dragMode && leftMouseButtonDown && !replayingSavedEvents) {
-        NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:[EventSendingController instanceMethodSignatureForSelector:@selector(leapForward:)]];
-        [invocation setTarget:self];
-        [invocation setSelector:@selector(leapForward:)];
-        [invocation setArgument:&milliseconds atIndex:2];
-        
-        [EventSendingController saveEvent:invocation];
-        
-        return;
-    }
-
-    timeOffset += milliseconds / 1000.0;
-}
-
-- (void)clearKillRing
-{
-    _NSNewKillRingSequence();
-}
-
-static NSEventType eventTypeForMouseButtonAndAction(int button, MouseAction action)
-{
-    switch (button) {
-        case LeftMouseButton:
-            switch (action) {
-                case MouseDown:
-                    return NSLeftMouseDown;
-                case MouseUp:
-                    return NSLeftMouseUp;
-                case MouseDragged:
-                    return NSLeftMouseDragged;
-            }
-        case RightMouseButton:
-            switch (action) {
-                case MouseDown:
-                    return NSRightMouseDown;
-                case MouseUp:
-                    return NSRightMouseUp;
-                case MouseDragged:
-                    return NSRightMouseDragged;
-            }
-        default:
-            switch (action) {
-                case MouseDown:
-                    return NSOtherMouseDown;
-                case MouseUp:
-                    return NSOtherMouseUp;
-                case MouseDragged:
-                    return NSOtherMouseDragged;
-            }
-    }
-    assert(0);
-    return static_cast<NSEventType>(0);
-}
-
-- (void)beginDragWithFiles:(WebScriptObject*)jsFilePaths
-{
-    assert(!draggingInfo);
-    assert([jsFilePaths isKindOfClass:[WebScriptObject class]]);
-
-    NSPasteboard *pboard = [NSPasteboard pasteboardWithUniqueName];
-    [pboard declareTypes:[NSArray arrayWithObject:NSFilenamesPboardType] owner:nil];
-
-    NSURL *currentTestURL = [NSURL URLWithString:[[mainFrame webView] mainFrameURL]];
-
-    NSMutableArray *filePaths = [NSMutableArray array];
-    for (unsigned i = 0; [[jsFilePaths webScriptValueAtIndex:i] isKindOfClass:[NSString class]]; i++) {
-        NSString *filePath = (NSString *)[jsFilePaths webScriptValueAtIndex:i];
-        // Have NSURL encode the name so that we handle '?' in file names correctly.
-        NSURL *fileURL = [NSURL fileURLWithPath:filePath];
-        NSURL *absoluteFileURL = [NSURL URLWithString:[fileURL relativeString]  relativeToURL:currentTestURL];
-        [filePaths addObject:[absoluteFileURL path]];
-    }
-
-    [pboard setPropertyList:filePaths forType:NSFilenamesPboardType];
-    assert([pboard propertyListForType:NSFilenamesPboardType]); // setPropertyList will silently fail on error, assert that it didn't fail
-
-    // Provide a source, otherwise [DumpRenderTreeDraggingInfo draggingSourceOperationMask] defaults to NSDragOperationNone
-    DumpRenderTreeFileDraggingSource *source = [[[DumpRenderTreeFileDraggingSource alloc] init] autorelease];
-    draggingInfo = [[DumpRenderTreeDraggingInfo alloc] initWithImage:nil offset:NSZeroSize pasteboard:pboard source:source];
-    [[mainFrame webView] draggingEntered:draggingInfo];
-
-    dragMode = NO; // dragMode saves events and then replays them later.  We don't need/want that.
-    leftMouseButtonDown = YES; // Make the rest of eventSender think a drag is in progress
-}
-
-- (void)updateClickCountForButton:(int)buttonNumber
-{
-    if (([self currentEventTime] - lastClick >= 1) ||
-        !NSEqualPoints(lastMousePosition, lastClickPosition) ||
-        lastClickButton != buttonNumber) {
-        clickCount = 1;
-        lastClickButton = buttonNumber;
-    } else
-        clickCount++;
-}
-
-static int modifierFlags(const NSString* modifierName)
-{
-    int flags = 0;
-    if ([modifierName isEqual:@"ctrlKey"])
-        flags |= NSControlKeyMask;
-    else if ([modifierName isEqual:@"shiftKey"] || [modifierName isEqual:@"rangeSelectionKey"])
-        flags |= NSShiftKeyMask;
-    else if ([modifierName isEqual:@"altKey"])
-        flags |= NSAlternateKeyMask;
-    else if ([modifierName isEqual:@"metaKey"] || [modifierName isEqual:@"addSelectionKey"])
-        flags |= NSCommandKeyMask;
-
-    return flags;
-}
-
-static int buildModifierFlags(const WebScriptObject* modifiers)
-{
-    int flags = 0;
-    if ([modifiers isKindOfClass:[NSString class]])
-        return modifierFlags((NSString*)modifiers);
-    else if (![modifiers isKindOfClass:[WebScriptObject class]])
-        return flags;
-    for (unsigned i = 0; [[modifiers webScriptValueAtIndex:i] isKindOfClass:[NSString class]]; i++) {
-        NSString* modifierName = (NSString*)[modifiers webScriptValueAtIndex:i];
-        flags |= modifierFlags(modifierName);
-    }
-    return flags;
-}
-
-- (void)mouseDown:(int)buttonNumber withModifiers:(WebScriptObject*)modifiers
-{
-    [[[mainFrame frameView] documentView] layout];
-    [self updateClickCountForButton:buttonNumber];
-    
-    NSEventType eventType = eventTypeForMouseButtonAndAction(buttonNumber, MouseDown);
-    NSEvent *event = [NSEvent mouseEventWithType:eventType
-                                        location:lastMousePosition 
-                                   modifierFlags:buildModifierFlags(modifiers)
-                                       timestamp:[self currentEventTime]
-                                    windowNumber:[[[mainFrame webView] window] windowNumber] 
-                                         context:[NSGraphicsContext currentContext] 
-                                     eventNumber:++eventNumber 
-                                      clickCount:clickCount 
-                                        pressure:0.0];
-
-    NSView *subView = [[mainFrame webView] hitTest:[event locationInWindow]];
-    if (subView) {
-        [subView mouseDown:event];
-        if (buttonNumber == LeftMouseButton)
-            leftMouseButtonDown = YES;
-    }
-}
-
-- (void)mouseDown:(int)buttonNumber
-{
-    [self mouseDown:buttonNumber withModifiers:nil];
-}
-
-- (void)textZoomIn
-{
-    [[mainFrame webView] makeTextLarger:self];
-}
-
-- (void)textZoomOut
-{
-    [[mainFrame webView] makeTextSmaller:self];
-}
-
-- (void)zoomPageIn
-{
-    [[mainFrame webView] zoomPageIn:self];
-}
-
-- (void)zoomPageOut
-{
-    [[mainFrame webView] zoomPageOut:self];
-}
-
-- (void)scalePageBy:(float)scale atX:(float)x andY:(float)y
-{
-    [[mainFrame webView] _scaleWebView:scale atOrigin:NSMakePoint(x, y)];
-}
-
-- (void)mouseUp:(int)buttonNumber withModifiers:(WebScriptObject*)modifiers
-{
-    if (dragMode && !replayingSavedEvents) {
-        NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:[EventSendingController instanceMethodSignatureForSelector:@selector(mouseUp:withModifiers:)]];
-        [invocation setTarget:self];
-        [invocation setSelector:@selector(mouseUp:withModifiers:)];
-        [invocation setArgument:&buttonNumber atIndex:2];
-        [invocation setArgument:&modifiers atIndex:3];
-        
-        [EventSendingController saveEvent:invocation];
-        [EventSendingController replaySavedEvents];
-
-        return;
-    }
-
-    [[[mainFrame frameView] documentView] layout];
-    NSEventType eventType = eventTypeForMouseButtonAndAction(buttonNumber, MouseUp);
-    NSEvent *event = [NSEvent mouseEventWithType:eventType
-                                        location:lastMousePosition 
-                                   modifierFlags:buildModifierFlags(modifiers)
-                                       timestamp:[self currentEventTime]
-                                    windowNumber:[[[mainFrame webView] window] windowNumber] 
-                                         context:[NSGraphicsContext currentContext] 
-                                     eventNumber:++eventNumber 
-                                      clickCount:clickCount 
-                                        pressure:0.0];
-
-    NSView *targetView = [[mainFrame webView] hitTest:[event locationInWindow]];
-    // FIXME: Silly hack to teach DRT to respect capturing mouse events outside the WebView.
-    // The right solution is just to use NSApplication's built-in event sending methods, 
-    // instead of rolling our own algorithm for selecting an event target.
-    targetView = targetView ? targetView : [[mainFrame frameView] documentView];
-    assert(targetView);
-    [targetView mouseUp:event];
-    if (buttonNumber == LeftMouseButton)
-        leftMouseButtonDown = NO;
-    lastClick = [event timestamp];
-    lastClickPosition = lastMousePosition;
-    if (draggingInfo) {
-        WebView *webView = [mainFrame webView];
-        
-        NSDragOperation dragOperation = [webView draggingUpdated:draggingInfo];
-        
-        if (dragOperation != NSDragOperationNone)
-            [webView performDragOperation:draggingInfo];
-        else
-            [webView draggingExited:draggingInfo];
-        // Per NSDragging.h: draggingSources may not implement draggedImage:endedAt:operation:
-        if ([[draggingInfo draggingSource] respondsToSelector:@selector(draggedImage:endedAt:operation:)])
-            [[draggingInfo draggingSource] draggedImage:[draggingInfo draggedImage] endedAt:lastMousePosition operation:dragOperation];
-        [draggingInfo release];
-        draggingInfo = nil;
-    }
-}
-
-- (void)mouseUp:(int)buttonNumber
-{
-    [self mouseUp:buttonNumber withModifiers:nil];
-}
-
-- (void)mouseMoveToX:(int)x Y:(int)y
-{
-    if (dragMode && leftMouseButtonDown && !replayingSavedEvents) {
-        NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:[EventSendingController instanceMethodSignatureForSelector:@selector(mouseMoveToX:Y:)]];
-        [invocation setTarget:self];
-        [invocation setSelector:@selector(mouseMoveToX:Y:)];
-        [invocation setArgument:&x atIndex:2];
-        [invocation setArgument:&y atIndex:3];
-        
-        [EventSendingController saveEvent:invocation];
-        return;
-    }
-
-    NSView *view = [mainFrame webView];
-    lastMousePosition = [view convertPoint:NSMakePoint(x, [view frame].size.height - y) toView:nil];
-    NSEvent *event = [NSEvent mouseEventWithType:(leftMouseButtonDown ? NSLeftMouseDragged : NSMouseMoved)
-                                        location:lastMousePosition 
-                                   modifierFlags:0 
-                                       timestamp:[self currentEventTime]
-                                    windowNumber:[[view window] windowNumber] 
-                                         context:[NSGraphicsContext currentContext] 
-                                     eventNumber:++eventNumber 
-                                      clickCount:(leftMouseButtonDown ? clickCount : 0) 
-                                        pressure:0.0];
-
-    NSView *subView = [[mainFrame webView] hitTest:[event locationInWindow]];
-    if (subView) {
-        if (leftMouseButtonDown) {
-            if (draggingInfo) {
-                // Per NSDragging.h: draggingSources may not implement draggedImage:movedTo:
-                if ([[draggingInfo draggingSource] respondsToSelector:@selector(draggedImage:movedTo:)])
-                    [[draggingInfo draggingSource] draggedImage:[draggingInfo draggedImage] movedTo:lastMousePosition];
-                [[mainFrame webView] draggingUpdated:draggingInfo];
-            } else
-                [subView mouseDragged:event];
-        } else
-            [subView mouseMoved:event];
-    }
-}
-
-- (void)mouseScrollByX:(int)x andY:(int)y continuously:(BOOL)c
-{
-    CGScrollEventUnit unit = c?kCGScrollEventUnitPixel:kCGScrollEventUnitLine;
-    CGEventRef cgScrollEvent = CGEventCreateScrollWheelEvent(NULL, unit, 2, y, x);
-    
-    // CGEvent locations are in global display coordinates.
-    CGPoint lastGlobalMousePosition = {
-        lastMousePosition.x,
-        [[NSScreen mainScreen] frame].size.height - lastMousePosition.y
-    };
-    CGEventSetLocation(cgScrollEvent, lastGlobalMousePosition);
-
-    NSEvent *scrollEvent = [NSEvent eventWithCGEvent:cgScrollEvent];
-    CFRelease(cgScrollEvent);
-
-    NSView *subView = [[mainFrame webView] hitTest:[scrollEvent locationInWindow]];
-    if (subView)
-        [subView scrollWheel:scrollEvent];
-}
-
-- (void)continuousMouseScrollByX:(int)x andY:(int)y
-{
-    [self mouseScrollByX:x andY:y continuously:YES];
-}
-
-- (void)mouseScrollByX:(int)x andY:(int)y
-{
-    [self mouseScrollByX:x andY:y continuously:NO];
-}
-
-- (NSArray *)contextClick
-{
-    [[[mainFrame frameView] documentView] layout];
-    [self updateClickCountForButton:RightMouseButton];
-
-    NSEvent *event = [NSEvent mouseEventWithType:NSRightMouseDown
-                                        location:lastMousePosition 
-                                   modifierFlags:0 
-                                       timestamp:[self currentEventTime]
-                                    windowNumber:[[[mainFrame webView] window] windowNumber] 
-                                         context:[NSGraphicsContext currentContext] 
-                                     eventNumber:++eventNumber 
-                                      clickCount:clickCount 
-                                        pressure:0.0];
-
-    NSView *subView = [[mainFrame webView] hitTest:[event locationInWindow]];
-    NSMutableArray *menuItemStrings = [NSMutableArray array];
-    
-    if (subView) {
-        NSMenu* menu = [subView menuForEvent:event];
-
-        for (int i = 0; i < [menu numberOfItems]; ++i) {
-            NSMenuItem* menuItem = [menu itemAtIndex:i];
-            if (!strcmp("Inspect Element", [[menuItem title] UTF8String]))
-                continue;
-
-            if ([menuItem isSeparatorItem])
-                [menuItemStrings addObject:@"<separator>"];
-            else
-                [menuItemStrings addObject:[menuItem title]];
-        }
-    }
-    
-    return menuItemStrings;
-}
-
-- (void)scheduleAsynchronousClick
-{
-    [self performSelector:@selector(mouseDown:) withObject:nil afterDelay:0];
-    [self performSelector:@selector(mouseUp:) withObject:nil afterDelay:0];
-}
-
-+ (void)saveEvent:(NSInvocation *)event
-{
-    if (!savedMouseEvents)
-        savedMouseEvents = [[NSMutableArray alloc] init];
-    [savedMouseEvents addObject:event];
-}
-
-+ (void)replaySavedEvents
-{
-    replayingSavedEvents = YES;
-    while ([savedMouseEvents count]) {
-        // if a drag is initiated, the remaining saved events will be dispatched from our dragging delegate
-        NSInvocation *invocation = [[[savedMouseEvents objectAtIndex:0] retain] autorelease];
-        [savedMouseEvents removeObjectAtIndex:0];
-        [invocation invoke];
-    }
-    replayingSavedEvents = NO;
-}
-
-+ (void)clearSavedEvents
-{
-    [savedMouseEvents release];
-    savedMouseEvents = nil;
-}
-
-- (void)keyDown:(NSString *)character withModifiers:(WebScriptObject *)modifiers withLocation:(unsigned long)keyLocation
-{
-    NSString *eventCharacter = character;
-    unsigned short keyCode = 0;
-    if ([character isEqualToString:@"leftArrow"]) {
-        const unichar ch = NSLeftArrowFunctionKey;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x7B;
-    } else if ([character isEqualToString:@"rightArrow"]) {
-        const unichar ch = NSRightArrowFunctionKey;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x7C;
-    } else if ([character isEqualToString:@"upArrow"]) {
-        const unichar ch = NSUpArrowFunctionKey;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x7E;
-    } else if ([character isEqualToString:@"downArrow"]) {
-        const unichar ch = NSDownArrowFunctionKey;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x7D;
-    } else if ([character isEqualToString:@"pageUp"]) {
-        const unichar ch = NSPageUpFunctionKey;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x74;
-    } else if ([character isEqualToString:@"pageDown"]) {
-        const unichar ch = NSPageDownFunctionKey;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x79;
-    } else if ([character isEqualToString:@"home"]) {
-        const unichar ch = NSHomeFunctionKey;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x73;
-    } else if ([character isEqualToString:@"end"]) {
-        const unichar ch = NSEndFunctionKey;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x77;
-    } else if ([character isEqualToString:@"insert"]) {
-        const unichar ch = NSInsertFunctionKey;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x72;
-    } else if ([character isEqualToString:@"delete"]) {
-        const unichar ch = NSDeleteFunctionKey;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x75;
-    } else if ([character isEqualToString:@"printScreen"]) {
-        const unichar ch = NSPrintScreenFunctionKey;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x0; // There is no known virtual key code for PrintScreen.
-    } else if ([character isEqualToString:@"cyrillicSmallLetterA"]) {
-        const unichar ch = 0x0430;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x3; // Shares key with "F" on Russian layout.
-    } else if ([character isEqualToString:@"leftControl"]) {
-        const unichar ch = 0xFFE3;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x3B;
-    } else if ([character isEqualToString:@"leftShift"]) {
-        const unichar ch = 0xFFE1;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x38;
-    } else if ([character isEqualToString:@"leftAlt"]) {
-        const unichar ch = 0xFFE7;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x3A;
-    } else if ([character isEqualToString:@"rightControl"]) {
-        const unichar ch = 0xFFE4;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x3E;
-    } else if ([character isEqualToString:@"rightShift"]) {
-        const unichar ch = 0xFFE2;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x3C;
-    } else if ([character isEqualToString:@"rightAlt"]) {
-        const unichar ch = 0xFFE8;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x3D;
-    }
-
-    // Compare the input string with the function-key names defined by the DOM spec (i.e. "F1",...,"F24").
-    // If the input string is a function-key name, set its key code.
-    for (unsigned i = 1; i <= 24; i++) {
-        if ([character isEqualToString:[NSString stringWithFormat:@"F%u", i]]) {
-            const unichar ch = NSF1FunctionKey + (i - 1);
-            eventCharacter = [NSString stringWithCharacters:&ch length:1];
-            switch (i) {
-                case 1: keyCode = 0x7A; break;
-                case 2: keyCode = 0x78; break;
-                case 3: keyCode = 0x63; break;
-                case 4: keyCode = 0x76; break;
-                case 5: keyCode = 0x60; break;
-                case 6: keyCode = 0x61; break;
-                case 7: keyCode = 0x62; break;
-                case 8: keyCode = 0x64; break;
-                case 9: keyCode = 0x65; break;
-                case 10: keyCode = 0x6D; break;
-                case 11: keyCode = 0x67; break;
-                case 12: keyCode = 0x6F; break;
-                case 13: keyCode = 0x69; break;
-                case 14: keyCode = 0x6B; break;
-                case 15: keyCode = 0x71; break;
-                case 16: keyCode = 0x6A; break;
-                case 17: keyCode = 0x40; break;
-                case 18: keyCode = 0x4F; break;
-                case 19: keyCode = 0x50; break;
-                case 20: keyCode = 0x5A; break;
-            }
-        }
-    }
-
-    // FIXME: No keyCode is set for most keys.
-    if ([character isEqualToString:@"\t"])
-        keyCode = 0x30;
-    else if ([character isEqualToString:@" "])
-        keyCode = 0x31;
-    else if ([character isEqualToString:@"\r"])
-        keyCode = 0x24;
-    else if ([character isEqualToString:@"\n"])
-        keyCode = 0x4C;
-    else if ([character isEqualToString:@"\x8"])
-        keyCode = 0x33;
-    else if ([character isEqualToString:@"a"])
-        keyCode = 0x00;
-    else if ([character isEqualToString:@"b"])
-        keyCode = 0x0B;
-    else if ([character isEqualToString:@"d"])
-        keyCode = 0x02;
-    else if ([character isEqualToString:@"e"])
-        keyCode = 0x0E;
-
-    KeyMappingEntry table[] = {
-        {0x2F, 0x41, '.', nil},
-        {0,    0x43, '*', nil},
-        {0,    0x45, '+', nil},
-        {0,    0x47, NSClearLineFunctionKey, @"clear"},
-        {0x2C, 0x4B, '/', nil},
-        {0,    0x4C, 3, @"enter" },
-        {0x1B, 0x4E, '-', nil},
-        {0x18, 0x51, '=', nil},
-        {0x1D, 0x52, '0', nil},
-        {0x12, 0x53, '1', nil},
-        {0x13, 0x54, '2', nil},
-        {0x14, 0x55, '3', nil},
-        {0x15, 0x56, '4', nil},
-        {0x17, 0x57, '5', nil},
-        {0x16, 0x58, '6', nil},
-        {0x1A, 0x59, '7', nil},
-        {0x1C, 0x5B, '8', nil},
-        {0x19, 0x5C, '9', nil},
-    };
-    for (unsigned i = 0; i < WTF_ARRAY_LENGTH(table); ++i) {
-        NSString* currentCharacterString = [NSString stringWithCharacters:&table[i].character length:1];
-        if ([character isEqualToString:currentCharacterString] || [character isEqualToString:table[i].characterName]) {
-            if (keyLocation == DOM_KEY_LOCATION_NUMPAD)
-                keyCode = table[i].macNumpadKeyCode;
-            else
-                keyCode = table[i].macKeyCode;
-            eventCharacter = currentCharacterString;
-            break;
-        }
-    }
-
-    NSString *charactersIgnoringModifiers = eventCharacter;
-
-    int modifierFlags = 0;
-
-    if ([character length] == 1 && [character characterAtIndex:0] >= 'A' && [character characterAtIndex:0] <= 'Z') {
-        modifierFlags |= NSShiftKeyMask;
-        charactersIgnoringModifiers = [character lowercaseString];
-    }
-
-    modifierFlags |= buildModifierFlags(modifiers);
-
-    if (keyLocation == DOM_KEY_LOCATION_NUMPAD)
-        modifierFlags |= NSNumericPadKeyMask;
-
-    [[[mainFrame frameView] documentView] layout];
-
-    NSEvent *event = [NSEvent keyEventWithType:NSKeyDown
-                        location:NSMakePoint(5, 5)
-                        modifierFlags:modifierFlags
-                        timestamp:[self currentEventTime]
-                        windowNumber:[[[mainFrame webView] window] windowNumber]
-                        context:[NSGraphicsContext currentContext]
-                        characters:eventCharacter
-                        charactersIgnoringModifiers:charactersIgnoringModifiers
-                        isARepeat:NO
-                        keyCode:keyCode];
-
-    [[[[mainFrame webView] window] firstResponder] keyDown:event];
-
-    event = [NSEvent keyEventWithType:NSKeyUp
-                        location:NSMakePoint(5, 5)
-                        modifierFlags:modifierFlags
-                        timestamp:[self currentEventTime]
-                        windowNumber:[[[mainFrame webView] window] windowNumber]
-                        context:[NSGraphicsContext currentContext]
-                        characters:eventCharacter
-                        charactersIgnoringModifiers:charactersIgnoringModifiers
-                        isARepeat:NO
-                        keyCode:keyCode];
-
-    [[[[mainFrame webView] window] firstResponder] keyUp:event];
-}
-
-- (void)keyDownWrapper:(NSString *)character withModifiers:(WebScriptObject *)modifiers withLocation:(unsigned long)keyLocation
-{
-    [self keyDown:character withModifiers:modifiers withLocation:keyLocation];
-}
-
-- (void)scheduleAsynchronousKeyDown:(NSString *)character withModifiers:(WebScriptObject *)modifiers withLocation:(unsigned long)keyLocation
-{
-    NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:[EventSendingController instanceMethodSignatureForSelector:@selector(keyDownWrapper:withModifiers:withLocation:)]];
-    [invocation retainArguments];
-    [invocation setTarget:self];
-    [invocation setSelector:@selector(keyDownWrapper:withModifiers:withLocation:)];
-    [invocation setArgument:&character atIndex:2];
-    [invocation setArgument:&modifiers atIndex:3];
-    [invocation setArgument:&keyLocation atIndex:4];
-    [invocation performSelector:@selector(invoke) withObject:nil afterDelay:0];
-}
-
-- (void)enableDOMUIEventLogging:(WebScriptObject *)node
-{
-    NSEnumerator *eventEnumerator = [webkitDomEventNames objectEnumerator];
-    id eventName;
-    while ((eventName = [eventEnumerator nextObject])) {
-        [(id<DOMEventTarget>)node addEventListener:eventName listener:self useCapture:NO];
-    }
-}
-
-- (void)handleEvent:(DOMEvent *)event
-{
-    DOMNode *target = [event target];
-
-    printf("event type:      %s\n", [[event type] UTF8String]);
-    printf("  target:        <%s>\n", [[[target nodeName] lowercaseString] UTF8String]);
-    
-    if ([event isKindOfClass:[DOMEvent class]]) {
-        printf("  eventPhase:    %d\n", [event eventPhase]);
-        printf("  bubbles:       %d\n", [event bubbles] ? 1 : 0);
-        printf("  cancelable:    %d\n", [event cancelable] ? 1 : 0);
-    }
-    
-    if ([event isKindOfClass:[DOMUIEvent class]]) {
-        printf("  detail:        %d\n", [(DOMUIEvent*)event detail]);
-        
-        DOMAbstractView *view = [(DOMUIEvent*)event view];
-        if (view) {
-            printf("  view:          OK");            
-            if ([view document])
-                printf(" (document: OK)");
-            printf("\n");
-        }
-    }
-    
-    if ([event isKindOfClass:[DOMKeyboardEvent class]]) {
-        printf("  keyIdentifier: %s\n", [[(DOMKeyboardEvent*)event keyIdentifier] UTF8String]);
-        printf("  keyLocation:   %d\n", [(DOMKeyboardEvent*)event keyLocation]);
-        printf("  modifier keys: c:%d s:%d a:%d m:%d\n", 
-               [(DOMKeyboardEvent*)event ctrlKey] ? 1 : 0, 
-               [(DOMKeyboardEvent*)event shiftKey] ? 1 : 0, 
-               [(DOMKeyboardEvent*)event altKey] ? 1 : 0, 
-               [(DOMKeyboardEvent*)event metaKey] ? 1 : 0);
-        printf("  keyCode:       %d\n", [(DOMKeyboardEvent*)event keyCode]);
-        printf("  charCode:      %d\n", [(DOMKeyboardEvent*)event charCode]);
-    }
-    
-    if ([event isKindOfClass:[DOMMouseEvent class]]) {
-        printf("  button:        %d\n", [(DOMMouseEvent*)event button]);
-        printf("  clientX:       %d\n", [(DOMMouseEvent*)event clientX]);
-        printf("  clientY:       %d\n", [(DOMMouseEvent*)event clientY]);
-        printf("  screenX:       %d\n", [(DOMMouseEvent*)event screenX]);
-        printf("  screenY:       %d\n", [(DOMMouseEvent*)event screenY]);
-        printf("  modifier keys: c:%d s:%d a:%d m:%d\n", 
-               [(DOMMouseEvent*)event ctrlKey] ? 1 : 0, 
-               [(DOMMouseEvent*)event shiftKey] ? 1 : 0, 
-               [(DOMMouseEvent*)event altKey] ? 1 : 0, 
-               [(DOMMouseEvent*)event metaKey] ? 1 : 0);
-        id relatedTarget = [(DOMMouseEvent*)event relatedTarget];
-        if (relatedTarget) {
-            printf("  relatedTarget: %s", [[[relatedTarget class] description] UTF8String]);
-            if ([relatedTarget isKindOfClass:[DOMNode class]])
-                printf(" (nodeName: %s)", [[(DOMNode*)relatedTarget nodeName] UTF8String]);
-            printf("\n");
-        }
-    }
-    
-    if ([event isKindOfClass:[DOMMutationEvent class]]) {
-        printf("  prevValue:     %s\n", [[(DOMMutationEvent*)event prevValue] UTF8String]);
-        printf("  newValue:      %s\n", [[(DOMMutationEvent*)event newValue] UTF8String]);
-        printf("  attrName:      %s\n", [[(DOMMutationEvent*)event attrName] UTF8String]);
-        printf("  attrChange:    %d\n", [(DOMMutationEvent*)event attrChange]);
-        DOMNode *relatedNode = [(DOMMutationEvent*)event relatedNode];
-        if (relatedNode) {
-            printf("  relatedNode:   %s (nodeName: %s)\n", 
-                   [[[relatedNode class] description] UTF8String],
-                   [[relatedNode nodeName] UTF8String]);
-        }
-    }
-    
-    if ([event isKindOfClass:[DOMWheelEvent class]]) {
-        printf("  clientX:       %d\n", [(DOMWheelEvent*)event clientX]);
-        printf("  clientY:       %d\n", [(DOMWheelEvent*)event clientY]);
-        printf("  screenX:       %d\n", [(DOMWheelEvent*)event screenX]);
-        printf("  screenY:       %d\n", [(DOMWheelEvent*)event screenY]);
-        printf("  modifier keys: c:%d s:%d a:%d m:%d\n", 
-               [(DOMWheelEvent*)event ctrlKey] ? 1 : 0, 
-               [(DOMWheelEvent*)event shiftKey] ? 1 : 0, 
-               [(DOMWheelEvent*)event altKey] ? 1 : 0, 
-               [(DOMWheelEvent*)event metaKey] ? 1 : 0);
-        printf("  isHorizontal:  %d\n", [(DOMWheelEvent*)event isHorizontal] ? 1 : 0);
-        printf("  wheelDelta:    %d\n", [(DOMWheelEvent*)event wheelDelta]);
-    }
-}
-
-// FIXME: It's not good to have a test hard-wired into this controller like this.
-// Instead we need to get testing framework based on the Objective-C bindings
-// to work well enough that we can test that way instead.
-- (void)fireKeyboardEventsToElement:(WebScriptObject *)element {
-    
-    if (![element isKindOfClass:[DOMHTMLElement class]])
-        return;
-    
-    DOMHTMLElement *target = (DOMHTMLElement*)element;
-    DOMDocument *document = [target ownerDocument];
-    
-    // Keyboard Event 1
-    
-    DOMEvent *domEvent = [document createEvent:@"KeyboardEvent"];
-    [(DOMKeyboardEvent*)domEvent initKeyboardEvent:@"keydown" 
-                                         canBubble:YES
-                                        cancelable:YES
-                                              view:[document defaultView]
-                                     keyIdentifier:@"U+000041" 
-                                       keyLocation:0
-                                           ctrlKey:YES
-                                            altKey:NO
-                                          shiftKey:NO
-                                           metaKey:NO];
-    [target dispatchEvent:domEvent];  
-        
-    // Keyboard Event 2
-    
-    domEvent = [document createEvent:@"KeyboardEvent"];
-    [(DOMKeyboardEvent*)domEvent initKeyboardEvent:@"keypress" 
-                                         canBubble:YES
-                                        cancelable:YES
-                                              view:[document defaultView]
-                                     keyIdentifier:@"U+000045" 
-                                       keyLocation:1
-                                           ctrlKey:NO
-                                            altKey:YES
-                                          shiftKey:NO
-                                           metaKey:NO];
-    [target dispatchEvent:domEvent];    
-    
-    // Keyboard Event 3
-    
-    domEvent = [document createEvent:@"KeyboardEvent"];
-    [(DOMKeyboardEvent*)domEvent initKeyboardEvent:@"keyup" 
-                                         canBubble:YES
-                                        cancelable:YES
-                                              view:[document defaultView]
-                                     keyIdentifier:@"U+000056" 
-                                       keyLocation:0
-                                           ctrlKey:NO
-                                            altKey:NO
-                                          shiftKey:NO
-                                           metaKey:NO];
-    [target dispatchEvent:domEvent];   
-    
-}
-
-@end
diff --git a/Tools/DumpRenderTree/mac/FrameLoadDelegate.h b/Tools/DumpRenderTree/mac/FrameLoadDelegate.h
deleted file mode 100644
index 390a881..0000000
--- a/Tools/DumpRenderTree/mac/FrameLoadDelegate.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * Copyright (C) 2007 Apple Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-    * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import <Foundation/Foundation.h>
-
-class AccessibilityController;
-class GCController;
-
-@interface FrameLoadDelegate : NSObject
-{
-    AccessibilityController* accessibilityController;
-    GCController* gcController;
-}
-
-- (void)resetToConsistentState;
-
-@end
diff --git a/Tools/DumpRenderTree/mac/FrameLoadDelegate.mm b/Tools/DumpRenderTree/mac/FrameLoadDelegate.mm
deleted file mode 100644
index 21be922..0000000
--- a/Tools/DumpRenderTree/mac/FrameLoadDelegate.mm
+++ /dev/null
@@ -1,466 +0,0 @@
-/*
- * Copyright (C) 2007 Apple Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "DumpRenderTree.h"
-#import "FrameLoadDelegate.h"
-
-#import "AccessibilityController.h"
-#import "AppleScriptController.h"
-#import "EventSendingController.h"
-#import "Foundation/NSNotification.h"
-#import "GCController.h"
-#import "TestRunner.h"
-#import "NavigationController.h"
-#import "ObjCController.h"
-#import "ObjCPlugin.h"
-#import "ObjCPluginFunction.h"
-#import "TextInputController.h"
-#import "WebCoreTestSupport.h"
-#import "WorkQueue.h"
-#import "WorkQueueItem.h"
-#import <JavaScriptCore/JavaScriptCore.h>
-#import <WebKitSystemInterface.h>
-#import <WebKit/WebFramePrivate.h>
-#import <WebKit/WebHTMLViewPrivate.h>
-#import <WebKit/WebKit.h>
-#import <WebKit/WebNSURLExtras.h>
-#import <WebKit/WebScriptWorld.h>
-#import <WebKit/WebSecurityOriginPrivate.h>
-#import <WebKit/WebViewPrivate.h>
-#import <wtf/Assertions.h>
-
-#ifndef NSEC_PER_MSEC
-#define NSEC_PER_MSEC 1000000ull
-#endif
-
-@interface NSURL (DRTExtras)
-- (NSString *)_drt_descriptionSuitableForTestResult;
-@end
-
-@interface NSError (DRTExtras)
-- (NSString *)_drt_descriptionSuitableForTestResult;
-@end
-
-@interface NSURLResponse (DRTExtras)
-- (NSString *)_drt_descriptionSuitableForTestResult;
-@end
-
-@interface NSURLRequest (DRTExtras)
-- (NSString *)_drt_descriptionSuitableForTestResult;
-@end
-
-@interface WebFrame (DRTExtras)
-- (NSString *)_drt_descriptionSuitableForTestResult;
-@end
-
-@implementation WebFrame (DRTExtras)
-- (NSString *)_drt_descriptionSuitableForTestResult
-{
-    BOOL isMainFrame = (self == [[self webView] mainFrame]);
-    NSString *name = [self name];
-    if (isMainFrame) {
-        if ([name length])
-            return [NSString stringWithFormat:@"main frame \"%@\"", name];
-        else
-            return @"main frame";
-    } else {
-        if (name)
-            return [NSString stringWithFormat:@"frame \"%@\"", name];
-        else
-            return @"frame (anonymous)";
-    }
-}
-
-- (NSString *)_drt_printFrameUserGestureStatus
-{
-    BOOL isUserGesture = [[self webView] _isProcessingUserGesture];
-    return [NSString stringWithFormat:@"Frame with user gesture \"%@\"", isUserGesture ? @"true" : @"false"];
-}
-@end
-
-@implementation FrameLoadDelegate
-
-- (id)init
-{
-    if ((self = [super init])) {
-        gcController = new GCController;
-        accessibilityController = new AccessibilityController;
-        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(webViewProgressFinishedNotification:) name:WebViewProgressFinishedNotification object:nil];
-    }
-    return self;
-}
-
-- (void)dealloc
-{
-    [[NSNotificationCenter defaultCenter] removeObserver:self];
-    delete gcController;
-    delete accessibilityController;
-    [super dealloc];
-}
-
-// Exec messages in the work queue until they're all done, or one of them starts a new load
-- (void)processWork:(id)dummy
-{
-    // if another load started, then wait for it to complete.
-    if (topLoadingFrame)
-        return;
-
-    // if we finish all the commands, we're ready to dump state
-    if (WorkQueue::shared()->processWork() && !gTestRunner->waitToDump())
-        dump();
-}
-
-- (void)resetToConsistentState
-{
-    accessibilityController->resetToConsistentState();
-}
-
-- (void)webView:(WebView *)c locationChangeDone:(NSError *)error forDataSource:(WebDataSource *)dataSource
-{
-    if ([dataSource webFrame] == topLoadingFrame) {
-        topLoadingFrame = nil;
-        WorkQueue::shared()->setFrozen(true); // first complete load freezes the queue for the rest of this test
-        if (!gTestRunner->waitToDump()) {
-            if (WorkQueue::shared()->count())
-                [self performSelector:@selector(processWork:) withObject:nil afterDelay:0];
-            else
-                dump();
-        }
-    }
-}
-
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1070
-static NSString *testPathFromURL(NSURL* url)
-{
-    if ([url isFileURL]) {
-        NSString *filePath = [url path];
-        NSRange layoutTestsRange = [filePath rangeOfString:@"/LayoutTests/"];
-        if (layoutTestsRange.location == NSNotFound)
-            return nil;
-            
-        return [filePath substringFromIndex:NSMaxRange(layoutTestsRange)];
-    }
-    
-    // HTTP test URLs look like: http://127.0.0.1:8000/inspector/resource-tree/resource-request-content-after-loading-and-clearing-cache.html
-    if (![[url scheme] isEqualToString:@"http"] && ![[url scheme] isEqualToString:@"https"])
-        return nil;
-
-    if ([[url host] isEqualToString:@"127.0.0.1"] && ([[url port] intValue] == 8000 || [[url port] intValue] == 8443))
-        return [url path];
-
-    return nil;
-}
-#endif
-
-- (void)webView:(WebView *)sender didStartProvisionalLoadForFrame:(WebFrame *)frame
-{
-    ASSERT([frame provisionalDataSource]);
-
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1070
-    if (!done && [[sender mainFrame] isEqual:frame]) {
-        NSURL *provisionalLoadURL = [[[frame provisionalDataSource] initialRequest] URL];
-        if (NSString *testPath = testPathFromURL(provisionalLoadURL))
-            WKSetCrashReportApplicationSpecificInformation((CFStringRef)[@"CRASHING TEST: " stringByAppendingString:testPath]);
-    }
-#endif
-
-    if (!done && gTestRunner->dumpFrameLoadCallbacks()) {
-        NSString *string = [NSString stringWithFormat:@"%@ - didStartProvisionalLoadForFrame", [frame _drt_descriptionSuitableForTestResult]];
-        printf ("%s\n", [string UTF8String]);
-    }
-
-    if (!done && gTestRunner->dumpUserGestureInFrameLoadCallbacks()) {
-        NSString *string = [NSString stringWithFormat:@"%@ - in didStartProvisionalLoadForFrame", [frame _drt_printFrameUserGestureStatus]];
-        printf ("%s\n", [string UTF8String]);
-    }
-
-    // Make sure we only set this once per test.  If it gets cleared, and then set again, we might
-    // end up doing two dumps for one test.
-    if (!topLoadingFrame && !done)
-        topLoadingFrame = frame;
-
-    if (!done && gTestRunner->stopProvisionalFrameLoads()) {
-        NSString *string = [NSString stringWithFormat:@"%@ - stopping load in didStartProvisionalLoadForFrame callback", [frame _drt_descriptionSuitableForTestResult]];
-        printf ("%s\n", [string UTF8String]);
-        [frame stopLoading];
-    }
-
-    if (!done && gTestRunner->useDeferredFrameLoading()) {
-        [sender setDefersCallbacks:YES];
-        int64_t deferredWaitTime = 5 * NSEC_PER_MSEC;
-        dispatch_time_t when = dispatch_time(DISPATCH_TIME_NOW, deferredWaitTime);
-        dispatch_after(when, dispatch_get_main_queue(), ^{
-            [sender setDefersCallbacks:NO];
-        });
-    }
-}
-
-- (void)webView:(WebView *)sender didCommitLoadForFrame:(WebFrame *)frame
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks()) {
-        NSString *string = [NSString stringWithFormat:@"%@ - didCommitLoadForFrame", [frame _drt_descriptionSuitableForTestResult]];
-        printf ("%s\n", [string UTF8String]);
-    }
-
-    ASSERT(![frame provisionalDataSource]);
-    ASSERT([frame dataSource]);
-    
-    gTestRunner->setWindowIsKey(true);
-    NSView *documentView = [[mainFrame frameView] documentView];
-    [[[mainFrame webView] window] makeFirstResponder:documentView];
-}
-
-- (void)webView:(WebView *)sender didFailProvisionalLoadWithError:(NSError *)error forFrame:(WebFrame *)frame
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks()) {
-        NSString *string = [NSString stringWithFormat:@"%@ - didFailProvisionalLoadWithError", [frame _drt_descriptionSuitableForTestResult]];
-        printf("%s\n", [string UTF8String]);
-    }
-
-    if ([error domain] == NSURLErrorDomain && ([error code] == NSURLErrorServerCertificateHasUnknownRoot || [error code] == NSURLErrorServerCertificateUntrusted)) {
-        // <http://webkit.org/b/31200> In order to prevent extra frame load delegate logging being generated if the first test to use SSL
-        // is set to log frame load delegate calls we ignore SSL certificate errors on localhost and 127.0.0.1 from within dumpRenderTree.
-        // Those are the only hosts that we use SSL with at present.  If we hit this code path then we've found another host that we need
-        // to apply the workaround to.
-        ASSERT_NOT_REACHED();
-        return;
-    }
-
-    ASSERT([frame provisionalDataSource]);
-    [self webView:sender locationChangeDone:error forDataSource:[frame provisionalDataSource]];
-}
-
-- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
-{
-    ASSERT([frame dataSource]);
-    ASSERT(frame == [[frame dataSource] webFrame]);
-    
-    if (!done && gTestRunner->dumpFrameLoadCallbacks()) {
-        NSString *string = [NSString stringWithFormat:@"%@ - didFinishLoadForFrame", [frame _drt_descriptionSuitableForTestResult]];
-        printf ("%s\n", [string UTF8String]);
-    }
-
-    // FIXME: This call to displayIfNeeded can be removed when <rdar://problem/5092361> is fixed.
-    // After that is fixed, we will reenable painting after WebCore is done loading the document, 
-    // and this call will no longer be needed.
-    if ([[sender mainFrame] isEqual:frame])
-        [sender displayIfNeeded];
-    [self webView:sender locationChangeDone:nil forDataSource:[frame dataSource]];
-    [gNavigationController webView:sender didFinishLoadForFrame:frame];
-}
-
-- (void)webView:(WebView *)sender didFailLoadWithError:(NSError *)error forFrame:(WebFrame *)frame
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks()) {
-        NSString *string = [NSString stringWithFormat:@"%@ - didFailLoadWithError", [frame _drt_descriptionSuitableForTestResult]];
-        printf ("%s\n", [string UTF8String]);
-    }
-
-    ASSERT(![frame provisionalDataSource]);
-    ASSERT([frame dataSource]);
-    
-    [self webView:sender locationChangeDone:error forDataSource:[frame dataSource]];    
-}
-
-- (void)webView:(WebView *)webView windowScriptObjectAvailable:(WebScriptObject *)windowScriptObject
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks()) {
-        NSString *string = [NSString stringWithFormat:@"?? - windowScriptObjectAvailable"];
-        printf ("%s\n", [string UTF8String]);
-    }
-
-    ASSERT_NOT_REACHED();
-}
-
-- (void)didClearWindowObjectInStandardWorldForFrame:(WebFrame *)frame
-{
-    // Make New-Style TestRunner
-    JSContextRef context = [frame globalContext];
-    JSObjectRef globalObject = JSContextGetGlobalObject(context);
-    JSValueRef exception = 0;
-
-    ASSERT(gTestRunner);
-    gTestRunner->makeWindowObject(context, globalObject, &exception);
-    ASSERT(!exception);
-
-    gcController->makeWindowObject(context, globalObject, &exception);
-    ASSERT(!exception);
-
-    accessibilityController->makeWindowObject(context, globalObject, &exception);
-    ASSERT(!exception);
-
-    WebCoreTestSupport::injectInternalsObject(context);
-
-    // Make Old-Style controllers
-
-    WebView *webView = [frame webView];
-    WebScriptObject *obj = [frame windowObject];
-    AppleScriptController *asc = [[AppleScriptController alloc] initWithWebView:webView];
-    [obj setValue:asc forKey:@"appleScriptController"];
-    [asc release];
-
-    EventSendingController *esc = [[EventSendingController alloc] init];
-    [obj setValue:esc forKey:@"eventSender"];
-    [esc release];
-    
-    [obj setValue:gNavigationController forKey:@"navigationController"];
-    
-    ObjCController *occ = [[ObjCController alloc] init];
-    [obj setValue:occ forKey:@"objCController"];
-    [occ release];
-
-    ObjCPlugin *plugin = [[ObjCPlugin alloc] init];
-    [obj setValue:plugin forKey:@"objCPlugin"];
-    [plugin release];
-    
-    ObjCPluginFunction *pluginFunction = [[ObjCPluginFunction alloc] init];
-    [obj setValue:pluginFunction forKey:@"objCPluginFunction"];
-    [pluginFunction release];
-
-    TextInputController *tic = [[TextInputController alloc] initWithWebView:webView];
-    [obj setValue:tic forKey:@"textInputController"];
-    [tic release];
-}
-
-- (void)didClearWindowObjectForFrame:(WebFrame *)frame inIsolatedWorld:(WebScriptWorld *)world
-{
-    JSGlobalContextRef ctx = [frame _globalContextForScriptWorld:world];
-    if (!ctx)
-        return;
-
-    JSObjectRef globalObject = JSContextGetGlobalObject(ctx);
-    if (!globalObject)
-        return;
-
-    JSObjectSetProperty(ctx, globalObject, JSRetainPtr<JSStringRef>(Adopt, JSStringCreateWithUTF8CString("__worldID")).get(), JSValueMakeNumber(ctx, worldIDForWorld(world)), kJSPropertyAttributeReadOnly, 0);
-}
-
-- (void)webView:(WebView *)sender didClearWindowObjectForFrame:(WebFrame *)frame inScriptWorld:(WebScriptWorld *)world
-{
-    if (world == [WebScriptWorld standardWorld])
-        [self didClearWindowObjectInStandardWorldForFrame:frame];
-    else
-        [self didClearWindowObjectForFrame:frame inIsolatedWorld:world];
-}
-
-- (void)webView:(WebView *)sender didReceiveTitle:(NSString *)title forFrame:(WebFrame *)frame
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks()) {
-        NSString *string = [NSString stringWithFormat:@"%@ - didReceiveTitle: %@", [frame _drt_descriptionSuitableForTestResult], title];
-        printf ("%s\n", [string UTF8String]);
-    }
-
-    if (gTestRunner->dumpTitleChanges())
-        printf("TITLE CHANGED: '%s'\n", [title UTF8String]);
-}
-
-- (void)webView:(WebView *)sender didReceiveServerRedirectForProvisionalLoadForFrame:(WebFrame *)frame
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks()) {
-        NSString *string = [NSString stringWithFormat:@"%@ - didReceiveServerRedirectForProvisionalLoadForFrame", [frame _drt_descriptionSuitableForTestResult]];
-        printf ("%s\n", [string UTF8String]);
-    }
-}
-
-- (void)webView:(WebView *)sender didChangeLocationWithinPageForFrame:(WebFrame *)frame
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks()) {
-        NSString *string = [NSString stringWithFormat:@"%@ - didChangeLocationWithinPageForFrame", [frame _drt_descriptionSuitableForTestResult]];
-        printf ("%s\n", [string UTF8String]);
-    }
-}
-
-- (void)webView:(WebView *)sender willPerformClientRedirectToURL:(NSURL *)URL delay:(NSTimeInterval)seconds fireDate:(NSDate *)date forFrame:(WebFrame *)frame
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks()) {
-        NSString *string = [NSString stringWithFormat:@"%@ - willPerformClientRedirectToURL: %@ ", [frame _drt_descriptionSuitableForTestResult], [URL _drt_descriptionSuitableForTestResult]];
-        printf ("%s\n", [string UTF8String]);
-    }
-
-    if (!done && gTestRunner->dumpUserGestureInFrameLoadCallbacks()) {
-        NSString *string = [NSString stringWithFormat:@"%@ - in willPerformClientRedirect", [frame _drt_printFrameUserGestureStatus]];
-        printf ("%s\n", [string UTF8String]);
-    }
-}
-
-- (void)webView:(WebView *)sender didCancelClientRedirectForFrame:(WebFrame *)frame
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks()) {
-        NSString *string = [NSString stringWithFormat:@"%@ - didCancelClientRedirectForFrame", [frame _drt_descriptionSuitableForTestResult]];
-        printf ("%s\n", [string UTF8String]);
-    }
-}
-
-- (void)webView:(WebView *)sender didFinishDocumentLoadForFrame:(WebFrame *)frame
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks()) {
-        NSString *string = [NSString stringWithFormat:@"%@ - didFinishDocumentLoadForFrame", [frame _drt_descriptionSuitableForTestResult]];
-        printf ("%s\n", [string UTF8String]);
-    } else if (!done) {
-        unsigned pendingFrameUnloadEvents = [frame _pendingFrameUnloadEventCount];
-        if (pendingFrameUnloadEvents) {
-            NSString *string = [NSString stringWithFormat:@"%@ - has %u onunload handler(s)", [frame _drt_descriptionSuitableForTestResult], pendingFrameUnloadEvents];
-            printf ("%s\n", [string UTF8String]);
-        }
-    }
-}
-
-- (void)webView:(WebView *)sender didHandleOnloadEventsForFrame:(WebFrame *)frame
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks()) {
-        NSString *string = [NSString stringWithFormat:@"%@ - didHandleOnloadEventsForFrame", [frame _drt_descriptionSuitableForTestResult]];
-        printf ("%s\n", [string UTF8String]);
-    }
-}
-
-- (void)webViewDidDisplayInsecureContent:(WebView *)sender
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks())
-        printf ("didDisplayInsecureContent\n");
-}
-
-- (void)webView:(WebView *)sender didRunInsecureContent:(WebSecurityOrigin *)origin
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks())
-        printf ("didRunInsecureContent\n");
-}
-
-- (void)webView:(WebView *)sender didDetectXSS:(NSURL *)insecureURL
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks())
-        printf ("didDetectXSS\n");
-}
-
-- (void)webViewProgressFinishedNotification:(NSNotification *)notification
-{
-    if (!done && gTestRunner->dumpProgressFinishedCallback())
-        printf ("postProgressFinishedNotification\n");
-}
-
-@end
diff --git a/Tools/DumpRenderTree/mac/GCControllerMac.mm b/Tools/DumpRenderTree/mac/GCControllerMac.mm
deleted file mode 100644
index de8a61e..0000000
--- a/Tools/DumpRenderTree/mac/GCControllerMac.mm
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Copyright (C) 2006 Apple Computer, Inc.  All rights reserved.
- * Copyright (C) 2006 Alexey Proskuryakov (ap@nypop.com)
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "GCController.h"
-
-#import <WebKit/WebCoreStatistics.h>
-
-
-void GCController::collect() const
-{
-    [WebCoreStatistics garbageCollectJavaScriptObjects];
-}
-
-void GCController::collectOnAlternateThread(bool waitUntilDone) const
-{
-    [WebCoreStatistics garbageCollectJavaScriptObjectsOnAlternateThreadForDebugging:waitUntilDone];
-}
-
-size_t GCController::getJSObjectCount() const
-{
-    return [WebCoreStatistics javaScriptObjectsCount];
-}
diff --git a/Tools/DumpRenderTree/mac/HistoryDelegate.h b/Tools/DumpRenderTree/mac/HistoryDelegate.h
deleted file mode 100644
index c56d203..0000000
--- a/Tools/DumpRenderTree/mac/HistoryDelegate.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * Copyright (C) 2009 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
- 
-#import <Cocoa/Cocoa.h>
-
-@interface HistoryDelegate : NSObject 
-{
-}
-
-@end
diff --git a/Tools/DumpRenderTree/mac/HistoryDelegate.mm b/Tools/DumpRenderTree/mac/HistoryDelegate.mm
deleted file mode 100644
index 4c703f9..0000000
--- a/Tools/DumpRenderTree/mac/HistoryDelegate.mm
+++ /dev/null
@@ -1,81 +0,0 @@
-/*
- * Copyright (C) 2009 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-#import "config.h"
-#import "HistoryDelegate.h"
-
-#import "DumpRenderTree.h"
-#import "TestRunner.h"
-
-#import <WebKit/WebNavigationData.h>
-#import <WebKit/WebView.h>
-
-@interface NSURL (DRTExtras)
-- (NSString *)_drt_descriptionSuitableForTestResult;
-@end
-
-@implementation HistoryDelegate
-
-- (void)webView:(WebView *)webView didNavigateWithNavigationData:(WebNavigationData *)navigationData inFrame:(WebFrame *)webFrame
-{
-    NSURL *url = [navigationData url] ? [NSURL URLWithString:[navigationData url]] : nil;
-    bool hasClientRedirect = [[navigationData clientRedirectSource] length];
-    NSHTTPURLResponse *httpResponse = [[navigationData response] isKindOfClass:[NSHTTPURLResponse class]] ? (NSHTTPURLResponse *)[navigationData response] : nil;
-    bool wasFailure = [navigationData hasSubstituteData] || (httpResponse && [httpResponse statusCode] >= 400);
-            
-    printf("WebView navigated to url \"%s\" with title \"%s\" with HTTP equivalent method \"%s\".  The navigation was %s and was %s%s.\n", 
-        url ? [[url _drt_descriptionSuitableForTestResult] UTF8String] : "<none>", 
-        [navigationData title] ? [[navigationData title] UTF8String] : "",
-        [navigationData originalRequest] ? [[[navigationData originalRequest] HTTPMethod] UTF8String] : "",
-        wasFailure ? "a failure" : "successful", 
-        hasClientRedirect ? "a client redirect from " : "not a client redirect",
-        hasClientRedirect ? [[navigationData clientRedirectSource] UTF8String] : "");
-}
-                              
-- (void)webView:(WebView *)webView didPerformClientRedirectFromURL:(NSString *)sourceURL toURL:(NSString *)destinationURL inFrame:(WebFrame *)webFrame
-{
-    NSURL *source = [NSURL URLWithString:sourceURL];
-    NSURL *dest = [NSURL URLWithString:destinationURL];
-    printf("WebView performed a client redirect from \"%s\" to \"%s\".\n", [[source _drt_descriptionSuitableForTestResult] UTF8String], [[dest _drt_descriptionSuitableForTestResult] UTF8String]);
-}
-
-- (void)webView:(WebView *)webView didPerformServerRedirectFromURL:(NSString *)sourceURL toURL:(NSString *)destinationURL inFrame:(WebFrame *)webFrame
-{
-    NSURL *source = [NSURL URLWithString:sourceURL];
-    NSURL *dest = [NSURL URLWithString:destinationURL];
-    printf("WebView performed a server redirect from \"%s\" to \"%s\".\n", [[source _drt_descriptionSuitableForTestResult] UTF8String], [[dest _drt_descriptionSuitableForTestResult] UTF8String]);
-}
-
-- (void)webView:(WebView *)webView updateHistoryTitle:(NSString *)title forURL:(NSString *)url
-{
-    printf("WebView updated the title for history URL \"%s\" to \"%s\".\n", [[[NSURL URLWithString:url]_drt_descriptionSuitableForTestResult] UTF8String], [title UTF8String]);
-}
-
-- (void)populateVisitedLinksForWebView:(WebView *)webView
-{
-    if (gTestRunner->dumpVisitedLinksCallback())
-        printf("Asked to populate visited links for WebView \"%s\"\n", [[[NSURL URLWithString:[webView mainFrameURL]] _drt_descriptionSuitableForTestResult] UTF8String]);
-}
-
-@end
diff --git a/Tools/DumpRenderTree/mac/InternalHeaders/WebKit/WebTypesInternal.h b/Tools/DumpRenderTree/mac/InternalHeaders/WebKit/WebTypesInternal.h
deleted file mode 100644
index ae1371f..0000000
--- a/Tools/DumpRenderTree/mac/InternalHeaders/WebKit/WebTypesInternal.h
+++ /dev/null
@@ -1 +0,0 @@
-#include "../../../../Source/WebKit/mac/Misc/WebTypesInternal.h"
diff --git a/Tools/DumpRenderTree/mac/LayoutTestHelper.m b/Tools/DumpRenderTree/mac/LayoutTestHelper.m
deleted file mode 100644
index ee7bd71..0000000
--- a/Tools/DumpRenderTree/mac/LayoutTestHelper.m
+++ /dev/null
@@ -1,211 +0,0 @@
-/*
- * Copyright (C) 2010 Google Inc. All rights reserved.
- * Copyright (C) 2012 Apple Inc.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *     * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import <AppKit/AppKit.h>
-#import <ApplicationServices/ApplicationServices.h>
-#import <signal.h>
-#import <stdio.h>
-#import <stdlib.h>
-
-// This is a simple helper app that changes the color profile of the main display
-// to GenericRGB and back when done. This program is managed by the layout
-// test script, so it can do the job for multiple DumpRenderTree while they are
-// running layout tests.
-
-#if MAC_OS_X_VERSION_MIN_REQUIRED >= 1070
-
-static CFURLRef sUserColorProfileURL;
-
-static void installLayoutTestColorProfile()
-{
-    // To make sure we get consistent colors (not dependent on the chosen color
-    // space of the main display), we force the generic RGB color profile.
-    // This causes a change the user can see.
-    
-    CFUUIDRef mainDisplayID = CGDisplayCreateUUIDFromDisplayID(CGMainDisplayID());
-    
-    if (!sUserColorProfileURL) {
-        CFDictionaryRef deviceInfo = ColorSyncDeviceCopyDeviceInfo(kColorSyncDisplayDeviceClass, mainDisplayID);
-
-        if (!deviceInfo) {
-            NSLog(@"No display attached to system; not setting main display's color profile.");
-            CFRelease(mainDisplayID);
-            return;
-        }
-
-        CFDictionaryRef profileInfo = (CFDictionaryRef)CFDictionaryGetValue(deviceInfo, kColorSyncCustomProfiles);
-        if (profileInfo) {
-            sUserColorProfileURL = (CFURLRef)CFDictionaryGetValue(profileInfo, CFSTR("1"));
-            CFRetain(sUserColorProfileURL);
-        } else {
-            profileInfo = (CFDictionaryRef)CFDictionaryGetValue(deviceInfo, kColorSyncFactoryProfiles);
-            CFDictionaryRef factoryProfile = (CFDictionaryRef)CFDictionaryGetValue(profileInfo, CFSTR("1"));
-            sUserColorProfileURL = (CFURLRef)CFDictionaryGetValue(factoryProfile, kColorSyncDeviceProfileURL);
-            CFRetain(sUserColorProfileURL);
-        }
-        
-        CFRelease(deviceInfo);
-    }
-
-    ColorSyncProfileRef genericRGBProfile = ColorSyncProfileCreateWithName(kColorSyncGenericRGBProfile);
-    CFErrorRef error;
-    CFURLRef profileURL = ColorSyncProfileGetURL(genericRGBProfile, &error);
-    if (!profileURL) {
-        NSLog(@"Failed to get URL of Generic RGB color profile! Many pixel tests may fail as a result. Error: %@", error);
-        
-        if (sUserColorProfileURL) {
-            CFRelease(sUserColorProfileURL);
-            sUserColorProfileURL = 0;
-        }
-        
-        CFRelease(genericRGBProfile);
-        CFRelease(mainDisplayID);
-        return;
-    }
-        
-    CFMutableDictionaryRef profileInfo = CFDictionaryCreateMutable(kCFAllocatorDefault, 0, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks);
-    CFDictionarySetValue(profileInfo, kColorSyncDeviceDefaultProfileID, profileURL);
-    
-    if (!ColorSyncDeviceSetCustomProfiles(kColorSyncDisplayDeviceClass, mainDisplayID, profileInfo)) {
-        NSLog(@"Failed to set color profile for main display! Many pixel tests may fail as a result.");
-        
-        if (sUserColorProfileURL) {
-            CFRelease(sUserColorProfileURL);
-            sUserColorProfileURL = 0;
-        }
-    }
-    
-    CFRelease(profileInfo);
-    CFRelease(genericRGBProfile);
-    CFRelease(mainDisplayID);
-}
-
-static void restoreUserColorProfile(void)
-{
-    // This is used as a signal handler, and thus the calls into ColorSync are unsafe.
-    // But we might as well try to restore the user's color profile, we're going down anyway...
-    
-    if (!sUserColorProfileURL)
-        return;
-    
-    CFUUIDRef mainDisplayID = CGDisplayCreateUUIDFromDisplayID(CGMainDisplayID());
-    CFMutableDictionaryRef profileInfo = CFDictionaryCreateMutable(kCFAllocatorDefault, 0, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks);
-    CFDictionarySetValue(profileInfo, kColorSyncDeviceDefaultProfileID, sUserColorProfileURL);
-    ColorSyncDeviceSetCustomProfiles(kColorSyncDisplayDeviceClass, mainDisplayID, profileInfo);
-    CFRelease(mainDisplayID);
-    CFRelease(profileInfo);
-}
-
-#else // For Snow Leopard and before, use older CM* API.
-
-const char colorProfilePath[] = "/System/Library/ColorSync/Profiles/Generic RGB Profile.icc";
-
-CMProfileLocation initialColorProfileLocation; // The locType field is initialized to 0 which is the same as cmNoProfileBase.
-
-static void installLayoutTestColorProfile()
-{
-    // To make sure we get consistent colors (not dependent on the chosen color
-    // space of the main display), we force the generic RGB color profile.
-    // This causes a change the user can see.
-    
-    const CMDeviceScope scope = { kCFPreferencesCurrentUser, kCFPreferencesCurrentHost };
-
-    CMProfileRef profile = 0;
-    int error = CMGetProfileByAVID((CMDisplayIDType)kCGDirectMainDisplay, &profile);
-    if (!error) {
-        UInt32 size = sizeof(initialColorProfileLocation);
-        error = NCMGetProfileLocation(profile, &initialColorProfileLocation, &size);
-        CMCloseProfile(profile);
-    }
-    if (error) {
-        NSLog(@"Failed to get the current color profile. Many pixel tests may fail as a result. Error: %d", (int)error);
-        initialColorProfileLocation.locType = cmNoProfileBase;
-        return;
-    }
-
-    CMProfileLocation location;
-    location.locType = cmPathBasedProfile;
-    strncpy(location.u.pathLoc.path, colorProfilePath, sizeof(location.u.pathLoc.path));
-    error = CMSetDeviceProfile(cmDisplayDeviceClass, (CMDeviceID)kCGDirectMainDisplay, &scope, cmDefaultProfileID, &location);
-    if (error) {
-        NSLog(@"Failed install the GenericRGB color profile. Many pixel tests may fail as a result. Error: %d", (int)error);
-        initialColorProfileLocation.locType = cmNoProfileBase;
-    }
-}
-
-static void restoreUserColorProfile(void)
-{
-    // This is used as a signal handler, and thus the calls into ColorSync are unsafe.
-    // But we might as well try to restore the user's color profile, we're going down anyway...
-    if (initialColorProfileLocation.locType != cmNoProfileBase) {
-        const CMDeviceScope scope = { kCFPreferencesCurrentUser, kCFPreferencesCurrentHost };
-        int error = CMSetDeviceProfile(cmDisplayDeviceClass, (CMDeviceID)kCGDirectMainDisplay, &scope, cmDefaultProfileID, &initialColorProfileLocation);
-        if (error) {
-            NSLog(@"Failed to restore color profile, use System Preferences -> Displays -> Color to reset. Error: %d", (int)error);
-        }
-        initialColorProfileLocation.locType = cmNoProfileBase;
-    }
-}
-
-#endif
-
-static void simpleSignalHandler(int sig)
-{
-    // Try to restore the color profile and try to go down cleanly
-    restoreUserColorProfile();
-    exit(128 + sig);
-}
-
-int main(int argc, char* argv[])
-{
-    NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
-
-    // Hooks the ways we might get told to clean up...
-    signal(SIGINT, simpleSignalHandler);
-    signal(SIGHUP, simpleSignalHandler);
-    signal(SIGTERM, simpleSignalHandler);
-
-    // Save off the current profile, and then install the layout test profile.
-    installLayoutTestColorProfile();
-
-    // Let the script know we're ready
-    printf("ready\n");
-    fflush(stdout);
-
-    // Wait for any key (or signal)
-    getchar();
-
-    // Restore the profile
-    restoreUserColorProfile();
-
-    [pool release];
-    return 0;
-}
diff --git a/Tools/DumpRenderTree/mac/MockGeolocationProvider.h b/Tools/DumpRenderTree/mac/MockGeolocationProvider.h
deleted file mode 100644
index ba3a842..0000000
--- a/Tools/DumpRenderTree/mac/MockGeolocationProvider.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Copyright (C) 2010, 2012 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#ifndef MockGeolocationProvider_h
-#define MockGeolocationProvider_h
-
-#import <WebKit/WebViewPrivate.h>
-#import <wtf/HashSet.h>
-#import <wtf/RetainPtr.h>
-
-@interface MockGeolocationProvider : NSObject<WebGeolocationProvider> {
-    RetainPtr<WebGeolocationPosition> _lastPosition;
-    BOOL _hasError;
-    RetainPtr<NSString> _errorMessage;
-    NSTimer *_timer;
-    HashSet<WebView *> _registeredViews;
-}
-
-+ (MockGeolocationProvider *)shared;
-
-- (void)setPosition:(WebGeolocationPosition *)position;
-- (void)setPositionUnavailableErrorWithMessage:(NSString *)errorMessage;
-
-- (void)stopTimer;
-
-@end
-#endif
diff --git a/Tools/DumpRenderTree/mac/MockGeolocationProvider.mm b/Tools/DumpRenderTree/mac/MockGeolocationProvider.mm
deleted file mode 100644
index 4acaac0..0000000
--- a/Tools/DumpRenderTree/mac/MockGeolocationProvider.mm
+++ /dev/null
@@ -1,111 +0,0 @@
-/*
- * Copyright (C) 2010, 2012 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#import "config.h"
-#import "MockGeolocationProvider.h"
-
-@implementation MockGeolocationProvider
-
-+ (MockGeolocationProvider *)shared
-{
-    static MockGeolocationProvider *provider = [[MockGeolocationProvider alloc] init];
-    return provider;
-}
-
-- (void)dealloc
-{
-    ASSERT(_registeredViews.isEmpty());
-
-    _lastPosition.clear();
-    _errorMessage.clear();
-    [super dealloc];
-}
-
-- (void)resetError
-{
-    _hasError = NO;
-    _errorMessage.clear();
-}
-
-- (void)setPosition:(WebGeolocationPosition *)position
-{
-    _lastPosition = position;
-    
-    [self resetError];
-
-    if (!_timer)
-        _timer = [NSTimer scheduledTimerWithTimeInterval:0 target:self selector:@selector(timerFired) userInfo:0 repeats:NO];
-}
-
-- (void)setPositionUnavailableErrorWithMessage:(NSString *)errorMessage
-{
-    _hasError = YES;
-    _errorMessage = errorMessage;
-
-    _lastPosition.clear();
-
-    if (!_timer)
-        _timer = [NSTimer scheduledTimerWithTimeInterval:0 target:self selector:@selector(timerFired) userInfo:0 repeats:NO];
-}
-
-- (void)registerWebView:(WebView *)webView
-{
-    _registeredViews.add(webView);
-
-    if (!_timer)
-        _timer = [NSTimer scheduledTimerWithTimeInterval:0 target:self selector:@selector(timerFired) userInfo:0 repeats:NO];
-}
-
-- (void)unregisterWebView:(WebView *)webView
-{
-    _registeredViews.remove(webView);
-}
-
-- (WebGeolocationPosition *)lastPosition
-{
-    return _lastPosition.get();
-}
-
-- (void)stopTimer
-{
-    [_timer invalidate];
-    _timer = 0;
-}
-
-- (void)timerFired
-{
-    _timer = 0;
-
-    // Expect that views won't be (un)registered while iterating.
-    HashSet<WebView*> views = _registeredViews;
-    for (HashSet<WebView*>::iterator iter = views.begin(); iter != views.end(); ++iter) {
-        if (_hasError)
-            [*iter _geolocationDidFailWithMessage:_errorMessage.get()];
-        else
-            [*iter _geolocationDidChangePosition:_lastPosition.get()];
-    }
-}
-
-@end
diff --git a/Tools/DumpRenderTree/mac/MockWebNotificationProvider.h b/Tools/DumpRenderTree/mac/MockWebNotificationProvider.h
deleted file mode 100644
index 293ea49..0000000
--- a/Tools/DumpRenderTree/mac/MockWebNotificationProvider.h
+++ /dev/null
@@ -1,58 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef MockWebNotificationProvider_h
-#define MockWebNotificationProvider_h
-
-#import <WebKit/WebNotification.h>
-#import <WebKit/WebViewPrivate.h>
-#import <wtf/HashMap.h>
-#import <wtf/HashSet.h>
-#import <wtf/RetainPtr.h>
-
-typedef HashMap<uint64_t, RetainPtr<WebNotification> > NotificationIDMap;
-typedef HashMap<uint64_t, WebView *> NotificationViewMap;
-
-@interface MockWebNotificationProvider : NSObject <WebNotificationProvider> {
-    HashSet<WebView *> _registeredWebViews;
-    NotificationIDMap _notifications;
-    NotificationViewMap _notificationViewMap;
-    RetainPtr<NSMutableDictionary> _permissions;
-}
-
-+ (MockWebNotificationProvider *)shared;
-
-- (void)simulateWebNotificationClick:(uint64_t)notificationID;
-- (void)setWebNotificationOrigin:(NSString *)origin permission:(BOOL)allowed;
-- (WebNotificationPermission)policyForOrigin:(WebSecurityOrigin *)origin;
-- (void)removeAllWebNotificationPermissions;
-
-- (void)reset;
-@end
-
-#endif // MockWebNotificationProvider_h
diff --git a/Tools/DumpRenderTree/mac/MockWebNotificationProvider.mm b/Tools/DumpRenderTree/mac/MockWebNotificationProvider.mm
deleted file mode 100644
index d80f6ba..0000000
--- a/Tools/DumpRenderTree/mac/MockWebNotificationProvider.mm
+++ /dev/null
@@ -1,151 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "MockWebNotificationProvider.h"
-
-#import <WebKit/WebSecurityOriginPrivate.h>
-
-@implementation MockWebNotificationProvider
-
-+ (MockWebNotificationProvider *)shared
-{
-    static MockWebNotificationProvider *provider = [[MockWebNotificationProvider alloc] init];
-    return provider;
-}
-
-- (id)init
-{
-    if (!(self = [super init]))
-        return nil;
-    _permissions.adoptNS([[NSMutableDictionary alloc] init]);
-    return self;
-}
-
-- (void)registerWebView:(WebView *)webView
-{
-    ASSERT(!_registeredWebViews.contains(webView));
-    _registeredWebViews.add(webView);
-}
-
-- (void)unregisterWebView:(WebView *)webView
-{
-    ASSERT(_registeredWebViews.contains(webView));
-    _registeredWebViews.remove(webView);
-}
-
-- (void)showNotification:(WebNotification *)notification fromWebView:(WebView *)webView
-{
-    ASSERT(_registeredWebViews.contains(webView));
-
-    uint64_t notificationID = [notification notificationID];
-    _notifications.add(notificationID, notification);
-    _notificationViewMap.add(notificationID, webView);
-
-    [webView _notificationDidShow:notificationID];
-}
-
-- (void)cancelNotification:(WebNotification *)notification
-{
-    uint64_t notificationID = [notification notificationID];
-    ASSERT(_notifications.contains(notificationID));
-
-    [_notificationViewMap.get(notificationID) _notificationsDidClose:[NSArray arrayWithObject:[NSNumber numberWithUnsignedLongLong:notificationID]]];
-}
-
-- (void)notificationDestroyed:(WebNotification *)notification
-{
-    _notifications.remove([notification notificationID]);
-    _notificationViewMap.remove([notification notificationID]);
-}
-
-- (void)clearNotifications:(NSArray *)notificationIDs
-{
-    for (NSNumber *notificationID in notificationIDs) {
-        uint64_t id = [notificationID unsignedLongLongValue];
-        RetainPtr<WebNotification> notification = _notifications.take(id);
-        _notificationViewMap.remove(id);
-    }
-}
-
-- (void)webView:(WebView *)webView didShowNotification:(uint64_t)notificationID
-{
-    [_notifications.get(notificationID).get() dispatchShowEvent];
-}
-
-- (void)webView:(WebView *)webView didClickNotification:(uint64_t)notificationID
-{
-    [_notifications.get(notificationID).get() dispatchClickEvent];
-}
-
-- (void)webView:(WebView *)webView didCloseNotifications:(NSArray *)notificationIDs
-{
-    for (NSNumber *notificationID in notificationIDs) {
-        uint64_t id = [notificationID unsignedLongLongValue];
-        NotificationIDMap::iterator it = _notifications.find(id);
-        ASSERT(it != _notifications.end());
-        [it->value.get() dispatchCloseEvent];
-        _notifications.remove(it);
-        _notificationViewMap.remove(id);
-    }
-}
-
-- (void)simulateWebNotificationClick:(uint64_t)notificationID
-{
-    ASSERT(_notifications.contains(notificationID));
-    [_notificationViewMap.get(notificationID) _notificationDidClick:notificationID];
-}
-
-- (WebNotificationPermission)policyForOrigin:(WebSecurityOrigin *)origin
-{
-    NSNumber *permission = [_permissions.get() objectForKey:[origin stringValue]];
-    if (!permission)
-        return WebNotificationPermissionNotAllowed;
-    if ([permission boolValue])
-        return WebNotificationPermissionAllowed;
-    return WebNotificationPermissionDenied;
-}
-
-- (void)setWebNotificationOrigin:(NSString *)origin permission:(BOOL)allowed
-{
-    [_permissions.get() setObject:[NSNumber numberWithBool:allowed] forKey:origin];
-}
-
-- (void)removeAllWebNotificationPermissions
-{
-    [_permissions.get() removeAllObjects];
-}
-
-- (void)reset
-{
-    _notifications.clear();
-    _notificationViewMap.clear();
-    [self removeAllWebNotificationPermissions];
-}
-
-@end
diff --git a/Tools/DumpRenderTree/mac/NavigationController.h b/Tools/DumpRenderTree/mac/NavigationController.h
deleted file mode 100644
index 8ee3432..0000000
--- a/Tools/DumpRenderTree/mac/NavigationController.h
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * Copyright (C) 2006 Apple Computer, Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-    * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import <Cocoa/Cocoa.h>
-#import <WebKit/WebView.h>
-
-@interface NavigationController : NSObject
-{
-    enum { None, Load, GoBack, ExecuteScript } pendingAction;
-    NSString *pendingScript;
-    NSURLRequest *pendingRequest;
-}
-- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame;
-@end
diff --git a/Tools/DumpRenderTree/mac/NavigationController.m b/Tools/DumpRenderTree/mac/NavigationController.m
deleted file mode 100644
index 8c01d50..0000000
--- a/Tools/DumpRenderTree/mac/NavigationController.m
+++ /dev/null
@@ -1,112 +0,0 @@
-/*
- * Copyright (C) 2006 Apple Computer, Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-    * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "NavigationController.h"
-
-#import <WebKit/WebFrame.h>
-#import <WebKit/WebScriptObject.h>
-
-
-@implementation NavigationController
-+ (BOOL)isSelectorExcludedFromWebScript:(SEL)selector
-{
-    if (selector == @selector(evaluateWebScript:afterBackForwardNavigation:))
-        return NO;
-    return YES;
-}
-
-+ (NSString *)webScriptNameForSelector:(SEL)selector
-{
-    if (selector == @selector(evaluateWebScript:afterBackForwardNavigation:))
-        return @"evalAfterBackForwardNavigation";
-    return nil;
-}
-
-- (void)setPendingScript:(NSString *)script
-{
-    if (script != pendingScript) {
-        [pendingScript release];
-        pendingScript = [script copy];
-    }
-}
-
-- (void)setPendingRequest:(NSURLRequest *)request
-{
-    if (request != pendingRequest) {
-        [pendingRequest release];
-        pendingRequest = [request copy];
-    }
-}
-
-- (void)evaluateWebScript:(NSString *)script afterBackForwardNavigation:(NSString *)navigation
-{
-    // Allow both arguments to be optional
-    if (![script isKindOfClass:[NSString class]])
-        script = @"";
-    if (![navigation isKindOfClass:[NSString class]])
-        navigation = @"about:blank";
-    
-    [self setPendingScript:script];
-    [self setPendingRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:navigation]]];
-    pendingAction = Load;
-}
-
-- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
-{
-    if (frame == [[frame webView] mainFrame]) {
-        switch (pendingAction) {
-            case Load:
-                pendingAction = GoBack;
-                [frame loadRequest:pendingRequest];
-                [self setPendingRequest:nil];
-                break;
-            case GoBack:
-                pendingAction = ExecuteScript;
-                [[frame webView] goBack];
-                break;
-            case ExecuteScript:
-                pendingAction = None;
-                [[[frame webView] windowScriptObject] evaluateWebScript:pendingScript];
-                [self setPendingScript:nil];
-                break;
-            case None:
-            default:
-                break;
-        }
-    }
-}
-
-- (void)dealloc
-{
-    [self setPendingScript:nil];
-    [self setPendingRequest:nil];
-    [super dealloc];
-}
-@end
-
diff --git a/Tools/DumpRenderTree/mac/ObjCController.h b/Tools/DumpRenderTree/mac/ObjCController.h
deleted file mode 100644
index d1d001c..0000000
--- a/Tools/DumpRenderTree/mac/ObjCController.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Copyright (C) 2007 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import <Foundation/Foundation.h>
-
-@class WebScriptObject;
-
-// This controller should be used to test Objective-C language features and the WebScriptObject.
-@interface ObjCController : NSObject
-{
-    WebScriptObject *storedWebScriptObject;
-}
-@end
diff --git a/Tools/DumpRenderTree/mac/ObjCController.m b/Tools/DumpRenderTree/mac/ObjCController.m
deleted file mode 100644
index af237bf..0000000
--- a/Tools/DumpRenderTree/mac/ObjCController.m
+++ /dev/null
@@ -1,296 +0,0 @@
-/*
- * Copyright (C) 2007 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "ObjCController.h"
-
-// Avoid compile error in DOMPrivate.h.
-@class NSFont;
-
-#import <JavaScriptCore/JavaScriptCore.h>
-#import <WebKit/DOMAbstractView.h>
-#import <WebKit/DOMPrivate.h>
-#import <WebKit/WebScriptObject.h>
-#import <WebKit/WebView.h>
-#import <pthread.h>
-#import <wtf/Assertions.h>
-
-// Remove this once hasWebScriptKey has been made public.
-@interface WebScriptObject (StagedForPublic)
-- (BOOL)hasWebScriptKey:(NSString *)name;
-@end
-
-static void* runJavaScriptThread(void* arg)
-{
-    JSGlobalContextRef ctx = JSGlobalContextCreate(0);
-    JSStringRef scriptRef = JSStringCreateWithUTF8CString("'Hello World!'");
-
-    JSValueRef exception = 0;
-    JSEvaluateScript(ctx, scriptRef, 0, 0, 1, &exception);
-    ASSERT(!exception);
-
-    JSGlobalContextRelease(ctx);
-    JSStringRelease(scriptRef);
-    
-    return 0;
-}
-
-@implementation ObjCController
-
-+ (BOOL)isSelectorExcludedFromWebScript:(SEL)aSelector
-{
-    if (0
-            || aSelector == @selector(classNameOf:)
-            || aSelector == @selector(isObject:instanceOf:)
-            || aSelector == @selector(objectOfClass:)
-            || aSelector == @selector(arrayOfString)
-            || aSelector == @selector(identityIsEqual::)
-            || aSelector == @selector(longLongRoundTrip:)
-            || aSelector == @selector(unsignedLongLongRoundTrip:)
-            || aSelector == @selector(testWrapperRoundTripping:)
-            || aSelector == @selector(accessStoredWebScriptObject)
-            || aSelector == @selector(storeWebScriptObject:)
-            || aSelector == @selector(testValueForKey)
-            || aSelector == @selector(testHasWebScriptKey:)
-            || aSelector == @selector(testArray)
-            || aSelector == @selector(setSelectElement:selectedIndex:allowingMultiple:)
-        )
-        return NO;
-    return YES;
-}
-
-+ (NSString *)webScriptNameForSelector:(SEL)aSelector
-{
-    if (aSelector == @selector(classNameOf:))
-        return @"className";
-    if (aSelector == @selector(isObject:instanceOf:))
-        return @"isObjectInstanceOf";
-    if (aSelector == @selector(objectOfClass:))
-        return @"objectOfClass";
-    if (aSelector == @selector(arrayOfString))
-        return @"arrayOfString";
-    if (aSelector == @selector(identityIsEqual::))
-        return @"identityIsEqual";
-    if (aSelector == @selector(longLongRoundTrip:))
-        return @"longLongRoundTrip";
-    if (aSelector == @selector(unsignedLongLongRoundTrip:))
-        return @"unsignedLongLongRoundTrip";
-    if (aSelector == @selector(testWrapperRoundTripping:))
-        return @"testWrapperRoundTripping";
-    if (aSelector == @selector(storeWebScriptObject:))
-        return @"storeWebScriptObject";
-    if (aSelector == @selector(testValueForKey))
-        return @"testValueForKey";
-    if (aSelector == @selector(testHasWebScriptKey:))
-        return @"testHasWebScriptKey";
-    if (aSelector == @selector(testArray))
-        return @"testArray";
-    if (aSelector == @selector(setSelectElement:selectedIndex:allowingMultiple:))
-        return @"setSelectElementSelectedIndexAllowingMultiple";
-
-    return nil;
-}
-
-- (BOOL)isObject:(id)object instanceOf:(NSString *)aClass
-{
-    if (!object)
-        return [aClass isEqualToString:@"nil"];
-
-    return [object isKindOfClass:NSClassFromString(aClass)];
-}
-            
-- (NSString *)classNameOf:(id)object
-{
-    if (!object)
-        return @"nil";
-    return NSStringFromClass([object class]);
-}
-
-- (id)objectOfClass:(NSString *)aClass
-{
-    if ([aClass isEqualToString:@"NSNull"])
-        return [NSNull null];
-    if ([aClass isEqualToString:@"WebUndefined"])
-        return [WebUndefined undefined];
-    if ([aClass isEqualToString:@"NSCFBoolean"])
-        return [NSNumber numberWithBool:true];
-    if ([aClass isEqualToString:@"NSCFNumber"])
-        return [NSNumber numberWithInt:1];
-    if ([aClass isEqualToString:@"NSCFString"])
-        return @"";
-    if ([aClass isEqualToString:@"WebScriptObject"])
-        return self;
-    if ([aClass isEqualToString:@"NSArray"])
-        return [NSArray array];
-
-    return nil;
-}
-
-- (NSArray *)arrayOfString
-{
-    NSString *strings[3];
-    strings[0] = @"one";
-    strings[1] = @"two";
-    strings[2] = @"three";
-    NSArray *array = [NSArray arrayWithObjects:strings count:3];
-    return array;
-}
-
-- (BOOL)identityIsEqual:(WebScriptObject *)a :(WebScriptObject *)b
-{
-    if ([a isKindOfClass:[NSString class]] && [b isKindOfClass:[NSString class]])
-        return [(NSString *)a isEqualToString:(NSString *)b];
-    return a == b;
-}
-
-- (long long)longLongRoundTrip:(long long)num
-{
-    return num;
-}
-
-- (unsigned long long)unsignedLongLongRoundTrip:(unsigned long long)num
-{
-    return num;
-}
-
-- (void)testValueForKey
-{
-    ASSERT(storedWebScriptObject);
-    
-    @try {
-        [storedWebScriptObject valueForKey:@"ThisKeyDoesNotExist"];
-    } @catch (NSException *e) {
-    }
-
-    pthread_t pthread;
-    pthread_create(&pthread, 0, &runJavaScriptThread, 0);
-    pthread_join(pthread, 0);
-}
-
-- (BOOL)testHasWebScriptKey:(NSString *)key
-{
-    ASSERT(storedWebScriptObject);
-    return [storedWebScriptObject hasWebScriptKey:key];
-}
-
-- (BOOL)testWrapperRoundTripping:(WebScriptObject *)webScriptObject
-{
-    JSObjectRef jsObject = [webScriptObject JSObject];
-
-    if (!jsObject)
-        return false;
-
-    if (!webScriptObject)
-        return false;
-
-    if ([[webScriptObject evaluateWebScript:@"({ })"] class] != [webScriptObject class])
-        return false;
-
-    [webScriptObject setValue:[NSNumber numberWithInt:666] forKey:@"key"];
-    if (![[webScriptObject valueForKey:@"key"] isKindOfClass:[NSNumber class]] ||
-        ![[webScriptObject valueForKey:@"key"] isEqualToNumber:[NSNumber numberWithInt:666]])
-        return false;
-
-    [webScriptObject removeWebScriptKey:@"key"];
-    @try {
-        if ([webScriptObject valueForKey:@"key"])
-            return false;
-    } @catch(NSException *exception) {
-        // NSObject throws an exception if the key doesn't exist.
-    }
-
-    [webScriptObject setWebScriptValueAtIndex:0 value:webScriptObject];
-    if ([webScriptObject webScriptValueAtIndex:0] != webScriptObject)
-        return false;
-
-    if ([[webScriptObject stringRepresentation] isEqualToString:@"[Object object]"])
-        return false;
-
-    if ([webScriptObject callWebScriptMethod:@"returnThis" withArguments:nil] != webScriptObject)
-        return false;
-
-    return true;
-}
-
-- (void)accessStoredWebScriptObject
-{
-#if !ASSERT_DISABLED
-    BOOL isWindowObject = [storedWebScriptObject isKindOfClass:[DOMAbstractView class]];
-    JSObjectRef jsObject = [storedWebScriptObject JSObject];
-    ASSERT((jsObject && isWindowObject) || (!jsObject && !isWindowObject));
-#endif
-    [storedWebScriptObject callWebScriptMethod:@"" withArguments:nil];
-    [storedWebScriptObject evaluateWebScript:@""];
-    [storedWebScriptObject setValue:[WebUndefined undefined] forKey:@"key"];
-    [storedWebScriptObject valueForKey:@"key"];
-    [storedWebScriptObject removeWebScriptKey:@"key"];
-    [storedWebScriptObject stringRepresentation];
-    [storedWebScriptObject webScriptValueAtIndex:0];
-    [storedWebScriptObject setWebScriptValueAtIndex:0 value:[WebUndefined undefined]];
-    [storedWebScriptObject setException:@"exception"];
-}
-
-- (void)storeWebScriptObject:(WebScriptObject *)webScriptObject
-{
-    if (webScriptObject == storedWebScriptObject)
-        return;
-
-    [storedWebScriptObject release];
-    storedWebScriptObject = [webScriptObject retain];
-}
-
-- (NSArray *)testArray
-{
-    return [NSArray array];
-}
-
-- (void)dealloc
-{
-    [storedWebScriptObject release];
-    [super dealloc];
-}
-
-- (id)invokeUndefinedMethodFromWebScript:(NSString *)name withArguments:(NSArray *)args
-{
-    // FIXME: Perhaps we should log that this has been called.
-    return nil;
-}
-
-// MARK: -
-// MARK: Testing Objective-C DOM HTML Bindings
-
-- (void)setSelectElement:(WebScriptObject *)element selectedIndex:(int)index allowingMultiple:(BOOL)allowingMultiple
-{
-    if (![element isKindOfClass:[DOMHTMLSelectElement class]])
-        return;
-
-    DOMHTMLSelectElement *select = (DOMHTMLSelectElement*)element;
-    [select _activateItemAtIndex:index allowMultipleSelection:allowingMultiple];
-}
-
-@end
diff --git a/Tools/DumpRenderTree/mac/ObjCPlugin.h b/Tools/DumpRenderTree/mac/ObjCPlugin.h
deleted file mode 100644
index a6d3e50..0000000
--- a/Tools/DumpRenderTree/mac/ObjCPlugin.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * Copyright (C) 2005 Apple Computer, Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-*/
-
-#import <Cocoa/Cocoa.h>
-
-
-@interface ObjCPlugin : NSObject
-{
-    BOOL throwOnDealloc;
-}
-
-- (void)removeBridgeRestrictions:(id)container;
-
-@end
diff --git a/Tools/DumpRenderTree/mac/ObjCPlugin.m b/Tools/DumpRenderTree/mac/ObjCPlugin.m
deleted file mode 100644
index ffd9968..0000000
--- a/Tools/DumpRenderTree/mac/ObjCPlugin.m
+++ /dev/null
@@ -1,232 +0,0 @@
-/*
- * Copyright (C) 2006 Apple Computer, Inc.  All rights reserved.
- * Copyright (C) 2006 James G. Speth (speth@end.com)
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-*/
-
-#import "config.h"
-#import "ObjCPlugin.h"
-
-#import <WebKit/WebKit.h>
-#import <objc/runtime.h>
-
-// === NSObject category to expose almost everything to JavaScript ===
-
-// Warning: this class introduces huge security weaknesses, and should only be used
-// for testing inside of DumpRenderTree, and only with trusted code.  By default, it has
-// the same restrictive behavior as the standard WebKit setup.  However, scripts can use the
-// plugin's removeBridgeRestrictions: method to open up almost total access to the Cocoa
-// frameworks.
-
-static BOOL _allowsScriptsFullAccess = NO;
-
-@interface NSObject (ObjCScriptAccess)
-
-+ (void)setAllowsScriptsFullAccess:(BOOL)value;
-+ (BOOL)allowsScriptsFullAccess;
-
-@end
-
-@implementation NSObject (ObjCScriptAccess)
-
-+ (void)setAllowsScriptsFullAccess:(BOOL)value
-{
-    _allowsScriptsFullAccess = value;
-}
-
-+ (BOOL)allowsScriptsFullAccess
-{
-    return _allowsScriptsFullAccess;
-}
-
-+ (BOOL)isSelectorExcludedFromWebScript:(SEL)selector
-{
-    return !_allowsScriptsFullAccess;
-}
-
-+ (NSString *)webScriptNameForSelector:(SEL)selector
-{
-    return nil;
-}
-
-@end
-
-@interface JSObjC : NSObject {
-}
-
-// expose some useful objc functions to the scripting environment
-- (id)lookUpClass:(NSString *)name;
-- (void)log:(NSString *)message;
-- (id)retainObject:(id)obj;
-- (id)classOfObject:(id)obj;
-- (NSString *)classNameOfObject:(id)obj;
-
-@end
-
-@implementation JSObjC
-
-+ (BOOL)isSelectorExcludedFromWebScript:(SEL)selector
-{
-    return NO;
-}
-
-+ (NSString *)webScriptNameForSelector:(SEL)selector
-{
-    return nil;
-}
-
-- (id)invokeDefaultMethodWithArguments:(NSArray *)args
-{
-    // this is a useful shortcut for accessing objective-c classes from the scripting
-    // environment, e.g. 'var myObject = objc("NSObject").alloc().init();'
-    if ([args count] == 1)
-        return [self lookUpClass:[args objectAtIndex:0]];
-    return nil;
-}
-
-- (id)lookUpClass:(NSString *)name
-{
-    return NSClassFromString(name);
-}
-
-- (void)log:(NSString *)message
-{
-    NSLog(@"%@", message);
-}
-
-- (id)retainObject:(id)obj
-{
-    return [obj retain];
-}
-
-- (id)classOfObject:(id)obj
-{
-    return (id)[obj class];
-}
-
-- (NSString *)classNameOfObject:(id)obj
-{
-    return [obj className];
-}
-
-@end
-
-@implementation ObjCPlugin
-
-+ (BOOL)isSelectorExcludedFromWebScript:(SEL)aSelector
-{
-    if (aSelector == @selector(removeBridgeRestrictions:))
-        return NO;
-
-    if (aSelector == @selector(echo:))
-        return NO;
-
-    if (aSelector == @selector(throwIfArgumentIsNotHello:))
-        return NO;
-
-    if (aSelector == @selector(methodMappedToLongName))
-        return NO;
-
-    NSString *selectorName = NSStringFromSelector(aSelector);
-    if ([selectorName hasPrefix:@"testConversion"])
-        return NO;
-
-    return YES;
-}
-
-+ (NSString *)webScriptNameForSelector:(SEL)aSelector
-{
-    if (aSelector == @selector(echo:))
-        return @"echo";
-
-    if (aSelector == @selector(throwIfArgumentIsNotHello:))
-        return @"throwIfArgumentIsNotHello";
-
-    if (aSelector == @selector(methodMappedToLongName))
-        return [@"" stringByPaddingToLength:4096 withString: @"long" startingAtIndex:0];
-
-    return nil;
-}
-
-+ (NSString *)webScriptNameForKey:(const char *)key 
-{
-    if (strcmp(key, "throwOnDealloc") == 0)
-      return @"throwOnDealloc";
-    
-    return nil;
-}
-
-+ (BOOL)isKeyExcludedFromWebScript:(const char *)key 
-{
-    if (strcmp(key, "throwOnDealloc") == 0)
-      return NO;
-    
-    return YES;
-}
-
-- (void)removeBridgeRestrictions:(id)container
-{
-    // let scripts invoke any selector
-    [NSObject setAllowsScriptsFullAccess:YES];
-    
-    // store a JSObjC instance into the provided container
-    JSObjC *objc = [[JSObjC alloc] init];
-    [container setValue:objc forKey:@"objc"];
-    [objc release];
-}
-
-- (id)echo:(id)obj
-{
-    return obj;
-}
-
-- (void)throwIfArgumentIsNotHello:(NSString *)str 
-{
-    if (![str isEqualToString:@"Hello"]) 
-        [WebScriptObject throwException:[NSString stringWithFormat:@"%@ != Hello", str]];
-}
-
-- (NSString *)methodMappedToLongName
-{
-    return @"methodMappedToLongName";
-}
-
-- (NSString *)testConversionColon:(int)useless
-{
-    return @"testConversionColon:(int)useless";
-}
-
-- (NSString *)testConversionEscapeChar$a_b$_:(int)useless
-{
-    return @"testConversionEscapeChar$a_b$_:(int)useless";
-}
-
-- (void)dealloc
-{
-    if (throwOnDealloc)
-        [WebScriptObject throwException:@"Throwing exception on dealloc of ObjCPlugin"];
-    
-    [super dealloc];
-}
-
-@end
diff --git a/Tools/DumpRenderTree/mac/ObjCPluginFunction.h b/Tools/DumpRenderTree/mac/ObjCPluginFunction.h
deleted file mode 100644
index 1e81b21..0000000
--- a/Tools/DumpRenderTree/mac/ObjCPluginFunction.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright (C) 2006 Apple Computer, Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-*/
-
-
-#import <Cocoa/Cocoa.h>
-
-
-@interface ObjCPluginFunction : NSObject
-{
-}
-
-@end
diff --git a/Tools/DumpRenderTree/mac/ObjCPluginFunction.m b/Tools/DumpRenderTree/mac/ObjCPluginFunction.m
deleted file mode 100644
index 5bf3617..0000000
--- a/Tools/DumpRenderTree/mac/ObjCPluginFunction.m
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * Copyright (C) 2006 Apple Computer, Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-*/
-
-#import "config.h"
-#import "ObjCPluginFunction.h"
-
-
-@implementation ObjCPluginFunction
-
-- (id)invokeDefaultMethodWithArguments:(NSArray *)args
-{
-    return @"test";
-}
-
-@end
diff --git a/Tools/DumpRenderTree/mac/PerlSupport/DumpRenderTreeSupport.c b/Tools/DumpRenderTree/mac/PerlSupport/DumpRenderTreeSupport.c
deleted file mode 100644
index 35f051c..0000000
--- a/Tools/DumpRenderTree/mac/PerlSupport/DumpRenderTreeSupport.c
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * Copyright (C) 2009 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#include <sys/sysctl.h>
-
-int processIsCrashing(int pid)
-{
-    int mib[4] = { CTL_KERN, KERN_PROC, KERN_PROC_PID, pid };
-    struct kinfo_proc info;
-    size_t bufferSize = sizeof(info);
-    if (sysctl(mib, sizeof(mib) / sizeof(mib[0]), &info, &bufferSize, 0, 0)) {
-        perror("sysctl");
-        return 0;
-    }
-
-    struct extern_proc proc = info.kp_proc;
-
-    // The process is crashing if it is waiting to exit, is not a zombie, and has a non-zero exit code.
-    return proc.p_stat != SZOMB && (proc.p_flag & P_WEXIT) && proc.p_xstat;
-}
diff --git a/Tools/DumpRenderTree/mac/PerlSupport/DumpRenderTreeSupportPregenerated.pm b/Tools/DumpRenderTree/mac/PerlSupport/DumpRenderTreeSupportPregenerated.pm
deleted file mode 100644
index 7b4ea34..0000000
--- a/Tools/DumpRenderTree/mac/PerlSupport/DumpRenderTreeSupportPregenerated.pm
+++ /dev/null
@@ -1,54 +0,0 @@
-# This file was automatically generated by SWIG
-package DumpRenderTreeSupport;
-require Exporter;
-require DynaLoader;
-@ISA = qw(Exporter DynaLoader);
-package DumpRenderTreeSupportc;
-bootstrap DumpRenderTreeSupport;
-package DumpRenderTreeSupport;
-@EXPORT = qw( );
-
-# ---------- BASE METHODS -------------
-
-package DumpRenderTreeSupport;
-
-sub TIEHASH {
-    my ($classname,$obj) = @_;
-    return bless $obj, $classname;
-}
-
-sub CLEAR { }
-
-sub FIRSTKEY { }
-
-sub NEXTKEY { }
-
-sub FETCH {
-    my ($self,$field) = @_;
-    my $member_func = "swig_${field}_get";
-    $self->$member_func();
-}
-
-sub STORE {
-    my ($self,$field,$newval) = @_;
-    my $member_func = "swig_${field}_set";
-    $self->$member_func($newval);
-}
-
-sub this {
-    my $ptr = shift;
-    return tied(%$ptr);
-}
-
-
-# ------- FUNCTION WRAPPERS --------
-
-package DumpRenderTreeSupport;
-
-*processIsCrashing = *DumpRenderTreeSupportc::processIsCrashing;
-
-# ------- VARIABLE STUBS --------
-
-package DumpRenderTreeSupport;
-
-1;
diff --git a/Tools/DumpRenderTree/mac/PerlSupport/DumpRenderTreeSupport_wrapPregenerated.c b/Tools/DumpRenderTree/mac/PerlSupport/DumpRenderTreeSupport_wrapPregenerated.c
deleted file mode 100644
index f734989..0000000
--- a/Tools/DumpRenderTree/mac/PerlSupport/DumpRenderTreeSupport_wrapPregenerated.c
+++ /dev/null
@@ -1,1167 +0,0 @@
-/* ----------------------------------------------------------------------------
- * This file was automatically generated by SWIG (http://www.swig.org).
- * Version 1.3.24
- * 
- * This file is not intended to be easily readable and contains a number of 
- * coding conventions designed to improve portability and efficiency. Do not make
- * changes to this file unless you know what you are doing--modify the SWIG 
- * interface file instead. 
- * ----------------------------------------------------------------------------- */
-
-
-#ifndef SWIG_TEMPLATE_DISAMBIGUATOR
-#  if defined(__SUNPRO_CC) 
-#    define SWIG_TEMPLATE_DISAMBIGUATOR template
-#  else
-#    define SWIG_TEMPLATE_DISAMBIGUATOR 
-#  endif
-#endif
-
-/***********************************************************************
- * swigrun.swg
- *
- *     This file contains generic CAPI SWIG runtime support for pointer
- *     type checking.
- *
- ************************************************************************/
-
-/* This should only be incremented when either the layout of swig_type_info changes,
-   or for whatever reason, the runtime changes incompatibly */
-#define SWIG_RUNTIME_VERSION "1"
-
-/* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */
-#ifdef SWIG_TYPE_TABLE
-#define SWIG_QUOTE_STRING(x) #x
-#define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x)
-#define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE)
-#else
-#define SWIG_TYPE_TABLE_NAME
-#endif
-
-#include <string.h>
-
-#ifndef SWIGINLINE
-#if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__))
-#  define SWIGINLINE inline
-#else
-#  define SWIGINLINE
-#endif
-#endif
-
-/*
-  You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for
-  creating a static or dynamic library from the swig runtime code.
-  In 99.9% of the cases, swig just needs to declare them as 'static'.
-  
-  But only do this if is strictly necessary, ie, if you have problems
-  with your compiler or so.
-*/
-#ifndef SWIGRUNTIME
-#define SWIGRUNTIME static
-#endif
-#ifndef SWIGRUNTIMEINLINE
-#define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE
-#endif
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-typedef void *(*swig_converter_func)(void *);
-typedef struct swig_type_info *(*swig_dycast_func)(void **);
-
-typedef struct swig_type_info {
-  const char             *name;
-  swig_converter_func     converter;
-  const char             *str;
-  void                   *clientdata;
-  swig_dycast_func        dcast;
-  struct swig_type_info  *next;
-  struct swig_type_info  *prev;
-} swig_type_info;
-
-/* 
-  Compare two type names skipping the space characters, therefore
-  "char*" == "char *" and "Class<int>" == "Class<int >", etc.
-
-  Return 0 when the two name types are equivalent, as in
-  strncmp, but skipping ' '.
-*/
-SWIGRUNTIME int
-SWIG_TypeNameComp(const char *f1, const char *l1,
-                  const char *f2, const char *l2) {
-  for (;(f1 != l1) && (f2 != l2); ++f1, ++f2) {
-    while ((*f1 == ' ') && (f1 != l1)) ++f1;
-    while ((*f2 == ' ') && (f2 != l2)) ++f2;
-    if (*f1 != *f2) return *f1 - *f2;
-  }
-  return (l1 - f1) - (l2 - f2);
-}
-
-/*
-  Check type equivalence in a name list like <name1>|<name2>|...
-*/
-SWIGRUNTIME int
-SWIG_TypeEquiv(const char *nb, const char *tb) {
-  int equiv = 0;
-  const char* te = tb + strlen(tb);
-  const char* ne = nb;
-  while (!equiv && *ne) {
-    for (nb = ne; *ne; ++ne) {
-      if (*ne == '|') break;
-    }
-    equiv = SWIG_TypeNameComp(nb, ne, tb, te) == 0;
-    if (*ne) ++ne;
-  }
-  return equiv;
-}
-
-/*
-  Register a type mapping with the type-checking
-*/
-SWIGRUNTIME swig_type_info *
-SWIG_TypeRegisterTL(swig_type_info **tl, swig_type_info *ti) {
-  swig_type_info *tc, *head, *ret, *next;
-  /* Check to see if this type has already been registered */
-  tc = *tl;
-  while (tc) {
-    /* check simple type equivalence */
-    int typeequiv = (strcmp(tc->name, ti->name) == 0);   
-    /* check full type equivalence, resolving typedefs */
-    if (!typeequiv) {
-      /* only if tc is not a typedef (no '|' on it) */
-      if (tc->str && ti->str && !strstr(tc->str,"|")) {
-        typeequiv = SWIG_TypeEquiv(ti->str,tc->str);
-      }
-    }
-    if (typeequiv) {
-      /* Already exists in the table.  Just add additional types to the list */
-      if (ti->clientdata) tc->clientdata = ti->clientdata;
-      head = tc;
-      next = tc->next;
-      goto l1;
-    }
-    tc = tc->prev;
-  }
-  head = ti;
-  next = 0;
-
-  /* Place in list */
-  ti->prev = *tl;
-  *tl = ti;
-
-  /* Build linked lists */
-  l1:
-  ret = head;
-  tc = ti + 1;
-  /* Patch up the rest of the links */
-  while (tc->name) {
-    head->next = tc;
-    tc->prev = head;
-    head = tc;
-    tc++;
-  }
-  if (next) next->prev = head;
-  head->next = next;
-
-  return ret;
-}
-
-/*
-  Check the typename
-*/
-SWIGRUNTIME swig_type_info *
-SWIG_TypeCheck(const char *c, swig_type_info *ty) {
-  swig_type_info *s;
-  if (!ty) return 0;        /* Void pointer */
-  s = ty->next;             /* First element always just a name */
-  do {
-    if (strcmp(s->name,c) == 0) {
-      if (s == ty->next) return s;
-      /* Move s to the top of the linked list */
-      s->prev->next = s->next;
-      if (s->next) {
-        s->next->prev = s->prev;
-      }
-      /* Insert s as second element in the list */
-      s->next = ty->next;
-      if (ty->next) ty->next->prev = s;
-      ty->next = s;
-      s->prev = ty;
-      return s;
-    }
-    s = s->next;
-  } while (s && (s != ty->next));
-  return 0;
-}
-
-/*
-  Cast a pointer up an inheritance hierarchy
-*/
-SWIGRUNTIMEINLINE void *
-SWIG_TypeCast(swig_type_info *ty, void *ptr) {
-  return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr);
-}
-
-/* 
-   Dynamic pointer casting. Down an inheritance hierarchy
-*/
-SWIGRUNTIME swig_type_info *
-SWIG_TypeDynamicCast(swig_type_info *ty, void **ptr) {
-  swig_type_info *lastty = ty;
-  if (!ty || !ty->dcast) return ty;
-  while (ty && (ty->dcast)) {
-    ty = (*ty->dcast)(ptr);
-    if (ty) lastty = ty;
-  }
-  return lastty;
-}
-
-/*
-  Return the name associated with this type
-*/
-SWIGRUNTIMEINLINE const char *
-SWIG_TypeName(const swig_type_info *ty) {
-  return ty->name;
-}
-
-/*
-  Return the pretty name associated with this type,
-  that is an unmangled type name in a form presentable to the user.
-*/
-SWIGRUNTIME const char *
-SWIG_TypePrettyName(const swig_type_info *type) {
-  /* The "str" field contains the equivalent pretty names of the
-     type, separated by vertical-bar characters.  We choose
-     to print the last name, as it is often (?) the most
-     specific. */
-  if (type->str != NULL) {
-    const char *last_name = type->str;
-    const char *s;
-    for (s = type->str; *s; s++)
-      if (*s == '|') last_name = s+1;
-    return last_name;
-  }
-  else
-    return type->name;
-}
-
-/*
-  Search for a swig_type_info structure
-*/
-SWIGRUNTIME swig_type_info *
-SWIG_TypeQueryTL(swig_type_info *tl, const char *name) {
-  swig_type_info *ty = tl;
-  while (ty) {
-    if (ty->str && (SWIG_TypeEquiv(ty->str,name))) return ty;
-    if (ty->name && (strcmp(name,ty->name) == 0)) return ty;
-    ty = ty->prev;
-  }
-  return 0;
-}
-
-/* 
-   Set the clientdata field for a type
-*/
-SWIGRUNTIME void
-SWIG_TypeClientDataTL(swig_type_info *tl, swig_type_info *ti, void *clientdata) {
-  swig_type_info *tc, *equiv;
-  if (ti->clientdata) return;
-  /* if (ti->clientdata == clientdata) return; */
-  ti->clientdata = clientdata;
-  equiv = ti->next;
-  while (equiv) {
-    if (!equiv->converter) {
-      tc = tl;
-      while (tc) {
-        if ((strcmp(tc->name, equiv->name) == 0))
-          SWIG_TypeClientDataTL(tl,tc,clientdata);
-        tc = tc->prev;
-      }
-    }
-    equiv = equiv->next;
-  }
-}
-
-/* 
-   Pack binary data into a string
-*/
-SWIGRUNTIME char *
-SWIG_PackData(char *c, void *ptr, size_t sz) {
-  static char hex[17] = "0123456789abcdef";
-  unsigned char *u = (unsigned char *) ptr;
-  const unsigned char *eu =  u + sz;
-  register unsigned char uu;
-  for (; u != eu; ++u) {
-    uu = *u;
-    *(c++) = hex[(uu & 0xf0) >> 4];
-    *(c++) = hex[uu & 0xf];
-  }
-  return c;
-}
-
-/* 
-   Unpack binary data from a string
-*/
-SWIGRUNTIME const char *
-SWIG_UnpackData(const char *c, void *ptr, size_t sz) {
-  register unsigned char *u = (unsigned char *) ptr;
-  register const unsigned char *eu =  u + sz;
-  for (; u != eu; ++u) {
-    register int d = *(c++);
-    register unsigned char uu = 0;
-    if ((d >= '0') && (d <= '9'))
-      uu = ((d - '0') << 4);
-    else if ((d >= 'a') && (d <= 'f'))
-      uu = ((d - ('a'-10)) << 4);
-    else 
-      return (char *) 0;
-    d = *(c++);
-    if ((d >= '0') && (d <= '9'))
-      uu |= (d - '0');
-    else if ((d >= 'a') && (d <= 'f'))
-      uu |= (d - ('a'-10));
-    else 
-      return (char *) 0;
-    *u = uu;
-  }
-  return c;
-}
-
-/*
-  This function will propagate the clientdata field of type to any new
-  swig_type_info structures that have been added into the list of
-  equivalent types.  It is like calling SWIG_TypeClientData(type,
-  clientdata) a second time.
-*/
-SWIGRUNTIME void
-SWIG_PropagateClientDataTL(swig_type_info *tl, swig_type_info *type) {
-  swig_type_info *equiv = type->next;
-  swig_type_info *tc;
-  if (!type->clientdata) return;
-  while (equiv) {
-    if (!equiv->converter) {
-      tc = tl;
-      while (tc) {
-        if ((strcmp(tc->name, equiv->name) == 0) && !tc->clientdata)
-          SWIG_TypeClientDataTL(tl,tc, type->clientdata);
-        tc = tc->prev;
-      }
-    }
-    equiv = equiv->next;
-  }
-}
-
-/* 
-   Pack 'void *' into a string buffer.
-*/
-SWIGRUNTIME char *
-SWIG_PackVoidPtr(char *buff, void *ptr, const char *name, size_t bsz) {
-  char *r = buff;
-  if ((2*sizeof(void *) + 2) > bsz) return 0;
-  *(r++) = '_';
-  r = SWIG_PackData(r,&ptr,sizeof(void *));
-  if (strlen(name) + 1 > (bsz - (r - buff))) return 0;
-  strcpy(r,name);
-  return buff;
-}
-
-SWIGRUNTIME const char *
-SWIG_UnpackVoidPtr(const char *c, void **ptr, const char *name) {
-  if (*c != '_') {
-    if (strcmp(c,"NULL") == 0) {
-      *ptr = (void *) 0;
-      return name;
-    } else {
-      return 0;
-    }
-  }
-  return SWIG_UnpackData(++c,ptr,sizeof(void *));
-}
-
-SWIGRUNTIME char *
-SWIG_PackDataName(char *buff, void *ptr, size_t sz, const char *name, size_t bsz) {
-  char *r = buff;
-  size_t lname = (name ? strlen(name) : 0);
-  if ((2*sz + 2 + lname) > bsz) return 0;
-  *(r++) = '_';
-  r = SWIG_PackData(r,ptr,sz);
-  if (lname) {
-    strncpy(r,name,lname+1);
-  } else {
-    *r = 0;
-  }
-  return buff;
-}
-
-SWIGRUNTIME const char *
-SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) {
-  if (*c != '_') {
-    if (strcmp(c,"NULL") == 0) {
-      memset(ptr,0,sz);
-      return name;
-    } else {
-      return 0;
-    }
-  }
-  return SWIG_UnpackData(++c,ptr,sz);
-}
-
-#ifdef __cplusplus
-}
-#endif
-
-/***********************************************************************
- * common.swg
- *
- *     This file contains generic SWIG runtime support for pointer
- *     type checking as well as a few commonly used macros to control
- *     external linkage.
- *
- * Author : David Beazley (beazley@cs.uchicago.edu)
- *
- * Copyright (c) 1999-2000, The University of Chicago
- * 
- * This file may be freely redistributed without license or fee provided
- * this copyright message remains intact.
- ************************************************************************/
-
-
-#if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
-#  if !defined(STATIC_LINKED)
-#    define SWIGEXPORT(a) __declspec(dllexport) a
-#  else
-#    define SWIGEXPORT(a) a
-#  endif
-#else
-#  define SWIGEXPORT(a) a
-#endif
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-
-/*************************************************************************/
-
-
-/* The static type info list */
-
-static swig_type_info *swig_type_list = 0;
-static swig_type_info **swig_type_list_handle = &swig_type_list;
-  
-
-/* Register a type mapping with the type-checking */
-static swig_type_info *
-SWIG_TypeRegister(swig_type_info *ti) {
-  return SWIG_TypeRegisterTL(swig_type_list_handle, ti);
-}
-
-/* Search for a swig_type_info structure */
-static swig_type_info *
-SWIG_TypeQuery(const char *name) {
-  return SWIG_TypeQueryTL(*swig_type_list_handle, name);
-}
-
-/* Set the clientdata field for a type */
-static void
-SWIG_TypeClientData(swig_type_info *ti, void *clientdata) {
-  SWIG_TypeClientDataTL(*swig_type_list_handle, ti, clientdata);
-}
-
-/* This function will propagate the clientdata field of type to
-* any new swig_type_info structures that have been added into the list
-* of equivalent types.  It is like calling
-* SWIG_TypeClientData(type, clientdata) a second time.
-*/
-static void
-SWIG_PropagateClientData(swig_type_info *type) {
-  SWIG_PropagateClientDataTL(*swig_type_list_handle, type);
-}
-
-#ifdef __cplusplus
-}
-#endif
-
-/* ---------------------------------------------------------------------- -*- c -*-
- * perl5.swg
- *
- * Perl5 runtime library
- * $Header: /cvsroot/swig/SWIG/Lib/perl5/perlrun.swg,v 1.20 2004/11/29 23:13:57 wuzzeb Exp $
- * ----------------------------------------------------------------------------- */
-
-#define SWIGPERL
-#define SWIGPERL5
-#ifdef __cplusplus
-/* Needed on some windows machines---since MS plays funny games with the header files under C++ */
-#include <math.h>
-#include <stdlib.h>
-extern "C" {
-#endif
-#include "EXTERN.h"
-#include "perl.h"
-#include "XSUB.h"
-
-/* Get rid of free and malloc defined by perl */
-#undef free
-#undef malloc
-
-#ifndef pTHX_
-#define pTHX_
-#endif
-
-#include <string.h>
-#ifdef __cplusplus
-}
-#endif
-
-/* Macro to call an XS function */
-
-#ifdef PERL_OBJECT 
-#  define SWIG_CALLXS(_name) _name(cv,pPerl) 
-#else 
-#  ifndef MULTIPLICITY 
-#    define SWIG_CALLXS(_name) _name(cv) 
-#  else 
-#    define SWIG_CALLXS(_name) _name(PERL_GET_THX, cv) 
-#  endif 
-#endif 
-
-/* Contract support */
-
-#define SWIG_contract_assert(expr,msg) if (!(expr)) { SWIG_croak(msg); } else
-
-/* Note: SwigMagicFuncHack is a typedef used to get the C++ compiler to just shut up already */
-
-#ifdef PERL_OBJECT
-#define MAGIC_PPERL  CPerlObj *pPerl = (CPerlObj *) this;
-typedef int (CPerlObj::*SwigMagicFunc)(SV *, MAGIC *);
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-typedef int (CPerlObj::*SwigMagicFuncHack)(SV *, MAGIC *);
-#ifdef __cplusplus
-}
-#endif
-
-#define SWIG_MAGIC(a,b) (SV *a, MAGIC *b)
-#define SWIGCLASS_STATIC
-#else
-#define MAGIC_PPERL
-#define SWIGCLASS_STATIC static
-#ifndef MULTIPLICITY
-#define SWIG_MAGIC(a,b) (SV *a, MAGIC *b)
-typedef int (*SwigMagicFunc)(SV *, MAGIC *);
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-typedef int (*SwigMagicFuncHack)(SV *, MAGIC *);
-#ifdef __cplusplus
-}
-#endif
-
-
-#else
-#define SWIG_MAGIC(a,b) (struct interpreter *interp, SV *a, MAGIC *b)
-typedef int (*SwigMagicFunc)(struct interpreter *, SV *, MAGIC *);
-#ifdef __cplusplus
-extern "C" {
-#endif
-typedef int (*SwigMagicFuncHack)(struct interpreter *, SV *, MAGIC *);
-#ifdef __cplusplus
-}
-#endif
-
-#endif
-#endif
-
-#if defined(WIN32) && defined(PERL_OBJECT) && !defined(PerlIO_exportFILE)
-#define PerlIO_exportFILE(fh,fl) (FILE*)(fh)
-#endif
-
-/* Modifications for newer Perl 5.005 releases */
-
-#if !defined(PERL_REVISION) || ((PERL_REVISION >= 5) && ((PERL_VERSION < 5) || ((PERL_VERSION == 5) && (PERL_SUBVERSION < 50))))
-#  ifndef PL_sv_yes
-#    define PL_sv_yes sv_yes
-#  endif
-#  ifndef PL_sv_undef
-#    define PL_sv_undef sv_undef
-#  endif
-#  ifndef PL_na
-#    define PL_na na
-#  endif
-#endif
-
-#include <stdlib.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#define SWIG_OWNER 1
-#define SWIG_SHADOW 2
-
-/* Common SWIG API */
-
-#ifdef PERL_OBJECT
-#  define SWIG_ConvertPtr(obj, pp, type, flags) \
-     SWIG_Perl_ConvertPtr(pPerl, obj, pp, type, flags)
-#  define SWIG_NewPointerObj(p, type, flags) \
-     SWIG_Perl_NewPointerObj(pPerl, p, type, flags)
-#  define SWIG_MakePackedObj(sv, p, s, type) \
-     SWIG_Perl_MakePackedObj(pPerl, sv, p, s, type)
-#  define SWIG_ConvertPacked(obj, p, s, type, flags) \
-     SWIG_Perl_ConvertPacked(pPerl, obj, p, s, type, flags)
-
-#else
-#  define SWIG_ConvertPtr(obj, pp, type, flags) \
-     SWIG_Perl_ConvertPtr(obj, pp, type, flags)
-#  define SWIG_NewPointerObj(p, type, flags) \
-     SWIG_Perl_NewPointerObj(p, type, flags)
-#  define SWIG_MakePackedObj(sv, p, s, type) \
-     SWIG_Perl_MakePackedObj(sv, p, s, type )
-#  define SWIG_ConvertPacked(obj, p, s, type, flags) \
-     SWIG_Perl_ConvertPacked(obj, p, s, type, flags)
-#endif
-
-/* Perl-specific API */
-#ifdef PERL_OBJECT
-#  define SWIG_MakePtr(sv, ptr, type, flags) \
-     SWIG_Perl_MakePtr(pPerl, sv, ptr, type, flags)
-#  define SWIG_SetError(str) \
-     SWIG_Perl_SetError(pPerl, str)
-#else
-#  define SWIG_MakePtr(sv, ptr, type, flags) \
-     SWIG_Perl_MakePtr(sv, ptr, type, flags)
-#  define SWIG_SetError(str) \
-     SWIG_Perl_SetError(str)
-#  define SWIG_SetErrorSV(str) \
-     SWIG_Perl_SetErrorSV(str)
-#endif
-
-#define SWIG_SetErrorf SWIG_Perl_SetErrorf
-
-
-#ifdef PERL_OBJECT
-#  define SWIG_MAYBE_PERL_OBJECT CPerlObj *pPerl,
-#else
-#  define SWIG_MAYBE_PERL_OBJECT
-#endif
-
-static swig_type_info **
-SWIG_Perl_GetTypeListHandle() {
-  static void *type_pointer = (void *)0;
-  SV *pointer;
-
-  /* first check if pointer already created */
-  if (!type_pointer) {
-    pointer = get_sv("swig_runtime_data::type_pointer" SWIG_RUNTIME_VERSION SWIG_TYPE_TABLE_NAME, FALSE);
-    if (pointer && SvOK(pointer)) {
-      type_pointer = INT2PTR(swig_type_info **, SvIV(pointer));
-    }
-  }
-
-  return (swig_type_info **) type_pointer;
-}
-
-/*
-  Search for a swig_type_info structure
- */
-SWIGRUNTIMEINLINE swig_type_info *
-SWIG_Perl_GetTypeList() {
-  swig_type_info **tlh = SWIG_Perl_GetTypeListHandle();
-  return tlh ? *tlh : (swig_type_info*)0;
-}
-
-#define SWIG_Runtime_GetTypeList SWIG_Perl_GetTypeList 
-
-static swig_type_info *
-SWIG_Perl_TypeCheckRV(SWIG_MAYBE_PERL_OBJECT SV *rv, swig_type_info *ty) {
-  swig_type_info *s;
-  if (!ty) return 0;        /* Void pointer */
-  s = ty->next;             /* First element always just a name */
-  do {
-    if (sv_derived_from(rv, (char *) s->name)) {
-      if (s == ty->next) return s;
-      /* Move s to the top of the linked list */
-      s->prev->next = s->next;
-      if (s->next) {
-        s->next->prev = s->prev;
-      }
-      /* Insert s as second element in the list */
-      s->next = ty->next;
-      if (ty->next) ty->next->prev = s;
-      ty->next = s;
-      s->prev = ty;
-      return s;
-    }
-    s = s->next;
-  } while (s && (s != ty->next));
-  return 0;
-}
-
-/* Function for getting a pointer value */
-
-static int
-SWIG_Perl_ConvertPtr(SWIG_MAYBE_PERL_OBJECT SV *sv, void **ptr, swig_type_info *_t, int flags) {
-  swig_type_info *tc;
-  void *voidptr = (void *)0;
-
-  /* If magical, apply more magic */
-  if (SvGMAGICAL(sv))
-    mg_get(sv);
-
-  /* Check to see if this is an object */
-  if (sv_isobject(sv)) {
-    SV *tsv = (SV*) SvRV(sv);
-    IV tmp = 0;
-    if ((SvTYPE(tsv) == SVt_PVHV)) {
-      MAGIC *mg;
-      if (SvMAGICAL(tsv)) {
-        mg = mg_find(tsv,'P');
-        if (mg) {
-          sv = mg->mg_obj;
-          if (sv_isobject(sv)) {
-            tmp = SvIV((SV*)SvRV(sv));
-          }
-        }
-      } else {
-        return -1;
-      }
-    } else {
-      tmp = SvIV((SV*)SvRV(sv));
-    }
-    voidptr = (void *)tmp;
-    if (!_t) {
-      *(ptr) = voidptr;
-      return 0;
-    }
-  } else if (! SvOK(sv)) {            /* Check for undef */
-    *(ptr) = (void *) 0;
-    return 0;
-  } else if (SvTYPE(sv) == SVt_RV) {  /* Check for NULL pointer */
-    *(ptr) = (void *) 0;
-    if (!SvROK(sv))
-      return 0;
-    else
-      return -1;
-  } else {                            /* Don't know what it is */
-    *(ptr) = (void *) 0;
-    return -1;
-  }
-  if (_t) {
-    /* Now see if the types match */
-    char *_c = HvNAME(SvSTASH(SvRV(sv)));
-    tc = SWIG_TypeCheck(_c,_t);
-    if (!tc) {
-      *ptr = voidptr;
-      return -1;
-    }
-    *ptr = SWIG_TypeCast(tc,voidptr);
-    return 0;
-  }
-  *ptr = voidptr;
-  return 0;
-}
-
-static void
-SWIG_Perl_MakePtr(SWIG_MAYBE_PERL_OBJECT SV *sv, void *ptr, swig_type_info *t, int flags) {
-  if (ptr && (flags & SWIG_SHADOW)) {
-    SV *self;
-    SV *obj=newSV(0);
-    HV *hash=newHV();
-    HV *stash;
-    sv_setref_pv(obj, (char *) t->name, ptr);
-    stash=SvSTASH(SvRV(obj));
-    if (flags & SWIG_OWNER) {
-      HV *hv;
-      GV *gv=*(GV**)hv_fetch(stash, "OWNER", 5, TRUE);
-      if (!isGV(gv))
-        gv_init(gv, stash, "OWNER", 5, FALSE);
-      hv=GvHVn(gv);
-      hv_store_ent(hv, obj, newSViv(1), 0);
-    }
-    sv_magic((SV *)hash, (SV *)obj, 'P', Nullch, 0);
-    SvREFCNT_dec(obj);
-    self=newRV_noinc((SV *)hash);
-    sv_setsv(sv, self);
-    SvREFCNT_dec((SV *)self);
-    sv_bless(sv, stash);
-  }
-  else {
-    sv_setref_pv(sv, (char *) t->name, ptr);
-  }
-}
-
-static SWIGINLINE SV *
-SWIG_Perl_NewPointerObj(SWIG_MAYBE_PERL_OBJECT void *ptr, swig_type_info *t, int flags) {
-  SV *result = sv_newmortal();
-  SWIG_MakePtr(result, ptr, t, flags);
-  return result;
-}
-
-static void
-  SWIG_Perl_MakePackedObj(SWIG_MAYBE_PERL_OBJECT SV *sv, void *ptr, int sz, swig_type_info *type) {
-  char result[1024];
-  char *r = result;
-  if ((2*sz + 1 + strlen(type->name)) > 1000) return;
-  *(r++) = '_';
-  r = SWIG_PackData(r,ptr,sz);
-  strcpy(r,type->name);
-  sv_setpv(sv, result);
-}
-
-/* Convert a packed value value */
-static int
-SWIG_Perl_ConvertPacked(SWIG_MAYBE_PERL_OBJECT SV *obj, void *ptr, int sz, swig_type_info *ty, int flags) {
-  swig_type_info *tc;
-  const char  *c = 0;
-
-  if ((!obj) || (!SvOK(obj))) return -1;
-  c = SvPV(obj, PL_na);
-  /* Pointer values must start with leading underscore */
-  if (*c != '_') return -1;
-  c++;
-  c = SWIG_UnpackData(c,ptr,sz);
-  if (ty) {
-    tc = SWIG_TypeCheck(c,ty);
-    if (!tc) return -1;
-  }
-  return 0;
-}
-
-static SWIGINLINE void
-SWIG_Perl_SetError(SWIG_MAYBE_PERL_OBJECT const char *error) {
-  if (error) sv_setpv(perl_get_sv("@", TRUE), error);
-}
-
-static SWIGINLINE void
-SWIG_Perl_SetErrorSV(SWIG_MAYBE_PERL_OBJECT SV *error) {
-  if (error) sv_setsv(perl_get_sv("@", TRUE), error);
-}
-
-static void
-SWIG_Perl_SetErrorf(const char *fmt, ...) {
-  va_list args;
-  va_start(args, fmt);
-  sv_vsetpvfn(perl_get_sv("@", TRUE), fmt, strlen(fmt), &args, Null(SV**), 0, Null(bool*));
-  va_end(args);
-}
-
-/* Macros for low-level exception handling */
-#define SWIG_fail       goto fail
-#define SWIG_croak(x)   { SWIG_SetError(x); goto fail; }
-#define SWIG_croakSV(x) { SWIG_SetErrorSV(x); goto fail; }
-/* most preprocessors do not support vararg macros :-( */
-/* #define SWIG_croakf(x...) { SWIG_SetErrorf(x); goto fail; } */
-
-
-typedef XS(SwigPerlWrapper);
-typedef SwigPerlWrapper *SwigPerlWrapperPtr;
-
-/* Structure for command table */
-typedef struct {
-  const char         *name;
-  SwigPerlWrapperPtr  wrapper;
-} swig_command_info;
-
-/* Information for constant table */
-
-#define SWIG_INT     1
-#define SWIG_FLOAT   2
-#define SWIG_STRING  3
-#define SWIG_POINTER 4
-#define SWIG_BINARY  5
-
-/* Constant information structure */
-typedef struct swig_constant_info {
-    int              type;
-    const char      *name;
-    long             lvalue;
-    double           dvalue;
-    void            *pvalue;
-    swig_type_info **ptype;
-} swig_constant_info;
-
-#ifdef __cplusplus
-}
-#endif
-
-/* Structure for variable table */
-typedef struct {
-  const char   *name;
-  SwigMagicFunc   set;
-  SwigMagicFunc   get;
-  swig_type_info  **type;
-} swig_variable_info;
-
-/* Magic variable code */
-#ifndef PERL_OBJECT
-#define swig_create_magic(s,a,b,c) _swig_create_magic(s,a,b,c)
-  #ifndef MULTIPLICITY
-     static void _swig_create_magic(SV *sv, char *name, int (*set)(SV *, MAGIC *), int (*get)(SV *,MAGIC *)) {
-  #else
-     static void _swig_create_magic(SV *sv, char *name, int (*set)(struct interpreter*, SV *, MAGIC *), int (*get)(struct interpreter*, SV *,MAGIC *)) {
-  #endif
-#else
-#  define swig_create_magic(s,a,b,c) _swig_create_magic(pPerl,s,a,b,c)
-static void _swig_create_magic(CPerlObj *pPerl, SV *sv, const char *name, int (CPerlObj::*set)(SV *, MAGIC *), int (CPerlObj::*get)(SV *, MAGIC *)) {
-#endif
-  MAGIC *mg;
-  sv_magic(sv,sv,'U',(char *) name,strlen(name));
-  mg = mg_find(sv,'U');
-  mg->mg_virtual = (MGVTBL *) malloc(sizeof(MGVTBL));
-  mg->mg_virtual->svt_get = (SwigMagicFuncHack) get;
-  mg->mg_virtual->svt_set = (SwigMagicFuncHack) set;
-  mg->mg_virtual->svt_len = 0;
-  mg->mg_virtual->svt_clear = 0;
-  mg->mg_virtual->svt_free = 0;
-}
-
-
-
-
-
-
-#ifdef do_open
-  #undef do_open
-#endif
-#ifdef do_close
-  #undef do_close
-#endif
-#ifdef scalar
-  #undef scalar
-#endif
-#ifdef list
-  #undef list
-#endif
-#ifdef apply
-  #undef apply
-#endif
-#ifdef convert
-  #undef convert
-#endif
-#ifdef Error
-  #undef Error
-#endif
-#ifdef form
-  #undef form
-#endif
-#ifdef vform
-  #undef vform
-#endif
-#ifdef LABEL
-  #undef LABEL
-#endif
-#ifdef METHOD
-  #undef METHOD
-#endif
-#ifdef Move
-  #undef Move
-#endif
-#ifdef yylex
-  #undef yylex
-#endif
-#ifdef yyparse
-  #undef yyparse
-#endif
-#ifdef yyerror
-  #undef yyerror
-#endif
-#ifdef invert
-  #undef invert
-#endif
-#ifdef ref
-  #undef ref
-#endif
-#ifdef ENTER
-  #undef ENTER
-#endif
-
-
-/* -------- TYPES TABLE (BEGIN) -------- */
-
-static swig_type_info *swig_types[1];
-
-/* -------- TYPES TABLE (END) -------- */
-
-#define SWIG_init    boot_DumpRenderTreeSupport
-
-#define SWIG_name   "DumpRenderTreeSupportc::boot_DumpRenderTreeSupport"
-#define SWIG_prefix "DumpRenderTreeSupportc::"
-
-#ifdef __cplusplus
-extern "C"
-#endif
-#ifndef PERL_OBJECT
-#ifndef MULTIPLICITY
-SWIGEXPORT(void) SWIG_init (CV* cv);
-#else
-SWIGEXPORT(void) SWIG_init (pTHXo_ CV* cv);
-#endif
-#else
-SWIGEXPORT(void) SWIG_init (CV *cv, CPerlObj *);
-#endif
-
-int processIsCrashing(int);
-#ifdef PERL_OBJECT
-#define MAGIC_CLASS _wrap_DumpRenderTreeSupport_var::
-class _wrap_DumpRenderTreeSupport_var : public CPerlObj {
-public:
-#else
-#define MAGIC_CLASS
-#endif
-SWIGCLASS_STATIC int swig_magic_readonly(pTHX_ SV *sv, MAGIC *mg) {
-    MAGIC_PPERL
-    sv = sv; mg = mg;
-    croak("Value is read-only.");
-    return 0;
-}
-
-
-#ifdef PERL_OBJECT
-};
-#endif
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-XS(_wrap_processIsCrashing) {
-    {
-        int arg1 ;
-        int result;
-        int argvi = 0;
-        dXSARGS;
-        
-        if ((items < 1) || (items > 1)) {
-            SWIG_croak("Usage: processIsCrashing(pid);");
-        }
-        arg1 = (int) SvIV(ST(0));
-        result = (int)processIsCrashing(arg1);
-        
-        ST(argvi) = sv_newmortal();
-        sv_setiv(ST(argvi++), (IV) result);
-        XSRETURN(argvi);
-        fail:
-        ;
-    }
-    croak(Nullch);
-}
-
-
-
-/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
-
-
-static swig_type_info *swig_types_initial[] = {
-0
-};
-
-
-/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
-
-static swig_constant_info swig_constants[] = {
-{0,0,0,0,0,0}
-};
-#ifdef __cplusplus
-}
-#endif
-static swig_variable_info swig_variables[] = {
-{0,0,0,0}
-};
-static swig_command_info swig_commands[] = {
-{"DumpRenderTreeSupportc::processIsCrashing", _wrap_processIsCrashing},
-{0,0}
-};
-
-
-static void SWIG_Perl_SetTypeListHandle(swig_type_info **handle) {
-    SV *pointer;
-    
-    /* create a new pointer */
-    pointer = get_sv("swig_runtime_data::type_pointer" SWIG_RUNTIME_VERSION SWIG_TYPE_TABLE_NAME, TRUE);
-    sv_setiv(pointer, PTR2IV(swig_type_list_handle));
-}
-
-static swig_type_info **
-SWIG_Perl_LookupTypePointer(swig_type_info **type_list_handle) {
-    swig_type_info **type_pointer;
-    
-    /* first check if module already created */
-    type_pointer = SWIG_Perl_GetTypeListHandle();
-    if (type_pointer) {
-        return type_pointer;
-    } else {
-        /* create a new module and variable */
-        SWIG_Perl_SetTypeListHandle(type_list_handle);
-        return type_list_handle;
-    }
-}
-
-
-#ifdef __cplusplus
-extern "C"
-#endif
-
-XS(SWIG_init) {
-    dXSARGS;
-    int i;
-    static int _init = 0;
-    if (!_init) {
-        swig_type_list_handle = SWIG_Perl_LookupTypePointer(swig_type_list_handle);
-        for (i = 0; swig_types_initial[i]; i++) {
-            swig_types[i] = SWIG_TypeRegister(swig_types_initial[i]);
-        }
-        _init = 1;
-    }
-    
-    /* Install commands */
-    for (i = 0; swig_commands[i].name; i++) {
-        newXS((char*) swig_commands[i].name,swig_commands[i].wrapper, (char*)__FILE__);
-    }
-    
-    /* Install variables */
-    for (i = 0; swig_variables[i].name; i++) {
-        SV *sv;
-        sv = perl_get_sv((char*) swig_variables[i].name, TRUE | 0x2);
-        if (swig_variables[i].type) {
-            SWIG_MakePtr(sv,(void *)1, *swig_variables[i].type,0);
-        } else {
-            sv_setiv(sv,(IV) 0);
-        }
-        swig_create_magic(sv, (char *) swig_variables[i].name, swig_variables[i].set, swig_variables[i].get); 
-    }
-    
-    /* Install constant */
-    for (i = 0; swig_constants[i].type; i++) {
-        SV *sv;
-        sv = perl_get_sv((char*)swig_constants[i].name, TRUE | 0x2);
-        switch(swig_constants[i].type) {
-            case SWIG_INT:
-            sv_setiv(sv, (IV) swig_constants[i].lvalue);
-            break;
-            case SWIG_FLOAT:
-            sv_setnv(sv, (double) swig_constants[i].dvalue);
-            break;
-            case SWIG_STRING:
-            sv_setpv(sv, (char *) swig_constants[i].pvalue);
-            break;
-            case SWIG_POINTER:
-            SWIG_MakePtr(sv, swig_constants[i].pvalue, *(swig_constants[i].ptype),0);
-            break;
-            case SWIG_BINARY:
-            SWIG_MakePackedObj(sv, swig_constants[i].pvalue, swig_constants[i].lvalue, *(swig_constants[i].ptype));
-            break;
-            default:
-            break;
-        }
-        SvREADONLY_on(sv);
-    }
-    
-    ST(0) = &PL_sv_yes;
-    XSRETURN(1);
-}
-
diff --git a/Tools/DumpRenderTree/mac/PerlSupport/Makefile b/Tools/DumpRenderTree/mac/PerlSupport/Makefile
deleted file mode 100644
index f7808dc..0000000
--- a/Tools/DumpRenderTree/mac/PerlSupport/Makefile
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright (C) 2009 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
-# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-
-CONFIGURATION_BUILD_DIR ?= .
-OUTPUT_DIR=$(CONFIGURATION_BUILD_DIR)
-
-WRAPPER_DIR=$(OUTPUT_DIR)/DerivedSources/DumpRenderTree
-WRAPPER=$(WRAPPER_DIR)/DumpRenderTreeSupport_wrap.c
-PERL_MODULE=$(OUTPUT_DIR)/DumpRenderTreeSupport.pm
-DYLIB=$(OUTPUT_DIR)/DumpRenderTreeSupport.dylib
-DUMPRENDERTREE=$(OUTPUT_DIR)/DumpRenderTree
-PERL=/usr/bin/perl
-
-OSX_VERSION = $(shell sw_vers -productVersion | cut -d. -f 2)
-ifeq "$(OSX_VERSION)" "5"
-GENERATE_WRAPPER = YES
-endif
-ifeq "$(OSX_VERSION)" "6"
-GENERATE_WRAPPER = NO
-endif
-
-ifeq "$(GENERATE_WRAPPER)" "YES"
-
-SWIG=/usr/bin/swig
-
-all: $(DYLIB) $(PERL_MODULE)
-
-$(WRAPPER) $(PERL_MODULE): DumpRenderTreeSupport.c $(DUMPRENDERTREE)
-	mkdir -p $(WRAPPER_DIR)
-	$(SWIG) -o $(WRAPPER) -outdir $(OUTPUT_DIR) -perl -module DumpRenderTreeSupport $<
-
-
-else
-
-
-all: $(DYLIB) $(PERL_MODULE)
-
-$(WRAPPER): DumpRenderTreeSupport_wrapPregenerated.c $(DUMPRENDERTREE)
-	mkdir -p $(WRAPPER_DIR)
-	cp DumpRenderTreeSupport_wrapPregenerated.c $(WRAPPER)
-
-$(PERL_MODULE): DumpRenderTreeSupportPregenerated.pm $(DUMPRENDERTREE)
-	cp DumpRenderTreeSupportPregenerated.pm $(PERL_MODULE)
-
-
-endif
-
-$(DYLIB): DumpRenderTreeSupport.c $(WRAPPER)
-	gcc -g -dynamiclib -o $(DYLIB) `$(PERL) -MExtUtils::Embed -eperl_inc` `$(PERL) -MExtUtils::Embed -e'my $$opts = ldopts(0); $$opts =~ s/-arch [^ ]*( |$$)//g; print $$opts, " -arch ", join(" -arch ", split(" ",$$ENV{ARCHS}))'` $^
-
-clean:
-	rm -f $(WRAPPER) $(PERL_MODULE) $(DYLIB)
-
-installhdrs installsrc:
-
-INSTALL_LOCATION=$(DSTROOT)/$(SYSTEM_LIBRARY_DIR)/Frameworks/$(WEBKIT_FRAMEWORK_RESOURCES_PATH)
-
-install: all
-	mkdir -p $(INSTALL_LOCATION)
-	cp $(DYLIB) $(INSTALL_LOCATION)/DumpRenderTreeSupport.dylib
-	cp $(PERL_MODULE) $(INSTALL_LOCATION)/DumpRenderTreeSupport.pm
-
diff --git a/Tools/DumpRenderTree/mac/PixelDumpSupportMac.mm b/Tools/DumpRenderTree/mac/PixelDumpSupportMac.mm
deleted file mode 100644
index 0cf9c4a..0000000
--- a/Tools/DumpRenderTree/mac/PixelDumpSupportMac.mm
+++ /dev/null
@@ -1,196 +0,0 @@
-/*
- * Copyright (C) 2005, 2006, 2007 Apple Inc. All rights reserved.
- *           (C) 2007 Graham Dennis (graham.dennis@gmail.com)
- *           (C) 2007 Eric Seidel <eric@webkit.org>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PixelDumpSupport.h"
-#include "PixelDumpSupportCG.h"
-
-#include "DumpRenderTree.h" 
-#include "TestRunner.h"
-#include <CoreGraphics/CGBitmapContext.h>
-#include <wtf/Assertions.h>
-#include <wtf/RefPtr.h>
-
-#import <WebKit/WebCoreStatistics.h>
-#import <WebKit/WebDocumentPrivate.h>
-#import <WebKit/WebHTMLViewPrivate.h>
-#import <WebKit/WebKit.h>
-#import <WebKit/WebViewPrivate.h>
-
-static PassRefPtr<BitmapContext> createBitmapContext(size_t pixelsWide, size_t pixelsHigh, size_t& rowBytes, void*& buffer)
-{
-    rowBytes = (4 * pixelsWide + 63) & ~63; // Use a multiple of 64 bytes to improve CG performance
-
-    buffer = calloc(pixelsHigh, rowBytes);
-    if (!buffer)
-        return 0;
-    
-    // Creating this bitmap in the device color space prevents any color conversion when the image of the web view is drawn into it.
-    RetainPtr<CGColorSpaceRef> colorSpace(AdoptCF, CGColorSpaceCreateDeviceRGB());
-    CGContextRef context = CGBitmapContextCreate(buffer, pixelsWide, pixelsHigh, 8, rowBytes, colorSpace.get(), kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host); // Use ARGB8 on PPC or BGRA8 on X86 to improve CG performance
-    if (!context) {
-        free(buffer);
-        return 0;
-    }
-
-    return BitmapContext::createByAdoptingBitmapAndContext(buffer, context);
-}
-
-static void paintRepaintRectOverlay(WebView* webView, CGContextRef context)
-{
-    CGRect viewRect = NSRectToCGRect([webView bounds]);
-
-    CGContextSaveGState(context);
-
-    // Using a transparency layer is easier than futzing with clipping.
-    CGContextBeginTransparencyLayer(context, 0);
-
-    // Flip the context.
-    CGContextScaleCTM(context, 1, -1);
-    CGContextTranslateCTM(context, 0, -viewRect.size.height);
-    
-    CGContextSetRGBFillColor(context, 0, 0, 0, static_cast<CGFloat>(0.66));
-    CGContextFillRect(context, viewRect);
-
-    NSArray *repaintRects = [webView trackedRepaintRects];
-    if (repaintRects) {
-        
-        for (NSValue *value in repaintRects) {
-            CGRect currRect = NSRectToCGRect([value rectValue]);
-            CGContextClearRect(context, currRect);
-        }
-    }
-    
-    CGContextEndTransparencyLayer(context);
-    CGContextRestoreGState(context);
-}
-
-PassRefPtr<BitmapContext> createBitmapContextFromWebView(bool onscreen, bool incrementalRepaint, bool sweepHorizontally, bool drawSelectionRect)
-{
-    WebView* view = [mainFrame webView];
-
-    // If the WebHTMLView uses accelerated compositing, we need for force the on-screen capture path
-    // and also force Core Animation to start its animations with -display since the DRT window has autodisplay disabled.
-    if ([view _isUsingAcceleratedCompositing])
-        onscreen = YES;
-
-    float deviceScaleFactor = [view _backingScaleFactor];
-    NSSize webViewSize = [view frame].size;
-    size_t pixelsWide = static_cast<size_t>(webViewSize.width * deviceScaleFactor);
-    size_t pixelsHigh = static_cast<size_t>(webViewSize.height * deviceScaleFactor);
-    size_t rowBytes = 0;
-    void* buffer = 0;
-    RefPtr<BitmapContext> bitmapContext = createBitmapContext(pixelsWide, pixelsHigh, rowBytes, buffer);
-    if (!bitmapContext)
-        return 0;
-    CGContextRef context = bitmapContext->cgContext();
-    CGContextScaleCTM(context, deviceScaleFactor, deviceScaleFactor);
-
-    NSGraphicsContext *nsContext = [NSGraphicsContext graphicsContextWithGraphicsPort:context flipped:NO];
-    ASSERT(nsContext);
-    
-    if (incrementalRepaint) {
-        if (sweepHorizontally) {
-            for (NSRect column = NSMakeRect(0, 0, 1, webViewSize.height); column.origin.x < webViewSize.width; column.origin.x++)
-                [view displayRectIgnoringOpacity:column inContext:nsContext];
-        } else {
-            for (NSRect line = NSMakeRect(0, 0, webViewSize.width, 1); line.origin.y < webViewSize.height; line.origin.y++)
-                [view displayRectIgnoringOpacity:line inContext:nsContext];
-        }
-    } else {
-        if (deviceScaleFactor != 1) {
-            // Call displayRectIgnoringOpacity for HiDPI tests since it ensures we paint directly into the context 
-            // that we have appropriately sized and scaled.
-            [view displayRectIgnoringOpacity:[view bounds] inContext:nsContext];
-            if ([view isTrackingRepaints])
-                paintRepaintRectOverlay(view, context);
-        } else if (onscreen) {
-            // displayIfNeeded does not update the CA layers if the layer-hosting view was not marked as needing display, so
-            // we're at the mercy of CA's display-link callback to update layers in time. So we need to force a display of the view
-            // to get AppKit to update the CA layers synchronously.
-            // FIXME: this will break repaint testing if we have compositing in repaint tests
-            // (displayWebView() painted gray over the webview, but we'll be making everything repaint again).
-            [view display];
-
-            // Ask the window server to provide us a composited version of the *real* window content including surfaces (i.e. OpenGL content)
-            // Note that the returned image might differ very slightly from the window backing because of dithering artifacts in the window server compositor.
-            CGImageRef image = CGWindowListCreateImage(CGRectNull, kCGWindowListOptionIncludingWindow, [[view window] windowNumber], kCGWindowImageBoundsIgnoreFraming | kCGWindowImageShouldBeOpaque);
-            CGContextDrawImage(context, CGRectMake(0, 0, CGImageGetWidth(image), CGImageGetHeight(image)), image);
-            CGImageRelease(image);
-
-            if ([view isTrackingRepaints])
-                paintRepaintRectOverlay(view, context);
-        } else {
-            // Make sure the view has been painted.
-            [view displayIfNeeded];
-
-            // Grab directly the contents of the window backing buffer (this ignores any surfaces on the window)
-            // FIXME: This path is suboptimal: data is read from window backing store, converted to RGB8 then drawn again into an RGBA8 bitmap
-            [view lockFocus];
-            NSBitmapImageRep *imageRep = [[[NSBitmapImageRep alloc] initWithFocusedViewRect:[view frame]] autorelease];
-            [view unlockFocus];
-
-            RetainPtr<NSGraphicsContext> savedContext = [NSGraphicsContext currentContext];
-            [NSGraphicsContext setCurrentContext:nsContext];
-            [imageRep draw];
-            
-            if ([view isTrackingRepaints])
-                paintRepaintRectOverlay(view, context);
-            
-            [NSGraphicsContext setCurrentContext:savedContext.get()];
-        }
-    }
-
-    if (drawSelectionRect) {
-        NSView *documentView = [[mainFrame frameView] documentView];
-        ASSERT([documentView conformsToProtocol:@protocol(WebDocumentSelection)]);
-        NSRect rect = [documentView convertRect:[(id <WebDocumentSelection>)documentView selectionRect] fromView:nil];
-        CGContextSaveGState(context);
-        CGContextSetLineWidth(context, 1.0);
-        CGContextSetRGBStrokeColor(context, 1.0, 0.0, 0.0, 1.0);
-        CGContextStrokeRect(context, CGRectMake(rect.origin.x, rect.origin.y, rect.size.width, rect.size.height));
-        CGContextRestoreGState(context);
-    }
-    
-    return bitmapContext.release();
-}
-
-PassRefPtr<BitmapContext> createPagedBitmapContext()
-{
-    int pageWidthInPixels = TestRunner::maxViewWidth;
-    int pageHeightInPixels = TestRunner::maxViewHeight;
-    int numberOfPages = [mainFrame numberOfPagesWithPageWidth:pageWidthInPixels pageHeight:pageHeightInPixels];
-    size_t rowBytes = 0;
-    void* buffer = 0;
-
-    RefPtr<BitmapContext> bitmapContext = createBitmapContext(pageWidthInPixels, numberOfPages * (pageHeightInPixels + 1) - 1, rowBytes, buffer);
-    [mainFrame printToCGContext:bitmapContext->cgContext() pageWidth:pageWidthInPixels pageHeight:pageHeightInPixels];
-    return bitmapContext.release();
-}
diff --git a/Tools/DumpRenderTree/mac/PolicyDelegate.h b/Tools/DumpRenderTree/mac/PolicyDelegate.h
deleted file mode 100644
index c1a7e6f..0000000
--- a/Tools/DumpRenderTree/mac/PolicyDelegate.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * Copyright (C) 2007, 2009 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-    * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import <Cocoa/Cocoa.h>
-
-class TestRunner;
-
-@interface PolicyDelegate : NSObject {
-    BOOL permissiveDelegate;
-    TestRunner* controllerToNotifyDone;
-}
-
-- (void)setPermissive:(BOOL)permissive;
-- (void)setControllerToNotifyDone:(TestRunner*)controller;
-
-@end
diff --git a/Tools/DumpRenderTree/mac/PolicyDelegate.mm b/Tools/DumpRenderTree/mac/PolicyDelegate.mm
deleted file mode 100644
index 6a0eeb9..0000000
--- a/Tools/DumpRenderTree/mac/PolicyDelegate.mm
+++ /dev/null
@@ -1,141 +0,0 @@
-/*
- * Copyright (C) 2007, 2009 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "PolicyDelegate.h"
-
-#import "DumpRenderTree.h"
-#import "TestRunner.h"
-#import <WebKit/DOMElement.h>
-#import <WebKit/WebFrame.h>
-#import <WebKit/WebPolicyDelegate.h>
-#import <WebKit/WebView.h>
-
-@interface NSURL (DRTExtras)
-- (NSString *)_drt_descriptionSuitableForTestResult;
-@end
-
-@interface DOMNode (dumpPath)
-- (NSString *)dumpPath;
-@end
-
-@implementation PolicyDelegate
-
-- (void)webView:(WebView *)webView decidePolicyForNavigationAction:(NSDictionary *)actionInformation
-                                                           request:(NSURLRequest *)request
-                                                             frame:(WebFrame *)frame
-                                                  decisionListener:(id<WebPolicyDecisionListener>)listener
-{
-    WebNavigationType navType = (WebNavigationType)[[actionInformation objectForKey:WebActionNavigationTypeKey] intValue];
-
-    const char* typeDescription;
-    switch (navType) {
-        case WebNavigationTypeLinkClicked:
-            typeDescription = "link clicked";
-            break;
-        case WebNavigationTypeFormSubmitted:
-            typeDescription = "form submitted";
-            break;
-        case WebNavigationTypeBackForward:
-            typeDescription = "back/forward";
-            break;
-        case WebNavigationTypeReload:
-            typeDescription = "reload";
-            break;
-        case WebNavigationTypeFormResubmitted:
-            typeDescription = "form resubmitted";
-            break;
-        case WebNavigationTypeOther:
-            typeDescription = "other";
-            break;
-        default:
-            typeDescription = "illegal value";
-    }
-
-    NSString *message = [NSString stringWithFormat:@"Policy delegate: attempt to load %@ with navigation type '%s'", [[request URL] _drt_descriptionSuitableForTestResult], typeDescription];
-
-    if (DOMElement *originatingNode = [[actionInformation objectForKey:WebActionElementKey] objectForKey:WebElementDOMNodeKey])
-        message = [message stringByAppendingFormat:@" originating from %@", [originatingNode dumpPath]];
-
-    printf("%s\n", [message UTF8String]);
-
-    if (permissiveDelegate)
-        [listener use];
-    else
-        [listener ignore];
-
-    if (controllerToNotifyDone) {
-        controllerToNotifyDone->notifyDone();
-        controllerToNotifyDone = 0;
-    }
-}
-
-- (void)webView:(WebView *)webView unableToImplementPolicyWithError:(NSError *)error frame:(WebFrame *)frame
-{
-    NSString *message = [NSString stringWithFormat:@"Policy delegate: unable to implement policy with error domain '%@', error code %ld, in frame '%@'", [error domain], static_cast<long>([error code]), [frame name]];
-    printf("%s\n", [message UTF8String]);
-}
-
-static NSString *dispositionTypeFromContentDispositionHeader(NSString *header)
-{
-    NSMutableString *result = [[[[header componentsSeparatedByString:@";"] objectAtIndex:0] mutableCopy] autorelease];
-    if (result)
-        CFStringTrimWhitespace((CFMutableStringRef)result);
-    return result;
-}
-
-- (void)webView:(WebView *)c decidePolicyForMIMEType:(NSString *)type
-                                 request:(NSURLRequest *)request
-                                   frame:(WebFrame *)frame
-                            decisionListener:(id<WebPolicyDecisionListener>)listener
-{
-    NSHTTPURLResponse *HTTPResponse = (NSHTTPURLResponse *)[[frame provisionalDataSource] response];
-    if (![HTTPResponse isKindOfClass:[NSHTTPURLResponse class]])
-        HTTPResponse = nil;
-
-    NSString *dispositionType = dispositionTypeFromContentDispositionHeader([[HTTPResponse allHeaderFields] objectForKey:@"Content-Disposition"]);
-    if (dispositionType && [dispositionType compare:@"attachment" options:NSCaseInsensitiveSearch] == NSOrderedSame) {
-        printf("Policy delegate: resource is an attachment, suggested file name '%s'\n", [[HTTPResponse suggestedFilename] UTF8String]);
-        [listener ignore];
-        return;
-    }
-
-    [listener use];
-}
-
-- (void)setPermissive:(BOOL)permissive
-{
-    permissiveDelegate = permissive;
-}
-
-- (void)setControllerToNotifyDone:(TestRunner*)controller
-{
-    controllerToNotifyDone = controller;
-}
-
-@end
diff --git a/Tools/DumpRenderTree/mac/ResourceLoadDelegate.h b/Tools/DumpRenderTree/mac/ResourceLoadDelegate.h
deleted file mode 100644
index 0c4618e..0000000
--- a/Tools/DumpRenderTree/mac/ResourceLoadDelegate.h
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright (C) 2007 Apple Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import <Cocoa/Cocoa.h>
-
-
-@interface ResourceLoadDelegate : NSObject {
-}
-
-@end
diff --git a/Tools/DumpRenderTree/mac/ResourceLoadDelegate.mm b/Tools/DumpRenderTree/mac/ResourceLoadDelegate.mm
deleted file mode 100644
index c5b2644..0000000
--- a/Tools/DumpRenderTree/mac/ResourceLoadDelegate.mm
+++ /dev/null
@@ -1,276 +0,0 @@
-/*
- * Copyright (C) 2007, 2011 Apple Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "ResourceLoadDelegate.h"
-
-#import "DumpRenderTree.h"
-#import "TestRunner.h"
-#import <WebKit/WebKit.h>
-#import <WebKit/WebTypesInternal.h>
-#import <WebKit/WebDataSourcePrivate.h>
-#import <wtf/Assertions.h>
-
-using namespace std;
-
-@interface NSURL (DRTExtras)
-- (NSString *)_drt_descriptionSuitableForTestResult;
-@end
-
-@interface NSError (DRTExtras)
-- (NSString *)_drt_descriptionSuitableForTestResult;
-@end
-
-@interface NSURLResponse (DRTExtras)
-- (NSString *)_drt_descriptionSuitableForTestResult;
-@end
-
-@interface NSURLRequest (DRTExtras)
-- (NSString *)_drt_descriptionSuitableForTestResult;
-@end
-
-@implementation NSError (DRTExtras)
-- (NSString *)_drt_descriptionSuitableForTestResult 
-{
-    NSString *str = [NSString stringWithFormat:@"<NSError domain %@, code %ld", [self domain], static_cast<long>([self code])];
-    NSURL *failingURL;
-
-    if ((failingURL = [[self userInfo] objectForKey:@"NSErrorFailingURLKey"]))
-        str = [str stringByAppendingFormat:@", failing URL \"%@\"", [failingURL _drt_descriptionSuitableForTestResult]];
-
-    str = [str stringByAppendingFormat:@">"];
-
-    return str;
-}
-
-@end
-
-@implementation NSURL (DRTExtras)
-
-- (NSString *)_drt_descriptionSuitableForTestResult 
-{
-    if (![self isFileURL])
-        return [self absoluteString];
-
-    WebDataSource *dataSource = [mainFrame dataSource];
-    if (!dataSource)
-        dataSource = [mainFrame provisionalDataSource];
-
-    NSString *basePath = [[[[dataSource request] URL] path] stringByDeletingLastPathComponent];
-    basePath = [basePath stringByAppendingString:@"/"];
-
-    if ([[self path] hasPrefix:basePath])
-        return [[self path] substringFromIndex:[basePath length]];
-    return [self absoluteString];
-}
-
-@end
-
-@implementation NSURLResponse (DRTExtras)
-
-- (NSString *)_drt_descriptionSuitableForTestResult
-{
-    int statusCode = 0;
-    if ([self isKindOfClass:[NSHTTPURLResponse class]])
-        statusCode = [(NSHTTPURLResponse *)self statusCode];
-    return [NSString stringWithFormat:@"<NSURLResponse %@, http status code %i>", [[self URL] _drt_descriptionSuitableForTestResult], statusCode];
-}
-
-@end
-
-@implementation NSURLRequest (DRTExtras)
-
-- (NSString *)_drt_descriptionSuitableForTestResult
-{
-    NSString *httpMethod = [self HTTPMethod];
-    if (!httpMethod)
-        httpMethod = @"(none)";
-    return [NSString stringWithFormat:@"<NSURLRequest URL %@, main document URL %@, http method %@>", [[self URL] _drt_descriptionSuitableForTestResult], [[self mainDocumentURL] _drt_descriptionSuitableForTestResult], httpMethod];
-}
-
-@end
-
-@implementation ResourceLoadDelegate
-
-- (id)webView: (WebView *)wv identifierForInitialRequest: (NSURLRequest *)request fromDataSource: (WebDataSource *)dataSource
-{
-    ASSERT([[dataSource webFrame] dataSource] || [[dataSource webFrame] provisionalDataSource]);
-
-    if (!done && gTestRunner->dumpResourceLoadCallbacks())
-        return [[request URL] _drt_descriptionSuitableForTestResult];
-
-    return @"<unknown>";
-}
-
-BOOL isLocalhost(NSString *host)
-{
-    // FIXME: Support IPv6 loopbacks.
-    return NSOrderedSame == [host compare:@"127.0.0.1"] || NSOrderedSame == [host caseInsensitiveCompare:@"localhost"];
-}
-
-BOOL hostIsUsedBySomeTestsToGenerateError(NSString *host)
-{
-    return NSOrderedSame == [host compare:@"255.255.255.255"];
-}
-
--(NSURLRequest *)webView: (WebView *)wv resource:identifier willSendRequest: (NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)dataSource
-{
-    if (!done && gTestRunner->dumpResourceLoadCallbacks()) {
-        NSString *string = [NSString stringWithFormat:@"%@ - willSendRequest %@ redirectResponse %@", identifier, [request _drt_descriptionSuitableForTestResult],
-            [redirectResponse _drt_descriptionSuitableForTestResult]];
-        printf("%s\n", [string UTF8String]);
-    }
-
-    if (!done && !gTestRunner->deferMainResourceDataLoad()) {
-        [dataSource _setDeferMainResourceDataLoad:false];
-    }
-
-    if (!done && gTestRunner->willSendRequestReturnsNull())
-        return nil;
-
-    if (!done && gTestRunner->willSendRequestReturnsNullOnRedirect() && redirectResponse) {
-        printf("Returning null for this redirect\n");
-        return nil;
-    }
-
-    NSURL *url = [request URL];
-    NSString *host = [url host];
-    if (host && (NSOrderedSame == [[url scheme] caseInsensitiveCompare:@"http"] || NSOrderedSame == [[url scheme] caseInsensitiveCompare:@"https"])) {
-        NSString *testPathOrURL = [NSString stringWithUTF8String:gTestRunner->testPathOrURL().c_str()];
-        NSString *lowercaseTestPathOrURL = [testPathOrURL lowercaseString];
-        NSString *testHost = 0;
-        if ([lowercaseTestPathOrURL hasPrefix:@"http:"] || [lowercaseTestPathOrURL hasPrefix:@"https:"])
-            testHost = [[NSURL URLWithString:testPathOrURL] host];
-        if (!isLocalhost(host) && !hostIsUsedBySomeTestsToGenerateError(host) && (!testHost || isLocalhost(testHost))) {
-            printf("Blocked access to external URL %s\n", [[url absoluteString] cStringUsingEncoding:NSUTF8StringEncoding]);
-            return nil;
-        }
-    }
-
-    if (disallowedURLs && CFSetContainsValue(disallowedURLs, url))
-        return nil;
-
-    NSMutableURLRequest *newRequest = [request mutableCopy];
-    const set<string>& clearHeaders = gTestRunner->willSendRequestClearHeaders();
-    for (set<string>::const_iterator header = clearHeaders.begin(); header != clearHeaders.end(); ++header) {
-        NSString *nsHeader = [[NSString alloc] initWithUTF8String:header->c_str()];
-        [newRequest setValue:nil forHTTPHeaderField:nsHeader];
-        [nsHeader release];
-    }
-    const std::string& destination = gTestRunner->redirectionDestinationForURL([[url absoluteString] UTF8String]);
-    if (destination.length())
-        [newRequest setURL:[NSURL URLWithString:[NSString stringWithUTF8String:destination.data()]]];
-
-    return [newRequest autorelease];
-}
-
-- (void)webView:(WebView *)wv resource:(id)identifier didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource
-{
-    if (!gTestRunner->handlesAuthenticationChallenges()) {
-        NSString *string = [NSString stringWithFormat:@"%@ - didReceiveAuthenticationChallenge - Simulating cancelled authentication sheet", identifier];
-        printf("%s\n", [string UTF8String]);
-
-        [[challenge sender] continueWithoutCredentialForAuthenticationChallenge:challenge];
-        return;
-    }
-    
-    const char* user = gTestRunner->authenticationUsername().c_str();
-    NSString *nsUser = [NSString stringWithFormat:@"%s", user ? user : ""];
-
-    const char* password = gTestRunner->authenticationPassword().c_str();
-    NSString *nsPassword = [NSString stringWithFormat:@"%s", password ? password : ""];
-
-    NSString *string = [NSString stringWithFormat:@"%@ - didReceiveAuthenticationChallenge - Responding with %@:%@", identifier, nsUser, nsPassword];
-    printf("%s\n", [string UTF8String]);
-    
-    [[challenge sender] useCredential:[NSURLCredential credentialWithUser:nsUser password:nsPassword persistence:NSURLCredentialPersistenceForSession]
-                              forAuthenticationChallenge:challenge];
-}
-
-- (void)webView:(WebView *)wv resource:(id)identifier didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource
-{
-}
-
--(void)webView: (WebView *)wv resource:identifier didReceiveResponse: (NSURLResponse *)response fromDataSource:(WebDataSource *)dataSource
-{
-    if (!done && gTestRunner->dumpResourceLoadCallbacks()) {
-        NSString *string = [NSString stringWithFormat:@"%@ - didReceiveResponse %@", identifier, [response _drt_descriptionSuitableForTestResult]];
-        printf("%s\n", [string UTF8String]);
-    }
-    if (!done && gTestRunner->dumpResourceResponseMIMETypes())
-        printf("%s has MIME type %s\n", [[[[response URL] relativePath] lastPathComponent] UTF8String], [[response MIMEType] UTF8String]);
-}
-
--(void)webView: (WebView *)wv resource:identifier didReceiveContentLength: (NSInteger)length fromDataSource:(WebDataSource *)dataSource
-{
-}
-
--(void)webView: (WebView *)wv resource:identifier didFinishLoadingFromDataSource:(WebDataSource *)dataSource
-{
-    if (!done && gTestRunner->dumpResourceLoadCallbacks()) {
-        NSString *string = [NSString stringWithFormat:@"%@ - didFinishLoading", identifier];
-        printf("%s\n", [string UTF8String]);
-    }
-}
-
--(void)webView: (WebView *)wv resource:identifier didFailLoadingWithError:(NSError *)error fromDataSource:(WebDataSource *)dataSource
-{
-    if (!done && gTestRunner->dumpResourceLoadCallbacks()) {
-        NSString *string = [NSString stringWithFormat:@"%@ - didFailLoadingWithError: %@", identifier, [error _drt_descriptionSuitableForTestResult]];
-        printf("%s\n", [string UTF8String]);
-    }
-}
-
-- (void)webView: (WebView *)wv plugInFailedWithError:(NSError *)error dataSource:(WebDataSource *)dataSource
-{
-    // The call to -display here simulates the "Plug-in not found" sheet that Safari shows.
-    // It is used for platform/mac/plugins/update-widget-from-style-recalc.html
-    [wv display];
-}
-
--(NSCachedURLResponse *) webView: (WebView *)wv resource:(id)identifier willCacheResponse:(NSCachedURLResponse *)response fromDataSource:(WebDataSource *)dataSource
-{
-    if (!done && gTestRunner->dumpWillCacheResponse()) {
-        NSString *string = [NSString stringWithFormat:@"%@ - willCacheResponse: called", identifier];
-        printf("%s\n", [string UTF8String]);
-    }
-    return response;
-}
-
--(BOOL)webView: (WebView*)webView shouldPaintBrokenImageForURL:(NSURL*)imageURL
-{
-    // Only log the message when shouldPaintBrokenImage() returns NO; this avoids changing results of layout tests with failed
-    // images, e.g., security/block-test-no-port.html.
-    if (!done && gTestRunner->dumpResourceLoadCallbacks() && !gTestRunner->shouldPaintBrokenImage()) {
-        NSString *string = [NSString stringWithFormat:@"%@ - shouldPaintBrokenImage: NO", [imageURL _drt_descriptionSuitableForTestResult]];
-        printf("%s\n", [string UTF8String]);
-    }
-
-    return gTestRunner->shouldPaintBrokenImage();
-}
-@end
diff --git a/Tools/DumpRenderTree/mac/TestRunnerMac.mm b/Tools/DumpRenderTree/mac/TestRunnerMac.mm
deleted file mode 100644
index f410c75..0000000
--- a/Tools/DumpRenderTree/mac/TestRunnerMac.mm
+++ /dev/null
@@ -1,1120 +0,0 @@
-/*
- * Copyright (C) 2007, 2008, 2009, 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "DumpRenderTree.h"
-#import "TestRunner.h"
-
-#import "EditingDelegate.h"
-#import "MockGeolocationProvider.h"
-#import "MockWebNotificationProvider.h"
-#import "PolicyDelegate.h"
-#import "StorageTrackerDelegate.h"
-#import "UIDelegate.h"
-#import "WorkQueue.h"
-#import "WorkQueueItem.h"
-#import <Foundation/Foundation.h>
-#import <JavaScriptCore/JSRetainPtr.h>
-#import <JavaScriptCore/JSStringRef.h>
-#import <JavaScriptCore/JSStringRefCF.h>
-#import <WebCore/GeolocationPosition.h>
-#import <WebKit/DOMDocument.h>
-#import <WebKit/DOMElement.h>
-#import <WebKit/DOMHTMLInputElementPrivate.h>
-#import <WebKit/WebApplicationCache.h>
-#import <WebKit/WebBackForwardList.h>
-#import <WebKit/WebCoreStatistics.h>
-#import <WebKit/WebDOMOperationsPrivate.h>
-#import <WebKit/WebDataSource.h>
-#import <WebKit/WebDatabaseManagerPrivate.h>
-#import <WebKit/WebDeviceOrientation.h>
-#import <WebKit/WebDeviceOrientationProviderMock.h>
-#import <WebKit/WebFrame.h>
-#import <WebKit/WebFrameViewPrivate.h>
-#import <WebKit/WebGeolocationPosition.h>
-#import <WebKit/WebHTMLRepresentation.h>
-#import <WebKit/WebHTMLViewPrivate.h>
-#import <WebKit/WebHistory.h>
-#import <WebKit/WebHistoryPrivate.h>
-#import <WebKit/WebIconDatabasePrivate.h>
-#import <WebKit/WebInspectorPrivate.h>
-#import <WebKit/WebNSURLExtras.h>
-#import <WebKit/WebKitErrors.h>
-#import <WebKit/WebPreferences.h>
-#import <WebKit/WebPreferencesPrivate.h>
-#import <WebKit/WebQuotaManager.h>
-#import <WebKit/WebScriptWorld.h>
-#import <WebKit/WebSecurityOriginPrivate.h>
-#import <WebKit/WebStorageManagerPrivate.h>
-#import <WebKit/WebTypesInternal.h>
-#import <WebKit/WebView.h>
-#import <WebKit/WebViewPrivate.h>
-#import <wtf/CurrentTime.h>
-#import <wtf/HashMap.h>
-#import <wtf/RetainPtr.h>
-
-@interface CommandValidationTarget : NSObject <NSValidatedUserInterfaceItem>
-{
-    SEL _action;
-}
-- (id)initWithAction:(SEL)action;
-@end
-
-@implementation CommandValidationTarget
-
-- (id)initWithAction:(SEL)action
-{
-    self = [super init];
-    if (!self)
-        return nil;
-
-    _action = action;
-    return self;
-}
-
-- (SEL)action
-{
-    return _action;
-}
-
-- (NSInteger)tag
-{
-    return 0;
-}
-
-@end
-
-@interface WebGeolocationPosition (Internal)
-- (id)initWithGeolocationPosition:(PassRefPtr<WebCore::GeolocationPosition>)coreGeolocationPosition;
-@end
-
-TestRunner::~TestRunner()
-{
-}
-
-void TestRunner::addDisallowedURL(JSStringRef url)
-{
-    RetainPtr<CFStringRef> urlCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, url));
-
-    if (!disallowedURLs)
-        disallowedURLs = CFSetCreateMutable(kCFAllocatorDefault, 0, NULL);
-
-    // Canonicalize the URL
-    NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:(NSString *)urlCF.get()]];
-    request = [NSURLProtocol canonicalRequestForRequest:request];
-
-    CFSetAddValue(disallowedURLs, [request URL]);
-}
-
-bool TestRunner::callShouldCloseOnWebView()
-{
-    return [[mainFrame webView] shouldClose];
-}
-
-void TestRunner::clearAllApplicationCaches()
-{
-    [WebApplicationCache deleteAllApplicationCaches];
-}
-
-long long TestRunner::applicationCacheDiskUsageForOrigin(JSStringRef url)
-{
-    RetainPtr<CFStringRef> urlCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, url));
-    WebSecurityOrigin *origin = [[WebSecurityOrigin alloc] initWithURL:[NSURL URLWithString:(NSString *)urlCF.get()]];
-    long long usage = [WebApplicationCache diskUsageForOrigin:origin];
-    [origin release];
-    return usage;
-}
-
-void TestRunner::syncLocalStorage()
-{
-    [[WebStorageManager sharedWebStorageManager] syncLocalStorage];
-}
-
-long long TestRunner::localStorageDiskUsageForOrigin(JSStringRef url)
-{
-    RetainPtr<CFStringRef> urlCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, url));
-    WebSecurityOrigin *origin = [[WebSecurityOrigin alloc] initWithURL:[NSURL URLWithString:(NSString *)urlCF.get()]];
-    long long usage = [[WebStorageManager sharedWebStorageManager] diskUsageForOrigin:origin];
-    [origin release];
-    return usage;
-}
-
-void TestRunner::observeStorageTrackerNotifications(unsigned number)
-{
-    [storageDelegate logNotifications:number controller:this];
-}
-
-void TestRunner::clearApplicationCacheForOrigin(JSStringRef url)
-{
-    RetainPtr<CFStringRef> urlCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, url));
-
-    WebSecurityOrigin *origin = [[WebSecurityOrigin alloc] initWithURL:[NSURL URLWithString:(NSString *)urlCF.get()]];
-    [WebApplicationCache deleteCacheForOrigin:origin];
-    [origin release];
-}
-
-JSValueRef originsArrayToJS(JSContextRef context, NSArray *origins)
-{
-    NSUInteger count = [origins count];
-
-    JSValueRef jsOriginsArray[count];
-    for (NSUInteger i = 0; i < count; i++) {
-        NSString *origin = [[origins objectAtIndex:i] databaseIdentifier];
-        JSRetainPtr<JSStringRef> originJS(Adopt, JSStringCreateWithCFString((CFStringRef)origin));
-        jsOriginsArray[i] = JSValueMakeString(context, originJS.get());
-    }
-
-    return JSObjectMakeArray(context, count, jsOriginsArray, NULL);
-}
-
-JSValueRef TestRunner::originsWithApplicationCache(JSContextRef context)
-{
-    return originsArrayToJS(context, [WebApplicationCache originsWithCache]);
-}
-
-void TestRunner::clearAllDatabases()
-{
-    [[WebDatabaseManager sharedWebDatabaseManager] deleteAllDatabases];
-}
-
-void TestRunner::deleteAllLocalStorage()
-{
-    [[WebStorageManager sharedWebStorageManager] deleteAllOrigins];
-}
-
-void TestRunner::setStorageDatabaseIdleInterval(double interval)
-{
-    [WebStorageManager setStorageDatabaseIdleInterval:interval];
-}
-
-void TestRunner::closeIdleLocalStorageDatabases()
-{
-    [WebStorageManager closeIdleLocalStorageDatabases];
-}
-
-JSValueRef TestRunner::originsWithLocalStorage(JSContextRef context)
-{
-    return originsArrayToJS(context, [[WebStorageManager sharedWebStorageManager] origins]);
-}
-
-void TestRunner::deleteLocalStorageForOrigin(JSStringRef URL)
-{
-    RetainPtr<CFStringRef> urlCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, URL));
-    
-    WebSecurityOrigin *origin = [[WebSecurityOrigin alloc] initWithURL:[NSURL URLWithString:(NSString *)urlCF.get()]];
-    [[WebStorageManager sharedWebStorageManager] deleteOrigin:origin];
-    [origin release];
-}
-
-void TestRunner::clearBackForwardList()
-{
-    WebBackForwardList *backForwardList = [[mainFrame webView] backForwardList];
-    WebHistoryItem *item = [[backForwardList currentItem] retain];
-
-    // We clear the history by setting the back/forward list's capacity to 0
-    // then restoring it back and adding back the current item.
-    int capacity = [backForwardList capacity];
-    [backForwardList setCapacity:0];
-    [backForwardList setCapacity:capacity];
-    [backForwardList addItem:item];
-    [backForwardList goToItem:item];
-    [item release];
-}
-
-JSStringRef TestRunner::copyDecodedHostName(JSStringRef name)
-{
-    RetainPtr<CFStringRef> nameCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, name));
-    NSString *nameNS = (NSString *)nameCF.get();
-    return JSStringCreateWithCFString((CFStringRef)[nameNS _web_decodeHostName]);
-}
-
-JSStringRef TestRunner::copyEncodedHostName(JSStringRef name)
-{
-    RetainPtr<CFStringRef> nameCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, name));
-    NSString *nameNS = (NSString *)nameCF.get();
-    return JSStringCreateWithCFString((CFStringRef)[nameNS _web_encodeHostName]);
-}
-
-void TestRunner::display()
-{
-    displayWebView();
-}
-
-void TestRunner::keepWebHistory()
-{
-    if (![WebHistory optionalSharedHistory]) {
-        WebHistory *history = [[WebHistory alloc] init];
-        [WebHistory setOptionalSharedHistory:history];
-        [history release];
-    }
-}
-
-int TestRunner::numberOfPendingGeolocationPermissionRequests()
-{
-    return [[[mainFrame webView] UIDelegate] numberOfPendingGeolocationPermissionRequests];
-}
-
-size_t TestRunner::webHistoryItemCount()
-{
-    return [[[WebHistory optionalSharedHistory] allItems] count];
-}
-
-JSRetainPtr<JSStringRef> TestRunner::platformName() const
-{
-    JSRetainPtr<JSStringRef> platformName(Adopt, JSStringCreateWithUTF8CString("mac"));
-    return platformName;
-}
-
-void TestRunner::notifyDone()
-{
-    if (m_waitToDump && !topLoadingFrame && !WorkQueue::shared()->count())
-        dump();
-    m_waitToDump = false;
-}
-
-static inline std::string stringFromJSString(JSStringRef jsString)
-{
-    size_t maxBufferSize = JSStringGetMaximumUTF8CStringSize(jsString);
-    char* utf8Buffer = new char[maxBufferSize];
-    size_t bytesWrittenToUTF8Buffer = JSStringGetUTF8CString(jsString, utf8Buffer, maxBufferSize);
-    std::string stdString(utf8Buffer, bytesWrittenToUTF8Buffer - 1); // bytesWrittenToUTF8Buffer includes a trailing \0 which std::string doesn't need.
-    delete[] utf8Buffer;
-    return stdString;
-}
-
-static inline size_t indexOfSeparatorAfterDirectoryName(const std::string& directoryName, const std::string& fullPath)
-{
-    std::string searchKey = "/" + directoryName + "/";
-    size_t indexOfSearchKeyStart = fullPath.rfind(searchKey);
-    if (indexOfSearchKeyStart == std::string::npos) {
-        ASSERT_NOT_REACHED();
-        return 0;
-    }
-    // Callers expect the return value not to end in "/", so searchKey.length() - 1.
-    return indexOfSearchKeyStart + searchKey.length() - 1;
-}
-
-static inline std::string resourceRootAbsolutePath(const std::string& testPathOrURL, const std::string& expectedRootName)
-{
-    char* localResourceRootEnv = getenv("LOCAL_RESOURCE_ROOT");
-    if (localResourceRootEnv)
-        return std::string(localResourceRootEnv);
-
-    // This fallback approach works for non-http tests and is useful
-    // in the case when we're running DRT directly from the command line.
-    return testPathOrURL.substr(0, indexOfSeparatorAfterDirectoryName(expectedRootName, testPathOrURL));
-}
-
-JSStringRef TestRunner::pathToLocalResource(JSContextRef context, JSStringRef localResourceJSString)
-{
-    // The passed in path will be an absolute path to the resource starting
-    // with "/tmp" or "/tmp/LayoutTests", optionally starting with the explicit file:// protocol.
-    // /tmp maps to DUMPRENDERTREE_TEMP, and /tmp/LayoutTests maps to LOCAL_RESOURCE_ROOT.
-    // FIXME: This code should work on all *nix platforms and can be moved into TestRunner.cpp.
-    std::string expectedRootName;
-    std::string absolutePathToResourceRoot;
-    std::string localResourceString = stringFromJSString(localResourceJSString);
-
-    if (localResourceString.find("LayoutTests") != std::string::npos) {
-        expectedRootName = "LayoutTests";
-        absolutePathToResourceRoot = resourceRootAbsolutePath(m_testPathOrURL, expectedRootName);
-    } else if (localResourceString.find("tmp") != std::string::npos) {
-        expectedRootName = "tmp";
-        absolutePathToResourceRoot = getenv("DUMPRENDERTREE_TEMP");
-    } else {
-        ASSERT_NOT_REACHED(); // pathToLocalResource was passed a path it doesn't know how to map.
-    }
-    ASSERT(!absolutePathToResourceRoot.empty());
-    size_t indexOfSeparatorAfterRootName = indexOfSeparatorAfterDirectoryName(expectedRootName, localResourceString);
-    std::string absolutePathToLocalResource = absolutePathToResourceRoot + localResourceString.substr(indexOfSeparatorAfterRootName);
-
-    // Note: It's important that we keep the file:// or http tests will get confused.
-    if (localResourceString.find("file://") != std::string::npos) {
-        ASSERT(absolutePathToLocalResource[0] == '/');
-        absolutePathToLocalResource = std::string("file://") + absolutePathToLocalResource;
-    }
-    return JSStringCreateWithUTF8CString(absolutePathToLocalResource.c_str());
-}
-
-void TestRunner::queueLoad(JSStringRef url, JSStringRef target)
-{
-    RetainPtr<CFStringRef> urlCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, url));
-    NSString *urlNS = (NSString *)urlCF.get();
-
-    NSURL *nsurl = [NSURL URLWithString:urlNS relativeToURL:[[[mainFrame dataSource] response] URL]];
-    NSString *nsurlString = [nsurl absoluteString];
-
-    JSRetainPtr<JSStringRef> absoluteURL(Adopt, JSStringCreateWithUTF8CString([nsurlString UTF8String]));
-    WorkQueue::shared()->queue(new LoadItem(absoluteURL.get(), target));
-}
-
-void TestRunner::setAcceptsEditing(bool newAcceptsEditing)
-{
-    [(EditingDelegate *)[[mainFrame webView] editingDelegate] setAcceptsEditing:newAcceptsEditing];
-}
-
-void TestRunner::setAlwaysAcceptCookies(bool alwaysAcceptCookies)
-{
-    if (alwaysAcceptCookies == m_alwaysAcceptCookies)
-        return;
-
-    m_alwaysAcceptCookies = alwaysAcceptCookies;
-    NSHTTPCookieAcceptPolicy cookieAcceptPolicy = alwaysAcceptCookies ? NSHTTPCookieAcceptPolicyAlways : NSHTTPCookieAcceptPolicyOnlyFromMainDocumentDomain;
-    [WebPreferences _setCurrentNetworkLoaderSessionCookieAcceptPolicy:cookieAcceptPolicy];
-}
-
-void TestRunner::setAppCacheMaximumSize(unsigned long long size)
-{
-    [WebApplicationCache setMaximumSize:size];
-}
-
-void TestRunner::setApplicationCacheOriginQuota(unsigned long long quota)
-{
-    WebSecurityOrigin *origin = [[WebSecurityOrigin alloc] initWithURL:[NSURL URLWithString:@"http://127.0.0.1:8000"]];
-    [[origin applicationCacheQuotaManager] setQuota:quota];
-    [origin release];
-}
-
-void TestRunner::setAuthorAndUserStylesEnabled(bool flag)
-{
-    [[[mainFrame webView] preferences] setAuthorAndUserStylesEnabled:flag];
-}
-
-void TestRunner::setCustomPolicyDelegate(bool setDelegate, bool permissive)
-{
-    if (setDelegate) {
-        [policyDelegate setPermissive:permissive];
-        [[mainFrame webView] setPolicyDelegate:policyDelegate];
-    } else
-        [[mainFrame webView] setPolicyDelegate:nil];
-}
-
-void TestRunner::setDatabaseQuota(unsigned long long quota)
-{    
-    WebSecurityOrigin *origin = [[WebSecurityOrigin alloc] initWithURL:[NSURL URLWithString:@"file:///"]];
-    [[origin databaseQuotaManager] setQuota:quota];
-    [origin release];
-}
-
-void TestRunner::goBack()
-{
-    [[mainFrame webView] goBack];
-}
-
-void TestRunner::setDefersLoading(bool defers)
-{
-    [[mainFrame webView] setDefersCallbacks:defers];
-}
-
-void TestRunner::setDomainRelaxationForbiddenForURLScheme(bool forbidden, JSStringRef scheme)
-{
-    RetainPtr<CFStringRef> schemeCFString(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, scheme));
-    [WebView _setDomainRelaxationForbidden:forbidden forURLScheme:(NSString *)schemeCFString.get()];
-}
-
-void TestRunner::setMockDeviceOrientation(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma)
-{
-    // DumpRenderTree configured the WebView to use WebDeviceOrientationProviderMock.
-    id<WebDeviceOrientationProvider> provider = [[mainFrame webView] _deviceOrientationProvider];
-    WebDeviceOrientationProviderMock *mockProvider = static_cast<WebDeviceOrientationProviderMock*>(provider);
-    WebDeviceOrientation *orientation = [[WebDeviceOrientation alloc] initWithCanProvideAlpha:canProvideAlpha alpha:alpha canProvideBeta:canProvideBeta beta:beta canProvideGamma:canProvideGamma gamma:gamma];
-    [mockProvider setOrientation:orientation];
-    [orientation release];
-}
-
-void TestRunner::setMockGeolocationPosition(double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed)
-{
-    WebGeolocationPosition *position = nil;
-    if (!providesAltitude && !providesAltitudeAccuracy && !providesHeading && !providesSpeed) {
-        // Test the exposed API.
-        position = [[WebGeolocationPosition alloc] initWithTimestamp:currentTime() latitude:latitude longitude:longitude accuracy:accuracy];
-    } else {
-        RefPtr<WebCore::GeolocationPosition> coreGeolocationPosition = WebCore::GeolocationPosition::create(currentTime(), latitude, longitude, accuracy, providesAltitude, altitude, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed);
-        position = [[WebGeolocationPosition alloc] initWithGeolocationPosition:(coreGeolocationPosition.release())];
-    }
-    [[MockGeolocationProvider shared] setPosition:position];
-    [position release];
-}
-
-void TestRunner::setMockGeolocationPositionUnavailableError(JSStringRef message)
-{
-    RetainPtr<CFStringRef> messageCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, message));
-    NSString *messageNS = (NSString *)messageCF.get();
-    [[MockGeolocationProvider shared] setPositionUnavailableErrorWithMessage:messageNS];
-}
-
-void TestRunner::setGeolocationPermission(bool allow)
-{
-    setGeolocationPermissionCommon(allow);
-    [[[mainFrame webView] UIDelegate] didSetMockGeolocationPermission];
-}
-
-void TestRunner::addMockSpeechInputResult(JSStringRef result, double confidence, JSStringRef language)
-{
-    // FIXME: Implement for speech input layout tests.
-    // See https://bugs.webkit.org/show_bug.cgi?id=39485.
-}
-
-void TestRunner::setMockSpeechInputDumpRect(bool flag)
-{
-    // FIXME: Implement for speech input layout tests.
-    // See https://bugs.webkit.org/show_bug.cgi?id=39485.
-}
-
-void TestRunner::startSpeechInput(JSContextRef inputElement)
-{
-    // FIXME: Implement for speech input layout tests.
-    // See https://bugs.webkit.org/show_bug.cgi?id=39485.
-}
-
-void TestRunner::setIconDatabaseEnabled(bool iconDatabaseEnabled)
-{
-    // FIXME: Workaround <rdar://problem/6480108>
-    static WebIconDatabase *sharedWebIconDatabase = NULL;
-    if (!sharedWebIconDatabase) {
-        if (!iconDatabaseEnabled)
-            return;
-        sharedWebIconDatabase = [WebIconDatabase sharedIconDatabase];
-        if ([sharedWebIconDatabase isEnabled] == iconDatabaseEnabled)
-            return;
-    }
-    [sharedWebIconDatabase setEnabled:iconDatabaseEnabled];
-}
-
-void TestRunner::setMainFrameIsFirstResponder(bool flag)
-{
-    NSView *documentView = [[mainFrame frameView] documentView];
-    
-    NSResponder *firstResponder = flag ? documentView : nil;
-    [[[mainFrame webView] window] makeFirstResponder:firstResponder];
-}
-
-void TestRunner::setPrivateBrowsingEnabled(bool privateBrowsingEnabled)
-{
-    [[[mainFrame webView] preferences] setPrivateBrowsingEnabled:privateBrowsingEnabled];
-}
-
-void TestRunner::setXSSAuditorEnabled(bool enabled)
-{
-    [[[mainFrame webView] preferences] setXSSAuditorEnabled:enabled];
-}
-
-void TestRunner::setSpatialNavigationEnabled(bool enabled)
-{
-    [[[mainFrame webView] preferences] setSpatialNavigationEnabled:enabled];
-}
-
-void TestRunner::setAllowUniversalAccessFromFileURLs(bool enabled)
-{
-    [[[mainFrame webView] preferences] setAllowUniversalAccessFromFileURLs:enabled];
-}
-
-void TestRunner::setAllowFileAccessFromFileURLs(bool enabled)
-{
-    [[[mainFrame webView] preferences] setAllowFileAccessFromFileURLs:enabled];
-}
-
-void TestRunner::setPopupBlockingEnabled(bool popupBlockingEnabled)
-{
-    [[[mainFrame webView] preferences] setJavaScriptCanOpenWindowsAutomatically:!popupBlockingEnabled];
-}
-
-void TestRunner::setPluginsEnabled(bool pluginsEnabled)
-{
-    [[[mainFrame webView] preferences] setPlugInsEnabled:pluginsEnabled];
-}
-
-void TestRunner::setJavaScriptCanAccessClipboard(bool enabled)
-{
-    [[[mainFrame webView] preferences] setJavaScriptCanAccessClipboard:enabled];
-}
-
-void TestRunner::setAutomaticLinkDetectionEnabled(bool enabled)
-{
-    [[mainFrame webView] setAutomaticLinkDetectionEnabled:enabled];
-}
-
-void TestRunner::setTabKeyCyclesThroughElements(bool cycles)
-{
-    [[mainFrame webView] setTabKeyCyclesThroughElements:cycles];
-}
-
-void TestRunner::setUseDashboardCompatibilityMode(bool flag)
-{
-    [[mainFrame webView] _setDashboardBehavior:WebDashboardBehaviorUseBackwardCompatibilityMode to:flag];
-}
-
-void TestRunner::setUserStyleSheetEnabled(bool flag)
-{
-    [[WebPreferences standardPreferences] setUserStyleSheetEnabled:flag];
-}
-
-void TestRunner::setUserStyleSheetLocation(JSStringRef path)
-{
-    RetainPtr<CFStringRef> pathCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, path));
-    NSURL *url = [NSURL URLWithString:(NSString *)pathCF.get()];
-    [[WebPreferences standardPreferences] setUserStyleSheetLocation:url];
-}
-
-void TestRunner::setValueForUser(JSContextRef context, JSValueRef nodeObject, JSStringRef value)
-{
-    DOMElement *element = [DOMElement _DOMElementFromJSContext:context value:nodeObject];
-    if (!element || ![element isKindOfClass:[DOMHTMLInputElement class]])
-        return;
-
-    RetainPtr<CFStringRef> valueCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, value));
-    [(DOMHTMLInputElement *)element setValueForUser:(NSString *)valueCF.get()];
-}
-
-void TestRunner::setViewModeMediaFeature(JSStringRef mode)
-{
-    // FIXME: implement
-}
-
-void TestRunner::dispatchPendingLoadRequests()
-{
-    [[mainFrame webView] _dispatchPendingLoadRequests];
-}
-
-void TestRunner::overridePreference(JSStringRef key, JSStringRef value)
-{
-    RetainPtr<CFStringRef> keyCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, key));
-    NSString *keyNS = (NSString *)keyCF.get();
-
-    RetainPtr<CFStringRef> valueCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, value));
-    NSString *valueNS = (NSString *)valueCF.get();
-
-    [[WebPreferences standardPreferences] _setPreferenceForTestWithValue:valueNS forKey:keyNS];
-}
-
-void TestRunner::removeAllVisitedLinks()
-{
-    [WebHistory _removeAllVisitedLinks];
-}
-
-void TestRunner::setPersistentUserStyleSheetLocation(JSStringRef jsURL)
-{
-    RetainPtr<CFStringRef> urlString(AdoptCF, JSStringCopyCFString(0, jsURL));
-    ::setPersistentUserStyleSheetLocation(urlString.get());
-}
-
-void TestRunner::clearPersistentUserStyleSheet()
-{
-    ::setPersistentUserStyleSheetLocation(0);
-}
-
-void TestRunner::setWindowIsKey(bool windowIsKey)
-{
-    m_windowIsKey = windowIsKey;
-    [[mainFrame webView] _updateActiveState];
-}
-
-static const CFTimeInterval waitToDumpWatchdogInterval = 30.0;
-
-static void waitUntilDoneWatchdogFired(CFRunLoopTimerRef timer, void* info)
-{
-    gTestRunner->waitToDumpWatchdogTimerFired();
-}
-
-void TestRunner::setWaitToDump(bool waitUntilDone)
-{
-    m_waitToDump = waitUntilDone;
-    if (m_waitToDump && shouldSetWaitToDumpWatchdog())
-        setWaitToDumpWatchdog(CFRunLoopTimerCreate(kCFAllocatorDefault, CFAbsoluteTimeGetCurrent() + waitToDumpWatchdogInterval, 0, 0, 0, waitUntilDoneWatchdogFired, NULL));
-}
-
-int TestRunner::windowCount()
-{
-    return CFArrayGetCount(openWindowsRef);
-}
-
-void TestRunner::execCommand(JSStringRef name, JSStringRef value)
-{
-    RetainPtr<CFStringRef> nameCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, name));
-    NSString *nameNS = (NSString *)nameCF.get();
-
-    RetainPtr<CFStringRef> valueCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, value));
-    NSString *valueNS = (NSString *)valueCF.get();
-
-    [[mainFrame webView] _executeCoreCommandByName:nameNS value:valueNS];
-}
-
-bool TestRunner::findString(JSContextRef context, JSStringRef target, JSObjectRef optionsArray)
-{
-    WebFindOptions options = 0;
-
-    JSRetainPtr<JSStringRef> lengthPropertyName(Adopt, JSStringCreateWithUTF8CString("length"));
-    JSValueRef lengthValue = JSObjectGetProperty(context, optionsArray, lengthPropertyName.get(), 0);
-    if (!JSValueIsNumber(context, lengthValue))
-        return false;
-
-    RetainPtr<CFStringRef> targetCFString(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, target));
-
-    size_t length = static_cast<size_t>(JSValueToNumber(context, lengthValue, 0));
-    for (size_t i = 0; i < length; ++i) {
-        JSValueRef value = JSObjectGetPropertyAtIndex(context, optionsArray, i, 0);
-        if (!JSValueIsString(context, value))
-            continue;
-
-        JSRetainPtr<JSStringRef> optionName(Adopt, JSValueToStringCopy(context, value, 0));
-
-        if (JSStringIsEqualToUTF8CString(optionName.get(), "CaseInsensitive"))
-            options |= WebFindOptionsCaseInsensitive;
-        else if (JSStringIsEqualToUTF8CString(optionName.get(), "AtWordStarts"))
-            options |= WebFindOptionsAtWordStarts;
-        else if (JSStringIsEqualToUTF8CString(optionName.get(), "TreatMedialCapitalAsWordStart"))
-            options |= WebFindOptionsTreatMedialCapitalAsWordStart;
-        else if (JSStringIsEqualToUTF8CString(optionName.get(), "Backwards"))
-            options |= WebFindOptionsBackwards;
-        else if (JSStringIsEqualToUTF8CString(optionName.get(), "WrapAround"))
-            options |= WebFindOptionsWrapAround;
-        else if (JSStringIsEqualToUTF8CString(optionName.get(), "StartInSelection"))
-            options |= WebFindOptionsStartInSelection;
-    }
-
-    return [[mainFrame webView] findString:(NSString *)targetCFString.get() options:options];
-}
-
-void TestRunner::setCacheModel(int cacheModel)
-{
-    [[WebPreferences standardPreferences] setCacheModel:cacheModel];
-}
-
-bool TestRunner::isCommandEnabled(JSStringRef name)
-{
-    RetainPtr<CFStringRef> nameCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, name));
-    NSString *nameNS = (NSString *)nameCF.get();
-
-    // Accept command strings with capital letters for first letter without trailing colon.
-    if (![nameNS hasSuffix:@":"] && [nameNS length]) {
-        nameNS = [[[[nameNS substringToIndex:1] lowercaseString]
-            stringByAppendingString:[nameNS substringFromIndex:1]]
-            stringByAppendingString:@":"];
-    }
-
-    SEL selector = NSSelectorFromString(nameNS);
-    RetainPtr<CommandValidationTarget> target(AdoptNS, [[CommandValidationTarget alloc] initWithAction:selector]);
-    id validator = [NSApp targetForAction:selector to:[mainFrame webView] from:target.get()];
-    if (!validator)
-        return false;
-    if (![validator respondsToSelector:selector])
-        return false;
-    if (![validator respondsToSelector:@selector(validateUserInterfaceItem:)])
-        return true;
-    return [validator validateUserInterfaceItem:target.get()];
-}
-
-void TestRunner::waitForPolicyDelegate()
-{
-    setWaitToDump(true);
-    [policyDelegate setControllerToNotifyDone:this];
-    [[mainFrame webView] setPolicyDelegate:policyDelegate];
-}
-
-void TestRunner::addOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef destinationProtocol, JSStringRef destinationHost, bool allowDestinationSubdomains)
-{
-    RetainPtr<CFStringRef> sourceOriginCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, sourceOrigin));
-    NSString *sourceOriginNS = (NSString *)sourceOriginCF.get();
-    RetainPtr<CFStringRef> protocolCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, destinationProtocol));
-    NSString *destinationProtocolNS = (NSString *)protocolCF.get();
-    RetainPtr<CFStringRef> hostCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, destinationHost));
-    NSString *destinationHostNS = (NSString *)hostCF.get();
-    [WebView _addOriginAccessWhitelistEntryWithSourceOrigin:sourceOriginNS destinationProtocol:destinationProtocolNS destinationHost:destinationHostNS allowDestinationSubdomains:allowDestinationSubdomains];
-}
-
-void TestRunner::removeOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef destinationProtocol, JSStringRef destinationHost, bool allowDestinationSubdomains)
-{
-    RetainPtr<CFStringRef> sourceOriginCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, sourceOrigin));
-    NSString *sourceOriginNS = (NSString *)sourceOriginCF.get();
-    RetainPtr<CFStringRef> protocolCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, destinationProtocol));
-    NSString *destinationProtocolNS = (NSString *)protocolCF.get();
-    RetainPtr<CFStringRef> hostCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, destinationHost));
-    NSString *destinationHostNS = (NSString *)hostCF.get();
-    [WebView _removeOriginAccessWhitelistEntryWithSourceOrigin:sourceOriginNS destinationProtocol:destinationProtocolNS destinationHost:destinationHostNS allowDestinationSubdomains:allowDestinationSubdomains];
-}
-
-void TestRunner::setScrollbarPolicy(JSStringRef orientation, JSStringRef policy)
-{
-    // FIXME: implement
-}
-
-void TestRunner::addUserScript(JSStringRef source, bool runAtStart, bool allFrames)
-{
-    RetainPtr<CFStringRef> sourceCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, source));
-    NSString *sourceNS = (NSString *)sourceCF.get();
-    [WebView _addUserScriptToGroup:@"org.webkit.DumpRenderTree" world:[WebScriptWorld world] source:sourceNS url:nil whitelist:nil blacklist:nil injectionTime:(runAtStart ? WebInjectAtDocumentStart : WebInjectAtDocumentEnd) injectedFrames:(allFrames ? WebInjectInAllFrames : WebInjectInTopFrameOnly)];
-}
-
-void TestRunner::addUserStyleSheet(JSStringRef source, bool allFrames)
-{
-    RetainPtr<CFStringRef> sourceCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, source));
-    NSString *sourceNS = (NSString *)sourceCF.get();
-    [WebView _addUserStyleSheetToGroup:@"org.webkit.DumpRenderTree" world:[WebScriptWorld world] source:sourceNS url:nil whitelist:nil blacklist:nil injectedFrames:(allFrames ? WebInjectInAllFrames : WebInjectInTopFrameOnly)];
-}
-
-void TestRunner::setDeveloperExtrasEnabled(bool enabled)
-{
-    [[[mainFrame webView] preferences] setDeveloperExtrasEnabled:enabled];
-}
-
-void TestRunner::showWebInspector()
-{
-    [[[mainFrame webView] inspector] show:nil];
-}
-
-void TestRunner::closeWebInspector()
-{
-    [[[mainFrame webView] inspector] close:nil];
-}
-
-void TestRunner::evaluateInWebInspector(long callId, JSStringRef script)
-{
-    RetainPtr<CFStringRef> scriptCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, script));
-    NSString *scriptNS = (NSString *)scriptCF.get();
-    [[[mainFrame webView] inspector] evaluateInFrontend:nil callId:callId script:scriptNS];
-}
-
-typedef HashMap<unsigned, RetainPtr<WebScriptWorld> > WorldMap;
-static WorldMap& worldMap()
-{
-    static WorldMap& map = *new WorldMap;
-    return map;
-}
-
-unsigned worldIDForWorld(WebScriptWorld *world)
-{
-    WorldMap::const_iterator end = worldMap().end();
-    for (WorldMap::const_iterator it = worldMap().begin(); it != end; ++it) {
-        if (it->value == world)
-            return it->key;
-    }
-
-    return 0;
-}
-
-void TestRunner::evaluateScriptInIsolatedWorldAndReturnValue(unsigned worldID, JSObjectRef globalObject, JSStringRef script)
-{
-    // FIXME: Implement this.
-}
-
-void TestRunner::evaluateScriptInIsolatedWorld(unsigned worldID, JSObjectRef globalObject, JSStringRef script)
-{
-    RetainPtr<CFStringRef> scriptCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, script));
-    NSString *scriptNS = (NSString *)scriptCF.get();
-
-    // A worldID of 0 always corresponds to a new world. Any other worldID corresponds to a world
-    // that is created once and cached forever.
-    WebScriptWorld *world;
-    if (!worldID)
-        world = [WebScriptWorld world];
-    else {
-        RetainPtr<WebScriptWorld>& worldSlot = worldMap().add(worldID, 0).iterator->value;
-        if (!worldSlot)
-            worldSlot.adoptNS([[WebScriptWorld alloc] init]);
-        world = worldSlot.get();
-    }
-
-    [mainFrame _stringByEvaluatingJavaScriptFromString:scriptNS withGlobalObject:globalObject inScriptWorld:world];
-}
-
-@interface APITestDelegate : NSObject
-{
-    bool* m_condition;
-}
-@end
-
-@implementation APITestDelegate
-
-- (id)initWithCompletionCondition:(bool*)condition
-{
-    [super init];
-    ASSERT(condition);
-    m_condition = condition;
-    *m_condition = false;
-    return self;
-}
-
-- (void)webView:(WebView *)sender didFailLoadWithError:(NSError *)error forFrame:(WebFrame *)frame
-{
-    printf("API Test load failed\n");
-    *m_condition = true;
-}
-
-- (void)webView:(WebView *)sender didFailProvisionalLoadWithError:(NSError *)error forFrame:(WebFrame *)frame
-{
-    printf("API Test load failed provisional\n");
-    *m_condition = true;
-}
-
-- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
-{
-    printf("API Test load succeeded\n");
-    *m_condition = true;
-}
-
-@end
-
-void TestRunner::apiTestNewWindowDataLoadBaseURL(JSStringRef utf8Data, JSStringRef baseURL)
-{
-    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
-
-    RetainPtr<CFStringRef> utf8DataCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, utf8Data));
-    RetainPtr<CFStringRef> baseURLCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, baseURL));
-    
-    WebView *webView = [[WebView alloc] initWithFrame:NSZeroRect frameName:@"" groupName:@""];
-
-    bool done = false;
-    APITestDelegate *delegate = [[APITestDelegate alloc] initWithCompletionCondition:&done];
-    [webView setFrameLoadDelegate:delegate];
-
-    [[webView mainFrame] loadData:[(NSString *)utf8DataCF.get() dataUsingEncoding:NSUTF8StringEncoding] MIMEType:@"text/html" textEncodingName:@"utf-8" baseURL:[NSURL URLWithString:(NSString *)baseURLCF.get()]];
-    
-    while (!done) {
-        NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
-        [[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantPast]];
-        [pool release];
-    }
-        
-    [webView close];
-    [webView release];
-    [delegate release];
-    [pool release];
-}
-
-void TestRunner::apiTestGoToCurrentBackForwardItem()
-{
-    WebView *view = [mainFrame webView];
-    [view goToBackForwardItem:[[view backForwardList] currentItem]];
-}
-
-void TestRunner::setWebViewEditable(bool editable)
-{
-    WebView *view = [mainFrame webView];
-    [view setEditable:editable];
-}
-
-static NSString *SynchronousLoaderRunLoopMode = @"DumpRenderTreeSynchronousLoaderRunLoopMode";
-
-#if __MAC_OS_X_VERSION_MIN_REQUIRED <= 1060
-@protocol NSURLConnectionDelegate <NSObject>
-@end
-#endif
-
-@interface SynchronousLoader : NSObject <NSURLConnectionDelegate>
-{
-    NSString *m_username;
-    NSString *m_password;
-    BOOL m_isDone;
-}
-+ (void)makeRequest:(NSURLRequest *)request withUsername:(NSString *)username password:(NSString *)password;
-@end
-
-@implementation SynchronousLoader : NSObject
-- (void)dealloc
-{
-    [m_username release];
-    [m_password release];
-
-    [super dealloc];
-}
-
-- (BOOL)connectionShouldUseCredentialStorage:(NSURLConnection *)connection
-{
-    return YES;
-}
-
-- (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
-{
-    if ([challenge previousFailureCount] == 0) {
-        RetainPtr<NSURLCredential> credential(AdoptNS, [[NSURLCredential alloc]  initWithUser:m_username password:m_password persistence:NSURLCredentialPersistenceForSession]);
-        [[challenge sender] useCredential:credential.get() forAuthenticationChallenge:challenge];
-        return;
-    }
-    [[challenge sender] cancelAuthenticationChallenge:challenge];
-}
-
-- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
-{
-    printf("SynchronousLoader failed: %s\n", [[error description] UTF8String]);
-    m_isDone = YES;
-}
-
-- (void)connectionDidFinishLoading:(NSURLConnection *)connection
-{
-    m_isDone = YES;
-}
-
-+ (void)makeRequest:(NSURLRequest *)request withUsername:(NSString *)username password:(NSString *)password
-{
-    ASSERT(![[request URL] user]);
-    ASSERT(![[request URL] password]);
-
-    SynchronousLoader *delegate = [[SynchronousLoader alloc] init];
-    delegate->m_username = [username copy];
-    delegate->m_password = [password copy];
-
-    NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request delegate:delegate startImmediately:NO];
-    [connection scheduleInRunLoop:[NSRunLoop currentRunLoop] forMode:SynchronousLoaderRunLoopMode];
-    [connection start];
-    
-    while (!delegate->m_isDone)
-        [[NSRunLoop currentRunLoop] runMode:SynchronousLoaderRunLoopMode beforeDate:[NSDate distantFuture]];
-
-    [connection cancel];
-    
-    [connection release];
-    [delegate release];
-}
-
-@end
-
-void TestRunner::authenticateSession(JSStringRef url, JSStringRef username, JSStringRef password)
-{
-    // See <rdar://problem/7880699>.
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060
-    RetainPtr<CFStringRef> urlStringCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, url));
-    RetainPtr<CFStringRef> usernameCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, username));
-    RetainPtr<CFStringRef> passwordCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, password));
-
-    RetainPtr<NSURLRequest> request(AdoptNS, [[NSURLRequest alloc] initWithURL:[NSURL URLWithString:(NSString *)urlStringCF.get()]]);
-
-    [SynchronousLoader makeRequest:request.get() withUsername:(NSString *)usernameCF.get() password:(NSString *)passwordCF.get()];
-#endif
-}
-
-void TestRunner::abortModal()
-{
-    [NSApp abortModal];
-}
-
-void TestRunner::setSerializeHTTPLoads(bool serialize)
-{
-    [WebView _setLoadResourcesSerially:serialize];
-}
-
-void TestRunner::setTextDirection(JSStringRef directionName)
-{
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060
-    if (JSStringIsEqualToUTF8CString(directionName, "ltr"))
-        [[mainFrame webView] makeBaseWritingDirectionLeftToRight:0];
-    else if (JSStringIsEqualToUTF8CString(directionName, "rtl"))
-        [[mainFrame webView] makeBaseWritingDirectionRightToLeft:0];
-    else
-        ASSERT_NOT_REACHED();
-#endif
-}
-
-void TestRunner::addChromeInputField()
-{
-    NSTextField *textField = [[NSTextField alloc] initWithFrame:NSMakeRect(0, 0, 100, 20)];
-    textField.tag = 1;
-    [[[[mainFrame webView] window] contentView] addSubview:textField];
-    [textField release];
-    
-    [textField setNextKeyView:[mainFrame webView]];
-    [[mainFrame webView] setNextKeyView:textField];
-}
-
-void TestRunner::removeChromeInputField()
-{
-    NSView* textField = [[[[mainFrame webView] window] contentView] viewWithTag:1];
-    if (textField) {
-        [textField removeFromSuperview];
-        focusWebView();
-    }
-}
-
-void TestRunner::focusWebView()
-{
-    [[[mainFrame webView] window] makeFirstResponder:[mainFrame webView]];
-}
-
-void TestRunner::setBackingScaleFactor(double backingScaleFactor)
-{
-    [[mainFrame webView] _setCustomBackingScaleFactor:backingScaleFactor];
-}
-
-void TestRunner::resetPageVisibility()
-{
-    WebView *webView = [mainFrame webView];
-    if ([webView respondsToSelector:@selector(_setVisibilityState:isInitialState:)])
-        [webView _setVisibilityState:WebPageVisibilityStateVisible isInitialState:YES];
-}
-
-void TestRunner::setPageVisibility(const char* newVisibility)
-{
-    if (!newVisibility)
-        return;
-
-    WebView *webView = [mainFrame webView];
-    if (!strcmp(newVisibility, "visible"))
-        [webView _setVisibilityState:WebPageVisibilityStateVisible isInitialState:NO];
-    else if (!strcmp(newVisibility, "hidden"))
-        [webView _setVisibilityState:WebPageVisibilityStateHidden isInitialState:NO];
-    else if (!strcmp(newVisibility, "prerender"))
-        [webView _setVisibilityState:WebPageVisibilityStatePrerender isInitialState:NO];
-    else if (!strcmp(newVisibility, "preview"))
-        [webView _setVisibilityState:WebPageVisibilityStatePreview isInitialState:NO];
-}
-
-void TestRunner::grantWebNotificationPermission(JSStringRef jsOrigin)
-{
-    RetainPtr<CFStringRef> cfOrigin(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, jsOrigin));
-    ASSERT([[mainFrame webView] _notificationProvider] == [MockWebNotificationProvider shared]);
-    [[MockWebNotificationProvider shared] setWebNotificationOrigin:(NSString *)cfOrigin.get() permission:TRUE];
-}
-
-void TestRunner::denyWebNotificationPermission(JSStringRef jsOrigin)
-{
-    RetainPtr<CFStringRef> cfOrigin(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, jsOrigin));
-    ASSERT([[mainFrame webView] _notificationProvider] == [MockWebNotificationProvider shared]);
-    [[MockWebNotificationProvider shared] setWebNotificationOrigin:(NSString *)cfOrigin.get() permission:FALSE];
-}
-
-void TestRunner::removeAllWebNotificationPermissions()
-{
-    [[MockWebNotificationProvider shared] removeAllWebNotificationPermissions];
-}
-
-void TestRunner::simulateWebNotificationClick(JSValueRef jsNotification)
-{
-    uint64_t notificationID = [[mainFrame webView] _notificationIDForTesting:jsNotification];
-    m_hasPendingWebNotificationClick = true;
-    dispatch_async(dispatch_get_main_queue(), ^{
-        if (!m_hasPendingWebNotificationClick)
-            return;
-
-        [[MockWebNotificationProvider shared] simulateWebNotificationClick:notificationID];
-        m_hasPendingWebNotificationClick = false;
-    });
-}
-
-void TestRunner::simulateLegacyWebNotificationClick(JSStringRef jsTitle)
-{
-}
-
diff --git a/Tools/DumpRenderTree/mac/TextInputController.h b/Tools/DumpRenderTree/mac/TextInputController.h
deleted file mode 100644
index 767e72f..0000000
--- a/Tools/DumpRenderTree/mac/TextInputController.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * Copyright (C) 2005 Apple Computer, Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import <Foundation/Foundation.h>
-
-@class WebView;
-@class WebHTMLView;
-@class WebScriptObject;
-
-@interface TextInputController : NSObject
-{
-    WebView *webView;
-    WebHTMLView *inputMethodView;
-    WebScriptObject *inputMethodHandler;    
-}
-- (id)initWithWebView:(WebView *)view;
-@end
diff --git a/Tools/DumpRenderTree/mac/TextInputController.m b/Tools/DumpRenderTree/mac/TextInputController.m
deleted file mode 100644
index 91dbd84..0000000
--- a/Tools/DumpRenderTree/mac/TextInputController.m
+++ /dev/null
@@ -1,459 +0,0 @@
-/*
- * Copyright (C) 2005, 2007 Apple Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "TextInputController.h"
-
-#import "DumpRenderTreeMac.h"
-#import <AppKit/NSInputManager.h>
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1080
-#define SUPPORT_DICTATION_ALTERNATIVES
-#import <AppKit/NSTextAlternatives.h>
-#endif
-#import <WebKit/WebDocument.h>
-#import <WebKit/WebFrame.h>
-#import <WebKit/WebFramePrivate.h>
-#import <WebKit/WebFrameView.h>
-#import <WebKit/WebHTMLViewPrivate.h>
-#import <WebKit/WebScriptObject.h>
-#import <WebKit/WebTypesInternal.h>
-#import <WebKit/WebView.h>
-
-@interface TextInputController (DumpRenderTreeInputMethodHandler)
-- (BOOL)interpretKeyEvents:(NSArray *)eventArray withSender:(WebHTMLView *)sender;
-@end
-
-@interface WebHTMLView (DumpRenderTreeInputMethodHandler)
-- (void)interpretKeyEvents:(NSArray *)eventArray;
-@end
-
-@interface WebHTMLView (WebKitSecretsTextInputControllerIsAwareOf)
-- (WebFrame *)_frame;
-@end
-
-@implementation WebHTMLView (DumpRenderTreeInputMethodHandler)
-- (void)interpretKeyEvents:(NSArray *)eventArray
-{
-    WebScriptObject *obj = [[self _frame] windowObject];
-    TextInputController *tic = [obj valueForKey:@"textInputController"];
-    if (![tic interpretKeyEvents:eventArray withSender:self])
-        [super interpretKeyEvents:eventArray];
-}
-@end
-
-@implementation NSMutableAttributedString (TextInputController)
-
-+ (BOOL)isSelectorExcludedFromWebScript:(SEL)aSelector
-{
-    if (aSelector == @selector(string)
-            || aSelector == @selector(getLength)
-            || aSelector == @selector(attributeNamesAtIndex:)
-            || aSelector == @selector(valueOfAttribute:atIndex:)
-            || aSelector == @selector(addAttribute:value:)
-            || aSelector == @selector(addAttribute:value:from:length:)
-            || aSelector == @selector(addColorAttribute:red:green:blue:alpha:)
-            || aSelector == @selector(addColorAttribute:red:green:blue:alpha:from:length:)
-            || aSelector == @selector(addFontAttribute:fontName:size:)
-            || aSelector == @selector(addFontAttribute:fontName:size:from:length:))
-        return NO;
-    return YES;
-}
-
-+ (NSString *)webScriptNameForSelector:(SEL)aSelector
-{
-    if (aSelector == @selector(getLength))
-        return @"length";
-    if (aSelector == @selector(attributeNamesAtIndex:))
-        return @"getAttributeNamesAtIndex";
-    if (aSelector == @selector(valueOfAttribute:atIndex:))
-        return @"getAttributeValueAtIndex";
-    if (aSelector == @selector(addAttribute:value:))
-        return @"addAttribute";
-    if (aSelector == @selector(addAttribute:value:from:length:))
-        return @"addAttributeForRange";
-    if (aSelector == @selector(addColorAttribute:red:green:blue:alpha:))
-        return @"addColorAttribute";
-    if (aSelector == @selector(addColorAttribute:red:green:blue:alpha:from:length:))
-        return @"addColorAttributeForRange";
-    if (aSelector == @selector(addFontAttribute:fontName:size:))
-        return @"addFontAttribute";
-    if (aSelector == @selector(addFontAttribute:fontName:size:from:length:))
-        return @"addFontAttributeForRange";
-
-    return nil;
-}
-
-- (int)getLength
-{
-    return (int)[self length];
-}
-
-- (NSArray *)attributeNamesAtIndex:(int)index
-{
-    NSDictionary *attributes = [self attributesAtIndex:(unsigned)index effectiveRange:nil];
-    return [attributes allKeys];
-}
-
-- (id)valueOfAttribute:(NSString *)attrName atIndex:(int)index
-{
-    return [self attribute:attrName atIndex:(unsigned)index effectiveRange:nil];
-}
-
-- (void)addAttribute:(NSString *)attrName value:(id)value
-{
-    [self addAttribute:attrName value:value range:NSMakeRange(0, [self length])];
-}
-
-- (void)addAttribute:(NSString *)attrName value:(id)value from:(int)from length:(int)length
-{
-    [self addAttribute:attrName value:value range:NSMakeRange((unsigned)from, (unsigned)length)];
-}
-
-- (void)addColorAttribute:(NSString *)attrName red:(float)red green:(float)green blue:(float)blue alpha:(float)alpha
-{
-    [self addAttribute:attrName value:[NSColor colorWithDeviceRed:red green:green blue:blue alpha:alpha] range:NSMakeRange(0, [self length])];
-}
-
-- (void)addColorAttribute:(NSString *)attrName red:(float)red green:(float)green blue:(float)blue alpha:(float)alpha from:(int)from length:(int)length
-{
-    [self addAttribute:attrName value:[NSColor colorWithDeviceRed:red green:green blue:blue alpha:alpha] range:NSMakeRange((unsigned)from, (unsigned)length)];
-}
-
-- (void)addFontAttribute:(NSString *)attrName fontName:(NSString *)fontName size:(float)fontSize
-{
-    [self addAttribute:attrName value:[NSFont fontWithName:fontName size:fontSize] range:NSMakeRange(0, [self length])];
-}
-
-- (void)addFontAttribute:(NSString *)attrName fontName:(NSString *)fontName size:(float)fontSize from:(int)from length:(int)length
-{
-    [self addAttribute:attrName value:[NSFont fontWithName:fontName size:fontSize] range:NSMakeRange((unsigned)from, (unsigned)length)];
-}
-
-@end
-
-@implementation TextInputController
-
-+ (BOOL)isSelectorExcludedFromWebScript:(SEL)aSelector
-{
-    if (aSelector == @selector(insertText:)
-            || aSelector == @selector(doCommand:)
-            || aSelector == @selector(setMarkedText:selectedFrom:length:)
-            || aSelector == @selector(unmarkText)
-            || aSelector == @selector(hasMarkedText)
-            || aSelector == @selector(conversationIdentifier)
-            || aSelector == @selector(substringFrom:length:)
-            || aSelector == @selector(attributedSubstringFrom:length:)
-            || aSelector == @selector(markedRange)
-            || aSelector == @selector(selectedRange)
-            || aSelector == @selector(firstRectForCharactersFrom:length:)
-            || aSelector == @selector(characterIndexForPointX:Y:)
-            || aSelector == @selector(validAttributesForMarkedText)
-            || aSelector == @selector(attributedStringWithString:)
-            || aSelector == @selector(setInputMethodHandler:)
-            || aSelector == @selector(dictatedStringWithPrimaryString:alternative:alternativeOffset:alternativeLength:))
-        return NO;
-    return YES;
-}
-
-+ (NSString *)webScriptNameForSelector:(SEL)aSelector
-{
-    if (aSelector == @selector(insertText:))
-        return @"insertText";
-    else if (aSelector == @selector(doCommand:))
-        return @"doCommand";
-    else if (aSelector == @selector(setMarkedText:selectedFrom:length:))
-        return @"setMarkedText";
-    else if (aSelector == @selector(substringFrom:length:))
-        return @"substringFromRange";
-    else if (aSelector == @selector(attributedSubstringFrom:length:))
-        return @"attributedSubstringFromRange";
-    else if (aSelector == @selector(firstRectForCharactersFrom:length:))
-        return @"firstRectForCharacterRange";
-    else if (aSelector == @selector(characterIndexForPointX:Y:))
-        return @"characterIndexForPoint";
-    else if (aSelector == @selector(attributedStringWithString:))
-        return @"makeAttributedString"; // just a factory method, doesn't call into NSTextInput
-    else if (aSelector == @selector(setInputMethodHandler:))
-        return @"setInputMethodHandler";
-    else if (aSelector == @selector(dictatedStringWithPrimaryString:alternative:alternativeOffset:alternativeLength:))
-        return @"makeDictatedString";
-
-    return nil;
-}
-
-- (id)initWithWebView:(WebView *)wv
-{
-    self = [super init];
-    webView = wv;
-    inputMethodView = nil;
-    inputMethodHandler = nil;
-    return self;
-}
-
-- (void)dealloc
-{
-    [inputMethodHandler release];
-    inputMethodHandler = nil;
-    
-    [super dealloc];
-}
-
-- (NSObject <NSTextInput> *)textInput
-{
-    NSView <NSTextInput> *view = inputMethodView ? inputMethodView : (id)[[[webView mainFrame] frameView] documentView];
-    return [view conformsToProtocol:@protocol(NSTextInput)] ? view : nil;
-}
-
-- (void)insertText:(id)aString
-{
-    NSObject <NSTextInput> *textInput = [self textInput];
-
-    if (textInput)
-        [textInput insertText:aString];
-}
-
-- (void)doCommand:(NSString *)aCommand
-{
-    NSObject <NSTextInput> *textInput = [self textInput];
-
-    if (textInput)
-        [textInput doCommandBySelector:NSSelectorFromString(aCommand)];
-}
-
-- (void)setMarkedText:(NSString *)aString selectedFrom:(int)from length:(int)length
-{
-    NSObject <NSTextInput> *textInput = [self textInput];
- 
-    if (textInput)
-        [textInput setMarkedText:aString selectedRange:NSMakeRange(from, length)];
-}
-
-- (void)unmarkText
-{
-    NSObject <NSTextInput> *textInput = [self textInput];
-
-    if (textInput)
-        [textInput unmarkText];
-}
-
-- (BOOL)hasMarkedText
-{
-    NSObject <NSTextInput> *textInput = [self textInput];
-
-    if (textInput)
-        return [textInput hasMarkedText];
-
-    return FALSE;
-}
-
-- (long)conversationIdentifier
-{
-    NSObject <NSTextInput> *textInput = [self textInput];
-
-    if (textInput)
-        return [textInput conversationIdentifier];
-
-    return 0;
-}
-
-- (NSString *)substringFrom:(int)from length:(int)length
-{
-    NSObject <NSTextInput> *textInput = [self textInput];
-
-    if (textInput)
-        return [[textInput attributedSubstringFromRange:NSMakeRange(from, length)] string];
-    
-    return @"";
-}
-
-- (NSMutableAttributedString *)attributedSubstringFrom:(int)from length:(int)length
-{
-    NSObject <NSTextInput> *textInput = [self textInput];
-
-    NSMutableAttributedString *ret = [[[NSMutableAttributedString alloc] init] autorelease];
-
-    if (textInput)
-        [ret setAttributedString:[textInput attributedSubstringFromRange:NSMakeRange(from, length)]];
-    
-    return ret;
-}
-
-- (NSArray *)markedRange
-{
-    NSObject <NSTextInput> *textInput = [self textInput];
-
-    if (textInput) {
-        NSRange range = [textInput markedRange];
-        return [NSArray arrayWithObjects:[NSNumber numberWithUnsignedInt:range.location], [NSNumber numberWithUnsignedInt:range.length], nil];
-    }
-
-    return nil;
-}
-
-- (NSArray *)selectedRange
-{
-    NSObject <NSTextInput> *textInput = [self textInput];
-
-    if (textInput) {
-        NSRange range = [textInput selectedRange];
-        return [NSArray arrayWithObjects:[NSNumber numberWithUnsignedInt:range.location], [NSNumber numberWithUnsignedInt:range.length], nil];
-    }
-
-    return nil;
-}
-  
-
-- (NSArray *)firstRectForCharactersFrom:(int)from length:(int)length
-{
-    NSObject <NSTextInput> *textInput = [self textInput];
-
-    if (textInput) {
-        NSRect rect = [textInput firstRectForCharacterRange:NSMakeRange(from, length)];
-        if (rect.origin.x || rect.origin.y || rect.size.width || rect.size.height) {
-            rect.origin = [[webView window] convertScreenToBase:rect.origin];
-            rect = [webView convertRect:rect fromView:nil];
-        }
-        return [NSArray arrayWithObjects:
-                    [NSNumber numberWithFloat:rect.origin.x],
-                    [NSNumber numberWithFloat:rect.origin.y],
-                    [NSNumber numberWithFloat:rect.size.width],
-                    [NSNumber numberWithFloat:rect.size.height],
-                    nil];
-    }
-
-    return nil;
-}
-
-- (NSInteger)characterIndexForPointX:(float)x Y:(float)y
-{
-    NSObject <NSTextInput> *textInput = [self textInput];
-
-    if (textInput) {
-        NSPoint point = NSMakePoint(x, y);
-        point = [webView convertPoint:point toView:nil];
-        point = [[webView window] convertBaseToScreen:point];
-        NSInteger index = [textInput characterIndexForPoint:point];
-        if (index == NSNotFound)
-            return -1;
-
-        return index;
-    }
-
-    return 0;
-}
-
-- (NSArray *)validAttributesForMarkedText
-{
-    NSObject <NSTextInput> *textInput = [self textInput];
-
-    if (textInput)
-        return [textInput validAttributesForMarkedText];
-
-    return nil;
-}
-
-- (NSMutableAttributedString *)attributedStringWithString:(NSString *)aString
-{
-    return [[[NSMutableAttributedString alloc] initWithString:aString] autorelease];
-}
-
-- (NSMutableAttributedString*)dictatedStringWithPrimaryString:(NSString*)aString alternative:(NSString*)alternative alternativeOffset:(int)offset alternativeLength:(int)length
-{
-#if defined(SUPPORT_DICTATION_ALTERNATIVES)
-    NSMutableAttributedString* dictatedString = [self attributedStringWithString:aString];
-    NSRange rangeWithAlternative = NSMakeRange((NSUInteger)offset, (NSUInteger)length);
-    NSString* subStringWithAlternative = [aString substringWithRange:rangeWithAlternative];
-    if (!subStringWithAlternative)
-        return nil;
-
-    NSTextAlternatives* alternativeObject = [[[NSTextAlternatives alloc] initWithPrimaryString:subStringWithAlternative alternativeStrings:[NSArray arrayWithObject:alternative]] autorelease];
-    if (!alternativeObject)
-        return nil;
-
-    [dictatedString addAttribute:NSTextAlternativesAttributeName value:alternativeObject range:rangeWithAlternative];
-
-    return dictatedString;
-#else
-    return nil;
-#endif
-}
-
-- (void)setInputMethodHandler:(WebScriptObject *)handler
-{
-    if (inputMethodHandler == handler)
-        return;
-    [handler retain];
-    [inputMethodHandler release];
-    inputMethodHandler = handler;
-}
-
-- (BOOL)interpretKeyEvents:(NSArray *)eventArray withSender:(WebHTMLView *)sender
-{
-    if (!inputMethodHandler)
-        return NO;
-    
-    inputMethodView = sender;
-    
-    NSEvent *event = [eventArray objectAtIndex:0];
-    unsigned modifierFlags = [event modifierFlags]; 
-    NSMutableArray *modifiers = [[NSMutableArray alloc] init];
-    if (modifierFlags & NSAlphaShiftKeyMask)
-        [modifiers addObject:@"NSAlphaShiftKeyMask"];
-    if (modifierFlags & NSShiftKeyMask)
-        [modifiers addObject:@"NSShiftKeyMask"];
-    if (modifierFlags & NSControlKeyMask)
-        [modifiers addObject:@"NSControlKeyMask"];
-    if (modifierFlags & NSAlternateKeyMask)
-        [modifiers addObject:@"NSAlternateKeyMask"];
-    if (modifierFlags & NSCommandKeyMask)
-        [modifiers addObject:@"NSCommandKeyMask"];
-    if (modifierFlags & NSNumericPadKeyMask)
-        [modifiers addObject:@"NSNumericPadKeyMask"];
-    if (modifierFlags & NSHelpKeyMask)
-        [modifiers addObject:@"NSHelpKeyMask"];
-    if (modifierFlags & NSFunctionKeyMask)
-        [modifiers addObject:@"NSFunctionKeyMask"];
-    
-    WebScriptObject* eventParam = [inputMethodHandler evaluateWebScript:@"new Object();"];
-    [eventParam setValue:[event characters] forKey:@"characters"];
-    [eventParam setValue:[event charactersIgnoringModifiers] forKey:@"charactersIgnoringModifiers"];
-    [eventParam setValue:[NSNumber numberWithBool:[event isARepeat]] forKey:@"isARepeat"];
-    [eventParam setValue:[NSNumber numberWithUnsignedShort:[event keyCode]] forKey:@"keyCode"];
-    [eventParam setValue:modifiers forKey:@"modifierFlags"];
-
-    [modifiers release];
-    
-    id result = [inputMethodHandler callWebScriptMethod:@"call" withArguments:[NSArray arrayWithObjects:inputMethodHandler, eventParam, nil]];
-    if (![result respondsToSelector:@selector(boolValue)] || ![result boolValue]) 
-        [sender doCommandBySelector:@selector(noop:)]; // AppKit sends noop: if the ime does not handle an event
-    
-    inputMethodView = nil;    
-    return YES;
-}
-
-@end
diff --git a/Tools/DumpRenderTree/mac/UIDelegate.h b/Tools/DumpRenderTree/mac/UIDelegate.h
deleted file mode 100644
index 982b480..0000000
--- a/Tools/DumpRenderTree/mac/UIDelegate.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * Copyright (C) 2006 Apple Computer, Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- 
-#import <Cocoa/Cocoa.h>
-
-@interface UIDelegate : NSObject {
-
-@private
-    NSRect m_frame;
-    NSMutableSet *m_pendingGeolocationPermissionListeners;
-    NSTimer *m_timer;
-}
-
-- (void)didSetMockGeolocationPermission;
-- (int)numberOfPendingGeolocationPermissionRequests;
-
-@end
diff --git a/Tools/DumpRenderTree/mac/UIDelegate.mm b/Tools/DumpRenderTree/mac/UIDelegate.mm
deleted file mode 100644
index 3473d17..0000000
--- a/Tools/DumpRenderTree/mac/UIDelegate.mm
+++ /dev/null
@@ -1,321 +0,0 @@
-/*
- * Copyright (C) 2006. 2007 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "UIDelegate.h"
-
-#import "DumpRenderTree.h"
-#import "DumpRenderTreeDraggingInfo.h"
-#import "EventSendingController.h"
-#import "MockWebNotificationProvider.h"
-#import "TestRunner.h"
-#import <WebKit/WebApplicationCache.h>
-#import <WebKit/WebFramePrivate.h>
-#import <WebKit/WebHTMLViewPrivate.h>
-#import <WebKit/WebQuotaManager.h>
-#import <WebKit/WebSecurityOriginPrivate.h>
-#import <WebKit/WebUIDelegatePrivate.h>
-#import <WebKit/WebView.h>
-#import <WebKit/WebViewPrivate.h>
-#import <wtf/Assertions.h>
-
-DumpRenderTreeDraggingInfo *draggingInfo = nil;
-
-@implementation UIDelegate
-
-- (void)webView:(WebView *)sender setFrame:(NSRect)frame
-{
-    m_frame = frame;
-}
-
-- (NSRect)webViewFrame:(WebView *)sender
-{
-    return m_frame;
-}
-
-- (void)webView:(WebView *)sender addMessageToConsole:(NSDictionary *)dictionary withSource:(NSString *)source
-{
-    NSString *message = [dictionary objectForKey:@"message"];
-    NSNumber *lineNumber = [dictionary objectForKey:@"lineNumber"];
-
-    NSRange range = [message rangeOfString:@"file://"];
-    if (range.location != NSNotFound)
-        message = [[message substringToIndex:range.location] stringByAppendingString:[[message substringFromIndex:NSMaxRange(range)] lastPathComponent]];
-
-    printf ("CONSOLE MESSAGE: ");
-    if ([lineNumber intValue])
-        printf ("line %d: ", [lineNumber intValue]);
-    printf ("%s\n", [message UTF8String]);
-}
-
-- (void)modalWindowWillClose:(NSNotification *)notification
-{
-    [[NSNotificationCenter defaultCenter] removeObserver:self name:NSWindowWillCloseNotification object:nil];
-    [NSApp abortModal];
-}
-
-- (void)webViewRunModal:(WebView *)sender
-{
-    gTestRunner->setWindowIsKey(false);
-    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(modalWindowWillClose:) name:NSWindowWillCloseNotification object:nil];
-    [NSApp runModalForWindow:[sender window]];
-    gTestRunner->setWindowIsKey(true);
-}
-
-- (void)webView:(WebView *)sender runJavaScriptAlertPanelWithMessage:(NSString *)message initiatedByFrame:(WebFrame *)frame
-{
-    if (!done) {
-        printf("ALERT: %s\n", [message UTF8String]);
-        fflush(stdout);
-    }
-}
-
-- (BOOL)webView:(WebView *)sender runJavaScriptConfirmPanelWithMessage:(NSString *)message initiatedByFrame:(WebFrame *)frame
-{
-    if (!done)
-        printf("CONFIRM: %s\n", [message UTF8String]);
-    return YES;
-}
-
-- (NSString *)webView:(WebView *)sender runJavaScriptTextInputPanelWithPrompt:(NSString *)prompt defaultText:(NSString *)defaultText initiatedByFrame:(WebFrame *)frame
-{
-    if (!done)
-        printf("PROMPT: %s, default text: %s\n", [prompt UTF8String], [defaultText UTF8String]);
-    return defaultText;
-}
-
-- (BOOL)webView:(WebView *)c runBeforeUnloadConfirmPanelWithMessage:(NSString *)message initiatedByFrame:(WebFrame *)frame
-{
-    if (!done)
-        printf("CONFIRM NAVIGATION: %s\n", [message UTF8String]);
-    
-    return !gTestRunner->shouldStayOnPageAfterHandlingBeforeUnload();
-}
-
-
-- (void)webView:(WebView *)sender dragImage:(NSImage *)anImage at:(NSPoint)viewLocation offset:(NSSize)initialOffset event:(NSEvent *)event pasteboard:(NSPasteboard *)pboard source:(id)sourceObj slideBack:(BOOL)slideFlag forView:(NSView *)view
-{
-     assert(!draggingInfo);
-     draggingInfo = [[DumpRenderTreeDraggingInfo alloc] initWithImage:anImage offset:initialOffset pasteboard:pboard source:sourceObj];
-     [sender draggingUpdated:draggingInfo];
-     [EventSendingController replaySavedEvents];
-}
-
-- (void)webViewFocus:(WebView *)webView
-{
-    gTestRunner->setWindowIsKey(true);
-}
-
-- (void)webViewUnfocus:(WebView *)webView
-{
-    gTestRunner->setWindowIsKey(false);
-}
-
-- (WebView *)webView:(WebView *)sender createWebViewWithRequest:(NSURLRequest *)request
-{
-    if (!gTestRunner->canOpenWindows())
-        return nil;
-    
-    // Make sure that waitUntilDone has been called.
-    ASSERT(gTestRunner->waitToDump());
-
-    WebView *webView = createWebViewAndOffscreenWindow();
-    
-    if (gTestRunner->newWindowsCopyBackForwardList())
-        [webView _loadBackForwardListFromOtherView:sender];
-    
-    return [webView autorelease];
-}
-
-- (void)webViewClose:(WebView *)sender
-{
-    NSWindow* window = [sender window];
- 
-    if (gTestRunner->callCloseOnWebViews())
-        [sender close];
-    
-    [window close];
-}
-
-- (void)webView:(WebView *)sender frame:(WebFrame *)frame exceededDatabaseQuotaForSecurityOrigin:(WebSecurityOrigin *)origin database:(NSString *)databaseIdentifier
-{
-    if (!done && gTestRunner->dumpDatabaseCallbacks()) {
-        printf("UI DELEGATE DATABASE CALLBACK: exceededDatabaseQuotaForSecurityOrigin:{%s, %s, %i} database:%s\n", [[origin protocol] UTF8String], [[origin host] UTF8String], 
-            [origin port], [databaseIdentifier UTF8String]);
-    }
-
-    static const unsigned long long defaultQuota = 5 * 1024 * 1024;    
-    [[origin databaseQuotaManager] setQuota:defaultQuota];
-}
-
-- (void)webView:(WebView *)sender exceededApplicationCacheOriginQuotaForSecurityOrigin:(WebSecurityOrigin *)origin totalSpaceNeeded:(NSUInteger)totalSpaceNeeded
-{
-    if (!done && gTestRunner->dumpApplicationCacheDelegateCallbacks()) {
-        // For example, numbers from 30000 - 39999 will output as 30000.
-        // Rounding up or down not really matter for these tests. It's
-        // sufficient to just get a range of 10000 to determine if we were
-        // above or below a threshold.
-        unsigned long truncatedSpaceNeeded = static_cast<unsigned long>((totalSpaceNeeded / 10000) * 10000);
-        printf("UI DELEGATE APPLICATION CACHE CALLBACK: exceededApplicationCacheOriginQuotaForSecurityOrigin:{%s, %s, %i} totalSpaceNeeded:~%lu\n",
-            [[origin protocol] UTF8String], [[origin host] UTF8String], [origin port], truncatedSpaceNeeded);
-    }
-
-    if (gTestRunner->disallowIncreaseForApplicationCacheQuota())
-        return;
-
-    static const unsigned long long defaultOriginQuota = [WebApplicationCache defaultOriginQuota];
-    [[origin applicationCacheQuotaManager] setQuota:defaultOriginQuota];
-}
-
-- (void)webView:(WebView *)sender setStatusText:(NSString *)text
-{
-    if (gTestRunner->dumpStatusCallbacks())
-        printf("UI DELEGATE STATUS CALLBACK: setStatusText:%s\n", [text UTF8String]);
-}
-
-- (void)webView:(WebView *)webView decidePolicyForGeolocationRequestFromOrigin:(WebSecurityOrigin *)origin frame:(WebFrame *)frame listener:(id<WebAllowDenyPolicyListener>)listener
-{
-    if (!gTestRunner->isGeolocationPermissionSet()) {
-        if (!m_pendingGeolocationPermissionListeners)
-            m_pendingGeolocationPermissionListeners = [[NSMutableSet set] retain];
-        [m_pendingGeolocationPermissionListeners addObject:listener];
-        return;
-    }
-
-    if (gTestRunner->geolocationPermission())
-        [listener allow];
-    else
-        [listener deny];
-}
-
-- (void)didSetMockGeolocationPermission
-{
-    ASSERT(gTestRunner->isGeolocationPermissionSet());
-    if (m_pendingGeolocationPermissionListeners && !m_timer)
-        m_timer = [NSTimer scheduledTimerWithTimeInterval:0 target:self selector:@selector(timerFired) userInfo:0 repeats:NO];
-}
-
-- (int)numberOfPendingGeolocationPermissionRequests
-{
-    if (!m_pendingGeolocationPermissionListeners)
-        return 0;
-    return [m_pendingGeolocationPermissionListeners count];
-}
-
-
-- (void)timerFired
-{
-    ASSERT(gTestRunner->isGeolocationPermissionSet());
-    m_timer = 0;
-    NSEnumerator* enumerator = [m_pendingGeolocationPermissionListeners objectEnumerator];
-    id<WebAllowDenyPolicyListener> listener;
-    while ((listener = [enumerator nextObject])) {
-        if (gTestRunner->geolocationPermission())
-            [listener allow];
-        else
-            [listener deny];
-    }
-    [m_pendingGeolocationPermissionListeners removeAllObjects];
-    [m_pendingGeolocationPermissionListeners release];
-    m_pendingGeolocationPermissionListeners = nil;
-}
-
-- (BOOL)webView:(WebView *)sender shouldHaltPlugin:(DOMNode *)pluginNode
-{
-    return NO;
-}
-
-- (BOOL)webView:(WebView *)webView supportsFullScreenForElement:(DOMElement*)element withKeyboard:(BOOL)withKeyboard
-{
-    return YES;
-}
-
-- (void)enterFullScreenWithListener:(NSObject<WebKitFullScreenListener>*)listener
-{
-    [listener webkitWillEnterFullScreen];
-    [listener webkitDidEnterFullScreen];
-}
-
-- (void)webView:(WebView *)webView enterFullScreenForElement:(DOMElement*)element listener:(NSObject<WebKitFullScreenListener>*)listener
-{
-    if (!gTestRunner->hasCustomFullScreenBehavior())
-        [self performSelector:@selector(enterFullScreenWithListener:) withObject:listener afterDelay:0];
-}
-
-- (void)exitFullScreenWithListener:(NSObject<WebKitFullScreenListener>*)listener
-{
-    [listener webkitWillExitFullScreen];
-    [listener webkitDidExitFullScreen];
-}
-
-- (void)webView:(WebView *)webView exitFullScreenForElement:(DOMElement*)element listener:(NSObject<WebKitFullScreenListener>*)listener
-{
-    if (!gTestRunner->hasCustomFullScreenBehavior())
-        [self performSelector:@selector(exitFullScreenWithListener:) withObject:listener afterDelay:0];
-}
-
-- (void)webView:(WebView *)sender closeFullScreenWithListener:(NSObject<WebKitFullScreenListener>*)listener
-{
-    [listener webkitWillExitFullScreen];
-    [listener webkitDidExitFullScreen];
-}
-
-- (BOOL)webView:(WebView *)webView didPressMissingPluginButton:(DOMElement *)element
-{
-    printf("MISSING PLUGIN BUTTON PRESSED\n");
-    return TRUE;
-}
-
-- (void)webView:(WebView *)webView decidePolicyForNotificationRequestFromOrigin:(WebSecurityOrigin *)origin listener:(id<WebAllowDenyPolicyListener>)listener
-{
-    MockWebNotificationProvider *provider = (MockWebNotificationProvider *)[webView _notificationProvider];
-    switch ([provider policyForOrigin:origin]) {
-    case WebNotificationPermissionAllowed:
-        [listener allow];
-        break;
-    case WebNotificationPermissionDenied:
-        [listener deny];
-        break;
-    case WebNotificationPermissionNotAllowed:
-        [provider setWebNotificationOrigin:[origin stringValue] permission:YES];
-        [listener allow];
-        break;
-    }
-}
-
-- (void)dealloc
-{
-    [draggingInfo release];
-    draggingInfo = nil;
-    [m_pendingGeolocationPermissionListeners release];
-    m_pendingGeolocationPermissionListeners = nil;
-
-    [super dealloc];
-}
-
-@end
diff --git a/Tools/DumpRenderTree/mac/WebArchiveDumpSupportMac.mm b/Tools/DumpRenderTree/mac/WebArchiveDumpSupportMac.mm
deleted file mode 100644
index 9f94ecb..0000000
--- a/Tools/DumpRenderTree/mac/WebArchiveDumpSupportMac.mm
+++ /dev/null
@@ -1,77 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "WebArchiveDumpSupport.h"
-
-#import <CFNetwork/CFHTTPMessage.h>
-#import <Foundation/Foundation.h>
-#import <WebKit/WebHTMLRepresentation.h>
-#import <wtf/RetainPtr.h>
-
-extern "C" {
-
-enum CFURLCacheStoragePolicy {
-  kCFURLCacheStorageAllowed = 0,
-  kCFURLCacheStorageAllowedInMemoryOnly = 1,
-  kCFURLCacheStorageNotAllowed = 2
-};
-typedef enum CFURLCacheStoragePolicy CFURLCacheStoragePolicy;
-
-extern const CFStringRef kCFHTTPVersion1_1;
-
-CFURLResponseRef CFURLResponseCreate(CFAllocatorRef alloc, CFURLRef URL, CFStringRef mimeType, SInt64 expectedContentLength, CFStringRef textEncodingName, CFURLCacheStoragePolicy recommendedPolicy);
-CFURLResponseRef CFURLResponseCreateWithHTTPResponse(CFAllocatorRef alloc, CFURLRef URL, CFHTTPMessageRef httpResponse, CFURLCacheStoragePolicy recommendedPolicy);
-void CFURLResponseSetExpectedContentLength(CFURLResponseRef response, SInt64 length);
-void CFURLResponseSetMIMEType(CFURLResponseRef response, CFStringRef mimeType);
-
-}
-
-CFURLResponseRef createCFURLResponseFromResponseData(CFDataRef responseData)
-{
-    // Decode NSURLResponse
-    RetainPtr<NSKeyedUnarchiver> unarchiver(AdoptNS, [[NSKeyedUnarchiver alloc] initForReadingWithData:(NSData *)responseData]);
-    NSURLResponse *response = [unarchiver.get() decodeObjectForKey:@"WebResourceResponse"]; // WebResourceResponseKey in WebResource.m
-    [unarchiver.get() finishDecoding];
-
-    if (![response isKindOfClass:[NSHTTPURLResponse class]])
-        return CFURLResponseCreate(kCFAllocatorDefault, (CFURLRef)[response URL], (CFStringRef)[response MIMEType], [response expectedContentLength], (CFStringRef)[response textEncodingName], kCFURLCacheStorageAllowed);
-
-    NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *)response;
-
-    // NSURLResponse is not toll-free bridged to CFURLResponse.
-    RetainPtr<CFHTTPMessageRef> httpMessage(AdoptCF, CFHTTPMessageCreateResponse(kCFAllocatorDefault, [httpResponse statusCode], 0, kCFHTTPVersion1_1));
-
-    NSDictionary *headerFields = [httpResponse allHeaderFields];
-    for (NSString *headerField in [headerFields keyEnumerator])
-        CFHTTPMessageSetHeaderFieldValue(httpMessage.get(), (CFStringRef)headerField, (CFStringRef)[headerFields objectForKey:headerField]);
-
-    return CFURLResponseCreateWithHTTPResponse(kCFAllocatorDefault, (CFURLRef)[response URL], httpMessage.get(), kCFURLCacheStorageAllowed);
-}
-
-CFArrayRef supportedNonImageMIMETypes()
-{
-    return (CFArrayRef)[WebHTMLRepresentation supportedNonImageMIMETypes];
-}
diff --git a/Tools/DumpRenderTree/mac/WorkQueueItemMac.mm b/Tools/DumpRenderTree/mac/WorkQueueItemMac.mm
deleted file mode 100644
index c28e991..0000000
--- a/Tools/DumpRenderTree/mac/WorkQueueItemMac.mm
+++ /dev/null
@@ -1,97 +0,0 @@
-/*
- * Copyright (C) 2007, 2009 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "DumpRenderTree.h"
-#import "WorkQueueItem.h"
-
-#import <JavaScriptCore/JSStringRef.h>
-#import <JavaScriptCore/JSStringRefCF.h>
-#import <WebKit/WebBackForwardList.h>
-#import <WebKit/WebFrame.h>
-#import <WebKit/WebScriptObject.h>
-#import <WebKit/WebView.h>
-#import <wtf/RetainPtr.h>
-
-bool LoadItem::invoke() const
-{
-    RetainPtr<CFStringRef> urlCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, m_url.get()));
-    NSString *urlNS = (NSString *)urlCF.get();
-    RetainPtr<CFStringRef> targetCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, m_target.get()));
-    NSString *targetNS = (NSString *)targetCF.get();
-
-    WebFrame *targetFrame;
-    if (targetNS && [targetNS length])
-        targetFrame = [mainFrame findFrameNamed:targetNS];
-    else
-        targetFrame = mainFrame;
-    [targetFrame loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:urlNS]]];
-    return true;
-}
-
-bool LoadHTMLStringItem::invoke() const
-{
-    RetainPtr<CFStringRef> contentCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, m_content.get()));
-    RetainPtr<CFStringRef> baseURLCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, m_baseURL.get()));
-
-    if (m_unreachableURL) {
-        RetainPtr<CFStringRef> unreachableURLCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, m_unreachableURL.get()));
-        [mainFrame loadAlternateHTMLString:(NSString *)contentCF.get() baseURL:[NSURL URLWithString:(NSString *)baseURLCF.get()] forUnreachableURL:[NSURL URLWithString:(NSString *)unreachableURLCF.get()]];
-        return true;
-    }
-
-    [mainFrame loadHTMLString:(NSString *)contentCF.get() baseURL:[NSURL URLWithString:(NSString *)baseURLCF.get()]];
-    return true;
-}
-
-bool ReloadItem::invoke() const
-{
-    [[mainFrame webView] reload:nil];
-    return true;
-}
-
-bool ScriptItem::invoke() const
-{
-    RetainPtr<CFStringRef> scriptCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, m_script.get()));
-    NSString *scriptNS = (NSString *)scriptCF.get();
-    [[mainFrame webView] stringByEvaluatingJavaScriptFromString:scriptNS];
-    return true;
-}
-
-bool BackForwardItem::invoke() const
-{
-    if (m_howFar == 1)
-        [[mainFrame webView] goForward];
-    else if (m_howFar == -1)
-        [[mainFrame webView] goBack];
-    else {
-        WebBackForwardList *bfList = [[mainFrame webView] backForwardList];
-        [[mainFrame webView] goToBackForwardItem:[bfList itemAtIndex:m_howFar]];
-    }
-    return true;
-}
diff --git a/Tools/DumpRenderTree/pthreads/JavaScriptThreadingPthreads.cpp b/Tools/DumpRenderTree/pthreads/JavaScriptThreadingPthreads.cpp
deleted file mode 100644
index 1266c02..0000000
--- a/Tools/DumpRenderTree/pthreads/JavaScriptThreadingPthreads.cpp
+++ /dev/null
@@ -1,148 +0,0 @@
-/*
- * Copyright (C) 2005, 2006, 2007 Apple Inc. All rights reserved.
- *           (C) 2007 Graham Dennis (graham.dennis@gmail.com)
- *           (C) 2007 Eric Seidel <eric@webkit.org>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- 
-#include "config.h"
-#include "JavaScriptThreading.h"
-
-#include <CoreFoundation/CoreFoundation.h>
-#include <JavaScriptCore/JavaScriptCore.h>
-#include <pthread.h>
-#include <wtf/Assertions.h>
-#include <wtf/HashSet.h>
-
-static JSContextGroupRef javaScriptThreadsGroup;
-
-static pthread_mutex_t javaScriptThreadsMutex = PTHREAD_MUTEX_INITIALIZER;
-static bool javaScriptThreadsShouldTerminate;
-
-static const int javaScriptThreadsCount = 4;
-
-typedef HashSet<pthread_t> ThreadSet;
-
-static ThreadSet* javaScriptThreads()
-{
-    ASSERT(pthread_mutex_trylock(&javaScriptThreadsMutex) == EBUSY);
-    static ThreadSet staticJavaScriptThreads;
-    return &staticJavaScriptThreads;
-}
-
-// This function exercises JSC in a loop until javaScriptThreadsShouldTerminate
-// becomes true or it probabilistically decides to spawn a replacement thread and exit.
-void* runJavaScriptThread(void* arg)
-{
-    static const char* const script =
-        "var array = [];"
-        "for (var i = 0; i < 1024; i++) {"
-        "    array.push(String(i));"
-        "}";
-
-    pthread_mutex_lock(&javaScriptThreadsMutex);
-    JSGlobalContextRef ctx = JSGlobalContextCreateInGroup(javaScriptThreadsGroup, 0);
-    pthread_mutex_unlock(&javaScriptThreadsMutex);
-
-    pthread_mutex_lock(&javaScriptThreadsMutex);
-    JSStringRef scriptRef = JSStringCreateWithUTF8CString(script);
-    pthread_mutex_unlock(&javaScriptThreadsMutex);
-
-    while (1) {
-        pthread_mutex_lock(&javaScriptThreadsMutex);
-        JSValueRef exception = 0;
-        JSEvaluateScript(ctx, scriptRef, 0, 0, 1, &exception);
-        ASSERT(!exception);
-        pthread_mutex_unlock(&javaScriptThreadsMutex);
-
-        pthread_mutex_lock(&javaScriptThreadsMutex);
-        size_t valuesCount = 1024;
-        JSValueRef values[valuesCount];
-        for (size_t i = 0; i < valuesCount; ++i)
-            values[i] = JSObjectMake(ctx, 0, 0);
-        pthread_mutex_unlock(&javaScriptThreadsMutex);
-
-        // Check for cancellation.
-        if (javaScriptThreadsShouldTerminate)
-            goto done;
-
-        // Respawn probabilistically.
-        if (random() % 5 == 0) {
-            pthread_mutex_lock(&javaScriptThreadsMutex);
-            pthread_t pthread;
-            pthread_create(&pthread, 0, &runJavaScriptThread, 0);
-            pthread_detach(pthread);
-            javaScriptThreads()->add(pthread);
-            pthread_mutex_unlock(&javaScriptThreadsMutex);
-            goto done;
-        }
-    }
-
-done:
-    pthread_mutex_lock(&javaScriptThreadsMutex);
-    JSStringRelease(scriptRef);
-    JSGarbageCollect(ctx);
-    JSGlobalContextRelease(ctx);
-    javaScriptThreads()->remove(pthread_self());
-    pthread_mutex_unlock(&javaScriptThreadsMutex);
-    return 0;
-}
-
-void startJavaScriptThreads()
-{
-    javaScriptThreadsGroup = JSContextGroupCreate();
-
-    pthread_mutex_lock(&javaScriptThreadsMutex);
-
-    for (int i = 0; i < javaScriptThreadsCount; i++) {
-        pthread_t pthread;
-        pthread_create(&pthread, 0, &runJavaScriptThread, 0);
-        pthread_detach(pthread);
-        javaScriptThreads()->add(pthread);
-    }
-
-    pthread_mutex_unlock(&javaScriptThreadsMutex);
-}
-
-void stopJavaScriptThreads()
-{
-    pthread_mutex_lock(&javaScriptThreadsMutex);
-
-    javaScriptThreadsShouldTerminate = true;
-
-    pthread_mutex_unlock(&javaScriptThreadsMutex);
-
-    while (true) {
-        pthread_mutex_lock(&javaScriptThreadsMutex);
-        int threadCount = javaScriptThreads()->size();
-        pthread_mutex_unlock(&javaScriptThreadsMutex);
-
-        if (!threadCount)
-            break;
-
-        usleep(1000);
-    }
-}
diff --git a/Tools/DumpRenderTree/qt/DumpRenderTree.pro b/Tools/DumpRenderTree/qt/DumpRenderTree.pro
deleted file mode 100644
index 2d6cfca..0000000
--- a/Tools/DumpRenderTree/qt/DumpRenderTree.pro
+++ /dev/null
@@ -1,60 +0,0 @@
-# -------------------------------------------------------------------
-# Project file for the DumpRenderTree binary (DRT)
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-TEMPLATE = app
-
-TARGET = DumpRenderTree
-DESTDIR = $$ROOT_BUILD_DIR/bin
-
-WEBKIT += wtf javascriptcore webcore
-
-INCLUDEPATH += \
-    $$PWD/ \
-    $$PWD/.. \
-    $${ROOT_WEBKIT_DIR}/Source/WebCore/platform/qt \
-    $${ROOT_WEBKIT_DIR}/Source/WebKit/qt/WebCoreSupport \
-    $${ROOT_WEBKIT_DIR}/Source/WebKit/qt/WidgetSupport \
-    $${ROOT_WEBKIT_DIR}/Source/WTF
-
-QT = core gui network testlib webkitwidgets widgets
-have?(QTPRINTSUPPORT): QT += printsupport
-macx: QT += xml
-
-HEADERS += \
-    $$PWD/../WorkQueue.h \
-    $$PWD/../DumpRenderTree.h \
-    $$PWD/../GCController.h \
-    $$PWD/../TestRunner.h \
-    DumpRenderTreeQt.h \
-    EventSenderQt.h \
-    TextInputControllerQt.h \
-    WorkQueueItemQt.h \
-    TestRunnerQt.h \
-    testplugin.h
-
-SOURCES += \
-    $$PWD/../WorkQueue.cpp \
-    $$PWD/../DumpRenderTreeCommon.cpp \
-    $$PWD/../GCController.cpp \
-    $$PWD/../TestRunner.cpp \
-    DumpRenderTreeQt.cpp \
-    EventSenderQt.cpp \
-    TextInputControllerQt.cpp \
-    WorkQueueItemQt.cpp \
-    TestRunnerQt.cpp \
-    GCControllerQt.cpp \
-    testplugin.cpp \
-    DumpRenderTreeMain.cpp
-
-wince*: {
-    INCLUDEPATH += $$WCECOMPAT/include
-    LIBS += $$WCECOMPAT/lib/wcecompat.lib
-}
-
-DEFINES -= USE_SYSTEM_MALLOC=0
-DEFINES += USE_SYSTEM_MALLOC=1
-
-RESOURCES = DumpRenderTree.qrc
diff --git a/Tools/DumpRenderTree/qt/DumpRenderTree.qrc b/Tools/DumpRenderTree/qt/DumpRenderTree.qrc
deleted file mode 100644
index 71d163a..0000000
--- a/Tools/DumpRenderTree/qt/DumpRenderTree.qrc
+++ /dev/null
@@ -1,5 +0,0 @@
-<RCC>
-    <qresource prefix="/">
-        <file>resources/user.css</file>
-    </qresource>
-</RCC>
diff --git a/Tools/DumpRenderTree/qt/DumpRenderTreeMain.cpp b/Tools/DumpRenderTree/qt/DumpRenderTreeMain.cpp
deleted file mode 100644
index 6b86e9d..0000000
--- a/Tools/DumpRenderTree/qt/DumpRenderTreeMain.cpp
+++ /dev/null
@@ -1,203 +0,0 @@
-/*
- * Copyright (C) 2006 Nikolas Zimmermann <zimmermann@kde.org>
- * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "DumpRenderTreeQt.h"
-
-#include "QtTestSupport.h"
-#include <qapplication.h>
-#include <qdebug.h>
-#include <qdir.h>
-#include <qfont.h>
-#include <qstringlist.h>
-#include <qstylefactory.h>
-#include <qtimer.h>
-#include <qurl.h>
-#include <qwebdatabase.h>
-
-
-#include <wtf/AlwaysInline.h>
-
-#ifdef Q_WS_X11
-#include <qx11info_x11.h>
-#endif
-
-#ifdef Q_OS_WIN
-#include <fcntl.h>
-#include <io.h>
-#endif
-
-#include <limits.h>
-
-#include <wtf/Assertions.h>
-
-void messageHandler(QtMsgType type, const QMessageLogContext&, const QString &message)
-{
-    if (type == QtCriticalMsg || type == QtFatalMsg) {
-        fprintf(stderr, "%s\n", qPrintable(message));
-        return;
-    }
-    // do nothing
-}
-
-// We only support -v, -p, --pixel-tests, --stdout, --stderr and -, all the others will be
-// pass as test case name (even -abc.html is a valid test case name)
-bool isOption(const QString& str)
-{
-    return str == QString("-v") || str == QString("-p") || str == QString("--pixel-tests")
-           || str == QString("--stdout") || str == QString("--stderr")
-           || str == QString("--timeout") || str == QString("--no-timeout")
-           || str == QString("-");
-}
-
-QString takeOptionValue(QStringList& arguments, int index)
-{
-    QString result;
-
-    if (index + 1 < arguments.count() && !isOption(arguments.at(index + 1)))
-        result = arguments.takeAt(index + 1);
-    arguments.removeAt(index);
-
-    return result;
-}
-
-void printUsage()
-{
-    fprintf(stderr, "Usage: DumpRenderTree [-v|-p|--pixel-tests] [--stdout output_filename] [-stderr error_filename] [--no-timeout] [--timeout timeout_MS] filename [filename2..n]\n");
-    fprintf(stderr, "Or folder containing test files: DumpRenderTree [-v|--pixel-tests] dirpath\n");
-    fflush(stderr);
-}
-
-int main(int argc, char* argv[])
-{
-#ifdef Q_OS_WIN
-    _setmode(1, _O_BINARY);
-    _setmode(2, _O_BINARY);
-#endif
-
-    // Suppress debug output from Qt if not started with -v
-    bool suppressQtDebugOutput = true;
-    for (int i = 1; i < argc; ++i) {
-        if (!qstrcmp(argv[i], "-v")) {
-            suppressQtDebugOutput = false;
-            break;
-        }
-    }
-
-    // Has to be done before QApplication is constructed in case
-    // QApplication itself produces debug output.
-    if (suppressQtDebugOutput)
-        qInstallMessageHandler(messageHandler);
-
-    WebKit::QtTestSupport::initializeTestFonts();
-
-    QApplication::setStyle(QStyleFactory::create(QLatin1String("windows")));
-    QApplication::setDesktopSettingsAware(false);
-
-    QApplication app(argc, argv);
-    app.setQuitOnLastWindowClosed(false);
-
-    QCoreApplication::setAttribute(Qt::AA_Use96Dpi, true);
-
-    WTFInstallReportBacktraceOnCrashHook();
-
-    QStringList args = app.arguments();
-    if (args.count() < (!suppressQtDebugOutput ? 3 : 2)) {
-        printUsage();
-        exit(1);
-    }
-
-    // Remove the first arguments, it is application name itself
-    args.removeAt(0);
-
-    DumpRenderTree dumper;
-
-    int index = args.indexOf(QLatin1String("--stdout"));
-    if (index != -1) {
-        QString fileName = takeOptionValue(args, index);
-        dumper.setRedirectOutputFileName(fileName);
-        if (fileName.isEmpty() || !freopen(qPrintable(fileName), "w", stdout)) {
-            fprintf(stderr, "STDOUT redirection failed.");
-            exit(1);
-        }
-    }
-    index = args.indexOf(QLatin1String("--stderr"));
-    if (index != -1) {
-        QString fileName = takeOptionValue(args, index);
-        dumper.setRedirectErrorFileName(fileName);
-        if (!freopen(qPrintable(fileName), "w", stderr)) {
-            fprintf(stderr, "STDERR redirection failed.");
-            exit(1);
-        }
-    }
-    index = args.indexOf("--pixel-tests");
-    if (index == -1)
-        index = args.indexOf("-p");
-    if (index != -1) {
-        dumper.setShouldDumpPixelsForAllTests();
-        args.removeAt(index);
-    }
-
-    QWebDatabase::removeAllDatabases();
-
-    index = args.indexOf(QLatin1String("--timeout"));
-    if (index != -1) {
-        int timeout = takeOptionValue(args, index).toInt();
-        dumper.setTimeout(timeout);
-    }
-
-    index = args.indexOf(QLatin1String("--no-timeout"));
-    if (index != -1) {
-        dumper.setShouldTimeout(false);
-        args.removeAt(index);
-    }
-
-    index = args.indexOf(QLatin1String("-"));
-    if (index != -1) {
-        args.removeAt(index);
-
-        // Continue waiting in STDIN for more test case after process one test case
-        QObject::connect(&dumper, SIGNAL(ready()), &dumper, SLOT(readLine()), Qt::QueuedConnection);   
-
-        // Read and only read the first test case, ignore the others 
-        if (args.size() > 0) { 
-            // Process the argument first
-            dumper.processLine(args[0]);
-        } else
-           QTimer::singleShot(0, &dumper, SLOT(readLine()));
-    } else {
-        // Go into standalone mode
-        // Standalone mode need at least one test case
-        if (args.count() < 1) {
-            printUsage();
-            exit(1);
-        }
-        dumper.processArgsLine(args);
-    }
-    return app.exec();
-}
diff --git a/Tools/DumpRenderTree/qt/DumpRenderTreeQt.cpp b/Tools/DumpRenderTree/qt/DumpRenderTreeQt.cpp
deleted file mode 100755
index ef3e38f..0000000
--- a/Tools/DumpRenderTree/qt/DumpRenderTreeQt.cpp
+++ /dev/null
@@ -1,1228 +0,0 @@
-/*
- * Copyright (C) 2005, 2006 Apple Computer, Inc.  All rights reserved.
- * Copyright (C) 2006 Nikolas Zimmermann <zimmermann@kde.org>
- * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "DumpRenderTree.h"
-
-#include "DumpRenderTreeQt.h"
-#include "DumpRenderTreeSupportQt.h"
-#include "EventSenderQt.h"
-#include "GCController.h"
-#include "InitWebCoreQt.h"
-#include "InitWebKitQt.h"
-#include "JSStringRefQt.h"
-#include "QtTestSupport.h"
-#include "TestRunner.h"
-#include "TestRunnerQt.h"
-#include "TextInputControllerQt.h"
-#include "testplugin.h"
-#include "WorkQueue.h"
-
-#include <QApplication>
-#include <QBuffer>
-#include <QCryptographicHash>
-#include <QDir>
-#include <QFile>
-#include <QFileInfo>
-#include <QFocusEvent>
-#include <QLabel>
-#include <QLocale>
-#include <QNetworkAccessManager>
-#include <QNetworkReply>
-#include <QNetworkRequest>
-#include <QPaintDevice>
-#include <QPaintEngine>
-#if !defined(QT_NO_PRINTER) && HAVE(QTPRINTSUPPORT)
-#include <QPrinter>
-#endif
-#include <QProgressBar>
-#include <QUndoStack>
-#include <QUrl>
-#include <limits.h>
-#include <locale.h>
-#include <qwebsecurityorigin.h>
-#include <qwebsettings.h>
-#ifndef Q_OS_WIN
-#include <unistd.h>
-#endif
-
-using namespace WebCore;
-
-const int databaseDefaultQuota = 5 * 1024 * 1024;
-
-NetworkAccessManager::NetworkAccessManager(QObject* parent)
-    : QNetworkAccessManager(parent)
-{
-#ifndef QT_NO_OPENSSL
-    connect(this, SIGNAL(sslErrors(QNetworkReply*, const QList<QSslError>&)),
-            this, SLOT(sslErrorsEncountered(QNetworkReply*, const QList<QSslError>&)));
-#endif
-}
-
-#ifndef QT_NO_OPENSSL
-void NetworkAccessManager::sslErrorsEncountered(QNetworkReply* reply, const QList<QSslError>& errors)
-{
-    if (reply->url().host() == "127.0.0.1" || reply->url().host() == "localhost") {
-        bool ignore = true;
-
-        // Accept any HTTPS certificate.
-        foreach (const QSslError& error, errors) {
-            if (error.error() < QSslError::UnableToGetIssuerCertificate || error.error() > QSslError::HostNameMismatch) {
-                ignore = false;
-                break;
-            }
-        }
-
-        if (ignore)
-            reply->ignoreSslErrors();
-    }
-}
-#endif
-
-
-#if !defined(QT_NO_PRINTER) && HAVE(QTPRINTSUPPORT)
-class NullPrinter : public QPrinter {
-public:
-    class NullPaintEngine : public QPaintEngine {
-    public:
-        virtual bool begin(QPaintDevice*) { return true; }
-        virtual bool end() { return true; }
-        virtual QPaintEngine::Type type() const { return QPaintEngine::User; }
-        virtual void drawPixmap(const QRectF& r, const QPixmap& pm, const QRectF& sr) { }
-        virtual void updateState(const QPaintEngineState& state) { }
-    };
-
-    virtual QPaintEngine* paintEngine() const { return const_cast<NullPaintEngine*>(&m_engine); }
-
-    NullPaintEngine m_engine;
-};
-#endif
-
-WebPage::WebPage(QObject* parent, DumpRenderTree* drt)
-    : QWebPage(parent)
-    , m_webInspector(0)
-    , m_drt(drt)
-{
-    QWebSettings* globalSettings = QWebSettings::globalSettings();
-
-    globalSettings->setFontSize(QWebSettings::MinimumFontSize, 0);
-    globalSettings->setFontSize(QWebSettings::MinimumLogicalFontSize, 5);
-    globalSettings->setFontSize(QWebSettings::DefaultFontSize, 16);
-    globalSettings->setFontSize(QWebSettings::DefaultFixedFontSize, 13);
-
-    globalSettings->setAttribute(QWebSettings::JavascriptCanOpenWindows, true);
-    globalSettings->setAttribute(QWebSettings::JavascriptCanAccessClipboard, true);
-    globalSettings->setAttribute(QWebSettings::LinksIncludedInFocusChain, false);
-    globalSettings->setAttribute(QWebSettings::PluginsEnabled, true);
-    globalSettings->setAttribute(QWebSettings::LocalContentCanAccessRemoteUrls, true);
-    globalSettings->setAttribute(QWebSettings::JavascriptEnabled, true);
-    globalSettings->setAttribute(QWebSettings::PrivateBrowsingEnabled, false);
-    globalSettings->setAttribute(QWebSettings::SpatialNavigationEnabled, false);
-
-    connect(this, SIGNAL(geometryChangeRequested(const QRect &)),
-            this, SLOT(setViewGeometry(const QRect & )));
-
-    setNetworkAccessManager(m_drt->networkAccessManager());
-    setPluginFactory(new TestPlugin(this));
-
-    connect(this, SIGNAL(featurePermissionRequested(QWebFrame*, QWebPage::Feature)), this, SLOT(requestPermission(QWebFrame*, QWebPage::Feature)));
-    connect(this, SIGNAL(featurePermissionRequestCanceled(QWebFrame*, QWebPage::Feature)), this, SLOT(cancelPermission(QWebFrame*, QWebPage::Feature)));
-}
-
-WebPage::~WebPage()
-{
-    delete m_webInspector;
-}
-
-QWebInspector* WebPage::webInspector()
-{
-    if (!m_webInspector) {
-        m_webInspector = new QWebInspector;
-        m_webInspector->setPage(this);
-    }
-    return m_webInspector;
-}
-
-void WebPage::resetSettings()
-{
-    // After each layout test, reset the settings that may have been changed by
-    // testRunner.overridePreference() or similar.
-    settings()->resetFontSize(QWebSettings::DefaultFontSize);
-    settings()->resetAttribute(QWebSettings::JavascriptCanOpenWindows);
-    settings()->resetAttribute(QWebSettings::JavascriptEnabled);
-    settings()->resetAttribute(QWebSettings::PrivateBrowsingEnabled);
-    settings()->resetAttribute(QWebSettings::SpatialNavigationEnabled);
-    settings()->resetAttribute(QWebSettings::LinksIncludedInFocusChain);
-    settings()->resetAttribute(QWebSettings::OfflineWebApplicationCacheEnabled);
-    settings()->resetAttribute(QWebSettings::LocalContentCanAccessRemoteUrls);
-    settings()->resetAttribute(QWebSettings::LocalContentCanAccessFileUrls);
-    settings()->resetAttribute(QWebSettings::PluginsEnabled);
-    settings()->resetAttribute(QWebSettings::JavascriptCanAccessClipboard);
-    settings()->resetAttribute(QWebSettings::AutoLoadImages);
-    settings()->resetAttribute(QWebSettings::ZoomTextOnly);
-    settings()->resetAttribute(QWebSettings::CSSRegionsEnabled);
-    settings()->resetAttribute(QWebSettings::CSSGridLayoutEnabled);
-    settings()->resetAttribute(QWebSettings::AcceleratedCompositingEnabled);
-
-    m_drt->testRunner()->setCaretBrowsingEnabled(false);
-    m_drt->testRunner()->setAuthorAndUserStylesEnabled(true);
-    m_drt->testRunner()->setDefersLoading(false);
-
-    // globalSettings must be reset explicitly.
-    m_drt->testRunner()->setXSSAuditorEnabled(false);
-
-    QWebSettings::setMaximumPagesInCache(0); // reset to default
-    settings()->setUserStyleSheetUrl(QUrl()); // reset to default
-
-    DumpRenderTreeSupportQt::setSeamlessIFramesEnabled(true);
-
-    DumpRenderTreeSupportQt::resetInternalsObject(mainFrame()->handle());
-
-    m_pendingGeolocationRequests.clear();
-}
-
-QWebPage* WebPage::createWindow(QWebPage::WebWindowType)
-{
-    return m_drt->createWindow();
-}
-
-void WebPage::javaScriptAlert(QWebFrame*, const QString& message)
-{
-    if (!isTextOutputEnabled())
-        return;
-
-    fprintf(stdout, "ALERT: %s\n", message.toUtf8().constData());
-    fflush(stdout);
-}
-
-void WebPage::requestPermission(QWebFrame* frame, QWebPage::Feature feature)
-{
-    switch (feature) {
-    case Notifications:
-        if (!m_drt->testRunner()->ignoreReqestForPermission())
-            setFeaturePermission(frame, feature, PermissionGrantedByUser);
-        break;
-    case Geolocation:
-        if (m_drt->testRunner()->isGeolocationPermissionSet())
-            if (m_drt->testRunner()->geolocationPermission())
-                setFeaturePermission(frame, feature, PermissionGrantedByUser);
-            else
-                setFeaturePermission(frame, feature, PermissionDeniedByUser);
-        else
-            m_pendingGeolocationRequests.append(frame);
-        break;
-    default:
-        break;
-    }
-}
-
-void WebPage::cancelPermission(QWebFrame* frame, QWebPage::Feature feature)
-{
-    switch (feature) {
-    case Geolocation:
-        m_pendingGeolocationRequests.removeOne(frame);
-        break;
-    default:
-        break;
-    }
-}
-
-void WebPage::permissionSet(QWebPage::Feature feature)
-{
-    switch (feature) {
-    case Geolocation:
-        {
-        Q_ASSERT(m_drt->testRunner()->isGeolocationPermissionSet());
-        foreach (QWebFrame* frame, m_pendingGeolocationRequests)
-            if (m_drt->testRunner()->geolocationPermission())
-                setFeaturePermission(frame, feature, PermissionGrantedByUser);
-            else
-                setFeaturePermission(frame, feature, PermissionDeniedByUser);
-
-        m_pendingGeolocationRequests.clear();
-        break;
-        }
-    default:
-        break;
-    }
-}
-
-static QString urlSuitableForTestResult(const QString& url)
-{
-    if (url.isEmpty() || !url.startsWith(QLatin1String("file://")))
-        return url;
-
-    return QFileInfo(url).fileName();
-}
-
-void WebPage::javaScriptConsoleMessage(const QString& message, int lineNumber, const QString&)
-{
-    if (!isTextOutputEnabled())
-        return;
-
-    QString newMessage;
-    if (!message.isEmpty()) {
-        newMessage = message;
-
-        size_t fileProtocol = newMessage.indexOf(QLatin1String("file://"));
-        if (fileProtocol != -1) {
-            newMessage = newMessage.left(fileProtocol) + urlSuitableForTestResult(newMessage.mid(fileProtocol));
-        }
-    }
-
-    fprintf(stdout, "CONSOLE MESSAGE: ");
-    if (lineNumber)
-        fprintf(stdout, "line %d: ", lineNumber);
-    fprintf(stdout, "%s\n", newMessage.toUtf8().constData());
-}
-
-bool WebPage::javaScriptConfirm(QWebFrame*, const QString& msg)
-{
-    if (!isTextOutputEnabled())
-        return true;
-
-    fprintf(stdout, "CONFIRM: %s\n", msg.toUtf8().constData());
-    return true;
-}
-
-bool WebPage::javaScriptPrompt(QWebFrame*, const QString& msg, const QString& defaultValue, QString* result)
-{
-    if (!isTextOutputEnabled())
-        return true;
-
-    fprintf(stdout, "PROMPT: %s, default text: %s\n", msg.toUtf8().constData(), defaultValue.toUtf8().constData());
-    *result = defaultValue;
-    return true;
-}
-
-bool WebPage::acceptNavigationRequest(QWebFrame* frame, const QNetworkRequest& request, NavigationType type)
-{
-    if (m_drt->testRunner()->waitForPolicy())
-        m_drt->testRunner()->notifyDone();
-
-    return QWebPage::acceptNavigationRequest(frame, request, type);
-}
-
-bool WebPage::supportsExtension(QWebPage::Extension extension) const
-{
-    if (extension == QWebPage::ErrorPageExtension)
-        return m_drt->testRunner()->shouldHandleErrorPages();
-
-    return false;
-}
-
-bool WebPage::extension(Extension extension, const ExtensionOption *option, ExtensionReturn *output)
-{
-    const QWebPage::ErrorPageExtensionOption* info = static_cast<const QWebPage::ErrorPageExtensionOption*>(option);
-
-    // Lets handle error pages for the main frame for now.
-    if (info->frame != mainFrame())
-        return false;
-
-    QWebPage::ErrorPageExtensionReturn* errorPage = static_cast<QWebPage::ErrorPageExtensionReturn*>(output);
-
-    errorPage->content = QString("data:text/html,<body/>").toUtf8();
-
-    return true;
-}
-
-QObject* WebPage::createPlugin(const QString& classId, const QUrl& url, const QStringList& paramNames, const QStringList& paramValues)
-{
-    Q_UNUSED(url);
-    Q_UNUSED(paramNames);
-    Q_UNUSED(paramValues);
-
-    if (classId == QLatin1String("QProgressBar"))
-        return new QProgressBar(view());
-    if (classId == QLatin1String("QLabel"))
-        return new QLabel(view());
-
-    return 0;
-}
-
-void WebPage::setViewGeometry(const QRect& rect)
-{
-    if (WebViewGraphicsBased* v = qobject_cast<WebViewGraphicsBased*>(view()))
-        v->scene()->setSceneRect(QRectF(rect));
-    else if (QWidget *v = view())
-        v->setGeometry(rect);
-}
-
-WebViewGraphicsBased::WebViewGraphicsBased(QWidget* parent)
-    : m_item(new QGraphicsWebView)
-{
-    setScene(new QGraphicsScene(this));
-    scene()->addItem(m_item);
-}
-
-static DumpRenderTree *s_instance = 0;
-
-DumpRenderTree::DumpRenderTree()
-    : m_dumpPixelsForAllTests(false)
-    , m_stdin(0)
-    , m_enableTextOutput(false)
-    , m_standAloneMode(false)
-    , m_graphicsBased(false)
-    , m_persistentStoragePath(QString(getenv("DUMPRENDERTREE_TEMP")))
-{
-    ASSERT(!s_instance);
-    s_instance = this;
-
-    QByteArray viewMode = getenv("QT_DRT_WEBVIEW_MODE");
-    if (viewMode == "graphics")
-        setGraphicsBased(true);
-
-    WebKit::initializeWebKitWidgets();
-    WebCore::initializeWebCoreQt();
-    DumpRenderTreeSupportQt::initialize();
-
-    // Set running in DRT mode for qwebpage to create testable objects.
-    DumpRenderTreeSupportQt::setDumpRenderTreeModeEnabled(true);
-    DumpRenderTreeSupportQt::overwritePluginDirectories();
-    QWebSettings::enablePersistentStorage(m_persistentStoragePath);
-
-    m_networkAccessManager = new NetworkAccessManager(this);
-    // create our primary testing page/view.
-    if (isGraphicsBased()) {
-        WebViewGraphicsBased* view = new WebViewGraphicsBased(0);
-        m_page = new WebPage(view, this);
-        view->setPage(m_page);
-        m_mainView = view;
-    } else {
-        QWebView* view = new QWebView(0);
-        m_page = new WebPage(view, this);
-        view->setPage(m_page);
-        m_mainView = view;
-    }
-    // Use a frame group name for all pages created by DumpRenderTree to allow
-    // testing of cross-page frame lookup.
-    DumpRenderTreeSupportQt::webPageSetGroupName(pageAdapter(), "org.webkit.qt.DumpRenderTree");
-
-    m_mainView->setContextMenuPolicy(Qt::NoContextMenu);
-    m_mainView->resize(QSize(TestRunnerQt::maxViewWidth, TestRunnerQt::maxViewHeight));
-
-    // clean up cache by resetting quota.
-    qint64 quota = webPage()->settings()->offlineWebApplicationCacheQuota();
-    webPage()->settings()->setOfflineWebApplicationCacheQuota(quota);
-
-    // create our controllers. This has to be done before connectFrame,
-    // as it exports there to the JavaScript DOM window.
-    m_controller = new TestRunnerQt(this);
-    connect(m_controller, SIGNAL(showPage()), this, SLOT(showPage()));
-    connect(m_controller, SIGNAL(hidePage()), this, SLOT(hidePage()));
-
-    // async geolocation permission set by controller
-    connect(m_controller, SIGNAL(geolocationPermissionSet()), this, SLOT(geolocationPermissionSet()));
-
-    connect(m_controller, SIGNAL(done()), this, SLOT(dump()));
-    m_eventSender = new EventSender(m_page);
-    m_textInputController = new TextInputController(m_page);
-    m_gcController.reset(new GCController());
-
-    // now connect our different signals
-    connect(m_page, SIGNAL(frameCreated(QWebFrame *)),
-            this, SLOT(connectFrame(QWebFrame *)));
-    connectFrame(m_page->mainFrame());
-
-    connect(m_page, SIGNAL(loadFinished(bool)),
-            m_controller, SLOT(maybeDump(bool)));
-    // We need to connect to loadStarted() because notifyDone should only
-    // dump results itself when the last page loaded in the test has finished loading.
-    connect(m_page, SIGNAL(loadStarted()),
-            m_controller, SLOT(resetLoadFinished()));
-    connect(m_page, SIGNAL(windowCloseRequested()), this, SLOT(windowCloseRequested()));
-    connect(m_page, SIGNAL(printRequested(QWebFrame*)), this, SLOT(dryRunPrint(QWebFrame*)));
-
-    connect(m_page->mainFrame(), SIGNAL(titleChanged(const QString&)),
-            SLOT(titleChanged(const QString&)));
-    connect(m_page, SIGNAL(databaseQuotaExceeded(QWebFrame*,QString)),
-            this, SLOT(dumpDatabaseQuota(QWebFrame*,QString)));
-    connect(m_page, SIGNAL(applicationCacheQuotaExceeded(QWebSecurityOrigin *, quint64, quint64)),
-            this, SLOT(dumpApplicationCacheQuota(QWebSecurityOrigin *, quint64, quint64)));
-    connect(m_page, SIGNAL(statusBarMessage(const QString&)),
-            this, SLOT(statusBarMessage(const QString&)));
-
-    QObject::connect(this, SIGNAL(quit()), qApp, SLOT(quit()), Qt::QueuedConnection);
-
-    DumpRenderTreeSupportQt::setDumpRenderTreeModeEnabled(true);
-    DumpRenderTreeSupportQt::setInteractiveFormValidationEnabled(pageAdapter(), true);
-    DumpRenderTreeSupportQt::enableMockScrollbars();
-
-    QFocusEvent event(QEvent::FocusIn, Qt::ActiveWindowFocusReason);
-    QApplication::sendEvent(m_mainView, &event);
-}
-
-DumpRenderTree::~DumpRenderTree()
-{
-    if (!m_redirectOutputFileName.isEmpty())
-        fclose(stdout);
-    if (!m_redirectErrorFileName.isEmpty())
-        fclose(stderr);
-    delete m_mainView;
-    delete m_stdin;
-    s_instance = 0;
-}
-
-DumpRenderTree* DumpRenderTree::instance()
-{
-    return s_instance;
-}
-
-static void clearHistory(QWebPage* page)
-{
-    // QWebHistory::clear() leaves current page, so remove it as well by setting
-    // max item count to 0, and then setting it back to it's original value.
-
-    QWebHistory* history = page->history();
-    int itemCount = history->maximumItemCount();
-
-    history->clear();
-    history->setMaximumItemCount(0);
-    history->setMaximumItemCount(itemCount);
-}
-
-void DumpRenderTree::dryRunPrint(QWebFrame* frame)
-{
-#if !defined(QT_NO_PRINTER) && HAVE(QTPRINTSUPPORT)
-    NullPrinter printer;
-    frame->print(&printer);
-#endif
-}
-
-void DumpRenderTree::resetToConsistentStateBeforeTesting(const QUrl& url)
-{
-    // reset so that any current loads are stopped
-    // NOTE: that this has to be done before the testRunner is
-    // reset or we get timeouts for some tests.
-    m_page->blockSignals(true);
-    m_page->triggerAction(QWebPage::Stop);
-    m_page->blockSignals(false);
-
-    QList<QWebSecurityOrigin> knownOrigins = QWebSecurityOrigin::allOrigins();
-    for (int i = 0; i < knownOrigins.size(); ++i)
-        knownOrigins[i].setDatabaseQuota(databaseDefaultQuota);
-
-    // reset the testRunner at this point, so that we under no
-    // circumstance dump (stop the waitUntilDone timer) during the reset
-    // of the DRT.
-    m_controller->reset();
-
-    m_jscController = TestRunner::create(url.toString().toStdString(), m_expectedHash.toStdString());
-
-    // reset mouse clicks counter
-    m_eventSender->resetClickCount();
-
-    closeRemainingWindows();
-    
-    // Call setTextSizeMultiplier(1.0) to reset TextZoomFactor and PageZoomFactor too. 
-    // It should be done before resetSettings() to guarantee resetting QWebSettings::ZoomTextOnly correctly.
-    m_page->mainFrame()->setTextSizeMultiplier(1.0);
-
-    m_page->resetSettings();
-#ifndef QT_NO_UNDOSTACK
-    m_page->undoStack()->clear();
-#endif
-
-    clearHistory(m_page);
-    DumpRenderTreeSupportQt::scalePageBy(mainFrameAdapter(), 1, QPoint(0, 0));
-    DumpRenderTreeSupportQt::clearFrameName(mainFrameAdapter());
-    DumpRenderTreeSupportQt::removeUserStyleSheets(pageAdapter());
-
-    m_page->mainFrame()->setScrollBarPolicy(Qt::Vertical, Qt::ScrollBarAsNeeded);
-    m_page->mainFrame()->setScrollBarPolicy(Qt::Horizontal, Qt::ScrollBarAsNeeded);
-
-    if (url.scheme() == "http" || url.scheme() == "https") {
-        // credentials may exist from previous tests.
-        m_page->setNetworkAccessManager(0);
-        delete m_networkAccessManager;
-        m_networkAccessManager = new NetworkAccessManager(this);
-        m_page->setNetworkAccessManager(m_networkAccessManager);
-    }
-
-    WorkQueue::shared()->clear();
-    WorkQueue::shared()->setFrozen(false);
-
-    DumpRenderTreeSupportQt::resetOriginAccessWhiteLists();
-
-    DumpRenderTreeSupportQt::setWindowsBehaviorAsEditingBehavior(pageAdapter());
-
-    QLocale::setDefault(QLocale::c());
-
-    testRunner()->setDeveloperExtrasEnabled(true);
-#ifndef Q_OS_WINCE
-    setlocale(LC_ALL, "");
-#endif
-
-    DumpRenderTreeSupportQt::clearOpener(mainFrameAdapter());
-}
-
-static bool isGlobalHistoryTest(const QUrl& url)
-{
-    if (url.path().contains("globalhistory/"))
-        return true;
-    return false;
-}
-
-static bool isWebInspectorTest(const QUrl& url)
-{
-    if (url.path().contains("inspector/"))
-        return true;
-    return false;
-}
-
-static bool isDumpAsTextTest(const QUrl& url)
-{
-    if (url.path().contains("dumpAsText/"))
-        return true;
-    return false;
-}
-
-
-void DumpRenderTree::open(const QUrl& url)
-{
-    DumpRenderTreeSupportQt::dumpResourceLoadCallbacksPath(QFileInfo(url.toString()).path());
-    resetToConsistentStateBeforeTesting(url);
-
-    if (isWebInspectorTest(m_page->mainFrame()->url()))
-        testRunner()->closeWebInspector();
-
-    if (isWebInspectorTest(url))
-        testRunner()->showWebInspector();
-
-    if (isDumpAsTextTest(url))
-        m_jscController->setDumpAsText(true);
-
-    if (isGlobalHistoryTest(url))
-        testRunner()->dumpHistoryCallbacks();
-
-    // W3C SVG tests expect to be 480x360
-    bool isW3CTest = url.toString().contains("svg/W3C-SVG-1.1");
-    int width = isW3CTest ? 480 : TestRunnerQt::maxViewWidth;
-    int height = isW3CTest ? 360 : TestRunnerQt::maxViewHeight;
-    m_mainView->resize(QSize(width, height));
-    m_page->setPreferredContentsSize(QSize());
-    m_page->setViewportSize(QSize(width, height));
-
-    QFocusEvent ev(QEvent::FocusIn);
-    m_page->event(&ev);
-
-    WebKit::QtTestSupport::clearMemoryCaches();
-
-    WebKit::QtTestSupport::initializeTestFonts();
-
-    DumpRenderTreeSupportQt::dumpFrameLoader(url.toString().contains("loading/"));
-    setTextOutputEnabled(true);
-    m_page->mainFrame()->load(url);
-}
-
-void DumpRenderTree::readLine()
-{
-    if (!m_stdin) {
-        m_stdin = new QFile;
-        m_stdin->open(stdin, QFile::ReadOnly);
-
-        if (!m_stdin->isReadable()) {
-            emit quit();
-            return;
-        }
-    }
-
-    QByteArray line = m_stdin->readLine().trimmed();
-
-    if (line.isEmpty()) {
-        emit quit();
-        return;
-    }
-
-    processLine(QString::fromLocal8Bit(line.constData(), line.length()));
-}
-
-void DumpRenderTree::processArgsLine(const QStringList &args)
-{
-    setStandAloneMode(true);
-
-    m_standAloneModeTestList = args;
-
-    QFileInfo firstEntry(m_standAloneModeTestList.first());
-    if (firstEntry.isDir()) {
-        QDir folderEntry(m_standAloneModeTestList.first());
-        QStringList supportedExt;
-        // Check for all supported extensions (from Scripts/webkitpy/layout_tests/layout_package/test_files.py).
-        supportedExt << "*.html" << "*.shtml" << "*.xml" << "*.xhtml" << "*.xhtmlmp" << "*.pl" << "*.php" << "*.svg";
-        m_standAloneModeTestList = folderEntry.entryList(supportedExt, QDir::Files);
-        for (int i = 0; i < m_standAloneModeTestList.size(); ++i)
-            m_standAloneModeTestList[i] = folderEntry.absoluteFilePath(m_standAloneModeTestList[i]);
-    }
-    connect(this, SIGNAL(ready()), this, SLOT(loadNextTestInStandAloneMode()), Qt::QueuedConnection);
-
-    if (!m_standAloneModeTestList.isEmpty()) {
-        QString first = m_standAloneModeTestList.takeFirst();
-        processLine(first);
-    }
-}
-
-void DumpRenderTree::loadNextTestInStandAloneMode()
-{
-    if (m_standAloneModeTestList.isEmpty()) {
-        emit quit();
-        return;
-    }
-    QString first = m_standAloneModeTestList.takeFirst();
-    processLine(first);
-}
-
-void DumpRenderTree::processLine(const QString &input)
-{
-    TestCommand command = parseInputLine(std::string(input.toLatin1().constData()));
-    QString pathOrURL = QLatin1String(command.pathOrURL.c_str());
-    m_dumpPixelsForCurrentTest = command.shouldDumpPixels || m_dumpPixelsForAllTests;
-    m_expectedHash = QLatin1String(command.expectedPixelHash.c_str());
-
-    if (pathOrURL.startsWith(QLatin1String("http:"))
-            || pathOrURL.startsWith(QLatin1String("https:"))
-            || pathOrURL.startsWith(QLatin1String("file:"))
-            || pathOrURL == QLatin1String("about:blank")) {
-        open(QUrl(pathOrURL));
-    } else {
-        QFileInfo fi(pathOrURL);
-
-        if (!fi.exists()) {
-            QDir currentDir = QDir::currentPath();
-
-            // Try to be smart about where the test is located
-            if (currentDir.dirName() == QLatin1String("LayoutTests"))
-                fi = QFileInfo(currentDir, pathOrURL.replace(QRegExp(".*?LayoutTests/(.*)"), "\\1"));
-            else if (!pathOrURL.contains(QLatin1String("LayoutTests")))
-                fi = QFileInfo(currentDir, pathOrURL.prepend(QLatin1String("LayoutTests/")));
-
-            if (!fi.exists()) {
-                emit ready();
-                return;
-            }
-        }
-
-        open(QUrl::fromLocalFile(fi.absoluteFilePath()));
-    }
-
-    if (command.timeout > 0)
-        setTimeout(command.timeout);
-    fflush(stdout);
-}
-
-void DumpRenderTree::closeRemainingWindows()
-{
-    foreach (QObject* widget, windows)
-        delete widget;
-    windows.clear();
-}
-
-void DumpRenderTree::initJSObjects()
-{
-    QWebFrame *frame = qobject_cast<QWebFrame*>(sender());
-    Q_ASSERT(frame);
-
-    JSContextRef context = 0;
-    JSObjectRef window = 0;
-
-    DumpRenderTreeSupportQt::getJSWindowObject(frame->handle(), &context, &window);
-
-    frame->addToJavaScriptWindowObject(QLatin1String("testRunner"), m_controller);
-    frame->addToJavaScriptWindowObject(QLatin1String("eventSender"), m_eventSender);
-    frame->addToJavaScriptWindowObject(QLatin1String("textInputController"), m_textInputController);
-    m_gcController->makeWindowObject(context, window, 0);
-
-    if (m_jscController) {
-        JSObjectRef dummyWindow = JSObjectMake(context, 0, 0);
-        m_jscController->makeWindowObject(context, dummyWindow, 0);
-        JSRetainPtr<JSStringRef> testRunnerName(Adopt, JSStringCreateWithUTF8CString("testRunner"));
-        JSValueRef wrappedTestRunner = JSObjectGetProperty(context, dummyWindow, testRunnerName.get(), 0);
-        JSRetainPtr<JSStringRef> helperScript(Adopt, JSStringCreateWithUTF8CString("(function() {\n"
-                                                                                   "    function bind(fun, thisArg) {\n"
-                                                                                   "        return function() {\n"
-                                                                                   "            return fun.apply(thisArg, Array.prototype.slice.call(arguments));\n"
-                                                                                   "        }\n"
-                                                                                   "    }\n"
-                                                                                   "for (var prop in this.jscBasedTestRunner) {\n"
-                                                                                   "    var pd = Object.getOwnPropertyDescriptor(this.qtBasedTestRunner, prop);\n"
-                                                                                   "    if (pd !== undefined) continue;\n"
-                                                                                   "    pd = Object.getOwnPropertyDescriptor(this.jscBasedTestRunner, prop);\n"
-                                                                                   "    this.qtBasedTestRunner[prop] = bind(this.jscBasedTestRunner[prop], this.jscBasedTestRunner);\n"
-                                                                                   "}\n"
-                                                                                   "}).apply(this)\n"));
-
-        JSRetainPtr<JSStringRef> qtBasedTestRunnerName(Adopt, JSStringCreateWithUTF8CString("qtBasedTestRunner"));
-        JSRetainPtr<JSStringRef> jscBasedTestRunnerName(Adopt, JSStringCreateWithUTF8CString("jscBasedTestRunner"));
-
-        JSObjectRef args = JSObjectMake(context, 0, 0);
-        JSObjectSetProperty(context, args, qtBasedTestRunnerName.get(), JSObjectGetProperty(context, window, testRunnerName.get(), 0), 0, 0);
-        JSObjectSetProperty(context, args, jscBasedTestRunnerName.get(), wrappedTestRunner, 0, 0);
-
-        JSValueRef ex = 0;
-        JSEvaluateScript(context, helperScript.get(), args, 0, 0, &ex);
-        if (ex) {
-            JSRetainPtr<JSStringRef> msg(Adopt, JSValueToStringCopy(context, ex, 0));
-            fprintf(stderr, "Error evaluating TestRunner setup-script: %s\n", qPrintable(JSStringCopyQString(msg.get())));
-        }
-    }
-
-    DumpRenderTreeSupportQt::injectInternalsObject(frame->handle());
-}
-
-void DumpRenderTree::showPage()
-{
-    m_mainView->show();
-    // we need a paint event but cannot process all the events
-    QPixmap pixmap(m_mainView->size());
-    m_mainView->render(&pixmap);
-}
-
-void DumpRenderTree::hidePage()
-{
-    m_mainView->hide();
-}
-
-QString DumpRenderTree::dumpFrameScrollPosition(QWebFrame* frame)
-{
-    if (!frame || !DumpRenderTreeSupportQt::hasDocumentElement(frame->handle()))
-        return QString();
-
-    QString result;
-    QPoint pos = frame->scrollPosition();
-    if (pos.x() > 0 || pos.y() > 0) {
-        QWebFrame* parent = qobject_cast<QWebFrame *>(frame->parent());
-        if (parent)
-            result.append(QString("frame '%1' ").arg(frame->title()));
-        result.append(QString("scrolled to %1,%2\n").arg(pos.x()).arg(pos.y()));
-    }
-
-    if (m_jscController->dumpChildFrameScrollPositions()) {
-        QList<QWebFrame*> children = frame->childFrames();
-        for (int i = 0; i < children.size(); ++i)
-            result += dumpFrameScrollPosition(children.at(i));
-    }
-    return result;
-}
-
-QString DumpRenderTree::dumpFramesAsText(QWebFrame* frame)
-{
-    if (!frame || !DumpRenderTreeSupportQt::hasDocumentElement(frame->handle()))
-        return QString();
-
-    QString result;
-    QWebFrame* parent = qobject_cast<QWebFrame*>(frame->parent());
-    if (parent) {
-        result.append(QLatin1String("\n--------\nFrame: '"));
-        result.append(frame->frameName());
-        result.append(QLatin1String("'\n--------\n"));
-    }
-
-    QString innerText = frame->toPlainText();
-    result.append(innerText);
-    result.append(QLatin1String("\n"));
-
-    if (m_jscController->dumpChildFramesAsText()) {
-        QList<QWebFrame *> children = frame->childFrames();
-        for (int i = 0; i < children.size(); ++i)
-            result += dumpFramesAsText(children.at(i));
-    }
-
-    return result;
-}
-
-static QString dumpHistoryItem(const QWebHistoryItem& item, int indent, bool current)
-{
-    QString result;
-
-    int start = 0;
-    if (current) {
-        result.append(QLatin1String("curr->"));
-        start = 6;
-    }
-    for (int i = start; i < indent; i++)
-        result.append(' ');
-
-    QString url = item.url().toString();
-    if (url.contains("file://")) {
-        static QString layoutTestsString("/LayoutTests/");
-        static QString fileTestString("(file test):");
-
-        QString res = url.mid(url.indexOf(layoutTestsString) + layoutTestsString.length());
-        if (res.isEmpty())
-            return result;
-
-        result.append(fileTestString);
-        result.append(res);
-    } else {
-        result.append(url);
-    }
-
-    QString target = DumpRenderTreeSupportQt::historyItemTarget(item);
-    if (!target.isEmpty())
-        result.append(QString(QLatin1String(" (in frame \"%1\")")).arg(target));
-
-    if (DumpRenderTreeSupportQt::isTargetItem(item))
-        result.append(QLatin1String("  **nav target**"));
-    result.append(QLatin1String("\n"));
-
-    QMap<QString, QWebHistoryItem> children = DumpRenderTreeSupportQt::getChildHistoryItems(item);
-    foreach (QWebHistoryItem item, children)
-        result += dumpHistoryItem(item, 12, false);
-
-    return result;
-}
-
-QString DumpRenderTree::dumpBackForwardList(QWebPage* page)
-{
-    QWebHistory* history = page->history();
-
-    QString result;
-    result.append(QLatin1String("\n============== Back Forward List ==============\n"));
-
-    // FORMAT:
-    // "        (file test):fast/loader/resources/click-fragment-link.html  **nav target**"
-    // "curr->  (file test):fast/loader/resources/click-fragment-link.html#testfragment  **nav target**"
-
-    int maxItems = history->maximumItemCount();
-
-    foreach (const QWebHistoryItem item, history->backItems(maxItems)) {
-        if (!item.isValid())
-            continue;
-        result.append(dumpHistoryItem(item, 8, false));
-    }
-
-    QWebHistoryItem item = history->currentItem();
-    if (item.isValid())
-        result.append(dumpHistoryItem(item, 8, true));
-
-    foreach (const QWebHistoryItem item, history->forwardItems(maxItems)) {
-        if (!item.isValid())
-            continue;
-        result.append(dumpHistoryItem(item, 8, false));
-    }
-
-    result.append(QLatin1String("===============================================\n"));
-    return result;
-}
-
-static const char *methodNameStringForFailedTest(TestRunner *controller)
-{
-    const char *errorMessage;
-    if (controller->dumpAsText())
-        errorMessage = "[documentElement innerText]";
-    // FIXME: Add when we have support
-    //else if (controller->dumpDOMAsWebArchive())
-    //    errorMessage = "[[mainFrame DOMDocument] webArchive]";
-    //else if (controller->dumpSourceAsWebArchive())
-    //    errorMessage = "[[mainFrame dataSource] webArchive]";
-    else
-        errorMessage = "[mainFrame renderTreeAsExternalRepresentation]";
-
-    return errorMessage;
-}
-
-void DumpRenderTree::dump()
-{
-    // Prevent any further frame load or resource load callbacks from appearing after we dump the result.
-    DumpRenderTreeSupportQt::dumpFrameLoader(false);
-    DumpRenderTreeSupportQt::dumpResourceLoadCallbacks(false);
-
-    QWebFrame *mainFrame = m_page->mainFrame();
-
-    if (isStandAloneMode()) {
-        QString markup = mainFrame->toHtml();
-        fprintf(stdout, "Source:\n\n%s\n", markup.toUtf8().constData());
-    }
-
-    QString mimeType = DumpRenderTreeSupportQt::responseMimeType(mainFrame->handle());
-    if (mimeType == "text/plain")
-        m_jscController->setDumpAsText(true);
-
-    // Dump render text...
-    QString resultString;
-    QString resultContentType = "text/plain";
-    QByteArray resultData;
-    if (m_controller->shouldDumpAsAudio()) {
-        resultContentType = "audio/wav";
-        resultData = m_controller->audioData();
-    } else if (m_jscController->dumpAsText())
-        resultString = dumpFramesAsText(mainFrame);
-    else {
-        resultString = DumpRenderTreeSupportQt::frameRenderTreeDump(mainFrame->handle());
-        resultString += dumpFrameScrollPosition(mainFrame);
-    }
-    if (!resultString.isEmpty()) {
-        fprintf(stdout, "Content-Type: %s\n", resultContentType.toUtf8().constData());
-        fprintf(stdout, "%s", resultString.toUtf8().constData());
-
-        if (m_jscController->dumpBackForwardList()) {
-            fprintf(stdout, "%s", dumpBackForwardList(webPage()).toUtf8().constData());
-            foreach (QObject* widget, windows) {
-                QWebPage* page = qobject_cast<QWebPage*>(widget->findChild<QWebPage*>());
-                fprintf(stdout, "%s", dumpBackForwardList(page).toUtf8().constData());
-            }
-        }
-    } else if (!resultData.isEmpty()) {
-        fprintf(stdout, "Content-Type: %s\n", resultContentType.toUtf8().constData());
-        fprintf(stdout, "Content-Transfer-Encoding: base64\n");
-        fprintf(stdout, "%s", resultData.toBase64().constData());
-    } else
-        printf("ERROR: nil result from %s", methodNameStringForFailedTest(m_jscController.get()));
-
-    // signal end of text block
-    fputs("#EOF\n", stdout);
-    fputs("#EOF\n", stderr);
-
-    if (m_dumpPixelsForCurrentTest && m_jscController->generatePixelResults()) {
-        QImage image;
-        if (!m_jscController->isPrinting()) {
-            image = QImage(m_page->viewportSize(), QImage::Format_ARGB32);
-            image.fill(Qt::white);
-            QPainter painter(&image);
-            mainFrame->render(&painter);
-            painter.end();
-        } else
-            image = DumpRenderTreeSupportQt::paintPagesWithBoundaries(mainFrame->handle());
-
-        if (DumpRenderTreeSupportQt::trackRepaintRects(mainFrameAdapter())) {
-            QVector<QRect> repaintRects;
-            DumpRenderTreeSupportQt::getTrackedRepaintRects(mainFrameAdapter(), repaintRects);
-            QImage mask(image.size(), image.format());
-            mask.fill(QColor(0, 0, 0, 0.66 * 255));
-
-            QPainter maskPainter(&mask);
-            maskPainter.setCompositionMode(QPainter::CompositionMode_Source);
-            for (int i = 0; i < repaintRects.size(); ++i)
-                maskPainter.fillRect(repaintRects[i], Qt::transparent);
-
-            QPainter painter(&image);
-            painter.drawImage(image.rect(), mask);
-
-            DumpRenderTreeSupportQt::setTrackRepaintRects(mainFrameAdapter(), false);
-        }
-
-        QCryptographicHash hash(QCryptographicHash::Md5);
-        for (int row = 0; row < image.height(); ++row)
-            hash.addData(reinterpret_cast<const char*>(image.scanLine(row)), image.width() * 4);
-        QString actualHash = hash.result().toHex();
-
-        fprintf(stdout, "\nActualHash: %s\n", qPrintable(actualHash));
-
-        bool dumpImage = true;
-
-        if (!m_expectedHash.isEmpty()) {
-            Q_ASSERT(m_expectedHash.length() == 32);
-            fprintf(stdout, "\nExpectedHash: %s\n", qPrintable(m_expectedHash));
-
-            if (m_expectedHash == actualHash)
-                dumpImage = false;
-        }
-
-        if (dumpImage) {
-            image.setText("checksum", actualHash);
-
-            QBuffer buffer;
-            buffer.open(QBuffer::WriteOnly);
-            image.save(&buffer, "PNG");
-            buffer.close();
-            const QByteArray &data = buffer.data();
-
-            printf("Content-Type: %s\n", "image/png");
-            printf("Content-Length: %lu\n", static_cast<unsigned long>(data.length()));
-
-            const quint32 bytesToWriteInOneChunk = 1 << 15;
-            quint32 dataRemainingToWrite = data.length();
-            const char *ptr = data.data();
-            while (dataRemainingToWrite) {
-                quint32 bytesToWriteInThisChunk = qMin(dataRemainingToWrite, bytesToWriteInOneChunk);
-                quint32 bytesWritten = fwrite(ptr, 1, bytesToWriteInThisChunk, stdout);
-                if (bytesWritten != bytesToWriteInThisChunk)
-                    break;
-                dataRemainingToWrite -= bytesWritten;
-                ptr += bytesWritten;
-            }
-        }
-
-        fflush(stdout);
-    }
-
-    puts("#EOF");   // terminate the (possibly empty) pixels block
-
-    fflush(stdout);
-    fflush(stderr);
-
-     emit ready();
-}
-
-void DumpRenderTree::titleChanged(const QString &s)
-{
-    if (m_jscController->dumpTitleChanges())
-        printf("TITLE CHANGED: '%s'\n", s.toUtf8().data());
-}
-
-void DumpRenderTree::connectFrame(QWebFrame *frame)
-{
-    connect(frame, SIGNAL(javaScriptWindowObjectCleared()), this, SLOT(initJSObjects()));
-    connect(frame, SIGNAL(provisionalLoad()),
-            testRunner(), SLOT(provisionalLoad()));
-}
-
-void DumpRenderTree::dumpDatabaseQuota(QWebFrame* frame, const QString& dbName)
-{
-    if (!m_jscController->dumpDatabaseCallbacks())
-        return;
-    QWebSecurityOrigin origin = frame->securityOrigin();
-    printf("UI DELEGATE DATABASE CALLBACK: exceededDatabaseQuotaForSecurityOrigin:{%s, %s, %i} database:%s\n",
-           origin.scheme().toUtf8().data(),
-           origin.host().toUtf8().data(),
-           origin.port(),
-           dbName.toUtf8().data());
-    origin.setDatabaseQuota(databaseDefaultQuota);
-}
-
-void DumpRenderTree::dumpApplicationCacheQuota(QWebSecurityOrigin* origin, quint64 defaultOriginQuota, quint64 totalSpaceNeeded)
-{
-    if (m_jscController->dumpApplicationCacheDelegateCallbacks()) {
-        // For example, numbers from 30000 - 39999 will output as 30000.
-        // Rounding up or down not really matter for these tests. It's
-        // sufficient to just get a range of 10000 to determine if we were
-        // above or below a threshold.
-        quint64 truncatedSpaceNeeded = (totalSpaceNeeded / 10000) * 10000;
-        printf("UI DELEGATE APPLICATION CACHE CALLBACK: exceededApplicationCacheOriginQuotaForSecurityOrigin:{%s, %s, %i} totalSpaceNeeded:~%llu\n",
-               origin->scheme().toUtf8().data(),
-               origin->host().toUtf8().data(),
-               origin->port(),
-               truncatedSpaceNeeded
-               );
-    }
-
-    if (m_jscController->disallowIncreaseForApplicationCacheQuota())
-        return;
-
-    origin->setApplicationCacheQuota(defaultOriginQuota);
-}
-
-void DumpRenderTree::statusBarMessage(const QString& message)
-{
-    if (!m_jscController->dumpStatusCallbacks())
-        return;
-
-    printf("UI DELEGATE STATUS CALLBACK: setStatusText:%s\n", message.toUtf8().constData());
-}
-
-QWebPage *DumpRenderTree::createWindow()
-{
-    if (!m_jscController->canOpenWindows())
-        return 0;
-
-    // Create a dummy container object to track the page in DRT.
-    // QObject is used instead of QWidget to prevent DRT from
-    // showing the main view when deleting the container.
-
-    QObject* container = new QObject(m_mainView);
-    // create a QWebPage we want to return
-    QWebPage* page = static_cast<QWebPage*>(new WebPage(container, this));
-    // gets cleaned up in closeRemainingWindows()
-    windows.append(container);
-
-    // connect the needed signals to the page
-    connect(page, SIGNAL(frameCreated(QWebFrame*)), this, SLOT(connectFrame(QWebFrame*)));
-    connectFrame(page->mainFrame());
-    connect(page, SIGNAL(loadFinished(bool)), m_controller, SLOT(maybeDump(bool)));
-    connect(page, SIGNAL(windowCloseRequested()), this, SLOT(windowCloseRequested()));
-
-    // Use a frame group name for all pages created by DumpRenderTree to allow
-    // testing of cross-page frame lookup.
-    DumpRenderTreeSupportQt::webPageSetGroupName(page->handle(), "org.webkit.qt.DumpRenderTree");
-
-    return page;
-}
-
-void DumpRenderTree::windowCloseRequested()
-{
-    QWebPage* page = qobject_cast<QWebPage*>(sender());
-    QObject* container = page->parent();
-    windows.removeAll(container);
-    container->deleteLater();
-}
-
-int DumpRenderTree::windowCount() const
-{
-// include the main view in the count
-    return windows.count() + 1;
-}
-
-void DumpRenderTree::geolocationPermissionSet() 
-{
-    m_page->permissionSet(QWebPage::Geolocation);
-}
-
-void DumpRenderTree::switchFocus(bool focused)
-{
-    QFocusEvent event((focused) ? QEvent::FocusIn : QEvent::FocusOut, Qt::ActiveWindowFocusReason);
-    if (!isGraphicsBased())
-        QApplication::sendEvent(m_mainView, &event);
-    else {
-        if (WebViewGraphicsBased* view = qobject_cast<WebViewGraphicsBased*>(m_mainView))
-            view->scene()->sendEvent(view->graphicsView(), &event);
-    }
-
-}
-
-QWebPageAdapter* DumpRenderTree::pageAdapter() const
-{
-    return m_page->handle();
-}
-
-QWebFrameAdapter* DumpRenderTree::mainFrameAdapter() const
-{
-    return m_page->mainFrame()->handle();
-}
-
-QList<WebPage*> DumpRenderTree::getAllPages() const
-{
-    QList<WebPage*> pages;
-    pages.append(m_page);
-    foreach (QObject* widget, windows) {
-        if (WebPage* page = widget->findChild<WebPage*>())
-            pages.append(page);
-    }
-    return pages;
-}
-
-void DumpRenderTree::setTimeout(int timeout)
-{
-    m_controller->setTimeout(timeout);
-}
-
-void DumpRenderTree::setShouldTimeout(bool flag)
-{
-    m_controller->setShouldTimeout(flag);
-}
diff --git a/Tools/DumpRenderTree/qt/DumpRenderTreeQt.h b/Tools/DumpRenderTree/qt/DumpRenderTreeQt.h
deleted file mode 100644
index 13d9e65..0000000
--- a/Tools/DumpRenderTree/qt/DumpRenderTreeQt.h
+++ /dev/null
@@ -1,241 +0,0 @@
-/*
- * Copyright (C) 2006 Nikolas Zimmermann <zimmermann@kde.org>
- * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef DumpRenderTreeQt_h
-#define DumpRenderTreeQt_h
-
-#include <QList>
-#include <QNetworkAccessManager>
-#include <QObject>
-#include <QTextStream>
-#include <QSocketNotifier>
-
-#ifndef QT_NO_OPENSSL
-#include <QSslError>
-#endif
-
-#include "DumpRenderTreeSupportQt.h"
-#include "TestRunner.h"
-#include <qgraphicsview.h>
-#include <qgraphicswebview.h>
-#include <qwebframe.h>
-#include <qwebinspector.h>
-#include <qwebpage.h>
-#include <qwebview.h>
-#include <wtf/RefPtr.h>
-
-QT_BEGIN_NAMESPACE
-class QUrl;
-class QFile;
-QT_END_NAMESPACE
-
-class QWebFrameAdapter;
-class QWebPageAdapter;
-
-class TestRunnerQt;
-class DumpRenderTreeSupportQt;
-class EventSender;
-class TextInputController;
-class GCController;
-
-class WebPage;
-class NetworkAccessManager;
-
-class DumpRenderTree : public QObject {
-Q_OBJECT
-
-public:
-    DumpRenderTree();
-    virtual ~DumpRenderTree();
-
-    static DumpRenderTree* instance();
-
-    // Initialize in single-file mode.
-    void open(const QUrl& url);
-
-    void setTextOutputEnabled(bool enable) { m_enableTextOutput = enable; }
-    bool isTextOutputEnabled() { return m_enableTextOutput; }
-
-    void setGraphicsBased(bool flag) { m_graphicsBased = flag; }
-    bool isGraphicsBased() { return m_graphicsBased; }
-
-    void closeRemainingWindows();
-    void resetToConsistentStateBeforeTesting(const QUrl&);
-
-    TestRunnerQt *testRunner() const { return m_controller; }
-    EventSender *eventSender() const { return m_eventSender; }
-    TextInputController *textInputController() const { return m_textInputController; }
-    QString persistentStoragePath() const { return m_persistentStoragePath; }
-    NetworkAccessManager *networkAccessManager() const { return m_networkAccessManager; }
-
-    QWebPage *createWindow();
-    int windowCount() const;
-
-    void switchFocus(bool focused);
-
-    WebPage *webPage() const { return m_page; }
-    QWebPageAdapter *pageAdapter() const;
-    QWebFrameAdapter *mainFrameAdapter() const;
-
-    QList<WebPage*> getAllPages() const;
-
-    void processArgsLine(const QStringList&);
-    void setRedirectOutputFileName(const QString& fileName) { m_redirectOutputFileName = fileName; }
-    void setRedirectErrorFileName(const QString& fileName) { m_redirectErrorFileName = fileName; }
-
-    void setTimeout(int);
-    void setShouldTimeout(bool flag);
-    void setShouldDumpPixelsForAllTests() { m_dumpPixelsForAllTests = true; }
-
-public Q_SLOTS:
-    void initJSObjects();
-
-    void readLine();
-    void processLine(const QString&);
-
-    void dump();
-    void titleChanged(const QString &s);
-    void connectFrame(QWebFrame *frame);
-    void dumpDatabaseQuota(QWebFrame* frame, const QString& dbName);
-    void dumpApplicationCacheQuota(QWebSecurityOrigin* origin, quint64 defaultOriginQuota, quint64 totalSpaceNeeded);
-    void statusBarMessage(const QString& message);
-    void windowCloseRequested();
-
-Q_SIGNALS:
-    void quit();
-    void ready();
-
-private Q_SLOTS:
-    void showPage();
-    void hidePage();
-    void dryRunPrint(QWebFrame*);
-    void loadNextTestInStandAloneMode();
-    void geolocationPermissionSet();
-
-private:
-    void setStandAloneMode(bool flag) { m_standAloneMode = flag; }
-    bool isStandAloneMode() { return m_standAloneMode; }
-
-    QString dumpFramesAsText(QWebFrame* frame);
-    QString dumpBackForwardList(QWebPage* page);
-    QString dumpFrameScrollPosition(QWebFrame* frame);
-    TestRunnerQt *m_controller;
-    RefPtr<TestRunner> m_jscController;
-
-    bool m_dumpPixelsForCurrentTest;
-    bool m_dumpPixelsForAllTests;
-    QString m_expectedHash;
-    QStringList m_standAloneModeTestList;
-
-    WebPage *m_page;
-    QWidget* m_mainView;
-
-    EventSender *m_eventSender;
-    TextInputController *m_textInputController;
-    QScopedPointer<GCController> m_gcController;
-    NetworkAccessManager* m_networkAccessManager;
-
-    QFile *m_stdin;
-
-    QList<QObject*> windows;
-    bool m_enableTextOutput;
-    bool m_standAloneMode;
-    bool m_graphicsBased;
-    QString m_persistentStoragePath;
-    QString m_redirectOutputFileName;
-    QString m_redirectErrorFileName;
-};
-
-class NetworkAccessManager : public QNetworkAccessManager {
-    Q_OBJECT
-public:
-    NetworkAccessManager(QObject* parent);
-
-private Q_SLOTS:
-#ifndef QT_NO_OPENSSL
-    void sslErrorsEncountered(QNetworkReply*, const QList<QSslError>&);
-#endif
-};
-
-class WebPage : public QWebPage {
-    Q_OBJECT
-public:
-    WebPage(QObject* parent, DumpRenderTree*);
-    virtual ~WebPage();
-    QWebInspector* webInspector();
-    void closeWebInspector();
-
-    QWebPage *createWindow(QWebPage::WebWindowType);
-
-    void javaScriptAlert(QWebFrame *frame, const QString& message);
-    void javaScriptConsoleMessage(const QString& message, int lineNumber, const QString& sourceID);
-    bool javaScriptConfirm(QWebFrame *frame, const QString& msg);
-    bool javaScriptPrompt(QWebFrame *frame, const QString& msg, const QString& defaultValue, QString* result);
-
-    void resetSettings();
-
-    virtual bool supportsExtension(QWebPage::Extension extension) const;
-    virtual bool extension(Extension extension, const ExtensionOption *option, ExtensionReturn *output);
-
-    QObject* createPlugin(const QString&, const QUrl&, const QStringList&, const QStringList&);
-
-    void permissionSet(QWebPage::Feature feature);
-
-    virtual bool shouldInterruptJavaScript() { return false; }
-
-public Q_SLOTS:
-    void requestPermission(QWebFrame* frame, QWebPage::Feature feature);
-    void cancelPermission(QWebFrame* frame, QWebPage::Feature feature);
-
-protected:
-    bool acceptNavigationRequest(QWebFrame* frame, const QNetworkRequest& request, NavigationType type);
-    bool isTextOutputEnabled() { return m_drt->isTextOutputEnabled(); }
-
-private Q_SLOTS:
-    void setViewGeometry(const QRect&);
-
-private:
-    QWebInspector* m_webInspector;
-    QList<QWebFrame*> m_pendingGeolocationRequests;
-    DumpRenderTree *m_drt;
-};
-
-class WebViewGraphicsBased : public QGraphicsView {
-    Q_OBJECT
-
-public:
-    WebViewGraphicsBased(QWidget* parent);
-    QGraphicsWebView* graphicsView() const { return m_item; }
-    void setPage(QWebPage* page) { m_item->setPage(page); }
-
-private:
-    QGraphicsWebView* m_item;
-};
-
-#endif
diff --git a/Tools/DumpRenderTree/qt/EventSenderQt.cpp b/Tools/DumpRenderTree/qt/EventSenderQt.cpp
deleted file mode 100644
index 352f1de..0000000
--- a/Tools/DumpRenderTree/qt/EventSenderQt.cpp
+++ /dev/null
@@ -1,765 +0,0 @@
-/*
- * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-#include "config.h"
-#include "EventSenderQt.h"
-
-#include <QGestureEvent>
-#include <QGraphicsSceneMouseEvent>
-#include <QtTest/QtTest>
-#include <qpa/qwindowsysteminterface.h>
-
-#define KEYCODE_DEL         127
-#define KEYCODE_BACKSPACE   8
-#define KEYCODE_LEFTARROW   0xf702
-#define KEYCODE_RIGHTARROW  0xf703
-#define KEYCODE_UPARROW     0xf700
-#define KEYCODE_DOWNARROW   0xf701
-
-// Ports like Gtk and Windows expose a different approach for their zooming
-// API if compared to Qt: they have specific methods for zooming in and out,
-// as well as a settable zoom factor, while Qt has only a 'setZoomValue' method.
-// Hence Qt DRT adopts a fixed zoom-factor (1.2) for compatibility.
-#define ZOOM_STEP           1.2
-
-#define DRT_MESSAGE_DONE (QEvent::User + 1)
-
-struct DRTEventQueue {
-    QEvent* m_event;
-    int m_delay;
-};
-
-static DRTEventQueue eventQueue[1024];
-static unsigned endOfQueue;
-static unsigned startOfQueue;
-
-EventSender::EventSender(QWebPage* parent)
-    : QObject(parent)
-#ifndef QT_NO_GESTURES
-    , m_tapGesture(parent)
-    , m_tapAndHoldGesture(parent)
-#endif
-{
-    m_page = parent;
-    m_mouseButtonPressed = false;
-    m_drag = false;
-    memset(eventQueue, 0, sizeof(eventQueue));
-    endOfQueue = 0;
-    startOfQueue = 0;
-    m_eventLoop = 0;
-    m_currentButton = 0;
-    m_currentDragActionsAllowed = 0;
-    resetClickCount();
-    m_page->view()->installEventFilter(this);
-    // This is a hack that works because we normally scroll 60 pixels (3*20) per tick, but Apple scrolls 120.
-    // But Apple also has a bug where they report lines instead of ticks in PlatformWheelEvent, making 2 lines = 40 pixels match.
-    QApplication::setWheelScrollLines(2);
-}
-
-static Qt::KeyboardModifiers getModifiers(const QStringList& modifiers)
-{
-    Qt::KeyboardModifiers modifs = 0;
-    for (int i = 0; i < modifiers.size(); ++i) {
-        const QString& m = modifiers.at(i);
-        if (m == "ctrlKey")
-            modifs |= Qt::ControlModifier;
-        else if (m == "shiftKey")
-            modifs |= Qt::ShiftModifier;
-        else if (m == "altKey")
-            modifs |= Qt::AltModifier;
-        else if (m == "metaKey")
-            modifs |= Qt::MetaModifier;
-    }
-    return modifs;
-}
-
-void EventSender::mouseDown(int button, const QStringList& modifiers)
-{
-    Qt::KeyboardModifiers modifs = getModifiers(modifiers);
-    Qt::MouseButton mouseButton;
-    switch (button) {
-    case 0:
-        mouseButton = Qt::LeftButton;
-        break;
-    case 1:
-        mouseButton = Qt::MidButton;
-        break;
-    case 2:
-        mouseButton = Qt::RightButton;
-        break;
-    case 3:
-        // fast/events/mouse-click-events expects the 4th button to be treated as the middle button
-        mouseButton = Qt::MidButton;
-        break;
-    default:
-        mouseButton = Qt::LeftButton;
-        break;
-    }
-
-    // only consider a click to count, an event originated by the
-    // same previous button and at the same position.
-    if (m_currentButton == button
-        && m_mousePos == m_clickPos
-        && m_clickTimer.isActive())
-        m_clickCount++;
-    else
-        m_clickCount = 1;
-
-    m_currentButton = button;
-    m_clickPos = m_mousePos;
-    m_mouseButtons |= mouseButton;
-
-//     qDebug() << "EventSender::mouseDown" << frame;
-    QEvent* event;
-    if (isGraphicsBased()) {
-        event = createGraphicsSceneMouseEvent((m_clickCount == 2) ?
-                    QEvent::GraphicsSceneMouseDoubleClick : QEvent::GraphicsSceneMousePress,
-                    m_mousePos, m_mousePos, mouseButton, m_mouseButtons, modifs);
-    } else {
-        event = new QMouseEvent((m_clickCount == 2) ? QEvent::MouseButtonDblClick :
-                    QEvent::MouseButtonPress, m_mousePos, m_mousePos,
-                    mouseButton, m_mouseButtons, modifs);
-    }
-
-    sendOrQueueEvent(event);
-
-    m_clickTimer.start(QApplication::doubleClickInterval(), this);
-}
-
-void EventSender::mouseUp(int button)
-{
-    Qt::MouseButton mouseButton;
-    switch (button) {
-    case 0:
-        mouseButton = Qt::LeftButton;
-        break;
-    case 1:
-        mouseButton = Qt::MidButton;
-        break;
-    case 2:
-        mouseButton = Qt::RightButton;
-        break;
-    case 3:
-        // fast/events/mouse-click-events expects the 4th button to be treated as the middle button
-        mouseButton = Qt::MidButton;
-        break;
-    default:
-        mouseButton = Qt::LeftButton;
-        break;
-    }
-
-    m_mouseButtons &= ~mouseButton;
-
-//     qDebug() << "EventSender::mouseUp" << frame;
-    QEvent* event;
-    if (isGraphicsBased()) {
-        event = createGraphicsSceneMouseEvent(QEvent::GraphicsSceneMouseRelease,
-                    m_mousePos, m_mousePos, mouseButton, m_mouseButtons, Qt::NoModifier);
-    } else {
-        event = new QMouseEvent(QEvent::MouseButtonRelease,
-                    m_mousePos, m_mousePos, mouseButton, m_mouseButtons, Qt::NoModifier);
-    }
-
-    sendOrQueueEvent(event);
-
-    if (m_currentDragData.urls().isEmpty())
-        return;
-
-    event = new QDropEvent(m_mousePos, m_currentDragActionsAllowed, &m_currentDragData, m_mouseButtons, Qt::NoModifier);
-    sendEvent(m_page, event);
-    m_currentDragData.clear();
-}
-
-void EventSender::mouseMoveTo(int x, int y)
-{
-//     qDebug() << "EventSender::mouseMoveTo" << x << y;
-    m_mousePos = QPoint(x, y);
-
-    QEvent* event;
-    if (isGraphicsBased()) {
-        event = createGraphicsSceneMouseEvent(QEvent::GraphicsSceneMouseMove,
-                    m_mousePos, m_mousePos, Qt::NoButton, m_mouseButtons, Qt::NoModifier);
-    } else {
-        event = new QMouseEvent(QEvent::MouseMove,
-                    m_mousePos, m_mousePos, Qt::NoButton, m_mouseButtons, Qt::NoModifier);
-    }
-
-    sendOrQueueEvent(event);
-
-    if (m_currentDragData.urls().isEmpty())
-        return;
-
-    Qt::MouseButtons mouseButtons = m_mouseButtons | Qt::LeftButton;
-    event = new QDragMoveEvent(m_mousePos, m_currentDragActionsAllowed, &m_currentDragData, mouseButtons, Qt::NoModifier);
-    sendEvent(m_page, event);
-}
-
-// Simulates a mouse down event for drag without sending an actual mouse down event.
-void EventSender::beginDragWithFiles(const QStringList& files)
-{
-    m_currentDragData.clear();
-    QList<QUrl> fileUrls;
-    QUrl baseUrl = m_page->mainFrame()->baseUrl();
-    foreach (const QString& file, files) {
-        QUrl resolvedUrl = baseUrl.resolved(file);
-        fileUrls.append(resolvedUrl);
-    }
-
-    m_currentDragData.setUrls(fileUrls);
-    m_currentDragActionsAllowed = Qt::CopyAction;
-    Qt::MouseButtons mouseButtons = m_mouseButtons | Qt::LeftButton;
-    QDragEnterEvent* event = new QDragEnterEvent(m_mousePos, m_currentDragActionsAllowed, &m_currentDragData, mouseButtons, Qt::NoModifier);
-    sendEvent(m_page, event);
-}
-
-#ifndef QT_NO_WHEELEVENT
-void EventSender::mouseScrollBy(int ticksX, int ticksY)
-{
-    const int tickStep = QApplication::wheelScrollLines() * 20;
-    continuousMouseScrollBy((ticksX * tickStep), (ticksY * tickStep));
-}
-
-void EventSender::continuousMouseScrollBy(int x, int y)
-{
-    // continuousMouseScrollBy() mimics devices that send fine-grained scroll events where the 'delta' specified is not the usual
-    // multiple of 120. See http://doc.qt.nokia.com/4.6/qwheelevent.html#delta for a good explanation of this.
-
-    // A wheel delta of 120 (in 1/8 degrees) corresponds to one wheel tick, and we scroll tickStep pixels per wheel tick.
-    const int tickStep = QApplication::wheelScrollLines() * 20;
-    if (x) {
-        QEvent* event;
-        if (isGraphicsBased()) {
-            event = createGraphicsSceneWheelEvent(QEvent::GraphicsSceneWheel,
-                        m_mousePos, m_mousePos, (x * 120) / tickStep, Qt::NoModifier, Qt::Horizontal);
-        } else
-            event = new QWheelEvent(m_mousePos, m_mousePos, (x * 120) / tickStep, m_mouseButtons, Qt::NoModifier, Qt::Horizontal);
-
-        sendOrQueueEvent(event);
-    }
-    if (y) {
-        QEvent* event;
-        if (isGraphicsBased()) {
-            event = createGraphicsSceneWheelEvent(QEvent::GraphicsSceneWheel,
-                        m_mousePos, m_mousePos, (y * 120) / tickStep, Qt::NoModifier, Qt::Vertical);
-        } else
-            event = new QWheelEvent(m_mousePos, m_mousePos, (y * 120) / tickStep, m_mouseButtons, Qt::NoModifier, Qt::Vertical);
-
-        sendOrQueueEvent(event);
-    }
-}
-#endif
-
-void EventSender::leapForward(int ms)
-{
-    eventQueue[endOfQueue].m_delay = ms;
-    //qDebug() << "EventSender::leapForward" << ms;
-}
-
-void EventSender::keyDown(const QString& string, const QStringList& modifiers, unsigned int location)
-{
-    QString s = string;
-    Qt::KeyboardModifiers modifs = getModifiers(modifiers);
-    if (location == 3)
-        modifs |= Qt::KeypadModifier;
-    int code = 0;
-    if (string.length() == 1) {
-        code = string.unicode()->unicode();
-        //qDebug() << ">>>>>>>>> keyDown" << code << (char)code;
-        // map special keycodes used by the tests to something that works for Qt/X11
-        if (code == '\r') {
-            code = Qt::Key_Return;
-        } else if (code == '\t') {
-            code = Qt::Key_Tab;
-            if (modifs == Qt::ShiftModifier)
-                code = Qt::Key_Backtab;
-            s = QString();
-        } else if (code == KEYCODE_DEL || code == KEYCODE_BACKSPACE) {
-            code = Qt::Key_Backspace;
-            if (modifs == Qt::AltModifier)
-                modifs = Qt::ControlModifier;
-            s = QString();
-        } else if (code == 'o' && modifs == Qt::ControlModifier) {
-            // Mimic the emacs ctrl-o binding on Mac by inserting a paragraph
-            // separator and then putting the cursor back to its original
-            // position. Allows us to pass emacs-ctrl-o.html
-            s = QLatin1String("\n");
-            code = '\n';
-            modifs = 0;
-            QKeyEvent event(QEvent::KeyPress, code, modifs, s);
-            sendEvent(m_page, &event);
-            QKeyEvent event2(QEvent::KeyRelease, code, modifs, s);
-            sendEvent(m_page, &event2);
-            s = QString();
-            code = Qt::Key_Left;
-        } else if (code == 'y' && modifs == Qt::ControlModifier) {
-            s = QLatin1String("c");
-            code = 'c';
-        } else if (code == 'k' && modifs == Qt::ControlModifier) {
-            s = QLatin1String("x");
-            code = 'x';
-        } else if (code == 'a' && modifs == Qt::ControlModifier) {
-            s = QString();
-            code = Qt::Key_Home;
-            modifs = 0;
-        } else if (code == KEYCODE_LEFTARROW) {
-            s = QString();
-            code = Qt::Key_Left;
-            if (modifs & Qt::MetaModifier) {
-                code = Qt::Key_Home;
-                modifs &= ~Qt::MetaModifier;
-            }
-        } else if (code == KEYCODE_RIGHTARROW) {
-            s = QString();
-            code = Qt::Key_Right;
-            if (modifs & Qt::MetaModifier) {
-                code = Qt::Key_End;
-                modifs &= ~Qt::MetaModifier;
-            }
-        } else if (code == KEYCODE_UPARROW) {
-            s = QString();
-            code = Qt::Key_Up;
-            if (modifs & Qt::MetaModifier) {
-                code = Qt::Key_PageUp;
-                modifs &= ~Qt::MetaModifier;
-            }
-        } else if (code == KEYCODE_DOWNARROW) {
-            s = QString();
-            code = Qt::Key_Down;
-            if (modifs & Qt::MetaModifier) {
-                code = Qt::Key_PageDown;
-                modifs &= ~Qt::MetaModifier;
-            }
-        } else if (code == 'a' && modifs == Qt::ControlModifier) {
-            s = QString();
-            code = Qt::Key_Home;
-            modifs = 0;
-        } else
-            code = string.unicode()->toUpper().unicode();
-    } else {
-        //qDebug() << ">>>>>>>>> keyDown" << string;
-
-        if (string.startsWith(QLatin1Char('F')) && string.count() <= 3) {
-            s = s.mid(1);
-            int functionKey = s.toInt();
-            Q_ASSERT(functionKey >= 1 && functionKey <= 35);
-            code = Qt::Key_F1 + (functionKey - 1);
-        // map special keycode strings used by the tests to something that works for Qt/X11
-        } else if (string == QLatin1String("leftArrow")) {
-            s = QString();
-            code = Qt::Key_Left;
-        } else if (string == QLatin1String("rightArrow")) {
-            s = QString();
-            code = Qt::Key_Right;
-        } else if (string == QLatin1String("upArrow")) {
-            s = QString();
-            code = Qt::Key_Up;
-        } else if (string == QLatin1String("downArrow")) {
-            s = QString();
-            code = Qt::Key_Down;
-        } else if (string == QLatin1String("pageUp")) {
-            s = QString();
-            code = Qt::Key_PageUp;
-        } else if (string == QLatin1String("pageDown")) {
-            s = QString();
-            code = Qt::Key_PageDown;
-        } else if (string == QLatin1String("home")) {
-            s = QString();
-            code = Qt::Key_Home;
-        } else if (string == QLatin1String("end")) {
-            s = QString();
-            code = Qt::Key_End;
-        } else if (string == QLatin1String("insert")) {
-            s = QString();
-            code = Qt::Key_Insert;
-        } else if (string == QLatin1String("delete")) {
-            s = QString();
-            code = Qt::Key_Delete;
-        } else if (string == QLatin1String("printScreen")) {
-            s = QString();
-            code = Qt::Key_Print;
-        } else if (string == QLatin1String("menu")) {
-            s = QString();
-            code = Qt::Key_Menu;
-        }
-    }
-    QKeyEvent event(QEvent::KeyPress, code, modifs, s);
-    sendEvent(m_page, &event);
-    QKeyEvent event2(QEvent::KeyRelease, code, modifs, s);
-    sendEvent(m_page, &event2);
-}
-
-QStringList EventSender::contextClick()
-{
-    QMouseEvent event(QEvent::MouseButtonPress, m_mousePos, Qt::RightButton, Qt::RightButton, Qt::NoModifier);
-    sendEvent(m_page, &event);
-    QMouseEvent event2(QEvent::MouseButtonRelease, m_mousePos, Qt::RightButton, Qt::RightButton, Qt::NoModifier);
-    sendEvent(m_page, &event2);
-
-    if (isGraphicsBased()) {
-        QGraphicsSceneContextMenuEvent ctxEvent(QEvent::GraphicsSceneContextMenu);
-        ctxEvent.setReason(QGraphicsSceneContextMenuEvent::Mouse);
-        ctxEvent.setPos(m_mousePos);
-        WebViewGraphicsBased* view = qobject_cast<WebViewGraphicsBased*>(m_page->view());
-        if (view)
-            sendEvent(view->graphicsView(), &ctxEvent);
-    } else {
-        QContextMenuEvent ctxEvent(QContextMenuEvent::Mouse, m_mousePos);
-        sendEvent(m_page->view(), &ctxEvent);
-    }
-    return DumpRenderTreeSupportQt::contextMenu(m_page->handle());
-}
-
-void EventSender::scheduleAsynchronousClick()
-{
-    QMouseEvent* event = new QMouseEvent(QEvent::MouseButtonPress, m_mousePos, Qt::LeftButton, Qt::RightButton, Qt::NoModifier);
-    postEvent(m_page, event);
-    QMouseEvent* event2 = new QMouseEvent(QEvent::MouseButtonRelease, m_mousePos, Qt::LeftButton, Qt::RightButton, Qt::NoModifier);
-    postEvent(m_page, event2);
-}
-
-void EventSender::addTouchPoint(int x, int y)
-{
-    const int id = m_touchPoints.isEmpty() ? 0 : m_touchPoints.last().id() + 1;
-    const QPointF pos(x, y);
-    QTouchEvent::TouchPoint point(id);
-    point.setPos(pos);
-    point.setStartPos(pos);
-    point.setState(Qt::TouchPointPressed);
-    if (!m_touchPointRadius.isNull())
-        point.setRect(QRectF(pos - m_touchPointRadius, pos + m_touchPointRadius));
-    m_touchPoints.append(point);
-}
-
-void EventSender::updateTouchPoint(int index, int x, int y)
-{
-    if (index < 0 || index >= m_touchPoints.count())
-        return;
-
-    const QPointF pos(x, y);
-    QTouchEvent::TouchPoint &point = m_touchPoints[index];
-    point.setPos(pos);
-    point.setState(Qt::TouchPointMoved);
-    if (!m_touchPointRadius.isNull())
-        point.setRect(QRectF(pos - m_touchPointRadius, pos + m_touchPointRadius));
-}
-
-void EventSender::setTouchModifier(const QString &modifier, bool enable)
-{
-    Qt::KeyboardModifier mod = Qt::NoModifier;
-    if (!modifier.compare(QLatin1String("shift"), Qt::CaseInsensitive))
-        mod = Qt::ShiftModifier;
-    else if (!modifier.compare(QLatin1String("alt"), Qt::CaseInsensitive))
-        mod = Qt::AltModifier;
-    else if (!modifier.compare(QLatin1String("meta"), Qt::CaseInsensitive))
-        mod = Qt::MetaModifier;
-    else if (!modifier.compare(QLatin1String("ctrl"), Qt::CaseInsensitive))
-        mod = Qt::ControlModifier;
-
-    if (enable)
-        m_touchModifiers |= mod;
-    else
-        m_touchModifiers &= ~mod;
-}
-
-void EventSender::setTouchPointRadius(int radiusX, int radiusY)
-{
-    m_touchPointRadius = QPoint(radiusX, radiusY);
-}
-
-void EventSender::touchStart()
-{
-    if (!m_touchActive) {
-        sendTouchEvent(QEvent::TouchBegin);
-        m_touchActive = true;
-    } else
-        sendTouchEvent(QEvent::TouchUpdate);
-}
-
-void EventSender::touchMove()
-{
-    sendTouchEvent(QEvent::TouchUpdate);
-}
-
-void EventSender::touchEnd()
-{
-    for (int i = 0; i < m_touchPoints.count(); ++i)
-        if (m_touchPoints[i].state() != Qt::TouchPointReleased) {
-            sendTouchEvent(QEvent::TouchUpdate);
-            return;
-        }
-    sendTouchEvent(QEvent::TouchEnd);
-    m_touchActive = false;
-}
-
-void EventSender::touchCancel()
-{
-    sendTouchEvent(QEvent::TouchCancel);
-    m_touchActive = false;
-}
-
-void EventSender::clearTouchPoints()
-{
-    m_touchPoints.clear();
-    m_touchModifiers = Qt::KeyboardModifiers();
-    m_touchActive = false;
-    m_touchPointRadius = QPoint();
-}
-
-void EventSender::releaseTouchPoint(int index)
-{
-    if (index < 0 || index >= m_touchPoints.count())
-        return;
-
-    m_touchPoints[index].setState(Qt::TouchPointReleased);
-}
-
-void EventSender::cancelTouchPoint(int index)
-{
-    // FIXME: No cancellation state in Qt 5, mapped to release instead.
-    // PlatformTouchEvent conversion later will map all touch points to
-    // cancelled.
-    releaseTouchPoint(index);
-}
-
-void EventSender::sendTouchEvent(QEvent::Type type)
-{
-    static QTouchDevice* device = 0;
-    if (!device) {
-        device = new QTouchDevice;
-        device->setType(QTouchDevice::TouchScreen);
-        QWindowSystemInterface::registerTouchDevice(device);
-    }
-
-    QTouchEvent event(type, device, m_touchModifiers);
-    event.setTouchPoints(m_touchPoints);
-    sendEvent(m_page, &event);
-    QList<QTouchEvent::TouchPoint>::Iterator it = m_touchPoints.begin();
-    while (it != m_touchPoints.end()) {
-        if (it->state() == Qt::TouchPointReleased)
-            it = m_touchPoints.erase(it);
-        else {
-            it->setState(Qt::TouchPointStationary);
-            ++it;
-        }
-    }
-}
-
-#ifndef QT_NO_GESTURES
-void EventSender::gestureTap(int x, int y)
-{
-    m_tapGesture.setPosition(QPointF(x, y));
-    m_gestures.clear();
-    m_gestures.append(&m_tapGesture);
-    QGestureEvent event(m_gestures);
-    sendEvent(m_page, &event);
-}
-
-void EventSender::gestureLongPress(int x, int y)
-{
-    m_tapAndHoldGesture.setPosition(QPointF(x, y));
-    m_gestures.clear();
-    m_gestures.append(&m_tapAndHoldGesture);
-    QGestureEvent event(m_gestures);
-    sendEvent(m_page, &event);
-}
-#endif
-
-void EventSender::zoomPageIn()
-{
-    if (QWebFrame* frame = m_page->mainFrame())
-        frame->setZoomFactor(frame->zoomFactor() * ZOOM_STEP);
-}
-
-void EventSender::zoomPageOut()
-{
-    if (QWebFrame* frame = m_page->mainFrame())
-        frame->setZoomFactor(frame->zoomFactor() / ZOOM_STEP);
-}
-
-void EventSender::textZoomIn()
-{
-    if (QWebFrame* frame = m_page->mainFrame())
-        frame->setTextSizeMultiplier(frame->textSizeMultiplier() * ZOOM_STEP);
-}
-
-void EventSender::textZoomOut()
-{
-    if (QWebFrame* frame = m_page->mainFrame())
-        frame->setTextSizeMultiplier(frame->textSizeMultiplier() / ZOOM_STEP);
-}
-
-void EventSender::scalePageBy(float scaleFactor, float x, float y)
-{
-    if (QWebFrame* frame = m_page->mainFrame())
-        DumpRenderTreeSupportQt::scalePageBy(frame->handle(), scaleFactor, QPoint(x, y));
-}
-
-QWebFrame* EventSender::frameUnderMouse() const
-{
-    QWebFrame* frame = m_page->mainFrame();
-
-redo:
-    QList<QWebFrame*> children = frame->childFrames();
-    for (int i = 0; i < children.size(); ++i) {
-        if (children.at(i)->geometry().contains(m_mousePos)) {
-            frame = children.at(i);
-            goto redo;
-        }
-    }
-    if (frame->geometry().contains(m_mousePos))
-        return frame;
-    return 0;
-}
-
-void EventSender::sendOrQueueEvent(QEvent* event)
-{
-    // Mouse move events are queued if
-    // 1. A previous event was queued.
-    // 2. A delay was set-up by leapForward().
-    // 3. A call to mouseMoveTo while the mouse button is pressed could initiate a drag operation, and that does not return until mouseUp is processed.
-    // To be safe and avoid a deadlock, this event is queued.
-    if (endOfQueue == startOfQueue && !eventQueue[endOfQueue].m_delay && (!(m_mouseButtonPressed && (m_eventLoop && event->type() == QEvent::MouseButtonRelease)))) {
-        sendEvent(m_page->view(), event);
-        delete event;
-        return;
-    }
-    eventQueue[endOfQueue++].m_event = event;
-    eventQueue[endOfQueue].m_delay = 0;
-    replaySavedEvents(event->type() != QEvent::MouseMove);
-}
-
-void EventSender::replaySavedEvents(bool flush)
-{
-    if (startOfQueue < endOfQueue) {
-        // First send all the events that are ready to be sent
-        while (!eventQueue[startOfQueue].m_delay && startOfQueue < endOfQueue) {
-            QEvent* ev = eventQueue[startOfQueue++].m_event;
-            postEvent(m_page->view(), ev);
-        }
-        if (startOfQueue == endOfQueue) {
-            // Reset the queue
-            startOfQueue = 0;
-            endOfQueue = 0;
-        } else {
-            QTest::qWait(eventQueue[startOfQueue].m_delay);
-            eventQueue[startOfQueue].m_delay = 0;
-        }
-    }
-    if (!flush)
-        return;
-
-    // Send a marker event, it will tell us when it is safe to exit the new event loop
-    QEvent* drtEvent = new QEvent((QEvent::Type)DRT_MESSAGE_DONE);
-    QApplication::postEvent(m_page->view(), drtEvent);
-
-    // Start an event loop for async handling of Drag & Drop
-    m_eventLoop = new QEventLoop;
-    m_eventLoop->exec();
-    delete m_eventLoop;
-    m_eventLoop = 0;
-}
-
-bool EventSender::eventFilter(QObject* watched, QEvent* event)
-{
-    if (watched != m_page->view())
-        return false;
-    switch (event->type()) {
-    case QEvent::Leave:
-        return true;
-    case QEvent::MouseButtonPress:
-    case QEvent::GraphicsSceneMousePress:
-        m_mouseButtonPressed = true;
-        break;
-    case QEvent::MouseMove:
-    case QEvent::GraphicsSceneMouseMove:
-        if (m_mouseButtonPressed)
-            m_drag = true;
-        break;
-    case QEvent::MouseButtonRelease:
-    case QEvent::GraphicsSceneMouseRelease:
-        m_mouseButtonPressed = false;
-        m_drag = false;
-        break;
-    case DRT_MESSAGE_DONE:
-        m_eventLoop->exit();
-        return true;
-    }
-    return false;
-}
-
-void EventSender::timerEvent(QTimerEvent* ev)
-{
-    m_clickTimer.stop();
-}
-
-QGraphicsSceneMouseEvent* EventSender::createGraphicsSceneMouseEvent(QEvent::Type type, const QPoint& pos, const QPoint& screenPos, Qt::MouseButton button, Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers)
-{
-    QGraphicsSceneMouseEvent* event;
-    event = new QGraphicsSceneMouseEvent(type);
-    event->setPos(pos);
-    event->setScreenPos(screenPos);
-    event->setButton(button);
-    event->setButtons(buttons);
-    event->setModifiers(modifiers);
-
-    return event;
-}
-
-QGraphicsSceneWheelEvent* EventSender::createGraphicsSceneWheelEvent(QEvent::Type type, const QPoint& pos, const QPoint& screenPos, int delta, Qt::KeyboardModifiers modifiers, Qt::Orientation orientation)
-{
-    QGraphicsSceneWheelEvent* event;
-    event = new QGraphicsSceneWheelEvent(type);
-    event->setPos(pos);
-    event->setScreenPos(screenPos);
-    event->setDelta(delta);
-    event->setModifiers(modifiers);
-    event->setOrientation(orientation);
-
-    return event;
-}
-
-void EventSender::sendEvent(QObject* receiver, QEvent* event)
-{
-    if (WebViewGraphicsBased* view = qobject_cast<WebViewGraphicsBased*>(receiver))
-        view->scene()->sendEvent(view->graphicsView(), event);
-    else
-        QApplication::sendEvent(receiver, event);
-}
-
-void EventSender::postEvent(QObject* receiver, QEvent* event)
-{
-    // QGraphicsScene does not have a postEvent method, so send the event in this case
-    // and delete it after that.
-    if (WebViewGraphicsBased* view = qobject_cast<WebViewGraphicsBased*>(receiver)) {
-        view->scene()->sendEvent(view->graphicsView(), event);
-        delete event;
-    } else
-        QApplication::postEvent(receiver, event); // event deleted by the system
-}
-
-#include "moc_EventSenderQt.cpp"
diff --git a/Tools/DumpRenderTree/qt/EventSenderQt.h b/Tools/DumpRenderTree/qt/EventSenderQt.h
deleted file mode 100644
index ad13cad..0000000
--- a/Tools/DumpRenderTree/qt/EventSenderQt.h
+++ /dev/null
@@ -1,132 +0,0 @@
-/*
- * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-#ifndef EventSenderQt_h
-#define EventSenderQt_h
-
-
-#include "DumpRenderTreeQt.h"
-
-#include <QApplication>
-#include <QBasicTimer>
-#include <QEvent>
-#include <QEventLoop>
-#include <QGesture>
-#include <QMimeData>
-#include <QMouseEvent>
-#include <QObject>
-#include <QPoint>
-#include <QString>
-#include <QStringList>
-#include <QTouchEvent>
-#include <Qt>
-
-#include <qwebpage.h>
-#include <qwebframe.h>
-
-
-class EventSender : public QObject {
-    Q_OBJECT
-public:
-    EventSender(QWebPage* parent);
-    virtual bool eventFilter(QObject* watched, QEvent* event);
-    void resetClickCount() { m_clickCount = 0; }
-
-public Q_SLOTS:
-    void mouseDown(int button = 0, const QStringList& modifiers = QStringList());
-    void mouseUp(int button = 0);
-    void mouseMoveTo(int x, int y);
-#ifndef QT_NO_WHEELEVENT
-    void mouseScrollBy(int x, int y);
-    void continuousMouseScrollBy(int x, int y);
-#endif
-    void leapForward(int ms);
-    void keyDown(const QString& string, const QStringList& modifiers = QStringList(), unsigned int location = 0);
-    void clearKillRing() {}
-    QStringList contextClick();
-    void scheduleAsynchronousClick();
-    void addTouchPoint(int x, int y);
-    void updateTouchPoint(int index, int x, int y);
-    void setTouchModifier(const QString &modifier, bool enable);
-    void setTouchPointRadius(int radiusX, int radiusY);
-    void touchStart();
-    void touchMove();
-    void touchEnd();
-    void touchCancel();
-    void zoomPageIn();
-    void zoomPageOut();
-    void textZoomIn();
-    void textZoomOut();
-    void scalePageBy(float scaleFactor, float x, float y);
-    void clearTouchPoints();
-    void releaseTouchPoint(int index);
-    void cancelTouchPoint(int index);
-#ifndef QT_NO_GESTURES
-    void gestureTap(int x, int y);
-    void gestureLongPress(int x, int y);
-#endif
-    void beginDragWithFiles(const QStringList& files);
-
-protected:
-    void timerEvent(QTimerEvent*);
-
-private:
-    bool isGraphicsBased() const { return qobject_cast<WebViewGraphicsBased*>(m_page->view()); }
-    QGraphicsSceneMouseEvent* createGraphicsSceneMouseEvent(QEvent::Type, const QPoint& pos, const QPoint& screenPos, Qt::MouseButton, Qt::MouseButtons, Qt::KeyboardModifiers);
-    QGraphicsSceneWheelEvent* createGraphicsSceneWheelEvent(QEvent::Type, const QPoint& pos, const QPoint& screenPos, int delta, Qt::KeyboardModifiers, Qt::Orientation);
-    void sendEvent(QObject* receiver, QEvent* event);
-    void postEvent(QObject* receiver, QEvent* event);
-
-private:
-    void sendTouchEvent(QEvent::Type);
-    void sendOrQueueEvent(QEvent*);
-    void replaySavedEvents(bool flush);
-    QPoint m_mousePos;
-    QPoint m_clickPos;
-    QPoint m_touchPointRadius;
-    Qt::MouseButtons m_mouseButtons;
-    QWebPage* m_page;
-    int m_clickCount;
-    int m_currentButton;
-    bool m_mouseButtonPressed;
-    bool m_drag;
-    QMimeData m_currentDragData;
-    Qt::DropActions m_currentDragActionsAllowed;
-    QEventLoop* m_eventLoop;
-    QWebFrame* frameUnderMouse() const;
-    QBasicTimer m_clickTimer;
-    QList<QTouchEvent::TouchPoint> m_touchPoints;
-    Qt::KeyboardModifiers m_touchModifiers;
-#ifndef QT_NO_GESTURES
-    QTapGesture m_tapGesture;
-    QTapAndHoldGesture m_tapAndHoldGesture;
-    QList<QGesture*> m_gestures;
-#endif
-    bool m_touchActive;
-};
-#endif //  EventSenderQt_h
diff --git a/Tools/DumpRenderTree/qt/GCControllerQt.cpp b/Tools/DumpRenderTree/qt/GCControllerQt.cpp
deleted file mode 100644
index 9f93698..0000000
--- a/Tools/DumpRenderTree/qt/GCControllerQt.cpp
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "GCController.h"
-
-#include "DumpRenderTreeSupportQt.h"
-
-void GCController::collect() const
-{
-    DumpRenderTreeSupportQt::garbageCollectorCollect();
-}
-
-void GCController::collectOnAlternateThread(bool waitUntilDone) const
-{
-    DumpRenderTreeSupportQt::garbageCollectorCollectOnAlternateThread(waitUntilDone);
-}
-
-size_t GCController::getJSObjectCount() const
-{
-    return DumpRenderTreeSupportQt::javaScriptObjectsCount();
-}
diff --git a/Tools/DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro b/Tools/DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro
deleted file mode 100644
index f962ee1..0000000
--- a/Tools/DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro
+++ /dev/null
@@ -1,61 +0,0 @@
-# -------------------------------------------------------------------
-# Project file for the NPAPI test plugin
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-TEMPLATE = lib
-TARGET = TestNetscapePlugIn
-
-CONFIG += plugin
-
-SOURCES += \
-    PluginObject.cpp \
-    PluginTest.cpp \
-    TestObject.cpp \
-    main.cpp \
-    Tests/DocumentOpenInDestroyStream.cpp \
-    Tests/EvaluateJSAfterRemovingPluginElement.cpp \
-    Tests/FormValue.cpp \
-    Tests/GetURLNotifyWithURLThatFailsToLoad.cpp \
-    Tests/GetURLWithJavaScriptURL.cpp \
-    Tests/GetURLWithJavaScriptURLDestroyingPlugin.cpp \
-    Tests/GetUserAgentWithNullNPPFromNPPNew.cpp \
-    Tests/NPDeallocateCalledBeforeNPShutdown.cpp \
-    Tests/NPPNewFails.cpp \
-    Tests/NPPSetWindowCalledDuringDestruction.cpp \
-    Tests/NPRuntimeCallsWithNullNPP.cpp \
-    Tests/NPRuntimeObjectFromDestroyedPlugin.cpp \
-    Tests/NPRuntimeRemoveProperty.cpp \
-    Tests/NullNPPGetValuePointer.cpp \
-    Tests/PassDifferentNPPStruct.cpp \
-    Tests/PluginScriptableNPObjectInvokeDefault.cpp \
-    Tests/PluginScriptableObjectOverridesAllProperties.cpp \
-    Tests/PrivateBrowsing.cpp
-
-WEBKIT += webcore # For NPAPI headers
-
-VPATH = ../../unix/TestNetscapePlugin ../../TestNetscapePlugIn
-
-
-INCLUDEPATH += \
-    ../../TestNetscapePlugIn/unix/ForwardingHeaders \
-    ../../TestNetscapePlugIn/unix/ForwardingHeaders/WebKit \
-    ../../TestNetscapePlugIn
-
-DESTDIR = $${ROOT_BUILD_DIR}/lib/plugins
-
-mac {
-    CONFIG += plugin_bundle
-    QMAKE_INFO_PLIST = ../../TestNetscapePlugIn/mac/Info.plist
-    QMAKE_PLUGIN_BUNDLE_NAME = $$TARGET
-    QMAKE_BUNDLE_LOCATION += "Contents/MacOS"
-
-    OBJECTIVE_SOURCES += PluginObjectMac.mm
-    LIBS += -framework Carbon -framework Cocoa -framework QuartzCore
-}
-
-!win32:!embedded:!mac {
-    LIBS += -lX11
-    DEFINES += XP_UNIX
-}
diff --git a/Tools/DumpRenderTree/qt/TestRunnerQt.cpp b/Tools/DumpRenderTree/qt/TestRunnerQt.cpp
deleted file mode 100644
index a62cb4c..0000000
--- a/Tools/DumpRenderTree/qt/TestRunnerQt.cpp
+++ /dev/null
@@ -1,1229 +0,0 @@
-/*
- * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-#include "config.h"
-#include "TestRunnerQt.h"
-
-#include "DumpRenderTreeQt.h"
-#include "DumpRenderTreeSupportQt.h"
-#include "NotificationPresenterClientQt.h"
-#include "WorkQueue.h"
-#include "WorkQueueItemQt.h"
-#include <JSStringRefQt.h>
-#include <QCoreApplication>
-#include <QDir>
-#include <QLocale>
-#include <qwebsettings.h>
-
-TestRunnerQt::TestRunnerQt(DumpRenderTree* drt)
-    : QObject()
-    , m_drt(drt)
-    , m_shouldTimeout(true)
-    , m_timeout(30000)
-{
-    reset();
-}
-
-TestRunner::~TestRunner()
-{
-}
-
-void TestRunnerQt::reset()
-{
-    m_hasDumped = false;
-    m_loadFinished = false;
-    m_audioDump = false;
-    m_waitForDone = false;
-    m_timeoutTimer.stop();
-    m_topLoadingFrame = 0;
-    m_waitForPolicy = false;
-    m_handleErrorPages = false;
-    m_webHistory = 0;
-    m_globalFlag = false;
-    m_userStyleSheetEnabled = false;
-    m_ignoreDesktopNotification = false;
-    m_isGeolocationPermissionSet = false;
-    m_geolocationPermission = false;
-    m_audioData.clear();
-
-    DumpRenderTreeSupportQt::dumpEditingCallbacks(false);
-    DumpRenderTreeSupportQt::dumpFrameLoader(false);
-    DumpRenderTreeSupportQt::dumpProgressFinishedCallback(false);
-    DumpRenderTreeSupportQt::dumpUserGestureInFrameLoader(false);
-    DumpRenderTreeSupportQt::dumpResourceLoadCallbacks(false);
-    DumpRenderTreeSupportQt::dumpResourceResponseMIMETypes(false);
-    DumpRenderTreeSupportQt::dumpWillCacheResponseCallbacks(false);
-    DumpRenderTreeSupportQt::setDeferMainResourceDataLoad(true);
-    DumpRenderTreeSupportQt::setWillSendRequestReturnsNullOnRedirect(false);
-    DumpRenderTreeSupportQt::setWillSendRequestReturnsNull(false);
-    DumpRenderTreeSupportQt::setWillSendRequestClearHeaders(QStringList());
-    DumpRenderTreeSupportQt::clearScriptWorlds();
-    DumpRenderTreeSupportQt::setCustomPolicyDelegate(false, false);
-    DumpRenderTreeSupportQt::dumpHistoryCallbacks(false);
-    DumpRenderTreeSupportQt::dumpVisitedLinksCallbacks(false);
-    DumpRenderTreeSupportQt::resetGeolocationMock(m_drt->pageAdapter());
-    DumpRenderTreeSupportQt::dumpNotification(false);
-    DumpRenderTreeSupportQt::setShouldUseFontSmoothing(false);
-    DumpRenderTreeSupportQt::disableDefaultTypesettingFeatures();
-    setIconDatabaseEnabled(false);
-    clearAllDatabases();
-    removeAllWebNotificationPermissions();
-    // The default state for DRT is to block third-party cookies, mimicing the Mac port
-    setAlwaysAcceptCookies(false);
-    emit hidePage();
-}
-
-void TestRunnerQt::dumpNotifications()
-{
-    DumpRenderTreeSupportQt::dumpNotification(true);
-}
-
-void TestRunnerQt::processWork()
-{
-    // qDebug() << ">>>processWork";
-
-    // if we didn't start a new load, then we finished all the commands, so we're ready to dump state
-    if (WorkQueue::shared()->processWork() && !shouldWaitUntilDone()) {
-        emit done();
-        m_hasDumped = true;
-    }
-}
-
-// Called on loadFinished on WebPage
-void TestRunnerQt::maybeDump(bool /*success*/)
-{
-
-    // This can happen on any of the http/tests/security/window-events-*.html tests, where the test opens
-    // a new window, calls the unload and load event handlers on the window's page, and then immediately
-    // issues a notifyDone. Needs investigation.
-    if (!m_topLoadingFrame)
-        return;
-
-    // It is possible that we get called by windows created from the main page that have finished
-    // loading, so we don't ASSERT here. At the moment we do not gather results from such windows,
-    // but may need to in future.
-    if (sender() != m_topLoadingFrame->page())
-        return;
-
-    m_loadFinished = true;
-    // as the function is called on loadFinished, the test might
-    // already have dumped and thus no longer be active, thus
-    // bail out here.
-    if (m_hasDumped)
-        return;
-
-    WorkQueue::shared()->setFrozen(true); // first complete load freezes the queue for the rest of this test
-    if (WorkQueue::shared()->count())
-        QTimer::singleShot(0, this, SLOT(processWork()));
-    else if (!shouldWaitUntilDone()) {
-        emit done();
-        m_hasDumped = true;
-    }
-}
-
-void TestRunnerQt::waitUntilDone()
-{
-    //qDebug() << ">>>>waitForDone";
-    m_waitForDone = true;
-
-    if (!m_shouldTimeout)
-        return;
-
-    m_timeoutTimer.start(m_timeout, this);
-}
-
-void TestRunnerQt::setViewModeMediaFeature(const QString& mode)
-{
-    m_drt->webPage()->setProperty("_q_viewMode", mode);
-}
-
-int TestRunnerQt::webHistoryItemCount()
-{
-    if (!m_webHistory)
-        return -1;
-
-    // Subtract one here as our QWebHistory::count() includes the actual page,
-    // which is not considered in the DRT tests.
-    return m_webHistory->count() - 1;
-}
-
-void TestRunnerQt::keepWebHistory()
-{
-    m_webHistory = m_drt->webPage()->history();
-}
-
-void TestRunnerQt::notifyDone()
-{
-    qDebug() << ">>>>notifyDone";
-
-    if (m_shouldTimeout && !m_timeoutTimer.isActive())
-        return;
-
-    m_timeoutTimer.stop();
-    m_waitForDone = false;
-
-    // If the page has not finished loading (i.e. loadFinished() has not been emitted) then
-    // content created by the likes of document.write() JS methods will not be available yet.
-    // When the page has finished loading, maybeDump above will dump the results now that we have
-    // just set shouldWaitUntilDone to false.
-    if (!m_loadFinished)
-        return;
-
-    emit done();
-
-    // FIXME: investigate why always resetting these result in timeouts
-    m_hasDumped = true;
-    m_waitForPolicy = false;
-}
-
-int TestRunnerQt::windowCount()
-{
-    return m_drt->windowCount();
-}
-
-void TestRunnerQt::grantWebNotificationPermission(const QString& origin)
-{
-    QWebFrame* frame = m_drt->webPage()->mainFrame();
-    m_drt->webPage()->setFeaturePermission(frame, QWebPage::Notifications, QWebPage::PermissionGrantedByUser);
-}
-
-void TestRunnerQt::ignoreLegacyWebNotificationPermissionRequests()
-{
-    m_ignoreDesktopNotification = true;
-}
-
-void TestRunnerQt::denyWebNotificationPermission(const QString& origin)
-{
-    QWebFrame* frame = m_drt->webPage()->mainFrame();
-    m_drt->webPage()->setFeaturePermission(frame, QWebPage::Notifications, QWebPage::PermissionDeniedByUser);
-}
-
-void TestRunnerQt::removeAllWebNotificationPermissions()
-{
-    DumpRenderTreeSupportQt::clearNotificationPermissions();
-}
-
-void TestRunnerQt::simulateLegacyWebNotificationClick(const QString& title)
-{
-    DumpRenderTreeSupportQt::simulateDesktopNotificationClick(title);
-}
-
-void TestRunnerQt::display()
-{
-    DumpRenderTreeSupportQt::setTrackRepaintRects(m_topLoadingFrame->handle(), true);
-    emit showPage();
-}
-
-void TestRunnerQt::displayInvalidatedRegion()
-{
-    display();
-}
-
-void TestRunnerQt::clearBackForwardList()
-{
-    m_drt->webPage()->history()->clear();
-}
-
-QString TestRunnerQt::pathToLocalResource(const QString& url)
-{
-    QString localTmpUrl(QLatin1String("file:///tmp/LayoutTests"));
-
-    // Translate a request for /tmp/LayoutTests to the repository LayoutTests directory.
-    // Do not rely on a symlink to be created via the test runner, which will not work on Windows.
-    if (url.startsWith(localTmpUrl)) {
-        // DumpRenderTree lives in WebKit/WebKitBuild/<build_mode>/bin.
-        // Translate from WebKit/WebKitBuild/Release/bin => WebKit/LayoutTests.
-        QFileInfo layoutTestsRoot(QCoreApplication::applicationDirPath() + QLatin1String("/../../../LayoutTests/"));
-        if (layoutTestsRoot.exists())
-            return QLatin1String("file://") + layoutTestsRoot.absolutePath() + url.mid(localTmpUrl.length());
-    }
-
-    return url;
-}
-
-void TestRunnerQt::dumpEditingCallbacks()
-{
-    qDebug() << ">>>dumpEditingCallbacks";
-    DumpRenderTreeSupportQt::dumpEditingCallbacks(true);
-}
-
-void TestRunnerQt::dumpFrameLoadCallbacks()
-{
-    DumpRenderTreeSupportQt::dumpFrameLoader(true);
-}
-
-void TestRunnerQt::dumpProgressFinishedCallback()
-{
-    DumpRenderTreeSupportQt::dumpProgressFinishedCallback(true);
-}
-
-void TestRunnerQt::dumpUserGestureInFrameLoadCallbacks()
-{
-    DumpRenderTreeSupportQt::dumpUserGestureInFrameLoader(true);
-}
-
-void TestRunnerQt::dumpResourceLoadCallbacks()
-{
-    DumpRenderTreeSupportQt::dumpResourceLoadCallbacks(true);
-}
-
-void TestRunnerQt::dumpResourceResponseMIMETypes()
-{
-    DumpRenderTreeSupportQt::dumpResourceResponseMIMETypes(true);
-}
-
-void TestRunnerQt::dumpWillCacheResponse()
-{
-    DumpRenderTreeSupportQt::dumpWillCacheResponseCallbacks(true);
-}
-
-void TestRunnerQt::dumpHistoryCallbacks()
-{
-    DumpRenderTreeSupportQt::dumpHistoryCallbacks(true);
-}
-
-void TestRunnerQt::setWillSendRequestReturnsNullOnRedirect(bool enabled)
-{
-    DumpRenderTreeSupportQt::setWillSendRequestReturnsNullOnRedirect(enabled);
-}
-
-void TestRunnerQt::setWillSendRequestReturnsNull(bool enabled)
-{
-    DumpRenderTreeSupportQt::setWillSendRequestReturnsNull(enabled);
-}
-
-void TestRunnerQt::setWillSendRequestClearHeader(const QStringList& headers)
-{
-    DumpRenderTreeSupportQt::setWillSendRequestClearHeaders(headers);
-}
-
-void TestRunnerQt::setDeferMainResourceDataLoad(bool defer)
-{
-    DumpRenderTreeSupportQt::setDeferMainResourceDataLoad(defer);
-}
-
-void TestRunnerQt::queueBackNavigation(int howFarBackward)
-{
-    //qDebug() << ">>>queueBackNavigation" << howFarBackward;
-    for (int i = 0; i != howFarBackward; ++i)
-        WorkQueue::shared()->queue(new BackItem(1, m_drt->webPage()));
-}
-
-void TestRunnerQt::queueForwardNavigation(int howFarForward)
-{
-    //qDebug() << ">>>queueForwardNavigation" << howFarForward;
-    for (int i = 0; i != howFarForward; ++i)
-        WorkQueue::shared()->queue(new ForwardItem(1, m_drt->webPage()));
-}
-
-void TestRunnerQt::queueLoad(const QString& url, const QString& target)
-{
-    //qDebug() << ">>>queueLoad" << url << target;
-    QUrl mainResourceUrl = m_drt->webPage()->mainFrame()->url();
-    QString absoluteUrl = mainResourceUrl.resolved(QUrl(url)).toEncoded();
-    WorkQueue::shared()->queue(new LoadItem(absoluteUrl, target, m_drt->webPage()));
-}
-
-void TestRunnerQt::queueLoadHTMLString(const QString& content, const QString& baseURL, const QString& failingURL)
-{
-    if (failingURL.isEmpty())
-        WorkQueue::shared()->queue(new LoadHTMLStringItem(content, baseURL, m_drt->webPage()));
-    else
-        WorkQueue::shared()->queue(new LoadAlternateHTMLStringItem(content, baseURL, failingURL, m_drt->webPage()));
-}
-
-void TestRunnerQt::queueReload()
-{
-    //qDebug() << ">>>queueReload";
-    WorkQueue::shared()->queue(new ReloadItem(m_drt->webPage()));
-}
-
-void TestRunnerQt::queueLoadingScript(const QString& script)
-{
-    //qDebug() << ">>>queueLoadingScript" << script;
-    WorkQueue::shared()->queue(new LoadingScriptItem(script, m_drt->webPage()));
-}
-
-void TestRunnerQt::queueNonLoadingScript(const QString& script)
-{
-    //qDebug() << ">>>queueNonLoadingScript" << script;
-    WorkQueue::shared()->queue(new NonLoadingScriptItem(script, m_drt->webPage()));
-}
-
-void TestRunnerQt::provisionalLoad()
-{
-    QWebFrame* frame = qobject_cast<QWebFrame*>(sender());
-    if (!m_topLoadingFrame && !m_hasDumped)
-        m_topLoadingFrame = frame;
-}
-
-void TestRunnerQt::timerEvent(QTimerEvent *ev)
-{
-    if (ev->timerId() == m_timeoutTimer.timerId()) {
-        const char* message = "FAIL: Timed out waiting for notifyDone to be called\n";
-        fprintf(stderr, "%s", message);
-        fprintf(stdout, "%s", message);
-        notifyDone();
-    } else
-        QObject::timerEvent(ev);
-}
-
-QString TestRunnerQt::encodeHostName(const QString& host)
-{
-    QString encoded = QString::fromLatin1(QUrl::toAce(host + QLatin1String(".no")));
-    encoded.truncate(encoded.length() - 3); // strip .no
-    return encoded;
-}
-
-QString TestRunnerQt::decodeHostName(const QString& host)
-{
-    QString decoded = QUrl::fromAce(host.toLatin1() + QByteArray(".no"));
-    decoded.truncate(decoded.length() - 3);
-    return decoded;
-}
-
-void TestRunnerQt::closeWebInspector()
-{
-    DumpRenderTreeSupportQt::webInspectorClose(m_drt->pageAdapter());
-    m_drt->webPage()->settings()->setAttribute(QWebSettings::DeveloperExtrasEnabled, false);
-}
-
-void TestRunnerQt::setDeveloperExtrasEnabled(bool enabled)
-{
-    m_drt->webPage()->settings()->setAttribute(QWebSettings::DeveloperExtrasEnabled, enabled);
-}
-
-void TestRunnerQt::showWebInspector()
-{
-    m_drt->webPage()->settings()->setAttribute(QWebSettings::DeveloperExtrasEnabled, true);
-    DumpRenderTreeSupportQt::webInspectorShow(m_drt->pageAdapter());
-}
-
-void TestRunnerQt::evaluateInWebInspector(long callId, const QString& script)
-{
-    DumpRenderTreeSupportQt::webInspectorExecuteScript(m_drt->pageAdapter(), callId, script);
-}
-
-void TestRunnerQt::goBack()
-{
-    DumpRenderTreeSupportQt::goBack(m_drt->pageAdapter());
-}
-
-void TestRunnerQt::setDefersLoading(bool flag)
-{
-    DumpRenderTreeSupportQt::setDefersLoading(m_drt->pageAdapter(), flag);
-}
-
-void TestRunnerQt::setAllowUniversalAccessFromFileURLs(bool enabled)
-{
-    m_drt->webPage()->settings()->setAttribute(QWebSettings::LocalContentCanAccessRemoteUrls, enabled);
-}
-
-void TestRunnerQt::setAllowFileAccessFromFileURLs(bool enabled)
-{
-    m_drt->webPage()->settings()->setAttribute(QWebSettings::LocalContentCanAccessFileUrls, enabled);
-}
-
-void TestRunnerQt::setAppCacheMaximumSize(unsigned long long quota)
-{
-    m_drt->webPage()->settings()->setOfflineWebApplicationCacheQuota(quota);
-}
-
-void TestRunnerQt::setValueForUser(const QWebElement& element, const QString& value)
-{
-    DumpRenderTreeSupportQt::setValueForUser(element, value);
-}
-
-void TestRunnerQt::setFixedContentsSize(int width, int height)
-{
-    m_topLoadingFrame->page()->setPreferredContentsSize(QSize(width, height));
-}
-
-void TestRunnerQt::setPrivateBrowsingEnabled(bool enable)
-{
-    m_drt->webPage()->settings()->setAttribute(QWebSettings::PrivateBrowsingEnabled, enable);
-}
-
-void TestRunnerQt::setSpatialNavigationEnabled(bool enable)
-{
-    m_drt->webPage()->settings()->setAttribute(QWebSettings::SpatialNavigationEnabled, enable);
-}
-
-void TestRunnerQt::setPopupBlockingEnabled(bool enable)
-{
-    m_drt->webPage()->settings()->setAttribute(QWebSettings::JavascriptCanOpenWindows, !enable);
-}
-
-void TestRunnerQt::setPOSIXLocale(const QString& locale)
-{
-    QLocale qlocale(locale);
-    QLocale::setDefault(qlocale);
-} 
-
-void TestRunnerQt::setWindowIsKey(bool isKey)
-{
-    m_drt->switchFocus(isKey);
-}
-
-void TestRunnerQt::setJavaScriptCanAccessClipboard(bool enable)
-{
-    m_drt->webPage()->settings()->setAttribute(QWebSettings::JavascriptCanAccessClipboard, enable);
-}
-
-void TestRunnerQt::setXSSAuditorEnabled(bool enable)
-{
-    // Set XSSAuditingEnabled globally so that windows created by the test inherit it too.
-    // resetSettings() will call this to reset the page and global setting to false again.
-    // Needed by http/tests/security/xssAuditor/link-opens-new-window.html
-    QWebSettings* globalSettings = QWebSettings::globalSettings();
-    globalSettings->setAttribute(QWebSettings::XSSAuditingEnabled, enable);
-    m_drt->webPage()->settings()->setAttribute(QWebSettings::XSSAuditingEnabled, enable);
-}
-
-void TestRunnerQt::clearAllApplicationCaches()
-{
-    DumpRenderTreeSupportQt::clearAllApplicationCaches();
-}
-
-void TestRunnerQt::setApplicationCacheOriginQuota(unsigned long long quota)
-{
-    if (!m_topLoadingFrame)
-        return;
-    m_topLoadingFrame->securityOrigin().setApplicationCacheQuota(quota);
-}
-
-QStringList TestRunnerQt::originsWithApplicationCache()
-{
-    // FIXME: Implement to get origins that have application caches.
-    return QStringList();
-}
-
-void TestRunnerQt::setDatabaseQuota(int size)
-{
-    if (!m_topLoadingFrame)
-        return;
-    m_topLoadingFrame->securityOrigin().setDatabaseQuota(size);
-}
-
-void TestRunnerQt::clearAllDatabases()
-{
-    QWebDatabase::removeAllDatabases();
-}
-
-void TestRunnerQt::addOriginAccessWhitelistEntry(const QString& sourceOrigin, const QString& destinationProtocol, const QString& destinationHost, bool allowDestinationSubdomains)
-{
-    DumpRenderTreeSupportQt::whiteListAccessFromOrigin(sourceOrigin, destinationProtocol, destinationHost, allowDestinationSubdomains);
-}
-
-void TestRunnerQt::removeOriginAccessWhitelistEntry(const QString& sourceOrigin, const QString& destinationProtocol, const QString& destinationHost, bool allowDestinationSubdomains)
-{
-    DumpRenderTreeSupportQt::removeWhiteListAccessFromOrigin(sourceOrigin, destinationProtocol, destinationHost, allowDestinationSubdomains);
-}
-
-void TestRunnerQt::setCustomPolicyDelegate(bool enabled, bool permissive)
-{
-    DumpRenderTreeSupportQt::setCustomPolicyDelegate(enabled, permissive);
-}
-
-void TestRunnerQt::waitForPolicyDelegate()
-{
-    setCustomPolicyDelegate(true);
-    m_waitForPolicy = true;
-    waitUntilDone();
-}
-
-void TestRunnerQt::overridePreference(const QString& name, const QVariant& value)
-{
-    QWebSettings* settings = m_topLoadingFrame->page()->settings();
-
-    if (name == "WebKitJavaScriptEnabled")
-        settings->setAttribute(QWebSettings::JavascriptEnabled, value.toBool());
-    else if (name == "WebKitTabToLinksPreferenceKey")
-        settings->setAttribute(QWebSettings::LinksIncludedInFocusChain, value.toBool());
-    else if (name == "WebKitOfflineWebApplicationCacheEnabled")
-        settings->setAttribute(QWebSettings::OfflineWebApplicationCacheEnabled, value.toBool());
-    else if (name == "WebKitDefaultFontSize")
-        settings->setFontSize(QWebSettings::DefaultFontSize, value.toInt());
-    else if (name == "WebKitUsesPageCachePreferenceKey")
-        QWebSettings::setMaximumPagesInCache(value.toInt());
-    else if (name == "WebKitEnableCaretBrowsing")
-        setCaretBrowsingEnabled(value.toBool());
-    else if (name == "WebKitPluginsEnabled")
-        settings->setAttribute(QWebSettings::PluginsEnabled, value.toBool());
-    else if (name == "WebKitWebGLEnabled")
-        settings->setAttribute(QWebSettings::WebGLEnabled, value.toBool());
-    else if (name == "WebKitCSSRegionsEnabled")
-        settings->setAttribute(QWebSettings::CSSRegionsEnabled, value.toBool());
-    else if (name == "WebKitCSSGridLayoutEnabled")
-        settings->setAttribute(QWebSettings::CSSGridLayoutEnabled, value.toBool());
-    else if (name == "WebKitHyperlinkAuditingEnabled")
-        settings->setAttribute(QWebSettings::HyperlinkAuditingEnabled, value.toBool());
-    else if (name == "WebKitAcceleratedCompositingEnabled")
-        settings->setAttribute(QWebSettings::AcceleratedCompositingEnabled, value.toBool());
-    else if (name == "WebKitDisplayImagesKey")
-        settings->setAttribute(QWebSettings::AutoLoadImages, value.toBool());
-    else if (name == "WebKitWebAudioEnabled")
-        settings->setAttribute(QWebSettings::WebAudioEnabled, value.toBool());
-    else
-        printf("ERROR: TestRunner::overridePreference() does not support the '%s' preference\n",
-            name.toLatin1().data());
-}
-
-void TestRunnerQt::setUserStyleSheetLocation(const QString& url)
-{
-    QByteArray urlData = pathToLocalResource(url).toLatin1();
-    m_userStyleSheetLocation = QUrl::fromEncoded(urlData, QUrl::StrictMode);
-
-    if (m_userStyleSheetEnabled)
-        setUserStyleSheetEnabled(true);
-}
-
-void TestRunnerQt::setCaretBrowsingEnabled(bool value)
-{
-    DumpRenderTreeSupportQt::setCaretBrowsingEnabled(m_drt->pageAdapter(), value);
-}
-
-void TestRunnerQt::setAuthorAndUserStylesEnabled(bool value)
-{
-    DumpRenderTreeSupportQt::setAuthorAndUserStylesEnabled(m_drt->pageAdapter(), value);
-}
-
-void TestRunnerQt::setUserStyleSheetEnabled(bool enabled)
-{
-    m_userStyleSheetEnabled = enabled;
-
-    if (enabled)
-        m_drt->webPage()->settings()->setUserStyleSheetUrl(m_userStyleSheetLocation);
-    else
-        m_drt->webPage()->settings()->setUserStyleSheetUrl(QUrl());
-}
-
-void TestRunnerQt::setDomainRelaxationForbiddenForURLScheme(bool forbidden, const QString& scheme)
-{
-    DumpRenderTreeSupportQt::setDomainRelaxationForbiddenForURLScheme(forbidden, scheme);
-}
-
-bool TestRunnerQt::callShouldCloseOnWebView()
-{
-    return DumpRenderTreeSupportQt::shouldClose(m_drt->mainFrameAdapter());
-}
-
-void TestRunnerQt::setScrollbarPolicy(const QString& orientation, const QString& policy)
-{
-    Qt::Orientation o;
-    Qt::ScrollBarPolicy p;
-
-    if (orientation == "vertical")
-        o = Qt::Vertical;
-    else if (orientation == "horizontal")
-        o = Qt::Horizontal;
-    else
-        return;
-
-    if (policy == "on")
-        p = Qt::ScrollBarAlwaysOn;
-    else if (policy == "auto")
-        p = Qt::ScrollBarAsNeeded;
-    else if (policy == "off")
-        p = Qt::ScrollBarAlwaysOff;
-    else
-        return;
-
-    m_drt->webPage()->mainFrame()->setScrollBarPolicy(o, p);
-}
-
-void TestRunnerQt::execCommand(const QString& name, const QString& value)
-{
-    DumpRenderTreeSupportQt::executeCoreCommandByName(m_drt->pageAdapter(), name, value);
-}
-
-bool TestRunnerQt::isCommandEnabled(const QString& name) const
-{
-    return DumpRenderTreeSupportQt::isCommandEnabled(m_drt->pageAdapter(), name);
-}
-
-bool TestRunner::findString(JSContextRef context, JSStringRef string, JSObjectRef optionsArray)
-{
-    JSRetainPtr<JSStringRef> lengthPropertyName(Adopt, JSStringCreateWithUTF8CString("length"));
-    JSValueRef lengthValue = JSObjectGetProperty(context, optionsArray, lengthPropertyName.get(), 0);
-    if (!JSValueIsNumber(context, lengthValue))
-        return false;
-
-    QWebPage::FindFlags findFlags = QWebPage::FindCaseSensitively;
-
-    int length = static_cast<int>(JSValueToNumber(context, lengthValue, 0));
-    for (int i = 0; i < length; ++i) {
-        JSValueRef value = JSObjectGetPropertyAtIndex(context, optionsArray, i, 0);
-        if (!JSValueIsString(context, value))
-            continue;
-
-        JSRetainPtr<JSStringRef> optionName(Adopt, JSValueToStringCopy(context, value, 0));
-        if (JSStringIsEqualToUTF8CString(optionName.get(), "CaseInsensitive"))
-            findFlags &= ~QWebPage::FindCaseSensitively;
-        else if (JSStringIsEqualToUTF8CString(optionName.get(), "AtWordStarts"))
-            findFlags |= QWebPage::FindAtWordBeginningsOnly;
-        else if (JSStringIsEqualToUTF8CString(optionName.get(), "TreatMedialCapitalAsWordStart"))
-            findFlags |=  QWebPage::TreatMedialCapitalAsWordBeginning;
-        else if (JSStringIsEqualToUTF8CString(optionName.get(), "Backwards"))
-            findFlags |=  QWebPage::FindBackward;
-        else if (JSStringIsEqualToUTF8CString(optionName.get(), "WrapAround"))
-            findFlags |=  QWebPage::FindWrapsAroundDocument;
-        else if (JSStringIsEqualToUTF8CString(optionName.get(), "StartInSelection"))
-            findFlags |=  QWebPage::FindBeginsInSelection;
-    }
-
-    DumpRenderTree* drt = DumpRenderTree::instance();
-    return drt->webPage()->findText(JSStringCopyQString(string), findFlags);
-}
-
-void TestRunnerQt::setIconDatabaseEnabled(bool enable)
-{
-    if (enable && !m_drt->persistentStoragePath().isEmpty())
-        QWebSettings::setIconDatabasePath(m_drt->persistentStoragePath());
-    else
-        QWebSettings::setIconDatabasePath(QString());
-}
-
-void TestRunnerQt::setMockDeviceOrientation(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma)
-{
-    QList<WebPage*> pages = m_drt->getAllPages();
-    foreach (WebPage* page, pages)
-        DumpRenderTreeSupportQt::setMockDeviceOrientation(page->handle(), canProvideAlpha, alpha, canProvideBeta, beta, canProvideGamma, gamma);
-}
-
-void TestRunnerQt::setGeolocationPermission(bool allow)
-{
-    setGeolocationPermissionCommon(allow);
-    QList<WebPage*> pages = m_drt->getAllPages();
-    foreach (WebPage* page, pages)
-        DumpRenderTreeSupportQt::setMockGeolocationPermission(page->handle(), allow);
-}
-
-int TestRunnerQt::numberOfPendingGeolocationPermissionRequests()
-{
-    int pendingPermissionCount = 0;
-    QList<WebPage*> pages = m_drt->getAllPages();
-    foreach (WebPage* page, pages)
-        pendingPermissionCount += DumpRenderTreeSupportQt::numberOfPendingGeolocationPermissionRequests(page->handle());
-
-    return pendingPermissionCount;
-}
-
-void TestRunnerQt::setGeolocationPermissionCommon(bool allow)
-{
-     m_isGeolocationPermissionSet = true;
-     m_geolocationPermission = allow;
-}
-
-void TestRunnerQt::setMockGeolocationPositionUnavailableError(const QString& message)
-{
-    QList<WebPage*> pages = m_drt->getAllPages();
-    foreach (WebPage* page, pages)
-        DumpRenderTreeSupportQt::setMockGeolocationPositionUnavailableError(page->handle(), message);
-}
-
-void TestRunnerQt::setMockGeolocationPosition(double latitude, double longitude, double accuracy)
-{
-    QList<WebPage*> pages = m_drt->getAllPages();
-    foreach (WebPage* page, pages)
-        DumpRenderTreeSupportQt::setMockGeolocationPosition(page->handle(), latitude, longitude, accuracy);
-}
-
-void TestRunnerQt::startSpeechInput(const QString& inputElement)
-{
-    // FIXME: Implement for speech input layout tests.
-    // See https://bugs.webkit.org/show_bug.cgi?id=39485.
-}
-
-void TestRunnerQt::evaluateScriptInIsolatedWorld(int worldID, const QString& script)
-{
-    DumpRenderTreeSupportQt::evaluateScriptInIsolatedWorld(m_drt->mainFrameAdapter(), worldID, script);
-}
-
-void TestRunnerQt::addUserStyleSheet(const QString& sourceCode)
-{
-    DumpRenderTreeSupportQt::addUserStyleSheet(m_drt->pageAdapter(), sourceCode);
-}
-
-void TestRunnerQt::removeAllVisitedLinks()
-{
-    QWebHistory* history = m_drt->webPage()->history();
-    history->clear();
-    DumpRenderTreeSupportQt::dumpVisitedLinksCallbacks(true);
-}
-
-void TestRunnerQt::addURLToRedirect(const QString& origin, const QString& destination)
-{
-    DumpRenderTreeSupportQt::addURLToRedirect(origin, destination);
-}
-
-void TestRunnerQt::setTextDirection(const QString& directionName)
-{
-    if (directionName == "auto")
-        m_drt->webPage()->triggerAction(QWebPage::SetTextDirectionDefault);
-    else if (directionName == "rtl")
-        m_drt->webPage()->triggerAction(QWebPage::SetTextDirectionRightToLeft);
-    else if (directionName == "ltr")
-        m_drt->webPage()->triggerAction(QWebPage::SetTextDirectionLeftToRight);
-}
-
-void TestRunnerQt::setAlwaysAcceptCookies(bool accept)
-{
-    QWebSettings* globalSettings = QWebSettings::globalSettings();
-    if (accept)
-        globalSettings->setThirdPartyCookiePolicy(QWebSettings::AlwaysAllowThirdPartyCookies);
-    else {
-        // This matches the Safari third-party cookie blocking policy tested in third-party-cookie-relaxing.html
-        globalSettings->setThirdPartyCookiePolicy(QWebSettings::AllowThirdPartyWithExistingCookies);
-    }
-}
-
-void TestRunnerQt::setAlwaysBlockCookies(bool block)
-{
-    QWebSettings* globalSettings = QWebSettings::globalSettings();
-    if (block)
-        globalSettings->setThirdPartyCookiePolicy(QWebSettings::AlwaysBlockThirdPartyCookies);
-    else
-        globalSettings->setThirdPartyCookiePolicy(QWebSettings::AlwaysAllowThirdPartyCookies);
-}
-
-void TestRunnerQt::setAudioData(const QByteArray& audioData)
-{
-    m_audioData = audioData;
-    m_audioDump = true;
-}
-
-const unsigned TestRunnerQt::maxViewWidth = 800;
-const unsigned TestRunnerQt::maxViewHeight = 600;
-
-// --- JSC C API stubs
-
-void TestRunner::addDisallowedURL(JSStringRef url)
-{
-}
-
-void TestRunner::queueLoad(JSStringRef url, JSStringRef target)
-{
-}
-
-void TestRunner::removeAllVisitedLinks()
-{
-}
-
-void TestRunner::setAcceptsEditing(bool)
-{
-}
-
-void TestRunner::simulateLegacyWebNotificationClick(JSStringRef title)
-{
-}
-
-void TestRunner::setWindowIsKey(bool)
-{
-}
-
-void TestRunner::setAlwaysAcceptCookies(bool)
-{
-}
-
-void TestRunner::addOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef destinationProtocol, JSStringRef destinationHost, bool allowDestinationSubdomains)
-{
-}
-
-void TestRunner::setWebViewEditable(bool)
-{
-}
-
-void TestRunner::clearAllApplicationCaches()
-{
-}
-
-void TestRunner::setTextDirection(JSStringRef)
-{
-}
-
-void TestRunner::notifyDone()
-{
-}
-
-int TestRunner::numberOfPendingGeolocationPermissionRequests()
-{
-    return 0;
-}
-
-void TestRunner::overridePreference(JSStringRef key, JSStringRef value)
-{
-}
-
-JSStringRef TestRunner::pathToLocalResource(JSContextRef, JSStringRef url)
-{
-    return JSStringCreateWithUTF8CString(0); // ### Take impl from WTR
-}
-
-void TestRunner::removeAllWebNotificationPermissions()
-{
-}
-
-void TestRunner::simulateWebNotificationClick(JSValueRef notification)
-{
-}
-
-void TestRunner::closeIdleLocalStorageDatabases()
-{
-}
-
-void TestRunner::focusWebView()
-{
-}
-
-void TestRunner::setBackingScaleFactor(double)
-{
-}
-
-void TestRunner::removeChromeInputField()
-{
-}
-
-void TestRunner::addChromeInputField()
-{
-}
-
-JSValueRef TestRunner::originsWithLocalStorage(JSContextRef context)
-{
-    return JSValueMakeNull(context);
-}
-
-void TestRunner::deleteAllLocalStorage()
-{
-}
-
-void TestRunner::deleteLocalStorageForOrigin(JSStringRef originIdentifier)
-{
-}
-
-void TestRunner::observeStorageTrackerNotifications(unsigned number)
-{
-}
-
-void TestRunner::syncLocalStorage()
-{
-}
-
-int TestRunner::windowCount()
-{
-    return 0;
-}
-
-void TestRunner::setWaitToDump(bool)
-{
-}
-
-void TestRunner::waitForPolicyDelegate()
-{
-}
-
-size_t TestRunner::webHistoryItemCount()
-{
-    return 0;
-}
-
-void TestRunner::showWebInspector()
-{
-}
-
-void TestRunner::closeWebInspector()
-{
-}
-
-void TestRunner::evaluateInWebInspector(long callId, JSStringRef script)
-{
-}
-
-void TestRunner::setSerializeHTTPLoads(bool)
-{
-}
-
-void TestRunner::apiTestNewWindowDataLoadBaseURL(JSStringRef utf8Data, JSStringRef baseURL)
-{
-}
-
-void TestRunner::setCustomPolicyDelegate(bool setDelegate, bool permissive)
-{
-}
-
-void TestRunner::setDatabaseQuota(unsigned long long quota)
-{
-}
-
-void TestRunner::setDomainRelaxationForbiddenForURLScheme(bool forbidden, JSStringRef scheme)
-{
-}
-
-void TestRunner::resetPageVisibility()
-{
-}
-
-void TestRunner::keepWebHistory()
-{
-}
-
-void TestRunner::goBack()
-{
-}
-
-JSValueRef TestRunner::originsWithApplicationCache(JSContextRef context)
-{
-    return JSValueMakeNull(context);
-}
-
-long long TestRunner::applicationCacheDiskUsageForOrigin(JSStringRef name)
-{
-    return 0;
-}
-
-void TestRunner::display()
-{
-}
-
-void TestRunner::dispatchPendingLoadRequests()
-{
-}
-
-void TestRunner::clearPersistentUserStyleSheet()
-{
-}
-
-bool TestRunner::callShouldCloseOnWebView()
-{
-    return false;
-}
-
-JSStringRef TestRunner::copyDecodedHostName(JSStringRef name)
-{
-    return JSStringCreateWithUTF8CString(0);
-}
-
-void TestRunner::clearBackForwardList()
-{
-}
-
-void TestRunner::clearAllDatabases()
-{
-}
-
-void TestRunner::clearApplicationCacheForOrigin(JSStringRef name)
-{
-}
-
-void TestRunner::apiTestGoToCurrentBackForwardItem()
-{
-}
-
-void TestRunner::authenticateSession(JSStringRef url, JSStringRef username, JSStringRef password)
-{
-}
-
-void TestRunner::abortModal()
-{
-}
-
-void TestRunner::setStorageDatabaseIdleInterval(double)
-{
-}
-
-void TestRunner::setXSSAuditorEnabled(bool flag)
-{
-}
-
-void TestRunner::setSpatialNavigationEnabled(bool)
-{
-}
-
-void TestRunner::setScrollbarPolicy(JSStringRef orientation, JSStringRef policy)
-{
-}
-
-void TestRunner::setJavaScriptCanAccessClipboard(bool flag)
-{
-}
-
-void TestRunner::setAutomaticLinkDetectionEnabled(bool flag)
-{
-}
-
-void TestRunner::setUserStyleSheetEnabled(bool flag)
-{
-}
-
-void TestRunner::setUserStyleSheetLocation(JSStringRef path)
-{
-}
-
-void TestRunner::setUseDashboardCompatibilityMode(bool flag)
-{
-}
-
-void TestRunner::setTabKeyCyclesThroughElements(bool)
-{
-}
-
-void TestRunner::setPrivateBrowsingEnabled(bool)
-{
-}
-
-void TestRunner::setPluginsEnabled(bool)
-{
-}
-
-void TestRunner::setPopupBlockingEnabled(bool)
-{
-}
-
-void TestRunner::setMockSpeechInputDumpRect(bool flag)
-{
-}
-
-void TestRunner::setPersistentUserStyleSheetLocation(JSStringRef path)
-{
-}
-
-void TestRunner::setMockGeolocationPosition(double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed)
-{
-}
-
-void TestRunner::setMockGeolocationPositionUnavailableError(JSStringRef message)
-{
-}
-
-void TestRunner::setMockDeviceOrientation(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma)
-{
-}
-
-void TestRunner::setMainFrameIsFirstResponder(bool flag)
-{
-}
-
-void TestRunner::setIconDatabaseEnabled(bool)
-{
-}
-
-void TestRunner::setGeolocationPermission(bool allow)
-{
-}
-
-void TestRunner::setDefersLoading(bool)
-{
-}
-
-void TestRunner::setCacheModel(int)
-{
-}
-
-void TestRunner::setAuthorAndUserStylesEnabled(bool)
-{
-}
-
-void TestRunner::setAllowFileAccessFromFileURLs(bool)
-{
-}
-
-void TestRunner::setAppCacheMaximumSize(unsigned long long quota)
-{
-}
-
-void TestRunner::setAllowUniversalAccessFromFileURLs(bool)
-{
-}
-
-void TestRunner::setApplicationCacheOriginQuota(unsigned long long)
-{
-}
-
-void TestRunner::denyWebNotificationPermission(JSStringRef origin)
-{
-}
-
-void TestRunner::grantWebNotificationPermission(JSStringRef origin)
-{
-}
-
-void TestRunner::setValueForUser(JSContextRef, JSValueRef nodeObject, JSStringRef value)
-{
-}
-
-void TestRunner::setViewModeMediaFeature(JSStringRef)
-{
-}
-
-void TestRunner::setPageVisibility(const char *)
-{
-}
-
-void TestRunner::addMockSpeechInputResult(JSStringRef result, double confidence, JSStringRef language)
-{
-}
-
-void TestRunner::removeOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef destinationProtocol, JSStringRef destinationHost, bool allowDestinationSubdomains)
-{
-}
-
-void TestRunner::addUserScript(JSStringRef source, bool runAtStart, bool allFrames)
-{
-}
-
-bool TestRunner::isCommandEnabled(JSStringRef name)
-{
-    return false;
-}
-
-void TestRunner::evaluateScriptInIsolatedWorld(unsigned worldID, JSObjectRef globalObject, JSStringRef script)
-{
-}
-
-void TestRunner::evaluateScriptInIsolatedWorldAndReturnValue(unsigned worldID, JSObjectRef globalObject, JSStringRef script)
-{
-}
-
-JSStringRef TestRunner::copyEncodedHostName(JSStringRef name)
-{
-    return JSStringCreateWithUTF8CString(0);
-}
-
-void TestRunner::addUserStyleSheet(JSStringRef source, bool allFrames)
-{
-}
-
-void TestRunner::execCommand(JSStringRef name, JSStringRef value)
-{
-}
-
-long long TestRunner::localStorageDiskUsageForOrigin(JSStringRef originIdentifier)
-{
-    return 0;
-}
-
diff --git a/Tools/DumpRenderTree/qt/TestRunnerQt.h b/Tools/DumpRenderTree/qt/TestRunnerQt.h
deleted file mode 100644
index 4b16b8f..0000000
--- a/Tools/DumpRenderTree/qt/TestRunnerQt.h
+++ /dev/null
@@ -1,237 +0,0 @@
-/*
- * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/
- * Copyright (C) 2012 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef TestRunnerQt_h
-#define TestRunnerQt_h
-
-#include <QBasicTimer>
-#include <QObject>
-#include <QSize>
-#include <QString>
-#include <QTimer>
-#include <QTimerEvent>
-#include <QVariant>
-#include <QtDebug>
-
-#include <qwebdatabase.h>
-#include <qwebelement.h>
-#include <qwebframe.h>
-#include <qwebhistory.h>
-#include <qwebpage.h>
-#include <qwebsecurityorigin.h>
-
-class QWebFrame;
-class DumpRenderTreeSupportQt;
-class DumpRenderTree;
-
-class TestRunnerQt : public QObject {
-    Q_OBJECT
-    Q_PROPERTY(int webHistoryItemCount READ webHistoryItemCount)
-    Q_PROPERTY(bool globalFlag READ globalFlag WRITE setGlobalFlag)
-public:
-    TestRunnerQt(DumpRenderTree*);
-
-    bool shouldDumpAsAudio() const { return m_audioDump; }
-    bool shouldWaitUntilDone() const { return m_waitForDone; }
-    bool shouldHandleErrorPages() const { return m_handleErrorPages; }
-    bool waitForPolicy() const { return m_waitForPolicy; }
-    bool ignoreReqestForPermission() const { return m_ignoreDesktopNotification; }
-
-    const QByteArray& audioData() const { return m_audioData; }
-
-    void reset();
-
-    static const unsigned int maxViewWidth;
-    static const unsigned int maxViewHeight;
-
-    void setTimeout(int timeout) { m_timeout = timeout; }
-    void setShouldTimeout(bool flag) { m_shouldTimeout = flag; }
-
-protected:
-    void timerEvent(QTimerEvent*);
-
-Q_SIGNALS:
-    void done();
-
-    void showPage();
-    void hidePage();
-    void geolocationPermissionSet();
-
-public Q_SLOTS:
-    void maybeDump(bool ok);
-    void dumpNotifications();
-    void waitUntilDone();
-    int webHistoryItemCount();
-    void keepWebHistory();
-    void notifyDone();
-    bool globalFlag() const { return m_globalFlag; }
-    void setGlobalFlag(bool flag) { m_globalFlag = flag; }
-    void handleErrorPages() { m_handleErrorPages = true; }
-    void dumpEditingCallbacks();
-    void dumpFrameLoadCallbacks();
-    void dumpProgressFinishedCallback();
-    void dumpUserGestureInFrameLoadCallbacks();
-    void dumpResourceLoadCallbacks();
-    void dumpResourceResponseMIMETypes();
-    void dumpWillCacheResponse();
-    void dumpHistoryCallbacks();
-    void setWillSendRequestReturnsNullOnRedirect(bool enabled);
-    void setWillSendRequestReturnsNull(bool enabled);
-    void setWillSendRequestClearHeader(const QStringList& headers);
-    void queueBackNavigation(int howFarBackward);
-    void queueForwardNavigation(int howFarForward);
-    void queueLoad(const QString& url, const QString& target = QString());
-    void queueLoadHTMLString(const QString& content, const QString& baseURL = QString(), const QString& failingURL = QString());
-    void queueReload();
-    void queueLoadingScript(const QString& script);
-    void queueNonLoadingScript(const QString& script);
-    void provisionalLoad();
-    int windowCount();
-    void ignoreLegacyWebNotificationPermissionRequests();
-    void simulateLegacyWebNotificationClick(const QString& title);
-    void grantWebNotificationPermission(const QString& origin);
-    void denyWebNotificationPermission(const QString& origin);
-    void removeAllWebNotificationPermissions();
-    void display();
-    void displayInvalidatedRegion();
-    void clearBackForwardList();
-    QString pathToLocalResource(const QString& url);
-    QString encodeHostName(const QString& host);
-    QString decodeHostName(const QString& host);
-    void dumpSelectionRect() const { }
-    void setDeveloperExtrasEnabled(bool);
-    void showWebInspector();
-    void closeWebInspector();
-    void evaluateInWebInspector(long callId, const QString& script);
-    void removeAllVisitedLinks();
-    void setAllowUniversalAccessFromFileURLs(bool enable);
-    void setAllowFileAccessFromFileURLs(bool enable);
-    void setAppCacheMaximumSize(unsigned long long quota);
-    void setValueForUser(const QWebElement&, const QString& value);
-    void setFixedContentsSize(int width, int height);
-    void setPrivateBrowsingEnabled(bool);
-    void setSpatialNavigationEnabled(bool);
-    void setPopupBlockingEnabled(bool);
-    void setPOSIXLocale(const QString& locale);
-    void resetLoadFinished() { m_loadFinished = false; }
-    void setWindowIsKey(bool);
-    void setDeferMainResourceDataLoad(bool);
-    void setJavaScriptCanAccessClipboard(bool enable);
-    void setXSSAuditorEnabled(bool);
-    void setCaretBrowsingEnabled(bool);
-    void setAuthorAndUserStylesEnabled(bool);
-    void setViewModeMediaFeature(const QString& mode);
-    void execCommand(const QString& name, const QString& value = QString());
-    bool isCommandEnabled(const QString& name) const;
-
-    void addOriginAccessWhitelistEntry(const QString& sourceOrigin, const QString& destinationProtocol, const QString& destinationHost, bool allowDestinationSubdomains);
-    void removeOriginAccessWhitelistEntry(const QString& sourceOrigin, const QString& destinationProtocol, const QString& destinationHost, bool allowDestinationSubdomains);
-
-    void clearAllApplicationCaches();
-    void setApplicationCacheOriginQuota(unsigned long long);
-    QStringList originsWithApplicationCache();
-
-    void setDatabaseQuota(int size);
-    void clearAllDatabases();
-    void setIconDatabaseEnabled(bool);
-
-    void setCustomPolicyDelegate(bool enabled, bool permissive = false);
-    void waitForPolicyDelegate();
-
-    void overridePreference(const QString& name, const QVariant& value);
-    void setUserStyleSheetLocation(const QString& url);
-    void setUserStyleSheetEnabled(bool);
-    void setDomainRelaxationForbiddenForURLScheme(bool forbidden, const QString& scheme);
-    bool callShouldCloseOnWebView();
-
-    void setMockDeviceOrientation(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma);
-
-    void setMockGeolocationPositionUnavailableError(const QString& message);
-    void setMockGeolocationPosition(double latitude, double longitude, double accuracy);
-    void setGeolocationPermission(bool allow);
-    int numberOfPendingGeolocationPermissionRequests();
-    bool isGeolocationPermissionSet() const { return m_isGeolocationPermissionSet; }
-    bool geolocationPermission() const { return m_geolocationPermission; }
-
-    void startSpeechInput(const QString& inputElement);
-
-    void addURLToRedirect(const QString& origin, const QString& destination);
-
-    /*
-        Policy values: 'on', 'auto' or 'off'.
-        Orientation values: 'vertical' or 'horizontal'.
-    */
-    void setScrollbarPolicy(const QString& orientation, const QString& policy);
-
-    void evaluateScriptInIsolatedWorld(int worldID, const QString& script);
-    void addUserStyleSheet(const QString& sourceCode);
-    
-    void setTextDirection(const QString& directionName);
-    void goBack();
-    void setDefersLoading(bool);
-    void setAlwaysAcceptCookies(bool);
-    void setAlwaysBlockCookies(bool);
-
-    void setAudioData(const QByteArray&);
-
-private Q_SLOTS:
-    void processWork();
-
-private:
-    void setGeolocationPermissionCommon(bool allow);
-
-private:
-    bool m_hasDumped;
-    bool m_audioDump;
-    bool m_disallowIncreaseForApplicationCacheQuota;
-    bool m_canOpenWindows;
-    bool m_waitForDone;
-    bool m_waitForPolicy;
-    bool m_handleErrorPages;
-    bool m_loadFinished;
-    bool m_globalFlag;
-    bool m_userStyleSheetEnabled;
-    bool m_isGeolocationPermissionSet;
-    bool m_geolocationPermission;
-
-    QUrl m_userStyleSheetLocation;
-    QBasicTimer m_timeoutTimer;
-    QWebFrame* m_topLoadingFrame;
-    DumpRenderTree* m_drt;
-    QWebHistory* m_webHistory;
-    bool m_ignoreDesktopNotification;
-
-    QByteArray m_audioData;
-
-    bool m_shouldTimeout;
-    int m_timeout;
-};
-
-#endif // TestRunnerQt_h
diff --git a/Tools/DumpRenderTree/qt/TextInputControllerQt.cpp b/Tools/DumpRenderTree/qt/TextInputControllerQt.cpp
deleted file mode 100644
index 38e489d..0000000
--- a/Tools/DumpRenderTree/qt/TextInputControllerQt.cpp
+++ /dev/null
@@ -1,163 +0,0 @@
-/*
- * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-#include "config.h"
-#include "TextInputControllerQt.h"
-#include "DumpRenderTreeSupportQt.h"
-
-#include <QApplication>
-#include <QInputMethodEvent>
-#include <QKeyEvent>
-
-TextInputController::TextInputController(QWebPage* parent)
-    : QObject(parent)
-{
-}
-
-void TextInputController::doCommand(const QString& command)
-{
-    Qt::KeyboardModifiers modifiers = Qt::NoModifier;
-    int keycode = 0;
-    if (command == "moveBackwardAndModifySelection:") {
-        modifiers |= Qt::ShiftModifier;
-        keycode = Qt::Key_Left;
-    } else if (command =="moveDown:") {
-        keycode = Qt::Key_Down;
-    } else if (command =="moveDownAndModifySelection:") {
-        modifiers |= Qt::ShiftModifier;
-        keycode = Qt::Key_Down;
-    } else if (command =="moveForward:") {
-        keycode = Qt::Key_Right;
-    } else if (command =="moveForwardAndModifySelection:") {
-        modifiers |= Qt::ShiftModifier;
-        keycode = Qt::Key_Right;
-    } else if (command =="moveLeft:") {
-        keycode = Qt::Key_Left;
-    } else if (command =="moveLeftAndModifySelection:") {
-        modifiers |= Qt::ShiftModifier;
-        keycode = Qt::Key_Left;
-    } else if (command =="moveRight:") {
-        keycode = Qt::Key_Right;
-    } else if (command =="moveRightAndModifySelection:") {
-        modifiers |= Qt::ShiftModifier;
-        keycode = Qt::Key_Right;
-    } else if (command =="moveToBeginningOfDocument:") {
-        modifiers |= Qt::ControlModifier;
-        keycode = Qt::Key_Home;
-    } else if (command =="moveToBeginningOfLine:") {
-        keycode = Qt::Key_Home;
-//     } else if (command =="moveToBeginningOfParagraph:") {
-    } else if (command =="moveToEndOfDocument:") {
-        modifiers |= Qt::ControlModifier;
-        keycode = Qt::Key_End;
-    } else if (command =="moveToEndOfLine:") {
-        keycode = Qt::Key_End;
-//     } else if (command =="moveToEndOfParagraph:") {
-    } else if (command =="moveUp:") {
-        keycode = Qt::Key_Up;
-    } else if (command =="moveUpAndModifySelection:") {
-        modifiers |= Qt::ShiftModifier;
-        keycode = Qt::Key_Up;
-    } else if (command =="moveWordBackward:") {
-        modifiers |= Qt::ControlModifier;
-        keycode = Qt::Key_Up;
-    } else if (command =="moveWordBackwardAndModifySelection:") {
-        modifiers |= Qt::ShiftModifier;
-        modifiers |= Qt::ControlModifier;
-        keycode = Qt::Key_Left;
-    } else if (command =="moveWordForward:") {
-        modifiers |= Qt::ControlModifier;
-        keycode = Qt::Key_Right;
-    } else if (command =="moveWordForwardAndModifySelection:") {
-        modifiers |= Qt::ControlModifier;
-        modifiers |= Qt::ShiftModifier;
-        keycode = Qt::Key_Right;
-    } else if (command =="moveWordLeft:") {
-        modifiers |= Qt::ControlModifier;
-        keycode = Qt::Key_Left;
-    } else if (command =="moveWordRight:") {
-        modifiers |= Qt::ControlModifier;
-        keycode = Qt::Key_Left;
-    } else if (command =="moveWordRightAndModifySelection:") {
-        modifiers |= Qt::ShiftModifier;
-        modifiers |= Qt::ControlModifier;
-        keycode = Qt::Key_Right;
-    } else if (command =="moveWordLeftAndModifySelection:") {
-        modifiers |= Qt::ShiftModifier;
-        modifiers |= Qt::ControlModifier;
-        keycode = Qt::Key_Left;
-    } else if (command =="pageDown:") {
-        keycode = Qt::Key_PageDown;
-    } else if (command =="pageUp:") {
-        keycode = Qt::Key_PageUp;
-    } else if (command == "deleteWordBackward:") {
-        modifiers |= Qt::ControlModifier;
-        keycode = Qt::Key_Backspace;
-    } else if (command == "deleteBackward:") {
-        keycode = Qt::Key_Backspace;
-    } else if (command == "deleteForward:") {
-        keycode = Qt::Key_Delete;
-    }
-
-    QKeyEvent event(QEvent::KeyPress, keycode, modifiers);
-    QApplication::sendEvent(parent(), &event);
-    QKeyEvent event2(QEvent::KeyRelease, keycode, modifiers);
-    QApplication::sendEvent(parent(), &event2);
-}
-
-void TextInputController::setMarkedText(const QString& string, int start, int end)
-{
-    QList<QInputMethodEvent::Attribute> attributes;
-    QInputMethodEvent::Attribute selection(QInputMethodEvent::Selection, start, end, QVariant());
-    attributes << selection;
-    QInputMethodEvent event(string, attributes);
-    QApplication::sendEvent(parent(), &event);
-}
-
-void TextInputController::insertText(const QString& string)
-{
-    QList<QInputMethodEvent::Attribute> attributes;
-    QInputMethodEvent event(string, attributes);
-    event.setCommitString(string);
-    QApplication::sendEvent(parent(), &event);
-}
-
-QVariantList TextInputController::selectedRange()
-{
-    return DumpRenderTreeSupportQt::selectedRange(qobject_cast<QWebPage*>(parent())->handle());
-}
-
-QVariantList TextInputController::firstRectForCharacterRange(int location, int length)
-{
-    return DumpRenderTreeSupportQt::firstRectForCharacterRange(qobject_cast<QWebPage*>(parent())->handle(), location, length);
-}
-
-void TextInputController::unmarkText()
-{
-    DumpRenderTreeSupportQt::confirmComposition(qobject_cast<QWebPage*>(parent())->handle(), 0);
-}
diff --git a/Tools/DumpRenderTree/qt/TextInputControllerQt.h b/Tools/DumpRenderTree/qt/TextInputControllerQt.h
deleted file mode 100644
index 2940273..0000000
--- a/Tools/DumpRenderTree/qt/TextInputControllerQt.h
+++ /dev/null
@@ -1,57 +0,0 @@
-/*
- * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-#ifndef TextInputControllerQt_h
-#define TextInputControllerQt_h
-
-#include <QList>
-#include <QObject>
-#include <QVariant>
-#include <QString>
-#include "qwebpage.h"
-
-class TextInputController : public QObject {
-    Q_OBJECT
-public:
-    TextInputController(QWebPage* parent);
-
-public Q_SLOTS:
-    void doCommand(const QString& command);
-    void setMarkedText(const QString& string, int start, int end);
-//     bool hasMarkedText();
-     void unmarkText();
-//     QList<int> markedRange();
-    QVariantList selectedRange();
-//     void validAttributesForMarkedText();
-    void insertText(const QString& string);
-    QVariantList firstRectForCharacterRange(int location, int length);
-//     void characterIndexForPoint(int, int);
-//     void substringFromRange(int, int);
-//     void conversationIdentifier();
-};
-#endif // TextInputControllerQt_h
diff --git a/Tools/DumpRenderTree/qt/WorkQueueItemQt.cpp b/Tools/DumpRenderTree/qt/WorkQueueItemQt.cpp
deleted file mode 100644
index 7cf9fca..0000000
--- a/Tools/DumpRenderTree/qt/WorkQueueItemQt.cpp
+++ /dev/null
@@ -1,119 +0,0 @@
-/*
- * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-#include "config.h"
-#include "WorkQueueItemQt.h"
-#include "DumpRenderTreeSupportQt.h"
-
-QWebFrame* findFrameNamed(const QString& frameName, QWebFrame* frame)
-{
-    if (frame->frameName() == frameName)
-        return frame;
-
-    foreach (QWebFrame* childFrame, frame->childFrames())
-        if (QWebFrame* f = findFrameNamed(frameName, childFrame))
-            return f;
-
-    return 0;
-}
-
-bool LoadItem::invoke() const
-{
-    //qDebug() << ">>>LoadItem::invoke";
-    Q_ASSERT(m_webPage);
-
-    QWebFrame* frame = 0;
-    const QString t = target();
-    if (t.isEmpty())
-        frame = m_webPage->mainFrame();
-    else
-        frame = findFrameNamed(t, m_webPage->mainFrame());
-
-    if (!frame)
-        return false;
-
-    frame->load(url());
-    return true;
-}
-
-bool LoadHTMLStringItem::invoke() const
-{
-    Q_ASSERT(m_webPage);
-
-    QWebFrame* frame = m_webPage->mainFrame();
-    if (!frame)
-        return false;
-
-    frame->setHtml(m_content, QUrl(m_baseURL));
-    return true;
-}
-
-bool LoadAlternateHTMLStringItem::invoke() const
-{
-    Q_ASSERT(m_webPage);
-
-    QWebFrame* frame = m_webPage->mainFrame();
-    if (!frame)
-        return false;
-
-    DumpRenderTreeSupportQt::setAlternateHtml(frame->handle(), m_content, QUrl(m_baseURL), QUrl(m_failingURL));
-    return true;
-}
-
-bool ReloadItem::invoke() const
-{
-    //qDebug() << ">>>ReloadItem::invoke";
-    Q_ASSERT(m_webPage);
-    m_webPage->triggerAction(QWebPage::Reload);
-    return true;
-}
-
-bool ScriptItem::invoke() const
-{
-    //qDebug() << ">>>ScriptItem::invoke";
-    Q_ASSERT(m_webPage);
-    m_webPage->mainFrame()->evaluateJavaScript(script());
-    return true;
-}
-
-bool BackForwardItem::invoke() const
-{
-    //qDebug() << ">>>BackForwardItem::invoke";
-    Q_ASSERT(m_webPage);
-    if (!m_howFar)
-        return false;
-
-    if (m_howFar > 0) {
-        for (int i = 0; i != m_howFar; ++i)
-            m_webPage->triggerAction(QWebPage::Forward);
-    } else {
-        for (int i = 0; i != m_howFar; --i)
-            m_webPage->triggerAction(QWebPage::Back);
-    }
-    return true;
-}
diff --git a/Tools/DumpRenderTree/qt/WorkQueueItemQt.h b/Tools/DumpRenderTree/qt/WorkQueueItemQt.h
deleted file mode 100644
index ac7d1b3..0000000
--- a/Tools/DumpRenderTree/qt/WorkQueueItemQt.h
+++ /dev/null
@@ -1,177 +0,0 @@
-/*
- * Copyright (C) 2007 Apple Inc.  All rights reserved.
- * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef WorkQueueItemQt_h
-#define WorkQueueItemQt_h
-
-#include <QPointer>
-#include <QString>
-#include <qwebframe.h>
-#include <qwebpage.h>
-
-class WorkQueueItem {
-public:
-    WorkQueueItem(QWebPage *page) : m_webPage(page) {}
-    virtual ~WorkQueueItem() { }
-    virtual bool invoke() const = 0;
-
-protected:
-    QPointer<QWebPage> m_webPage;
-};
-
-class LoadItem : public WorkQueueItem {
-public:
-    LoadItem(const QString &url, const QString &target, QWebPage *page)
-        : WorkQueueItem(page)
-        , m_url(url)
-        , m_target(target)
-    {
-    }
-
-    QString url() const { return m_url; }
-    QString target() const { return m_target; }
-
-    virtual bool invoke() const;
-
-private:
-    QString m_url;
-    QString m_target;
-};
-
-class LoadHTMLStringItem : public WorkQueueItem {
-public:
-    LoadHTMLStringItem(const QString& content, const QString &baseURL, QWebPage *page)
-        : WorkQueueItem(page)
-        , m_content(content)
-        , m_baseURL(baseURL)
-    {
-    }
-
-private:
-    virtual bool invoke() const;
-
-    QString m_content;
-    QString m_baseURL;
-};
-
-class LoadAlternateHTMLStringItem : public WorkQueueItem {
-public:
-    LoadAlternateHTMLStringItem(const QString& content, const QString& baseURL,  const QString &failingURL, QWebPage *page)
-        : WorkQueueItem(page)
-        , m_content(content)
-        , m_baseURL(baseURL)
-        , m_failingURL(failingURL)
-    {
-    }
-
-private:
-    virtual bool invoke() const;
-
-    QString m_content;
-    QString m_baseURL;
-    QString m_failingURL;
-};
-
-class ReloadItem : public WorkQueueItem {
-public:
-    ReloadItem(QWebPage *page)
-        : WorkQueueItem(page)
-    {
-    }
-    virtual bool invoke() const;
-};
-
-class ScriptItem : public WorkQueueItem {
-public:
-    ScriptItem(const QString &script, QWebPage *page)
-        : WorkQueueItem(page)
-        , m_script(script)
-    {
-    }
-
-    QString script() const { return m_script; }
-
-    virtual bool invoke() const;
-
-private:
-    QString m_script;
-};
-
-class LoadingScriptItem : public ScriptItem {
-public:
-    LoadingScriptItem(const QString& script, QWebPage* page)
-        : ScriptItem(script, page)
-    {
-    }
-
-    virtual bool invoke() const { return ScriptItem::invoke(); }
-};
-
-class NonLoadingScriptItem : public ScriptItem {
-public:
-    NonLoadingScriptItem(const QString& script, QWebPage* page)
-        : ScriptItem(script, page)
-    {
-    }
-
-    virtual bool invoke() const { ScriptItem::invoke(); return false; }
-};
-
-
-class BackForwardItem : public WorkQueueItem {
-public:
-    virtual bool invoke() const;
-
-protected:
-    BackForwardItem(int howFar, QWebPage *page)
-        : WorkQueueItem(page)
-        , m_howFar(howFar)
-    {
-    }
-
-    int m_howFar;
-};
-
-class BackItem : public BackForwardItem {
-public:
-    BackItem(unsigned howFar, QWebPage *page)
-        : BackForwardItem(-howFar, page)
-    {
-    }
-};
-
-class ForwardItem : public BackForwardItem {
-public:
-    ForwardItem(unsigned howFar, QWebPage *page)
-        : BackForwardItem(howFar, page)
-    {
-    }
-};
-
-#endif // !defined(WorkQueueItemQt_h)
diff --git a/Tools/DumpRenderTree/qt/resources/user.css b/Tools/DumpRenderTree/qt/resources/user.css
deleted file mode 100644
index af39819..0000000
--- a/Tools/DumpRenderTree/qt/resources/user.css
+++ /dev/null
@@ -1,4 +0,0 @@
-body {
-    font-size: 50px;
-    background-color: rgb(255, 255, 0);
-}
\ No newline at end of file
diff --git a/Tools/DumpRenderTree/qt/testplugin.cpp b/Tools/DumpRenderTree/qt/testplugin.cpp
deleted file mode 100644
index d5b8bc7..0000000
--- a/Tools/DumpRenderTree/qt/testplugin.cpp
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
- * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-#include "testplugin.h"
-
-TestPlugin::TestPlugin(QObject *parent)
-    : QWebPluginFactory(parent)
-{
-}
-
-TestPlugin::~TestPlugin()
-{
-}
-
-QList<QWebPluginFactory::Plugin> TestPlugin::plugins() const
-{
-    QWebPluginFactory::Plugin plugin;
-
-    plugin.name = "testplugin";
-    plugin.description = "testdescription";
-    MimeType mimeType;
-    mimeType.name = "testtype";
-    mimeType.fileExtensions.append("testsuffixes");
-    plugin.mimeTypes.append(mimeType);
-
-    plugin.name = "testplugin2";
-    plugin.description = "testdescription2";
-    mimeType.name = "testtype2";
-    mimeType.fileExtensions.append("testsuffixes2");
-    mimeType.fileExtensions.append("testsuffixes3");
-    plugin.mimeTypes.append(mimeType);
-
-    return QList<QWebPluginFactory::Plugin>() << plugin;
-}
-
-QObject *TestPlugin::create(const QString&,
-                            const QUrl&,
-                            const QStringList&,
-                            const QStringList&) const
-{
-    return 0;
-}
-
diff --git a/Tools/DumpRenderTree/qt/testplugin.h b/Tools/DumpRenderTree/qt/testplugin.h
deleted file mode 100644
index 3d8a28c..0000000
--- a/Tools/DumpRenderTree/qt/testplugin.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-#include <qwebpluginfactory.h>
-
-
-class TestPlugin : public QWebPluginFactory
-{
-public:
-    explicit TestPlugin(QObject *parent = 0);
-    virtual ~TestPlugin();
-
-    virtual QList<Plugin> plugins() const;
-
-    virtual QObject *create(const QString &mimeType,
-                            const QUrl &url,
-                            const QStringList &argumentNames,
-                            const QStringList &argumentValues) const;
-
-};
-
diff --git a/Tools/DumpRenderTree/win/AccessibilityControllerWin.cpp b/Tools/DumpRenderTree/win/AccessibilityControllerWin.cpp
deleted file mode 100644
index 995c5f1..0000000
--- a/Tools/DumpRenderTree/win/AccessibilityControllerWin.cpp
+++ /dev/null
@@ -1,336 +0,0 @@
-/*
- * Copyright (C) 2008, 2009, 2010 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#include "config.h"
-#include "AccessibilityController.h"
-
-#include "AccessibilityUIElement.h"
-#include "DumpRenderTree.h"
-#include "FrameLoadDelegate.h"
-#include <JavaScriptCore/JSRetainPtr.h>
-#include <JavaScriptCore/JSStringRef.h>
-#include <WebCore/COMPtr.h>
-#include <WebKit/WebKit.h>
-#include <oleacc.h>
-#include <string>
-#include <wtf/Assertions.h>
-
-using namespace std;
-
-AccessibilityController::AccessibilityController()
-    : m_focusEventHook(0)
-    , m_scrollingStartEventHook(0)
-    , m_valueChangeEventHook(0)
-    , m_allEventsHook(0)
-    , m_notificationsEventHook(0)
-{
-}
-
-AccessibilityController::~AccessibilityController()
-{
-    setLogFocusEvents(false);
-    setLogAccessibilityEvents(false);
-    setLogValueChangeEvents(false);
-
-    if (m_notificationsEventHook)
-        UnhookWinEvent(m_notificationsEventHook);
-
-    for (HashMap<PlatformUIElement, JSObjectRef>::iterator it = m_notificationListeners.begin(); it != m_notificationListeners.end(); ++it)
-        JSValueUnprotect(frame->globalContext(), it->value);
-}
-
-AccessibilityUIElement AccessibilityController::elementAtPoint(int x, int y)
-{
-    // FIXME: implement
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityController::accessibleElementById(JSStringRef id)
-{
-    // FIXME: implement
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityController::focusedElement()
-{
-    COMPtr<IAccessible> rootAccessible = rootElement().platformUIElement();
-
-    VARIANT vFocus;
-    if (FAILED(rootAccessible->get_accFocus(&vFocus)))
-        return 0;
-
-    if (V_VT(&vFocus) == VT_I4) {
-        ASSERT(V_I4(&vFocus) == CHILDID_SELF);
-        // The root accessible object is the focused object.
-        return rootAccessible;
-    }
-
-    ASSERT(V_VT(&vFocus) == VT_DISPATCH);
-    // We have an IDispatch; query for IAccessible.
-    return COMPtr<IAccessible>(Query, V_DISPATCH(&vFocus));
-}
-
-AccessibilityUIElement AccessibilityController::rootElement()
-{
-    COMPtr<IWebView> view;
-    if (FAILED(frame->webView(&view)))
-        return 0;
-
-    COMPtr<IWebViewPrivate> viewPrivate(Query, view);
-    if (!viewPrivate)
-        return 0;
-
-    HWND webViewWindow;
-    if (FAILED(viewPrivate->viewWindow((OLE_HANDLE*)&webViewWindow)))
-        return 0;
-
-    // Get the root accessible object by querying for the accessible object for the
-    // WebView's window.
-    COMPtr<IAccessible> rootAccessible;
-    if (FAILED(AccessibleObjectFromWindow(webViewWindow, static_cast<DWORD>(OBJID_CLIENT), __uuidof(IAccessible), reinterpret_cast<void**>(&rootAccessible))))
-        return 0;
-
-    return rootAccessible;
-}
-
-static void CALLBACK logEventProc(HWINEVENTHOOK, DWORD event, HWND hwnd, LONG idObject, LONG idChild, DWORD, DWORD)
-{
-    // Get the accessible object for this event.
-    COMPtr<IAccessible> parentObject;
-
-    VARIANT vChild;
-    VariantInit(&vChild);
-
-    HRESULT hr = AccessibleObjectFromEvent(hwnd, idObject, idChild, &parentObject, &vChild);
-    ASSERT(SUCCEEDED(hr));
-
-    // Get the name of the focused element, and log it to stdout.
-    BSTR nameBSTR;
-    hr = parentObject->get_accName(vChild, &nameBSTR);
-    ASSERT(SUCCEEDED(hr));
-    wstring name(nameBSTR, ::SysStringLen(nameBSTR));
-    SysFreeString(nameBSTR);
-
-    switch (event) {
-        case EVENT_OBJECT_FOCUS:
-            printf("Received focus event for object '%S'.\n", name.c_str());
-            break;
-
-        case EVENT_OBJECT_SELECTION:
-            printf("Received selection event for object '%S'.\n", name.c_str());
-            break;
-
-        case EVENT_OBJECT_VALUECHANGE: {
-            BSTR valueBSTR;
-            hr = parentObject->get_accValue(vChild, &valueBSTR);
-            ASSERT(SUCCEEDED(hr));
-            wstring value(valueBSTR, ::SysStringLen(valueBSTR));
-            SysFreeString(valueBSTR);
-
-            printf("Received value change event for object '%S', value '%S'.\n", name.c_str(), value.c_str());
-            break;
-        }
-
-        case EVENT_SYSTEM_SCROLLINGSTART:
-            printf("Received scrolling start event for object '%S'.\n", name.c_str());
-            break;
-
-        default:
-            printf("Received unknown event for object '%S'.\n", name.c_str());
-            break;
-    }
-
-    VariantClear(&vChild);
-}
-
-void AccessibilityController::setLogFocusEvents(bool logFocusEvents)
-{
-    if (!!m_focusEventHook == logFocusEvents)
-        return;
-
-    if (!logFocusEvents) {
-        UnhookWinEvent(m_focusEventHook);
-        m_focusEventHook = 0;
-        return;
-    }
-
-    // Ensure that accessibility is initialized for the WebView by querying for
-    // the root accessible object.
-    rootElement();
-
-    m_focusEventHook = SetWinEventHook(EVENT_OBJECT_FOCUS, EVENT_OBJECT_FOCUS, GetModuleHandle(0), logEventProc, GetCurrentProcessId(), 0, WINEVENT_INCONTEXT);
-
-    ASSERT(m_focusEventHook);
-}
-
-void AccessibilityController::setLogValueChangeEvents(bool logValueChangeEvents)
-{
-    if (!!m_valueChangeEventHook == logValueChangeEvents)
-        return;
-
-    if (!logValueChangeEvents) {
-        UnhookWinEvent(m_valueChangeEventHook);
-        m_valueChangeEventHook = 0;
-        return;
-    }
-
-    // Ensure that accessibility is initialized for the WebView by querying for
-    // the root accessible object.
-    rootElement();
-
-    m_valueChangeEventHook = SetWinEventHook(EVENT_OBJECT_VALUECHANGE, EVENT_OBJECT_VALUECHANGE, GetModuleHandle(0), logEventProc, GetCurrentProcessId(), 0, WINEVENT_INCONTEXT);
-
-    ASSERT(m_valueChangeEventHook);
-}
-
-void AccessibilityController::setLogScrollingStartEvents(bool logScrollingStartEvents)
-{
-    if (!!m_scrollingStartEventHook == logScrollingStartEvents)
-        return;
-
-    if (!logScrollingStartEvents) {
-        UnhookWinEvent(m_scrollingStartEventHook);
-        m_scrollingStartEventHook = 0;
-        return;
-    }
-
-    // Ensure that accessibility is initialized for the WebView by querying for
-    // the root accessible object.
-    rootElement();
-
-    m_scrollingStartEventHook = SetWinEventHook(EVENT_SYSTEM_SCROLLINGSTART, EVENT_SYSTEM_SCROLLINGSTART, GetModuleHandle(0), logEventProc, GetCurrentProcessId(), 0, WINEVENT_INCONTEXT);
-
-    ASSERT(m_scrollingStartEventHook);
-}
-
-void AccessibilityController::setLogAccessibilityEvents(bool logAccessibilityEvents)
-{
-    if (!!m_allEventsHook == logAccessibilityEvents)
-        return;
-
-    if (!logAccessibilityEvents) {
-        UnhookWinEvent(m_allEventsHook);
-        m_allEventsHook = 0;
-        return;
-    }
-
-    // Ensure that accessibility is initialized for the WebView by querying for
-    // the root accessible object.
-    rootElement();
-
-    m_allEventsHook = SetWinEventHook(EVENT_MIN, EVENT_MAX, GetModuleHandle(0), logEventProc, GetCurrentProcessId(), 0, WINEVENT_INCONTEXT);
-
-    ASSERT(m_allEventsHook);
-}
-
-static string stringEvent(DWORD event)
-{
-    switch(event) {
-        case EVENT_OBJECT_VALUECHANGE:
-            return "value change event";
-        default:
-            return "unknown event";
-    }
-}
-
-static void CALLBACK notificationListenerProc(HWINEVENTHOOK, DWORD event, HWND hwnd, LONG idObject, LONG idChild, DWORD, DWORD)
-{
-    // Get the accessible object for this event.
-    COMPtr<IAccessible> parentObject;
-
-    VARIANT vChild;
-    VariantInit(&vChild);
-
-    HRESULT hr = AccessibleObjectFromEvent(hwnd, idObject, idChild, &parentObject, &vChild);
-    if (FAILED(hr) || !parentObject)
-        return;
-
-    COMPtr<IDispatch> childDispatch;
-    if (FAILED(parentObject->get_accChild(vChild, &childDispatch))) {
-        VariantClear(&vChild);
-        return;
-    }
-
-    COMPtr<IAccessible> childAccessible(Query, childDispatch);
-
-    sharedFrameLoadDelegate->accessibilityController()->winNotificationReceived(childAccessible, stringEvent(event));
-
-    VariantClear(&vChild);
-}
-
-static COMPtr<IAccessibleComparable> comparableObject(const COMPtr<IServiceProvider>& serviceProvider)
-{
-    COMPtr<IAccessibleComparable> comparable;
-    serviceProvider->QueryService(SID_AccessibleComparable, __uuidof(IAccessibleComparable), reinterpret_cast<void**>(&comparable));
-    return comparable;
-}
-
-bool AccessibilityController::addNotificationListener(JSObjectRef functionCallback)
-{
-    return false;
-}
-
-void AccessibilityController::removeNotificationListener()
-{
-}
-
-void AccessibilityController::winNotificationReceived(PlatformUIElement element, const string& eventName)
-{
-    for (HashMap<PlatformUIElement, JSObjectRef>::iterator it = m_notificationListeners.begin(); it != m_notificationListeners.end(); ++it) {
-        COMPtr<IServiceProvider> thisServiceProvider(Query, it->key);
-        if (!thisServiceProvider)
-            continue;
-
-        COMPtr<IAccessibleComparable> thisComparable = comparableObject(thisServiceProvider);
-        if (!thisComparable)
-            continue;
-
-        COMPtr<IServiceProvider> elementServiceProvider(Query, element);
-        if (!elementServiceProvider)
-            continue;
-
-        COMPtr<IAccessibleComparable> elementComparable = comparableObject(elementServiceProvider);
-        if (!elementComparable)
-            continue;
-
-        BOOL isSame = FALSE;
-        thisComparable->isSameObject(elementComparable.get(), &isSame);
-        if (!isSame)
-            continue;
-
-        JSRetainPtr<JSStringRef> jsNotification(Adopt, JSStringCreateWithUTF8CString(eventName.c_str()));
-        JSValueRef argument = JSValueMakeString(frame->globalContext(), jsNotification.get());
-        JSObjectCallAsFunction(frame->globalContext(), it->value, 0, 1, &argument, 0);
-    }
-}
-
-void AccessibilityController::winAddNotificationListener(PlatformUIElement element, JSObjectRef functionCallback)
-{
-    if (!m_notificationsEventHook)
-        m_notificationsEventHook = SetWinEventHook(EVENT_MIN, EVENT_MAX, GetModuleHandle(0), notificationListenerProc, GetCurrentProcessId(), 0, WINEVENT_INCONTEXT);
-
-    JSValueProtect(frame->globalContext(), functionCallback);
-    m_notificationListeners.add(element, functionCallback);
-}
diff --git a/Tools/DumpRenderTree/win/AccessibilityUIElementWin.cpp b/Tools/DumpRenderTree/win/AccessibilityUIElementWin.cpp
deleted file mode 100644
index 973ba89..0000000
--- a/Tools/DumpRenderTree/win/AccessibilityUIElementWin.cpp
+++ /dev/null
@@ -1,728 +0,0 @@
-/*
- * Copyright (C) 2008 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#include "config.h"
-#include "AccessibilityUIElement.h"
-
-#include "AccessibilityController.h"
-#include "DumpRenderTree.h"
-#include "FrameLoadDelegate.h"
-#include <JavaScriptCore/JSStringRef.h>
-#include <tchar.h>
-#include <string>
-
-using std::wstring;
-
-static COMPtr<IAccessibleComparable> comparableObject(IAccessible* accessible)
-{
-    COMPtr<IServiceProvider> serviceProvider(Query, accessible);
-    if (!serviceProvider)
-        return 0;
-    COMPtr<IAccessibleComparable> comparable;
-    serviceProvider->QueryService(SID_AccessibleComparable, __uuidof(IAccessibleComparable), reinterpret_cast<void**>(&comparable));
-    return comparable;
-}
-
-AccessibilityUIElement::AccessibilityUIElement(PlatformUIElement element)
-    : m_element(element)
-{
-}
-
-AccessibilityUIElement::AccessibilityUIElement(const AccessibilityUIElement& other)
-    : m_element(other.m_element)
-{
-}
-
-AccessibilityUIElement::~AccessibilityUIElement()
-{
-}
-
-bool AccessibilityUIElement::isEqual(AccessibilityUIElement* otherElement)
-{
-    COMPtr<IAccessibleComparable> comparable = comparableObject(m_element.get());
-    COMPtr<IAccessibleComparable> otherComparable = comparableObject(otherElement->m_element.get());
-    if (!comparable || !otherComparable)
-        return false;
-    BOOL isSame = FALSE;
-    if (FAILED(comparable->isSameObject(otherComparable.get(), &isSame)))
-        return false;
-    return isSame;
-}
-
-void AccessibilityUIElement::getLinkedUIElements(Vector<AccessibilityUIElement>&)
-{
-}
-
-void AccessibilityUIElement::getDocumentLinks(Vector<AccessibilityUIElement>&)
-{
-}
-
-void AccessibilityUIElement::getChildren(Vector<AccessibilityUIElement>& children)
-{
-    long childCount;
-    if (FAILED(m_element->get_accChildCount(&childCount)))
-        return;
-    for (long i = 0; i < childCount; ++i)
-        children.append(getChildAtIndex(i));
-}
-
-void AccessibilityUIElement::getChildrenWithRange(Vector<AccessibilityUIElement>& elementVector, unsigned location, unsigned length)
-{
-    long childCount;
-    unsigned appendedCount = 0;
-    if (FAILED(m_element->get_accChildCount(&childCount)))
-        return;
-    for (long i = location; i < childCount && appendedCount < length; ++i, ++appendedCount)
-        elementVector.append(getChildAtIndex(i));
-}
-
-int AccessibilityUIElement::childrenCount()
-{
-    long childCount;
-    m_element->get_accChildCount(&childCount);
-    return childCount;
-}
-
-int AccessibilityUIElement::rowCount()
-{
-    // FIXME: implement
-    return 0;
-}
- 
-int AccessibilityUIElement::columnCount()
-{
-    // FIXME: implement
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::elementAtPoint(int x, int y)
-{
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::linkedUIElementAtIndex(unsigned index)
-{
-    // FIXME: implement
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::getChildAtIndex(unsigned index)
-{
-    COMPtr<IDispatch> child;
-    VARIANT vChild;
-    ::VariantInit(&vChild);
-    V_VT(&vChild) = VT_I4;
-    // In MSAA, index 0 is the object itself.
-    V_I4(&vChild) = index + 1;
-    if (FAILED(m_element->get_accChild(vChild, &child)))
-        return 0;
-    return COMPtr<IAccessible>(Query, child);
-}
-
-unsigned AccessibilityUIElement::indexOfChild(AccessibilityUIElement* element)
-{ 
-    // FIXME: implement
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::allAttributes()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::attributesOfLinkedUIElements()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::attributesOfDocumentLinks()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-AccessibilityUIElement AccessibilityUIElement::titleUIElement()
-{
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::parentElement()
-{
-    COMPtr<IDispatch> parent;
-    m_element->get_accParent(&parent);
-
-    COMPtr<IAccessible> parentAccessible(Query, parent);
-    return parentAccessible;
-}
-
-JSStringRef AccessibilityUIElement::attributesOfChildren()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::parameterizedAttributeNames()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-static VARIANT& self()
-{
-    static VARIANT vSelf;
-    static bool haveInitialized;
-
-    if (!haveInitialized) {
-        ::VariantInit(&vSelf);
-        V_VT(&vSelf) = VT_I4;
-        V_I4(&vSelf) = CHILDID_SELF;
-    }
-    return vSelf;
-}
-
-JSStringRef AccessibilityUIElement::role()
-{
-    VARIANT vRole;
-    if (FAILED(m_element->get_accRole(self(), &vRole)))
-        return JSStringCreateWithCharacters(0, 0);
-
-    ASSERT(V_VT(&vRole) == VT_I4 || V_VT(&vRole) == VT_BSTR);
-
-    wstring result;
-    if (V_VT(&vRole) == VT_I4) {
-        unsigned roleTextLength = ::GetRoleText(V_I4(&vRole), 0, 0) + 1;
-
-        Vector<TCHAR> roleText(roleTextLength);
-
-        ::GetRoleText(V_I4(&vRole), roleText.data(), roleTextLength);
-
-        result = roleText.data();
-    } else if (V_VT(&vRole) == VT_BSTR)
-        result = wstring(V_BSTR(&vRole), ::SysStringLen(V_BSTR(&vRole)));
-
-    ::VariantClear(&vRole);
-
-    return JSStringCreateWithCharacters(result.data(), result.length());
-}
-
-JSStringRef AccessibilityUIElement::subrole()
-{
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::roleDescription()
-{
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::title()
-{
-    BSTR titleBSTR;
-    if (FAILED(m_element->get_accName(self(), &titleBSTR)) || !titleBSTR)
-        return JSStringCreateWithCharacters(0, 0);
-    wstring title(titleBSTR, SysStringLen(titleBSTR));
-    ::SysFreeString(titleBSTR);
-    return JSStringCreateWithCharacters(title.data(), title.length());
-}
-
-JSStringRef AccessibilityUIElement::description()
-{
-    BSTR descriptionBSTR;
-    if (FAILED(m_element->get_accDescription(self(), &descriptionBSTR)) || !descriptionBSTR)
-        return JSStringCreateWithCharacters(0, 0);
-    wstring description(descriptionBSTR, SysStringLen(descriptionBSTR));
-    ::SysFreeString(descriptionBSTR);
-    return JSStringCreateWithCharacters(description.data(), description.length());
-}
-
-JSStringRef AccessibilityUIElement::stringValue()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::language()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::helpText() const
-{
-    return 0;
-}
-
-double AccessibilityUIElement::x()
-{
-    long x, y, width, height;
-    if (FAILED(m_element->accLocation(&x, &y, &width, &height, self())))
-        return 0;
-    return x;
-}
-
-double AccessibilityUIElement::y()
-{
-    long x, y, width, height;
-    if (FAILED(m_element->accLocation(&x, &y, &width, &height, self())))
-        return 0;
-    return y;
-}
-
-double AccessibilityUIElement::width()
-{
-    long x, y, width, height;
-    if (FAILED(m_element->accLocation(&x, &y, &width, &height, self())))
-        return 0;
-    return width;
-}
-
-double AccessibilityUIElement::height()
-{
-    long x, y, width, height;
-    if (FAILED(m_element->accLocation(&x, &y, &width, &height, self())))
-        return 0;
-    return height;
-}
-
-double AccessibilityUIElement::clickPointX()
-{
-    return 0;
-}
-
-double AccessibilityUIElement::clickPointY()
-{
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::valueDescription()
-{
-    return 0;
-}
-
-static DWORD accessibilityState(COMPtr<IAccessible> element)
-{
-    VARIANT state;
-    element->get_accState(self(), &state);
-
-    ASSERT(V_VT(&state) == VT_I4);
-
-    DWORD result = state.lVal;
-    VariantClear(&state);
-
-    return result;
-}
-
-bool AccessibilityUIElement::isFocused() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isSelected() const
-{
-    DWORD state = accessibilityState(m_element);
-    return (state & STATE_SYSTEM_SELECTED) == STATE_SYSTEM_SELECTED;
-}
-
-int AccessibilityUIElement::hierarchicalLevel() const
-{
-    return 0;
-}
-
-bool AccessibilityUIElement::ariaIsGrabbed() const
-{
-    return false;
-}
- 
-JSStringRef AccessibilityUIElement::ariaDropEffects() const
-{
-    return 0;
-}
-
-bool AccessibilityUIElement::isExpanded() const
-{
-    return false;
-}
-
-bool AccessibilityUIElement::isChecked() const
-{
-    VARIANT vState;
-    if (FAILED(m_element->get_accState(self(), &vState)))
-        return false;
-
-    return vState.lVal & STATE_SYSTEM_CHECKED;
-}
-
-JSStringRef AccessibilityUIElement::orientation() const
-{
-    return 0;
-}
-
-double AccessibilityUIElement::intValue() const
-{
-    BSTR valueBSTR;
-    if (FAILED(m_element->get_accValue(self(), &valueBSTR)) || !valueBSTR)
-        return 0;
-    wstring value(valueBSTR, SysStringLen(valueBSTR));
-    ::SysFreeString(valueBSTR);
-    TCHAR* ignored;
-    return _tcstod(value.data(), &ignored);
-}
-
-double AccessibilityUIElement::minValue()
-{
-    return 0;
-}
-
-double AccessibilityUIElement::maxValue()
-{
-    return 0;
-}
-
-bool AccessibilityUIElement::isPressActionSupported()
-{
-    return false;
-}
-
-bool AccessibilityUIElement::isIncrementActionSupported()
-{
-    return false;
-}
-
-bool AccessibilityUIElement::isDecrementActionSupported()
-{
-    return false;
-}
-
-bool AccessibilityUIElement::isEnabled()
-{
-    DWORD state = accessibilityState(m_element);
-    return (state & STATE_SYSTEM_UNAVAILABLE) != STATE_SYSTEM_UNAVAILABLE;
-}
-
-bool AccessibilityUIElement::isRequired() const
-{
-    return false;
-}
-
-
-int AccessibilityUIElement::insertionPointLineNumber()
-{
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::attributesOfColumnHeaders()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::attributesOfRowHeaders()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::attributesOfColumns()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::attributesOfRows()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::attributesOfVisibleCells()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::attributesOfHeader()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-int AccessibilityUIElement::indexInTable()
-{
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::rowIndexRange()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::columnIndexRange()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-int AccessibilityUIElement::lineForIndex(int)
-{
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::boundsForRange(unsigned location, unsigned length)
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::stringForRange(unsigned, unsigned)
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::attributedStringForRange(unsigned, unsigned)
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-bool AccessibilityUIElement::attributedStringRangeIsMisspelled(unsigned, unsigned)
-{
-    return false;
-}
-
-AccessibilityUIElement AccessibilityUIElement::uiElementForSearchPredicate(AccessibilityUIElement* startElement, bool isDirectionNext, JSStringRef searchKey, JSStringRef searchText)
-{
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::cellForColumnAndRow(unsigned column, unsigned row)
-{
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::selectedTextRange()
-{
-    return JSStringCreateWithCharacters(0, 0);    
-}
-
-void AccessibilityUIElement::setSelectedTextRange(unsigned location, unsigned length)
-{
-}
-
-JSStringRef AccessibilityUIElement::stringAttributeValue(JSStringRef attribute)
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-double AccessibilityUIElement::numberAttributeValue(JSStringRef attribute)
-{
-    // FIXME: implement
-    return 0;
-}
-
-bool AccessibilityUIElement::boolAttributeValue(JSStringRef attribute)
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isAttributeSettable(JSStringRef attribute)
-{
-    return false;
-}
-
-bool AccessibilityUIElement::isAttributeSupported(JSStringRef attribute)
-{
-    return false;
-}
-
-void AccessibilityUIElement::increment()
-{
-}
-
-void AccessibilityUIElement::decrement()
-{
-}
-
-void AccessibilityUIElement::showMenu()
-{
-    ASSERT(hasPopup());
-    m_element->accDoDefaultAction(self());
-}
-
-void AccessibilityUIElement::press()
-{
-    // FIXME: implement
-}
-
-AccessibilityUIElement AccessibilityUIElement::disclosedRowAtIndex(unsigned index)
-{
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::ariaOwnsElementAtIndex(unsigned index)
-{
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::ariaFlowToElementAtIndex(unsigned index)
-{
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::selectedRowAtIndex(unsigned index)
-{
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::rowAtIndex(unsigned index)
-{
-    return 0;
-}
-
-AccessibilityUIElement AccessibilityUIElement::disclosedByRow()
-{
-    return 0;
-}
-
-JSStringRef AccessibilityUIElement::accessibilityValue() const
-{
-    BSTR valueBSTR;
-    if (FAILED(m_element->get_accValue(self(), &valueBSTR)) || !valueBSTR)
-        return JSStringCreateWithCharacters(0, 0);
-
-    wstring value(valueBSTR, SysStringLen(valueBSTR));
-    ::SysFreeString(valueBSTR);
-
-    return JSStringCreateWithCharacters(value.data(), value.length());
-}
-
-
-JSStringRef AccessibilityUIElement::documentEncoding()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::documentURI()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSStringRef AccessibilityUIElement::url()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-bool AccessibilityUIElement::addNotificationListener(JSObjectRef functionCallback)
-{
-    if (!functionCallback)
-        return false;
-
-    sharedFrameLoadDelegate->accessibilityController()->winAddNotificationListener(m_element, functionCallback);
-    return true;
-}
-
-void AccessibilityUIElement::removeNotificationListener()
-{
-    // FIXME: implement
-}
-
-bool AccessibilityUIElement::isFocusable() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isSelectable() const
-{
-    DWORD state = accessibilityState(m_element);
-    return (state & STATE_SYSTEM_SELECTABLE) == STATE_SYSTEM_SELECTABLE;
-}
-
-bool AccessibilityUIElement::isMultiSelectable() const
-{
-    DWORD multiSelectable = STATE_SYSTEM_EXTSELECTABLE | STATE_SYSTEM_MULTISELECTABLE;
-    DWORD state = accessibilityState(m_element);
-    return (state & multiSelectable) == multiSelectable;
-}
-
-bool AccessibilityUIElement::isSelectedOptionActive() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isVisible() const
-{
-    DWORD state = accessibilityState(m_element);
-    return (state & STATE_SYSTEM_INVISIBLE) != STATE_SYSTEM_INVISIBLE;
-}
-
-bool AccessibilityUIElement::isOffScreen() const
-{
-    DWORD state = accessibilityState(m_element);
-    return (state & STATE_SYSTEM_OFFSCREEN) == STATE_SYSTEM_OFFSCREEN;
-}
-
-bool AccessibilityUIElement::isCollapsed() const
-{
-    DWORD state = accessibilityState(m_element);
-    return (state & STATE_SYSTEM_COLLAPSED) == STATE_SYSTEM_COLLAPSED;
-}
-
-bool AccessibilityUIElement::isIgnored() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::hasPopup() const
-{
-    DWORD state = accessibilityState(m_element);
-    return (state & STATE_SYSTEM_HASPOPUP) == STATE_SYSTEM_HASPOPUP;
-}
-
-void AccessibilityUIElement::takeFocus()
-{
-    m_element->accSelect(SELFLAG_TAKEFOCUS, self());
-}
-
-void AccessibilityUIElement::takeSelection()
-{
-    m_element->accSelect(SELFLAG_TAKESELECTION, self());
-}
-
-void AccessibilityUIElement::addSelection()
-{
-    m_element->accSelect(SELFLAG_ADDSELECTION, self());
-}
-
-void AccessibilityUIElement::removeSelection()
-{
-    m_element->accSelect(SELFLAG_REMOVESELECTION, self());
-}
-
-void AccessibilityUIElement::scrollToMakeVisible()
-{
-    // FIXME: implement
-}
-
-void AccessibilityUIElement::scrollToMakeVisibleWithSubFocus(int x, int y, int width, int height)
-{
-    // FIXME: implement
-}
-
-void AccessibilityUIElement::scrollToGlobalPoint(int x, int y)
-{
-    // FIXME: implement
-}
diff --git a/Tools/DumpRenderTree/win/DRTDataObject.cpp b/Tools/DumpRenderTree/win/DRTDataObject.cpp
deleted file mode 100644
index b350453..0000000
--- a/Tools/DumpRenderTree/win/DRTDataObject.cpp
+++ /dev/null
@@ -1,381 +0,0 @@
-/*
- * Copyright (C) 2007 Apple Inc.  All rights reserved.
- * Copyright (C) 2012 Baidu Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#include "config.h"
-#include "DRTDataObject.h"
-
-FORMATETC* cfHDropFormat()
-{
-    static FORMATETC urlFormat = {CF_HDROP, 0, DVASPECT_CONTENT, -1, TYMED_HGLOBAL};
-    return &urlFormat;
-}
-
-FORMATETC* cfFileNameWFormat()
-{
-    static UINT cf = RegisterClipboardFormat(L"FileNameW");
-    static FORMATETC urlFormat = {cf, 0, DVASPECT_CONTENT, -1, TYMED_HGLOBAL};
-    return &urlFormat;
-}
-
-FORMATETC* cfUrlWFormat()
-{
-    static UINT cf = RegisterClipboardFormat(L"UniformResourceLocatorW");
-    static FORMATETC urlFormat = {cf, 0, DVASPECT_CONTENT, -1, TYMED_HGLOBAL};
-    return &urlFormat;
-}
-
-class WCEnumFormatEtc : public IEnumFORMATETC {
-public:
-    explicit WCEnumFormatEtc(const Vector<FORMATETC>& formats);
-    explicit WCEnumFormatEtc(const Vector<FORMATETC*>& formats);
-
-    // IUnknown members
-    STDMETHOD(QueryInterface)(REFIID, void**);
-    STDMETHOD_(ULONG, AddRef)();
-    STDMETHOD_(ULONG, Release)();
-
-    // IEnumFORMATETC members
-    STDMETHOD(Next)(ULONG, LPFORMATETC, ULONG*);
-    STDMETHOD(Skip)(ULONG);
-    STDMETHOD(Reset)();
-    STDMETHOD(Clone)(IEnumFORMATETC**);
-
-private:
-    long m_ref;
-    Vector<FORMATETC> m_formats;
-    size_t m_current;
-};
-
-WCEnumFormatEtc::WCEnumFormatEtc(const Vector<FORMATETC>& formats)
-    : m_ref(1)
-    , m_current(0)
-    , m_formats(formats)
-{
-}
-
-WCEnumFormatEtc::WCEnumFormatEtc(const Vector<FORMATETC*>& formats)
-    : m_ref(1)
-    , m_current(0)
-{
-    for (size_t i = 0; i < formats.size(); ++i)
-        m_formats.append(*formats[i]);
-}
-
-STDMETHODIMP WCEnumFormatEtc::QueryInterface(REFIID riid, void** ppvObject)
-{
-    *ppvObject = 0;
-    if (IsEqualIID(riid, IID_IUnknown) || IsEqualIID(riid, IID_IEnumFORMATETC)) {
-        *ppvObject = this;
-        AddRef();
-        return S_OK;
-    }
-
-    return E_NOINTERFACE;
-}
-
-STDMETHODIMP_(ULONG) WCEnumFormatEtc::AddRef()
-{
-    return InterlockedIncrement(&m_ref);
-}
-
-STDMETHODIMP_(ULONG) WCEnumFormatEtc::Release()
-{
-    long refCount = InterlockedDecrement(&m_ref);
-    if (!refCount)
-        delete this;
-    return refCount;
-}
-
-STDMETHODIMP WCEnumFormatEtc::Next(ULONG celt, LPFORMATETC lpFormatEtc, ULONG* pceltFetched)
-{
-    if (pceltFetched)
-        *pceltFetched = 0;
-
-    ULONG cReturn = celt;
-
-    if (celt <= 0 || !lpFormatEtc || m_current >= m_formats.size())
-        return S_FALSE;
-
-    if (!pceltFetched && celt != 1) // pceltFetched can be 0 only for 1 item request
-        return S_FALSE;
-
-    while (m_current < m_formats.size() && cReturn > 0) {
-        *lpFormatEtc++ = m_formats[m_current++];
-        --cReturn;
-    }
-    if (pceltFetched)
-        *pceltFetched = celt - cReturn;
-
-    return !cReturn ? S_OK : S_FALSE;
-}
-
-STDMETHODIMP WCEnumFormatEtc::Skip(ULONG celt)
-{
-    if ((m_current + celt) >= m_formats.size())
-        return S_FALSE;
-    m_current += celt;
-    return S_OK;
-}
-
-STDMETHODIMP WCEnumFormatEtc::Reset()
-{
-    m_current = 0;
-    return S_OK;
-}
-
-STDMETHODIMP WCEnumFormatEtc::Clone(IEnumFORMATETC** ppCloneEnumFormatEtc)
-{
-    if (!ppCloneEnumFormatEtc)
-        return E_POINTER;
-
-    WCEnumFormatEtc* newEnum = new WCEnumFormatEtc(m_formats);
-    if (!newEnum)
-        return E_OUTOFMEMORY;
-
-    newEnum->AddRef();
-    newEnum->m_current = m_current;
-    *ppCloneEnumFormatEtc = newEnum;
-    return S_OK;
-}
-
-//////////////////////////////////////////////////////////////////////////
-HRESULT DRTDataObject::createInstance(DRTDataObject** result)
-{
-    if (!result)
-        return E_POINTER;
-    *result = new DRTDataObject();
-    return S_OK;
-}
-
-DRTDataObject::DRTDataObject()
-    : m_ref(1)
-{
-}
-
-DRTDataObject::~DRTDataObject()
-{
-    for (size_t i = 0; i < m_medium.size(); ++i) {
-        ReleaseStgMedium(m_medium[i]);
-        delete m_medium[i];
-    }
-    WTF::deleteAllValues(m_formats);
-}
-
-STDMETHODIMP DRTDataObject::QueryInterface(REFIID riid, void** ppvObject)
-{
-    *ppvObject = 0;
-    if (IsEqualIID(riid, IID_IUnknown) || IsEqualIID(riid, IID_IDataObject))
-        *ppvObject = this;
-
-    if (*ppvObject) {
-        AddRef();
-        return S_OK;
-    }
-    return E_NOINTERFACE;
-}
-
-STDMETHODIMP_(ULONG) DRTDataObject::AddRef()
-{
-    return InterlockedIncrement(&m_ref);
-}
-
-STDMETHODIMP_(ULONG) DRTDataObject::Release()
-{
-    long refCount = InterlockedDecrement(&m_ref);
-    if (!refCount)
-        delete this;
-    return refCount;
-}
-
-STDMETHODIMP DRTDataObject::GetData(FORMATETC* pformatetcIn, STGMEDIUM* pmedium)
-{ 
-    if (!pformatetcIn || !pmedium)
-        return E_POINTER;
-    pmedium->hGlobal = 0;
-
-    for (size_t i = 0; i < m_formats.size(); ++i) {
-        if (pformatetcIn->lindex == m_formats[i]->lindex && pformatetcIn->dwAspect == m_formats[i]->dwAspect && pformatetcIn->cfFormat == m_formats[i]->cfFormat) {
-            CopyMedium(pmedium, m_medium[i], m_formats[i]);
-            return S_OK;
-        }
-    }
-    return DV_E_FORMATETC;
-}
-
-STDMETHODIMP DRTDataObject::GetDataHere(FORMATETC*, STGMEDIUM*)
-{ 
-    return E_NOTIMPL;
-}
-
-STDMETHODIMP DRTDataObject::QueryGetData(FORMATETC* pformatetc)
-{ 
-    if (!pformatetc)
-        return E_POINTER;
-
-    if (!(DVASPECT_CONTENT & pformatetc->dwAspect))
-        return (DV_E_DVASPECT);
-
-    for (size_t i = 0; i < m_formats.size(); ++i) {
-        if (pformatetc->tymed & m_formats[i]->tymed) {
-            if (pformatetc->cfFormat == m_formats[i]->cfFormat)
-                return S_OK;
-        }
-    }
-    return DV_E_TYMED;
-}
-
-STDMETHODIMP DRTDataObject::GetCanonicalFormatEtc(FORMATETC*, FORMATETC*)
-{ 
-    return DATA_S_SAMEFORMATETC;
-}
-
-STDMETHODIMP DRTDataObject::SetData(FORMATETC* pformatetc, STGMEDIUM* pmedium, BOOL fRelease)
-{ 
-    if (!pformatetc || !pmedium)
-        return E_POINTER;
-
-    FORMATETC* formatetc = new FORMATETC;
-    if (!formatetc)
-        return E_OUTOFMEMORY;
-
-    STGMEDIUM* pStgMed = new STGMEDIUM;
-
-    if (!pStgMed) {
-        delete formatetc;
-        return E_OUTOFMEMORY;
-    }
-
-    ZeroMemory(formatetc, sizeof(FORMATETC));
-    ZeroMemory(pStgMed, sizeof(STGMEDIUM));
-
-    *formatetc = *pformatetc;
-    m_formats.append(formatetc);
-
-    if (fRelease)
-        *pStgMed = *pmedium;
-    else
-        CopyMedium(pStgMed, pmedium, pformatetc);
-    m_medium.append(pStgMed);
-
-    return S_OK;
-}
-
-void DRTDataObject::CopyMedium(STGMEDIUM* pMedDest, STGMEDIUM* pMedSrc, FORMATETC* pFmtSrc)
-{
-    switch (pMedSrc->tymed) {
-#if !OS(WINCE)
-    case TYMED_HGLOBAL:
-        pMedDest->hGlobal = static_cast<HGLOBAL>(OleDuplicateData(pMedSrc->hGlobal, pFmtSrc->cfFormat, 0));
-        break;
-    case TYMED_GDI:
-        pMedDest->hBitmap = static_cast<HBITMAP>(OleDuplicateData(pMedSrc->hBitmap, pFmtSrc->cfFormat, 0));
-        break;
-    case TYMED_MFPICT:
-        pMedDest->hMetaFilePict = static_cast<HMETAFILEPICT>(OleDuplicateData(pMedSrc->hMetaFilePict, pFmtSrc->cfFormat, 0));
-        break;
-    case TYMED_ENHMF:
-        pMedDest->hEnhMetaFile = static_cast<HENHMETAFILE>(OleDuplicateData(pMedSrc->hEnhMetaFile, pFmtSrc->cfFormat, 0));
-        break;
-    case TYMED_FILE:
-        pMedSrc->lpszFileName = static_cast<LPOLESTR>(OleDuplicateData(pMedSrc->lpszFileName, pFmtSrc->cfFormat, 0));
-        break;
-#endif
-    case TYMED_ISTREAM:
-        pMedDest->pstm = pMedSrc->pstm;
-        pMedSrc->pstm->AddRef();
-        break;
-    case TYMED_ISTORAGE:
-        pMedDest->pstg = pMedSrc->pstg;
-        pMedSrc->pstg->AddRef();
-        break;
-    default:
-        break;
-    }
-    pMedDest->tymed = pMedSrc->tymed;
-    pMedDest->pUnkForRelease = 0;
-    if (pMedSrc->pUnkForRelease) {
-        pMedDest->pUnkForRelease = pMedSrc->pUnkForRelease;
-        pMedSrc->pUnkForRelease->AddRef();
-    }
-}
-STDMETHODIMP DRTDataObject::EnumFormatEtc(DWORD dwDirection, IEnumFORMATETC** ppenumFormatEtc)
-{ 
-    if (!ppenumFormatEtc)
-        return E_POINTER;
-
-    *ppenumFormatEtc = 0;
-    switch (dwDirection) {
-    case DATADIR_GET:
-        *ppenumFormatEtc = new WCEnumFormatEtc(m_formats);
-        if (!(*ppenumFormatEtc))
-            return E_OUTOFMEMORY;
-        break;
-
-    case DATADIR_SET:
-    default:
-        return E_NOTIMPL;
-        break;
-    }
-
-    return S_OK;
-}
-
-STDMETHODIMP DRTDataObject::DAdvise(FORMATETC*, DWORD, IAdviseSink*, DWORD*)
-{ 
-    return OLE_E_ADVISENOTSUPPORTED;
-}
-
-STDMETHODIMP DRTDataObject::DUnadvise(DWORD)
-{
-    return E_NOTIMPL;
-}
-
-HRESULT STDMETHODCALLTYPE DRTDataObject::EnumDAdvise(IEnumSTATDATA**)
-{
-    return OLE_E_ADVISENOTSUPPORTED;
-}
-
-void DRTDataObject::clearData(CLIPFORMAT format)
-{
-    size_t position = 0;
-    while (position < m_formats.size()) {
-        if (m_formats[position]->cfFormat == format) {
-            FORMATETC* current = m_formats[position];
-            m_formats[position] = m_formats[m_formats.size() - 1];
-            m_formats[m_formats.size() - 1] = 0;
-            m_formats.removeLast();
-            delete current;
-            STGMEDIUM* medium = m_medium[position];
-            m_medium[position] = m_medium[m_medium.size() - 1];
-            m_medium[m_medium.size() - 1] = 0;
-            m_medium.removeLast();
-            ReleaseStgMedium(medium);
-            delete medium;
-            continue;
-        }
-        position++;
-    }
-}
diff --git a/Tools/DumpRenderTree/win/DRTDataObject.h b/Tools/DumpRenderTree/win/DRTDataObject.h
deleted file mode 100644
index b772b25..0000000
--- a/Tools/DumpRenderTree/win/DRTDataObject.h
+++ /dev/null
@@ -1,71 +0,0 @@
-/*
- * Copyright (C) 2007 Apple Inc.  All rights reserved.
- * Copyright (C) 2012 Baidu Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#ifndef DRTDataObject_h
-#define DRTDataObject_h
-
-#include <ShlObj.h>
-#include <objidl.h>
-#include <wtf/Vector.h>
-
-FORMATETC* cfHDropFormat();
-
-FORMATETC* cfFileNameWFormat();
-
-FORMATETC* cfUrlWFormat();
-
-class DRTDataObject : public IDataObject {
-public:
-    void CopyMedium(STGMEDIUM* pMedDest, STGMEDIUM* pMedSrc, FORMATETC* pFmtSrc);
-
-    // IUnknown
-    virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppvObject);        
-    virtual ULONG STDMETHODCALLTYPE AddRef();
-    virtual ULONG STDMETHODCALLTYPE Release();
-
-    // IDataObject
-    virtual HRESULT STDMETHODCALLTYPE GetData(FORMATETC* pformatIn, STGMEDIUM* pmedium);
-    virtual HRESULT STDMETHODCALLTYPE GetDataHere(FORMATETC* pformat, STGMEDIUM* pmedium);
-    virtual HRESULT STDMETHODCALLTYPE QueryGetData(FORMATETC* pformat);
-    virtual HRESULT STDMETHODCALLTYPE GetCanonicalFormatEtc(FORMATETC* pformatectIn, FORMATETC* pformatOut);
-    virtual HRESULT STDMETHODCALLTYPE SetData(FORMATETC* pformat, STGMEDIUM*pmedium, BOOL release);
-    virtual HRESULT STDMETHODCALLTYPE EnumFormatEtc(DWORD dwDirection, IEnumFORMATETC** ppenumFormatEtc);
-    virtual HRESULT STDMETHODCALLTYPE DAdvise(FORMATETC*, DWORD, IAdviseSink*, DWORD*);
-    virtual HRESULT STDMETHODCALLTYPE DUnadvise(DWORD);
-    virtual HRESULT STDMETHODCALLTYPE EnumDAdvise(IEnumSTATDATA**);
-
-    void clearData(CLIPFORMAT);
-    
-    static HRESULT createInstance(DRTDataObject**);
-private:
-    DRTDataObject();
-    ~DRTDataObject();
-    long m_ref;
-    Vector<FORMATETC*> m_formats;
-    Vector<STGMEDIUM*> m_medium;
-};
-
-#endif // DRTDataObject_h
diff --git a/Tools/DumpRenderTree/win/DRTDesktopNotificationPresenter.cpp b/Tools/DumpRenderTree/win/DRTDesktopNotificationPresenter.cpp
deleted file mode 100644
index a7bfc6d..0000000
--- a/Tools/DumpRenderTree/win/DRTDesktopNotificationPresenter.cpp
+++ /dev/null
@@ -1,145 +0,0 @@
-/*
- * Copyright (C) 2009 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *     * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "DRTDesktopNotificationPresenter.h"
-
-#include "DumpRenderTree.h"
-#include "TestRunner.h"
-#include <JavaScriptCore/JSStringRef.h>
-#include <JavaScriptCore/JSStringRefBSTR.h>
-#include <WebCore/NotificationClient.h>
-
-DRTDesktopNotificationPresenter::DRTDesktopNotificationPresenter()
-    : m_refCount(1) {} 
-
-HRESULT STDMETHODCALLTYPE DRTDesktopNotificationPresenter::QueryInterface(REFIID riid, void** ppvObject)
-{
-    *ppvObject = 0;
-    if (IsEqualGUID(riid, IID_IUnknown))
-        *ppvObject = static_cast<DRTDesktopNotificationPresenter*>(this);
-    else if (IsEqualGUID(riid, IID_IWebDesktopNotificationsDelegate))
-        *ppvObject = static_cast<DRTDesktopNotificationPresenter*>(this);
-    else
-        return E_NOINTERFACE;
-
-    AddRef();
-    return S_OK;
-}
-
-ULONG STDMETHODCALLTYPE DRTDesktopNotificationPresenter::AddRef()
-{
-    return ++m_refCount;
-}
-
-ULONG STDMETHODCALLTYPE DRTDesktopNotificationPresenter::Release()
-{
-    ULONG newRef = --m_refCount;
-    if (!newRef)
-        delete(this);
-
-    return newRef;
-}
-
-HRESULT STDMETHODCALLTYPE DRTDesktopNotificationPresenter::showDesktopNotification(
-    /* [in] */ IWebDesktopNotification* notification)
-{
-    BSTR title, text, url;
-    BOOL html;
-
-    if (!notification->isHTML(&html) && html) {
-        notification->contentsURL(&url);    
-        printf("DESKTOP NOTIFICATION: contents at %S\n", url ? url : L"");
-    } else {
-        notification->iconURL(&url);
-        notification->title(&title);
-        notification->text(&text);
-        printf("DESKTOP NOTIFICATION: icon %S, title %S, text %S\n", 
-            url ? url : L"", 
-            title ? title : L"", 
-            text ? text : L"");
-    }
-
-    // In this stub implementation, the notification is displayed immediately;
-    // we dispatch the display event to mimic that.
-    notification->notifyDisplay();
-
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE DRTDesktopNotificationPresenter::cancelDesktopNotification(
-    /* [in] */ IWebDesktopNotification* notification)
-{
-    BSTR identifier;
-    BOOL html;
-    notification->isHTML(&html);
-    if (html)
-        notification->contentsURL(&identifier);
-    else
-        notification->title(&identifier);
-
-    printf("DESKTOP NOTIFICATION CLOSED: %S\n", identifier ? identifier : L"");
-    notification->notifyClose(false);
-
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE DRTDesktopNotificationPresenter::notificationDestroyed(
-    /* [in] */ IWebDesktopNotification* notification)
-{
-    // Since in these tests events happen immediately, we don't hold on to
-    // Notification pointers.  So there's no cleanup to do.
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE DRTDesktopNotificationPresenter::checkNotificationPermission(
-        /* [in] */ BSTR origin, 
-        /* [out, retval] */ int* result)
-{
-#if ENABLE(NOTIFICATIONS) || ENABLE(LEGACY_NOTIFICATIONS)
-    JSStringRef jsOrigin = JSStringCreateWithBSTR(origin);
-    bool allowed = ::gTestRunner->checkDesktopNotificationPermission(jsOrigin);
-
-    if (allowed)
-        *result = WebCore::NotificationClient::PermissionAllowed;
-    else
-        *result = WebCore::NotificationClient::PermissionDenied;
-
-    JSStringRelease(jsOrigin);
-#endif
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE DRTDesktopNotificationPresenter::requestNotificationPermission(
-        /* [in] */ BSTR origin)
-{
-    printf("DESKTOP NOTIFICATION PERMISSION REQUESTED: %S\n", origin ? origin : L"");
-    return S_OK;
-}
diff --git a/Tools/DumpRenderTree/win/DRTDesktopNotificationPresenter.h b/Tools/DumpRenderTree/win/DRTDesktopNotificationPresenter.h
deleted file mode 100644
index 5679845..0000000
--- a/Tools/DumpRenderTree/win/DRTDesktopNotificationPresenter.h
+++ /dev/null
@@ -1,66 +0,0 @@
-/*
- * Copyright (C) 2005, 2006, 2007 Apple Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef DRTDesktopNotificationPresenter_h
-#define DRTDesktopNotificationPresenter_h
-
-#include <WebKit/WebKit.h>
-#include <wtf/OwnPtr.h>
-#include <windef.h>
-
-class DRTDesktopNotificationPresenter : public IWebDesktopNotificationsDelegate {
-public:
-    DRTDesktopNotificationPresenter();
-
-    // IUnknown
-    virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppvObject);
-    virtual ULONG STDMETHODCALLTYPE AddRef(void);
-    virtual ULONG STDMETHODCALLTYPE Release(void);
-
-    // IWebDesktopNotificationsDelegate
-    virtual HRESULT STDMETHODCALLTYPE showDesktopNotification(
-        /* [in] */ IWebDesktopNotification* notification);
-
-    virtual HRESULT STDMETHODCALLTYPE cancelDesktopNotification(
-        /* [in] */ IWebDesktopNotification* notification);
-
-    virtual HRESULT STDMETHODCALLTYPE notificationDestroyed(
-        /* [in] */ IWebDesktopNotification* notification);
-
-    virtual HRESULT STDMETHODCALLTYPE checkNotificationPermission(
-        /* [in] */ BSTR origin, 
-        /* [out, retval] */ int* result);
-
-    virtual HRESULT STDMETHODCALLTYPE requestNotificationPermission(
-        /* [in] */ BSTR origin);
-
-private:
-    ULONG m_refCount;
-};
-
-#endif
diff --git a/Tools/DumpRenderTree/win/DRTDropSource.cpp b/Tools/DumpRenderTree/win/DRTDropSource.cpp
deleted file mode 100644
index 08b1be8..0000000
--- a/Tools/DumpRenderTree/win/DRTDropSource.cpp
+++ /dev/null
@@ -1,86 +0,0 @@
-/*
-* Copyright (C) 2012 Baidu Inc. All rights reserved.
-*
-* Redistribution and use in source and binary forms, with or without
-* modification, are permitted provided that the following conditions
-* are met:
-* 1. Redistributions of source code must retain the above copyright
-*    notice, this list of conditions and the following disclaimer.
-* 2. Redistributions in binary form must reproduce the above copyright
-*    notice, this list of conditions and the following disclaimer in the
-*    documentation and/or other materials provided with the distribution.
-*
-* THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
-* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-* PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
-* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-*/
-
-#include "config.h"
-#include "DRTDropSource.h"
-
-DRTDropSource::DRTDropSource()
-    : m_ref(1)
-    , m_dropped(false)
-{
-}
-
-DRTDropSource::~DRTDropSource()
-{
-}
-
-STDMETHODIMP DRTDropSource::QueryInterface(REFIID riid, void** ppvObject)
-{
-    *ppvObject = 0;
-    if (IsEqualIID(riid, IID_IUnknown) || IsEqualIID(riid, IID_IDropSource)) {
-        *ppvObject = this;
-        AddRef();
-
-        return S_OK;
-    }
-
-    return E_NOINTERFACE;
-}
-
-STDMETHODIMP_(ULONG) DRTDropSource::AddRef()
-{
-    return InterlockedIncrement(&m_ref);
-}
-
-STDMETHODIMP_(ULONG) DRTDropSource::Release()
-{
-    long refCount = InterlockedDecrement(&m_ref);
-    if (!refCount)
-        delete this;
-    return refCount;
-}
-
-HRESULT DRTDropSource::createInstance(IDropSource** result)
-{
-    if (!result)
-        return E_INVALIDARG;
-    *result = new DRTDropSource;
-    return S_OK;
-}
-
-STDMETHODIMP DRTDropSource::QueryContinueDrag(BOOL fEscapePressed, DWORD grfKeyState)
-{
-    if (fEscapePressed || !(grfKeyState & (MK_LBUTTON | MK_RBUTTON))) {
-        m_dropped = !fEscapePressed;
-        return fEscapePressed ? DRAGDROP_S_CANCEL : DRAGDROP_S_DROP;
-    }
-
-    return S_OK;
-}
-
-STDMETHODIMP DRTDropSource::GiveFeedback(DWORD dwEffect)
-{
-    return DRAGDROP_S_USEDEFAULTCURSORS;
-}
diff --git a/Tools/DumpRenderTree/win/DRTDropSource.h b/Tools/DumpRenderTree/win/DRTDropSource.h
deleted file mode 100644
index f37f2b7..0000000
--- a/Tools/DumpRenderTree/win/DRTDropSource.h
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
-* Copyright (C) 2012 Baidu Inc. All rights reserved.
-*
-* Redistribution and use in source and binary forms, with or without
-* modification, are permitted provided that the following conditions
-* are met:
-* 1. Redistributions of source code must retain the above copyright
-*    notice, this list of conditions and the following disclaimer.
-* 2. Redistributions in binary form must reproduce the above copyright
-*    notice, this list of conditions and the following disclaimer in the
-*    documentation and/or other materials provided with the distribution.
-*
-* THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
-* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-* PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
-* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-*/
-
-#ifndef DRTDropSource_h
-#define DRTDropSource_h
-
-#include <ShlObj.h>
-#include <windows.h>
-
-class DRTDropSource : public IDropSource {
-public:
-    virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppvObject);        
-    virtual ULONG STDMETHODCALLTYPE AddRef();
-    virtual ULONG STDMETHODCALLTYPE Release();
-    virtual HRESULT STDMETHODCALLTYPE QueryContinueDrag(BOOL fEscapePressed, DWORD grfKeyState);
-    virtual HRESULT STDMETHODCALLTYPE GiveFeedback(DWORD dwEffect);
-
-    static HRESULT createInstance(IDropSource** result);
-private:
-    DRTDropSource();
-    ~DRTDropSource();
-    long m_ref;
-    bool m_dropped;
-};
-
-#endif // DRTDropSource_h
diff --git a/Tools/DumpRenderTree/win/DraggingInfo.h b/Tools/DumpRenderTree/win/DraggingInfo.h
deleted file mode 100644
index 98982bc..0000000
--- a/Tools/DumpRenderTree/win/DraggingInfo.h
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
- * Copyright (C) 2007 Apple Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef DraggingInfo_h
-#define DraggingInfo_h
-
-#include <objidl.h>
-
-class DraggingInfo {
-public:
-    DraggingInfo(IDataObject* object, IDropSource* source)
-        : m_object(object)
-        , m_source(source)
-        , m_performedDropEffect(DROPEFFECT_NONE)
-    {
-        m_object->AddRef();
-        m_source->AddRef();
-    }
-
-    ~DraggingInfo()
-    {
-        if (m_object)
-            m_object->Release();
-        m_object = 0;
-        if (m_source)
-            m_source->Release();
-        m_source = 0;
-    }
-
-    IDataObject* dataObject() const { return m_object; }
-    IDropSource* dropSource() const { return m_source; }
-
-    DWORD performedDropEffect() const { return m_performedDropEffect; }
-    void setPerformedDropEffect(DWORD effect) { m_performedDropEffect = effect; }
-
-private:
-    IDataObject* m_object;
-    IDropSource* m_source;
-    DWORD m_performedDropEffect;
-};
-
-#endif // !defined(DraggingInfo_h)
diff --git a/Tools/DumpRenderTree/win/DumpRenderTree.cpp b/Tools/DumpRenderTree/win/DumpRenderTree.cpp
deleted file mode 100644
index 89fa9f7..0000000
--- a/Tools/DumpRenderTree/win/DumpRenderTree.cpp
+++ /dev/null
@@ -1,1449 +0,0 @@
-/*
- * Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "DumpRenderTree.h"
-
-#include "EditingDelegate.h"
-#include "FrameLoadDelegate.h"
-#include "HistoryDelegate.h"
-#include "PixelDumpSupport.h"
-#include "PolicyDelegate.h"
-#include "ResourceLoadDelegate.h"
-#include "TestRunner.h"
-#include "UIDelegate.h"
-#include "WebCoreTestSupport.h"
-#include "WorkQueueItem.h"
-#include "WorkQueue.h"
-
-#include <comutil.h>
-#include <fcntl.h>
-#include <io.h>
-#include <math.h>
-#include <pthread.h>
-#include <shlwapi.h>
-#include <stdio.h>
-#include <string.h>
-#include <tchar.h>
-#include <wtf/RetainPtr.h>
-#include <wtf/Vector.h>
-#include <windows.h>
-#include <CoreFoundation/CoreFoundation.h>
-#include <JavaScriptCore/JavaScriptCore.h>
-#include <WebKit/WebKit.h>
-#include <WebKit/WebKitCOMAPI.h>
-
-#if USE(CFNETWORK)
-#include <CFNetwork/CFURLCachePriv.h>
-#endif
-
-#if USE(CFNETWORK)
-#include <CFNetwork/CFHTTPCookiesPriv.h>
-#endif
-
-using namespace std;
-
-#ifdef DEBUG_ALL
-const LPWSTR TestPluginDir = L"TestNetscapePlugin_Debug";
-#else
-const LPWSTR TestPluginDir = L"TestNetscapePlugin";
-#endif
-
-static LPCWSTR fontsEnvironmentVariable = L"WEBKIT_TESTFONTS";
-#define USE_MAC_FONTS
-
-const LPCWSTR kDumpRenderTreeClassName = L"DumpRenderTreeWindow";
-
-static bool dumpTree = true;
-static bool dumpPixelsForAllTests = false;
-static bool dumpPixelsForCurrentTest;
-static bool dumpAllPixels;
-static bool printSeparators;
-static bool leakChecking = false;
-static bool threaded = false;
-static bool forceComplexText = false;
-static bool printSupportedFeatures = false;
-static RetainPtr<CFStringRef> persistentUserStyleSheetLocation;
-
-volatile bool done;
-// This is the topmost frame that is loading, during a given load, or nil when no load is 
-// in progress.  Usually this is the same as the main frame, but not always.  In the case
-// where a frameset is loaded, and then new content is loaded into one of the child frames,
-// that child frame is the "topmost frame that is loading".
-IWebFrame* topLoadingFrame;     // !nil iff a load is in progress
-static COMPtr<IWebHistoryItem> prevTestBFItem;  // current b/f item at the end of the previous test
-PolicyDelegate* policyDelegate; 
-COMPtr<FrameLoadDelegate> sharedFrameLoadDelegate;
-COMPtr<UIDelegate> sharedUIDelegate;
-COMPtr<EditingDelegate> sharedEditingDelegate;
-COMPtr<HistoryDelegate> sharedHistoryDelegate;
-
-IWebFrame* frame;
-HWND webViewWindow;
-
-RefPtr<TestRunner> gTestRunner;
-
-UINT_PTR waitToDumpWatchdog = 0;
-
-void setPersistentUserStyleSheetLocation(CFStringRef url)
-{
-    persistentUserStyleSheetLocation = url;
-}
-
-bool setAlwaysAcceptCookies(bool alwaysAcceptCookies)
-{
-#if USE(CFNETWORK)
-    COMPtr<IWebCookieManager> cookieManager;
-    if (FAILED(WebKitCreateInstance(CLSID_WebCookieManager, 0, IID_IWebCookieManager, reinterpret_cast<void**>(&cookieManager))))
-        return false;
-    CFHTTPCookieStorageRef cookieStorage = 0;
-    if (FAILED(cookieManager->cookieStorage(&cookieStorage)) || !cookieStorage)
-        return false;
-
-    WebKitCookieStorageAcceptPolicy cookieAcceptPolicy = alwaysAcceptCookies ? WebKitCookieStorageAcceptPolicyAlways : WebKitCookieStorageAcceptPolicyOnlyFromMainDocumentDomain;
-    CFHTTPCookieStorageSetCookieAcceptPolicy(cookieStorage, cookieAcceptPolicy);
-    return true;
-#else
-    // FIXME: Implement!
-    return false;
-#endif
-}
-
-static RetainPtr<CFStringRef> substringFromIndex(CFStringRef string, CFIndex index)
-{
-    return RetainPtr<CFStringRef>(AdoptCF, CFStringCreateWithSubstring(kCFAllocatorDefault, string, CFRangeMake(index, CFStringGetLength(string) - index)));
-}
-
-wstring urlSuitableForTestResult(const wstring& urlString)
-{
-    RetainPtr<CFURLRef> url(AdoptCF, CFURLCreateWithBytes(kCFAllocatorDefault, reinterpret_cast<const UInt8*>(urlString.c_str()), urlString.length() * sizeof(wstring::value_type), kCFStringEncodingUTF16, 0));
-
-    RetainPtr<CFStringRef> scheme(AdoptCF, CFURLCopyScheme(url.get()));
-    if (scheme && CFStringCompare(scheme.get(), CFSTR("file"), kCFCompareCaseInsensitive) != kCFCompareEqualTo)
-        return urlString;
-
-    COMPtr<IWebDataSource> dataSource;
-    if (FAILED(frame->dataSource(&dataSource))) {
-        if (FAILED(frame->provisionalDataSource(&dataSource)))
-            return urlString;
-    }
-
-    COMPtr<IWebMutableURLRequest> request;
-    if (FAILED(dataSource->request(&request)))
-        return urlString;
-
-    _bstr_t requestURLString;
-    if (FAILED(request->URL(requestURLString.GetAddress())))
-        return urlString;
-
-    RetainPtr<CFURLRef> requestURL(AdoptCF, CFURLCreateWithBytes(kCFAllocatorDefault, reinterpret_cast<const UInt8*>(requestURLString.GetBSTR()), requestURLString.length() * sizeof(OLECHAR), kCFStringEncodingUTF16, 0));
-    RetainPtr<CFURLRef> baseURL(AdoptCF, CFURLCreateCopyDeletingLastPathComponent(kCFAllocatorDefault, requestURL.get()));
-
-    RetainPtr<CFStringRef> basePath(AdoptCF, CFURLCopyPath(baseURL.get()));
-    RetainPtr<CFStringRef> path(AdoptCF, CFURLCopyPath(url.get()));
-
-    return cfStringRefToWString(substringFromIndex(path.get(), CFStringGetLength(basePath.get())).get());
-}
-
-wstring lastPathComponent(const wstring& urlString)
-{
-    if (urlString.empty())
-        return urlString;
-
-    RetainPtr<CFURLRef> url(AdoptCF, CFURLCreateWithBytes(kCFAllocatorDefault, reinterpret_cast<const UInt8*>(urlString.c_str()), urlString.length() * sizeof(wstring::value_type), kCFStringEncodingUTF16, 0));
-    RetainPtr<CFStringRef> lastPathComponent(CFURLCopyLastPathComponent(url.get()));
-
-    return cfStringRefToWString(lastPathComponent.get());
-}
-
-static string toUTF8(const wchar_t* wideString, size_t length)
-{
-    int result = WideCharToMultiByte(CP_UTF8, 0, wideString, length + 1, 0, 0, 0, 0);
-    Vector<char> utf8Vector(result);
-    result = WideCharToMultiByte(CP_UTF8, 0, wideString, length + 1, utf8Vector.data(), result, 0, 0);
-    if (!result)
-        return string();
-
-    return string(utf8Vector.data(), utf8Vector.size() - 1);
-}
-
-string toUTF8(BSTR bstr)
-{
-    return toUTF8(bstr, SysStringLen(bstr));
-}
-
-string toUTF8(const wstring& wideString)
-{
-    return toUTF8(wideString.c_str(), wideString.length());
-}
-
-wstring cfStringRefToWString(CFStringRef cfStr)
-{
-    Vector<wchar_t> v(CFStringGetLength(cfStr));
-    CFStringGetCharacters(cfStr, CFRangeMake(0, CFStringGetLength(cfStr)), (UniChar *)v.data());
-
-    return wstring(v.data(), v.size());
-}
-
-static LRESULT CALLBACK DumpRenderTreeWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
-{
-    switch (msg) {
-        case WM_DESTROY:
-            for (unsigned i = openWindows().size() - 1; i >= 0; --i) {
-                if (openWindows()[i] == hWnd) {
-                    openWindows().remove(i);
-                    windowToWebViewMap().remove(hWnd);
-                    break;
-                }
-            }
-            return 0;
-            break;
-        default:
-            return DefWindowProc(hWnd, msg, wParam, lParam);
-    }
-}
-
-static const wstring& exePath()
-{
-    static wstring path;
-    static bool initialized;
-
-    if (initialized)
-        return path;
-    initialized = true;
-
-    TCHAR buffer[MAX_PATH];
-    GetModuleFileName(GetModuleHandle(0), buffer, ARRAYSIZE(buffer));
-    path = buffer;
-    int lastSlash = path.rfind('\\');
-    if (lastSlash != -1 && lastSlash + 1 < path.length())
-        path = path.substr(0, lastSlash + 1);
-
-    return path;
-}
-
-static const wstring& fontsPath()
-{
-    static wstring path;
-    static bool initialized;
-
-    if (initialized)
-        return path;
-    initialized = true;
-
-    DWORD size = GetEnvironmentVariable(fontsEnvironmentVariable, 0, 0);
-    Vector<TCHAR> buffer(size);
-    if (GetEnvironmentVariable(fontsEnvironmentVariable, buffer.data(), buffer.size())) {
-        path = buffer.data();
-        if (path[path.length() - 1] != '\\')
-            path.append(L"\\");
-        return path;
-    }
-
-    path = exePath() + TEXT("DumpRenderTree.resources\\");
-    return path;
-}
-
-static void addQTDirToPATH()
-{
-    static LPCWSTR pathEnvironmentVariable = L"PATH";
-    static LPCWSTR quickTimeKeyName = L"Software\\Apple Computer, Inc.\\QuickTime";
-    static LPCWSTR quickTimeSysDir = L"QTSysDir";
-    static bool initialized;
-
-    if (initialized)
-        return;
-    initialized = true;
-
-    // Get the QuickTime dll directory from the registry. The key can be in either HKLM or HKCU.
-    WCHAR qtPath[MAX_PATH];
-    DWORD qtPathBufferLen = sizeof(qtPath);
-    DWORD keyType;
-    HRESULT result = SHGetValue(HKEY_LOCAL_MACHINE, quickTimeKeyName, quickTimeSysDir, &keyType, (LPVOID)qtPath, &qtPathBufferLen);
-    if (result != ERROR_SUCCESS || !qtPathBufferLen || keyType != REG_SZ) {
-        qtPathBufferLen = sizeof(qtPath);
-        result = SHGetValue(HKEY_CURRENT_USER, quickTimeKeyName, quickTimeSysDir, &keyType, (LPVOID)qtPath, &qtPathBufferLen);
-        if (result != ERROR_SUCCESS || !qtPathBufferLen || keyType != REG_SZ)
-            return;
-    }
-
-    // Read the current PATH.
-    DWORD pathSize = GetEnvironmentVariableW(pathEnvironmentVariable, 0, 0);
-    Vector<WCHAR> oldPath(pathSize);
-    if (!GetEnvironmentVariableW(pathEnvironmentVariable, oldPath.data(), oldPath.size()))
-        return;
-
-    // And add the QuickTime dll.
-    wstring newPath;
-    newPath.append(qtPath);
-    newPath.append(L";");
-    newPath.append(oldPath.data(), oldPath.size());
-    SetEnvironmentVariableW(pathEnvironmentVariable, newPath.data());
-}
-
-#ifdef DEBUG_ALL
-#define WEBKITDLL TEXT("WebKit_debug.dll")
-#else
-#define WEBKITDLL TEXT("WebKit.dll")
-#endif
-
-static void initialize()
-{
-    if (HMODULE webKitModule = LoadLibrary(WEBKITDLL))
-        if (FARPROC dllRegisterServer = GetProcAddress(webKitModule, "DllRegisterServer"))
-            dllRegisterServer();
-
-    // Init COM
-    OleInitialize(0);
-
-    static LPCTSTR fontsToInstall[] = {
-        TEXT("AHEM____.ttf"),
-        TEXT("Apple Chancery.ttf"),
-        TEXT("Courier Bold.ttf"),
-        TEXT("Courier.ttf"),
-        TEXT("Helvetica Bold Oblique.ttf"),
-        TEXT("Helvetica Bold.ttf"),
-        TEXT("Helvetica Oblique.ttf"),
-        TEXT("Helvetica.ttf"),
-        TEXT("Helvetica Neue Bold Italic.ttf"),
-        TEXT("Helvetica Neue Bold.ttf"),
-        TEXT("Helvetica Neue Condensed Black.ttf"),
-        TEXT("Helvetica Neue Condensed Bold.ttf"),
-        TEXT("Helvetica Neue Italic.ttf"),
-        TEXT("Helvetica Neue Light Italic.ttf"),
-        TEXT("Helvetica Neue Light.ttf"),
-        TEXT("Helvetica Neue UltraLight Italic.ttf"),
-        TEXT("Helvetica Neue UltraLight.ttf"),
-        TEXT("Helvetica Neue.ttf"),
-        TEXT("Lucida Grande.ttf"),
-        TEXT("Lucida Grande Bold.ttf"),
-        TEXT("Monaco.ttf"),
-        TEXT("Papyrus.ttf"),
-        TEXT("Times Bold Italic.ttf"),
-        TEXT("Times Bold.ttf"),
-        TEXT("Times Italic.ttf"),
-        TEXT("Times Roman.ttf"),
-        TEXT("WebKit Layout Tests 2.ttf"),
-        TEXT("WebKit Layout Tests.ttf"),
-        TEXT("WebKitWeightWatcher100.ttf"),
-        TEXT("WebKitWeightWatcher200.ttf"),
-        TEXT("WebKitWeightWatcher300.ttf"),
-        TEXT("WebKitWeightWatcher400.ttf"),
-        TEXT("WebKitWeightWatcher500.ttf"),
-        TEXT("WebKitWeightWatcher600.ttf"),
-        TEXT("WebKitWeightWatcher700.ttf"),
-        TEXT("WebKitWeightWatcher800.ttf"),
-        TEXT("WebKitWeightWatcher900.ttf")
-    };
-
-    wstring resourcesPath = fontsPath();
-
-    COMPtr<IWebTextRenderer> textRenderer;
-    if (SUCCEEDED(WebKitCreateInstance(CLSID_WebTextRenderer, 0, IID_IWebTextRenderer, (void**)&textRenderer)))
-        for (int i = 0; i < ARRAYSIZE(fontsToInstall); ++i)
-            textRenderer->registerPrivateFont(wstring(resourcesPath + fontsToInstall[i]).c_str());
-
-    // Add the QuickTime dll directory to PATH or QT 7.6 will fail to initialize on systems
-    // linked with older versions of qtmlclientlib.dll.
-    addQTDirToPATH();
-
-    // Register a host window
-    WNDCLASSEX wcex;
-
-    wcex.cbSize = sizeof(WNDCLASSEX);
-
-    wcex.style         = CS_HREDRAW | CS_VREDRAW;
-    wcex.lpfnWndProc   = DumpRenderTreeWndProc;
-    wcex.cbClsExtra    = 0;
-    wcex.cbWndExtra    = 0;
-    wcex.hInstance     = GetModuleHandle(0);
-    wcex.hIcon         = 0;
-    wcex.hCursor       = LoadCursor(0, IDC_ARROW);
-    wcex.hbrBackground = 0;
-    wcex.lpszMenuName  = 0;
-    wcex.lpszClassName = kDumpRenderTreeClassName;
-    wcex.hIconSm       = 0;
-
-    RegisterClassEx(&wcex);
-}
-
-void displayWebView()
-{
-    ::InvalidateRect(webViewWindow, 0, TRUE);
-    ::SendMessage(webViewWindow, WM_PAINT, 0, 0);
-}
-
-void dumpFrameScrollPosition(IWebFrame* frame)
-{
-    if (!frame)
-        return;
-
-    COMPtr<IWebFramePrivate> framePrivate;
-    if (FAILED(frame->QueryInterface(&framePrivate)))
-        return;
-
-    SIZE scrollPosition;
-    if (FAILED(framePrivate->scrollOffset(&scrollPosition)))
-        return;
-
-    if (abs(scrollPosition.cx) > 0.00000001 || abs(scrollPosition.cy) > 0.00000001) {
-        COMPtr<IWebFrame> parent;
-        if (FAILED(frame->parentFrame(&parent)))
-            return;
-        if (parent) {
-            BSTR name;
-            if (FAILED(frame->name(&name)))
-                return;
-            printf("frame '%S' ", name ? name : L"");
-            SysFreeString(name);
-        }
-        printf("scrolled to %.f,%.f\n", (double)scrollPosition.cx, (double)scrollPosition.cy);
-    }
-
-    if (::gTestRunner->dumpChildFrameScrollPositions()) {
-        COMPtr<IEnumVARIANT> enumKids;
-        if (FAILED(frame->childFrames(&enumKids)))
-            return;
-        VARIANT var;
-        VariantInit(&var);
-        while (enumKids->Next(1, &var, 0) == S_OK) {
-            ASSERT(V_VT(&var) == VT_UNKNOWN);
-            COMPtr<IWebFrame> framePtr;
-            V_UNKNOWN(&var)->QueryInterface(IID_IWebFrame, (void**)&framePtr);
-            dumpFrameScrollPosition(framePtr.get());
-            VariantClear(&var);
-        }
-    }
-}
-
-static wstring dumpFramesAsText(IWebFrame* frame)
-{
-    if (!frame)
-        return L"";
-
-    COMPtr<IDOMDocument> document;
-    if (FAILED(frame->DOMDocument(&document)))
-        return L"";
-
-    COMPtr<IDOMElement> documentElement;
-    if (FAILED(document->documentElement(&documentElement)))
-        return L"";
-
-    wstring result;
-
-    // Add header for all but the main frame.
-    COMPtr<IWebFrame> parent;
-    if (FAILED(frame->parentFrame(&parent)))
-        return L"";
-    if (parent) {
-        BSTR name = L"";
-        if (FAILED(frame->name(&name)))
-            return L"";
-
-        result.append(L"\n--------\nFrame: '");
-        result.append(name ? name : L"", SysStringLen(name));
-        result.append(L"'\n--------\n");
-
-        SysFreeString(name);
-    }
-
-    BSTR innerText = 0;
-    COMPtr<IDOMElementPrivate> docPrivate;
-    if (SUCCEEDED(documentElement->QueryInterface(&docPrivate)))
-        docPrivate->innerText(&innerText);
-
-    result.append(innerText ? innerText : L"", SysStringLen(innerText));
-    result.append(L"\n");
-
-    SysFreeString(innerText);
-
-    if (::gTestRunner->dumpChildFramesAsText()) {
-        COMPtr<IEnumVARIANT> enumKids;
-        if (FAILED(frame->childFrames(&enumKids)))
-            return L"";
-        VARIANT var;
-        VariantInit(&var);
-        while (enumKids->Next(1, &var, 0) == S_OK) {
-            ASSERT(V_VT(&var) == VT_UNKNOWN);
-            COMPtr<IWebFrame> framePtr;
-            V_UNKNOWN(&var)->QueryInterface(IID_IWebFrame, (void**)&framePtr);
-            result.append(dumpFramesAsText(framePtr.get()));
-            VariantClear(&var);
-        }
-    }
-
-    return result;
-}
-
-static int compareHistoryItems(const void* item1, const void* item2)
-{
-    COMPtr<IWebHistoryItemPrivate> itemA;
-    if (FAILED((*(COMPtr<IUnknown>*)item1)->QueryInterface(&itemA)))
-        return 0;
-
-    COMPtr<IWebHistoryItemPrivate> itemB;
-    if (FAILED((*(COMPtr<IUnknown>*)item2)->QueryInterface(&itemB)))
-        return 0;
-
-    BSTR targetA;
-    if (FAILED(itemA->target(&targetA)))
-        return 0;
-
-    BSTR targetB;
-    if (FAILED(itemB->target(&targetB))) {
-        SysFreeString(targetA);
-        return 0;
-    }
-
-    int result = wcsicmp(wstring(targetA, SysStringLen(targetA)).c_str(), wstring(targetB, SysStringLen(targetB)).c_str());
-    SysFreeString(targetA);
-    SysFreeString(targetB);
-    return result;
-}
-
-static void dumpHistoryItem(IWebHistoryItem* item, int indent, bool current)
-{
-    assert(item);
-
-    int start = 0;
-    if (current) {
-        printf("curr->");
-        start = 6;
-    }
-    for (int i = start; i < indent; i++)
-        putchar(' ');
-
-    BSTR url;
-    if (FAILED(item->URLString(&url)))
-        return;
-
-    if (wcsstr(url, L"file:/") == url) {
-        static wchar_t* layoutTestsString = L"/LayoutTests/";
-        static wchar_t* fileTestString = L"(file test):";
-        
-        wchar_t* result = wcsstr(url, layoutTestsString);
-        if (result == NULL)
-            return;
-        wchar_t* start = result + wcslen(layoutTestsString);
-
-        BSTR newURL = SysAllocStringLen(NULL, SysStringLen(url));
-        wcscpy(newURL, fileTestString);
-        wcscpy(newURL + wcslen(fileTestString), start);
-
-        SysFreeString(url);
-        url = newURL;
-    }
-
-    printf("%S", url ? url : L"");
-    SysFreeString(url);
-
-    COMPtr<IWebHistoryItemPrivate> itemPrivate;
-    if (FAILED(item->QueryInterface(&itemPrivate)))
-        return;
-
-    BSTR target;
-    if (FAILED(itemPrivate->target(&target)))
-        return;
-    if (SysStringLen(target))
-        printf(" (in frame \"%S\")", target);
-    SysFreeString(target);
-    BOOL isTargetItem = FALSE;
-    if (FAILED(itemPrivate->isTargetItem(&isTargetItem)))
-        return;
-    if (isTargetItem)
-        printf("  **nav target**");
-    putchar('\n');
-
-    unsigned kidsCount;
-    SAFEARRAY* arrPtr;
-    if (FAILED(itemPrivate->children(&kidsCount, &arrPtr)) || !kidsCount)
-        return;
-
-    Vector<COMPtr<IUnknown> > kidsVector;
-
-    LONG lowerBound;
-    if (FAILED(::SafeArrayGetLBound(arrPtr, 1, &lowerBound)))
-        goto exit;
-
-    LONG upperBound;
-    if (FAILED(::SafeArrayGetUBound(arrPtr, 1, &upperBound)))
-        goto exit;
-
-    LONG length = upperBound - lowerBound + 1;
-    if (!length)
-        goto exit;
-    ASSERT(length == kidsCount);
-
-    IUnknown** safeArrayData;
-    if (FAILED(::SafeArrayAccessData(arrPtr, (void**)&safeArrayData)))
-        goto exit;
-
-    for (int i = 0; i < length; ++i)
-        kidsVector.append(safeArrayData[i]);
-    ::SafeArrayUnaccessData(arrPtr);
-
-    // must sort to eliminate arbitrary result ordering which defeats reproducible testing
-    qsort(kidsVector.data(), kidsCount, sizeof(kidsVector[0]), compareHistoryItems);
-
-    for (unsigned i = 0; i < kidsCount; ++i) {
-        COMPtr<IWebHistoryItem> item;
-        kidsVector[i]->QueryInterface(&item);
-        dumpHistoryItem(item.get(), indent + 4, false);
-    }
-
-exit:
-    if (arrPtr && SUCCEEDED(::SafeArrayUnlock(arrPtr)))
-        ::SafeArrayDestroy(arrPtr);
-}
-
-static void dumpBackForwardList(IWebView* webView)
-{
-    ASSERT(webView);
-
-    printf("\n============== Back Forward List ==============\n");
-
-    COMPtr<IWebBackForwardList> bfList;
-    if (FAILED(webView->backForwardList(&bfList)))
-        return;
-
-    // Print out all items in the list after prevTestBFItem, which was from the previous test
-    // Gather items from the end of the list, the print them out from oldest to newest
-
-    Vector<COMPtr<IUnknown> > itemsToPrint;
-
-    int forwardListCount;
-    if (FAILED(bfList->forwardListCount(&forwardListCount)))
-        return;
-
-    for (int i = forwardListCount; i > 0; --i) {
-        COMPtr<IWebHistoryItem> item;
-        if (FAILED(bfList->itemAtIndex(i, &item)))
-            return;
-        // something is wrong if the item from the last test is in the forward part of the b/f list
-        assert(item != prevTestBFItem);
-        COMPtr<IUnknown> itemUnknown;
-        item->QueryInterface(&itemUnknown);
-        itemsToPrint.append(itemUnknown);
-    }
-    
-    COMPtr<IWebHistoryItem> currentItem;
-    if (FAILED(bfList->currentItem(&currentItem)))
-        return;
-
-    assert(currentItem != prevTestBFItem);
-    COMPtr<IUnknown> currentItemUnknown;
-    currentItem->QueryInterface(&currentItemUnknown);
-    itemsToPrint.append(currentItemUnknown);
-    int currentItemIndex = itemsToPrint.size() - 1;
-
-    int backListCount;
-    if (FAILED(bfList->backListCount(&backListCount)))
-        return;
-
-    for (int i = -1; i >= -backListCount; --i) {
-        COMPtr<IWebHistoryItem> item;
-        if (FAILED(bfList->itemAtIndex(i, &item)))
-            return;
-        if (item == prevTestBFItem)
-            break;
-        COMPtr<IUnknown> itemUnknown;
-        item->QueryInterface(&itemUnknown);
-        itemsToPrint.append(itemUnknown);
-    }
-
-    for (int i = itemsToPrint.size() - 1; i >= 0; --i) {
-        COMPtr<IWebHistoryItem> historyItemToPrint;
-        itemsToPrint[i]->QueryInterface(&historyItemToPrint);
-        dumpHistoryItem(historyItemToPrint.get(), 8, i == currentItemIndex);
-    }
-
-    printf("===============================================\n");
-}
-
-static void dumpBackForwardListForAllWindows()
-{
-    unsigned count = openWindows().size();
-    for (unsigned i = 0; i < count; i++) {
-        HWND window = openWindows()[i];
-        IWebView* webView = windowToWebViewMap().get(window).get();
-        dumpBackForwardList(webView);
-    }
-}
-
-static void invalidateAnyPreviousWaitToDumpWatchdog()
-{
-    if (!waitToDumpWatchdog)
-        return;
-
-    KillTimer(0, waitToDumpWatchdog);
-    waitToDumpWatchdog = 0;
-}
-
-void dump()
-{
-    invalidateAnyPreviousWaitToDumpWatchdog();
-
-    COMPtr<IWebDataSource> dataSource;
-    if (SUCCEEDED(frame->dataSource(&dataSource))) {
-        COMPtr<IWebURLResponse> response;
-        if (SUCCEEDED(dataSource->response(&response)) && response) {
-            BSTR mimeType;
-            if (SUCCEEDED(response->MIMEType(&mimeType)) && !_tcscmp(mimeType, TEXT("text/plain"))) {
-                ::gTestRunner->setDumpAsText(true);
-                ::gTestRunner->setGeneratePixelResults(false);
-            }
-            SysFreeString(mimeType);
-        }
-    }
-
-    BSTR resultString = 0;
-
-    if (dumpTree) {
-        ::InvalidateRect(webViewWindow, 0, TRUE);
-        ::SendMessage(webViewWindow, WM_PAINT, 0, 0);
-
-        if (::gTestRunner->dumpAsText()) {
-            wstring result = dumpFramesAsText(frame);
-            resultString = SysAllocStringLen(result.data(), result.size());
-        } else {
-            COMPtr<IWebFramePrivate> framePrivate;
-            if (FAILED(frame->QueryInterface(&framePrivate)))
-                goto fail;
-            framePrivate->renderTreeAsExternalRepresentation(gTestRunner->isPrinting(), &resultString);
-        }
-        
-        if (!resultString)
-            printf("ERROR: nil result from %s", ::gTestRunner->dumpAsText() ? "IDOMElement::innerText" : "IFrameViewPrivate::renderTreeAsExternalRepresentation");
-        else {
-            unsigned stringLength = SysStringLen(resultString);
-            int bufferSize = ::WideCharToMultiByte(CP_UTF8, 0, resultString, stringLength, 0, 0, 0, 0);
-            char* buffer = (char*)malloc(bufferSize + 1);
-            ::WideCharToMultiByte(CP_UTF8, 0, resultString, stringLength, buffer, bufferSize + 1, 0, 0);
-            fwrite(buffer, 1, bufferSize, stdout);
-            free(buffer);
-            if (!::gTestRunner->dumpAsText())
-                dumpFrameScrollPosition(frame);
-        }
-        if (::gTestRunner->dumpBackForwardList())
-            dumpBackForwardListForAllWindows();
-    }
-
-    if (printSeparators) {
-        puts("#EOF");   // terminate the content block
-        fputs("#EOF\n", stderr);
-        fflush(stdout);
-        fflush(stderr);
-    }
-
-    if (dumpPixelsForCurrentTest
-     && gTestRunner->generatePixelResults()
-     && !gTestRunner->dumpDOMAsWebArchive()
-     && !gTestRunner->dumpSourceAsWebArchive())
-        dumpWebViewAsPixelsAndCompareWithExpected(gTestRunner->expectedPixelHash());
-
-    printf("#EOF\n");   // terminate the (possibly empty) pixels block
-    fflush(stdout);
-
-fail:
-    SysFreeString(resultString);
-    // This will exit from our message loop.
-    PostQuitMessage(0);
-    done = true;
-}
-
-static bool shouldLogFrameLoadDelegates(const char* pathOrURL)
-{
-    return strstr(pathOrURL, "/loading/") || strstr(pathOrURL, "\\loading\\");
-}
-
-static bool shouldLogHistoryDelegates(const char* pathOrURL)
-{
-    return strstr(pathOrURL, "/globalhistory/") || strstr(pathOrURL, "\\globalhistory\\");
-}
-
-static bool shouldOpenWebInspector(const char* pathOrURL)
-{
-    return strstr(pathOrURL, "/inspector/") || strstr(pathOrURL, "\\inspector\\");
-}
-
-static bool shouldDumpAsText(const char* pathOrURL)
-{
-    return strstr(pathOrURL, "/dumpAsText/") || strstr(pathOrURL, "\\dumpAsText\\");
-}
-
-static bool shouldEnableDeveloperExtras(const char* pathOrURL)
-{
-    return true;
-}
-
-static void resetDefaultsToConsistentValues(IWebPreferences* preferences)
-{
-#ifdef USE_MAC_FONTS
-    static BSTR standardFamily = SysAllocString(TEXT("Times"));
-    static BSTR fixedFamily = SysAllocString(TEXT("Courier"));
-    static BSTR sansSerifFamily = SysAllocString(TEXT("Helvetica"));
-    static BSTR cursiveFamily = SysAllocString(TEXT("Apple Chancery"));
-    static BSTR fantasyFamily = SysAllocString(TEXT("Papyrus"));
-    static BSTR pictographFamily = SysAllocString(TEXT("Apple Color Emoji"));
-#else
-    static BSTR standardFamily = SysAllocString(TEXT("Times New Roman"));
-    static BSTR fixedFamily = SysAllocString(TEXT("Courier New"));
-    static BSTR sansSerifFamily = SysAllocString(TEXT("Arial"));
-    static BSTR cursiveFamily = SysAllocString(TEXT("Comic Sans MS")); // Not actually cursive, but it's what IE and Firefox use.
-    static BSTR fantasyFamily = SysAllocString(TEXT("Times New Roman"));
-    static BSTR pictographFamily = SysAllocString(TEXT("Times New Roman"));
-#endif
-
-    preferences->setStandardFontFamily(standardFamily);
-    preferences->setFixedFontFamily(fixedFamily);
-    preferences->setSerifFontFamily(standardFamily);
-    preferences->setSansSerifFontFamily(sansSerifFamily);
-    preferences->setCursiveFontFamily(cursiveFamily);
-    preferences->setFantasyFontFamily(fantasyFamily);
-    preferences->setPictographFontFamily(pictographFamily);
-
-    preferences->setAutosaves(FALSE);
-    preferences->setDefaultFontSize(16);
-    preferences->setDefaultFixedFontSize(13);
-    preferences->setMinimumFontSize(0);
-    preferences->setJavaEnabled(FALSE);
-    preferences->setPlugInsEnabled(TRUE);
-    preferences->setDOMPasteAllowed(TRUE);
-    preferences->setEditableLinkBehavior(WebKitEditableLinkOnlyLiveWithShiftKey);
-    preferences->setFontSmoothing(FontSmoothingTypeStandard);
-    preferences->setUsesPageCache(FALSE);
-    preferences->setPrivateBrowsingEnabled(FALSE);
-    preferences->setJavaScriptCanOpenWindowsAutomatically(TRUE);
-    preferences->setJavaScriptEnabled(TRUE);
-    preferences->setTabsToLinks(FALSE);
-    preferences->setShouldPrintBackgrounds(TRUE);
-    preferences->setLoadsImagesAutomatically(TRUE);
-    preferences->setSeamlessIFramesEnabled(TRUE);
-
-    if (persistentUserStyleSheetLocation) {
-        Vector<wchar_t> urlCharacters(CFStringGetLength(persistentUserStyleSheetLocation.get()));
-        CFStringGetCharacters(persistentUserStyleSheetLocation.get(), CFRangeMake(0, CFStringGetLength(persistentUserStyleSheetLocation.get())), (UniChar *)urlCharacters.data());
-        BSTR url = SysAllocStringLen(urlCharacters.data(), urlCharacters.size());
-        preferences->setUserStyleSheetLocation(url);
-        SysFreeString(url);
-        preferences->setUserStyleSheetEnabled(TRUE);
-    } else
-        preferences->setUserStyleSheetEnabled(FALSE);
-
-    COMPtr<IWebPreferencesPrivate> prefsPrivate(Query, preferences);
-    if (prefsPrivate) {
-        prefsPrivate->setAllowUniversalAccessFromFileURLs(TRUE);
-        prefsPrivate->setAllowFileAccessFromFileURLs(TRUE);
-        prefsPrivate->setAuthorAndUserStylesEnabled(TRUE);
-        prefsPrivate->setDeveloperExtrasEnabled(FALSE);
-        prefsPrivate->setExperimentalNotificationsEnabled(TRUE);
-        prefsPrivate->setShouldPaintNativeControls(FALSE); // FIXME - need to make DRT pass with Windows native controls <http://bugs.webkit.org/show_bug.cgi?id=25592>
-        prefsPrivate->setJavaScriptCanAccessClipboard(TRUE);
-        prefsPrivate->setXSSAuditorEnabled(FALSE);
-        prefsPrivate->setOfflineWebApplicationCacheEnabled(TRUE);
-        prefsPrivate->setLoadsSiteIconsIgnoringImageLoadingPreference(FALSE);
-    }
-    setAlwaysAcceptCookies(false);
-
-    setlocale(LC_ALL, "");
-}
-
-static void resetWebViewToConsistentStateBeforeTesting()
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView))) 
-        return;
-
-    webView->setPolicyDelegate(0);
-    policyDelegate->setPermissive(false);
-    policyDelegate->setControllerToNotifyDone(0);
-
-    COMPtr<IWebIBActions> webIBActions(Query, webView);
-    if (webIBActions) {
-        webIBActions->makeTextStandardSize(0);
-        webIBActions->resetPageZoom(0);
-    }
-
-
-    COMPtr<IWebPreferences> preferences;
-    if (SUCCEEDED(webView->preferences(&preferences)))
-        resetDefaultsToConsistentValues(preferences.get());
-
-    if (gTestRunner) {
-        JSGlobalContextRef context = frame->globalContext();
-        WebCoreTestSupport::resetInternalsObject(context);
-    }
-
-    COMPtr<IWebViewPrivate> webViewPrivate(Query, webView);
-    if (!webViewPrivate)
-        return;
-
-    HWND viewWindow;
-    if (SUCCEEDED(webViewPrivate->viewWindow(reinterpret_cast<OLE_HANDLE*>(&viewWindow))) && viewWindow)
-        SetFocus(viewWindow);
-
-    webViewPrivate->clearMainFrameName();
-    webViewPrivate->resetOriginAccessWhitelists();
-
-    BSTR groupName;
-    if (SUCCEEDED(webView->groupName(&groupName))) {
-        webViewPrivate->removeAllUserContentFromGroup(groupName);
-        SysFreeString(groupName);
-    }
-
-    sharedUIDelegate->resetUndoManager();
-
-    sharedFrameLoadDelegate->resetToConsistentState();
-
-    COMPtr<IWebFramePrivate> framePrivate;
-    if (SUCCEEDED(frame->QueryInterface(&framePrivate)))
-        framePrivate->clearOpener();
-}
-
-static void sizeWebViewForCurrentTest()
-{
-    bool isSVGW3CTest = (gTestRunner->testPathOrURL().find("svg\\W3C-SVG-1.1") != string::npos);
-    unsigned width;
-    unsigned height;
-    if (isSVGW3CTest) {
-        width = 480;
-        height = 360;
-    } else {
-        width = TestRunner::maxViewWidth;
-        height = TestRunner::maxViewHeight;
-    }
-
-    ::SetWindowPos(webViewWindow, 0, 0, 0, width, height, SWP_NOMOVE);
-}
-
-static void runTest(const string& inputLine)
-{
-    TestCommand command = parseInputLine(inputLine);
-    const string& pathOrURL = command.pathOrURL;
-    dumpPixelsForCurrentTest = command.shouldDumpPixels || dumpPixelsForAllTests;
-
-    static BSTR methodBStr = SysAllocString(TEXT("GET"));
-
-    BSTR urlBStr;
- 
-    CFStringRef str = CFStringCreateWithCString(0, pathOrURL.c_str(), kCFStringEncodingWindowsLatin1);
-    CFURLRef url = CFURLCreateWithString(0, str, 0);
-
-    if (!url)
-        url = CFURLCreateWithFileSystemPath(0, str, kCFURLWindowsPathStyle, false);
-
-    CFRelease(str);
-
-    str = CFURLGetString(url);
-
-    CFIndex length = CFStringGetLength(str);
-    UniChar* buffer = new UniChar[length];
-
-    CFStringGetCharacters(str, CFRangeMake(0, length), buffer);
-    urlBStr = SysAllocStringLen((OLECHAR*)buffer, length);
-    delete[] buffer;
-
-    CFRelease(url);
-
-    ::gTestRunner = TestRunner::create(pathOrURL, command.expectedPixelHash);
-    done = false;
-    topLoadingFrame = 0;
-
-    sizeWebViewForCurrentTest();
-    gTestRunner->setIconDatabaseEnabled(false);
-
-    if (shouldLogFrameLoadDelegates(pathOrURL.c_str()))
-        gTestRunner->setDumpFrameLoadCallbacks(true);
-
-    COMPtr<IWebView> webView;
-    if (SUCCEEDED(frame->webView(&webView))) {
-        COMPtr<IWebViewPrivate> viewPrivate;
-        if (SUCCEEDED(webView->QueryInterface(&viewPrivate))) {
-            if (shouldLogHistoryDelegates(pathOrURL.c_str())) {
-                gTestRunner->setDumpHistoryDelegateCallbacks(true);            
-                viewPrivate->setHistoryDelegate(sharedHistoryDelegate.get());
-            } else
-                viewPrivate->setHistoryDelegate(0);
-        }
-    }
-    COMPtr<IWebHistory> history;
-    if (SUCCEEDED(WebKitCreateInstance(CLSID_WebHistory, 0, __uuidof(history), reinterpret_cast<void**>(&history))))
-        history->setOptionalSharedHistory(0);
-
-    resetWebViewToConsistentStateBeforeTesting();
-
-    if (shouldEnableDeveloperExtras(pathOrURL.c_str())) {
-        gTestRunner->setDeveloperExtrasEnabled(true);
-        if (shouldOpenWebInspector(pathOrURL.c_str()))
-            gTestRunner->showWebInspector();
-    }
-    if (shouldDumpAsText(pathOrURL.c_str())) {
-        gTestRunner->setDumpAsText(true);
-        gTestRunner->setGeneratePixelResults(false);
-    }
-
-    prevTestBFItem = 0;
-    if (webView) {
-        COMPtr<IWebBackForwardList> bfList;
-        if (SUCCEEDED(webView->backForwardList(&bfList)))
-            bfList->currentItem(&prevTestBFItem);
-    }
-
-    WorkQueue::shared()->clear();
-    WorkQueue::shared()->setFrozen(false);
-
-    HWND hostWindow;
-    webView->hostWindow(reinterpret_cast<OLE_HANDLE*>(&hostWindow));
-
-    COMPtr<IWebMutableURLRequest> request;
-    HRESULT hr = WebKitCreateInstance(CLSID_WebMutableURLRequest, 0, IID_IWebMutableURLRequest, (void**)&request);
-    if (FAILED(hr))
-        goto exit;
-
-    request->initWithURL(urlBStr, WebURLRequestUseProtocolCachePolicy, 60);
-
-    request->setHTTPMethod(methodBStr);
-    frame->loadRequest(request.get());
-
-    MSG msg;
-    while (GetMessage(&msg, 0, 0, 0)) {
-        // We get spurious WM_MOUSELEAVE events which make event handling machinery think that mouse button
-        // is released during dragging (see e.g. fast\dynamic\layer-hit-test-crash.html).
-        // Mouse can never leave WebView during normal DumpRenderTree operation, so we just ignore all such events.
-        if (msg.message == WM_MOUSELEAVE)
-            continue;
-        TranslateMessage(&msg);
-        DispatchMessage(&msg);
-    }
-
-    if (shouldEnableDeveloperExtras(pathOrURL.c_str())) {
-        gTestRunner->closeWebInspector();
-        gTestRunner->setDeveloperExtrasEnabled(false);
-    }
-
-    resetWebViewToConsistentStateBeforeTesting();
-
-    frame->stopLoading();
-
-    if (::gTestRunner->closeRemainingWindowsWhenComplete()) {
-        Vector<HWND> windows = openWindows();
-        unsigned size = windows.size();
-        for (unsigned i = 0; i < size; i++) {
-            HWND window = windows[i];
-
-            // Don't try to close the main window
-            if (window == hostWindow)
-                continue;
-
-            DestroyWindow(window);
-        }
-    }
-
-exit:
-    SysFreeString(urlBStr);
-    ::gTestRunner.clear();
-
-    return;
-}
-
-static Boolean pthreadEqualCallback(const void* value1, const void* value2)
-{
-    return (Boolean)pthread_equal(*(pthread_t*)value1, *(pthread_t*)value2);
-}
-
-static CFDictionaryKeyCallBacks pthreadKeyCallbacks = { 0, 0, 0, 0, pthreadEqualCallback, 0 };
-
-static pthread_mutex_t javaScriptThreadsMutex = PTHREAD_MUTEX_INITIALIZER;
-static bool javaScriptThreadsShouldTerminate;
-
-static const int javaScriptThreadsCount = 4;
-static CFMutableDictionaryRef javaScriptThreads()
-{
-    assert(pthread_mutex_trylock(&javaScriptThreadsMutex) == EBUSY);
-    static CFMutableDictionaryRef staticJavaScriptThreads;
-    if (!staticJavaScriptThreads)
-        staticJavaScriptThreads = CFDictionaryCreateMutable(0, 0, &pthreadKeyCallbacks, 0);
-    return staticJavaScriptThreads;
-}
-
-// Loops forever, running a script and randomly respawning, until 
-// javaScriptThreadsShouldTerminate becomes true.
-void* runJavaScriptThread(void* arg)
-{
-    const char* const script =
-    " \
-    var array = []; \
-    for (var i = 0; i < 10; i++) { \
-        array.push(String(i)); \
-    } \
-    ";
-
-    while (true) {
-        JSGlobalContextRef ctx = JSGlobalContextCreate(0);
-        JSStringRef scriptRef = JSStringCreateWithUTF8CString(script);
-
-        JSValueRef exception = 0;
-        JSEvaluateScript(ctx, scriptRef, 0, 0, 1, &exception);
-        assert(!exception);
-        
-        JSGlobalContextRelease(ctx);
-        JSStringRelease(scriptRef);
-        
-        JSGarbageCollect(ctx);
-
-        pthread_mutex_lock(&javaScriptThreadsMutex);
-
-        // Check for cancellation.
-        if (javaScriptThreadsShouldTerminate) {
-            pthread_mutex_unlock(&javaScriptThreadsMutex);
-            return 0;
-        }
-
-        // Respawn probabilistically.
-        if (rand() % 5 == 0) {
-            pthread_t pthread;
-            pthread_create(&pthread, 0, &runJavaScriptThread, 0);
-            pthread_detach(pthread);
-
-            pthread_t self = pthread_self();
-            CFDictionaryRemoveValue(javaScriptThreads(), self.p);
-            CFDictionaryAddValue(javaScriptThreads(), pthread.p, 0);
-
-            pthread_mutex_unlock(&javaScriptThreadsMutex);
-            return 0;
-        }
-
-        pthread_mutex_unlock(&javaScriptThreadsMutex);
-    }
-}
-
-static void startJavaScriptThreads(void)
-{
-    pthread_mutex_lock(&javaScriptThreadsMutex);
-
-    for (int i = 0; i < javaScriptThreadsCount; i++) {
-        pthread_t pthread;
-        pthread_create(&pthread, 0, &runJavaScriptThread, 0);
-        pthread_detach(pthread);
-        CFDictionaryAddValue(javaScriptThreads(), pthread.p, 0);
-    }
-
-    pthread_mutex_unlock(&javaScriptThreadsMutex);
-}
-
-static void stopJavaScriptThreads(void)
-{
-    pthread_mutex_lock(&javaScriptThreadsMutex);
-
-    javaScriptThreadsShouldTerminate = true;
-
-    pthread_t* pthreads[javaScriptThreadsCount] = {0};
-    int threadDictCount = CFDictionaryGetCount(javaScriptThreads());
-    assert(threadDictCount == javaScriptThreadsCount);
-    CFDictionaryGetKeysAndValues(javaScriptThreads(), (const void**)pthreads, 0);
-
-    pthread_mutex_unlock(&javaScriptThreadsMutex);
-
-    for (int i = 0; i < javaScriptThreadsCount; i++) {
-        pthread_t* pthread = pthreads[i];
-        pthread_join(*pthread, 0);
-        free(pthread);
-    }
-}
-
-Vector<HWND>& openWindows()
-{
-    static Vector<HWND> vector;
-    return vector;
-}
-
-WindowToWebViewMap& windowToWebViewMap()
-{
-    static WindowToWebViewMap map;
-    return map;
-}
-
-IWebView* createWebViewAndOffscreenWindow(HWND* webViewWindow)
-{
-    unsigned maxViewWidth = TestRunner::maxViewWidth;
-    unsigned maxViewHeight = TestRunner::maxViewHeight;
-    HWND hostWindow = CreateWindowEx(WS_EX_TOOLWINDOW, kDumpRenderTreeClassName, TEXT("DumpRenderTree"), WS_POPUP,
-      -maxViewWidth, -maxViewHeight, maxViewWidth, maxViewHeight, 0, 0, GetModuleHandle(0), 0);
-
-    IWebView* webView;
-
-    HRESULT hr = WebKitCreateInstance(CLSID_WebView, 0, IID_IWebView, (void**)&webView);
-    if (FAILED(hr)) {
-        fprintf(stderr, "Failed to create CLSID_WebView instance, error 0x%x\n", hr);
-        return 0;
-    }
-
-    if (FAILED(webView->setHostWindow((OLE_HANDLE)(ULONG64)hostWindow)))
-        return 0;
-
-    RECT clientRect;
-    clientRect.bottom = clientRect.left = clientRect.top = clientRect.right = 0;
-    BSTR groupName = SysAllocString(L"org.webkit.DumpRenderTree");
-    bool failed = FAILED(webView->initWithFrame(clientRect, 0, groupName));
-    SysFreeString(groupName);
-    if (failed)
-        return 0;
-
-    COMPtr<IWebViewPrivate> viewPrivate;
-    if (FAILED(webView->QueryInterface(&viewPrivate)))
-        return 0;
-
-    viewPrivate->setShouldApplyMacFontAscentHack(TRUE);
-    viewPrivate->setAlwaysUsesComplexTextCodePath(forceComplexText);
-
-    BSTR pluginPath = SysAllocStringLen(0, exePath().length() + _tcslen(TestPluginDir));
-    _tcscpy(pluginPath, exePath().c_str());
-    _tcscat(pluginPath, TestPluginDir);
-    failed = FAILED(viewPrivate->addAdditionalPluginDirectory(pluginPath));
-    SysFreeString(pluginPath);
-    if (failed)
-        return 0;
-
-    HWND viewWindow;
-    if (FAILED(viewPrivate->viewWindow(reinterpret_cast<OLE_HANDLE*>(&viewWindow))))
-        return 0;
-    if (webViewWindow)
-        *webViewWindow = viewWindow;
-
-    SetWindowPos(viewWindow, 0, 0, 0, maxViewWidth, maxViewHeight, 0);
-    ShowWindow(hostWindow, SW_SHOW);
-
-    if (FAILED(webView->setFrameLoadDelegate(sharedFrameLoadDelegate.get())))
-        return 0;
-
-    if (FAILED(viewPrivate->setFrameLoadDelegatePrivate(sharedFrameLoadDelegate.get())))
-        return 0;
-
-    if (FAILED(webView->setUIDelegate(sharedUIDelegate.get())))
-        return 0;
-
-    COMPtr<IWebViewEditing> viewEditing;
-    if (FAILED(webView->QueryInterface(&viewEditing)))
-        return 0;
-
-    if (FAILED(viewEditing->setEditingDelegate(sharedEditingDelegate.get())))
-        return 0;
-
-    ResourceLoadDelegate* resourceLoadDelegate = new ResourceLoadDelegate();
-    HRESULT result = webView->setResourceLoadDelegate(resourceLoadDelegate);
-    resourceLoadDelegate->Release(); // The delegate is owned by the WebView, so release our reference to it.
-    if (FAILED(result))
-        return 0;
-
-    openWindows().append(hostWindow);
-    windowToWebViewMap().set(hostWindow, webView);
-    return webView;
-}
-
-#if USE(CFNETWORK)
-RetainPtr<CFURLCacheRef> sharedCFURLCache()
-{
-#ifndef DEBUG_ALL
-    HMODULE module = GetModuleHandle(TEXT("CFNetwork.dll"));
-#else
-    HMODULE module = GetModuleHandle(TEXT("CFNetwork_debug.dll"));
-#endif
-    if (!module)
-        return 0;
-
-    typedef CFURLCacheRef (*CFURLCacheCopySharedURLCacheProcPtr)(void);
-    if (CFURLCacheCopySharedURLCacheProcPtr copyCache = reinterpret_cast<CFURLCacheCopySharedURLCacheProcPtr>(GetProcAddress(module, "CFURLCacheCopySharedURLCache")))
-        return RetainPtr<CFURLCacheRef>(AdoptCF, copyCache());
-
-    typedef CFURLCacheRef (*CFURLCacheSharedURLCacheProcPtr)(void);
-    if (CFURLCacheSharedURLCacheProcPtr sharedCache = reinterpret_cast<CFURLCacheSharedURLCacheProcPtr>(GetProcAddress(module, "CFURLCacheSharedURLCache")))
-        return sharedCache();
-
-    return 0;
-}
-#endif
-
-static LONG WINAPI exceptionFilter(EXCEPTION_POINTERS*)
-{
-    fputs("#CRASHED\n", stderr);
-    fflush(stderr);
-    return EXCEPTION_CONTINUE_SEARCH;
-}
-
-extern "C" __declspec(dllexport) int WINAPI dllLauncherEntryPoint(int argc, const char* argv[])
-{
-    // Cygwin calls ::SetErrorMode(SEM_FAILCRITICALERRORS), which we will inherit. This is bad for
-    // testing/debugging, as it causes the post-mortem debugger not to be invoked. We reset the
-    // error mode here to work around Cygwin's behavior. See <http://webkit.org/b/55222>.
-    ::SetErrorMode(0);
-
-    ::SetUnhandledExceptionFilter(exceptionFilter);
-
-    leakChecking = false;
-
-    _setmode(1, _O_BINARY);
-    _setmode(2, _O_BINARY);
-
-    initialize();
-
-    Vector<const char*> tests;
-
-    for (int i = 1; i < argc; ++i) {
-        if (!stricmp(argv[i], "--threaded")) {
-            threaded = true;
-            continue;
-        }
-
-        if (!stricmp(argv[i], "--dump-all-pixels")) {
-            dumpAllPixels = true;
-            continue;
-        }
-
-        if (!stricmp(argv[i], "--complex-text")) {
-            forceComplexText = true;
-            continue;
-        }
-
-        if (!stricmp(argv[i], "--print-supported-features")) {
-            printSupportedFeatures = true;
-            continue;
-        }
-
-        if (!stricmp(argv[i], "--pixel-tests")) {
-            dumpPixelsForAllTests = true;
-            continue;
-        }
-
-        tests.append(argv[i]);
-    }
-
-    policyDelegate = new PolicyDelegate();
-    sharedFrameLoadDelegate.adoptRef(new FrameLoadDelegate);
-    sharedUIDelegate.adoptRef(new UIDelegate);
-    sharedEditingDelegate.adoptRef(new EditingDelegate);
-    sharedHistoryDelegate.adoptRef(new HistoryDelegate);
-
-    // FIXME - need to make DRT pass with Windows native controls <http://bugs.webkit.org/show_bug.cgi?id=25592>
-    COMPtr<IWebPreferences> tmpPreferences;
-    if (FAILED(WebKitCreateInstance(CLSID_WebPreferences, 0, IID_IWebPreferences, reinterpret_cast<void**>(&tmpPreferences))))
-        return -1;
-    COMPtr<IWebPreferences> standardPreferences;
-    if (FAILED(tmpPreferences->standardPreferences(&standardPreferences)))
-        return -1;
-    COMPtr<IWebPreferencesPrivate> standardPreferencesPrivate;
-    if (FAILED(standardPreferences->QueryInterface(&standardPreferencesPrivate)))
-        return -1;
-    standardPreferencesPrivate->setShouldPaintNativeControls(FALSE);
-    standardPreferences->setJavaScriptEnabled(TRUE);
-    standardPreferences->setDefaultFontSize(16);
-    standardPreferences->setAcceleratedCompositingEnabled(true);
-    standardPreferences->setContinuousSpellCheckingEnabled(TRUE);
-
-    if (printSupportedFeatures) {
-        BOOL acceleratedCompositingAvailable;
-        standardPreferences->acceleratedCompositingEnabled(&acceleratedCompositingAvailable);
-
-#if ENABLE(3D_RENDERING)
-        // In theory, we could have a software-based 3D rendering implementation that we use when
-        // hardware-acceleration is not available. But we don't have any such software
-        // implementation, so 3D rendering is only available when hardware-acceleration is.
-        BOOL threeDRenderingAvailable = acceleratedCompositingAvailable;
-#else
-        BOOL threeDRenderingAvailable = FALSE;
-#endif
-
-        printf("SupportedFeatures:%s %s\n", acceleratedCompositingAvailable ? "AcceleratedCompositing" : "", threeDRenderingAvailable ? "3DRendering" : "");
-        return 0;
-    }
-
-    COMPtr<IWebView> webView(AdoptCOM, createWebViewAndOffscreenWindow(&webViewWindow));
-    if (!webView)
-        return -1;
-
-    COMPtr<IWebIconDatabase> iconDatabase;
-    COMPtr<IWebIconDatabase> tmpIconDatabase;
-    if (FAILED(WebKitCreateInstance(CLSID_WebIconDatabase, 0, IID_IWebIconDatabase, (void**)&tmpIconDatabase)))
-        return -1;
-    if (FAILED(tmpIconDatabase->sharedIconDatabase(&iconDatabase)))
-        return -1;
-        
-    if (FAILED(webView->mainFrame(&frame)))
-        return -1;
-
-#if USE(CFNETWORK)
-    RetainPtr<CFURLCacheRef> urlCache = sharedCFURLCache();
-    CFURLCacheRemoveAllCachedResponses(urlCache.get());
-#endif
-
-#ifdef _DEBUG
-    _CrtMemState entryToMainMemCheckpoint;
-    if (leakChecking)
-        _CrtMemCheckpoint(&entryToMainMemCheckpoint);
-#endif
-
-    if (threaded)
-        startJavaScriptThreads();
-
-    if (tests.size() == 1 && !strcmp(tests[0], "-")) {
-        char filenameBuffer[2048];
-        printSeparators = true;
-        while (fgets(filenameBuffer, sizeof(filenameBuffer), stdin)) {
-            char* newLineCharacter = strchr(filenameBuffer, '\n');
-            if (newLineCharacter)
-                *newLineCharacter = '\0';
-            
-            if (strlen(filenameBuffer) == 0)
-                continue;
-
-            runTest(filenameBuffer);
-        }
-    } else {
-        printSeparators = tests.size() > 1;
-        for (int i = 0; i < tests.size(); i++)
-            runTest(tests[i]);
-    }
-
-    if (threaded)
-        stopJavaScriptThreads();
-    
-    delete policyDelegate;
-    frame->Release();
-
-#ifdef _DEBUG
-    if (leakChecking) {
-        // dump leaks to stderr
-        _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
-        _CrtSetReportFile(_CRT_WARN, _CRTDBG_FILE_STDERR);
-        _CrtMemDumpAllObjectsSince(&entryToMainMemCheckpoint);
-    }
-#endif
-
-    shutDownWebKit();
-
-    return 0;
-}
diff --git a/Tools/DumpRenderTree/win/DumpRenderTree.vcproj b/Tools/DumpRenderTree/win/DumpRenderTree.vcproj
deleted file mode 100644
index cde6d5b..0000000
--- a/Tools/DumpRenderTree/win/DumpRenderTree.vcproj
+++ /dev/null
@@ -1,760 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="DumpRenderTree"
-	ProjectGUID="{6567DFD4-D6DE-4CD5-825D-17E353D160E1}"
-	RootNamespace="DumpRenderTree"
-	Keyword="Win32Proj"
-	>
-	<Platforms>
-		<Platform
-			Name="Win32"
-		/>
-	</Platforms>
-	<ToolFiles>
-	</ToolFiles>
-	<Configurations>
-		<Configuration
-			Name="Debug|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\DumpRenderTreeDebug.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\DumpRenderTreeRelease.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_Cairo_CFLite|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\DumpRenderTreeDebugCairoCFLite.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release_Cairo_CFLite|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\DumpRenderTreeReleaseCairoCFLite.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_All|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\DumpRenderTreeDebugAll.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Production|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\DumpRenderTreeProduction.vsprops"
-			CharacterSet="1"
-			WholeProgramOptimization="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-	</Configurations>
-	<References>
-	</References>
-	<Files>
-		<Filter
-			Name="Controllers"
-			>
-			<File
-				RelativePath="..\AccessibilityController.cpp"
-				>
-			</File>
-			<File
-				RelativePath="..\AccessibilityController.h"
-				>
-			</File>
-			<File
-				RelativePath=".\AccessibilityControllerWin.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\DRTDataObject.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\DRTDataObject.h"
-				>
-			</File>
-			<File
-				RelativePath=".\DRTDropSource.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\DRTDropSource.h"
-				>
-			</File>
-			<File
-				RelativePath=".\EventSender.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\EventSender.h"
-				>
-			</File>
-			<File
-				RelativePath="..\GCController.cpp"
-				>
-			</File>
-			<File
-				RelativePath="..\GCController.h"
-				>
-			</File>
-			<File
-				RelativePath=".\GCControllerWin.cpp"
-				>
-			</File>
-			<File
-				RelativePath="..\TestRunner.cpp"
-				>
-			</File>
-			<File
-				RelativePath="..\TestRunner.h"
-				>
-			</File>
-			<File
-				RelativePath=".\TestRunnerWin.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\TextInputController.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\TextInputController.h"
-				>
-			</File>
-			<File
-				RelativePath=".\TextInputControllerWin.cpp"
-				>
-			</File>
-		</Filter>
-		<Filter
-			Name="Delegates"
-			>
-			<File
-				RelativePath=".\DRTDesktopNotificationPresenter.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\DRTDesktopNotificationPresenter.h"
-				>
-			</File>
-			<File
-				RelativePath=".\EditingDelegate.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\EditingDelegate.h"
-				>
-			</File>
-			<File
-				RelativePath=".\FrameLoadDelegate.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\FrameLoadDelegate.h"
-				>
-			</File>
-			<File
-				RelativePath=".\HistoryDelegate.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\HistoryDelegate.h"
-				>
-			</File>
-			<File
-				RelativePath=".\PolicyDelegate.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\PolicyDelegate.h"
-				>
-			</File>
-			<File
-				RelativePath=".\ResourceLoadDelegate.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\ResourceLoadDelegate.h"
-				>
-			</File>
-			<File
-				RelativePath=".\UIDelegate.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\UIDelegate.h"
-				>
-			</File>
-		</Filter>
-		<File
-			RelativePath="..\AccessibilityTextMarker.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\AccessibilityTextMarker.h"
-			>
-		</File>
-		<File
-			RelativePath="..\AccessibilityUIElement.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\AccessibilityUIElement.h"
-			>
-		</File>
-		<File
-			RelativePath=".\AccessibilityUIElementWin.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\CyclicRedundancyCheck.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\CyclicRedundancyCheck.h"
-			>
-		</File>
-		<File
-			RelativePath=".\DraggingInfo.h"
-			>
-		</File>
-		<File
-			RelativePath=".\DumpRenderTree.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\DumpRenderTree.h"
-			>
-		</File>
-		<File
-			RelativePath="..\DumpRenderTreeCommon.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\DumpRenderTreePrefix.h"
-			>
-		</File>
-		<File
-			RelativePath=".\DumpRenderTreeWin.h"
-			>
-		</File>
-		<File
-			RelativePath=".\MD5.cpp"
-			>
-			<FileConfiguration
-				Name="Debug_Cairo_CFLite|Win32"
-				ExcludedFromBuild="true"
-				>
-				<Tool
-					Name="VCCLCompilerTool"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="Release_Cairo_CFLite|Win32"
-				ExcludedFromBuild="true"
-				>
-				<Tool
-					Name="VCCLCompilerTool"
-				/>
-			</FileConfiguration>
-		</File>
-		<File
-			RelativePath=".\MD5.h"
-			>
-			<FileConfiguration
-				Name="Debug_Cairo_CFLite|Win32"
-				ExcludedFromBuild="true"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="Release_Cairo_CFLite|Win32"
-				ExcludedFromBuild="true"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-				/>
-			</FileConfiguration>
-		</File>
-		<File
-			RelativePath="..\PixelDumpSupport.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\PixelDumpSupport.h"
-			>
-		</File>
-		<File
-			RelativePath="..\cairo\PixelDumpSupportCairo.cpp"
-			>
-			<FileConfiguration
-				Name="Debug|Win32"
-				ExcludedFromBuild="true"
-				>
-				<Tool
-					Name="VCCLCompilerTool"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="Release|Win32"
-				ExcludedFromBuild="true"
-				>
-				<Tool
-					Name="VCCLCompilerTool"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="Debug_All|Win32"
-				ExcludedFromBuild="true"
-				>
-				<Tool
-					Name="VCCLCompilerTool"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="Production|Win32"
-				ExcludedFromBuild="true"
-				>
-				<Tool
-					Name="VCCLCompilerTool"
-				/>
-			</FileConfiguration>
-		</File>
-		<File
-			RelativePath="..\cairo\PixelDumpSupportCairo.h"
-			>
-			<FileConfiguration
-				Name="Debug|Win32"
-				ExcludedFromBuild="true"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="Release|Win32"
-				ExcludedFromBuild="true"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="Debug_All|Win32"
-				ExcludedFromBuild="true"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="Production|Win32"
-				ExcludedFromBuild="true"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-				/>
-			</FileConfiguration>
-		</File>
-		<File
-			RelativePath="..\cg\PixelDumpSupportCG.cpp"
-			>
-			<FileConfiguration
-				Name="Debug_Cairo_CFLite|Win32"
-				ExcludedFromBuild="true"
-				>
-				<Tool
-					Name="VCCLCompilerTool"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="Release_Cairo_CFLite|Win32"
-				ExcludedFromBuild="true"
-				>
-				<Tool
-					Name="VCCLCompilerTool"
-				/>
-			</FileConfiguration>
-		</File>
-		<File
-			RelativePath="..\cg\PixelDumpSupportCG.h"
-			>
-			<FileConfiguration
-				Name="Debug_Cairo_CFLite|Win32"
-				ExcludedFromBuild="true"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="Release_Cairo_CFLite|Win32"
-				ExcludedFromBuild="true"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-				/>
-			</FileConfiguration>
-		</File>
-		<File
-			RelativePath=".\PixelDumpSupportWin.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\WorkQueue.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\WorkQueue.h"
-			>
-		</File>
-		<File
-			RelativePath="..\WorkQueueItem.h"
-			>
-		</File>
-		<File
-			RelativePath=".\WorkQueueItemWin.cpp"
-			>
-		</File>
-	</Files>
-	<Globals>
-	</Globals>
-</VisualStudioProject>
diff --git a/Tools/DumpRenderTree/win/DumpRenderTreeApple.vsprops b/Tools/DumpRenderTree/win/DumpRenderTreeApple.vsprops
deleted file mode 100644
index f126689..0000000
--- a/Tools/DumpRenderTree/win/DumpRenderTreeApple.vsprops
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="DumpRenderTreeApple"
-	>
-	<Tool
-		Name="VCCLCompilerTool"
-		AdditionalIncludeDirectories="&quot;$(ProjectDir)\..\cg&quot;;"
-	/>
-	<Tool
-		Name="VCLinkerTool"
-		AdditionalDependencies="CoreGraphics$(LibraryConfigSuffix).lib CoreFoundation$(LibraryConfigSuffix).lib CFNetwork$(LibraryConfigSuffix).lib"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/DumpRenderTreeCFLite.vsprops b/Tools/DumpRenderTree/win/DumpRenderTreeCFLite.vsprops
deleted file mode 100644
index 209b3ea..0000000
--- a/Tools/DumpRenderTree/win/DumpRenderTreeCFLite.vsprops
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="DumpRenderTreeCFLite"
-	>
-	<Tool
-		Name="VCLinkerTool"
-		AdditionalDependencies="CFLite$(LibraryConfigSuffix).lib"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/DumpRenderTreeCairo.vsprops b/Tools/DumpRenderTree/win/DumpRenderTreeCairo.vsprops
deleted file mode 100644
index 6d44dec..0000000
--- a/Tools/DumpRenderTree/win/DumpRenderTreeCairo.vsprops
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="DumpRenderTreeCairo"
-	>
-	<Tool
-		Name="VCCLCompilerTool"
-		AdditionalIncludeDirectories="&quot;$(ProjectDir)\..\cairo&quot;;"
-	/>
-	<Tool
-		Name="VCLinkerTool"
-		AdditionalDependencies="cairo.lib"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/DumpRenderTreeCommon.vsprops b/Tools/DumpRenderTree/win/DumpRenderTreeCommon.vsprops
deleted file mode 100644
index ac5003c..0000000
--- a/Tools/DumpRenderTree/win/DumpRenderTreeCommon.vsprops
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="DumpRenderTreeCommon"
-	>
-	<Tool
-		Name="VCCLCompilerTool"
-		AdditionalIncludeDirectories="&quot;$(ProjectDir)\.&quot;;&quot;$(ProjectDir)\..&quot;;&quot;$(ConfigurationBuildDir)\Include&quot;;&quot;$(ConfigurationBuildDir)\Include\private&quot;;&quot;$(ConfigurationBuildDir)\Include\DumpRenderTree\ForwardingHeaders&quot;;&quot;$(ConfigurationBuildDir)\Include\JavaScriptCore&quot;;&quot;$(ConfigurationBuildDir)\Include\private\JavaScriptCore&quot;;&quot;$(ConfigurationBuildDir)\Include\WebCoreTestSupport&quot;;&quot;$(WebKitLibrariesDir)\Include&quot;;&quot;$(WebKitLibrariesDir)\Include\private&quot;;&quot;$(WebKitLibrariesDir)\include\pthreads&quot;;&quot;$(ConfigurationBuildDir)\Include\WebCore&quot;;&quot;$(WebKitLibrariesDir)\Include\WebCore&quot;"
-		PreprocessorDefinitions="_CONSOLE"
-		DisableSpecificWarnings="4146"
-		ForcedIncludeFiles="DumpRenderTreePrefix.h"
-	/>
-	<Tool
-		Name="VCLinkerTool"
-		AdditionalOptions="/NXCOMPAT"
-		AdditionalDependencies="JavaScriptCore$(WebKitDLLConfigSuffix).lib WebKitGUID$(WebKitConfigSuffix).lib WebKit$(WebKitDLLConfigSuffix).lib WebCoreTestSupport$(WebKitConfigSuffix).lib pthreadVC2$(LibraryConfigSuffix).lib gdi32.lib ole32.lib oleaut32.lib user32.lib shlwapi.lib oleacc.lib comsuppw.lib"
-		OutputFile="$(OutDir)\$(ProjectName)$(WebKitConfigSuffix).dll"
-		SubSystem="1"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/DumpRenderTreeDebug.vsprops b/Tools/DumpRenderTree/win/DumpRenderTreeDebug.vsprops
deleted file mode 100644
index 11db1cd..0000000
--- a/Tools/DumpRenderTree/win/DumpRenderTreeDebug.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="DumpRenderTreeDebug"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\FeatureDefines.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;.\DumpRenderTreeCommon.vsprops;.\DumpRenderTreeApple.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/DumpRenderTreeDebugAll.vsprops b/Tools/DumpRenderTree/win/DumpRenderTreeDebugAll.vsprops
deleted file mode 100644
index 38327ed..0000000
--- a/Tools/DumpRenderTree/win/DumpRenderTreeDebugAll.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="DumpRenderTreeDebugAll"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\FeatureDefines.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug_all.vsprops;.\DumpRenderTreeCommon.vsprops;.\DumpRenderTreeApple.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/DumpRenderTreeDebugCairoCFLite.vsprops b/Tools/DumpRenderTree/win/DumpRenderTreeDebugCairoCFLite.vsprops
deleted file mode 100644
index ea3a15c..0000000
--- a/Tools/DumpRenderTree/win/DumpRenderTreeDebugCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="DumpRenderTreeDebugCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\FeatureDefinesCairo.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug_wincairo.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\WinCairo.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\cURL.vsprops;.\DumpRenderTreeCommon.vsprops;.\DumpRenderTreeCairo.vsprops;.\DumpRenderTreeCFLite.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/DumpRenderTreeLauncher.vcproj b/Tools/DumpRenderTree/win/DumpRenderTreeLauncher.vcproj
deleted file mode 100644
index de8a1db..0000000
--- a/Tools/DumpRenderTree/win/DumpRenderTreeLauncher.vcproj
+++ /dev/null
@@ -1,402 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="DumpRenderTreeLauncher"
-	ProjectGUID="{2974EA02-840B-4995-8719-8920A61006F1}"
-	RootNamespace="DumpRenderTreeLauncher"
-	Keyword="Win32Proj"
-	>
-	<Platforms>
-		<Platform
-			Name="Win32"
-		/>
-	</Platforms>
-	<ToolFiles>
-	</ToolFiles>
-	<Configurations>
-		<Configuration
-			Name="Debug|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\DumpRenderTreeLauncherDebug.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/SAFESEH"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\DumpRenderTreeLauncherRelease.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/SAFESEH"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_Cairo_CFLite|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\DumpRenderTreeLauncherDebugCairoCFLite.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/SAFESEH"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_All|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\DumpRenderTreeLauncherDebugAll.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/SAFESEH"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Production|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\DumpRenderTreeLauncherProduction.vsprops"
-			CharacterSet="1"
-			WholeProgramOptimization="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/SAFESEH"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release_Cairo_CFLite|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\DumpRenderTreeLauncherReleaseCairoCFLite.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/SAFESEH"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-	</Configurations>
-	<References>
-	</References>
-	<Files>
-		<File
-			RelativePath="..\..\win\DLLLauncher\DLLLauncherMain.cpp"
-			>
-		</File>
-	</Files>
-	<Globals>
-	</Globals>
-</VisualStudioProject>
diff --git a/Tools/DumpRenderTree/win/DumpRenderTreeLauncherCommon.vsprops b/Tools/DumpRenderTree/win/DumpRenderTreeLauncherCommon.vsprops
deleted file mode 100644
index 033665a..0000000
--- a/Tools/DumpRenderTree/win/DumpRenderTreeLauncherCommon.vsprops
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="DumpRenderTreeLauncherCommon"
-	>
-	<Tool
-		Name="VCCLCompilerTool"
-		PreprocessorDefinitions="USE_CONSOLE_ENTRY_POINT"
-	/>
-	<Tool
-		Name="VCLinkerTool"
-		AdditionalDependencies="shlwapi.lib"
-		OutputFile="$(OutDir)\DumpRenderTree$(WebKitConfigSuffix).exe"
-		ProgramDatabaseFile="$(TargetDir)$(TargetName)Launcher.pdb"
-		SubSystem="1"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/DumpRenderTreeLauncherDebug.vsprops b/Tools/DumpRenderTree/win/DumpRenderTreeLauncherDebug.vsprops
deleted file mode 100644
index 3ec09ff..0000000
--- a/Tools/DumpRenderTree/win/DumpRenderTreeLauncherDebug.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="DumpRenderTreeLauncherDebug"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;.\DumpRenderTreeLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/DumpRenderTreeLauncherDebugAll.vsprops b/Tools/DumpRenderTree/win/DumpRenderTreeLauncherDebugAll.vsprops
deleted file mode 100644
index d1c2cb5..0000000
--- a/Tools/DumpRenderTree/win/DumpRenderTreeLauncherDebugAll.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="DumpRenderTreeLauncherDebugAll"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug_all.vsprops;.\DumpRenderTreeLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/DumpRenderTreeLauncherDebugCairoCFLite.vsprops b/Tools/DumpRenderTree/win/DumpRenderTreeLauncherDebugCairoCFLite.vsprops
deleted file mode 100644
index b2644e0..0000000
--- a/Tools/DumpRenderTree/win/DumpRenderTreeLauncherDebugCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="DumpRenderTreeDebugCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;.\DumpRenderTreeLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/DumpRenderTreeLauncherProduction.vsprops b/Tools/DumpRenderTree/win/DumpRenderTreeLauncherProduction.vsprops
deleted file mode 100644
index bf33601..0000000
--- a/Tools/DumpRenderTree/win/DumpRenderTreeLauncherProduction.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="DumpRenderTreeLauncherProduction"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\production.vsprops;.\DumpRenderTreeLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/DumpRenderTreeLauncherRelease.vsprops b/Tools/DumpRenderTree/win/DumpRenderTreeLauncherRelease.vsprops
deleted file mode 100644
index 535e18f..0000000
--- a/Tools/DumpRenderTree/win/DumpRenderTreeLauncherRelease.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="DumpRenderTreeLauncherRelease"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;.\DumpRenderTreeLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/DumpRenderTreeLauncherReleaseCairoCFLite.vsprops b/Tools/DumpRenderTree/win/DumpRenderTreeLauncherReleaseCairoCFLite.vsprops
deleted file mode 100644
index cf2a0db..0000000
--- a/Tools/DumpRenderTree/win/DumpRenderTreeLauncherReleaseCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="DumpRenderTreeLauncherReleaseCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;.\DumpRenderTreeLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/DumpRenderTreePostBuild.cmd b/Tools/DumpRenderTree/win/DumpRenderTreePostBuild.cmd
deleted file mode 100644
index 464502c..0000000
--- a/Tools/DumpRenderTree/win/DumpRenderTreePostBuild.cmd
+++ /dev/null
@@ -1,62 +0,0 @@
-if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed"
-
-if not defined ARCHIVE_BUILD (if defined PRODUCTION exit /b)
-
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\bin"
-
-if not exist "%WEBKITLIBRARIESDIR%\bin\CoreFoundation%LIBRARYCONFIGSUFFIX%.dll" GOTO:CFLITE
-
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\CoreFoundation%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\CoreFoundation%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\CoreVideo%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\CoreVideo%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\CFNetwork%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\CFNetwork%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d /e /i "%WEBKITLIBRARIESDIR%\bin\CFNetwork.resources" "%CONFIGURATIONBUILDDIR%\bin\CFNetwork.resources"
-xcopy /y /d /e /i "%WEBKITLIBRARIESDIR%\bin\CoreFoundation.resources" "%CONFIGURATIONBUILDDIR%\bin\CoreFoundation.resources"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\CoreGraphics%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\CoreGraphics%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icudt40.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icudt40.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icudt40%LIBRARYCONFIGSUFFIX%.dll"xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icudt40%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icuin40%LIBRARYCONFIGSUFFIX%.dll"xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icuin40%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icuin40%LIBRARYCONFIGSUFFIX%.pdb"xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icuin40%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icuuc40%LIBRARYCONFIGSUFFIX%.dll"xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icuuc40%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icuuc40%LIBRARYCONFIGSUFFIX%.pdb"xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icuuc40%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icudt42.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icudt42.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icudt42%LIBRARYCONFIGSUFFIX%.dll"xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icudt42%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icuin42%LIBRARYCONFIGSUFFIX%.dll"xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icuin42%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icuin42%LIBRARYCONFIGSUFFIX%.pdb"xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icuin42%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icuuc42%LIBRARYCONFIGSUFFIX%.dll"xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icuuc42%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icuuc42%LIBRARYCONFIGSUFFIX%.pdb"xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icuuc42%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\libxml2%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\libxslt%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\pthreadVC2%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\pthreadVC2%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\SQLite3%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\SQLite3%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\zlib1%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\zlib1%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-exit /b
-
-:CFLITE
-if not exist "%WEBKITLIBRARIESDIR%\bin\CFLite%LIBRARYCONFIGSUFFIX%.dll" exit /b
-
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\CFLite%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\CFLite%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d /e /i "%WEBKITLIBRARIESDIR%\bin\CFLite.resources" "%CONFIGURATIONBUILDDIR%\bin\CFLite.resources"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\libcurl.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\libeay32.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\ssleay32.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\cairo.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icudt46.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\libicuuc.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\libicuin.dll" "%CONFIGURATIONBUILDDIR%\bin"
-
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\libxml2%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\libxslt%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\pthreadVC2%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\pthreadVC2%LIBRARYCONFIGSUFFIX%.pdb" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\pthreadVC2%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\SQLite3%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\SQLite3%LIBRARYCONFIGSUFFIX%.pdb" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\SQLite3%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\zlib1%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\zlib1%LIBRARYCONFIGSUFFIX%.pdb" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\zlib1%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
diff --git a/Tools/DumpRenderTree/win/DumpRenderTreePreBuild.cmd b/Tools/DumpRenderTree/win/DumpRenderTreePreBuild.cmd
deleted file mode 100644
index c2f85c7..0000000
--- a/Tools/DumpRenderTree/win/DumpRenderTreePreBuild.cmd
+++ /dev/null
@@ -1,20 +0,0 @@
-%SystemDrive%\cygwin\bin\which.exe bash
-if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
-cmd /c
-if exist "%CONFIGURATIONBUILDDIR%\buildfailed" grep XX%PROJECTNAME%XX "%CONFIGURATIONBUILDDIR%\buildfailed"
-if errorlevel 1 exit 1
-echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed"
-
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\DumpRenderTree"
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\DumpRenderTree\ForwardingHeaders"
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\DumpRenderTree\ForwardingHeaders\runtime"
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\DumpRenderTree\ForwardingHeaders\wtf"
-
-xcopy /y /d "%PROJECTDIR%\..\ForwardingHeaders\wtf\*.h" "%CONFIGURATIONBUILDDIR%\include\DumpRenderTree\ForwardingHeaders\wtf"
-xcopy /y /d "%PROJECTDIR%\..\ForwardingHeaders\runtime\*.h" "%CONFIGURATIONBUILDDIR%\include\DumpRenderTree\ForwardingHeaders\runtime"
-
-if "%CONFIGURATIONNAME%"=="Debug_Cairo_CFLite" xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\wtf\MD5.h" "%CONFIGURATIONBUILDDIR%\include\DumpRenderTree\ForwardingHeaders\wtf"
-if "%CONFIGURATIONNAME%"=="Release_Cairo_CFLite" xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\wtf\MD5.h" "%CONFIGURATIONBUILDDIR%\include\DumpRenderTree\ForwardingHeaders\wtf"
-
-if "%CONFIGURATIONNAME%"=="Debug_Cairo" xcopy /y /d "%TARGETDIR%\..\include\WebCore\ForwardingHeaders\wtf\MD5.h"
-if "%CONFIGURATIONNAME%"=="Release_Cairo" xcopy /y /d "%TARGETDIR%\..\include\WebCore\ForwardingHeaders\wtf\MD5.h"
diff --git a/Tools/DumpRenderTree/win/DumpRenderTreeProduction.vsprops b/Tools/DumpRenderTree/win/DumpRenderTreeProduction.vsprops
deleted file mode 100644
index ee29e00..0000000
--- a/Tools/DumpRenderTree/win/DumpRenderTreeProduction.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="DumpRenderTreeProduction"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\FeatureDefines.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\production.vsprops;.\DumpRenderTreeCommon.vsprops;.\DumpRenderTreeApple.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/DumpRenderTreeRelease.vsprops b/Tools/DumpRenderTree/win/DumpRenderTreeRelease.vsprops
deleted file mode 100644
index 3e8e857..0000000
--- a/Tools/DumpRenderTree/win/DumpRenderTreeRelease.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="DumpRenderTreeRelease"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\FeatureDefines.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;.\DumpRenderTreeCommon.vsprops;.\DumpRenderTreeApple.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/DumpRenderTreeReleaseCairoCFLite.vsprops b/Tools/DumpRenderTree/win/DumpRenderTreeReleaseCairoCFLite.vsprops
deleted file mode 100644
index aef8e0d..0000000
--- a/Tools/DumpRenderTree/win/DumpRenderTreeReleaseCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="DumpRenderTreeReleaseCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\FeatureDefinesCairo.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\WinCairo.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\cURL.vsprops;.\DumpRenderTreeCommon.vsprops;.\DumpRenderTreeCairo.vsprops;.\DumpRenderTreeCFLite.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/DumpRenderTreeWin.h b/Tools/DumpRenderTree/win/DumpRenderTreeWin.h
deleted file mode 100644
index c64c3bf..0000000
--- a/Tools/DumpRenderTree/win/DumpRenderTreeWin.h
+++ /dev/null
@@ -1,71 +0,0 @@
-/*
- * Copyright (C) 2006, 2007 Apple Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef DumpRenderTreeWin_h
-#define DumpRenderTreeWin_h
-
-struct IWebFrame;
-struct IWebScriptWorld;
-struct IWebView;
-struct FrameLoadDelegate;
-struct PolicyDelegate;
-typedef const struct __CFString* CFStringRef;
-typedef struct HWND__* HWND;
-
-extern IWebFrame* topLoadingFrame;
-extern IWebFrame* frame;
-extern PolicyDelegate* policyDelegate;
-
-extern HWND webViewWindow;
-
-#include <WebCore/COMPtr.h>
-#include <string>
-#include <wtf/HashMap.h>
-#include <wtf/Vector.h>
-
-std::wstring urlSuitableForTestResult(const std::wstring& url);
-std::wstring lastPathComponent(const std::wstring&);
-std::string toUTF8(BSTR);
-std::string toUTF8(const std::wstring&);
-std::wstring cfStringRefToWString(CFStringRef);
-
-IWebView* createWebViewAndOffscreenWindow(HWND* webViewWindow = 0);
-Vector<HWND>& openWindows();
-typedef HashMap<HWND, COMPtr<IWebView> > WindowToWebViewMap;
-WindowToWebViewMap& windowToWebViewMap();
-
-void setPersistentUserStyleSheetLocation(CFStringRef);
-bool setAlwaysAcceptCookies(bool alwaysAcceptCookies);
-
-unsigned worldIDForWorld(IWebScriptWorld*);
-
-extern UINT_PTR waitToDumpWatchdog;
-
-extern COMPtr<FrameLoadDelegate> sharedFrameLoadDelegate;
-
-#endif // DumpRenderTreeWin_h
diff --git a/Tools/DumpRenderTree/win/EditingDelegate.cpp b/Tools/DumpRenderTree/win/EditingDelegate.cpp
deleted file mode 100644
index 0975c54..0000000
--- a/Tools/DumpRenderTree/win/EditingDelegate.cpp
+++ /dev/null
@@ -1,424 +0,0 @@
-/*
- * Copyright (C) 2007 Apple Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "EditingDelegate.h"
-
-#include "DumpRenderTree.h"
-#include "TestRunner.h"
-#include <WebCore/COMPtr.h>
-#include <wtf/Assertions.h>
-#include <wtf/Platform.h>
-#include <string>
-#include <tchar.h>
-
-using std::wstring;
-
-EditingDelegate::EditingDelegate()
-    : m_refCount(1)
-    , m_acceptsEditing(true)
-{
-}
-
-// IUnknown
-HRESULT STDMETHODCALLTYPE EditingDelegate::QueryInterface(REFIID riid, void** ppvObject)
-{
-    *ppvObject = 0;
-    if (IsEqualGUID(riid, IID_IUnknown))
-        *ppvObject = static_cast<IWebEditingDelegate*>(this);
-    else if (IsEqualGUID(riid, IID_IWebEditingDelegate))
-        *ppvObject = static_cast<IWebEditingDelegate*>(this);
-    else
-        return E_NOINTERFACE;
-
-    AddRef();
-    return S_OK;
-}
-
-ULONG STDMETHODCALLTYPE EditingDelegate::AddRef(void)
-{
-    return ++m_refCount;
-}
-
-ULONG STDMETHODCALLTYPE EditingDelegate::Release(void)
-{
-    ULONG newRef = --m_refCount;
-    if (!newRef)
-        delete this;
-
-    return newRef;
-}
-
-static wstring dumpPath(IDOMNode* node)
-{
-    ASSERT(node);
-
-    wstring result;
-
-    BSTR name;
-    if (FAILED(node->nodeName(&name)))
-        return result;
-    result.assign(name, SysStringLen(name));
-    SysFreeString(name);
-
-    COMPtr<IDOMNode> parent;
-    if (SUCCEEDED(node->parentNode(&parent)))
-        result += TEXT(" > ") + dumpPath(parent.get());
-
-    return result;
-}
-
-static wstring dump(IDOMRange* range)
-{
-    ASSERT(range);
-
-    int startOffset;
-    if (FAILED(range->startOffset(&startOffset)))
-        return 0;
-
-    int endOffset;
-    if (FAILED(range->endOffset(&endOffset)))
-        return 0;
-
-    COMPtr<IDOMNode> startContainer;
-    if (FAILED(range->startContainer(&startContainer)))
-        return 0;
-
-    COMPtr<IDOMNode> endContainer;
-    if (FAILED(range->endContainer(&endContainer)))
-        return 0;
-
-    wchar_t buffer[1024];
-    _snwprintf(buffer, ARRAYSIZE(buffer), L"range from %ld of %s to %ld of %s", startOffset, dumpPath(startContainer.get()), endOffset, dumpPath(endContainer.get()));
-    return buffer;
-}
-
-HRESULT STDMETHODCALLTYPE EditingDelegate::shouldBeginEditingInDOMRange( 
-    /* [in] */ IWebView* webView,
-    /* [in] */ IDOMRange* range,
-    /* [retval][out] */ BOOL* result)
-{
-    if (!result) {
-        ASSERT_NOT_REACHED();
-        return E_POINTER;
-    }
-
-    if (::gTestRunner->dumpEditingCallbacks() && !done)
-        _tprintf(TEXT("EDITING DELEGATE: shouldBeginEditingInDOMRange:%s\n"), dump(range));
-
-    *result = m_acceptsEditing;
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE EditingDelegate::shouldEndEditingInDOMRange( 
-    /* [in] */ IWebView* webView,
-    /* [in] */ IDOMRange* range,
-    /* [retval][out] */ BOOL* result)
-{
-    if (!result) {
-        ASSERT_NOT_REACHED();
-        return E_POINTER;
-    }
-
-    if (::gTestRunner->dumpEditingCallbacks() && !done)
-        _tprintf(TEXT("EDITING DELEGATE: shouldEndEditingInDOMRange:%s\n"), dump(range));
-
-    *result = m_acceptsEditing;
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE EditingDelegate::shouldInsertNode( 
-    /* [in] */ IWebView* webView,
-    /* [in] */ IDOMNode* node,
-    /* [in] */ IDOMRange* range,
-    /* [in] */ WebViewInsertAction action)
-{
-    static LPCTSTR insertactionstring[] = {
-        TEXT("WebViewInsertActionTyped"),
-        TEXT("WebViewInsertActionPasted"),
-        TEXT("WebViewInsertActionDropped"),
-    };
-
-    if (::gTestRunner->dumpEditingCallbacks() && !done)
-        _tprintf(TEXT("EDITING DELEGATE: shouldInsertNode:%s replacingDOMRange:%s givenAction:%s\n"), dumpPath(node), dump(range), insertactionstring[action]);
-
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE EditingDelegate::shouldInsertText( 
-    /* [in] */ IWebView* webView,
-    /* [in] */ BSTR text,
-    /* [in] */ IDOMRange* range,
-    /* [in] */ WebViewInsertAction action,
-    /* [retval][out] */ BOOL* result)
-{
-    if (!result) {
-        ASSERT_NOT_REACHED();
-        return E_POINTER;
-    }
-
-    static LPCTSTR insertactionstring[] = {
-        TEXT("WebViewInsertActionTyped"),
-        TEXT("WebViewInsertActionPasted"),
-        TEXT("WebViewInsertActionDropped"),
-    };
-
-    if (::gTestRunner->dumpEditingCallbacks() && !done)
-        _tprintf(TEXT("EDITING DELEGATE: shouldInsertText:%s replacingDOMRange:%s givenAction:%s\n"), text ? text : TEXT(""), dump(range), insertactionstring[action]);
-
-    *result = m_acceptsEditing;
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE EditingDelegate::shouldDeleteDOMRange( 
-    /* [in] */ IWebView* webView,
-    /* [in] */ IDOMRange* range,
-    /* [retval][out] */ BOOL* result)
-{
-    if (!result) {
-        ASSERT_NOT_REACHED();
-        return E_POINTER;
-    }
-
-    if (::gTestRunner->dumpEditingCallbacks() && !done)
-        _tprintf(TEXT("EDITING DELEGATE: shouldDeleteDOMRange:%s\n"), dump(range));
-
-    *result = m_acceptsEditing;
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE EditingDelegate::shouldChangeSelectedDOMRange( 
-    /* [in] */ IWebView* webView,
-    /* [in] */ IDOMRange* currentRange,
-    /* [in] */ IDOMRange* proposedRange,
-    /* [in] */ WebSelectionAffinity selectionAffinity,
-    /* [in] */ BOOL stillSelecting,
-    /* [retval][out] */ BOOL* result)
-{
-    if (!result) {
-        ASSERT_NOT_REACHED();
-        return E_POINTER;
-    }
-
-    static LPCTSTR affinitystring[] = {
-        TEXT("NSSelectionAffinityUpstream"),
-        TEXT("NSSelectionAffinityDownstream")
-    };
-    static LPCTSTR boolstring[] = {
-        TEXT("FALSE"),
-        TEXT("TRUE")
-    };
-
-    if (::gTestRunner->dumpEditingCallbacks() && !done)
-        _tprintf(TEXT("EDITING DELEGATE: shouldChangeSelectedDOMRange:%s toDOMRange:%s affinity:%s stillSelecting:%s\n"), dump(currentRange), dump(proposedRange), affinitystring[selectionAffinity], boolstring[stillSelecting]);
-
-    *result = m_acceptsEditing;
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE EditingDelegate::shouldApplyStyle( 
-    /* [in] */ IWebView* webView,
-    /* [in] */ IDOMCSSStyleDeclaration* style,
-    /* [in] */ IDOMRange* range,
-    /* [retval][out] */ BOOL* result)
-{
-    if (!result) {
-        ASSERT_NOT_REACHED();
-        return E_POINTER;
-    }
-
-    if (::gTestRunner->dumpEditingCallbacks() && !done)
-        _tprintf(TEXT("EDITING DELEGATE: shouldApplyStyle:%s toElementsInDOMRange:%s\n"), TEXT("'style description'")/*[[style description] UTF8String]*/, dump(range));
-
-    *result = m_acceptsEditing;
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE EditingDelegate::shouldChangeTypingStyle( 
-    /* [in] */ IWebView* webView,
-    /* [in] */ IDOMCSSStyleDeclaration* currentStyle,
-    /* [in] */ IDOMCSSStyleDeclaration* proposedStyle,
-    /* [retval][out] */ BOOL* result)
-{
-    if (!result) {
-        ASSERT_NOT_REACHED();
-        return E_POINTER;
-    }
-
-    if (::gTestRunner->dumpEditingCallbacks() && !done)
-        _tprintf(TEXT("EDITING DELEGATE: shouldChangeTypingStyle:%s toStyle:%s\n"), TEXT("'currentStyle description'"), TEXT("'proposedStyle description'"));
-
-    *result = m_acceptsEditing;
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE EditingDelegate::doPlatformCommand( 
-    /* [in] */ IWebView *webView,
-    /* [in] */ BSTR command,
-    /* [retval][out] */ BOOL *result)
-{
-    if (!result) {
-        ASSERT_NOT_REACHED();
-        return E_POINTER;
-    }
-
-    if (::gTestRunner->dumpEditingCallbacks() && !done)
-        _tprintf(TEXT("EDITING DELEGATE: doPlatformCommand:%s\n"), command ? command : TEXT(""));
-
-    *result = m_acceptsEditing;
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE EditingDelegate::webViewDidBeginEditing( 
-    /* [in] */ IWebNotification* notification)
-{
-    if (::gTestRunner->dumpEditingCallbacks() && !done) {
-        BSTR name;
-        notification->name(&name);
-        _tprintf(TEXT("EDITING DELEGATE: webViewDidBeginEditing:%s\n"), name ? name : TEXT(""));
-        SysFreeString(name);
-    }
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE EditingDelegate::webViewDidChange( 
-    /* [in] */ IWebNotification *notification)
-{
-    if (::gTestRunner->dumpEditingCallbacks() && !done) {
-        BSTR name;
-        notification->name(&name);
-        _tprintf(TEXT("EDITING DELEGATE: webViewDidBeginEditing:%s\n"), name ? name : TEXT(""));
-        SysFreeString(name);
-    }
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE EditingDelegate::webViewDidEndEditing( 
-    /* [in] */ IWebNotification *notification)
-{
-    if (::gTestRunner->dumpEditingCallbacks() && !done) {
-        BSTR name;
-        notification->name(&name);
-        _tprintf(TEXT("EDITING DELEGATE: webViewDidEndEditing:%s\n"), name ? name : TEXT(""));
-        SysFreeString(name);
-    }
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE EditingDelegate::webViewDidChangeTypingStyle( 
-    /* [in] */ IWebNotification *notification)
-{
-    if (::gTestRunner->dumpEditingCallbacks() && !done) {
-        BSTR name;
-        notification->name(&name);
-        _tprintf(TEXT("EDITING DELEGATE: webViewDidChangeTypingStyle:%s\n"), name ? name : TEXT(""));
-        SysFreeString(name);
-    }
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE EditingDelegate::webViewDidChangeSelection( 
-    /* [in] */ IWebNotification *notification)
-{
-    if (::gTestRunner->dumpEditingCallbacks() && !done) {
-        BSTR name;
-        notification->name(&name);
-        _tprintf(TEXT("EDITING DELEGATE: webViewDidChangeSelection:%s\n"), name ? name : TEXT(""));
-        SysFreeString(name);
-    }
-    return S_OK;
-}
-
-static int indexOfFirstWordCharacter(const TCHAR* text)
-{
-    const TCHAR* cursor = text;
-    while (*cursor && !iswalpha(*cursor))
-        ++cursor;
-    return *cursor ? (cursor - text) : -1;
-};
-
-static int wordLength(const TCHAR* text)
-{
-    const TCHAR* cursor = text;
-    while (*cursor && iswalpha(*cursor))
-        ++cursor;
-    return cursor - text;
-};
-
-HRESULT STDMETHODCALLTYPE EditingDelegate::checkSpellingOfString(
-            /* [in] */ IWebView* view,
-            /* [in] */ LPCTSTR text,
-            /* [in] */ int length,
-            /* [out] */ int* misspellingLocation,
-            /* [out] */ int* misspellingLength)
-{
-    static const TCHAR* misspelledWords[] = {
-        // These words are known misspelled words in webkit tests.
-        // If there are other misspelled words in webkit tests, please add them in
-        // this array.
-        TEXT("foo"),
-        TEXT("Foo"),
-        TEXT("baz"),
-        TEXT("fo"),
-        TEXT("LibertyF"),
-        TEXT("chello"),
-        TEXT("xxxtestxxx"),
-        TEXT("XXxxx"),
-        TEXT("Textx"),
-        TEXT("blockquoted"),
-        TEXT("asd"),
-        TEXT("Lorem"),
-        TEXT("Nunc"),
-        TEXT("Curabitur"),
-        TEXT("eu"),
-        TEXT("adlj"),
-        TEXT("adaasj"),
-        TEXT("sdklj"),
-        TEXT("jlkds"),
-        TEXT("jsaada"),
-        TEXT("jlda"),
-        TEXT("zz"),
-        TEXT("contentEditable"),
-        0,
-    };
-
-    wstring textString(text, length);
-    int wordStart = indexOfFirstWordCharacter(textString.c_str());
-    if (-1 == wordStart)
-        return S_OK;
-    wstring word = textString.substr(wordStart, wordLength(textString.c_str() + wordStart));
-    for (size_t i = 0; misspelledWords[i]; ++i) {
-        if (word == misspelledWords[i]) {
-            *misspellingLocation = wordStart;
-            *misspellingLength = word.size();
-            break;
-        }
-    }
-
-    return S_OK;
-}
diff --git a/Tools/DumpRenderTree/win/EditingDelegate.h b/Tools/DumpRenderTree/win/EditingDelegate.h
deleted file mode 100644
index 7b7f418..0000000
--- a/Tools/DumpRenderTree/win/EditingDelegate.h
+++ /dev/null
@@ -1,176 +0,0 @@
-/*
- * Copyright (C) 2007 Apple Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef EditingDelegate_h
-#define EditingDelegate_h
-
-#include <WebKit/WebKit.h>
-
-class __declspec(uuid("265DCD4B-79C3-44a2-84BC-511C3EDABD6F")) EditingDelegate : public IWebEditingDelegate {
-public:
-    EditingDelegate();
-
-    void setAcceptsEditing(bool b) { m_acceptsEditing = b; }
-
-    // IUnknown
-    virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppvObject);
-    virtual ULONG STDMETHODCALLTYPE AddRef(void);
-    virtual ULONG STDMETHODCALLTYPE Release(void);
-
-    // IWebEditingDelegate
-    virtual HRESULT STDMETHODCALLTYPE shouldBeginEditingInDOMRange( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IDOMRange *range,
-        /* [retval][out] */ BOOL *result);
-    
-    virtual HRESULT STDMETHODCALLTYPE shouldEndEditingInDOMRange( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IDOMRange *range,
-        /* [retval][out] */ BOOL *result);
-    
-    virtual HRESULT STDMETHODCALLTYPE shouldInsertNode( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IDOMNode *node,
-        /* [in] */ IDOMRange *range,
-        /* [in] */ WebViewInsertAction action);
-    
-    virtual HRESULT STDMETHODCALLTYPE shouldInsertText( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ BSTR text,
-        /* [in] */ IDOMRange *range,
-        /* [in] */ WebViewInsertAction action,
-        /* [retval][out] */ BOOL *result);
-    
-    virtual HRESULT STDMETHODCALLTYPE shouldDeleteDOMRange( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IDOMRange *range,
-        /* [retval][out] */ BOOL *result);
-    
-    virtual HRESULT STDMETHODCALLTYPE shouldChangeSelectedDOMRange( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IDOMRange *currentRange,
-        /* [in] */ IDOMRange *proposedRange,
-        /* [in] */ WebSelectionAffinity selectionAffinity,
-        /* [in] */ BOOL stillSelecting,
-        /* [retval][out] */ BOOL *result);
-    
-    virtual HRESULT STDMETHODCALLTYPE shouldApplyStyle( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IDOMCSSStyleDeclaration *style,
-        /* [in] */ IDOMRange *range,
-        /* [retval][out] */ BOOL *result);
-    
-    virtual HRESULT STDMETHODCALLTYPE shouldChangeTypingStyle( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IDOMCSSStyleDeclaration *currentStyle,
-        /* [in] */ IDOMCSSStyleDeclaration *proposedStyle,
-        /* [retval][out] */ BOOL *result);
-    
-    virtual HRESULT STDMETHODCALLTYPE doPlatformCommand( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ BSTR command,
-        /* [retval][out] */ BOOL *result);
-    
-    virtual HRESULT STDMETHODCALLTYPE webViewDidBeginEditing( 
-        /* [in] */ IWebNotification *notification);
-    
-    virtual HRESULT STDMETHODCALLTYPE webViewDidChange( 
-        /* [in] */ IWebNotification *notification);
-    
-    virtual HRESULT STDMETHODCALLTYPE webViewDidEndEditing( 
-        /* [in] */ IWebNotification *notification);
-    
-    virtual HRESULT STDMETHODCALLTYPE webViewDidChangeTypingStyle( 
-        /* [in] */ IWebNotification *notification);
-    
-    virtual HRESULT STDMETHODCALLTYPE webViewDidChangeSelection( 
-        /* [in] */ IWebNotification *notification);
-    
-    virtual HRESULT STDMETHODCALLTYPE undoManagerForWebView( 
-        /* [in] */ IWebView *webView,
-        /* [retval][out] */ IWebUndoManager **undoManager) { return E_NOTIMPL; }
-
-        virtual HRESULT STDMETHODCALLTYPE ignoreWordInSpellDocument( 
-            /* [in] */ IWebView *view,
-            /* [in] */ BSTR word) { return E_NOTIMPL; }
-        
-        virtual HRESULT STDMETHODCALLTYPE learnWord( 
-            /* [in] */ BSTR word) { return E_NOTIMPL; }
-        
-        virtual HRESULT STDMETHODCALLTYPE checkSpellingOfString( 
-            /* [in] */ IWebView *view,
-            /* [in] */ LPCTSTR text,
-            /* [in] */ int length,
-            /* [out] */ int *misspellingLocation,
-            /* [out] */ int *misspellingLength);
-        
-        virtual HRESULT STDMETHODCALLTYPE checkGrammarOfString( 
-            /* [in] */ IWebView *view,
-            /* [in] */ LPCTSTR text,
-            /* [in] */ int length,
-            /* [out] */ IEnumWebGrammarDetails **grammarDetails,
-            /* [out] */ int *badGrammarLocation,
-            /* [out] */ int *badGrammarLength) { return E_NOTIMPL; }
-        
-        virtual HRESULT STDMETHODCALLTYPE updateSpellingUIWithGrammarString( 
-            /* [in] */ BSTR string,
-            /* [in] */ int location,
-            /* [in] */ int length,
-            /* [in] */ BSTR userDescription,
-            /* [in] */ BSTR *guesses,
-            /* [in] */ int guessesCount) { return E_NOTIMPL; }
-        
-        virtual HRESULT STDMETHODCALLTYPE updateSpellingUIWithMisspelledWord( 
-            /* [in] */ BSTR word) { return E_NOTIMPL; }
-        
-        virtual HRESULT STDMETHODCALLTYPE showSpellingUI( 
-            /* [in] */ BOOL show) { return E_NOTIMPL; }
-        
-        virtual HRESULT STDMETHODCALLTYPE spellingUIIsShowing( 
-            /* [retval][out] */ BOOL *result) { return E_NOTIMPL; }
-        
-        virtual HRESULT STDMETHODCALLTYPE guessesForWord( 
-            /* [in] */ BSTR word,
-            /* [retval][out] */ IEnumSpellingGuesses **guesses) { return E_NOTIMPL; }
-        
-        virtual HRESULT STDMETHODCALLTYPE closeSpellDocument( 
-            /* [in] */ IWebView *view) { return E_NOTIMPL; }
-        
-        virtual HRESULT STDMETHODCALLTYPE sharedSpellCheckerExists( 
-            /* [retval][out] */ BOOL *exists) { return E_NOTIMPL; }
-        
-        virtual HRESULT STDMETHODCALLTYPE preflightChosenSpellServer( void) { return E_NOTIMPL; }
-        
-        virtual HRESULT STDMETHODCALLTYPE updateGrammar( void) { return E_NOTIMPL; }
-
-private:
-    bool m_acceptsEditing;
-    ULONG m_refCount;
-};
-
-#endif // !defined(EditingDelegate_h)
diff --git a/Tools/DumpRenderTree/win/EventSender.cpp b/Tools/DumpRenderTree/win/EventSender.cpp
deleted file mode 100644
index 5cc73c0..0000000
--- a/Tools/DumpRenderTree/win/EventSender.cpp
+++ /dev/null
@@ -1,809 +0,0 @@
-/*
- * Copyright (C) 2007, 2008 Apple Inc. All rights reserved.
- * Copyright (C) 2012 Baidu Inc. All rights reserved
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "EventSender.h"
-
-#include "DRTDataObject.h"
-#include "DRTDropSource.h"
-#include "DraggingInfo.h"
-#include "DumpRenderTree.h"
-
-#include <JavaScriptCore/JavaScriptCore.h>
-#include <WebCore/COMPtr.h>
-#include <WebKit/WebKit.h>
-#include <windows.h>
-#include <wtf/ASCIICType.h>
-#include <wtf/Assertions.h>
-#include <wtf/Platform.h>
-#include <wtf/text/WTFString.h>
-
-#define WM_DRT_SEND_QUEUED_EVENT (WM_APP+1)
-#ifndef MAPVK_VK_TO_VSC
-#define MAPVK_VK_TO_VSC 0
-#endif
-
-static bool down;
-static bool dragMode = true;
-static bool replayingSavedEvents;
-static int timeOffset;
-static POINT lastMousePosition;
-
-struct DelayedMessage {
-    MSG msg;
-    unsigned delay;
-};
-
-static DelayedMessage msgQueue[1024];
-static unsigned endOfQueue;
-static unsigned startOfQueue;
-
-static bool didDragEnter;
-DraggingInfo* draggingInfo = 0;
-
-static JSValueRef getDragModeCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception)
-{
-    return JSValueMakeBoolean(context, dragMode);
-}
-
-static bool setDragModeCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception)
-{
-    dragMode = JSValueToBoolean(context, value);
-    return true;
-}
-
-static JSValueRef getConstantCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception)
-{
-    if (JSStringIsEqualToUTF8CString(propertyName, "WM_KEYDOWN"))
-        return JSValueMakeNumber(context, WM_KEYDOWN);
-    if (JSStringIsEqualToUTF8CString(propertyName, "WM_KEYUP"))
-        return JSValueMakeNumber(context, WM_KEYUP);
-    if (JSStringIsEqualToUTF8CString(propertyName, "WM_CHAR"))
-        return JSValueMakeNumber(context, WM_CHAR);
-    if (JSStringIsEqualToUTF8CString(propertyName, "WM_DEADCHAR"))
-        return JSValueMakeNumber(context, WM_DEADCHAR);
-    if (JSStringIsEqualToUTF8CString(propertyName, "WM_SYSKEYDOWN"))
-        return JSValueMakeNumber(context, WM_SYSKEYDOWN);
-    if (JSStringIsEqualToUTF8CString(propertyName, "WM_SYSKEYUP"))
-        return JSValueMakeNumber(context, WM_SYSKEYUP);
-    if (JSStringIsEqualToUTF8CString(propertyName, "WM_SYSCHAR"))
-        return JSValueMakeNumber(context, WM_SYSCHAR);
-    if (JSStringIsEqualToUTF8CString(propertyName, "WM_SYSDEADCHAR"))
-        return JSValueMakeNumber(context, WM_SYSDEADCHAR);
-    ASSERT_NOT_REACHED();
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef leapForwardCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount > 0) {
-        msgQueue[endOfQueue].delay = JSValueToNumber(context, arguments[0], exception);
-        ASSERT(!exception || !*exception);
-    }
-
-    return JSValueMakeUndefined(context);
-}
-
-static DWORD currentEventTime()
-{
-    return ::GetTickCount() + timeOffset;
-}
-
-static MSG makeMsg(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
-{
-    MSG result = {0};
-    result.hwnd = hwnd;
-    result.message = message;
-    result.wParam = wParam;
-    result.lParam = lParam;
-    result.time = currentEventTime();
-    result.pt = lastMousePosition;
-
-    return result;
-}
-
-static LRESULT dispatchMessage(const MSG* msg)
-{
-    ASSERT(msg);
-    ::TranslateMessage(msg);
-    return ::DispatchMessage(msg);
-}
-
-static JSValueRef contextClickCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    COMPtr<IWebFramePrivate> framePrivate;
-    if (SUCCEEDED(frame->QueryInterface(&framePrivate)))
-        framePrivate->layout();
-
-    down = true;
-    MSG msg = makeMsg(webViewWindow, WM_RBUTTONDOWN, 0, MAKELPARAM(lastMousePosition.x, lastMousePosition.y));
-    dispatchMessage(&msg);
-    down = false;
-    msg = makeMsg(webViewWindow, WM_RBUTTONUP, 0, MAKELPARAM(lastMousePosition.x, lastMousePosition.y));
-    dispatchMessage(&msg);
-    
-    return JSValueMakeUndefined(context);
-}
-
-static WPARAM buildModifierFlags(JSContextRef context, const JSValueRef modifiers)
-{
-    JSObjectRef modifiersArray = JSValueToObject(context, modifiers, 0);
-    if (!modifiersArray)
-        return 0;
-
-    WPARAM flags = 0;
-    int modifiersCount = JSValueToNumber(context, JSObjectGetProperty(context, modifiersArray, JSStringCreateWithUTF8CString("length"), 0), 0);
-    for (int i = 0; i < modifiersCount; ++i) {
-        JSValueRef value = JSObjectGetPropertyAtIndex(context, modifiersArray, i, 0);
-        JSStringRef string = JSValueToStringCopy(context, value, 0);
-        if (JSStringIsEqualToUTF8CString(string, "ctrlKey")
-            || JSStringIsEqualToUTF8CString(string, "addSelectionKey"))
-            flags |= MK_CONTROL;
-        else if (JSStringIsEqualToUTF8CString(string, "shiftKey")
-                 || JSStringIsEqualToUTF8CString(string, "rangeSelectionKey"))
-            flags |= MK_SHIFT;
-        // No way to specifiy altKey in a MSG.
-
-        JSStringRelease(string);
-    }
-    return flags;
-}
-
-static JSValueRef mouseDownCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    COMPtr<IWebFramePrivate> framePrivate;
-    if (SUCCEEDED(frame->QueryInterface(&framePrivate)))
-        framePrivate->layout();
-
-    down = true;
-    int mouseType = WM_LBUTTONDOWN;
-    if (argumentCount >= 1) {
-        int mouseNumber = JSValueToNumber(context, arguments[0], exception);
-        switch (mouseNumber) {
-        case 0:
-            mouseType = WM_LBUTTONDOWN;
-            break;
-        case 1:
-            mouseType = WM_MBUTTONDOWN;
-            break;
-        case 2:
-            mouseType = WM_RBUTTONDOWN;
-            break;
-        case 3:
-            // fast/events/mouse-click-events expects the 4th button has event.button = 1, so send an WM_BUTTONDOWN
-            mouseType = WM_MBUTTONDOWN;
-            break;
-        default:
-            mouseType = WM_LBUTTONDOWN;
-            break;
-        }
-    }
-
-    WPARAM wparam = 0;
-    if (argumentCount >= 2)
-        wparam |= buildModifierFlags(context, arguments[1]);
-        
-    MSG msg = makeMsg(webViewWindow, mouseType, wparam, MAKELPARAM(lastMousePosition.x, lastMousePosition.y));
-    if (!msgQueue[endOfQueue].delay)
-        dispatchMessage(&msg);
-    else {
-        // replaySavedEvents has the required logic to make leapForward delays work
-        msgQueue[endOfQueue++].msg = msg;
-        replaySavedEvents();
-    }
-
-    return JSValueMakeUndefined(context);
-}
-
-static inline POINTL pointl(const POINT& point)
-{
-    POINTL result;
-    result.x = point.x;
-    result.y = point.y;
-    return result;
-}
-
-static void doMouseUp(MSG msg, HRESULT* oleDragAndDropReturnValue = 0)
-{
-    COMPtr<IWebFramePrivate> framePrivate;
-    if (SUCCEEDED(frame->QueryInterface(&framePrivate)))
-        framePrivate->layout();
-
-    dispatchMessage(&msg);
-    down = false;
-
-    if (draggingInfo) {
-        COMPtr<IWebView> webView;
-        COMPtr<IDropTarget> webViewDropTarget;
-        if (SUCCEEDED(frame->webView(&webView)) && SUCCEEDED(webView->QueryInterface(IID_IDropTarget, (void**)&webViewDropTarget))) {
-            POINT screenPoint = msg.pt;
-            DWORD effect = 0;
-            ::ClientToScreen(webViewWindow, &screenPoint);
-            if (!didDragEnter) {
-                webViewDropTarget->DragEnter(draggingInfo->dataObject(), 0, pointl(screenPoint), &effect);
-                didDragEnter = true;
-            }
-            HRESULT hr = draggingInfo->dropSource()->QueryContinueDrag(0, 0);
-            if (oleDragAndDropReturnValue)
-                *oleDragAndDropReturnValue = hr;
-            webViewDropTarget->DragOver(0, pointl(screenPoint), &effect);
-            if (hr == DRAGDROP_S_DROP && effect != DROPEFFECT_NONE) {
-                DWORD effect = 0;
-                webViewDropTarget->Drop(draggingInfo->dataObject(), 0, pointl(screenPoint), &effect);
-                draggingInfo->setPerformedDropEffect(effect);
-            } else
-                webViewDropTarget->DragLeave();
-
-            // Reset didDragEnter so that another drag started within the same frame works properly.
-            didDragEnter = false;
-        }
-    }
-}
-
-static JSValueRef mouseUpCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    int mouseType = WM_LBUTTONUP;
-    if (argumentCount >= 1) {
-        int mouseNumber = JSValueToNumber(context, arguments[0], exception);
-        switch (mouseNumber) {
-        case 0:
-            mouseType = WM_LBUTTONUP;
-            break;
-        case 1:
-            mouseType = WM_MBUTTONUP;
-            break;
-        case 2:
-            mouseType = WM_RBUTTONUP;
-            break;
-        case 3:
-            // fast/events/mouse-click-events expects the 4th button has event.button = 1, so send an WM_MBUTTONUP
-            mouseType = WM_MBUTTONUP;
-            break;
-        default:
-            mouseType = WM_LBUTTONUP;
-            break;
-        }
-    }
-
-    WPARAM wparam = 0;
-    if (argumentCount >= 2)
-        wparam |= buildModifierFlags(context, arguments[1]);
-
-    MSG msg = makeMsg(webViewWindow, mouseType, wparam, MAKELPARAM(lastMousePosition.x, lastMousePosition.y));
-
-    if ((dragMode && !replayingSavedEvents) || msgQueue[endOfQueue].delay) {
-        msgQueue[endOfQueue++].msg = msg;
-        replaySavedEvents();
-    } else
-        doMouseUp(msg);
-
-    return JSValueMakeUndefined(context);
-}
-
-static void doMouseMove(MSG msg)
-{
-    COMPtr<IWebFramePrivate> framePrivate;
-    if (SUCCEEDED(frame->QueryInterface(&framePrivate)))
-        framePrivate->layout();
-
-    dispatchMessage(&msg);
-
-    if (down && draggingInfo) {
-        POINT screenPoint = msg.pt;
-        ::ClientToScreen(webViewWindow, &screenPoint);
-
-        IWebView* webView;
-        COMPtr<IDropTarget> webViewDropTarget;
-        if (SUCCEEDED(frame->webView(&webView)) && SUCCEEDED(webView->QueryInterface(IID_IDropTarget, (void**)&webViewDropTarget))) {
-            DWORD effect = 0;
-            if (didDragEnter)
-                webViewDropTarget->DragOver(MK_LBUTTON, pointl(screenPoint), &effect);
-            else {
-                webViewDropTarget->DragEnter(draggingInfo->dataObject(), 0, pointl(screenPoint), &effect);
-                didDragEnter = true;
-            }
-            draggingInfo->dropSource()->GiveFeedback(effect);
-        }
-    }
-}
-
-static JSValueRef mouseMoveToCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 2)
-        return JSValueMakeUndefined(context);
-
-    lastMousePosition.x = (int)JSValueToNumber(context, arguments[0], exception);
-    ASSERT(!exception || !*exception);
-    lastMousePosition.y = (int)JSValueToNumber(context, arguments[1], exception);
-    ASSERT(!exception || !*exception);
-
-    MSG msg = makeMsg(webViewWindow, WM_MOUSEMOVE, down ? MK_LBUTTON : 0, MAKELPARAM(lastMousePosition.x, lastMousePosition.y));
-
-    if (dragMode && down && !replayingSavedEvents) {
-        msgQueue[endOfQueue++].msg = msg;
-        return JSValueMakeUndefined(context);
-    }
-
-    doMouseMove(msg);
-
-    return JSValueMakeUndefined(context);
-}
-
-void replaySavedEvents(HRESULT* oleDragAndDropReturnValue)
-{
-    replayingSavedEvents = true;
-  
-    MSG msg = { 0 };
-
-    while (startOfQueue < endOfQueue && !msgQueue[startOfQueue].delay) {
-        msg = msgQueue[startOfQueue++].msg;
-        switch (msg.message) {
-            case WM_LBUTTONUP:
-            case WM_RBUTTONUP:
-            case WM_MBUTTONUP:
-                doMouseUp(msg, oleDragAndDropReturnValue);
-                break;
-            case WM_MOUSEMOVE:
-                doMouseMove(msg);
-                break;
-            case WM_LBUTTONDOWN:
-            case WM_RBUTTONDOWN:
-            case WM_MBUTTONDOWN:
-                dispatchMessage(&msg);
-                break;
-            default:
-                // Not reached
-                break;
-        }
-    }
-
-    int numQueuedMessages = endOfQueue - startOfQueue;
-    if (!numQueuedMessages) {
-        startOfQueue = 0;
-        endOfQueue = 0;
-        replayingSavedEvents = false;
-        ASSERT(!down);
-        return;
-    }
-
-    if (msgQueue[startOfQueue].delay) {
-        ::Sleep(msgQueue[startOfQueue].delay);
-        msgQueue[startOfQueue].delay = 0;
-    }
-
-    ::PostMessage(webViewWindow, WM_DRT_SEND_QUEUED_EVENT, 0, 0);
-    while (::GetMessage(&msg, webViewWindow, 0, 0)) {
-        // FIXME: Why do we get a WM_MOUSELEAVE? it breaks tests
-        if (msg.message == WM_MOUSELEAVE)
-            continue;
-        if (msg.message != WM_DRT_SEND_QUEUED_EVENT) {
-            dispatchMessage(&msg);
-            continue;
-        }
-        msg = msgQueue[startOfQueue++].msg;
-        switch (msg.message) {
-            case WM_LBUTTONUP:
-            case WM_RBUTTONUP:
-            case WM_MBUTTONUP:
-                doMouseUp(msg, oleDragAndDropReturnValue);
-                break;
-            case WM_MOUSEMOVE:
-                doMouseMove(msg);
-                break;
-            case WM_LBUTTONDOWN:
-            case WM_RBUTTONDOWN:
-            case WM_MBUTTONDOWN:
-                dispatchMessage(&msg);
-                break;
-            default:
-                // Not reached
-                break;
-        }
-        if (startOfQueue >= endOfQueue)
-            break;
-        ::Sleep(msgQueue[startOfQueue].delay);
-        msgQueue[startOfQueue].delay = 0;
-        ::PostMessage(webViewWindow, WM_DRT_SEND_QUEUED_EVENT, 0, 0);
-    }
-    startOfQueue = 0;
-    endOfQueue = 0;
-
-    replayingSavedEvents = false;
-}
-
-static int makeKeyDataForScanCode(int virtualKeyCode)
-{
-    unsigned scancode = MapVirtualKey(virtualKeyCode, MAPVK_VK_TO_VSC);
-    int keyData = scancode & 0xFF;
-    scancode = scancode >> 8;
-    if (scancode == 0xe0 || scancode == 0xe1)
-        keyData += KF_EXTENDED;
-    return keyData << 16;
-}
-
-static JSValueRef keyDownCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    static const JSStringRef lengthProperty = JSStringCreateWithUTF8CString("length");
-
-    COMPtr<IWebFramePrivate> framePrivate;
-    if (SUCCEEDED(frame->QueryInterface(&framePrivate)))
-        framePrivate->layout();
-    
-    JSStringRef character = JSValueToStringCopy(context, arguments[0], exception);
-    ASSERT(!*exception);
-    int virtualKeyCode;
-    int charCode = 0;
-    int keyData = 1;
-    bool needsShiftKeyModifier = false;
-    if (JSStringIsEqualToUTF8CString(character, "leftArrow")) {
-        virtualKeyCode = VK_LEFT;
-        keyData += KF_EXTENDED << 16; // In this case, extended means "not keypad".
-    } else if (JSStringIsEqualToUTF8CString(character, "rightArrow")) {
-        virtualKeyCode = VK_RIGHT;
-        keyData += KF_EXTENDED << 16;
-    } else if (JSStringIsEqualToUTF8CString(character, "upArrow")) {
-        virtualKeyCode = VK_UP;
-        keyData += KF_EXTENDED << 16;
-    } else if (JSStringIsEqualToUTF8CString(character, "downArrow")) {
-        virtualKeyCode = VK_DOWN;
-        keyData += KF_EXTENDED << 16;
-    } else if (JSStringIsEqualToUTF8CString(character, "pageUp"))
-        virtualKeyCode = VK_PRIOR;
-    else if (JSStringIsEqualToUTF8CString(character, "pageDown"))
-        virtualKeyCode = VK_NEXT;
-    else if (JSStringIsEqualToUTF8CString(character, "home"))
-        virtualKeyCode = VK_HOME;
-    else if (JSStringIsEqualToUTF8CString(character, "end"))
-        virtualKeyCode = VK_END;
-    else if (JSStringIsEqualToUTF8CString(character, "insert"))
-        virtualKeyCode = VK_INSERT;
-    else if (JSStringIsEqualToUTF8CString(character, "delete"))
-        virtualKeyCode = VK_DELETE;
-    else if (JSStringIsEqualToUTF8CString(character, "printScreen"))
-        virtualKeyCode = VK_SNAPSHOT;
-    else if (JSStringIsEqualToUTF8CString(character, "menu"))
-        virtualKeyCode = VK_APPS;
-    else if (JSStringIsEqualToUTF8CString(character, "leftControl")) {
-        virtualKeyCode = VK_CONTROL;
-        keyData += makeKeyDataForScanCode(VK_LCONTROL);
-    } else if (JSStringIsEqualToUTF8CString(character, "leftShift")) {
-        virtualKeyCode = VK_SHIFT;
-        keyData += makeKeyDataForScanCode(VK_LSHIFT);
-    } else if (JSStringIsEqualToUTF8CString(character, "leftAlt")) {
-        virtualKeyCode = VK_MENU;
-        keyData += makeKeyDataForScanCode(VK_LMENU);
-    } else if (JSStringIsEqualToUTF8CString(character, "rightControl")) {
-        virtualKeyCode = VK_CONTROL;
-        keyData += makeKeyDataForScanCode(VK_RCONTROL);
-    } else if (JSStringIsEqualToUTF8CString(character, "rightShift")) {
-        virtualKeyCode = VK_SHIFT;
-        keyData += makeKeyDataForScanCode(VK_RSHIFT);
-    } else if (JSStringIsEqualToUTF8CString(character, "rightAlt")) {
-        virtualKeyCode = VK_MENU;
-        keyData += makeKeyDataForScanCode(VK_RMENU);
-    } else {
-        charCode = JSStringGetCharactersPtr(character)[0];
-        virtualKeyCode = LOBYTE(VkKeyScan(charCode));
-        if (WTF::isASCIIUpper(charCode))
-            needsShiftKeyModifier = true;
-    }
-    JSStringRelease(character);
-
-    BYTE keyState[256];
-    if (argumentCount > 1 || needsShiftKeyModifier) {
-        ::GetKeyboardState(keyState);
-
-        BYTE newKeyState[256];
-        memcpy(newKeyState, keyState, sizeof(keyState));
-
-        if (needsShiftKeyModifier)
-            newKeyState[VK_SHIFT] = 0x80;
-
-        if (argumentCount > 1) {
-            JSObjectRef modifiersArray = JSValueToObject(context, arguments[1], 0);
-            if (modifiersArray) {
-                int modifiersCount = JSValueToNumber(context, JSObjectGetProperty(context, modifiersArray, lengthProperty, 0), 0);
-                for (int i = 0; i < modifiersCount; ++i) {
-                    JSValueRef value = JSObjectGetPropertyAtIndex(context, modifiersArray, i, 0);
-                    JSStringRef string = JSValueToStringCopy(context, value, 0);
-                    if (JSStringIsEqualToUTF8CString(string, "ctrlKey") || JSStringIsEqualToUTF8CString(string, "addSelectionKey"))
-                        newKeyState[VK_CONTROL] = 0x80;
-                    else if (JSStringIsEqualToUTF8CString(string, "shiftKey") || JSStringIsEqualToUTF8CString(string, "rangeSelectionKey"))
-                        newKeyState[VK_SHIFT] = 0x80;
-                    else if (JSStringIsEqualToUTF8CString(string, "altKey"))
-                        newKeyState[VK_MENU] = 0x80;
-
-                    JSStringRelease(string);
-                }
-            }
-        }
-
-        ::SetKeyboardState(newKeyState);
-    }
-
-    MSG msg = makeMsg(webViewWindow, (::GetKeyState(VK_MENU) & 0x8000) ? WM_SYSKEYDOWN : WM_KEYDOWN, virtualKeyCode, keyData);
-    if (virtualKeyCode != 255)
-        dispatchMessage(&msg);
-    else {
-        // For characters that do not exist in the active keyboard layout,
-        // ::Translate will not work, so we post an WM_CHAR event ourselves.
-        ::PostMessage(webViewWindow, WM_CHAR, charCode, 0);
-    }
-
-    // Tests expect that all messages are processed by the time keyDown() returns.
-    if (::PeekMessage(&msg, webViewWindow, WM_CHAR, WM_CHAR, PM_REMOVE) || ::PeekMessage(&msg, webViewWindow, WM_SYSCHAR, WM_SYSCHAR, PM_REMOVE))
-        ::DispatchMessage(&msg);
-
-    MSG msgUp = makeMsg(webViewWindow, (::GetKeyState(VK_MENU) & 0x8000) ? WM_SYSKEYUP : WM_KEYUP, virtualKeyCode, keyData);
-    ::DispatchMessage(&msgUp);
-
-    if (argumentCount > 1 || needsShiftKeyModifier)
-        ::SetKeyboardState(keyState);
-
-    return JSValueMakeUndefined(context);
-}
-
-// eventSender.dispatchMessage(message, wParam, lParam, time = currentEventTime(), x = lastMousePosition.x, y = lastMousePosition.y)
-static JSValueRef dispatchMessageCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 3)
-        return JSValueMakeUndefined(context);
-
-    COMPtr<IWebFramePrivate> framePrivate;
-    if (SUCCEEDED(frame->QueryInterface(&framePrivate)))
-        framePrivate->layout();
-    
-    MSG msg = {};
-    msg.hwnd = webViewWindow;
-    msg.message = JSValueToNumber(context, arguments[0], exception);
-    ASSERT(!*exception);
-    msg.wParam = JSValueToNumber(context, arguments[1], exception);
-    ASSERT(!*exception);
-    msg.lParam = static_cast<ULONG_PTR>(JSValueToNumber(context, arguments[2], exception));
-    ASSERT(!*exception);
-    if (argumentCount >= 4) {
-        msg.time = JSValueToNumber(context, arguments[3], exception);
-        ASSERT(!*exception);
-    }
-    if (!msg.time)
-        msg.time = currentEventTime();
-    if (argumentCount >= 6) {
-        msg.pt.x = JSValueToNumber(context, arguments[4], exception);
-        ASSERT(!*exception);
-        msg.pt.y = JSValueToNumber(context, arguments[5], exception);
-        ASSERT(!*exception);
-    } else
-        msg.pt = lastMousePosition;
-
-    ::DispatchMessage(&msg);
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef textZoomInCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return JSValueMakeUndefined(context);
-
-    COMPtr<IWebIBActions> webIBActions(Query, webView);
-    if (!webIBActions)
-        return JSValueMakeUndefined(context);
-
-    webIBActions->makeTextLarger(0);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef textZoomOutCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return JSValueMakeUndefined(context);
-
-    COMPtr<IWebIBActions> webIBActions(Query, webView);
-    if (!webIBActions)
-        return JSValueMakeUndefined(context);
-
-    webIBActions->makeTextSmaller(0);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef zoomPageInCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return JSValueMakeUndefined(context);
-
-    COMPtr<IWebIBActions> webIBActions(Query, webView);
-    if (!webIBActions)
-        return JSValueMakeUndefined(context);
-
-    webIBActions->zoomPageIn(0);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef zoomPageOutCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return JSValueMakeUndefined(context);
-
-    COMPtr<IWebIBActions> webIBActions(Query, webView);
-    if (!webIBActions)
-        return JSValueMakeUndefined(context);
-
-    webIBActions->zoomPageOut(0);
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef beginDragWithFilesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSObjectRef filesArray = JSValueToObject(context, arguments[0], 0);
-
-    if (!filesArray)
-        return JSValueMakeUndefined(context);
-
-    JSStringRef lengthProperty = JSStringCreateWithUTF8CString("length");
-    Vector<UChar> files;
-    int filesCount = JSValueToNumber(context, JSObjectGetProperty(context, filesArray, lengthProperty, 0), 0);
-    for (int i = 0; i < filesCount; ++i) {
-        JSValueRef value = JSObjectGetPropertyAtIndex(context, filesArray, i, 0);
-        JSStringRef file = JSValueToStringCopy(context, value, 0);
-        files.append(JSStringGetCharactersPtr(file), JSStringGetLength(file));
-        files.append(0);
-        JSStringRelease(file);
-    }
-
-    if (files.isEmpty())
-        return JSValueMakeUndefined(context);
-
-    // We should append "0" in the end of |files| so that |DragQueryFileW| retrieved the number of files correctly from Ole Clipboard.
-    files.append(0);
-
-    STGMEDIUM hDropMedium = {0};
-    hDropMedium.tymed = TYMED_HGLOBAL;
-    SIZE_T dropFilesSize = sizeof(DROPFILES) + (sizeof(WCHAR) * files.size());
-    hDropMedium.hGlobal = GlobalAlloc(GMEM_MOVEABLE | GMEM_DDESHARE, dropFilesSize);
-    DROPFILES* dropFiles = reinterpret_cast<DROPFILES*>(GlobalLock(hDropMedium.hGlobal));
-    memset(dropFiles, 0, sizeof(DROPFILES));
-    dropFiles->pFiles = sizeof(DROPFILES);
-    dropFiles->fWide = TRUE;
-
-    UChar* data = reinterpret_cast<UChar*>(reinterpret_cast<BYTE*>(dropFiles) + sizeof(DROPFILES));
-    for (size_t i = 0; i < files.size(); ++i)
-        data[i] = files[i];
-    GlobalUnlock(hDropMedium.hGlobal); 
-
-    STGMEDIUM hFileNameMedium = {0};
-    hFileNameMedium.tymed = TYMED_HGLOBAL;
-    SIZE_T hFileNameSize = sizeof(WCHAR) * files.size();
-    hFileNameMedium.hGlobal = GlobalAlloc(GMEM_MOVEABLE | GMEM_DDESHARE, hFileNameSize);
-    WCHAR* hFileName = static_cast<WCHAR*>(GlobalLock(hFileNameMedium.hGlobal));
-    for (size_t i = 0; i < files.size(); i++)
-        hFileName[i] = files[i];
-    GlobalUnlock(hFileNameMedium.hGlobal);
-
-    if (draggingInfo) {
-        delete draggingInfo;
-        draggingInfo = 0;
-    }
-
-    COMPtr<DRTDataObject> dataObeject;
-    COMPtr<IDropSource> source;
-    if (FAILED(DRTDataObject::createInstance(&dataObeject)))
-        dataObeject = 0;
-
-    if (FAILED(DRTDropSource::createInstance(&source)))
-        source = 0;
-
-    if (dataObeject && source) {
-        draggingInfo = new DraggingInfo(dataObeject.get(), source.get());
-        draggingInfo->setPerformedDropEffect(DROPEFFECT_COPY);
-    }
-
-    if (draggingInfo) {
-        draggingInfo->dataObject()->SetData(cfHDropFormat(), &hDropMedium, FALSE);
-        draggingInfo->dataObject()->SetData(cfFileNameWFormat(), &hFileNameMedium, FALSE);
-        draggingInfo->dataObject()->SetData(cfUrlWFormat(), &hFileNameMedium, FALSE);
-        OleSetClipboard(draggingInfo->dataObject());
-        down = true;
-    }
-
-    JSStringRelease(lengthProperty);
-    return JSValueMakeUndefined(context);
-}
-
-static JSStaticFunction staticFunctions[] = {
-    { "contextClick", contextClickCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "mouseDown", mouseDownCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "mouseUp", mouseUpCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "mouseMoveTo", mouseMoveToCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "leapForward", leapForwardCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "keyDown", keyDownCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "dispatchMessage", dispatchMessageCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "textZoomIn", textZoomInCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "textZoomOut", textZoomOutCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "zoomPageIn", zoomPageInCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "zoomPageOut", zoomPageOutCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { "beginDragWithFiles", beginDragWithFilesCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-    { 0, 0, 0 }
-};
-
-static JSStaticValue staticValues[] = {
-    { "dragMode", getDragModeCallback, setDragModeCallback, kJSPropertyAttributeNone },
-    { "WM_KEYDOWN", getConstantCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeNone },
-    { "WM_KEYUP", getConstantCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeNone },
-    { "WM_CHAR", getConstantCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeNone },
-    { "WM_DEADCHAR", getConstantCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeNone },
-    { "WM_SYSKEYDOWN", getConstantCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeNone },
-    { "WM_SYSKEYUP", getConstantCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeNone },
-    { "WM_SYSCHAR", getConstantCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeNone },
-    { "WM_SYSDEADCHAR", getConstantCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeNone },
-    { 0, 0, 0, 0 }
-};
-
-static JSClassRef getClass(JSContextRef context)
-{
-    static JSClassRef eventSenderClass = 0;
-
-    if (!eventSenderClass) {
-        JSClassDefinition classDefinition = {0};
-        classDefinition.staticFunctions = staticFunctions;
-        classDefinition.staticValues = staticValues;
-
-        eventSenderClass = JSClassCreate(&classDefinition);
-    }
-
-    return eventSenderClass;
-}
-
-JSObjectRef makeEventSender(JSContextRef context, bool isTopFrame)
-{
-    if (isTopFrame) {
-        down = false;
-        dragMode = true;
-        replayingSavedEvents = false;
-        timeOffset = 0;
-        lastMousePosition.x = 0;
-        lastMousePosition.y = 0;
-
-        endOfQueue = 0;
-        startOfQueue = 0;
-
-        didDragEnter = false;
-        draggingInfo = 0;
-    }
-    return JSObjectMake(context, getClass(context), 0);
-}
diff --git a/Tools/DumpRenderTree/win/EventSender.h b/Tools/DumpRenderTree/win/EventSender.h
deleted file mode 100644
index a0add85..0000000
--- a/Tools/DumpRenderTree/win/EventSender.h
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * Copyright (C) 2007 Apple Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef EventSender_h
-#define EventSender_h
-
-class DraggingInfo;
-
-typedef long HRESULT;
-typedef const struct OpaqueJSContext* JSContextRef;
-typedef struct OpaqueJSValue* JSObjectRef;
-
-JSObjectRef makeEventSender(JSContextRef context, bool isTopFrame);
-void replaySavedEvents(HRESULT* oleDragAndDropReturnValue = 0);
-
-extern DraggingInfo* draggingInfo;
-
-#endif
diff --git a/Tools/DumpRenderTree/win/FrameLoadDelegate.cpp b/Tools/DumpRenderTree/win/FrameLoadDelegate.cpp
deleted file mode 100644
index 0ea40fa..0000000
--- a/Tools/DumpRenderTree/win/FrameLoadDelegate.cpp
+++ /dev/null
@@ -1,443 +0,0 @@
-/*
- * Copyright (C) 2005, 2006, 2007, 2009 Apple Inc. All rights reserved.
- * Copyright (C) 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "FrameLoadDelegate.h"
-
-#include "AccessibilityController.h"
-#include "DumpRenderTree.h"
-#include "EventSender.h"
-#include "GCController.h"
-#include "TestRunner.h"
-#include "TextInputController.h"
-#include "WebCoreTestSupport.h"
-#include "WorkQueueItem.h"
-#include "WorkQueue.h"
-#include <WebCore/COMPtr.h>
-#include <JavaScriptCore/JavaScriptCore.h>
-#include <WebKit/WebKit.h>
-#include <stdio.h>
-#include <string>
-#include <wtf/Assertions.h>
-#include <wtf/PassOwnPtr.h>
-#include <wtf/Vector.h>
-
-using std::string;
-
-static FrameLoadDelegate* g_delegateWaitingOnTimer;
-
-string descriptionSuitableForTestResult(IWebFrame* webFrame)
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(webFrame->webView(&webView)))
-        return string();
-
-    COMPtr<IWebFrame> mainFrame;
-    if (FAILED(webView->mainFrame(&mainFrame)))
-        return string();
-
-    BSTR frameNameBSTR;
-    if (FAILED(webFrame->name(&frameNameBSTR)) || toUTF8(frameNameBSTR).empty())
-        return (webFrame == mainFrame) ? "main frame" : string();
-
-    string frameName = (webFrame == mainFrame) ? "main frame" : "frame";
-    frameName += " \"" + toUTF8(frameNameBSTR) + "\""; 
-
-    SysFreeString(frameNameBSTR); 
-    return frameName;
-}
-
-FrameLoadDelegate::FrameLoadDelegate()
-    : m_refCount(1)
-    , m_gcController(adoptPtr(new GCController))
-    , m_accessibilityController(adoptPtr(new AccessibilityController))
-    , m_textInputController(adoptPtr(new TextInputController))
-{
-}
-
-FrameLoadDelegate::~FrameLoadDelegate()
-{
-}
-
-HRESULT STDMETHODCALLTYPE FrameLoadDelegate::QueryInterface(REFIID riid, void** ppvObject)
-{
-    *ppvObject = 0;
-    if (IsEqualGUID(riid, IID_IUnknown))
-        *ppvObject = static_cast<IWebFrameLoadDelegate*>(this);
-    else if (IsEqualGUID(riid, IID_IWebFrameLoadDelegate))
-        *ppvObject = static_cast<IWebFrameLoadDelegate*>(this);
-    else if (IsEqualGUID(riid, IID_IWebFrameLoadDelegatePrivate))
-        *ppvObject = static_cast<IWebFrameLoadDelegatePrivate*>(this);
-    else if (IsEqualGUID(riid, IID_IWebFrameLoadDelegatePrivate2))
-        *ppvObject = static_cast<IWebFrameLoadDelegatePrivate2*>(this);
-    else
-        return E_NOINTERFACE;
-
-    AddRef();
-    return S_OK;
-}
-
-ULONG STDMETHODCALLTYPE FrameLoadDelegate::AddRef(void)
-{
-    return ++m_refCount;
-}
-
-ULONG STDMETHODCALLTYPE FrameLoadDelegate::Release(void)
-{
-    ULONG newRef = --m_refCount;
-    if (!newRef)
-        delete(this);
-
-    return newRef;
-}
-
-
-HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didStartProvisionalLoadForFrame( 
-    /* [in] */ IWebView* webView,
-    /* [in] */ IWebFrame* frame) 
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks())
-        printf("%s - didStartProvisionalLoadForFrame\n", descriptionSuitableForTestResult(frame).c_str());
-
-    // Make sure we only set this once per test.  If it gets cleared, and then set again, we might
-    // end up doing two dumps for one test.
-    if (!topLoadingFrame && !done)
-        topLoadingFrame = frame;
-
-    return S_OK; 
-}
-
-HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didReceiveServerRedirectForProvisionalLoadForFrame( 
-    /* [in] */ IWebView *webView,
-    /* [in] */ IWebFrame *frame)
-{ 
-    if (!done && gTestRunner->dumpFrameLoadCallbacks())
-        printf("%s - didReceiveServerRedirectForProvisionalLoadForFrame\n", descriptionSuitableForTestResult(frame).c_str());
-
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didFailProvisionalLoadWithError( 
-    /* [in] */ IWebView *webView,
-    /* [in] */ IWebError *error,
-    /* [in] */ IWebFrame *frame)
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks())
-        printf("%s - didFailProvisionalLoadWithError\n", descriptionSuitableForTestResult(frame).c_str());
-
-    locationChangeDone(error, frame);
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didCommitLoadForFrame( 
-    /* [in] */ IWebView *webView,
-    /* [in] */ IWebFrame *frame)
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks())
-        printf("%s - didCommitLoadForFrame\n", descriptionSuitableForTestResult(frame).c_str());
-
-    COMPtr<IWebViewPrivate> webViewPrivate;
-    HRESULT hr = webView->QueryInterface(&webViewPrivate);
-    if (FAILED(hr))
-        return hr;
-    webViewPrivate->updateFocusedAndActiveState();
-
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didReceiveTitle( 
-    /* [in] */ IWebView *webView,
-    /* [in] */ BSTR title,
-    /* [in] */ IWebFrame *frame)
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks())
-        printf("%s - didReceiveTitle: %S\n", descriptionSuitableForTestResult(frame).c_str(), title);
-
-    if (::gTestRunner->dumpTitleChanges() && !done)
-        printf("TITLE CHANGED: '%S'\n", title ? title : L"");
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didChangeIcons(
-    /* [in] */ IWebView* webView,
-    /* [in] */ IWebFrame* frame)
-{
-    if (!done && gTestRunner->dumpIconChanges())
-        printf("%s - didChangeIcons\n", descriptionSuitableForTestResult(frame).c_str());
-
-    return S_OK;
-}
-
-void FrameLoadDelegate::processWork()
-{
-    // if another load started, then wait for it to complete.
-    if (topLoadingFrame)
-        return;
-
-    // if we finish all the commands, we're ready to dump state
-    if (WorkQueue::shared()->processWork() && !::gTestRunner->waitToDump())
-        dump();
-}
-
-void FrameLoadDelegate::resetToConsistentState()
-{
-    m_accessibilityController->resetToConsistentState();
-}
-
-typedef Vector<COMPtr<FrameLoadDelegate> > DelegateVector;
-static DelegateVector& delegatesWithDelayedWork()
-{
-    DEFINE_STATIC_LOCAL(DelegateVector, delegates, ());
-    return delegates;
-}
-
-static UINT_PTR processWorkTimerID;
-
-static void CALLBACK processWorkTimer(HWND hwnd, UINT, UINT_PTR id, DWORD)
-{
-    ASSERT_ARG(id, id == processWorkTimerID);
-    ::KillTimer(hwnd, id);
-    processWorkTimerID = 0;
-
-    DelegateVector delegates;
-    delegates.swap(delegatesWithDelayedWork());
-
-    for (size_t i = 0; i < delegates.size(); ++i)
-        delegates[i]->processWork();
-}
-
-void FrameLoadDelegate::locationChangeDone(IWebError*, IWebFrame* frame)
-{
-    if (frame != topLoadingFrame)
-        return;
-
-    topLoadingFrame = 0;
-    WorkQueue::shared()->setFrozen(true);
-
-    if (::gTestRunner->waitToDump())
-        return;
-
-    if (WorkQueue::shared()->count()) {
-        if (!processWorkTimerID)
-            processWorkTimerID = ::SetTimer(0, 0, 0, processWorkTimer);
-        delegatesWithDelayedWork().append(this);
-        return;
-    }
-
-    dump();
-}
-
-HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didFinishLoadForFrame( 
-    /* [in] */ IWebView* webView,
-    /* [in] */ IWebFrame* frame)
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks())
-        printf("%s - didFinishLoadForFrame\n", descriptionSuitableForTestResult(frame).c_str());
-
-    locationChangeDone(0, frame);
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didFailLoadWithError( 
-    /* [in] */ IWebView* webView,
-    /* [in] */ IWebError* error,
-    /* [in] */ IWebFrame* frame)
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks())
-        printf("%s - didFailLoadWithError\n", descriptionSuitableForTestResult(frame).c_str());
-
-    locationChangeDone(error, frame);
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE FrameLoadDelegate::willPerformClientRedirectToURL( 
-    /* [in] */ IWebView *webView,
-    /* [in] */ BSTR url,  
-    /* [in] */ double delaySeconds,
-    /* [in] */ DATE fireDate,
-    /* [in] */ IWebFrame *frame)
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks())
-        printf("%s - willPerformClientRedirectToURL: %S \n", descriptionSuitableForTestResult(frame).c_str(),
-                urlSuitableForTestResult(std::wstring(url, ::SysStringLen(url))).c_str());
-
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didCancelClientRedirectForFrame( 
-    /* [in] */ IWebView *webView,
-    /* [in] */ IWebFrame *frame)
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks())
-        printf("%s - didCancelClientRedirectForFrame\n", descriptionSuitableForTestResult(frame).c_str());
-
-    return S_OK;
-}
-
-
-HRESULT STDMETHODCALLTYPE FrameLoadDelegate::willCloseFrame( 
-    /* [in] */ IWebView *webView,
-    /* [in] */ IWebFrame *frame)
-{
-    return E_NOTIMPL;
-}
-
-HRESULT FrameLoadDelegate::didClearWindowObject(IWebView*, JSContextRef, JSObjectRef, IWebFrame*)
-{
-    return E_NOTIMPL;
-}
-
-HRESULT FrameLoadDelegate::didClearWindowObjectForFrameInScriptWorld(IWebView* webView, IWebFrame* frame, IWebScriptWorld* world)
-{
-    ASSERT_ARG(webView, webView);
-    ASSERT_ARG(frame, frame);
-    ASSERT_ARG(world, world);
-    if (!webView || !frame || !world)
-        return E_POINTER;
-
-    COMPtr<IWebScriptWorld> standardWorld;
-    if (FAILED(world->standardWorld(&standardWorld)))
-        return S_OK;
-
-    if (world == standardWorld)
-        didClearWindowObjectForFrameInStandardWorld(frame);
-    else
-        didClearWindowObjectForFrameInIsolatedWorld(frame, world);
-    return S_OK;
-}
-
-void FrameLoadDelegate::didClearWindowObjectForFrameInIsolatedWorld(IWebFrame* frame, IWebScriptWorld* world)
-{
-    COMPtr<IWebFramePrivate> framePrivate(Query, frame);
-    if (!framePrivate)
-        return;
-
-    JSGlobalContextRef ctx = framePrivate->globalContextForScriptWorld(world);
-    if (!ctx)
-        return;
-
-    JSObjectRef globalObject = JSContextGetGlobalObject(ctx);
-    if (!globalObject)
-        return;
-
-    JSObjectSetProperty(ctx, globalObject, JSRetainPtr<JSStringRef>(Adopt, JSStringCreateWithUTF8CString("__worldID")).get(), JSValueMakeNumber(ctx, worldIDForWorld(world)), kJSPropertyAttributeReadOnly, 0);
-    return;
-}
-
-void FrameLoadDelegate::didClearWindowObjectForFrameInStandardWorld(IWebFrame* frame)
-{
-    JSGlobalContextRef context = frame->globalContext();
-    JSObjectRef windowObject = JSContextGetGlobalObject(context);
-
-    IWebFrame* parentFrame = 0;
-    frame->parentFrame(&parentFrame);
-
-    JSValueRef exception = 0;
-
-    ::gTestRunner->makeWindowObject(context, windowObject, &exception);
-    ASSERT(!exception);
-
-    m_gcController->makeWindowObject(context, windowObject, &exception);
-    ASSERT(!exception);
-
-    m_accessibilityController->makeWindowObject(context, windowObject, &exception);
-    ASSERT(!exception);
-
-    m_textInputController->makeWindowObject(context, windowObject, &exception);
-    ASSERT(!exception);
-
-    JSStringRef eventSenderStr = JSStringCreateWithUTF8CString("eventSender");
-    JSValueRef eventSender = makeEventSender(context, !parentFrame);
-    JSObjectSetProperty(context, windowObject, eventSenderStr, eventSender, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, 0);
-    JSStringRelease(eventSenderStr);
-
-    WebCoreTestSupport::injectInternalsObject(context);
-}
-
-HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didFinishDocumentLoadForFrame( 
-    /* [in] */ IWebView *sender,
-    /* [in] */ IWebFrame *frame)
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks())
-        printf("%s - didFinishDocumentLoadForFrame\n",
-                descriptionSuitableForTestResult(frame).c_str());
-    if (!done) {
-        COMPtr<IWebFramePrivate> webFramePrivate;
-        HRESULT hr = frame->QueryInterface(&webFramePrivate);
-        if (FAILED(hr))
-            return hr;
-        unsigned pendingFrameUnloadEvents;
-        hr = webFramePrivate->pendingFrameUnloadEventCount(&pendingFrameUnloadEvents);
-        if (FAILED(hr))
-            return hr;
-        if (pendingFrameUnloadEvents)
-            printf("%s - has %u onunload handler(s)\n",
-                    descriptionSuitableForTestResult(frame).c_str(), pendingFrameUnloadEvents);
-    }
-
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didHandleOnloadEventsForFrame( 
-    /* [in] */ IWebView *sender,
-    /* [in] */ IWebFrame *frame)
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks())
-        printf("%s - didHandleOnloadEventsForFrame\n",
-                descriptionSuitableForTestResult(frame).c_str());
-
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didFirstVisuallyNonEmptyLayoutInFrame( 
-    /* [in] */ IWebView *sender,
-    /* [in] */ IWebFrame *frame)
-{
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didDisplayInsecureContent( 
-    /* [in] */ IWebView *sender)
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks())
-        printf("didDisplayInsecureContent\n");
-
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didRunInsecureContent( 
-    /* [in] */ IWebView *sender,
-    /* [in] */ IWebSecurityOrigin *origin)
-{
-    if (!done && gTestRunner->dumpFrameLoadCallbacks())
-        printf("didRunInsecureContent\n");
-
-    return S_OK;
-}
-
diff --git a/Tools/DumpRenderTree/win/FrameLoadDelegate.h b/Tools/DumpRenderTree/win/FrameLoadDelegate.h
deleted file mode 100644
index c842579..0000000
--- a/Tools/DumpRenderTree/win/FrameLoadDelegate.h
+++ /dev/null
@@ -1,177 +0,0 @@
-/*
- * Copyright (C) 2005, 2006, 2007 Apple Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef FrameLoadDelegate_h
-#define FrameLoadDelegate_h
-
-#include <WebKit/WebKit.h>
-#include <wtf/OwnPtr.h>
-
-class AccessibilityController;
-class TextInputController;
-class GCController;
-
-class FrameLoadDelegate : public IWebFrameLoadDelegate, public IWebFrameLoadDelegatePrivate2 {
-public:
-    FrameLoadDelegate();
-    virtual ~FrameLoadDelegate();
-
-    void processWork();
-
-    void resetToConsistentState();
-
-    AccessibilityController* accessibilityController() const { return m_accessibilityController.get(); }
-
-    // IUnknown
-    virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppvObject);
-    virtual ULONG STDMETHODCALLTYPE AddRef(void);
-    virtual ULONG STDMETHODCALLTYPE Release(void);
-
-    // IWebFrameLoadDelegate
-    virtual HRESULT STDMETHODCALLTYPE didStartProvisionalLoadForFrame( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IWebFrame *frame); 
-
-    virtual HRESULT STDMETHODCALLTYPE didReceiveServerRedirectForProvisionalLoadForFrame( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IWebFrame *frame);
-
-    virtual HRESULT STDMETHODCALLTYPE didFailProvisionalLoadWithError( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IWebError *error,
-        /* [in] */ IWebFrame *frame);
-
-    virtual HRESULT STDMETHODCALLTYPE didCommitLoadForFrame( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IWebFrame *frame);
-
-    virtual HRESULT STDMETHODCALLTYPE didReceiveTitle( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ BSTR title,
-        /* [in] */ IWebFrame *frame);
-
-    virtual HRESULT STDMETHODCALLTYPE didChangeIcons(
-        /* [in] */ IWebView *webView,
-        /* [in] */ IWebFrame *frame);
-
-    virtual HRESULT STDMETHODCALLTYPE didReceiveIcon( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ OLE_HANDLE image,
-        /* [in] */ IWebFrame *frame) { return E_NOTIMPL; } 
-
-    virtual HRESULT STDMETHODCALLTYPE didFinishLoadForFrame( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IWebFrame *frame);
-
-    virtual HRESULT STDMETHODCALLTYPE didFailLoadWithError( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IWebError *error,
-        /* [in] */ IWebFrame *forFrame);
-
-    virtual HRESULT STDMETHODCALLTYPE didChangeLocationWithinPageForFrame( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IWebFrame *frame) { return E_NOTIMPL; } 
-
-    virtual HRESULT STDMETHODCALLTYPE willPerformClientRedirectToURL( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ BSTR url,
-        /* [in] */ double delaySeconds,
-        /* [in] */ DATE fireDate,
-        /* [in] */ IWebFrame *frame);
-
-    virtual HRESULT STDMETHODCALLTYPE didCancelClientRedirectForFrame( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IWebFrame *frame);
-
-    virtual HRESULT STDMETHODCALLTYPE willCloseFrame( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IWebFrame *frame);
-
-    virtual HRESULT STDMETHODCALLTYPE windowScriptObjectAvailable( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ JSContextRef context,
-        /* [in] */ JSObjectRef windowObject) { return E_NOTIMPL; }
-
-    virtual /* [local] */ HRESULT STDMETHODCALLTYPE didClearWindowObject( 
-        /* [in] */ IWebView* webView,
-        /* [in] */ JSContextRef context,
-        /* [in] */ JSObjectRef windowObject,
-        /* [in] */ IWebFrame* frame);
-
-    // IWebFrameLoadDelegatePrivate
-    virtual HRESULT STDMETHODCALLTYPE didFinishDocumentLoadForFrame( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ IWebFrame *frame);
-        
-    virtual HRESULT STDMETHODCALLTYPE didFirstLayoutInFrame( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ IWebFrame *frame) { return E_NOTIMPL; } 
-        
-    virtual HRESULT STDMETHODCALLTYPE didHandleOnloadEventsForFrame( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ IWebFrame *frame);
-
-    virtual HRESULT STDMETHODCALLTYPE didFirstVisuallyNonEmptyLayoutInFrame( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ IWebFrame *frame);
-
-    // IWebFrameLoadDelegatePrivate2
-    virtual HRESULT STDMETHODCALLTYPE didDisplayInsecureContent( 
-        /* [in] */ IWebView *sender);
-
-    virtual HRESULT STDMETHODCALLTYPE didRunInsecureContent( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ IWebSecurityOrigin *origin);
-
-    virtual HRESULT STDMETHODCALLTYPE didClearWindowObjectForFrameInScriptWorld(IWebView*, IWebFrame*, IWebScriptWorld*);
-
-    virtual HRESULT STDMETHODCALLTYPE didPushStateWithinPageForFrame( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ IWebFrame *frame) { return E_NOTIMPL; } 
-    
-    virtual HRESULT STDMETHODCALLTYPE didReplaceStateWithinPageForFrame( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ IWebFrame *frame) { return E_NOTIMPL; } 
-
-    virtual HRESULT STDMETHODCALLTYPE didPopStateWithinPageForFrame( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ IWebFrame *frame) { return E_NOTIMPL; } 
-
-private:
-    void didClearWindowObjectForFrameInIsolatedWorld(IWebFrame*, IWebScriptWorld*);
-    void didClearWindowObjectForFrameInStandardWorld(IWebFrame*);
-
-    void locationChangeDone(IWebError*, IWebFrame*);
-
-    ULONG m_refCount;
-    OwnPtr<GCController> m_gcController;
-    OwnPtr<AccessibilityController> m_accessibilityController;
-    OwnPtr<TextInputController> m_textInputController;
-};
-
-#endif // FrameLoadDelegate_h
diff --git a/Tools/DumpRenderTree/win/GCControllerWin.cpp b/Tools/DumpRenderTree/win/GCControllerWin.cpp
deleted file mode 100644
index b867250..0000000
--- a/Tools/DumpRenderTree/win/GCControllerWin.cpp
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- * Copyright (C) 2007 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "GCController.h"
-
-#include "DumpRenderTree.h"
-#include <WebCore/COMPtr.h>
-#include <WebKit/WebKit.h>
-#include <WebKit/WebKitCOMAPI.h>
-
-void GCController::collect() const
-{
-    COMPtr<IWebJavaScriptCollector> collector;
-    if (FAILED(WebKitCreateInstance(CLSID_WebJavaScriptCollector, 0, IID_IWebJavaScriptCollector, (void**)&collector)))
-        return;
-    collector->collect();
-}
-
-void GCController::collectOnAlternateThread(bool waitUntilDone) const
-{
-    COMPtr<IWebJavaScriptCollector> collector;
-    if (FAILED(WebKitCreateInstance(CLSID_WebJavaScriptCollector, 0, IID_IWebJavaScriptCollector, (void**)&collector)))
-        return;
-    collector->collectOnAlternateThread(waitUntilDone ? TRUE : FALSE);
-}
-
-size_t GCController::getJSObjectCount() const
-{
-    COMPtr<IWebJavaScriptCollector> collector;
-    if (FAILED(WebKitCreateInstance(CLSID_WebJavaScriptCollector, 0, IID_IWebJavaScriptCollector, (void**)&collector)))
-        return 0;
-    UINT objects = 0;
-    collector->objectCount(&objects);
-    return objects;
-}
diff --git a/Tools/DumpRenderTree/win/HistoryDelegate.cpp b/Tools/DumpRenderTree/win/HistoryDelegate.cpp
deleted file mode 100644
index ab92b09..0000000
--- a/Tools/DumpRenderTree/win/HistoryDelegate.cpp
+++ /dev/null
@@ -1,221 +0,0 @@
-/*
- * Copyright (C) 2009 Apple Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#include "config.h"
-#include "HistoryDelegate.h"
-
-#include "DumpRenderTree.h"
-#include "DumpRenderTreeWin.h"
-#include "TestRunner.h"
-#include <string>
-#include <WebKit/WebKit.h>
-
-using std::wstring;
-
-static inline wstring wstringFromBSTR(BSTR str)
-{
-    return wstring(str, ::SysStringLen(str));
-}
-
-HistoryDelegate::HistoryDelegate()
-    : m_refCount(1)
-{
-}
-
-HistoryDelegate::~HistoryDelegate()
-{
-}
-
-    // IUnknown
-HRESULT HistoryDelegate::QueryInterface(REFIID riid, void** ppvObject)
-{
-    *ppvObject = 0;
-    if (IsEqualGUID(riid, IID_IUnknown))
-        *ppvObject = static_cast<IWebHistoryDelegate*>(this);
-    else if (IsEqualGUID(riid, IID_IWebHistoryDelegate))
-        *ppvObject = static_cast<IWebHistoryDelegate*>(this);
-    else
-        return E_NOINTERFACE;
-
-    AddRef();
-    return S_OK;
-}
-
-ULONG HistoryDelegate::AddRef(void)
-{
-    return ++m_refCount;
-}
-
-ULONG HistoryDelegate::Release(void)
-{
-    ULONG newRef = --m_refCount;
-    if (!newRef)
-        delete(this);
-
-    return newRef;
-}
-
-// IWebHistoryDelegate
-HRESULT HistoryDelegate::didNavigateWithNavigationData(IWebView* webView, IWebNavigationData* navigationData, IWebFrame* webFrame)
-{
-    if (!gTestRunner->dumpHistoryDelegateCallbacks())
-        return S_OK;
-
-    BSTR urlBSTR;
-    if (FAILED(navigationData->url(&urlBSTR)))
-        return E_FAIL;
-    wstring url;
-    if (urlBSTR)
-        url = urlSuitableForTestResult(wstringFromBSTR(urlBSTR));
-    SysFreeString(urlBSTR);
-
-    BSTR titleBSTR;
-    if (FAILED(navigationData->title(&titleBSTR)))
-        return E_FAIL;
-    wstring title;
-    if (titleBSTR)
-        title = wstringFromBSTR(titleBSTR);
-    SysFreeString(titleBSTR);
-
-    COMPtr<IWebURLRequest> request;
-    if (FAILED(navigationData->originalRequest(&request)))
-        return E_FAIL;
-
-    BSTR httpMethodBSTR;
-    if (FAILED(request->HTTPMethod(&httpMethodBSTR)))
-        return E_FAIL;
-    wstring httpMethod;
-    if (httpMethodBSTR)
-        httpMethod = wstringFromBSTR(httpMethodBSTR);
-    SysFreeString(httpMethodBSTR);
-
-    COMPtr<IWebURLResponse> response;
-    if (FAILED(navigationData->response(&response)))
-        return E_FAIL;
-
-    COMPtr<IWebHTTPURLResponse> httpResponse;
-    if (FAILED(response->QueryInterface(&httpResponse)))
-        return E_FAIL;
-
-    int statusCode = 0;
-    if (FAILED(httpResponse->statusCode(&statusCode)))
-        return E_FAIL;
-
-    BOOL hasSubstituteData;
-    if (FAILED(navigationData->hasSubstituteData(&hasSubstituteData)))
-        return E_FAIL;
-
-    BSTR clientRedirectSourceBSTR;
-    if (FAILED(navigationData->clientRedirectSource(&clientRedirectSourceBSTR)))
-        return E_FAIL;
-    bool hasClientRedirect = clientRedirectSourceBSTR && SysStringLen(clientRedirectSourceBSTR);
-    wstring redirectSource;
-    if (clientRedirectSourceBSTR)
-        redirectSource = urlSuitableForTestResult(wstringFromBSTR(clientRedirectSourceBSTR));
-    SysFreeString(clientRedirectSourceBSTR);
-
-    bool wasFailure = hasSubstituteData || (httpResponse && statusCode >= 400);
-        
-    printf("WebView navigated to url \"%S\" with title \"%S\" with HTTP equivalent method \"%S\".  The navigation was %s and was %s%S.\n", 
-        url.c_str(), 
-        title.c_str(), 
-        httpMethod.c_str(),
-        wasFailure ? "a failure" : "successful", 
-        hasClientRedirect ? "a client redirect from " : "not a client redirect", 
-        redirectSource.c_str());
-
-    return S_OK;
-}
-
-HRESULT HistoryDelegate::didPerformClientRedirectFromURL(IWebView*, BSTR sourceURL, BSTR destinationURL, IWebFrame*)
-{
-    if (!gTestRunner->dumpHistoryDelegateCallbacks())
-        return S_OK;
-
-    wstring source;
-    if (sourceURL)
-        source = urlSuitableForTestResult(wstringFromBSTR(sourceURL));
-    
-    wstring destination;
-    if (destinationURL)
-        destination = urlSuitableForTestResult(wstringFromBSTR(destinationURL));
-
-    printf("WebView performed a client redirect from \"%S\" to \"%S\".\n", source.c_str(), destination.c_str());
-    return S_OK;
-}
-    
-HRESULT HistoryDelegate::didPerformServerRedirectFromURL(IWebView* webView, BSTR sourceURL, BSTR destinationURL, IWebFrame* webFrame)
-{
-    if (!gTestRunner->dumpHistoryDelegateCallbacks())
-        return S_OK;
-
-    wstring source;
-    if (sourceURL)
-        source = urlSuitableForTestResult(wstringFromBSTR(sourceURL));
-    
-    wstring destination;
-    if (destinationURL)
-        destination = urlSuitableForTestResult(wstringFromBSTR(destinationURL));
-
-    printf("WebView performed a server redirect from \"%S\" to \"%S\".\n", source.c_str(), destination.c_str());
-    return S_OK;
-}
-
-HRESULT HistoryDelegate::updateHistoryTitle(IWebView* webView, BSTR titleBSTR, BSTR urlBSTR)
-{
-    if (!gTestRunner->dumpHistoryDelegateCallbacks())
-        return S_OK;
-    
-    wstring url;
-    if (urlBSTR)
-        url = urlSuitableForTestResult(wstringFromBSTR(urlBSTR));
-
-    wstring title;
-    if (titleBSTR)
-        title = wstringFromBSTR(titleBSTR);
-
-    printf("WebView updated the title for history URL \"%S\" to \"%S\".\n", url.c_str(), title.c_str());
-    return S_OK;
-}
-    
-HRESULT HistoryDelegate::populateVisitedLinksForWebView(IWebView* webView)
-{
-    if (!gTestRunner->dumpHistoryDelegateCallbacks())
-        return S_OK;
-
-    BSTR urlBSTR;
-    if (FAILED(webView->mainFrameURL(&urlBSTR)))
-        return E_FAIL;
-
-    wstring url;
-    if (urlBSTR)
-        url = urlSuitableForTestResult(wstringFromBSTR(urlBSTR));
-    SysFreeString(urlBSTR);
-
-    if (gTestRunner->dumpVisitedLinksCallback())
-        printf("Asked to populate visited links for WebView \"%S\"\n", url.c_str());
-
-    return S_OK;
-}
diff --git a/Tools/DumpRenderTree/win/HistoryDelegate.h b/Tools/DumpRenderTree/win/HistoryDelegate.h
deleted file mode 100644
index 41be670..0000000
--- a/Tools/DumpRenderTree/win/HistoryDelegate.h
+++ /dev/null
@@ -1,72 +0,0 @@
-/*
- * Copyright (C) 2009 Apple Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#ifndef HistoryDelegate_h
-#define HistoryDelegate_h
-
-#include <WebKit/WebKit.h>
-#include <wtf/OwnPtr.h>
-
-class HistoryDelegate : public IWebHistoryDelegate {
-public:
-    HistoryDelegate();
-    virtual ~HistoryDelegate();
-
-    // IUnknown
-    virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppvObject);
-    virtual ULONG STDMETHODCALLTYPE AddRef(void);
-    virtual ULONG STDMETHODCALLTYPE Release(void);
-
-    // IWebHistoryDelegate
-    virtual HRESULT STDMETHODCALLTYPE didNavigateWithNavigationData(
-        /* [in] */ IWebView* webView, 
-        /* [in] */ IWebNavigationData* navigationData, 
-        /* [in] */ IWebFrame* webFrame);
-
-    virtual HRESULT STDMETHODCALLTYPE didPerformClientRedirectFromURL(
-        /* [in] */ IWebView* webView, 
-        /* [in] */ BSTR sourceURL, 
-        /* [in] */ BSTR destinationURL, 
-        /* [in] */ IWebFrame* webFrame);
-    
-    virtual HRESULT STDMETHODCALLTYPE didPerformServerRedirectFromURL(
-        /* [in] */ IWebView* webView, 
-        /* [in] */ BSTR sourceURL, 
-        /* [in] */ BSTR destinationURL, 
-        /* [in] */ IWebFrame* webFrame);
-    
-    virtual HRESULT STDMETHODCALLTYPE updateHistoryTitle(
-        /* [in] */ IWebView* webView, 
-        /* [in] */ BSTR title, 
-        /* [in] */ BSTR url);
-    
-    virtual HRESULT STDMETHODCALLTYPE populateVisitedLinksForWebView(
-        /* [in] */ IWebView* webView);
-
-private:
-    ULONG m_refCount;
-};
-
-#endif // HistoryDelegate_h
diff --git a/Tools/DumpRenderTree/win/ImageDiff.vcproj b/Tools/DumpRenderTree/win/ImageDiff.vcproj
deleted file mode 100644
index c3201bf..0000000
--- a/Tools/DumpRenderTree/win/ImageDiff.vcproj
+++ /dev/null
@@ -1,452 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="ImageDiff"
-	ProjectGUID="{59CC0547-70AC-499C-9B19-EC01C6F61137}"
-	RootNamespace="ImageDiff"
-	>
-	<Platforms>
-		<Platform
-			Name="Win32"
-		/>
-	</Platforms>
-	<ToolFiles>
-	</ToolFiles>
-	<Configurations>
-		<Configuration
-			Name="Debug|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\ImageDiffDebug.vsprops"
-			CharacterSet="2"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\ImageDiffRelease.vsprops"
-			CharacterSet="2"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_All|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\ImageDiffDebugAll.vsprops"
-			CharacterSet="2"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_Cairo_CFLite|Win32"
-			IntermediateDirectory="$(ConfigurationName)"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\ImageDiffDebugCairoCFLite.vsprops"
-			CharacterSet="2"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Production|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\ImageDiffProduction.vsprops"
-			CharacterSet="2"
-			WholeProgramOptimization="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release_Cairo_CFLite|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\ImageDiffReleaseCairoCFLite.vsprops"
-			CharacterSet="2"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-	</Configurations>
-	<References>
-	</References>
-	<Files>
-		<File
-			RelativePath="..\win\ImageDiffCairo.cpp"
-			>
-			<FileConfiguration
-				Name="Debug|Win32"
-				ExcludedFromBuild="true"
-				>
-				<Tool
-					Name="VCCLCompilerTool"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="Release|Win32"
-				ExcludedFromBuild="true"
-				>
-				<Tool
-					Name="VCCLCompilerTool"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="Debug_All|Win32"
-				ExcludedFromBuild="true"
-				>
-				<Tool
-					Name="VCCLCompilerTool"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="Production|Win32"
-				ExcludedFromBuild="true"
-				>
-				<Tool
-					Name="VCCLCompilerTool"
-				/>
-			</FileConfiguration>
-		</File>
-		<File
-			RelativePath="..\cg\ImageDiffCG.cpp"
-			>
-			<FileConfiguration
-				Name="Debug_Cairo_CFLite|Win32"
-				ExcludedFromBuild="true"
-				>
-				<Tool
-					Name="VCCLCompilerTool"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="Release_Cairo_CFLite|Win32"
-				ExcludedFromBuild="true"
-				>
-				<Tool
-					Name="VCCLCompilerTool"
-				/>
-			</FileConfiguration>
-		</File>
-		<File
-			RelativePath=".\ImageDiffWin.cpp"
-			>
-		</File>
-	</Files>
-	<Globals>
-	</Globals>
-</VisualStudioProject>
diff --git a/Tools/DumpRenderTree/win/ImageDiffCairo.cpp b/Tools/DumpRenderTree/win/ImageDiffCairo.cpp
deleted file mode 100644
index d10cc14..0000000
--- a/Tools/DumpRenderTree/win/ImageDiffCairo.cpp
+++ /dev/null
@@ -1,260 +0,0 @@
-/*
- * Copyright (C) 2005, 2007 Apple Inc. All rights reserved.
- * Copyright (C) 2005 Ben La Monica <ben.lamonica@gmail.com>.  All rights reserved.
- * Copyright (C) 2011 Brent Fulgham. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-// FIXME: We need to be able to include these defines from a config.h somewhere.
-#define JS_EXPORT_PRIVATE
-#define WTF_EXPORT_PRIVATE
-
-#include <cairo.h>
-#include <stdio.h>
-#include <wtf/Platform.h>
-#include <wtf/RefPtr.h>
-#include <wtf/RetainPtr.h>
-
-#if PLATFORM(WIN)
-#include <fcntl.h>
-#include <io.h>
-#include <windows.h>
-#include <wtf/MathExtras.h>
-#endif
-
-using namespace std;
-
-static const int s_bufferSize = 2048;
-static const int s_bytesPerPixel = 4;
-static cairo_user_data_key_t s_imageDataKey;
-
-
-#if PLATFORM(WIN)
-#undef min
-#undef max
-
-static inline float strtof(const char* inputString, char** endptr)
-{
-    return strtod(inputString, endptr);
-}
-#endif
-
-static cairo_status_t readFromData(void* closure, unsigned char* data, unsigned int length)
-{
-    CFMutableDataRef dataSource = reinterpret_cast<CFMutableDataRef>(closure);
-
-    CFRange range = CFRangeMake(0, length);
-    CFDataGetBytes(dataSource, range, data);
-    CFDataDeleteBytes(dataSource, range);
-
-    return CAIRO_STATUS_SUCCESS;
-}
-
-static cairo_surface_t* createImageFromStdin(int bytesRemaining)
-{
-    unsigned char buffer[s_bufferSize];
-    RetainPtr<CFMutableDataRef> data(AdoptCF, CFDataCreateMutable(0, bytesRemaining));
-
-    while (bytesRemaining > 0) {
-        size_t bytesToRead = min(bytesRemaining, s_bufferSize);
-        size_t bytesRead = fread(buffer, 1, bytesToRead, stdin);
-        CFDataAppendBytes(data.get(), buffer, static_cast<CFIndex>(bytesRead));
-        bytesRemaining -= static_cast<int>(bytesRead);
-    }
-
-    return cairo_image_surface_create_from_png_stream (static_cast<cairo_read_func_t>(readFromData), data.get());
-}
-
-static void releaseMallocBuffer(void* data)
-{
-    free(data);
-}
-
-static inline float pixelDifference(float expected, float actual)
-{
-    return (actual - expected) / max<float>(255 - expected, expected);
-}
-
-static inline void normalizeBuffer(float maxDistance, unsigned char* buffer, size_t length)
-{
-    if (maxDistance >= 1)
-        return;
-
-    for (size_t p = 0; p < length; ++p)
-        buffer[p] /= maxDistance;
-}
-
-static cairo_surface_t* createDifferenceImage(cairo_surface_t* baselineImage, cairo_surface_t* actualImage, float& difference)
-{
-    size_t width = cairo_image_surface_get_width(baselineImage);
-    size_t height = cairo_image_surface_get_height(baselineImage);
-
-    unsigned char* baselinePixel = cairo_image_surface_get_data(baselineImage);
-    unsigned char* actualPixel = cairo_image_surface_get_data(actualImage);
-
-    // Compare the content of the 2 bitmaps
-    void* diffBuffer = malloc(width * height);
-    unsigned char* diffPixel = reinterpret_cast<unsigned char*>(diffBuffer);
-
-    float count = 0;
-    float sum = 0;
-    float maxDistance = 0;
-    for (size_t y = 0; y < height; ++y) {
-        for (size_t x = 0; x < width; ++x) {
-            float red = pixelDifference(baselinePixel[0], actualPixel[0]);
-            float green = pixelDifference(baselinePixel[1], actualPixel[1]);
-            float blue = pixelDifference(baselinePixel[2], actualPixel[2]);
-            float alpha = pixelDifference(baselinePixel[3], actualPixel[3]);
-
-            float distance = sqrtf(red * red + green * green + blue * blue + alpha * alpha) / 2.0;
-            
-            *diffPixel++ = static_cast<unsigned char>(distance * 255);
-            
-            if (distance >= 1.0 / 255.0) {
-                ++count;
-                sum += distance;
-                if (distance > maxDistance)
-                    maxDistance = distance;
-            }
-            
-            baselinePixel += s_bytesPerPixel;
-            actualPixel += s_bytesPerPixel;
-        }
-    }
-    
-    // Compute the difference as a percentage combining both the number of different pixels and their difference amount i.e. the average distance over the entire image
-    if (count > 0)
-        difference = 100.0f * sum / (height * width);
-    else
-        difference = 0;
-
-    if (!difference) {
-        free(diffBuffer);
-        return 0;
-    }
-
-    // Generate a normalized diff image
-    normalizeBuffer(maxDistance, reinterpret_cast<unsigned char*>(diffBuffer), height * width);
-        
-    cairo_surface_t* diffImage = cairo_image_surface_create_for_data(diffPixel, CAIRO_FORMAT_ARGB32, width, height, width * s_bytesPerPixel); 
-    cairo_surface_set_user_data(diffImage, &s_imageDataKey, diffBuffer, releaseMallocBuffer);
-    
-    return diffImage;
-}
-
-static inline bool imageHasAlpha(cairo_surface_t* image)
-{
-    return (cairo_image_surface_get_format(image) == CAIRO_FORMAT_ARGB32);
-}
-
-static cairo_status_t writeToData(void* closure, unsigned char* data, unsigned int length)
-{
-    CFMutableDataRef dataTarget = reinterpret_cast<CFMutableDataRef>(closure);
-
-    CFDataAppendBytes(dataTarget, data, length);
-
-    return CAIRO_STATUS_SUCCESS;
-}
-
-int main(int argc, const char* argv[])
-{
-#if PLATFORM(WIN)
-    _setmode(0, _O_BINARY);
-    _setmode(1, _O_BINARY);
-#endif
-
-    float tolerance = 0;
-
-    for (int i = 1; i < argc; ++i) {
-        if (!strcmp(argv[i], "-t") || !strcmp(argv[i], "--tolerance")) {
-            if (i >= argc - 1)
-                exit(1);
-            tolerance = strtof(argv[i + 1], 0);
-            ++i;
-            continue;
-        }
-    }
-
-    char buffer[s_bufferSize];
-    cairo_surface_t* actualImage = 0;
-    cairo_surface_t* baselineImage = 0;
-
-    while (fgets(buffer, sizeof(buffer), stdin)) {
-        char* newLineCharacter = strchr(buffer, '\n');
-        if (newLineCharacter)
-            *newLineCharacter = '\0';
-
-        if (!strncmp("Content-Length: ", buffer, 16)) {
-            strtok(buffer, " ");
-            int imageSize = strtol(strtok(0, " "), 0, 10);
-
-            if (imageSize > 0 && !actualImage)
-                actualImage = createImageFromStdin(imageSize);
-            else if (imageSize > 0 && !baselineImage)
-                baselineImage = createImageFromStdin(imageSize);
-            else
-                fputs("error, image size must be specified.\n", stdout);
-        }
-
-        if (actualImage && baselineImage) {
-            cairo_surface_t* diffImage = 0;
-            float difference = 100.0;
-            
-            if ((cairo_image_surface_get_width(actualImage) == cairo_image_surface_get_width(baselineImage))
-                && (cairo_image_surface_get_height(actualImage) == cairo_image_surface_get_height(baselineImage))
-                && (imageHasAlpha(actualImage) == imageHasAlpha(baselineImage))) {
-                diffImage = createDifferenceImage(actualImage, baselineImage, difference); // difference is passed by reference
-                if (difference <= tolerance)
-                    difference = 0;
-                else {
-                    difference = roundf(difference * 100.0) / 100.0;
-                    difference = max<float>(difference, 0.01); // round to 2 decimal places
-                }
-            } else
-                fputs("error, test and reference image have different properties.\n", stderr);
-                
-            if (difference > 0.0) {
-                if (diffImage) {
-                    RetainPtr<CFMutableDataRef> imageData(AdoptCF, CFDataCreateMutable(0, 0));
-                    cairo_surface_write_to_png_stream(diffImage, (cairo_write_func_t)writeToData, imageData.get());
-                    printf("Content-Length: %lu\n", CFDataGetLength(imageData.get()));
-                    fwrite(CFDataGetBytePtr(imageData.get()), 1, CFDataGetLength(imageData.get()), stdout);
-                    cairo_surface_destroy(diffImage);
-                    diffImage = 0;
-                }
-                
-                fprintf(stdout, "diff: %01.2f%% failed\n", difference);
-            } else
-                fprintf(stdout, "diff: %01.2f%% passed\n", difference);
-            
-            cairo_surface_destroy(actualImage);
-            cairo_surface_destroy(baselineImage);
-            actualImage = 0;
-            baselineImage = 0;
-        }
-
-        fflush(stdout);
-    }
-
-    return 0;
-}
diff --git a/Tools/DumpRenderTree/win/ImageDiffCommon.vsprops b/Tools/DumpRenderTree/win/ImageDiffCommon.vsprops
deleted file mode 100644
index 6d6ce55..0000000
--- a/Tools/DumpRenderTree/win/ImageDiffCommon.vsprops
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="ImageDiffCommon"
-	>
-	<Tool
-		Name="VCCLCompilerTool"
-		AdditionalIncludeDirectories="&quot;$(ConfigurationBuildDir)\include&quot;;&quot;$(ConfigurationBuildDir)\include\private&quot;;&quot;$(ConfigurationBuildDir)\include\private\JavaScriptCore&quot;;&quot;$(WebKitLibrariesDir)\include&quot;;&quot;$(WebKitLibrariesDir)\include\private&quot;"
-		PreprocessorDefinitions="NOMINMAX"
-	/>
-	<Tool
-		Name="VCLinkerTool"
-		AdditionalOptions="/NXCOMPAT"
-		AdditionalDependencies="JavaScriptCore$(WebKitDLLConfigSuffix).lib CoreGraphics$(LibraryConfigSuffix).lib CoreFoundation$(LibraryConfigSuffix).lib"
-		OutputFile="$(OutDir)\$(ProjectName)$(WebKitConfigSuffix).dll"
-		SubSystem="1"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/ImageDiffDebug.vsprops b/Tools/DumpRenderTree/win/ImageDiffDebug.vsprops
deleted file mode 100644
index 5b31049..0000000
--- a/Tools/DumpRenderTree/win/ImageDiffDebug.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="ImageDiffDebug"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;.\ImageDiffCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/ImageDiffDebugAll.vsprops b/Tools/DumpRenderTree/win/ImageDiffDebugAll.vsprops
deleted file mode 100644
index 5a201cd..0000000
--- a/Tools/DumpRenderTree/win/ImageDiffDebugAll.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="ImageDiffDebugAll"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug_all.vsprops;.\ImageDiffCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/ImageDiffDebugCairoCFLite.vsprops b/Tools/DumpRenderTree/win/ImageDiffDebugCairoCFLite.vsprops
deleted file mode 100644
index ae54939..0000000
--- a/Tools/DumpRenderTree/win/ImageDiffDebugCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="ImageDiffDebugCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug_wincairo.vsprops;.\ImageDiffWinCairoCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/ImageDiffLauncher.vcproj b/Tools/DumpRenderTree/win/ImageDiffLauncher.vcproj
deleted file mode 100644
index 8ea7edf..0000000
--- a/Tools/DumpRenderTree/win/ImageDiffLauncher.vcproj
+++ /dev/null
@@ -1,396 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="ImageDiffLauncher"
-	ProjectGUID="{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}"
-	RootNamespace="ImageDiffLauncher"
-	Keyword="Win32Proj"
-	>
-	<Platforms>
-		<Platform
-			Name="Win32"
-		/>
-	</Platforms>
-	<ToolFiles>
-	</ToolFiles>
-	<Configurations>
-		<Configuration
-			Name="Debug|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\ImageDiffLauncherDebug.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\ImageDiffLauncherRelease.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_Cairo_CFLite|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\ImageDiffLauncherDebugCairoCFLite.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_All|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\ImageDiffLauncherDebugAll.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Production|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\ImageDiffLauncherProduction.vsprops"
-			CharacterSet="1"
-			WholeProgramOptimization="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release_Cairo_CFLite|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\ImageDiffLauncherReleaseCairoCFLite.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-	</Configurations>
-	<References>
-	</References>
-	<Files>
-		<File
-			RelativePath="..\..\win\DLLLauncher\DLLLauncherMain.cpp"
-			>
-		</File>
-	</Files>
-	<Globals>
-	</Globals>
-</VisualStudioProject>
diff --git a/Tools/DumpRenderTree/win/ImageDiffLauncherCommon.vsprops b/Tools/DumpRenderTree/win/ImageDiffLauncherCommon.vsprops
deleted file mode 100644
index bf1c416..0000000
--- a/Tools/DumpRenderTree/win/ImageDiffLauncherCommon.vsprops
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="ImageDiffLauncherCommon"
-	>
-	<Tool
-		Name="VCCLCompilerTool"
-		PreprocessorDefinitions="USE_CONSOLE_ENTRY_POINT"
-	/>
-	<Tool
-		Name="VCLinkerTool"
-		AdditionalDependencies="shlwapi.lib"
-		OutputFile="$(OutDir)\ImageDiff$(WebKitConfigSuffix).exe"
-		ProgramDatabaseFile="$(TargetDir)$(TargetName)Launcher.pdb"
-		SubSystem="1"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/ImageDiffLauncherDebug.vsprops b/Tools/DumpRenderTree/win/ImageDiffLauncherDebug.vsprops
deleted file mode 100644
index aa86545..0000000
--- a/Tools/DumpRenderTree/win/ImageDiffLauncherDebug.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="ImageDiffLauncherDebug"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;.\ImageDiffLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/ImageDiffLauncherDebugAll.vsprops b/Tools/DumpRenderTree/win/ImageDiffLauncherDebugAll.vsprops
deleted file mode 100644
index 685f356..0000000
--- a/Tools/DumpRenderTree/win/ImageDiffLauncherDebugAll.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="ImageDiffLauncherDebugAll"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug_all.vsprops;.\ImageDiffLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/ImageDiffLauncherDebugCairoCFLite.vsprops b/Tools/DumpRenderTree/win/ImageDiffLauncherDebugCairoCFLite.vsprops
deleted file mode 100644
index 4f37f39..0000000
--- a/Tools/DumpRenderTree/win/ImageDiffLauncherDebugCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="ImageDiffDebugCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;.\ImageDiffLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/ImageDiffLauncherProduction.vsprops b/Tools/DumpRenderTree/win/ImageDiffLauncherProduction.vsprops
deleted file mode 100644
index 4575510..0000000
--- a/Tools/DumpRenderTree/win/ImageDiffLauncherProduction.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="ImageDiffLauncherProduction"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\production.vsprops;.\ImageDiffLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/ImageDiffLauncherRelease.vsprops b/Tools/DumpRenderTree/win/ImageDiffLauncherRelease.vsprops
deleted file mode 100644
index 57fb847..0000000
--- a/Tools/DumpRenderTree/win/ImageDiffLauncherRelease.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="ImageDiffLauncherRelease"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;.\ImageDiffLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/ImageDiffLauncherReleaseCairoCFLite.vsprops b/Tools/DumpRenderTree/win/ImageDiffLauncherReleaseCairoCFLite.vsprops
deleted file mode 100644
index d5002e6..0000000
--- a/Tools/DumpRenderTree/win/ImageDiffLauncherReleaseCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="ImageDiffLauncherReleaseCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;.\ImageDiffLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/ImageDiffPostBuild.cmd b/Tools/DumpRenderTree/win/ImageDiffPostBuild.cmd
deleted file mode 100644
index 26707ca..0000000
--- a/Tools/DumpRenderTree/win/ImageDiffPostBuild.cmd
+++ /dev/null
@@ -1 +0,0 @@
-if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed"
diff --git a/Tools/DumpRenderTree/win/ImageDiffPreBuild.cmd b/Tools/DumpRenderTree/win/ImageDiffPreBuild.cmd
deleted file mode 100644
index a770776..0000000
--- a/Tools/DumpRenderTree/win/ImageDiffPreBuild.cmd
+++ /dev/null
@@ -1,6 +0,0 @@
-%SystemDrive%\cygwin\bin\which.exe bash
-if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
-cmd /c
-if exist "%CONFIGURATIONBUILDDIR%\buildfailed" grep XX%PROJECTNAME%XX "%CONFIGURATIONBUILDDIR%\buildfailed"
-if errorlevel 1 exit 1
-echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed"
diff --git a/Tools/DumpRenderTree/win/ImageDiffProduction.vsprops b/Tools/DumpRenderTree/win/ImageDiffProduction.vsprops
deleted file mode 100644
index 8e758b5..0000000
--- a/Tools/DumpRenderTree/win/ImageDiffProduction.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="ImageDiffProduction"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\production.vsprops;.\ImageDiffCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/ImageDiffRelease.vsprops b/Tools/DumpRenderTree/win/ImageDiffRelease.vsprops
deleted file mode 100644
index acf3e52..0000000
--- a/Tools/DumpRenderTree/win/ImageDiffRelease.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="ImageDiffRelease"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;.\ImageDiffCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/ImageDiffReleaseCairoCFLite.vsprops b/Tools/DumpRenderTree/win/ImageDiffReleaseCairoCFLite.vsprops
deleted file mode 100644
index 4125ff1..0000000
--- a/Tools/DumpRenderTree/win/ImageDiffReleaseCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="ImageDiffReleaseCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\WinCairo.vsprops;.\ImageDiffWinCairoCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/ImageDiffWin.cpp b/Tools/DumpRenderTree/win/ImageDiffWin.cpp
deleted file mode 100644
index 01dfc0b..0000000
--- a/Tools/DumpRenderTree/win/ImageDiffWin.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include <windows.h>
-
-int main(int argc, const char* argv[]);
-
-extern "C" __declspec(dllexport) int WINAPI dllLauncherEntryPoint(int argc, const char* argv[])
-{
-    return main(argc, argv);
-}
diff --git a/Tools/DumpRenderTree/win/ImageDiffWinCairoCommon.vsprops b/Tools/DumpRenderTree/win/ImageDiffWinCairoCommon.vsprops
deleted file mode 100644
index e752861..0000000
--- a/Tools/DumpRenderTree/win/ImageDiffWinCairoCommon.vsprops
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="ImageDiffCommon"
-	>
-	<Tool
-		Name="VCCLCompilerTool"
-		AdditionalIncludeDirectories="&quot;$(ConfigurationBuildDir)\include&quot;;&quot;$(ConfigurationBuildDir)\include\private&quot;;&quot;$(ConfigurationBuildDir)\include\private\JavaScriptCore&quot;;&quot;$(ConfigurationBuildDir)\include\WebCore\ForwardingHeaders&quot;;&quot;$(WebKitLibrariesDir)\include&quot;;&quot;$(WebKitLibrariesDir)\include\private&quot;"
-		PreprocessorDefinitions="NOMINMAX"
-	/>
-	<Tool
-		Name="VCLinkerTool"
-		AdditionalOptions="/NXCOMPAT"
-		AdditionalDependencies="JavaScriptCore$(WebKitDLLConfigSuffix).lib cairo$(LibraryConfigSuffix).lib libjpeg.lib libpng$(LibraryConfigSuffix).lib zdll.lib Msimg32.lib CFLite$(LibraryConfigSuffix).lib"
-		SubSystem="1"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/DumpRenderTree/win/MD5.cpp b/Tools/DumpRenderTree/win/MD5.cpp
deleted file mode 100644
index 1bfc9c7..0000000
--- a/Tools/DumpRenderTree/win/MD5.cpp
+++ /dev/null
@@ -1,78 +0,0 @@
-/*
- * Copyright (C) 2007 Apple, Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "MD5.h"
-
-#include <windows.h>
-
-typedef void (WINAPI*initPtr)(MD5_CTX*);
-typedef void (WINAPI*updatePtr)(MD5_CTX*, unsigned char*, unsigned);
-typedef void (WINAPI*finalPtr)(MD5_CTX*);
-
-static HMODULE cryptDLL()
-{
-    static HMODULE module = LoadLibraryW(L"Cryptdll.dll");
-    return module;
-}
-
-static initPtr init()
-{
-    static initPtr ptr = reinterpret_cast<initPtr>(GetProcAddress(cryptDLL(), "MD5Init"));
-    return ptr;
-}
-
-static updatePtr update()
-{
-    static updatePtr ptr = reinterpret_cast<updatePtr>(GetProcAddress(cryptDLL(), "MD5Update"));
-    return ptr;
-}
-
-static finalPtr final()
-{
-    static finalPtr ptr = reinterpret_cast<finalPtr>(GetProcAddress(cryptDLL(), "MD5Final"));
-    return ptr;
-}
-
-void MD5_Init(MD5_CTX* context)
-{
-    init()(context);
-}
-
-void MD5_Update(MD5_CTX* context, unsigned char* input, unsigned length)
-{
-    update()(context, input, length);
-}
-
-void MD5_Final(unsigned char hash[16], MD5_CTX* context)
-{
-    final()(context);
-
-    for (int i = 0; i < 16; ++i)
-        hash[i] = context->digest[i];
-}
diff --git a/Tools/DumpRenderTree/win/MD5.h b/Tools/DumpRenderTree/win/MD5.h
deleted file mode 100644
index 326e21d..0000000
--- a/Tools/DumpRenderTree/win/MD5.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * Copyright (C) 2007 Apple, Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef MD5_h
-#define MD5_h
-
-typedef unsigned long ULONG;
-
-struct MD5_CTX {
-    ULONG i[2];
-    ULONG buf[4];
-    unsigned char in[64];
-    unsigned char digest[16];
-};
-
-void MD5_Init(MD5_CTX*);
-void MD5_Update(MD5_CTX*, unsigned char* input, unsigned length);
-void MD5_Final(unsigned char hash[16], MD5_CTX*);
-
-#endif // MD5_h
diff --git a/Tools/DumpRenderTree/win/PixelDumpSupportWin.cpp b/Tools/DumpRenderTree/win/PixelDumpSupportWin.cpp
deleted file mode 100644
index 10ca516..0000000
--- a/Tools/DumpRenderTree/win/PixelDumpSupportWin.cpp
+++ /dev/null
@@ -1,99 +0,0 @@
-/*
- * Copyright (C) 2007 Apple, Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#if USE(CG)
-#include "PixelDumpSupportCG.h"
-#elif USE(CAIRO)
-#include "PixelDumpSupportCairo.h"
-#endif
-
-#include "DumpRenderTree.h"
-
-#if USE(CG)
-// Note: Must be included *after* DumpRenderTree.h to avoid compile error.
-#include <CoreGraphics/CGBitmapContext.h>
-#endif
-
-#include <wtf/Assertions.h>
-#include <wtf/RetainPtr.h>
-
-static void makeAlphaChannelOpaque(void* argbBits, LONG width, LONG height)
-{
-    unsigned* pixel = static_cast<unsigned*>(argbBits);
-    for (LONG row = 0; row < height; ++row) {
-        for (LONG column = 0; column < width; ++column)
-            *pixel++ |= 0xff000000;
-    }
-}
-
-PassRefPtr<BitmapContext> createBitmapContextFromWebView(bool onscreen, bool incrementalRepaint, bool sweepHorizontally, bool drawSelectionRect)
-{
-    RECT frame;
-    if (!GetWindowRect(webViewWindow, &frame))
-        return 0;
-
-    BITMAPINFO bmp = {0};
-    bmp.bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
-    bmp.bmiHeader.biWidth = frame.right - frame.left;
-    bmp.bmiHeader.biHeight = -(frame.bottom - frame.top);
-    bmp.bmiHeader.biPlanes = 1;
-    bmp.bmiHeader.biBitCount = 32;
-    bmp.bmiHeader.biCompression = BI_RGB;
-
-    void* bits = 0;
-    HBITMAP bitmap = CreateDIBSection(0, &bmp, DIB_RGB_COLORS, &bits, 0, 0);
-
-    HDC memoryDC = CreateCompatibleDC(0);
-    SelectObject(memoryDC, bitmap);
-    SendMessage(webViewWindow, WM_PRINT, reinterpret_cast<WPARAM>(memoryDC), PRF_CLIENT | PRF_CHILDREN | PRF_OWNED);
-    DeleteDC(memoryDC);
-
-    BITMAP info = {0};
-    GetObject(bitmap, sizeof(info), &info);
-    ASSERT(info.bmBitsPixel == 32);
-
-    // We create a context that has an alpha channel below so that the PNGs we generate will also
-    // have an alpha channel. But WM_PRINT doesn't necessarily write anything into the alpha
-    // channel, so we set the alpha channel to constant full opacity to make sure the resulting image is opaque.
-    makeAlphaChannelOpaque(info.bmBits, info.bmWidth, info.bmHeight);
-
-#if USE(CG)
-    RetainPtr<CGColorSpaceRef> colorSpace(AdoptCF, CGColorSpaceCreateDeviceRGB());
-    CGContextRef context = CGBitmapContextCreate(info.bmBits, info.bmWidth, info.bmHeight, 8,
-                                                info.bmWidthBytes, colorSpace.get(), kCGBitmapByteOrder32Host | kCGImageAlphaPremultipliedFirst);
-#elif USE(CAIRO) 
-    cairo_surface_t* image = cairo_image_surface_create_for_data((unsigned char*)info.bmBits, CAIRO_FORMAT_ARGB32, 
-                                                      info.bmWidth, info.bmHeight, info.bmWidthBytes); 
-    cairo_t* context = cairo_create(image); 
-    cairo_surface_destroy(image); 
-#endif 
-
-   return BitmapContext::createByAdoptingBitmapAndContext(bitmap, context);
-}
diff --git a/Tools/DumpRenderTree/win/PolicyDelegate.cpp b/Tools/DumpRenderTree/win/PolicyDelegate.cpp
deleted file mode 100644
index 5d7177e..0000000
--- a/Tools/DumpRenderTree/win/PolicyDelegate.cpp
+++ /dev/null
@@ -1,187 +0,0 @@
-/*
- * Copyright (C) 2007, 2009 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PolicyDelegate.h"
-
-#include "DumpRenderTree.h"
-#include "TestRunner.h"
-#include <string>
-
-using std::wstring;
-
-static wstring dumpPath(IDOMNode* node)
-{
-    ASSERT(node);
-
-    wstring result;
-
-    BSTR name;
-    if (FAILED(node->nodeName(&name)))
-        return result;
-    result.assign(name, SysStringLen(name));
-    SysFreeString(name);
-
-    COMPtr<IDOMNode> parent;
-    if (SUCCEEDED(node->parentNode(&parent)))
-        result += TEXT(" > ") + dumpPath(parent.get());
-
-    return result;
-}
-
-PolicyDelegate::PolicyDelegate()
-    : m_refCount(1)
-    , m_permissiveDelegate(false)
-    , m_controllerToNotifyDone(0)
-{
-}
-
-// IUnknown
-HRESULT STDMETHODCALLTYPE PolicyDelegate::QueryInterface(REFIID riid, void** ppvObject)
-{
-    *ppvObject = 0;
-    if (IsEqualGUID(riid, IID_IUnknown))
-        *ppvObject = static_cast<IWebPolicyDelegate*>(this);
-    else if (IsEqualGUID(riid, IID_IWebPolicyDelegate))
-        *ppvObject = static_cast<IWebPolicyDelegate*>(this);
-    else
-        return E_NOINTERFACE;
-
-    AddRef();
-    return S_OK;
-}
-
-ULONG STDMETHODCALLTYPE PolicyDelegate::AddRef(void)
-{
-    return ++m_refCount;
-}
-
-ULONG STDMETHODCALLTYPE PolicyDelegate::Release(void)
-{
-    ULONG newRef = --m_refCount;
-    if (!newRef)
-        delete this;
-
-    return newRef;
-}
-
-HRESULT STDMETHODCALLTYPE PolicyDelegate::decidePolicyForNavigationAction(
-    /*[in]*/ IWebView* /*webView*/, 
-    /*[in]*/ IPropertyBag* actionInformation, 
-    /*[in]*/ IWebURLRequest* request, 
-    /*[in]*/ IWebFrame* frame, 
-    /*[in]*/ IWebPolicyDecisionListener* listener)
-{
-    BSTR url;
-    request->URL(&url);
-    wstring wurl = urlSuitableForTestResult(wstring(url, SysStringLen(url)));
-
-    int navType = 0;
-    VARIANT var;
-    if (SUCCEEDED(actionInformation->Read(WebActionNavigationTypeKey, &var, 0))) {
-        V_VT(&var) = VT_I4;
-        navType = V_I4(&var);
-    }
-
-    LPCTSTR typeDescription;
-    switch (navType) {
-        case WebNavigationTypeLinkClicked:
-            typeDescription = TEXT("link clicked");
-            break;
-        case WebNavigationTypeFormSubmitted:
-            typeDescription = TEXT("form submitted");
-            break;
-        case WebNavigationTypeBackForward:
-            typeDescription = TEXT("back/forward");
-            break;
-        case WebNavigationTypeReload:
-            typeDescription = TEXT("reload");
-            break;
-        case WebNavigationTypeFormResubmitted:
-            typeDescription = TEXT("form resubmitted");
-            break;
-        case WebNavigationTypeOther:
-            typeDescription = TEXT("other");
-            break;
-        default:
-            typeDescription = TEXT("illegal value");
-    }
-
-    wstring message = TEXT("Policy delegate: attempt to load ") + wurl + TEXT(" with navigation type '") + typeDescription + TEXT("'");
-
-    VARIANT actionElementVar;
-    if (SUCCEEDED(actionInformation->Read(WebActionElementKey, &actionElementVar, 0))) {
-        COMPtr<IPropertyBag> actionElement(Query, V_UNKNOWN(&actionElementVar));
-        VARIANT originatingNodeVar;
-        if (SUCCEEDED(actionElement->Read(WebElementDOMNodeKey, &originatingNodeVar, 0))) {
-            COMPtr<IDOMNode> originatingNode(Query, V_UNKNOWN(&originatingNodeVar));
-            message += TEXT(" originating from ") + dumpPath(originatingNode.get());
-        }
-    }
-
-    printf("%S\n", message.c_str());
-
-    SysFreeString(url);
-
-    if (m_permissiveDelegate)
-        listener->use();
-    else
-        listener->ignore();
-
-    if (m_controllerToNotifyDone) {
-        m_controllerToNotifyDone->notifyDone();
-        m_controllerToNotifyDone = 0;
-    }
-
-    return S_OK;
-}
-
-
-HRESULT STDMETHODCALLTYPE PolicyDelegate::unableToImplementPolicyWithError(
-    /*[in]*/ IWebView* /*webView*/, 
-    /*[in]*/ IWebError* error, 
-    /*[in]*/ IWebFrame* frame)
-{
-    BSTR domainStr;
-    error->domain(&domainStr);
-    wstring domainMessage = domainStr;
-
-    int code;
-    error->code(&code);
-    
-    BSTR frameName;
-    frame->name(&frameName);
-    wstring frameNameMessage = frameName;
-    
-    printf("Policy delegate: unable to implement policy with error domain '%S', error code %d, in frame '%S'", domainMessage.c_str(), code, frameNameMessage.c_str());
-    
-    SysFreeString(domainStr);
-    SysFreeString(frameName);
-    
-    return S_OK;
-}
diff --git a/Tools/DumpRenderTree/win/PolicyDelegate.h b/Tools/DumpRenderTree/win/PolicyDelegate.h
deleted file mode 100644
index b6036fe..0000000
--- a/Tools/DumpRenderTree/win/PolicyDelegate.h
+++ /dev/null
@@ -1,82 +0,0 @@
-/*
- * Copyright (C) 2007, 2009 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef PolicyDelegate_h
-#define PolicyDelegate_h
-
-#include <WebKit/WebKit.h>
-
-class TestRunner;
-
-class PolicyDelegate : public IWebPolicyDelegate {
-public:
-    PolicyDelegate();
-
-    // IUnknown
-    virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppvObject);
-    virtual ULONG STDMETHODCALLTYPE AddRef(void);
-    virtual ULONG STDMETHODCALLTYPE Release(void);
-
-    // IWebPolicyDelegate
-    virtual HRESULT STDMETHODCALLTYPE decidePolicyForNavigationAction( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IPropertyBag *actionInformation,
-        /* [in] */ IWebURLRequest *request,
-        /* [in] */ IWebFrame *frame,
-        /* [in] */ IWebPolicyDecisionListener *listener);
-    
-    virtual HRESULT STDMETHODCALLTYPE decidePolicyForNewWindowAction( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IPropertyBag *actionInformation,
-        /* [in] */ IWebURLRequest *request,
-        /* [in] */ BSTR frameName,
-        /* [in] */ IWebPolicyDecisionListener *listener){ return E_NOTIMPL; }
-    
-    virtual HRESULT STDMETHODCALLTYPE decidePolicyForMIMEType( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ BSTR type,
-        /* [in] */ IWebURLRequest *request,
-        /* [in] */ IWebFrame *frame,
-        /* [in] */ IWebPolicyDecisionListener *listener){ return E_NOTIMPL; }
-    
-    virtual HRESULT STDMETHODCALLTYPE unableToImplementPolicyWithError( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IWebError *error,
-        /* [in] */ IWebFrame *frame);
-
-    // PolicyDelegate
-    void setPermissive(bool permissive) { m_permissiveDelegate = permissive; }
-    void setControllerToNotifyDone(TestRunner* controller) { m_controllerToNotifyDone = controller; }
-
-private:
-    ULONG m_refCount;
-    bool m_permissiveDelegate;
-    TestRunner* m_controllerToNotifyDone;
-};
-
-#endif // PolicyDelegate_h
diff --git a/Tools/DumpRenderTree/win/ResourceLoadDelegate.cpp b/Tools/DumpRenderTree/win/ResourceLoadDelegate.cpp
deleted file mode 100644
index 6859780..0000000
--- a/Tools/DumpRenderTree/win/ResourceLoadDelegate.cpp
+++ /dev/null
@@ -1,372 +0,0 @@
-/*
- * Copyright (C) 2007 Apple Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "ResourceLoadDelegate.h"
-
-#include "DumpRenderTree.h"
-#include "TestRunner.h"
-#include <WebKit/WebKitCOMAPI.h>
-#include <comutil.h>
-#include <sstream>
-#include <tchar.h>
-#include <wtf/Vector.h>
-
-using namespace std;
-
-static inline wstring wstringFromBSTR(BSTR str)
-{
-    return wstring(str, ::SysStringLen(str));
-}
-
-static inline wstring wstringFromInt(int i)
-{
-    wostringstream ss;
-    ss << i;
-    return ss.str();
-}
-
-static inline BSTR BSTRFromString(const string& str)
-{
-    int length = ::MultiByteToWideChar(CP_UTF8, 0, str.c_str(), str.length(), 0, 0);
-    BSTR result = ::SysAllocStringLen(0, length);
-    ::MultiByteToWideChar(CP_UTF8, 0, str.c_str(), str.length(), result, length);
-    return result;
-}
-
-wstring ResourceLoadDelegate::descriptionSuitableForTestResult(unsigned long identifier) const
-{
-    IdentifierMap::const_iterator it = m_urlMap.find(identifier);
-    
-    if (it == m_urlMap.end())
-        return L"<unknown>";
-
-    return urlSuitableForTestResult(it->value);
-}
-
-wstring ResourceLoadDelegate::descriptionSuitableForTestResult(IWebURLRequest* request)
-{
-    if (!request)
-        return L"(null)";
-
-    BSTR urlBSTR;
-    if (FAILED(request->URL(&urlBSTR)))
-        return wstring();
-    
-    wstring url = urlSuitableForTestResult(wstringFromBSTR(urlBSTR));
-    ::SysFreeString(urlBSTR);
-    
-    BSTR mainDocumentURLBSTR;
-    if (FAILED(request->mainDocumentURL(&mainDocumentURLBSTR)))
-        return wstring();
-    
-    wstring mainDocumentURL = urlSuitableForTestResult(wstringFromBSTR(mainDocumentURLBSTR));
-    ::SysFreeString(mainDocumentURLBSTR);
-    
-    BSTR httpMethodBSTR;
-    if (FAILED(request->HTTPMethod(&httpMethodBSTR)))
-        return wstring();
-    
-    wstring httpMethod = wstringFromBSTR(httpMethodBSTR);
-    ::SysFreeString(httpMethodBSTR);
-
-    return L"<NSURLRequest URL " + url + L", main document URL " + mainDocumentURL + L", http method " + httpMethod + L">";
-}
-
-wstring ResourceLoadDelegate::descriptionSuitableForTestResult(IWebURLResponse* response)
-{
-    if (!response)
-        return L"(null)";
-
-    BSTR urlBSTR;
-    if (FAILED(response->URL(&urlBSTR)))
-        return wstring();
-    
-    wstring url = urlSuitableForTestResult(wstringFromBSTR(urlBSTR));
-    ::SysFreeString(urlBSTR);
-
-    int statusCode = 0;
-    COMPtr<IWebHTTPURLResponse> httpResponse;
-    if (response && SUCCEEDED(response->QueryInterface(&httpResponse)))
-        httpResponse->statusCode(&statusCode);
-    
-    return L"<NSURLResponse " + url + L", http status code " + wstringFromInt(statusCode) + L">";
-}
-
-wstring ResourceLoadDelegate::descriptionSuitableForTestResult(IWebError* error, unsigned long identifier) const
-{
-    wstring result = L"<NSError ";
-
-    BSTR domainSTR;
-    if (FAILED(error->domain(&domainSTR)))
-        return wstring();
-
-    wstring domain = wstringFromBSTR(domainSTR);
-    ::SysFreeString(domainSTR);
-
-    int code;
-    if (FAILED(error->code(&code)))
-        return wstring();
-
-    if (domain == L"CFURLErrorDomain") {
-        domain = L"NSURLErrorDomain";
-
-        // Convert kCFURLErrorUnknown to NSURLErrorUnknown
-        if (code == -998)
-            code = -1;
-    } else if (domain == L"kCFErrorDomainWinSock") {
-        domain = L"NSURLErrorDomain";
-
-        // Convert the winsock error code to an NSURLError code.
-        if (code == WSAEADDRNOTAVAIL)
-            code = -1004; // NSURLErrorCannotConnectToHose;
-    }
-
-    result += L"domain " + domain;
-    result += L", code " + wstringFromInt(code);
-
-    BSTR failingURLSTR;
-    if (FAILED(error->failingURL(&failingURLSTR)))
-        return wstring();
-
-    if (failingURLSTR) {
-        result += L", failing URL \"" + urlSuitableForTestResult(wstringFromBSTR(failingURLSTR)) + L"\"";
-        ::SysFreeString(failingURLSTR);
-    }
-
-    result += L">";
-
-    return result;
-}
-
-ResourceLoadDelegate::ResourceLoadDelegate()
-    : m_refCount(1)
-{
-}
-
-ResourceLoadDelegate::~ResourceLoadDelegate()
-{
-}
-
-HRESULT STDMETHODCALLTYPE ResourceLoadDelegate::QueryInterface(REFIID riid, void** ppvObject)
-{
-    *ppvObject = 0;
-    if (IsEqualGUID(riid, IID_IUnknown))
-        *ppvObject = static_cast<IWebResourceLoadDelegate*>(this);
-    else if (IsEqualGUID(riid, IID_IWebResourceLoadDelegate))
-        *ppvObject = static_cast<IWebResourceLoadDelegate*>(this);
-    else if (IsEqualGUID(riid, IID_IWebResourceLoadDelegatePrivate2))
-        *ppvObject = static_cast<IWebResourceLoadDelegatePrivate2*>(this);
-    else
-        return E_NOINTERFACE;
-
-    AddRef();
-    return S_OK;
-}
-
-ULONG STDMETHODCALLTYPE ResourceLoadDelegate::AddRef(void)
-{
-    return ++m_refCount;
-}
-
-ULONG STDMETHODCALLTYPE ResourceLoadDelegate::Release(void)
-{
-    ULONG newRef = --m_refCount;
-    if (!newRef)
-        delete(this);
-
-    return newRef;
-}
-
-HRESULT STDMETHODCALLTYPE ResourceLoadDelegate::identifierForInitialRequest( 
-    /* [in] */ IWebView* webView,
-    /* [in] */ IWebURLRequest* request,
-    /* [in] */ IWebDataSource* dataSource,
-    /* [in] */ unsigned long identifier)
-{ 
-    if (!done && gTestRunner->dumpResourceLoadCallbacks()) {
-        BSTR urlStr;
-        if (FAILED(request->URL(&urlStr)))
-            return E_FAIL;
-
-        ASSERT(!urlMap().contains(identifier));
-        urlMap().set(identifier, wstringFromBSTR(urlStr));
-    }
-
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE ResourceLoadDelegate::removeIdentifierForRequest(
-    /* [in] */ IWebView* webView,
-    /* [in] */ unsigned long identifier)
-{
-    urlMap().remove(identifier);
-
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE ResourceLoadDelegate::willSendRequest( 
-    /* [in] */ IWebView* webView,
-    /* [in] */ unsigned long identifier,
-    /* [in] */ IWebURLRequest* request,
-    /* [in] */ IWebURLResponse* redirectResponse,
-    /* [in] */ IWebDataSource* dataSource,
-    /* [retval][out] */ IWebURLRequest **newRequest)
-{
-    if (!done && gTestRunner->dumpResourceLoadCallbacks()) {
-        printf("%S - willSendRequest %S redirectResponse %S\n", 
-            descriptionSuitableForTestResult(identifier).c_str(),
-            descriptionSuitableForTestResult(request).c_str(),
-            descriptionSuitableForTestResult(redirectResponse).c_str());
-    }
-
-    if (!done && !gTestRunner->deferMainResourceDataLoad()) {
-        COMPtr<IWebDataSourcePrivate> dataSourcePrivate(Query, dataSource);
-        if (!dataSourcePrivate)
-            return E_FAIL;
-        dataSourcePrivate->setDeferMainResourceDataLoad(FALSE);
-    }
-
-    if (!done && gTestRunner->willSendRequestReturnsNull()) {
-        *newRequest = 0;
-        return S_OK;
-    }
-
-    if (!done && gTestRunner->willSendRequestReturnsNullOnRedirect() && redirectResponse) {
-        printf("Returning null for this redirect\n");
-        *newRequest = 0;
-        return S_OK;
-    }
-
-    IWebMutableURLRequest* requestCopy = 0;
-    request->mutableCopy(&requestCopy);
-    const set<string>& clearHeaders = gTestRunner->willSendRequestClearHeaders();
-    for (set<string>::const_iterator header = clearHeaders.begin(); header != clearHeaders.end(); ++header) {
-      BSTR bstrHeader = BSTRFromString(*header);
-      requestCopy->setValue(0, bstrHeader);
-      SysFreeString(bstrHeader);
-    }
-
-    *newRequest = requestCopy;
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE ResourceLoadDelegate::didReceiveAuthenticationChallenge( 
-    /* [in] */ IWebView *webView,
-    /* [in] */ unsigned long identifier,
-    /* [in] */ IWebURLAuthenticationChallenge *challenge,
-    /* [in] */ IWebDataSource *dataSource)
-{
-    COMPtr<IWebURLAuthenticationChallengeSender> sender;
-    if (!challenge || FAILED(challenge->sender(&sender)))
-        return E_FAIL;
-
-    if (!gTestRunner->handlesAuthenticationChallenges()) {
-        printf("%S - didReceiveAuthenticationChallenge - Simulating cancelled authentication sheet\n", descriptionSuitableForTestResult(identifier).c_str());
-        sender->continueWithoutCredentialForAuthenticationChallenge(challenge);
-        return S_OK;
-    }
-    
-    const char* user = gTestRunner->authenticationUsername().c_str();
-    const char* password = gTestRunner->authenticationPassword().c_str();
-
-    printf("%S - didReceiveAuthenticationChallenge - Responding with %s:%s\n", descriptionSuitableForTestResult(identifier).c_str(), user, password);
-
-    COMPtr<IWebURLCredential> credential;
-    if (FAILED(WebKitCreateInstance(CLSID_WebURLCredential, 0, IID_IWebURLCredential, (void**)&credential)))
-        return E_FAIL;
-    credential->initWithUser(_bstr_t(user), _bstr_t(password), WebURLCredentialPersistenceForSession);
-
-    sender->useCredential(credential.get(), challenge);
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE ResourceLoadDelegate::didReceiveResponse(
-    /* [in] */ IWebView* webView, 
-    /* [in] */ unsigned long identifier, 
-    /* [in] */ IWebURLResponse* response, 
-    /* [in] */ IWebDataSource* dataSource)
-{
-    if (!done && gTestRunner->dumpResourceLoadCallbacks()) {
-        printf("%S - didReceiveResponse %S\n",
-            descriptionSuitableForTestResult(identifier).c_str(),
-            descriptionSuitableForTestResult(response).c_str());
-    }
-    if (!done && gTestRunner->dumpResourceResponseMIMETypes()) {
-        BSTR mimeTypeBSTR;
-        if (FAILED(response->MIMEType(&mimeTypeBSTR)))
-            E_FAIL;
-    
-        wstring mimeType = wstringFromBSTR(mimeTypeBSTR);
-        ::SysFreeString(mimeTypeBSTR);
-
-        BSTR urlBSTR;
-        if (FAILED(response->URL(&urlBSTR)))
-            E_FAIL;
-    
-        wstring url = wstringFromBSTR(urlBSTR);
-        ::SysFreeString(urlBSTR);
-
-        printf("%S has MIME type %S\n", lastPathComponent(url).c_str(), mimeType.c_str());
-    }
-
-    return S_OK;
-}
-
-
-HRESULT STDMETHODCALLTYPE ResourceLoadDelegate::didFinishLoadingFromDataSource( 
-    /* [in] */ IWebView* webView,
-    /* [in] */ unsigned long identifier,
-    /* [in] */ IWebDataSource* dataSource)
-{
-    if (!done && gTestRunner->dumpResourceLoadCallbacks()) {
-        printf("%S - didFinishLoading\n",
-            descriptionSuitableForTestResult(identifier).c_str());
-    }
-
-    removeIdentifierForRequest(webView, identifier);
-
-    return S_OK;
-}
-        
-HRESULT STDMETHODCALLTYPE ResourceLoadDelegate::didFailLoadingWithError( 
-    /* [in] */ IWebView* webView,
-    /* [in] */ unsigned long identifier,
-    /* [in] */ IWebError* error,
-    /* [in] */ IWebDataSource* dataSource)
-{
-    if (!done && gTestRunner->dumpResourceLoadCallbacks()) {
-        printf("%S - didFailLoadingWithError: %S\n", 
-            descriptionSuitableForTestResult(identifier).c_str(),
-            descriptionSuitableForTestResult(error, identifier).c_str());
-    }
-
-    removeIdentifierForRequest(webView, identifier);
-
-    return S_OK;
-}
diff --git a/Tools/DumpRenderTree/win/ResourceLoadDelegate.h b/Tools/DumpRenderTree/win/ResourceLoadDelegate.h
deleted file mode 100644
index 3f20f47..0000000
--- a/Tools/DumpRenderTree/win/ResourceLoadDelegate.h
+++ /dev/null
@@ -1,119 +0,0 @@
-/*
- * Copyright (C) 2007 Apple Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef ResourceLoadDelegate_h
-#define ResourceLoadDelegate_h
-
-#include <WebKit/WebKit.h>
-#include <string>
-#include <wtf/HashMap.h>
-
-class ResourceLoadDelegate : public IWebResourceLoadDelegate, public IWebResourceLoadDelegatePrivate2 {
-public:
-    ResourceLoadDelegate();
-    virtual ~ResourceLoadDelegate();
-
-    // IUnknown
-    virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppvObject);
-    virtual ULONG STDMETHODCALLTYPE AddRef(void);
-    virtual ULONG STDMETHODCALLTYPE Release(void);
-
-    // IWebResourceLoadDelegate
-    virtual HRESULT STDMETHODCALLTYPE identifierForInitialRequest( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IWebURLRequest *request,
-        /* [in] */ IWebDataSource *dataSource,
-        /* [in] */ unsigned long identifier);
-        
-    virtual HRESULT STDMETHODCALLTYPE willSendRequest( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ unsigned long identifier,
-        /* [in] */ IWebURLRequest *request,
-        /* [in] */ IWebURLResponse *redirectResponse,
-        /* [in] */ IWebDataSource *dataSource,
-        /* [retval][out] */ IWebURLRequest **newRequest);
-        
-    virtual HRESULT STDMETHODCALLTYPE didReceiveAuthenticationChallenge( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ unsigned long identifier,
-        /* [in] */ IWebURLAuthenticationChallenge *challenge,
-        /* [in] */ IWebDataSource *dataSource);
-        
-    virtual HRESULT STDMETHODCALLTYPE didCancelAuthenticationChallenge( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ unsigned long identifier,
-        /* [in] */ IWebURLAuthenticationChallenge *challenge,
-        /* [in] */ IWebDataSource *dataSource) { return E_NOTIMPL; }
-        
-    virtual HRESULT STDMETHODCALLTYPE didReceiveResponse( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ unsigned long identifier,
-        /* [in] */ IWebURLResponse *response,
-        /* [in] */ IWebDataSource *dataSource);
-        
-    virtual HRESULT STDMETHODCALLTYPE didReceiveContentLength( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ unsigned long identifier,
-        /* [in] */ UINT length,
-        /* [in] */ IWebDataSource *dataSource) { return E_NOTIMPL; }
-        
-    virtual HRESULT STDMETHODCALLTYPE didFinishLoadingFromDataSource( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ unsigned long identifier,
-        /* [in] */ IWebDataSource *dataSource);
-        
-    virtual HRESULT STDMETHODCALLTYPE didFailLoadingWithError( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ unsigned long identifier,
-        /* [in] */ IWebError *error,
-        /* [in] */ IWebDataSource *dataSource);
-        
-    virtual HRESULT STDMETHODCALLTYPE plugInFailedWithError( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IWebError *error,
-        /* [in] */ IWebDataSource *dataSource) { return E_NOTIMPL; }
-
-    // IWebResourceLoadDelegatePrivate2
-    virtual HRESULT STDMETHODCALLTYPE removeIdentifierForRequest(
-        /* [in] */ IWebView *webView,
-        /* [in] */ unsigned long identifier);
-    
-private:
-    static std::wstring descriptionSuitableForTestResult(IWebURLRequest*);
-    static std::wstring descriptionSuitableForTestResult(IWebURLResponse*);
-    std::wstring descriptionSuitableForTestResult(unsigned long) const;
-    std::wstring descriptionSuitableForTestResult(IWebError*, unsigned long) const;
-
-    typedef HashMap<unsigned long, std::wstring> IdentifierMap;
-    IdentifierMap& urlMap() { return m_urlMap; }
-    IdentifierMap m_urlMap;
-
-    ULONG m_refCount;
-};
-
-#endif // ResourceLoadDelegate_h
diff --git a/Tools/DumpRenderTree/win/TestRunnerWin.cpp b/Tools/DumpRenderTree/win/TestRunnerWin.cpp
deleted file mode 100644
index d5b9810..0000000
--- a/Tools/DumpRenderTree/win/TestRunnerWin.cpp
+++ /dev/null
@@ -1,1214 +0,0 @@
-/*
- * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "TestRunner.h"
-
-#include "DumpRenderTree.h"
-#include "EditingDelegate.h"
-#include "PolicyDelegate.h"
-#include "WorkQueue.h"
-#include "WorkQueueItem.h"
-#include <CoreFoundation/CoreFoundation.h>
-#include <JavaScriptCore/JSRetainPtr.h>
-#include <JavaScriptCore/JSStringRefBSTR.h>
-#include <JavaScriptCore/JavaScriptCore.h>
-#include <WebCore/COMPtr.h>
-#include <WebKit/WebKit.h>
-#include <WebKit/WebKitCOMAPI.h>
-#include <comutil.h>
-#include <shlguid.h>
-#include <shlwapi.h>
-#include <shobjidl.h>
-#include <string>
-#include <wtf/Assertions.h>
-#include <wtf/Platform.h>
-#include <wtf/RetainPtr.h>
-#include <wtf/Vector.h>
-
-using std::string;
-using std::wstring;
-
-static bool resolveCygwinPath(const wstring& cygwinPath, wstring& windowsPath);
-
-TestRunner::~TestRunner()
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return;
-
-    // reset webview-related states back to default values in preparation for next test
-
-    COMPtr<IWebViewPrivate> viewPrivate;
-    if (SUCCEEDED(webView->QueryInterface(&viewPrivate)))
-        viewPrivate->setTabKeyCyclesThroughElements(TRUE);
-
-    COMPtr<IWebViewEditing> viewEditing;
-    if (FAILED(webView->QueryInterface(&viewEditing)))
-        return;
-    COMPtr<IWebEditingDelegate> delegate;
-    if (FAILED(viewEditing->editingDelegate(&delegate)))
-        return;
-    COMPtr<EditingDelegate> editingDelegate(Query, viewEditing.get());
-    if (editingDelegate)
-        editingDelegate->setAcceptsEditing(TRUE);
-}
-
-void TestRunner::addDisallowedURL(JSStringRef url)
-{
-    // FIXME: Implement!
-}
-
-void TestRunner::clearBackForwardList()
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return;
-
-    COMPtr<IWebBackForwardList> backForwardList;
-    if (FAILED(webView->backForwardList(&backForwardList)))
-        return;
-
-    COMPtr<IWebHistoryItem> item;
-    if (FAILED(backForwardList->currentItem(&item)))
-        return;
-
-    // We clear the history by setting the back/forward list's capacity to 0
-    // then restoring it back and adding back the current item.
-    int capacity;
-    if (FAILED(backForwardList->capacity(&capacity)))
-        return;
-
-    backForwardList->setCapacity(0);
-    backForwardList->setCapacity(capacity);
-    backForwardList->addItem(item.get());
-    backForwardList->goToItem(item.get());
-}
-
-bool TestRunner::callShouldCloseOnWebView()
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return false;
-
-    COMPtr<IWebViewPrivate> viewPrivate;
-    if (FAILED(webView->QueryInterface(&viewPrivate)))
-        return false;
-
-    BOOL result;
-    viewPrivate->shouldClose(&result);
-    return result;
-}
-
-JSStringRef TestRunner::copyDecodedHostName(JSStringRef name)
-{
-    // FIXME: Implement!
-    return 0;
-}
-
-JSStringRef TestRunner::copyEncodedHostName(JSStringRef name)
-{
-    // FIXME: Implement!
-    return 0;
-}
-
-void TestRunner::dispatchPendingLoadRequests()
-{
-    // FIXME: Implement for testing fix for 6727495
-}
-
-void TestRunner::display()
-{
-    displayWebView();
-}
-
-void TestRunner::keepWebHistory()
-{
-    COMPtr<IWebHistory> history;
-    if (FAILED(WebKitCreateInstance(CLSID_WebHistory, 0, __uuidof(history), reinterpret_cast<void**>(&history))))
-        return;
-
-    COMPtr<IWebHistory> sharedHistory;
-    if (FAILED(WebKitCreateInstance(CLSID_WebHistory, 0, __uuidof(sharedHistory), reinterpret_cast<void**>(&sharedHistory))))
-        return;
-
-    history->setOptionalSharedHistory(sharedHistory.get());
-}
-
-void TestRunner::waitForPolicyDelegate()
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return;
-
-    setWaitToDump(true);
-    policyDelegate->setControllerToNotifyDone(this);
-    webView->setPolicyDelegate(policyDelegate);
-}
-
-size_t TestRunner::webHistoryItemCount()
-{
-    COMPtr<IWebHistory> history;
-    if (FAILED(WebKitCreateInstance(CLSID_WebHistory, 0, __uuidof(history), reinterpret_cast<void**>(&history))))
-        return 0;
-
-    COMPtr<IWebHistory> sharedHistory;
-    if (FAILED(history->optionalSharedHistory(&sharedHistory)) || !sharedHistory)
-        return 0;
-
-    COMPtr<IWebHistoryPrivate> sharedHistoryPrivate;
-    if (FAILED(sharedHistory->QueryInterface(&sharedHistoryPrivate)))
-        return 0;
-
-    int count;
-    if (FAILED(sharedHistoryPrivate->allItems(&count, 0)))
-        return 0;
-
-    return count;
-}
-
-JSRetainPtr<JSStringRef> TestRunner::platformName() const
-{
-    JSRetainPtr<JSStringRef> platformName(Adopt, JSStringCreateWithUTF8CString("win"));
-    return platformName;
-}
-
-void TestRunner::notifyDone()
-{
-    // Same as on mac.  This can be shared.
-    if (m_waitToDump && !topLoadingFrame && !WorkQueue::shared()->count())
-        dump();
-    m_waitToDump = false;
-}
-
-JSStringRef TestRunner::pathToLocalResource(JSContextRef context, JSStringRef url)
-{
-    wstring input(JSStringGetCharactersPtr(url), JSStringGetLength(url));
-
-    wstring localPath;
-    if (!resolveCygwinPath(input, localPath)) {
-        printf("ERROR: Failed to resolve Cygwin path %S\n", input.c_str());
-        return 0;
-    }
-
-    return JSStringCreateWithCharacters(localPath.c_str(), localPath.length());
-}
-
-static wstring jsStringRefToWString(JSStringRef jsStr)
-{
-    size_t length = JSStringGetLength(jsStr);
-    Vector<WCHAR> buffer(length + 1);
-    memcpy(buffer.data(), JSStringGetCharactersPtr(jsStr), length * sizeof(WCHAR));
-    buffer[length] = '\0';
-
-    return buffer.data();
-}
-
-void TestRunner::queueLoad(JSStringRef url, JSStringRef target)
-{
-    COMPtr<IWebDataSource> dataSource;
-    if (FAILED(frame->dataSource(&dataSource)))
-        return;
-
-    COMPtr<IWebURLResponse> response;
-    if (FAILED(dataSource->response(&response)) || !response)
-        return;
-
-    BSTR responseURLBSTR;
-    if (FAILED(response->URL(&responseURLBSTR)))
-        return;
-    wstring responseURL(responseURLBSTR, SysStringLen(responseURLBSTR));
-    SysFreeString(responseURLBSTR);
-
-    // FIXME: We should do real relative URL resolution here.
-    int lastSlash = responseURL.rfind('/');
-    if (lastSlash != -1)
-        responseURL = responseURL.substr(0, lastSlash);
-
-    wstring wURL = jsStringRefToWString(url);
-    wstring wAbsoluteURL = responseURL + TEXT("/") + wURL;
-    JSRetainPtr<JSStringRef> jsAbsoluteURL(Adopt, JSStringCreateWithCharacters(wAbsoluteURL.data(), wAbsoluteURL.length()));
-
-    WorkQueue::shared()->queue(new LoadItem(jsAbsoluteURL.get(), target));
-}
-
-void TestRunner::setAcceptsEditing(bool acceptsEditing)
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return;
-
-    COMPtr<IWebViewEditing> viewEditing;
-    if (FAILED(webView->QueryInterface(&viewEditing)))
-        return;
-
-    COMPtr<IWebEditingDelegate> delegate;
-    if (FAILED(viewEditing->editingDelegate(&delegate)))
-        return;
-
-    EditingDelegate* editingDelegate = (EditingDelegate*)(IWebEditingDelegate*)delegate.get();
-    editingDelegate->setAcceptsEditing(acceptsEditing);
-}
-
-void TestRunner::setAlwaysAcceptCookies(bool alwaysAcceptCookies)
-{
-    if (alwaysAcceptCookies == m_alwaysAcceptCookies)
-        return;
-
-    if (!::setAlwaysAcceptCookies(alwaysAcceptCookies))
-        return;
-    m_alwaysAcceptCookies = alwaysAcceptCookies;
-}
-
-void TestRunner::setAuthorAndUserStylesEnabled(bool flag)
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return;
-
-    COMPtr<IWebPreferences> preferences;
-    if (FAILED(webView->preferences(&preferences)))
-        return;
-
-    COMPtr<IWebPreferencesPrivate> prefsPrivate(Query, preferences);
-    if (!prefsPrivate)
-        return;
-
-    prefsPrivate->setAuthorAndUserStylesEnabled(flag);
-}
-
-void TestRunner::setCustomPolicyDelegate(bool setDelegate, bool permissive)
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return;
-
-    if (setDelegate) {
-        policyDelegate->setPermissive(permissive);
-        webView->setPolicyDelegate(policyDelegate);
-    } else
-        webView->setPolicyDelegate(0);
-}
-
-void TestRunner::setMockDeviceOrientation(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma)
-{
-    // FIXME: Implement for DeviceOrientation layout tests.
-    // See https://bugs.webkit.org/show_bug.cgi?id=30335.
-}
-
-void TestRunner::setMockGeolocationPosition(double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed)
-{
-    // FIXME: Implement for Geolocation layout tests.
-    // See https://bugs.webkit.org/show_bug.cgi?id=28264.
-}
-
-void TestRunner::setMockGeolocationPositionUnavailableError(JSStringRef message)
-{
-    // FIXME: Implement for Geolocation layout tests.
-    // See https://bugs.webkit.org/show_bug.cgi?id=28264.
-}
-
-void TestRunner::setGeolocationPermission(bool allow)
-{
-    // FIXME: Implement for Geolocation layout tests.
-    setGeolocationPermissionCommon(allow);
-}
-
-int TestRunner::numberOfPendingGeolocationPermissionRequests()
-{
-    // FIXME: Implement for Geolocation layout tests.
-    return -1;
-}
-
-void TestRunner::addMockSpeechInputResult(JSStringRef result, double confidence, JSStringRef language)
-{
-    // FIXME: Implement for speech input layout tests.
-    // See https://bugs.webkit.org/show_bug.cgi?id=39485.
-}
-
-void TestRunner::setMockSpeechInputDumpRect(bool flag)
-{
-    // FIXME: Implement for speech input layout tests.
-    // See https://bugs.webkit.org/show_bug.cgi?id=39485.
-}
-
-void TestRunner::startSpeechInput(JSContextRef inputElement)
-{
-    // FIXME: Implement for speech input layout tests.
-    // See https://bugs.webkit.org/show_bug.cgi?id=39485.
-}
-
-void TestRunner::setIconDatabaseEnabled(bool iconDatabaseEnabled)
-{
-    // See also <rdar://problem/6480108>
-    COMPtr<IWebIconDatabase> iconDatabase;
-    COMPtr<IWebIconDatabase> tmpIconDatabase;
-    if (FAILED(WebKitCreateInstance(CLSID_WebIconDatabase, 0, IID_IWebIconDatabase, (void**)&tmpIconDatabase)))
-        return;
-    if (FAILED(tmpIconDatabase->sharedIconDatabase(&iconDatabase)))
-        return;
-
-    iconDatabase->setEnabled(iconDatabaseEnabled);
-}
-
-void TestRunner::setMainFrameIsFirstResponder(bool flag)
-{
-    // FIXME: Implement!
-}
-
-void TestRunner::setPrivateBrowsingEnabled(bool privateBrowsingEnabled)
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return;
-
-    COMPtr<IWebPreferences> preferences;
-    if (FAILED(webView->preferences(&preferences)))
-        return;
-
-    preferences->setPrivateBrowsingEnabled(privateBrowsingEnabled);
-}
-
-void TestRunner::setXSSAuditorEnabled(bool enabled)
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return;
-
-    COMPtr<IWebPreferences> preferences;
-    if (FAILED(webView->preferences(&preferences)))
-        return;
-
-    COMPtr<IWebPreferencesPrivate> prefsPrivate(Query, preferences);
-    if (!prefsPrivate)
-        return;
-
-    prefsPrivate->setXSSAuditorEnabled(enabled);
-}
-
-void TestRunner::setSpatialNavigationEnabled(bool enabled)
-{
-    // FIXME: Implement for SpatialNavigation layout tests.
-}
-
-void TestRunner::setAllowUniversalAccessFromFileURLs(bool enabled)
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return;
-
-    COMPtr<IWebPreferences> preferences;
-    if (FAILED(webView->preferences(&preferences)))
-        return;
-
-    COMPtr<IWebPreferencesPrivate> prefsPrivate(Query, preferences);
-    if (!prefsPrivate)
-        return;
-
-    prefsPrivate->setAllowUniversalAccessFromFileURLs(enabled);
-}
-
-void TestRunner::setAllowFileAccessFromFileURLs(bool enabled)
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return;
-
-    COMPtr<IWebPreferences> preferences;
-    if (FAILED(webView->preferences(&preferences)))
-        return;
-
-    COMPtr<IWebPreferencesPrivate> prefsPrivate(Query, preferences);
-    if (!prefsPrivate)
-        return;
-
-    prefsPrivate->setAllowFileAccessFromFileURLs(enabled);
-}
-
-void TestRunner::setPopupBlockingEnabled(bool enabled)
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return;
-
-    COMPtr<IWebPreferences> preferences;
-    if (FAILED(webView->preferences(&preferences)))
-        return;
-
-    preferences->setJavaScriptCanOpenWindowsAutomatically(!enabled);
-}
-
-void TestRunner::setPluginsEnabled(bool flag)
-{
-    // FIXME: Implement
-}
-
-void TestRunner::setJavaScriptCanAccessClipboard(bool enabled)
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return;
-
-    COMPtr<IWebPreferences> preferences;
-    if (FAILED(webView->preferences(&preferences)))
-        return;
-
-    COMPtr<IWebPreferencesPrivate> prefsPrivate(Query, preferences);
-    if (!prefsPrivate)
-        return;
-
-    prefsPrivate->setJavaScriptCanAccessClipboard(enabled);
-}
-
-void TestRunner::setTabKeyCyclesThroughElements(bool shouldCycle)
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return;
-
-    COMPtr<IWebViewPrivate> viewPrivate;
-    if (FAILED(webView->QueryInterface(&viewPrivate)))
-        return;
-
-    viewPrivate->setTabKeyCyclesThroughElements(shouldCycle ? TRUE : FALSE);
-}
-
-void TestRunner::setUseDashboardCompatibilityMode(bool flag)
-{
-    // FIXME: Implement!
-}
-
-void TestRunner::setUserStyleSheetEnabled(bool flag)
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return;
-
-    COMPtr<IWebPreferences> preferences;
-    if (FAILED(webView->preferences(&preferences)))
-        return;
-
-    preferences->setUserStyleSheetEnabled(flag);
-}
-
-bool appendComponentToPath(wstring& path, const wstring& component)
-{
-    WCHAR buffer[MAX_PATH];
-
-    if (path.size() + 1 > MAX_PATH)
-        return false;
-
-    memcpy(buffer, path.data(), path.size() * sizeof(WCHAR));
-    buffer[path.size()] = '\0';
-
-    if (!PathAppendW(buffer, component.c_str()))
-        return false;
-
-    path = wstring(buffer);
-    return true;
-}
-
-static bool followShortcuts(wstring& path)
-{
-    if (PathFileExists(path.c_str()))
-        return true;
-
-    // Do we have a shortcut?
-    wstring linkPath = path;
-    linkPath.append(TEXT(".lnk"));
-    if (!PathFileExists(linkPath.c_str()))
-       return true;
-
-    // We have a shortcut, find its target.
-    COMPtr<IShellLink> shortcut(Create, CLSID_ShellLink);
-    if (!shortcut)
-       return false;
-    COMPtr<IPersistFile> persistFile(Query, shortcut);
-    if (!shortcut)
-        return false;
-    if (FAILED(persistFile->Load(linkPath.c_str(), STGM_READ)))
-        return false;
-    if (FAILED(shortcut->Resolve(0, 0)))
-        return false;
-    WCHAR targetPath[MAX_PATH];
-    DWORD targetPathLen = _countof(targetPath);
-    if (FAILED(shortcut->GetPath(targetPath, targetPathLen, 0, 0)))
-        return false;
-    if (!PathFileExists(targetPath))
-        return false;
-    // Use the target path as the result path instead.
-    path = wstring(targetPath);
-
-    return true;
-}
-
-static bool resolveCygwinPath(const wstring& cygwinPath, wstring& windowsPath)
-{
-    wstring fileProtocol = L"file://";
-    bool isFileProtocol = cygwinPath.find(fileProtocol) != string::npos;
-    if (cygwinPath[isFileProtocol ? 7 : 0] != '/') // ensure path is absolute
-        return false;
-
-    // Get the Root path.
-    WCHAR rootPath[MAX_PATH];
-    DWORD rootPathSize = _countof(rootPath);
-    DWORD keyType;
-    DWORD result = ::SHGetValueW(HKEY_LOCAL_MACHINE, TEXT("SOFTWARE\\Cygnus Solutions\\Cygwin\\mounts v2\\/"), TEXT("native"), &keyType, &rootPath, &rootPathSize);
-
-    if (result != ERROR_SUCCESS || keyType != REG_SZ) {
-        // Cygwin 1.7 doesn't store Cygwin's root as a mount point anymore, because mount points are now stored in /etc/fstab.
-        // However, /etc/fstab doesn't contain any information about where / is located as a Windows path, so we need to use Cygwin's
-        // new registry key that has the root.
-        result = ::SHGetValueW(HKEY_LOCAL_MACHINE, TEXT("SOFTWARE\\Cygwin\\setup"), TEXT("rootdir"), &keyType, &rootPath, &rootPathSize);
-        if (result != ERROR_SUCCESS || keyType != REG_SZ)
-            return false;
-    }
-
-    windowsPath = wstring(rootPath, rootPathSize);
-
-    int oldPos = isFileProtocol ? 8 : 1;
-    while (1) {
-        int newPos = cygwinPath.find('/', oldPos);
-
-        if (newPos == -1) {
-            wstring pathComponent = cygwinPath.substr(oldPos);
-
-            if (!appendComponentToPath(windowsPath, pathComponent))
-               return false;
-
-            if (!followShortcuts(windowsPath))
-                return false;
-
-            break;
-        }
-
-        wstring pathComponent = cygwinPath.substr(oldPos, newPos - oldPos);
-        if (!appendComponentToPath(windowsPath, pathComponent))
-            return false;
-
-        if (!followShortcuts(windowsPath))
-            return false;
-
-        oldPos = newPos + 1;
-    }
-
-    if (isFileProtocol)
-        windowsPath = fileProtocol + windowsPath;
-
-    return true;
-}
-
-void TestRunner::setUserStyleSheetLocation(JSStringRef jsURL)
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return;
-
-    COMPtr<IWebPreferences> preferences;
-    if (FAILED(webView->preferences(&preferences)))
-        return;
-
-    RetainPtr<CFStringRef> urlString(AdoptCF, JSStringCopyCFString(0, jsURL));
-    RetainPtr<CFURLRef> url(AdoptCF, CFURLCreateWithString(0, urlString.get(), 0));
-    if (!url)
-        return;
-
-    // Now copy the file system path, POSIX style.
-    RetainPtr<CFStringRef> pathCF(AdoptCF, CFURLCopyFileSystemPath(url.get(), kCFURLPOSIXPathStyle));
-    if (!pathCF)
-        return;
-
-    wstring path = cfStringRefToWString(pathCF.get());
-
-    wstring resultPath;
-    if (!resolveCygwinPath(path, resultPath))
-        return;
-
-    // The path has been resolved, now convert it back to a CFURL.
-    int result = WideCharToMultiByte(CP_UTF8, 0, resultPath.c_str(), resultPath.size() + 1, 0, 0, 0, 0);
-    Vector<char> utf8Vector(result);
-    result = WideCharToMultiByte(CP_UTF8, 0, resultPath.c_str(), resultPath.size() + 1, utf8Vector.data(), result, 0, 0);
-    if (!result)
-        return;
-
-    url = CFURLCreateFromFileSystemRepresentation(0, (const UInt8*)utf8Vector.data(), utf8Vector.size() - 1, false);
-    if (!url)
-        return;
-
-    resultPath = cfStringRefToWString(CFURLGetString(url.get()));
-
-    BSTR resultPathBSTR = SysAllocStringLen(resultPath.data(), resultPath.size());
-    preferences->setUserStyleSheetLocation(resultPathBSTR);
-    SysFreeString(resultPathBSTR);
-}
-
-void TestRunner::setValueForUser(JSContextRef context, JSValueRef element, JSStringRef value)
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return;
-
-    COMPtr<IWebViewPrivate> webViewPrivate(Query, webView);
-    if (!webViewPrivate)
-        return;
-
-    COMPtr<IDOMElement> domElement;
-    if (FAILED(webViewPrivate->elementFromJS(context, element, &domElement)))
-        return;
-
-    COMPtr<IDOMHTMLInputElement> domInputElement;
-    if (FAILED(domElement->QueryInterface(IID_IDOMHTMLInputElement, reinterpret_cast<void**>(&domInputElement))))
-        return;
-
-    _bstr_t valueBSTR(JSStringCopyBSTR(value), false);
-
-    domInputElement->setValueForUser(valueBSTR);
-}
-
-void TestRunner::setViewModeMediaFeature(JSStringRef mode)
-{
-    // FIXME: implement
-}
-
-void TestRunner::setPersistentUserStyleSheetLocation(JSStringRef jsURL)
-{
-    RetainPtr<CFStringRef> urlString(AdoptCF, JSStringCopyCFString(0, jsURL));
-    ::setPersistentUserStyleSheetLocation(urlString.get());
-}
-
-void TestRunner::clearPersistentUserStyleSheet()
-{
-    ::setPersistentUserStyleSheetLocation(0);
-}
-
-void TestRunner::setWindowIsKey(bool flag)
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return;
-
-    COMPtr<IWebViewPrivate> viewPrivate;
-    if (FAILED(webView->QueryInterface(&viewPrivate)))
-        return;
-
-    HWND webViewWindow;
-    if (FAILED(viewPrivate->viewWindow((OLE_HANDLE*)&webViewWindow)))
-        return;
-
-    ::SendMessage(webViewWindow, flag ? WM_SETFOCUS : WM_KILLFOCUS, (WPARAM)::GetDesktopWindow(), 0);
-}
-
-static const CFTimeInterval waitToDumpWatchdogInterval = 30.0;
-
-static void CALLBACK waitUntilDoneWatchdogFired(HWND, UINT, UINT_PTR, DWORD)
-{
-    gTestRunner->waitToDumpWatchdogTimerFired();
-}
-
-void TestRunner::setWaitToDump(bool waitUntilDone)
-{
-    m_waitToDump = waitUntilDone;
-    if (m_waitToDump && !waitToDumpWatchdog)
-        waitToDumpWatchdog = SetTimer(0, 0, waitToDumpWatchdogInterval * 1000, waitUntilDoneWatchdogFired);
-}
-
-int TestRunner::windowCount()
-{
-    return openWindows().size();
-}
-
-void TestRunner::execCommand(JSStringRef name, JSStringRef value)
-{
-    wstring wName = jsStringRefToWString(name);
-    wstring wValue = jsStringRefToWString(value);
-
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return;
-
-    COMPtr<IWebViewPrivate> viewPrivate;
-    if (FAILED(webView->QueryInterface(&viewPrivate)))
-        return;
-
-    BSTR nameBSTR = SysAllocStringLen((OLECHAR*)wName.c_str(), wName.length());
-    BSTR valueBSTR = SysAllocStringLen((OLECHAR*)wValue.c_str(), wValue.length());
-    viewPrivate->executeCoreCommandByName(nameBSTR, valueBSTR);
-
-    SysFreeString(nameBSTR);
-    SysFreeString(valueBSTR);
-}
-
-bool TestRunner::findString(JSContextRef /* context */, JSStringRef /* target */, JSObjectRef /* optionsArray */)
-{
-    // FIXME: Implement
-    return false;
-}
-
-void TestRunner::setCacheModel(int)
-{
-    // FIXME: Implement
-}
-
-bool TestRunner::isCommandEnabled(JSStringRef /*name*/)
-{
-    printf("ERROR: TestRunner::isCommandEnabled() not implemented\n");
-    return false;
-}
-
-void TestRunner::clearAllApplicationCaches()
-{
-    // FIXME: Implement to support application cache quotas.
-}
-
-void TestRunner::clearApplicationCacheForOrigin(JSStringRef origin)
-{
-    // FIXME: Implement to support deleting all application cache for an origin.
-}
-
-void TestRunner::setApplicationCacheOriginQuota(unsigned long long quota)
-{
-    // FIXME: Implement to support application cache quotas.
-}
-
-JSValueRef TestRunner::originsWithApplicationCache(JSContextRef context)
-{
-    // FIXME: Implement to get origins that have application caches.
-    return JSValueMakeUndefined(context);
-}
-
-long long TestRunner::applicationCacheDiskUsageForOrigin(JSStringRef name)
-{
-    // FIXME: Implement to get disk usage by all application caches for an origin.
-    return 0;
-}
-
-void TestRunner::clearAllDatabases()
-{
-    COMPtr<IWebDatabaseManager> databaseManager;
-    COMPtr<IWebDatabaseManager> tmpDatabaseManager;
-    if (FAILED(WebKitCreateInstance(CLSID_WebDatabaseManager, 0, IID_IWebDatabaseManager, (void**)&tmpDatabaseManager)))
-        return;
-    if (FAILED(tmpDatabaseManager->sharedWebDatabaseManager(&databaseManager)))
-        return;
-
-    databaseManager->deleteAllDatabases();
-}
-
-void TestRunner::overridePreference(JSStringRef key, JSStringRef value)
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return;
-
-    COMPtr<IWebPreferences> preferences;
-    if (FAILED(webView->preferences(&preferences)))
-        return;
-
-    COMPtr<IWebPreferencesPrivate> prefsPrivate(Query, preferences);
-    if (!prefsPrivate)
-        return;
-
-    BSTR keyBSTR = JSStringCopyBSTR(key);
-    BSTR valueBSTR = JSStringCopyBSTR(value);
-    prefsPrivate->setPreferenceForTest(keyBSTR, valueBSTR);
-    SysFreeString(keyBSTR);
-    SysFreeString(valueBSTR);
-}
-
-void TestRunner::setDatabaseQuota(unsigned long long quota)
-{
-    COMPtr<IWebDatabaseManager> databaseManager;
-    COMPtr<IWebDatabaseManager> tmpDatabaseManager;
-
-    if (FAILED(WebKitCreateInstance(CLSID_WebDatabaseManager, 0, IID_IWebDatabaseManager, (void**)&tmpDatabaseManager)))
-        return;
-    if (FAILED(tmpDatabaseManager->sharedWebDatabaseManager(&databaseManager)))
-        return;
-
-    databaseManager->setQuota(TEXT("file:///"), quota);
-}
-
-void TestRunner::goBack()
-{
-    // FIXME: implement to enable loader/navigation-while-deferring-loads.html
-}
-
-void TestRunner::setDefersLoading(bool)
-{
-    // FIXME: implement to enable loader/navigation-while-deferring-loads.html
-}
-
-void TestRunner::setDomainRelaxationForbiddenForURLScheme(bool forbidden, JSStringRef scheme)
-{
-    COMPtr<IWebViewPrivate> webView;
-    if (FAILED(WebKitCreateInstance(__uuidof(WebView), 0, __uuidof(webView), reinterpret_cast<void**>(&webView))))
-        return;
-
-    BSTR schemeBSTR = JSStringCopyBSTR(scheme);
-    webView->setDomainRelaxationForbiddenForURLScheme(forbidden, schemeBSTR);
-    SysFreeString(schemeBSTR);
-}
-
-void TestRunner::setAppCacheMaximumSize(unsigned long long size)
-{
-    printf("ERROR: TestRunner::setAppCacheMaximumSize() not implemented\n");
-}
-
-static _bstr_t bstrT(JSStringRef jsString)
-{
-    // The false parameter tells the _bstr_t constructor to adopt the BSTR we pass it.
-    return _bstr_t(JSStringCopyBSTR(jsString), false);
-}
-
-void TestRunner::addOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef destinationProtocol, JSStringRef destinationHost, bool allowDestinationSubdomains)
-{
-    COMPtr<IWebViewPrivate> webView;
-    if (FAILED(WebKitCreateInstance(__uuidof(WebView), 0, __uuidof(webView), reinterpret_cast<void**>(&webView))))
-        return;
-
-    webView->addOriginAccessWhitelistEntry(bstrT(sourceOrigin).GetBSTR(), bstrT(destinationProtocol).GetBSTR(), bstrT(destinationHost).GetBSTR(), allowDestinationSubdomains);
-}
-
-void TestRunner::removeOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef destinationProtocol, JSStringRef destinationHost, bool allowDestinationSubdomains)
-{
-    COMPtr<IWebViewPrivate> webView;
-    if (FAILED(WebKitCreateInstance(__uuidof(WebView), 0, __uuidof(webView), reinterpret_cast<void**>(&webView))))
-        return;
-
-    webView->removeOriginAccessWhitelistEntry(bstrT(sourceOrigin).GetBSTR(), bstrT(destinationProtocol).GetBSTR(), bstrT(destinationHost).GetBSTR(), allowDestinationSubdomains);
-}
-
-void TestRunner::setScrollbarPolicy(JSStringRef orientation, JSStringRef policy)
-{
-    // FIXME: implement
-}
-
-void TestRunner::addUserScript(JSStringRef source, bool runAtStart, bool allFrames)
-{
-    COMPtr<IWebViewPrivate> webView;
-    if (FAILED(WebKitCreateInstance(__uuidof(WebView), 0, __uuidof(webView), reinterpret_cast<void**>(&webView))))
-        return;
-
-    COMPtr<IWebScriptWorld> world;
-    if (FAILED(WebKitCreateInstance(__uuidof(WebScriptWorld), 0, __uuidof(world), reinterpret_cast<void**>(&world))))
-        return;
-
-    webView->addUserScriptToGroup(_bstr_t(L"org.webkit.DumpRenderTree").GetBSTR(), world.get(), bstrT(source).GetBSTR(), 0, 0, 0, 0, 0, runAtStart ? WebInjectAtDocumentStart : WebInjectAtDocumentEnd);
-}
-
-
-void TestRunner::addUserStyleSheet(JSStringRef source, bool allFrames)
-{
-    COMPtr<IWebViewPrivate> webView;
-    if (FAILED(WebKitCreateInstance(__uuidof(WebView), 0, __uuidof(webView), reinterpret_cast<void**>(&webView))))
-        return;
-
-    COMPtr<IWebScriptWorld> world;
-    if (FAILED(WebKitCreateInstance(__uuidof(WebScriptWorld), 0, __uuidof(world), reinterpret_cast<void**>(&world))))
-        return;
-
-    webView->addUserStyleSheetToGroup(_bstr_t(L"org.webkit.DumpRenderTree").GetBSTR(), world.get(), bstrT(source).GetBSTR(), 0, 0, 0, 0, 0);
-}
-
-void TestRunner::setDeveloperExtrasEnabled(bool enabled)
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return;
-
-    COMPtr<IWebPreferences> preferences;
-    if (FAILED(webView->preferences(&preferences)))
-        return;
-
-    COMPtr<IWebPreferencesPrivate> prefsPrivate(Query, preferences);
-    if (!prefsPrivate)
-        return;
-
-    prefsPrivate->setDeveloperExtrasEnabled(enabled);
-}
-
-void TestRunner::showWebInspector()
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return;
-
-    COMPtr<IWebViewPrivate> viewPrivate(Query, webView);
-    if (!viewPrivate)
-        return;
-
-    COMPtr<IWebInspector> inspector;
-    if (SUCCEEDED(viewPrivate->inspector(&inspector)))
-        inspector->show();
-}
-
-void TestRunner::closeWebInspector()
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return;
-
-    COMPtr<IWebViewPrivate> viewPrivate(Query, webView);
-    if (!viewPrivate)
-        return;
-
-    COMPtr<IWebInspector> inspector;
-    if (FAILED(viewPrivate->inspector(&inspector)))
-        return;
-
-    inspector->close();
-}
-
-void TestRunner::evaluateInWebInspector(long callId, JSStringRef script)
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return;
-
-    COMPtr<IWebViewPrivate> viewPrivate(Query, webView);
-    if (!viewPrivate)
-        return;
-
-    COMPtr<IWebInspector> inspector;
-    if (FAILED(viewPrivate->inspector(&inspector)))
-        return;
-
-    COMPtr<IWebInspectorPrivate> inspectorPrivate(Query, inspector);
-    if (!inspectorPrivate)
-        return;
-
-    inspectorPrivate->evaluateInFrontend(callId, bstrT(script).GetBSTR());
-}
-
-typedef HashMap<unsigned, COMPtr<IWebScriptWorld> > WorldMap;
-static WorldMap& worldMap()
-{
-    static WorldMap& map = *new WorldMap;
-    return map;
-}
-
-unsigned worldIDForWorld(IWebScriptWorld* world)
-{
-    WorldMap::const_iterator end = worldMap().end();
-    for (WorldMap::const_iterator it = worldMap().begin(); it != end; ++it) {
-        if (it->value == world)
-            return it->key;
-    }
-
-    return 0;
-}
-
-void TestRunner::evaluateScriptInIsolatedWorldAndReturnValue(unsigned worldID, JSObjectRef globalObject, JSStringRef script)
-{
-    // FIXME: Implement this.
-}
-
-void TestRunner::evaluateScriptInIsolatedWorld(unsigned worldID, JSObjectRef globalObject, JSStringRef script)
-{
-    COMPtr<IWebFramePrivate> framePrivate(Query, frame);
-    if (!framePrivate)
-        return;
-
-    // A worldID of 0 always corresponds to a new world. Any other worldID corresponds to a world
-    // that is created once and cached forever.
-    COMPtr<IWebScriptWorld> world;
-    if (!worldID) {
-        if (FAILED(WebKitCreateInstance(__uuidof(WebScriptWorld), 0, __uuidof(world), reinterpret_cast<void**>(&world))))
-            return;
-    } else {
-        COMPtr<IWebScriptWorld>& worldSlot = worldMap().add(worldID, 0).iterator->value;
-        if (!worldSlot && FAILED(WebKitCreateInstance(__uuidof(WebScriptWorld), 0, __uuidof(worldSlot), reinterpret_cast<void**>(&worldSlot))))
-            return;
-        world = worldSlot;
-    }
-
-    BSTR result;
-    if (FAILED(framePrivate->stringByEvaluatingJavaScriptInScriptWorld(world.get(), globalObject, bstrT(script).GetBSTR(), &result)))
-        return;
-    SysFreeString(result);
-}
-
-void TestRunner::removeAllVisitedLinks()
-{
-    COMPtr<IWebHistory> history;
-    if (FAILED(WebKitCreateInstance(CLSID_WebHistory, 0, __uuidof(history), reinterpret_cast<void**>(&history))))
-        return;
-
-    COMPtr<IWebHistory> sharedHistory;
-    if (FAILED(history->optionalSharedHistory(&sharedHistory)) || !sharedHistory)
-        return;
-
-    COMPtr<IWebHistoryPrivate> sharedHistoryPrivate;
-    if (FAILED(sharedHistory->QueryInterface(&sharedHistoryPrivate)))
-        return;
-
-    sharedHistoryPrivate->removeAllVisitedLinks();
-}
-
-void TestRunner::apiTestNewWindowDataLoadBaseURL(JSStringRef utf8Data, JSStringRef baseURL)
-{
-
-}
-
-void TestRunner::apiTestGoToCurrentBackForwardItem()
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return;
-
-    COMPtr<IWebBackForwardList> backForwardList;
-    if (FAILED(webView->backForwardList(&backForwardList)))
-        return;
-
-    COMPtr<IWebHistoryItem> item;
-    if (FAILED(backForwardList->currentItem(&item)))
-        return;
-
-    BOOL success;
-    webView->goToBackForwardItem(item.get(), &success);
-}
-
-void TestRunner::setWebViewEditable(bool)
-{
-}
-
-void TestRunner::authenticateSession(JSStringRef, JSStringRef, JSStringRef)
-{
-}
-
-void TestRunner::abortModal()
-{
-}
-
-void TestRunner::setSerializeHTTPLoads(bool)
-{
-    // FIXME: Implement.
-}
-
-void TestRunner::syncLocalStorage()
-{
-    // FIXME: Implement.
-}
-
-void TestRunner::observeStorageTrackerNotifications(unsigned number)
-{
-    // FIXME: Implement.
-}
-
-void TestRunner::deleteAllLocalStorage()
-{
-    // FIXME: Implement.
-}
-
-JSValueRef TestRunner::originsWithLocalStorage(JSContextRef context)
-{
-    // FIXME: Implement.
-    return JSValueMakeUndefined(context);
-}
-
-long long TestRunner::localStorageDiskUsageForOrigin(JSStringRef originIdentifier)
-{
-    // FIXME: Implement to support getting local storage disk usage for an origin.
-    return 0;
-}
-
-void TestRunner::deleteLocalStorageForOrigin(JSStringRef URL)
-{
-    // FIXME: Implement.
-}
-
-void TestRunner::setTextDirection(JSStringRef direction)
-{
-    COMPtr<IWebFramePrivate> framePrivate(Query, frame);
-    if (!framePrivate)
-        return;
-
-    framePrivate->setTextDirection(bstrT(direction).GetBSTR());
-}
-
-void TestRunner::addChromeInputField()
-{
-}
-
-void TestRunner::removeChromeInputField()
-{
-}
-
-void TestRunner::focusWebView()
-{
-}
-
-void TestRunner::setBackingScaleFactor(double)
-{
-}
-
-void TestRunner::grantWebNotificationPermission(JSStringRef origin)
-{
-}
-
-void TestRunner::denyWebNotificationPermission(JSStringRef jsOrigin)
-{
-}
-
-void TestRunner::removeAllWebNotificationPermissions()
-{
-}
-
-void TestRunner::simulateWebNotificationClick(JSValueRef jsNotification)
-{
-}
-
-void TestRunner::simulateLegacyWebNotificationClick(JSStringRef title)
-{
-    // FIXME: Implement.
-}
-
-void TestRunner::resetPageVisibility()
-{
-    // FIXME: Implement this.
-}
-
-void TestRunner::setPageVisibility(const char*)
-{
-    // FIXME: Implement this.
-}
-
-void TestRunner::setAutomaticLinkDetectionEnabled(bool)
-{
-    // FIXME: Implement this.
-}
-
-void TestRunner::setStorageDatabaseIdleInterval(double)
-{
-    // FIXME: Implement this.
-}
-
-void TestRunner::closeIdleLocalStorageDatabases()
-{
-    // FIXME: Implement this.
-}
diff --git a/Tools/DumpRenderTree/win/TextInputController.cpp b/Tools/DumpRenderTree/win/TextInputController.cpp
deleted file mode 100755
index c54dd17..0000000
--- a/Tools/DumpRenderTree/win/TextInputController.cpp
+++ /dev/null
@@ -1,212 +0,0 @@
-/*
- * Copyright (C) 2007, 2008, 2009, 2011 Apple Inc. All rights reserved.
- * Copyright (C) 2010 Joone Hur <joone@kldp.org>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "TextInputController.h"
-
-#include <JavaScriptCore/JSRetainPtr.h>
-#include <wtf/RefPtr.h>
-
-// Static Functions
-
-static JSValueRef setMarkedTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 3)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> str(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-
-    double from = JSValueToNumber(context, arguments[1], exception);
-    ASSERT(!*exception);
-
-    double length = JSValueToNumber(context, arguments[2], exception);
-    ASSERT(!*exception);
-
-    TextInputController* controller = static_cast<TextInputController*>(JSObjectGetPrivate(thisObject));
-    
-    if (controller)
-        controller->setMarkedText(str.get(), from, length);
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef hasMarkedTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TextInputController* controller = static_cast<TextInputController*>(JSObjectGetPrivate(thisObject));
-    
-    if (controller)
-        return JSValueMakeBoolean(context, controller->hasMarkedText());
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef unmarkTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TextInputController* controller = static_cast<TextInputController*>(JSObjectGetPrivate(thisObject));
-    if (controller)
-        controller->unmarkText();
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef markedRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TextInputController* controller = static_cast<TextInputController*>(JSObjectGetPrivate(thisObject));
-    if (controller) {
-        vector<int> range = controller->markedRange();
-        if (range.size() == 2) {
-            JSValueRef argumentsArrayValues[] = { JSValueMakeNumber(context, range[0]), JSValueMakeNumber(context, range[1]) };
-            JSObjectRef result = JSObjectMakeArray(context, sizeof(argumentsArrayValues) / sizeof(JSValueRef), argumentsArrayValues, exception);
-            ASSERT(!*exception);
-            return result;
-        }
-    }
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef insertTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 1)
-        return JSValueMakeUndefined(context);
-
-    JSRetainPtr<JSStringRef> str(Adopt, JSValueToStringCopy(context, arguments[0], exception));
-    ASSERT(!*exception);
-
-    TextInputController* controller = static_cast<TextInputController*>(JSObjectGetPrivate(thisObject));
-
-    if (controller)
-        controller->insertText(str.get());
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef firstRectForCharacterRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    if (argumentCount < 2)
-        return JSValueMakeUndefined(context);
-
-    double start = JSValueToNumber(context, arguments[0], exception);
-    ASSERT(!*exception);
-
-    double length = JSValueToNumber(context, arguments[1], exception);
-    ASSERT(!*exception);
-
-    TextInputController* controller = static_cast<TextInputController*>(JSObjectGetPrivate(thisObject));
-
-    if (controller) {
-        vector<int> rect = controller->firstRectForCharacterRange(start, length);
-        if (rect.size() == 4) {
-            JSValueRef argumentsArrayValues[] = 
-            { 
-                JSValueMakeNumber(context, rect[0]), 
-                JSValueMakeNumber(context, rect[1]), 
-                JSValueMakeNumber(context, rect[2]), 
-                JSValueMakeNumber(context, rect[3]), 
-            };
-            JSObjectRef result = JSObjectMakeArray(context, sizeof(argumentsArrayValues) / sizeof(JSValueRef), argumentsArrayValues, exception);
-            ASSERT(!*exception);
-            return result;
-        }
-    }
-
-    return JSValueMakeUndefined(context);
-}
-
-static JSValueRef selectedRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    TextInputController* controller = static_cast<TextInputController*>(JSObjectGetPrivate(thisObject));
-
-    if (controller) {
-        vector<int> rect = controller->selectedRange();
-        if (rect.size() == 2) {
-            JSValueRef argumentsArrayValues[] = { 
-                JSValueMakeNumber(context, rect[0]), 
-                JSValueMakeNumber(context, rect[1]), 
-            };
-            JSObjectRef result = JSObjectMakeArray(context, sizeof(argumentsArrayValues) / sizeof(JSValueRef), argumentsArrayValues, exception);
-            ASSERT(!*exception);
-            return result;
-        }
-    }
-
-    return JSValueMakeUndefined(context);
-}
-
-// Object Creation
-
-void TextInputController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef>  textInputContollerStr(Adopt, JSStringCreateWithUTF8CString("textInputController"));
-
-    JSClassRef classRef = getJSClass();
-    JSValueRef textInputContollerObject = JSObjectMake(context, classRef, this);
-    JSClassRelease(classRef);
-
-    JSObjectSetProperty(context, windowObject, textInputContollerStr.get(), textInputContollerObject, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, exception);
-}
-
-JSClassRef TextInputController::getJSClass()
-{
-    static JSStaticValue* staticValues = TextInputController::staticValues();
-    static JSStaticFunction* staticFunctions = TextInputController::staticFunctions();
-    static JSClassDefinition classDefinition = 
-    {
-        0, kJSClassAttributeNone, "TextInputController", 0, staticValues, staticFunctions,
-        0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
-    };
-
-    return JSClassCreate(&classDefinition);
-}
-
-JSStaticValue* TextInputController::staticValues()
-{
-    static JSStaticValue staticValues[] = 
-    {
-        { 0, 0, 0, 0 }
-    };
-    return staticValues;
-}
-
-JSStaticFunction* TextInputController::staticFunctions()
-{
-    static JSStaticFunction staticFunctions[] = {
-        { "setMarkedText", setMarkedTextCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "hasMarkedText", hasMarkedTextCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "unmarkText", unmarkTextCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "markedRange", markedRangeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "insertText", insertTextCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "firstRectForCharacterRange", firstRectForCharacterRangeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { "selectedRange", selectedRangeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
-        { 0, 0, 0 }
-    };
-
-    return staticFunctions;
-}
diff --git a/Tools/DumpRenderTree/win/TextInputController.h b/Tools/DumpRenderTree/win/TextInputController.h
deleted file mode 100755
index 1c28e60..0000000
--- a/Tools/DumpRenderTree/win/TextInputController.h
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
- * Copyright (C) 2007, 2008, 2009 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- 
-#ifndef TextInputController_h
-#define TextInputController_h
-
-#include <JavaScriptCore/JSContextRef.h>
-#include <JavaScriptCore/JSObjectRef.h>
-#include <JavaScriptCore/JSStringRef.h>
-#include <JavaScriptCore/JSValueRef.h>
-#include <vector>
-#include <wtf/PassRefPtr.h>
-
-using namespace std;
-
-class TextInputController {
-public:
-    void makeWindowObject(JSContextRef, JSObjectRef windowObject, JSValueRef* exception);
-
-    void setMarkedText(JSStringRef text, unsigned int from, unsigned int length);
-    bool hasMarkedText();
-    void unmarkText();
-    vector<int> markedRange();
-    void insertText(JSStringRef text);
-    vector<int> firstRectForCharacterRange(unsigned int start, unsigned int length);
-    vector<int> selectedRange();
-
-private:    
-    static JSClassRef getJSClass();
-    static JSStaticValue* staticValues();
-    static JSStaticFunction* staticFunctions();
-};
-
-#endif // TextInputController_h
diff --git a/Tools/DumpRenderTree/win/TextInputControllerWin.cpp b/Tools/DumpRenderTree/win/TextInputControllerWin.cpp
deleted file mode 100755
index f4674e5..0000000
--- a/Tools/DumpRenderTree/win/TextInputControllerWin.cpp
+++ /dev/null
@@ -1,170 +0,0 @@
-/*
- * Copyright (C) 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "TextInputController.h"
-
-#include "DumpRenderTree.h"
-#include <WebCore/COMPtr.h>
-#include <WebKit/WebKit.h>
-#include <comutil.h>
-#include <string>
-
-using namespace std;
-
-void TextInputController::setMarkedText(JSStringRef text, unsigned int from, unsigned int length) 
-{    
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return;
-
-    COMPtr<IWebViewPrivate> viewPrivate;
-    if (FAILED(webView->QueryInterface(&viewPrivate)))
-        return;
-
-    _bstr_t bstr(wstring(JSStringGetCharactersPtr(text), JSStringGetLength(text)).data());
-
-    viewPrivate->setCompositionForTesting(bstr, from, length);
-}
-
-bool TextInputController::hasMarkedText()
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return false;
-
-    COMPtr<IWebViewPrivate> viewPrivate;
-    if (FAILED(webView->QueryInterface(&viewPrivate)))
-        return false;
-
-    BOOL result;
-    viewPrivate->hasCompositionForTesting(&result);
-    return result;
-}
-
-void TextInputController::unmarkText()
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return;
-
-    COMPtr<IWebViewPrivate> viewPrivate;
-    if (FAILED(webView->QueryInterface(&viewPrivate)))
-        return;
-
-    _bstr_t empty;
-    viewPrivate->confirmCompositionForTesting(empty);
-}
-
-vector<int> TextInputController::markedRange()
-{
-    // empty vector
-    vector<int> result;
-
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return result;
-
-    COMPtr<IWebViewPrivate> viewPrivate;
-    if (FAILED(webView->QueryInterface(&viewPrivate)))
-        return result;
-
-    unsigned int startPos;
-    unsigned int length;
-    if (SUCCEEDED(viewPrivate->compositionRangeForTesting(&startPos, &length))) {
-        result.resize(2);
-        result[0] = startPos;
-        result[1] = length;
-    }
-
-    return result;
-}
-
-void TextInputController::insertText(JSStringRef text)
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return;
-
-    COMPtr<IWebViewPrivate> viewPrivate;
-    if (FAILED(webView->QueryInterface(&viewPrivate)))
-        return;
- 
-    _bstr_t bstr(wstring(JSStringGetCharactersPtr(text), JSStringGetLength(text)).data());
-
-    viewPrivate->confirmCompositionForTesting(bstr);
-}
-
-vector<int> TextInputController::firstRectForCharacterRange(unsigned int start, unsigned int length)
-{
-    // empty vector
-    vector<int> result;
-
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return result;
-
-    COMPtr<IWebViewPrivate> viewPrivate;
-    if (FAILED(webView->QueryInterface(&viewPrivate)))
-        return result;
-
-    RECT resultRECT;
-    if SUCCEEDED(viewPrivate->firstRectForCharacterRangeForTesting(start, length, &resultRECT)) {
-        result.resize(4);
-        result[0] = resultRECT.left;
-        result[1] = resultRECT.top;
-        result[2] = resultRECT.right - resultRECT.left;
-        result[3] = resultRECT.bottom - resultRECT.top;
-    }
-
-    return result;
-}
-
-vector<int> TextInputController::selectedRange()
-{
-    // empty vector
-    vector<int> result;
-
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return result;
-
-    COMPtr<IWebViewPrivate> viewPrivate;
-    if (FAILED(webView->QueryInterface(&viewPrivate)))
-        return result;
-
-    unsigned int startPos;
-    unsigned int length;
-    if (SUCCEEDED(viewPrivate->selectedRangeForTesting(&startPos, &length))) {
-        result.resize(2);
-        result[0] = startPos;
-        result[1] = length;
-    }
-
-    return result;
-}
diff --git a/Tools/DumpRenderTree/win/UIDelegate.cpp b/Tools/DumpRenderTree/win/UIDelegate.cpp
deleted file mode 100644
index c757488..0000000
--- a/Tools/DumpRenderTree/win/UIDelegate.cpp
+++ /dev/null
@@ -1,667 +0,0 @@
-/*
- * Copyright (C) 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "UIDelegate.h"
-
-#include "DumpRenderTree.h"
-#include "DraggingInfo.h"
-#include "EventSender.h"
-#include "DRTDesktopNotificationPresenter.h"
-#include "TestRunner.h"
-#include <WebCore/COMPtr.h>
-#include <wtf/Assertions.h>
-#include <wtf/PassOwnPtr.h>
-#include <wtf/Platform.h>
-#include <wtf/Vector.h>
-#include <JavaScriptCore/JavaScriptCore.h>
-#include <WebKit/WebKit.h>
-#include <stdio.h>
-
-using std::wstring;
-
-class DRTUndoObject {
-public:
-    DRTUndoObject(IWebUndoTarget* target, BSTR actionName, IUnknown* obj)
-        : m_target(target)
-        , m_actionName(SysAllocString(actionName))
-        , m_obj(obj)
-    {
-    }
-
-    ~DRTUndoObject()
-    {
-        SysFreeString(m_actionName);
-    }
-
-    void invoke()
-    {
-        m_target->invoke(m_actionName, m_obj.get());
-    }
-
-private:
-    IWebUndoTarget* m_target;
-    BSTR m_actionName;
-    COMPtr<IUnknown> m_obj;
-};
-
-class DRTUndoStack {
-public:
-    ~DRTUndoStack() { deleteAllValues(m_undoVector); }
-
-    bool isEmpty() const { return m_undoVector.isEmpty(); }
-    void clear() { deleteAllValues(m_undoVector); m_undoVector.clear(); }
-
-    void push(DRTUndoObject* undoObject) { m_undoVector.append(undoObject); }
-    DRTUndoObject* pop() { DRTUndoObject* top = m_undoVector.last(); m_undoVector.removeLast(); return top; }
-
-private:
-    Vector<DRTUndoObject*> m_undoVector;
-};
-
-class DRTUndoManager {
-public:
-    DRTUndoManager();
-
-    void removeAllActions();
-    void registerUndoWithTarget(IWebUndoTarget* target, BSTR actionName, IUnknown* obj);
-    void redo();
-    void undo();
-    bool canRedo() { return !m_redoStack->isEmpty(); }
-    bool canUndo() { return !m_undoStack->isEmpty(); }
-
-private:
-    OwnPtr<DRTUndoStack> m_redoStack;
-    OwnPtr<DRTUndoStack> m_undoStack;
-    bool m_isRedoing;
-    bool m_isUndoing;
-};
-
-DRTUndoManager::DRTUndoManager()
-    : m_redoStack(adoptPtr(new DRTUndoStack))
-    , m_undoStack(adoptPtr(new DRTUndoStack))
-    , m_isRedoing(false)
-    , m_isUndoing(false)
-{
-}
-
-void DRTUndoManager::removeAllActions()
-{
-    m_redoStack->clear();
-    m_undoStack->clear();
-}
-
-void DRTUndoManager::registerUndoWithTarget(IWebUndoTarget* target, BSTR actionName, IUnknown* obj)
-{
-    if (!m_isUndoing && !m_isRedoing)
-        m_redoStack->clear();
-
-    DRTUndoStack* stack = m_isUndoing ? m_redoStack.get() : m_undoStack.get();
-    stack->push(new DRTUndoObject(target, actionName, obj));
-}
-
-void DRTUndoManager::redo()
-{
-    if (!canRedo())
-        return;
-
-    m_isRedoing = true;
-
-    DRTUndoObject* redoObject = m_redoStack->pop();
-    redoObject->invoke();
-    delete redoObject;
-
-    m_isRedoing = false;
-}
-
-void DRTUndoManager::undo()
-{
-    if (!canUndo())
-        return;
-
-    m_isUndoing = true;
-
-    DRTUndoObject* undoObject = m_undoStack->pop();
-    undoObject->invoke();
-    delete undoObject;
-
-    m_isUndoing = false;
-}
-
-UIDelegate::UIDelegate()
-    : m_refCount(1)
-    , m_undoManager(adoptPtr(new DRTUndoManager))
-    , m_desktopNotifications(new DRTDesktopNotificationPresenter)
-{
-    m_frame.bottom = 0;
-    m_frame.top = 0;
-    m_frame.left = 0;
-    m_frame.right = 0;
-}
-
-void UIDelegate::resetUndoManager()
-{
-    m_undoManager = adoptPtr(new DRTUndoManager);
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::QueryInterface(REFIID riid, void** ppvObject)
-{
-    *ppvObject = 0;
-    if (IsEqualGUID(riid, IID_IUnknown))
-        *ppvObject = static_cast<IWebUIDelegate*>(this);
-    else if (IsEqualGUID(riid, IID_IWebUIDelegate))
-        *ppvObject = static_cast<IWebUIDelegate*>(this);
-    else if (IsEqualGUID(riid, IID_IWebUIDelegate2))
-        *ppvObject = static_cast<IWebUIDelegate2*>(this);
-    else if (IsEqualGUID(riid, IID_IWebUIDelegatePrivate))
-        *ppvObject = static_cast<IWebUIDelegatePrivate*>(this);
-    else if (IsEqualGUID(riid, IID_IWebUIDelegatePrivate2))
-        *ppvObject = static_cast<IWebUIDelegatePrivate2*>(this);
-    else if (IsEqualGUID(riid, IID_IWebUIDelegatePrivate3))
-        *ppvObject = static_cast<IWebUIDelegatePrivate3*>(this);
-    else
-        return E_NOINTERFACE;
-
-    AddRef();
-    return S_OK;
-}
-
-ULONG STDMETHODCALLTYPE UIDelegate::AddRef()
-{
-    return ++m_refCount;
-}
-
-ULONG STDMETHODCALLTYPE UIDelegate::Release()
-{
-    ULONG newRef = --m_refCount;
-    if (!newRef)
-        delete(this);
-
-    return newRef;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::hasCustomMenuImplementation( 
-        /* [retval][out] */ BOOL *hasCustomMenus)
-{
-    *hasCustomMenus = TRUE;
-
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::trackCustomPopupMenu( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ OLE_HANDLE menu,
-        /* [in] */ LPPOINT point)
-{
-    // Do nothing
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::registerUndoWithTarget(
-        /* [in] */ IWebUndoTarget* target,
-        /* [in] */ BSTR actionName,
-        /* [in] */ IUnknown* actionArg)
-{
-    m_undoManager->registerUndoWithTarget(target, actionName, actionArg);
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::removeAllActionsWithTarget(
-        /* [in] */ IWebUndoTarget*)
-{
-    m_undoManager->removeAllActions();
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::setActionTitle(
-        /* [in] */ BSTR actionTitle)
-{
-    // It is not neccessary to implement this for DRT because there is
-    // menu to write out the title to.
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::undo()
-{
-    m_undoManager->undo();
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::redo()
-{
-    m_undoManager->redo();
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::canUndo(
-        /* [retval][out] */ BOOL* result)
-{
-    if (!result)
-        return E_POINTER;
-
-    *result = m_undoManager->canUndo();
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::canRedo(
-        /* [retval][out] */ BOOL* result)
-{
-    if (!result)
-        return E_POINTER;
-
-    *result = m_undoManager->canRedo();
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::printFrame( 
-    /* [in] */ IWebView *webView,
-    /* [in] */ IWebFrame *frame)
-{
-    return E_NOTIMPL;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::ftpDirectoryTemplatePath( 
-    /* [in] */ IWebView *webView,
-    /* [retval][out] */ BSTR *path)
-{
-    if (!path)
-        return E_POINTER;
-    *path = 0;
-    return E_NOTIMPL;
-}
-
-
-HRESULT STDMETHODCALLTYPE UIDelegate::webViewHeaderHeight( 
-    /* [in] */ IWebView *webView,
-    /* [retval][out] */ float *result)
-{
-    if (!result)
-        return E_POINTER;
-    *result = 0;
-    return E_NOTIMPL;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::webViewFooterHeight( 
-    /* [in] */ IWebView *webView,
-    /* [retval][out] */ float *result)
-{
-    if (!result)
-        return E_POINTER;
-    *result = 0;
-    return E_NOTIMPL;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::drawHeaderInRect( 
-    /* [in] */ IWebView *webView,
-    /* [in] */ RECT *rect,
-    /* [in] */ OLE_HANDLE drawingContext)
-{
-    return E_NOTIMPL;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::drawFooterInRect( 
-    /* [in] */ IWebView *webView,
-    /* [in] */ RECT *rect,
-    /* [in] */ OLE_HANDLE drawingContext,
-    /* [in] */ UINT pageIndex,
-    /* [in] */ UINT pageCount)
-{
-    return E_NOTIMPL;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::webViewPrintingMarginRect( 
-    /* [in] */ IWebView *webView,
-    /* [retval][out] */ RECT *rect)
-{
-    return E_NOTIMPL;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::canRunModal( 
-    /* [in] */ IWebView *webView,
-    /* [retval][out] */ BOOL *canRunBoolean)
-{
-    return E_NOTIMPL;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::createModalDialog( 
-    /* [in] */ IWebView *sender,
-    /* [in] */ IWebURLRequest *request,
-    /* [retval][out] */ IWebView **newWebView)
-{
-    return E_NOTIMPL;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::runModal( 
-    /* [in] */ IWebView *webView)
-{
-    return E_NOTIMPL;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::isMenuBarVisible( 
-    /* [in] */ IWebView *webView,
-    /* [retval][out] */ BOOL *visible)
-{
-    if (!visible)
-        return E_POINTER;
-    *visible = false;
-    return E_NOTIMPL;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::setMenuBarVisible( 
-    /* [in] */ IWebView *webView,
-    /* [in] */ BOOL visible)
-{
-    return E_NOTIMPL;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::runDatabaseSizeLimitPrompt( 
-    /* [in] */ IWebView *webView,
-    /* [in] */ BSTR displayName,
-    /* [in] */ IWebFrame *initiatedByFrame,
-    /* [retval][out] */ BOOL *allowed)
-{
-    if (!allowed)
-        return E_POINTER;
-    *allowed = false;
-    return E_NOTIMPL;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::paintCustomScrollbar( 
-    /* [in] */ IWebView *webView,
-    /* [in] */ HDC hDC,
-    /* [in] */ RECT rect,
-    /* [in] */ WebScrollBarControlSize size,
-    /* [in] */ WebScrollbarControlState state,
-    /* [in] */ WebScrollbarControlPart pressedPart,
-    /* [in] */ BOOL vertical,
-    /* [in] */ float value,
-    /* [in] */ float proportion,
-    /* [in] */ WebScrollbarControlPartMask parts)
-{
-    return E_NOTIMPL;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::paintCustomScrollCorner( 
-    /* [in] */ IWebView *webView,
-    /* [in] */ HDC hDC,
-    /* [in] */ RECT rect)
-{
-    return E_NOTIMPL;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::setFrame( 
-        /* [in] */ IWebView* /*sender*/,
-        /* [in] */ RECT* frame)
-{
-    m_frame = *frame;
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::webViewFrame( 
-        /* [in] */ IWebView* /*sender*/,
-        /* [retval][out] */ RECT* frame)
-{
-    *frame = m_frame;
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::runJavaScriptAlertPanelWithMessage( 
-        /* [in] */ IWebView* /*sender*/,
-        /* [in] */ BSTR message)
-{
-    printf("ALERT: %S\n", message ? message : L"");
-    fflush(stdout);
-
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::runJavaScriptConfirmPanelWithMessage( 
-    /* [in] */ IWebView* sender,
-    /* [in] */ BSTR message,
-    /* [retval][out] */ BOOL* result)
-{
-    printf("CONFIRM: %S\n", message ? message : L"");
-    *result = TRUE;
-
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::runJavaScriptTextInputPanelWithPrompt( 
-    /* [in] */ IWebView *sender,
-    /* [in] */ BSTR message,
-    /* [in] */ BSTR defaultText,
-    /* [retval][out] */ BSTR *result)
-{
-    printf("PROMPT: %S, default text: %S\n", message ? message : L"", defaultText ? defaultText : L"");
-    *result = SysAllocString(defaultText);
-
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::runBeforeUnloadConfirmPanelWithMessage( 
-    /* [in] */ IWebView* /*sender*/,
-    /* [in] */ BSTR message,
-    /* [in] */ IWebFrame* /*initiatedByFrame*/,
-    /* [retval][out] */ BOOL* result)
-{
-    if (!result)
-        return E_POINTER;
-    printf("CONFIRM NAVIGATION: %S\n", message ? message : L"");
-    *result = !gTestRunner->shouldStayOnPageAfterHandlingBeforeUnload();
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::webViewAddMessageToConsole( 
-    /* [in] */ IWebView* sender,
-    /* [in] */ BSTR message,
-    /* [in] */ int lineNumber,
-    /* [in] */ BSTR url,
-    /* [in] */ BOOL isError)
-{
-    wstring newMessage;
-    if (message) {
-        newMessage = message;
-        size_t fileProtocol = newMessage.find(L"file://");
-        if (fileProtocol != wstring::npos)
-            newMessage = newMessage.substr(0, fileProtocol) + lastPathComponent(newMessage.substr(fileProtocol));
-    }
-
-    printf("CONSOLE MESSAGE: ");
-    if (lineNumber)
-        printf("line %d: ", lineNumber);
-    printf("%s\n", toUTF8(newMessage).c_str());
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::doDragDrop( 
-    /* [in] */ IWebView* sender,
-    /* [in] */ IDataObject* object,
-    /* [in] */ IDropSource* source,
-    /* [in] */ DWORD okEffect,
-    /* [retval][out] */ DWORD* performedEffect)
-{
-    if (!performedEffect)
-        return E_POINTER;
-
-    *performedEffect = 0;
-
-    draggingInfo = new DraggingInfo(object, source);
-    HRESULT oleDragAndDropReturnValue = DRAGDROP_S_CANCEL;
-    replaySavedEvents(&oleDragAndDropReturnValue);
-    if (draggingInfo) {
-        *performedEffect = draggingInfo->performedDropEffect();
-        delete draggingInfo;
-        draggingInfo = 0;
-    }
-    return oleDragAndDropReturnValue;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::webViewGetDlgCode( 
-    /* [in] */ IWebView* /*sender*/,
-    /* [in] */ UINT /*keyCode*/,
-    /* [retval][out] */ LONG_PTR *code)
-{
-    if (!code)
-        return E_POINTER;
-    *code = 0;
-    return E_NOTIMPL;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::createWebViewWithRequest( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ IWebURLRequest *request,
-        /* [retval][out] */ IWebView **newWebView)
-{
-    if (!::gTestRunner->canOpenWindows())
-        return E_FAIL;
-    *newWebView = createWebViewAndOffscreenWindow();
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::webViewClose(
-        /* [in] */ IWebView *sender)
-{
-    HWND hostWindow;
-    sender->hostWindow(reinterpret_cast<OLE_HANDLE*>(&hostWindow));
-    DestroyWindow(hostWindow);
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::webViewFocus( 
-        /* [in] */ IWebView *sender)
-{
-    HWND hostWindow;
-    sender->hostWindow(reinterpret_cast<OLE_HANDLE*>(&hostWindow));
-    SetForegroundWindow(hostWindow);
-    return S_OK; 
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::webViewUnfocus( 
-        /* [in] */ IWebView *sender)
-{
-    SetForegroundWindow(GetDesktopWindow());
-    return S_OK; 
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::webViewPainted( 
-        /* [in] */ IWebView *sender)
-{
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::exceededDatabaseQuota( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ IWebFrame *frame,
-        /* [in] */ IWebSecurityOrigin *origin,
-        /* [in] */ BSTR databaseIdentifier)
-{
-    BSTR protocol;
-    BSTR host;
-    unsigned short port;
-
-    origin->protocol(&protocol);
-    origin->host(&host);
-    origin->port(&port);
-
-    if (!done && gTestRunner->dumpDatabaseCallbacks())
-        printf("UI DELEGATE DATABASE CALLBACK: exceededDatabaseQuotaForSecurityOrigin:{%S, %S, %i} database:%S\n", protocol, host, port, databaseIdentifier);
-
-    SysFreeString(protocol);
-    SysFreeString(host);
-
-    static const unsigned long long defaultQuota = 5 * 1024 * 1024;
-    origin->setQuota(defaultQuota);
-
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::embeddedViewWithArguments( 
-    /* [in] */ IWebView *sender,
-    /* [in] */ IWebFrame *frame,
-    /* [in] */ IPropertyBag *arguments,
-    /* [retval][out] */ IWebEmbeddedView **view)
-{
-    if (!view)
-        return E_POINTER;
-    *view = 0;
-    return E_NOTIMPL;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::webViewClosing( 
-    /* [in] */ IWebView *sender)
-{
-    return E_NOTIMPL;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::webViewSetCursor( 
-    /* [in] */ IWebView *sender,
-    /* [in] */ OLE_HANDLE cursor)
-{
-    return E_NOTIMPL;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::webViewDidInvalidate( 
-    /* [in] */ IWebView *sender)
-{
-    return E_NOTIMPL;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::setStatusText(IWebView*, BSTR text)
-{ 
-    if (gTestRunner->dumpStatusCallbacks())
-        printf("UI DELEGATE STATUS CALLBACK: setStatusText:%s\n", text ? toUTF8(text).c_str() : "");
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::desktopNotificationsDelegate(IWebDesktopNotificationsDelegate** result)
-{
-    m_desktopNotifications.copyRefTo(result);
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::createWebViewWithRequest(IWebView* sender, IWebURLRequest* request, IPropertyBag* windowFeatures, IWebView** newWebView)
-{
-    return E_NOTIMPL;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::drawBackground(IWebView* sender, OLE_HANDLE hdc, const RECT* dirtyRect)
-{
-    return E_NOTIMPL;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::decidePolicyForGeolocationRequest(IWebView* sender, IWebFrame* frame, IWebSecurityOrigin* origin, IWebGeolocationPolicyListener* listener)
-{
-    return E_NOTIMPL;
-}
-
-HRESULT STDMETHODCALLTYPE UIDelegate::didPressMissingPluginButton(IDOMElement* element)
-{
-    printf("MISSING PLUGIN BUTTON PRESSED\n");
-    return S_OK;
-}
-
diff --git a/Tools/DumpRenderTree/win/UIDelegate.h b/Tools/DumpRenderTree/win/UIDelegate.h
deleted file mode 100644
index 0c9fdaf..0000000
--- a/Tools/DumpRenderTree/win/UIDelegate.h
+++ /dev/null
@@ -1,415 +0,0 @@
-/*
- * Copyright (C) 2005, 2006, 2007 Apple Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef UIDelegate_h
-#define UIDelegate_h
-
-#include <WebCore/COMPtr.h>
-#include <WebKit/WebKit.h>
-#include <wtf/OwnPtr.h>
-#include <windef.h>
-
-class DRTUndoManager;
-class DRTDesktopNotificationPresenter;
-
-class UIDelegate : public IWebUIDelegate2, IWebUIDelegatePrivate3 {
-public:
-    UIDelegate();
-
-    void resetUndoManager();
-
-    // IUnknown
-    virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppvObject);
-    virtual ULONG STDMETHODCALLTYPE AddRef(void);
-    virtual ULONG STDMETHODCALLTYPE Release(void);
-
-    // IWebUIDelegate
-    virtual HRESULT STDMETHODCALLTYPE createWebViewWithRequest( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ IWebURLRequest *request,
-        /* [retval][out] */ IWebView **newWebView);
-
-    virtual HRESULT STDMETHODCALLTYPE webViewShow( 
-        /* [in] */ IWebView *sender) { return E_NOTIMPL; }
-
-    virtual HRESULT STDMETHODCALLTYPE webViewClose( 
-        /* [in] */ IWebView *sender);
-
-    virtual HRESULT STDMETHODCALLTYPE webViewFocus( 
-        /* [in] */ IWebView *sender);
-
-    virtual HRESULT STDMETHODCALLTYPE webViewUnfocus( 
-        /* [in] */ IWebView *sender);
-
-    virtual HRESULT STDMETHODCALLTYPE webViewFirstResponder( 
-        /* [in] */ IWebView *sender,
-        /* [retval][out] */ OLE_HANDLE *responder) { return E_NOTIMPL; }
-
-    virtual HRESULT STDMETHODCALLTYPE makeFirstResponder( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ OLE_HANDLE responder) { return E_NOTIMPL; }
-
-    virtual HRESULT STDMETHODCALLTYPE setStatusText( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ BSTR text);
-
-    virtual HRESULT STDMETHODCALLTYPE webViewStatusText( 
-        /* [in] */ IWebView *sender,
-        /* [retval][out] */ BSTR *text) { return E_NOTIMPL; }
-
-    virtual HRESULT STDMETHODCALLTYPE webViewAreToolbarsVisible( 
-        /* [in] */ IWebView *sender,
-        /* [retval][out] */ BOOL *visible) { return E_NOTIMPL; }
-
-    virtual HRESULT STDMETHODCALLTYPE setToolbarsVisible( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ BOOL visible) { return E_NOTIMPL; }
-
-    virtual HRESULT STDMETHODCALLTYPE webViewIsStatusBarVisible( 
-        /* [in] */ IWebView *sender,
-        /* [retval][out] */ BOOL *visible) { return E_NOTIMPL; }
-
-    virtual HRESULT STDMETHODCALLTYPE setStatusBarVisible( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ BOOL visible) { return E_NOTIMPL; }
-
-    virtual HRESULT STDMETHODCALLTYPE webViewIsResizable( 
-        /* [in] */ IWebView *sender,
-        /* [retval][out] */ BOOL *resizable) { return E_NOTIMPL; }
-
-    virtual HRESULT STDMETHODCALLTYPE setResizable( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ BOOL resizable) { return E_NOTIMPL; }
-
-    virtual HRESULT STDMETHODCALLTYPE setFrame( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ RECT *frame);
-
-    virtual HRESULT STDMETHODCALLTYPE webViewFrame( 
-        /* [in] */ IWebView *sender,
-        /* [retval][out] */ RECT *frame);
-
-    virtual HRESULT STDMETHODCALLTYPE setContentRect( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ RECT *contentRect) { return E_NOTIMPL; }
-
-    virtual HRESULT STDMETHODCALLTYPE webViewContentRect( 
-        /* [in] */ IWebView *sender,
-        /* [retval][out] */ RECT *contentRect) { return E_NOTIMPL; }
-
-    virtual HRESULT STDMETHODCALLTYPE runJavaScriptAlertPanelWithMessage( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ BSTR message);
-
-    virtual HRESULT STDMETHODCALLTYPE runJavaScriptConfirmPanelWithMessage( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ BSTR message,
-        /* [retval][out] */ BOOL *result);
-
-    virtual HRESULT STDMETHODCALLTYPE runJavaScriptTextInputPanelWithPrompt( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ BSTR message,
-        /* [in] */ BSTR defaultText,
-        /* [retval][out] */ BSTR *result);
-
-    virtual HRESULT STDMETHODCALLTYPE runBeforeUnloadConfirmPanelWithMessage( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ BSTR message,
-        /* [in] */ IWebFrame *initiatedByFrame,
-        /* [retval][out] */ BOOL *result);
-
-    virtual HRESULT STDMETHODCALLTYPE runOpenPanelForFileButtonWithResultListener( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ IWebOpenPanelResultListener *resultListener) { return E_NOTIMPL; }
-
-    virtual HRESULT STDMETHODCALLTYPE mouseDidMoveOverElement( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ IPropertyBag *elementInformation,
-        /* [in] */ UINT modifierFlags) { return E_NOTIMPL; }
-
-    virtual HRESULT STDMETHODCALLTYPE contextMenuItemsForElement( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ IPropertyBag *element,
-        /* [in] */ OLE_HANDLE defaultItems,
-        /* [retval][out] */ OLE_HANDLE *resultMenu) { return E_NOTIMPL; }
-
-    virtual HRESULT STDMETHODCALLTYPE validateUserInterfaceItem( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ UINT itemCommandID,
-        /* [in] */ BOOL defaultValidation,
-        /* [retval][out] */ BOOL *isValid) { return E_NOTIMPL; }
-
-    virtual HRESULT STDMETHODCALLTYPE shouldPerformAction( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ UINT itemCommandID,
-        /* [in] */ UINT sender) { return E_NOTIMPL; }
-
-    virtual HRESULT STDMETHODCALLTYPE dragDestinationActionMaskForDraggingInfo( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IDataObject *draggingInfo,
-        /* [retval][out] */ WebDragDestinationAction *action) { return E_NOTIMPL; }
-
-    virtual HRESULT STDMETHODCALLTYPE willPerformDragDestinationAction( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ WebDragDestinationAction action,
-        /* [in] */ IDataObject *draggingInfo) { return E_NOTIMPL; }
-
-    virtual HRESULT STDMETHODCALLTYPE dragSourceActionMaskForPoint( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ LPPOINT point,
-        /* [retval][out] */ WebDragSourceAction *action) { return E_NOTIMPL; }
-
-    virtual HRESULT STDMETHODCALLTYPE willPerformDragSourceAction( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ WebDragSourceAction action,
-        /* [in] */ LPPOINT point,
-        /* [in] */ IDataObject *pasteboard,
-        /* [retval][out] */ IDataObject **newPasteboard) { return E_NOTIMPL; }
-
-    virtual HRESULT STDMETHODCALLTYPE contextMenuItemSelected( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ void *item,
-        /* [in] */ IPropertyBag *element) { return E_NOTIMPL; } 
-        
-    virtual HRESULT STDMETHODCALLTYPE hasCustomMenuImplementation( 
-        /* [retval][out] */ BOOL *hasCustomMenus);
-    
-    virtual HRESULT STDMETHODCALLTYPE trackCustomPopupMenu( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ OLE_HANDLE menu,
-        /* [in] */ LPPOINT point);
-       
-    virtual HRESULT STDMETHODCALLTYPE measureCustomMenuItem( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ void *measureItem) { return E_NOTIMPL; }
-        
-    virtual HRESULT STDMETHODCALLTYPE drawCustomMenuItem( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ void *drawItem) { return E_NOTIMPL; }
-
-    virtual HRESULT STDMETHODCALLTYPE addCustomMenuDrawingData( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ OLE_HANDLE menu) { return E_NOTIMPL; }
-
-    virtual HRESULT STDMETHODCALLTYPE cleanUpCustomMenuDrawingData( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ OLE_HANDLE menu) { return E_NOTIMPL; }
-
-    virtual HRESULT STDMETHODCALLTYPE canTakeFocus( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ BOOL forward,
-        /* [out] */ BOOL *result) { return E_NOTIMPL; }
-        
-    virtual HRESULT STDMETHODCALLTYPE takeFocus( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ BOOL forward) { return E_NOTIMPL; }
-    
-    virtual HRESULT STDMETHODCALLTYPE registerUndoWithTarget( 
-        /* [in] */ IWebUndoTarget *target,
-        /* [in] */ BSTR actionName,
-        /* [in] */ IUnknown *actionArg);
-    
-    virtual HRESULT STDMETHODCALLTYPE removeAllActionsWithTarget( 
-        /* [in] */ IWebUndoTarget *target);
-    
-    virtual HRESULT STDMETHODCALLTYPE setActionTitle( 
-        /* [in] */ BSTR actionTitle);
-    
-    virtual HRESULT STDMETHODCALLTYPE undo();
-    
-    virtual HRESULT STDMETHODCALLTYPE redo();
-    
-    virtual HRESULT STDMETHODCALLTYPE canUndo( 
-        /* [retval][out] */ BOOL *result);
-    
-    virtual HRESULT STDMETHODCALLTYPE canRedo( 
-        /* [retval][out] */ BOOL *result);
-
-    virtual HRESULT STDMETHODCALLTYPE printFrame( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IWebFrame *frame);
-    
-    virtual HRESULT STDMETHODCALLTYPE ftpDirectoryTemplatePath( 
-        /* [in] */ IWebView *webView,
-        /* [retval][out] */ BSTR *path);
-    
-    virtual HRESULT STDMETHODCALLTYPE webViewHeaderHeight( 
-        /* [in] */ IWebView *webView,
-        /* [retval][out] */ float *result);
-    
-    virtual HRESULT STDMETHODCALLTYPE webViewFooterHeight( 
-        /* [in] */ IWebView *webView,
-        /* [retval][out] */ float *result);
-    
-    virtual HRESULT STDMETHODCALLTYPE drawHeaderInRect( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ RECT *rect,
-        /* [in] */ OLE_HANDLE drawingContext);
-    
-    virtual HRESULT STDMETHODCALLTYPE drawFooterInRect( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ RECT *rect,
-        /* [in] */ OLE_HANDLE drawingContext,
-        /* [in] */ UINT pageIndex,
-        /* [in] */ UINT pageCount);
-    
-    virtual HRESULT STDMETHODCALLTYPE webViewPrintingMarginRect( 
-        /* [in] */ IWebView *webView,
-        /* [retval][out] */ RECT *rect);
-    
-    virtual HRESULT STDMETHODCALLTYPE canRunModal( 
-        /* [in] */ IWebView *webView,
-        /* [retval][out] */ BOOL *canRunBoolean);
-    
-    virtual HRESULT STDMETHODCALLTYPE createModalDialog( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ IWebURLRequest *request,
-        /* [retval][out] */ IWebView **newWebView);
-    
-    virtual HRESULT STDMETHODCALLTYPE runModal( 
-        /* [in] */ IWebView *webView);
-    
-    virtual HRESULT STDMETHODCALLTYPE isMenuBarVisible( 
-        /* [in] */ IWebView *webView,
-        /* [retval][out] */ BOOL *visible);
-    
-    virtual HRESULT STDMETHODCALLTYPE setMenuBarVisible( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ BOOL visible);
-    
-    virtual HRESULT STDMETHODCALLTYPE runDatabaseSizeLimitPrompt( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ BSTR displayName,
-        /* [in] */ IWebFrame *initiatedByFrame,
-        /* [retval][out] */ BOOL *allowed);
-    
-    virtual HRESULT STDMETHODCALLTYPE paintCustomScrollbar( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ HDC hDC,
-        /* [in] */ RECT rect,
-        /* [in] */ WebScrollBarControlSize size,
-        /* [in] */ WebScrollbarControlState state,
-        /* [in] */ WebScrollbarControlPart pressedPart,
-        /* [in] */ BOOL vertical,
-        /* [in] */ float value,
-        /* [in] */ float proportion,
-        /* [in] */ WebScrollbarControlPartMask parts);
-    
-    virtual HRESULT STDMETHODCALLTYPE paintCustomScrollCorner( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ HDC hDC,
-        /* [in] */ RECT rect);
-
-    virtual HRESULT STDMETHODCALLTYPE createWebViewWithRequest(IWebView* sender, IWebURLRequest* request, IPropertyBag* windowFeatures, IWebView** newWebView);
-
-    virtual HRESULT STDMETHODCALLTYPE drawBackground(IWebView* sender, OLE_HANDLE hdc, const RECT* dirtyRect);
-
-    virtual HRESULT STDMETHODCALLTYPE decidePolicyForGeolocationRequest(IWebView* sender, IWebFrame* frame, IWebSecurityOrigin* origin, IWebGeolocationPolicyListener* listener);
-
-    virtual HRESULT STDMETHODCALLTYPE didPressMissingPluginButton(IDOMElement*);
-
-protected:
-    // IWebUIDelegatePrivate
-
-    virtual HRESULT STDMETHODCALLTYPE unused1() { return E_NOTIMPL; }
-
-    virtual HRESULT STDMETHODCALLTYPE unused2() { return E_NOTIMPL; }
-    
-    virtual HRESULT STDMETHODCALLTYPE unused3() { return E_NOTIMPL; }
-    
-    virtual HRESULT STDMETHODCALLTYPE webViewScrolled( 
-        /* [in] */ IWebView *sender) { return E_NOTIMPL; }
-    
-    virtual HRESULT STDMETHODCALLTYPE webViewAddMessageToConsole( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ BSTR message,
-        /* [in] */ int lineNumber,
-        /* [in] */ BSTR url,
-        /* [in] */ BOOL isError);
-    
-    virtual HRESULT STDMETHODCALLTYPE webViewShouldInterruptJavaScript( 
-        /* [in] */ IWebView *sender,
-        /* [retval][out] */ BOOL *result) { return E_NOTIMPL; }
-    
-    virtual HRESULT STDMETHODCALLTYPE webViewReceivedFocus( 
-        /* [in] */ IWebView *sender) { return E_NOTIMPL; }
-    
-    virtual HRESULT STDMETHODCALLTYPE webViewLostFocus( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ OLE_HANDLE loseFocusTo) { return E_NOTIMPL; }
-
-    virtual HRESULT STDMETHODCALLTYPE doDragDrop( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ IDataObject *dataObject,
-        /* [in] */ IDropSource *dropSource,
-        /* [in] */ DWORD okEffect,
-        /* [retval][out] */ DWORD *performedEffect);
-
-    virtual HRESULT STDMETHODCALLTYPE webViewGetDlgCode( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ UINT keyCode,
-        /* [retval][out] */ LONG_PTR *code);
-
-    virtual HRESULT STDMETHODCALLTYPE webViewPainted( 
-        /* [in] */ IWebView *sender);
-
-    virtual HRESULT STDMETHODCALLTYPE exceededDatabaseQuota( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ IWebFrame *frame,
-        /* [in] */ IWebSecurityOrigin *origin,
-        /* [in] */ BSTR databaseIdentifier);
-
-    virtual HRESULT STDMETHODCALLTYPE embeddedViewWithArguments( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ IWebFrame *frame,
-        /* [in] */ IPropertyBag *arguments,
-        /* [retval][out] */ IWebEmbeddedView **view);
-        
-    virtual HRESULT STDMETHODCALLTYPE webViewClosing( 
-        /* [in] */ IWebView *sender);
-    
-    virtual HRESULT STDMETHODCALLTYPE webViewSetCursor( 
-        /* [in] */ IWebView *sender,
-        /* [in] */ OLE_HANDLE cursor);
-    
-    virtual HRESULT STDMETHODCALLTYPE webViewDidInvalidate( 
-        /* [in] */ IWebView *sender);
-
-    virtual HRESULT STDMETHODCALLTYPE desktopNotificationsDelegate(
-        /* [out] */ IWebDesktopNotificationsDelegate** result);
-
-    ULONG                   m_refCount;
-
-private:
-    RECT m_frame;
-    OwnPtr<DRTUndoManager> m_undoManager;
-
-    COMPtr<IWebDesktopNotificationsDelegate> m_desktopNotifications;
-};
-
-#endif
diff --git a/Tools/DumpRenderTree/win/WorkQueueItemWin.cpp b/Tools/DumpRenderTree/win/WorkQueueItemWin.cpp
deleted file mode 100644
index 3225a65..0000000
--- a/Tools/DumpRenderTree/win/WorkQueueItemWin.cpp
+++ /dev/null
@@ -1,168 +0,0 @@
-/*
- * Copyright (C) 2007, 2009 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "WorkQueueItem.h"
-
-#include "DumpRenderTree.h"
-#include <WebCore/COMPtr.h>
-#include <WebKit/WebKit.h>
-#include <WebKit/WebKitCOMAPI.h>
-#include <JavaScriptCore/JSStringRef.h>
-#include <JavaScriptCore/JSStringRefCF.h>
-#include <wtf/RetainPtr.h>
-#include <wtf/Vector.h>
-#include <string>
-
-using std::wstring;
-
-static wstring jsStringRefToWString(JSStringRef jsStr)
-{
-    size_t length = JSStringGetLength(jsStr);
-    Vector<WCHAR> buffer(length + 1);
-    memcpy(buffer.data(), JSStringGetCharactersPtr(jsStr), length * sizeof(WCHAR));
-    buffer[length] = '\0';
-
-    return buffer.data();
-}
-
-bool LoadItem::invoke() const
-{
-    wstring targetString = jsStringRefToWString(m_target.get());
-
-    COMPtr<IWebFrame> targetFrame;
-    if (targetString.empty())
-        targetFrame = frame;
-    else {
-        BSTR targetBSTR = SysAllocString(targetString.c_str());
-        bool failed = FAILED(frame->findFrameNamed(targetBSTR, &targetFrame));
-        SysFreeString(targetBSTR);
-        if (failed)
-            return false;
-    }
-
-    COMPtr<IWebURLRequest> request;
-    if (FAILED(WebKitCreateInstance(CLSID_WebURLRequest, 0, IID_IWebURLRequest, (void**)&request)))
-        return false;
-
-    wstring urlString = jsStringRefToWString(m_url.get());
-    BSTR urlBSTR = SysAllocString(urlString.c_str());
-    bool failed = FAILED(request->initWithURL(urlBSTR, WebURLRequestUseProtocolCachePolicy, 60));
-    SysFreeString(urlBSTR);
-    if (failed)
-        return false;
-
-    targetFrame->loadRequest(request.get());
-    return true;
-}
-
-bool LoadHTMLStringItem::invoke() const
-{
-    wstring content = jsStringRefToWString(m_content.get());
-    wstring baseURL = jsStringRefToWString(m_baseURL.get());
-
-    BSTR contentBSTR = SysAllocString(content.c_str());
-    BSTR baseURLBSTR = SysAllocString(baseURL.c_str());
-
-    if (m_unreachableURL) {
-        wstring unreachableURL = jsStringRefToWString(m_unreachableURL.get());
-        BSTR unreachableURLBSTR = SysAllocString(unreachableURL.c_str());
-        frame->loadAlternateHTMLString(contentBSTR, baseURLBSTR, unreachableURLBSTR);
-        SysFreeString(contentBSTR);
-        SysFreeString(baseURLBSTR);
-        SysFreeString(unreachableURLBSTR);
-        return true;
-    }
-
-    frame->loadHTMLString(contentBSTR, baseURLBSTR);
-
-    SysFreeString(contentBSTR);
-    SysFreeString(baseURLBSTR);
-
-    return true;
-}
-
-bool ReloadItem::invoke() const
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return false;
-
-    COMPtr<IWebIBActions> webActions;
-    if (FAILED(webView->QueryInterface(&webActions)))
-        return false;
-
-    webActions->reload(0);
-    return true;
-}
-
-bool ScriptItem::invoke() const
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return false;
-
-    wstring scriptString = jsStringRefToWString(m_script.get());
-
-    BSTR result;
-    BSTR scriptBSTR = SysAllocString(scriptString.c_str());
-    webView->stringByEvaluatingJavaScriptFromString(scriptBSTR, &result);
-    SysFreeString(result);
-    SysFreeString(scriptBSTR);
-
-    return true;
-}
-
-bool BackForwardItem::invoke() const
-{
-    COMPtr<IWebView> webView;
-    if (FAILED(frame->webView(&webView)))
-        return false;
-
-    BOOL result;
-    if (m_howFar == 1) {
-        webView->goForward(&result);
-        return true;
-    }
-
-    if (m_howFar == -1) {
-        webView->goBack(&result);
-        return true;
-    }
-    
-    COMPtr<IWebBackForwardList> bfList;
-    if (FAILED(webView->backForwardList(&bfList)))
-        return false;
-
-    COMPtr<IWebHistoryItem> item;
-    if (FAILED(bfList->itemAtIndex(m_howFar, &item)))
-        return false;
-
-    webView->goToBackForwardItem(item.get(), &result);
-    return true;
-}
diff --git a/Tools/DumpRenderTree/wscript b/Tools/DumpRenderTree/wscript
deleted file mode 100644
index b1a0356..0000000
--- a/Tools/DumpRenderTree/wscript
+++ /dev/null
@@ -1,67 +0,0 @@
-#! /usr/bin/env python
-
-# Copyright (C) 2009 Kevin Ollivier  All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
-# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-#
-# wxBrowser sample app build script for the waf build system
-
-import sys
-
-from settings import *
-
-include_paths = [
-                os.path.join(output_dir),
-                os.path.join(wk_root, 'Source', 'JavaScriptCore'),
-                os.path.join(wk_root, 'Source', 'WTF'),
-                os.path.join(wk_root, 'Source', 'WebCore'),
-                os.path.join(wk_root, 'Source', 'WebCore', 'bindings', 'wx'),
-                os.path.join(wk_root, 'Source', 'WebKit', 'wx'), 
-                '.', 
-                'wx'
-                ]
-sources = [
-            'DumpRenderTreeCommon.cpp',
-            'TestRunner.cpp',
-            'WorkQueue.cpp',
-            'wx/DumpRenderTreeWx.cpp',
-            'wx/TestRunnerWx.cpp',
-            'wx/WorkQueueItemWx.cpp'
-          ]
-
-def set_options(opt):
-    common_set_options(opt)
-
-def configure(conf):
-    common_configure(conf)
-    
-def build(bld):
-    obj = bld.new_task_gen(
-        features = 'cxx cprogram',
-        includes = ' '.join(include_paths),
-        source = sources,
-        target = 'DumpRenderTree',
-        uselib = 'ICU WX ' + get_config(),
-        libpath = [output_dir],
-        uselib_local = 'jscore wxwebkit',
-        install_path = output_dir)
-        
diff --git a/Tools/DumpRenderTree/wx/DumpRenderTreeWx.cpp b/Tools/DumpRenderTree/wx/DumpRenderTreeWx.cpp
deleted file mode 100644
index cadecaf..0000000
--- a/Tools/DumpRenderTree/wx/DumpRenderTreeWx.cpp
+++ /dev/null
@@ -1,337 +0,0 @@
-/*
- * Copyright (C) 2008 Kevin Ollivier <kevino@theolliviers.com>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "DumpRenderTree.h"
-
-#include "TestRunner.h"
-#include "WorkQueue.h"
-#include "WorkQueueItem.h"
-
-#include <JavaScriptCore/JavaScript.h>
-
-#include <wx/wx.h>
-#include "WebView.h"
-#include "WebFrame.h"
-#include "WebBrowserShell.h"
-
-#include <wtf/Assertions.h>
-
-#include <cassert>
-#include <stdlib.h>
-#include <string.h>
-#include <time.h>
-
-volatile bool done = true;
-volatile bool notified = false;
-static bool printSeparators = true;
-static int dumpPixelsForAllTests = false;
-static int dumpPixelsForCurrentTest;
-static int dumpTree = 1;
-time_t startTime; // to detect timeouts / failed tests
-
-using namespace std;
-using namespace WebKit;
-
-FILE* logOutput;
-
-RefPtr<TestRunner> gTestRunner;
-static WebView* webView;
-static wxTimer* idleTimer;
-
-const unsigned timeOut = 10;
-const unsigned maxViewHeight = 600;
-const unsigned maxViewWidth = 800;
-
-class LayoutWebViewEventHandler : public wxEvtHandler {
-
-public:
-    LayoutWebViewEventHandler(WebView* webView)
-        : m_webView(webView)
-    {
-    }
-    
-    void bindEvents() 
-    {
-        m_webView->Connect(wxEVT_WEBVIEW_LOAD, WebViewLoadEventHandler(LayoutWebViewEventHandler::OnLoadEvent), 0, this);
-        m_webView->Connect(wxEVT_WEBVIEW_JS_ALERT, WebViewAlertEventHandler(LayoutWebViewEventHandler::OnAlertEvent), 0, this);
-        m_webView->Connect(wxEVT_WEBVIEW_JS_CONFIRM, WebViewConfirmEventHandler(LayoutWebViewEventHandler::OnConfirmEvent), 0, this);
-        m_webView->Connect(wxEVT_WEBVIEW_JS_PROMPT, WebViewPromptEventHandler(LayoutWebViewEventHandler::OnPromptEvent), 0, this);
-        m_webView->Connect(wxEVT_WEBVIEW_CONSOLE_MESSAGE, WebViewConsoleMessageEventHandler(LayoutWebViewEventHandler::OnConsoleMessageEvent), 0, this);
-        m_webView->Connect(wxEVT_WEBVIEW_RECEIVED_TITLE, WebViewReceivedTitleEventHandler(LayoutWebViewEventHandler::OnReceivedTitleEvent), 0, this);
-        m_webView->Connect(wxEVT_WEBVIEW_WINDOW_OBJECT_CLEARED, WebViewWindowObjectClearedEventHandler(LayoutWebViewEventHandler::OnWindowObjectClearedEvent), 0, this);
-    }
-    
-    void OnLoadEvent(WebViewLoadEvent& event) 
-    {
-
-        if (event.GetState() == WEBVIEW_LOAD_FAILED || event.GetState() == WEBVIEW_LOAD_STOPPED)
-            done = true; 
-        
-        if (event.GetState() == WEBVIEW_LOAD_ONLOAD_HANDLED) {
-            done = true;
-            
-            if (!gTestRunner->waitToDump() || notified) {
-                dump();
-            }
-        }
-    }
-    
-    void OnAlertEvent(WebViewAlertEvent& event)
-    {
-        wxFprintf(stdout, "ALERT: %S\n", event.GetMessage());
-    }
-    
-    void OnConfirmEvent(WebViewConfirmEvent& event)
-    {
-        wxFprintf(stdout, "CONFIRM: %S\n", event.GetMessage());
-        event.SetReturnCode(1);
-    }
-
-    void OnPromptEvent(WebViewPromptEvent& event)
-    {
-        wxFprintf(stdout, "PROMPT: %S, default text: %S\n", event.GetMessage(), event.GetResponse());
-        event.SetReturnCode(1);
-    }
-    
-    void OnConsoleMessageEvent(WebViewConsoleMessageEvent& event)
-    {
-        fprintf(stdout, "CONSOLE MESSAGE: ");
-        if (event.GetLineNumber())
-            fprintf(stdout, "line %d: ", event.GetLineNumber());
-        wxFprintf(stdout, "%S\n", event.GetMessage());
-    }
-    
-    void OnReceivedTitleEvent(WebViewReceivedTitleEvent& event)
-    {
-        if (gTestRunner->dumpTitleChanges() && !done)
-            wxFprintf(stdout, "TITLE CHANGED: '%S'\n", event.GetTitle());
-    }
-    
-    void OnWindowObjectClearedEvent(WebViewWindowObjectClearedEvent& event)
-    {
-        JSValueRef exception = 0;
-        gTestRunner->makeWindowObject(event.GetJSContext(), event.GetWindowObject(), &exception);
-    }
-    
-private:
-    WebView* m_webView;
-
-};
-
-void notifyDoneFired() 
-{
-    notified = true;
-    if (done)
-        dump();
-}
-
-LayoutWebViewEventHandler* eventHandler = 0;
-
-static wxString dumpFramesAsText(WebFrame* frame)
-{
-    // TODO: implement this. leaving this here so we don't forget this case.
-    if (gTestRunner->dumpChildFramesAsText()) {
-    }
-    
-    return frame->GetInnerText();
-}
-
-void dump()
-{    
-    if (!done)
-        return;
-    
-    if (gTestRunner->waitToDump() && !notified)
-        return;
-        
-    if (dumpTree) {
-        const char* result = 0;
-
-        bool dumpAsText = gTestRunner->dumpAsText();
-        wxString str;
-        if (gTestRunner->dumpAsText())
-            str = dumpFramesAsText(webView->GetMainFrame());
-        else 
-            str = webView->GetMainFrame()->GetExternalRepresentation();
-
-        result = str.ToUTF8();
-        if (!result) {
-            const char* errorMessage;
-            if (gTestRunner->dumpAsText())
-                errorMessage = "WebFrame::GetInnerText";
-            else
-                errorMessage = "WebFrame::GetExternalRepresentation";
-            printf("ERROR: 0 result from %s", errorMessage);
-        } else {
-            printf("%s\n", result);
-        }
-
-        if (gTestRunner->dumpBackForwardList()) {
-            // FIXME: not implemented
-        }
-
-        if (printSeparators) {
-            puts("#EOF");
-            fputs("#EOF\n", stderr);
-            fflush(stdout);
-            fflush(stderr);
-        }
-    }
-
-    if (dumpPixelsForCurrentTest
-        && gTestRunner->generatePixelResults()
-        && !gTestRunner->dumpDOMAsWebArchive()
-        && !gTestRunner->dumpSourceAsWebArchive()) {
-        // FIXME: Add support for dumping pixels
-        fflush(stdout);
-    }
-
-    puts("#EOF");
-    fflush(stdout);
-    fflush(stderr);
-
-    gTestRunner.clear();
-}
-
-static void runTest(const wxString inputLine)
-{
-    done = false;
-    time(&startTime);
-
-    TestCommand command = parseInputLine(std::string(inputLine.ToAscii()));
-    string& pathOrURL = command.pathOrURL;
-    dumpPixelsForCurrentTest = command.shouldDumpPixels || dumpPixelsForAllTests;
-    
-    // CURL isn't happy if we don't have a protocol.
-    size_t http = pathOrURL.find("http://");
-    if (http == string::npos)
-        pathOrURL.insert(0, "file://");
-    
-    gTestRunner = TestRunner::create(pathOrURL, command.expectedPixelHash);
-    if (!gTestRunner) {
-        wxTheApp->ExitMainLoop();
-    }
-
-    WorkQueue::shared()->clear();
-    WorkQueue::shared()->setFrozen(false);
-
-    webView->LoadURL(wxString(pathOrURL.c_str(), wxConvUTF8));
-    
-    // wait until load completes and the results are dumped
-    while (!done)
-        wxSafeYield();
-}
-
-class MyApp : public wxApp
-{
-public:
-
-    virtual bool OnInit();
-    
-private:
-    wxLog* logger;
-};
-
-
-IMPLEMENT_APP(MyApp)
-
-bool MyApp::OnInit()
-{
-    logOutput = fopen("output.txt", "ab");
-    if (logOutput) {
-        logger = new wxLogStderr(logOutput);
-        wxLog::SetActiveTarget(logger);
-    }
-
-    wxLogMessage(wxT("Starting DumpRenderTool, %d args.\n"), argc);
-
-    for (int i = 1; i < argc; ++i) {
-        wxString option = wxString(argv[i]);
-        if (!option.CmpNoCase(_T("--notree"))) {
-            dumpTree = false;
-            continue;
-        }
-        
-        if (!option.CmpNoCase(_T("--tree"))) {
-            dumpTree = true;
-            continue;
-        }
-
-        if (!option.CmpNoCase(_T("--pixel-tests"))) {
-            dumpPixelsForAllTests = true;
-            continue;
-        }
-    }
-    wxInitAllImageHandlers();
-        
-    // create the main application window
-    WebBrowserShell* webFrame = new WebBrowserShell(_T("wxWebKit DumpRenderTree App"), "about:blank");
-    SetTopWindow(webFrame);
-    webView = webFrame->webview;
-    webView->SetSize(wxSize(maxViewWidth, maxViewHeight));
-    
-    if (!eventHandler) {
-        eventHandler = new LayoutWebViewEventHandler(webView);
-        eventHandler->bindEvents();
-    }
-
-    int optind = 1;
-    time(&startTime);
-    wxString option_str = wxString(argv[optind]);
-    if (argc == optind+1 && option_str.Find(_T("-")) == 0) {
-        char filenameBuffer[2048];
-        while (fgets(filenameBuffer, sizeof(filenameBuffer), stdin)) {
-            wxString filename = wxString::FromUTF8(filenameBuffer);
-            char* newLineCharacter = strchr(filenameBuffer, '\n');
-            if (newLineCharacter)
-                *newLineCharacter = '\0';
-
-            if (strlen(filenameBuffer) == 0)
-                return 0;
-            wxLogMessage(wxT("Running test %S.\n"), filenameBuffer);
-            runTest(filename);
-        }
-    
-    } else {
-        printSeparators = (optind < argc - 1 || (dumpPixelsForCurrentTest && dumpTree));
-        for (int i = optind; i != argc; ++i) {
-            runTest(wxTheApp->argv[1]);
-        }
-    }
-    
-    webFrame->Close();
-    delete eventHandler;
-
-    wxLog::SetActiveTarget(0);
-    delete logger;
-    fclose(logOutput);
-    
-    // returning false shuts the app down
-    return false;
-}
diff --git a/Tools/DumpRenderTree/wx/DumpRenderTreeWx.h b/Tools/DumpRenderTree/wx/DumpRenderTreeWx.h
deleted file mode 100644
index 99092b8..0000000
--- a/Tools/DumpRenderTree/wx/DumpRenderTreeWx.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright (C) 2008 Kevin Ollivier <kevino@theolliviers.com>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef DumpRenderTreeWx_h
-#define DumpRenderTreeWx_h
-
-extern void notifyDoneFired();
-
-#endif // DumpRenderTreeWx_h
diff --git a/Tools/DumpRenderTree/wx/GCControllerWx.cpp b/Tools/DumpRenderTree/wx/GCControllerWx.cpp
deleted file mode 100644
index bddf62f..0000000
--- a/Tools/DumpRenderTree/wx/GCControllerWx.cpp
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * Copyright (C) 2008 Kevin Ollivier <kevino@theolliviers.com>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "GCController.h"
-
-void GCController::collect() const
-{
-}
-
-void GCController::collectOnAlternateThread(bool waitUntilDone) const
-{
-}
-
-size_t GCController::getJSObjectCount() const
-{
-    return 0;
-}
diff --git a/Tools/DumpRenderTree/wx/TestRunnerWx.cpp b/Tools/DumpRenderTree/wx/TestRunnerWx.cpp
deleted file mode 100644
index bb8d71a..0000000
--- a/Tools/DumpRenderTree/wx/TestRunnerWx.cpp
+++ /dev/null
@@ -1,539 +0,0 @@
-/*
- * Copyright (C) 2008 Kevin Ollivier <kevino@theolliviers.com>
- * Copyright (C) 2012 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "TestRunner.h"
-
-#include "DumpRenderTree.h"
-#include "WorkQueue.h"
-#include "WorkQueueItem.h"
-#include <JavaScriptCore/JSRetainPtr.h>
-#include <JavaScriptCore/JSStringRef.h>
-
-#include <stdio.h>
-
-
-
-TestRunner::~TestRunner()
-{
-    // FIXME: implement
-}
-
-void TestRunner::addDisallowedURL(JSStringRef url)
-{
-    // FIXME: implement
-}
-
-void TestRunner::clearBackForwardList()
-{
-}
-
-JSStringRef TestRunner::copyDecodedHostName(JSStringRef name)
-{
-    // FIXME: implement
-    return 0;
-}
-
-JSStringRef TestRunner::copyEncodedHostName(JSStringRef name)
-{
-    // FIXME: implement
-    return 0;
-}
-
-void TestRunner::dispatchPendingLoadRequests()
-{
-    // FIXME: Implement for testing fix for 6727495
-}
-
-void TestRunner::display()
-{
-}
-
-void TestRunner::keepWebHistory()
-{
-    // FIXME: implement
-}
-
-void TestRunner::notifyDone()
-{
-    if (m_waitToDump && !WorkQueue::shared()->count())
-        notifyDoneFired();
-    m_waitToDump = false;
-}
-
-JSStringRef TestRunner::pathToLocalResource(JSContextRef context, JSStringRef url)
-{
-    // Function introduced in r28690. This may need special-casing on Windows.
-    return JSStringRetain(url); // Do nothing on Unix.
-}
-
-void TestRunner::queueLoad(JSStringRef url, JSStringRef target)
-{
-    // FIXME: We need to resolve relative URLs here
-    WorkQueue::shared()->queue(new LoadItem(url, target));
-}
-
-void TestRunner::setAcceptsEditing(bool acceptsEditing)
-{
-}
-
-void TestRunner::setAlwaysAcceptCookies(bool alwaysAcceptCookies)
-{
-    // FIXME: Implement this (and restore the default value before running each test in DumpRenderTree.cpp).
-}
-
-void TestRunner::setCustomPolicyDelegate(bool, bool)
-{
-    // FIXME: implement
-}
-
-void TestRunner::setMainFrameIsFirstResponder(bool flag)
-{
-    // FIXME: implement
-}
-
-void TestRunner::setTabKeyCyclesThroughElements(bool cycles)
-{
-    // FIXME: implement
-}
-
-void TestRunner::setUseDashboardCompatibilityMode(bool flag)
-{
-    // FIXME: implement
-}
-
-void TestRunner::setUserStyleSheetEnabled(bool flag)
-{
-}
-
-void TestRunner::setUserStyleSheetLocation(JSStringRef path)
-{
-}
-
-void TestRunner::setValueForUser(JSContextRef context, JSValueRef element, JSStringRef value)
-{
-    // FIXME: implement
-}
-
-void TestRunner::setViewModeMediaFeature(JSStringRef mode)
-{
-    // FIXME: implement
-}
-
-void TestRunner::setWindowIsKey(bool windowIsKey)
-{
-    // FIXME: implement
-}
-
-void TestRunner::setWaitToDump(bool waitUntilDone)
-{
-    static const int timeoutSeconds = 10;
-
-    m_waitToDump = waitUntilDone;
-}
-
-int TestRunner::windowCount()
-{
-    // FIXME: implement
-    return 1;
-}
-
-void TestRunner::setPrivateBrowsingEnabled(bool privateBrowsingEnabled)
-{
-    // FIXME: implement
-}
-
-void TestRunner::setJavaScriptCanAccessClipboard(bool enabled)
-{
-    // FIXME: implement
-}
-
-void TestRunner::setXSSAuditorEnabled(bool enabled)
-{
-    // FIXME: implement
-}
-
-void TestRunner::setAllowUniversalAccessFromFileURLs(bool enabled)
-{
-    // FIXME: implement
-}
-
-void TestRunner::setAllowFileAccessFromFileURLs(bool enabled)
-{
-    // FIXME: implement
-}
-
-void TestRunner::setAuthorAndUserStylesEnabled(bool flag)
-{
-    // FIXME: implement
-}
-
-void TestRunner::setPopupBlockingEnabled(bool popupBlockingEnabled)
-{
-    // FIXME: implement
-}
-
-void TestRunner::setPluginsEnabled(bool flag)
-{
-    // FIXME: Implement
-}
-
-void TestRunner::execCommand(JSStringRef name, JSStringRef value)
-{
-    // FIXME: implement
-}
-
-void TestRunner::setPersistentUserStyleSheetLocation(JSStringRef jsURL)
-{
-    // FIXME: implement
-}
-
-void TestRunner::clearPersistentUserStyleSheet()
-{
-    // FIXME: implement
-}
-
-void TestRunner::clearAllApplicationCaches()
-{
-    // FIXME: Implement to support application cache quotas.
-}
-
-void TestRunner::clearApplicationCacheForOrigin(JSStringRef url)
-{
-    // FIXME: Implement to support deleting all application cache for an origin.
-}
-
-long long TestRunner::localStorageDiskUsageForOrigin(JSStringRef originIdentifier)
-{
-    // FIXME: Implement to support getting disk usage in bytes for an origin.
-    return 0;
-}
-
-void TestRunner::setApplicationCacheOriginQuota(unsigned long long quota)
-{
-    // FIXME: Implement to support application cache quotas.
-}
-
-long long TestRunner::applicationCacheDiskUsageForOrigin(JSStringRef origin)
-{
-    // FIXME: Implement to support getting disk usage by all application caches for an origin.
-    return 0;
-}
-
-
-JSValueRef TestRunner::originsWithApplicationCache(JSContextRef context)
-{
-    // FIXME: Implement to get origins that have application caches.
-    return 0;
-}
-
-void TestRunner::clearAllDatabases()
-{
-    // FIXME: implement
-}
- 
-void TestRunner::setDatabaseQuota(unsigned long long quota)
-{    
-    // FIXME: implement
-}
-
-void TestRunner::goBack()
-{
-    // FIXME: implement to enable loader/navigation-while-deferring-loads.html
-}
-
-void TestRunner::setDefersLoading(bool)
-{
-    // FIXME: implement to enable loader/navigation-while-deferring-loads.html
-}
-
-void TestRunner::setDomainRelaxationForbiddenForURLScheme(bool, JSStringRef)
-{
-    // FIXME: implement
-}
-
-void TestRunner::setAppCacheMaximumSize(unsigned long long size)
-{
-    // FIXME: implement
-}
-
-void TestRunner::setMockDeviceOrientation(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma)
-{
-    // FIXME: Implement for DeviceOrientation layout tests.
-    // See https://bugs.webkit.org/show_bug.cgi?id=30335.
-}
-
-void TestRunner::setMockGeolocationPosition(double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed)
-{
-    // FIXME: Implement for Geolocation layout tests.
-    // See https://bugs.webkit.org/show_bug.cgi?id=28264.
-}
-
-void TestRunner::setMockGeolocationPositionUnavailableError(JSStringRef)
-{
-    // FIXME: Implement for Geolocation layout tests.
-    // See https://bugs.webkit.org/show_bug.cgi?id=28264.
-}
-
-void TestRunner::setGeolocationPermission(bool allow)
-{
-    // FIXME: Implement for Geolocation layout tests.
-    setGeolocationPermissionCommon(allow);
-}
-
-int TestRunner::numberOfPendingGeolocationPermissionRequests()
-{
-    // FIXME: Implement for Geolocation layout tests.
-    return -1;
-}
-
-void TestRunner::addMockSpeechInputResult(JSStringRef result, double confidence, JSStringRef language)
-{
-    // FIXME: Implement for speech input layout tests.
-    // See https://bugs.webkit.org/show_bug.cgi?id=39485.
-}
-
-void TestRunner::setMockSpeechInputDumpRect(bool flag)
-{
-    // FIXME: Implement for speech input layout tests.
-    // See https://bugs.webkit.org/show_bug.cgi?id=39485.
-}
-
-void TestRunner::startSpeechInput(JSContextRef inputElement)
-{
-    // FIXME: Implement for speech input layout tests.
-    // See https://bugs.webkit.org/show_bug.cgi?id=39485.
-}
-
-void TestRunner::setIconDatabaseEnabled(bool iconDatabaseEnabled)
-{
-    // FIXME: implement
-}
-
-void TestRunner::setCacheModel(int)
-{
-    // FIXME: implement
-}
-
-bool TestRunner::isCommandEnabled(JSStringRef /*name*/)
-{
-    // FIXME: implement
-    return false;
-}
-
-size_t TestRunner::webHistoryItemCount()
-{
-    // FIXME: implement
-    return 0;
-}
-
-void TestRunner::waitForPolicyDelegate()
-{
-    // FIXME: Implement this.
-}
-
-void TestRunner::overridePreference(JSStringRef /* key */, JSStringRef /* value */)
-{
-    // FIXME: implement
-}
-
-void TestRunner::addUserScript(JSStringRef source, bool runAtStart, bool allFrames)
-{
-    printf("TestRunner::addUserScript not implemented.\n");
-}
-
-void TestRunner::addUserStyleSheet(JSStringRef source, bool allFrames)
-{
-    printf("TestRunner::addUserStyleSheet not implemented.\n");
-}
-
-void TestRunner::showWebInspector()
-{
-    // FIXME: Implement this.
-}
-
-void TestRunner::closeWebInspector()
-{
-    // FIXME: Implement this.
-}
-
-void TestRunner::evaluateInWebInspector(long callId, JSStringRef script)
-{
-    // FIXME: Implement this.
-}
-
-void TestRunner::removeAllVisitedLinks()
-{
-    // FIXME: Implement this.
-}
-
-void TestRunner::evaluateScriptInIsolatedWorldAndReturnValue(unsigned worldID, JSObjectRef globalObject, JSStringRef script)
-{
-
-}
-
-void TestRunner::evaluateScriptInIsolatedWorld(unsigned worldID, JSObjectRef globalObject, JSStringRef script)
-{
-
-}
-
-void TestRunner::addOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef destinationProtocol, JSStringRef destinationHost, bool allowDestinationSubdomains)
-{
-    // FIXME: implement
-}
-
-void TestRunner::removeOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef destinationProtocol, JSStringRef destinationHost, bool allowDestinationSubdomains)
-{
-    // FIXME: implement
-}
-
-void TestRunner::setScrollbarPolicy(JSStringRef orientation, JSStringRef policy)
-{
-    // FIXME: implement
-}
-
-void TestRunner::apiTestNewWindowDataLoadBaseURL(JSStringRef utf8Data, JSStringRef baseURL)
-{
-
-}
-
-void TestRunner::apiTestGoToCurrentBackForwardItem()
-{
-
-}
-
-void TestRunner::setSpatialNavigationEnabled(bool)
-{
-
-}
-
-void TestRunner::setWebViewEditable(bool)
-{
-}
-
-bool TestRunner::callShouldCloseOnWebView()
-{
-    return false;
-}
-
-void TestRunner::authenticateSession(JSStringRef, JSStringRef, JSStringRef)
-{
-}
-
-void TestRunner::abortModal()
-{
-}
-
-bool TestRunner::findString(JSContextRef context, JSStringRef target, JSObjectRef optionsArray)
-{
-    // FIXME: Implement
-    return false;
-}
-
-void TestRunner::setSerializeHTTPLoads(bool)
-{
-    // FIXME: Implement.
-}
-
-void TestRunner::syncLocalStorage()
-{
-    // FIXME: Implement.
-}
-
-void TestRunner::observeStorageTrackerNotifications(unsigned number)
-{
-    // FIXME: Implement.
-}
-
-void TestRunner::deleteAllLocalStorage()
-{
-    // FIXME: Implement.
-}
-
-JSValueRef TestRunner::originsWithLocalStorage(JSContextRef context)
-{
-    // FIXME: Implement.
-    return 0;
-}
-
-void TestRunner::deleteLocalStorageForOrigin(JSStringRef URL)
-{
-    // FIXME: Implement.
-}
-
-void TestRunner::setTextDirection(JSStringRef direction)
-{
-    // FIXME: Implement.
-}
-
-void TestRunner::addChromeInputField()
-{
-}
-
-void TestRunner::removeChromeInputField()
-{
-}
-
-void TestRunner::focusWebView()
-{
-}
-
-void TestRunner::setBackingScaleFactor(double)
-{
-}
-
-void TestRunner::simulateDesktopNotificationClick(JSStringRef title)
-{
-    // FIXME: Implement.
-}
-
-void TestRunner::resetPageVisibility()
-{
-    // FIXME: Implement this.
-}
-
-void TestRunner::setPageVisibility(const char*)
-{
-    // FIXME: Implement this.
-}
-
-void TestRunner::setAutomaticLinkDetectionEnabled(bool)
-{
-    // FIXME: Implement this.
-}
-
-void TestRunner::setStorageDatabaseIdleInterval(double)
-{
-    // FIXME: Implement this.
-}
-
-void TestRunner::closeIdleLocalStorageDatabases()
-{
-    // FIXME: Implement this.
-}
diff --git a/Tools/DumpRenderTree/wx/WorkQueueItemWx.cpp b/Tools/DumpRenderTree/wx/WorkQueueItemWx.cpp
deleted file mode 100644
index e6ecb75..0000000
--- a/Tools/DumpRenderTree/wx/WorkQueueItemWx.cpp
+++ /dev/null
@@ -1,57 +0,0 @@
-/*
- * Copyright (C) 2008 Kevin Ollivier <kevino@theolliviers.com>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "WorkQueueItem.h"
-
-#include "DumpRenderTree.h"
-
-bool LoadItem::invoke() const
-{
-    return false;
-}
-
-bool LoadHTMLStringItem::invoke() const
-{
-    return false;
-}
-
-bool ReloadItem::invoke() const
-{
-    return false;
-}
-
-bool ScriptItem::invoke() const
-{
-    return false;
-}
-
-bool BackForwardItem::invoke() const
-{
-    return false;
-}
diff --git a/Tools/EWSTools/GoogleComputeEngine/build-chromium-ews.sh b/Tools/EWSTools/GoogleComputeEngine/build-chromium-ews.sh
deleted file mode 100755
index 6c9e745..0000000
--- a/Tools/EWSTools/GoogleComputeEngine/build-chromium-ews.sh
+++ /dev/null
@@ -1,60 +0,0 @@
-#!/bin/sh
-# Copyright (c) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-if [[ $# -ne 1 ]];then
-echo "Usage: build-cr-linux-ews.sh BOT_NUMBER"
-exit 1
-fi
-
-CWD="$(pwd)"
-cd "$(dirname "$0")"
-
-QUEUE_TYPE=chromium-ews
-BOT_ID=gce-cr-linux-$1
-BUGZILLA_USERNAME=webkit.review.bot@gmail.com
-read -s -p "Bugzilla Password: " BUGZILLA_PASSWORD && echo
-
-PROJECT=google.com:webkit
-ZONE=$(bash findzone.sh $PROJECT)
-IMAGE=projects/google/global/images/gcel-10-04-v20130104
-MACHINE_TYPE=n1-standard-4-d
-
-gcutil --project=$PROJECT addinstance $BOT_ID --machine_type=$MACHINE_TYPE --image=$IMAGE --zone=$ZONE --wait_until_running
-
-echo "Sleeping for 30s to let the server spin up ssh..."
-sleep 30
-
-gcutil --project=$PROJECT ssh $BOT_ID "
-    sudo apt-get install subversion -y &&
-    svn checkout http://svn.webkit.org/repository/webkit/trunk/Tools/EWSTools tools &&
-    cd tools &&
-    bash build-vm.sh &&
-    bash build-repo.sh $QUEUE_TYPE $BUGZILLA_USERNAME $BUGZILLA_PASSWORD &&
-    bash build-boot-cmd.sh \"screen -t kr ./start-queue.sh $QUEUE_TYPE $BOT_ID 10\" &&
-    bash boot.sh
-"
-
-cd "$CWD"
diff --git a/Tools/EWSTools/GoogleComputeEngine/build-commit-queue.sh b/Tools/EWSTools/GoogleComputeEngine/build-commit-queue.sh
deleted file mode 100755
index 4ac73c8..0000000
--- a/Tools/EWSTools/GoogleComputeEngine/build-commit-queue.sh
+++ /dev/null
@@ -1,64 +0,0 @@
-#!/bin/sh
-# Copyright (c) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-if [[ $# -ne 1 ]];then
-echo "Usage: build-commit-queue.sh BOT_NUMBER"
-exit 1
-fi
-
-CWD="$(pwd)"
-cd "$(dirname "$0")"
-
-QUEUE_TYPE=commit-queue
-BOT_ID=gce-cq-$1
-BUGZILLA_USERNAME=webkit.review.bot@gmail.com
-read -s -p "Bugzilla Password: " BUGZILLA_PASSWORD && echo
-SVN_USERNAME=commit-queue@webkit.org
-read -s -p "Subversion Password: " SVN_PASSWORD && echo
-
-PROJECT=google.com:webkit
-ZONE=$(bash findzone.sh $PROJECT)
-IMAGE=projects/google/global/images/gcel-10-04-v20130104
-MACHINE_TYPE=n1-standard-4-d
-
-gcutil --project=$PROJECT addinstance $BOT_ID --machine_type=$MACHINE_TYPE --image=$IMAGE --zone=$ZONE --wait_until_running
-
-echo "Sleeping for 30s to let the server spin up ssh..."
-sleep 30
-
-gcutil --project=$PROJECT ssh $BOT_ID "
-    sudo apt-get install subversion -y &&
-    svn checkout http://svn.webkit.org/repository/webkit/trunk/Tools/EWSTools tools &&
-    cd tools &&
-    bash configure-svn-config.sh &&
-    bash configure-svn-auth.sh $SVN_USERNAME $SVN_PASSWORD &&
-    bash build-vm.sh &&
-    bash build-repo.sh $QUEUE_TYPE $BUGZILLA_USERNAME $BUGZILLA_PASSWORD &&
-    bash build-boot-cmd.sh \"screen -t kr ./start-queue.sh $QUEUE_TYPE $BOT_ID 10\" &&
-    bash boot.sh
-"
-
-cd "$CWD"
diff --git a/Tools/EWSTools/GoogleComputeEngine/build-cr-linux-debug-ews.sh b/Tools/EWSTools/GoogleComputeEngine/build-cr-linux-debug-ews.sh
deleted file mode 100755
index 1cf4e69..0000000
--- a/Tools/EWSTools/GoogleComputeEngine/build-cr-linux-debug-ews.sh
+++ /dev/null
@@ -1,61 +0,0 @@
-#!/bin/sh
-# Copyright (c) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-if [[ $# -ne 1 ]];then
-echo "Usage: build-cr-linux-debug-ews.sh BOT_NUMBER"
-exit 1
-fi
-
-CWD="$(pwd)"
-cd "$(dirname "$0")"
-
-QUEUE_TYPE=cr-linux-debug-ews
-BOT_ID=gce-cr-linux-debug-$1
-BUGZILLA_USERNAME=webkit.review.bot@gmail.com
-read -s -p "Bugzilla Password: " BUGZILLA_PASSWORD && echo
-
-PROJECT=google.com:webkit
-ZONE=$(bash findzone.sh $PROJECT)
-IMAGE=projects/google/global/images/gcel-10-04-v20130104
-MACHINE_TYPE=n1-standard-4-d
-
-gcutil --project=$PROJECT addinstance $BOT_ID --machine_type=$MACHINE_TYPE --image=$IMAGE --zone=$ZONE --wait_until_running
-
-echo "Sleeping for 30s to let the server spin up ssh..."
-sleep 30
-
-gcutil --project=$PROJECT ssh $BOT_ID "
-    sudo apt-get install subversion -y &&
-    svn checkout http://svn.webkit.org/repository/webkit/trunk/Tools/EWSTools tools &&
-    cd tools &&
-    bash build-vm.sh &&
-    bash build-repo.sh $QUEUE_TYPE $BUGZILLA_USERNAME $BUGZILLA_PASSWORD &&
-    bash build-boot-cmd.sh \"\\
-screen -t kr ./start-queue.sh -r \\\"configure-clang-linux.sh $QUEUE_TYPE\\\" $QUEUE_TYPE $BOT_ID 10\" &&
-    bash boot.sh
-"
-
-cd "$CWD"
diff --git a/Tools/EWSTools/GoogleComputeEngine/build-feeder-style-sheriffbot.sh b/Tools/EWSTools/GoogleComputeEngine/build-feeder-style-sheriffbot.sh
deleted file mode 100755
index 6297d80..0000000
--- a/Tools/EWSTools/GoogleComputeEngine/build-feeder-style-sheriffbot.sh
+++ /dev/null
@@ -1,68 +0,0 @@
-#!/bin/sh
-# Copyright (c) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-if [[ $# -ne 1 ]];then
-echo "Usage: build-feeder-style-sheriffbot.sh BOT_NUMBER"
-exit 1
-fi
-
-CWD="$(pwd)"
-cd "$(dirname "$0")"
-
-BOT_ID=gce-feeder-$1
-BUGZILLA_USERNAME=webkit.review.bot@gmail.com
-read -s -p "Bugzilla Password: " BUGZILLA_PASSWORD && echo
-read -s -p "sheriffbot IRC Password: " IRC_PASSWORD && echo
-
-PROJECT=google.com:webkit
-ZONE=$(bash findzone.sh $PROJECT)
-IMAGE=projects/google/global/images/gcel-10-04-v20130104
-MACHINE_TYPE=n1-standard-4-d
-
-gcutil --project=$PROJECT addinstance $BOT_ID --machine_type=$MACHINE_TYPE --image=$IMAGE --zone=$ZONE --wait_until_running
-
-echo "Sleeping for 30s to let the server spin up ssh..."
-sleep 30
-
-gcutil --project=$PROJECT ssh $BOT_ID "
-    sudo apt-get install subversion -y &&
-    svn checkout http://svn.webkit.org/repository/webkit/trunk/Tools/EWSTools tools &&
-    cd tools &&
-    bash build-vm.sh &&
-    bash build-repo.sh feeder-queue $BUGZILLA_USERNAME $BUGZILLA_PASSWORD &&
-    cp -r /mnt/git/webkit-feeder-queue /mnt/git/webkit-style-queue &&
-    cp -r /mnt/git/webkit-feeder-queue /mnt/git/webkit-sheriff-bot &&
-    bash configure-svn-config.sh &&
-    bash configure-git-svn.sh sheriff-bot &&
-    bash configure-git-user.sh sheriff-bot \"Sheriff Bot\" $BUGZILLA_USERNAME &&
-    bash build-boot-cmd.sh \"\\
-screen -t fq ./start-queue.sh feeder-queue $BOT_ID 10
-screen -t sq ./start-queue.sh style-queue $BOT_ID 10
-screen -t sb ./start-queue.sh -p \\\"--irc-password=$IRC_PASSWORD\\\" sheriff-bot $BOT_ID 180\" &&
-    bash boot.sh
-"
-
-cd "$CWD"
diff --git a/Tools/EWSTools/GoogleComputeEngine/findzone.sh b/Tools/EWSTools/GoogleComputeEngine/findzone.sh
deleted file mode 100755
index ac2cee5..0000000
--- a/Tools/EWSTools/GoogleComputeEngine/findzone.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-if [[ $# -ne 1 ]]; then
-    echo "Usage: findzone.sh PROJECT"
-fi
-
-echo $(gcutil --project=$1 listzones | grep UP | awk '{print $2}' | sort | tail -1)
diff --git a/Tools/EWSTools/boot.sh b/Tools/EWSTools/boot.sh
deleted file mode 100755
index 787e619..0000000
--- a/Tools/EWSTools/boot.sh
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/sh
-# Copyright (c) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-CWD=$(pwd)
-
-cd ~/tools
-screen -d -m -c ./screen-config
-
-cd $CWD
diff --git a/Tools/EWSTools/build-boot-cmd.sh b/Tools/EWSTools/build-boot-cmd.sh
deleted file mode 100755
index b22c1fb..0000000
--- a/Tools/EWSTools/build-boot-cmd.sh
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/sh
-# Copyright (c) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-if [[ $# -ne 1 ]];then
-echo "Usage: build-boot-cmd.sh BOOT_COMMAND"
-exit 1
-fi
-
-echo "$1" > ~/tools/screen-config
diff --git a/Tools/EWSTools/build-repo.sh b/Tools/EWSTools/build-repo.sh
deleted file mode 100755
index 65b0d84..0000000
--- a/Tools/EWSTools/build-repo.sh
+++ /dev/null
@@ -1,61 +0,0 @@
-#!/bin/sh
-# Copyright (c) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-if [[ $# -ne 3 ]];then
-echo "Usage: build-repo.sh QUEUE_TYPE BUGZILLA_USERNAME BUGZILLA_PASSWORD"
-exit 1
-fi
-
-CWD=$(pwd)
-
-cd /mnt/git
-
-echo "Cloning WebKit git repository, process takes ~30m."
-echo "Note: No status output will be shown via remote pipe."
-git clone git://git.webkit.org/WebKit.git webkit-$1
-cd webkit-$1
-
-cat >> .git/config <<EOF
-[bugzilla]
-	username = $2
-	password = $3
-EOF
-
-if [[ $1 == "commit-queue" ]];then
-cat >> .git/config <<EOF
-[svn-remote "svn"]
-	url = http://svn.webkit.org/repository/webkit
-	fetch = trunk:refs/remotes/origin/master
-[user]
-	email = commit-queue@webkit.org
-	name = Commit Queue
-EOF
-fi
-
-cd $CWD
diff --git a/Tools/EWSTools/build-vm.sh b/Tools/EWSTools/build-vm.sh
deleted file mode 100755
index 62daca0..0000000
--- a/Tools/EWSTools/build-vm.sh
+++ /dev/null
@@ -1,63 +0,0 @@
-#!/bin/sh
-# Copyright (c) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-if [[ $# -ne 0 ]];then
-echo "Usage: build-vm.sh"
-exit 1
-fi
-
-CWD=$(pwd)
-
-# Format the disk
-cat <<EOF | sudo fdisk /dev/sdb
-n
-p
-1
-8
-
-w
-EOF
-
-sudo mkfs.ext4 /dev/sdb1
-sudo mount /dev/sdb1 /mnt
-
-echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | sudo debconf-set-selections
-
-curl http://src.chromium.org/svn/trunk/src/build/install-build-deps.sh > install-build-deps.sh
-bash install-build-deps.sh --no-prompt
-sudo apt-get install xvfb screen git-svn zip -y
-
-# install-build-deps.sh will install flashplugin-installer, which causes some plug-in tests to crash.
-sudo apt-get remove flashplugin-installer -y
-
-cd /mnt
-sudo mkdir -p git
-sudo chown $USER git
-sudo chgrp $USER git
-
-sudo chmod 644 /etc/hosts
-
-cd $CWD
diff --git a/Tools/EWSTools/configure-clang-linux.sh b/Tools/EWSTools/configure-clang-linux.sh
deleted file mode 100755
index 049c206..0000000
--- a/Tools/EWSTools/configure-clang-linux.sh
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/sh
-# Copyright (c) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-if [[ $# -ne 1 ]];then
-    echo "Usage: configure-clang-linux.sh QUEUE_TYPE"
-    exit 1
-fi
-
-bash /mnt/git/$QUEUE_TYPE/Source/WebKit/chromium/tools/clang/scripts/update.sh
-export builddir_name=llvm
-export GYP_DEFINES='clang=1'
\ No newline at end of file
diff --git a/Tools/EWSTools/configure-git-svn.sh b/Tools/EWSTools/configure-git-svn.sh
deleted file mode 100755
index 0416125..0000000
--- a/Tools/EWSTools/configure-git-svn.sh
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/bin/sh
-# Copyright (c) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-if [[ $# -ne 1 ]]; then
-    echo "Usage: configure-git-svn.sh QUEUE_TYPE"
-    exit 1
-fi
-
-QUEUE_TYPE=$1
-
-CWD="$(pwd)"
-cd /mnt/git/webkit-$QUEUE_TYPE
-
-# These commands come from the WebKit wiki: http://trac.webkit.org/wiki/UsingGitWithWebKit
-git svn init --prefix=origin/ -T trunk http://svn.webkit.org/repository/webkit
-git config --replace svn-remote.svn.fetch trunk:refs/remotes/origin/master
-git svn fetch --local
-
-cd "$CWD"
\ No newline at end of file
diff --git a/Tools/EWSTools/configure-git-user.sh b/Tools/EWSTools/configure-git-user.sh
deleted file mode 100755
index 0c29360..0000000
--- a/Tools/EWSTools/configure-git-user.sh
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/bin/sh
-# Copyright (c) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-if [[ $# -ne 3 ]]; then
-    echo "Usage: configure-git-user.sh QUEUE_TYPE NAME EMAIL"
-    exit 1
-fi
-
-QUEUE_TYPE=$1
-NAME="$2"
-EMAIL=$3
-
-if [[ "$NAME" != *" "* ]]; then
-    echo "NAME parameter must contain a space."
-    exit 1
-fi
-
-cat >> /mnt/git/webkit-$QUEUE_TYPE/.git/config <<EOF
-[user]
-	name = $NAME
-	email = $EMAIL
-EOF
diff --git a/Tools/EWSTools/configure-svn-auth.sh b/Tools/EWSTools/configure-svn-auth.sh
deleted file mode 100755
index 75fdc2c..0000000
--- a/Tools/EWSTools/configure-svn-auth.sh
+++ /dev/null
@@ -1,56 +0,0 @@
-#!/bin/sh
-# Copyright (c) 2012 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-if [[ $# -ne 2 ]];then
-echo "Usage: configure-svn-auth.sh SVN_USERNAME SVN_PASSWORD"
-exit 1
-fi
-
-cat >> ~/.subversion/auth/svn.simple/7e01475a87eb5db3b8b41e7fbf6415d9 <<EOF
-K 8
-passtype
-V 6
-simple
-K 8
-password
-V ${#2}
-$2
-K 15
-svn:realmstring
-V 39
-<http://svn.webkit.org:80> Mac OS Forge
-K 8
-username
-V ${#1}
-$1
-END
-EOF
-
-# This maches the ACL that subversion uses by default.
-chmod 644 ~/.subversion/auth/svn.simple/7e01475a87eb5db3b8b41e7fbf6415d9
diff --git a/Tools/EWSTools/configure-svn-config.sh b/Tools/EWSTools/configure-svn-config.sh
deleted file mode 100755
index c61fc7e..0000000
--- a/Tools/EWSTools/configure-svn-config.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-# Copyright (c) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-svn checkout http://svn.webkit.org/repository/webkit/trunk/Tools/svn-config ~/.subversion/config
diff --git a/Tools/EWSTools/screen-config b/Tools/EWSTools/screen-config
deleted file mode 100644
index 5a00fee..0000000
--- a/Tools/EWSTools/screen-config
+++ /dev/null
@@ -1,4 +0,0 @@
-screen -t style ./start-queue.sh style-queue 10
-screen -t qt ./start-queue.sh qt-ews 10
-screen -t kr ./start-queue.sh chromium-ews 10
-screen -t gtk ./start-queue.sh gtk-ews 10
diff --git a/Tools/EWSTools/start-queue-mac.sh b/Tools/EWSTools/start-queue-mac.sh
deleted file mode 100755
index 1168115..0000000
--- a/Tools/EWSTools/start-queue-mac.sh
+++ /dev/null
@@ -1,74 +0,0 @@
-#!/bin/sh
-# Copyright (c) 2012 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-if [[ $# -lt 3 ]]; then
-    echo "Usage: start-queue-loop.sh QUEUE_NAME BOT_ID RESET_AFTER_ITERATION [QUEUE_PARAMS]"
-    exit 1
-fi
-
-QUEUE_NAME=$1
-BOT_ID=$2
-RESET_AFTER_ITERATION=$3
-shift 3
-QUEUE_PARAMS="$@"
-
-while :
-do
-    # Delete log files older than 14 days, move aside the main mac-ews.log file to prevent it from growing extra large.
-    cd /Volumes/Data/EWS/$QUEUE_NAME-logs
-    find . -mtime +14 -delete
-    rm $QUEUE_NAME.old
-    mv $QUEUE_NAME.log $QUEUE_NAME.old
-    cd /Volumes/Data/EWS/Webkit
-    
-    # Delete WebKitBuild to force a clean build
-    rm -rf /Volumes/Data/EWS/WebKit/WebKitBuild
-    
-    # This somewhat quirky sequence of steps seems to clear up all the broken
-    # git situations we've gotten ourself into in the past.
-    git clean -f # Remove any left-over layout test results, added files, etc.
-    git rebase --abort # If we got killed during a git rebase, we need to clean up.
-    git fetch origin # Avoid updating the working copy to a stale revision.
-    git checkout origin/master -f
-    git branch -D master
-    git checkout origin/master -b master
-
-    # Most queues auto-update as part of their normal operation, but updating
-    # here makes sure that we get the latest version of the master process.
-    ./Tools/Scripts/update-webkit
-
-    # test-webkitpy has code to remove orphaned .pyc files, so we
-    # run it before running webkit-patch to avoid stale .pyc files
-    # preventing webkit-patch from launching.
-    ./Tools/Scripts/test-webkitpy
-
-    # We use --exit-after-iteration to pick up any changes to webkit-patch, including
-    # changes to the committers.py file.
-    ./Tools/Scripts/webkit-patch $QUEUE_NAME --bot-id=$BOT_ID --no-confirm --exit-after-iteration $RESET_AFTER_ITERATION $QUEUE_PARAMS
-done
diff --git a/Tools/EWSTools/start-queue-win.sh b/Tools/EWSTools/start-queue-win.sh
deleted file mode 100755
index 5925271..0000000
--- a/Tools/EWSTools/start-queue-win.sh
+++ /dev/null
@@ -1,50 +0,0 @@
-#!/bin/sh
-export WEBKIT_BUGZILLA_USERNAME=$1
-export WEBKIT_BUGZILLA_PASSWORD=$2
-export BOT_ID=$3
-
-function error_handler()
-{
-    start_ews
-}
-
-function start_ews()
-{
-    trap 'error_handler ${LINENO} $?' ERR
-
-    while :
-    do
-        date
-        echo "TASK: cleaning up old log files."
-        cd ~/win-ews-logs
-        rm -rf win-ews.old
-        mv win-ews.log win-ews.old
-        find ~/win-ews-logs -mtime +7 -exec rm -f {} \;
-        echo "TASK: Starting up"
-        cd ~/WebKit
-        echo "TASK: Cleaning WebKitBuild"
-        rm -rf WebKitBuild
-        date
-        echo "TASK: Cleaning up"
-        svn cleanup
-        date
-        echo "TASK: svn revert -R *"
-        svn revert -R *
-        date
-        echo "TASK: svn status"
-        svn status | grep "?" | awk '{print $2}' | xargs rm -rf
-        date
-        echo "TASK: webkit-patch clean"
-        ~/WebKit/Tools/Scripts/webkit-patch clean
-        date
-        echo "TASK: svn up --non-interactive"
-        svn up --non-interactive
-        date
-        echo "TASK: kill orphaned tasks"
-        taskkill.exe /f /im cl.exe
-        echo "TASK: webkit-patch win-ews"
-        ~/WebKit/Tools/Scripts/webkit-patch win-ews --bot-id=$BOT_ID --no-confirm --exit-after-iteration 10
-    done
-}
-
-start_ews
\ No newline at end of file
diff --git a/Tools/EWSTools/start-queue.sh b/Tools/EWSTools/start-queue.sh
deleted file mode 100755
index e1f86b3..0000000
--- a/Tools/EWSTools/start-queue.sh
+++ /dev/null
@@ -1,86 +0,0 @@
-#!/bin/sh
-# Copyright (c) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-USAGE="Usage: start-queue-loop.sh [OPTIONS] QUEUE_NAME BOT_ID RESET_AFTER_ITERATION
-       -r RESET_SCRIPT    A bash script to be run every cycle just before the queue starts up again.
-       -p QUEUE_PARAMS    Additional parameters to be given to the queue's execution command."
-
-while getopts "r:p:" FLAG
-do
-    case $FLAG in
-    r) RESET_SCRIPT=$OPTARG;;
-    p) QUEUE_PARAMS=$OPTARG;;
-    esac
-done
-
-shift $((OPTIND-1))
-
-if [[ "$#" -ne 3 ]]; then
-    echo "$USAGE"
-    exit 1
-fi
-
-QUEUE_NAME=$1
-BOT_ID=$2
-RESET_AFTER_ITERATION=$3
-
-cd /mnt/git/webkit-$QUEUE_NAME
-while :
-do
-    # This clears any temporary file leaks after running tests.
-    # Not the nicest solution but it will keep the queues running instead of
-    # filling up all remaining disk space.
-    # NOTE: This will clear any Chromium browser temporary files running on the
-    # machine as well. Not advised to run this while using Chrome.
-    find /tmp -name ".org.chromium.Chromium.*" | xargs rm -rf
-
-    # This somewhat quirky sequence of steps seems to clear up all the broken
-    # git situations we've gotten ourself into in the past.
-    git clean -f -d # Remove any left-over layout test results, added files, etc.
-    git rebase --abort # If we got killed during a git rebase, we need to clean up.
-    git fetch origin # Avoid updating the working copy to a stale revision.
-    git checkout origin/master -f
-    git branch -D master
-    git checkout origin/master -b master
-
-    # Most queues auto-update as part of their normal operation, but updating
-    # here makes sure that we get the latest version of the master process.
-    ./Tools/Scripts/update-webkit
-
-    # test-webkitpy has code to remove orphaned .pyc files, so we
-    # run it before running webkit-patch to avoid stale .pyc files
-    # preventing webkit-patch from launching.
-    ./Tools/Scripts/test-webkitpy
-
-    # Run the given reset script.
-    if [[ -n "$RESET_SCRIPT" ]]; then
-        bash "$RESET_SCRIPT"
-    fi
-
-    # We use --exit-after-iteration to pick up any changes to webkit-patch, including
-    # changes to the committers.py file.
-    ./Tools/Scripts/webkit-patch $QUEUE_NAME --bot-id=$BOT_ID --no-confirm --exit-after-iteration $RESET_AFTER_ITERATION $QUEUE_PARAMS
-done
diff --git a/Tools/EWSTools/ubuntu-ews-packages b/Tools/EWSTools/ubuntu-ews-packages
deleted file mode 100644
index a7917a0..0000000
--- a/Tools/EWSTools/ubuntu-ews-packages
+++ /dev/null
@@ -1,61 +0,0 @@
-subversion
-git-core
-git-svn
-binutils-gold
-python-mechanize
-libqt4-dev
-gperf
-bison
-fakeroot
-flex
-g++
-g++-multilib
-gperf
-autoconf
-automake
-libapache2-mod-php5
-libasound2-dev
-libbz2-dev
-libicu-dev
-libphonon-dev
-libsqlite3-dev
-libcairo2-dev
-libdbus-glib-1-dev
-libgconf2-dev
-libgl1-mesa-dev
-libglu1-mesa-dev
-libglib2.0-dev
-libjpeg62-dev
-libnspr4-dev
-libnss3-dev
-libpam0g-dev
-libtool
-libgtk2.0-dev
-libpango1.0-dev
-libicu-dev
-libxslt-dev
-libxslt1-dev
-libxss-dev
-libsoup2.4-dev
-libsqlite3-dev
-mesa-common-dev
-patch
-perl
-pkg-config
-python
-libcupsys2-dev
-libgnome-keyring-dev
-libcurl4-gnutls-dev
-libcupsys2-dev
-gperf
-bison
-flex
-libjpeg62-dev
-libpng12-dev
-libxt-dev
-autotools-dev
-libgstreamer-plugins-base0.10-dev
-libenchant-dev
-libgail-dev
-gtk-doc-tools
-libgeoclue-dev
diff --git a/Tools/EWebLauncher/CMakeLists.txt b/Tools/EWebLauncher/CMakeLists.txt
deleted file mode 100644
index 05b95fd..0000000
--- a/Tools/EWebLauncher/CMakeLists.txt
+++ /dev/null
@@ -1,49 +0,0 @@
-set(EWebLauncher_SOURCES
-    ${TOOLS_DIR}/EWebLauncher/url_bar.c
-    ${TOOLS_DIR}/EWebLauncher/url_utils.c
-    ${TOOLS_DIR}/EWebLauncher/main.c
-)
-
-set(EWebLauncher_LIBRARIES
-    ${JavaScriptCore_LIBRARY_NAME}
-    ${WebCore_LIBRARY_NAME}
-    ${WebKit_LIBRARY_NAME}
-    ${CAIRO_LIBRARIES}
-    ${ECORE_LIBRARIES}
-    ${ECORE_EVAS_LIBRARIES}
-    ${ECORE_FILE_LIBRARIES}
-    ${ECORE_X_LIBRARIES}
-    ${EDJE_LIBRARIES}
-    ${EINA_LIBRARIES}
-    ${EO_LIBRARIES}
-    ${EVAS_LIBRARIES}
-    ${LIBXML2_LIBRARIES}
-    ${LIBXSLT_LIBRARIES}
-    ${SQLITE_LIBRARIES}
-    ${GLIB_LIBRARIES}
-    ${LIBSOUP_LIBRARIES}
-)
-
-set(EWebLauncher_INCLUDE_DIRECTORIES
-    "${WEBKIT_DIR}/efl/ewk"
-    ${CAIRO_INCLUDE_DIRS}
-    ${ECORE_INCLUDE_DIRS}
-    ${ECORE_EVAS_INCLUDE_DIRS}
-    ${ECORE_FILE_INCLUDE_DIRS}
-    ${ECORE_X_INCLUDE_DIRS}
-    ${EDJE_INCLUDE_DIRS}
-    ${EINA_INCLUDE_DIRS}
-    ${EO_INCLUDE_DIRS}
-    ${EVAS_INCLUDE_DIRS}
-    ${GLIB_INCLUDE_DIRS}
-    ${LIBSOUP_INCLUDE_DIRS}
-)
-
-add_definitions(-DTHEME_DIR=\"${THEME_BINARY_DIR}\")
-
-include_directories(${EWebLauncher_INCLUDE_DIRECTORIES})
-add_executable(EWebLauncher ${EWebLauncher_SOURCES})
-target_link_libraries(EWebLauncher ${EWebLauncher_LIBRARIES})
-set_target_properties(EWebLauncher PROPERTIES FOLDER "Tools")
-
-add_dependencies(EWebLauncher ControlTheme)
diff --git a/Tools/EWebLauncher/ControlTheme/CMakeLists.txt b/Tools/EWebLauncher/ControlTheme/CMakeLists.txt
deleted file mode 100644
index 52ef72e..0000000
--- a/Tools/EWebLauncher/ControlTheme/CMakeLists.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-set(ControlTheme_DIR "${TOOLS_DIR}/EWebLauncher/ControlTheme")
-
-add_custom_command(
-    OUTPUT ${THEME_BINARY_DIR}/entry.edj
-    COMMAND ${EDJE_CC_EXECUTABLE} -v ${ControlTheme_DIR}/entry.edc ${THEME_BINARY_DIR}/entry.edj
-    DEPENDS
-        ${ControlTheme_DIR}/entry.edc
-    VERBATIM
-)
-
-add_custom_target(ControlTheme DEPENDS ${THEME_BINARY_DIR}/entry.edj)
diff --git a/Tools/EWebLauncher/ControlTheme/entry.edc b/Tools/EWebLauncher/ControlTheme/entry.edc
deleted file mode 100644
index 7a1a5f7..0000000
--- a/Tools/EWebLauncher/ControlTheme/entry.edc
+++ /dev/null
@@ -1,143 +0,0 @@
-/*
- * Copyright (C) 2012 Samsung Electronics
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *  * Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- *  * Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-collections {
-   group {
-      name: "control/entry/base/default";
-      styles {
-         style {
-            name: "entry_textblock_style";
-            base: "font=Roman font_size=14 color=#000000 wrap=mixed";
-         }
-      }
-      parts {
-         part {
-            name: "url.text";
-            type: TEXTBLOCK;
-            mouse_events: 1;
-            scale: 1;
-            entry_mode: EDITABLE;
-            multiline: 0;
-            source: "control/entry/selection/default"; // selection under
-            source4: "control/entry/cursor/default"; // cursor over
-            description {
-               state: "default" 0.0;
-               fixed: 1 0;
-               text {
-                  style: "entry_textblock_style";
-                  min: 0 1;
-               }
-            }
-         }
-      }
-      programs {
-         program {
-            name: "focus";
-            signal: "load";
-            source: "";
-            action: FOCUS_SET;
-            target: "url.text";
-         }
-      }
-   }
-
-   group {
-      name: "control/entry/cursor/default";
-      parts {
-         part {
-            name: "clip";
-            type: RECT;
-            mouse_events: 0;
-            scale: 1;
-            description {
-               state: "default" 0.0;
-               rel1.offset: -10 0;
-               rel2.offset: 9 9;
-               visible: 0;
-            }
-            description {
-               state: "focused" 0.0;
-               inherit: "default" 0.0;
-               visible: 1;
-            }
-         }
-         part {
-            name: "cursor";
-            type: RECT;
-            mouse_events: 0;
-            scale: 1;
-            clip_to: "clip";
-            description {
-               state: "default" 0.0;
-               min: 1 0;
-               fixed: 1 0;
-               align: 0.5 0.5;
-               visible: 1;
-               rel1 {
-                  relative: 0.0  0.0;
-                  offset: 0 2;
-               }
-               rel2 {
-                  relative: 0.0  1.0;
-                  offset: 0 -2;
-               }
-               color: 0 0 0 255; // cursor color
-            }
-         }
-      }
-      programs {
-         program {
-            name: "focused";
-            signal: "entry,action,focus";
-            source: "entry";
-            action: STATE_SET "focused" 0.0;
-            target: "clip";
-         }
-         program {
-            name: "unfocused";
-            signal: "entry,action,unfocus";
-            source: "entry";
-            action: STATE_SET "default" 0.0;
-            target: "clip";
-         }
-      }
-   }
-
-   group {
-      name: "control/entry/selection/default";
-      parts {
-         part {
-            name: "bg";
-            type: RECT;
-            scale: 1;
-            mouse_events: 0;
-            description {
-               state: "default" 0.0;
-               color: 138 183 223 128;
-            }
-         }
-      }
-   }
-}
diff --git a/Tools/EWebLauncher/main.c b/Tools/EWebLauncher/main.c
deleted file mode 100644
index 684800a..0000000
--- a/Tools/EWebLauncher/main.c
+++ /dev/null
@@ -1,1048 +0,0 @@
-/*
- * Copyright (C) 2008 INdT - Instituto Nokia de Tecnologia
- * Copyright (C) 2009, 2010 ProFUSION embedded systems
- * Copyright (C) 2009, 2010, 2011 Samsung Electronics
- * Copyright (C) 2012 Intel Corporation
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "EWebKit.h"
-
-#include "url_bar.h"
-#include "url_utils.h"
-#include <Ecore.h>
-#include <Ecore_Evas.h>
-#include <Ecore_File.h>
-#include <Ecore_Getopt.h>
-#include <Ecore_X.h>
-#include <Edje.h>
-#include <Evas.h>
-#include <ctype.h>
-#include <inttypes.h>
-#include <limits.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <sys/stat.h>
-#include <sys/types.h>
-#include <unistd.h>
-
-#define DEFAULT_WIDTH      800
-#define DEFAULT_HEIGHT     600
-#define DEFAULT_ZOOM_INIT  1.0
-
-#define info(format, args...)       \
-    do {                            \
-        if (verbose)                \
-            printf(format, ##args); \
-    } while (0)
-
-#define MIN_ZOOM_LEVEL 0
-#define DEFAULT_ZOOM_LEVEL 5
-#define MAX_ZOOM_LEVEL 13
-
-static int currentZoomLevel = DEFAULT_ZOOM_LEVEL;
-static float currentZoom = 1.0;
-
-// the zoom values are chosen to be like in Mozilla Firefox 3
-static int zoomLevels[] = {30, 50, 67, 80, 90,
-                            100,
-                            110, 120, 133, 150, 170, 200, 240, 300};
-
-static int verbose = 0;
-
-static Eina_List *windows = NULL;
-
-static char *themePath = NULL;
-
-static const char *backingStores[] = {
-    "tiled",
-    "single",
-    NULL
-};
-
-typedef struct _Window_Properties {
-    Eina_Bool toolbarsVisible:1;
-    Eina_Bool statusbarVisible:1;
-    Eina_Bool scrollbarsVisible:1;
-    Eina_Bool menubarVisible:1;
-} Window_Properties;
-
-Window_Properties windowProperties = { /* Pretend we have them and they are initially visible */
-    EINA_TRUE,
-    EINA_TRUE,
-    EINA_TRUE,
-    EINA_TRUE
-};
-
-static const Ecore_Getopt options = {
-    "EWebLauncher",
-    "%prog [options] [url]",
-    "0.0.1",
-    "(C)2008 INdT (The Nokia Technology Institute)\n"
-    "(C)2009, 2010 ProFUSION embedded systems\n"
-    "(C)2009, 2010, 2011 Samsung Electronics\n"
-    "(C)2012 Intel Corporation\n",
-    "GPL",
-    "Test Web Browser using the Enlightenment Foundation Libraries of WebKit",
-    EINA_TRUE, {
-        ECORE_GETOPT_STORE_STR
-            ('e', "engine", "ecore-evas engine to use."),
-        ECORE_GETOPT_CALLBACK_NOARGS
-            ('E', "list-engines", "list ecore-evas engines.",
-             ecore_getopt_callback_ecore_evas_list_engines, NULL),
-        ECORE_GETOPT_CHOICE
-            ('b', "backing-store", "choose backing store to use.", backingStores),
-        ECORE_GETOPT_STORE_DEF_BOOL
-            ('c', "encoding-detector", "enable/disable encoding detector", 0),
-        ECORE_GETOPT_STORE_DEF_BOOL
-            ('f', "flattening", "frame flattening.", 0),
-        ECORE_GETOPT_STORE_DEF_BOOL
-            ('F', "fullscreen", "fullscreen mode.", 0),
-        ECORE_GETOPT_CALLBACK_ARGS
-            ('g', "geometry", "geometry to use in x:y:w:h form.", "X:Y:W:H",
-             ecore_getopt_callback_geometry_parse, NULL),
-        ECORE_GETOPT_STORE_STR
-            ('t', "theme", "path to read the theme file from."),
-        ECORE_GETOPT_STORE_DEF_BOOL
-            ('T', "tiled-backing-store", "enable/disable WebCore's tiled backingstore(ewk_view_single only)", 0),
-        ECORE_GETOPT_STORE_STR
-            ('U', "user-agent", "custom user agent string to use."),
-        ECORE_GETOPT_COUNT
-            ('v', "verbose", "be more verbose."),
-        ECORE_GETOPT_VERSION
-            ('V', "version"),
-        ECORE_GETOPT_COPYRIGHT
-            ('R', "copyright"),
-        ECORE_GETOPT_LICENSE
-            ('L', "license"),
-        ECORE_GETOPT_HELP
-            ('h', "help"),
-        ECORE_GETOPT_SENTINEL
-    }
-};
-
-typedef struct _User_Arguments {
-    char *engine;
-    Eina_Bool quitOption;
-    char *backingStore;
-    Eina_Bool enableEncodingDetector;
-    Eina_Bool enableTiledBackingStore;
-    Eina_Bool isFlattening;
-    Eina_Bool isFullscreen;
-    Eina_Rectangle geometry;
-    char *theme;
-    char *userAgent;
-    char *databasePath;
-} User_Arguments;
-
-typedef struct _ELauncher {
-    Ecore_Evas *ee;
-    Evas *evas;
-    Evas_Object *browser;
-    Url_Bar *url_bar;
-    User_Arguments *userArgs;
-} ELauncher;
-
-static void windowDestroy(Ecore_Evas *ee);
-static void closeWindow(Ecore_Evas *ee);
-static int browserCreate(const char *url, User_Arguments *userArgs);
-static int webInspectorCreate(ELauncher *appBrowser);
-static ELauncher *windowCreate(User_Arguments *userArgs);
-
-static ELauncher *
-find_app_from_ee(Ecore_Evas *ee)
-{
-    Eina_List *l;
-    void *data;
-
-    EINA_LIST_FOREACH(windows, l, data)
-    {
-        ELauncher *app = (ELauncher *) data;
-        if (app->ee == ee)
-            return app;
-    }
-    return NULL;
-}
-
-static void
-print_history(Eina_List *list)
-{
-    Eina_List *l;
-    void *d;
-
-    if (!verbose)
-       return;
-
-    printf("Session history contains:\n");
-
-    EINA_LIST_FOREACH(list, l, d) {
-       Ewk_History_Item *item = (Ewk_History_Item*)d;
-       cairo_surface_t *cs = ewk_history_item_icon_surface_get(item);
-       char buf[PATH_MAX];
-       int s = snprintf(buf, sizeof(buf), "/tmp/favicon-%s.png", ewk_history_item_uri_original_get(item));
-       for (s--; s >= (int)sizeof("/tmp/favicon-"); s--) {
-           if (!isalnum(buf[s]) && buf[s] != '.')
-               buf[s] = '_';
-       }
-       cs = ewk_history_item_icon_surface_get(item);
-
-       if (cs && cairo_surface_status(cs) == CAIRO_STATUS_SUCCESS)
-           cairo_surface_write_to_png(cs, buf);
-       else
-           buf[0] = '\0';
-
-       printf("* '%s' title='%s' icon='%s'\n",
-              ewk_history_item_uri_original_get(item),
-              ewk_history_item_title_get(item), buf);
-    }
-}
-
-static int
-nearest_zoom_level_get(float factor)
-{
-    int i, intFactor = (int)(factor * 100.0);
-    for (i = 0; zoomLevels[i] <= intFactor; i++) { }
-    printf("factor=%f, intFactor=%d, zoomLevels[%d]=%d, zoomLevels[%d]=%d\n",
-           factor, intFactor, i-1, zoomLevels[i-1], i, zoomLevels[i]);
-    if (intFactor - zoomLevels[i-1] < zoomLevels[i] - intFactor)
-        return i - 1;
-    return i;
-}
-
-static Eina_Bool
-zoom_level_set(Evas_Object *webview, int level)
-{
-    float factor = ((float) zoomLevels[level]) / 100.0;
-    Evas_Coord ox, oy, mx, my, cx, cy;
-    evas_pointer_canvas_xy_get(evas_object_evas_get(webview), &mx, &my);
-    evas_object_geometry_get(webview, &ox, &oy, NULL, NULL);
-    cx = mx - ox;
-    cy = my - oy;
-    return ewk_view_zoom_animated_set(webview, factor, 0.5, cx, cy);
-}
-
-static void
-on_browser_ecore_evas_resize(Ecore_Evas *ee)
-{
-    ELauncher *app;
-    Evas_Object *webview;
-    int w, h;
-
-    ecore_evas_geometry_get(ee, NULL, NULL, &w, &h);
-
-    /* Resize URL bar */
-    app = find_app_from_ee(ee);
-    url_bar_width_set(app->url_bar, w);
-
-    webview = evas_object_name_find(ecore_evas_get(ee), "browser");
-    evas_object_move(webview, 0, URL_BAR_HEIGHT);
-    evas_object_resize(webview, w, h - URL_BAR_HEIGHT);
-}
-
-static void
-on_inspector_ecore_evas_resize(Ecore_Evas *ee)
-{
-    Evas_Object *webview;
-    int w, h;
-
-    ecore_evas_geometry_get(ee, NULL, NULL, &w, &h);
-
-    webview = evas_object_name_find(ecore_evas_get(ee), "inspector");
-    evas_object_move(webview, 0, 0);
-    evas_object_resize(webview, w, h);
-}
-
-static void
-title_set(Ecore_Evas *ee, const Ewk_Text_With_Direction *title, int progress)
-{
-    const char *appname = "EFL Test Launcher";
-    const char *separator = " - ";
-    char label[4096];
-    int size;
-
-    if (!title || !title->string || !strcmp(title->string, "")) {
-        ecore_evas_title_set(ee, appname);
-        return;
-    }
-
-    if (progress < 100)
-        size = snprintf(label, sizeof(label), "%s (%d%%)%s%s", title->string, progress, separator, appname);
-    else
-        size = snprintf(label, sizeof(label), "%s %s%s", title->string, separator, appname);
-
-    if (size >= (int)sizeof(label))
-        return;
-
-    ecore_evas_title_set(ee, label);
-}
-
-static void
-on_title_changed(void *user_data, Evas_Object *webview, void *event_info)
-{
-    ELauncher *app = (ELauncher *)user_data;
-    const Ewk_Text_With_Direction *title = (const Ewk_Text_With_Direction *)event_info;
-
-    title_set(app->ee, title, 100);
-}
-
-static void
-on_progress(void *user_data, Evas_Object *webview, void *event_info)
-{
-    ELauncher *app = (ELauncher *)user_data;
-    double *progress = (double *)event_info;
-
-    title_set(app->ee, ewk_view_title_get(app->browser), *progress * 100);
-}
-
-static void
-on_load_finished(void *user_data, Evas_Object *webview, void *event_info)
-{
-    const Ewk_Frame_Load_Error *err = (const Ewk_Frame_Load_Error *)event_info;
-
-    if (!err)
-        info("Succeeded loading page.\n");
-    else if (err->is_cancellation)
-        info("Load was cancelled.\n");
-    else
-        info("Failed loading page: %d %s \"%s\", url=%s\n",
-             err->code, err->domain, err->description, err->failing_url);
-
-    currentZoom = ewk_view_zoom_get(webview);
-    currentZoomLevel = nearest_zoom_level_get(currentZoom);
-    info("WebCore Zoom=%f, currentZoomLevel=%d\n", currentZoom, currentZoomLevel);
-}
-
-static void
-on_load_error(void *user_data, Evas_Object *webview, void *event_info)
-{
-    const Ewk_Frame_Load_Error *err = (const Ewk_Frame_Load_Error *)event_info;
-    char message[1024];
-    snprintf(message, 1024, "<html><body><div style=\"color:#ff0000\">ERROR!</div><br><div>Code: %d<br>Domain: %s<br>Description: %s<br>URL: %s</div></body</html>",
-             err->code, err->domain, err->description, err->failing_url);
-    ewk_frame_contents_set(err->frame, message, 0, "text/html", "UTF-8", err->failing_url);
-}
-
-static void
-on_toolbars_visible_set(void* user_data, Evas_Object* webview, void* event_info)
-{
-    Eina_Bool *visible = (Eina_Bool *)event_info;
-    if (*visible) {
-        info("Toolbars visible changed: show");
-        windowProperties.toolbarsVisible = EINA_TRUE;
-    } else {
-        info("Toolbars visible changed: hide");
-        windowProperties.toolbarsVisible = EINA_FALSE;
-    }
-}
-
-static void
-on_toolbars_visible_get(void* user_data, Evas_Object* webview, void* event_info)
-{
-    Eina_Bool *visible = (Eina_Bool *)event_info;
-    *visible = windowProperties.toolbarsVisible;
-}
-
-static void
-on_statusbar_visible_set(void* user_data, Evas_Object* webview, void* event_info)
-{
-    Eina_Bool *visible = (Eina_Bool *)event_info;
-    if (*visible) {
-        info("Statusbar visible changed: show");
-        windowProperties.statusbarVisible = EINA_TRUE;
-    } else {
-        info("Statusbar visible changed: hide");
-        windowProperties.statusbarVisible = EINA_FALSE;
-    }
-}
-
-static void
-on_statusbar_visible_get(void* user_data, Evas_Object* webview, void* event_info)
-{
-    Eina_Bool *visible = (Eina_Bool *)event_info;
-    *visible = windowProperties.statusbarVisible;
-}
-
-static void
-on_scrollbars_visible_set(void* user_data, Evas_Object* webview, void* event_info)
-{
-    Eina_Bool *visible = (Eina_Bool *)event_info;
-    if (*visible) {
-        info("Scrollbars visible changed: show");
-        windowProperties.scrollbarsVisible = EINA_TRUE;
-    } else {
-        info("Scrollbars visible changed: hide");
-        windowProperties.scrollbarsVisible = EINA_FALSE;
-    }
-}
-
-static void
-on_scrollbars_visible_get(void* user_data, Evas_Object* webview, void* event_info)
-{
-    Eina_Bool *visible = (Eina_Bool *)event_info;
-    *visible = windowProperties.scrollbarsVisible;
-}
-
-static void
-on_menubar_visible_set(void* user_data, Evas_Object* webview, void* event_info)
-{
-    Eina_Bool *visible = (Eina_Bool *)event_info;
-    if (*visible) {
-        info("Menubar visible changed: show");
-        windowProperties.menubarVisible = EINA_TRUE;
-    } else {
-        info("Menubar visible changed: hide");
-        windowProperties.menubarVisible = EINA_FALSE;
-    }
-}
-
-static void
-on_menubar_visible_get(void* user_data, Evas_Object* webview, void* event_info)
-{
-    Eina_Bool *visible = (Eina_Bool *)event_info;
-    *visible = windowProperties.menubarVisible;
-}
-
-static void
-on_tooltip_text_set(void* user_data, Evas_Object* webview, void* event_info)
-{
-    const char *text = (const char *)event_info;
-    info("Tooltip is set: %s\n", text);
-}
-
-static void
-on_tooltip_text_unset(void* user_data, Evas_Object* webview, void* event_info)
-{
-    info("Tooltip is unset\n");
-}
-
-static void
-on_inputmethod_changed(void* user_data, Evas_Object* webview, void* event_info)
-{
-    Eina_Bool active = (Eina_Bool)(long)event_info;
-    unsigned int imh;
-    info("Keyboard changed: %d\n", active);
-
-    if (!active)
-        return;
-
-    imh = ewk_view_imh_get(webview);
-    info("    Keyboard flags: %#.2x\n", imh);
-
-}
-
-static void
-on_url_changed(void* user_data, Evas_Object* webview, void* event_info)
-{
-    ELauncher *app = (ELauncher *)user_data;
-    url_bar_url_set(app->url_bar, ewk_view_uri_get(app->browser));
-}
-
-static void
-on_mouse_down(void* data, Evas* e, Evas_Object* webview, void* event_info)
-{
-    Evas_Event_Mouse_Down *ev = (Evas_Event_Mouse_Down *)event_info;
-
-    if (ev->button == 1)
-        evas_object_focus_set(webview, EINA_TRUE);
-    else if (ev->button == 2)
-        evas_object_focus_set(webview, !evas_object_focus_get(webview));
-}
-
-static void
-on_focus_out(void *data, Evas *e, Evas_Object *obj, void *event_info)
-{
-    info("the webview lost keyboard focus\n");
-}
-
-static void
-on_focus_in(void *data, Evas *e, Evas_Object *obj, void *event_info)
-{
-    info("the webview gained keyboard focus\n");
-}
-
-static void
-on_key_down(void *data, Evas *e, Evas_Object *obj, void *event_info)
-{
-    Evas_Event_Key_Down *ev = (Evas_Event_Key_Down*) event_info;
-    ELauncher *app = data;
-    static const char *encodings[] = {
-        "ISO-8859-1",
-        "UTF-8",
-        NULL
-    };
-    static int currentEncoding = -1;
-    Eina_Bool ctrlPressed = evas_key_modifier_is_set(evas_key_modifier_get(e), "Control");
-
-    if (!strcmp(ev->key, "Escape")) {
-        closeWindow(app->ee);
-    } else if (!strcmp(ev->key, "F1")) {
-        info("Back (F1) was pressed\n");
-        if (ewk_view_back_possible(obj)) {
-            Ewk_History *history = ewk_view_history_get(obj);
-            Eina_List *list = ewk_history_back_list_get(history);
-            print_history(list);
-            ewk_history_item_list_free(list);
-            ewk_view_back(obj);
-        } else
-            info("Back ignored: No back history\n");
-    } else if (!strcmp(ev->key, "F2")) {
-        info("Forward (F2) was pressed\n");
-        if (ewk_view_forward_possible(obj)) {
-            Ewk_History *history = ewk_view_history_get(obj);
-            Eina_List *list = ewk_history_forward_list_get(history);
-            print_history(list);
-            ewk_history_item_list_free(list);
-            ewk_view_forward(obj);
-        } else
-            info("Forward ignored: No forward history\n");
-    } else if (!strcmp(ev->key, "F3")) {
-        currentEncoding++;
-        currentEncoding %= (sizeof(encodings) / sizeof(encodings[0]));
-        info("Set encoding (F3) pressed. New encoding to %s", encodings[currentEncoding]);
-        ewk_view_setting_encoding_custom_set(obj, encodings[currentEncoding]);
-    } else if (!strcmp(ev->key, "F4")) {
-        Evas_Object *frame = ewk_view_frame_main_get(obj);
-        Evas_Coord x, y;
-        Ewk_Hit_Test *ht;
-
-        evas_pointer_canvas_xy_get(evas_object_evas_get(obj), &x, &y);
-        ht = ewk_frame_hit_test_new(frame, x, y);
-        if (!ht)
-            printf("No hit test returned for point %d,%d\n", x, y);
-        else {
-            printf("Hit test for point %d,%d\n"
-                   "  pos=%3d,%3d\n"
-                   "  bounding_box=%d,%d + %dx%d\n"
-                   "  title='%s'\n"
-                   "  alternate_text='%s'\n"
-                   "  frame=%p (%s)\n"
-                   "  link {\n"
-                   "    text='%s'\n"
-                   "    url='%s'\n"
-                   "    title='%s'\n"
-                   "    target frame=%p (%s)\n"
-                   "  }\n"
-                   "context:\n"
-                   "%s"
-                   "%s"
-                   "%s"
-                   "%s"
-                   "%s\n",
-                   x, y,
-                   ht->x, ht->y,
-                   ht->bounding_box.x, ht->bounding_box.y, ht->bounding_box.w, ht->bounding_box.h,
-                   ht->title.string,
-                   ht->alternate_text,
-                   ht->frame, evas_object_name_get(ht->frame),
-                   ht->link.text,
-                   ht->link.url,
-                   ht->link.title,
-                   ht->link.target_frame, evas_object_name_get(ht->link.target_frame),
-                   ht->context & EWK_HIT_TEST_RESULT_CONTEXT_LINK ? "  LINK\n" : "",
-                   ht->context & EWK_HIT_TEST_RESULT_CONTEXT_IMAGE ? "  IMAGE\n" : "",
-                   ht->context & EWK_HIT_TEST_RESULT_CONTEXT_MEDIA ? "   MEDIA\n" : "",
-                   ht->context & EWK_HIT_TEST_RESULT_CONTEXT_SELECTION ? "  SELECTION\n" : "",
-                   ht->context & EWK_HIT_TEST_RESULT_CONTEXT_EDITABLE ? "  EDITABLE" : "");
-            ewk_frame_hit_test_free(ht);
-        }
-
-    } else if (!strcmp(ev->key, "F5")) {
-        info("Reload (F5) was pressed, reloading.\n");
-        ewk_view_reload(obj);
-    } else if (!strcmp(ev->key, "F6")) {
-        info("Stop (F6) was pressed, stop loading.\n");
-        ewk_view_stop(obj);
-    } else if (!strcmp(ev->key, "F12")) {
-        Eina_Bool status = ewk_view_setting_spatial_navigation_get(obj);
-        ewk_view_setting_spatial_navigation_set(obj, !status);
-        info("Command::keyboard navigation toggle\n");
-    } else if ((!strcmp(ev->key, "minus") || !strcmp(ev->key, "KP_Subtract")) && ctrlPressed) {
-        if (currentZoomLevel > MIN_ZOOM_LEVEL && zoom_level_set(obj, currentZoomLevel - 1))
-            currentZoomLevel--;
-        info("Zoom out (Ctrl + '-') was pressed, zoom level became %.2f\n", zoomLevels[currentZoomLevel] / 100.0);
-    } else if ((!strcmp(ev->key, "equal") || !strcmp(ev->key, "KP_Add")) && ctrlPressed) {
-        if (currentZoomLevel < MAX_ZOOM_LEVEL && zoom_level_set(obj, currentZoomLevel + 1))
-            currentZoomLevel++;
-        info("Zoom in (Ctrl + '+') was pressed, zoom level became %.2f\n", zoomLevels[currentZoomLevel] / 100.0);
-    } else if (!strcmp(ev->key, "0") && ctrlPressed) {
-        if (zoom_level_set(obj, DEFAULT_ZOOM_LEVEL))
-            currentZoomLevel = DEFAULT_ZOOM_LEVEL;
-        info("Zoom to default (Ctrl + '0') was pressed, zoom level became %.2f\n", zoomLevels[currentZoomLevel] / 100.0);
-    } else if (!strcmp(ev->key, "n") && ctrlPressed) {
-        info("Create new window (Ctrl+n) was pressed.\n");
-        browserCreate("http://www.google.com", app->userArgs);
-    } else if (!strcmp(ev->key, "g") && ctrlPressed ) {
-        Evas_Coord x, y, w, h;
-        Evas_Object *frame = ewk_view_frame_main_get(obj);
-        float zoom = zoomLevels[currentZoomLevel] / 100.0;
-
-        ewk_frame_visible_content_geometry_get(frame, EINA_FALSE, &x, &y, &w, &h);
-        x -= w;
-        y -= h;
-        w *= 4;
-        h *= 4;
-        info("Pre-render %d,%d + %dx%d\n", x, y, w, h);
-        ewk_view_pre_render_region(obj, x, y, w, h, zoom);
-    } else if (!strcmp(ev->key, "r") && ctrlPressed) {
-        info("Pre-render 1 extra column/row with current zoom");
-        ewk_view_pre_render_relative_radius(obj, 1);
-    } else if (!strcmp(ev->key, "p") && ctrlPressed) {
-        info("Pre-rendering start");
-        ewk_view_pre_render_start(obj);
-    } else if (!strcmp(ev->key, "d") && ctrlPressed) {
-        info("Render suspended");
-        ewk_view_disable_render(obj);
-    } else if (!strcmp(ev->key, "e") && ctrlPressed) {
-        info("Render resumed");
-        ewk_view_enable_render(obj);
-    } else if (!strcmp(ev->key, "s") && ctrlPressed) {
-        Evas_Object *frame = ewk_view_frame_main_get(obj);
-        Ewk_Security_Origin *origin = ewk_frame_security_origin_get(frame);
-        printf("Security origin information:\n"
-               "  protocol=%s\n"
-               "  host=%s\n"
-               "  port=%d\n"
-               "  web database quota=%" PRIu64 "\n",
-               ewk_security_origin_protocol_get(origin),
-               ewk_security_origin_host_get(origin),
-               ewk_security_origin_port_get(origin),
-               ewk_security_origin_web_database_quota_get(origin));
-
-        Eina_List *databaseList = ewk_security_origin_web_database_get_all(origin);
-        Eina_List *listIterator = 0;
-        Ewk_Web_Database *database;
-        EINA_LIST_FOREACH(databaseList, listIterator, database)
-            printf("Database information:\n"
-                   "  name=%s\n"
-                   "  display name=%s\n"
-                   "  filename=%s\n"
-                   "  expected size=%" PRIu64 "\n"
-                   "  size=%" PRIu64 "\n",
-                   ewk_web_database_name_get(database),
-                   ewk_web_database_display_name_get(database),
-                   ewk_web_database_filename_get(database),
-                   ewk_web_database_expected_size_get(database),
-                   ewk_web_database_size_get(database));
-
-        ewk_security_origin_free(origin);
-        ewk_web_database_list_free(databaseList);
-    } else if (!strcmp(ev->key, "i") && ctrlPressed) {
-        Evas_Object *inspector_view = ewk_view_inspector_view_get(obj);
-        if (inspector_view) {
-            info("Web Inspector close\n");
-            ewk_view_inspector_close(obj);
-        } else {
-            info("Web Inspector show\n");
-            ewk_view_inspector_show(obj);
-        }
-    }
-}
-
-static void
-on_browser_del(void *data, Evas *evas, Evas_Object *browser, void *event)
-{
-    ELauncher *app = (ELauncher*) data;
-
-    evas_object_event_callback_del(app->browser, EVAS_CALLBACK_KEY_DOWN, on_key_down);
-    evas_object_event_callback_del(app->browser, EVAS_CALLBACK_MOUSE_DOWN, on_mouse_down);
-    evas_object_event_callback_del(app->browser, EVAS_CALLBACK_FOCUS_IN, on_focus_in);
-    evas_object_event_callback_del(app->browser, EVAS_CALLBACK_FOCUS_OUT, on_focus_out);
-    evas_object_event_callback_del(app->browser, EVAS_CALLBACK_DEL, on_browser_del);
-}
-
-static void
-on_inspector_view_create(void *user_data, Evas_Object *webview, void *event_info)
-{
-    ELauncher *app_browser = (ELauncher *)user_data;
-
-    webInspectorCreate(app_browser);
-}
-
-static void
-on_inspector_view_close(void *user_data, Evas_Object *webview, void *event_info)
-{
-    Eina_List *l;
-    void *app;
-    ELauncher *app_browser = (ELauncher *)user_data;
-    Evas_Object *inspector_view = (Evas_Object *)event_info;
-
-    ewk_view_inspector_view_set(app_browser->browser, NULL);
-
-    EINA_LIST_FOREACH(windows, l, app)
-        if (((ELauncher *)app)->browser == inspector_view)
-            break;
-
-    windows = eina_list_remove(windows, app);
-    windowDestroy(((ELauncher *)app)->ee);
-    free(app);
-}
-
-static void
-on_inspector_view_destroyed(Ecore_Evas *ee)
-{
-    ELauncher *app;
-
-    app = find_app_from_ee(ee);
-    evas_object_smart_callback_call(app->browser, "inspector,view,destroy", NULL);
-}
-
-static int
-quit(Eina_Bool success, const char *msg)
-{
-    edje_shutdown();
-    ecore_evas_shutdown();
-    ecore_file_shutdown();
-
-    if (msg)
-        fputs(msg, (success) ? stdout : stderr);
-
-    if (themePath) {
-        free(themePath);
-        themePath = NULL;
-    }
-
-    if (!success)
-        return EXIT_FAILURE;
-
-    return EXIT_SUCCESS;
-}
-
-static int
-browserCreate(const char *url, User_Arguments *userArgs)
-{
-    ELauncher *appBrowser = windowCreate(userArgs);
-    if (!appBrowser)
-        return quit(EINA_FALSE, "ERROR: could not create a browser window\n");
-
-    ecore_evas_title_set(appBrowser->ee, "EFL Test Launcher");
-    ecore_evas_callback_resize_set(appBrowser->ee, on_browser_ecore_evas_resize);
-    ecore_evas_callback_delete_request_set(appBrowser->ee, closeWindow);
-
-    evas_object_name_set(appBrowser->browser, "browser");
-
-    evas_object_smart_callback_add(appBrowser->browser, "inputmethod,changed", on_inputmethod_changed, appBrowser);
-    evas_object_smart_callback_add(appBrowser->browser, "inspector,view,close", on_inspector_view_close, appBrowser);
-    evas_object_smart_callback_add(appBrowser->browser, "inspector,view,create", on_inspector_view_create, appBrowser);
-    evas_object_smart_callback_add(appBrowser->browser, "load,error", on_load_error, appBrowser);
-    evas_object_smart_callback_add(appBrowser->browser, "load,finished", on_load_finished, appBrowser);
-    evas_object_smart_callback_add(appBrowser->browser, "load,progress", on_progress, appBrowser);
-    evas_object_smart_callback_add(appBrowser->browser, "menubar,visible,get", on_menubar_visible_get, appBrowser);
-    evas_object_smart_callback_add(appBrowser->browser, "menubar,visible,set", on_menubar_visible_set, appBrowser);
-    evas_object_smart_callback_add(appBrowser->browser, "scrollbars,visible,get", on_scrollbars_visible_get, appBrowser);
-    evas_object_smart_callback_add(appBrowser->browser, "scrollbars,visible,set", on_scrollbars_visible_set, appBrowser);
-    evas_object_smart_callback_add(appBrowser->browser, "statusbar,visible,get", on_statusbar_visible_get, appBrowser);
-    evas_object_smart_callback_add(appBrowser->browser, "statusbar,visible,set", on_statusbar_visible_set, appBrowser);
-    evas_object_smart_callback_add(appBrowser->browser, "title,changed", on_title_changed, appBrowser);
-    evas_object_smart_callback_add(appBrowser->browser, "toolbars,visible,get", on_toolbars_visible_get, appBrowser);
-    evas_object_smart_callback_add(appBrowser->browser, "toolbars,visible,set", on_toolbars_visible_set, appBrowser);
-    evas_object_smart_callback_add(appBrowser->browser, "tooltip,text,set", on_tooltip_text_set, appBrowser);
-    evas_object_smart_callback_add(appBrowser->browser, "tooltip,text,unset", on_tooltip_text_unset, appBrowser);
-    evas_object_smart_callback_add(appBrowser->browser, "uri,changed", on_url_changed, appBrowser);
-
-    evas_object_event_callback_add(appBrowser->browser, EVAS_CALLBACK_DEL, on_browser_del, appBrowser);
-    evas_object_event_callback_add(appBrowser->browser, EVAS_CALLBACK_FOCUS_IN, on_focus_in, appBrowser);
-    evas_object_event_callback_add(appBrowser->browser, EVAS_CALLBACK_FOCUS_OUT, on_focus_out, appBrowser);
-    evas_object_event_callback_add(appBrowser->browser, EVAS_CALLBACK_KEY_DOWN, on_key_down, appBrowser);
-    evas_object_event_callback_add(appBrowser->browser, EVAS_CALLBACK_MOUSE_DOWN, on_mouse_down, appBrowser);
-
-    ewk_view_setting_enable_developer_extras_set(appBrowser->browser, EINA_TRUE);
-
-    appBrowser->url_bar = url_bar_add(appBrowser->browser, DEFAULT_WIDTH);
-
-    evas_object_move(appBrowser->browser, 0, URL_BAR_HEIGHT);
-    evas_object_resize(appBrowser->browser, userArgs->geometry.w, userArgs->geometry.h - URL_BAR_HEIGHT);
-
-    ewk_view_uri_set(appBrowser->browser, url);
-
-    evas_object_show(appBrowser->browser);
-    ecore_evas_show(appBrowser->ee);
-
-    evas_object_focus_set(appBrowser->browser, EINA_TRUE);
-
-    return 1;
-}
-
-static int
-webInspectorCreate(ELauncher *appBrowser)
-{
-    ELauncher *appInspector = windowCreate(appBrowser->userArgs);
-    if (!appInspector)
-        return quit(EINA_FALSE, "ERROR: could not create an inspector window\n");
-
-    ecore_evas_title_set(appInspector->ee, "Web Inspector");
-    ecore_evas_callback_resize_set(appInspector->ee, on_inspector_ecore_evas_resize);
-    ecore_evas_callback_delete_request_set(appInspector->ee, on_inspector_view_destroyed);
-
-    evas_object_name_set(appInspector->browser, "inspector");
-
-    evas_object_move(appInspector->browser, 0, 0);
-    evas_object_resize(appInspector->browser, appInspector->userArgs->geometry.w, appInspector->userArgs->geometry.h);
-
-    evas_object_show(appInspector->browser);
-    ecore_evas_show(appInspector->ee);
-
-    evas_object_focus_set(appInspector->browser, EINA_TRUE);
-
-    ewk_view_inspector_view_set(appBrowser->browser, appInspector->browser);
-
-    return 1;
-}
-
-static ELauncher *
-windowCreate(User_Arguments *userArgs)
-{
-    ELauncher *app = (ELauncher *)malloc(sizeof(ELauncher));
-    if (!app) {
-        quit(EINA_FALSE, "ERROR: could not create an ELauncher\n");
-        return NULL;
-    }
-
-#if defined(WTF_USE_ACCELERATED_COMPOSITING) && defined(HAVE_ECORE_X)
-    if (userArgs->engine)
-#endif
-        app->ee = ecore_evas_new(userArgs->engine, 0, 0, userArgs->geometry.w, userArgs->geometry.h, NULL);
-#if defined(WTF_USE_ACCELERATED_COMPOSITING) && defined(HAVE_ECORE_X)
-    else {
-        const char* engine = "opengl_x11";
-        app->ee = ecore_evas_new(engine, 0, 0, userArgs->geometry.w, userArgs->geometry.h, NULL);
-    }
-#endif
-    if (!app->ee) {
-        quit(EINA_FALSE, "ERROR: could not construct evas-ecore\n");
-        return NULL;
-    }
-
-    if (userArgs->isFullscreen)
-        ecore_evas_fullscreen_set(app->ee, EINA_TRUE);
-
-    app->evas = ecore_evas_get(app->ee);
-    if (!app->evas) {
-        quit(EINA_FALSE, "ERROR: could not get evas from evas-ecore\n");
-        return NULL;
-    }
-
-    if (userArgs->backingStore && !strcasecmp(userArgs->backingStore, "tiled")) {
-        app->browser = ewk_view_tiled_add(app->evas);
-        info("backing store: tiled\n");
-    } else {
-        app->browser = ewk_view_single_add(app->evas);
-        info("backing store: single\n");
-
-        ewk_view_setting_tiled_backing_store_enabled_set(app->browser, userArgs->enableTiledBackingStore);
-    }
-
-    ewk_view_theme_set(app->browser, themePath);
-    if (userArgs->userAgent)
-        ewk_view_setting_user_agent_set(app->browser, userArgs->userAgent);
-
-    ewk_view_setting_local_storage_database_path_set(app->browser, userArgs->databasePath);
-    ewk_view_setting_enable_frame_flattening_set(app->browser, userArgs->isFlattening);
-    ewk_view_setting_encoding_detector_set(app->browser, userArgs->enableEncodingDetector);
-
-    app->userArgs = userArgs;
-    app->url_bar = NULL;
-
-    windows = eina_list_append(windows, app);
-
-    return app;
-}
-
-static void
-windowDestroy(Ecore_Evas *ee)
-{
-    ecore_evas_free(ee);
-    if (!eina_list_count(windows))
-        ecore_main_loop_quit();
-}
-
-static void
-closeWindow(Ecore_Evas *ee)
-{
-    ELauncher *app;
-
-    app = find_app_from_ee(ee);
-    ewk_view_inspector_close(app->browser);
-
-    windows = eina_list_remove(windows, app);
-    url_bar_del(app->url_bar);
-    windowDestroy(ee);
-    free(app);
-}
-
-static Eina_Bool
-main_signal_exit(void *data, int ev_type, void *ev)
-{
-    ELauncher *app;
-    while (windows) {
-        app = (ELauncher*) eina_list_data_get(windows);
-        ewk_view_inspector_close(app->browser);
-
-        ecore_evas_free(app->ee);
-        windows = eina_list_remove(windows, app);
-    }
-    if (!eina_list_count(windows))
-        ecore_main_loop_quit();
-    return EINA_TRUE;
-}
-
-static char *
-findThemePath(const char *theme)
-{
-    const char *default_theme = THEME_DIR"/default.edj";
-    char *rpath;
-    struct stat st;
-
-    if (!theme)
-        theme = default_theme;
-
-    rpath = ecore_file_realpath(theme);
-
-    if (!strlen(rpath) || stat(rpath, &st)) {
-        free(rpath);
-        return NULL;
-    }
-
-    return rpath;
-}
-
-int
-parseUserArguments(int argc, char *argv[], User_Arguments *userArgs)
-{
-    int args;
-
-    userArgs->engine = NULL;
-    userArgs->quitOption = EINA_FALSE;
-    userArgs->backingStore = (char *)backingStores[1];
-    userArgs->enableEncodingDetector = EINA_FALSE;
-    userArgs->enableTiledBackingStore = EINA_FALSE;
-    userArgs->isFlattening = EINA_FALSE;
-    userArgs->isFullscreen = EINA_FALSE;
-    userArgs->geometry.x = 0;
-    userArgs->geometry.y = 0;
-    userArgs->geometry.w = 0;
-    userArgs->geometry.h = 0;
-    userArgs->theme = NULL;
-    userArgs->userAgent = NULL;
-
-    Ecore_Getopt_Value values[] = {
-        ECORE_GETOPT_VALUE_STR(userArgs->engine),
-        ECORE_GETOPT_VALUE_BOOL(userArgs->quitOption),
-        ECORE_GETOPT_VALUE_STR(userArgs->backingStore),
-        ECORE_GETOPT_VALUE_BOOL(userArgs->enableEncodingDetector),
-        ECORE_GETOPT_VALUE_BOOL(userArgs->isFlattening),
-        ECORE_GETOPT_VALUE_BOOL(userArgs->isFullscreen),
-        ECORE_GETOPT_VALUE_PTR_CAST(userArgs->geometry),
-        ECORE_GETOPT_VALUE_STR(userArgs->theme),
-        ECORE_GETOPT_VALUE_BOOL(userArgs->enableTiledBackingStore),
-        ECORE_GETOPT_VALUE_STR(userArgs->userAgent),
-        ECORE_GETOPT_VALUE_INT(verbose),
-        ECORE_GETOPT_VALUE_BOOL(userArgs->quitOption),
-        ECORE_GETOPT_VALUE_BOOL(userArgs->quitOption),
-        ECORE_GETOPT_VALUE_BOOL(userArgs->quitOption),
-        ECORE_GETOPT_VALUE_BOOL(userArgs->quitOption),
-        ECORE_GETOPT_VALUE_NONE
-    };
-
-    ecore_app_args_set(argc, (const char**) argv);
-    args = ecore_getopt_parse(&options, values, argc, argv);
-
-    themePath = findThemePath(userArgs->theme);
-
-    if ((userArgs->geometry.w <= 0) || (userArgs->geometry.h <= 0)) {
-        userArgs->geometry.w = DEFAULT_WIDTH;
-        userArgs->geometry.h = DEFAULT_HEIGHT;
-    }
-
-    return args;
-}
-
-int
-main(int argc, char *argv[])
-{
-    const char *default_url = "http://www.google.com/";
-    const char *tmp;
-    const char *proxyUri;
-    char path[PATH_MAX];
-    int args;
-
-    User_Arguments userArgs;
-
-    if (!ecore_evas_init())
-        return EXIT_FAILURE;
-
-    if (!edje_init()) {
-        ecore_evas_shutdown();
-        return EXIT_FAILURE;
-    }
-
-    if (!ecore_file_init()) {
-        edje_shutdown();
-        ecore_evas_shutdown();
-        return EXIT_FAILURE;
-    }
-
-    args = parseUserArguments(argc, argv, &userArgs);
-    if (args < 0)
-       return quit(EINA_FALSE, "ERROR: could not parse options.\n");
-
-    if (userArgs.quitOption)
-        return quit(EINA_TRUE, NULL);
-
-    if (!themePath)
-        return quit(EINA_FALSE, "ERROR: could not find theme.\n");
-
-    ewk_init();
-    tmp = getenv("TMPDIR");
-    if (!tmp)
-        tmp = "/tmp";
-    snprintf(path, sizeof(path), "%s/.ewebkit-%u", tmp, getuid());
-    if (!ecore_file_mkpath(path))
-        return quit(EINA_FALSE, "ERROR: could not create settings database directory.\n");
-
-    userArgs.databasePath = path;
-
-    ewk_settings_icon_database_path_set(path);
-    ewk_settings_web_database_path_set(path);
-
-    proxyUri = getenv("http_proxy");
-    if (proxyUri)
-        ewk_network_proxy_uri_set(proxyUri);
-
-    if (args < argc) {
-        char *url = url_from_user_input(argv[args]);
-        browserCreate(url, &userArgs);
-        free(url);
-    } else
-        browserCreate(default_url, &userArgs);
-
-    ecore_event_handler_add(ECORE_EVENT_SIGNAL_EXIT, main_signal_exit, &windows);
-
-    ecore_main_loop_begin();
-
-    ewk_shutdown();
-
-    return quit(EINA_TRUE, NULL);
-}
diff --git a/Tools/EWebLauncher/url_bar.c b/Tools/EWebLauncher/url_bar.c
deleted file mode 100644
index 408b5ac..0000000
--- a/Tools/EWebLauncher/url_bar.c
+++ /dev/null
@@ -1,150 +0,0 @@
-/*
- * Copyright (C) 2012 Samsung Electronics
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *  * Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- *  * Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "url_bar.h"
-#include "url_utils.h"
-
-#include <Edje.h>
-#include <Ecore_Evas.h>
-
-#define PADDING_SIZE 5
-
-static char *
-_url_bar_url_get_with_protocol(Url_Bar *urlBar)
-{
-    const char *url = edje_object_part_text_get(urlBar->entry, "url.text");
-
-    return url_from_user_input(url);
-}
-
-static void
-on_urlbar_key_down(void *data, Evas *e, Evas_Object *obj, void *event_info)
-{
-    Evas_Event_Key_Down *ev = event_info;
-    Url_Bar *urlBar = (Url_Bar *)data;
-
-    if (!ev->key || strcmp(ev->key, "Return"))
-        return;
-
-    char *url = _url_bar_url_get_with_protocol(urlBar);
-    if (url) {
-        ewk_view_uri_set(urlBar->webView, url);
-        free(url);
-    }
-    evas_object_focus_set(urlBar->webView, EINA_TRUE);
-}
-
-static void
-on_urlbar_mouse_down(void *data, Evas *e, Evas_Object *obj, void *event_info)
-{
-    Evas_Event_Mouse_Down *ev = event_info;
-    Url_Bar *urlBar = (Url_Bar *)data;
-
-    if (ev->button == 1) {
-        evas_object_focus_set(urlBar->entry, EINA_TRUE);
-        edje_object_signal_emit(urlBar->entry, "entry,action,focus", "entry");
-    }
-}
-
-static void
-on_urlbar_focus_out(void *data, Evas *e, Evas_Object *obj, void *event_info)
-{
-    Url_Bar *urlBar = (Url_Bar *)data;
-
-    edje_object_signal_emit(urlBar->entry, "entry,action,unfocus", "entry");
-}
-
-void
-url_bar_width_set(Url_Bar *urlBar, int width)
-{
-    evas_object_move(urlBar->area, 0, 0);
-    evas_object_resize(urlBar->area, width, URL_BAR_HEIGHT);
-
-    evas_object_move(urlBar->entry, PADDING_SIZE, PADDING_SIZE);
-    evas_object_resize(urlBar->entry, width - PADDING_SIZE * 2, URL_BAR_HEIGHT - PADDING_SIZE * 2);
-}
-
-Url_Bar *
-url_bar_add(Evas_Object *webView, int width)
-{
-    Evas *evas;
-    Url_Bar *url_bar;
-    if (!webView)
-        return NULL;
-    evas = evas_object_evas_get(webView);
-
-    url_bar = (Url_Bar *)malloc(sizeof(Url_Bar));
-    url_bar->webView = webView;
-
-    url_bar->area = evas_object_rectangle_add(evas);
-    evas_object_name_set(url_bar->area, "url_barArea");
-    evas_object_color_set(url_bar->area, 255, 255, 255, 255);
-
-    url_bar->entry = edje_object_add(evas);
-    Eina_Bool ret = edje_object_file_set(url_bar->entry, THEME_DIR"/entry.edj", "control/entry/base/default");
-    if (!ret) {
-        evas_object_del(url_bar->area);
-
-        free(url_bar);
-        return NULL;
-    }
-
-    edje_object_part_text_set(url_bar->entry, "url.text", "");
-
-    /* Set URL bar dimensions and show it */
-    url_bar_width_set(url_bar, width);
-    evas_object_show(url_bar->area);
-    evas_object_show(url_bar->entry);
-
-    evas_object_event_callback_add(url_bar->entry, EVAS_CALLBACK_MOUSE_DOWN, on_urlbar_mouse_down, url_bar);
-    evas_object_event_callback_add(url_bar->entry, EVAS_CALLBACK_KEY_DOWN, on_urlbar_key_down, url_bar);
-    evas_object_event_callback_add(url_bar->entry, EVAS_CALLBACK_FOCUS_OUT, on_urlbar_focus_out, url_bar);
-
-    return url_bar;
-}
-
-void
-url_bar_del(Url_Bar *urlBar)
-{
-    if (!urlBar)
-        return;
-
-    evas_object_event_callback_del(urlBar->entry, EVAS_CALLBACK_KEY_DOWN, on_urlbar_key_down);
-    evas_object_event_callback_del(urlBar->entry, EVAS_CALLBACK_MOUSE_DOWN, on_urlbar_mouse_down);
-    evas_object_event_callback_del(urlBar->entry, EVAS_CALLBACK_FOCUS_OUT, on_urlbar_focus_out);
-
-    evas_object_del(urlBar->area);
-    evas_object_del(urlBar->entry);
-    free(urlBar);
-}
-
-void
-url_bar_url_set(Url_Bar *urlBar, const char *url)
-{
-    if (!urlBar || !url)
-        return;
-
-    edje_object_part_text_set(urlBar->entry, "url.text", url);
-}
diff --git a/Tools/EWebLauncher/url_bar.h b/Tools/EWebLauncher/url_bar.h
deleted file mode 100644
index 32d7793..0000000
--- a/Tools/EWebLauncher/url_bar.h
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Copyright (C) 2012 Samsung Electronics
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *  * Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- *  * Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef url_bar_h
-#define url_bar_h
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#include <Evas.h>
-
-#define URL_BAR_HEIGHT 30
-
-typedef struct _Url_Bar {
-    Evas_Object *webView;
-    Evas_Object *area;
-    Evas_Object *entry;
-} Url_Bar;
-
-Url_Bar *url_bar_add(Evas_Object* webview, int width);
-void url_bar_del(Url_Bar *urlBar);
-void url_bar_url_set(Url_Bar *urlBar, const char *url);
-void url_bar_width_set(Url_Bar *urlBar, int width);
-
-#ifdef __cplusplus
-}
-#endif
-#endif // url_bar_h
diff --git a/Tools/EWebLauncher/url_utils.c b/Tools/EWebLauncher/url_utils.c
deleted file mode 100644
index d8cf7cb..0000000
--- a/Tools/EWebLauncher/url_utils.c
+++ /dev/null
@@ -1,62 +0,0 @@
-/*
- * Copyright (C) 2012 Intel Corporation. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "url_utils.h"
-
-#include <Ecore_File.h>
-#include <string.h>
-#include <sys/statvfs.h>
-
-Eina_Bool
-has_scheme(const char *url)
-{
-    return !!strstr(url, "://");
-}
-
-char *
-url_from_user_input(const char *arg)
-{
-    /* If it is already a URL, return the argument as is. */
-    if (has_scheme(arg) || !strcasecmp(arg, "about:blank"))
-        return strdup(arg);
-
-    Eina_Strbuf *buf = eina_strbuf_manage_new(eina_file_path_sanitize(arg));
-
-    /* Check if the path exists. */
-    if (ecore_file_exists(eina_strbuf_string_get(buf))) {
-        /* File exists, convert local path to a URL. */
-        eina_strbuf_prepend(buf, "file://");
-    } else {
-        /* The path does not exist, convert it to a URL by
-           prepending http:// scheme:
-           www.google.com -> http://www.google.com */
-         eina_strbuf_string_free(buf);
-         eina_strbuf_append_printf(buf, "http://%s", arg);
-    }
-    char *url = eina_strbuf_string_steal(buf);
-    eina_strbuf_free(buf);
-
-    return url;
-}
diff --git a/Tools/EWebLauncher/url_utils.h b/Tools/EWebLauncher/url_utils.h
deleted file mode 100644
index bd3c1a0..0000000
--- a/Tools/EWebLauncher/url_utils.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * Copyright (C) 2012 Intel Corporation. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef url_utils_h
-#define url_utils_h
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#include <Eina.h>
-
-Eina_Bool has_scheme(const char *url);
-char *url_from_user_input(const char *arg);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif // url_utils_h
diff --git a/Tools/GNUmakefile.am b/Tools/GNUmakefile.am
deleted file mode 100644
index debcd24..0000000
--- a/Tools/GNUmakefile.am
+++ /dev/null
@@ -1,424 +0,0 @@
-noinst_PROGRAMS += \
-	Programs/ImageDiff
-
-if ENABLE_WEBKIT1
-noinst_PROGRAMS += \
-	Programs/DumpRenderTree \
-	Programs/GtkLauncher
-endif
-
-# GtkLauncher
-Programs_GtkLauncher_CPPFLAGS = \
-	-I$(srcdir)/Source/WebKit/gtk \
-	-I$(srcdir)/Source/WebCore/platform/network/soup/cache/ \
-	-I$(top_builddir)/Source/WebKit/gtk \
-	-I$(top_builddir)/DerivedSources \
-	-DWEBKIT_EXEC_PATH=\"${shell pwd}/$(top_builddir)/Programs/\" \
-	$(global_cppflags) \
-	$(javascriptcore_cppflags)
-
-Programs_GtkLauncher_SOURCES = \
-	Tools/GtkLauncher/LauncherInspectorWindow.c \
-	Tools/GtkLauncher/LauncherInspectorWindow.h \
-	Tools/GtkLauncher/main.c
-
-Programs_GtkLauncher_CFLAGS = \
-	-ansi \
-	-fno-strict-aliasing \
-	$(global_cflags) \
-	$(FREETYPE_CFLAGS) \
-	$(GTK_CFLAGS) \
-	$(LIBSOUP_CFLAGS) \
-	$(GSTREAMER_CFLAGS)
-
-Programs_GtkLauncher_LDADD = \
-	libwebkitgtk-@WEBKITGTK_API_MAJOR_VERSION@.@WEBKITGTK_API_MINOR_VERSION@.la \
-	libjavascriptcoregtk-@WEBKITGTK_API_MAJOR_VERSION@.@WEBKITGTK_API_MINOR_VERSION@.la \
-	$(FREETYPE_LIBS) \
-	$(GTK_LIBS) \
-	$(GLIB_LIBS) \
-	$(LIBSOUP_LIBS) \
-	$(WINMM_LIBS) \
-	$(GSTREAMER_LIBS)
-
-Programs_GtkLauncher_LDFLAGS = \
-	-no-fast-install \
-	-no-install
-
-# libWebCoreInternals
-# We must split off the window.internals implementation into a separate
-# convenience library because it requires a different include path order
-# to prefer the WebCore config.h over the DumpRenderTree config.h
-noinst_LTLIBRARIES += libWebCoreInternals.la
-libWebCoreInternals_la_SOURCES = \
-	Source/WebCore/bindings/js/JSDOMWrapper.cpp \
-	Source/WebCore/bindings/js/JSDOMWrapper.h \
-	Source/WebCore/testing/MallocStatistics.h \
-	Source/WebCore/testing/Internals.cpp \
-	Source/WebCore/testing/Internals.h \
-	Source/WebCore/testing/InternalSettings.cpp \
-	Source/WebCore/testing/InternalSettings.h \
-	Source/WebCore/testing/MockPagePopupDriver.cpp \
-	Source/WebCore/testing/MockPagePopupDriver.h \
-	Source/WebCore/testing/TypeConversions.h \
-	Source/WebCore/testing/js/WebCoreTestSupport.cpp \
-	Source/WebCore/testing/js/WebCoreTestSupport.h
-
-libwebcoreinternals_built_sources += \
-	DerivedSources/WebCore/InternalSettingsGenerated.cpp \
-	DerivedSources/WebCore/InternalSettingsGenerated.h   \
-	DerivedSources/WebCore/JSMallocStatistics.cpp \
-	DerivedSources/WebCore/JSMallocStatistics.h   \
-	DerivedSources/WebCore/JSInternals.cpp \
-	DerivedSources/WebCore/JSInternals.h   \
-	DerivedSources/WebCore/JSInternalSettings.cpp \
-	DerivedSources/WebCore/JSInternalSettings.h   \
-	DerivedSources/WebCore/JSInternalSettingsGenerated.cpp \
-	DerivedSources/WebCore/JSInternalSettingsGenerated.h \
-	DerivedSources/WebCore/JSTypeConversions.cpp \
-	DerivedSources/WebCore/JSTypeConversions.h
-
-nodist_libWebCoreInternals_la_SOURCES = $(libwebcoreinternals_built_sources)
-BUILT_SOURCES += $(libwebcoreinternals_built_sources)
-
-libWebCoreInternals_la_CPPFLAGS = \
-	$(global_cppflags) \
-	$(webcore_cppflags) \
-	$(webcoregtk_cppflags) \
-	$(javascriptcore_cppflags) \
-	$(CAIRO_CFLAGS) \
-	$(FREETYPE_CFLAGS) \
-	$(LIBSOUP_CFLAGS) \
-	$(PANGO_CFLAGS) \
-	-I$(top_builddir)/DerivedSources \
-	-I$(top_builddir)/DerivedSources/WebCore
-
-libWebCoreInternals_la_CXXFLAGS = \
-	$(global_cxxflags) \
-	$(libWebCoreInternals_la_CFLAGS)
-
-libWebCoreInternals_la_CFLAGS = \
-	-fno-strict-aliasing \
-	$(javascriptcore_cflags)
-
-# DumpRenderTree
-Programs_DumpRenderTree_CPPFLAGS = \
-	$(global_cppflags) \
-	-DTOP_LEVEL_DIR=\"${shell pwd}/${srcdir}\" \
-	-I$(srcdir)/Tools/DumpRenderTree \
-	-I$(srcdir)/Tools/DumpRenderTree/atk \
-	-I$(srcdir)/Tools/DumpRenderTree/cairo \
-	-I$(srcdir)/Tools/DumpRenderTree/gtk \
-	-I$(srcdir)/Source/WebKit/gtk \
-	-I$(srcdir)/Source/WebCore/platform/gtk \
-	-I$(srcdir)/Source/WebCore/testing/js \
-	-I$(top_builddir)/DerivedSources \
-	-I$(top_builddir)/Source/WebKit/gtk \
-	$(javascriptcore_cppflags) \
-	$(platformgtk_cppflags) \
-	$(webcore_cppflags)
-
-if TARGET_X11
-Programs_DumpRenderTree_CPPFLAGS += \
-	-DTEST_PLUGIN_DIR=\"${shell pwd}/${top_builddir}/TestNetscapePlugin/.libs\" \
-	-DFONTS_CONF_DIR=\"${shell pwd}/${srcdir}/Tools/DumpRenderTree/gtk/fonts\"
-endif
-
-Programs_DumpRenderTree_SOURCES = \
-	Tools/DumpRenderTree/DumpRenderTree.h \
-	Tools/DumpRenderTree/DumpRenderTreeCommon.cpp \
-	Tools/DumpRenderTree/DumpRenderTreePrefix.h \
-	Tools/DumpRenderTree/AccessibilityController.cpp \
-	Tools/DumpRenderTree/AccessibilityController.h \
-	Tools/DumpRenderTree/AccessibilityTextMarker.cpp \
-	Tools/DumpRenderTree/AccessibilityTextMarker.h \
-	Tools/DumpRenderTree/AccessibilityUIElement.cpp \
-	Tools/DumpRenderTree/AccessibilityUIElement.h \
-	Tools/DumpRenderTree/CyclicRedundancyCheck.cpp \
-	Tools/DumpRenderTree/CyclicRedundancyCheck.h \
-	Tools/DumpRenderTree/GCController.cpp \
-	Tools/DumpRenderTree/GCController.h \
-	Tools/DumpRenderTree/JavaScriptThreading.h \
-	Tools/DumpRenderTree/TestRunner.cpp \
-	Tools/DumpRenderTree/TestRunner.h \
-	Tools/DumpRenderTree/PixelDumpSupport.cpp \
-	Tools/DumpRenderTree/PixelDumpSupport.h \
-	Tools/DumpRenderTree/WorkQueue.cpp \
-	Tools/DumpRenderTree/WorkQueue.h \
-	Tools/DumpRenderTree/WorkQueueItem.h \
-	Tools/DumpRenderTree/config.h \
-	Tools/DumpRenderTree/atk/AccessibilityCallbacks.h \
-	Tools/DumpRenderTree/atk/AccessibilityCallbacksAtk.cpp \
-    	Tools/DumpRenderTree/atk/AccessibilityControllerAtk.cpp \
-	Tools/DumpRenderTree/atk/AccessibilityUIElementAtk.cpp \
-	Tools/DumpRenderTree/cairo/PixelDumpSupportCairo.cpp \
-	Tools/DumpRenderTree/cairo/PixelDumpSupportCairo.h \
-	Tools/DumpRenderTree/gtk/AccessibilityControllerGtk.cpp \
-	Tools/DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp \
-	Tools/DumpRenderTree/gtk/DumpRenderTree.cpp \
-	Tools/DumpRenderTree/gtk/DumpRenderTreeGtk.h \
-	Tools/DumpRenderTree/gtk/EditingCallbacks.h \
-	Tools/DumpRenderTree/gtk/EditingCallbacks.cpp \
-	Tools/DumpRenderTree/gtk/EventSender.h \
-	Tools/DumpRenderTree/gtk/EventSender.cpp \
-	Tools/DumpRenderTree/gtk/GCControllerGtk.cpp \
-	Tools/DumpRenderTree/gtk/TestRunnerGtk.cpp \
-	Tools/DumpRenderTree/gtk/PixelDumpSupportGtk.cpp \
-	Tools/DumpRenderTree/gtk/SelfScrollingWebKitWebView.cpp \
-	Tools/DumpRenderTree/gtk/SelfScrollingWebKitWebView.h \
-	Tools/DumpRenderTree/gtk/TextInputController.h \
-	Tools/DumpRenderTree/gtk/TextInputController.cpp \
-	Tools/DumpRenderTree/gtk/WorkQueueItemGtk.cpp \
-	Source/Platform/gtk/GtkVersioning.c
-
-Programs_DumpRenderTree_CXXFLAGS = \
-	$(global_cxxflags) \
-	$(Programs_DumpRenderTree_CFLAGS)
-
-Programs_DumpRenderTree_CFLAGS = \
-	-fno-strict-aliasing \
-	$(global_cflags) \
-	$(GLOBALDEPS_CFLAGS) \
-	$(CAIRO_CFLAGS) \
-	$(GTK_CFLAGS) \
-	$(LIBSOUP_CFLAGS)
-
-Programs_DumpRenderTree_LDADD = \
-	libjavascriptcoregtk-@WEBKITGTK_API_MAJOR_VERSION@.@WEBKITGTK_API_MINOR_VERSION@.la \
-	libwebkitgtk-@WEBKITGTK_API_MAJOR_VERSION@.@WEBKITGTK_API_MINOR_VERSION@.la \
-	libWebCorePlatform.la \
-	libWebCoreModules.la \
-	libWebCoreInternals.la \
-	$(GLOBALDEPS_LIBS) \
-	$(CAIRO_LIBS) \
-	$(GTK_LIBS) \
-	$(GLIB_LIBS) \
-	$(LIBSOUP_LIBS) \
-	$(FREETYPE_LIBS) \
-	$(WINMM_LIBS) \
-	$(XRENDER_LIBS) \
-	$(XT_LIBS)
-
-Programs_DumpRenderTree_LDFLAGS = \
-	-no-fast-install \
-	-no-install
-
-# ImageDiff
-Programs_ImageDiff_CPPFLAGS = $(global_cppflags)
-
-Programs_ImageDiff_SOURCES = \
-   Tools/ImageDiff/gtk/ImageDiff.cpp
-
-Programs_ImageDiff_CXXFLAGS = \
-   $(global_cxxflags) \
-   $(global_cppflags) \
-   $(Programs_ImageDiff_CFLAGS)
-
-Programs_ImageDiff_CFLAGS = \
-   -fno-strict-aliasing \
-   $(global_cflags) \
-   $(GLOBALDEPS_CFLAGS) \
-   $(GTK_CFLAGS)
-
-Programs_ImageDiff_LDADD = \
-   $(GTK_LIBS)
-
-Programs_ImageDiff_LDFLAGS = \
-   -no-fast-install \
-   -no-install
-
-# clean target
-CLEANFILES += \
-	Programs/DumpRenderTree \
-	Programs/GtkLauncher \
-	Programs/ImageDiff
-
-if TARGET_X11
-
-# Build TestNetscapePlugin only for X11
-# since we don't support plugins for non-X11 builds at the moment.
-noinst_LTLIBRARIES += \
-	TestNetscapePlugin/libtestnetscapeplugin.la
-
-TestNetscapePlugin_libtestnetscapeplugin_la_CPPFLAGS = \
-	-I$(srcdir)/Tools/DumpRenderTree \
-	-I$(srcdir)/Source/WebCore \
-	-I$(srcdir)/Source/WebCore/bridge \
-	-I$(srcdir)/Source/WebCore/plugins \
-	-I$(srcdir)/Tools/DumpRenderTree/TestNetscapePlugIn \
-	-I$(srcdir)/Tools/DumpRenderTree/TestNetscapePlugIn/unix/ForwardingHeaders \
-	$(global_cppflags) \
-	$(javascriptcore_cppflags)
-
-# For the Gtk port we want to use XP_UNIX both on X11 and Mac
-if !TARGET_WIN32
-TestNetscapePlugin_libtestnetscapeplugin_la_CPPFLAGS += -DXP_UNIX
-endif
-
-# Add MOZ_X11 only for X11 targets
-if TARGET_X11
-TestNetscapePlugin_libtestnetscapeplugin_la_CPPFLAGS += -DMOZ_X11
-endif
-
-TestNetscapePlugin_libtestnetscapeplugin_la_SOURCES = \
-	Tools/DumpRenderTree/TestNetscapePlugIn/Tests/DocumentOpenInDestroyStream.cpp \
-	Tools/DumpRenderTree/TestNetscapePlugIn/Tests/EvaluateJSAfterRemovingPluginElement.cpp \
-	Tools/DumpRenderTree/TestNetscapePlugIn/Tests/FormValue.cpp \
-	Tools/DumpRenderTree/TestNetscapePlugIn/Tests/GetURLNotifyWithURLThatFailsToLoad.cpp \
-	Tools/DumpRenderTree/TestNetscapePlugIn/Tests/GetURLWithJavaScriptURL.cpp \
-	Tools/DumpRenderTree/TestNetscapePlugIn/Tests/GetURLWithJavaScriptURLDestroyingPlugin.cpp \
-	Tools/DumpRenderTree/TestNetscapePlugIn/Tests/GetUserAgentWithNullNPPFromNPPNew.cpp \
-	Tools/DumpRenderTree/TestNetscapePlugIn/Tests/LogNPPSetWindow.cpp \
-	Tools/DumpRenderTree/TestNetscapePlugIn/Tests/NPDeallocateCalledBeforeNPShutdown.cpp \
-	Tools/DumpRenderTree/TestNetscapePlugIn/Tests/NPPNewFails.cpp \
-	Tools/DumpRenderTree/TestNetscapePlugIn/Tests/NPPSetWindowCalledDuringDestruction.cpp \
-    Tools/DumpRenderTree/TestNetscapePlugIn/Tests/NPRuntimeCallsWithNullNPP.cpp \
-	Tools/DumpRenderTree/TestNetscapePlugIn/Tests/NPRuntimeObjectFromDestroyedPlugin.cpp \
-	Tools/DumpRenderTree/TestNetscapePlugIn/Tests/NPRuntimeRemoveProperty.cpp \
-	Tools/DumpRenderTree/TestNetscapePlugIn/Tests/NullNPPGetValuePointer.cpp \
-	Tools/DumpRenderTree/TestNetscapePlugIn/Tests/PassDifferentNPPStruct.cpp \
-	Tools/DumpRenderTree/TestNetscapePlugIn/Tests/PluginScriptableNPObjectInvokeDefault.cpp \
-	Tools/DumpRenderTree/TestNetscapePlugIn/Tests/PrivateBrowsing.cpp \
-	Tools/DumpRenderTree/TestNetscapePlugIn/Tests/x11/CallInvalidateRectWithNullNPPArgument.cpp \
-	Tools/DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp \
-	Tools/DumpRenderTree/TestNetscapePlugIn/PluginTest.h \
-	Tools/DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp \
-	Tools/DumpRenderTree/TestNetscapePlugIn/PluginObject.h \
-	Tools/DumpRenderTree/TestNetscapePlugIn/TestObject.cpp \
-	Tools/DumpRenderTree/TestNetscapePlugIn/TestObject.h \
-	Tools/DumpRenderTree/TestNetscapePlugIn/main.cpp \
-	Tools/DumpRenderTree/TestNetscapePlugIn/unix/ForwardingHeaders/WebKit/npapi.h \
-	Tools/DumpRenderTree/TestNetscapePlugIn/unix/ForwardingHeaders/WebKit/npfunctions.h \
-	Tools/DumpRenderTree/TestNetscapePlugIn/unix/ForwardingHeaders/WebKit/npruntime.h
-
-TestNetscapePlugin_libtestnetscapeplugin_la_LDFLAGS = \
-	-rpath ${shell pwd}/$(top_builddir)/../unix/TestNetscapePlugin/.libs \
-	$(no_undefined) \
-	-avoid-version \
-	-module
-
-CLEANFILES += TestNetscapePlugin/libtestnetscapeplugin.la
-endif
-
-check-local:
-	$(top_srcdir)/Tools/Scripts/run-gtk-tests --timeout=-1
-
-EXTRA_DIST += \
-	Tools/gtk/common.py \
-	Tools/gtk/generate-feature-defines-files \
-	Tools/gtk/generate-gtkdoc \
-	Tools/gtk/gtkdoc.py \
-	Tools/jhbuild/jhbuildutils.py \
-	Tools/Scripts/VCSUtils.pm \
-	Tools/Scripts/run-gtk-tests \
-	Tools/Scripts/webkit-build-directory \
-	Tools/Scripts/webkitdirs.pm
-
-docs: docs-build.stamp
-.PHONY : docs
-DISTCLEANFILES += docs-build.stamp
-
-docs_build_stamp_list = \
-	Source/WebKit/gtk/docs/webkitenvironment.xml
-
-if ENABLE_WEBKIT1
-docs_build_stamp_list += \
-	libwebkitgtk-@WEBKITGTK_API_MAJOR_VERSION@.@WEBKITGTK_API_MINOR_VERSION@.la \
-	Source/WebKit/gtk/docs/webkitgtk-docs.sgml \
-	Source/WebKit/gtk/docs/webkitgtk-sections.txt
-endif
-
-if ENABLE_WEBKIT2
-docs_build_stamp_list += \
-	libwebkit2gtk-@WEBKITGTK_API_MAJOR_VERSION@.@WEBKITGTK_API_MINOR_VERSION@.la \
-	Source/WebKit2/UIProcess/API/gtk/docs/webkit2gtk-docs.sgml \
-	Source/WebKit2/UIProcess/API/gtk/docs/webkit2gtk-sections.txt
-endif
-
-docs-build.stamp: $(doc_build_stamp_list)
-	CC=$(CC) $(srcdir)/Tools/gtk/generate-gtkdoc
-	@touch docs-build.stamp
-
-clean-local: doc-clean-local
-doc-clean-local:
-	@rm -f Documentation/webkitgtk/*~ Documentation/webkitgtk*.bak
-	@rm -f Documentation/webkit2gtk/*~ Documentation/webkit2gtk*.bak
-distclean-local: doc-distclean-local
-doc-distclean-local:
-	@rm -rf Documentation
-maintainer-clean-local: doc-maintainer-clean-local
-doc-maintainer-clean-local: clean
-	@rm -rf Documentation/webkitgtk Documentation/webkit2gtk
-	-@rmdir Documentation
-
-install-data-local:
-if ENABLE_WEBKIT1
-	@installfiles=`echo ./Documentation/webkitgtk/html/*`; \
-	if test "$$installfiles" = './Documentation/webkitgtk/html/*'; \
-	then echo 1>&2 'No documentation to install' ; \
-	else \
-	  DOC_MODULE_VERSION=`cat ./Documentation/webkitgtk/version.xml`; \
-	  if test -n "$(DOC_MODULE_VERSION)"; then \
-	    installdir="$(DESTDIR)$(HTML_DIR)/webkitgtk-$(DOC_MODULE_VERSION)"; \
-	  else \
-	    installdir="$(DESTDIR)$(HTML_DIR)/webkitgtk"; \
-	  fi; \
-	  $(mkinstalldirs) $${installdir} ; \
-	  for i in $$installfiles; do \
-	    echo ' $(INSTALL_DATA) '$$i ; \
-	    $(INSTALL_DATA) $$i $${installdir}; \
-	  done; \
-	  if test -n "$(DOC_MODULE_VERSION)"; then \
-	    mv -f $${installdir}/webkitgtk.devhelp2 \
-	      $${installdir}/webkitgtk-$(DOC_MODULE_VERSION).devhelp2; \
-	  fi; \
-	fi
-endif
-if ENABLE_WEBKIT2
-	@installfiles=`echo ./Documentation/webkit2gtk/html/*`; \
-	if test "$$installfiles" = './Documentation/webkit2gtk/html/*'; \
-	then echo 1>&2 'No documentation to install' ; \
-	else \
-	  DOC_MODULE_VERSION=`cat ./Documentation/webkit2gtk/version.xml`; \
-	  if test -n "$(DOC_MODULE_VERSION)"; then \
-	    installdir="$(DESTDIR)$(HTML_DIR)/webkit2gtk-$(DOC_MODULE_VERSION)"; \
-	  else \
-	    installdir="$(DESTDIR)$(HTML_DIR)/webkit2gtk"; \
-	  fi; \
-	  $(mkinstalldirs) $${installdir} ; \
-	  for i in $$installfiles; do \
-	    echo ' $(INSTALL_DATA) '$$i ; \
-	    $(INSTALL_DATA) $$i $${installdir}; \
-	  done; \
-	  if test -n "$(DOC_MODULE_VERSION)"; then \
-	    mv -f $${installdir}/webkit2gtk.devhelp2 \
-	      $${installdir}/webkit2gtk-$(DOC_MODULE_VERSION).devhelp2; \
-	  fi; \
-	fi
-endif
-	@$(AM_V_GEN)$(PYTHON) $(srcdir)/Tools/gtk/generate-gtkdoc --rebase --virtual-root=$${DESTDIR}
-
-uninstall-local:
-if ENABLE_WEBKIT1
-	@DOC_MODULE_VERSION=`cat ./Documentation/webkitgtk/version.xml`; \
-	if test -n "$(DOC_MODULE_VERSION)"; then \
-	  installdir="$(DESTDIR)$(HTML_DIR)/webkitgtk-$(DOC_MODULE_VERSION)"; \
-	else \
-	  installdir="$(DESTDIR)$(HTML_DIR)/webkitgtk"; \
-	fi; \
-	rm -rf $${installdir}
-endif
-if ENABLE_WEBKIT2
-	@DOC_MODULE_VERSION=`cat ./Documentation/webkit2gtk/version.xml`; \
-	if test -n "$(DOC_MODULE_VERSION)"; then \
-	  installdir="$(DESTDIR)$(HTML_DIR)/webkit2gtk-$(DOC_MODULE_VERSION)"; \
-	else \
-	  installdir="$(DESTDIR)$(HTML_DIR)/webkit2gtk"; \
-	fi; \
-	rm -rf $${installdir}
-endif
-
-if ENABLE_GTK_DOC
-all: docs-build.stamp
-endif
-
diff --git a/Tools/GardeningServer/OWNERS b/Tools/GardeningServer/OWNERS
new file mode 100644
index 0000000..addbbc0
--- /dev/null
+++ b/Tools/GardeningServer/OWNERS
@@ -0,0 +1,4 @@
+abarth@chromium.org
+dglazkov@chromium.org
+dpranke@chromium.org
+ojan@chromium.org
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/favicon.ico b/Tools/GardeningServer/favicon.ico
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/favicon.ico
rename to Tools/GardeningServer/favicon.ico
Binary files differ
diff --git a/Tools/GardeningServer/garden-o-matic.html b/Tools/GardeningServer/garden-o-matic.html
new file mode 100644
index 0000000..10ef791
--- /dev/null
+++ b/Tools/GardeningServer/garden-o-matic.html
@@ -0,0 +1,71 @@
+<!DOCTYPE html>
+<!--
+Copyright (C) 2011 Google Inc. All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+1. Redistributions of source code must retain the above copyright
+   notice, this list of conditions and the following disclaimer.
+2. Redistributions in binary form must reproduce the above copyright
+   notice, this list of conditions and the following disclaimer in the
+   documentation and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
+BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+THE POSSIBILITY OF SUCH DAMAGE.
+
+The favicons are from the awesome famfamfam.com, which is the website of Mark
+James, a web developer from Birmingham, UK.
+-->
+<html>
+<head>
+<meta http-equiv="X-WebKit-CSP" content="default-src 'none';
+                                         script-src 'self' file: https://ajax.googleapis.com;
+                                         style-src 'self' 'unsafe-inline' file: https://ajax.googleapis.com http://fonts.googleapis.com;
+                                         font-src http://themes.googleusercontent.com;
+                                         img-src 'self' https://ajax.googleapis.com http://build.chromium.org http://build.webkit.org;
+                                         media-src 'self' http://build.chromium.org http://build.webkit.org;
+                                         frame-src 'self' http://build.chromium.org http://build.webkit.org http://test-results.appspot.com;
+                                         connect-src 'self' http://trac.webkit.org http://build.chromium.org http://build.webkit.org">
+<title>Garden-O-Matic</title>
+<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:400,700">
+<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.15/themes/base/jquery-ui.css">
+<link rel="stylesheet" href="styles/common.css">
+<link rel="stylesheet" href="styles/onebar.css">
+<link rel="stylesheet" href="styles/failures.css">
+<link rel="stylesheet" href="styles/results.css">
+<link rel="stylesheet" href="styles/notifications.css">
+<link rel="stylesheet" href="styles/perf.css">
+<link rel="stylesheet" href="styles/pixelzoomer.css">
+</head>
+<body>
+<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
+<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.15/jquery-ui.min.js"></script>
+<script src="scripts/base.js"></script>
+<script src="scripts/config.js"></script>
+<script src="scripts/net.js"></script>
+<script src="scripts/svn-log.js"></script>
+<script src="scripts/builders.js"></script>
+<script src="scripts/checkout.js"></script>
+<script src="scripts/results.js"></script>
+<script src="scripts/ui.js"></script>
+<script src="scripts/model.js"></script>
+<script src="scripts/ui/actions.js"></script>
+<script src="scripts/ui/failures.js"></script>
+<script src="scripts/ui/notifications.js"></script>
+<script src="scripts/ui/perf.js"></script>
+<script src="scripts/ui/results.js"></script>
+<script src="scripts/controllers.js"></script>
+<script src="scripts/pixelzoomer.js"></script>
+<script src="scripts/garden-o-matic.js"></script>
+</body>
+</html>
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/images/favicon-green.png b/Tools/GardeningServer/images/favicon-green.png
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/images/favicon-green.png
rename to Tools/GardeningServer/images/favicon-green.png
Binary files differ
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/images/favicon-red.png b/Tools/GardeningServer/images/favicon-red.png
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/images/favicon-red.png
rename to Tools/GardeningServer/images/favicon-red.png
Binary files differ
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/images/partytime.gif b/Tools/GardeningServer/images/partytime.gif
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/images/partytime.gif
rename to Tools/GardeningServer/images/partytime.gif
Binary files differ
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/rebaseline.html b/Tools/GardeningServer/rebaseline.html
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/rebaseline.html
rename to Tools/GardeningServer/rebaseline.html
diff --git a/Tools/GardeningServer/run-unittests.html b/Tools/GardeningServer/run-unittests.html
new file mode 100644
index 0000000..6cae329
--- /dev/null
+++ b/Tools/GardeningServer/run-unittests.html
@@ -0,0 +1,73 @@
+<!DOCTYPE html>
+<!--
+Copyright (C) 2011 Google Inc. All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+1. Redistributions of source code must retain the above copyright
+   notice, this list of conditions and the following disclaimer.
+2. Redistributions in binary form must reproduce the above copyright
+   notice, this list of conditions and the following disclaimer in the
+   documentation and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
+BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+THE POSSIBILITY OF SUCH DAMAGE.
+-->
+<html>
+<head>
+<link rel="stylesheet" href="../qunit/qunit/qunit.css">
+<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
+<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.15/jquery-ui.min.js"></script>
+<script src="../qunit/qunit/qunit.js"></script>
+</head>
+<body>
+<h1 id="qunit-header">TestFailures JavaScript Unit Tests</h1>
+<h2 id="qunit-banner"></h2>
+<div id="qunit-testrunner-toolbar"></div>
+<h2 id="qunit-userAgent"></h2>
+<ol id="qunit-tests"></ol>
+
+<link rel="stylesheet" href="styles/results.css">
+
+<script src="scripts/base.js"></script>
+<script src="scripts/config.js"></script>
+<script src="scripts/base_unittests.js"></script>
+<script src="scripts/net.js"></script>
+<script src="scripts/net_unittests.js"></script>
+<script src="scripts/svn-log.js"></script>
+<script src="scripts/svn-log_unittests.js"></script>
+<script src="scripts/builders.js"></script>
+<script src="scripts/builders_unittests.js"></script>
+<script src="scripts/checkout.js"></script>
+<script src="scripts/checkout_unittests.js"></script>
+<script src="scripts/results.js"></script>
+<script src="scripts/results_unittests.js"></script>
+<script src="scripts/ui.js"></script>
+<script src="scripts/ui/actions.js"></script>
+<script src="scripts/ui/actions_unittests.js"></script>
+<script src="scripts/ui/failures.js"></script>
+<script src="scripts/ui/failures_unittests.js"></script>
+<script src="scripts/ui/results.js"></script>
+<script src="scripts/controllers.js"></script> <!-- This script is slightly of order. -->
+<script src="scripts/ui/results_unittests.js"></script>
+<script src="scripts/ui_unittests.js"></script>
+<script src="scripts/model.js"></script>
+<script src="scripts/model_unittests.js"></script>
+<script src="scripts/ui/notifications.js"></script>
+<script src="scripts/ui/notifications_unittests.js"></script>
+<script src="scripts/ui/perf.js"></script>
+<script src="scripts/ui/perf_unittests.js"></script>
+<script src="scripts/controllers_unittests.js"></script>
+
+</body>
+</html>
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base.js b/Tools/GardeningServer/scripts/base.js
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base.js
rename to Tools/GardeningServer/scripts/base.js
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base_unittests.js b/Tools/GardeningServer/scripts/base_unittests.js
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/base_unittests.js
rename to Tools/GardeningServer/scripts/base_unittests.js
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders.js b/Tools/GardeningServer/scripts/builders.js
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/builders.js
rename to Tools/GardeningServer/scripts/builders.js
diff --git a/Tools/GardeningServer/scripts/builders_unittests.js b/Tools/GardeningServer/scripts/builders_unittests.js
new file mode 100644
index 0000000..c80a584
--- /dev/null
+++ b/Tools/GardeningServer/scripts/builders_unittests.js
@@ -0,0 +1,1152 @@
+/*
+ * Copyright (C) 2011 Google Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+(function () {
+
+module("builders");
+
+var kExampleBuilderStatusJSON =  {
+    "WebKit Linux": {
+        "basedir": "WebKit_Linux",
+        "cachedBuilds": [11459, 11460, 11461, 11462],
+        "category": "6webkit linux latest",
+        "currentBuilds": [11462],
+        "pendingBuilds": 0,
+        "slaves": ["vm124-m1"],
+        "state": "building"
+    },
+    "WebKit Mac10.6": {
+        "basedir": "WebKit_Linux",
+        "cachedBuilds": [11459, 11460, 11461, 11462],
+        "category": "6webkit linux latest",
+        "currentBuilds": [11461, 11462],
+        "pendingBuilds": 0,
+        "slaves": ["vm124-m1"],
+        "state": "building"
+    },
+    "WebKit ASAN": {
+        "basedir": "WebKit_Linux",
+        "cachedBuilds": [11459, 11460, 11461, 11462],
+        "category": "6webkit linux latest",
+        "currentBuilds": [11461, 11462],
+        "pendingBuilds": 0,
+        "slaves": ["vm124-m1"],
+        "state": "building"
+    },
+};
+
+var kExampleWebKitDotOrgBuilderStatusJSON =  {
+    "Apple Lion Release WK2 (Tests)": {
+        "basedir": "WebKit_Linux",
+        "cachedBuilds": [11459, 11460, 11461, 11462],
+        "category": "6webkit linux latest",
+        "currentBuilds": [11462],
+        "pendingBuilds": 0,
+        "slaves": ["vm124-m1"],
+        "state": "building"
+    },
+    "GTK Linux 64-bit Debug": {
+        "basedir": "WebKit_Linux",
+        "cachedBuilds": [11459, 11460, 11461, 11462],
+        "category": "6webkit linux latest",
+        "currentBuilds": [11461, 11462],
+        "pendingBuilds": 0,
+        "slaves": ["vm124-m1"],
+        "state": "building"
+    },
+    "Qt Linux Release": {
+        "basedir": "WebKit_Linux",
+        "cachedBuilds": [11459, 11460, 11461, 11462],
+        "category": "6webkit linux latest",
+        "currentBuilds": [11461, 11462],
+        "pendingBuilds": 0,
+        "slaves": ["vm124-m1"],
+        "state": "building"
+    },
+};
+
+var kExampleBuildInfoJSON = {
+    "blame": ["abarth@webkit.org"],
+    "builderName": "WebKit Linux",
+    "changes": ["Files:\n Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js\n Tools/ChangeLog\nAt: Thu 04 Aug 2011 00:50:38\nChanged By: abarth@webkit.org\nComments: Fix types.  Sadly, main.js has no test coverage.  (I need to think\nabout how to test this part of the code.)\n\n* BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:Properties: \n\n\n", "Files:\n LayoutTests/ChangeLog\n LayoutTests/platform/chromium-mac/fast/box-shadow/inset-box-shadows-expected.png\n LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.png\n LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.png\n LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png\n LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png\nAt: Thu 04 Aug 2011 00:50:38\nChanged By: abarth@webkit.org\nComments: Update baselines after <http://trac.webkit.org/changeset/92340>.\n\n* platform/chromium-mac/fast/box-shadow/inset-box-shadows-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png:Properties: \n\n\n"],
+    "currentStep": null,
+    "eta": null,
+    "logs": [
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/update_scripts/logs/stdio"],
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/update/logs/stdio"],
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/compile/logs/stdio"],
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/test_shell_tests/logs/stdio"],
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/webkit_unit_tests/logs/stdio"],
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/webkit_tests/logs/stdio"],
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/archive_webkit_tests_results/logs/stdio"],
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/webkit_gpu_tests/logs/stdio"],
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/archive_webkit_tests_gpu_results/logs/stdio"]
+    ],
+    "number": 11461,
+    "properties": [
+        ["blamelist", ["abarth@webkit.org"], "Build"],
+        ["branch", "trunk", "Build"],
+        ["buildername", "WebKit Linux", "Build"],
+        ["buildnumber", 11461, "Build"],
+        ["got_revision", "95395", "Source"],
+        ["got_webkit_revision", "92358", "Source"],
+        ["gtest_filter", null, "Factory"],
+        ["mastername", "chromium.webkit", "master.cfg"],
+        ["revision", "92358", "Build"],
+        ["scheduler", "s6_webkit_rel", "Scheduler"],
+        ["slavename", "vm124-m1", "BuildSlave"]
+    ],
+    "reason": "",
+    "requests": [{
+        "builderName": "WebKit Linux",
+        "builds": [11461],
+        "source": {
+            "branch": "trunk",
+            "changes": [{
+                "branch": "trunk",
+                "category": null,
+                "comments": "Fix types.  Sadly, main.js has no test coverage.  (I need to think\nabout how to test this part of the code.)\n\n* BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:",
+                "files": ["Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js", "Tools/ChangeLog"],
+                "number": 43707,
+                "properties": [],
+                "repository": "",
+                "revision": "92357",
+                "revlink": "http://trac.webkit.org/changeset/92357",
+                "when": 1312444238.855081,
+                "who": "abarth@webkit.org"
+            }, {
+                "branch": "trunk",
+                "category": null,
+                "comments": "Update baselines after <http://trac.webkit.org/changeset/92340>.\n\n* platform/chromium-mac/fast/box-shadow/inset-box-shadows-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png:",
+                "files": ["LayoutTests/ChangeLog", "LayoutTests/platform/chromium-mac/fast/box-shadow/inset-box-shadows-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png"],
+                "number": 43708,
+                "properties": [],
+                "repository": "",
+                "revision": "92358",
+                "revlink": "http://trac.webkit.org/changeset/92358",
+                "when": 1312444238.855538,
+                "who": "abarth@webkit.org"
+            }],
+            "hasPatch": false,
+            "revision": "92358"
+        },
+        "submittedAt": 1312444298.989818
+    }],
+    "results": 2,
+    "slave": "vm124-m1",
+    "sourceStamp": {
+        "branch": "trunk",
+        "changes": [{
+            "branch": "trunk",
+            "category": null,
+            "comments": "Fix types.  Sadly, main.js has no test coverage.  (I need to think\nabout how to test this part of the code.)\n\n* BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:",
+            "files": ["Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js", "Tools/ChangeLog"],
+            "number": 43707,
+            "properties": [],
+            "repository": "",
+            "revision": "92357",
+            "revlink": "http://trac.webkit.org/changeset/92357",
+            "when": 1312444238.855081,
+            "who": "abarth@webkit.org"
+        }, {
+            "branch": "trunk",
+            "category": null,
+            "comments": "Update baselines after <http://trac.webkit.org/changeset/92340>.\n\n* platform/chromium-mac/fast/box-shadow/inset-box-shadows-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png:",
+            "files": ["LayoutTests/ChangeLog", "LayoutTests/platform/chromium-mac/fast/box-shadow/inset-box-shadows-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png"],
+            "number": 43708,
+            "properties": [],
+            "repository": "",
+            "revision": "92358",
+            "revlink": "http://trac.webkit.org/changeset/92358",
+            "when": 1312444238.855538,
+            "who": "abarth@webkit.org"
+        }],
+        "hasPatch": false,
+        "revision": "92358"
+    },
+    "steps": [{
+        "eta": null,
+        "expectations": [
+            ["output", 2297, 2300.6571014083784]
+        ],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [
+            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/update_scripts/logs/stdio"]
+        ],
+        "name": "update_scripts",
+        "results": [0, []],
+        "statistics": {},
+        "step_number": 0,
+        "text": ["update_scripts"],
+        "times": [1312444299.102834, 1312444309.270324],
+        "urls": {}
+    }, {
+        "eta": null,
+        "expectations": [
+            ["output", 20453, 17580.5002389645]
+        ],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [
+            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/update/logs/stdio"] ],
+        "name": "update",
+        "results": [0, []],
+        "statistics": {},
+        "step_number": 1,
+        "text": ["update", "r95395", "webkit r92358"],
+        "times": [1312444309.270763, 1312444398.468139],
+        "urls": {}
+    }, {
+        "eta": null,
+        "expectations": [
+            ["output", 17316, 2652.4850499589456]
+        ],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [
+            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/compile/logs/stdio"]
+        ],
+        "name": "compile",
+        "results": [0, []],
+        "statistics": {},
+        "step_number": 2,
+        "text": ["compile"],
+        "times": [1312444398.46855, 1312444441.68838],
+        "urls": {}
+    }, {
+        "eta": null,
+        "expectations": [
+            ["output", 91980, 92002.12628325251]
+        ],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [
+            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/test_shell_tests/logs/stdio"]
+        ],
+        "name": "test_shell_tests",
+        "results": [0, []],
+        "statistics": {},
+        "step_number": 3,
+        "text": ["test_shell_tests", "1 disabled", "2 flaky"],
+        "times": [1312444441.688756, 1312444451.74908],
+        "urls": {}
+    }, {
+        "eta": null,
+        "expectations": [
+            ["output", 20772, 20772.638503443086]
+        ],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [
+            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/webkit_unit_tests/logs/stdio"]
+        ],
+        "name": "webkit_unit_tests",
+        "results": [0, []],
+        "statistics": {},
+        "step_number": 4,
+        "text": ["webkit_unit_tests", "1 disabled"],
+        "times": [1312444451.749574, 1312444452.306143],
+        "urls": {}
+    }, {
+        "eta": null,
+        "expectations": [
+            ["output", 2477406, 2498915.6146275494]
+        ],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [
+            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/webkit_tests/logs/stdio"]
+        ],
+        "name": "webkit_tests",
+        "results": [2, ["webkit_tests"]],
+        "statistics": {},
+        "step_number": 5,
+        "text": ["webkit_tests", "2014 fixable", "(370 skipped)", "failed 1", "<div class=\"BuildResultInfo\">", "<a href=\"http://test-results.appspot.com/dashboards/flakiness_dashboard.html#master=ChromiumWebkit&tests=fast/box-shadow/box-shadow-clipped-slices.html\">", "<abbr title=\"fast/box-shadow/box-shadow-clipped-slices.html\">box-shadow-clipped-slices.html</abbr>", "</a>", "</div>"],
+        "times": [1312444452.306695, 1312444768.888266],
+        "urls": {}
+    }, {
+        "eta": null,
+        "expectations": [
+            ["output", 2668845, 2672746.372363254]
+        ],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [
+            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/archive_webkit_tests_results/logs/stdio"]
+        ],
+        "name": "archive_webkit_tests_results",
+        "results": [0, []],
+        "statistics": {},
+        "step_number": 6,
+        "text": ["archived webkit_tests results"],
+        "times": [1312444768.888746, 1312444781.444399],
+        "urls": {
+            "layout test results": "http://build.chromium.org/buildbot/layout_test_results/WebKit_Linux\r/95395\rNone"
+        }
+    }, {
+        "eta": null,
+        "expectations": [
+            ["output", 210958, 208138.4965182993]
+        ],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [
+            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/webkit_gpu_tests/logs/stdio"]
+        ],
+        "name": "webkit_gpu_tests",
+        "results": [2, ["webkit_gpu_tests"]],
+        "statistics": {},
+        "step_number": 7,
+        "text": ["webkit_gpu_tests", "148 fixable", "(24 skipped)", "failed 1", "<div class=\"BuildResultInfo\">", "<a href=\"http://test-results.appspot.com/dashboards/flakiness_dashboard.html#master=ChromiumWebkit&tests=compositing/scaling/tiled-layer-recursion.html\">", "<abbr title=\"compositing/scaling/tiled-layer-recursion.html\">tiled-layer-recursion.html</abbr>", "</a>", "</div>"],
+        "times": [1312444781.444903, 1312444966.856074],
+        "urls": {}
+    }, {
+        "eta": null,
+        "expectations": [
+            ["output", 148825, 147822.1074277072]
+        ],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [
+            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/archive_webkit_tests_gpu_results/logs/stdio"]
+        ],
+        "name": "archive_webkit_tests_gpu_results",
+        "results": [0, []],
+        "statistics": {},
+        "step_number": 8,
+        "text": ["archived webkit_tests gpu results"],
+        "times": [1312444966.856575, 1312444970.458655],
+        "urls": {
+            "layout test gpu results": "http://build.chromium.org/buildbot/layout_test_results/WebKit_Linux_-_GPU\r/95395\rNone"
+        }
+    }],
+    "text": ["failed", "webkit_tests", "webkit_gpu_tests"],
+    "times": [1312444299.10216, 1312444970.459138]
+};
+
+var kExampleBuildInfoWithWebKitTestCrashJSON = {
+    "blame": ["asvitkine@chromium.org", "derat@chromium.org", "nirnimesh@chromium.org"],
+    "builderName": "WebKit Win (deps)(dbg)(2)",
+    "currentStep": null,
+    "eta": null,
+    "logs": [
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/svnkill/logs/stdio"],
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/update_scripts/logs/stdio"],
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/taskkill/logs/stdio"],
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/update/logs/stdio"],
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/extract_build/logs/stdio"],
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/webkit_tests/logs/stdio"],
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/archive_webkit_tests_results/logs/stdio"],
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/webkit_gpu_tests/logs/stdio"],
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/archive_webkit_tests_gpu_results/logs/stdio"]
+    ],
+    "number": 7653,
+    "properties": [
+        ["blamelist", ["asvitkine@chromium.org", "derat@chromium.org", "nirnimesh@chromium.org"], "Build"],
+        ["branch", "src", "Build"],
+        ["buildername", "WebKit Win (deps)(dbg)(2)", "Builder"],
+        ["buildnumber", 7653, "Build"],
+        ["got_revision", "104939", "Source"],
+        ["gtest_filter", null, "Factory"],
+        ["mastername", "chromium.webkit", "master.cfg"],
+        ["project", "", "Build"],
+        ["repository", "svn://svn-mirror.golo.chromium.org/chrome/trunk", "Build"],
+        ["revision", "104939", "Build"],
+        ["scheduler", "s1_chromium_dbg_dep", "Scheduler"],
+        ["slavename", "vm114-m1", "BuildSlave"]
+    ],
+    "reason": "downstream",
+    "results": 2,
+    "slave": "vm114-m1",
+    "sourceStamp": {
+        "branch": "src",
+        "changes": [{
+            "at": "Tue 11 Oct 2011 12:18:40",
+            "branch": "src",
+            "category": null,
+            "comments": "Disable prefs.PrefsTest.testGeolocationPref on win\n\nTBR=dennisjeffrey@chromium.org\nBUG=99865\nTEST=\n\nReview URL: http://codereview.chromium.org/8234007",
+            "files": [{
+                "name": "chrome/test/functional/PYAUTO_TESTS",
+                "url": null
+            }],
+            "number": 1397,
+            "project": "",
+            "properties": [],
+            "repository": "svn://svn-mirror.golo.chromium.org/chrome/trunk",
+            "rev": "104936",
+            "revision": "104936",
+            "revlink": "http://src.chromium.org/viewvc/chrome?view=rev&revision=104936",
+            "when": 1318360720,
+            "who": "nirnimesh@chromium.org"
+        }, {
+            "at": "Tue 11 Oct 2011 12:23:11",
+            "branch": "src",
+            "category": null,
+            "comments": "aura: Get rid of some unneeded stubs.\n\nMost of these are for dialogs that already had WebUI\nimplementations.\n\nBUG=99718\nTEST=built with use_aura=1\n\nReview URL: http://codereview.chromium.org/8218027",
+            "files": [{
+                "name": "chrome/browser/ui/login/login_prompt_ui.cc",
+                "url": null
+            }, {
+                "name": "chrome/browser/ui/views/stubs_aura.cc",
+                "url": null
+            }, {
+                "name": "chrome/chrome_browser.gypi",
+                "url": null
+            }, {
+                "name": "chrome/common/url_constants.cc",
+                "url": null
+            }, {
+                "name": "chrome/common/url_constants.h",
+                "url": null
+            }],
+            "number": 1398,
+            "project": "",
+            "properties": [],
+            "repository": "svn://svn-mirror.golo.chromium.org/chrome/trunk",
+            "rev": "104937",
+            "revision": "104937",
+            "revlink": "http://src.chromium.org/viewvc/chrome?view=rev&revision=104937",
+            "when": 1318360991,
+            "who": "derat@chromium.org"
+        }, {
+            "at": "Tue 11 Oct 2011 12:34:10",
+            "branch": "src",
+            "category": null,
+            "comments": "Add Windows manifest for views_examples.\n\nThis allows views_examples to use themed controls and fixes\na problem with combo box drop down menus not being shown.\n\nManifest file copied from chrome/app/chrome.exe.manifest.\n\nBUG=none\nTEST=manual\n\nReview URL: http://codereview.chromium.org/8227017",
+            "files": [{
+                "name": "views/examples/views_examples.exe.manifest",
+                "url": null
+            }, {
+                "name": "views/views.gyp",
+                "url": null
+            }],
+            "number": 1400,
+            "project": "",
+            "properties": [],
+            "repository": "svn://svn-mirror.golo.chromium.org/chrome/trunk",
+            "rev": "104939",
+            "revision": "104939",
+            "revlink": "http://src.chromium.org/viewvc/chrome?view=rev&revision=104939",
+            "when": 1318361650,
+            "who": "asvitkine@chromium.org"
+        }],
+        "hasPatch": false,
+        "project": "",
+        "repository": "svn://svn-mirror.golo.chromium.org/chrome/trunk",
+        "revision": "104939"
+    },
+    "steps": [{
+        "eta": null,
+        "expectations": [
+            ["output", 1444, 1444.0]
+        ],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [
+            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/svnkill/logs/stdio"]
+        ],
+        "name": "svnkill",
+        "results": [0, []],
+        "statistics": {},
+        "step_number": 0,
+        "text": ["svnkill"],
+        "times": [1318364210.0697701, 1318364210.463649],
+        "urls": {}
+    }, {
+        "eta": null,
+        "expectations": [
+            ["output", 2916, 2757.1580967830819]
+        ],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [
+            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/update_scripts/logs/stdio"]
+        ],
+        "name": "update_scripts",
+        "results": [0, []],
+        "statistics": {},
+        "step_number": 1,
+        "text": ["update_scripts"],
+        "times": [1318364210.464299, 1318364234.741575],
+        "urls": {}
+    }, {
+        "eta": null,
+        "expectations": [
+            ["output", 4544, 4543.9687499691299]
+        ],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [
+            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/taskkill/logs/stdio"]
+        ],
+        "name": "taskkill",
+        "results": [0, []],
+        "statistics": {},
+        "step_number": 2,
+        "text": ["taskkill"],
+        "times": [1318364234.742265, 1318364245.842006],
+        "urls": {}
+    }, {
+        "eta": null,
+        "expectations": [
+            ["output", 1019773, 22826.104572568838]
+        ],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [
+            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/update/logs/stdio"]
+        ],
+        "name": "update",
+        "results": [0, []],
+        "statistics": {},
+        "step_number": 3,
+        "text": ["update", "r104939"],
+        "times": [1318364245.843008, 1318366370.946759],
+        "urls": {}
+    }, {
+        "eta": null,
+        "expectations": [
+            ["output", 19829, 19620.437500003842]
+        ],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [
+            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/extract_build/logs/stdio"]
+        ],
+        "name": "extract_build",
+        "results": [1, []],
+        "statistics": {},
+        "step_number": 4,
+        "text": ["extract_build", "warnings"],
+        "times": [1318366370.94771, 1318366404.552783],
+        "urls": {}
+    }, {
+        "eta": null,
+        "expectations": [
+            ["output", 2685, 1320624.4817683753]
+        ],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [
+            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/webkit_tests/logs/stdio"]
+        ],
+        "name": "webkit_tests",
+        "results": [2, ["webkit_tests"]],
+        "statistics": {},
+        "step_number": 5,
+        "text": ["webkit_tests", "?? fixable", "(0 skipped)", "crashed or hung"],
+        "times": [1318366404.5537021, 1318366405.2564809],
+        "urls": {}
+    }, {
+        "eta": null,
+        "expectations": [
+            ["output", 3736, 606747.58321854263]
+        ],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [
+            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/archive_webkit_tests_results/logs/stdio"]
+        ],
+        "name": "archive_webkit_tests_results",
+        "results": [2, ["archive_webkit_tests_results"]],
+        "statistics": {},
+        "step_number": 6,
+        "text": ["archived webkit_tests results", "failed"],
+        "times": [1318366405.2573731, 1318366406.505815],
+        "urls": {
+            "layout test results": "http://build.chromium.org/buildbot/layout_test_results/WebKit_Win__deps__dbg__2_\r/0\rNone"
+        }
+    }, {
+        "eta": null,
+        "expectations": [
+            ["output", 2751, 124434.9266140602]
+        ],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [
+            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/webkit_gpu_tests/logs/stdio"]
+        ],
+        "name": "webkit_gpu_tests",
+        "results": [2, ["webkit_gpu_tests"]],
+        "statistics": {},
+        "step_number": 7,
+        "text": ["webkit_gpu_tests", "?? fixable", "(0 skipped)", "crashed or hung"],
+        "times": [1318366406.506711, 1318366407.179585],
+        "urls": {}
+    }, {
+        "eta": null,
+        "expectations": [
+            ["output", 3760, 35709.407800958375]
+        ],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [
+            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/archive_webkit_tests_gpu_results/logs/stdio"]
+        ],
+        "name": "archive_webkit_tests_gpu_results",
+        "results": [2, ["archive_webkit_tests_gpu_results"]],
+        "statistics": {},
+        "step_number": 8,
+        "text": ["archived webkit_tests gpu results", "failed"],
+        "times": [1318366407.1804891, 1318366408.071501],
+        "urls": {
+            "layout test gpu results": "http://build.chromium.org/buildbot/layout_test_results/WebKit_Win__deps__dbg__2__-_GPU\r/0\rNone"
+        }
+    }],
+    "text": ["failed", "webkit_tests", "archive_webkit_tests_results", "webkit_gpu_tests", "archive_webkit_tests_gpu_results"],
+    "times": [1318364210.066524, 1318366408.0732119]
+};
+
+var kExampleBuildInfoWithTaskKillWarning = {
+    "blame": ["asvitkine@chromium.org", "derat@chromium.org", "nirnimesh@chromium.org"],
+    "builderName": "WebKit Win (deps)(dbg)(2)",
+    "currentStep": null,
+    "eta": null,
+    "logs": [
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Win%20%28deps%29%28dbg%29%282%29/builds/7653/steps/svnkill/logs/stdio"],
+    ],
+    "number": 7653,
+    "properties": [
+        ["blamelist", ["asvitkine@chromium.org", "derat@chromium.org", "nirnimesh@chromium.org"], "Build"],
+        ["branch", "src", "Build"],
+        ["buildername", "WebKit Win (deps)(dbg)(2)", "Builder"],
+        ["buildnumber", 7653, "Build"],
+        ["got_revision", "104939", "Source"],
+        ["gtest_filter", null, "Factory"],
+        ["mastername", "chromium.webkit", "master.cfg"],
+        ["project", "", "Build"],
+        ["repository", "svn://svn-mirror.golo.chromium.org/chrome/trunk", "Build"],
+        ["revision", "104939", "Build"],
+        ["scheduler", "s1_chromium_dbg_dep", "Scheduler"],
+        ["slavename", "vm114-m1", "BuildSlave"]
+    ],
+    "reason": "downstream",
+    "results": 2,
+    "slave": "vm114-m1",
+    "sourceStamp": {
+        "branch": "src",
+        "changes": [{
+            "at": "Tue 11 Oct 2011 12:18:40",
+            "branch": "src",
+            "category": null,
+            "comments": "Disable prefs.PrefsTest.testGeolocationPref on win\n\nTBR=dennisjeffrey@chromium.org\nBUG=99865\nTEST=\n\nReview URL: http://codereview.chromium.org/8234007",
+            "files": [{
+                "name": "chrome/test/functional/PYAUTO_TESTS",
+                "url": null
+            }],
+            "number": 1397,
+            "project": "",
+            "properties": [],
+            "repository": "svn://svn-mirror.golo.chromium.org/chrome/trunk",
+            "rev": "104936",
+            "revision": "104936",
+            "revlink": "http://src.chromium.org/viewvc/chrome?view=rev&revision=104936",
+            "when": 1318360720,
+            "who": "nirnimesh@chromium.org"
+        }],
+        "hasPatch": false,
+        "project": "",
+        "repository": "svn://svn-mirror.golo.chromium.org/chrome/trunk",
+        "revision": "104939"
+    },
+    "steps": [{
+        "eta": null,
+        "expectations": [["output",1776,1534.0625014267862]],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [["stdio","http://build.chromium.org/p/chromium.webkitbuilders/XP%20Perf/builds/10268/steps/taskkill/logs/stdio"]],
+        "name": "taskkill",
+        "results": [1,[]],
+        "statistics": {},
+        "step_number": 2,
+        "text": ["taskkill","warning"],
+        "times": [1339438214.177362,1339438222.555572],
+        "urls": {}
+    }],
+    "text": ["failed", "webkit_tests", "archive_webkit_tests_results", "webkit_gpu_tests", "archive_webkit_tests_gpu_results"],
+    "times": [1318364210.066524, 1318366408.0732119]
+};
+
+
+var kExamplePerfBuilderStatusJSON =  {
+    "WebKit Linux": {
+        "basedir": "WebKit_Linux",
+        "cachedBuilds": [11459, 11460, 11461, 11462],
+        "category": "6webkit linux latest",
+        "currentBuilds": [11462],
+        "pendingBuilds": 0,
+        "slaves": ["vm124-m1"],
+        "state": "building"
+    },
+    "Mac10.6 Perf": {
+        "basedir": "Mac10_6_Perf",
+        "cachedBuilds": [11459, 11460, 11461, 11462],
+        "category": "6webkit linux latest",
+        "currentBuilds": [11461, 11462],
+        "pendingBuilds": 0,
+        "slaves": ["vm124-m1"],
+        "state": "building"
+    },
+};
+
+var kExamplePerfBuildInfoJSON = {
+    "blame": ["abarth@webkit.org"],
+    "builderName": "Mac10.6 Perf",
+    "changes": ["Files:\n Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js\n Tools/ChangeLog\nAt: Thu 04 Aug 2011 00:50:38\nChanged By: abarth@webkit.org\nComments: Fix types.  Sadly, main.js has no test coverage.  (I need to think\nabout how to test this part of the code.)\n\n* BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:Properties: \n\n\n", "Files:\n LayoutTests/ChangeLog\n LayoutTests/platform/chromium-mac/fast/box-shadow/inset-box-shadows-expected.png\n LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.png\n LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.png\n LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png\n LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png\nAt: Thu 04 Aug 2011 00:50:38\nChanged By: abarth@webkit.org\nComments: Update baselines after <http://trac.webkit.org/changeset/92340>.\n\n* platform/chromium-mac/fast/box-shadow/inset-box-shadows-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png:Properties: \n\n\n"],
+    "currentStep": null,
+    "eta": null,
+    "logs": [
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/update_scripts/logs/stdio"],
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/update/logs/stdio"],
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/compile/logs/stdio"],
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/test_shell_tests/logs/stdio"],
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/webkit_unit_tests/logs/stdio"],
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/webkit_tests/logs/stdio"],
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/archive_webkit_tests_results/logs/stdio"],
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/webkit_gpu_tests/logs/stdio"],
+        ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/archive_webkit_tests_gpu_results/logs/stdio"]
+    ],
+    "number": 11461,
+    "properties": [
+        ["blamelist", ["abarth@webkit.org"], "Build"],
+        ["branch", "trunk", "Build"],
+        ["buildername", "WebKit Linux", "Build"],
+        ["buildnumber", 11461, "Build"],
+        ["got_revision", "95395", "Source"],
+        ["got_webkit_revision", "92358", "Source"],
+        ["gtest_filter", null, "Factory"],
+        ["mastername", "chromium.webkit", "master.cfg"],
+        ["revision", "92358", "Build"],
+        ["scheduler", "s6_webkit_rel", "Scheduler"],
+        ["slavename", "vm124-m1", "BuildSlave"]
+    ],
+    "reason": "",
+    "requests": [{
+        "builderName": "WebKit Linux",
+        "builds": [11461],
+        "source": {
+            "branch": "trunk",
+            "changes": [{
+                "branch": "trunk",
+                "category": null,
+                "comments": "Fix types.  Sadly, main.js has no test coverage.  (I need to think\nabout how to test this part of the code.)\n\n* BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:",
+                "files": ["Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js", "Tools/ChangeLog"],
+                "number": 43707,
+                "properties": [],
+                "repository": "",
+                "revision": "92357",
+                "revlink": "http://trac.webkit.org/changeset/92357",
+                "when": 1312444238.855081,
+                "who": "abarth@webkit.org"
+            }, {
+                "branch": "trunk",
+                "category": null,
+                "comments": "Update baselines after <http://trac.webkit.org/changeset/92340>.\n\n* platform/chromium-mac/fast/box-shadow/inset-box-shadows-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png:",
+                "files": ["LayoutTests/ChangeLog", "LayoutTests/platform/chromium-mac/fast/box-shadow/inset-box-shadows-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png"],
+                "number": 43708,
+                "properties": [],
+                "repository": "",
+                "revision": "92358",
+                "revlink": "http://trac.webkit.org/changeset/92358",
+                "when": 1312444238.855538,
+                "who": "abarth@webkit.org"
+            }],
+            "hasPatch": false,
+            "revision": "92358"
+        },
+        "submittedAt": 1312444298.989818
+    }],
+    "results": 2,
+    "slave": "vm124-m1",
+    "sourceStamp": {
+        "branch": "trunk",
+        "changes": [{
+            "branch": "trunk",
+            "category": null,
+            "comments": "Fix types.  Sadly, main.js has no test coverage.  (I need to think\nabout how to test this part of the code.)\n\n* BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:",
+            "files": ["Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js", "Tools/ChangeLog"],
+            "number": 43707,
+            "properties": [],
+            "repository": "",
+            "revision": "92357",
+            "revlink": "http://trac.webkit.org/changeset/92357",
+            "when": 1312444238.855081,
+            "who": "abarth@webkit.org"
+        }, {
+            "branch": "trunk",
+            "category": null,
+            "comments": "Update baselines after <http://trac.webkit.org/changeset/92340>.\n\n* platform/chromium-mac/fast/box-shadow/inset-box-shadows-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png:\n* platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png:",
+            "files": ["LayoutTests/ChangeLog", "LayoutTests/platform/chromium-mac/fast/box-shadow/inset-box-shadows-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png", "LayoutTests/platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png"],
+            "number": 43708,
+            "properties": [],
+            "repository": "",
+            "revision": "92358",
+            "revlink": "http://trac.webkit.org/changeset/92358",
+            "when": 1312444238.855538,
+            "who": "abarth@webkit.org"
+        }],
+        "hasPatch": false,
+        "revision": "92358"
+    },
+    "steps": [{
+        "eta": null,
+        "expectations": [
+            ["output", 2297, 2300.6571014083784]
+        ],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [
+            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/update_scripts/logs/stdio"]
+        ],
+        "name": "update_scripts",
+        "results": [0, []],
+        "statistics": {},
+        "step_number": 0,
+        "text": ["update_scripts"],
+        "times": [1312444299.102834, 1312444309.270324],
+        "urls": {}
+    }, {
+        "eta": null,
+        "expectations": [
+            ["output", 20453, 17580.5002389645]
+        ],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [
+            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/update/logs/stdio"]
+        ],
+        "name": "update",
+        "results": [0, []],
+        "statistics": {},
+        "step_number": 1,
+        "text": ["update", "r95395", "webkit r92358"],
+        "times": [1312444309.270763, 1312444398.468139],
+        "urls": {}
+    }, {
+        "eta": null,
+        "expectations": [
+            ["output", 17316, 2652.4850499589456]
+        ],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [
+            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/compile/logs/stdio"]
+        ],
+        "name": "compile",
+        "results": [0, []],
+        "statistics": {},
+        "step_number": 2,
+        "text": ["compile"],
+        "times": [1312444398.46855, 1312444441.68838],
+        "urls": {}
+    }, {
+        "eta": null,
+        "expectations": [
+            ["output", 91980, 92002.12628325251]
+        ],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [
+            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/test_shell_tests/logs/stdio"]
+        ],
+        "name": "test_shell_tests",
+        "results": [0, []],
+        "statistics": {},
+        "step_number": 3,
+        "text": ["test_shell_tests", "1 disabled", "2 flaky"],
+        "times": [1312444441.688756, 1312444451.74908],
+        "urls": {}
+    }, {
+        "eta": null,
+        "expectations": [
+            ["output", 20772, 20772.638503443086]
+        ],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [
+            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/webkit_unit_tests/logs/stdio"]
+        ],
+        "name": "webkit_unit_tests",
+        "results": [0, []],
+        "statistics": {},
+        "step_number": 4,
+        "text": ["webkit_unit_tests", "1 disabled"],
+        "times": [1312444451.749574, 1312444452.306143],
+        "urls": {}
+    }, {
+        "eta": null,
+        "expectations": [
+            ["output", 2477406, 2498915.6146275494]
+        ],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [
+            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/webkit_tests/logs/stdio"]
+        ],
+        "name": "webkit_tests",
+        "results": [2, ["webkit_tests"]],
+        "statistics": {},
+        "step_number": 5,
+        "text": ["webkit_tests", "2014 fixable", "(370 skipped)", "failed 1", "<div class=\"BuildResultInfo\">", "<a href=\"http://test-results.appspot.com/dashboards/flakiness_dashboard.html#master=ChromiumWebkit&tests=fast/box-shadow/box-shadow-clipped-slices.html\">", "<abbr title=\"fast/box-shadow/box-shadow-clipped-slices.html\">box-shadow-clipped-slices.html</abbr>", "</a>", "</div>"],
+        "times": [1312444452.306695, 1312444768.888266],
+        "urls": {}
+    }, {
+        "eta": null,
+        "expectations": [
+            ["output", 2668845, 2672746.372363254]
+        ],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [
+            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/archive_webkit_tests_results/logs/stdio"]
+        ],
+        "name": "dummy_perf_test_1",
+        "results": [0, []],
+        "statistics": {},
+        "step_number": 6,
+        "text": ["archived webkit_tests results"],
+        "times": [1312444768.888746, 1312444781.444399],
+        "urls": {
+            "results": "http://dummyurl1"
+        }
+    }, {
+        "eta": null,
+        "expectations": [
+            ["output", 210958, 208138.4965182993]
+        ],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [
+            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/webkit_gpu_tests/logs/stdio"]
+        ],
+        "name": "webkit_gpu_tests",
+        "results": [2, ["webkit_gpu_tests"]],
+        "statistics": {},
+        "step_number": 7,
+        "text": ["webkit_gpu_tests", "148 fixable", "(24 skipped)", "failed 1", "<div class=\"BuildResultInfo\">", "<a href=\"http://test-results.appspot.com/dashboards/flakiness_dashboard.html#master=ChromiumWebkit&tests=compositing/scaling/tiled-layer-recursion.html\">", "<abbr title=\"compositing/scaling/tiled-layer-recursion.html\">tiled-layer-recursion.html</abbr>", "</a>", "</div>"],
+        "times": [1312444781.444903, 1312444966.856074],
+        "urls": {}
+    }, {
+        "eta": null,
+        "expectations": [
+            ["output", 148825, 147822.1074277072]
+        ],
+        "isFinished": true,
+        "isStarted": true,
+        "logs": [
+            ["stdio", "http://build.chromium.org/p/chromium.webkitbuilders/WebKit%20Linux/builds/11461/steps/archive_webkit_tests_gpu_results/logs/stdio"]
+        ],
+        "name": "dummy_perf_test_2",
+        "results": [0, []],
+        "statistics": {},
+        "step_number": 8,
+        "text": ["archived webkit_tests gpu results"],
+        "times": [1312444966.856575, 1312444970.458655],
+        "urls": {
+            "results": "http://dummyurl2"
+        }
+    }],
+    "text": ["failed", "webkit_tests", "webkit_gpu_tests"],
+    "times": [1312444299.10216, 1312444970.459138]
+};
+
+test("buildersFailing", 3, function() {
+    var simulator = new NetworkSimulator();
+    builders.clearBuildInfoCache();
+
+    var failingBuildInfoJSON = JSON.parse(JSON.stringify(kExampleBuildInfoJSON));
+    failingBuildInfoJSON.number = 11460;
+    failingBuildInfoJSON.steps[2].results[0] = 1;
+
+    var requestedURLs = [];
+    simulator.get = function(url, callback)
+    {
+        requestedURLs.push(url);
+        simulator.scheduleCallback(function() {
+            if (/\/json\/builders$/.exec(url))
+                callback(kExampleBuilderStatusJSON);
+            else if (/WebKit%20Linux/.exec(url))
+                callback(kExampleBuildInfoJSON);
+            else if (/WebKit%20Mac10\.6/.exec(url))
+                callback(failingBuildInfoJSON);
+            else if (/WebKit%20ASAN/.exec(url))
+                callback(failingBuildInfoJSON);
+            else {
+                ok(false, "Unexpected URL: " + url);
+                callback();
+            }
+        });
+    };
+
+    simulator.runTest(function() {
+        builders.buildersFailingNonLayoutTests(function(builderNameList) {
+            deepEqual(builderNameList, {
+                "WebKit Linux": [
+                    "webkit_gpu_tests"
+                ],
+                "WebKit Mac10.6": [
+                    "webkit_gpu_tests"
+                ]
+            });
+        });
+    });
+
+    deepEqual(requestedURLs, [
+      "http://build.chromium.org/p/chromium.webkit/json/builders",
+      "http://build.chromium.org/p/chromium.webkit/json/builders/WebKit%20Linux/builds/11461",
+      "http://build.chromium.org/p/chromium.webkit/json/builders/WebKit%20Mac10.6/builds/11460",
+    ]);
+});
+
+test("buildersFailing (run-webkit-tests crash)", 3, function() {
+    var simulator = new NetworkSimulator();
+    builders.clearBuildInfoCache();
+
+    var builderStatusJSON = JSON.parse(JSON.stringify(kExampleBuilderStatusJSON));
+    delete builderStatusJSON['WebKit Mac10.6'];
+    builderStatusJSON['WebKit Linux'].cachedBuilds = [21460];
+    builderStatusJSON['WebKit Linux'].currentBuilds = [];
+
+    var failingBuildInfoJSON = JSON.parse(JSON.stringify(kExampleBuildInfoWithWebKitTestCrashJSON));
+    failingBuildInfoJSON.number = 21460;
+
+    var requestedURLs = [];
+    simulator.get = function(url, callback)
+    {
+        requestedURLs.push(url);
+        simulator.scheduleCallback(function() {
+            if (/\/json\/builders$/.exec(url))
+                callback(builderStatusJSON);
+            else if (/WebKit%20Linux/.exec(url))
+                callback(failingBuildInfoJSON);
+            else {
+                ok(false, "Unexpected URL: " + url);
+                callback();
+            }
+        });
+    };
+
+    simulator.runTest(function() {
+        builders.buildersFailingNonLayoutTests(function(builderNameList) {
+            deepEqual(builderNameList, {
+                "WebKit Linux": [
+                    "webkit_tests",
+                    "archive_webkit_tests_results",
+                    "webkit_gpu_tests",
+                    "archive_webkit_tests_gpu_results"
+                ]
+            });
+        });
+    });
+
+    deepEqual(requestedURLs, [
+      "http://build.chromium.org/p/chromium.webkit/json/builders",
+      "http://build.chromium.org/p/chromium.webkit/json/builders/WebKit%20Linux/builds/21460",
+    ]);
+});
+
+test("buildersFailing (taskkill warning)", 3, function() {
+    var simulator = new NetworkSimulator();
+    builders.clearBuildInfoCache();
+
+    var builderStatusJSON = JSON.parse(JSON.stringify(kExampleBuilderStatusJSON));
+    delete builderStatusJSON['WebKit Mac10.6'];
+    builderStatusJSON['WebKit Linux'].cachedBuilds = [21460];
+    builderStatusJSON['WebKit Linux'].currentBuilds = [];
+
+    var failingBuildInfoJSON = JSON.parse(JSON.stringify(kExampleBuildInfoWithTaskKillWarning));
+    failingBuildInfoJSON.number = 21460;
+
+    var requestedURLs = [];
+    simulator.get = function(url, callback)
+    {
+        requestedURLs.push(url);
+        simulator.scheduleCallback(function() {
+            if (/\/json\/builders$/.exec(url))
+                callback(builderStatusJSON);
+            else if (/WebKit%20Linux/.exec(url))
+                callback(failingBuildInfoJSON);
+            else {
+                ok(false, "Unexpected URL: " + url);
+                callback();
+            }
+        });
+    };
+
+    simulator.runTest(function() {
+        builders.buildersFailingNonLayoutTests(function(builderNameList) {
+            deepEqual(builderNameList, {});
+        });
+    });
+
+    deepEqual(requestedURLs, [
+      "http://build.chromium.org/p/chromium.webkit/json/builders",
+      "http://build.chromium.org/p/chromium.webkit/json/builders/WebKit%20Linux/builds/21460",
+    ]);
+});
+
+test("builders.perfBuilders", 2, function() {
+    var simulator = new NetworkSimulator();
+    builders.clearBuildInfoCache();
+
+    var builderStatusJSON = JSON.parse(JSON.stringify(kExamplePerfBuilderStatusJSON));
+    var failingBuildInfoJSON = JSON.parse(JSON.stringify(kExamplePerfBuildInfoJSON));
+
+    var requestedURLs = [];
+    simulator.get = function(url, callback)
+    {
+        requestedURLs.push(url);
+        simulator.scheduleCallback(function() {
+            if (/\/json\/builders$/.exec(url))
+                callback(builderStatusJSON);
+            else if (/Mac10.6%20Perf/.exec(url))
+                callback(failingBuildInfoJSON);
+            else
+                callback();
+        });
+    };
+
+    simulator.runTest(function() {
+        builders.perfBuilders(function(builderNameList) {
+            deepEqual(builderNameList, {
+                "dummy_perf_test_1": [
+                    {
+                        "builder": "Mac10.6 Perf",
+                        "url": "http://dummyurl1"
+                    }
+                ],
+                "dummy_perf_test_2": [
+                    {
+                        "builder": "Mac10.6 Perf",
+                        "url": "http://dummyurl2"
+                    }
+                ]
+            });
+        });
+    });
+});
+
+})();
diff --git a/Tools/GardeningServer/scripts/checkout.js b/Tools/GardeningServer/scripts/checkout.js
new file mode 100644
index 0000000..ae9d7fa
--- /dev/null
+++ b/Tools/GardeningServer/scripts/checkout.js
@@ -0,0 +1,95 @@
+/*
+ * Copyright (C) 2011 Google Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+var checkout = checkout || {};
+
+(function() {
+
+var g_haveSeenCheckoutAvailable = false;
+
+function callIfCheckoutAvailable(callback, checkoutUnavailable)
+{
+    if (g_haveSeenCheckoutAvailable) {
+        callback();
+        return;
+    }
+    checkout.isAvailable(function(isAvailable) {
+        if (isAvailable) {
+            g_haveSeenCheckoutAvailable = true;
+            callback();
+            return;
+        }
+        if (checkoutUnavailable)
+            checkoutUnavailable();
+    });
+}
+
+checkout.isAvailable = function(callback)
+{
+    net.ajax({
+        url: '/ping',
+        success: function() {
+            callback(true);
+        },
+        error: function() {
+            callback(false);
+        },
+    });
+};
+
+checkout.lastBlinkRollRevision = function(callback, checkoutUnavailable)
+{
+    callIfCheckoutAvailable(function() {
+        net.get('/lastroll', callback);
+    }, checkoutUnavailable);
+}
+
+checkout.rollout = function(revision, reason, callback, checkoutUnavailable)
+{
+    callIfCheckoutAvailable(function() {
+        net.post('/rollout?' + $.param({
+            'revision': revision,
+            'reason': reason
+        }), function() {
+            callback();
+        });
+    }, checkoutUnavailable);
+};
+
+checkout.rebaseline = function(failureInfoList, callback, progressCallback, checkoutUnavailable)
+{
+    callIfCheckoutAvailable(function() {
+        var tests = {};
+        for (var i = 0; i < failureInfoList.length; i++) {
+            var failureInfo = failureInfoList[i];
+            tests[failureInfo.testName] = tests[failureInfo.testName] || {};
+            tests[failureInfo.testName][failureInfo.builderName] = 
+                base.uniquifyArray(base.flattenArray(failureInfo.failureTypeList.map(results.failureTypeToExtensionList)));
+        }
+        net.post('/rebaselineall', JSON.stringify(tests), function() { callback() });
+    }, checkoutUnavailable);
+};
+
+})();
diff --git a/Tools/GardeningServer/scripts/checkout_unittests.js b/Tools/GardeningServer/scripts/checkout_unittests.js
new file mode 100644
index 0000000..9232bbc
--- /dev/null
+++ b/Tools/GardeningServer/scripts/checkout_unittests.js
@@ -0,0 +1,115 @@
+/*
+ * Copyright (C) 2011 Google Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+(function () {
+
+module("checkout");
+
+test("lastBlinkRollRevision", 0, function() {
+    var simulator = new NetworkSimulator();
+
+    var requests = [];
+    simulator.get = function(url, callback)
+    {
+        requests.push([url]);
+        simulator.scheduleCallback(callback);
+    };
+    simulator.ajax = function(options)
+    {
+        if (options.url.indexOf('/ping') == -1)
+            ok(false, 'Received non-ping ajax request: ' + options.url);
+        simulator.scheduleCallback(options.success);
+    };
+
+    simulator.runTest(function() {
+        checkout.lastBlinkRollRevision(function() {
+            ok(true);
+        }, function() {
+            ok(false, 'Checkout should be available.');
+        });
+    });
+
+    deepEqual(requests, [
+        ["/lastroll"]
+    ]);
+});
+
+test("rebaseline", 3, function() {
+    var simulator = new NetworkSimulator();
+
+    var requests = [];
+    simulator.post = function(url, body, callback)
+    {
+        requests.push([url, body]);
+        simulator.scheduleCallback(callback);
+    };
+    simulator.ajax = function(options)
+    {
+        if (options.url.indexOf('/ping') == -1)
+            ok(false, 'Received non-ping ajax request: ' + options.url);
+        simulator.scheduleCallback(options.success);
+    };
+
+    var kExpectedTestNameProgressStack = [
+        'fast/test.html',
+        'another/test.svg',
+        'another/test.svg', // This is the first one.
+    ];
+
+    simulator.runTest(function() {
+        checkout.rebaseline([{
+            'builderName': 'WebKit Linux',
+            'testName': 'another/test.svg',
+            'failureTypeList': ['IMAGE'],
+        }, {
+            'builderName': 'WebKit Mac10.6',
+            'testName': 'another/test.svg',
+            'failureTypeList': ['IMAGE', 'TEXT', 'IMAGE+TEXT'],
+        }, {
+            'builderName': 'Webkit Win7',
+            'testName': 'fast/test.html',
+            'failureTypeList': ['IMAGE+TEXT'],
+        }], function() {
+            ok(true);
+        }, function(failureInfo) {
+            equals(failureInfo.testName, kExpectedTestNameProgressStack.pop());
+        }, function() {
+            ok(false, 'Checkout should be available.');
+        });
+    });
+
+    deepEqual(requests, [
+        ["/rebaselineall",
+         JSON.stringify({
+             "another/test.svg": {
+                 "WebKit Linux": ["png"], 
+                 "WebKit Mac10.6": ["png","txt"]},
+             "fast/test.html": {
+                 "Webkit Win7": ["txt","png"]
+             }})]
+    ]);
+});
+
+})();
diff --git a/Tools/GardeningServer/scripts/config.js b/Tools/GardeningServer/scripts/config.js
new file mode 100644
index 0000000..ddfb1c6
--- /dev/null
+++ b/Tools/GardeningServer/scripts/config.js
@@ -0,0 +1,118 @@
+/*
+ * Copyright (C) 2011 Google Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+var config = config || {};
+
+(function() {
+
+config.kBuildNumberLimit = 20;
+
+config.kPlatforms = {
+    'chromium' : {
+        label : 'Chromium',
+        buildConsoleURL: 'http://build.chromium.org/p/chromium.webkit',
+        layoutTestResultsURL: 'http://build.chromium.org/f/chromium/layout_test_results',
+        waterfallURL: 'http://build.chromium.org/p/chromium.webkit/waterfall',
+        builders: {
+            'WebKit XP': {version: 'xp'},
+            'WebKit Win7': {version: 'win7'},
+            'WebKit Win7 (dbg)(1)': {version: 'win7', debug: true},
+            'WebKit Win7 (dbg)(2)': {version: 'win7', debug: true},
+            'WebKit Linux': {version: 'lucid', is64bit: true},
+            'WebKit Linux 32': {version: 'lucid'},
+            'WebKit Linux (dbg)': {version: 'lucid', is64bit: true, debug: true},
+            'WebKit Mac10.6': {version: 'snowleopard'},
+            'WebKit Mac10.6 (dbg)': {version: 'snowleopard', debug: true},
+            'WebKit Mac10.7': {version: 'lion'},
+            'WebKit Mac10.7 (dbg)': {version: 'lion', debug: true},
+            'WebKit Mac10.8': {version: 'mountainlion'},
+        },
+        haveBuilderAccumulatedResults : true,
+        useDirectoryListingForOldBuilds: true,
+        useFlakinessDashboard: true,
+        resultsDirectoryNameFromBuilderName: function(builderName) {
+            return base.underscoredBuilderName(builderName);
+        },
+        resultsDirectoryForBuildNumber: function(buildNumber, revision) {
+            return buildNumber;
+        },
+        _builderApplies: function(builderName) {
+            // FIXME: Should garden-o-matic show these?
+            // WebKit Android and ASAN are red all the time.
+            // Remove this function entirely once they are better supported.
+            return builderName.indexOf('GPU') == -1 &&
+                   builderName.indexOf('ASAN') == -1 &&
+                   builderName.indexOf('WebKit (Content Shell) Android') == -1 &&
+                   builderName.indexOf('WebKit Android') == -1;
+        },
+    },
+};
+
+config.currentPlatform = 'chromium';
+config.kBlinkSvnURL = 'svn://svn.chromium.org/blink/trunk';
+config.kBlinkRevisionURL = 'http://src.chromium.org/viewvc/blink';
+config.kSvnLogURL = 'http://build.chromium.org/cgi-bin/svn-log';
+config.kNumberOfRecentCommits = 50;
+
+config.kBugzillaURL = 'https://bugs.webkit.org';
+
+config.kRevisionAttr = 'data-revision';
+config.kTestNameAttr = 'data-test-name';
+config.kBuilderNameAttr = 'data-builder-name';
+config.kFailureCountAttr = 'data-failure-count';
+config.kFailureTypesAttr = 'data-failure-types';
+config.kInfobarTypeAttr = 'data-infobar-type';
+
+var kTenMinutesInMilliseconds = 10 * 60 * 1000;
+config.kUpdateFrequency = kTenMinutesInMilliseconds;
+config.kRelativeTimeUpdateFrequency = 1000 * 60;
+
+config.kExperimentalFeatures = window.location.search.search('enableExperiments=1') != -1;
+
+config.currentPlatform = base.getURLParameter('platform') || 'chromium';
+
+// FIXME: We should add a way to restrict the results to a subset of the builders
+// (or maybe just a single builder) in the UI as well as via an URL parameter.
+config.currentBuilder = base.getURLParameter('builder');
+
+config.currentBuilders = function() {
+    var current_builders = {};
+    if (config.currentBuilder) {
+        current_builders[config.currentBuilder] = config.kPlatforms[config.currentPlatform].builders[config.currentBuilder];
+        return current_builders;
+    } else {
+        return config.kPlatforms[config.currentPlatform].builders;
+    }
+};
+
+config.builderApplies = function(builderName) {
+    if (config.currentBuilder)
+        return builderName == config.currentBuilder;
+    return config.kPlatforms[config.currentPlatform]._builderApplies(builderName);
+};
+
+config.useLocalResults = Boolean(base.getURLParameter('useLocalResults')) || false;
+
+})();
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js b/Tools/GardeningServer/scripts/controllers.js
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js
rename to Tools/GardeningServer/scripts/controllers.js
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers/rebaseline.js b/Tools/GardeningServer/scripts/controllers/rebaseline.js
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers/rebaseline.js
rename to Tools/GardeningServer/scripts/controllers/rebaseline.js
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers_unittests.js b/Tools/GardeningServer/scripts/controllers_unittests.js
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers_unittests.js
rename to Tools/GardeningServer/scripts/controllers_unittests.js
diff --git a/Tools/GardeningServer/scripts/garden-o-matic.js b/Tools/GardeningServer/scripts/garden-o-matic.js
new file mode 100644
index 0000000..d325f6c
--- /dev/null
+++ b/Tools/GardeningServer/scripts/garden-o-matic.js
@@ -0,0 +1,157 @@
+/*
+ * Copyright (C) 2011 Google Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+(function() {
+
+var g_info = null;
+var g_revisionHint = null;
+
+var g_updateTimerId = 0;
+var g_buildersFailing = null;
+
+var g_unexpectedFailuresController = null;
+var g_failuresController = null;
+
+var g_nonLayoutTestFailureBuilders = null;
+
+function updatePartyTime()
+{
+    if (!g_unexpectedFailuresController.length() && !g_nonLayoutTestFailureBuilders.hasFailures())
+        $('#onebar').addClass('partytime');
+    else
+        $('#onebar').removeClass('partytime');
+}
+
+function update()
+{
+    if (g_revisionHint)
+        g_revisionHint.dismiss();
+
+    var gtestIframe = document.querySelector('#chromium-gtests iframe');
+    if (gtestIframe)
+        gtestIframe.src = gtestIframe.src;
+
+    // FIXME: This should be a button with a progress element.
+    var numberOfTestsAnalyzed = 0;
+    var updating = new ui.notifications.Info('Loading commit data ...');
+
+    g_info.add(updating);
+
+    builders.buildersFailingNonLayoutTests(function(failuresList) {
+        g_nonLayoutTestFailureBuilders.update(failuresList);
+        updatePartyTime();
+    });
+
+    base.callInParallel([model.updateRecentCommits, model.updateResultsByBuilder], function() {
+        if (g_failuresController)
+            g_failuresController.update();
+
+        updating.update('Analyzing test failures ...');
+
+        model.analyzeUnexpectedFailures(function(failureAnalysis) {
+            updating.update('Analyzing test failures ... ' + ++numberOfTestsAnalyzed + ' tests analyzed.');
+            g_unexpectedFailuresController.update(failureAnalysis);
+        }, function() {
+            updatePartyTime();
+            g_unexpectedFailuresController.purge();
+
+            Object.keys(config.currentBuilders()).forEach(function(builderName) {
+                if (!model.state.resultsByBuilder[builderName])
+                    g_info.add(new ui.notifications.Info('Could not find test results for ' + builderName + ' in the last ' + config.kBuildNumberLimit + ' runs.'));            
+            });
+
+            updating.dismiss();
+
+            g_revisionHint = new ui.notifications.Info('');
+            
+            var latestRevisionSpan = document.createElement('span');
+            latestRevisionSpan.appendChild(document.createTextNode('Latest revision processed by every bot: '));
+            
+            var latestRevision = model.latestRevisionWithNoBuildersInFlight();
+            latestRevisionSpan.appendChild(base.createLinkNode(trac.changesetURL(latestRevision), latestRevision));
+            
+            var totRevision = model.latestRevision();
+            latestRevisionSpan.appendChild(document.createTextNode(', trunk is at '));
+            latestRevisionSpan.appendChild(base.createLinkNode(trac.changesetURL(totRevision), totRevision));
+
+            checkout.lastBlinkRollRevision(function(revision) {
+                latestRevisionSpan.appendChild(document.createTextNode(', last roll is to '));
+                latestRevisionSpan.appendChild(base.createLinkNode(trac.changesetURL(totRevision), revision));
+            }, function() {});
+            
+            g_revisionHint.updateWithNode(latestRevisionSpan);
+            
+            g_info.add(g_revisionHint);
+        });
+    });
+}
+
+$(document).ready(function() {
+    g_updateTimerId = window.setInterval(update, config.kUpdateFrequency);
+
+    pixelzoomer.installEventListeners();
+
+    onebar = new ui.onebar();
+    onebar.attach();
+
+    // FIXME: This doesn't belong here.
+    var onebarController = {
+        showResults: function(resultsView)
+        {
+            var resultsContainer = onebar.results();
+            $(resultsContainer).empty().append(resultsView);
+            onebar.select('results');
+        }
+    };
+
+    var unexpectedFailuresView = new ui.notifications.Stream();
+    g_unexpectedFailuresController = new controllers.UnexpectedFailures(model.state, unexpectedFailuresView, onebarController);
+
+    g_info = new ui.notifications.Stream();
+    g_nonLayoutTestFailureBuilders = new controllers.FailingBuilders(g_info, 'Non-layout test failures');
+
+    // FIXME: This should be an Action object.
+    var updateButton = document.body.insertBefore(document.createElement('button'), document.body.firstChild);
+    updateButton.addEventListener("click", update);
+    updateButton.textContent = 'update';
+
+    var unexpected = onebar.unexpected();
+    unexpected.appendChild(updateButton);
+    unexpected.appendChild(g_info);
+    unexpected.appendChild(unexpectedFailuresView);
+
+    var expected = onebar.expected();
+    if (expected) {
+        var failuresView = new ui.failures.List();
+        g_failuresController = new controllers.ExpectedFailures(model.state, failuresView, onebarController);
+        expected.appendChild(failuresView);
+    }
+
+    onebar.perf().appendChild(new ui.perf.View());
+
+    update();
+});
+
+})();
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/model.js b/Tools/GardeningServer/scripts/model.js
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/model.js
rename to Tools/GardeningServer/scripts/model.js
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/model_unittests.js b/Tools/GardeningServer/scripts/model_unittests.js
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/model_unittests.js
rename to Tools/GardeningServer/scripts/model_unittests.js
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/net.js b/Tools/GardeningServer/scripts/net.js
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/net.js
rename to Tools/GardeningServer/scripts/net.js
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/net_unittests.js b/Tools/GardeningServer/scripts/net_unittests.js
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/net_unittests.js
rename to Tools/GardeningServer/scripts/net_unittests.js
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/pixelzoomer.js b/Tools/GardeningServer/scripts/pixelzoomer.js
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/pixelzoomer.js
rename to Tools/GardeningServer/scripts/pixelzoomer.js
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results.js b/Tools/GardeningServer/scripts/results.js
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results.js
rename to Tools/GardeningServer/scripts/results.js
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results_unittests.js b/Tools/GardeningServer/scripts/results_unittests.js
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/results_unittests.js
rename to Tools/GardeningServer/scripts/results_unittests.js
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/summary-mock.js b/Tools/GardeningServer/scripts/summary-mock.js
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/summary-mock.js
rename to Tools/GardeningServer/scripts/summary-mock.js
diff --git a/Tools/GardeningServer/scripts/svn-log.js b/Tools/GardeningServer/scripts/svn-log.js
new file mode 100644
index 0000000..1ef6697
--- /dev/null
+++ b/Tools/GardeningServer/scripts/svn-log.js
@@ -0,0 +1,113 @@
+/*
+ * Copyright (C) 2011 Apple Inc. All rights reserved.
+ * Copyright (C) 2012 Google Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+var trac = trac || {};
+
+(function() {
+
+function findUsingRegExp(string, regexp)
+{
+    var match = regexp.exec(string);
+    if (match)
+        return match[1];
+    return null;
+}
+
+function findReviewer(message)
+{
+    var regexp = /R=([^.]+)/;
+    return findUsingRegExp(message, regexp);
+}
+
+function findBugID(message)
+{
+    var regexp = /BUG=(\d+)/;
+    var bugID = parseInt(findUsingRegExp(message, regexp), 10);
+    return isNaN(bugID) ? 0 : bugID;
+
+}
+
+function parseCommitMessage(message) {
+    var lines = message.split('\n');
+    var title = lines.shift();
+    var summary = lines.join('\n').trim();
+    return {
+        title: title,
+        summary: summary,
+        bugID: findBugID(summary),
+        reviewer: findReviewer(summary),
+    }
+}
+
+// FIXME: Consider exposing this method for unit testing.
+function parseCommitData(responseXML)
+{
+    var commits = Array.prototype.map.call(responseXML.getElementsByTagName('logentry'), function(logentry) {
+        var author = logentry.getElementsByTagName('author')[0].textContent;
+        var time = logentry.getElementsByTagName('date')[0].textContent;
+
+        // FIXME: This isn't a very high-fidelity reproduction of the commit message,
+        // but it's good enough for our purposes.
+        var message = parseCommitMessage(logentry.getElementsByTagName('msg')[0].textContent);
+
+        return {
+            'revision': logentry.getAttribute('revision'),
+            'title': message.title,
+            'time': time,
+            'summary': message.title,
+            'author': author,
+            'reviewer': message.reviewer,
+            'bugID': message.bugID,
+            'message': message.summary,
+            'revertedRevision': undefined,
+        };
+    });
+    return commits;
+}
+
+trac.changesetURL = function(revision)
+{
+    var queryParameters = {
+        view: 'rev',
+        revision: revision,
+    };
+    return config.kBlinkRevisionURL + '?' + $.param(queryParameters);
+};
+
+trac.recentCommitData = function(path, limit, callback)
+{
+    net.get('/svnlog', function(commitData) {
+        callback(parseCommitData(commitData));
+    });
+};
+
+trac.commitDataForRevisionRange = function(path, startRevision, endRevision, callback)
+{
+    var key = [path, startRevision, endRevision].join('\n');
+    g_cache.get(key, callback);
+};
+
+})();
diff --git a/Tools/GardeningServer/scripts/svn-log_unittests.js b/Tools/GardeningServer/scripts/svn-log_unittests.js
new file mode 100644
index 0000000..1aee6cb
--- /dev/null
+++ b/Tools/GardeningServer/scripts/svn-log_unittests.js
@@ -0,0 +1,137 @@
+/*
+ * Copyright (C) 2011 Google Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+(function () {
+
+module("svn-log");
+
+var kExampleCommitDataXML =
+    '<?xml version="1.0"?>\n' +
+    '<log>\n' +
+    '<logentry\n' +
+    '   revision="147744">\n' +
+    '<author>tkent@chromium.org</author>\n' +
+    '<date>2013-04-06T13:00:08.314281Z</date>\n' +
+    '<msg>Revert 147740 "Remove the ENABLE_QUOTA compile-time flag."\n' +
+    '\n' +
+    '&gt; Remove the ENABLE_QUOTA compile-time flag.\n' +
+    '&gt; \n' +
+    '&gt; This patch drops the ~20 occurances of \'#IFDEF ENABLE(QUOTA)\' from the\n' +
+    '&gt; codebase. It shouldn\'t effect any web-visible behavior, as the interesting\n' +
+    '&gt; bits are still hidden away behind the runtime flag, whose behavior\n' +
+    '&gt; is untouched by this patch.\n' +
+    '&gt; \n' +
+    '&gt; R=eseidel@chromium.org,kinuko@chromium.org\n' +
+    '&gt; \n' +
+    '&gt; Review URL: https://codereview.chromium.org/13529033\n' +
+    '\n' +
+    'TBR=mkwst@chromium.org\n' +
+    'Review URL: https://codereview.chromium.org/13462004</msg>\n' +
+    '</logentry>\n' +
+    '<logentry\n' +
+    '   revision="147743">\n' +
+    '<author>tkent@chromium.org</author>\n' +
+    '<date>2013-04-06T12:48:59.078499Z</date>\n' +
+    '<msg>Update test expectations.\n' +
+    '\n' +
+    'BUG=227354,227357</msg>\n' +
+    '</logentry>\n' +
+    '<logentry\n' +
+    '   revision="147742">\n' +
+    '<author>gavinp@chromium.org</author>\n' +
+    '<date>2013-04-06T12:40:34.111299Z</date>\n' +
+    '<msg>Guard &lt;link&gt; beforeload against recursion.\n' +
+    '\n' +
+    'The beforeload event on a link element can recurse if it mutates its\n' +
+    'firing link element. Now guard against this, only allowing the\n' +
+    'innermost (last!) change to run. This prevents multiple client\n' +
+    'registration and stops the crash in the bug report (which is\n' +
+    'reproduced in the test).\n' +
+    '\n' +
+    'BUG=174920\n' +
+    '\n' +
+    'Committed: https://src.chromium.org/viewvc/blink?view=rev&amp;revision=147738\n' +
+    '\n' +
+    'Review URL: https://codereview.chromium.org/13725004</msg>\n' +
+    '</logentry>\n' +
+    '</log>';
+
+var kExampleCommitDataList = [{
+    'revision': '147744',
+    'title': 'Revert 147740 "Remove the ENABLE_QUOTA compile-time flag."',
+    'time': '2013-04-06T13:00:08.314281Z',
+    'summary': 'Revert 147740 "Remove the ENABLE_QUOTA compile-time flag."',
+    'author': 'tkent@chromium.org',
+    'reviewer': 'eseidel@chromium',
+    'bugID': 0,
+    'revertedRevision': undefined
+  }, {
+    'revision': '147743',
+    'title': 'Update test expectations.',
+    'time': '2013-04-06T12:48:59.078499Z',
+    'summary': 'Update test expectations.',
+    'author': 'tkent@chromium.org',
+    'reviewer': null,
+    'bugID': 227354,
+    'revertedRevision': undefined
+  }, {
+    'revision': '147742',
+    'title': 'Guard <link> beforeload against recursion.',
+    'time': '2013-04-06T12:40:34.111299Z',
+    'summary': 'Guard <link> beforeload against recursion.',
+    'author': 'gavinp@chromium.org',
+    'reviewer': null,
+    'bugID': 174920,
+    'revertedRevision': undefined
+  }];
+
+test("changesetURL", 1, function() {
+    equals(trac.changesetURL(1234), "http://src.chromium.org/viewvc/blink?view=rev&revision=1234");
+});
+
+test("recentCommitData", 3, function() {
+    var simulator = new NetworkSimulator();
+    simulator.get = function(url, callback)
+    {
+        equals(url, '/svnlog');
+        simulator.scheduleCallback(function() {
+            var parser = new DOMParser();
+            var responseDOM = parser.parseFromString(kExampleCommitDataXML, "application/xml");
+            callback(responseDOM);
+        });
+    };
+
+    simulator.runTest(function() {
+        trac.recentCommitData('trunk', 10, function(commitDataList) {
+            $.each(commitDataList, function(index, commitData) {
+                // Including the entire message makes the deepEqual below to unwieldy.
+                delete commitData.message;
+            });
+            deepEqual(commitDataList, kExampleCommitDataList);
+        });
+    });
+});
+
+})();
diff --git a/Tools/GardeningServer/scripts/ui.js b/Tools/GardeningServer/scripts/ui.js
new file mode 100644
index 0000000..ef74fd7
--- /dev/null
+++ b/Tools/GardeningServer/scripts/ui.js
@@ -0,0 +1,271 @@
+/*
+ * Copyright (C) 2011 Google Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+var ui = ui || {};
+
+(function () {
+
+ui.displayURLForBuilder = function(builderName)
+{
+    return config.kPlatforms[config.currentPlatform].waterfallURL + '?' + $.param({
+        'builder': builderName
+    });
+}
+
+ui.displayNameForBuilder = function(builderName)
+{
+    return builderName.replace(/Webkit /, '');
+}
+
+ui.urlForTest = function(testName)
+{
+    return 'http://trac.webkit.org/browser/trunk/LayoutTests/' + testName;
+}
+
+ui.urlForFlakinessDashboard = function(opt_testNameList)
+{
+    var testsParameter = opt_testNameList ? opt_testNameList.join(',') : '';
+    return 'http://test-results.appspot.com/dashboards/flakiness_dashboard.html#tests=' + encodeURIComponent(testsParameter);
+}
+
+ui.urlForEmbeddedFlakinessDashboard = function(opt_testNameList)
+{
+    if (config.kPlatforms[config.currentPlatform].useFlakinessDashboard)
+        return ui.urlForFlakinessDashboard(opt_testNameList) + '&showChrome=false';
+    
+    return 'about:blank';
+}
+
+ui.rolloutReasonForTestNameList = function(testNameList)
+{
+    return 'Broke:\n' + testNameList.map(function(testName) {
+        return '* ' + testName;
+    }).join('\n');
+}
+
+ui.onebar = base.extends('div', {
+    init: function()
+    {
+        this.id = 'onebar';
+        this.innerHTML =
+            '<ul>' +
+                '<li><a href="#unexpected">Unexpected Failures</a></li>' +
+                '<li><a href="#expected">Expected Failures</a></li>' +
+                '<li><a href="#results">Results</a></li>' +
+                '<li><a href="#perf">perf</a></li>' +
+            '</ul>' +
+            '<div id="unexpected"></div>' +
+            '<div id="expected"></div>' +
+            '<div id="results"></div>' +
+            '<div id="perf"></div>';
+        this._tabNames = [
+            'unexpected',
+            'expected',
+            'results',
+            'perf',
+        ]
+
+        this._tabIndexToSavedScrollOffset = {};
+        this._tabs = $(this).tabs({
+            disabled: [2],
+            show: function(event, ui) { this._restoreScrollOffset(ui.index); },
+        });
+    },
+    _saveScrollOffset: function() {
+        var tabIndex = this._tabs.tabs('option', 'selected');
+        this._tabIndexToSavedScrollOffset[tabIndex] = document.body.scrollTop;
+    },
+    _restoreScrollOffset: function(tabIndex)
+    {
+        document.body.scrollTop = this._tabIndexToSavedScrollOffset[tabIndex] || 0;
+    },
+    _setupHistoryHandlers: function()
+    {
+        function currentHash() {
+            var hash = window.location.hash;
+            return (!hash || hash == '#') ? '#unexpected' : hash;
+        }
+
+        var self = this;
+        $('.ui-tabs-nav a').bind('mouseup', function(event) {
+            var href = event.target.getAttribute('href');
+            var hash = currentHash();
+            if (href != hash) {
+                self._saveScrollOffset();
+                window.location = href
+            }
+        });
+
+        window.onhashchange = function(event) {
+            var tabName = currentHash().substring(1);
+            self._selectInternal(tabName);
+        };
+
+        // When navigating from the browser chrome, we'll
+        // scroll to the #tabname contents. popstate fires before
+        // we scroll, so we can save the scroll offset first.
+        window.onpopstate = function() {
+            self._saveScrollOffset();
+        };
+    },
+    attach: function()
+    {
+        document.body.insertBefore(this, document.body.firstChild);
+        this._setupHistoryHandlers();
+    },
+    tabNamed: function(tabName)
+    {
+        if (this._tabNames.indexOf(tabName) == -1)
+            return null;
+        tab = document.getElementById(tabName);
+        // We perform this sanity check below to make sure getElementById
+        // hasn't given us a node in some other unrelated part of the document.
+        // that shouldn't happen normally, but it could happen if an attacker
+        // has somehow sneakily added a node to our document.
+        if (tab.parentNode != this)
+            return null;
+        return tab;
+    },
+    unexpected: function()
+    {
+        return this.tabNamed('unexpected');
+    },
+    expected: function()
+    {
+        return this.tabNamed('expected');
+    },
+    results: function()
+    {
+        return this.tabNamed('results');
+    },
+    perf: function()
+    {
+        return this.tabNamed('perf');
+    },
+    _selectInternal: function(tabName) {
+        var tabIndex = this._tabNames.indexOf(tabName);
+        this._tabs.tabs('enable', tabIndex);
+        this._tabs.tabs('select', tabIndex);
+    },
+    select: function(tabName)
+    {
+        this._saveScrollOffset();
+        this._selectInternal(tabName);
+        window.location = '#' + tabName;
+    }
+});
+
+// FIXME: Loading a module shouldn't set off a timer.  The controller should kick this off.
+setInterval(function() {
+    Array.prototype.forEach.call(document.querySelectorAll("time.relative"), function(time) {
+        time.update && time.update();
+    });
+}, config.kRelativeTimeUpdateFrequency);
+
+ui.RelativeTime = base.extends('time', {
+    init: function()
+    {
+        this.className = 'relative';
+    },
+    date: function()
+    {
+        return this._date;
+    },
+    update: function()
+    {
+        this.textContent = this._date ? base.relativizeTime(this._date) : '';
+    },
+    setDate: function(date)
+    {
+        this._date = date;
+        this.update();
+    }
+});
+
+ui.StatusArea = base.extends('div',  {
+    init: function()
+    {
+        // This is a Singleton.
+        if (ui.StatusArea._instance)
+            return ui.StatusArea._instance;
+        ui.StatusArea._instance = this;
+
+        this.className = 'status';
+        document.body.appendChild(this);
+        this._currentId = 0;
+        this._unfinishedIds = {};
+
+        this.appendChild(new ui.actions.List([new ui.actions.Close()]));
+        $(this).bind('close', this.close.bind(this));
+
+        var processing = document.createElement('progress');
+        processing.className = 'process-text';
+        processing.textContent = 'Processing...';
+        this.appendChild(processing);
+    },
+    close: function()
+    {
+        this.style.visibility = 'hidden';
+        Array.prototype.forEach.call(this.querySelectorAll('.status-content'), function(node) {
+            node.parentNode.removeChild(node);
+        });
+    },
+    addMessage: function(id, message)
+    {
+        this.style.visibility = 'visible';
+        $(this).addClass('processing');
+
+        var element = document.createElement('div');
+        $(element).addClass('message').text(message);
+
+        var content = this.querySelector('#' + id);
+        if (!content) {
+            content = document.createElement('div');
+            content.id = id;
+            content.className = 'status-content';
+            this.appendChild(content);
+        }
+
+        content.appendChild(element);
+        if (element.offsetTop < this.scrollTop || element.offsetTop + element.offsetHeight > this.scrollTop + this.offsetHeight)
+            this.scrollTop = element.offsetTop;
+    },
+    // FIXME: It's unclear whether this code could live here or in a controller.
+    addFinalMessage: function(id, message)
+    {
+        this.addMessage(id, message);
+
+        delete this._unfinishedIds[id];
+        if (!Object.keys(this._unfinishedIds).length)
+            $(this).removeClass('processing');
+    },
+    newId: function() {
+        var id = 'status-content-' + ++this._currentId;
+        this._unfinishedIds[id] = 1;
+        return id;
+    }
+});
+
+})();
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/actions.js b/Tools/GardeningServer/scripts/ui/actions.js
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/actions.js
rename to Tools/GardeningServer/scripts/ui/actions.js
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/actions_unittests.js b/Tools/GardeningServer/scripts/ui/actions_unittests.js
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/actions_unittests.js
rename to Tools/GardeningServer/scripts/ui/actions_unittests.js
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures.js b/Tools/GardeningServer/scripts/ui/failures.js
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/failures.js
rename to Tools/GardeningServer/scripts/ui/failures.js
diff --git a/Tools/GardeningServer/scripts/ui/failures_unittests.js b/Tools/GardeningServer/scripts/ui/failures_unittests.js
new file mode 100644
index 0000000..747b3da
--- /dev/null
+++ b/Tools/GardeningServer/scripts/ui/failures_unittests.js
@@ -0,0 +1,145 @@
+/*
+ * Copyright (C) 2011 Google Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+(function () {
+
+module('ui.failures');
+
+test('Builder', 6, function() {
+    var configuration;
+    configuration = new ui.failures.Builder("Webkit Linux", ["update", "webkit_tests"]);
+    deepEqual(Object.getOwnPropertyNames(configuration.__proto__).sort(), [
+        '_addSpan',
+        'equals',
+        'init',
+    ]);
+    equal(configuration.outerHTML, '<a class="failing-builder" target="_blank" href="http://build.chromium.org/p/chromium.webkit/waterfall?builder=Webkit+Linux"><span class="version">lucid</span><span class="architecture">64-bit</span><span class="failures"> update, webkit_tests</span></a>');
+    configuration = new ui.failures.Builder("Webkit Win");
+    equal(configuration.outerHTML, '<a class="failing-builder" target="_blank" href="http://build.chromium.org/p/chromium.webkit/waterfall?builder=Webkit+Win"><span class="version">xp</span></a>');
+    configuration._addSpan('foo', 'bar');
+    equal(configuration.outerHTML, '<a class="failing-builder" target="_blank" href="http://build.chromium.org/p/chromium.webkit/waterfall?builder=Webkit+Win"><span class="version">xp</span><span class="foo">bar</span></a>');
+    ok(configuration.equals({version: 'xp'}));
+    ok(!configuration.equals({version: 'lucid', is64bit: true}));
+});
+
+test('FailureGrid', 10, function() {
+    var grid = new ui.failures.FailureGrid();
+    deepEqual(Object.getOwnPropertyNames(grid.__proto__).sort(), [
+        "_reset",
+        "_rowByResult",
+        "init",
+        "purge",
+        "update"
+    ]);
+    equal(grid.outerHTML, '<table class="failures">' +
+        '<thead><tr><td>type</td><td>release</td><td>debug</td></tr></thead>' +
+        '<tbody><tr class="BUILDING" style="display: none;"><td><span>BUILDING</span></td><td></td><td></td></tr></tbody>' +
+    '</table>');
+    var row = grid._rowByResult('TEXT');
+    equal(grid.outerHTML, '<table class="failures">' +
+        '<thead><tr><td>type</td><td>release</td><td>debug</td></tr></thead>' +
+        '<tbody>' +
+            '<tr class="TEXT">' +
+                '<td><span>TEXT</span></td><td></td><td></td>' +
+            '</tr>' +
+            '<tr class="BUILDING" style="display: none;"><td><span>BUILDING</span></td><td></td><td></td></tr>' +
+        '</tbody>' +
+    '</table>');
+    equal(row.outerHTML, '<tr class="TEXT"><td><span>TEXT</span></td><td></td><td></td></tr>');
+    grid.update({});
+    equal(grid.outerHTML, '<table class="failures">' +
+        '<thead><tr><td>type</td><td>release</td><td>debug</td></tr></thead>' +
+        '<tbody>' +
+            '<tr class="TEXT">' +
+                '<td><span>TEXT</span></td><td></td><td></td>' +
+            '</tr>' +
+            '<tr class="BUILDING" style="display: none;"><td><span>BUILDING</span></td><td></td><td></td></tr>' +
+        '</tbody>' +
+    '</table>');
+    raises(function() {
+        grid.update({'Atari': {}})
+    });
+    grid.update({'WebKit Linux (dbg)': { actual: 'TEXT'}});
+    equal(grid.outerHTML, '<table class="failures">' +
+        '<thead><tr><td>type</td><td>release</td><td>debug</td></tr></thead>' +
+        '<tbody>' +
+            '<tr class="TEXT" style="">' +
+                '<td><span>TEXT</span></td>' +
+                '<td></td>' +
+                '<td><a class="failing-builder" target="_blank" href="http://build.chromium.org/p/chromium.webkit/waterfall?builder=WebKit+Linux+(dbg)"><span class="version">lucid</span><span class="architecture">64-bit</span></a></td>' +
+            '</tr>' +
+            '<tr class="BUILDING" style="display: none;"><td><span>BUILDING</span></td><td></td><td></td></tr>' +
+        '</tbody>' +
+    '</table>');
+    grid.update({'WebKit Mac10.6': { actual: 'IMAGE+TEXT'}});
+    equal(grid.outerHTML, '<table class="failures">' +
+        '<thead><tr><td>type</td><td>release</td><td>debug</td></tr></thead>' +
+        '<tbody>' +
+            '<tr class="IMAGE+TEXT">' +
+                '<td><span>IMAGE+TEXT</span></td>' +
+                '<td><a class="failing-builder" target="_blank" href="http://build.chromium.org/p/chromium.webkit/waterfall?builder=WebKit+Mac10.6"><span class="version">snowleopard</span></a></td>' +
+                '<td></td>' +
+            '</tr>' +
+            '<tr class="TEXT" style="">' +
+                '<td><span>TEXT</span></td>' +
+                '<td></td>' +
+                '<td><a class="failing-builder" target="_blank" href="http://build.chromium.org/p/chromium.webkit/waterfall?builder=WebKit+Linux+(dbg)"><span class="version">lucid</span><span class="architecture">64-bit</span></a></td>' +
+            '</tr>' +
+            '<tr class="BUILDING" style="display: none;"><td><span>BUILDING</span></td><td></td><td></td></tr>' +
+        '</tbody>' +
+    '</table>');
+    grid.update({'WebKit Mac10.6': { actual: 'IMAGE+TEXT'}});
+    equal(grid.outerHTML, '<table class="failures">' +
+        '<thead><tr><td>type</td><td>release</td><td>debug</td></tr></thead>' +
+        '<tbody>' +
+            '<tr class="IMAGE+TEXT" style="">' +
+                '<td><span>IMAGE+TEXT</span></td>' +
+                '<td><a class="failing-builder" target="_blank" href="http://build.chromium.org/p/chromium.webkit/waterfall?builder=WebKit+Mac10.6"><span class="version">snowleopard</span></a></td>' +
+                '<td></td>' +
+            '</tr>' +
+            '<tr class="TEXT" style="">' +
+                '<td><span>TEXT</span></td>' +
+                '<td></td>' +
+                '<td><a class="failing-builder" target="_blank" href="http://build.chromium.org/p/chromium.webkit/waterfall?builder=WebKit+Linux+(dbg)"><span class="version">lucid</span><span class="architecture">64-bit</span></a></td>' +
+            '</tr>' +
+            '<tr class="BUILDING" style="display: none;"><td><span>BUILDING</span></td><td></td><td></td></tr>' +
+        '</tbody>' +
+    '</table>');
+    grid.purge();
+    grid.update({'WebKit Linux (dbg)': { actual: 'TEXT'}});
+    equal(grid.outerHTML, '<table class="failures">' +
+        '<thead><tr><td>type</td><td>release</td><td>debug</td></tr></thead>' +
+        '<tbody>' +
+            '<tr class="TEXT">' +
+                '<td><span>TEXT</span></td>' +
+                '<td></td>' +
+                '<td><a class="failing-builder" target="_blank" href="http://build.chromium.org/p/chromium.webkit/waterfall?builder=WebKit+Linux+(dbg)"><span class="version">lucid</span><span class="architecture">64-bit</span></a></td>' +
+            '</tr>' +
+            '<tr class="BUILDING" style="display: none;"><td><span>BUILDING</span></td><td></td><td></td></tr>' +
+        '</tbody>' +
+    '</table>');
+});
+
+}());
diff --git a/Tools/GardeningServer/scripts/ui/notifications.js b/Tools/GardeningServer/scripts/ui/notifications.js
new file mode 100644
index 0000000..b405066
--- /dev/null
+++ b/Tools/GardeningServer/scripts/ui/notifications.js
@@ -0,0 +1,263 @@
+/*
+ * Copyright (C) 2011 Google Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+var ui = ui || {};
+ui.notifications = ui.notifications || {};
+
+(function(){
+
+var kMaxTestsPerGroup = 3;
+
+ui.notifications.Stream = base.extends('ol', {
+    init: function()
+    {
+        this.className = 'notifications';
+    },
+    add: function(notification)
+    {
+        var insertBefore = null;
+        Array.prototype.some.call(this.children, function(existingNotification) {
+            if (existingNotification.index() < notification.index()) {
+                insertBefore = existingNotification;
+                return true;
+            }
+        });
+        this.insertBefore(notification, insertBefore);
+        return notification;
+    }
+});
+
+ui.notifications.Notification = base.extends('li', {
+    init: function()
+    {
+        this._how = this.appendChild(document.createElement('div'));
+        this._how.className = 'how';
+        this._what = this.appendChild(document.createElement('div'));
+        this._what.className = 'what';
+        this._index = 0;
+        $(this).hide().fadeIn('fast');
+    },
+    index: function()
+    {
+        return this._index;
+    },
+    setIndex: function(index)
+    {
+        this._index = index;
+    },
+    dismiss: function()
+    {
+        // FIXME: These fade in/out effects are lame.
+        $(this).fadeOut(function()
+        {
+            this.parentNode && this.parentNode.removeChild(this);
+        });
+    },
+});
+
+ui.notifications.Info = base.extends(ui.notifications.Notification, {
+    init: function(message)
+    {
+        this.update(message);
+    },
+    update: function(message)
+    {
+        this._what.textContent = message;
+    },
+    updateWithNode: function(node)
+    {
+        $(this._what).empty();
+        this._what.appendChild(node);
+    }
+});
+
+ui.notifications.FailingTestGroup = base.extends('li', {
+    init: function(groupName, testNameList)
+    {
+        this.appendChild(base.createLinkNode(ui.urlForFlakinessDashboard(testNameList), groupName, '_blank'));
+    }
+});
+
+var Cause = base.extends('li', {
+    init: function()
+    {
+        this._description = this.appendChild(document.createElement('div'));
+        this._description.className = 'description';
+    }
+});
+
+ui.notifications.SuspiciousCommit = base.extends(Cause, {
+    init: function(commitData)
+    {
+        this._revision = commitData.revision;
+        this._description.appendChild(base.createLinkNode(trac.changesetURL(commitData.revision), commitData.revision, '_blank'));
+        this._details = this._description.appendChild(document.createElement('span'));
+        this._addDetail('summary', commitData);
+        this._addDetail('author', commitData);
+        this._addDetail('reviewer', commitData);
+        // FIXME: Add bugID detail.
+        // this._addDetail('bugID', commitData, bugzilla.bugURL);
+    },
+    hasRevision: function(revision)
+    {
+        return this._revision == revision;
+    },
+    _addDetail: function(part, commitData, linkFunction)
+    {
+        var content = commitData[part];
+        if (!content)
+            return;
+
+        var span = this._details.appendChild(document.createElement('span'));
+        span.className = part;
+        
+        if (linkFunction) {
+            var link = base.createLinkNode(linkFunction(content), content, '_blank');
+            span.appendChild(link);
+        } else
+            span.textContent = content;
+    }
+});
+
+ui.notifications.Failure = base.extends(ui.notifications.Notification, {
+    init: function()
+    {
+        this._time = this._how.appendChild(new ui.RelativeTime());
+        this._problem = this._what.appendChild(document.createElement('div'));
+        this._problem.className = 'problem';
+        this._effects = this._problem.appendChild(document.createElement('ul'));
+        this._effects.className = 'effects';
+        this._causes = this._what.appendChild(document.createElement('ul'));
+        this._causes.className = 'causes';
+    },
+    date: function()
+    {
+        return this._time.date;
+    }
+});
+
+ui.notifications.FailingTests = base.extends(ui.notifications.Failure, {
+    init: function() {
+        // FIXME: Convert actions to a link from test!
+        this._problem.appendChild(new ui.actions.List([
+            new ui.actions.Examine().makeDefault(),
+            new ui.actions.Rebaseline(),
+        ]));
+        this._testNameList = [];
+    },
+    testNameList: function()
+    {
+        return this._testNameList;
+    },
+    containsFailureAnalysis: function(failureAnalysis)
+    {
+        return this._testNameList.indexOf(failureAnalysis.testName) != -1;
+    },
+    addFailureAnalysis: function(failureAnalysis)
+    {
+        if (this.containsFailureAnalysis(failureAnalysis))
+            return false;
+        this._testNameList.push(failureAnalysis.testName);
+        $(this._effects).empty();
+        this._forEachTestGroup(function(groupName, testNameList) {
+            this._effects.appendChild(new ui.notifications.FailingTestGroup(groupName, testNameList))
+        }.bind(this));
+        return true;
+    },
+    _forEachTestGroup: function(callback)
+    {
+        var individualTests = [];
+        base.forEachDirectory(this._testNameList, function(groupLabel, testsInDirectory) {
+            if (testsInDirectory.length <= kMaxTestsPerGroup) {
+                individualTests = individualTests.concat(testsInDirectory);
+                return;
+            }
+            callback(groupLabel, testsInDirectory);
+        });
+        individualTests.forEach(function(testName) {
+            callback(testName, [testName]);
+        });
+    }
+});
+
+ui.notifications.FailingTestsSummary = base.extends(ui.notifications.FailingTests, {
+    init: function() {
+        this._where = this._how.appendChild(new ui.failures.FailureGrid());
+        this._commitDataPinned = false;
+    },
+    purge: function() {
+        this._where.purge();
+    },
+    updateBuilderResults: function(resultNodesByBuilder)
+    {
+        this._where.update(resultNodesByBuilder);
+    },
+    addFailureAnalysis: function(failureAnalysis)
+    {
+        this.updateBuilderResults(failureAnalysis.resultNodesByBuilder);
+        if (!ui.notifications.FailingTests.prototype.addFailureAnalysis.call(this, failureAnalysis))
+            return false;
+    },
+    pinToCommitData: function(commitData)
+    {
+        if (this._commitDataPinned)
+            return;
+        this._commitDataPinned = true;
+        $(this._causes).children().each(function() {
+            if (this.hasRevision(commitData.revision))
+                return;
+            $(this).detach();
+        });
+    },
+    addCommitData: function(commitData)
+    {
+        if (this._commitDataPinned)
+            return null;
+        var commitDataDate = new Date(commitData.time);
+        if (this._time.date > commitDataDate); {
+            this.setIndex(commitDataDate.getTime());
+            this._time.setDate(commitDataDate);
+        }
+        return this._causes.appendChild(new ui.notifications.SuspiciousCommit(commitData));
+    }
+});
+
+ui.notifications.BuildersFailing = base.extends(ui.notifications.Failure, {
+    init: function(message)
+    {
+        this._problem.insertBefore(document.createTextNode(message + ':'), this._problem.firstChild);
+    },
+    setFailingBuilders: function(failuresList)
+    {
+        $(this._effects).empty().append(Object.keys(failuresList).map(function(builderName) {
+            var effect = document.createElement('li');
+            effect.className = 'builder';
+            effect.appendChild(new ui.failures.Builder(builderName, failuresList[builderName]));
+            return effect;
+        }));
+    }
+});
+
+})();
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js b/Tools/GardeningServer/scripts/ui/notifications_unittests.js
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/notifications_unittests.js
rename to Tools/GardeningServer/scripts/ui/notifications_unittests.js
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/perf.js b/Tools/GardeningServer/scripts/ui/perf.js
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/perf.js
rename to Tools/GardeningServer/scripts/ui/perf.js
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/perf_unittests.js b/Tools/GardeningServer/scripts/ui/perf_unittests.js
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/perf_unittests.js
rename to Tools/GardeningServer/scripts/ui/perf_unittests.js
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js b/Tools/GardeningServer/scripts/ui/results.js
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js
rename to Tools/GardeningServer/scripts/ui/results.js
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results_unittests.js b/Tools/GardeningServer/scripts/ui/results_unittests.js
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results_unittests.js
rename to Tools/GardeningServer/scripts/ui/results_unittests.js
diff --git a/Tools/GardeningServer/scripts/ui_unittests.js b/Tools/GardeningServer/scripts/ui_unittests.js
new file mode 100644
index 0000000..6cb12d9
--- /dev/null
+++ b/Tools/GardeningServer/scripts/ui_unittests.js
@@ -0,0 +1,202 @@
+/*
+ * Copyright (C) 2011 Google Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+(function () {
+
+module("ui");
+
+var kExampleResultsByTest = {
+    "scrollbars/custom-scrollbar-with-incomplete-style.html": {
+        "Mock Builder": {
+            "expected": "IMAGE",
+            "actual": "CRASH"
+        },
+        "Mock Linux": {
+            "expected": "TEXT",
+            "actual": "CRASH"
+        }
+    },
+    "userscripts/another-test.html": {
+        "Mock Builder": {
+            "expected": "PASS",
+            "actual": "TEXT"
+        }
+    }
+}
+
+test("ui.onebar", 3, function() {
+    if (window.location.hash) {
+        window.location.hash = '';
+    }
+
+    onebar = new ui.onebar();
+    onebar.attach();
+    equal(onebar.innerHTML,
+        '<ul class="ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all">' +
+            '<li class="ui-state-default ui-corner-top ui-tabs-selected ui-state-active"><a href="#unexpected">Unexpected Failures</a></li>' +
+            '<li class="ui-state-default ui-corner-top"><a href="#expected">Expected Failures</a></li>' +
+            '<li class="ui-state-default ui-corner-top ui-state-disabled"><a href="#results">Results</a></li>' +
+            '<li class="ui-state-default ui-corner-top"><a href="#perf">perf</a></li>' +
+        '</ul>' +
+        '<div id="unexpected" class="ui-tabs-panel ui-widget-content ui-corner-bottom"></div>' +
+        '<div id="expected" class="ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide"></div>' +
+        '<div id="results" class="ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide"></div>' +
+        '<div id="perf" class="ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide"></div>');
+
+    onebar.select('expected');
+    equal(window.location.hash, '#expected');
+    onebar.select('unexpected');
+    equal(window.location.hash, '#unexpected');
+
+    $(onebar).detach();
+});
+
+test("results.ResultsGrid", 1, function() {
+    var grid = new ui.results.ResultsGrid()
+    grid.addResults([
+        'http://example.com/layout-test-results/foo-bar-diff.txt',
+        'http://example.com/layout-test-results/foo-bar-expected.png',
+        'http://example.com/layout-test-results/foo-bar-actual.png',
+        'http://example.com/layout-test-results/foo-bar-diff.png',
+    ]);
+    equal(grid.innerHTML,
+        '<table class="comparison">' +
+            '<thead>' +
+                '<tr>' +
+                    '<th>Expected</th>' +
+                    '<th>Actual</th>' +
+                    '<th>Diff</th>' +
+                '</tr>' +
+            '</thead>' +
+            '<tbody>' +
+                '<tr>' +
+                    '<td class="expected result-container"><img class="image-result" src="http://example.com/layout-test-results/foo-bar-expected.png"></td>' +
+                    '<td class="actual result-container"><img class="image-result" src="http://example.com/layout-test-results/foo-bar-actual.png"></td>' +
+                    '<td class="diff result-container"><img class="image-result" src="http://example.com/layout-test-results/foo-bar-diff.png"></td>' +
+                '</tr>' +
+            '</tbody>' +
+        '</table>' +
+        '<table class="comparison">' +
+            '<thead>' +
+                '<tr>' +
+                    '<th>Expected</th>' +
+                    '<th>Actual</th>' +
+                    '<th>Diff</th>' +
+                '</tr>' +
+            '</thead>' +
+            '<tbody>' +
+                '<tr>' +
+                    '<td class="expected result-container"></td>' +
+                    '<td class="actual result-container"></td>' +
+                    '<td class="diff result-container"><iframe class="text-result" src="http://example.com/layout-test-results/foo-bar-diff.txt"></iframe></td>' +
+                '</tr>' +
+            '</tbody>' +
+        '</table>');
+});
+
+test("results.ResultsGrid (crashlog)", 1, function() {
+    var grid = new ui.results.ResultsGrid()
+    grid.addResults(['http://example.com/layout-test-results/foo-bar-crash-log.txt']);
+    equal(grid.innerHTML, '<iframe class="text-result" src="http://example.com/layout-test-results/foo-bar-crash-log.txt"></iframe>');
+});
+
+test("results.ResultsGrid (empty)", 1, function() {
+    var grid = new ui.results.ResultsGrid()
+    grid.addResults([]);
+    equal(grid.innerHTML, 'No results to display.');
+});
+
+test("time", 6, function() {
+    var time = new ui.RelativeTime();
+    equal(time.tagName, 'TIME');
+    equal(time.className, 'relative');
+    deepEqual(Object.getOwnPropertyNames(time.__proto__).sort(), [
+        'date',
+        'init',
+        'setDate',
+        'update',
+    ]);
+    equal(time.outerHTML, '<time class="relative"></time>');
+    var tenMinutesAgo = new Date();
+    tenMinutesAgo.setMinutes(tenMinutesAgo.getMinutes() - 10);
+    time.setDate(tenMinutesAgo);
+    equal(time.outerHTML, '<time class="relative">10 minutes ago</time>');
+    equal(time.date().getTime(), tenMinutesAgo.getTime());
+});
+
+test("StatusArea", 3, function() {
+    var statusArea = new ui.StatusArea();
+    var id = statusArea.newId();
+    statusArea.addMessage(id, 'First Message');
+    statusArea.addMessage(id, 'Second Message');
+    equal(statusArea.outerHTML,
+        '<div class="status processing" style="visibility: visible;">' +
+            '<ul class="actions"><li><button class="action">Close</button></li></ul>' +
+            '<progress class="process-text">Processing...</progress>' +
+            '<div id="status-content-1" class="status-content">' +
+                '<div class="message">First Message</div>' +
+                '<div class="message">Second Message</div>' +
+            '</div>' +
+        '</div>');
+
+    var secondStatusArea = new ui.StatusArea();
+    var secondId = secondStatusArea.newId();
+    secondStatusArea.addMessage(secondId, 'First Message second id');
+
+    equal(statusArea.outerHTML,
+        '<div class="status processing" style="visibility: visible;">' +
+            '<ul class="actions"><li><button class="action">Close</button></li></ul>' +
+            '<progress class="process-text">Processing...</progress>' +
+            '<div id="status-content-1" class="status-content">' +
+                '<div class="message">First Message</div>' +
+                '<div class="message">Second Message</div>' +
+            '</div>' +
+            '<div id="status-content-2" class="status-content">' +
+                '<div class="message">First Message second id</div>' +
+            '</div>' +
+        '</div>');
+
+    statusArea.addFinalMessage(id, 'Final Message 1');
+    statusArea.addFinalMessage(secondId, 'Final Message 2');
+
+    equal(statusArea.outerHTML,
+        '<div class="status" style="visibility: visible;">' +
+            '<ul class="actions"><li><button class="action">Close</button></li></ul>' +
+            '<progress class="process-text">Processing...</progress>' +
+            '<div id="status-content-1" class="status-content">' +
+                '<div class="message">First Message</div>' +
+                '<div class="message">Second Message</div>' +
+                '<div class="message">Final Message 1</div>' +
+            '</div>' +
+            '<div id="status-content-2" class="status-content">' +
+                '<div class="message">First Message second id</div>' +
+                '<div class="message">Final Message 2</div>' +
+            '</div>' +
+        '</div>');
+
+    statusArea.close();
+});
+
+})();
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/common.css b/Tools/GardeningServer/styles/common.css
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/common.css
rename to Tools/GardeningServer/styles/common.css
diff --git a/Tools/GardeningServer/styles/failures.css b/Tools/GardeningServer/styles/failures.css
new file mode 100644
index 0000000..2027415
--- /dev/null
+++ b/Tools/GardeningServer/styles/failures.css
@@ -0,0 +1,81 @@
+/*
+ * Copyright (C) 2011 Google Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+.failures .BUILDING {
+    opacity: 0.5;
+}
+
+a.failing-builder {
+    display: inline-block;
+    border: 1px solid Gray;
+    margin: 0 0 2px 0;
+    padding: 1px;
+    color: Black;
+    font-size: 11px;
+    text-decoration: none;
+}
+
+    a.failing-builder>span.version {
+        text-transform: uppercase;
+        background-color: #555;
+        color: White;
+        padding: 0 2px;
+    }
+
+    a.failing-builder>span.architecture {
+        padding: 0 2px;
+    }
+
+    .effects a.failing-builder>span.architecture {
+        background-color: #555;
+        color: White;
+    }
+
+    a.failing-builder>span.graphics {
+        padding: 0 2px;
+    }
+
+
+ul.failures {
+    padding: 0px;
+}
+
+    ul.failures>li {
+        display: -webkit-box;
+        position: relative;
+    }
+
+    ul.failures>li label {
+        margin-left: 10px;
+    }
+
+        ul.failures>li ul.actions {
+            padding: 0px;
+            visibility: hidden;
+        }
+
+        ul.failures>li:hover ul.actions {
+            visibility: visible;
+        }
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/main.css b/Tools/GardeningServer/styles/main.css
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/main.css
rename to Tools/GardeningServer/styles/main.css
diff --git a/Tools/GardeningServer/styles/notifications.css b/Tools/GardeningServer/styles/notifications.css
new file mode 100644
index 0000000..5e51868
--- /dev/null
+++ b/Tools/GardeningServer/styles/notifications.css
@@ -0,0 +1,235 @@
+/*
+ * Copyright (C) 2011 Google Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+/* FIXME: This should really be in actions.css. */
+ul.actions>li {
+    display: inline-block;
+}
+
+ol.notifications {
+    list-style: none;
+    padding: 0;
+}
+
+ol.notifications ul {
+    list-style: none;
+    padding: 0;
+}
+
+ol.notifications>li {
+    display: -webkit-box;
+    position: relative;
+    width: 100%;
+    padding: 10px;
+    box-sizing: border-box;
+    border-top: 1px solid Gray;
+}
+
+ol.notifications div.how {
+    width: 350px;
+}
+
+ol.notifications time {
+    display: block;
+    color: #888;
+    padding: 0 0 20px 0;
+}
+
+ol.notifications div.what {
+    display: -webkit-box;
+    -webkit-box-orient: vertical;
+    padding: 0 0 0 10px;
+    -webkit-box-flex: 1;
+}
+
+    ol.notifications>li div.what ul.effects>li.builder {
+        display: inline;
+        padding-left: 5px;
+    }
+
+ol.notifications ul.causes>li, ol.notifications div.problem {
+    display: -webkit-box;
+}
+
+ol.notifications ul.causes div.description, ol.notifications div.problem ul.effects {
+    -webkit-box-flex: 1;
+}
+
+ol.notifications>li div.problem {
+    padding-bottom: 10px;
+}
+
+    ol.notifications>li div.problem>ul.actions {
+        visibility: hidden;
+    }
+
+    ol.notifications>li:hover div.problem>ul.actions {
+        visibility: visible;
+    }
+
+    ol.notifications>li table.failures {
+        opacity: 0.2;
+        -webkit-transition: opacity 0.5s;
+    }
+
+    ol.notifications>li:hover table.failures {
+        opacity: 1;
+    }
+
+ol.notifications>li ul.causes>li>ul.actions {
+}
+
+    ol.notifications>li ul.causes>li>div.description {
+        padding: 0 10px 5px 0;
+        display: -webkit-box;
+    }
+
+        ol.notifications>li ul.causes>li>div.description>a {
+            padding: 5px 10px 5px 10px;
+            margin: -5px 10px -2px 0;
+            border-radius: 4px;
+            display: inline-block;
+        }
+
+        ol.notifications>li ul.causes>li:hover>div.description>a {
+            background-color: #555;
+            color: White;
+        }
+
+        ol.notifications>li ul.causes>li:hover>div.description>a::after {
+            content: '';
+            width: 0;
+            height: 0;
+            margin-top: 5px;
+            position: absolute;
+            margin-left: 10px;
+            border-top: 5px solid White;
+            border-left: 5px solid #555;
+            border-bottom: 5px solid White;
+        }
+
+        ol.notifications>li ul.causes>li>div.description>span {
+            padding: 0 10px 0 0;
+            display: block;
+            cursor: default;
+            pointer-events: none;
+            -webkit-box-flex: 1;
+        }
+
+        ol.notifications>li ul.causes>li>div.description>span>span.author {
+            padding: 0 0 0 5px;
+            font-style: italic;
+        }
+
+        ol.notifications>li ul.causes>li>div.description>span>span.reviewer {
+            color: Gray;
+        }
+
+        ol.notifications>li ul.causes>li>div.description>span>span.bugID::before {
+            content: 'bug ';
+            padding-left: 8px;
+        }
+
+        ol.notifications>li ul.causes>li>div.description>span>span.bugID>a {
+            cursor: hand;
+            pointer-events: auto;
+        }
+
+        ol.notifications>li ul.causes>li>div.description>span>span.reviewer::before {
+            content: ' (';
+        }
+
+        ol.notifications>li ul.causes>li>div.description>span>span.reviewer::after {
+            content: ')';
+        }
+
+    ol.notifications>li ul.causes>li>ul.actions {
+        visibility: hidden;
+    }
+
+    ol.notifications>li ul.causes>li:hover>ul.actions {
+        visibility: visible;
+    }
+
+    ol.notifications>li ul.causes>li li {
+        padding: 10px 0 0 0;
+        display: inline;
+    }
+
+ol.notifications table.failures {
+    border-collapse: collapse;
+    table-layout: fixed;
+    font-size: 11px;
+    width: 350px;
+}
+
+    ol.notifications table.failures thead tr td:first-child {
+        visibility: hidden;
+    }
+
+    ol.notifications table.failures tbody tr {
+        border-top: 1px solid #eee;
+    }
+
+    ol.notifications table.failures tbody td:first-child {
+        width: 20%;
+    }
+
+    ol.notifications table.failures tbody td {
+        width: 40%;
+        padding: 2px;
+    }
+
+    ol.notifications table.failures tbody tr td:first-child {
+        vertical-align: top;
+    }
+
+    ol.notifications table.failures tbody tr td:first-child span {
+        padding: 0 2px;
+    }
+
+    ol.notifications table.failures tbody tr.TIMEOUT td:first-child span {
+        background-color: #fffc6c;
+    }
+
+    ol.notifications table.failures tbody tr.TEXT td:first-child span {
+        background-color: #e98080;
+    }
+
+    ol.notifications table.failures tbody tr.CRASH td:first-child span {
+        background-color: #ffc343;
+    }
+
+    ol.notifications table.failures tbody tr.AUDIO td:first-child span {
+        background-color: #bfdfff;
+    }
+
+    ol.notifications table.failures tbody tr.IMAGE td:first-child span {
+        background-color: #69f;
+    }
+
+    ol.notifications table.failures tbody tr.IMAGE\+TEXT td:first-child span {
+        background-color: #96f;
+    }
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/onebar.css b/Tools/GardeningServer/styles/onebar.css
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/onebar.css
rename to Tools/GardeningServer/styles/onebar.css
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/perf.css b/Tools/GardeningServer/styles/perf.css
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/perf.css
rename to Tools/GardeningServer/styles/perf.css
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/pixelzoomer.css b/Tools/GardeningServer/styles/pixelzoomer.css
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/pixelzoomer.css
rename to Tools/GardeningServer/styles/pixelzoomer.css
diff --git a/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/results.css b/Tools/GardeningServer/styles/results.css
similarity index 100%
rename from Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/styles/results.css
rename to Tools/GardeningServer/styles/results.css
diff --git a/Tools/GardeningServer/summary-mock.html b/Tools/GardeningServer/summary-mock.html
new file mode 100644
index 0000000..2be79a6
--- /dev/null
+++ b/Tools/GardeningServer/summary-mock.html
@@ -0,0 +1,55 @@
+<!DOCTYPE html>
+<!--
+Copyright (C) 2011 Google Inc. All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+1. Redistributions of source code must retain the above copyright
+   notice, this list of conditions and the following disclaimer.
+2. Redistributions in binary form must reproduce the above copyright
+   notice, this list of conditions and the following disclaimer in the
+   documentation and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
+BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+THE POSSIBILITY OF SUCH DAMAGE.
+
+The favicons are from the awesome famfamfam.com, which is the website of Mark
+James, a web developer from Birmingham, UK.
+-->
+<html>
+<head>
+<title>Mock Summary View</title>
+<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:400,700">
+<link rel="stylesheet" href="styles/common.css">
+<link rel="stylesheet" href="styles/results.css">
+<link rel="stylesheet" href="styles/notifications.css">
+</head>
+<body>
+<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
+<script src="scripts/config.js"></script>
+<script src="scripts/base.js"></script>
+<script src="scripts/net.js"></script>
+<script src="scripts/svn-log.js"></script>
+<script src="scripts/builders.js"></script>
+<script src="scripts/checkout.js"></script>
+<script src="scripts/results.js"></script>
+<script src="scripts/ui.js"></script>
+<script src="scripts/model.js"></script>
+<script src="scripts/ui/actions.js"></script>
+<script src="scripts/ui/failures.js"></script>
+<script src="scripts/ui/notifications.js"></script>
+<script src="scripts/ui/results.js"></script>
+<script src="scripts/controllers.js"></script>
+<script src="scripts/summary-mock.js"></script>
+</body>
+</html>
diff --git a/Tools/GtkLauncher/LauncherInspectorWindow.c b/Tools/GtkLauncher/LauncherInspectorWindow.c
deleted file mode 100644
index f07cf7e..0000000
--- a/Tools/GtkLauncher/LauncherInspectorWindow.c
+++ /dev/null
@@ -1,108 +0,0 @@
-/*
- * Copyright (C) 2012 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "LauncherInspectorWindow.h"
-
-struct _LauncherInspectorWindow {
-    GtkWindow parent;
-
-    WebKitWebInspector *inspector;
-    GtkWidget *webView;
-};
-
-struct _LauncherInspectorWindowClass {
-    GtkWindowClass parent;
-};
-
-G_DEFINE_TYPE(LauncherInspectorWindow, launcher_inspector_window, GTK_TYPE_WINDOW)
-
-static void launcherInspectorWindowFinalize(GObject *gObject)
-{
-    LauncherInspectorWindow *inspectorWindow = LAUNCHER_INSPECTOR_WINDOW(gObject);
-    if (inspectorWindow->inspector)
-        g_object_unref(inspectorWindow->inspector);
-
-    G_OBJECT_CLASS(launcher_inspector_window_parent_class)->finalize(gObject);
-}
-
-static void launcher_inspector_window_init(LauncherInspectorWindow *inspectorWindow)
-{
-    gtk_window_set_title(GTK_WINDOW(inspectorWindow), "Web Inspector");
-    gtk_window_set_default_size(GTK_WINDOW(inspectorWindow), 800, 600);
-}
-
-static void launcher_inspector_window_class_init(LauncherInspectorWindowClass *klass)
-{
-    GObjectClass *gobjectClass = G_OBJECT_CLASS(klass);
-    gobjectClass->finalize = launcherInspectorWindowFinalize;
-}
-
-static void inspectedURIChanged(WebKitWebInspector *inspector, GParamSpec *paramSpec, LauncherInspectorWindow *inspectorWindow)
-{
-    gchar *title = g_strdup_printf("Web Inspector - %s", webkit_web_inspector_get_inspected_uri(inspector));
-    gtk_window_set_title(GTK_WINDOW(inspectorWindow), title);
-    g_free(title);
-}
-
-static gboolean showInspectorWindow(WebKitWebInspector *inspector, LauncherInspectorWindow *inspectorWindow)
-{
-    gtk_widget_show(GTK_WIDGET(inspectorWindow));
-    return TRUE;
-}
-
-static gboolean closeInspectorWindow(WebKitWebInspector *inspector, LauncherInspectorWindow *inspectorWindow)
-{
-    gtk_widget_hide(GTK_WIDGET(inspectorWindow));
-    return TRUE;
-}
-
-GtkWidget *launcherInspectorWindowNew(WebKitWebInspector *inspector, GtkWindow *parent)
-{
-    LauncherInspectorWindow *inspectorWindow = LAUNCHER_INSPECTOR_WINDOW(g_object_new(LAUNCHER_TYPE_INSPECTOR_WINDOW, "type", GTK_WINDOW_TOPLEVEL, NULL));
-    inspectorWindow->inspector = g_object_ref(inspector);
-    inspectorWindow->webView = webkit_web_view_new();
-    gtk_window_set_transient_for(GTK_WINDOW(inspectorWindow), parent);
-
-    GtkWidget *scrolledWindow = gtk_scrolled_window_new(NULL, NULL);
-    gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolledWindow), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
-    gtk_container_add(GTK_CONTAINER(scrolledWindow), inspectorWindow->webView);
-    gtk_widget_show(inspectorWindow->webView);
-
-    gtk_container_add(GTK_CONTAINER(inspectorWindow), scrolledWindow);
-    gtk_widget_show(scrolledWindow);
-
-    g_signal_connect(inspector, "notify::inspected-uri", G_CALLBACK(inspectedURIChanged), inspectorWindow);
-    g_signal_connect(inspector, "show-window", G_CALLBACK(showInspectorWindow), inspectorWindow);
-    g_signal_connect(inspector, "close-window", G_CALLBACK(closeInspectorWindow), inspectorWindow);
-
-    return GTK_WIDGET(inspectorWindow);
-}
-
-WebKitWebView *launcherInspectorWindowGetWebView(LauncherInspectorWindow *inspectorWindow)
-{
-    g_return_val_if_fail(LAUNCHER_IS_INSPECTOR_WINDOW(inspectorWindow), 0);
-
-    return WEBKIT_WEB_VIEW(inspectorWindow->webView);
-}
diff --git a/Tools/GtkLauncher/LauncherInspectorWindow.h b/Tools/GtkLauncher/LauncherInspectorWindow.h
deleted file mode 100644
index f7091d2..0000000
--- a/Tools/GtkLauncher/LauncherInspectorWindow.h
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Copyright (C) 2012 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef LauncherInspectorWindow_h
-#define LauncherInspectorWindow_h
-
-#include <gtk/gtk.h>
-#include <webkit/webkit.h>
-
-G_BEGIN_DECLS
-
-#define LAUNCHER_TYPE_INSPECTOR_WINDOW            (launcher_inspector_window_get_type())
-#define LAUNCHER_INSPECTOR_WINDOW(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), LAUNCHER_TYPE_INSPECTOR_WINDOW, LauncherInspectorWindow))
-#define LAUNCHER_IS_INSPECTOR_WINDOW(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj), LAUNCHER_TYPE_INSPECTOR_WINDOW))
-#define LAUNCHER_INSPECTOR_WINDOW_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass),  LAUNCHER_TYPE_INSPECTOR_WINDOW, LauncherInspectorWindowClass))
-#define LAUNCHER_IS_INSPECTOR_WINDOW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),  LAUNCHER_TYPE_INSPECTOR_WINDOW))
-#define LAUNCHER_INSPECTOR_WINDOW_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS((obj),  LAUNCHER_TYPE_INSPECTOR_WINDOW, LauncherInspectorWindowClass))
-
-typedef struct _LauncherInspectorWindow        LauncherInspectorWindow;
-typedef struct _LauncherInspectorWindowClass   LauncherInspectorWindowClass;
-
-GType launcher_inspector_window_get_type(void);
-
-GtkWidget *launcherInspectorWindowNew(WebKitWebInspector *, GtkWindow *parent);
-WebKitWebView *launcherInspectorWindowGetWebView(LauncherInspectorWindow *);
-
-G_END_DECLS
-
-#endif
diff --git a/Tools/GtkLauncher/main.c b/Tools/GtkLauncher/main.c
deleted file mode 100644
index b6c5bae..0000000
--- a/Tools/GtkLauncher/main.c
+++ /dev/null
@@ -1,564 +0,0 @@
-/*
- * Copyright (C) 2006, 2007 Apple Inc.
- * Copyright (C) 2007 Alp Toker <alp@atoker.com>
- * Copyright (C) 2011 Lukasz Slachciak
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "autotoolsconfig.h"
-#include "LauncherInspectorWindow.h"
-#include <errno.h>
-#include <gdk/gdkkeysyms.h>
-#ifdef WTF_USE_GSTREAMER
-#include <gst/gst.h>
-#endif
-#include <gtk/gtk.h>
-#include <stdlib.h>
-#include <string.h>
-#include <webkit/webkit.h>
-
-static gint windowCount = 0;
-
-static GtkWidget* createWindow(WebKitWebView** outWebView);
-
-static void activateUriEntryCb(GtkWidget* entry, gpointer data)
-{
-    WebKitWebView *webView = g_object_get_data(G_OBJECT(entry), "web-view");
-    const gchar* uri = gtk_entry_get_text(GTK_ENTRY(entry));
-    g_assert(uri);
-    gtk_entry_set_icon_from_pixbuf(GTK_ENTRY(entry), GTK_ENTRY_ICON_PRIMARY, 0);
-    webkit_web_view_load_uri(webView, uri);
-}
-
-static void updateTitle(GtkWindow* window, WebKitWebView* webView)
-{
-    GString *string = g_string_new(webkit_web_view_get_title(webView));
-    gdouble loadProgress = webkit_web_view_get_progress(webView) * 100;
-    g_string_append(string, " - WebKit Launcher");
-    if (loadProgress < 100)
-        g_string_append_printf(string, " (%f%%)", loadProgress);
-    gchar *title = g_string_free(string, FALSE);
-    gtk_window_set_title(window, title);
-    g_free(title);
-}
-
-static void linkHoverCb(WebKitWebView* page, const gchar* title, const gchar* link, GtkStatusbar* statusbar)
-{
-    guint statusContextId =
-      GPOINTER_TO_UINT(g_object_get_data(G_OBJECT(statusbar), "link-hover-context"));
-    /* underflow is allowed */
-    gtk_statusbar_pop(statusbar, statusContextId);
-    if (link)
-        gtk_statusbar_push(statusbar, statusContextId, link);
-}
-
-static void notifyTitleCb(WebKitWebView* webView, GParamSpec* pspec, GtkWidget* window)
-{
-    updateTitle(GTK_WINDOW(window), webView);
-}
-
-static void notifyLoadStatusCb(WebKitWebView* webView, GParamSpec* pspec, GtkWidget* uriEntry)
-{
-    if (webkit_web_view_get_load_status(webView) == WEBKIT_LOAD_COMMITTED) {
-        WebKitWebFrame *frame = webkit_web_view_get_main_frame(webView);
-        const gchar *uri = webkit_web_frame_get_uri(frame);
-        if (uri)
-            gtk_entry_set_text(GTK_ENTRY(uriEntry), uri);
-    }
-}
-
-static void notifyProgressCb(WebKitWebView* webView, GParamSpec* pspec, GtkWidget* window)
-{
-    updateTitle(GTK_WINDOW(window), webView);
-}
-
-static void destroyCb(GtkWidget* widget, GtkWidget* window)
-{
-    if (g_atomic_int_dec_and_test(&windowCount))
-      gtk_main_quit();
-}
-
-static void goBackCb(GtkWidget* widget,  WebKitWebView* webView)
-{
-    webkit_web_view_go_back(webView);
-}
-
-static void goForwardCb(GtkWidget* widget, WebKitWebView* webView)
-{
-    webkit_web_view_go_forward(webView);
-}
-
-static void reloadCb(GtkWidget* widget, WebKitWebView* webView)
-{
-    webkit_web_view_reload(webView);
-}
-
-static WebKitWebView*
-createWebViewCb(WebKitWebView* webView, WebKitWebFrame* web_frame, GtkWidget* window)
-{
-    WebKitWebView *newWebView;
-    createWindow(&newWebView);
-    webkit_web_view_set_settings(newWebView, webkit_web_view_get_settings(webView));
-    return newWebView;
-}
-
-static gboolean webViewReadyCb(WebKitWebView* webView, GtkWidget* window)
-{
-    gtk_widget_grab_focus(GTK_WIDGET(webView));
-    gtk_widget_show_all(window);
-    return FALSE;
-}
-
-static gboolean closeWebViewCb(WebKitWebView* webView, GtkWidget* window)
-{
-    gtk_widget_destroy(window);
-    return TRUE;
-}
-
-static gboolean webViewFullscreenMessageWindowClose(GtkWidget *dialog)
-{
-    if (GTK_IS_WIDGET(dialog))
-        gtk_widget_destroy(dialog);
-    return FALSE;
-}
-
-static gboolean webViewWindowStateEvent(GtkWidget *widget, GdkEventWindowState *event, WebKitWebView *webView)
-{
-    if (event->new_window_state & GDK_WINDOW_STATE_FULLSCREEN) {
-        WebKitWebFrame *frame = webkit_web_view_get_main_frame(webView);
-        const gchar *uri = webkit_web_frame_get_uri(frame);
-        GtkWidget *window = gtk_widget_get_toplevel(GTK_WIDGET(webView));
-        if (!gtk_widget_is_toplevel(window) || !GTK_IS_WINDOW(window) || GTK_IS_OFFSCREEN_WINDOW(window))
-            window = 0;
-
-        GtkWidget *dialog = gtk_message_dialog_new(window ? GTK_WINDOW(window) : 0,
-                                                    GTK_DIALOG_MODAL,
-                                                    GTK_MESSAGE_INFO,
-                                                    GTK_BUTTONS_CLOSE,
-                                                    "%s is now full screen. Press ESC or f to exit.", uri);
-        g_signal_connect_swapped(dialog, "response", G_CALLBACK(gtk_widget_destroy), dialog);
-        g_timeout_add(1500, (GSourceFunc) webViewFullscreenMessageWindowClose, dialog);
-        gtk_dialog_run(GTK_DIALOG(dialog));
-    }
-    return TRUE;
-}
-
-static void hideWidget(GtkWidget* widget, gpointer data)
-{
-    if (!GTK_IS_SCROLLED_WINDOW(widget))
-        gtk_widget_hide(widget);
-}
-
-static void showWidget(GtkWidget* widget, gpointer data)
-{
-    if (!GTK_IS_SCROLLED_WINDOW(widget))
-        gtk_widget_show(widget);
-}
-
-static gboolean webViewEnteringFullScreen(WebKitWebView *webView, GObject *element, GtkWidget* vbox)
-{
-    WebKitWebFrame *frame = webkit_web_view_get_main_frame(webView);
-    const gchar *uri = webkit_web_frame_get_uri(frame);
-    GtkWidget *window = gtk_widget_get_toplevel(GTK_WIDGET(webView));
-    if (!gtk_widget_is_toplevel(window) || !GTK_IS_WINDOW(window) || GTK_IS_OFFSCREEN_WINDOW(window))
-        window = 0;
-
-    GtkWidget *dialog = gtk_message_dialog_new(window ? GTK_WINDOW(window) : 0,
-                                               GTK_DIALOG_MODAL,
-                                               GTK_MESSAGE_INFO,
-                                               GTK_BUTTONS_YES_NO,
-                                               "Allow full screen display of %s ?", uri);
-    gint result = gtk_dialog_run(GTK_DIALOG(dialog));
-    if (result == GTK_RESPONSE_YES) {
-        gtk_container_foreach(GTK_CONTAINER(vbox), (GtkCallback) hideWidget, NULL);
-        gtk_widget_destroy(GTK_WIDGET(dialog));
-        return FALSE;
-    }
-    gtk_widget_destroy(GTK_WIDGET(dialog));
-    return TRUE;
-}
-
-static gboolean webViewLeavingFullScreen(WebKitWebView *webView, GObject *element, GtkWidget* vbox)
-{
-    GtkWidget *window = gtk_widget_get_toplevel(GTK_WIDGET(webView));
-    if (gtk_widget_is_toplevel(window) && GTK_IS_WINDOW(window) && !GTK_IS_OFFSCREEN_WINDOW(window))
-        g_signal_handlers_disconnect_by_func(window, G_CALLBACK(webViewWindowStateEvent), webView);
-    gtk_container_foreach(GTK_CONTAINER(vbox), (GtkCallback) showWidget, NULL);
-    return FALSE;
-}
-
-static void iconLoadedCb(WebKitWebView* webView, const char* iconURI, GtkWidget* uriEntry)
-{
-    GdkPixbuf *icon = webkit_web_view_try_get_favicon_pixbuf(webView, 16, 16);
-    if (!icon)
-        return;
-
-    gtk_entry_set_icon_from_pixbuf(GTK_ENTRY(uriEntry), GTK_ENTRY_ICON_PRIMARY, icon);
-    g_object_unref(icon);
-}
-
-static GtkWidget *inspectorInspectWebViewCb(WebKitWebInspector *inspector, WebKitWebView *webView, GtkWindow* window)
-{
-    GtkWidget *inspectorWindow = launcherInspectorWindowNew(inspector, window);
-    return GTK_WIDGET(launcherInspectorWindowGetWebView(LAUNCHER_INSPECTOR_WINDOW(inspectorWindow)));
-}
-
-static GtkWidget* createBrowser(GtkWidget* window, GtkWidget* uriEntry, GtkWidget* statusbar, WebKitWebView* webView, GtkWidget* vbox)
-{
-    char *iconDatabasePath;
-    GtkWidget *scrolledWindow = gtk_scrolled_window_new(NULL, NULL);
-    gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolledWindow), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
-
-    gtk_container_add(GTK_CONTAINER(scrolledWindow), GTK_WIDGET(webView));
-
-    iconDatabasePath = g_build_filename(g_get_user_data_dir(), "webkit", "icondatabase", NULL);
-    webkit_favicon_database_set_path(webkit_get_favicon_database(), iconDatabasePath);
-    g_free(iconDatabasePath);
-
-    g_signal_connect(webView, "notify::title", G_CALLBACK(notifyTitleCb), window);
-    g_signal_connect(webView, "notify::load-status", G_CALLBACK(notifyLoadStatusCb), uriEntry);
-    g_signal_connect(webView, "notify::progress", G_CALLBACK(notifyProgressCb), window);
-    g_signal_connect(webView, "icon-loaded", G_CALLBACK(iconLoadedCb), uriEntry);
-    g_signal_connect(webView, "hovering-over-link", G_CALLBACK(linkHoverCb), statusbar);
-    g_signal_connect(webView, "create-web-view", G_CALLBACK(createWebViewCb), window);
-    g_signal_connect(webView, "web-view-ready", G_CALLBACK(webViewReadyCb), window);
-    g_signal_connect(webView, "close-web-view", G_CALLBACK(closeWebViewCb), window);
-    g_signal_connect(webView, "entering-fullscreen", G_CALLBACK(webViewEnteringFullScreen), vbox);
-    g_signal_connect(webView, "leaving-fullscreen", G_CALLBACK(webViewLeavingFullScreen), vbox);
-    g_signal_connect(webkit_web_view_get_inspector(webView), "inspect-web-view", G_CALLBACK(inspectorInspectWebViewCb), window);
-
-    return scrolledWindow;
-}
-
-static GtkWidget* createStatusbar()
-{
-    GtkStatusbar *statusbar = GTK_STATUSBAR(gtk_statusbar_new());
-    guint statusContextId = gtk_statusbar_get_context_id(statusbar, "Link Hover");
-    g_object_set_data(G_OBJECT(statusbar), "link-hover-context",
-        GUINT_TO_POINTER(statusContextId));
-
-    return GTK_WIDGET(statusbar);
-}
-
-static GtkWidget* createToolbar(GtkWidget* window, GtkWidget* uriEntry, WebKitWebView* webView)
-{
-    GtkWidget *toolbar = gtk_toolbar_new();
-
-#if GTK_CHECK_VERSION(2, 15, 0)
-    gtk_orientable_set_orientation(GTK_ORIENTABLE(toolbar), GTK_ORIENTATION_HORIZONTAL);
-#else
-    gtk_toolbar_set_orientation(GTK_TOOLBAR(toolbar), GTK_ORIENTATION_HORIZONTAL);
-#endif
-    gtk_toolbar_set_style(GTK_TOOLBAR(toolbar), GTK_TOOLBAR_BOTH_HORIZ);
-
-    GtkToolItem *item;
-
-    /* Keyboard accelerators */
-    GtkAccelGroup *accelGroup = gtk_accel_group_new();
-    gtk_window_add_accel_group(GTK_WINDOW(window), accelGroup);
-
-    /* the back button */
-    item = gtk_tool_button_new_from_stock(GTK_STOCK_GO_BACK);
-    g_signal_connect(G_OBJECT(item), "clicked", G_CALLBACK(goBackCb), webView);
-    gtk_toolbar_insert(GTK_TOOLBAR(toolbar), item, -1);
-
-    /* The forward button */
-    item = gtk_tool_button_new_from_stock(GTK_STOCK_GO_FORWARD);
-    g_signal_connect(G_OBJECT(item), "clicked", G_CALLBACK(goForwardCb), webView);
-    gtk_toolbar_insert(GTK_TOOLBAR(toolbar), item, -1);
-
-    /* The reload button */
-    item = gtk_tool_button_new_from_stock(GTK_STOCK_REFRESH);
-    g_signal_connect(G_OBJECT(item), "clicked", G_CALLBACK(reloadCb), webView);
-    gtk_toolbar_insert(GTK_TOOLBAR(toolbar), item, -1);
-    gtk_widget_add_accelerator(GTK_WIDGET(item), "clicked", accelGroup, GDK_KEY_F5, 0, GTK_ACCEL_VISIBLE);
-
-    /* The URL entry */
-    item = gtk_tool_item_new();
-    gtk_tool_item_set_expand(item, TRUE);
-    gtk_container_add(GTK_CONTAINER(item), uriEntry);
-    g_signal_connect(G_OBJECT(uriEntry), "activate", G_CALLBACK(activateUriEntryCb), NULL);
-    gtk_toolbar_insert(GTK_TOOLBAR(toolbar), item, -1);
-
-    /* The go button */
-    g_object_set_data(G_OBJECT(uriEntry), "web-view", webView);
-    item = gtk_tool_button_new_from_stock(GTK_STOCK_OK);
-    g_signal_connect_swapped(G_OBJECT(item), "clicked", G_CALLBACK(activateUriEntryCb), (gpointer)uriEntry);
-    gtk_toolbar_insert(GTK_TOOLBAR(toolbar), item, -1);
-
-    return toolbar;
-}
-
-static GtkWidget* createWindow(WebKitWebView** outWebView)
-{
-    WebKitWebView *webView;
-    GtkWidget *vbox;
-    GtkWidget *window;
-    GtkWidget *uriEntry;
-    GtkWidget *statusbar;
-
-    g_atomic_int_inc(&windowCount);
-
-    window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
-    gtk_window_set_default_size(GTK_WINDOW(window), 800, 600);
-    gtk_widget_set_name(window, "GtkLauncher");
-
-    webView = WEBKIT_WEB_VIEW(webkit_web_view_new());
-    uriEntry = gtk_entry_new();
-
-#ifdef GTK_API_VERSION_2
-    vbox = gtk_vbox_new(FALSE, 0);
-#else
-    vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
-#endif
-    statusbar = createStatusbar(webView);
-    gtk_box_pack_start(GTK_BOX(vbox), createToolbar(window, uriEntry, webView), FALSE, FALSE, 0);
-    gtk_box_pack_start(GTK_BOX(vbox), createBrowser(window, uriEntry, statusbar, webView, vbox), TRUE, TRUE, 0);
-    gtk_box_pack_start(GTK_BOX(vbox), statusbar, FALSE, FALSE, 0);
-
-    gtk_container_add(GTK_CONTAINER(window), vbox);
-
-    g_signal_connect(window, "destroy", G_CALLBACK(destroyCb), NULL);
-
-    if (outWebView)
-        *outWebView = webView;
-
-    return window;
-}
-
-static gchar* filenameToURL(const char* filename)
-{
-    if (!g_file_test(filename, G_FILE_TEST_EXISTS))
-        return NULL;
-
-    GFile *gfile = g_file_new_for_path(filename);
-    gchar *fileURL = g_file_get_uri(gfile);
-    g_object_unref(gfile);
-
-    return fileURL;
-}
-
-static gboolean parseOptionEntryCallback(const gchar *optionNameFull, const gchar *value, WebKitWebSettings *webSettings, GError **error)
-{
-    if (strlen(optionNameFull) <= 2) {
-        g_set_error(error, G_OPTION_ERROR, G_OPTION_ERROR_FAILED, "Invalid option %s", optionNameFull);
-        return FALSE;
-    }
-
-    /* We have two -- in option name so remove them. */
-    const gchar *optionName = optionNameFull + 2;
-    GParamSpec *spec = g_object_class_find_property(G_OBJECT_GET_CLASS(webSettings), optionName);
-    if (!spec) {
-        g_set_error(error, G_OPTION_ERROR, G_OPTION_ERROR_FAILED, "Cannot find web settings for option %s", optionNameFull);
-        return FALSE;
-    }
-
-    switch (G_PARAM_SPEC_VALUE_TYPE(spec)) {
-    case G_TYPE_BOOLEAN: {
-        gboolean propertyValue = TRUE;
-        if (value && g_ascii_strcasecmp(value, "true") && strcmp(value, "1"))
-            propertyValue = FALSE;
-        g_object_set(G_OBJECT(webSettings), optionName, propertyValue, NULL);
-        break;
-    }
-    case G_TYPE_STRING:
-        g_object_set(G_OBJECT(webSettings), optionName, value, NULL);
-        break;
-    case G_TYPE_INT: {
-        glong propertyValue;
-        gchar *end;
-
-        errno = 0;
-        propertyValue = g_ascii_strtoll(value, &end, 0);
-        if (errno == ERANGE || propertyValue > G_MAXINT || propertyValue < G_MININT) {
-            g_set_error(error, G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE, "Integer value '%s' for %s out of range", value, optionNameFull);
-            return FALSE;
-        }
-        if (errno || value == end) {
-            g_set_error(error, G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE, "Cannot parse integer value '%s' for %s", value, optionNameFull);
-            return FALSE;
-        }
-        g_object_set(G_OBJECT(webSettings), optionName, propertyValue, NULL);
-        break;
-    }
-    case G_TYPE_FLOAT: {
-        gdouble propertyValue;
-        gchar *end;
-
-        errno = 0;
-        propertyValue = g_ascii_strtod(value, &end);
-        if (errno == ERANGE || propertyValue > G_MAXFLOAT || propertyValue < G_MINFLOAT) {
-            g_set_error(error, G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE, "Float value '%s' for %s out of range", value, optionNameFull);
-            return FALSE;
-        }
-        if (errno || value == end) {
-            g_set_error(error, G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE, "Cannot parse float value '%s' for %s", value, optionNameFull);
-            return FALSE;
-        }
-        g_object_set(G_OBJECT(webSettings), optionName, propertyValue, NULL);
-        break;
-    }
-    default:
-        g_assert_not_reached();
-    }
-
-    return TRUE;
-}
-
-static gboolean isValidParameterType(GType gParamType)
-{
-    return (gParamType == G_TYPE_BOOLEAN || gParamType == G_TYPE_STRING || gParamType == G_TYPE_INT
-            || gParamType == G_TYPE_FLOAT);
-}
-
-static GOptionEntry* getOptionEntriesFromWebKitWebSettings(WebKitWebSettings *webSettings)
-{
-    GParamSpec **propertySpecs;
-    GOptionEntry *optionEntries;
-    guint numProperties, numEntries, i;
-
-    propertySpecs = g_object_class_list_properties(G_OBJECT_GET_CLASS(webSettings), &numProperties);
-    if (!propertySpecs)
-        return NULL;
-
-    optionEntries = g_new0(GOptionEntry, numProperties + 1);
-    numEntries = 0;
-    for (i = 0; i < numProperties; i++) {
-        GParamSpec *param = propertySpecs[i];
-
-        /* Fill in structures only for writable and not construct-only properties. */
-        if (!param || !(param->flags & G_PARAM_WRITABLE) || (param->flags & G_PARAM_CONSTRUCT_ONLY))
-            continue;
-
-        GType gParamType = G_PARAM_SPEC_VALUE_TYPE(param);
-        if (!isValidParameterType(gParamType))
-            continue;
-
-        GOptionEntry *optionEntry = &optionEntries[numEntries++];
-        optionEntry->long_name = g_param_spec_get_name(param);
-
-        /* There is no easy way to figure our short name for generated option entries.
-           optionEntry.short_name=*/
-        /* For bool arguments "enable" type make option argument not required. */
-        if (gParamType == G_TYPE_BOOLEAN && (strstr(optionEntry->long_name, "enable")))
-            optionEntry->flags = G_OPTION_FLAG_OPTIONAL_ARG;
-        optionEntry->arg = G_OPTION_ARG_CALLBACK;
-        optionEntry->arg_data = parseOptionEntryCallback;
-        optionEntry->description = g_param_spec_get_blurb(param);
-        optionEntry->arg_description = g_type_name(gParamType);
-    }
-    g_free(propertySpecs);
-
-    return optionEntries;
-}
-
-static gboolean addWebSettingsGroupToContext(GOptionContext *context, WebKitWebSettings* webkitSettings)
-{
-    GOptionEntry *optionEntries = getOptionEntriesFromWebKitWebSettings(webkitSettings);
-    if (!optionEntries)
-        return FALSE;
-
-    GOptionGroup *webSettingsGroup = g_option_group_new("websettings",
-                                                        "WebKitWebSettings writable properties for default WebKitWebView",
-                                                        "WebKitWebSettings properties",
-                                                        webkitSettings,
-                                                        NULL);
-    g_option_group_add_entries(webSettingsGroup, optionEntries);
-    g_free(optionEntries);
-
-    /* Option context takes ownership of the group. */
-    g_option_context_add_group(context, webSettingsGroup);
-
-    return TRUE;
-}
-
-int main(int argc, char* argv[])
-{
-    WebKitWebSettings *webkitSettings = 0;
-    const gchar **uriArguments = 0;
-    const GOptionEntry commandLineOptions[] =
-    {
-        { G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &uriArguments, 0, "[URL]" },
-        { 0, 0, 0, 0, 0, 0, 0 }
-    };
-
-    gtk_init(&argc, &argv);
-
-    GOptionContext *context = g_option_context_new(0);
-    g_option_context_add_main_entries(context, commandLineOptions, 0);
-    g_option_context_add_group(context, gtk_get_option_group(TRUE));
-#ifdef WTF_USE_GSTREAMER
-    g_option_context_add_group(context, gst_init_get_option_group());
-#endif
-    webkitSettings = webkit_web_settings_new();
-    g_object_set(webkitSettings, "enable-developer-extras", TRUE, NULL);
-    if (!addWebSettingsGroupToContext(context, webkitSettings)) {
-        g_object_unref(webkitSettings);
-        webkitSettings = 0;
-    }
-
-    GError *error = 0;
-    if (!g_option_context_parse(context, &argc, &argv, &error)) {
-        g_printerr("Cannot parse arguments: %s\n", error->message);
-        g_error_free(error);
-        g_option_context_free(context);
-
-        return 1;
-    }
-    g_option_context_free(context);
-
-#ifdef SOUP_TYPE_PROXY_RESOLVER_DEFAULT
-    soup_session_add_feature_by_type(webkit_get_default_session(), SOUP_TYPE_PROXY_RESOLVER_DEFAULT);
-#else
-    const char *httpProxy = g_getenv("http_proxy");
-    if (httpProxy) {
-        SoupURI *proxyUri = soup_uri_new(httpProxy);
-        g_object_set(webkit_get_default_session(), SOUP_SESSION_PROXY_URI, proxyUri, NULL);
-        soup_uri_free(proxyUri);
-    }
-#endif
-
-#ifdef WEBKIT_EXEC_PATH
-    g_setenv("WEBKIT_INSPECTOR_PATH", WEBKIT_EXEC_PATH "resources/inspector", FALSE);
-#endif /* WEBKIT_EXEC_PATH */
-
-    WebKitWebView *webView;
-    GtkWidget *main_window = createWindow(&webView);
-
-    if (webkitSettings) {
-        webkit_web_view_set_settings(WEBKIT_WEB_VIEW(webView), webkitSettings);
-        g_object_unref(webkitSettings);
-    }
-
-    const gchar *uri = (uriArguments ? uriArguments[0] : "http://www.google.com/");
-    gchar *fileURL = filenameToURL(uri);
-
-    webkit_web_view_load_uri(webView, fileURL ? fileURL : uri);
-    g_free(fileURL);
-
-    gtk_widget_grab_focus(GTK_WIDGET(webView));
-    gtk_widget_show_all(main_window);
-    gtk_main();
-
-    return 0;
-}
diff --git a/Tools/GtkLauncher/simple.svg b/Tools/GtkLauncher/simple.svg
deleted file mode 100644
index 30b13ac..0000000
--- a/Tools/GtkLauncher/simple.svg
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
-"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
-<svg width="5cm" height="4cm"
-xmlns="http://www.w3.org/2000/svg">
-<desc>Four separate rectangles
-</desc>
-<rect x="0.5cm" y="0.5cm" width="2cm" height="1cm"/>
-<rect x="0.5cm" y="2cm" width="1cm" height="1.5cm"/>
-<rect x="3cm" y="0.5cm" width="1.5cm" height="2cm"/>
-<rect x="3.5cm" y="3cm" width="1cm" height="0.5cm"/>
-<!-- Show outline of canvas using 'rect' element -->
-<rect x=".01cm" y=".01cm" width="4.98cm" height="3.98cm"
-fill="none" stroke="blue" stroke-width=".02cm" />
-</svg>
diff --git a/Tools/GtkLauncher/text.html b/Tools/GtkLauncher/text.html
deleted file mode 100644
index 607df72..0000000
--- a/Tools/GtkLauncher/text.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<html>
-<head>
-<title>Hello World</title> 
-<body bgcolor=#00ffff text=#000000> 
-<p>
-Hello world
-</p>
-</body>
-</html> 
diff --git a/Tools/ImageDiff/CMakeLists.txt b/Tools/ImageDiff/CMakeLists.txt
deleted file mode 100644
index f23c3c733..0000000
--- a/Tools/ImageDiff/CMakeLists.txt
+++ /dev/null
@@ -1,17 +0,0 @@
-set(IMAGE_DIFF_DIR "${TOOLS_DIR}/ImageDiff")
-
-set(IMAGE_DIFF_INCLUDE_DIRECTORIES
-    ${CMAKE_BINARY_DIR}
-    ${WTF_DIR}
-)
-
-set(IMAGE_DIFF_LIBRARIES
-    ${WTF_LIBRARY_NAME}
-)
-
-INCLUDE_IF_EXISTS(${IMAGE_DIFF_DIR}/Platform${PORT}.cmake)
-
-include_directories(${IMAGE_DIFF_INCLUDE_DIRECTORIES})
-add_executable(ImageDiff ${IMAGE_DIFF_SOURCES})
-target_link_libraries(ImageDiff ${IMAGE_DIFF_LIBRARIES})
-set_target_properties(ImageDiff PROPERTIES FOLDER "Tools")
diff --git a/Tools/ImageDiff/ImageDiff.pro b/Tools/ImageDiff/ImageDiff.pro
deleted file mode 100644
index f3e8a49..0000000
--- a/Tools/ImageDiff/ImageDiff.pro
+++ /dev/null
@@ -1,14 +0,0 @@
-# -------------------------------------------------------------------
-# Project file for the ImageDiff binary
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-TEMPLATE = app
-
-TARGET = ImageDiff
-DESTDIR = $$ROOT_BUILD_DIR/bin
-
-QT = core gui widgets
-
-SOURCES = qt/ImageDiff.cpp
diff --git a/Tools/ImageDiff/PlatformEfl.cmake b/Tools/ImageDiff/PlatformEfl.cmake
deleted file mode 100644
index 68b4444..0000000
--- a/Tools/ImageDiff/PlatformEfl.cmake
+++ /dev/null
@@ -1,19 +0,0 @@
-set(IMAGE_DIFF_SOURCES
-    ${IMAGE_DIFF_DIR}/efl/ImageDiff.cpp
-)
-
-list(APPEND IMAGE_DIFF_INCLUDE_DIRECTORIES
-    ${ECORE_EVAS_INCLUDE_DIRS}
-    ${ECORE_INCLUDE_DIRS}
-    ${EINA_INCLUDE_DIRS}
-    ${EO_INCLUDE_DIRS}
-    ${EVAS_INCLUDE_DIRS}
-)
-
-list(APPEND IMAGE_DIFF_LIBRARIES
-    ${ECORE_EVAS_LIBRARIES}
-    ${ECORE_LIBRARIES}
-    ${EINA_LIBRARIES}
-    ${EO_LIBRARIES}
-    ${EVAS_LIBRARIES}
-)
diff --git a/Tools/MIDLWrapper/MIDLWrapper.cpp b/Tools/MIDLWrapper/MIDLWrapper.cpp
deleted file mode 100644
index 8cb077a..0000000
--- a/Tools/MIDLWrapper/MIDLWrapper.cpp
+++ /dev/null
@@ -1,86 +0,0 @@
-// MIDLWrapper.cpp : Just calls the built-in midl.exe with the given arguments.
-
-#define WIN32_LEAN_AND_MEAN    // Exclude rarely-used stuff from Windows headers
-#include <process.h>
-#include <stdio.h>
-#include <string>
-#include <windows.h>
-
-using namespace std;
-
-int wmain(int argc, wchar_t* argv[], wchar_t* envp[])
-{
-#ifndef NDEBUG
-    fwprintf(stderr, L"######### im in ur IDE, compiling ur c0des ########\n");
-#endif
-
-    int pathIndex = -1;
-    for (int i = 0; envp[i]; ++i)
-        if (!wcsncmp(envp[i], L"PATH=", 5)) {
-            pathIndex = i;
-            break;
-        }
-
-    if (pathIndex == -1) {
-        fwprintf(stderr, L"Couldn't find PATH environment variable!\n");
-        return -1;
-    }
-
-    wchar_t* vcbin = wcsstr(envp[pathIndex], L"Tools\\vcbin");
-    if (!vcbin) {
-        fwprintf(stderr, L"Couldn't find Tools\\vcbin in PATH!\n");
-        return -1;
-    }
-
-    wchar_t saved = *vcbin;
-    *vcbin = 0;
-    
-    wchar_t* afterLeadingSemiColon = wcsrchr(envp[pathIndex], ';');
-    if (!afterLeadingSemiColon)
-        afterLeadingSemiColon = envp[pathIndex] + 5; // +5 for the length of "PATH="
-    else
-        afterLeadingSemiColon++;
-
-    *vcbin = saved;
-
-    size_t pathLength = wcslen(envp[pathIndex]);
-
-    wchar_t* trailingSemiColon = wcschr(vcbin, ';');
-    if (!trailingSemiColon)
-        trailingSemiColon = envp[pathIndex] + pathLength;
-
-    int vcbinLength = trailingSemiColon - afterLeadingSemiColon;
-
-    size_t newPathLength = pathLength - vcbinLength;
-
-    wchar_t* newPath = new wchar_t[newPathLength + 1];
-
-    // Copy everything before the vcbin path...
-    wchar_t* d = newPath;
-    wchar_t* s = envp[pathIndex];
-    while (s < afterLeadingSemiColon)
-        *d++ = *s++;
-
-    // Copy everything after the vcbin path...
-    s = trailingSemiColon;
-    while (*d++ = *s++);
-
-    envp[pathIndex] = newPath;
-
-#ifndef NDEBUG
-    fwprintf(stderr, L"New path: %s\n", envp[pathIndex]);
-#endif
-
-    wchar_t** newArgv = new wchar_t*[argc + 1];
-    for (int i = 0; i < argc; ++i) {
-        size_t length = wcslen(argv[i]);
-        newArgv[i] = new wchar_t[length + 3];
-        *newArgv[i] = '\"';
-        wcscpy_s(newArgv[i] + 1, length + 2, argv[i]);
-        *(newArgv[i] + 1 + length) = '\"';
-        *(newArgv[i] + 2 + length) = 0;
-    }
-    newArgv[argc] = 0;
-
-    return _wspawnvpe(_P_WAIT, L"midl", newArgv, envp);
-}
diff --git a/Tools/MIDLWrapper/MIDLWrapper.sln b/Tools/MIDLWrapper/MIDLWrapper.sln
deleted file mode 100644
index e0eb2e9..0000000
--- a/Tools/MIDLWrapper/MIDLWrapper.sln
+++ /dev/null
@@ -1,20 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 9.00
-# Visual Studio 2005
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MIDLWrapper", "MIDLWrapper.vcproj", "{CBE6BA0B-1A76-4936-BF54-7EB84E1B0F21}"
-EndProject
-Global
-	GlobalSection(SolutionConfigurationPlatforms) = preSolution
-		Debug|Win32 = Debug|Win32
-		Release|Win32 = Release|Win32
-	EndGlobalSection
-	GlobalSection(ProjectConfigurationPlatforms) = postSolution
-		{CBE6BA0B-1A76-4936-BF54-7EB84E1B0F21}.Debug|Win32.ActiveCfg = Debug|Win32
-		{CBE6BA0B-1A76-4936-BF54-7EB84E1B0F21}.Debug|Win32.Build.0 = Debug|Win32
-		{CBE6BA0B-1A76-4936-BF54-7EB84E1B0F21}.Release|Win32.ActiveCfg = Release|Win32
-		{CBE6BA0B-1A76-4936-BF54-7EB84E1B0F21}.Release|Win32.Build.0 = Release|Win32
-	EndGlobalSection
-	GlobalSection(SolutionProperties) = preSolution
-		HideSolutionNode = FALSE
-	EndGlobalSection
-EndGlobal
diff --git a/Tools/MIDLWrapper/MIDLWrapper.vcproj b/Tools/MIDLWrapper/MIDLWrapper.vcproj
deleted file mode 100644
index 598f9ec..0000000
--- a/Tools/MIDLWrapper/MIDLWrapper.vcproj
+++ /dev/null
@@ -1,201 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="MIDLWrapper"
-	ProjectGUID="{CBE6BA0B-1A76-4936-BF54-7EB84E1B0F21}"
-	RootNamespace="MIDLWrapper"
-	Keyword="Win32Proj"
-	>
-	<Platforms>
-		<Platform
-			Name="Win32"
-		/>
-	</Platforms>
-	<ToolFiles>
-	</ToolFiles>
-	<Configurations>
-		<Configuration
-			Name="Debug|Win32"
-			OutputDirectory="..\vcbin"
-			IntermediateDirectory="$(ConfigurationName)"
-			ConfigurationType="1"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				Optimization="0"
-				PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
-				MinimalRebuild="true"
-				BasicRuntimeChecks="3"
-				RuntimeLibrary="3"
-				UsePrecompiledHeader="0"
-				WarningLevel="3"
-				Detect64BitPortabilityProblems="true"
-				DebugInformationFormat="4"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/SAFESEH"
-				OutputFile="$(OutDir)\midl.exe"
-				LinkIncremental="2"
-				GenerateDebugInformation="true"
-				SubSystem="1"
-				TargetMachine="1"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release|Win32"
-			OutputDirectory="..\vcbin"
-			IntermediateDirectory="$(ConfigurationName)"
-			ConfigurationType="1"
-			CharacterSet="1"
-			WholeProgramOptimization="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
-				RuntimeLibrary="2"
-				UsePrecompiledHeader="0"
-				WarningLevel="3"
-				Detect64BitPortabilityProblems="true"
-				DebugInformationFormat="3"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/SAFESEH"
-				OutputFile="$(OutDir)\midl.exe"
-				LinkIncremental="1"
-				GenerateDebugInformation="true"
-				SubSystem="1"
-				OptimizeReferences="2"
-				EnableCOMDATFolding="2"
-				TargetMachine="1"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-	</Configurations>
-	<References>
-	</References>
-	<Files>
-		<Filter
-			Name="Source Files"
-			Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
-			UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
-			>
-			<File
-				RelativePath=".\MIDLWrapper.cpp"
-				>
-			</File>
-		</Filter>
-		<Filter
-			Name="Header Files"
-			Filter="h;hpp;hxx;hm;inl;inc;xsd"
-			UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
-			>
-		</Filter>
-		<Filter
-			Name="Resource Files"
-			Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
-			UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
-			>
-		</Filter>
-	</Files>
-	<Globals>
-	</Globals>
-</VisualStudioProject>
diff --git a/Tools/Makefile b/Tools/Makefile
deleted file mode 100644
index 57f8b74..0000000
--- a/Tools/Makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-MODULES = DumpRenderTree WebKitTestRunner MiniBrowser ../Source/ThirdParty/gtest/xcode TestWebKitAPI
-
-ifneq (,$(findstring iphoneos,$(SDKROOT)))
-	MODULES = ../Source/ThirdParty/gtest/xcode TestWebKitAPI
-else ifneq (,$(findstring iphonesimulator,$(SDKROOT)))
-	MODULES = DumpRenderTree ../Source/ThirdParty/gtest/xcode TestWebKitAPI
-endif
-
-all:
-	@for dir in $(MODULES); do ${MAKE} $@ -C $$dir; exit_status=$$?; \
-	if [ $$exit_status -ne 0 ]; then exit $$exit_status; fi; done
-
-debug d development dev develop:
-	@for dir in $(MODULES); do ${MAKE} $@ -C $$dir; exit_status=$$?; \
-	if [ $$exit_status -ne 0 ]; then exit $$exit_status; fi; done
-
-release r deployment dep deploy:
-	@for dir in $(MODULES); do ${MAKE} $@ -C $$dir; exit_status=$$?; \
-	if [ $$exit_status -ne 0 ]; then exit $$exit_status; fi; done
-
-clean:
-	@for dir in $(MODULES); do ${MAKE} $@ -C $$dir; exit_status=$$?; \
-	if [ $$exit_status -ne 0 ]; then exit $$exit_status; fi; done
diff --git a/Tools/MiniBrowser/Configurations/Base.xcconfig b/Tools/MiniBrowser/Configurations/Base.xcconfig
deleted file mode 100644
index c801d58..0000000
--- a/Tools/MiniBrowser/Configurations/Base.xcconfig
+++ /dev/null
@@ -1,49 +0,0 @@
-// Copyright (C) 2010 Apple Inc. All rights reserved.
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions
-// are met:
-// 1. Redistributions of source code must retain the above copyright
-//    notice, this list of conditions and the following disclaimer.
-// 2. Redistributions in binary form must reproduce the above copyright
-//    notice, this list of conditions and the following disclaimer in the
-//    documentation and/or other materials provided with the distribution.
-//
-// THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
-// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-// PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
-// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-
-CLANG_CXX_LANGUAGE_STANDARD = gnu++0x;
-CLANG_CXX_LIBRARY = libc++;
-DEBUG_INFORMATION_FORMAT = dwarf-with-dsym;
-PREBINDING = NO
-GCC_C_LANGUAGE_STANDARD = gnu99
-GCC_ENABLE_CPP_EXCEPTIONS = NO;
-GCC_PRECOMPILE_PREFIX_HEADER = YES
-GCC_TREAT_WARNINGS_AS_ERRORS = YES
-GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
-GCC_WARN_UNUSED_FUNCTION = YES
-GCC_WARN_UNUSED_VARIABLE = YES
-GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO
-WARNING_CFLAGS = -Wall -W -Wno-unused-parameter
-LINKER_DISPLAYS_MANGLED_NAMES = YES;
-VALID_ARCHS = i386 x86_64;
-
-TARGET_MAC_OS_X_VERSION_MAJOR = $(MAC_OS_X_VERSION_MAJOR);
-
-TARGETING_SAME_OS_X_VERSION = $(TARGETING_SAME_OS_X_VERSION_$(MAC_OS_X_VERSION_MAJOR)_$(TARGET_MAC_OS_X_VERSION_MAJOR));
-TARGETING_SAME_OS_X_VERSION_1070_1070 = YES;
-TARGETING_SAME_OS_X_VERSION_1080_1080 = YES;
-TARGETING_SAME_OS_X_VERSION_1090_1090 = YES;
-
-// Don't build against an SDK unless we're targeting an older OS version.
-SDKROOT = $(SDKROOT_TARGETING_SAME_OS_X_VERSION_$(TARGETING_SAME_OS_X_VERSION));
-SDKROOT_TARGETING_SAME_OS_X_VERSION_ = macosx;
diff --git a/Tools/MiniBrowser/Configurations/DebugRelease.xcconfig b/Tools/MiniBrowser/Configurations/DebugRelease.xcconfig
deleted file mode 100644
index 084cdf9..0000000
--- a/Tools/MiniBrowser/Configurations/DebugRelease.xcconfig
+++ /dev/null
@@ -1,33 +0,0 @@
-// Copyright (C) 2010 Apple Inc. All rights reserved.
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions
-// are met:
-// 1. Redistributions of source code must retain the above copyright
-//    notice, this list of conditions and the following disclaimer.
-// 2. Redistributions in binary form must reproduce the above copyright
-//    notice, this list of conditions and the following disclaimer in the
-//    documentation and/or other materials provided with the distribution.
-//
-// THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
-// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-// PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
-// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-
-#include "Base.xcconfig"
-
-ARCHS = $(ARCHS_STANDARD_32_64_BIT);
-
-ONLY_ACTIVE_ARCH = YES;
-
-MACOSX_DEPLOYMENT_TARGET = $(MACOSX_DEPLOYMENT_TARGET_$(TARGET_MAC_OS_X_VERSION_MAJOR))
-MACOSX_DEPLOYMENT_TARGET_1070 = 10.7;
-MACOSX_DEPLOYMENT_TARGET_1080 = 10.8;
-MACOSX_DEPLOYMENT_TARGET_1090 = 10.9;
diff --git a/Tools/MiniBrowser/Configurations/MiniBrowser.xcconfig b/Tools/MiniBrowser/Configurations/MiniBrowser.xcconfig
deleted file mode 100644
index cf5ad84..0000000
--- a/Tools/MiniBrowser/Configurations/MiniBrowser.xcconfig
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright (C) 2010 Apple Inc. All rights reserved.
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions
-// are met:
-// 1. Redistributions of source code must retain the above copyright
-//    notice, this list of conditions and the following disclaimer.
-// 2. Redistributions in binary form must reproduce the above copyright
-//    notice, this list of conditions and the following disclaimer in the
-//    documentation and/or other materials provided with the distribution.
-//
-// THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
-// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-// PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
-// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-
-PRODUCT_NAME = MiniBrowser
-GCC_PREFIX_HEADER = mac/MiniBrowser_Prefix.pch
-INFOPLIST_FILE = mac/Info.plist
diff --git a/Tools/MiniBrowser/Configurations/MiniBrowserCFLite.vsprops b/Tools/MiniBrowser/Configurations/MiniBrowserCFLite.vsprops
deleted file mode 100644
index be2d869..0000000
--- a/Tools/MiniBrowser/Configurations/MiniBrowserCFLite.vsprops
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="MiniBrowserCFLite"
-	>
-	<Tool
-		Name="VCLinkerTool"
-		AdditionalDependencies="shlwapi.lib WebKit$(WebKitDLLConfigSuffix).lib CFLite$(LibraryConfigSuffix).lib"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/MiniBrowser/Configurations/MiniBrowserCommon.vsprops b/Tools/MiniBrowser/Configurations/MiniBrowserCommon.vsprops
deleted file mode 100644
index c86035d..0000000
--- a/Tools/MiniBrowser/Configurations/MiniBrowserCommon.vsprops
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="MiniBrowserCommon"
-	>
-	<Tool
-		Name="VCCLCompilerTool"
-		AdditionalIncludeDirectories="&quot;$(ConfigurationBuildDir)\Include&quot;;&quot;$(WebKitLibrariesDir)\Include&quot;"
-		UsePrecompiledHeader="2"
-	/>
-	<Tool
-		Name="VCLinkerTool"
-		OutputFile="$(OutDir)\$(ProjectName)$(WebKitConfigSuffix).dll"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/MiniBrowser/Configurations/MiniBrowserCoreFoundation.vsprops b/Tools/MiniBrowser/Configurations/MiniBrowserCoreFoundation.vsprops
deleted file mode 100644
index 6d5105b..0000000
--- a/Tools/MiniBrowser/Configurations/MiniBrowserCoreFoundation.vsprops
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="MiniBrowserCoreFoundation"
-	>
-	<Tool
-		Name="VCLinkerTool"
-		AdditionalDependencies="shlwapi.lib WebKit$(WebKitDLLConfigSuffix).lib CoreFoundation$(LibraryConfigSuffix).lib CFNetwork$(LibraryConfigSuffix).lib"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/MiniBrowser/Configurations/MiniBrowserDebug.vsprops b/Tools/MiniBrowser/Configurations/MiniBrowserDebug.vsprops
deleted file mode 100644
index 6448f6f..0000000
--- a/Tools/MiniBrowser/Configurations/MiniBrowserDebug.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="MiniBrowserDebug"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;.\MiniBrowserCoreFoundation.vsprops;.\MiniBrowserCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/MiniBrowser/Configurations/MiniBrowserDebugAll.vsprops b/Tools/MiniBrowser/Configurations/MiniBrowserDebugAll.vsprops
deleted file mode 100644
index 635a0c7..0000000
--- a/Tools/MiniBrowser/Configurations/MiniBrowserDebugAll.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="MiniBrowserDebugAll"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug_all.vsprops;.\MiniBrowserCoreFoundation.vsprops;.\MiniBrowserCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/MiniBrowser/Configurations/MiniBrowserDebugCairoCFLite.vsprops b/Tools/MiniBrowser/Configurations/MiniBrowserDebugCairoCFLite.vsprops
deleted file mode 100644
index cb2a20b..0000000
--- a/Tools/MiniBrowser/Configurations/MiniBrowserDebugCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="MiniBrowserDebugCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug_wincairo.vsprops;.\MiniBrowserCFLite.vsprops;.\MiniBrowserCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/MiniBrowser/Configurations/MiniBrowserLauncherCommon.vsprops b/Tools/MiniBrowser/Configurations/MiniBrowserLauncherCommon.vsprops
deleted file mode 100644
index e86688a..0000000
--- a/Tools/MiniBrowser/Configurations/MiniBrowserLauncherCommon.vsprops
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="MiniBrowserLauncherCommon"
-	>
-	<Tool
-		Name="VCLinkerTool"
-		AdditionalDependencies="shlwapi.lib"
-		OutputFile="$(OutDir)\MiniBrowser$(WebKitConfigSuffix).exe"
-		ProgramDatabaseFile="$(TargetDir)$(TargetName)Launcher.pdb"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/MiniBrowser/Configurations/MiniBrowserLauncherDebug.vsprops b/Tools/MiniBrowser/Configurations/MiniBrowserLauncherDebug.vsprops
deleted file mode 100644
index 6731dc7..0000000
--- a/Tools/MiniBrowser/Configurations/MiniBrowserLauncherDebug.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="MiniBrowserLauncherDebug"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;.\MiniBrowserLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/MiniBrowser/Configurations/MiniBrowserLauncherDebugAll.vsprops b/Tools/MiniBrowser/Configurations/MiniBrowserLauncherDebugAll.vsprops
deleted file mode 100644
index 40a5686..0000000
--- a/Tools/MiniBrowser/Configurations/MiniBrowserLauncherDebugAll.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="MiniBrowserLauncherDebugAll"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug_all.vsprops;.\MiniBrowserLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/MiniBrowser/Configurations/MiniBrowserLauncherDebugCairoCFLite.vsprops b/Tools/MiniBrowser/Configurations/MiniBrowserLauncherDebugCairoCFLite.vsprops
deleted file mode 100644
index dd32f7d..0000000
--- a/Tools/MiniBrowser/Configurations/MiniBrowserLauncherDebugCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="MiniBrowserDebugCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;.\MiniBrowserLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/MiniBrowser/Configurations/MiniBrowserLauncherProduction.vsprops b/Tools/MiniBrowser/Configurations/MiniBrowserLauncherProduction.vsprops
deleted file mode 100644
index 5d24355..0000000
--- a/Tools/MiniBrowser/Configurations/MiniBrowserLauncherProduction.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="MiniBrowserLauncherProduction"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\production.vsprops;.\MiniBrowserLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/MiniBrowser/Configurations/MiniBrowserLauncherRelease.vsprops b/Tools/MiniBrowser/Configurations/MiniBrowserLauncherRelease.vsprops
deleted file mode 100644
index 58d1f38..0000000
--- a/Tools/MiniBrowser/Configurations/MiniBrowserLauncherRelease.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="MiniBrowserLauncherRelease"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;.\MiniBrowserLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/MiniBrowser/Configurations/MiniBrowserLauncherReleaseCairoCFLite.vsprops b/Tools/MiniBrowser/Configurations/MiniBrowserLauncherReleaseCairoCFLite.vsprops
deleted file mode 100644
index 43062ff..0000000
--- a/Tools/MiniBrowser/Configurations/MiniBrowserLauncherReleaseCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="MiniBrowserLauncherReleaseCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;.\MiniBrowserLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/MiniBrowser/Configurations/MiniBrowserProduction.vsprops b/Tools/MiniBrowser/Configurations/MiniBrowserProduction.vsprops
deleted file mode 100644
index 46a62ee..0000000
--- a/Tools/MiniBrowser/Configurations/MiniBrowserProduction.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="MiniBrowserProduction"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\production.vsprops;.\MiniBrowserCoreFoundation.vsprops;.\MiniBrowserCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/MiniBrowser/Configurations/MiniBrowserRelease.vsprops b/Tools/MiniBrowser/Configurations/MiniBrowserRelease.vsprops
deleted file mode 100644
index 4fa4555..0000000
--- a/Tools/MiniBrowser/Configurations/MiniBrowserRelease.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="MiniBrowserRelease"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;.\MiniBrowserCoreFoundation.vsprops;.\MiniBrowserCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/MiniBrowser/Configurations/MiniBrowserReleaseCairoCFLite.vsprops b/Tools/MiniBrowser/Configurations/MiniBrowserReleaseCairoCFLite.vsprops
deleted file mode 100644
index 87d8479..0000000
--- a/Tools/MiniBrowser/Configurations/MiniBrowserReleaseCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="MiniBrowserReleaseCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\WinCairo.vsprops;.\MiniBrowserCFLite.vsprops;.\MiniBrowserCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/MiniBrowser/Configurations/WebBundle.xcconfig b/Tools/MiniBrowser/Configurations/WebBundle.xcconfig
deleted file mode 100644
index 253fdf7..0000000
--- a/Tools/MiniBrowser/Configurations/WebBundle.xcconfig
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright (C) 2010 Apple Inc. All rights reserved.
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions
-// are met:
-// 1. Redistributions of source code must retain the above copyright
-//    notice, this list of conditions and the following disclaimer.
-// 2. Redistributions in binary form must reproduce the above copyright
-//    notice, this list of conditions and the following disclaimer in the
-//    documentation and/or other materials provided with the distribution.
-//
-// THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
-// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-// PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
-// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-
-PRODUCT_NAME = WebBundle
-GCC_PREFIX_HEADER = mac/MiniBrowser_Prefix.pch
-INFOPLIST_FILE = mac/WebBundle/Info.plist
diff --git a/Tools/MiniBrowser/MBToolbarItem.h b/Tools/MiniBrowser/MBToolbarItem.h
deleted file mode 100644
index 9971d4c..0000000
--- a/Tools/MiniBrowser/MBToolbarItem.h
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-@interface MBToolbarItem : NSToolbarItem
-@end
diff --git a/Tools/MiniBrowser/MBToolbarItem.m b/Tools/MiniBrowser/MBToolbarItem.m
deleted file mode 100644
index 56f7778..0000000
--- a/Tools/MiniBrowser/MBToolbarItem.m
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "MBToolbarItem.h"
-
-@implementation MBToolbarItem
-
-- (void)validate
-{
-    [self setEnabled:[[self target] validateUserInterfaceItem:self]];
-}
-
-@end
diff --git a/Tools/MiniBrowser/Makefile b/Tools/MiniBrowser/Makefile
deleted file mode 100644
index 61cd475..0000000
--- a/Tools/MiniBrowser/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-# Build MiniBrowser only on SnowLeopard and later.
-
-OSX_VERSION ?= $(shell sw_vers -productVersion | cut -d. -f 2)
-BUILD_MINIBROWSER = $(shell (( $(OSX_VERSION) >= 6 )) && echo "YES" )
-
-ifeq "$(BUILD_MINIBROWSER)" "YES"
-
-SCRIPTS_PATH = ../Scripts
-include ../../Makefile.shared
-
-else
-
-all: ;
-
-debug d development dev develop: ;
-
-release r deployment dep deploy: ;
-
-clean: ;
-
-endif
diff --git a/Tools/MiniBrowser/MiniBrowser.vcproj b/Tools/MiniBrowser/MiniBrowser.vcproj
deleted file mode 100644
index a52e222..0000000
--- a/Tools/MiniBrowser/MiniBrowser.vcproj
+++ /dev/null
@@ -1,508 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="MiniBrowser"
-	ProjectGUID="{1480CF5F-4160-47B5-A0E6-96AEC8258FB5}"
-	RootNamespace="MiniBrowser"
-	Keyword="Win32Proj"
-	>
-	<Platforms>
-		<Platform
-			Name="Win32"
-		/>
-	</Platforms>
-	<ToolFiles>
-	</ToolFiles>
-	<Configurations>
-		<Configuration
-			Name="Debug|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\Configurations\MiniBrowserDebug.vsprops"
-			UseOfATL="1"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\Configurations\MiniBrowserRelease.vsprops"
-			UseOfATL="1"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_All|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\Configurations\MiniBrowserDebugAll.vsprops"
-			UseOfATL="1"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_Cairo_CFLite|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\Configurations\MiniBrowserDebugCairoCFLite.vsprops"
-			UseOfATL="1"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release_Cairo_CFLite|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\Configurations\MiniBrowserReleaseCairoCFLite.vsprops"
-			UseOfATL="1"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Production|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\Configurations\MiniBrowserProduction.vsprops"
-			UseOfATL="1"
-			CharacterSet="1"
-			WholeProgramOptimization="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-	</Configurations>
-	<References>
-	</References>
-	<Files>
-		<Filter
-			Name="Source Files"
-			Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
-			UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
-			>
-			<File
-				RelativePath=".\win\BrowserView.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\win\BrowserWindow.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\win\main.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\win\MiniBrowser.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\win\stdafx.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						UsePrecompiledHeader="1"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						UsePrecompiledHeader="1"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Debug_All|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						UsePrecompiledHeader="1"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Debug_Cairo_CFLite|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						UsePrecompiledHeader="1"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release_Cairo_CFLite|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						UsePrecompiledHeader="1"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Production|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						UsePrecompiledHeader="1"
-					/>
-				</FileConfiguration>
-			</File>
-		</Filter>
-		<Filter
-			Name="Header Files"
-			Filter="h;hpp;hxx;hm;inl;inc;xsd"
-			UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
-			>
-			<File
-				RelativePath=".\win\BrowserView.h"
-				>
-			</File>
-			<File
-				RelativePath=".\win\BrowserWindow.h"
-				>
-			</File>
-			<File
-				RelativePath=".\win\MiniBrowser.h"
-				>
-			</File>
-			<File
-				RelativePath=".\win\Resource.h"
-				>
-			</File>
-			<File
-				RelativePath=".\win\stdafx.h"
-				>
-			</File>
-		</Filter>
-		<Filter
-			Name="Resource Files"
-			Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
-			UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
-			>
-			<File
-				RelativePath=".\win\MiniBrowser.rc"
-				>
-			</File>
-		</Filter>
-	</Files>
-	<Globals>
-	</Globals>
-</VisualStudioProject>
diff --git a/Tools/MiniBrowser/MiniBrowser.xcodeproj/project.pbxproj b/Tools/MiniBrowser/MiniBrowser.xcodeproj/project.pbxproj
deleted file mode 100644
index 2256445..0000000
--- a/Tools/MiniBrowser/MiniBrowser.xcodeproj/project.pbxproj
+++ /dev/null
@@ -1,399 +0,0 @@
-// !$*UTF8*$!
-{
-	archiveVersion = 1;
-	classes = {
-	};
-	objectVersion = 45;
-	objects = {
-
-/* Begin PBXBuildFile section */
-		0F7EB6E3134113C300F4D865 /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F7EB6E2134113C300F4D865 /* WebKit.framework */; };
-		0F7EB879134113F200F4D865 /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F7EB6E2134113C300F4D865 /* WebKit.framework */; };
-		0FE643A1161FA8940059E3FF /* BrowserWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FE643A0161FA8940059E3FF /* BrowserWindowController.m */; };
-		0FE643A4161FAC660059E3FF /* WK1BrowserWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FE643A3161FAC660059E3FF /* WK1BrowserWindowController.m */; };
-		256AC3DA0F4B6AC300CF3369 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 256AC3D90F4B6AC300CF3369 /* AppDelegate.m */; };
-		51E244FA11EFCE07008228D1 /* MBToolbarItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 51E244F911EFCE07008228D1 /* MBToolbarItem.m */; };
-		8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; };
-		BC20545E11C96C92008F3375 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; };
-		BC329487116A92E2008635D0 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = BC329486116A92E2008635D0 /* main.m */; };
-		BC329498116A941B008635D0 /* WK2BrowserWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = BC329497116A941B008635D0 /* WK2BrowserWindowController.m */; };
-		BC72B89511E57E07001EB4EA /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1DDD58150DA1D0A300B32029 /* MainMenu.xib */; };
-		BC72B89611E57E0F001EB4EA /* BrowserWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = BC3294A2116A9852008635D0 /* BrowserWindow.xib */; };
-		BC8FB5A8116AA1FE0080D413 /* WebKit2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BC8FB5A7116AA1FE0080D413 /* WebKit2.framework */; };
-		BCBD384011B08A6800E01E54 /* WebBundleMain.m in Sources */ = {isa = PBXBuildFile; fileRef = BCBD383D11B08A3100E01E54 /* WebBundleMain.m */; };
-		BCBD384411B08AAD00E01E54 /* WebKit2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BC8FB5A7116AA1FE0080D413 /* WebKit2.framework */; };
-		BCBD38D011B08C0200E01E54 /* WebBundle.bundle in Copy WebBundle */ = {isa = PBXBuildFile; fileRef = BCBD381D11B0898200E01E54 /* WebBundle.bundle */; };
-/* End PBXBuildFile section */
-
-/* Begin PBXContainerItemProxy section */
-		BCBD38C511B08BA400E01E54 /* PBXContainerItemProxy */ = {
-			isa = PBXContainerItemProxy;
-			containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */;
-			proxyType = 1;
-			remoteGlobalIDString = BCBD381C11B0898200E01E54;
-			remoteInfo = WebBundle;
-		};
-/* End PBXContainerItemProxy section */
-
-/* Begin PBXCopyFilesBuildPhase section */
-		BCBD38CF11B08C0100E01E54 /* Copy WebBundle */ = {
-			isa = PBXCopyFilesBuildPhase;
-			buildActionMask = 2147483647;
-			dstPath = Contents;
-			dstSubfolderSpec = 1;
-			files = (
-				BCBD38D011B08C0200E01E54 /* WebBundle.bundle in Copy WebBundle */,
-			);
-			name = "Copy WebBundle";
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-/* End PBXCopyFilesBuildPhase section */
-
-/* Begin PBXFileReference section */
-		0F7EB6E2134113C300F4D865 /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = WebKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
-		0FE6439F161FA8940059E3FF /* BrowserWindowController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BrowserWindowController.h; path = mac/BrowserWindowController.h; sourceTree = "<group>"; };
-		0FE643A0161FA8940059E3FF /* BrowserWindowController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BrowserWindowController.m; path = mac/BrowserWindowController.m; sourceTree = "<group>"; };
-		0FE643A2161FAC660059E3FF /* WK1BrowserWindowController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WK1BrowserWindowController.h; path = mac/WK1BrowserWindowController.h; sourceTree = "<group>"; };
-		0FE643A3161FAC660059E3FF /* WK1BrowserWindowController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WK1BrowserWindowController.m; path = mac/WK1BrowserWindowController.m; sourceTree = "<group>"; };
-		1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; };
-		1DDD58150DA1D0A300B32029 /* MainMenu.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = MainMenu.xib; path = mac/MainMenu.xib; sourceTree = "<group>"; };
-		256AC3D80F4B6AC300CF3369 /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = mac/AppDelegate.h; sourceTree = "<group>"; };
-		256AC3D90F4B6AC300CF3369 /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = mac/AppDelegate.m; sourceTree = "<group>"; };
-		256AC3F00F4B6AF500CF3369 /* MiniBrowser_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MiniBrowser_Prefix.pch; path = mac/MiniBrowser_Prefix.pch; sourceTree = "<group>"; };
-		29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; };
-		29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = "<absolute>"; };
-		51E244F811EFCE07008228D1 /* MBToolbarItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MBToolbarItem.h; sourceTree = "<group>"; };
-		51E244F911EFCE07008228D1 /* MBToolbarItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MBToolbarItem.m; sourceTree = "<group>"; };
-		8D1107320486CEB800E47090 /* MiniBrowser.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = MiniBrowser.app; sourceTree = BUILT_PRODUCTS_DIR; };
-		BC329486116A92E2008635D0 /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = mac/main.m; sourceTree = "<group>"; };
-		BC329496116A941B008635D0 /* WK2BrowserWindowController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WK2BrowserWindowController.h; path = mac/WK2BrowserWindowController.h; sourceTree = "<group>"; };
-		BC329497116A941B008635D0 /* WK2BrowserWindowController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WK2BrowserWindowController.m; path = mac/WK2BrowserWindowController.m; sourceTree = "<group>"; };
-		BC3294A2116A9852008635D0 /* BrowserWindow.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = BrowserWindow.xib; path = mac/BrowserWindow.xib; sourceTree = "<group>"; };
-		BC72B89711E57E6E001EB4EA /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
-		BC72B89A11E57E8A001EB4EA /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = mac/Info.plist; sourceTree = "<group>"; };
-		BC8FB5A7116AA1FE0080D413 /* WebKit2.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = WebKit2.framework; sourceTree = BUILT_PRODUCTS_DIR; };
-		BCA8CBDD11E578A000812FB7 /* Base.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Base.xcconfig; sourceTree = "<group>"; };
-		BCA8CBDE11E578A000812FB7 /* DebugRelease.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = DebugRelease.xcconfig; sourceTree = "<group>"; };
-		BCA8CBDF11E578A000812FB7 /* MiniBrowser.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = MiniBrowser.xcconfig; sourceTree = "<group>"; };
-		BCA8CBE011E578A000812FB7 /* WebBundle.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = WebBundle.xcconfig; sourceTree = "<group>"; };
-		BCBD381D11B0898200E01E54 /* WebBundle.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = WebBundle.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
-		BCBD383D11B08A3100E01E54 /* WebBundleMain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WebBundleMain.m; sourceTree = "<group>"; };
-/* End PBXFileReference section */
-
-/* Begin PBXFrameworksBuildPhase section */
-		8D11072E0486CEB800E47090 /* Frameworks */ = {
-			isa = PBXFrameworksBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */,
-				0F7EB6E3134113C300F4D865 /* WebKit.framework in Frameworks */,
-				BC8FB5A8116AA1FE0080D413 /* WebKit2.framework in Frameworks */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-		BCBD381B11B0898200E01E54 /* Frameworks */ = {
-			isa = PBXFrameworksBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				BC20545E11C96C92008F3375 /* Cocoa.framework in Frameworks */,
-				0F7EB879134113F200F4D865 /* WebKit.framework in Frameworks */,
-				BCBD384411B08AAD00E01E54 /* WebKit2.framework in Frameworks */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-/* End PBXFrameworksBuildPhase section */
-
-/* Begin PBXGroup section */
-		080E96DDFE201D6D7F000001 /* MiniBrowser */ = {
-			isa = PBXGroup;
-			children = (
-				256AC3D80F4B6AC300CF3369 /* AppDelegate.h */,
-				256AC3D90F4B6AC300CF3369 /* AppDelegate.m */,
-				0FE6439F161FA8940059E3FF /* BrowserWindowController.h */,
-				0FE643A0161FA8940059E3FF /* BrowserWindowController.m */,
-				BC72B89A11E57E8A001EB4EA /* Info.plist */,
-				BC329486116A92E2008635D0 /* main.m */,
-				51E244F811EFCE07008228D1 /* MBToolbarItem.h */,
-				51E244F911EFCE07008228D1 /* MBToolbarItem.m */,
-				0FE643A2161FAC660059E3FF /* WK1BrowserWindowController.h */,
-				0FE643A3161FAC660059E3FF /* WK1BrowserWindowController.m */,
-				BC329496116A941B008635D0 /* WK2BrowserWindowController.h */,
-				BC329497116A941B008635D0 /* WK2BrowserWindowController.m */,
-			);
-			name = MiniBrowser;
-			sourceTree = "<group>";
-		};
-		1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */ = {
-			isa = PBXGroup;
-			children = (
-				1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */,
-				0F7EB6E2134113C300F4D865 /* WebKit.framework */,
-				BC8FB5A7116AA1FE0080D413 /* WebKit2.framework */,
-			);
-			name = "Linked Frameworks";
-			sourceTree = "<group>";
-		};
-		1058C7A2FEA54F0111CA2CBB /* Other Frameworks */ = {
-			isa = PBXGroup;
-			children = (
-				29B97324FDCFA39411CA2CEA /* AppKit.framework */,
-				29B97325FDCFA39411CA2CEA /* Foundation.framework */,
-			);
-			name = "Other Frameworks";
-			sourceTree = "<group>";
-		};
-		19C28FACFE9D520D11CA2CBB /* Products */ = {
-			isa = PBXGroup;
-			children = (
-				8D1107320486CEB800E47090 /* MiniBrowser.app */,
-				BCBD381D11B0898200E01E54 /* WebBundle.bundle */,
-			);
-			name = Products;
-			sourceTree = "<group>";
-		};
-		29B97314FDCFA39411CA2CEA /* MiniBrowser */ = {
-			isa = PBXGroup;
-			children = (
-				256AC3F00F4B6AF500CF3369 /* MiniBrowser_Prefix.pch */,
-				080E96DDFE201D6D7F000001 /* MiniBrowser */,
-				BCBD382B11B089F700E01E54 /* WebBundle */,
-				29B97317FDCFA39411CA2CEA /* Resources */,
-				BCA8CBDA11E5787800812FB7 /* Configurations */,
-				29B97323FDCFA39411CA2CEA /* Frameworks */,
-				19C28FACFE9D520D11CA2CBB /* Products */,
-			);
-			name = MiniBrowser;
-			sourceTree = "<group>";
-		};
-		29B97317FDCFA39411CA2CEA /* Resources */ = {
-			isa = PBXGroup;
-			children = (
-				BC3294A2116A9852008635D0 /* BrowserWindow.xib */,
-				1DDD58150DA1D0A300B32029 /* MainMenu.xib */,
-			);
-			name = Resources;
-			sourceTree = "<group>";
-		};
-		29B97323FDCFA39411CA2CEA /* Frameworks */ = {
-			isa = PBXGroup;
-			children = (
-				1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */,
-				1058C7A2FEA54F0111CA2CBB /* Other Frameworks */,
-			);
-			name = Frameworks;
-			sourceTree = "<group>";
-		};
-		BCA8CBDA11E5787800812FB7 /* Configurations */ = {
-			isa = PBXGroup;
-			children = (
-				BCA8CBDD11E578A000812FB7 /* Base.xcconfig */,
-				BCA8CBDE11E578A000812FB7 /* DebugRelease.xcconfig */,
-				BCA8CBDF11E578A000812FB7 /* MiniBrowser.xcconfig */,
-				BCA8CBE011E578A000812FB7 /* WebBundle.xcconfig */,
-			);
-			path = Configurations;
-			sourceTree = "<group>";
-		};
-		BCBD382B11B089F700E01E54 /* WebBundle */ = {
-			isa = PBXGroup;
-			children = (
-				BC72B89711E57E6E001EB4EA /* Info.plist */,
-				BCBD383D11B08A3100E01E54 /* WebBundleMain.m */,
-			);
-			name = WebBundle;
-			path = mac/WebBundle;
-			sourceTree = "<group>";
-		};
-/* End PBXGroup section */
-
-/* Begin PBXNativeTarget section */
-		8D1107260486CEB800E47090 /* MiniBrowser */ = {
-			isa = PBXNativeTarget;
-			buildConfigurationList = C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "MiniBrowser" */;
-			buildPhases = (
-				8D1107290486CEB800E47090 /* Resources */,
-				BCBD38CF11B08C0100E01E54 /* Copy WebBundle */,
-				8D11072C0486CEB800E47090 /* Sources */,
-				8D11072E0486CEB800E47090 /* Frameworks */,
-			);
-			buildRules = (
-			);
-			dependencies = (
-				BCBD38C611B08BA400E01E54 /* PBXTargetDependency */,
-			);
-			name = MiniBrowser;
-			productInstallPath = "$(HOME)/Applications";
-			productName = MiniBrowser;
-			productReference = 8D1107320486CEB800E47090 /* MiniBrowser.app */;
-			productType = "com.apple.product-type.application";
-		};
-		BCBD381C11B0898200E01E54 /* WebBundle */ = {
-			isa = PBXNativeTarget;
-			buildConfigurationList = BCBD382111B0898300E01E54 /* Build configuration list for PBXNativeTarget "WebBundle" */;
-			buildPhases = (
-				BCBD381911B0898200E01E54 /* Resources */,
-				BCBD381A11B0898200E01E54 /* Sources */,
-				BCBD381B11B0898200E01E54 /* Frameworks */,
-			);
-			buildRules = (
-			);
-			dependencies = (
-			);
-			name = WebBundle;
-			productName = WebBundle;
-			productReference = BCBD381D11B0898200E01E54 /* WebBundle.bundle */;
-			productType = "com.apple.product-type.bundle";
-		};
-/* End PBXNativeTarget section */
-
-/* Begin PBXProject section */
-		29B97313FDCFA39411CA2CEA /* Project object */ = {
-			isa = PBXProject;
-			buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "MiniBrowser" */;
-			compatibilityVersion = "Xcode 3.1";
-			developmentRegion = English;
-			hasScannedForEncodings = 1;
-			knownRegions = (
-				English,
-				Japanese,
-				French,
-				German,
-			);
-			mainGroup = 29B97314FDCFA39411CA2CEA /* MiniBrowser */;
-			projectDirPath = "";
-			projectRoot = "";
-			targets = (
-				8D1107260486CEB800E47090 /* MiniBrowser */,
-				BCBD381C11B0898200E01E54 /* WebBundle */,
-			);
-		};
-/* End PBXProject section */
-
-/* Begin PBXResourcesBuildPhase section */
-		8D1107290486CEB800E47090 /* Resources */ = {
-			isa = PBXResourcesBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				BC72B89611E57E0F001EB4EA /* BrowserWindow.xib in Resources */,
-				BC72B89511E57E07001EB4EA /* MainMenu.xib in Resources */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-		BCBD381911B0898200E01E54 /* Resources */ = {
-			isa = PBXResourcesBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-/* End PBXResourcesBuildPhase section */
-
-/* Begin PBXSourcesBuildPhase section */
-		8D11072C0486CEB800E47090 /* Sources */ = {
-			isa = PBXSourcesBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				256AC3DA0F4B6AC300CF3369 /* AppDelegate.m in Sources */,
-				0FE643A1161FA8940059E3FF /* BrowserWindowController.m in Sources */,
-				BC329487116A92E2008635D0 /* main.m in Sources */,
-				51E244FA11EFCE07008228D1 /* MBToolbarItem.m in Sources */,
-				0FE643A4161FAC660059E3FF /* WK1BrowserWindowController.m in Sources */,
-				BC329498116A941B008635D0 /* WK2BrowserWindowController.m in Sources */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-		BCBD381A11B0898200E01E54 /* Sources */ = {
-			isa = PBXSourcesBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				BCBD384011B08A6800E01E54 /* WebBundleMain.m in Sources */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-/* End PBXSourcesBuildPhase section */
-
-/* Begin PBXTargetDependency section */
-		BCBD38C611B08BA400E01E54 /* PBXTargetDependency */ = {
-			isa = PBXTargetDependency;
-			target = BCBD381C11B0898200E01E54 /* WebBundle */;
-			targetProxy = BCBD38C511B08BA400E01E54 /* PBXContainerItemProxy */;
-		};
-/* End PBXTargetDependency section */
-
-/* Begin XCBuildConfiguration section */
-		BCBD381F11B0898300E01E54 /* Debug */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BCA8CBE011E578A000812FB7 /* WebBundle.xcconfig */;
-			buildSettings = {
-			};
-			name = Debug;
-		};
-		BCBD382011B0898300E01E54 /* Release */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BCA8CBE011E578A000812FB7 /* WebBundle.xcconfig */;
-			buildSettings = {
-			};
-			name = Release;
-		};
-		C01FCF4B08A954540054247B /* Debug */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BCA8CBDF11E578A000812FB7 /* MiniBrowser.xcconfig */;
-			buildSettings = {
-			};
-			name = Debug;
-		};
-		C01FCF4C08A954540054247B /* Release */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BCA8CBDF11E578A000812FB7 /* MiniBrowser.xcconfig */;
-			buildSettings = {
-			};
-			name = Release;
-		};
-		C01FCF4F08A954540054247B /* Debug */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BCA8CBDE11E578A000812FB7 /* DebugRelease.xcconfig */;
-			buildSettings = {
-			};
-			name = Debug;
-		};
-		C01FCF5008A954540054247B /* Release */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BCA8CBDE11E578A000812FB7 /* DebugRelease.xcconfig */;
-			buildSettings = {
-			};
-			name = Release;
-		};
-/* End XCBuildConfiguration section */
-
-/* Begin XCConfigurationList section */
-		BCBD382111B0898300E01E54 /* Build configuration list for PBXNativeTarget "WebBundle" */ = {
-			isa = XCConfigurationList;
-			buildConfigurations = (
-				BCBD381F11B0898300E01E54 /* Debug */,
-				BCBD382011B0898300E01E54 /* Release */,
-			);
-			defaultConfigurationIsVisible = 0;
-			defaultConfigurationName = Release;
-		};
-		C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "MiniBrowser" */ = {
-			isa = XCConfigurationList;
-			buildConfigurations = (
-				C01FCF4B08A954540054247B /* Debug */,
-				C01FCF4C08A954540054247B /* Release */,
-			);
-			defaultConfigurationIsVisible = 0;
-			defaultConfigurationName = Release;
-		};
-		C01FCF4E08A954540054247B /* Build configuration list for PBXProject "MiniBrowser" */ = {
-			isa = XCConfigurationList;
-			buildConfigurations = (
-				C01FCF4F08A954540054247B /* Debug */,
-				C01FCF5008A954540054247B /* Release */,
-			);
-			defaultConfigurationIsVisible = 0;
-			defaultConfigurationName = Release;
-		};
-/* End XCConfigurationList section */
-	};
-	rootObject = 29B97313FDCFA39411CA2CEA /* Project object */;
-}
diff --git a/Tools/MiniBrowser/MiniBrowserLauncher.vcproj b/Tools/MiniBrowser/MiniBrowserLauncher.vcproj
deleted file mode 100644
index 330ffad..0000000
--- a/Tools/MiniBrowser/MiniBrowserLauncher.vcproj
+++ /dev/null
@@ -1,396 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="MiniBrowserLauncher"
-	ProjectGUID="{7AF4EBFB-CCBC-448F-A36A-8210E08D6A7D}"
-	RootNamespace="MiniBrowserLauncher"
-	Keyword="Win32Proj"
-	>
-	<Platforms>
-		<Platform
-			Name="Win32"
-		/>
-	</Platforms>
-	<ToolFiles>
-	</ToolFiles>
-	<Configurations>
-		<Configuration
-			Name="Debug|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\Configurations\MiniBrowserLauncherDebug.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\Configurations\MiniBrowserLauncherRelease.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_Cairo_CFLite|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\Configurations\MiniBrowserLauncherDebugCairoCFLite.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_All|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\Configurations\MiniBrowserLauncherDebugAll.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Production|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\Configurations\MiniBrowserLauncherProduction.vsprops"
-			CharacterSet="1"
-			WholeProgramOptimization="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release_Cairo_CFLite|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\Configurations\MiniBrowserLauncherReleaseCairoCFLite.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-	</Configurations>
-	<References>
-	</References>
-	<Files>
-		<File
-			RelativePath="..\win\DLLLauncher\DLLLauncherMain.cpp"
-			>
-		</File>
-	</Files>
-	<Globals>
-	</Globals>
-</VisualStudioProject>
diff --git a/Tools/MiniBrowser/MiniBrowserPostBuild.cmd b/Tools/MiniBrowser/MiniBrowserPostBuild.cmd
deleted file mode 100644
index 9dea026..0000000
--- a/Tools/MiniBrowser/MiniBrowserPostBuild.cmd
+++ /dev/null
@@ -1,29 +0,0 @@
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\bin"
-
-if exist "%WEBKITLIBRARIESDIR%\bin\CoreFoundation%LIBRARYCONFIGSUFFIX%.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\CoreFoundation%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\CoreFoundation%LIBRARYCONFIGSUFFIX%.pdb" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\CoreFoundation%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\CFNetwork%LIBRARYCONFIGSUFFIX%.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\CFNetwork%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\CFNetwork%LIBRARYCONFIGSUFFIX%.pdb" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\CFNetwork%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\CFNetwork.resources" xcopy /y /d /e /i "%WEBKITLIBRARIESDIR%\bin\CFNetwork.resources" "%CONFIGURATIONBUILDDIR%\bin\CFNetwork.resources"
-if exist "%WEBKITLIBRARIESDIR%\bin\CoreFoundation.resources" xcopy /y /d /e /i "%WEBKITLIBRARIESDIR%\bin\CoreFoundation.resources" "%CONFIGURATIONBUILDDIR%\bin\CoreFoundation.resources"
-if exist "%WEBKITLIBRARIESDIR%\bin\CoreGraphics%LIBRARYCONFIGSUFFIX%.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\CoreGraphics%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\CoreGraphics%LIBRARYCONFIGSUFFIX%.pdb" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\CoreGraphics%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icuin40%LIBRARYCONFIGSUFFIX%.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icuin40%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icuin40%LIBRARYCONFIGSUFFIX%.pdb" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icuin40%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icuuc40%LIBRARYCONFIGSUFFIX%.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icuuc40%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icuuc40%LIBRARYCONFIGSUFFIX%.pdb" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icuuc40%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\libxml2%LIBRARYCONFIGSUFFIX%.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\libxml2%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\libxslt%LIBRARYCONFIGSUFFIX%.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\libxslt%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\pthreadVC2%LIBRARYCONFIGSUFFIX%.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\pthreadVC2%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\pthreadVC2%LIBRARYCONFIGSUFFIX%.pdb" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\pthreadVC2%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\SQLite3%LIBRARYCONFIGSUFFIX%.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\SQLite3%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\SQLite3%LIBRARYCONFIGSUFFIX%.pdb" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\SQLite3%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\zlib1%LIBRARYCONFIGSUFFIX%.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\zlib1%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\zlib1%LIBRARYCONFIGSUFFIX%.pdb" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\zlib1%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\objc%LIBRARYCONFIGSUFFIX%.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\objc%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\objc%LIBRARYCONFIGSUFFIX%.pdb" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\objc%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-
-if exist "%WEBKITLIBRARIESDIR%\bin\QuartzCore%LIBRARYCONFIGSUFFIX%.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\QuartzCore%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\QuartzCore%LIBRARYCONFIGSUFFIX%.pdb" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\QuartzCore%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-
-if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed"
diff --git a/Tools/MiniBrowser/MiniBrowserPreBuild.cmd b/Tools/MiniBrowser/MiniBrowserPreBuild.cmd
deleted file mode 100644
index 833ae5b..0000000
--- a/Tools/MiniBrowser/MiniBrowserPreBuild.cmd
+++ /dev/null
@@ -1,5 +0,0 @@
-set PATH=%SystemDrive%\cygwin\bin;%PATH%
-
-if exist "%CONFIGURATIONBUILDDIR%\buildfailed" grep XX%PROJECTNAME%XX "%CONFIGURATIONBUILDDIR%\buildfailed"
-if errorlevel 1 exit 1
-echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed"
diff --git a/Tools/MiniBrowser/efl/CMakeLists.txt b/Tools/MiniBrowser/efl/CMakeLists.txt
deleted file mode 100644
index 1053ad2..0000000
--- a/Tools/MiniBrowser/efl/CMakeLists.txt
+++ /dev/null
@@ -1,64 +0,0 @@
-set(MiniBrowser_DIR "${TOOLS_DIR}/MiniBrowser/efl")
-
-# Elementary is needed to build MiniBrowser
-find_package(Elementary 1.6)
-
-set(MiniBrowser_SOURCES
-    ${TOOLS_DIR}/EWebLauncher/url_utils.c
-    ${MiniBrowser_DIR}/main.c
-)
-
-set(MiniBrowser_INCLUDE_DIRECTORIES
-    ${CAIRO_INCLUDE_DIRS}
-    ${ECORE_INCLUDE_DIRS}
-    ${ECORE_EVAS_INCLUDE_DIRS}
-    ${ECORE_CON_INCLUDE_DIRS}
-    ${ECORE_FILE_INCLUDE_DIRS}
-    ${ECORE_IMF_INCLUDE_DIRS}
-    ${ECORE_INPUT_INCLUDE_DIRS}
-    ${EDJE_INCLUDE_DIRS}
-    ${EET_INCLUDE_DIRS}
-    ${EO_INCLUDE_DIRS}
-    ${DBUS_INCLUDE_DIRS}
-    ${E_DBUS_INCLUDE_DIRS}
-    ${EFREET_INCLUDE_DIRS}
-    ${EINA_INCLUDE_DIRS}
-    ${ELEMENTARY_INCLUDE_DIRS}
-    ${EVAS_INCLUDE_DIRS}
-    ${TOOLS_DIR}/EWebLauncher
-    ${WEBKIT2_DIR}/UIProcess/API/efl
-    ${WEBKIT2_DIR}
-    ${CMAKE_SOURCE_DIR}/Source
-)
-
-set(MiniBrowser_LIBRARIES
-    ${JavaScriptCore_LIBRARY_NAME}
-    ${WebCore_LIBRARY_NAME}
-    ${WebKit2_LIBRARY_NAME}
-    ${CAIRO_LIBRARIES}
-    ${ECORE_LIBRARIES}
-    ${ECORE_EVAS_LIBRARIES}
-    ${ECORE_FILE_LIBRARIES}
-    ${EDJE_LIBRARIES}
-    ${EINA_LIBRARIES}
-    ${ELEMENTARY_LIBRARIES}
-    ${EO_LIBRARIES}
-    ${EVAS_LIBRARIES}
-    ${FONTCONFIG_LIBRARIES}
-    ${GLIB_LIBRARIES}
-    ${GLIB_GTHREAD_LIBRARIES}
-    ${LIBSOUP_LIBRARIES}
-    ${LIBXML2_LIBRARIES}
-    ${LIBXSLT_LIBRARIES}
-    ${OPENGL_LIBRARIES}
-    ${SQLITE_LIBRARIES}
-)
-
-add_definitions(-DTHEME_DIR=\"${THEME_BINARY_DIR}\")
-
-if (ELEMENTARY_FOUND)
-    include_directories(${MiniBrowser_INCLUDE_DIRECTORIES})
-    add_executable(MiniBrowser ${MiniBrowser_SOURCES})
-    target_link_libraries(MiniBrowser ${MiniBrowser_LIBRARIES})
-    set_target_properties(MiniBrowser PROPERTIES FOLDER "Tools")
-endif ()
diff --git a/Tools/MiniBrowser/efl/main.c b/Tools/MiniBrowser/efl/main.c
deleted file mode 100644
index 57c8efd..0000000
--- a/Tools/MiniBrowser/efl/main.c
+++ /dev/null
@@ -1,1584 +0,0 @@
-/*
- * Copyright (C) 2012 Samsung Electronics
- * Copyright (C) 2012 Intel Corporation. All rights reserved.
- *
- *  This library is free software; you can redistribute it and/or
- *  modify it under the terms of the GNU Lesser General Public
- *  License as published by the Free Software Foundation; either
- *  version 2 of the License, or (at your option) any later version.
- *
- *  This library is distributed in the hope that it will be useful,
- *  but WITHOUT ANY WARRANTY; without even the implied warranty of
- *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- *  Lesser General Public License for more details.
- *
- *  You should have received a copy of the GNU Lesser General Public
- *  License along with this library; if not, write to the Free Software
- *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
- */
-
-#include "EWebKit2.h"
-#include "url_utils.h"
-#include <Ecore.h>
-#include <Ecore_Evas.h>
-#include <Ecore_Getopt.h>
-#include <Eina.h>
-#include <Elementary.h>
-#include <Evas.h>
-
-static const char DEFAULT_URL[] = "http://www.google.com/";
-static const char APP_NAME[] = "EFL MiniBrowser";
-static const int TOOL_BAR_ICON_SIZE = 24;
-static const int TOOL_BAR_BUTTON_SIZE = 32;
-static const int SEARCH_FIELD_SIZE = 200;
-static const int SEARCH_BUTTON_SIZE = 25;
-static const int MAX_SEARCH_COUNT = 100;
-static const int DEFAULT_SEARCH_FLAGS = EWK_FIND_OPTIONS_SHOW_HIGHLIGHT | EWK_FIND_OPTIONS_CASE_INSENSITIVE | EWK_FIND_OPTIONS_WRAP_AROUND;
-static const double TOOLTIP_DELAY_SECONDS = 1.0;
-
-#define info(format, args...)       \
-    do {                            \
-        if (verbose)                \
-            printf(format, ##args); \
-    } while (0)
-
-static int verbose = 1;
-static Eina_List *windows = NULL;
-static char *evas_engine_name = NULL;
-static Eina_Bool encoding_detector_enabled = EINA_FALSE;
-static Eina_Bool frame_flattening_enabled = EINA_FALSE;
-static Eina_Bool local_storage_enabled = EINA_TRUE;
-static Eina_Bool fullscreen_enabled = EINA_FALSE;
-static int window_width = 800;
-static int window_height = 600;
-/* Default value of device_pixel_ratio is '0' so that we don't set custom device
- * scale factor unless it's required by the User. */
-static double device_pixel_ratio = 0;
-static Eina_Bool legacy_behavior_enabled = EINA_FALSE;
-
-#define DEFAULT_ZOOM_LEVEL 5 // Set default zoom level to 1.0 (index 5 on zoomLevels).
-// The zoom values are chosen to be like in Mozilla Firefox 3.
-const static float zoomLevels[] = {0.3, 0.5, 0.67, 0.8, 0.9, 1.0, 1.1, 1.2, 1.33, 1.5, 1.7, 2.0, 2.4, 3.0};
-
-static Eina_Bool
-zoom_level_set(Evas_Object *webview, int level)
-{
-    if (level < 0  || level >= sizeof(zoomLevels) / sizeof(float))
-        return EINA_FALSE;
-
-    Evas_Coord ox, oy, mx, my, cx, cy;
-    evas_pointer_canvas_xy_get(evas_object_evas_get(webview), &mx, &my); // Get current mouse position on window.
-    evas_object_geometry_get(webview, &ox, &oy, NULL, NULL); // Get webview's position on window.
-    cx = mx - ox; // current x position = mouse x position - webview x position
-    cy = my - oy; // current y position = mouse y position - webview y position
-
-    Eina_Bool result = ewk_view_scale_set(webview, zoomLevels[level], cx, cy);
-    return result;
-}
-
-static Ewk_View_Smart_Class *miniBrowserViewSmartClass()
-{
-    static Ewk_View_Smart_Class ewkViewClass = EWK_VIEW_SMART_CLASS_INIT_NAME_VERSION("MiniBrowser_View");
-    return &ewkViewClass;
-}
-
-typedef struct _Tooltip_Information {
-    Ecore_Timer *show_timer;
-    Eina_Bool activated;
-    Eina_Bool text_set;
-    Eina_Bool shown;
-} Tooltip_Information;
-
-typedef struct _Browser_Window {
-    Evas_Object *elm_window;
-    Evas_Object *ewk_view;
-    Evas_Object *url_bar;
-    Evas_Object *back_button;
-    Evas_Object *forward_button;
-    struct {
-        Evas_Object *elm_menu;
-        Ewk_Popup_Menu *ewk_menu;
-    } popup;
-    struct {
-        Evas_Object *search_bar;
-        Evas_Object *search_field;
-        Evas_Object *backward_button;
-        Evas_Object *forward_button;
-    } search;
-    int current_zoom_level; 
-    Tooltip_Information tooltip;
-} Browser_Window;
-
-typedef struct _File_Selector_Data {
-    Browser_Window* parent;
-    Evas_Object *elm_window;
-    Ewk_File_Chooser_Request *request;
-} File_Selector_Data;
-
-typedef struct _Auth_Data {
-    Evas_Object *popup;
-    Ewk_Auth_Request *request;
-    Evas_Object *username_entry;
-    Evas_Object *password_entry;
-} Auth_Data;
-
-static const Ecore_Getopt options = {
-    "MiniBrowser",
-    "%prog [options] [url]",
-    "0.0.1",
-    "(C)2012 Samsung Electronics\n (C)2012 Intel Corporation\n",
-    "",
-    "Test Web Browser using the Enlightenment Foundation Libraries (EFL) port of WebKit2",
-    EINA_TRUE, {
-        ECORE_GETOPT_STORE_STR
-            ('e', "engine", "ecore-evas engine to use."),
-        ECORE_GETOPT_STORE_STR
-            ('s', "window-size", "window size in following format (width)x(height)."),
-        ECORE_GETOPT_STORE_DEF_BOOL
-            ('b', "legacy", "Legacy mode", EINA_FALSE),
-        ECORE_GETOPT_STORE_DOUBLE
-            ('r', "device-pixel-ratio", "Ratio between the CSS units and device pixels."),
-        ECORE_GETOPT_CALLBACK_NOARGS
-            ('E', "list-engines", "list ecore-evas engines.",
-             ecore_getopt_callback_ecore_evas_list_engines, NULL),
-        ECORE_GETOPT_STORE_DEF_BOOL
-            ('c', "encoding-detector", "enable/disable encoding detector", EINA_FALSE),
-        ECORE_GETOPT_STORE_DEF_BOOL
-            ('f', "flattening", "frame flattening.", EINA_FALSE),
-        ECORE_GETOPT_STORE_DEF_BOOL
-            ('l', "local-storage", "HTML5 local storage support (enabled by default).", EINA_TRUE),
-        ECORE_GETOPT_STORE_DEF_BOOL
-            ('F', "full-screen", "start in full-screen.", EINA_FALSE),
-        ECORE_GETOPT_VERSION
-            ('V', "version"),
-        ECORE_GETOPT_COPYRIGHT
-            ('R', "copyright"),
-        ECORE_GETOPT_HELP
-            ('h', "help"),
-        ECORE_GETOPT_SENTINEL
-    }
-};
-
-static Browser_Window *window_create(Evas_Object* opener, const char *url, int width, int height, Eina_Bool view_mode);
-
-static Browser_Window *window_find_with_elm_window(Evas_Object *elm_window)
-{
-    Eina_List *l;
-    void *data;
-
-    if (!elm_window)
-        return NULL;
-
-    EINA_LIST_FOREACH(windows, l, data) {
-        Browser_Window *window = (Browser_Window *)data;
-        if (window->elm_window == elm_window)
-            return window;
-    }
-    return NULL;
-}
-
-static Browser_Window *window_find_with_ewk_view(Evas_Object *ewk_view)
-{
-    Eina_List *l;
-    void *data;
-
-    if (!ewk_view)
-        return NULL;
-
-    EINA_LIST_FOREACH(windows, l, data) {
-        Browser_Window *window = (Browser_Window *)data;
-        if (window->ewk_view == ewk_view)
-            return window;
-    }
-    return NULL;
-}
-
-static Eina_Bool
-on_tooltip_show(void *user_data)
-{
-    Browser_Window *window = (Browser_Window *)user_data;
-
-    window->tooltip.show_timer = NULL;
-    elm_object_tooltip_show(window->elm_window);
-    window->tooltip.shown = EINA_TRUE;
-    return ECORE_CALLBACK_CANCEL;
-}
-
-static void
-window_tooltip_hide(Browser_Window *window)
-{
-    if (window->tooltip.show_timer) {
-        ecore_timer_del(window->tooltip.show_timer);
-        window->tooltip.show_timer = NULL;
-    }
-
-    if (window->tooltip.shown) {
-        elm_object_tooltip_hide(window->elm_window);
-        window->tooltip.shown = EINA_FALSE;
-    }
-}
-
-static void
-window_tooltip_update(Browser_Window *window)
-{
-    window_tooltip_hide(window);
-
-    if (window->tooltip.activated && window->tooltip.text_set)
-        window->tooltip.show_timer = ecore_timer_add(TOOLTIP_DELAY_SECONDS, on_tooltip_show, window);
-}
-
-static void
-on_mouse_in(void *user_data, Evas *e, Evas_Object *ewk_view, void *event_info)
-{
-    Browser_Window *window = (Browser_Window *)user_data;
-
-    window->tooltip.activated = EINA_TRUE;
-    window_tooltip_update(window);
-}
-
-static void
-on_mouse_move(void *user_data, Evas *e, Evas_Object *ewk_view, void *event_info)
-{
-    window_tooltip_update((Browser_Window *)user_data);
-}
-
-static void
-on_mouse_out(void *user_data, Evas *e, Evas_Object *ewk_view, void *event_info)
-{
-    Browser_Window *window = (Browser_Window *)user_data;
-
-    window->tooltip.activated = EINA_FALSE;
-    window_tooltip_update(window);
-}
-
-static void window_free(Browser_Window *window)
-{
-    evas_object_event_callback_del(window->ewk_view, EVAS_CALLBACK_MOUSE_IN, on_mouse_in);
-    evas_object_event_callback_del(window->ewk_view, EVAS_CALLBACK_MOUSE_OUT, on_mouse_out);
-    evas_object_event_callback_del(window->ewk_view, EVAS_CALLBACK_MOUSE_MOVE, on_mouse_move);
-
-    evas_object_del(window->ewk_view);
-    /* The elm_win will take care of freeing its children */
-    evas_object_del(window->elm_window);
-
-    if (window->tooltip.show_timer)
-        ecore_timer_del(window->tooltip.show_timer);
-
-    free(window);
-}
-
-static void window_close(Browser_Window *window)
-{
-    windows = eina_list_remove(windows, window);
-    window_free(window);
-
-    if (!windows)
-        elm_exit();
-}
-
-static void
-search_box_show(Browser_Window *window)
-{
-    evas_object_size_hint_min_set(window->search.search_bar, SEARCH_FIELD_SIZE + 2 * SEARCH_BUTTON_SIZE, SEARCH_BUTTON_SIZE);
-
-    evas_object_show(window->search.search_bar);
-    evas_object_show(window->search.search_field);
-    evas_object_show(window->search.backward_button);
-    evas_object_show(window->search.forward_button);
-
-    /* Grab focus from the view */
-    evas_object_focus_set(window->ewk_view, EINA_FALSE);
-    elm_object_focus_set(window->search.search_field, EINA_TRUE);
-}
-
-static void
-search_box_hide(Browser_Window *window)
-{
-    ewk_view_text_find_highlight_clear(window->ewk_view);
-
-    evas_object_size_hint_min_set(window->search.search_bar, SEARCH_FIELD_SIZE + 2 * SEARCH_BUTTON_SIZE, 0);
-    evas_object_hide(window->search.search_bar);
-    evas_object_hide(window->search.search_field);
-    evas_object_hide(window->search.backward_button);
-    evas_object_hide(window->search.forward_button);
-
-    /* Give focus back to the view */
-    elm_object_focus_set(window->search.search_field, EINA_FALSE);
-    evas_object_focus_set(window->ewk_view, EINA_TRUE);
-}
-
-static void
-on_key_down(void *user_data, Evas *e, Evas_Object *ewk_view, void *event_info)
-{
-    Browser_Window *window = (Browser_Window *)user_data;
-    Evas_Event_Key_Down *ev = (Evas_Event_Key_Down*) event_info;
-
-    static const char *encodings[] = {
-        "ISO-8859-1",
-        "UTF-8",
-        NULL
-    };
-    static int currentEncoding = -1;
-    Eina_Bool ctrlPressed = evas_key_modifier_is_set(evas_key_modifier_get(e), "Control");
-
-    if (!strcmp(ev->key, "F1")) {
-        info("Back (F1) was pressed\n");
-        if (!ewk_view_back(ewk_view))
-            info("Back ignored: No back history\n");
-    } else if (!strcmp(ev->key, "F2")) {
-        info("Forward (F2) was pressed\n");
-        if (!ewk_view_forward(ewk_view))
-            info("Forward ignored: No forward history\n");
-    } else if (!strcmp(ev->key, "F3")) {
-        currentEncoding = (currentEncoding + 1) % (sizeof(encodings) / sizeof(encodings[0]));
-        info("Set encoding (F3) pressed. New encoding to %s", encodings[currentEncoding]);
-        ewk_view_custom_encoding_set(ewk_view, encodings[currentEncoding]);
-    } else if (!strcmp(ev->key, "F5")) {
-        info("Reload (F5) was pressed, reloading.\n");
-        ewk_view_reload(ewk_view);
-    } else if (!strcmp(ev->key, "F6")) {
-        info("Stop (F6) was pressed, stop loading.\n");
-        ewk_view_stop(ewk_view);
-    } else if (!strcmp(ev->key, "F7")) {
-        Ewk_Pagination_Mode mode =  ewk_view_pagination_mode_get(ewk_view);
-        mode = (++mode) % (EWK_PAGINATION_MODE_BOTTOM_TO_TOP + 1);
-        if (ewk_view_pagination_mode_set(ewk_view, mode))
-            info("Change Pagination Mode (F7) was pressed, changed to: %d\n", mode);
-        else
-            info("Change Pagination Mode (F7) was pressed, but NOT changed!");
-    } else if (!strcmp(ev->key, "F8")) {
-        info("Create souce code window (F8) was pressed.\n");
-        Browser_Window *window = window_create(ewk_view, ewk_view_url_get(ewk_view), 0, 0, EINA_TRUE);
-        windows = eina_list_append(windows, window);
-    } else if (!strcmp(ev->key, "F11")) {
-        info("Fullscreen (F11) was pressed, toggling window/fullscreen.\n");
-        elm_win_fullscreen_set(window->elm_window, !elm_win_fullscreen_get(window->elm_window));
-    } else if (!strcmp(ev->key, "n") && ctrlPressed) {
-        info("Create new window (Ctrl+n) was pressed.\n");
-        Browser_Window *window = window_create(NULL, DEFAULT_URL, 0, 0, EINA_FALSE);
-        // 0 equals default width and height.
-        windows = eina_list_append(windows, window);
-    } else if (!strcmp(ev->key, "i") && ctrlPressed) {
-        info("Show Inspector (Ctrl+i) was pressed.\n");
-        ewk_view_inspector_show(ewk_view);
-    } else if (!strcmp(ev->key, "f") && ctrlPressed) {
-        info("Show Search Box (Ctrl+f) was pressed.\n");
-        search_box_show(window);
-    } else if (!strcmp(ev->key, "Escape")) {
-        if (evas_object_visible_get(window->search.search_bar))
-            search_box_hide(window);
-        else if (elm_win_fullscreen_get(window->elm_window))
-            ewk_view_fullscreen_exit(ewk_view);
-    } else if (ctrlPressed && (!strcmp(ev->key, "minus") || !strcmp(ev->key, "KP_Subtract"))) {
-        if (zoom_level_set(ewk_view, window->current_zoom_level - 1))
-            window->current_zoom_level--;
-        info("Zoom out (Ctrl + '-') was pressed, zoom level became %.2f\n", zoomLevels[window->current_zoom_level]);
-    } else if (ctrlPressed && (!strcmp(ev->key, "equal") || !strcmp(ev->key, "KP_Add"))) {
-        if (zoom_level_set(ewk_view, window->current_zoom_level + 1))
-            window->current_zoom_level++;
-        info("Zoom in (Ctrl + '+') was pressed, zoom level became %.2f\n", zoomLevels[window->current_zoom_level]);
-    } else if (ctrlPressed && !strcmp(ev->key, "0")) {
-        if (zoom_level_set(ewk_view, DEFAULT_ZOOM_LEVEL))
-            window->current_zoom_level = DEFAULT_ZOOM_LEVEL;
-        info("Zoom to default (Ctrl + '0') was pressed, zoom level became %.2f\n", zoomLevels[window->current_zoom_level]);
-    }
-}
-
-static void
-view_focus_set(Browser_Window *window, Eina_Bool focus)
-{
-    /* We steal focus away from elm's focus model and start to do things
-     * manually here, so elm now has no clue what's up. Tell elm that its
-     * toplevel widget is to be unfocused so elm gives up the focus */
-    elm_object_focus_set(elm_object_top_widget_get(window->elm_window), EINA_FALSE);
-    evas_object_focus_set(window->ewk_view, focus);
-}
-
-static void
-on_mouse_down(void *user_data, Evas *e, Evas_Object *ewk_view, void *event_info)
-{
-    Browser_Window *window = (Browser_Window *)user_data;
-    Evas_Event_Mouse_Down *ev = (Evas_Event_Mouse_Down *)event_info;
-
-    /* Clear selection from the URL bar */
-    elm_entry_select_none(window->url_bar);
-
-    if (ev->button == 1)
-        view_focus_set(window, EINA_TRUE);
-    else if (ev->button == 2)
-        view_focus_set(window, !evas_object_focus_get(ewk_view));
-}
-
-static void
-title_set(Evas_Object *elm_window, const char *title, int progress)
-{
-    Eina_Strbuf *buffer;
-
-    if (!title || !*title) {
-        elm_win_title_set(elm_window, APP_NAME);
-        return;
-    }
-
-    buffer = eina_strbuf_new();
-    if (progress < 100)
-        eina_strbuf_append_printf(buffer, "%s (%d%%) - %s", title, progress, APP_NAME);
-    else
-        eina_strbuf_append_printf(buffer, "%s - %s", title, APP_NAME);
-
-    elm_win_title_set(elm_window, eina_strbuf_string_get(buffer));
-    eina_strbuf_free(buffer);
-}
-
-static void
-on_title_changed(void *user_data, Evas_Object *ewk_view, void *event_info)
-{
-    Browser_Window *window = (Browser_Window *)user_data;
-    const char *title = (const char *)event_info;
-
-    title_set(window->elm_window, title, 100);
-}
-
-static void
-on_url_changed(void *user_data, Evas_Object *ewk_view, void *event_info)
-{
-    Browser_Window *window = (Browser_Window *)user_data;
-
-    char *url = elm_entry_utf8_to_markup(ewk_view_url_get(window->ewk_view));
-    elm_entry_entry_set(window->url_bar, url);
-
-    free(url);
-
-    search_box_hide(window);
-}
-
-static void
-on_back_forward_list_changed(void *user_data, Evas_Object *ewk_view, void *event_info)
-{
-    Browser_Window *window = (Browser_Window *)user_data;
-
-    /* Update navigation buttons state */
-    elm_object_disabled_set(window->back_button, !ewk_view_back_possible(ewk_view));
-    elm_object_disabled_set(window->forward_button, !ewk_view_forward_possible(ewk_view));
-}
-
-static void
-on_progress(void *user_data, Evas_Object *ewk_view, void *event_info)
-{
-    Browser_Window *window = (Browser_Window *)user_data;
-    double progress = *(double *)event_info;
-
-    title_set(window->elm_window, ewk_view_title_get(window->ewk_view), progress * 100);
-}
-
-static void
-on_error(void *user_data, Evas_Object *ewk_view, void *event_info)
-{
-    Eina_Strbuf *buffer;
-    const Ewk_Error *error = (const Ewk_Error *)event_info;
-
-    /* This is a cancellation, do not display the error page */
-    if (ewk_error_cancellation_get(error))
-        return;
-
-    buffer = eina_strbuf_new();
-    eina_strbuf_append_printf(buffer, "<html><body><div style=\"color:#ff0000\">ERROR!</div><br><div>Code: %d<br>Description: %s<br>URL: %s</div></body</html>",
-        ewk_error_code_get(error), ewk_error_description_get(error), ewk_error_url_get(error));
-
-    ewk_view_html_string_load(ewk_view, eina_strbuf_string_get(buffer), 0, ewk_error_url_get(error));
-    eina_strbuf_free(buffer);
-}
-
-static void
-on_download_request(void *user_data, Evas_Object *ewk_view, void *event_info)
-{
-    Ewk_Download_Job *download = (Ewk_Download_Job *)event_info;
-
-    // FIXME: The destination folder should be selected by the user but we set it to '/tmp' for now.
-    Eina_Strbuf *destination_path = eina_strbuf_new();
-
-    const char *suggested_name = ewk_download_job_suggested_filename_get(download);
-    if (suggested_name && *suggested_name)
-        eina_strbuf_append_printf(destination_path, "/tmp/%s", suggested_name);
-    else {
-        // Generate a unique file name since no name was suggested.
-        char unique_path[] = "/tmp/downloaded-file.XXXXXX";
-        eina_strbuf_append(destination_path, mktemp(unique_path));
-    }
-
-    ewk_download_job_destination_set(download, eina_strbuf_string_get(destination_path));
-    info("Downloading: %s\n", eina_strbuf_string_get(destination_path));
-    eina_strbuf_free(destination_path);
-}
-
-static void on_filepicker_parent_deletion(void *user_data, Evas *evas, Evas_Object *elm_window, void *event);
-
-static void close_file_picker(File_Selector_Data *fs_data)
-{
-    evas_object_event_callback_del(fs_data->parent->elm_window, EVAS_CALLBACK_DEL, on_filepicker_parent_deletion);
-    evas_object_del(fs_data->elm_window);
-    ewk_object_unref(fs_data->request);
-    free(fs_data);
-}
-
-static void
-on_filepicker_parent_deletion(void *user_data, Evas *evas, Evas_Object *elm_window, void *event)
-{
-    close_file_picker((File_Selector_Data *)user_data);
-}
-
-static void
-on_filepicker_deletion(void *user_data, Evas_Object *elm_window, void *event_info)
-{
-    close_file_picker((File_Selector_Data *)user_data);
-}
-
-static void
-on_fileselector_done(void *user_data, Evas_Object *file_selector, void *event_info)
-{
-    File_Selector_Data *fs_data = (File_Selector_Data *)user_data;
-
-    const char *selected = (const char *)event_info;
-    if (selected && *selected)
-        ewk_file_chooser_request_file_choose(fs_data->request, selected);
-
-    close_file_picker(fs_data);
-}
-
-static void
-on_file_chooser_request(void *user_data, Evas_Object *ewk_view, void *event_info)
-{
-    Browser_Window *window = (Browser_Window *)user_data;
-    Ewk_File_Chooser_Request *request = (Ewk_File_Chooser_Request *)event_info;
-
-    // Show basic file picker which does not currently support multiple files
-    // or MIME type filtering.
-    Evas_Object *elm_window = elm_win_add(window->elm_window, "file-picker-window", ELM_WIN_DIALOG_BASIC);
-    elm_win_title_set(elm_window, "File picker");
-    elm_win_modal_set(elm_window, EINA_TRUE);
-
-    File_Selector_Data *fs_data = (File_Selector_Data *)malloc(sizeof(File_Selector_Data));
-    fs_data->parent = window;
-    fs_data->elm_window = elm_window;
-    fs_data->request = ewk_object_ref(request);
-    evas_object_smart_callback_add(elm_window, "delete,request", on_filepicker_deletion, fs_data);
-    evas_object_event_callback_add(window->elm_window, EVAS_CALLBACK_DEL, on_filepicker_parent_deletion, fs_data);
-
-    Evas_Object *file_selector = elm_fileselector_add(elm_window);
-    const char *home_path = getenv("HOME");
-    elm_fileselector_path_set(file_selector, home_path ? home_path : "/home");
-    evas_object_size_hint_weight_set(file_selector, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
-    elm_win_resize_object_add(elm_window, file_selector);
-    evas_object_show(file_selector);
-
-    evas_object_smart_callback_add(file_selector, "done", on_fileselector_done, fs_data);
-
-    evas_object_resize(elm_window, 400, 400);
-    elm_win_center(elm_window, EINA_TRUE, EINA_TRUE);
-    evas_object_show(elm_window);
-}
-
-static void
-on_download_finished(void *user_data, Evas_Object *ewk_view, void *event_info)
-{
-    Ewk_Download_Job *download = (Ewk_Download_Job *)event_info;
-    info("Download finished: %s\n",  ewk_download_job_destination_get(download));
-}
-
-static void
-on_download_failed(void *user_data, Evas_Object *ewk_view, void *event_info)
-{
-    info("Download failed!\n");
-}
-
-static void
-update_view_favicon(Browser_Window *window, Evas_Object *icon)
-{
-    /* Remove previous icon from URL bar */
-    Evas_Object *old_icon = elm_object_part_content_unset(window->url_bar, "icon");
-    if (old_icon) {
-        evas_object_unref(old_icon);
-        evas_object_del(old_icon);
-    }
-
-    /* Show new icon in URL bar */
-    if (icon) {
-        /* Workaround for icon display bug:
-         * http://trac.enlightenment.org/e/ticket/1616 */
-        evas_object_size_hint_min_set(icon, 48, 24);
-        evas_object_image_filled_set(icon, EINA_FALSE);
-        evas_object_image_fill_set(icon, 24, 0, 24, 24);
-        elm_object_part_content_set(window->url_bar, "icon", icon);
-        evas_object_ref(icon);
-    }
-}
-
-static void
-on_view_favicon_changed(void *user_data, Evas_Object *ewk_view, void *event_info)
-{
-    Browser_Window *window = (Browser_Window *)user_data;
-
-    Evas_Object* favicon = ewk_view_favicon_get(ewk_view);
-    update_view_favicon(window, favicon);
-
-    if (favicon)
-        evas_object_unref(favicon);
-}
-
-static int
-quit(Eina_Bool success, const char *msg)
-{
-    ewk_shutdown();
-    elm_shutdown();
-
-    if (msg)
-        fputs(msg, (success) ? stdout : stderr);
-
-    if (!success)
-        return EXIT_FAILURE;
-
-    return EXIT_SUCCESS;
-}
-
-static void
-on_url_bar_activated(void *user_data, Evas_Object *url_bar, void *event_info)
-{
-    Browser_Window *window = (Browser_Window *)user_data;
-
-    const char *markup_url = elm_entry_entry_get(url_bar);
-    char *user_url = elm_entry_markup_to_utf8(markup_url);
-    char *url = url_from_user_input(user_url);
-    ewk_view_url_set(window->ewk_view, url);
-
-    free(user_url);
-    free(url);
-
-    /* Give focus back to the view */
-    view_focus_set(window, EINA_TRUE);
-}
-
-static void
-on_url_bar_clicked(void *user_data, Evas_Object *url_bar, void *event_info)
-{
-    Browser_Window *window = (Browser_Window *)user_data;
-
-    /* Grab focus from the view */
-    evas_object_focus_set(window->ewk_view, EINA_FALSE);
-    elm_object_focus_set(url_bar, EINA_TRUE);
-}
-
-static void
-on_search_field_aborted(void *user_data, Evas_Object *search_field, void *event_info)
-{
-    Browser_Window *window = (Browser_Window *)user_data;
-    search_box_hide(window);
-
-    /* Give focus back to the view */
-    view_focus_set(window, EINA_TRUE);
-}
-
-static void
-on_search_field_activated(void *user_data, Evas_Object *search_field, void *event_info)
-{
-    Browser_Window *window = (Browser_Window *)user_data;
-
-    const char *markup_text = elm_entry_entry_get(search_field);
-    char *text = elm_entry_markup_to_utf8(markup_text);
-    ewk_view_text_find(window->ewk_view, text, DEFAULT_SEARCH_FLAGS, MAX_SEARCH_COUNT);
-    free(text);
-
-    /* Grab focus from the view */
-    evas_object_focus_set(window->ewk_view, EINA_FALSE);
-    elm_object_focus_set(search_field, EINA_TRUE);
-}
-
-static void
-on_search_field_clicked(void *user_data, Evas_Object *search_field, void *event_info)
-{
-    Browser_Window *window = (Browser_Window *)user_data;
-
-    /* Grab focus from the view */
-    evas_object_focus_set(window->ewk_view, EINA_FALSE);
-    elm_object_focus_set(search_field, EINA_TRUE);
-}
-
-static void
-on_back_button_clicked(void *user_data, Evas_Object *back_button, void *event_info)
-{
-    Browser_Window *window = (Browser_Window *)user_data;
-
-    ewk_view_back(window->ewk_view);
-    /* Update back button state */
-    elm_object_disabled_set(back_button, !ewk_view_back_possible(window->ewk_view));
-}
-
-static void
-on_forward_button_clicked(void *user_data, Evas_Object *forward_button, void *event_info)
-{
-    Browser_Window *window = (Browser_Window *)user_data;
-
-    ewk_view_forward(window->ewk_view);
-    /* Update forward button state */
-    elm_object_disabled_set(forward_button, !ewk_view_forward_possible(window->ewk_view));
-}
-
-static void
-on_search_backward_button_clicked(void *user_data, Evas_Object *search_backward_button, void *event_info)
-{
-    Browser_Window *window = (Browser_Window *)user_data;
-
-    char *text = elm_entry_markup_to_utf8(elm_entry_entry_get(window->search.search_field));
-    ewk_view_text_find(window->ewk_view, text, DEFAULT_SEARCH_FLAGS | EWK_FIND_OPTIONS_BACKWARDS, MAX_SEARCH_COUNT);
-    free(text);
-}
-
-static void
-on_search_forward_button_clicked(void *user_data, Evas_Object *search_forward_button, void *event_info)
-{
-    Browser_Window *window = (Browser_Window *)user_data;
-
-    char *text = elm_entry_markup_to_utf8(elm_entry_entry_get(window->search.search_field));
-    ewk_view_text_find(window->ewk_view, text, DEFAULT_SEARCH_FLAGS, MAX_SEARCH_COUNT);
-    free(text);
-}
-
-static void
-on_refresh_button_clicked(void *user_data, Evas_Object *refresh_button, void *event_info)
-{
-    Browser_Window *window = (Browser_Window *)user_data;
-
-    Evas *evas = evas_object_evas_get(refresh_button);
-    Eina_Bool ctrlPressed = evas_key_modifier_is_set(evas_key_modifier_get(evas), "Control");
-    if (ctrlPressed) {
-        info("Reloading and bypassing cache...\n");
-        ewk_view_reload_bypass_cache(window->ewk_view);
-    } else {
-        info("Reloading...\n");
-        ewk_view_reload(window->ewk_view);
-    }
-}
-
-static void
-quit_event_loop(void *user_data, Evas_Object *obj, void *event_info)
-{
-    ecore_main_loop_quit();
-}
-
-static void
-on_ok_clicked(void *user_data, Evas_Object *obj, void *event_info)
-{
-    Eina_Bool *confirmed = (Eina_Bool *)user_data;
-    *confirmed = EINA_TRUE;
-
-    ecore_main_loop_quit();
-}
-
-static void
-on_javascript_alert(Ewk_View_Smart_Data *smartData, const char *message)
-{
-    Browser_Window *window = window_find_with_ewk_view(smartData->self);
-
-    Evas_Object *alert_popup = elm_popup_add(window->elm_window);
-    evas_object_size_hint_weight_set(alert_popup, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
-    elm_object_text_set(alert_popup, message);
-    elm_object_part_text_set(alert_popup, "title,text", "Alert");
-
-    /* Popup buttons */
-    Evas_Object *button = elm_button_add(alert_popup);
-    elm_object_text_set(button, "OK");
-    elm_object_part_content_set(alert_popup, "button1", button);
-    evas_object_smart_callback_add(button, "clicked", quit_event_loop, NULL);
-    elm_object_focus_set(button, EINA_TRUE);
-    evas_object_show(alert_popup);
-
-    /* Make modal */
-    ecore_main_loop_begin();
-
-    evas_object_del(alert_popup);
-}
-
-static Eina_Bool
-on_javascript_confirm(Ewk_View_Smart_Data *smartData, const char *message)
-{
-    Browser_Window *window = window_find_with_ewk_view(smartData->self);
-
-    Eina_Bool ok = EINA_FALSE;
-
-    Evas_Object *confirm_popup = elm_popup_add(window->elm_window);
-    evas_object_size_hint_weight_set(confirm_popup, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
-    elm_object_text_set(confirm_popup, message);
-    elm_object_part_text_set(confirm_popup, "title,text", "Confirmation");
-
-    /* Popup buttons */
-    Evas_Object *cancel_button = elm_button_add(confirm_popup);
-    elm_object_text_set(cancel_button, "Cancel");
-    elm_object_part_content_set(confirm_popup, "button1", cancel_button);
-    evas_object_smart_callback_add(cancel_button, "clicked", quit_event_loop, NULL);
-    Evas_Object *ok_button = elm_button_add(confirm_popup);
-    elm_object_text_set(ok_button, "OK");
-    elm_object_part_content_set(confirm_popup, "button2", ok_button);
-    evas_object_smart_callback_add(ok_button, "clicked", on_ok_clicked, &ok);
-    elm_object_focus_set(ok_button, EINA_TRUE);
-    evas_object_show(confirm_popup);
-
-    /* Make modal */
-    ecore_main_loop_begin();
-
-    evas_object_del(confirm_popup);
-
-    return ok;
-}
-
-static const char *
-on_javascript_prompt(Ewk_View_Smart_Data *smartData, const char *message, const char *default_value)
-{
-    Browser_Window *window = window_find_with_ewk_view(smartData->self);
-
-    Eina_Bool ok = EINA_FALSE;
-
-    Evas_Object *prompt_popup = elm_popup_add(window->elm_window);
-    evas_object_size_hint_weight_set(prompt_popup, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
-    elm_object_part_text_set(prompt_popup, "title,text", "Prompt");
-
-    /* Popup Content */
-    Evas_Object *box = elm_box_add(window->elm_window);
-    elm_box_padding_set(box, 0, 4);
-    evas_object_size_hint_weight_set(box, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
-    evas_object_size_hint_align_set(box, EVAS_HINT_FILL, EVAS_HINT_FILL);
-    evas_object_show(box);
-
-    Evas_Object *prompt = elm_label_add(window->elm_window);
-    elm_object_text_set(prompt, message);
-    evas_object_size_hint_weight_set(prompt, EVAS_HINT_EXPAND, 0.0);
-    evas_object_size_hint_align_set(prompt, EVAS_HINT_FILL, 0.5);
-    elm_box_pack_end(box, prompt);
-    evas_object_show(prompt);
-
-    Evas_Object *entry = elm_entry_add(window->elm_window);
-    elm_entry_scrollable_set(entry, EINA_TRUE);
-    elm_entry_single_line_set(entry, EINA_TRUE);
-    elm_entry_text_style_user_push(entry, "DEFAULT='font_size=18'");
-    elm_entry_entry_set(entry, default_value ? default_value : "");
-    elm_entry_select_all(entry);
-    evas_object_size_hint_weight_set(entry, EVAS_HINT_EXPAND, 0.0);
-    evas_object_size_hint_align_set(entry, EVAS_HINT_FILL, 0.5);
-    elm_box_pack_end(box, entry);
-    elm_object_focus_set(entry, EINA_TRUE);
-    evas_object_show(entry);
-
-    elm_object_content_set(prompt_popup, box);
-
-    /* Popup buttons */
-    Evas_Object *cancel_button = elm_button_add(prompt_popup);
-    elm_object_text_set(cancel_button, "Cancel");
-    elm_object_part_content_set(prompt_popup, "button1", cancel_button);
-    evas_object_smart_callback_add(cancel_button, "clicked", quit_event_loop, NULL);
-    Evas_Object *ok_button = elm_button_add(prompt_popup);
-    elm_object_text_set(ok_button, "OK");
-    elm_object_part_content_set(prompt_popup, "button2", ok_button);
-    evas_object_smart_callback_add(ok_button, "clicked", on_ok_clicked, &ok);
-    evas_object_show(prompt_popup);
-
-    /* Make modal */
-    ecore_main_loop_begin();
-
-    /* The return string need to be stringshared */
-    const char *prompt_text = ok ? eina_stringshare_add(elm_entry_entry_get(entry)) : NULL;
-    evas_object_del(prompt_popup);
-
-    return prompt_text;
-}
-
-static void
-on_popup_menu_discarded(void *user_data, Evas_Object *obj, void *event_info)
-{
-    // The user clicked outside the menu to discard it.
-    info("Popup menu was discarded.\n");
-    Browser_Window *window = (Browser_Window *)user_data;
-    ewk_popup_menu_close(window->popup.ewk_menu);
-}
-
-static void
-on_popup_menu_item_clicked(void *user_data, Evas_Object *obj, void *event_info)
-{
-    Browser_Window *window = (Browser_Window *)user_data;
-    Elm_Object_Item *item = (Elm_Object_Item *)event_info;
-
-    info("Selected popup menu index: %u\n", elm_menu_item_index_get(item));
-    ewk_popup_menu_selected_index_set(window->popup.ewk_menu, elm_menu_item_index_get(item));
-
-    // Close popup menu.
-    ewk_popup_menu_close(window->popup.ewk_menu);
-}
-
-static void
-popup_menu_populate(Evas_Object *elm_menu, Ewk_Popup_Menu *ewk_menu, void *user_data)
-{
-    const Eina_List* ewk_items = ewk_popup_menu_items_get(ewk_menu);
-
-    void *data;
-    const Eina_List *l;
-    EINA_LIST_FOREACH(ewk_items, l, data) {
-        Ewk_Popup_Menu_Item *ewk_item = (Ewk_Popup_Menu_Item *)data;
-        switch (ewk_popup_menu_item_type_get(ewk_item)) {
-        case EWK_POPUP_MENU_SEPARATOR:
-            elm_menu_item_separator_add(elm_menu, NULL);
-            break;
-        case EWK_POPUP_MENU_ITEM:
-            if (ewk_popup_menu_item_is_label_get(ewk_item)) {
-                Elm_Object_Item *item = elm_menu_item_add(elm_menu, NULL, NULL, ewk_popup_menu_item_text_get(ewk_item), NULL, NULL);
-                elm_object_item_disabled_set(item, EINA_TRUE);
-            } else {
-                Elm_Object_Item *item = elm_menu_item_add(elm_menu, NULL, NULL, ewk_popup_menu_item_text_get(ewk_item), on_popup_menu_item_clicked, user_data);
-                elm_object_item_tooltip_text_set(item, ewk_popup_menu_item_tooltip_get(ewk_item));
-                elm_object_item_disabled_set(item, !ewk_popup_menu_item_enabled_get(ewk_item));
-                elm_menu_item_selected_set(item, ewk_popup_menu_item_selected_get(ewk_item));
-            }
-            break;
-        default:
-            info("Unrecognized popup menu item type!\n");
-            break;
-        }
-    }
-}
-
-static Eina_Bool
-on_popup_menu_show(Ewk_View_Smart_Data *smartData, Eina_Rectangle rect, Ewk_Text_Direction text_direction, double page_scale_factor, Ewk_Popup_Menu *ewk_menu)
-{
-    Browser_Window *window = window_find_with_ewk_view(smartData->self);
-
-    if (window->popup.elm_menu)
-        evas_object_del(window->popup.elm_menu);
-
-    window->popup.elm_menu = elm_menu_add(window->elm_window);
-    window->popup.ewk_menu = ewk_menu;
-    evas_object_smart_callback_add(window->popup.elm_menu, "clicked", on_popup_menu_discarded, window);
-
-    popup_menu_populate(window->popup.elm_menu, ewk_menu, window);
-
-    info("Showing popup menu at (%d, %d)\n", rect.x, rect.y);
-    elm_menu_move(window->popup.elm_menu, rect.x, rect.y);
-    evas_object_show(window->popup.elm_menu);
-
-    return EINA_TRUE;
-}
-
-static Eina_Bool
-on_popup_menu_hide(Ewk_View_Smart_Data *smartData)
-{
-    Browser_Window *window = window_find_with_ewk_view(smartData->self);
-
-    if (!window->popup.elm_menu)
-        return EINA_FALSE;
-
-    elm_menu_close(window->popup.elm_menu);
-
-    return EINA_TRUE;
-}
-
-static Eina_Bool on_window_geometry_get(Ewk_View_Smart_Data *sd, Evas_Coord *x, Evas_Coord *y, Evas_Coord *width, Evas_Coord *height)
-{
-    Browser_Window *window = window_find_with_ewk_view(sd->self);
-
-    evas_object_geometry_get(window->elm_window, x, y, width, height);
-
-    return EINA_TRUE;
-}
-
-static Eina_Bool on_window_geometry_set(Ewk_View_Smart_Data *sd, Evas_Coord x, Evas_Coord y, Evas_Coord width, Evas_Coord height)
-{
-    Browser_Window *window = window_find_with_ewk_view(sd->self);
-
-    evas_object_move(window->elm_window, x, y);
-    evas_object_resize(window->elm_window, width, height);
-
-    return EINA_TRUE;
-}
-
-typedef struct {
-    Evas_Object *ewk_view;
-    Evas_Object *permission_popup;
-} PermissionData;
-
-static void
-on_fullscreen_accept(void *user_data, Evas_Object *obj, void *event_info)
-{
-    PermissionData *permission_data = (PermissionData *)user_data;
-
-    evas_object_del(permission_data->permission_popup);
-    evas_object_focus_set(permission_data->ewk_view, EINA_TRUE);
-    free(permission_data);
-}
-
-static void
-on_fullscreen_deny(void *user_data, Evas_Object *obj, void *event_info)
-{
-    PermissionData *permission_data = (PermissionData *)user_data;
-
-    ewk_view_fullscreen_exit(permission_data->ewk_view);
-    evas_object_del(permission_data->permission_popup);
-    evas_object_focus_set(permission_data->ewk_view, EINA_TRUE);
-    free(permission_data);
-}
-
-static Eina_Bool on_fullscreen_enter(Ewk_View_Smart_Data *sd, Ewk_Security_Origin *origin)
-{
-    Browser_Window *window = window_find_with_ewk_view(sd->self);
-
-    /* Go fullscreen */
-    elm_win_fullscreen_set(window->elm_window, EINA_TRUE);
-
-    /* Show user popup */
-    Evas_Object *permission_popup = elm_popup_add(window->elm_window);
-    evas_object_size_hint_weight_set(permission_popup, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
-
-    Eina_Strbuf *message = eina_strbuf_new();
-    eina_strbuf_append_printf(message, "%s is now fullscreen.<br>Press ESC at any time to exit fullscreen.<br>Allow fullscreen?", ewk_security_origin_host_get(origin));
-    elm_object_text_set(permission_popup, eina_strbuf_string_get(message));
-    eina_strbuf_free(message);
-    elm_object_part_text_set(permission_popup, "title,text", "Fullscreen Permission");
-
-    /* Popup buttons */
-    PermissionData *permission_data = (PermissionData *)malloc(sizeof(PermissionData));
-    permission_data->ewk_view = window->ewk_view;
-    permission_data->permission_popup = permission_popup;
-    Evas_Object *accept_button = elm_button_add(permission_popup);
-    elm_object_text_set(accept_button, "Accept");
-    elm_object_part_content_set(permission_popup, "button1", accept_button);
-    evas_object_smart_callback_add(accept_button, "clicked", on_fullscreen_accept, permission_data);
-
-    Evas_Object *deny_button = elm_button_add(permission_popup);
-    elm_object_text_set(deny_button, "Deny");
-    elm_object_part_content_set(permission_popup, "button2", deny_button);
-    evas_object_smart_callback_add(deny_button, "clicked", on_fullscreen_deny, permission_data);
-
-    evas_object_show(permission_popup);
-
-    return EINA_TRUE;
-}
-
-static Eina_Bool on_fullscreen_exit(Ewk_View_Smart_Data *sd)
-{
-    Browser_Window *window = window_find_with_ewk_view(sd->self);
-
-    elm_win_fullscreen_set(window->elm_window, EINA_FALSE);
-
-    return EINA_TRUE;
-}
-
-static Evas_Object *
-on_window_create(Ewk_View_Smart_Data *smartData, const char *url, const Ewk_Window_Features *window_features)
-{
-    int x = 0;
-    int y = 0;
-    int width = 0;
-    int height = 0;
-
-    ewk_window_features_geometry_get(window_features, &x, &y, &width, &height);
-
-    if (!width)
-        width = window_width;
-
-    if (!height)
-        height = window_height;
-
-    Browser_Window *window = window_create(smartData->self, url, width, height, EINA_FALSE);
-    Evas_Object *new_view = window->ewk_view;
-
-    windows = eina_list_append(windows, window);
-
-    info("minibrowser: location(%d,%d) size=(%d,%d) url=%s\n", x, y, width, height, url);
-
-    return new_view;
-}
-
-static void
-on_window_close(Ewk_View_Smart_Data *smartData)
-{
-    Browser_Window *window = window_find_with_ewk_view(smartData->self);
-    window_close(window);
-}
-
-static void
-auth_popup_close(Auth_Data *auth_data)
-{
-    ewk_object_unref(auth_data->request);
-    evas_object_del(auth_data->popup);
-    free(auth_data);
-}
-
-static void
-on_auth_cancel(void *user_data, Evas_Object *obj, void *event_info)
-{
-    Auth_Data *auth_data = (Auth_Data *)user_data;
-
-    ewk_auth_request_cancel(auth_data->request);
-
-    auth_popup_close(auth_data);
-}
-
-static void
-on_auth_ok(void *user_data, Evas_Object *obj, void *event_info)
-{
-    Auth_Data *auth_data = (Auth_Data *)user_data;
-
-    const char *username = elm_entry_entry_get(auth_data->username_entry);
-    const char *password = elm_entry_entry_get(auth_data->password_entry);
-    ewk_auth_request_authenticate(auth_data->request, username, password);
-
-    auth_popup_close(auth_data);
-}
-
-static void
-on_authentication_request(void *user_data, Evas_Object *obj, void *event_info)
-{
-    Browser_Window *window = (Browser_Window *)user_data;
-    Ewk_Auth_Request *request = ewk_object_ref((Ewk_Auth_Request *)event_info);
-
-    Auth_Data *auth_data = (Auth_Data *)malloc(sizeof(Auth_Data));
-    auth_data->request = request;
-
-    Evas_Object *auth_popup = elm_popup_add(window->elm_window);
-    auth_data->popup = auth_popup;
-    evas_object_size_hint_weight_set(auth_popup, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
-    elm_object_part_text_set(auth_popup, "title,text", "Authentication Required");
-
-    /* Popup Content */
-    Evas_Object *vbox = elm_box_add(auth_popup);
-    elm_box_padding_set(vbox, 0, 4);
-    evas_object_size_hint_weight_set(vbox, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
-    evas_object_size_hint_align_set(vbox, EVAS_HINT_FILL, EVAS_HINT_FILL);
-    elm_object_content_set(auth_popup, vbox);
-    evas_object_show(vbox);
-
-    /* Authentication message */
-    Evas_Object *label = elm_label_add(auth_popup);
-    elm_label_line_wrap_set(label, ELM_WRAP_WORD);
-    Eina_Strbuf *auth_text = eina_strbuf_new();
-    const char *host = ewk_auth_request_host_get(request);
-    const char *realm = ewk_auth_request_realm_get(request);
-    eina_strbuf_append_printf(auth_text, "A username and password are being requested by %s. The site says: \"%s\"", host, realm ? realm : "");
-    elm_object_text_set(label, eina_strbuf_string_get(auth_text));
-    eina_strbuf_free(auth_text);
-    evas_object_size_hint_weight_set(label, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
-    evas_object_size_hint_align_set(label, EVAS_HINT_FILL, EVAS_HINT_FILL);
-    elm_box_pack_end(vbox, label);
-    evas_object_show(label);
-
-    /* Credential table */
-    Evas_Object *table = elm_table_add(auth_popup);
-    elm_table_padding_set(table, 2, 2);
-    elm_table_homogeneous_set(table, EINA_TRUE);
-    evas_object_size_hint_weight_set(table, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
-    evas_object_size_hint_align_set(table, EVAS_HINT_FILL, EVAS_HINT_FILL);
-    elm_box_pack_end(vbox, table);
-    evas_object_show(table);
-
-    /* Username row */
-    Evas_Object *username_label = elm_label_add(auth_popup);
-    elm_object_text_set(username_label, "Username:");
-    evas_object_size_hint_weight_set(username_label, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
-    evas_object_size_hint_align_set(username_label, 1, EVAS_HINT_FILL);
-    elm_table_pack(table, username_label, 0, 0, 1, 1);
-    evas_object_show(username_label);
-
-    Evas_Object *username_entry = elm_entry_add(auth_popup);
-    auth_data->username_entry = username_entry;
-    elm_entry_scrollable_set(username_entry, EINA_TRUE);
-    elm_entry_single_line_set(username_entry, EINA_TRUE);
-    elm_entry_text_style_user_push(username_entry, "DEFAULT='font_size=18'");
-    const char *suggested_username = ewk_auth_request_suggested_username_get(request);
-    elm_entry_entry_set(username_entry, suggested_username ? suggested_username : "");
-    evas_object_size_hint_weight_set(username_entry, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
-    evas_object_size_hint_align_set(username_entry, EVAS_HINT_FILL, EVAS_HINT_FILL);
-    elm_table_pack(table, username_entry, 1, 0, 2, 1);
-    elm_object_focus_set(username_entry, EINA_TRUE);
-    evas_object_show(username_entry);
-
-    /* Password row */
-    Evas_Object *password_label = elm_label_add(auth_popup);
-    elm_object_text_set(password_label, "Password:");
-    evas_object_size_hint_weight_set(password_label, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
-    evas_object_size_hint_align_set(password_label, 1, EVAS_HINT_FILL);
-    elm_table_pack(table, password_label, 0, 1, 1, 1);
-    evas_object_show(password_label);
-
-    Evas_Object *password_entry = elm_entry_add(auth_popup);
-    auth_data->password_entry = password_entry;
-    elm_entry_scrollable_set(password_entry, EINA_TRUE);
-    elm_entry_single_line_set(password_entry, EINA_TRUE);
-    elm_entry_password_set(password_entry, EINA_TRUE);
-    elm_entry_text_style_user_push(password_entry, "DEFAULT='font_size=18'");
-    evas_object_size_hint_weight_set(password_entry, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
-    evas_object_size_hint_align_set(password_entry, EVAS_HINT_FILL, EVAS_HINT_FILL);
-    elm_table_pack(table, password_entry, 1, 1, 2, 1);
-    evas_object_show(password_entry);
-
-    /* Popup buttons */
-    Evas_Object *cancel_button = elm_button_add(auth_popup);
-    elm_object_text_set(cancel_button, "Cancel");
-    elm_object_part_content_set(auth_popup, "button1", cancel_button);
-    evas_object_smart_callback_add(cancel_button, "clicked", on_auth_cancel, auth_data);
-    Evas_Object *ok_button = elm_button_add(auth_popup);
-    elm_object_text_set(ok_button, "OK");
-    elm_object_part_content_set(auth_popup, "button2", ok_button);
-    evas_object_smart_callback_add(ok_button, "clicked", on_auth_ok, auth_data);
-    evas_object_show(auth_popup);
-}
-
-static void
-on_tooltip_text_set(void *user_data, Evas_Object *obj, void *event_info)
-{
-    Browser_Window *window = (Browser_Window *)user_data;
-    const char *message = (const char*)event_info;
-
-    elm_object_tooltip_text_set(window->elm_window, message);
-    window->tooltip.text_set = EINA_TRUE;
-    window_tooltip_update(window);
-}
-
-static void
-on_tooltip_text_unset(void *user_data, Evas_Object *obj, void *event_info)
-{
-    Browser_Window *window = (Browser_Window *)user_data;
-
-    window_tooltip_hide(window);
-    elm_object_tooltip_unset(window->elm_window);
-    window->tooltip.text_set = EINA_FALSE;
-}
-
-static void
-on_home_button_clicked(void *user_data, Evas_Object *home_button, void *event_info)
-{
-    Browser_Window *window = (Browser_Window *)user_data;
-
-    ewk_view_url_set(window->ewk_view, DEFAULT_URL);
-}
-
-static void
-on_window_deletion(void *user_data, Evas_Object *elm_window, void *event_info)
-{
-    window_close(window_find_with_elm_window(elm_window));
-}
-
-static Evas_Object *
-create_toolbar_button(Evas_Object *elm_window, const char *icon_name)
-{
-    Evas_Object *button = elm_button_add(elm_window);
-
-    Evas_Object *icon = elm_icon_add(elm_window);
-    elm_icon_standard_set(icon, icon_name);
-    evas_object_size_hint_max_set(icon, TOOL_BAR_ICON_SIZE, TOOL_BAR_ICON_SIZE);
-    evas_object_color_set(icon, 44, 44, 102, 128);
-    evas_object_show(icon);
-    elm_object_part_content_set(button, "icon", icon);
-    evas_object_size_hint_min_set(button, TOOL_BAR_BUTTON_SIZE, TOOL_BAR_BUTTON_SIZE);
-
-    return button;
-}
-
-static Browser_Window *window_create(Evas_Object *opener, const char *url, int width, int height, Eina_Bool view_mode)
-{
-    Browser_Window *window = calloc(1, sizeof(Browser_Window));
-    if (!window) {
-        info("ERROR: could not create browser window.\n");
-        return NULL;
-    }
-
-    /* Initialize tooltip information */
-    window->tooltip.show_timer = NULL;
-    window->tooltip.activated = EINA_FALSE;
-    window->tooltip.text_set = EINA_FALSE;
-    window->tooltip.shown = EINA_FALSE;
-
-    /* Create window */
-    window->elm_window = elm_win_add(NULL, "minibrowser-window", ELM_WIN_BASIC);
-    elm_win_title_set(window->elm_window, APP_NAME);
-    evas_object_smart_callback_add(window->elm_window, "delete,request", on_window_deletion, &window);
-
-    /* Create window background */
-    Evas_Object *bg = elm_bg_add(window->elm_window);
-    elm_bg_color_set(bg, 193, 192, 191);
-    evas_object_size_hint_weight_set(bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
-    elm_win_resize_object_add(window->elm_window, bg);
-    evas_object_show(bg);
-
-    /* Create vertical layout */
-    Evas_Object *vertical_layout = elm_box_add(window->elm_window);
-    elm_box_padding_set(vertical_layout, 0, 2);
-    evas_object_size_hint_weight_set(vertical_layout, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
-    elm_win_resize_object_add(window->elm_window, vertical_layout);
-    evas_object_show(vertical_layout);
-
-    /* Create horizontal layout for top bar */
-    Evas_Object *horizontal_layout = elm_box_add(window->elm_window);
-    elm_box_horizontal_set(horizontal_layout, EINA_TRUE);
-    evas_object_size_hint_weight_set(horizontal_layout, EVAS_HINT_EXPAND, 0.0);
-    evas_object_size_hint_align_set(horizontal_layout, EVAS_HINT_FILL, 0.0);
-    elm_box_pack_end(vertical_layout, horizontal_layout);
-    evas_object_show(horizontal_layout);
-
-    /* Create Back button */
-    window->back_button = create_toolbar_button(window->elm_window, "arrow_left");
-    evas_object_smart_callback_add(window->back_button, "clicked", on_back_button_clicked, window);
-    elm_object_disabled_set(window->back_button, EINA_TRUE);
-    evas_object_size_hint_weight_set(window->back_button, 0.0, EVAS_HINT_EXPAND);
-    evas_object_size_hint_align_set(window->back_button, 0.0, 0.5);
-    elm_box_pack_end(horizontal_layout, window->back_button);
-    evas_object_show(window->back_button);
-
-    /* Create Forward button */
-    window->forward_button = create_toolbar_button(window->elm_window, "arrow_right");
-    evas_object_smart_callback_add(window->forward_button, "clicked", on_forward_button_clicked, window);
-    elm_object_disabled_set(window->forward_button, EINA_TRUE);
-    evas_object_size_hint_weight_set(window->forward_button, 0.0, EVAS_HINT_EXPAND);
-    evas_object_size_hint_align_set(window->forward_button, 0.0, 0.5);
-    elm_box_pack_end(horizontal_layout, window->forward_button);
-    evas_object_show(window->forward_button);
-
-    /* Create URL bar */
-    window->url_bar = elm_entry_add(window->elm_window);
-    elm_entry_scrollable_set(window->url_bar, EINA_TRUE);
-    elm_entry_scrollbar_policy_set(window->url_bar, ELM_SCROLLER_POLICY_OFF, ELM_SCROLLER_POLICY_OFF);
-    elm_entry_single_line_set(window->url_bar, EINA_TRUE);
-    elm_entry_cnp_mode_set(window->url_bar, ELM_CNP_MODE_PLAINTEXT);
-    elm_entry_text_style_user_push(window->url_bar, "DEFAULT='font_size=18'");
-    evas_object_smart_callback_add(window->url_bar, "activated", on_url_bar_activated, window);
-    evas_object_smart_callback_add(window->url_bar, "clicked", on_url_bar_clicked, window);
-    evas_object_size_hint_weight_set(window->url_bar, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
-    evas_object_size_hint_align_set(window->url_bar, EVAS_HINT_FILL, EVAS_HINT_FILL);
-    elm_box_pack_end(horizontal_layout, window->url_bar);
-    evas_object_show(window->url_bar);
-
-    /* Create Refresh button */
-    Evas_Object *refresh_button = create_toolbar_button(window->elm_window, "refresh");
-    evas_object_smart_callback_add(refresh_button, "clicked", on_refresh_button_clicked, window);
-    evas_object_size_hint_weight_set(refresh_button, 0.0, EVAS_HINT_EXPAND);
-    evas_object_size_hint_align_set(refresh_button, 1.0, 0.5);
-    elm_box_pack_end(horizontal_layout, refresh_button);
-    evas_object_show(refresh_button);
-
-    /* Create Home button */
-    Evas_Object *home_button = create_toolbar_button(window->elm_window, "home");
-    evas_object_smart_callback_add(home_button, "clicked", on_home_button_clicked, window);
-    evas_object_size_hint_weight_set(home_button, 0.0, EVAS_HINT_EXPAND);
-    evas_object_size_hint_align_set(home_button, 1.0, 0.5);
-    elm_box_pack_end(horizontal_layout, home_button);
-    evas_object_show(home_button);
-
-    /* Create Search bar */
-    window->search.search_bar = elm_box_add(window->elm_window);
-    elm_box_horizontal_set(window->search.search_bar, EINA_TRUE);
-    evas_object_size_hint_min_set(window->search.search_bar, SEARCH_FIELD_SIZE + 2 * SEARCH_BUTTON_SIZE, 0);
-    evas_object_size_hint_align_set(window->search.search_bar, 0.0, EVAS_HINT_FILL);
-    elm_box_pack_end(vertical_layout, window->search.search_bar);
-
-    /* Create Search field */
-    window->search.search_field = elm_entry_add(window->elm_window);
-    elm_entry_scrollable_set(window->search.search_field, EINA_TRUE);
-    elm_entry_scrollbar_policy_set(window->search.search_field, ELM_SCROLLER_POLICY_OFF, ELM_SCROLLER_POLICY_OFF);
-    elm_entry_single_line_set(window->search.search_field, EINA_TRUE);
-    elm_entry_cnp_mode_set(window->search.search_field, ELM_CNP_MODE_PLAINTEXT);
-    elm_entry_text_style_user_push(window->search.search_field, "DEFAULT='font_size=14'");
-    evas_object_smart_callback_add(window->search.search_field, "activated", on_search_field_activated, window);
-    evas_object_smart_callback_add(window->search.search_field, "changed", on_search_field_activated, window);
-    evas_object_smart_callback_add(window->search.search_field, "aborted", on_search_field_aborted, window);
-    evas_object_smart_callback_add(window->search.search_field, "clicked", on_search_field_clicked, window);
-    evas_object_size_hint_weight_set(window->search.search_field, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
-    evas_object_size_hint_align_set(window->search.search_field, EVAS_HINT_FILL, EVAS_HINT_FILL);
-    elm_box_pack_end(window->search.search_bar, window->search.search_field);
-
-    /* Create Search backward button */
-    window->search.backward_button = create_toolbar_button(window->elm_window, "arrow_up");
-    evas_object_smart_callback_add(window->search.backward_button, "clicked", on_search_backward_button_clicked, window);
-    elm_object_disabled_set(window->search.backward_button, EINA_FALSE);
-    evas_object_size_hint_weight_set(window->search.backward_button, 0.0, EVAS_HINT_EXPAND);
-    evas_object_size_hint_align_set(window->search.backward_button, 1.0, 0.5);
-    evas_object_size_hint_min_set(window->search.backward_button, SEARCH_BUTTON_SIZE, SEARCH_BUTTON_SIZE);
-    elm_box_pack_end(window->search.search_bar, window->search.backward_button);
-
-    /* Create Search forwardward button */
-    window->search.forward_button = create_toolbar_button(window->elm_window, "arrow_down");
-    evas_object_smart_callback_add(window->search.forward_button, "clicked", on_search_forward_button_clicked, window);
-    elm_object_disabled_set(window->search.forward_button, EINA_FALSE);
-    evas_object_size_hint_weight_set(window->search.forward_button, 0.0, EVAS_HINT_EXPAND);
-    evas_object_size_hint_align_set(window->search.forward_button, 1.0, 0.5);
-    evas_object_size_hint_min_set(window->search.forward_button, SEARCH_BUTTON_SIZE, SEARCH_BUTTON_SIZE);
-    elm_box_pack_end(window->search.search_bar, window->search.forward_button);
-
-    /* Create ewk_view */
-    Ewk_View_Smart_Class *ewkViewClass = miniBrowserViewSmartClass();
-    ewkViewClass->run_javascript_alert = on_javascript_alert;
-    ewkViewClass->run_javascript_confirm = on_javascript_confirm;
-    ewkViewClass->run_javascript_prompt = on_javascript_prompt;
-    ewkViewClass->window_geometry_get = on_window_geometry_get;
-    ewkViewClass->window_geometry_set = on_window_geometry_set;
-    ewkViewClass->fullscreen_enter = on_fullscreen_enter;
-    ewkViewClass->fullscreen_exit = on_fullscreen_exit;
-    ewkViewClass->window_create = on_window_create;
-    ewkViewClass->window_close = on_window_close;
-    ewkViewClass->popup_menu_show = on_popup_menu_show;
-    ewkViewClass->popup_menu_hide = on_popup_menu_hide;
-
-    Evas *evas = evas_object_evas_get(window->elm_window);
-    if (legacy_behavior_enabled) {
-        // Use raw WK2 api to create a view using legacy mode.
-        window->ewk_view = (Evas_Object*)WKViewCreate(evas, 0, 0);
-    } else {
-        Evas_Smart *smart = evas_smart_class_new(&ewkViewClass->sc);
-        Ewk_Context *context = opener ? ewk_view_context_get(opener) : ewk_context_default_get();
-        Ewk_Page_Group *pageGroup = opener ? ewk_view_page_group_get(opener) : ewk_page_group_create("");
-        window->ewk_view = ewk_view_smart_add(evas, smart, context, pageGroup);
-    }
-    ewk_view_theme_set(window->ewk_view, THEME_DIR "/default.edj");
-    if (device_pixel_ratio)
-        ewk_view_device_pixel_ratio_set(window->ewk_view, (float)device_pixel_ratio);
-    ewk_view_source_mode_set(window->ewk_view, view_mode);
-
-    /* Set the zoom level to default */
-    window->current_zoom_level = DEFAULT_ZOOM_LEVEL;
-
-    Ewk_Settings *settings = ewk_view_settings_get(window->ewk_view);
-    ewk_settings_file_access_from_file_urls_allowed_set(settings, EINA_TRUE);
-    ewk_settings_encoding_detector_enabled_set(settings, encoding_detector_enabled);
-    ewk_settings_frame_flattening_enabled_set(settings, frame_flattening_enabled);
-    ewk_settings_local_storage_enabled_set(settings, local_storage_enabled);
-    info("HTML5 local storage is %s for this view.\n", local_storage_enabled ? "enabled" : "disabled");
-    elm_win_fullscreen_set(window->elm_window, fullscreen_enabled);
-    ewk_settings_developer_extras_enabled_set(settings, EINA_TRUE);
-    ewk_settings_preferred_minimum_contents_width_set(settings, 0);
-
-    evas_object_smart_callback_add(window->ewk_view, "authentication,request", on_authentication_request, window);
-    evas_object_smart_callback_add(window->ewk_view, "download,failed", on_download_failed, window);
-    evas_object_smart_callback_add(window->ewk_view, "download,finished", on_download_finished, window);
-    evas_object_smart_callback_add(window->ewk_view, "download,request", on_download_request, window);
-    evas_object_smart_callback_add(window->ewk_view, "file,chooser,request", on_file_chooser_request, window);
-    evas_object_smart_callback_add(window->ewk_view, "favicon,changed", on_view_favicon_changed, window);
-    evas_object_smart_callback_add(window->ewk_view, "load,error", on_error, window);
-    evas_object_smart_callback_add(window->ewk_view, "load,progress", on_progress, window);
-    evas_object_smart_callback_add(window->ewk_view, "title,changed", on_title_changed, window);
-    evas_object_smart_callback_add(window->ewk_view, "url,changed", on_url_changed, window);
-    evas_object_smart_callback_add(window->ewk_view, "back,forward,list,changed", on_back_forward_list_changed, window);
-    evas_object_smart_callback_add(window->ewk_view, "tooltip,text,set", on_tooltip_text_set, window);
-    evas_object_smart_callback_add(window->ewk_view, "tooltip,text,unset", on_tooltip_text_unset, window);
-
-    evas_object_event_callback_add(window->ewk_view, EVAS_CALLBACK_KEY_DOWN, on_key_down, window);
-    evas_object_event_callback_add(window->ewk_view, EVAS_CALLBACK_MOUSE_DOWN, on_mouse_down, window);
-
-    evas_object_size_hint_weight_set(window->ewk_view, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
-    evas_object_size_hint_align_set(window->ewk_view, EVAS_HINT_FILL, EVAS_HINT_FILL);
-    elm_box_pack_before(vertical_layout, window->ewk_view, window->search.search_bar);
-    evas_object_show(window->ewk_view);
-
-    if (url && strcmp(url, "about:blank")) // Do not reset 'about:blank' as it would erase all previous document modifications.
-        ewk_view_url_set(window->ewk_view, url);
-
-    evas_object_resize(window->elm_window, width ? width : window_width, height ? height : window_height);
-    evas_object_show(window->elm_window);
-    search_box_hide(window);
-
-    view_focus_set(window, EINA_TRUE);
-
-    evas_object_event_callback_add(window->ewk_view, EVAS_CALLBACK_MOUSE_IN, on_mouse_in, window);
-    evas_object_event_callback_add(window->ewk_view, EVAS_CALLBACK_MOUSE_OUT, on_mouse_out, window);
-    evas_object_event_callback_add(window->ewk_view, EVAS_CALLBACK_MOUSE_MOVE, on_mouse_move, window);
-
-    return window;
-}
-
-static void
-parse_window_size(const char *input_string, int *width, int *height)
-{
-    static const unsigned max_length = 4;
-    int parsed_width;
-    int parsed_height;
-    char **arr;
-    unsigned elements;
-
-    arr = eina_str_split_full(input_string, "x", 0, &elements);
-
-    if (elements == 2 && (strlen(arr[0]) <= max_length) && (strlen(arr[1]) <= max_length)) {
-        parsed_width = atoi(arr[0]);
-        if (width && parsed_width)
-            *width = parsed_width;
-
-        parsed_height = atoi(arr[1]);
-        if (height && parsed_height)
-            *height = parsed_height;
-    }
-
-    free(arr[0]);
-    free(arr);
-}
-
-EAPI_MAIN int
-elm_main(int argc, char *argv[])
-{
-    int args = 1;
-    unsigned char quitOption = 0;
-    Browser_Window *window;
-    char *window_size_string = NULL;
-
-    Ecore_Getopt_Value values[] = {
-        ECORE_GETOPT_VALUE_STR(evas_engine_name),
-        ECORE_GETOPT_VALUE_STR(window_size_string),
-        ECORE_GETOPT_VALUE_BOOL(legacy_behavior_enabled),
-        ECORE_GETOPT_VALUE_DOUBLE(device_pixel_ratio),
-        ECORE_GETOPT_VALUE_BOOL(quitOption),
-        ECORE_GETOPT_VALUE_BOOL(encoding_detector_enabled),
-        ECORE_GETOPT_VALUE_BOOL(frame_flattening_enabled),
-        ECORE_GETOPT_VALUE_BOOL(local_storage_enabled),
-        ECORE_GETOPT_VALUE_BOOL(fullscreen_enabled),
-        ECORE_GETOPT_VALUE_BOOL(quitOption),
-        ECORE_GETOPT_VALUE_BOOL(quitOption),
-        ECORE_GETOPT_VALUE_BOOL(quitOption),
-        ECORE_GETOPT_VALUE_NONE
-    };
-
-    if (!ewk_init())
-        return EXIT_FAILURE;
-
-    ewk_view_smart_class_set(miniBrowserViewSmartClass());
-
-    ecore_app_args_set(argc, (const char **) argv);
-    args = ecore_getopt_parse(&options, values, argc, argv);
-
-    if (args < 0)
-        return quit(EINA_FALSE, "ERROR: could not parse options.\n");
-
-    if (quitOption)
-        return quit(EINA_TRUE, NULL);
-
-    if (evas_engine_name)
-        elm_config_preferred_engine_set(evas_engine_name);
-#if defined(WTF_USE_ACCELERATED_COMPOSITING) && defined(HAVE_ECORE_X)
-    else {
-        evas_engine_name = "opengl_x11";
-        elm_config_preferred_engine_set(evas_engine_name);
-    }
-#endif
-
-    // Enable favicon database.
-    Ewk_Context *context = ewk_context_default_get();
-    ewk_context_favicon_database_directory_set(context, NULL);
-
-    if (window_size_string)
-        parse_window_size(window_size_string, &window_width, &window_height);
-
-    if (args < argc) {
-        char *url = url_from_user_input(argv[args]);
-        window = window_create(NULL, url, 0, 0, EINA_FALSE);
-        free(url);
-    } else
-        window = window_create(NULL, DEFAULT_URL, 0, 0, EINA_FALSE);
-
-    if (!window)
-        return quit(EINA_FALSE, "ERROR: could not create browser window.\n");
-
-    windows = eina_list_append(windows, window);
-
-    elm_run();
-
-    return quit(EINA_TRUE, NULL);
-}
-ELM_MAIN()
-
diff --git a/Tools/MiniBrowser/gtk/BrowserCellRendererVariant.c b/Tools/MiniBrowser/gtk/BrowserCellRendererVariant.c
deleted file mode 100644
index cb2caa3..0000000
--- a/Tools/MiniBrowser/gtk/BrowserCellRendererVariant.c
+++ /dev/null
@@ -1,346 +0,0 @@
-/*
- * Copyright (C) 2011 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "BrowserCellRendererVariant.h"
-#include "BrowserMarshal.h"
-#include <errno.h>
-
-enum {
-    PROP_0,
-
-    PROP_VALUE,
-    PROP_ADJUSTMENT
-};
-
-enum {
-    CHANGED,
-
-    LAST_SIGNAL
-};
-
-struct _BrowserCellRendererVariant {
-    GtkCellRenderer parent;
-
-    GValue *value;
-
-    GtkCellRenderer *textRenderer;
-    GtkCellRenderer *toggleRenderer;
-    GtkCellRenderer *spinRenderer;
-};
-
-struct _BrowserCellRendererVariantClass {
-    GtkCellRendererClass parent;
-};
-
-static guint signals[LAST_SIGNAL] = { 0 };
-
-G_DEFINE_TYPE(BrowserCellRendererVariant, browser_cell_renderer_variant, GTK_TYPE_CELL_RENDERER)
-
-static void browserCellRendererVariantFinalize(GObject *object)
-{
-    BrowserCellRendererVariant *renderer = BROWSER_CELL_RENDERER_VARIANT(object);
-
-    g_object_unref(renderer->toggleRenderer);
-    g_object_unref(renderer->spinRenderer);
-    g_object_unref(renderer->textRenderer);
-    if (renderer->value)
-        g_boxed_free(G_TYPE_VALUE, renderer->value);
-
-    G_OBJECT_CLASS(browser_cell_renderer_variant_parent_class)->finalize(object);
-}
-
-static void browserCellRendererVariantGetProperty(GObject *object, guint propId, GValue *value, GParamSpec *pspec)
-{
-    BrowserCellRendererVariant *renderer = BROWSER_CELL_RENDERER_VARIANT(object);
-
-    switch (propId) {
-    case PROP_VALUE:
-        g_value_set_boxed(value, renderer->value);
-        break;
-    case PROP_ADJUSTMENT: {
-        GtkAdjustment *adjustment = NULL;
-        g_object_get(G_OBJECT(renderer->spinRenderer), "adjustment", &adjustment, NULL);
-        if (adjustment) {
-            g_value_set_object(value, adjustment);
-            g_object_unref(adjustment);
-        }
-        break;
-    }
-    default:
-        G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propId, pspec);
-    }
-}
-
-static void browserCellRendererVariantSetModeForValue(BrowserCellRendererVariant *renderer)
-{
-    if (!renderer->value)
-        return;
-
-    GtkCellRendererMode mode;
-    if (G_VALUE_HOLDS_BOOLEAN(renderer->value))
-        mode = GTK_CELL_RENDERER_MODE_ACTIVATABLE;
-    else if (G_VALUE_HOLDS_STRING(renderer->value) || G_VALUE_HOLDS_UINT(renderer->value))
-        mode = GTK_CELL_RENDERER_MODE_EDITABLE;
-    else
-        return;
-
-    g_object_set(G_OBJECT(renderer), "mode", mode, NULL);
-}
-
-static void browserCellRendererVariantSetProperty(GObject *object, guint propId, const GValue *value, GParamSpec *pspec)
-{
-    BrowserCellRendererVariant *renderer = BROWSER_CELL_RENDERER_VARIANT(object);
-
-    switch (propId) {
-    case PROP_VALUE:
-        if (renderer->value)
-            g_boxed_free(G_TYPE_VALUE, renderer->value);
-        renderer->value = g_value_dup_boxed(value);
-        browserCellRendererVariantSetModeForValue(renderer);
-        break;
-    case PROP_ADJUSTMENT:
-        g_object_set(G_OBJECT(renderer->spinRenderer), "adjustment", g_value_get_object(value), NULL);
-        break;
-    default:
-        G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propId, pspec);
-    }
-}
-
-static GtkCellRenderer *browserCellRendererVariantGetRendererForValue(BrowserCellRendererVariant *renderer)
-{
-    if (!renderer->value)
-        return NULL;
-
-    if (G_VALUE_HOLDS_BOOLEAN(renderer->value)) {
-        g_object_set(G_OBJECT(renderer->toggleRenderer),
-                     "active", g_value_get_boolean(renderer->value),
-                     NULL);
-        return renderer->toggleRenderer;
-    }
-
-    if (G_VALUE_HOLDS_STRING(renderer->value)) {
-        g_object_set(G_OBJECT(renderer->textRenderer),
-                     "text", g_value_get_string(renderer->value),
-                     NULL);
-        return renderer->textRenderer;
-    }
-
-    if (G_VALUE_HOLDS_UINT(renderer->value)) {
-        gchar *text = g_strdup_printf("%u", g_value_get_uint(renderer->value));
-        g_object_set(G_OBJECT(renderer->spinRenderer), "text", text, NULL);
-        g_free(text);
-        return renderer->spinRenderer;
-    }
-
-    return NULL;
-}
-
-static void browserCellRendererVariantCellRendererTextEdited(BrowserCellRendererVariant *renderer, const gchar *path, const gchar *newText)
-{
-    if (!renderer->value)
-        return;
-
-    if (!G_VALUE_HOLDS_STRING(renderer->value))
-        return;
-
-    g_value_set_string(renderer->value, newText);
-    g_signal_emit(renderer, signals[CHANGED], 0, path, renderer->value);
-}
-
-static void browserCellRendererVariantCellRendererSpinEdited(BrowserCellRendererVariant *renderer, const gchar *path, const gchar *newText)
-{
-    if (!renderer->value)
-        return;
-
-    if (!G_VALUE_HOLDS_UINT(renderer->value))
-        return;
-
-    GtkAdjustment *adjustment;
-    g_object_get(G_OBJECT(renderer->spinRenderer), "adjustment", &adjustment, NULL);
-    if (!adjustment)
-        return;
-
-    errno = 0;
-    gchar *endPtr;
-    gdouble value = g_strtod(newText, &endPtr);
-    if (errno || value > gtk_adjustment_get_upper(adjustment) || value < gtk_adjustment_get_lower(adjustment) || endPtr == newText) {
-        g_warning("Invalid input for cell: %s\n", newText);
-        return;
-    }
-
-    g_value_set_uint(renderer->value, (guint)value);
-    g_signal_emit(renderer, signals[CHANGED], 0, path, renderer->value);
-}
-
-static gboolean browserCellRendererVariantCellRendererActivate(GtkCellRenderer *cell, GdkEvent *event, GtkWidget *widget, const gchar *path, const GdkRectangle *bgArea, const GdkRectangle *cellArea, GtkCellRendererState flags)
-{
-    BrowserCellRendererVariant *renderer = BROWSER_CELL_RENDERER_VARIANT(cell);
-
-    if (!renderer->value)
-        return TRUE;
-
-    if (!G_VALUE_HOLDS_BOOLEAN(renderer->value))
-        return TRUE;
-
-    g_value_set_boolean(renderer->value, !g_value_get_boolean(renderer->value));
-    g_signal_emit(renderer, signals[CHANGED], 0, path, renderer->value);
-
-    return TRUE;
-}
-
-static void browserCellRendererVariantCellRendererRender(GtkCellRenderer *cell, cairo_t *cr, GtkWidget *widget, const GdkRectangle *bgArea, const GdkRectangle *cellArea, GtkCellRendererState flags)
-{
-    GtkCellRenderer *renderer = browserCellRendererVariantGetRendererForValue(BROWSER_CELL_RENDERER_VARIANT(cell));
-    if (!renderer)
-        return;
-
-    GTK_CELL_RENDERER_GET_CLASS(renderer)->render(renderer, cr, widget, bgArea, cellArea, flags);
-}
-
-static GtkCellEditable *browserCellRendererVariantCellRendererStartEditing(GtkCellRenderer *cell, GdkEvent *event, GtkWidget *widget, const gchar *path, const GdkRectangle *bgArea, const GdkRectangle *cellArea, GtkCellRendererState flags)
-{
-    GtkCellRenderer *renderer = browserCellRendererVariantGetRendererForValue(BROWSER_CELL_RENDERER_VARIANT(cell));
-    if (!renderer)
-        return NULL;
-
-    if (!GTK_CELL_RENDERER_GET_CLASS(renderer)->start_editing)
-        return NULL;
-
-    return GTK_CELL_RENDERER_GET_CLASS(renderer)->start_editing(renderer, event, widget, path, bgArea, cellArea, flags);
-}
-
-static void browserCellRendererVariantCellRendererGetPreferredWidth(GtkCellRenderer *cell, GtkWidget *widget, gint *minimumWidth, gint *naturalWidth)
-{
-    GtkCellRenderer *renderer = browserCellRendererVariantGetRendererForValue(BROWSER_CELL_RENDERER_VARIANT(cell));
-    if (!renderer)
-        return;
-
-    GTK_CELL_RENDERER_GET_CLASS(renderer)->get_preferred_width(renderer, widget, minimumWidth, naturalWidth);
-}
-
-static void browserCellRendererVariantCellRendererGetPreferredHeight(GtkCellRenderer *cell, GtkWidget *widget, gint *minimumHeight, gint *naturalHeight)
-{
-    GtkCellRenderer *renderer = browserCellRendererVariantGetRendererForValue(BROWSER_CELL_RENDERER_VARIANT(cell));
-    if (!renderer)
-        return;
-
-    GTK_CELL_RENDERER_GET_CLASS(renderer)->get_preferred_height(renderer, widget, minimumHeight, naturalHeight);
-}
-
-static void browserCellRendererVariantCellRendererGetPreferredWidthForHeight(GtkCellRenderer *cell, GtkWidget *widget, gint height, gint *minimumWidth, gint *naturalWidth)
-{
-    GtkCellRenderer *renderer = browserCellRendererVariantGetRendererForValue(BROWSER_CELL_RENDERER_VARIANT(cell));
-    if (!renderer)
-        return;
-
-    GTK_CELL_RENDERER_GET_CLASS(renderer)->get_preferred_width_for_height(renderer, widget, height, minimumWidth, naturalWidth);
-}
-
-static void browserCellRendererVariantCellRendererGetPreferredHeightForWidth(GtkCellRenderer *cell, GtkWidget *widget, gint width, gint *minimumHeight, gint *naturalHeight)
-{
-    GtkCellRenderer *renderer = browserCellRendererVariantGetRendererForValue(BROWSER_CELL_RENDERER_VARIANT(cell));
-    if (!renderer)
-        return;
-
-    GTK_CELL_RENDERER_GET_CLASS(renderer)->get_preferred_height_for_width(renderer, widget, width, minimumHeight, naturalHeight);
-}
-
-static void browserCellRendererVariantCellRendererGetAlignedArea(GtkCellRenderer *cell, GtkWidget *widget, GtkCellRendererState flags, const GdkRectangle *cellArea, GdkRectangle *alignedArea)
-{
-    GtkCellRenderer *renderer = browserCellRendererVariantGetRendererForValue(BROWSER_CELL_RENDERER_VARIANT(cell));
-    if (!renderer)
-        return;
-
-    GTK_CELL_RENDERER_GET_CLASS(renderer)->get_aligned_area(renderer, widget, flags, cellArea, alignedArea);
-}
-
-static void browser_cell_renderer_variant_init(BrowserCellRendererVariant *renderer)
-{
-    g_object_set(renderer, "mode", GTK_CELL_RENDERER_MODE_ACTIVATABLE, NULL);
-
-    renderer->toggleRenderer = gtk_cell_renderer_toggle_new();
-    g_object_set(G_OBJECT(renderer->toggleRenderer), "xalign", 0.0, NULL);
-    g_object_ref_sink(renderer->toggleRenderer);
-
-    renderer->textRenderer = gtk_cell_renderer_text_new();
-    g_signal_connect_swapped(renderer->textRenderer, "edited",
-                             G_CALLBACK(browserCellRendererVariantCellRendererTextEdited), renderer);
-    g_object_set(G_OBJECT(renderer->textRenderer), "editable", TRUE, NULL);
-    g_object_ref_sink(renderer->textRenderer);
-
-    renderer->spinRenderer = gtk_cell_renderer_spin_new();
-    g_signal_connect_swapped(renderer->spinRenderer, "edited",
-                             G_CALLBACK(browserCellRendererVariantCellRendererSpinEdited), renderer);
-    g_object_set(G_OBJECT(renderer->spinRenderer), "editable", TRUE, NULL);
-}
-
-static void browser_cell_renderer_variant_class_init(BrowserCellRendererVariantClass *klass)
-{
-    GObjectClass *gobjectClass = G_OBJECT_CLASS(klass);
-    GtkCellRendererClass *cellRendererClass = GTK_CELL_RENDERER_CLASS(klass);
-
-    gobjectClass->get_property = browserCellRendererVariantGetProperty;
-    gobjectClass->set_property = browserCellRendererVariantSetProperty;
-    gobjectClass->finalize = browserCellRendererVariantFinalize;
-
-    cellRendererClass->activate = browserCellRendererVariantCellRendererActivate;
-    cellRendererClass->render = browserCellRendererVariantCellRendererRender;
-    cellRendererClass->start_editing = browserCellRendererVariantCellRendererStartEditing;
-    cellRendererClass->get_preferred_width = browserCellRendererVariantCellRendererGetPreferredWidth;
-    cellRendererClass->get_preferred_height = browserCellRendererVariantCellRendererGetPreferredHeight;
-    cellRendererClass->get_preferred_width_for_height = browserCellRendererVariantCellRendererGetPreferredWidthForHeight;
-    cellRendererClass->get_preferred_height_for_width = browserCellRendererVariantCellRendererGetPreferredHeightForWidth;
-    cellRendererClass->get_aligned_area = browserCellRendererVariantCellRendererGetAlignedArea;
-
-    g_object_class_install_property(gobjectClass,
-                                    PROP_VALUE,
-                                    g_param_spec_boxed("value",
-                                                       "Value",
-                                                       "The cell renderer value",
-                                                       G_TYPE_VALUE,
-                                                       G_PARAM_READWRITE));
-    g_object_class_install_property(gobjectClass,
-                                    PROP_ADJUSTMENT,
-                                    g_param_spec_object("adjustment",
-                                                        "Adjustment",
-                                                        "The adjustment that holds the value of the spin button",
-                                                        GTK_TYPE_ADJUSTMENT,
-                                                        G_PARAM_READWRITE));
-
-    signals[CHANGED] =
-        g_signal_new("changed",
-                     G_TYPE_FROM_CLASS(gobjectClass),
-                     G_SIGNAL_RUN_LAST,
-                     0, NULL, NULL,
-                     browser_marshal_VOID__STRING_BOXED,
-                     G_TYPE_NONE, 2,
-                     G_TYPE_STRING, G_TYPE_VALUE);
-}
-
-GtkCellRenderer *browser_cell_renderer_variant_new(void)
-{
-    return GTK_CELL_RENDERER(g_object_new(BROWSER_TYPE_CELL_RENDERER_VARIANT, NULL));
-}
-
diff --git a/Tools/MiniBrowser/gtk/BrowserCellRendererVariant.h b/Tools/MiniBrowser/gtk/BrowserCellRendererVariant.h
deleted file mode 100644
index 4fce3bb..0000000
--- a/Tools/MiniBrowser/gtk/BrowserCellRendererVariant.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Copyright (C) 2011 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef BrowserCellRendererVariant_h
-#define BrowserCellRendererVariant_h
-
-#include <gtk/gtk.h>
-
-G_BEGIN_DECLS
-
-#define BROWSER_TYPE_CELL_RENDERER_VARIANT            (browser_cell_renderer_variant_get_type())
-#define BROWSER_CELL_RENDERER_VARIANT(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), BROWSER_TYPE_CELL_RENDERER_VARIANT, BrowserCellRendererVariant))
-#define BROWSER_CELL_RENDERER_VARIANT_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass),  BROWSER_TYPE_CELL_RENDERER_VARIANT, BrowserCellRendererVariantClass))
-#define BROWSER_IS_CELL_RENDERER_VARIANT(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj), BROWSER_TYPE_CELL_RENDERER_VARIANT))
-#define BROWSER_IS_CELL_RENDERER_VARIANT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),  BROWSER_TYPE_CELL_RENDERER_VARIANT))
-#define BROWSER_CELL_RENDERER_VARIANT_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS((obj),  BROWSER_TYPE_CELL_RENDERER_VARIANT, BrowserCellRendererVariantClass))
-
-typedef struct _BrowserCellRendererVariant        BrowserCellRendererVariant;
-typedef struct _BrowserCellRendererVariantClass   BrowserCellRendererVariantClass;
-
-GType browser_cell_renderer_variant_get_type(void);
-
-GtkCellRenderer* browser_cell_renderer_variant_new(void);
-
-G_END_DECLS
-
-#endif
diff --git a/Tools/MiniBrowser/gtk/BrowserDownloadsBar.c b/Tools/MiniBrowser/gtk/BrowserDownloadsBar.c
deleted file mode 100644
index 5f0e620..0000000
--- a/Tools/MiniBrowser/gtk/BrowserDownloadsBar.c
+++ /dev/null
@@ -1,276 +0,0 @@
-/*
- * Copyright (C) 2011 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "BrowserDownloadsBar.h"
-
-#include <glib/gi18n.h>
-
-#define BROWSER_TYPE_DOWNLOAD (browser_download_get_type())
-#define BROWSER_DOWNLOAD(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), BROWSER_TYPE_DOWNLOAD, BrowserDownload))
-
-typedef struct _BrowserDownload BrowserDownload;
-typedef struct _BrowserDownloadClass BrowserDownloadClass;
-
-static GType browser_download_get_type();
-
-struct _BrowserDownloadsBar {
-    GtkInfoBar parent;
-};
-
-struct _BrowserDownloadsBarClass {
-    GtkInfoBarClass parentClass;
-};
-
-G_DEFINE_TYPE(BrowserDownloadsBar, browser_downloads_bar, GTK_TYPE_INFO_BAR)
-
-static void
-browserDownloadsBarChildRemoved(GtkContainer *infoBar,  GtkWidget *widget, BrowserDownloadsBar *downloadsBar)
-{
-    GList *children = gtk_container_get_children(infoBar);
-    if (g_list_length(children) == 1)
-        gtk_info_bar_response(GTK_INFO_BAR(downloadsBar), GTK_RESPONSE_CLOSE);
-    g_list_free(children);
-}
-
-static void browserDownloadsBarResponse(GtkInfoBar *infoBar, gint responseId)
-{
-    gtk_widget_destroy(GTK_WIDGET(infoBar));
-}
-
-static void browser_downloads_bar_init(BrowserDownloadsBar *downloadsBar)
-{
-    GtkWidget *contentBox = gtk_info_bar_get_content_area(GTK_INFO_BAR(downloadsBar));
-    g_signal_connect_after(contentBox, "remove", G_CALLBACK(browserDownloadsBarChildRemoved), downloadsBar);
-    gtk_orientable_set_orientation(GTK_ORIENTABLE(contentBox), GTK_ORIENTATION_VERTICAL);
-
-    GtkWidget *title = gtk_label_new(NULL);
-    gtk_label_set_markup(GTK_LABEL(title), "<span size='xx-large' weight='bold'>Downloads</span>");
-    gtk_misc_set_alignment(GTK_MISC(title), 0., 0.5);
-    gtk_box_pack_start(GTK_BOX(contentBox), title, FALSE, FALSE, 12);
-    gtk_widget_show(title);
-}
-
-static void browser_downloads_bar_class_init(BrowserDownloadsBarClass *klass)
-{
-    GtkInfoBarClass *infoBarClass = GTK_INFO_BAR_CLASS(klass);
-    infoBarClass->response = browserDownloadsBarResponse;
-}
-
-GtkWidget *browser_downloads_bar_new()
-{
-    GtkInfoBar *downloadsBar = GTK_INFO_BAR(g_object_new(BROWSER_TYPE_DOWNLOADS_BAR, NULL));
-    gtk_info_bar_add_buttons(downloadsBar, GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE, NULL);
-    return GTK_WIDGET(downloadsBar);
-}
-
-struct _BrowserDownload {
-    GtkBox parent;
-
-    WebKitDownload *download;
-    guint64 contentLength;
-    guint64 downloadedSize;
-    gboolean finished;
-
-    GtkWidget *statusLabel;
-    GtkWidget *remainingLabel;
-    GtkWidget *progressBar;
-    GtkWidget *actionButton;
-};
-
-struct _BrowserDownloadClass {
-    GtkBoxClass parentClass;
-};
-
-G_DEFINE_TYPE(BrowserDownload, browser_download, GTK_TYPE_BOX)
-
-static void actionButtonClicked(GtkButton *button, BrowserDownload *browserDownload)
-{
-    if (!browserDownload->finished) {
-        webkit_download_cancel(browserDownload->download);
-        return;
-    }
-
-    gtk_show_uri(gtk_widget_get_screen(GTK_WIDGET(browserDownload)),
-                 webkit_download_get_destination(browserDownload->download),
-                 gtk_get_current_event_time(), NULL);
-    gtk_widget_destroy(GTK_WIDGET(browserDownload));
-}
-
-static void browserDownloadFinalize(GObject *object)
-{
-    BrowserDownload *browserDownload = BROWSER_DOWNLOAD(object);
-
-    if (browserDownload->download) {
-        g_object_unref(browserDownload->download);
-        browserDownload->download = NULL;
-    }
-
-    G_OBJECT_CLASS(browser_download_parent_class)->finalize(object);
-}
-
-static void browser_download_init(BrowserDownload *download)
-{
-    GtkWidget *mainBox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 6);
-    gtk_box_pack_start(GTK_BOX(download), mainBox, FALSE, FALSE, 0);
-    gtk_widget_show(mainBox);
-
-    GtkWidget *vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
-    gtk_box_pack_start(GTK_BOX(mainBox), vbox, TRUE, TRUE, 0);
-    gtk_widget_show(vbox);
-
-    GtkWidget *statusBox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0);
-    gtk_box_pack_start(GTK_BOX(vbox), statusBox, TRUE, TRUE, 0);
-    gtk_widget_show(statusBox);
-
-    download->statusLabel = gtk_label_new("Starting Download");
-    gtk_label_set_ellipsize(GTK_LABEL(download->statusLabel), PANGO_ELLIPSIZE_END);
-    gtk_misc_set_alignment(GTK_MISC(download->statusLabel), 0., 0.5);
-    gtk_box_pack_start(GTK_BOX(statusBox), download->statusLabel, TRUE, TRUE, 0);
-    gtk_widget_show(download->statusLabel);
-
-    download->remainingLabel = gtk_label_new(NULL);
-    gtk_misc_set_alignment(GTK_MISC(download->remainingLabel), 1., 0.5);
-    gtk_box_pack_end(GTK_BOX(statusBox), download->remainingLabel, TRUE, TRUE, 0);
-    gtk_widget_show(download->remainingLabel);
-
-    download->progressBar = gtk_progress_bar_new();
-    gtk_box_pack_start(GTK_BOX(vbox), download->progressBar, FALSE, FALSE, 0);
-    gtk_widget_show(download->progressBar);
-
-    download->actionButton = gtk_button_new_from_stock(GTK_STOCK_CANCEL);
-    g_signal_connect(download->actionButton, "clicked", G_CALLBACK(actionButtonClicked), download);
-    gtk_box_pack_end(GTK_BOX(mainBox), download->actionButton, FALSE, FALSE, 0);
-    gtk_widget_show(download->actionButton);
-}
-
-static void browser_download_class_init(BrowserDownloadClass *klass)
-{
-    GObjectClass *objectClass = G_OBJECT_CLASS(klass);
-
-    objectClass->finalize = browserDownloadFinalize;
-}
-
-static void downloadReceivedResponse(WebKitDownload *download, GParamSpec *paramSpec, BrowserDownload *browserDownload)
-{
-    WebKitURIResponse *response = webkit_download_get_response(download);
-    browserDownload->contentLength = webkit_uri_response_get_content_length(response);
-    char *text = g_strdup_printf("Downloading %s", webkit_uri_response_get_uri(response));
-    gtk_label_set_text(GTK_LABEL(browserDownload->statusLabel), text);
-    g_free(text);
-}
-
-static gchar *remainingTime(BrowserDownload *browserDownload)
-{
-    guint64 total = browserDownload->contentLength;
-    guint64 current = browserDownload->downloadedSize;
-    gdouble elapsedTime = webkit_download_get_elapsed_time(browserDownload->download);
-
-    if (current <= 0)
-        return NULL;
-
-    gdouble perByteTime = elapsedTime / current;
-    gdouble interval = perByteTime * (total - current);
-
-    int hours = (int) (interval / 3600);
-    interval -= hours * 3600;
-    int mins = (int) (interval / 60);
-    interval -= mins * 60;
-    int secs = (int) interval;
-
-    if (hours > 0) {
-        if (mins > 0)
-            return g_strdup_printf (ngettext ("%u:%02u hour left", "%u:%02u hours left", hours), hours, mins);
-        return g_strdup_printf (ngettext ("%u hour left", "%u hours left", hours), hours);
-    }
-
-    if (mins > 0)
-        return g_strdup_printf (ngettext ("%u:%02u minute left", "%u:%02u minutes left", mins), mins, secs);
-    return g_strdup_printf (ngettext ("%u second left", "%u seconds left", secs), secs);
-}
-
-static void downloadProgress(WebKitDownload *download, GParamSpec *paramSpec, BrowserDownload *browserDownload)
-{
-    gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(browserDownload->progressBar),
-                                  webkit_download_get_estimated_progress(download));
-    char *remaining = remainingTime(browserDownload);
-    gtk_label_set_text(GTK_LABEL(browserDownload->remainingLabel), remaining);
-    g_free(remaining);
-}
-
-static void downloadReceivedData(WebKitDownload *download, guint64 dataLength, BrowserDownload *browserDownload)
-{
-    browserDownload->downloadedSize += dataLength;
-}
-
-static void downloadFinished(WebKitDownload *download, BrowserDownload *browserDownload)
-{
-    gchar *text = g_strdup_printf("Download completed: %s", webkit_download_get_destination(download));
-    gtk_label_set_text(GTK_LABEL(browserDownload->statusLabel), text);
-    g_free(text);
-    gtk_label_set_text(GTK_LABEL(browserDownload->remainingLabel), NULL);
-    gtk_button_set_image(GTK_BUTTON(browserDownload->actionButton),
-                         gtk_image_new_from_stock(GTK_STOCK_OPEN, GTK_ICON_SIZE_BUTTON));
-    gtk_button_set_label(GTK_BUTTON(browserDownload->actionButton), "Open ...");
-    browserDownload->finished = TRUE;
-}
-
-static void downloadFailed(WebKitDownload *download, GError *error, BrowserDownload *browserDownload)
-{
-    g_signal_handlers_disconnect_by_func(browserDownload->download, downloadFinished, browserDownload);
-    if (g_error_matches(error, WEBKIT_DOWNLOAD_ERROR, WEBKIT_DOWNLOAD_ERROR_CANCELLED_BY_USER)) {
-        gtk_widget_destroy(GTK_WIDGET(browserDownload));
-        return;
-    }
-
-    char *errorMessage = g_strdup_printf("Download failed: %s", error->message);
-    gtk_label_set_text(GTK_LABEL(browserDownload->statusLabel), errorMessage);
-    g_free(errorMessage);
-    gtk_label_set_text(GTK_LABEL(browserDownload->remainingLabel), NULL);
-    gtk_widget_set_sensitive(browserDownload->actionButton, FALSE);
-}
-
-GtkWidget *browserDownloadNew(WebKitDownload *download)
-{
-    BrowserDownload *browserDownload = BROWSER_DOWNLOAD(g_object_new(BROWSER_TYPE_DOWNLOAD,
-                                                                     "orientation", GTK_ORIENTATION_VERTICAL,
-                                                                     NULL));
-
-    browserDownload->download = g_object_ref(download);
-    g_signal_connect(browserDownload->download, "notify::response", G_CALLBACK(downloadReceivedResponse), browserDownload);
-    g_signal_connect(browserDownload->download, "notify::estimated-progress", G_CALLBACK(downloadProgress), browserDownload);
-    g_signal_connect(browserDownload->download, "received-data", G_CALLBACK(downloadReceivedData), browserDownload);
-    g_signal_connect(browserDownload->download, "finished", G_CALLBACK(downloadFinished), browserDownload);
-    g_signal_connect(browserDownload->download, "failed", G_CALLBACK(downloadFailed), browserDownload);
-
-    return GTK_WIDGET(browserDownload);
-}
-
-void browser_downloads_bar_add_download(BrowserDownloadsBar *downloadsBar, WebKitDownload *download)
-{
-    GtkWidget *browserDownload = browserDownloadNew(download);
-    GtkWidget *contentBox = gtk_info_bar_get_content_area(GTK_INFO_BAR(downloadsBar));
-    gtk_box_pack_start(GTK_BOX(contentBox), browserDownload, FALSE, TRUE, 0);
-    gtk_widget_show(browserDownload);
-}
diff --git a/Tools/MiniBrowser/gtk/BrowserDownloadsBar.h b/Tools/MiniBrowser/gtk/BrowserDownloadsBar.h
deleted file mode 100644
index 1704a5d..0000000
--- a/Tools/MiniBrowser/gtk/BrowserDownloadsBar.h
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Copyright (C) 2011 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef BrowserDownloadsBar_h
-#define BrowserDownloadsBar_h
-
-#include <gtk/gtk.h>
-#include <webkit2/webkit2.h>
-
-G_BEGIN_DECLS
-
-#define BROWSER_TYPE_DOWNLOADS_BAR            (browser_downloads_bar_get_type())
-#define BROWSER_DOWNLOADS_BAR(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), BROWSER_TYPE_DOWNLOADS_BAR, BrowserDownloadsBar))
-#define BROWSER_IS_DOWNLOADS_BAR(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj), BROWSER_TYPE_DOWNLOADS_BAR))
-#define BROWSER_DOWNLOADS_BAR_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass),  BROWSER_TYPE_DOWNLOADS_BAR, BrowserDownloadsBarClass))
-#define BROWSER_IS_DOWNLOADS_BAR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),  BROWSER_TYPE_DOWNLOADS_BAR))
-#define BROWSER_DOWNLOADS_BAR_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS((obj),  BROWSER_TYPE_DOWNLOADS_BAR, BrowserDownloadsBarClass))
-
-typedef struct _BrowserDownloadsBar        BrowserDownloadsBar;
-typedef struct _BrowserDownloadsBarClass   BrowserDownloadsBarClass;
-
-GType browser_downloads_bar_get_type(void);
-
-GtkWidget *browser_downloads_bar_new(void);
-void browser_downloads_bar_add_download(BrowserDownloadsBar *, WebKitDownload *);
-
-G_END_DECLS
-
-#endif
diff --git a/Tools/MiniBrowser/gtk/BrowserSettingsDialog.c b/Tools/MiniBrowser/gtk/BrowserSettingsDialog.c
deleted file mode 100644
index 1e4dcd8..0000000
--- a/Tools/MiniBrowser/gtk/BrowserSettingsDialog.c
+++ /dev/null
@@ -1,190 +0,0 @@
-/*
- * Copyright (C) 2011 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "BrowserSettingsDialog.h"
-#include "BrowserCellRendererVariant.h"
-
-enum {
-    PROP_0,
-
-    PROP_SETTINGS
-};
-
-enum {
-    SETTINGS_LIST_COLUMN_NAME,
-    SETTINGS_LIST_COLUMN_NICK,
-    SETTINGS_LIST_COLUMN_BLURB,
-    SETTINGS_LIST_COLUMN_VALUE,
-    SETTINGS_LIST_COLUMN_ADJUSTMENT,
-
-    SETTINGS_LIST_N_COLUMNS
-};
-
-struct _BrowserSettingsDialog {
-    GtkDialog parent;
-
-    GtkWidget *settingsList;
-    WebKitSettings *settings;
-};
-
-struct _BrowserSettingsDialogClass {
-    GtkDialogClass parent;
-};
-
-G_DEFINE_TYPE(BrowserSettingsDialog, browser_settings_dialog, GTK_TYPE_DIALOG)
-
-static void cellRendererChanged(GtkCellRenderer *renderer, const char *path, const GValue *value, BrowserSettingsDialog *dialog)
-{
-    GtkTreeModel *model = gtk_tree_view_get_model(GTK_TREE_VIEW(dialog->settingsList));
-    GtkTreePath *treePath = gtk_tree_path_new_from_string(path);
-    GtkTreeIter iter;
-    gtk_tree_model_get_iter(model, &iter, treePath);
-
-    char *name;
-    gtk_tree_model_get(model, &iter, SETTINGS_LIST_COLUMN_NAME, &name, -1);
-    g_object_set_property(G_OBJECT(dialog->settings), name, value);
-    g_free(name);
-
-    gtk_list_store_set(GTK_LIST_STORE(model), &iter, SETTINGS_LIST_COLUMN_VALUE, value, -1);
-    gtk_tree_path_free(treePath);
-}
-
-static void browserSettingsDialogSetProperty(GObject *object, guint propId, const GValue *value, GParamSpec *pspec)
-{
-    BrowserSettingsDialog *dialog = BROWSER_SETTINGS_DIALOG(object);
-
-    switch (propId) {
-    case PROP_SETTINGS:
-        dialog->settings = g_value_get_object(value);
-        break;
-    default:
-        G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propId, pspec);
-    }
-}
-
-static void browser_settings_dialog_init(BrowserSettingsDialog *dialog)
-{
-    GtkBox *contentArea = GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog)));
-    gtk_box_set_spacing(contentArea, 2);
-
-    gtk_window_set_default_size(GTK_WINDOW(dialog), 400, 300);
-    gtk_window_set_title(GTK_WINDOW(dialog), "WebKit View Settings");
-    gtk_window_set_destroy_with_parent(GTK_WINDOW(dialog), TRUE);
-    gtk_container_set_border_width(GTK_CONTAINER(dialog), 5);
-    gtk_dialog_add_button(GTK_DIALOG(dialog), GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE);
-    gtk_dialog_set_default_response(GTK_DIALOG(dialog), GTK_RESPONSE_CLOSE);
-
-    GtkWidget *scrolledWindow = gtk_scrolled_window_new(NULL, NULL);
-    dialog->settingsList = gtk_tree_view_new();
-    GtkCellRenderer *renderer = gtk_cell_renderer_text_new();
-    gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(dialog->settingsList),
-                                                0, "Name", renderer,
-                                                "text", SETTINGS_LIST_COLUMN_NICK,
-                                                NULL);
-    renderer = browser_cell_renderer_variant_new();
-    g_signal_connect(renderer, "changed", G_CALLBACK(cellRendererChanged), dialog);
-    gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(dialog->settingsList),
-                                                1, "Value", renderer,
-                                                "value", SETTINGS_LIST_COLUMN_VALUE,
-                                                "adjustment", SETTINGS_LIST_COLUMN_ADJUSTMENT,
-                                                NULL);
-    gtk_tree_view_set_tooltip_column(GTK_TREE_VIEW(dialog->settingsList), SETTINGS_LIST_COLUMN_BLURB);
-
-    gtk_container_add(GTK_CONTAINER(scrolledWindow), dialog->settingsList);
-    gtk_widget_show(dialog->settingsList);
-
-    gtk_box_pack_start(contentArea, scrolledWindow, TRUE, TRUE, 0);
-    gtk_widget_show(scrolledWindow);
-
-    g_signal_connect(dialog, "response", G_CALLBACK(gtk_widget_destroy), NULL);
-}
-
-static void browserSettingsDialogConstructed(GObject *object)
-{
-    BrowserSettingsDialog *dialog = BROWSER_SETTINGS_DIALOG(object);
-    WebKitSettings *settings = dialog->settings;
-    GtkListStore *model = gtk_list_store_new(SETTINGS_LIST_N_COLUMNS, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING,
-                                             G_TYPE_VALUE, G_TYPE_OBJECT);
-    guint propertiesCount;
-    GParamSpec **properties = g_object_class_list_properties(G_OBJECT_GET_CLASS(settings), &propertiesCount);
-    guint i;
-    for (i = 0; i < propertiesCount; i++) {
-        GParamSpec *property = properties[i];
-        const char *name = g_param_spec_get_name(property);
-        const char *nick = g_param_spec_get_nick(property);
-
-        GValue value = { 0, { { 0 } } };
-        g_value_init(&value, G_PARAM_SPEC_VALUE_TYPE(property));
-        g_object_get_property(G_OBJECT(settings), name, &value);
-
-        GtkAdjustment *adjustment = NULL;
-        if (G_PARAM_SPEC_VALUE_TYPE(property) == G_TYPE_UINT) {
-            GParamSpecUInt *uIntProperty = G_PARAM_SPEC_UINT(property);
-            adjustment = gtk_adjustment_new(uIntProperty->default_value, uIntProperty->minimum,
-                                            uIntProperty->maximum, 1, 1, 1);
-        }
-
-        char *blurb = g_markup_escape_text(g_param_spec_get_blurb(property), -1);
-        GtkTreeIter iter;
-        gtk_list_store_append(model, &iter);
-        gtk_list_store_set(model, &iter,
-                           SETTINGS_LIST_COLUMN_NAME, name,
-                           SETTINGS_LIST_COLUMN_NICK, nick,
-                           SETTINGS_LIST_COLUMN_BLURB, blurb,
-                           SETTINGS_LIST_COLUMN_VALUE, &value,
-                           SETTINGS_LIST_COLUMN_ADJUSTMENT, adjustment,
-                           -1);
-        g_free(blurb);
-        g_value_unset(&value);
-    }
-    g_free(properties);
-
-    gtk_tree_view_set_model(GTK_TREE_VIEW(dialog->settingsList), GTK_TREE_MODEL(model));
-    g_object_unref(model);
-}
-
-static void browser_settings_dialog_class_init(BrowserSettingsDialogClass *klass)
-{
-    GObjectClass *gobjectClass = G_OBJECT_CLASS(klass);
-
-    gobjectClass->constructed = browserSettingsDialogConstructed;
-    gobjectClass->set_property = browserSettingsDialogSetProperty;
-
-    g_object_class_install_property(gobjectClass,
-                                    PROP_SETTINGS,
-                                    g_param_spec_object("settings",
-                                                        "Settings",
-                                                        "The WebKitSettings",
-                                                        WEBKIT_TYPE_SETTINGS,
-                                                        G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY));
-}
-
-GtkWidget *browser_settings_dialog_new(WebKitSettings *settings)
-{
-    g_return_val_if_fail(WEBKIT_IS_SETTINGS(settings), NULL);
-
-    return GTK_WIDGET(g_object_new(BROWSER_TYPE_SETTINGS_DIALOG, "settings", settings, NULL));
-}
-
diff --git a/Tools/MiniBrowser/gtk/BrowserSettingsDialog.h b/Tools/MiniBrowser/gtk/BrowserSettingsDialog.h
deleted file mode 100644
index f3dbcd0..0000000
--- a/Tools/MiniBrowser/gtk/BrowserSettingsDialog.h
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
- * Copyright (C) 2011 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef BrowserSettingsDialog_h
-#define BrowserSettingsDialog_h
-
-#include <gtk/gtk.h>
-#include <webkit2/webkit2.h>
-
-G_BEGIN_DECLS
-
-#define BROWSER_TYPE_SETTINGS_DIALOG            (browser_settings_dialog_get_type())
-#define BROWSER_SETTINGS_DIALOG(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), BROWSER_TYPE_SETTINGS_DIALOG, BrowserSettingsDialog))
-#define BROWSER_SETTINGS_DIALOG_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass),  BROWSER_TYPE_SETTINGS_DIALOG, BrowserSettingsDialogClass))
-#define BROWSER_IS_SETTINGS_DIALOG(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj), BROWSER_TYPE_SETTINGS_DIALOG))
-#define BROWSER_IS_SETTINGS_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),  BROWSER_TYPE_SETTINGS_DIALOG))
-#define BROWSER_SETTINGS_DIALOG_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS((obj),  BROWSER_TYPE_SETTINGS_DIALOG, BrowserSettingsDialogClass))
-
-typedef struct _BrowserSettingsDialog        BrowserSettingsDialog;
-typedef struct _BrowserSettingsDialogClass   BrowserSettingsDialogClass;
-
-GType browser_settings_dialog_get_type(void);
-
-GtkWidget* browser_settings_dialog_new(WebKitSettings *settings);
-
-G_END_DECLS
-
-#endif
diff --git a/Tools/MiniBrowser/gtk/BrowserWindow.c b/Tools/MiniBrowser/gtk/BrowserWindow.c
deleted file mode 100644
index a5b0cd3..0000000
--- a/Tools/MiniBrowser/gtk/BrowserWindow.c
+++ /dev/null
@@ -1,651 +0,0 @@
-/*
- * Copyright (C) 2006, 2007 Apple Inc.
- * Copyright (C) 2007 Alp Toker <alp@atoker.com>
- * Copyright (C) 2011 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "BrowserWindow.h"
-
-#include "BrowserDownloadsBar.h"
-#include "BrowserSettingsDialog.h"
-#include <string.h>
-
-enum {
-    PROP_0,
-
-    PROP_VIEW
-};
-
-struct _BrowserWindow {
-    GtkWindow parent;
-
-    GtkWidget *mainBox;
-    GtkWidget *toolbar;
-    GtkWidget *uriEntry;
-    GtkWidget *backItem;
-    GtkWidget *forwardItem;
-    GtkWidget *zoomInItem;
-    GtkWidget *zoomOutItem;
-    GtkWidget *statusLabel;
-    GtkWidget *settingsDialog;
-    WebKitWebView *webView;
-    GtkWidget *downloadsBar;
-    GdkPixbuf *favicon;
-#if GTK_CHECK_VERSION(3, 2, 0)
-    GtkWidget *fullScreenMessageLabel;
-    guint fullScreenMessageLabelId;
-#endif
-};
-
-struct _BrowserWindowClass {
-    GtkWindowClass parent;
-};
-
-static const char *defaultWindowTitle = "WebKitGTK+ MiniBrowser";
-static const gdouble minimumZoomLevel = 0.5;
-static const gdouble maximumZoomLevel = 3;
-static const gdouble zoomStep = 1.2;
-static gint windowCount = 0;
-
-G_DEFINE_TYPE(BrowserWindow, browser_window, GTK_TYPE_WINDOW)
-
-static void browserWindowSetStatusText(BrowserWindow *window, const char *text)
-{
-#if GTK_CHECK_VERSION(3, 2, 0)
-    gtk_label_set_text(GTK_LABEL(window->statusLabel), text);
-    gtk_widget_set_visible(window->statusLabel, !!text);
-#endif
-}
-
-static void resetStatusText(GtkWidget *widget, BrowserWindow *window)
-{
-    browserWindowSetStatusText(window, NULL);
-}
-
-static void activateUriEntryCallback(BrowserWindow *window)
-{
-    browser_window_load_uri(window, gtk_entry_get_text(GTK_ENTRY(window->uriEntry)));
-}
-
-static void reloadCallback(BrowserWindow *window)
-{
-    webkit_web_view_reload(window->webView);
-}
-
-static void goBackCallback(BrowserWindow *window)
-{
-    webkit_web_view_go_back(window->webView);
-}
-
-static void goForwardCallback(BrowserWindow *window)
-{
-    webkit_web_view_go_forward(window->webView);
-}
-
-static void settingsCallback(BrowserWindow *window)
-{
-    if (window->settingsDialog) {
-        gtk_window_present(GTK_WINDOW(window->settingsDialog));
-        return;
-    }
-
-    window->settingsDialog = browser_settings_dialog_new(webkit_web_view_get_settings(window->webView));
-    gtk_window_set_transient_for(GTK_WINDOW(window->settingsDialog), GTK_WINDOW(window));
-    g_object_add_weak_pointer(G_OBJECT(window->settingsDialog), (gpointer *)&window->settingsDialog);
-    gtk_widget_show(window->settingsDialog);
-}
-
-static void webViewURIChanged(WebKitWebView *webView, GParamSpec *pspec, BrowserWindow *window)
-{
-    gtk_entry_set_text(GTK_ENTRY(window->uriEntry), webkit_web_view_get_uri(webView));
-}
-
-static void webViewTitleChanged(WebKitWebView *webView, GParamSpec *pspec, BrowserWindow *window)
-{
-    const char *title = webkit_web_view_get_title(webView);
-    gtk_window_set_title(GTK_WINDOW(window), title ? title : defaultWindowTitle);
-}
-
-static gboolean resetEntryProgress(GtkEntry *entry)
-{
-    gtk_entry_set_progress_fraction(entry, 0);
-    return FALSE;
-}
-
-static void webViewLoadProgressChanged(WebKitWebView *webView, GParamSpec *pspec, BrowserWindow *window)
-{
-    gdouble progress = webkit_web_view_get_estimated_load_progress(webView);
-    gtk_entry_set_progress_fraction(GTK_ENTRY(window->uriEntry), progress);
-    if (progress == 1.0)
-        g_timeout_add(500, (GSourceFunc)resetEntryProgress, window->uriEntry);
-}
-
-static void downloadStarted(WebKitWebContext *webContext, WebKitDownload *download, BrowserWindow *window)
-{
-    if (!window->downloadsBar) {
-        window->downloadsBar = browser_downloads_bar_new();
-        gtk_box_pack_start(GTK_BOX(window->mainBox), window->downloadsBar, FALSE, FALSE, 0);
-        gtk_box_reorder_child(GTK_BOX(window->mainBox), window->downloadsBar, 0);
-        g_object_add_weak_pointer(G_OBJECT(window->downloadsBar), (gpointer *)&(window->downloadsBar));
-        gtk_widget_show(window->downloadsBar);
-    }
-    browser_downloads_bar_add_download(BROWSER_DOWNLOADS_BAR(window->downloadsBar), download);
-}
-
-static void browserWindowHistoryItemSelected(BrowserWindow *window, GtkMenuItem *item)
-{
-    GtkAction *action = gtk_activatable_get_related_action(GTK_ACTIVATABLE(item));
-    browserWindowSetStatusText(window, action ? gtk_action_get_name(action) : NULL);
-}
-
-static void browserWindowHistoryItemActivated(BrowserWindow *window, GtkAction *action)
-{
-    WebKitBackForwardListItem *item = g_object_get_data(G_OBJECT(action), "back-forward-list-item");
-    if (!item)
-        return;
-
-    webkit_web_view_go_to_back_forward_list_item(window->webView, item);
-}
-
-static GtkWidget *browserWindowCreateBackForwardMenu(BrowserWindow *window, GList *list)
-{
-    if (!list)
-        return NULL;
-
-    GtkWidget *menu = gtk_menu_new();
-    GList *listItem;
-    for (listItem = list; listItem; listItem = g_list_next(listItem)) {
-        WebKitBackForwardListItem *item = (WebKitBackForwardListItem *)listItem->data;
-        const char *uri = webkit_back_forward_list_item_get_uri(item);
-        const char *title = webkit_back_forward_list_item_get_title(item);
-
-        GtkAction *action = gtk_action_new(uri, title, NULL, NULL);
-        g_object_set_data_full(G_OBJECT(action), "back-forward-list-item", g_object_ref(item), g_object_unref);
-        g_signal_connect_swapped(action, "activate", G_CALLBACK(browserWindowHistoryItemActivated), window);
-
-        GtkWidget *menuItem = gtk_action_create_menu_item(action);
-        g_signal_connect_swapped(menuItem, "select", G_CALLBACK(browserWindowHistoryItemSelected), window);
-        g_object_unref(action);
-
-        gtk_menu_shell_prepend(GTK_MENU_SHELL(menu), menuItem);
-        gtk_widget_show(menuItem);
-    }
-
-    g_signal_connect(menu, "hide", G_CALLBACK(resetStatusText), window);
-
-    return menu;
-}
-
-static void browserWindowUpdateNavigationActions(BrowserWindow *window, WebKitBackForwardList *backForwadlist)
-{
-    gtk_widget_set_sensitive(window->backItem, webkit_web_view_can_go_back(window->webView));
-    gtk_widget_set_sensitive(window->forwardItem, webkit_web_view_can_go_forward(window->webView));
-
-    GList *list = webkit_back_forward_list_get_back_list_with_limit(backForwadlist, 10);
-    gtk_menu_tool_button_set_menu(GTK_MENU_TOOL_BUTTON(window->backItem),
-                                  browserWindowCreateBackForwardMenu(window, list));
-    g_list_free(list);
-
-    list = webkit_back_forward_list_get_forward_list_with_limit(backForwadlist, 10);
-    gtk_menu_tool_button_set_menu(GTK_MENU_TOOL_BUTTON(window->forwardItem),
-                                  browserWindowCreateBackForwardMenu(window, list));
-    g_list_free(list);
-}
-
-static void backForwadlistChanged(WebKitBackForwardList *backForwadlist, WebKitBackForwardListItem *itemAdded, GList *itemsRemoved, BrowserWindow *window)
-{
-    browserWindowUpdateNavigationActions(window, backForwadlist);
-}
-
-static void geolocationRequestDialogCallback(GtkDialog *dialog, gint response, WebKitPermissionRequest *request)
-{
-    switch (response) {
-    case GTK_RESPONSE_YES:
-        webkit_permission_request_allow(request);
-        break;
-    default:
-        webkit_permission_request_deny(request);
-        break;
-    }
-
-    gtk_widget_destroy(GTK_WIDGET(dialog));
-    g_object_unref(request);
-}
-
-static void webViewClose(WebKitWebView *webView, BrowserWindow *window)
-{
-    gtk_widget_destroy(GTK_WIDGET(window));
-}
-
-static void webViewRunAsModal(WebKitWebView *webView, BrowserWindow *window)
-{
-    gtk_window_set_modal(GTK_WINDOW(window), TRUE);
-}
-
-static void webViewReadyToShow(WebKitWebView *webView, BrowserWindow *window)
-{
-    WebKitWindowProperties *windowProperties = webkit_web_view_get_window_properties(webView);
-
-    GdkRectangle geometry;
-    webkit_window_properties_get_geometry(windowProperties, &geometry);
-    if (geometry.x >= 0 && geometry.y >= 0)
-        gtk_window_move(GTK_WINDOW(window), geometry.x, geometry.y);
-    if (geometry.width > 0 && geometry.height > 0)
-        gtk_window_resize(GTK_WINDOW(window), geometry.width, geometry.height);
-
-    if (!webkit_window_properties_get_toolbar_visible(windowProperties))
-        gtk_widget_hide(window->toolbar);
-    else if (!webkit_window_properties_get_locationbar_visible(windowProperties))
-        gtk_widget_hide(window->uriEntry);
-
-    if (!webkit_window_properties_get_resizable(windowProperties))
-        gtk_window_set_resizable(GTK_WINDOW(window), FALSE);
-
-    gtk_widget_show(GTK_WIDGET(window));
-}
-
-#if GTK_CHECK_VERSION(3, 2, 0)
-static gboolean fullScreenMessageTimeoutCallback(BrowserWindow *window)
-{
-    gtk_widget_hide(window->fullScreenMessageLabel);
-    window->fullScreenMessageLabelId = 0;
-    return FALSE;
-}
-#endif
-
-static gboolean webViewEnterFullScreen(WebKitWebView *webView, BrowserWindow *window)
-{
-#if GTK_CHECK_VERSION(3, 2, 0)
-    const gchar *titleOrURI = webkit_web_view_get_title(window->webView);
-    if (!titleOrURI)
-        titleOrURI = webkit_web_view_get_uri(window->webView);
-    gchar *message = g_strdup_printf("%s is now full screen. Press ESC or f to exit.", titleOrURI);
-    gtk_label_set_text(GTK_LABEL(window->fullScreenMessageLabel), message);
-    g_free(message);
-
-    gtk_widget_show(window->fullScreenMessageLabel);
-
-    window->fullScreenMessageLabelId = g_timeout_add_seconds(2, (GSourceFunc)fullScreenMessageTimeoutCallback, window);
-#endif
-
-    gtk_widget_hide(window->toolbar);
-
-    return FALSE;
-}
-
-static gboolean webViewLeaveFullScreen(WebKitWebView *webView, BrowserWindow *window)
-{
-#if GTK_CHECK_VERSION(3, 2, 0)
-    if (window->fullScreenMessageLabelId) {
-        g_source_remove(window->fullScreenMessageLabelId);
-        window->fullScreenMessageLabelId = 0;
-    }
-    gtk_widget_hide(window->fullScreenMessageLabel);
-#endif
-
-    gtk_widget_show(window->toolbar);
-
-    return FALSE;
-}
-
-static GtkWidget *webViewCreate(WebKitWebView *webView, BrowserWindow *window)
-{
-    WebKitWebView *newWebView = WEBKIT_WEB_VIEW(webkit_web_view_new_with_context(webkit_web_view_get_context(webView)));
-    webkit_web_view_set_settings(newWebView, webkit_web_view_get_settings(webView));
-
-    GtkWidget *newWindow = browser_window_new(newWebView, GTK_WINDOW(window));
-    g_signal_connect(newWebView, "ready-to-show", G_CALLBACK(webViewReadyToShow), newWindow);
-    g_signal_connect(newWebView, "run-as-modal", G_CALLBACK(webViewRunAsModal), newWindow);
-    g_signal_connect(newWebView, "close", G_CALLBACK(webViewClose), newWindow);
-    return GTK_WIDGET(newWebView);
-}
-
-static gboolean webViewLoadFailed(WebKitWebView *webView, WebKitLoadEvent loadEvent, const char *failingURI, GError *error, BrowserWindow *window)
-{
-    gtk_entry_set_progress_fraction(GTK_ENTRY(window->uriEntry), 0.);
-    return FALSE;
-}
-
-static gboolean webViewDecidePolicy(WebKitWebView *webView, WebKitPolicyDecision *decision, WebKitPolicyDecisionType decisionType, BrowserWindow *window)
-{
-    if (decisionType != WEBKIT_POLICY_DECISION_TYPE_NAVIGATION_ACTION)
-        return FALSE;
-
-    WebKitNavigationPolicyDecision *navigationDecision = WEBKIT_NAVIGATION_POLICY_DECISION(decision);
-    if (webkit_navigation_policy_decision_get_navigation_type(navigationDecision) != WEBKIT_NAVIGATION_TYPE_LINK_CLICKED
-        || webkit_navigation_policy_decision_get_mouse_button(navigationDecision) != 2)
-        return FALSE;
-
-    WebKitWebView *newWebView = WEBKIT_WEB_VIEW(webkit_web_view_new_with_context(webkit_web_view_get_context(webView)));
-    webkit_web_view_set_settings(newWebView, webkit_web_view_get_settings(webView));
-    GtkWidget *newWindow = browser_window_new(newWebView, GTK_WINDOW(window));
-    webkit_web_view_load_request(newWebView, webkit_navigation_policy_decision_get_request(navigationDecision));
-    gtk_widget_show(newWindow);
-
-    webkit_policy_decision_ignore(decision);
-    return TRUE;
-}
-
-static gboolean webViewDecidePermissionRequest(WebKitWebView *webView, WebKitPermissionRequest *request, BrowserWindow *window)
-{
-    if (!WEBKIT_IS_GEOLOCATION_PERMISSION_REQUEST(request))
-        return FALSE;
-
-    GtkWidget *dialog = gtk_message_dialog_new(GTK_WINDOW(window),
-                                               GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
-                                               GTK_MESSAGE_QUESTION,
-                                               GTK_BUTTONS_YES_NO,
-                                               "Geolocation request");
-
-    gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(dialog), "Allow geolocation request?");
-    g_signal_connect(dialog, "response", G_CALLBACK(geolocationRequestDialogCallback), g_object_ref(request));
-    gtk_widget_show(dialog);
-
-    return TRUE;
-}
-
-static void webViewMouseTargetChanged(WebKitWebView *webView, WebKitHitTestResult *hitTestResult, guint mouseModifiers, BrowserWindow *window)
-{
-    if (!webkit_hit_test_result_context_is_link(hitTestResult)) {
-        browserWindowSetStatusText(window, NULL);
-        return;
-    }
-    browserWindowSetStatusText(window, webkit_hit_test_result_get_link_uri(hitTestResult));
-}
-
-static gboolean browserWindowCanZoomIn(BrowserWindow *window)
-{
-    gdouble zoomLevel = webkit_web_view_get_zoom_level(window->webView) * zoomStep;
-    return zoomLevel < maximumZoomLevel;
-}
-
-static gboolean browserWindowCanZoomOut(BrowserWindow *window)
-{
-    gdouble zoomLevel = webkit_web_view_get_zoom_level(window->webView) / zoomStep;
-    return zoomLevel > minimumZoomLevel;
-}
-
-static void browserWindowUpdateZoomActions(BrowserWindow *window)
-{
-    gtk_widget_set_sensitive(window->zoomInItem, browserWindowCanZoomIn(window));
-    gtk_widget_set_sensitive(window->zoomOutItem, browserWindowCanZoomOut(window));
-}
-
-static void webViewZoomLevelChanged(GObject *object, GParamSpec *paramSpec, BrowserWindow *window)
-{
-    browserWindowUpdateZoomActions(window);
-}
-
-static void updateUriEntryIcon(BrowserWindow *window)
-{
-    GtkEntry *entry = GTK_ENTRY(window->uriEntry);
-    if (window->favicon)
-        gtk_entry_set_icon_from_pixbuf(entry, GTK_ENTRY_ICON_PRIMARY, window->favicon);
-    else
-        gtk_entry_set_icon_from_stock(entry, GTK_ENTRY_ICON_PRIMARY, GTK_STOCK_NEW);
-}
-
-static void faviconChanged(GObject *object, GParamSpec *paramSpec, BrowserWindow *window)
-{
-    GdkPixbuf *favicon = NULL;
-    cairo_surface_t *surface = webkit_web_view_get_favicon(window->webView);
-
-    if (surface) {
-        int width = cairo_image_surface_get_width(surface);
-        int height = cairo_image_surface_get_height(surface);
-        favicon = gdk_pixbuf_get_from_surface(surface, 0, 0, width, height);
-    }
-
-    if (window->favicon)
-        g_object_unref(window->favicon);
-    window->favicon = favicon;
-
-    updateUriEntryIcon(window);
-}
-
-static void zoomInCallback(BrowserWindow *window)
-{
-    gdouble zoomLevel = webkit_web_view_get_zoom_level(window->webView) * zoomStep;
-    webkit_web_view_set_zoom_level(window->webView, zoomLevel);
-}
-
-static void zoomOutCallback(BrowserWindow *window)
-{
-    gdouble zoomLevel = webkit_web_view_get_zoom_level(window->webView) / zoomStep;
-    webkit_web_view_set_zoom_level(window->webView, zoomLevel);
-}
-
-static void browserWindowFinalize(GObject *gObject)
-{
-    BrowserWindow *window = BROWSER_WINDOW(gObject);
-    if (window->favicon) {
-        g_object_unref(window->favicon);
-        window->favicon = NULL;
-    }
-
-#if GTK_CHECK_VERSION(3, 2, 0)
-    if (window->fullScreenMessageLabelId)
-        g_source_remove(window->fullScreenMessageLabelId);
-#endif
-
-    G_OBJECT_CLASS(browser_window_parent_class)->finalize(gObject);
-
-    if (g_atomic_int_dec_and_test(&windowCount))
-        gtk_main_quit();
-}
-
-static void browserWindowGetProperty(GObject *object, guint propId, GValue *value, GParamSpec *pspec)
-{
-    BrowserWindow *window = BROWSER_WINDOW(object);
-
-    switch (propId) {
-    case PROP_VIEW:
-        g_value_set_object(value, browser_window_get_view(window));
-        break;
-    default:
-        G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propId, pspec);
-    }
-}
-
-static void browserWindowSetProperty(GObject *object, guint propId, const GValue *value, GParamSpec *pspec)
-{
-    BrowserWindow* window = BROWSER_WINDOW(object);
-
-    switch (propId) {
-    case PROP_VIEW:
-        window->webView = g_value_get_object(value);
-        break;
-    default:
-        G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propId, pspec);
-    }
-}
-
-static void browser_window_init(BrowserWindow *window)
-{
-    g_atomic_int_inc(&windowCount);
-
-    gtk_window_set_title(GTK_WINDOW(window), defaultWindowTitle);
-    gtk_window_set_default_size(GTK_WINDOW(window), 800, 600);
-
-    window->uriEntry = gtk_entry_new();
-    g_signal_connect_swapped(window->uriEntry, "activate", G_CALLBACK(activateUriEntryCallback), (gpointer)window);
-    gtk_entry_set_icon_activatable(GTK_ENTRY(window->uriEntry), GTK_ENTRY_ICON_PRIMARY, FALSE);
-    updateUriEntryIcon(window);
-
-    GtkWidget *toolbar = gtk_toolbar_new();
-    window->toolbar = toolbar;
-    gtk_orientable_set_orientation(GTK_ORIENTABLE(toolbar), GTK_ORIENTATION_HORIZONTAL);
-    gtk_toolbar_set_style(GTK_TOOLBAR(toolbar), GTK_TOOLBAR_BOTH_HORIZ);
-
-    GtkToolItem *item = gtk_menu_tool_button_new_from_stock(GTK_STOCK_GO_BACK);
-    window->backItem = GTK_WIDGET(item);
-    gtk_menu_tool_button_set_menu(GTK_MENU_TOOL_BUTTON(item), 0);
-    g_signal_connect_swapped(item, "clicked", G_CALLBACK(goBackCallback), (gpointer)window);
-    gtk_toolbar_insert(GTK_TOOLBAR(toolbar), item, -1);
-    gtk_widget_show(GTK_WIDGET(item));
-
-    item = gtk_menu_tool_button_new_from_stock(GTK_STOCK_GO_FORWARD);
-    window->forwardItem = GTK_WIDGET(item);
-    gtk_menu_tool_button_set_menu(GTK_MENU_TOOL_BUTTON(item), 0);
-    g_signal_connect_swapped(G_OBJECT(item), "clicked", G_CALLBACK(goForwardCallback), (gpointer)window);
-    gtk_toolbar_insert(GTK_TOOLBAR(toolbar), item, -1);
-    gtk_widget_show(GTK_WIDGET(item));
-
-    item = gtk_tool_button_new_from_stock(GTK_STOCK_PREFERENCES);
-    g_signal_connect_swapped(G_OBJECT(item), "clicked", G_CALLBACK(settingsCallback), window);
-    gtk_toolbar_insert(GTK_TOOLBAR(toolbar), item, -1);
-    gtk_widget_show(GTK_WIDGET(item));
-
-    item = gtk_tool_button_new_from_stock(GTK_STOCK_ZOOM_OUT);
-    window->zoomOutItem = GTK_WIDGET(item);
-    g_signal_connect_swapped(item, "clicked", G_CALLBACK(zoomOutCallback), window);
-    gtk_toolbar_insert(GTK_TOOLBAR(toolbar), item, -1);
-    gtk_widget_show(GTK_WIDGET(item));
-
-    item = gtk_tool_button_new_from_stock(GTK_STOCK_ZOOM_IN);
-    window->zoomInItem = GTK_WIDGET(item);
-    g_signal_connect_swapped(item, "clicked", G_CALLBACK(zoomInCallback), window);
-    gtk_toolbar_insert(GTK_TOOLBAR(toolbar), item, -1);
-    gtk_widget_show(GTK_WIDGET(item));
-
-    item = gtk_tool_item_new();
-    gtk_tool_item_set_expand(item, TRUE);
-    gtk_container_add(GTK_CONTAINER(item), window->uriEntry);
-    gtk_widget_show(window->uriEntry);
-    gtk_toolbar_insert(GTK_TOOLBAR(toolbar), item, -1);
-    gtk_widget_show(GTK_WIDGET(item));
-
-    item = gtk_tool_button_new_from_stock(GTK_STOCK_OK);
-    g_signal_connect_swapped(item, "clicked", G_CALLBACK(reloadCallback), window);
-    gtk_toolbar_insert(GTK_TOOLBAR(toolbar), item, -1);
-    gtk_widget_show(GTK_WIDGET(item));
-
-    GtkWidget *vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
-    window->mainBox = vbox;
-    gtk_box_pack_start(GTK_BOX(vbox), toolbar, FALSE, FALSE, 0);
-    gtk_widget_show(toolbar);
-
-    gtk_container_add(GTK_CONTAINER(window), vbox);
-    gtk_widget_show(vbox);
-}
-
-static void browserWindowConstructed(GObject *gObject)
-{
-    BrowserWindow *window = BROWSER_WINDOW(gObject);
-
-    browserWindowUpdateZoomActions(window);
-
-    g_signal_connect(window->webView, "notify::uri", G_CALLBACK(webViewURIChanged), window);
-    g_signal_connect(window->webView, "notify::estimated-load-progress", G_CALLBACK(webViewLoadProgressChanged), window);
-    g_signal_connect(window->webView, "notify::title", G_CALLBACK(webViewTitleChanged), window);
-    g_signal_connect(window->webView, "create", G_CALLBACK(webViewCreate), window);
-    g_signal_connect(window->webView, "load-failed", G_CALLBACK(webViewLoadFailed), window);
-    g_signal_connect(window->webView, "decide-policy", G_CALLBACK(webViewDecidePolicy), window);
-    g_signal_connect(window->webView, "permission-request", G_CALLBACK(webViewDecidePermissionRequest), window);
-    g_signal_connect(window->webView, "mouse-target-changed", G_CALLBACK(webViewMouseTargetChanged), window);
-    g_signal_connect(window->webView, "notify::zoom-level", G_CALLBACK(webViewZoomLevelChanged), window);
-    g_signal_connect(window->webView, "notify::favicon", G_CALLBACK(faviconChanged), window);
-    g_signal_connect(window->webView, "enter-fullscreen", G_CALLBACK(webViewEnterFullScreen), window);
-    g_signal_connect(window->webView, "leave-fullscreen", G_CALLBACK(webViewLeaveFullScreen), window);
-
-    g_signal_connect(webkit_web_view_get_context(window->webView), "download-started", G_CALLBACK(downloadStarted), window);
-
-    WebKitBackForwardList *backForwadlist = webkit_web_view_get_back_forward_list(window->webView);
-    g_signal_connect(backForwadlist, "changed", G_CALLBACK(backForwadlistChanged), window);
-
-#if GTK_CHECK_VERSION(3, 2, 0)
-    GtkWidget *overlay = gtk_overlay_new();
-    gtk_box_pack_start(GTK_BOX(window->mainBox), overlay, TRUE, TRUE, 0);
-    gtk_widget_show(overlay);
-
-    window->statusLabel = gtk_label_new(NULL);
-    gtk_widget_set_halign(window->statusLabel, GTK_ALIGN_START);
-    gtk_widget_set_valign(window->statusLabel, GTK_ALIGN_END);
-    gtk_widget_set_margin_left(window->statusLabel, 1);
-    gtk_widget_set_margin_right(window->statusLabel, 1);
-    gtk_widget_set_margin_top(window->statusLabel, 1);
-    gtk_widget_set_margin_bottom(window->statusLabel, 1);
-    gtk_overlay_add_overlay(GTK_OVERLAY(overlay), window->statusLabel);
-
-    gtk_container_add(GTK_CONTAINER(overlay), GTK_WIDGET(window->webView));
-
-    window->fullScreenMessageLabel = gtk_label_new(NULL);
-    gtk_widget_set_halign(window->fullScreenMessageLabel, GTK_ALIGN_CENTER);
-    gtk_widget_set_valign(window->fullScreenMessageLabel, GTK_ALIGN_CENTER);
-    gtk_widget_set_no_show_all(window->fullScreenMessageLabel, TRUE);
-    gtk_overlay_add_overlay(GTK_OVERLAY(overlay), window->fullScreenMessageLabel);
-#else
-    gtk_box_pack_start(GTK_BOX(window->mainBox), GTK_WIDGET(window->webView), TRUE, TRUE, 0);
-#endif
-    gtk_widget_show(GTK_WIDGET(window->webView));
-}
-
-static void browser_window_class_init(BrowserWindowClass *klass)
-{
-    GObjectClass *gobjectClass = G_OBJECT_CLASS(klass);
-
-    gobjectClass->constructed = browserWindowConstructed;
-    gobjectClass->get_property = browserWindowGetProperty;
-    gobjectClass->set_property = browserWindowSetProperty;
-    gobjectClass->finalize = browserWindowFinalize;
-
-    g_object_class_install_property(gobjectClass,
-                                    PROP_VIEW,
-                                    g_param_spec_object("view",
-                                                        "View",
-                                                        "The web view of this window",
-                                                        WEBKIT_TYPE_WEB_VIEW,
-                                                        G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
-}
-
-// Public API.
-GtkWidget *browser_window_new(WebKitWebView *view, GtkWindow *parent)
-{
-    g_return_val_if_fail(WEBKIT_IS_WEB_VIEW(view), 0);
-
-    return GTK_WIDGET(g_object_new(BROWSER_TYPE_WINDOW,
-                                   "transient-for", parent,
-                                   "type", GTK_WINDOW_TOPLEVEL,
-                                   "view", view, NULL));
-}
-
-WebKitWebView *browser_window_get_view(BrowserWindow *window)
-{
-    g_return_val_if_fail(BROWSER_IS_WINDOW(window), 0);
-
-    return window->webView;
-}
-
-void browser_window_load_uri(BrowserWindow *window, const char *uri)
-{
-    g_return_if_fail(BROWSER_IS_WINDOW(window));
-    g_return_if_fail(uri);
-
-    if (!g_str_has_prefix(uri, "javascript:")) {
-        webkit_web_view_load_uri(window->webView, uri);
-        return;
-    }
-
-    webkit_web_view_run_javascript(window->webView, strstr(uri, "javascript:"), NULL, NULL, NULL);
-}
diff --git a/Tools/MiniBrowser/gtk/BrowserWindow.h b/Tools/MiniBrowser/gtk/BrowserWindow.h
deleted file mode 100644
index 6667546..0000000
--- a/Tools/MiniBrowser/gtk/BrowserWindow.h
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- * Copyright (C) 2011 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef BrowserWindow_h
-#define BrowserWindow_h
-
-#include <webkit2/webkit2.h>
-#include <gtk/gtk.h>
-
-G_BEGIN_DECLS
-
-#define BROWSER_TYPE_WINDOW            (browser_window_get_type())
-#define BROWSER_WINDOW(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), BROWSER_TYPE_WINDOW, BrowserWindow))
-#define BROWSER_WINDOW_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass),  BROWSER_TYPE_WINDOW, BrowserWindowClass))
-#define BROWSER_IS_WINDOW(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj), BROWSER_TYPE_WINDOW))
-#define BROWSER_IS_WINDOW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),  BROWSER_TYPE_WINDOW))
-#define BROWSER_WINDOW_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS((obj),  BROWSER_TYPE_WINDOW, BrowserWindowClass))
-
-typedef struct _BrowserWindow        BrowserWindow;
-typedef struct _BrowserWindowClass   BrowserWindowClass;
-
-GType browser_window_get_type(void);
-
-GtkWidget* browser_window_new(WebKitWebView*, GtkWindow*);
-WebKitWebView* browser_window_get_view(BrowserWindow*);
-void browser_window_load_uri(BrowserWindow *, const char *uri);
-
-G_END_DECLS
-
-#endif
diff --git a/Tools/MiniBrowser/gtk/GNUmakefile.am b/Tools/MiniBrowser/gtk/GNUmakefile.am
deleted file mode 100644
index 2f20d42..0000000
--- a/Tools/MiniBrowser/gtk/GNUmakefile.am
+++ /dev/null
@@ -1,72 +0,0 @@
-if ENABLE_WEBKIT2
-noinst_PROGRAMS += \
-	Programs/MiniBrowser
-endif
-
-Programs_MiniBrowser_CPPFLAGS = \
-	-I$(srcdir)/Source \
-	-I$(top_builddir)/DerivedSources/WebKit2 \
-	-I$(top_builddir)/DerivedSources/WebKit2/webkit2gtk \
-	-I$(top_builddir)/DerivedSources/WebKit2/webkit2gtk/include \
-	-DWEBKIT_EXEC_PATH=\"${shell pwd}/$(top_builddir)/Programs/\" \
-	-DWEBKIT_INJECTED_BUNDLE_PATH=\"${shell pwd}/$(top_builddir)/.libs\" \
-	$(global_cppflags) \
-	$(javascriptcore_cppflags) \
-	$(FREETYPE_CFLAGS) \
-	$(GLIB_CFLAGS) \
-	$(GTK_CFLAGS)
-
-Programs_MiniBrowser_SOURCES = \
-	Tools/MiniBrowser/gtk/BrowserCellRendererVariant.h \
-	Tools/MiniBrowser/gtk/BrowserCellRendererVariant.c \
-	Tools/MiniBrowser/gtk/BrowserDownloadsBar.h \
-	Tools/MiniBrowser/gtk/BrowserDownloadsBar.c \
-	Tools/MiniBrowser/gtk/BrowserSettingsDialog.h \
-	Tools/MiniBrowser/gtk/BrowserSettingsDialog.c \
-	Tools/MiniBrowser/gtk/BrowserWindow.h \
-	Tools/MiniBrowser/gtk/BrowserWindow.c \
-	Tools/MiniBrowser/gtk/main.c
-
-minibrowser_built_sources += \
-	DerivedSources/WebKit2/BrowserMarshal.h \
-	DerivedSources/WebKit2/BrowserMarshal.c
-nodist_Programs_MiniBrowser_SOURCES = \
-	$(minibrowser_built_sources)
-
-Programs_MiniBrowser_LDADD = \
-	libwebkit2gtk-@WEBKITGTK_API_MAJOR_VERSION@.@WEBKITGTK_API_MINOR_VERSION@.la \
-	$(FREETYPE_LIBS) \
-	$(GLIB_LIBS) \
-	$(GTK_LIBS) \
-	$(LIBSOUP_LIBS)
-
-Programs_MiniBrowser_LDFLAGS = \
-	-no-fast-install \
-	-no-install
-
-CLEANFILES += \
-	$(top_builddir)/Programs/MiniBrowser \
-	$(minibrowser_built_sources) \
-	$(top_builddir)/stamp-mini-browser-marshal.h \
-	$(top_builddir)/stamp-mini-browser-marshal.c
-
-BUILT_SOURCES += $(minibrowser_built_sources)
-
-minibrowser_marshal_list = $(srcdir)/Tools/MiniBrowser/gtk/browser-marshal.list
-
-$(GENSOURCES_WEBKIT2)/BrowserMarshal.h: stamp-mini-browser-marshal.h
-	@true
-$(GENSOURCES_WEBKIT2)/BrowserMarshal.c: stamp-mini-browser-marshal.c
-	@true
-
-stamp-mini-browser-marshal.c: $(minibrowser_marshal_list)
-	$(AM_V_GEN)$(GLIB_GENMARSHAL) --prefix=browser_marshal $(minibrowser_marshal_list) --body > $(GENSOURCES_WEBKIT2)/BrowserMarshal.c && \
-	echo timestamp > $(@F)
-
-stamp-mini-browser-marshal.h: $(MiniBrowser_marshal_list)
-	$(AM_V_GEN)$(GLIB_GENMARSHAL) --prefix=browser_marshal $(minibrowser_marshal_list) --header > $(GENSOURCES_WEBKIT2)/BrowserMarshal.h && \
-	echo timestamp > $(@F)
-
-EXTRA_DIST += \
-	$(srcdir)/Tools/MiniBrowser/gtk/browser-marshal.list
-
diff --git a/Tools/MiniBrowser/gtk/browser-marshal.list b/Tools/MiniBrowser/gtk/browser-marshal.list
deleted file mode 100644
index e72aa4b..0000000
--- a/Tools/MiniBrowser/gtk/browser-marshal.list
+++ /dev/null
@@ -1 +0,0 @@
-VOID:STRING,BOXED
diff --git a/Tools/MiniBrowser/gtk/main.c b/Tools/MiniBrowser/gtk/main.c
deleted file mode 100644
index 17e46f4..0000000
--- a/Tools/MiniBrowser/gtk/main.c
+++ /dev/null
@@ -1,245 +0,0 @@
-/*
- * Copyright (C) 2006, 2007 Apple Inc.
- * Copyright (C) 2007 Alp Toker <alp@atoker.com>
- * Copyright (C) 2011 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "BrowserWindow.h"
-#include <errno.h>
-#include <gtk/gtk.h>
-#include <string.h>
-#include <webkit2/webkit2.h>
-
-static const gchar **uriArguments = NULL;
-
-static gchar *argumentToURL(const char *filename)
-{
-    GFile *gfile = g_file_new_for_commandline_arg(filename);
-    gchar *fileURL = g_file_get_uri(gfile);
-    g_object_unref(gfile);
-
-    return fileURL;
-}
-
-static void createBrowserWindow(const gchar *uri, WebKitSettings *webkitSettings)
-{
-    GtkWidget *webView = webkit_web_view_new();
-    GtkWidget *mainWindow = browser_window_new(WEBKIT_WEB_VIEW(webView), NULL);
-    gchar *url = argumentToURL(uri);
-
-    if (webkitSettings) {
-        webkit_web_view_set_settings(WEBKIT_WEB_VIEW(webView), webkitSettings);
-        g_object_unref(webkitSettings);
-    }
-
-    browser_window_load_uri(BROWSER_WINDOW(mainWindow), url);
-    g_free(url);
-
-    gtk_widget_grab_focus(webView);
-    gtk_widget_show(mainWindow);
-}
-
-static const GOptionEntry commandLineOptions[] =
-{
-    { G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &uriArguments, 0, "[URL…]" },
-    { 0, 0, 0, 0, 0, 0, 0 }
-};
-
-static gboolean parseOptionEntryCallback(const gchar *optionNameFull, const gchar *value, WebKitSettings *webSettings, GError **error)
-{
-    if (strlen(optionNameFull) <= 2) {
-        g_set_error(error, G_OPTION_ERROR, G_OPTION_ERROR_FAILED, "Invalid option %s", optionNameFull);
-        return FALSE;
-    }
-
-    /* We have two -- in option name so remove them. */
-    const gchar *optionName = optionNameFull + 2;
-    GParamSpec *spec = g_object_class_find_property(G_OBJECT_GET_CLASS(webSettings), optionName);
-    if (!spec) {
-        g_set_error(error, G_OPTION_ERROR, G_OPTION_ERROR_FAILED, "Cannot find web settings for option %s", optionNameFull);
-        return FALSE;
-    }
-
-    switch (G_PARAM_SPEC_VALUE_TYPE(spec)) {
-    case G_TYPE_BOOLEAN: {
-        gboolean propertyValue = !(value && g_ascii_strcasecmp(value, "true") && strcmp(value, "1"));
-        g_object_set(G_OBJECT(webSettings), optionName, propertyValue, NULL);
-        break;
-    }
-    case G_TYPE_STRING:
-        g_object_set(G_OBJECT(webSettings), optionName, value, NULL);
-        break;
-    case G_TYPE_INT: {
-        glong propertyValue;
-        gchar *end;
-
-        errno = 0;
-        propertyValue = g_ascii_strtoll(value, &end, 0);
-        if (errno == ERANGE || propertyValue > G_MAXINT || propertyValue < G_MININT) {
-            g_set_error(error, G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE, "Integer value '%s' for %s out of range", value, optionNameFull);
-            return FALSE;
-        }
-        if (errno || value == end) {
-            g_set_error(error, G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE, "Cannot parse integer value '%s' for %s", value, optionNameFull);
-            return FALSE;
-        }
-        g_object_set(G_OBJECT(webSettings), optionName, propertyValue, NULL);
-        break;
-    }
-    case G_TYPE_FLOAT: {
-        gdouble propertyValue;
-        gchar *end;
-
-        errno = 0;
-        propertyValue = g_ascii_strtod(value, &end);
-        if (errno == ERANGE || propertyValue > G_MAXFLOAT || propertyValue < G_MINFLOAT) {
-            g_set_error(error, G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE, "Float value '%s' for %s out of range", value, optionNameFull);
-            return FALSE;
-        }
-        if (errno || value == end) {
-            g_set_error(error, G_OPTION_ERROR, G_OPTION_ERROR_BAD_VALUE, "Cannot parse float value '%s' for %s", value, optionNameFull);
-            return FALSE;
-        }
-        g_object_set(G_OBJECT(webSettings), optionName, propertyValue, NULL);
-        break;
-    }
-    default:
-        g_assert_not_reached();
-    }
-
-    return TRUE;
-}
-
-static gboolean isValidParameterType(GType gParamType)
-{
-    return (gParamType == G_TYPE_BOOLEAN || gParamType == G_TYPE_STRING || gParamType == G_TYPE_INT
-            || gParamType == G_TYPE_FLOAT);
-}
-
-static GOptionEntry* getOptionEntriesFromWebKitSettings(WebKitSettings *webSettings)
-{
-    GParamSpec **propertySpecs;
-    GOptionEntry *optionEntries;
-    guint numProperties, numEntries, i;
-
-    propertySpecs = g_object_class_list_properties(G_OBJECT_GET_CLASS(webSettings), &numProperties);
-    if (!propertySpecs)
-        return NULL;
-
-    optionEntries = g_new0(GOptionEntry, numProperties + 1);
-    numEntries = 0;
-    for (i = 0; i < numProperties; i++) {
-        GParamSpec *param = propertySpecs[i];
-
-        /* Fill in structures only for writable and not construct-only properties. */
-        if (!param || !(param->flags & G_PARAM_WRITABLE) || (param->flags & G_PARAM_CONSTRUCT_ONLY))
-            continue;
-
-        GType gParamType = G_PARAM_SPEC_VALUE_TYPE(param);
-        if (!isValidParameterType(gParamType))
-            continue;
-
-        GOptionEntry *optionEntry = &optionEntries[numEntries++];
-        optionEntry->long_name = g_param_spec_get_name(param);
-
-        /* There is no easy way to figure our short name for generated option entries.
-           optionEntry.short_name=*/
-        /* For bool arguments "enable" type make option argument not required. */
-        if (gParamType == G_TYPE_BOOLEAN && (strstr(optionEntry->long_name, "enable")))
-            optionEntry->flags = G_OPTION_FLAG_OPTIONAL_ARG;
-        optionEntry->arg = G_OPTION_ARG_CALLBACK;
-        optionEntry->arg_data = parseOptionEntryCallback;
-        optionEntry->description = g_param_spec_get_blurb(param);
-        optionEntry->arg_description = g_type_name(gParamType);
-    }
-    g_free(propertySpecs);
-
-    return optionEntries;
-}
-
-static gboolean addSettingsGroupToContext(GOptionContext *context, WebKitSettings* webkitSettings)
-{
-    GOptionEntry *optionEntries = getOptionEntriesFromWebKitSettings(webkitSettings);
-    if (!optionEntries)
-        return FALSE;
-
-    GOptionGroup *webSettingsGroup = g_option_group_new("websettings",
-                                                        "WebKitSettings writable properties for default WebKitWebView",
-                                                        "WebKitSettings properties",
-                                                        webkitSettings,
-                                                        NULL);
-    g_option_group_add_entries(webSettingsGroup, optionEntries);
-    g_free(optionEntries);
-
-    /* Option context takes ownership of the group. */
-    g_option_context_add_group(context, webSettingsGroup);
-
-    return TRUE;
-}
-
-int main(int argc, char *argv[])
-{
-    gtk_init(&argc, &argv);
-
-    GOptionContext *context = g_option_context_new(NULL);
-    g_option_context_add_main_entries(context, commandLineOptions, 0);
-    g_option_context_add_group(context, gtk_get_option_group(TRUE));
-
-    WebKitSettings *webkitSettings = webkit_settings_new();
-    webkit_settings_set_enable_developer_extras(webkitSettings, TRUE);
-    if (!addSettingsGroupToContext(context, webkitSettings)) {
-        g_object_unref(webkitSettings);
-        webkitSettings = 0;
-    }
-
-    GError *error = 0;
-    if (!g_option_context_parse(context, &argc, &argv, &error)) {
-        g_printerr("Cannot parse arguments: %s\n", error->message);
-        g_error_free(error);
-        g_option_context_free(context);
-
-        return 1;
-    }
-    g_option_context_free (context);
-
-#ifdef WEBKIT_EXEC_PATH
-    g_setenv("WEBKIT_INSPECTOR_PATH", WEBKIT_EXEC_PATH "resources/inspector", FALSE);
-#endif /* WEBKIT_EXEC_PATH */
-    g_setenv("WEBKIT_INJECTED_BUNDLE_PATH", WEBKIT_INJECTED_BUNDLE_PATH, FALSE);
-
-    // Enable the favicon database, by specifying the default directory.
-    webkit_web_context_set_favicon_database_directory(webkit_web_context_get_default(), NULL);
-
-    if (uriArguments) {
-        int i;
-
-        for (i = 0; uriArguments[i]; i++)
-            createBrowserWindow(uriArguments[i], webkitSettings);
-    } else
-        createBrowserWindow("http://www.webkitgtk.org/", webkitSettings);
-
-    gtk_main();
-
-    return 0;
-}
diff --git a/Tools/MiniBrowser/mac/AppDelegate.h b/Tools/MiniBrowser/mac/AppDelegate.h
deleted file mode 100644
index 6129ea3..0000000
--- a/Tools/MiniBrowser/mac/AppDelegate.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-@interface BrowserAppDelegate : NSObject <NSApplicationDelegate> {
-    WKContextRef _processContext;
-    WKPageGroupRef _pageGroup;
-    NSMutableSet *_browserWindows;
-}
-
-- (void)browserWindowWillClose:(NSWindow *)window;
-
-@end
diff --git a/Tools/MiniBrowser/mac/AppDelegate.m b/Tools/MiniBrowser/mac/AppDelegate.m
deleted file mode 100644
index 3bde3d1..0000000
--- a/Tools/MiniBrowser/mac/AppDelegate.m
+++ /dev/null
@@ -1,242 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "AppDelegate.h"
-
-#import "WK1BrowserWindowController.h"
-#import "WK2BrowserWindowController.h"
-
-#import <WebKit2/WKContextPrivate.h>
-#import <WebKit2/WKStringCF.h>
-#import <WebKit2/WKURLCF.h>
-
-static NSString *defaultURL = @"http://www.webkit.org/";
-
-enum {
-    WebKit1NewWindowTag = 1,
-    WebKit2NewWindowTag = 2
-};
-
-@implementation BrowserAppDelegate
-
-void didReceiveMessageFromInjectedBundle(WKContextRef context, WKStringRef messageName, WKTypeRef messageBody, const void *clientInfo)
-{
-    CFStringRef cfMessageName = WKStringCopyCFString(0, messageName);
-
-    WKTypeID typeID = WKGetTypeID(messageBody);
-    if (typeID == WKStringGetTypeID()) {
-        CFStringRef cfMessageBody = WKStringCopyCFString(0, (WKStringRef)messageBody);
-        LOG(@"ContextInjectedBundleClient - didReceiveMessage - MessageName: %@ MessageBody %@", cfMessageName, cfMessageBody);
-        CFRelease(cfMessageBody);
-    } else {
-        LOG(@"ContextInjectedBundleClient - didReceiveMessage - MessageName: %@ (MessageBody Unhandled)\n", cfMessageName);
-    }
-    
-    CFRelease(cfMessageName);
-
-    WKStringRef newMessageName = WKStringCreateWithCFString(CFSTR("Response"));
-    WKStringRef newMessageBody = WKStringCreateWithCFString(CFSTR("Roger that!"));
-
-    WKContextPostMessageToInjectedBundle(context, newMessageName, newMessageBody);
-    
-    WKRelease(newMessageName);
-    WKRelease(newMessageBody);
-}
-
-// MARK: History Client Callbacks
-
-static void didNavigateWithNavigationData(WKContextRef context, WKPageRef page, WKNavigationDataRef navigationData, WKFrameRef frame, const void *clientInfo)
-{
-    WKStringRef wkTitle = WKNavigationDataCopyTitle(navigationData);
-    CFStringRef title = WKStringCopyCFString(0, wkTitle);
-    WKRelease(wkTitle);
-
-    WKURLRef wkURL = WKNavigationDataCopyURL(navigationData);
-    CFURLRef url = WKURLCopyCFURL(0, wkURL);
-    WKRelease(wkURL);
-
-    LOG(@"HistoryClient - didNavigateWithNavigationData - title: %@ - url: %@", title, url);
-    CFRelease(title);
-    CFRelease(url);
-}
-
-static void didPerformClientRedirect(WKContextRef context, WKPageRef page, WKURLRef sourceURL, WKURLRef destinationURL, WKFrameRef frame, const void *clientInfo)
-{
-    CFURLRef cfSourceURL = WKURLCopyCFURL(0, sourceURL);
-    CFURLRef cfDestinationURL = WKURLCopyCFURL(0, destinationURL);
-    LOG(@"HistoryClient - didPerformClientRedirect - sourceURL: %@ - destinationURL: %@", cfSourceURL, cfDestinationURL);
-    CFRelease(cfSourceURL);
-    CFRelease(cfDestinationURL);
-}
-
-static void didPerformServerRedirect(WKContextRef context, WKPageRef page, WKURLRef sourceURL, WKURLRef destinationURL, WKFrameRef frame, const void *clientInfo)
-{
-    CFURLRef cfSourceURL = WKURLCopyCFURL(0, sourceURL);
-    CFURLRef cfDestinationURL = WKURLCopyCFURL(0, destinationURL);
-    LOG(@"HistoryClient - didPerformServerRedirect - sourceURL: %@ - destinationURL: %@", cfSourceURL, cfDestinationURL);
-    CFRelease(cfSourceURL);
-    CFRelease(cfDestinationURL);
-}
-
-static void didUpdateHistoryTitle(WKContextRef context, WKPageRef page, WKStringRef title, WKURLRef URL, WKFrameRef frame, const void *clientInfo)
-{
-    CFStringRef cfTitle = WKStringCopyCFString(0, title);
-    CFURLRef cfURL = WKURLCopyCFURL(0, URL);
-    LOG(@"HistoryClient - didUpdateHistoryTitle - title: %@ - URL: %@", cfTitle, cfURL);
-    CFRelease(cfTitle);
-    CFRelease(cfURL);
-}
-
-static void populateVisitedLinks(WKContextRef context, const void *clientInfo)
-{
-    LOG(@"HistoryClient - populateVisitedLinks");
-}
-
-- (id)init
-{
-    self = [super init];
-    if (self) {
-        WKContextHistoryClient historyClient = {
-            kWKContextHistoryClientCurrentVersion,
-            self,
-            didNavigateWithNavigationData,
-            didPerformClientRedirect,
-            didPerformServerRedirect,
-            didUpdateHistoryTitle,
-            populateVisitedLinks
-        };
-
-        CFStringRef bundlePathCF = (CFStringRef)[[NSBundle mainBundle] pathForAuxiliaryExecutable:@"WebBundle.bundle"];
-        WKStringRef bundlePath = WKStringCreateWithCFString(bundlePathCF);
-
-        _processContext = WKContextCreateWithInjectedBundlePath(bundlePath);
-        
-        WKContextInjectedBundleClient bundleClient = {
-            kWKContextInjectedBundleClientCurrentVersion,
-            0,      /* clientInfo */
-            didReceiveMessageFromInjectedBundle,
-            0,      /* didReceiveSynchronousMessageFromInjectedBundle */
-            0       /* getInjectedBundleInitializationUserData */
-        };
-        WKContextSetInjectedBundleClient(_processContext, &bundleClient);
-        WKContextSetHistoryClient(_processContext, &historyClient);
-        WKContextSetCacheModel(_processContext, kWKCacheModelPrimaryWebBrowser);
-
-        WKRelease(bundlePath);
-        
-        WKStringRef pageGroupIdentifier = WKStringCreateWithCFString(CFSTR("MiniBrowser"));
-        _pageGroup = WKPageGroupCreateWithIdentifier(pageGroupIdentifier);
-        WKRelease(pageGroupIdentifier);
-
-        _browserWindows = [[NSMutableSet alloc] init];
-    }
-
-    return self;
-}
-
-- (IBAction)newWindow:(id)sender
-{
-    BrowserWindowController *controller = nil;
-    
-    if (![sender respondsToSelector:@selector(tag)] || [sender tag] == WebKit1NewWindowTag)
-        controller = [[WK1BrowserWindowController alloc] initWithWindowNibName:@"BrowserWindow"];
-    else if ([sender tag] == WebKit2NewWindowTag)
-        controller = [[WK2BrowserWindowController alloc] initWithContext:_processContext pageGroup:_pageGroup];
-
-    if (!controller)
-        return;
-
-    [[controller window] makeKeyAndOrderFront:sender];
-    [_browserWindows addObject:[controller window]];
-    
-    [controller loadURLString:defaultURL];
-}
-
-- (void)browserWindowWillClose:(NSWindow *)window
-{
-    [_browserWindows removeObject:window];
-}
-
-- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
-{
-    [self newWindow:self];
-}
-
-- (void)applicationWillTerminate:(NSNotification *)notification
-{
-    for (NSWindow* window in _browserWindows) {
-        id delegate = [window delegate];
-        assert([delegate isKindOfClass:[BrowserWindowController class]]);
-        BrowserWindowController *controller = (BrowserWindowController *)delegate;
-        [controller applicationTerminating];
-    }
-
-    WKRelease(_processContext);
-    _processContext = 0;
-}
-
-- (BrowserWindowController *)frontmostBrowserWindowController
-{
-    NSArray* windows = [NSApp windows];
-    for (NSWindow* window in windows) {
-        id delegate = [window delegate];
-        assert([delegate isKindOfClass:[BrowserWindowController class]]);
-        BrowserWindowController *controller = (BrowserWindowController *)delegate;
-        assert([_browserWindows containsObject:[controller window]]);
-        return controller;
-    }
-
-    return 0;
-}
-
-- (IBAction)openDocument:(id)sender
-{
-    NSOpenPanel *openPanel = [[NSOpenPanel openPanel] retain];
-    [openPanel beginForDirectory:nil
-        file:nil
-        types:nil
-        modelessDelegate:self
-        didEndSelector:@selector(openPanelDidEnd:returnCode:contextInfo:)
-        contextInfo:0];
-}
-
-- (void)openPanelDidEnd:(NSOpenPanel *)sheet returnCode:(int)returnCode contextInfo:(void *)contextInfo
-{
-    [sheet autorelease];
-    if (returnCode != NSOKButton || ![[sheet filenames] count])
-        return;
-    
-    NSString* filePath = [[sheet filenames] objectAtIndex:0];
-
-    BrowserWindowController *controller = [self frontmostBrowserWindowController];
-    if (!controller) {
-        controller = [[WK2BrowserWindowController alloc] initWithContext:_processContext pageGroup:_pageGroup]; // FIXME: add a way to open in WK1 also.
-        [[controller window] makeKeyAndOrderFront:self];
-    }
-    
-    [controller loadURLString:[[NSURL fileURLWithPath:filePath] absoluteString]];
-}
-
-@end
diff --git a/Tools/MiniBrowser/mac/BrowserWindow.xib b/Tools/MiniBrowser/mac/BrowserWindow.xib
deleted file mode 100644
index 5984fe5..0000000
--- a/Tools/MiniBrowser/mac/BrowserWindow.xib
+++ /dev/null
@@ -1,1558 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10">
-	<data>
-		<int key="IBDocument.SystemTarget">1060</int>
-		<string key="IBDocument.SystemVersion">10H545</string>
-		<string key="IBDocument.InterfaceBuilderVersion">820</string>
-		<string key="IBDocument.AppKitVersion">1038.35</string>
-		<string key="IBDocument.HIToolboxVersion">461.00</string>
-		<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
-			<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
-			<string key="NS.object.0">820</string>
-		</object>
-		<object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
-			<bool key="EncodedWithXMLCoder">YES</bool>
-			<integer value="9"/>
-			<integer value="71"/>
-		</object>
-		<object class="NSArray" key="IBDocument.PluginDependencies">
-			<bool key="EncodedWithXMLCoder">YES</bool>
-			<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-		</object>
-		<object class="NSMutableDictionary" key="IBDocument.Metadata">
-			<bool key="EncodedWithXMLCoder">YES</bool>
-			<object class="NSArray" key="dict.sortedKeys" id="0">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-			</object>
-			<object class="NSMutableArray" key="dict.values">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-			</object>
-		</object>
-		<object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
-			<bool key="EncodedWithXMLCoder">YES</bool>
-			<object class="NSCustomObject" id="1001">
-				<string key="NSClassName">BrowserWindowController</string>
-			</object>
-			<object class="NSCustomObject" id="1003">
-				<string key="NSClassName">FirstResponder</string>
-			</object>
-			<object class="NSCustomObject" id="1004">
-				<string key="NSClassName">NSApplication</string>
-			</object>
-			<object class="NSWindowTemplate" id="1005">
-				<int key="NSWindowStyleMask">4111</int>
-				<int key="NSWindowBacking">2</int>
-				<string key="NSWindowRect">{{517, 330}, {776, 608}}</string>
-				<int key="NSWTFlags">544735232</int>
-				<string key="NSWindowTitle">Window</string>
-				<string key="NSWindowClass">NSWindow</string>
-				<object class="NSToolbar" key="NSViewClass" id="726585754">
-					<object class="NSMutableString" key="NSToolbarIdentifier">
-						<characters key="NS.bytes">994A0CB1-7575-4F39-A65B-7165AB1E8015</characters>
-					</object>
-					<nil key="NSToolbarDelegate"/>
-					<bool key="NSToolbarPrefersToBeShown">YES</bool>
-					<bool key="NSToolbarShowsBaselineSeparator">YES</bool>
-					<bool key="NSToolbarAllowsUserCustomization">YES</bool>
-					<bool key="NSToolbarAutosavesConfiguration">NO</bool>
-					<int key="NSToolbarDisplayMode">2</int>
-					<int key="NSToolbarSizeMode">1</int>
-					<object class="NSMutableDictionary" key="NSToolbarIBIdentifiedItems">
-						<bool key="EncodedWithXMLCoder">YES</bool>
-						<object class="NSArray" key="dict.sortedKeys">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<string>255D29F2-C9AA-4B4B-BB43-B38FCD6A0BBB</string>
-							<string>6BDC61B7-F1A8-425A-A212-9CAC59C56385</string>
-							<string>73DE9F4B-73E2-4036-A134-2D9E029DA980</string>
-							<string>88C16109-D40F-4682-BCE4-CBEE2EDE32D2</string>
-							<string>E1A9D32A-59E3-467B-9ABA-A95780416E69</string>
-						</object>
-						<object class="NSMutableArray" key="dict.values">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<object class="NSToolbarItem" id="16289946">
-								<object class="NSMutableString" key="NSToolbarItemIdentifier">
-									<characters key="NS.bytes">255D29F2-C9AA-4B4B-BB43-B38FCD6A0BBB</characters>
-								</object>
-								<string key="NSToolbarItemLabel">Location</string>
-								<string key="NSToolbarItemPaletteLabel">Location</string>
-								<nil key="NSToolbarItemToolTip"/>
-								<object class="NSTextField" key="NSToolbarItemView" id="690456651">
-									<nil key="NSNextResponder"/>
-									<int key="NSvFlags">266</int>
-									<string key="NSFrame">{{0, 14}, {565, 22}}</string>
-									<int key="NSViewLayerContentsRedrawPolicy">2</int>
-									<bool key="NSEnabled">YES</bool>
-									<object class="NSTextFieldCell" key="NSCell" id="1023147716">
-										<int key="NSCellFlags">-1804468671</int>
-										<int key="NSCellFlags2">268436480</int>
-										<string key="NSContents"/>
-										<object class="NSFont" key="NSSupport" id="1064395332">
-											<string key="NSName">LucidaGrande</string>
-											<double key="NSSize">13</double>
-											<int key="NSfFlags">1044</int>
-										</object>
-										<reference key="NSControlView" ref="690456651"/>
-										<bool key="NSDrawsBackground">YES</bool>
-										<object class="NSColor" key="NSBackgroundColor" id="1032961300">
-											<int key="NSColorSpace">6</int>
-											<string key="NSCatalogName">System</string>
-											<string key="NSColorName">textBackgroundColor</string>
-											<object class="NSColor" key="NSColor">
-												<int key="NSColorSpace">3</int>
-												<bytes key="NSWhite">MQA</bytes>
-											</object>
-										</object>
-										<object class="NSColor" key="NSTextColor">
-											<int key="NSColorSpace">6</int>
-											<string key="NSCatalogName">System</string>
-											<string key="NSColorName">textColor</string>
-											<object class="NSColor" key="NSColor" id="365730878">
-												<int key="NSColorSpace">3</int>
-												<bytes key="NSWhite">MAA</bytes>
-											</object>
-										</object>
-									</object>
-								</object>
-								<nil key="NSToolbarItemImage"/>
-								<nil key="NSToolbarItemTarget"/>
-								<nil key="NSToolbarItemAction"/>
-								<string key="NSToolbarItemMinSize">{200, 22}</string>
-								<string key="NSToolbarItemMaxSize">{800, 22}</string>
-								<bool key="NSToolbarItemEnabled">YES</bool>
-								<bool key="NSToolbarItemAutovalidates">YES</bool>
-								<int key="NSToolbarItemTag">0</int>
-								<bool key="NSToolbarIsUserRemovable">YES</bool>
-								<int key="NSToolbarItemVisibilityPriority">0</int>
-							</object>
-							<object class="NSToolbarItem" id="457655522">
-								<object class="NSMutableString" key="NSToolbarItemIdentifier">
-									<characters key="NS.bytes">6BDC61B7-F1A8-425A-A212-9CAC59C56385</characters>
-								</object>
-								<string key="NSToolbarItemLabel">Progress</string>
-								<string key="NSToolbarItemPaletteLabel">Progress</string>
-								<nil key="NSToolbarItemToolTip"/>
-								<object class="NSProgressIndicator" key="NSToolbarItemView" id="128750774">
-									<nil key="NSNextResponder"/>
-									<int key="NSvFlags">1289</int>
-									<object class="NSPSMatrix" key="NSDrawMatrix"/>
-									<string key="NSFrame">{{19, 14}, {16, 16}}</string>
-									<int key="NSpiFlags">28936</int>
-									<double key="NSMaxValue">1</double>
-								</object>
-								<nil key="NSToolbarItemImage"/>
-								<nil key="NSToolbarItemTarget"/>
-								<nil key="NSToolbarItemAction"/>
-								<string key="NSToolbarItemMinSize">{16, 16}</string>
-								<string key="NSToolbarItemMaxSize">{16, 16}</string>
-								<bool key="NSToolbarItemEnabled">YES</bool>
-								<bool key="NSToolbarItemAutovalidates">YES</bool>
-								<int key="NSToolbarItemTag">-1</int>
-								<bool key="NSToolbarIsUserRemovable">YES</bool>
-								<int key="NSToolbarItemVisibilityPriority">0</int>
-							</object>
-							<object class="NSToolbarItem" id="332491395">
-								<object class="NSMutableString" key="NSToolbarItemIdentifier">
-									<characters key="NS.bytes">73DE9F4B-73E2-4036-A134-2D9E029DA980</characters>
-								</object>
-								<string key="NSToolbarItemLabel">Go Back</string>
-								<string key="NSToolbarItemPaletteLabel">Go Back</string>
-								<nil key="NSToolbarItemToolTip"/>
-								<object class="NSButton" key="NSToolbarItemView" id="777930419">
-									<nil key="NSNextResponder"/>
-									<int key="NSvFlags">268</int>
-									<string key="NSFrame">{{9, 14}, {32, 25}}</string>
-									<bool key="NSEnabled">YES</bool>
-									<object class="NSButtonCell" key="NSCell" id="663899880">
-										<int key="NSCellFlags">-2080244224</int>
-										<int key="NSCellFlags2">134217728</int>
-										<string key="NSContents"/>
-										<reference key="NSSupport" ref="1064395332"/>
-										<reference key="NSControlView" ref="777930419"/>
-										<int key="NSButtonFlags">-2033434369</int>
-										<int key="NSButtonFlags2">163</int>
-										<object class="NSCustomResource" key="NSNormalImage" id="206098440">
-											<string key="NSClassName">NSImage</string>
-											<string key="NSResourceName">NSGoLeftTemplate</string>
-										</object>
-										<string key="NSAlternateContents"/>
-										<string key="NSKeyEquivalent"/>
-										<int key="NSPeriodicDelay">400</int>
-										<int key="NSPeriodicInterval">75</int>
-									</object>
-								</object>
-								<reference key="NSToolbarItemImage" ref="206098440"/>
-								<nil key="NSToolbarItemTarget"/>
-								<nil key="NSToolbarItemAction"/>
-								<string key="NSToolbarItemMinSize">{32, 25}</string>
-								<string key="NSToolbarItemMaxSize">{32, 25}</string>
-								<bool key="NSToolbarItemEnabled">YES</bool>
-								<bool key="NSToolbarItemAutovalidates">YES</bool>
-								<int key="NSToolbarItemTag">0</int>
-								<bool key="NSToolbarIsUserRemovable">YES</bool>
-								<int key="NSToolbarItemVisibilityPriority">0</int>
-							</object>
-							<object class="NSToolbarItem" id="818723416">
-								<object class="NSMutableString" key="NSToolbarItemIdentifier">
-									<characters key="NS.bytes">88C16109-D40F-4682-BCE4-CBEE2EDE32D2</characters>
-								</object>
-								<string key="NSToolbarItemLabel">Refresh</string>
-								<string key="NSToolbarItemPaletteLabel">Refresh</string>
-								<nil key="NSToolbarItemToolTip"/>
-								<object class="NSButton" key="NSToolbarItemView" id="35464578">
-									<nil key="NSNextResponder"/>
-									<int key="NSvFlags">268</int>
-									<string key="NSFrame">{{10, 14}, {29, 25}}</string>
-									<bool key="NSEnabled">YES</bool>
-									<object class="NSButtonCell" key="NSCell" id="366486485">
-										<int key="NSCellFlags">-2080244224</int>
-										<int key="NSCellFlags2">134217728</int>
-										<string key="NSContents"/>
-										<reference key="NSSupport" ref="1064395332"/>
-										<reference key="NSControlView" ref="35464578"/>
-										<int key="NSButtonFlags">-2033434369</int>
-										<int key="NSButtonFlags2">163</int>
-										<object class="NSCustomResource" key="NSNormalImage" id="443763357">
-											<string key="NSClassName">NSImage</string>
-											<string key="NSResourceName">NSRefreshTemplate</string>
-										</object>
-										<string key="NSAlternateContents"/>
-										<string key="NSKeyEquivalent"/>
-										<int key="NSPeriodicDelay">400</int>
-										<int key="NSPeriodicInterval">75</int>
-									</object>
-								</object>
-								<reference key="NSToolbarItemImage" ref="443763357"/>
-								<nil key="NSToolbarItemTarget"/>
-								<nil key="NSToolbarItemAction"/>
-								<string key="NSToolbarItemMinSize">{29, 25}</string>
-								<string key="NSToolbarItemMaxSize">{29, 25}</string>
-								<bool key="NSToolbarItemEnabled">YES</bool>
-								<bool key="NSToolbarItemAutovalidates">YES</bool>
-								<int key="NSToolbarItemTag">0</int>
-								<bool key="NSToolbarIsUserRemovable">YES</bool>
-								<int key="NSToolbarItemVisibilityPriority">0</int>
-							</object>
-							<object class="NSToolbarItem" id="928383107">
-								<object class="NSMutableString" key="NSToolbarItemIdentifier">
-									<characters key="NS.bytes">E1A9D32A-59E3-467B-9ABA-A95780416E69</characters>
-								</object>
-								<string key="NSToolbarItemLabel">Go Forward</string>
-								<string key="NSToolbarItemPaletteLabel">Go Forward</string>
-								<nil key="NSToolbarItemToolTip"/>
-								<object class="NSButton" key="NSToolbarItemView" id="95415629">
-									<nil key="NSNextResponder"/>
-									<int key="NSvFlags">268</int>
-									<string key="NSFrame">{{19, 14}, {32, 25}}</string>
-									<bool key="NSEnabled">YES</bool>
-									<object class="NSButtonCell" key="NSCell" id="767612038">
-										<int key="NSCellFlags">-2080244224</int>
-										<int key="NSCellFlags2">134217728</int>
-										<string key="NSContents"/>
-										<reference key="NSSupport" ref="1064395332"/>
-										<reference key="NSControlView" ref="95415629"/>
-										<int key="NSButtonFlags">-2033434369</int>
-										<int key="NSButtonFlags2">163</int>
-										<object class="NSCustomResource" key="NSNormalImage" id="163672266">
-											<string key="NSClassName">NSImage</string>
-											<string key="NSResourceName">NSGoRightTemplate</string>
-										</object>
-										<string key="NSAlternateContents"/>
-										<string key="NSKeyEquivalent"/>
-										<int key="NSPeriodicDelay">400</int>
-										<int key="NSPeriodicInterval">75</int>
-									</object>
-								</object>
-								<reference key="NSToolbarItemImage" ref="163672266"/>
-								<nil key="NSToolbarItemTarget"/>
-								<nil key="NSToolbarItemAction"/>
-								<string key="NSToolbarItemMinSize">{32, 25}</string>
-								<string key="NSToolbarItemMaxSize">{32, 25}</string>
-								<bool key="NSToolbarItemEnabled">YES</bool>
-								<bool key="NSToolbarItemAutovalidates">YES</bool>
-								<int key="NSToolbarItemTag">0</int>
-								<bool key="NSToolbarIsUserRemovable">YES</bool>
-								<int key="NSToolbarItemVisibilityPriority">0</int>
-							</object>
-						</object>
-					</object>
-					<object class="NSArray" key="NSToolbarIBAllowedItems">
-						<bool key="EncodedWithXMLCoder">YES</bool>
-						<reference ref="332491395"/>
-						<reference ref="928383107"/>
-						<reference ref="818723416"/>
-						<reference ref="457655522"/>
-						<reference ref="16289946"/>
-					</object>
-					<object class="NSMutableArray" key="NSToolbarIBDefaultItems">
-						<bool key="EncodedWithXMLCoder">YES</bool>
-						<reference ref="332491395"/>
-						<reference ref="928383107"/>
-						<reference ref="818723416"/>
-						<reference ref="16289946"/>
-						<reference ref="457655522"/>
-					</object>
-					<object class="NSMutableArray" key="NSToolbarIBSelectableItems">
-						<bool key="EncodedWithXMLCoder">YES</bool>
-					</object>
-				</object>
-				<string key="NSWindowContentMaxSize">{1.79769e+308, 1.79769e+308}</string>
-				<object class="NSView" key="NSWindowView" id="1006">
-					<reference key="NSNextResponder"/>
-					<int key="NSvFlags">256</int>
-					<object class="NSMutableArray" key="NSSubviews">
-						<bool key="EncodedWithXMLCoder">YES</bool>
-						<object class="NSCustomView" id="877383975">
-							<reference key="NSNextResponder" ref="1006"/>
-							<int key="NSvFlags">274</int>
-							<string key="NSFrameSize">{776, 608}</string>
-							<reference key="NSSuperview" ref="1006"/>
-							<int key="NSViewLayerContentsRedrawPolicy">2</int>
-							<string key="NSClassName">NSView</string>
-						</object>
-					</object>
-					<string key="NSFrameSize">{776, 608}</string>
-					<reference key="NSSuperview"/>
-					<int key="NSViewLayerContentsRedrawPolicy">2</int>
-				</object>
-				<string key="NSScreenRect">{{0, 0}, {1920, 1178}}</string>
-				<string key="NSMaxSize">{1.79769e+308, 1.79769e+308}</string>
-				<string key="NSFrameAutosaveName">Main Window</string>
-			</object>
-			<object class="NSWindowTemplate" id="833876351">
-				<int key="NSWindowStyleMask">147</int>
-				<int key="NSWindowBacking">2</int>
-				<string key="NSWindowRect">{{230, 479}, {452, 62}}</string>
-				<int key="NSWTFlags">-461897728</int>
-				<string key="NSWindowTitle">Find</string>
-				<string key="NSWindowClass">NSPanel</string>
-				<nil key="NSViewClass"/>
-				<string key="NSWindowContentMaxSize">{1.79769e+308, 1.79769e+308}</string>
-				<object class="NSView" key="NSWindowView" id="585866018">
-					<reference key="NSNextResponder"/>
-					<int key="NSvFlags">256</int>
-					<object class="NSMutableArray" key="NSSubviews">
-						<bool key="EncodedWithXMLCoder">YES</bool>
-						<object class="NSSearchField" id="841639270">
-							<reference key="NSNextResponder" ref="585866018"/>
-							<int key="NSvFlags">268</int>
-							<string key="NSFrame">{{20, 20}, {412, 22}}</string>
-							<reference key="NSSuperview" ref="585866018"/>
-							<bool key="NSEnabled">YES</bool>
-							<object class="NSSearchFieldCell" key="NSCell" id="41426839">
-								<int key="NSCellFlags">343014976</int>
-								<int key="NSCellFlags2">268436544</int>
-								<string key="NSContents"/>
-								<reference key="NSSupport" ref="1064395332"/>
-								<reference key="NSControlView" ref="841639270"/>
-								<bool key="NSDrawsBackground">YES</bool>
-								<int key="NSTextBezelStyle">1</int>
-								<reference key="NSBackgroundColor" ref="1032961300"/>
-								<object class="NSColor" key="NSTextColor">
-									<int key="NSColorSpace">6</int>
-									<string key="NSCatalogName">System</string>
-									<string key="NSColorName">controlTextColor</string>
-									<reference key="NSColor" ref="365730878"/>
-								</object>
-								<object class="NSButtonCell" key="NSSearchButtonCell">
-									<int key="NSCellFlags">130560</int>
-									<int key="NSCellFlags2">0</int>
-									<string key="NSContents">search</string>
-									<reference key="NSControlView" ref="841639270"/>
-									<string key="NSAction">_searchFieldSearch:</string>
-									<reference key="NSTarget" ref="41426839"/>
-									<int key="NSButtonFlags">138690815</int>
-									<int key="NSButtonFlags2">0</int>
-									<string key="NSKeyEquivalent"/>
-									<int key="NSPeriodicDelay">400</int>
-									<int key="NSPeriodicInterval">75</int>
-								</object>
-								<object class="NSButtonCell" key="NSCancelButtonCell">
-									<int key="NSCellFlags">130560</int>
-									<int key="NSCellFlags2">0</int>
-									<string key="NSContents">clear</string>
-									<object class="NSMutableArray" key="NSAccessibilityOverriddenAttributes">
-										<bool key="EncodedWithXMLCoder">YES</bool>
-										<object class="NSMutableDictionary">
-											<bool key="EncodedWithXMLCoder">YES</bool>
-											<object class="NSArray" key="dict.sortedKeys">
-												<bool key="EncodedWithXMLCoder">YES</bool>
-												<string>AXDescription</string>
-												<string>NSAccessibilityEncodedAttributesValueType</string>
-											</object>
-											<object class="NSMutableArray" key="dict.values">
-												<bool key="EncodedWithXMLCoder">YES</bool>
-												<string>cancel</string>
-												<integer value="1"/>
-											</object>
-										</object>
-									</object>
-									<reference key="NSControlView" ref="841639270"/>
-									<string key="NSAction">_searchFieldCancel:</string>
-									<reference key="NSTarget" ref="41426839"/>
-									<int key="NSButtonFlags">138690815</int>
-									<int key="NSButtonFlags2">0</int>
-									<string key="NSKeyEquivalent"/>
-									<int key="NSPeriodicDelay">400</int>
-									<int key="NSPeriodicInterval">75</int>
-								</object>
-								<int key="NSMaximumRecents">255</int>
-							</object>
-						</object>
-					</object>
-					<string key="NSFrameSize">{452, 62}</string>
-					<reference key="NSSuperview"/>
-				</object>
-				<string key="NSScreenRect">{{0, 0}, {1920, 1178}}</string>
-				<string key="NSMaxSize">{1.79769e+308, 1.79769e+308}</string>
-			</object>
-		</object>
-		<object class="IBObjectContainer" key="IBDocument.Objects">
-			<object class="NSMutableArray" key="connectionRecords">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-				<object class="IBConnectionRecord">
-					<object class="IBOutletConnection" key="connection">
-						<string key="label">window</string>
-						<reference key="source" ref="1001"/>
-						<reference key="destination" ref="1005"/>
-					</object>
-					<int key="connectionID">3</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBOutletConnection" key="connection">
-						<string key="label">delegate</string>
-						<reference key="source" ref="1005"/>
-						<reference key="destination" ref="1001"/>
-					</object>
-					<int key="connectionID">4</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBOutletConnection" key="connection">
-						<string key="label">urlText</string>
-						<reference key="source" ref="1001"/>
-						<reference key="destination" ref="690456651"/>
-					</object>
-					<int key="connectionID">32</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBOutletConnection" key="connection">
-						<string key="label">progressIndicator</string>
-						<reference key="source" ref="1001"/>
-						<reference key="destination" ref="128750774"/>
-					</object>
-					<int key="connectionID">33</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBOutletConnection" key="connection">
-						<string key="label">reloadButton</string>
-						<reference key="source" ref="1001"/>
-						<reference key="destination" ref="35464578"/>
-					</object>
-					<int key="connectionID">34</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">reload:</string>
-						<reference key="source" ref="1001"/>
-						<reference key="destination" ref="35464578"/>
-					</object>
-					<int key="connectionID">35</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">fetch:</string>
-						<reference key="source" ref="1001"/>
-						<reference key="destination" ref="690456651"/>
-					</object>
-					<int key="connectionID">36</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBOutletConnection" key="connection">
-						<string key="label">containerView</string>
-						<reference key="source" ref="1001"/>
-						<reference key="destination" ref="877383975"/>
-					</object>
-					<int key="connectionID">37</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBOutletConnection" key="connection">
-						<string key="label">backButton</string>
-						<reference key="source" ref="1001"/>
-						<reference key="destination" ref="777930419"/>
-					</object>
-					<int key="connectionID">46</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBOutletConnection" key="connection">
-						<string key="label">forwardButton</string>
-						<reference key="source" ref="1001"/>
-						<reference key="destination" ref="95415629"/>
-					</object>
-					<int key="connectionID">47</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">goBack:</string>
-						<reference key="source" ref="1001"/>
-						<reference key="destination" ref="332491395"/>
-					</object>
-					<int key="connectionID">61</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">goForward:</string>
-						<reference key="source" ref="1001"/>
-						<reference key="destination" ref="928383107"/>
-					</object>
-					<int key="connectionID">62</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBOutletConnection" key="connection">
-						<string key="label">toolbar</string>
-						<reference key="source" ref="1001"/>
-						<reference key="destination" ref="726585754"/>
-					</object>
-					<int key="connectionID">67</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">find:</string>
-						<reference key="source" ref="1001"/>
-						<reference key="destination" ref="841639270"/>
-					</object>
-					<int key="connectionID">76</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBOutletConnection" key="connection">
-						<string key="label">findPanelWindow</string>
-						<reference key="source" ref="1001"/>
-						<reference key="destination" ref="833876351"/>
-					</object>
-					<int key="connectionID">77</int>
-				</object>
-			</object>
-			<object class="IBMutableOrderedSet" key="objectRecords">
-				<object class="NSArray" key="orderedObjects">
-					<bool key="EncodedWithXMLCoder">YES</bool>
-					<object class="IBObjectRecord">
-						<int key="objectID">0</int>
-						<reference key="object" ref="0"/>
-						<reference key="children" ref="1000"/>
-						<nil key="parent"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">-2</int>
-						<reference key="object" ref="1001"/>
-						<reference key="parent" ref="0"/>
-						<string key="objectName">File's Owner</string>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">-1</int>
-						<reference key="object" ref="1003"/>
-						<reference key="parent" ref="0"/>
-						<string key="objectName">First Responder</string>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">-3</int>
-						<reference key="object" ref="1004"/>
-						<reference key="parent" ref="0"/>
-						<string key="objectName">Application</string>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">1</int>
-						<reference key="object" ref="1005"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="1006"/>
-							<reference ref="726585754"/>
-						</object>
-						<reference key="parent" ref="0"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">2</int>
-						<reference key="object" ref="1006"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="877383975"/>
-						</object>
-						<reference key="parent" ref="1005"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">9</int>
-						<reference key="object" ref="877383975"/>
-						<reference key="parent" ref="1006"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">48</int>
-						<reference key="object" ref="726585754"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="332491395"/>
-							<reference ref="928383107"/>
-							<reference ref="818723416"/>
-							<reference ref="16289946"/>
-							<reference ref="457655522"/>
-						</object>
-						<reference key="parent" ref="1005"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">56</int>
-						<reference key="object" ref="332491395"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="777930419"/>
-						</object>
-						<reference key="parent" ref="726585754"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">40</int>
-						<reference key="object" ref="777930419"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="663899880"/>
-						</object>
-						<reference key="parent" ref="332491395"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">41</int>
-						<reference key="object" ref="663899880"/>
-						<reference key="parent" ref="777930419"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">57</int>
-						<reference key="object" ref="928383107"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="95415629"/>
-						</object>
-						<reference key="parent" ref="726585754"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">42</int>
-						<reference key="object" ref="95415629"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="767612038"/>
-						</object>
-						<reference key="parent" ref="928383107"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">43</int>
-						<reference key="object" ref="767612038"/>
-						<reference key="parent" ref="95415629"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">58</int>
-						<reference key="object" ref="818723416"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="35464578"/>
-						</object>
-						<reference key="parent" ref="726585754"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">23</int>
-						<reference key="object" ref="35464578"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="366486485"/>
-						</object>
-						<reference key="parent" ref="818723416"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">24</int>
-						<reference key="object" ref="366486485"/>
-						<reference key="parent" ref="35464578"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">59</int>
-						<reference key="object" ref="16289946"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="690456651"/>
-						</object>
-						<reference key="parent" ref="726585754"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">10</int>
-						<reference key="object" ref="690456651"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="1023147716"/>
-						</object>
-						<reference key="parent" ref="16289946"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">11</int>
-						<reference key="object" ref="1023147716"/>
-						<reference key="parent" ref="690456651"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">60</int>
-						<reference key="object" ref="457655522"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="128750774"/>
-						</object>
-						<reference key="parent" ref="726585754"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">21</int>
-						<reference key="object" ref="128750774"/>
-						<reference key="parent" ref="457655522"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">70</int>
-						<reference key="object" ref="833876351"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="585866018"/>
-						</object>
-						<reference key="parent" ref="0"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">71</int>
-						<reference key="object" ref="585866018"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="841639270"/>
-						</object>
-						<reference key="parent" ref="833876351"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">74</int>
-						<reference key="object" ref="841639270"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="41426839"/>
-						</object>
-						<reference key="parent" ref="585866018"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">75</int>
-						<reference key="object" ref="41426839"/>
-						<reference key="parent" ref="841639270"/>
-					</object>
-				</object>
-			</object>
-			<object class="NSMutableDictionary" key="flattenedProperties">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-				<object class="NSArray" key="dict.sortedKeys">
-					<bool key="EncodedWithXMLCoder">YES</bool>
-					<string>1.IBEditorWindowLastContentRect</string>
-					<string>1.IBPluginDependency</string>
-					<string>1.IBWindowTemplateEditedContentRect</string>
-					<string>1.NSWindowTemplate.visibleAtLaunch</string>
-					<string>1.WindowOrigin</string>
-					<string>1.editorWindowContentRectSynchronizationRect</string>
-					<string>10.IBPluginDependency</string>
-					<string>11.IBPluginDependency</string>
-					<string>2.IBPluginDependency</string>
-					<string>21.IBPluginDependency</string>
-					<string>21.IBViewIntegration.shadowBlurRadius</string>
-					<string>21.IBViewIntegration.shadowColor</string>
-					<string>21.IBViewIntegration.shadowOffsetHeight</string>
-					<string>21.IBViewIntegration.shadowOffsetWidth</string>
-					<string>23.IBPluginDependency</string>
-					<string>24.IBPluginDependency</string>
-					<string>40.IBPluginDependency</string>
-					<string>41.IBPluginDependency</string>
-					<string>42.IBPluginDependency</string>
-					<string>43.IBPluginDependency</string>
-					<string>48.IBEditorWindowLastContentRect</string>
-					<string>48.IBPluginDependency</string>
-					<string>56.CustomClassName</string>
-					<string>57.CustomClassName</string>
-					<string>58.CustomClassName</string>
-					<string>70.IBEditorWindowLastContentRect</string>
-					<string>70.IBPluginDependency</string>
-					<string>70.IBWindowTemplateEditedContentRect</string>
-					<string>70.NSWindowTemplate.visibleAtLaunch</string>
-					<string>71.IBPluginDependency</string>
-					<string>74.IBPluginDependency</string>
-					<string>75.IBPluginDependency</string>
-					<string>9.IBPluginDependency</string>
-					<string>9.IBViewBoundsToFrameTransform</string>
-				</object>
-				<object class="NSMutableArray" key="dict.values">
-					<bool key="EncodedWithXMLCoder">YES</bool>
-					<string>{{404, 157}, {776, 608}}</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>{{404, 157}, {776, 608}}</string>
-					<integer value="1"/>
-					<string>{196, 240}</string>
-					<string>{{202, 428}, {480, 270}}</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<real value="0.0"/>
-					<reference ref="365730878"/>
-					<real value="0.0"/>
-					<real value="0.0"/>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>{{422, 781}, {616, 0}}</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>MBToolbarItem</string>
-					<string>MBToolbarItem</string>
-					<string>MBToolbarItem</string>
-					<string>{{558, 468}, {452, 62}}</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>{{558, 468}, {452, 62}}</string>
-					<boolean value="NO"/>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<object class="NSAffineTransform"/>
-				</object>
-			</object>
-			<object class="NSMutableDictionary" key="unlocalizedProperties">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-				<reference key="dict.sortedKeys" ref="0"/>
-				<object class="NSMutableArray" key="dict.values">
-					<bool key="EncodedWithXMLCoder">YES</bool>
-				</object>
-			</object>
-			<nil key="activeLocalization"/>
-			<object class="NSMutableDictionary" key="localizations">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-				<reference key="dict.sortedKeys" ref="0"/>
-				<object class="NSMutableArray" key="dict.values">
-					<bool key="EncodedWithXMLCoder">YES</bool>
-				</object>
-			</object>
-			<nil key="sourceID"/>
-			<int key="maxID">77</int>
-		</object>
-		<object class="IBClassDescriber" key="IBDocument.Classes">
-			<object class="NSMutableArray" key="referencedPartialClassDescriptions">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-				<object class="IBPartialClassDescription">
-					<string key="className">BrowserWindowController</string>
-					<string key="superclassName">NSWindowController</string>
-					<object class="NSMutableDictionary" key="actions">
-						<bool key="EncodedWithXMLCoder">YES</bool>
-						<object class="NSArray" key="dict.sortedKeys">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<string>dumpSourceToConsole:</string>
-							<string>fetch:</string>
-							<string>find:</string>
-							<string>forceRepaint:</string>
-							<string>goBack:</string>
-							<string>goForward:</string>
-							<string>reload:</string>
-							<string>removeReinsertWebView:</string>
-							<string>resetZoom:</string>
-							<string>showHideWebView:</string>
-							<string>toggleZoomMode:</string>
-							<string>zoomIn:</string>
-							<string>zoomOut:</string>
-						</object>
-						<object class="NSMutableArray" key="dict.values">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<string>id</string>
-							<string>id</string>
-							<string>id</string>
-							<string>id</string>
-							<string>id</string>
-							<string>id</string>
-							<string>id</string>
-							<string>id</string>
-							<string>id</string>
-							<string>id</string>
-							<string>id</string>
-							<string>id</string>
-							<string>id</string>
-						</object>
-					</object>
-					<object class="NSMutableDictionary" key="actionInfosByName">
-						<bool key="EncodedWithXMLCoder">YES</bool>
-						<object class="NSArray" key="dict.sortedKeys">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<string>dumpSourceToConsole:</string>
-							<string>fetch:</string>
-							<string>find:</string>
-							<string>forceRepaint:</string>
-							<string>goBack:</string>
-							<string>goForward:</string>
-							<string>reload:</string>
-							<string>removeReinsertWebView:</string>
-							<string>resetZoom:</string>
-							<string>showHideWebView:</string>
-							<string>toggleZoomMode:</string>
-							<string>zoomIn:</string>
-							<string>zoomOut:</string>
-						</object>
-						<object class="NSMutableArray" key="dict.values">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<object class="IBActionInfo">
-								<string key="name">dumpSourceToConsole:</string>
-								<string key="candidateClassName">id</string>
-							</object>
-							<object class="IBActionInfo">
-								<string key="name">fetch:</string>
-								<string key="candidateClassName">id</string>
-							</object>
-							<object class="IBActionInfo">
-								<string key="name">find:</string>
-								<string key="candidateClassName">id</string>
-							</object>
-							<object class="IBActionInfo">
-								<string key="name">forceRepaint:</string>
-								<string key="candidateClassName">id</string>
-							</object>
-							<object class="IBActionInfo">
-								<string key="name">goBack:</string>
-								<string key="candidateClassName">id</string>
-							</object>
-							<object class="IBActionInfo">
-								<string key="name">goForward:</string>
-								<string key="candidateClassName">id</string>
-							</object>
-							<object class="IBActionInfo">
-								<string key="name">reload:</string>
-								<string key="candidateClassName">id</string>
-							</object>
-							<object class="IBActionInfo">
-								<string key="name">removeReinsertWebView:</string>
-								<string key="candidateClassName">id</string>
-							</object>
-							<object class="IBActionInfo">
-								<string key="name">resetZoom:</string>
-								<string key="candidateClassName">id</string>
-							</object>
-							<object class="IBActionInfo">
-								<string key="name">showHideWebView:</string>
-								<string key="candidateClassName">id</string>
-							</object>
-							<object class="IBActionInfo">
-								<string key="name">toggleZoomMode:</string>
-								<string key="candidateClassName">id</string>
-							</object>
-							<object class="IBActionInfo">
-								<string key="name">zoomIn:</string>
-								<string key="candidateClassName">id</string>
-							</object>
-							<object class="IBActionInfo">
-								<string key="name">zoomOut:</string>
-								<string key="candidateClassName">id</string>
-							</object>
-						</object>
-					</object>
-					<object class="NSMutableDictionary" key="outlets">
-						<bool key="EncodedWithXMLCoder">YES</bool>
-						<object class="NSArray" key="dict.sortedKeys">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<string>backButton</string>
-							<string>containerView</string>
-							<string>findPanelWindow</string>
-							<string>forwardButton</string>
-							<string>progressIndicator</string>
-							<string>reloadButton</string>
-							<string>toolbar</string>
-							<string>urlText</string>
-						</object>
-						<object class="NSMutableArray" key="dict.values">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<string>NSButton</string>
-							<string>NSView</string>
-							<string>NSWindow</string>
-							<string>NSButton</string>
-							<string>NSProgressIndicator</string>
-							<string>NSButton</string>
-							<string>NSToolbar</string>
-							<string>NSTextField</string>
-						</object>
-					</object>
-					<object class="NSMutableDictionary" key="toOneOutletInfosByName">
-						<bool key="EncodedWithXMLCoder">YES</bool>
-						<object class="NSArray" key="dict.sortedKeys">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<string>backButton</string>
-							<string>containerView</string>
-							<string>findPanelWindow</string>
-							<string>forwardButton</string>
-							<string>progressIndicator</string>
-							<string>reloadButton</string>
-							<string>toolbar</string>
-							<string>urlText</string>
-						</object>
-						<object class="NSMutableArray" key="dict.values">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<object class="IBToOneOutletInfo">
-								<string key="name">backButton</string>
-								<string key="candidateClassName">NSButton</string>
-							</object>
-							<object class="IBToOneOutletInfo">
-								<string key="name">containerView</string>
-								<string key="candidateClassName">NSView</string>
-							</object>
-							<object class="IBToOneOutletInfo">
-								<string key="name">findPanelWindow</string>
-								<string key="candidateClassName">NSWindow</string>
-							</object>
-							<object class="IBToOneOutletInfo">
-								<string key="name">forwardButton</string>
-								<string key="candidateClassName">NSButton</string>
-							</object>
-							<object class="IBToOneOutletInfo">
-								<string key="name">progressIndicator</string>
-								<string key="candidateClassName">NSProgressIndicator</string>
-							</object>
-							<object class="IBToOneOutletInfo">
-								<string key="name">reloadButton</string>
-								<string key="candidateClassName">NSButton</string>
-							</object>
-							<object class="IBToOneOutletInfo">
-								<string key="name">toolbar</string>
-								<string key="candidateClassName">NSToolbar</string>
-							</object>
-							<object class="IBToOneOutletInfo">
-								<string key="name">urlText</string>
-								<string key="candidateClassName">NSTextField</string>
-							</object>
-						</object>
-					</object>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBProjectSource</string>
-						<string key="minorKey">mac/BrowserWindowController.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">BrowserWindowController</string>
-					<string key="superclassName">NSWindowController</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBUserSource</string>
-						<string key="minorKey"/>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">MBToolbarItem</string>
-					<string key="superclassName">NSToolbarItem</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBProjectSource</string>
-						<string key="minorKey">MBToolbarItem.h</string>
-					</object>
-				</object>
-			</object>
-			<object class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSActionCell</string>
-					<string key="superclassName">NSCell</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSActionCell.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSApplication</string>
-					<string key="superclassName">NSResponder</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier" id="558771426">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSApplication.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSApplication</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier" id="344596456">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSApplicationScripting.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSApplication</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier" id="428409299">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSColorPanel.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSApplication</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSHelpManager.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSApplication</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSPageLayout.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSApplication</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSUserInterfaceItemSearching.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSButton</string>
-					<string key="superclassName">NSControl</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSButton.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSButtonCell</string>
-					<string key="superclassName">NSActionCell</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSButtonCell.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSCell</string>
-					<string key="superclassName">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSCell.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSControl</string>
-					<string key="superclassName">NSView</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier" id="297186634">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSControl.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSFormatter</string>
-					<string key="superclassName">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">Foundation.framework/Headers/NSFormatter.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSMenu</string>
-					<string key="superclassName">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier" id="808053469">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSMenu.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSAccessibility.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<reference key="sourceIdentifier" ref="558771426"/>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<reference key="sourceIdentifier" ref="344596456"/>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<reference key="sourceIdentifier" ref="428409299"/>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<reference key="sourceIdentifier" ref="297186634"/>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSDictionaryController.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSDragging.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSFontManager.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSFontPanel.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSKeyValueBinding.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<reference key="sourceIdentifier" ref="808053469"/>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSNibLoading.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSOutlineView.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSPasteboard.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSSavePanel.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSTableView.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier" id="335804019">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSToolbarItem.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier" id="555757547">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSView.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">Foundation.framework/Headers/NSArchiver.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">Foundation.framework/Headers/NSClassDescription.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">Foundation.framework/Headers/NSError.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">Foundation.framework/Headers/NSFileManager.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">Foundation.framework/Headers/NSKeyValueCoding.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">Foundation.framework/Headers/NSKeyValueObserving.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">Foundation.framework/Headers/NSKeyedArchiver.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">Foundation.framework/Headers/NSObject.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">Foundation.framework/Headers/NSObjectScripting.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">Foundation.framework/Headers/NSPortCoder.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">Foundation.framework/Headers/NSRunLoop.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">Foundation.framework/Headers/NSScriptClassDescription.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">Foundation.framework/Headers/NSScriptKeyValueCoding.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">Foundation.framework/Headers/NSScriptObjectSpecifiers.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">Foundation.framework/Headers/NSScriptWhoseTests.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">Foundation.framework/Headers/NSThread.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">Foundation.framework/Headers/NSURL.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">Foundation.framework/Headers/NSURLConnection.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">Foundation.framework/Headers/NSURLDownload.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSPanel</string>
-					<string key="superclassName">NSWindow</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSPanel.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSProgressIndicator</string>
-					<string key="superclassName">NSView</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSProgressIndicator.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSResponder</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSInterfaceStyle.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSResponder</string>
-					<string key="superclassName">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSResponder.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSSearchField</string>
-					<string key="superclassName">NSTextField</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSSearchField.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSSearchFieldCell</string>
-					<string key="superclassName">NSTextFieldCell</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSSearchFieldCell.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSTextField</string>
-					<string key="superclassName">NSControl</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSTextField.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSTextFieldCell</string>
-					<string key="superclassName">NSActionCell</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSTextFieldCell.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSToolbar</string>
-					<string key="superclassName">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSToolbar.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSToolbarItem</string>
-					<string key="superclassName">NSObject</string>
-					<reference key="sourceIdentifier" ref="335804019"/>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSView</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSClipView.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSView</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSMenuItem.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSView</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSRulerView.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSView</string>
-					<string key="superclassName">NSResponder</string>
-					<reference key="sourceIdentifier" ref="555757547"/>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSWindow</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSDrawer.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSWindow</string>
-					<string key="superclassName">NSResponder</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSWindow.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSWindow</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSWindowScripting.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSWindowController</string>
-					<string key="superclassName">NSResponder</string>
-					<object class="NSMutableDictionary" key="actions">
-						<string key="NS.key.0">showWindow:</string>
-						<string key="NS.object.0">id</string>
-					</object>
-					<object class="NSMutableDictionary" key="actionInfosByName">
-						<string key="NS.key.0">showWindow:</string>
-						<object class="IBActionInfo" key="NS.object.0">
-							<string key="name">showWindow:</string>
-							<string key="candidateClassName">id</string>
-						</object>
-					</object>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBFrameworkSource</string>
-						<string key="minorKey">AppKit.framework/Headers/NSWindowController.h</string>
-					</object>
-				</object>
-			</object>
-		</object>
-		<int key="IBDocument.localizationMode">0</int>
-		<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string>
-		<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
-			<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string>
-			<integer value="3000" key="NS.object.0"/>
-		</object>
-		<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
-		<string key="IBDocument.LastKnownRelativeProjectPath">../MiniBrowser.xcodeproj</string>
-		<int key="IBDocument.defaultPropertyAccessControl">3</int>
-		<object class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
-			<bool key="EncodedWithXMLCoder">YES</bool>
-			<object class="NSArray" key="dict.sortedKeys">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-				<string>NSGoLeftTemplate</string>
-				<string>NSGoRightTemplate</string>
-				<string>NSRefreshTemplate</string>
-			</object>
-			<object class="NSMutableArray" key="dict.values">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-				<string>{9, 9}</string>
-				<string>{9, 9}</string>
-				<string>{10, 12}</string>
-			</object>
-		</object>
-	</data>
-</archive>
diff --git a/Tools/MiniBrowser/mac/BrowserWindowController.h b/Tools/MiniBrowser/mac/BrowserWindowController.h
deleted file mode 100644
index 7ee8919..0000000
--- a/Tools/MiniBrowser/mac/BrowserWindowController.h
+++ /dev/null
@@ -1,77 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import <Cocoa/Cocoa.h>
-
-@protocol BrowserController
-
-- (IBAction)fetch:(id)sender;
-- (IBAction)reload:(id)sender;
-- (IBAction)forceRepaint:(id)sender;
-- (IBAction)goBack:(id)sender;
-- (IBAction)goForward:(id)sender;
-
-- (IBAction)showHideWebView:(id)sender;
-- (IBAction)removeReinsertWebView:(id)sender;
-
-- (IBAction)zoomIn:(id)sender;
-- (IBAction)zoomOut:(id)sender;
-- (IBAction)resetZoom:(id)sender;
-- (BOOL)canZoomIn;
-- (BOOL)canZoomOut;
-- (BOOL)canResetZoom;
-
-- (IBAction)toggleZoomMode:(id)sender;
-- (IBAction)togglePaginationMode:(id)sender;
-
-- (IBAction)dumpSourceToConsole:(id)sender;
-
-- (IBAction)find:(id)sender;
-
-@end
-
-@interface BrowserWindowController : NSWindowController {
-    IBOutlet NSProgressIndicator *progressIndicator;
-    IBOutlet NSButton *reloadButton;
-    IBOutlet NSButton *backButton;
-    IBOutlet NSButton *forwardButton;
-    IBOutlet NSToolbar *toolbar;
-    IBOutlet NSTextField *urlText;
-    IBOutlet NSView *containerView;
-    
-    IBOutlet NSWindow *findPanelWindow;
-    
-    BOOL _zoomTextOnly;
-}
-
-- (void)loadURLString:(NSString *)urlString;
-- (NSString *)addProtocolIfNecessary:(NSString *)address;
-
-- (void)applicationTerminating;
-
-- (IBAction)openLocation:(id)sender;
-
-@end
-
diff --git a/Tools/MiniBrowser/mac/BrowserWindowController.m b/Tools/MiniBrowser/mac/BrowserWindowController.m
deleted file mode 100644
index ba38d25..0000000
--- a/Tools/MiniBrowser/mac/BrowserWindowController.m
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "BrowserWindowController.h"
-
-@interface BrowserWindowController ()
-
-@end
-
-@implementation BrowserWindowController
-
-- (id)initWithWindow:(NSWindow *)window
-{
-    self = [super initWithWindow:window];
-    if (self) {
-    }
-    
-    return self;
-}
-
-- (void)windowDidLoad
-{
-    [super windowDidLoad];
-}
-
-- (IBAction)openLocation:(id)sender
-{
-    [[self window] makeFirstResponder:urlText];
-}
-
-- (void)loadURLString:(NSString *)urlString
-{
-}
-
-- (void)applicationTerminating
-{
-}
-
-- (NSString *)addProtocolIfNecessary:(NSString *)address
-{
-    if ([address rangeOfString:@"://"].length > 0)
-        return address;
-
-    return [@"http://" stringByAppendingString:address];
-}
-
-@end
diff --git a/Tools/MiniBrowser/mac/Info.plist b/Tools/MiniBrowser/mac/Info.plist
deleted file mode 100644
index 7564a7e..0000000
--- a/Tools/MiniBrowser/mac/Info.plist
+++ /dev/null
@@ -1,32 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
-	<key>CFBundleDevelopmentRegion</key>
-	<string>English</string>
-	<key>CFBundleExecutable</key>
-	<string>${EXECUTABLE_NAME}</string>
-	<key>CFBundleIconFile</key>
-	<string>MiniBrowser</string>
-	<key>CFBundleIdentifier</key>
-	<string>com.yourcompany.${PRODUCT_NAME:rfc1034identifier}</string>
-	<key>CFBundleInfoDictionaryVersion</key>
-	<string>6.0</string>
-	<key>CFBundleName</key>
-	<string>${PRODUCT_NAME}</string>
-	<key>CFBundlePackageType</key>
-	<string>APPL</string>
-	<key>CFBundleSignature</key>
-	<string>????</string>
-	<key>CFBundleShortVersionString</key>
-	<string>1.0</string>
-	<key>LSMinimumSystemVersion</key>
-	<string>${MACOSX_DEPLOYMENT_TARGET}</string>
-	<key>CFBundleVersion</key>
-	<string>1</string>
-	<key>NSMainNibFile</key>
-	<string>MainMenu</string>
-	<key>NSPrincipalClass</key>
-	<string>NSApplication</string>
-</dict>
-</plist>
diff --git a/Tools/MiniBrowser/mac/MainMenu.xib b/Tools/MiniBrowser/mac/MainMenu.xib
deleted file mode 100644
index b713a00..0000000
--- a/Tools/MiniBrowser/mac/MainMenu.xib
+++ /dev/null
@@ -1,2699 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10">
-	<data>
-		<int key="IBDocument.SystemTarget">1080</int>
-		<string key="IBDocument.SystemVersion">12C52</string>
-		<string key="IBDocument.InterfaceBuilderVersion">4109</string>
-		<string key="IBDocument.AppKitVersion">1187.34</string>
-		<string key="IBDocument.HIToolboxVersion">625.00</string>
-		<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
-			<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
-			<string key="NS.object.0">4109</string>
-		</object>
-		<object class="NSArray" key="IBDocument.IntegratedClassDependencies">
-			<bool key="EncodedWithXMLCoder">YES</bool>
-			<string>NSCustomObject</string>
-			<string>NSMenu</string>
-			<string>NSMenuItem</string>
-		</object>
-		<object class="NSArray" key="IBDocument.PluginDependencies">
-			<bool key="EncodedWithXMLCoder">YES</bool>
-			<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-		</object>
-		<object class="NSMutableDictionary" key="IBDocument.Metadata">
-			<string key="NS.key.0">PluginDependencyRecalculationVersion</string>
-			<integer value="1" key="NS.object.0"/>
-		</object>
-		<object class="NSMutableArray" key="IBDocument.RootObjects" id="1048">
-			<bool key="EncodedWithXMLCoder">YES</bool>
-			<object class="NSCustomObject" id="1021">
-				<string key="NSClassName">NSApplication</string>
-			</object>
-			<object class="NSCustomObject" id="1014">
-				<string key="NSClassName">FirstResponder</string>
-			</object>
-			<object class="NSCustomObject" id="1050">
-				<string key="NSClassName">NSApplication</string>
-			</object>
-			<object class="NSMenu" id="649796088">
-				<string key="NSTitle">AMainMenu</string>
-				<object class="NSMutableArray" key="NSMenuItems">
-					<bool key="EncodedWithXMLCoder">YES</bool>
-					<object class="NSMenuItem" id="694149608">
-						<reference key="NSMenu" ref="649796088"/>
-						<string key="NSTitle">MiniBrowser</string>
-						<string key="NSKeyEquiv"/>
-						<int key="NSKeyEquivModMask">1048576</int>
-						<int key="NSMnemonicLoc">2147483647</int>
-						<object class="NSCustomResource" key="NSOnImage" id="35465992">
-							<string key="NSClassName">NSImage</string>
-							<string key="NSResourceName">NSMenuCheckmark</string>
-						</object>
-						<object class="NSCustomResource" key="NSMixedImage" id="502551668">
-							<string key="NSClassName">NSImage</string>
-							<string key="NSResourceName">NSMenuMixedState</string>
-						</object>
-						<string key="NSAction">submenuAction:</string>
-						<object class="NSMenu" key="NSSubmenu" id="110575045">
-							<string key="NSTitle">MiniBrowser</string>
-							<object class="NSMutableArray" key="NSMenuItems">
-								<bool key="EncodedWithXMLCoder">YES</bool>
-								<object class="NSMenuItem" id="238522557">
-									<reference key="NSMenu" ref="110575045"/>
-									<string key="NSTitle">About MiniBrowser</string>
-									<string key="NSKeyEquiv"/>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="304266470">
-									<reference key="NSMenu" ref="110575045"/>
-									<bool key="NSIsDisabled">YES</bool>
-									<bool key="NSIsSeparator">YES</bool>
-									<string key="NSTitle"/>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="609285721">
-									<reference key="NSMenu" ref="110575045"/>
-									<string key="NSTitle">Preferences…</string>
-									<string key="NSKeyEquiv">,</string>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="481834944">
-									<reference key="NSMenu" ref="110575045"/>
-									<bool key="NSIsDisabled">YES</bool>
-									<bool key="NSIsSeparator">YES</bool>
-									<string key="NSTitle"/>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="1046388886">
-									<reference key="NSMenu" ref="110575045"/>
-									<string key="NSTitle">Services</string>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-									<string key="NSAction">submenuAction:</string>
-									<object class="NSMenu" key="NSSubmenu" id="752062318">
-										<string key="NSTitle">Services</string>
-										<object class="NSMutableArray" key="NSMenuItems">
-											<bool key="EncodedWithXMLCoder">YES</bool>
-										</object>
-										<string key="NSName">_NSServicesMenu</string>
-									</object>
-								</object>
-								<object class="NSMenuItem" id="646227648">
-									<reference key="NSMenu" ref="110575045"/>
-									<bool key="NSIsDisabled">YES</bool>
-									<bool key="NSIsSeparator">YES</bool>
-									<string key="NSTitle"/>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="755159360">
-									<reference key="NSMenu" ref="110575045"/>
-									<string key="NSTitle">Hide MiniBrowser</string>
-									<string key="NSKeyEquiv">h</string>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="342932134">
-									<reference key="NSMenu" ref="110575045"/>
-									<string key="NSTitle">Hide Others</string>
-									<string key="NSKeyEquiv">h</string>
-									<int key="NSKeyEquivModMask">1572864</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="908899353">
-									<reference key="NSMenu" ref="110575045"/>
-									<string key="NSTitle">Show All</string>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="1056857174">
-									<reference key="NSMenu" ref="110575045"/>
-									<bool key="NSIsDisabled">YES</bool>
-									<bool key="NSIsSeparator">YES</bool>
-									<string key="NSTitle"/>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="632727374">
-									<reference key="NSMenu" ref="110575045"/>
-									<string key="NSTitle">Quit MiniBrowser</string>
-									<string key="NSKeyEquiv">q</string>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-							</object>
-							<string key="NSName">_NSAppleMenu</string>
-						</object>
-					</object>
-					<object class="NSMenuItem" id="379814623">
-						<reference key="NSMenu" ref="649796088"/>
-						<string key="NSTitle">File</string>
-						<string key="NSKeyEquiv"/>
-						<int key="NSKeyEquivModMask">1048576</int>
-						<int key="NSMnemonicLoc">2147483647</int>
-						<reference key="NSOnImage" ref="35465992"/>
-						<reference key="NSMixedImage" ref="502551668"/>
-						<string key="NSAction">submenuAction:</string>
-						<object class="NSMenu" key="NSSubmenu" id="720053764">
-							<string key="NSTitle">File</string>
-							<object class="NSMutableArray" key="NSMenuItems">
-								<bool key="EncodedWithXMLCoder">YES</bool>
-								<object class="NSMenuItem" id="705341025">
-									<reference key="NSMenu" ref="720053764"/>
-									<string key="NSTitle">Open Location </string>
-									<string key="NSKeyEquiv">l</string>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-									<int key="NSTag">1</int>
-								</object>
-								<object class="NSMenuItem" id="552626760">
-									<reference key="NSMenu" ref="720053764"/>
-									<string key="NSTitle">New WebKit1 Window</string>
-									<string key="NSKeyEquiv">n</string>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-									<int key="NSTag">1</int>
-								</object>
-								<object class="NSMenuItem" id="632566413">
-									<reference key="NSMenu" ref="720053764"/>
-									<bool key="NSIsAlternate">YES</bool>
-									<string key="NSTitle">New WebKit2 Window</string>
-									<string key="NSKeyEquiv">n</string>
-									<int key="NSKeyEquivModMask">1572864</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-									<int key="NSTag">2</int>
-								</object>
-								<object class="NSMenuItem" id="722745758">
-									<reference key="NSMenu" ref="720053764"/>
-									<string key="NSTitle">Open…</string>
-									<string key="NSKeyEquiv">o</string>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="1025936716">
-									<reference key="NSMenu" ref="720053764"/>
-									<string key="NSTitle">Open Recent</string>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-									<string key="NSAction">submenuAction:</string>
-									<object class="NSMenu" key="NSSubmenu" id="1065607017">
-										<string key="NSTitle">Open Recent</string>
-										<object class="NSMutableArray" key="NSMenuItems">
-											<bool key="EncodedWithXMLCoder">YES</bool>
-											<object class="NSMenuItem" id="759406840">
-												<reference key="NSMenu" ref="1065607017"/>
-												<string key="NSTitle">Clear Menu</string>
-												<string key="NSKeyEquiv"/>
-												<int key="NSKeyEquivModMask">1048576</int>
-												<int key="NSMnemonicLoc">2147483647</int>
-												<reference key="NSOnImage" ref="35465992"/>
-												<reference key="NSMixedImage" ref="502551668"/>
-											</object>
-										</object>
-										<string key="NSName">_NSRecentDocumentsMenu</string>
-									</object>
-								</object>
-								<object class="NSMenuItem" id="425164168">
-									<reference key="NSMenu" ref="720053764"/>
-									<bool key="NSIsDisabled">YES</bool>
-									<bool key="NSIsSeparator">YES</bool>
-									<string key="NSTitle"/>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="776162233">
-									<reference key="NSMenu" ref="720053764"/>
-									<string key="NSTitle">Close</string>
-									<string key="NSKeyEquiv">w</string>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="1023925487">
-									<reference key="NSMenu" ref="720053764"/>
-									<string key="NSTitle">Save</string>
-									<string key="NSKeyEquiv">s</string>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="117038363">
-									<reference key="NSMenu" ref="720053764"/>
-									<string key="NSTitle">Save As…</string>
-									<string key="NSKeyEquiv">S</string>
-									<int key="NSKeyEquivModMask">1179648</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="579971712">
-									<reference key="NSMenu" ref="720053764"/>
-									<string key="NSTitle">Revert to Saved</string>
-									<string key="NSKeyEquiv"/>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="1010469920">
-									<reference key="NSMenu" ref="720053764"/>
-									<bool key="NSIsDisabled">YES</bool>
-									<bool key="NSIsSeparator">YES</bool>
-									<string key="NSTitle"/>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="294629803">
-									<reference key="NSMenu" ref="720053764"/>
-									<string key="NSTitle">Page Setup...</string>
-									<string key="NSKeyEquiv">P</string>
-									<int key="NSKeyEquivModMask">1179648</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-									<string key="NSToolTip"/>
-								</object>
-								<object class="NSMenuItem" id="49223823">
-									<reference key="NSMenu" ref="720053764"/>
-									<string key="NSTitle">Print…</string>
-									<string key="NSKeyEquiv">p</string>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-							</object>
-						</object>
-					</object>
-					<object class="NSMenuItem" id="952259628">
-						<reference key="NSMenu" ref="649796088"/>
-						<string key="NSTitle">Edit</string>
-						<string key="NSKeyEquiv"/>
-						<int key="NSKeyEquivModMask">1048576</int>
-						<int key="NSMnemonicLoc">2147483647</int>
-						<reference key="NSOnImage" ref="35465992"/>
-						<reference key="NSMixedImage" ref="502551668"/>
-						<string key="NSAction">submenuAction:</string>
-						<object class="NSMenu" key="NSSubmenu" id="789758025">
-							<string key="NSTitle">Edit</string>
-							<object class="NSMutableArray" key="NSMenuItems">
-								<bool key="EncodedWithXMLCoder">YES</bool>
-								<object class="NSMenuItem" id="1058277027">
-									<reference key="NSMenu" ref="789758025"/>
-									<string key="NSTitle">Undo</string>
-									<string key="NSKeyEquiv">z</string>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="790794224">
-									<reference key="NSMenu" ref="789758025"/>
-									<string key="NSTitle">Redo</string>
-									<string key="NSKeyEquiv">Z</string>
-									<int key="NSKeyEquivModMask">1179648</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="1040322652">
-									<reference key="NSMenu" ref="789758025"/>
-									<bool key="NSIsDisabled">YES</bool>
-									<bool key="NSIsSeparator">YES</bool>
-									<string key="NSTitle"/>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="296257095">
-									<reference key="NSMenu" ref="789758025"/>
-									<string key="NSTitle">Cut</string>
-									<string key="NSKeyEquiv">x</string>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="860595796">
-									<reference key="NSMenu" ref="789758025"/>
-									<string key="NSTitle">Copy</string>
-									<string key="NSKeyEquiv">c</string>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="29853731">
-									<reference key="NSMenu" ref="789758025"/>
-									<string key="NSTitle">Paste</string>
-									<string key="NSKeyEquiv">v</string>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="82994268">
-									<reference key="NSMenu" ref="789758025"/>
-									<string key="NSTitle">Paste and Match Style</string>
-									<string key="NSKeyEquiv">V</string>
-									<int key="NSKeyEquivModMask">1572864</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="437104165">
-									<reference key="NSMenu" ref="789758025"/>
-									<string key="NSTitle">Delete</string>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="583158037">
-									<reference key="NSMenu" ref="789758025"/>
-									<string key="NSTitle">Select All</string>
-									<string key="NSKeyEquiv">a</string>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="212016141">
-									<reference key="NSMenu" ref="789758025"/>
-									<bool key="NSIsDisabled">YES</bool>
-									<bool key="NSIsSeparator">YES</bool>
-									<string key="NSTitle"/>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="892235320">
-									<reference key="NSMenu" ref="789758025"/>
-									<string key="NSTitle">Find</string>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-									<string key="NSAction">submenuAction:</string>
-									<object class="NSMenu" key="NSSubmenu" id="963351320">
-										<string key="NSTitle">Find</string>
-										<object class="NSMutableArray" key="NSMenuItems">
-											<bool key="EncodedWithXMLCoder">YES</bool>
-											<object class="NSMenuItem" id="447796847">
-												<reference key="NSMenu" ref="963351320"/>
-												<string key="NSTitle">Find…</string>
-												<string key="NSKeyEquiv">f</string>
-												<int key="NSKeyEquivModMask">1048576</int>
-												<int key="NSMnemonicLoc">2147483647</int>
-												<reference key="NSOnImage" ref="35465992"/>
-												<reference key="NSMixedImage" ref="502551668"/>
-												<int key="NSTag">1</int>
-											</object>
-											<object class="NSMenuItem" id="326711663">
-												<reference key="NSMenu" ref="963351320"/>
-												<string key="NSTitle">Find Next</string>
-												<string key="NSKeyEquiv">g</string>
-												<int key="NSKeyEquivModMask">1048576</int>
-												<int key="NSMnemonicLoc">2147483647</int>
-												<reference key="NSOnImage" ref="35465992"/>
-												<reference key="NSMixedImage" ref="502551668"/>
-												<int key="NSTag">2</int>
-											</object>
-											<object class="NSMenuItem" id="270902937">
-												<reference key="NSMenu" ref="963351320"/>
-												<string key="NSTitle">Find Previous</string>
-												<string key="NSKeyEquiv">G</string>
-												<int key="NSKeyEquivModMask">1179648</int>
-												<int key="NSMnemonicLoc">2147483647</int>
-												<reference key="NSOnImage" ref="35465992"/>
-												<reference key="NSMixedImage" ref="502551668"/>
-												<int key="NSTag">3</int>
-											</object>
-											<object class="NSMenuItem" id="159080638">
-												<reference key="NSMenu" ref="963351320"/>
-												<string key="NSTitle">Use Selection for Find</string>
-												<string key="NSKeyEquiv">e</string>
-												<int key="NSKeyEquivModMask">1048576</int>
-												<int key="NSMnemonicLoc">2147483647</int>
-												<reference key="NSOnImage" ref="35465992"/>
-												<reference key="NSMixedImage" ref="502551668"/>
-												<int key="NSTag">7</int>
-											</object>
-											<object class="NSMenuItem" id="88285865">
-												<reference key="NSMenu" ref="963351320"/>
-												<string key="NSTitle">Jump to Selection</string>
-												<string key="NSKeyEquiv">j</string>
-												<int key="NSKeyEquivModMask">1048576</int>
-												<int key="NSMnemonicLoc">2147483647</int>
-												<reference key="NSOnImage" ref="35465992"/>
-												<reference key="NSMixedImage" ref="502551668"/>
-											</object>
-										</object>
-									</object>
-								</object>
-								<object class="NSMenuItem" id="972420730">
-									<reference key="NSMenu" ref="789758025"/>
-									<string key="NSTitle">Spelling and Grammar</string>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-									<string key="NSAction">submenuAction:</string>
-									<object class="NSMenu" key="NSSubmenu" id="769623530">
-										<string key="NSTitle">Spelling and Grammar</string>
-										<object class="NSMutableArray" key="NSMenuItems">
-											<bool key="EncodedWithXMLCoder">YES</bool>
-											<object class="NSMenuItem" id="679648819">
-												<reference key="NSMenu" ref="769623530"/>
-												<string key="NSTitle">Show Spelling and Grammar</string>
-												<string key="NSKeyEquiv">:</string>
-												<int key="NSKeyEquivModMask">1048576</int>
-												<int key="NSMnemonicLoc">2147483647</int>
-												<reference key="NSOnImage" ref="35465992"/>
-												<reference key="NSMixedImage" ref="502551668"/>
-											</object>
-											<object class="NSMenuItem" id="96193923">
-												<reference key="NSMenu" ref="769623530"/>
-												<string key="NSTitle">Check Document Now</string>
-												<string key="NSKeyEquiv">;</string>
-												<int key="NSKeyEquivModMask">1048576</int>
-												<int key="NSMnemonicLoc">2147483647</int>
-												<reference key="NSOnImage" ref="35465992"/>
-												<reference key="NSMixedImage" ref="502551668"/>
-											</object>
-											<object class="NSMenuItem" id="859480356">
-												<reference key="NSMenu" ref="769623530"/>
-												<bool key="NSIsDisabled">YES</bool>
-												<bool key="NSIsSeparator">YES</bool>
-												<string key="NSTitle"/>
-												<string key="NSKeyEquiv"/>
-												<int key="NSMnemonicLoc">2147483647</int>
-												<reference key="NSOnImage" ref="35465992"/>
-												<reference key="NSMixedImage" ref="502551668"/>
-											</object>
-											<object class="NSMenuItem" id="948374510">
-												<reference key="NSMenu" ref="769623530"/>
-												<string key="NSTitle">Check Spelling While Typing</string>
-												<string key="NSKeyEquiv"/>
-												<int key="NSKeyEquivModMask">1048576</int>
-												<int key="NSMnemonicLoc">2147483647</int>
-												<reference key="NSOnImage" ref="35465992"/>
-												<reference key="NSMixedImage" ref="502551668"/>
-											</object>
-											<object class="NSMenuItem" id="967646866">
-												<reference key="NSMenu" ref="769623530"/>
-												<string key="NSTitle">Check Grammar With Spelling</string>
-												<string key="NSKeyEquiv"/>
-												<int key="NSKeyEquivModMask">1048576</int>
-												<int key="NSMnemonicLoc">2147483647</int>
-												<reference key="NSOnImage" ref="35465992"/>
-												<reference key="NSMixedImage" ref="502551668"/>
-											</object>
-											<object class="NSMenuItem" id="795346622">
-												<reference key="NSMenu" ref="769623530"/>
-												<string key="NSTitle">Correct Spelling Automatically</string>
-												<string key="NSKeyEquiv"/>
-												<int key="NSMnemonicLoc">2147483647</int>
-												<reference key="NSOnImage" ref="35465992"/>
-												<reference key="NSMixedImage" ref="502551668"/>
-											</object>
-										</object>
-									</object>
-								</object>
-								<object class="NSMenuItem" id="507821607">
-									<reference key="NSMenu" ref="789758025"/>
-									<string key="NSTitle">Substitutions</string>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-									<string key="NSAction">submenuAction:</string>
-									<object class="NSMenu" key="NSSubmenu" id="698887838">
-										<string key="NSTitle">Substitutions</string>
-										<object class="NSMutableArray" key="NSMenuItems">
-											<bool key="EncodedWithXMLCoder">YES</bool>
-											<object class="NSMenuItem" id="65139061">
-												<reference key="NSMenu" ref="698887838"/>
-												<string key="NSTitle">Show Substitutions</string>
-												<string key="NSKeyEquiv"/>
-												<int key="NSMnemonicLoc">2147483647</int>
-												<reference key="NSOnImage" ref="35465992"/>
-												<reference key="NSMixedImage" ref="502551668"/>
-											</object>
-											<object class="NSMenuItem" id="19036812">
-												<reference key="NSMenu" ref="698887838"/>
-												<bool key="NSIsDisabled">YES</bool>
-												<bool key="NSIsSeparator">YES</bool>
-												<string key="NSTitle"/>
-												<string key="NSKeyEquiv"/>
-												<int key="NSMnemonicLoc">2147483647</int>
-												<reference key="NSOnImage" ref="35465992"/>
-												<reference key="NSMixedImage" ref="502551668"/>
-											</object>
-											<object class="NSMenuItem" id="605118523">
-												<reference key="NSMenu" ref="698887838"/>
-												<string key="NSTitle">Smart Copy/Paste</string>
-												<string key="NSKeyEquiv">f</string>
-												<int key="NSKeyEquivModMask">1048576</int>
-												<int key="NSMnemonicLoc">2147483647</int>
-												<reference key="NSOnImage" ref="35465992"/>
-												<reference key="NSMixedImage" ref="502551668"/>
-												<int key="NSTag">1</int>
-											</object>
-											<object class="NSMenuItem" id="197661976">
-												<reference key="NSMenu" ref="698887838"/>
-												<string key="NSTitle">Smart Quotes</string>
-												<string key="NSKeyEquiv">g</string>
-												<int key="NSKeyEquivModMask">1048576</int>
-												<int key="NSMnemonicLoc">2147483647</int>
-												<reference key="NSOnImage" ref="35465992"/>
-												<reference key="NSMixedImage" ref="502551668"/>
-												<int key="NSTag">2</int>
-											</object>
-											<object class="NSMenuItem" id="672708820">
-												<reference key="NSMenu" ref="698887838"/>
-												<string key="NSTitle">Smart Dashes</string>
-												<string key="NSKeyEquiv"/>
-												<int key="NSMnemonicLoc">2147483647</int>
-												<reference key="NSOnImage" ref="35465992"/>
-												<reference key="NSMixedImage" ref="502551668"/>
-											</object>
-											<object class="NSMenuItem" id="708854459">
-												<reference key="NSMenu" ref="698887838"/>
-												<string key="NSTitle">Smart Links</string>
-												<string key="NSKeyEquiv">G</string>
-												<int key="NSKeyEquivModMask">1179648</int>
-												<int key="NSMnemonicLoc">2147483647</int>
-												<reference key="NSOnImage" ref="35465992"/>
-												<reference key="NSMixedImage" ref="502551668"/>
-												<int key="NSTag">3</int>
-											</object>
-											<object class="NSMenuItem" id="537092702">
-												<reference key="NSMenu" ref="698887838"/>
-												<string key="NSTitle">Text Replacement</string>
-												<string key="NSKeyEquiv"/>
-												<int key="NSMnemonicLoc">2147483647</int>
-												<reference key="NSOnImage" ref="35465992"/>
-												<reference key="NSMixedImage" ref="502551668"/>
-											</object>
-										</object>
-									</object>
-								</object>
-								<object class="NSMenuItem" id="288088188">
-									<reference key="NSMenu" ref="789758025"/>
-									<string key="NSTitle">Transformations</string>
-									<string key="NSKeyEquiv"/>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-									<string key="NSAction">submenuAction:</string>
-									<object class="NSMenu" key="NSSubmenu" id="579392910">
-										<string key="NSTitle">Transformations</string>
-										<object class="NSMutableArray" key="NSMenuItems">
-											<bool key="EncodedWithXMLCoder">YES</bool>
-											<object class="NSMenuItem" id="1060694897">
-												<reference key="NSMenu" ref="579392910"/>
-												<string key="NSTitle">Make Upper Case</string>
-												<string key="NSKeyEquiv"/>
-												<int key="NSMnemonicLoc">2147483647</int>
-												<reference key="NSOnImage" ref="35465992"/>
-												<reference key="NSMixedImage" ref="502551668"/>
-											</object>
-											<object class="NSMenuItem" id="879586729">
-												<reference key="NSMenu" ref="579392910"/>
-												<string key="NSTitle">Make Lower Case</string>
-												<string key="NSKeyEquiv"/>
-												<int key="NSMnemonicLoc">2147483647</int>
-												<reference key="NSOnImage" ref="35465992"/>
-												<reference key="NSMixedImage" ref="502551668"/>
-											</object>
-											<object class="NSMenuItem" id="56570060">
-												<reference key="NSMenu" ref="579392910"/>
-												<string key="NSTitle">Capitalize</string>
-												<string key="NSKeyEquiv"/>
-												<int key="NSMnemonicLoc">2147483647</int>
-												<reference key="NSOnImage" ref="35465992"/>
-												<reference key="NSMixedImage" ref="502551668"/>
-											</object>
-										</object>
-									</object>
-								</object>
-								<object class="NSMenuItem" id="676164635">
-									<reference key="NSMenu" ref="789758025"/>
-									<string key="NSTitle">Speech</string>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-									<string key="NSAction">submenuAction:</string>
-									<object class="NSMenu" key="NSSubmenu" id="785027613">
-										<string key="NSTitle">Speech</string>
-										<object class="NSMutableArray" key="NSMenuItems">
-											<bool key="EncodedWithXMLCoder">YES</bool>
-											<object class="NSMenuItem" id="731782645">
-												<reference key="NSMenu" ref="785027613"/>
-												<string key="NSTitle">Start Speaking</string>
-												<string key="NSKeyEquiv"/>
-												<int key="NSKeyEquivModMask">1048576</int>
-												<int key="NSMnemonicLoc">2147483647</int>
-												<reference key="NSOnImage" ref="35465992"/>
-												<reference key="NSMixedImage" ref="502551668"/>
-											</object>
-											<object class="NSMenuItem" id="680220178">
-												<reference key="NSMenu" ref="785027613"/>
-												<string key="NSTitle">Stop Speaking</string>
-												<string key="NSKeyEquiv"/>
-												<int key="NSKeyEquivModMask">1048576</int>
-												<int key="NSMnemonicLoc">2147483647</int>
-												<reference key="NSOnImage" ref="35465992"/>
-												<reference key="NSMixedImage" ref="502551668"/>
-											</object>
-										</object>
-									</object>
-								</object>
-							</object>
-						</object>
-					</object>
-					<object class="NSMenuItem" id="586577488">
-						<reference key="NSMenu" ref="649796088"/>
-						<string key="NSTitle">View</string>
-						<string key="NSKeyEquiv"/>
-						<int key="NSKeyEquivModMask">1048576</int>
-						<int key="NSMnemonicLoc">2147483647</int>
-						<reference key="NSOnImage" ref="35465992"/>
-						<reference key="NSMixedImage" ref="502551668"/>
-						<string key="NSAction">submenuAction:</string>
-						<object class="NSMenu" key="NSSubmenu" id="466310130">
-							<string key="NSTitle">View</string>
-							<object class="NSMutableArray" key="NSMenuItems">
-								<bool key="EncodedWithXMLCoder">YES</bool>
-								<object class="NSMenuItem" id="102151532">
-									<reference key="NSMenu" ref="466310130"/>
-									<string key="NSTitle">Show Toolbar</string>
-									<string key="NSKeyEquiv">t</string>
-									<int key="NSKeyEquivModMask">1572864</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="237841660">
-									<reference key="NSMenu" ref="466310130"/>
-									<string key="NSTitle">Customize Toolbar…</string>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="1025359947">
-									<reference key="NSMenu" ref="466310130"/>
-									<bool key="NSIsDisabled">YES</bool>
-									<bool key="NSIsSeparator">YES</bool>
-									<string key="NSTitle"/>
-									<string key="NSKeyEquiv"/>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="694544109">
-									<reference key="NSMenu" ref="466310130"/>
-									<string key="NSTitle">Zoom In</string>
-									<string key="NSKeyEquiv">+</string>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="943694335">
-									<reference key="NSMenu" ref="466310130"/>
-									<string key="NSTitle">Zoom Out</string>
-									<string key="NSKeyEquiv">-</string>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="863984465">
-									<reference key="NSMenu" ref="466310130"/>
-									<string key="NSTitle">Reset Zoom</string>
-									<string key="NSKeyEquiv">0</string>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="138443116">
-									<reference key="NSMenu" ref="466310130"/>
-									<string key="NSTitle">Zoom Text Only</string>
-									<string key="NSKeyEquiv"/>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-							</object>
-						</object>
-					</object>
-					<object class="NSMenuItem" id="713487014">
-						<reference key="NSMenu" ref="649796088"/>
-						<string key="NSTitle">Window</string>
-						<string key="NSKeyEquiv"/>
-						<int key="NSKeyEquivModMask">1048576</int>
-						<int key="NSMnemonicLoc">2147483647</int>
-						<reference key="NSOnImage" ref="35465992"/>
-						<reference key="NSMixedImage" ref="502551668"/>
-						<string key="NSAction">submenuAction:</string>
-						<object class="NSMenu" key="NSSubmenu" id="835318025">
-							<string key="NSTitle">Window</string>
-							<object class="NSMutableArray" key="NSMenuItems">
-								<bool key="EncodedWithXMLCoder">YES</bool>
-								<object class="NSMenuItem" id="1011231497">
-									<reference key="NSMenu" ref="835318025"/>
-									<string key="NSTitle">Minimize</string>
-									<string key="NSKeyEquiv">m</string>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="575023229">
-									<reference key="NSMenu" ref="835318025"/>
-									<string key="NSTitle">Zoom</string>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="299356726">
-									<reference key="NSMenu" ref="835318025"/>
-									<bool key="NSIsDisabled">YES</bool>
-									<bool key="NSIsSeparator">YES</bool>
-									<string key="NSTitle"/>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="625202149">
-									<reference key="NSMenu" ref="835318025"/>
-									<string key="NSTitle">Bring All to Front</string>
-									<string key="NSKeyEquiv"/>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-							</object>
-							<string key="NSName">_NSWindowsMenu</string>
-						</object>
-					</object>
-					<object class="NSMenuItem" id="448692316">
-						<reference key="NSMenu" ref="649796088"/>
-						<string key="NSTitle">Help</string>
-						<string key="NSKeyEquiv"/>
-						<int key="NSMnemonicLoc">2147483647</int>
-						<reference key="NSOnImage" ref="35465992"/>
-						<reference key="NSMixedImage" ref="502551668"/>
-						<string key="NSAction">submenuAction:</string>
-						<object class="NSMenu" key="NSSubmenu" id="992780483">
-							<string key="NSTitle">Help</string>
-							<object class="NSMutableArray" key="NSMenuItems">
-								<bool key="EncodedWithXMLCoder">YES</bool>
-								<object class="NSMenuItem" id="105068016">
-									<reference key="NSMenu" ref="992780483"/>
-									<string key="NSTitle">MiniBrowser Help</string>
-									<string key="NSKeyEquiv">?</string>
-									<int key="NSKeyEquivModMask">1048576</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-							</object>
-							<string key="NSName">_NSHelpMenu</string>
-						</object>
-					</object>
-					<object class="NSMenuItem" id="816668511">
-						<reference key="NSMenu" ref="649796088"/>
-						<string key="NSTitle">Debug</string>
-						<string key="NSKeyEquiv"/>
-						<int key="NSMnemonicLoc">2147483647</int>
-						<reference key="NSOnImage" ref="35465992"/>
-						<reference key="NSMixedImage" ref="502551668"/>
-						<string key="NSAction">submenuAction:</string>
-						<object class="NSMenu" key="NSSubmenu" id="865232259">
-							<string key="NSTitle">Debug</string>
-							<object class="NSMutableArray" key="NSMenuItems">
-								<bool key="EncodedWithXMLCoder">YES</bool>
-								<object class="NSMenuItem" id="878165919">
-									<reference key="NSMenu" ref="865232259"/>
-									<string key="NSTitle">Force Repaint</string>
-									<string key="NSKeyEquiv">r</string>
-									<int key="NSKeyEquivModMask">1572864</int>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="137933275">
-									<reference key="NSMenu" ref="865232259"/>
-									<string key="NSTitle">Hide Web View</string>
-									<string key="NSKeyEquiv"/>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="1027125810">
-									<reference key="NSMenu" ref="865232259"/>
-									<string key="NSTitle">Remove Web View</string>
-									<string key="NSKeyEquiv"/>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="864702084">
-									<reference key="NSMenu" ref="865232259"/>
-									<bool key="NSIsDisabled">YES</bool>
-									<bool key="NSIsSeparator">YES</bool>
-									<string key="NSTitle"/>
-									<string key="NSKeyEquiv"/>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="15772092">
-									<reference key="NSMenu" ref="865232259"/>
-									<string key="NSTitle">Paginated Mode</string>
-									<string key="NSKeyEquiv"/>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="624939128">
-									<reference key="NSMenu" ref="865232259"/>
-									<bool key="NSIsDisabled">YES</bool>
-									<bool key="NSIsSeparator">YES</bool>
-									<string key="NSTitle"/>
-									<string key="NSKeyEquiv"/>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-								<object class="NSMenuItem" id="191469404">
-									<reference key="NSMenu" ref="865232259"/>
-									<string key="NSTitle">Dump Source To Console</string>
-									<string key="NSKeyEquiv"/>
-									<int key="NSMnemonicLoc">2147483647</int>
-									<reference key="NSOnImage" ref="35465992"/>
-									<reference key="NSMixedImage" ref="502551668"/>
-								</object>
-							</object>
-						</object>
-					</object>
-				</object>
-				<string key="NSName">_NSMainMenu</string>
-			</object>
-			<object class="NSCustomObject" id="976324537">
-				<string key="NSClassName">BrowserAppDelegate</string>
-			</object>
-			<object class="NSCustomObject" id="755631768">
-				<string key="NSClassName">NSFontManager</string>
-			</object>
-		</object>
-		<object class="IBObjectContainer" key="IBDocument.Objects">
-			<object class="NSMutableArray" key="connectionRecords">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">terminate:</string>
-						<reference key="source" ref="1050"/>
-						<reference key="destination" ref="632727374"/>
-					</object>
-					<int key="connectionID">449</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">orderFrontStandardAboutPanel:</string>
-						<reference key="source" ref="1021"/>
-						<reference key="destination" ref="238522557"/>
-					</object>
-					<int key="connectionID">142</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBOutletConnection" key="connection">
-						<string key="label">delegate</string>
-						<reference key="source" ref="1021"/>
-						<reference key="destination" ref="976324537"/>
-					</object>
-					<int key="connectionID">495</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">performMiniaturize:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="1011231497"/>
-					</object>
-					<int key="connectionID">37</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">arrangeInFront:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="625202149"/>
-					</object>
-					<int key="connectionID">39</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">print:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="49223823"/>
-					</object>
-					<int key="connectionID">86</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">runPageLayout:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="294629803"/>
-					</object>
-					<int key="connectionID">87</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">clearRecentDocuments:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="759406840"/>
-					</object>
-					<int key="connectionID">127</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">performClose:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="776162233"/>
-					</object>
-					<int key="connectionID">193</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">toggleContinuousSpellChecking:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="948374510"/>
-					</object>
-					<int key="connectionID">222</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">undo:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="1058277027"/>
-					</object>
-					<int key="connectionID">223</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">copy:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="860595796"/>
-					</object>
-					<int key="connectionID">224</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">checkSpelling:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="96193923"/>
-					</object>
-					<int key="connectionID">225</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">paste:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="29853731"/>
-					</object>
-					<int key="connectionID">226</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">stopSpeaking:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="680220178"/>
-					</object>
-					<int key="connectionID">227</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">cut:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="296257095"/>
-					</object>
-					<int key="connectionID">228</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">showGuessPanel:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="679648819"/>
-					</object>
-					<int key="connectionID">230</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">redo:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="790794224"/>
-					</object>
-					<int key="connectionID">231</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">selectAll:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="583158037"/>
-					</object>
-					<int key="connectionID">232</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">startSpeaking:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="731782645"/>
-					</object>
-					<int key="connectionID">233</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">delete:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="437104165"/>
-					</object>
-					<int key="connectionID">235</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">performZoom:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="575023229"/>
-					</object>
-					<int key="connectionID">240</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">performFindPanelAction:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="447796847"/>
-					</object>
-					<int key="connectionID">241</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">centerSelectionInVisibleArea:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="88285865"/>
-					</object>
-					<int key="connectionID">245</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">toggleGrammarChecking:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="967646866"/>
-					</object>
-					<int key="connectionID">347</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">toggleSmartInsertDelete:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="605118523"/>
-					</object>
-					<int key="connectionID">355</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">toggleAutomaticQuoteSubstitution:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="197661976"/>
-					</object>
-					<int key="connectionID">356</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">toggleAutomaticLinkDetection:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="708854459"/>
-					</object>
-					<int key="connectionID">357</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">saveDocument:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="1023925487"/>
-					</object>
-					<int key="connectionID">362</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">saveDocumentAs:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="117038363"/>
-					</object>
-					<int key="connectionID">363</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">revertDocumentToSaved:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="579971712"/>
-					</object>
-					<int key="connectionID">364</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">runToolbarCustomizationPalette:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="237841660"/>
-					</object>
-					<int key="connectionID">365</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">toggleToolbarShown:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="102151532"/>
-					</object>
-					<int key="connectionID">366</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">hide:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="755159360"/>
-					</object>
-					<int key="connectionID">367</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">hideOtherApplications:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="342932134"/>
-					</object>
-					<int key="connectionID">368</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">unhideAllApplications:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="908899353"/>
-					</object>
-					<int key="connectionID">370</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">openDocument:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="722745758"/>
-					</object>
-					<int key="connectionID">374</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">toggleAutomaticSpellingCorrection:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="795346622"/>
-					</object>
-					<int key="connectionID">456</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">orderFrontSubstitutionsPanel:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="65139061"/>
-					</object>
-					<int key="connectionID">458</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">toggleAutomaticDashSubstitution:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="672708820"/>
-					</object>
-					<int key="connectionID">461</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">toggleAutomaticTextReplacement:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="537092702"/>
-					</object>
-					<int key="connectionID">463</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">uppercaseWord:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="1060694897"/>
-					</object>
-					<int key="connectionID">464</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">capitalizeWord:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="56570060"/>
-					</object>
-					<int key="connectionID">467</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">lowercaseWord:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="879586729"/>
-					</object>
-					<int key="connectionID">468</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">pasteAsPlainText:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="82994268"/>
-					</object>
-					<int key="connectionID">486</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">performFindPanelAction:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="326711663"/>
-					</object>
-					<int key="connectionID">487</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">performFindPanelAction:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="270902937"/>
-					</object>
-					<int key="connectionID">488</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">performFindPanelAction:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="159080638"/>
-					</object>
-					<int key="connectionID">489</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">showHelp:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="105068016"/>
-					</object>
-					<int key="connectionID">493</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">forceRepaint:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="878165919"/>
-					</object>
-					<int key="connectionID">547</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">showHideWebView:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="137933275"/>
-					</object>
-					<int key="connectionID">549</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">removeReinsertWebView:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="1027125810"/>
-					</object>
-					<int key="connectionID">551</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">zoomIn:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="694544109"/>
-					</object>
-					<int key="connectionID">559</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">zoomOut:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="943694335"/>
-					</object>
-					<int key="connectionID">560</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">resetZoom:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="863984465"/>
-					</object>
-					<int key="connectionID">561</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">toggleZoomMode:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="138443116"/>
-					</object>
-					<int key="connectionID">564</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">dumpSourceToConsole:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="191469404"/>
-					</object>
-					<int key="connectionID">567</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">togglePaginationMode:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="15772092"/>
-					</object>
-					<int key="connectionID">570</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">newWindow:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="632566413"/>
-					</object>
-					<int key="connectionID">572</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">newWindow:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="552626760"/>
-					</object>
-					<int key="connectionID">574</int>
-				</object>
-				<object class="IBConnectionRecord">
-					<object class="IBActionConnection" key="connection">
-						<string key="label">openLocation:</string>
-						<reference key="source" ref="1014"/>
-						<reference key="destination" ref="705341025"/>
-					</object>
-					<int key="connectionID">575</int>
-				</object>
-			</object>
-			<object class="IBMutableOrderedSet" key="objectRecords">
-				<object class="NSArray" key="orderedObjects">
-					<bool key="EncodedWithXMLCoder">YES</bool>
-					<object class="IBObjectRecord">
-						<int key="objectID">0</int>
-						<object class="NSArray" key="object" id="0">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-						</object>
-						<reference key="children" ref="1048"/>
-						<nil key="parent"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">-2</int>
-						<reference key="object" ref="1021"/>
-						<reference key="parent" ref="0"/>
-						<string key="objectName">File's Owner</string>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">-1</int>
-						<reference key="object" ref="1014"/>
-						<reference key="parent" ref="0"/>
-						<string key="objectName">First Responder</string>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">-3</int>
-						<reference key="object" ref="1050"/>
-						<reference key="parent" ref="0"/>
-						<string key="objectName">Application</string>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">29</int>
-						<reference key="object" ref="649796088"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="713487014"/>
-							<reference ref="694149608"/>
-							<reference ref="952259628"/>
-							<reference ref="379814623"/>
-							<reference ref="586577488"/>
-							<reference ref="448692316"/>
-							<reference ref="816668511"/>
-						</object>
-						<reference key="parent" ref="0"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">19</int>
-						<reference key="object" ref="713487014"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="835318025"/>
-						</object>
-						<reference key="parent" ref="649796088"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">56</int>
-						<reference key="object" ref="694149608"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="110575045"/>
-						</object>
-						<reference key="parent" ref="649796088"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">217</int>
-						<reference key="object" ref="952259628"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="789758025"/>
-						</object>
-						<reference key="parent" ref="649796088"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">83</int>
-						<reference key="object" ref="379814623"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="720053764"/>
-						</object>
-						<reference key="parent" ref="649796088"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">81</int>
-						<reference key="object" ref="720053764"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="1023925487"/>
-							<reference ref="117038363"/>
-							<reference ref="49223823"/>
-							<reference ref="722745758"/>
-							<reference ref="705341025"/>
-							<reference ref="1025936716"/>
-							<reference ref="294629803"/>
-							<reference ref="776162233"/>
-							<reference ref="425164168"/>
-							<reference ref="579971712"/>
-							<reference ref="1010469920"/>
-							<reference ref="632566413"/>
-							<reference ref="552626760"/>
-						</object>
-						<reference key="parent" ref="379814623"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">75</int>
-						<reference key="object" ref="1023925487"/>
-						<reference key="parent" ref="720053764"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">80</int>
-						<reference key="object" ref="117038363"/>
-						<reference key="parent" ref="720053764"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">78</int>
-						<reference key="object" ref="49223823"/>
-						<reference key="parent" ref="720053764"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">72</int>
-						<reference key="object" ref="722745758"/>
-						<reference key="parent" ref="720053764"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">82</int>
-						<reference key="object" ref="705341025"/>
-						<reference key="parent" ref="720053764"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">124</int>
-						<reference key="object" ref="1025936716"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="1065607017"/>
-						</object>
-						<reference key="parent" ref="720053764"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">77</int>
-						<reference key="object" ref="294629803"/>
-						<reference key="parent" ref="720053764"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">73</int>
-						<reference key="object" ref="776162233"/>
-						<reference key="parent" ref="720053764"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">79</int>
-						<reference key="object" ref="425164168"/>
-						<reference key="parent" ref="720053764"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">112</int>
-						<reference key="object" ref="579971712"/>
-						<reference key="parent" ref="720053764"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">74</int>
-						<reference key="object" ref="1010469920"/>
-						<reference key="parent" ref="720053764"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">125</int>
-						<reference key="object" ref="1065607017"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="759406840"/>
-						</object>
-						<reference key="parent" ref="1025936716"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">126</int>
-						<reference key="object" ref="759406840"/>
-						<reference key="parent" ref="1065607017"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">205</int>
-						<reference key="object" ref="789758025"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="437104165"/>
-							<reference ref="583158037"/>
-							<reference ref="1058277027"/>
-							<reference ref="212016141"/>
-							<reference ref="296257095"/>
-							<reference ref="29853731"/>
-							<reference ref="860595796"/>
-							<reference ref="1040322652"/>
-							<reference ref="790794224"/>
-							<reference ref="892235320"/>
-							<reference ref="972420730"/>
-							<reference ref="676164635"/>
-							<reference ref="507821607"/>
-							<reference ref="288088188"/>
-							<reference ref="82994268"/>
-						</object>
-						<reference key="parent" ref="952259628"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">202</int>
-						<reference key="object" ref="437104165"/>
-						<reference key="parent" ref="789758025"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">198</int>
-						<reference key="object" ref="583158037"/>
-						<reference key="parent" ref="789758025"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">207</int>
-						<reference key="object" ref="1058277027"/>
-						<reference key="parent" ref="789758025"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">214</int>
-						<reference key="object" ref="212016141"/>
-						<reference key="parent" ref="789758025"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">199</int>
-						<reference key="object" ref="296257095"/>
-						<reference key="parent" ref="789758025"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">203</int>
-						<reference key="object" ref="29853731"/>
-						<reference key="parent" ref="789758025"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">197</int>
-						<reference key="object" ref="860595796"/>
-						<reference key="parent" ref="789758025"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">206</int>
-						<reference key="object" ref="1040322652"/>
-						<reference key="parent" ref="789758025"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">215</int>
-						<reference key="object" ref="790794224"/>
-						<reference key="parent" ref="789758025"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">218</int>
-						<reference key="object" ref="892235320"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="963351320"/>
-						</object>
-						<reference key="parent" ref="789758025"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">216</int>
-						<reference key="object" ref="972420730"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="769623530"/>
-						</object>
-						<reference key="parent" ref="789758025"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">200</int>
-						<reference key="object" ref="769623530"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="948374510"/>
-							<reference ref="96193923"/>
-							<reference ref="679648819"/>
-							<reference ref="967646866"/>
-							<reference ref="859480356"/>
-							<reference ref="795346622"/>
-						</object>
-						<reference key="parent" ref="972420730"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">219</int>
-						<reference key="object" ref="948374510"/>
-						<reference key="parent" ref="769623530"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">201</int>
-						<reference key="object" ref="96193923"/>
-						<reference key="parent" ref="769623530"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">204</int>
-						<reference key="object" ref="679648819"/>
-						<reference key="parent" ref="769623530"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">220</int>
-						<reference key="object" ref="963351320"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="270902937"/>
-							<reference ref="88285865"/>
-							<reference ref="159080638"/>
-							<reference ref="326711663"/>
-							<reference ref="447796847"/>
-						</object>
-						<reference key="parent" ref="892235320"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">213</int>
-						<reference key="object" ref="270902937"/>
-						<reference key="parent" ref="963351320"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">210</int>
-						<reference key="object" ref="88285865"/>
-						<reference key="parent" ref="963351320"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">221</int>
-						<reference key="object" ref="159080638"/>
-						<reference key="parent" ref="963351320"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">208</int>
-						<reference key="object" ref="326711663"/>
-						<reference key="parent" ref="963351320"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">209</int>
-						<reference key="object" ref="447796847"/>
-						<reference key="parent" ref="963351320"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">57</int>
-						<reference key="object" ref="110575045"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="238522557"/>
-							<reference ref="755159360"/>
-							<reference ref="908899353"/>
-							<reference ref="632727374"/>
-							<reference ref="646227648"/>
-							<reference ref="609285721"/>
-							<reference ref="481834944"/>
-							<reference ref="304266470"/>
-							<reference ref="1046388886"/>
-							<reference ref="1056857174"/>
-							<reference ref="342932134"/>
-						</object>
-						<reference key="parent" ref="694149608"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">58</int>
-						<reference key="object" ref="238522557"/>
-						<reference key="parent" ref="110575045"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">134</int>
-						<reference key="object" ref="755159360"/>
-						<reference key="parent" ref="110575045"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">150</int>
-						<reference key="object" ref="908899353"/>
-						<reference key="parent" ref="110575045"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">136</int>
-						<reference key="object" ref="632727374"/>
-						<reference key="parent" ref="110575045"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">144</int>
-						<reference key="object" ref="646227648"/>
-						<reference key="parent" ref="110575045"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">129</int>
-						<reference key="object" ref="609285721"/>
-						<reference key="parent" ref="110575045"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">143</int>
-						<reference key="object" ref="481834944"/>
-						<reference key="parent" ref="110575045"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">236</int>
-						<reference key="object" ref="304266470"/>
-						<reference key="parent" ref="110575045"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">131</int>
-						<reference key="object" ref="1046388886"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="752062318"/>
-						</object>
-						<reference key="parent" ref="110575045"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">149</int>
-						<reference key="object" ref="1056857174"/>
-						<reference key="parent" ref="110575045"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">145</int>
-						<reference key="object" ref="342932134"/>
-						<reference key="parent" ref="110575045"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">130</int>
-						<reference key="object" ref="752062318"/>
-						<reference key="parent" ref="1046388886"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">24</int>
-						<reference key="object" ref="835318025"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="299356726"/>
-							<reference ref="625202149"/>
-							<reference ref="575023229"/>
-							<reference ref="1011231497"/>
-						</object>
-						<reference key="parent" ref="713487014"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">92</int>
-						<reference key="object" ref="299356726"/>
-						<reference key="parent" ref="835318025"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">5</int>
-						<reference key="object" ref="625202149"/>
-						<reference key="parent" ref="835318025"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">239</int>
-						<reference key="object" ref="575023229"/>
-						<reference key="parent" ref="835318025"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">23</int>
-						<reference key="object" ref="1011231497"/>
-						<reference key="parent" ref="835318025"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">295</int>
-						<reference key="object" ref="586577488"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="466310130"/>
-						</object>
-						<reference key="parent" ref="649796088"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">296</int>
-						<reference key="object" ref="466310130"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="102151532"/>
-							<reference ref="237841660"/>
-							<reference ref="694544109"/>
-							<reference ref="1025359947"/>
-							<reference ref="943694335"/>
-							<reference ref="863984465"/>
-							<reference ref="138443116"/>
-						</object>
-						<reference key="parent" ref="586577488"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">297</int>
-						<reference key="object" ref="102151532"/>
-						<reference key="parent" ref="466310130"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">298</int>
-						<reference key="object" ref="237841660"/>
-						<reference key="parent" ref="466310130"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">211</int>
-						<reference key="object" ref="676164635"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="785027613"/>
-						</object>
-						<reference key="parent" ref="789758025"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">212</int>
-						<reference key="object" ref="785027613"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="680220178"/>
-							<reference ref="731782645"/>
-						</object>
-						<reference key="parent" ref="676164635"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">195</int>
-						<reference key="object" ref="680220178"/>
-						<reference key="parent" ref="785027613"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">196</int>
-						<reference key="object" ref="731782645"/>
-						<reference key="parent" ref="785027613"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">346</int>
-						<reference key="object" ref="967646866"/>
-						<reference key="parent" ref="769623530"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">348</int>
-						<reference key="object" ref="507821607"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="698887838"/>
-						</object>
-						<reference key="parent" ref="789758025"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">349</int>
-						<reference key="object" ref="698887838"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="605118523"/>
-							<reference ref="197661976"/>
-							<reference ref="708854459"/>
-							<reference ref="65139061"/>
-							<reference ref="19036812"/>
-							<reference ref="672708820"/>
-							<reference ref="537092702"/>
-						</object>
-						<reference key="parent" ref="507821607"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">350</int>
-						<reference key="object" ref="605118523"/>
-						<reference key="parent" ref="698887838"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">351</int>
-						<reference key="object" ref="197661976"/>
-						<reference key="parent" ref="698887838"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">354</int>
-						<reference key="object" ref="708854459"/>
-						<reference key="parent" ref="698887838"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">420</int>
-						<reference key="object" ref="755631768"/>
-						<reference key="parent" ref="0"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">450</int>
-						<reference key="object" ref="288088188"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="579392910"/>
-						</object>
-						<reference key="parent" ref="789758025"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">451</int>
-						<reference key="object" ref="579392910"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="1060694897"/>
-							<reference ref="879586729"/>
-							<reference ref="56570060"/>
-						</object>
-						<reference key="parent" ref="288088188"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">452</int>
-						<reference key="object" ref="1060694897"/>
-						<reference key="parent" ref="579392910"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">453</int>
-						<reference key="object" ref="859480356"/>
-						<reference key="parent" ref="769623530"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">454</int>
-						<reference key="object" ref="795346622"/>
-						<reference key="parent" ref="769623530"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">457</int>
-						<reference key="object" ref="65139061"/>
-						<reference key="parent" ref="698887838"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">459</int>
-						<reference key="object" ref="19036812"/>
-						<reference key="parent" ref="698887838"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">460</int>
-						<reference key="object" ref="672708820"/>
-						<reference key="parent" ref="698887838"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">462</int>
-						<reference key="object" ref="537092702"/>
-						<reference key="parent" ref="698887838"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">465</int>
-						<reference key="object" ref="879586729"/>
-						<reference key="parent" ref="579392910"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">466</int>
-						<reference key="object" ref="56570060"/>
-						<reference key="parent" ref="579392910"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">485</int>
-						<reference key="object" ref="82994268"/>
-						<reference key="parent" ref="789758025"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">490</int>
-						<reference key="object" ref="448692316"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="992780483"/>
-						</object>
-						<reference key="parent" ref="649796088"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">491</int>
-						<reference key="object" ref="992780483"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="105068016"/>
-						</object>
-						<reference key="parent" ref="448692316"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">492</int>
-						<reference key="object" ref="105068016"/>
-						<reference key="parent" ref="992780483"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">494</int>
-						<reference key="object" ref="976324537"/>
-						<reference key="parent" ref="0"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">534</int>
-						<reference key="object" ref="816668511"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="865232259"/>
-						</object>
-						<reference key="parent" ref="649796088"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">535</int>
-						<reference key="object" ref="865232259"/>
-						<object class="NSMutableArray" key="children">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<reference ref="878165919"/>
-							<reference ref="137933275"/>
-							<reference ref="1027125810"/>
-							<reference ref="864702084"/>
-							<reference ref="191469404"/>
-							<reference ref="624939128"/>
-							<reference ref="15772092"/>
-						</object>
-						<reference key="parent" ref="816668511"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">545</int>
-						<reference key="object" ref="878165919"/>
-						<reference key="parent" ref="865232259"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">548</int>
-						<reference key="object" ref="137933275"/>
-						<reference key="parent" ref="865232259"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">550</int>
-						<reference key="object" ref="1027125810"/>
-						<reference key="parent" ref="865232259"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">553</int>
-						<reference key="object" ref="864702084"/>
-						<reference key="parent" ref="865232259"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">555</int>
-						<reference key="object" ref="694544109"/>
-						<reference key="parent" ref="466310130"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">556</int>
-						<reference key="object" ref="1025359947"/>
-						<reference key="parent" ref="466310130"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">557</int>
-						<reference key="object" ref="943694335"/>
-						<reference key="parent" ref="466310130"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">558</int>
-						<reference key="object" ref="863984465"/>
-						<reference key="parent" ref="466310130"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">562</int>
-						<reference key="object" ref="138443116"/>
-						<reference key="parent" ref="466310130"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">566</int>
-						<reference key="object" ref="191469404"/>
-						<reference key="parent" ref="865232259"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">568</int>
-						<reference key="object" ref="624939128"/>
-						<reference key="parent" ref="865232259"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">569</int>
-						<reference key="object" ref="15772092"/>
-						<reference key="parent" ref="865232259"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">571</int>
-						<reference key="object" ref="632566413"/>
-						<reference key="parent" ref="720053764"/>
-					</object>
-					<object class="IBObjectRecord">
-						<int key="objectID">573</int>
-						<reference key="object" ref="552626760"/>
-						<reference key="parent" ref="720053764"/>
-					</object>
-				</object>
-			</object>
-			<object class="NSMutableDictionary" key="flattenedProperties">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-				<object class="NSArray" key="dict.sortedKeys">
-					<bool key="EncodedWithXMLCoder">YES</bool>
-					<string>-1.IBPluginDependency</string>
-					<string>-2.IBPluginDependency</string>
-					<string>-3.IBPluginDependency</string>
-					<string>112.IBPluginDependency</string>
-					<string>124.IBPluginDependency</string>
-					<string>125.IBPluginDependency</string>
-					<string>126.IBPluginDependency</string>
-					<string>129.IBPluginDependency</string>
-					<string>130.IBPluginDependency</string>
-					<string>131.IBPluginDependency</string>
-					<string>134.IBPluginDependency</string>
-					<string>136.IBPluginDependency</string>
-					<string>143.IBPluginDependency</string>
-					<string>144.IBPluginDependency</string>
-					<string>145.IBPluginDependency</string>
-					<string>149.IBPluginDependency</string>
-					<string>150.IBPluginDependency</string>
-					<string>19.IBPluginDependency</string>
-					<string>195.IBPluginDependency</string>
-					<string>196.IBPluginDependency</string>
-					<string>197.IBPluginDependency</string>
-					<string>198.IBPluginDependency</string>
-					<string>199.IBPluginDependency</string>
-					<string>200.IBPluginDependency</string>
-					<string>201.IBPluginDependency</string>
-					<string>202.IBPluginDependency</string>
-					<string>203.IBPluginDependency</string>
-					<string>204.IBPluginDependency</string>
-					<string>205.IBPluginDependency</string>
-					<string>206.IBPluginDependency</string>
-					<string>207.IBPluginDependency</string>
-					<string>208.IBPluginDependency</string>
-					<string>209.IBPluginDependency</string>
-					<string>210.IBPluginDependency</string>
-					<string>211.IBPluginDependency</string>
-					<string>212.IBPluginDependency</string>
-					<string>213.IBPluginDependency</string>
-					<string>214.IBPluginDependency</string>
-					<string>215.IBPluginDependency</string>
-					<string>216.IBPluginDependency</string>
-					<string>217.IBPluginDependency</string>
-					<string>218.IBPluginDependency</string>
-					<string>219.IBPluginDependency</string>
-					<string>220.IBPluginDependency</string>
-					<string>221.IBPluginDependency</string>
-					<string>23.IBPluginDependency</string>
-					<string>236.IBPluginDependency</string>
-					<string>239.IBPluginDependency</string>
-					<string>24.IBPluginDependency</string>
-					<string>29.IBPluginDependency</string>
-					<string>295.IBPluginDependency</string>
-					<string>296.IBPluginDependency</string>
-					<string>297.IBPluginDependency</string>
-					<string>298.IBPluginDependency</string>
-					<string>346.IBPluginDependency</string>
-					<string>348.IBPluginDependency</string>
-					<string>349.IBPluginDependency</string>
-					<string>350.IBPluginDependency</string>
-					<string>351.IBPluginDependency</string>
-					<string>354.IBPluginDependency</string>
-					<string>420.IBPluginDependency</string>
-					<string>450.IBPluginDependency</string>
-					<string>451.IBPluginDependency</string>
-					<string>452.IBPluginDependency</string>
-					<string>453.IBPluginDependency</string>
-					<string>454.IBPluginDependency</string>
-					<string>457.IBPluginDependency</string>
-					<string>459.IBPluginDependency</string>
-					<string>460.IBPluginDependency</string>
-					<string>462.IBPluginDependency</string>
-					<string>465.IBPluginDependency</string>
-					<string>466.IBPluginDependency</string>
-					<string>485.IBPluginDependency</string>
-					<string>490.IBPluginDependency</string>
-					<string>491.IBPluginDependency</string>
-					<string>492.IBPluginDependency</string>
-					<string>494.IBPluginDependency</string>
-					<string>5.IBPluginDependency</string>
-					<string>534.IBPluginDependency</string>
-					<string>535.IBPluginDependency</string>
-					<string>545.IBPluginDependency</string>
-					<string>548.IBPluginDependency</string>
-					<string>550.IBPluginDependency</string>
-					<string>553.IBPluginDependency</string>
-					<string>555.IBPluginDependency</string>
-					<string>556.IBPluginDependency</string>
-					<string>557.IBPluginDependency</string>
-					<string>558.IBPluginDependency</string>
-					<string>56.IBPluginDependency</string>
-					<string>562.IBPluginDependency</string>
-					<string>566.IBPluginDependency</string>
-					<string>568.IBPluginDependency</string>
-					<string>569.IBPluginDependency</string>
-					<string>57.IBPluginDependency</string>
-					<string>571.IBPluginDependency</string>
-					<string>573.IBPluginDependency</string>
-					<string>58.IBPluginDependency</string>
-					<string>72.IBPluginDependency</string>
-					<string>73.IBPluginDependency</string>
-					<string>74.IBPluginDependency</string>
-					<string>75.IBPluginDependency</string>
-					<string>77.IBPluginDependency</string>
-					<string>78.IBPluginDependency</string>
-					<string>79.IBPluginDependency</string>
-					<string>80.IBPluginDependency</string>
-					<string>81.IBPluginDependency</string>
-					<string>82.IBPluginDependency</string>
-					<string>83.IBPluginDependency</string>
-					<string>92.IBPluginDependency</string>
-				</object>
-				<object class="NSArray" key="dict.values">
-					<bool key="EncodedWithXMLCoder">YES</bool>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
-				</object>
-			</object>
-			<object class="NSMutableDictionary" key="unlocalizedProperties">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-				<reference key="dict.sortedKeys" ref="0"/>
-				<reference key="dict.values" ref="0"/>
-			</object>
-			<nil key="activeLocalization"/>
-			<object class="NSMutableDictionary" key="localizations">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-				<reference key="dict.sortedKeys" ref="0"/>
-				<reference key="dict.values" ref="0"/>
-			</object>
-			<nil key="sourceID"/>
-			<int key="maxID">575</int>
-		</object>
-		<object class="IBClassDescriber" key="IBDocument.Classes">
-			<object class="NSMutableArray" key="referencedPartialClassDescriptions">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-				<object class="IBPartialClassDescription">
-					<string key="className">BrowserAppDelegate</string>
-					<string key="superclassName">NSObject</string>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBProjectSource</string>
-						<string key="minorKey">./Classes/BrowserAppDelegate.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">BrowserWindowController</string>
-					<string key="superclassName">NSWindowController</string>
-					<object class="NSMutableDictionary" key="actions">
-						<string key="NS.key.0">openLocation:</string>
-						<string key="NS.object.0">id</string>
-					</object>
-					<object class="NSMutableDictionary" key="actionInfosByName">
-						<string key="NS.key.0">openLocation:</string>
-						<object class="IBActionInfo" key="NS.object.0">
-							<string key="name">openLocation:</string>
-							<string key="candidateClassName">id</string>
-						</object>
-					</object>
-					<object class="NSMutableDictionary" key="outlets">
-						<bool key="EncodedWithXMLCoder">YES</bool>
-						<object class="NSArray" key="dict.sortedKeys">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<string>backButton</string>
-							<string>containerView</string>
-							<string>findPanelWindow</string>
-							<string>forwardButton</string>
-							<string>progressIndicator</string>
-							<string>reloadButton</string>
-							<string>toolbar</string>
-							<string>urlText</string>
-						</object>
-						<object class="NSArray" key="dict.values">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<string>NSButton</string>
-							<string>NSView</string>
-							<string>NSWindow</string>
-							<string>NSButton</string>
-							<string>NSProgressIndicator</string>
-							<string>NSButton</string>
-							<string>NSToolbar</string>
-							<string>NSTextField</string>
-						</object>
-					</object>
-					<object class="NSMutableDictionary" key="toOneOutletInfosByName">
-						<bool key="EncodedWithXMLCoder">YES</bool>
-						<object class="NSArray" key="dict.sortedKeys">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<string>backButton</string>
-							<string>containerView</string>
-							<string>findPanelWindow</string>
-							<string>forwardButton</string>
-							<string>progressIndicator</string>
-							<string>reloadButton</string>
-							<string>toolbar</string>
-							<string>urlText</string>
-						</object>
-						<object class="NSArray" key="dict.values">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<object class="IBToOneOutletInfo">
-								<string key="name">backButton</string>
-								<string key="candidateClassName">NSButton</string>
-							</object>
-							<object class="IBToOneOutletInfo">
-								<string key="name">containerView</string>
-								<string key="candidateClassName">NSView</string>
-							</object>
-							<object class="IBToOneOutletInfo">
-								<string key="name">findPanelWindow</string>
-								<string key="candidateClassName">NSWindow</string>
-							</object>
-							<object class="IBToOneOutletInfo">
-								<string key="name">forwardButton</string>
-								<string key="candidateClassName">NSButton</string>
-							</object>
-							<object class="IBToOneOutletInfo">
-								<string key="name">progressIndicator</string>
-								<string key="candidateClassName">NSProgressIndicator</string>
-							</object>
-							<object class="IBToOneOutletInfo">
-								<string key="name">reloadButton</string>
-								<string key="candidateClassName">NSButton</string>
-							</object>
-							<object class="IBToOneOutletInfo">
-								<string key="name">toolbar</string>
-								<string key="candidateClassName">NSToolbar</string>
-							</object>
-							<object class="IBToOneOutletInfo">
-								<string key="name">urlText</string>
-								<string key="candidateClassName">NSTextField</string>
-							</object>
-						</object>
-					</object>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBProjectSource</string>
-						<string key="minorKey">./Classes/BrowserWindowController.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">FirstResponder</string>
-					<object class="NSMutableDictionary" key="actions">
-						<bool key="EncodedWithXMLCoder">YES</bool>
-						<object class="NSArray" key="dict.sortedKeys">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<string>forceRepaint:</string>
-							<string>newWindow:</string>
-						</object>
-						<object class="NSArray" key="dict.values">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<string>id</string>
-							<string>id</string>
-						</object>
-					</object>
-					<object class="NSMutableDictionary" key="actionInfosByName">
-						<bool key="EncodedWithXMLCoder">YES</bool>
-						<object class="NSArray" key="dict.sortedKeys">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<string>forceRepaint:</string>
-							<string>newWindow:</string>
-						</object>
-						<object class="NSArray" key="dict.values">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<object class="IBActionInfo">
-								<string key="name">forceRepaint:</string>
-								<string key="candidateClassName">id</string>
-							</object>
-							<object class="IBActionInfo">
-								<string key="name">newWindow:</string>
-								<string key="candidateClassName">id</string>
-							</object>
-						</object>
-					</object>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBUserSource</string>
-						<string key="minorKey"/>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">NSDocumentController</string>
-					<object class="NSMutableDictionary" key="actions">
-						<string key="NS.key.0">_openRecentDocument:</string>
-						<string key="NS.object.0">id</string>
-					</object>
-					<object class="NSMutableDictionary" key="actionInfosByName">
-						<string key="NS.key.0">_openRecentDocument:</string>
-						<object class="IBActionInfo" key="NS.object.0">
-							<string key="name">_openRecentDocument:</string>
-							<string key="candidateClassName">id</string>
-						</object>
-					</object>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBProjectSource</string>
-						<string key="minorKey">./Classes/NSDocumentController.h</string>
-					</object>
-				</object>
-				<object class="IBPartialClassDescription">
-					<string key="className">WebView</string>
-					<object class="NSMutableDictionary" key="actions">
-						<bool key="EncodedWithXMLCoder">YES</bool>
-						<object class="NSArray" key="dict.sortedKeys">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<string>reloadFromOrigin:</string>
-							<string>resetPageZoom:</string>
-							<string>zoomPageIn:</string>
-							<string>zoomPageOut:</string>
-						</object>
-						<object class="NSArray" key="dict.values">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<string>id</string>
-							<string>id</string>
-							<string>id</string>
-							<string>id</string>
-						</object>
-					</object>
-					<object class="NSMutableDictionary" key="actionInfosByName">
-						<bool key="EncodedWithXMLCoder">YES</bool>
-						<object class="NSArray" key="dict.sortedKeys">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<string>reloadFromOrigin:</string>
-							<string>resetPageZoom:</string>
-							<string>zoomPageIn:</string>
-							<string>zoomPageOut:</string>
-						</object>
-						<object class="NSArray" key="dict.values">
-							<bool key="EncodedWithXMLCoder">YES</bool>
-							<object class="IBActionInfo">
-								<string key="name">reloadFromOrigin:</string>
-								<string key="candidateClassName">id</string>
-							</object>
-							<object class="IBActionInfo">
-								<string key="name">resetPageZoom:</string>
-								<string key="candidateClassName">id</string>
-							</object>
-							<object class="IBActionInfo">
-								<string key="name">zoomPageIn:</string>
-								<string key="candidateClassName">id</string>
-							</object>
-							<object class="IBActionInfo">
-								<string key="name">zoomPageOut:</string>
-								<string key="candidateClassName">id</string>
-							</object>
-						</object>
-					</object>
-					<object class="IBClassDescriptionSource" key="sourceIdentifier">
-						<string key="majorKey">IBProjectSource</string>
-						<string key="minorKey">./Classes/WebView.h</string>
-					</object>
-				</object>
-			</object>
-		</object>
-		<int key="IBDocument.localizationMode">0</int>
-		<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string>
-		<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
-			<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string>
-			<integer value="3000" key="NS.object.0"/>
-		</object>
-		<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
-		<int key="IBDocument.defaultPropertyAccessControl">3</int>
-		<object class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
-			<bool key="EncodedWithXMLCoder">YES</bool>
-			<object class="NSArray" key="dict.sortedKeys">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-				<string>NSMenuCheckmark</string>
-				<string>NSMenuMixedState</string>
-			</object>
-			<object class="NSArray" key="dict.values">
-				<bool key="EncodedWithXMLCoder">YES</bool>
-				<string>{11, 11}</string>
-				<string>{10, 3}</string>
-			</object>
-		</object>
-	</data>
-</archive>
diff --git a/Tools/MiniBrowser/mac/MiniBrowser_Prefix.pch b/Tools/MiniBrowser/mac/MiniBrowser_Prefix.pch
deleted file mode 100644
index 24ff04c..0000000
--- a/Tools/MiniBrowser/mac/MiniBrowser_Prefix.pch
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifdef __OBJC__
-    #import <Cocoa/Cocoa.h>
-#endif
-
-#import <WebKit2/WebKit2_C.h>
-
-#define ENABLE_LOGGING 0
-
-#if ENABLE_LOGGING
-#define LOG NSLog
-#else
-#define LOG(...) ((void)0)
-#endif
diff --git a/Tools/MiniBrowser/mac/WK1BrowserWindowController.h b/Tools/MiniBrowser/mac/WK1BrowserWindowController.h
deleted file mode 100644
index fdae2ca..0000000
--- a/Tools/MiniBrowser/mac/WK1BrowserWindowController.h
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "BrowserWindowController.h"
-
-@class WebView;
-
-@interface WK1BrowserWindowController : BrowserWindowController<BrowserController> {
-    WebView *_webView;
-}
-
-
-@end
diff --git a/Tools/MiniBrowser/mac/WK1BrowserWindowController.m b/Tools/MiniBrowser/mac/WK1BrowserWindowController.m
deleted file mode 100644
index 9953643..0000000
--- a/Tools/MiniBrowser/mac/WK1BrowserWindowController.m
+++ /dev/null
@@ -1,268 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "WK1BrowserWindowController.h"
-
-#import <WebKit/WebKit.h>
-#import "AppDelegate.h"
-
-@interface WK1BrowserWindowController ()
-@end
-
-@implementation WK1BrowserWindowController
-
-- (void)awakeFromNib
-{
-    _webView = [[WebView alloc] initWithFrame:[containerView bounds]];
-    [_webView setAutoresizingMask:(NSViewWidthSizable | NSViewHeightSizable)];
-
-    // Set the WebView delegates
-    [_webView setFrameLoadDelegate:self];
-    [_webView setUIDelegate:self];
-    [_webView setResourceLoadDelegate:self];
-
-    [containerView addSubview:_webView];
-}
-
-- (void)dealloc
-{
-    [_webView setFrameLoadDelegate:nil];
-    [_webView setUIDelegate:nil];
-    [_webView setResourceLoadDelegate:nil];
-    [_webView release];
-
-    [super dealloc];
-}
-
-- (void)loadURLString:(NSString *)urlString
-{
-    // FIXME: We shouldn't have to set the url text here.
-    [urlText setStringValue:urlString];
-    [self fetch:nil];
-}
-
-- (IBAction)fetch:(id)sender
-{
-    [urlText setStringValue:[self addProtocolIfNecessary:[urlText stringValue]]];
-    NSURL *url = [NSURL URLWithString:[urlText stringValue]];
-    [[_webView mainFrame] loadRequest:[NSURLRequest requestWithURL:url]];
-}
-
-- (IBAction)showHideWebView:(id)sender
-{
-    BOOL hidden = ![_webView isHidden];
-    
-    [_webView setHidden:hidden];
-}
-
-- (IBAction)removeReinsertWebView:(id)sender
-{
-    if ([_webView window]) {
-        [_webView retain];
-        [_webView removeFromSuperview]; 
-    } else {
-        [containerView addSubview:_webView];
-        [_webView release];
-    }
-}
-
-- (IBAction)reload:(id)sender
-{
-    [_webView reload:sender];
-}
-
-- (IBAction)forceRepaint:(id)sender
-{
-    [_webView setNeedsDisplay:YES];
-}
-
-- (IBAction)goBack:(id)sender
-{
-    [_webView goBack:sender];
-}
-
-- (IBAction)goForward:(id)sender
-{
-    [_webView goForward:sender];
-}
-
-- (BOOL)isPaginated
-{
-    return NO;
-}
-
-- (BOOL)validateMenuItem:(NSMenuItem *)menuItem
-{
-    SEL action = [menuItem action];
-
-    if (action == @selector(zoomIn:))
-        return [self canZoomIn];
-    if (action == @selector(zoomOut:))
-        return [self canZoomOut];
-    if (action == @selector(resetZoom:))
-        return [self canResetZoom];
-
-    if (action == @selector(showHideWebView:))
-        [menuItem setTitle:[_webView isHidden] ? @"Show Web View" : @"Hide Web View"];
-    else if (action == @selector(removeReinsertWebView:))
-        [menuItem setTitle:[_webView window] ? @"Remove Web View" : @"Insert Web View"];
-    else if (action == @selector(toggleZoomMode:))
-        [menuItem setState:_zoomTextOnly ? NSOnState : NSOffState];
-    else if ([menuItem action] == @selector(togglePaginationMode:))
-        [menuItem setState:[self isPaginated] ? NSOnState : NSOffState];
-
-    return YES;
-}
-
-- (BOOL)validateUserInterfaceItem:(id <NSValidatedUserInterfaceItem>)item
-{
-    SEL action = [item action];
-
-    if (action == @selector(goBack:))
-        return [_webView canGoBack];
-    
-    if (action == @selector(goForward:))
-        return [_webView canGoForward];
-    
-    return YES;
-}
-
-- (void)validateToolbar
-{
-    [toolbar validateVisibleItems];
-}
-
-- (BOOL)windowShouldClose:(id)sender
-{
-    return YES;
-}
-
-- (void)windowWillClose:(NSNotification *)notification
-{
-    [(BrowserAppDelegate *)[NSApp delegate] browserWindowWillClose:[self window]];
-    [self autorelease];
-}
-
-- (void)applicationTerminating
-{
-}
-
-- (double)currentZoomFactor
-{
-    return 1;
-}
-
-- (BOOL)canZoomIn
-{
-    return [_webView canMakeTextLarger];
-}
-
-- (void)zoomIn:(id)sender
-{
-    if (![self canZoomIn])
-        return;
-
-    [_webView makeTextLarger:sender];
-}
-
-- (BOOL)canZoomOut
-{
-    return [_webView canMakeTextSmaller];
-}
-
-- (void)zoomOut:(id)sender
-{
-    if (![self canZoomIn])
-        return;
-
-    [_webView makeTextSmaller:sender];
-}
-
-- (BOOL)canResetZoom
-{
-    return [_webView canMakeTextStandardSize];
-}
-
-- (void)resetZoom:(id)sender
-{
-    if (![self canResetZoom])
-        return;
-
-    [_webView makeTextStandardSize:sender];
-}
-
-- (IBAction)toggleZoomMode:(id)sender
-{
-    // FIXME: non-text zoom not implemented.
-    _zoomTextOnly = !_zoomTextOnly;
-}
-
-- (IBAction)togglePaginationMode:(id)sender
-{
-}
-
-- (IBAction)find:(id)sender
-{
-}
-
-- (IBAction)dumpSourceToConsole:(id)sender
-{
-}
-
-// WebFrameLoadDelegate Methods
-- (void)webView:(WebView *)sender didStartProvisionalLoadForFrame:(WebFrame *)frame
-{
-}
-
-- (void)webView:(WebView *)sender didCommitLoadForFrame:(WebFrame *)frame
-{
-    if (frame != [sender mainFrame])
-        return;
-
-    NSURL *committedURL = [[[frame dataSource] request] URL];
-    [urlText setStringValue:[committedURL absoluteString]];
-}
-
-- (void)webView:(WebView *)sender didReceiveTitle:(NSString *)title forFrame:(WebFrame *)frame
-{
-    if (frame != [sender mainFrame])
-        return;
-
-    [[self window] setTitle:[title stringByAppendingString:@" [WK1]"]];
-}
-
-- (void)webView:(WebView *)sender runJavaScriptAlertPanelWithMessage:(NSString *)message initiatedByFrame:(WebFrame *)frame
-{
-    NSAlert *alert = [[NSAlert alloc] init];
-    [alert addButtonWithTitle:@"OK"];
-
-    alert.messageText = [NSString stringWithFormat:@"JavaScript alert dialog from %@.", frame.dataSource.request.URL.absoluteString];
-    alert.informativeText = message;
-
-    [alert runModal];
-    [alert release];
-}
-
-@end
diff --git a/Tools/MiniBrowser/mac/WK2BrowserWindowController.h b/Tools/MiniBrowser/mac/WK2BrowserWindowController.h
deleted file mode 100644
index 840f082..0000000
--- a/Tools/MiniBrowser/mac/WK2BrowserWindowController.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "BrowserWindowController.h"
-
-@interface WK2BrowserWindowController : BrowserWindowController<BrowserController> {
-    WKContextRef _context;
-    WKPageGroupRef _pageGroup;
-    WKView *_webView;
-}
-
-- (id)initWithContext:(WKContextRef)context pageGroup:(WKPageGroupRef)pageGroup;
-
-@end
diff --git a/Tools/MiniBrowser/mac/WK2BrowserWindowController.m b/Tools/MiniBrowser/mac/WK2BrowserWindowController.m
deleted file mode 100644
index 4517a02..0000000
--- a/Tools/MiniBrowser/mac/WK2BrowserWindowController.m
+++ /dev/null
@@ -1,828 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "WK2BrowserWindowController.h"
-
-#import "AppDelegate.h"
-#import <WebKit2/WKPagePrivate.h>
-#import <WebKit2/WKStringCF.h>
-#import <WebKit2/WKURLCF.h>
-#import <WebKit2/WKViewPrivate.h>
-
-@interface WK2BrowserWindowController ()
-- (void)didStartProgress;
-- (void)didChangeProgress:(double)value;
-- (void)didFinishProgress;
-- (void)didStartProvisionalLoadForFrame:(WKFrameRef)frame;
-- (void)didCommitLoadForFrame:(WKFrameRef)frame;
-- (void)didReceiveServerRedirectForProvisionalLoadForFrame:(WKFrameRef)frame;
-- (void)didFailProvisionalLoadWithErrorForFrame:(WKFrameRef)frame;
-- (void)didFailLoadWithErrorForFrame:(WKFrameRef)frame;
-- (void)didSameDocumentNavigationForFrame:(WKFrameRef)frame;
-- (BOOL)isPaginated;
-@end
-
-@implementation WK2BrowserWindowController
-
-- (id)initWithContext:(WKContextRef)context pageGroup:(WKPageGroupRef)pageGroup
-{
-    if ((self = [super initWithWindowNibName:@"BrowserWindow"])) {
-        _context = WKRetain(context);
-        _pageGroup = WKRetain(pageGroup);
-        _zoomTextOnly = NO;
-    }
-    
-    return self;
-}
-
-- (void)dealloc
-{
-    WKRelease(_context);
-    WKRelease(_pageGroup);
-    [_webView release];
-
-    [super dealloc];
-}
-
-- (IBAction)fetch:(id)sender
-{
-    [urlText setStringValue:[self addProtocolIfNecessary:[urlText stringValue]]];
-
-    CFURLRef cfURL = CFURLCreateWithString(0, (CFStringRef)[urlText stringValue], 0);
-    if (!cfURL)
-        return;
-
-    WKURLRef url = WKURLCreateWithCFURL(cfURL);
-    CFRelease(cfURL);
-
-    WKPageLoadURL(_webView.pageRef, url);
-    WKRelease(url);
-}
-
-- (IBAction)showHideWebView:(id)sender
-{
-    BOOL hidden = ![_webView isHidden];
-    
-    [_webView setHidden:hidden];
-}
-
-- (IBAction)removeReinsertWebView:(id)sender
-{
-    if ([_webView window]) {
-        [_webView retain];
-        [_webView removeFromSuperview]; 
-    } else {
-        [containerView addSubview:_webView];
-        [_webView release];
-    }
-}
-
-- (BOOL)validateMenuItem:(NSMenuItem *)menuItem
-{
-    SEL action = [menuItem action];
-
-    if (action == @selector(zoomIn:))
-        return [self canZoomIn];
-    if (action == @selector(zoomOut:))
-        return [self canZoomOut];
-    if (action == @selector(resetZoom:))
-        return [self canResetZoom];
-
-    if (action == @selector(showHideWebView:))
-        [menuItem setTitle:[_webView isHidden] ? @"Show Web View" : @"Hide Web View"];
-    else if (action == @selector(removeReinsertWebView:))
-        [menuItem setTitle:[_webView window] ? @"Remove Web View" : @"Insert Web View"];
-    else if (action == @selector(toggleZoomMode:))
-        [menuItem setState:_zoomTextOnly ? NSOnState : NSOffState];
-    else if ([menuItem action] == @selector(togglePaginationMode:))
-        [menuItem setState:[self isPaginated] ? NSOnState : NSOffState];
-
-    return YES;
-}
-
-- (IBAction)reload:(id)sender
-{
-    WKPageReload(_webView.pageRef);
-}
-
-- (IBAction)forceRepaint:(id)sender
-{
-    [_webView setNeedsDisplay:YES];
-}
-
-- (IBAction)goBack:(id)sender
-{
-    WKPageGoBack(_webView.pageRef);
-}
-
-- (IBAction)goForward:(id)sender
-{
-    WKPageGoForward(_webView.pageRef);
-}
-
-- (BOOL)validateUserInterfaceItem:(id <NSValidatedUserInterfaceItem>)item
-{
-    SEL action = [item action];
-
-    if (action == @selector(goBack:))
-        return _webView && WKPageCanGoBack(_webView.pageRef);
-    
-    if (action == @selector(goForward:))
-        return _webView && WKPageCanGoForward(_webView.pageRef);
-    
-    return YES;
-}
-
-- (void)validateToolbar
-{
-    [toolbar validateVisibleItems];
-}
-
-- (BOOL)windowShouldClose:(id)sender
-{
-    LOG(@"windowShouldClose");
-    BOOL canCloseImmediately = WKPageTryClose(_webView.pageRef);
-    return canCloseImmediately;
-}
-
-- (void)windowWillClose:(NSNotification *)notification
-{
-    [(BrowserAppDelegate *)[NSApp delegate] browserWindowWillClose:[self window]];
-    [self autorelease];
-}
-
-- (void)applicationTerminating
-{
-    // FIXME: Why are we bothering to close the page? This doesn't even prevent LEAK output.
-    WKPageClose(_webView.pageRef);
-}
-
-#define DefaultMinimumZoomFactor (.5)
-#define DefaultMaximumZoomFactor (3.0)
-#define DefaultZoomFactorRatio (1.2)
-
-- (double)currentZoomFactor
-{
-    return _zoomTextOnly ? WKPageGetTextZoomFactor(_webView.pageRef) : WKPageGetPageZoomFactor(_webView.pageRef);
-}
-
-- (void)setCurrentZoomFactor:(double)factor
-{
-    _zoomTextOnly ? WKPageSetTextZoomFactor(_webView.pageRef, factor) : WKPageSetPageZoomFactor(_webView.pageRef, factor);
-}
-
-- (BOOL)canZoomIn
-{
-    return [self currentZoomFactor] * DefaultZoomFactorRatio < DefaultMaximumZoomFactor;
-}
-
-- (void)zoomIn:(id)sender
-{
-    if (![self canZoomIn])
-        return;
-
-    double factor = [self currentZoomFactor] * DefaultZoomFactorRatio;
-    [self setCurrentZoomFactor:factor];
-}
-
-- (BOOL)canZoomOut
-{
-    return [self currentZoomFactor] / DefaultZoomFactorRatio > DefaultMinimumZoomFactor;
-}
-
-- (void)zoomOut:(id)sender
-{
-    if (![self canZoomIn])
-        return;
-
-    double factor = [self currentZoomFactor] / DefaultZoomFactorRatio;
-    [self setCurrentZoomFactor:factor];
-}
-
-- (BOOL)canResetZoom
-{
-    return _zoomTextOnly ? (WKPageGetTextZoomFactor(_webView.pageRef) != 1) : (WKPageGetPageZoomFactor(_webView.pageRef) != 1);
-}
-
-- (void)resetZoom:(id)sender
-{
-    if (![self canResetZoom])
-        return;
-
-    if (_zoomTextOnly)
-        WKPageSetTextZoomFactor(_webView.pageRef, 1);
-    else
-        WKPageSetPageZoomFactor(_webView.pageRef, 1);
-}
-
-- (IBAction)toggleZoomMode:(id)sender
-{
-    if (_zoomTextOnly) {
-        _zoomTextOnly = NO;
-        double currentTextZoom = WKPageGetTextZoomFactor(_webView.pageRef);
-        WKPageSetPageAndTextZoomFactors(_webView.pageRef, currentTextZoom, 1);
-    } else {
-        _zoomTextOnly = YES;
-        double currentPageZoom = WKPageGetPageZoomFactor(_webView.pageRef);
-        WKPageSetPageAndTextZoomFactors(_webView.pageRef, 1, currentPageZoom);
-    }
-}
-
-- (BOOL)isPaginated
-{
-    return WKPageGetPaginationMode(_webView.pageRef) != kWKPaginationModeUnpaginated;
-}
-
-- (IBAction)togglePaginationMode:(id)sender
-{
-    if ([self isPaginated])
-        WKPageSetPaginationMode(_webView.pageRef, kWKPaginationModeUnpaginated);
-    else {
-        WKPageSetPaginationMode(_webView.pageRef, kWKPaginationModeLeftToRight);
-        WKPageSetPageLength(_webView.pageRef, _webView.bounds.size.width / 2);
-        WKPageSetGapBetweenPages(_webView.pageRef, 10);
-    }
-}
-
-- (IBAction)dumpSourceToConsole:(id)sender
-{
-    WKPageGetSourceForFrame_b(_webView.pageRef, WKPageGetMainFrame(_webView.pageRef), ^(WKStringRef result, WKErrorRef error) {
-        CFStringRef cfResult = WKStringCopyCFString(0, result);
-        LOG(@"Main frame source\n \"%@\"", (NSString *)cfResult);
-        CFRelease(cfResult);
-    });
-}
-
-// MARK: Loader Client Callbacks
-
-static void didStartProvisionalLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void *clientInfo)
-{
-    [(WK2BrowserWindowController *)clientInfo didStartProvisionalLoadForFrame:frame];
-}
-
-static void didReceiveServerRedirectForProvisionalLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void *clientInfo)
-{
-    [(WK2BrowserWindowController *)clientInfo didReceiveServerRedirectForProvisionalLoadForFrame:frame];
-}
-
-static void didFailProvisionalLoadWithErrorForFrame(WKPageRef page, WKFrameRef frame, WKErrorRef error, WKTypeRef userData, const void *clientInfo)
-{
-    [(WK2BrowserWindowController *)clientInfo didFailProvisionalLoadWithErrorForFrame:frame];
-}
-
-static void didCommitLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void *clientInfo)
-{
-    [(WK2BrowserWindowController *)clientInfo didCommitLoadForFrame:frame];
-}
-
-static void didFinishDocumentLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void *clientInfo)
-{
-    LOG(@"didFinishDocumentLoadForFrame");
-}
-
-static void didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void *clientInfo)
-{
-    LOG(@"didFinishLoadForFrame");
-}
-
-static void didFailLoadWithErrorForFrame(WKPageRef page, WKFrameRef frame, WKErrorRef error, WKTypeRef userData, const void *clientInfo)
-{
-    [(WK2BrowserWindowController *)clientInfo didFailLoadWithErrorForFrame:frame];
-}
-
-static void didSameDocumentNavigationForFrame(WKPageRef page, WKFrameRef frame, WKSameDocumentNavigationType type, WKTypeRef userData, const void *clientInfo)
-{
-    [(WK2BrowserWindowController *)clientInfo didSameDocumentNavigationForFrame:frame];
-}
-
-static void didReceiveTitleForFrame(WKPageRef page, WKStringRef title, WKFrameRef frame, WKTypeRef userData, const void *clientInfo)
-{
-    if (!WKFrameIsMainFrame(frame))
-        return;
-
-    WK2BrowserWindowController* controller = (WK2BrowserWindowController*)clientInfo;
-    CFStringRef cfTitle = WKStringCopyCFString(0, title);
-    [[controller window] setTitle:[(NSString *)cfTitle stringByAppendingString:@" [WK2]"]];
-    CFRelease(cfTitle);
-}
-
-static void didFirstLayoutForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void *clientInfo)
-{
-    LOG(@"didFirstLayoutForFrame");
-}
-
-static void didFirstVisuallyNonEmptyLayoutForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void *clientInfo)
-{
-    LOG(@"didFirstVisuallyNonEmptyLayoutForFrame");
-}
-
-static void didRemoveFrameFromHierarchy(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void *clientInfo)
-{
-    LOG(@"didRemoveFrameFromHierarchy");
-}
-
-static void didDisplayInsecureContentForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void *clientInfo)
-{
-    LOG(@"didDisplayInsecureContentForFrame");
-}
-
-static void didRunInsecureContentForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void *clientInfo)
-{
-    LOG(@"didRunInsecureContentForFrame");
-}
-
-static void didDetectXSSForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void *clientInfo) 
-{ 
-    LOG(@"didDetectXSSForFrame"); 
-}
- 
-static void didStartProgress(WKPageRef page, const void *clientInfo)
-{
-    [(WK2BrowserWindowController *)clientInfo didStartProgress];
-}
-
-static void didChangeProgress(WKPageRef page, const void *clientInfo)
-{
-    [(WK2BrowserWindowController *)clientInfo didChangeProgress:WKPageGetEstimatedProgress(page)];
-}
-
-static void didFinishProgress(WKPageRef page, const void *clientInfo)
-{
-    [(WK2BrowserWindowController *)clientInfo didFinishProgress];
-}
-
-static void didBecomeUnresponsive(WKPageRef page, const void *clientInfo)
-{
-    LOG(@"didBecomeUnresponsive");
-}
-
-static void didBecomeResponsive(WKPageRef page, const void *clientInfo)
-{
-    LOG(@"didBecomeResponsive");
-}
-
-static void processDidExit(WKPageRef page, const void *clientInfo)
-{
-    LOG(@"processDidExit");
-}
-
-static void didChangeBackForwardList(WKPageRef page, WKBackForwardListItemRef addedItem, WKArrayRef removedItems, const void *clientInfo)
-{
-    [(WK2BrowserWindowController *)clientInfo validateToolbar];
-}
-
-// MARK: Policy Client Callbacks
-
-static void decidePolicyForNavigationAction(WKPageRef page, WKFrameRef frame, WKFrameNavigationType navigationType, WKEventModifiers modifiers, WKEventMouseButton mouseButton, WKURLRequestRef request, WKFramePolicyListenerRef listener, WKTypeRef userData, const void* clientInfo)
-{
-    LOG(@"decidePolicyForNavigationAction");
-    WKFramePolicyListenerUse(listener);
-}
-
-static void decidePolicyForNewWindowAction(WKPageRef page, WKFrameRef frame, WKFrameNavigationType navigationType, WKEventModifiers modifiers, WKEventMouseButton mouseButton, WKURLRequestRef request, WKStringRef frameName, WKFramePolicyListenerRef listener, WKTypeRef userData, const void* clientInfo)
-{
-    LOG(@"decidePolicyForNewWindowAction");
-    WKFramePolicyListenerUse(listener);
-}
-
-static void decidePolicyForResponse(WKPageRef page, WKFrameRef frame, WKURLResponseRef response, WKURLRequestRef request, WKFramePolicyListenerRef listener, WKTypeRef userData, const void* clientInfo)
-{
-    WKFramePolicyListenerUse(listener);
-}
-
-// MARK: UI Client Callbacks
-
-static WKPageRef createNewPage(WKPageRef page, WKURLRequestRef request, WKDictionaryRef features, WKEventModifiers modifiers, WKEventMouseButton button, const void* clientInfo)
-{
-    LOG(@"createNewPage");
-    WK2BrowserWindowController *controller = [[WK2BrowserWindowController alloc] initWithContext:WKPageGetContext(page) pageGroup:WKPageGetPageGroup(page)];
-    [controller loadWindow];
-
-    return WKRetain(controller->_webView.pageRef);
-}
-
-static void showPage(WKPageRef page, const void *clientInfo)
-{
-    LOG(@"showPage");
-    [[(BrowserWindowController *)clientInfo window] orderFront:nil];
-}
-
-static void closePage(WKPageRef page, const void *clientInfo)
-{
-    LOG(@"closePage");
-    WKPageClose(page);
-    [[(BrowserWindowController *)clientInfo window] close];
-}
-
-static void runJavaScriptAlert(WKPageRef page, WKStringRef message, WKFrameRef frame, const void* clientInfo)
-{
-    NSAlert* alert = [[NSAlert alloc] init];
-
-    WKURLRef wkURL = WKFrameCopyURL(frame);
-    CFURLRef cfURL = WKURLCopyCFURL(0, wkURL);
-    WKRelease(wkURL);
-
-    [alert setMessageText:[NSString stringWithFormat:@"JavaScript alert dialog from %@.", [(NSURL *)cfURL absoluteString]]];
-    CFRelease(cfURL);
-
-    CFStringRef cfMessage = WKStringCopyCFString(0, message);
-    [alert setInformativeText:(NSString *)cfMessage];
-    CFRelease(cfMessage);
-
-    [alert addButtonWithTitle:@"OK"];
-
-    [alert runModal];
-    [alert release];
-}
-
-static bool runJavaScriptConfirm(WKPageRef page, WKStringRef message, WKFrameRef frame, const void* clientInfo)
-{
-    NSAlert* alert = [[NSAlert alloc] init];
-
-    WKURLRef wkURL = WKFrameCopyURL(frame);
-    CFURLRef cfURL = WKURLCopyCFURL(0, wkURL);
-    WKRelease(wkURL);
-
-    [alert setMessageText:[NSString stringWithFormat:@"JavaScript confirm dialog from %@.", [(NSURL *)cfURL absoluteString]]];
-    CFRelease(cfURL);
-
-    CFStringRef cfMessage = WKStringCopyCFString(0, message);
-    [alert setInformativeText:(NSString *)cfMessage];
-    CFRelease(cfMessage);
-
-    [alert addButtonWithTitle:@"OK"];
-    [alert addButtonWithTitle:@"Cancel"];
-
-    NSInteger button = [alert runModal];
-    [alert release];
-
-    return button == NSAlertFirstButtonReturn;
-}
-
-static WKStringRef runJavaScriptPrompt(WKPageRef page, WKStringRef message, WKStringRef defaultValue, WKFrameRef frame, const void* clientInfo)
-{
-    NSAlert* alert = [[NSAlert alloc] init];
-
-    WKURLRef wkURL = WKFrameCopyURL(frame);
-    CFURLRef cfURL = WKURLCopyCFURL(0, wkURL);
-    WKRelease(wkURL);
-
-    [alert setMessageText:[NSString stringWithFormat:@"JavaScript prompt dialog from %@.", [(NSURL *)cfURL absoluteString]]];
-    CFRelease(cfURL);
-
-    CFStringRef cfMessage = WKStringCopyCFString(0, message);
-    [alert setInformativeText:(NSString *)cfMessage];
-    CFRelease(cfMessage);
-
-    [alert addButtonWithTitle:@"OK"];
-    [alert addButtonWithTitle:@"Cancel"];
-
-    NSTextField* input = [[NSTextField alloc] initWithFrame:NSMakeRect(0, 0, 200, 24)];
-    CFStringRef cfDefaultValue = WKStringCopyCFString(0, defaultValue);
-    [input setStringValue:(NSString *)cfDefaultValue];
-    CFRelease(cfDefaultValue);
-
-    [alert setAccessoryView:input];
-
-    NSInteger button = [alert runModal];
-
-    NSString* result = nil;
-    if (button == NSAlertFirstButtonReturn) {
-        [input validateEditing];
-        result = [input stringValue];
-    }
-
-    [alert release];
-
-    if (!result)
-        return 0;
-    return WKStringCreateWithCFString((CFStringRef)result);
-}
-
-static void setStatusText(WKPageRef page, WKStringRef text, const void* clientInfo)
-{
-    LOG(@"setStatusText");
-}
-
-static void mouseDidMoveOverElement(WKPageRef page, WKHitTestResultRef hitTestResult, WKEventModifiers modifiers, WKTypeRef userData, const void *clientInfo)
-{
-    LOG(@"mouseDidMoveOverElement");
-}
-
-static WKRect getWindowFrame(WKPageRef page, const void* clientInfo)
-{
-    NSRect rect = [[(BrowserWindowController *)clientInfo window] frame];
-    WKRect wkRect;
-    wkRect.origin.x = rect.origin.x;
-    wkRect.origin.y = rect.origin.y;
-    wkRect.size.width = rect.size.width;
-    wkRect.size.height = rect.size.height;
-    return wkRect;
-}
-
-static void setWindowFrame(WKPageRef page, WKRect rect, const void* clientInfo)
-{
-    [[(BrowserWindowController *)clientInfo window] setFrame:NSMakeRect(rect.origin.x, rect.origin.y, rect.size.width, rect.size.height) display:YES];
-}
-
-static bool runBeforeUnloadConfirmPanel(WKPageRef page, WKStringRef message, WKFrameRef frame, const void* clientInfo)
-{
-    NSAlert *alert = [[NSAlert alloc] init];
-
-    WKURLRef wkURL = WKFrameCopyURL(frame);
-    CFURLRef cfURL = WKURLCopyCFURL(0, wkURL);
-    WKRelease(wkURL);
-
-    [alert setMessageText:[NSString stringWithFormat:@"BeforeUnload confirm dialog from %@.", [(NSURL *)cfURL absoluteString]]];
-    CFRelease(cfURL);
-
-    CFStringRef cfMessage = WKStringCopyCFString(0, message);
-    [alert setInformativeText:(NSString *)cfMessage];
-    CFRelease(cfMessage);
-
-    [alert addButtonWithTitle:@"OK"];
-    [alert addButtonWithTitle:@"Cancel"];
-
-    NSInteger button = [alert runModal];
-    [alert release];
-
-    return button == NSAlertFirstButtonReturn;
-}
-
-static void runOpenPanel(WKPageRef page, WKFrameRef frame, WKOpenPanelParametersRef parameters, WKOpenPanelResultListenerRef listener, const void* clientInfo)
-{
-    NSOpenPanel *openPanel = [NSOpenPanel openPanel];
-    [openPanel setAllowsMultipleSelection:WKOpenPanelParametersGetAllowsMultipleFiles(parameters)];
-
-    WKRetain(listener);
-
-    [openPanel beginSheetModalForWindow:[(BrowserWindowController *)clientInfo window] completionHandler:^(NSInteger result) {
-        if (result == NSFileHandlingPanelOKButton) {
-            WKMutableArrayRef fileURLs = WKMutableArrayCreate();
-
-            NSURL *nsURL;
-            for (nsURL in [openPanel URLs]) {
-                WKURLRef wkURL = WKURLCreateWithCFURL((CFURLRef)nsURL);
-                WKArrayAppendItem(fileURLs, wkURL);
-                WKRelease(wkURL);
-            }
-
-            WKOpenPanelResultListenerChooseFiles(listener, fileURLs);
-
-            WKRelease(fileURLs);
-        } else
-            WKOpenPanelResultListenerCancel(listener);
-        
-        WKRelease(listener);
-    }];
-}
-
-- (void)awakeFromNib
-{
-    _webView = [[WKView alloc] initWithFrame:[containerView bounds] contextRef:_context pageGroupRef:_pageGroup];
-
-    [_webView setAutoresizingMask:(NSViewWidthSizable | NSViewHeightSizable)];
-    [containerView addSubview:_webView];
-    
-    WKPageLoaderClient loadClient = {
-        kWKPageLoaderClientCurrentVersion,
-        self,   /* clientInfo */
-        didStartProvisionalLoadForFrame,
-        didReceiveServerRedirectForProvisionalLoadForFrame,
-        didFailProvisionalLoadWithErrorForFrame,
-        didCommitLoadForFrame,
-        didFinishDocumentLoadForFrame,
-        didFinishLoadForFrame,
-        didFailLoadWithErrorForFrame,
-        didSameDocumentNavigationForFrame,
-        didReceiveTitleForFrame,
-        didFirstLayoutForFrame,
-        didFirstVisuallyNonEmptyLayoutForFrame,
-        didRemoveFrameFromHierarchy,
-        didDisplayInsecureContentForFrame,
-        didRunInsecureContentForFrame,
-        0, // canAuthenticateAgainstProtectionSpaceInFrame
-        0, // didReceiveAuthenticationChallengeInFrame
-        didStartProgress,
-        didChangeProgress,
-        didFinishProgress,
-        didBecomeUnresponsive,
-        didBecomeResponsive,
-        processDidExit,
-        didChangeBackForwardList,
-        0, // shouldGoToBackForwardItem
-        0, // didFailToInitializePlugin
-        didDetectXSSForFrame,
-        0, // didNewFirstVisuallyNonEmptyLayout
-        0, // willGoToBackForwardListItem
-        0, // interactionOccurredWhileProcessUnresponsive
-        0, // pluginDidFail_deprecatedForUseWithV1
-        0, // didReceiveIntentForFrame
-        0, // registerIntentServiceForFrame
-        0, // didLayout
-        0, // pluginLoadPolicy
-        0, // pluginDidFail
-    };
-    WKPageSetPageLoaderClient(_webView.pageRef, &loadClient);
-    
-    WKPagePolicyClient policyClient = {
-        kWKPagePolicyClientCurrentVersion,
-        self,       /* clientInfo */
-        decidePolicyForNavigationAction,
-        decidePolicyForNewWindowAction,
-        decidePolicyForResponse,
-        0           /* unableToImplementPolicy */
-    };
-    WKPageSetPagePolicyClient(_webView.pageRef, &policyClient);
-
-    WKPageUIClient uiClient = {
-        kWKPageUIClientCurrentVersion,
-        self,       /* clientInfo */
-        0,          /* createNewPage_deprecatedForUseWithV0 */
-        showPage,
-        closePage,
-        0,          /* takeFocus */
-        0,          /* focus */
-        0,          /* unfocus */
-        runJavaScriptAlert,
-        runJavaScriptConfirm,
-        runJavaScriptPrompt,
-        setStatusText,
-        0,          /* mouseDidMoveOverElement_deprecatedForUseWithV0 */
-        0,          /* missingPluginButtonClicked */
-        0,          /* didNotHandleKeyEvent */
-        0,          /* didNotHandleWheelEvent */
-        0,          /* toolbarsAreVisible */
-        0,          /* setToolbarsAreVisible */
-        0,          /* menuBarIsVisible */
-        0,          /* setMenuBarIsVisible */
-        0,          /* statusBarIsVisible */
-        0,          /* setStatusBarIsVisible */
-        0,          /* isResizable */
-        0,          /* setIsResizable */
-        getWindowFrame,
-        setWindowFrame,
-        runBeforeUnloadConfirmPanel,
-        0,          /* didDraw */
-        0,          /* pageDidScroll */
-        0,          /* exceededDatabaseQuota */
-        runOpenPanel,
-        0,          /* decidePolicyForGeolocationPermissionRequest */
-        0, // headerHeight
-        0, // footerHeight
-        0, // drawHeader
-        0, // drawFooter
-        0, // printFrame
-        0, // showModal
-        0, // didCompleteRubberBandForMainFrame
-        0, // saveDataToFileInDownloadsFolder
-        0, // shouldInterruptJavaScript
-        createNewPage,
-        mouseDidMoveOverElement,
-        0, // decidePolicyForNotificationPermissionRequest
-        0, // unavailablePluginButtonClicked_deprecatedForUseWithV1
-        0, // showColorPicker
-        0, // hideColorPicker
-        0, // unavailablePluginButtonClicked
-    };
-    WKPageSetPageUIClient(_webView.pageRef, &uiClient);
-}
-
-- (void)didStartProgress
-{
-    [progressIndicator setDoubleValue:0.0];
-    [progressIndicator setHidden:NO];
-}
-
-- (void)didChangeProgress:(double)value
-{
-    [progressIndicator setDoubleValue:value];
-}
-
-- (void)didFinishProgress
-{
-    [progressIndicator setHidden:YES];
-    [progressIndicator setDoubleValue:1.0];
-}
-
-- (void)updateTextFieldFromURL:(WKURLRef)URLRef
-{
-    if (!URLRef)
-        return;
-
-    static WKURLRef emptyURL = 0;
-    if (!emptyURL)
-        emptyURL = WKURLCreateWithUTF8CString("");
-
-    if (WKURLIsEqual(URLRef, emptyURL))
-        return;
-
-    CFURLRef cfSourceURL = WKURLCopyCFURL(0, URLRef);
-    [urlText setStringValue:(NSString*)CFURLGetString(cfSourceURL)];
-    CFRelease(cfSourceURL);
-}
-
-- (void)updateProvisionalURLForFrame:(WKFrameRef)frame
-{
-    WKURLRef url = WKFrameCopyProvisionalURL(frame);
-    if (!url)
-        return;
-    [self updateTextFieldFromURL:url];
-    WKRelease(url);
-}
-
-- (void)updateCommittedURLForFrame:(WKFrameRef)frame
-{
-    WKURLRef url = WKFrameCopyURL(frame);
-    if (!url)
-        return;
-    [self updateTextFieldFromURL:url];
-    WKRelease(url);
-}
-
-- (void)didStartProvisionalLoadForFrame:(WKFrameRef)frame
-{
-    if (!WKFrameIsMainFrame(frame))
-        return;
-
-    [self updateProvisionalURLForFrame:frame];
-}
-
-- (void)didReceiveServerRedirectForProvisionalLoadForFrame:(WKFrameRef)frame
-{
-    if (!WKFrameIsMainFrame(frame))
-        return;
-
-    [self updateProvisionalURLForFrame:frame];
-}
-
-- (void)didFailProvisionalLoadWithErrorForFrame:(WKFrameRef)frame
-{
-    if (!WKFrameIsMainFrame(frame))
-        return;
-
-    [self updateProvisionalURLForFrame:frame];
-}
-
-- (void)didFailLoadWithErrorForFrame:(WKFrameRef)frame
-{
-    if (!WKFrameIsMainFrame(frame))
-        return;
-
-    [self updateProvisionalURLForFrame:frame];
-}
-
-- (void)didSameDocumentNavigationForFrame:(WKFrameRef)frame
-{
-}
-
-- (void)didCommitLoadForFrame:(WKFrameRef)frame
-{
-    if (!WKFrameIsMainFrame(frame))
-        return;
-
-    [self updateCommittedURLForFrame:frame];
-}
-
-- (void)loadURLString:(NSString *)urlString
-{
-    // FIXME: We shouldn't have to set the url text here.
-    [urlText setStringValue:urlString];
-    [self fetch:nil];
-}
-
-- (IBAction)performFindPanelAction:(id)sender
-{
-    [findPanelWindow makeKeyAndOrderFront:sender];
-}
-
-- (IBAction)find:(id)sender
-{
-    WKStringRef string = WKStringCreateWithCFString((CFStringRef)[sender stringValue]);
-
-    WKPageFindString(_webView.pageRef, string, kWKFindOptionsCaseInsensitive | kWKFindOptionsWrapAround | kWKFindOptionsShowFindIndicator | kWKFindOptionsShowOverlay, 100);
-}
-
-@end
diff --git a/Tools/MiniBrowser/mac/WebBundle/Info.plist b/Tools/MiniBrowser/mac/WebBundle/Info.plist
deleted file mode 100644
index c285a47..0000000
--- a/Tools/MiniBrowser/mac/WebBundle/Info.plist
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
-	<key>CFBundleDevelopmentRegion</key>
-	<string>English</string>
-	<key>CFBundleExecutable</key>
-	<string>${EXECUTABLE_NAME}</string>
-	<key>CFBundleIdentifier</key>
-	<string>com.yourcompany.${PRODUCT_NAME:rfc1034identifier}</string>
-	<key>CFBundleInfoDictionaryVersion</key>
-	<string>6.0</string>
-	<key>CFBundlePackageType</key>
-	<string>BNDL</string>
-	<key>CFBundleShortVersionString</key>
-	<string>1.0</string>
-	<key>CFBundleSignature</key>
-	<string>????</string>
-	<key>CFBundleVersion</key>
-	<string>1</string>
-</dict>
-</plist>
diff --git a/Tools/MiniBrowser/mac/WebBundle/WebBundleMain.m b/Tools/MiniBrowser/mac/WebBundle/WebBundleMain.m
deleted file mode 100644
index 16e86b4..0000000
--- a/Tools/MiniBrowser/mac/WebBundle/WebBundleMain.m
+++ /dev/null
@@ -1,106 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include <Cocoa/Cocoa.h>
-#include <WebKit2/WKBundle.h>
-#include <WebKit2/WKBundleFrame.h>
-#include <WebKit2/WKBundleInitialize.h>
-#include <WebKit2/WKBundlePage.h>
-#include <WebKit2/WKString.h>
-#include <WebKit2/WKStringCF.h>
-#include <WebKit2/WKURLCF.h>
-#include <stdio.h>
-
-static WKBundleRef globalBundle;
-
-// WKBundlePageClient functions
-
-void didClearWindowObjectForFrame(WKBundlePageRef page, WKBundleFrameRef frame, WKBundleScriptWorldRef world, const void *clientInfo)
-{
-    WKURLRef wkURL = WKBundleFrameCopyURL(WKBundlePageGetMainFrame(page));
-    CFURLRef cfURL = WKURLCopyCFURL(0, wkURL);
-    WKRelease(wkURL);
-
-    LOG(@"WKBundlePageClient - didClearWindowForFrame %@", [(NSURL *)cfURL absoluteString]);
-    if (cfURL)
-        CFRelease(cfURL);
-
-    WKStringRef messageName = WKStringCreateWithCFString(CFSTR("Callback"));
-    WKStringRef messageBody = WKStringCreateWithCFString(CFSTR("Window was cleared"));
-    WKBundlePostMessage(globalBundle, messageName, messageBody);
-    WKRelease(messageName);
-    WKRelease(messageBody);
-}
-
-
-// WKBundleClient
-
-void didCreatePage(WKBundleRef bundle, WKBundlePageRef page, const void* clientInfo)
-{
-    LOG(@"WKBundleClient - didCreatePage\n");
-
-    WKBundlePageLoaderClient client;
-    memset(&client, 0, sizeof(client));
-    client.didClearWindowObjectForFrame = didClearWindowObjectForFrame;
-
-    WKBundlePageSetPageLoaderClient(page, &client);
-}
-
-void willDestroyPage(WKBundleRef bundle, WKBundlePageRef page, const void* clientInfo)
-{
-    LOG(@"WKBundleClient - willDestroyPage\n");
-}
-
-void didReceiveMessage(WKBundleRef bundle, WKStringRef messageName, WKTypeRef messageBody, const void *clientInfo)
-{
-    CFStringRef cfMessageName = WKStringCopyCFString(0, messageName);
-
-    WKTypeID typeID = WKGetTypeID(messageBody);
-    if (typeID == WKStringGetTypeID()) {
-        CFStringRef cfMessageBody = WKStringCopyCFString(0, (WKStringRef)messageBody);
-        LOG(@"WKBundleClient - didReceiveMessage - MessageName: %@ MessageBody %@", cfMessageName, cfMessageBody);
-        CFRelease(cfMessageBody);
-    } else {
-        LOG(@"WKBundleClient - didReceiveMessage - MessageName: %@ (MessageBody Unhandled)\n", cfMessageName);
-    }
-
-    CFRelease(cfMessageName);
-}
-
-void WKBundleInitialize(WKBundleRef bundle, WKTypeRef initializationUserData)
-{
-    globalBundle = bundle;
-
-    WKBundleClient client = {
-        kWKBundleClientCurrentVersion,
-        0,
-        didCreatePage,
-        willDestroyPage,
-        0, // didInitializePageGroup
-        didReceiveMessage,
-        0 // didReceiveMessageToPage
-    };
-    WKBundleSetClient(bundle, &client);
-}
diff --git a/Tools/MiniBrowser/mac/main.m b/Tools/MiniBrowser/mac/main.m
deleted file mode 100644
index 7f56737..0000000
--- a/Tools/MiniBrowser/mac/main.m
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import <Cocoa/Cocoa.h>
-
-int main(int argc, char *argv[])
-{
-    return NSApplicationMain(argc,  (const char **) argv);
-}
diff --git a/Tools/MiniBrowser/qt/BrowserWindow.cpp b/Tools/MiniBrowser/qt/BrowserWindow.cpp
deleted file mode 100644
index 8472d5c..0000000
--- a/Tools/MiniBrowser/qt/BrowserWindow.cpp
+++ /dev/null
@@ -1,210 +0,0 @@
-/*
- * Copyright (C) 2010, 2011 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2010 University of Szeged
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "BrowserWindow.h"
-
-#include "private/qquickwebpage_p.h"
-#include "private/qquickwebview_p.h"
-#include "utils.h"
-
-#include <QQmlEngine>
-#include <QDir>
-#include <QPointF>
-
-BrowserWindow::BrowserWindow(WindowOptions* options)
-    : m_windowOptions(options)
-{
-    setTitle("MiniBrowser");
-    setFlags(Qt::Window | Qt::WindowTitleHint | Qt::WindowMinMaxButtonsHint | Qt::WindowCloseButtonHint);
-    setResizeMode(QQuickView::SizeRootObjectToView);
-
-    // This allows starting MiniBrowser from the build directory without previously defining QML_IMPORT_PATH.
-    QDir qmlImportDir = QDir(QCoreApplication::applicationDirPath());
-    qmlImportDir.cd("../imports");
-    engine()->addImportPath(qmlImportDir.canonicalPath());
-
-    Utils* utils = new Utils(this);
-    engine()->rootContext()->setContextProperty("utils", utils);
-    engine()->rootContext()->setContextProperty("options", options);
-    setSource(QUrl("qrc:///qml/BrowserWindow.qml"));
-    connect(rootObject(), SIGNAL(pageTitleChanged(QString)), this, SLOT(onTitleChanged(QString)));
-    connect(rootObject(), SIGNAL(newWindow(QString)), this, SLOT(newWindow(QString)));
-    if (options->startFullScreen())
-        showFullScreen();
-    else {
-        if (options->startMaximized())
-            setWindowState(Qt::WindowMaximized);
-        else
-            resize(options->requestedWindowSize());
-        show();
-    }
-
-    QQmlContext* context = rootContext();
-    context->setContextProperty("Window", this);
-
-    if (!options->userAgent().isNull())
-        webViewExperimental()->setUserAgent(options->userAgent());
-
-    // Zoom values are chosen to be like in Mozilla Firefox 3.
-    m_zoomLevels << 0.3 << 0.5 << 0.67 << 0.8 << 0.9
-                 << 1
-                 << 1.11 << 1.22 << 1.33 << 1.5 << 1.7 << 2 << 2.4 << 3;
-
-    m_currentZoomLevel = m_zoomLevels.indexOf(1);
-}
-
-QQuickWebView* BrowserWindow::webView() const
-{
-    return rootObject()->property("webview").value<QQuickWebView*>();
-}
-
-QQuickWebViewExperimental* BrowserWindow::webViewExperimental() const
-{
-    return webView()->property("experimental").value<QQuickWebViewExperimental*>();
-}
-
-void BrowserWindow::load(const QString& url)
-{
-    QUrl completedUrl = Utils::urlFromUserInput(url);
-    QMetaObject::invokeMethod(rootObject(), "load", Qt::DirectConnection, Q_ARG(QVariant, completedUrl));
-}
-
-void BrowserWindow::reload()
-{
-    QMetaObject::invokeMethod(rootObject(), "reload", Qt::DirectConnection);
-}
-
-void BrowserWindow::focusAddressBar()
-{
-    QMetaObject::invokeMethod(rootObject(), "focusAddressBar", Qt::DirectConnection);
-}
-
-void BrowserWindow::toggleFind()
-{
-    QMetaObject::invokeMethod(rootObject(), "toggleFind", Qt::DirectConnection);
-}
-
-BrowserWindow* BrowserWindow::newWindow(const QString& url)
-{
-    BrowserWindow* window = new BrowserWindow(m_windowOptions);
-    window->load(url);
-    return window;
-}
-
-void BrowserWindow::updateVisualMockTouchPoints(const QList<QTouchEvent::TouchPoint>& touchPoints)
-{
-    if (touchPoints.isEmpty()) {
-        // Hide all touch indicator items.
-        foreach (QQuickItem* item, m_activeMockComponents.values())
-            item->setProperty("pressed", false);
-
-        return;
-    }
-
-    foreach (const QTouchEvent::TouchPoint& touchPoint, touchPoints) {
-        QQuickItem* mockTouchPointItem = m_activeMockComponents.value(touchPoint.id());
-
-        if (!mockTouchPointItem) {
-            QQmlComponent touchMockPointComponent(engine(), QUrl("qrc:///qml/MockTouchPoint.qml"));
-            mockTouchPointItem = qobject_cast<QQuickItem*>(touchMockPointComponent.create());
-            Q_ASSERT(mockTouchPointItem);
-            m_activeMockComponents.insert(touchPoint.id(), mockTouchPointItem);
-            mockTouchPointItem->setProperty("pointId", QVariant(touchPoint.id()));
-            mockTouchPointItem->setParent(rootObject());
-            mockTouchPointItem->setParentItem(rootObject());
-        }
-
-        QRectF touchRect = touchPoint.rect();
-        mockTouchPointItem->setX(touchRect.center().x());
-        mockTouchPointItem->setY(touchRect.center().y());
-        mockTouchPointItem->setWidth(touchRect.width());
-        mockTouchPointItem->setHeight(touchRect.height());
-        mockTouchPointItem->setProperty("pressed", QVariant(touchPoint.state() != Qt::TouchPointReleased));
-    }
-}
-
-void BrowserWindow::screenshot()
-{
-}
-
-BrowserWindow::~BrowserWindow()
-{
-}
-
-void BrowserWindow::onTitleChanged(QString title)
-{
-    if (title.isEmpty())
-        title = QLatin1String("MiniBrowser");
-    setTitle(title);
-}
-
-void BrowserWindow::zoomIn()
-{
-    if (m_currentZoomLevel < m_zoomLevels.size() - 1)
-        ++m_currentZoomLevel;
-    webView()->setZoomFactor(m_zoomLevels[m_currentZoomLevel]);
-}
-
-void BrowserWindow::zoomOut()
-{
-    if (m_currentZoomLevel > 0)
-        --m_currentZoomLevel;
-    webView()->setZoomFactor(m_zoomLevels[m_currentZoomLevel]);
-}
-
-void BrowserWindow::keyPressEvent(QKeyEvent* event)
-{
-
-    if (event->modifiers() & Qt::ControlModifier) {
-        bool handled;
-        if ((handled = event->key() == Qt::Key_Plus))
-            zoomIn();
-        else if ((handled = event->key() == Qt::Key_Minus))
-            zoomOut();
-
-        if (handled) {
-            event->accept();
-            return;
-        }
-    }
-    QQuickView::keyPressEvent(event);
-}
-
-void BrowserWindow::wheelEvent(QWheelEvent* event)
-{
-    if (event->modifiers() & Qt::ControlModifier && event->orientation() == Qt::Vertical) {
-        if (event->delta() > 0)
-            zoomIn();
-        else
-            zoomOut();
-
-        event->accept();
-        return;
-    }
-    QQuickView::wheelEvent(event);
-}
diff --git a/Tools/MiniBrowser/qt/BrowserWindow.h b/Tools/MiniBrowser/qt/BrowserWindow.h
deleted file mode 100644
index 2ecfc14..0000000
--- a/Tools/MiniBrowser/qt/BrowserWindow.h
+++ /dev/null
@@ -1,76 +0,0 @@
-/*
- * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2010 University of Szeged
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef BrowserWindow_h
-#define BrowserWindow_h
-
-#include "MiniBrowserApplication.h"
-#include <QStringList>
-#include <QtQuick/QQuickView>
-
-class QQuickWebView;
-class QQuickWebViewExperimental;
-
-class BrowserWindow : public QQuickView {
-    Q_OBJECT
-
-public:
-    BrowserWindow(WindowOptions*);
-    ~BrowserWindow();
-    void load(const QString& url);
-    void reload();
-    void focusAddressBar();
-    void toggleFind();
-    QQuickWebView* webView() const;
-    QQuickWebViewExperimental* webViewExperimental() const;
-
-    void updateVisualMockTouchPoints(const QList<QTouchEvent::TouchPoint>& touchPoints);
-
-public Q_SLOTS:
-    BrowserWindow* newWindow(const QString& url = "about:blank");
-
-protected Q_SLOTS:
-    void screenshot();
-
-private Q_SLOTS:
-    void onTitleChanged(QString);
-
-private:
-    void zoomIn();
-    void zoomOut();
-
-    virtual void keyPressEvent(QKeyEvent*);
-    virtual void wheelEvent(QWheelEvent*);
-
-    WindowOptions* m_windowOptions;
-    QHash<int, QQuickItem*> m_activeMockComponents;
-    QVector<qreal> m_zoomLevels;
-    unsigned m_currentZoomLevel;
-};
-
-#endif
diff --git a/Tools/MiniBrowser/qt/MiniBrowser.pro b/Tools/MiniBrowser/qt/MiniBrowser.pro
deleted file mode 100644
index 3db1c78..0000000
--- a/Tools/MiniBrowser/qt/MiniBrowser.pro
+++ /dev/null
@@ -1,38 +0,0 @@
-# -------------------------------------------------------------------
-# Project file for the WebKit2 MiniBrowser binary
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-TEMPLATE = app
-
-WEBKIT += wtf
-
-INCLUDEPATH += \
-    $${ROOT_WEBKIT_DIR}/Source/WebCore/platform/qt \
-    $${ROOT_WEBKIT_DIR}/Tools/DumpRenderTree/qt/
-
-SOURCES += \
-    BrowserWindow.cpp \
-    main.cpp \
-    MiniBrowserApplication.cpp \
-    UrlLoader.cpp \
-    utils.cpp \
-
-HEADERS += \
-    BrowserWindow.h \
-    MiniBrowserApplication.h \
-    UrlLoader.h \
-    utils.h \
-
-TARGET = MiniBrowser
-DESTDIR = $${ROOT_BUILD_DIR}/bin
-
-have?(FONTCONFIG): PKGCONFIG += fontconfig
-
-QT += network gui-private quick quick-private webkit webkit-private
-macx: QT += xml
-
-RESOURCES += MiniBrowser.qrc
-
-OTHER_FILES += qml/*
diff --git a/Tools/MiniBrowser/qt/MiniBrowser.qrc b/Tools/MiniBrowser/qt/MiniBrowser.qrc
deleted file mode 100644
index 3fa6208..0000000
--- a/Tools/MiniBrowser/qt/MiniBrowser.qrc
+++ /dev/null
@@ -1,37 +0,0 @@
-<RCC>
-    <qresource prefix="/">
-        <file>icons/checkbox_checked.png</file>
-        <file>icons/checkbox_unchecked.png</file>
-        <file>icons/contents_width.png</file>
-        <file>icons/favicon.png</file>
-        <file>icons/find.png</file>
-        <file>icons/folder.png</file>
-        <file>icons/info.png</file>
-        <file>icons/next.png</file>
-        <file>icons/plus.png</file>
-        <file>icons/previous.png</file>
-        <file>icons/refresh.png</file>
-        <file>icons/stop.png</file>
-        <file>icons/titlebar.png</file>
-        <file>icons/touch.png</file>
-        <file>icons/touchpoint.png</file>
-        <file>icons/up.png</file>
-        <file>js/MultiSelect.js</file>
-        <file>qml/AlertDialog.qml</file>
-        <file>qml/AuthenticationDialog.qml</file>
-        <file>qml/BrowserWindow.qml</file>
-        <file>qml/CheckBox.qml</file>
-        <file>qml/ColorChooser.qml</file>
-        <file>qml/ConfirmDialog.qml</file>
-        <file>qml/Dialog.qml</file>
-        <file>qml/DialogButton.qml</file>
-        <file>qml/DialogLineInput.qml</file>
-        <file>qml/FilePicker.qml</file>
-        <file>qml/ItemSelector.qml</file>
-        <file>qml/MockTouchPoint.qml</file>
-        <file>qml/PromptDialog.qml</file>
-        <file>qml/ProxyAuthenticationDialog.qml</file>
-        <file>qml/ScrollIndicator.qml</file>
-        <file>qml/ViewportInfoItem.qml</file>
-    </qresource>
-</RCC>
diff --git a/Tools/MiniBrowser/qt/MiniBrowserApplication.cpp b/Tools/MiniBrowser/qt/MiniBrowserApplication.cpp
deleted file mode 100644
index 6d5c6a6..0000000
--- a/Tools/MiniBrowser/qt/MiniBrowserApplication.cpp
+++ /dev/null
@@ -1,378 +0,0 @@
-/*
- * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2010 University of Szeged
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include "MiniBrowserApplication.h"
-
-#include "BrowserWindow.h"
-#if HAVE(QTTESTSUPPORT)
-#include "QtTestSupport.h"
-#endif
-#include "private/qquickwebview_p.h"
-#include "utils.h"
-#include <QRegExp>
-#include <QEvent>
-#include <QMouseEvent>
-#include <QTouchEvent>
-
-static inline QRectF touchRectForPosition(QPointF centerPoint)
-{
-    QRectF touchRect(0, 0, 40, 40);
-    touchRect.moveCenter(centerPoint);
-    return touchRect;
-}
-
-static inline bool isTouchEvent(const QEvent* event)
-{
-    switch (event->type()) {
-    case QEvent::TouchBegin:
-    case QEvent::TouchUpdate:
-    case QEvent::TouchEnd:
-        return true;
-    default:
-        return false;
-    }
-}
-
-static inline bool isMouseEvent(const QEvent* event)
-{
-    switch (event->type()) {
-    case QEvent::MouseButtonPress:
-    case QEvent::MouseMove:
-    case QEvent::MouseButtonRelease:
-    case QEvent::MouseButtonDblClick:
-        return true;
-    default:
-        return false;
-    }
-}
-
-MiniBrowserApplication::MiniBrowserApplication(int& argc, char** argv)
-    : QGuiApplication(argc, argv)
-    , m_realTouchEventReceived(false)
-    , m_pendingFakeTouchEventCount(0)
-    , m_isRobotized(false)
-    , m_robotTimeoutSeconds(0)
-    , m_robotExtraTimeSeconds(0)
-    , m_windowOptions(this)
-    , m_holdingControl(false)
-{
-    setOrganizationName("Nokia");
-    setApplicationName("QtMiniBrowser");
-    setApplicationVersion("0.1");
-
-    handleUserOptions();
-}
-
-bool MiniBrowserApplication::notify(QObject* target, QEvent* event)
-{
-    // We try to be smart, if we received real touch event, we are probably on a device
-    // with touch screen, and we should not have touch mocking.
-
-    if (!event->spontaneous() || m_realTouchEventReceived || !m_windowOptions.touchMockingEnabled())
-        return QGuiApplication::notify(target, event);
-
-    if (isTouchEvent(event)) {
-        if (m_pendingFakeTouchEventCount)
-            --m_pendingFakeTouchEventCount;
-        else
-            m_realTouchEventReceived = true;
-        return QGuiApplication::notify(target, event);
-    }
-
-    BrowserWindow* browserWindow = qobject_cast<BrowserWindow*>(target);
-    if (!browserWindow)
-        return QGuiApplication::notify(target, event);
-
-    m_holdingControl = QGuiApplication::keyboardModifiers().testFlag(Qt::ControlModifier);
-
-    // In QML events are propagated through parents. But since the WebView
-    // may consume key events, a shortcut might never reach the top QQuickItem.
-    // Therefore we are checking here for shortcuts.
-    if (event->type() == QEvent::KeyPress) {
-        QKeyEvent* keyEvent = static_cast<QKeyEvent*>(event);
-        if ((keyEvent->key() == Qt::Key_R && keyEvent->modifiers() == Qt::ControlModifier) || keyEvent->key() == Qt::Key_F5) {
-            browserWindow->reload();
-            return true;
-        }
-        if ((keyEvent->key() == Qt::Key_L && keyEvent->modifiers() == Qt::ControlModifier) || keyEvent->key() == Qt::Key_F6) {
-            browserWindow->focusAddressBar();
-            return true;
-        }
-        if ((keyEvent->key() == Qt::Key_F && keyEvent->modifiers() == Qt::ControlModifier) || keyEvent->key() == Qt::Key_F3) {
-            browserWindow->toggleFind();
-            return true;
-        }
-    }
-
-    if (event->type() == QEvent::KeyRelease && static_cast<QKeyEvent*>(event)->key() == Qt::Key_Control) {
-        foreach (int id, m_heldTouchPoints)
-            if (m_touchPoints.contains(id) && !QGuiApplication::mouseButtons().testFlag(Qt::MouseButton(id))) {
-                m_touchPoints[id].setState(Qt::TouchPointReleased);
-                m_heldTouchPoints.remove(id);
-            } else
-                m_touchPoints[id].setState(Qt::TouchPointStationary);
-
-        sendTouchEvent(browserWindow, m_heldTouchPoints.isEmpty() ? QEvent::TouchEnd : QEvent::TouchUpdate, static_cast<QKeyEvent*>(event)->timestamp());
-    }
-
-    if (isMouseEvent(event)) {
-        const QMouseEvent* const mouseEvent = static_cast<QMouseEvent*>(event);
-
-        QTouchEvent::TouchPoint touchPoint;
-        touchPoint.setPressure(1);
-
-        QEvent::Type touchType = QEvent::None;
-
-        switch (mouseEvent->type()) {
-        case QEvent::MouseButtonPress:
-            touchPoint.setId(mouseEvent->button());
-            if (m_touchPoints.contains(touchPoint.id())) {
-                touchPoint.setState(Qt::TouchPointMoved);
-                touchType = QEvent::TouchUpdate;
-            } else {
-                touchPoint.setState(Qt::TouchPointPressed);
-                // Check if more buttons are held down than just the event triggering one.
-                if (mouseEvent->buttons() > mouseEvent->button())
-                    touchType = QEvent::TouchUpdate;
-                else
-                    touchType = QEvent::TouchBegin;
-            }
-            break;
-        case QEvent::MouseMove:
-            if (!mouseEvent->buttons()) {
-                // We have to swallow the event instead of propagating it,
-                // since we avoid sending the mouse release events and if the
-                // Flickable is the mouse grabber it would receive the event
-                // and would move the content.
-                event->accept();
-                return true;
-            }
-            touchType = QEvent::TouchUpdate;
-            touchPoint.setId(mouseEvent->buttons());
-            touchPoint.setState(Qt::TouchPointMoved);
-            break;
-        case QEvent::MouseButtonRelease:
-            // Check if any buttons are still held down after this event.
-            if (mouseEvent->buttons())
-                touchType = QEvent::TouchUpdate;
-            else
-                touchType = QEvent::TouchEnd;
-            touchPoint.setId(mouseEvent->button());
-            touchPoint.setState(Qt::TouchPointReleased);
-            break;
-        case QEvent::MouseButtonDblClick:
-            // Eat double-clicks, their accompanying press event is all we need.
-            event->accept();
-            return true;
-        default:
-            Q_ASSERT_X(false, "multi-touch mocking", "unhandled event type");
-        }
-
-        // A move can have resulted in multiple buttons, so we need check them individually.
-        if (touchPoint.id() & Qt::LeftButton)
-            updateTouchPoint(mouseEvent, touchPoint, Qt::LeftButton);
-        if (touchPoint.id() & Qt::MidButton)
-            updateTouchPoint(mouseEvent, touchPoint, Qt::MidButton);
-        if (touchPoint.id() & Qt::RightButton)
-            updateTouchPoint(mouseEvent, touchPoint, Qt::RightButton);
-
-        if (m_holdingControl && touchPoint.state() == Qt::TouchPointReleased) {
-            // We avoid sending the release event because the Flickable is
-            // listening to mouse events and would start a bounce-back
-            // animation if it received a mouse release.
-            event->accept();
-            return true;
-        }
-
-        // Update states for all other touch-points
-        for (QHash<int, QTouchEvent::TouchPoint>::iterator it = m_touchPoints.begin(), end = m_touchPoints.end(); it != end; ++it) {
-            if (!(it.value().id() & touchPoint.id()))
-                it.value().setState(Qt::TouchPointStationary);
-        }
-
-        Q_ASSERT(touchType != QEvent::None);
-
-        if (!sendTouchEvent(browserWindow, touchType, mouseEvent->timestamp()))
-            return QGuiApplication::notify(target, event);
-
-        event->accept();
-        return true;
-    }
-
-    return QGuiApplication::notify(target, event);
-}
-
-void MiniBrowserApplication::updateTouchPoint(const QMouseEvent* mouseEvent, QTouchEvent::TouchPoint touchPoint, Qt::MouseButton mouseButton)
-{
-    // Ignore inserting additional touch points if Ctrl isn't held because it produces
-    // inconsistent touch events and results in assers in the gesture recognizers.
-    if (!m_holdingControl && m_touchPoints.size() && !m_touchPoints.contains(mouseButton))
-        return;
-
-    if (m_holdingControl && touchPoint.state() == Qt::TouchPointReleased) {
-        m_heldTouchPoints.insert(mouseButton);
-        return;
-    }
-
-    // Gesture recognition uses the screen position for the initial threshold
-    // but since the canvas translates touch events we actually need to pass
-    // the screen position as the scene position to deliver the appropriate
-    // coordinates to the target.
-    touchPoint.setRect(touchRectForPosition(mouseEvent->localPos()));
-    touchPoint.setSceneRect(touchRectForPosition(mouseEvent->screenPos()));
-
-    if (touchPoint.state() == Qt::TouchPointPressed)
-        touchPoint.setStartScenePos(mouseEvent->screenPos());
-    else {
-        const QTouchEvent::TouchPoint& oldTouchPoint = m_touchPoints[mouseButton];
-        touchPoint.setStartScenePos(oldTouchPoint.startScenePos());
-        touchPoint.setLastPos(oldTouchPoint.pos());
-        touchPoint.setLastScenePos(oldTouchPoint.scenePos());
-    }
-
-    // Update current touch-point.
-    touchPoint.setId(mouseButton);
-    m_touchPoints.insert(mouseButton, touchPoint);
-}
-
-
-bool MiniBrowserApplication::sendTouchEvent(BrowserWindow* browserWindow, QEvent::Type type, ulong timestamp)
-{
-    static QTouchDevice* device = 0;
-    if (!device) {
-        device = new QTouchDevice;
-        device->setType(QTouchDevice::TouchScreen);
-        QWindowSystemInterface::registerTouchDevice(device);
-    }
-
-    m_pendingFakeTouchEventCount++;
-
-    const QList<QTouchEvent::TouchPoint>& currentTouchPoints = m_touchPoints.values();
-    Qt::TouchPointStates touchPointStates = 0;
-    foreach (const QTouchEvent::TouchPoint& touchPoint, currentTouchPoints)
-        touchPointStates |= touchPoint.state();
-
-    QTouchEvent event(type, device, Qt::NoModifier, touchPointStates, currentTouchPoints);
-    event.setTimestamp(timestamp);
-    event.setAccepted(false);
-
-    QGuiApplication::notify(browserWindow, &event);
-
-    if (QQuickWebViewExperimental::flickableViewportEnabled())
-        browserWindow->updateVisualMockTouchPoints(m_holdingControl ? currentTouchPoints : QList<QTouchEvent::TouchPoint>());
-
-    // Get rid of touch-points that are no longer valid
-    foreach (const QTouchEvent::TouchPoint& touchPoint, currentTouchPoints) {
-        if (touchPoint.state() ==  Qt::TouchPointReleased)
-            m_touchPoints.remove(touchPoint.id());
-    }
-
-    return event.isAccepted();
-}
-
-static void printHelp(const QString& programName)
-{
-    qDebug() << "Usage:" << programName.toLatin1().data()
-         << "[--desktop]"
-         << "[-r list]"
-         << "[--robot-timeout seconds]"
-         << "[--robot-extra-time seconds]"
-         << "[--window-size (width)x(height)]"
-         << "[--maximize]"
-         << "[-f]                                    Full screen mode."
-         << "[--user-agent string]"
-         << "[-v]"
-         << "URL";
-}
-
-void MiniBrowserApplication::handleUserOptions()
-{
-    QStringList args = arguments();
-    QFileInfo program(args.takeAt(0));
-    QString programName("MiniBrowser");
-    if (program.exists())
-        programName = program.baseName();
-
-    if (takeOptionFlag(&args, "--help")) {
-        printHelp(programName);
-        appQuit(0);
-    }
-
-    const bool useDesktopBehavior = takeOptionFlag(&args, "--desktop");
-    if (useDesktopBehavior)
-        windowOptions()->setTouchMockingEnabled(false);
-
-    QQuickWebViewExperimental::setFlickableViewportEnabled(!useDesktopBehavior);
-    if (!useDesktopBehavior)
-        qputenv("QT_WEBKIT_USE_MOBILE_THEME", QByteArray("1"));
-    m_windowOptions.setPrintLoadedUrls(takeOptionFlag(&args, "-v"));
-    m_windowOptions.setStartMaximized(takeOptionFlag(&args, "--maximize"));
-    m_windowOptions.setStartFullScreen(takeOptionFlag(&args, "-f"));
-
-    if (args.contains("--user-agent"))
-        m_windowOptions.setUserAgent(takeOptionValue(&args, "--user-agent"));
-
-    if (args.contains("--window-size")) {
-        QString value = takeOptionValue(&args, "--window-size");
-        QStringList list = value.split(QRegExp("\\D+"), QString::SkipEmptyParts);
-        if (list.length() == 2)
-            m_windowOptions.setRequestedWindowSize(QSize(list.at(0).toInt(), list.at(1).toInt()));
-    }
-
-#if HAVE(QTTESTSUPPORT)
-    if (takeOptionFlag(&args, QStringLiteral("--use-test-fonts")))
-        WebKit::QtTestSupport::initializeTestFonts();
-#endif
-
-    if (args.contains("-r")) {
-        QString listFile = takeOptionValue(&args, "-r");
-        if (listFile.isEmpty())
-            appQuit(1, "-r needs a list file to start in robotized mode");
-        if (!QFile::exists(listFile))
-            appQuit(1, "The list file supplied to -r does not exist.");
-
-        m_isRobotized = true;
-        m_urls = QStringList(listFile);
-
-        // toInt() returns 0 if it fails parsing.
-        m_robotTimeoutSeconds = takeOptionValue(&args, "--robot-timeout").toInt();
-        m_robotExtraTimeSeconds = takeOptionValue(&args, "--robot-extra-time").toInt();
-    } else {
-        int urlArg;
-
-        while ((urlArg = args.indexOf(QRegExp("^[^-].*"))) != -1)
-            m_urls += args.takeAt(urlArg);
-    }
-
-    if (!args.isEmpty()) {
-        printHelp(programName);
-        appQuit(1, QString("Unknown argument(s): %1").arg(args.join(",")));
-    }
-}
diff --git a/Tools/MiniBrowser/qt/MiniBrowserApplication.h b/Tools/MiniBrowser/qt/MiniBrowserApplication.h
deleted file mode 100644
index 3dc380a..0000000
--- a/Tools/MiniBrowser/qt/MiniBrowserApplication.h
+++ /dev/null
@@ -1,125 +0,0 @@
-/*
- * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2010 University of Szeged
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef MiniBrowserApplication_h
-#define MiniBrowserApplication_h
-
-#include <QHash>
-#include <QObject>
-#include <QStringList>
-#include <QtQml>
-#include <QGuiApplication>
-#include <QTouchEvent>
-#include <QUrl>
-#include <qpa/qwindowsysteminterface.h>
-
-class BrowserWindow;
-
-class WindowOptions : public QObject {
-    Q_OBJECT
-    Q_PROPERTY(bool printLoadedUrls READ printLoadedUrls)
-    Q_PROPERTY(bool startMaximized READ startMaximized)
-    Q_PROPERTY(bool touchMockingEnabled READ touchMockingEnabled WRITE setTouchMockingEnabled NOTIFY touchMockingEnabledChanged)
-
-public:
-    WindowOptions(QObject* parent = 0)
-        : QObject(parent)
-        , m_printLoadedUrls(false)
-        , m_startMaximized(false)
-        , m_touchMockingEnabled(true)
-        , m_windowSize(QSize(980, 735))
-    {
-    }
-
-    void setPrintLoadedUrls(bool enabled) { m_printLoadedUrls = enabled; }
-    bool printLoadedUrls() const { return m_printLoadedUrls; }
-    void setStartMaximized(bool enabled) { m_startMaximized = enabled; }
-    bool startMaximized() const { return m_startMaximized; }
-    void setStartFullScreen(bool enabled) { m_startFullScreen = enabled; }
-    bool startFullScreen() const { return m_startFullScreen; }
-    void setRequestedWindowSize(const QSize& size) { m_windowSize = size; }
-    QSize requestedWindowSize() const { return m_windowSize; }
-    void setUserAgent(const QString& userAgent) { m_userAgent = userAgent; }
-    QString userAgent() const { return m_userAgent; }
-    bool touchMockingEnabled() const { return m_touchMockingEnabled; }
-    void setTouchMockingEnabled(bool enabled)
-    {
-        if (enabled != m_touchMockingEnabled) {
-            m_touchMockingEnabled = enabled;
-            emit touchMockingEnabledChanged();
-        }
-    }
-
-Q_SIGNALS:
-    void touchMockingEnabledChanged();
-
-private:
-    bool m_printLoadedUrls;
-    bool m_startMaximized;
-    bool m_startFullScreen;
-    bool m_touchMockingEnabled;
-    QSize m_windowSize;
-    QString m_userAgent;
-};
-
-class MiniBrowserApplication : public QGuiApplication {
-    Q_OBJECT
-
-public:
-    MiniBrowserApplication(int& argc, char** argv);
-    QStringList urls() const { return m_urls; }
-    bool isRobotized() const { return m_isRobotized; }
-    int robotTimeout() const { return m_robotTimeoutSeconds; }
-    int robotExtraTime() const { return m_robotExtraTimeSeconds; }
-    WindowOptions* windowOptions() { return &m_windowOptions; }
-
-    virtual bool notify(QObject*, QEvent*);
-
-private:
-    void updateTouchPoint(const QMouseEvent*, QTouchEvent::TouchPoint, Qt::MouseButton);
-    bool sendTouchEvent(BrowserWindow*, QEvent::Type, ulong timestamp);
-    void handleUserOptions();
-
-private:
-    bool m_realTouchEventReceived;
-    int m_pendingFakeTouchEventCount;
-    bool m_isRobotized;
-    int m_robotTimeoutSeconds;
-    int m_robotExtraTimeSeconds;
-    QStringList m_urls;
-
-    QHash<int, QTouchEvent::TouchPoint> m_touchPoints;
-    QSet<int> m_heldTouchPoints;
-
-    WindowOptions m_windowOptions;
-    bool m_holdingControl;
-};
-
-QML_DECLARE_TYPE(WindowOptions);
-
-#endif
diff --git a/Tools/MiniBrowser/qt/UrlLoader.cpp b/Tools/MiniBrowser/qt/UrlLoader.cpp
deleted file mode 100644
index 8b330fd..0000000
--- a/Tools/MiniBrowser/qt/UrlLoader.cpp
+++ /dev/null
@@ -1,131 +0,0 @@
-/*
- * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2009 University of Szeged
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "UrlLoader.h"
-#include "private/qquickwebview_p.h"
-
-#include <QDebug>
-#include <QFile>
-
-UrlLoader::UrlLoader(BrowserWindow* browserWindow, const QString& inputFileName, int timeoutSeconds, int extraTimeSeconds)
-    : m_browserWindow(browserWindow)
-    , m_stdOut(stdout)
-    , m_loaded(0)
-    , m_numFramesLoading(0)
-{
-    m_checkIfFinishedTimer.setInterval(200);
-    m_checkIfFinishedTimer.setSingleShot(true);
-    connect(&m_checkIfFinishedTimer, SIGNAL(timeout()), this, SLOT(checkIfFinished()));
-    // loadStarted and loadFinished on QWebPage is emitted for each frame/sub-frame
-    connect(m_browserWindow->webView(), SIGNAL(loadStarted()), this, SLOT(frameLoadStarted()));
-    connect(m_browserWindow->webView(), SIGNAL(loadSucceeded()), this, SLOT(frameLoadFinished()));
-    connect(m_browserWindow->webView(), SIGNAL(loadFailed(QDesktopWebView::ErrorType, int, const QUrl&)), this, SLOT(frameLoadFinished()));
-
-    if (timeoutSeconds) {
-        m_timeoutTimer.setInterval(timeoutSeconds * 1000);
-        m_timeoutTimer.setSingleShot(true);
-        connect(m_browserWindow->webView(), SIGNAL(loadStarted()), &m_timeoutTimer, SLOT(start()));
-        connect(&m_timeoutTimer, SIGNAL(timeout()), this, SLOT(loadNext()));
-    }
-    if (extraTimeSeconds) {
-        m_extraTimeTimer.setInterval(extraTimeSeconds * 1000);
-        m_extraTimeTimer.setSingleShot(true);
-        connect(this, SIGNAL(pageLoadFinished()), &m_extraTimeTimer, SLOT(start()));
-        connect(&m_extraTimeTimer, SIGNAL(timeout()), this, SLOT(loadNext()));
-    } else
-        connect(this, SIGNAL(pageLoadFinished()), this, SLOT(loadNext()));
-    loadUrlList(inputFileName);
-}
-
-void UrlLoader::loadNext()
-{
-    m_timeoutTimer.stop();
-    m_extraTimeTimer.stop();
-    m_checkIfFinishedTimer.stop();
-    m_numFramesLoading = 0;
-    QString qstr;
-    if (getUrl(qstr)) {
-        QUrl url(qstr, QUrl::StrictMode);
-        if (url.isValid()) {
-            m_stdOut << "Loading " << qstr << " ......" << ++m_loaded << endl;
-            m_browserWindow->load(url.toString());
-        } else
-            loadNext();
-    } else
-        disconnect(m_browserWindow, 0, this, 0);
-}
-
-void UrlLoader::checkIfFinished()
-{
-    if (!m_numFramesLoading)
-        emit pageLoadFinished();
-}
-
-void UrlLoader::frameLoadStarted()
-{
-    ++m_numFramesLoading;
-    m_checkIfFinishedTimer.stop();
-}
-
-void UrlLoader::frameLoadFinished()
-{
-    Q_ASSERT(m_numFramesLoading > 0);
-    --m_numFramesLoading;
-    // Once our frame has finished loading, wait a moment to call loadNext for cases
-    // where a sub-frame starts loading or another frame is loaded through JavaScript.
-    m_checkIfFinishedTimer.start();
-}
-
-void UrlLoader::loadUrlList(const QString& inputFileName)
-{
-    QFile inputFile(inputFileName);
-    if (inputFile.open(QIODevice::ReadOnly | QIODevice::Text)) {
-        QTextStream stream(&inputFile);
-        QString line;
-        while (true) {
-            line = stream.readLine();
-            if (line.isNull())
-                break;
-            m_urls.append(line);
-        }
-    } else {
-        qDebug() << "Can't open list file";
-        exit(0);
-    }
-    m_index = 0;
-    inputFile.close();
-}
-
-bool UrlLoader::getUrl(QString& qstr)
-{
-    if (m_index == m_urls.size())
-        return false;
-
-    qstr = m_urls[m_index++];
-    return true;
-}
diff --git a/Tools/MiniBrowser/qt/UrlLoader.h b/Tools/MiniBrowser/qt/UrlLoader.h
deleted file mode 100644
index 8ac58df..0000000
--- a/Tools/MiniBrowser/qt/UrlLoader.h
+++ /dev/null
@@ -1,71 +0,0 @@
-/*
- * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2009 University of Szeged
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef UrlLoader_h
-#define UrlLoader_h
-
-#include "BrowserWindow.h"
-
-#include <QTextStream>
-#include <QTimer>
-#include <QVector>
-
-class UrlLoader : public QObject {
-    Q_OBJECT
-
-public:
-    UrlLoader(BrowserWindow*, const QString&, int, int);
-
-public Q_SLOTS:
-    void loadNext();
-
-private Q_SLOTS:
-    void checkIfFinished();
-    void frameLoadStarted();
-    void frameLoadFinished();
-
-Q_SIGNALS:
-    void pageLoadFinished();
-
-private:
-    void loadUrlList(const QString& inputFileName);
-    bool getUrl(QString& qstr);
-
-private:
-    QVector<QString> m_urls;
-    int m_index;
-    BrowserWindow* m_browserWindow;
-    QTextStream m_stdOut;
-    int m_loaded;
-    QTimer m_timeoutTimer;
-    QTimer m_extraTimeTimer;
-    QTimer m_checkIfFinishedTimer;
-    int m_numFramesLoading;
-};
-
-#endif
diff --git a/Tools/MiniBrowser/qt/icons/checkbox_checked.png b/Tools/MiniBrowser/qt/icons/checkbox_checked.png
deleted file mode 100644
index cbf06f6..0000000
--- a/Tools/MiniBrowser/qt/icons/checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/Tools/MiniBrowser/qt/icons/checkbox_unchecked.png b/Tools/MiniBrowser/qt/icons/checkbox_unchecked.png
deleted file mode 100644
index 5f54655..0000000
--- a/Tools/MiniBrowser/qt/icons/checkbox_unchecked.png
+++ /dev/null
Binary files differ
diff --git a/Tools/MiniBrowser/qt/icons/contents_width.png b/Tools/MiniBrowser/qt/icons/contents_width.png
deleted file mode 100644
index f2a79eb..0000000
--- a/Tools/MiniBrowser/qt/icons/contents_width.png
+++ /dev/null
Binary files differ
diff --git a/Tools/MiniBrowser/qt/icons/favicon.png b/Tools/MiniBrowser/qt/icons/favicon.png
deleted file mode 100644
index 325d5bd..0000000
--- a/Tools/MiniBrowser/qt/icons/favicon.png
+++ /dev/null
Binary files differ
diff --git a/Tools/MiniBrowser/qt/icons/find.png b/Tools/MiniBrowser/qt/icons/find.png
deleted file mode 100644
index b76afa3..0000000
--- a/Tools/MiniBrowser/qt/icons/find.png
+++ /dev/null
Binary files differ
diff --git a/Tools/MiniBrowser/qt/icons/folder.png b/Tools/MiniBrowser/qt/icons/folder.png
deleted file mode 100644
index e53e2ad..0000000
--- a/Tools/MiniBrowser/qt/icons/folder.png
+++ /dev/null
Binary files differ
diff --git a/Tools/MiniBrowser/qt/icons/info.png b/Tools/MiniBrowser/qt/icons/info.png
deleted file mode 100644
index db483ff..0000000
--- a/Tools/MiniBrowser/qt/icons/info.png
+++ /dev/null
Binary files differ
diff --git a/Tools/MiniBrowser/qt/icons/next.png b/Tools/MiniBrowser/qt/icons/next.png
deleted file mode 100644
index 6f3f65d..0000000
--- a/Tools/MiniBrowser/qt/icons/next.png
+++ /dev/null
Binary files differ
diff --git a/Tools/MiniBrowser/qt/icons/plus.png b/Tools/MiniBrowser/qt/icons/plus.png
deleted file mode 100644
index f6dfbd0..0000000
--- a/Tools/MiniBrowser/qt/icons/plus.png
+++ /dev/null
Binary files differ
diff --git a/Tools/MiniBrowser/qt/icons/previous.png b/Tools/MiniBrowser/qt/icons/previous.png
deleted file mode 100644
index 93be3d1..0000000
--- a/Tools/MiniBrowser/qt/icons/previous.png
+++ /dev/null
Binary files differ
diff --git a/Tools/MiniBrowser/qt/icons/refresh.png b/Tools/MiniBrowser/qt/icons/refresh.png
deleted file mode 100644
index cab4d02..0000000
--- a/Tools/MiniBrowser/qt/icons/refresh.png
+++ /dev/null
Binary files differ
diff --git a/Tools/MiniBrowser/qt/icons/stop.png b/Tools/MiniBrowser/qt/icons/stop.png
deleted file mode 100644
index b68290b..0000000
--- a/Tools/MiniBrowser/qt/icons/stop.png
+++ /dev/null
Binary files differ
diff --git a/Tools/MiniBrowser/qt/icons/titlebar.png b/Tools/MiniBrowser/qt/icons/titlebar.png
deleted file mode 100644
index f3d18aa..0000000
--- a/Tools/MiniBrowser/qt/icons/titlebar.png
+++ /dev/null
Binary files differ
diff --git a/Tools/MiniBrowser/qt/icons/touch.png b/Tools/MiniBrowser/qt/icons/touch.png
deleted file mode 100644
index 182ae0f..0000000
--- a/Tools/MiniBrowser/qt/icons/touch.png
+++ /dev/null
Binary files differ
diff --git a/Tools/MiniBrowser/qt/icons/touchpoint.png b/Tools/MiniBrowser/qt/icons/touchpoint.png
deleted file mode 100644
index 7649ee9..0000000
--- a/Tools/MiniBrowser/qt/icons/touchpoint.png
+++ /dev/null
Binary files differ
diff --git a/Tools/MiniBrowser/qt/icons/up.png b/Tools/MiniBrowser/qt/icons/up.png
deleted file mode 100644
index b05f802..0000000
--- a/Tools/MiniBrowser/qt/icons/up.png
+++ /dev/null
Binary files differ
diff --git a/Tools/MiniBrowser/qt/js/MultiSelect.js b/Tools/MiniBrowser/qt/js/MultiSelect.js
deleted file mode 100644
index 9e87f5d..0000000
--- a/Tools/MiniBrowser/qt/js/MultiSelect.js
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies)
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this program; see the file COPYING.LIB.  If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- *
- */
-
-
-var values = []
-
-function selectedValues() {
-    return values
-}
-
-function isSelected(value) {
-    return (values.indexOf(value) != -1)
-}
-
-function addValue(value) {
-    if (values.indexOf(value) != -1)
-        return
-    values.push(value)
-}
-
-function removeValue(value) {
-    var index = values.indexOf(value)
-
-    if (index == -1)
-        return
-    values.splice(index, 1)
-}
diff --git a/Tools/MiniBrowser/qt/main.cpp b/Tools/MiniBrowser/qt/main.cpp
deleted file mode 100644
index 4c8cd92..0000000
--- a/Tools/MiniBrowser/qt/main.cpp
+++ /dev/null
@@ -1,71 +0,0 @@
-/*
- * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2010 University of Szeged
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "BrowserWindow.h"
-
-#include "MiniBrowserApplication.h"
-#include "UrlLoader.h"
-
-#include <qqml.h>
-
-#include <QDir>
-#include <QLatin1String>
-#include <QRegExp>
-
-int main(int argc, char** argv)
-{
-    MiniBrowserApplication app(argc, argv);
-
-    if (app.isRobotized()) {
-        BrowserWindow* window = new BrowserWindow(app.windowOptions());
-        UrlLoader loader(window, app.urls().at(0), app.robotTimeout(), app.robotExtraTime());
-        loader.loadNext();
-        window->show();
-        return app.exec();
-    }
-
-    QStringList urls = app.urls();
-
-    if (urls.isEmpty()) {
-        QString defaultIndexFile = QString("%1/%2").arg(QDir::homePath()).arg(QLatin1String("index.html"));
-        if (QFile(defaultIndexFile).exists())
-            urls.append(QString("file://") + defaultIndexFile);
-        else
-            urls.append("http://www.google.com");
-    }
-
-    BrowserWindow* window = new BrowserWindow(app.windowOptions());
-    window->load(urls.at(0));
-
-    for (int i = 1; i < urls.size(); ++i)
-        window->newWindow(urls.at(i));
-
-    app.exec();
-
-    return 0;
-}
diff --git a/Tools/MiniBrowser/qt/qml/AlertDialog.qml b/Tools/MiniBrowser/qt/qml/AlertDialog.qml
deleted file mode 100644
index 50eb1a5..0000000
--- a/Tools/MiniBrowser/qt/qml/AlertDialog.qml
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies)
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-import QtQuick 2.0
-
-Dialog {
-    title: "JavaScript Alert"
-    message: model.message
-
-    DialogButton {
-        text: "OK"
-        onClicked: model.dismiss()
-    }
-}
diff --git a/Tools/MiniBrowser/qt/qml/AuthenticationDialog.qml b/Tools/MiniBrowser/qt/qml/AuthenticationDialog.qml
deleted file mode 100644
index 1d88d3f..0000000
--- a/Tools/MiniBrowser/qt/qml/AuthenticationDialog.qml
+++ /dev/null
@@ -1,70 +0,0 @@
-/*
- * Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies)
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-import QtQuick 2.0
-
-Dialog {
-    id: dialog
-
-    title: "Authentication required." 
-    message: model.hostname + " requires authentication."
-
-    height: 250
-
-    DialogLineInput {
-        id: input
-        width: dialog.width - 30
-        text: model.prefilledUsername
-
-        onAccepted: model.accept(input.text, passwordInput.text)
-    }
-
-    DialogLineInput {
-        id: passwordInput
-        text: "" 
-        width: dialog.width - 30
-        echoMode: TextInput.PasswordEchoOnEdit
-
-        onAccepted: model.accept(input.text, passwordInput.text)
-    }
-
-    Row {
-        id: buttonRow
-        spacing: 5
-        anchors.horizontalCenter: parent.horizontalCenter
-
-        DialogButton {
-            text: "OK"
-            onClicked: model.accept(input.text, passwordInput.text)
-        }
-
-        DialogButton {
-            text: "Cancel"
-            onClicked: model.reject()
-        }
-    }
-}
diff --git a/Tools/MiniBrowser/qt/qml/BrowserWindow.qml b/Tools/MiniBrowser/qt/qml/BrowserWindow.qml
deleted file mode 100644
index b4b5bc0..0000000
--- a/Tools/MiniBrowser/qt/qml/BrowserWindow.qml
+++ /dev/null
@@ -1,585 +0,0 @@
-/*
- * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2010 University of Szeged
- * Copyright (c) 2012 Hewlett-Packard Development Company, L.P.
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-import QtQuick 2.0
-import QtWebKit 3.0
-import QtWebKit.experimental 1.0
-
-Rectangle {
-    id: root
-    // Do not define anchors or an initial size here! This would mess up with QSGView::SizeRootObjectToView.
-
-    property alias webview: webView
-    color: "#333"
-
-    signal pageTitleChanged(string title)
-    signal newWindow(string url)
-
-    function load(address) {
-        webView.url = address
-        webView.forceActiveFocus()
-    }
-
-    function reload() {
-        webView.reload()
-        webView.forceActiveFocus()
-    }
-
-    function focusAddressBar() {
-        addressLine.forceActiveFocus()
-        addressLine.selectAll()
-    }
-    function toggleFind() {
-        findBar.toggle()
-    }
-    Rectangle {
-        id: findBar
-        z: webView.z + 1
-        y: navigationBar.y
-        anchors {
-            left: parent.left
-            right: parent.right
-        }
-        height: navigationBar.height
-        color: "#efefef"
-        visible: y > navigationBar.y
-
-        Behavior on y {NumberAnimation {duration: 250}}
-
-        function toggle() {
-            if (y == navigationBar.y) {
-                findTextInput.forceActiveFocus()
-                y += height
-            } else {
-                webView.forceActiveFocus()
-                y = navigationBar.y
-                find("",0);
-            }
-        }
-
-        function find(str, options) {
-            var findOptions = options | WebViewExperimental.FindHighlightAllOccurrences
-            findOptions |= WebViewExperimental.FindWrapsAroundDocument
-            webView.experimental.findText(str, findOptions)
-        }
-
-        Connections {
-            target: webView.experimental
-            onTextFound: {
-                failedOverlay.visible = matchCount == 0
-            }
-        }
-        Item {
-            anchors.fill: parent
-            Rectangle {
-                id: inputArea
-                height: 26
-                anchors {
-                    left: parent.left
-                    right: prevButton.left
-                    margins: 6
-                    verticalCenter: parent.verticalCenter
-                }
-                color: "white"
-                border.width: 1
-                border.color: "#bfbfbf"
-                radius: 3
-                Rectangle {
-                    id: failedOverlay
-                    anchors.fill: parent
-                    color: "red"
-                    opacity: 0.5
-                    radius: 6
-                    visible: false
-                }
-                TextInput {
-                    id: findTextInput
-                    clip: true
-                    selectByMouse: true
-                    horizontalAlignment: TextInput.AlignLeft
-                    anchors.fill: parent
-                    anchors.margins: 3
-                    font {
-                        pointSize: 11
-                        family: "Sans"
-                    }
-                    text: ""
-                    readOnly: !findBar.visible
-                    function doFind() {
-                        if (!findBar.visible) {
-                            return;
-                        }
-                        if (findTextInput.text == "") {
-                            failedOverlay.visible = false
-                        }
-                        findBar.find(findTextInput.text)
-                    }
-                    onTextChanged: {
-                        doFind()
-                    }
-                    Keys.onReturnPressed:{
-                        doFind()
-                    }
-                }
-            }
-            Rectangle {
-                id: prevButton
-                height: inputArea.height
-                width: height
-                anchors.right: nextButton.left
-                anchors.verticalCenter: parent.verticalCenter
-                color: "#efefef"
-                radius: 6
-
-                Image {
-                    anchors.centerIn: parent
-                    source: "../icons/previous.png"
-                }
-
-                Rectangle {
-                    anchors.fill: parent
-                    color: parent.color
-                    radius: parent.radius
-                    opacity: 0.8
-                    visible: !parent.enabled
-                }
-
-                MouseArea {
-                    anchors.fill: parent
-                    onPressed: { if (parent.enabled) parent.color = "#cfcfcf" }
-                    onReleased: { parent.color = "#efefef" }
-                    onClicked: {
-                        findBar.find(findTextInput.text, WebViewExperimental.FindBackward)
-                    }
-                }
-            }
-            Rectangle {
-                id: nextButton
-                height: inputArea.height
-                width: height
-                anchors.right: parent.right
-                anchors.verticalCenter: parent.verticalCenter
-                color: "#efefef"
-                radius: 6
-
-                Image {
-                    anchors.centerIn: parent
-                    source: "../icons/next.png"
-                }
-
-                Rectangle {
-                    anchors.fill: parent
-                    color: parent.color
-                    radius: parent.radius
-                    opacity: 0.8
-                    visible: !parent.enabled
-                }
-
-                MouseArea {
-                    anchors.fill: parent
-                    onPressed: { if (parent.enabled) parent.color = "#cfcfcf" }
-                    onReleased: { parent.color = "#efefef" }
-                    onClicked: {
-                        findBar.find(findTextInput.text, 0)
-                    }
-                }
-            }
-        }
-    }
-    Rectangle {
-        id: navigationBar
-        color: "#efefef"
-        height: 38
-        z: webView.z + 1
-        anchors {
-            top: parent.top
-            left: parent.left
-            right: parent.right
-        }
-
-        Row {
-            height: parent.height - 6
-            anchors {
-                verticalCenter: parent.verticalCenter
-                left: parent.left
-                leftMargin: 3
-            }
-            spacing: 3
-            id: controlsRow
-            Rectangle {
-                id: backButton
-                height: parent.height
-                width: height
-                color: "#efefef"
-                radius: 6
-
-                property alias enabled: webView.canGoBack
-
-                Image {
-                    anchors.centerIn: parent
-                    source: "../icons/previous.png"
-                }
-
-                Rectangle {
-                    anchors.fill: parent
-                    color: parent.color
-                    radius: parent.radius
-                    opacity: 0.8
-                    visible: !parent.enabled
-                }
-
-                MouseArea {
-                    anchors.fill: parent
-                    onPressed: { if (parent.enabled) parent.color = "#cfcfcf" }
-                    onReleased: { parent.color = "#efefef" }
-                    onClicked: {
-                        if (parent.enabled) {
-                            console.log("MiniBrowser: Going backward in session history.")
-                            webView.goBack()
-                            webView.forceActiveFocus()
-                        }
-                    }
-                }
-            }
-            Rectangle {
-                id: forwardButton
-                height: parent.height
-                width: height
-                color: "#efefef"
-                radius: 6
-
-                property alias enabled: webView.canGoForward
-
-                Image {
-                    anchors.centerIn: parent
-                    source: "../icons/next.png"
-                }
-
-                Rectangle {
-                    anchors.fill: parent
-                    color: parent.color
-                    radius: parent.radius
-                    opacity: 0.8
-                    visible: !parent.enabled
-                }
-
-                MouseArea {
-                    anchors.fill: parent
-                    onPressed: { if (parent.enabled) parent.color = "#cfcfcf" }
-                    onReleased: { parent.color = "#efefef" }
-                    onClicked: {
-                        if (parent.enabled) {
-                            console.log("MiniBrowser: Going forward in session history.")
-                            webView.goForward()
-                            webView.forceActiveFocus()
-                        }
-                    }
-                }
-            }
-            Rectangle {
-                id: reloadButton
-                height: parent.height
-                width: height
-                color: "#efefef"
-                radius: 6
-
-                Image {
-                    anchors.centerIn: parent
-                    source: webView.loading ? "../icons/stop.png" : "../icons/refresh.png"
-                }
-
-                MouseArea {
-                    anchors.fill: parent
-                    onPressed: { parent.color = "#cfcfcf" }
-                    onReleased: { parent.color = "#efefef" }
-                    onClicked: {
-                        if (webView.loading) {
-                            webView.stop()
-                        } else {
-                            reload()
-                        }
-                    }
-                }
-            }
-
-            Rectangle {
-                id: viewportInfoButton
-                height: parent.height
-                width: height
-                color: { viewportInfoItem.visible ? "#cfcfcf" : "#efefef" }
-                radius: 6
-
-                Image {
-                    anchors.centerIn: parent
-                    source: "../icons/info.png"
-                }
-
-                MouseArea {
-                    anchors.fill: parent
-                    onClicked: {
-                       viewportInfoItem.visible = !viewportInfoItem.visible
-                    }
-                }
-            }
-
-            Rectangle {
-                id: preferredMininumContentsWidthButton
-                height: parent.height
-                width: height
-                color: "#efefef"
-                opacity: { webView.experimental.preferredMinimumContentsWidth === 0 ? 0.1 : 0.6 }
-                radius: 6
-
-                Image {
-                    anchors.centerIn: parent
-                    source: "../icons/contents_width.png"
-                }
-
-                MouseArea {
-                    anchors.fill: parent
-                    onClicked: {
-                        webView.experimental.preferredMinimumContentsWidth = webView.experimental.preferredMinimumContentsWidth === 0 ? 980 : 0
-                    }
-                }
-            }
-
-            Rectangle {
-                id: findButton
-                height: parent.height
-                width: height
-                color: "#efefef"
-                radius: 6
-
-                Image {
-                    anchors.centerIn: parent
-                    opacity: 0.6
-                    source: "../icons/find.png"
-                }
-
-                MouseArea {
-                    anchors.fill: parent
-                    onClicked: {
-                        findBar.toggle()
-                    }
-                }
-            }
-
-            Rectangle {
-                id: touchEventsButton
-                height: parent.height
-                width: height
-                color: "#efefef"
-                radius: 6
-
-                Image {
-                    anchors.centerIn: parent
-                    opacity: options.touchMockingEnabled ? 0.6 : 0.1
-                    source: "../icons/touch.png"
-                }
-
-                MouseArea {
-                    anchors.fill: parent
-                    onClicked: {
-                        if (options.touchMockingEnabled) {
-                            console.log("Touch Mocking Disabled")
-                        } else {
-                            console.log("Touch Mocking Enabled")
-                        }
-
-                        options.touchMockingEnabled = !options.touchMockingEnabled
-                    }
-                }
-            }
-
-            Rectangle {
-                id: newBrowserWindowButton
-                height: parent.height
-                width: height
-                color: "#efefef"
-                radius: 6
-
-                Image {
-                    anchors.centerIn: parent
-                    source: "../icons/plus.png"
-                }
-
-                MouseArea {
-                    anchors.fill: parent
-                    onClicked: {
-                        newWindow("about:blank")
-                    }
-                }
-            }
-        }
-        Rectangle {
-            color: "white"
-            height: 26
-            border.width: 1
-            border.color: "#bfbfbf"
-            radius: 3
-            anchors {
-                left: controlsRow.right
-                right: parent.right
-                margins: 6
-                verticalCenter: parent.verticalCenter
-            }
-            Rectangle {
-                anchors {
-                    top: parent.top
-                    bottom: parent.bottom
-                    left: parent.left
-                }
-                radius: 3
-                width: parent.width / 100 * Math.max(5, webView.loadProgress)
-                color: "blue"
-                opacity: 0.3
-                visible: webView.loading
-            }
-            Image {
-                id: favIcon
-                source: webView.icon != '' ? webView.icon : '../icons/favicon.png'
-                width: 16
-                height: 16
-                anchors {
-                    left: parent.left
-                    leftMargin: 6
-                    verticalCenter: parent.verticalCenter
-                }
-            }
-            TextInput {
-                id: addressLine
-                clip: true
-                selectByMouse: true
-                horizontalAlignment: TextInput.AlignLeft
-                font {
-                    pointSize: 11
-                    family: "Sans"
-                }
-                anchors {
-                    verticalCenter: parent.verticalCenter
-                    left: favIcon.right
-                    right: parent.right
-                    margins: 6
-                }
-
-                Keys.onReturnPressed:{
-                    console.log("Navigating to: ", addressLine.text)
-                    load(utils.urlFromUserInput(addressLine.text))
-                }
-
-                property url url
-
-                onUrlChanged: {
-                    if (activeFocus)
-                        return;
-
-                    text = url
-                    cursorPosition = 0
-                }
-
-                onActiveFocusChanged: url = webView.url
-            }
-        }
-    }
-
-    WebView {
-        id: webView
-        clip: false
-
-        anchors {
-            top: findBar.bottom
-            left: parent.left
-            right: parent.right
-            bottom: parent.bottom
-        }
-
-        onTitleChanged: pageTitleChanged(title)
-        onUrlChanged: {
-            addressLine.url = webView.url
-
-            if (options.printLoadedUrls)
-                console.log("WebView url changed:", webView.url.toString());
-        }
-
-        onLoadingChanged: {
-            if (!loading && loadRequest.status == WebView.LoadFailedStatus)
-                webView.loadHtml("Failed to load " + loadRequest.url, "", loadRequest.url)
-        }
-
-        experimental.preferences.fullScreenEnabled: true
-        experimental.preferences.webGLEnabled: true
-        experimental.preferences.webAudioEnabled: true
-        experimental.preferredMinimumContentsWidth: 980
-        experimental.itemSelector: ItemSelector { }
-        experimental.alertDialog: AlertDialog { }
-        experimental.confirmDialog: ConfirmDialog { }
-        experimental.promptDialog: PromptDialog { }
-        experimental.authenticationDialog: AuthenticationDialog { }
-        experimental.proxyAuthenticationDialog: ProxyAuthenticationDialog { }
-        experimental.filePicker: FilePicker { }
-        experimental.preferences.developerExtrasEnabled: true
-        experimental.databaseQuotaDialog: Item {
-            Timer {
-                interval: 1
-                running: true
-                onTriggered: {
-                    var size = model.expectedUsage / 1024 / 1024
-                    console.log("Creating database '" + model.displayName + "' of size " + size.toFixed(2) + " MB for " + model.origin.scheme + "://" + model.origin.host + ":" + model.origin.port)
-                    model.accept(model.expectedUsage)
-                }
-            }
-        }
-        experimental.colorChooser: ColorChooser { }
-        experimental.onEnterFullScreenRequested : {
-            navigationBar.visible = false;
-            Window.showFullScreen();
-        }
-        experimental.onExitFullScreenRequested : {
-            Window.showNormal();
-            navigationBar.visible = true;
-        }
-    }
-
-    ScrollIndicator {
-        flickableItem: webView
-    }
-
-    ViewportInfoItem {
-        id: viewportInfoItem
-        anchors {
-            top: navigationBar.bottom
-            left: parent.left
-            right: parent.right
-            bottom: parent.bottom
-        }
-        visible: false
-        test : webView.experimental.test
-        preferredMinimumContentsWidth: webView.experimental.preferredMinimumContentsWidth
-    }
-}
diff --git a/Tools/MiniBrowser/qt/qml/CheckBox.qml b/Tools/MiniBrowser/qt/qml/CheckBox.qml
deleted file mode 100644
index 085b811..0000000
--- a/Tools/MiniBrowser/qt/qml/CheckBox.qml
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies)
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this program; see the file COPYING.LIB.  If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- *
- */
-
-import QtQuick 2.0
-
-Item {
-    id: checkbox
-    width: 50
-    height: parent.height
-    property bool checked
-
-    Image {
-        width: 24
-        height: 24
-        source: parent.checked ? '../icons/checkbox_checked.png' : '../icons/checkbox_unchecked.png'
-        anchors.verticalCenter: parent.verticalCenter
-    }
-}
diff --git a/Tools/MiniBrowser/qt/qml/ColorChooser.qml b/Tools/MiniBrowser/qt/qml/ColorChooser.qml
deleted file mode 100644
index 0d5a9a7..0000000
--- a/Tools/MiniBrowser/qt/qml/ColorChooser.qml
+++ /dev/null
@@ -1,104 +0,0 @@
-/*
- * Copyright (C) 2012 Intel Corporation. All rights reserved.
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-import QtQuick 2.0
-
-MouseArea {
-    anchors.fill: parent
-    onClicked: model.reject()
-
-    Rectangle {
-        id: dialog
-        property int spacing: 10
-
-        color: "gainsboro"
-        opacity: 0.8
-        radius: 5
-        width: 200
-        height: 200
-        x: (model.elementRect.x + width > parent.width) ? parent.width - width : model.elementRect.x
-        y: (model.elementRect.y + model.elementRect.height + height < parent.height ) ? model.elementRect.y + model.elementRect.height
-                                                                                      : model.elementRect.y - height;
-
-        Rectangle {
-            color: "red"
-            anchors.left: parent.left
-            anchors.top: parent.top
-            anchors.margins: dialog.spacing
-            width: parent.width / 2 - dialog.spacing
-            height: parent.height / 2 - dialog.spacing
-
-            MouseArea {
-                anchors.fill: parent
-                onClicked: model.accept(parent.color)
-            }
-        }
-
-        Rectangle {
-            color: "blue"
-            anchors.right: parent.right
-            anchors.top: parent.top
-            anchors.margins: dialog.spacing
-            width: parent.width / 2 - dialog.spacing
-            height: parent.height / 2 - dialog.spacing
-
-            MouseArea {
-                anchors.fill: parent
-                onClicked: model.accept(parent.color)
-            }
-        }
-
-        Rectangle {
-            color: "green"
-            anchors.bottom: parent.bottom
-            anchors.left: parent.left
-            anchors.margins: dialog.spacing
-            width: parent.width / 2 - dialog.spacing
-            height: parent.height / 2 - dialog.spacing
-
-            MouseArea {
-                anchors.fill: parent
-                onClicked: model.accept(parent.color)
-            }
-        }
-
-        Rectangle {
-            color: model.currentColor
-            anchors.bottom: parent.bottom
-            anchors.right: parent.right
-            anchors.margins: dialog.spacing * 2
-            width: parent.width / 2 - dialog.spacing * 4
-            height: parent.height / 2 - dialog.spacing * 4
-
-            Text {
-                text: "Current"
-                anchors.bottom: parent.top
-                anchors.horizontalCenter: parent.horizontalCenter
-            }
-        }
-    }
-}
diff --git a/Tools/MiniBrowser/qt/qml/ConfirmDialog.qml b/Tools/MiniBrowser/qt/qml/ConfirmDialog.qml
deleted file mode 100644
index 974d065..0000000
--- a/Tools/MiniBrowser/qt/qml/ConfirmDialog.qml
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies)
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-import QtQuick 2.0
-
-Dialog {
-    title: "JavaScript Confirmation"
-    message: model.message
-
-    Row {
-        spacing: 5
-
-        DialogButton {
-            text: "OK"
-            onClicked: model.accept()
-        }
-
-        DialogButton {
-            text: "Cancel"
-            onClicked: model.reject()
-        }
-    }
-}
diff --git a/Tools/MiniBrowser/qt/qml/Dialog.qml b/Tools/MiniBrowser/qt/qml/Dialog.qml
deleted file mode 100644
index 23b14cd..0000000
--- a/Tools/MiniBrowser/qt/qml/Dialog.qml
+++ /dev/null
@@ -1,111 +0,0 @@
-/*
- * Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies)
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-import QtQuick 2.0
-
-Item {
-    id: dialog
-
-    anchors.fill: parent
-    z: 1000
-
-    // We want to be a child of the root item so that we can cover
-    // the whole scene with our "dim" overlay.
-    parent: root
-
-    property alias title: titleText.text
-    property alias message: messageText.text
-
-    default property alias __children: dynamicColumn.children
-
-    MouseArea {
-        id: mouseBlocker
-        anchors.fill: parent
-        onPressed: mouse.accepted = true
-
-        // FIXME: This does not block touch events :(
-    }
-
-    Rectangle {
-        id: dimBackground
-        anchors.fill: parent
-        color: "black"
-        opacity: 0.4
-    }
-
-    Rectangle {
-        id: dialogWindow
-
-        color: "#efefef"
-
-        width: 300
-        height: 150
-
-        border {
-            width: 1
-            color: "#bfbfbf"
-        }
-
-        smooth: true
-        radius: 5
-
-        anchors.centerIn: parent
-
-        Item {
-            id: staticContent
-            anchors.centerIn: parent
-            anchors.fill: parent
-            anchors.margins: 10
-
-            Text {
-                id: titleText
-                width: parent.width
-                anchors.horizontalCenter: parent.horizontalCenter
-                font.pixelSize: 16
-                font.weight: Font.Bold
-                elide: Text.ElideRight
-            }
-
-            Text {
-                id: messageText
-                width: parent.width
-                wrapMode: Text.WordWrap
-                anchors.centerIn: parent
-            }
-
-            Column {
-                id: dynamicColumn
-                spacing: 5
-                anchors {
-                    margins: 10
-                    bottom: staticContent.bottom
-                    horizontalCenter: staticContent.horizontalCenter
-                }
-            }
-        }
-    }
-}
diff --git a/Tools/MiniBrowser/qt/qml/DialogButton.qml b/Tools/MiniBrowser/qt/qml/DialogButton.qml
deleted file mode 100644
index eaa1f61..0000000
--- a/Tools/MiniBrowser/qt/qml/DialogButton.qml
+++ /dev/null
@@ -1,60 +0,0 @@
-/*
- * Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies)
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-import QtQuick 2.0
-
-Rectangle {
-    id: button
-
-    property alias text: buttonText.text
-
-    signal clicked
-
-    color: mouseArea.pressed ? "#eaeaea" : "#fbfbfb"
-
-    width: 60
-    height: 20
-
-    border {
-        width: 1
-        color: "#aeaeae"
-    }
-
-    smooth: true
-    radius: 5
-
-    Text {
-        id: buttonText
-        anchors.centerIn: parent
-    }
-
-    MouseArea {
-        id: mouseArea
-        anchors.fill: parent
-        onClicked: button.clicked()
-    }
-}
diff --git a/Tools/MiniBrowser/qt/qml/DialogLineInput.qml b/Tools/MiniBrowser/qt/qml/DialogLineInput.qml
deleted file mode 100644
index 84faa55..0000000
--- a/Tools/MiniBrowser/qt/qml/DialogLineInput.qml
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies)
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-import QtQuick 2.0
-
-Rectangle {
-    id: dialogLineInput
-
-    property alias text: input.text
-    property alias echoMode: input.echoMode
-    signal accepted()
-
-    height: 20
-    color: "#fefefe"
-
-    border {
-        width: 1
-        color: "#aeaeae"
-    }
-
-    smooth: true
-    radius: 3
-    clip: true
-
-    TextInput {
-        id: input
-        focus: true
-        anchors.fill: parent
-
-        onAccepted: dialogLineInput.accepted()
-    }
-}
diff --git a/Tools/MiniBrowser/qt/qml/FilePicker.qml b/Tools/MiniBrowser/qt/qml/FilePicker.qml
deleted file mode 100644
index 222d4c3..0000000
--- a/Tools/MiniBrowser/qt/qml/FilePicker.qml
+++ /dev/null
@@ -1,217 +0,0 @@
-/*
- * Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies)
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this program; see the file COPYING.LIB.  If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- *
- */
-
-import QtQuick 2.0
-import Qt.labs.folderlistmodel 1.0
-import "../js/MultiSelect.js" as MultiSelect
-
-Rectangle {
-    id: filePicker
-
-    property QtObject fileModel: model
-    property alias folder: folders.folder
-
-    color: "white"
-    width: 400
-    height: 500
-
-    smooth: true
-    radius: 5
-    anchors.centerIn: parent
-
-    border {
-        width: 1
-        color: "#bfbfbf"
-    }
-
-    BorderImage {
-        source: "../icons/titlebar.png";
-        width: parent.width;
-        height: 50
-        y: -7
-        id: titleBar
-
-        anchors {
-            top: parent.top
-            bottom: folderListView.top
-        }
-        Rectangle {
-            id: upButton
-            width: 48
-            height: titleBar.height - 7
-            color: "transparent"
-            Image { anchors.centerIn: parent; source: "../icons/up.png" }
-            MouseArea { id: upRegion; anchors.centerIn: parent
-                width: 48
-                height: 48
-                onClicked: if (folders.parentFolder != "") up()
-            }
-        }
-
-        Rectangle {
-            color: "gray"
-            x: 48
-            width: 1
-            height: 44
-        }
-
-        Text {
-            anchors {
-                left: upButton.right
-                right: parent.right
-                leftMargin: 4
-                rightMargin: 4
-            }
-
-            height: parent.height
-            text: folders.folder
-            color: "white"
-            elide: Text.ElideLeft;
-            horizontalAlignment: Text.AlignLeft;
-            verticalAlignment: Text.AlignVCenter
-            font.pixelSize: 24
-        }
-    }
-
-    ListView {
-        id: folderListView
-
-        width: parent.width
-        height: 400
-        anchors.centerIn: parent
-        spacing: 2
-        clip: true
-
-        FolderListModel {
-            id: folders
-        }
-
-        Component {
-            id: fileDelegate
-
-            Rectangle {
-                function selected() {
-                    if (folders.isFolder(index))
-                        openFolder(filePath);
-                    else {
-
-                        if (fileModel.allowMultipleFiles) {
-                            checkbox.checked = !checkbox.checked
-
-                            if (checkbox.checked)
-                                MultiSelect.addValue(filePath)
-                            else
-                                MultiSelect.removeValue(filePath)
-                        }
-                        else
-                            fileModel.accept(filePath)
-                    }
-                }
-
-                height: 50
-                width: parent.width
-                color: folders.isFolder(index) ? "lightgray": "darkgray"
-
-                Item {
-                    width: 50
-                    height: 48
-                    Image {
-                        source: "../icons/folder.png"
-                        anchors.centerIn: parent
-                        visible: folders.isFolder(index)
-                    }
-                }
-
-                Text {
-                    id: fileNameText
-                    anchors.centerIn: parent
-                    anchors.leftMargin: 20
-                    width: 300
-                    text: fileName
-                    elide: Text.ElideLeft;
-                }
-
-                CheckBox {
-                    id: checkbox
-
-                    anchors.right: parent.right
-                    anchors.verticalCenter: parent.verticalCenter
-
-                    checked: MultiSelect.isSelected(filePath)
-                    visible: fileModel.allowMultipleFiles && !folders.isFolder(index)
-                }
-
-                MouseArea {
-                    anchors.fill: parent
-                    onClicked: selected();
-                }
-            }
-        }
-        model: folders
-        delegate: fileDelegate
-    }
-
-    Rectangle {
-        id: button
-
-        height: 50
-
-        border {
-            width: 1
-            color: "#bfbfbf"
-        }
-
-        anchors {
-            bottom: parent.bottom
-            top: folderListView.bottom
-            left: parent.left
-            right: parent.right
-        }
-
-        Row {
-            id: buttonRow
-            spacing: 10
-            anchors.horizontalCenter: parent.horizontalCenter
-            anchors.verticalCenter: parent.verticalCenter
-
-            DialogButton {
-                id: cancel
-                text: "Cancel"
-                onClicked: fileModel.reject()
-            }
-
-            DialogButton {
-                id: accept
-                text: "Ok"
-                visible: fileModel.allowMultipleFiles
-                onClicked:
-                    fileModel.accept(MultiSelect.selectedValues());
-            }
-        }
-    }
-
-    function openFolder(path) {
-        folders.folder = path;
-    }
-
-    function up() {
-        folders.folder = folders.parentFolder;
-    }
-}
diff --git a/Tools/MiniBrowser/qt/qml/ItemSelector.qml b/Tools/MiniBrowser/qt/qml/ItemSelector.qml
deleted file mode 100644
index 6288d22..0000000
--- a/Tools/MiniBrowser/qt/qml/ItemSelector.qml
+++ /dev/null
@@ -1,86 +0,0 @@
-/*
- * Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies)
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-import QtQuick 2.0
-
-MouseArea {
-    // To avoid conflicting with ListView.model when inside ListView context.
-    property QtObject selectorModel: model
-    anchors.fill: parent
-    onClicked: selectorModel.reject()
-
-    Rectangle {
-        clip: true
-        width: 200
-        height: Math.min(listView.contentItem.height + listView.anchors.topMargin + listView.anchors.bottomMargin
-                         , Math.max(selectorModel.elementRect.y, parent.height - selectorModel.elementRect.y - selectorModel.elementRect.height))
-        x: (selectorModel.elementRect.x + 200 > parent.width) ? parent.width - 200 : selectorModel.elementRect.x
-        y: (selectorModel.elementRect.y + selectorModel.elementRect.height + height < parent.height ) ? selectorModel.elementRect.y + selectorModel.elementRect.height
-                                                         : selectorModel.elementRect.y - height;
-        radius: 5
-        color: "gainsboro"
-        opacity: 0.8
-
-        ListView {
-            id: listView
-            anchors.fill: parent
-            anchors.margins: 10
-            spacing: 5
-            model: selectorModel.items
-
-            delegate: Rectangle {
-                color: model.selected ? "gold" : "silver"
-                height: 50
-                width: parent.width
-
-                Text {
-                    anchors.centerIn: parent
-                    text: model.text
-                    color: model.enabled ? "black" : "gainsboro"
-                }
-
-                MouseArea {
-                    anchors.fill: parent
-                    enabled: model.enabled
-                    onClicked: selectorModel.accept(model.index)
-                }
-            }
-
-            section.property: "group"
-            section.delegate: Rectangle {
-                height: 30
-                width: parent.width
-                color: "silver"
-                Text {
-                    anchors.centerIn: parent
-                    text: section
-                    font.bold: true
-                }
-            }
-        }
-    }
-}
diff --git a/Tools/MiniBrowser/qt/qml/MockTouchPoint.qml b/Tools/MiniBrowser/qt/qml/MockTouchPoint.qml
deleted file mode 100644
index 4cc5c2c..0000000
--- a/Tools/MiniBrowser/qt/qml/MockTouchPoint.qml
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- * Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies)
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-import QtQuick 2.0
-
-Item {
-    id: mockTouchPoint
-
-    property bool pressed: false
-    property int pointId: 0
-
-    Image {
-        source: "../icons/touchpoint.png"
-        x: -(width / 2)
-        y: -(height / 2)
-        height: parent.height
-        width: parent.width
-        opacity: parent.pressed ? 0.6 : 0.0
-
-        Behavior on opacity {
-            NumberAnimation { duration: 200 }
-        }
-
-        Text {
-            text: mockTouchPoint.pointId
-            anchors.centerIn: parent
-        }
-    }
-}
diff --git a/Tools/MiniBrowser/qt/qml/PromptDialog.qml b/Tools/MiniBrowser/qt/qml/PromptDialog.qml
deleted file mode 100644
index acc5946..0000000
--- a/Tools/MiniBrowser/qt/qml/PromptDialog.qml
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- * Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies)
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-import QtQuick 2.0
-
-Dialog {
-    id: dialog
-
-    title: "JavaScript Prompt"
-    message: model.message
-
-    height: 180
-
-    DialogLineInput {
-        id: input
-        width: dialog.width - 30
-        text: model.defaultValue
-
-        onAccepted: model.accept(input.text)
-    }
-
-    Row {
-        id: buttonRow
-        spacing: 5
-        anchors.horizontalCenter: parent.horizontalCenter
-
-        DialogButton {
-            text: "OK"
-            onClicked: model.accept(input.text)
-        }
-
-        DialogButton {
-            text: "Cancel"
-            onClicked: model.reject()
-        }
-    }
-}
diff --git a/Tools/MiniBrowser/qt/qml/ProxyAuthenticationDialog.qml b/Tools/MiniBrowser/qt/qml/ProxyAuthenticationDialog.qml
deleted file mode 100644
index ae27f26..0000000
--- a/Tools/MiniBrowser/qt/qml/ProxyAuthenticationDialog.qml
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies)
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-import QtQuick 2.0
-
-AuthenticationDialog {
-    id: dialog
-
-    title: "Proxy authentication required."
-    message: model.hostname + ":" + model.port + " requires authentication."
-}
diff --git a/Tools/MiniBrowser/qt/qml/ScrollIndicator.qml b/Tools/MiniBrowser/qt/qml/ScrollIndicator.qml
deleted file mode 100644
index 9f100be..0000000
--- a/Tools/MiniBrowser/qt/qml/ScrollIndicator.qml
+++ /dev/null
@@ -1,141 +0,0 @@
-/*
- * Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies)
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-import QtQuick 2.0
-
-Item {
-    id: root
-
-    property Flickable flickableItem
-
-    anchors {
-        fill: flickableItem
-        margins: 5
-    }
-
-    property bool __movingHorizontally: flickableItem ? flickableItem.movingHorizontally : false
-    property bool __movingVertically: flickableItem ? flickableItem.movingVertically : false
-
-    property real __viewWidth:  flickableItem ? flickableItem.width - (anchors.margins * 2) : 0
-    property real __viewHeight:  flickableItem ? flickableItem.height - (anchors.margins * 2) : 0
-
-    property int __hideTimeout: 800
-    property real __indicatorSize: 5
-    property real __indicatorBorder: 1
-
-    Item {
-        id: horizontalIndicator
-        opacity: 0
-
-        width: __viewWidth - __indicatorSize
-        height: __indicatorSize
-
-        anchors.bottom: root.bottom
-
-        Rectangle {
-            radius: 10
-            color: "black"
-            border.color: "gray"
-            border.width: 1
-            opacity: 0.5
-            smooth: true
-
-            width: flickableItem ? flickableItem.visibleArea.widthRatio * horizontalIndicator.width: 0;
-            height: __indicatorSize
-
-            x: flickableItem ? Math.min(parent.width - width, Math.max(0, flickableItem.visibleArea.xPosition * horizontalIndicator.width)) : 0;
-            y: 0
-        }
-
-        states: [
-            State {
-                name: "show"
-                when: __movingHorizontally
-                PropertyChanges {
-                    target: horizontalIndicator
-                    opacity: 1
-                }
-            }
-        ]
-
-        transitions: [
-            Transition {
-                NumberAnimation {
-                    target: horizontalIndicator
-                    properties: "opacity"
-                    duration: __hideTimeout
-                }
-            }
-        ]
-    }
-
-    Item {
-        id: verticalIndicator
-        opacity: 0
-
-        width: __indicatorSize
-        height: __viewHeight - __indicatorSize
-
-        anchors.right: root.right
-
-        Rectangle {
-            radius: 10
-            color: "black"
-            border.color: "gray"
-            border.width: 1
-            opacity: 0.5
-            smooth: true;
-
-            width: __indicatorSize
-            height: flickableItem ? flickableItem.visibleArea.heightRatio * verticalIndicator.height : 0;
-
-            x: 0
-            y: flickableItem ? Math.min(parent.height - height, Math.max(0, flickableItem.visibleArea.yPosition * verticalIndicator.height)) : 0
-        }
-
-        states: [
-            State {
-                name: "show"
-                when: __movingVertically
-                PropertyChanges {
-                    target: verticalIndicator
-                    opacity: 1
-                }
-            }
-        ]
-
-        transitions: [
-            Transition {
-                NumberAnimation {
-                    target: verticalIndicator
-                    properties: "opacity"
-                    duration: __hideTimeout
-                }
-            }
-        ]
-    }
-}
diff --git a/Tools/MiniBrowser/qt/qml/ViewportInfoItem.qml b/Tools/MiniBrowser/qt/qml/ViewportInfoItem.qml
deleted file mode 100644
index 684cc70..0000000
--- a/Tools/MiniBrowser/qt/qml/ViewportInfoItem.qml
+++ /dev/null
@@ -1,131 +0,0 @@
-import QtQuick 2.0
-import QtWebKit 3.0
-
-Item {
-    property var test
-    property var preferredMinimumContentsWidth
-
-    function formatScale(value) {
-        return "<b>" + parseFloat(value.toFixed(4)) + "</b>x";
-    }
-
-    function formatSize(value) {
-        return "<b>" + value.width.toFixed() + "x" + value.height.toFixed() + "</b>px"
-    }
-
-    function formatBool(value) {
-        return "<b>" + (value ? "yes" : "no") + "</b>"
-    }
-
-    Rectangle {
-        id: title;
-
-        anchors {
-            top: parent.top
-            left: parent.left
-            margins: 10
-        }
-
-        height: 50
-        width: 250
-
-        color: "blue"
-
-        Text {
-            id: viewportInfoLabel
-
-            anchors {
-                verticalCenter: parent.verticalCenter
-                left: parent.left
-                leftMargin: 10
-            }
-
-            text: "Viewport Info"
-            color: "white"
-            font.family: "Nokia Pure"
-            font.pointSize: 24
-        }
-    }
-
-    Rectangle {
-        color: "gray"
-        opacity: 0.9
-
-        anchors {
-            top: title.bottom
-            left: title.left
-            topMargin: 10
-        }
-
-        width: 340
-        height: 270
-
-        Item {
-            id: textBox
-
-            anchors {
-                fill: parent
-                margins: 10
-            }
-
-            property string fontFamily: "Nokia Pure"
-            property color fontColor: "black"
-
-            Column {
-                anchors.fill: parent
-                spacing: 20
-                Column {
-                    Text {
-                        text: "Current scale: " + formatScale(test.contentsScale)
-                        font.family: textBox.fontFamily
-                        color: textBox.fontColor
-                    }
-                }
-
-                Column {
-                    Text {
-                        text: "Minimum scale: " + formatScale(test.viewport.minimumScale)
-                        font.family: textBox.fontFamily
-                        color: textBox.fontColor
-                    }
-                    Text {
-                        text: "Maximum scale: " + formatScale(test.viewport.maximumScale)
-                        font.family: textBox.fontFamily
-                        color: textBox.fontColor
-                    }
-                }
-
-                Column {
-                    Text {
-                        text: "Device pixel ratio: " + formatScale(test.devicePixelRatio)
-                        font.family: textBox.fontFamily
-                        color: textBox.fontColor
-                    }
-                    Text {
-                        text: "Contents size: " + formatSize(test.contentsSize)
-                        font.family: textBox.fontFamily
-                        color: textBox.fontColor
-                    }
-                    Text {
-                        text: "Viewport layout size: " + formatSize(test.viewport.layoutSize)
-                        font.family: textBox.fontFamily
-                        color: textBox.fontColor
-                    }
-                }
-
-                Column {
-                    Text {
-                        text: "Adapt for small screens: " + formatBool(preferredMinimumContentsWidth)
-                        font.family: textBox.fontFamily
-                        color: textBox.fontColor
-                    }
-                    Text {
-                        text: "Allows scaling: " + formatBool(test.viewport.isScalable)
-                        font.family: textBox.fontFamily
-                        color: textBox.fontColor
-                    }
-                }
-            }
-        }
-    }
-}
diff --git a/Tools/MiniBrowser/qt/raw/DerivedSources.pri b/Tools/MiniBrowser/qt/raw/DerivedSources.pri
deleted file mode 100644
index dc4d2f4..0000000
--- a/Tools/MiniBrowser/qt/raw/DerivedSources.pri
+++ /dev/null
@@ -1,6 +0,0 @@
-TEMPLATE = derived
-
-# Make sure forwarded headers needed by this project are present
-fwheader_generator.commands = perl $${ROOT_WEBKIT_DIR}/Source/WebKit2/Scripts/generate-forwarding-headers.pl $${ROOT_WEBKIT_DIR}/Tools/WebKitTestRunner $${ROOT_BUILD_DIR}/Source/include qt
-fwheader_generator.depends  = $${ROOT_WEBKIT_DIR}/Source/WebKit2/Scripts/generate-forwarding-headers.pl
-GENERATORS += fwheader_generator
diff --git a/Tools/MiniBrowser/qt/raw/MiniBrowserRaw.pro b/Tools/MiniBrowser/qt/raw/MiniBrowserRaw.pro
deleted file mode 100644
index 0503104..0000000
--- a/Tools/MiniBrowser/qt/raw/MiniBrowserRaw.pro
+++ /dev/null
@@ -1,9 +0,0 @@
-TEMPLATE = subdirs
-CONFIG += ordered
-
-derived_sources.file = DerivedSources.pri
-target.file = Target.pri
-
-SUBDIRS = derived_sources target
-
-addStrictSubdirOrderBetween(derived_sources, target)
diff --git a/Tools/MiniBrowser/qt/raw/Target.pri b/Tools/MiniBrowser/qt/raw/Target.pri
deleted file mode 100644
index afc38ce..0000000
--- a/Tools/MiniBrowser/qt/raw/Target.pri
+++ /dev/null
@@ -1,14 +0,0 @@
-TEMPLATE = app
-TARGET = MiniBrowserRaw
-
-HEADERS += \
-    View.h
-
-SOURCES += \
-    View.cpp
-
-DESTDIR = $${ROOT_BUILD_DIR}/bin
-
-QT = core gui network webkitwidgets
-
-WEBKIT += wtf javascriptcore webkit2
diff --git a/Tools/MiniBrowser/qt/raw/View.cpp b/Tools/MiniBrowser/qt/raw/View.cpp
deleted file mode 100644
index 4c4d528..0000000
--- a/Tools/MiniBrowser/qt/raw/View.cpp
+++ /dev/null
@@ -1,137 +0,0 @@
-/*
-    Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies)
-
-    This library is free software; you can redistribute it and/or
-    modify it under the terms of the GNU Library General Public
-    License as published by the Free Software Foundation; either
-    version 2 of the License, or (at your option) any later version.
-
-    This library is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-    Library General Public License for more details.
-
-    You should have received a copy of the GNU Library General Public License
-    along with this library; see the file COPYING.LIB.  If not, write to
-    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-    Boston, MA 02110-1301, USA.
-*/
-
-#include "View.h"
-
-#include <QDebug>
-#include <QExposeEvent>
-#include <QGuiApplication>
-#include <QKeyEvent>
-#include <QMatrix4x4>
-#include <QResizeEvent>
-#include <QUrl>
-
-#include <WebKit2/WKContext.h>
-#include <WebKit2/WKPageGroup.h>
-#include <WebKit2/WKPreferences.h>
-#include <WebKit2/WKPreferencesPrivate.h>
-#include <WebKit2/WKStringQt.h>
-#include <WebKit2/WKURL.h>
-
-
-static WKContextRef createWebContext()
-{
-    return WKContextCreate();
-}
-
-static WKPageGroupRef createWebPageGroup(const QString& name)
-{
-    WKPageGroupRef pageGroup =WKPageGroupCreateWithIdentifier(WKStringCreateWithQString(name));
-    WKPreferencesRef preferences = WKPageGroupGetPreferences(pageGroup);
-    WKPreferencesSetAcceleratedCompositingEnabled(preferences, true);
-    WKPreferencesSetFrameFlatteningEnabled(preferences, true);
-
-    return pageGroup;
-}
-
-View::~View()
-{
-    delete m_context;
-    delete m_webView;
-}
-
-View::View(const QString& url)
-    : m_url(url)
-    , m_active(false)
-{
-    setSurfaceType(OpenGLSurface);
-    setGeometry(50, 50, 980, 600);
-    setFlags(Qt::Window | Qt::WindowTitleHint);
-    create();
-
-    m_context = new QOpenGLContext;
-    m_context->create();
-
-    m_webView = new QRawWebView(createWebContext(), createWebPageGroup(QString()), this);
-    m_webView->create();
-    WKPageSetUseFixedLayout(m_webView->pageRef(), true);
-}
-
-
-void View::exposeEvent(QExposeEvent* event)
-{
-    if (!m_active) {
-        m_active = true;
-        WKPageLoadURL(m_webView->pageRef(), WKURLCreateWithUTF8CString(m_url.toLocal8Bit().data()));
-
-        m_webView->setFocused(true);
-        m_webView->setVisible(true);
-        m_webView->setActive(true);
-    }
-}
-
-void View::resizeEvent(QResizeEvent* event)
-{
-    m_webView->setSize(event->size());
-}
-
-void View::timerEvent(QTimerEvent* event)
-{
-    if (event->timerId() == m_paintTimer.timerId()) {
-        m_paintTimer.stop();
-        m_context->makeCurrent(this);
-        m_webView->paint(QMatrix4x4(), 1, 0);
-        m_context->swapBuffers(this);
-    }
-}
-
-void View::viewNeedsDisplay(const QRect&)
-{
-    if (!m_paintTimer.isActive())
-        m_paintTimer.start(0, this);
-}
-
-void View::viewRequestedCursorOverride(const QCursor& cursor)
-{
-    QGuiApplication::setOverrideCursor(cursor);
-}
-
-void View::doneWithKeyEvent(const QKeyEvent* event, bool wasHandled)
-{
-    if (wasHandled || event->isAccepted())
-        return;
-
-    switch (event->key()) {
-    case Qt::Key_Backspace: {
-        WKPageRef page = m_webView->pageRef();
-        if (WKPageCanGoBack(page))
-            WKPageGoBack(page);
-        break;
-    }
-    }
-}
-
-int main(int argc, char** argv)
-{
-    QGuiApplication app(argc, argv);
-
-    View view(app.arguments().size() > 1 ? app.arguments().at(1) : QStringLiteral("http://www.google.com"));
-    view.show();
-    return app.exec();
-}
diff --git a/Tools/MiniBrowser/qt/raw/View.h b/Tools/MiniBrowser/qt/raw/View.h
deleted file mode 100644
index e53223f..0000000
--- a/Tools/MiniBrowser/qt/raw/View.h
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
-    Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies)
-
-    This library is free software; you can redistribute it and/or
-    modify it under the terms of the GNU Library General Public
-    License as published by the Free Software Foundation; either
-    version 2 of the License, or (at your option) any later version.
-
-    This library is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-    Library General Public License for more details.
-
-    You should have received a copy of the GNU Library General Public License
-    along with this library; see the file COPYING.LIB.  If not, write to
-    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-    Boston, MA 02110-1301, USA.
-*/
-
-#ifndef View_h
-#define View_h
-
-#include <QBasicTimer>
-#include <QOpenGLContext>
-#include <QWindow>
-#include <WebKit2/qrawwebview_p.h>
-
-
-class View :  public QWindow, private QRawWebViewClient {
-public:
-    View(const QString& url);
-    ~View();
-
-public: // QRawWebViewClient
-    virtual void viewNeedsDisplay(const QRect&);
-    virtual void viewRequestedScroll(const QPoint&) { }
-    virtual void viewProcessCrashed() { }
-    virtual void viewProcessRelaunched() { }
-    virtual void viewContentSizeChanged(const QSize&) { }
-    virtual void viewRequestedCursorOverride(const QCursor&);
-    virtual void doneWithKeyEvent(const QKeyEvent*, bool wasHandled);
-    virtual void doneWithTouchEvent(const QTouchEvent*, bool wasHandled) { }
-
-protected:
-    virtual void exposeEvent(QExposeEvent*);
-    virtual void resizeEvent(QResizeEvent*);
-
-    virtual void keyPressEvent(QKeyEvent* event) { m_webView->sendKeyEvent(event); }
-    virtual void keyReleaseEvent(QKeyEvent* event) { m_webView->sendKeyEvent(event); }
-
-    virtual void mouseDoubleClickEvent(QMouseEvent* event) { m_webView->sendMouseEvent(event, 2); }
-    virtual void mouseMoveEvent(QMouseEvent* event) { m_webView->sendMouseEvent(event); }
-    virtual void mousePressEvent(QMouseEvent* event) { m_webView->sendMouseEvent(event, 1); }
-    virtual void mouseReleaseEvent(QMouseEvent* event) { m_webView->sendMouseEvent(event); }
-
-private:
-    QRawWebView* m_webView;
-    QOpenGLContext *m_context;
-    QBasicTimer m_paintTimer;
-
-    QString m_url;
-    bool m_active;
-
-    virtual void timerEvent(QTimerEvent*);
-};
-
-#endif // View_h
diff --git a/Tools/MiniBrowser/qt/utils.cpp b/Tools/MiniBrowser/qt/utils.cpp
deleted file mode 100644
index d6491cc..0000000
--- a/Tools/MiniBrowser/qt/utils.cpp
+++ /dev/null
@@ -1,98 +0,0 @@
-/*
- * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2011 University of Szeged
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "utils.h"
-
-bool takeOptionFlag(QStringList* arguments, const QString& name)
-{
-    int index = arguments->indexOf(name);
-    if (index != -1)
-        arguments->removeAt(index);
-    return index != -1;
-}
-
-QString takeOptionValue(QStringList* arguments, const QString& name)
-{
-    QString result;
-
-    int index = arguments->indexOf(name);
-    if (index != -1) {
-        arguments->removeAt(index);
-        if (index < arguments->count() && !arguments->at(index).startsWith("-"))
-            result = arguments->takeAt(index);
-    }
-
-    return result;
-}
-
-QString formatKeys(QList<QString> keys)
-{
-    QString result;
-    for (int i = 0; i < keys.count() - 1; i++)
-        result.append(keys.at(i) + "|");
-    result.append(keys.last());
-    return result;
-}
-
-QList<QString> enumToKeys(const QMetaObject o, const QString& name, const QString& strip)
-{
-    QList<QString> list;
-
-    int enumIndex = o.indexOfEnumerator(name.toLatin1().data());
-    QMetaEnum enumerator = o.enumerator(enumIndex);
-
-    if (enumerator.isValid()) {
-        for (int i = 0; i < enumerator.keyCount(); i++) {
-            QString key(enumerator.valueToKey(i));
-            list.append(key.remove(strip));
-        }
-    }
-
-    return list;
-}
-
-void appQuit(int exitCode, const QString& msg)
-{
-    if (!msg.isEmpty()) {
-        if (exitCode > 0)
-            qDebug("ERROR: %s", msg.toLatin1().data());
-        else
-            qDebug() << msg;
-    }
-    exit(exitCode);
-}
-
-QUrl Utils::urlFromUserInput(const QString& string)
-{
-    QString input(string);
-    QFileInfo fi(input);
-    if (fi.exists() && fi.isRelative())
-        input = fi.absoluteFilePath();
-
-    return QUrl::fromUserInput(input);
-}
diff --git a/Tools/MiniBrowser/qt/utils.h b/Tools/MiniBrowser/qt/utils.h
deleted file mode 100644
index 154afbe..0000000
--- a/Tools/MiniBrowser/qt/utils.h
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2011 University of Szeged
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef utils_h
-#define utils_h
-
-#include <QtCore>
-
-#ifndef NO_RETURN
-#if defined(__CC_ARM) || defined(__ARMCC__)
-#define NO_RETURN __declspec(noreturn)
-#elif defined(__GNUC__)
-#define NO_RETURN __attribute((__noreturn__))
-#else
-#define NO_RETURN
-#endif
-#endif
-
-// options handling
-class Utils : public QObject {
-    Q_OBJECT
-public:
-    Utils(QObject* parent = 0)
-        : QObject(parent) { }
-
-    Q_INVOKABLE static QUrl urlFromUserInput(const QString& input);
-};
-
-bool takeOptionFlag(QStringList* arguments, const QString& name);
-QString takeOptionValue(QStringList* arguments, const QString& name);
-QString formatKeys(QList<QString> keys);
-QList<QString> enumToKeys(const QMetaObject, const QString&, const QString&);
-
-NO_RETURN void appQuit(int status, const QString& msg = QString());
-
-#endif
diff --git a/Tools/MiniBrowser/win/BrowserView.cpp b/Tools/MiniBrowser/win/BrowserView.cpp
deleted file mode 100644
index 0a6858e..0000000
--- a/Tools/MiniBrowser/win/BrowserView.cpp
+++ /dev/null
@@ -1,164 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "StdAfx.h"
-#include "BrowserView.h"
-
-#include "BrowserWindow.h"
-#include <WebKit2/WKContextPrivate.h>
-#include <WebKit2/WKURLCF.h>
-
-static const unsigned short HIGH_BIT_MASK_SHORT = 0x8000;
-
-BrowserView::BrowserView()
-    : m_webView(0)
-{
-}
-
-// UI Client Callbacks
-
-static WKPageRef createNewPage(WKPageRef page, WKURLRequestRef request, WKDictionaryRef features, WKEventModifiers modifiers, WKEventMouseButton mouseButton, const void* clientInfo)
-{
-    BrowserWindow* browserWindow = BrowserWindow::create();
-    browserWindow->createWindow(0, 0, 800, 600);
-
-    return WKViewGetPage(browserWindow->view().webView());
-}
-
-static void showPage(WKPageRef page, const void *clientInfo)
-{
-    static_cast<BrowserWindow*>(const_cast<void*>(clientInfo))->showWindow();
-}
-
-static void closePage(WKPageRef page, const void *clientInfo)
-{
-}
-
-static void runJavaScriptAlert(WKPageRef page, WKStringRef alertText, WKFrameRef frame, const void* clientInfo)
-{
-}
-
-static bool runJavaScriptConfirm(WKPageRef page, WKStringRef message, WKFrameRef frame, const void* clientInfo)
-{
-    return false;
-}
-
-static WKStringRef runJavaScriptPrompt(WKPageRef page, WKStringRef message, WKStringRef defaultValue, WKFrameRef frame, const void* clientInfo)
-{
-    return 0;
-}
-
-static void setStatusText(WKPageRef page, WKStringRef text, const void* clientInfo)
-{
-}
-
-static void mouseDidMoveOverElement(WKPageRef page, WKHitTestResultRef hitTestResult, WKEventModifiers modifiers, WKTypeRef userData, const void *clientInfo)
-{
-}
-
-void BrowserView::create(RECT webViewRect, BrowserWindow* parentWindow)
-{
-    assert(!m_webView);
-
-    static WKContextRef context = WKContextCreate();
-
-    m_webView = WKViewCreate(webViewRect, context, 0, parentWindow->window());
-
-    WKPageUIClient uiClient = {
-        kWKPageUIClientCurrentVersion,
-        parentWindow,   /* clientInfo */
-        0,          /* createNewPage_deprecatedForUseWithV0 */
-        showPage,
-        closePage,
-        0,          /* takeFocus */
-        0,          /* focus */
-        0,          /* unfocus */
-        runJavaScriptAlert,
-        runJavaScriptConfirm,
-        runJavaScriptPrompt,
-        setStatusText,
-        0,          /* mouseDidMoveOverElement_deprecatedForUseWithV0 */
-        0,          /* missingPluginButtonClicked */
-        0,          /* didNotHandleKeyEvent */
-        0,          /* didNotHandleWheelEvent */
-        0,          /* toolbarsAreVisible */
-        0,          /* setToolbarsAreVisible */
-        0,          /* menuBarIsVisible */
-        0,          /* setMenuBarIsVisible */
-        0,          /* statusBarIsVisible */
-        0,          /* setStatusBarIsVisible */
-        0,          /* isResizable */
-        0,          /* setIsResizable */
-        0,          /* getWindowFrame */
-        0,          /* setWindowFrame */
-        0,          /* runBeforeUnloadConfirmPanel */
-        0,          /* didDraw */
-        0,          /* pageDidScroll */
-        0,          /* exceededDatabaseQuota */
-        0,          /* runOpenPanel */
-        0,          /* decidePolicyForGeolocationPermissionRequest */
-        0,          /* headerHeight */
-        0,          /* footerHeight */
-        0,          /* drawHeader */
-        0,          /* drawFooter */
-        0,          /* printFrame */
-        0,          /* runModal */
-        0,          /* didCompleteRubberBandForMainFrame */
-        0,          /* saveDataToFileInDownloadsFolder */
-        0,          /* shouldInterruptJavaScript */
-        createNewPage,
-        mouseDidMoveOverElement,
-        0,          /* decidePolicyForNotificationPermissionRequest */
-        0,          /* unavailablePluginButtonClicked */
-        0,          /* showColorPicker */
-        0,          /* hideColorPicker */
-    };
-
-    WKPageSetPageUIClient(WKViewGetPage(m_webView), &uiClient);
-
-    WKViewSetIsInWindow(m_webView, true);
-}
-
-void BrowserView::setFrame(RECT rect)
-{
-    HWND webViewWindow = WKViewGetWindow(m_webView);
-    ::SetWindowPos(webViewWindow, 0, rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.top, SWP_NOZORDER | SWP_NOACTIVATE | SWP_NOCOPYBITS);
-}
-
-void BrowserView::goToURL(const std::wstring& urlString)
-{
-    CFStringRef string = CFStringCreateWithCharacters(0, (const UniChar*)urlString.data(), urlString.size());
-    CFStringRef escapedString = CFURLCreateStringByAddingPercentEscapes(0, string, 0, 0, kCFStringEncodingUTF8);
-    CFRelease(string);
-    CFURLRef cfURL = CFURLCreateWithString(0, escapedString, 0);
-    CFRelease(escapedString);
-
-    WKURLRef url = WKURLCreateWithCFURL(cfURL);
-    CFRelease(cfURL); 
-
-    WKPageRef page = WKViewGetPage(m_webView);
-    WKPageLoadURL(page, url);
-    WKRelease(url);
-}
diff --git a/Tools/MiniBrowser/win/BrowserView.h b/Tools/MiniBrowser/win/BrowserView.h
deleted file mode 100644
index e170a7d..0000000
--- a/Tools/MiniBrowser/win/BrowserView.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef BrowserView_h
-#define BrowserView_h
-
-#include <WebKit2/WebKit2_C.h>
-#include <string>
-
-class BrowserWindow;
-
-class BrowserView  {
-public:
-    BrowserView();
-
-    void goToURL(const std::wstring& url);
-
-    void create(RECT, BrowserWindow* parentWindow);
-    void setFrame(RECT);
-
-    WKViewRef webView() const { return m_webView; }
-
-private:
-    WKViewRef m_webView;
-};
-
-#endif // BrowserView_h
diff --git a/Tools/MiniBrowser/win/BrowserWindow.cpp b/Tools/MiniBrowser/win/BrowserWindow.cpp
deleted file mode 100644
index b791d5b..0000000
--- a/Tools/MiniBrowser/win/BrowserWindow.cpp
+++ /dev/null
@@ -1,261 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "StdAfx.h"
-#include "BrowserWindow.h"
-#include "MiniBrowser.h"
-#include "Resource.h"
-
-#include <assert.h>
-#include <commctrl.h>
-#include <shlwapi.h>
-#include <vector>
-#include <wininet.h>
-
-using namespace std;
-
-BrowserWindow::BrowserWindow()
-    : m_window(0)
-    , m_rebarWindow(0)
-    , m_comboBoxWindow(0)
-{
-}
-
-LRESULT CALLBACK BrowserWindow::BrowserWindowWndProc(HWND window, UINT message, WPARAM wParam, LPARAM lParam)
-{
-    LONG_PTR longPtr = ::GetWindowLongPtr(window, 0);
-    
-    if (BrowserWindow* browserView = reinterpret_cast<BrowserWindow*>(longPtr))
-        return browserView->wndProc(window, message, wParam, lParam);
-
-    if (message == WM_CREATE) {
-        LPCREATESTRUCT createStruct = reinterpret_cast<LPCREATESTRUCT>(lParam);
-        BrowserWindow* browserWindow = static_cast<BrowserWindow*>(createStruct->lpCreateParams);
-        browserWindow->m_window = window;
-
-        ::SetWindowLongPtr(window, 0, (LONG_PTR)browserWindow);
-
-        browserWindow->onCreate(createStruct);
-        return 0;
-    }
-
-    return ::DefWindowProc(window, message, wParam, lParam);
-}
-
-LRESULT BrowserWindow::wndProc(HWND window, UINT message, WPARAM wParam, LPARAM lParam)
-{
-    LRESULT lResult = 0;
-    bool handled = true;
-
-    switch (message) {
-    case WM_ERASEBKGND:
-        lResult = 1;
-        break;
-
-    case WM_COMMAND:
-        lResult = onCommand(LOWORD(wParam), handled);
-        break;
-
-    case WM_SIZE:
-        onSize(LOWORD(lParam), HIWORD(lParam));
-        break;
-
-    case WM_DESTROY:
-        onDestroy();
-        break;
-
-    case WM_NCDESTROY:
-        onNCDestroy();
-        break;
-
-    default:
-        handled = false;
-    }
-
-    if (!handled)
-        lResult = ::DefWindowProc(window, message, wParam, lParam);
-
-    return lResult;
-}
-
-void BrowserWindow::createWindow(int x, int y, int width, int height)
-{
-    assert(!m_window);
-
-    // Register the class.
-    WNDCLASSEX windowClass = { 0 };
-    windowClass.cbSize = sizeof(windowClass);
-    windowClass.style = 0;
-    windowClass.lpfnWndProc = BrowserWindowWndProc;
-    windowClass.cbClsExtra = 0;
-    windowClass.cbWndExtra = sizeof(this);
-    windowClass.hInstance = MiniBrowser::shared().instance();
-    windowClass.hIcon = 0;
-    windowClass.hCursor = ::LoadCursor(0, IDC_ARROW);
-    windowClass.hbrBackground = (HBRUSH)::GetStockObject(WHITE_BRUSH);
-    windowClass.lpszMenuName = MAKEINTRESOURCE(IDR_MAINFRAME);
-    windowClass.lpszClassName = L"MiniBrowser";
-    windowClass.hIconSm = 0;
-
-    ::RegisterClassEx(&windowClass);
-
-    ::CreateWindowW(L"MiniBrowser", L"MiniBrowser", WS_OVERLAPPEDWINDOW, x, y, width, height, 0, 0, MiniBrowser::shared().instance(), this);
-}
-
-void BrowserWindow::showWindow()
-{
-    assert(m_window);
-
-    ::ShowWindow(m_window, SW_SHOWNORMAL);
-}
-
-void BrowserWindow::goToURL(const std::wstring& url)
-{
-    m_browserView.goToURL(url);
-}
-
-void BrowserWindow::onCreate(LPCREATESTRUCT createStruct)
-{
-    // Register our window.
-    MiniBrowser::shared().registerWindow(this);
-
-    // Create the rebar control.
-    m_rebarWindow = ::CreateWindowEx(0, REBARCLASSNAME, 0, WS_VISIBLE | WS_BORDER | WS_CHILD | WS_CLIPCHILDREN | WS_CLIPSIBLINGS | CCS_NODIVIDER | CCS_NOPARENTALIGN | RBS_VARHEIGHT | RBS_BANDBORDERS,
-                                     0, 0, 0, 0, m_window, 0, createStruct->hInstance, 0);
-    REBARINFO rebarInfo = { 0 };
-    rebarInfo.cbSize = sizeof(rebarInfo);
-    rebarInfo.fMask = 0;
-    ::SendMessage(m_rebarWindow, RB_SETBARINFO, 0, (LPARAM)&rebarInfo);
-
-    // Create the combo box control.
-    m_comboBoxWindow = ::CreateWindowEx(0, L"combobox", 0, WS_VISIBLE | WS_CHILD | WS_TABSTOP | WS_VSCROLL | WS_CLIPCHILDREN | WS_CLIPSIBLINGS | CBS_AUTOHSCROLL | CBS_DROPDOWN,
-                                        0, 0, 0, 0, m_rebarWindow, 0, createStruct->hInstance, 0);
-    SendMessage(m_comboBoxWindow, WM_SETFONT, (WPARAM)GetStockObject(DEFAULT_GUI_FONT), MAKELPARAM(TRUE, 0));
-
-    REBARBANDINFO bandInfo;
-    bandInfo.cbSize = sizeof(bandInfo);
-    bandInfo.fMask = RBBIM_STYLE | RBBIM_TEXT | RBBIM_CHILD | RBBIM_CHILDSIZE | RBBIM_SIZE;
-    bandInfo.fStyle = RBBS_CHILDEDGE | RBBS_GRIPPERALWAYS;
-    bandInfo.lpText = L"Address";
-    bandInfo.hwndChild = m_comboBoxWindow;
-
-    RECT comboBoxRect;
-    ::GetWindowRect(m_comboBoxWindow, &comboBoxRect);
-    bandInfo.cx = 100;
-    bandInfo.cxMinChild = comboBoxRect.right - comboBoxRect.left;
-    bandInfo.cyMinChild = comboBoxRect.bottom - comboBoxRect.top;
-
-    // Add the band to the rebar.
-    int result = ::SendMessage(m_rebarWindow, RB_INSERTBAND, (WPARAM)-1, (LPARAM)&bandInfo);
-    
-    // Create the browser view.
-    RECT webViewRect = { 0, 0, 0, 0};
-    m_browserView.create(webViewRect, this);
-}
-
-void BrowserWindow::onDestroy()
-{
-    MiniBrowser::shared().unregisterWindow(this);
-
-    // FIXME: Should we close the browser view here?
-}
-
-void BrowserWindow::onNCDestroy()
-{
-    delete this;
-}
-
-void BrowserWindow::onSize(int width, int height)
-{
-    RECT rebarRect;
-    ::GetClientRect(m_rebarWindow, &rebarRect);
-
-    // Resize the rebar.
-    ::MoveWindow(m_rebarWindow, 0, 0, width, rebarRect.bottom - rebarRect.top, true);
-
-    RECT webViewRect;
-    webViewRect.top = rebarRect.bottom;
-    webViewRect.left = 0;
-    webViewRect.right = width;
-    webViewRect.bottom = height;
-    m_browserView.setFrame(webViewRect);
-}
-
-LRESULT BrowserWindow::onCommand(int commandID, bool& handled)
-{
-    switch (commandID) {
-    case ID_FILE_NEW_WINDOW:
-        MiniBrowser::shared().createNewWindow();
-        break;
-    case ID_FILE_CLOSE:
-        ::PostMessage(m_window, WM_CLOSE, 0, 0);
-        break;
-    case ID_DEBUG_SHOW_WEB_VIEW: {
-        HMENU menu = ::GetMenu(m_window);
-        bool shouldHide = ::GetMenuState(menu, ID_DEBUG_SHOW_WEB_VIEW, MF_BYCOMMAND) & MF_CHECKED;
-
-        ::CheckMenuItem(menu, ID_DEBUG_SHOW_WEB_VIEW, MF_BYCOMMAND | (shouldHide ? MF_UNCHECKED : MF_CHECKED));
-
-        // Show or hide the web view.
-        HWND webViewWindow = WKViewGetWindow(m_browserView.webView());
-        ::ShowWindow(webViewWindow, shouldHide ? SW_HIDE : SW_SHOW);
-        break;
-    }
-    default:
-        handled = false;
-    }
-
-    return 0;
-}
-
-bool BrowserWindow::handleMessage(const MSG* message)
-{
-    if (message->hwnd != m_comboBoxWindow && !::IsChild(m_comboBoxWindow, message->hwnd))
-        return false;
-
-    // Look for a WM_KEYDOWN message.
-    if (message->message != WM_KEYDOWN)
-        return false;
-
-    // Look for the VK_RETURN key.
-    if (message->wParam != VK_RETURN)
-        return false;
-
-    std::vector<WCHAR> buffer;
-    int textLength = ::GetWindowTextLength(m_comboBoxWindow);
-
-    buffer.resize(textLength + 1);
-    ::GetWindowText(m_comboBoxWindow, &buffer[0], buffer.size());
-
-    std::wstring url(&buffer[0], buffer.size() - 1);
-
-    if (url.find(L":") == std::wstring::npos)
-        url = L"http://" + url;
-
-    m_browserView.goToURL(url);
-
-    // We handled this message.
-    return true;
-}
diff --git a/Tools/MiniBrowser/win/BrowserWindow.h b/Tools/MiniBrowser/win/BrowserWindow.h
deleted file mode 100644
index 1cf7350..0000000
--- a/Tools/MiniBrowser/win/BrowserWindow.h
+++ /dev/null
@@ -1,70 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef BrowserWindow_h
-#define BrowserWindow_h
-
-#include "BrowserView.h"
-#include <string>
-
-class BrowserWindow {
-public:
-    static BrowserWindow* create()
-    {
-        return new BrowserWindow;
-    }
-
-    void createWindow(int x, int y, int width, int height);
-    void showWindow();
-
-    void goToURL(const std::wstring& url);
-
-    bool handleMessage(const MSG*);
-
-    const BrowserView& view() const { return m_browserView; }
-    HWND window() const { return m_window; }
-
-private:
-    BrowserWindow();
-
-    static LRESULT CALLBACK BrowserWindowWndProc(HWND, UINT, WPARAM, LPARAM);
-
-    // Message handlers.
-    LRESULT wndProc(HWND, UINT, WPARAM, LPARAM);
-    void onCreate(LPCREATESTRUCT);
-    void onDestroy();
-    void onNCDestroy();
-
-    void onSize(int width, int height);
-    LRESULT onCommand(int commandID, bool& handled);
-
-    HWND m_window;
-
-    HWND m_rebarWindow;
-    HWND m_comboBoxWindow;
-    BrowserView m_browserView;
-};
-
-#endif // BrowserWindow_h
diff --git a/Tools/MiniBrowser/win/MiniBrowser.cpp b/Tools/MiniBrowser/win/MiniBrowser.cpp
deleted file mode 100644
index 7e3d488..0000000
--- a/Tools/MiniBrowser/win/MiniBrowser.cpp
+++ /dev/null
@@ -1,84 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "stdafx.h"
-
-#include "BrowserWindow.h"
-#include "MiniBrowser.h"
-#include <assert.h>
-
-MiniBrowser::MiniBrowser()
-    : m_instance(0)
-{
-}
-
-MiniBrowser& MiniBrowser::shared()
-{
-    static MiniBrowser miniBrowser;
-
-    return miniBrowser;
-}
-
-void MiniBrowser::initialize(HINSTANCE instance)
-{
-    assert(!m_instance);
-
-    m_instance = instance;
-}
-
-void MiniBrowser::createNewWindow()
-{
-    static const wchar_t* kDefaultURLString = L"http://webkit.org/";
-
-    BrowserWindow* browserWindow = BrowserWindow::create();
-    browserWindow->createWindow(0, 0, 800, 600);
-    browserWindow->showWindow();
-    browserWindow->goToURL(kDefaultURLString);
-}
-
-void MiniBrowser::registerWindow(BrowserWindow* window)
-{
-    m_browserWindows.insert(window);
-}
-
-void MiniBrowser::unregisterWindow(BrowserWindow* window)
-{
-    m_browserWindows.erase(window);
-
-    if (m_browserWindows.empty())
-        ::PostQuitMessage(0);
-}
-
-bool MiniBrowser::handleMessage(const MSG* message)
-{
-    for (std::set<BrowserWindow*>::const_iterator it = m_browserWindows.begin(), end = m_browserWindows.end(); it != end; ++it) {
-        BrowserWindow* browserWindow = *it;
-
-        if (browserWindow->handleMessage(message))
-            return true;
-    }
-
-    return false;
-}
diff --git a/Tools/MiniBrowser/win/MiniBrowser.h b/Tools/MiniBrowser/win/MiniBrowser.h
deleted file mode 100644
index c7b5177..0000000
--- a/Tools/MiniBrowser/win/MiniBrowser.h
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef MiniBrowser_h
-#define MiniBrowser_h
-
-#include <set>
-
-class BrowserWindow;
-
-class MiniBrowser {
-public:
-    static MiniBrowser& shared();
-
-    void initialize(HINSTANCE);
-
-    void createNewWindow();
-
-    void registerWindow(BrowserWindow*);
-    void unregisterWindow(BrowserWindow*);
-
-    bool handleMessage(const MSG*);
-
-    HINSTANCE instance() const { return m_instance; }
-
-private:
-    MiniBrowser();
-
-    HINSTANCE m_instance;
-    std::set<BrowserWindow*> m_browserWindows;
-};
-
-#endif // MiniBrowser_h
diff --git a/Tools/MiniBrowser/win/MiniBrowser.rc b/Tools/MiniBrowser/win/MiniBrowser.rc
deleted file mode 100644
index 0ff88b0..0000000
--- a/Tools/MiniBrowser/win/MiniBrowser.rc
+++ /dev/null
@@ -1,79 +0,0 @@
-// Microsoft Visual C++ generated resource script.

-//

-#include "resource.h"

-#include "winresrc.h"
-

-/////////////////////////////////////////////////////////////////////////////

-// English (U.S.) resources

-

-#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)

-#ifdef _WIN32

-LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US

-#pragma code_page(1252)

-#endif //_WIN32

-

-/////////////////////////////////////////////////////////////////////////////

-//

-// Menu

-//

-

-IDR_MAINFRAME MENU 

-BEGIN

-    POPUP "&File"

-    BEGIN

-        MENUITEM "&New Window\tCtrl+N",         ID_FILE_NEW_WINDOW

-        MENUITEM SEPARATOR

-        MENUITEM "&Close",                      ID_FILE_CLOSE

-    END

-    POPUP "&Debug"

-    BEGIN

-        MENUITEM "&Show WebView",               ID_DEBUG_SHOW_WEB_VIEW, CHECKED

-    END

-END

-

-

-/////////////////////////////////////////////////////////////////////////////

-//

-// Accelerator

-//

-

-IDR_MAINFRAME_ACCEL ACCELERATORS 

-BEGIN

-    "N",            ID_FILE_NEW_WINDOW,     VIRTKEY, CONTROL, NOINVERT

-END

-

-

-#ifdef APSTUDIO_INVOKED

-/////////////////////////////////////////////////////////////////////////////

-//

-// TEXTINCLUDE

-//

-

-1 TEXTINCLUDE 

-BEGIN

-    "resource.\0"

-END

-

-

-3 TEXTINCLUDE 

-BEGIN

-    "\r\0"

-END

-

-#endif    // APSTUDIO_INVOKED

-

-#endif    // English (U.S.) resources

-/////////////////////////////////////////////////////////////////////////////

-

-

-

-#ifndef APSTUDIO_INVOKED

-/////////////////////////////////////////////////////////////////////////////

-//

-// Generated from the TEXTINCLUDE 3 resource.

-//

-

-

-/////////////////////////////////////////////////////////////////////////////

-#endif    // not APSTUDIO_INVOKED

-

diff --git a/Tools/MiniBrowser/win/main.cpp b/Tools/MiniBrowser/win/main.cpp
deleted file mode 100644
index ba09c94..0000000
--- a/Tools/MiniBrowser/win/main.cpp
+++ /dev/null
@@ -1,74 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "stdafx.h"
-
-#include "BrowserWindow.h"
-#include "MiniBrowser.h"
-#include <string>
-
-static bool shouldTranslateMessage(const MSG& msg)
-{
-    // Only these four messages are actually translated by ::TranslateMessage or ::TranslateAccelerator.
-    // It's useless (though harmless) to call those functions for other messages, so we always allow other messages to be translated.
-    if (msg.message != WM_KEYDOWN && msg.message != WM_SYSKEYDOWN && msg.message != WM_KEYUP && msg.message != WM_SYSKEYUP)
-        return true;
-    
-    wchar_t className[256];
-    if (!::GetClassNameW(msg.hwnd, className, ARRAYSIZE(className)))
-        return true;
-
-    // Don't call TranslateMessage() on key events destined for a WebKit2 view, WebKit will do this if it doesn't handle the message.
-    // It would be nice to use some API here instead of hard-coding the window class name.
-    return wcscmp(className, L"WebKit2WebViewWindowClass");
-}
-
-BOOL WINAPI DllMain(HINSTANCE dllInstance, DWORD reason, LPVOID)
-{
-    if (reason == DLL_PROCESS_ATTACH)
-        MiniBrowser::shared().initialize(dllInstance);
-
-    return TRUE;
-}
-
-extern "C" __declspec(dllexport) int WINAPI dllLauncherEntryPoint(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpstrCmdLine, int nCmdShow)
-{
-    // Create and show our initial window.
-    MiniBrowser::shared().createNewWindow();
-
-    MSG message;
-    while (BOOL result = ::GetMessage(&message, 0, 0, 0)) {
-        if (result == -1)
-            break;
-        
-        if (shouldTranslateMessage(message))
-            ::TranslateMessage(&message);
-
-        if (!MiniBrowser::shared().handleMessage(&message))
-            ::DispatchMessage(&message);
-    }
-
-    return 0;
-}
diff --git a/Tools/MiniBrowser/win/resource.h b/Tools/MiniBrowser/win/resource.h
deleted file mode 100644
index b12b906..0000000
--- a/Tools/MiniBrowser/win/resource.h
+++ /dev/null
@@ -1,23 +0,0 @@
-//{{NO_DEPENDENCIES}}
-// Microsoft Visual C++ generated include file.
-// Used by MiniBrowser.rc
-//
-
-#define ID_FILE_NEW_WINDOW              32770
-#define ID_FILE_OPEN                    32771
-#define ID_FILE_CLOSE                   32772
-#define ID_DEBUG_SHOW_WEB_VIEW          32773
-
-#define IDR_MAINFRAME                   128
-
-// Next default values for new objects
-// 
-#ifdef APSTUDIO_INVOKED
-#ifndef APSTUDIO_READONLY_SYMBOLS
-#define _APS_NO_MFC                     1
-#define _APS_NEXT_RESOURCE_VALUE        132
-#define _APS_NEXT_COMMAND_VALUE         32775
-#define _APS_NEXT_CONTROL_VALUE         1000
-#define _APS_NEXT_SYMED_VALUE           110
-#endif
-#endif
diff --git a/Tools/MiniBrowser/win/stdafx.cpp b/Tools/MiniBrowser/win/stdafx.cpp
deleted file mode 100644
index c664e32..0000000
--- a/Tools/MiniBrowser/win/stdafx.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-// stdafx.cpp : source file that includes just the standard includes
-// MiniBrowser.pch will be the pre-compiled header
-// stdafx.obj will contain the pre-compiled type information
-
-#include "stdafx.h"
-
-// TODO: reference any additional headers you need in STDAFX.H
-// and not in this file
diff --git a/Tools/MiniBrowser/win/stdafx.h b/Tools/MiniBrowser/win/stdafx.h
deleted file mode 100644
index 2f531bb..0000000
--- a/Tools/MiniBrowser/win/stdafx.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#define STRICT
-#define WIN32_LEAN_AND_MEAN
-
-#include <tchar.h>
-#include <windows.h>
-
-
-
diff --git a/Tools/OWNERS b/Tools/OWNERS
new file mode 100644
index 0000000..eff2537
--- /dev/null
+++ b/Tools/OWNERS
@@ -0,0 +1,4 @@
+dpranke@chromium.org
+jochen@chromium.org
+peter@chromium.org
+tony@chromium.org
diff --git a/Tools/QtTestBrowser/QtTestBrowser.pro b/Tools/QtTestBrowser/QtTestBrowser.pro
deleted file mode 100644
index 2fa9086..0000000
--- a/Tools/QtTestBrowser/QtTestBrowser.pro
+++ /dev/null
@@ -1,57 +0,0 @@
-# -------------------------------------------------------------------
-# Project file for the QtTestBrowser binary
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-TEMPLATE = app
-
-INCLUDEPATH += \
-    $${ROOT_WEBKIT_DIR}/Source/WebCore/platform/qt \
-    $${ROOT_WEBKIT_DIR}/Source/WebKit/qt/WebCoreSupport \
-    $${ROOT_WEBKIT_DIR}/Tools/DumpRenderTree/qt/ \
-    $${ROOT_WEBKIT_DIR}/Source/WTF
-
-SOURCES += \
-    locationedit.cpp \
-    launcherwindow.cpp \
-    qttestbrowser.cpp \
-    mainwindow.cpp \
-    urlloader.cpp \
-    utils.cpp \
-    webpage.cpp \
-    webview.cpp \
-    fpstimer.cpp \
-    cookiejar.cpp
-
-HEADERS += \
-    locationedit.h \
-    launcherwindow.h \
-    mainwindow.h \
-    urlloader.h \
-    utils.h \
-    webinspector.h \
-    webpage.h \
-    webview.h \
-    fpstimer.h \
-    cookiejar.h
-
-
-WEBKIT += wtf webcore
-
-DESTDIR = $$ROOT_BUILD_DIR/bin
-
-QT += network webkitwidgets widgets
-have?(QTPRINTSUPPORT): QT += printsupport
-
-macx:QT += xml
-
-have?(FONTCONFIG): PKGCONFIG += fontconfig
-
-contains(QT_CONFIG, opengl) {
-    QT += opengl
-    DEFINES += QT_CONFIGURED_WITH_OPENGL
-}
-
-RESOURCES += \
-    QtTestBrowser.qrc
diff --git a/Tools/QtTestBrowser/QtTestBrowser.qrc b/Tools/QtTestBrowser/QtTestBrowser.qrc
deleted file mode 100644
index b6036e8..0000000
--- a/Tools/QtTestBrowser/QtTestBrowser.qrc
+++ /dev/null
@@ -1,6 +0,0 @@
-<RCC>
-    <qresource prefix="/">
-        <file>useragentlist.txt</file>
-        <file>favicon.png</file>
-    </qresource>
-</RCC>
diff --git a/Tools/QtTestBrowser/cookiejar.cpp b/Tools/QtTestBrowser/cookiejar.cpp
deleted file mode 100644
index ca1b846..0000000
--- a/Tools/QtTestBrowser/cookiejar.cpp
+++ /dev/null
@@ -1,139 +0,0 @@
-/*
- * Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies)
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include "cookiejar.h"
-
-#include <QStandardPaths>
-#include <QDir>
-#include <QTextStream>
-
-TestBrowserCookieJar::TestBrowserCookieJar(QObject* parent)
-    : QNetworkCookieJar(parent)
-    , m_storageEnabled(false)
-{
-    // We use a timer for the real disk write to avoid multiple IO
-    // syscalls in sequence (when loading pages which set multiple cookies).
-    m_timer.setInterval(10000);
-    m_timer.setSingleShot(true);
-    connect(&m_timer, SIGNAL(timeout()), this, SLOT(saveToDisk()));
-
-#ifndef QT_NO_DESKTOPSERVICES
-    QString path = QStandardPaths::writableLocation(QStandardPaths::CacheLocation);
-#else
-    QString path = QDir::homePath() + "/.QtTestBrowser";
-#endif
-
-    QDir().mkpath(path);
-    m_file.setFileName(path + "/cookieJar");
-}
-
-TestBrowserCookieJar::~TestBrowserCookieJar()
-{
-    if (m_storageEnabled) {
-        extractRawCookies();
-        saveToDisk();
-    }
-}
-
-bool TestBrowserCookieJar::setCookiesFromUrl(const QList<QNetworkCookie>& cookieList, const QUrl& url)
-{
-    bool status = QNetworkCookieJar::setCookiesFromUrl(cookieList, url);
-    if (status && m_storageEnabled)
-        scheduleSaveToDisk();
-    return status;
-}
-
-void TestBrowserCookieJar::setDiskStorageEnabled(bool enabled)
-{
-    m_storageEnabled = enabled;
-
-    if (enabled && allCookies().isEmpty())
-        loadFromDisk();
-
-    // When disabling, save current cookies.
-    if (!enabled && !allCookies().isEmpty())
-        scheduleSaveToDisk();
-}
-
-void TestBrowserCookieJar::scheduleSaveToDisk()
-{
-    // We extract the raw cookies here because the user may
-    // enable/disable/clear cookies while the timer is running.
-    extractRawCookies();
-    m_timer.start();
-}
-
-void TestBrowserCookieJar::extractRawCookies()
-{
-    QList<QNetworkCookie> cookies = allCookies();
-    m_rawCookies.clear();
-
-    foreach (const QNetworkCookie &cookie, cookies) {
-        if (!cookie.isSessionCookie())
-            m_rawCookies.append(cookie.toRawForm());
-    }
-}
-
-void TestBrowserCookieJar::saveToDisk()
-{
-    m_timer.stop();
-
-    if (m_file.open(QIODevice::WriteOnly | QIODevice::Text)) {
-        QTextStream out(&m_file);
-        foreach (const QByteArray &cookie, m_rawCookies)
-            out << cookie + "\n";
-        m_file.close();
-    } else
-        qWarning("IO error handling cookiejar file");
-}
-
-void TestBrowserCookieJar::loadFromDisk()
-{
-    if (!m_file.exists())
-        return;
-
-    QList<QNetworkCookie> cookies;
-
-    if (m_file.open(QIODevice::ReadOnly | QIODevice::Text)) {
-        QTextStream in(&m_file);
-        while (!in.atEnd())
-            cookies.append(QNetworkCookie::parseCookies(in.readLine().toUtf8()));
-        m_file.close();
-    } else
-        qWarning("IO error handling cookiejar file");
-
-    setAllCookies(cookies);
-}
-
-void TestBrowserCookieJar::reset()
-{
-    setAllCookies(QList<QNetworkCookie>());
-    if (m_storageEnabled)
-        scheduleSaveToDisk();
-}
diff --git a/Tools/QtTestBrowser/cookiejar.h b/Tools/QtTestBrowser/cookiejar.h
deleted file mode 100644
index da62fb8..0000000
--- a/Tools/QtTestBrowser/cookiejar.h
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
- * Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies)
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef cookiejar_h
-#define cookiejar_h
-
-#include <QFile>
-#include <QNetworkCookie>
-#include <QNetworkCookieJar>
-#include <QTimer>
-
-class TestBrowserCookieJar : public QNetworkCookieJar {
-    Q_OBJECT
-
-public:
-    TestBrowserCookieJar(QObject* parent = 0);
-    virtual ~TestBrowserCookieJar();
-
-    virtual bool setCookiesFromUrl(const QList<QNetworkCookie>&, const QUrl&);
-
-    void setDiskStorageEnabled(bool);
-
-public Q_SLOTS:
-    void scheduleSaveToDisk();
-    void loadFromDisk();
-    void reset();
-
-private Q_SLOTS:
-    void saveToDisk();
-
-private:
-    void extractRawCookies();
-
-    QList<QByteArray> m_rawCookies;
-    bool m_storageEnabled;
-    QFile m_file;
-    QTimer m_timer;
-};
-
-#endif
diff --git a/Tools/QtTestBrowser/favicon.png b/Tools/QtTestBrowser/favicon.png
deleted file mode 100644
index 4462752..0000000
--- a/Tools/QtTestBrowser/favicon.png
+++ /dev/null
Binary files differ
diff --git a/Tools/QtTestBrowser/fpstimer.cpp b/Tools/QtTestBrowser/fpstimer.cpp
deleted file mode 100644
index eae3d9c..0000000
--- a/Tools/QtTestBrowser/fpstimer.cpp
+++ /dev/null
@@ -1,80 +0,0 @@
-/*
- * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "fpstimer.h"
-
-#include <QDateTime>
-#include <QTimerEvent>
-
-// We save a maximum of 10000 frames, and purge 2000 at a time
-#define MAX_FRAMES_SAVED 10000
-#define FRAMES_TO_PURGE_WHEN_FULL 2000
-// 60 FPS
-#define FPS_MEASURE_INTERVAL 1000 / 60
-
-FpsTimer::FpsTimer(QObject* parent)
-    : QObject(parent)
-    , m_timer(0)
-{
-}
-
-int FpsTimer::numFrames(int spanMillis) const
-{
-    const QTime now = QTime::currentTime();
-
-    int count = 0;
-    for (int i = m_frames.length() - 1; i >= 0; --i, ++count) {
-        int msecs = m_frames[i].msecsTo(now);
-        if (msecs < 0)
-            msecs += 24 * 60 * 60 * 1000;
-        if (msecs > spanMillis)
-            break;
-    }
-    return count;
-}
-
-void FpsTimer::start()
-{
-    m_timer = startTimer(FPS_MEASURE_INTERVAL);
-}
-
-void FpsTimer::stop()
-{
-    if (!m_timer)
-        return;
-    killTimer(m_timer);
-    m_frames.clear();
-}
-
-void FpsTimer::timerEvent(QTimerEvent* event)
-{
-    if (event->timerId() != m_timer)
-        return;
-    m_frames.append(QTime::currentTime());
-    if (m_frames.length() > MAX_FRAMES_SAVED)
-        m_frames.erase(m_frames.begin(), m_frames.begin() + FRAMES_TO_PURGE_WHEN_FULL);
-}
diff --git a/Tools/QtTestBrowser/fpstimer.h b/Tools/QtTestBrowser/fpstimer.h
deleted file mode 100644
index 256745a..0000000
--- a/Tools/QtTestBrowser/fpstimer.h
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef fpstimer_h
-#define fpstimer_h
-
-#include <QObject>
-#include <QSet>
-#include <QTime>
-
-class FpsTimer : public QObject {
-    Q_OBJECT
-
-public:
-    FpsTimer(QObject* parent = 0);
-    int numFrames(int spanMillis = 1000) const;
-
-public Q_SLOTS:
-    void start();
-    void stop();
-
-protected Q_SLOTS:
-    virtual void timerEvent(QTimerEvent*);
-
-private:
-    int m_timer;
-    QList<QTime> m_frames;
-};
-
-#endif // FPSMEASURE_H
diff --git a/Tools/QtTestBrowser/launcherwindow.cpp b/Tools/QtTestBrowser/launcherwindow.cpp
deleted file mode 100644
index 8badf46..0000000
--- a/Tools/QtTestBrowser/launcherwindow.cpp
+++ /dev/null
@@ -1,1197 +0,0 @@
-/*
- * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2011 University of Szeged
- * Copyright (C) 2011 Kristof Kosztyo <Kosztyo.Kristof@stud.u-szeged.hu>
- * Copyright (C) 2009 Girish Ramakrishnan <girish@forwardbias.in>
- * Copyright (C) 2006 George Staikos <staikos@kde.org>
- * Copyright (C) 2006 Dirk Mueller <mueller@kde.org>
- * Copyright (C) 2006 Zack Rusin <zack@kde.org>
- * Copyright (C) 2006 Simon Hausmann <hausmann@kde.org>
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include "launcherwindow.h"
-#include "cookiejar.h"
-#include "urlloader.h"
-
-#include <QApplication>
-#include <QCheckBox>
-#include <QComboBox>
-#include <QCoreApplication>
-#include <QDialogButtonBox>
-#include <QInputDialog>
-#include <QLabel>
-#ifndef QT_NO_LINEEDIT
-#include <QLineEdit>
-#endif
-#ifndef QT_NO_SHORTCUT
-#include <QMenuBar>
-#endif
-#if !defined(QT_NO_PRINTPREVIEWDIALOG) && HAVE(QTPRINTSUPPORT)
-#include <QPrintPreviewDialog>
-#endif
-#include <QSlider>
-#include <QSplitter>
-#include <QStatusBar>
-#include <QToolButton>
-#include <QToolTip>
-#include <QVBoxLayout>
-
-#if !defined(QT_NO_FILEDIALOG) && !defined(QT_NO_MESSAGEBOX)
-#include <QFileDialog>
-#include <QFileInfo>
-#include <QMessageBox>
-#include <QNetworkReply>
-#endif
-
-#if !defined(QT_NO_NETWORKDISKCACHE) && !defined(QT_NO_DESKTOPSERVICES)
-#include <QStandardPaths>
-#include <QtNetwork/QNetworkDiskCache>
-#endif
-
-struct HighlightedElement {
-    QWebElement m_element;
-    QString m_previousStyle;
-};
-
-const int gExitClickArea = 80;
-QVector<int> LauncherWindow::m_zoomLevels;
-
-static TestBrowserCookieJar* testBrowserCookieJarInstance()
-{
-    static TestBrowserCookieJar* cookieJar = new TestBrowserCookieJar(qApp);
-    return cookieJar;
-}
-
-LauncherWindow::LauncherWindow(WindowOptions* data, QGraphicsScene* sharedScene)
-    : MainWindow()
-    , m_currentZoom(100)
-    , m_urlLoader(0)
-    , m_view(0)
-    , m_inspector(0)
-    , m_formatMenuAction(0)
-    , m_zoomAnimation(0)
-#if !defined(QT_NO_FILEDIALOG) && !defined(QT_NO_MESSAGEBOX)
-    , m_reply(0)
-#endif
-#ifndef QT_NO_LINEEDIT
-    , m_findFlag(0)
-#endif
-{
-    if (data)
-        m_windowOptions = *data;
-
-    init();
-    if (sharedScene && data->useGraphicsView)
-        static_cast<QGraphicsView*>(m_view)->setScene(sharedScene);
-
-    createChrome();
-#if !defined(QT_NO_FILEDIALOG) && !defined(QT_NO_MESSAGEBOX)
-    connect(page(), SIGNAL(downloadRequested(const QNetworkRequest&)), this, SLOT(downloadRequest(const QNetworkRequest&)));
-#endif
-}
-
-LauncherWindow::~LauncherWindow()
-{
-    delete m_urlLoader;
-}
-
-void LauncherWindow::init()
-{
-    QSplitter* splitter = new QSplitter(Qt::Vertical, this);
-    setCentralWidget(splitter);
-
-    if (m_windowOptions.startMaximized)
-        setWindowState(windowState() | Qt::WindowMaximized);
-    else
-        resize(800, 600);
-
-    m_inspector = new WebInspector;
-#ifndef QT_NO_PROPERTIES
-    if (!m_windowOptions.inspectorUrl.isEmpty())
-        m_inspector->setProperty("_q_inspectorUrl", m_windowOptions.inspectorUrl);
-#endif
-    connect(this, SIGNAL(destroyed()), m_inspector, SLOT(deleteLater()));
-
-    // the zoom values are chosen to be like in Mozilla Firefox 3
-    if (!m_zoomLevels.count()) {
-        m_zoomLevels << 30 << 50 << 67 << 80 << 90;
-        m_zoomLevels << 100;
-        m_zoomLevels << 110 << 120 << 133 << 150 << 170 << 200 << 240 << 300;
-    }
-
-    initializeView();
-}
-
-void LauncherWindow::initializeView()
-{
-    delete m_view;
-
-    m_inputUrl = addressUrl();
-    QUrl url = page()->mainFrame()->url();
-    setPage(new WebPage(this));
-    setDiskCache(m_windowOptions.useDiskCache);
-    setUseDiskCookies(m_windowOptions.useDiskCookies);
-
-    // We reuse the same cookieJar on multiple QNAMs, which is OK.
-    QObject* cookieJarParent = testBrowserCookieJarInstance()->parent();
-    page()->networkAccessManager()->setCookieJar(testBrowserCookieJarInstance());
-    testBrowserCookieJarInstance()->setParent(cookieJarParent);
-
-    QSplitter* splitter = static_cast<QSplitter*>(centralWidget());
-
-    if (!m_windowOptions.useGraphicsView) {
-        WebViewTraditional* view = new WebViewTraditional(splitter);
-        view->setPage(page());
-
-        view->installEventFilter(this);
-
-        m_view = view;
-    } else {
-        WebViewGraphicsBased* view = new WebViewGraphicsBased(splitter);
-        m_view = view;
-#ifndef QT_NO_OPENGL
-        toggleQGLWidgetViewport(m_windowOptions.useQGLWidgetViewport);
-#endif
-        view->setPage(page());
-
-        connect(view, SIGNAL(currentFPSUpdated(int)), this, SLOT(updateFPS(int)));
-
-        view->installEventFilter(this);
-        // The implementation of QAbstractScrollArea::eventFilter makes us need
-        // to install the event filter also on the viewport of a QGraphicsView.
-        view->viewport()->installEventFilter(this);
-    }
-
-    m_touchMocking = false;
-
-    connect(page(), SIGNAL(loadStarted()), this, SLOT(loadStarted()));
-    connect(page(), SIGNAL(loadFinished(bool)), this, SLOT(loadFinished()));
-    connect(page(), SIGNAL(linkHovered(const QString&, const QString&, const QString&)),
-            this, SLOT(showLinkHover(const QString&, const QString&)));
-    connect(this, SIGNAL(enteredFullScreenMode(bool)), this, SLOT(toggleFullScreenMode(bool)));
-
-    if (m_windowOptions.printLoadedUrls)
-        connect(page()->mainFrame(), SIGNAL(urlChanged(QUrl)), this, SLOT(printURL(QUrl)));
-
-    applyPrefs();
-
-    splitter->addWidget(m_inspector);
-    m_inspector->setPage(page());
-    m_inspector->hide();
-
-    if (m_windowOptions.remoteInspectorPort)
-        page()->setProperty("_q_webInspectorServerPort", m_windowOptions.remoteInspectorPort);
-
-    if (url.isValid())
-        page()->mainFrame()->load(url);
-    else  {
-        setAddressUrl(m_inputUrl);
-        m_inputUrl = QString();
-    }
-}
-
-void LauncherWindow::applyPrefs()
-{
-    QWebSettings* settings = page()->settings();
-    settings->setAttribute(QWebSettings::AcceleratedCompositingEnabled, m_windowOptions.useCompositing);
-    settings->setAttribute(QWebSettings::TiledBackingStoreEnabled, m_windowOptions.useTiledBackingStore);
-    settings->setAttribute(QWebSettings::FrameFlatteningEnabled, m_windowOptions.useFrameFlattening);
-    settings->setAttribute(QWebSettings::WebGLEnabled, m_windowOptions.useWebGL);
-    m_windowOptions.useWebAudio = settings->testAttribute(QWebSettings::WebAudioEnabled);
-
-    if (!isGraphicsBased())
-        return;
-
-    WebViewGraphicsBased* view = static_cast<WebViewGraphicsBased*>(m_view);
-    view->setViewportUpdateMode(m_windowOptions.viewportUpdateMode);
-    view->setFrameRateMeasurementEnabled(m_windowOptions.showFrameRate);
-    view->setItemCacheMode(m_windowOptions.cacheWebView ? QGraphicsItem::DeviceCoordinateCache : QGraphicsItem::NoCache);
-
-    if (m_windowOptions.resizesToContents)
-        toggleResizesToContents(m_windowOptions.resizesToContents);
-}
-
-void LauncherWindow::createChrome()
-{
-#ifndef QT_NO_SHORTCUT
-    QMenu* fileMenu = menuBar()->addMenu("&File");
-    fileMenu->addAction("New Window", this, SLOT(newWindow()), QKeySequence::New);
-    fileMenu->addAction(tr("Open File..."), this, SLOT(openFile()), QKeySequence::Open);
-    fileMenu->addAction(tr("Open Location..."), this, SLOT(openLocation()), QKeySequence(Qt::CTRL | Qt::Key_L));
-    fileMenu->addAction("Close Window", this, SLOT(close()), QKeySequence::Close);
-    fileMenu->addSeparator();
-    fileMenu->addAction("Take Screen Shot...", this, SLOT(screenshot()));
-#if !defined(QT_NO_PRINTER) && HAVE(QTPRINTSUPPORT)
-    fileMenu->addAction(tr("Print..."), this, SLOT(print()), QKeySequence::Print);
-#endif
-    fileMenu->addSeparator();
-    fileMenu->addAction("Quit", QApplication::instance(), SLOT(closeAllWindows()), QKeySequence(Qt::CTRL | Qt::Key_Q));
-
-    QMenu* editMenu = menuBar()->addMenu("&Edit");
-    editMenu->addAction(page()->action(QWebPage::Undo));
-    editMenu->addAction(page()->action(QWebPage::Redo));
-    editMenu->addSeparator();
-    editMenu->addAction(page()->action(QWebPage::Cut));
-    editMenu->addAction(page()->action(QWebPage::Copy));
-    editMenu->addAction(page()->action(QWebPage::Paste));
-    editMenu->addSeparator();
-#ifndef QT_NO_LINEEDIT
-    editMenu->addAction("&Find", this, SLOT(showFindBar()), QKeySequence(Qt::CTRL | Qt::Key_F));
-    editMenu->addSeparator();
-#endif
-    QAction* setEditable = editMenu->addAction("Set Editable", this, SLOT(setEditable(bool)));
-    setEditable->setCheckable(true);
-
-    editMenu->addAction("Clear Cookies", this, SLOT(clearCookies()));
-
-    QMenu* viewMenu = menuBar()->addMenu("&View");
-    viewMenu->addAction(page()->action(QWebPage::Stop));
-    viewMenu->addAction(page()->action(QWebPage::Reload));
-    viewMenu->addSeparator();
-    QAction* zoomIn = viewMenu->addAction("Zoom &In", this, SLOT(zoomIn()));
-    QAction* zoomOut = viewMenu->addAction("Zoom &Out", this, SLOT(zoomOut()));
-    QAction* resetZoom = viewMenu->addAction("Reset Zoom", this, SLOT(resetZoom()));
-    QAction* zoomTextOnly = viewMenu->addAction("Zoom Text Only", this, SLOT(toggleZoomTextOnly(bool)));
-    zoomTextOnly->setCheckable(true);
-    zoomTextOnly->setChecked(false);
-    viewMenu->addSeparator();
-    viewMenu->addAction("Dump HTML", this, SLOT(dumpHtml()));
-    // viewMenu->addAction("Dump plugins", this, SLOT(dumpPlugins()));
-
-    zoomIn->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_Plus));
-    zoomOut->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_Minus));
-    resetZoom->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_0));
-
-    QMenu* formatMenu = new QMenu("F&ormat", this);
-    m_formatMenuAction = menuBar()->addMenu(formatMenu);
-    m_formatMenuAction->setVisible(false);
-    formatMenu->addAction(page()->action(QWebPage::ToggleBold));
-    formatMenu->addAction(page()->action(QWebPage::ToggleItalic));
-    formatMenu->addAction(page()->action(QWebPage::ToggleUnderline));
-    QMenu* writingMenu = formatMenu->addMenu(tr("Writing Direction"));
-    writingMenu->addAction(page()->action(QWebPage::SetTextDirectionDefault));
-    writingMenu->addAction(page()->action(QWebPage::SetTextDirectionLeftToRight));
-    writingMenu->addAction(page()->action(QWebPage::SetTextDirectionRightToLeft));
-
-    QMenu* windowMenu = menuBar()->addMenu("&Window");
-    QAction* toggleFullScreen = windowMenu->addAction("Toggle FullScreen", this, SIGNAL(enteredFullScreenMode(bool)));
-    toggleFullScreen->setShortcut(Qt::Key_F11);
-    toggleFullScreen->setCheckable(true);
-    toggleFullScreen->setChecked(false);
-    // When exit fullscreen mode by clicking on the exit area (bottom right corner) we must
-    // uncheck the Toggle FullScreen action.
-    toggleFullScreen->connect(this, SIGNAL(enteredFullScreenMode(bool)), SLOT(setChecked(bool)));
-
-    QWebSettings* settings = page()->settings();
-
-    QMenu* toolsMenu = menuBar()->addMenu("&Develop");
-    QMenu* graphicsViewMenu = toolsMenu->addMenu("QGraphicsView");
-    QAction* toggleGraphicsView = graphicsViewMenu->addAction("Toggle use of QGraphicsView", this, SLOT(toggleWebView(bool)));
-    toggleGraphicsView->setCheckable(true);
-    toggleGraphicsView->setChecked(isGraphicsBased());
-
-    QAction* toggleWebGL = toolsMenu->addAction("Toggle WebGL", this, SLOT(toggleWebGL(bool)));
-    toggleWebGL->setCheckable(true);
-    toggleWebGL->setChecked(settings->testAttribute(QWebSettings::WebGLEnabled));
-#if !ENABLE(WEBGL)
-    toggleWebGL->setEnabled(false);
-#endif
-
-    QAction* toggleWebAudio = toolsMenu->addAction("Toggle WebAudio", this, SLOT(toggleWebAudio(bool)));
-    toggleWebAudio->setCheckable(true);
-#if ENABLE(WEB_AUDIO)
-    toggleWebAudio->setChecked(m_windowOptions.useWebAudio);
-#else
-    toggleWebAudio->setEnabled(false);
-#endif
-
-    QAction* spatialNavigationAction = toolsMenu->addAction("Toggle Spatial Navigation", this, SLOT(toggleSpatialNavigation(bool)));
-    spatialNavigationAction->setCheckable(true);
-    spatialNavigationAction->setShortcut(QKeySequence(Qt::CTRL | Qt::SHIFT | Qt::Key_S));
-
-    QAction* toggleFrameFlattening = toolsMenu->addAction("Toggle Frame Flattening", this, SLOT(toggleFrameFlattening(bool)));
-    toggleFrameFlattening->setCheckable(true);
-    toggleFrameFlattening->setChecked(settings->testAttribute(QWebSettings::FrameFlatteningEnabled));
-
-    QAction* touchMockAction = toolsMenu->addAction("Toggle touch mocking", this, SLOT(setTouchMocking(bool)));
-    touchMockAction->setCheckable(true);
-    touchMockAction->setShortcut(QKeySequence(Qt::CTRL | Qt::ALT | Qt::Key_T));
-
-    toolsMenu->addSeparator();
-
-    QAction* toggleLocalStorage = toolsMenu->addAction("Enable Local Storage", this, SLOT(toggleLocalStorage(bool)));
-    toggleLocalStorage->setCheckable(true);
-    toggleLocalStorage->setChecked(m_windowOptions.useLocalStorage);
-
-    QAction* toggleOfflineStorageDatabase = toolsMenu->addAction("Enable Offline Storage Database", this, SLOT(toggleOfflineStorageDatabase(bool)));
-    toggleOfflineStorageDatabase->setCheckable(true);
-    toggleOfflineStorageDatabase->setChecked(m_windowOptions.useOfflineStorageDatabase);
-
-    QAction* toggleOfflineWebApplicationCache = toolsMenu->addAction("Enable Offline Web Application Cache", this, SLOT(toggleOfflineWebApplicationCache(bool)));
-    toggleOfflineWebApplicationCache->setCheckable(true);
-    toggleOfflineWebApplicationCache->setChecked(m_windowOptions.useOfflineWebApplicationCache);
-
-    QAction* offlineStorageDefaultQuotaAction = toolsMenu->addAction("Set Offline Storage Default Quota Size", this, SLOT(setOfflineStorageDefaultQuota()));
-    offlineStorageDefaultQuotaAction->setCheckable(true);
-    offlineStorageDefaultQuotaAction->setChecked(m_windowOptions.offlineStorageDefaultQuotaSize);
-
-    toolsMenu->addSeparator();
-
-    QAction* userAgentAction = toolsMenu->addAction("Change User Agent", this, SLOT(showUserAgentDialog()));
-    userAgentAction->setShortcut(QKeySequence(Qt::CTRL | Qt::SHIFT | Qt::Key_U));
-
-    toolsMenu->addAction("Select Elements...", this, SLOT(selectElements()));
-
-    toolsMenu->addAction("Clear selection", this, SLOT(clearSelection()));
-
-    QAction* showInspectorAction = toolsMenu->addAction("Show Web Inspector", m_inspector, SLOT(setVisible(bool)), QKeySequence(Qt::CTRL | Qt::ALT | Qt::Key_I));
-    showInspectorAction->setCheckable(true);
-    showInspectorAction->connect(m_inspector, SIGNAL(visibleChanged(bool)), SLOT(setChecked(bool)));
-    toolsMenu->addSeparator();
-    toolsMenu->addAction("Load URLs from file", this, SLOT(loadURLListFromFile()));
-
-    // GraphicsView sub menu.
-    QAction* toggleAcceleratedCompositing = graphicsViewMenu->addAction("Toggle Accelerated Compositing", this, SLOT(toggleAcceleratedCompositing(bool)));
-    toggleAcceleratedCompositing->setCheckable(true);
-    toggleAcceleratedCompositing->setChecked(settings->testAttribute(QWebSettings::AcceleratedCompositingEnabled));
-    toggleAcceleratedCompositing->setEnabled(isGraphicsBased());
-    toggleAcceleratedCompositing->connect(toggleGraphicsView, SIGNAL(toggled(bool)), SLOT(setEnabled(bool)));
-
-    QAction* toggleResizesToContents = graphicsViewMenu->addAction("Toggle Resizes To Contents Mode", this, SLOT(toggleResizesToContents(bool)));
-    toggleResizesToContents->setCheckable(true);
-    toggleResizesToContents->setChecked(m_windowOptions.resizesToContents);
-    toggleResizesToContents->setEnabled(isGraphicsBased());
-    toggleResizesToContents->connect(toggleGraphicsView, SIGNAL(toggled(bool)), SLOT(setEnabled(bool)));
-
-    QAction* toggleTiledBackingStore = graphicsViewMenu->addAction("Toggle Tiled Backing Store", this, SLOT(toggleTiledBackingStore(bool)));
-    toggleTiledBackingStore->setCheckable(true);
-    toggleTiledBackingStore->setChecked(m_windowOptions.useTiledBackingStore);
-    toggleTiledBackingStore->setEnabled(isGraphicsBased());
-    toggleTiledBackingStore->connect(toggleGraphicsView, SIGNAL(toggled(bool)), SLOT(setEnabled(bool)));
-
-#ifndef QT_NO_OPENGL
-    QAction* toggleQGLWidgetViewport = graphicsViewMenu->addAction("Toggle use of QGLWidget Viewport", this, SLOT(toggleQGLWidgetViewport(bool)));
-    toggleQGLWidgetViewport->setCheckable(true);
-    toggleQGLWidgetViewport->setChecked(m_windowOptions.useQGLWidgetViewport);
-    toggleQGLWidgetViewport->setEnabled(isGraphicsBased());
-    toggleQGLWidgetViewport->connect(toggleGraphicsView, SIGNAL(toggled(bool)), SLOT(setEnabled(bool)));
-#endif
-
-    QMenu* viewportUpdateMenu = graphicsViewMenu->addMenu("Change Viewport Update Mode");
-    viewportUpdateMenu->setEnabled(isGraphicsBased());
-    viewportUpdateMenu->connect(toggleGraphicsView, SIGNAL(toggled(bool)), SLOT(setEnabled(bool)));
-
-    QAction* fullUpdate = viewportUpdateMenu->addAction("FullViewportUpdate");
-    fullUpdate->setCheckable(true);
-    fullUpdate->setChecked((m_windowOptions.viewportUpdateMode == QGraphicsView::FullViewportUpdate) ? true : false);
-
-    QAction* minimalUpdate = viewportUpdateMenu->addAction("MinimalViewportUpdate");
-    minimalUpdate->setCheckable(true);
-    minimalUpdate->setChecked((m_windowOptions.viewportUpdateMode == QGraphicsView::MinimalViewportUpdate) ? true : false);
-
-    QAction* smartUpdate = viewportUpdateMenu->addAction("SmartViewportUpdate");
-    smartUpdate->setCheckable(true);
-    smartUpdate->setChecked((m_windowOptions.viewportUpdateMode == QGraphicsView::SmartViewportUpdate) ? true : false);
-
-    QAction* boundingRectUpdate = viewportUpdateMenu->addAction("BoundingRectViewportUpdate");
-    boundingRectUpdate->setCheckable(true);
-    boundingRectUpdate->setChecked((m_windowOptions.viewportUpdateMode == QGraphicsView::BoundingRectViewportUpdate) ? true : false);
-
-    QAction* noUpdate = viewportUpdateMenu->addAction("NoViewportUpdate");
-    noUpdate->setCheckable(true);
-    noUpdate->setChecked((m_windowOptions.viewportUpdateMode == QGraphicsView::NoViewportUpdate) ? true : false);
-
-    QSignalMapper* signalMapper = new QSignalMapper(viewportUpdateMenu);
-    signalMapper->setMapping(fullUpdate, QGraphicsView::FullViewportUpdate);
-    signalMapper->setMapping(minimalUpdate, QGraphicsView::MinimalViewportUpdate);
-    signalMapper->setMapping(smartUpdate, QGraphicsView::SmartViewportUpdate);
-    signalMapper->setMapping(boundingRectUpdate, QGraphicsView::BoundingRectViewportUpdate);
-    signalMapper->setMapping(noUpdate, QGraphicsView::NoViewportUpdate);
-
-    connect(fullUpdate, SIGNAL(triggered()), signalMapper, SLOT(map()));
-    connect(minimalUpdate, SIGNAL(triggered()), signalMapper, SLOT(map()));
-    connect(smartUpdate, SIGNAL(triggered()), signalMapper, SLOT(map()));
-    connect(boundingRectUpdate, SIGNAL(triggered()), signalMapper, SLOT(map()));
-    connect(noUpdate, SIGNAL(triggered()), signalMapper, SLOT(map()));
-
-    connect(signalMapper, SIGNAL(mapped(int)), this, SLOT(changeViewportUpdateMode(int)));
-
-    QActionGroup* viewportUpdateModeActions = new QActionGroup(viewportUpdateMenu);
-    viewportUpdateModeActions->addAction(fullUpdate);
-    viewportUpdateModeActions->addAction(minimalUpdate);
-    viewportUpdateModeActions->addAction(smartUpdate);
-    viewportUpdateModeActions->addAction(boundingRectUpdate);
-    viewportUpdateModeActions->addAction(noUpdate);
-
-    graphicsViewMenu->addSeparator();
-
-    QAction* flipAnimated = graphicsViewMenu->addAction("Animated Flip");
-    flipAnimated->connect(toggleGraphicsView, SIGNAL(toggled(bool)), SLOT(setEnabled(bool)));
-    flipAnimated->setEnabled(isGraphicsBased());
-    connect(flipAnimated, SIGNAL(triggered()), SLOT(animatedFlip()));
-
-    QAction* flipYAnimated = graphicsViewMenu->addAction("Animated Y-Flip");
-    flipYAnimated->connect(toggleGraphicsView, SIGNAL(toggled(bool)), SLOT(setEnabled(bool)));
-    flipYAnimated->setEnabled(isGraphicsBased());
-    connect(flipYAnimated, SIGNAL(triggered()), SLOT(animatedYFlip()));
-
-    QAction* cloneWindow = graphicsViewMenu->addAction("Clone Window", this, SLOT(cloneWindow()));
-    cloneWindow->connect(toggleGraphicsView, SIGNAL(toggled(bool)), SLOT(setEnabled(bool)));
-    cloneWindow->setEnabled(isGraphicsBased());
-
-    graphicsViewMenu->addSeparator();
-
-    QAction* showFPS = graphicsViewMenu->addAction("Show FPS", this, SLOT(showFPS(bool)));
-    showFPS->setCheckable(true);
-    showFPS->setEnabled(isGraphicsBased());
-    showFPS->connect(toggleGraphicsView, SIGNAL(toggled(bool)), SLOT(setEnabled(bool)));
-    showFPS->setChecked(m_windowOptions.showFrameRate);
-
-    QMenu* settingsMenu = menuBar()->addMenu("&Settings");
-
-#if !defined(QT_NO_NETWORKDISKCACHE) && !defined(QT_NO_DESKTOPSERVICES)
-    QAction* toggleDiskCache = settingsMenu->addAction("Use Disk Cache", this, SLOT(setDiskCache(bool)));
-    toggleDiskCache->setCheckable(true);
-    toggleDiskCache->setChecked(m_windowOptions.useDiskCache);
-#endif
-
-    QAction* toggleAutoLoadImages = settingsMenu->addAction("Disable Auto Load Images", this, SLOT(toggleAutoLoadImages(bool)));
-    toggleAutoLoadImages->setCheckable(true);
-    toggleAutoLoadImages->setChecked(false);
-
-    QAction* togglePlugins = settingsMenu->addAction("Disable Plugins", this, SLOT(togglePlugins(bool)));
-    togglePlugins->setCheckable(true);
-    togglePlugins->setChecked(false);
-
-    QAction* toggleScrollAnimator = settingsMenu->addAction("Enable Scroll Animator", this, SLOT(toggleScrollAnimator(bool)));
-#if ENABLE(SMOOTH_SCROLLING)
-    toggleScrollAnimator->setCheckable(true);
-#else
-    toggleScrollAnimator->setCheckable(false);
-#endif
-    toggleScrollAnimator->setChecked(false);
-
-    QAction* toggleJavaScriptEnabled = settingsMenu->addAction("Enable Javascript", this, SLOT(toggleJavaScriptEnabled(bool)));
-    toggleJavaScriptEnabled->setCheckable(true);
-    toggleJavaScriptEnabled->setChecked(settings->testAttribute(QWebSettings::JavascriptEnabled));
-
-    QAction* toggleInterruptingJavaScripteEnabled = settingsMenu->addAction("Enable interrupting js scripts", this, SLOT(toggleInterruptingJavaScriptEnabled(bool)));
-    toggleInterruptingJavaScripteEnabled->setCheckable(true);
-    toggleInterruptingJavaScripteEnabled->setChecked(false);
-
-    QAction* toggleJavascriptCanOpenWindows = settingsMenu->addAction("Enable js popup windows", this, SLOT(toggleJavascriptCanOpenWindows(bool)));
-    toggleJavascriptCanOpenWindows->setCheckable(true);
-    toggleJavascriptCanOpenWindows->setChecked(false);
-
-    QAction* toggleUseDiskCookies = settingsMenu->addAction("Save Cookies on Disk", this, SLOT(setUseDiskCookies(bool)));
-    toggleUseDiskCookies->setCheckable(true);
-    toggleUseDiskCookies->setChecked(m_windowOptions.useDiskCookies);
-
-#ifndef QT_NO_LINEEDIT
-    m_findBar = new QToolBar("Find", this);
-    addToolBar(Qt::BottomToolBarArea, m_findBar);
-
-    QToolButton* findClose = new QToolButton(m_findBar);
-    findClose->setText("X");
-    m_lineEdit = new QLineEdit(m_findBar);
-    m_lineEdit->setMaximumWidth(200);
-    QToolButton* findPrevious = new QToolButton(m_findBar);
-    findPrevious->setArrowType(Qt::LeftArrow);
-    QToolButton* findNext = new QToolButton(m_findBar);
-    findNext->setArrowType(Qt::RightArrow);
-    QCheckBox* findCaseSensitive = new QCheckBox("Case Sensitive", m_findBar);
-    QCheckBox* findWrapAround = new QCheckBox("Wrap Around", m_findBar);
-    QCheckBox* findHighLightAll = new QCheckBox("HighLight All", m_findBar);
-
-    QSignalMapper* findSignalMapper = new QSignalMapper(m_findBar);
-    findSignalMapper->setMapping(m_lineEdit, s_findNormalFlag);
-    findSignalMapper->setMapping(findPrevious, QWebPage::FindBackward);
-    findSignalMapper->setMapping(findNext, s_findNormalFlag);
-    findSignalMapper->setMapping(findCaseSensitive, QWebPage::FindCaseSensitively);
-    findSignalMapper->setMapping(findWrapAround, QWebPage::FindWrapsAroundDocument);
-    findSignalMapper->setMapping(findHighLightAll, QWebPage::HighlightAllOccurrences);
-
-    connect(findClose, SIGNAL(clicked()), this, SLOT(showFindBar()));
-    connect(m_lineEdit, SIGNAL(textChanged(const QString &)), findSignalMapper, SLOT(map()));
-    connect(findPrevious, SIGNAL(pressed()), findSignalMapper, SLOT(map()));
-    connect(findNext, SIGNAL(pressed()), findSignalMapper, SLOT(map()));
-    connect(findCaseSensitive, SIGNAL(stateChanged(int)), findSignalMapper, SLOT(map()));
-    connect(findWrapAround, SIGNAL(stateChanged(int)), findSignalMapper, SLOT(map()));
-    connect(findHighLightAll, SIGNAL(stateChanged(int)), findSignalMapper, SLOT(map()));
-
-    connect(findSignalMapper, SIGNAL(mapped(int)), this, SLOT(find(int)));
-
-    m_findBar->addWidget(findClose);
-    m_findBar->addWidget(m_lineEdit);
-    m_findBar->addWidget(findPrevious);
-    m_findBar->addWidget(findNext);
-    m_findBar->addWidget(findCaseSensitive);
-    m_findBar->addWidget(findWrapAround);
-    m_findBar->addWidget(findHighLightAll);
-    m_findBar->setMovable(false);
-    m_findBar->setVisible(false);
-#endif
-#endif
-}
-
-bool LauncherWindow::isGraphicsBased() const
-{
-    return bool(qobject_cast<QGraphicsView*>(m_view));
-}
-
-void LauncherWindow::sendTouchEvent()
-{
-    if (m_touchPoints.isEmpty())
-        return;
-
-    QEvent::Type type = QEvent::TouchUpdate;
-    if (m_touchPoints.size() == 1) {
-        if (m_touchPoints[0].state() == Qt::TouchPointReleased)
-            type = QEvent::TouchEnd;
-        else if (m_touchPoints[0].state() == Qt::TouchPointPressed)
-            type = QEvent::TouchBegin;
-    }
-
-    QTouchEvent touchEv(type);
-    touchEv.setTouchPoints(m_touchPoints);
-    QCoreApplication::sendEvent(page(), &touchEv);
-
-    // After sending the event, remove all touchpoints that were released
-    if (m_touchPoints[0].state() == Qt::TouchPointReleased)
-        m_touchPoints.removeAt(0);
-    if (m_touchPoints.size() > 1 && m_touchPoints[1].state() == Qt::TouchPointReleased)
-        m_touchPoints.removeAt(1);
-}
-
-bool LauncherWindow::eventFilter(QObject* obj, QEvent* event)
-{
-    // If click pos is the bottom right corner (square with size defined by gExitClickArea)
-    // and the window is on FullScreen, the window must return to its original state.
-    if (event->type() == QEvent::MouseButtonRelease) {
-        QMouseEvent* ev = static_cast<QMouseEvent*>(event);
-        if (windowState() == Qt::WindowFullScreen
-            && ev->pos().x() > (width() - gExitClickArea)
-            && ev->pos().y() > (height() - gExitClickArea)) {
-
-            emit enteredFullScreenMode(false);
-        }
-    }
-
-    if (!m_touchMocking)
-        return QObject::eventFilter(obj, event);
-
-    if (event->type() == QEvent::MouseButtonPress
-        || event->type() == QEvent::MouseButtonRelease
-        || event->type() == QEvent::MouseButtonDblClick
-        || event->type() == QEvent::MouseMove) {
-
-        QMouseEvent* ev = static_cast<QMouseEvent*>(event);
-        if (ev->type() == QEvent::MouseMove
-            && !(ev->buttons() & Qt::LeftButton))
-            return false;
-
-        QTouchEvent::TouchPoint touchPoint;
-        touchPoint.setState(Qt::TouchPointMoved);
-        if ((ev->type() == QEvent::MouseButtonPress
-             || ev->type() == QEvent::MouseButtonDblClick))
-            touchPoint.setState(Qt::TouchPointPressed);
-        else if (ev->type() == QEvent::MouseButtonRelease)
-            touchPoint.setState(Qt::TouchPointReleased);
-
-        touchPoint.setId(0);
-        touchPoint.setScreenPos(ev->globalPos());
-        touchPoint.setPos(ev->pos());
-        touchPoint.setPressure(1);
-
-        // If the point already exists, update it. Otherwise create it.
-        if (m_touchPoints.size() > 0 && !m_touchPoints[0].id())
-            m_touchPoints[0] = touchPoint;
-        else if (m_touchPoints.size() > 1 && !m_touchPoints[1].id())
-            m_touchPoints[1] = touchPoint;
-        else
-            m_touchPoints.append(touchPoint);
-
-        sendTouchEvent();
-    } else if (event->type() == QEvent::KeyPress
-        && static_cast<QKeyEvent*>(event)->key() == Qt::Key_F
-        && static_cast<QKeyEvent*>(event)->modifiers() == Qt::ControlModifier) {
-
-        // If the keyboard point is already pressed, release it.
-        // Otherwise create it and append to m_touchPoints.
-        if (m_touchPoints.size() > 0 && m_touchPoints[0].id() == 1) {
-            m_touchPoints[0].setState(Qt::TouchPointReleased);
-            sendTouchEvent();
-        } else if (m_touchPoints.size() > 1 && m_touchPoints[1].id() == 1) {
-            m_touchPoints[1].setState(Qt::TouchPointReleased);
-            sendTouchEvent();
-        } else {
-            QTouchEvent::TouchPoint touchPoint;
-            touchPoint.setState(Qt::TouchPointPressed);
-            touchPoint.setId(1);
-            touchPoint.setScreenPos(QCursor::pos());
-            touchPoint.setPos(m_view->mapFromGlobal(QCursor::pos()));
-            touchPoint.setPressure(1);
-            m_touchPoints.append(touchPoint);
-            sendTouchEvent();
-
-            // After sending the event, change the touchpoint state to stationary
-            m_touchPoints.last().setState(Qt::TouchPointStationary);
-        }
-    }
-
-    return false;
-}
-
-void LauncherWindow::loadStarted()
-{
-    m_view->setFocus(Qt::OtherFocusReason);
-}
-
-void LauncherWindow::loadFinished()
-{
-    QUrl url = page()->mainFrame()->url();
-    addCompleterEntry(url);
-    if (m_inputUrl.isEmpty())
-        setAddressUrl(url.toString(QUrl::RemoveUserInfo));
-    else {
-        setAddressUrl(m_inputUrl);
-        m_inputUrl = QString();
-    }
-}
-
-void LauncherWindow::showLinkHover(const QString &link, const QString &toolTip)
-{
-    statusBar()->showMessage(link);
-#ifndef QT_NO_TOOLTIP
-    if (!toolTip.isEmpty())
-        QToolTip::showText(QCursor::pos(), toolTip);
-#endif
-}
-
-void LauncherWindow::zoomAnimationFinished()
-{
-    if (!isGraphicsBased())
-        return;
-    QGraphicsWebView* view = static_cast<WebViewGraphicsBased*>(m_view)->graphicsWebView();
-    view->setTiledBackingStoreFrozen(false);
-}
-
-void LauncherWindow::applyZoom()
-{
-#ifndef QT_NO_ANIMATION
-    if (isGraphicsBased() && page()->settings()->testAttribute(QWebSettings::TiledBackingStoreEnabled)) {
-        QGraphicsWebView* view = static_cast<WebViewGraphicsBased*>(m_view)->graphicsWebView();
-        view->setTiledBackingStoreFrozen(true);
-        if (!m_zoomAnimation) {
-            m_zoomAnimation = new QPropertyAnimation(view, "scale");
-            m_zoomAnimation->setStartValue(view->scale());
-            connect(m_zoomAnimation, SIGNAL(finished()), this, SLOT(zoomAnimationFinished()));
-        } else {
-            m_zoomAnimation->stop();
-            m_zoomAnimation->setStartValue(m_zoomAnimation->currentValue());
-        }
-
-        m_zoomAnimation->setDuration(300);
-        m_zoomAnimation->setEndValue(qreal(m_currentZoom) / 100.);
-        m_zoomAnimation->start();
-        return;
-    }
-#endif
-    page()->mainFrame()->setZoomFactor(qreal(m_currentZoom) / 100.0);
-}
-
-void LauncherWindow::zoomIn()
-{
-    int i = m_zoomLevels.indexOf(m_currentZoom);
-    Q_ASSERT(i >= 0);
-    if (i < m_zoomLevels.count() - 1)
-        m_currentZoom = m_zoomLevels[i + 1];
-
-    applyZoom();
-}
-
-void LauncherWindow::zoomOut()
-{
-    int i = m_zoomLevels.indexOf(m_currentZoom);
-    Q_ASSERT(i >= 0);
-    if (i > 0)
-        m_currentZoom = m_zoomLevels[i - 1];
-
-    applyZoom();
-}
-
-void LauncherWindow::resetZoom()
-{
-    m_currentZoom = 100;
-    applyZoom();
-}
-
-void LauncherWindow::toggleZoomTextOnly(bool b)
-{
-    page()->settings()->setAttribute(QWebSettings::ZoomTextOnly, b);
-}
-
-void LauncherWindow::print()
-{
-#if !defined(QT_NO_PRINTPREVIEWDIALOG) && HAVE(QTPRINTSUPPORT)
-    QPrintPreviewDialog dlg(this);
-    connect(&dlg, SIGNAL(paintRequested(QPrinter*)),
-            page()->mainFrame(), SLOT(print(QPrinter*)));
-    dlg.exec();
-#endif
-}
-
-void LauncherWindow::screenshot()
-{
-    QPixmap pixmap = QPixmap::grabWidget(m_view);
-    QLabel* label = 0;
-    label = new QLabel;
-    label->setAttribute(Qt::WA_DeleteOnClose);
-    label->setWindowTitle("Screenshot - Preview");
-    label->setPixmap(pixmap);
-    label->show();
-
-#ifndef QT_NO_FILEDIALOG
-    QString fileName = QFileDialog::getSaveFileName(label, "Screenshot");
-    if (!fileName.isEmpty()) {
-        pixmap.save(fileName, "png");
-        if (label)
-            label->setWindowTitle(QString("Screenshot - Saved at %1").arg(fileName));
-    }
-#endif
-
-#ifndef QT_NO_OPENGL
-    toggleQGLWidgetViewport(m_windowOptions.useQGLWidgetViewport);
-#endif
-}
-
-void LauncherWindow::setEditable(bool on)
-{
-    page()->setContentEditable(on);
-#ifndef QT_NO_SHORTCUT
-    m_formatMenuAction->setVisible(on);
-#endif
-}
-
-/*
-void LauncherWindow::dumpPlugins() {
-    QList<QWebPluginInfo> plugins = QWebSettings::pluginDatabase()->plugins();
-    foreach (const QWebPluginInfo plugin, plugins) {
-        qDebug() << "Plugin:" << plugin.name();
-        foreach (const QWebPluginInfo::MimeType mime, plugin.mimeTypes()) {
-            qDebug() << "   " << mime.name;
-        }
-    }
-}
-*/
-
-void LauncherWindow::dumpHtml()
-{
-    qDebug() << "HTML: " << page()->mainFrame()->toHtml();
-}
-
-void LauncherWindow::selectElements()
-{
-#ifndef QT_NO_INPUTDIALOG
-    bool ok;
-    QString str = QInputDialog::getText(this, "Select elements", "Choose elements",
-                                        QLineEdit::Normal, "a", &ok);
-
-    if (ok && !str.isEmpty()) {
-        clearSelection();
-        QWebElementCollection result =  page()->mainFrame()->findAllElements(str);
-        foreach (QWebElement e, result) {
-            HighlightedElement el = { e, e.styleProperty("background-color", QWebElement::InlineStyle) };
-            m_highlightedElements.append(el);
-            e.setStyleProperty("background-color", "yellow");
-        }
-        statusBar()->showMessage(QString("%1 element(s) selected").arg(result.count()), 5000);
-    }
-#endif
-}
-
-void LauncherWindow::clearSelection()
-{
-    for (int i = 0; i < m_highlightedElements.size(); ++i)
-        m_highlightedElements[i].m_element.setStyleProperty("background-color", m_highlightedElements[i].m_previousStyle);
-    m_highlightedElements.clear();
-}
-
-void LauncherWindow::setDiskCache(bool enable)
-{
-#if !defined(QT_NO_NETWORKDISKCACHE) && !defined(QT_NO_DESKTOPSERVICES)
-    m_windowOptions.useDiskCache = enable;
-    QNetworkDiskCache* cache = 0;
-    if (enable) {
-        cache = new QNetworkDiskCache();
-        QString cacheLocation = QStandardPaths::writableLocation(QStandardPaths::CacheLocation);
-        cache->setCacheDirectory(cacheLocation);
-    }
-    page()->networkAccessManager()->setCache(cache);
-#endif
-}
-
-void LauncherWindow::setTouchMocking(bool on)
-{
-    m_touchMocking = on;
-}
-
-void LauncherWindow::toggleWebView(bool graphicsBased)
-{
-    m_windowOptions.useGraphicsView = graphicsBased;
-    initializeView();
-#ifndef QT_NO_SHORTCUT
-    menuBar()->clear();
-#endif
-    createChrome();
-}
-
-void LauncherWindow::toggleAcceleratedCompositing(bool toggle)
-{
-    m_windowOptions.useCompositing = toggle;
-    page()->settings()->setAttribute(QWebSettings::AcceleratedCompositingEnabled, toggle);
-}
-
-void LauncherWindow::toggleTiledBackingStore(bool toggle)
-{
-    page()->settings()->setAttribute(QWebSettings::TiledBackingStoreEnabled, toggle);
-}
-
-void LauncherWindow::toggleResizesToContents(bool toggle)
-{
-    m_windowOptions.resizesToContents = toggle;
-    static_cast<WebViewGraphicsBased*>(m_view)->setResizesToContents(toggle);
-}
-
-void LauncherWindow::toggleWebGL(bool toggle)
-{
-    m_windowOptions.useWebGL = toggle;
-    page()->settings()->setAttribute(QWebSettings::WebGLEnabled, toggle);
-}
-
-void LauncherWindow::toggleWebAudio(bool toggle)
-{
-    m_windowOptions.useWebAudio = toggle;
-    page()->settings()->setAttribute(QWebSettings::WebAudioEnabled, toggle);
-}
-
-void LauncherWindow::animatedFlip()
-{
-    qobject_cast<WebViewGraphicsBased*>(m_view)->animatedFlip();
-}
-
-void LauncherWindow::animatedYFlip()
-{
-    qobject_cast<WebViewGraphicsBased*>(m_view)->animatedYFlip();
-}
-void LauncherWindow::toggleSpatialNavigation(bool b)
-{
-    page()->settings()->setAttribute(QWebSettings::SpatialNavigationEnabled, b);
-}
-
-void LauncherWindow::toggleFullScreenMode(bool enable)
-{
-    bool alreadyEnabled = windowState() & Qt::WindowFullScreen;
-    if (enable ^ alreadyEnabled)
-        setWindowState(windowState() ^ Qt::WindowFullScreen);
-}
-
-void LauncherWindow::toggleFrameFlattening(bool toggle)
-{
-    m_windowOptions.useFrameFlattening = toggle;
-    page()->settings()->setAttribute(QWebSettings::FrameFlatteningEnabled, toggle);
-}
-
-void LauncherWindow::toggleJavaScriptEnabled(bool enable)
-{
-    page()->settings()->setAttribute(QWebSettings::JavascriptEnabled, enable);
-}
-
-void LauncherWindow::toggleInterruptingJavaScriptEnabled(bool enable)
-{
-    page()->setInterruptingJavaScriptEnabled(enable);
-}
-
-void LauncherWindow::toggleJavascriptCanOpenWindows(bool enable)
-{
-    page()->settings()->setAttribute(QWebSettings::JavascriptCanOpenWindows, enable);
-}
-
-void LauncherWindow::setUseDiskCookies(bool enable)
-{
-    testBrowserCookieJarInstance()->setDiskStorageEnabled(enable);
-}
-
-void LauncherWindow::clearCookies()
-{
-    testBrowserCookieJarInstance()->reset();
-}
-
-void LauncherWindow::toggleAutoLoadImages(bool enable)
-{
-    page()->settings()->setAttribute(QWebSettings::AutoLoadImages, !enable);
-}
-
-void LauncherWindow::togglePlugins(bool enable)
-{
-    page()->settings()->setAttribute(QWebSettings::PluginsEnabled, !enable);
-}
-
-#ifndef QT_NO_OPENGL
-void LauncherWindow::toggleQGLWidgetViewport(bool enable)
-{
-    if (!isGraphicsBased())
-        return;
-
-    m_windowOptions.useQGLWidgetViewport = enable;
-    WebViewGraphicsBased* view = static_cast<WebViewGraphicsBased*>(m_view);
-
-    view->setViewport(enable ? new QGLWidget() : 0);
-}
-#endif
-
-void LauncherWindow::changeViewportUpdateMode(int mode)
-{
-    m_windowOptions.viewportUpdateMode = QGraphicsView::ViewportUpdateMode(mode);
-
-    if (!isGraphicsBased())
-        return;
-
-    WebViewGraphicsBased* view = static_cast<WebViewGraphicsBased*>(m_view);
-    view->setViewportUpdateMode(m_windowOptions.viewportUpdateMode);
-}
-
-void LauncherWindow::showFPS(bool enable)
-{
-    if (!isGraphicsBased())
-        return;
-
-    m_windowOptions.showFrameRate = enable;
-    WebViewGraphicsBased* view = static_cast<WebViewGraphicsBased*>(m_view);
-    view->setFrameRateMeasurementEnabled(enable);
-
-    if (!enable)
-        statusBar()->clearMessage();
-}
-
-void LauncherWindow::showUserAgentDialog()
-{
-    QStringList items;
-    QFile file(":/useragentlist.txt");
-    if (file.open(QIODevice::ReadOnly)) {
-         while (!file.atEnd())
-            items << file.readLine().trimmed();
-        file.close();
-    }
-
-    QSettings settings;
-    QString customUserAgent = settings.value("CustomUserAgent").toString();
-    if (!items.contains(customUserAgent) && !customUserAgent.isEmpty())
-        items << customUserAgent;
-
-    QDialog* dialog = new QDialog(this);
-    dialog->resize(size().width() * 0.7, dialog->size().height());
-    dialog->setWindowTitle("Change User Agent");
-
-    QVBoxLayout* layout = new QVBoxLayout(dialog);
-    dialog->setLayout(layout);
-
-#ifndef QT_NO_COMBOBOX
-    QComboBox* combo = new QComboBox(dialog);
-    combo->setSizeAdjustPolicy(QComboBox::AdjustToMinimumContentsLength);
-    combo->setEditable(true);
-    combo->insertItems(0, items);
-    layout->addWidget(combo);
-
-    int index = combo->findText(page()->userAgentForUrl(QUrl()));
-    combo->setCurrentIndex(index);
-#endif
-
-    QDialogButtonBox* buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok
-            | QDialogButtonBox::Cancel, Qt::Horizontal, dialog);
-    connect(buttonBox, SIGNAL(accepted()), dialog, SLOT(accept()));
-    connect(buttonBox, SIGNAL(rejected()), dialog, SLOT(reject()));
-    layout->addWidget(buttonBox);
-
-#ifndef QT_NO_COMBOBOX
-    if (dialog->exec() && !combo->currentText().isEmpty()) {
-        page()->setUserAgent(combo->currentText());
-        if (!items.contains(combo->currentText()))
-            settings.setValue("CustomUserAgent", combo->currentText());
-    }
-#endif
-
-    delete dialog;
-}
-
-void LauncherWindow::loadURLListFromFile()
-{
-    QString selectedFile;
-#ifndef QT_NO_FILEDIALOG
-    selectedFile = QFileDialog::getOpenFileName(this, tr("Load URL list from file")
-                                                       , QString(), tr("Text Files (*.txt);;All Files (*)"));
-#endif
-    if (selectedFile.isEmpty())
-       return;
-
-    m_urlLoader = new UrlLoader(this->page()->mainFrame(), selectedFile, 0, 0);
-    m_urlLoader->loadNext();
-}
-
-void LauncherWindow::printURL(const QUrl& url)
-{
-    QTextStream output(stdout);
-    output << "Loaded: " << url.toString() << endl;
-}
-
-#if !defined(QT_NO_FILEDIALOG) && !defined(QT_NO_MESSAGEBOX)
-void LauncherWindow::downloadRequest(const QNetworkRequest &request)
-{
-    QNetworkAccessManager* manager = new QNetworkAccessManager(this);
-    m_reply = manager->get(request);
-    connect(m_reply, SIGNAL(finished()), this, SLOT(fileDownloadFinished()));
-}
-
-void LauncherWindow::fileDownloadFinished()
-{
-    QFileInfo fileInf(m_reply->request().url().toString());
-    QString requestFileName = QDir::homePath() + "/" + fileInf.fileName();
-    QString fileName = QFileDialog::getSaveFileName(this, "Save as...", requestFileName, "All Files (*)");
-
-    if (fileName.isEmpty())
-        return;
-    if (m_reply->error() != QNetworkReply::NoError)
-        QMessageBox::critical(this, QString("Download"), QString("Download failed."));
-    else {
-        QFile file(fileName);
-        file.open(QIODevice::WriteOnly);
-        file.write(m_reply->readAll());
-        file.close();
-        QMessageBox::information(this, QString("Download"), fileName + QString(" downloaded successfully."));
-    }
-}
-#endif
-
-void LauncherWindow::updateFPS(int fps)
-{
-    QString fpsStatusText = QString("Current FPS: %1").arg(fps);
-
-    statusBar()->showMessage(fpsStatusText);
-}
-
-void LauncherWindow::toggleLocalStorage(bool toggle)
-{
-    m_windowOptions.useLocalStorage = toggle;
-    page()->settings()->setAttribute(QWebSettings::LocalStorageEnabled, toggle);
-}
-
-void LauncherWindow::toggleOfflineStorageDatabase(bool toggle)
-{
-    m_windowOptions.useOfflineStorageDatabase = toggle;
-    page()->settings()->setAttribute(QWebSettings::OfflineStorageDatabaseEnabled, toggle);
-}
-
-void LauncherWindow::toggleOfflineWebApplicationCache(bool toggle)
-{
-    m_windowOptions.useOfflineWebApplicationCache = toggle;
-    page()->settings()->setAttribute(QWebSettings::OfflineWebApplicationCacheEnabled, toggle);
-}
-
-void LauncherWindow::setOfflineStorageDefaultQuota()
-{
-    // For command line execution, quota size is taken from command line.   
-    if (m_windowOptions.offlineStorageDefaultQuotaSize)
-        page()->settings()->setOfflineStorageDefaultQuota(m_windowOptions.offlineStorageDefaultQuotaSize);
-    else {
-#ifndef QT_NO_INPUTDIALOG
-        bool ok;
-        // Maximum size is set to 25 * 1024 * 1024.
-        int quotaSize = QInputDialog::getInt(this, "Offline Storage Default Quota Size" , "Quota Size", 0, 0, 26214400, 1, &ok);
-        if (ok) 
-            page()->settings()->setOfflineStorageDefaultQuota(quotaSize);
-#endif
-    }
-}
-
-void LauncherWindow::toggleScrollAnimator(bool toggle)
-{
-    m_windowOptions.enableScrollAnimator = toggle;
-    page()->settings()->setAttribute(QWebSettings::ScrollAnimatorEnabled, toggle);
-}
-
-LauncherWindow* LauncherWindow::newWindow()
-{
-    LauncherWindow* mw = new LauncherWindow(&m_windowOptions);
-    mw->show();
-    return mw;
-}
-
-LauncherWindow* LauncherWindow::cloneWindow()
-{
-    LauncherWindow* mw = new LauncherWindow(&m_windowOptions, qobject_cast<QGraphicsView*>(m_view)->scene());
-    mw->show();
-    return mw;
-}
-
-#ifndef QT_NO_LINEEDIT
-void LauncherWindow::showFindBar()
-{
-    if (!m_findBar->isVisible()) {
-        m_findBar->setVisible(true);
-        m_lineEdit->setText(page()->selectedText());
-        m_lineEdit->setFocus(Qt::PopupFocusReason);
-    } else {
-        m_findBar->setVisible(false);
-        page()->findText("", QWebPage::HighlightAllOccurrences);
-    }
-}
-
-void LauncherWindow::find(int mode = s_findNormalFlag)
-{
-    QPalette palette;
-    bool found;
-    palette.setColor(m_lineEdit->backgroundRole(), Qt::white);
-    page()->findText("", QFlag(QWebPage::HighlightAllOccurrences));
-
-    m_findFlag = m_findFlag ^ mode;
-    if (mode == s_findNormalFlag || mode == QWebPage::FindBackward) {
-        found = page()->findText(m_lineEdit->text(), QFlag(m_findFlag & ~QWebPage::HighlightAllOccurrences));
-        m_findFlag = m_findFlag ^ mode;
-
-        if (found || m_lineEdit->text().isEmpty())
-            m_lineEdit->setPalette(palette);
-        else {
-            palette.setColor(m_lineEdit->backgroundRole(), QColor(255, 0, 0, 127));
-            m_lineEdit->setPalette(palette);
-        }
-    }
-
-    if (m_findFlag & QWebPage::HighlightAllOccurrences)
-        page()->findText(m_lineEdit->text(), QFlag(m_findFlag));
-}
-#endif
diff --git a/Tools/QtTestBrowser/launcherwindow.h b/Tools/QtTestBrowser/launcherwindow.h
deleted file mode 100644
index 185f21b..0000000
--- a/Tools/QtTestBrowser/launcherwindow.h
+++ /dev/null
@@ -1,244 +0,0 @@
-/*
- * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2009 Girish Ramakrishnan <girish@forwardbias.in>
- * Copyright (C) 2006 George Staikos <staikos@kde.org>
- * Copyright (C) 2006 Dirk Mueller <mueller@kde.org>
- * Copyright (C) 2006 Zack Rusin <zack@kde.org>
- * Copyright (C) 2006 Simon Hausmann <hausmann@kde.org>
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef launcherwindow_h
-#define launcherwindow_h
-
-#include <QtNetwork/QNetworkRequest>
-
-#ifndef QT_NO_OPENGL
-#include <QtOpenGL/QGLWidget>
-#endif
-
-#include <QDebug>
-
-#include <cstdio>
-#include <qevent.h>
-#include <qwebelement.h>
-#include <qwebframe.h>
-#include <qwebinspector.h>
-#include <qwebsettings.h>
-
-#include "mainwindow.h"
-#include "urlloader.h"
-#include "utils.h"
-#include "webinspector.h"
-#include "webpage.h"
-#include "webview.h"
-
-QT_BEGIN_NAMESPACE
-class QPropertyAnimation;
-class QLineEdit;
-QT_END_NAMESPACE
-
-struct HighlightedElement;
-
-class WindowOptions {
-public:
-    WindowOptions()
-        : useGraphicsView(false)
-        , useDiskCache(false)
-        , useCompositing(true)
-        , useTiledBackingStore(false)
-        , useWebGL(false)
-        , useWebAudio(false)
-        , useFrameFlattening(false)
-        , cacheWebView(false)
-        , showFrameRate(false)
-        , resizesToContents(false)
-        , viewportUpdateMode(QGraphicsView::MinimalViewportUpdate)
-        , useLocalStorage(false)
-        , useOfflineStorageDatabase(false)
-        , useOfflineWebApplicationCache(false)
-        , useDiskCookies(true)
-        , enableScrollAnimator(false)
-        , offlineStorageDefaultQuotaSize(0)
-#ifndef QT_NO_OPENGL
-        , useQGLWidgetViewport(false)
-#endif
-        , printLoadedUrls(false)
-        , startMaximized(false)
-    {
-    }
-
-    bool useGraphicsView;
-    bool useDiskCache;
-    bool useCompositing;
-    bool useTiledBackingStore;
-    bool useWebGL;
-    bool useWebAudio;
-    bool useFrameFlattening;
-    bool cacheWebView;
-    bool showFrameRate;
-    bool resizesToContents;
-    QGraphicsView::ViewportUpdateMode viewportUpdateMode;
-    bool useLocalStorage;
-    bool useOfflineStorageDatabase;
-    bool useOfflineWebApplicationCache;
-    bool useDiskCookies;
-    bool enableScrollAnimator;
-    quint64 offlineStorageDefaultQuotaSize;
-#ifndef QT_NO_OPENGL
-    bool useQGLWidgetViewport;
-#endif
-    bool printLoadedUrls;
-    QUrl inspectorUrl;
-    quint16 remoteInspectorPort;
-    bool startMaximized;
-};
-
-class LauncherWindow : public MainWindow {
-    Q_OBJECT
-
-public:
-    LauncherWindow(WindowOptions* data = 0, QGraphicsScene* sharedScene = 0);
-    virtual ~LauncherWindow();
-
-    void sendTouchEvent();
-
-    bool eventFilter(QObject* obj, QEvent* event);
-
-protected Q_SLOTS:
-    void loadStarted();
-    void loadFinished();
-
-    void showLinkHover(const QString &link, const QString &toolTip);
-
-    void zoomIn();
-    void zoomOut();
-    void resetZoom();
-    void toggleZoomTextOnly(bool on);
-    void zoomAnimationFinished();
-
-    void print();
-    void screenshot();
-
-    void setEditable(bool on);
-
-    /* void dumpPlugins() */
-    void dumpHtml();
-
-    void loadURLListFromFile();
-
-    void setDiskCache(bool enable);
-    void setTouchMocking(bool on);
-    void toggleWebView(bool graphicsBased);
-    void toggleAcceleratedCompositing(bool toggle);
-    void toggleTiledBackingStore(bool toggle);
-    void toggleResizesToContents(bool toggle);
-    void toggleWebGL(bool toggle);
-    void toggleWebAudio(bool toggle);
-    void toggleSpatialNavigation(bool b);
-    void toggleFullScreenMode(bool enable);
-    void toggleFrameFlattening(bool toggle);
-    void toggleJavaScriptEnabled(bool enable);
-    void toggleInterruptingJavaScriptEnabled(bool enable);
-    void toggleJavascriptCanOpenWindows(bool enable);
-    void toggleAutoLoadImages(bool enable);
-    void setUseDiskCookies(bool enable);
-    void clearCookies();
-    void togglePlugins(bool enable);
-    void toggleLocalStorage(bool toggle);
-    void toggleOfflineStorageDatabase(bool toggle);
-    void toggleOfflineWebApplicationCache(bool toggle);
-    void toggleScrollAnimator(bool toggle);
-    void setOfflineStorageDefaultQuota();
-#ifndef QT_NO_LINEEDIT
-    void showFindBar();
-    void find(int mode);
-#endif
-#ifndef QT_NO_OPENGL
-    void toggleQGLWidgetViewport(bool enable);
-#endif
-
-    void changeViewportUpdateMode(int mode);
-    void animatedFlip();
-    void animatedYFlip();
-    void selectElements();
-    void clearSelection();
-    void showFPS(bool enable);
-    void showUserAgentDialog();
-
-    void printURL(const QUrl&);
-#if !defined(QT_NO_FILEDIALOG) && !defined(QT_NO_MESSAGEBOX)
-    void downloadRequest(const QNetworkRequest&);
-    void fileDownloadFinished();
-#endif
-
-public Q_SLOTS:
-    LauncherWindow* newWindow();
-    LauncherWindow* cloneWindow();
-    void updateFPS(int fps);
-
-Q_SIGNALS:
-    void enteredFullScreenMode(bool on);
-
-private:
-    void init();
-    void initializeView();
-    void createChrome();
-    void applyPrefs();
-    void applyZoom();
-
-    bool isGraphicsBased() const;
-
-private:
-    static QVector<int> m_zoomLevels;
-    int m_currentZoom;
-
-    UrlLoader* m_urlLoader;
-
-    QWidget* m_view;
-    WebInspector* m_inspector;
-
-    WindowOptions m_windowOptions;
-
-    QAction* m_formatMenuAction;
-
-    QPropertyAnimation* m_zoomAnimation;
-#if !defined(QT_NO_FILEDIALOG) && !defined(QT_NO_MESSAGEBOX)
-    QNetworkReply* m_reply;
-#endif
-    QList<QTouchEvent::TouchPoint> m_touchPoints;
-    QList<HighlightedElement> m_highlightedElements;
-    bool m_touchMocking;
-
-    QString m_inputUrl;
-#ifndef QT_NO_LINEEDIT
-    QToolBar* m_findBar;
-    QLineEdit* m_lineEdit;
-    int m_findFlag;
-    static const int s_findNormalFlag = 0;
-#endif
-};
-
-#endif
diff --git a/Tools/QtTestBrowser/locationedit.cpp b/Tools/QtTestBrowser/locationedit.cpp
deleted file mode 100644
index 6489b2b..0000000
--- a/Tools/QtTestBrowser/locationedit.cpp
+++ /dev/null
@@ -1,124 +0,0 @@
-/*
- * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2011 Andreas Kling <kling@webkit.org>
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "locationedit.h"
-
-#ifndef QT_NO_INPUTDIALOG
-
-static const QSize gPageIconSize(16, 16);
-
-static QPixmap defaultPageIcon()
-{
-    static QPixmap icon;
-    if (icon.isNull())
-        icon.load(":/favicon.png");
-
-    return icon;
-}
-
-LocationEdit::LocationEdit(QWidget* parent)
-    : QLineEdit(parent)
-    , m_progress(0)
-{
-    m_clearTimer.setSingleShot(true);
-    connect(&m_clearTimer, SIGNAL(timeout()), this, SLOT(reset()));
-
-    m_pageIconLabel = new QLabel(this);
-    m_pageIconLabel->setFixedSize(gPageIconSize);
-    m_pageIconLabel->setPixmap(defaultPageIcon());
-}
-
-void LocationEdit::setPageIcon(const QIcon& icon)
-{
-    if (icon.isNull())
-        m_pageIconLabel->setPixmap(defaultPageIcon());
-    else
-        m_pageIconLabel->setPixmap(icon.pixmap(gPageIconSize));
-}
-
-void LocationEdit::setProgress(int progress)
-{
-    m_clearTimer.stop();
-    m_progress = progress;
-    update();
-}
-
-void LocationEdit::reset()
-{
-    setProgress(0);
-}
-
-void LocationEdit::resizeEvent(QResizeEvent*)
-{
-    updateInternalGeometry();
-}
-
-void LocationEdit::updateInternalGeometry()
-{
-    QStyleOptionFrameV3 styleOption;
-    initStyleOption(&styleOption);
-
-    QRect textRect = style()->subElementRect(QStyle::SE_LineEditContents, &styleOption, this);
-
-    const int spacing = 2;
-
-    int x = textRect.x() + spacing;
-    int y = (textRect.center().y() + 1) - gPageIconSize.height() / 2;
-
-    m_pageIconLabel->move(x, y);
-
-    QMargins margins = textMargins();
-    margins.setLeft(m_pageIconLabel->sizeHint().width() + spacing);
-    setTextMargins(margins);
-}
-
-void LocationEdit::paintEvent(QPaintEvent* ev)
-{
-    QColor backgroundColor = QApplication::palette().color(QPalette::Base);
-    QColor progressColor = QColor(120, 180, 240);
-    QPalette p = palette();
-
-    if (!m_progress)
-        p.setBrush(QPalette::Base, backgroundColor);
-    else {
-        QLinearGradient gradient(0, 0, width(), 0);
-        gradient.setColorAt(0, progressColor);
-        gradient.setColorAt(((double) m_progress) / 100, progressColor);
-        if (m_progress != 100)
-            gradient.setColorAt((double) m_progress / 100 + 0.001, backgroundColor);
-        p.setBrush(QPalette::Base, gradient);
-    }
-    setPalette(p);
-
-    QLineEdit::paintEvent(ev);
-
-    if (m_progress == 100)
-        m_clearTimer.start(100);
-}
-
-#endif
diff --git a/Tools/QtTestBrowser/locationedit.h b/Tools/QtTestBrowser/locationedit.h
deleted file mode 100644
index dae069d..0000000
--- a/Tools/QtTestBrowser/locationedit.h
+++ /dev/null
@@ -1,66 +0,0 @@
-/*
- * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef locationedit_h
-#define locationedit_h
-
-#ifndef QT_NO_INPUTDIALOG
-#include <QApplication>
-#include <QIcon>
-#include <QLabel>
-#include <QLineEdit>
-#include <QStyleOptionFrameV3>
-#include <QTimer>
-
-class LocationEdit : public QLineEdit {
-    Q_OBJECT
-
-public:
-    LocationEdit(QWidget* parent = 0);
-
-    void setPageIcon(const QIcon&);
-
-public Q_SLOTS:
-    void setProgress(int progress);
-
-private Q_SLOTS:
-    void reset();
-
-protected:
-    virtual void paintEvent(QPaintEvent*);
-    virtual void resizeEvent(QResizeEvent*);
-
-private:
-    void updateInternalGeometry();
-
-    int m_progress;
-    QTimer m_clearTimer;
-    QLabel* m_pageIconLabel;
-};
-
-#endif
-#endif
diff --git a/Tools/QtTestBrowser/mainwindow.cpp b/Tools/QtTestBrowser/mainwindow.cpp
deleted file mode 100644
index 6821769..0000000
--- a/Tools/QtTestBrowser/mainwindow.cpp
+++ /dev/null
@@ -1,241 +0,0 @@
-/*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2009 Girish Ramakrishnan <girish@forwardbias.in>
- * Copyright (C) 2006 George Staikos <staikos@kde.org>
- * Copyright (C) 2006 Dirk Mueller <mueller@kde.org>
- * Copyright (C) 2006 Zack Rusin <zack@kde.org>
- * Copyright (C) 2006 Simon Hausmann <hausmann@kde.org>
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "mainwindow.h"
-
-#include "locationedit.h"
-#include "utils.h"
-
-#include <QAction>
-#ifndef QT_NO_INPUTDIALOG
-#include <QCompleter>
-#endif
-#ifndef QT_NO_FILEDIALOG
-#include <QFileDialog>
-#endif
-
-MainWindow::MainWindow()
-    : m_page(new WebPage(this))
-    , m_toolBar(0)
-    , urlEdit(0)
-{
-    setAttribute(Qt::WA_DeleteOnClose);
-    if (qgetenv("QTTESTBROWSER_USE_ARGB_VISUALS").toInt() == 1)
-        setAttribute(Qt::WA_TranslucentBackground);
-
-    buildUI();
-}
-
-void MainWindow::buildUI()
-{
-    delete m_toolBar;
-
-    m_toolBar = addToolBar("Navigation");
-    QAction* reloadAction = page()->action(QWebPage::Reload);
-    connect(reloadAction, SIGNAL(triggered()), this, SLOT(changeLocation()));
-
-    m_toolBar->addAction(page()->action(QWebPage::Back));
-    m_toolBar->addAction(page()->action(QWebPage::Forward));
-    m_toolBar->addAction(reloadAction);
-    m_toolBar->addAction(page()->action(QWebPage::Stop));
-
-#ifndef QT_NO_INPUTDIALOG
-    urlEdit = new LocationEdit(m_toolBar);
-    urlEdit->setSizePolicy(QSizePolicy::Expanding, urlEdit->sizePolicy().verticalPolicy());
-    connect(urlEdit, SIGNAL(returnPressed()), SLOT(changeLocation()));
-    QCompleter* completer = new QCompleter(m_toolBar);
-    urlEdit->setCompleter(completer);
-    completer->setModel(&urlModel);
-    m_toolBar->addWidget(urlEdit);
-
-    connect(page()->mainFrame(), SIGNAL(urlChanged(QUrl)), this, SLOT(setAddressUrl(QUrl)));
-    connect(page(), SIGNAL(loadProgress(int)), urlEdit, SLOT(setProgress(int)));
-#endif
-
-    connect(page()->mainFrame(), SIGNAL(loadStarted()), this, SLOT(onLoadStarted()));
-    connect(page()->mainFrame(), SIGNAL(iconChanged()), this, SLOT(onIconChanged()));
-    connect(page()->mainFrame(), SIGNAL(titleChanged(QString)), this, SLOT(onTitleChanged(QString)));
-    connect(page(), SIGNAL(windowCloseRequested()), this, SLOT(close()));
-
-#ifndef QT_NO_SHORTCUT
-    // short-cuts
-    page()->action(QWebPage::Back)->setShortcut(QKeySequence::Back);
-    page()->action(QWebPage::Stop)->setShortcut(Qt::Key_Escape);
-    page()->action(QWebPage::Forward)->setShortcut(QKeySequence::Forward);
-    page()->action(QWebPage::Reload)->setShortcut(QKeySequence::Refresh);
-#ifndef QT_NO_UNDOSTACK
-    page()->action(QWebPage::Undo)->setShortcut(QKeySequence::Undo);
-    page()->action(QWebPage::Redo)->setShortcut(QKeySequence::Redo);
-#endif
-    page()->action(QWebPage::Cut)->setShortcut(QKeySequence::Cut);
-    page()->action(QWebPage::Copy)->setShortcut(QKeySequence::Copy);
-    page()->action(QWebPage::Paste)->setShortcut(QKeySequence::Paste);
-    page()->action(QWebPage::SelectAll)->setShortcut(QKeySequence::SelectAll);
-
-    page()->action(QWebPage::ToggleBold)->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_B));
-    page()->action(QWebPage::ToggleItalic)->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_I));
-    page()->action(QWebPage::ToggleUnderline)->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_U));
-#endif
-}
-
-void MainWindow::setPage(WebPage* page)
-{
-    if (page && m_page)
-        page->setUserAgent(m_page->userAgentForUrl(QUrl()));
-
-    delete m_page;
-    m_page = page;
-
-    buildUI();
-}
-
-WebPage* MainWindow::page() const
-{
-    return m_page;
-}
-
-void MainWindow::setAddressUrl(const QUrl& url)
-{
-    setAddressUrl(url.toString(QUrl::RemoveUserInfo));
-}
-
-void MainWindow::setAddressUrl(const QString& url)
-{
-#ifndef QT_NO_INPUTDIALOG
-    if (!url.contains("about:"))
-        urlEdit->setText(url);
-#endif
-}
-
-void MainWindow::addCompleterEntry(const QUrl& url)
-{
-    QUrl::FormattingOptions opts;
-    opts |= QUrl::RemoveScheme;
-    opts |= QUrl::RemoveUserInfo;
-    opts |= QUrl::StripTrailingSlash;
-    QString s = url.toString(opts);
-    s = s.mid(2);
-    if (s.isEmpty())
-        return;
-
-    if (!urlList.contains(s))
-        urlList += s;
-    urlModel.setStringList(urlList);
-}
-
-void MainWindow::load(const QString& url)
-{
-    QUrl qurl = urlFromUserInput(url);
-    if (qurl.scheme().isEmpty())
-        qurl = QUrl("http://" + url + "/");
-    load(qurl);
-}
-
-void MainWindow::load(const QUrl& url)
-{
-    if (!url.isValid())
-        return;
-
-    setAddressUrl(url.toString());
-    page()->mainFrame()->load(url);
-}
-
-QString MainWindow::addressUrl() const
-{
-#ifndef QT_NO_INPUTDIALOG
-    return urlEdit->text();
-#endif
-    return QString();
-}
-
-void MainWindow::changeLocation()
-{
-#ifndef QT_NO_INPUTDIALOG
-    QString string = urlEdit->text();
-    QUrl mainFrameURL = page()->mainFrame()->url();
-
-    if (mainFrameURL.isValid() && string == mainFrameURL.toString()) {
-        page()->triggerAction(QWebPage::Reload);
-        return;
-    }
-
-    load(string);
-#endif
-}
-
-void MainWindow::openFile()
-{
-#ifndef QT_NO_FILEDIALOG
-    static const QString filter("HTML Files (*.htm *.html);;Text Files (*.txt);;Image Files (*.gif *.jpg *.png);;All Files (*)");
-
-    QFileDialog fileDialog(this, tr("Open"), QString(), filter);
-    fileDialog.setAcceptMode(QFileDialog::AcceptOpen);
-    fileDialog.setFileMode(QFileDialog::ExistingFile);
-    fileDialog.setOptions(QFileDialog::ReadOnly);
-
-    if (fileDialog.exec()) {
-        QString selectedFile = fileDialog.selectedFiles()[0];
-        if (!selectedFile.isEmpty())
-            load(QUrl::fromLocalFile(selectedFile));
-    }
-#endif
-}
-
-void MainWindow::openLocation()
-{
-#ifndef QT_NO_INPUTDIALOG
-    urlEdit->selectAll();
-    urlEdit->setFocus();
-#endif
-}
-
-void MainWindow::onIconChanged()
-{
-#ifndef QT_NO_INPUTDIALOG
-    urlEdit->setPageIcon(page()->mainFrame()->icon());
-#endif
-}
-
-void MainWindow::onLoadStarted()
-{
-#ifndef QT_NO_INPUTDIALOG
-    urlEdit->setPageIcon(QIcon());
-#endif
-}
-
-void MainWindow::onTitleChanged(const QString& title)
-{
-    if (title.isEmpty())
-        setWindowTitle(QCoreApplication::applicationName());
-    else
-        setWindowTitle(QString::fromLatin1("%1 - %2").arg(title).arg(QCoreApplication::applicationName()));
-}
diff --git a/Tools/QtTestBrowser/mainwindow.h b/Tools/QtTestBrowser/mainwindow.h
deleted file mode 100644
index 2036952..0000000
--- a/Tools/QtTestBrowser/mainwindow.h
+++ /dev/null
@@ -1,81 +0,0 @@
-/*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2009 Girish Ramakrishnan <girish@forwardbias.in>
- * Copyright (C) 2006 George Staikos <staikos@kde.org>
- * Copyright (C) 2006 Dirk Mueller <mueller@kde.org>
- * Copyright (C) 2006 Zack Rusin <zack@kde.org>
- * Copyright (C) 2006 Simon Hausmann <hausmann@kde.org>
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef mainwindow_h
-#define mainwindow_h
-
-#include "webpage.h"
-
-#include <QMainWindow>
-#include <QStringListModel>
-#include <QToolBar>
-
-class LocationEdit;
-
-class MainWindow : public QMainWindow {
-    Q_OBJECT
-
-public:
-    MainWindow();
-
-    void addCompleterEntry(const QUrl& url);
-
-    void load(const QString& url);
-    void load(const QUrl& url);
-
-    WebPage* page() const;
-    void setPage(WebPage*);
-
-protected Q_SLOTS:
-    void setAddressUrl(const QString& url);
-    void setAddressUrl(const QUrl& url);
-    void openFile();
-    void openLocation();
-    void changeLocation();
-    void onIconChanged();
-    void onLoadStarted();
-    void onTitleChanged(const QString&);
-
-protected:
-    QString addressUrl() const;
-
-private:
-    void buildUI();
-
-    WebPage* m_page;
-    QToolBar* m_toolBar;
-    QStringListModel urlModel;
-    QStringList urlList;
-    LocationEdit* urlEdit;
-};
-
-#endif
diff --git a/Tools/QtTestBrowser/qttestbrowser.cpp b/Tools/QtTestBrowser/qttestbrowser.cpp
deleted file mode 100644
index c5b6ef0..0000000
--- a/Tools/QtTestBrowser/qttestbrowser.cpp
+++ /dev/null
@@ -1,321 +0,0 @@
-/*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2009 Girish Ramakrishnan <girish@forwardbias.in>
- * Copyright (C) 2006 George Staikos <staikos@kde.org>
- * Copyright (C) 2006 Dirk Mueller <mueller@kde.org>
- * Copyright (C) 2006 Zack Rusin <zack@kde.org>
- * Copyright (C) 2006 Simon Hausmann <hausmann@kde.org>
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "DumpRenderTreeSupportQt.h"
-#include "QtTestSupport.h"
-#include "launcherwindow.h"
-#include "urlloader.h"
-
-WindowOptions windowOptions;
-
-#include <QApplication>
-#include <QDir>
-#include <QFile>
-#include <QFileInfo>
-#include <QFontDatabase>
-
-int launcherMain(const QApplication& app)
-{
-#ifndef NDEBUG
-    int retVal = app.exec();
-    DumpRenderTreeSupportQt::garbageCollectorCollect();
-    QWebSettings::clearMemoryCaches();
-    return retVal;
-#else
-    return app.exec();
-#endif
-}
-
-class LauncherApplication : public QApplication {
-    Q_OBJECT
-
-public:
-    LauncherApplication(int& argc, char** argv);
-    QStringList urls() const { return m_urls; }
-    bool isRobotized() const { return m_isRobotized; }
-    int robotTimeout() const { return m_robotTimeoutSeconds; }
-    int robotExtraTime() const { return m_robotExtraTimeSeconds; }
-
-private:
-    void handleUserOptions();
-    void applyDefaultSettings();
-
-private:
-    bool m_isRobotized;
-    int m_robotTimeoutSeconds;
-    int m_robotExtraTimeSeconds;
-    QStringList m_urls;
-};
-
-void LauncherApplication::applyDefaultSettings()
-{
-    QWebSettings::setMaximumPagesInCache(4);
-
-    QWebSettings::setObjectCacheCapacities((16*1024*1024) / 8, (16*1024*1024) / 8, 16*1024*1024);
-
-    QWebSettings::globalSettings()->setAttribute(QWebSettings::PluginsEnabled, true);
-    QWebSettings::globalSettings()->setAttribute(QWebSettings::DeveloperExtrasEnabled, true);
-    QWebSettings::enablePersistentStorage();
-}
-
-LauncherApplication::LauncherApplication(int& argc, char** argv)
-    : QApplication(argc, argv)
-    , m_isRobotized(false)
-    , m_robotTimeoutSeconds(0)
-    , m_robotExtraTimeSeconds(0)
-{
-    // To allow QWebInspector's configuration persistence
-    setOrganizationName("Nokia");
-    setApplicationName("QtTestBrowser");
-    setApplicationVersion("0.1");
-
-    applyDefaultSettings();
-
-    handleUserOptions();
-}
-
-static void requiresGraphicsView(const QString& option)
-{
-    if (windowOptions.useGraphicsView)
-        return;
-    appQuit(1, QString("%1 only works in combination with the -graphicsbased option").arg(option));
-}
-
-void LauncherApplication::handleUserOptions()
-{
-    QStringList args = arguments();
-    QFileInfo program(args.at(0));
-    QString programName("QtTestBrowser");
-    if (program.exists())
-        programName = program.baseName();
-
-    QList<QString> updateModes(enumToKeys(QGraphicsView::staticMetaObject,
-            "ViewportUpdateMode", "ViewportUpdate"));
-
-    if (args.contains("-help")) {
-        qDebug() << "Usage:" << programName.toLatin1().data()
-             << "[-graphicsbased]"
-             << "[-no-compositing]"
-#if defined(QT_CONFIGURED_WITH_OPENGL)
-             << "[-gl-viewport]"
-             << "[-webgl]"
-#endif
-             << QString("[-viewport-update-mode %1]").arg(formatKeys(updateModes)).toLatin1().data()
-#if !defined(QT_NO_NETWORKDISKCACHE) && !defined(QT_NO_DESKTOPSERVICES)
-             << "[-disk-cache]"
-#endif
-             << "[-cache-webview]"
-             << "[-maximize]"
-             << "[-show-fps]"
-             << "[-r list]"
-             << "[-robot-timeout seconds]"
-             << "[-robot-extra-time seconds]"
-             << "[-inspector-url location]"
-             << "[-tiled-backing-store]"
-             << "[-resizes-to-contents]"
-             << "[-local-storage-enabled]"
-             << "[-no-disk-cookies]"
-             << "[-offline-storage-database-enabled]"
-             << "[-offline-web-application-cache-enabled]"
-             << "[-set-offline-storage-default-quota maxSize]"
-             << "[-use-test-fonts]"
-             << "[-print-loaded-urls]"
-             << "URLs";
-        appQuit(0);
-    }
-
-    const bool defaultForAnimations = args.contains("-default-animations");
-    if (args.contains("-graphicsbased") || defaultForAnimations)
-        windowOptions.useGraphicsView = true;
-
-    if (args.contains("-no-compositing")) {
-        requiresGraphicsView("-no-compositing");
-        windowOptions.useCompositing = false;
-    }
-
-    if (args.contains("-show-fps")) {
-        requiresGraphicsView("-show-fps");
-        windowOptions.showFrameRate = true;
-    }
-
-    if (args.contains("-disk-cache")) {
-#if !defined(QT_NO_NETWORKDISKCACHE) && !defined(QT_NO_DESKTOPSERVICES)
-        windowOptions.useDiskCache = true;
-#else
-    appQuit(1, "-disk-cache only works if QNetworkDiskCache and QDesktopServices is enabled in your Qt build.");
-#endif
-    }
-
-    if (args.contains("-cache-webview") || defaultForAnimations) {
-        requiresGraphicsView("-cache-webview");
-        windowOptions.cacheWebView = true;
-    }
-
-    if (args.contains("-tiled-backing-store")) {
-        requiresGraphicsView("-tiled-backing-store");
-        windowOptions.useTiledBackingStore = true;
-    }
-
-    if (args.contains("-resizes-to-contents")) {
-        requiresGraphicsView("-resizes-to-contents");
-        windowOptions.resizesToContents = true;
-    }
-    
-    if (args.contains("-local-storage-enabled"))
-        windowOptions.useLocalStorage = true;
-
-    if (args.contains("-no-disk-cookies"))
-        windowOptions.useDiskCookies = false;
-
-    if (args.contains("-maximize"))
-        windowOptions.startMaximized = true;
-
-    if (args.contains("-offline-storage-database-enabled"))
-        windowOptions.useOfflineStorageDatabase = true;
-        
-    if (args.contains("-offline-web-application-cache-enabled"))   
-        windowOptions.useOfflineWebApplicationCache = true;
-    
-    int setOfflineStorageDefaultQuotaIndex = args.indexOf("-set-offline-storage-default-quota");
-    if (setOfflineStorageDefaultQuotaIndex != -1) {
-        unsigned int maxSize = takeOptionValue(&args, setOfflineStorageDefaultQuotaIndex).toUInt();
-        windowOptions.offlineStorageDefaultQuotaSize = maxSize;
-    }   
-    
-    if (defaultForAnimations)
-        windowOptions.viewportUpdateMode = QGraphicsView::BoundingRectViewportUpdate;
-
-    QString arg1("-viewport-update-mode");
-    int modeIndex = args.indexOf(arg1);
-    if (modeIndex != -1) {
-        requiresGraphicsView(arg1);
-
-        QString mode = takeOptionValue(&args, modeIndex);
-        if (mode.isEmpty())
-            appQuit(1, QString("%1 needs a value of one of [%2]").arg(arg1).arg(formatKeys(updateModes)));
-        int idx = updateModes.indexOf(mode);
-        if (idx == -1)
-            appQuit(1, QString("%1 value has to be one of [%2]").arg(arg1).arg(formatKeys(updateModes)));
-
-        windowOptions.viewportUpdateMode = static_cast<QGraphicsView::ViewportUpdateMode>(idx);
-    }
-#ifdef QT_CONFIGURED_WITH_OPENGL
-    if (args.contains("-gl-viewport") || defaultForAnimations) {
-        requiresGraphicsView("-gl-viewport");
-        windowOptions.useQGLWidgetViewport = true;
-    }
-
-    if (args.contains("-webgl")) {
-        requiresGraphicsView("-webgl");
-        windowOptions.useWebGL = true;
-    }
-#endif
-
-    if (args.contains("-use-test-fonts"))
-        WebKit::QtTestSupport::initializeTestFonts();
-
-    if (args.contains("-print-loaded-urls"))
-        windowOptions.printLoadedUrls = true;
-
-    QString inspectorUrlArg("-inspector-url");
-    int inspectorUrlIndex = args.indexOf(inspectorUrlArg);
-    if (inspectorUrlIndex != -1)
-       windowOptions.inspectorUrl = takeOptionValue(&args, inspectorUrlIndex);
-
-    QString remoteInspectorPortArg("-remote-inspector-port");
-    int remoteInspectorPortIndex = args.indexOf(remoteInspectorPortArg);
-    if (remoteInspectorPortIndex != -1)
-        windowOptions.remoteInspectorPort = takeOptionValue(&args, remoteInspectorPortIndex).toInt();
-
-    int robotIndex = args.indexOf("-r");
-    if (robotIndex != -1) {
-        QString listFile = takeOptionValue(&args, robotIndex);
-        if (listFile.isEmpty())
-            appQuit(1, "-r needs a list file to start in robotized mode");
-        if (!QFile::exists(listFile))
-            appQuit(1, "The list file supplied to -r does not exist.");
-
-        m_isRobotized = true;
-        m_urls = QStringList(listFile);
-    } else {
-        int lastArg = args.lastIndexOf(QRegExp("^-.*"));
-        m_urls = (lastArg != -1) ? args.mid(++lastArg) : args.mid(1);
-    }
-
-    int robotTimeoutIndex = args.indexOf("-robot-timeout");
-    if (robotTimeoutIndex != -1)
-        m_robotTimeoutSeconds = takeOptionValue(&args, robotTimeoutIndex).toInt();
-
-    int robotExtraTimeIndex = args.indexOf("-robot-extra-time");
-    if (robotExtraTimeIndex != -1)
-        m_robotExtraTimeSeconds = takeOptionValue(&args, robotExtraTimeIndex).toInt();
-}
-
-
-int main(int argc, char **argv)
-{
-    LauncherApplication app(argc, argv);
-
-    if (app.isRobotized()) {
-        LauncherWindow* window = new LauncherWindow();
-        UrlLoader loader(window->page()->mainFrame(), app.urls().at(0), app.robotTimeout(), app.robotExtraTime());
-        loader.loadNext();
-        window->show();
-        return launcherMain(app);
-    }
-
-    QStringList urls = app.urls();
-
-    if (urls.isEmpty()) {
-        QString defaultIndexFile = QString("%1/%2").arg(QDir::homePath()).arg(QLatin1String("index.html"));
-        if (QFile(defaultIndexFile).exists())
-            urls.append(QString("file://") + defaultIndexFile);
-        else
-            urls.append("http://www.google.com/");
-    }
-
-    LauncherWindow* window = 0;
-    foreach (QString url, urls) {
-        LauncherWindow* newWindow;
-        if (!window)
-            newWindow = window = new LauncherWindow(&windowOptions);
-        else
-            newWindow = window->newWindow();
-
-        newWindow->load(url);
-    }
-
-    window->show();
-    return launcherMain(app);
-}
-
-#include "qttestbrowser.moc"
diff --git a/Tools/QtTestBrowser/urlloader.cpp b/Tools/QtTestBrowser/urlloader.cpp
deleted file mode 100644
index 2ae722b..0000000
--- a/Tools/QtTestBrowser/urlloader.cpp
+++ /dev/null
@@ -1,130 +0,0 @@
-/*
- * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2009 University of Szeged
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "urlloader.h"
-
-#include <QFile>
-#include <QDebug>
-#include <QWebPage>
-
-UrlLoader::UrlLoader(QWebFrame* frame, const QString& inputFileName, int timeoutSeconds, int extraTimeSeconds)
-    : m_frame(frame)
-    , m_stdOut(stdout)
-    , m_loaded(0)
-    , m_numFramesLoading(0)
-{
-    m_checkIfFinishedTimer.setInterval(200);
-    m_checkIfFinishedTimer.setSingleShot(true);
-    connect(&m_checkIfFinishedTimer, SIGNAL(timeout()), this, SLOT(checkIfFinished()));
-    // loadStarted and loadFinished on QWebPage is emitted for each frame/sub-frame
-    connect(m_frame->page(), SIGNAL(loadStarted()), this, SLOT(frameLoadStarted()));
-    connect(m_frame->page(), SIGNAL(loadFinished(bool)), this, SLOT(frameLoadFinished()));
-
-    if (timeoutSeconds) {
-        m_timeoutTimer.setInterval(timeoutSeconds * 1000);
-        m_timeoutTimer.setSingleShot(true);
-        connect(frame, SIGNAL(loadStarted()), &m_timeoutTimer, SLOT(start()));
-        connect(&m_timeoutTimer, SIGNAL(timeout()), this, SLOT(loadNext()));
-    }
-    if (extraTimeSeconds) {
-        m_extraTimeTimer.setInterval(extraTimeSeconds * 1000);
-        m_extraTimeTimer.setSingleShot(true);
-        connect(this, SIGNAL(pageLoadFinished()), &m_extraTimeTimer, SLOT(start()));
-        connect(&m_extraTimeTimer, SIGNAL(timeout()), this, SLOT(loadNext()));
-    } else
-        connect(this, SIGNAL(pageLoadFinished()), this, SLOT(loadNext()));
-    loadUrlList(inputFileName);
-}
-
-void UrlLoader::loadNext()
-{
-    m_timeoutTimer.stop();
-    m_extraTimeTimer.stop();
-    m_checkIfFinishedTimer.stop();
-    m_numFramesLoading = 0;
-    QString qstr;
-    if (getUrl(qstr)) {
-        QUrl url(qstr, QUrl::StrictMode);
-        if (url.isValid()) {
-            m_stdOut << "Loading " << qstr << " ......" << ++m_loaded << endl;
-            m_frame->load(url);
-        } else
-            loadNext();
-    } else
-        disconnect(m_frame, 0, this, 0);
-}
-
-void UrlLoader::checkIfFinished()
-{
-    if (!m_numFramesLoading)
-        emit pageLoadFinished();
-}
-
-void UrlLoader::frameLoadStarted()
-{
-    ++m_numFramesLoading;
-    m_checkIfFinishedTimer.stop();
-}
-
-void UrlLoader::frameLoadFinished()
-{
-    Q_ASSERT(m_numFramesLoading > 0);
-    --m_numFramesLoading;
-    // Once our frame has finished loading, wait a moment to call loadNext for cases
-    // where a sub-frame starts loading or another frame is loaded through JavaScript.
-    m_checkIfFinishedTimer.start();
-}
-
-void UrlLoader::loadUrlList(const QString& inputFileName)
-{
-    QFile inputFile(inputFileName);
-    if (inputFile.open(QIODevice::ReadOnly | QIODevice::Text)) {
-        QTextStream stream(&inputFile);
-        QString line;
-        while (true) {
-            line = stream.readLine();
-            if (line.isNull())
-                break;
-            m_urls.append(line);
-        }
-    } else {
-        qDebug() << "Can't open list file";
-        exit(0);
-    }
-    m_index = 0;
-    inputFile.close();
-}
-
-bool UrlLoader::getUrl(QString& qstr)
-{
-    if (m_index == m_urls.size())
-        return false;
-
-    qstr = m_urls[m_index++];
-    return true;
-}
diff --git a/Tools/QtTestBrowser/urlloader.h b/Tools/QtTestBrowser/urlloader.h
deleted file mode 100644
index 8425409..0000000
--- a/Tools/QtTestBrowser/urlloader.h
+++ /dev/null
@@ -1,71 +0,0 @@
-/*
- * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2009 University of Szeged
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef urlloader_h
-#define urlloader_h
-
-#include "qwebframe.h"
-
-#include <QTextStream>
-#include <QTimer>
-#include <QVector>
-
-class UrlLoader : public QObject {
-    Q_OBJECT
-
-public:
-    UrlLoader(QWebFrame* frame, const QString& inputFileName, int timeoutSeconds, int extraTimeSeconds);
-
-public Q_SLOTS:
-    void loadNext();
-
-private Q_SLOTS:
-    void checkIfFinished();
-    void frameLoadStarted();
-    void frameLoadFinished();
-
-Q_SIGNALS:
-    void pageLoadFinished();
-
-private:
-    void loadUrlList(const QString& inputFileName);
-    bool getUrl(QString& qstr);
-
-private:
-    QVector<QString> m_urls;
-    int m_index;
-    QWebFrame* m_frame;
-    QTextStream m_stdOut;
-    int m_loaded;
-    QTimer m_timeoutTimer;
-    QTimer m_extraTimeTimer;
-    QTimer m_checkIfFinishedTimer;
-    int m_numFramesLoading;
-};
-
-#endif
diff --git a/Tools/QtTestBrowser/useragentlist.txt b/Tools/QtTestBrowser/useragentlist.txt
deleted file mode 100644
index decf104..0000000
--- a/Tools/QtTestBrowser/useragentlist.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-Mozilla/5.0 (X11; Linux i686) AppleWebKit/535.1 (KHTML, like Gecko) QtTestBrowser/0.1 Safari/535.1
-Mozilla/5.0 (SymbianOS/9.4; U; Series60/5.0) AppleWebKit/535.1 (KHTML, like Gecko) QtTestBrowser/0.1 Mobile Safari/535.1
-Mozilla/5.0 (Macintosh; PPC Mac OS X) AppleWebKit/125.2 (KHTML, like Gecko) Safari/125.8
-Mozilla/5.0 (Unknown; like Android 2.2; Intel Mac OS X 10_6) AppleWebKit/533.3 (KHTML, like Gecko) Version/4.0.3 Mobile Safari/533.3
-Mozilla/5.0 (iPhone; CPU OS 3_2 like Mac OS X) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10
-Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_0 like Mac OS X; en-us) AppleWebKit/532.9 (KHTML, like Gecko) Version/4.0.5 Mobile/8A293 Safari/6531.22.7
-Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10
-Opera/9.80 (Windows NT 6.0; U; en) Presto/2.8.99 Version/11.10
-Mozilla/5.0 (SymbianOS/9.4; U; Series60/5.0 Nokia5800d-1b/20.2.014; Profile/MIDP-2.1 Configuration/CLDC-1.1) AppleWebKit/413 (KHTML, like Gecko) Safari/413
-Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.2; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)
-Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)
-Mozilla/5.0 (Windows; Windows NT 5.1) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.68 Safari/534.24
-Mozilla/5.0 (Windows NT 6.1; rv:2.0.1) Gecko/20100101 Firefox/4.0.1
diff --git a/Tools/QtTestBrowser/utils.cpp b/Tools/QtTestBrowser/utils.cpp
deleted file mode 100644
index 567c989..0000000
--- a/Tools/QtTestBrowser/utils.cpp
+++ /dev/null
@@ -1,88 +0,0 @@
-/*
- * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "utils.h"
-
-
-QString takeOptionValue(QStringList* arguments, int index)
-{
-    QString result;
-
-    if (++index < arguments->count() && !arguments->at(index).startsWith("-"))
-        result = arguments->takeAt(index);
-
-    return result;
-}
-
-QString formatKeys(QList<QString> keys)
-{
-    QString result;
-    for (int i = 0; i < keys.count() - 1; i++)
-        result.append(keys.at(i) + "|");
-    result.append(keys.last());
-    return result;
-}
-
-QList<QString> enumToKeys(const QMetaObject o, const QString& name, const QString& strip)
-{
-    QList<QString> list;
-
-    int enumIndex = o.indexOfEnumerator(name.toLatin1().data());
-    QMetaEnum enumerator = o.enumerator(enumIndex);
-
-    if (enumerator.isValid()) {
-        for (int i = 0; i < enumerator.keyCount(); i++) {
-            QString key(enumerator.valueToKey(i));
-            list.append(key.remove(strip));
-        }
-    }
-
-    return list;
-}
-
-void appQuit(int exitCode, const QString& msg)
-{
-    if (!msg.isEmpty()) {
-        if (exitCode > 0)
-            qDebug("ERROR: %s", msg.toLatin1().data());
-        else
-            qDebug() << msg;
-    }
-    exit(exitCode);
-}
-
-QUrl urlFromUserInput(const QString& string)
-{
-    QString input(string);
-    QFileInfo fi(input);
-    if (fi.exists() && fi.isRelative())
-        input = fi.absoluteFilePath();
-
-    return QUrl::fromUserInput(input);
-}
-
-
diff --git a/Tools/QtTestBrowser/utils.h b/Tools/QtTestBrowser/utils.h
deleted file mode 100644
index b67351e..0000000
--- a/Tools/QtTestBrowser/utils.h
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef utils_h
-#define utils_h
-
-#include <QtCore>
-
-#ifndef NO_RETURN
-#if defined(__CC_ARM) || defined(__ARMCC__)
-#define NO_RETURN __declspec(noreturn)
-#elif defined(__GNUC__)
-#define NO_RETURN __attribute((__noreturn__))
-#else
-#define NO_RETURN
-#endif
-#endif
-
-// options handling
-QString takeOptionValue(QStringList* arguments, int index);
-QString formatKeys(QList<QString> keys);
-QList<QString> enumToKeys(const QMetaObject o, const QString& name, const QString& strip);
-
-NO_RETURN void appQuit(int status, const QString& msg = QString());
-
-QUrl urlFromUserInput(const QString& input);
-
-#endif
diff --git a/Tools/QtTestBrowser/webinspector.h b/Tools/QtTestBrowser/webinspector.h
deleted file mode 100644
index c75bbdc..0000000
--- a/Tools/QtTestBrowser/webinspector.h
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- * Copyright (C) 2009-2010 Nokia Corporation and/or its subsidiary(-ies)
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef webinspector_h
-#define webinspector_h
-
-#include "qwebinspector.h"
-
-class WebInspector : public QWebInspector {
-    Q_OBJECT
-
-public:
-    WebInspector(QWidget* parent = 0) : QWebInspector(parent) {}
-
-Q_SIGNALS:
-    void visibleChanged(bool nowVisible);
-
-protected:
-    void showEvent(QShowEvent* event)
-    {
-        QWebInspector::showEvent(event);
-        emit visibleChanged(true);
-    }
-    void hideEvent(QHideEvent* event)
-    {
-        QWebInspector::hideEvent(event);
-        emit visibleChanged(false);
-    }
-};
-
-#endif
diff --git a/Tools/QtTestBrowser/webpage.cpp b/Tools/QtTestBrowser/webpage.cpp
deleted file mode 100644
index a4bc78f..0000000
--- a/Tools/QtTestBrowser/webpage.cpp
+++ /dev/null
@@ -1,219 +0,0 @@
-/*
- * Copyright (C) 2009-2010 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2009 Girish Ramakrishnan <girish@forwardbias.in>
- * Copyright (C) 2006 George Staikos <staikos@kde.org>
- * Copyright (C) 2006 Dirk Mueller <mueller@kde.org>
- * Copyright (C) 2006 Zack Rusin <zack@kde.org>
- * Copyright (C) 2006 Simon Hausmann <hausmann@kde.org>
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "webpage.h"
-
-#include "launcherwindow.h"
-
-#include <QAction>
-#include <QApplication>
-#include <QAuthenticator>
-#ifndef QT_NO_DESKTOPSERVICES
-#include <QDesktopServices>
-#endif
-#include <QDialog>
-#include <QDialogButtonBox>
-#include <QLabel>
-#include <QLayout>
-#ifndef QT_NO_LINEEDIT
-#include <QLineEdit>
-#endif
-#include <QProgressBar>
-#include <QtNetwork/QNetworkReply>
-#include <QtNetwork/QNetworkRequest>
-#include <QtNetwork/QNetworkProxy>
-
-WebPage::WebPage(QObject* parent)
-    : QWebPage(parent)
-    , m_userAgent()
-    , m_interruptingJavaScriptEnabled(false)
-{
-    applyProxy();
-
-    connect(networkAccessManager(), SIGNAL(authenticationRequired(QNetworkReply*, QAuthenticator*)),
-            this, SLOT(authenticationRequired(QNetworkReply*, QAuthenticator*)));
-    connect(this, SIGNAL(featurePermissionRequested(QWebFrame*, QWebPage::Feature)), this, SLOT(requestPermission(QWebFrame*, QWebPage::Feature)));
-    connect(this, SIGNAL(featurePermissionRequestCanceled(QWebFrame*, QWebPage::Feature)), this, SLOT(featurePermissionRequestCanceled(QWebFrame*, QWebPage::Feature)));
-}
-
-void WebPage::applyProxy()
-{
-    QUrl proxyUrl(qgetenv("http_proxy"));
-
-    if (proxyUrl.isValid() && !proxyUrl.host().isEmpty()) {
-        int proxyPort = (proxyUrl.port() > 0) ? proxyUrl.port() : 8080;
-        networkAccessManager()->setProxy(QNetworkProxy(QNetworkProxy::HttpProxy, proxyUrl.host(), proxyPort));
-    }
-}
-
-bool WebPage::supportsExtension(QWebPage::Extension extension) const
-{
-    if (extension == QWebPage::ErrorPageExtension)
-        return true;
-    return false;
-}
-
-bool WebPage::extension(Extension extension, const ExtensionOption* option, ExtensionReturn* output)
-{
-    const QWebPage::ErrorPageExtensionOption* info = static_cast<const QWebPage::ErrorPageExtensionOption*>(option);
-    QWebPage::ErrorPageExtensionReturn* errorPage = static_cast<QWebPage::ErrorPageExtensionReturn*>(output);
-
-    errorPage->content = QString("<html><head><title>Failed loading page</title></head><body>%1</body></html>")
-        .arg(info->errorString).toUtf8();
-
-    return true;
-}
-
-bool WebPage::acceptNavigationRequest(QWebFrame* frame, const QNetworkRequest& request, NavigationType type)
-{
-    QObject* view = parent();
-
-    QVariant value = view->property("keyboardModifiers");
-
-    if (!value.isNull()) {
-        Qt::KeyboardModifiers modifiers = Qt::KeyboardModifiers(value.toInt());
-
-        if (modifiers & Qt::ShiftModifier) {
-            QWebPage* page = createWindow(QWebPage::WebBrowserWindow);
-            page->mainFrame()->load(request);
-            return false;
-        }
-
-        if (modifiers & Qt::AltModifier) {
-            openUrlInDefaultBrowser(request.url());
-            return false;
-        }
-    }
-
-    return QWebPage::acceptNavigationRequest(frame, request, type);
-}
-
-void WebPage::openUrlInDefaultBrowser(const QUrl& url)
-{
-#ifndef QT_NO_DESKTOPSERVICES
-    if (QAction* action = qobject_cast<QAction*>(sender()))
-        QDesktopServices::openUrl(action->data().toUrl());
-    else
-        QDesktopServices::openUrl(url);
-#endif
-}
-
-QString WebPage::userAgentForUrl(const QUrl& url) const
-{
-    if (!m_userAgent.isEmpty())
-        return m_userAgent;
-    return QWebPage::userAgentForUrl(url);
-}
-
-bool WebPage::shouldInterruptJavaScript()
-{
-    if (!m_interruptingJavaScriptEnabled)
-        return false;
-    return QWebPage::shouldInterruptJavaScript();
-}
-
-void WebPage::authenticationRequired(QNetworkReply* reply, QAuthenticator* authenticator)
-{
-    QDialog* dialog = new QDialog(QApplication::activeWindow());
-    dialog->setWindowTitle("HTTP Authentication");
-
-    QGridLayout* layout = new QGridLayout(dialog);
-    dialog->setLayout(layout);
-
-    QLabel* messageLabel = new QLabel(dialog);
-    messageLabel->setWordWrap(true);
-    QString messageStr = QString("Enter with username and password for: %1");
-    messageLabel->setText(messageStr.arg(reply->url().toString()));
-    layout->addWidget(messageLabel, 0, 1);
-
-#ifndef QT_NO_LINEEDIT
-    QLabel* userLabel = new QLabel("Username:", dialog);
-    layout->addWidget(userLabel, 1, 0);
-    QLineEdit* userInput = new QLineEdit(dialog);
-    layout->addWidget(userInput, 1, 1);
-
-    QLabel* passLabel = new QLabel("Password:", dialog);
-    layout->addWidget(passLabel, 2, 0);
-    QLineEdit* passInput = new QLineEdit(dialog);
-    passInput->setEchoMode(QLineEdit::Password);
-    layout->addWidget(passInput, 2, 1);
-#endif
-
-    QDialogButtonBox* buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok
-            | QDialogButtonBox::Cancel, Qt::Horizontal, dialog);
-    connect(buttonBox, SIGNAL(accepted()), dialog, SLOT(accept()));
-    connect(buttonBox, SIGNAL(rejected()), dialog, SLOT(reject()));
-    layout->addWidget(buttonBox, 3, 1);
-
-    if (dialog->exec() == QDialog::Accepted) {
-#ifndef QT_NO_LINEEDIT
-        authenticator->setUser(userInput->text());
-        authenticator->setPassword(passInput->text());
-#endif
-    }
-
-    delete dialog;
-}
-
-void WebPage::requestPermission(QWebFrame* frame, QWebPage::Feature feature)
-{
-    setFeaturePermission(frame, feature, PermissionGrantedByUser);
-}
-
-void WebPage::featurePermissionRequestCanceled(QWebFrame*, QWebPage::Feature)
-{
-}
-
-QWebPage* WebPage::createWindow(QWebPage::WebWindowType type)
-{
-    LauncherWindow* mw = new LauncherWindow;
-    if (type == WebModalDialog)
-        mw->setWindowModality(Qt::ApplicationModal);
-    mw->show();
-    return mw->page();
-}
-
-QObject* WebPage::createPlugin(const QString &classId, const QUrl&, const QStringList&, const QStringList&)
-{
-    if (classId == "alien_QLabel") {
-        QLabel* l = new QLabel;
-        l->winId();
-        return l;
-    }
-
-    if (classId == QLatin1String("QProgressBar"))
-        return new QProgressBar(view());
-    if (classId == QLatin1String("QLabel"))
-        return new QLabel(view());
-    return 0;
-}
-
diff --git a/Tools/QtTestBrowser/webpage.h b/Tools/QtTestBrowser/webpage.h
deleted file mode 100644
index 0965b56..0000000
--- a/Tools/QtTestBrowser/webpage.h
+++ /dev/null
@@ -1,70 +0,0 @@
-/*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2009 Girish Ramakrishnan <girish@forwardbias.in>
- * Copyright (C) 2006 George Staikos <staikos@kde.org>
- * Copyright (C) 2006 Dirk Mueller <mueller@kde.org>
- * Copyright (C) 2006 Zack Rusin <zack@kde.org>
- * Copyright (C) 2006 Simon Hausmann <hausmann@kde.org>
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef webpage_h
-#define webpage_h
-
-#include <qwebframe.h>
-#include <qwebpage.h>
-
-class WebPage : public QWebPage {
-    Q_OBJECT
-
-public:
-    WebPage(QObject* parent = 0);
-
-    virtual QWebPage* createWindow(QWebPage::WebWindowType);
-    virtual QObject* createPlugin(const QString&, const QUrl&, const QStringList&, const QStringList&);
-    virtual bool supportsExtension(QWebPage::Extension extension) const;
-    virtual bool extension(Extension extension, const ExtensionOption* option, ExtensionReturn* output);
-
-    virtual bool acceptNavigationRequest(QWebFrame* frame, const QNetworkRequest& request, NavigationType type);
-
-    QString userAgentForUrl(const QUrl& url) const;
-    void setInterruptingJavaScriptEnabled(bool enabled) { m_interruptingJavaScriptEnabled = enabled; }
-
-    virtual bool shouldInterruptJavaScript();
-
-public Q_SLOTS:
-    void openUrlInDefaultBrowser(const QUrl& url = QUrl());
-    void setUserAgent(const QString& ua) { m_userAgent = ua; }
-    void authenticationRequired(QNetworkReply*, QAuthenticator*);
-    void requestPermission(QWebFrame* frame, QWebPage::Feature feature);
-    void featurePermissionRequestCanceled(QWebFrame* frame, QWebPage::Feature feature);
-
-private:
-    void applyProxy();
-    QString m_userAgent;
-    bool m_interruptingJavaScriptEnabled;
-};
-
-#endif
diff --git a/Tools/QtTestBrowser/webview.cpp b/Tools/QtTestBrowser/webview.cpp
deleted file mode 100644
index 4faccbd..0000000
--- a/Tools/QtTestBrowser/webview.cpp
+++ /dev/null
@@ -1,295 +0,0 @@
-/*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2009 Girish Ramakrishnan <girish@forwardbias.in>
- * Copyright (C) 2006 George Staikos <staikos@kde.org>
- * Copyright (C) 2006 Dirk Mueller <mueller@kde.org>
- * Copyright (C) 2006 Zack Rusin <zack@kde.org>
- * Copyright (C) 2006 Simon Hausmann <hausmann@kde.org>
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "webview.h"
-
-#include <QAction>
-#include <QGraphicsScene>
-#include <QGraphicsSceneContextMenuEvent>
-#include <QGraphicsSceneMouseEvent>
-#include <QMenu>
-#include <QScrollBar>
-#include <QTimer>
-
-#ifndef QT_NO_ANIMATION
-#include <QAbstractAnimation>
-#include <QAbstractTransition>
-#include <QFinalState>
-#include <QPropertyAnimation>
-#include <QState>
-#include <QStateMachine>
-#endif
-
-WebViewGraphicsBased::WebViewGraphicsBased(QWidget* parent)
-    : QGraphicsView(parent)
-    , m_item(new GraphicsWebView)
-    , m_numPaintsTotal(0)
-    , m_numPaintsSinceLastMeasure(0)
-    , m_measureFps(false)
-    , m_resizesToContents(false)
-    , m_machine(0)
-{
-    setScene(new QGraphicsScene(this));
-    scene()->addItem(m_item);
-    scene()->setFocusItem(m_item);
-
-    setFrameShape(QFrame::NoFrame);
-    setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
-    setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
-
-    m_updateTimer = new QTimer(this);
-    m_updateTimer->setInterval(1000);
-    connect(m_updateTimer, SIGNAL(timeout()), this, SLOT(updateFrameRate()));
-}
-
-void WebViewGraphicsBased::setPage(QWebPage* page)
-{
-    connect(page->mainFrame(), SIGNAL(contentsSizeChanged(const QSize&)), SLOT(contentsSizeChanged(const QSize&)));
-    connect(page, SIGNAL(scrollRequested(int, int, const QRect&)), SLOT(scrollRequested(int, int)));
-    graphicsWebView()->setPage(page);
-}
-
-void WebViewGraphicsBased::scrollRequested(int x, int y)
-{
-    if (!m_resizesToContents)
-        return;
-
-    // Turn off interactive mode while scrolling, or QGraphicsView will replay the
-    // last mouse event which may cause WebKit to initiate a drag operation.
-    bool interactive = isInteractive();
-    setInteractive(false);
-
-    verticalScrollBar()->setValue(-y);
-    horizontalScrollBar()->setValue(-x);
-
-    setInteractive(interactive);
-}
-
-void WebViewGraphicsBased::contentsSizeChanged(const QSize& size)
-{
-    if (m_resizesToContents)
-        scene()->setSceneRect(0, 0, size.width(), size.height());
-}
-
-void WebViewGraphicsBased::setResizesToContents(bool b)
-{
-    if (b == m_resizesToContents)
-        return;
-
-    m_resizesToContents = b;
-    graphicsWebView()->setResizesToContents(m_resizesToContents);
-
-    // When setting resizesToContents ON, our web view widget will always size as big as the
-    // web content being displayed, and so will the QWebPage's viewport. It implies that internally
-    // WebCore will work as if there was no content rendered offscreen, and then no scrollbars need
-    // drawing. In order to keep scrolling working, we:
-    //
-    // 1) Set QGraphicsView's scrollbars policy back to 'auto'.
-    // 2) Set scene's boundaries rect to an invalid size, which automatically makes it to be as big
-    //    as it needs to enclose all items onto it. We do that because QGraphicsView also calculates
-    //    the size of its scrollable area according to the amount of content in scene that is rendered
-    //    offscreen.
-    // 3) Set QWebPage's preferredContentsSize according to the size of QGraphicsView's viewport,
-    //    so WebCore properly lays pages out.
-    //
-    // On the other hand, when toggling resizesToContents OFF, we set back the default values, as
-    // opposite as described above.
-    if (m_resizesToContents) {
-        setHorizontalScrollBarPolicy(Qt::ScrollBarAsNeeded);
-        setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
-        graphicsWebView()->page()->setPreferredContentsSize(size());
-        QRectF itemRect(graphicsWebView()->geometry().topLeft(), graphicsWebView()->page()->mainFrame()->contentsSize());
-        graphicsWebView()->setGeometry(itemRect);
-        scene()->setSceneRect(itemRect);
-    } else {
-        setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
-        setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
-        graphicsWebView()->page()->setPreferredContentsSize(QSize());
-        QRect viewportRect(QPoint(0, 0), size());
-        graphicsWebView()->setGeometry(viewportRect);
-        scene()->setSceneRect(viewportRect);
-    }
-}
-
-void WebViewGraphicsBased::resizeEvent(QResizeEvent* event)
-{
-    QGraphicsView::resizeEvent(event);
-
-    QSize size(event->size());
-
-    if (m_resizesToContents) {
-        graphicsWebView()->page()->setPreferredContentsSize(size);
-        return;
-    }
-
-    QRectF rect(QPoint(0, 0), size);
-    graphicsWebView()->setGeometry(rect);
-    scene()->setSceneRect(rect);
-}
-
-void WebViewGraphicsBased::setFrameRateMeasurementEnabled(bool enabled)
-{
-    m_measureFps = enabled;
-    if (m_measureFps) {
-        m_lastConsultTime = m_startTime = QTime::currentTime();
-        m_fpsTimer.start();
-        m_updateTimer->start();
-    } else {
-        m_fpsTimer.stop();
-        m_updateTimer->stop();
-    }
-}
-
-void WebViewGraphicsBased::updateFrameRate()
-{
-    const QTime now = QTime::currentTime();
-    int interval = m_lastConsultTime.msecsTo(now);
-    int frames = m_fpsTimer.numFrames(interval);
-    int current = interval ? frames * 1000 / interval : 0;
-
-    emit currentFPSUpdated(current);
-
-    m_lastConsultTime = now;
-}
-
-void WebViewGraphicsBased::animatedFlip()
-{
-#ifndef QT_NO_ANIMATION
-    QSizeF center = graphicsWebView()->boundingRect().size() / 2;
-    QPointF centerPoint = QPointF(center.width(), center.height());
-    graphicsWebView()->setTransformOriginPoint(centerPoint);
-
-    QPropertyAnimation* animation = new QPropertyAnimation(graphicsWebView(), "rotation", this);
-    animation->setDuration(1000);
-
-    int rotation = int(graphicsWebView()->rotation());
-
-    animation->setStartValue(rotation);
-    animation->setEndValue(rotation + 180 - (rotation % 180));
-
-    animation->start(QAbstractAnimation::DeleteWhenStopped);
-#endif
-}
-
-void WebViewGraphicsBased::animatedYFlip()
-{
-#ifndef QT_NO_ANIMATION
-    if (!m_machine) {
-        m_machine = new QStateMachine(this);
-
-        QState* s0 = new QState(m_machine);
-        s0->assignProperty(this, "yRotation", 0);
-
-        QState* s1 = new QState(m_machine);
-        s1->assignProperty(this, "yRotation", 90);
-
-        QAbstractTransition* t1 = s0->addTransition(s1);
-        QPropertyAnimation* yRotationAnim = new QPropertyAnimation(this, "yRotation", this);
-        t1->addAnimation(yRotationAnim);
-
-        QState* s2 = new QState(m_machine);
-        s2->assignProperty(this, "yRotation", -90);
-        s1->addTransition(s1, SIGNAL(propertiesAssigned()), s2);
-
-        QState* s3 = new QState(m_machine);
-        s3->assignProperty(this, "yRotation", 0);
-
-        QAbstractTransition* t2 = s2->addTransition(s3);
-        t2->addAnimation(yRotationAnim);
-
-        QFinalState* final = new QFinalState(m_machine);
-        s3->addTransition(s3, SIGNAL(propertiesAssigned()), final);
-
-        m_machine->setInitialState(s0);
-        yRotationAnim->setDuration(1000);
-    }
-
-    m_machine->start();
-#endif
-}
-
-void WebViewGraphicsBased::paintEvent(QPaintEvent* event)
-{
-    QGraphicsView::paintEvent(event);
-    if (!m_measureFps)
-        return;
-}
-
-static QMenu* createContextMenu(QWebPage* page, QPoint position)
-{
-    QMenu* menu = page->createStandardContextMenu();
-
-    QWebHitTestResult r = page->mainFrame()->hitTestContent(position);
-
-    if (!r.linkUrl().isEmpty()) {
-#ifndef QT_NO_DESKTOPSERVICES
-        WebPage* webPage = qobject_cast<WebPage*>(page);
-        QAction* newTabAction = menu->addAction("Open in Default &Browser", webPage, SLOT(openUrlInDefaultBrowser()));
-        newTabAction->setData(r.linkUrl());
-        menu->insertAction(menu->actions().at(2), newTabAction);
-#endif
-        if (r.linkTargetFrame() != r.frame())
-            menu->insertAction(menu->actions().at(0), page->action(QWebPage::OpenLinkInThisWindow));
-    }
-    return menu;
-}
-
-void GraphicsWebView::mousePressEvent(QGraphicsSceneMouseEvent* event)
-{
-    setProperty("mouseButtons", QVariant::fromValue(int(event->buttons())));
-    setProperty("keyboardModifiers", QVariant::fromValue(int(event->modifiers())));
-
-    QGraphicsWebView::mousePressEvent(event);
-}
-
-void WebViewTraditional::mousePressEvent(QMouseEvent* event)
-{
-    setProperty("mouseButtons", QVariant::fromValue(int(event->buttons())));
-    setProperty("keyboardModifiers", QVariant::fromValue(int(event->modifiers())));
-
-    QWebView::mousePressEvent(event);
-}
-
-void GraphicsWebView::contextMenuEvent(QGraphicsSceneContextMenuEvent* event)
-{
-    QMenu* menu = createContextMenu(page(), event->pos().toPoint());
-    menu->exec(event->screenPos());
-    delete menu;
-}
-
-void WebViewTraditional::contextMenuEvent(QContextMenuEvent* event)
-{
-    QMenu* menu = createContextMenu(page(), event->pos());
-    menu->exec(event->globalPos());
-    delete menu;
-}
-
diff --git a/Tools/QtTestBrowser/webview.h b/Tools/QtTestBrowser/webview.h
deleted file mode 100644
index 56a6168..0000000
--- a/Tools/QtTestBrowser/webview.h
+++ /dev/null
@@ -1,131 +0,0 @@
-/*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2009 Girish Ramakrishnan <girish@forwardbias.in>
- * Copyright (C) 2006 George Staikos <staikos@kde.org>
- * Copyright (C) 2006 Dirk Mueller <mueller@kde.org>
- * Copyright (C) 2006 Zack Rusin <zack@kde.org>
- * Copyright (C) 2006 Simon Hausmann <hausmann@kde.org>
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef webview_h
-#define webview_h
-
-#include "fpstimer.h"
-#include "webpage.h"
-#include <qwebview.h>
-#include <qgraphicswebview.h>
-#include <QGraphicsView>
-#include <QGraphicsWidget>
-#include <QTime>
-
-QT_BEGIN_NAMESPACE
-class QStateMachine;
-QT_END_NAMESPACE
-
-class WebViewTraditional : public QWebView {
-    Q_OBJECT
-
-public:
-    WebViewTraditional(QWidget* parent) : QWebView(parent) {}
-
-protected:
-    virtual void contextMenuEvent(QContextMenuEvent*);
-    virtual void mousePressEvent(QMouseEvent*);
-};
-
-
-class GraphicsWebView : public QGraphicsWebView {
-    Q_OBJECT
-
-public:
-    GraphicsWebView(QGraphicsItem* parent = 0) : QGraphicsWebView(parent) {};
-
-protected:
-    virtual void contextMenuEvent(QGraphicsSceneContextMenuEvent*);
-    virtual void mousePressEvent(QGraphicsSceneMouseEvent*);
-};
-
-
-class WebViewGraphicsBased : public QGraphicsView {
-    Q_OBJECT
-    Q_PROPERTY(qreal yRotation READ yRotation WRITE setYRotation)
-
-public:
-    WebViewGraphicsBased(QWidget* parent);
-    void setPage(QWebPage* page);
-
-    void setItemCacheMode(QGraphicsItem::CacheMode mode) { graphicsWebView()->setCacheMode(mode); }
-    QGraphicsItem::CacheMode itemCacheMode() { return graphicsWebView()->cacheMode(); }
-
-    void setFrameRateMeasurementEnabled(bool enabled);
-    bool frameRateMeasurementEnabled() const { return m_measureFps; }
-
-    virtual void resizeEvent(QResizeEvent*);
-    virtual void paintEvent(QPaintEvent* event);
-
-    void setResizesToContents(bool b);
-    bool resizesToContents() const { return m_resizesToContents; }
-
-    void setYRotation(qreal angle);
-    qreal yRotation() const { return m_yRotation; }
-
-    GraphicsWebView* graphicsWebView() const { return m_item; }
-
-public Q_SLOTS:
-    void updateFrameRate();
-    void animatedFlip();
-    void animatedYFlip();
-    void contentsSizeChanged(const QSize&);
-    void scrollRequested(int, int);
-
-Q_SIGNALS:
-    void currentFPSUpdated(int fps);
-
-private:
-    GraphicsWebView* m_item;
-    int m_numPaintsTotal;
-    int m_numPaintsSinceLastMeasure;
-    QTime m_startTime;
-    QTime m_lastConsultTime;
-    QTimer* m_updateTimer;
-    bool m_measureFps;
-    qreal m_yRotation;
-    bool m_resizesToContents;
-    QStateMachine* m_machine;
-    FpsTimer m_fpsTimer;
-};
-
-inline void WebViewGraphicsBased::setYRotation(qreal angle)
-{
-    QRectF r = graphicsWebView()->boundingRect();
-    graphicsWebView()->setTransform(QTransform()
-        .translate(r.width() / 2, r.height() / 2)
-        .rotate(angle, Qt::YAxis)
-        .translate(-r.width() / 2, -r.height() / 2));
-    m_yRotation = angle;
-}
-
-#endif
diff --git a/Tools/QueueStatusServer/__init__.py b/Tools/QueueStatusServer/__init__.py
deleted file mode 100644
index ef65bee..0000000
--- a/Tools/QueueStatusServer/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-# Required for Python to search this directory for module files
diff --git a/Tools/QueueStatusServer/app.yaml b/Tools/QueueStatusServer/app.yaml
deleted file mode 100644
index be760c0..0000000
--- a/Tools/QueueStatusServer/app.yaml
+++ /dev/null
@@ -1,15 +0,0 @@
-application: webkit-commit-queue
-version: 108593 # Bugzilla bug ID of last major change
-runtime: python
-api_version: 1
-
-builtins:
-- datastore_admin: on
-- remote_api: on
-
-handlers:
-- url: /stylesheets
-  static_dir: stylesheets
-
-- url: /.*
-  script: main.py
diff --git a/Tools/QueueStatusServer/config/__init__.py b/Tools/QueueStatusServer/config/__init__.py
deleted file mode 100644
index ef65bee..0000000
--- a/Tools/QueueStatusServer/config/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-# Required for Python to search this directory for module files
diff --git a/Tools/QueueStatusServer/config/charts.py b/Tools/QueueStatusServer/config/charts.py
deleted file mode 100644
index 3e38a85..0000000
--- a/Tools/QueueStatusServer/config/charts.py
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright (C) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-patch_log_limit = 500
-
-# All units are represented numerically as seconds.
-one_minute = 60.0
-one_hour = one_minute * 60.0
-one_day = one_hour * 24.0
-one_month = one_day * 30.0
-
-# How far back to view the history, specified in seconds.
-view_range_choices = [
-    {"name": "1 day", "view_range": one_day},
-    {"name": "1 week", "view_range": one_day * 7},
-    {"name": "1 month", "view_range": one_month},
-]
-
-default_view_range = one_day
-
-_time_units = [
-    #(threshold, time unit, name)
-    (0, one_hour, "hours"),
-    (4 * one_day, one_day, "days"),
-    (3 * one_month, one_month, "months"),
-]
-
-
-def get_time_unit(view_range):
-    current_threshold, current_time_unit, current_name = _time_units[0]
-    for threshold, time_unit, name in _time_units[1:]:
-        if view_range >= threshold:
-            current_time_unit, current_name = time_unit, name
-        else:
-            break
-    return current_time_unit, current_name
diff --git a/Tools/QueueStatusServer/config/logging.py b/Tools/QueueStatusServer/config/logging.py
deleted file mode 100644
index b18b071..0000000
--- a/Tools/QueueStatusServer/config/logging.py
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright (C) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Specified in seconds
-queue_log_duration = 60 * 60
diff --git a/Tools/QueueStatusServer/config/messages.py b/Tools/QueueStatusServer/config/messages.py
deleted file mode 100644
index 96547ab..0000000
--- a/Tools/QueueStatusServer/config/messages.py
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright (C) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# These must be in sync with webkit-patch's AbstractQueue.
-pass_status = "Pass"
-fail_status = "Fail"
-retry_status = "Retry"
-error_status = "Error"
diff --git a/Tools/QueueStatusServer/config/queues.py b/Tools/QueueStatusServer/config/queues.py
deleted file mode 100644
index 99bf34f..0000000
--- a/Tools/QueueStatusServer/config/queues.py
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright (C) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Eventually the list of queues may be stored in the data store.
-all_queue_names = [
-    "commit-queue",
-    "style-queue",
-    "chromium-ews",  # aka cr-linux-ews
-    "cr-linux-debug-ews",
-    "cr-android-ews",
-    "qt-ews",
-    "qt-wk2-ews",
-    "gtk-ews",
-    "mac-ews",
-    "mac-wk2-ews",
-    "win-ews",
-    "efl-ews",
-]
diff --git a/Tools/QueueStatusServer/cron.yaml b/Tools/QueueStatusServer/cron.yaml
deleted file mode 100644
index d1b0d59..0000000
--- a/Tools/QueueStatusServer/cron.yaml
+++ /dev/null
@@ -1,8 +0,0 @@
-cron:
-- description: collect the garbage
-  url: /gc
-  schedule: every 4 hours
-
-- description: Sync new queue logs up with unchanging data
-  url: /sync-queue-logs
-  schedule: every 10 minutes
diff --git a/Tools/QueueStatusServer/filters/__init__.py b/Tools/QueueStatusServer/filters/__init__.py
deleted file mode 100644
index ef65bee..0000000
--- a/Tools/QueueStatusServer/filters/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-# Required for Python to search this directory for module files
diff --git a/Tools/QueueStatusServer/filters/webkit_extras.py b/Tools/QueueStatusServer/filters/webkit_extras.py
deleted file mode 100644
index 5b3c9b1..0000000
--- a/Tools/QueueStatusServer/filters/webkit_extras.py
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright (C) 2009 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-# 
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-# 
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import re
-
-from django.template.defaultfilters import stringfilter
-from google.appengine.ext import webapp
-
-register = webapp.template.create_template_register()
-
-bug_regexp = re.compile(r"bug (?P<bug_id>\d+)")
-patch_regexp = re.compile(r"patch (?P<patch_id>\d+)")
-
-
-@register.filter
-@stringfilter
-def webkit_linkify(value):
-    value = bug_regexp.sub(r'<a href="http://webkit.org/b/\g<bug_id>">bug \g<bug_id></a>', value)
-    value = patch_regexp.sub(r'<a href="https://bugs.webkit.org/attachment.cgi?id=\g<patch_id>&action=prettypatch">patch \g<patch_id></a>', value)
-    return value
-
-
-@register.filter
-@stringfilter
-def webkit_bug_id(value):
-    return '<a href="http://webkit.org/b/%s">%s</a>' % (value, value)
-
-
-@register.filter
-@stringfilter
-def webkit_attachment_id(value):
-    return '<a href="https://bugs.webkit.org/attachment.cgi?id=%s&action=prettypatch">%s</a>' % (value, value)
-
-
-@register.filter
-@stringfilter
-def results_link(status_id):
-    return '<a href="/results/%s">results</a>' % status_id
-
-
-@register.filter
-@stringfilter
-def queue_status_link(queue_name, text):
-    return '<a href="/queue-status/%s">%s</a>' % (queue_name, text)
-
-
-@register.filter
-@stringfilter
-def queue_charts_link(queue_name, text):
-    return '<a href="/queue-charts/%s">%s</a>' % (queue_name, text)
diff --git a/Tools/QueueStatusServer/handlers/__init__.py b/Tools/QueueStatusServer/handlers/__init__.py
deleted file mode 100644
index 296e173..0000000
--- a/Tools/QueueStatusServer/handlers/__init__.py
+++ /dev/null
@@ -1,3 +0,0 @@
-# Required for Python to search this directory for module files
-
-from handlers.updatebase import UpdateBase
diff --git a/Tools/QueueStatusServer/handlers/activebots.py b/Tools/QueueStatusServer/handlers/activebots.py
deleted file mode 100644
index 3d0b5cf..0000000
--- a/Tools/QueueStatusServer/handlers/activebots.py
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright (C) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import datetime
-import itertools
-import operator
-
-from google.appengine.ext import webapp
-from google.appengine.ext.webapp import template
-
-from model.queues import Queue
-from model import queuestatus
-
-
-class ActiveBots(webapp.RequestHandler):
-    def get(self):
-        # 2000 is the GAE record fetch limit.
-        recent_statuses = queuestatus.QueueStatus.all().order("-date").fetch(500)
-        queue_name_to_last_status = {}
-        for status in recent_statuses:
-            last_status = queue_name_to_last_status.get(status.bot_id)
-            if not last_status or status.date > last_status.date:
-                queue_name_to_last_status[status.bot_id] = status
-
-        sorted_by_bot_id = sorted(queue_name_to_last_status.values(), key=operator.attrgetter('bot_id'))
-        # Sorted is stable, so this will be sorted by bot_id, groupped by sorted queue_name.
-        sorted_by_queue_name = sorted(sorted_by_bot_id, key=operator.attrgetter('queue_name'))
-        template_values = {
-            "last_statuses": sorted_by_queue_name,
-        }
-        self.response.out.write(template.render("templates/activebots.html", template_values))
diff --git a/Tools/QueueStatusServer/handlers/dashboard.py b/Tools/QueueStatusServer/handlers/dashboard.py
deleted file mode 100644
index 660c595..0000000
--- a/Tools/QueueStatusServer/handlers/dashboard.py
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright (C) 2009 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-# 
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-# 
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import operator
-
-from google.appengine.ext import webapp
-from google.appengine.ext.webapp import template
-
-from model.attachment import Attachment
-from model.queues import Queue
-
-
-class Dashboard(webapp.RequestHandler):
-    # We may want to sort these?
-    _ordered_queues = Queue.all()
-    _header_names = [queue.short_name() for queue in _ordered_queues]
-
-    def _build_bubble(self, attachment, queue):
-        queue_status = attachment.status_for_queue(queue)
-        bubble = {
-            "status_class": attachment.state_from_queue_status(queue_status) if queue_status else "none",
-            "status_date": queue_status.date if queue_status else None,
-        }
-        return bubble
-
-    def _build_row(self, attachment):
-        row = {
-            "bug_id": attachment.bug_id(),
-            "attachment_id": attachment.id,
-            "bubbles": [self._build_bubble(attachment, queue) for queue in self._ordered_queues],
-        }
-        return row
-
-    def get(self):
-        template_values = {
-            "headers": self._header_names,
-            "rows": [self._build_row(attachment) for attachment in Attachment.recent(limit=25)],
-        }
-        self.response.out.write(template.render("templates/dashboard.html", template_values))
diff --git a/Tools/QueueStatusServer/handlers/gc.py b/Tools/QueueStatusServer/handlers/gc.py
deleted file mode 100644
index d04ee4d..0000000
--- a/Tools/QueueStatusServer/handlers/gc.py
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright (C) 2009 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-# 
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-# 
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from google.appengine.ext import webapp
-
-from model.queuestatus import QueueStatus
-
-
-class GC(webapp.RequestHandler):
-    def get(self):
-        statuses = QueueStatus.all().order("-date")
-        seen_queues = set()
-        for status in statuses:
-            if status.active_patch_id or status.active_bug_id:
-                continue
-            if status.queue_name in seen_queues:
-                status.delete()
-            seen_queues.add(status.queue_name)
-        self.response.out.write("Done!")
diff --git a/Tools/QueueStatusServer/handlers/nextpatch.py b/Tools/QueueStatusServer/handlers/nextpatch.py
deleted file mode 100644
index e5ba655..0000000
--- a/Tools/QueueStatusServer/handlers/nextpatch.py
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright (C) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from datetime import datetime
-
-from google.appengine.ext import db
-from google.appengine.ext import webapp
-
-from loggers.recordpatchevent import RecordPatchEvent
-from model.queues import Queue
-
-
-class NextPatch(webapp.RequestHandler):
-    # FIXME: This should probably be a post, or an explict lock_patch
-    # since GET requests shouldn't really modify the datastore.
-    def get(self, queue_name):
-        queue = Queue.queue_with_name(queue_name)
-        if not queue:
-            self.error(404)
-            return
-        # FIXME: Patch assignment should probably move into Queue.
-        patch_id = db.run_in_transaction(self._assign_patch, queue.active_work_items().key(), queue.work_items().item_ids)
-        if not patch_id:
-            self.error(404)
-            return
-        RecordPatchEvent.started(patch_id, queue_name)
-        self.response.out.write(patch_id)
-
-    @staticmethod
-    def _assign_patch(key, work_item_ids):
-        now = datetime.utcnow()
-        active_work_items = db.get(key)
-        active_work_items.deactivate_expired(now)
-        next_item = active_work_items.next_item(work_item_ids, now)
-        active_work_items.put()
-        return next_item
diff --git a/Tools/QueueStatusServer/handlers/patch.py b/Tools/QueueStatusServer/handlers/patch.py
deleted file mode 100644
index 3219212..0000000
--- a/Tools/QueueStatusServer/handlers/patch.py
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright (C) 2009 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-# 
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-# 
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from google.appengine.ext import webapp
-from google.appengine.ext.webapp import template
-
-from model.queuestatus import QueueStatus
-
-
-class Patch(webapp.RequestHandler):
-    def get(self, attachment_id_string):
-        attachment_id = int(attachment_id_string)
-        statuses = QueueStatus.all().filter("active_patch_id =", attachment_id).order("-date")
-
-        bug_id = None
-        queue_status = {}
-        for status in statuses:
-            bug_id = status.active_bug_id # Should be the same for every status.
-            per_queue_statuses = queue_status.get(status.queue_name, [])
-            per_queue_statuses.append(status)
-            queue_status[status.queue_name] = per_queue_statuses
-
-        template_values = {
-            "attachment_id" : attachment_id,
-            "bug_id" : bug_id,
-            "queue_status" : queue_status,
-        }
-        self.response.out.write(template.render("templates/patch.html", template_values))
diff --git a/Tools/QueueStatusServer/handlers/patchstatus.py b/Tools/QueueStatusServer/handlers/patchstatus.py
deleted file mode 100644
index 1a5422e..0000000
--- a/Tools/QueueStatusServer/handlers/patchstatus.py
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright (C) 2009 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-# 
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-# 
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from google.appengine.ext import webapp
-
-from model.queuestatus import QueueStatus
-
-
-class PatchStatus(webapp.RequestHandler):
-    def get(self, queue_name, attachment_id):
-        statuses = QueueStatus.all().filter('queue_name =', queue_name).filter('active_patch_id =', int(attachment_id)).order('-date').fetch(1)
-        if not statuses:
-            self.error(404)
-            return
-        self.response.out.write(statuses[0].message)
diff --git a/Tools/QueueStatusServer/handlers/queuecharts.py b/Tools/QueueStatusServer/handlers/queuecharts.py
deleted file mode 100644
index 6611027..0000000
--- a/Tools/QueueStatusServer/handlers/queuecharts.py
+++ /dev/null
@@ -1,151 +0,0 @@
-# Copyright (C) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import calendar
-from datetime import datetime
-import itertools
-from time import time
-
-from google.appengine.ext import webapp
-from google.appengine.ext.webapp import template
-
-from config import logging, charts
-from model.patchlog import PatchLog
-from model.queues import Queue
-from model.queuelog import QueueLog
-
-
-class QueueCharts(webapp.RequestHandler):
-    def get(self, queue_name):
-        queue_name = queue_name.lower()
-        if not Queue.queue_with_name(queue_name):
-            self.error(404)
-            return
-
-        timestamp = self._get_timestamp()
-        view_range = self._get_view_range()
-        time_unit, time_unit_name = charts.get_time_unit(view_range)
-
-        all_queue_names = map(Queue.name, Queue.all())
-
-        template_values = {
-            "all_queue_names": all_queue_names,
-            "patch_data": self._get_patch_data(queue_name, timestamp, view_range),
-            "queue_data": self._get_queue_data(queue_name, timestamp, view_range),
-            "queue_name": queue_name,
-            "seconds_ago_min": 0,
-            "seconds_ago_max": view_range,
-            "time_unit_name": time_unit_name,
-            "time_unit": time_unit,
-            "timestamp": timestamp,
-            "view_range": view_range,
-            "view_range_choices": charts.view_range_choices,
-        }
-        self.response.out.write(template.render("templates/queuecharts.html", template_values))
-
-    @classmethod
-    def _get_min_med_max(cls, values, defaults=(0, 0, 0)):
-        if not values:
-            return defaults
-        length = len(values)
-        sorted_values = sorted(values)
-        return sorted_values[0], sorted_values[length / 2], sorted_values[length - 1]
-
-    def _get_patch_data(self, queue_name, timestamp, view_range):
-        patch_logs = self._get_patch_logs(queue_name, timestamp, view_range)
-        patch_data = []
-        for patch_log in patch_logs:
-            if patch_log.process_duration and patch_log.wait_duration:
-                patch_log_timestamp = calendar.timegm(patch_log.date.utctimetuple())
-                patch_data.append({
-                    "attachment_id": patch_log.attachment_id,
-                    "seconds_ago": timestamp - patch_log_timestamp,
-                    "process_duration": patch_log.process_duration / charts.one_minute,
-                    "retry_count": patch_log.retry_count,
-                    "status_update_count": patch_log.status_update_count,
-                    "wait_duration": patch_log.wait_duration / charts.one_minute,
-               })
-        return patch_data
-
-    def _get_patch_logs(self, queue_name, timestamp, view_range):
-        patch_log_query = PatchLog.all()
-        patch_log_query = patch_log_query.filter("queue_name =", queue_name)
-        patch_log_query = patch_log_query.filter("date >=", datetime.utcfromtimestamp(timestamp - view_range))
-        patch_log_query = patch_log_query.filter("date <=", datetime.utcfromtimestamp(timestamp))
-        patch_log_query = patch_log_query.order("date")
-        return patch_log_query.run(limit=charts.patch_log_limit)
-
-    def _get_queue_data(self, queue_name, timestamp, view_range):
-        queue_logs = self._get_queue_logs(queue_name, timestamp, view_range)
-        queue_data = []
-        for queue_log in queue_logs:
-            queue_log_timestamp = calendar.timegm(queue_log.date.utctimetuple())
-            p_min, p_med, p_max = self._get_min_med_max(queue_log.patch_process_durations)
-            w_min, w_med, w_max = self._get_min_med_max(queue_log.patch_wait_durations)
-            queue_data.append({
-                "bots_seen": len(queue_log.bot_ids_seen),
-                "seconds_ago": timestamp - queue_log_timestamp,
-                "patch_processing_min": p_min,
-                "patch_processing_med": p_med,
-                "patch_processing_max": p_max,
-                "patch_retry_count": queue_log.patch_retry_count,
-                "patch_waiting_min": w_min,
-                "patch_waiting_med": w_med,
-                "patch_waiting_max": w_max,
-                "patches_completed": len(queue_log.patch_process_durations),
-                "patches_waiting": queue_log.max_patches_waiting,
-                "status_update_count": queue_log.status_update_count,
-            })
-        return queue_data
-
-    def _get_queue_logs(self, queue_name, timestamp, view_range):
-        queue_logs = []
-        current_timestamp = timestamp - view_range
-        while current_timestamp <= timestamp:
-            queue_logs.append(QueueLog.get_at(queue_name, logging.queue_log_duration, current_timestamp))
-            current_timestamp += logging.queue_log_duration
-        return queue_logs
-
-    @classmethod
-    def _get_time_unit(cls, view_range):
-        if view_range > charts.one_day * 2:
-            return 
-
-    def _get_timestamp(self):
-        timestamp = self.request.get("timestamp")
-        try:
-            return int(timestamp)
-        except ValueError:
-            return int(time())
-
-    def _get_view_range(self):
-        view_range = self.request.get("view_range")
-        try:
-            return int(view_range)
-        except ValueError:
-            return charts.default_view_range
diff --git a/Tools/QueueStatusServer/handlers/queuestatus.py b/Tools/QueueStatusServer/handlers/queuestatus.py
deleted file mode 100644
index 4f4e2d2..0000000
--- a/Tools/QueueStatusServer/handlers/queuestatus.py
+++ /dev/null
@@ -1,117 +0,0 @@
-# Copyright (C) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import datetime
-import itertools
-
-from google.appengine.ext import webapp
-from google.appengine.ext.webapp import template
-
-from model.queues import Queue
-from model import queuestatus
-
-
-class QueueStatus(webapp.RequestHandler):
-    def _rows_for_work_items(self, queue):
-        queued_items = queue.work_items()
-        active_items = queue.active_work_items()
-        if not queued_items:
-            return []
-        rows = []
-        for item_id in queued_items.item_ids:
-            rows.append({
-                "attachment_id": item_id,
-                "bug_id": 1,
-                "lock_time": active_items and active_items.time_for_item(item_id),
-            })
-        return rows
-
-    def _grouping_key_for_status(self, status):
-        return "%s-%s" % (status.active_patch_id, status.bot_id)
-
-    def _build_status_groups(self, statuses):
-        return [list(group) for key, group in itertools.groupby(statuses, self._grouping_key_for_status)]
-
-    def _fetch_statuses(self, queue, bot_id):
-        statuses = queuestatus.QueueStatus.all()
-        statuses.filter("queue_name =", queue.name())
-        if bot_id:
-            statuses.filter("bot_id =", bot_id)
-        return statuses.order("-date").fetch(15)
-
-    def _fetch_last_message_matching(self, queue, bot_id, message):
-        statuses = queuestatus.QueueStatus.all()
-        statuses.filter("queue_name =", queue.name())
-        if bot_id:
-            statuses.filter("bot_id =", bot_id)
-        statuses.filter("message =", message)
-        return statuses.order("-date").get()
-
-    def _fetch_trailing_days_pass_count(self, queue, bot_id, days):
-        statuses = queuestatus.QueueStatus.all()
-        statuses.filter("queue_name =", queue.name())
-        days_ago = datetime.datetime.now() - datetime.timedelta(days=days)
-        statuses.filter("date >", days_ago)
-        if bot_id:
-            statuses.filter("bot_id =", bot_id)
-        statuses.filter("message =", "Pass")
-        return statuses.count()
-
-    def _fetch_trailing_days_pass_count_string(self, queue, bot_id, days):
-        status_count = self._fetch_trailing_days_pass_count(queue, bot_id, days)
-        # GQL has a result limit of 1000, so we return a special string to indicate we hit that limit.
-        if status_count == 1000:
-            status_count = "1000+"
-        return str(status_count)
-
-    def _page_title(self, queue, bot_id):
-        title = "%s Messages" % queue.display_name()
-        if bot_id:
-            title += " from \"%s\"" % (bot_id)
-        return title
-
-    def get(self, queue_name, bot_id=None):
-        queue_name = queue_name.lower()
-        queue = Queue.queue_with_name(queue_name)
-        if not queue:
-            self.error(404)
-            return
-
-        statuses = self._fetch_statuses(queue, bot_id)
-        template_values = {
-            "queue_name": queue_name,
-            "page_title": self._page_title(queue, bot_id),
-            "work_item_rows": self._rows_for_work_items(queue),
-            "status_groups": self._build_status_groups(statuses),
-            "bot_id": bot_id,
-            "last_pass": self._fetch_last_message_matching(queue, bot_id, "Pass"),
-            "last_boot": self._fetch_last_message_matching(queue, bot_id, "Starting Queue"),
-            "trailing_month_pass_count": self._fetch_trailing_days_pass_count_string(queue, bot_id, 30),
-            "trailing_week_pass_count": self._fetch_trailing_days_pass_count_string(queue, bot_id, 7),
-        }
-        self.response.out.write(template.render("templates/queuestatus.html", template_values))
diff --git a/Tools/QueueStatusServer/handlers/queuestatus_unittest.py b/Tools/QueueStatusServer/handlers/queuestatus_unittest.py
deleted file mode 100644
index a5ae844..0000000
--- a/Tools/QueueStatusServer/handlers/queuestatus_unittest.py
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright (C) 2010 Google, Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#    * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#    * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#    * Neither the name of Research in Motion Ltd. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import unittest
-
-from handlers.queuestatus import QueueStatus
-from model.queues import Queue
-
-
-class MockStatus(object):
-    def __init__(self, patch_id, bot_id):
-        self.active_patch_id = patch_id
-        self.bot_id = bot_id
-
-
-class QueueStatusTest(unittest.TestCase):
-    def test_build_status_groups(self):
-        queue_status = QueueStatus()
-        statuses = [
-            MockStatus(1, "foo"),
-            MockStatus(1, "foo"),
-            MockStatus(2, "foo"),
-            MockStatus(1, "foo"),
-            MockStatus(1, "bar"),
-            MockStatus(1, "foo"),
-        ]
-        groups = queue_status._build_status_groups(statuses)
-        self.assertEqual(len(groups), 5)
-        self.assertEqual(groups[0], statuses[0:2])
-        self.assertEqual(groups[1], statuses[2:3])
-        self.assertEqual(groups[2], statuses[3:4])
-        self.assertEqual(groups[3], statuses[4:5])
-        self.assertEqual(groups[4], statuses[5:6])
-
-
-if __name__ == '__main__':
-    unittest.main()
diff --git a/Tools/QueueStatusServer/handlers/recentstatus.py b/Tools/QueueStatusServer/handlers/recentstatus.py
deleted file mode 100644
index fddc93a..0000000
--- a/Tools/QueueStatusServer/handlers/recentstatus.py
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright (C) 2009 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-# 
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-# 
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import datetime
-
-from google.appengine.ext import webapp
-from google.appengine.ext.webapp import template
-
-from model.queues import Queue
-from model.queuestatus import QueueStatus
-from model.workitems import WorkItems
-
-
-class QueueBubble(object):
-    """View support class for recentstatus.html"""
-    def __init__(self, queue):
-        self._queue = queue
-        self._work_items = queue.work_items()
-        self._last_status = QueueStatus.all().filter("queue_name =", queue.name()).order("-date").get()
-
-    # FIXME: name and display_name should be replaced by a .queue() accessor.
-    def name(self):
-        return self._queue.name()
-
-    def display_name(self):
-        return self._queue.display_name()
-
-    def _last_status_date(self):
-        if not self._last_status:
-            return None
-        return self._last_status.date
-
-    def last_heard_from(self):
-        if not self._work_items:
-            return self._last_status_date()
-        return max(self._last_status_date(), self._work_items.date)
-
-    def is_alive(self):
-        if not self.last_heard_from():
-            return False
-        return self.last_heard_from() > (datetime.datetime.now() - datetime.timedelta(minutes=30))
-
-    def status_class(self):
-        if not self.is_alive():
-            return "dead"
-        if self.pending_items_count() > 1:
-            return "behind"
-        return "alive"
-
-    def status_text(self):
-        if not self._work_items:
-            return "Offline"
-        if not self._work_items.item_ids:
-            return "Idle"
-        return self._last_status.message
-
-    def pending_items_count(self):
-        if not self._work_items:
-            return 0
-        return len(self._work_items.item_ids)
-
-
-class QueuesOverview(webapp.RequestHandler):
-
-    def get(self):
-        template_values = {
-            "queues": [QueueBubble(queue) for queue in Queue.all()],
-        }
-        self.response.out.write(template.render("templates/recentstatus.html", template_values))
diff --git a/Tools/QueueStatusServer/handlers/releasepatch.py b/Tools/QueueStatusServer/handlers/releasepatch.py
deleted file mode 100644
index 88f46b0..0000000
--- a/Tools/QueueStatusServer/handlers/releasepatch.py
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright (C) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from google.appengine.ext import webapp, db
-from google.appengine.ext.webapp import template
-
-from handlers.updatebase import UpdateBase
-from loggers.recordpatchevent import RecordPatchEvent
-from model.attachment import Attachment
-from model.queues import Queue
-
-
-class ReleasePatch(UpdateBase):
-    def get(self):
-        self.response.out.write(template.render("templates/releasepatch.html", None))
-
-    def post(self):
-        queue_name = self.request.get("queue_name")
-        # FIXME: This queue lookup should be shared between handlers.
-        queue = Queue.queue_with_name(queue_name)
-        if not queue:
-            self.error(404)
-            return
-
-        attachment_id = self._int_from_request("attachment_id")
-        attachment = Attachment(attachment_id)
-        last_status = attachment.status_for_queue(queue)
-
-        # Ideally we should use a transaction for the calls to
-        # WorkItems and ActiveWorkItems.
-
-        # Only remove it from the queue if the last message is not a retry request.
-        # Allow removing it from the queue even if there is no last_status for easier testing.
-        if not last_status or not last_status.is_retry_request():
-            queue.work_items().remove_work_item(attachment_id)
-            RecordPatchEvent.stopped(attachment_id, queue_name)
-        else:
-            RecordPatchEvent.retrying(attachment_id, queue_name)
-
-        # Always release the lock on the item.
-        queue.active_work_items().expire_item(attachment_id)
diff --git a/Tools/QueueStatusServer/handlers/showresults.py b/Tools/QueueStatusServer/handlers/showresults.py
deleted file mode 100644
index e4cb71b..0000000
--- a/Tools/QueueStatusServer/handlers/showresults.py
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright (C) 2009 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-# 
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-# 
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from google.appengine.ext import webapp
-
-from model.queuestatus import QueueStatus
-
-
-class ShowResults(webapp.RequestHandler):
-    def get(self, status_id):
-        status = QueueStatus.get_by_id(int(status_id))
-        if not status:
-            self.error(404)
-            return
-        self.response.headers["Content-Type"] = "text/plain; charset=utf-8"
-        self.response.out.write(status.results_file)
diff --git a/Tools/QueueStatusServer/handlers/statusbubble.py b/Tools/QueueStatusServer/handlers/statusbubble.py
deleted file mode 100644
index c6ba916..0000000
--- a/Tools/QueueStatusServer/handlers/statusbubble.py
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright (C) 2009 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-# 
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-# 
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import operator
-
-from google.appengine.ext import webapp
-from google.appengine.ext.webapp import template
-
-from model.attachment import Attachment
-from model.workitems import WorkItems
-from model.queues import Queue
-
-
-class StatusBubble(webapp.RequestHandler):
-    def _build_bubble(self, queue, attachment, queue_position):
-        queue_status = attachment.status_for_queue(queue)
-        bubble = {
-            "name": queue.short_name().lower(),
-            "attachment_id": attachment.id,
-            "queue_position": queue_position,
-            "state": attachment.state_from_queue_status(queue_status) if queue_status else "none",
-            "status": queue_status,
-        }
-        return bubble
-
-    def _have_status_for(self, attachment, queue):
-        # Any pending queue is shown.
-        if attachment.position_in_queue(queue):
-            return True
-        # Complete ewses are also shown.
-        return bool(queue.is_ews() and attachment.status_for_queue(queue))
-
-    def _build_bubbles_for_attachment(self, attachment):
-        show_submit_to_ews = True
-        bubbles = []
-        for queue in Queue.all():
-            if not self._have_status_for(attachment, queue):
-                continue
-            queue_position = attachment.position_in_queue(queue)
-            if queue_position and queue_position >= 100:
-                # This queue is so far behind it's not even worth showing.
-                continue
-            bubbles.append(self._build_bubble(queue, attachment, queue_position))
-            # If even one ews has status, we don't show the submit-to-ews button.
-            if queue.is_ews():
-                show_submit_to_ews = False
-
-        return (bubbles, show_submit_to_ews)
-
-    def get(self, attachment_id_string):
-        attachment_id = int(attachment_id_string)
-        attachment = Attachment(attachment_id)
-        bubbles, show_submit_to_ews = self._build_bubbles_for_attachment(attachment)
-
-        template_values = {
-            "bubbles": bubbles,
-            "attachment_id": attachment_id,
-            "show_submit_to_ews": show_submit_to_ews,
-        }
-        self.response.out.write(template.render("templates/statusbubble.html", template_values))
diff --git a/Tools/QueueStatusServer/handlers/statusbubble_unittest.py b/Tools/QueueStatusServer/handlers/statusbubble_unittest.py
deleted file mode 100644
index 0823207..0000000
--- a/Tools/QueueStatusServer/handlers/statusbubble_unittest.py
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright (C) 2010 Google, Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#    * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#    * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#    * Neither the name of Research in Motion Ltd. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import unittest
-
-
-from handlers.statusbubble import StatusBubble
-from model.queues import Queue
-
-
-class MockAttachment(object):
-    def __init__(self):
-        self.id = 1
-
-    def status_for_queue(self, queue):
-        return None
-
-    def position_in_queue(self, queue):
-        return 1
-
-
-class StatusBubbleTest(unittest.TestCase):
-    def test_build_bubble(self):
-        bubble = StatusBubble()
-        queue = Queue("mac-ews")
-        attachment = MockAttachment()
-        bubble_dict = bubble._build_bubble(queue, attachment, 1)
-        # FIXME: assertDictEqual (in Python 2.7) would be better to use here.
-        self.assertEqual(bubble_dict["name"], "mac")
-        self.assertEqual(bubble_dict["attachment_id"], 1)
-        self.assertEqual(bubble_dict["queue_position"], 1)
-        self.assertEqual(bubble_dict["state"], "none")
-        self.assertEqual(bubble_dict["status"], None)
-
-
-if __name__ == '__main__':
-    unittest.main()
diff --git a/Tools/QueueStatusServer/handlers/submittoews.py b/Tools/QueueStatusServer/handlers/submittoews.py
deleted file mode 100644
index f7669d2..0000000
--- a/Tools/QueueStatusServer/handlers/submittoews.py
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright (C) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from google.appengine.ext import webapp, db
-from google.appengine.ext.webapp import template
-
-from handlers.updatebase import UpdateBase
-from loggers.recordpatchevent import RecordPatchEvent
-from model.attachment import Attachment
-from model.queues import Queue
-
-
-class SubmitToEWS(UpdateBase):
-    def get(self):
-        self.response.out.write(template.render("templates/submittoews.html", None))
-
-    def _should_add_to_ews_queue(self, queue, attachment):
-        # This assert() is here to make sure we're not submitting to the commit-queue.
-        # The commit-queue clients check each patch anyway, but there is not sense
-        # in adding things to the commit-queue when they won't be processed by it.
-        assert(queue.is_ews())
-        latest_status = attachment.status_for_queue(queue)
-        if not latest_status:
-            return True
-        # Only ever re-submit to the EWS if the EWS specifically requested a retry.
-        # This allows us to restart the EWS feeder queue, without all r? patches
-        # being retried as a result of that restart!
-        # In some future version we might add a "force" button to allow the user
-        # to override this restriction.
-        return latest_status.is_retry_request()
-
-    def _add_attachment_to_ews_queues(self, attachment):
-        for queue in Queue.all_ews():  # all_ews() currently includes the style-queue
-            if self._should_add_to_ews_queue(queue, attachment):
-                queue.work_items().add_work_item(attachment.id)
-                RecordPatchEvent.added(attachment.id, queue.name())
-
-    def post(self):
-        attachment_id = self._int_from_request("attachment_id")
-        attachment = Attachment(attachment_id)
-        self._add_attachment_to_ews_queues(attachment)
-        if self.request.get("next_action") == "return_to_bubbles":
-            self.redirect("/status-bubble/%s" % attachment_id)
diff --git a/Tools/QueueStatusServer/handlers/svnrevision.py b/Tools/QueueStatusServer/handlers/svnrevision.py
deleted file mode 100644
index 36eab33..0000000
--- a/Tools/QueueStatusServer/handlers/svnrevision.py
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright (C) 2009 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-# 
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-# 
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from google.appengine.ext import webapp
-
-import model
-
-
-class SVNRevision(webapp.RequestHandler):
-    def get(self, svn_revision_number):
-        svn_revisions = model.SVNRevision.all().filter('number =', int(svn_revision_number)).order('-date').fetch(1)
-        if not svn_revisions:
-            self.error(404)
-            return
-        self.response.out.write(svn_revisions[0].to_xml())
diff --git a/Tools/QueueStatusServer/handlers/syncqueuelogs.py b/Tools/QueueStatusServer/handlers/syncqueuelogs.py
deleted file mode 100644
index e2a55f9..0000000
--- a/Tools/QueueStatusServer/handlers/syncqueuelogs.py
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright (C) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from google.appengine.ext import webapp
-
-from config.queues import all_queue_names
-from config.logging import queue_log_duration
-from model.queuelog import QueueLog
-
-
-class SyncQueueLogs(webapp.RequestHandler):
-    def get(self):
-        for queue_name in all_queue_names:
-            queue_log = QueueLog.get_current(queue_name, queue_log_duration)
-            if queue_log.update_max_patches_waiting():
-                queue_log.put()
-        self.response.out.write("Done!")
diff --git a/Tools/QueueStatusServer/handlers/updatebase.py b/Tools/QueueStatusServer/handlers/updatebase.py
deleted file mode 100644
index b087e83..0000000
--- a/Tools/QueueStatusServer/handlers/updatebase.py
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright (C) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-# 
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-# 
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from google.appengine.api import users
-from google.appengine.ext import webapp, db
-
-
-class UpdateBase(webapp.RequestHandler):
-    def _int_from_request(self, name):
-        string_value = self.request.get(name)
-        try:
-            int_value = int(string_value)
-            return int_value
-        except ValueError, TypeError:
-            pass
-        return None
diff --git a/Tools/QueueStatusServer/handlers/updatestatus.py b/Tools/QueueStatusServer/handlers/updatestatus.py
deleted file mode 100644
index b02e987..0000000
--- a/Tools/QueueStatusServer/handlers/updatestatus.py
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright (C) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-# 
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-# 
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from google.appengine.api import users
-from google.appengine.ext import webapp, db
-from google.appengine.ext.webapp import template
-
-from handlers.updatebase import UpdateBase
-from loggers.recordbotevent import RecordBotEvent
-from loggers.recordpatchevent import RecordPatchEvent
-from model.attachment import Attachment
-from model.queuestatus import QueueStatus
-
-
-class UpdateStatus(UpdateBase):
-    def get(self):
-        self.response.out.write(template.render("templates/updatestatus.html", None))
-
-    def _queue_status_from_request(self):
-        queue_status = QueueStatus()
-
-        # FIXME: I think this can be removed, no one uses it.
-        if users.get_current_user():
-            queue_status.author = users.get_current_user()
-
-        bug_id = self._int_from_request("bug_id")
-        patch_id = self._int_from_request("patch_id")
-        queue_name = self.request.get("queue_name")
-        bot_id = self.request.get("bot_id")
-        queue_status.queue_name = queue_name
-        queue_status.bot_id = bot_id
-        queue_status.active_bug_id = bug_id
-        queue_status.active_patch_id = patch_id
-        queue_status.message = self.request.get("status")
-        results_file = self.request.get("results_file")
-        queue_status.results_file = db.Blob(str(results_file))
-        return queue_status
-
-    def post(self):
-        queue_status = self._queue_status_from_request()
-        queue_status.put()
-        RecordBotEvent.record_activity(queue_status.queue_name, queue_status.bot_id)
-        if queue_status.active_patch_id:
-            RecordPatchEvent.updated(queue_status.active_patch_id, queue_status.queue_name, queue_status.bot_id)
-        self.response.out.write(queue_status.key().id())
diff --git a/Tools/QueueStatusServer/handlers/updatesvnrevision.py b/Tools/QueueStatusServer/handlers/updatesvnrevision.py
deleted file mode 100644
index 075982a..0000000
--- a/Tools/QueueStatusServer/handlers/updatesvnrevision.py
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright (C) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-# 
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-# 
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from google.appengine.ext import webapp, db
-from google.appengine.ext.webapp import template
-
-import handlers
-import model
-
-
-class UpdateSVNRevision(handlers.UpdateBase):
-    def get(self):
-        self.response.out.write(template.render("templates/updatesvnrevision.html", None))
-
-    def post(self):
-        svn_revision_number = self._int_from_request("number")
-
-        svn_revisions = model.SVNRevision.all().filter('number =', svn_revision_number).order('-date').fetch(1)
-        svn_revision = None
-        if svn_revisions:
-            svn_revision = svn_revisions[0]
-        else:
-            svn_revision = model.SVNRevision()
-            svn_revision.number = svn_revision_number
-        svn_revision.broken_bots.append(self.request.get("broken_bot"))
-        svn_revision.put()
-
-        self.response.out.write(svn_revision.key().id())
diff --git a/Tools/QueueStatusServer/handlers/updateworkitems.py b/Tools/QueueStatusServer/handlers/updateworkitems.py
deleted file mode 100644
index 6b3dded..0000000
--- a/Tools/QueueStatusServer/handlers/updateworkitems.py
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright (C) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from google.appengine.ext import webapp, db
-from google.appengine.ext.webapp import template
-
-from handlers.updatebase import UpdateBase
-from loggers.recordpatchevent import RecordPatchEvent
-from model.queues import Queue
-from model.workitems import WorkItems
-
-from datetime import datetime
-
-
-class UpdateWorkItems(UpdateBase):
-    def get(self):
-        self.response.out.write(template.render("templates/updateworkitems.html", None))
-
-    def _parse_work_items_string(self, items_string):
-        try:
-            item_strings = items_string.split(" ") if items_string else []
-            return map(int, item_strings)
-        except ValueError:
-            return None
-
-    def _update_work_items_from_request(self, work_items):
-        items_string = self.request.get("work_items")
-        new_work_items = self._parse_work_items_string(items_string)
-        if new_work_items == None:
-            self.response.out.write("Failed to parse work items: %s" % items_string)
-            return False
-        work_items.item_ids = new_work_items
-        work_items.date = datetime.utcnow()
-        return True
-
-    def _queue_from_request(self):
-        queue_name = self.request.get("queue_name")
-        queue = Queue.queue_with_name(queue_name)
-        if not queue:
-            self.response.out.write("\"%s\" is not in queues %s" % (queue_name, Queue.all()))
-            return None
-        return queue
-
-    def post(self):
-        queue = self._queue_from_request()
-        if not queue:
-            self.response.set_status(500)
-            return
-        work_items = queue.work_items()
-        old_items = set(work_items.item_ids)
-
-        success = self._update_work_items_from_request(work_items)
-        if not success:
-            self.response.set_status(500)
-            return
-        new_items = set(work_items.item_ids)
-        work_items.put()
-
-        for work_item in new_items - old_items:
-            RecordPatchEvent.added(work_item, queue.name())
-        for work_item in old_items - new_items:
-            RecordPatchEvent.stopped(work_item, queue.name())
diff --git a/Tools/QueueStatusServer/index.yaml b/Tools/QueueStatusServer/index.yaml
deleted file mode 100644
index 694f77b..0000000
--- a/Tools/QueueStatusServer/index.yaml
+++ /dev/null
@@ -1,74 +0,0 @@
-indexes:
-
-# AUTOGENERATED
-
-# This index.yaml is automatically updated whenever the dev_appserver
-# detects that a new type of query is run.  If you want to manage the
-# index.yaml file manually, remove the above marker line (the line
-# saying "# AUTOGENERATED").  If you want to manage some indexes
-# manually, move them above the marker line.  The index.yaml file is
-# automatically uploaded to the admin console when you next deploy
-# your application using appcfg.py.
-
-- kind: PatchLog
-  properties:
-  - name: queue_name
-  - name: date
-
-- kind: QueueStatus
-  properties:
-  - name: active_patch_id
-  - name: date
-    direction: desc
-
-- kind: QueueStatus
-  properties:
-  - name: active_patch_id
-  - name: queue_name
-  - name: date
-    direction: desc
-
-- kind: QueueStatus
-  properties:
-  - name: bot_id
-  - name: message
-  - name: queue_name
-  - name: date
-    direction: desc
-
-- kind: QueueStatus
-  properties:
-  - name: bot_id
-  - name: queue_name
-  - name: date
-    direction: desc
-
-- kind: QueueStatus
-  properties:
-  - name: message
-  - name: queue_name
-  - name: date
-
-- kind: QueueStatus
-  properties:
-  - name: message
-  - name: queue_name
-  - name: date
-    direction: desc
-
-- kind: QueueStatus
-  properties:
-  - name: queue_name
-  - name: date
-
-- kind: QueueStatus
-  properties:
-  - name: queue_name
-  - name: date
-    direction: desc
-
-- kind: SVNRevision
-  properties:
-  - name: number
-  - name: date
-    direction: desc
diff --git a/Tools/QueueStatusServer/loggers/__init__.py b/Tools/QueueStatusServer/loggers/__init__.py
deleted file mode 100644
index ef65bee..0000000
--- a/Tools/QueueStatusServer/loggers/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-# Required for Python to search this directory for module files
diff --git a/Tools/QueueStatusServer/loggers/recordbotevent.py b/Tools/QueueStatusServer/loggers/recordbotevent.py
deleted file mode 100644
index cb0e224..0000000
--- a/Tools/QueueStatusServer/loggers/recordbotevent.py
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright (C) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from config.logging import queue_log_duration
-from model.queuelog import QueueLog
-
-
-class RecordBotEvent(object):
-    @classmethod
-    def record_activity(cls, queue_name, bot_id):
-        queue_log = QueueLog.get_current(queue_name, queue_log_duration)
-        if queue_log and bot_id not in queue_log.bot_ids_seen:
-            queue_log.bot_ids_seen.append(bot_id)
-            queue_log.put()
diff --git a/Tools/QueueStatusServer/loggers/recordpatchevent.py b/Tools/QueueStatusServer/loggers/recordpatchevent.py
deleted file mode 100644
index 08c57cd..0000000
--- a/Tools/QueueStatusServer/loggers/recordpatchevent.py
+++ /dev/null
@@ -1,114 +0,0 @@
-# Copyright (C) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from config.logging import queue_log_duration
-from model.patchlog import PatchLog
-from model.queuelog import QueueLog
-from model.warninglog import WarningLog
-
-
-class RecordPatchEvent(object):
-    @classmethod
-    def added(cls, attachment_id, queue_name):
-        PatchLog.lookup(attachment_id, queue_name)
-        queue_log = QueueLog.get_current(queue_name, queue_log_duration)
-        if queue_log.update_max_patches_waiting():
-            queue_log.put()
-
-    @classmethod
-    def retrying(cls, attachment_id, queue_name, bot_id=None):
-        patch_log = PatchLog.lookup_if_exists(attachment_id, queue_name)
-        if not patch_log:
-            WarningLog.record("patchlog missing", "In retrying event.", attachment_id, queue_name, bot_id)
-            return
-
-        if bot_id:
-            patch_log.bot_id = bot_id
-        patch_log.retry_count += 1
-        patch_log.put()
-
-        queue_log = QueueLog.get_current(queue_name, queue_log_duration)
-        queue_log.patch_retry_count += 1
-        queue_log.put()
-
-    @classmethod
-    def started(cls, attachment_id, queue_name, bot_id=None):
-        patch_log = PatchLog.lookup_if_exists(attachment_id, queue_name)
-        if not patch_log:
-            WarningLog.record("patchlog missing", "In started event.", attachment_id, queue_name, bot_id)
-            return
-
-        # An existing wait_duration implies the patch had been started previously and is being picked up again because it had expired.
-        if not patch_log.wait_duration:
-            if bot_id:
-                patch_log.bot_id = bot_id
-            patch_log.calculate_wait_duration()
-            patch_log.put()
-
-            queue_log = QueueLog.get_current(queue_name, queue_log_duration)
-            queue_log.patch_wait_durations.append(patch_log.wait_duration)
-            queue_log.put()
-
-    @classmethod
-    def stopped(cls, attachment_id, queue_name, bot_id=None):
-        patch_log = PatchLog.lookup_if_exists(attachment_id, queue_name)
-        if not patch_log:
-            WarningLog.record("patchlog missing", "In stopped event.", attachment_id, queue_name, bot_id)
-            return
-
-        if not patch_log.wait_duration:
-            WarningLog.record("patchlog wait duration missing", "In stopped event.", attachment_id, queue_name, bot_id)
-            return
-
-        if not patch_log.finished:
-            if bot_id:
-                patch_log.bot_id = bot_id
-            patch_log.finished = True
-            patch_log.calculate_process_duration()
-            patch_log.put()
-
-            queue_log = QueueLog.get_current(queue_name, queue_log_duration)
-            queue_log.patch_process_durations.append(patch_log.process_duration)
-            queue_log.put()
-
-    @classmethod
-    def updated(cls, attachment_id, queue_name, bot_id=None):
-        patch_log = PatchLog.lookup_if_exists(attachment_id, queue_name)
-        if not patch_log:
-            WarningLog.record("patchlog missing", "In updated event.", attachment_id, queue_name, bot_id)
-            return
-
-        if bot_id:
-            patch_log.bot_id = bot_id
-        patch_log.status_update_count += 1
-        patch_log.put()
-
-        queue_log = QueueLog.get_current(queue_name, queue_log_duration)
-        queue_log.status_update_count += 1
-        queue_log.put()
-
diff --git a/Tools/QueueStatusServer/main.py b/Tools/QueueStatusServer/main.py
deleted file mode 100644
index a626f83..0000000
--- a/Tools/QueueStatusServer/main.py
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright (C) 2009 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-# 
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-# 
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Request a modern Django
-from google.appengine.dist import use_library
-use_library('django', '1.2')  # Must agree with __init.py__
-
-from google.appengine.ext import webapp
-from google.appengine.ext.webapp.util import run_wsgi_app
-
-from handlers.activebots import ActiveBots
-from handlers.dashboard import Dashboard
-from handlers.gc import GC
-from handlers.nextpatch import NextPatch
-from handlers.patch import Patch
-from handlers.patchstatus import PatchStatus
-from handlers.queuecharts import QueueCharts
-from handlers.queuestatus import QueueStatus
-from handlers.recentstatus import QueuesOverview
-from handlers.releasepatch import ReleasePatch
-from handlers.showresults import ShowResults
-from handlers.statusbubble import StatusBubble
-from handlers.submittoews import SubmitToEWS
-from handlers.svnrevision import SVNRevision
-from handlers.syncqueuelogs import SyncQueueLogs
-from handlers.updatestatus import UpdateStatus
-from handlers.updatesvnrevision import UpdateSVNRevision
-from handlers.updateworkitems import UpdateWorkItems
-
-
-webapp.template.register_template_library('filters.webkit_extras')
-
-routes = [
-    ('/', QueuesOverview),
-    ('/dashboard', Dashboard),
-    ('/gc', GC),
-    ('/sync-queue-logs', SyncQueueLogs),
-    (r'/patch-status/(.*)/(.*)', PatchStatus),
-    (r'/patch/(.*)', Patch),
-    (r'/submit-to-ews', SubmitToEWS),
-    (r'/results/(.*)', ShowResults),
-    (r'/status-bubble/(.*)', StatusBubble),
-    (r'/svn-revision/(.*)', SVNRevision),
-    (r'/queue-charts/(.*)', QueueCharts),
-    (r'/queue-status/(.*)/bots/(.*)', QueueStatus),
-    (r'/queue-status/(.*)', QueueStatus),
-    (r'/next-patch/(.*)', NextPatch),
-    (r'/release-patch', ReleasePatch),
-    ('/update-status', UpdateStatus),
-    ('/update-work-items', UpdateWorkItems),
-    ('/update-svn-revision', UpdateSVNRevision),
-    ('/active-bots', ActiveBots),
-]
-
-application = webapp.WSGIApplication(routes, debug=True)
-
-def main():
-    run_wsgi_app(application)
-
-if __name__ == "__main__":
-    main()
diff --git a/Tools/QueueStatusServer/model/__init__.py b/Tools/QueueStatusServer/model/__init__.py
deleted file mode 100644
index 1eaa044..0000000
--- a/Tools/QueueStatusServer/model/__init__.py
+++ /dev/null
@@ -1,3 +0,0 @@
-# Required for Python to search this directory for module files
-
-from model.svnrevision import SVNRevision
diff --git a/Tools/QueueStatusServer/model/activeworkitems.py b/Tools/QueueStatusServer/model/activeworkitems.py
deleted file mode 100644
index 023258a..0000000
--- a/Tools/QueueStatusServer/model/activeworkitems.py
+++ /dev/null
@@ -1,97 +0,0 @@
-# Copyright (C) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from google.appengine.ext import db
-
-from datetime import timedelta, datetime
-import time
-
-from model.queuepropertymixin import QueuePropertyMixin
-
-
-class ActiveWorkItems(db.Model, QueuePropertyMixin):
-    queue_name = db.StringProperty()
-    item_ids = db.ListProperty(int)
-    item_dates = db.ListProperty(float)
-    date = db.DateTimeProperty(auto_now_add=True)
-
-    # The id/date pairs should probably just be their own class.
-    def _item_time_pairs(self):
-        return zip(self.item_ids, self.item_dates)
-
-    def _set_item_time_pairs(self, pairs):
-        if pairs:
-            # The * operator raises on an empty list.
-            # db.Model does not tuples, we have to make lists.
-            self.item_ids, self.item_dates = map(list, zip(*pairs))
-        else:
-            self.item_ids = []
-            self.item_dates = []
-
-    def _append_item_time_pair(self, pair):
-        self.item_ids.append(pair[0])
-        self.item_dates.append(pair[1])
-
-    def _remove_item(self, item_id):
-        nonexpired_pairs = [pair for pair in self._item_time_pairs() if pair[0] != item_id]
-        self._set_item_time_pairs(nonexpired_pairs)
-
-    @classmethod
-    def key_for_queue(cls, queue_name):
-        return "active-work-items-%s" % (queue_name)
-
-    @classmethod
-    def lookup_by_queue(cls, queue_name):
-        return cls.get_or_insert(key_name=cls.key_for_queue(queue_name), queue_name=queue_name)
-
-    @staticmethod
-    def _expire_item(key, item_id):
-        active_work_items = db.get(key)
-        active_work_items._remove_item(item_id)
-        active_work_items.put()
-
-    def expire_item(self, item_id):
-        return db.run_in_transaction(self._expire_item, self.key(), item_id)
-
-    def deactivate_expired(self, now):
-        one_hour_ago = time.mktime((now - timedelta(minutes=60)).timetuple())
-        nonexpired_pairs = [pair for pair in self._item_time_pairs() if pair[1] > one_hour_ago]
-        self._set_item_time_pairs(nonexpired_pairs)
-
-    def next_item(self, work_item_ids, now):
-        for item_id in work_item_ids:
-            if item_id not in self.item_ids:
-                self._append_item_time_pair([item_id, time.mktime(now.timetuple())])
-                return item_id
-        return None
-
-    def time_for_item(self, item_id):
-        for active_item_id, time in self._item_time_pairs():
-            if active_item_id == item_id:
-                return datetime.fromtimestamp(time)
-        return None
diff --git a/Tools/QueueStatusServer/model/activeworkitems_unittest.py b/Tools/QueueStatusServer/model/activeworkitems_unittest.py
deleted file mode 100644
index b8c620a..0000000
--- a/Tools/QueueStatusServer/model/activeworkitems_unittest.py
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright (C) 2010 Google, Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#    * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#    * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#    * Neither the name of Research in Motion Ltd. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import unittest
-from datetime import datetime
-from google.appengine.ext import testbed
-
-from model.activeworkitems import ActiveWorkItems
-
-
-class ActiveWorkItemsTest(unittest.TestCase):
-
-    def setUp(self):
-        self.testbed = testbed.Testbed()
-        self.testbed.activate()
-        self.testbed.init_datastore_v3_stub()
-        self.testbed.init_memcache_stub()
-
-    def tearDown(self):
-        self.testbed.deactivate()
-
-    def test_basic(self):
-        items = ActiveWorkItems.lookup_by_queue("test-queue")
-        queued_items = [1, 2]
-        # db.Model only stores dates to second resolution, so we use an explicit datetime without milliseconds.
-        time = datetime(2011, 4, 18, 18, 50, 44)
-        self.assertEqual(items.next_item(queued_items, time), 1)
-        self.assertEqual(items.next_item([1], time), None)
-        self.assertEqual(items.next_item([], time), None)
-
-        self.assertEqual(items.time_for_item(1), time)
-        self.assertEqual(items.time_for_item(2), None)
-
-        items.expire_item(1)
-        # expire_item uses a transaction so it doesn't take effect on the current object.
-        self.assertEqual(items.time_for_item(1), time)
-        # If we look up the saved object, we see it's been updated.
-        items = ActiveWorkItems.lookup_by_queue("test-queue")
-        self.assertEqual(items.time_for_item(1), None)
diff --git a/Tools/QueueStatusServer/model/attachment.py b/Tools/QueueStatusServer/model/attachment.py
deleted file mode 100644
index 83b441e..0000000
--- a/Tools/QueueStatusServer/model/attachment.py
+++ /dev/null
@@ -1,123 +0,0 @@
-# Copyright (C) 2009 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-# 
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-# 
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import re
-
-from model.queues import Queue
-from model.queuestatus import QueueStatus
-from model.workitems import WorkItems
-
-
-class Attachment(object):
-    @classmethod
-    def recent(cls, limit=1):
-        statuses = QueueStatus.all().order("-date")
-        # Notice that we use both a set and a list here to keep the -date ordering.
-        ids = []
-        visited_ids = set()
-        for status in statuses:
-            attachment_id = status.active_patch_id
-            if not attachment_id:
-                continue
-            if attachment_id in visited_ids:
-                continue
-            visited_ids.add(attachment_id)
-            ids.append(attachment_id)
-            if len(visited_ids) >= limit:
-                break
-        return map(cls, ids)
-
-    def __init__(self, attachment_id):
-        self.id = attachment_id
-        self._summary = None
-        self._cached_queue_positions = None
-
-    def summary(self):
-        if self._summary:
-            return self._summary
-        self._summary = self._fetch_summary()
-        return self._summary
-
-    def state_from_queue_status(self, status):
-        table = {
-            "Pass" : "pass",
-            "Fail" : "fail",
-        }
-        state = table.get(status.message)
-        if state:
-            return state
-        if status.message.startswith("Error:"):
-            return "error"
-        if status:
-            return "pending"
-        return None
-
-    def position_in_queue(self, queue):
-        return self._queue_positions().get(queue.name())
-
-    def status_for_queue(self, queue):
-        # summary() is a horrible API and should be killed.
-        queue_summary = self.summary().get(queue.name_with_underscores())
-        if not queue_summary:
-            return None
-        return queue_summary.get("status")
-
-    def bug_id(self):
-        return self.summary().get("bug_id")
-
-    def _queue_positions(self):
-        if self._cached_queue_positions:
-            return self._cached_queue_positions
-        # FIXME: Should we be mem-caching this?
-        self._cached_queue_positions = self._calculate_queue_positions()
-        return self._cached_queue_positions
-
-    def _calculate_queue_positions(self):
-        all_work_items = WorkItems.all().fetch(limit=len(Queue.all()))
-        return dict([(items.queue.name(), items.display_position_for_attachment(self.id)) for items in all_work_items])
-
-    # FIXME: This is controller/view code and does not belong in a model.
-    def _fetch_summary(self):
-        summary = { "attachment_id" : self.id }
-
-        first_status = QueueStatus.all().filter('active_patch_id =', self.id).get()
-        if not first_status:
-            # We don't have any record of this attachment.
-            return summary
-        summary["bug_id"] = first_status.active_bug_id
-
-        for queue in Queue.all():
-            summary[queue.name_with_underscores()] = None
-            status = QueueStatus.all().filter('queue_name =', queue.name()).filter('active_patch_id =', self.id).order('-date').get()
-            if status:
-                # summary() is a horrible API and should be killed.
-                summary[queue.name_with_underscores()] = {
-                    "state": self.state_from_queue_status(status),
-                    "status": status,
-                }
-        return summary
diff --git a/Tools/QueueStatusServer/model/patchlog.py b/Tools/QueueStatusServer/model/patchlog.py
deleted file mode 100644
index 78254da..0000000
--- a/Tools/QueueStatusServer/model/patchlog.py
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright (C) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from datetime import datetime
-
-from google.appengine.ext import db
-
-
-class PatchLog(db.Model):
-    attachment_id = db.IntegerProperty()
-    queue_name = db.StringProperty()
-    date = db.DateTimeProperty(auto_now_add=True)
-    bot_id = db.StringProperty()
-    retry_count = db.IntegerProperty(default=0)
-    status_update_count = db.IntegerProperty(default=0)
-    finished = db.BooleanProperty(default=False)
-    wait_duration = db.IntegerProperty()
-    process_duration = db.IntegerProperty()
-
-    @classmethod
-    def lookup(cls, attachment_id, queue_name):
-        key = cls._generate_key(attachment_id, queue_name)
-        return cls.get_or_insert(key, attachment_id=attachment_id, queue_name=queue_name)
-
-    @classmethod
-    def lookup_if_exists(cls, attachment_id, queue_name):
-        key = cls._generate_key(attachment_id, queue_name)
-        return cls.get_by_key_name(key)
-
-    def calculate_wait_duration(self):
-        time_delta = datetime.utcnow() - self.date
-        self.wait_duration = int(self._time_delta_to_seconds(time_delta))
-
-    def calculate_process_duration(self):
-        time_delta = datetime.utcnow() - self.date
-        self.process_duration = int(self._time_delta_to_seconds(time_delta)) - (self.wait_duration or 0)
-
-    @classmethod
-    def _generate_key(cls, attachment_id, queue_name):
-        return "%s-%s" % (attachment_id, queue_name)
-
-    # Needed to support Python 2.5's lack of timedelta.total_seconds().
-    @classmethod
-    def _time_delta_to_seconds(cls, time_delta):
-        return time_delta.seconds + time_delta.days * 24 * 3600
diff --git a/Tools/QueueStatusServer/model/queuelog.py b/Tools/QueueStatusServer/model/queuelog.py
deleted file mode 100644
index ee3e9de..0000000
--- a/Tools/QueueStatusServer/model/queuelog.py
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright (C) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from time import time
-from datetime import datetime
-
-from google.appengine.ext import db
-
-from model.workitems import WorkItems
-from model.activeworkitems import ActiveWorkItems
-
-
-class QueueLog(db.Model):
-    date = db.DateTimeProperty()
-    # duration specifies in seconds the time period these log values apply to.
-    duration = db.IntegerProperty()
-    queue_name = db.StringProperty()
-    bot_ids_seen = db.StringListProperty()
-    max_patches_waiting = db.IntegerProperty(default=0)
-    patch_wait_durations = db.ListProperty(int)
-    patch_process_durations = db.ListProperty(int)
-    patch_retry_count = db.IntegerProperty(default=0)
-    status_update_count = db.IntegerProperty(default=0)
-
-    @staticmethod
-    def create_key(queue_name, duration, timestamp):
-        return "%s-%s-%s" % (queue_name, duration, timestamp)
-
-    @classmethod
-    def get_at(cls, queue_name, duration, timestamp):
-        timestamp = int(timestamp / duration) * duration
-        date = datetime.utcfromtimestamp(timestamp)
-        key = cls.create_key(queue_name, duration, timestamp)
-        return cls.get_or_create(key, date=date, duration=duration, queue_name=queue_name)
-
-    @classmethod
-    def get_current(cls, queue_name, duration):
-        return cls.get_at(queue_name, duration, time())
-
-    # This is to prevent page requests from generating lots of rows in the database.
-    @classmethod
-    def get_or_create(cls, key_name, **kwargs):
-        return db.run_in_transaction(cls._get_or_create_txn, key_name, **kwargs)
-
-    def update_max_patches_waiting(self):
-        patches_waiting = self._get_patches_waiting(self.queue_name)
-        if patches_waiting > self.max_patches_waiting:
-            self.max_patches_waiting = patches_waiting
-            return True
-        return False
-
-    @classmethod
-    def _get_or_create_txn(cls, key_name, **kwargs):
-        entity = cls.get_by_key_name(key_name, parent=kwargs.get('parent'))
-        if entity is None:
-            entity = cls(key_name=key_name, **kwargs)
-        return entity
-
-    @classmethod
-    def _get_patches_waiting(cls, queue_name):
-        work_items = WorkItems.lookup_by_queue(queue_name)
-        active_work_items = ActiveWorkItems.lookup_by_queue(queue_name)
-        return len(set(work_items.item_ids) - set(active_work_items.item_ids))
diff --git a/Tools/QueueStatusServer/model/queuepropertymixin.py b/Tools/QueueStatusServer/model/queuepropertymixin.py
deleted file mode 100644
index a462586..0000000
--- a/Tools/QueueStatusServer/model/queuepropertymixin.py
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright (C) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
-class QueuePropertyMixin(object):
-    def _queue_getter(self):
-        # Import at runtime to avoid circular imports
-        from model.queues import Queue
-        return Queue.queue_with_name(self.queue_name)
-
-    def _queue_setter(self, queue):
-        self.queue_name = queue.name() if queue else None
-
-    queue = property(_queue_getter, _queue_setter)
diff --git a/Tools/QueueStatusServer/model/queuepropertymixin_unittest.py b/Tools/QueueStatusServer/model/queuepropertymixin_unittest.py
deleted file mode 100644
index e83c3f5..0000000
--- a/Tools/QueueStatusServer/model/queuepropertymixin_unittest.py
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright (C) 2010 Google, Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#    * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#    * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#    * Neither the name of Research in Motion Ltd. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import unittest
-
-from model.queuepropertymixin import QueuePropertyMixin
-from model.queues import Queue
-
-
-class ObjectWithQueueName(QueuePropertyMixin):
-    def __init__(self):
-        self.queue_name = None
-
-
-class QueuePropertyMixinTest(unittest.TestCase):
-    def test_queue_property(self):
-        test_object = ObjectWithQueueName()
-        mac_ews = Queue("mac-ews")
-        test_object.queue = mac_ews
-        self.assertEqual(test_object.queue.name(), "mac-ews")
-        self.assertEqual(test_object.queue_name, "mac-ews")
-        test_object.queue = None
-        self.assertEqual(test_object.queue_name, None)
-
-
-if __name__ == '__main__':
-    unittest.main()
diff --git a/Tools/QueueStatusServer/model/queues.py b/Tools/QueueStatusServer/model/queues.py
deleted file mode 100644
index b32f69e..0000000
--- a/Tools/QueueStatusServer/model/queues.py
+++ /dev/null
@@ -1,98 +0,0 @@
-# Copyright (C) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-# 
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-# 
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
-import re
-
-from config.queues import all_queue_names
-from model.activeworkitems import ActiveWorkItems
-from model.workitems import WorkItems
-
-
-class Queue(object):
-    def __init__(self, name):
-        assert(name in all_queue_names)
-        self._name = name
-
-    @classmethod
-    def queue_with_name(cls, queue_name):
-        if queue_name not in all_queue_names:
-            return None
-        return Queue(queue_name)
-
-    @classmethod
-    def all(cls):
-        return [Queue(name) for name in all_queue_names]
-
-    @classmethod
-    def all_ews(cls):
-        return [queue for queue in cls.all() if queue.is_ews()]
-
-    def name(self):
-        return self._name
-
-    def work_items(self):
-        return WorkItems.lookup_by_queue(self._name)
-
-    # FIXME: active_work_items is a bad name for this lock-table.
-    def active_work_items(self):
-        return ActiveWorkItems.lookup_by_queue(self._name)
-
-    def _caplitalize_after_dash(self, string):
-        return "-".join([word[0].upper() + word[1:] for word in string.split("-")])
-
-    # For use in status bubbles or table headers
-    def short_name(self):
-        # HACK: chromium-ews is incorrectly named.
-        short_name = self._name.replace("chromium-ews", "Cr-Linux-ews")
-        short_name = short_name.replace("-ews", "")
-        short_name = short_name.replace("-queue", "")
-        return self._caplitalize_after_dash(short_name.capitalize())
-
-    def display_name(self):
-        # HACK: chromium-ews is incorrectly named.
-        display_name = self._name.replace("chromium-ews", "cr-linux-ews")
-
-        display_name = display_name.replace("-", " ")
-        display_name = display_name.replace("cr", "chromium")
-        display_name = display_name.title()
-        display_name = display_name.replace("Ews", "EWS")
-        return display_name
-
-    _dash_regexp = re.compile("-")
-
-    def name_with_underscores(self):
-        return self._dash_regexp.sub("_", self._name)
-
-    def is_ews(self):
-        # Note: The style-queue is just like an EWS in that it has an EWS
-        # bubble, and it works off of the r? patches.  If at some later
-        # point code wants to not treat the style-queue as an EWS
-        # (e.g. expecting is_ews() queues to have build results?)
-        # then we should fix all callers and change this check.
-        return self._name.endswith("-ews") or self._name == "style-queue"
diff --git a/Tools/QueueStatusServer/model/queues_unittest.py b/Tools/QueueStatusServer/model/queues_unittest.py
deleted file mode 100644
index 654c8a6..0000000
--- a/Tools/QueueStatusServer/model/queues_unittest.py
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright (C) 2010 Google, Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#    * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#    * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#    * Neither the name of Research in Motion Ltd. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import unittest
-
-
-from model.queues import Queue
-
-
-class QueueTest(unittest.TestCase):
-    def test_is_ews(self):
-        mac_ews = Queue("mac-ews")
-        self.assertTrue(mac_ews.is_ews())
-
-    def test_queue_with_name(self):
-        self.assertEqual(Queue.queue_with_name("bogus"), None)
-        self.assertEqual(Queue.queue_with_name("mac-ews").name(), "mac-ews")
-        self.assertRaises(AssertionError, Queue, ("bogus"))
-
-    def _assert_short_name(self, queue_name, short_name):
-        self.assertEqual(Queue(queue_name).short_name(), short_name)
-
-    def test_short_name(self):
-        self._assert_short_name("mac-ews", "Mac")
-        self._assert_short_name("chromium-ews", "Cr-Linux")
-        self._assert_short_name("commit-queue", "Commit")
-        self._assert_short_name("style-queue", "Style")
-
-    def _assert_display_name(self, queue_name, short_name):
-        self.assertEqual(Queue(queue_name).display_name(), short_name)
-
-    def test_display_name(self):
-        self._assert_display_name("mac-ews", "Mac EWS")
-        self._assert_display_name("chromium-ews", "Chromium Linux EWS")
-        self._assert_display_name("commit-queue", "Commit Queue")
-        self._assert_display_name("style-queue", "Style Queue")
-
-    def _assert_name_with_underscores(self, queue_name, short_name):
-        self.assertEqual(Queue(queue_name).name_with_underscores(), short_name)
-
-    def test_name_with_underscores(self):
-        self._assert_name_with_underscores("mac-ews", "mac_ews")
-        self._assert_name_with_underscores("chromium-ews", "chromium_ews")
-        self._assert_name_with_underscores("commit-queue", "commit_queue")
-
-    def test_style_queue_is_ews(self):
-        # For now we treat the style-queue as an EWS since most users would
-        # describe it as such.  If is_ews() ever needs to mean "builds the patch"
-        # or similar, then we will need to adjust all callers.
-        self.assertTrue(Queue("style-queue").is_ews())
-        self.assertTrue("style-queue" in map(Queue.name, Queue.all_ews()))
-
-
-if __name__ == '__main__':
-    unittest.main()
diff --git a/Tools/QueueStatusServer/model/queuestatus.py b/Tools/QueueStatusServer/model/queuestatus.py
deleted file mode 100644
index 0f4d38b..0000000
--- a/Tools/QueueStatusServer/model/queuestatus.py
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright (C) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-# 
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-# 
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from config import messages
-from google.appengine.ext import db
-from model.queuepropertymixin import QueuePropertyMixin
-
-
-class QueueStatus(db.Model, QueuePropertyMixin):
-    author = db.UserProperty()
-    queue_name = db.StringProperty()
-    bot_id = db.StringProperty()
-    active_bug_id = db.IntegerProperty()
-    active_patch_id = db.IntegerProperty()
-    message = db.StringProperty(multiline=True)
-    date = db.DateTimeProperty(auto_now_add=True)
-    results_file = db.BlobProperty()
-
-    def is_retry_request(self):
-        return self.message == messages.retry_status
diff --git a/Tools/QueueStatusServer/model/svnrevision.py b/Tools/QueueStatusServer/model/svnrevision.py
deleted file mode 100644
index f5d3644..0000000
--- a/Tools/QueueStatusServer/model/svnrevision.py
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright (C) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-# 
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-# 
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from google.appengine.ext import db
-
-
-class SVNRevision(db.Model):
-    number = db.IntegerProperty()
-    broken_bots = db.StringListProperty(default=[])
-    date = db.DateTimeProperty(auto_now_add=True)
diff --git a/Tools/QueueStatusServer/model/warninglog.py b/Tools/QueueStatusServer/model/warninglog.py
deleted file mode 100644
index b9677eb..0000000
--- a/Tools/QueueStatusServer/model/warninglog.py
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright (C) 2013 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from time import time
-from datetime import datetime
-
-from google.appengine.ext import db
-
-
-class WarningLog(db.Model):
-    date = db.DateTimeProperty(auto_now_add=True)
-    event = db.StringProperty()
-    message = db.StringProperty()
-    attachment_id = db.IntegerProperty()
-    queue_name = db.StringProperty()
-    bot_id = db.StringProperty()
-
-    @classmethod
-    def record(cls, event, message=None, attachment_id=None, queue_name=None, bot_id=None):
-        entity = cls(event=event, message=message, queue_name=queue_name, bot_id=bot_id, attachment_id=attachment_id)
-        entity.put()
-        return entity
diff --git a/Tools/QueueStatusServer/model/workitems.py b/Tools/QueueStatusServer/model/workitems.py
deleted file mode 100644
index b74f5f5..0000000
--- a/Tools/QueueStatusServer/model/workitems.py
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright (C) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from google.appengine.ext import db
-
-from model.queuepropertymixin import QueuePropertyMixin
-
-
-class WorkItems(db.Model, QueuePropertyMixin):
-    queue_name = db.StringProperty()
-    item_ids = db.ListProperty(int)
-    date = db.DateTimeProperty(auto_now_add=True)
-
-    @classmethod
-    def key_for_queue(cls, queue_name):
-        return "work-items-%s" % (queue_name)
-
-    @classmethod
-    def lookup_by_queue(cls, queue_name):
-        return cls.get_or_insert(key_name=cls.key_for_queue(queue_name), queue_name=queue_name)
-
-    def display_position_for_attachment(self, attachment_id):
-        """Returns a 1-based index corresponding to the position
-        of the attachment_id in the queue.  If the attachment is
-        not in this queue, this returns None"""
-        if attachment_id in self.item_ids:
-            return self.item_ids.index(attachment_id) + 1
-        return None
-
-    @staticmethod
-    def _unguarded_add(key, attachment_id):
-        work_items = db.get(key)
-        if attachment_id in work_items.item_ids:
-            return
-        work_items.item_ids.append(attachment_id)
-        work_items.put()
-
-    # Because this uses .key() self.is_saved() must be True or this will throw NotSavedError.
-    def add_work_item(self, attachment_id):
-        db.run_in_transaction(self._unguarded_add, self.key(), attachment_id)
-
-    @staticmethod
-    def _unguarded_remove(key, attachment_id):
-        work_items = db.get(key)
-        if attachment_id in work_items.item_ids:
-            # We should never have more than one entry for a work item, so we only need remove the first.
-            work_items.item_ids.remove(attachment_id)
-        work_items.put()
-
-    # Because this uses .key() self.is_saved() must be True or this will throw NotSavedError.
-    def remove_work_item(self, attachment_id):
-        db.run_in_transaction(self._unguarded_remove, self.key(), attachment_id)
diff --git a/Tools/QueueStatusServer/model/workitems_unittest.py b/Tools/QueueStatusServer/model/workitems_unittest.py
deleted file mode 100644
index f6ca785..0000000
--- a/Tools/QueueStatusServer/model/workitems_unittest.py
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright (C) 2010 Google, Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#    * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#    * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#    * Neither the name of Research in Motion Ltd. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import unittest
-
-
-from model.workitems import WorkItems
-
-
-class WorkItemsTest(unittest.TestCase):
-    def test_display_position_for_attachment(self):
-        items = WorkItems()
-        items.item_ids = [0, 1, 2]
-        self.assertEqual(items.display_position_for_attachment(0), 1)
-        self.assertEqual(items.display_position_for_attachment(1), 2)
-        self.assertEqual(items.display_position_for_attachment(3), None)
-
-
-if __name__ == '__main__':
-    unittest.main()
diff --git a/Tools/QueueStatusServer/stylesheets/charts.css b/Tools/QueueStatusServer/stylesheets/charts.css
deleted file mode 100644
index b841b2c..0000000
--- a/Tools/QueueStatusServer/stylesheets/charts.css
+++ /dev/null
@@ -1,8 +0,0 @@
-.chart {
-    margin-bottom: 40px;
-    height: 200px;
-}
-
-.choices {
-    font-size: 0.75em;
-}
\ No newline at end of file
diff --git a/Tools/QueueStatusServer/stylesheets/dashboard.css b/Tools/QueueStatusServer/stylesheets/dashboard.css
deleted file mode 100644
index 12cf28b..0000000
--- a/Tools/QueueStatusServer/stylesheets/dashboard.css
+++ /dev/null
@@ -1,127 +0,0 @@
-body {
-  font-family: Verdana, Helvetica, sans-serif;
-  width: 600px;
-  padding: 0px;
-  color: #444;
-}
-h1 {
-  background-color: #EEE;
-  color: #444;
-  font-size: 14pt;
-  font-style: italic;
-  margin: 0px;
-  padding: 5px;
-}
-h2 {
-  background-color: #AAA;
-  color: white;
-  font-weight: bold;
-  font-size: 9pt;
-  margin: 0px;
-  padding: 5px;
-}
-ul {
-  margin: 0px;
-  padding: 0px;
-  list-style: none;
-}
-li {
-  padding: 5px;
-}
-table {
-  border-spacing: 0px;
-}
-th {
-  background-color: #AAA;
-  color: white;
-  padding: 5px;
-  width: 100px;
-  font-size: 9pt;
-}
-td {
-  text-align: center;
-}
-tr:hover, li:hover {
-  background-color: #EEE;
-}
-
-.status-group {
-  font-size: 90%;
-}
-
-.status-bug {
-  font-weight: bold;
-}
-
-.status-group ul {
-  font-size: 90%;
-}
-
-.status-group ul li {
-  padding: 2px 0 2px 7px;
-  overflow: hidden;
-}
-
-.status-group ul li:hover {
-  background: #ddd;
-}
-
-.status-date {
-  color: #AAA;
-  float: right;
-  font-size: 8pt;
-}
-
-.status-cell {
-  margin: 1px;
-  padding: 1px 2px;
-  font-size: 9pt;
-  border: 1px solid transparent;
-}
-.status-cell:hover {
-  border: 1px solid black;
-}
-.status-cell.pass {
-  background-color: #8FDF5F;
-  cursor: pointer;
-  /* border: 1px solid #4F8530; */
-}
-.status-cell.fail {
-  background-color: #E98080;
-  cursor: pointer;
-  /* border: 1px solid #A77272; */
-}
-.status-cell.pending {
-  background-color: #FFFC6C;
-  cursor: pointer;
-  /* border: 1px solid #C5C56D; */
-}
-.status-cell.error {
-  background-color: #E0B0FF;
-  cursor: pointer;
-  /* border: 1px solid #ACA0B3; */
-}
-.queue_bubble {
-    border: 1px solid black;
-    margin-bottom: 10px;
-    border-radius: 10px;
-    padding: 5px;
-}
-.queue_name {
-    float:left;
-}
-.last_heard_from {
-    float: right;
-}
-.status_text {
-    clear: both;
-}
-.alive {
-    background-color: #8FDF5F;
-}
-.behind {
-    background-color: #FFFC6C;
-}
-.dead {
-    background-color: #E98080;
-}
\ No newline at end of file
diff --git a/Tools/QueueStatusServer/stylesheets/main.css b/Tools/QueueStatusServer/stylesheets/main.css
deleted file mode 100644
index 55d3694..0000000
--- a/Tools/QueueStatusServer/stylesheets/main.css
+++ /dev/null
@@ -1,26 +0,0 @@
-body {
-  font-family: Verdana, Helvetica, sans-serif;
-}
-
-#current_status {
-    padding: 5px;
-    font-size: larger;
-}
-
-#last_status_date {
-    font-size: small;
-}
-
-.recent_status {
-    padding-left: 10px;
-}
-
-#recent_status_table {
-    font-size: small;
-    margin: 10px;
-}
-
-#footer {
-    font-size: small;
-    padding-top: 10px;
-}
diff --git a/Tools/QueueStatusServer/templates/activebots.html b/Tools/QueueStatusServer/templates/activebots.html
deleted file mode 100644
index d47f45d..0000000
--- a/Tools/QueueStatusServer/templates/activebots.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<title>WebKit Queue Status</title>
-<link type="text/css" rel="stylesheet" href="/stylesheets/dashboard.css" />
-<style>
-/* Override the generic table styles from dashboard.css */
-td {
-  text-align: left;
-}
-</style>
-</head>
-<body>
-<h1>WebKit Queue Status</h1>
-<table>
-    <thead>
-        <tr>
-            <th>Bot</th><th>Queue</th><th>Last Message</th><th>Time</th>
-        </tr>
-    </thead>
-    <tbody>
-        {% for status in last_statuses %}
-        <tr>
-            <td><a href="/queue-status/{{status.queue_name}}/bots/{{status.bot_id}}">{{ status.bot_id }}</a></td>
-            <td><a href="/queue-status/{{status.queue_name}}">{{ status.queue_name }}</a></td>
-            <td>{{ status.message|force_escape|urlize|webkit_linkify|safe }}</td>
-            <td>{{ status.date|timesince }} ago</td>
-        </tr>
-        {% endfor %}
-    </tbody>
-</table>
-</body>
-</html>
diff --git a/Tools/QueueStatusServer/templates/dashboard.html b/Tools/QueueStatusServer/templates/dashboard.html
deleted file mode 100644
index 3a4df49..0000000
--- a/Tools/QueueStatusServer/templates/dashboard.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<title>WebKit Bot Status</title>
-<link type="text/css" rel="stylesheet" href="/stylesheets/dashboard.css" />
-<script>
-function statusDetail(patch_id) {
-  // FIXME: We'd like to use AJAX to show the details on this page.
-  window.location = "/patch/" + patch_id
-}
-</script>
-</head>
-<body>
-<h1>WebKit Bot Status</h1>
-<table>
-  <thead>
-    <tr>
-      <th>Bug</th>
-      <th>Attachment</th>
-      {% for header in headers %}
-      <th>{{ header }}</th>
-      {% endfor %}
-    </tr>
-  </thead>
-  <tbody>{% for row in rows %}
-    <tr>
-      <td class="status-cell">
-        {{ row.bug_id|force_escape|webkit_bug_id|safe }}
-      </td>
-      <td class="status-cell">
-        {{ row.attachment_id|force_escape|webkit_attachment_id|safe }}
-      </td>
-      {% for bubble in row.bubbles %}
-      <td class="status-cell {{ bubble.status_class }}"
-        {% if bubble.status %}
-          onclick="statusDetail({{ row.attachment_id }})"
-          title="{{ bubble.status_date|timesince }}"
-        {% endif %}>
-      </td>
-      {% endfor %}
-    </tr>{% endfor %}
-  </tbody>
-</table>
-</html>
diff --git a/Tools/QueueStatusServer/templates/includes/singlequeuestatus.html b/Tools/QueueStatusServer/templates/includes/singlequeuestatus.html
deleted file mode 100644
index 94393c0..0000000
--- a/Tools/QueueStatusServer/templates/includes/singlequeuestatus.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<span class="status-date">{{ status.date|timesince }} ago
-{% if status.bot_id %}
-(<a href="/queue-status/{{status.queue_name}}/bots/{{status.bot_id}}">{{ status.bot_id }}</a>)
-{% endif %}
-</span>
-<span class="status-message">{{ status.message|force_escape|urlize|webkit_linkify|safe }}</span>
-{% if status.results_file %}
-    <span class="status-results">[{{ status.key.id|results_link|safe }}]</span>
-{% endif %}
diff --git a/Tools/QueueStatusServer/templates/patch.html b/Tools/QueueStatusServer/templates/patch.html
deleted file mode 100644
index de334a5..0000000
--- a/Tools/QueueStatusServer/templates/patch.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<title>Patch Status</title>
-<link type="text/css" rel="stylesheet" href="/stylesheets/dashboard.css" />
-</head>
-<body>
-<h1>
-  Patch {{ attachment_id|force_escape|webkit_attachment_id|safe }} (Bug {{ bug_id|force_escape|webkit_bug_id|safe }})
-</h1>{% for queue_name, statuses in queue_status.items %}
-<div class="status-details">
-  <h2>{{ queue_name }}</h2>
-  <ul>{% for status in statuses %}
-    <li>
-      <span class="status-message">{{ status.message|force_escape|urlize|webkit_linkify|safe }}</span>{% if status.results_file %}
-      <span class="status-results">[{{ status.key.id|results_link|safe }}]</span>{% endif %}
-      <span class="status-date">{{ status.date|timesince }} ago</span>
-    </li>{% endfor %}
-  </ul>
-</div>{% endfor %}
-</html>
diff --git a/Tools/QueueStatusServer/templates/queuecharts.html b/Tools/QueueStatusServer/templates/queuecharts.html
deleted file mode 100644
index 953debd..0000000
--- a/Tools/QueueStatusServer/templates/queuecharts.html
+++ /dev/null
@@ -1,284 +0,0 @@
-<!DOCTYPE html>
-<html>
-    <head>
-        <title>{{ queue_name }} Charts</title>
-        <link type="text/css" rel="stylesheet" href="/stylesheets/main.css" />
-        <link type="text/css" rel="stylesheet" href="/stylesheets/charts.css" />
-        <script type="text/javascript" src="https://www.google.com/jsapi"></script>
-        <script type="text/javascript">
-            google.load('visualization', '1.0', {'packages':['corechart']});
-            google.setOnLoadCallback(function () {
-
-                function secondsToString(seconds) {
-                    var oneSecond = 1;
-                    var oneMinute = 60;
-                    var oneHour = oneMinute * 60;
-                    var oneDay = oneHour * 24;
-                    var oneYear = oneDay * 365.25;
-                    var unitArray = [
-                        [oneYear, "year"],
-                        [oneDay, "day"],
-                        [oneHour, "hour"],
-                        [oneMinute, "minute"],
-                        [oneSecond, "second"],
-                    ];
-                    var result = "";
-                    for (var i = 0; i < unitArray.length; i++) {
-                        var unit = unitArray[i][0];
-                        if (seconds >= unit) {
-                            if (result !== "") {
-                                result += " ";
-                            }
-                            var name = unitArray[i][1];
-                            var number = Math.floor(seconds/unit);
-                            result += number + " " + name + (number > 1 ? "s" : "");
-                            seconds %= unit;
-                        }
-                    }
-                    if (result === "") {
-                        return "0 seconds";
-                    }
-                    return result;
-                }
-
-                var data, chart, options;
-
-                var timeString = new Date({{ timestamp }} * 1000).toString();
-                var timestampDiv = document.getElementById("timestamp");
-                timestampDiv.innerHTML = "Viewing from " + timeString;
-
-                options = {
-                    legend: {position: "top"},
-                    hAxis: {
-                        title: "{{ time_unit_name|capfirst }} Ago",
-                        direction: -1,
-                        viewWindow: {
-                            min: {{ seconds_ago_min }} / {{ time_unit }},
-                            max: {{ seconds_ago_max }} / {{ time_unit }},
-                        },
-                        gridlines: {
-                            count: 9,
-                        },
-                    },
-                    vAxis: {
-                        viewWindow: {min: 0 },
-                    },
-                    lineWidth: 3,
-                };
-
-                // CHART 1
-                options.colors = ["green", "red", "orange"];
-                data = new google.visualization.DataTable();
-                data.addColumn("number", "<time>");
-                data.addColumn("number", "Patches Completed");
-                data.addColumn({type: "string", role: "tooltip"});
-                data.addColumn("number", "Patches Waiting");
-                data.addColumn({type: "string", role: "tooltip"});
-                data.addColumn("number", "Bots (visible to server)");
-                data.addColumn({type: "string", role: "tooltip"});
-                data.addRows([
-                    {% for queue_datum in queue_data %}
-                        [
-                            {{ queue_datum.seconds_ago }} / {{ time_unit }},
-                            {{ queue_datum.patches_completed }},
-                            "Patches Completed: " + {{ queue_datum.patches_completed }} + "\n" + secondsToString({{ queue_datum.seconds_ago }}) + " ago",
-                            {{ queue_datum.patches_waiting }},
-                            "Patches Waiting: " + {{ queue_datum.patches_waiting }} + "\n" + secondsToString({{ queue_datum.seconds_ago }}) + " ago",
-                            {{ queue_datum.bots_seen }},
-                            "Bots (visible to server): " + {{ queue_datum.bots_seen }} + "\n" + secondsToString({{ queue_datum.seconds_ago }}) + " ago",
-                        ],
-                    {% endfor %}
-                ]);
-                chart = new google.visualization.LineChart(document.getElementById('chart1'));
-                chart.draw(data, options);
-
-                // CHART 2
-                options.colors = ["blue", "purple"];
-                data = new google.visualization.DataTable();
-                data.addColumn("number", "<time>");
-                data.addColumn("number", "Status Updates");
-                data.addColumn({type: "string", role: "tooltip"});
-                data.addColumn("number", "Patch Retries");
-                data.addColumn({type: "string", role: "tooltip"});
-                data.addRows([
-                    {% for queue_datum in queue_data %}
-                        [
-                            {{ queue_datum.seconds_ago }} / {{ time_unit }},
-                            {{ queue_datum.status_update_count }},
-                            "Status Updates: " + {{ queue_datum.status_update_count }} + "\n" + secondsToString({{ queue_datum.seconds_ago }}) + " ago",
-                            {{ queue_datum.patch_retry_count }},
-                            "Patch Retries: " + {{ queue_datum.patch_retry_count }} + "\n" + secondsToString({{ queue_datum.seconds_ago }}) + " ago",
-                        ],
-                    {% endfor %}
-                ]);
-                chart = new google.visualization.LineChart(document.getElementById('chart2'));
-                chart.draw(data, options);
-
-                // CHART 3
-                options.colors = ["brown"];
-                options.vAxis.title = "Minutes";
-                data = new google.visualization.DataTable();
-                data.addColumn("number", "<time>");
-                data.addColumn("number", "Patch Processing Times");
-                data.addColumn({type: "string", role: "tooltip"});
-                data.addColumn({type: "number", role: "interval"});
-                data.addColumn({type: "number", role: "interval"});
-                data.addRows([
-                    {% for queue_datum in queue_data %}
-                        [
-                            {{ queue_datum.seconds_ago }} / {{ time_unit }},
-                            {{ queue_datum.patch_processing_med }} / 60,
-                            "Patch Processing Times\nMax: " + secondsToString({{ queue_datum.patch_processing_max }}) + "\nMedian: " + secondsToString({{ queue_datum.patch_processing_med }}) + "\nMin: " + secondsToString({{ queue_datum.patch_processing_min }}) + "\n" + secondsToString({{ queue_datum.seconds_ago }}) + " ago",
-                            {{ queue_datum.patch_processing_min }} / 60,
-                            {{ queue_datum.patch_processing_max }} / 60,
-                        ],
-                    {% endfor %}
-                ]);
-                chart = new google.visualization.LineChart(document.getElementById('chart3'));
-                chart.draw(data, options);
-
-                // CHART 4
-                options.colors = ["red"];
-                data = new google.visualization.DataTable();
-                data.addColumn("number", "<time>");
-                data.addColumn("number", "Patch Waiting Times");
-                data.addColumn({type: "string", role: "tooltip"});
-                data.addColumn({type: "number", role: "interval"});
-                data.addColumn({type: "number", role: "interval"});
-                data.addRows([
-                    {% for queue_datum in queue_data %}
-                        [
-                            {{ queue_datum.seconds_ago }} / {{ time_unit }},
-                            {{ queue_datum.patch_waiting_med }} / 60,
-                            "Patch Waiting Times\nMax: " + secondsToString({{ queue_datum.patch_waiting_max }}) + "\nMedian: " + secondsToString({{ queue_datum.patch_waiting_med }}) + "\nMin: " + secondsToString({{ queue_datum.patch_waiting_min }}) + "\n" + secondsToString({{ queue_datum.seconds_ago }}) + " ago",
-                            {{ queue_datum.patch_waiting_min }} / 60,
-                            {{ queue_datum.patch_waiting_max }} / 60,
-                        ],
-                    {% endfor %}
-                ]);
-                chart = new google.visualization.LineChart(document.getElementById('chart4'));
-                chart.draw(data, options);
-
-                function postPatchLink (selection) {
-                    if (selection.length > 0 && selection[0].row !== undefined) {
-                        var attachmentIdArray = [{% for patch_datum in patch_data %}{{ patch_datum.attachment_id }}, {% endfor %}];
-                        var attachmentId = attachmentIdArray[selection[0].row];
-                        var aTag = document.getElementById("selectedPatch");
-                        aTag.innerHTML = aTag.href = "//" + window.location.host + "/patch/" + attachmentId;
-                    }
-                }
-
-                // CHART 5
-                options.colors = ["brown", "red"];
-                options.hAxis.title = "{{ time_unit_name|capfirst }} Ago";
-                options.hAxis.viewWindow.min = {{ seconds_ago_min }} / {{ time_unit }};
-                options.hAxis.viewWindow.max = {{ seconds_ago_max }} / {{ time_unit }};
-                delete options.lineWidth;
-                data = new google.visualization.DataTable();
-                data.addColumn("number", "<time>");
-                data.addColumn("number", "Process Duration");
-                data.addColumn({type: "string", role: "tooltip"});
-                data.addColumn("number", "Wait Duration");
-                data.addColumn({type: "string", role: "tooltip"});
-                data.addRows([
-                    {% for patch_datum in patch_data %}
-                        [
-                            {{ patch_datum.seconds_ago }} / {{ time_unit }},
-                            {{ patch_datum.process_duration }},
-                            "Patch {{ patch_datum.attachment_id }}\n" + secondsToString({{ patch_datum.seconds_ago }}) + " ago",
-                            {{ patch_datum.wait_duration }},
-                            "Patch {{ patch_datum.attachment_id }}\n" + secondsToString({{ patch_datum.seconds_ago }}) + " ago",
-                        ],
-                    {% endfor %}
-                ]);
-                chart = new google.visualization.ScatterChart(document.getElementById('chart5'));
-                var chart5 = chart;
-                google.visualization.events.addListener(chart, "select", function () {postPatchLink(chart5.getSelection());});
-                chart.draw(data, options);
-
-                // CHART 6
-                options.colors = ["blue", "purple"];
-                delete options.vAxis.title;
-                data = new google.visualization.DataTable();
-                data.addColumn("number", "<time>");
-                data.addColumn("number", "Status Updates");
-                data.addColumn({type: "string", role: "tooltip"});
-                data.addColumn("number", "Retries");
-                data.addColumn({type: "string", role: "tooltip"});
-                data.addRows([
-                    {% for patch_datum in patch_data %}
-                        [
-                            {{ patch_datum.seconds_ago }} / {{ time_unit }},
-                            {{ patch_datum.status_update_count }},
-                            "Patch {{ patch_datum.attachment_id }}\n" + secondsToString({{ patch_datum.seconds_ago }}) + " ago",
-                            {{ patch_datum.retry_count }},
-                            "Patch {{ patch_datum.attachment_id }}\n" + secondsToString({{ patch_datum.seconds_ago }}) + " ago",
-                        ],
-                    {% endfor %}
-                ]);
-                chart = new google.visualization.ScatterChart(document.getElementById('chart6'));
-                var chart6 = chart;
-                google.visualization.events.addListener(chart, "select", function () {postPatchLink(chart6.getSelection());});
-                chart.draw(data, options);
-            });
-
-            function setURLParameter (parameterName, newValue) {
-                var split;
-                split = window.location.href.split("?");
-                var url, parameterArray;
-                url = split[0];
-                if (split.length > 1) {
-                    parameterArray = split[1].split("&");
-                } else {
-                    parameterArray = [];
-                }
-                var setParameter = false;
-                for (var i = 0; i < parameterArray.length; i++) {
-                    var currentParameterName = decodeURIComponent(parameterArray[i].split("=")[0]);
-                    if (currentParameterName === parameterName) {
-                        parameterArray[i] = encodeURIComponent(parameterName) + "=" + encodeURIComponent(newValue);
-                        setParameter = true;
-                        break;
-                    }
-                }
-                if (!setParameter) {
-                    parameterArray.push(encodeURIComponent(parameterName) + "=" + encodeURIComponent(newValue));
-                }console.log(parameterArray);
-                window.location.href = url + "?" + parameterArray.join("&");
-            }
-        </script>
-    </head>
-
-    <body>
-        <div class="choices">
-            {% for single_queue_name in all_queue_names %}
-                {% if single_queue_name == queue_name %}
-                    {{ queue_name }}
-                {% else %}
-                    {{ single_queue_name|force_escape|queue_charts_link:single_queue_name|safe }}
-                {% endif %}
-                {% if not forloop.last %} | {% endif %}
-            {% endfor %}
-        </div>
-        <h1>{{ queue_name }} Charts</h1>
-        <div>[{{ queue_name|force_escape|queue_status_link:"status"|safe }}]</div>
-        <div id="timestamp"></div>
-        <div class="choices">Viewing range:
-            {% for view_range_choice in view_range_choices %}
-                {% if view_range_choice.view_range == view_range %}
-                    {{ view_range_choice.name }}
-                {% else %}
-                    <a href="javascript:setURLParameter('view_range', {{ view_range_choice.view_range }})">{{ view_range_choice.name }}</a>
-                {% endif %}
-                {% if not forloop.last %} | {% endif %}
-            {% endfor %}
-        </div>
-        <div class="chart" id="chart1"></div>
-        <div class="chart" id="chart2"></div>
-        <div class="chart" id="chart3"></div>
-        <div class="chart" id="chart4"></div>
-        <div class="chart" id="chart5"></div>
-        <div class="chart" id="chart6"></div>
-        Selected patch: <a id="selectedPatch">(None)</div>
-    </body>
-</html>
diff --git a/Tools/QueueStatusServer/templates/queuestatus.html b/Tools/QueueStatusServer/templates/queuestatus.html
deleted file mode 100644
index aafafbd..0000000
--- a/Tools/QueueStatusServer/templates/queuestatus.html
+++ /dev/null
@@ -1,79 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<title>{{ page_title }}</title>
-<link type="text/css" rel="stylesheet" href="/stylesheets/dashboard.css" />
-</head>
-<body>
-<h1>{{ page_title }}</h1>
-
-<h3>Summary</h3>
-<div>
-<div>[{{ queue_name|force_escape|queue_charts_link:"charts"|safe }}]</div>
-Last Pass: {% if last_pass %}{{ last_pass.date|timesince }} ago{% else %}never{% endif %}
-{% if not bot_id and last_pass.bot_id %}
-by <a href="/queue-status/{{last_pass.queue_name}}/bots/{{last_pass.bot_id}}">{{ last_pass.bot_id }}</a>
-{% endif %}
-</div>
-<div>
-Last Boot: {% if last_boot %}{{ last_boot.date|timesince }} ago{% else %}never{% endif %}
-{% if not bot_id and last_boot.bot_id %}
-by <a href="/queue-status/{{last_boot.queue_name}}/bots/{{last_boot.bot_id}}">{{ last_boot.bot_id }}</a>
-{% endif %}
-</div>
-<div>7-day "Pass" count: {{ trailing_week_pass_count }}</div>
-<div>30-day "Pass" count: {{ trailing_month_pass_count }}</div>
-
-<h3>Recent Status</h3>
-
-<div class="status-details">
-  <ul>
-    {% for status_group in status_groups %}
-        {% with status_group.0 as title_status %}
-            <li class="status-group">
-                {% if title_status.active_bug_id %}
-                    <span class="status-bug">
-                        Patch {{ title_status.active_patch_id|force_escape|webkit_attachment_id|safe }} from bug
-                        {{ title_status.active_bug_id|force_escape|webkit_bug_id|safe }}:
-                    </span>
-                {% endif %}
-                
-                {% ifequal status_group|length 1 %}
-                    {% with title_status as status %}
-                        {% include 'includes/singlequeuestatus.html' %}
-                    {% endwith %}
-                {% else %}
-                    <ul>
-                        {% for status in status_group %}
-                            <li class="status">
-                                {% include 'includes/singlequeuestatus.html' %}
-                            </li>
-                        {% endfor %}
-                    </ul>
-                {% endifequal %}
-            </li>
-        {% endwith %}
-    {% endfor %}
-  </ul>
-</div>
-
-<h3>Patches in queue</h3>
-<table>
-    <tr><th>Position</th><th>Patch</th><th>Lock Acquired</th></tr>
-    {% for row in work_item_rows %}
-    <tr>
-        <td>#{{ forloop.counter }}</td>
-        <td>
-          {{ row.attachment_id|force_escape|webkit_attachment_id|safe }}
-        </td>
-        <td>
-            {% if row.lock_time %}
-                {{ row.lock_time|timesince }} ago
-            {% endif %}
-        </td>
-    </tr>
-    {% endfor %}
-</table>
-
-</body>
-</html>
diff --git a/Tools/QueueStatusServer/templates/recentstatus.html b/Tools/QueueStatusServer/templates/recentstatus.html
deleted file mode 100644
index 32fc030..0000000
--- a/Tools/QueueStatusServer/templates/recentstatus.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<title>WebKit Queue Status</title>
-<link type="text/css" rel="stylesheet" href="/stylesheets/dashboard.css" />
-</head>
-<body>
-<h1>WebKit Queue Status</h1>
-{% for queue in queues %}
-<div class="queue_bubble {{ queue.status_class }}">
-    <div class="queue_name">
-        <a href="/queue-status/{{ queue.name }}">
-        {{ queue.display_name }}
-        </a>
-    </div>
-    {% if queue.last_heard_from %}
-    <div class="last_heard_from">{{ queue.last_heard_from|timesince }} ago</div>
-    {% endif %}
-    <div class="status_text">
-        Status: {{ queue.status_text|force_escape|urlize|webkit_linkify|safe }}
-    </div>
-    <div>
-        {{ queue.pending_items_count }} pending
-    </div>
-</div>
-{% endfor %}
-<a href='/active-bots'>List of all active bots</a><br>
-<a href='http://ews-watcher.kov.eti.br/'>Graph of queue depths over time</a>
-</body>
-</html>
diff --git a/Tools/QueueStatusServer/templates/releasepatch.html b/Tools/QueueStatusServer/templates/releasepatch.html
deleted file mode 100644
index cbd6d6f..0000000
--- a/Tools/QueueStatusServer/templates/releasepatch.html
+++ /dev/null
@@ -1,3 +0,0 @@
-<form name="release_patch" enctype="multipart/form-data" method="post">
-Patch to release: <input name="attachment_id"> from <input name="queue_name"><input type="submit" value="Release locks and remove from queue"></div>
-</form>
diff --git a/Tools/QueueStatusServer/templates/statusbubble.html b/Tools/QueueStatusServer/templates/statusbubble.html
deleted file mode 100644
index 3d6349a..0000000
--- a/Tools/QueueStatusServer/templates/statusbubble.html
+++ /dev/null
@@ -1,96 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
-body {
-    font-family: Verdana, sans-serif;
-    margin: 0px;
-    padding: 0px;
-}
-#bubbleContainer {
-    display: inline-block;
-    white-space: nowrap;
-}
-.status {
-    display: block;
-    float: left;
-    margin: 1px;
-    padding: 1px 2px;
-    -moz-border-radius: 5px;
-    -webkit-border-radius: 5px;
-    border-radius: 5px;
-    border: 1px solid #AAA;
-    background-color: white;
-    font-size: 11px;
-    cursor: pointer;
-    text-decoration: none;
-    color: black;
-}
-.status:hover {
-    border-color: #666;
-}
-.none {
-    cursor: auto;
-}
-.none:hover {
-    border-color: #AAA;
-}
-.pass {
-    background-color: #8FDF5F;
-    border: 1px solid #4F8530;
-}
-.fail {
-    background-color: #E98080;
-    border: 1px solid #A77272;
-}
-.pending {
-    background-color: #FFFC6C;
-    border: 1px solid #C5C56D;
-}
-.error {
-  background-color: #E0B0FF;
-  border: 1px solid #ACA0B3;
-}
-.queue_position {
-    font-size: 9px;
-}
-form {
-    display: inline-block;
-}
-</style>
-<script>
-window.addEventListener("message", function(e) {
-  if (e.data == 'containerMetrics') {
-    e.source.postMessage({'width': bubbleContainer.offsetWidth, 'height': bubbleContainer.offsetHeight},
-        e.origin);
-  } else
-    console.log("Unknown postMessage: " + e.data);
-}, false);
-</script>
-</head>
-<body>
-<div id="bubbleContainer">
-  {% for bubble in bubbles %}
-  <a class="status {{ bubble.state }}" target="_top"
-  {% if bubble.status %}
-      href="http://queues.webkit.org/patch/{{ bubble.attachment_id }}"
-      title="{{ bubble.status.date|timesince }} ago"
-  {% endif %}
-  >
-    {{ bubble.name }}
-    {% if bubble.queue_position %}
-    <span class="queue_position">#{{ bubble.queue_position }}</span>
-    {% endif %}
-  </a>
-  {% endfor %}
-
-{% if show_submit_to_ews %}
-  <form name="submit_to_ews" method="POST" action="/submit-to-ews">
-    <input type="hidden" name="attachment_id" value="{{ attachment_id }}">
-    <input type="hidden" name="next_action" value="return_to_bubbles">
-    <input class="status" type="submit" value="Submit for EWS analysis">
-  </form>
-{% endif %}
-</div>
-</body>
-</html>
diff --git a/Tools/QueueStatusServer/templates/submittoews.html b/Tools/QueueStatusServer/templates/submittoews.html
deleted file mode 100644
index 25ad2bc..0000000
--- a/Tools/QueueStatusServer/templates/submittoews.html
+++ /dev/null
@@ -1,3 +0,0 @@
-<form name="submit_to_ews" method="POST">
-Attachment id of patch to submit: <input name="attachment_id"><input type="submit" value="Submit for EWS Processing">
-</form>
diff --git a/Tools/QueueStatusServer/templates/updatestatus.html b/Tools/QueueStatusServer/templates/updatestatus.html
deleted file mode 100644
index 0f98ba4..0000000
--- a/Tools/QueueStatusServer/templates/updatestatus.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<form name="update_status" enctype="multipart/form-data" method="post">
-Update status for a queue: <input name="queue_name">
- <div>
-     Bot Id:
-    <input name="bot_id">
- </div>
- <div>
-     Active Bug Id:
-    <input name="bug_id">
- </div>
- <div>
-     Active Patch Id:
-    <input name="patch_id">
- </div>
-  <div>
-      Status Text:<br>
-      <textarea name="status" rows="3" cols="60"></textarea>
-  </div>
-  <div>Results file: <input type="file" name="results_file"></div>
-  <div><input type="submit" value="Add Status"></div>
-</form>
diff --git a/Tools/QueueStatusServer/templates/updatesvnrevision.html b/Tools/QueueStatusServer/templates/updatesvnrevision.html
deleted file mode 100644
index 6ea4e7b..0000000
--- a/Tools/QueueStatusServer/templates/updatesvnrevision.html
+++ /dev/null
@@ -1,8 +0,0 @@
-<form name="update_svn_revision" method="post">
-Update an SVN revision: <input name="number">
-  <div>
-     Broken Bot:
-    <input name="broken_bot">
-  </div>
-  <div><input type="submit" value="Update"></div>
-</form>
diff --git a/Tools/QueueStatusServer/templates/updateworkitems.html b/Tools/QueueStatusServer/templates/updateworkitems.html
deleted file mode 100644
index b086fc3..0000000
--- a/Tools/QueueStatusServer/templates/updateworkitems.html
+++ /dev/null
@@ -1,8 +0,0 @@
-<form name="update_work_items" enctype="multipart/form-data" method="post">
-Update work items for a queue: <input name="queue_name">
- <div>
-     Work Items:
-    <input name="work_items">
- </div>
- <div><input type="submit" value="Update Work Items"></div>
-</form>
diff --git a/Tools/RebaselineQueueServer/app.yaml b/Tools/RebaselineQueueServer/app.yaml
deleted file mode 100755
index c425cfd..0000000
--- a/Tools/RebaselineQueueServer/app.yaml
+++ /dev/null
@@ -1,11 +0,0 @@
-application: rebaseline-queue
-version: 1
-runtime: python
-api_version: 1
-
-handlers:
-- url: /static
-  static_dir: static
-
-- url: .*
-  script: main.py
diff --git a/Tools/RebaselineQueueServer/handlers/__init__.py b/Tools/RebaselineQueueServer/handlers/__init__.py
deleted file mode 100644
index ef65bee..0000000
--- a/Tools/RebaselineQueueServer/handlers/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-# Required for Python to search this directory for module files
diff --git a/Tools/RebaselineQueueServer/handlers/builderqueue.py b/Tools/RebaselineQueueServer/handlers/builderqueue.py
deleted file mode 100644
index c84e07b..0000000
--- a/Tools/RebaselineQueueServer/handlers/builderqueue.py
+++ /dev/null
@@ -1,95 +0,0 @@
-# Copyright (C) 2011 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from urllib import unquote_plus
-
-from google.appengine.ext import webapp
-from google.appengine.ext.webapp import template
-from django.utils import simplejson
-
-from model.queueentry import QueueEntry
-
-
-class QueueHandler(webapp.RequestHandler):
-    def get(self, builder_name):
-        self._get(unquote_plus(builder_name))
-
-    def post(self, builder_name):
-        self._post(unquote_plus(builder_name))
-
-    def _queued_test_names(self, builder_name):
-        return [entry.test for entry in QueueEntry.entries_for_builder(builder_name)]
-        
-    def _queue_list_url(self, builder_name):
-        return '/builder/%s/queue' % builder_name
-
-
-class QueueEdit(QueueHandler):
-    def _get(self, builder_name):
-        test_names = self._queued_test_names(builder_name)
-        self.response.out.write(
-            template.render("templates/builder-queue-edit.html", {
-                'builder_name': builder_name,
-                'queued_test_names': simplejson.dumps(test_names),
-            }))
-
-
-class QueueAdd(QueueHandler):
-    def _post(self, builder_name):
-        current_tests = set(self._queued_test_names(builder_name))
-        tests = set(self.request.get_all('test')).difference(current_tests)
-        
-        for test in tests:
-            QueueEntry.add(builder_name, test)
-
-        self.redirect(self._queue_list_url(builder_name))
-
-
-class QueueRemove(QueueHandler):
-    def _post(self, builder_name):
-        tests = self.request.get_all('test')
-
-        for test in tests:
-            QueueEntry.remove(builder_name, test)
-
-        self.redirect(self._queue_list_url(builder_name))
-
-
-class QueueHtml(QueueHandler):
-    def _get(self, builder_name):
-        self.response.out.write(
-            template.render("templates/builder-queue-list.html", {
-                    'builder_name': builder_name,
-                    'entries': QueueEntry.entries_for_builder(builder_name),
-                }))
-
-
-class QueueJson(QueueHandler):
-    def _get(self, builder_name):
-        queue_json = {'tests': self._queued_test_names(builder_name)}
-        self.response.out.write(simplejson.dumps(queue_json))
diff --git a/Tools/RebaselineQueueServer/handlers/pages.py b/Tools/RebaselineQueueServer/handlers/pages.py
deleted file mode 100644
index 8fcf2e3..0000000
--- a/Tools/RebaselineQueueServer/handlers/pages.py
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright (C) 2011 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from google.appengine.ext import webapp
-from google.appengine.ext.webapp import template
-
-from model.queueentry import QueueEntry
-
-
-class Home(webapp.RequestHandler):
-    def get(self):
-        builder_names = QueueEntry.builder_names()
-        self.response.out.write(
-            template.render("templates/home.html", {
-                'builder_names': builder_names,
-            }))
-
-
-class BuilderPicker(webapp.RequestHandler):
-    def get(self):
-        self.response.out.write(
-            template.render("templates/builder-picker.html", {}))
diff --git a/Tools/RebaselineQueueServer/index.yaml b/Tools/RebaselineQueueServer/index.yaml
deleted file mode 100755
index a3b9e05..0000000
--- a/Tools/RebaselineQueueServer/index.yaml
+++ /dev/null
@@ -1,11 +0,0 @@
-indexes:
-
-# AUTOGENERATED
-
-# This index.yaml is automatically updated whenever the dev_appserver
-# detects that a new type of query is run.  If you want to manage the
-# index.yaml file manually, remove the above marker line (the line
-# saying "# AUTOGENERATED").  If you want to manage some indexes
-# manually, move them above the marker line.  The index.yaml file is
-# automatically uploaded to the admin console when you next deploy
-# your application using appcfg.py.
diff --git a/Tools/RebaselineQueueServer/main.py b/Tools/RebaselineQueueServer/main.py
deleted file mode 100755
index 4497d63..0000000
--- a/Tools/RebaselineQueueServer/main.py
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright (C) 2011 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Request a modern Django
-from google.appengine.dist import use_library
-use_library('django', '1.2')
-
-from google.appengine.ext import webapp
-from google.appengine.ext.webapp import util
-
-from handlers import pages
-from handlers import builderqueue
-
-
-def main():
-    application = webapp.WSGIApplication([
-          ('/', pages.Home),
-          ('/builder/picker', pages.BuilderPicker),
-
-          # Queue CRUD operations
-          ('/builder/(.+)/queue/edit', builderqueue.QueueEdit),
-          ('/builder/(.+)/queue/add', builderqueue.QueueAdd),
-          ('/builder/(.+)/queue/remove', builderqueue.QueueRemove),
-          ('/builder/(.+)/queue', builderqueue.QueueHtml),
-          ('/builder/(.+)/queue/json', builderqueue.QueueJson),
-        ],
-        debug=True)
-    util.run_wsgi_app(application)
-
-if __name__ == '__main__':
-    main()
diff --git a/Tools/RebaselineQueueServer/model/__init__.py b/Tools/RebaselineQueueServer/model/__init__.py
deleted file mode 100644
index ef65bee..0000000
--- a/Tools/RebaselineQueueServer/model/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-# Required for Python to search this directory for module files
diff --git a/Tools/RebaselineQueueServer/model/queueentry.py b/Tools/RebaselineQueueServer/model/queueentry.py
deleted file mode 100644
index 6570fc0..0000000
--- a/Tools/RebaselineQueueServer/model/queueentry.py
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright (C) 2011 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from google.appengine.ext import db
-
-
-class QueueEntry(db.Model):
-    test = db.StringProperty()
-    builder = db.StringProperty()
-
-    @staticmethod
-    def add(builder_name, test):
-        entry = QueueEntry()
-        entry.builder = builder_name
-        entry.test = test
-        entry.put()
-        return entry
-
-    @staticmethod
-    def remove(builder_name, test):
-        query = QueueEntry.all()
-        query = query.filter('builder =', builder_name).filter('test =', test)
-        for entry in query:
-            entry.delete()
-
-    @staticmethod
-    def entries_for_builder(builder_name):
-        query = QueueEntry.all()
-        query = query.filter('builder =', builder_name)
-        return query
-
-    @staticmethod
-    def builder_names():
-        query = QueueEntry.all()
-        builder_names = set()
-        for entry in query:
-            builder_names.add(entry.builder)
-        return builder_names
diff --git a/Tools/RebaselineQueueServer/static/builder-frame-empty.html b/Tools/RebaselineQueueServer/static/builder-frame-empty.html
deleted file mode 100644
index 31b91bb..0000000
--- a/Tools/RebaselineQueueServer/static/builder-frame-empty.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-    <title>Rebaseline Queue</title>
-    <link rel="stylesheet" href="/static/styles.css" type="text/css">
-</head>
-<body>
-Select a group and then a builder to see tests that are currently failing on it (if any).
-</body>
-</html>
diff --git a/Tools/RebaselineQueueServer/static/styles.css b/Tools/RebaselineQueueServer/static/styles.css
deleted file mode 100644
index a36ff35..0000000
--- a/Tools/RebaselineQueueServer/static/styles.css
+++ /dev/null
@@ -1,71 +0,0 @@
-body {
-  font-family: Helvetica, Arial, sans-serif;
-  font-size: 12px;
-}
-
-h1 {
-  border-bottom: solid 1px #ccc;
-}
-
-#builder-picker body,
-#add-form body {
-  margin: 0;
-}
-
-#builder-picker, 
-#builder-picker body {
-  height: 100%;
-}
-
-#builder-picker body {
-  display: -webkit-box;
-  -webkit-box-orient: vertical;
-}
-
-#builder-picker-controls {
-  padding: 0.5em;
-  border-bottom: solid 1px black;
-}
-
-#builder-picker-controls select {
-  min-width: 10em;
-}
-
-#builder-frame {
-  border: 0;
-  -webkit-box-flex: 1;
-  display: block;
-}
-
-.status {
-  font-size: 16px;
-  text-align: center;
-  padding: 1em;
-}
-
-.test-table {
-  border-collapse: collapse;
-}
-
-.test-table caption {
-  font-size: 16px;
-  font-weight: bold;
-  background: #eee;
-  padding: .5em;
-}
-
-.test-table th {
-  text-align: left;
-  border-bottom: solid 1px #ccc;
-  background: #eee;
-  min-width: 8em;
-}
-
-.test-table tbody tr:hover {
-  background: #ffa;
-}
-
-.test-table .submit-row {
-  text-align: right;
-  padding: 1em 0;
-}
diff --git a/Tools/RebaselineQueueServer/templates/builder-picker.html b/Tools/RebaselineQueueServer/templates/builder-picker.html
deleted file mode 100644
index 1068c04..0000000
--- a/Tools/RebaselineQueueServer/templates/builder-picker.html
+++ /dev/null
@@ -1,74 +0,0 @@
-<!DOCTYPE html>
-<html id="builder-picker">
-<head>
-    <title>Rebaseline Queue: Builders</title>
-    <script src="http://test-results.appspot.com/dashboards/builders.js"></script>
-    <link rel="stylesheet" href="/static/styles.css" type="text/css">
-</head>
-<body>
-
-<div id="builder-picker-controls">
-    <label for="builder-group">Group:</label>
-    <select id="builder-group">
-        <option disabled></option>
-    </select>
-
-    <label for="builder">Builder:</label>
-    <select id="builder">
-        <option disabled></option>
-    </select>
-</div>
-
-<iframe src="/static/builder-frame-empty.html" id="builder-frame"></iframe>
-
-<script>
-function init()
-{
-    var builderGroupMenu = document.getElementById('builder-group');
-    builderGroupMenu.addEventListener(
-        'change', handleBuilderGroupSelected, false);
-
-    var builderMenu = document.getElementById('builder');
-    builderMenu.addEventListener(
-        'change', handleBuilderSelected, false);
-
-    for (var builderGroupName in LAYOUT_TESTS_BUILDER_GROUPS) {
-        var builderGroupOption = document.createElement('option');
-        builderGroupOption.textContent = builderGroupOption.value =
-            builderGroupName;
-        builderGroupMenu.appendChild(builderGroupOption);
-    }
-}
-
-function handleBuilderGroupSelected()
-{
-    var builderGroupMenu = document.getElementById('builder-group');
-    var builderGroupName =
-        builderGroupMenu.options[builderGroupMenu.selectedIndex].value;
-    var builderGroup = LAYOUT_TESTS_BUILDER_GROUPS[builderGroupName];
-
-    var builderMenu = document.getElementById('builder');
-    while (builderMenu.options[1]) {
-        builderMenu.removeChild(builderMenu.options[1]);
-    }
-
-    for (var builderName in builderGroup.builders) {
-        var builderOption = document.createElement('option');
-        builderOption.textContent = builderOption.value = builderName;
-        builderMenu.appendChild(builderOption);
-    }
-}
-
-function handleBuilderSelected()
-{
-    var builderMenu = document.getElementById('builder');
-    var builderName = builderMenu.options[builderMenu.selectedIndex].value;
-    document.getElementById('builder-frame').src =
-        '/builder/' + builderName + '/queue/edit';
-}
-
-init();
-</script>
-
-</body>
-</html>
diff --git a/Tools/RebaselineQueueServer/templates/builder-queue-edit.html b/Tools/RebaselineQueueServer/templates/builder-queue-edit.html
deleted file mode 100644
index f1b5844..0000000
--- a/Tools/RebaselineQueueServer/templates/builder-queue-edit.html
+++ /dev/null
@@ -1,190 +0,0 @@
-<!DOCTYPE html>
-<html id="add-form">
-<head>
-    <title>Rebaseline Queue: Edit</title>
-    <script src="http://test-results.appspot.com/dashboards/builders.js"></script>
-    <link rel="stylesheet" href="/static/styles.css" type="text/css">
-</head>
-<body">
-
-<div id="loading-indicator" class="status">Loading...</div>
-
-<form method="POST" id="form-template" style="display: none">
-    <table class="test-table">
-        <caption></caption>
-        <thead>
-            <th>Test</th>
-            <th>Expected</th>
-            <th>Actual</th>
-            <th>Results</th>
-        </thead>
-        <tbody></tbody>
-        <tbody>
-            <tr>
-              <td colspan="4" class="submit-row">
-                <input type="submit" value="">
-              </td>
-            </tr>
-        </tbody>
-    </table>
-</form>
-
-<script>
-var TEST_RESULTS_SERVER = 'http://test-results.appspot.com/';
-var BUILDER_TO_GROUP = {};
-for (var builderGroupName in LAYOUT_TESTS_BUILDER_GROUPS) {
-    for (var builderName in LAYOUT_TESTS_BUILDER_GROUPS[builderGroupName]) {
-        BUILDER_TO_GROUP[builderName] = builderGroupName;
-    }
-}
-
-// Extract template parameters
-var builderName = '{{ builder_name|escapejs }}';
-var queuedTestNames = {{ queued_test_names|safe }};
-
-function init()
-{
-  var builderMaster = BUILDER_TO_MASTER[builderName] || CHROMIUM_GPU_BUILDER_MASTER;
-  var resultsUrl = TEST_RESULTS_SERVER + 'testfile?builder=' + builderName +
-      '&master=' + builderMaster.name +
-      '&testtype=layout-tests&name=full_results.json';
-
-  var script = document.createElement('script');
-  script.src = resultsUrl;
-  document.getElementsByTagName('head')[0].appendChild(script);
-}
-
-function ADD_RESULTS(results)
-{
-    var builderGroupName = BUILDER_TO_GROUP[builderName];
-
-    var failingTests = [];
-    var queuedTests = [];
-    function processTestResult(test, results) {
-        var actual = results.actual;
-        var expected = results.expected;
-        if (actual == expected ||
-            expected.split(' ').indexOf(actual) != -1 ||
-            actual == 'SKIP' ||
-            actual.indexOf('PASS') != -1 ||
-            (expected.indexOf('FAIL') != -1 && actual.indexOf('TIMEOUT') == -1)) {
-            continue;
-        }
-
-        results.name = test;
-
-        if (queuedTestNames.indexOf(test) != -1) {
-            queuedTests.push(results);
-            queuedTestNames.splice(queuedTestNames.indexOf(test), 1);
-        } else {
-            failingTests.push(results);
-        }
-    }
-
-    function gatherTests(path, testTree) {
-        if ('actual' in testTree) {
-            processTestResult(path, testTree);
-        } else {
-            if (path) {
-              path += '/';
-            }
-            for (var key in testTree) {
-                gatherTests(path + key, testTree[key]);
-            }
-        }
-    }
-    gatherTests('', results.tests);
-
-    // If we have remaining queued tests that are currently not failing,
-    // synthesize results for them.
-    queuedTestNames.forEach(function(queuedTestName) {
-        queuedTests.push({
-          name: queuedTestName,
-          actual: 'UNKNOWN',
-          expected: 'UNKNOWN'
-        });
-    });
-
-    document.getElementById('loading-indicator').style.display = 'none';
-
-    renderTestResults(
-        failingTests,
-        'add',
-        'Failing tests',
-        'Add to rebaseline queue',
-        'No failing tests.');
-    renderTestResults(
-        queuedTests,
-        'remove',
-        'Queued tests',
-        'Remove from rebaseline queue',
-        'No queued tests.');
-}
-
-function renderTestResults(testResults, formAction, title, submitLabel, emptyMessage)
-{
-    if (testResults.length == 0) {
-        var emptyNode = document.createElement('div');
-        emptyNode.className = 'status';
-        emptyNode.textContent = emptyMessage;
-        document.body.appendChild(emptyNode);
-        return;
-    }
-
-    var form = document.getElementById('form-template').cloneNode(true);
-    form.action = '/builder/' + builderName + '/queue/' + formAction;
-    form.style.display = '';
-    document.body.appendChild(form);
-
-    var testsTable = form.querySelector('.test-table');
-    testsTable.querySelector('caption').textContent = title;
-    testsTable.querySelector('input[type=submit]').value = submitLabel;
-
-    testResults.sort(function(a, b) {
-        return a.name < b.name ? -1 : (a.name > b.name ? 1 : 0);
-    });
-
-    testResults.forEach(function(result) {
-        var testRow = document.createElement('tr');
-
-        var testCell = document.createElement('td');
-        testRow.appendChild(testCell);
-        var testCheckbox = document.createElement('input');
-        testCheckbox.type = 'checkbox';
-        testCheckbox.name = 'test';
-        testCheckbox.value = result.name;
-        testCheckbox.id = result.name;
-        testCell.appendChild(testCheckbox);
-
-        var testName = document.createElement('label');
-        testName.textContent = result.name;
-        testName.setAttribute('for', result.name);
-        testCell.appendChild(testName);
-
-        var expectedCell = document.createElement('td');
-        testRow.appendChild(expectedCell);
-        expectedCell.textContent = result.expected;
-
-        var actualCell = document.createElement('td');
-        testRow.appendChild(actualCell);
-        actualCell.textContent = result.actual;
-
-        var resultsCell = document.createElement('td');
-        testRow.appendChild(resultsCell);
-        var resultsLink = document.createElement('a');
-        resultsLink.target = '_blank';
-        resultsLink.href = TEST_RESULTS_SERVER +
-            'dashboards/flakiness_dashboard.html#tests=' + result.name +
-            '&group=' + builderGroupName;
-        resultsLink.textContent = 'Flakiness dashboard';
-        resultsCell.appendChild(resultsLink);
-
-        testsTable.tBodies[0].appendChild(testRow);
-    });
-}
-
-init();
-</script>
-
-</body>
-</html>
diff --git a/Tools/RebaselineQueueServer/templates/builder-queue-list.html b/Tools/RebaselineQueueServer/templates/builder-queue-list.html
deleted file mode 100644
index 79fa02a..0000000
--- a/Tools/RebaselineQueueServer/templates/builder-queue-list.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-    <title>{{ builder_name|escape }} Queue</title>
-    <link rel="stylesheet" href="/static/styles.css" type="text/css">
-</head>
-<body>
-
-<h1>Queue: {{ builder_name|escape }}</h1>
-
-<ol>
-{% for entry in entries %}
-    <li>
-        {{ entry.test|escape }}
-    </li>
-{% empty %}
-    No tests found in queue.
-{% endfor %}
-</ol>
-
-<a href="/builder/{{ builder_name|escape }}/queue/edit">Edit queue</a>
-</body>
-</html>
diff --git a/Tools/RebaselineQueueServer/templates/home.html b/Tools/RebaselineQueueServer/templates/home.html
deleted file mode 100644
index c6a16ff..0000000
--- a/Tools/RebaselineQueueServer/templates/home.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-  <title>Rebaseline Queue</title>
-  <link rel="stylesheet" href="/static/styles.css" type="text/css">
-</head>
-<body>
-
-<h1>Rebaseline Queue</h1>
-
-<ul>
-    <li><a href="/builder/picker">Browse and enqueue failing tests on builders</a></li>
-    <li>
-        Builders with enqueued tests:
-        <ul>
-{% for builder_name in builder_names %}
-          <li>
-            <a href="/builder/{{ builder_name|escape }}/queue">{{ builder_name|escape }}</a>
-          </li>
-{% empty %}
-        None
-{% endfor %}
-        </ul>
-    </li>
-</ul>
-
-</body>
-</html>
diff --git a/Tools/Scripts/OWNERS b/Tools/Scripts/OWNERS
new file mode 100644
index 0000000..72e8ffc
--- /dev/null
+++ b/Tools/Scripts/OWNERS
@@ -0,0 +1 @@
+*
diff --git a/Tools/Scripts/build-api-tests b/Tools/Scripts/build-api-tests
deleted file mode 100755
index 09d19bf..0000000
--- a/Tools/Scripts/build-api-tests
+++ /dev/null
@@ -1,76 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2010 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
-# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
-# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-# THE POSSIBILITY OF SUCH DAMAGE.
-
-use strict;
-use File::Basename;
-use FindBin;
-use Getopt::Long qw(:config pass_through);
-use lib $FindBin::Bin;
-use webkitdirs;
-use POSIX;
-
-my $showHelp = 0;
-my $clean = 0;
-
-my $programName = basename($0);
-my $usage = <<EOF;
-Usage: $programName [options] [options to pass to build system]
-  --help        Show this help message
-  --clean       Clean up the build directory
-EOF
-
-GetOptions(
-    'help' => \$showHelp,
-    'clean' => \$clean,
-);
-
-if ($showHelp) {
-   print STDERR $usage;
-   exit 1;
-}
-
-checkRequiredSystemConfig();
-setConfiguration();
-chdirWebKit();
-
-# Build
-
-my $result;
-if (isAppleMacWebKit()) {
-    chdir "Source/ThirdParty/gtest";
-    buildXCodeProject("xcode/gtest", $clean, XcodeOptions(), @ARGV);
-    chdir "../../../Tools/TestWebKitAPI" or die;
-    $result = buildXCodeProject("TestWebKitAPI", $clean, XcodeOptions(), @ARGV);
-} elsif (isAppleWinWebKit()) {
-    chdir "Tools/TestWebKitAPI" or die;
-    $result = buildVisualStudioProject("win/TestWebKitAPI.sln", $clean);
-} elsif (isChromium()) {
-    # Chromium build everything in one shot. No need to build anything here.
-    $result = 0;
-} else {
-    die "TestWebKitAPI is not supported on this platform.\n";
-}
-
-exit exitStatus($result);
diff --git a/Tools/Scripts/build-dumprendertree b/Tools/Scripts/build-dumprendertree
deleted file mode 100755
index 4e206f4..0000000
--- a/Tools/Scripts/build-dumprendertree
+++ /dev/null
@@ -1,81 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-use strict;
-use File::Basename;
-use FindBin;
-use Getopt::Long qw(:config pass_through);
-use lib $FindBin::Bin;
-use webkitdirs;
-use POSIX;
-
-my $showHelp = 0;
-my $clean = 0;
-
-my $programName = basename($0);
-my $usage = <<EOF;
-Usage: $programName [options] [options to pass to build system]
-  --help        Show this help message
-  --clean       Clean up the build directory
-  --gtk         Build the GTK+ port
-  --qt          Build the Qt port
-  --wx          Build the wxWindows port
-  --chromium    Build the Chromium port
-  --efl         Build the EFL port
-EOF
-
-GetOptions(
-    'help' => \$showHelp,
-    'clean' => \$clean,
-);
-
-if ($showHelp) {
-   print STDERR $usage;
-   exit 1;
-}
-
-checkRequiredSystemConfig();
-setConfiguration();
-chdirWebKit();
-
-# Build
-chdir "Tools/DumpRenderTree" or die;
-
-my $result;
-if (isAppleMacWebKit()) {
-    $result = buildXCodeProject("DumpRenderTree", $clean, XcodeOptions(), @ARGV);
-} elsif (isAppleWinWebKit()) {
-    $result = buildVisualStudioProject("DumpRenderTree.sln", $clean);
-} elsif (isQt() || isGtk() || isWx() || isChromium() || isEfl()) {
-    # Qt, Gtk wxWindows, Chromium and EFL build everything in one shot. No need to build anything here.
-    $result = 0;
-} else {
-    die "Building not defined for this platform!\n";
-}
-
-exit exitStatus($result);
diff --git a/Tools/Scripts/build-jsc b/Tools/Scripts/build-jsc
deleted file mode 100755
index ca056f8..0000000
--- a/Tools/Scripts/build-jsc
+++ /dev/null
@@ -1,100 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2005 Apple Computer, Inc.  All rights reserved.
-# Copyright (C) 2007 Eric Seidel <eric@webkit.org>
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
-use strict;
-use FindBin;
-use Getopt::Long qw(:config pass_through);
-use lib $FindBin::Bin;
-use webkitdirs;
-use POSIX;
-
-my $coverageSupport = 0;
-my $showHelp = 0;
-
-my $programName = basename($0);
-my $usage = <<EOF;
-Usage: $programName [options] [options to pass to build system]
-  --help                        Show this help message
-  --[no-]coverage               Toggle code coverage support (default: $coverageSupport)
-EOF
-
-GetOptions(
-    'coverage!' => \$coverageSupport,
-    'help' => \$showHelp
-);
-
-if ($showHelp) {
-   print STDERR $usage;
-   exit 1;
-}
-
-checkRequiredSystemConfig();
-setConfiguration();
-chdirWebKit();
-my @options = XcodeOptions();
-my @coverageSupportOptions = ($coverageSupport) ? XcodeCoverageSupportOptions() : ();
-
-if (isQt()) {
-    checkForArgumentAndRemoveFromARGV("--qt");
-    my @projects = ("WTF", "JavaScriptCore");
-    # Pick up the --no-webkit2 option from BUILD_WEBKIT_ARGS if it is needed
-    push @ARGV, split(/ /, $ENV{'BUILD_WEBKIT_ARGS'}) if ($ENV{'BUILD_WEBKIT_ARGS'});
-    push @ARGV, "WEBKIT_CONFIG-=build_webkit2" if checkForArgumentAndRemoveFromARGV("--no-webkit2");
-    my $result = buildQMakeProjects(\@projects, 0, @ARGV);
-    exit exitStatus($result);
-} elsif (cmakeBasedPortName()) {
-    buildCMakeProjectOrExit(0, cmakeBasedPortName(), undef, "jsc", cmakeBasedPortArguments()); # This call only returns if nothing wrong happened
-    exit exitStatus(0);
-}
-
-sub buildMyProject
-{
-    my ($projectDirectory, $projectName) = @_;
-    my $result;
-    chdir $projectDirectory or die "Can't find $projectName directory to build from";
-    if (isAppleMacWebKit()) {
-        $result = system "sh", "-c", ('xcodebuild -project ' . $projectName . '.xcodeproj "$@" | grep -v setenv && exit ${PIPESTATUS[0]}'), "xcodebuild",  @options, @ARGV, @coverageSupportOptions;
-    } elsif (isAppleWinWebKit()) {
-        $result = buildVisualStudioProject("$projectName.vcproj/$projectName.sln");
-    } elsif (isGtk()) {
-        checkForArgumentAndRemoveFromARGV("--gtk");
-        $result = buildGtkProject($projectName, 0);
-    } elsif (isWx()) {
-        # Builds everything in one-shot. No need to build anything here.
-        $result = 0;
-    } else {
-        die "Building not defined for this platform!\n";
-    }
-    exit exitStatus($result) if exitStatus($result);
-    chdirWebKit();
-}
-
-buildMyProject("Source/WTF", "WTF");
-buildMyProject("Source/JavaScriptCore", "JavaScriptCore");
diff --git a/Tools/Scripts/build-webkit b/Tools/Scripts/build-webkit
deleted file mode 100755
index 88948a6..0000000
--- a/Tools/Scripts/build-webkit
+++ /dev/null
@@ -1,456 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
-# Copyright (C) 2009 Google Inc. All rights reserved.
-# Copyright (C) 2010 moiji-mobile.com All rights reserved.
-# Copyright (C) 2011 Research In Motion Limited. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Build script wrapper for the WebKit Open Source Project.
-
-use strict;
-use File::Basename;
-use File::Find;
-use File::Spec;
-use FindBin;
-use Getopt::Long qw(:config pass_through);
-use lib $FindBin::Bin;
-use webkitdirs;
-use webkitperl::FeatureList qw(getFeatureOptionList);
-use POSIX;
-
-sub cMakeArgsFromFeatures();
-sub formatBuildTime($);
-sub writeCongrats();
-
-my $originalWorkingDirectory = getcwd();
-chdirWebKit();
-
-my $showHelp = 0;
-my $clean = 0;
-my $useGYP = 0;
-my $minimal = 0;
-my $installHeaders;
-my $installLibs;
-my $prefixPath;
-my $makeArgs = "";
-my $cmakeArgs = "";
-my $onlyWebKitProject = 0;
-my $noWebKit1 = 0;
-my $noWebKit2 = 0;
-my $coverageSupport = 0;
-my $startTime = time();
-
-my @features = getFeatureOptionList();
-
-# Update defaults from Qt's project file
-if (isQt()) {
-    # Take a sneek peek at the arguments, since we will need the qmake binary early
-    # on to do profile parsing. We also need to know if we're showing the help-text.
-    foreach (@ARGV) {
-        if (/^--qmake=(.*)/) {
-            setQmakeBinaryPath($1);
-        } elsif (/^--help$/) {
-            $showHelp = 1;
-        }
-    }
-
-    my %qtDefaults;
-    if ($showHelp) {
-        %qtDefaults = qtFeatureDefaults();
-    }
-
-    foreach (@features) {
-        $_->{default} = (%qtDefaults ? $qtDefaults{$_->{define}} || 0 : -1);
-    }
-}
-
-# Additional environment parameters
-push @ARGV, split(/ /, $ENV{'BUILD_WEBKIT_ARGS'}) if ($ENV{'BUILD_WEBKIT_ARGS'});
-
-# Initialize values from defaults
-foreach (@ARGV) {
-    if ($_ eq '--minimal') {
-        $minimal = 1;
-    }
-}
-
-# Initialize values from defaults
-foreach (@features) {
-    ${$_->{value}} = ($minimal ? 0 : $_->{default});
-}
-
-my $programName = basename($0);
-my $usage = <<EOF;
-Usage: $programName [options] [options to pass to build system]
-  --help                            Show this help message
-  --clean                           Cleanup the build directory
-  --debug                           Compile with Debug configuration
-  --release                         Compile with Release configuration
-  --sdk=<sdk>                       Use a specific Xcode SDK (iOS and Mac only)
-  --device                          Use the current iphoneos.internal SDK (iOS only)
-  --simulator                       Use the current iphonesimulator SDK (iOS only)
-  --gyp                             Use GYP-generated project files
-  --coverage                        Enable Code Coverage support (Mac only)
-
-  --blackberry                      Build the BlackBerry port on Mac/Linux
-  --chromium                        Build the Chromium port on Mac/Win/Linux
-  --chromium-android                Build the Chromium port on Android
-  --efl                             Build the EFL port
-  --gtk                             Build the GTK+ port
-  --qt                              Build the Qt port
-  --wincairo                        Build using Cairo (rather than CoreGraphics) on Windows
-  --wince                           Build the WinCE port
-
-  --inspector-frontend              Copy changes to the inspector front-end files to the build directory
-
-  --install-headers=<path>          Set installation path for the headers (Qt only)
-  --install-libs=<path>             Set installation path for the libraries (Qt only)
-
-  --prefix=<path>                   Set installation prefix to the given path (Gtk/Efl/BlackBerry only)
-  --makeargs=<arguments>            Optional Makefile flags
-  --qmakearg=<arguments>            Optional qmake flags (Qt only, e.g. --qmakearg="CONFIG+=webkit2" to build WebKit2)
-  --cmakeargs=<arguments>           Optional CMake flags (e.g. --cmakeargs="-DFOO=bar -DCMAKE_PREFIX_PATH=/usr/local")
-
-  --minimal                         No optional features, unless explicitly enabled
-
-  --only-webkit                     Build only the WebKit project
-  --no-webkit1                      Omit WebKit1 code from the build (Qt/EFL/GTK only)
-  --no-webkit2                      Omit WebKit2 code from the build
-
-EOF
-
-my %options = (
-    'help' => \$showHelp,
-    'clean' => \$clean,
-    'gyp' => \$useGYP,
-    'install-headers=s' => \$installHeaders,
-    'install-libs=s' => \$installLibs,
-    'prefix=s' => \$prefixPath,
-    'makeargs=s' => \$makeArgs,
-    'cmakeargs=s' => \$cmakeArgs,
-    'minimal' => \$minimal,
-    'only-webkit' => \$onlyWebKitProject,
-    'no-webkit1' => \$noWebKit1,
-    'no-webkit2' => \$noWebKit2,
-    'coverage' => \$coverageSupport,
-);
-
-# Build usage text and options list from features
-foreach (@features) {
-    my $opt = sprintf("%-35s", "  --[no-]$_->{option}");
-    $usage .= "$opt $_->{desc} (default: $_->{default})\n";
-    $options{"$_->{option}!"} = $_->{value};
-}
-
-GetOptions(%options);
-
-if ($showHelp) {
-   print STDERR $usage;
-   exit 1;
-}
-
-checkRequiredSystemConfig();
-setConfiguration();
-
-my $productDir = productDir();
-
-# Remove 0 byte sized files from productDir after slave lost for Qt buildbots.
-File::Find::find(\&unlinkZeroFiles, $productDir) if (isQt() && -e $productDir);
-
-sub unlinkZeroFiles()
-{
-    my $file = $File::Find::name;
-    # Remove 0 byte sized files, except
-    # - directories (Because they are always 0 byte sized on Windows)
-    # - .d files used for dependency tracking
-    if (! -d $file && ! -s $file && $file !~ m/\.d$/) {
-        unlink $file;
-        print "0 byte sized file removed from build directory: $file\n";
-    }
-}
-
-# Check that all the project directories are there.
-my @projects = ("Source/JavaScriptCore", "Source/WebCore", "Source/WebKit");
-
-# Build WTF as a separate static library on ports which support it.
-splice @projects, 0, 0, "Source/WTF" if isAppleMacWebKit() or isAppleWinWebKit();
-
-for my $dir (@projects) {
-    if (! -d $dir) {
-        die "Error: No $dir directory found. Please do a fresh checkout.\n";
-    }
-}
-
-if (!isQt() && !-d "WebKitLibraries") {
-    die "Error: No WebKitLibraries directory found. Please do a fresh checkout.\n";
-}
-
-# Generate the generate project files from .gyp files
-if ($useGYP) {
-    system("perl", "Tools/Scripts/generate-project-files") == 0 or die "Failed to run generate-project-files";
-}
-
-my @options = ();
-
-if (isAppleMacWebKit()) {
-    push @options, XcodeOptions();
-
-    sub option($$$)
-    {
-        my ($feature, $isEnabled, $defaultValue) = @_;
-        return "" if $defaultValue == $isEnabled;
-        return $feature . "=" . ($isEnabled ? $feature : "");
-    }
-
-    foreach (@features) {
-        my $option = option($_->{define}, ${$_->{value}}, $_->{default});
-        push @options, $option unless $option eq "";
-    }
-
-    # ANGLE must come before WebCore
-    splice @projects, 0, 0, "Source/ThirdParty/ANGLE";
-
-    # WebKit2 is only supported in SnowLeopard and later at present.
-    push @projects, ("Source/WebKit2", "Tools/MiniBrowser") if osXVersion()->{"minor"} >= 6 and !$noWebKit2;
-
-    # Build Tools needed for Apple ports
-    push @projects, ("Tools/DumpRenderTree", "Tools/WebKitTestRunner", "Source/ThirdParty/gtest", "Tools/TestWebKitAPI");
-    
-    # Copy library and header from WebKitLibraries to a findable place in the product directory.
-    (system("perl", "Tools/Scripts/copy-webkitlibraries-to-product-directory", $productDir) == 0) or die;
-} elsif (isWinCairo()) {
-    (system("perl Tools/Scripts/update-webkit-wincairo-libs") == 0) or die;
-} elsif (isAppleWinWebKit()) {
-    # Copy WebKitSupportLibrary to the correct location in WebKitLibraries so it can be found.
-    # Will fail if WebKitSupportLibrary.zip is not in source root.
-    (system("perl Tools/Scripts/update-webkit-support-libs") == 0) or die;
-} elsif (isQt()) {
-    push @options, "--install-headers=" . $installHeaders if defined($installHeaders);
-    push @options, "--install-libs=" . $installLibs if defined($installLibs);
-    push @options, "--makeargs=" . $makeArgs if $makeArgs;
-    push @options, "WEBKIT_CONFIG-=build_webkit1" if $noWebKit1;
-    push @options, "WEBKIT_CONFIG-=build_webkit2" if $noWebKit2;
-
-    if (checkForArgumentAndRemoveFromARGV("-2")) {
-        print "Note: WebKit2 is now built by default, you don't need to pass -2. Disable using --no-webkit2\n";
-    }
-
-    @options = (@ARGV, @options);
-
-    foreach (@features) {
-        if ($_->{define} && ${$_->{value}} != $_->{default}) {
-            my $define = lc($_->{define});
-            $define =~ s/^enable_//;
-            push @options, "WEBKIT_CONFIG" . (${$_->{value}} == 1 ? "+" : "-") . "=" . $define;
-        }
-    }
-}
-
-# If asked to build just the WebKit project, overwrite the projects
-# list after all of the port specific tweaks have been made to
-# build options, etc.
-@projects = ("Source/WebKit") if $onlyWebKitProject;
-
-if (isInspectorFrontend()) {
-    exit exitStatus(copyInspectorFrontendFiles());
-}
-
-my $result = 0;
-
-if (isWx()) {
-    $makeArgs .= " --port=wx";
-
-    downloadWafIfNeeded();
-    @options = split(/ /, $makeArgs);
-    @projects = ();
-    $result = buildWafProject('.', $clean, @options);
-    exit exitStatus($result) if exitStatus($result);
-}
-
-if (isChromium()) {
-    # Currently chromium does not honour the features passed to build-webkit.
-    # Until this is solved, we issue a warning about that.
-    foreach (@features) {
-        if (${$_->{value}} ne $_->{default}) {
-            print "\n";
-            print "===========================================================\n";
-            print " Chromium does not honor the features passed to build-webkit.\n";
-            print " The preferred way is to set up your overrides in ~/.gyp/include.gypi.\n";
-            print " See https://trac.webkit.org/wiki/Chromium#Buildingwithfeaturedefines\n";
-            print " on how to do that.\n";
-            print "===========================================================\n";
-            last;
-        }
-    }
-
-    @options = @ARGV;
-    # Chromium doesn't build by project directories.
-    @projects = ();
-    push @options, "--makeargs=" . $makeArgs if $makeArgs;
-    $result = buildChromium($clean, @options);
-    exit exitStatus($result) if exitStatus($result);
-}
-
-if (isEfl()) {
-    # By default we build using all of the available CPUs.
-    $makeArgs .= ($makeArgs ? " " : "") . "-j" . numberOfCPUs() if $makeArgs !~ /-j\s*\d+/;
-    $cmakeArgs = "-DENABLE_WEBKIT=OFF "  . $cmakeArgs if $noWebKit1;
-    $cmakeArgs = "-DENABLE_WEBKIT2=OFF " . $cmakeArgs if $noWebKit2;
-
-    # We remove CMakeCache to avoid the bots to reuse cached flags when
-    # we enable new features. This forces a reconfiguration.
-    removeCMakeCache();
-
-    buildCMakeProjectOrExit($clean, "Efl", $prefixPath, $makeArgs, (cmakeBasedPortArguments(), cMakeArgsFromFeatures()), $cmakeArgs);
-}
-
-if (isWinCE()) {
-    buildCMakeProjectOrExit($clean, "WinCE", $prefixPath, $makeArgs, (cmakeBasedPortArguments(), cMakeArgsFromFeatures()), $cmakeArgs);
-}
-
-if (isBlackBerry()) {
-    my $numberOfJobs;
-    if ($ENV{"USE_ICECC"}) {
-        $numberOfJobs = 50; # 50 is the number we choose for internal development
-    } else {
-        $numberOfJobs = numberOfCPUs();
-    }
-    $makeArgs .= ($makeArgs ? " " : "") . "-j" . $numberOfJobs if $makeArgs !~ /-j\s*\d+/;
-    $prefixPath = $ENV{"STAGE_DIR"} unless $prefixPath;
-    buildCMakeProjectOrExit($clean, "BlackBerry", $prefixPath, $makeArgs, (cmakeBasedPortArguments(), cMakeArgsFromFeatures()), $cmakeArgs);
-}
-
-if (isQt()) {
-    @projects = (); # An empty projects list will build the default projects
-    $result = buildQMakeProjects(\@projects, $clean, @options);
-    exit exitStatus($result) if exitStatus($result);
-}
-
-# Build, and abort if the build fails.
-for my $dir (@projects) {
-    chdir $dir or die;
-    $result = 0;
-
-    # For Gtk the WebKit project builds all others
-    if (isGtk() && $dir ne "Source/WebKit") {
-        chdirWebKit();
-        next;
-    }
-
-    my $project = basename($dir);
-    if (isGtk()) {
-        $result = buildGtkProject($project, $clean, $prefixPath, $makeArgs, $noWebKit1, $noWebKit2, @features);
-    } elsif (isAppleMacWebKit()) {
-        my @local_options = @options;
-        push @local_options, XcodeCoverageSupportOptions() if $coverageSupport && $project ne "ANGLE";
-        my $useGYPProject = $useGYP && ($project =~ "WebCore|JavaScriptCore");
-        my $projectPath = $useGYPProject ? "gyp/$project" : $project;
-        $projectPath = $project =~ /gtest/ ? "xcode/gtest" : $project;
-        $result = buildXCodeProject($projectPath, $clean, @local_options, @ARGV);
-    } elsif (isAppleWinWebKit()) {
-        if ($project eq "WebKit") {
-            $result = buildVisualStudioProject("win/WebKit.vcproj/WebKit.sln", $clean);
-        }
-    }
-    # Various build* calls above may change the CWD.
-    chdirWebKit();
-
-    if (exitStatus($result)) {
-        my $scriptDir = relativeScriptsDir();
-        if (usingVisualStudioExpress()) {
-            # Visual Studio Express is so lame it can't stdout build failures.
-            # So we find its logs and dump them to the console ourselves.
-            system(File::Spec->catfile($scriptDir, "print-vse-failure-logs"));
-        }
-        if (isAppleWinWebKit()) {
-            print "\n\n===== BUILD FAILED ======\n\n";
-            print "Please ensure you have run $scriptDir/update-webkit to install dependencies.\n\n";
-            my $baseProductDir = baseProductDir();
-            print "You can view build errors by checking the BuildLog.htm files located at:\n$baseProductDir/obj/<project>/<config>.\n";
-        }
-        exit exitStatus($result);
-    }
-}
-
-# Don't report the "WebKit is now built" message after a clean operation.
-exit if $clean;
-
-# Don't report congrats message if build was interrupted by the user.
-exit if ($result & 127) == SIGINT;
-
-# Explicitly chdir back to where exit will take us anyway, since the following "launcher"
-# message is relative to that directory.
-chdir $originalWorkingDirectory;
-
-# Write out congratulations message.
-writeCongrats();
-
-exit 0;
-
-sub cMakeArgsFromFeatures()
-{
-    my @args;
-    foreach (@features) {
-        my $featureName = $_->{define};
-        if ($featureName) {
-            my $featureEnabled = ${$_->{value}} ? "ON" : "OFF";
-            push @args, "-D$featureName=$featureEnabled";
-        }
-    }
-    return @args;
-}
-
-sub formatBuildTime($)
-{
-    my ($buildTime) = @_;
-
-    my $buildHours = int($buildTime / 3600);
-    my $buildMins = int(($buildTime - $buildHours * 3600) / 60);
-    my $buildSecs = $buildTime - $buildHours * 3600 - $buildMins * 60;
-
-    if ($buildHours) {
-        return sprintf("%dh:%02dm:%02ds", $buildHours, $buildMins, $buildSecs);
-    }
-    return sprintf("%02dm:%02ds", $buildMins, $buildSecs);
-}
-
-sub writeCongrats()
-{
-    my $launcherPath = launcherPath();
-    my $launcherName = launcherName();
-    my $endTime = time();
-    my $buildTime = formatBuildTime($endTime - $startTime);
-
-    print "\n";
-    print "====================================================================\n";
-    print " WebKit is now built ($buildTime). \n";
-    if (!isChromium()) {
-        print " To run $launcherName with this newly-built code, use the\n";
-        print " \"$launcherPath\" script.\n";
-    }
-    print "====================================================================\n";
-}
diff --git a/Tools/Scripts/build-webkittestrunner b/Tools/Scripts/build-webkittestrunner
deleted file mode 100755
index e5b2354..0000000
--- a/Tools/Scripts/build-webkittestrunner
+++ /dev/null
@@ -1,73 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2010 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
-# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
-# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-# THE POSSIBILITY OF SUCH DAMAGE.
-
-use strict;
-use File::Basename;
-use FindBin;
-use Getopt::Long qw(:config pass_through);
-use lib $FindBin::Bin;
-use webkitdirs;
-use POSIX;
-
-my $showHelp = 0;
-my $clean = 0;
-
-my $programName = basename($0);
-my $usage = <<EOF;
-Usage: $programName [options] [options to pass to build system]
-  --help        Show this help message
-  --clean       Clean up the build directory
-EOF
-
-GetOptions(
-    'help' => \$showHelp,
-    'clean' => \$clean,
-);
-
-if ($showHelp) {
-   print STDERR $usage;
-   exit 1;
-}
-
-checkRequiredSystemConfig();
-setConfiguration();
-chdirWebKit();
-
-# Build
-chdir "Tools/WebKitTestRunner" or die;
-
-my $result;
-if (isAppleMacWebKit()) {
-    $result = buildXCodeProject("WebKitTestRunner", $clean, XcodeOptions(), @ARGV);
-} elsif (isAppleWinWebKit()) {
-    $result = buildVisualStudioProject("WebKitTestRunner.sln", $clean);
-} elsif (isQt() || isGtk() || isEfl()) {
-    # Qt and GTK+ build everything in one shot. No need to build anything here.
-    $result = 0;
-} else {
-    die "WebKitTestRunner is not supported on this platform.\n";
-}
-
-exit exitStatus($result);
diff --git a/Tools/Scripts/check-Xcode-source-file-types b/Tools/Scripts/check-Xcode-source-file-types
deleted file mode 100755
index 57a70b9..0000000
--- a/Tools/Scripts/check-Xcode-source-file-types
+++ /dev/null
@@ -1,168 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2007, 2008, 2009, 2010 Apple Inc.  All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Script to check that source file extensions match file types in Xcode project.pbxproj files.
-
-# TODO
-# - Add support for file types other than source code files.
-# - Can't differentiate between sourcecode.c.h and sourcecode.cpp.h.
-#   (Hint: Use gcc -x c/objective-c/c++/objective-c++ -E.  It will
-#   take time to check each header using gcc, so make it a switch.)
-
-use strict;
-
-use File::Basename;
-use File::Spec;
-use File::Temp qw(tempfile);
-use Getopt::Long;
-
-# Map of Xcode file types to file extensions.
-my %typeExtensionMap = qw(
-    sourcecode.c.c        .c
-    sourcecode.c.h        .h
-    sourcecode.c.objc     .m
-    sourcecode.cpp.h      .h
-    sourcecode.cpp.cpp    .cpp
-    sourcecode.cpp.objcpp .mm
-    sourcecode.exports    .exp
-    sourcecode.javascript .js
-    sourcecode.make       .make
-    sourcecode.mig        .defs
-    sourcecode.yacc       .y
-);
-
-# Map of file extensions to Xcode file types.
-my %extensionTypeMap = map { $typeExtensionMap{$_} => $_ } keys %typeExtensionMap;
-$extensionTypeMap{'.h'} = 'sourcecode.c.h'; # See TODO list.
-
-my $shouldFixIssues = 0;
-my $printWarnings = 1;
-my $showHelp;
-
-my $getOptionsResult = GetOptions(
-    'f|fix'          => \$shouldFixIssues,
-    'h|help'         => \$showHelp,
-    'w|warnings!'    => \$printWarnings,
-);
-
-if (scalar(@ARGV) == 0 && !$showHelp) {
-    print STDERR "ERROR: No Xcode project files (project.pbxproj) listed on command-line.\n";
-    undef $getOptionsResult;
-}
-
-if (!$getOptionsResult || $showHelp) {
-    print STDERR <<__END__;
-Usage: @{[ basename($0) ]} [options] path/to/project.pbxproj [path/to/project.pbxproj ...]
-  -f|--fix            fix mismatched types in Xcode project file
-  -h|--help           show this help message
-  -w|--[no-]warnings  show or suppress warnings (default: show warnings)
-__END__
-    exit 1;
-}
-
-for my $projectFile (@ARGV) {
-    my $issuesFound = 0;
-    my $issuesFixed = 0;
-
-    if (basename($projectFile) =~ /\.xcodeproj$/) {
-        $projectFile = File::Spec->catfile($projectFile, "project.pbxproj");
-    }
-
-    if (basename($projectFile) ne "project.pbxproj") {
-        print STDERR "WARNING: Not an Xcode project file: $projectFile\n" if $printWarnings;
-        next;
-    }
-
-    open(IN, "< $projectFile") || die "Could not open $projectFile: $!";
-
-    my ($OUT, $tempFileName);
-    if ($shouldFixIssues) {
-        ($OUT, $tempFileName) = tempfile(
-            basename($projectFile) . "-XXXXXXXX",
-            DIR => dirname($projectFile),
-            UNLINK => 0,
-        );
-
-        # Clean up temp file in case of die()
-        $SIG{__DIE__} = sub {
-            close(IN);
-            close($OUT);
-            unlink($tempFileName);
-        };
-    }
-
-    # Fast-forward to "Begin PBXFileReference section".
-    while (my $line = <IN>) {
-        print $OUT $line if $shouldFixIssues;
-        last if $line =~ m#^\Q/* Begin PBXFileReference section */\E$#;
-    }
-
-    while (my $line = <IN>) {
-        if ($line =~ m#^\Q/* End PBXFileReference section */\E$#) {
-            print $OUT $line if $shouldFixIssues;
-            last;
-        }
-
-        if ($line =~ m#^\s*[A-Z0-9]{24} /\* (.+) \*/\s+=\s+\{.*\s+explicitFileType = (sourcecode[^;]*);.*\s+path = ([^;]+);.*\};$#) {
-            my $fileName = $1;
-            my $fileType = $2;
-            my $filePath = $3;
-            my (undef, undef, $fileExtension) = map { lc($_) } fileparse(basename($filePath), qr{\.[^.]+$});
-
-            if (!exists $typeExtensionMap{$fileType}) {
-                $issuesFound++;
-                print STDERR "WARNING: Unknown file type '$fileType' for file '$filePath'.\n" if $printWarnings;
-            } elsif ($typeExtensionMap{$fileType} ne $fileExtension) {
-                $issuesFound++;
-                print STDERR "WARNING: Incorrect file type '$fileType' for file '$filePath'.\n" if $printWarnings;
-                $line =~ s/(\s+)explicitFileType( = )(sourcecode[^;]*);/$1lastKnownFileType$2$extensionTypeMap{$fileExtension};/;
-                $issuesFixed++ if $shouldFixIssues;
-            }
-        }
-
-        print $OUT $line if $shouldFixIssues;
-    }
-
-    # Output the rest of the file.
-    print $OUT <IN> if $shouldFixIssues;
-
-    close(IN);
-
-    if ($shouldFixIssues) {
-        close($OUT);
-
-        unlink($projectFile) || die "Could not delete $projectFile: $!";
-        rename($tempFileName, $projectFile) || die "Could not rename $tempFileName to $projectFile: $!";
-    }
-
-    if ($printWarnings) {
-        printf STDERR "%s issues found for $projectFile.\n", ($issuesFound ? $issuesFound : "No");
-        print STDERR "$issuesFixed issues fixed for $projectFile.\n" if $issuesFixed && $shouldFixIssues;
-        print STDERR "NOTE: Open $projectFile in Xcode to let it have its way with the file.\n" if $issuesFixed;
-        print STDERR "\n";
-    }
-}
-
-exit 0;
diff --git a/Tools/Scripts/check-for-webkit-framework-include-consistency b/Tools/Scripts/check-for-webkit-framework-include-consistency
deleted file mode 100755
index fabc692..0000000
--- a/Tools/Scripts/check-for-webkit-framework-include-consistency
+++ /dev/null
@@ -1,104 +0,0 @@
-#!/usr/bin/env ruby
-
-# Copyright (C) 2010 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
-# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
-# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-# THE POSSIBILITY OF SUCH DAMAGE.
-
-
-base_directory = ENV['TARGET_BUILD_DIR'] or throw "Unable to find TARGET_BUILD_DIR in the environment!"
-is_shallow_bundle = (ENV['SHALLOW_BUNDLE'] || "NO").upcase == "YES"
-
-Dir.chdir base_directory
-
-$PERMITTED_INCLUDE_TYPES = { :public => [ :public ], :private => [ :public, :private ] }
-
-$HEADER_NAMES_TO_TYPE = { }
-$HEADERS_BY_TYPE = { :public => [], :private => [] }
-
-$error_printed = false
-
-def print_error msg
-  $error_printed = true
-  STDERR.puts "ERROR: #{msg}"
-end
-
-def build_header_maps is_shallow_bundle
-  current_version_path = is_shallow_bundle ? "" : "Versions/A/"
-  all_headers = `find WebKit.framework/#{current_version_path}{,Private}Headers -type f -name '*.h'`.split
-
-  all_headers.each do |header|
-    if /\/Headers\/(.*)/.match(header)
-      $HEADER_NAMES_TO_TYPE[$1] = :public
-      $HEADERS_BY_TYPE[:public] << header
-    elsif /\/PrivateHeaders\/(.*)/.match(header)
-      $HEADER_NAMES_TO_TYPE[$1] = :private
-      $HEADERS_BY_TYPE[:private] << header
-    else
-      print_error "Unknown header type: #{header}"
-    end
-  end
-end
-
-def resolve_include(header, included_header, permitted_types)
-  # Ignore includes that aren't in the typical framework style.
-  return unless /<([^\/]+)\/(.*)>/.match(included_header)
-
-  framework, included_header_name = [$1, $2]
-
-  # Ignore includes that aren't related to other WebKit headers.
-  return unless framework =~ /^Web/
-
-  # A header of any type including a WebCore header is a recipe for disaster.
-  if framework == "WebCore"
-    print_error "#{header} included #{included_header}!"
-    return
-  end
-
-  header_type = $HEADER_NAMES_TO_TYPE[included_header_name]
-
-  if not header_type
-    print_error "#{header} included #{included_header} but I could not find a header of that name!"
-  elsif not permitted_types.member?(header_type)
-    print_error "#{header} included #{included_header} which is #{header_type}!"
-  end
-end
-
-def verify_includes(header, permitted_types)
-  File.open(header) do |file|
-    file.each_line do |line|
-      if /#(include|import) (.*)/.match(line)
-        resolve_include(header, $2, permitted_types)
-      end
-    end
-  end
-end
-
-build_header_maps is_shallow_bundle
-
-$HEADERS_BY_TYPE.each do |header_type, headers|
-  permitted_types = $PERMITTED_INCLUDE_TYPES[header_type]
-  headers.each do |header|
-    verify_includes header, permitted_types
-  end
-end
-
-exit 1 if $error_printed
diff --git a/Tools/Scripts/check-inspector-strings b/Tools/Scripts/check-inspector-strings
deleted file mode 100755
index 267c03a..0000000
--- a/Tools/Scripts/check-inspector-strings
+++ /dev/null
@@ -1,171 +0,0 @@
-#!/usr/bin/env python
-#
-# Copyright (C) 2011 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#    * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#    * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#    * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import codecs
-import logging
-import os
-import os.path
-import re
-import sys
-
-from webkitpy.common.checkout.scm import SCMDetector
-from webkitpy.common.system.filesystem import FileSystem
-from webkitpy.common.system.executive import Executive
-from webkitpy.common.system.logutils import configure_logging
-from webkitpy.style.checker import ProcessorBase
-from webkitpy.style.filereader import TextFileReader
-from webkitpy.style.main import change_directory
-
-_inspector_directory = "Source/WebCore/inspector/front-end"
-_devtools_directory = "Source/WebKit/chromium/src/js"
-_localized_strings = "Source/WebCore/English.lproj/localizedStrings.js"
-
-_log = logging.getLogger("check-inspector-strings")
-
-class StringsExtractor(ProcessorBase):
-    def __init__(self, patterns):
-        self._patterns = patterns
-        self.strings = []
-        for p in self._patterns:
-            self.strings.append([])
-
-    def should_process(self, file_path):
-        return file_path.endswith(".js") and (not file_path.endswith("InjectedScript.js"))
-
-    def process(self, lines, file_path, line_numbers=None):
-        for line in lines:
-            comment_start = line.find("//")
-            if comment_start != -1:
-                line = line[:comment_start]
-            index = 0
-            for pattern in self._patterns:
-                line_strings = re.findall(pattern, line)
-                for string in line_strings:
-                    self.strings[index].append(string)
-                index += 1
-
-class LocalizedStringsExtractor:
-    def __init__(self):
-        self.localized_strings = []
-
-    def process_file(self, file_path):
-        localized_strings_file = codecs.open(file_path, encoding="utf-8", mode="r")
-        try:
-            contents = localized_strings_file.read()
-            lines = contents.split("\n")
-            for line in lines:
-                match = re.match(r"localizedStrings\[\"((?:[^\"\\]|\\.)*?)\"", line)
-                if match:
-                    self.localized_strings.append(match.group(1))
-        finally:
-            localized_strings_file.close()
-
-def extract_ui_strings(str, out):
-    line_unrecognized = False
-    idx = 0
-    while idx < len(str):
-        idx = str.find("WebInspector.UIString(", idx)
-        if idx == -1:
-            break
-        idx = idx + len("WebInspector.UIString(")
-        balance = 1
-        item_recognized = False
-        while idx < len(str):
-            if str[idx] == ')':
-                balance = balance - 1
-                if balance == 0:
-                    break
-            elif str[idx] == '(':
-                balance = balance + 1
-            elif balance == 1:
-                if str[idx] == ',':
-                    break
-                elif str[idx] == '"':
-                    str_idx = idx + 1
-                    while str_idx < len(str):
-                        if str[str_idx] == '\\':
-                            str_idx = str_idx + 1
-                        elif str[str_idx] == '"':
-                            out.add(str[idx + 1 : str_idx])
-                            idx = str_idx
-                            item_recognized = True
-                            break
-                        str_idx = str_idx + 1
-            idx = idx + 1
-        if not item_recognized:
-            line_unrecognized = True
-    if line_unrecognized:
-        _log.info("Unrecognized: %s" % str)
-
-if __name__ == "__main__":
-    configure_logging()
-
-    cwd = os.path.abspath(os.curdir)
-    filesystem = FileSystem()
-    scm = SCMDetector(filesystem, Executive()).detect_scm_system(cwd)
-
-    if scm is None:
-        _log.error("WebKit checkout not found: You must run this script "
-                   "from within a WebKit checkout.")
-        sys.exit(1)
-
-    checkout_root = scm.checkout_root
-    _log.debug("WebKit checkout found with root: %s" % checkout_root)
-    change_directory(filesystem, checkout_root=checkout_root, paths=None)
-
-    strings_extractor = StringsExtractor([r"(WebInspector\.UIString\(.*)", r"\"((?:[^\"\\]|\\.)*?)\""])
-    file_reader = TextFileReader(filesystem, strings_extractor)
-    file_reader.process_paths([_inspector_directory, _devtools_directory])
-    localized_strings_extractor = LocalizedStringsExtractor()
-    localized_strings_extractor.process_file(_localized_strings)
-    raw_ui_strings = frozenset(strings_extractor.strings[0])
-    ui_strings = set()
-    for s in raw_ui_strings:
-        extract_ui_strings(s, ui_strings)
-    strings = frozenset(strings_extractor.strings[1])
-    localized_strings = frozenset(localized_strings_extractor.localized_strings)
-
-    new_strings = ui_strings - localized_strings
-    for s in new_strings:
-        _log.info("New: \"%s\"" % (s))
-    old_strings = localized_strings - ui_strings
-    suspicious_strings = strings & old_strings
-    for s in suspicious_strings:
-        _log.info("Suspicious: \"%s\"" % (s))
-    unused_strings = old_strings - strings
-    for s in unused_strings:
-        _log.info("Unused: \"%s\"" % (s))
-
-    localized_strings_duplicates = {}
-    for s in localized_strings_extractor.localized_strings:
-        if s in localized_strings_duplicates:
-            _log.info("Duplicate: \"%s\"" % (s))
-        else:
-            localized_strings_duplicates.setdefault(s)
diff --git a/Tools/Scripts/copy-webkitlibraries-to-product-directory b/Tools/Scripts/copy-webkitlibraries-to-product-directory
deleted file mode 100755
index 67a1e3b..0000000
--- a/Tools/Scripts/copy-webkitlibraries-to-product-directory
+++ /dev/null
@@ -1,68 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2005, 2008, 2010, 2011, 2012 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-use strict;
-use FindBin;
-use lib $FindBin::Bin;
-use webkitdirs;
-
-my $productDir = shift @ARGV;
-$productDir = $ENV{BUILT_PRODUCTS_DIR} if !$productDir;
-
-chdirWebKit();
-
-my @librariesToCopy = (
-    "libWebKitSystemInterfaceLion.a",
-    "libWebKitSystemInterfaceMountainLion.a",
-    "libWebCoreSQLite3.a",
-);
-
-my $ranlib = `xcrun -find ranlib`;
-chomp $ranlib;
-foreach my $libName (@librariesToCopy) {
-    my $srcLib = "WebKitLibraries/" . $libName;
-    my $lib = "$productDir/" . $libName;
-    if (!-e $lib || -M $lib > -M $srcLib) {
-        print "Updating $lib\n";
-        system "ditto", $srcLib, $lib;
-        system $ranlib, $lib;
-    }
-}
-
-# FIXME: This code should be abstracted to not be copy/paste.
-my $srcHeader = "WebKitLibraries/WebKitSystemInterface.h";
-my $header = "$productDir/usr/local/include/WebKitSystemInterface.h";
-if (!-e $header || -M $header > -M $srcHeader) {
-    print "Updating $header\n";
-    system "mkdir", "-p", "$productDir/usr/local/include";
-    system "ditto", $srcHeader, $header;
-}
-
-my $srcHeaderDir = "WebKitLibraries/WebCoreSQLite3";
-my $headerDir = "$productDir/WebCoreSQLite3";
-if (!-e $headerDir || -M $headerDir > -M $srcHeaderDir) {
-    print "Updating $headerDir\n";
-    system "ditto", $srcHeaderDir, $headerDir;
-}
diff --git a/Tools/Scripts/create-exports b/Tools/Scripts/create-exports
deleted file mode 100755
index c645d55..0000000
--- a/Tools/Scripts/create-exports
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/usr/bin/perl -w
-
-while (<>) {
-    print "$1\n" if /^\s*\"(.+)\", referenced from:$/;
-}
diff --git a/Tools/Scripts/debug-minibrowser b/Tools/Scripts/debug-minibrowser
deleted file mode 100755
index 052912d..0000000
--- a/Tools/Scripts/debug-minibrowser
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2005, 2007 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Simplified "debug" script for debugging the WebKit2 MiniBrowser.
-
-use strict;
-use FindBin;
-use lib $FindBin::Bin;
-use webkitdirs;
-
-printHelpAndExitForRunAndDebugWebKitAppIfNeeded(INCLUDE_OPTIONS_FOR_DEBUGGING);
-
-setConfiguration();
-
-exit exitStatus(debugMiniBrowser());
diff --git a/Tools/Scripts/debug-safari b/Tools/Scripts/debug-safari
deleted file mode 100755
index 99273e0..0000000
--- a/Tools/Scripts/debug-safari
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2007 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer.
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution.
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Script to run Safari in the platform's debugger for the WebKit Open Source Project.
-
-use strict;
-use FindBin;
-use lib $FindBin::Bin;
-use webkitdirs;
-
-printHelpAndExitForRunAndDebugWebKitAppIfNeeded(INCLUDE_OPTIONS_FOR_DEBUGGING);
-
-setConfiguration();
-
-exit exitStatus(debugSafari());
diff --git a/Tools/Scripts/ensure-valid-python b/Tools/Scripts/ensure-valid-python
index b361641..c225dae 100755
--- a/Tools/Scripts/ensure-valid-python
+++ b/Tools/Scripts/ensure-valid-python
@@ -31,7 +31,6 @@
 use Getopt::Long;
 
 use lib $FindBin::Bin;
-use webkitdirs;
 use VCSUtils;
 
 sub checkPythonVersion()
diff --git a/Tools/Scripts/export-w3c-performance-wg-tests b/Tools/Scripts/export-w3c-performance-wg-tests
index 1a41d44..3b98a42 100755
--- a/Tools/Scripts/export-w3c-performance-wg-tests
+++ b/Tools/Scripts/export-w3c-performance-wg-tests
@@ -54,7 +54,7 @@
         ('localhost:8000', 'www.w3c-test.org'),   # This is the alternate host for cross-server requests.
         ('127.0.0.1:8000', 'w3c-test.org'),       # This is the primary test server.
         ('w3c/webperf', 'webperf/tests'),         # We prepend /w3c to all of our paths.
-        ('/w3c/resources/testharness', '/resources/testharness'),
+        ('/w3c/resources/', '/resources/'),
         ('\n', '\r\n'),                           # Convert from *NIX format.
 ]
 
diff --git a/Tools/Scripts/extract-localizable-strings b/Tools/Scripts/extract-localizable-strings
deleted file mode 100755
index 88f3684..0000000
--- a/Tools/Scripts/extract-localizable-strings
+++ /dev/null
@@ -1,392 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2006, 2007, 2009, 2010 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# This script is like the genstrings tool (minus most of the options) with these differences.
-#
-#    1) It uses the names UI_STRING and UI_STRING_WITH_KEY for the macros, rather than the macros
-#       from NSBundle.h, and doesn't support tables (although they would be easy to add).
-#    2) It supports UTF-8 in key strings (and hence uses "" strings rather than @"" strings;
-#       @"" strings only reliably support ASCII since they are decoded based on the system encoding
-#       at runtime, so give different results on US and Japanese systems for example).
-#    3) It looks for strings that are not marked for localization, using both macro names that are
-#       known to be used for debugging in Intrigue source code and an exceptions file.
-#    4) It finds the files to work on rather than taking them as parameters, and also uses a
-#       hardcoded location for both the output file and the exceptions file.
-#       It would have been nice to use the project to find the source files, but it's too hard to
-#       locate source files after parsing a .pbxproj file.
-
-# The exceptions file has a list of strings in quotes, filenames, and filename/string pairs separated by :.
-
-use strict;
-
-sub UnescapeHexSequence($);
-
-my %isDebugMacro = ( ASSERT_WITH_MESSAGE => 1, LOG_ERROR => 1, ERROR => 1, NSURL_ERROR => 1, FATAL => 1, LOG => 1, LOG_WARNING => 1, UI_STRING_LOCALIZE_LATER => 1, UI_STRING_LOCALIZE_LATER_KEY => 1, LPCTSTR_UI_STRING_LOCALIZE_LATER => 1, UNLOCALIZED_STRING => 1, UNLOCALIZED_LPCTSTR => 1, dprintf => 1, NSException => 1, NSLog => 1, printf => 1 );
-
-@ARGV >= 2 or die "Usage: extract-localizable-strings <exceptions file> <file to update> [ directory... ]\nDid you mean to run update-webkit-localizable-strings instead?\n";
-
-my $exceptionsFile = shift @ARGV;
--f $exceptionsFile or die "Couldn't find exceptions file $exceptionsFile\n" unless $exceptionsFile eq "-";
-
-my $fileToUpdate = shift @ARGV;
--f $fileToUpdate or die "Couldn't find file to update $fileToUpdate\n";
-
-my $warnAboutUnlocalizedStrings = $exceptionsFile ne "-";
-
-my @directories = ();
-my @directoriesToSkip = ();
-if (@ARGV < 1) {
-    push(@directories, ".");
-} else {
-    for my $dir (@ARGV) {
-        if ($dir =~ /^-(.*)$/) {
-            push @directoriesToSkip, $1;
-        } else {
-            push @directories, $dir;
-        }
-    }
-}
-
-my $sawError = 0;
-
-my $localizedCount = 0;
-my $keyCollisionCount = 0;
-my $notLocalizedCount = 0;
-my $NSLocalizeCount = 0;
-
-my %exception;
-my %usedException;
-
-if ($exceptionsFile ne "-" && open EXCEPTIONS, $exceptionsFile) {
-    while (<EXCEPTIONS>) {
-        chomp;
-        if (/^"([^\\"]|\\.)*"$/ or /^[-_\/\w\s.]+.(h|m|mm|c|cpp)$/ or /^[-_\/\w\s.]+.(h|m|mm|c|cpp):"([^\\"]|\\.)*"$/) {
-            if ($exception{$_}) {
-                print "$exceptionsFile:$.:exception for $_ appears twice\n";
-                print "$exceptionsFile:$exception{$_}:first appearance\n";
-            } else {
-                $exception{$_} = $.;
-            }
-        } else {
-            print "$exceptionsFile:$.:syntax error\n";
-        }
-    }
-    close EXCEPTIONS;
-}
-
-my $quotedDirectoriesString = '"' . join('" "', @directories) . '"';
-for my $dir (@directoriesToSkip) {
-    $quotedDirectoriesString .= ' -path "' . $dir . '" -prune -o';
-}
-
-my @files = ( split "\n", `find $quotedDirectoriesString \\( -name "*.h" -o -name "*.m" -o -name "*.mm" -o -name "*.c" -o -name "*.cpp" \\)` );
-
-for my $file (sort @files) {
-    next if $file =~ /\/\w+LocalizableStrings\w*\.h$/ || $file =~ /\/LocalizedStrings\.h$/;
-
-    $file =~ s-^./--;
-
-    open SOURCE, $file or die "can't open $file\n";
-    
-    my $inComment = 0;
-    
-    my $expected = "";
-    my $macroLine;
-    my $macro;
-    my $UIString;
-    my $key;
-    my $comment;
-    
-    my $string;
-    my $stringLine;
-    my $nestingLevel;
-    
-    my $previousToken = "";
-
-    while (<SOURCE>) {
-        chomp;
-        
-        # Handle continued multi-line comment.
-        if ($inComment) {
-            next unless s-.*\*/--;
-            $inComment = 0;
-        }
-    
-        # Handle all the tokens in the line.
-        while (s-^\s*([#\w]+|/\*|//|[^#\w/'"()\[\],]+|.)--) {
-            my $token = $1;
-            
-            if ($token eq "\"") {
-                if ($expected and $expected ne "a quoted string") {
-                    print "$file:$.:ERROR:found a quoted string but expected $expected\n";
-                    $sawError = 1;
-                    $expected = "";
-                }
-                if (s-^(([^\\$token]|\\.)*?)$token--) {
-                    if (!defined $string) {
-                        $stringLine = $.;
-                        $string = $1;
-                    } else {
-                        $string .= $1;
-                    }
-                } else {
-                    print "$file:$.:ERROR:mismatched quotes\n";
-                    $sawError = 1;
-                    $_ = "";
-                }
-                next;
-            }
-            
-            if (defined $string) {
-handleString:
-                if ($expected) {
-                    if (!defined $UIString) {
-                        # FIXME: Validate UTF-8 here?
-                        $UIString = $string;
-                        $expected = ",";
-                    } elsif (($macro =~ /(WEB_)?UI_STRING_KEY(_INTERNAL)?$/) and !defined $key) {
-                        # FIXME: Validate UTF-8 here?
-                        $key = $string;
-                        $expected = ",";
-                    } elsif (!defined $comment) {
-                        # FIXME: Validate UTF-8 here?
-                        $comment = $string;
-                        $expected = ")";
-                    }
-                } else {
-                    if (defined $nestingLevel) {
-                        # In a debug macro, no need to localize.
-                    } elsif ($previousToken eq "#include" or $previousToken eq "#import") {
-                        # File name, no need to localize.
-                    } elsif ($previousToken eq "extern" and $string eq "C") {
-                        # extern "C", no need to localize.
-                    } elsif ($string eq "") {
-                        # Empty string can sometimes be localized, but we need not complain if not.
-                    } elsif ($exception{$file}) {
-                        $usedException{$file} = 1;
-                    } elsif ($exception{"\"$string\""}) {
-                        $usedException{"\"$string\""} = 1;
-                    } elsif ($exception{"$file:\"$string\""}) {
-                        $usedException{"$file:\"$string\""} = 1;
-                    } else {
-                        print "$file:$stringLine:\"$string\" is not marked for localization\n" if $warnAboutUnlocalizedStrings;
-                        $notLocalizedCount++;
-                    }
-                }
-                $string = undef;
-                last if !defined $token;
-            }
-            
-            $previousToken = $token;
-
-            if ($token =~ /^NSLocalized/ && $token !~ /NSLocalizedDescriptionKey/ && $token !~ /NSLocalizedStringFromTableInBundle/ && $token !~ /NSLocalizedFileSizeDescription/) {
-                print "$file:$.:ERROR:found a use of an NSLocalized macro ($token); not supported\n";
-                $nestingLevel = 0 if !defined $nestingLevel;
-                $sawError = 1;
-                $NSLocalizeCount++;
-            } elsif ($token eq "/*") {
-                if (!s-^.*?\*/--) {
-                    $_ = ""; # If the comment doesn't end, discard the result of the line and set flag
-                    $inComment = 1;
-                }
-            } elsif ($token eq "//") {
-                $_ = ""; # Discard the rest of the line
-            } elsif ($token eq "'") {
-                if (!s-([^\\]|\\.)'--) { #' <-- that single quote makes the Project Builder editor less confused
-                    print "$file:$.:ERROR:mismatched single quote\n";
-                    $sawError = 1;
-                    $_ = "";
-                }
-            } else {
-                if ($expected and $expected ne $token) {
-                    print "$file:$.:ERROR:found $token but expected $expected\n";
-                    $sawError = 1;
-                    $expected = "";
-                }
-                if ($token =~ /(WEB_)?UI_STRING(_KEY)?(_INTERNAL)?$/) {
-                    $expected = "(";
-                    $macro = $token;
-                    $UIString = undef;
-                    $key = undef;
-                    $comment = undef;
-                    $macroLine = $.;
-                } elsif ($token eq "(" or $token eq "[") {
-                    ++$nestingLevel if defined $nestingLevel;
-                    $expected = "a quoted string" if $expected;
-                } elsif ($token eq ",") {
-                    $expected = "a quoted string" if $expected;
-                } elsif ($token eq ")" or $token eq "]") {
-                    $nestingLevel = undef if defined $nestingLevel && !--$nestingLevel;
-                    if ($expected) {
-                        $key = $UIString if !defined $key;
-                        HandleUIString($UIString, $key, $comment, $file, $macroLine);
-                        $macro = "";
-                        $expected = "";
-                        $localizedCount++;
-                    }
-                } elsif ($isDebugMacro{$token}) {
-                    $nestingLevel = 0 if !defined $nestingLevel;
-                }
-            }
-        }
-            
-    }
-    
-    goto handleString if defined $string;
-    
-    if ($expected) {
-        print "$file:ERROR:reached end of file but expected $expected\n";
-        $sawError = 1;
-    }
-    
-    close SOURCE;
-}
-
-# Unescapes C language hexadecimal escape sequences.
-sub UnescapeHexSequence($)
-{
-    my ($originalStr) = @_;
-
-    my $escapedStr = $originalStr;
-    my $unescapedStr = "";
-
-    for (;;) {
-        if ($escapedStr =~ s-^\\x([[:xdigit:]]+)--) {
-            if (256 <= hex($1)) {
-                print "Hexadecimal escape sequence out of range: \\x$1\n";
-                return undef;
-            }
-            $unescapedStr .= pack("H*", $1);
-        } elsif ($escapedStr =~ s-^(.)--) {
-            $unescapedStr .= $1;
-        } else {
-            return $unescapedStr;
-        }
-    }
-}
-
-my %stringByKey;
-my %commentByKey;
-my %fileByKey;
-my %lineByKey;
-
-sub HandleUIString
-{
-    my ($string, $key, $comment, $file, $line) = @_;
-
-    my $bad = 0;
-    $string = UnescapeHexSequence($string);
-    if (!defined($string)) {
-        print "$file:$line:ERROR:string has an illegal hexadecimal escape sequence\n";
-        $bad = 1;
-    }
-    $key = UnescapeHexSequence($key);
-    if (!defined($key)) {
-        print "$file:$line:ERROR:key has an illegal hexadecimal escape sequence\n";
-        $bad = 1;
-    }
-    $comment = UnescapeHexSequence($comment);
-    if (!defined($comment)) {
-        print "$file:$line:ERROR:comment has an illegal hexadecimal escape sequence\n";
-        $bad = 1;
-    }
-    if (grep { $_ == 0xFFFD } unpack "U*", $string) {
-        print "$file:$line:ERROR:string for translation has illegal UTF-8 -- most likely a problem with the Text Encoding of the source file\n";
-        $bad = 1;
-    }
-    if ($string ne $key && grep { $_ == 0xFFFD } unpack "U*", $key) {
-        print "$file:$line:ERROR:key has illegal UTF-8 -- most likely a problem with the Text Encoding of the source file\n";
-        $bad = 1;
-    }
-    if (grep { $_ == 0xFFFD } unpack "U*", $comment) {
-        print "$file:$line:ERROR:comment for translation has illegal UTF-8 -- most likely a problem with the Text Encoding of the source file\n";
-        $bad = 1;
-    }
-    if ($bad) {
-        $sawError = 1;
-        return;
-    }
-    
-    if ($stringByKey{$key} && $stringByKey{$key} ne $string) {
-        print "$file:$line:encountered the same key, \"$key\", twice, with different strings\n";
-        print "$fileByKey{$key}:$lineByKey{$key}:previous occurrence\n";
-        $keyCollisionCount++;
-        return;
-    }
-    if ($commentByKey{$key} && $commentByKey{$key} ne $comment) {
-        print "$file:$line:encountered the same key, \"$key\", twice, with different comments\n";
-        print "$fileByKey{$key}:$lineByKey{$key}:previous occurrence\n";
-        $keyCollisionCount++;
-        return;
-    }
-
-    $fileByKey{$key} = $file;
-    $lineByKey{$key} = $line;
-    $stringByKey{$key} = $string;
-    $commentByKey{$key} = $comment;
-}
-
-print "\n" if $sawError || $notLocalizedCount || $NSLocalizeCount;
-
-my @unusedExceptions = sort grep { !$usedException{$_} } keys %exception;
-if (@unusedExceptions) {
-    for my $unused (@unusedExceptions) {
-        print "$exceptionsFile:$exception{$unused}:exception $unused not used\n";
-    }
-    print "\n";
-}
-
-print "$localizedCount localizable strings\n" if $localizedCount;
-print "$keyCollisionCount key collisions\n" if $keyCollisionCount;
-print "$notLocalizedCount strings not marked for localization\n" if $notLocalizedCount;
-print "$NSLocalizeCount uses of NSLocalize\n" if $NSLocalizeCount;
-print scalar(@unusedExceptions), " unused exceptions\n" if @unusedExceptions;
-
-if ($sawError) {
-    print "\nErrors encountered. Exiting without writing to $fileToUpdate.\n";
-    exit 1;
-}
-
-my $localizedStrings = "";
-
-for my $key (sort keys %commentByKey) {
-    $localizedStrings .= "/* $commentByKey{$key} */\n\"$key\" = \"$stringByKey{$key}\";\n\n";
-}
-
-# Write out the strings file in UTF-16 with a BOM.
-utf8::decode($localizedStrings) if $^V ge v5.8;
-my $output = pack "n*", (0xFEFF, unpack "U*", $localizedStrings);
-
-if (-e "$fileToUpdate") {
-    open STRINGS, ">", "$fileToUpdate" or die;
-    print STRINGS $output;
-    close STRINGS;
-} else {
-    print "$fileToUpdate does not exist\n";
-    exit 1;
-}
diff --git a/Tools/Scripts/filter-build-webkit b/Tools/Scripts/filter-build-webkit
deleted file mode 100755
index 97a7327..0000000
--- a/Tools/Scripts/filter-build-webkit
+++ /dev/null
@@ -1,224 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2011 Apple Inc. All rights reserved.
-# 
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer.
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution.
-# 
-# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
-# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Filters the output of build-webkit into a more human-readable format.
-
-use strict;
-use warnings;
-
-use CGI qw(escapeHTML);
-use File::Basename;
-use FindBin;
-use lib $FindBin::Bin;
-use Getopt::Long;
-use VCSUtils;
-
-use constant {
-    STYLE_PLAIN => 0,
-    STYLE_HEADER => 1,
-    STYLE_SUCCESS => 2,
-    STYLE_ALERT => 3,
-
-    HTML_HEADER =><<HTMLHEADER,
-<html>
-    <head>
-        <title>Build Log</title>
-        <style>
-            body { font-family: Monaco, monospace; font-size: 10px; color: #666; line-height: 1.5em; }
-            h2 { margin: 1.5em 0 0 0; font-size: 1.0em; font-weight: bold; color: blue; }
-            p { margin: 0; padding-left: 1.5em; border-left: 3px solid #fff; }
-            p.alert { border-left-color: red; color: red; margin: 1.5em 0 0 0; }
-            p.alert + p { margin: 1.5em 0 0 0; }
-            p.alert + p.alert { margin: 0; }
-            p.success { color: green; }
-        </style>
-    </head>
-    <body>
-HTMLHEADER
-
-    HTML_FOOTER =><<HTMLFOOTER,
-    </body>
-</html>
-HTMLFOOTER
-};
-
-sub printLine($$);
-sub setLogfileOption($$);
-sub setOutputFormatOption($$);
-sub usageAndExit();
-
-# Defined in VCSUtils.
-sub possiblyColored($$);
-
-my $showHelp;
-my $outputPath = "&STDOUT";
-my $outputFormat = "text";
-my $useColor = -t STDOUT;
-my $unfilteredOutputPath = "build.log";
-my $logUnfilteredOutput;
-
-sub usageAndExit()
-{
-    print STDERR <<__END__;
-Usage: @{[ basename($0) ]} [options] buildlog1 [buildlog2 ...]
-       build-webkit | @{[ basename($0) ]} [options]
-  -h|--help     Show this help message
-Output Options:
-  -o|--output   Path for output (default: STDOUT)
-  -f|--format   Output format (default: $outputFormat)
-                  text: Plain text
-                  html: Standalone HTML document
-  --[no-]color  ANSI color output for text (default: on, if -o is STDOUT)
-Unfiltered Logging Options:
-  -l|--log      Save unfiltered output to file (see --log-file)
-  --logfile     Path to save unfiltered output (implies --log, default: $unfilteredOutputPath)
-__END__
-    exit 1;
-}
-
-my $getOptionsResult = GetOptions(
-    'h|help'                => \$showHelp,
-    'o|output=s'            => \$outputPath,
-    'f|format=s'            => \&setOutputFormatOption,
-    'color!'                => \$useColor,
-    'l|log'                 => \$logUnfilteredOutput,
-    'logfile=s'             => \&setLogfileOption,
-);
-
-if (-t STDIN || $showHelp || !$getOptionsResult) {
-    usageAndExit();
-}
-
-open(OUTPUT_HANDLE, ">$outputPath") or die "Failed to open $outputPath : $!";
-if ($logUnfilteredOutput) {
-    open(UNFILTERED_OUTPUT_HANDLE, ">$unfilteredOutputPath") or die "Failed to open $unfilteredOutputPath : $!";
-}
-
-print OUTPUT_HANDLE HTML_HEADER if ($outputFormat eq "html");
-
-my $buildFinished;
-my $buildFailed = 0;
-while (my $line = <>) {
-    print UNFILTERED_OUTPUT_HANDLE $line if $logUnfilteredOutput;
-
-    chomp($line);
-
-    next if $line =~ /^\s*$/;
-    next if $line =~ /^Build settings from command line:/;
-    next if $line =~ /make: Nothing to be done for `all'\./;
-    next if $line =~ /^JavaScriptCore\/create_hash_table/;
-    next if $line =~ /JavaScriptCore.framework\/PrivateHeaders\/create_hash_table/;
-    next if $line =~ /^JavaScriptCore\/pcre\/dftables/;
-    next if $line =~ /^Creating hashtable for /;
-    next if $line =~ /^Wrote output to /;
-    next if $line =~ /^(touch|perl|cat|rm -f|bison|flex|python|\/usr\/bin\/g\+\+|gperf|echo|sed|if \[ \-f|WebCore\/generate-export-file) /;
-    next if $line =~ /^UNDOCUMENTED: /;
-    next if $line =~ /libtool.*has no symbols/;
-    next if $line =~ /^# Lower case all the values, as CSS values are case-insensitive$/;
-    next if $line =~ /^if sort /;
-    next if $line =~ /^    /;
-    next if $line =~ /^printf /;
-    next if $line =~ /^offlineasm: Nothing changed/;
-    next if $line =~ /^Showing first/;
-
-    if ($line =~ /^={10}/) {
-        printLine($line, STYLE_SUCCESS);
-        $buildFinished = 1;
-    } elsif ($line =~ /^===/) {
-        printLine($line, STYLE_HEADER);
-    } elsif ($line =~ /Checking Dependencies|Check dependencies/) {
-        printLine($line, STYLE_PLAIN);
-    } elsif ($line =~ /\*\* BUILD SUCCEEDED \*\*/) {
-        printLine("Build Succeeded", STYLE_SUCCESS);
-    } elsif ($line =~ /^(PhaseScriptExecution|CompileC|Distributed-CompileC|Ld|PBXCp|CpResource|CopyPNGFile|CopyTiffFile|CpHeader|Processing|ProcessInfoPlistFile|ProcessPCH|ProcessPCH\+\+|Touch|Libtool|CopyStringsFile|Mig|CreateUniversalBinary|Analyze|ProcessProductPackaging|CodeSign|SymLink|Updating|CompileXIB|StripNIB|CopyPlistFile|GenerateDSYMFile) ("[^"]+"|\S+)?/) {
-        my ($command, $path) = ($1, basename($2));
-        $path =~ s/"//g;
-        printLine("$command $path", STYLE_PLAIN);
-    } elsif ($line =~ /^\/\S+?(strip|WebCoreExportFileGenerator) .*?(\/|\> )(\S+)/) {
-        my ($command, $path) = (basename($1), basename($3));
-        printLine("$command $path", STYLE_PLAIN);
-    } elsif ($line =~ /^offlineasm\: /) {
-        printLine($line, STYLE_PLAIN);
-    } elsif ($line =~ /^Generating message.*(header|receiver) for (\S+)\.\.\./) {
-        my ($command, $path) = ($1, basename($2));
-        printLine("Generating message $command $path", STYLE_PLAIN);
-    } elsif ($line =~ /^(\S+\/cc).*?(\S+)\.(out|exp)/) {
-        my ($command, $path) = (basename($1), basename($2));
-        printLine("$command $path", STYLE_PLAIN);
-    } else {
-        # This only gets hit if stderr is redirected to stdout.
-        if ($line =~ /\*\* BUILD FAILED \*\*/) {
-            $buildFailed = 1;
-        }
-        printLine($line, $buildFinished ? STYLE_SUCCESS : STYLE_ALERT);
-    }
-}
-
-print OUTPUT_HANDLE HTML_FOOTER if ($outputFormat eq "html");
-
-close(OUTPUT_HANDLE);
-close(UNFILTERED_OUTPUT_HANDLE) if ($logUnfilteredOutput);
-
-exit $buildFailed;
-
-sub printLine($$)
-{
-    my ($line, $style) = @_;
-
-    if ($outputFormat eq "html") {
-        $line = escapeHTML($line);
-        if    ($style == STYLE_HEADER)  { print OUTPUT_HANDLE "<h2>$line</h2>"; }
-        elsif ($style == STYLE_SUCCESS) { print OUTPUT_HANDLE "<p class=\"success\">$line</p>"; }
-        elsif ($style == STYLE_ALERT)   { print OUTPUT_HANDLE "<p class=\"alert\">$line</p>"; }
-        else                            { print OUTPUT_HANDLE "<p>$line</p>"; }
-    } else {
-        if ($useColor) {
-            my $colors = "reset";
-            if ($style == STYLE_HEADER)  { $colors = "blue"; }
-            if ($style == STYLE_SUCCESS) { $colors = "green"; }
-            if ($style == STYLE_ALERT)   { $colors = "red"; }
-            print OUTPUT_HANDLE possiblyColored($colors, $line);
-        } else {
-            print OUTPUT_HANDLE $line;
-        }
-    }
-    print OUTPUT_HANDLE "\n";
-}
-
-sub setLogfileOption($$)
-{
-    my ($opt, $value) = @_;
-    $unfilteredOutputPath = $value;
-    $logUnfilteredOutput = 1;
-}
-
-sub setOutputFormatOption($$)
-{
-    my ($opt, $value) = @_;
-    $value = lc($value);
-    if ($value ne "html" && $value ne "text") {
-        die "The $opt option must be either \"html\" or \"text\"";
-    }
-    $outputFormat = $value;
-}
diff --git a/Tools/Scripts/generate-coverage-data b/Tools/Scripts/generate-coverage-data
deleted file mode 100755
index 9365932..0000000
--- a/Tools/Scripts/generate-coverage-data
+++ /dev/null
@@ -1,71 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2005, 2006 Apple Computer, Inc.  All rights reserved.
-# Copyright (C) 2007 Holger Hans Peter Freyther.  All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Simple script to build, run and visualize coverage information
-
-use strict;
-use File::Basename;
-use File::Spec;
-use FindBin;
-use Getopt::Long qw(:config pass_through);
-use lib $FindBin::Bin;
-use webkitdirs;
-use POSIX;
-
-# Generate a name for our results
-my $svnVersion = determineCurrentSVNRevision();
-my @timeData = localtime(time);
-my $resultName = $svnVersion . "-" . join('_', @timeData);
-my @otherOptions = ();
-
-# Move to the source directory
-# Delete old gcov files
-# Compile WebKit and run the tests
-# Generate the coverage graph...
-# Upload
-
-$ENV{'WEBKIT_COVERAGE_BUILD'} = 1;
-chdirWebKit();
-
-# Clean-up old files
-print "Cleaning up\n";
-system("if [ -d WebKitBuild ]; then find WebKitBuild -name '*.gcda' -delete; fi;") == 0 or die;
-
-
-print "Building and testing\n";
-system("Tools/Scripts/build-webkit", "--coverage", @ARGV) == 0 or die;
-system "Tools/Scripts/new-run-webkit-tests", "--no-show-results";
-system "Tools/Scripts/run-javascriptcore-tests", "--coverage", @ARGV;
-
-# Collect the data and generate a report
-print "Collecting coverage data\n";
-system("Tools/CodeCoverage/run-generate-coverage-data", $resultName,  "WebKitBuild/Coverage") == 0 or die;
-system("Tools/CodeCoverage/regenerate-coverage-display", "WebKitBuild/Coverage", "WebKitBuild/Coverage/html") == 0 or die;
-
-print "Done\n";
diff --git a/Tools/Scripts/generate-qt-inspector-resource b/Tools/Scripts/generate-qt-inspector-resource
deleted file mode 100755
index 0a8301b..0000000
--- a/Tools/Scripts/generate-qt-inspector-resource
+++ /dev/null
@@ -1,53 +0,0 @@
-#!/usr/bin/perl
-#
-# Copyright (C) 2008 Holger Hans Peter Freyther
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Regenerate WebCore/inspector/front-end/WebKit.qrc from the content of WebCore/inspector/front-end/
-
-sub addFiles(@)
-{
-    my @files = @_;
-
-    foreach $file (@files) {
-        $file =~ s,Source/WebCore/inspector/front-end/,,;
-        print WEBKIT_QRC "    <file>".$file . "</file>\n";
-    }
-}
-
-# Setup
-open(WEBKIT_QRC, ">Source/WebCore/inspector/front-end/WebKit.qrc") or die;
-print WEBKIT_QRC '<!DOCTYPE RCC><RCC version="1.0">'."\n";
-print WEBKIT_QRC '<qresource prefix="/webkit/inspector">'."\n";
-
-
-# Directory with html and js files and the images
-addFiles(<Source/WebCore/inspector/front-end/*.{*html,js,css,svg}>);
-addFiles(<Source/WebCore/inspector/front-end/Images/*>);
-
-print WEBKIT_QRC "</qresource>\n";
-print WEBKIT_QRC "</RCC>\n";
-close(WEBKIT_QRC);
diff --git a/Tools/Scripts/generate-win32-export-forwards b/Tools/Scripts/generate-win32-export-forwards
deleted file mode 100755
index a160abb..0000000
--- a/Tools/Scripts/generate-win32-export-forwards
+++ /dev/null
@@ -1,53 +0,0 @@
-#!/usr/bin/env python
-
-#Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies)
-
-#This library is free software; you can redistribute it and/or
-#modify it under the terms of the GNU Library General Public
-#License as published by the Free Software Foundation; either
-#version 2 of the License, or (at your option) any later version.
-
-#This library is distributed in the hope that it will be useful,
-#but WITHOUT ANY WARRANTY; without even the implied warranty of
-#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-#Library General Public License for more details.
-
-#You should have received a copy of the GNU Library General Public License
-#along with this library; see the file COPYING.LIB.  If not, write to
-#the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-#Boston, MA 02110-1301, USA.
-
-# Extract /EXPORT: linker directives from static library and write it into a
-# separate file as linker pragmas.
-# Usage: generate-win32-export-forwards \path\to\static\library.lib outputfile.cpp
-# Then compile outputfile.cpp into the final .dll and link the static library
-# into the dll.
-
-import subprocess
-import sys
-import re
-
-def exportForwardsForLibrary(library):
-    dumpBin = subprocess.Popen("dumpbin /directives " + library, stdout=subprocess.PIPE, universal_newlines=True)
-
-    output = dumpBin.communicate()[0]
-    return output
-
-libraries = sys.argv[1 : -1]
-outputFileName = sys.argv[-1]
-
-exportedSymbolRegexp = re.compile("\s*(?P<symbol>/EXPORT:.+)")
-symbols = set()
-
-for lib in libraries:
-    for line in exportForwardsForLibrary(lib).splitlines():
-        match = exportedSymbolRegexp.match(line)
-        if match:
-            symbols.add(match.group("symbol"))
-
-print("Forwarding %s symbols from %s" % (len(symbols), " ".join(libraries)))
-
-exportFile = open(outputFileName, "w")
-for symbol in symbols:
-    exportFile.write("#pragma comment(linker, \"%s\")\n" % symbol);
-exportFile.close()
diff --git a/Tools/Scripts/git-add-reviewer b/Tools/Scripts/git-add-reviewer
deleted file mode 100755
index 16bb06b..0000000
--- a/Tools/Scripts/git-add-reviewer
+++ /dev/null
@@ -1,387 +0,0 @@
-#!/usr/bin/perl -w
-#
-# Copyright (C) 2011 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer.
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
-# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-use strict;
-use warnings;
-
-use File::Basename;
-use File::Temp ();
-use Getopt::Long;
-use POSIX;
-
-my $defaultReviewer = "NOBODY";
-
-sub addReviewer(\%);
-sub addReviewerToChangeLog($$$);
-sub addReviewerToCommitMessage($$$);
-sub changeLogsForCommit($);
-sub checkout($);
-sub cherryPick(\%);
-sub commit(;$);
-sub getConfigValue($);
-sub fail(;$);
-sub head();
-sub interactive();
-sub isAncestor($$);
-sub nonInteractive();
-sub rebaseOntoHead($$);
-sub requireCleanWorkTree();
-sub resetToCommit($);
-sub toCommit($);
-sub usage();
-sub writeCommitMessageToFile($);
-
-
-my $interactive = 0;
-my $showHelp = 0;
-
-my $programName = basename($0);
-my $usage = <<EOF;
-Usage: $programName -i|--interactive upstream
-       $programName commit-ish reviewer
-
-Adds a reviewer to a git commit in a repository with WebKit-style commit logs
-and ChangeLogs.
-
-When run in interactive mode, `upstream` specifies the commit after which
-reviewers should be added.
-
-When run in non-interactive mode, `commit-ish` specifies the commit to which
-the `reviewer` will be added.
-
-Options:
-  -h|--help          Display this message
-  -i|--interactive   Interactive mode
-EOF
-
-my $getOptionsResult = GetOptions(
-    'h|help' => \$showHelp,
-    'i|interactive' => \$interactive,
-);
-
-usage() if !$getOptionsResult || $showHelp;
-
-requireCleanWorkTree();
-$interactive ? interactive() : nonInteractive();
-exit;
-
-sub interactive()
-{
-    @ARGV == 1 or usage();
-
-    my $upstream = toCommit($ARGV[0]);
-    my $head = head();
-
-    isAncestor($upstream, $head) or die "$ARGV[0] is not an ancestor of HEAD.";
-
-    my @revlist = `git rev-list --reverse --pretty=oneline $upstream..`;
-    @revlist or die "Couldn't determine revisions";
-
-    my $tempFile = new File::Temp(UNLINK => 1);
-    foreach my $line (@revlist) {
-        print $tempFile "$defaultReviewer : $line";
-    }
-
-    print $tempFile <<EOF;
-
-# Change 'NOBODY' to the reviewer for each commit
-#
-# If any line starts with "rs" followed by one or more spaces, then the phrase
-# "Reviewed by" is changed to "Rubber-stamped by" in the ChangeLog(s)/commit
-# message for that commit.
-#
-# Commits may be reordered
-# Omitted commits will be lost
-EOF
-
-    close $tempFile;
-
-    my $editor = $ENV{GIT_EDITOR} || getConfigValue("core.editor") || $ENV{VISUAL} || $ENV{EDITOR} || "vi";
-    my $result = system "$editor \"" . $tempFile->filename . "\"";
-    !$result or die "Error spawning editor.";
-
-    my @todo = ();
-    open TEMPFILE, '<', $tempFile->filename or die "Error opening temp file.";
-    foreach my $line (<TEMPFILE>) {
-        next if $line =~ /^#/;
-        $line =~ /^(rs\s+)?(.*)\s+:\s+([0-9a-fA-F]+)/ or next;
-        push @todo, {rubberstamp => defined $1 && length $1, reviewer => $2, commit => $3};
-    }
-    close TEMPFILE;
-    @todo or die "No revisions specified.";
-
-    foreach my $item (@todo) {
-        $item->{changeLogs} = changeLogsForCommit($item->{commit});
-    }
-
-    $result = system "git", "checkout", $upstream;
-    !$result or die "Error checking out $ARGV[0].";
-
-    my $success = 1;
-    foreach my $item (@todo) {
-        $success = cherryPick(%{$item});
-        $success or last;
-        $success = addReviewer(%{$item});
-        $success or last;
-        $success = commit();
-        $success or last;
-    }
-
-    unless ($success) {
-        resetToCommit($head);
-        exit 1;
-    }
-
-    $result = system "git", "branch", "-f", $head;
-    !$result or die "Error updating $head.";
-    $result = system "git", "checkout", $head;
-    exit WEXITSTATUS($result);
-}
-
-sub nonInteractive()
-{
-    @ARGV == 2 or usage();
-
-    my $commit = toCommit($ARGV[0]);
-    my $reviewer = $ARGV[1];
-    my $head = head();
-    my $headCommit = toCommit($head);
-
-    isAncestor($commit, $head) or die "$ARGV[1] is not an ancestor of HEAD.";
-
-    my %item = (
-        reviewer => $reviewer,
-        commit => $commit,
-    );
-
-    $item{changeLogs} = changeLogsForCommit($commit);
-    $item{changeLogs} or die;
-
-    unless ((($commit eq $headCommit) or checkout($commit))
-            # FIXME: We need to use $ENV{GIT_DIR}/.git/MERGE_MSG
-            && writeCommitMessageToFile(".git/MERGE_MSG")
-            && addReviewer(%item)
-            && commit(1)
-            && (($commit eq $headCommit) or rebaseOntoHead($commit, $head))) {
-        resetToCommit($head);
-        exit 1;
-    }
-}
-
-sub usage()
-{
-    print STDERR $usage;
-    exit 1;
-}
-
-sub requireCleanWorkTree()
-{
-    my $result = system "git rev-parse --verify HEAD > /dev/null";
-    $result ||= system qw(git update-index --refresh);
-    $result ||= system qw(git diff-files --quiet);
-    $result ||= system qw(git diff-index --cached --quiet HEAD --);
-    !$result or die "Working tree is dirty"
-}
-
-sub fail(;$)
-{
-    my ($message) = @_;
-    print STDERR $message, "\n" if defined $message;
-    return 0;
-}
-
-sub cherryPick(\%)
-{
-    my ($item) = @_;
-
-    my $result = system "git cherry-pick -n $item->{commit} > /dev/null";
-    !$result or return fail("Failed to cherry-pick $item->{commit}");
-
-    return 1;
-}
-
-sub addReviewer(\%)
-{
-    my ($item) = @_;
-
-    return 1 if $item->{reviewer} eq $defaultReviewer;
-
-    foreach my $log (@{$item->{changeLogs}}) {
-        addReviewerToChangeLog($item->{reviewer}, $item->{rubberstamp}, $log) or return fail();
-    }
-
-    addReviewerToCommitMessage($item->{reviewer}, $item->{rubberstamp}, ".git/MERGE_MSG") or return fail();
-
-    return 1;
-}
-
-sub commit(;$)
-{
-    my ($amend) = @_;
-
-    my @command = qw(git commit -F .git/MERGE_MSG);
-    push @command, "--amend" if $amend;
-    my $result = system @command;
-    !$result or return fail("Failed to commit revision");
-
-    return 1;
-}
-
-sub addReviewerToChangeLog($$$)
-{
-    my ($reviewer, $rubberstamp, $log) = @_;
-
-    return addReviewerToFile($reviewer, $rubberstamp, $log, 0);
-}
-
-sub addReviewerToCommitMessage($$$)
-{
-    my ($reviewer, $rubberstamp, $log) = @_;
-
-    return addReviewerToFile($reviewer, $rubberstamp, $log, 1);
-}
-
-sub addReviewerToFile
-{
-    my ($reviewer, $rubberstamp, $log, $isCommitMessage) = @_;
-
-    my $tempFile = new File::Temp(UNLINK => 1);
-
-    open LOG, "<", $log or return fail("Couldn't open $log.");
-
-    my $finished = 0;
-    foreach my $line (<LOG>) {
-        if (!$finished && $line =~ /NOBODY \(OOPS!\)/) {
-            $line =~ s/NOBODY \(OOPS!\)/$reviewer/;
-            $line =~ s/Reviewed/Rubber-stamped/ if $rubberstamp;
-            $finished = 1 unless $isCommitMessage;
-        }
-
-        print $tempFile $line;
-    }
-
-    close $tempFile;
-    close LOG or return fail("Couldn't close $log");
-
-    my $result = system "mv", $tempFile->filename, $log;
-    !$result or return fail("Failed to rename $tempFile to $log");
-
-    unless ($isCommitMessage) {
-        my $result = system "git", "add", $log;
-        !$result or return fail("Failed to git add");
-    }
-
-    return 1;
-}
-
-sub head()
-{
-    my $head = `git symbolic-ref HEAD`;
-    $head =~ /^refs\/heads\/(.*)$/ or die "Couldn't determine current branch.";
-    $head = $1;
-
-    return $head;
-}
-
-sub isAncestor($$)
-{
-    my ($ancestor, $descendant) = @_;
-
-    chomp(my $mergeBase = `git merge-base $ancestor $descendant`);
-    return $mergeBase eq $ancestor;
-}
-
-sub toCommit($)
-{
-    my ($arg) = @_;
-
-    chomp(my $commit = `git rev-parse $arg`);
-    return $commit;
-}
-
-sub changeLogsForCommit($)
-{
-    my ($commit) = @_;
-
-    my @files = `git diff -r --name-status $commit^ $commit`;
-    @files or return fail("Couldn't determine changed files for $commit.");
-
-    my @changeLogs = map { /^[ACMR]\s*(.*)/; $1 } grep { /^[ACMR].*[^-]ChangeLog/ } @files;
-    return \@changeLogs;
-}
-
-sub resetToCommit($)
-{
-    my ($commit) = @_;
-
-    my $result = system "git", "checkout", "-f", $commit;
-    !$result or return fail("Error checking out $commit.");
-
-    return 1;
-}
-
-sub writeCommitMessageToFile($)
-{
-    my ($file) = @_;
-
-    open FILE, ">", $file or return fail("Couldn't open $file.");
-    open MESSAGE, "-|", qw(git rev-list --max-count=1 --pretty=format:%B HEAD) or return fail("Error running git rev-list.");
-    my $commitLine = <MESSAGE>;
-    foreach my $line (<MESSAGE>) {
-        print FILE $line;
-    }
-    close MESSAGE;
-    close FILE or return fail("Couldn't close $file.");
-
-    return 1;
-}
-
-sub rebaseOntoHead($$)
-{
-    my ($upstream, $branch) = @_;
-
-    my $result = system qw(git rebase --onto HEAD), $upstream, $branch;
-    !$result or return fail("Couldn't rebase.");
-
-    return 1;
-}
-
-sub checkout($)
-{
-    my ($commit) = @_;
-
-    my $result = system "git", "checkout", $commit;
-    !$result or return fail("Error checking out $commit.");
-
-    return 1;
-}
-
-sub getConfigValue($)
-{
-    my ($variable) = @_;
-
-    chomp(my $value = `git config --get "$variable"`);
-
-    return $value;
-}
diff --git a/Tools/Scripts/import-w3c-performance-wg-tests b/Tools/Scripts/import-w3c-performance-wg-tests
index caddde7..7423dc8 100755
--- a/Tools/Scripts/import-w3c-performance-wg-tests
+++ b/Tools/Scripts/import-w3c-performance-wg-tests
@@ -53,16 +53,18 @@
     sys.exit(1)
 os.makedirs(destination_directory)
 
-directories_to_copy = ['approved', 'resources']
+directories_to_copy = ['approved', 'resources', 'submission']
 directories_to_ignore = ['html5']                 # These are just duplicates of the sibling directory 'html'.
 replacements = [
         ('www.w3c-test.org', 'localhost:8000'),   # This is the alternate host for cross-server requests.
         ('w3c-test.org', '127.0.0.1:8000'),       # This is the primary test server.
         ('webperf/tests', 'w3c/webperf'),         # We prepend /w3c to all of our paths.
-        ('/resources/testharness', '/w3c/resources/testharness'),
+        ('"/resources/', '"/w3c/resources/'),
         ('+ "(" + reloadTime[time] + ")"', ''),   # Remove dynamic values from the output. We'll still see PASS.
         ('+ "(" + startingTime[time] + ")"', ''),
-        ('\r\n', '\n'),                           # Convert to *NIX format.
+        ('+ expectedStartTime', ''),
+        ('+ expectedDuration', ''),
+        ('\t', '        '),                       # Convert tabs to spaces.
 ]
 
 for directory_to_copy in directories_to_copy:
@@ -78,7 +80,8 @@
             with open(os.path.join(source_directory, root, filename), 'r') as in_file:
                 with open(os.path.join(destination_directory, root, filename), 'w') as out_file:
                     for line in in_file:
-                        for to_find, replace_with in replacements:
-                            line = line.replace(to_find, replace_with)
-                        assert 'w3c-test.org' not in line, 'Imported test must not depend on live site. Bad line: "%s"' % line
+                        if filename.endswith(('.htm', '.html', '.css', '.js', '.php')):
+                            for to_find, replace_with in replacements:
+                                line = line.replace(to_find, replace_with).rstrip() + '\n'
+                            assert 'w3c-test.org' not in line, 'Imported test must not depend on live site. Bad line: "%s"' % line
                         out_file.write(line)
diff --git a/Tools/Scripts/make-gypi b/Tools/Scripts/make-gypi
deleted file mode 100755
index cebac27..0000000
--- a/Tools/Scripts/make-gypi
+++ /dev/null
@@ -1,72 +0,0 @@
-#!/usr/bin/env python
-# Copyright (c) 2011 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import os
-import re
-import sys
-
-GYPI_TEMPLATE = """{
-    'variables': {
-        '%s': [
-%s
-        ]
-    }
-}""" 
-
-def find_source_code():
-    source_code_regexp = re.compile(r'\.(cpp|h|m|mm)$')
-
-    collected_files = []
-    for directory_path, directory_names, file_names in os.walk('.'):
-        for file_name in file_names:
-            if source_code_regexp.search(file_name):
-                relative_path = os.path.join(directory_path, file_name)
-                collected_files.append(os.path.relpath(relative_path, '.'))
-
-    return collected_files
-
-def build_file_line(file_name, indent):
-    return indent +  "'%s'," % file_name
-
-def build_file_list(source_code, indent):
-    return '\n'.join([build_file_line(file_name, indent) for file_name in sorted(source_code)])
-
-def build_gypi(project):
-    key = project.lower() + '_files'
-    value = build_file_list(find_source_code(), '    ' * 3)
-    return GYPI_TEMPLATE % (key, value)
-
-def main():
-    if len(sys.argv) < 2:
-        print 'Usage: %s project_name' % sys.argv[0]
-        return
-    print build_gypi(sys.argv[1])
-
-if __name__ == "__main__":
-    main()
diff --git a/Tools/Scripts/make-new-script-test b/Tools/Scripts/make-new-script-test
deleted file mode 100755
index 59fbfa3..0000000
--- a/Tools/Scripts/make-new-script-test
+++ /dev/null
@@ -1,120 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2011 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Script to create a new HTML file for a monolithic test using js-test machinery.
-
-use strict;
-
-use FindBin;
-use lib $FindBin::Bin;
-
-use File::Basename;
-use Getopt::Long;
-use webkitdirs;
-
-sub makePathToSharedSources;
-sub openTestInEditor;
-sub writeTestFile;
-
-my $showHelp;
-
-my $result = GetOptions(
-    "help"       => \$showHelp,
-);
-
-if (!$result || $showHelp || !scalar(@ARGV) || $ARGV[0] !~ m/\.html$/) {
-    print STDERR "Usage: " . basename($0) . " [-h|--help] pathname\n";
-    print STDERR "\nExamples:\n";
-    print STDERR "    " . basename($0) . " new-test.html (will create the test in current directory)\n";
-    print STDERR "    " . basename($0) . " fast/loader/new-test.html (a relative path is always from LayoutTests directory)\n";
-    print STDERR "    " . basename($0) . " /Volumes/Data/WebKit/LayoutTests/fast/loader/new-test.html\n";
-    exit 1;
-}
-
-my $providedPath = $ARGV[0];
-
-my $testAbsolutePath;
-
-# If only a file name is provided, create the test in current directory.
-$testAbsolutePath = File::Spec->rel2abs($providedPath) if (!(File::Spec->splitpath($providedPath))[1]);
-
-# Otherwise, it's either absolute, or relative to LayoutTests directory.
-chdirWebKit();
-chdir "LayoutTests";
-$testAbsolutePath = File::Spec->rel2abs($providedPath) if (!$testAbsolutePath);
-
-writeTestFile();
-
-print "$testAbsolutePath\n";
-openTestInEditor();
-
-exit 0;
-
-sub makePathToSharedSources
-{
-    my $layoutTestsPath = getcwd();
-    $testAbsolutePath =~ m/^$layoutTestsPath/ or die "Path $testAbsolutePath is not in LayoutTests directory.\n";
-    my $isHTTPTest = $testAbsolutePath =~ m/^$layoutTestsPath\/http/;
-    if ($isHTTPTest) {
-        return "/js-test-resources";
-    } else {
-        return File::Spec->abs2rel("fast/js/resources/", dirname($testAbsolutePath));
-    }
-}
-
-sub writeTestFile
-{
-    die "Test $testAbsolutePath already exists.\n" if (-e $testAbsolutePath);
-
-    my $pathToSharedSources = makePathToSharedSources();
-
-    open TEST, ">", ${testAbsolutePath} or die "Cannot create test file at $testAbsolutePath.\n";
-    print TEST << "EOF";
-<!DOCTYPE html>
-<html>
-<head>
-<meta charset="utf-8">
-<script src="$pathToSharedSources/js-test-pre.js"></script>
-</head>
-<body>
-<script>
-
-description("TEST DESCRIPTION HERE");
-
-// Your test script here. Feel free to modify surrounding HTML code if necessary.
-
-</script>
-<script src="$pathToSharedSources/js-test-post.js"></script>
-</body>
-</html>
-EOF
-    close TEST;
-}
-
-sub openTestInEditor()
-{
-    my $editor = $ENV{EDITOR};
-    exec ($editor, $testAbsolutePath) if ($editor);
-}
diff --git a/Tools/Scripts/make-script-test-wrappers b/Tools/Scripts/make-script-test-wrappers
deleted file mode 100755
index 74284bf..0000000
--- a/Tools/Scripts/make-script-test-wrappers
+++ /dev/null
@@ -1,136 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Script to generate HTML wrappers for JavaScript tests from templates
-
-use strict;
-
-use FindBin;
-use lib $FindBin::Bin;
-
-use File::Basename;
-use File::Find;
-use Getopt::Long;
-use webkitdirs;
-
-sub directoryFilter;
-sub findTemplateFiles(@);
-
-my $showHelp;
-
-my $result = GetOptions(
-    "help"       => \$showHelp,
-);
-
-if (!$result || $showHelp) {
-    print STDERR basename($0) . " [-h|--help]\n";
-    exit 1;
-}
-
-setConfiguration();
-my $productDir = productDir();
-
-chdirWebKit();
-
-my @templates = findTemplateFiles(@ARGV);
-
-for my $tfile (@templates) {
-
-    my $tpath = $tfile;
-    my $templateDirectory;
-    my $templateRelativePath;
-    if ($tpath =~ s:/(script-tests)/TEMPLATE.html$::) {
-        $templateDirectory = $1;
-        $templateRelativePath = $1 . "/TEMPLATE.html";
-    } else {
-        print "Inappropriate position of a template: ${tpath}\n";
-        next;
-    }
-
-    print "${tpath}\n";
-
-    chdirWebKit();
-    chdir($tpath);
-
-    my @files;
-    my $fileFilter = sub {
-        push @files, $File::Find::name if substr($_, -3) eq ".js";
-    };
-    find({ preprocess => \&directoryFilter, wanted => $fileFilter }, $templateDirectory);
-
-    open TEMPLATE, "<${templateRelativePath}";
-    my $template = do { local $/; <TEMPLATE> };
-    close TEMPLATE;
-
-    my $templateNegative = $template;
-    if (-e "${templateDirectory}/TEMPLATE-n.html") {
-        open TEMPLATE, "<${templateDirectory}/TEMPLATE-n.html";
-        $templateNegative = do { local $/; <TEMPLATE> };
-        close TEMPLATE;
-    }
-
-    for my $file (@files) {
-        my $html = $file;
-        $html =~ s:${templateDirectory}/(.*)\.js:$1.html:;
-        next if -f "$html-disabled";
-
-        system("cat ${file} | tr '\\0' ' ' | grep -q 'successfullyParsed ='");
-        if ($? != 0) {
-            `echo "" >> "${file}"`;
-            `echo "var successfullyParsed = true;" >> "${file}"`;
-        }
-        
-        print "    ${html}\n";
-        open HTML, ">$html";
-        my $output = ($file =~ /-n\.js/) ? $templateNegative : $template;
-        $output =~ s:YOUR_JS_FILE_HERE:$file:;
-        print HTML $output;
-        
-        close HTML;
-    }
-}
-
-exit 0;
-
-sub directoryFilter
-{
-    return () if basename($File::Find::dir) eq ".svn";
-    return @_;
-}
-
-sub findTemplateFiles(@) {
-    my @templateFiles;
-
-    my $fileFilter = sub {
-        push @templateFiles, $File::Find::name if $_ eq "TEMPLATE.html";
-    };
-
-    find({ preprocess => \&directoryFilter, wanted => $fileFilter }, "LayoutTests/fast/js");
-
-    return @templateFiles;
-}
diff --git a/Tools/Scripts/move-layout-tests b/Tools/Scripts/move-layout-tests
new file mode 100755
index 0000000..5cee8c4
--- /dev/null
+++ b/Tools/Scripts/move-layout-tests
@@ -0,0 +1,34 @@
+#!/usr/bin/env python
+# Copyright (C) 2013 Google Inc. All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are
+# met:
+#
+#     * Redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+#     * Redistributions in binary form must reproduce the above
+# copyright notice, this list of conditions and the following disclaimer
+# in the documentation and/or other materials provided with the
+# distribution.
+#     * Neither the name of Google Inc. nor the names of its
+# contributors may be used to endorse or promote products derived from
+# this software without specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+import sys
+
+from webkitpy.layout_tests import layout_tests_mover
+
+sys.exit(layout_tests_mover.main(sys.argv[1:]))
diff --git a/Tools/Scripts/new-run-webkit-tests b/Tools/Scripts/new-run-webkit-tests
deleted file mode 100755
index 6b1a98b..0000000
--- a/Tools/Scripts/new-run-webkit-tests
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/usr/bin/env python
-# Copyright (C) 2011 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-"""Wrapper around webkitpy/layout_tests/run_webkit_tests.py"""
-from webkitpy.common import multiprocessing_bootstrap
-
-multiprocessing_bootstrap.run('webkitpy', 'layout_tests', 'run_webkit_tests.py')
diff --git a/Tools/Scripts/num-cpus b/Tools/Scripts/num-cpus
deleted file mode 100755
index 8a8c97f..0000000
--- a/Tools/Scripts/num-cpus
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/usr/bin/perl -w
-use strict;
-use FindBin;
-use lib $FindBin::Bin;
-use webkitdirs;
-print numberOfCPUs() . "\n";
diff --git a/Tools/Scripts/old-run-webkit-tests b/Tools/Scripts/old-run-webkit-tests
deleted file mode 100755
index aa4e484..0000000
--- a/Tools/Scripts/old-run-webkit-tests
+++ /dev/null
@@ -1,2885 +0,0 @@
-#!/usr/bin/perl
-
-# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
-# Copyright (C) 2006 Alexey Proskuryakov (ap@nypop.com)
-# Copyright (C) 2007 Matt Lilek (pewtermoose@gmail.com)
-# Copyright (C) 2007 Eric Seidel <eric@webkit.org>
-# Copyright (C) 2009 Google Inc. All rights reserved.
-# Copyright (C) 2009 Andras Becsi (becsi.andras@stud.u-szeged.hu), University of Szeged
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Script to run the WebKit Open Source Project layout tests.
-
-# Run all the tests passed in on the command line.
-# If no tests are passed, find all the .html, .shtml, .xml, .xhtml, .xhtmlmp, .pl, .php (and svg) files in the test directory.
-
-# Run each text.
-# Compare against the existing file xxx-expected.txt.
-# If there is a mismatch, generate xxx-actual.txt and xxx-diffs.txt.
-
-# At the end, report:
-#   the number of tests that got the expected results
-#   the number of tests that ran, but did not get the expected results
-#   the number of tests that failed to run
-#   the number of tests that were run but had no expected results to compare against
-
-use strict;
-use warnings;
-
-use CGI;
-use Config;
-use Cwd;
-use Data::Dumper;
-use Fcntl qw(F_GETFL F_SETFL O_NONBLOCK);
-use File::Basename;
-use File::Copy;
-use File::Find;
-use File::Path;
-use File::Spec;
-use File::Spec::Functions;
-use File::Temp;
-use FindBin;
-use Getopt::Long;
-use IPC::Open2;
-use IPC::Open3;
-use MIME::Base64;
-use Time::HiRes qw(time usleep);
-
-use List::Util 'shuffle';
-
-use lib $FindBin::Bin;
-use webkitperl::features;
-use webkitperl::httpd;
-use webkitdirs;
-use VCSUtils;
-use POSIX;
-
-sub buildPlatformResultHierarchy();
-sub buildPlatformTestHierarchy(@);
-sub captureSavedCrashLog($$);
-sub checkPythonVersion();
-sub closeCygpaths();
-sub closeDumpTool();
-sub closeWebSocketServer();
-sub configureAndOpenHTTPDIfNeeded();
-sub countAndPrintLeaks($$$);
-sub countFinishedTest($$$$);
-sub deleteExpectedAndActualResults($);
-sub dumpToolDidCrash();
-sub epiloguesAndPrologues($$);
-sub expectedDirectoryForTest($;$;$);
-sub fileNameWithNumber($$);
-sub findNewestFileMatchingGlob($);
-sub htmlForResultsSection(\@$&);
-sub isTextOnlyTest($);
-sub launchWithEnv(\@\%);
-sub resolveAndMakeTestResultsDirectory();
-sub numericcmp($$);
-sub openDiffTool();
-sub buildDumpTool($);
-sub openDumpTool();
-sub parseLeaksandPrintUniqueLeaks();
-sub openWebSocketServerIfNeeded();
-sub pathcmp($$);
-sub printFailureMessageForTest($$);
-sub processIgnoreTests($$);
-sub processSkippedFileEntry($$$);
-sub readChecksumFromPng($);
-sub readFromDumpToolWithTimer(**);
-sub readSkippedFiles($);
-sub recordActualResultsAndDiff($$);
-sub sampleDumpTool();
-sub setFileHandleNonBlocking(*$);
-sub setUpWindowsCrashLogSaving();
-sub slowestcmp($$);
-sub splitpath($);
-sub startsWith($$);
-sub stopRunningTestsEarlyIfNeeded();
-sub stripExtension($);
-sub stripMetrics($$);
-sub testCrashedOrTimedOut($$$$$$);
-sub toCygwinPath($);
-sub toURL($);
-sub toWindowsPath($);
-sub validateSkippedArg($$;$);
-sub writeToFile($$);
-
-# Argument handling
-my $addPlatformExceptions = 0;
-my @additionalPlatformDirectories = ();
-my $complexText = 0;
-my $exitAfterNFailures = 0;
-my $exitAfterNCrashesOrTimeouts = 0;
-my $generateNewResults = isAppleMacWebKit() ? 1 : 0;
-my $guardMalloc = '';
-# FIXME: Dynamic HTTP-port configuration in this file is wrong.  The various
-# apache config files in LayoutTests/http/config govern the port numbers.
-# Dynamic configuration as-written will also cause random failures in
-# an IPv6 environment.  See https://bugs.webkit.org/show_bug.cgi?id=37104.
-my $httpdPort = 8000;
-my $httpdSSLPort = 8443;
-my $ignoreMetrics = 0;
-my $webSocketPort = 8880;
-# wss is disabled until all platforms support pyOpenSSL.
-# my $webSocketSecurePort = 9323;
-my @ignoreTests;
-my $iterations = 1;
-my $launchSafari = 1;
-my $mergeDepth;
-my $pixelTests = '';
-my $platform;
-my $quiet = '';
-my $randomizeTests = 0;
-my $repeatEach = 1;
-my $report10Slowest = 0;
-my $resetResults = 0;
-my $reverseTests = 0;
-my $root;
-my $runSample = 1;
-my $shouldCheckLeaks = 0;
-my $showHelp = 0;
-my $stripEditingCallbacks;
-my $testHTTP = 1;
-my $testWebSocket = 1;
-my $testMedia = 1;
-my $tmpDir = "/tmp";
-my $testResultsDirectory = File::Spec->catdir($tmpDir, "layout-test-results");
-my $testsPerDumpTool = 1000;
-my $threaded = 0;
-my $gcBetweenTests = 0;
-# DumpRenderTree has an internal timeout of 30 seconds, so this must be > 30.
-my $timeoutSeconds = 35;
-my $tolerance = 0;
-my $treatSkipped = "default";
-my $useRemoteLinksToTests = 0;
-my $useValgrind = 0;
-my $verbose = 0;
-my $shouldWaitForHTTPD = 0;
-my $useWebKitTestRunner = 0;
-my $noBuildDumpTool = 0;
-
-# These arguments are ignored, but exist for compatibility with new-run-webkit-tests.
-my $builderName = '';
-my $buildNumber = '';
-my $masterName = '';
-my $testResultsServer = '';
-
-my @leaksFilenames;
-
-if (isWindows()) {
-    print "This script has to be run under Cygwin to function correctly.\n";
-    exit 1;
-}
-
-# Default to --no-http for wx for now.
-$testHTTP = 0 if (isWx());
-
-my $perlInterpreter = "perl";
-
-my $expectedTag = "expected";
-my $mismatchTag = "mismatch";
-my $refTag = "ref";
-my $notrefTag = "notref";
-my $actualTag = "actual";
-my $prettyDiffTag = "pretty-diff";
-my $diffsTag = "diffs";
-my $errorTag = "stderr";
-my $crashLogTag = "crash-log";
-
-my $windowsCrashLogFilePrefix = "CrashLog";
-
-# These are defined here instead of closer to where they are used so that they
-# will always be accessible from the END block that uses them, even if the user
-# presses Ctrl-C before Perl has finished evaluating this whole file.
-my $windowsPostMortemDebuggerKey = "/HKLM/SOFTWARE/Microsoft/Windows NT/CurrentVersion/AeDebug";
-my %previousWindowsPostMortemDebuggerValues;
-
-my $realPlatform;
-
-my @macPlatforms = ("mac-leopard", "mac-snowleopard", "mac-lion", "mac");
-my @winPlatforms = ("win-xp", "win-vista", "win-7sp0", "win");
-
-if (isAppleMacWebKit()) {
-    if (isSnowLeopard()) {
-        $platform = "mac-snowleopard";
-        $tolerance = 0.1;
-    } elsif (isLion()) {
-        $platform = "mac-lion";
-        $tolerance = 0.1;
-    } else {
-        $platform = "mac";
-    }
-} elsif (isQt()) {
-    $platform = "qt";
-} elsif (isGtk()) {
-    $platform = "gtk";
-} elsif (isWx()) {
-    $platform = "wx";
-} elsif (isWinCairo()) {
-    $platform = "wincairo";
-} elsif (isCygwin() || isWindows()) {
-    if (isWindowsXP()) {
-        $platform = "win-xp";
-    } elsif (isWindowsVista()) {
-        $platform = "win-vista";
-    } elsif (isWindows7SP0()) {
-        $platform = "win-7sp0";
-    } else {
-        $platform = "win";
-    }
-}
-
-if (isQt() || isAppleWinWebKit()) {
-    my $testfontPath = $ENV{"WEBKIT_TESTFONTS"};
-    if (!$testfontPath || !-d "$testfontPath") {
-        print "The WEBKIT_TESTFONTS environment variable is not defined or not set properly\n";
-        print "You must set it before running the tests.\n";
-        print "Use git to grab the actual fonts from http://gitorious.org/qtwebkit/testfonts\n";
-        exit 1;
-    }
-}
-
-if (!defined($platform)) {
-    print "WARNING: Your platform is not recognized. Any platform-specific results will be generated in platform/undefined.\n";
-    $platform = "undefined";
-}
-
-if (!checkPythonVersion()) {
-    print "WARNING: Your platform does not have Python 2.5+, which is required to run websocket server, so disabling websocket/tests.\n";
-    $testWebSocket = 0;
-}
-
-my $programName = basename($0);
-my $launchSafariDefault = $launchSafari ? "launch" : "do not launch";
-my $httpDefault = $testHTTP ? "run" : "do not run";
-my $sampleDefault = $runSample ? "run" : "do not run";
-
-my $usage = <<EOF;
-Usage: $programName [options] [testdir|testpath ...]
-  --add-platform-exceptions       Put new results for non-platform-specific failing tests into the platform-specific results directory
-  --additional-platform-directory path/to/directory
-                                  Look in the specified directory before looking in any of the default platform-specific directories
-  --complex-text                  Use the complex text code path for all text (Mac OS X and Windows only)
-  -c|--configuration config       Set DumpRenderTree build configuration
-  --gc-between-tests              Force garbage collection between each test
-  -g|--guard-malloc               Enable Guard Malloc
-  --exit-after-n-failures N       Exit after the first N failures (includes crashes) instead of running all tests
-  --exit-after-n-crashes-or-timeouts N
-                                  Exit after the first N crashes instead of running all tests
-  -h|--help                       Show this help message
-  --[no-]http                     Run (or do not run) http tests (default: $httpDefault)
-  --[no-]wait-for-httpd           Wait for httpd if some other test session is using it already (same as WEBKIT_WAIT_FOR_HTTPD=1). (default: $shouldWaitForHTTPD) 
-  -i|--ignore-tests               Comma-separated list of directories or tests to ignore
-  --iterations n                  Number of times to run the set of tests (e.g. ABCABCABC)
-  --[no-]launch-safari            Launch (or do not launch) Safari to display test results (default: $launchSafariDefault)
-  --[no-]show-results             Same as --[no-]launch-safari
-  -l|--leaks                      Enable leaks checking
-  --[no-]new-test-results         Generate results for new tests
-  --nthly n                       Restart DumpRenderTree every n tests (default: $testsPerDumpTool)
-  -p|--pixel-tests                Enable pixel tests
-  --tolerance t                   Ignore image differences less than this percentage (default: $tolerance)
-  --platform                      Override the detected platform to use for tests and results (default: $platform)
-  --port                          Web server port to use with http tests
-  -q|--quiet                      Less verbose output
-  --reset-results                 Reset ALL results (including pixel tests if --pixel-tests is set)
-  -o|--results-directory          Output results directory (default: $testResultsDirectory)
-  --random                        Run the tests in a random order
-  --repeat-each n                 Number of times to run each test (e.g. AAABBBCCC)
-  --reverse                       Run the tests in reverse alphabetical order
-  --root                          Path to root tools build
-  --[no-]sample-on-timeout        Run sample on timeout (default: $sampleDefault) (Mac OS X only)
-  -1|--singly                     Isolate each test case run (implies --nthly 1 --verbose)
-  --skipped=[default|ignore|only] Specifies how to treat the Skipped file
-                                     default: Tests/directories listed in the Skipped file are not tested
-                                     ignore:  The Skipped file is ignored
-                                     only:    Only those tests/directories listed in the Skipped file will be run
-  --slowest                       Report the 10 slowest tests
-  --ignore-metrics                Ignore metrics in tests
-  --[no-]strip-editing-callbacks  Remove editing callbacks from expected results
-  -t|--threaded                   Run a concurrent JavaScript thead with each test
-  --timeout t                     Sets the number of seconds before a test times out (default: $timeoutSeconds)
-  --valgrind                      Run DumpRenderTree inside valgrind (Qt/Linux only)
-  -v|--verbose                    More verbose output (overrides --quiet)
-  -m|--merge-leak-depth arg       Merges leak callStacks and prints the number of unique leaks beneath a callstack depth of arg.  Defaults to 5.
-  --use-remote-links-to-tests     Link to test files within the SVN repository in the results.
-  -2|--webkit-test-runner         Use WebKitTestRunner rather than DumpRenderTree.
-EOF
-
-setConfiguration();
-
-my $getOptionsResult = GetOptions(
-    'add-platform-exceptions' => \$addPlatformExceptions,
-    'additional-platform-directory=s' => \@additionalPlatformDirectories,
-    'complex-text' => \$complexText,
-    'exit-after-n-failures=i' => \$exitAfterNFailures,
-    'exit-after-n-crashes-or-timeouts=i' => \$exitAfterNCrashesOrTimeouts,
-    'gc-between-tests' => \$gcBetweenTests,
-    'guard-malloc|g' => \$guardMalloc,
-    'help|h' => \$showHelp,
-    'http!' => \$testHTTP,
-    'wait-for-httpd!' => \$shouldWaitForHTTPD,
-    'ignore-metrics!' => \$ignoreMetrics,
-    'ignore-tests|i=s' => \@ignoreTests,
-    'iterations=i' => \$iterations,
-    'launch-safari!' => \$launchSafari,
-    'leaks|l' => \$shouldCheckLeaks,
-    'merge-leak-depth|m:5' => \$mergeDepth,
-    'new-test-results!' => \$generateNewResults,
-    'no-build' => \$noBuildDumpTool,
-    'nthly=i' => \$testsPerDumpTool,
-    'pixel-tests|p' => \$pixelTests,
-    'platform=s' => \$platform,
-    'port=i' => \$httpdPort,
-    'quiet|q' => \$quiet,
-    'random' => \$randomizeTests,
-    'repeat-each=i' => \$repeatEach,
-    'reset-results' => \$resetResults,
-    'results-directory|o=s' => \$testResultsDirectory,
-    'reverse' => \$reverseTests,
-    'root=s' => \$root,
-    'sample-on-timeout!' => \$runSample,
-    'show-results!' => \$launchSafari,
-    'singly|1' => sub { $testsPerDumpTool = 1; },
-    'skipped=s' => \&validateSkippedArg,
-    'slowest' => \$report10Slowest,
-    'strip-editing-callbacks!' => \$stripEditingCallbacks,
-    'threaded|t' => \$threaded,
-    'timeout=i' => \$timeoutSeconds,
-    'tolerance=f' => \$tolerance,
-    'use-remote-links-to-tests' => \$useRemoteLinksToTests,
-    'valgrind' => \$useValgrind,
-    'verbose|v' => \$verbose,
-    'webkit-test-runner|2' => \$useWebKitTestRunner,
-    # These arguments are ignored (but are used by new-run-webkit-tests).
-    'builder-name=s' => \$builderName,
-    'build-number=s' => \$buildNumber,
-    'master-name=s' => \$masterName,
-    'test-results-server=s' => \$testResultsServer,
-);
-
-if (!$getOptionsResult || $showHelp) {
-    print STDERR $usage;
-    exit 1;
-}
-
-if ($useWebKitTestRunner) {
-    if (isAppleMacWebKit()) {
-        $realPlatform = $platform;
-        $platform = "mac-wk2";
-    } elsif (isAppleWinWebKit()) {
-        $stripEditingCallbacks = 0 unless defined $stripEditingCallbacks;
-        $realPlatform = $platform;
-        $platform = "win-wk2";
-    } elsif (isQt()) {
-        $realPlatform = $platform;
-        $platform = "qt-5.0-wk2";
-    } elsif (isGtk()) {
-        $realPlatform = $platform;
-        $platform = "gtk-wk2";
-    }
-}
-
-$timeoutSeconds *= 10 if $guardMalloc;
-
-$stripEditingCallbacks = isCygwin() unless defined $stripEditingCallbacks;
-
-my $ignoreSkipped = $treatSkipped eq "ignore";
-my $skippedOnly = $treatSkipped eq "only";
-
-my $configuration = configuration();
-
-# We need an environment variable to be able to enable the feature per-slave
-$shouldWaitForHTTPD = $ENV{"WEBKIT_WAIT_FOR_HTTPD"} unless ($shouldWaitForHTTPD);
-$verbose = 1 if $testsPerDumpTool == 1;
-
-if ($shouldCheckLeaks && $testsPerDumpTool > 1000) {
-    print STDERR "\nWARNING: Running more than 1000 tests at a time with MallocStackLogging enabled may cause a crash.\n\n";
-}
-
-# Generating remote links causes a lot of unnecessary spew on GTK build bot
-$useRemoteLinksToTests = 0 if isGtk();
-
-setConfigurationProductDir(Cwd::abs_path($root)) if (defined($root));
-my $productDir = productDir();
-$productDir .= "/bin" if isQt();
-$productDir .= "/Programs" if isGtk();
-
-# Save the current directory before chaging it via chdirWebKit
-my $currentDir = cwd();
-chdirWebKit();
-
-if (!defined($root) && !$noBuildDumpTool) {
-    # FIXME: We build both DumpRenderTree and WebKitTestRunner for
-    # WebKitTestRunner runs because DumpRenderTree still includes
-    # the DumpRenderTreeSupport module and the TestNetscapePlugin.
-    # These two projects should be factored out into their own
-    # projects.
-    buildDumpTool("DumpRenderTree");
-    buildDumpTool("WebKitTestRunner") if $useWebKitTestRunner;
-}
-
-my $dumpToolName = $useWebKitTestRunner ? "WebKitTestRunner" : "DumpRenderTree";
-
-if (isAppleWinWebKit()) {
-    $dumpToolName .= "_debug" if configurationForVisualStudio() eq "Debug_All";
-    $dumpToolName .= "_debug" if configurationForVisualStudio() eq "Debug_Cairo_CFLite";
-    $dumpToolName .= $Config{_exe};
-}
-my $dumpTool = File::Spec->catfile($productDir, $dumpToolName);
-die "can't find executable $dumpToolName (looked in $productDir)\n" unless -x $dumpTool;
-
-my $imageDiffTool = "$productDir/ImageDiff";
-$imageDiffTool .= "_debug" if isCygwin() && configurationForVisualStudio() eq "Debug_All";
-$imageDiffTool .= "_debug" if isCygwin() && configurationForVisualStudio() eq "Debug_Cairo_CFLite";
-die "can't find executable $imageDiffTool (looked in $productDir)\n" if $pixelTests && !-x $imageDiffTool;
-
-checkFrameworks() unless isCygwin();
-
-if (isAppleMacWebKit()) {
-    push @INC, $productDir;
-    require DumpRenderTreeSupport;
-}
-
-my $layoutTestsName = "LayoutTests";
-my $testDirectory = File::Spec->rel2abs($layoutTestsName);
-my $expectedDirectory = $testDirectory;
-my $platformBaseDirectory = catdir($testDirectory, "platform");
-my $platformTestDirectory = catdir($platformBaseDirectory, $platform);
-my @platformResultHierarchy = buildPlatformResultHierarchy();
-my @platformTestHierarchy = buildPlatformTestHierarchy(@platformResultHierarchy);
-
-$expectedDirectory = $ENV{"WebKitExpectedTestResultsDirectory"} if $ENV{"WebKitExpectedTestResultsDirectory"};
-
-$testResultsDirectory = File::Spec->catfile($currentDir, $testResultsDirectory);
-# $testResultsDirectory must be empty before testing.
-rmtree $testResultsDirectory;
-my $testResults = File::Spec->catfile($testResultsDirectory, "results.html");
-
-if (isAppleMacWebKit()) {
-    print STDERR "Compiling Java tests\n";
-    my $javaTestsDirectory = catdir($testDirectory, "java");
-
-    if (system("/usr/bin/make", "-C", "$javaTestsDirectory")) {
-        exit 1;
-    }
-} elsif (isCygwin()) {
-    setUpWindowsCrashLogSaving();
-}
-
-print "Running tests from $testDirectory\n";
-if ($pixelTests) {
-    print "Enabling pixel tests with a tolerance of $tolerance%\n";
-    if (isDarwin()) {
-        if (!$useWebKitTestRunner) {
-            print "WARNING: Temporarily changing the main display color profile:\n";
-            print "\tThe colors on your screen will change for the duration of the testing.\n";
-            print "\tThis allows the pixel tests to have consistent color values across all machines.\n";
-        }
-
-        if (isPerianInstalled()) {
-            print "WARNING: Perian's QuickTime component is installed and this may affect pixel test results!\n";
-            print "\tYou should avoid generating new pixel results in this environment.\n";
-            print "\tSee https://bugs.webkit.org/show_bug.cgi?id=22615 for details.\n";
-        }
-    }
-}
-
-system "ln", "-s", $testDirectory, "/tmp/LayoutTests" unless -x "/tmp/LayoutTests";
-
-my %ignoredFiles = ( "results.html" => 1 );
-my %ignoredDirectories = map { $_ => 1 } qw(platform);
-my %ignoredLocalDirectories = map { $_ => 1 } qw(.svn _svn resources script-tests);
-my %supportedFileExtensions = map { $_ => 1 } qw(htm html shtml xml xhtml xhtmlmp pl php mht);
-
-if (!checkWebCoreFeatureSupport("MathML", 0)) {
-    $ignoredDirectories{'mathml'} = 1;
-}
-
-if (!checkWebCoreFeatureSupport("MHTML", 0)) {
-    $ignoredDirectories{'mhtml'} = 1;
-}
-
-# FIXME: We should fix webkitperl/features.pm:hasFeature() to do the correct feature detection for Cygwin.
-if (checkWebCoreFeatureSupport("SVG", 0)) {
-    $supportedFileExtensions{'svg'} = 1;
-} elsif (isCygwin()) {
-    $supportedFileExtensions{'svg'} = 1;
-} else {
-    $ignoredLocalDirectories{'svg'} = 1;
-}
-
-if (!$testHTTP) {
-    $ignoredDirectories{'http'} = 1;
-    $ignoredDirectories{'websocket'} = 1;
-} elsif (!hasHTTPD()) {
-    print "\nNo httpd found. Cannot run http tests.\nPlease use --no-http if you do not want to run http tests.\n";
-    exit 1;
-}
-
-if (!$testWebSocket) {
-    $ignoredDirectories{'websocket'} = 1;
-}
-
-if (!$testMedia) {
-    $ignoredDirectories{'media'} = 1;
-    $ignoredDirectories{'http/tests/media'} = 1;
-}
-
-my $supportedFeaturesResult = "";
-
-if (isCygwin()) {
-    # Collect supported features list
-    my $supportedFeaturesCommand = "\"$dumpTool\" --print-supported-features 2>&1";
-    $supportedFeaturesResult = `$supportedFeaturesCommand 2>&1`;
-}
-
-my $hasAcceleratedCompositing = 0;
-my $has3DRendering = 0;
-
-if (isCygwin()) {
-    $hasAcceleratedCompositing = $supportedFeaturesResult =~ /AcceleratedCompositing/;
-    $has3DRendering = $supportedFeaturesResult =~ /3DRendering/;
-} else {
-    $hasAcceleratedCompositing = checkWebCoreFeatureSupport("Accelerated Compositing", 0);
-    $has3DRendering = checkWebCoreFeatureSupport("3D Rendering", 0);
-}
-
-if (!$hasAcceleratedCompositing) {
-    $ignoredDirectories{'compositing'} = 1;
-
-    # This test has slightly different floating-point rounding when accelerated
-    # compositing is enabled.
-    $ignoredFiles{'svg/custom/use-on-symbol-inside-pattern.svg'} = 1;
-
-    # This test has an iframe that is put in a layer only in compositing mode.
-    $ignoredFiles{'media/media-document-audio-repaint.html'} = 1;
-
-    if (isAppleWebKit()) {
-        # In Apple's ports, the default controls for <video> contain a "full
-        # screen" button only if accelerated compositing is enabled.
-        $ignoredFiles{'media/controls-after-reload.html'} = 1;
-        $ignoredFiles{'media/controls-drag-timebar.html'} = 1;
-        $ignoredFiles{'media/controls-strict.html'} = 1;
-        $ignoredFiles{'media/controls-styling.html'} = 1;
-        $ignoredFiles{'media/controls-without-preload.html'} = 1;
-        $ignoredFiles{'media/video-controls-rendering.html'} = 1;
-        $ignoredFiles{'media/video-display-toggle.html'} = 1;
-        $ignoredFiles{'media/video-no-audio.html'} = 1;
-    }
-
-    # Here we're using !$hasAcceleratedCompositing as a proxy for "is a headless XP machine" (like
-    # our test slaves). Headless XP machines can neither support accelerated compositing nor pass
-    # this test, so skipping the test here is expedient, if a little sloppy. See
-    # <http://webkit.org/b/48333>.
-    $ignoredFiles{'platform/win/plugins/npn-invalidate-rect-invalidates-window.html'} = 1 if isAppleWinWebKit();
-}
-
-if (!$has3DRendering) {
-    $ignoredDirectories{'animations/3d'} = 1;
-    $ignoredDirectories{'transforms/3d'} = 1;
-
-    # These tests use the -webkit-transform-3d media query.
-    $ignoredFiles{'fast/media/mq-transform-02.html'} = 1;
-    $ignoredFiles{'fast/media/mq-transform-03.html'} = 1;
-}
-
-if (!checkWebCoreFeatureSupport("3D Canvas", 0)) {
-    $ignoredDirectories{'fast/canvas/webgl'} = 1;
-    $ignoredDirectories{'compositing/webgl'} = 1;
-    $ignoredDirectories{'http/tests/canvas/webgl'} = 1;
-}
-
-if (isAppleMacWebKit() && $platform ne "mac-wk2" && osXVersion()->{minor} >= 6 && architecture() =~ /x86_64/) {
-    # This test relies on executing JavaScript during NPP_Destroy, which isn't supported with
-    # out-of-process plugins in WebKit1. See <http://webkit.org/b/58077>.
-    $ignoredFiles{'plugins/npp-set-window-called-during-destruction.html'} = 1;
-}
-
-processIgnoreTests(join(',', @ignoreTests), "ignore-tests") if @ignoreTests;
-if (!$ignoreSkipped) {
-    if (!$skippedOnly || @ARGV == 0) {
-        readSkippedFiles("");
-    } else {
-        # Since readSkippedFiles() appends to @ARGV, we must use a foreach
-        # loop so that we only iterate over the original argument list.
-        foreach my $argnum (0 .. $#ARGV) {
-            readSkippedFiles(shift @ARGV);
-        }
-    }
-}
-
-my @tests = findTestsToRun();
-
-die "no tests to run\n" if !@tests;
-
-my %counts;
-my %tests;
-my %imagesPresent;
-my %imageDifferences;
-my %durations;
-my $count = 0;
-my $leaksOutputFileNumber = 1;
-my $totalLeaks = 0;
-my $stoppedRunningEarlyMessage;
-
-my @toolArgs = ();
-push @toolArgs, "--pixel-tests" if $pixelTests;
-push @toolArgs, "--threaded" if $threaded;
-push @toolArgs, "--complex-text" if $complexText;
-push @toolArgs, "--gc-between-tests" if $gcBetweenTests;
-push @toolArgs, "-";
-
-my @diffToolArgs = ();
-push @diffToolArgs, "--tolerance", $tolerance;
-
-$| = 1;
-
-my $dumpToolPID;
-my $isDumpToolOpen = 0;
-my $dumpToolCrashed = 0;
-my $imageDiffToolPID;
-my $isDiffToolOpen = 0;
-
-my $atLineStart = 1;
-my $lastDirectory = "";
-
-my $isHttpdOpen = 0;
-my $isWebSocketServerOpen = 0;
-my $webSocketServerPidFile = 0;
-my $failedToStartWebSocketServer = 0;
-# wss is disabled until all platforms support pyOpenSSL.
-# my $webSocketSecureServerPID = 0;
-
-sub catch_pipe { $dumpToolCrashed = 1; }
-$SIG{"PIPE"} = "catch_pipe";
-
-print "Testing ", scalar @tests, " test cases";
-print " $iterations times" if ($iterations > 1);
-print ", repeating each test $repeatEach times" if ($repeatEach > 1);
-print ".\n";
-
-my $overallStartTime = time;
-
-my %expectedResultPaths;
-
-my @originalTests = @tests;
-# Add individual test repetitions
-if ($repeatEach > 1) {
-    @tests = ();
-    foreach my $test (@originalTests) {
-        for (my $i = 0; $i < $repeatEach; $i++) {
-            push(@tests, $test);
-        }
-    }
-}
-# Add test set repetitions
-for (my $i = 1; $i < $iterations; $i++) {
-    push(@tests, @originalTests);
-}
-
-my $absTestResultsDirectory = resolveAndMakeTestResultsDirectory();
-open my $tests_run_fh, '>', "$absTestResultsDirectory/tests_run.txt" or die $!;
-
-for my $test (@tests) {
-    my $newDumpTool = not $isDumpToolOpen;
-    openDumpTool();
-
-    my $base = stripExtension($test);
-    my $expectedExtension = ".txt";
-    
-    my $dir = $base;
-    $dir =~ s|/[^/]+$||;
-
-    if ($newDumpTool || $dir ne $lastDirectory) {
-        foreach my $logue (epiloguesAndPrologues($newDumpTool ? "" : $lastDirectory, $dir)) {
-            if (isCygwin()) {
-                $logue = toWindowsPath($logue);
-            } else {
-                $logue = canonpath($logue);
-            }
-            if ($verbose) {
-                print "running epilogue or prologue $logue\n";
-            }
-            print OUT "$logue\n";
-            # Throw away output from DumpRenderTree.
-            # Once for the test output and once for pixel results (empty)
-            while (<IN>) {
-                last if /#EOF/;
-            }
-            while (<IN>) {
-                last if /#EOF/;
-            }
-        }
-    }
-
-    if ($verbose) {
-        print "running $test -> ";
-        $atLineStart = 0;
-    } elsif (!$quiet) {
-        if ($dir ne $lastDirectory) {
-            print "\n" unless $atLineStart;
-            print "$dir ";
-        }
-        print ".";
-        $atLineStart = 0;
-    }
-
-    $lastDirectory = $dir;
-
-    my $result;
-
-    my $startTime = time if $report10Slowest;
-
-    print $tests_run_fh "$test\n";
-
-    # Try to read expected hash file for pixel tests
-    my $suffixPixelTest = "";
-    if ($pixelTests) {
-        # ' is the separator between arguments.
-        $suffixPixelTest = "'--pixel-test";
-        if (!$resetResults) {
-            my $expectedPixelDir = expectedDirectoryForTest($base, 0, "png");
-            if (my $expectedHash = readChecksumFromPng(File::Spec->catfile($expectedPixelDir, "$base-$expectedTag.png"))) {
-                # Format expected hash into a suffix string that is appended to the path / URL passed to DRT.
-                $suffixPixelTest = "'--pixel-test'$expectedHash";
-            }
-        }
-    }
-
-    if ($test =~ /^http\//) {
-        configureAndOpenHTTPDIfNeeded();
-        if ($test =~ /^http\/tests\/websocket\//) {
-            if ($test =~ /^websocket\/tests\/local\//) {
-                my $testPath = "$testDirectory/$test";
-                if (isCygwin()) {
-                    $testPath = toWindowsPath($testPath);
-                } else {
-                    $testPath = canonpath($testPath);
-                }
-                print OUT "$testPath\n";
-            } else {
-                if (openWebSocketServerIfNeeded()) {
-                    my $path = canonpath($test);
-                    if ($test =~ /^http\/tests\/websocket\/tests\/ssl\//) {
-                        # wss is disabled until all platforms support pyOpenSSL.
-                        print STDERR "Error: wss is disabled until all platforms support pyOpenSSL.";
-                    } else {
-                        $path =~ s/^http\/tests\///;
-                        print OUT "http://127.0.0.1:$httpdPort/$path\n";
-                    }
-                } else {
-                    # We failed to launch the WebSocket server.  Display a useful error message rather than attempting
-                    # to run tests that expect the server to be available.
-                    my $errorMessagePath = "$testDirectory/http/tests/websocket/resources/server-failed-to-start.html";
-                    $errorMessagePath = isCygwin() ? toWindowsPath($errorMessagePath) : canonpath($errorMessagePath);
-                    print OUT "$errorMessagePath\n";
-                }
-            }
-        } elsif ($test !~ /^http\/tests\/local\// && $test !~ /^http\/tests\/ssl\//) {
-            my $path = canonpath($test);
-            $path =~ s/^http\/tests\///;
-            print OUT "http://127.0.0.1:$httpdPort/$path$suffixPixelTest\n";
-        } elsif ($test =~ /^http\/tests\/ssl\//) {
-            my $path = canonpath($test);
-            $path =~ s/^http\/tests\///;
-            print OUT "https://127.0.0.1:$httpdSSLPort/$path$suffixPixelTest\n";
-        } else {
-            my $testPath = "$testDirectory/$test";
-            if (isCygwin()) {
-                $testPath = toWindowsPath($testPath);
-            } else {
-                $testPath = canonpath($testPath);
-            }
-            print OUT "$testPath$suffixPixelTest\n";
-        }
-    } else {
-        my $testPath = "$testDirectory/$test";
-        if (isCygwin()) {
-            $testPath = toWindowsPath($testPath);
-        } else {
-            $testPath = canonpath($testPath);
-        }
-        print OUT "$testPath$suffixPixelTest\n" if defined $testPath;
-    }
-
-    # DumpRenderTree is expected to dump two "blocks" to stdout for each test.
-    # Each block is terminated by a #EOF on a line by itself.
-    # The first block is the output of the test (in text, RenderTree or other formats).
-    # The second block is for optional pixel data in PNG format, and may be empty if
-    # pixel tests are not being run, or the test does not dump pixels (e.g. text tests).
-    my $readResults = readFromDumpToolWithTimer(IN, ERROR);
-
-    my $actual = $readResults->{output};
-    my $error = $readResults->{error};
-
-    $expectedExtension = $readResults->{extension};
-    my $expectedFileName = "$base-$expectedTag.$expectedExtension";
-
-    my $isText = isTextOnlyTest($actual);
-
-    my $expectedDir = expectedDirectoryForTest($base, $isText, $expectedExtension);
-    $expectedResultPaths{$base} = File::Spec->catfile($expectedDir, $expectedFileName);
-
-    unless ($readResults->{status} eq "success") {
-        my $crashed = $readResults->{status} eq "crashed";
-        my $webProcessCrashed = $readResults->{status} eq "webProcessCrashed";
-        testCrashedOrTimedOut($test, $base, $crashed, $webProcessCrashed, $actual, $error);
-        countFinishedTest($test, $base, $webProcessCrashed ? "webProcessCrash" : $crashed ? "crash" : "timedout", 0);
-        last if stopRunningTestsEarlyIfNeeded();
-        next;
-    }
-
-    $durations{$test} = time - $startTime if $report10Slowest;
-
-    my $expected;
-
-    if (!$resetResults && open EXPECTED, "<", $expectedResultPaths{$base}) {
-        $expected = "";
-        while (<EXPECTED>) {
-            next if $stripEditingCallbacks && $_ =~ /^EDITING DELEGATE:/;
-            $expected .= $_;
-        }
-        close EXPECTED;
-    }
-
-    if ($ignoreMetrics && !$isText && defined $expected) {
-        ($actual, $expected) = stripMetrics($actual, $expected);
-    }
-
-    if ($shouldCheckLeaks && $testsPerDumpTool == 1) {
-        print "        $test -> ";
-    }
-
-    my $actualPNG = "";
-    my $diffPNG = "";
-    my $diffPercentage = 0;
-    my $diffResult = "passed";
-
-    my $actualHash = "";
-    my $expectedHash = "";
-    my $actualPNGSize = 0;
-
-    while (<IN>) {
-        last if /#EOF/;
-        if (/ActualHash: ([a-f0-9]{32})/) {
-            $actualHash = $1;
-        } elsif (/ExpectedHash: ([a-f0-9]{32})/) {
-            $expectedHash = $1;
-        } elsif (/Content-Length: (\d+)\s*/) {
-            $actualPNGSize = $1;
-            read(IN, $actualPNG, $actualPNGSize);
-        }
-    }
-
-    if ($verbose && $pixelTests && !$resetResults && $actualPNGSize) {
-        if ($actualHash eq "" && $expectedHash eq "") {
-            printFailureMessageForTest($test, "WARNING: actual & expected pixel hashes are missing!");
-        } elsif ($actualHash eq "") {
-            printFailureMessageForTest($test, "WARNING: actual pixel hash is missing!");
-        } elsif ($expectedHash eq "") {
-            printFailureMessageForTest($test, "WARNING: expected pixel hash is missing!");
-        }
-    }
-
-    if ($actualPNGSize > 0) {
-        my $expectedPixelDir = expectedDirectoryForTest($base, 0, "png");
-        my $expectedPNGPath = File::Spec->catfile($expectedPixelDir, "$base-$expectedTag.png");
-
-        if (!$resetResults && ($expectedHash ne $actualHash || ($actualHash eq "" && $expectedHash eq ""))) {
-            if (-f $expectedPNGPath) {
-                my $expectedPNGSize = -s $expectedPNGPath;
-                my $expectedPNG = "";
-                open EXPECTEDPNG, $expectedPNGPath;
-                read(EXPECTEDPNG, $expectedPNG, $expectedPNGSize);
-
-                openDiffTool();
-                print DIFFOUT "Content-Length: $actualPNGSize\n";
-                print DIFFOUT $actualPNG;
-
-                print DIFFOUT "Content-Length: $expectedPNGSize\n";
-                print DIFFOUT $expectedPNG;
-
-                while (<DIFFIN>) {
-                    last if /^error/ || /^diff:/;
-                    if (/Content-Length: (\d+)\s*/) {
-                        read(DIFFIN, $diffPNG, $1);
-                    }
-                }
-
-                if (/^diff: (.+)% (passed|failed)/) {
-                    $diffPercentage = $1 + 0;
-                    $imageDifferences{$base} = $diffPercentage;
-                    $diffResult = $2;
-                }
-                
-                if (!$diffPercentage) {
-                    printFailureMessageForTest($test, "pixel hash failed (but pixel test still passes)");
-                }
-            } elsif ($verbose) {
-                printFailureMessageForTest($test, "WARNING: expected image is missing!");
-            }
-        }
-
-        if ($resetResults || !-f $expectedPNGPath) {
-            if (!$addPlatformExceptions) {
-                mkpath catfile($expectedPixelDir, dirname($base)) if $testDirectory ne $expectedPixelDir;
-                writeToFile($expectedPNGPath, $actualPNG);
-            } else {
-                mkpath catfile($platformTestDirectory, dirname($base));
-                writeToFile("$platformTestDirectory/$base-$expectedTag.png", $actualPNG);
-            }
-        }
-    }
-
-    if (dumpToolDidCrash()) {
-        $result = "crash";
-        testCrashedOrTimedOut($test, $base, 1, 0, $actual, $error);
-    } elsif (!defined $expected) {
-        if ($verbose) {
-            print "new " . ($resetResults ? "result" : "test");
-        }
-        $result = "new";
-
-        if ($generateNewResults || $resetResults) {
-            if (!$addPlatformExceptions) {
-                mkpath catfile($expectedDir, dirname($base)) if $testDirectory ne $expectedDir;
-                writeToFile("$expectedDir/$expectedFileName", $actual);
-            } else {
-                mkpath catfile($platformTestDirectory, dirname($base));
-                writeToFile("$platformTestDirectory/$expectedFileName", $actual);
-            }
-        }
-        deleteExpectedAndActualResults($base);
-        recordActualResultsAndDiff($base, $actual);
-        if (!$resetResults) {
-            # Always print the file name for new tests, as they will probably need some manual inspection.
-            # in verbose mode we already printed the test case, so no need to do it again.
-            unless ($verbose) {
-                print "\n" unless $atLineStart;
-                print "$test -> ";
-            }
-            my $resultsDir = catdir($expectedDir, dirname($base));
-            if (!$verbose) {
-                print "new";
-            }
-            if ($generateNewResults) {
-                print " (results generated in $resultsDir)";
-            }
-            print "\n" unless $atLineStart;
-            $atLineStart = 1;
-        }
-    } elsif ($actual eq $expected && $diffResult eq "passed") {
-        if ($verbose) {
-            print "succeeded\n";
-            $atLineStart = 1;
-        }
-        $result = "match";
-        deleteExpectedAndActualResults($base);
-    } else {
-        $result = "mismatch";
-
-        my $pixelTestFailed = $pixelTests && $diffPNG && $diffPNG ne "";
-        my $testFailed = $actual ne $expected;
-
-        my $message = !$testFailed ? "pixel test failed" : "failed";
-
-        if (($testFailed || $pixelTestFailed) && $addPlatformExceptions) {
-            my $testBase = catfile($testDirectory, $base);
-            my $expectedBase = catfile($expectedDir, $base);
-            my $testIsMaximallyPlatformSpecific = $testBase =~ m|^\Q$platformTestDirectory\E/|;
-            my $expectedResultIsMaximallyPlatformSpecific = $expectedBase =~ m|^\Q$platformTestDirectory\E/|;
-            if (!$testIsMaximallyPlatformSpecific && !$expectedResultIsMaximallyPlatformSpecific) {
-                mkpath catfile($platformTestDirectory, dirname($base));
-                if ($testFailed) {
-                    my $expectedFile = catfile($platformTestDirectory, "$expectedFileName");
-                    writeToFile("$expectedFile", $actual);
-                }
-                if ($pixelTestFailed) {
-                    my $expectedFile = catfile($platformTestDirectory, "$base-$expectedTag.png");
-                    writeToFile("$expectedFile", $actualPNG);
-                }
-                $message .= " (results generated in $platformTestDirectory)";
-            }
-        }
-
-        printFailureMessageForTest($test, $message);
-
-        my $dir = "$testResultsDirectory/$base";
-        $dir =~ s|/([^/]+)$|| or die "Failed to find test name from base\n";
-        my $testName = $1;
-        mkpath $dir;
-
-        deleteExpectedAndActualResults($base);
-        recordActualResultsAndDiff($base, $actual);
-
-        if ($pixelTestFailed) {
-            $imagesPresent{$base} = 1;
-
-            writeToFile("$testResultsDirectory/$base-$actualTag.png", $actualPNG);
-            writeToFile("$testResultsDirectory/$base-$diffsTag.png", $diffPNG);
-
-            my $expectedPixelDir = expectedDirectoryForTest($base, 0, "png");
-            copy("$expectedPixelDir/$base-$expectedTag.png", "$testResultsDirectory/$base-$expectedTag.png");
-
-            open DIFFHTML, ">$testResultsDirectory/$base-$diffsTag.html" or die;
-            print DIFFHTML "<html>\n";
-            print DIFFHTML "<head>\n";
-            print DIFFHTML "<title>$base Image Compare</title>\n";
-            print DIFFHTML "<script language=\"Javascript\" type=\"text/javascript\">\n";
-            print DIFFHTML "var currentImage = 0;\n";
-            print DIFFHTML "var imageNames = new Array(\"Actual\", \"Expected\");\n";
-            print DIFFHTML "var imagePaths = new Array(\"$testName-$actualTag.png\", \"$testName-$expectedTag.png\");\n";
-            if (-f "$testDirectory/$base-w3c.png") {
-                copy("$testDirectory/$base-w3c.png", "$testResultsDirectory/$base-w3c.png");
-                print DIFFHTML "imageNames.push(\"W3C\");\n";
-                print DIFFHTML "imagePaths.push(\"$testName-w3c.png\");\n";
-            }
-            print DIFFHTML "function animateImage() {\n";
-            print DIFFHTML "    var image = document.getElementById(\"animatedImage\");\n";
-            print DIFFHTML "    var imageText = document.getElementById(\"imageText\");\n";
-            print DIFFHTML "    image.src = imagePaths[currentImage];\n";
-            print DIFFHTML "    imageText.innerHTML = imageNames[currentImage] + \" Image\";\n";
-            print DIFFHTML "    currentImage = (currentImage + 1) % imageNames.length;\n";
-            print DIFFHTML "    setTimeout('animateImage()',2000);\n";
-            print DIFFHTML "}\n";
-            print DIFFHTML "</script>\n";
-            print DIFFHTML "</head>\n";
-            print DIFFHTML "<body onLoad=\"animateImage();\">\n";
-            print DIFFHTML "<table>\n";
-            if ($diffPercentage) {
-                print DIFFHTML "<tr>\n";
-                print DIFFHTML "<td>Difference between images: <a href=\"$testName-$diffsTag.png\">$diffPercentage%</a></td>\n";
-                print DIFFHTML "</tr>\n";
-            }
-            print DIFFHTML "<tr>\n";
-            print DIFFHTML "<td><a href=\"" . toURL("$testDirectory/$test") . "\">test file</a></td>\n";
-            print DIFFHTML "</tr>\n";
-            print DIFFHTML "<tr>\n";
-            print DIFFHTML "<td id=\"imageText\" style=\"text-weight: bold;\">Actual Image</td>\n";
-            print DIFFHTML "</tr>\n";
-            print DIFFHTML "<tr>\n";
-            print DIFFHTML "<td><img src=\"$testName-$actualTag.png\" id=\"animatedImage\"></td>\n";
-            print DIFFHTML "</tr>\n";
-            print DIFFHTML "</table>\n";
-            print DIFFHTML "</body>\n";
-            print DIFFHTML "</html>\n";
-        }
-    }
-
-    if ($error) {
-        my $dir = dirname(File::Spec->catdir($testResultsDirectory, $base));
-        mkpath $dir;
-        
-        writeToFile(File::Spec->catfile($testResultsDirectory, "$base-$errorTag.txt"), $error);
-        
-        $counts{error}++;
-        push @{$tests{error}}, $test;
-    }
-
-    countFinishedTest($test, $base, $result, $isText);
-    last if stopRunningTestsEarlyIfNeeded();
-}
-
-close($tests_run_fh);
-
-my $totalTestingTime = time - $overallStartTime;
-my $waitTime = getWaitTime();
-if ($waitTime > 0.1) {
-    my $normalizedTestingTime = $totalTestingTime - $waitTime;
-    printf "\n%0.2fs HTTPD waiting time\n", $waitTime . "";
-    printf "%0.2fs normalized testing time", $normalizedTestingTime . "";
-}
-printf "\n%0.2fs total testing time\n", $totalTestingTime . "";
-
-!$isDumpToolOpen || die "Failed to close $dumpToolName.\n";
-
-$isHttpdOpen = !closeHTTPD();
-closeWebSocketServer();
-
-# Because multiple instances of this script are running concurrently we cannot 
-# safely delete this symlink.
-# system "rm /tmp/LayoutTests";
-
-# FIXME: Do we really want to check the image-comparison tool for leaks every time?
-if ($isDiffToolOpen && $shouldCheckLeaks) {
-    $totalLeaks += countAndPrintLeaks("ImageDiff", $imageDiffToolPID, "$testResultsDirectory/ImageDiff-leaks.txt");
-}
-
-if ($totalLeaks) {
-    if ($mergeDepth) {
-        parseLeaksandPrintUniqueLeaks();
-    } else { 
-        print "\nWARNING: $totalLeaks total leaks found!\n";
-        print "See above for individual leaks results.\n" if ($leaksOutputFileNumber > 2);
-    }
-}
-
-close IN;
-close OUT;
-close ERROR;
-
-if ($report10Slowest) {
-    print "\n\nThe 10 slowest tests:\n\n";
-    my $count = 0;
-    for my $test (sort slowestcmp keys %durations) {
-        printf "%0.2f secs: %s\n", $durations{$test}, $test;
-        last if ++$count == 10;
-    }
-}
-
-print "\n";
-
-if ($skippedOnly && $counts{"match"}) {
-    print "The following tests are in the Skipped file (" . File::Spec->abs2rel("$platformTestDirectory/Skipped", $testDirectory) . "), but succeeded:\n";
-    foreach my $test (@{$tests{"match"}}) {
-        print "  $test\n";
-    }
-}
-
-if ($resetResults || ($counts{match} && $counts{match} == $count)) {
-    print "all $count test cases succeeded\n";
-    unlink $testResults;
-    exit;
-}
-
-printResults();
-
-mkpath $testResultsDirectory;
-
-open HTML, ">", $testResults or die "Failed to open $testResults. $!";
-print HTML <<EOF;
-<html>
-<head>
-<title>Layout Test Results</title>
-<style>
-.stopped-running-early-message {
-    border: 3px solid #d00;
-    font-weight: bold;
-}
-</style>
-</head>
-</body>
-EOF
-
-if ($ignoreMetrics) {
-    print HTML "<h4>Tested with metrics ignored.</h4>";
-}
-
-if ($stoppedRunningEarlyMessage) {
-    print HTML "<p class='stopped-running-early-message'>$stoppedRunningEarlyMessage</p>";
-}
-
-print HTML htmlForResultsSection(@{$tests{mismatch}}, "Tests where results did not match expected results", \&linksForMismatchTest);
-print HTML htmlForResultsSection(@{$tests{timedout}}, "Tests that timed out", \&linksForErrorTest);
-print HTML htmlForResultsSection(@{$tests{crash}}, "Tests that caused the DumpRenderTree tool to crash", \&linksForErrorTest);
-print HTML htmlForResultsSection(@{$tests{webProcessCrash}}, "Tests that caused the Web process to crash", \&linksForErrorTest);
-print HTML htmlForResultsSection(@{$tests{error}}, "Tests that had stderr output", \&linksForErrorTest);
-print HTML htmlForResultsSection(@{$tests{new}}, "Tests that had no expected results (probably new)", \&linksForNewTest);
-
-print HTML "<p>httpd access log: <a href=\"access_log.txt\">access_log.txt</a></p>\n";
-print HTML "<p>httpd error log: <a href=\"error_log.txt\">error_log.txt</a></p>\n";
-
-print HTML "</body>\n";
-print HTML "</html>\n";
-close HTML;
-
-my @configurationArgs = argumentsForConfiguration();
-
-if (isGtk()) {
-  push(@configurationArgs, '-2') if $useWebKitTestRunner;
-  system "Tools/Scripts/run-launcher", @configurationArgs, "file://".$testResults if $launchSafari;
-} elsif (isQt()) {
-  if (getQtVersion() lt "5.0") {
-    unshift @configurationArgs, qw(-style windows);
-    unshift @configurationArgs, qw(-graphicssystem raster);
-  }
-  if (isCygwin()) {
-    $testResults = "/" . toWindowsPath($testResults);
-    $testResults =~ s/\\/\//g;
-  }
-  push(@configurationArgs, '-2') if $useWebKitTestRunner;
-  system "Tools/Scripts/run-launcher", @configurationArgs, "file://".$testResults if $launchSafari;
-} elsif (isCygwin()) {
-  system "cygstart", $testResults if $launchSafari;
-} elsif (isWindows()) {
-  system "start", $testResults if $launchSafari;
-} else {
-  system "Tools/Scripts/run-safari", @configurationArgs, "-NSOpen", $testResults if $launchSafari;
-}
-
-closeCygpaths() if isCygwin();
-
-exit 1;
-
-sub countAndPrintLeaks($$$)
-{
-    my ($dumpToolName, $dumpToolPID, $leaksFilePath) = @_;
-
-    print "\n" unless $atLineStart;
-    $atLineStart = 1;
-
-    # We are excluding the following reported leaks so they don't get in our way when looking for WebKit leaks:
-    # This allows us ignore known leaks and only be alerted when new leaks occur. Some leaks are in the old
-    # versions of the system frameworks that are being used by the leaks bots. Even though a leak has been
-    # fixed, it will be listed here until the bot has been updated with the newer frameworks.
-
-    my @typesToExclude = (
-    );
-
-    my @callStacksToExclude = (
-        "Flash_EnforceLocalSecurity", # leaks in Flash plug-in code, rdar://problem/4449747
-        "ScanFromString", # <http://code.google.com/p/angleproject/issues/detail?id=249> leak in ANGLE
-    );
-
-    if (isSnowLeopard()) {
-        push @callStacksToExclude, (
-            "readMakerNoteProps", # <rdar://problem/7156432> leak in ImageIO
-            "QTKitMovieControllerView completeUISetup", # <rdar://problem/7155156> leak in QTKit
-            "getVMInitArgs", # <rdar://problem/7714444> leak in Java
-            "Java_java_lang_System_initProperties", # <rdar://problem/7714465> leak in Java
-            "glrCompExecuteKernel", # <rdar://problem/7815391> leak in graphics driver while using OpenGL
-            "NSNumberFormatter getObjectValue:forString:errorDescription:", # <rdar://problem/7149350> Leak in NSNumberFormatter
-        );
-    }
-
-    if (isLion()) {
-        push @callStacksToExclude, (
-            "FigByteFlumeCustomURLCreateWithURL", # <rdar://problem/10461926> leak in CoreMedia
-            "PDFPage\\(PDFPageInternal\\) pageLayoutIfAvail", # <rdar://problem/10462055> leak in PDFKit
-            "SecTransformExecute", # <rdar://problem/10470667> leak in Security.framework
-            "_NSCopyStyleRefForFocusRingStyleClip", # <rdar://problem/10462031> leak in AppKit
-        );
-    }
-
-    my $leaksTool = sourceDir() . "/Tools/Scripts/run-leaks";
-    my $excludeString = "--exclude-callstack '" . (join "' --exclude-callstack '", @callStacksToExclude) . "'";
-    $excludeString .= " --exclude-type '" . (join "' --exclude-type '", @typesToExclude) . "'" if @typesToExclude;
-
-    print " ? checking for leaks in $dumpToolName\n";
-    my $leaksOutput = `$leaksTool $excludeString $dumpToolPID`;
-    my ($count, $bytes) = $leaksOutput =~ /Process $dumpToolPID: (\d+) leaks? for (\d+) total/;
-    my ($excluded) = $leaksOutput =~ /(\d+) leaks? excluded/;
-
-    my $adjustedCount = $count;
-    $adjustedCount -= $excluded if $excluded;
-
-    if (!$adjustedCount) {
-        print " - no leaks found\n";
-        unlink $leaksFilePath;
-        return 0;
-    } else {
-        my $dir = $leaksFilePath;
-        $dir =~ s|/[^/]+$|| or die;
-        mkpath $dir;
-
-        if ($excluded) {
-            print " + $adjustedCount leaks ($bytes bytes including $excluded excluded leaks) were found, details in $leaksFilePath\n";
-        } else {
-            print " + $count leaks ($bytes bytes) were found, details in $leaksFilePath\n";
-        }
-
-        writeToFile($leaksFilePath, $leaksOutput);
-        
-        push @leaksFilenames, $leaksFilePath;
-    }
-
-    return $adjustedCount;
-}
-
-sub writeToFile($$)
-{
-    my ($filePath, $contents) = @_;
-    open NEWFILE, ">", "$filePath" or die "Could not create $filePath. $!\n";
-    print NEWFILE $contents;
-    close NEWFILE;
-}
-
-# Break up a path into the directory (with slash) and base name.
-sub splitpath($)
-{
-    my ($path) = @_;
-
-    my $pathSeparator = "/";
-    my $dirname = dirname($path) . $pathSeparator;
-    $dirname = "" if $dirname eq "." . $pathSeparator;
-
-    return ($dirname, basename($path));
-}
-
-# Sort first by directory, then by file, so all paths in one directory are grouped
-# rather than being interspersed with items from subdirectories.
-# Use numericcmp to sort directory and filenames to make order logical.
-sub pathcmp($$)
-{
-    my ($patha, $pathb) = @_;
-
-    my ($dira, $namea) = splitpath($patha);
-    my ($dirb, $nameb) = splitpath($pathb);
-
-    return numericcmp($dira, $dirb) if $dira ne $dirb;
-    return numericcmp($namea, $nameb);
-}
-
-# Sort numeric parts of strings as numbers, other parts as strings.
-# Makes 1.33 come after 1.3, which is cool.
-sub numericcmp($$)
-{
-    my ($aa, $bb) = @_;
-
-    my @a = split /(\d+)/, $aa;
-    my @b = split /(\d+)/, $bb;
-
-    # Compare one chunk at a time.
-    # Each chunk is either all numeric digits, or all not numeric digits.
-    while (@a && @b) {
-        my $a = shift @a;
-        my $b = shift @b;
-        
-        # Use numeric comparison if chunks are non-equal numbers.
-        return $a <=> $b if $a =~ /^\d/ && $b =~ /^\d/ && $a != $b;
-
-        # Use string comparison if chunks are any other kind of non-equal string.
-        return $a cmp $b if $a ne $b;
-    }
-    
-    # One of the two is now empty; compare lengths for result in this case.
-    return @a <=> @b;
-}
-
-# Sort slowest tests first.
-sub slowestcmp($$)
-{
-    my ($testa, $testb) = @_;
-
-    my $dura = $durations{$testa};
-    my $durb = $durations{$testb};
-    return $durb <=> $dura if $dura != $durb;
-    return pathcmp($testa, $testb);
-}
-
-sub launchWithEnv(\@\%)
-{
-    my ($args, $env) = @_;
-
-    # Dump the current environment as perl code and then put it in quotes so it is one parameter.
-    my $environmentDumper = Data::Dumper->new([\%{$env}], [qw(*ENV)]);
-    $environmentDumper->Indent(0);
-    $environmentDumper->Purity(1);
-    my $allEnvVars = $environmentDumper->Dump();
-    unshift @{$args}, "\"$allEnvVars\"";
-
-    my $execScript = File::Spec->catfile(sourceDir(), qw(Tools Scripts execAppWithEnv));
-    unshift @{$args}, $perlInterpreter, $execScript;
-    return @{$args};
-}
-
-sub resolveAndMakeTestResultsDirectory()
-{
-    my $absTestResultsDirectory = File::Spec->rel2abs(glob $testResultsDirectory);
-    mkpath $absTestResultsDirectory;
-    return $absTestResultsDirectory;
-}
-
-sub openDiffTool()
-{
-    return if $isDiffToolOpen;
-    return if !$pixelTests;
-
-    my %CLEAN_ENV;
-    $CLEAN_ENV{MallocStackLogging} = 1 if $shouldCheckLeaks;
-    $imageDiffToolPID = open2(\*DIFFIN, \*DIFFOUT, $imageDiffTool, launchWithEnv(@diffToolArgs, %CLEAN_ENV)) or die "unable to open $imageDiffTool\n";
-    $isDiffToolOpen = 1;
-}
-
-sub buildDumpTool($)
-{
-    my ($dumpToolName) = @_;
-
-    my $dumpToolBuildScript =  "build-" . lc($dumpToolName);
-    print STDERR "Running $dumpToolBuildScript\n";
-
-    local *DEVNULL;
-    my ($childIn, $childOut, $childErr);
-    if ($quiet) {
-        open(DEVNULL, ">", File::Spec->devnull()) or die "Failed to open /dev/null";
-        $childOut = ">&DEVNULL";
-        $childErr = ">&DEVNULL";
-    } else {
-        # When not quiet, let the child use our stdout/stderr.
-        $childOut = ">&STDOUT";
-        $childErr = ">&STDERR";
-    }
-
-    my @args = argumentsForConfiguration();
-    my $buildProcess = open3($childIn, $childOut, $childErr, $perlInterpreter, File::Spec->catfile(qw(Tools Scripts), $dumpToolBuildScript), @args) or die "Failed to run build-dumprendertree";
-    close($childIn);
-    waitpid $buildProcess, 0;
-    my $buildResult = $?;
-    close($childOut);
-    close($childErr);
-
-    close DEVNULL if ($quiet);
-
-    if ($buildResult) {
-        print STDERR "Compiling $dumpToolName failed!\n";
-        exit exitStatus($buildResult);
-    }
-}
-
-sub openDumpTool()
-{
-    return if $isDumpToolOpen;
-
-    if ($verbose && $testsPerDumpTool != 1) {
-        print "| Opening DumpTool |\n";
-    }
-
-    my %CLEAN_ENV;
-
-    # Generic environment variables
-    if (defined $ENV{'WEBKIT_TESTFONTS'}) {
-        $CLEAN_ENV{WEBKIT_TESTFONTS} = $ENV{'WEBKIT_TESTFONTS'};
-    }
-
-    # unique temporary directory for each DumpRendertree - needed for running more DumpRenderTree in parallel
-    $CLEAN_ENV{DUMPRENDERTREE_TEMP} = File::Temp::tempdir('DumpRenderTree-XXXXXX', TMPDIR => 1, CLEANUP => 1);
-    $CLEAN_ENV{XML_CATALOG_FILES} = ""; # work around missing /etc/catalog <rdar://problem/4292995>
-    $CLEAN_ENV{LOCAL_RESOURCE_ROOT} = $testDirectory; # Used by layoutTestConstroller.pathToLocalResource()
-
-    # Platform spesifics
-    if (isLinux()) {
-        if (defined $ENV{'DISPLAY'}) {
-            $CLEAN_ENV{DISPLAY} = $ENV{'DISPLAY'};
-        } else {
-            $CLEAN_ENV{DISPLAY} = ":1";
-        }
-        if (defined $ENV{'XAUTHORITY'}) {
-            $CLEAN_ENV{XAUTHORITY} = $ENV{'XAUTHORITY'};
-        }
-
-        $CLEAN_ENV{HOME} = $ENV{'HOME'};
-        $CLEAN_ENV{LANG} = $ENV{'LANG'};
-
-        if (defined $ENV{'LD_LIBRARY_PATH'}) {
-            $CLEAN_ENV{LD_LIBRARY_PATH} = $ENV{'LD_LIBRARY_PATH'};
-        }
-        if (defined $ENV{'DBUS_SESSION_BUS_ADDRESS'}) {
-            $CLEAN_ENV{DBUS_SESSION_BUS_ADDRESS} = $ENV{'DBUS_SESSION_BUS_ADDRESS'};
-        }
-    } elsif (isDarwin()) {
-        if (defined $ENV{'DYLD_LIBRARY_PATH'}) {
-            $CLEAN_ENV{DYLD_LIBRARY_PATH} = $ENV{'DYLD_LIBRARY_PATH'};
-        }
-        if (defined $ENV{'HOME'}) {
-            $CLEAN_ENV{HOME} = $ENV{'HOME'};
-        }
-
-        $CLEAN_ENV{DYLD_FRAMEWORK_PATH} = $productDir;
-        $CLEAN_ENV{DYLD_INSERT_LIBRARIES} = "/usr/lib/libgmalloc.dylib" if $guardMalloc;
-    } elsif (isCygwin()) {
-        $CLEAN_ENV{HOMEDRIVE} = $ENV{'HOMEDRIVE'};
-        $CLEAN_ENV{HOMEPATH} = $ENV{'HOMEPATH'};
-        $CLEAN_ENV{_NT_SYMBOL_PATH} = $ENV{_NT_SYMBOL_PATH};
-    }
-
-    # Port specifics
-    if (isGtk()) {
-        $CLEAN_ENV{LIBOVERLAY_SCROLLBAR} = "0";
-        $CLEAN_ENV{GTK_MODULES} = "gail";
-        $CLEAN_ENV{WEBKIT_INSPECTOR_PATH} = "$productDir/resources/inspector";
-
-        if ($useWebKitTestRunner) {
-            my $injectedBundlePath = productDir() . "/Libraries/.libs/libTestRunnerInjectedBundle";
-            $CLEAN_ENV{TEST_RUNNER_INJECTED_BUNDLE_FILENAME} = $injectedBundlePath;
-            my $testPluginPath = productDir() . "/TestNetscapePlugin/.libs";
-            $CLEAN_ENV{TEST_RUNNER_TEST_PLUGIN_PATH} = $testPluginPath;
-        }
-    }
-
-    if (isQt()) {
-        $CLEAN_ENV{QTWEBKIT_PLUGIN_PATH} = productDir() . "/lib/plugins";
-        $CLEAN_ENV{QT_DRT_WEBVIEW_MODE} = $ENV{"QT_DRT_WEBVIEW_MODE"};
-    }
-    
-    my @args = ($dumpTool, @toolArgs);
-    if (isAppleMacWebKit()) { 
-        unshift @args, "arch", "-" . architecture();             
-    }
-
-    if ($useValgrind) {
-        unshift @args, "valgrind", "--suppressions=$platformBaseDirectory/qt/SuppressedValgrindErrors";
-    } 
-
-    if ($useWebKitTestRunner) {
-        # Make WebKitTestRunner use a similar timeout. We don't use the exact same timeout to avoid
-        # race conditions.
-        push @args, "--timeout", $timeoutSeconds - 5;
-    }
-
-    $CLEAN_ENV{MallocStackLogging} = 1 if $shouldCheckLeaks;
-
-    $dumpToolPID = open3(\*OUT, \*IN, \*ERROR, launchWithEnv(@args, %CLEAN_ENV)) or die "Failed to start tool: $dumpTool\n";
-    $isDumpToolOpen = 1;
-    $dumpToolCrashed = 0;
-}
-
-sub closeDumpTool()
-{
-    return if !$isDumpToolOpen;
-
-    if ($verbose && $testsPerDumpTool != 1) {
-        print "| Closing DumpTool |\n";
-    }
-
-    close IN;
-    close OUT;
-    waitpid $dumpToolPID, 0;
-    
-    # check for WebCore counter leaks.
-    if ($shouldCheckLeaks) {
-        while (<ERROR>) {
-            print;
-        }
-    }
-    close ERROR;
-    $isDumpToolOpen = 0;
-}
-
-sub dumpToolDidCrash()
-{
-    return 1 if $dumpToolCrashed;
-    return 0 unless $isDumpToolOpen;
-    my $pid = waitpid(-1, WNOHANG);
-    return 1 if ($pid == $dumpToolPID);
-
-    # On Mac OS X, crashing may be significantly delayed by crash reporter.
-    return 0 unless isAppleMacWebKit();
-
-    return DumpRenderTreeSupport::processIsCrashing($dumpToolPID);
-}
-
-sub configureAndOpenHTTPDIfNeeded()
-{
-    return if $isHttpdOpen;
-    my $absTestResultsDirectory = resolveAndMakeTestResultsDirectory();
-    my $listen = "127.0.0.1:$httpdPort";
-    my @args = (
-        "-c", "CustomLog \"$absTestResultsDirectory/access_log.txt\" common",
-        "-c", "ErrorLog \"$absTestResultsDirectory/error_log.txt\"",
-        "-C", "Listen $listen"
-    );
-
-    my @defaultArgs = getDefaultConfigForTestDirectory($testDirectory);
-    @args = (@defaultArgs, @args);
-
-    waitForHTTPDLock() if $shouldWaitForHTTPD;
-    $isHttpdOpen = openHTTPD(@args);
-}
-
-sub checkPythonVersion()
-{
-    # we have not chdir to sourceDir yet.
-    system $perlInterpreter, File::Spec->catfile(sourceDir(), qw(Tools Scripts ensure-valid-python)), "--check-only";
-    return exitStatus($?) == 0;
-}
-
-sub openWebSocketServerIfNeeded()
-{
-    return 1 if $isWebSocketServerOpen;
-    return 0 if $failedToStartWebSocketServer;
-
-    my $webSocketHandlerDir = "$testDirectory";
-    my $absTestResultsDirectory = resolveAndMakeTestResultsDirectory();
-    $webSocketServerPidFile = "$absTestResultsDirectory/websocket.pid";
-
-    my @args = (
-        "Tools/Scripts/new-run-webkit-websocketserver",
-        "--server", "start",
-        "--port", "$webSocketPort",
-        "--root", "$webSocketHandlerDir",
-        "--output-dir", "$absTestResultsDirectory",
-        "--pidfile", "$webSocketServerPidFile"
-    );
-    system "/usr/bin/python", @args;
-
-    $isWebSocketServerOpen = 1;
-    return 1;
-}
-
-sub closeWebSocketServer()
-{
-    return if !$isWebSocketServerOpen;
-
-    my @args = (
-        "Tools/Scripts/new-run-webkit-websocketserver",
-        "--server", "stop",
-        "--pidfile", "$webSocketServerPidFile"
-    );
-    system "/usr/bin/python", @args;
-    unlink "$webSocketServerPidFile";
-
-    # wss is disabled until all platforms support pyOpenSSL.
-    $isWebSocketServerOpen = 0;
-}
-
-sub fileNameWithNumber($$)
-{
-    my ($base, $number) = @_;
-    return "$base$number" if ($number > 1);
-    return $base;
-}
-
-sub processIgnoreTests($$)
-{
-    my @ignoreList = split(/\s*,\s*/, shift);
-    my $listName = shift;
-
-    my $disabledSuffix = "-disabled";
-
-    my $addIgnoredDirectories = sub {
-        return () if exists $ignoredLocalDirectories{basename($File::Find::dir)};
-        $ignoredDirectories{File::Spec->abs2rel($File::Find::dir, $testDirectory)} = 1;
-        return @_;
-    };
-    foreach my $item (@ignoreList) {
-        my $path = catfile($testDirectory, $item); 
-        if (-d $path) {
-            $ignoredDirectories{$item} = 1;
-            find({ preprocess => $addIgnoredDirectories, wanted => sub {} }, $path);
-        }
-        elsif (-f $path) {
-            $ignoredFiles{$item} = 1;
-        } elsif (-f $path . $disabledSuffix) {
-            # The test is disabled, so do nothing.
-        } else {
-            print "$listName list contained '$item', but no file of that name could be found\n";
-        }
-    }
-}
-
-sub stripExtension($)
-{
-    my ($test) = @_;
-
-    $test =~ s/\.[a-zA-Z]+$//;
-    return $test;
-}
-
-sub isTextOnlyTest($)
-{
-    my ($actual) = @_;
-    my $isText;
-    if ($actual =~ /^layer at/ms) {
-        $isText = 0;
-    } else {
-        $isText = 1;
-    }
-    return $isText;
-}
-
-sub expectedDirectoryForTest($;$;$)
-{
-    my ($base, $isText, $expectedExtension) = @_;
-
-    my @directories = @platformResultHierarchy;
-
-    my @extraPlatforms = ();
-    if (isAppleWinWebKit()) {
-        push @extraPlatforms, "mac-wk2" if $platform eq "win-wk2";
-        push @extraPlatforms, qw(mac-lion mac);
-    }
-  
-    push @directories, map { catdir($platformBaseDirectory, $_) } @extraPlatforms;
-    push @directories, $expectedDirectory;
-
-    # If we already have expected results, just return their location.
-    foreach my $directory (@directories) {
-        return $directory if -f File::Spec->catfile($directory, "$base-$expectedTag.$expectedExtension");
-    }
-
-    # For cross-platform tests, text-only results should go in the cross-platform directory,
-    # while render tree dumps should go in the least-specific platform directory.
-    return $isText ? $expectedDirectory : $platformResultHierarchy[$#platformResultHierarchy];
-}
-
-sub countFinishedTest($$$$)
-{
-    my ($test, $base, $result, $isText) = @_;
-
-    if (($count + 1) % $testsPerDumpTool == 0 || $count == $#tests) {
-        if ($shouldCheckLeaks) {
-            my $fileName;
-            if ($testsPerDumpTool == 1) {
-                $fileName = File::Spec->catfile($testResultsDirectory, "$base-leaks.txt");
-            } else {
-                $fileName = File::Spec->catfile($testResultsDirectory, fileNameWithNumber($dumpToolName, $leaksOutputFileNumber) . "-leaks.txt");
-            }
-            my $leakCount = countAndPrintLeaks($dumpToolName, $dumpToolPID, $fileName);
-            $totalLeaks += $leakCount;
-            $leaksOutputFileNumber++ if ($leakCount);
-        }
-
-        closeDumpTool();
-    }
-    
-    $count++;
-    $counts{$result}++;
-    push @{$tests{$result}}, $test;
-}
-
-sub testCrashedOrTimedOut($$$$$$)
-{
-    my ($test, $base, $didCrash, $webProcessCrashed, $actual, $error) = @_;
-
-    printFailureMessageForTest($test, $webProcessCrashed ? "Web process crashed" : $didCrash ? "crashed" : "timed out");
-
-    sampleDumpTool() unless $didCrash || $webProcessCrashed;
-
-    my $dir = dirname(File::Spec->catdir($testResultsDirectory, $base));
-    mkpath $dir;
-
-    deleteExpectedAndActualResults($base);
-
-    if (defined($error) && length($error)) {
-        writeToFile(File::Spec->catfile($testResultsDirectory, "$base-$errorTag.txt"), $error);
-    }
-
-    recordActualResultsAndDiff($base, $actual);
-
-    # There's no point in killing the dump tool when it's crashed. And it will kill itself when the
-    # web process crashes.
-    kill 9, $dumpToolPID unless $didCrash || $webProcessCrashed;
-
-    closeDumpTool();
-
-    captureSavedCrashLog($base, $webProcessCrashed) if $didCrash || $webProcessCrashed;
-
-    return unless isCygwin() && !$didCrash && $base =~ /^http/;
-    # On Cygwin, http tests timing out can be a symptom of a non-responsive httpd.
-    # If we timed out running an http test, try restarting httpd.
-    $isHttpdOpen = !closeHTTPD();
-    configureAndOpenHTTPDIfNeeded();
-}
-
-sub captureSavedCrashLog($$)
-{
-    my ($base, $webProcessCrashed) = @_;
-
-    my $crashLog;
-
-    my $glob;
-    if (isCygwin()) {
-        $glob = File::Spec->catfile($testResultsDirectory, $windowsCrashLogFilePrefix . "*.txt");
-    } elsif (isAppleMacWebKit()) {
-        $glob = File::Spec->catfile("~", "Library", "Logs", "DiagnosticReports", ($webProcessCrashed ? "WebProcess" : $dumpToolName) . "_*.crash");
-
-        # Even though the dump tool has exited, CrashReporter might still be running. We need to
-        # wait for it to exit to ensure it has saved its crash log to disk. For simplicitly, we'll
-        # assume that the ReportCrash process with the highest PID is the one we want.
-        if (my @reportCrashPIDs = sort map { /^\s*(\d+)/; $1 } grep { /ReportCrash/ } `/bin/ps x`) {
-            my $reportCrashPID = $reportCrashPIDs[$#reportCrashPIDs];
-            # We use kill instead of waitpid because ReportCrash is not one of our child processes.
-            usleep(250000) while kill(0, $reportCrashPID) > 0;
-        }
-    }
-
-    return unless $glob;
-
-    # We assume that the newest crash log in matching the glob is the one that corresponds to the crash that just occurred.
-    if (my $newestCrashLog = findNewestFileMatchingGlob($glob)) {
-        # The crash log must have been created after this script started running.
-        $crashLog = $newestCrashLog if -M $newestCrashLog < 0;
-    }
-
-    return unless $crashLog;
-
-    move($crashLog, File::Spec->catfile($testResultsDirectory, "$base-$crashLogTag.txt"));
-}
-
-sub findNewestFileMatchingGlob($)
-{
-    my ($glob) = @_;
-
-    my @paths = glob $glob;
-    return unless scalar(@paths);
-
-    my @pathsAndTimes = map { [$_, -M $_] } @paths;
-    @pathsAndTimes = sort { $b->[1] <=> $a->[1] } @pathsAndTimes;
-    return $pathsAndTimes[$#pathsAndTimes]->[0];
-}
-
-sub printFailureMessageForTest($$)
-{
-    my ($test, $description) = @_;
-
-    unless ($verbose) {
-        print "\n" unless $atLineStart;
-        print "$test -> ";
-    }
-    print "$description\n";
-    $atLineStart = 1;
-}
-
-my %cygpaths = ();
-
-sub openCygpathIfNeeded($)
-{
-    my ($options) = @_;
-
-    return unless isCygwin();
-    return $cygpaths{$options} if $cygpaths{$options} && $cygpaths{$options}->{"open"};
-
-    local (*CYGPATHIN, *CYGPATHOUT);
-    my $pid = open2(\*CYGPATHIN, \*CYGPATHOUT, "cygpath -f - $options");
-    my $cygpath =  {
-        "pid" => $pid,
-        "in" => *CYGPATHIN,
-        "out" => *CYGPATHOUT,
-        "open" => 1
-    };
-
-    $cygpaths{$options} = $cygpath;
-
-    return $cygpath;
-}
-
-sub closeCygpaths()
-{
-    return unless isCygwin();
-
-    foreach my $cygpath (values(%cygpaths)) {
-        close $cygpath->{"in"};
-        close $cygpath->{"out"};
-        waitpid($cygpath->{"pid"}, 0);
-        $cygpath->{"open"} = 0;
-
-    }
-}
-
-sub convertPathUsingCygpath($$)
-{
-    my ($path, $options) = @_;
-
-    # cygpath -f (at least in Cygwin 1.7) converts spaces into newlines. We remove spaces here and
-    # add them back in after conversion to work around this.
-    my $spaceSubstitute = "__NOTASPACE__";
-    $path =~ s/ /\Q$spaceSubstitute\E/g;
-
-    my $cygpath = openCygpathIfNeeded($options);
-    local *inFH = $cygpath->{"in"};
-    local *outFH = $cygpath->{"out"};
-    print outFH $path . "\n";
-    my $convertedPath = <inFH>;
-    chomp($convertedPath) if defined $convertedPath;
-
-    $convertedPath =~ s/\Q$spaceSubstitute\E/ /g;
-    return $convertedPath;
-}
-
-sub toCygwinPath($)
-{
-    my ($path) = @_;
-    return unless isCygwin();
-
-    return convertPathUsingCygpath($path, "-u");
-}
-
-sub toWindowsPath($)
-{
-    my ($path) = @_;
-    return unless isCygwin();
-
-    return convertPathUsingCygpath($path, "-w");
-}
-
-sub toURL($)
-{
-    my ($path) = @_;
-
-    if ($useRemoteLinksToTests) {
-        my $relativePath = File::Spec->abs2rel($path, $testDirectory);
-
-        # If the file is below the test directory then convert it into a link to the file in SVN
-        if ($relativePath !~ /^\.\.\//) {
-            my $revision = svnRevisionForDirectory($testDirectory);
-            my $svnPath = pathRelativeToSVNRepositoryRootForPath($path);
-            return "http://trac.webkit.org/export/$revision/$svnPath";
-        }
-    }
-
-    return $path unless isCygwin();
-
-    return "file:///" . convertPathUsingCygpath($path, "-m");
-}
-
-sub validateSkippedArg($$;$)
-{
-    my ($option, $value, $value2) = @_;
-    my %validSkippedValues = map { $_ => 1 } qw(default ignore only);
-    $value = lc($value);
-    die "Invalid argument '" . $value . "' for option $option" unless $validSkippedValues{$value};
-    $treatSkipped = $value;
-}
-
-sub htmlForResultsSection(\@$&)
-{
-    my ($tests, $description, $linkGetter) = @_;
-
-    my @html = ();
-    return join("\n", @html) unless @{$tests};
-
-    push @html, "<p>$description:</p>";
-    push @html, "<table>";
-    foreach my $test (@{$tests}) {
-        push @html, "<tr>";
-        push @html, "<td><a href=\"" . toURL("$testDirectory/$test") . "\">$test</a></td>";
-        foreach my $link (@{&{$linkGetter}($test)}) {
-            push @html, "<td>";
-            push @html, "<a href=\"$link->{href}\">$link->{text}</a>" if -f File::Spec->catfile($testResultsDirectory, $link->{href});
-            push @html, "</td>";
-        }
-        push @html, "</tr>";
-    }
-    push @html, "</table>";
-
-    return join("\n", @html);
-}
-
-sub linksForExpectedAndActualResults($)
-{
-    my ($base) = @_;
-
-    my @links = ();
-
-    return \@links unless -s "$testResultsDirectory/$base-$diffsTag.txt";
-    
-    my $expectedResultPath = $expectedResultPaths{$base};
-    my ($expectedResultFileName, $expectedResultsDirectory, $expectedResultExtension) = fileparse($expectedResultPath, qr{\.[^.]+$});
-
-    push @links, { href => "$base-$expectedTag$expectedResultExtension", text => "expected" };
-    push @links, { href => "$base-$actualTag$expectedResultExtension", text => "actual" };
-    push @links, { href => "$base-$diffsTag.txt", text => "diff" };
-    push @links, { href => "$base-$prettyDiffTag.html", text => "pretty diff" };
-
-    return \@links;
-}
-
-sub linksForMismatchTest
-{
-    my ($test) = @_;
-
-    my @links = ();
-
-    my $base = stripExtension($test);
-
-    push @links, @{linksForExpectedAndActualResults($base)};
-    return \@links unless $pixelTests && $imagesPresent{$base};
-
-    push @links, { href => "$base-$expectedTag.png", text => "expected image" };
-    push @links, { href => "$base-$diffsTag.html", text => "image diffs" };
-    push @links, { href => "$base-$diffsTag.png", text => "$imageDifferences{$base}%" };
-
-    return \@links;
-}
-
-sub crashLocation($)
-{
-    my ($base) = @_;
-
-    my $crashLogFile = File::Spec->catfile($testResultsDirectory, "$base-$crashLogTag.txt");
-
-    if (isCygwin()) {
-        # We're looking for the following text:
-        #
-        # FOLLOWUP_IP:
-        # module!function+offset [file:line]
-        #
-        # The second contains the function that crashed (or the function that ended up jumping to a bad
-        # address, as in the case of a null function pointer).
-
-        open LOG, "<", $crashLogFile or return;
-        while (my $line = <LOG>) {
-            last if $line =~ /^FOLLOWUP_IP:/;
-        }
-        my $desiredLine = <LOG>;
-        close LOG;
-
-        return unless $desiredLine;
-
-        # Just take everything up to the first space (which is where the file/line information should
-        # start).
-        $desiredLine =~ /^(\S+)/;
-        return $1;
-    }
-
-    if (isAppleMacWebKit()) {
-        # We're looking for the following text:
-        #
-        # Thread M Crashed:
-        # N   module                              address function + offset (file:line)
-        #
-        # Some lines might have a module of "???" if we've jumped to a bad address. We should skip
-        # past those.
-
-        open LOG, "<", $crashLogFile or return;
-        while (my $line = <LOG>) {
-            last if $line =~ /^Thread \d+ Crashed:/;
-        }
-        my $location;
-        while (my $line = <LOG>) {
-            $line =~ /^\d+\s+(\S+)\s+\S+ (.* \+ \d+)/ or next;
-            my $module = $1;
-            my $functionAndOffset = $2;
-            next if $module eq "???";
-            $location = "$module: $functionAndOffset";
-            last;
-        }
-        close LOG;
-        return $location;
-    }
-}
-
-sub linksForErrorTest
-{
-    my ($test) = @_;
-
-    my @links = ();
-
-    my $base = stripExtension($test);
-
-    my $crashLogText = "crash log";
-    if (my $crashLocation = crashLocation($base)) {
-        $crashLogText .= " (<code>" . CGI::escapeHTML($crashLocation) . "</code>)";
-    }
-
-    push @links, @{linksForExpectedAndActualResults($base)};
-    push @links, { href => "$base-$errorTag.txt", text => "stderr" };
-    push @links, { href => "$base-$crashLogTag.txt", text => $crashLogText };
-
-    return \@links;
-}
-
-sub linksForNewTest
-{
-    my ($test) = @_;
-
-    my @links = ();
-
-    my $base = stripExtension($test);
-
-    my $expectedResultPath = $expectedResultPaths{$base};
-    my ($expectedResultFileName, $expectedResultsDirectory, $expectedResultExtension) = fileparse($expectedResultPath, qr{\.[^.]+$});
-
-    push @links, { href => "$base-$actualTag$expectedResultExtension", text => "result" };
-    if ($pixelTests && $imagesPresent{$base}) {
-        push @links, { href => "$base-$expectedTag.png", text => "image" };
-    }
-
-    return \@links;
-}
-
-sub deleteExpectedAndActualResults($)
-{
-    my ($base) = @_;
-
-    unlink "$testResultsDirectory/$base-$actualTag.txt";
-    unlink "$testResultsDirectory/$base-$diffsTag.txt";
-    unlink "$testResultsDirectory/$base-$errorTag.txt";
-    unlink "$testResultsDirectory/$base-$crashLogTag.txt";
-}
-
-sub recordActualResultsAndDiff($$)
-{
-    my ($base, $actualResults) = @_;
-
-    return unless defined($actualResults) && length($actualResults);
-
-    my $expectedResultPath = $expectedResultPaths{$base};
-    my ($expectedResultFileNameMinusExtension, $expectedResultDirectoryPath, $expectedResultExtension) = fileparse($expectedResultPath, qr{\.[^.]+$});
-    my $actualResultsPath = File::Spec->catfile($testResultsDirectory, "$base-$actualTag$expectedResultExtension");
-    my $copiedExpectedResultsPath = File::Spec->catfile($testResultsDirectory, "$base-$expectedTag$expectedResultExtension");
-
-    mkpath(dirname($actualResultsPath));
-    writeToFile("$actualResultsPath", $actualResults);
-
-    # We don't need diff and pretty diff for tests without expected file.
-    if ( !-f $expectedResultPath) {
-        return;
-    }
-
-    copy("$expectedResultPath", "$copiedExpectedResultsPath");
-
-    my $diffOuputBasePath = File::Spec->catfile($testResultsDirectory, $base);
-    my $diffOutputPath = "$diffOuputBasePath-$diffsTag.txt";
-    system "diff -u \"$copiedExpectedResultsPath\" \"$actualResultsPath\" > \"$diffOutputPath\"";
-
-    my $prettyDiffOutputPath = "$diffOuputBasePath-$prettyDiffTag.html";
-    my $prettyPatchPath = "Websites/bugs.webkit.org/PrettyPatch/";
-    my $prettifyPath = "$prettyPatchPath/prettify.rb";
-    system "ruby -I \"$prettyPatchPath\" \"$prettifyPath\" \"$diffOutputPath\" > \"$prettyDiffOutputPath\"";
-}
-
-sub buildPlatformResultHierarchy()
-{
-    mkpath($platformTestDirectory) if ($platform eq "undefined" && !-d "$platformTestDirectory");
-
-    my @platforms;
-    
-    my $isMac = $platform =~ /^mac/;
-    my $isWin = $platform =~ /^win/;
-    if ($isMac || $isWin) {
-        my $effectivePlatform = $platform;
-        if ($platform eq "mac-wk2" || $platform eq "win-wk2") {
-            push @platforms, $platform;
-            $effectivePlatform = $realPlatform;
-        }
-
-        my @platformList = $isMac ? @macPlatforms : @winPlatforms;
-        my $i;
-        for ($i = 0; $i < @platformList; $i++) {
-            last if $platformList[$i] eq $effectivePlatform;
-        }
-        for (; $i < @platformList; $i++) {
-            push @platforms, $platformList[$i];
-        }
-
-        if ($platform eq "wincairo") {
-            @platforms = $platform;
-        }
-    } elsif ($platform =~ /^qt/) {
-        if ($platform eq "qt-5.0-wk2" || getQtVersion() eq "5.0" && $useWebKitTestRunner) {
-            push @platforms, "qt-5.0-wk2";
-        }
-        elsif ($platform eq "qt-5.0-wk1" || getQtVersion() eq "5.0" && !$useWebKitTestRunner) {
-            push @platforms, "qt-5.0-wk1"
-        }
-
-        if (isARM() || $platform eq "qt-arm") {
-            push @platforms, "qt-arm";
-        }
-
-        if (isDarwin() || $platform eq "qt-mac") {
-            push @platforms, "qt-mac";
-        }
-        elsif (isWindows() || isCygwin() || $platform eq "qt-win") {
-            push @platforms, "qt-win";
-        }
-        elsif (isLinux() || $platform eq "qt-linux") {
-            push @platforms, "qt-linux";
-        }
-
-        if (getQtVersion() eq "4.8" || $platform eq "qt-4.8") {
-            push @platforms, "qt-4.8";
-        }
-        elsif (getQtVersion() eq "5.0" || $platform eq "qt-5.0") {
-            push @platforms, "qt-5.0";
-        }
-
-        push @platforms, "qt";
-    } elsif ($platform =~ /^gtk-/) {
-        push @platforms, $platform;
-        push @platforms, "gtk";
-    } else {
-        @platforms = $platform;
-    }
-
-    my @hierarchy;
-    for (my $i = 0; $i < @platforms; $i++) {
-        my $scoped = catdir($platformBaseDirectory, $platforms[$i]);
-        push(@hierarchy, $scoped) if (-d $scoped);
-    }
-    
-    unshift @hierarchy, grep { -d $_ } @additionalPlatformDirectories;
-
-    return @hierarchy;
-}
-
-sub buildPlatformTestHierarchy(@)
-{
-    my (@platformHierarchy) = @_;
-
-    my @result;
-    if ($platform =~ /^qt/) {
-        for (my $i = 0; $i < @platformHierarchy; ++$i) {
-           push @result, $platformHierarchy[$i];
-        }
-    } else {
-        my $wk2Platform;
-        for (my $i = 0; $i < @platformHierarchy; ++$i) {
-            if ($platformHierarchy[$i] =~ /-wk2/) {
-                $wk2Platform = splice @platformHierarchy, $i, 1;
-                last;
-            }
-        }
-
-       push @result, $platformHierarchy[0];
-       push @result, $wk2Platform if defined $wk2Platform;
-       push @result, $platformHierarchy[$#platformHierarchy] if @platformHierarchy >= 2;
-    }
-
-    if ($verbose) {
-        my @searchPaths;
-        foreach my $searchPath (@result) {
-            my ($dir, $name) = splitpath($searchPath);
-            push @searchPaths, $name;
-        }
-        my $searchPathHierarchy = join(' -> ', @searchPaths);
-        print "Baseline search path: $searchPathHierarchy\n";
-    }
-
-    return @result;
-}
-
-sub epiloguesAndPrologues($$)
-{
-    my ($lastDirectory, $directory) = @_;
-    my @lastComponents = split('/', $lastDirectory);
-    my @components = split('/', $directory);
-
-    while (@lastComponents) {
-        if (!defined($components[0]) || $lastComponents[0] ne $components[0]) {
-            last;
-        }
-        shift @components;
-        shift @lastComponents;
-    }
-
-    my @result;
-    my $leaving = $lastDirectory;
-    foreach (@lastComponents) {
-        my $epilogue = $leaving . "/resources/run-webkit-tests-epilogue.html";
-        foreach (@platformResultHierarchy) {
-            push @result, catdir($_, $epilogue) if (stat(catdir($_, $epilogue)));
-        }
-        push @result, catdir($testDirectory, $epilogue) if (stat(catdir($testDirectory, $epilogue)));
-        $leaving =~ s|(^\|/)[^/]+$||;
-    }
-
-    my $entering = $leaving;
-    foreach (@components) {
-        $entering .= '/' . $_;
-        my $prologue = $entering . "/resources/run-webkit-tests-prologue.html";
-        push @result, catdir($testDirectory, $prologue) if (stat(catdir($testDirectory, $prologue)));
-        foreach (reverse @platformResultHierarchy) {
-            push @result, catdir($_, $prologue) if (stat(catdir($_, $prologue)));
-        }
-    }
-    return @result;
-}
-    
-sub parseLeaksandPrintUniqueLeaks()
-{
-    return unless @leaksFilenames;
-
-    my $mergedFilenames = join " ", @leaksFilenames;
-    my $parseMallocHistoryTool = sourceDir() . "/Tools/Scripts/parse-malloc-history";
-    
-    open MERGED_LEAKS, "cat $mergedFilenames | $parseMallocHistoryTool --merge-depth $mergeDepth  - |" ;
-    my @leakLines = <MERGED_LEAKS>;
-    close MERGED_LEAKS;
-    
-    my $uniqueLeakCount = 0;
-    my $totalBytes;
-    foreach my $line (@leakLines) {
-        ++$uniqueLeakCount if ($line =~ /^(\d*)\scalls/);
-        $totalBytes = $1 if $line =~ /^total\:\s(.*)\s\(/;
-    }
-    
-    print "\nWARNING: $totalLeaks total leaks found for a total of $totalBytes!\n";
-    print "WARNING: $uniqueLeakCount unique leaks found!\n";
-    print "See above for individual leaks results.\n" if ($leaksOutputFileNumber > 2);
-    
-}
-
-sub extensionForMimeType($)
-{
-    my ($mimeType) = @_;
-
-    if ($mimeType eq "application/x-webarchive") {
-        return "webarchive";
-    } elsif ($mimeType eq "application/pdf") {
-        return "pdf";
-    } elsif ($mimeType eq "audio/wav") {
-        return "wav";
-    }
-    return "txt";
-}
-
-# Read up to the first #EOF (the content block of the test), or until detecting crashes or timeouts.
-sub readFromDumpToolWithTimer(**)
-{
-    my ($fhIn, $fhError) = @_;
-
-    setFileHandleNonBlocking($fhIn, 1);
-    setFileHandleNonBlocking($fhError, 1);
-
-    my $maximumSecondsWithoutOutput = $timeoutSeconds;
-    my $microsecondsToWaitBeforeReadingAgain = 1000;
-
-    my $timeOfLastSuccessfulRead = time;
-
-    my @output = ();
-    my @error = ();
-    my $status = "success";
-    my $mimeType = "text/plain";
-    my $encoding = "";
-    # We don't have a very good way to know when the "headers" stop
-    # and the content starts, so we use this as a hack:
-    my $haveSeenContentType = 0;
-    my $haveSeenContentTransferEncoding = 0;
-    my $haveSeenEofIn = 0;
-    my $haveSeenEofError = 0;
-
-    while (1) {
-        if (time - $timeOfLastSuccessfulRead > $maximumSecondsWithoutOutput) {
-            $status = dumpToolDidCrash() ? "crashed" : "timedOut";
-            last;
-        }
-
-        # Once we've seen the EOF, we must not read anymore.
-        my $lineIn = readline($fhIn) unless $haveSeenEofIn;
-        my $lineError = readline($fhError) unless $haveSeenEofError;
-        if (!defined($lineIn) && !defined($lineError)) {
-            last if ($haveSeenEofIn && $haveSeenEofError);
-
-            if ($! != EAGAIN) {
-                $status = "crashed";
-                last;
-            }
-
-            # No data ready
-            usleep($microsecondsToWaitBeforeReadingAgain);
-            next;
-        }
-
-        $timeOfLastSuccessfulRead = time;
-
-        if (defined($lineIn)) {
-            if (!$haveSeenContentType && $lineIn =~ /^Content-Type: (\S+)$/) {
-                $mimeType = $1;
-                $haveSeenContentType = 1;
-            } elsif (!$haveSeenContentTransferEncoding && $lineIn =~ /^Content-Transfer-Encoding: (\S+)$/) {
-                $encoding = $1;
-                $haveSeenContentTransferEncoding = 1;
-            } elsif ($lineIn =~ /^DumpMalloc|^DumpJSHeap: (\S+)$/) {
-                    # Ignored. Only used in performance tests.
-            } elsif ($lineIn =~ /(.*)#EOF$/) {
-                if ($1 ne "") {
-                    push @output, $1;
-                }
-                $haveSeenEofIn = 1;
-            } else {
-                push @output, $lineIn;
-            }
-        }
-        if (defined($lineError)) {
-            if ($lineError =~ /#CRASHED - WebProcess/) {
-                $status = "webProcessCrashed";
-                last;
-            }
-            if ($lineError =~ /#CRASHED/) {
-                $status = "crashed";
-                last;
-            }
-            if ($lineError =~ /#EOF/) {
-                $haveSeenEofError = 1;
-            } else {
-                push @error, $lineError;
-            }
-        }
-    }
-
-    setFileHandleNonBlocking($fhIn, 0);
-    setFileHandleNonBlocking($fhError, 0);
-    my $joined_output = join("", @output);
-    if ($encoding eq "base64") {
-        $joined_output = decode_base64($joined_output);
-    }
-    return {
-        output => $joined_output,
-        error => join("", @error),
-        status => $status,
-        mimeType => $mimeType,
-        extension => extensionForMimeType($mimeType)
-    };
-}
-
-sub setFileHandleNonBlocking(*$)
-{
-    my ($fh, $nonBlocking) = @_;
-
-    my $flags = fcntl($fh, F_GETFL, 0) or die "Couldn't get filehandle flags";
-
-    if ($nonBlocking) {
-        $flags |= O_NONBLOCK;
-    } else {
-        $flags &= ~O_NONBLOCK;
-    }
-
-    fcntl($fh, F_SETFL, $flags) or die "Couldn't set filehandle flags";
-
-    return 1;
-}
-
-sub sampleDumpTool()
-{
-    return unless isAppleMacWebKit();
-    return unless $runSample;
-
-    my $outputDirectory = "$ENV{HOME}/Library/Logs/DumpRenderTree";
-    -d $outputDirectory or mkdir $outputDirectory;
-
-    my $outputFile = "$outputDirectory/HangReport.txt";
-    system "/usr/bin/sample", $dumpToolPID, qw(10 10 -file), $outputFile;
-}
-
-sub stripMetrics($$)
-{
-    my ($actual, $expected) = @_;
-
-    foreach my $result ($actual, $expected) {
-        $result =~ s/at \(-?[0-9]+,-?[0-9]+\) *//g;
-        $result =~ s/size -?[0-9]+x-?[0-9]+ *//g;
-        $result =~ s/text run width -?[0-9]+: //g;
-        $result =~ s/text run width -?[0-9]+ [a-zA-Z ]+: //g;
-        $result =~ s/RenderButton {BUTTON} .*/RenderButton {BUTTON}/g;
-        $result =~ s/RenderImage {INPUT} .*/RenderImage {INPUT}/g;
-        $result =~ s/RenderBlock {INPUT} .*/RenderBlock {INPUT}/g;
-        $result =~ s/RenderTextControl {INPUT} .*/RenderTextControl {INPUT}/g;
-        $result =~ s/\([0-9]+px/px/g;
-        $result =~ s/ *" *\n +" */ /g;
-        $result =~ s/" +$/"/g;
-        $result =~ s/- /-/g;
-        $result =~ s/\n( *)"\s+/\n$1"/g;
-        $result =~ s/\s+"\n/"\n/g;
-        $result =~ s/scrollWidth [0-9]+/scrollWidth/g;
-        $result =~ s/scrollHeight [0-9]+/scrollHeight/g;
-        $result =~ s/scrollX [0-9]+/scrollX/g;
-        $result =~ s/scrollY [0-9]+/scrollY/g;
-        $result =~ s/scrolled to [0-9]+,[0-9]+/scrolled/g;
-    }
-
-    return ($actual, $expected);
-}
-
-sub fileShouldBeIgnored
-{
-    my ($filePath) = @_;
-    foreach my $ignoredDir (keys %ignoredDirectories) {
-        if ($filePath =~ m/^$ignoredDir/) {
-            return 1;
-        }
-    }
-    return 0;
-}
-
-sub readSkippedFiles($)
-{
-    my ($constraintPath) = @_;
-
-    my @skippedFileDirectories = @platformTestHierarchy;
-
-    # Because nearly all of the skipped tests for WebKit 2 on Mac are due to
-    # cross-platform issues, the Windows and Qt ports use the Mac skipped list
-    # additionally to their own to avoid maintaining separate lists.
-    push(@skippedFileDirectories, catdir($platformBaseDirectory, "wk2")) if ($platform eq "win-wk2" || $platform eq "qt-5.0-wk2" || $platform eq "mac-wk2" || $platform eq "gtk-wk2");
-
-    if ($verbose) {
-        foreach my $skippedPath (@skippedFileDirectories) {
-            print "Using Skipped file: $skippedPath\n";
-        }
-    }
-
-    foreach my $level (@skippedFileDirectories) {
-        # If a Skipped file exists in the directory, use that and ignore the TestExpectations file,
-        # but if it doesn't, treat every entry in the TestExpectations file as if it should be Skipped.
-        if (open SKIPPED, "<", "$level/Skipped") {
-            if ($verbose) {
-                my ($dir, $name) = splitpath($level);
-                print "Skipped tests in $name:\n";
-            }
-
-            while (<SKIPPED>) {
-                my $skipped = $_;
-                chomp $skipped;
-                $skipped =~ s/^[ \n\r]+//;
-                $skipped =~ s/[ \n\r]+$//;
-                if ($skipped && $skipped !~ /^#/) {
-                    processSkippedFileEntry($skipped, "Skipped", $constraintPath);
-                }
-            }
-            close SKIPPED;
-        } elsif (open EXPECTATIONS, "<", "$level/TestExpectations") {
-            if ($verbose) {
-                my ($dir, $name) = splitpath($level);
-                print "Skipping tests from $name:\n";
-            }
-            LINE: while (<EXPECTATIONS>) {
-                my $line = $_;
-                chomp $line;
-                $line =~ s/^[ \n\r]+//;
-                $line =~ s/[ \n\r]+$//;
-                $line =~ s/#.*$//;
-
-                # This logic roughly mirrors the logic in test_expectations.py _tokenize_line() but we
-                # don't bother to look at any of the modifiers or expectations and just skip everything.
-
-                my $state = "start";
-                my $skipped = "";
-                TOKEN: foreach my $token (split(/\s+/, $line)) {
-                    if (startsWith($token, "BUG") || startsWith($token, "//")) {
-                        # Ignore any lines with the old-style syntax.
-                        next LINE;
-                    }
-                    if (startsWith($token, "webkit.org/b/") || startsWith($token, "Bug(")) {
-                        # Skip over bug identifiers; note that we don't bother looking for
-                        # Chromium or V8 URLs since ORWT doesn't work with Chromium.
-                        next TOKEN;
-                    } elsif ($token eq "[") {
-                        if ($state eq 'start') {
-                            $state = 'configuration';
-                        }
-                    } elsif ($token eq "]") {
-                        if ($state eq 'configuration') {
-                            $state = 'name';
-                        }
-                    } elsif (($state eq "name") || ($state eq "start")) {
-                        $skipped = $token;
-                        # Skip over the rest of the line.
-                        last TOKEN;
-                    }
-                }
-                if ($skipped) {
-                    processSkippedFileEntry($skipped, "TestExpectations", $constraintPath);
-                }
-            }
-            close EXPECTATIONS;
-        }
-    }
-}
-
-sub processSkippedFileEntry($$$)
-{
-    my ($skipped, $listname, $constraintPath) = @_;
-
-    if ($skippedOnly) {
-        if (!fileShouldBeIgnored($skipped)) {
-            if (!$constraintPath) {
-                # Always add $skipped since no constraint path was specified on the command line.
-                push(@ARGV, $skipped);
-            } elsif ($skipped =~ /^($constraintPath)/ || ("LayoutTests/".$skipped) =~ /^($constraintPath)/ ) {
-                # Add $skipped only if it matches the current path constraint, e.g.,
-                # "--skipped=only dir1" with "dir1/file1.html" on the skipped list or
-                # "--skipped=only LayoutTests/dir1" with "dir1/file1.html" on the skipped list
-                push(@ARGV, $skipped);
-            } elsif ($constraintPath =~ /^("LayoutTests\/".$skipped)/ || $constraintPath =~ /^($skipped)/) {
-                # Add current path constraint if it is more specific than the skip list entry,
-                # e.g., "--skipped=only dir1/dir2/dir3" with "dir1" on the skipped list or
-                # e.g., "--skipped=only LayoutTests/dir1/dir2/dir3" with "dir1" on the skipped list.
-                push(@ARGV, $constraintPath);
-            }
-        } elsif ($verbose) {
-            print "    $skipped\n";
-        }
-    } else {
-        if ($verbose) {
-            print "    $skipped\n";
-        }
-        processIgnoreTests($skipped, $listname);
-    }
-}
-
-sub startsWith($$)
-{
-    my ($string, $substring) = @_;
-    return index($string, $substring) == 0;
-}
-
-sub readChecksumFromPng($)
-{
-    my ($path) = @_;
-    my $data;
-    if (open(PNGFILE, $path) && read(PNGFILE, $data, 2048) && $data =~ /tEXtchecksum\0([a-fA-F0-9]{32})/) {
-        return $1;
-    }
-}
-
-my @testsFound;
-
-sub isUsedInReftest($)
-{
-    my $filename = $_[0];
-    my @extensions = ('html','shtml','xml','xhtml','htm','php','svg','mht','pl');
-    my $extensionsJoined = join("|", @extensions);
-    my $suffixExtensionExpression = "-($expectedTag|$refTag|$notrefTag)(-$mismatchTag)?\\.(".$extensionsJoined.")\$";
-    my $prefixExtensionExpression = "^($refTag|$notrefTag)-";
-    if ($filename =~ /$suffixExtensionExpression/ || $filename =~ /$prefixExtensionExpression/) {
-        return 1;
-    }
-    my $base = stripExtension($filename);
-
-    foreach my $extension (@extensions) {
-        if (-f "$base-$expectedTag.$extension" || 
-            -f "$base-$refTag.$extension" || -f "$base-$notrefTag.$extension" ||
-            -f "$base-$expectedTag-$mismatchTag.$extension" ||
-            -f "$refTag-$base.$extension" || -f "$notrefTag-$base.$extension") {
-            return 1;
-        }
-    }
-    return 0;
-}
-
-sub directoryFilter
-{
-    return () if exists $ignoredLocalDirectories{basename($File::Find::dir)};
-    return () if exists $ignoredDirectories{File::Spec->abs2rel($File::Find::dir, $testDirectory)};
-    return @_;
-}
-
-sub fileFilter
-{
-    my $filename = $_;
-    if ($filename =~ /\.([^.]+)$/) {
-        my $extension = $1;
-        if (exists $supportedFileExtensions{$extension} && !isUsedInReftest($filename)) {
-            my $path = File::Spec->abs2rel(catfile($File::Find::dir, $filename), $testDirectory);
-            push @testsFound, $path if !exists $ignoredFiles{$path};
-        }
-    }
-}
-
-sub findTestsToRun
-{
-    my @testsToRun = ();
-
-    for my $test (@ARGV) {
-        $test =~ s/^(\Q$layoutTestsName\E|\Q$testDirectory\E)\///;
-        my $fullPath = catfile($testDirectory, $test);
-        if (file_name_is_absolute($test)) {
-            print "can't run test $test outside $testDirectory\n";
-        } elsif (-f $fullPath && !isUsedInReftest($fullPath)) {
-            my ($filename, $pathname, $fileExtension) = fileparse($test, qr{\.[^.]+$});
-            if (!exists $supportedFileExtensions{substr($fileExtension, 1)}) {
-                print "test $test does not have a supported extension\n";
-            } elsif ($testHTTP || $pathname !~ /^http\//) {
-                push @testsToRun, $test;
-            }
-        } elsif (-d $fullPath) {
-            @testsFound = ();
-            find({ preprocess => \&directoryFilter, wanted => \&fileFilter }, $fullPath);
-            for my $level (@platformTestHierarchy) {
-                my $platformPath = catfile($level, $test);
-                find({ preprocess => \&directoryFilter, wanted => \&fileFilter }, $platformPath) if (-d $platformPath);
-            }
-            push @testsToRun, sort pathcmp @testsFound;
-            @testsFound = ();
-        } else {
-            print "test $test not found\n";
-        }
-    }
-
-    if (!scalar @ARGV) {
-        @testsFound = ();
-        find({ preprocess => \&directoryFilter, wanted => \&fileFilter }, $testDirectory);
-        for my $level (@platformTestHierarchy) {
-            find({ preprocess => \&directoryFilter, wanted => \&fileFilter }, $level);
-        }
-        push @testsToRun, sort pathcmp @testsFound;
-        @testsFound = ();
-
-        # We need to minimize the time when Apache and WebSocketServer is locked by tests
-        # so run them last if no explicit order was specified in the argument list.
-        my @httpTests;
-        my @websocketTests;
-        my @otherTests;
-        foreach my $test (@testsToRun) {
-            if ($test =~ /^http\//) {
-                push(@httpTests, $test);
-            } elsif ($test =~ /^websocket\//) {
-                push(@websocketTests, $test);
-            } else {
-                push(@otherTests, $test);
-            }
-        }
-        @testsToRun = (@otherTests, @httpTests, @websocketTests);
-    }
-
-    # Reverse the tests
-    @testsToRun = reverse @testsToRun if $reverseTests;
-
-    # Shuffle the array
-    @testsToRun = shuffle(@testsToRun) if $randomizeTests;
-
-    return @testsToRun;
-}
-
-sub printResults
-{
-    my %text = (
-        match => "succeeded",
-        mismatch => "had incorrect layout",
-        new => "were new",
-        timedout => "timed out",
-        crash => "crashed",
-        webProcessCrash => "Web process crashed",
-        error => "had stderr output"
-    );
-
-    for my $type ("match", "mismatch", "new", "timedout", "crash", "webProcessCrash", "error") {
-        my $typeCount = $counts{$type};
-        next unless $typeCount;
-        my $typeText = $text{$type};
-        my $message;
-        if ($typeCount == 1) {
-            $typeText =~ s/were/was/;
-            $message = sprintf "1 test case %s\n", $typeText;
-        } else {
-            $message = sprintf "%d test cases %s\n", $typeCount, $typeText;
-        }
-        $message =~ s-\(0%\)-(<1%)-;
-        print $message;
-    }
-}
-
-sub stopRunningTestsEarlyIfNeeded()
-{
-    # --reset-results does not check pass vs. fail, so exitAfterNFailures makes no sense with --reset-results.
-    return 0 if $resetResults;
-
-    my $passCount = $counts{match} || 0; # $counts{match} will be undefined if we've not yet passed a test (e.g. the first test fails).
-    my $newCount = $counts{new} || 0;
-    my $failureCount = $count - $passCount - $newCount; # "Failure" here includes timeouts, crashes, etc.
-    if ($exitAfterNFailures && $failureCount >= $exitAfterNFailures) {
-        $stoppedRunningEarlyMessage = "Exiting early after $failureCount failures. $count tests run.";
-        print "\n", $stoppedRunningEarlyMessage;
-        closeDumpTool();
-        return 1;
-    }
-
-    my $crashCount = $counts{crash} || 0;
-    my $webProcessCrashCount = $counts{webProcessCrash} || 0;
-    my $timeoutCount = $counts{timedout} || 0;
-    if ($exitAfterNCrashesOrTimeouts && $crashCount + $webProcessCrashCount + $timeoutCount >= $exitAfterNCrashesOrTimeouts) {
-        $stoppedRunningEarlyMessage = "Exiting early after $crashCount crashes, $webProcessCrashCount web process crashes, and $timeoutCount timeouts. $count tests run.";
-        print "\n", $stoppedRunningEarlyMessage;
-        closeDumpTool();
-        return 1;
-    }
-
-    return 0;
-}
-
-# Store this at global scope so it won't be GCed (and thus unlinked) until the program exits.
-my $debuggerTempDirectory;
-
-sub createDebuggerCommandFile()
-{
-    return unless isCygwin();
-
-    my @commands = (
-        '.logopen /t "' . toWindowsPath($testResultsDirectory) . "\\" . $windowsCrashLogFilePrefix . '.txt"',
-        '.srcpath "' . toWindowsPath(sourceDir()) . '"',
-        '!analyze -vv',
-        '~*kpn',
-        'q',
-    );
-
-    $debuggerTempDirectory = File::Temp->newdir;
-
-    my $commandFile = File::Spec->catfile($debuggerTempDirectory, "debugger-commands.txt");
-    unless (open COMMANDS, '>', $commandFile) {
-        print "Failed to open $commandFile. Crash logs will not be saved.\n";
-        return;
-    }
-    print COMMANDS join("\n", @commands), "\n";
-    unless (close COMMANDS) {
-        print "Failed to write to $commandFile. Crash logs will not be saved.\n";
-        return;
-    }
-
-    return $commandFile;
-}
-
-sub setUpWindowsCrashLogSaving()
-{
-    return unless isCygwin();
-
-    unless (defined $ENV{_NT_SYMBOL_PATH}) {
-        print "The _NT_SYMBOL_PATH environment variable is not set. Crash logs will not be saved.\nSee <http://trac.webkit.org/wiki/BuildingOnWindows#GettingCrashLogs>.\n";
-        return;
-    }
-
-    my $ntsdPath = File::Spec->catfile(toCygwinPath($ENV{PROGRAMFILES}), "Debugging Tools for Windows (x86)", "ntsd.exe");
-    unless (-f $ntsdPath) {
-        $ntsdPath = File::Spec->catfile(toCygwinPath($ENV{ProgramW6432}), "Debugging Tools for Windows (x64)", "ntsd.exe");
-        unless (-f $ntsdPath) {
-            $ntsdPath = File::Spec->catfile(toCygwinPath($ENV{SYSTEMROOT}), "system32", "ntsd.exe");
-            unless (-f $ntsdPath) {
-                print STDERR "Can't find ntsd.exe. Crash logs will not be saved.\nSee <http://trac.webkit.org/wiki/BuildingOnWindows#GettingCrashLogs>.\n";
-                return;
-            }
-        }
-    }
-
-    # If we used -c (instead of -cf) we could pass the commands directly on the command line. But
-    # when the commands include multiple quoted paths (e.g., for .logopen and .srcpath), Windows
-    # fails to invoke the post-mortem debugger at all (perhaps due to a bug in Windows's command
-    # line parsing). So we save the commands to a file instead and tell the debugger to execute them
-    # using -cf.
-    my $commandFile = createDebuggerCommandFile() or return;
-
-    my @options = (
-        '-p %ld',
-        '-e %ld',
-        '-g',
-        '-lines',
-        '-cf "' . toWindowsPath($commandFile) . '"',
-    );
-
-    my %values = (
-        Debugger => '"' . toWindowsPath($ntsdPath) . '" ' . join(' ', @options),
-        Auto => 1
-    );
-
-    foreach my $value (keys %values) {
-        $previousWindowsPostMortemDebuggerValues{$value} = readRegistryString("$windowsPostMortemDebuggerKey/$value");
-        next if writeRegistryString("$windowsPostMortemDebuggerKey/$value", $values{$value});
-
-        print "Failed to set \"$windowsPostMortemDebuggerKey/$value\". Crash logs will not be saved.\nSee <http://trac.webkit.org/wiki/BuildingOnWindows#GettingCrashLogs>.\n";
-        return;
-    }
-
-    print "Crash logs will be saved to $testResultsDirectory.\n";
-}
-
-END {
-    return unless isCygwin();
-
-    foreach my $value (keys %previousWindowsPostMortemDebuggerValues) {
-        next if writeRegistryString("$windowsPostMortemDebuggerKey/$value", $previousWindowsPostMortemDebuggerValues{$value});
-        print "Failed to restore \"$windowsPostMortemDebuggerKey/$value\" to its previous value \"$previousWindowsPostMortemDebuggerValues{$value}\"\n.";
-    }
-}
diff --git a/Tools/Scripts/parallelcl b/Tools/Scripts/parallelcl
deleted file mode 100755
index 8a46365..0000000
--- a/Tools/Scripts/parallelcl
+++ /dev/null
@@ -1,224 +0,0 @@
-#!/usr/bin/perl
-
-use strict;
-use warnings;
-
-use File::Basename;
-use File::Spec;
-use File::Temp;
-use POSIX;
-
-sub makeJob(\@$);
-sub forkAndCompileFiles(\@$);
-sub Exec($);
-sub waitForChild(\@);
-sub cleanup(\@);
-
-my $debug = 0;
-
-chomp(my $clexe = `cygpath -u '$ENV{'VS80COMNTOOLS'}/../../VC/bin/cl.exe'`);
-
-if ($debug) {
-    print STDERR "Received " . @ARGV . " arguments:\n";
-    foreach my $arg (@ARGV) {
-        print STDERR "$arg\n";
-    }
-}
-
-my $commandFile;
-foreach my $arg (@ARGV) {
-    if ($arg =~ /^[\/-](E|EP|P)$/) {
-        print STDERR "The invoking process wants preprocessed source, so let's hand off this whole command to the real cl.exe\n" if $debug;
-        Exec("\"$clexe\" \"" . join('" "', @ARGV) . "\"");
-    } elsif ($arg =~ /^@(.*)$/) {
-        chomp($commandFile = `cygpath -u '$1'`);
-    }
-}
-
-die "No command file specified!" unless $commandFile;
-die "Couldn't find $commandFile!" unless -f $commandFile;
-
-my @sources;
-
-open(COMMAND, '<:raw:encoding(UTF16-LE):crlf:utf8', $commandFile) or die "Couldn't open $commandFile!";
-
-# The first line of the command file contains all the options to cl.exe plus the first (possibly quoted) filename
-my $firstLine = <COMMAND>;
-$firstLine =~ s/\r?\n$//;
-
-# To find the start of the first filename, look for either the last space on the line.
-# If the filename is quoted, the last character on the line will be a quote, so look for the quote before that.
-my $firstFileIndex;
-print STDERR "Last character of first line = '" . substr($firstLine, -1, 1) . "'\n" if $debug;
-if (substr($firstLine, -1, 1) eq '"') {
-    print STDERR "First file is quoted\n" if $debug;
-    $firstFileIndex = rindex($firstLine, '"', length($firstLine) - 2);
-} else {
-    print STDERR "First file is NOT quoted\n" if $debug;
-    $firstFileIndex = rindex($firstLine, ' ') + 1;
-}
-
-my $options = substr($firstLine, 0, $firstFileIndex) . join(' ', @ARGV[1 .. $#ARGV]);
-my $possibleFirstFile = substr($firstLine, $firstFileIndex);
-if ($possibleFirstFile =~ /\.(cpp|c)/) {
-    push(@sources, $possibleFirstFile);
-} else {
-    $options .= " $possibleFirstFile";
-}
-
-print STDERR "######## Found options $options ##########\n" if $debug;
-print STDERR "####### Found first source file $sources[0] ########\n" if @sources && $debug;
-
-# The rest of the lines of the command file just contain source files, one per line
-while (my $source = <COMMAND>) {
-    chomp($source);
-    $source =~ s/^\s+//;
-    $source =~ s/\s+$//;
-    push(@sources, $source) if length($source);
-}
-close(COMMAND);
-
-my $numSources = @sources;
-exit unless $numSources > 0;
-
-my $numJobs;
-if ($options =~ s/-j\s*([0-9]+)//) {
-    $numJobs = $1;
-} else {
-    chomp($numJobs = `num-cpus`);
-}
-
-print STDERR "\n\n####### COMPILING $numSources FILES USING AT MOST $numJobs PARALLEL INSTANCES OF cl.exe ###########\n\n";# if $debug;
-
-# Magic determination of job size
-# The hope is that by splitting the source files up into 2*$numJobs pieces, we
-# won't suffer too much if one job finishes much more quickly than another.
-# However, we don't want to split it up too much due to cl.exe overhead, so set
-# the minimum job size to 5.
-my $jobSize = POSIX::ceil($numSources / (2 * $numJobs));
-$jobSize = $jobSize < 5 ? 5 : $jobSize;
-
-print STDERR "######## jobSize = $jobSize ##########\n" if $debug;
-
-# Sort the source files randomly so that we don't end up with big clumps of large files (aka SVG)
-sub fisher_yates_shuffle(\@)
-{
-    my ($array) = @_;
-    for (my $i = @{$array}; --$i; ) {
-        my $j = int(rand($i+1));
-        next if $i == $j;
-        @{$array}[$i,$j] = @{$array}[$j,$i];
-    }
-}
-
-fisher_yates_shuffle(@sources);    # permutes @array in place
-
-my @children;
-my @tmpFiles;
-my $status = 0;
-while (@sources) {
-    while (@sources && @children < $numJobs) {
-        my $pid;
-        my $tmpFile;
-        my $job = makeJob(@sources, $jobSize);
-        ($pid, $tmpFile) = forkAndCompileFiles(@{$job}, $options);
-
-        print STDERR "####### Spawned child with PID $pid and tmpFile $tmpFile ##########\n" if $debug;
-        push(@children, $pid);
-        push(@tmpFiles, $tmpFile);
-    }
-
-    $status |= waitForChild(@children);
-}
-
-while (@children) {
-    $status |= waitForChild(@children);
-}
-cleanup(@tmpFiles);
-
-exit WEXITSTATUS($status);
-
-
-sub makeJob(\@$)
-{
-    my ($files, $jobSize) = @_;
-
-    my @job;
-    if (@{$files} > ($jobSize * 1.5)) {
-        @job = splice(@{$files}, -$jobSize);
-    } else {
-        # Compile all the remaining files in this job to avoid having a small job later
-        @job = splice(@{$files});
-    }
-
-    return \@job;
-}
-
-sub forkAndCompileFiles(\@$)
-{
-    print STDERR "######## forkAndCompileFiles()\n" if $debug;
-    my ($files, $options) = @_;
-
-    if ($debug) {
-        foreach my $file (@{$files}) {
-            print STDERR "######## $file\n";
-        }
-    }
-
-    my (undef, $tmpFile) = File::Temp::tempfile('clcommandXXXXX', DIR => File::Spec->tmpdir, OPEN => 0);
-
-    my $pid = fork();
-    die "Fork failed" unless defined($pid);
-
-    unless ($pid) {
-        # Child process
-        open(TMP, '>:raw:encoding(UTF16-LE):crlf:utf8', $tmpFile) or die "Couldn't open $tmpFile";
-        print TMP "$options\n";
-        foreach my $file (@{$files}) {
-            print TMP "$file\n";
-        }
-        close(TMP);
-        
-        chomp(my $winTmpFile = `cygpath -m $tmpFile`);
-        Exec "\"$clexe\" \@\"$winTmpFile\"";
-    } else {
-        return ($pid, $tmpFile);
-    }
-}
-
-sub Exec($)
-{
-    my ($command) = @_;
-
-    print STDERR "Exec($command)\n" if $debug;
-
-    exec($command);
-}
-
-sub waitForChild(\@)
-{
-    my ($children) = @_;
-
-    return unless @{$children};
-
-    my $deceased = wait();
-    my $status = $?;
-    print STDERR "######## Child with PID $deceased finished ###########\n" if $debug;
-    for (my $i = 0; $i < @{$children}; $i++) {
-        if ($children->[$i] == $deceased) {
-            splice(@{$children}, $i, 1);
-            last;
-        }
-    }
-
-    return $status;
-}
-
-sub cleanup(\@)
-{
-    my ($tmpFiles) = @_;
-
-    foreach my $file (@{$tmpFiles}) {
-        unlink $file;
-    }
-}
diff --git a/Tools/Scripts/pdevenv b/Tools/Scripts/pdevenv
deleted file mode 100755
index 4643728..0000000
--- a/Tools/Scripts/pdevenv
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/usr/bin/perl -w
-
-use strict;
-use warnings;
-
-use File::Temp qw/tempfile/;
-use FindBin;
-
-use lib $FindBin::Bin;
-use webkitdirs;
-
-my ($fh, $path) = tempfile(UNLINK => 0, SUFFIX => '.cmd') or die;
-
-chomp(my $vcBin = `cygpath -w "$FindBin::Bin/../vcbin"`);
-chomp(my $scriptsPath = `cygpath -w "$FindBin::Bin"`);
-
-my $vsToolsVar;
-if ($ENV{'VS80COMNTOOLS'}) {
-    $vsToolsVar = "VS80COMNTOOLS";
-} elsif ($ENV{'VS90COMNTOOLS'}) {
-    $vsToolsVar = "VS90COMNTOOLS";
-} else {
-    print "*************************************************************\n";
-    print "Cannot find Visual Studio tools dir.\n";
-    print "Please ensure that \$VS80COMNTOOLS or \$VS90COMNTOOLS\n";
-    print "is set to a valid location.\n";
-    print "*************************************************************\n";
-    die;
-}
-
-print $fh "\@echo off\n\n";
-print $fh "call \"\%" . $vsToolsVar . "\%\\vsvars32.bat\"\n\n";
-print $fh "set PATH=$vcBin;$scriptsPath;\%PATH\%\n\n";
-
-print $fh "IF EXIST \"\%VSINSTALLDIR\%\\Common7\\IDE\\devenv.com\" (devenv.com /useenv " . join(" ", @ARGV) . ") ELSE ";
-print $fh "VCExpress.exe /useenv " . join(" ", @ARGV) . "\n";
-
-
-close $fh;
-
-chmod 0755, $path;
-
-chomp($path = `cygpath -w -s '$path'`);
-
-exec("cmd /c \"call $path\"");
diff --git a/Tools/Scripts/prepare-ChangeLog b/Tools/Scripts/prepare-ChangeLog
deleted file mode 100755
index f551540..0000000
--- a/Tools/Scripts/prepare-ChangeLog
+++ /dev/null
@@ -1,1992 +0,0 @@
-#!/usr/bin/perl -w
-# -*- Mode: perl; indent-tabs-mode: nil; c-basic-offset: 2  -*-
-
-#
-#  Copyright (C) 2000, 2001 Eazel, Inc.
-#  Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Apple Inc.  All rights reserved.
-#  Copyright (C) 2009 Torch Mobile, Inc.
-#  Copyright (C) 2009 Cameron McCormack <cam@mcc.id.au>
-#
-#  prepare-ChangeLog is free software; you can redistribute it and/or
-#  modify it under the terms of the GNU General Public
-#  License as published by the Free Software Foundation; either
-#  version 2 of the License, or (at your option) any later version.
-#
-#  prepare-ChangeLog is distributed in the hope that it will be useful,
-#  but WITHOUT ANY WARRANTY; without even the implied warranty of
-#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-#  General Public License for more details.
-#
-#  You should have received a copy of the GNU General Public
-#  License along with this program; if not, write to the Free
-#  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-#
-
-
-# Perl script to create a ChangeLog entry with names of files
-# and functions from a diff.
-#
-# Darin Adler <darin@bentspoon.com>, started 20 April 2000
-# Java support added by Maciej Stachowiak <mjs@eazel.com>
-# Objective-C, C++ and Objective-C++ support added by Maciej Stachowiak <mjs@apple.com>
-# Git support added by Adam Roben <aroben@apple.com>
-# --git-index flag added by Joe Mason <joe.mason@torchmobile.com>
-
-
-#
-# TODO:
-#   List functions that have been removed too.
-#   Decide what a good logical order is for the changed files
-#     other than a normal text "sort" (top level first?)
-#     (group directories?) (.h before .c?)
-#   Handle yacc source files too (other languages?).
-#   Help merge when there are ChangeLog conflicts or if there's
-#     already a partly written ChangeLog entry.
-#   Add command line option to put the ChangeLog into a separate file.
-#   Add SVN version numbers for commit (can't do that until
-#     the changes are checked in, though).
-#   Work around diff stupidity where deleting a function that starts
-#     with a comment makes diff think that the following function
-#     has been changed (if the following function starts with a comment
-#     with the same first line, such as /**)
-#   Work around diff stupidity where deleting an entire function and
-#     the blank lines before it makes diff think you've changed the
-#     previous function.
-
-use strict;
-use warnings;
-
-use File::Basename;
-use File::Spec;
-use FindBin;
-use Getopt::Long;
-use lib $FindBin::Bin;
-use POSIX qw(strftime);
-use VCSUtils;
-
-sub changeLogDate($);
-sub changeLogEmailAddressFromArgs($$);
-sub changeLogNameFromArgs($$);
-sub createPatchCommand($$$$);
-sub decodeEntities($);
-sub determinePropertyChanges($$$);
-sub diffCommand($$$$);
-sub diffFromToString($$$);
-sub diffHeaderFormat();
-sub extractLineRange($);
-sub fetchBugDescriptionFromURL($$);
-sub findChangeLogs($);
-sub findOriginalFileFromSvn($);
-sub generateFileList(\%$$$);
-sub generateFunctionLists($$$$$);
-sub generateNewChangeLogs($$$$$$$$$$$);
-sub getLatestChangeLogs($);
-sub get_function_line_ranges($$);
-sub get_function_line_ranges_for_cpp($$);
-sub get_function_line_ranges_for_java($$);
-sub get_function_line_ranges_for_javascript($$);
-sub get_function_line_ranges_for_perl($$);
-sub get_selector_line_ranges_for_css($$);
-sub isAddedStatus($);
-sub isConflictStatus($$$);
-sub isModifiedStatus($);
-sub isUnmodifiedStatus($);
-sub main();
-sub method_decl_to_selector($);
-sub normalizeLineEndings($$);
-sub openChangeLogs($);
-sub pluralizeAndList($$@);
-sub printDiff($$$$);
-sub processPaths(\@);
-sub propertyChangeDescription($);
-sub resolveConflictedChangeLogs($);
-sub reviewerAndDescriptionForGitCommit($$);
-sub statusCommand($$$$);
-sub statusDescription($$$$);
-sub testListForChangeLog(@);
-
-### Constant variables.
-# Project time zone for Cupertino, CA, US
-use constant ChangeLogTimeZone => "PST8PDT";
-use constant SVN => "svn";
-use constant GIT => "git";
-use constant SupportedTestExtensions => {map { $_ => 1 } qw(html shtml svg xml xhtml pl php)};
-
-exit(main());
-
-sub main()
-{
-    my $bugDescription;
-    my $bugNumber;
-    my $name;
-    my $emailAddress;
-    my $mergeBase = 0;
-    my $gitCommit = 0;
-    my $gitIndex = "";
-    my $gitReviewer = "";
-    my $openChangeLogs = 0;
-    my $writeChangeLogs = 1;
-    my $showHelp = 0;
-    my $spewDiff = $ENV{"PREPARE_CHANGELOG_DIFF"};
-    my $updateChangeLogs = 1;
-    my $parseOptionsResult =
-        GetOptions("diff|d!" => \$spewDiff,
-                   "bug|b:i" => \$bugNumber,
-                   "description:s" => \$bugDescription,
-                   "name:s" => \$name,
-                   "email:s" => \$emailAddress,
-                   "merge-base:s" => \$mergeBase,
-                   "git-commit|g:s" => \$gitCommit,
-                   "git-index" => \$gitIndex,
-                   "git-reviewer:s" => \$gitReviewer,
-                   "help|h!" => \$showHelp,
-                   "open|o!" => \$openChangeLogs,
-                   "write!" => \$writeChangeLogs,
-                   "update!" => \$updateChangeLogs);
-    if (!$parseOptionsResult || $showHelp) {
-        print STDERR basename($0) . " [-b|--bug=<bugid>] [-d|--diff] [-h|--help] [-o|--open] [-g|--git-commit=<committish>] [--git-reviewer=<name>] [svndir1 [svndir2 ...]]\n";
-        print STDERR "  -b|--bug        Fill in the ChangeLog bug information from the given bug.\n";
-        print STDERR "  --description   One-line description that matches the bug title.\n";
-        print STDERR "  -d|--diff       Spew diff to stdout when running\n";
-        print STDERR "  --merge-base    Populate the ChangeLogs with the diff to this branch\n";
-        print STDERR "  -g|--git-commit Populate the ChangeLogs from the specified git commit\n";
-        print STDERR "  --git-index     Populate the ChangeLogs from the git index only\n";
-        print STDERR "  --git-reviewer  When populating the ChangeLogs from a git commit claim that the spcified name reviewed the change.\n";
-        print STDERR "                  This option is useful when the git commit lacks a Signed-Off-By: line\n";
-        print STDERR "  -h|--help       Show this help message\n";
-        print STDERR "  -o|--open       Open ChangeLogs in an editor when done\n";
-        print STDERR "  --[no-]update   Update ChangeLogs from svn before adding entry (default: update)\n";
-        print STDERR "  --[no-]write    Write ChangeLogs to disk (otherwise send new entries to stdout) (default: write)\n";
-        print STDERR "  --email=        Specify the email address to be used in the patch\n";
-        return 1;
-    }
-
-    die "--git-commit and --git-index are incompatible." if ($gitIndex && $gitCommit);
-
-    isSVN() || isGit() || die "Couldn't determine your version control system.";
-
-    my %paths = processPaths(@ARGV);
-
-    # Find the list of modified files
-    my ($changedFiles, $conflictFiles, $functionLists, $addedRegressionTests) = generateFileList(%paths, $gitCommit, $gitIndex, $mergeBase);
-
-    if (!@$changedFiles && !@$conflictFiles && !keys %$functionLists) {
-        print STDERR "  No changes found.\n";
-        return 1;
-    }
-
-    if (@$conflictFiles) {
-        print STDERR "  The following files have conflicts. Run prepare-ChangeLog again after fixing the conflicts:\n";
-        print STDERR join("\n", @$conflictFiles), "\n";
-        return 1;
-    }
-
-    generateFunctionLists($changedFiles, $functionLists, $gitCommit, $gitIndex, $mergeBase);
-
-    # Get some parameters for the ChangeLog we are about to write.
-    $name = changeLogNameFromArgs($name, $gitCommit);
-    $emailAddress = changeLogEmailAddressFromArgs($emailAddress, $gitCommit);
-
-    print STDERR "  Change author: $name <$emailAddress>.\n";
-
-    # Remove trailing parenthesized notes from user name (bit of hack).
-    $name =~ s/\(.*?\)\s*$//g;
-
-    my $bugURL;
-    if ($bugNumber) {
-        $bugURL = "https://bugs.webkit.org/show_bug.cgi?id=$bugNumber";
-    }
-
-    if ($bugNumber && !$bugDescription) {
-        $bugDescription = fetchBugDescriptionFromURL($bugURL, $bugNumber);
-    }
-
-    my ($filesInChangeLog, $prefixes) = findChangeLogs($functionLists);
-
-    # Get the latest ChangeLog files from svn.
-    my $changeLogs = getLatestChangeLogs($prefixes);
-
-    if (@$changeLogs && $updateChangeLogs && isSVN()) {
-        resolveConflictedChangeLogs($changeLogs);
-    }
-
-    generateNewChangeLogs($prefixes, $filesInChangeLog, $addedRegressionTests, $functionLists, $bugURL, $bugDescription, $name, $emailAddress, $gitReviewer, $gitCommit, $writeChangeLogs);
-
-    if ($writeChangeLogs) {
-        print STDERR "-- Please remember to include a detailed description in your ChangeLog entry. --\n-- See <http://webkit.org/coding/contributing.html> for more info --\n";
-    }
-
-    # Write out another diff.
-    if ($spewDiff && @$changedFiles) {
-        printDiff($changedFiles, $gitCommit, $gitIndex, $mergeBase);
-    }
-
-    # Open ChangeLogs.
-    if ($openChangeLogs && @$changeLogs) {
-        openChangeLogs($changeLogs);
-    }
-    return 0;
-}
-
-sub generateFunctionLists($$$$$)
-{
-    my ($changedFiles, $functionLists, $gitCommit, $gitIndex, $mergeBase) = @_;
-
-    my %changed_line_ranges;
-    if (@$changedFiles) {
-        # For each file, build a list of modified lines.
-        # Use line numbers from the "after" side of each diff.
-        print STDERR "  Reviewing diff to determine which lines changed.\n";
-        my $file;
-        open DIFF, "-|", diffCommand($changedFiles, $gitCommit, $gitIndex, $mergeBase) or die "The diff failed: $!.\n";
-        while (<DIFF>) {
-            $file = makeFilePathRelative($1) if $_ =~ diffHeaderFormat();
-            if (defined $file) {
-                my ($start, $end) = extractLineRange($_);
-                if ($start >= 0 && $end >= 0) {
-                    push @{$changed_line_ranges{$file}}, [ $start, $end ];
-                } elsif (/DO_NOT_COMMIT/) {
-                    print STDERR "WARNING: file $file contains the string DO_NOT_COMMIT, line $.\n";
-                }
-            }
-        }
-        close DIFF;
-    }
-
-    # For each source file, convert line range to function list.
-    if (%changed_line_ranges) {
-        print STDERR "  Extracting affected function names from source files.\n";
-        foreach my $file (keys %changed_line_ranges) {
-            # Find all the functions in the file.
-            open SOURCE, $file or next;
-            my @function_ranges = get_function_line_ranges(\*SOURCE, $file);
-            close SOURCE;
-
-            # Find all the modified functions.
-            my @functions;
-            my %saw_function;
-            my @change_ranges = (@{$changed_line_ranges{$file}}, []);
-            my @change_range = (0, 0);
-            FUNCTION: foreach my $function_range_ref (@function_ranges) {
-                my @function_range = @$function_range_ref;
-
-                # FIXME: This is a hack. If the function name is empty, skip it.
-                # The cpp, python, javascript, perl, css and java parsers
-                # are not perfectly implemented and sometimes function names cannot be retrieved
-                # correctly. As you can see in get_function_line_ranges_XXXX(), those parsers
-                # are not intended to implement real parsers but intended to just retrieve function names
-                # for most practical syntaxes.
-                next unless $function_range[2];
-
-                # Advance to successive change ranges.
-                for (;; @change_range = @{shift @change_ranges}) {
-                    last FUNCTION unless @change_range;
-
-                    # If past this function, move on to the next one.
-                    next FUNCTION if $change_range[0] > $function_range[1];
-
-                    # If an overlap with this function range, record the function name.
-                    if ($change_range[1] >= $function_range[0]
-                        and $change_range[0] <= $function_range[1]) {
-                        if (!$saw_function{$function_range[2]}) {
-                            $saw_function{$function_range[2]} = 1;
-                            push @functions, $function_range[2];
-                        }
-                        next FUNCTION;
-                    }
-                }
-            }
-
-            # Format the list of functions now.
-            if (@functions) {
-                $functionLists->{$file} = "" if !defined $functionLists->{$file};
-                $functionLists->{$file} .= "\n        (" . join("):\n        (", @functions) . "):";
-            }
-        }
-    }
-}
-
-sub changeLogDate($)
-{
-    my ($timeZone) = @_;
-    my $savedTimeZone = $ENV{'TZ'};
-    # Set TZ temporarily so that localtime() is in that time zone
-    $ENV{'TZ'} = $timeZone;
-    my $date = strftime("%Y-%m-%d", localtime());
-    if (defined $savedTimeZone) {
-         $ENV{'TZ'} = $savedTimeZone;
-    } else {
-         delete $ENV{'TZ'};
-    }
-    return $date;
-}
-
-sub changeLogNameFromArgs($$)
-{
-    my ($nameFromArgs, $gitCommit) = @_;
-    # Silently allow --git-commit to win, we could warn if $nameFromArgs is defined.
-    my $command = GIT . ' log --max-count=1 --pretty="format:%an" "' . $gitCommit . '"';
-    return `$command` if $gitCommit;
-
-    return $nameFromArgs || changeLogName();
-}
-
-sub changeLogEmailAddressFromArgs($$)
-{
-    my ($emailAddressFromArgs, $gitCommit) = @_;
-    # Silently allow --git-commit to win, we could warn if $emailAddressFromArgs is defined.
-    my $command = GIT . ' log --max-count=1 --pretty="format:%ae" "' . $gitCommit . '"';
-    return `$command` if $gitCommit;
-
-    return $emailAddressFromArgs || changeLogEmailAddress();
-}
-
-sub fetchBugDescriptionFromURL($$)
-{
-    my ($bugURL, $bugNumber) = @_;
-
-    my $bugXMLURL = "$bugURL&ctype=xml&excludefield=attachmentdata";
-    # Perl has no built in XML processing, so we'll fetch and parse with curl and grep
-    # Pass --insecure because some cygwin installs have no certs we don't
-    # care about validating that bugs.webkit.org is who it says it is here.
-    my $descriptionLine = `curl --insecure --silent "$bugXMLURL" | grep short_desc`;
-    if ($descriptionLine !~ /<short_desc>(.*)<\/short_desc>/) {
-        # Maybe the reason the above did not work is because the curl that is installed doesn't
-        # support ssl at all.
-        if (`curl --version | grep ^Protocols` !~ /\bhttps\b/) {
-            print STDERR "  Could not get description for bug $bugNumber.\n";
-            print STDERR "  It looks like your version of curl does not support ssl.\n";
-            print STDERR "  If you are using macports, this can be fixed with sudo port install curl +ssl.\n";
-        } else {
-            print STDERR "  Bug $bugNumber has no bug description. Maybe you set wrong bug ID?\n";
-            print STDERR "  The bug URL: $bugXMLURL\n";
-        }
-        exit 1;
-    }
-    my $bugDescription = decodeEntities($1);
-    print STDERR "  Description from bug $bugNumber:\n    \"$bugDescription\".\n";
-    return $bugDescription;
-}
-
-sub findChangeLogs($)
-{
-    my ($functionLists) = @_;
-
-    # Find the change logs.
-    my %has_log;
-    my %filesInChangeLog;
-    foreach my $file (sort keys %$functionLists) {
-        my $prefix = $file;
-        my $has_log = 0;
-        while ($prefix) {
-            $prefix =~ s-/[^/]+/?$-/- or $prefix = "";
-            $has_log = $has_log{$prefix};
-            if (!defined $has_log) {
-                $has_log = -f "${prefix}ChangeLog";
-                $has_log{$prefix} = $has_log;
-            }
-            last if $has_log;
-        }
-        if (!$has_log) {
-            print STDERR "No ChangeLog found for $file.\n";
-        } else {
-            push @{$filesInChangeLog{$prefix}}, $file;
-        }
-    }
-
-    # Build the list of ChangeLog prefixes in the correct project order
-    my @prefixes;
-    my %prefixesSort;
-    foreach my $prefix (keys %filesInChangeLog) {
-        my $prefixDir = substr($prefix, 0, length($prefix) - 1); # strip trailing /
-        my $sortKey = lc $prefix;
-        $sortKey = "top level" unless length $sortKey;
-
-        if ($prefixDir eq "top level") {
-            $sortKey = "";
-        } elsif ($prefixDir eq "Tools") {
-            $sortKey = "-, just after top level";
-        } elsif ($prefixDir eq "WebBrowser") {
-            $sortKey = lc "WebKit, WebBrowser after";
-        } elsif ($prefixDir eq "Source/WebCore") {
-            $sortKey = lc "WebFoundation, WebCore after";
-        } elsif ($prefixDir eq "LayoutTests") {
-            $sortKey = lc "~, LayoutTests last";
-        }
-
-        $prefixesSort{$sortKey} = $prefix;
-    }
-    foreach my $prefixSort (sort keys %prefixesSort) {
-        push @prefixes, $prefixesSort{$prefixSort};
-    }
-    return (\%filesInChangeLog, \@prefixes);
-}
-
-sub getLatestChangeLogs($)
-{
-    my ($prefixes) = @_;
-
-    my @changeLogs = ();
-    foreach my $prefix (@$prefixes) {
-        push @changeLogs, File::Spec->catfile($prefix || ".", changeLogFileName());
-    }
-    return \@changeLogs;
-}
-
-sub resolveConflictedChangeLogs($)
-{
-    my ($changeLogs) = @_;
-
-    print STDERR "  Running 'svn update' to update ChangeLog files.\n";
-    open ERRORS, "-|", SVN, "update", @$changeLogs
-        or die "The svn update of ChangeLog files failed: $!.\n";
-    my @conflictedChangeLogs;
-    while (my $line = <ERRORS>) {
-        print STDERR "    ", $line;
-        push @conflictedChangeLogs, $1 if $line =~ m/^C\s+(.+?)[\r\n]*$/;
-    }
-    close ERRORS;
-
-    return if !@conflictedChangeLogs;
-
-    print STDERR "  Attempting to merge conflicted ChangeLogs.\n";
-    my $resolveChangeLogsPath = File::Spec->catfile(dirname($0), "resolve-ChangeLogs");
-    open RESOLVE, "-|", $resolveChangeLogsPath, "--no-warnings", @conflictedChangeLogs
-        or die "Could not open resolve-ChangeLogs script: $!.\n";
-    print STDERR "    $_" while <RESOLVE>;
-    close RESOLVE;
-}
-
-sub generateNewChangeLogs($$$$$$$$$$$)
-{
-    my ($prefixes, $filesInChangeLog, $addedRegressionTests, $functionLists, $bugURL, $bugDescription, $name, $emailAddress, $gitReviewer, $gitCommit, $writeChangeLogs) = @_;
-
-    # Generate new ChangeLog entries and (optionally) write out new ChangeLog files.
-    foreach my $prefix (@$prefixes) {
-        my $endl = "\n";
-        my @old_change_log;
-
-        if ($writeChangeLogs) {
-            my $changeLogPath = File::Spec->catfile($prefix || ".", changeLogFileName());
-            print STDERR "  Editing the ${changeLogPath} file.\n";
-            open OLD_CHANGE_LOG, ${changeLogPath} or die "Could not open ${changeLogPath} file: $!.\n";
-            # It's less efficient to read the whole thing into memory than it would be
-            # to read it while we prepend to it later, but I like doing this part first.
-            @old_change_log = <OLD_CHANGE_LOG>;
-            close OLD_CHANGE_LOG;
-            # We want to match the ChangeLog's line endings in case it doesn't match
-            # the native line endings for this version of perl.
-            if ($old_change_log[0] =~ /(\r?\n)$/g) {
-                $endl = "$1";
-            }
-            open CHANGE_LOG, "> ${changeLogPath}" or die "Could not write ${changeLogPath}\n.";
-        } else {
-            open CHANGE_LOG, ">-" or die "Could not write to STDOUT\n.";
-            print substr($prefix, 0, length($prefix) - 1) . ":\n\n" unless (scalar @$prefixes) == 1;
-        }
-
-        my $date = changeLogDate(ChangeLogTimeZone);
-        print CHANGE_LOG normalizeLineEndings("$date  $name  <$emailAddress>\n\n", $endl);
-
-        my ($reviewer, $description) = reviewerAndDescriptionForGitCommit($gitCommit, $gitReviewer) if $gitCommit;
-        $reviewer = "NOBODY (OO" . "PS!)" if !$reviewer;
-
-        print CHANGE_LOG normalizeLineEndings($description . "\n", $endl) if $description;
-
-        $bugDescription = "Need a short description (OOPS!).\n        Need the bug URL (OOPS!)." unless $bugDescription;
-        print CHANGE_LOG normalizeLineEndings("        $bugDescription\n", $endl) if $bugDescription;
-        print CHANGE_LOG normalizeLineEndings("        $bugURL\n", $endl) if $bugURL;
-        print CHANGE_LOG normalizeLineEndings("\n", $endl);
-
-        print CHANGE_LOG normalizeLineEndings("        Reviewed by $reviewer.\n\n", $endl);
-
-        if ($prefix =~ m/WebCore/ || `pwd` =~ m/WebCore/) {
-            if (@$addedRegressionTests) {
-                print CHANGE_LOG normalizeLineEndings(testListForChangeLog(sort @$addedRegressionTests), $endl);
-            } else {
-                print CHANGE_LOG normalizeLineEndings("        No new tests (OOPS!).\n\n", $endl);
-            }
-        }
-
-        foreach my $file (sort @{$filesInChangeLog->{$prefix}}) {
-            my $file_stem = substr $file, length $prefix;
-            print CHANGE_LOG normalizeLineEndings("        * $file_stem:$functionLists->{$file}\n", $endl);
-        }
-
-        if ($writeChangeLogs) {
-            print CHANGE_LOG normalizeLineEndings("\n", $endl), @old_change_log;
-        } else {
-            print CHANGE_LOG "\n";
-        }
-
-        close CHANGE_LOG;
-    }
-}
-
-sub printDiff($$$$)
-{
-    my ($changedFiles, $gitCommit, $gitIndex, $mergeBase) = @_;
-
-    print STDERR "  Running diff to help you write the ChangeLog entries.\n";
-    local $/ = undef; # local slurp mode
-    my $changedFilesString = "'" . join("' '", @$changedFiles) . "'";
-    open DIFF, "-|", createPatchCommand($changedFilesString, $gitCommit, $gitIndex, $mergeBase) or die "The diff failed: $!.\n";
-    print <DIFF>;
-    close DIFF;
-}
-
-sub openChangeLogs($)
-{
-    my ($changeLogs) = @_;
-
-    print STDERR "  Opening the edited ChangeLog files.\n";
-    my $editor = $ENV{CHANGE_LOG_EDITOR} || $ENV{VISUAL} || $ENV{EDITOR};
-    if ($editor) {
-        system ((split ' ', $editor), @$changeLogs);
-    } else {
-        $editor = $ENV{CHANGE_LOG_EDIT_APPLICATION};
-        if ($editor) {
-            system "open", "-a", $editor, @$changeLogs;
-        } else {
-            system "open", "-e", @$changeLogs;
-        }
-    }
-}
-
-sub get_function_line_ranges($$)
-{
-    my ($file_handle, $file_name) = @_;
-
-    # Try to determine the source language based on the file extension.
-
-    return get_function_line_ranges_for_cpp($file_handle, $file_name) if $file_name =~ /\.(c|cpp|m|mm|h)$/;
-    return get_function_line_ranges_for_java($file_handle, $file_name) if $file_name =~ /\.java$/;
-    return get_function_line_ranges_for_javascript($file_handle, $file_name) if $file_name =~ /\.js$/;
-    return get_selector_line_ranges_for_css($file_handle, $file_name) if $file_name =~ /\.css$/;
-    return get_function_line_ranges_for_perl($file_handle, $file_name) if $file_name =~ /\.p[lm]$/;
-    return get_function_line_ranges_for_python($file_handle, $file_name) if $file_name =~ /\.py$/ or $file_name =~ /master\.cfg$/;
-
-    # Try to determine the source language based on the script interpreter.
-
-    my $first_line = <$file_handle>;
-    seek($file_handle, 0, 0);
-
-    return () unless $first_line =~ m|^#!(?:/usr/bin/env\s+)?(\S+)|;
-    my $interpreter = $1;
-
-    return get_function_line_ranges_for_perl($file_handle, $file_name) if $interpreter =~ /perl$/;
-    return get_function_line_ranges_for_python($file_handle, $file_name) if $interpreter =~ /python$/;
-
-    return ();
-}
-
-
-sub method_decl_to_selector($)
-{
-    (my $method_decl) = @_;
-
-    $_ = $method_decl;
-
-    if ((my $comment_stripped) = m-([^/]*)(//|/*).*-) {
-        $_ = $comment_stripped;
-    }
-
-    s/,\s*...//;
-
-    if (/:/) {
-        my @components = split /:/;
-        pop @components if (scalar @components > 1);
-        $_ = (join ':', map {s/.*[^[:word:]]//; scalar $_;} @components) . ':';
-    } else {
-        s/\s*$//;
-        s/.*[^[:word:]]//;
-    }
-
-    return $_;
-}
-
-
-
-# Read a file and get all the line ranges of the things that look like C functions.
-# A function name is the last word before an open parenthesis before the outer
-# level open brace. A function starts at the first character after the last close
-# brace or semicolon before the function name and ends at the close brace.
-# Comment handling is simple-minded but will work for all but pathological cases.
-#
-# Result is a list of triples: [ start_line, end_line, function_name ].
-
-sub get_function_line_ranges_for_cpp($$)
-{
-    my ($file_handle, $file_name) = @_;
-
-    my @ranges;
-
-    my $in_comment = 0;
-    my $in_macro = 0;
-    my $in_method_declaration = 0;
-    my $in_parentheses = 0;
-    my $in_braces = 0;
-    my $in_toplevel_array_brace = 0;
-    my $brace_start = 0;
-    my $brace_end = 0;
-    my $namespace_start = -1;
-    my $skip_til_brace_or_semicolon = 0;
-    my $equal_observed = 0;
-
-    my $word = "";
-    my $interface_name = "";
-
-    my $potential_method_char = "";
-    my $potential_method_spec = "";
-
-    my $potential_start = 0;
-    my $potential_name = "";
-
-    my $start = 0;
-    my $name = "";
-
-    my $next_word_could_be_namespace = 0;
-    my $potential_namespace = "";
-    my @namespaces;
-
-    while (<$file_handle>) {
-        # Handle continued multi-line comment.
-        if ($in_comment) {
-            next unless s-.*\*/--;
-            $in_comment = 0;
-        }
-
-        # Handle continued macro.
-        if ($in_macro) {
-            $in_macro = 0 unless /\\$/;
-            next;
-        }
-
-        # Handle start of macro (or any preprocessor directive).
-        if (/^\s*\#/) {
-            $in_macro = 1 if /^([^\\]|\\.)*\\$/;
-            next;
-        }
-
-        # Handle comments and quoted text.
-        while (m-(/\*|//|\'|\")-) { # \' and \" keep emacs perl mode happy
-            my $match = $1;
-            if ($match eq "/*") {
-                if (!s-/\*.*?\*/--) {
-                    s-/\*.*--;
-                    $in_comment = 1;
-                }
-            } elsif ($match eq "//") {
-                s-//.*--;
-            } else { # ' or "
-                if (!s-$match([^\\]|\\.)*?$match--) {
-                    warn "mismatched quotes at line $. in $file_name\n";
-                    s-$match.*--;
-                }
-            }
-        }
-
-
-        # continued method declaration
-        if ($in_method_declaration) {
-              my $original = $_;
-              my $method_cont = $_;
-
-              chomp $method_cont;
-              $method_cont =~ s/[;\{].*//;
-              $potential_method_spec = "${potential_method_spec} ${method_cont}";
-
-              $_ = $original;
-              if (/;/) {
-                  $potential_start = 0;
-                  $potential_method_spec = "";
-                  $potential_method_char = "";
-                  $in_method_declaration = 0;
-                  s/^[^;\{]*//;
-              } elsif (/{/) {
-                  my $selector = method_decl_to_selector ($potential_method_spec);
-                  $potential_name = "${potential_method_char}\[${interface_name} ${selector}\]";
-
-                  $potential_method_spec = "";
-                  $potential_method_char = "";
-                  $in_method_declaration = 0;
-
-                  $_ = $original;
-                  s/^[^;{]*//;
-              } elsif (/\@end/) {
-                  $in_method_declaration = 0;
-                  $interface_name = "";
-                  $_ = $original;
-              } else {
-                  next;
-              }
-        }
-
-
-        # start of method declaration
-        if ((my $method_char, my $method_spec) = m&^([-+])([^0-9;][^;]*);?$&) {
-            my $original = $_;
-
-            if ($interface_name) {
-                chomp $method_spec;
-                $method_spec =~ s/\{.*//;
-
-                $potential_method_char = $method_char;
-                $potential_method_spec = $method_spec;
-                $potential_start = $.;
-                $in_method_declaration = 1;
-            } else { 
-                warn "declaring a method but don't have interface on line $. in $file_name\n";
-            }
-            $_ = $original;
-            if (/\{/) {
-              my $selector = method_decl_to_selector ($potential_method_spec);
-              $potential_name = "${potential_method_char}\[${interface_name} ${selector}\]";
-
-              $potential_method_spec = "";
-              $potential_method_char = "";
-              $in_method_declaration = 0;
-              $_ = $original;
-              s/^[^{]*//;
-            } elsif (/\@end/) {
-              $in_method_declaration = 0;
-              $interface_name = "";
-              $_ = $original;
-            } else {
-              next;
-            }
-        }
-
-
-        # Find function, interface and method names.
-        while (m&((?:[[:word:]]+::)*operator(?:[ \t]*\(\)|[^()]*)|[[:word:]:~]+|[(){}:;=])|\@(?:implementation|interface|protocol)\s+(\w+)[^{]*&g) {
-            # Skip an array definition at the top level.
-            # e.g. static int arr[] = { 1, 2, 3 };
-            if ($1) {
-                if ($1 eq "=" and !$in_parentheses and !$in_braces) {
-                    $equal_observed = 1;
-                } elsif ($1 eq "{" and $equal_observed) {
-                    # This '{' is the beginning of an array definition, not the beginning of a method.
-                    $in_toplevel_array_brace = 1;
-                    $in_braces++;
-                    $equal_observed = 0;
-                    next;
-                } elsif ($1 !~ /[ \t]/) {
-                    $equal_observed = 0;
-                }
-            }
-
-            # interface name
-            if ($2) {
-                $interface_name = $2;
-                next;
-            }
-
-            # Open parenthesis.
-            if ($1 eq "(") {
-                $potential_name = $word unless $in_parentheses || $skip_til_brace_or_semicolon;
-                $in_parentheses++;
-                next;
-            }
-
-            # Close parenthesis.
-            if ($1 eq ")") {
-                $in_parentheses--;
-                next;
-            }
-
-            # C++ constructor initializers
-            if ($1 eq ":") {
-                  $skip_til_brace_or_semicolon = 1 unless ($in_parentheses || $in_braces);
-            }
-
-            # Open brace.
-            if ($1 eq "{") {
-                $skip_til_brace_or_semicolon = 0;
-
-                if (!$in_braces) {
-                    if ($namespace_start >= 0 and $namespace_start < $potential_start) {
-                        push @ranges, [ $namespace_start . "", $potential_start - 1, $name ];
-                    }
-
-                    if ($potential_namespace) {
-                        push @namespaces, $potential_namespace;
-                        $potential_namespace = "";
-                        $name = $namespaces[-1];
-                        $namespace_start = $. + 1;
-                        next;
-                    }
-
-                    # Promote potential name to real function name at the
-                    # start of the outer level set of braces (function body?).
-                    if ($potential_start) {
-                        $start = $potential_start;
-                        $name = $potential_name;
-                        if (@namespaces && $name && (length($name) < 2 || substr($name,1,1) ne "[")) {
-                            $name = join ('::', @namespaces, $name);
-                        }
-                    }
-                }
-
-                $in_method_declaration = 0;
-
-                $brace_start = $. if (!$in_braces);
-                $in_braces++;
-                next;
-            }
-
-            # Close brace.
-            if ($1 eq "}") {
-                if (!$in_braces && @namespaces) {
-                    if ($namespace_start >= 0 and $namespace_start < $.) {
-                        push @ranges, [ $namespace_start . "", $. - 1, $name ];
-                    }
-
-                    pop @namespaces;
-                    if (@namespaces) {
-                        $name = $namespaces[-1];
-                        $namespace_start = $. + 1;
-                    } else {
-                        $name = "";
-                        $namespace_start = -1;
-                    }
-                    next;
-                }
-
-                $in_braces--;
-                $brace_end = $. if (!$in_braces);
-
-                # End of an outer level set of braces.
-                # This could be a function body.
-                if (!$in_braces and $name) {
-                    # This is the end of an array definition at the top level, not the end of a method.
-                    if ($in_toplevel_array_brace) {
-                        $in_toplevel_array_brace = 0;
-                        next;
-                    }
-
-                    push @ranges, [ $start, $., $name ];
-                    if (@namespaces) {
-                        $name = $namespaces[-1];
-                        $namespace_start = $. + 1;
-                    } else {
-                        $name = "";
-                        $namespace_start = -1;
-                    }
-                }
-
-                $potential_start = 0;
-                $potential_name = "";
-                next;
-            }
-
-            # Semicolon.
-            if ($1 eq ";") {
-                $skip_til_brace_or_semicolon = 0;
-                $potential_start = 0;
-                $potential_name = "";
-                $in_method_declaration = 0;
-                next;
-            }
-
-            # Ignore "const" method qualifier.
-            if ($1 eq "const") {
-                next;
-            }
-
-            if ($1 eq "namespace" || $1 eq "class" || $1 eq "struct") {
-                $next_word_could_be_namespace = 1;
-                next;
-            }
-
-            # Word.
-            $word = $1;
-            if (!$skip_til_brace_or_semicolon) {
-                if ($next_word_could_be_namespace) {
-                    $potential_namespace = $word;
-                    $next_word_could_be_namespace = 0;
-                } elsif ($potential_namespace) {
-                    $potential_namespace = "";
-                }
-
-                if (!$in_parentheses) {
-                    $potential_start = 0;
-                    $potential_name = "";
-                }
-                if (!$potential_start) {
-                    $potential_start = $.;
-                    $potential_name = "";
-                }
-            }
-        }
-    }
-
-    warn "missing close braces in $file_name (probable start at $brace_start)\n" if ($in_braces > 0);
-    warn "too many close braces in $file_name (probable start at $brace_end)\n" if ($in_braces < 0);
-
-    warn "mismatched parentheses in $file_name\n" if $in_parentheses;
-
-    return @ranges;
-}
-
-
-
-# Read a file and get all the line ranges of the things that look like Java
-# classes, interfaces and methods.
-#
-# A class or interface name is the word that immediately follows
-# `class' or `interface' when followed by an open curly brace and not
-# a semicolon. It can appear at the top level, or inside another class
-# or interface block, but not inside a function block
-#
-# A class or interface starts at the first character after the first close
-# brace or after the function name and ends at the close brace.
-#
-# A function name is the last word before an open parenthesis before
-# an open brace rather than a semicolon. It can appear at top level or
-# inside a class or interface block, but not inside a function block.
-#
-# A function starts at the first character after the first close
-# brace or after the function name and ends at the close brace.
-#
-# Comment handling is simple-minded but will work for all but pathological cases.
-#
-# Result is a list of triples: [ start_line, end_line, function_name ].
-
-sub get_function_line_ranges_for_java($$)
-{
-    my ($file_handle, $file_name) = @_;
-
-    my @current_scopes;
-
-    my @ranges;
-
-    my $in_comment = 0;
-    my $in_macro = 0;
-    my $in_parentheses = 0;
-    my $in_braces = 0;
-    my $in_non_block_braces = 0;
-    my $class_or_interface_just_seen = 0;
-    my $in_class_declaration = 0;
-
-    my $word = "";
-
-    my $potential_start = 0;
-    my $potential_name = "";
-    my $potential_name_is_class_or_interface = 0;
-
-    my $start = 0;
-    my $name = "";
-    my $current_name_is_class_or_interface = 0;
-
-    while (<$file_handle>) {
-        # Handle continued multi-line comment.
-        if ($in_comment) {
-            next unless s-.*\*/--;
-            $in_comment = 0;
-        }
-
-        # Handle continued macro.
-        if ($in_macro) {
-            $in_macro = 0 unless /\\$/;
-            next;
-        }
-
-        # Handle start of macro (or any preprocessor directive).
-        if (/^\s*\#/) {
-            $in_macro = 1 if /^([^\\]|\\.)*\\$/;
-            next;
-        }
-
-        # Handle comments and quoted text.
-        while (m-(/\*|//|\'|\")-) { # \' and \" keep emacs perl mode happy
-            my $match = $1;
-            if ($match eq "/*") {
-                if (!s-/\*.*?\*/--) {
-                    s-/\*.*--;
-                    $in_comment = 1;
-                }
-            } elsif ($match eq "//") {
-                s-//.*--;
-            } else { # ' or "
-                if (!s-$match([^\\]|\\.)*?$match--) {
-                    warn "mismatched quotes at line $. in $file_name\n";
-                    s-$match.*--;
-                }
-            }
-        }
-
-        # Find function names.
-        while (m-(\w+|[(){};])-g) {
-            # Open parenthesis.
-            if ($1 eq "(") {
-                if (!$in_parentheses) {
-                    $potential_name = $word;
-                    $potential_name_is_class_or_interface = 0;
-                }
-                $in_parentheses++;
-                next;
-            }
-
-            # Close parenthesis.
-            if ($1 eq ")") {
-                $in_parentheses--;
-                next;
-            }
-
-            # Open brace.
-            if ($1 eq "{") {
-                $in_class_declaration = 0;
-
-                # Promote potential name to real function name at the
-                # start of the outer level set of braces (function/class/interface body?).
-                if (!$in_non_block_braces
-                    and (!$in_braces or $current_name_is_class_or_interface)
-                    and $potential_start) {
-                    if ($name) {
-                          push @ranges, [ $start, ($. - 1),
-                                          join ('.', @current_scopes) ];
-                    }
-
-
-                    $current_name_is_class_or_interface = $potential_name_is_class_or_interface;
-
-                    $start = $potential_start;
-                    $name = $potential_name;
-
-                    push (@current_scopes, $name);
-                } else {
-                    $in_non_block_braces++;
-                }
-
-                $potential_name = "";
-                $potential_start = 0;
-
-                $in_braces++;
-                next;
-            }
-
-            # Close brace.
-            if ($1 eq "}") {
-                $in_braces--;
-
-                # End of an outer level set of braces.
-                # This could be a function body.
-                if (!$in_non_block_braces) {
-                    if ($name) {
-                        push @ranges, [ $start, $.,
-                                        join ('.', @current_scopes) ];
-
-                        pop (@current_scopes);
-
-                        if (@current_scopes) {
-                            $current_name_is_class_or_interface = 1;
-
-                            $start = $. + 1;
-                            $name =  $current_scopes[$#current_scopes-1];
-                        } else {
-                            $current_name_is_class_or_interface = 0;
-                            $start = 0;
-                            $name =  "";
-                        }
-                    }
-                } else {
-                    $in_non_block_braces-- if $in_non_block_braces;
-                }
-
-                $potential_start = 0;
-                $potential_name = "";
-                next;
-            }
-
-            # Semicolon.
-            if ($1 eq ";") {
-                $potential_start = 0;
-                $potential_name = "";
-                next;
-            }
-
-            if ($1 eq "class") {
-                $in_class_declaration = 1;
-            }
-            if ($1 eq "class" or (!$in_class_declaration and $1 eq "interface")) {
-                $class_or_interface_just_seen = 1;
-                next;
-            }
-
-            # Word.
-            $word = $1;
-            if (!$in_parentheses) {
-                if ($class_or_interface_just_seen) {
-                    $potential_name = $word;
-                    $potential_start = $.;
-                    $class_or_interface_just_seen = 0;
-                    $potential_name_is_class_or_interface = 1;
-                    next;
-                }
-            }
-            if (!$potential_start) {
-                $potential_start = $.;
-                $potential_name = "";
-            }
-            $class_or_interface_just_seen = 0;
-        }
-    }
-
-    warn "mismatched braces in $file_name\n" if $in_braces;
-    warn "mismatched parentheses in $file_name\n" if $in_parentheses;
-
-    return @ranges;
-}
-
-
-
-# Read a file and get all the line ranges of the things that look like
-# JavaScript functions.
-#
-# A function name is the word that immediately follows `function' when
-# followed by an open curly brace. It can appear at the top level, or
-# inside other functions.
-#
-# An anonymous function name is the identifier chain immediately before
-# an assignment with the equals operator or object notation that has a
-# value starting with `function' followed by an open curly brace.
-#
-# A getter or setter name is the word that immediately follows `get' or
-# `set' when followed by an open curly brace .
-#
-# Comment handling is simple-minded but will work for all but pathological cases.
-#
-# Result is a list of triples: [ start_line, end_line, function_name ].
-
-sub get_function_line_ranges_for_javascript($$)
-{
-    my ($fileHandle, $fileName) = @_;
-
-    my @currentScopes;
-    my @currentIdentifiers;
-    my @currentFunctionNames;
-    my @currentFunctionDepths;
-    my @currentFunctionStartLines;
-
-    my @ranges;
-
-    my $inComment = 0;
-    my $inQuotedText = "";
-    my $parenthesesDepth = 0;
-    my $bracesDepth = 0;
-
-    my $functionJustSeen = 0;
-    my $getterJustSeen = 0;
-    my $setterJustSeen = 0;
-    my $assignmentJustSeen = 0;
-
-    my $word = "";
-
-    while (<$fileHandle>) {
-        # Handle continued multi-line comment.
-        if ($inComment) {
-            next unless s-.*\*/--;
-            $inComment = 0;
-        }
-
-        # Handle continued quoted text.
-        if ($inQuotedText ne "") {
-            next if /\\$/;
-            s-([^\\]|\\.)*?$inQuotedText--;
-            $inQuotedText = "";
-        }
-
-        # Handle comments and quoted text.
-        while (m-(/\*|//|\'|\")-) { # \' and \" keep emacs perl mode happy
-            my $match = $1;
-            if ($match eq '/*') {
-                if (!s-/\*.*?\*/--) {
-                    s-/\*.*--;
-                    $inComment = 1;
-                }
-            } elsif ($match eq '//') {
-                s-//.*--;
-            } else { # ' or "
-                if (!s-$match([^\\]|\\.)*?$match-string_appeared_here-) {
-                    $inQuotedText = $match if /\\$/;
-                    warn "mismatched quotes at line $. in $fileName\n" if $inQuotedText eq "";
-                    s-$match.*--;
-                }
-            }
-        }
-
-        # Find function names.
-        while (m-(\w+|[(){}=:;,])-g) {
-            # Open parenthesis.
-            if ($1 eq '(') {
-                $parenthesesDepth++;
-                next;
-            }
-
-            # Close parenthesis.
-            if ($1 eq ')') {
-                $parenthesesDepth--;
-                next;
-            }
-
-            # Open brace.
-            if ($1 eq '{') {
-                push(@currentScopes, join(".", @currentIdentifiers));
-                @currentIdentifiers = ();
-
-                $bracesDepth++;
-                next;
-            }
-
-            # Close brace.
-            if ($1 eq '}') {
-                $bracesDepth--;
-
-                if (@currentFunctionDepths and $bracesDepth == $currentFunctionDepths[$#currentFunctionDepths]) {
-                    pop(@currentFunctionDepths);
-
-                    my $currentFunction = pop(@currentFunctionNames);
-                    my $start = pop(@currentFunctionStartLines);
-
-                    push(@ranges, [$start, $., $currentFunction]);
-                }
-
-                pop(@currentScopes);
-                @currentIdentifiers = ();
-
-                next;
-            }
-
-            # Semicolon or comma.
-            if ($1 eq ';' or $1 eq ',') {
-                @currentIdentifiers = ();
-                next;
-            }
-
-            # Function.
-            if ($1 eq 'function') {
-                $functionJustSeen = 1;
-
-                if ($assignmentJustSeen) {
-                    my $currentFunction = join('.', (@currentScopes, @currentIdentifiers));
-                    $currentFunction =~ s/\.{2,}/\./g; # Removes consecutive periods.
-
-                    push(@currentFunctionNames, $currentFunction);
-                    push(@currentFunctionDepths, $bracesDepth);
-                    push(@currentFunctionStartLines, $.);
-                }
-
-                next;
-            }
-
-            # Getter prefix.
-            if ($1 eq 'get') {
-                $getterJustSeen = 1;
-                next;
-            }
-
-            # Setter prefix.
-            if ($1 eq 'set') {
-                $setterJustSeen = 1;
-                next;
-            }
-
-            # Assignment operator.
-            if ($1 eq '=' or $1 eq ':') {
-                $assignmentJustSeen = 1;
-                next;
-            }
-
-            next if $parenthesesDepth;
-
-            # Word.
-            $word = $1;
-            $word = "get $word" if $getterJustSeen;
-            $word = "set $word" if $setterJustSeen;
-
-            if (($functionJustSeen and !$assignmentJustSeen) or $getterJustSeen or $setterJustSeen) {
-                push(@currentIdentifiers, $word);
-
-                my $currentFunction = join('.', (@currentScopes, @currentIdentifiers));
-                $currentFunction =~ s/\.{2,}/\./g; # Removes consecutive periods.
-
-                push(@currentFunctionNames, $currentFunction);
-                push(@currentFunctionDepths, $bracesDepth);
-                push(@currentFunctionStartLines, $.);
-            } elsif ($word ne 'if' and $word ne 'for' and $word ne 'do' and $word ne 'while' and $word ne 'which' and $word ne 'var') {
-                push(@currentIdentifiers, $word);
-            }
-
-            $functionJustSeen = 0;
-            $getterJustSeen = 0;
-            $setterJustSeen = 0;
-            $assignmentJustSeen = 0;
-        }
-    }
-
-    warn "mismatched braces in $fileName\n" if $bracesDepth;
-    warn "mismatched parentheses in $fileName\n" if $parenthesesDepth;
-
-    return @ranges;
-}
-
-# Read a file and get all the line ranges of the things that look like Perl functions. Functions
-# start on a line that starts with "sub ", and end on the first line starting with "}" thereafter.
-#
-# Result is a list of triples: [ start_line, end_line, function ].
-
-sub get_function_line_ranges_for_perl($$)
-{
-    my ($fileHandle, $fileName) = @_;
-
-    my @ranges;
-
-    my $currentFunction = "";
-    my $start = 0;
-    my $hereDocumentIdentifier = "";
-
-    while (<$fileHandle>) {
-        chomp;
-        if (!$hereDocumentIdentifier) {
-            if (/^sub\s+([\w_][\w\d_]*)/) {
-                # Skip over forward declarations, which don't contain a brace and end with a semicolon.
-                next if /;\s*$/;
-
-                if ($currentFunction) {
-                    warn "nested functions found at top-level at $fileName:$.\n";
-                    next;
-                }
-                $currentFunction = $1;
-                $start = $.;
-            }
-            if (/<<\s*[\"\']?([\w_][\w_\d]*)/) {
-                # Enter here-document.
-                $hereDocumentIdentifier = $1;
-            }
-            if (index($_, "}") == 0) {
-                next unless $start;
-                push(@ranges, [$start, $., $currentFunction]);
-                $currentFunction = "";
-                $start = 0;
-            }
-        } elsif ($_ eq $hereDocumentIdentifier) {
-            # Escape from here-document.
-            $hereDocumentIdentifier = "";
-        }
-    }
-
-    return @ranges;
-}
-
-# Read a file and get all the line ranges of the things that look like Python classes, methods, or functions.
-#
-# FIXME: Maybe we should use Python's ast module to do the parsing for us?
-#
-# Result is a list of triples: [ start_line, end_line, function ].
-
-sub get_function_line_ranges_for_python($$)
-{
-    my ($fileHandle, $fileName) = @_;
-
-    my @ranges;
-
-    my @scopeStack = ({ line => 0, indent => -1, name => undef });
-    my $lastLine = 0;
-    until ($lastLine) {
-        $_ = <$fileHandle>;
-        unless ($_) {
-            # To pop out all popped scopes, run the loop once more after
-            # we encountered the end of the file.
-            $_ = "pass\n";
-            $.++;
-            $lastLine = 1;
-        }
-        chomp;
-        next unless /^(\s*)([^#].*)$/;
-
-        my $indent = length $1;
-        my $rest = $2;
-        my $scope = $scopeStack[-1];
-
-        if ($indent <= $scope->{indent}) {
-            # Find all the scopes that we have just exited.
-            my $i = 0;
-            for (; $i < @scopeStack; ++$i) {
-                last if $indent <= $scopeStack[$i]->{indent};
-            }
-            my @poppedScopes = splice @scopeStack, $i;
-
-            # For each scope that was just exited, add a range that goes from the start of that
-            # scope to the start of the next nested scope, or to the line just before this one for
-            # the innermost scope.
-            for ($i = 0; $i < @poppedScopes; ++$i) {
-                my $lineAfterEnd = $i + 1 == @poppedScopes ? $. : $poppedScopes[$i + 1]->{line};
-                push @ranges, [$poppedScopes[$i]->{line}, $lineAfterEnd - 1, $poppedScopes[$i]->{name}];
-            }
-            @scopeStack or warn "Popped off last scope at $fileName:$.\n";
-
-            # Set the now-current scope to start at the current line. Any lines within this scope
-            # before this point should already have been added to @ranges.
-            $scope = $scopeStack[-1];
-            $scope->{line} = $.;
-        }
-
-        next unless $rest =~ /(?:class|def)\s+(\w+)/;
-        my $name = $1;
-        my $fullName = $scope->{name} ? join('.', $scope->{name}, $name) : $name;
-        push @scopeStack, { line => $., indent => $indent, name => $fullName };
-
-        if ($scope->{indent} >= 0) {
-            push @ranges, [$scope->{line}, $. - 1, $scope->{name}];
-        }
-    }
-
-    return @ranges;
-}
-
-# Read a file and get all the line ranges of the things that look like CSS selectors.  A selector is
-# anything before an opening brace on a line. A selector starts at the line containing the opening
-# brace and ends at the closing brace.
-#
-# Result is a list of triples: [ start_line, end_line, selector ].
-
-sub get_selector_line_ranges_for_css($$)
-{
-    my ($fileHandle, $fileName) = @_;
-
-    my @ranges;
-
-    my $currentSelector = "";
-    my $start = 0;
-    my $inComment = 0;
-    my $inBrace = 0;
-
-    while (<$fileHandle>) {
-        foreach my $token (split m-(\{|\}|/\*|\*/)-, $_) {
-            if ($token eq "{") {
-                if (!$inComment) {
-                    warn "mismatched brace found in $fileName\n" if $inBrace;
-                    $inBrace = 1;
-                }
-            } elsif ($token eq "}") {
-                if (!$inComment) {
-                    warn "mismatched brace found in $fileName\n" if !$inBrace;
-                    $inBrace = 0;
-                    push(@ranges, [$start, $., $currentSelector]);
-                    $currentSelector = "";
-                    $start = 0;
-                }
-            } elsif ($token eq "/*") {
-                $inComment = 1;
-            } elsif ($token eq "*/") {
-                warn "mismatched comment found in $fileName\n" if !$inComment;
-                $inComment = 0;
-            } else {
-                if (!$inComment and !$inBrace and $token !~ /^[\s\t]*$/) {
-                    $token =~ s/^[\s\t]*|[\s\t]*$//g;
-                    $currentSelector = $token;
-                    $start = $.;
-                }
-            }
-        }
-    }
-
-    return @ranges;
-}
-
-sub processPaths(\@)
-{
-    my ($paths) = @_;
-    return ("." => 1) if (!@{$paths});
-
-    my %result = ();
-
-    for my $file (@{$paths}) {
-        die "can't handle absolute paths like \"$file\"\n" if File::Spec->file_name_is_absolute($file);
-        die "can't handle empty string path\n" if $file eq "";
-        die "can't handle path with single quote in the name like \"$file\"\n" if $file =~ /'/; # ' (keep Xcode syntax highlighting happy)
-
-        my $untouchedFile = $file;
-
-        $file = canonicalizePath($file);
-
-        die "can't handle paths with .. like \"$untouchedFile\"\n" if $file =~ m|/\.\./|;
-
-        $result{$file} = 1;
-    }
-
-    return ("." => 1) if ($result{"."});
-
-    # Remove any paths that also have a parent listed.
-    for my $path (keys %result) {
-        for (my $parent = dirname($path); $parent ne '.'; $parent = dirname($parent)) {
-            if ($result{$parent}) {
-                delete $result{$path};
-                last;
-            }
-        }
-    }
-
-    return %result;
-}
-
-sub diffFromToString($$$)
-{
-    my ($gitCommit, $gitIndex, $mergeBase) = @_;
-
-    return "" if isSVN();
-    return $gitCommit if $gitCommit =~ m/.+\.\..+/;
-    return "\"$gitCommit^\" \"$gitCommit\"" if $gitCommit;
-    return "--cached" if $gitIndex;
-    return $mergeBase if $mergeBase;
-    return "HEAD" if isGit();
-}
-
-sub diffCommand($$$$)
-{
-    my ($paths, $gitCommit, $gitIndex, $mergeBase) = @_;
-
-    my $command;
-    if (isSVN()) {
-        my @escapedPaths = map(escapeSubversionPath($_), @$paths);
-        my $escapedPathsString = "'" . join("' '", @escapedPaths) . "'";
-        $command = SVN . " diff --diff-cmd diff -x -N $escapedPathsString";
-    } elsif (isGit()) {
-        my $pathsString = "'" . join("' '", @$paths) . "'"; 
-        $command = GIT . " diff --no-ext-diff -U0 " . diffFromToString($gitCommit, $gitIndex, $mergeBase);
-        $command .= " -- $pathsString" unless $gitCommit or $mergeBase;
-    }
-
-    return $command;
-}
-
-sub statusCommand($$$$)
-{
-    my ($paths, $gitCommit, $gitIndex, $mergeBase) = @_;
-
-    my $command;
-    if (isSVN()) {
-        my @escapedFiles = map(escapeSubversionPath($_), keys %$paths);
-        my $escapedFilesString = "'" . join("' '", @escapedFiles) . "'";
-        $command = SVN . " stat $escapedFilesString";
-    } elsif (isGit()) {
-        my $filesString = '"' . join('" "', keys %$paths) . '"';
-        $command = GIT . " diff -r --name-status -M -C " . diffFromToString($gitCommit, $gitIndex, $mergeBase);
-        $command .= " -- $filesString" unless $gitCommit;
-    }
-
-    return "$command 2>&1";
-}
-
-sub createPatchCommand($$$$)
-{
-    my ($changedFilesString, $gitCommit, $gitIndex, $mergeBase) = @_;
-
-    my $command;
-    if (isSVN()) {
-        $command = "'$FindBin::Bin/svn-create-patch' $changedFilesString";
-    } elsif (isGit()) {
-        $command = GIT . " diff -M -C " . diffFromToString($gitCommit, $gitIndex, $mergeBase);
-        $command .= " -- $changedFilesString" unless $gitCommit;
-    }
-
-    return $command;
-}
-
-sub diffHeaderFormat()
-{
-    return qr/^Index: (\S+)[\r\n]*$/ if isSVN();
-    return qr/^diff --git a\/.+ b\/(.+)$/ if isGit();
-}
-
-sub findOriginalFileFromSvn($)
-{
-    my ($file) = @_;
-    my $baseUrl;
-    open INFO, SVN . " info . |" or die;
-    while (<INFO>) {
-        if (/^URL: (.+?)[\r\n]*$/) {
-            $baseUrl = $1;
-        }
-    }
-    close INFO;
-    my $sourceFile;
-    my $escapedFile = escapeSubversionPath($file);
-    open INFO, SVN . " info '$escapedFile' |" or die;
-    while (<INFO>) {
-        if (/^Copied From URL: (.+?)[\r\n]*$/) {
-            $sourceFile = File::Spec->abs2rel($1, $baseUrl);
-        }
-    }
-    close INFO;
-    return $sourceFile;
-}
-
-sub determinePropertyChanges($$$)
-{
-    my ($file, $isAdd, $original) = @_;
-
-    my $escapedFile = escapeSubversionPath($file);
-    my %changes;
-    if ($isAdd) {
-        my %addedProperties;
-        my %removedProperties;
-        open PROPLIST, SVN . " proplist '$escapedFile' |" or die;
-        while (<PROPLIST>) {
-            $addedProperties{$1} = 1 if /^  (.+?)[\r\n]*$/ && $1 ne 'svn:mergeinfo';
-        }
-        close PROPLIST;
-        if ($original) {
-            my $escapedOriginal = escapeSubversionPath($original);
-            open PROPLIST, SVN . " proplist '$escapedOriginal' |" or die;
-            while (<PROPLIST>) {
-                next unless /^  (.+?)[\r\n]*$/;
-                my $property = $1;
-                if (exists $addedProperties{$property}) {
-                    delete $addedProperties{$1};
-                } else {
-                    $removedProperties{$1} = 1;
-                }
-            }
-        }
-        $changes{"A"} = [sort keys %addedProperties] if %addedProperties;
-        $changes{"D"} = [sort keys %removedProperties] if %removedProperties;
-    } else {
-        open DIFF, SVN . " diff '$escapedFile' |" or die;
-        while (<DIFF>) {
-            if (/^Property changes on:/) {
-                while (<DIFF>) {
-                    my $operation;
-                    my $property;
-                    if (/^Added: (\S*)/) {
-                        $operation = "A";
-                        $property = $1;
-                    } elsif (/^Modified: (\S*)/) {
-                        $operation = "M";
-                        $property = $1;
-                    } elsif (/^Deleted: (\S*)/) {
-                        $operation = "D";
-                        $property = $1;
-                    } elsif (/^Name: (\S*)/) {
-                        # Older versions of svn just say "Name" instead of the type
-                        # of property change.
-                        $operation = "C";
-                        $property = $1;
-                    }
-                    if ($operation) {
-                        $changes{$operation} = [] unless exists $changes{$operation};
-                        push @{$changes{$operation}}, $property;
-                    }
-                }
-            }
-        }
-        close DIFF;
-    }
-    return \%changes;
-}
-
-sub pluralizeAndList($$@)
-{
-    my ($singular, $plural, @items) = @_;
-
-    return if @items == 0;
-    return "$singular $items[0]" if @items == 1;
-    return "$plural " . join(", ", @items[0 .. $#items - 1]) . " and " . $items[-1];
-}
-
-sub generateFileList(\%$$$)
-{
-    my ($paths, $gitCommit, $gitIndex, $mergeBase) = @_;
-
-    my @changedFiles;
-    my @conflictFiles;
-    my %functionLists;
-    my @addedRegressionTests;
-    print STDERR "  Running status to find changed, added, or removed files.\n";
-    open STAT, "-|", statusCommand($paths, $gitCommit, $gitIndex, $mergeBase) or die "The status failed: $!.\n";
-    while (<STAT>) {
-        my $status;
-        my $propertyStatus;
-        my $propertyChanges;
-        my $original;
-        my $file;
-
-        if (isSVN()) {
-            my $matches;
-            if (isSVNVersion16OrNewer()) {
-                $matches = /^([ ACDMR])([ CM]).{5} (.+?)[\r\n]*$/;
-                $status = $1;
-                $propertyStatus = $2;
-                $file = $3;
-            } else {
-                $matches = /^([ ACDMR])([ CM]).{4} (.+?)[\r\n]*$/;
-                $status = $1;
-                $propertyStatus = $2;
-                $file = $3;
-            }
-            if ($matches) {
-                $file = normalizePath($file);
-                $original = findOriginalFileFromSvn($file) if substr($_, 3, 1) eq "+";
-                my $isAdd = isAddedStatus($status);
-                $propertyChanges = determinePropertyChanges($file, $isAdd, $original) if isModifiedStatus($propertyStatus) || $isAdd;
-            } else {
-                print;  # error output from svn stat
-            }
-        } elsif (isGit()) {
-            if (/^([ADM])\t(.+)$/) {
-                $status = $1;
-                $propertyStatus = " ";  # git doesn't have properties
-                $file = normalizePath($2);
-            } elsif (/^([CR])[0-9]{1,3}\t([^\t]+)\t([^\t\n]+)$/) { # for example: R90%    newfile    oldfile
-                $status = $1;
-                $propertyStatus = " ";
-                $original = normalizePath($2);
-                $file = normalizePath($3);
-            } else {
-                print;  # error output from git diff
-            }
-        }
-
-        next if !$status || isUnmodifiedStatus($status) && isUnmodifiedStatus($propertyStatus);
-
-        $file = makeFilePathRelative($file);
-
-        if (isModifiedStatus($status) || isAddedStatus($status) || isModifiedStatus($propertyStatus)) {
-            my @components = File::Spec->splitdir($file);
-            if ($components[0] eq "LayoutTests") {
-                push @addedRegressionTests, $file
-                    if isAddedStatus($status)
-                       && $file =~ /\.([a-zA-Z]+)$/
-                       && SupportedTestExtensions->{lc($1)}
-                       && $file !~ /-expected(-mismatch)?\.html$/
-                       && !scalar(grep(/^resources$/i, @components))
-                       && !scalar(grep(/^script-tests$/i, @components));
-            }
-            push @changedFiles, $file if $components[$#components] ne changeLogFileName();
-        } elsif (isConflictStatus($status, $gitCommit, $gitIndex) || isConflictStatus($propertyStatus, $gitCommit, $gitIndex)) {
-            push @conflictFiles, $file;
-        }
-        if (basename($file) ne changeLogFileName()) {
-            my $description = statusDescription($status, $propertyStatus, $original, $propertyChanges);
-            $functionLists{$file} = $description if defined $description;
-        }
-    }
-    close STAT;
-    return (\@changedFiles, \@conflictFiles, \%functionLists, \@addedRegressionTests);
-}
-
-sub isUnmodifiedStatus($)
-{
-    my ($status) = @_;
-
-    my %statusCodes = (
-        " " => 1,
-    );
-
-    return $statusCodes{$status};
-}
-
-sub isModifiedStatus($)
-{
-    my ($status) = @_;
-
-    my %statusCodes = (
-        "M" => 1,
-    );
-
-    return $statusCodes{$status};
-}
-
-sub isAddedStatus($)
-{
-    my ($status) = @_;
-
-    my %statusCodes = (
-        "A" => 1,
-        "C" => isGit(),
-        "R" => 1,
-    );
-
-    return $statusCodes{$status};
-}
-
-sub isConflictStatus($$$)
-{
-    my ($status, $gitCommit, $gitIndex) = @_;
-
-    my %svn = (
-        "C" => 1,
-    );
-
-    my %git = (
-        "U" => 1,
-    );
-
-    return 0 if ($gitCommit || $gitIndex); # an existing commit or staged change cannot have conflicts
-    return $svn{$status} if isSVN();
-    return $git{$status} if isGit();
-}
-
-sub statusDescription($$$$)
-{
-    my ($status, $propertyStatus, $original, $propertyChanges) = @_;
-
-    my $propertyDescription = defined $propertyChanges ? propertyChangeDescription($propertyChanges) : "";
-
-    my %svn = (
-        "A" => defined $original ? " Copied from \%s." : " Added.",
-        "D" => " Removed.",
-        "M" => "",
-        "R" => defined $original ? " Replaced with \%s." : " Replaced.",
-        " " => "",
-    );
-
-    my %git = %svn;
-    $git{"A"} = " Added.";
-    $git{"C"} = " Copied from \%s.";
-    $git{"R"} = " Renamed from \%s.";
-
-    my $description;
-    $description = sprintf($svn{$status}, $original) if isSVN() && exists $svn{$status};
-    $description = sprintf($git{$status}, $original) if isGit() && exists $git{$status};
-    return unless defined $description;
-
-    $description .= $propertyDescription unless isAddedStatus($status);
-    return $description;
-}
-
-sub propertyChangeDescription($)
-{
-    my ($propertyChanges) = @_;
-
-    my %operations = (
-        "A" => "Added",
-        "M" => "Modified",
-        "D" => "Removed",
-        "C" => "Changed",
-    );
-
-    my $description = "";
-    while (my ($operation, $properties) = each %$propertyChanges) {
-        my $word = $operations{$operation};
-        my $list = pluralizeAndList("property", "properties", @$properties);
-        $description .= " $word $list.";
-    }
-    return $description;
-}
-
-sub extractLineRange($)
-{
-    my ($string) = @_;
-
-    my ($start, $end) = (-1, -1);
-
-    if (isSVN() && $string =~ /^\d+(,\d+)?[acd](\d+)(,(\d+))?/) {
-        $start = $2;
-        $end = $4 || $2;
-    } elsif (isGit() && $string =~ /^@@ -\d+(,\d+)? \+(\d+)(,(\d+))? @@/) {
-        $start = $2;
-        $end = defined($4) ? $4 + $2 - 1 : $2;
-    }
-
-    return ($start, $end);
-}
-
-sub testListForChangeLog(@)
-{
-    my (@tests) = @_;
-
-    return "" unless @tests;
-
-    my $leadString = "        Test" . (@tests == 1 ? "" : "s") . ": ";
-    my $list = $leadString;
-    foreach my $i (0..$#tests) {
-        $list .= " " x length($leadString) if $i;
-        my $test = $tests[$i];
-        $test =~ s/^LayoutTests\///;
-        $list .= "$test\n";
-    }
-    $list .= "\n";
-
-    return $list;
-}
-
-sub reviewerAndDescriptionForGitCommit($$)
-{
-    my ($commit, $gitReviewer) = @_;
-
-    my $description = '';
-    my $reviewer;
-
-    my @args = qw(rev-list --pretty);
-    push @args, '-1' if $commit !~ m/.+\.\..+/;
-    my $gitLog;
-    {
-        local $/ = undef;
-        open(GITLOG, "-|", GIT, @args, $commit) || die;
-        $gitLog = <GITLOG>;
-        close(GITLOG);
-    }
-
-    my @commitLogs = split(/^[Cc]ommit [a-f0-9]{40}/m, $gitLog);
-    shift @commitLogs; # Remove initial blank commit log
-    my $commitLogCount = 0;
-    foreach my $commitLog (@commitLogs) {
-        $description .= "\n" if $commitLogCount;
-        $commitLogCount++;
-        my $inHeader = 1;
-        my $commitLogIndent; 
-        my @lines = split(/\n/, $commitLog);
-        shift @lines; # Remove initial blank line
-        foreach my $line (@lines) {
-            if ($inHeader) {
-                if (!$line) {
-                    $inHeader = 0;
-                }
-                next;
-            } elsif ($line =~ /[Ss]igned-[Oo]ff-[Bb]y: (.+)/) {
-                if (!$reviewer) {
-                    $reviewer = $1;
-                } else {
-                    $reviewer .= ", " . $1;
-                }
-            } elsif ($line =~ /^\s*$/) {
-                $description = $description . "\n";
-            } else {
-                if (!defined($commitLogIndent)) {
-                    # Let the first line with non-white space determine
-                    # the global indent.
-                    $line =~ /^(\s*)\S/;
-                    $commitLogIndent = length($1);
-                }
-                # Strip at most the indent to preserve relative indents.
-                $line =~ s/^\s{0,$commitLogIndent}//;
-                $description = $description . (" " x 8) . $line . "\n";
-            }
-        }
-    }
-    if (!$reviewer) {
-      $reviewer = $gitReviewer;
-    }
-
-    return ($reviewer, $description);
-}
-
-sub normalizeLineEndings($$)
-{
-    my ($string, $endl) = @_;
-    $string =~ s/\r?\n/$endl/g;
-    return $string;
-}
-
-sub decodeEntities($)
-{
-    my ($text) = @_;
-    $text =~ s/\&lt;/</g;
-    $text =~ s/\&gt;/>/g;
-    $text =~ s/\&quot;/\"/g;
-    $text =~ s/\&apos;/\'/g;
-    $text =~ s/\&amp;/\&/g;
-    return $text;
-}
diff --git a/Tools/Scripts/print-msvc-project-dependencies b/Tools/Scripts/print-msvc-project-dependencies
deleted file mode 100755
index dbc8402..0000000
--- a/Tools/Scripts/print-msvc-project-dependencies
+++ /dev/null
@@ -1,143 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2008 Apple Inc. All Rights Reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
-# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-use strict;
-use File::Basename;
-
-sub printDependencyTree($);
-
-my $basename = basename($0);
-@ARGV or die "Usage: $basename sln1 [sln2 sln3...]";
-
-foreach my $sln (@ARGV) {
-    printDependencyTree($sln);
-}
-
-exit;
-
-sub printDependencyTree($)
-{
-    my ($sln) = @_;
-
-    unless (-f $sln) {
-        warn "Warning: Can't find $sln; skipping\n";
-        return;
-    }
-
-    unless (open SLN, "<", $sln) {
-        warn "Warning: Can't open $sln; skipping\n";
-        return;
-    }
-
-    my %projectsByUUID = ();
-    my $currentProject;
-
-    my $state = "initial";
-    foreach my $line (<SLN>) {
-        if ($state eq "initial") {
-            if ($line =~ /^Project\([^\)]+\) = "([^"]+)", "[^"]+", "([^"]+)"\r?$/) {
-                my $name = $1;
-                my $uuid = $2;
-                if (exists $projectsByUUID{$uuid}) {
-                    warn "Warning: Project $name appears more than once in $sln; using first definition\n";
-                    next;
-                }
-                $currentProject = {
-                    name => $name,
-                    uuid => $uuid,
-                    dependencies => {},
-                };
-                $projectsByUUID{$uuid} = $currentProject;
-
-                $state = "inProject";
-            }
-
-            next;
-        }
-
-        if ($state eq "inProject") {
-            defined($currentProject) or die;
-
-            if ($line =~ /^\s*ProjectSection\(ProjectDependencies\) = postProject\r?$/) {
-                $state = "inDependencies";
-            } elsif ($line =~ /^EndProject\r?$/) {
-                $currentProject = undef;
-                $state = "initial";
-            }
-
-            next;
-        }
-
-        if ($state eq "inDependencies") {
-            defined($currentProject) or die;
-
-            if ($line =~ /^\s*({[^}]+}) = ({[^}]+})\r?$/) {
-                my $uuid1 = $1;
-                my $uuid2 = $2;
-                if (exists $currentProject->{dependencies}->{$uuid1}) {
-                    warn "Warning: UUID $uuid1 listed more than once as dependency of project ", $currentProject->{name}, "\n";
-                    next;
-                }
-
-                $uuid1 eq $uuid2 or warn "Warning: UUIDs in depedency section of project ", $currentProject->{name}, " don't match: $uuid1 $uuid2; using first UUID\n";
-
-                $currentProject->{dependencies}->{$uuid1} = 1;
-            } elsif ($line =~ /^\s*EndProjectSection\r?$/) {
-                $state = "inProject";
-            }
-
-            next;
-        }
-    }
-
-    close SLN or warn "Warning: Can't close $sln\n";
-
-    my %projectsNotDependedUpon = %projectsByUUID;
-    CANDIDATE: foreach my $candidateUUID (keys %projectsByUUID) {
-        foreach my $projectUUID (keys %projectsByUUID) {
-            next if $candidateUUID eq $projectUUID;
-            foreach my $dependencyUUID (keys %{$projectsByUUID{$projectUUID}->{dependencies}}) {
-                if ($candidateUUID eq $dependencyUUID) {
-                    delete $projectsNotDependedUpon{$candidateUUID};
-                    next CANDIDATE;
-                }
-            }
-        }
-    }
-
-    foreach my $project (values %projectsNotDependedUpon) {
-        printProjectAndDependencies($project, 0, \%projectsByUUID);
-    }
-}
-
-sub printProjectAndDependencies
-{
-    my ($project, $indentLevel, $projectsByUUID) = @_;
-
-    print " " x $indentLevel, $project->{name}, "\n";
-    foreach my $dependencyUUID (keys %{$project->{dependencies}}) {
-        printProjectAndDependencies($projectsByUUID->{$dependencyUUID}, $indentLevel + 1, $projectsByUUID);
-    }
-}
diff --git a/Tools/Scripts/print-vse-failure-logs b/Tools/Scripts/print-vse-failure-logs
deleted file mode 100755
index 7580465..0000000
--- a/Tools/Scripts/print-vse-failure-logs
+++ /dev/null
@@ -1,113 +0,0 @@
-#!/usr/bin/env python
-# Copyright (c) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-# 
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-# 
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#
-# This is a very simple script designed to crawl the build directory
-# for visual studio express build logs and print them to stdout.
-
-from __future__ import with_statement
-
-import codecs
-import os
-import re
-
-from webkitpy.common.checkout import scm
-from webkitpy.common.system.executive import Executive
-from webkitpy.thirdparty import BeautifulSoup
-
-
-class PrintVisualStudioExpressLogs(object):
-    def __init__(self):
-        self._executive = Executive()
-
-    def _find_buildlogs(self, build_directory):
-        build_log_paths = []
-        for dirpath, dirnames, filenames in os.walk(build_directory):
-            for file_name in filenames:
-                if file_name == "BuildLog.htm":
-                    file_path = os.path.join(dirpath, file_name)
-                    build_log_paths.append(file_path)
-        return build_log_paths
-
-    def _build_order(self):
-        """Returns a list of project names in the order in which they are built."""
-        script_path = os.path.join(self._scripts_directory(), "print-msvc-project-dependencies")
-        sln_path = os.path.join(scm.find_checkout_root(), "WebKit", "win", "WebKit.vcproj", "WebKit.sln")
-        lines = self._executive.run_command([script_path, sln_path]).splitlines()
-        order = [line.strip() for line in lines if line.find("Folder") == -1]
-        order.reverse()
-        return order
-
-    def _sort_buildlogs(self, log_paths):
-        build_order = self._build_order()
-        def sort_key(log_path):
-            project_name = os.path.basename(os.path.dirname(os.path.dirname(log_path)))
-            try:
-                index = build_order.index(project_name)
-            except ValueError:
-                # If the project isn't in the list, sort it after all items that
-                # are in the list.
-                index = len(build_order)
-            # Sort first by build order, then by project name
-            return (index, project_name)
-        return sorted(log_paths, key=sort_key)
-
-    def _obj_directory(self):
-        build_directory_script_path = os.path.join(self._scripts_directory(), "webkit-build-directory")
-        # FIXME: ports/webkit.py should provide the build directory in a nice API.
-        # NOTE: The windows VSE build does not seem to use different directories
-        # for Debug and Release.
-        build_directory = self._executive.run_command([build_directory_script_path, "--top-level"]).rstrip()
-        return os.path.join(build_directory, "obj")
-
-    def _scripts_directory(self):
-        return os.path.dirname(__file__)
-
-    def _relevant_text(self, log):
-        soup = BeautifulSoup.BeautifulSoup(log)
-        # The Output Window table is where the useful output starts in the build log.
-        output_window_table = soup.find(text=re.compile("Output Window")).findParent("table")
-        result = []
-        for table in [output_window_table] + output_window_table.findNextSiblings("table"):
-            result.extend([text.replace("&nbsp;", "") for text in table.findAll(text=True)])
-            result.append("\n")
-        return "".join(result)
-
-    def main(self):
-        build_log_paths = self._sort_buildlogs(self._find_buildlogs(self._obj_directory()))
-
-        print "Found %s Visual Studio Express Build Logs:\n%s" % (len(build_log_paths), "\n".join(build_log_paths))
-
-        for build_log_path in build_log_paths:
-            print "%s:\n" % build_log_path
-            with codecs.open(build_log_path, "r", "utf-16") as build_log:
-                print self._relevant_text(build_log)
-
-
-if __name__ == '__main__':
-    PrintVisualStudioExpressLogs().main()
diff --git a/Tools/Scripts/resolve-ChangeLogs b/Tools/Scripts/resolve-ChangeLogs
deleted file mode 100755
index 2206828..0000000
--- a/Tools/Scripts/resolve-ChangeLogs
+++ /dev/null
@@ -1,496 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2007, 2008, 2009 Apple Inc.  All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Merge and resolve ChangeLog conflicts for svn and git repositories
-
-use strict;
-
-use FindBin;
-use lib $FindBin::Bin;
-
-use File::Basename;
-use File::Copy;
-use File::Path;
-use File::Spec;
-use Getopt::Long;
-use POSIX;
-use VCSUtils;
-
-sub canonicalRelativePath($);
-sub conflictFiles($);
-sub findChangeLog($);
-sub findUnmergedChangeLogs();
-sub fixMergedChangeLogs($;@);
-sub fixOneMergedChangeLog($);
-sub hasGitUnmergedFiles();
-sub isInGitFilterBranch();
-sub parseFixMerged($$;$);
-sub removeChangeLogArguments($);
-sub resolveChangeLog($);
-sub resolveConflict($);
-sub showStatus($;$);
-sub usageAndExit();
-
-my $isGit = isGit();
-my $isSVN = isSVN();
-
-my $SVN = "svn";
-my $GIT = "git";
-
-my $fixMerged;
-my $gitRebaseContinue = 0;
-my $mergeDriver = 0;
-my $printWarnings = 1;
-my $showHelp;
-
-sub usageAndExit()
-{
-    print STDERR <<__END__;
-Usage: @{[ basename($0) ]} [options] [path/to/ChangeLog] [path/to/another/ChangeLog ...]
-  -c|--[no-]continue               run "git rebase --continue" after fixing ChangeLog
-                                   entries (default: --no-continue)
-  -f|--fix-merged [revision-range] fix git-merged ChangeLog entries; if a revision-range
-                                   is specified, run git filter-branch on the range
-  -m|--merge-driver %O %A %B       act as a git merge-driver on files %O %A %B
-  -h|--help                        show this help message
-  -w|--[no-]warnings               show or suppress warnings (default: show warnings)
-__END__
-    exit 1;
-}
-
-my $getOptionsResult = GetOptions(
-    'c|continue!'     => \$gitRebaseContinue,
-    'f|fix-merged:s'  => \&parseFixMerged,
-    'm|merge-driver!' => \$mergeDriver,
-    'h|help'          => \$showHelp,
-    'w|warnings!'     => \$printWarnings,
-);
-
-if (!$getOptionsResult || $showHelp) {
-    usageAndExit();
-}
-
-my $relativePath = isInGitFilterBranch() ? '.' : chdirReturningRelativePath(determineVCSRoot());
-
-my @changeLogFiles = removeChangeLogArguments($relativePath);
-
-if (!defined $fixMerged && !$mergeDriver && scalar(@changeLogFiles) == 0) {
-    @changeLogFiles = findUnmergedChangeLogs();
-}
-
-if (!$mergeDriver && scalar(@ARGV) > 0) {
-    print STDERR "ERROR: Files listed on command-line that are not ChangeLogs.\n";
-    undef $getOptionsResult;
-} elsif (!defined $fixMerged && !$mergeDriver && scalar(@changeLogFiles) == 0) {
-    print STDERR "ERROR: No ChangeLog files listed on command-line or found unmerged.\n";
-    undef $getOptionsResult;
-} elsif ($gitRebaseContinue && !$isGit) {
-    print STDERR "ERROR: --continue may only be used with a git repository\n";
-    undef $getOptionsResult;
-} elsif (defined $fixMerged && !$isGit) {
-    print STDERR "ERROR: --fix-merged may only be used with a git repository\n";
-    undef $getOptionsResult;
-} elsif ($mergeDriver && !$isGit) {
-    print STDERR "ERROR: --merge-driver may only be used with a git repository\n";
-    undef $getOptionsResult;
-} elsif ($mergeDriver && scalar(@ARGV) < 3) {
-    print STDERR "ERROR: --merge-driver expects %O %A %B as arguments\n";
-    undef $getOptionsResult;
-}
-
-if (!$getOptionsResult) {
-    usageAndExit();
-}
-
-if (defined $fixMerged && length($fixMerged) > 0) {
-    my $commitRange = $fixMerged;
-    $commitRange = $commitRange . "..HEAD" if index($commitRange, "..") < 0;
-    fixMergedChangeLogs($commitRange, @changeLogFiles);
-} elsif ($mergeDriver) {
-    my ($base, $theirs, $ours) = @ARGV;
-    if (mergeChangeLogs($ours, $base, $theirs)) {
-        unlink($ours);
-        copy($theirs, $ours) or die $!;
-    } else {
-        exec qw(git merge-file -L THEIRS -L BASE -L OURS), $theirs, $base, $ours;
-    }
-} elsif (@changeLogFiles) {
-    for my $file (@changeLogFiles) {
-        if (defined $fixMerged) {
-            fixOneMergedChangeLog($file);
-        } else {
-            resolveChangeLog($file);
-        }
-    }
-} else {
-    print STDERR "ERROR: Unknown combination of switches and arguments.\n";
-    usageAndExit();
-}
-
-if ($gitRebaseContinue) {
-    if (hasGitUnmergedFiles()) {
-        print "Unmerged files; skipping '$GIT rebase --continue'.\n";
-    } else {
-        print "Running '$GIT rebase --continue'...\n";
-        print `$GIT rebase --continue`;
-    }
-}
-
-exit 0;
-
-sub canonicalRelativePath($)
-{
-    my ($originalPath) = @_;
-    my $absolutePath = Cwd::abs_path($originalPath);
-    return File::Spec->abs2rel($absolutePath, Cwd::getcwd());
-}
-
-sub conflictFiles($)
-{
-    my ($file) = @_;
-    my $fileMine;
-    my $fileOlder;
-    my $fileNewer;
-
-    if (-e $file && -e "$file.orig" && -e "$file.rej") {
-        return ("$file.rej", "$file.orig", $file);
-    }
-
-    if ($isSVN) {
-        my $escapedFile = escapeSubversionPath($file);
-        open STAT, "-|", $SVN, "status", $escapedFile or die $!;
-        my $status = <STAT>;
-        close STAT;
-        if (!$status || $status !~ m/^C\s+/) {
-            print STDERR "WARNING: ${file} is not in a conflicted state.\n" if $printWarnings;
-            return ();
-        }
-
-        $fileMine = "${file}.mine" if -e "${file}.mine";
-
-        my $currentRevision;
-        open INFO, "-|", $SVN, "info", $escapedFile or die $!;
-        while (my $line = <INFO>) {
-            if ($line =~ m/^Revision: ([0-9]+)/) {
-                $currentRevision = $1;
-                { local $/ = undef; <INFO>; }  # Consume rest of input.
-            }
-        }
-        close INFO;
-        $fileNewer = "${file}.r${currentRevision}" if -e "${file}.r${currentRevision}";
-
-        my @matchingFiles = grep { $_ ne $fileNewer } glob("${file}.r[0-9][0-9]*");
-        if (scalar(@matchingFiles) > 1) {
-            print STDERR "WARNING: Too many conflict files exist for ${file}!\n" if $printWarnings;
-        } else {
-            $fileOlder = shift @matchingFiles;
-        }
-    } elsif ($isGit) {
-        my $gitPrefix = `$GIT rev-parse --show-prefix`;
-        chomp $gitPrefix;
-        open GIT, "-|", $GIT, "ls-files", "--unmerged", $file or die $!;
-        while (my $line = <GIT>) {
-            my ($mode, $hash, $stage, $fileName) = split(' ', $line);
-            my $outputFile;
-            if ($stage == 1) {
-                $fileOlder = "${file}.BASE.$$";
-                $outputFile = $fileOlder;
-            } elsif ($stage == 2) {
-                $fileNewer = "${file}.LOCAL.$$";
-                $outputFile = $fileNewer;
-            } elsif ($stage == 3) {
-                $fileMine = "${file}.REMOTE.$$";
-                $outputFile = $fileMine;
-            } else {
-                die "Unknown file stage: $stage";
-            }
-            system("$GIT cat-file blob :${stage}:${gitPrefix}${file} > $outputFile");
-            die $! if WEXITSTATUS($?);
-        }
-        close GIT or die $!;
-    } else {
-        die "Unknown version control system";
-    }
-
-    if (!$fileMine && !$fileOlder && !$fileNewer) {
-        print STDERR "WARNING: ${file} does not need merging.\n" if $printWarnings;
-    } elsif (!$fileMine || !$fileOlder || !$fileNewer) {
-        print STDERR "WARNING: ${file} is missing some conflict files.\n" if $printWarnings;
-    }
-
-    return ($fileMine, $fileOlder, $fileNewer);
-}
-
-sub findChangeLog($)
-{
-    my $changeLogFileName = changeLogFileName();
-    return $_[0] if basename($_[0]) eq $changeLogFileName;
-
-    my $file = File::Spec->catfile($_[0], $changeLogFileName);
-    return $file if -d $_[0] and -e $file;
-
-    return undef;
-}
-
-sub findUnmergedChangeLogs()
-{
-    my $statCommand = "";
-
-    if ($isSVN) {
-        $statCommand = "$SVN stat | grep '^C'";
-    } elsif ($isGit) {
-        $statCommand = "$GIT diff -r --name-status --diff-filter=U -C -C -M";
-    } else {
-        return ();
-    }
-
-    my @results = ();
-    open STAT, "-|", $statCommand or die "The status failed: $!.\n";
-    while (<STAT>) {
-        if ($isSVN) {
-            my $matches;
-            my $file;
-            if (isSVNVersion16OrNewer()) {
-                $matches = /^([C]).{6} (.+?)[\r\n]*$/;
-                $file = $2;
-            } else {
-                $matches = /^([C]).{5} (.+?)[\r\n]*$/;
-                $file = $2;
-            }
-            if ($matches) {
-                $file = findChangeLog(normalizePath($file));
-                push @results, $file if $file;
-            } else {
-                print;  # error output from svn stat
-            }
-        } elsif ($isGit) {
-            if (/^([U])\t(.+)$/) {
-                my $file = findChangeLog(normalizePath($2));
-                push @results, $file if $file;
-            } else {
-                print;  # error output from git diff
-            }
-        }
-    }
-    close STAT;
-
-    return @results;
-}
-
-sub fixMergedChangeLogs($;@)
-{
-    my $revisionRange = shift;
-    my @changedFiles = @_;
-
-    if (scalar(@changedFiles) < 1) {
-        # Read in list of files changed in $revisionRange
-        open GIT, "-|", $GIT, "diff", "--name-only", $revisionRange or die $!;
-        push @changedFiles, <GIT>;
-        close GIT or die $!;
-        die "No changed files in $revisionRange" if scalar(@changedFiles) < 1;
-        chomp @changedFiles;
-    }
-
-    my @changeLogs = grep { defined $_ } map { findChangeLog($_) } @changedFiles;
-    die "No changed ChangeLog files in $revisionRange" if scalar(@changeLogs) < 1;
-
-    system("$GIT filter-branch --tree-filter 'PREVIOUS_COMMIT=\`$GIT rev-parse \$GIT_COMMIT^\` && MAPPED_PREVIOUS_COMMIT=\`map \$PREVIOUS_COMMIT\` \"$0\" -f \"" . join('" "', @changeLogs) . "\"' $revisionRange");
-
-    # On success, remove the backup refs directory
-    if (WEXITSTATUS($?) == 0) {
-        rmtree(qw(.git/refs/original));
-    }
-}
-
-sub fixOneMergedChangeLog($)
-{
-    my $file = shift;
-    my $patch;
-
-    # Read in patch for incorrectly merged ChangeLog entry
-    {
-        local $/ = undef;
-        open GIT, "-|", $GIT, "diff", ($ENV{GIT_COMMIT} || "HEAD") . "^", $file or die $!;
-        $patch = <GIT>;
-        close GIT or die $!;
-    }
-
-    # Always checkout the previous commit's copy of the ChangeLog
-    system($GIT, "checkout", $ENV{MAPPED_PREVIOUS_COMMIT} || "HEAD^", $file);
-    die $! if WEXITSTATUS($?);
-
-    # The patch must have 0 or more lines of context, then 1 or more lines
-    # of additions, and then 1 or more lines of context.  If not, we skip it.
-    if ($patch =~ /\n@@ -(\d+),(\d+) \+(\d+),(\d+) @@\n( .*\n)*((\+.*\n)+)( .*\n)+$/m) {
-        # Copy the header from the original patch.
-        my $newPatch = substr($patch, 0, index($patch, "@@ -${1},${2} +${3},${4} @@"));
-
-        # Generate a new set of line numbers and patch lengths.  Our new
-        # patch will start with the lines for the fixed ChangeLog entry,
-        # then have 3 lines of context from the top of the current file to
-        # make the patch apply cleanly.
-        $newPatch .= "@@ -1,3 +1," . ($4 - $2 + 3) . " @@\n";
-
-        # We assume that top few lines of the ChangeLog entry are actually
-        # at the bottom of the list of added lines (due to the way the patch
-        # algorithm works), so we simply search through the lines until we
-        # find the date line, then move the rest of the lines to the top.
-        my @patchLines = map { $_ . "\n" } split(/\n/, $6);
-        foreach my $i (0 .. $#patchLines) {
-            if ($patchLines[$i] =~ /^\+\d{4}-\d{2}-\d{2}  /) {
-                unshift(@patchLines, splice(@patchLines, $i, scalar(@patchLines) - $i));
-                last;
-            }
-        }
-
-        $newPatch .= join("", @patchLines);
-
-        # Add 3 lines of context to the end
-        open FILE, "<", $file or die $!;
-        for (my $i = 0; $i < 3; $i++) {
-            $newPatch .= " " . <FILE>;
-        }
-        close FILE;
-
-        # Apply the new patch
-        open(PATCH, "| patch -p1 $file > " . File::Spec->devnull()) or die $!;
-        print PATCH $newPatch;
-        close(PATCH) or die $!;
-
-        # Run "git add" on the fixed ChangeLog file
-        system($GIT, "add", $file);
-        die $! if WEXITSTATUS($?);
-
-        showStatus($file, 1);
-    } elsif ($patch) {
-        # Restore the current copy of the ChangeLog file since we can't repatch it
-        system($GIT, "checkout", $ENV{GIT_COMMIT} || "HEAD", $file);
-        die $! if WEXITSTATUS($?);
-        print STDERR "WARNING: Last change to ${file} could not be fixed and re-merged.\n" if $printWarnings;
-    }
-}
-
-sub hasGitUnmergedFiles()
-{
-    my $output = `$GIT ls-files --unmerged`;
-    return $output ne "";
-}
-
-sub isInGitFilterBranch()
-{
-    return exists $ENV{MAPPED_PREVIOUS_COMMIT} && $ENV{MAPPED_PREVIOUS_COMMIT};
-}
-
-sub parseFixMerged($$;$)
-{
-    my ($switchName, $key, $value) = @_;
-    if (defined $key) {
-        if (defined findChangeLog($key)) {
-            unshift(@ARGV, $key);
-            $fixMerged = "";
-        } else {
-            $fixMerged = $key;
-        }
-    } else {
-        $fixMerged = "";
-    }
-}
-
-sub removeChangeLogArguments($)
-{
-    my ($baseDir) = @_;
-    my @results = ();
-
-    for (my $i = 0; $i < scalar(@ARGV); ) {
-        my $file = findChangeLog(canonicalRelativePath(File::Spec->catfile($baseDir, $ARGV[$i])));
-        if (defined $file) {
-            splice(@ARGV, $i, 1);
-            push @results, $file;
-        } else {
-            $i++;
-        }
-    }
-
-    return @results;
-}
-
-sub resolveChangeLog($)
-{
-    my ($file) = @_;
-
-    my ($fileMine, $fileOlder, $fileNewer) = conflictFiles($file);
-
-    return unless $fileMine && $fileOlder && $fileNewer;
-
-    if (mergeChangeLogs($fileMine, $fileOlder, $fileNewer)) {
-        if ($file ne $fileNewer) {
-            unlink($file);
-            rename($fileNewer, $file) or die $!;
-        }
-        unlink($fileMine, $fileOlder);
-        resolveConflict($file);
-        showStatus($file, 1);
-    } else {
-        showStatus($file);
-        print STDERR "WARNING: ${file} could not be merged using fuzz level 3.\n" if $printWarnings;
-        unlink($fileMine, $fileOlder, $fileNewer) if $isGit;
-    }
-}
-
-sub resolveConflict($)
-{
-    my ($file) = @_;
-
-    if ($isSVN) {
-        my $escapedFile = escapeSubversionPath($file);
-        system($SVN, "resolved", $escapedFile);
-        die $! if WEXITSTATUS($?);
-    } elsif ($isGit) {
-        system($GIT, "add", $file);
-        die $! if WEXITSTATUS($?);
-    } else {
-        die "Unknown version control system";
-    }
-}
-
-sub showStatus($;$)
-{
-    my ($file, $isConflictResolved) = @_;
-
-    if ($isSVN) {
-        my $escapedFile = escapeSubversionPath($file);
-        system($SVN, "status", $escapedFile);
-    } elsif ($isGit) {
-        my @args = qw(--name-status);
-        unshift @args, qw(--cached) if $isConflictResolved;
-        system($GIT, "diff", @args, $file);
-    } else {
-        die "Unknown version control system";
-    }
-}
-
diff --git a/Tools/Scripts/roll-over-ChangeLogs b/Tools/Scripts/roll-over-ChangeLogs
deleted file mode 100755
index 7e6d32f..0000000
--- a/Tools/Scripts/roll-over-ChangeLogs
+++ /dev/null
@@ -1,47 +0,0 @@
-#!/usr/bin/env ruby
-
-# Copyright (C) 2009 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
-# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-
-
-require 'date'
-
-CHANGELOG_SIZE_THRESHOLD = 750 * 1024
-
-scripts_directory = File.dirname(__FILE__)
-base_directory = File.expand_path(ARGV[0] || `perl -I#{scripts_directory} -Mwebkitdirs -e 'print sourceDir();'`)
-
-date_suffix = Date.today.strftime("-%Y-%m-%d")
-
-Dir.chdir base_directory
-`find . -type f -name 'ChangeLog'`.split.each do |path|
-    next unless File.stat(path).size > CHANGELOG_SIZE_THRESHOLD
-
-    old_path = "#{path}#{date_suffix}"
-    puts "Moving #{path} to #{old_path}..."
-    system "git", "mv", path, old_path
-    File.open path, "w" do |file|
-        file.write "== Rolled over to ChangeLog#{date_suffix} ==\n"
-    end
-    system "git", "add", path
-end
diff --git a/Tools/Scripts/run-api-tests b/Tools/Scripts/run-api-tests
deleted file mode 100755
index 18eb17c..0000000
--- a/Tools/Scripts/run-api-tests
+++ /dev/null
@@ -1,352 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2010, 2011, 2012 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
-# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
-# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-# THE POSSIBILITY OF SUCH DAMAGE.
-
-use strict;
-use warnings;
-
-use File::Basename;
-use FindBin;
-use Getopt::Long qw(:config pass_through);
-use IPC::Open3;
-use lib $FindBin::Bin;
-use webkitdirs;
-use VCSUtils;
-
-sub buildTestTool();
-sub dumpTestsBySuite(\@);
-sub listAllTests();
-sub runTest($$$);
-sub runTestsBySuite(\@$);
-sub prepareEnvironmentForRunningTestTool();
-sub testToolPath();
-
-# Defined in VCSUtils.
-sub possiblyColored($$);
-
-# Timeout for individual test, in sec
-my $timeout = 10;
-
-my $showHelp = 0;
-my $verbose = 0;
-my $dumpTests = 0;
-my $build = 1;
-my $root;
-my $buildDefault = $build ? "build" : "do not build";
-my @testsFailed;
-my @testsTimedOut;
-
-my $programName = basename($0);
-my $usage = <<EOF;
-Usage: $programName [options] [suite or test prefixes]
-  --help                Show this help message
-  -v|--verbose          Verbose output
-  -d|--dump-tests       Dump the names of testcases without running them
-  --[no-]build          Build (or do not build) unit tests prior to running (default: $buildDefault)
-  --root=               Path to the pre-built root containing TestWebKitAPI
-  --chromium            Run the Chromium port on Mac/Win/Linux
-EOF
-
-GetOptions(
-    'help' => \$showHelp,
-    'verbose|v' => \$verbose,
-    'dump|d' => \$dumpTests,
-    'build!' => \$build,
-    'root=s' => \$root
-);
-
-if ($showHelp) {
-   print STDERR $usage;
-   exit 1;
-}
-
-setConfiguration();
-
-# When running TestWebKitAPI for Chromium on Android, defer to the test runner in
-# Chromium as we can't execute the binary locally.
-if (isChromiumAndroid()) {
-    my @runTestCommand = ('build/android/run_tests.py', '--verbose', '--webkit', '--exit_code', '--out-directory', sourceDir() . '/out', '-s', 'TestWebKitAPI');
-    if (configuration() eq "Release") {
-        push @runTestCommand, '--release';
-    }
-
-    chdir(sourceDir() . '/Source/WebKit/chromium') or die $!;
-    exit exitStatus(system(@runTestCommand));
-}
-
-setConfigurationProductDir(Cwd::abs_path($root)) if (defined($root));
-
-buildTestTool() if $build && !defined($root);
-setPathForRunningWebKitApp(\%ENV);
-my @testsToRun = listAllTests();
-
-@testsToRun = grep { my $test = $_; grep { $test =~ m/^\Q$_\E/ } @ARGV; } @testsToRun if @ARGV;
-
-if ($dumpTests) {
-    dumpTestsBySuite(@testsToRun);
-    exit 0;
-}
-
-exit runTestsBySuite(@testsToRun, $verbose);
-
-sub isSupportedPlatform()
-{
-    return isAppleMacWebKit() || isAppleWinWebKit() || isChromium();
-}
-
-sub dumpTestsBySuite(\@)
-{
-    my ($tests) = @_;
-    print "Dumping test cases\n";
-    print "------------------\n";
-    my $lastSuite = "";
-    for my $suiteAndTest (sort @$tests) {
-        my ($suite, $test) = split(/\./, $suiteAndTest);
-        if ($lastSuite ne $suite) {
-            $lastSuite = $suite;
-            print "$suite:\n";
-        }
-        print "   $test\n";
-    }
-    print "------------------\n";
-}
-
-sub runTestsBySuite(\@$)
-{
-    my ($tests, $verbose) = @_;
-    my $anyFailures = 0;
-    my $lastSuite = "";
-    for my $suiteAndTest (sort @$tests) {
-        my ($suite, $test) = split(/\./, $suiteAndTest);
-        if ($lastSuite ne $suite) {
-            $lastSuite = $suite;
-            print "Suite: $suite\n" unless $verbose;
-        }
-        my $failed = runTest($suite, $test, $verbose);
-        $anyFailures ||= $failed;
-    }
-    
-    if ($verbose) {
-        if (@testsFailed) {
-            print "Tests that failed:\n";
-            for my $test (@testsFailed) {
-                print "  $test\n";
-            }
-        }
-        if (@testsTimedOut) {
-            print "Tests that timed out:\n";
-            for my $test (@testsTimedOut) {
-                print "  $test\n";
-            }
-        }
-    }
-    return $anyFailures;
-}
-
-sub runTest($$$)
-{
-    my ($suite, $testName, $verbose) = @_;
-    my $test = $suite . "." . $testName;
-
-    my $gtestArg = "--gtest_filter=" . $test;
-
-    print "    Test: $testName -> " unless $verbose;
-
-    my $result = 0;
-    my $timedOut = 0;
-
-    die "run-api-tests is not supported on this platform.\n" unless isSupportedPlatform();
-
-    prepareEnvironmentForRunningTestTool();
-
-    local *DEVNULL;
-    my ($childIn, $childOut, $childErr);
-    if ($verbose) {
-        $childOut = ">&STDERR";
-        $childErr = ">&STDERR";
-    } else {
-        open(DEVNULL, ">", File::Spec->devnull()) or die "Failed to open /dev/null";
-        $childOut = ">&DEVNULL";
-        $childErr = ">&DEVNULL";
-    }
-
-    my $pid;
-    if (isAppleMacWebKit() && architecture()) {
-        $pid = open3($childIn, $childOut, $childErr, "arch", "-" . architecture(), testToolPath(), $gtestArg, @ARGV) or die "Failed to run test: $test.";
-    } else {
-        $pid = open3($childIn, $childOut, $childErr, testToolPath(), $gtestArg, @ARGV) or die "Failed to run test: $test.";
-    }
-
-    close($childIn);
-    close($childOut);
-    close($childErr);
-    close(DEVNULL) unless ($verbose);
-    eval {
-        local $SIG{ALRM} = sub { die "alarm\n" };
-        alarm $timeout;
-        waitpid($pid, 0);
-        alarm 0;
-        $result = $?;
-    };
-    if ($@) {
-        die unless $@ eq "alarm\n";
-        kill SIGTERM, $pid or kill SIGKILL, $pid;
-        $timedOut = 1;
-    }
-
-    if ($result) {
-        push @testsFailed, $test;
-    }
-    if ($timedOut) {
-        push @testsTimedOut, $test;
-        print possiblyColored("bold yellow", "Timeout"), "\n";
-    } elsif (!$verbose) {
-        if ($result) {
-            print possiblyColored("bold red", "Failed"), "\n";
-        } else {
-            print possiblyColored("bold green", "Passed"), "\n";
-        }
-    }
-
-    return $timedOut || $result;
-}
-
-sub listAllTests()
-{
-    my @toolOutput;
-    my $timedOut;
-
-    die "run-api-tests is not supported on this platform.\n" unless isSupportedPlatform();
-
-    prepareEnvironmentForRunningTestTool();
-
-    local *DEVNULL;
-    my ($childIn, $childOut, $childErr);
-    if ($verbose) {
-        $childErr = ">&STDERR";
-    } else {
-        open(DEVNULL, ">", File::Spec->devnull()) or die "Failed to open /dev/null";
-        $childErr = ">&DEVNULL";
-    }
-
-    my $pid;
-    if (isAppleMacWebKit() && architecture()) {
-        $pid = open3($childIn, $childOut, $childErr, "arch", "-" . architecture(), testToolPath(), "--gtest_list_tests") or die "Failed to build list of tests!";
-    } else {
-        $pid = open3($childIn, $childOut, $childErr, testToolPath(), "--gtest_list_tests") or die "Failed to build list of tests!";
-    }
-
-    close($childIn);
-    @toolOutput = <$childOut>;
-    close($childOut);
-    close($childErr);
-    close(DEVNULL) unless ($verbose);
-
-    waitpid($pid, 0);
-    my $result = $?;
-
-    if ($result) {
-        print STDERR "Failed to build list of tests!\n";
-        exit exitStatus($result);
-    }
-
-    my @tests = ();
-    my $suite;
-    for my $line (@toolOutput) {
-       $line =~ s/[\r\n]*$//;
-       if ($line =~ m/\.$/) {
-          $suite = $line; # "SuiteName."
-       } else {
-          # Disabling WebKit2 API test on Windows since we will be disabling WebKit2 on Windows.
-          next if (isAppleWinWebKit() && $suite =~ m/WebKit2*/);       
-          $line =~ s/^\s*//; # "TestName"
-          push @tests, $suite . $line; # "SuiteName.TestName"
-        }
-    }
-
-    return @tests;
-}
-
-sub buildTestTool()
-{
-    my $originalCwd = getcwd();
-
-    chdirWebKit();
-
-    my $buildTestTool = "build-api-tests";
-    print STDERR "Running $buildTestTool\n";
-
-    local *DEVNULL;
-    my ($childIn, $childOut, $childErr);
-    if ($verbose) {
-        # When not quiet, let the child use our stdout/stderr.
-        $childOut = ">&STDOUT";
-        $childErr = ">&STDERR";
-    } else {
-        open(DEVNULL, ">", File::Spec->devnull()) or die "Failed to open /dev/null";
-        $childOut = ">&DEVNULL";
-        $childErr = ">&DEVNULL";
-    }
-
-    my @args = argumentsForConfiguration();
-    my $pathToBuildTestTool = File::Spec->catfile("Tools", "Scripts", $buildTestTool);
-    my $buildProcess = open3($childIn, $childOut, $childErr, "perl", $pathToBuildTestTool, @args) or die "Failed to run " . $buildTestTool;
-
-    close($childIn);
-    close($childOut);
-    close($childErr);
-    close(DEVNULL) unless ($verbose);
-
-    waitpid($buildProcess, 0);
-    my $buildResult = $?;
-
-    if ($buildResult) {
-        print STDERR "Compiling TestWebKitAPI failed!\n";
-        exit exitStatus($buildResult);
-    }
-
-    chdir $originalCwd;
-}
-
-sub prepareEnvironmentForRunningTestTool()
-{
-    return unless isAppleMacWebKit();
-
-    $ENV{DYLD_FRAMEWORK_PATH} = productDir();
-    $ENV{WEBKIT_UNSET_DYLD_FRAMEWORK_PATH} = "YES";
-}
-
-sub testToolPath()
-{
-    my $path = File::Spec->catfile(productDir(), "TestWebKitAPI");
-    return $path unless isAppleWinWebKit();
-
-    my $suffix;
-    if (configurationForVisualStudio() eq "Debug_All") {
-        $suffix = "_debug";
-    } else {
-        $suffix = "";
-    }
-    return "$path$suffix.exe";
-}
diff --git a/Tools/Scripts/run-bindings-tests b/Tools/Scripts/run-bindings-tests
index a0785e4..511da4f 100755
--- a/Tools/Scripts/run-bindings-tests
+++ b/Tools/Scripts/run-bindings-tests
@@ -41,17 +41,9 @@
     """
     reset_results = "--reset-results" in argv
 
-    generators = [
-        'JS',
-        'V8',
-        'ObjC',
-        'GObject',
-        'CPP'
-    ]
-
     from webkitpy.bindings.main import BindingsTests
 
-    return BindingsTests(reset_results, generators, executive.Executive()).main()
+    return BindingsTests(reset_results, executive.Executive()).main()
 
 
 if __name__ == '__main__':
diff --git a/Tools/Scripts/run-blink-httpd b/Tools/Scripts/run-blink-httpd
new file mode 100755
index 0000000..a169176
--- /dev/null
+++ b/Tools/Scripts/run-blink-httpd
@@ -0,0 +1,96 @@
+#!/usr/bin/env python
+# Copyright (C) 2010 Google Inc. All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are
+# met:
+#
+#     * Redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+#     * Redistributions in binary form must reproduce the above
+# copyright notice, this list of conditions and the following disclaimer
+# in the documentation and/or other materials provided with the
+# distribution.
+#     * Neither the name of Google Inc. nor the names of its
+# contributors may be used to endorse or promote products derived from
+# this software without specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+"""A utility script for starting and stopping the HTTP server with the
+   same configuration as used in the layout tests."""
+
+#
+# This script is also used by Chromium's ui_tests to run http layout tests
+# in a browser.
+#
+import optparse
+import os
+import sys
+import tempfile
+
+import webkitpy.common.version_check
+
+from webkitpy.common.host import Host
+from webkitpy.layout_tests.servers import http_server
+
+
+def run(options):
+    if not options.server:
+        print ('Usage: %s --server {start|stop} [--root=root_dir]'
+               ' [--port=port_number]' % sys.argv[0])
+    else:
+        if (options.root is None) and (options.port is not None):
+            # specifying root but not port means we want httpd on default
+            # set of ports that LayoutTest use, but pointing to a different
+            # source of tests. Specifying port but no root does not seem
+            # meaningful.
+            raise 'Specifying port requires also a root.'
+        host = Host()
+        # FIXME: Make this work with other ports as well.
+        port_obj = host.port_factory.get(port_name='chromium', options=options)
+        httpd = http_server.Lighttpd(port_obj,
+                                     tempfile.gettempdir(),
+                                     port=options.port,
+                                     root=options.root,
+                                     run_background=options.run_background,
+                                     layout_tests_dir=options.layout_tests_dir)
+        if options.server == 'start':
+            httpd.start()
+        else:
+            httpd.stop()
+
+
+def main():
+    option_parser = optparse.OptionParser()
+    option_parser.add_option('-k', '--server',
+        help='Server action (start|stop)')
+    option_parser.add_option('-p', '--port',
+        help='Port to listen on (overrides layout test ports)')
+    option_parser.add_option('-r', '--root',
+        help='Absolute path to DocumentRoot (overrides layout test roots)')
+    option_parser.add_option('--register_cygwin', action="store_true",
+        dest="register_cygwin", help='Register Cygwin paths (on Win try bots)')
+    option_parser.add_option('--run_background', action="store_true",
+        dest="run_background",
+        help='Run on background (for running as UI test)')
+    option_parser.add_option('--layout_tests_dir',
+        dest="layout_tests_dir",
+        help='Absolute path to LayoutTests root')
+    options, args = option_parser.parse_args()
+
+    run(options)
+
+
+if '__main__' == __name__:
+    main()
diff --git a/Tools/Scripts/new-run-webkit-websocketserver b/Tools/Scripts/run-blink-websocketserver
similarity index 100%
rename from Tools/Scripts/new-run-webkit-websocketserver
rename to Tools/Scripts/run-blink-websocketserver
diff --git a/Tools/Scripts/run-efl-tests b/Tools/Scripts/run-efl-tests
deleted file mode 100755
index cb6df5b..0000000
--- a/Tools/Scripts/run-efl-tests
+++ /dev/null
@@ -1,64 +0,0 @@
-#!/usr/bin/perl -w
-# Copyright (C) 2012 Intel Corporation. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Intel Corporation nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-use strict;
-use FindBin;
-use lib $FindBin::Bin;
-use webkitdirs;
-
-my $xvfb_display = ":55";
-
-my $xvfb_pid = fork();
-exit(1) if not defined $xvfb_pid;
-
-# Tell CTest to dump gtest output in case of failure.
-$ENV{CTEST_OUTPUT_ON_FAILURE} = "1";
-$ENV{DISPLAY} = $xvfb_display;
-
-if ($xvfb_pid == 0) {
-    # Start Xvfb
-    my @xvfb_args = ( "Xvfb $xvfb_display -screen 0 800x600x24 -nolisten tcp > /dev/null 2>&1" );
-    exec(@xvfb_args);
-} else {
-    setConfiguration();
-
-    # Manually add this for jhbuildWrapperPrefixIfNeeded().
-    push(@ARGV, "--efl");
-
-    my $returnCode = exitStatus(generateBuildSystemFromCMakeProject("Efl", undef, cmakeBasedPortArguments()));
-    exit($returnCode) if $returnCode;
-
-    $returnCode = exitStatus(buildCMakeGeneratedProject("test"));
-
-    # Kill Xvfb
-    kill(15, $xvfb_pid);
-
-    exit($returnCode);
-}
-
diff --git a/Tools/Scripts/run-fast-jsc b/Tools/Scripts/run-fast-jsc
deleted file mode 100755
index 8e004c4..0000000
--- a/Tools/Scripts/run-fast-jsc
+++ /dev/null
@@ -1,161 +0,0 @@
-#! /bin/sh
-
-# Copyright (C) 2012 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
-# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-
-# Script to run selected LayoutTests/fast/{js,regex} tests using jsc
-
-jscCmd="/System/Library/Frameworks/JavaScriptCore.framework/Resources/jsc"
-testRoot=/tmp/LayoutTests
-resultsRoot=`date \+/tmp/results-%Y-%m-%d-%H-%M-%S`
-testList="unset"
-
-cmdName=`basename $0`
-
-function usage()
-{
-    echo "usage: $cmdName [[--jsc | -j] <path-to-jsc>] [[--results-dir | -r] <results-path>]"
-    echo "                    [[--test-root | -t] <test-root-path>] [[--test-list | -l] <test-list-file>]"
-    exit 1
-}
-
-while [ $# -gt 1 ]
-do
-    case $1 in
-    --jsc|-j)
-        jscCmd=$2
-        ;;
-    --results-dir|-r)
-        resultsRoot=$2
-        ;;
-    --test-root|-t)
-        testRoot=$2
-        ;;
-    --test-list|-l)
-        testList=$2
-        ;;
-    *)
-        echo "Unrecognized option \"$1\""
-        usage
-        ;;
-    esac
-
-    shift 2
-done
-
-if [ $# -gt 0 ]
-then
-    echo "Extra argument \"$1\""
-    usage
-fi
-
-if [ $testList = "unset" ]
-then
-    testList=$testRoot/fast/js/jsc-test-list
-fi
-
-preScript=$testRoot/fast/js/resources/standalone-pre.js
-postScript=$testRoot/fast/js/resources/standalone-post.js
-passList=$resultsRoot/passed
-failList=$resultsRoot/failed
-crashList=$resultsRoot/crashed
-
-numTestsRun=0
-numPassed=0
-numFailed=0
-numCrashed=0
-
-rm -rf $resultsRoot
-rm -f jsc-tests-passed jsc-tests-failed
-
-for test in `cat $testList`
-do
-    testPassed=0
-    testCrashed=0
-    testName=`basename $test`
-    dirName=`dirname $test`
-     
-    expectedOut="$testRoot/$dirName/${testName}-expected.txt"
-    actualOut="$resultsRoot/$dirName/${testName}-out.txt"
-    actualErr="$resultsRoot/$dirName/${testName}-err.txt"
-    diffOut="$resultsRoot/$dirName/${testName}-diff.txt"
-    jsTest="$testRoot/$dirName/script-tests/${testName}.js"
-
-    if [ ! -d "$resultsRoot/$dirName" ]
-    then
-        mkdir -p "$resultsRoot/$dirName"
-    fi
-
-    if [ -f $expectedOut -a -f $jsTest ]
-    then
-        echo "Testing $test ... \c"
-        let numTestsRun=$numTestsRun+1
-        $jscCmd $preScript $jsTest $postScript 2>$actualErr > $actualOut
-        JSC_RES=$?
-        
-        if [ $JSC_RES -eq 0 ]
-        then
-            diff $actualOut $expectedOut > $diffOut
-            if [ $? -eq 0 ]
-            then
-                testPassed=1
-                echo "PASSED"
-            else
-                testPassed=0
-                echo "FAILED"
-            fi
-        else
-            testPassed=0
-            if [ $JSC_RES -gt 128 ]
-            then
-                testCrashed=1
-                echo "CRASHED"
-            else
-                echo "ERROR: $JSC_RES"
-            fi
-        fi
-
-        if [ $testPassed -eq 1 ]
-        then
-            echo "$test" >> $passList
-            let numPassed=$numPassed+1
-        else
-            echo "$test" >> $failList
-            let numFailed=$numFailed+1
-            if [ $testCrashed -eq 1 ]
-            then
-                echo "$test" >> $crashList
-                let numCrashed=$numCrashed+1
-            fi
-        fi
-    fi
-done
-
-if [ $numPassed -eq $numTestsRun ]
-then
-    echo "All $numTestsRun tests passed!" | tee $resultsRoot/summary
-else
-    echo "$numPassed tests passed, $numFailed tests failed, $numCrashed tests crashed." | tee $resultsRoot/summary
-fi
-
-echo "Test results in $resultsRoot"
diff --git a/Tools/Scripts/run-gtk-tests b/Tools/Scripts/run-gtk-tests
deleted file mode 100755
index 35e70ed..0000000
--- a/Tools/Scripts/run-gtk-tests
+++ /dev/null
@@ -1,386 +0,0 @@
-#!/usr/bin/env python
-#
-# Copyright (C) 2011, 2012 Igalia S.L.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Library General Public
-# License as published by the Free Software Foundation; either
-# version 2 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Library General Public License for more details.
-#
-# You should have received a copy of the GNU Library General Public License
-# along with this library; see the file COPYING.LIB.  If not, write to
-# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-# Boston, MA 02110-1301, USA.
-
-import subprocess
-import os
-import sys
-import optparse
-import re
-from signal import alarm, signal, SIGALRM, SIGKILL
-from gi.repository import Gio, GLib
-
-top_level_directory = os.path.normpath(os.path.join(os.path.dirname(__file__), "..", ".."))
-sys.path.append(os.path.join(top_level_directory, "Tools", "jhbuild"))
-sys.path.append(os.path.join(top_level_directory, "Tools", "gtk"))
-import common
-import jhbuildutils
-
-class SkippedTest:
-    ENTIRE_SUITE = None
-
-    def __init__(self, test, test_case, reason, bug=None):
-        self.test = test
-        self.test_case = test_case
-        self.reason = reason
-        self.bug = bug
-
-    def __str__(self):
-        skipped_test_str = "%s" % self.test
-
-        if not(self.skip_entire_suite()):
-            skipped_test_str += " [%s]" % self.test_case
-
-        skipped_test_str += ": %s " % self.reason
-        if self.bug is not None:
-            skipped_test_str += "(https://bugs.webkit.org/show_bug.cgi?id=%d)" % self.bug
-        return skipped_test_str
-
-    def skip_entire_suite(self):
-        return self.test_case == SkippedTest.ENTIRE_SUITE
-
-class TestTimeout(Exception):
-    pass
-
-class TestRunner:
-    TEST_DIRS = [ "unittests", "WebKit2APITests", "TestWebKitAPI" ]
-
-    SKIPPED = [
-        SkippedTest("unittests/testdownload", "/webkit/download/not-found", "Test fails in GTK Linux 64-bit Release bot", 82329),
-        SkippedTest("unittests/testwebinspector", "/webkit/webinspector/close-and-inspect", "Test is flaky in GTK Linux 32-bit Release bot", 82869),
-        SkippedTest("unittests/testwebresource", "/webkit/webresource/loading", "Test fails", 104689),
-        SkippedTest("unittests/testwebresource", "/webkit/webresource/sub_resource_loading", "Test fails in GTK Linux 64-bit Release bot", 82330),
-        SkippedTest("unittests/testwebview", "/webkit/webview/icon-uri", "Test times out in GTK Linux 64-bit Release bot", 82328),
-        SkippedTest("unittests/testatk", "/webkit/atk/getTextInParagraphAndBodyModerate", "Test fails", 105538),
-        SkippedTest("WebKit2APITests/TestInspectorServer", SkippedTest.ENTIRE_SUITE, "Test times out", 105866),
-        SkippedTest("WebKit2APITests/TestResources", "/webkit2/WebKitWebView/resources", "Test is flaky in GTK Linux 32-bit Release bot", 82868),
-        SkippedTest("WebKit2APITests/TestWebKitAccessibility", "/webkit2/WebKitAccessibility/atspi-basic-hierarchy", "Test fails", 100408),
-        SkippedTest("WebKit2APITests/TestWebKitFindController", "/webkit2/WebKitFindController/hide", "Test always fails in Xvfb", 89810),
-        SkippedTest("WebKit2APITests/TestWebKitWebContext", "/webkit2/WebKitWebContext/uri-scheme", "Test fails", 104779),
-        SkippedTest("TestWebKitAPI/TestWebKit2", "WebKit2.CanHandleRequest", "Test fails", 88453),
-        SkippedTest("TestWebKitAPI/TestWebKit2", "WebKit2.MouseMoveAfterCrash", "Test is flaky", 85066),
-        SkippedTest("TestWebKitAPI/TestWebKit2", "WebKit2.NewFirstVisuallyNonEmptyLayoutForImages", "Test is flaky", 85066),
-        SkippedTest("TestWebKitAPI/TestWebKit2", "WebKit2.NewFirstVisuallyNonEmptyLayoutFrames", "Test fails", 85037),
-        SkippedTest("TestWebKitAPI/TestWebKit2", "WebKit2.RestoreSessionStateContainingFormData", "Session State is not implemented in GTK+ port", 84960),
-        SkippedTest("TestWebKitAPI/TestWebKit2", "WebKit2.SpacebarScrolling", "Test fails", 84961),
-        SkippedTest("TestWebKitAPI/TestWebKit2", "WebKit2.WKConnection", "Tests fail and time out out", 84959),
-        SkippedTest("TestWebKitAPI/TestWebKit2", "WebKit2.WKPageGetScaleFactorNotZero", "Test fails and times out", 88455),
-        SkippedTest("TestWebKitAPI/TestWebKit2", "WebKit2.ForceRepaint", "Test times out", 105532),
-        SkippedTest("TestWebKitAPI/TestWebKit2", "WebKit2.ReloadPageAfterCrash", "Test flakily times out", 110129),
-    ]
-
-    def __init__(self, options, tests=[]):
-        self._options = options
-        self._build_type = "Debug" if self._options.debug else "Release"
-
-        self._programs_path = common.build_path_for_build_types((self._build_type,), "Programs")
-        self._tests = self._get_tests(tests)
-        self._skipped_tests = TestRunner.SKIPPED
-        if not sys.stdout.isatty():
-            self._tty_colors_pattern = re.compile("\033\[[0-9;]*m")
-
-        # These SPI daemons need to be active for the accessibility tests to work.
-        self._spi_registryd = None
-        self._spi_bus_launcher = None
-
-    def _get_tests(self, tests):
-        if tests:
-            return tests
-
-        tests = []
-        for test_dir in self.TEST_DIRS:
-            absolute_test_dir = os.path.join(self._programs_path, test_dir)
-            if not os.path.isdir(absolute_test_dir):
-                continue
-            for test_file in os.listdir(absolute_test_dir):
-                if not test_file.lower().startswith("test"):
-                    continue
-                test_path = os.path.join(self._programs_path, test_dir, test_file)
-                if os.path.isfile(test_path) and os.access(test_path, os.X_OK):
-                    tests.append(test_path)
-        return tests
-
-    def _lookup_atspi2_binary(self, filename):
-        exec_prefix = common.pkg_config_file_variable('atspi-2', 'exec_prefix')
-        if not exec_prefix:
-            return None
-        for path in ['libexec', 'lib/at-spi2-core', 'lib32/at-spi2-core', 'lib64/at-spi2-core']:
-            filepath = os.path.join(exec_prefix, path, filename)
-            if os.path.isfile(filepath):
-                return filepath
-
-        return None
-
-    def _start_accessibility_daemons(self):
-        spi_bus_launcher_path = self._lookup_atspi2_binary('at-spi-bus-launcher')
-        spi_registryd_path = self._lookup_atspi2_binary('at-spi2-registryd')
-        if not spi_bus_launcher_path or not spi_registryd_path:
-            return False
-
-        try:
-            self._ally_bus_launcher = subprocess.Popen([spi_bus_launcher_path], env=self._test_env)
-        except:
-            sys.stderr.write("Failed to launch the accessibility bus\n")
-            sys.stderr.flush()
-            return False
-
-        # We need to wait until the SPI bus is launched before trying to start the SPI
-        # registry, so we spin a main loop until the bus name appears on DBus.
-        loop = GLib.MainLoop()
-        Gio.bus_watch_name(Gio.BusType.SESSION, 'org.a11y.Bus', Gio.BusNameWatcherFlags.NONE,
-                           lambda *args: loop.quit(), None)
-        loop.run()
-
-        try:
-            self._spi_registryd = subprocess.Popen([spi_registryd_path], env=self._test_env)
-        except:
-            sys.stderr.write("Failed to launch the accessibility registry\n")
-            sys.stderr.flush()
-            return False
-
-        return True
-
-    def _setup_testing_environment(self):
-        self._test_env = os.environ
-        self._test_env["DISPLAY"] = self._options.display
-        self._test_env["WEBKIT_INSPECTOR_PATH"] = os.path.abspath(os.path.join(self._programs_path, 'resources', 'inspector'))
-        self._test_env['GSETTINGS_BACKEND'] = 'memory'
-        self._test_env["TEST_WEBKIT_API_WEBKIT2_RESOURCES_PATH"] = common.top_level_path("Tools", "TestWebKitAPI", "Tests", "WebKit2")
-        self._test_env["TEST_WEBKIT_API_WEBKIT2_INJECTED_BUNDLE_PATH"] = common.build_path_for_build_types((self._build_type,), "Libraries")
-        self._test_env["WEBKIT_EXEC_PATH"] = self._programs_path
-
-        try:
-            self._xvfb = subprocess.Popen(["Xvfb", self._options.display, "-screen", "0", "800x600x24", "-nolisten", "tcp"],
-                                          stdout=subprocess.PIPE, stderr=subprocess.PIPE)
-        except Exception as e:
-            sys.stderr.write("Failed to run Xvfb: %s\n" % e)
-            sys.stderr.flush()
-            return False
-
-        # If we cannot start the accessibility daemons, we can just skip the accessibility tests.
-        if not self._start_accessibility_daemons():
-            print "Could not start accessibility bus, so skipping TestWebKitAccessibility"
-            self._skipped_tests.append(SkippedTest("WebKit2APITests/TestWebKitAccessibility", SkippedTest.ENTIRE_SUITE, "Could not start accessibility bus"))
-        return True
-
-    def _tear_down_testing_environment(self):
-        if self._spi_registryd:
-            self._spi_registryd.terminate()
-        if self._spi_bus_launcher:
-            self._spi_bus_launcher.terminate()
-        self._xvfb.terminate()
-
-    def _test_cases_to_skip(self, test_program):
-        if self._options.skipped_action != 'skip':
-            return []
-
-        test_cases = []
-        for skipped in self._skipped_tests:
-            if test_program.endswith(skipped.test) and not skipped.skip_entire_suite():
-                test_cases.append(skipped.test_case)
-        return test_cases
-
-    def _should_run_test_program(self, test_program):
-        # This is not affected by the command-line arguments, since programs are skipped for
-        # problems in the harness, such as failing to start the accessibility bus.
-        for skipped in self._skipped_tests:
-            if test_program.endswith(skipped.test) and skipped.skip_entire_suite():
-                return False
-        return True
-
-    def _get_child_pid_from_test_output(self, output):
-        if not output:
-            return -1
-        match = re.search(r'\(pid=(?P<child_pid>[0-9]+)\)', output)
-        if not match:
-            return -1
-        return int(match.group('child_pid'))
-
-    def _kill_process(self, pid):
-        try:
-            os.kill(pid, SIGKILL)
-        except OSError:
-            # Process already died.
-            pass
-
-    def _run_test_command(self, command, timeout=-1):
-        def alarm_handler(signum, frame):
-            raise TestTimeout
-
-        child_pid = [-1]
-        def parse_line(line, child_pid = child_pid):
-            if child_pid[0] == -1:
-                child_pid[0] = self._get_child_pid_from_test_output(line)
-
-            if sys.stdout.isatty():
-                sys.stdout.write(line)
-            else:
-                sys.stdout.write(self._tty_colors_pattern.sub('', line.replace('\r', '')))
-
-        def waitpid(pid):
-            while True:
-                try:
-                    return os.waitpid(pid, 0)
-                except (OSError, IOError) as e:
-                    if e.errno == errno.EINTR:
-                        continue
-                    raise
-
-        def return_code_from_exit_status(status):
-            if os.WIFSIGNALED(status):
-                return -os.WTERMSIG(status)
-            elif os.WIFEXITED(status):
-                return os.WEXITSTATUS(status)
-            else:
-                # Should never happen
-                raise RuntimeError("Unknown child exit status!")
-
-        pid, fd = os.forkpty()
-        if pid == 0:
-            os.execvpe(command[0], command, self._test_env)
-            sys.exit(0)
-
-        if timeout > 0:
-            signal(SIGALRM, alarm_handler)
-            alarm(timeout)
-
-        try:
-            common.parse_output_lines(fd, parse_line)
-            if timeout > 0:
-                alarm(0)
-        except TestTimeout:
-            self._kill_process(pid)
-            if child_pid[0] > 0:
-                self._kill_process(child_pid[0])
-            raise
-
-        try:
-            dummy, status = waitpid(pid)
-        except OSError as e:
-            if e.errno != errno.ECHILD:
-                raise
-            # This happens if SIGCLD is set to be ignored or waiting
-            # for child processes has otherwise been disabled for our
-            # process.  This child is dead, we can't get the status.
-            status = 0
-
-        return not return_code_from_exit_status(status)
-
-    def _run_test_glib(self, test_program):
-        tester_command = ['gtester']
-        if self._options.verbose:
-            tester_command.append('--verbose')
-        for test_case in self._test_cases_to_skip(test_program):
-            tester_command.extend(['-s', test_case])
-        tester_command.append(test_program)
-
-        return self._run_test_command(tester_command, self._options.timeout)
-
-    def _run_test_google(self, test_program):
-        tester_command = [test_program]
-        skipped_tests_cases = self._test_cases_to_skip(test_program)
-        if skipped_tests_cases:
-            tester_command.append("--gtest_filter=-%s" % ":".join(skipped_tests_cases))
-
-        return self._run_test_command(tester_command, self._options.timeout)
-
-    def _run_test(self, test_program):
-        if "unittests" in test_program or "WebKit2APITests" in test_program:
-            return self._run_test_glib(test_program)
-
-        if "TestWebKitAPI" in test_program:
-            return self._run_test_google(test_program)
-
-        return False
-
-    def run_tests(self):
-        if not self._tests:
-            sys.stderr.write("ERROR: tests not found in %s.\n" % (self._programs_path))
-            sys.stderr.flush()
-            return 1
-
-        if not self._setup_testing_environment():
-            return 1
-
-        # Remove skipped tests now instead of when we find them, because
-        # some tests might be skipped while setting up the test environment.
-        self._tests = [test for test in self._tests if self._should_run_test_program(test)]
-
-        failed_tests = []
-        timed_out_tests = []
-        try:
-            for test in self._tests:
-                success = True
-                try:
-                    success = self._run_test(test)
-                except TestTimeout:
-                    sys.stdout.write("TEST: %s: TIMEOUT\n" % test)
-                    sys.stdout.flush()
-                    timed_out_tests.append(test)
-
-                if not success:
-                    failed_tests.append(test)
-        finally:
-            self._tear_down_testing_environment()
-
-        if failed_tests:
-            names = [test.replace(self._programs_path, '', 1) for test in failed_tests]
-            sys.stdout.write("Tests failed (%d): %s\n" % (len(names), ", ".join(names)))
-            sys.stdout.flush()
-
-        if timed_out_tests:
-            names = [test.replace(self._programs_path, '', 1) for test in timed_out_tests]
-            sys.stdout.write("Tests that timed out (%d): %s\n" % (len(names), ", ".join(names)))
-            sys.stdout.flush()
-
-        if self._skipped_tests and self._options.skipped_action == 'skip':
-            sys.stdout.write("Tests skipped (%d):\n%s\n" %
-                             (len(self._skipped_tests),
-                              "\n".join([str(skipped) for skipped in self._skipped_tests])))
-            sys.stdout.flush()
-
-        return len(failed_tests) + len(timed_out_tests)
-
-if __name__ == "__main__":
-    if not jhbuildutils.enter_jhbuild_environment_if_available("gtk"):
-        print "***"
-        print "*** Warning: jhbuild environment not present. Run update-webkitgtk-libs before build-webkit to ensure proper testing."
-        print "***"
-
-    option_parser = optparse.OptionParser(usage='usage: %prog [options] [test...]')
-    option_parser.add_option('-r', '--release',
-                             action='store_true', dest='release',
-                             help='Run in Release')
-    option_parser.add_option('-d', '--debug',
-                             action='store_true', dest='debug',
-                             help='Run in Debug')
-    option_parser.add_option('-v', '--verbose',
-                             action='store_true', dest='verbose',
-                             help='Run gtester in verbose mode')
-    option_parser.add_option('--display', action='store', dest='display', default=':55',
-                             help='Display to run Xvfb')
-    option_parser.add_option('--skipped', action='store', dest='skipped_action',
-                             choices=['skip', 'ignore', 'only'], default='skip',
-                             metavar='skip|ignore|only',
-                             help='Specifies how to treat the skipped tests')
-    option_parser.add_option('-t', '--timeout',
-                             action='store', type='int', dest='timeout', default=10,
-                             help='Time in seconds until a test times out')
-    options, args = option_parser.parse_args()
-
-    sys.exit(TestRunner(options, args).run_tests())
diff --git a/Tools/Scripts/run-iexploder-tests b/Tools/Scripts/run-iexploder-tests
deleted file mode 100755
index cb696a2..0000000
--- a/Tools/Scripts/run-iexploder-tests
+++ /dev/null
@@ -1,142 +0,0 @@
-#!/usr/bin/perl
-
-# Copyright (C) 2006 Alexey Proskuryakov (ap@nypop.com)
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# A script to semi-automatically run iExploder tests.
-
-use strict;
-use warnings;
-
-use Cwd;
-use File::Spec;
-use FindBin;
-use Getopt::Long;
-use IPC::Open2;
-
-use lib $FindBin::Bin;
-use webkitperl::httpd;
-use webkitdirs;
-
-sub configureAndOpenHTTPDIfNeeded();
-sub runSafariWithIExploder();
-
-# Argument handling
-my $guardMalloc = '';
-my $httpdPort = 8000;
-my $downloadTest;
-my $iExploderTestDirectory = "/tmp/iExploderTest";
-
-GetOptions(
-    'guard-malloc|g' => \$guardMalloc,
-    'get=s' => \$downloadTest,
-    'port=i' => \$httpdPort
-);
-
-
-setConfiguration();
-my $productDir = productDir();
-
-chdirWebKit();
-
-checkFrameworks();
-
-my $isHttpdOpen = 0;
-configureAndOpenHTTPDIfNeeded();
-
-if ($downloadTest) {
-    system "/usr/bin/curl -o ~/Desktop/iexploder$downloadTest.html \"http://127.0.0.1:$httpdPort/iexploder.cgi?lookup=1&test=$downloadTest\"";
-    print "Saved the test as iexploder$downloadTest.html on the desktop\n";
-} else {
-    runSafariWithIExploder();
-    print "Last generated tests:\n";
-    system "grep 'iexploder.cgi' $iExploderTestDirectory/access_log.txt | tail -n -5 | awk -F'[ =&\\?]' '{if (\$8 == \"lookup\") print \$11; else print \$9}'";
-}
-
-rmtree $iExploderTestDirectory;
-$isHttpdOpen = !closeHTTPD();
-
-sub runSafariWithIExploder()
-{
-    my $redirectTo;
-    if (@ARGV) {
-        $redirectTo = "http://127.0.0.1:$httpdPort/iexploder.cgi?lookup=1&test=$ARGV[0]";
-    } else {
-        $redirectTo = "http://127.0.0.1:$httpdPort/index.html";
-    }
-
-    open REDIRECT_HTML, ">", "$iExploderTestDirectory/redirect.html" or die;
-    print REDIRECT_HTML "<html>\n";
-    print REDIRECT_HTML "    <head>\n";
-    print REDIRECT_HTML "        <meta http-equiv=\"refresh\" content=\"1;URL=$redirectTo\" />\n";
-    print REDIRECT_HTML "        <script type=\"text/javascript\">\n";
-    print REDIRECT_HTML "            document.location = \"$redirectTo\";\n";
-    print REDIRECT_HTML "        </script>\n";
-    print REDIRECT_HTML "    </head>\n";
-    print REDIRECT_HTML "    <body>\n";
-    print REDIRECT_HTML "    </body>\n";
-    print REDIRECT_HTML "</html>\n";
-    close REDIRECT_HTML;
-    
-    if (!isAppleWebKit()) {
-        system "Tools/Scripts/run-launcher", "$iExploderTestDirectory/redirect.html";
-    } else {
-        local %ENV;
-        $ENV{DYLD_INSERT_LIBRARIES} = "/usr/lib/libgmalloc.dylib" if $guardMalloc;
-        system "Tools/Scripts/run-safari", "-NSOpen", "$iExploderTestDirectory/redirect.html";
-    }
-}
-
-sub configureAndOpenHTTPDIfNeeded()
-{
-    return if $isHttpdOpen;
-    mkdir $iExploderTestDirectory;
-    my $webkitDirectory = getcwd();
-    my $testDirectory = $webkitDirectory . "/LayoutTests";
-    my $iExploderDirectory = $webkitDirectory . "/Tools/iExploder/iExploder-1.3.2";
-
-    my $httpdConfig = getHTTPDConfigPathForTestDirectory($testDirectory);
-
-    my $documentRoot = "$iExploderDirectory/htdocs";
-    my $typesConfig = "$testDirectory/http/conf/mime.types";
-    my $sslCertificate = "$testDirectory/http/conf/webkit-httpd.pem";
-    my $listen = "127.0.0.1:$httpdPort";
-
-
-    my @args = (
-        "-f", "$httpdConfig",
-        "-C", "DocumentRoot \"$documentRoot\"",
-        "-C", "Listen $listen",
-        "-c", "TypesConfig \"$typesConfig\"",
-        "-c", "CustomLog \"$iExploderTestDirectory/access_log.txt\" common",
-        "-c", "ErrorLog \"$iExploderTestDirectory/error_log.txt\"",
-        "-c", "SSLCertificateFile \"$sslCertificate\"",
-        # Apache wouldn't run CGIs with permissions==700 otherwise
-        "-c", "User \"#$<\""
-    );
-
-    $isHttpdOpen = openHTTPD(@args);
-}
diff --git a/Tools/Scripts/run-javascriptcore-tests b/Tools/Scripts/run-javascriptcore-tests
deleted file mode 100755
index 8b79f25..0000000
--- a/Tools/Scripts/run-javascriptcore-tests
+++ /dev/null
@@ -1,214 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2005 Apple Computer, Inc.  All rights reserved.
-# Copyright (C) 2007 Eric Seidel <eric@webkit.org>
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Script to run the WebKit Open Source Project JavaScriptCore tests (adapted from Mozilla).
-
-use strict;
-use FindBin;
-use Getopt::Long qw(:config pass_through);
-use lib $FindBin::Bin;
-use webkitdirs;
-use POSIX;
-
-# determine configuration
-setConfiguration();
-my $configuration = configuration();
-
-my @testsToSkip = (
-    # Various ecma/Date tests sometimes fail on Windows (but not Mac) https://bugs.webkit.org/show_bug.cgi?id=25160
-    "ecma/Date/15.9.2.1.js",
-    "ecma/Date/15.9.2.2-1.js",
-    "ecma/Date/15.9.2.2-2.js",
-    "ecma/Date/15.9.2.2-3.js",
-    "ecma/Date/15.9.2.2-4.js",
-    "ecma/Date/15.9.2.2-5.js",
-    "ecma/Date/15.9.2.2-6.js",
-    # ecma_3/Date/15.9.5.7.js fails on Mac (but not Windows) https://bugs.webkit.org/show_bug.cgi?id=25161
-    "ecma_3/Date/15.9.5.6.js",
-    "ecma_3/Date/15.9.5.7.js",
-    # These three fail on Linux in certain time zones, at certain times
-    # of the year (!): https://bugs.webkit.org/show_bug.cgi?id=71371
-    "ecma/Date/15.9.5.14.js",
-    "ecma/Date/15.9.5.31-1.js",
-    "ecma/Date/15.9.5.34-1.js",
-);
-
-my $jsDriverArgs = "-L " . join(" ", @testsToSkip);
-# These variables are intentionally left undefined.
-my $root;
-my $showHelp;
-
-my $buildJSC = 1;
-
-my $programName = basename($0);
-my $buildJSCDefault = $buildJSC ? "will check" : "will not check";
-my $usage = <<EOF;
-Usage: $programName [options] [options to pass to build system]
-  --help                        Show this help message
-  --jsDriver-args=              A string of arguments to pass to jsDriver.pl
-  --root=                       Path to pre-built root containing jsc
-  --[no-]build                  Check (or don't check) to see if the jsc build is up-to-date (default: $buildJSCDefault)
-EOF
-
-GetOptions(
-    'j|jsDriver-args=s' => \$jsDriverArgs,
-    'root=s' => \$root,
-    'build!' => \$buildJSC,
-    'help' => \$showHelp
-);
-
-# Assume any arguments left over from GetOptions are assumed to be build arguments
-my @buildArgs = @ARGV;
-
-# Arguments passed to --jsDriver-args (if any) are passed to jsDriver.pl
-my @jsArgs = split(" ", $jsDriverArgs);
-
-if ($showHelp) {
-   print STDERR $usage;
-   exit 1;
-}
-
-setConfigurationProductDir(Cwd::abs_path($root)) if (defined($root));
-
-if (!defined($root) && $buildJSC) {
-    chdirWebKit();
-
-    push(@buildArgs, argumentsForConfiguration());
-    
-    print "Running: build-jsc " . join(" ", @buildArgs) . "\n";
-    my $buildResult = system "perl", "Tools/Scripts/build-jsc", @buildArgs;
-    if ($buildResult) {
-        print STDERR "Compiling jsc failed!\n";
-        exit exitStatus($buildResult);
-    }
-}
-
-
-my $productDir = jscProductDir();
-$ENV{DYLD_FRAMEWORK_PATH} = $productDir;
-setPathForRunningWebKitApp(\%ENV) if isCygwin();
-
-sub testapiPath($)
-{
-    my ($productDir) = @_;
-    my $jscName = "testapi";
-    $jscName .= "_debug" if configurationForVisualStudio() eq "Debug_All";
-    return "$productDir/$jscName";
-}
-
-#run api tests
-if (isAppleMacWebKit() || isAppleWinWebKit()) {
-    chdirWebKit();
-    chdir($productDir) or die "Failed to switch directory to '$productDir'\n";
-    my $path = testapiPath($productDir);
-    # Use an "indirect object" so that system() won't get confused if the path
-    # contains spaces (see perldoc -f exec).
-    my $testapiResult = system { $path } $path;
-    exit exitStatus($testapiResult)  if $testapiResult;
-}
-
-# Find JavaScriptCore directory
-chdirWebKit();
-chdir("Source/JavaScriptCore");
-chdir "tests/mozilla" or die "Failed to switch directory to 'tests/mozilla'\n";
-printf "Running: jsDriver.pl -e squirrelfish -s %s -f actual.html %s\n", jscPath($productDir), join(" ", @jsArgs);
-my @jsDriverCmd = ("perl", "jsDriver.pl", "-e", "squirrelfish", "-s", jscPath($productDir), "-f", "actual.html", @jsArgs);
-if (isGtk() || isEfl()) {
-    my @jhbuildPrefix = sourceDir() . "/Tools/jhbuild/jhbuild-wrapper";
-
-    if (isEfl()) {
-        push(@jhbuildPrefix, '--efl');
-    } elsif (isGtk()) {
-        push(@jhbuildPrefix, '--gtk');
-    }
-    push(@jhbuildPrefix, 'run');
-
-    unshift(@jsDriverCmd, @jhbuildPrefix);
-}
-my $result = system(@jsDriverCmd);
-exit exitStatus($result)  if $result;
-
-my %failures;
-
-open EXPECTED, "expected.html" or die "Failed to open 'expected.html'\n";
-while (<EXPECTED>) {
-    last if /failures reported\.$/;
-}
-while (<EXPECTED>) {
-    chomp;
-    $failures{$_} = 1;
-}
-close EXPECTED;
-
-my %newFailures;
-
-open ACTUAL, "actual.html" or die "Failed to open 'actual.html'";
-while (<ACTUAL>) {
-    last if /failures reported\.$/;
-}
-while (<ACTUAL>) {
-    chomp;
-    if ($failures{$_}) {
-        delete $failures{$_};
-    } else {
-        $newFailures{$_} = 1;
-    }
-}
-close ACTUAL;
-
-my $numNewFailures = keys %newFailures;
-if ($numNewFailures) {
-    print "\n** Danger, Will Robinson! Danger! The following failures have been introduced:\n";
-    foreach my $failure (sort keys %newFailures) {
-        print "\t$failure\n";
-    }
-}
-
-my $numOldFailures = keys %failures;
-if ($numOldFailures) {
-    print "\nYou fixed the following test";
-    print "s" if $numOldFailures != 1;
-    print ":\n";
-    foreach my $failure (sort keys %failures) {
-        print "\t$failure\n";
-    }
-}
-
-print "\n";
-
-print "$numNewFailures regression";
-print "s" if $numNewFailures != 1;
-print " found.\n";
-
-print "$numOldFailures test";
-print "s" if $numOldFailures != 1;
-print " fixed.\n";
-
-print "OK.\n" if $numNewFailures == 0;
-exit(1)  if $numNewFailures;
diff --git a/Tools/Scripts/run-jsc b/Tools/Scripts/run-jsc
deleted file mode 100755
index e5341c1..0000000
--- a/Tools/Scripts/run-jsc
+++ /dev/null
@@ -1,59 +0,0 @@
-#!/usr/bin/perl
-
-# Copyright (C) 2006 Apple Computer, Inc.  All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer.
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution.
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# This script runs a list of scripts through jsc a specified number of times.
-
-use strict;
-use warnings;
-use File::Spec;
-use FindBin;
-use lib $FindBin::Bin;
-use Getopt::Long;
-use webkitdirs;
-
-my $usage = "Usage: run-jsc [--count run_count] [--verbose] shell_file [file2...]";
-
-my $count = 1;
-my $verbose = 0;
-GetOptions("count|c=i" => \$count,
-           "verbose|v" => \$verbose);
-die "$usage\n" if (@ARGV < 1);
-
-my $jsc = jscProductDir() . "/jsc @ARGV";
-$jsc .= " 2> " . File::Spec->devnull() unless $verbose;
-
-my $dyld = jscProductDir();
-
-$ENV{"DYLD_FRAMEWORK_PATH"} = $dyld;
-print STDERR "Running $count time(s): DYLD_FRAMEWORK_PATH=$dyld $jsc\n";
-while ($count--) {
-    if (system("$jsc") != 0) {
-        last;
-    }
-}
-
diff --git a/Tools/Scripts/run-launcher b/Tools/Scripts/run-launcher
deleted file mode 100755
index 32e2b8e..0000000
--- a/Tools/Scripts/run-launcher
+++ /dev/null
@@ -1,99 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2007 Apple Computer, Inc.  All rights reserved.
-# Copyright (C) 2007 Staikos Computing Services, Inc.  <info@staikos.net>
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Simplified "run" script for WebKit Open Source Project.
-
-use strict;
-use File::Spec::Functions qw/catdir/;
-use File::Temp qw/tempfile/;
-use FindBin;
-use lib $FindBin::Bin;
-use webkitdirs;
-
-setConfiguration();
-my $productDir = productDir();
-my $launcherPath = productDir();
-
-# Check to see that all the frameworks are built.
-checkFrameworks();
-
-# Set paths according to the build system used
-if (isQt()) {
-    my $libDir = catdir(productDir(), 'lib');
-    if (isWK2()) {
-        $launcherPath = catdir($launcherPath, "bin", "MiniBrowser");
-    } else {
-        $launcherPath = catdir($launcherPath, "bin", "QtTestBrowser");
-    }
-
-    $ENV{QTWEBKIT_PLUGIN_PATH} = catdir($libDir, 'plugins');
-
-    print "Starting webkit launcher, running against the built WebKit in $libDir...\n";
-    if (isDarwin()) {
-        $ENV{DYLD_LIBRARY_PATH} = $ENV{DYLD_LIBRARY_PATH} ? "$libDir:$ENV{DYLD_LIBRARY_PATH}" : $libDir;
-        $ENV{DYLD_FRAMEWORK_PATH} = $ENV{DYLD_FRAMEWORK_PATH} ? "$libDir:$ENV{DYLD_FRAMEWORK_PATH}" : $libDir;
-    } else {
-        $ENV{LD_LIBRARY_PATH} = $ENV{LD_LIBRARY_PATH} ? "$libDir:$ENV{LD_LIBRARY_PATH}" : $libDir;
-    }
-} else {
-
-    if (isGtk()) {
-        if (isWK2()) {
-            unshift(@ARGV, catdir($launcherPath, "Programs", "MiniBrowser"));
-        } else {
-            unshift(@ARGV, catdir($launcherPath, "Programs", "GtkLauncher"));
-        }
-        $launcherPath = catdir(sourceDir(), "Tools", "jhbuild", "jhbuild-wrapper");
-        unshift(@ARGV, ("--gtk", "run"));
-    }
-
-    if (isEfl()) {
-        if (isWK2()) {
-            unshift(@ARGV, catdir($launcherPath, "bin", "MiniBrowser"));
-        } else {
-            unshift(@ARGV, catdir($launcherPath, "bin", "EWebLauncher"));
-        }
-        $launcherPath = catdir(sourceDir(), "Tools", "jhbuild", "jhbuild-wrapper");
-        unshift(@ARGV, ("--efl", "run"));
-    }
-
-    if (isWx()) {
-        if (isDarwin()) {
-            $launcherPath = catdir($launcherPath, 'wxBrowser.app', 'Contents', 'MacOS', 'wxBrowser');
-        } else {
-            $ENV{LD_LIBRARY_PATH} = $ENV{LD_LIBRARY_PATH} ? "$productDir:$ENV{LD_LIBRARY_PATH}" : $productDir;
-            $launcherPath = catdir($launcherPath, 'wxBrowser');
-        }
-    }
-
-    print "Starting webkit launcher.\n";
-}
-
-exec $launcherPath, @ARGV or die;
-
diff --git a/Tools/Scripts/run-mangleme-tests b/Tools/Scripts/run-mangleme-tests
deleted file mode 100755
index 10196ef..0000000
--- a/Tools/Scripts/run-mangleme-tests
+++ /dev/null
@@ -1,176 +0,0 @@
-#!/usr/bin/perl
-
-# Copyright (C) 2006 Alexey Proskuryakov (ap@nypop.com)
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# A script to semi-automatically run mangleme tests.
-
-use strict;
-use warnings;
-
-use Cwd;
-use File::Spec;
-use FindBin;
-use Getopt::Long;
-use IPC::Open2;
-
-use lib $FindBin::Bin;
-use webkitdirs;
-
-sub openHTTPDIfNeeded();
-sub closeHTTPD();
-sub runSafariWithMangleme();
-
-# Argument handling
-my $guardMalloc = '';
-my $httpdPort = 8000;
-my $downloadTest;
-
-GetOptions(
-    'guard-malloc|g' => \$guardMalloc,
-    'get=s' => \$downloadTest,
-    'port=i' => \$httpdPort
-);
-
-
-setConfiguration();
-my $productDir = productDir();
-
-chdirWebKit();
-
-checkFrameworks();
-
-mkdir "WebKitBuild/mangleme";
-(system "/usr/bin/make", "-C", "Tools/mangleme") == 0 or die;
-
-my $httpdOpen = 0;
-openHTTPDIfNeeded();
-
-if ($downloadTest) {
-    system "/usr/bin/curl -o ~/Desktop/mangleme$downloadTest.html http://127.0.0.1:$httpdPort/remangle.cgi?$downloadTest";
-    print "Saved the test as mangleme$downloadTest.html on the desktop\n";
-} else {
-    runSafariWithMangleme();
-    print "Last generated tests:\n";
-    system "grep 'Mangle attempt' /tmp/WebKit/error_log.txt | tail -n -5 | awk ' {print \$4}'";
-}
-
-closeHTTPD();
-
-
-sub runSafariWithMangleme()
-{
-    my $redirectTo;
-    if (@ARGV) {
-        $redirectTo = "http://127.0.0.1:$httpdPort/remangle.cgi?$ARGV[0]";
-    } else {
-        $redirectTo = "http://127.0.0.1:$httpdPort/mangle.cgi";
-    }
-
-    open REDIRECT_HTML, ">", "/tmp/WebKit/redirect.html" or die;
-    print REDIRECT_HTML "<html>\n";
-    print REDIRECT_HTML "    <head>\n";
-    print REDIRECT_HTML "        <meta http-equiv=\"refresh\" content=\"1;URL=$redirectTo\" />\n";
-    print REDIRECT_HTML "        <script type=\"text/javascript\">\n";
-    print REDIRECT_HTML "            document.location = \"$redirectTo\";\n";
-    print REDIRECT_HTML "        </script>\n";
-    print REDIRECT_HTML "    </head>\n";
-    print REDIRECT_HTML "    <body>\n";
-    print REDIRECT_HTML "    </body>\n";
-    print REDIRECT_HTML "</html>\n";
-    close REDIRECT_HTML;
-    
-    local %ENV;
-    $ENV{DYLD_INSERT_LIBRARIES} = "/usr/lib/libgmalloc.dylib" if $guardMalloc;
-    system "Tools/Scripts/run-safari", "-NSOpen", "/tmp/WebKit/redirect.html";
-}
-
-sub openHTTPDIfNeeded()
-{
-    return if $httpdOpen;
-
-    mkdir "/tmp/WebKit";
-    
-    if (-f "/tmp/WebKit/httpd.pid") {
-        my $oldPid = `cat /tmp/WebKit/httpd.pid`;
-        chomp $oldPid;
-        if (0 != kill 0, $oldPid) {
-            print "\nhttpd is already running: pid $oldPid, killing...\n";
-            kill 15, $oldPid;
-            
-            my $retryCount = 20;
-            while ((0 != kill 0, $oldPid) && $retryCount) {
-                sleep 1;
-                --$retryCount;
-            }
-            
-            die "Timed out waiting for httpd to quit" unless $retryCount;
-        }
-    }
-    
-    my $testDirectory = getcwd() . "/LayoutTests";
-    my $manglemeDirectory = getcwd() . "/WebKitBuild/mangleme";
-    my $httpdPath = "/usr/sbin/httpd";
-    my $httpdConfig = "$testDirectory/http/conf/httpd.conf";
-    $httpdConfig = "$testDirectory/http/conf/apache2-httpd.conf" if `$httpdPath -v` =~ m|Apache/2|;
-    my $documentRoot = "$manglemeDirectory";
-    my $typesConfig = "$testDirectory/http/conf/mime.types";
-    my $sslCertificate = "$testDirectory/http/conf/webkit-httpd.pem";
-    my $listen = "127.0.0.1:$httpdPort";
-
-    open2(\*HTTPDIN, \*HTTPDOUT, $httpdPath, 
-        "-f", "$httpdConfig",
-        "-C", "DocumentRoot \"$documentRoot\"",
-        "-C", "Listen $listen",
-        "-c", "TypesConfig \"$typesConfig\"",
-        "-c", "CustomLog \"/tmp/WebKit/access_log.txt\" common",
-        "-c", "ErrorLog \"/tmp/WebKit/error_log.txt\"",
-        "-c", "SSLCertificateFile \"$sslCertificate\"",
-        # Apache wouldn't run CGIs with permissions==700 otherwise
-        "-c", "User \"#$<\"");
-
-    my $retryCount = 20;
-    while (system("/usr/bin/curl -q --silent --stderr - --output " . File::Spec->devnull() . " $listen") && $retryCount) {
-        sleep 1;
-        --$retryCount;
-    }
-    
-    die "Timed out waiting for httpd to start" unless $retryCount;
-    
-    $httpdOpen = 1;
-}
-
-sub closeHTTPD()
-{
-    return if !$httpdOpen;
-
-    close HTTPDIN;
-    close HTTPDOUT;
-
-    kill 15, `cat /tmp/WebKit/httpd.pid` if -f "/tmp/WebKit/httpd.pid";
-
-    $httpdOpen = 0;
-}
diff --git a/Tools/Scripts/run-minibrowser b/Tools/Scripts/run-minibrowser
deleted file mode 100755
index c841651..0000000
--- a/Tools/Scripts/run-minibrowser
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2005, 2007 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Simplified "run" script for launching the WebKit2 MiniBrowser.
-
-use strict;
-use FindBin;
-use lib $FindBin::Bin;
-use webkitdirs;
-
-printHelpAndExitForRunAndDebugWebKitAppIfNeeded();
-
-setConfiguration();
-
-exit exitStatus(runMiniBrowser());
diff --git a/Tools/Scripts/run-pageloadtest b/Tools/Scripts/run-pageloadtest
deleted file mode 100755
index 3542aa9..0000000
--- a/Tools/Scripts/run-pageloadtest
+++ /dev/null
@@ -1,92 +0,0 @@
-#!/usr/bin/perl
-
-# Copyright (C) 2006 Eric Seidel (eric@webkit.org)
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Script to run the WebKit Open Source Project page load tests (PLTs).
-
-# Run all the tests passed in on the command line.
-
-use strict;
-use warnings;
-
-use File::Basename;
-use File::Spec;
-use FindBin;
-use Getopt::Long;
-
-use lib $FindBin::Bin;
-use webkitdirs;
-
-# Argument handling
-my $testName = 'svg';
-my $showHelp = 0;
-
-my $usage =
-    "Usage: " . basename($0) . "[options] testName\n" .
-    "  --help                  Show this help message\n";
-
-my $getOptionsResult = GetOptions('help' => \$showHelp);
-
-if (!$getOptionsResult || $showHelp) {
-    print STDERR $usage;
-    exit 1;
-}
-
-$testName = shift @ARGV if (@ARGV);
-
-my $safariExecutablePath = safariPath();
-my $safariResourcePath = File::Spec->catdir(dirname(dirname($safariExecutablePath)), "Resources");
-
-# Check to see that all the frameworks are built.
-checkFrameworks();
-
-chdirWebKit();
-
-if ($testName eq 'svg') {
-    my $suiteFile = "PerformanceTests/PageLoad/$testName/$testName.pltsuite";
-    my $webkitPath = sourceDir();
-    `cat "$suiteFile" | perl -pe 's|WEBKIT_PATH|$webkitPath|' > $safariResourcePath/$testName.pltsuite`
-}
-
-die "Please copy ${testName}.pltsuite to ${safariResourcePath}/${testName}.pltsuite"
-    if (! -f "${safariResourcePath}/${testName}.pltsuite");
-
-setConfiguration();
-
-my $productDir = productDir();
-
-# Set up DYLD_FRAMEWORK_PATH to point to the product directory.
-print "Starting Safari with DYLD_FRAMEWORK_PATH set to point to built WebKit in $productDir.\n";
-$ENV{DYLD_FRAMEWORK_PATH} = $productDir;
-$ENV{WEBKIT_UNSET_DYLD_FRAMEWORK_PATH} = "YES";
-
-my @testCommands = ('activate');
-# Autovicki would clear history, we skip that here as this is likely an active user account
-@testCommands = (@testCommands, ("run $testName", 'emptyCache', 'wait 30'));
-@testCommands = (@testCommands, (("run $testName", 'wait 10') x 3));
-my $testCommandsString = join('; ', @testCommands);
-exec $safariExecutablePath, '--test-commands', $testCommandsString or die;
diff --git a/Tools/Scripts/run-qtwebkit-tests b/Tools/Scripts/run-qtwebkit-tests
deleted file mode 100755
index ded87c5..0000000
--- a/Tools/Scripts/run-qtwebkit-tests
+++ /dev/null
@@ -1,415 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-
-#Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
-
-#This library is free software; you can redistribute it and/or
-#modify it under the terms of the GNU Library General Public
-#License as published by the Free Software Foundation; either
-#version 2 of the License, or (at your option) any later version.
-
-#This library is distributed in the hope that it will be useful,
-#but WITHOUT ANY WARRANTY; without even the implied warranty of
-#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-#Library General Public License for more details.
-
-#You should have received a copy of the GNU Library General Public License
-#along with this library; see the file COPYING.LIB.  If not, write to
-#the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-#Boston, MA 02110-1301, USA.
-
-from __future__ import with_statement
-
-import sys
-import os
-import re
-import logging
-from subprocess import Popen, PIPE, STDOUT
-from optparse import OptionParser
-
-
-class Log(object):
-    def __init__(self, name):
-        self._log = logging.getLogger(name)
-        self.debug = self._log.debug
-        self.warn = self._log.warn
-        self.error = self._log.error
-        self.exception = self._log.exception
-        self.info = self._log.info
-
-
-class Options(Log):
-    """ Option manager. It parses and checks script's parameters, sets an internal variable. """
-
-    def __init__(self, args):
-        Log.__init__(self, "Options")
-        log = self._log
-        opt = OptionParser("%prog [options] PathToSearch.\nTry -h or --help.")
-        opt.add_option("-j", "--parallel-level", action="store", type="int",
-              dest="parallel_level", default=None,
-              help="Number of parallel processes executing the Qt's tests. Default: cpu count.")
-        opt.add_option("-v", "--verbose", action="store", type="int",
-              dest="verbose", default=2,
-              help="Verbose level (0 - quiet, 1 - errors only, 2 - infos and warnings, 3 - debug information). Default: %default.")
-        opt.add_option("", "--tests-options", action="store", type="string",
-              dest="tests_options", default="",
-              help="Parameters passed to Qt's tests (for example '-eventdelay 123').")
-        opt.add_option("-o", "--output-file", action="store", type="string",
-              dest="output_file", default="/tmp/qtwebkittests.html",
-              help="File where results will be stored. The file will be overwritten. Default: %default.")
-        opt.add_option("-b", "--browser", action="store", dest="browser",
-              default="xdg-open",
-              help="Browser in which results will be opened. Default %default.")
-        opt.add_option("", "--do-not-open-results", action="store_false",
-              dest="open_results", default=True,
-              help="The results shouldn't pop-up in a browser automatically")
-        opt.add_option("-d", "--developer-mode", action="store_true",
-              dest="developer", default=False,
-              help="Special mode for debugging. In general it simulates human behavior, running all autotests. In the mode everything is executed synchronously, no html output will be generated, no changes or transformation will be applied to stderr or stdout. In this mode options; parallel-level, output-file, browser and do-not-open-results will be ignored.")
-        opt.add_option("-t", "--timeout", action="store", type="int",
-              dest="timeout", default=0,
-              help="Timeout in seconds for each testsuite. Zero value means that there is not timeout. Default: %default.")
-
-        self._o, self._a = opt.parse_args(args)
-        verbose = self._o.verbose
-        if verbose == 0:
-            logging.basicConfig(level=logging.CRITICAL,)
-        elif verbose == 1:
-            logging.basicConfig(level=logging.ERROR,)
-        elif verbose == 2:
-            logging.basicConfig(level=logging.INFO,)
-        elif verbose == 3:
-            logging.basicConfig(level=logging.DEBUG,)
-        else:
-            logging.basicConfig(level=logging.INFO,)
-            log.warn("Bad verbose level, switching to default.")
-        try:
-            if not os.path.exists(self._a[0]):
-                raise Exception("Given path doesn't exist.")
-            if len(self._a) > 1:
-                raise IndexError("Only one directory could be provided.")
-            self._o.path = self._a[0]
-        except IndexError:
-            log.error("Bad usage. Please try -h or --help.")
-            sys.exit(1)
-        except Exception:
-            log.error("Path '%s' doesn't exist", self._a[0])
-            sys.exit(2)
-        if self._o.developer:
-            if not self._o.parallel_level is None:
-                log.warn("Developer mode sets parallel-level option to one.")
-            self._o.parallel_level = 1
-            self._o.open_results = False
-
-    def __getattr__(self, attr):
-        """ Maps all options properties into this object (remove one level of indirection). """
-        return getattr(self._o, attr)
-
-
-def run_test(args):
-    """ Runs one given test.
-    args should contain a tuple with 3 elements;
-      TestSuiteResult containing full file name of an autotest executable.
-      str with options that should be passed to the autotest executable
-      bool if true then the stdout will be buffered and separated from the stderr, if it is false
-        then the stdout and the stderr will be merged together and left unbuffered (the TestSuiteResult output will be None).
-      int time after which the autotest executable would be killed
-    """
-    log = logging.getLogger("Exec")
-    test_suite, options, buffered, timeout = args
-    timer = None
-    try:
-        log.info("Running... %s", test_suite.test_file_name())
-        if buffered:
-            tst = Popen([test_suite.test_file_name()] + options.split(), stdout=PIPE, stderr=None)
-        else:
-            tst = Popen([test_suite.test_file_name()] + options.split(), stdout=None, stderr=STDOUT)
-        if timeout:
-            from threading import Timer
-            log.debug("Setting timeout timer %i sec on %s (process %s)", timeout, test_suite.test_file_name(), tst.pid)
-            def process_killer():
-                try:
-                    try:
-                        tst.terminate()
-                    except AttributeError:
-                        # Workaround for python version < 2.6 it can be removed as soon as we drop support for python2.5
-                        try:
-                            import ctypes
-                            PROCESS_TERMINATE = 1
-                            handle = ctypes.windll.kernel32.OpenProcess(PROCESS_TERMINATE, False, tst.pid)
-                            ctypes.windll.kernel32.TerminateProcess(handle, -1)
-                            ctypes.windll.kernel32.CloseHandle(handle)
-                        except AttributeError:
-                            # windll is not accessible so we are on *nix like system
-                            import signal
-                            os.kill(tst.pid, signal.SIGTERM)
-                    log.error("Timeout, process '%s' (%i) was terminated", test_suite.test_file_name(), tst.pid)
-                except OSError, e:
-                    # the process was finished before got killed
-                    pass
-            timer = Timer(timeout, process_killer)
-            timer.start()
-    except OSError, e:
-        log.exception("Can't open an autotest file: '%s'. Skipping the test...", e.filename)
-    else:
-        test_suite.set_output(tst.communicate()[0])  # takes stdout only, in developer mode it would be None.
-    log.info("Finished %s", test_suite.test_file_name())
-    if timeout:
-        timer.cancel()
-    return test_suite
-
-
-class TestSuiteResult(object):
-    """ Keeps information about a test. """
-
-    def __init__(self):
-        self._output = None
-        self._test_file_name = None
-
-    def set_output(self, xml):
-        if xml:
-            self._output = xml.strip()
-
-    def output(self):
-        return self._output
-
-    def set_test_file_name(self, file_name):
-        self._test_file_name = file_name
-
-    def test_file_name(self):
-        return self._test_file_name
-
-
-class Main(Log):
-    """ The main script. All real work is done in run() method. """
-
-    def __init__(self, options):
-        Log.__init__(self, "Main")
-        self._options = options
-        if options.parallel_level > 1 or options.parallel_level is None:
-            try:
-                from multiprocessing import Pool
-            except ImportError:
-                self.warn("Import Error: the multiprocessing module couldn't be loaded (may be lack of python-multiprocessing package?). The Qt autotests will be executed one by one.")
-                options.parallel_level = 1
-        if options.parallel_level == 1:
-
-            class Pool(object):
-                """ A hack, created to avoid problems with multiprocessing module, this class is single thread replacement for the multiprocessing.Pool class. """
-                def __init__(self, processes):
-                    pass
-
-                def imap_unordered(self, func, files):
-                    return map(func, files)
-
-                def map(self, func, files):
-                    return map(func, files)
-
-        self._Pool = Pool
-
-    def run(self):
-        """ Find && execute && publish results of all test. "All in one" function. """
-        # This is needed for Qt finding our QML modules. The current code makes our
-        # two existing API tests (WK1 API and WK2 UI process API) work correctly.
-        qml_import_path = self._options.path + "../../../../imports"
-        qml_import_path += ":" + self._options.path + "../../../../../../imports"
-        os.putenv("QML_IMPORT_PATH", qml_import_path)
-        path = os.getenv("PATH")
-        path += ":" + self._options.path + "../../../../../../bin"
-        os.putenv("PATH", path)
-        self.debug("Searching executables...")
-        tests_executables = self.find_tests_paths(self._options.path)
-        self.debug("Found: %s", len(tests_executables))
-        self.debug("Executing tests...")
-        results = self.run_tests(tests_executables)
-        if not self._options.developer:
-            self.debug("Transforming...")
-            transformed_results = self.transform(results)
-            self.debug("Publishing...")
-            self.announce_results(transformed_results)
-
-    def find_tests_paths(self, path):
-        """ Finds all tests executables inside the given path. """
-        executables = []
-        for root, dirs, files in os.walk(path):
-            # Check only for a file that name starts from 'tst_' and that we can execute.
-            filtered_path = filter(lambda w: w.startswith('tst_') and os.access(os.path.join(root, w), os.X_OK), files)
-            filtered_path = map(lambda w: os.path.join(root, w), filtered_path)
-            for file_name in filtered_path:
-                r = TestSuiteResult()
-                r.set_test_file_name(file_name)
-                executables.append(r)
-        return executables
-
-    def run_tests(self, files):
-        """ Executes given files by using a pool of workers. """
-        workers = self._Pool(processes=self._options.parallel_level)
-        # to each file add options.
-        self.debug("Using %s the workers pool, number of workers %i", repr(workers), self._options.parallel_level)
-        package = map(lambda w: [w, self._options.tests_options, not self._options.developer, self._options.timeout], files)
-        self.debug("Generated packages for workers: %s", repr(package))
-        results = workers.map(run_test, package)  # Collects results.
-        return results
-
-    def transform(self, results):
-        """ Transforms list of the results to specialized versions. """
-        stdout = self.convert_to_stdout(results)
-        html = self.convert_to_html(results)
-        return {"stdout": stdout, "html": html}
-
-    def announce_results(self, results):
-        """ Shows the results. """
-        self.announce_results_stdout(results['stdout'])
-        self.announce_results_html(results['html'])
-
-    def announce_results_stdout(self, results):
-        """ Show the results by printing to the stdout."""
-        print(results)
-
-    def announce_results_html(self, results):
-        """ Shows the result by creating a html file and calling a web browser to render it. """
-        with file(self._options.output_file, 'w') as f:
-            f.write(results)
-        if self._options.open_results:
-            Popen(self._options.browser + " " + self._options.output_file, stdout=None, stderr=None, shell=True)
-
-    def check_crash_occurences(self, results):
-        """ Checks if any test crashes and it sums them  """
-        totals = [0,0,0]
-        crash_count = 0
-        txt = []
-        #collecting results into one container with checking crash
-        for result in results:
-            found = None
-            if result.output():
-                txt.append(result.output())
-                found = re.search(r"([0-9]+) passed, ([0-9]+) failed, ([0-9]+) skipped", result.output())
-
-            if found:
-                totals = reduce(lambda x, y: (int(x[0]) + int(y[0]), int(x[1]) + int(y[1]), int(x[2]) + int(y[2])), (totals, found.groups()))
-            else:
-                txt.append('CRASHED: %s' % result.test_file_name())
-                crash_count += 1
-                self.warn("Missing sub-summary: %s" % result.test_file_name())
-
-        txt='\n\n'.join(txt)
-
-        totals = list(totals)
-        totals.append(crash_count)
-        totals = map(str, totals)
-        return txt, totals
-
-    def convert_to_stdout(self, results):
-        """ Converts results, that they could be nicely presented in the stdout. """
-        txt, totals = self.check_crash_occurences(results)
-
-        totals = "%s passed, %s failed, %s skipped, %s crashed" % (totals[0], totals[1], totals[2], totals[3])
-
-        txt += '\n' + '*' * 70
-        txt += "\n**" + ("TOTALS: " + totals).center(66) + '**'
-        txt += '\n' + '*' * 70 + '\n'
-        return txt
-
-    def convert_to_html(self, results):
-        """ Converts results, that they could showed as a html page. """
-        txt, totals = self.check_crash_occurences(results)
-        txt = txt.replace('&', '&amp;').replace('<', "&lt;").replace('>', "&gt;")
-        # Add a color and a style.
-        txt = re.sub(r"([* ]+(Finished)[ a-z_A-Z0-9]+[*]+)",
-            lambda w: r"",
-            txt)
-        txt = re.sub(r"([*]+[ a-z_A-Z0-9]+[*]+)",
-            lambda w: "<case class='good'><br><br><b>" + w.group(0) + r"</b></case>",
-            txt)
-        txt = re.sub(r"(Config: Using QTest library)((.)+)",
-            lambda w: "\n<case class='good'><br><i>" + w.group(0) + r"</i>  ",
-            txt)
-        txt = re.sub(r"\n(PASS)((.)+)",
-            lambda w: "</case>\n<case class='good'><br><status class='pass'>" + w.group(1) + r"</status>" + w.group(2),
-            txt)
-        txt = re.sub(r"\n(FAIL!)((.)+)",
-            lambda w: "</case>\n<case class='bad'><br><status class='fail'>" + w.group(1) + r"</status>" + w.group(2),
-            txt)
-        txt = re.sub(r"\n(XPASS)((.)+)",
-            lambda w: "</case>\n<case class='bad'><br><status class='xpass'>" + w.group(1) + r"</status>" + w.group(2),
-            txt)
-        txt = re.sub(r"\n(XFAIL)((.)+)",
-            lambda w: "</case>\n<case class='good'><br><status class='xfail'>" + w.group(1) + r"</status>" + w.group(2),
-            txt)
-        txt = re.sub(r"\n(SKIP)((.)+)",
-            lambda w: "</case>\n<case class='good'><br><status class='xfail'>" + w.group(1) + r"</status>" + w.group(2),
-            txt)
-        txt = re.sub(r"\n(QWARN)((.)+)",
-            lambda w: "</case>\n<case class='bad'><br><status class='warn'>" + w.group(1) + r"</status>" + w.group(2),
-            txt)
-        txt = re.sub(r"\n(RESULT)((.)+)",
-            lambda w: "</case>\n<case class='good'><br><status class='benchmark'>" + w.group(1) + r"</status>" + w.group(2),
-            txt)
-        txt = re.sub(r"\n(QFATAL|CRASHED)((.)+)",
-            lambda w: "</case>\n<case class='bad'><br><status class='crash'>" + w.group(1) + r"</status>" + w.group(2),
-            txt)
-        txt = re.sub(r"\n(Totals:)([0-9', a-z]*)",
-            lambda w: "</case>\n<case class='good'><br><b>" + w.group(1) + r"</b>" + w.group(2) + "</case>",
-            txt)
-        # Find total count of failed, skipped, passed and crashed tests.
-        totals = "%s passed, %s failed, %s skipped, %s crashed." % (totals[0], totals[1], totals[2], totals[3])
-        # Create a header of the html source.
-        txt = """
-        <html>
-        <head>
-          <script>
-          function init() {
-              // Try to find the right styleSheet (this document could be embedded in an other html doc)
-              for (i = document.styleSheets.length - 1; i >= 0; --i) {
-                  if (document.styleSheets[i].cssRules[0].selectorText == "case.good") {
-                      resultStyleSheet = i;
-                      return;
-                  }
-              }
-              // The styleSheet hasn't been found, but it should be the last one.
-              resultStyleSheet = document.styleSheets.length - 1;
-          }
-
-          function hide() {
-              document.styleSheets[resultStyleSheet].cssRules[0].style.display='none';
-          }
-
-          function show() {
-              document.styleSheets[resultStyleSheet].cssRules[0].style.display='';
-          }
-
-          </script>
-          <style type="text/css">
-            case.good {color:black}
-            case.bad {color:black}
-            status.pass {color:green}
-            status.crash {color:red}
-            status.fail {color:red}
-            status.xpass {color:663300}
-            status.xfail {color:004500}
-            status.benchmark {color:000088}
-            status.warn {color:orange}
-            status.crash {color:red; text-decoration:blink; background-color:black}
-          </style>
-        </head>
-        <body onload="init()">
-        <center>
-          <h1>Qt's autotests results</h1>%(totals)s<br>
-          <hr>
-          <form>
-            <input type="button" value="Show failures only" onclick="hide()"/>
-            &nbsp;
-            <input type="button" value="Show all" onclick="show()"/>
-          </form>
-        </center>
-        <hr>
-        %(results)s
-        </body>
-        </html>""" % {"totals": totals, "results": txt}
-        return txt
-
-
-if __name__ == '__main__':
-    options = Options(sys.argv[1:])
-    main = Main(options)
-    main.run()
diff --git a/Tools/Scripts/run-regexp-tests b/Tools/Scripts/run-regexp-tests
deleted file mode 100755
index dc35ce9..0000000
--- a/Tools/Scripts/run-regexp-tests
+++ /dev/null
@@ -1,126 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2011 Apple Computer, Inc.  All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Script to run the WebKit Open Source Project Regular Expression functional tests.
-
-use strict;
-use FindBin;
-use Getopt::Long qw(:config pass_through);
-use lib $FindBin::Bin;
-use webkitdirs;
-use POSIX;
-
-# determine configuration
-setConfiguration();
-my $configuration = configuration();
-
-my $defaultTestFile = "RegExpTest.data";
-
-# These variables are intentionally left undefined.
-my $root;
-my $testFile;
-my $showHelp;
-my $verbose;
-
-my $buildJSC = 1;
-
-my $programName = basename($0);
-my $buildJSCDefault = $buildJSC ? "will check" : "will not check";
-my $usage = <<EOF;
-Usage: $programName [options] [options to pass to build system]
-  --help                        Show this help message
-  --file=                       File to use instead of default ($defaultTestFile)
-  --root=                       Path to pre-built root containing jsc
-  --[no-]build                  Check (or don't check) to see if the jsc build is up-to-date (default: $buildJSCDefault)
-  --verbose                     Increase test output on failures
-EOF
-
-GetOptions(
-    'verbose' => \$verbose,
-    'root=s' => \$root,
-    'file=s' => \$testFile,
-    'build!' => \$buildJSC,
-    'help' => \$showHelp
-);
-
-# Assume any arguments left over from GetOptions are assumed to be build arguments
-my @buildArgs = @ARGV;
-
-
-if ($showHelp) {
-   print STDERR $usage;
-   exit 1;
-}
-
-setConfigurationProductDir(Cwd::abs_path($root)) if (defined($root));
-
-if (!defined($root) && $buildJSC) {
-    chdirWebKit();
-
-    push(@buildArgs, argumentsForConfiguration());
-    
-    print "Running: build-jsc " . join(" ", @buildArgs) . "\n";
-    my $buildResult = system "perl", "Tools/Scripts/build-jsc", @buildArgs;
-    if ($buildResult) {
-        print STDERR "Compiling jsc failed!\n";
-        exit exitStatus($buildResult);
-    }
-}
-
-my $productDir = jscProductDir();
-$ENV{DYLD_FRAMEWORK_PATH} = $productDir;
-setPathForRunningWebKitApp(\%ENV) if isCygwin();
-
-sub testapiPath($)
-{
-    my ($productDir) = @_;
-    my $jscName = "testapi";
-    $jscName .= "_debug" if configurationForVisualStudio() eq "Debug_All";
-    return "$productDir/$jscName";
-}
-
-# Find JavaScriptCore directory
-if (!defined($testFile)) {
-    $testFile = $defaultTestFile;
-    chdirWebKit();
-    chdir("Source/JavaScriptCore");
-    chdir "tests/regexp" or die;
-}
-
-my $command = $productDir . "/testRegExp";
-
-if (defined($verbose) && $verbose) {
-    $command .= " --verbose";
-}
-
-$command .= " " . $testFile;
-
-printf "Running: " . $command . "\n";
-my $result = system $command;
-exit exitStatus($result)  if $result;
-
diff --git a/Tools/Scripts/run-safari b/Tools/Scripts/run-safari
deleted file mode 100755
index 8688a93..0000000
--- a/Tools/Scripts/run-safari
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2005, 2007 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Simplified "run" script for WebKit Open Source Project.
-
-use strict;
-use FindBin;
-use lib $FindBin::Bin;
-use webkitdirs;
-
-printHelpAndExitForRunAndDebugWebKitAppIfNeeded();
-
-setConfiguration();
-
-# Check to see that all the frameworks are built.
-checkFrameworks();
-
-exit exitStatus(runSafari());
diff --git a/Tools/Scripts/run-sunspider b/Tools/Scripts/run-sunspider
deleted file mode 100755
index 4aec301..0000000
--- a/Tools/Scripts/run-sunspider
+++ /dev/null
@@ -1,126 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2007 Apple Inc. All rights reserved.
-# Copyright (C) 2007 Eric Seidel <eric@webkit.org>
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
-# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-
-use strict;
-use FindBin;
-use Getopt::Long qw(:config pass_through);
-use lib $FindBin::Bin;
-use webkitdirs;
-use POSIX;
-
-# determine configuration, but default to "Release" instead of last-used configuration
-setConfiguration("Release");
-setConfiguration();
-my $configuration = configuration();
-
-my $root;
-my $testRuns = 10; # This number may be different from what sunspider defaults to (that's OK)
-my $runInstruments = 0;
-my $suite = "";
-my $ubench = 0;
-my $v8suite = 0;
-my $parseonly = 0;
-my $setBaseline = 0;
-my $showHelp = 0;
-my $testsPattern;
-my $noBuild = 0;
-
-my $programName = basename($0);
-my $usage = <<EOF;
-Usage: $programName [options] [options to pass to build system]
-  --help            Show this help message
-  --set-baseline    Set baseline for future comparisons
-  --root            Path to root tools build
-  --runs            Number of times to run tests (default: $testRuns)
-  --tests           Only run tests matching provided pattern
-  --instruments     Sample with the Mac OS X "Instruments" tool (Time Profile) (implies --runs=1)
-  --suite           Select a specific benchmark suite. The default is sunspider-0.9.1
-  --ubench          Use microbenchmark suite instead of regular tests. Same as --suite=ubench
-  --v8-suite        Use the V8 benchmark suite. Same as --suite=v8-v4
-  --parse-only      Use the parse-only benchmark suite. Same as --suite=parse-only
-  --no-build        Do not try to build JSC before running the tests.
-EOF
-
-GetOptions('root=s' => sub { my ($x, $value) = @_; $root = $value; setConfigurationProductDir(Cwd::abs_path($root)); },
-           'runs=i' => \$testRuns,
-           'set-baseline' => \$setBaseline,
-           'instruments' => \$runInstruments,
-           'suite=s' => \$suite,
-           'ubench' => \$ubench,
-           'v8-suite' => \$v8suite,
-           'parse-only' => \$parseonly,
-           'tests=s' => \$testsPattern,
-           'help' => \$showHelp,
-           'no-build' => \$noBuild);
-
-if ($showHelp) {
-   print STDERR $usage;
-   exit 1;
-}
-
-sub buildJSC
-{
-    if (!defined($root)){
-        push(@ARGV,  "--" . $configuration);
-        
-        chdirWebKit();
-        my $buildResult = system currentPerlPath(), "Tools/Scripts/build-jsc", @ARGV;
-        if ($buildResult) {
-            print STDERR "Compiling jsc failed!\n";
-            exit exitStatus($buildResult);
-        }
-    }
-}
-
-sub setupEnvironmentForExecution($)
-{
-    my ($productDir) = @_;
-    print "Starting sunspider with DYLD_FRAMEWORK_PATH set to point to built JavaScriptCore in $productDir.\n";
-    $ENV{DYLD_FRAMEWORK_PATH} = $productDir;
-    # FIXME: Other platforms may wish to augment this method to use LD_LIBRARY_PATH, etc.
-}
-
-unless ($noBuild) {
-    buildJSC();
-}
-
-chdirWebKit();
-chdir("PerformanceTests/SunSpider");
-
-my $productDir = jscProductDir();
-
-setupEnvironmentForExecution($productDir);
-my @args = ("--shell", jscPath($productDir), "--runs", $testRuns);
-# This code could be removed if we chose to pass extra args to sunspider instead of Xcode
-push @args, "--set-baseline" if $setBaseline;
-push @args, "--instruments" if $runInstruments;
-push @args, "--suite=${suite}" if $suite;
-push @args, "--ubench" if $ubench;
-push @args, "--v8-suite" if $v8suite;
-push @args, "--parse-only" if $parseonly;
-push @args, "--tests", $testsPattern if $testsPattern;
-
-exec currentPerlPath(), "./sunspider", @args;
diff --git a/Tools/Scripts/run-test-runner b/Tools/Scripts/run-test-runner
deleted file mode 100755
index b474eb5..0000000
--- a/Tools/Scripts/run-test-runner
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2010 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
-# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
-# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-# THE POSSIBILITY OF SUCH DAMAGE.
-
-# Simplified "run" script for launching the WebKit2 WebKitTestRunner.
-
-use strict;
-use FindBin;
-use lib $FindBin::Bin;
-use webkitdirs;
-
-printHelpAndExitForRunAndDebugWebKitAppIfNeeded();
-
-setConfiguration();
-
-exit exitStatus(runWebKitTestRunner());
diff --git a/Tools/Scripts/run-test-webkit-api b/Tools/Scripts/run-test-webkit-api
deleted file mode 100755
index 90b27f7..0000000
--- a/Tools/Scripts/run-test-webkit-api
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2010 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Simplified "run" script for launching TestWebKitAPI.
-
-use strict;
-use FindBin;
-use lib $FindBin::Bin;
-use webkitdirs;
-
-printHelpAndExitForRunAndDebugWebKitAppIfNeeded();
-
-setConfiguration();
-
-exit exitStatus(runTestWebKitAPI());
diff --git a/Tools/Scripts/run-webkit-app b/Tools/Scripts/run-webkit-app
deleted file mode 100755
index d0c17f5..0000000
--- a/Tools/Scripts/run-webkit-app
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2005 Apple Computer, Inc.  All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Simplified "run" script for WebKit Open Source Project.
-
-use strict;
-use FindBin;
-use lib $FindBin::Bin;
-use webkitdirs;
-
-printHelpAndExitForRunAndDebugWebKitAppIfNeeded();
-
-setConfiguration();
-
-die "Did not specify an application to open (e.g. run-webkit-app AppName).\n" unless length($ARGV[0]) > 0;
-
-# Check to see that all the frameworks are built.
-checkFrameworks();
-
-my $appPath = shift(@ARGV);
-exit exitStatus(runMacWebKitApp($appPath, USE_OPEN_COMMAND));
diff --git a/Tools/Scripts/run-webkit-httpd b/Tools/Scripts/run-webkit-httpd
deleted file mode 100755
index af4d4f3..0000000
--- a/Tools/Scripts/run-webkit-httpd
+++ /dev/null
@@ -1,97 +0,0 @@
-#!/usr/bin/perl
-
-# Copyright (C) 2005, 2006, 2007 Apple Inc.  All rights reserved.
-# Copyright (C) 2006 Alexey Proskuryakov (ap@nypop.com)
-# Copyright (C) 2011 Research In Motion Limited. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Script to run Apache with the same configuration as used in http layout tests.
-
-use strict;
-use warnings;
-
-use Cwd;
-use File::Path;
-use File::Basename;
-use Getopt::Long;
-use FindBin;
-
-use lib $FindBin::Bin;
-use webkitperl::httpd;
-use webkitdirs;
-
-# FIXME: Dynamic HTTP-port configuration in this file is wrong.  The various
-# apache config files in LayoutTests/http/config govern the port numbers.
-# Dynamic configuration as-written will also cause random failures in
-# an IPv6 environment.  See https://bugs.webkit.org/show_bug.cgi?id=37104.
-# Argument handling
-my $httpdPort = 8000;
-my $allInterfaces = 0;
-my $showHelp;
-
-my $result = GetOptions(
-    'all-interfaces|a' => \$allInterfaces,
-    'help|h' => \$showHelp,
-    'port=i' => \$httpdPort,
-);
-
-if (!$result || @ARGV || $showHelp) {
-    print "Usage: " . basename($0) . " [options]\n";
-    print "  -a|--all-interfaces  Bind to all interfaces\n";
-    print "  -h|--help            Show this help message\n";
-    print "  -p|--port NNNN       Bind to port NNNN\n";
-    exit 1;
-}
-
-setConfiguration();
-my $productDir = productDir();
-chdirWebKit();
-my $testDirectory = File::Spec->catfile(getcwd(), "LayoutTests");
-my $listen = "127.0.0.1:$httpdPort";
-$listen = "$httpdPort" if ($allInterfaces);
-
-if ($allInterfaces) {
-    print "Starting httpd on port $httpdPort (all interfaces)...\n";
-} else {
-    print "Starting httpd on <http://$listen/>...\n";
-}
-setShouldWaitForUserInterrupt();
-print "Press Ctrl+C to stop it.\n\n";
-
-my @args = (
-    "-C", "Listen $listen",
-    "-c", "CustomLog |/usr/bin/tee common",
-    "-c", "ErrorLog |/usr/bin/tee",
-    # Run in single-process mode, do not detach from the controlling terminal.
-    "-X",
-    # Disable Keep-Alive support. Makes testing in multiple browsers easier (no need to wait
-    # for another browser's connection to expire).
-    "-c", "KeepAlive off"
-);
-
-my @defaultArgs = getDefaultConfigForTestDirectory($testDirectory);
-@args = (@defaultArgs, @args);
-openHTTPD(@args);
diff --git a/Tools/Scripts/run-webkit-tests b/Tools/Scripts/run-webkit-tests
index fa6243f..4d6826e 100755
--- a/Tools/Scripts/run-webkit-tests
+++ b/Tools/Scripts/run-webkit-tests
@@ -1,5 +1,5 @@
-#!/usr/bin/perl
-# Copyright (C) 2010 Google Inc. All rights reserved.
+#!/usr/bin/env python
+# Copyright (C) 2012 Google Inc. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions are
@@ -27,80 +27,7 @@
 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
-# This file is a temporary hack.
-# It will be removed as soon as all platforms are are ready to move to
-# new-run-webkit-tests and we can then update the buildbots to explicitly
-# call old-run-webkit-tests for any platforms which will never support
-# a Python run-webkit-tests.
+"""Wrapper around webkitpy/layout_tests/run_webkit_tests.py"""
+from webkitpy.common import multiprocessing_bootstrap
 
-# This is intentionally written in Perl to guarantee support on
-# the same set of platforms as old-run-webkit-tests currently supports.
-# The buildbot master.cfg also currently passes run-webkit-tests to
-# perl directly instead of executing it in a shell.
-
-use strict;
-use warnings;
-
-use File::Spec;
-use FindBin;
-use lib $FindBin::Bin;
-use webkitdirs;
-
-sub runningOnBuildBot()
-{
-    # This is a hack to detect if we're running on the buildbot so we can
-    # pass --verbose to new-run-webkit-tests.  This will be removed when we
-    # update the buildbot config to call new-run-webkit-tests explicitly.
-    my %isBuildBotUser = ("apple" => 1, "buildbot" => 1, "webkitbuildbot" => 1, "slave" => 1, "buildslave-1" => 1, "chrome-bot" => 1);
-    return $isBuildBotUser{$ENV{"USER"}};
-}
-
-sub useNewRunWebKitTests()
-{
-    # NRWT Windows support still needs work: https://bugs.webkit.org/show_bug.cgi?id=38756
-    return 0 if (isWindows() or isCygwin()) and !isChromium();
-    # NRWT does not support qt-arm: https://bugs.webkit.org/show_bug.cgi?id=64086
-    return 0 if isQt() and isARM();
-    # All other platforms should use NRWT by default.
-    return 1;
-}
-
-my $script = "perl";
-my $harnessName = "old-run-webkit-tests";
-
-if (useNewRunWebKitTests()) {
-    $script = "python";
-    $harnessName = "new-run-webkit-tests";
-
-    if (runningOnBuildBot()) {
-        push(@ARGV, "--debug-rwt-logging");
-    }
-}
-
-# webkitdirs.pm strips --qt and --gtk from @ARGV when we call isQt/isGtk.
-# We have to add back any --PORT arguments which may have been removed by isPort() checks above.
-if (isQt()) {
-    my $isPlatformSet = 0;
-    for (@ARGV){
-        # Pass --qt if platform isn't passed explicitly (eg. qt-5.0, qt-wk2, ...)
-        if(/^--platform.*/){
-            $isPlatformSet = 1;
-        }
-    }
-    push(@ARGV, "--qt") if(!$isPlatformSet);
-} elsif (isGtk()) {
-    push(@ARGV, "--gtk");
-} elsif (isEfl()) {
-    push(@ARGV, "--efl");
-} elsif (isChromiumAndroid()) {
-    push(@ARGV, "--chromium-android");
-} elsif (isChromium()) {
-    push(@ARGV, "--chromium");
-} elsif (isWinCairo()) {
-    push(@ARGV, "--wincairo");
-}
-
-my $harnessPath = File::Spec->catfile(relativeScriptsDir(), $harnessName);
-unshift(@ARGV, $harnessPath);
-unshift(@ARGV, $script);
-system(@ARGV) == 0 or die "Failed to execute $harnessPath";
+multiprocessing_bootstrap.run('webkitpy', 'layout_tests', 'run_webkit_tests.py')
diff --git a/Tools/Scripts/run-webkit-websocketserver b/Tools/Scripts/run-webkit-websocketserver
deleted file mode 100755
index d030951..0000000
--- a/Tools/Scripts/run-webkit-websocketserver
+++ /dev/null
@@ -1,88 +0,0 @@
-#!/usr/bin/perl
-# Copyright (C) 2009 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Script to run Web Socket server.
-
-use strict;
-use warnings;
-
-use File::Spec;
-use FindBin;
-use IPC::Open2;
-
-use lib $FindBin::Bin;
-use webkitdirs;
-
-sub closeWebSocketServer();
-sub openWebSocketServer();
-
-my $webSocketPort = 8880;
-
-my $srcDir = sourceDir();
-my $layoutTestsName = "$srcDir/LayoutTests";
-my $testDirectory = File::Spec->rel2abs($layoutTestsName);
-my $webSocketServerPidFile = "$testDirectory/websocket.pid";
-
-
-print "Starting Web Socket server...\n";
-openWebSocketServer();
-print "Started.\n";
-print "Hit [ENTER] to stop it.";
-<STDIN>;
-print "Stopping Web Socket server...\n";
-closeWebSocketServer();
-print "Stopped.\n";
-exit 0;
-
-sub openWebSocketServer()
-{
-    my $webSocketHandlerDir = "$testDirectory";
-
-    my @args = (
-        "$srcDir/Tools/Scripts/new-run-webkit-websocketserver",
-        "--server", "start",
-        "--port", "$webSocketPort",
-        "--root", "$webSocketHandlerDir",
-        "--pidfile", "$webSocketServerPidFile"
-    );
-    system "/usr/bin/python", @args;
-}
-
-sub closeWebSocketServer()
-{
-    my @args = (
-        "$srcDir/Tools/Scripts/new-run-webkit-websocketserver",
-        "--server", "stop",
-        "--pidfile", "$webSocketServerPidFile"
-    );
-    system "/usr/bin/python", @args;
-    unlink "$webSocketServerPidFile";
-}
-
-
diff --git a/Tools/Scripts/set-webkit-configuration b/Tools/Scripts/set-webkit-configuration
deleted file mode 100755
index 4992256..0000000
--- a/Tools/Scripts/set-webkit-configuration
+++ /dev/null
@@ -1,79 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2005 Apple Computer, Inc.  All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-use strict;
-use FindBin;
-use lib $FindBin::Bin;
-use webkitdirs;
-
-my $programName = basename($0);
-my $usage = <<EOF;
-Usage: $programName [options]
-  --32-bit                Set the default architecture to 32-bit
-  --64-bit                Set the default architecture to 64-bit
-  --debug                 Set the default configuration to debug
-  --release               Set the default configuration to release
-EOF
-
-my $configuration = passedConfiguration();
-my $architecture = passedArchitecture();
-
-if (!$architecture) {
-    # Handle --64-bit explicitly here, as we don't want our other scripts to accept it
-    for my $i (0 .. $#ARGV) {
-        my $opt = $ARGV[$i];
-        if ($opt =~ /^--64-bit$/i) {
-            splice(@ARGV, $i, 1);
-            $architecture = 'x86_64';
-        }
-    }
-}
-
-if (!$configuration && !$architecture) {
-    print STDERR $usage;
-    exit 1;
-}
-
-my $baseProductDir = baseProductDir();
-system "mkdir", "-p", "$baseProductDir";
-
-if ($configuration) {
-    open CONFIGURATION, ">", "$baseProductDir/Configuration" or die;
-    print CONFIGURATION $configuration;
-    close CONFIGURATION;
-}
-
-if ($architecture) {
-    if ($architecture ne "x86_64") {
-        open ARCHITECTURE, ">", "$baseProductDir/Architecture" or die;
-        print ARCHITECTURE $architecture;
-        close ARCHITECTURE;
-    } else {
-        unlink "$baseProductDir/Architecture";
-    }
-}
diff --git a/Tools/Scripts/show-pretty-diff b/Tools/Scripts/show-pretty-diff
index be426c0..b20dac8 100755
--- a/Tools/Scripts/show-pretty-diff
+++ b/Tools/Scripts/show-pretty-diff
@@ -60,10 +60,10 @@
 );
 close($prettydiffFileHandle);
 
-my $prettyPatchDir = sourceDir() . "/Websites/bugs.webkit.org/PrettyPatch/";
-my $prettyPatchTool = sourceDir() . "/Websites/bugs.webkit.org/PrettyPatch/prettify.rb";
+my $prettyPatchDir = sourceDir() . "/Tools/Scripts/webkitruby/PrettyPatch/";
+my $prettyPatchTool = sourceDir() . "/Tools/Scripts/webkitruby/PrettyPatch/prettify.rb";
 
-my $pathToPrettify = "ruby -I " . sourceDir() . "/Websites/bugs.webkit.org/PrettyPatch/ " . sourceDir() . "/Websites/bugs.webkit.org/PrettyPatch/prettify.rb";
+my $pathToPrettify = "ruby -I " . sourceDir() . "/Tools/Scripts/webkitruby/PrettyPatch/ " . sourceDir() . "/Tools/Scripts/webkitruby/PrettyPatch/prettify.rb";
 system "$pathToPrettify " . quotemeta($inputPath) . " > $prettydiffPath";
 
 if (isAppleMacWebKit()) {
diff --git a/Tools/Scripts/sort-Xcode-project-file b/Tools/Scripts/sort-Xcode-project-file
deleted file mode 100755
index 705b41d..0000000
--- a/Tools/Scripts/sort-Xcode-project-file
+++ /dev/null
@@ -1,172 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2007, 2008, 2009, 2010 Apple Inc.  All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Script to sort "children" and "files" sections in Xcode project.pbxproj files
-
-use strict;
-
-use File::Basename;
-use File::Spec;
-use File::Temp qw(tempfile);
-use Getopt::Long;
-
-sub sortChildrenByFileName($$);
-sub sortFilesByFileName($$);
-
-# Files (or products) without extensions
-my %isFile = map { $_ => 1 } qw(
-    create_hash_table
-    jsc
-    minidom
-    testapi
-    testjsglue
-);
-
-my $printWarnings = 1;
-my $showHelp;
-
-my $getOptionsResult = GetOptions(
-    'h|help'         => \$showHelp,
-    'w|warnings!'    => \$printWarnings,
-);
-
-if (scalar(@ARGV) == 0 && !$showHelp) {
-    print STDERR "ERROR: No Xcode project files (project.pbxproj) listed on command-line.\n";
-    undef $getOptionsResult;
-}
-
-if (!$getOptionsResult || $showHelp) {
-    print STDERR <<__END__;
-Usage: @{[ basename($0) ]} [options] path/to/project.pbxproj [path/to/project.pbxproj ...]
-  -h|--help           show this help message
-  -w|--[no-]warnings  show or suppress warnings (default: show warnings)
-__END__
-    exit 1;
-}
-
-for my $projectFile (@ARGV) {
-    if (basename($projectFile) =~ /\.xcodeproj$/) {
-        $projectFile = File::Spec->catfile($projectFile, "project.pbxproj");
-    }
-
-    if (basename($projectFile) ne "project.pbxproj") {
-        print STDERR "WARNING: Not an Xcode project file: $projectFile\n" if $printWarnings;
-        next;
-    }
-
-    # Grab the mainGroup for the project file
-    my $mainGroup = "";
-    open(IN, "< $projectFile") || die "Could not open $projectFile: $!";
-    while (my $line = <IN>) {
-        $mainGroup = $2 if $line =~ m#^(\s*)mainGroup = ([0-9A-F]{24} /\* .+ \*/);$#;
-    }
-    close(IN);
-
-    my ($OUT, $tempFileName) = tempfile(
-        basename($projectFile) . "-XXXXXXXX",
-        DIR => dirname($projectFile),
-        UNLINK => 0,
-    );
-
-    # Clean up temp file in case of die()
-    $SIG{__DIE__} = sub {
-        close(IN);
-        close($OUT);
-        unlink($tempFileName);
-    };
-
-    my @lastTwo = ();
-    open(IN, "< $projectFile") || die "Could not open $projectFile: $!";
-    while (my $line = <IN>) {
-        if ($line =~ /^(\s*)files = \(\s*$/) {
-            print $OUT $line;
-            my $endMarker = $1 . ");";
-            my @files;
-            while (my $fileLine = <IN>) {
-                if ($fileLine =~ /^\Q$endMarker\E\s*$/) {
-                    $endMarker = $fileLine;
-                    last;
-                }
-                push @files, $fileLine;
-            }
-            print $OUT sort sortFilesByFileName @files;
-            print $OUT $endMarker;
-        } elsif ($line =~ /^(\s*)children = \(\s*$/) {
-            print $OUT $line;
-            my $endMarker = $1 . ");";
-            my @children;
-            while (my $childLine = <IN>) {
-                if ($childLine =~ /^\Q$endMarker\E\s*$/) {
-                    $endMarker = $childLine;
-                    last;
-                }
-                push @children, $childLine;
-            }
-            if ($lastTwo[0] =~ m#^\s+\Q$mainGroup\E = \{$#) {
-                # Don't sort mainGroup
-                print $OUT @children;
-            } else {
-                print $OUT sort sortChildrenByFileName @children;
-            }
-            print $OUT $endMarker;
-        } else {
-            print $OUT $line;
-        }
-
-        push @lastTwo, $line;
-        shift @lastTwo if scalar(@lastTwo) > 2;
-    }
-    close(IN);
-    close($OUT);
-
-    unlink($projectFile) || die "Could not delete $projectFile: $!";
-    rename($tempFileName, $projectFile) || die "Could not rename $tempFileName to $projectFile: $!";
-}
-
-exit 0;
-
-sub sortChildrenByFileName($$)
-{
-    my ($a, $b) = @_;
-    my $aFileName = $1 if $a =~ /^\s*[A-Z0-9]{24} \/\* (.+) \*\/,$/;
-    my $bFileName = $1 if $b =~ /^\s*[A-Z0-9]{24} \/\* (.+) \*\/,$/;
-    my $aSuffix = $1 if $aFileName =~ m/\.([^.]+)$/;
-    my $bSuffix = $1 if $bFileName =~ m/\.([^.]+)$/;
-    if ((!$aSuffix && !$isFile{$aFileName} && $bSuffix) || ($aSuffix && !$bSuffix && !$isFile{$bFileName})) {
-        return !$aSuffix ? -1 : 1;
-    }
-    return lc($aFileName) cmp lc($bFileName);
-}
-
-sub sortFilesByFileName($$)
-{
-    my ($a, $b) = @_;
-    my $aFileName = $1 if $a =~ /^\s*[A-Z0-9]{24} \/\* (.+) in /;
-    my $bFileName = $1 if $b =~ /^\s*[A-Z0-9]{24} \/\* (.+) in /;
-    return lc($aFileName) cmp lc($bFileName);
-}
diff --git a/Tools/Scripts/sunspider-compare-results b/Tools/Scripts/sunspider-compare-results
deleted file mode 100755
index ce95944..0000000
--- a/Tools/Scripts/sunspider-compare-results
+++ /dev/null
@@ -1,133 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2007 Apple Inc. All rights reserved.
-# Copyright (C) 2007 Eric Seidel <eric@webkit.org>
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
-# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-
-use strict;
-use File::Spec;
-use FindBin;
-use Getopt::Long qw(:config pass_through);
-use lib $FindBin::Bin;
-use webkitdirs;
-use POSIX;
-
-# determine configuration, but default to "Release" instead of last-used configuration to match run-sunspider
-setConfiguration("Release");
-setConfiguration();
-my $configuration = configuration();
-
-my $root;
-my $showHelp = 0;
-my $suite = "";
-my $ubench = 0;
-my $v8 = 0;
-my $parseonly = 0;
-
-my $programName = basename($0);
-my $usage = <<EOF;
-Usage: $programName [options] FILE FILE
-  --help        Show this help message
-  --root        Path to root tools build
-  --suite           Select a specific benchmark suite. The default is sunspider-0.9.1
-  --ubench          Use microbenchmark suite instead of regular tests. Same as --suite=ubench
-  --v8-suite        Use the V8 benchmark suite. Same as --suite=v8-v4
-  --parse-only      Use the parse-only benchmark suite. Same as --suite=parse-only
-EOF
-
-GetOptions('root=s' => sub { my ($argName, $value) = @_; setConfigurationProductDir(Cwd::abs_path($value)); $root = $value; },
-           'suite=s' => \$suite,
-           'ubench' => \$ubench,
-           'v8' => \$v8,
-           'parse-only' => \$parseonly,
-           'help' => \$showHelp);
-
-if ($showHelp) {
-   print STDERR $usage;
-   exit 1;
-}
-
-sub buildJSC
-{
-    if (!defined($root)){
-        chdirWebKit();
-        my $buildResult = system currentPerlPath(), "Tools/Scripts/build-jsc", "--" . $configuration;
-        if ($buildResult) {
-            print STDERR "Compiling jsc failed!\n";
-            exit WEXITSTATUS($buildResult);
-        }
-    }
-}
-
-sub setupEnvironmentForExecution($)
-{
-    my ($productDir) = @_;
-    print "Starting sunspider-compare-results with DYLD_FRAMEWORK_PATH set to point to built JavaScriptCore in $productDir.\n";
-    $ENV{DYLD_FRAMEWORK_PATH} = $productDir;
-    # FIXME: Other platforms may wish to augment this method to use LD_LIBRARY_PATH, etc.
-}
-
-sub pathToBuiltJSC($)
-{
-    my ($productDir) = @_;
-    my $jscName = "jsc";
-    $jscName .= "_debug" if configurationForVisualStudio() eq "Debug_All";
-    return "$productDir/$jscName";
-}
-
-sub pathToSystemJSC()
-{
-    my $path = "/System/Library/Frameworks/JavaScriptCore.framework/Resources/jsc";
-    if (-f $path) {
-        return $path;
-    }
-    return undef;
-}
-
-sub pathToJSC()
-{
-    my $path = pathToSystemJSC();
-    return $path if defined $path;
-
-    buildJSC();
-
-    my $productDir = jscProductDir();
-
-    setupEnvironmentForExecution($productDir);
-    return pathToBuiltJSC($productDir);
-}
-
-my $jscPath = pathToJSC();
-chdirWebKit();
-chdir("PerformanceTests/SunSpider");
-
-my @args = ("--shell", $jscPath);
-# This code could be removed if we chose to pass extra args to sunspider instead of Xcode
-push @args, "--suite=${suite}" if $suite;
-push @args, "--ubench" if $ubench;
-push @args, "--v8" if $v8;
-push @args, "--parse-only" if $parseonly;
-
-@ARGV = map { File::Spec->rel2abs($_) } @ARGV;
-
-exec currentPerlPath(), "./sunspider-compare-results", @args, @ARGV;
diff --git a/Tools/Scripts/update-iexploder-cssproperties b/Tools/Scripts/update-iexploder-cssproperties
deleted file mode 100755
index 65e559f..0000000
--- a/Tools/Scripts/update-iexploder-cssproperties
+++ /dev/null
@@ -1,129 +0,0 @@
-#!/usr/bin/perl
-
-# Copyright (C) 2007 Apple Inc.  All rights reserved.
-# Copyright (C) 2010 Holger Hans Peter Freyther
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# This script updates Tools/iExploder/iExploder-1.3.2/htdocs/*.in based on
-# WebCore/css/CSSPropertyNames.in, WebCore/html/HTMLTagNames.in
-# and WebCore/html/HTMLAttributeNames.in
-
-use warnings;
-use strict;
-
-use FindBin;
-use lib $FindBin::Bin;
-use VCSUtils;
-use webkitdirs;
-
-use File::Spec;
-
-sub generateEntityListFromFile($);
-sub readiExploderFile($);
-sub update($$);
-sub writeiExploderFile($@);
-
-update("cssproperties.in", "css/CSSPropertyNames.in");
-update("htmlattrs.in", "html/HTMLAttributeNames.in");
-update("htmltags.in", "html/HTMLTagNames.in");
-print "Successfully updated!\n";
-
-exit 0;
-
-sub generateEntityListFromFile($)
-{
-    my ($filename) = @_;
-
-    my $revision = svnRevisionForDirectory(dirname($filename));
-    my $path = File::Spec->abs2rel($filename, sourceDir());
-    my $result = "# From WebKit svn r" . $revision . " (" . $path . ")\n";
-
-    my @entities = ();
-    my $in_namespace = 0;
-
-    open(IN, $filename) || die "$!";
-    while (my $l = <IN>) {
-        chomp $l;
-        if ($l =~ m/^namespace=\"/) {
-            $in_namespace = 1;
-        } elsif ($in_namespace && $l =~ m/^$/) {
-            $in_namespace = 0;
-        }
-
-        next if $in_namespace;
-        next if $l =~ m/^\s*#/ || $l =~ m/^\s*$/;
-
-        # For HTML Tags that can have additional information
-        if ($l =~ m/ /) {
-            my @split = split / /, $l;
-            $l = $split[0]
-        }
-
-        push(@entities, $l);
-    }
-    close(IN);
-
-    $result .= join("\n", sort { $a cmp $b } @entities) . "\n\n";
-
-    return $result;
-}
-
-sub readiExploderFile($)
-{
-    my ($filename) = @_;
-
-    my @sections = ();
-    local $/ = "\n\n";
-
-    open(IN, $filename) || die "$!";
-    @sections = <IN>;
-    close(IN);
-
-    return @sections;
-}
-
-sub update($$)
-{
-    my ($iexploderPath, $webcorePath) = @_;
-
-    $iexploderPath = File::Spec->catfile(sourceDir(), "Tools", "iExploder", "iExploder-1.3.2", "htdocs", split("/", $iexploderPath));
-    $webcorePath = File::Spec->catfile(sourceDir(), "Source", "WebCore", split("/", $webcorePath));
-
-    my @sections = readiExploderFile($iexploderPath);
-    $sections[0] = generateEntityListFromFile($webcorePath);
-    writeiExploderFile($iexploderPath, @sections);
-}
-
-
-sub writeiExploderFile($@)
-{
-    my ($filename, @sections) = @_;
-
-    open(OUT, "> $filename") || die "$!";
-    print OUT join("", @sections);
-    close(OUT);
-}
-
diff --git a/Tools/Scripts/update-javascriptcore-test-results b/Tools/Scripts/update-javascriptcore-test-results
deleted file mode 100755
index cc8cd2c..0000000
--- a/Tools/Scripts/update-javascriptcore-test-results
+++ /dev/null
@@ -1,73 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2005, 2007 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-use strict;
-use FindBin;
-use Getopt::Long;
-use lib $FindBin::Bin;
-use webkitdirs;
-
-chdirWebKit();
-chdir "Source/JavaScriptCore/tests/mozilla" or die;
-
-my $force = 0;
-GetOptions('force' => \$force);
-
-open EXPECTED, "expected.html" or die;
-while (<EXPECTED>) {
-    last if /failures reported\.$/;
-}
-my %expected;
-while (<EXPECTED>) {
-    chomp;
-    $expected{$_} = 1;
-}
-close EXPECTED;
-
-open ACTUAL, "actual.html" or die;
-my $actual;
-while (<ACTUAL>) {
-    $actual .= $_;
-    last if /failures reported\.$/;
-}
-my $failed = 0;
-while (<ACTUAL>) {
-    $actual .= $_;
-    chomp;
-    if (!$expected{$_}) {
-        $failed = 1;
-        print "failure not expected: $_\n";
-    }
-}
-close ACTUAL;
-
-die "won't update, failures introduced\n" if $failed && !$force;
-
-open EXPECTED, ">expected.html";
-print EXPECTED $actual;
-close EXPECTED;
diff --git a/Tools/Scripts/update-sources-list.py b/Tools/Scripts/update-sources-list.py
deleted file mode 100755
index 2a4a5ef..0000000
--- a/Tools/Scripts/update-sources-list.py
+++ /dev/null
@@ -1,93 +0,0 @@
-#!/usr/bin/env python
-
-# Copyright (C) 2007 Kevin Ollivier  All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
-# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#
-# Make sure any port-independent files added to the Bakefile are
-# added to GTK, QT, etc. so that file updates can happen in one place.
-
-import os, sys
-from xml.dom import minidom
-
-scriptDir = os.path.abspath(sys.path[0])
-wkroot = os.path.abspath(os.path.join(scriptDir, "../.."))
-
-def getWebCoreFilesDict():
-    """
-    This method parses the WebCoreSources.bkl file, which has a list of all sources not specific
-    to any port, and returns the result as a dictionary with items of the form
-    (groupName, groupFiles). 
-    """
-    sources = {}
-    sources_prefix = "WEBCORE_"
-    filepath = os.path.join(wkroot, "Source", "WebCore", "WebCoreSources.bkl")
-    assert(os.path.exists(filepath))
-    
-    doc = minidom.parse(filepath)
-    for sourceGroup in doc.getElementsByTagName("set"):
-        groupName = ""
-        if sourceGroup.attributes.has_key("var"):
-            groupName = sourceGroup.attributes["var"].value
-            groupName = groupName.replace(sources_prefix, "")
-            
-        sourcesList = []
-        for node in sourceGroup.childNodes:
-            if node.nodeType == node.TEXT_NODE:
-                sourcesText = node.nodeValue.strip()
-                sourcesList = sourcesText.split("\n")
-                
-        assert(groupName != "")
-        assert(sourcesList != [])
-        
-        sources[groupName] = sourcesList
-        
-    return sources
-
-def generateWebCoreSourcesGTKAndQT(sources):
-    """
-    Convert the dictionary obtained from getWebCoreFilesDict() into a Unix makefile syntax,
-    which IIUC is suitable for both GTK and QT build systems. To take advantage of this,
-    QT and GTK would have to include the file "WebCore/sources.inc" into their makefiles.
-    """
-    makefileString = ""
-    
-    for key in sources.keys():
-        makefileString += key + "+="
-        for source in sources[key]:
-            makefileString += " \\\n\t\t" + source.strip()
-            
-        makefileString += "\n\n"
-    
-    makefileString += "BASE_SOURCES +="
-    for key in sources.keys():
-        makefileString += " \\\n\t\t" + key
-    
-    outfile = os.path.join(wkroot, "Source", "WebCore", "sources.inc")
-    sourcefile = open(outfile, "w")
-    sourcefile.write(makefileString)
-    sourcefile.close()
-    
-sources = getWebCoreFilesDict()
-generateWebCoreSourcesGTKAndQT(sources)
-
-# Coming soon - MSVC and hopefully XCode support!
diff --git a/Tools/Scripts/update-webkit b/Tools/Scripts/update-webkit
deleted file mode 100755
index d0d1afe..0000000
--- a/Tools/Scripts/update-webkit
+++ /dev/null
@@ -1,159 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
-# Copyright (C) 2009 Google Inc. All rights reserved.
-# Copyright (C) 2011 Brent Fulgham. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Update script for WebKit Open Source Project.
-
-use strict;
-use FindBin;
-use lib $FindBin::Bin;
-use File::Basename;
-use File::Spec;
-use Getopt::Long;
-use VCSUtils;
-use webkitdirs;
-
-sub runSvnUpdate();
-sub runGitUpdate();
-
-# Handle options
-my $quiet = '';
-my $showHelp;
-my $useGYP = 0;
-my $useMake = 0;
-my $useNinja = -1; # -1: Let update-webkit-chromium pick the default.
-
-determineIsChromium();
-determineIsChromiumAndroid();
-determineIsQt();
-determineIsWinCairo();
-
-chdirWebKit();
-
-my $getOptionsResult = GetOptions(
-    'h|help'  => \$showHelp,
-    'q|quiet' => \$quiet,
-    'gyp' => \$useGYP,
-    'make' => \$useMake,
-    'ninja!' => \$useNinja,
-); 
-
-if (!$getOptionsResult || $showHelp) {
-    print STDERR <<__END__;
-Usage: @{[ basename($0) ]} [options]
-  --chromium          also update dependencies of the chromium port
-  --make              generate the Makefile-based build system (Chromium only)
-  --[no-]ninja        generate the ninja-based build system (Chromium only)
-  --chromium-android  also update dependencies of the chromium port for Android
-  -h|--help           show the help message
-  -q|--quiet          pass -q to svn update for quiet updates
-  --gyp               generate project files from gyp after update
-  --wincairo          also update dependencies of the WinCairo port
-__END__
-    exit 1;
-}
-
-if ($useMake) {
-    $ENV{"GYP_GENERATORS"} = "make";
-}
-
-my @svnOptions = ();
-push @svnOptions, '-q' if $quiet;
-
-# Don't prompt when using svn-1.6 or newer.
-push @svnOptions, qw(--accept postpone) if isSVNVersion16OrNewer();
-
-print "Updating OpenSource\n" unless $quiet;
-runSvnUpdate() if isSVN();
-runGitUpdate() if isGit();
-
-if (-d "../Internal") {
-    chdir("../Internal");
-    print "Updating Internal\n" unless $quiet;
-    runSvnUpdate() if isSVNDirectory(".");
-    runGitUpdate() if isGitDirectory(".");
-} elsif (isChromium()) {
-    my @chromiumUpdateArgs = ("perl", "Tools/Scripts/update-webkit-chromium");
-    push @chromiumUpdateArgs, "--chromium-android" if isChromiumAndroid();
-    push @chromiumUpdateArgs, "--force" if forceChromiumUpdate();
-    push @chromiumUpdateArgs, "--ninja" if $useNinja == 1;
-    push @chromiumUpdateArgs, "--no-ninja" if $useNinja == 0;
-    system(@chromiumUpdateArgs) == 0 or die $!;
-} elsif (isAppleWinWebKit()) {
-    system("perl", "Tools/Scripts/update-webkit-auxiliary-libs") == 0 or die;
-    if (isWinCairo()) {
-        # WinCairo shares the auxiliary libs from the Apple port.
-        system("perl", "Tools/Scripts/update-webkit-wincairo-libs") == 0 or die;
-    }
-}
-
-setupAppleWinEnv() if isAppleWinWebKit();
-
-if ($useGYP) {
-    print "Generating Project Files\n";
-    system("perl", "Tools/Scripts/generate-project-files") == 0 or die "Failed to run generate-project-files";
-}
-
-exit 0;
-
-sub runSvnUpdate()
-{
-    open UPDATE, "-|", "svn", "update", @svnOptions or die;
-    my @conflictedChangeLogs;
-    while (my $line = <UPDATE>) {
-        print $line;
-        $line =~ m/^C\s+(.+?)[\r\n]*$/;
-        if ($1) {
-          my $filename = normalizePath($1);
-          push @conflictedChangeLogs, $filename if basename($filename) eq "ChangeLog";
-        }
-    }
-    close UPDATE or die;
-
-    if (@conflictedChangeLogs) {
-        print "Attempting to merge conflicted ChangeLogs.\n";
-        my $resolveChangeLogsPath = File::Spec->catfile(dirname($0), "resolve-ChangeLogs");
-        (system($resolveChangeLogsPath, "--no-warnings", @conflictedChangeLogs) == 0)
-            or die "Could not open resolve-ChangeLogs script: $!.\n";
-    }
-}
-
-sub runGitUpdate()
-{
-    # Doing a git fetch first allows setups with svn-remote.svn.fetch = trunk:refs/remotes/origin/master
-    # to perform the rebase much much faster.
-    system("git", "fetch") == 0 or die;
-    if (isGitSVN()) {
-        system("git", "svn", "rebase") == 0 or die;
-    } else {
-        # This will die if branch.$BRANCHNAME.merge isn't set, which is
-        # almost certainly what we want.
-        system("git", "pull") == 0 or die;
-    }
-}
diff --git a/Tools/Scripts/update-webkit-auxiliary-libs b/Tools/Scripts/update-webkit-auxiliary-libs
deleted file mode 100755
index 1bb99d5..0000000
--- a/Tools/Scripts/update-webkit-auxiliary-libs
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2005, 2006, 2007 Apple Computer, Inc.  All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Updates a development environment to the new WebKitAuxiliaryLibrary
-
-use strict;
-use warnings;
-use FindBin;
-
-my $file = "WebKitAuxiliaryLibrary";
-my $zipFile = "$file.zip"; 
-my $auxiliaryLibsURL = "https://developer.apple.com/opensource/internet/$zipFile";
-my $command = "$FindBin::Bin/update-webkit-dependency";
-
-system("perl", $command, $auxiliaryLibsURL, "win") == 0 or die;
diff --git a/Tools/Scripts/update-webkit-chromium b/Tools/Scripts/update-webkit-chromium
deleted file mode 100755
index f98473f..0000000
--- a/Tools/Scripts/update-webkit-chromium
+++ /dev/null
@@ -1,103 +0,0 @@
-#!/usr/bin/perl -w
-# Copyright (C) 2009 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Update script for the WebKit Chromium Port.
-
-use File::Path;
-use FindBin;
-use Getopt::Long;
-use lib $FindBin::Bin;
-use webkitdirs;
-
-determineIsChromiumAndroid();
-
-chdirWebKit();
-chdir("Source/WebKit/chromium") or die $!;
-
-# Find gclient or install it.
-my $gclientPath;
-if (commandExists('gclient')) {
-    $gclientPath = 'gclient';
-} elsif (-e 'depot_tools/gclient') {
-    $gclientPath = 'depot_tools/gclient';
-} else {
-    print "Installing chromium's depot_tools...\n";
-    system("svn co http://src.chromium.org/svn/trunk/tools/depot_tools") == 0 or die $1;
-    $gclientPath = 'depot_tools/gclient';
-}
-
-if (! -e ".gclient") {
-    # If .gclient configuration file doesn't exist, create it.
-    print "Configuring gclient...\n";
-    system($gclientPath,
-           "config",
-           "--spec=solutions=[{'name':'./','url':None}]") == 0 or die $!;
-}
-
-# When building Chromium for Android, the envsetup.sh script needs to be
-# executed prior to project file generation. We need to tell gyp_webkit to do
-# that, as it's a Chromium file and may not be available yet right now.
-if (isChromiumAndroid()) {
-    $ENV{WEBKIT_ANDROID_BUILD} = 1;
-}
-
-my $force = 0;
-my $useNinja = 1;
-
-GetOptions(
-  'force' => \$force,
-  'ninja!' => \$useNinja,
-);
-
-if ($useNinja) {
-    $ENV{"GYP_GENERATORS"} = "ninja";
-}
-
-# Execute gclient sync.
-print "Updating chromium port dependencies using gclient...\n";
-my @gclientArgs = ($gclientPath, "sync");
-push @gclientArgs, "--force" if $force;
-# --reset could delete modified files if necessary to sync.
-push @gclientArgs, "--reset" if $force;
-push @gclientArgs, "--delete_unversioned_trees" if $force;
-push @gclientArgs, "--deps=unix,android" if isChromiumAndroid();
-
-my $cmd = join(" ",@gclientArgs);
-my $max_attempts = 3;
-my $rc = -1;
-
-# The following will call glient up to $max_attempts times before
-# it gives up and fails.  We need this because glcient can fail
-# for several reasons, some of which are transient (flakiness).
-
-for (1 .. $max_attempts) {
-    $rc = system($cmd);
-    print "Re-trying '" . $cmd . "'\n" if $rc != 0;
-    last if $rc == 0;
-}
-
-die "Error: '$cmd' failed $max_attempts tries and returned " . $rc if ($rc);
diff --git a/Tools/Scripts/update-webkit-dependency b/Tools/Scripts/update-webkit-dependency
deleted file mode 100755
index 71d4672..0000000
--- a/Tools/Scripts/update-webkit-dependency
+++ /dev/null
@@ -1,167 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2005, 2006, 2007 Apple Computer, Inc.  All rights reserved.
-# Copyright (C) 2011 Carl Lobo.  All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Updates a development environment to the new WebKitAuxiliaryLibrary
-
-use strict;
-use warnings;
-
-use File::Find;
-use File::Spec;
-use File::Temp ();
-use FindBin;
-use HTTP::Date qw(str2time);
-use POSIX;
-use lib $FindBin::Bin;
-use webkitdirs;
-
-if ($#ARGV != 1) {
-    die <<EOF;
-Usage:
-        update-webkit-dependancy <URL with the dependancy zip file> <*prefix dir inside zip without filename>
-
-        * If filename is requirements.zip and the contents of the zipfile are "requirements/x" then prefix = "."
-        * If filename is xyz.zip and the contents of the zipfile are xyz/abc/x" then prefix = "abc"
-        * x is lib or include or bin.
-EOF
-}
-
-sub lastModifiedToUnixTime($);
-sub getLibraryName($);
-
-# Time in seconds that the new zip file must be newer than the old for us to
-# consider them to be different. If the difference in modification time is less
-# than this threshold, we assume that the files are the same. We need this
-# because the zip file is served from a set of mirrors with slightly different
-# Last-Modified times.
-my $newnessThreshold = 30;
-
-my $libsURL = shift;
-my $prefixInZip = shift;
-my $sourceDir = sourceDir();
-my $file = getLibraryName($libsURL);
-my $zipFile = "$file.zip"; 
-my $webkitLibrariesDir = toUnixPath($ENV{'WEBKITLIBRARIESDIR'}) || "$sourceDir/WebKitLibraries/win";
-my $tmpRelativeDir = File::Temp::tempdir("webkitlibsXXXXXXX", TMPDIR => 1, CLEANUP => 1);
-my $tmpAbsDir = File::Spec->rel2abs($tmpRelativeDir);
-
-print "Checking Last-Modified date of $zipFile...\n";
-
-my $result = system "curl -s -I -k --sslv3 $libsURL | grep Last-Modified > \"$tmpAbsDir/$file.headers\"";
-
-if (WEXITSTATUS($result)) {
-
-    #Note: Neither GitHub nor DropBox emit the Last-Modified HTTP header, so fall back to a file
-	#containing the necessary information if we do not receive the information in our initial query.
-    my $headerURL = $libsURL;
-    $headerURL =~ s/\.zip$/\.headers/;
-
-    $result = system "curl -k --sslv3 -o \"$tmpAbsDir/$file.headers\" $headerURL";
-
-    if (WEXITSTATUS($result)) {
-        print STDERR "Couldn't check Last-Modified date of new $zipFile.\n";
-        print STDERR "Please ensure that $libsURL is reachable.\n";
-
-        if (! -f "$webkitLibrariesDir/$file.headers") {
-            print STDERR "Unable to check Last-Modified date and no version of $file to fall back to.\n";
-            exit 1;
-        }
-
-        print STDERR "Falling back to existing version of $file.\n";
-        exit 0;
-    }
-}
-
-if (open NEW, "$tmpAbsDir/$file.headers") {
-    my $new = lastModifiedToUnixTime(<NEW>);
-    close NEW;
-
-    if (defined $new && open OLD, "$webkitLibrariesDir/$file.headers") {
-        my $old = lastModifiedToUnixTime(<OLD>);
-        close OLD;
-        if (defined $old && abs($new - $old) < $newnessThreshold) {
-            print "Current $file is up to date\n";
-            exit 0;
-        }
-    }
-}
-
-print "Downloading $zipFile...\n\n";
-$result = system "curl -k --sslv3 -o \"$tmpAbsDir/$zipFile\" $libsURL";
-die "Couldn't download $zipFile!" if $result;
-
-$result = system "unzip", "-q", "-d", $tmpAbsDir, "$tmpAbsDir/$zipFile";
-die "Couldn't unzip $zipFile." if $result;
-
-print "\nInstalling $file...\n";
-
-sub wanted
-{
-    my $relativeName = File::Spec->abs2rel($File::Find::name, "$tmpAbsDir/$file/$prefixInZip");
-    my $destination = "$webkitLibrariesDir/$relativeName";
-
-    if (-d $_) {
-        mkdir $destination;
-        return;
-    }
-
-    system "cp", $_, $destination;
-}
-
-File::Find::find(\&wanted, "$tmpAbsDir/$file");
-
-$result = system "mv", "$tmpAbsDir/$file.headers", $webkitLibrariesDir;
-print STDERR "Couldn't move $file.headers to $webkitLibrariesDir" . ".\n" if $result;
-
-print "The $file has been sucessfully installed in\n $webkitLibrariesDir\n";
-exit;
-
-sub toUnixPath
-{
-    my $path = shift;
-    return unless $path;
-    chomp($path = `cygpath -u '$path'`);
-    return $path;
-}
-
-sub lastModifiedToUnixTime($)
-{
-    my ($str) = @_;
-
-    $str =~ /^Last-Modified: (.*)$/ or return;
-    return str2time($1);
-}
-
-sub getLibraryName($)
-{
-    my $url = shift;
-    $url =~ m#/([^/]+)\.zip$#;
-    return $1;
-}
-
diff --git a/Tools/Scripts/update-webkit-libs-jhbuild b/Tools/Scripts/update-webkit-libs-jhbuild
deleted file mode 100755
index 51605bd..0000000
--- a/Tools/Scripts/update-webkit-libs-jhbuild
+++ /dev/null
@@ -1,128 +0,0 @@
-#!/usr/bin/perl -w
-# Copyright (C) 2011 Igalia S.L.
-# Copyright (C) 2012 Intel Corporation
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
-
-use FindBin;
-use lib $FindBin::Bin;
-use webkitdirs;
-use Getopt::Long;
-
-my $platformEfl = 0;
-my $platformGtk = 0;
-
-my $getOptionsResult = GetOptions(
-    'efl' => \$platformEfl,
-    'gtk' => \$platformGtk
-    );
-
-my $platform = "";
-if (!$getOptionsResult) {
-    die "No platform specified for " . basename($0) .". Use --gtk or --efl.\n";
-} else {
-    if ($platformEfl) {
-        $platform = "efl";
-    }
-    if ($platformGtk) {
-        $platform = "gtk";
-    }
-}
-
-sub getMD5HashForFile($)
-{
-    my $file = shift;
-
-    open(FILE_CONTENTS, $file);
-
-    my $contents = "";
-    while (<FILE_CONTENTS>) {
-        $contents .= $_;
-    }
-
-    close(FILE_CONTENTS);
-
-    return md5_hex($contents);
-}
-
-sub jhbuildConfigurationChanged()
-{
-    foreach my $file (qw(jhbuildrc jhbuild.modules)) {
-        my $path = join('/', getJhbuildPath(), $file . '.md5sum');
-        if (! -e $path) {
-            return 1;
-        }
-
-        # Get the md5 sum of the file we're testing, look in the right platform directory.
-        my $actualFile = join('/', sourceDir(), 'Tools', $platform, $file);
-        my $currentSum = getMD5HashForFile($actualFile);
-
-        # Get our previous record.
-        open(PREVIOUS_MD5, $path);
-        chomp(my $previousSum = <PREVIOUS_MD5>);
-        close(PREVIOUS_MD5);
-
-        if ($previousSum ne $currentSum) {
-            return 1;
-        }
-    }
-}
-
-sub saveJhbuildMd5() {
-    # Save md5sum for jhbuild-related files.saveJhbuildMd5();
-    foreach my $file (qw(jhbuildrc jhbuild.modules)) {
-        my $source = join('/', sourceDir(), "Tools", $platform, $file);
-        my $destination = join('/', getJhbuildPath(), $file);
-        open(SUM, ">$destination" . ".md5sum");
-        print SUM getMD5HashForFile($source);
-        close(SUM);
-    }
-}
-
-sub runJhbuild
-{
-    my $command = shift;
-    my @jhbuildArgs = ("./jhbuild-wrapper", "--".$platform, $command);
-    push(@jhbuildArgs, @ARGV[2..-1]);
-    system(@jhbuildArgs) == 0 or die "Running jhbuild-wrapper " . $command . " failed.\n";
-}
-
-sub cleanJhbuild()
-{
-    runJhbuild("clean");
-
-    # If the configuration changed, dependencies may have been removed.
-    # Since we lack a granular way of uninstalling those we wipe out the
-    # jhbuild root and start from scratch.
-    my $jhbuildPath = getJhbuildPath();
-    if (system("rm -rf $jhbuildPath/Root") ne 0) {
-        die "Cleaning jhbuild root failed!";
-    }
-}
-
-delete $ENV{AR_FLAGS} if exists $ENV{AR_FLAGS};
-
-chdir(relativeScriptsDir() . "/../jhbuild") or die $!;
-
-my %prettyPlatform = ( "efl" => "EFL", "gtk" => "GTK+" );
-
-if (-e getJhbuildPath() && jhbuildConfigurationChanged()) {
-    cleanJhbuild();
-}
-
-print "Updating " . $prettyPlatform{$platform} . " port dependencies using jhbuild...\n";
-runJhbuild("build");
-
-saveJhbuildMd5();
diff --git a/Tools/Scripts/update-webkit-localizable-strings b/Tools/Scripts/update-webkit-localizable-strings
deleted file mode 100755
index ceb25a5..0000000
--- a/Tools/Scripts/update-webkit-localizable-strings
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2006, 2007 Apple Inc.  All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-use strict;
-use warnings;
-
-use File::Basename;
-use FindBin;
-use lib $FindBin::Bin;
-use webkitdirs;
-
-# WebKit and WebKit2 strings go into WebCore's Localizable.strings.
-my @directoriesToScan = ("Source/WebCore", "Source/WebKit/mac", "Source/WebKit/win", "Source/WebKit2", "-Source/WebCore/icu", "-Source/WebKit/mac/icu");
-my $fileToUpdate = "Source/WebCore/English.lproj/Localizable.strings";
-
-@ARGV == 0 or die "Usage: " . basename($0) . "\n";
-
-chdirWebKit();
-
-system "Tools/Scripts/extract-localizable-strings", "-", $fileToUpdate, @directoriesToScan;
diff --git a/Tools/Scripts/update-webkit-support-libs b/Tools/Scripts/update-webkit-support-libs
deleted file mode 100755
index afced1d..0000000
--- a/Tools/Scripts/update-webkit-support-libs
+++ /dev/null
@@ -1,149 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2005, 2006, 2007 Apple Computer, Inc.  All rights reserved.
-# Copyright (C) Research In Motion Limited 2010. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Updates a development environment to the new WebKitSupportLibrary
-
-use strict;
-use warnings;
-
-use File::Find;
-use File::Temp ();
-use File::Spec;
-use FindBin;
-use lib $FindBin::Bin;
-use webkitdirs;
-
-use constant NOTAVERSION => "-1";
-
-my $sourceDir = sourceDir();
-my $file = "WebKitSupportLibrary";
-my $zipFile = "$file.zip"; 
-my $zipDirectory = toUnixPath($ENV{'WEBKITSUPPORTLIBRARIESZIPDIR'}) || $sourceDir;
-my $pathToZip = File::Spec->catfile($zipDirectory, $zipFile);
-my $webkitLibrariesDir = toUnixPath($ENV{'WEBKITLIBRARIESDIR'}) || "$sourceDir/WebKitLibraries/win";
-my $versionFile = $file . "Version";
-my $pathToVersionFile = File::Spec->catfile($webkitLibrariesDir, $versionFile);
-my $tmpRelativeDir = File::Temp::tempdir("webkitlibsXXXXXXX", TMPDIR => 1, CLEANUP => 1);
-my $tmpAbsDir = File::Spec->rel2abs($tmpRelativeDir);
-my $versionFileURL = "https://developer.apple.com/opensource/internet/$versionFile";
-
-my $extractedVersion = extractedVersion();
-
-# Check whether the extracted library is up-to-date. If it is, we don't have anything to do.
-my $expectedVersion = downloadExpectedVersionNumber();
-if ($extractedVersion ne NOTAVERSION && $extractedVersion eq $expectedVersion) {
-    print "$file is up-to-date.\n";
-    exit;
-}
-
-# Check whether the downloaded library is up-to-date. If it isn't, the user needs to download it.
-my $zipFileVersion = zipFileVersion();
-dieAndInstructToDownload("$zipFile could not be found in $zipDirectory.") if $zipFileVersion eq NOTAVERSION;
-dieAndInstructToDownload("$zipFile is out-of-date.") if $expectedVersion ne NOTAVERSION && $zipFileVersion ne $expectedVersion;
-if ($zipFileVersion eq $extractedVersion) {
-    print "Falling back to existing version of $file.\n";
-    exit;
-}
-
-my $result = system "unzip", "-q", "-d", $tmpAbsDir, $pathToZip;
-die "Couldn't unzip $zipFile." if $result;
-
-print "\nInstalling $file...\n";
-
-sub wanted
-{
-    my $relativeName = File::Spec->abs2rel($File::Find::name, "$tmpAbsDir/$file/win");
-    my $destination = "$webkitLibrariesDir/$relativeName";
-
-    if (-d $_) {
-        mkdir $destination;
-        return;
-    }
-
-    system "cp", $_, $destination;
-}
-
-File::Find::find(\&wanted, "$tmpAbsDir/$file");
-
-print "The $file has been sucessfully installed in\n $webkitLibrariesDir\n";
-exit;
-
-sub toUnixPath
-{
-    my $path = shift;
-    return unless $path;
-    chomp($path = `cygpath -u '$path'`);
-    return $path;
-}
-
-sub extractedVersion
-{
-    if (open VERSION, "<", $pathToVersionFile) {
-        chomp(my $extractedVersion = <VERSION>);
-        close VERSION;
-        return $extractedVersion;
-    }
-    return NOTAVERSION;
-}
-
-sub downloadExpectedVersionNumber
-{
-    chomp(my $expectedVersion = `curl -s --sslv3 -k $versionFileURL`);
-    return WEXITSTATUS($?) ? NOTAVERSION : $expectedVersion;
-}
-
-sub zipFileVersion
-{
-    return NOTAVERSION unless -f $pathToZip;
-    chomp(my $zipFileVersion = `unzip -p "$pathToZip" $file/win/$versionFile`);
-    return $zipFileVersion;
-}
-
-sub dieAndInstructToDownload
-{
-    my $message = shift;
-
-    die <<EOF;
-
-===============================================================================
-$message
-Please download $zipFile from:
-
-    https://developer.apple.com/opensource/internet/webkit_sptlib_agree.html
-
-and place it in:
-
-    $sourceDir
-
-Then run build-webkit again.
-===============================================================================
-
-EOF
-
-}
diff --git a/Tools/Scripts/update-webkit-wincairo-libs b/Tools/Scripts/update-webkit-wincairo-libs
deleted file mode 100755
index 52d052e..0000000
--- a/Tools/Scripts/update-webkit-wincairo-libs
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2012 Brent Fulgham <bfulgham@webkit.org>.  All rights reserved.
-# Copyright (C) 2011 Carl Lobo.  All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Updates a development environment to the new WebKitAuxiliaryLibrary
-
-use strict;
-use warnings;
-use FindBin;
-
-my $file = "WinCairoRequirements";
-my $zipFile = "$file.zip";
-my $winCairoLibsURL = "http://dl.dropbox.com/u/39598926/$zipFile";
-my $command = "$FindBin::Bin/update-webkit-dependency";
-
-system("perl", $command, $winCairoLibsURL, ".") == 0 or die;
diff --git a/Tools/Scripts/update-webkitefl-libs b/Tools/Scripts/update-webkitefl-libs
deleted file mode 100755
index 30b2104..0000000
--- a/Tools/Scripts/update-webkitefl-libs
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/usr/bin/perl -w
-# Copyright (C) 2012 Intel Corporation
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
-
-use FindBin;
-use lib $FindBin::Bin;
-use webkitdirs;
-
-my $scriptsDir = relativeScriptsDir();
-system("perl", "$scriptsDir/update-webkit-libs-jhbuild", "--efl") == 0 or die $!;
diff --git a/Tools/Scripts/update-webkitgtk-libs b/Tools/Scripts/update-webkitgtk-libs
deleted file mode 100755
index 792cc28..0000000
--- a/Tools/Scripts/update-webkitgtk-libs
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/perl -w
-# Copyright (C) 2011 Igalia S.L.
-# Copyright (C) 2012 Intel Corporation
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
-
-use FindBin;
-use lib $FindBin::Bin;
-use webkitdirs;
-
-my $scriptsDir = relativeScriptsDir();
-system("perl", "$scriptsDir/update-webkit-libs-jhbuild", "--gtk", @ARGV) == 0 or die $!;
diff --git a/Tools/Scripts/webkit-build-directory b/Tools/Scripts/webkit-build-directory
deleted file mode 100755
index d5085b5..0000000
--- a/Tools/Scripts/webkit-build-directory
+++ /dev/null
@@ -1,83 +0,0 @@
-#!/usr/bin/perl
-
-# Copyright (C) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# A script to expose WebKit's build directory detection logic to non-perl scripts.
-
-use FindBin;
-use Getopt::Long;
-
-use lib $FindBin::Bin;
-use webkitdirs;
-
-my $showConfigurationDirectory = 0;
-my $showHelp = 0;
-my $showTopLevelDirectory = 0;
-
-
-my $programName = basename($0);
-my $usage = <<EOF;
-Usage: $programName [options]
-  --configuration       Show the build directory for a specific configuration (e.g. Debug, Release.  Defaults to the active configuration set by set-webkit-configuration)
-  -h|--help             Show this help message
-  --top-level           Show the top-level build directory
-
-  --blackberry          Find the build directory for the BlackBerry port on Mac/Linux
-  --chromium            Find the build directory for the Chromium port on Mac/Win/Linux
-  --chromium-android    Find the build directory for the Chromium port on Android
-  --efl                 Find the build directory for the EFL port
-  --gtk                 Find the build directory for the GTK+ port
-  --qt                  Find the build directory for the Qt port
-  --wincairo            Find the build directory for using Cairo (rather than CoreGraphics) on Windows
-  --wince               Find the build directory for the WinCE port
-
-Either --configuration or --top-level is required.
-EOF
-
-setConfiguration(); # Figure out from the command line if we're --debug or --release or the default.
-
-# FIXME: Check if extra flags are valid or not.
-Getopt::Long::Configure('pass_through'); # Let --blackberry, etc... be handled by webkitdirs
-my $getOptionsResult = GetOptions(
-    'configuration' => \$showConfigurationDirectory,
-    'top-level' => \$showTopLevelDirectory,
-    'help|h' => \$showHelp,
-);
-
-if (!$getOptionsResult || $showHelp) {
-    print STDERR $usage;
-    exit 1;
-}
-
-if (!$showConfigurationDirectory && !$showTopLevelDirectory) {
-    print baseProductDir() . "\n";
-    print productDir() . "\n";
-} elsif ($showTopLevelDirectory) {
-    print baseProductDir() . "\n";
-} else {
-    print productDir() . "\n";
-}
diff --git a/Tools/Scripts/webkitdirs.pm b/Tools/Scripts/webkitdirs.pm
index bcd48e7..009d258 100755
--- a/Tools/Scripts/webkitdirs.pm
+++ b/Tools/Scripts/webkitdirs.pm
@@ -126,8 +126,8 @@
     $sourceDir =~ s|/+$||; # Remove trailing '/' as we would die later
 
     # walks up path checking each directory to see if it is the main WebKit project dir, 
-    # defined by containing Sources, WebCore, and WebKit
-    until ((-d "$sourceDir/Source" && -d "$sourceDir/Source/WebCore" && -d "$sourceDir/Source/WebKit") || (-d "$sourceDir/Internal" && -d "$sourceDir/OpenSource"))
+    # defined by containing Sources, core, and WebKit
+    until ((-d "$sourceDir/Source" && -d "$sourceDir/Source/core" && -d "$sourceDir/Source/WebKit") || (-d "$sourceDir/Internal" && -d "$sourceDir/OpenSource"))
     {
         if ($sourceDir !~ s|/[^/]+$||) {
             die "Could not find top level webkit directory above source directory using FindBin.\n";
@@ -806,7 +806,7 @@
     }
     if (isGtk()) {
         # WebKitGTK+ for GTK2, WebKitGTK+ for GTK3, and WebKit2 respectively.
-        my @libraries = ("libwebkitgtk-1.0", "libwebkitgtk-3.0", "libwebkit2gtk-1.0");
+        my @libraries = ("libwebkitgtk-1.0", "libwebkitgtk-3.0", "libwebkit2gtk-3.0");
         my $extension = isDarwin() ? ".dylib" : ".so";
 
         foreach $libraryName (@libraries) {
@@ -2850,15 +2850,6 @@
     return 1;
 }
 
-sub runTestWebKitAPI
-{
-    if (isAppleMacWebKit()) {
-        return runMacWebKitApp(File::Spec->catfile(productDir(), "TestWebKitAPI"));
-    }
-
-    return 1;
-}
-
 sub readRegistryString
 {
     my ($valueName) = @_;
diff --git a/Tools/Scripts/webkitperl/FeatureList.pm b/Tools/Scripts/webkitperl/FeatureList.pm
deleted file mode 100644
index 1d7a596..0000000
--- a/Tools/Scripts/webkitperl/FeatureList.pm
+++ /dev/null
@@ -1,494 +0,0 @@
-# Copyright (C) 2012 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer.
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# A module to contain all the enable/disable feature option code.
-
-use strict;
-use warnings;
-
-use FindBin;
-use lib $FindBin::Bin;
-use webkitdirs;
-
-BEGIN {
-   use Exporter   ();
-   our ($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS);
-   $VERSION     = 1.00;
-   @ISA         = qw(Exporter);
-   @EXPORT      = qw(&getFeatureOptionList);
-   %EXPORT_TAGS = ( );
-   @EXPORT_OK   = ();
-}
-
-my (
-    $threeDRenderingSupport,
-    $accelerated2DCanvasSupport,
-    $batteryStatusSupport,
-    $blobSupport,
-    $canvasPathSupport,
-    $canvasProxySupport,
-    $channelMessagingSupport,
-    $cspNextSupport,
-    $css3ConditionalRulesSupport,
-    $css3TextSupport,
-    $css3TextLineBreakSupport,
-    $cssBoxDecorationBreakSupport,
-    $cssDeviceAdaptation,
-    $cssExclusionsSupport,
-    $cssFiltersSupport,
-    $cssImageOrientationSupport,
-    $cssImageResolutionSupport,
-    $cssImageSetSupport,
-    $cssRegionsSupport,
-    $cssShadersSupport,
-    $cssStickyPositionSupport,
-    $cssCompositingSupport,
-    $cssAnimationsTransformsUnprefixedSupport,
-    $cssVariablesSupport,
-    $customSchemeHandlerSupport,
-    $dataTransferItemsSupport,
-    $datalistSupport,
-    $detailsSupport,
-    $deviceOrientationSupport,
-    $dialogElementSupport,
-    $directoryUploadSupport,
-    $dom4EventsConstructor,
-    $downloadAttributeSupport,
-    $fileSystemSupport,
-    $filtersSupport,
-    $fontLoadEventsSupport,
-    $ftpDirSupport,
-    $fullscreenAPISupport,
-    $gamepadSupport,
-    $geolocationSupport,
-    $highDPICanvasSupport,
-    $icondatabaseSupport,
-    $iframeSeamlessSupport,
-    $indexedDatabaseSupport,
-    $inputSpeechSupport,
-    $inputTypeColorSupport,
-    $inputTypeDateSupport,
-    $inputTypeDatetimeSupport,
-    $inputTypeDatetimelocalSupport,
-    $inputTypeMonthSupport,
-    $inputTypeTimeSupport,
-    $inputTypeWeekSupport,
-    $inspectorSupport,
-    $javascriptDebuggerSupport,
-    $legacyNotificationsSupport,
-    $legacyVendorPrefixSupport,
-    $legacyWebAudioSupport,
-    $linkPrefetchSupport,
-    $linkPrerenderSupport,
-    $mathmlSupport,
-    $mediaCaptureSupport,
-    $mediaSourceSupport,
-    $mediaStatisticsSupport,
-    $mediaStreamSupport,
-    $meterTagSupport,
-    $mhtmlSupport,
-    $microdataSupport,
-    $mouseCursorScaleSupport,
-    $netscapePluginAPISupport,
-    $networkInfoSupport,
-    $nosniffSupport,
-    $notificationsSupport,
-    $orientationEventsSupport,
-    $pageVisibilityAPISupport,
-    $performanceTimelineSupport,
-    $progressTagSupport,
-    $proximityEventsSupport,
-    $quotaSupport,
-    $resolutionMediaQuerySupport,
-    $registerProtocolHandlerSupport,
-    $requestAnimationFrameSupport,
-    $resourceTimingSupport,
-    $scriptedSpeechSupport,
-    $shadowDOMSupport,
-    $sharedWorkersSupport,
-    $sqlDatabaseSupport,
-    $styleScopedSupport,
-    $suidLinuxSandbox,
-    $svgDOMObjCBindingsSupport,
-    $svgFontsSupport,
-    $svgSupport,
-    $systemMallocSupport,
-    $templateElementSupport,
-    $textAutosizingSupport,
-    $tiledBackingStoreSupport,
-    $threadedHTMLParserSupport,
-    $touchEventsSupport,
-    $touchSliderSupport,
-    $touchIconLoadingSupport,
-    $userTimingSupport,
-    $vibrationSupport,
-    $videoSupport,
-    $videoTrackSupport,
-    $webglSupport,
-    $webAudioSupport,
-    $webSocketsSupport,
-    $webTimingSupport,
-    $workersSupport,
-    $xhrTimeoutSupport,
-    $xsltSupport,
-);
-
-my @features = (
-    { option => "3d-rendering", desc => "Toggle 3D Rendering support",
-      define => "ENABLE_3D_RENDERING", default => (isAppleMacWebKit() || isQt() || isGtk() || isEfl()), value => \$threeDRenderingSupport },
-
-    { option => "accelerated-2d-canvas", desc => "Toggle Accelerated 2D Canvas support",
-      define => "ENABLE_ACCELERATED_2D_CANVAS", default => 0, value => \$accelerated2DCanvasSupport },
-
-    { option => "battery-status", desc => "Toggle Battery Status support",
-      define => "ENABLE_BATTERY_STATUS", default => (isEfl() || isBlackBerry()), value => \$batteryStatusSupport },
-
-    { option => "blob", desc => "Toggle Blob support",
-      define => "ENABLE_BLOB", default => (isAppleMacWebKit() || isGtk() || isChromium() || isBlackBerry() || isEfl()), value => \$blobSupport },
-
-    { option => "canvas-path", desc => "Toggle Canvas Path support",
-      define => "ENABLE_CANVAS_PATH", default => 1, value => \$canvasPathSupport },
-
-    { option => "canvas-proxy", desc => "Toggle CanvasProxy support",
-      define => "ENABLE_CANVAS_PROXY", default => 0, value => \$canvasProxySupport },
-
-    { option => "channel-messaging", desc => "Toggle Channel Messaging support",
-      define => "ENABLE_CHANNEL_MESSAGING", default => 1, value => \$channelMessagingSupport },
-
-    { option => "csp-next", desc => "Toggle Content Security Policy 1.1 support",
-      define => "ENABLE_CSP_NEXT", default => isGtk(), value => \$cspNextSupport },
-
-    { option => "css-device-adaptation", desc => "Toggle CSS Device Adaptation support",
-      define => "ENABLE_CSS_DEVICE_ADAPTATION", default => isEfl(), value => \$cssDeviceAdaptation },
-
-    { option => "css-exclusions", desc => "Toggle CSS Exclusions support",
-      define => "ENABLE_CSS_EXCLUSIONS", default => 1, value => \$cssExclusionsSupport },
-
-    { option => "css-filters", desc => "Toggle CSS Filters support",
-      define => "ENABLE_CSS_FILTERS", default => isAppleWebKit() || isBlackBerry(), value => \$cssFiltersSupport },
-
-    { option => "css3-conditional-rules", desc => "Toggle CSS3 Conditional Rules support (i.e. \@supports)",
-      define => "ENABLE_CSS3_CONDITIONAL_RULES", default => 0, value => \$css3ConditionalRulesSupport },
-
-    { option => "css3-text", desc => "Toggle CSS3 Text support",
-      define => "ENABLE_CSS3_TEXT", default => (isEfl() || isGtk()), value => \$css3TextSupport },
-
-    { option => "css3-text-line-break", desc => "Toggle CSS3 Text Line Break support",
-      define => "ENABLE_CSS3_TEXT_LINE_BREAK", default => 0, value => \$css3TextLineBreakSupport },
-
-    { option => "css-box-decoration-break", desc => "Toggle CSS box-decoration-break support",
-      define => "ENABLE_CSS_BOX_DECORATION_BREAK", default => 1, value => \$cssBoxDecorationBreakSupport },
-
-    { option => "css-image-orientation", desc => "Toggle CSS image-orientation support",
-      define => "ENABLE_CSS_IMAGE_ORIENTATION", default => isGtk(), value => \$cssImageOrientationSupport },
-
-    { option => "css-image-resolution", desc => "Toggle CSS image-resolution support",
-      define => "ENABLE_CSS_IMAGE_RESOLUTION", default => (isBlackBerry() || isGtk()), value => \$cssImageResolutionSupport },
-
-    { option => "css-image-set", desc => "Toggle CSS image-set support",
-      define => "ENABLE_CSS_IMAGE_SET", default => (isEfl() || isGtk()), value => \$cssImageSetSupport },
-
-    { option => "css-regions", desc => "Toggle CSS Regions support",
-      define => "ENABLE_CSS_REGIONS", default => 1, value => \$cssRegionsSupport },
-
-    { option => "css-shaders", desc => "Toggle CSS Shaders support",
-      define => "ENABLE_CSS_SHADERS", default => isAppleMacWebKit(), value => \$cssShadersSupport },
-
-    { option => "css-sticky-position", desc => "Toggle CSS sticky position support",
-      define => "ENABLE_CSS_STICKY_POSITION", default => (isGtk() || isEfl()), value => \$cssStickyPositionSupport },
-
-    { option => "css-compositing", desc => "Toggle CSS Compositing support",
-      define => "ENABLE_CSS_COMPOSITING", default => isAppleWebKit(), value => \$cssCompositingSupport },
-
-    { option => "css-transforms-animations-unprefixed", desc => "Toggle support for unprefixed CSS animations and transforms",
-      define => "ENABLE_CSS_TRANSFORMS_ANIMATIONS_UNPREFIXED", default => 1, value => \$cssAnimationsTransformsUnprefixedSupport },
-
-    { option => "css-variables", desc => "Toggle CSS Variable support",
-      define => "ENABLE_CSS_VARIABLES", default => (isBlackBerry() || isEfl() || isGtk()), value => \$cssVariablesSupport },
-
-    { option => "custom-scheme-handler", desc => "Toggle Custom Scheme Handler support",
-      define => "ENABLE_CUSTOM_SCHEME_HANDLER", default => (isBlackBerry() || isEfl()), value => \$customSchemeHandlerSupport },
-
-    { option => "datalist", desc => "Toggle Datalist support",
-      define => "ENABLE_DATALIST_ELEMENT", default => isEfl(), value => \$datalistSupport },
-
-    { option => "data-transfer-items", desc => "Toggle Data Transfer Items support",
-      define => "ENABLE_DATA_TRANSFER_ITEMS", default => 0, value => \$dataTransferItemsSupport },
-
-    { option => "details", desc => "Toggle Details support",
-      define => "ENABLE_DETAILS_ELEMENT", default => 1, value => \$detailsSupport },
-
-    { option => "device-orientation", desc => "Toggle Device Orientation support",
-      define => "ENABLE_DEVICE_ORIENTATION", default => isBlackBerry(), value => \$deviceOrientationSupport },
-
-    { option => "dialog", desc => "Toggle Dialog Element support",
-      define => "ENABLE_DIALOG_ELEMENT", default => 0, value => \$dialogElementSupport },
-
-    { option => "directory-upload", desc => "Toggle Directory Upload support",
-      define => "ENABLE_DIRECTORY_UPLOAD", default => 0, value => \$directoryUploadSupport },
-
-    { option => "dom4-events-constructor", desc => "Expose DOM4 Events constructors",
-      define => "ENABLE_DOM4_EVENTS_CONSTRUCTOR", default => (isAppleWebKit() || isGtk()), value => \$dom4EventsConstructor },
-
-    { option => "download-attribute", desc => "Toggle Download Attribute support",
-      define => "ENABLE_DOWNLOAD_ATTRIBUTE", default => (isBlackBerry() || isEfl()), value => \$downloadAttributeSupport },
-
-    { option => "file-system", desc => "Toggle File System support",
-      define => "ENABLE_FILE_SYSTEM", default => isBlackBerry(), value => \$fileSystemSupport },
-
-    { option => "filters", desc => "Toggle Filters support",
-      define => "ENABLE_FILTERS", default => (isAppleWebKit() || isGtk() || isQt() || isEfl() || isBlackBerry()), value => \$filtersSupport },
-
-    { option => "font-load-events", desc => "Toggle Font Load Events support",
-      define => "ENABLE_FONT_LOAD_EVENTS", default => 0, value => \$fontLoadEventsSupport },
-
-    { option => "ftpdir", desc => "Toggle FTP Directory support",
-      define => "ENABLE_FTPDIR", default => !isWinCE(), value => \$ftpDirSupport },
-
-    { option => "fullscreen-api", desc => "Toggle Fullscreen API support",
-      define => "ENABLE_FULLSCREEN_API", default => (isAppleMacWebKit() || isEfl() || isGtk() || isBlackBerry() || isQt()), value => \$fullscreenAPISupport },
-
-    { option => "gamepad", desc => "Toggle Gamepad support",
-      define => "ENABLE_GAMEPAD", default => (isEfl() || isGtk() || isQt()), value => \$gamepadSupport },
-
-    { option => "geolocation", desc => "Toggle Geolocation support",
-      define => "ENABLE_GEOLOCATION", default => (isAppleWebKit() || isGtk() || isBlackBerry()), value => \$geolocationSupport },
-
-    { option => "high-dpi-canvas", desc => "Toggle High DPI Canvas support",
-      define => "ENABLE_HIGH_DPI_CANVAS", default => (isAppleWebKit()), value => \$highDPICanvasSupport },
-
-    { option => "icon-database", desc => "Toggle Icondatabase support",
-      define => "ENABLE_ICONDATABASE", default => 1, value => \$icondatabaseSupport },
-
-    { option => "iframe-seamless", desc => "Toggle iframe seamless attribute support",
-      define => "ENABLE_IFRAME_SEAMLESS", default => 1, value => \$iframeSeamlessSupport },
-
-    { option => "indexed-database", desc => "Toggle Indexed Database support",
-      define => "ENABLE_INDEXED_DATABASE", default => isGtk(), value => \$indexedDatabaseSupport },
-
-    { option => "input-speech", desc => "Toggle Input Speech support",
-      define => "ENABLE_INPUT_SPEECH", default => 0, value => \$inputSpeechSupport },
-
-    { option => "input-type-color", desc => "Toggle Input Type Color support",
-      define => "ENABLE_INPUT_TYPE_COLOR", default => (isBlackBerry() || isEfl() || isQt()), value => \$inputTypeColorSupport },
-
-    { option => "input-type-date", desc => "Toggle Input Type Date support",
-      define => "ENABLE_INPUT_TYPE_DATE", default => 0, value => \$inputTypeDateSupport },
-
-    { option => "input-type-datetime", desc => "Toggle Input Type Datetime support",
-      define => "ENABLE_INPUT_TYPE_DATETIME", default => 0, value => \$inputTypeDatetimeSupport },
-
-    { option => "input-type-datetimelocal", desc => "Toggle Input Type Datetimelocal support",
-      define => "ENABLE_INPUT_TYPE_DATETIMELOCAL", default => 0, value => \$inputTypeDatetimelocalSupport },
-
-    { option => "input-type-month", desc => "Toggle Input Type Month support",
-      define => "ENABLE_INPUT_TYPE_MONTH", default => 0, value => \$inputTypeMonthSupport },
-
-    { option => "input-type-time", desc => "Toggle Input Type Time support",
-      define => "ENABLE_INPUT_TYPE_TIME", default => 0, value => \$inputTypeTimeSupport },
-
-    { option => "input-type-week", desc => "Toggle Input Type Week support",
-      define => "ENABLE_INPUT_TYPE_WEEK", default => 0, value => \$inputTypeWeekSupport },
-
-    { option => "inspector", desc => "Toggle Inspector support",
-      define => "ENABLE_INSPECTOR", default => !isWinCE(), value => \$inspectorSupport },
-
-    { option => "javascript-debugger", desc => "Toggle JavaScript Debugger support",
-      define => "ENABLE_JAVASCRIPT_DEBUGGER", default => 1, value => \$javascriptDebuggerSupport },
-
-    { option => "legacy-notifications", desc => "Toggle Legacy Notifications support",
-      define => "ENABLE_LEGACY_NOTIFICATIONS", default => isBlackBerry(), value => \$legacyNotificationsSupport },
-
-    { option => "legacy-vendor-prefixes", desc => "Toggle Legacy Vendor Prefix support",
-      define => "ENABLE_LEGACY_VENDOR_PREFIXES", default => !isChromium(), value => \$legacyVendorPrefixSupport },
-
-    { option => "legacy-web-audio", desc => "Toggle Legacy Web Audio support",
-      define => "ENABLE_LEGACY_WEB_AUDIO", default => 1, value => \$legacyWebAudioSupport },
-
-    { option => "link-prefetch", desc => "Toggle Link Prefetch support",
-      define => "ENABLE_LINK_PREFETCH", default => (isGtk() || isEfl()), value => \$linkPrefetchSupport },
-
-    { option => "link-prerender", desc => "Toggle Link Prerender support",
-      define => "ENABLE_LINK_PRERENDER", default => 0, value => \$linkPrerenderSupport },
-
-    { option => "mathml", desc => "Toggle MathML support",
-      define => "ENABLE_MATHML", default => !isBlackBerry(), value => \$mathmlSupport },
-
-    { option => "media-capture", desc => "Toggle Media Capture support",
-      define => "ENABLE_MEDIA_CAPTURE", default => isEfl(), value => \$mediaCaptureSupport },
-
-    { option => "media-source", desc => "Toggle Media Source support",
-      define => "ENABLE_MEDIA_SOURCE", default => 0, value => \$mediaSourceSupport },
-
-    { option => "media-statistics", desc => "Toggle Media Statistics support",
-      define => "ENABLE_MEDIA_STATISTICS", default => 0, value => \$mediaStatisticsSupport },
-
-    { option => "media-stream", desc => "Toggle Media Stream support",
-      define => "ENABLE_MEDIA_STREAM", default => (isChromium() || isBlackBerry()), value => \$mediaStreamSupport },
-
-    { option => "meter-tag", desc => "Toggle Meter Tag support",
-      define => "ENABLE_METER_ELEMENT", default => !isAppleWinWebKit(), value => \$meterTagSupport },
-
-    { option => "mhtml", desc => "Toggle MHTML support",
-      define => "ENABLE_MHTML", default => (isGtk() || isEfl()), value => \$mhtmlSupport },
-
-    { option => "microdata", desc => "Toggle Microdata support",
-      define => "ENABLE_MICRODATA", default => (isEfl() || isBlackBerry() || isGtk()), value => \$microdataSupport },
-
-    { option => "mouse-cursor-scale", desc => "Toggle Scaled mouse cursor support",
-      define => "ENABLE_MOUSE_CURSOR_SCALE", default => 0, value => \$mouseCursorScaleSupport },
-
-    { option => "navigator-content-utils", desc => "Toggle Navigator Content Utils support",
-      define => "ENABLE_NAVIGATOR_CONTENT_UTILS", default => (isBlackBerry() || isEfl()), value => \$registerProtocolHandlerSupport },
-
-    { option => "netscape-plugin-api", desc => "Toggle Netscape Plugin API support",
-      define => "ENABLE_NETSCAPE_PLUGIN_API", default => 1, value => \$netscapePluginAPISupport },
-
-    { option => "network-info", desc => "Toggle Network Info support",
-      define => "ENABLE_NETWORK_INFO", default => (isEfl() || isBlackBerry()), value => \$networkInfoSupport },
-
-    { option => "nosniff", desc => "Toggle support for 'X-Content-Type-Options: nosniff'",
-      define => "ENABLE_NOSNIFF", default => 0, value => \$nosniffSupport },
-
-    { option => "notifications", desc => "Toggle Notifications support",
-      define => "ENABLE_NOTIFICATIONS", default => isBlackBerry(), value => \$notificationsSupport },
-
-    { option => "orientation-events", desc => "Toggle Orientation Events support",
-      define => "ENABLE_ORIENTATION_EVENTS", default => isBlackBerry(), value => \$orientationEventsSupport },
-
-    { option => "page-visibility-api", desc => "Toggle Page Visibility API support",
-      define => "ENABLE_PAGE_VISIBILITY_API", default => (isBlackBerry() || isEfl()), value => \$pageVisibilityAPISupport },
-
-    { option => "performance-timeline", desc => "Toggle Performance Timeline support",
-      define => "ENABLE_PERFORMANCE_TIMELINE", default => isGtk(), value => \$performanceTimelineSupport },
-
-    { option => "progress-tag", desc => "Toggle Progress Tag support",
-      define => "ENABLE_PROGRESS_ELEMENT", default => 1, value => \$progressTagSupport },
-
-    { option => "proximity-events", desc => "Toggle Proximity Events support",
-      define => "ENABLE_PROXIMITY_EVENTS", default => 0, value => \$proximityEventsSupport },
-
-    { option => "quota", desc => "Toggle Quota support",
-      define => "ENABLE_QUOTA", default => 0, value => \$quotaSupport },
-
-    { option => "resolution-media-query", desc => "Toggle resolution media query support",
-      define => "ENABLE_RESOLUTION_MEDIA_QUERY", default => (isEfl() || isQt()), value => \$resolutionMediaQuerySupport },
-
-    { option => "resource-timing", desc => "Toggle Resource Timing support",
-      define => "ENABLE_RESOURCE_TIMING", default => isGtk(), value => \$resourceTimingSupport },
-
-    { option => "request-animation-frame", desc => "Toggle Request Animation Frame support",
-      define => "ENABLE_REQUEST_ANIMATION_FRAME", default => (isAppleMacWebKit() || isGtk() || isEfl() || isBlackBerry()), value => \$requestAnimationFrameSupport },
-
-    { option => "scripted-speech", desc => "Toggle Scripted Speech support",
-      define => "ENABLE_SCRIPTED_SPEECH", default => 0, value => \$scriptedSpeechSupport },
-
-    { option => "shadow-dom", desc => "Toggle Shadow DOM support",
-      define => "ENABLE_SHADOW_DOM", default => (isGtk() || isEfl()), value => \$shadowDOMSupport },
-
-    { option => "shared-workers", desc => "Toggle Shared Workers support",
-      define => "ENABLE_SHARED_WORKERS", default => (isAppleWebKit() || isGtk() || isBlackBerry() || isEfl()), value => \$sharedWorkersSupport },
-
-    { option => "sql-database", desc => "Toggle SQL Database support",
-      define => "ENABLE_SQL_DATABASE", default => 1, value => \$sqlDatabaseSupport },
-
-    { option => "style-scoped", desc => "Toggle Style Scoped support",
-      define => "ENABLE_STYLE_SCOPED", default => (isBlackBerry() || isGtk()), value => \$styleScopedSupport },
-
-    { option => "suid-linux-sandbox", desc => "Toggle suid sandbox for linux",
-      define => "ENABLE_SUID_SANDBOX_LINUX", default => 0, value => \$suidLinuxSandbox },
-
-    { option => "svg", desc => "Toggle SVG support",
-      define => "ENABLE_SVG", default => 1, value => \$svgSupport },
-
-    { option => "svg-dom-objc-bindings", desc => "Toggle SVG DOM ObjC Bindings support",
-      define => "ENABLE_SVG_DOM_OBJC_BINDINGS", default => isAppleMacWebKit(), value => \$svgDOMObjCBindingsSupport },
-
-    { option => "svg-fonts", desc => "Toggle SVG Fonts support",
-      define => "ENABLE_SVG_FONTS", default => 1, value => \$svgFontsSupport },
-
-    { option => "system-malloc", desc => "Toggle system allocator instead of TCmalloc",
-      define => "USE_SYSTEM_MALLOC", default => (isBlackBerry() || isWinCE()), value => \$systemMallocSupport },
-
-    { option => "template-element", desc => "Toggle HTMLTemplateElement support",
-      define => "ENABLE_TEMPLATE_ELEMENT", default => (isEfl() || isGtk()), value => \$templateElementSupport },
-
-    { option => "text-autosizing", desc => "Toggle Text Autosizing support",
-      define => "ENABLE_TEXT_AUTOSIZING", default => 0, value => \$textAutosizingSupport },
-
-    { option => "tiled-backing-store", desc => "Toggle Tiled Backing Store support",
-      define => "WTF_USE_TILED_BACKING_STORE", default => (isQt() || isEfl()), value => \$tiledBackingStoreSupport },
-
-    { option => "threaded-html-parser", desc => "Toggle threaded HTML parser support",
-      define => "ENABLE_THREADED_HTML_PARSER", default => isChromium(), value => \$threadedHTMLParserSupport },
-
-    { option => "touch-events", desc => "Toggle Touch Events support",
-      define => "ENABLE_TOUCH_EVENTS", default => (isQt() || isBlackBerry() || isEfl()), value => \$touchEventsSupport },
-
-    { option => "touch-slider", desc => "Toggle Touch Slider support",
-      define => "ENABLE_TOUCH_SLIDER", default => isBlackBerry(), value => \$touchSliderSupport },
-
-    { option => "touch-icon-loading", desc => "Toggle Touch Icon Loading Support",
-      define => "ENABLE_TOUCH_ICON_LOADING", default => 0, value => \$touchIconLoadingSupport },
-
-    { option => "user-timing", desc => "Toggle User Timing support",
-      define => "ENABLE_USER_TIMING", default => isGtk(), value => \$userTimingSupport },
-
-    { option => "vibration", desc => "Toggle Vibration support",
-      define => "ENABLE_VIBRATION", default => (isEfl() || isBlackBerry()), value => \$vibrationSupport },
-
-    { option => "video", desc => "Toggle Video support",
-      define => "ENABLE_VIDEO", default => (isAppleWebKit() || isGtk() || isBlackBerry() || isEfl()), value => \$videoSupport },
-
-    { option => "video-track", desc => "Toggle Video Track support",
-      define => "ENABLE_VIDEO_TRACK", default => (isAppleWebKit() || isGtk() || isEfl() || isBlackBerry()), value => \$videoTrackSupport },
-
-    { option => "webgl", desc => "Toggle WebGL support",
-      define => "ENABLE_WEBGL", default => (isAppleMacWebKit() || isGtk() || isEfl()), value => \$webglSupport },
-
-    { option => "web-audio", desc => "Toggle Web Audio support",
-      define => "ENABLE_WEB_AUDIO", default => (isEfl() || isGtk()), value => \$webAudioSupport },
-
-    { option => "web-sockets", desc => "Toggle Web Sockets support",
-      define => "ENABLE_WEB_SOCKETS", default => 1, value => \$webSocketsSupport },
-
-    { option => "web-timing", desc => "Toggle Web Timing support",
-      define => "ENABLE_WEB_TIMING", default => (isBlackBerry() || isGtk() || isEfl()), value => \$webTimingSupport },
-
-    { option => "workers", desc => "Toggle Workers support",
-      define => "ENABLE_WORKERS", default => (isAppleWebKit() || isGtk() || isBlackBerry() || isEfl()), value => \$workersSupport },
-
-    { option => "xhr-timeout", desc => "Toggle XHR Timeout support",
-      define => "ENABLE_XHR_TIMEOUT", default => (isEfl() || isGtk() || isAppleMacWebKit()), value => \$xhrTimeoutSupport },
-
-    { option => "xslt", desc => "Toggle XSLT support",
-      define => "ENABLE_XSLT", default => 1, value => \$xsltSupport },
-);
-
-sub getFeatureOptionList()
-{
-    return @features;
-}
-
-1;
diff --git a/Tools/Scripts/webkitperl/features.pm b/Tools/Scripts/webkitperl/features.pm
deleted file mode 100644
index e546c39..0000000
--- a/Tools/Scripts/webkitperl/features.pm
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All rights reserved
-# Copyright (C) 2006 Alexey Proskuryakov (ap@nypop.com)
-# Copyright (C) 2010 Andras Becsi (abecsi@inf.u-szeged.hu), University of Szeged
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer.
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution.
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Module to share code to detect the existance of features in built binaries.
-
-use strict;
-use warnings;
-
-use FindBin;
-use lib $FindBin::Bin;
-use webkitdirs;
-
-BEGIN {
-   use Exporter   ();
-   our ($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS);
-   $VERSION     = 1.00;
-   @ISA         = qw(Exporter);
-   @EXPORT      = qw(&checkWebCoreFeatureSupport);
-   %EXPORT_TAGS = ( );
-   @EXPORT_OK   = ();
-}
-
-sub libraryContainsSymbol($$)
-{
-    my ($path, $symbol) = @_;
-
-    if (isCygwin() or isWindows()) {
-        # FIXME: Implement this for Windows.
-        return 0;
-    }
-
-    my $foundSymbol = 0;
-    if (-e $path) {
-        open NM, "-|", nmPath(), $path or die;
-        while (<NM>) {
-            $foundSymbol = 1 if /$symbol/; # FIXME: This should probably check for word boundaries before/after the symbol name.
-        }
-        close NM;
-    }
-    return $foundSymbol;
-}
-
-sub hasFeature($$)
-{
-    my ($featureName, $path) = @_;
-    my %symbolForFeature = (
-        "MathML" => "MathMLElement",
-        "SVG" => "SVGDefsElement", # We used to look for SVGElement but isSVGElement exists (and would match) in --no-svg builds.
-        "Accelerated Compositing" => "GraphicsLayer",
-        "3D Rendering" => "WebCoreHas3DRendering",
-        "3D Canvas" => "WebGLShader",
-        "MHTML" => "MHTMLArchive"
-    );
-    my $symbolName = $symbolForFeature{$featureName};
-    die "Unknown feature: $featureName" unless $symbolName;
-    return libraryContainsSymbol($path, $symbolName);
-}
-
-sub checkWebCoreFeatureSupport($$)
-{
-    my ($feature, $required) = @_;
-    my $libraryName = "WebCore";
-    my $path = builtDylibPathForName($libraryName);
-    my $hasFeature = hasFeature($feature, $path);
-    if ($required && !$hasFeature) {
-        die "$libraryName at \"$path\" does not include $hasFeature support.  See build-webkit --help\n";
-    }
-    return $hasFeature;
-}
-
-1;
diff --git a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/parser_unittests.pl b/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/parser_unittests.pl
deleted file mode 100644
index df29d47..0000000
--- a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/parser_unittests.pl
+++ /dev/null
@@ -1,131 +0,0 @@
-#!/usr/bin/perl -w
-#
-# Copyright (C) 2011 Google Inc.  All rights reserved.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Library General Public
-# License as published by the Free Software Foundation; either
-# version 2 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Library General Public License for more details.
-#
-# You should have received a copy of the GNU Library General Public License
-# along with this library; see the file COPYING.LIB.  If not, write to
-# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-# Boston, MA 02110-1301, USA.
-
-# This script tests the parser of prepare-ChangeLog (i.e. get_function_line_ranges_for_XXXX()).
-# This script runs the unittests specified in @testFiles.
-
-use strict;
-use warnings;
-
-use Data::Dumper;
-use File::Basename;
-use File::Spec;
-use File::Temp qw(tempfile);
-use FindBin;
-use Getopt::Long;
-use Test::More;
-use lib File::Spec->catdir($FindBin::Bin, "..");
-use LoadAsModule qw(PrepareChangeLog prepare-ChangeLog);
-
-sub captureOutput($);
-sub convertAbsolutepathToWebKitPath($);
-
-my %testFiles = ("perl_unittests.pl" => "get_function_line_ranges_for_perl",
-                 "python_unittests.py" => "get_function_line_ranges_for_python",
-                 "java_unittests.java" => "get_function_line_ranges_for_java",
-                 "cpp_unittests.cpp" => "get_function_line_ranges_for_cpp",
-                 "javascript_unittests.js" => "get_function_line_ranges_for_javascript",
-                 "css_unittests.css" => "get_selector_line_ranges_for_css",
-                 "css_unittests_warning.css" => "get_selector_line_ranges_for_css",
-                );
-
-my $resetResults;
-GetOptions('reset-results' => \$resetResults);
-
-my @testSet;
-foreach my $testFile (sort keys %testFiles) {
-    my $basename = $testFile;
-    $basename = $1 if $basename =~ /^(.*)\.[^\.]*$/;
-    push @testSet, {method => $testFiles{$testFile},
-                    inputFile => File::Spec->catdir($FindBin::Bin, "resources", $testFile),
-                    expectedFile => File::Spec->catdir($FindBin::Bin, "resources", $basename . "-expected.txt")};
-}
-
-plan(tests => scalar @testSet);
-foreach my $test (@testSet) {
-    open FH, "< $test->{inputFile}" or die "Cannot open $test->{inputFile}: $!";
-    my $parser = eval "\\&PrepareChangeLog::$test->{method}";
-    my @ranges;
-    my ($stdout, $stderr) = captureOutput(sub { @ranges = $parser->(\*FH, $test->{inputFile}); });
-    close FH;
-    $stdout = convertAbsolutepathToWebKitPath($stdout);
-    $stderr = convertAbsolutepathToWebKitPath($stderr);
-
-    my %actualOutput = (ranges => \@ranges, stdout => $stdout, stderr => $stderr);
-    if ($resetResults) {
-        open FH, "> $test->{expectedFile}" or die "Cannot open $test->{expectedFile}: $!";
-        print FH Data::Dumper->new([\%actualOutput])->Terse(1)->Indent(1)->Dump();
-        close FH;
-        next;
-    }
-
-    open FH, "< $test->{expectedFile}" or die "Cannot open $test->{expectedFile}: $!";
-    local $/ = undef;
-    my $expectedOutput = eval <FH>;
-    close FH;
-
-    is_deeply(\%actualOutput, $expectedOutput, "Tests $test->{inputFile}");
-}
-
-sub captureOutput($)
-{
-    my ($targetMethod) = @_;
-
-    my ($stdoutFH, $stdoutFileName) = tempfile();
-    my ($stderrFH, $stderrFileName) = tempfile();
-
-    open OLDSTDOUT, ">&", \*STDOUT or die "Cannot dup STDOUT: $!";
-    open OLDSTDERR, ">&", \*STDERR or die "Cannot dup STDERR: $!";
-
-    open STDOUT, ">&", $stdoutFH or die "Cannot redirect STDOUT: $!";
-    open STDERR, ">&", $stderrFH or die "Cannot redirect STDERR: $!";
-
-    &$targetMethod();
-
-    close STDOUT;
-    close STDERR;
-
-    open STDOUT, ">&OLDSTDOUT" or die "Cannot dup OLDSTDOUT: $!";
-    open STDERR, ">&OLDSTDERR" or die "Cannot dup OLDSTDERR: $!";
-
-    close OLDSTDOUT;
-    close OLDSTDERR;
-
-    seek $stdoutFH, 0, 0;
-    seek $stderrFH, 0, 0;
-    local $/ = undef;
-    my $stdout = <$stdoutFH>;
-    my $stderr = <$stderrFH>;
-
-    close $stdoutFH;
-    close $stderrFH;
-
-    unlink $stdoutFileName or die "Cannot unlink $stdoutFileName: $!";
-    unlink $stderrFileName or die "Cannot unlink $stderrFileName: $!";
-    return ($stdout, $stderr);
-}
-
-sub convertAbsolutepathToWebKitPath($)
-{
-    my $string = shift;
-    my $sourceDir = LoadAsModule::sourceDir();
-    $sourceDir .= "/" unless $sourceDir =~ m-/$-;
-    $string =~ s/$sourceDir//g;
-    return $string;
-}
diff --git a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/cpp_unittests-expected.txt b/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/cpp_unittests-expected.txt
deleted file mode 100644
index d94b074..0000000
--- a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/cpp_unittests-expected.txt
+++ /dev/null
@@ -1,356 +0,0 @@
-{
-  'stderr' => '',
-  'stdout' => '',
-  'ranges' => [
-    [
-      '20',
-      '22',
-      'func1'
-    ],
-    [
-      '24',
-      '27',
-      'func2'
-    ],
-    [
-      '29',
-      '29',
-      'func3'
-    ],
-    [
-      '33',
-      '36',
-      'func5'
-    ],
-    [
-      '44',
-      '46',
-      'func6'
-    ],
-    [
-      '52',
-      '54',
-      'func7'
-    ],
-    [
-      '58',
-      '60',
-      'func8'
-    ],
-    [
-      '62',
-      '64',
-      'func9'
-    ],
-    [
-      '67',
-      '69',
-      'func10'
-    ],
-    [
-      '76',
-      '78',
-      'func11'
-    ],
-    [
-      '85',
-      '87',
-      'func12'
-    ],
-    [
-      '89',
-      '91',
-      'func13'
-    ],
-    [
-      '93',
-      '97',
-      'func14'
-    ],
-    [
-      '99',
-      '102',
-      'func15'
-    ],
-    [
-      '104',
-      '106',
-      'funcOverloaded'
-    ],
-    [
-      '108',
-      '110',
-      'funcOverloaded'
-    ],
-    [
-      '112',
-      '114',
-      'funcOverloaded'
-    ],
-    [
-      '116',
-      '118',
-      'Class::func16'
-    ],
-    [
-      '120',
-      '122',
-      'Class1::Class2::func17'
-    ],
-    [
-      '124',
-      '126',
-      'Class2::func18'
-    ],
-    [
-      '128',
-      '130',
-      'Class2::func19'
-    ],
-    [
-      '132',
-      '134',
-      'Class2::func20'
-    ],
-    [
-      '136',
-      '138',
-      'Class2::func21'
-    ],
-    [
-      '140',
-      '142',
-      'Class2::func22'
-    ],
-    [
-      '144',
-      '146',
-      'func23'
-    ],
-    [
-      '149',
-      '151',
-      'func24'
-    ],
-    [
-      '153',
-      '155',
-      'Class2::func25'
-    ],
-    [
-      '158',
-      '159',
-      'Class1'
-    ],
-    [
-      '162',
-      '164',
-      'Class1::func26'
-    ],
-    [
-      '167',
-      '169',
-      'Class2::func27'
-    ],
-    [
-      '173',
-      '175',
-      'Class3::func28'
-    ],
-    [
-      '179',
-      '182',
-      'Class7::operator+'
-    ],
-    [
-      '185',
-      '187',
-      'Class100::Class100'
-    ],
-    [
-      '189',
-      '191',
-      'Class101::~Class101'
-    ],
-    [
-      '193',
-      '196',
-      'Class102::Class102'
-    ],
-    [
-      '198',
-      '201',
-      'Class103::Class103'
-    ],
-    [
-      '204',
-      '205',
-      'Struct1'
-    ],
-    [
-      '208',
-      '210',
-      'Struct1::func29'
-    ],
-    [
-      '213',
-      '215',
-      'Struct2::func30'
-    ],
-    [
-      '219',
-      '219',
-      'NameSpace1'
-    ],
-    [
-      '220',
-      '222',
-      'NameSpace1::func30'
-    ],
-    [
-      '223',
-      '223',
-      'NameSpace1'
-    ],
-    [
-      '228',
-      '228',
-      'NameSpace2'
-    ],
-    [
-      '229',
-      '231',
-      'NameSpace1::NameSpace2::func31'
-    ],
-    [
-      '232',
-      '232',
-      'NameSpace2'
-    ],
-    [
-      '237',
-      '240',
-      'Class104'
-    ],
-    [
-      '244',
-      '249',
-      'Class105'
-    ],
-    [
-      '253',
-      '254',
-      'Class106'
-    ],
-    [
-      '255',
-      '259',
-      'Class106::func32'
-    ],
-    [
-      '260',
-      '261',
-      'Class106'
-    ],
-    [
-      '262',
-      '266',
-      'Class106::func33'
-    ],
-    [
-      '267',
-      '268',
-      'Class106'
-    ],
-    [
-      '272',
-      '273',
-      'NameSpace3'
-    ],
-    [
-      '275',
-      '276',
-      'NameSpace4'
-    ],
-    [
-      '278',
-      '279',
-      'NameSpace3'
-    ],
-    [
-      '283',
-      '284',
-      'NameSpace5'
-    ],
-    [
-      '286',
-      '287',
-      'NameSpace6'
-    ],
-    [
-      '289',
-      '290',
-      'Class107'
-    ],
-    [
-      '291',
-      '295',
-      'NameSpace5::NameSpace6::Class107::func34'
-    ],
-    [
-      '296',
-      '297',
-      'Class107'
-    ],
-    [
-      '299',
-      '300',
-      'NameSpace6'
-    ],
-    [
-      '302',
-      '303',
-      'NameSpace5'
-    ],
-    [
-      '307',
-      '307',
-      'Class108'
-    ],
-    [
-      '308',
-      '320',
-      'Class108::func35'
-    ],
-    [
-      '321',
-      '321',
-      'Class108'
-    ],
-    [
-      '340',
-      '354',
-      'NameSpace7'
-    ],
-    [
-      '356',
-      '369',
-      'NameSpace8'
-    ],
-    [
-      '371',
-      '371',
-      'NameSpace7'
-    ],
-    [
-      '373',
-      '386',
-      'Class109'
-    ],
-    [
-      '388',
-      '388',
-      'NameSpace7'
-    ]
-  ]
-}
diff --git a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/cpp_unittests.cpp b/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/cpp_unittests.cpp
deleted file mode 100644
index 015a694..0000000
--- a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/cpp_unittests.cpp
+++ /dev/null
@@ -1,389 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc.  All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this library; see the file COPYING.LIB.  If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-void func1()
-{
-}
-
-void func2()
-{
-    return 123;
-}
-
-void func3() { return 123; }
-
-void func4();
-
-void func5()
-{
-    /* comment */
-}
-
-/*
-void funcInsideComment()
-{
-}
-*/
-
-void func6()
-{
-}
-
-#define MACRO 123 \
-    456 \
-    789
-
-void func7()
-{
-}
-
-#if 1 || 1 || \
-    1 || 1 || 1
-void func8()
-{
-}
-#else
-void func9()
-{
-}
-#endif
-
-void func10()
-{
-}
-
-std::string str = "abcde"
-"void funcInsideDoubleQuotedString()"
-"{"
-"}";
-
-void func11()
-{
-}
-
-std::string str = 'abcde'
-'void funcInsideSingleQuotedString()'
-'{'
-'}';
-
-void func12(int a)
-{
-}
-
-void func13(int a, int b, int c)
-{
-}
-
-void func14(int a, int b,
-            int c, int d
-            , int e, int f)
-{
-}
-
-void func15
-    (int a, int b)
-{
-}
-
-void funcOverloaded()
-{
-}
-
-void funcOverloaded(int a)
-{
-}
-
-void funcOverloaded(float a)
-{
-}
-
-void Class::func16()
-{
-}
-
-void Class1::Class2::func17()
-{
-}
-
-static void Class2::func18()
-{
-}
-
-inline void Class2::func19()
-{
-}
-
-const void Class2::func20()
-{
-}
-
-Class1::Type Class2::func21()
-{
-}
-
-inline static const Class1::Type Class2::func22()
-{
-}
-
-template<class T> void func23(T t)
-{
-}
-
-template<class T>
-void func24(T t)
-{
-}
-
-inline static Class1::Type Class2::func25()
-{
-}
-
-class Class1 {
-public:
-    void func26();
-};
-
-void Class1::func26()
-{
-}
-
-class Class2 {
-    void func27()
-    {
-    }
-};
-
-class Class3 : public Class4, Class5, Class6 {
-    void func28()
-    {
-    }
-};
-
-class Class7 {
-    int operator+()
-    {
-        return 123;
-    }
-};
-
-Class100::Class100()
-{
-}
-
-Class101::~Class101()
-{
-}
-
-Class102::Class102() :
-    member(1), member(2)
-{
-}
-
-Class103::Class103()
-    : member(1), member(2)
-{
-}
-
-struct Struct1 {
-public:
-    void func29();
-};
-
-void Struct1::func29()
-{
-}
-
-struct Struct2 {
-    void func30()
-    {
-    }
-};
-
-namespace NameSpace1 {
-
-void func30()
-{
-}
-
-}
-
-namespace NameSpace1 {
-namespace NameSpace2 {
-
-void func31()
-{
-}
-
-}
-}
-
-class Class104 {
-    int a;
-    int b;
-    int c;
-    int d;
-};
-
-class Class105 {
-public:
-    int a;
-    int b;
-private:
-    int c;
-    int d;
-};
-
-class Class106 {
-    int a;
-    int b;
-    void func32()
-    {
-        int c;
-        int d;
-    }
-    int e;
-    int f;
-    void func33()
-    {
-        int g;
-        int h;
-    }
-    int i;
-    int j;
-};
-
-namespace NameSpace3 {
-int a;
-int b;
-namespace NameSpace4 {
-int c;
-int d;
-};
-int e;
-int f;
-};
-
-namespace NameSpace5 {
-int a;
-int b;
-namespace NameSpace6 {
-int c;
-int d;
-class Class107 {
-    int e;
-    int f;
-    void func34()
-    {
-        int g;
-        int h;
-    }
-    int i;
-    int j;
-};
-int k;
-int ll;
-};
-int m;
-int n;
-};
-
-class Class108 {
-    int a;
-    void func35()
-    {
-        int b;
-        if (1) {
-            int c;
-            for (;;) {
-                int d;
-                int e;
-            }
-            int f;
-        }
-        int g;
-    }
-    int h;
-};
-
-int a[] = { };
-int a[] = {
-};
-int a[] = { 1, 2, 3 };
-int a[] = {
-    1,
-    2,
-    3
-};
-int a[3] = { 1, 2, 3 };
-int a[][3] = { {1, 2, 3}, {4, 5, 6} };
-int a[2][3] = { {1, 2, 3}, {4, 5, 6} };
-extern int a[];
-char a[4] = "test";
-
-namespace NameSpace7 {
-int a[] = { };
-int a[] = {
-};
-int a[] = { 1, 2, 3 };
-int a[] = {
-    1,
-    2,
-    3
-};
-int a[3] = { 1, 2, 3 };
-int a[][3] = { {1, 2, 3}, {4, 5, 6} };
-int a[2][3] = { {1, 2, 3}, {4, 5, 6} };
-extern int a[];
-char a[4] = "test";
-
-namespace NameSpace8 {
-int a[] = { };
-int a[] = {
-};
-int a[] = { 1, 2, 3 };
-int a[] = {
-    1,
-    2,
-    3
-};
-int a[3] = { 1, 2, 3 };
-int a[][3] = { {1, 2, 3}, {4, 5, 6} };
-int a[2][3] = { {1, 2, 3}, {4, 5, 6} };
-extern int a[];
-char a[4] = "test";
-};
-
-class Class109 {
-    int a[] = { };
-    int a[] = {
-    };
-    int a[] = { 1, 2, 3 };
-    int a[] = {
-        1,
-        2,
-        3
-    };
-    int a[3] = { 1, 2, 3 };
-    int a[][3] = { {1, 2, 3}, {4, 5, 6} };
-    int a[2][3] = { {1, 2, 3}, {4, 5, 6} };
-    extern int a[];
-    char a[4] = "test";
-};
-
-};
diff --git a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/css_unittests-expected.txt b/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/css_unittests-expected.txt
deleted file mode 100644
index cacd783..0000000
--- a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/css_unittests-expected.txt
+++ /dev/null
@@ -1,96 +0,0 @@
-{
-  'stderr' => '',
-  'stdout' => '',
-  'ranges' => [
-    [
-      '20',
-      '21',
-      'element1'
-    ],
-    [
-      '23',
-      '23',
-      'element2'
-    ],
-    [
-      '25',
-      '27',
-      'element3'
-    ],
-    [
-      '29',
-      '30',
-      'element4.p'
-    ],
-    [
-      '32',
-      '33',
-      'element5.p.q.r.s'
-    ],
-    [
-      '35',
-      '36',
-      'element6#p'
-    ],
-    [
-      '38',
-      '39',
-      'element7 element8'
-    ],
-    [
-      '41',
-      '42',
-      'element9.p element10.q'
-    ],
-    [
-      '44',
-      '45',
-      'element11#p element12#q'
-    ],
-    [
-      '47',
-      '48',
-      'element13, element14'
-    ],
-    [
-      '50',
-      '51',
-      '.p'
-    ],
-    [
-      '53',
-      '55',
-      '#p'
-    ],
-    [
-      '57',
-      '58',
-      '.p element15 #q element16.r element17#s'
-    ],
-    [
-      '60',
-      '61',
-      'element18:target'
-    ],
-    [
-      '63',
-      '65',
-      'element19'
-    ],
-    [
-      '67',
-      '69',
-      'element20'
-    ],
-    [
-      '71',
-      '74',
-      'element21'
-    ],
-    [
-      '76',
-      '79',
-      'element22'
-    ]
-  ]
-}
diff --git a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/css_unittests.css b/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/css_unittests.css
deleted file mode 100644
index 4bd172e..0000000
--- a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/css_unittests.css
+++ /dev/null
@@ -1,85 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc.  All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this library; see the file COPYING.LIB.  If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-element1 {
-}
-
-element2 { }
-
-element3
-{
-}
-
-element4.p {
-}
-
-element5.p.q.r.s {
-}
-
-element6#p {
-}
-
-element7 element8 {
-}
-
-element9.p element10.q {
-}
-
-element11#p element12#q {
-}
-
-element13, element14 {
-}
-
-.p {
-}
-
-#p {
-
-}
-
-.p element15 #q element16.r element17#s {
-}
-
-element18:target {
-}
-
-element19 {
-    property1: 123
-}
-
-element20 {
-    property1: 123;
-}
-
-element21 {
-    property1: 123;
-    property2: 456;
-}
-
-element22 {
-    property1: 123;
-    /* comment */
-}
-
-/*
-elementInsideComment {
-    property1: 123;
-}
-*/
diff --git a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/css_unittests_warning-expected.txt b/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/css_unittests_warning-expected.txt
deleted file mode 100644
index 27a5399..0000000
--- a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/css_unittests_warning-expected.txt
+++ /dev/null
@@ -1,59 +0,0 @@
-{
-  'stderr' => 'mismatched comment found in Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/css_unittests_warning.css
-mismatched comment found in Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/css_unittests_warning.css
-mismatched comment found in Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/css_unittests_warning.css
-mismatched brace found in Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/css_unittests_warning.css
-mismatched brace found in Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/css_unittests_warning.css
-mismatched brace found in Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/css_unittests_warning.css
-mismatched brace found in Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/css_unittests_warning.css
-mismatched brace found in Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/css_unittests_warning.css
-',
-  'stdout' => '',
-  'ranges' => [
-    [
-      '20',
-      '22',
-      'element1'
-    ],
-    [
-      '24',
-      '26',
-      'element2'
-    ],
-    [
-      '28',
-      '30',
-      'element3'
-    ],
-    [
-      '32',
-      '33',
-      'element4'
-    ],
-    [
-      0,
-      '34',
-      ''
-    ],
-    [
-      '36',
-      '38',
-      'element5'
-    ],
-    [
-      '40',
-      '41',
-      'element6'
-    ],
-    [
-      0,
-      '42',
-      ''
-    ],
-    [
-      0,
-      '47',
-      ''
-    ]
-  ]
-}
diff --git a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/css_unittests_warning.css b/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/css_unittests_warning.css
deleted file mode 100644
index 41b7b67..0000000
--- a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/css_unittests_warning.css
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc.  All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this library; see the file COPYING.LIB.  If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-element1 {
-    /* comment mismatched */ */
-}
-
-element2 {
-    */ /* comment mismatched */
-}
-
-element3 {
-    */
-}
-
-element4 {
-    { } /* brace mismatched */
-}
-
-element5 {
-    { /* brace mismatched */
-}
-
-element6 {
-    } /* brace mismatched */
-}
-
-{
-element7 {
-    /* brace mismatched */
-}
diff --git a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/java_unittests-expected.txt b/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/java_unittests-expected.txt
deleted file mode 100644
index 6f37c67..0000000
--- a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/java_unittests-expected.txt
+++ /dev/null
@@ -1,321 +0,0 @@
-{
-  'stderr' => '',
-  'stdout' => '',
-  'ranges' => [
-    [
-      '20',
-      '26',
-      'Simple'
-    ],
-    [
-      '26',
-      '28',
-      'Simple.func1'
-    ],
-    [
-      '29',
-      '30',
-      'Simple'
-    ],
-    [
-      '30',
-      '33',
-      'Simple.func2'
-    ],
-    [
-      '34',
-      '34',
-      'Simple'
-    ],
-    [
-      '35',
-      '37',
-      'Simple.func3'
-    ],
-    [
-      '38',
-      '38',
-      'Simple'
-    ],
-    [
-      '39',
-      '39',
-      'Simple.func4'
-    ],
-    [
-      '40',
-      '41',
-      'Simple'
-    ],
-    [
-      '41',
-      '44',
-      'Simple.func5'
-    ],
-    [
-      '45',
-      '52',
-      'Simple'
-    ],
-    [
-      '52',
-      '54',
-      'Simple.func6'
-    ],
-    [
-      '55',
-      '56',
-      'Simple'
-    ],
-    [
-      '56',
-      '58',
-      'Simple.func7'
-    ],
-    [
-      '59',
-      '62',
-      'Simple'
-    ],
-    [
-      '60',
-      '64',
-      'Simple.func8'
-    ],
-    [
-      '65',
-      '67',
-      'Simple'
-    ],
-    [
-      '66',
-      '69',
-      'Simple.func9'
-    ],
-    [
-      '70',
-      '71',
-      'Simple'
-    ],
-    [
-      '71',
-      '73',
-      'Simple.func10'
-    ],
-    [
-      '74',
-      '75',
-      'Simple'
-    ],
-    [
-      '75',
-      '77',
-      'Simple.funcOverloaded'
-    ],
-    [
-      '78',
-      '79',
-      'Simple'
-    ],
-    [
-      '79',
-      '81',
-      'Simple.funcOverloaded'
-    ],
-    [
-      '82',
-      '83',
-      'Simple'
-    ],
-    [
-      '83',
-      '85',
-      'Simple.funcOverloaded'
-    ],
-    [
-      '86',
-      '87',
-      'Simple'
-    ],
-    [
-      '87',
-      '89',
-      'Simple.func11'
-    ],
-    [
-      '90',
-      '91',
-      'Simple'
-    ],
-    [
-      '91',
-      '93',
-      'Simple.func12'
-    ],
-    [
-      '94',
-      '95',
-      'Simple'
-    ],
-    [
-      '95',
-      '97',
-      'Simple.func13'
-    ],
-    [
-      '98',
-      '99',
-      'Simple'
-    ],
-    [
-      '99',
-      '101',
-      'Simple.func14'
-    ],
-    [
-      '102',
-      '103',
-      'Simple'
-    ],
-    [
-      '103',
-      '105',
-      'Simple.func15'
-    ],
-    [
-      '106',
-      '107',
-      'Simple'
-    ],
-    [
-      '107',
-      '109',
-      'Simple.func16'
-    ],
-    [
-      '110',
-      '111',
-      'Simple'
-    ],
-    [
-      '111',
-      '113',
-      'Simple.func17'
-    ],
-    [
-      '114',
-      '115',
-      'Simple'
-    ],
-    [
-      '115',
-      '117',
-      'Simple.func18'
-    ],
-    [
-      '118',
-      '119',
-      'Simple'
-    ],
-    [
-      '119',
-      '121',
-      'Simple.func19'
-    ],
-    [
-      '122',
-      '123',
-      'Simple'
-    ],
-    [
-      '123',
-      '125',
-      'Simple.func20'
-    ],
-    [
-      '126',
-      '127',
-      'Simple'
-    ],
-    [
-      '127',
-      '129',
-      'Simple.func21'
-    ],
-    [
-      '130',
-      '130',
-      'Simple'
-    ],
-    [
-      '135',
-      '137',
-      'Derived1'
-    ],
-    [
-      '137',
-      '139',
-      'Derived1.Derived1'
-    ],
-    [
-      '140',
-      '141',
-      'Derived1'
-    ],
-    [
-      '141',
-      '143',
-      'Derived1.func22'
-    ],
-    [
-      '144',
-      '144',
-      'Derived1'
-    ],
-    [
-      '146',
-      '148',
-      'Interface1'
-    ],
-    [
-      '150',
-      '154',
-      'Interface2'
-    ],
-    [
-      '154',
-      '156',
-      'Interface2.func23'
-    ],
-    [
-      '157',
-      '157',
-      'Interface2'
-    ],
-    [
-      '159',
-      '161',
-      'Derived2'
-    ],
-    [
-      '161',
-      '163',
-      'Derived2.Derived2'
-    ],
-    [
-      '164',
-      '165',
-      'Derived2'
-    ],
-    [
-      '165',
-      '167',
-      'Derived2.func23'
-    ],
-    [
-      '168',
-      '168',
-      'Derived2'
-    ]
-  ]
-}
diff --git a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/java_unittests.java b/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/java_unittests.java
deleted file mode 100644
index ebee914..0000000
--- a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/java_unittests.java
+++ /dev/null
@@ -1,168 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc.  All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this library; see the file COPYING.LIB.  If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-public class Simple
-{
-    int a;
-    String b;
-    final int c = 12345;
-
-    void func1()
-    {
-    }
-
-    void func2()
-    {
-        return 123;
-    }
-
-    void func3() {
-        return 123;
-    }
-
-    void func4() { return 123; }
-
-    void func5()
-    {
-        /* comment */
-    }
-
-    /*
-      void funcInsideComment()
-      {
-      }
-    */
-
-    void func6(int a)
-    {
-    }
-
-    void func7(int a, int b, int c)
-    {
-    }
-
-    void func8(int a, int b,
-               int c, int d
-               , int e, int f)
-    {
-    }
-
-    void func9
-        (int a, int b)
-    {
-    }
-
-    LinkedList func10()
-    {
-    }
-
-    void funcOverloaded()
-    {
-    }
-
-    void funcOverloaded(int a)
-    {
-    }
-
-    void funcOverloaded(float a)
-    {
-    }
-
-    static void func11()
-    {
-    }
-
-    public void func12()
-    {
-    }
-
-    protected void func13()
-    {
-    }
-
-    private void func14()
-    {
-    }
-
-    static void func15()
-    {
-    }
-
-    final void func16()
-    {
-    }
-
-    abstract void func17()
-    {
-    }
-
-    synchronized void func18()
-    {
-    }
-
-    final static public synchronized void func19()
-    {
-    }
-
-    void func20() throws IOException
-    {
-    }
-
-    void func21() throws IOException, ArithmeticException
-    {
-    }
-}
-
-import java.util.*;
-import java.math.*;
-
-class Derived1 extends Base
-{
-    public Derived1()
-    {
-    }
-
-    public func22()
-    {
-    }
-}
-
-interface Interface1
-{
-}
-
-interface Interface2
-{
-    int a;
-
-    void func23()
-    {
-    }
-}
-
-class Derived2 extends Base interface Interface1, Interface2
-{
-    public Derived2()
-    {
-    }
-
-    public func23()
-    {
-    }
-}
diff --git a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/javascript_unittests-expected.txt b/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/javascript_unittests-expected.txt
deleted file mode 100644
index 35a3080..0000000
--- a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/javascript_unittests-expected.txt
+++ /dev/null
@@ -1,136 +0,0 @@
-{
-  'stderr' => '',
-  'stdout' => '',
-  'ranges' => [
-    [
-      '20',
-      '22',
-      'func1'
-    ],
-    [
-      '24',
-      '25',
-      'func2'
-    ],
-    [
-      '27',
-      '27',
-      'func3'
-    ],
-    [
-      '29',
-      '32',
-      'func4'
-    ],
-    [
-      '34',
-      '37',
-      'func5'
-    ],
-    [
-      '39',
-      '42',
-      'func6'
-    ],
-    [
-      '50',
-      '52',
-      'func7'
-    ],
-    [
-      '56',
-      '58',
-      'func8'
-    ],
-    [
-      '62',
-      '64',
-      'func9'
-    ],
-    [
-      '66',
-      '68',
-      'func10'
-    ],
-    [
-      '70',
-      '73',
-      'func11'
-    ],
-    [
-      '75',
-      '79',
-      'func12'
-    ],
-    [
-      '81',
-      '83',
-      'funcOverloaded'
-    ],
-    [
-      '85',
-      '87',
-      'funcOverloaded'
-    ],
-    [
-      '89',
-      '91',
-      'funcOverloaded'
-    ],
-    [
-      '94',
-      '96',
-      'Func1.prototype.get x1'
-    ],
-    [
-      '98',
-      '101',
-      'Func1.prototype.get x2'
-    ],
-    [
-      '103',
-      '105',
-      'Func1.prototype.set x1'
-    ],
-    [
-      '107',
-      '110',
-      'Func1.prototype.set x3'
-    ],
-    [
-      '114',
-      '116',
-      'Func2.prototype.func13'
-    ],
-    [
-      '118',
-      '120',
-      'Func2.prototype.func14'
-    ],
-    [
-      '122',
-      '125',
-      'Func2.prototype.func15'
-    ],
-    [
-      '133',
-      '134',
-      'func16.func17'
-    ],
-    [
-      '136',
-      '137',
-      'func16.func18'
-    ],
-    [
-      '139',
-      '141',
-      'func16.func19'
-    ],
-    [
-      '128',
-      '150',
-      'func16'
-    ]
-  ]
-}
diff --git a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/javascript_unittests.js b/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/javascript_unittests.js
deleted file mode 100644
index 93d1d4c..0000000
--- a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/javascript_unittests.js
+++ /dev/null
@@ -1,150 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc.  All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this library; see the file COPYING.LIB.  If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-function func1()
-{
-}
-
-function func2() {
-}
-
-function func3() { }
-
-function func4()
-{
-    return 123;
-}
-
-function func5()
-{
-    // comment
-}
-
-function func6()
-{
-    /* comment */
-}
-
-/*
-function funcInsideComment()
-{
-}
-*/
-
-function func7()
-{
-}
-
-var str1 = "function funcInsideDoubleQuotedString() {}";
-
-function func8()
-{
-}
-
-var str2 = 'function funcInsideSingleQuotedString() {}';
-
-function func9(a)
-{
-}
-
-function func10(a, b)
-{
-}
-
-function func11
-    (a, b)
-{
-}
-
-function func12(a, b,
-                c, d
-                , e, f)
-{
-}
-
-function funcOverloaded()
-{
-}
-
-function funcOverloaded(a)
-{
-}
-
-function funcOverloaded(a, b)
-{
-}
-
-Func1.prototype = {
-    get x1()
-    {
-    },
-
-    get x2()
-    {
-        return this.x2;
-    },
-
-    set x1(a)
-    {
-    },
-
-    set x3(a)
-    {
-        this.x3 = a;
-    }
-};
-
-Func2.prototype = {
-    func13 : function()
-    {
-    },
-
-    func14 : function(a)
-    {
-    },
-
-    func15 : function(a, b)
-    {
-        return 123;
-    }
-};
-
-function func16()
-{
-    var a = 123;
-    var b = 456;
-
-    var func17 = function() {
-    };
-
-    var func18 = function(a) {
-    };
-
-    var func19 = function(a, b) {
-        return 123;
-    };
-
-    func20(function()
-           {
-           },
-           function(a)
-           {
-               return 123;
-           });
-}
diff --git a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/perl_unittests-expected.txt b/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/perl_unittests-expected.txt
deleted file mode 100644
index d5a2ce9..0000000
--- a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/perl_unittests-expected.txt
+++ /dev/null
@@ -1,86 +0,0 @@
-{
-  'stderr' => '',
-  'stdout' => '',
-  'ranges' => [
-    [
-      '21',
-      '23',
-      'func1'
-    ],
-    [
-      '25',
-      '28',
-      'func2'
-    ],
-    [
-      '30',
-      '34',
-      'func3'
-    ],
-    [
-      '36',
-      '38',
-      'func4'
-    ],
-    [
-      '40',
-      '42',
-      'func5'
-    ],
-    [
-      '44',
-      '46',
-      'func6'
-    ],
-    [
-      '48',
-      '53',
-      'func7'
-    ],
-    [
-      '55',
-      '60',
-      'func8'
-    ],
-    [
-      '62',
-      '67',
-      'func9'
-    ],
-    [
-      '69',
-      '76',
-      'func10'
-    ],
-    [
-      '78',
-      '88',
-      'func11'
-    ],
-    [
-      '90',
-      '100',
-      'func12'
-    ],
-    [
-      '102',
-      '111',
-      'func13'
-    ],
-    [
-      '113',
-      '118',
-      'func14'
-    ],
-    [
-      '120',
-      '125',
-      'func15'
-    ],
-    [
-      '127',
-      '128',
-      'func16'
-    ]
-  ]
-}
diff --git a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/perl_unittests.pl b/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/perl_unittests.pl
deleted file mode 100644
index ed869f3..0000000
--- a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/perl_unittests.pl
+++ /dev/null
@@ -1,143 +0,0 @@
-#!/usr/bin/perl -w
-#
-# Copyright (C) 2011 Google Inc.  All rights reserved.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Library General Public
-# License as published by the Free Software Foundation; either
-# version 2 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Library General Public License for more details.
-#
-# You should have received a copy of the GNU Library General Public License
-# along with this library; see the file COPYING.LIB.  If not, write to
-# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-# Boston, MA 02110-1301, USA.
-#
-
-sub func1
-{
-}
-
-sub func2
-{
-    return 123;
-}
-
-sub func3
-{
-    return 123;
-    return 456;
-}
-
-sub func4()
-{
-}
-
-sub func5($$$$)
-{
-}
-
-sub func6(\@\@\$\$\$\$)
-{
-}
-
-sub func7
-{
-    $str =<< EOF;
-
-EOF
-}
-
-sub func8
-{
-    $str =<< "EOF";
-
-EOF
-}
-
-sub func9
-{
-    $str =<< 'EOF';
-
-EOF
-}
-
-sub func10
-{
-    $str =<< EOF;
-sub funcInHereDocument1
-{
-}
-EOF
-}
-
-sub func11
-{
-    $str =<< EOF;
-sub funcInHereDocument2
-{
-}
-sub funcInHereDocument3
-{
-}
-EOF
-}
-
-sub func12
-{
-    $str =<< EOF;
-{
-{
-{
-}
-}
-}
-EOF
-}
-
-sub func13
-{
-    $str =<< EOF;
-
-$str << DUMMY_EOF
-
-DUMMY_EOF
-
-EOF
-}
-
-sub func14
-{
-    push(@array, << EOF);
-
-EOF
-}
-
-sub func15
-{
-    print << EOF;
-
-EOF
-}
-
-sub func16 {
-}
-
-sub prototypeDeclaration1;
-sub prototypeDeclaration2();
-sub prototypeDeclaration3(\@$$);
-
-if (1) {
-}
-
-for (@array) {
-}
-
-{}
-
-{
-}
diff --git a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/python_unittests-expected.txt b/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/python_unittests-expected.txt
deleted file mode 100644
index 8dad37e..0000000
--- a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/python_unittests-expected.txt
+++ /dev/null
@@ -1,131 +0,0 @@
-{
-  'stderr' => '',
-  'stdout' => '',
-  'ranges' => [
-    [
-      '21',
-      '23',
-      'func1'
-    ],
-    [
-      '24',
-      '27',
-      'func2'
-    ],
-    [
-      '28',
-      '34',
-      'func3'
-    ],
-    [
-      '35',
-      '38',
-      'func4'
-    ],
-    [
-      '39',
-      '42',
-      'func5'
-    ],
-    [
-      '43',
-      '47',
-      'func6'
-    ],
-    [
-      '48',
-      '51',
-      'funcOverloaded'
-    ],
-    [
-      '52',
-      '55',
-      'funcOverloaded'
-    ],
-    [
-      '56',
-      '59',
-      'funcOverloaded'
-    ],
-    [
-      '60',
-      '62',
-      'func7'
-    ],
-    [
-      '63',
-      '65',
-      'func7.func8'
-    ],
-    [
-      '66',
-      '67',
-      'func7.func8.func9'
-    ],
-    [
-      '68',
-      '68',
-      'func7.func8'
-    ],
-    [
-      '69',
-      '71',
-      'func7'
-    ],
-    [
-      '72',
-      '75',
-      'Class1'
-    ],
-    [
-      '76',
-      '78',
-      'Class2'
-    ],
-    [
-      '79',
-      '81',
-      'Class2.Class3'
-    ],
-    [
-      '82',
-      '83',
-      'Class2.Class3.Class4'
-    ],
-    [
-      '84',
-      '84',
-      'Class2.Class3'
-    ],
-    [
-      '85',
-      '87',
-      'Class2'
-    ],
-    [
-      '88',
-      '90',
-      'Class5'
-    ],
-    [
-      '91',
-      '92',
-      'Class5.func10'
-    ],
-    [
-      '93',
-      '94',
-      'Class5'
-    ],
-    [
-      '95',
-      '96',
-      'Class5.func11'
-    ],
-    [
-      '97',
-      '97',
-      'Class5'
-    ]
-  ]
-}
diff --git a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/python_unittests.py b/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/python_unittests.py
deleted file mode 100644
index 1a19cc2..0000000
--- a/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/resources/python_unittests.py
+++ /dev/null
@@ -1,97 +0,0 @@
-#
-# Copyright (C) 2011 Google Inc.  All rights reserved.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Library General Public
-# License as published by the Free Software Foundation; either
-# version 2 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Library General Public License for more details.
-#
-# You should have received a copy of the GNU Library General Public License
-# along with this library; see the file COPYING.LIB.  If not, write to
-# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-# Boston, MA 02110-1301, USA.
-#
-
-
-def func1():
-
-
-def func2():
-    return
-
-
-def func3():
-    # comment
-    return
-
-# def funcInsideComment():
-
-
-def func4(a):
-    return
-
-
-def func5(a, b, c):
-    return
-
-
-def func6(a, b, \
-          c, d):
-    return
-
-
-def funcOverloaded(a):
-    return
-
-
-def funcOverloaded(a, b):
-    return
-
-
-def funcOverloaded(a, b, c=100):
-    return
-
-
-def func7():
-    pass
-
-    def func8():
-        pass
-
-        def func9():
-            pass
-        pass
-    pass
-
-
-class Class1:
-    pass
-
-
-class Class2:
-    pass
-
-    class Class3:
-        pass
-
-        class Class4:
-            pass
-        pass
-    pass
-
-
-class Class5:
-    pass
-
-    def func10():
-        pass
-    pass
-
-    def func11():
-        pass
-    pass
diff --git a/Tools/Scripts/webkitpy/bindings/main.py b/Tools/Scripts/webkitpy/bindings/main.py
index af541f0..887a861 100644
--- a/Tools/Scripts/webkitpy/bindings/main.py
+++ b/Tools/Scripts/webkitpy/bindings/main.py
@@ -34,21 +34,20 @@
 
 class BindingsTests:
 
-    def __init__(self, reset_results, generators, executive):
+    def __init__(self, reset_results, executive):
         self.reset_results = reset_results
-        self.generators = generators
         self.executive = executive
 
-    def generate_from_idl(self, generator, idl_file, output_directory, supplemental_dependency_file):
+    def generate_from_idl(self, idl_file, output_directory, supplemental_dependency_file):
         cmd = ['perl', '-w',
-               '-IWebCore/bindings/scripts',
-               'WebCore/bindings/scripts/generate-bindings.pl',
+               '-Ibindings/scripts',
+               '-Icore/scripts',
+               'bindings/scripts/generate-bindings.pl',
                # idl include directories (path relative to generate-bindings.pl)
                '--include', '.',
-               '--defines', 'TESTING_%s' % generator,
-               '--generator', generator,
                '--outputDir', output_directory,
                '--supplementalDependencyFile', supplemental_dependency_file,
+               '--idlAttributesFile', 'bindings/scripts/IDLAttributes.txt',
                idl_file]
 
         exit_code = 0
@@ -71,10 +70,9 @@
         os.close(idl_files_list[0])
 
         cmd = ['perl', '-w',
-               '-IWebCore/bindings/scripts',
-               'WebCore/bindings/scripts/preprocess-idls.pl',
+               '-Ibindings/scripts',
+               'bindings/scripts/preprocess-idls.pl',
                '--idlFilesList', idl_files_list[1],
-               '--defines', '',
                '--supplementalDependencyFile', supplemental_dependency_file]
 
         exit_code = 0
@@ -88,7 +86,7 @@
         os.remove(idl_files_list[1])
         return exit_code
 
-    def detect_changes(self, generator, work_directory, reference_directory):
+    def detect_changes(self, work_directory, reference_directory):
         changes_found = False
         for output_file in os.listdir(work_directory):
             cmd = ['diff',
@@ -105,14 +103,14 @@
                 exit_code = e.exit_code
 
             if exit_code or output:
-                print 'FAIL: (%s) %s' % (generator, output_file)
+                print 'FAIL: %s' % (output_file)
                 print output
                 changes_found = True
             else:
-                print 'PASS: (%s) %s' % (generator, output_file)
+                print 'PASS: %s' % (output_file)
         return changes_found
 
-    def run_tests(self, generator, input_directory, reference_directory, supplemental_dependency_file):
+    def run_tests(self, input_directory, reference_directory, supplemental_dependency_file):
         work_directory = reference_directory
 
         passed = True
@@ -125,18 +123,17 @@
             if not self.reset_results:
                 work_directory = tempfile.mkdtemp()
 
-            if self.generate_from_idl(generator,
-                                      os.path.join(input_directory, input_file),
+            if self.generate_from_idl(os.path.join(input_directory, input_file),
                                       work_directory,
                                       supplemental_dependency_file):
                 passed = False
 
             if self.reset_results:
-                print "Reset results: (%s) %s" % (generator, input_file)
+                print "Reset results: %s" % (input_file)
                 continue
 
             # Detect changes
-            if self.detect_changes(generator, work_directory, reference_directory):
+            if self.detect_changes(work_directory, reference_directory):
                 passed = False
             shutil.rmtree(work_directory)
 
@@ -148,18 +145,17 @@
 
         all_tests_passed = True
 
-        input_directory = os.path.join('WebCore', 'bindings', 'scripts', 'test')
+        input_directory = os.path.join('bindings', 'tests', 'idls')
         supplemental_dependency_file = tempfile.mkstemp()[1]
         if self.generate_supplemental_dependency(input_directory, supplemental_dependency_file):
             print 'Failed to generate a supplemental dependency file.'
             os.remove(supplemental_dependency_file)
             return -1
 
-        for generator in self.generators:
-            input_directory = os.path.join('WebCore', 'bindings', 'scripts', 'test')
-            reference_directory = os.path.join('WebCore', 'bindings', 'scripts', 'test', generator)
-            if not self.run_tests(generator, input_directory, reference_directory, supplemental_dependency_file):
-                all_tests_passed = False
+        input_directory = os.path.join('bindings', 'tests', 'idls')
+        reference_directory = os.path.join('bindings', 'tests', 'results')
+        if not self.run_tests(input_directory, reference_directory, supplemental_dependency_file):
+            all_tests_passed = False
 
         os.remove(supplemental_dependency_file)
         print ''
diff --git a/Tools/Scripts/webkitpy/common/checkout/baselineoptimizer.py b/Tools/Scripts/webkitpy/common/checkout/baselineoptimizer.py
index d2d53a5..31408a7 100644
--- a/Tools/Scripts/webkitpy/common/checkout/baselineoptimizer.py
+++ b/Tools/Scripts/webkitpy/common/checkout/baselineoptimizer.py
@@ -29,40 +29,11 @@
 import copy
 import logging
 
+from webkitpy.common.memoized import memoized
 
 _log = logging.getLogger(__name__)
 
 
-# Yes, it's a hypergraph.
-# FIXME: Should this function live with the ports somewhere?
-# Perhaps this should move onto PortFactory?
-def _baseline_search_hypergraph(host, port_names):
-    hypergraph = {}
-
-    # These edges in the hypergraph aren't visible on build.webkit.org,
-    # but they impose constraints on how we optimize baselines.
-    hypergraph.update(_VIRTUAL_PORTS)
-
-    # FIXME: Should we get this constant from somewhere?
-    fallback_path = ['LayoutTests']
-
-    port_factory = host.port_factory
-    for port_name in port_names:
-        port = port_factory.get(port_name)
-        webkit_base = port.webkit_base()
-        search_path = port.baseline_search_path()
-        if search_path:
-            hypergraph[port_name] = [host.filesystem.relpath(path, webkit_base) for path in search_path] + fallback_path
-    return hypergraph
-
-
-_VIRTUAL_PORTS = {
-    'mac-future': ['LayoutTests/platform/mac-future', 'LayoutTests/platform/mac', 'LayoutTests'],
-    'win-future': ['LayoutTests/platform/win-future', 'LayoutTests/platform/win', 'LayoutTests'],
-    'qt-unknown': ['LayoutTests/platform/qt-unknown', 'LayoutTests/platform/qt', 'LayoutTests'],
-}
-
-
 # FIXME: Should this function be somewhere more general?
 def _invert_dictionary(dictionary):
     inverted_dictionary = {}
@@ -75,16 +46,24 @@
 
 
 class BaselineOptimizer(object):
+    ROOT_LAYOUT_TESTS_DIRECTORY = 'LayoutTests'
+
     def __init__(self, host, port_names):
-        self._host = host
-        self._filesystem = self._host.filesystem
-        self._scm = self._host.scm()
-        self._hypergraph = _baseline_search_hypergraph(host, port_names)
-        self._directories = reduce(set.union, map(set, self._hypergraph.values()))
+        self._filesystem = host.filesystem
+        self._port_factory = host.port_factory
+        self._scm = host.scm()
+        self._port_names = port_names
+
+    @memoized
+    def _relative_baseline_search_paths(self, port_name):
+        port = self._port_factory.get(port_name)
+        relative_paths = [self._filesystem.relpath(path, port.webkit_base()) for path in port.baseline_search_path()]
+        return relative_paths + [self.ROOT_LAYOUT_TESTS_DIRECTORY]
 
     def read_results_by_directory(self, baseline_name):
         results_by_directory = {}
-        for directory in self._directories:
+        directories = reduce(set.union, map(set, [self._relative_baseline_search_paths(port_name) for port_name in self._port_names]))
+        for directory in directories:
             path = self._filesystem.join(self._scm.checkout_root, directory, baseline_name)
             if self._filesystem.exists(path):
                 results_by_directory[directory] = self._filesystem.sha1(path)
@@ -92,113 +71,100 @@
 
     def _results_by_port_name(self, results_by_directory):
         results_by_port_name = {}
-        for port_name, search_path in self._hypergraph.items():
-            for directory in search_path:
+        for port_name in self._port_names:
+            for directory in self._relative_baseline_search_paths(port_name):
                 if directory in results_by_directory:
                     results_by_port_name[port_name] = results_by_directory[directory]
                     break
         return results_by_port_name
 
-    def _most_specific_common_directory(self, port_names):
-        paths = [self._hypergraph[port_name] for port_name in port_names]
-        common_directories = reduce(set.intersection, map(set, paths))
+    @memoized
+    def _directories_immediately_preceding_root(self):
+        directories = set()
+        for port_name in self._port_names:
+            port = self._port_factory.get(port_name)
+            directory = self._filesystem.relpath(port.baseline_search_path()[-1], port.webkit_base())
+            directories.add(directory)
+        return directories
 
-        def score(directory):
-            return sum([path.index(directory) for path in paths])
+    def _optimize_result_for_root(self, new_results_by_directory):
+        # The root directory (i.e. LayoutTests) is the only one that doesn't correspond
+        # to a specific platform. As such, it's the only one where the baseline in fallback directories
+        # immediately before it can be promoted up, i.e. if chromium-win and chromium-mac
+        # have the same baseline, then it can be promoted up to be the LayoutTests baseline.
+        # All other baselines can only be removed if they're redundant with a baseline earlier
+        # in the fallback order. They can never promoted up.
+        directories_immediately_preceding_root = self._directories_immediately_preceding_root()
 
-        _, directory = sorted([(score(directory), directory) for directory in common_directories])[0]
-        return directory
+        shared_result = None
+        root_baseline_unused = False
+        for directory in directories_immediately_preceding_root:
+            this_result = new_results_by_directory.get(directory)
 
-    def _filter_port_names_by_result(self, predicate, port_names_by_result):
-        filtered_port_names_by_result = {}
-        for result, port_names in port_names_by_result.items():
-            filtered_port_names = filter(predicate, port_names)
-            if filtered_port_names:
-                filtered_port_names_by_result[result] = filtered_port_names
-        return filtered_port_names_by_result
+            # If any of these directories don't have a baseline, there's no optimization we can do.
+            if not this_result:
+                return
 
-    def _place_results_in_most_specific_common_directory(self, port_names_by_result, results_by_directory):
-        for result, port_names in port_names_by_result.items():
-            directory = self._most_specific_common_directory(port_names)
-            results_by_directory[directory] = result
+            if not shared_result:
+                shared_result = this_result
+            elif shared_result != this_result:
+                root_baseline_unused = True
+
+        # The root baseline is unused if all the directories immediately preceding the root
+        # have a baseline, but have different baselines, so the baselines can't be promoted up.
+        if root_baseline_unused:
+            if self.ROOT_LAYOUT_TESTS_DIRECTORY in new_results_by_directory:
+                del new_results_by_directory[self.ROOT_LAYOUT_TESTS_DIRECTORY]
+            return
+
+        new_results_by_directory[self.ROOT_LAYOUT_TESTS_DIRECTORY] = shared_result
+        for directory in directories_immediately_preceding_root:
+            del new_results_by_directory[directory]
 
     def _find_optimal_result_placement(self, baseline_name):
         results_by_directory = self.read_results_by_directory(baseline_name)
         results_by_port_name = self._results_by_port_name(results_by_directory)
         port_names_by_result = _invert_dictionary(results_by_port_name)
 
-        new_results_by_directory = self._optimize_by_most_specific_common_directory(results_by_directory, results_by_port_name, port_names_by_result)
-        if not new_results_by_directory:
-            new_results_by_directory = self._optimize_by_pushing_results_up(results_by_directory, results_by_port_name, port_names_by_result)
+        new_results_by_directory = self._remove_redundant_results(results_by_directory, results_by_port_name, port_names_by_result)
+        self._optimize_result_for_root(new_results_by_directory)
 
         return results_by_directory, new_results_by_directory
 
-    def _optimize_by_most_specific_common_directory(self, results_by_directory, results_by_port_name, port_names_by_result):
-        new_results_by_directory = {}
-        unsatisfied_port_names_by_result = port_names_by_result
-        while unsatisfied_port_names_by_result:
-            self._place_results_in_most_specific_common_directory(unsatisfied_port_names_by_result, new_results_by_directory)
-            new_results_by_port_name = self._results_by_port_name(new_results_by_directory)
+    def _remove_redundant_results(self, results_by_directory, results_by_port_name, port_names_by_result):
+        new_results_by_directory = copy.copy(results_by_directory)
+        for port_name in self._port_names:
+            current_result = results_by_port_name.get(port_name)
 
-            def is_unsatisfied(port_name):
-                return results_by_port_name[port_name] != new_results_by_port_name[port_name]
+            # This happens if we're missing baselines for a port.
+            if not current_result:
+                continue;
 
-            new_unsatisfied_port_names_by_result = self._filter_port_names_by_result(is_unsatisfied, port_names_by_result)
-
-            if len(new_unsatisfied_port_names_by_result.values()) >= len(unsatisfied_port_names_by_result.values()):
-                return {}  # Frowns. We do not appear to be converging.
-            unsatisfied_port_names_by_result = new_unsatisfied_port_names_by_result
+            fallback_path = self._relative_baseline_search_paths(port_name)
+            current_index, current_directory = self._find_in_fallbackpath(fallback_path, current_result, new_results_by_directory)
+            for index in range(current_index + 1, len(fallback_path)):
+                new_directory = fallback_path[index]
+                if not new_directory in new_results_by_directory:
+                    # No result for this baseline in this directory.
+                    continue
+                elif new_results_by_directory[new_directory] == current_result:
+                    # Result for new_directory are redundant with the result earlier in the fallback order.
+                    if current_directory in new_results_by_directory:
+                        del new_results_by_directory[current_directory]
+                else:
+                    # The new_directory contains a different result, so stop trying to push results up.
+                    break
 
         return new_results_by_directory
 
-    def _optimize_by_pushing_results_up(self, results_by_directory, results_by_port_name, port_names_by_result):
-        try:
-            results_by_directory = results_by_directory
-            best_so_far = results_by_directory
-            while True:
-                new_results_by_directory = copy.copy(best_so_far)
-                for port_name in self._hypergraph.keys():
-                    fallback_path = self._hypergraph[port_name]
-                    current_index, current_directory = self._find_in_fallbackpath(fallback_path, results_by_port_name[port_name], best_so_far)
-                    current_result = results_by_port_name[port_name]
-                    for index in range(current_index + 1, len(fallback_path)):
-                        new_directory = fallback_path[index]
-                        if not new_directory in new_results_by_directory:
-                            new_results_by_directory[new_directory] = current_result
-                            if current_directory in new_results_by_directory:
-                                del new_results_by_directory[current_directory]
-                        elif new_results_by_directory[new_directory] == current_result:
-                            if current_directory in new_results_by_directory:
-                                del new_results_by_directory[current_directory]
-                        else:
-                            # The new_directory contains a different result, so stop trying to push results up.
-                            break
-
-                if len(new_results_by_directory) >= len(best_so_far):
-                    # We've failed to improve, so give up.
-                    break
-                best_so_far = new_results_by_directory
-
-            return best_so_far
-        except KeyError as e:
-            # FIXME: KeyErrors get raised if we're missing baselines. We should handle this better.
-            return {}
-
     def _find_in_fallbackpath(self, fallback_path, current_result, results_by_directory):
         for index, directory in enumerate(fallback_path):
             if directory in results_by_directory and (results_by_directory[directory] == current_result):
                 return index, directory
         assert False, "result %s not found in fallback_path %s, %s" % (current_result, fallback_path, results_by_directory)
 
-    def _filtered_results_by_port_name(self, results_by_directory):
-        results_by_port_name = self._results_by_port_name(results_by_directory)
-        for port_name in _VIRTUAL_PORTS.keys():
-            if port_name in results_by_port_name:
-                del results_by_port_name[port_name]
-        return results_by_port_name
-
     def _platform(self, filename):
-        platform_dir = 'LayoutTests' + self._filesystem.sep + 'platform' + self._filesystem.sep
+        platform_dir = self.ROOT_LAYOUT_TESTS_DIRECTORY + self._filesystem.sep + 'platform' + self._filesystem.sep
         if filename.startswith(platform_dir):
             return filename.replace(platform_dir, '').split(self._filesystem.sep)[0]
         platform_dir = self._filesystem.join(self._scm.checkout_root, platform_dir)
@@ -240,10 +206,6 @@
         else:
             _log.debug("    (Nothing to add)")
 
-    def directories_by_result(self, baseline_name):
-        results_by_directory = self.read_results_by_directory(baseline_name)
-        return _invert_dictionary(results_by_directory)
-
     def write_by_directory(self, results_by_directory, writer, indent):
         for path in sorted(results_by_directory):
             writer("%s%s: %s" % (indent, self._platform(path), results_by_directory[path][0:6]))
@@ -251,16 +213,21 @@
     def optimize(self, baseline_name):
         basename = self._filesystem.basename(baseline_name)
         results_by_directory, new_results_by_directory = self._find_optimal_result_placement(baseline_name)
-        self.new_results_by_directory = new_results_by_directory
+
         if new_results_by_directory == results_by_directory:
             if new_results_by_directory:
                 _log.debug("  %s: (already optimal)" % basename)
                 self.write_by_directory(results_by_directory, _log.debug, "    ")
             else:
                 _log.debug("  %s: (no baselines found)" % basename)
+            # This is just used for unittests. Intentionally set it to the old data if we don't modify anything.
+            self.new_results_by_directory = results_by_directory
             return True
-        if self._filtered_results_by_port_name(results_by_directory) != self._filtered_results_by_port_name(new_results_by_directory):
-            _log.warning("  %s: optimization failed" % basename)
+
+        if self._results_by_port_name(results_by_directory) != self._results_by_port_name(new_results_by_directory):
+            # This really should never happen. Just a sanity check to make sure the script fails in the case of bugs
+            # instead of committing incorrect baselines.
+            _log.error("  %s: optimization failed" % basename)
             self.write_by_directory(results_by_directory, _log.warning, "      ")
             return False
 
diff --git a/Tools/Scripts/webkitpy/common/checkout/baselineoptimizer_unittest.py b/Tools/Scripts/webkitpy/common/checkout/baselineoptimizer_unittest.py
index 308fc17..69dfb9d 100644
--- a/Tools/Scripts/webkitpy/common/checkout/baselineoptimizer_unittest.py
+++ b/Tools/Scripts/webkitpy/common/checkout/baselineoptimizer_unittest.py
@@ -55,26 +55,22 @@
         self.assertTrue(baseline_optimizer.optimize('mock-baseline.png'))
         self.assertEqual(baseline_optimizer.new_results_by_directory, expected_new_results_by_directory)
 
-    def _assertOptimizationFailed(self, results_by_directory):
-        baseline_optimizer = TestBaselineOptimizer(results_by_directory)
-        self.assertFalse(baseline_optimizer.optimize('mock-baseline.png'))
-
     def test_move_baselines(self):
         host = MockHost()
         host.filesystem.write_binary_file('/mock-checkout/LayoutTests/platform/chromium-win/another/test-expected.txt', 'result A')
         host.filesystem.write_binary_file('/mock-checkout/LayoutTests/platform/chromium-mac/another/test-expected.txt', 'result A')
-        host.filesystem.write_binary_file('/mock-checkout/LayoutTests/platform/chromium/another/test-expected.txt', 'result B')
+        host.filesystem.write_binary_file('/mock-checkout/LayoutTests/another/test-expected.txt', 'result B')
         baseline_optimizer = BaselineOptimizer(host, host.port_factory.all_port_names())
         baseline_optimizer._move_baselines('another/test-expected.txt', {
             'LayoutTests/platform/chromium-win': 'aaa',
             'LayoutTests/platform/chromium-mac': 'aaa',
-            'LayoutTests/platform/chromium': 'bbb',
+            'LayoutTests': 'bbb',
         }, {
-            'LayoutTests/platform/chromium': 'aaa',
+            'LayoutTests': 'aaa',
         })
-        self.assertEqual(host.filesystem.read_binary_file('/mock-checkout/LayoutTests/platform/chromium/another/test-expected.txt'), 'result A')
+        self.assertEqual(host.filesystem.read_binary_file('/mock-checkout/LayoutTests/another/test-expected.txt'), 'result A')
 
-    def test_chromium_linux_redundant_with_win(self):
+    def test_linux_redundant_with_win(self):
         self._assertOptimization({
             'LayoutTests/platform/chromium-win': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
             'LayoutTests/platform/chromium-linux': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
@@ -82,121 +78,91 @@
             'LayoutTests/platform/chromium-win': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
         })
 
-    def test_efl(self):
-        self._assertOptimization({
-            'LayoutTests/platform/efl': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
-        }, {
-            'LayoutTests/platform/efl': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
-        })
-
-
-    def test_no_add_mac_future(self):
-        self._assertOptimization({
-            'LayoutTests/platform/mac': '29a1715a6470d5dd9486a142f609708de84cdac8',
-            'LayoutTests/platform/win-xp': '453e67177a75b2e79905154ece0efba6e5bfb65d',
-            'LayoutTests/platform/mac-lion': 'c43eaeb358f49d5e835236ae23b7e49d7f2b089f',
-            'LayoutTests/platform/chromium-mac': 'a9ba153c700a94ae1b206d8e4a75a621a89b4554',
-        }, {
-            'LayoutTests/platform/mac': '29a1715a6470d5dd9486a142f609708de84cdac8',
-            'LayoutTests/platform/win-xp': '453e67177a75b2e79905154ece0efba6e5bfb65d',
-            'LayoutTests/platform/mac-lion': 'c43eaeb358f49d5e835236ae23b7e49d7f2b089f',
-            'LayoutTests/platform/chromium-mac': 'a9ba153c700a94ae1b206d8e4a75a621a89b4554',
-        })
-
-    def test_chromium_covers_mac_win_linux(self):
+    def test_covers_mac_win_linux(self):
         self._assertOptimization({
             'LayoutTests/platform/chromium-mac': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
             'LayoutTests/platform/chromium-win': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
             'LayoutTests/platform/chromium-linux': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
         }, {
-            'LayoutTests/platform/chromium': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
+            'LayoutTests': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
         })
 
-    def test_mac_future(self):
+    def test_overwrites_root(self):
         self._assertOptimization({
-            'LayoutTests/platform/mac-lion': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
-        }, {
-            'LayoutTests/platform/mac-lion': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
-        })
-
-    def test_qt_unknown(self):
-        self._assertOptimization({
-            'LayoutTests/platform/qt': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
-        }, {
-            'LayoutTests/platform/qt': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
-        })
-
-    def test_win_does_not_drop_to_win_7sp0(self):
-        self._assertOptimization({
-            'LayoutTests/platform/win': '1',
-            'LayoutTests/platform/mac': '2',
-            'LayoutTests/platform/gtk': '3',
-            'LayoutTests/platform/qt': '4',
-            'LayoutTests/platform/chromium': '5',
-        }, {
-            'LayoutTests/platform/win': '1',
-            'LayoutTests/platform/mac': '2',
-            'LayoutTests/platform/gtk': '3',
-            'LayoutTests/platform/qt': '4',
-            'LayoutTests/platform/chromium': '5',
-        })
-
-    def test_common_directory_includes_root(self):
-        # This test case checks that we don't throw an exception when we fail
-        # to optimize.
-        self._assertOptimizationFailed({
-            'LayoutTests/platform/gtk': 'e8608763f6241ddacdd5c1ef1973ba27177d0846',
-            'LayoutTests/platform/qt': 'bcbd457d545986b7abf1221655d722363079ac87',
-            'LayoutTests/platform/chromium-win': '3764ac11e1f9fbadd87a90a2e40278319190a0d3',
-            'LayoutTests/platform/mac': 'e8608763f6241ddacdd5c1ef1973ba27177d0846',
-        })
-
-        self._assertOptimization({
-            'LayoutTests/platform/chromium-win': '23a30302a6910f8a48b1007fa36f3e3158341834',
-            'LayoutTests': '9c876f8c3e4cc2aef9519a6c1174eb3432591127',
-            'LayoutTests/platform/chromium-mac': '23a30302a6910f8a48b1007fa36f3e3158341834',
-            'LayoutTests/platform/chromium': '1',
-        }, {
-            'LayoutTests/platform/chromium': '23a30302a6910f8a48b1007fa36f3e3158341834',
-            'LayoutTests': '9c876f8c3e4cc2aef9519a6c1174eb3432591127',
-        })
-
-    def test_complex_shadowing(self):
-        # This test relies on OS specific functionality, so it doesn't work on Windows.
-        # FIXME: What functionality does this rely on?  When can we remove this if?
-        if sys.platform == 'win32':
-            return
-        self._assertOptimization({
+            'LayoutTests/platform/chromium-mac': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
             'LayoutTests/platform/chromium-win': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
-            'LayoutTests/platform/mac': '5daa78e55f05d9f0d1bb1f32b0cd1bc3a01e9364',
-            'LayoutTests/platform/chromium-win-xp': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
-            'LayoutTests/platform/mac-lion': '7ad045ece7c030e2283c5d21d9587be22bcba56e',
-            'LayoutTests/platform/chromium-win': 'f83af9732ce74f702b8c9c4a3d9a4c6636b8d3bd',
-            'LayoutTests/platform/win-xp': '5b1253ef4d5094530d5f1bc6cdb95c90b446bec7',
-            'LayoutTests/platform/chromium-linux': 'f52fcdde9e4be8bd5142171cd859230bd4471036',
+            'LayoutTests/platform/chromium-linux': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
+            'LayoutTests': '1',
         }, {
-            'LayoutTests/platform/chromium-win': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
-            'LayoutTests/platform/mac': '5daa78e55f05d9f0d1bb1f32b0cd1bc3a01e9364',
-            'LayoutTests/platform/chromium-win-xp': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
-            'LayoutTests/platform/mac-lion': '7ad045ece7c030e2283c5d21d9587be22bcba56e',
-            'LayoutTests/platform/chromium-win': 'f83af9732ce74f702b8c9c4a3d9a4c6636b8d3bd',
-            'LayoutTests/platform/win-xp': '5b1253ef4d5094530d5f1bc6cdb95c90b446bec7',
-            'LayoutTests/platform/chromium-linux': 'f52fcdde9e4be8bd5142171cd859230bd4471036'
+            'LayoutTests': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
         })
 
-    def test_virtual_ports_filtered(self):
+    def test_no_new_common_directory(self):
+        self._assertOptimization({
+            'LayoutTests/platform/chromium-mac': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
+            'LayoutTests/platform/chromium-linux': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
+            'LayoutTests': '1',
+        }, {
+            'LayoutTests/platform/chromium-mac': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
+            'LayoutTests/platform/chromium-linux': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
+            'LayoutTests': '1',
+        })
+
+
+    def test_no_common_directory(self):
+        self._assertOptimization({
+            'LayoutTests/platform/chromium-mac': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
+            'LayoutTests/platform/chromium-android': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
+        }, {
+            'LayoutTests/platform/chromium-mac': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
+            'LayoutTests/platform/chromium-android': '462d03b9c025db1b0392d7453310dbee5f9a9e74',
+        })
+
+    def test_local_optimization(self):
         self._assertOptimization({
             'LayoutTests/platform/chromium-mac': '1',
-            'LayoutTests/platform/chromium-mac-snowleopard': '1',
-            'LayoutTests/platform/chromium-win': '2',
-            'LayoutTests/platform/gtk': '3',
-            'LayoutTests/platform/efl': '3',
-            'LayoutTests/platform/qt': '4',
-            'LayoutTests/platform/mac': '5',
+            'LayoutTests/platform/chromium-linux': '1',
+            'LayoutTests/platform/chromium-linux-x86': '1',
         }, {
             'LayoutTests/platform/chromium-mac': '1',
+            'LayoutTests/platform/chromium-linux': '1',
+        })
+
+    def test_local_optimization_skipping_a_port_in_the_middle(self):
+        self._assertOptimization({
+            'LayoutTests/platform/chromium-mac-snowleopard': '1',
+            'LayoutTests/platform/chromium-win': '1',
+            'LayoutTests/platform/chromium-linux-x86': '1',
+        }, {
+            'LayoutTests/platform/chromium-mac-snowleopard': '1',
+            'LayoutTests/platform/chromium-win': '1',
+        })
+
+    def test_baseline_redundant_with_root(self):
+        self._assertOptimization({
+            'LayoutTests/platform/chromium-mac': '1',
+            'LayoutTests/platform/chromium-win': '2',
+            'LayoutTests': '2',
+        }, {
+            'LayoutTests/platform/chromium-mac': '1',
+            'LayoutTests': '2',
+        })
+
+    def test_root_baseline_unused(self):
+        self._assertOptimization({
+            'LayoutTests/platform/chromium-mac': '1',
             'LayoutTests/platform/chromium-win': '2',
             'LayoutTests': '3',
-            'LayoutTests/platform/qt': '4',
-            'LayoutTests/platform/mac': '5',
+        }, {
+            'LayoutTests/platform/chromium-mac': '1',
+            'LayoutTests/platform/chromium-win': '2',
+        })
+
+    def test_root_baseline_unused_and_non_existant(self):
+        self._assertOptimization({
+            'LayoutTests/platform/chromium-mac': '1',
+            'LayoutTests/platform/chromium-win': '2',
+        }, {
+            'LayoutTests/platform/chromium-mac': '1',
+            'LayoutTests/platform/chromium-win': '2',
         })
diff --git a/Tools/Scripts/webkitpy/common/checkout/scm/git.py b/Tools/Scripts/webkitpy/common/checkout/scm/git.py
index a29cead..6a22291 100644
--- a/Tools/Scripts/webkitpy/common/checkout/scm/git.py
+++ b/Tools/Scripts/webkitpy/common/checkout/scm/git.py
@@ -168,6 +168,9 @@
     def delete_list(self, paths):
         return self._run_git(["rm", "-f"] + paths)
 
+    def move(self, origin, destination):
+        return self._run_git(["mv", "-f", origin, destination])
+
     def exists(self, path):
         return_code = self._run_git(["show", "HEAD:%s" % path], return_exit_code=True, decode_output=False)
         return return_code != self.ERROR_FILE_IS_MISSING
@@ -467,8 +470,11 @@
         first_remote_branch_ref = remote_branch_refs.split('\n')[0]
         return first_remote_branch_ref.split(':')[1]
 
-    def commit_locally_with_message(self, message):
-        self._run_git(['commit', '--all', '-F', '-'], input=message)
+    def commit_locally_with_message(self, message, commit_all_working_directory_changes=True):
+        command = ['commit', '-F', '-']
+        if commit_all_working_directory_changes:
+            command.insert(1, '--all')
+        self._run_git(command, input=message)
 
     def push_local_commits_to_server(self, username=None, password=None):
         dcommit_command = ['svn', 'dcommit']
diff --git a/Tools/Scripts/webkitpy/common/checkout/scm/scm.py b/Tools/Scripts/webkitpy/common/checkout/scm/scm.py
index 11e7ddb..a972ca4 100644
--- a/Tools/Scripts/webkitpy/common/checkout/scm/scm.py
+++ b/Tools/Scripts/webkitpy/common/checkout/scm/scm.py
@@ -142,6 +142,9 @@
     def delete_list(self, paths):
         self._subclass_must_implement()
 
+    def move(self, origin, destination):
+        self._subclass_must_implement()
+
     def exists(self, path):
         self._subclass_must_implement()
 
@@ -234,7 +237,7 @@
     def remote_merge_base(self):
         SCM._subclass_must_implement()
 
-    def commit_locally_with_message(self, message):
+    def commit_locally_with_message(self, message, commit_all_working_directory_changes=True):
         _log.error("Your source control manager does not support local commits.")
         sys.exit(1)
 
diff --git a/Tools/Scripts/webkitpy/common/checkout/scm/scm_mock.py b/Tools/Scripts/webkitpy/common/checkout/scm/scm_mock.py
index b701c34..961a7fd 100644
--- a/Tools/Scripts/webkitpy/common/checkout/scm/scm_mock.py
+++ b/Tools/Scripts/webkitpy/common/checkout/scm/scm_mock.py
@@ -96,7 +96,7 @@
     def committer_email_for_revision(self, revision):
         return "mock@webkit.org"
 
-    def commit_locally_with_message(self, message):
+    def commit_locally_with_message(self, message, commit_all_working_directory_changes=True):
         pass
 
     def commit_with_message(self, message, username=None, password=None, git_commit=None, force_squash=False, changed_files=None):
@@ -135,3 +135,7 @@
         for path in paths:
             if self._filesystem.exists(path):
                 self._filesystem.remove(path)
+
+    def move(self, origin, destination):
+        if self._filesystem:
+            self._filesystem.move(self.absolute_path(origin), self.absolute_path(destination))
diff --git a/Tools/Scripts/webkitpy/common/checkout/scm/scm_unittest.py b/Tools/Scripts/webkitpy/common/checkout/scm/scm_unittest.py
index 215edd1..93eb9b5 100644
--- a/Tools/Scripts/webkitpy/common/checkout/scm/scm_unittest.py
+++ b/Tools/Scripts/webkitpy/common/checkout/scm/scm_unittest.py
@@ -500,6 +500,21 @@
     def _shared_test_head_svn_revision(self):
         self.assertEqual(self.scm.head_svn_revision(), '5')
 
+    def _shared_test_move(self):
+        write_into_file_at_path('added_file', 'new stuff')
+        self.scm.add('added_file')
+        self.scm.move('added_file', 'moved_file')
+        self.assertIn('moved_file', self.scm.added_files())
+
+    def _shared_test_move_recursive(self):
+        os.mkdir("added_dir")
+        write_into_file_at_path('added_dir/added_file', 'new stuff')
+        write_into_file_at_path('added_dir/another_added_file', 'more new stuff')
+        self.scm.add('added_dir')
+        self.scm.move('added_dir', 'moved_dir')
+        self.assertIn('moved_dir/added_file', self.scm.added_files())
+        self.assertIn('moved_dir/another_added_file', self.scm.added_files())
+
 
 # Context manager that overrides the current timezone.
 class TimezoneOverride(object):
@@ -844,6 +859,12 @@
     def test_head_svn_revision(self):
         self._shared_test_head_svn_revision()
 
+    def test_move(self):
+        self._shared_test_move()
+
+    def test_move_recursive(self):
+        self._shared_test_move_recursive()
+
     def test_propset_propget(self):
         filepath = os.path.join(self.svn_checkout_path, "test_file")
         expected_mime_type = "x-application/foo-bar"
@@ -1018,7 +1039,7 @@
     def test_rename_files(self):
         scm = self.tracking_scm
 
-        run_command(['git', 'mv', 'foo_file', 'bar_file'])
+        scm.move('foo_file', 'bar_file')
         scm.commit_locally_with_message('message')
 
         patch = scm.create_patch()
@@ -1186,6 +1207,31 @@
         self._local_commit('test_file_commit0', 'more test content', 'another test commit')
         self._two_local_commits()
 
+    def test_locally_commit_all_working_copy_changes(self):
+        self._local_commit('test_file', 'test content', 'test commit')
+        write_into_file_at_path('test_file', 'changed test content')
+        self.assertTrue(self.scm.has_working_directory_changes())
+        self.scm.commit_locally_with_message('all working copy changes')
+        self.assertFalse(self.scm.has_working_directory_changes())
+
+    def test_locally_commit_no_working_copy_changes(self):
+        self._local_commit('test_file', 'test content', 'test commit')
+        write_into_file_at_path('test_file', 'changed test content')
+        self.assertTrue(self.scm.has_working_directory_changes())
+        self.assertRaises(ScriptError, self.scm.commit_locally_with_message, 'no working copy changes', False)
+
+    def test_locally_commit_selected_working_copy_changes(self):
+        self._local_commit('test_file_1', 'test content 1', 'test commit 1')
+        self._local_commit('test_file_2', 'test content 2', 'test commit 2')
+        write_into_file_at_path('test_file_1', 'changed test content 1')
+        write_into_file_at_path('test_file_2', 'changed test content 2')
+        self.assertTrue(self.scm.has_working_directory_changes())
+        run_command(['git', 'add', 'test_file_1'])
+        self.scm.commit_locally_with_message('selected working copy changes', commit_all_working_directory_changes=False)
+        self.assertTrue(self.scm.has_working_directory_changes())
+        self.assertTrue(self.scm.diff_for_file('test_file_1') == '')
+        self.assertFalse(self.scm.diff_for_file('test_file_2') == '')
+
     def test_revisions_changing_files_with_local_commit(self):
         self._one_local_commit()
         self.assertItemsEqual(self.scm.revisions_changing_file('test_file_commit1'), [])
@@ -1513,6 +1559,12 @@
     def test_head_svn_revision(self):
         self._shared_test_head_svn_revision()
 
+    def test_move(self):
+        self._shared_test_move()
+
+    def test_move_recursive(self):
+        self._shared_test_move_recursive()
+
     def test_to_object_name(self):
         relpath = 'test_file_commit1'
         fullpath = os.path.realpath(os.path.join(self.git_checkout_path, relpath))
diff --git a/Tools/Scripts/webkitpy/common/checkout/scm/svn.py b/Tools/Scripts/webkitpy/common/checkout/scm/svn.py
index 8646a5c..dc9ad53 100644
--- a/Tools/Scripts/webkitpy/common/checkout/scm/svn.py
+++ b/Tools/Scripts/webkitpy/common/checkout/scm/svn.py
@@ -201,6 +201,9 @@
             self._delete_parent_directories(os.path.dirname(abs_path))
         return result
 
+    def move(self, origin, destination):
+        return self._run_svn(["mv", "--force", origin, destination], return_exit_code=True)
+
     def exists(self, path):
         return not self._run_svn(["info", path], return_exit_code=True, decode_output=False)
 
diff --git a/Tools/Scripts/webkitpy/common/config/committers.py b/Tools/Scripts/webkitpy/common/config/committers.py
index 81153c1..f7aa0d7 100644
--- a/Tools/Scripts/webkitpy/common/config/committers.py
+++ b/Tools/Scripts/webkitpy/common/config/committers.py
@@ -229,12 +229,12 @@
     Committer("Anton D'Auria", "adauria@apple.com", "antonlefou"),
     Committer("Anton Muhin", "antonm@chromium.org", "antonm"),
     Committer("Arko Saha", "arko@motorola.com", "arkos"),
-    Committer("Arvid Nilsson", "anilsson@rim.com", "anilsson"),
+    Committer("Arvid Nilsson", ["anilsson@blackberry.com", "anilsson@rim.com"], "anilsson"),
     Committer("Balazs Kelemen", "kbalazs@webkit.org", "kbalazs"),
     Committer("Bear Travis", "betravis@adobe.com", "betravis"),
     Committer("Ben Murdoch", "benm@google.com", "benm"),
     Committer("Ben Wells", "benwells@chromium.org", "benwells"),
-    Committer("Benjamin C Meyer", ["ben@meyerhome.net", "ben@webkit.org", "bmeyer@rim.com"], "icefox"),
+    Committer("Benjamin C Meyer", ["ben@meyerhome.net", "ben@webkit.org"], "icefox"),
     Committer("Benjamin Kalman", ["kalman@chromium.org", "kalman@google.com"], "kalman"),
     Committer("Benjamin Otte", ["otte@gnome.org", "otte@webkit.org"], "otte"),
     Committer("Bill Budge", ["bbudge@chromium.org", "bbudge@gmail.com"], "bbudge"),
@@ -271,7 +271,7 @@
     Committer(u"Dominik R\u00f6ttsches", ["dominik.rottsches@intel.com", "d-r@roettsches.de"], "drott"),
     Committer("Dongwoo Joshua Im", ["dw.im@samsung.com", "dwim79@gmail.com"], "dwim"),
     Committer("Drew Wilson", "atwilson@chromium.org", "atwilson"),
-    Committer("Eli Fidler", ["eli@staikos.net", "efidler@rim.com"], "efidler"),
+    Committer("Eli Fidler", ["efidler@blackberry.com", "efidler@rim.com"], "efidler"),
     Committer("Elliot Poger", "epoger@chromium.org", "epoger"),
     Committer("Erik Arvidsson", "arv@chromium.org", "arv"),
     Committer("Eric Roman", "eroman@chromium.org", "eroman"),
@@ -304,8 +304,8 @@
     Committer("Ilya Sherman", "isherman@chromium.org", "isherman"),
     Committer("Ilya Tikhonovsky", "loislo@chromium.org", "loislo"),
     Committer("Ivan Krsti\u0107", "ike@apple.com"),
-    Committer("Jacky Jiang", ["jkjiang@webkit.org", "zkjiang008@gmail.com", "zhajiang@rim.com"], "jkjiang"),
-    Committer("Jakob Petsovits", ["jpetsovits@rim.com", "jpetso@gmx.at"], "jpetso"),
+    Committer("Jacky Jiang", ["jkjiang@webkit.org", "zkjiang008@gmail.com", "zhajiang@blackberry.com", "zhajiang@rim.com"], "jkjiang"),
+    Committer("Jakob Petsovits", ["jpetsovits@blackberry.com", "jpetsovits@rim.com", "jpetso@gmx.at"], "jpetso"),
     Committer("Jakub Wieczorek", "jwieczorek@webkit.org", "fawek"),
     Committer("James Hawkins", ["jhawkins@chromium.org", "jhawkins@google.com"], "jhawkins"),
     Committer("James Kozianski", ["koz@chromium.org", "koz@google.com"], "koz"),
@@ -350,14 +350,14 @@
     Committer("Kimmo Kinnunen", ["kimmo.t.kinnunen@nokia.com", "kimmok@iki.fi", "ktkinnun@webkit.org"], "kimmok"),
     Committer("Kinuko Yasuda", "kinuko@chromium.org", "kinuko"),
     Committer("Kiran Muppala", "cmuppala@apple.com", "kiranm"),
-    Committer("Konrad Piascik", "kpiascik@rim.com", "kpiascik"),
+    Committer("Konrad Piascik", ["kpiascik@blackberry.com", "kpiascik@rim.com"], "kpiascik"),
     Committer("Kristof Kosztyo", "kkristof@inf.u-szeged.hu", "kkristof"),
     Committer("Krzysztof Kowalczyk", "kkowalczyk@gmail.com"),
     Committer("Kwang Yul Seo", ["skyul@company100.net", "kseo@webkit.org"], "kseo"),
     Committer("Lauro Neto", "lauro.neto@openbossa.org", "lmoura"),
     Committer("Leandro Gracia Gil", "leandrogracia@chromium.org", "leandrogracia"),
     Committer("Leandro Pereira", ["leandro@profusion.mobi", "leandro@webkit.org"], "acidx"),
-    Committer("Leo Yang", ["leoyang@rim.com", "leoyang@webkit.org", "leoyang.webkit@gmail.com"], "leoyang"),
+    Committer("Leo Yang", ["leoyang@blackberry.com", "leoyang@rim.com", "leoyang@webkit.org", "leoyang.webkit@gmail.com"], "leoyang"),
     Committer("Li Yin", ["li.yin@intel.com"], "liyin"),
     Committer("Lucas De Marchi", ["demarchi@webkit.org", "lucas.demarchi@profusion.mobi"], "demarchi"),
     Committer("Lucas Forschler", ["lforschler@apple.com"], "lforschler"),
@@ -382,7 +382,7 @@
     Committer("Michelangelo De Simone", "michelangelo@webkit.org", "michelangelo"),
     Committer("Mihnea Ovidenie", "mihnea@adobe.com", "mihnea"),
     Committer("Mike Belshe", ["mbelshe@chromium.org", "mike@belshe.com"]),
-    Committer("Mike Fenton", ["mifenton@rim.com", "mike.fenton@torchmobile.com"], "mfenton"),
+    Committer("Mike Fenton", ["mifenton@blackberry.com", "mifenton@rim.com", "mike.fenton@torchmobile.com"], "mfenton"),
     Committer("Mike Lawther", "mikelawther@chromium.org", "mikelawther"),
     Committer("Mike Reed", "reed@google.com", "reed"),
     Committer("Mike Thole", ["mthole@mikethole.com", "mthole@apple.com"]),
@@ -392,7 +392,7 @@
     Committer("Naoki Takano", ["honten@chromium.org", "takano.naoki@gmail.com"], "honten"),
     Committer("Nat Duca", ["nduca@chromium.org", "nduca@google.com"], "nduca"),
     Committer("Nayan Kumar K", ["nayankk@motorola.com", "nayankk@gmail.com"], "xc0ffee"),
-    Committer("Nima Ghanavatian", ["nghanavatian@rim.com", "nima.ghanavatian@gmail.com"], "nghanavatian"),
+    Committer("Nima Ghanavatian", ["nghanavatian@blackberry.com", "nghanavatian@rim.com", "nima.ghanavatian@gmail.com"], "nghanavatian"),
     Committer("Noel Gordon", ["noel.gordon@gmail.com", "noel@chromium.org", "noel@google.com"], "noel"),
     Committer("Pablo Flouret", ["pablof@motorola.com", "pf@parb.es"], "pablof"),
     Committer("Pam Greene", "pam@chromium.org", "pamg"),
@@ -465,7 +465,7 @@
     Committer("Yoshifumi Inoue", "yosin@chromium.org", "yosin"),
     Committer("Yuqiang Xian", "yuqiang.xian@intel.com"),
     Committer("Yuzo Fujishima", "yuzo@google.com", "yuzo"),
-    Committer("Zalan Bujtas", ["zbujtas@gmail.com", "zalan.bujtas@nokia.com"], "zalan"),
+    Committer("Zalan Bujtas", ["zalan@apple.com", "zbujtas@gmail.com", "zalan.bujtas@nokia.com"], "zalan"),
     Committer("Zeno Albisser", ["zeno@webkit.org", "zeno.albisser@nokia.com"], "zalbisser"),
     Committer("Zhenyao Mo", "zmo@google.com", "zhenyao"),
     Committer("Zoltan Arvai", "zarvai@inf.u-szeged.hu", "azbest_hu"),
@@ -484,7 +484,7 @@
     Reviewer("Ada Chan", "adachan@apple.com", "chanada"),
     Reviewer("Adam Barth", "abarth@webkit.org", "abarth"),
     Reviewer("Adam Roben", ["aroben@webkit.org", "aroben@apple.com"], "aroben"),
-    Reviewer("Adam Treat", ["treat@kde.org", "treat@webkit.org", "atreat@rim.com"], "manyoso"),
+    Reviewer("Adam Treat", ["treat@kde.org", "treat@webkit.org"], "manyoso"),
     Reviewer("Adele Peterson", "adele@apple.com", "adele"),
     Reviewer("Adrienne Walker", ["enne@google.com", "enne@chromium.org"], "enne"),
     Reviewer("Alejandro G. Castro", ["alex@igalia.com", "alex@webkit.org"], "alexg__"),
@@ -497,7 +497,7 @@
     Reviewer("Anders Carlsson", ["andersca@apple.com", "acarlsson@apple.com"], "andersca"),
     Reviewer("Andreas Kling", ["akling@apple.com", "kling@webkit.org", "awesomekling@apple.com", "andreas.kling@nokia.com"], "kling"),
     Reviewer("Andy Estes", "aestes@apple.com", "estes"),
-    Reviewer("Antonio Gomes", ["tonikitoo@webkit.org", "a1.gomes@sisa.samsung.com", "antonio.netto@samsung.com", "agomes@rim.com", "antonio.gomes@openbossa.org"], "tonikitoo"),
+    Reviewer("Antonio Gomes", ["tonikitoo@webkit.org", "a1.gomes@sisa.samsung.com", "antonio.netto@samsung.com", "antonio.gomes@openbossa.org"], "tonikitoo"),
     Reviewer("Antti Koivisto", ["koivisto@iki.fi", "antti@apple.com", "antti.j.koivisto@nokia.com"], "anttik"),
     Reviewer("Ariya Hidayat", ["ariya.hidayat@gmail.com", "ariya@sencha.com", "ariya@webkit.org"], "ariya"),
     Reviewer("Benjamin Poulain", ["benjamin@webkit.org", "benjamin.poulain@nokia.com", "ikipou@gmail.com"], "benjaminp"),
@@ -516,7 +516,7 @@
     Reviewer("Chris Rogers", "crogers@google.com", "crogers"),
     Reviewer(u"Csaba Osztrogon\u00e1c", "ossy@webkit.org", "ossy"),
     Reviewer("Dan Bernstein", ["mitz@webkit.org", "mitz@apple.com"], "mitzpettel"),
-    Reviewer("Daniel Bates", ["dbates@webkit.org", "dbates@rim.com"], "dydz"),
+    Reviewer("Daniel Bates", "dbates@webkit.org", "dydz"),
     Reviewer("Darin Adler", "darin@apple.com", "darin"),
     Reviewer("Darin Fisher", ["fishd@chromium.org", "darin@chromium.org"], "fishd"),
     Reviewer("David Harrison", "harrison@apple.com", "harrison"),
@@ -576,7 +576,7 @@
     Reviewer("Mihai Parparita", "mihaip@chromium.org", "mihaip"),
     Reviewer("Nate Chapin", "japhet@chromium.org", ["japhet", "natechapin"]),
     Reviewer("Nico Weber", ["thakis@chromium.org", "thakis@google.com"], "thakis"),
-    Reviewer("Nikolas Zimmermann", ["zimmermann@kde.org", "zimmermann@physik.rwth-aachen.de", "zimmermann@webkit.org", "nzimmermann@rim.com"], "wildfox"),
+    Reviewer("Nikolas Zimmermann", ["zimmermann@kde.org", "zimmermann@physik.rwth-aachen.de", "zimmermann@webkit.org", "nzimmermann@blackberry.com", "nzimmermann@rim.com"], "wildfox"),
     Reviewer("Noam Rosenthal", ["noam@webkit.org", "noam.rosenthal@nokia.com"], "noamr"),
     Reviewer("Ojan Vafai", ["ojan@chromium.org", "ojan.autocc@gmail.com"], "ojan"),
     Reviewer("Oliver Hunt", "oliver@apple.com", "olliej"),
@@ -584,7 +584,7 @@
     Reviewer("Philip Rogers", ["pdr@google.com", "pdr@chromium.org"], "pdr"),
     Reviewer("Philippe Normand", ["pnormand@igalia.com", "philn@webkit.org", "philn@igalia.com"], ["philn-tp", "pnormand"]),
     Reviewer("Richard Williamson", "rjw@apple.com", "rjw"),
-    Reviewer("Rob Buis", ["rwlbuis@gmail.com", "rwlbuis@webkit.org", "rbuis@rim.com"], "rwlbuis"),
+    Reviewer("Rob Buis", ["rwlbuis@gmail.com", "rwlbuis@webkit.org", "rbuis@blackberry.com", "rbuis@rim.com"], "rwlbuis"),
     Reviewer("Ryosuke Niwa", "rniwa@webkit.org", "rniwa"),
     Reviewer("Sam Weinig", ["sam@webkit.org", "weinig@apple.com"], "weinig"),
     Reviewer("Shinichiro Hamaji", "hamaji@chromium.org", "hamaji"),
diff --git a/Tools/Scripts/webkitpy/common/config/contributionareas.py b/Tools/Scripts/webkitpy/common/config/contributionareas.py
index b48df2a..ed10290 100644
--- a/Tools/Scripts/webkitpy/common/config/contributionareas.py
+++ b/Tools/Scripts/webkitpy/common/config/contributionareas.py
@@ -155,7 +155,6 @@
     _Area('V8 Bindings', [_Intersection('bindings', 'v8')]),
     _Area('Web Inspector / Developer Tools', ['inspector']),
     _Area('Web Timing', ['PerformanceNavigation', 'PerformanceTiming']),  # more tokens?
-    _Area('WebArchive'),
     _Area('WebCore Icon Database', ['icon']),
     _Area('WebGL', ['webgl']),
     _Area('WebKit Websites', ['websites']),
diff --git a/Tools/Scripts/webkitpy/common/config/irc.py b/Tools/Scripts/webkitpy/common/config/irc.py
deleted file mode 100644
index 950c573..0000000
--- a/Tools/Scripts/webkitpy/common/config/irc.py
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright (c) 2009 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-server="irc.freenode.net"
-port=6667
-channel="#webkit"
diff --git a/Tools/Scripts/webkitpy/common/config/ports.py b/Tools/Scripts/webkitpy/common/config/ports.py
index 5c7bea0..236a534 100644
--- a/Tools/Scripts/webkitpy/common/config/ports.py
+++ b/Tools/Scripts/webkitpy/common/config/ports.py
@@ -64,19 +64,8 @@
             "chromium": ChromiumPort,
             "chromium-android": ChromiumAndroidPort,
             "chromium-xvfb": ChromiumXVFBPort,
-            "gtk": GtkPort,
-            "mac": MacPort,
-            "mac-wk2": MacWK2Port,
-            "win": WinPort,
-            "qt": QtPort,
-            "efl": EflPort,
         }
-        default_port = {
-            "Windows": WinPort,
-            "Darwin": MacPort,
-        }
-        # Do we really need MacPort as the ultimate default?
-        return ports.get(port_name, default_port.get(platform.system(), MacPort))()
+        return ports.get(port_name, ChromiumPort)()
 
     def makeArgs(self):
         # FIXME: This shouldn't use a static Executive().
@@ -121,64 +110,6 @@
         return self.script_shell_command("run-bindings-tests")
 
 
-class MacPort(DeprecatedPort):
-    port_flag_name = "mac"
-
-
-class MacWK2Port(DeprecatedPort):
-    port_flag_name = "mac-wk2"
-
-    def run_webkit_tests_command(self):
-        command = super(MacWK2Port, self).run_webkit_tests_command()
-        command.append("-2")
-        return command
-
-
-class WinPort(DeprecatedPort):
-    port_flag_name = "win"
-
-    def run_bindings_tests_command(self):
-        return None
-
-
-class GtkPort(DeprecatedPort):
-    port_flag_name = "gtk"
-
-    def build_webkit_command(self, build_style=None):
-        command = super(GtkPort, self).build_webkit_command(build_style=build_style)
-        command.append("--gtk")
-        command.append("--update-gtk")
-        command.append("--no-webkit2")
-        command.append(super(GtkPort, self).makeArgs())
-        return command
-
-    def run_webkit_tests_command(self):
-        command = super(GtkPort, self).run_webkit_tests_command()
-        command.append("--gtk")
-        return command
-
-
-class QtPort(DeprecatedPort):
-    port_flag_name = "qt"
-
-    def build_webkit_command(self, build_style=None):
-        command = super(QtPort, self).build_webkit_command(build_style=build_style)
-        command.append("--qt")
-        command.append(super(QtPort, self).makeArgs())
-        return command
-
-
-class EflPort(DeprecatedPort):
-    port_flag_name = "efl"
-
-    def build_webkit_command(self, build_style=None):
-        command = super(EflPort, self).build_webkit_command(build_style=build_style)
-        command.append("--efl")
-        command.append("--update-efl")
-        command.append(super(EflPort, self).makeArgs())
-        return command
-
-
 class ChromiumPort(DeprecatedPort):
     port_flag_name = "chromium"
 
diff --git a/Tools/Scripts/webkitpy/common/config/ports_unittest.py b/Tools/Scripts/webkitpy/common/config/ports_unittest.py
index a434211..7800b05 100644
--- a/Tools/Scripts/webkitpy/common/config/ports_unittest.py
+++ b/Tools/Scripts/webkitpy/common/config/ports_unittest.py
@@ -32,30 +32,6 @@
 
 
 class DeprecatedPortTest(unittest.TestCase):
-    def test_mac_port(self):
-        self.assertEqual(MacPort().flag(), "--port=mac")
-        self.assertEqual(MacPort().run_webkit_tests_command(), DeprecatedPort().script_shell_command("run-webkit-tests"))
-        self.assertEqual(MacPort().build_webkit_command(), DeprecatedPort().script_shell_command("build-webkit"))
-        self.assertEqual(MacPort().build_webkit_command(build_style="debug"), DeprecatedPort().script_shell_command("build-webkit") + ["--debug"])
-        self.assertEqual(MacPort().build_webkit_command(build_style="release"), DeprecatedPort().script_shell_command("build-webkit") + ["--release"])
-
-    def test_gtk_port(self):
-        self.assertEqual(GtkPort().flag(), "--port=gtk")
-        self.assertEqual(GtkPort().run_webkit_tests_command(), DeprecatedPort().script_shell_command("run-webkit-tests") + ["--gtk"])
-        self.assertEqual(GtkPort().build_webkit_command(), DeprecatedPort().script_shell_command("build-webkit") + ["--gtk", "--update-gtk", "--no-webkit2", DeprecatedPort().makeArgs()])
-        self.assertEqual(GtkPort().build_webkit_command(build_style="debug"), DeprecatedPort().script_shell_command("build-webkit") + ["--debug", "--gtk", "--update-gtk", "--no-webkit2", DeprecatedPort().makeArgs()])
-
-    def test_efl_port(self):
-        self.assertEqual(EflPort().flag(), "--port=efl")
-        self.assertEqual(EflPort().build_webkit_command(), DeprecatedPort().script_shell_command("build-webkit") + ["--efl", "--update-efl", DeprecatedPort().makeArgs()])
-        self.assertEqual(EflPort().build_webkit_command(build_style="debug"), DeprecatedPort().script_shell_command("build-webkit") + ["--debug", "--efl", "--update-efl", DeprecatedPort().makeArgs()])
-
-    def test_qt_port(self):
-        self.assertEqual(QtPort().flag(), "--port=qt")
-        self.assertEqual(QtPort().run_webkit_tests_command(), DeprecatedPort().script_shell_command("run-webkit-tests"))
-        self.assertEqual(QtPort().build_webkit_command(), DeprecatedPort().script_shell_command("build-webkit") + ["--qt", DeprecatedPort().makeArgs()])
-        self.assertEqual(QtPort().build_webkit_command(build_style="debug"), DeprecatedPort().script_shell_command("build-webkit") + ["--debug", "--qt", DeprecatedPort().makeArgs()])
-
     def test_chromium_port(self):
         self.assertEqual(ChromiumPort().flag(), "--port=chromium")
         self.assertEqual(ChromiumPort().run_webkit_tests_command(), DeprecatedPort().script_shell_command("new-run-webkit-tests") + ["--chromium", "--skip-failing-tests"])
diff --git a/Tools/Scripts/webkitpy/common/config/watchlist b/Tools/Scripts/webkitpy/common/config/watchlist
index fd66cb4..e61f122 100644
--- a/Tools/Scripts/webkitpy/common/config/watchlist
+++ b/Tools/Scripts/webkitpy/common/config/watchlist
@@ -91,7 +91,7 @@
         },
         "SkiaGraphics": {
             "filename": r"Source/WebCore/platform/graphics/skia/"
-                        r"|Source/WebCore/platform/graphics/filters/skia/",
+                        r"|Source/WebCore/platform/graphics/filters/",
         },
         "V8Bindings": {
             "filename": r"Source/WebCore/bindings/v8/",
diff --git a/Tools/Scripts/webkitpy/common/net/irc/irc_mock.py b/Tools/Scripts/webkitpy/common/net/irc/irc_mock.py
deleted file mode 100644
index b2ae071..0000000
--- a/Tools/Scripts/webkitpy/common/net/irc/irc_mock.py
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright (c) 2011 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import logging
-
-_log = logging.getLogger(__name__)
-
-
-class MockIRC(object):
-    def post(self, message):
-        _log.info("MOCK: irc.post: %s" % message)
-
-    def disconnect(self):
-        _log.info("MOCK: irc.disconnect")
diff --git a/Tools/Scripts/webkitpy/common/net/irc/ircbot.py b/Tools/Scripts/webkitpy/common/net/irc/ircbot.py
deleted file mode 100644
index c8c1a38..0000000
--- a/Tools/Scripts/webkitpy/common/net/irc/ircbot.py
+++ /dev/null
@@ -1,108 +0,0 @@
-# Copyright (c) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from webkitpy.common.config import irc as config_irc
-
-from webkitpy.common.thread.messagepump import MessagePump, MessagePumpDelegate
-from webkitpy.thirdparty.autoinstalled.irc import ircbot
-from webkitpy.thirdparty.autoinstalled.irc import irclib
-
-
-class IRCBotDelegate(object):
-    def irc_message_received(self, nick, message):
-        raise NotImplementedError, "subclasses must implement"
-
-    def irc_nickname(self):
-        raise NotImplementedError, "subclasses must implement"
-
-    def irc_password(self):
-        raise NotImplementedError, "subclasses must implement"
-
-
-class IRCBot(ircbot.SingleServerIRCBot, MessagePumpDelegate):
-    # FIXME: We should get this information from a config file.
-    def __init__(self,
-                 message_queue,
-                 delegate):
-        self._message_queue = message_queue
-        self._delegate = delegate
-        ircbot.SingleServerIRCBot.__init__(
-            self,
-            [(
-                config_irc.server,
-                config_irc.port,
-                self._delegate.irc_password()
-            )],
-            self._delegate.irc_nickname(),
-            self._delegate.irc_nickname())
-        self._channel = config_irc.channel
-
-    # ircbot.SingleServerIRCBot methods
-
-    def on_nicknameinuse(self, connection, event):
-        connection.nick(connection.get_nickname() + "_")
-
-    def on_welcome(self, connection, event):
-        connection.join(self._channel)
-        self._message_pump = MessagePump(self, self._message_queue)
-
-    def on_pubmsg(self, connection, event):
-        nick = irclib.nm_to_n(event.source())
-        request = event.arguments()[0]
-
-        if not irclib.irc_lower(request).startswith(irclib.irc_lower(connection.get_nickname())):
-            return
-
-        if len(request) <= len(connection.get_nickname()):
-            return
-
-        # Some IRC clients, like xchat-gnome, default to using a comma
-        # when addressing someone.
-        vocative_separator = request[len(connection.get_nickname())]
-        if vocative_separator == ':':
-            request = request.split(':', 1)
-        elif vocative_separator == ',':
-            request = request.split(',', 1)
-        else:
-            return
-
-        if len(request) > 1:
-            response = self._delegate.irc_message_received(nick, request[1])
-            if response:
-                connection.privmsg(self._channel, response)
-
-    # MessagePumpDelegate methods
-
-    def schedule(self, interval, callback):
-        self.connection.execute_delayed(interval, callback)
-
-    def message_available(self, message):
-        self.connection.privmsg(self._channel, message)
-
-    def final_message_delivered(self):
-        self.die()
diff --git a/Tools/Scripts/webkitpy/common/net/irc/ircproxy.py b/Tools/Scripts/webkitpy/common/net/irc/ircproxy.py
deleted file mode 100644
index 521f6f7..0000000
--- a/Tools/Scripts/webkitpy/common/net/irc/ircproxy.py
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright (c) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import logging
-import threading
-
-from webkitpy.common.net.irc.ircbot import IRCBot
-from webkitpy.common.thread.threadedmessagequeue import ThreadedMessageQueue
-
-_log = logging.getLogger(__name__)
-
-
-class _IRCThread(threading.Thread):
-    def __init__(self, message_queue, irc_delegate, irc_bot):
-        threading.Thread.__init__(self)
-        self.setDaemon(True)
-        self._message_queue = message_queue
-        self._irc_delegate = irc_delegate
-        self._irc_bot = irc_bot
-
-    def run(self):
-        bot = self._irc_bot(self._message_queue, self._irc_delegate)
-        bot.start()
-
-
-class IRCProxy(object):
-    def __init__(self, irc_delegate, irc_bot=IRCBot):
-        _log.info("Connecting to IRC")
-        self._message_queue = ThreadedMessageQueue()
-        self._child_thread = _IRCThread(self._message_queue, irc_delegate, irc_bot)
-        self._child_thread.start()
-
-    def post(self, message):
-        self._message_queue.post(message)
-
-    def disconnect(self):
-        _log.info("Disconnecting from IRC...")
-        self._message_queue.stop()
-        self._child_thread.join()
diff --git a/Tools/Scripts/webkitpy/common/net/irc/ircproxy_unittest.py b/Tools/Scripts/webkitpy/common/net/irc/ircproxy_unittest.py
deleted file mode 100644
index 639979a..0000000
--- a/Tools/Scripts/webkitpy/common/net/irc/ircproxy_unittest.py
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright (c) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-# 
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-# 
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import unittest2 as unittest
-
-from webkitpy.common.net.irc.ircproxy import IRCProxy
-from webkitpy.common.system.outputcapture import OutputCapture
-from webkitpy.thirdparty.mock import Mock
-
-class IRCProxyTest(unittest.TestCase):
-    def test_trivial(self):
-        def fun():
-            proxy = IRCProxy(Mock(), Mock())
-            proxy.post("hello")
-            proxy.disconnect()
-
-        expected_logs = "Connecting to IRC\nDisconnecting from IRC...\n"
-        OutputCapture().assert_outputs(self, fun, expected_logs=expected_logs)
diff --git a/Tools/Scripts/webkitpy/common/prettypatch.py b/Tools/Scripts/webkitpy/common/prettypatch.py
index e8a913a..ffadea6 100644
--- a/Tools/Scripts/webkitpy/common/prettypatch.py
+++ b/Tools/Scripts/webkitpy/common/prettypatch.py
@@ -53,7 +53,7 @@
             return ""
 
         pretty_patch_path = os.path.join(self._checkout_root,
-                                         "Websites", "bugs.webkit.org",
+                                         "Tools", "Scripts", "webkitruby",
                                          "PrettyPatch")
         prettify_path = os.path.join(pretty_patch_path, "prettify.rb")
         args = [
diff --git a/Tools/Scripts/webkitpy/common/prettypatch_unittest.py b/Tools/Scripts/webkitpy/common/prettypatch_unittest.py
deleted file mode 100644
index 3ae1c43..0000000
--- a/Tools/Scripts/webkitpy/common/prettypatch_unittest.py
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright (C) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#    * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#    * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#    * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import os.path
-import sys
-import unittest2 as unittest
-
-from webkitpy.common.system.executive import Executive
-from webkitpy.common.prettypatch import PrettyPatch
-
-
-class PrettyPatchTest(unittest.TestCase):
-    def check_ruby(self):
-        executive = Executive()
-        try:
-            result = executive.run_command(['ruby', '--version'])
-        except OSError, e:
-            return False
-        return True
-
-    _diff_with_multiple_encodings = """
-Index: utf8_test
-===================================================================
---- utf8_test\t(revision 0)
-+++ utf8_test\t(revision 0)
-@@ -0,0 +1 @@
-+utf-8 test: \xc2\xa0
-Index: latin1_test
-===================================================================
---- latin1_test\t(revision 0)
-+++ latin1_test\t(revision 0)
-@@ -0,0 +1 @@
-+latin1 test: \xa0
-"""
-
-    def _webkit_root(self):
-        webkitpy_common = os.path.dirname(__file__)
-        webkitpy = os.path.dirname(webkitpy_common)
-        scripts = os.path.dirname(webkitpy)
-        webkit_tools = os.path.dirname(scripts)
-        webkit_root = os.path.dirname(webkit_tools)
-        return webkit_root
-
-    def test_pretty_diff_encodings(self):
-        if not self.check_ruby():
-            return
-
-        if sys.platform == 'win32':
-            # FIXME: disabled due to https://bugs.webkit.org/show_bug.cgi?id=93192
-            return
-
-        pretty_patch = PrettyPatch(Executive(), self._webkit_root())
-        pretty = pretty_patch.pretty_diff(self._diff_with_multiple_encodings)
-        self.assertTrue(pretty)  # We got some output
-        self.assertIsInstance(pretty, str)  # It's a byte array, not unicode
-
-    def test_pretty_print_empty_string(self):
-        if not self.check_ruby():
-            return
-
-        # Make sure that an empty diff does not hang the process.
-        pretty_patch = PrettyPatch(Executive(), self._webkit_root())
-        self.assertEqual(pretty_patch.pretty_diff(""), "")
diff --git a/Tools/Scripts/webkitpy/common/system/filesystem_mock.py b/Tools/Scripts/webkitpy/common/system/filesystem_mock.py
index ee0664e..91a7df4 100644
--- a/Tools/Scripts/webkitpy/common/system/filesystem_mock.py
+++ b/Tools/Scripts/webkitpy/common/system/filesystem_mock.py
@@ -339,27 +339,32 @@
         start = self.abspath(start)
         path = self.abspath(path)
 
-        if not path.lower().startswith(start.lower()):
-            # path is outside the directory given by start; compute path from root
-            return '../' * start.count('/') + path
+        common_root = start
+        dot_dot = ''
+        while not common_root == '':
+            if path.startswith(common_root):
+                 break
+            common_root = self.dirname(common_root)
+            dot_dot += '..' + self.sep
 
-        rel_path = path[len(start):]
+        rel_path = path[len(common_root):]
 
         if not rel_path:
-            # Then the paths are the same.
-            pass
-        elif rel_path[0] == self.sep:
+            return '.'
+
+        if rel_path[0] == self.sep:
             # It is probably sufficient to remove just the first character
             # since os.path.normpath() collapses separators, but we use
             # lstrip() just to be sure.
             rel_path = rel_path.lstrip(self.sep)
-        else:
+        elif not common_root == '/':
             # We are in the case typified by the following example:
             # path = "/tmp/foobar", start = "/tmp/foo" -> rel_path = "bar"
-            # FIXME: We return a less-than-optimal result here.
-            return '../' * start.count('/') + path
+            common_root = self.dirname(common_root)
+            dot_dot += '..' + self.sep
+            rel_path = path[len(common_root) + 1:]
 
-        return rel_path
+        return dot_dot + rel_path
 
     def remove(self, path):
         if self.files[path] is None:
@@ -371,10 +376,12 @@
         path = self.normpath(path)
 
         for f in self.files:
-            if f.startswith(path):
+            # We need to add a trailing separator to path to avoid matching
+            # cases like path='/foo/b' and f='/foo/bar/baz'.
+            if f == path or f.startswith(path + self.sep):
                 self.files[f] = None
 
-        self.dirs = set(filter(lambda d: not d.startswith(path), self.dirs))
+        self.dirs = set(filter(lambda d: not (d == path or d.startswith(path + self.sep)), self.dirs))
 
     def copytree(self, source, destination):
         source = self.normpath(source)
diff --git a/Tools/Scripts/webkitpy/common/system/filesystem_unittest.py b/Tools/Scripts/webkitpy/common/system/filesystem_unittest.py
index 26389e7..db984d5 100644
--- a/Tools/Scripts/webkitpy/common/system/filesystem_unittest.py
+++ b/Tools/Scripts/webkitpy/common/system/filesystem_unittest.py
@@ -74,6 +74,31 @@
         self.fs.chdir(self.generic_test_dir)
         self.assertEqual(set(self.fs.glob('foo.*')), set(['foo.txt']))
 
+    def test_relpath(self):
+        self.assertEqual(self.fs.relpath('aaa/bbb'), 'aaa/bbb')
+        self.assertEqual(self.fs.relpath('aaa/bbb/'), 'aaa/bbb')
+        self.assertEqual(self.fs.relpath('aaa/bbb/.'), 'aaa/bbb')
+        self.assertEqual(self.fs.relpath('aaa/./bbb'), 'aaa/bbb')
+        self.assertEqual(self.fs.relpath('aaa/../bbb/'), 'bbb')
+        self.assertEqual(self.fs.relpath('aaa/bbb', 'aaa/bbb'), '.')
+        self.assertEqual(self.fs.relpath('aaa/bbb/ccc', 'aaa/bbb'), 'ccc')
+        self.assertEqual(self.fs.relpath('aaa/./ccc', 'aaa/bbb'), '../ccc')
+        self.assertEqual(self.fs.relpath('aaa/../ccc', 'aaa/bbb'), '../../ccc')
+        self.assertEqual(self.fs.relpath('aaa/bbb', 'aaa/ccc'), '../bbb')
+        self.assertEqual(self.fs.relpath('aaa/bbb', 'ccc/ddd'), '../../aaa/bbb')
+        self.assertEqual(self.fs.relpath('aaa/bbb', 'aaa/b'), '../bbb')
+        self.assertEqual(self.fs.relpath('aaa/bbb', 'a/bbb'), '../../aaa/bbb')
+
+    def test_rmtree(self):
+        self.fs.chdir(self.generic_test_dir)
+        self.fs.rmtree('foo')
+        self.assertTrue(self.fs.exists('foodir'))
+        self.assertTrue(self.fs.exists(self.fs.join('foodir', 'baz')))
+        self.fs.rmtree('foodir')
+        self.assertFalse(self.fs.exists('foodir'))
+        self.assertFalse(self.fs.exists(self.fs.join('foodir', 'baz')))
+
+
 class RealFileSystemTest(unittest.TestCase, GenericFileSystemTests):
     def setUp(self):
         self.fs = FileSystem()
diff --git a/Tools/Scripts/webkitpy/layout_tests/layout_package/bot_test_expectations.py b/Tools/Scripts/webkitpy/layout_tests/layout_package/bot_test_expectations.py
new file mode 100644
index 0000000..7e39129
--- /dev/null
+++ b/Tools/Scripts/webkitpy/layout_tests/layout_package/bot_test_expectations.py
@@ -0,0 +1,123 @@
+# Copyright (C) 2013 Google Inc. All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are
+# met:
+#
+#     * Redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+#     * Redistributions in binary form must reproduce the above
+# copyright notice, this list of conditions and the following disclaimer
+# in the documentation and/or other materials provided with the
+# distribution.
+#     * Neither the Google name nor the names of its
+# contributors may be used to endorse or promote products derived from
+# this software without specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+"""Generates a fake TestExpectations file consisting of flaky tests from the bot
+corresponding to the give port."""
+
+import json
+import logging
+import os.path
+import urllib
+import urllib2
+
+from webkitpy.layout_tests.port import builders
+
+_log = logging.getLogger(__name__)
+
+
+class BotTestExpectations(object):
+    RLE_LENGTH = 0
+    RLE_VALUE = 1
+    RESULTS_KEY = 'results'
+    TESTS_KEY = 'tests'
+    RESULTS_URL_PREFIX = 'http://test-results.appspot.com/testfile?master=ChromiumWebkit&testtype=layout-tests&name=results-small.json&builder='
+
+    # FIXME: This map should be generated from data in json_layout_results_generator.py and test_expectations.py.
+    MAP_ENCODED_RESULT_STRING_TO_EXPECTATIONS_VALUE = {
+        'P': 'Pass',
+        'N': '', # No data
+        'X': '', # Skip
+        'T': 'Timeout',
+        'F': 'Failure', # text-only
+        'C': 'Crash',
+        'I': 'ImageOnlyFailure',
+        'Z': 'Failure', # image+text
+        'O': 'Missing',
+    };
+
+    def __init__(self, only_ignore_very_flaky):
+        self._only_ignore_very_flaky = only_ignore_very_flaky
+
+    def expectations_string(self, port_name):
+        builder_name = builders.builder_name_for_port_name(port_name)
+        if not builder_name:
+            return ""
+
+        url = self.RESULTS_URL_PREFIX + urllib.quote(builder_name)
+        try:
+            _log.debug('Fetching flakiness data from appengine.')
+            data = urllib2.urlopen(url)
+            parsed_data = json.load(data)[builder_name]
+            result = self._generate_expectations_string(parsed_data)
+            return result
+        except urllib2.URLError as error:
+            _log.warning('Could not retrieve flakiness data from the bot.')
+            _log.warning(error)
+            return ""
+
+    def _generate_expectations_string(self, test_data):
+        out = []
+        self._walk_tests_trie(test_data[self.TESTS_KEY], out)
+        return "\n".join(out)
+
+    def _actual_results_for_test(self, run_length_encoded_results):
+        resultsMap = {}
+
+        seenResults = {};
+        for result in run_length_encoded_results:
+            numResults = result[self.RLE_LENGTH];
+            result_string = result[self.RLE_VALUE];
+
+            if result_string == 'N' or result_string == 'X':
+                continue
+
+            if self._only_ignore_very_flaky and result_string not in seenResults:
+                # Only consider a short-lived result if we've seen it more than once.
+                # Otherwise, we include lots of false-positives due to tests that fail
+                # for a couple runs and then start passing.
+                # FIXME: Maybe we should make this more liberal and consider it a flake
+                # even if we only see that failure once.
+                seenResults[result_string] = True
+                continue
+
+            expectation = self.MAP_ENCODED_RESULT_STRING_TO_EXPECTATIONS_VALUE[result_string]
+            resultsMap[expectation] = True;
+
+        return resultsMap.keys()
+
+    def _walk_tests_trie(self, trie, out, path_so_far=""):
+        for name in trie:
+            new_path = os.path.join(path_so_far, name)
+            if self.RESULTS_KEY not in trie[name]:
+                self._walk_tests_trie(trie[name], out, new_path)
+                continue
+
+            results = trie[name][self.RESULTS_KEY]
+            actual_results = self._actual_results_for_test(results)
+            if len(actual_results) > 1:
+                out.append('Bug(auto) %s [ %s ]' % (new_path, " ".join(actual_results)))
diff --git a/Tools/Scripts/webkitpy/layout_tests/layout_package/bot_test_expectations_unittest.py b/Tools/Scripts/webkitpy/layout_tests/layout_package/bot_test_expectations_unittest.py
new file mode 100644
index 0000000..d98ac84
--- /dev/null
+++ b/Tools/Scripts/webkitpy/layout_tests/layout_package/bot_test_expectations_unittest.py
@@ -0,0 +1,86 @@
+# Copyright (C) 2013 Google Inc. All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are
+# met:
+#
+#     * Redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+#     * Redistributions in binary form must reproduce the above
+# copyright notice, this list of conditions and the following disclaimer
+# in the documentation and/or other materials provided with the
+# distribution.
+#     * Neither the Google name nor the names of its
+# contributors may be used to endorse or promote products derived from
+# this software without specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+import unittest2 as unittest
+
+from webkitpy.layout_tests.layout_package import bot_test_expectations
+
+class BotTestExpectationsTest(unittest.TestCase):
+
+    def test_basic(self):
+        expectations = bot_test_expectations.BotTestExpectations(only_ignore_very_flaky=True)
+        test_data = {
+            'tests': {
+                'foo': {
+                    'veryflaky.html': {
+                        'results': [[1, 'F'], [1, 'P'], [1, 'F'], [1, 'P']]
+                    },
+                    'maybeflaky.html': {
+                        'results': [[3, 'P'], [1, 'F'], [3, 'P']]
+                    },
+                    'notflakypass.html': {
+                        'results': [[4, 'P']]
+                    },
+                    'notflakyfail.html': {
+                        'results': [[4, 'F']]
+                    },
+                }
+            }
+        }
+        output = expectations._generate_expectations_string(test_data)
+        expected_output = """Bug(auto) foo/veryflaky.html [ Failure Pass ]"""
+        self.assertMultiLineEqual(output, expected_output)
+
+        expectations = bot_test_expectations.BotTestExpectations(only_ignore_very_flaky=False)
+        output = expectations._generate_expectations_string(test_data)
+        expected_output = """Bug(auto) foo/veryflaky.html [ Failure Pass ]
+Bug(auto) foo/maybeflaky.html [ Failure Pass ]"""
+        self.assertMultiLineEqual(output, expected_output)
+
+    def test_all_failure_types(self):
+        expectations = bot_test_expectations.BotTestExpectations(only_ignore_very_flaky=True)
+        test_data = {
+            'tests': {
+                'foo': {
+                    'allfailures.html': {
+                        'results': [[1, 'F'], [1, 'P'], [1, 'F'], [1, 'P'],
+                            [1, 'C'], [1, 'N'], [1, 'C'], [1, 'N'],
+                            [1, 'T'], [1, 'X'], [1, 'T'], [1, 'X'],
+                            [1, 'I'], [1, 'Z'], [1, 'I'], [1, 'Z'],
+                            [1, 'O'], [1, 'C'], [1, 'O'], [1, 'C']]
+                    },
+                    'imageplustextflake.html': {
+                        'results': [[1, 'Z'], [1, 'P'], [1, 'Z'], [1, 'P']]
+                    },
+                }
+            }
+        }
+        output = expectations._generate_expectations_string(test_data)
+        expected_output = """Bug(auto) foo/imageplustextflake.html [ Failure Pass ]
+Bug(auto) foo/allfailures.html [ Crash Missing ImageOnlyFailure Failure Timeout Pass ]"""
+        self.assertMultiLineEqual(output, expected_output)
diff --git a/Tools/Scripts/webkitpy/layout_tests/layout_tests_mover.py b/Tools/Scripts/webkitpy/layout_tests/layout_tests_mover.py
new file mode 100755
index 0000000..9e11800
--- /dev/null
+++ b/Tools/Scripts/webkitpy/layout_tests/layout_tests_mover.py
@@ -0,0 +1,324 @@
+# Copyright (C) 2013 Google Inc. All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are
+# met:
+#
+#     * Redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+#     * Redistributions in binary form must reproduce the above
+# copyright notice, this list of conditions and the following disclaimer
+# in the documentation and/or other materials provided with the
+# distribution.
+#     * Neither the name of Google Inc. nor the names of its
+# contributors may be used to endorse or promote products derived from
+# this software without specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+"""Moves a directory of LayoutTests.
+
+Given a path to a directory of LayoutTests, moves that directory, including all recursive children,
+to the specified destination path. Updates all references in tests and resources to reflect the new
+location. Also moves any corresponding platform-specific expected results and updates the test
+expectations to reflect the move.
+
+If the destination directory does not exist, it and any missing parent directories are created. If
+the destination directory already exists, the child members of the origin directory are added to the
+destination directory. If any of the child members clash with existing members of the destination
+directory, the move fails.
+
+Note that when new entries are added to the test expectations, no attempt is made to group or merge
+them with existing entries. This should be be done manually and with lint-test-expectations.
+"""
+
+import argparse
+import copy
+import logging
+import os
+import re
+import urlparse
+
+from webkitpy.common.checkout.scm.detection import SCMDetector
+from webkitpy.common.host import Host
+from webkitpy.common.system.executive import Executive
+from webkitpy.common.system.filesystem import FileSystem
+from webkitpy.layout_tests.port.base import Port
+from webkitpy.layout_tests.models.test_expectations import TestExpectations
+
+
+logging.basicConfig()
+_log = logging.getLogger(__name__)
+_log.setLevel(logging.INFO)
+
+PLATFORM_DIRECTORY = 'platform'
+
+class LayoutTestsMover(object):
+
+    def __init__(self, port=None):
+        self._port = port
+        if not self._port:
+            host = Host()
+            # Given that we use include_overrides=False and model_all_expectations=True when
+            # constructing the TestExpectations object, it doesn't matter which Port object we use.
+            self._port = host.port_factory.get()
+            self._port.host.initialize_scm()
+        self._filesystem = self._port.host.filesystem
+        self._scm = self._port.host.scm()
+        self._layout_tests_root = self._port.layout_tests_dir()
+
+    def _scm_path(self, *paths):
+        return self._filesystem.join('LayoutTests', *paths)
+
+    def _is_child_path(self, parent, possible_child):
+        normalized_parent = self._filesystem.normpath(parent)
+        normalized_child = self._filesystem.normpath(possible_child)
+        # We need to add a trailing separator to parent to avoid returning true for cases like
+        # parent='/foo/b', and possible_child='/foo/bar/baz'.
+        return normalized_parent == normalized_child or normalized_child.startswith(normalized_parent + self._filesystem.sep)
+
+    def _move_path(self, path, origin, destination):
+        if not self._is_child_path(origin, path):
+            return path
+        return self._filesystem.normpath(self._filesystem.join(destination, self._filesystem.relpath(path, origin)))
+
+    def _validate_input(self):
+        if not self._filesystem.isdir(self._absolute_origin):
+            raise Exception('Source path %s is not a directory' % self._origin)
+        if not self._is_child_path(self._layout_tests_root, self._absolute_origin):
+            raise Exception('Source path %s is not in LayoutTests directory' % self._origin)
+        if self._filesystem.isfile(self._absolute_destination):
+            raise Exception('Destination path %s is a file' % self._destination)
+        if not self._is_child_path(self._layout_tests_root, self._absolute_destination):
+            raise Exception('Destination path %s is not in LayoutTests directory' % self._destination)
+
+        # If destination is an existing directory, we move the children of origin into destination.
+        # However, if any of the children of origin would clash with existing children of
+        # destination, we fail.
+        # FIXME: Consider adding support for recursively moving into an existing directory.
+        if self._filesystem.isdir(self._absolute_destination):
+            for file_path in self._filesystem.listdir(self._absolute_origin):
+                if self._filesystem.exists(self._filesystem.join(self._absolute_destination, file_path)):
+                    raise Exception('Origin path %s clashes with existing destination path %s' %
+                            (self._filesystem.join(self._origin, file_path), self._filesystem.join(self._destination, file_path)))
+
+    def _get_expectations_for_test(self, model, test_path):
+        """Given a TestExpectationsModel object, finds all expectations that match the specified
+        test, specified as a relative path. Handles the fact that expectations may be keyed by
+        directory.
+        """
+        expectations = set()
+        if model.has_test(test_path):
+            expectations.add(model.get_expectation_line(test_path))
+        test_path = self._filesystem.dirname(test_path)
+        while not test_path == '':
+            # The model requires a trailing slash for directories.
+            test_path_for_model = test_path + '/'
+            if model.has_test(test_path_for_model):
+                expectations.add(model.get_expectation_line(test_path_for_model))
+            test_path = self._filesystem.dirname(test_path)
+        return expectations
+
+    def _get_expectations(self, model, path):
+        """Given a TestExpectationsModel object, finds all expectations for all tests under the
+        specified relative path.
+        """
+        expectations = set()
+        for test in self._filesystem.files_under(self._filesystem.join(self._layout_tests_root, path), dirs_to_skip=['script-tests', 'resources'],
+                                                 file_filter=Port.is_test_file):
+            expectations = expectations.union(self._get_expectations_for_test(model, self._filesystem.relpath(test, self._layout_tests_root)))
+        return expectations
+
+    @staticmethod
+    def _clone_expectation_line_for_path(expectation_line, path):
+        """Clones a TestExpectationLine object and updates the clone to apply to the specified
+        relative path.
+        """
+        clone = copy.copy(expectation_line)
+        clone.original_string = re.compile(expectation_line.name).sub(path, expectation_line.original_string)
+        clone.name = path
+        clone.path = path
+        # FIXME: Should we search existing expectations for matches, like in
+        # TestExpectationsParser._collect_matching_tests()?
+        clone.matching_tests = [path]
+        return clone
+
+    def _update_expectations(self):
+        """Updates all test expectations that are affected by the move.
+        """
+        _log.info('Updating expectations')
+        test_expectations = TestExpectations(self._port, include_overrides=False, model_all_expectations=True)
+
+        for expectation in self._get_expectations(test_expectations.model(), self._origin):
+            path = expectation.path
+            if self._is_child_path(self._origin, path):
+                # If the existing expectation is a child of the moved path, we simply replace it
+                # with an expectation for the updated path.
+                new_path = self._move_path(path, self._origin, self._destination)
+                _log.debug('Updating expectation for %s to %s' % (path, new_path))
+                test_expectations.remove_expectation_line(path)
+                test_expectations.add_expectation_line(LayoutTestsMover._clone_expectation_line_for_path(expectation, new_path))
+            else:
+                # If the existing expectation is not a child of the moved path, we have to leave it
+                # in place. But we also add a new expectation for the destination path.
+                new_path = self._destination
+                _log.warning('Copying expectation for %s to %s. You should check that these expectations are still correct.' %
+                             (path, new_path))
+                test_expectations.add_expectation_line(LayoutTestsMover._clone_expectation_line_for_path(expectation, new_path))
+
+        expectations_file = self._port.path_to_generic_test_expectations_file()
+        self._filesystem.write_text_file(expectations_file,
+                                         TestExpectations.list_to_string(test_expectations._expectations, reconstitute_only_these=[]))
+        self._scm.add(self._filesystem.relpath(expectations_file, self._scm.checkout_root))
+
+    def _find_references(self, input_files):
+        """Attempts to find all references to other files in the supplied list of files. Returns a
+        dictionary that maps from an absolute file path to an array of reference strings.
+        """
+        reference_regex = re.compile(r'(?:src=|href=|importScripts\(|url\()(?:"([^"]*)"|\'([^\']*)\')')
+        references = {}
+        for input_file in input_files:
+            matches = reference_regex.findall(self._filesystem.read_binary_file(input_file))
+            if matches:
+                references[input_file] = [(match[0] if match[0] else match[1]) for match in matches]
+        return references
+
+    def _get_updated_reference(self, root, reference):
+        """For a reference <reference> in a directory <root>, determines the updated reference.
+        Returns the the updated reference, or None if no update is required.
+        """
+        # If the reference is the empty string or an absolute path or url, it's safe.
+        if reference == '' or reference.startswith('/') or urlparse.urlparse(reference).scheme:
+            return None
+
+        # Both the root path and the target of the reference my be subject to the move, so there are
+        # four cases to consider. In the case where both or neither are subject to the move, the
+        # reference doesn't need updating.
+        #
+        # This is true even if the reference includes superfluous dot segments which mention a moved
+        # directory, as dot segments are collapsed during URL normalization. For example, if
+        # foo.html contains a reference 'bar/../script.js', this remains valid (though ugly) even if
+        # bar/ is moved to baz/, because the reference is always normalized to 'script.js'.
+        absolute_reference = self._filesystem.normpath(self._filesystem.join(root, reference))
+        if self._is_child_path(self._absolute_origin, root) == self._is_child_path(self._absolute_origin, absolute_reference):
+            return None;
+
+        new_root = self._move_path(root, self._absolute_origin, self._absolute_destination)
+        new_absolute_reference = self._move_path(absolute_reference, self._absolute_origin, self._absolute_destination)
+        return self._filesystem.relpath(new_absolute_reference, new_root)
+
+    def _get_all_updated_references(self, references):
+        """Determines the updated references due to the move. Returns a dictionary that maps from an
+        absolute file path to a dictionary that maps from a reference string to the corresponding
+        updated reference.
+        """
+        updates = {}
+        for file_path in references.keys():
+            root = self._filesystem.dirname(file_path)
+            # sript-tests/TEMPLATE.html files contain references which are written as if the file
+            # were in the parent directory. This special-casing is ugly, but there are plans to
+            # remove script-tests.
+            if root.endswith('script-tests') and file_path.endswith('TEMPLATE.html'):
+                root = self._filesystem.dirname(root)
+            local_updates = {}
+            for reference in references[file_path]:
+                update = self._get_updated_reference(root, reference)
+                if update:
+                    local_updates[reference] = update
+            if local_updates:
+                updates[file_path] = local_updates
+        return updates
+
+    def _update_file(self, path, updates):
+        contents = self._filesystem.read_binary_file(path)
+        # Note that this regex isn't quite as strict as that used to find the references, as it
+        # doesn't force the type of the opening and closing quotes to match. But this avoids the
+        # need for alternative match groups, which simplifies things.
+        for target in updates.keys():
+            regex = re.compile(r'((?:src=|href=|importScripts\(|url\()["\'])%s(["\'])' % target)
+            contents = regex.sub(r'\1%s\2' % updates[target], contents)
+        self._filesystem.write_binary_file(path, contents)
+        self._scm.add(path)
+
+    def _update_test_source_files(self):
+        def is_test_source_file(filesystem, dirname, basename):
+            pass_regex = re.compile(r'\.(css|js)$')
+            fail_regex = re.compile(r'-expected\.')
+            return (Port.is_test_file(filesystem, dirname, basename) or pass_regex.search(basename)) and not fail_regex.search(basename)
+
+        test_source_files = self._filesystem.files_under(self._layout_tests_root, file_filter=is_test_source_file)
+        _log.info('Considering %s test source files for references' % len(test_source_files))
+        references = self._find_references(test_source_files)
+        _log.info('Considering references in %s files' % len(references))
+        updates = self._get_all_updated_references(references)
+        _log.info('Updating references in %s files' % len(updates))
+        count = 0
+        for file_path in updates.keys():
+            self._update_file(file_path, updates[file_path])
+            count += 1
+            if count % 1000 == 0 or count == len(updates):
+                _log.debug('Updated references in %s files' % count)
+
+    def _move_directory(self, origin, destination):
+        """Moves the directory <origin> to <destination>. If <destination> is a directory, moves the
+        children of <origin> into <destination>. Uses relative paths.
+        """
+        absolute_origin = self._filesystem.join(self._layout_tests_root, origin)
+        if not self._filesystem.isdir(absolute_origin):
+            return
+        _log.info('Moving directory %s to %s' % (origin, destination))
+        # Note that FileSystem.move() may silently overwrite existing files, but we
+        # check for this in _validate_input().
+        absolute_destination = self._filesystem.join(self._layout_tests_root, destination)
+        self._filesystem.maybe_make_directory(absolute_destination)
+        for directory in self._filesystem.listdir(absolute_origin):
+            self._scm.move(self._scm_path(origin, directory), self._scm_path(destination, directory))
+        self._filesystem.rmtree(absolute_origin)
+
+    def _move_files(self):
+        """Moves the all files that correspond to the move, including platform-specific expected
+        results.
+        """
+        self._move_directory(self._origin, self._destination)
+        for directory in self._filesystem.listdir(self._filesystem.join(self._layout_tests_root, PLATFORM_DIRECTORY)):
+            self._move_directory(self._filesystem.join(PLATFORM_DIRECTORY, directory, self._origin),
+                           self._filesystem.join(PLATFORM_DIRECTORY, directory, self._destination))
+
+    def _commit_changes(self):
+        if not self._scm.supports_local_commits():
+            return
+        title = 'Move LayoutTests directory %s to %s' % (self._origin, self._destination)
+        _log.info('Committing change \'%s\'' % title)
+        self._scm.commit_locally_with_message('%s\n\nThis commit was automatically generated by move-layout-tests.' % title,
+                                              commit_all_working_directory_changes=False)
+
+    def move(self, origin, destination):
+        self._origin = origin
+        self._destination = destination
+        self._absolute_origin = self._filesystem.join(self._layout_tests_root, self._origin)
+        self._absolute_destination = self._filesystem.join(self._layout_tests_root, self._destination)
+        self._validate_input()
+        self._update_expectations()
+        self._update_test_source_files()
+        self._move_files()
+        # FIXME: Handle virtual test suites.
+        self._commit_changes()
+
+def main(argv):
+    parser = argparse.ArgumentParser(description=__doc__)
+    parser.add_argument('origin',
+                        help=('The directory of tests to move, as a relative path from the LayoutTests directory.'))
+    parser.add_argument('destination',
+                        help=('The new path for the directory of tests, as a relative path from the LayoutTests directory.'))
+    args = parser.parse_args()
+    LayoutTestsMover().move(args.origin, args.destination)
diff --git a/Tools/Scripts/webkitpy/layout_tests/layout_tests_mover_unittest.py b/Tools/Scripts/webkitpy/layout_tests/layout_tests_mover_unittest.py
new file mode 100755
index 0000000..a83b2d3
--- /dev/null
+++ b/Tools/Scripts/webkitpy/layout_tests/layout_tests_mover_unittest.py
@@ -0,0 +1,155 @@
+# Copyright (C) 2013 Google Inc. All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are
+# met:
+#
+#     * Redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+#     * Redistributions in binary form must reproduce the above
+# copyright notice, this list of conditions and the following disclaimer
+# in the documentation and/or other materials provided with the
+# distribution.
+#     * Neither the name of Google Inc. nor the names of its
+# contributors may be used to endorse or promote products derived from
+# this software without specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+import logging
+import unittest2 as unittest
+
+from webkitpy.common.host_mock import MockHost
+from webkitpy.common.checkout.scm.scm_mock import MockSCM
+from webkitpy.common.system.filesystem_mock import MockFileSystem
+from webkitpy.layout_tests.layout_tests_mover import LayoutTestsMover
+from webkitpy.layout_tests.port.chromium import ChromiumPort
+
+
+class MockPort(ChromiumPort):
+
+    def __init__(self, **kwargs):
+        # This sets up a mock FileSystem and SCM using that FileSystem.
+        host = MockHost()
+        ChromiumPort.__init__(self, host, host.port_factory.all_port_names()[0], **kwargs)
+
+        host.filesystem.maybe_make_directory(self._absolute_path('platform'))
+        host.filesystem.maybe_make_directory(self._absolute_path('existing_directory'))
+        host.filesystem.write_text_file(self._absolute_path('existing_file.txt'), '')
+        host.filesystem.write_text_file(self._absolute_path('TestExpectations'), """
+crbug.com/42 [ Debug ] origin/path/test.html [ Pass Timeout Failure ]
+crbug.com/42 [ Win ] origin/path [ Slow ]
+crbug.com/42 [ Release ] origin [ Crash ]
+""")
+        host.filesystem.write_text_file(self._absolute_path('existing_directory_with_contents', 'test.html'), '')
+        host.filesystem.write_text_file(self._absolute_path('origin', 'path', 'test.html'), """
+<script src="local_script.js">
+<script src="../../unmoved/remote_script.js">
+<script href="../../unmoved/remote_script.js">
+""")
+        host.filesystem.write_text_file(self._absolute_path('origin', 'path', 'test.css'), """
+url('../../unmoved/url_function.js')
+""")
+        host.filesystem.write_text_file(self._absolute_path('origin', 'path', 'test.js'), """
+importScripts('../../unmoved/import_scripts_function.js')
+""")
+        host.filesystem.write_text_file(self._absolute_path('unmoved', 'test.html'), """
+<script src="local_script.js">
+<script src="../origin/path/remote_script.js">
+""")
+
+    def _absolute_path(self, *paths):
+        return self.host.scm().absolute_path('LayoutTests', *paths)
+
+    def layout_tests_dir(self):
+        return self._absolute_path()
+
+
+class LayoutTestsMoverTest(unittest.TestCase):
+
+    def setUp(self):
+        port = MockPort()
+        self._port = port
+        self._filesystem = self._port.host.filesystem
+        self._mover = LayoutTestsMover(port=self._port)
+
+    def test_non_existent_origin_raises(self):
+        self.assertRaises(Exception, self._mover.move, 'non_existent', 'destination')
+
+    def test_origin_outside_layout_tests_directory_raises(self):
+        self.assertRaises(Exception, self._mover.move, '../outside', 'destination')
+
+    def test_file_destination_raises(self):
+        self.assertRaises(Exception, self._mover.move, 'origin/path', 'existing_file.txt')
+
+    def test_destination_outside_layout_tests_directory_raises(self):
+        self.assertRaises(Exception, self._mover.move, 'origin/path', '../outside')
+
+    def test_basic_operation(self):
+        self._mover.move('origin/path', 'destination')
+        self.assertFalse(self._filesystem.exists(self._port._absolute_path('origin/path')))
+        self.assertTrue(self._filesystem.isfile(self._port._absolute_path('destination/test.html')))
+
+    def test_move_to_existing_directory(self):
+        self._mover.move('origin/path', 'existing_directory')
+        self.assertFalse(self._filesystem.exists(self._port._absolute_path('origin', 'path')))
+        self.assertTrue(self._filesystem.isfile(self._port._absolute_path('existing_directory', 'test.html')))
+
+    def test_collision_in_existing_directory_raises(self):
+        self.assertRaises(Exception, self._mover.move, 'origin/path', 'existing_directory_with_contents')
+
+    def test_move_to_layout_tests_root(self):
+        self._mover.move('origin/path', '')
+        self.assertFalse(self._filesystem.exists(self._port._absolute_path('origin', 'path')))
+        self.assertTrue(self._filesystem.isfile(self._port._absolute_path('test.html')))
+
+    def test_moved_reference_in_moved_file_not_updated(self):
+        self._mover.move('origin/path', 'destination')
+        self.assertTrue('src="local_script.js"' in self._filesystem.read_text_file(self._port._absolute_path('destination', 'test.html')))
+
+    def test_unmoved_reference_in_unmoved_file_not_updated(self):
+        self._mover.move('origin/path', 'destination')
+        self.assertTrue('src="local_script.js"' in self._filesystem.read_text_file(self._port._absolute_path('unmoved', 'test.html')))
+
+    def test_moved_reference_in_unmoved_file_is_updated(self):
+        self._mover.move('origin/path', 'destination')
+        self.assertTrue('src="../destination/remote_script.js"' in self._filesystem.read_text_file(self._port._absolute_path('unmoved', 'test.html')))
+
+    def test_unmoved_reference_in_moved_file_is_updated(self):
+        self._mover.move('origin/path', 'destination')
+        self.assertTrue('src="../unmoved/remote_script.js"' in self._filesystem.read_text_file(self._port._absolute_path('destination', 'test.html')))
+        self.assertTrue('href="../unmoved/remote_script.js"' in self._filesystem.read_text_file(self._port._absolute_path('destination', 'test.html')))
+
+    def test_css_file_is_updated(self):
+        self._mover.move('origin/path', 'destination')
+        self.assertTrue('url(\'../unmoved/url_function.js\')' in self._filesystem.read_text_file(self._port._absolute_path('destination', 'test.css')))
+
+    def test_javascript_file_is_updated(self):
+        self._mover.move('origin/path', 'destination')
+        self.assertTrue('importScripts(\'../unmoved/import_scripts_function.js\')' in self._filesystem.read_text_file(self._port._absolute_path('destination', 'test.js')))
+
+    def test_expectation_is_updated(self):
+        self._mover.move('origin/path', 'destination')
+        self.assertFalse('origin/path/test.html' in self._filesystem.read_text_file(self._port._absolute_path('TestExpectations')))
+        self.assertTrue('crbug.com/42 [ Debug ] destination/test.html [ Pass Timeout Failure ]'
+                        in self._filesystem.read_text_file(self._port._absolute_path('TestExpectations')))
+
+    def test_directory_expectation_is_updated(self):
+        self._mover.move('origin/path', 'destination')
+        self.assertFalse('origin/path' in self._filesystem.read_text_file(self._port._absolute_path('TestExpectations')))
+        self.assertTrue('crbug.com/42 [ Win ] destination [ Slow ]' in self._filesystem.read_text_file(self._port._absolute_path('TestExpectations')))
+
+    def test_expectation_is_added_when_subdirectory_moved(self):
+        self._mover.move('origin/path', 'destination')
+        self.assertTrue('crbug.com/42 [ Release ] origin [ Crash ]' in self._filesystem.read_text_file(self._port._absolute_path('TestExpectations')))
+        self.assertTrue('crbug.com/42 [ Release ] destination [ Crash ]' in self._filesystem.read_text_file(self._port._absolute_path('TestExpectations')))
diff --git a/Tools/Scripts/webkitpy/layout_tests/models/test_configuration.py b/Tools/Scripts/webkitpy/layout_tests/models/test_configuration.py
index 95d0f2b..5e0cd04 100644
--- a/Tools/Scripts/webkitpy/layout_tests/models/test_configuration.py
+++ b/Tools/Scripts/webkitpy/layout_tests/models/test_configuration.py
@@ -26,6 +26,8 @@
 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
+import copy
+
 
 class TestConfiguration(object):
     def __init__(self, version, architecture, build_type):
@@ -146,7 +148,7 @@
     def to_config_set(self, specifier_set, error_list=None):
         """Convert a list of specifiers into a set of TestConfiguration instances."""
         if len(specifier_set) == 0:
-            return self._all_test_configurations
+            return copy.copy(self._all_test_configurations)
 
         matching_sets = {}
 
diff --git a/Tools/Scripts/webkitpy/layout_tests/models/test_expectations.py b/Tools/Scripts/webkitpy/layout_tests/models/test_expectations.py
index f5c977e..eaf16f7 100644
--- a/Tools/Scripts/webkitpy/layout_tests/models/test_expectations.py
+++ b/Tools/Scripts/webkitpy/layout_tests/models/test_expectations.py
@@ -587,6 +587,11 @@
                 return item[0].upper()
         raise ValueError(expectation)
 
+    def remove_expectation_line(self, test):
+        if not self.has_test(test):
+            return
+        self._clear_expectations_for_test(test)
+        del self._test_to_expectation_line[test]
 
     def add_expectation_line(self, expectation_line, in_skipped=False):
         """Returns a list of warnings encountered while matching modifiers."""
@@ -842,10 +847,11 @@
     # FIXME: This constructor does too much work. We should move the actual parsing of
     # the expectations into separate routines so that linting and handling overrides
     # can be controlled separately, and the constructor can be more of a no-op.
-    def __init__(self, port, tests=None, include_generic=True, include_overrides=True, expectations_to_lint=None):
+    def __init__(self, port, tests=None, include_overrides=True, expectations_to_lint=None, model_all_expectations=False):
         self._full_test_list = tests
         self._test_config = port.test_configuration()
         self._is_lint_mode = expectations_to_lint is not None
+        self._model_all_expectations = self._is_lint_mode or model_all_expectations
         self._model = TestExpectationsModel(self._shorten_filename)
         self._parser = TestExpectationParser(port, tests, self._is_lint_mode)
         self._port = port
@@ -855,16 +861,8 @@
         expectations_dict = expectations_to_lint or port.expectations_dict()
 
         expectations_dict_index = 0
-        # Populate generic expectations (if enabled by include_generic).
+        # Populate generic expectations (always enabled).
         if port.path_to_generic_test_expectations_file() in expectations_dict:
-            if include_generic:
-                expectations = self._parser.parse(expectations_dict.keys()[expectations_dict_index], expectations_dict.values()[expectations_dict_index])
-                self._add_expectations(expectations)
-                self._expectations += expectations
-            expectations_dict_index += 1
-
-        # Populate default port expectations (always enabled).
-        if len(expectations_dict) > expectations_dict_index:
             expectations = self._parser.parse(expectations_dict.keys()[expectations_dict_index], expectations_dict.values()[expectations_dict_index])
             self._add_expectations(expectations)
             self._expectations += expectations
@@ -1002,7 +1000,7 @@
             if not expectation_line.expectations:
                 continue
 
-            if self._is_lint_mode or self._test_config in expectation_line.matching_configurations:
+            if self._model_all_expectations or self._test_config in expectation_line.matching_configurations:
                 self._model.add_expectation_line(expectation_line)
 
     def add_skipped_tests(self, tests_to_skip):
@@ -1016,6 +1014,16 @@
             expectation_line = self._parser.expectation_for_skipped_test(test_name)
             self._model.add_expectation_line(expectation_line, in_skipped=True)
 
+    def add_expectation_line(self, expectation_line):
+        self._model.add_expectation_line(expectation_line)
+        self._expectations += [expectation_line]
+
+    def remove_expectation_line(self, test):
+        if not self._model.has_test(test):
+            return
+        self._expectations.remove(self._model.get_expectation_line(test))
+        self._model.remove_expectation_line(test)
+
     @staticmethod
     def list_to_string(expectation_lines, test_configuration_converter=None, reconstitute_only_these=None):
         def serialize(expectation_line):
diff --git a/Tools/Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py b/Tools/Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py
index 966a4a6..a198cce 100644
--- a/Tools/Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py
+++ b/Tools/Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py
@@ -33,7 +33,6 @@
 
 from webkitpy.layout_tests.models.test_configuration import *
 from webkitpy.layout_tests.models.test_expectations import *
-from webkitpy.layout_tests.models.test_configuration import *
 
 try:
     from collections import OrderedDict
@@ -248,7 +247,7 @@
 
 class SkippedTests(Base):
     def check(self, expectations, overrides, skips, lint=False):
-        port = MockHost().port_factory.get('qt')
+        port = MockHost().port_factory.get('test-win-xp')
         port._filesystem.write_text_file(port._filesystem.join(port.layout_tests_dir(), 'failures/expected/text.html'), 'foo')
         expectations_dict = OrderedDict()
         expectations_dict['expectations'] = expectations
@@ -287,7 +286,7 @@
                    skips=['failures/expected'])
 
     def test_skipped_entry_dont_exist(self):
-        port = MockHost().port_factory.get('qt')
+        port = MockHost().port_factory.get('test-win-xp')
         expectations_dict = OrderedDict()
         expectations_dict['expectations'] = ''
         port.expectations_dict = lambda: expectations_dict
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/apple.py b/Tools/Scripts/webkitpy/layout_tests/port/apple.py
deleted file mode 100644
index 9290bca..0000000
--- a/Tools/Scripts/webkitpy/layout_tests/port/apple.py
+++ /dev/null
@@ -1,108 +0,0 @@
-# Copyright (C) 2011 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the Google name nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import logging
-
-from webkitpy.layout_tests.port.base import Port
-from webkitpy.layout_tests.models.test_configuration import TestConfiguration
-
-
-_log = logging.getLogger(__name__)
-
-
-class ApplePort(Port):
-    """Shared logic between all of Apple's ports."""
-
-    # This is used to represent the version of an operating system
-    # corresponding to the "mac" or "win" base LayoutTests/platform
-    # directory.  I'm not sure this concept is very useful,
-    # but it gives us a way to refer to fallback paths *only* including
-    # the base directory.
-    # This is mostly done because TestConfiguration assumes that self.version()
-    # will never return None. (None would be another way to represent this concept.)
-    # Apple supposedly has explicit "future" results which are kept in an internal repository.
-    # It's possible that Apple would want to fix this code to work better with those results.
-    FUTURE_VERSION = 'future'  # FIXME: This whole 'future' thing feels like a hack.
-
-    # overridden in subclasses
-    VERSION_FALLBACK_ORDER = []
-    ARCHITECTURES = []
-
-    @classmethod
-    def determine_full_port_name(cls, host, options, port_name):
-        options = options or {}
-        if port_name in (cls.port_name, cls.port_name + '-wk2'):
-            # If the port_name matches the (badly named) cls.port_name, that
-            # means that they passed 'mac' or 'win' and didn't specify a version.
-            # That convention means that we're supposed to use the version currently
-            # being run, so this won't work if you're not on mac or win (respectively).
-            # If you're not on the o/s in question, you must specify a full version or -future (cf. above).
-            assert host.platform.os_name in port_name, "%s is not in %s!" % (host.platform.os_name, port_name)
-            if port_name == cls.port_name and not getattr(options, 'webkit_test_runner', False):
-                port_name = cls.port_name + '-' + host.platform.os_version
-            else:
-                port_name = cls.port_name + '-' + host.platform.os_version + '-wk2'
-        elif getattr(options, 'webkit_test_runner', False) and  '-wk2' not in port_name:
-            port_name += '-wk2'
-
-        return port_name
-
-    def _strip_port_name_prefix(self, port_name):
-        # Callers treat this return value as the "version", which only works
-        # because Apple ports use a simple name-version port_name scheme.
-        # FIXME: This parsing wouldn't be needed if port_name handling was moved to factory.py
-        # instead of the individual port constructors.
-        return port_name[len(self.port_name + '-'):]
-
-    def __init__(self, host, port_name, **kwargs):
-        super(ApplePort, self).__init__(host, port_name, **kwargs)
-
-        allowed_port_names = self.VERSION_FALLBACK_ORDER + [self.operating_system() + "-future"]
-        port_name = port_name.replace('-wk2', '')
-        self._version = self._strip_port_name_prefix(port_name)
-        assert port_name in allowed_port_names, "%s is not in %s" % (port_name, allowed_port_names)
-
-    def _skipped_file_search_paths(self):
-        # We don't have a dedicated Skipped file for the most recent version of the port;
-        # we just use the one in platform/{mac,win}
-        most_recent_name = self.VERSION_FALLBACK_ORDER[-1]
-        return set(filter(lambda name: name != most_recent_name, super(ApplePort, self)._skipped_file_search_paths()))
-
-    # FIXME: A more sophisticated version of this function should move to WebKitPort and replace all calls to name().
-    # This is also a misleading name, since 'mac-future' gets remapped to 'mac'.
-    def _port_name_with_version(self):
-        return self.name().replace('-future', '').replace('-wk2', '')
-
-    def _generate_all_test_configurations(self):
-        configurations = []
-        allowed_port_names = self.VERSION_FALLBACK_ORDER + [self.operating_system() + "-future"]
-        for port_name in allowed_port_names:
-            for build_type in self.ALL_BUILD_TYPES:
-                for architecture in self.ARCHITECTURES:
-                    configurations.append(TestConfiguration(version=self._strip_port_name_prefix(port_name), architecture=architecture, build_type=build_type))
-        return configurations
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/base.py b/Tools/Scripts/webkitpy/layout_tests/port/base.py
index 0811c9f..56f7662 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/base.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/base.py
@@ -54,6 +54,7 @@
 from webkitpy.common.system.executive import ScriptError
 from webkitpy.common.system.systemhost import SystemHost
 from webkitpy.common.webkit_finder import WebKitFinder
+from webkitpy.layout_tests.layout_package.bot_test_expectations import BotTestExpectations
 from webkitpy.layout_tests.models.test_configuration import TestConfiguration
 from webkitpy.layout_tests.port import config as port_config
 from webkitpy.layout_tests.port import driver
@@ -84,14 +85,13 @@
 
     ALL_BUILD_TYPES = ('debug', 'release')
 
+    CONTENT_SHELL_NAME = 'content_shell'
+
     @classmethod
     def determine_full_port_name(cls, host, options, port_name):
         """Return a fully-specified port name that can be used to construct objects."""
         # Subclasses will usually override this.
-        options = options or {}
         assert port_name.startswith(cls.port_name)
-        if getattr(options, 'webkit_test_runner', False) and not '-wk2' in port_name:
-            return port_name + '-wk2'
         return port_name
 
     def __init__(self, host, port_name, options=None, **kwargs):
@@ -109,9 +109,6 @@
         # options defined on it.
         self._options = options or optparse.Values()
 
-        if self._name and '-wk2' in self._name:
-            self._options.webkit_test_runner = True
-
         self.host = host
         self._executive = host.executive
         self._filesystem = host.filesystem
@@ -141,7 +138,7 @@
         self._wdiff_available = None
 
         # FIXME: prettypatch.py knows this path, why is it copied here?
-        self._pretty_patch_path = self.path_from_webkit_base("Websites", "bugs.webkit.org", "PrettyPatch", "prettify.rb")
+        self._pretty_patch_path = self.path_from_webkit_base("Tools", "Scripts", "webkitruby", "PrettyPatch", "prettify.rb")
         self._pretty_patch_available = None
 
         if not hasattr(options, 'configuration') or not options.configuration:
@@ -151,7 +148,12 @@
         self._results_directory = None
         self._root_was_set = hasattr(options, 'root') and options.root
 
+    def buildbot_archives_baselines(self):
+        return True
+
     def additional_drt_flag(self):
+        if self.driver_name() == self.CONTENT_SHELL_NAME:
+            return ['--dump-render-tree']
         return []
 
     def supports_per_test_timeout(self):
@@ -162,10 +164,6 @@
         return False
 
     def default_timeout_ms(self):
-        if self.get_option('webkit_test_runner'):
-            # Add some more time to WebKitTestRunner because it needs to syncronise the state
-            # with the web process and we want to detect if there is a problem with that in the driver.
-            return 80 * 1000
         return 35 * 1000
 
     def driver_stop_timeout(self):
@@ -223,8 +221,6 @@
         """Return a list of absolute paths to directories to search under for
         baselines. The directories are searched in order."""
         search_paths = []
-        if self.get_option('webkit_test_runner'):
-            search_paths.append(self._wk2_port_name())
         search_paths.append(self.name())
         if self.name() != self.port_name:
             search_paths.append(self.port_name)
@@ -242,7 +238,7 @@
         """This routine is used to ensure that the build is up to date
         and all the needed binaries are present."""
         # If we're using a pre-built copy of WebKit (--root), we assume it also includes a build of DRT.
-        if not self._root_was_set and self.get_option('build') and not self._build_driver():
+        if not self._root_was_set and self.get_option('build'):
             return False
         if not self._check_driver():
             return False
@@ -398,8 +394,8 @@
     def driver_name(self):
         if self.get_option('driver_name'):
             return self.get_option('driver_name')
-        if self.get_option('webkit_test_runner'):
-            return 'WebKitTestRunner'
+        if self.get_option('content_shell'):
+            return self.CONTENT_SHELL_NAME
         return 'DumpRenderTree'
 
     def expected_baselines_by_extension(self, test_name):
@@ -421,7 +417,7 @@
 
     def baseline_extensions(self):
         """Returns a tuple of all of the non-reftest baseline extensions we use. The extensions include the leading '.'."""
-        return ('.wav', '.webarchive', '.txt', '.png')
+        return ('.wav', '.txt', '.png')
 
     def expected_baselines(self, test_name, suffix, all_baselines=False):
         """Given a test name, finds where the baseline results are located.
@@ -538,9 +534,7 @@
         # baselines as a binary string, too.
         baseline_path = self.expected_filename(test_name, '.txt')
         if not self._filesystem.exists(baseline_path):
-            baseline_path = self.expected_filename(test_name, '.webarchive')
-            if not self._filesystem.exists(baseline_path):
-                return None
+            return None
         text = self._filesystem.read_binary_file(baseline_path)
         return text.replace("\r\n", "\n")
 
@@ -605,11 +599,11 @@
     def _real_tests(self, paths):
         # When collecting test cases, skip these directories
         skipped_directories = set(['.svn', '_svn', 'resources', 'script-tests', 'reference', 'reftest'])
-        files = find_files.find(self._filesystem, self.layout_tests_dir(), paths, skipped_directories, Port._is_test_file, self.test_key)
+        files = find_files.find(self._filesystem, self.layout_tests_dir(), paths, skipped_directories, Port.is_test_file, self.test_key)
         return [self.relative_test_filename(f) for f in files]
 
     # When collecting test cases, we include any file with these extensions.
-    _supported_file_extensions = set(['.html', '.shtml', '.xml', '.xhtml', '.pl',
+    _supported_file_extensions = set(['.html', '.xml', '.xhtml', '.pl',
                                       '.htm', '.php', '.svg', '.mht'])
 
     @staticmethod
@@ -630,7 +624,7 @@
         return extension in Port._supported_file_extensions
 
     @staticmethod
-    def _is_test_file(filesystem, dirname, filename):
+    def is_test_file(filesystem, dirname, filename):
         return Port._has_supported_extension(filesystem, filename) and not Port.is_reference_html_file(filesystem, dirname, filename)
 
     def test_key(self, test_name):
@@ -809,22 +803,6 @@
     def path_to_generic_test_expectations_file(self):
         return self._filesystem.join(self.layout_tests_dir(), 'TestExpectations')
 
-    @memoized
-    def path_to_test_expectations_file(self):
-        """Update the test expectations to the passed-in string.
-
-        This is used by the rebaselining tool. Raises NotImplementedError
-        if the port does not use expectations files."""
-
-        # FIXME: We need to remove this when we make rebaselining work with multiple files and just generalize expectations_files().
-
-        # test_expectations are always in mac/ not mac-leopard/ by convention, hence we use port_name instead of name().
-        port_name = self.port_name
-        if port_name.startswith('chromium'):
-            port_name = 'chromium'
-
-        return self._filesystem.join(self._webkit_baseline_path(port_name), 'TestExpectations')
-
     def relative_test_filename(self, filename):
         """Returns a test_name a relative unix-style path for a filename under the LayoutTests
         directory. Ports may legitimately return abspaths here if no relpath makes sense."""
@@ -1043,9 +1021,8 @@
         raise NotImplementedError
 
     def uses_test_expectations_file(self):
-        # This is different from checking test_expectations() is None, because
-        # some ports have Skipped files which are returned as part of test_expectations().
-        return self._filesystem.exists(self.path_to_test_expectations_file())
+        # FIXME: Remove this method.
+        return True
 
     def warn_if_bug_missing_in_test_expectations(self):
         return False
@@ -1061,6 +1038,12 @@
         # FIXME: rename this to test_expectations() once all the callers are updated to know about the ordered dict.
         expectations = OrderedDict()
 
+        ignore_flaky_tests = self.get_option('ignore_flaky_tests')
+        if ignore_flaky_tests == 'very-flaky' or ignore_flaky_tests == 'maybe-flaky':
+            ignore_only_very_flaky = self.get_option('ignore_flaky_tests') == 'very-flaky'
+            full_port_name = self.determine_full_port_name(self.host, self._options, self.port_name)
+            expectations['autogenerated'] = BotTestExpectations(ignore_only_very_flaky).expectations_string(full_port_name)
+
         for path in self.expectations_files():
             if self._filesystem.exists(path):
                 expectations[path] = self._filesystem.read_text_file(path)
@@ -1083,11 +1066,6 @@
         if non_wk2_name != self.port_name:
             search_paths.append(non_wk2_name)
 
-        if self.get_option('webkit_test_runner'):
-            # Because nearly all of the skipped tests for WebKit 2 are due to cross-platform
-            # issues, all wk2 ports share a skipped list under platform/wk2.
-            search_paths.extend(["wk2", self._wk2_port_name()])
-
         search_paths.extend(self.get_option("additional_platform_directory", []))
 
         return [self._filesystem.join(self._webkit_baseline_path(d), 'TestExpectations') for d in search_paths]
@@ -1204,13 +1182,7 @@
         """Returns the full path to the apache binary.
 
         This is needed only by ports that use the apache_http_server module."""
-        # The Apache binary path can vary depending on OS and distribution
-        # See http://wiki.apache.org/httpd/DistrosDefaultLayout
-        for path in ["/usr/sbin/httpd", "/usr/sbin/apache2"]:
-            if self._filesystem.exists(path):
-                return path
-        _log.error("Could not find apache. Not installed or unknown path.")
-        return None
+        raise NotImplementedError('Port._path_to_apache')
 
     # FIXME: This belongs on some platform abstraction instead of Port.
     def _is_redhat_based(self):
@@ -1325,7 +1297,7 @@
     def _generate_all_test_configurations(self):
         """Generates a list of TestConfiguration instances, representing configurations
         for a platform across all OSes, architectures, build and graphics types."""
-        raise NotImplementedError('Port._generate_test_configurations')
+        raise NotImplementedError('Port._generate_all_test_configurations')
 
     def _driver_class(self):
         """Returns the port's driver implementation."""
@@ -1431,28 +1403,6 @@
         _log.debug('Output of %s:\n%s' % (run_script_command, output))
         return output
 
-    def _build_driver(self):
-        environment = self.host.copy_current_environment()
-        environment.disable_gcc_smartquotes()
-        env = environment.to_dictionary()
-
-        # FIXME: We build both DumpRenderTree and WebKitTestRunner for
-        # WebKitTestRunner runs because DumpRenderTree still includes
-        # the DumpRenderTreeSupport module and the TestNetscapePlugin.
-        # These two projects should be factored out into their own
-        # projects.
-        try:
-            self._run_script("build-dumprendertree", args=self._build_driver_flags(), env=env)
-            if self.get_option('webkit_test_runner'):
-                self._run_script("build-webkittestrunner", args=self._build_driver_flags(), env=env)
-        except ScriptError, e:
-            _log.error(e.message_with_output(output_limit=None))
-            return False
-        return True
-
-    def _build_driver_flags(self):
-        return []
-
     def _tests_for_other_platforms(self):
         # By default we will skip any directory under LayoutTests/platform
         # that isn't in our baseline search path (this mirrors what
@@ -1513,7 +1463,6 @@
         return {
             "MathMLElement": ["mathml"],
             "GraphicsLayer": ["compositing"],
-            "WebCoreHas3DRendering": ["animations/3d", "transforms/3d"],
             "WebGLShader": ["fast/canvas/webgl", "compositing/webgl", "http/tests/canvas/webgl", "webgl"],
             "MHTMLArchive": ["mhtml"],
             "CSSVariableValue": ["fast/css/variables", "inspector/styles/variables"],
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/base_unittest.py b/Tools/Scripts/webkitpy/layout_tests/port/base_unittest.py
index 7685695..393076f 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/base_unittest.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/base_unittest.py
@@ -293,14 +293,6 @@
         self.assertEqual(environment['FOO'], 'BAR')
         self.assertEqual(environment['BAR'], 'FOO')
 
-    def test_uses_test_expectations_file(self):
-        port = self.make_port(port_name='foo')
-        port.port_name = 'foo'
-        port.path_to_test_expectations_file = lambda: '/mock-results/TestExpectations'
-        self.assertFalse(port.uses_test_expectations_file())
-        port._filesystem = MockFileSystem({'/mock-results/TestExpectations': ''})
-        self.assertTrue(port.uses_test_expectations_file())
-
     def test_find_no_paths_specified(self):
         port = self.make_port(with_tests=True)
         layout_tests_dir = port.layout_tests_dir()
@@ -329,23 +321,22 @@
 
     def test_is_test_file(self):
         filesystem = MockFileSystem()
-        self.assertTrue(Port._is_test_file(filesystem, '', 'foo.html'))
-        self.assertTrue(Port._is_test_file(filesystem, '', 'foo.shtml'))
-        self.assertTrue(Port._is_test_file(filesystem, '', 'foo.svg'))
-        self.assertTrue(Port._is_test_file(filesystem, '', 'test-ref-test.html'))
-        self.assertFalse(Port._is_test_file(filesystem, '', 'foo.png'))
-        self.assertFalse(Port._is_test_file(filesystem, '', 'foo-expected.html'))
-        self.assertFalse(Port._is_test_file(filesystem, '', 'foo-expected.svg'))
-        self.assertFalse(Port._is_test_file(filesystem, '', 'foo-expected.xht'))
-        self.assertFalse(Port._is_test_file(filesystem, '', 'foo-expected-mismatch.html'))
-        self.assertFalse(Port._is_test_file(filesystem, '', 'foo-expected-mismatch.svg'))
-        self.assertFalse(Port._is_test_file(filesystem, '', 'foo-expected-mismatch.xhtml'))
-        self.assertFalse(Port._is_test_file(filesystem, '', 'foo-ref.html'))
-        self.assertFalse(Port._is_test_file(filesystem, '', 'foo-notref.html'))
-        self.assertFalse(Port._is_test_file(filesystem, '', 'foo-notref.xht'))
-        self.assertFalse(Port._is_test_file(filesystem, '', 'foo-ref.xhtml'))
-        self.assertFalse(Port._is_test_file(filesystem, '', 'ref-foo.html'))
-        self.assertFalse(Port._is_test_file(filesystem, '', 'notref-foo.xhr'))
+        self.assertTrue(Port.is_test_file(filesystem, '', 'foo.html'))
+        self.assertTrue(Port.is_test_file(filesystem, '', 'foo.svg'))
+        self.assertTrue(Port.is_test_file(filesystem, '', 'test-ref-test.html'))
+        self.assertFalse(Port.is_test_file(filesystem, '', 'foo.png'))
+        self.assertFalse(Port.is_test_file(filesystem, '', 'foo-expected.html'))
+        self.assertFalse(Port.is_test_file(filesystem, '', 'foo-expected.svg'))
+        self.assertFalse(Port.is_test_file(filesystem, '', 'foo-expected.xht'))
+        self.assertFalse(Port.is_test_file(filesystem, '', 'foo-expected-mismatch.html'))
+        self.assertFalse(Port.is_test_file(filesystem, '', 'foo-expected-mismatch.svg'))
+        self.assertFalse(Port.is_test_file(filesystem, '', 'foo-expected-mismatch.xhtml'))
+        self.assertFalse(Port.is_test_file(filesystem, '', 'foo-ref.html'))
+        self.assertFalse(Port.is_test_file(filesystem, '', 'foo-notref.html'))
+        self.assertFalse(Port.is_test_file(filesystem, '', 'foo-notref.xht'))
+        self.assertFalse(Port.is_test_file(filesystem, '', 'foo-ref.xhtml'))
+        self.assertFalse(Port.is_test_file(filesystem, '', 'ref-foo.html'))
+        self.assertFalse(Port.is_test_file(filesystem, '', 'notref-foo.xhr'))
 
     def test_parse_reftest_list(self):
         port = self.make_port(with_tests=True)
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/builders.py b/Tools/Scripts/webkitpy/layout_tests/port/builders.py
index cdc9e5b..63621f8 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/builders.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/builders.py
@@ -58,52 +58,10 @@
     "WebKit Mac10.7": {"port_name": "chromium-mac-lion", "is_debug": False},
     "WebKit Mac10.7 (dbg)": {"port_name": "chromium-mac-lion", "is_debug": True},
     "WebKit Mac10.8": {"port_name": "chromium-mac-mountainlion", "is_debug": False},
-
-    # These builders are on build.webkit.org.
-    "Apple MountainLion Release WK1 (Tests)": {"port_name": "mac-mountainlion", "is_debug": False, "rebaseline_override_dir": "mac"},
-    "Apple MountainLion Debug WK1 (Tests)": {"port_name": "mac-mountainlion", "is_debug": True, "rebaseline_override_dir": "mac"},
-    "Apple MountainLion Release WK2 (Tests)": {"port_name": "mac-mountainlion-wk2", "is_debug": False, "rebaseline_override_dir": "mac"},
-    "Apple MountainLion Debug WK2 (Tests)": {"port_name": "mac-mountainlion-wk2", "is_debug": True, "rebaseline_override_dir": "mac"},
-    "Apple Lion Release WK1 (Tests)": {"port_name": "mac-lion", "is_debug": False},
-    "Apple Lion Debug WK1 (Tests)": {"port_name": "mac-lion", "is_debug": True},
-    "Apple Lion Release WK2 (Tests)": {"port_name": "mac-lion-wk2", "is_debug": False},
-    "Apple Lion Debug WK2 (Tests)": {"port_name": "mac-lion-wk2", "is_debug": True},
-
-    "Apple Win XP Debug (Tests)": {"port_name": "win-xp", "is_debug": True},
-    # FIXME: Remove rebaseline_override_dir once there is an Apple buildbot that corresponds to platform/win.
-    "Apple Win 7 Release (Tests)": {"port_name": "win-7sp0", "is_debug": False, "rebaseline_override_dir": "win"},
-
-    "GTK Linux 32-bit Release": {"port_name": "gtk", "is_debug": False},
-    "GTK Linux 64-bit Debug": {"port_name": "gtk", "is_debug": True},
-    "GTK Linux 64-bit Release": {"port_name": "gtk", "is_debug": False},
-    "GTK Linux 64-bit Release WK2 (Tests)": {"port_name": "gtk-wk2", "is_debug": False},
-
-    # FIXME: Remove rebaseline_override_dir once there are Qt bots for all the platform/qt-* directories.
-    "Qt Linux Release": {"port_name": "qt-linux", "is_debug": False, "rebaseline_override_dir": "qt"},
-
-    "EFL Linux 64-bit Release": {"port_name": "efl", "is_debug": False},
-    "EFL Linux 64-bit Release WK2": {"port_name": "efl-wk2", "is_debug": False},
-    "EFL Linux 64-bit Debug WK2": {"port_name": "efl-wk2", "is_debug": True},
-}
-
-
-_fuzzy_matches = {
-    # These builders are on build.webkit.org.
-    r"SnowLeopard": "mac-snowleopard",
-    r"Apple Lion": "mac-lion",
-    r"Windows": "win",
-    r"GTK": "gtk",
-    r"Qt": "qt",
-    r"Chromium Mac": "chromium-mac",
-    r"Chromium Linux": "chromium-linux",
-    r"Chromium Win": "chromium-win",
 }
 
 
 _ports_without_builders = [
-    "qt-mac",
-    "qt-win",
-    "qt-wk2",
     # FIXME: Move to _extact_matches.
     "chromium-android",
 ]
@@ -130,12 +88,7 @@
 
 
 def port_name_for_builder_name(builder_name):
-    if builder_name in _exact_matches:
-        return _exact_matches[builder_name]["port_name"]
-
-    for regexp, port_name in _fuzzy_matches.items():
-        if re.match(regexp, builder_name):
-            return port_name
+    return _exact_matches[builder_name]["port_name"]
 
 
 def builder_name_for_port_name(target_port_name):
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/chromium.py b/Tools/Scripts/webkitpy/layout_tests/port/chromium.py
index aa4d30c..ce0564d 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/chromium.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/chromium.py
@@ -60,7 +60,10 @@
         ('lucid', 'x86_64'),
         # FIXME: Technically this should be 'arm', but adding a third architecture type breaks TestConfigurationConverter.
         # If we need this to be 'arm' in the future, then we first have to fix TestConfigurationConverter.
-        ('icecreamsandwich', 'x86'))
+        # FIXME: Until we have an android bot to do rebaselines, we need to not include it in ALL_SYSTEMS
+        # because otherwise rebaselines won't correclty remove lines from TestExpectations.
+        #('icecreamsandwich', 'x86'),
+        )
 
     ALL_BASELINE_VARIANTS = [
         'chromium-mac-mountainlion', 'chromium-mac-lion', 'chromium-mac-snowleopard',
@@ -81,6 +84,10 @@
     FALLBACK_PATHS = {}
 
     @classmethod
+    def latest_platform_fallback_path(cls):
+        return cls.FALLBACK_PATHS[cls.SUPPORTED_VERSIONS[-1]]
+
+    @classmethod
     def _static_build_path(cls, filesystem, build_directory, chromium_base, webkit_base, configuration, comps):
         if build_directory:
             return filesystem.join(build_directory, configuration, *comps)
@@ -122,6 +129,15 @@
     def is_chromium(self):
         return True
 
+    def default_child_processes(self):
+        default_count = super(ChromiumPort, self).default_child_processes()
+        # Since content_shell spawns multiple subprocesses, we need to reduce
+        # the number of running processes.
+        if self.driver_name() == self.CONTENT_SHELL_NAME:
+            default_count = int(.75 * default_count)
+
+        return default_count
+
     def default_max_locked_shards(self):
         """Return the number of "locked" shards to run in parallel (like the http tests)."""
         max_locked_shards = int(self.default_child_processes()) / 4
@@ -351,12 +367,9 @@
         return True
 
     def _port_specific_expectations_files(self):
-        paths = [self.path_to_test_expectations_file()]
-        skia_expectations_path = self.path_from_chromium_base('skia', 'skia_test_expectations.txt')
-        # FIXME: we should probably warn if this file is missing in some situations.
-        # See the discussion in webkit.org/b/97699.
-        if self._filesystem.exists(skia_expectations_path):
-            paths.append(skia_expectations_path)
+        paths = []
+        paths.append(self.path_from_chromium_base('skia', 'skia_test_expectations.txt'))
+        paths.append(self._filesystem.join(self.layout_tests_dir(), 'NeverFixTests'))
 
         builder_name = self.get_option('builder_name', 'DUMMY_BUILDER_NAME')
         if builder_name == 'DUMMY_BUILDER_NAME' or '(deps)' in builder_name or builder_name in self.try_builder_names:
@@ -388,31 +401,31 @@
 
     def virtual_test_suites(self):
         return [
-            VirtualTestSuite('platform/chromium/virtual/gpu/fast/canvas',
+            VirtualTestSuite('virtual/gpu/fast/canvas',
                              'fast/canvas',
                              ['--enable-accelerated-2d-canvas']),
-            VirtualTestSuite('platform/chromium/virtual/gpu/canvas/philip',
+            VirtualTestSuite('virtual/gpu/canvas/philip',
                              'canvas/philip',
                              ['--enable-accelerated-2d-canvas']),
-            VirtualTestSuite('platform/chromium/virtual/threaded/compositing/visibility',
+            VirtualTestSuite('virtual/threaded/compositing/visibility',
                              'compositing/visibility',
                              ['--enable-threaded-compositing']),
-            VirtualTestSuite('platform/chromium/virtual/threaded/compositing/webgl',
+            VirtualTestSuite('virtual/threaded/compositing/webgl',
                              'compositing/webgl',
                              ['--enable-threaded-compositing']),
-            VirtualTestSuite('platform/chromium/virtual/gpu/fast/hidpi',
+            VirtualTestSuite('virtual/gpu/fast/hidpi',
                              'fast/hidpi',
                              ['--force-compositing-mode']),
-            VirtualTestSuite('platform/chromium/virtual/softwarecompositing',
+            VirtualTestSuite('virtual/softwarecompositing',
                              'compositing',
                              ['--enable-software-compositing']),
-            VirtualTestSuite('platform/chromium/virtual/deferred/fast/images',
+            VirtualTestSuite('virtual/deferred/fast/images',
                              'fast/images',
                              ['--enable-deferred-image-decoding', '--enable-per-tile-painting', '--force-compositing-mode']),
-            VirtualTestSuite('platform/chromium/virtual/gpu/compositedscrolling/overflow',
+            VirtualTestSuite('virtual/gpu/compositedscrolling/overflow',
                              'compositing/overflow',
                              ['--enable-accelerated-overflow-scroll']),
-            VirtualTestSuite('platform/chromium/virtual/gpu/compositedscrolling/scrollbars',
+            VirtualTestSuite('virtual/gpu/compositedscrolling/scrollbars',
                              'scrollbars',
                              ['--enable-accelerated-overflow-scroll']),
         ]
@@ -429,8 +442,8 @@
 
     def _build_path_with_configuration(self, configuration, *comps):
         # Note that we don't implement --root or do the option caching that the
-        # base class does, because chromium doesn't use 'webkit-build-directory' and
-        # hence finding the right directory is relatively fast.
+        # base class does, because finding the right directory is relatively
+        # fast.
         configuration = configuration or self.get_option('configuration')
         return self._static_build_path(self._filesystem, self.get_option('build_directory'),
             self.path_from_chromium_base(), self.path_from_webkit_base(), configuration, comps)
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py b/Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py
index b095463..046317b 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py
@@ -36,6 +36,7 @@
 import time
 
 from webkitpy.layout_tests.port import chromium
+from webkitpy.layout_tests.port import chromium_linux
 from webkitpy.layout_tests.port import driver
 from webkitpy.layout_tests.port import factory
 from webkitpy.layout_tests.port import server_process
@@ -47,26 +48,18 @@
 # source root directory of Chromium.
 # This path is defined in Chromium's base/test/test_support_android.cc.
 DEVICE_SOURCE_ROOT_DIR = '/data/local/tmp/'
-COMMAND_LINE_FILE = DEVICE_SOURCE_ROOT_DIR + 'chrome-native-tests-command-line'
 
-# The directory to put tools and resources of DumpRenderTree.
-# If change this, must also change Tools/DumpRenderTree/chromium/TestShellAndroid.cpp
-# and Chromium's webkit/support/platform_support_android.cc.
-DEVICE_DRT_DIR = DEVICE_SOURCE_ROOT_DIR + 'drt/'
-DEVICE_FORWARDER_PATH = DEVICE_DRT_DIR + 'forwarder'
-
-# Path on the device where the test framework will create the fifo pipes.
-DEVICE_FIFO_PATH = '/data/data/org.chromium.native_test/files/'
-
-DRT_APP_PACKAGE = 'org.chromium.native_test'
-DRT_ACTIVITY_FULL_NAME = DRT_APP_PACKAGE + '/.ChromeNativeTestActivity'
-DRT_APP_CACHE_DIR = DEVICE_DRT_DIR + 'cache/'
-DRT_LIBRARY_NAME = 'libDumpRenderTree.so'
+# The layout tests directory on device, which has two usages:
+# 1. as a virtual path in file urls that will be bridged to HTTP.
+# 2. pointing to some files that are pushed to the device for tests that
+# don't work on file-over-http (e.g. blob protocol tests).
+DEVICE_WEBKIT_BASE_DIR = DEVICE_SOURCE_ROOT_DIR + 'third_party/WebKit/'
+DEVICE_LAYOUT_TESTS_DIR = DEVICE_WEBKIT_BASE_DIR + 'LayoutTests/'
 
 SCALING_GOVERNORS_PATTERN = "/sys/devices/system/cpu/cpu*/cpufreq/scaling_governor"
 KPTR_RESTRICT_PATH = "/proc/sys/kernel/kptr_restrict"
 
-# All the test cases are still served to DumpRenderTree through file protocol,
+# All the test cases are still served to the test runner through file protocol,
 # but we use a file-to-http feature to bridge the file request to host's http
 # server to get the real test files and corresponding resources.
 # See webkit/support/platform_support_android.cc for the other side of this bridge.
@@ -82,10 +75,9 @@
 MS_TRUETYPE_FONTS_DIR = '/usr/share/fonts/truetype/msttcorefonts/'
 MS_TRUETYPE_FONTS_PACKAGE = 'ttf-mscorefonts-installer'
 
-# Timeout in seconds to wait for start/stop of DumpRenderTree.
-DRT_START_STOP_TIMEOUT_SECS = 10
+# Timeout in seconds to wait for starting/stopping the driver.
+DRIVER_START_STOP_TIMEOUT_SECS = 10
 
-# List of fonts that layout tests expect, copied from DumpRenderTree/chromium/TestShellX11.cpp.
 HOST_FONT_FILES = [
     [[MS_TRUETYPE_FONTS_DIR], 'Arial.ttf', MS_TRUETYPE_FONTS_PACKAGE],
     [[MS_TRUETYPE_FONTS_DIR], 'Arial_Bold.ttf', MS_TRUETYPE_FONTS_PACKAGE],
@@ -126,15 +118,6 @@
     [['/usr/share/fonts/truetype/ttf-indic-fonts-core/', '/usr/share/fonts/truetype/ttf-punjabi-fonts/'], 'lohit_pa.ttf', 'ttf-indic-fonts-core'],
 ]
 
-DEVICE_FONTS_DIR = DEVICE_DRT_DIR + 'fonts/'
-
-# The layout tests directory on device, which has two usages:
-# 1. as a virtual path in file urls that will be bridged to HTTP.
-# 2. pointing to some files that are pushed to the device for tests that
-# don't work on file-over-http (e.g. blob protocol tests).
-DEVICE_WEBKIT_BASE_DIR = DEVICE_SOURCE_ROOT_DIR + 'third_party/WebKit/'
-DEVICE_LAYOUT_TESTS_DIR = DEVICE_WEBKIT_BASE_DIR + 'LayoutTests/'
-
 # Test resources that need to be accessed as files directly.
 # Each item can be the relative path of a directory or a file.
 TEST_RESOURCES_TO_PUSH = [
@@ -158,18 +141,176 @@
 MD5SUM_DEVICE_FILE_NAME = 'md5sum_bin'
 MD5SUM_DEVICE_PATH = '/data/local/tmp/' + MD5SUM_DEVICE_FILE_NAME
 
+# Shared pieces of information for the two supported test runners.
+class SharedDriverDetails(object):
+    def device_cache_directory(self):
+        return self.device_directory() + 'cache/'
+    def device_fonts_directory(self):
+        return self.device_directory() + 'fonts/'
+    def device_forwarder_path(self):
+        return self.device_directory() + 'forwarder'
+    def device_fifo_directory(self):
+        return '/data/data/' + self.package_name() + '/files/'
+
+# Information required when running layout tests using DumpRenderTree as the test runner.
+class DumpRenderTreeDriverDetails(SharedDriverDetails):
+    def apk_name(self):
+        return 'DumpRenderTree_apk/DumpRenderTree-debug.apk'
+    def package_name(self):
+        return 'org.chromium.native_test'
+    def activity_name(self):
+        return self.package_name() + '/.ChromeNativeTestActivity'
+    def library_name(self):
+        return 'libDumpRenderTree.so'
+    def additional_resources(self):
+        return ['DumpRenderTree.pak', 'DumpRenderTree_resources']
+    def command_line_file(self):
+        return '/data/local/tmp/chrome-native-tests-command-line'
+    def additional_command_line_flags(self):
+        return ['--create-stdin-fifo', '--separate-stderr-fifo']
+    def device_directory(self):
+        return DEVICE_SOURCE_ROOT_DIR + 'drt/'
+
+# Information required when running layout tests using content_shell as the test runner.
+class ContentShellDriverDetails(SharedDriverDetails):
+    def apk_name(self):
+        return 'apks/ContentShell.apk'
+    def package_name(self):
+        return 'org.chromium.content_shell_apk'
+    def activity_name(self):
+        return self.package_name() + '/.ContentShellActivity'
+    def library_name(self):
+        return 'libcontent_shell_content_view.so'
+    def additional_resources(self):
+        return ['content_resources.pak', 'shell_resources.pak']
+    def command_line_file(self):
+        return '/data/local/tmp/content-shell-command-line'
+    def additional_command_line_flags(self):
+        return []
+    def device_directory(self):
+        return DEVICE_SOURCE_ROOT_DIR + 'content_shell/'
+
+# The AndroidCommands class encapsulates commands to communicate with an attached device.
+class AndroidCommands(object):
+    _adb_command_path = None
+    _adb_command_path_options = []
+
+    def __init__(self, executive, device_serial):
+        self._executive = executive
+        self._device_serial = device_serial
+
+    # Local public methods.
+
+    def file_exists(self, full_path):
+        assert full_path.startswith('/')
+        return self.run(['shell', 'ls', full_path]).strip() == full_path
+
+    def push(self, host_path, device_path, ignore_error=False):
+        return self.run(['push', host_path, device_path], ignore_error=ignore_error)
+
+    def pull(self, device_path, host_path, ignore_error=False):
+        return self.run(['pull', device_path, host_path], ignore_error=ignore_error)
+
+    def restart_as_root(self):
+        output = self.run(['root'])
+        if 'adbd is already running as root' in output:
+            return
+
+        elif not 'restarting adbd as root' in output:
+            self._log_error('Unrecognized output from adb root: %s' % output)
+
+        self.run(['wait-for-device'])
+
+    def run(self, command, ignore_error=False):
+        self._log_debug('Run adb command: ' + str(command))
+        if ignore_error:
+            error_handler = self._executive.ignore_error
+        else:
+            error_handler = None
+
+        result = self._executive.run_command(self.adb_command() + command,
+                error_handler=error_handler)
+
+        # We limit the length to avoid outputting too verbose commands, such as "adb logcat".
+        self._log_debug('Run adb result: ' + result[:80])
+        return result
+
+    def get_serial(self):
+        return self._device_serial
+
+    def adb_command(self):
+        return [AndroidCommands.adb_command_path(self._executive), '-s', self._device_serial]
+
+    @staticmethod
+    def set_adb_command_path_options(paths):
+        AndroidCommands._adb_command_path_options = paths
+
+    @staticmethod
+    def adb_command_path(executive):
+        if AndroidCommands._adb_command_path:
+            return AndroidCommands._adb_command_path
+
+        assert AndroidCommands._adb_command_path_options, 'No commands paths have been set to look for the "adb" command.'
+
+        command_path = None
+        command_version = None
+        for path_option in AndroidCommands._adb_command_path_options:
+            path_version = AndroidCommands._determine_adb_version(path_option, executive)
+            if not path_version:
+                continue
+            if command_version != None and path_version < command_version:
+                continue
+
+            command_path = path_option
+            command_version = path_version
+
+        assert command_path, 'Unable to locate the "adb" command. Are you using an Android checkout of Chromium?'
+
+        AndroidCommands._adb_command_path = command_path
+        return command_path
+
+    @staticmethod
+    def get_devices(executive):
+        re_device = re.compile('^([a-zA-Z0-9_:.-]+)\tdevice$', re.MULTILINE)
+        result = executive.run_command([AndroidCommands.adb_command_path(executive), 'devices'],
+                error_handler=executive.ignore_error)
+        devices = re_device.findall(result)
+        if not devices:
+            raise AssertionError('No devices attached. Result of "adb devices": %s' % result)
+
+        return devices
+
+    # Local private methods.
+
+    def _log_error(self, message):
+        _log.error('[%s] %s' % (self._device_serial, message))
+
+    def _log_debug(self, message):
+        _log.debug('[%s] %s' % (self._device_serial, message))
+
+    @staticmethod
+    def _determine_adb_version(adb_command_path, executive):
+        re_version = re.compile('^.*version ([\d\.]+)$')
+        try:
+            output = executive.run_command([adb_command_path, 'version'], error_handler=executive.ignore_error)
+        except OSError:
+            return None
+
+        result = re_version.match(output)
+        if not output or not result:
+            return None
+
+        return [int(n) for n in result.group(1).split('.')]
+
 class ChromiumAndroidPort(chromium.ChromiumPort):
     port_name = 'chromium-android'
 
     # Avoid initializing the adb path [worker count]+1 times by storing it as a static member.
     _adb_path = None
 
-    FALLBACK_PATHS = [
-        'chromium-android',
-        'chromium-linux',
-        'chromium-win',
-        'chromium',
-    ]
+    SUPPORTED_VERSIONS = ('android')
+
+    FALLBACK_PATHS = { 'android': [ 'chromium-android' ] + chromium_linux.ChromiumLinuxPort.latest_platform_fallback_path() }
 
     def __init__(self, host, port_name, **kwargs):
         super(ChromiumAndroidPort, self).__init__(host, port_name, **kwargs)
@@ -180,18 +321,39 @@
         self._host_port = factory.PortFactory(host).get('chromium', **kwargs)
         self._server_process_constructor = self._android_server_process_constructor
 
-        if hasattr(self._options, 'adb_device'):
-            self._devices = self._options.adb_device
+        if self.driver_name() == 'content_shell':
+            self._driver_details = ContentShellDriverDetails()
+        else:
+            self._driver_details = DumpRenderTreeDriverDetails()
+
+        if hasattr(self._options, 'adb_device') and len(self._options.adb_device):
+            self._devices = [self._options.adb_device]
         else:
             self._devices = []
 
-    @staticmethod
-    def _android_server_process_constructor(port, server_name, cmd_line, env=None):
-        return server_process.ServerProcess(port, server_name, cmd_line, env,
-                                            universal_newlines=True, treat_no_data_as_crash=True)
+        AndroidCommands.set_adb_command_path_options(['adb',
+            self.path_from_chromium_base('third_party', 'android_tools', 'sdk', 'platform-tools', 'adb')])
+
+    # Local public methods.
+    def get_device_serial(self, worker_number):
+        if not self._devices:
+            self._devices = AndroidCommands.get_devices(self._executive)
+        if worker_number >= len(self._devices):
+            raise AssertionError('Worker number exceeds available number of devices')
+        return self._devices[worker_number]
+
+    def path_to_forwarder(self):
+        return self._build_path('forwarder')
+
+    def path_to_md5sum(self):
+        return self._build_path(MD5SUM_DEVICE_FILE_NAME)
+
+    # Overridden public methods.
+    def buildbot_archives_baselines(self):
+        return False
 
     def additional_drt_flag(self):
-        # The Chromium port for Android always uses the hardware GPU path.
+        # Chromium for Android always uses the hardware GPU path.
         return ['--encode-binary', '--enable-hardware-gpu',
                 '--force-compositing-mode',
                 '--enable-accelerated-fixed-position']
@@ -203,14 +365,17 @@
         return 10 * 1000
 
     def driver_stop_timeout(self):
-        # DRT doesn't respond to closing stdin, so we might as well stop the driver immediately.
+        # The driver doesn't respond to closing stdin, so we might as well stop the driver immediately.
         return 0.0
 
     def default_child_processes(self):
-        return len(self._get_devices())
+        if self._devices:
+            return len(self._devices)
+
+        return len(AndroidCommands.get_devices(self._executive))
 
     def default_baseline_search_path(self):
-        return map(self._webkit_baseline_path, self.FALLBACK_PATHS)
+        return map(self._webkit_baseline_path, self.FALLBACK_PATHS['android'])
 
     def check_wdiff(self, logging=True):
         return self._host_port.check_wdiff(logging)
@@ -239,16 +404,9 @@
                 return False
         return True
 
-    def _port_specific_expectations_files(self):
-        # LayoutTests/platform/chromium-android/TestExpectations should contain only the rules to
-        # skip tests for the features not supported or not testable on Android.
-        # Other rules should be in LayoutTests/platform/chromium/TestExpectations.
-        android_expectations_file = self.path_from_webkit_base('LayoutTests', 'platform', 'chromium-android', 'TestExpectations')
-        return super(ChromiumAndroidPort, self)._port_specific_expectations_files() + [android_expectations_file]
-
     def requires_http_server(self):
         """Chromium Android runs tests on devices, and uses the HTTP server to
-        serve the actual layout tests to DumpRenderTree."""
+        serve the actual layout tests to the test driver."""
         return True
 
     def start_http_server(self, additional_dirs=None, number_of_servers=0):
@@ -261,41 +419,23 @@
     def create_driver(self, worker_number, no_timeout=False):
         # We don't want the default DriverProxy which is not compatible with our driver.
         # See comments in ChromiumAndroidDriver.start().
-        return ChromiumAndroidDriver(self, worker_number, pixel_tests=self.get_option('pixel_tests'),
-                                     # Force no timeout to avoid DumpRenderTree timeouts before NRWT.
+        return ChromiumAndroidDriver(self, worker_number, pixel_tests=self.get_option('pixel_tests'), driver_details=self._driver_details,
+                                     # Force no timeout to avoid test driver timeouts before NRWT.
                                      no_timeout=True)
 
     def driver_cmd_line(self):
-        # Override to return the actual DumpRenderTree command line.
-        return self.create_driver(0)._drt_cmd_line(self.get_option('pixel_tests'), [])
+        # Override to return the actual test driver's command line.
+        return self.create_driver(0)._android_driver_cmd_line(self.get_option('pixel_tests'), [])
 
-    def path_to_adb(self):
-        if ChromiumAndroidPort._adb_path:
-            return ChromiumAndroidPort._adb_path
+    # Overridden protected methods.
 
-        provided_adb_path = self.path_from_chromium_base('third_party', 'android_tools', 'sdk', 'platform-tools', 'adb')
+    def _port_specific_expectations_files(self):
+        # LayoutTests/platform/chromium-android/TestExpectations should contain only the rules to
+        # skip tests for the features not supported or not testable on Android.
+        # Other rules should be in LayoutTests/TestExpectations.
+        android_expectations_file = self.path_from_webkit_base('LayoutTests', 'platform', 'chromium-android', 'TestExpectations')
+        return super(ChromiumAndroidPort, self)._port_specific_expectations_files() + [android_expectations_file]
 
-        path_version = self._determine_adb_version('adb')
-        provided_version = self._determine_adb_version(provided_adb_path)
-        assert provided_version, 'The checked in Android SDK is missing. Are you sure you ran update-webkit --chromium-android?'
-
-        if not path_version:
-            ChromiumAndroidPort._adb_path = provided_adb_path
-        elif provided_version > path_version:
-            _log.warning('The "adb" version in your path is older than the one checked in, consider updating your local Android SDK. Using the checked in one.')
-            ChromiumAndroidPort._adb_path = provided_adb_path
-        else:
-            ChromiumAndroidPort._adb_path = 'adb'
-
-        return ChromiumAndroidPort._adb_path
-
-    def path_to_forwarder(self):
-        return self._build_path('forwarder')
-
-    def path_to_md5sum(self):
-        return self._build_path(MD5SUM_DEVICE_FILE_NAME)
-
-    # Overridden private functions.
 
     def _build_path(self, *comps):
         return self._host_port._build_path(*comps)
@@ -310,7 +450,7 @@
         return self._host_port._path_to_apache_config_file()
 
     def _path_to_driver(self, configuration=None):
-        return self._build_path_with_configuration(configuration, 'DumpRenderTree_apk/DumpRenderTree-debug.apk')
+        return self._build_path_with_configuration(configuration, self._driver_details.apk_name())
 
     def _path_to_helper(self):
         return None
@@ -336,56 +476,36 @@
     def _driver_class(self):
         return ChromiumAndroidDriver
 
-    # Local private functions.
+    # Local private methods.
 
-    def _determine_adb_version(self, adb_path):
-        re_version = re.compile('^.*version ([\d\.]+)$')
-        try:
-            output = self._executive.run_command([adb_path, 'version'], error_handler=self._executive.ignore_error)
-        except OSError:
-            return None
-        result = re_version.match(output)
-        if not output or not result:
-            return None
-        return [int(n) for n in result.group(1).split('.')]
-
-    def _get_devices(self):
-        if not self._devices:
-            re_device = re.compile('^([a-zA-Z0-9_:.-]+)\tdevice$', re.MULTILINE)
-            result = self._executive.run_command([self.path_to_adb(), 'devices'], error_handler=self._executive.ignore_error)
-            self._devices = re_device.findall(result)
-            if not self._devices:
-                raise AssertionError('No devices attached. Result of "adb devices": %s' % result)
-        return self._devices
-
-    def _get_device_serial(self, worker_number):
-        devices = self._get_devices()
-        if worker_number >= len(devices):
-            raise AssertionError('Worker number exceeds available number of devices')
-        return devices[worker_number]
+    @staticmethod
+    def _android_server_process_constructor(port, server_name, cmd_line, env=None):
+        return server_process.ServerProcess(port, server_name, cmd_line, env,
+                                            universal_newlines=True, treat_no_data_as_crash=True)
 
 
 class AndroidPerf(SingleFileOutputProfiler):
     _cached_perf_host_path = None
     _have_searched_for_perf_host = False
 
-    def __init__(self, host, executable_path, output_dir, adb_path, device_serial, symfs_path, kallsyms_path, identifier=None):
+    def __init__(self, host, executable_path, output_dir, android_commands, symfs_path, kallsyms_path, identifier=None):
         super(AndroidPerf, self).__init__(host, executable_path, output_dir, "data", identifier)
-        self._device_serial = device_serial
-        self._adb_command = [adb_path, '-s', self._device_serial]
+        self._android_commands = android_commands
         self._perf_process = None
         self._symfs_path = symfs_path
         self._kallsyms_path = kallsyms_path
 
     def check_configuration(self):
         # Check that perf is installed
-        if not self._file_exists_on_device('/system/bin/perf'):
-            print "Cannot find /system/bin/perf on device %s" % self._device_serial
+        if not self._android_commands.file_exists('/system/bin/perf'):
+            print "Cannot find /system/bin/perf on device %s" % self._android_commands.get_serial()
             return False
+
         # Check that the device is a userdebug build (or at least has the necessary libraries).
-        if self._run_adb_command(['shell', 'getprop', 'ro.build.type']).strip() != 'userdebug':
-            print "Device %s is not flashed with a userdebug build of Android" % self._device_serial
+        if self._android_commands.run(['shell', 'getprop', 'ro.build.type']).strip() != 'userdebug':
+            print "Device %s is not flashed with a userdebug build of Android" % self._android_commands.get_serial()
             return False
+
         # FIXME: Check that the binary actually is perf-able (has stackframe pointers)?
         # objdump -s a function and make sure it modifies the fp?
         # Instruct users to rebuild after export GYP_DEFINES="profiling=1 $GYP_DEFINES"
@@ -401,7 +521,7 @@
 and requires libefl, libebl, libdw, and libdwfl available in:
 https://android.googlesource.com/platform/external/elfutils/
 
-DumpRenderTree must be built with profiling=1, make sure you've done:
+The test driver must be built with profiling=1, make sure you've done:
 export GYP_DEFINES="profiling=1 $GYP_DEFINES"
 update-webkit --chromium-android
 build-webkit --chromium-android
@@ -410,18 +530,11 @@
 http://goto.google.com/cr-android-perf-howto
 """
 
-    def _file_exists_on_device(self, full_file_path):
-        assert full_file_path.startswith('/')
-        return self._run_adb_command(['shell', 'ls', full_file_path]).strip() == full_file_path
-
-    def _run_adb_command(self, cmd):
-        return self._host.executive.run_command(self._adb_command + cmd)
-
     def attach_to_pid(self, pid):
         assert(pid)
         assert(self._perf_process == None)
         # FIXME: This can't be a fixed timeout!
-        cmd = self._adb_command + ['shell', 'perf', 'record', '-g', '-p', pid, 'sleep', 30]
+        cmd = self._android_commands.adb_command() + ['shell', 'perf', 'record', '-g', '-p', pid, 'sleep', 30]
         self._perf_process = self._host.executive.popen(cmd)
 
     def _perf_version_string(self, perf_path):
@@ -455,7 +568,8 @@
         if perf_exitcode != 0:
             print "Perf failed (exit code: %i), can't process results." % perf_exitcode
             return
-        self._run_adb_command(['pull', '/data/perf.data', self._output_path])
+
+        self._android_commands.pull('/data/perf.data', self._output_path)
 
         perfhost_path = self._perfhost_path()
         perfhost_report_command = [
@@ -490,20 +604,21 @@
 
 
 class ChromiumAndroidDriver(driver.Driver):
-    def __init__(self, port, worker_number, pixel_tests, no_timeout=False):
+    def __init__(self, port, worker_number, pixel_tests, driver_details, no_timeout=False):
         super(ChromiumAndroidDriver, self).__init__(port, worker_number, pixel_tests, no_timeout)
         self._cmd_line = None
-        self._in_fifo_path = DEVICE_FIFO_PATH + 'stdin.fifo'
-        self._out_fifo_path = DEVICE_FIFO_PATH + 'test.fifo'
-        self._err_fifo_path = DEVICE_FIFO_PATH + 'stderr.fifo'
+        self._in_fifo_path = driver_details.device_fifo_directory() + 'stdin.fifo'
+        self._out_fifo_path = driver_details.device_fifo_directory() + 'test.fifo'
+        self._err_fifo_path = driver_details.device_fifo_directory() + 'stderr.fifo'
         self._read_stdout_process = None
         self._read_stderr_process = None
         self._forwarder_process = None
         self._has_setup = False
         self._original_governors = {}
         self._original_kptr_restrict = None
-        self._device_serial = port._get_device_serial(worker_number)
-        self._adb_command_base = None
+
+        self._android_commands = AndroidCommands(port._executive, port.get_device_serial(worker_number))
+        self._driver_details = driver_details
 
         # FIXME: If we taught ProfileFactory about "target" devices we could
         # just use the logic in Driver instead of duplicating it here.
@@ -513,7 +628,7 @@
             kallsyms_path = self._update_kallsyms_cache(symfs_path)
             # FIXME: We should pass this some sort of "Bridge" object abstraction around ADB instead of a path/device pair.
             self._profiler = AndroidPerf(self._port.host, self._port._path_to_driver(), self._port.results_directory(),
-                self._port.path_to_adb(), self._device_serial, symfs_path, kallsyms_path)
+                self._android_commands, symfs_path, kallsyms_path)
             # FIXME: This is a layering violation and should be moved to Port.check_sys_deps
             # once we have an abstraction around an adb_path/device_serial pair to make it
             # easy to make these class methods on AndroidPerf.
@@ -528,18 +643,18 @@
         super(ChromiumAndroidDriver, self).__del__()
 
     def _update_kallsyms_cache(self, output_dir):
-        kallsyms_name = "%s-kallsyms" % self._device_serial
+        kallsyms_name = "%s-kallsyms" % self._android_commands.get_serial()
         kallsyms_cache_path = self._port.host.filesystem.join(output_dir, kallsyms_name)
 
-        self._restart_adb_as_root()
+        self._android_commands.restart_as_root()
 
-        saved_kptr_restrict = self._run_adb_command(['shell', 'cat', KPTR_RESTRICT_PATH]).strip()
-        self._run_adb_command(['shell', 'echo', '0', '>', KPTR_RESTRICT_PATH])
+        saved_kptr_restrict = self._android_commands.run(['shell', 'cat', KPTR_RESTRICT_PATH]).strip()
+        self._android_commands.run(['shell', 'echo', '0', '>', KPTR_RESTRICT_PATH])
 
         print "Updating kallsyms file (%s) from device" % kallsyms_cache_path
-        self._pull_from_device("/proc/kallsyms", kallsyms_cache_path)
+        self._android_commands.pull("/proc/kallsyms", kallsyms_cache_path)
 
-        self._run_adb_command(['shell', 'echo', saved_kptr_restrict, '>', KPTR_RESTRICT_PATH])
+        self._android_commands.run(['shell', 'echo', saved_kptr_restrict, '>', KPTR_RESTRICT_PATH])
 
         return kallsyms_cache_path
 
@@ -556,8 +671,8 @@
 
         # find the installed path, and the path of the symboled built library
         # FIXME: We should get the install path from the device!
-        symfs_library_path = fs.join(symfs_path, "data/app-lib/%s-1/%s" % (DRT_APP_PACKAGE, DRT_LIBRARY_NAME))
-        built_library_path = self._port._build_path('lib', DRT_LIBRARY_NAME)
+        symfs_library_path = fs.join(symfs_path, "data/app-lib/%s-1/%s" % (self._driver_details.package_name(), self._driver_details.library_name()))
+        built_library_path = self._port._build_path('lib', self._driver_details.library_name())
         assert(fs.exists(built_library_path))
 
         # FIXME: Ideally we'd check the sha1's first and make a soft-link instead of copying (since we probably never care about windows).
@@ -569,8 +684,8 @@
 
     def _setup_md5sum_and_push_data_if_needed(self):
         self._md5sum_path = self._port.path_to_md5sum()
-        if not self._file_exists_on_device(MD5SUM_DEVICE_PATH):
-            if not self._push_to_device(self._md5sum_path, MD5SUM_DEVICE_PATH):
+        if not self._android_commands.file_exists(MD5SUM_DEVICE_PATH):
+            if not self._android_commands.push(self._md5sum_path, MD5SUM_DEVICE_PATH):
                 raise AssertionError('Could not push md5sum to device')
 
         self._push_executable()
@@ -582,32 +697,32 @@
         if self._has_setup:
             return
 
-        self._restart_adb_as_root()
+        self._android_commands.restart_as_root()
         self._setup_md5sum_and_push_data_if_needed()
         self._has_setup = True
         self._setup_performance()
 
         # Required by webkit_support::GetWebKitRootDirFilePath().
         # Other directories will be created automatically by adb push.
-        self._run_adb_command(['shell', 'mkdir', '-p', DEVICE_SOURCE_ROOT_DIR + 'chrome'])
+        self._android_commands.run(['shell', 'mkdir', '-p', DEVICE_SOURCE_ROOT_DIR + 'chrome'])
 
-        # Allow the DumpRenderTree app to fully access the directory.
+        # Allow the test driver to get full read and write access to the directory.
         # The native code needs the permission to write temporary files and create pipes here.
-        self._run_adb_command(['shell', 'mkdir', '-p', DEVICE_DRT_DIR])
-        self._run_adb_command(['shell', 'chmod', '777', DEVICE_DRT_DIR])
+        self._android_commands.run(['shell', 'mkdir', '-p', self._driver_details.device_directory()])
+        self._android_commands.run(['shell', 'chmod', '777', self._driver_details.device_directory()])
 
         # Delete the disk cache if any to ensure a clean test run.
         # This is like what's done in ChromiumPort.setup_test_run but on the device.
-        self._run_adb_command(['shell', 'rm', '-r', DRT_APP_CACHE_DIR])
+        self._android_commands.run(['shell', 'rm', '-r', self._driver_details.device_cache_directory()])
 
     def _log_error(self, message):
-        _log.error('[%s] %s' % (self._device_serial, message))
+        _log.error('[%s] %s' % (self._android_commands.get_serial(), message))
 
     def _log_debug(self, message):
-        _log.debug('[%s] %s' % (self._device_serial, message))
+        _log.debug('[%s] %s' % (self._android_commands.get_serial(), message))
 
     def _abort(self, message):
-        raise AssertionError('[%s] %s' % (self._device_serial, message))
+        raise AssertionError('[%s] %s' % (self._android_commands.get_serial(), message))
 
     @staticmethod
     def _extract_hashes_from_md5sum_output(md5sum_output):
@@ -617,36 +732,39 @@
     def _push_file_if_needed(self, host_file, device_file):
         assert os.path.exists(host_file)
         device_hashes = self._extract_hashes_from_md5sum_output(
-                self._port.host.executive.popen(self._adb_command() + ['shell', MD5SUM_DEVICE_PATH, device_file],
+                self._port.host.executive.popen(self._android_commands.adb_command() + ['shell', MD5SUM_DEVICE_PATH, device_file],
                                                 stdout=subprocess.PIPE).stdout)
         host_hashes = self._extract_hashes_from_md5sum_output(
                 self._port.host.executive.popen(args=['%s_host' % self._md5sum_path, host_file],
                                                 stdout=subprocess.PIPE).stdout)
         if host_hashes and device_hashes == host_hashes:
             return
-        self._push_to_device(host_file, device_file)
+
+        self._android_commands.push(host_file, device_file)
 
     def _push_executable(self):
-        self._push_file_if_needed(self._port.path_to_forwarder(), DEVICE_FORWARDER_PATH)
-        self._push_file_if_needed(self._port._build_path('DumpRenderTree.pak'), DEVICE_DRT_DIR + 'DumpRenderTree.pak')
-        self._push_file_if_needed(self._port._build_path('DumpRenderTree_resources'), DEVICE_DRT_DIR + 'DumpRenderTree_resources')
-        self._push_file_if_needed(self._port._build_path('android_main_fonts.xml'), DEVICE_DRT_DIR + 'android_main_fonts.xml')
-        self._push_file_if_needed(self._port._build_path('android_fallback_fonts.xml'), DEVICE_DRT_DIR + 'android_fallback_fonts.xml')
-        self._run_adb_command(['uninstall', DRT_APP_PACKAGE])
-        drt_host_path = self._port._path_to_driver()
-        install_result = self._run_adb_command(['install', drt_host_path])
+        self._push_file_if_needed(self._port.path_to_forwarder(), self._driver_details.device_forwarder_path())
+        for resource in self._driver_details.additional_resources():
+            self._push_file_if_needed(self._port._build_path(resource), self._driver_details.device_directory() + resource)
+
+        self._push_file_if_needed(self._port._build_path('android_main_fonts.xml'), self._driver_details.device_directory() + 'android_main_fonts.xml')
+        self._push_file_if_needed(self._port._build_path('android_fallback_fonts.xml'), self._driver_details.device_directory() + 'android_fallback_fonts.xml')
+
+        self._android_commands.run(['uninstall', self._driver_details.package_name()])
+        driver_host_path = self._port._path_to_driver()
+        install_result = self._android_commands.run(['install', driver_host_path])
         if install_result.find('Success') == -1:
-            self._abort('Failed to install %s onto device: %s' % (drt_host_path, install_result))
+            self._abort('Failed to install %s onto device: %s' % (driver_host_path, install_result))
 
     def _push_fonts(self):
         self._log_debug('Pushing fonts')
         path_to_ahem_font = self._port._build_path('AHEM____.TTF')
-        self._push_file_if_needed(path_to_ahem_font, DEVICE_FONTS_DIR + 'AHEM____.TTF')
+        self._push_file_if_needed(path_to_ahem_font, self._driver_details.device_fonts_directory() + 'AHEM____.TTF')
         for (host_dirs, font_file, package) in HOST_FONT_FILES:
             for host_dir in host_dirs:
                 host_font_path = host_dir + font_file
                 if self._port._check_file_exists(host_font_path, '', logging=False):
-                    self._push_file_if_needed(host_font_path, DEVICE_FONTS_DIR + font_file)
+                    self._push_file_if_needed(host_font_path, self._driver_details.device_fonts_directory() + font_file)
 
     def _push_test_resources(self):
         self._log_debug('Pushing test resources')
@@ -655,47 +773,14 @@
 
     def _push_platform_resources(self):
         self._log_debug('Pushing platform resources')
-        external_storage = self._port._filesystem.join(self._run_adb_command(['shell', 'echo $EXTERNAL_STORAGE']).strip(), 'Source', 'WebKit', 'chromium')
+        external_storage = self._port._filesystem.join(self._android_commands.run(['shell', 'echo $EXTERNAL_STORAGE']).strip(), 'Source', 'WebKit', 'chromium')
         for resource in WEBKIT_PLATFORM_RESOURCES_TO_PUSH:
             self._push_file_if_needed(self._port._chromium_base_dir(self._port._filesystem) + '/' + resource, external_storage + '/' + resource)
 
-    def _restart_adb_as_root(self):
-        output = self._run_adb_command(['root'])
-        if 'adbd is already running as root' in output:
-            return
-        elif not 'restarting adbd as root' in output:
-            self._log_error('Unrecognized output from adb root: %s' % output)
-
-        # Regardless the output, give the device a moment to come back online.
-        self._run_adb_command(['wait-for-device'])
-
-    def _run_adb_command(self, cmd, ignore_error=False):
-        self._log_debug('Run adb command: ' + str(cmd))
-        if ignore_error:
-            error_handler = self._port._executive.ignore_error
-        else:
-            error_handler = None
-        result = self._port._executive.run_command(self._adb_command() + cmd, error_handler=error_handler)
-        # Limit the length to avoid too verbose output of commands like 'adb logcat' and 'cat /data/tombstones/tombstone01'
-        # whose outputs are normally printed in later logs.
-        self._log_debug('Run adb result: ' + result[:80])
-        return result
-
-    def _link_device_file(self, from_file, to_file, ignore_error=False):
-        # rm to_file first to make sure that ln succeeds.
-        self._run_adb_command(['shell', 'rm', to_file], ignore_error)
-        return self._run_adb_command(['shell', 'ln', '-s', from_file, to_file], ignore_error)
-
-    def _push_to_device(self, host_path, device_path, ignore_error=False):
-        return self._run_adb_command(['push', host_path, device_path], ignore_error)
-
-    def _pull_from_device(self, device_path, host_path, ignore_error=False):
-        return self._run_adb_command(['pull', device_path, host_path], ignore_error)
-
     def _get_last_stacktrace(self):
-        tombstones = self._run_adb_command(['shell', 'ls', '-n', '/data/tombstones'])
+        tombstones = self._android_commands.run(['shell', 'ls', '-n', '/data/tombstones'])
         if not tombstones or tombstones.startswith('/data/tombstones: No such file or directory'):
-            self._log_error('DRT crashed, but no tombstone found!')
+            self._log_error('The driver crashed, but no tombstone found!')
             return ''
         tombstones = tombstones.rstrip().split('\n')
         last_tombstone = tombstones[0].split()
@@ -714,45 +799,41 @@
         # stack trace into a human readable format, if needed.
         # It takes a long time, so don't do it here.
         return '%s\n%s' % (' '.join(last_tombstone),
-                           self._run_adb_command(['shell', 'cat', '/data/tombstones/' + last_tombstone[6]]))
+                           self._android_commands.run(['shell', 'cat', '/data/tombstones/' + last_tombstone[6]]))
 
     def _get_logcat(self):
-        return self._run_adb_command(['logcat', '-d', '-v', 'threadtime'])
+        return self._android_commands.run(['logcat', '-d', '-v', 'threadtime'])
 
     def _setup_performance(self):
         # Disable CPU scaling and drop ram cache to reduce noise in tests
         if not self._original_governors:
-            governor_files = self._run_adb_command(['shell', 'ls', SCALING_GOVERNORS_PATTERN])
+            governor_files = self._android_commands.run(['shell', 'ls', SCALING_GOVERNORS_PATTERN])
             if governor_files.find('No such file or directory') == -1:
                 for file in governor_files.split():
-                    self._original_governors[file] = self._run_adb_command(['shell', 'cat', file]).strip()
-                    self._run_adb_command(['shell', 'echo', 'performance', '>', file])
+                    self._original_governors[file] = self._android_commands.run(['shell', 'cat', file]).strip()
+                    self._android_commands.run(['shell', 'echo', 'performance', '>', file])
 
     def _teardown_performance(self):
         for file, original_content in self._original_governors.items():
-            self._run_adb_command(['shell', 'echo', original_content, '>', file])
+            self._android_commands.run(['shell', 'echo', original_content, '>', file])
         self._original_governors = {}
 
     def _get_crash_log(self, stdout, stderr, newer_than):
         if not stdout:
             stdout = ''
-        stdout += '********* [%s] Logcat:\n%s' % (self._device_serial, self._get_logcat())
+        stdout += '********* [%s] Logcat:\n%s' % (self._android_commands.get_serial(), self._get_logcat())
         if not stderr:
             stderr = ''
-        stderr += '********* [%s] Tombstone file:\n%s' % (self._device_serial, self._get_last_stacktrace())
+        stderr += '********* [%s] Tombstone file:\n%s' % (self._android_commands.get_serial(), self._get_last_stacktrace())
         return super(ChromiumAndroidDriver, self)._get_crash_log(stdout, stderr, newer_than)
 
     def cmd_line(self, pixel_tests, per_test_args):
         # The returned command line is used to start _server_process. In our case, it's an interactive 'adb shell'.
-        # The command line passed to the DRT process is returned by _drt_cmd_line() instead.
-        return self._adb_command() + ['shell']
+        # The command line passed to the driver process is returned by _driver_cmd_line() instead.
+        return self._android_commands.adb_command() + ['shell']
 
-    def _file_exists_on_device(self, full_file_path):
-        assert full_file_path.startswith('/')
-        return self._run_adb_command(['shell', 'ls', full_file_path]).strip() == full_file_path
-
-    def _drt_cmd_line(self, pixel_tests, per_test_args):
-        return driver.Driver.cmd_line(self, pixel_tests, per_test_args) + ['--create-stdin-fifo', '--separate-stderr-fifo']
+    def _android_driver_cmd_line(self, pixel_tests, per_test_args):
+        return driver.Driver.cmd_line(self, pixel_tests, per_test_args) + self._driver_details.additional_command_line_flags()
 
     @staticmethod
     def _loop_with_timeout(condition, timeout_secs):
@@ -763,17 +844,17 @@
         return False
 
     def _all_pipes_created(self):
-        return (self._file_exists_on_device(self._in_fifo_path) and
-                self._file_exists_on_device(self._out_fifo_path) and
-                self._file_exists_on_device(self._err_fifo_path))
+        return (self._android_commands.file_exists(self._in_fifo_path) and
+                self._android_commands.file_exists(self._out_fifo_path) and
+                self._android_commands.file_exists(self._err_fifo_path))
 
     def _remove_all_pipes(self):
         for file in [self._in_fifo_path, self._out_fifo_path, self._err_fifo_path]:
-            self._run_adb_command(['shell', 'rm', file])
+            self._android_commands.run(['shell', 'rm', file])
 
-        return (not self._file_exists_on_device(self._in_fifo_path) and
-                not self._file_exists_on_device(self._out_fifo_path) and
-                not self._file_exists_on_device(self._err_fifo_path))
+        return (not self._android_commands.file_exists(self._in_fifo_path) and
+                not self._android_commands.file_exists(self._out_fifo_path) and
+                not self._android_commands.file_exists(self._err_fifo_path))
 
     def run_test(self, driver_input, stop_when_done):
         base = self._port.lookup_virtual_test_base(driver_input.test_name)
@@ -785,8 +866,8 @@
 
     def start(self, pixel_tests, per_test_args):
         # Only one driver instance is allowed because of the nature of Android activity.
-        # The single driver needs to restart DumpRenderTree when the command line changes.
-        cmd_line = self._drt_cmd_line(pixel_tests, per_test_args)
+        # The single driver needs to restart content_shell when the command line changes.
+        cmd_line = self._android_driver_cmd_line(pixel_tests, per_test_args)
         if cmd_line != self._cmd_line:
             self.stop()
             self._cmd_line = cmd_line
@@ -798,45 +879,45 @@
         for retries in range(3):
             if self._start_once(pixel_tests, per_test_args):
                 return
-            self._log_error('Failed to start DumpRenderTree application. Retries=%d. Log:%s' % (retries, self._get_logcat()))
+            self._log_error('Failed to start the content_shell application. Retries=%d. Log:%s' % (retries, self._get_logcat()))
             self.stop()
             time.sleep(2)
-        self._abort('Failed to start DumpRenderTree application multiple times. Give up.')
+        self._abort('Failed to start the content_shell application multiple times. Giving up.')
 
     def _start_once(self, pixel_tests, per_test_args):
         super(ChromiumAndroidDriver, self)._start(pixel_tests, per_test_args)
 
         self._log_debug('Starting forwarder')
         self._forwarder_process = self._port._server_process_constructor(
-            self._port, 'Forwarder', self._adb_command() + ['shell', '%s -D %s' % (DEVICE_FORWARDER_PATH, FORWARD_PORTS)])
+            self._port, 'Forwarder', self._android_commands.adb_command() + ['shell', '%s -D %s' % (self._driver_details.device_forwarder_path(), FORWARD_PORTS)])
         self._forwarder_process.start()
 
-        self._run_adb_command(['logcat', '-c'])
-        self._run_adb_command(['shell', 'echo'] + self._cmd_line + ['>', COMMAND_LINE_FILE])
-        start_result = self._run_adb_command(['shell', 'am', 'start', '-e', 'RunInSubThread', '-n', DRT_ACTIVITY_FULL_NAME])
+        self._android_commands.run(['logcat', '-c'])
+        self._android_commands.run(['shell', 'echo'] + self._cmd_line + ['>', self._driver_details.command_line_file()])
+        start_result = self._android_commands.run(['shell', 'am', 'start', '-e', 'RunInSubThread', '-n', self._driver_details.activity_name()])
         if start_result.find('Exception') != -1:
-            self._log_error('Failed to start DumpRenderTree application. Exception:\n' + start_result)
+            self._log_error('Failed to start the content_shell application. Exception:\n' + start_result)
             return False
 
-        if not ChromiumAndroidDriver._loop_with_timeout(self._all_pipes_created, DRT_START_STOP_TIMEOUT_SECS):
+        if not ChromiumAndroidDriver._loop_with_timeout(self._all_pipes_created, DRIVER_START_STOP_TIMEOUT_SECS):
             return False
 
         # Read back the shell prompt to ensure adb shell ready.
-        deadline = time.time() + DRT_START_STOP_TIMEOUT_SECS
+        deadline = time.time() + DRIVER_START_STOP_TIMEOUT_SECS
         self._server_process.start()
         self._read_prompt(deadline)
         self._log_debug('Interactive shell started')
 
-        # Start a process to read from the stdout fifo of the DumpRenderTree app and print to stdout.
+        # Start a process to read from the stdout fifo of the test driver and print to stdout.
         self._log_debug('Redirecting stdout to ' + self._out_fifo_path)
         self._read_stdout_process = self._port._server_process_constructor(
-            self._port, 'ReadStdout', self._adb_command() + ['shell', 'cat', self._out_fifo_path])
+            self._port, 'ReadStdout', self._android_commands.adb_command() + ['shell', 'cat', self._out_fifo_path])
         self._read_stdout_process.start()
 
-        # Start a process to read from the stderr fifo of the DumpRenderTree app and print to stdout.
+        # Start a process to read from the stderr fifo of the test driver and print to stdout.
         self._log_debug('Redirecting stderr to ' + self._err_fifo_path)
         self._read_stderr_process = self._port._server_process_constructor(
-            self._port, 'ReadStderr', self._adb_command() + ['shell', 'cat', self._err_fifo_path])
+            self._port, 'ReadStderr', self._android_commands.adb_command() + ['shell', 'cat', self._err_fifo_path])
         self._read_stderr_process.start()
 
         self._log_debug('Redirecting stdin to ' + self._in_fifo_path)
@@ -846,7 +927,7 @@
         self._server_process.replace_outputs(self._read_stdout_process._proc.stdout, self._read_stderr_process._proc.stdout)
 
         def deadlock_detector(processes, normal_startup_event):
-            if not ChromiumAndroidDriver._loop_with_timeout(lambda: normal_startup_event.is_set(), DRT_START_STOP_TIMEOUT_SECS):
+            if not ChromiumAndroidDriver._loop_with_timeout(lambda: normal_startup_event.is_set(), DRIVER_START_STOP_TIMEOUT_SECS):
                 # If normal_startup_event is not set in time, the main thread must be blocked at
                 # reading/writing the fifo. Kill the fifo reading/writing processes to let the
                 # main thread escape from the deadlocked state. After that, the main thread will
@@ -867,9 +948,9 @@
             line = self._server_process.read_stdout_line(deadline)
 
         if self._server_process.timed_out and not self.has_crashed():
-            # DumpRenderTree crashes during startup, or when the deadlock detector detected
-            # deadlock and killed the fifo reading/writing processes.
-            _log.error('Failed to start DumpRenderTree: \n%s' % output)
+            # The test driver crashed during startup, or when the deadlock detector hit
+            # a deadlock and killed the fifo reading/writing processes.
+            _log.error('Failed to start the test driver: \n%s' % output)
             return False
 
         # Inform the deadlock detector that the startup is successful without deadlock.
@@ -880,17 +961,17 @@
         # ps output seems to be fixed width, we only care about the name and the pid
         # u0_a72    21630 125   947920 59364 ffffffff 400beee4 S org.chromium.native_test
         for line in ps_output.split('\n'):
-            if line.find(DRT_APP_PACKAGE) != -1:
+            if line.find(self._driver_details.package_name()) != -1:
                 match = re.match(r'\S+\s+(\d+)', line)
                 return int(match.group(1))
 
     def _pid_on_target(self):
         # FIXME: There must be a better way to do this than grepping ps output!
-        ps_output = self._run_adb_command(['shell', 'ps'])
-        return self._pid_from_android_ps_output(ps_output, DRT_APP_PACKAGE)
+        ps_output = self._android_commands.run(['shell', 'ps'])
+        return self._pid_from_android_ps_output(ps_output, self._driver_details.package_name())
 
     def stop(self):
-        self._run_adb_command(['shell', 'am', 'force-stop', DRT_APP_PACKAGE])
+        self._android_commands.run(['shell', 'am', 'force-stop', self._driver_details.package_name()])
 
         if self._read_stdout_process:
             self._read_stdout_process.kill()
@@ -907,7 +988,7 @@
             self._forwarder_process = None
 
         if self._has_setup:
-            if not ChromiumAndroidDriver._loop_with_timeout(self._remove_all_pipes, DRT_START_STOP_TIMEOUT_SECS):
+            if not ChromiumAndroidDriver._loop_with_timeout(self._remove_all_pipes, DRIVER_START_STOP_TIMEOUT_SECS):
                 raise AssertionError('Failed to remove fifo files. May be locked.')
 
     def _command_from_driver_input(self, driver_input):
@@ -927,8 +1008,3 @@
                 if last_char in ('#', '$'):
                     return
             last_char = current_char
-
-    def _adb_command(self):
-        if not self._adb_command_base:
-            self._adb_command_base = [self._port.path_to_adb(), '-s', self._device_serial]
-        return self._adb_command_base
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py b/Tools/Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py
index f34bbcd..62995b1 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py
@@ -42,71 +42,100 @@
 from webkitpy.layout_tests.port import driver_unittest
 from webkitpy.tool.mocktool import MockOptions
 
+# Any "adb" commands will be interpret by this class instead of executing actual
+# commansd on the file system, which we don't want to do.
+class MockAndroidDebugBridge:
+    def __init__(self, device_count):
+        self._device_count = device_count
+        self._last_command = None
 
-class MockRunCommand(object):
-    def __init__(self):
-        self._mock_logcat = ''
-        self._mock_devices_output = ''
-        self._mock_devices = []
-        self._mock_ls_tombstones = ''
+    # Local public methods.
 
-    def mock_run_command_fn(self, args):
-        if not args[0].endswith('adb'):
-            return ''
-        if args[1] == 'devices':
-            return self._mock_devices_output
-        if args[1] == 'version':
+    def run_command(self, args):
+        self._last_command = ' '.join(args)
+        if args[0].startswith('path'):
+            if args[0] == 'path1':
+                return ''
+            if args[0] == 'path2':
+                return 'version 1.1'
+
             return 'version 1.0'
 
-        assert len(args) > 3
-        assert args[1] == '-s'
-        assert args[2] in self._mock_devices
-        if args[3] == 'shell':
-            if args[4:] == ['ls', '-n', '/data/tombstones']:
-                return self._mock_ls_tombstones
-            elif args[4] == 'cat':
-                return args[5] + '\nmock_contents\n'
-        elif args[3] == 'logcat':
-            return self._mock_logcat
+        if args[0] == 'adb':
+            if len(args) > 1 and args[1] == 'version':
+                return 'version 1.0'
+            if len(args) > 1 and args[1] == 'devices':
+                return self._get_device_output()
+            if len(args) > 3 and args[3] == 'command':
+                return 'mockoutput'
+
         return ''
 
-    def mock_no_device(self):
-        self._mock_devices = []
-        self._mock_devices_output = 'List of devices attached'
+    def last_command(self):
+        return self._last_command
 
-    def mock_one_device(self):
-        self._mock_devices = ['123456789ABCDEF0']
-        self._mock_devices_output = ('List of devices attached\n'
-                                     '%s\tdevice\n' % self._mock_devices[0])
+    # Local private methods.
 
-    def mock_two_devices(self):
-        self._mock_devices = ['123456789ABCDEF0', '23456789ABCDEF01']
-        self._mock_devices_output = ('* daemon not running. starting it now on port 5037 *'
-                                     '* daemon started successfully *'
-                                     'List of devices attached\n'
-                                     '%s\tdevice\n'
-                                     '%s\tdevice\n' % (self._mock_devices[0], self._mock_devices[1]))
+    def _get_device_output(self):
+        serials = ['123456789ABCDEF0', '123456789ABCDEF1', '123456789ABCDEF2',
+                   '123456789ABCDEF3', '123456789ABCDEF4', '123456789ABCDEF5']
+        output = 'List of devices attached\n'
+        for serial in serials[:self._device_count]:
+          output += '%s\tdevice\n' % serial
+        return output
 
-    def mock_no_tombstone_dir(self):
-        self._mock_ls_tombstones = '/data/tombstones: No such file or directory'
 
-    def mock_no_tombstone_file(self):
-        self._mock_ls_tombstones = ''
+class AndroidCommandsTest(unittest.TestCase):
+    def setUp(self):
+        chromium_android.AndroidCommands._adb_command_path = None
+        chromium_android.AndroidCommands._adb_command_path_options = ['adb']
 
-    def mock_ten_tombstones(self):
-        self._mock_ls_tombstones = ('-rw------- 1000     1000       218643 2012-04-26 18:15 tombstone_00\n'
-                                    '-rw------- 1000     1000       241695 2012-04-26 18:15 tombstone_01\n'
-                                    '-rw------- 1000     1000       219472 2012-04-26 18:16 tombstone_02\n'
-                                    '-rw------- 1000     1000        45316 2012-04-27 16:33 tombstone_03\n'
-                                    '-rw------- 1000     1000        82022 2012-04-23 16:57 tombstone_04\n'
-                                    '-rw------- 1000     1000        82015 2012-04-23 16:57 tombstone_05\n'
-                                    '-rw------- 1000     1000        81974 2012-04-23 16:58 tombstone_06\n'
-                                    '-rw------- 1000     1000       237409 2012-04-26 17:41 tombstone_07\n'
-                                    '-rw------- 1000     1000       276089 2012-04-26 18:15 tombstone_08\n'
-                                    '-rw------- 1000     1000       219618 2012-04-26 18:15 tombstone_09\n')
+    def make_executive(self, device_count):
+        self._mock_executive = MockAndroidDebugBridge(device_count)
+        return MockExecutive2(run_command_fn=self._mock_executive.run_command)
 
-    def mock_logcat(self, content):
-        self._mock_logcat = content
+    def make_android_commands(self, device_count, serial):
+        return chromium_android.AndroidCommands(self.make_executive(device_count), serial)
+
+    # The "adb" binary with the latest version should be used.
+    def serial_test_adb_command_path(self):
+        executive = self.make_executive(0)
+
+        chromium_android.AndroidCommands.set_adb_command_path_options(['path1', 'path2', 'path3'])
+        self.assertEqual('path2', chromium_android.AndroidCommands.adb_command_path(executive))
+
+    # The get_devices() method should throw if there aren't any devices. Otherwise it returns an array.
+    def test_get_devices(self):
+        self.assertRaises(AssertionError, chromium_android.AndroidCommands.get_devices, self.make_executive(0))
+        self.assertEquals(1, len(chromium_android.AndroidCommands.get_devices(self.make_executive(1))))
+        self.assertEquals(5, len(chromium_android.AndroidCommands.get_devices(self.make_executive(5))))
+
+    # The used adb command should include the device's serial number, and get_serial() should reflect this.
+    def test_adb_command_and_get_serial(self):
+        android_commands = self.make_android_commands(1, '123456789ABCDEF0')
+        self.assertEquals(['adb', '-s', '123456789ABCDEF0'], android_commands.adb_command())
+        self.assertEquals('123456789ABCDEF0', android_commands.get_serial())
+
+    # Running an adb command should return the command's output.
+    def test_run_command(self):
+        android_commands = self.make_android_commands(1, '123456789ABCDEF0')
+
+        output = android_commands.run(['command'])
+        self.assertEquals('adb -s 123456789ABCDEF0 command', self._mock_executive.last_command())
+        self.assertEquals('mockoutput', output)
+
+    # Test that the convenience methods create the expected commands.
+    def test_convenience_methods(self):
+        android_commands = self.make_android_commands(1, '123456789ABCDEF0')
+
+        android_commands.file_exists('/tombstones')
+        self.assertEquals('adb -s 123456789ABCDEF0 shell ls /tombstones', self._mock_executive.last_command())
+
+        android_commands.push('foo', 'bar')
+        self.assertEquals('adb -s 123456789ABCDEF0 push foo bar', self._mock_executive.last_command())
+
+        android_commands.pull('bar', 'foo')
+        self.assertEquals('adb -s 123456789ABCDEF0 pull bar foo', self._mock_executive.last_command())
 
 
 class ChromiumAndroidPortTest(chromium_port_testcase.ChromiumPortTestCase):
@@ -115,232 +144,126 @@
 
     def make_port(self, **kwargs):
         port = super(ChromiumAndroidPortTest, self).make_port(**kwargs)
-        self.mock_run_command = MockRunCommand()
-        self.mock_run_command.mock_one_device()
-        port._executive = MockExecutive2(run_command_fn=self.mock_run_command.mock_run_command_fn)
+        port._mock_adb = MockAndroidDebugBridge(kwargs.get('device_count', 1))
+        port._executive = MockExecutive2(run_command_fn=port._mock_adb.run_command)
         return port
 
-    def test_attributes(self):
-        port = self.make_port()
-        self.assertEqual(port.baseline_path(), port._webkit_baseline_path('chromium-android'))
+    # Test that the right driver details will be set for DumpRenderTree vs. content_shell
+    def test_driver_details(self):
+        port_dump_render_tree = self.make_port()
+        port_content_shell = self.make_port(options=optparse.Values({'driver_name': 'content_shell'}))
 
+        self.assertIsInstance(port_dump_render_tree._driver_details, chromium_android.DumpRenderTreeDriverDetails)
+        self.assertIsInstance(port_content_shell._driver_details, chromium_android.ContentShellDriverDetails)
+
+    # Test that the number of child processes to create depends on the devices.
+    def test_default_child_processes(self):
+        port_default = self.make_port(device_count=5)
+        port_fixed_device = self.make_port(device_count=5, options=optparse.Values({'adb_device': '123456789ABCDEF9'}))
+
+        self.assertEquals(5, port_default.default_child_processes())
+        self.assertEquals(1, port_fixed_device.default_child_processes())
+
+    # Test that an HTTP server indeed is required by Android (as we serve all tests over them)
+    def test_requires_http_server(self):
+        self.assertTrue(self.make_port(device_count=1).requires_http_server())
+
+    # Disable this test because Android introduces its own TestExpectations file.
+    def test_expectations_files(self):
+        pass
+
+    # Test that Chromium Android still uses a port-specific TestExpectations file.
+    def test_uses_android_specific_test_expectations(self):
+        port = self.make_port()
+
+        android_count = len(port._port_specific_expectations_files())
+        chromium_count = len(super(chromium_android.ChromiumAndroidPort, port)._port_specific_expectations_files())
+
+        self.assertEquals(android_count - 1, chromium_count)
+
+    # Tests the default timeouts for Android, which are different than the rest of Chromium.
     def test_default_timeout_ms(self):
         self.assertEqual(self.make_port(options=optparse.Values({'configuration': 'Release'})).default_timeout_ms(), 10000)
         self.assertEqual(self.make_port(options=optparse.Values({'configuration': 'Debug'})).default_timeout_ms(), 10000)
 
-    def test_expectations_files(self):
-        # FIXME: override this test temporarily while we're still upstreaming the android port and
-        # using a custom expectations file.
-        pass
-
-    def test_get_devices_no_device(self):
-        port = self.make_port()
-        self.mock_run_command.mock_no_device()
-        self.assertRaises(AssertionError, port._get_devices)
-
-    def test_get_devices_one_device(self):
-        port = self.make_port()
-        self.mock_run_command.mock_one_device()
-        self.assertEqual(self.mock_run_command._mock_devices, port._get_devices())
-        self.assertEqual(1, port.default_child_processes())
-
-    def test_get_devices_two_devices(self):
-        port = self.make_port()
-        self.mock_run_command.mock_two_devices()
-        self.assertEqual(self.mock_run_command._mock_devices, port._get_devices())
-        self.assertEqual(2, port.default_child_processes())
-
-    def test_get_device_serial_no_device(self):
-        port = self.make_port()
-        self.mock_run_command.mock_no_device()
-        self.assertRaises(AssertionError, port._get_device_serial, 0)
-
-    def test_get_device_serial_one_device(self):
-        port = self.make_port()
-        self.mock_run_command.mock_one_device()
-        self.assertEqual(self.mock_run_command._mock_devices[0], port._get_device_serial(0))
-        self.assertRaises(AssertionError, port._get_device_serial, 1)
-
-    def test_get_device_serial_two_devices(self):
-        port = self.make_port()
-        self.mock_run_command.mock_two_devices()
-        self.assertEqual(self.mock_run_command._mock_devices[0], port._get_device_serial(0))
-        self.assertEqual(self.mock_run_command._mock_devices[1], port._get_device_serial(1))
-        self.assertRaises(AssertionError, port._get_device_serial, 2)
-
-    def test_must_require_http_server(self):
-        port = self.make_port()
-        self.assertEqual(port.requires_http_server(), True)
-
 
 class ChromiumAndroidDriverTest(unittest.TestCase):
     def setUp(self):
-        self.mock_run_command = MockRunCommand()
-        self.mock_run_command.mock_one_device()
-        self.port = chromium_android.ChromiumAndroidPort(
-                MockSystemHost(executive=MockExecutive2(run_command_fn=self.mock_run_command.mock_run_command_fn)),
-                'chromium-android')
-        self.driver = chromium_android.ChromiumAndroidDriver(self.port, worker_number=0, pixel_tests=True)
+        self._mock_adb = MockAndroidDebugBridge(1)
+        self._mock_executive = MockExecutive2(run_command_fn=self._mock_adb.run_command)
+        self._port = chromium_android.ChromiumAndroidPort(MockSystemHost(executive=self._mock_executive), 'chromium-android')
+        self._driver = chromium_android.ChromiumAndroidDriver(self._port, worker_number=0,
+            pixel_tests=True, driver_details=chromium_android.ContentShellDriverDetails())
 
-    def test_get_last_stacktrace(self):
-        self.mock_run_command.mock_no_tombstone_dir()
-        self.assertEqual(self.driver._get_last_stacktrace(), '')
-
-        self.mock_run_command.mock_no_tombstone_file()
-        self.assertEqual(self.driver._get_last_stacktrace(), '')
-
-        self.mock_run_command.mock_ten_tombstones()
-        self.assertEqual(self.driver._get_last_stacktrace(),
-                          '-rw------- 1000 1000 45316 2012-04-27 16:33 tombstone_03\n'
-                          '/data/tombstones/tombstone_03\nmock_contents\n')
-
-    def test_get_crash_log(self):
-        self.mock_run_command.mock_logcat('logcat contents\n')
-        self.mock_run_command.mock_ten_tombstones()
-        self.driver._crashed_process_name = 'foo'
-        self.driver._crashed_pid = 1234
-        self.assertEqual(self.driver._get_crash_log('out bar\nout baz\n', 'err bar\nerr baz\n', newer_than=None),
-            ('err bar\n'
-             'err baz\n'
-             '********* [123456789ABCDEF0] Tombstone file:\n'
-             '-rw------- 1000 1000 45316 2012-04-27 16:33 tombstone_03\n'
-             '/data/tombstones/tombstone_03\n'
-             'mock_contents\n',
-             u'crash log for foo (pid 1234):\n'
-             u'STDOUT: out bar\n'
-             u'STDOUT: out baz\n'
-             u'STDOUT: ********* [123456789ABCDEF0] Logcat:\n'
-             u'STDOUT: logcat contents\n'
-             u'STDERR: err bar\n'
-             u'STDERR: err baz\n'
-             u'STDERR: ********* [123456789ABCDEF0] Tombstone file:\n'
-             u'STDERR: -rw------- 1000 1000 45316 2012-04-27 16:33 tombstone_03\n'
-             u'STDERR: /data/tombstones/tombstone_03\n'
-             u'STDERR: mock_contents\n'))
-
-        self.driver._crashed_process_name = None
-        self.driver._crashed_pid = None
-        self.assertEqual(self.driver._get_crash_log(None, None, newer_than=None),
-            ('********* [123456789ABCDEF0] Tombstone file:\n'
-             '-rw------- 1000 1000 45316 2012-04-27 16:33 tombstone_03\n'
-             '/data/tombstones/tombstone_03\n'
-             'mock_contents\n',
-             u'crash log for <unknown process name> (pid <unknown>):\n'
-             u'STDOUT: ********* [123456789ABCDEF0] Logcat:\n'
-             u'STDOUT: logcat contents\n'
-             u'STDERR: ********* [123456789ABCDEF0] Tombstone file:\n'
-             u'STDERR: -rw------- 1000 1000 45316 2012-04-27 16:33 tombstone_03\n'
-             u'STDERR: /data/tombstones/tombstone_03\n'
-             u'STDERR: mock_contents\n'))
-
+    # The cmd_line() method in the Android port is used for starting a shell, not the test runner.
     def test_cmd_line(self):
-        cmd_line = self.driver.cmd_line(True, ['anything'])
-        self.assertEqual(['adb', '-s', self.mock_run_command._mock_devices[0], 'shell'], cmd_line)
+        self.assertEquals(['adb', '-s', '123456789ABCDEF0', 'shell'], self._driver.cmd_line(False, []))
 
-    def test_drt_cmd_line(self):
-        cmd_line = self.driver._drt_cmd_line(True, ['--a'])
-        self.assertIn('--a', cmd_line)
-        self.assertIn('--create-stdin-fifo', cmd_line)
-        self.assertIn('--separate-stderr-fifo', cmd_line)
-
+    # Test that the Chromium Android port can interpret Android's shell output.
     def test_read_prompt(self):
-        self.driver._server_process = driver_unittest.MockServerProcess(lines=['root@android:/ # '])
-        self.assertIsNone(self.driver._read_prompt(time.time() + 1))
-        self.driver._server_process = driver_unittest.MockServerProcess(lines=['$ '])
-        self.assertIsNone(self.driver._read_prompt(time.time() + 1))
-
-    def test_command_from_driver_input(self):
-        driver_input = driver.DriverInput('foo/bar/test.html', 10, 'checksum', True)
-        expected_command = "/data/local/tmp/third_party/WebKit/LayoutTests/foo/bar/test.html'--pixel-test'checksum\n"
-        if (sys.platform != "cygwin"):
-            self.assertEqual(self.driver._command_from_driver_input(driver_input), expected_command)
-
-        driver_input = driver.DriverInput('http/tests/foo/bar/test.html', 10, 'checksum', True)
-        expected_command = "http://127.0.0.1:8000/foo/bar/test.html'--pixel-test'checksum\n"
-        self.assertEqual(self.driver._command_from_driver_input(driver_input), expected_command)
-
-    def test_pid_from_android_ps_output(self):
-        # FIXME: Use a larger blob of ps output.
-        ps_output = """u0_a72    21630 125   947920 59364 ffffffff 400beee4 S org.chromium.native_test"""
-        pid = self.driver._pid_from_android_ps_output(ps_output, "org.chromium.native_test")
-        self.assertEqual(pid, 21630)
+        self._driver._server_process = driver_unittest.MockServerProcess(lines=['root@android:/ # '])
+        self.assertIsNone(self._driver._read_prompt(time.time() + 1))
+        self._driver._server_process = driver_unittest.MockServerProcess(lines=['$ '])
+        self.assertIsNone(self._driver._read_prompt(time.time() + 1))
 
 
-class AndroidPerfTest(unittest.TestCase):
-    def test_perf_output_regexp(self):
-        perf_output = """[kernel.kallsyms] with build id 5a20f6299bdb955a2f07711bb7f65cd706fe7469 not found, continuing without symbols
-Failed to open /tmp/perf-14168.map, continuing without symbols
-Kernel address maps (/proc/{kallsyms,modules}) were restricted.
-
-Check /proc/sys/kernel/kptr_restrict before running 'perf record'.
-
-As no suitable kallsyms nor vmlinux was found, kernel samples
-can't be resolved.
-
-Samples in kernel modules can't be resolved as well.
-
-# Events: 31K cycles
-#
-# Overhead          Command                Shared Object
-# ........  ...............  ...........................  .....................................................................................................................................................................
-#
-    16.18%   DumpRenderTree  perf-14168.map               [.] 0x21270ac0cf43
-    12.72%   DumpRenderTree  DumpRenderTree               [.] v8::internal::JSObject::GetElementWithInterceptor(v8::internal::Object*, unsigned int)
-     8.28%   DumpRenderTree  DumpRenderTree               [.] v8::internal::LoadPropertyWithInterceptorOnly(v8::internal::Arguments, v8::internal::Isolate*)
-     5.60%   DumpRenderTree  DumpRenderTree               [.] WTF::AtomicString WebCore::v8StringToWebCoreString<WTF::AtomicString>(v8::Handle<v8::String>, WebCore::ExternalMode)
-     4.60%   DumpRenderTree  DumpRenderTree               [.] WebCore::WeakReferenceMap<void, v8::Object>::get(void*)
-     3.99%   DumpRenderTree  DumpRenderTree               [.] _ZNK3WTF7HashMapIPNS_16AtomicStringImplEPN7WebCore7ElementENS_7PtrHashIS2_EENS_10HashTraitsIS2_EENS8_IS5_EEE3getERKS2_.isra.98
-     3.69%   DumpRenderTree  DumpRenderTree               [.] WebCore::DocumentV8Internal::getElementByIdCallback(v8::Arguments const&)
-     3.23%   DumpRenderTree  DumpRenderTree               [.] WebCore::V8ParameterBase::prepareBase()
-     2.83%   DumpRenderTree  DumpRenderTree               [.] WTF::AtomicString::add(unsigned short const*, unsigned int)
-     2.73%   DumpRenderTree  DumpRenderTree               [.] WebCore::DocumentV8Internal::getElementsByTagNameCallback(v8::Arguments const&)
-     2.47%   DumpRenderTree  DumpRenderTree               [.] _ZN2v86Object27GetPointerFromInternalFieldEi.constprop.439
-     2.43%   DumpRenderTree  DumpRenderTree               [.] v8::internal::Isolate::SetCurrentVMState(v8::internal::StateTag)
-"""
-        expected_first_ten_lines = """    16.18%   DumpRenderTree  perf-14168.map               [.] 0x21270ac0cf43
-    12.72%   DumpRenderTree  DumpRenderTree               [.] v8::internal::JSObject::GetElementWithInterceptor(v8::internal::Object*, unsigned int)
-     8.28%   DumpRenderTree  DumpRenderTree               [.] v8::internal::LoadPropertyWithInterceptorOnly(v8::internal::Arguments, v8::internal::Isolate*)
-     5.60%   DumpRenderTree  DumpRenderTree               [.] WTF::AtomicString WebCore::v8StringToWebCoreString<WTF::AtomicString>(v8::Handle<v8::String>, WebCore::ExternalMode)
-     4.60%   DumpRenderTree  DumpRenderTree               [.] WebCore::WeakReferenceMap<void, v8::Object>::get(void*)
-     3.99%   DumpRenderTree  DumpRenderTree               [.] _ZNK3WTF7HashMapIPNS_16AtomicStringImplEPN7WebCore7ElementENS_7PtrHashIS2_EENS_10HashTraitsIS2_EENS8_IS5_EEE3getERKS2_.isra.98
-     3.69%   DumpRenderTree  DumpRenderTree               [.] WebCore::DocumentV8Internal::getElementByIdCallback(v8::Arguments const&)
-     3.23%   DumpRenderTree  DumpRenderTree               [.] WebCore::V8ParameterBase::prepareBase()
-     2.83%   DumpRenderTree  DumpRenderTree               [.] WTF::AtomicString::add(unsigned short const*, unsigned int)
-     2.73%   DumpRenderTree  DumpRenderTree               [.] WebCore::DocumentV8Internal::getElementsByTagNameCallback(v8::Arguments const&)
-"""
-        host = MockSystemHost()
-        profiler = chromium_android.AndroidPerf(host, '/bin/executable', '/tmp/output', 'adb-path', 'device-serial', '/tmp/symfs', '/tmp/kallsyms', 'foo')
-        self.assertEqual(profiler._first_ten_lines_of_profile(perf_output), expected_first_ten_lines)
-
-
-class ChromiumAndroidDriverTwoDriversTest(unittest.TestCase):
+class ChromiumAndroidDriverTwoDriverTest(unittest.TestCase):
+    # Test two drivers getting the right serial numbers, and that we disregard per-test arguments.
     def test_two_drivers(self):
-        mock_run_command = MockRunCommand()
-        mock_run_command.mock_two_devices()
-        port = chromium_android.ChromiumAndroidPort(
-                MockSystemHost(executive=MockExecutive2(run_command_fn=mock_run_command.mock_run_command_fn)),
-                'chromium-android')
-        driver0 = chromium_android.ChromiumAndroidDriver(port, worker_number=0, pixel_tests=True)
-        driver1 = chromium_android.ChromiumAndroidDriver(port, worker_number=1, pixel_tests=True)
+        mock_adb = MockAndroidDebugBridge(2)
+        mock_executive = MockExecutive2(run_command_fn=mock_adb.run_command)
 
-        cmd_line0 = driver0.cmd_line(True, ['anything'])
-        self.assertEqual(['adb', '-s', mock_run_command._mock_devices[0], 'shell'], cmd_line0)
+        port = chromium_android.ChromiumAndroidPort(MockSystemHost(executive=mock_executive), 'chromium-android')
+        driver0 = chromium_android.ChromiumAndroidDriver(port, worker_number=0, pixel_tests=True,
+            driver_details=chromium_android.DumpRenderTreeDriverDetails())
+        driver1 = chromium_android.ChromiumAndroidDriver(port, worker_number=1, pixel_tests=True,
+            driver_details=chromium_android.DumpRenderTreeDriverDetails())
 
-        cmd_line1 = driver1.cmd_line(True, ['anything'])
-        self.assertEqual(['adb', '-s', mock_run_command._mock_devices[1], 'shell'], cmd_line1)
+        self.assertEqual(['adb', '-s', '123456789ABCDEF0', 'shell'], driver0.cmd_line(True, []))
+        self.assertEqual(['adb', '-s', '123456789ABCDEF1', 'shell'], driver1.cmd_line(True, ['anything']))
 
 
 class ChromiumAndroidTwoPortsTest(unittest.TestCase):
+    # Test that the driver's command line indeed goes through to the driver.
     def test_options_with_two_ports(self):
-        options = MockOptions(additional_drt_flag=['--foo=bar', '--foo=baz'])
-        mock_run_command = MockRunCommand()
-        mock_run_command.mock_two_devices()
-        port0 = chromium_android.ChromiumAndroidPort(
-                MockSystemHost(executive=MockExecutive2(run_command_fn=mock_run_command.mock_run_command_fn)),
-                'chromium-android', options=options)
-        port1 = chromium_android.ChromiumAndroidPort(
-                MockSystemHost(executive=MockExecutive2(run_command_fn=mock_run_command.mock_run_command_fn)),
-                'chromium-android', options=options)
-        cmd_line = port1.driver_cmd_line()
-        self.assertEqual(cmd_line.count('--encode-binary'), 1)
-        self.assertEqual(cmd_line.count('--enable-hardware-gpu'), 1)
+        mock_adb = MockAndroidDebugBridge(2)
+        mock_executive = MockExecutive2(run_command_fn=mock_adb.run_command)
+
+        port0 = chromium_android.ChromiumAndroidPort(MockSystemHost(executive=mock_executive),
+            'chromium-android', options=MockOptions(additional_drt_flag=['--foo=bar']))
+        port1 = chromium_android.ChromiumAndroidPort(MockSystemHost(executive=mock_executive),
+            'chromium-android', options=MockOptions(driver_name='content_shell'))
+
+        self.assertEqual(1, port0.driver_cmd_line().count('--foo=bar'))
+        self.assertEqual(0, port1.driver_cmd_line().count('--create-stdin-fifo'))
+
+
+class ChromiumAndroidDriverTwoDriversTest(unittest.TestCase):
+    # Test two drivers getting the right serial numbers, and that we disregard per-test arguments.
+    def test_two_drivers(self):
+        mock_adb = MockAndroidDebugBridge(2)
+        mock_executive = MockExecutive2(run_command_fn=mock_adb.run_command)
+
+        port = chromium_android.ChromiumAndroidPort(MockSystemHost(executive=mock_executive), 'chromium-android')
+        driver0 = chromium_android.ChromiumAndroidDriver(port, worker_number=0, pixel_tests=True,
+            driver_details=chromium_android.ContentShellDriverDetails())
+        driver1 = chromium_android.ChromiumAndroidDriver(port, worker_number=1, pixel_tests=True,
+            driver_details=chromium_android.ContentShellDriverDetails())
+
+        self.assertEqual(['adb', '-s', '123456789ABCDEF0', 'shell'], driver0.cmd_line(True, []))
+        self.assertEqual(['adb', '-s', '123456789ABCDEF1', 'shell'], driver1.cmd_line(True, []))
+
+
+class ChromiumAndroidTwoPortsTest(unittest.TestCase):
+    # Test that the driver's command line indeed goes through to the driver.
+    def test_options_with_two_ports(self):
+        mock_adb = MockAndroidDebugBridge(2)
+        mock_executive = MockExecutive2(run_command_fn=mock_adb.run_command)
+
+        port0 = chromium_android.ChromiumAndroidPort(MockSystemHost(executive=mock_executive),
+            'chromium-android', options=MockOptions(additional_drt_flag=['--foo=bar']))
+        port1 = chromium_android.ChromiumAndroidPort(MockSystemHost(executive=mock_executive),
+            'chromium-android', options=MockOptions(driver_name='content_shell'))
+
+        self.assertEqual(1, port0.driver_cmd_line().count('--foo=bar'))
+        self.assertEqual(0, port1.driver_cmd_line().count('--create-stdin-fifo'))
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/chromium_linux.py b/Tools/Scripts/webkitpy/layout_tests/port/chromium_linux.py
index 1d88db7..ff4f559 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/chromium_linux.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/chromium_linux.py
@@ -27,9 +27,11 @@
 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
 import logging
+import re
 
 from webkitpy.common.webkit_finder import WebKitFinder
 from webkitpy.layout_tests.port import chromium
+from webkitpy.layout_tests.port import chromium_win
 from webkitpy.layout_tests.port import config
 
 
@@ -39,21 +41,10 @@
 class ChromiumLinuxPort(chromium.ChromiumPort):
     port_name = 'chromium-linux'
 
-    SUPPORTED_ARCHITECTURES = ('x86', 'x86_64')
+    SUPPORTED_VERSIONS = ('x86', 'x86_64')
 
-    FALLBACK_PATHS = {
-        'x86_64': [
-            'chromium-linux',
-            'chromium-win',
-            'chromium',
-        ],
-        'x86': [
-            'chromium-linux-x86',
-            'chromium-linux',
-            'chromium-win',
-            'chromium',
-        ],
-    }
+    FALLBACK_PATHS = { 'x86_64': [ 'chromium-linux' ] + chromium_win.ChromiumWinPort.latest_platform_fallback_path() }
+    FALLBACK_PATHS['x86'] = ['chromium-linux-x86'] + FALLBACK_PATHS['x86_64']
 
     DEFAULT_BUILD_DIRECTORIES = ('sconsbuild', 'out')
 
@@ -74,11 +65,11 @@
         file_output = ''
         if filesystem.exists(driver_path):
             # The --dereference flag tells file to follow symlinks
-            file_output = executive.run_command(['file', '--dereference', driver_path], return_stderr=True)
+            file_output = executive.run_command(['file', '--brief', '--dereference', driver_path], return_stderr=True)
 
-        if 'ELF 32-bit LSB executable' in file_output:
+        if re.match(r'ELF 32-bit LSB\s+executable', file_output):
             return 'x86'
-        if 'ELF 64-bit LSB executable' in file_output:
+        if re.match(r'ELF 64-bit LSB\s+executable', file_output):
             return 'x86_64'
         if file_output:
             _log.warning('Could not determine architecture from "file" output: %s' % file_output)
@@ -99,7 +90,7 @@
         chromium.ChromiumPort.__init__(self, host, port_name, **kwargs)
         (base, arch) = port_name.rsplit('-', 1)
         assert base == 'chromium-linux'
-        assert arch in self.SUPPORTED_ARCHITECTURES
+        assert arch in self.SUPPORTED_VERSIONS
         assert port_name in ('chromium-linux', 'chromium-linux-x86', 'chromium-linux-x86_64')
         self._version = 'lucid'  # We only support lucid right now.
         self._architecture = arch
@@ -148,10 +139,13 @@
         return 'wdiff is not installed; please install using "sudo apt-get install wdiff"'
 
     def _path_to_apache(self):
-        if self._is_redhat_based():
-            return '/usr/sbin/httpd'
-        else:
-            return '/usr/sbin/apache2'
+        # The Apache binary path can vary depending on OS and distribution
+        # See http://wiki.apache.org/httpd/DistrosDefaultLayout
+        for path in ["/usr/sbin/httpd", "/usr/sbin/apache2"]:
+            if self._filesystem.exists(path):
+                return path
+        _log.error("Could not find apache. Not installed or unknown path.")
+        return None
 
     def _path_to_lighttpd(self):
         return "/usr/sbin/lighttpd"
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/chromium_linux_unittest.py b/Tools/Scripts/webkitpy/layout_tests/port/chromium_linux_unittest.py
index 308d02f..2af4fd8 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/chromium_linux_unittest.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/chromium_linux_unittest.py
@@ -63,7 +63,7 @@
                                  expected_architecture='x86_64')
         self.assert_architecture(file_output='ELF 32-bit LSB executable',
                                  expected_architecture='x86')
-        self.assert_architecture(file_output='ELF 64-bit LSB executable',
+        self.assert_architecture(file_output='ELF 64-bit LSB      executable',
                                  expected_architecture='x86_64')
 
     def test_check_illegal_port_names(self):
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/chromium_mac.py b/Tools/Scripts/webkitpy/layout_tests/port/chromium_mac.py
index 39de529..8085a32 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/chromium_mac.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/chromium_mac.py
@@ -38,33 +38,17 @@
 
 
 class ChromiumMacPort(chromium.ChromiumPort):
-    SUPPORTED_OS_VERSIONS = ('snowleopard', 'lion', 'mountainlion', 'future')
+    SUPPORTED_VERSIONS = ('snowleopard', 'lion', 'mountainlion')
     port_name = 'chromium-mac'
 
-    FALLBACK_PATHS = {
-        'snowleopard': [
-            'chromium-mac-snowleopard',
-            'chromium-mac-lion',
-            'chromium-mac',
-            'chromium',
-        ],
-        'lion': [
-            'chromium-mac-lion',
-            'chromium-mac',
-            'chromium',
-        ],
-        'mountainlion': [
-            'chromium-mac',
-            'chromium',
-        ],
-        'future': [
-            'chromium-mac',
-            'chromium',
-        ],
-    }
+    FALLBACK_PATHS = { 'mountainlion': [ 'chromium-mac' ]}
+    FALLBACK_PATHS['lion'] = ['chromium-mac-lion'] + FALLBACK_PATHS['mountainlion']
+    FALLBACK_PATHS['snowleopard'] = ['chromium-mac-snowleopard'] + FALLBACK_PATHS['lion']
 
     DEFAULT_BUILD_DIRECTORIES = ('xcodebuild', 'out')
 
+    CONTENT_SHELL_NAME = 'Content Shell'
+
     @classmethod
     def determine_full_port_name(cls, host, options, port_name):
         if port_name.endswith('-mac'):
@@ -74,7 +58,7 @@
     def __init__(self, host, port_name, **kwargs):
         chromium.ChromiumPort.__init__(self, host, port_name, **kwargs)
         self._version = port_name[port_name.index('chromium-mac-') + len('chromium-mac-'):]
-        assert self._version in self.SUPPORTED_OS_VERSIONS
+        assert self._version in self.SUPPORTED_VERSIONS
 
     def _modules_to_search_for_symbols(self):
         return [self._build_path('ffmpegsumo.so')]
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py b/Tools/Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py
index bf2ff8f..15476f8 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py
@@ -44,7 +44,7 @@
         self.assertEqual(expected, port.name())
 
     def test_versions(self):
-        self.assertTrue(self.make_port().name() in ('chromium-mac-snowleopard', 'chromium-mac-lion', 'chromium-mac-mountainlion', 'chromium-mac-future'))
+        self.assertTrue(self.make_port().name() in ('chromium-mac-snowleopard', 'chromium-mac-lion', 'chromium-mac-mountainlion'))
 
         self.assert_name(None, 'snowleopard', 'chromium-mac-snowleopard')
         self.assert_name('chromium-mac', 'snowleopard', 'chromium-mac-snowleopard')
@@ -53,13 +53,8 @@
 
         self.assert_name(None, 'lion', 'chromium-mac-lion')
         self.assert_name(None, 'mountainlion', 'chromium-mac-mountainlion')
-        self.assert_name(None, 'future', 'chromium-mac-future')
 
         self.assert_name('chromium-mac', 'lion', 'chromium-mac-lion')
-        self.assert_name('chromium-mac-future', 'snowleopard', 'chromium-mac-future')
-        self.assert_name('chromium-mac-future', 'lion', 'chromium-mac-future')
-        self.assert_name('chromium-mac-future', 'mountainlion', 'chromium-mac-future')
-
         self.assertRaises(AssertionError, self.assert_name, None, 'tiger', 'should-raise-assertion-so-this-value-does-not-matter')
 
     def test_baseline_path(self):
@@ -72,9 +67,6 @@
         port = self.make_port(port_name='chromium-mac-mountainlion')
         self.assertEqual(port.baseline_path(), port._webkit_baseline_path('chromium-mac'))
 
-        port = self.make_port(port_name='chromium-mac-future')
-        self.assertEqual(port.baseline_path(), port._webkit_baseline_path('chromium-mac'))
-
     def test_operating_system(self):
         self.assertEqual('mac', self.make_port().operating_system())
 
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/chromium_port_testcase.py b/Tools/Scripts/webkitpy/layout_tests/port/chromium_port_testcase.py
index f151ced..9db9b90 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/chromium_port_testcase.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/chromium_port_testcase.py
@@ -73,8 +73,6 @@
         """Validate the complete set of configurations this port knows about."""
         port = self.make_port()
         self.assertEqual(set(port.all_test_configurations()), set([
-            TestConfiguration('icecreamsandwich', 'x86', 'debug'),
-            TestConfiguration('icecreamsandwich', 'x86', 'release'),
             TestConfiguration('snowleopard', 'x86', 'debug'),
             TestConfiguration('snowleopard', 'x86', 'release'),
             TestConfiguration('lion', 'x86', 'debug'),
@@ -177,24 +175,24 @@
         port.port_name = 'chromium'
 
         generic_path = port.path_to_generic_test_expectations_file()
-        expectations_path = port.path_to_test_expectations_file()
         chromium_overrides_path = port.path_from_chromium_base(
             'webkit', 'tools', 'layout_tests', 'test_expectations.txt')
+        never_fix_tests_path = port._filesystem.join(port.layout_tests_dir(), 'NeverFixTests')
         skia_overrides_path = port.path_from_chromium_base(
             'skia', 'skia_test_expectations.txt')
 
         port._filesystem.write_text_file(skia_overrides_path, 'dummay text')
 
         port._options.builder_name = 'DUMMY_BUILDER_NAME'
-        self.assertEqual(port.expectations_files(), [generic_path, expectations_path, skia_overrides_path, chromium_overrides_path])
+        self.assertEqual(port.expectations_files(), [generic_path, skia_overrides_path, never_fix_tests_path, chromium_overrides_path])
 
         port._options.builder_name = 'builder (deps)'
-        self.assertEqual(port.expectations_files(), [generic_path, expectations_path, skia_overrides_path, chromium_overrides_path])
+        self.assertEqual(port.expectations_files(), [generic_path, skia_overrides_path, never_fix_tests_path, chromium_overrides_path])
 
         # A builder which does NOT observe the Chromium test_expectations,
         # but still observes the Skia test_expectations...
         port._options.builder_name = 'builder'
-        self.assertEqual(port.expectations_files(), [generic_path, expectations_path, skia_overrides_path])
+        self.assertEqual(port.expectations_files(), [generic_path, skia_overrides_path, never_fix_tests_path])
 
     def test_expectations_ordering(self):
         # since we don't implement self.port_name in ChromiumPort.
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/chromium_win.py b/Tools/Scripts/webkitpy/layout_tests/port/chromium_win.py
index 31e10c5..44ee3e8 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/chromium_win.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/chromium_win.py
@@ -43,17 +43,8 @@
     # FIXME: Figure out how to unify this with base.TestConfiguration.all_systems()?
     SUPPORTED_VERSIONS = ('xp', 'win7')
 
-    FALLBACK_PATHS = {
-        'xp': [
-            'chromium-win-xp',
-            'chromium-win',
-            'chromium',
-        ],
-        'win7': [
-            'chromium-win',
-            'chromium',
-        ],
-    }
+    FALLBACK_PATHS = { 'win7': [ 'chromium-win' ]}
+    FALLBACK_PATHS['xp'] = ['chromium-win-xp'] + FALLBACK_PATHS['win7']
 
     DEFAULT_BUILD_DIRECTORIES = ('build', 'out')
 
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/config.py b/Tools/Scripts/webkitpy/layout_tests/port/config.py
index 8c89353..85e517f 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/config.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/config.py
@@ -26,9 +26,7 @@
 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
-"""Wrapper objects for WebKit-specific utility routines."""
-
-# FIXME: This file needs to be unified with common/config/ports.py .
+# FIXME: Remove this file altogether. It's useless in a Blink checkout.
 
 import logging
 
@@ -37,22 +35,6 @@
 
 _log = logging.getLogger(__name__)
 
-#
-# FIXME: This is used to record if we've already hit the filesystem to look
-# for a default configuration. We cache this to speed up the unit tests,
-# but this can be reset with clear_cached_configuration(). This should be
-# replaced with us consistently using MockConfigs() for tests that don't
-# hit the filesystem at all and provide a reliable value.
-#
-_have_determined_configuration = False
-_configuration = "Release"
-
-
-def clear_cached_configuration():
-    global _have_determined_configuration, _configuration
-    _have_determined_configuration = False
-    _configuration = "Release"
-
 
 class Config(object):
     _FLAGS_FROM_CONFIGURATIONS = {
@@ -80,16 +62,7 @@
             flags.append('--' + self._port_implementation)
 
         if not self._build_directories.get(configuration):
-            args = ["perl", self._webkit_finder.path_to_script("webkit-build-directory")] + flags
-            output = self._executive.run_command(args, cwd=self._webkit_finder.webkit_base(), return_stderr=False).rstrip()
-            parts = output.split("\n")
-            self._build_directories[configuration] = parts[0]
-
-            if len(parts) == 2:
-                default_configuration = parts[1][len(parts[0]):]
-                if default_configuration.startswith("/"):
-                    default_configuration = default_configuration[1:]
-                self._build_directories[default_configuration] = parts[1]
+            self._build_directories[configuration] = self._webkit_finder.path_from_webkit_base('out', configuration)
 
         return self._build_directories[configuration]
 
@@ -97,45 +70,4 @@
         return self._FLAGS_FROM_CONFIGURATIONS[configuration]
 
     def default_configuration(self):
-        """Returns the default configuration for the user.
-
-        Returns the value set by 'set-webkit-configuration', or "Release"
-        if that has not been set. This mirrors the logic in webkitdirs.pm."""
-        if not self._default_configuration:
-            self._default_configuration = self._determine_configuration()
-        if not self._default_configuration:
-            self._default_configuration = 'Release'
-        if self._default_configuration not in self._FLAGS_FROM_CONFIGURATIONS:
-            _log.warn("Configuration \"%s\" is not a recognized value.\n" % self._default_configuration)
-            _log.warn("Scripts may fail.  See 'set-webkit-configuration --help'.")
-        return self._default_configuration
-
-    def _determine_configuration(self):
-        # This mirrors the logic in webkitdirs.pm:determineConfiguration().
-        #
-        # FIXME: See the comment at the top of the file regarding unit tests
-        # and our use of global mutable static variables.
-        # FIXME: We should just @memoize this method and then this will only
-        # be read once per object lifetime (which should be sufficiently fast).
-        global _have_determined_configuration, _configuration
-        if not _have_determined_configuration:
-            contents = self._read_configuration()
-            if not contents:
-                contents = "Release"
-            if contents == "Deployment":
-                contents = "Release"
-            if contents == "Development":
-                contents = "Debug"
-            _configuration = contents
-            _have_determined_configuration = True
-        return _configuration
-
-    def _read_configuration(self):
-        try:
-            configuration_path = self._filesystem.join(self.build_directory(None), "Configuration")
-            if not self._filesystem.exists(configuration_path):
-                return None
-        except:
-            return None
-
-        return self._filesystem.read_text_file(configuration_path).rstrip()
+        return 'Release'
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/config_standalone.py b/Tools/Scripts/webkitpy/layout_tests/port/config_standalone.py
deleted file mode 100644
index 274a07b..0000000
--- a/Tools/Scripts/webkitpy/layout_tests/port/config_standalone.py
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright (C) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#    * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#    * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#    * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-"""FIXME: This script is used by
-config_unittest.test_default_configuration__standalone() to read the
-default configuration to work around any possible caching / reset bugs. See
-https://bugs.webkit.org/show_bug?id=49360 for the motivation. We can remove
-this test when we remove the global configuration cache in config.py."""
-
-import os
-import sys
-
-
-# Ensure that webkitpy is in PYTHONPATH.
-this_dir = os.path.abspath(sys.path[0])
-up = os.path.dirname
-script_dir = up(up(up(this_dir)))
-if script_dir not in sys.path:
-    sys.path.append(script_dir)
-
-from webkitpy.common.system import executive
-from webkitpy.common.system import executive_mock
-from webkitpy.common.system import filesystem
-from webkitpy.common.system import filesystem_mock
-
-import config
-
-
-def main(argv=None):
-    if not argv:
-        argv = sys.argv
-
-    if len(argv) == 3 and argv[1] == '--mock':
-        e = executive_mock.MockExecutive2(output='foo\nfoo/%s' % argv[2])
-        fs = filesystem_mock.MockFileSystem({'foo/Configuration': argv[2]})
-    else:
-        e = executive.Executive()
-        fs = filesystem.FileSystem()
-
-    c = config.Config(e, fs)
-    print c.default_configuration()
-
-if __name__ == '__main__':
-    main()
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/config_unittest.py b/Tools/Scripts/webkitpy/layout_tests/port/config_unittest.py
deleted file mode 100644
index 27c83ee..0000000
--- a/Tools/Scripts/webkitpy/layout_tests/port/config_unittest.py
+++ /dev/null
@@ -1,158 +0,0 @@
-# Copyright (C) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#    * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#    * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#    * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import os
-import sys
-import unittest2 as unittest
-
-from webkitpy.common.system.executive import Executive, ScriptError
-from webkitpy.common.system.executive_mock import MockExecutive2
-from webkitpy.common.system.filesystem import FileSystem
-from webkitpy.common.system.filesystem_mock import MockFileSystem
-from webkitpy.common.system.outputcapture import OutputCapture
-from webkitpy.common.webkit_finder import WebKitFinder
-
-import config
-
-
-class ConfigTest(unittest.TestCase):
-    def setUp(self):
-        config.clear_cached_configuration()
-
-    def tearDown(self):
-        config.clear_cached_configuration()
-
-    def make_config(self, output='', files=None, exit_code=0, exception=None, run_command_fn=None, stderr='', port_implementation=None):
-        e = MockExecutive2(output=output, exit_code=exit_code, exception=exception, run_command_fn=run_command_fn, stderr=stderr)
-        fs = MockFileSystem(files)
-        return config.Config(e, fs, port_implementation=port_implementation)
-
-    def assert_configuration(self, contents, expected):
-        # This tests that a configuration file containing
-        # _contents_ ends up being interpreted as _expected_.
-        output = 'foo\nfoo/%s' % contents
-        c = self.make_config(output, {'foo/Configuration': contents})
-        self.assertEqual(c.default_configuration(), expected)
-
-    def test_build_directory(self):
-        # --top-level
-        def mock_webkit_build_directory(arg_list):
-            if arg_list == ['--top-level']:
-                return '/WebKitBuild/'
-            elif arg_list == ['--configuration', '--debug']:
-                return '/WebKitBuild/Debug'
-            elif arg_list == ['--configuration', '--release']:
-                return '/WebKitBuild/Release'
-            elif arg_list == []:
-                return '/WebKitBuild/\n/WebKitBuild//Debug\n'
-            return 'Error'
-
-        def mock_run_command(arg_list):
-            if 'webkit-build-directory' in arg_list[1]:
-                return mock_webkit_build_directory(arg_list[2:])
-            return 'Error'
-
-        c = self.make_config(run_command_fn=mock_run_command)
-        self.assertEqual(c.build_directory(None), '/WebKitBuild/')
-
-        # Test again to check caching
-        self.assertEqual(c.build_directory(None), '/WebKitBuild/')
-
-        # Test other values
-        self.assertTrue(c.build_directory('Release').endswith('/Release'))
-        self.assertTrue(c.build_directory('Debug').endswith('/Debug'))
-        self.assertRaises(KeyError, c.build_directory, 'Unknown')
-
-        # Test that stderr output from webkit-build-directory won't mangle the build dir
-        c = self.make_config(output='/WebKitBuild/', stderr="mock stderr output from webkit-build-directory")
-        self.assertEqual(c.build_directory(None), '/WebKitBuild/')
-
-    def test_build_directory_passes_port_implementation(self):
-        def mock_run_command(arg_list):
-            self.assetEquals('--gtk' in arg_list)
-            return '/tmp'
-
-        c = self.make_config(run_command_fn=mock_run_command, port_implementation='gtk')
-
-    def test_default_configuration__release(self):
-        self.assert_configuration('Release', 'Release')
-
-    def test_default_configuration__debug(self):
-        self.assert_configuration('Debug', 'Debug')
-
-    def test_default_configuration__deployment(self):
-        self.assert_configuration('Deployment', 'Release')
-
-    def test_default_configuration__development(self):
-        self.assert_configuration('Development', 'Debug')
-
-    def test_default_configuration__notfound(self):
-        # This tests what happens if the default configuration file doesn't exist.
-        c = self.make_config(output='foo\nfoo/Release', files={'foo/Configuration': None})
-        self.assertEqual(c.default_configuration(), "Release")
-
-    def test_default_configuration__unknown(self):
-        # Ignore the warning about an unknown configuration value.
-        oc = OutputCapture()
-        oc.capture_output()
-        self.assert_configuration('Unknown', 'Unknown')
-        oc.restore_output()
-
-    def test_default_configuration__standalone(self):
-        # FIXME: This test runs a standalone python script to test
-        # reading the default configuration to work around any possible
-        # caching / reset bugs. See https://bugs.webkit.org/show_bug.cgi?id=49360
-        # for the motivation. We can remove this test when we remove the
-        # global configuration cache in config.py.
-        e = Executive()
-        fs = FileSystem()
-        c = config.Config(e, fs)
-        script = WebKitFinder(fs).path_from_webkit_base('Tools', 'Scripts', 'webkitpy', 'layout_tests', 'port', 'config_standalone.py')
-
-        # Note: don't use 'Release' here, since that's the normal default.
-        expected = 'Debug'
-
-        args = [sys.executable, script, '--mock', expected]
-        actual = e.run_command(args).rstrip()
-        self.assertEqual(actual, expected)
-
-    def test_default_configuration__no_perl(self):
-        # We need perl to run webkit-build-directory to find out where the
-        # default configuration file is. See what happens if perl isn't
-        # installed. (We should get the default value, 'Release').
-        c = self.make_config(exception=OSError)
-        actual = c.default_configuration()
-        self.assertEqual(actual, 'Release')
-
-    def test_default_configuration__scripterror(self):
-        # We run webkit-build-directory to find out where the default
-        # configuration file is. See what happens if that script fails.
-        # (We should get the default value, 'Release').
-        c = self.make_config(exception=ScriptError())
-        actual = c.default_configuration()
-        self.assertEqual(actual, 'Release')
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/efl.py b/Tools/Scripts/webkitpy/layout_tests/port/efl.py
deleted file mode 100644
index 0896634..0000000
--- a/Tools/Scripts/webkitpy/layout_tests/port/efl.py
+++ /dev/null
@@ -1,136 +0,0 @@
-# Copyright (C) 2011 ProFUSION Embedded Systems. All rights reserved.
-# Copyright (C) 2011 Samsung Electronics. All rights reserved.
-# Copyright (C) 2012 Intel Corporation
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-"""WebKit Efl implementation of the Port interface."""
-
-import os
-
-from webkitpy.layout_tests.models.test_configuration import TestConfiguration
-from webkitpy.layout_tests.port.base import Port
-from webkitpy.layout_tests.port.pulseaudio_sanitizer import PulseAudioSanitizer
-from webkitpy.layout_tests.port.xvfbdriver import XvfbDriver
-
-
-class EflPort(Port):
-    port_name = 'efl'
-
-    def __init__(self, *args, **kwargs):
-        super(EflPort, self).__init__(*args, **kwargs)
-
-        self._jhbuild_wrapper_path = [self.path_from_webkit_base('Tools', 'jhbuild', 'jhbuild-wrapper'), '--efl', 'run']
-
-        self.set_option_default('wrapper', ' '.join(self._jhbuild_wrapper_path))
-        self.webprocess_cmd_prefix = self.get_option('webprocess_cmd_prefix')
-
-        self._pulseaudio_sanitizer = PulseAudioSanitizer()
-
-    def _port_flag_for_scripts(self):
-        return "--efl"
-
-    def setup_test_run(self):
-        super(EflPort, self).setup_test_run()
-        self._pulseaudio_sanitizer.unload_pulseaudio_module()
-
-    def setup_environ_for_server(self, server_name=None):
-        env = super(EflPort, self).setup_environ_for_server(server_name)
-
-        # If DISPLAY environment variable is unset in the system
-        # e.g. on build bot, remove DISPLAY variable from the dictionary
-        if not 'DISPLAY' in os.environ:
-            del env['DISPLAY']
-
-        env['TEST_RUNNER_INJECTED_BUNDLE_FILENAME'] = self._build_path('lib', 'libTestRunnerInjectedBundle.so')
-        env['TEST_RUNNER_PLUGIN_PATH'] = self._build_path('lib')
-
-        # Silence GIO warnings about using the "memory" GSettings backend.
-        env['GSETTINGS_BACKEND'] = 'memory'
-
-        if self.webprocess_cmd_prefix:
-            env['WEB_PROCESS_CMD_PREFIX'] = self.webprocess_cmd_prefix
-
-        return env
-
-    def default_timeout_ms(self):
-        # Tests run considerably slower under gdb
-        # or valgrind.
-        if self.get_option('webprocess_cmd_prefix'):
-            return 350 * 1000
-        return super(EflPort, self).default_timeout_ms()
-
-    def clean_up_test_run(self):
-        super(EflPort, self).clean_up_test_run()
-        self._pulseaudio_sanitizer.restore_pulseaudio_module()
-
-    def _generate_all_test_configurations(self):
-        return [TestConfiguration(version=self._version, architecture='x86', build_type=build_type) for build_type in self.ALL_BUILD_TYPES]
-
-    def _driver_class(self):
-        return XvfbDriver
-
-    def _path_to_driver(self):
-        return self._build_path('bin', self.driver_name())
-
-    def _path_to_image_diff(self):
-        return self._build_path('bin', 'ImageDiff')
-
-    def _image_diff_command(self, *args, **kwargs):
-        return self._jhbuild_wrapper_path + super(EflPort, self)._image_diff_command(*args, **kwargs)
-
-    def _path_to_webcore_library(self):
-        static_path = self._build_path('lib', 'libwebcore_efl.a')
-        dyn_path = self._build_path('lib', 'libwebcore_efl.so')
-        return static_path if self._filesystem.exists(static_path) else dyn_path
-
-    def _search_paths(self):
-        search_paths = []
-        if self.get_option('webkit_test_runner'):
-            search_paths.append(self.port_name + '-wk2')
-            search_paths.append('wk2')
-        else:
-            search_paths.append(self.port_name + '-wk1')
-        search_paths.append(self.port_name)
-        return search_paths
-
-    def default_baseline_search_path(self):
-        return map(self._webkit_baseline_path, self._search_paths())
-
-    def _port_specific_expectations_files(self):
-        # FIXME: We should be able to use the default algorithm here.
-        return list(reversed([self._filesystem.join(self._webkit_baseline_path(p), 'TestExpectations') for p in self._search_paths()]))
-
-    def show_results_html_file(self, results_filename):
-        # FIXME: We should find a way to share this implmentation with Gtk,
-        # or teach run-launcher how to call run-safari and move this down to WebKitPort.
-        run_launcher_args = ["file://%s" % results_filename]
-        if self.get_option('webkit_test_runner'):
-            run_launcher_args.append('-2')
-        # FIXME: old-run-webkit-tests also added ["-graphicssystem", "raster", "-style", "windows"]
-        # FIXME: old-run-webkit-tests converted results_filename path for cygwin.
-        self._run_script("run-launcher", run_launcher_args)
-
-    def check_sys_deps(self, needs_http):
-        return super(EflPort, self).check_sys_deps(needs_http) and XvfbDriver.check_xvfb(self)
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/efl_unittest.py b/Tools/Scripts/webkitpy/layout_tests/port/efl_unittest.py
deleted file mode 100644
index 503afda..0000000
--- a/Tools/Scripts/webkitpy/layout_tests/port/efl_unittest.py
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright (C) 2011 ProFUSION Embedded Systems. All rights reserved.
-# Copyright (C) 2011 Samsung Electronics. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#    * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#    * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import unittest2 as unittest
-
-from webkitpy.common.system.executive_mock import MockExecutive
-from webkitpy.common.system.outputcapture import OutputCapture
-from webkitpy.layout_tests.port.efl import EflPort
-from webkitpy.layout_tests.port.pulseaudio_sanitizer_mock import PulseAudioSanitizerMock
-from webkitpy.layout_tests.port import port_testcase
-
-
-class EflPortTest(port_testcase.PortTestCase):
-    port_name = 'efl'
-    port_maker = EflPort
-
-    # Additionally mocks out the PulseAudioSanitizer methods.
-    def make_port(self, host=None, port_name=None, options=None, os_name=None, os_version=None, **kwargs):
-        port = super(EflPortTest, self).make_port(host, port_name, options, os_name, os_version, **kwargs)
-        port._pulseaudio_sanitizer = PulseAudioSanitizerMock()
-        return port
-
-    def test_show_results_html_file(self):
-        port = self.make_port()
-        port._executive = MockExecutive(should_log=True)
-        expected_logs = "MOCK run_command: ['Tools/Scripts/run-launcher', '--release', '--efl', 'file://test.html'], cwd=/mock-checkout\n"
-        OutputCapture().assert_outputs(self, port.show_results_html_file, ["test.html"], expected_logs=expected_logs)
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/factory.py b/Tools/Scripts/webkitpy/layout_tests/port/factory.py
index 902ee22..e83cdd3 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/factory.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/factory.py
@@ -45,15 +45,6 @@
         optparse.make_option('--chromium-android', action='store_const', dest='platform',
             const=('chromium-android*' if use_globs else 'chromium-android'),
             help=('Alias for --platform=chromium-android*' if use_globs else 'Alias for --platform=chromium')),
-        optparse.make_option('--efl', action='store_const', dest='platform',
-            const=('efl*' if use_globs else 'efl'),
-            help=('Alias for --platform=efl*' if use_globs else 'Alias for --platform=efl')),
-        optparse.make_option('--gtk', action='store_const', dest='platform',
-            const=('gtk*' if use_globs else 'gtk'),
-            help=('Alias for --platform=gtk*' if use_globs else 'Alias for --platform=gtk')),
-        optparse.make_option('--qt', action='store_const', dest="platform",
-            const=('qt*' if use_globs else 'qt'),
-            help=('Alias for --platform=qt' if use_globs else 'Alias for --platform=qt')),
         ]
 
 
@@ -75,7 +66,7 @@
     configuration = "Debug" if re.search(r"[d|D](ebu|b)g", builder_name) else "Release"
     is_webkit2 = builder_name.find("WK2") != -1
     builder_name = builder_name
-    return optparse.Values({'builder_name': builder_name, 'configuration': configuration, 'webkit_test_runner': is_webkit2})
+    return optparse.Values({'builder_name': builder_name, 'configuration': configuration})
 
 
 class PortFactory(object):
@@ -84,13 +75,8 @@
         'chromium_linux.ChromiumLinuxPort',
         'chromium_mac.ChromiumMacPort',
         'chromium_win.ChromiumWinPort',
-        'efl.EflPort',
-        'gtk.GtkPort',
-        'mac.MacPort',
         'mock_drt.MockDRTPort',
-        'qt.QtPort',
         'test.TestPort',
-        'win.WinPort',
     )
 
     def __init__(self, host):
@@ -101,9 +87,9 @@
         if platform.is_linux() or platform.is_freebsd():
             return 'chromium-linux'
         elif platform.is_mac():
-            return 'mac'
+            return 'chromium-mac'
         elif platform.is_win():
-            return 'win'
+            return 'chromium-win'
         raise NotImplementedError('unknown platform: %s' % platform)
 
     def get(self, port_name=None, options=None, **kwargs):
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/factory_unittest.py b/Tools/Scripts/webkitpy/layout_tests/port/factory_unittest.py
index 363b7b9..32f3eb9 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/factory_unittest.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/factory_unittest.py
@@ -36,11 +36,7 @@
 from webkitpy.layout_tests.port import chromium_mac
 from webkitpy.layout_tests.port import chromium_win
 from webkitpy.layout_tests.port import factory
-from webkitpy.layout_tests.port import gtk
-from webkitpy.layout_tests.port import mac
-from webkitpy.layout_tests.port import qt
 from webkitpy.layout_tests.port import test
-from webkitpy.layout_tests.port import win
 
 
 class FactoryTest(unittest.TestCase):
@@ -56,25 +52,6 @@
         port = factory.PortFactory(host).get(port_name, options=options)
         self.assertIsInstance(port, cls)
 
-    def test_mac(self):
-        self.assert_port(port_name='mac-lion', cls=mac.MacPort)
-        self.assert_port(port_name='mac-lion-wk2', cls=mac.MacPort)
-        self.assert_port(port_name='mac', os_name='mac', os_version='lion', cls=mac.MacPort)
-        self.assert_port(port_name=None,  os_name='mac', os_version='lion', cls=mac.MacPort)
-
-    def test_win(self):
-        self.assert_port(port_name='win-xp', cls=win.WinPort)
-        self.assert_port(port_name='win-xp-wk2', cls=win.WinPort)
-        self.assert_port(port_name='win', os_name='win', os_version='xp', cls=win.WinPort)
-        self.assert_port(port_name=None, os_name='win', os_version='xp', cls=win.WinPort)
-        self.assert_port(port_name=None, os_name='win', os_version='xp', options=self.webkit_options, cls=win.WinPort)
-
-    def test_gtk(self):
-        self.assert_port(port_name='gtk', cls=gtk.GtkPort)
-
-    def test_qt(self):
-        self.assert_port(port_name='qt', cls=qt.QtPort)
-
     def test_chromium_mac(self):
         self.assert_port(port_name='chromium-mac', os_name='mac', os_version='snowleopard',
                          cls=chromium_mac.ChromiumMacPort)
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/gtk.py b/Tools/Scripts/webkitpy/layout_tests/port/gtk.py
deleted file mode 100644
index d2d799e..0000000
--- a/Tools/Scripts/webkitpy/layout_tests/port/gtk.py
+++ /dev/null
@@ -1,179 +0,0 @@
-# Copyright (C) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the Google name nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import os
-import subprocess
-
-from webkitpy.layout_tests.models.test_configuration import TestConfiguration
-from webkitpy.layout_tests.port.base import Port
-from webkitpy.layout_tests.port.pulseaudio_sanitizer import PulseAudioSanitizer
-from webkitpy.layout_tests.port.xvfbdriver import XvfbDriver
-
-
-class GtkPort(Port):
-    port_name = "gtk"
-
-    def __init__(self, *args, **kwargs):
-        super(GtkPort, self).__init__(*args, **kwargs)
-        self._pulseaudio_sanitizer = PulseAudioSanitizer()
-
-    def warn_if_bug_missing_in_test_expectations(self):
-        return True
-
-    def _port_flag_for_scripts(self):
-        return "--gtk"
-
-    def _driver_class(self):
-        return XvfbDriver
-
-    def default_timeout_ms(self):
-        if self.get_option('configuration') == 'Debug':
-            return 12 * 1000
-        return 6 * 1000
-
-    def setup_test_run(self):
-        super(GtkPort, self).setup_test_run()
-        self._pulseaudio_sanitizer.unload_pulseaudio_module()
-
-    def clean_up_test_run(self):
-        super(GtkPort, self).clean_up_test_run()
-        self._pulseaudio_sanitizer.restore_pulseaudio_module()
-
-    def setup_environ_for_server(self, server_name=None):
-        environment = super(GtkPort, self).setup_environ_for_server(server_name)
-        environment['GTK_MODULES'] = 'gail'
-        environment['GSETTINGS_BACKEND'] = 'memory'
-        environment['LIBOVERLAY_SCROLLBAR'] = '0'
-        environment['TEST_RUNNER_INJECTED_BUNDLE_FILENAME'] = self._build_path('Libraries', 'libTestRunnerInjectedBundle.la')
-        environment['TEST_RUNNER_TEST_PLUGIN_PATH'] = self._build_path('TestNetscapePlugin', '.libs')
-        environment['WEBKIT_INSPECTOR_PATH'] = self._build_path('Programs', 'resources', 'inspector')
-        environment['AUDIO_RESOURCES_PATH'] = self.path_from_webkit_base('Source', 'WebCore', 'platform', 'audio', 'resources')
-        self._copy_value_from_environ_if_set(environment, 'WEBKITOUTPUTDIR')
-        return environment
-
-    def _generate_all_test_configurations(self):
-        configurations = []
-        for build_type in self.ALL_BUILD_TYPES:
-            configurations.append(TestConfiguration(version=self._version, architecture='x86', build_type=build_type))
-        return configurations
-
-    def _path_to_driver(self):
-        return self._build_path('Programs', self.driver_name())
-
-    def _path_to_image_diff(self):
-        return self._build_path('Programs', 'ImageDiff')
-
-    def _path_to_webcore_library(self):
-        gtk_library_names = [
-            "libwebkitgtk-1.0.so",
-            "libwebkitgtk-3.0.so",
-            "libwebkit2gtk-1.0.so",
-        ]
-
-        for library in gtk_library_names:
-            full_library = self._build_path(".libs", library)
-            if self._filesystem.isfile(full_library):
-                return full_library
-        return None
-
-    def _search_paths(self):
-        search_paths = []
-        if self.get_option('webkit_test_runner'):
-            search_paths.extend([self.port_name + '-wk2', 'wk2'])
-        else:
-            search_paths.append(self.port_name + '-wk1')
-        search_paths.append(self.port_name)
-        search_paths.extend(self.get_option("additional_platform_directory", []))
-        return search_paths
-
-    def default_baseline_search_path(self):
-        return map(self._webkit_baseline_path, self._search_paths())
-
-    def _port_specific_expectations_files(self):
-        return [self._filesystem.join(self._webkit_baseline_path(p), 'TestExpectations') for p in reversed(self._search_paths())]
-
-    # FIXME: We should find a way to share this implmentation with Gtk,
-    # or teach run-launcher how to call run-safari and move this down to Port.
-    def show_results_html_file(self, results_filename):
-        run_launcher_args = ["file://%s" % results_filename]
-        if self.get_option('webkit_test_runner'):
-            run_launcher_args.append('-2')
-        # FIXME: old-run-webkit-tests also added ["-graphicssystem", "raster", "-style", "windows"]
-        # FIXME: old-run-webkit-tests converted results_filename path for cygwin.
-        self._run_script("run-launcher", run_launcher_args)
-
-    def check_sys_deps(self, needs_http):
-        return super(GtkPort, self).check_sys_deps(needs_http) and XvfbDriver.check_xvfb(self)
-
-    def _get_gdb_output(self, coredump_path):
-        cmd = ['gdb', '-ex', 'thread apply all bt 1024', '--batch', str(self._path_to_driver()), coredump_path]
-        proc = subprocess.Popen(cmd, stdin=None, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
-        stdout, stderr = proc.communicate()
-        errors = [l.strip().decode('utf8', 'ignore') for l in stderr.splitlines()]
-        return (stdout.decode('utf8', 'ignore'), errors)
-
-    def _get_crash_log(self, name, pid, stdout, stderr, newer_than):
-        pid_representation = str(pid or '<unknown>')
-        log_directory = os.environ.get("WEBKIT_CORE_DUMPS_DIRECTORY")
-        errors = []
-        crash_log = ''
-        expected_crash_dump_filename = "core-pid_%s-_-process_%s" % (pid_representation, name)
-
-        def match_filename(filesystem, directory, filename):
-            if pid:
-                return filename == expected_crash_dump_filename
-            return filename.find(name) > -1
-
-        if log_directory:
-            dumps = self._filesystem.files_under(log_directory, file_filter=match_filename)
-            if dumps:
-                # Get the most recent coredump matching the pid and/or process name.
-                coredump_path = list(reversed(sorted(dumps)))[0]
-                if not newer_than or self._filesystem.mtime(coredump_path) > newer_than:
-                    crash_log, errors = self._get_gdb_output(coredump_path)
-
-        stderr_lines = errors + (stderr or '<empty>').decode('utf8', 'ignore').splitlines()
-        errors_str = '\n'.join(('STDERR: ' + l) for l in stderr_lines)
-        if not crash_log:
-            if not log_directory:
-                log_directory = "/path/to/coredumps"
-            core_pattern = os.path.join(log_directory, "core-pid_%p-_-process_%e")
-            crash_log = """\
-Coredump %(expected_crash_dump_filename)s not found. To enable crash logs:
-
-- run this command as super-user: echo "%(core_pattern)s" > /proc/sys/kernel/core_pattern
-- enable core dumps: ulimit -c unlimited
-- set the WEBKIT_CORE_DUMPS_DIRECTORY environment variable: export WEBKIT_CORE_DUMPS_DIRECTORY=%(log_directory)s
-
-""" % locals()
-
-        return (stderr, """\
-Crash log for %(name)s (pid %(pid_representation)s):
-
-%(crash_log)s
-%(errors_str)s""" % locals())
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/gtk_unittest.py b/Tools/Scripts/webkitpy/layout_tests/port/gtk_unittest.py
deleted file mode 100644
index 7d24bb3..0000000
--- a/Tools/Scripts/webkitpy/layout_tests/port/gtk_unittest.py
+++ /dev/null
@@ -1,110 +0,0 @@
-# Copyright (C) 2011 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#    * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#    * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#    * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import unittest2 as unittest
-import sys
-import os
-
-from webkitpy.common.system.executive_mock import MockExecutive
-from webkitpy.common.system.filesystem_mock import MockFileSystem
-from webkitpy.common.system.outputcapture import OutputCapture
-from webkitpy.layout_tests.port.gtk import GtkPort
-from webkitpy.layout_tests.port.pulseaudio_sanitizer_mock import PulseAudioSanitizerMock
-from webkitpy.layout_tests.port import port_testcase
-from webkitpy.thirdparty.mock import Mock
-from webkitpy.tool.mocktool import MockOptions
-
-
-class GtkPortTest(port_testcase.PortTestCase):
-    port_name = 'gtk'
-    port_maker = GtkPort
-
-    # Additionally mocks out the PulseAudioSanitizer methods.
-    def make_port(self, host=None, port_name=None, options=None, os_name=None, os_version=None, **kwargs):
-        port = super(GtkPortTest, self).make_port(host, port_name, options, os_name, os_version, **kwargs)
-        port._pulseaudio_sanitizer = PulseAudioSanitizerMock()
-        return port
-
-    def test_default_baseline_search_path(self):
-        port = self.make_port()
-        self.assertEqual(port.default_baseline_search_path(), ['/mock-checkout/LayoutTests/platform/gtk-wk1',
-            '/mock-checkout/LayoutTests/platform/gtk'])
-
-        port = self.make_port(options=MockOptions(webkit_test_runner=True))
-        self.assertEqual(port.default_baseline_search_path(), ['/mock-checkout/LayoutTests/platform/gtk-wk2',
-            '/mock-checkout/LayoutTests/platform/wk2', '/mock-checkout/LayoutTests/platform/gtk'])
-
-    def test_port_specific_expectations_files(self):
-        port = self.make_port()
-        self.assertEqual(port.expectations_files(), ['/mock-checkout/LayoutTests/TestExpectations',
-            '/mock-checkout/LayoutTests/platform/gtk/TestExpectations',
-            '/mock-checkout/LayoutTests/platform/gtk-wk1/TestExpectations'])
-
-        port = self.make_port(options=MockOptions(webkit_test_runner=True))
-        self.assertEqual(port.expectations_files(), ['/mock-checkout/LayoutTests/TestExpectations',
-            '/mock-checkout/LayoutTests/platform/gtk/TestExpectations',
-            '/mock-checkout/LayoutTests/platform/wk2/TestExpectations',
-            '/mock-checkout/LayoutTests/platform/gtk-wk2/TestExpectations'])
-
-    def test_show_results_html_file(self):
-        port = self.make_port()
-        port._executive = MockExecutive(should_log=True)
-        expected_logs = "MOCK run_command: ['Tools/Scripts/run-launcher', '--release', '--gtk', 'file://test.html'], cwd=/mock-checkout\n"
-        OutputCapture().assert_outputs(self, port.show_results_html_file, ["test.html"], expected_logs=expected_logs)
-
-    def test_default_timeout_ms(self):
-        self.assertEqual(self.make_port(options=MockOptions(configuration='Release')).default_timeout_ms(), 6000)
-        self.assertEqual(self.make_port(options=MockOptions(configuration='Debug')).default_timeout_ms(), 12000)
-
-    def test_get_crash_log(self):
-        core_directory = os.environ.get('WEBKIT_CORE_DUMPS_DIRECTORY', '/path/to/coredumps')
-        core_pattern = os.path.join(core_directory, "core-pid_%p-_-process_%e")
-        mock_empty_crash_log = """\
-Crash log for DumpRenderTree (pid 28529):
-
-Coredump core-pid_28529-_-process_DumpRenderTree not found. To enable crash logs:
-
-- run this command as super-user: echo "%(core_pattern)s" > /proc/sys/kernel/core_pattern
-- enable core dumps: ulimit -c unlimited
-- set the WEBKIT_CORE_DUMPS_DIRECTORY environment variable: export WEBKIT_CORE_DUMPS_DIRECTORY=%(core_directory)s
-
-
-STDERR: <empty>""" % locals()
-
-        def _mock_gdb_output(coredump_path):
-            return (mock_empty_crash_log, [])
-
-        port = self.make_port()
-        port._get_gdb_output = mock_empty_crash_log
-        stderr, log = port._get_crash_log("DumpRenderTree", 28529, "", "", newer_than=None)
-        self.assertEqual(stderr, "")
-        self.assertMultiLineEqual(log, mock_empty_crash_log)
-
-        stderr, log = port._get_crash_log("DumpRenderTree", 28529, "", "", newer_than=0.0)
-        self.assertEqual(stderr, "")
-        self.assertMultiLineEqual(log, mock_empty_crash_log)
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/leakdetector.py b/Tools/Scripts/webkitpy/layout_tests/port/leakdetector.py
deleted file mode 100644
index f46cd34..0000000
--- a/Tools/Scripts/webkitpy/layout_tests/port/leakdetector.py
+++ /dev/null
@@ -1,153 +0,0 @@
-# Copyright (C) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the Google name nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import logging
-import re
-
-from webkitpy.common.system.executive import ScriptError
-
-_log = logging.getLogger(__name__)
-
-
-# If other ports/platforms decide to support --leaks, we should see about sharing as much of this code as possible.
-# Right now this code is only used by Apple's MacPort.
-
-class LeakDetector(object):
-    def __init__(self, port):
-        # We should operate on a "platform" not a port here.
-        self._port = port
-        self._executive = port._executive
-        self._filesystem = port._filesystem
-
-    # We exclude the following reported leaks so they do not get in our way when looking for WebKit leaks:
-    # This allows us ignore known leaks and only be alerted when new leaks occur. Some leaks are in the old
-    # versions of the system frameworks that are being used by the leaks bots. Even though a leak has been
-    # fixed, it will be listed here until the bot has been updated with the newer frameworks.
-    def _types_to_exlude_from_leaks(self):
-        # Currently we don't have any type excludes from OS leaks, but we will likely again in the future.
-        return []
-
-    def _callstacks_to_exclude_from_leaks(self):
-        callstacks = [
-            "Flash_EnforceLocalSecurity",  # leaks in Flash plug-in code, rdar://problem/4449747
-            "ScanFromString", # <http://code.google.com/p/angleproject/issues/detail?id=249> leak in ANGLE
-        ]
-        if self._port.is_snowleopard():
-            callstacks += [
-                "readMakerNoteProps",  # <rdar://problem/7156432> leak in ImageIO
-                "QTKitMovieControllerView completeUISetup",  # <rdar://problem/7155156> leak in QTKit
-                "getVMInitArgs",  # <rdar://problem/7714444> leak in Java
-                "Java_java_lang_System_initProperties",  # <rdar://problem/7714465> leak in Java
-                "glrCompExecuteKernel",  # <rdar://problem/7815391> leak in graphics driver while using OpenGL
-                "NSNumberFormatter getObjectValue:forString:errorDescription:",  # <rdar://problem/7149350> Leak in NSNumberFormatter
-            ]
-        elif self._port.is_lion():
-            callstacks += [
-                "FigByteFlumeCustomURLCreateWithURL", # <rdar://problem/10461926> leak in CoreMedia
-                "PDFPage\(PDFPageInternal\) pageLayoutIfAvail", # <rdar://problem/10462055> leak in PDFKit
-                "SecTransformExecute", # <rdar://problem/10470667> leak in Security.framework
-                "_NSCopyStyleRefForFocusRingStyleClip", # <rdar://problem/10462031> leak in AppKit
-            ]
-        return callstacks
-
-    def _leaks_args(self, pid):
-        leaks_args = []
-        for callstack in self._callstacks_to_exclude_from_leaks():
-            leaks_args += ['--exclude-callstack=%s' % callstack]
-        for excluded_type in self._types_to_exlude_from_leaks():
-            leaks_args += ['--exclude-type=%s' % excluded_type]
-        leaks_args.append(pid)
-        return leaks_args
-
-    def _parse_leaks_output(self, leaks_output):
-        _, count, bytes = re.search(r'Process (?P<pid>\d+): (?P<count>\d+) leaks? for (?P<bytes>\d+) total', leaks_output).groups()
-        excluded_match = re.search(r'(?P<excluded>\d+) leaks? excluded', leaks_output)
-        excluded = excluded_match.group('excluded') if excluded_match else 0
-        return int(count), int(excluded), int(bytes)
-
-    def leaks_files_in_directory(self, directory):
-        return self._filesystem.glob(self._filesystem.join(directory, "*-leaks.txt"))
-
-    def leaks_file_name(self, process_name, process_pid):
-        # We include the number of files this worker has already written in the name to prevent overwritting previous leak results..
-        return "%s-%s-leaks.txt" % (process_name, process_pid)
-
-    def count_total_bytes_and_unique_leaks(self, leak_files):
-        merge_depth = 5  # ORWT had a --merge-leak-depth argument, but that seems out of scope for the run-webkit-tests tool.
-        args = [
-            '--merge-depth',
-            merge_depth,
-        ] + leak_files
-        try:
-            parse_malloc_history_output = self._port._run_script("parse-malloc-history", args, include_configuration_arguments=False)
-        except ScriptError, e:
-            _log.warn("Failed to parse leaks output: %s" % e.message_with_output())
-            return
-
-        # total: 5,888 bytes (0 bytes excluded).
-        unique_leak_count = len(re.findall(r'^(\d*)\scalls', parse_malloc_history_output, re.MULTILINE))
-        total_bytes_string = re.search(r'^total\:\s(.+)\s\(', parse_malloc_history_output, re.MULTILINE).group(1)
-        return (total_bytes_string, unique_leak_count)
-
-    def count_total_leaks(self, leak_file_paths):
-        total_leaks = 0
-        for leak_file_path in leak_file_paths:
-            # Leaks have been seen to include non-utf8 data, so we use read_binary_file.
-            # See https://bugs.webkit.org/show_bug.cgi?id=71112.
-            leaks_output = self._filesystem.read_binary_file(leak_file_path)
-            count, _, _ = self._parse_leaks_output(leaks_output)
-            total_leaks += count
-        return total_leaks
-
-    def check_for_leaks(self, process_name, process_pid):
-        _log.debug("Checking for leaks in %s" % process_name)
-        try:
-            # Oddly enough, run-leaks (or the underlying leaks tool) does not seem to always output utf-8,
-            # thus we pass decode_output=False.  Without this code we've seen errors like:
-            # "UnicodeDecodeError: 'utf8' codec can't decode byte 0x88 in position 779874: unexpected code byte"
-            leaks_output = self._port._run_script("run-leaks", self._leaks_args(process_pid), include_configuration_arguments=False, decode_output=False)
-        except ScriptError, e:
-            _log.warn("Failed to run leaks tool: %s" % e.message_with_output())
-            return
-
-        # FIXME: We end up parsing this output 3 times.  Once here and twice for summarizing.
-        count, excluded, bytes = self._parse_leaks_output(leaks_output)
-        adjusted_count = count - excluded
-        if not adjusted_count:
-            return
-
-        leaks_filename = self.leaks_file_name(process_name, process_pid)
-        leaks_output_path = self._filesystem.join(self._port.results_directory(), leaks_filename)
-        self._filesystem.write_binary_file(leaks_output_path, leaks_output)
-
-        # FIXME: Ideally we would not be logging from the worker process, but rather pass the leak
-        # information back to the manager and have it log.
-        if excluded:
-            _log.info("%s leaks (%s bytes including %s excluded leaks) were found, details in %s" % (adjusted_count, bytes, excluded, leaks_output_path))
-        else:
-            _log.info("%s leaks (%s bytes) were found, details in %s" % (count, bytes, leaks_output_path))
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/leakdetector_unittest.py b/Tools/Scripts/webkitpy/layout_tests/port/leakdetector_unittest.py
deleted file mode 100644
index f2daec9..0000000
--- a/Tools/Scripts/webkitpy/layout_tests/port/leakdetector_unittest.py
+++ /dev/null
@@ -1,152 +0,0 @@
-# Copyright (C) 2011 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#    * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#    * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#    * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import unittest2 as unittest
-
-from webkitpy.layout_tests.port.leakdetector import LeakDetector
-from webkitpy.common.system.filesystem_mock import MockFileSystem
-from webkitpy.common.system.outputcapture import OutputCapture
-from webkitpy.common.system.executive_mock import MockExecutive
-
-
-class LeakDetectorTest(unittest.TestCase):
-    def _mock_port(self):
-        class MockPort(object):
-            def __init__(self):
-                self._filesystem = MockFileSystem()
-                self._executive = MockExecutive()
-
-        return MockPort()
-
-    def _make_detector(self):
-        return LeakDetector(self._mock_port())
-
-    def test_leaks_args(self):
-        detector = self._make_detector()
-        detector._callstacks_to_exclude_from_leaks = lambda: ['foo bar', 'BAZ']
-        detector._types_to_exlude_from_leaks = lambda: ['abcdefg', 'hi jklmno']
-        expected_args = ['--exclude-callstack=foo bar', '--exclude-callstack=BAZ', '--exclude-type=abcdefg', '--exclude-type=hi jklmno', 1234]
-        self.assertEqual(detector._leaks_args(1234), expected_args)
-
-    example_leaks_output = """Process 5122: 663744 nodes malloced for 78683 KB
-Process 5122: 337301 leaks for 6525216 total leaked bytes.
-Leak: 0x38cb600  size=3072  zone: DefaultMallocZone_0x1d94000   instance of 'NSCFData', type ObjC, implemented in Foundation
-        0xa033f0b8 0x01001384 0x00000b3a 0x00000b3a     ..3.....:...:...
-        0x00000000 0x038cb620 0x00000000 0x00000000     .... ...........
-        0x00000000 0x21000000 0x726c6468 0x00000000     .......!hdlr....
-        0x00000000 0x7269646d 0x6c707061 0x00000000     ....mdirappl....
-        0x00000000 0x04000000 0x736c69c1 0x00000074     .........ilst...
-        0x6f74a923 0x0000006f 0x7461641b 0x00000061     #.too....data...
-        0x00000001 0x76614c00 0x2e323566 0x302e3236     .....Lavf52.62.0
-        0x37000000 0x6d616ea9 0x2f000000 0x61746164     ...7.nam.../data
-        ...
-Leak: 0x2a9c960  size=288  zone: DefaultMallocZone_0x1d94000
-        0x09a1cc47 0x1bda8560 0x3d472cd1 0xfbe9bccd     G...`....,G=....
-        0x8bcda008 0x9e972a91 0xa892cf63 0x2448bdb0     .....*..c.....H$
-        0x4736fc34 0xdbe2d94e 0x25f56688 0x839402a4     4.6GN....f.%....
-        0xd12496b3 0x59c40c12 0x8cfcab2a 0xd20ef9c4     ..$....Y*.......
-        0xe7c56b1b 0x5835af45 0xc69115de 0x6923e4bb     .k..E.5X......#i
-        0x86f15553 0x15d40fa9 0x681288a4 0xc33298a9     SU.........h..2.
-        0x439bb535 0xc4fc743d 0x7dfaaff8 0x2cc49a4a     5..C=t.....}J..,
-        0xdd119df8 0x7e086821 0x3d7d129e 0x2e1b1547     ....!h.~..}=G...
-        ...
-Leak: 0x25102fe0  size=176  zone: DefaultMallocZone_0x1d94000   string 'NSException Data'
-"""
-
-    example_leaks_output_with_exclusions = """
-Process 57064: 865808 nodes malloced for 81032 KB
-Process 57064: 282 leaks for 21920 total leaked bytes.
-Leak: 0x7fc506023960  size=576  zone: DefaultMallocZone_0x107c29000   URLConnectionLoader::LoaderConnectionEventQueue  C++  CFNetwork
-        0x73395460 0x00007fff 0x7488af40 0x00007fff     `T9s....@..t....
-        0x73395488 0x00007fff 0x46eecd74 0x0001ed83     .T9s....t..F....
-        0x0100000a 0x00000000 0x7488bfc0 0x00007fff     ...........t....
-        0x00000000 0x00000000 0x46eecd8b 0x0001ed83     ...........F....
-        0x00000000 0x00000000 0x00000000 0x00000000     ................
-        0x00000000 0x00000000 0x46eecda3 0x0001ed83     ...........F....
-        0x00000000 0x00000000 0x00000000 0x00000000     ................
-        0x00000000 0x00000000 0x46eecdbc 0x0001ed83     ...........F....
-        ...
-Leak: 0x7fc506025980  size=432  zone: DefaultMallocZone_0x107c29000   URLConnectionInstanceData  CFType  CFNetwork
-        0x74862b28 0x00007fff 0x00012b80 0x00000001     (+.t.....+......
-        0x73395310 0x00007fff 0x733953f8 0x00007fff     .S9s.....S9s....
-        0x4d555458 0x00000000 0x00000000 0x00002068     XTUM........h ..
-        0x00000000 0x00000000 0x00000b00 0x00000b00     ................
-        0x00000000 0x00000000 0x060259b8 0x00007fc5     .........Y......
-        0x060259bc 0x00007fc5 0x00000000 0x00000000     .Y..............
-        0x73395418 0x00007fff 0x06025950 0x00007fc5     .T9s....PY......
-        0x73395440 0x00007fff 0x00005013 0x00000001     @T9s.....P......
-        ...
-
-
-Binary Images:
-       0x107ac2000 -        0x107b4aff7 +DumpRenderTree (??? - ???) <5694BE03-A60A-30B2-9D40-27CFFCFB88EE> /Volumes/Data/WebKit-BuildSlave/lion-intel-leaks/build/WebKitBuild/Debug/DumpRenderTree
-       0x107c2f000 -        0x107c58fff +libWebCoreTestSupport.dylib (535.8.0 - compatibility 1.0.0) <E4F7A13E-5807-30F7-A399-62F8395F9106> /Volumes/Data/WebKit-BuildSlave/lion-intel-leaks/build/WebKitBuild/Debug/libWebCoreTestSupport.dylib
-17 leaks excluded (not printed)
-"""
-
-    def test_parse_leaks_output(self):
-        self.assertEqual(self._make_detector()._parse_leaks_output(self.example_leaks_output), (337301, 0, 6525216))
-        self.assertEqual(self._make_detector()._parse_leaks_output(self.example_leaks_output_with_exclusions), (282, 17, 21920))
-
-    def test_leaks_files_in_directory(self):
-        detector = self._make_detector()
-        self.assertEqual(detector.leaks_files_in_directory('/bogus-directory'), [])
-        detector._filesystem = MockFileSystem({
-            '/mock-results/DumpRenderTree-1234-leaks.txt': '',
-            '/mock-results/DumpRenderTree-23423-leaks.txt': '',
-            '/mock-results/DumpRenderTree-823-leaks.txt': '',
-        })
-        self.assertEqual(len(detector.leaks_files_in_directory('/mock-results')), 3)
-
-    def test_count_total_bytes_and_unique_leaks(self):
-        detector = self._make_detector()
-
-        def mock_run_script(name, args, include_configuration_arguments=False):
-            print "MOCK _run_script: %s %s" % (name, args)
-            return """1 calls for 16 bytes: -[NSURLRequest mutableCopyWithZone:] | +[NSObject(NSObject) allocWithZone:] | _internal_class_createInstanceFromZone | calloc | malloc_zone_calloc
-
-147 calls for 9,408 bytes: _CFRuntimeCreateInstance | _ZN3WTF24StringWrapperCFAllocatorL8allocateElmPv StringImplCF.cpp:67 | WTF::fastMalloc(unsigned long) FastMalloc.cpp:268 | malloc | malloc_zone_malloc 
-
-total: 5,888 bytes (0 bytes excluded)."""
-        detector._port._run_script = mock_run_script
-
-        leak_files = ['/mock-results/DumpRenderTree-1234-leaks.txt', '/mock-results/DumpRenderTree-1235-leaks.txt']
-        expected_stdout = "MOCK _run_script: parse-malloc-history ['--merge-depth', 5, '/mock-results/DumpRenderTree-1234-leaks.txt', '/mock-results/DumpRenderTree-1235-leaks.txt']\n"
-        results_tuple = OutputCapture().assert_outputs(self, detector.count_total_bytes_and_unique_leaks, [leak_files], expected_stdout=expected_stdout)
-        self.assertEqual(results_tuple, ("5,888 bytes", 2))
-
-    def test_count_total_leaks(self):
-        detector = self._make_detector()
-        detector._filesystem = MockFileSystem({
-            # The \xff is some non-utf8 characters to make sure we don't blow up trying to parse the file.
-            '/mock-results/DumpRenderTree-1234-leaks.txt': '\xff\nProcess 1234: 12 leaks for 40 total leaked bytes.\n\xff\n',
-            '/mock-results/DumpRenderTree-23423-leaks.txt': 'Process 1235: 12341 leaks for 27934 total leaked bytes.\n',
-            '/mock-results/DumpRenderTree-823-leaks.txt': 'Process 12356: 23412 leaks for 18 total leaked bytes.\n',
-        })
-        leak_file_paths = ['/mock-results/DumpRenderTree-1234-leaks.txt', '/mock-results/DumpRenderTree-23423-leaks.txt', '/mock-results/DumpRenderTree-823-leaks.txt']
-        self.assertEqual(detector.count_total_leaks(leak_file_paths), 35765)
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/mac.py b/Tools/Scripts/webkitpy/layout_tests/port/mac.py
deleted file mode 100644
index 031a239..0000000
--- a/Tools/Scripts/webkitpy/layout_tests/port/mac.py
+++ /dev/null
@@ -1,297 +0,0 @@
-# Copyright (C) 2011 Google Inc. All rights reserved.
-# Copyright (C) 2012, 2013 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the Google name nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import logging
-import os
-import time
-
-from webkitpy.common.system.crashlogs import CrashLogs
-from webkitpy.common.system.executive import ScriptError
-from webkitpy.layout_tests.port.apple import ApplePort
-from webkitpy.layout_tests.port.leakdetector import LeakDetector
-
-
-_log = logging.getLogger(__name__)
-
-
-class MacPort(ApplePort):
-    port_name = "mac"
-
-    VERSION_FALLBACK_ORDER = ['mac-snowleopard', 'mac-lion', 'mac-mountainlion']
-
-    ARCHITECTURES = ['x86_64', 'x86']
-
-    def __init__(self, host, port_name, **kwargs):
-        ApplePort.__init__(self, host, port_name, **kwargs)
-        self._architecture = self.get_option('architecture')
-
-        if not self._architecture:
-            self._architecture = 'x86_64'
-
-        self._leak_detector = LeakDetector(self)
-        if self.get_option("leaks"):
-            # DumpRenderTree slows down noticably if we run more than about 1000 tests in a batch
-            # with MallocStackLogging enabled.
-            self.set_option_default("batch_size", 1000)
-
-    def default_timeout_ms(self):
-        if self.get_option('guard_malloc'):
-            return 350 * 1000
-        return super(MacPort, self).default_timeout_ms()
-
-    def supports_per_test_timeout(self):
-        return True
-
-    def _build_driver_flags(self):
-        return ['ARCHS=i386'] if self.architecture() == 'x86' else []
-
-    def should_retry_crashes(self):
-        # On Apple Mac, we retry crashes due to https://bugs.webkit.org/show_bug.cgi?id=82233
-        return True
-
-    def default_baseline_search_path(self):
-        name = self._name.replace('-wk2', '')
-        if name.endswith(self.FUTURE_VERSION):
-            fallback_names = [self.port_name]
-        else:
-            fallback_names = self.VERSION_FALLBACK_ORDER[self.VERSION_FALLBACK_ORDER.index(name):-1] + [self.port_name]
-        if self.get_option('webkit_test_runner'):
-            fallback_names = [self._wk2_port_name(), 'wk2'] + fallback_names
-        return map(self._webkit_baseline_path, fallback_names)
-
-    def _port_specific_expectations_files(self):
-        return list(reversed([self._filesystem.join(self._webkit_baseline_path(p), 'TestExpectations') for p in self.baseline_search_path()]))
-
-    def setup_environ_for_server(self, server_name=None):
-        env = super(MacPort, self).setup_environ_for_server(server_name)
-        if server_name == self.driver_name():
-            if self.get_option('leaks'):
-                env['MallocStackLogging'] = '1'
-            if self.get_option('guard_malloc'):
-                env['DYLD_INSERT_LIBRARIES'] = '/usr/lib/libgmalloc.dylib'
-        env['XML_CATALOG_FILES'] = ''  # work around missing /etc/catalog <rdar://problem/4292995>
-        return env
-
-    def operating_system(self):
-        return 'mac'
-
-    # Belongs on a Platform object.
-    def is_snowleopard(self):
-        return self._version == "snowleopard"
-
-    # Belongs on a Platform object.
-    def is_lion(self):
-        return self._version == "lion"
-
-    def default_child_processes(self):
-        if self._version == "snowleopard":
-            _log.warning("Cannot run tests in parallel on Snow Leopard due to rdar://problem/10621525.")
-            return 1
-
-        default_count = super(MacPort, self).default_child_processes()
-
-        # FIXME: https://bugs.webkit.org/show_bug.cgi?id=95906  With too many WebProcess WK2 tests get stuck in resource contention.
-        # To alleviate the issue reduce the number of running processes
-        # Anecdotal evidence suggests that a 4 core/8 core logical machine may run into this, but that a 2 core/4 core logical machine does not.
-        if self.get_option('webkit_test_runner') and default_count > 4:
-            default_count = int(.75 * default_count)
-
-        # Make sure we have enough ram to support that many instances:
-        total_memory = self.host.platform.total_bytes_memory()
-        bytes_per_drt = 256 * 1024 * 1024  # Assume each DRT needs 256MB to run.
-        overhead = 2048 * 1024 * 1024  # Assume we need 2GB free for the O/S
-        supportable_instances = max((total_memory - overhead) / bytes_per_drt, 1)  # Always use one process, even if we don't have space for it.
-        if supportable_instances < default_count:
-            _log.warning("This machine could support %s child processes, but only has enough memory for %s." % (default_count, supportable_instances))
-        return min(supportable_instances, default_count)
-
-    def _build_java_test_support(self):
-        java_tests_path = self._filesystem.join(self.layout_tests_dir(), "java")
-        build_java = [self.make_command(), "-C", java_tests_path]
-        if self._executive.run_command(build_java, return_exit_code=True):  # Paths are absolute, so we don't need to set a cwd.
-            _log.error("Failed to build Java support files: %s" % build_java)
-            return False
-        return True
-
-    def check_for_leaks(self, process_name, process_pid):
-        if not self.get_option('leaks'):
-            return
-        # We could use http://code.google.com/p/psutil/ to get the process_name from the pid.
-        self._leak_detector.check_for_leaks(process_name, process_pid)
-
-    def print_leaks_summary(self):
-        if not self.get_option('leaks'):
-            return
-        # We're in the manager process, so the leak detector will not have a valid list of leak files.
-        # FIXME: This is a hack, but we don't have a better way to get this information from the workers yet.
-        # FIXME: This will include too many leaks in subsequent runs until the results directory is cleared!
-        leaks_files = self._leak_detector.leaks_files_in_directory(self.results_directory())
-        if not leaks_files:
-            return
-        total_bytes_string, unique_leaks = self._leak_detector.count_total_bytes_and_unique_leaks(leaks_files)
-        total_leaks = self._leak_detector.count_total_leaks(leaks_files)
-        _log.info("%s total leaks found for a total of %s!" % (total_leaks, total_bytes_string))
-        _log.info("%s unique leaks found!" % unique_leaks)
-
-    def _check_port_build(self):
-        return self._build_java_test_support()
-
-    def _path_to_webcore_library(self):
-        return self._build_path('WebCore.framework/Versions/A/WebCore')
-
-    def show_results_html_file(self, results_filename):
-        # We don't use self._run_script() because we don't want to wait for the script
-        # to exit and we want the output to show up on stdout in case there are errors
-        # launching the browser.
-        self._executive.popen([self.path_to_script('run-safari')] + self._arguments_for_configuration() + ['--no-saved-state', '-NSOpen', results_filename],
-            cwd=self.webkit_base(), stdout=file(os.devnull), stderr=file(os.devnull))
-
-    # FIXME: The next two routines turn off the http locking in order
-    # to work around failures on the bots caused when the slave restarts.
-    # See https://bugs.webkit.org/show_bug.cgi?id=64886 for more info.
-    # The proper fix is to make sure the slave is actually stopping NRWT
-    # properly on restart. Note that by removing the lock file and not waiting,
-    # the result should be that if there is a web server already running,
-    # it'll be killed and this one will be started in its place; this
-    # may lead to weird things happening in the other run. However, I don't
-    # think we're (intentionally) actually running multiple runs concurrently
-    # on any Mac bots.
-
-    def acquire_http_lock(self):
-        pass
-
-    def release_http_lock(self):
-        pass
-
-    def sample_file_path(self, name, pid):
-        return self._filesystem.join(self.results_directory(), "{0}-{1}-sample.txt".format(name, pid))
-
-    def _get_crash_log(self, name, pid, stdout, stderr, newer_than, time_fn=None, sleep_fn=None, wait_for_log=True):
-        # Note that we do slow-spin here and wait, since it appears the time
-        # ReportCrash takes to actually write and flush the file varies when there are
-        # lots of simultaneous crashes going on.
-        # FIXME: Should most of this be moved into CrashLogs()?
-        time_fn = time_fn or time.time
-        sleep_fn = sleep_fn or time.sleep
-        crash_log = ''
-        crash_logs = CrashLogs(self.host)
-        now = time_fn()
-        # FIXME: delete this after we're sure this code is working ...
-        _log.debug('looking for crash log for %s:%s' % (name, str(pid)))
-        deadline = now + 5 * int(self.get_option('child_processes', 1))
-        while not crash_log and now <= deadline:
-            crash_log = crash_logs.find_newest_log(name, pid, include_errors=True, newer_than=newer_than)
-            if not wait_for_log:
-                break
-            if not crash_log or not [line for line in crash_log.splitlines() if not line.startswith('ERROR')]:
-                sleep_fn(0.1)
-                now = time_fn()
-
-        if not crash_log:
-            return (stderr, None)
-        return (stderr, crash_log)
-
-    def look_for_new_crash_logs(self, crashed_processes, start_time):
-        """Since crash logs can take a long time to be written out if the system is
-           under stress do a second pass at the end of the test run.
-
-           crashes: test_name -> pid, process_name tuple of crashed process
-           start_time: time the tests started at.  We're looking for crash
-               logs after that time.
-        """
-        crash_logs = {}
-        for (test_name, process_name, pid) in crashed_processes:
-            # Passing None for output.  This is a second pass after the test finished so
-            # if the output had any logging we would have already collected it.
-            crash_log = self._get_crash_log(process_name, pid, None, None, start_time, wait_for_log=False)[1]
-            if not crash_log:
-                continue
-            crash_logs[test_name] = crash_log
-        return crash_logs
-
-    def look_for_new_samples(self, unresponsive_processes, start_time):
-        sample_files = {}
-        for (test_name, process_name, pid) in unresponsive_processes:
-            sample_file = self.sample_file_path(process_name, pid)
-            if not self._filesystem.isfile(sample_file):
-                continue
-            sample_files[test_name] = sample_file
-        return sample_files
-
-    def sample_process(self, name, pid):
-        try:
-            hang_report = self.sample_file_path(name, pid)
-            self._executive.run_command([
-                "/usr/bin/sample",
-                pid,
-                10,
-                10,
-                "-file",
-                hang_report,
-            ])
-        except ScriptError as e:
-            _log.warning('Unable to sample process:' + str(e))
-
-    def _path_to_helper(self):
-        binary_name = 'LayoutTestHelper'
-        return self._build_path(binary_name)
-
-    def start_helper(self):
-        helper_path = self._path_to_helper()
-        if helper_path:
-            _log.debug("Starting layout helper %s" % helper_path)
-            self._helper = self._executive.popen([helper_path],
-                stdin=self._executive.PIPE, stdout=self._executive.PIPE, stderr=None)
-            is_ready = self._helper.stdout.readline()
-            if not is_ready.startswith('ready'):
-                _log.error("LayoutTestHelper failed to be ready")
-
-    def stop_helper(self):
-        if self._helper:
-            _log.debug("Stopping LayoutTestHelper")
-            try:
-                self._helper.stdin.write("x\n")
-                self._helper.stdin.close()
-                self._helper.wait()
-            except IOError, e:
-                _log.debug("IOError raised while stopping helper: %s" % str(e))
-            self._helper = None
-
-    def make_command(self):
-        return self.xcrun_find('make', '/usr/bin/make')
-
-    def nm_command(self):
-        return self.xcrun_find('nm', 'nm')
-
-    def xcrun_find(self, command, fallback):
-        try:
-            return self._executive.run_command(['xcrun', '-find', command]).rstrip()
-        except ScriptError:
-            _log.warn("xcrun failed; falling back to '%s'." % fallback)
-            return fallback
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/mac_unittest.py b/Tools/Scripts/webkitpy/layout_tests/port/mac_unittest.py
deleted file mode 100644
index 3faf9c1..0000000
--- a/Tools/Scripts/webkitpy/layout_tests/port/mac_unittest.py
+++ /dev/null
@@ -1,257 +0,0 @@
-# Copyright (C) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#    * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#    * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#    * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from webkitpy.layout_tests.port.mac import MacPort
-from webkitpy.layout_tests.port import port_testcase
-from webkitpy.common.system.filesystem_mock import MockFileSystem
-from webkitpy.common.system.outputcapture import OutputCapture
-from webkitpy.tool.mocktool import MockOptions
-from webkitpy.common.system.executive_mock import MockExecutive, MockExecutive2, MockProcess, ScriptError
-from webkitpy.common.system.systemhost_mock import MockSystemHost
-
-
-class MacTest(port_testcase.PortTestCase):
-    os_name = 'mac'
-    os_version = 'lion'
-    port_name = 'mac-lion'
-    port_maker = MacPort
-
-    def assert_skipped_file_search_paths(self, port_name, expected_paths, use_webkit2=False):
-        port = self.make_port(port_name=port_name, options=MockOptions(webkit_test_runner=use_webkit2))
-        self.assertEqual(port._skipped_file_search_paths(), expected_paths)
-
-    def test_default_timeout_ms(self):
-        super(MacTest, self).test_default_timeout_ms()
-        self.assertEqual(self.make_port(options=MockOptions(guard_malloc=True)).default_timeout_ms(), 350000)
-
-
-    example_skipped_file = u"""
-# <rdar://problem/5647952> fast/events/mouseout-on-window.html needs mac DRT to issue mouse out events
-fast/events/mouseout-on-window.html
-
-# <rdar://problem/5643675> window.scrollTo scrolls a window with no scrollbars
-fast/events/attempt-scroll-with-no-scrollbars.html
-
-# see bug <rdar://problem/5646437> REGRESSION (r28015): svg/batik/text/smallFonts fails
-svg/batik/text/smallFonts.svg
-
-# Java tests don't work on WK2
-java/
-"""
-    example_skipped_tests = [
-        "fast/events/mouseout-on-window.html",
-        "fast/events/attempt-scroll-with-no-scrollbars.html",
-        "svg/batik/text/smallFonts.svg",
-        "java",
-    ]
-
-    def test_tests_from_skipped_file_contents(self):
-        port = self.make_port()
-        self.assertEqual(port._tests_from_skipped_file_contents(self.example_skipped_file), self.example_skipped_tests)
-
-    def assert_name(self, port_name, os_version_string, expected):
-        host = MockSystemHost(os_name='mac', os_version=os_version_string)
-        port = self.make_port(host=host, port_name=port_name)
-        self.assertEqual(expected, port.name())
-
-    def test_tests_for_other_platforms(self):
-        platforms = ['mac', 'chromium-linux', 'mac-snowleopard']
-        port = self.make_port(port_name='mac-snowleopard')
-        platform_dir_paths = map(port._webkit_baseline_path, platforms)
-        # Replace our empty mock file system with one which has our expected platform directories.
-        port._filesystem = MockFileSystem(dirs=platform_dir_paths)
-
-        dirs_to_skip = port._tests_for_other_platforms()
-        self.assertIn('platform/chromium-linux', dirs_to_skip)
-        self.assertNotIn('platform/mac', dirs_to_skip)
-        self.assertNotIn('platform/mac-snowleopard', dirs_to_skip)
-
-    def test_version(self):
-        port = self.make_port()
-        self.assertTrue(port.version())
-
-    def test_versions(self):
-        # Note: these tests don't need to be exhaustive as long as we get path coverage.
-        self.assert_name('mac', 'snowleopard', 'mac-snowleopard')
-        self.assert_name('mac-snowleopard', 'leopard', 'mac-snowleopard')
-        self.assert_name('mac-snowleopard', 'lion', 'mac-snowleopard')
-
-        self.assert_name('mac', 'lion', 'mac-lion')
-        self.assert_name('mac-lion', 'lion', 'mac-lion')
-
-        self.assert_name('mac', 'mountainlion', 'mac-mountainlion')
-        self.assert_name('mac-mountainlion', 'lion', 'mac-mountainlion')
-
-        self.assert_name('mac', 'future', 'mac-future')
-        self.assert_name('mac-future', 'future', 'mac-future')
-
-        self.assertRaises(AssertionError, self.assert_name, 'mac-tiger', 'leopard', 'mac-leopard')
-
-    def test_setup_environ_for_server(self):
-        port = self.make_port(options=MockOptions(leaks=True, guard_malloc=True))
-        env = port.setup_environ_for_server(port.driver_name())
-        self.assertEqual(env['MallocStackLogging'], '1')
-        self.assertEqual(env['DYLD_INSERT_LIBRARIES'], '/usr/lib/libgmalloc.dylib')
-
-    def _assert_search_path(self, port_name, baseline_path, search_paths, use_webkit2=False):
-        port = self.make_port(port_name=port_name, options=MockOptions(webkit_test_runner=use_webkit2))
-        absolute_search_paths = map(port._webkit_baseline_path, search_paths)
-        self.assertEqual(port.baseline_path(), port._webkit_baseline_path(baseline_path))
-        self.assertEqual(port.baseline_search_path(), absolute_search_paths)
-
-    def test_baseline_search_path(self):
-        # Note that we don't need total coverage here, just path coverage, since this is all data driven.
-        self._assert_search_path('mac-snowleopard', 'mac-snowleopard', ['mac-snowleopard', 'mac-lion', 'mac'])
-        self._assert_search_path('mac-lion', 'mac-lion', ['mac-lion', 'mac'])
-        self._assert_search_path('mac-mountainlion', 'mac', ['mac'])
-        self._assert_search_path('mac-future', 'mac', ['mac'])
-        self._assert_search_path('mac-snowleopard', 'mac-wk2', ['mac-wk2', 'wk2', 'mac-snowleopard', 'mac-lion', 'mac'], use_webkit2=True)
-        self._assert_search_path('mac-lion', 'mac-wk2', ['mac-wk2', 'wk2', 'mac-lion', 'mac'], use_webkit2=True)
-        self._assert_search_path('mac-mountainlion', 'mac-wk2', ['mac-wk2', 'wk2', 'mac'], use_webkit2=True)
-        self._assert_search_path('mac-future', 'mac-wk2', ['mac-wk2', 'wk2', 'mac'], use_webkit2=True)
-
-    def test_show_results_html_file(self):
-        port = self.make_port()
-        # Delay setting a should_log executive to avoid logging from MacPort.__init__.
-        port._executive = MockExecutive(should_log=True)
-        expected_logs = "MOCK popen: ['Tools/Scripts/run-safari', '--release', '--no-saved-state', '-NSOpen', 'test.html'], cwd=/mock-checkout\n"
-        OutputCapture().assert_outputs(self, port.show_results_html_file, ["test.html"], expected_logs=expected_logs)
-
-    def test_operating_system(self):
-        self.assertEqual('mac', self.make_port().operating_system())
-
-    def test_default_child_processes(self):
-        port = self.make_port(port_name='mac-lion')
-        # MockPlatformInfo only has 2 mock cores.  The important part is that 2 > 1.
-        self.assertEqual(port.default_child_processes(), 2)
-
-        bytes_for_drt = 200 * 1024 * 1024
-        port.host.platform.total_bytes_memory = lambda: bytes_for_drt
-        expected_logs = "This machine could support 2 child processes, but only has enough memory for 1.\n"
-        child_processes = OutputCapture().assert_outputs(self, port.default_child_processes, (), expected_logs=expected_logs)
-        self.assertEqual(child_processes, 1)
-
-        # Make sure that we always use one process, even if we don't have the memory for it.
-        port.host.platform.total_bytes_memory = lambda: bytes_for_drt - 1
-        expected_logs = "This machine could support 2 child processes, but only has enough memory for 1.\n"
-        child_processes = OutputCapture().assert_outputs(self, port.default_child_processes, (), expected_logs=expected_logs)
-        self.assertEqual(child_processes, 1)
-
-        # SnowLeopard has a CFNetwork bug which causes crashes if we execute more than one copy of DRT at once.
-        port = self.make_port(port_name='mac-snowleopard')
-        expected_logs = "Cannot run tests in parallel on Snow Leopard due to rdar://problem/10621525.\n"
-        child_processes = OutputCapture().assert_outputs(self, port.default_child_processes, (), expected_logs=expected_logs)
-        self.assertEqual(child_processes, 1)
-
-    def test_get_crash_log(self):
-        # Mac crash logs are tested elsewhere, so here we just make sure we don't crash.
-        def fake_time_cb():
-            times = [0, 20, 40]
-            return lambda: times.pop(0)
-        port = self.make_port(port_name='mac-snowleopard')
-        port._get_crash_log('DumpRenderTree', 1234, '', '', 0,
-            time_fn=fake_time_cb(), sleep_fn=lambda delay: None)
-
-    def test_helper_starts(self):
-        host = MockSystemHost(MockExecutive())
-        port = self.make_port(host)
-        oc = OutputCapture()
-        oc.capture_output()
-        host.executive._proc = MockProcess('ready\n')
-        port.start_helper()
-        port.stop_helper()
-        oc.restore_output()
-
-        # make sure trying to stop the helper twice is safe.
-        port.stop_helper()
-
-    def test_helper_fails_to_start(self):
-        host = MockSystemHost(MockExecutive())
-        port = self.make_port(host)
-        oc = OutputCapture()
-        oc.capture_output()
-        port.start_helper()
-        port.stop_helper()
-        oc.restore_output()
-
-    def test_helper_fails_to_stop(self):
-        host = MockSystemHost(MockExecutive())
-        host.executive._proc = MockProcess()
-
-        def bad_waiter():
-            raise IOError('failed to wait')
-        host.executive._proc.wait = bad_waiter
-
-        port = self.make_port(host)
-        oc = OutputCapture()
-        oc.capture_output()
-        port.start_helper()
-        port.stop_helper()
-        oc.restore_output()
-
-    def test_sample_process(self):
-
-        def logging_run_command(args):
-            print args
-
-        port = self.make_port()
-        port._executive = MockExecutive2(run_command_fn=logging_run_command)
-        expected_stdout = "['/usr/bin/sample', 42, 10, 10, '-file', '/mock-build/layout-test-results/test-42-sample.txt']\n"
-        OutputCapture().assert_outputs(self, port.sample_process, args=['test', 42], expected_stdout=expected_stdout)
-
-    def test_sample_process_throws_exception(self):
-
-        def throwing_run_command(args):
-            raise ScriptError("MOCK script error")
-
-        port = self.make_port()
-        port._executive = MockExecutive2(run_command_fn=throwing_run_command)
-        OutputCapture().assert_outputs(self, port.sample_process, args=['test', 42])
-
-    def test_32bit(self):
-        port = self.make_port(options=MockOptions(architecture='x86'))
-
-        def run_script(script, args=None, env=None):
-            self.args = args
-
-        port._run_script = run_script
-        self.assertEqual(port.architecture(), 'x86')
-        port._build_driver()
-        self.assertEqual(self.args, ['ARCHS=i386'])
-
-    def test_64bit(self):
-        # Apple Mac port is 64-bit by default
-        port = self.make_port()
-        self.assertEqual(port.architecture(), 'x86_64')
-
-        def run_script(script, args=None, env=None):
-            self.args = args
-
-        port._run_script = run_script
-        port._build_driver()
-        self.assertEqual(self.args, [])
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py b/Tools/Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py
index bd285ef..c882868 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py
@@ -48,7 +48,7 @@
     def make_port(self, options=mock_options):
         host = MockSystemHost()
         test.add_unit_tests_to_mock_filesystem(host.filesystem)
-        return mock_drt.MockDRTPort(host, port_name='mock-mac-lion', options=options)
+        return mock_drt.MockDRTPort(host, port_name='mock-chromium-mac', options=options)
 
     def test_port_name_in_constructor(self):
         self.assertTrue(mock_drt.MockDRTPort(MockSystemHost(), port_name='mock-test'))
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/port_testcase.py b/Tools/Scripts/webkitpy/layout_tests/port/port_testcase.py
index df480d4..2573608 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/port_testcase.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/port_testcase.py
@@ -99,11 +99,11 @@
         self.assertEqual(port.default_max_locked_shards(), 1)
 
     def test_default_timeout_ms(self):
-        self.assertEqual(self.make_port(options=MockOptions(configuration='Release')).default_timeout_ms(), 35000)
-        self.assertEqual(self.make_port(options=MockOptions(configuration='Debug')).default_timeout_ms(), 35000)
+        self.assertEqual(self.make_port(options=MockOptions(configuration='Release')).default_timeout_ms(), 6000)
+        self.assertEqual(self.make_port(options=MockOptions(configuration='Debug')).default_timeout_ms(), 12000)
 
     def test_default_pixel_tests(self):
-        self.assertEqual(self.make_port().default_pixel_tests(), False)
+        self.assertEqual(self.make_port().default_pixel_tests(), True)
 
     def test_driver_cmd_line(self):
         port = self.make_port()
@@ -219,7 +219,7 @@
 
     def integration_test_image_diff(self):
         port = self.make_port()
-        # FIXME: This test will never run since we are using a MockFilesystem for these tests!?!?
+        # FIXME: This test will never run since we are using MockFileSystem for these tests!?!?
         if not port.check_image_diff():
             # The port hasn't been built - don't run the tests.
             return
@@ -425,7 +425,6 @@
             port._filesystem.write_text_file(path, '')
         ordered_dict = port.expectations_dict()
         self.assertEqual(port.path_to_generic_test_expectations_file(), ordered_dict.keys()[0])
-        self.assertEqual(port.path_to_test_expectations_file(), ordered_dict.keys()[1])
 
         options = MockOptions(additional_expectations=['/tmp/foo', '/tmp/bar'])
         port = self.make_port(options=options)
@@ -437,20 +436,6 @@
         self.assertEqual(ordered_dict.keys()[-2:], options.additional_expectations)  # pylint: disable=E1101
         self.assertEqual(ordered_dict.values()[-2:], ['foo', 'bar'])
 
-    def test_path_to_test_expectations_file(self):
-        port = TestWebKitPort()
-        port._options = MockOptions(webkit_test_runner=False)
-        self.assertEqual(port.path_to_test_expectations_file(), '/mock-checkout/LayoutTests/platform/testwebkitport/TestExpectations')
-
-        port = TestWebKitPort()
-        port._options = MockOptions(webkit_test_runner=True)
-        self.assertEqual(port.path_to_test_expectations_file(), '/mock-checkout/LayoutTests/platform/testwebkitport/TestExpectations')
-
-        port = TestWebKitPort()
-        port.host.filesystem.files['/mock-checkout/LayoutTests/platform/testwebkitport/TestExpectations'] = 'some content'
-        port._options = MockOptions(webkit_test_runner=False)
-        self.assertEqual(port.path_to_test_expectations_file(), '/mock-checkout/LayoutTests/platform/testwebkitport/TestExpectations')
-
     def test_skipped_directories_for_symbols(self):
         # This first test confirms that the commonly found symbols result in the expected skipped directories.
         symbols_string = " ".join(["GraphicsLayer", "WebCoreHas3DRendering", "isXHTMLMPDocument", "fooSymbol"])
@@ -475,7 +460,7 @@
 000000000124f670 s __ZZN7WebCore13GraphicsLayer13addChildBelowEPS0_S1_E19__PRETTY_FUNCTION__
 """
         # Note 'compositing' is not in the list of skipped directories (hence the parsing of GraphicsLayer worked):
-        expected_directories = set(['mathml', 'transforms/3d', 'compositing/webgl', 'fast/canvas/webgl', 'animations/3d', 'webgl', 'mhtml', 'http/tests/canvas/webgl', 'fast/css/variables', 'inspector/styles/variables'])
+        expected_directories = set(['mathml', 'compositing/webgl', 'fast/canvas/webgl', 'webgl', 'mhtml', 'http/tests/canvas/webgl', 'fast/css/variables', 'inspector/styles/variables'])
         result_directories = set(TestWebKitPort(symbols_string=symbols_string)._skipped_tests_for_unsupported_features(test_list=['mathml/foo.html']))
         self.assertEqual(result_directories, expected_directories)
 
@@ -513,9 +498,6 @@
         port = TestWebKitPort(port_name="testwebkitport-version")
         self.assertEqual(platform_dirs(port), ['LayoutTests', 'testwebkitport', 'testwebkitport-version'])
 
-        port = TestWebKitPort(port_name="testwebkitport-version-wk2")
-        self.assertEqual(platform_dirs(port), ['LayoutTests', 'testwebkitport', 'testwebkitport-version', 'wk2', 'testwebkitport-wk2'])
-
         port = TestWebKitPort(port_name="testwebkitport-version",
                               options=MockOptions(additional_platform_directory=["internal-testwebkitport"]))
         self.assertEqual(platform_dirs(port), ['LayoutTests', 'testwebkitport', 'testwebkitport-version', 'internal-testwebkitport'])
@@ -533,40 +515,6 @@
         port = TestWebKitPort(host=host)
         self.assertEqual(''.join(port.expectations_dict().values()), 'BUG_TESTEXPECTATIONS SKIP : fast/html/article-element.html = FAIL\n')
 
-    def test_build_driver(self):
-        output = OutputCapture()
-        port = TestWebKitPort()
-        # Delay setting _executive to avoid logging during construction
-        port._executive = MockExecutive(should_log=True)
-        port._options = MockOptions(configuration="Release")  # This should not be necessary, but I think TestWebKitPort is actually reading from disk (and thus detects the current configuration).
-        expected_logs = "MOCK run_command: ['Tools/Scripts/build-dumprendertree', '--release'], cwd=/mock-checkout, env={'LC_ALL': 'C', 'MOCK_ENVIRON_COPY': '1'}\n"
-        self.assertTrue(output.assert_outputs(self, port._build_driver, expected_logs=expected_logs))
-
-        # Make sure when passed --webkit-test-runner we build the right tool.
-        port._options = MockOptions(webkit_test_runner=True, configuration="Release")
-        expected_logs = "MOCK run_command: ['Tools/Scripts/build-dumprendertree', '--release'], cwd=/mock-checkout, env={'LC_ALL': 'C', 'MOCK_ENVIRON_COPY': '1'}\nMOCK run_command: ['Tools/Scripts/build-webkittestrunner', '--release'], cwd=/mock-checkout, env={'LC_ALL': 'C', 'MOCK_ENVIRON_COPY': '1'}\n"
-        self.assertTrue(output.assert_outputs(self, port._build_driver, expected_logs=expected_logs))
-
-        # Make sure we show the build log when --verbose is passed, which we simulate by setting the logging level to DEBUG.
-        output.set_log_level(logging.DEBUG)
-        port._options = MockOptions(configuration="Release")
-        expected_logs = """MOCK run_command: ['Tools/Scripts/build-dumprendertree', '--release'], cwd=/mock-checkout, env={'LC_ALL': 'C', 'MOCK_ENVIRON_COPY': '1'}
-Output of ['Tools/Scripts/build-dumprendertree', '--release']:
-MOCK output of child process
-"""
-        self.assertTrue(output.assert_outputs(self, port._build_driver, expected_logs=expected_logs))
-        output.set_log_level(logging.INFO)
-
-        # Make sure that failure to build returns False.
-        port._executive = MockExecutive(should_log=True, should_throw=True)
-        # Because WK2 currently has to build both webkittestrunner and DRT, if DRT fails, that's the only one it tries.
-        expected_logs = """MOCK run_command: ['Tools/Scripts/build-dumprendertree', '--release'], cwd=/mock-checkout, env={'LC_ALL': 'C', 'MOCK_ENVIRON_COPY': '1'}
-MOCK ScriptError
-
-MOCK output of child process
-"""
-        self.assertFalse(output.assert_outputs(self, port._build_driver, expected_logs=expected_logs))
-
     def _assert_config_file_for_platform(self, port, platform, config_file):
         self.assertEqual(port._apache_config_file_name_for_platform(platform), config_file)
 
@@ -627,30 +575,6 @@
         finally:
             os.environ = saved_environ.copy()
 
-    def test_check_build(self):
-        port = self.make_port(options=MockOptions(build=True))
-        self.build_called = False
-
-        def build_driver_called():
-            self.build_called = True
-            return True
-
-        port._build_driver = build_driver_called
-        port.check_build(False)
-        self.assertTrue(self.build_called)
-
-        port = self.make_port(options=MockOptions(root='/tmp', build=True))
-        self.build_called = False
-        port._build_driver = build_driver_called
-        port.check_build(False)
-        self.assertFalse(self.build_called, None)
-
-        port = self.make_port(options=MockOptions(build=False))
-        self.build_called = False
-        port._build_driver = build_driver_called
-        port.check_build(False)
-        self.assertFalse(self.build_called, None)
-
     def test_additional_platform_directory(self):
         port = self.make_port(options=MockOptions(additional_platform_directory=['/tmp/foo']))
         self.assertEqual(port.baseline_search_path()[0], '/tmp/foo')
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/pulseaudio_sanitizer.py b/Tools/Scripts/webkitpy/layout_tests/port/pulseaudio_sanitizer.py
deleted file mode 100644
index 465b921..0000000
--- a/Tools/Scripts/webkitpy/layout_tests/port/pulseaudio_sanitizer.py
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright (C) 2010 Google Inc. All rights reserved.
-# Copyrigth (C) 2012 Intel Corporation
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the Google name nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import logging
-import os
-import subprocess
-
-
-_log = logging.getLogger(__name__)
-
-
-# Shared by GTK and EFL for pulseaudio sanitizing before running tests.
-class PulseAudioSanitizer:
-    def unload_pulseaudio_module(self):
-        # Unload pulseaudio's module-stream-restore, since it remembers
-        # volume settings from different runs, and could affect
-        # multimedia tests results
-        self._pa_module_index = -1
-        with open(os.devnull, 'w') as devnull:
-            try:
-                pactl_process = subprocess.Popen(["pactl", "list", "short", "modules"], stdout=subprocess.PIPE, stderr=devnull)
-                pactl_process.wait()
-            except OSError:
-                # pactl might not be available.
-                _log.debug('pactl not found. Please install pulseaudio-utils to avoid some potential media test failures.')
-                return
-        modules_list = pactl_process.communicate()[0]
-        for module in modules_list.splitlines():
-            if module.find("module-stream-restore") >= 0:
-                # Some pulseaudio-utils versions don't provide
-                # the index, just an empty string
-                self._pa_module_index = module.split('\t')[0] or -1
-                try:
-                    # Since they could provide other stuff (not an index
-                    # nor an empty string, let's make sure this is an int.
-                    if int(self._pa_module_index) != -1:
-                        pactl_process = subprocess.Popen(["pactl", "unload-module", self._pa_module_index])
-                        pactl_process.wait()
-                        if pactl_process.returncode == 0:
-                            _log.debug('Unloaded module-stream-restore successfully')
-                        else:
-                            _log.debug('Unloading module-stream-restore failed')
-                except ValueError:
-                        # pactl should have returned an index if the module is found
-                        _log.debug('Unable to parse module index. Please check if your pulseaudio-utils version is too old.')
-                return
-
-    def restore_pulseaudio_module(self):
-        # If pulseaudio's module-stream-restore was previously unloaded,
-        # restore it back. We shouldn't need extra checks here, since an
-        # index != -1 here means we successfully unloaded it previously.
-        if self._pa_module_index != -1:
-            with open(os.devnull, 'w') as devnull:
-                pactl_process = subprocess.Popen(["pactl", "load-module", "module-stream-restore"], stdout=devnull, stderr=devnull)
-                pactl_process.wait()
-                if pactl_process.returncode == 0:
-                    _log.debug('Restored module-stream-restore successfully')
-                else:
-                    _log.debug('Restoring module-stream-restore failed')
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/pulseaudio_sanitizer_mock.py b/Tools/Scripts/webkitpy/layout_tests/port/pulseaudio_sanitizer_mock.py
deleted file mode 100644
index 88a962a..0000000
--- a/Tools/Scripts/webkitpy/layout_tests/port/pulseaudio_sanitizer_mock.py
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyrigth (C) 2013 Zan Dobersek <zandobersek@gmail.com>
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the Google name nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
-class PulseAudioSanitizerMock:
-    def unload_pulseaudio_module(self):
-        pass
-
-    def restore_pulseaudio_module(self):
-        pass
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/qt.py b/Tools/Scripts/webkitpy/layout_tests/port/qt.py
deleted file mode 100644
index 4840725..0000000
--- a/Tools/Scripts/webkitpy/layout_tests/port/qt.py
+++ /dev/null
@@ -1,192 +0,0 @@
-# Copyright (C) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the Google name nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-"""QtWebKit implementation of the Port interface."""
-
-import glob
-import logging
-import re
-import sys
-import os
-
-from webkitpy.common.memoized import memoized
-from webkitpy.layout_tests.models.test_configuration import TestConfiguration
-from webkitpy.layout_tests.port.base import Port
-from webkitpy.layout_tests.port.xvfbdriver import XvfbDriver
-
-_log = logging.getLogger(__name__)
-
-
-class QtPort(Port):
-    ALL_VERSIONS = ['linux', 'win', 'mac']
-    port_name = "qt"
-
-    def _wk2_port_name(self):
-        return "qt-5.0-wk2"
-
-    def _port_flag_for_scripts(self):
-        return "--qt"
-
-    @classmethod
-    def determine_full_port_name(cls, host, options, port_name):
-        if port_name and port_name != cls.port_name:
-            return port_name
-        return port_name + '-' + host.platform.os_name
-
-    # sys_platform exists only for unit testing.
-    def __init__(self, host, port_name, **kwargs):
-        super(QtPort, self).__init__(host, port_name, **kwargs)
-
-        # FIXME: This will allow Port.baseline_search_path
-        # to do the right thing, but doesn't include support for qt-4.8 or qt-arm (seen in LayoutTests/platform) yet.
-        self._operating_system = port_name.replace('qt-', '')
-
-        # FIXME: Why is this being set at all?
-        self._version = self.operating_system()
-
-    def _generate_all_test_configurations(self):
-        configurations = []
-        for version in self.ALL_VERSIONS:
-            for build_type in self.ALL_BUILD_TYPES:
-                configurations.append(TestConfiguration(version=version, architecture='x86', build_type=build_type))
-        return configurations
-
-    def _build_driver(self):
-        # The Qt port builds DRT as part of the main build step
-        return True
-
-    def supports_per_test_timeout(self):
-        return True
-
-    def _path_to_driver(self):
-        return self._build_path('bin/%s' % self.driver_name())
-
-    def _path_to_image_diff(self):
-        return self._build_path('bin/ImageDiff')
-
-    def _path_to_webcore_library(self):
-        if self.operating_system() == 'mac':
-            return self._build_path('lib/QtWebKitWidgets.framework/QtWebKitWidgets')
-        else:
-            return self._build_path('lib/libQt5WebKitWidgets.so')
-
-    def _modules_to_search_for_symbols(self):
-        # We search in every library to be reliable in the case of building with CONFIG+=force_static_libs_as_shared.
-        if self.operating_system() == 'mac':
-            frameworks = glob.glob(os.path.join(self._build_path('lib'), '*.framework'))
-            return [os.path.join(framework, os.path.splitext(os.path.basename(framework))[0]) for framework in frameworks]
-        else:
-            suffix = 'dll' if self.operating_system() == 'win' else 'so'
-            return glob.glob(os.path.join(self._build_path('lib'), 'lib*.' + suffix))
-
-    @memoized
-    def qt_version(self):
-        version = ''
-        try:
-            for line in self._executive.run_command(['qmake', '-v']).split('\n'):
-                match = re.search('Qt\sversion\s(?P<version>\d\.\d)', line)
-                if match:
-                    version = match.group('version')
-                    break
-        except OSError:
-            version = '4.8'
-        return version
-
-    def _search_paths(self):
-        #                 qt-5.0-mac-wk2
-        #                /
-        # qt-5.0-wk1    qt-5.0-wk2
-        #            \/
-        #         qt-5.0
-        #                \
-        #    (qt-linux|qt-mac|qt-win)
-        #                |
-        #               qt
-        search_paths = []
-        version = self.qt_version()
-        if '5.0' in version:
-            if self.get_option('webkit_test_runner'):
-                if self.operating_system() == 'mac':
-                    search_paths.append('qt-5.0-mac-wk2')
-                search_paths.append('qt-5.0-wk2')
-            else:
-                search_paths.append('qt-5.0-wk1')
-        search_paths.append('qt-5.0')
-
-        search_paths.append(self.port_name + '-' + self.operating_system())
-        search_paths.append(self.port_name)
-        return search_paths
-
-    def default_baseline_search_path(self):
-        return map(self._webkit_baseline_path, self._search_paths())
-
-    def _port_specific_expectations_files(self):
-        paths = self._search_paths()
-        if self.get_option('webkit_test_runner'):
-            paths.append('wk2')
-
-        # expectations_files() uses the directories listed in _search_paths reversed.
-        # e.g. qt -> qt-linux -> qt-5.0 -> qt-5.0-wk1
-        return list(reversed([self._filesystem.join(self._webkit_baseline_path(p), 'TestExpectations') for p in paths]))
-
-    def setup_environ_for_server(self, server_name=None):
-        clean_env = super(QtPort, self).setup_environ_for_server(server_name)
-        clean_env['QTWEBKIT_PLUGIN_PATH'] = self._build_path('lib/plugins')
-        self._copy_value_from_environ_if_set(clean_env, 'QT_DRT_WEBVIEW_MODE')
-        self._copy_value_from_environ_if_set(clean_env, 'DYLD_IMAGE_SUFFIX')
-        self._copy_value_from_environ_if_set(clean_env, 'QT_WEBKIT_LOG')
-        self._copy_value_from_environ_if_set(clean_env, 'DISABLE_NI_WARNING')
-        self._copy_value_from_environ_if_set(clean_env, 'QT_WEBKIT_PAUSE_UI_PROCESS')
-        self._copy_value_from_environ_if_set(clean_env, 'QT_QPA_PLATFORM_PLUGIN_PATH')
-        self._copy_value_from_environ_if_set(clean_env, 'QT_WEBKIT_DISABLE_UIPROCESS_DUMPPIXELS')
-        return clean_env
-
-    # FIXME: We should find a way to share this implmentation with Gtk,
-    # or teach run-launcher how to call run-safari and move this down to Port.
-    def show_results_html_file(self, results_filename):
-        run_launcher_args = []
-        if self.get_option('webkit_test_runner'):
-            run_launcher_args.append('-2')
-        run_launcher_args.append("file://%s" % results_filename)
-        self._run_script("run-launcher", run_launcher_args)
-
-    def operating_system(self):
-        return self._operating_system
-
-    def check_sys_deps(self, needs_http):
-        result = super(QtPort, self).check_sys_deps(needs_http)
-        if not 'WEBKIT_TESTFONTS' in os.environ:
-            _log.error('\nThe WEBKIT_TESTFONTS environment variable is not defined or not set properly.')
-            _log.error('You must set it before running the tests.')
-            _log.error('Use git to grab the actual fonts from http://gitorious.org/qtwebkit/testfonts')
-            return False
-        return result
-
-    # Qt port is not ready for parallel testing, see https://bugs.webkit.org/show_bug.cgi?id=77730 for details.
-    def default_child_processes(self):
-        return 1
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/qt_unittest.py b/Tools/Scripts/webkitpy/layout_tests/port/qt_unittest.py
deleted file mode 100644
index 2adfbc1..0000000
--- a/Tools/Scripts/webkitpy/layout_tests/port/qt_unittest.py
+++ /dev/null
@@ -1,123 +0,0 @@
-# Copyright (C) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#    * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#    * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#    * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import unittest2 as unittest
-import os
-from copy import deepcopy
-
-from webkitpy.common.system.executive_mock import MockExecutive, MockExecutive2
-from webkitpy.common.system.outputcapture import OutputCapture
-from webkitpy.common.system.systemhost_mock import MockSystemHost
-from webkitpy.layout_tests.port import port_testcase
-from webkitpy.layout_tests.port.qt import QtPort
-from webkitpy.tool.mocktool import MockOptions
-
-
-class QtPortTest(port_testcase.PortTestCase):
-    port_name = 'qt-mac'
-    port_maker = QtPort
-    search_paths_cases = [
-        {'search_paths':['qt-5.0-mac-wk2', 'qt-5.0-wk2', 'qt-5.0', 'qt-mac', 'qt'], 'os_name':'mac', 'use_webkit2':True, 'qt_version':'5.0'},
-        {'search_paths':['qt-5.0-wk2', 'qt-5.0', 'qt-win', 'qt'], 'os_name':'win', 'use_webkit2':True, 'qt_version':'5.0'},
-        {'search_paths':['qt-5.0-wk2', 'qt-5.0', 'qt-linux', 'qt'], 'os_name':'linux', 'use_webkit2':True, 'qt_version':'5.0'},
-
-        {'search_paths':['qt-5.0-wk1', 'qt-5.0', 'qt-mac', 'qt'], 'os_name':'mac', 'use_webkit2':False, 'qt_version':'5.0'},
-        {'search_paths':['qt-5.0-wk1', 'qt-5.0', 'qt-win', 'qt'], 'os_name':'win', 'use_webkit2':False, 'qt_version':'5.0'},
-        {'search_paths':['qt-5.0-wk1', 'qt-5.0', 'qt-linux', 'qt'], 'os_name':'linux', 'use_webkit2':False, 'qt_version':'5.0'},
-    ]
-
-    def _assert_search_path(self, search_paths, os_name, use_webkit2=False, qt_version='5.0'):
-        # FIXME: Port constructors should not "parse" the port name, but
-        # rather be passed components (directly or via setters).  Once
-        # we fix that, this method will need a re-write.
-        host = MockSystemHost(os_name=os_name)
-        host.executive = MockExecutive2(self._qt_version(qt_version))
-        port_name = 'qt-' + os_name
-        port = self.make_port(host=host, qt_version=qt_version, port_name=port_name,
-                              options=MockOptions(webkit_test_runner=use_webkit2, platform='qt'))
-        absolute_search_paths = map(port._webkit_baseline_path, search_paths)
-        self.assertEqual(port.baseline_search_path(), absolute_search_paths)
-
-    def _assert_expectations_files(self, search_paths, os_name, use_webkit2=False, qt_version='5.0'):
-        # FIXME: Port constructors should not "parse" the port name, but
-        # rather be passed components (directly or via setters).  Once
-        # we fix that, this method will need a re-write.
-        host = MockSystemHost(os_name=os_name)
-        host.executive = MockExecutive2(self._qt_version(qt_version))
-        port_name = 'qt-' + os_name
-        port = self.make_port(host=host, qt_version=qt_version, port_name=port_name,
-                              options=MockOptions(webkit_test_runner=use_webkit2, platform='qt'))
-        self.assertEqual(port.expectations_files(), search_paths)
-
-    def _qt_version(self, qt_version):
-        if qt_version in '5.0':
-            return 'QMake version 2.01a\nUsing Qt version 5.0.0 in /usr/local/Trolltech/Qt-5.0.0/lib'
-
-    def test_baseline_search_path(self):
-        for case in self.search_paths_cases:
-            self._assert_search_path(**case)
-
-    def test_expectations_files(self):
-        for case in self.search_paths_cases:
-            expectations_case = deepcopy(case)
-            if expectations_case['use_webkit2']:
-                expectations_case['search_paths'].append("wk2")
-            expectations_case['search_paths'].append('')
-            expectations_case['search_paths'].reverse()
-            expectations_case['search_paths'] = map(lambda path: '/mock-checkout/LayoutTests/TestExpectations' if not path else '/mock-checkout/LayoutTests/platform/%s/TestExpectations' % (path), expectations_case['search_paths'])
-            self._assert_expectations_files(**expectations_case)
-
-    def test_show_results_html_file(self):
-        port = self.make_port()
-        port._executive = MockExecutive(should_log=True)
-        expected_logs = "MOCK run_command: ['Tools/Scripts/run-launcher', '--release', '--qt', 'file://test.html'], cwd=/mock-checkout\n"
-        OutputCapture().assert_outputs(self, port.show_results_html_file, ["test.html"], expected_logs=expected_logs)
-
-    def test_setup_environ_for_server(self):
-        port = self.make_port()
-        env = port.setup_environ_for_server(port.driver_name())
-        self.assertEqual(env['QTWEBKIT_PLUGIN_PATH'], '/mock-build/lib/plugins')
-
-    def test_operating_system(self):
-        self.assertEqual('linux', self.make_port(port_name='qt-linux', os_name='linux').operating_system())
-        self.assertEqual('mac', self.make_port(os_name='mac').operating_system())
-        self.assertEqual('win', self.make_port(port_name='qt-win', os_name='win').operating_system())
-
-    def test_check_sys_deps(self):
-        port = self.make_port()
-
-        # Success
-        os.environ['WEBKIT_TESTFONTS'] = '/tmp/foo'
-        port._executive = MockExecutive2(exit_code=0)
-        self.assertTrue(port.check_sys_deps(needs_http=False))
-
-        # Failure
-        del os.environ['WEBKIT_TESTFONTS']
-        port._executive = MockExecutive2(exit_code=1,
-            output='testing output failure')
-        self.assertFalse(port.check_sys_deps(needs_http=False))
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/test.py b/Tools/Scripts/webkitpy/layout_tests/port/test.py
index c622cc2..b7f633c 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/test.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/test.py
@@ -366,7 +366,7 @@
         Port.__init__(self, host, port_name or TestPort.default_port_name, **kwargs)
         self._tests = unit_test_list()
         self._flakes = set()
-        self._expectations_path = LAYOUT_TEST_DIR + '/platform/test/TestExpectations'
+        self._generic_expectations_path = LAYOUT_TEST_DIR + '/TestExpectations'
         self._results_directory = None
 
         self._operating_system = 'mac'
@@ -385,6 +385,9 @@
         }
         self._version = version_map[self._name]
 
+    def buildbot_archives_baselines(self):
+        return self._name != 'test-win-xp'
+
     def default_pixel_tests(self):
         return True
 
@@ -400,7 +403,7 @@
             'test-win-win7': ['test-win-win7'],
             'test-win-vista': ['test-win-vista', 'test-win-win7'],
             'test-win-xp': ['test-win-xp', 'test-win-vista', 'test-win-win7'],
-            'test-linux-x86_64': ['test-linux', 'test-win-win7'],
+            'test-linux-x86_64': ['test-linux-x86_64', 'test-win-win7'],
         }
         return [self._webkit_baseline_path(d) for d in search_paths[self.name()]]
 
@@ -496,8 +499,8 @@
     def _path_to_apache_config_file(self):
         return self._filesystem.join(self.layout_tests_dir(), 'http', 'conf', 'httpd.conf')
 
-    def path_to_test_expectations_file(self):
-        return self._expectations_path
+    def path_to_generic_test_expectations_file(self):
+        return self._generic_expectations_path
 
     def all_test_configurations(self):
         """Returns a sequence of the TestConfigurations the port supports."""
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/win.py b/Tools/Scripts/webkitpy/layout_tests/port/win.py
deleted file mode 100644
index 6adbf75..0000000
--- a/Tools/Scripts/webkitpy/layout_tests/port/win.py
+++ /dev/null
@@ -1,100 +0,0 @@
-# Copyright (C) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the Google name nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import logging
-import re
-import sys
-
-from webkitpy.common.system.systemhost import SystemHost
-from webkitpy.common.system.executive import ScriptError, Executive
-from webkitpy.common.system.path import abspath_to_uri
-from webkitpy.layout_tests.port.apple import ApplePort
-
-
-_log = logging.getLogger(__name__)
-
-
-class WinPort(ApplePort):
-    port_name = "win"
-
-    VERSION_FALLBACK_ORDER = ["win-xp", "win-vista", "win-7sp0", "win-win7"]
-
-    ARCHITECTURES = ['x86']
-
-    def do_text_results_differ(self, expected_text, actual_text):
-        # Sanity was restored in WK2, so we don't need this hack there.
-        if self.get_option('webkit_test_runner'):
-            return ApplePort.do_text_results_differ(self, expected_text, actual_text)
-
-        # This is a hack (which dates back to ORWT).
-        # Windows does not have an EDITING DELEGATE, so we strip any EDITING DELEGATE
-        # messages to make more of the tests pass.
-        # It's possible more of the ports might want this and this could move down into WebKitPort.
-        delegate_regexp = re.compile("^EDITING DELEGATE: .*?\n", re.MULTILINE)
-        expected_text = delegate_regexp.sub("", expected_text)
-        actual_text = delegate_regexp.sub("", actual_text)
-        return expected_text != actual_text
-
-    def default_baseline_search_path(self):
-        name = self._name.replace('-wk2', '')
-        if name.endswith(self.FUTURE_VERSION):
-            fallback_names = [self.port_name]
-        else:
-            fallback_names = self.VERSION_FALLBACK_ORDER[self.VERSION_FALLBACK_ORDER.index(name):-1] + [self.port_name]
-        # FIXME: The AppleWin port falls back to AppleMac for some results.  Eventually we'll have a shared 'apple' port.
-        if self.get_option('webkit_test_runner'):
-            fallback_names.insert(0, 'win-wk2')
-            fallback_names.append('mac-wk2')
-            # Note we do not add 'wk2' here, even though it's included in _skipped_search_paths().
-        # FIXME: Perhaps we should get this list from MacPort?
-        fallback_names.extend(['mac-lion', 'mac'])
-        return map(self._webkit_baseline_path, fallback_names)
-
-    def operating_system(self):
-        return 'win'
-
-    def show_results_html_file(self, results_filename):
-        self._run_script('run-safari', [abspath_to_uri(SystemHost().platform, results_filename)])
-
-    # FIXME: webkitperl/httpd.pm installs /usr/lib/apache/libphp4.dll on cycwin automatically
-    # as part of running old-run-webkit-tests.  That's bad design, but we may need some similar hack.
-    # We might use setup_environ_for_server for such a hack (or modify apache_http_server.py).
-
-    def _runtime_feature_list(self):
-        supported_features_command = [self._path_to_driver(), '--print-supported-features']
-        try:
-            output = self._executive.run_command(supported_features_command, error_handler=Executive.ignore_error)
-        except OSError, e:
-            _log.warn("Exception running driver: %s, %s.  Driver must be built before calling WebKitPort.test_expectations()." % (supported_features_command, e))
-            return None
-
-        # Note: win/DumpRenderTree.cpp does not print a leading space before the features_string.
-        match_object = re.match("SupportedFeatures:\s*(?P<features_string>.*)\s*", output)
-        if not match_object:
-            return None
-        return match_object.group('features_string').split(' ')
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/win_unittest.py b/Tools/Scripts/webkitpy/layout_tests/port/win_unittest.py
deleted file mode 100644
index e77687c..0000000
--- a/Tools/Scripts/webkitpy/layout_tests/port/win_unittest.py
+++ /dev/null
@@ -1,109 +0,0 @@
-# Copyright (C) 2011 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#    * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#    * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#    * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import StringIO
-import unittest2 as unittest
-
-from webkitpy.common.system.executive import ScriptError
-from webkitpy.common.system.executive_mock import MockExecutive, MockExecutive2
-from webkitpy.common.system.filesystem_mock import MockFileSystem
-from webkitpy.common.system.outputcapture import OutputCapture
-from webkitpy.common.system.systemhost_mock import MockSystemHost
-from webkitpy.layout_tests.port import port_testcase
-from webkitpy.layout_tests.port.win import WinPort
-from webkitpy.tool.mocktool import MockOptions
-
-
-class WinPortTest(port_testcase.PortTestCase):
-    os_name = 'win'
-    os_version = 'xp'
-    port_name = 'win-xp'
-    port_maker = WinPort
-
-    def test_show_results_html_file(self):
-        port = self.make_port()
-        port._executive = MockExecutive(should_log=True)
-        capture = OutputCapture()
-        capture.capture_output()
-        port.show_results_html_file('test.html')
-        _, _, logs = capture.restore_output()
-        # We can't know for sure what path will be produced by cygpath, but we can assert about
-        # everything else.
-        self.assertTrue(logs.startswith("MOCK run_command: ['Tools/Scripts/run-safari', '--release', '"))
-        self.assertTrue(logs.endswith("test.html'], cwd=/mock-checkout\n"))
-
-    def _assert_search_path(self, expected_search_paths, version, use_webkit2=False):
-        port = self.make_port(port_name='win', os_version=version, options=MockOptions(webkit_test_runner=use_webkit2))
-        absolute_search_paths = map(port._webkit_baseline_path, expected_search_paths)
-        self.assertEqual(port.baseline_search_path(), absolute_search_paths)
-
-    def test_baseline_search_path(self):
-        self._assert_search_path(['win-xp', 'win-vista', 'win-7sp0', 'win', 'mac-lion', 'mac'], 'xp')
-        self._assert_search_path(['win-vista', 'win-7sp0', 'win', 'mac-lion', 'mac'], 'vista')
-        self._assert_search_path(['win-7sp0', 'win', 'mac-lion', 'mac'], '7sp0')
-
-        self._assert_search_path(['win-wk2', 'win-xp', 'win-vista', 'win-7sp0', 'win', 'mac-wk2', 'mac-lion', 'mac'], 'xp', use_webkit2=True)
-        self._assert_search_path(['win-wk2', 'win-vista', 'win-7sp0', 'win', 'mac-wk2', 'mac-lion', 'mac'], 'vista', use_webkit2=True)
-        self._assert_search_path(['win-wk2', 'win-7sp0', 'win', 'mac-wk2', 'mac-lion', 'mac'], '7sp0', use_webkit2=True)
-
-    def _assert_version(self, port_name, expected_version):
-        host = MockSystemHost(os_name='win', os_version=expected_version)
-        port = WinPort(host, port_name=port_name)
-        self.assertEqual(port.version(), expected_version)
-
-    def test_versions(self):
-        self._assert_version('win-xp', 'xp')
-        self._assert_version('win-vista', 'vista')
-        self._assert_version('win-7sp0', '7sp0')
-        self.assertRaises(AssertionError, self._assert_version, 'win-me', 'xp')
-
-    def test_compare_text(self):
-        expected = "EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification\nfoo\nEDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification\n"
-        port = self.make_port()
-        self.assertFalse(port.do_text_results_differ(expected, "foo\n"))
-        self.assertTrue(port.do_text_results_differ(expected, "foo"))
-        self.assertTrue(port.do_text_results_differ(expected, "bar"))
-
-        # This hack doesn't exist in WK2.
-        port._options = MockOptions(webkit_test_runner=True)
-        self.assertTrue(port.do_text_results_differ(expected, "foo\n"))
-
-    def test_operating_system(self):
-        self.assertEqual('win', self.make_port().operating_system())
-
-    def test_runtime_feature_list(self):
-        port = self.make_port()
-        port._executive.run_command = lambda command, cwd=None, error_handler=None: "Nonsense"
-        # runtime_features_list returns None when its results are meaningless (it couldn't run DRT or parse the output, etc.)
-        self.assertEqual(port._runtime_feature_list(), None)
-        port._executive.run_command = lambda command, cwd=None, error_handler=None: "SupportedFeatures:foo bar"
-        self.assertEqual(port._runtime_feature_list(), ['foo', 'bar'])
-
-    def test_expectations_files(self):
-        self.assertEqual(len(self.make_port().expectations_files()), 3)
-        self.assertEqual(len(self.make_port(options=MockOptions(webkit_test_runner=True, configuration='Release')).expectations_files()), 5)
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/xvfbdriver.py b/Tools/Scripts/webkitpy/layout_tests/port/xvfbdriver.py
deleted file mode 100644
index 71ea8dd..0000000
--- a/Tools/Scripts/webkitpy/layout_tests/port/xvfbdriver.py
+++ /dev/null
@@ -1,113 +0,0 @@
-# Copyright (C) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the Google name nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import logging
-import os
-import re
-import time
-
-from webkitpy.layout_tests.port.server_process import ServerProcess
-from webkitpy.layout_tests.port.driver import Driver
-from webkitpy.common.system.file_lock import FileLock
-
-_log = logging.getLogger(__name__)
-
-
-class XvfbDriver(Driver):
-    @staticmethod
-    def check_xvfb(port):
-        xvfb_found = port.host.executive.run_command(['which', 'Xvfb'], return_exit_code=True) is 0
-        if not xvfb_found:
-            _log.error("No Xvfb found. Cannot run layout tests.")
-        return xvfb_found
-
-    def __init__(self, *args, **kwargs):
-        Driver.__init__(self, *args, **kwargs)
-        self._guard_lock = None
-        self._startup_delay_secs = 1.0
-
-    def _next_free_display(self):
-        running_pids = self._port.host.executive.run_command(['ps', '-eo', 'comm,command'])
-        reserved_screens = set()
-        for pid in running_pids.split('\n'):
-            match = re.match('(X|Xvfb|Xorg)\s+.*\s:(?P<screen_number>\d+)', pid)
-            if match:
-                reserved_screens.add(int(match.group('screen_number')))
-        for i in range(99):
-            if i not in reserved_screens:
-                _guard_lock_file = self._port.host.filesystem.join('/tmp', 'WebKitXvfb.lock.%i' % i)
-                self._guard_lock = self._port.host.make_file_lock(_guard_lock_file)
-                if self._guard_lock.acquire_lock():
-                    return i
-
-    def _start(self, pixel_tests, per_test_args):
-        self.stop()
-
-        # Use even displays for pixel tests and odd ones otherwise. When pixel tests are disabled,
-        # DriverProxy creates two drivers, one for normal and the other for ref tests. Both have
-        # the same worker number, so this prevents them from using the same Xvfb instance.
-        display_id = self._next_free_display()
-        self._lock_file = "/tmp/.X%d-lock" % display_id
-
-        run_xvfb = ["Xvfb", ":%d" % display_id, "-screen",  "0", "800x600x24", "-nolisten", "tcp"]
-        with open(os.devnull, 'w') as devnull:
-            self._xvfb_process = self._port.host.executive.popen(run_xvfb, stderr=devnull)
-
-        # Crashes intend to occur occasionally in the first few tests that are run through each
-        # worker because the Xvfb display isn't ready yet. Halting execution a bit should avoid that.
-        time.sleep(self._startup_delay_secs)
-
-        server_name = self._port.driver_name()
-        environment = self._port.setup_environ_for_server(server_name)
-        # We must do this here because the DISPLAY number depends on _worker_number
-        environment['DISPLAY'] = ":%d" % display_id
-        self._driver_tempdir = self._port._filesystem.mkdtemp(prefix='%s-' % self._port.driver_name())
-        environment['DUMPRENDERTREE_TEMP'] = str(self._driver_tempdir)
-        environment['LOCAL_RESOURCE_ROOT'] = self._port.layout_tests_dir()
-
-        # Currently on WebKit2, there is no API for setting the application
-        # cache directory. Each worker should have it's own and it should be
-        # cleaned afterwards, so we set it to inside the temporary folder by
-        # prepending XDG_CACHE_HOME with DUMPRENDERTREE_TEMP.
-        environment['XDG_CACHE_HOME'] = self._port.host.filesystem.join(str(self._driver_tempdir), 'appcache')
-
-        self._crashed_process_name = None
-        self._crashed_pid = None
-        self._server_process = self._port._server_process_constructor(self._port, server_name, self.cmd_line(pixel_tests, per_test_args), environment)
-        self._server_process.start()
-
-    def stop(self):
-        super(XvfbDriver, self).stop()
-        if self._guard_lock:
-            self._guard_lock.release_lock()
-            self._guard_lock = None
-        if getattr(self, '_xvfb_process', None):
-            self._port.host.executive.kill_process(self._xvfb_process.pid)
-            self._xvfb_process = None
-            if self._port.host.filesystem.exists(self._lock_file):
-                self._port.host.filesystem.remove(self._lock_file)
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/xvfbdriver_unittest.py b/Tools/Scripts/webkitpy/layout_tests/port/xvfbdriver_unittest.py
deleted file mode 100644
index 4c5d338..0000000
--- a/Tools/Scripts/webkitpy/layout_tests/port/xvfbdriver_unittest.py
+++ /dev/null
@@ -1,135 +0,0 @@
-# Copyright (C) 2012 Zan Dobersek <zandobersek@gmail.com>
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#    * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#    * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#    * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import logging
-import unittest2 as unittest
-
-from webkitpy.common.system.filesystem_mock import MockFileSystem
-from webkitpy.common.system.executive_mock import MockExecutive2
-from webkitpy.common.system.outputcapture import OutputCapture
-from webkitpy.common.system.systemhost_mock import MockSystemHost
-from webkitpy.layout_tests.port import Port
-from webkitpy.layout_tests.port.server_process_mock import MockServerProcess
-from webkitpy.layout_tests.port.xvfbdriver import XvfbDriver
-from webkitpy.tool.mocktool import MockOptions
-
-_log = logging.getLogger(__name__)
-
-
-class XvfbDriverTest(unittest.TestCase):
-    def make_driver(self, worker_number=0, xorg_running=False, executive=None):
-        port = Port(MockSystemHost(log_executive=True, executive=executive), 'xvfbdrivertestport', options=MockOptions(configuration='Release'))
-        port._config.build_directory = lambda configuration: "/mock-build"
-        port._server_process_constructor = MockServerProcess
-        if xorg_running:
-            port._executive._running_pids['Xorg'] = 108
-
-        driver = XvfbDriver(port, worker_number=worker_number, pixel_tests=True)
-        driver._startup_delay_secs = 0
-        return driver
-
-    def cleanup_driver(self, driver):
-        # Setting _xvfb_process member to None is necessary as the Driver object is stopped on deletion,
-        # killing the Xvfb process if present. Thus, this method should only be called from tests that do not
-        # intend to test the behavior of XvfbDriver.stop.
-        driver._xvfb_process = None
-
-    def assertDriverStartSuccessful(self, driver, expected_logs, expected_display, pixel_tests=False):
-        OutputCapture().assert_outputs(self, driver.start, [pixel_tests, []], expected_logs=expected_logs)
-        self.assertTrue(driver._server_process.started)
-        self.assertEqual(driver._server_process.env["DISPLAY"], expected_display)
-
-    def test_start_no_pixel_tests(self):
-        driver = self.make_driver()
-        expected_logs = "MOCK run_command: ['ps', '-eo', 'comm,command'], cwd=None\nMOCK popen: ['Xvfb', ':0', '-screen', '0', '800x600x24', '-nolisten', 'tcp']\n"
-        self.assertDriverStartSuccessful(driver, expected_logs=expected_logs, expected_display=":0")
-        self.cleanup_driver(driver)
-
-    def test_start_pixel_tests(self):
-        driver = self.make_driver()
-        expected_logs = "MOCK run_command: ['ps', '-eo', 'comm,command'], cwd=None\nMOCK popen: ['Xvfb', ':0', '-screen', '0', '800x600x24', '-nolisten', 'tcp']\n"
-        self.assertDriverStartSuccessful(driver, expected_logs=expected_logs, expected_display=":0", pixel_tests=True)
-        self.cleanup_driver(driver)
-
-    def test_start_arbitrary_worker_number(self):
-        driver = self.make_driver(worker_number=17)
-        expected_logs = "MOCK run_command: ['ps', '-eo', 'comm,command'], cwd=None\nMOCK popen: ['Xvfb', ':0', '-screen', '0', '800x600x24', '-nolisten', 'tcp']\n"
-        self.assertDriverStartSuccessful(driver, expected_logs=expected_logs, expected_display=":0", pixel_tests=True)
-        self.cleanup_driver(driver)
-
-    def test_next_free_display(self):
-        output = "Xorg            /usr/bin/X :0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch -background none\nXvfb            Xvfb :1 -screen 0 800x600x24 -nolisten tcp"
-        executive = MockExecutive2(output)
-        driver = self.make_driver(executive=executive)
-        self.assertEqual(driver._next_free_display(), 2)
-        self.cleanup_driver(driver)
-        output = "X               /usr/bin/X :0 vt7 -nolisten tcp -auth /var/run/xauth/A:0-8p7Ybb"
-        executive = MockExecutive2(output)
-        driver = self.make_driver(executive=executive)
-        self.assertEqual(driver._next_free_display(), 1)
-        self.cleanup_driver(driver)
-        output = "Xvfb            Xvfb :0 -screen 0 800x600x24 -nolisten tcp"
-        executive = MockExecutive2(output)
-        driver = self.make_driver(executive=executive)
-        self.assertEqual(driver._next_free_display(), 1)
-        self.cleanup_driver(driver)
-        output = "Xvfb            Xvfb :1 -screen 0 800x600x24 -nolisten tcp\nXvfb            Xvfb :0 -screen 0 800x600x24 -nolisten tcp\nXvfb            Xvfb :3 -screen 0 800x600x24 -nolisten tcp"
-        executive = MockExecutive2(output)
-        driver = self.make_driver(executive=executive)
-        self.assertEqual(driver._next_free_display(), 2)
-        self.cleanup_driver(driver)
-
-    def test_start_next_worker(self):
-        driver = self.make_driver()
-        driver._next_free_display = lambda: 0
-        expected_logs = "MOCK popen: ['Xvfb', ':0', '-screen', '0', '800x600x24', '-nolisten', 'tcp']\n"
-        self.assertDriverStartSuccessful(driver, expected_logs=expected_logs, expected_display=":0", pixel_tests=True)
-        self.cleanup_driver(driver)
-        driver = self.make_driver()
-        driver._next_free_display = lambda: 3
-        expected_logs = "MOCK popen: ['Xvfb', ':3', '-screen', '0', '800x600x24', '-nolisten', 'tcp']\n"
-        self.assertDriverStartSuccessful(driver, expected_logs=expected_logs, expected_display=":3", pixel_tests=True)
-        self.cleanup_driver(driver)
-
-    def test_stop(self):
-        filesystem = MockFileSystem(files={'/tmp/.X42-lock': '1234\n'})
-        port = Port(MockSystemHost(log_executive=True, filesystem=filesystem), 'xvfbdrivertestport', options=MockOptions(configuration='Release'))
-        port._executive.kill_process = lambda x: _log.info("MOCK kill_process pid: " + str(x))
-        driver = XvfbDriver(port, worker_number=0, pixel_tests=True)
-
-        class FakeXvfbProcess(object):
-            pid = 1234
-
-        driver._xvfb_process = FakeXvfbProcess()
-        driver._lock_file = '/tmp/.X42-lock'
-
-        expected_logs = "MOCK kill_process pid: 1234\n"
-        OutputCapture().assert_outputs(self, driver.stop, [], expected_logs=expected_logs)
-
-        self.assertIsNone(driver._xvfb_process)
-        self.assertFalse(port._filesystem.exists(driver._lock_file))
diff --git a/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py b/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
index b211b97..8218052 100644
--- a/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
+++ b/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
@@ -109,11 +109,6 @@
             help="Run Android layout tests on these devices."),
     ]))
 
-    option_group_definitions.append(("EFL-specific Options", [
-        optparse.make_option("--webprocess-cmd-prefix", type="string",
-            default=False, help="Prefix used when spawning the Web process (Debug mode only)"),
-    ]))
-
     option_group_definitions.append(("WebKit Options", [
         optparse.make_option("--gc-between-tests", action="store_true", default=False,
             help="Force garbage collection between each test"),
@@ -125,8 +120,6 @@
             help="Enable Guard Malloc (Mac OS X only)"),
         optparse.make_option("--threaded", action="store_true", default=False,
             help="Run a concurrent JavaScript thread with each test"),
-        optparse.make_option("--webkit-test-runner", "-2", action="store_true",
-            help="Use WebKitTestRunner rather than DumpRenderTree."),
         # FIXME: We should merge this w/ --build-directory and only have one flag.
         optparse.make_option("--root", action="store",
             help="Path to a directory containing the executables needed to run tests."),
@@ -178,6 +171,8 @@
                  "Specify multiple times to add multiple flags."),
         optparse.make_option("--driver-name", type="string",
             help="Alternative DumpRenderTree binary to use"),
+        optparse.make_option("--content-shell", action="store_true",
+            help="Use Content Shell instead of DumpRenderTree"),
         optparse.make_option("--additional-platform-directory", action="append",
             default=[], help="Additional directory where to look for test "
                  "baselines (will take precendence over platform baselines). "
@@ -222,6 +217,11 @@
                  "running. (Example: --wrapper='valgrind --smc-check=all')"),
         optparse.make_option("-i", "--ignore-tests", action="append", default=[],
             help="directories or test to ignore (may specify multiple times)"),
+        optparse.make_option("--ignore-flaky-tests", action="store", default="default",
+            help=("Control whether tests that are flaky on the bots get ignored."
+                "'default' == Don't use the bot data."
+                "'very-flaky' == Ignore any tests that flaked more than once on the bot."
+                "'maybe-flaky' == Ignore any tests that flaked once on the bot.")),
         optparse.make_option("--test-list", action="append",
             help="read list of tests to run from file", metavar="FILE"),
         optparse.make_option("--skipped", action="store", default="default",
diff --git a/Tools/Scripts/webkitpy/layout_tests/servers/http_server_integrationtest.py b/Tools/Scripts/webkitpy/layout_tests/servers/http_server_integrationtest.py
index aa6e59d..a38d45e 100644
--- a/Tools/Scripts/webkitpy/layout_tests/servers/http_server_integrationtest.py
+++ b/Tools/Scripts/webkitpy/layout_tests/servers/http_server_integrationtest.py
@@ -26,7 +26,7 @@
 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
-"""Integration tests for the new-run-webkit-httpd and new-run-webkit-websocketserver scripts"""
+"""Integration tests for the run-blink-httpd and run-blink-websocketserver scripts"""
 
 # FIXME: Rename this file to something more descriptive.
 
@@ -131,15 +131,15 @@
 
 
 class HTTPServerTest(BaseTest):
-    """Tests that new-run-webkit-http must pass."""
+    """Tests that run-blink-http must pass."""
 
     PORTS = (8000, 8080, 8443)
-    SCRIPT_NAME = 'new-run-webkit-httpd'
+    SCRIPT_NAME = 'run-blink-httpd'
 
 
 class WebsocketserverTest(BaseTest):
-    """Tests that new-run-webkit-websocketserver must pass."""
+    """Tests that run-blink-websocketserver must pass."""
 
     # FIXME: test TLS at some point?
     PORTS = (8880, )
-    SCRIPT_NAME = 'new-run-webkit-websocketserver'
+    SCRIPT_NAME = 'run-blink-websocketserver'
diff --git a/Tools/Scripts/webkitpy/layout_tests/views/printing.py b/Tools/Scripts/webkitpy/layout_tests/views/printing.py
index c0374f0..a42b7ed 100644
--- a/Tools/Scripts/webkitpy/layout_tests/views/printing.py
+++ b/Tools/Scripts/webkitpy/layout_tests/views/printing.py
@@ -356,7 +356,7 @@
             self._print_default(' base: %s' % base)
             self._print_default(' args: %s' % args)
 
-        for extension in ('.txt', '.png', '.wav', '.webarchive'):
+        for extension in ('.txt', '.png', '.wav'):
             self._print_baseline(test_name, extension)
 
         self._print_default('  exp: %s' % exp_str)
diff --git a/Tools/Scripts/webkitpy/performance_tests/perftestsrunner.py b/Tools/Scripts/webkitpy/performance_tests/perftestsrunner.py
index b3e22e7..b5bc338 100644
--- a/Tools/Scripts/webkitpy/performance_tests/perftestsrunner.py
+++ b/Tools/Scripts/webkitpy/performance_tests/perftestsrunner.py
@@ -114,8 +114,6 @@
                 help="Don't launch a browser with results after the tests are done"),
             optparse.make_option("--test-results-server",
                 help="Upload the generated JSON file to the specified server when --output-json-path is present."),
-            optparse.make_option("--webkit-test-runner", "-2", action="store_true",
-                help="Use WebKitTestRunner rather than DumpRenderTree."),
             optparse.make_option("--replay", dest="replay", action="store_true", default=False,
                 help="Run replay tests."),
             optparse.make_option("--force", dest="use_skipped_list", action="store_false", default=True,
@@ -129,6 +127,8 @@
                      "Specify multiple times to add multiple flags."),
             optparse.make_option("--driver-name", type="string",
                 help="Alternative DumpRenderTree binary to use"),
+            optparse.make_option("--content-shell", action="store_true",
+                help="Use Content Shell instead of DumpRenderTree"),
             optparse.make_option("--repeat", default=1, type="int",
                 help="Specify number of times to run test set (default: 1)."),
             optparse.make_option("--test-runner-count", default=DEFAULT_TEST_RUNNER_COUNT, type="int",
diff --git a/Tools/Scripts/webkitpy/pylintrc b/Tools/Scripts/webkitpy/pylintrc
index caadcfb..b3df526 100644
--- a/Tools/Scripts/webkitpy/pylintrc
+++ b/Tools/Scripts/webkitpy/pylintrc
@@ -26,6 +26,8 @@
 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
+# FIXME: remove this whitespace diff.
+#
 [MASTER]
 
 # Specify a configuration file.
diff --git a/Tools/Scripts/webkitpy/style/checkers/cpp.py b/Tools/Scripts/webkitpy/style/checkers/cpp.py
index 81f5cbb..69df432 100644
--- a/Tools/Scripts/webkitpy/style/checkers/cpp.py
+++ b/Tools/Scripts/webkitpy/style/checkers/cpp.py
@@ -1124,6 +1124,8 @@
         self.virtual_method_line_number = None
         self.has_virtual_destructor = False
         self.brace_depth = 0
+        self.unsigned_bitfields = []
+        self.bool_bitfields = []
 
 
 class _ClassState(object):
@@ -1400,9 +1402,42 @@
                   'The class %s probably needs a virtual destructor due to '
                   'having virtual method(s), one declared at line %d.'
                   % (classinfo.name, classinfo.virtual_method_line_number))
+        # Look for mixed bool and unsigned bitfields.
+        if (classinfo.bool_bitfields and classinfo.unsigned_bitfields):
+            bool_list = ', '.join(classinfo.bool_bitfields)
+            unsigned_list = ', '.join(classinfo.unsigned_bitfields)
+            error(classinfo.line_number, 'runtime/bitfields', 5,
+                  'The class %s contains mixed unsigned and bool bitfields, '
+                  'which will pack into separate words on the MSVC compiler.\n'
+                  'Bool bitfields are [%s].\nUnsigned bitfields are [%s].\n'
+                  'Consider converting bool bitfields to unsigned.'
+                  % (classinfo.name, bool_list, unsigned_list))
     else:
         classinfo.brace_depth = brace_depth
 
+    well_typed_bitfield = False;
+    # Look for bool <name> : 1 declarations.
+    args = search(r'\bbool\s+(\S*)\s*:\s*\d+\s*;', line)
+    if args:
+        classinfo.bool_bitfields.append('%d: %s' % (line_number, args.group(1)))
+        well_typed_bitfield = True;
+
+    # Look for unsigned <name> : n declarations.
+    args = search(r'\bunsigned\s+(?:int\s+)?(\S+)\s*:\s*\d+\s*;', line)
+    if args:
+        classinfo.unsigned_bitfields.append('%d: %s' % (line_number, args.group(1)))
+        well_typed_bitfield = True;
+
+    # Look for other bitfield declarations. We don't care about those in
+    # size-matching structs.
+    if not (well_typed_bitfield or classinfo.name.startswith('SameSizeAs') or
+            classinfo.name.startswith('Expected')):
+        args = match(r'\s*(\S+)\s+(\S+)\s*:\s*\d+\s*;', line)
+        if args:
+            error(line_number, 'runtime/bitfields', 4,
+                  'Member %s of class %s defined as a bitfield of type %s. '
+                  'Please declare all bitfields as unsigned.'
+                  % (args.group(2), classinfo.name, args.group(1)))
 
 def check_spacing_for_function_call(line, line_number, error):
     """Checks for the correctness of various spacing around function calls.
diff --git a/Tools/Scripts/webkitpy/style/checkers/cpp_unittest.py b/Tools/Scripts/webkitpy/style/checkers/cpp_unittest.py
index 8de99df..20a0b79 100644
--- a/Tools/Scripts/webkitpy/style/checkers/cpp_unittest.py
+++ b/Tools/Scripts/webkitpy/style/checkers/cpp_unittest.py
@@ -2448,6 +2448,86 @@
         self.assert_lint('long int a : 30;', errmsg)
         self.assert_lint('int a = 1 ? 0 : 30;', '')
 
+    # A mixture of unsigned and bool bitfields in a class will generate a warning.
+    def test_mixing_unsigned_bool_bitfields(self):
+        def errmsg(bool_bitfields, unsigned_bitfields, name):
+            bool_list = ', '.join(bool_bitfields)
+            unsigned_list = ', '.join(unsigned_bitfields)
+            return ('The class %s contains mixed unsigned and bool bitfields, '
+                    'which will pack into separate words on the MSVC compiler.\n'
+                    'Bool bitfields are [%s].\nUnsigned bitfields are [%s].\n'
+                    'Consider converting bool bitfields to unsigned.  [runtime/bitfields] [5]'
+                    % (name, bool_list, unsigned_list))
+
+        def build_test_case(bitfields, name, will_warn, extra_warnings=[]):
+            bool_bitfields = []
+            unsigned_bitfields = []
+            test_string = 'class %s {\n' % (name,)
+            line = 2
+            for bitfield in bitfields:
+                test_string += '    %s %s : %d;\n' % bitfield
+                if bitfield[0] == 'bool':
+                    bool_bitfields.append('%d: %s' % (line, bitfield[1]))
+                elif bitfield[0].startswith('unsigned'):
+                    unsigned_bitfields.append('%d: %s' % (line, bitfield[1]))
+                line += 1
+            test_string += '}\n'
+            error = ''
+            if will_warn:
+                error = errmsg(bool_bitfields, unsigned_bitfields, name)
+            if extra_warnings and error:
+                error = extra_warnings + [error]
+            self.assert_multi_line_lint(test_string, error)
+
+        build_test_case([('bool', 'm_boolMember', 4), ('unsigned', 'm_unsignedMember', 3)],
+                        'MyClass', True)
+        build_test_case([('bool', 'm_boolMember', 4), ('bool', 'm_anotherBool', 3)],
+                        'MyClass', False)
+        build_test_case([('unsigned', 'm_unsignedMember', 4), ('unsigned', 'm_anotherUnsigned', 3)],
+                        'MyClass', False)
+
+        build_test_case([('bool', 'm_boolMember', 4), ('bool', 'm_anotherbool', 3),
+                         ('bool', 'm_moreBool', 1), ('bool', 'm_lastBool', 1),
+                         ('unsigned int', 'm_tokenUnsigned', 4)],
+                        'MyClass', True, ['Omit int when using unsigned  [runtime/unsigned] [1]'])
+
+        self.assert_multi_line_lint('class NoProblemsHere {\n'
+                                    '    bool m_boolMember;\n'
+                                    '    unsigned m_unsignedMember;\n'
+                                    '    unsigned m_bitField1 : 1;\n'
+                                    '    unsigned m_bitField4 : 4;\n'
+                                    '}\n', '')
+
+    # Bitfields which are not declared unsigned or bool will generate a warning.
+    def test_unsigned_bool_bitfields(self):
+        def errmsg(member, name, bit_type):
+            return ('Member %s of class %s defined as a bitfield of type %s. '
+                    'Please declare all bitfields as unsigned.  [runtime/bitfields] [4]'
+                    % (member, name, bit_type))
+
+        def warning_bitfield_test(member, name, bit_type, bits):
+            self.assert_multi_line_lint('class %s {\n%s %s: %d;\n}\n'
+                                        % (name, bit_type, member, bits),
+                                        errmsg(member, name, bit_type))
+
+        def safe_bitfield_test(member, name, bit_type, bits):
+            self.assert_multi_line_lint('class %s {\n%s %s: %d;\n}\n'
+                                        % (name, bit_type, member, bits),
+                                        '')
+
+        warning_bitfield_test('a', 'A', 'int32_t', 25)
+        warning_bitfield_test('m_someField', 'SomeClass', 'signed', 4)
+        warning_bitfield_test('m_someField', 'SomeClass', 'SomeEnum', 2)
+
+        safe_bitfield_test('a', 'A', 'unsigned', 22)
+        safe_bitfield_test('m_someField', 'SomeClass', 'bool', 1)
+        safe_bitfield_test('m_someField', 'SomeClass', 'unsigned', 2)
+
+        # Declarations in 'Expected' or 'SameSizeAs' classes are OK.
+        warning_bitfield_test('m_bitfields', 'SomeClass', 'int32_t', 32)
+        safe_bitfield_test('m_bitfields', 'ExpectedSomeClass', 'int32_t', 32)
+        safe_bitfield_test('m_bitfields', 'SameSizeAsSomeClass', 'int32_t', 32)
+
 class CleansedLinesTest(unittest.TestCase):
     def test_init(self):
         lines = ['Line 1',
diff --git a/Tools/Scripts/webkitpy/style/checkers/test_expectations.py b/Tools/Scripts/webkitpy/style/checkers/test_expectations.py
index 67f3841..f226348 100644
--- a/Tools/Scripts/webkitpy/style/checkers/test_expectations.py
+++ b/Tools/Scripts/webkitpy/style/checkers/test_expectations.py
@@ -49,14 +49,12 @@
 
     def _determine_port_from_expectations_path(self, host, expectations_path):
         # Pass a configuration to avoid calling default_configuration() when initializing the port (takes 0.5 seconds on a Mac Pro!).
-        options_wk1 = optparse.Values({'configuration': 'Release', 'webkit_test_runner': False})
-        options_wk2 = optparse.Values({'configuration': 'Release', 'webkit_test_runner': True})
+        options = optparse.Values({'configuration': 'Release'})
         for port_name in host.port_factory.all_port_names():
-            ports = [host.port_factory.get(port_name, options=options_wk1), host.port_factory.get(port_name, options=options_wk2)]
-            for port in ports:
-                for test_expectation_file in port.expectations_files():
-                    if test_expectation_file.replace(port.path_from_webkit_base() + host.filesystem.sep, '') == expectations_path:
-                        return port
+            port = host.port_factory.get(port_name, options=options)
+            for test_expectation_file in port.expectations_files():
+                if test_expectation_file.replace(port.path_from_webkit_base() + host.filesystem.sep, '') == expectations_path:
+                    return port
         return None
 
     def __init__(self, file_path, handle_style_error, host=None):
diff --git a/Tools/Scripts/webkitpy/style/checkers/test_expectations_unittest.py b/Tools/Scripts/webkitpy/style/checkers/test_expectations_unittest.py
index 43ef836..86e882e 100644
--- a/Tools/Scripts/webkitpy/style/checkers/test_expectations_unittest.py
+++ b/Tools/Scripts/webkitpy/style/checkers/test_expectations_unittest.py
@@ -75,13 +75,9 @@
     def test_determine_port_from_expectations_path(self):
         self._expect_port_for_expectations_path(None, '/')
         self._expect_port_for_expectations_path(None, 'LayoutTests/chromium-mac/TestExpectations')
-        self._expect_port_for_expectations_path('chromium', 'LayoutTests/platform/chromium/TestExpectations')
+        self._expect_port_for_expectations_path(None, 'LayoutTests/platform/chromium/TestExpectations')
+        self._expect_port_for_expectations_path('chromium', 'LayoutTests/TestExpectations')
         self._expect_port_for_expectations_path(None, '/mock-checkout/LayoutTests/platform/win/TestExpectations')
-        self._expect_port_for_expectations_path('win', 'LayoutTests/platform/win/TestExpectations')
-        self._expect_port_for_expectations_path('efl', 'LayoutTests/platform/efl/TestExpectations')
-        self._expect_port_for_expectations_path('efl', 'LayoutTests/platform/efl-wk1/TestExpectations')
-        self._expect_port_for_expectations_path('efl', 'LayoutTests/platform/efl-wk2/TestExpectations')
-        self._expect_port_for_expectations_path('qt', 'LayoutTests/platform/qt-win/TestExpectations')
         # FIXME: check-webkit-style doesn't know how to create port objects for all Qt version (4.8, 5.0) and
         # will only check files based on the installed version of Qt.
         #self._expect_port_for_expectations_path('qt', 'LayoutTests/platform/qt-5.0-wk2/TestExpectations')
diff --git a/Tools/Scripts/webkitpy/thirdparty/__init__.py b/Tools/Scripts/webkitpy/thirdparty/__init__.py
index 601e2fb..da25c35 100644
--- a/Tools/Scripts/webkitpy/thirdparty/__init__.py
+++ b/Tools/Scripts/webkitpy/thirdparty/__init__.py
@@ -85,12 +85,6 @@
             self._install_pylint()
         elif '.coverage' in fullname:
             self._install_coverage()
-        elif '.eliza' in fullname:
-            self._install_eliza()
-        elif '.irc' in fullname:
-            self._install_irc()
-        elif '.buildbot' in fullname:
-            self._install_buildbot()
         elif '.webpagereplay' in fullname:
             self._install_webpagereplay()
 
@@ -119,44 +113,10 @@
 
     # autoinstalled.buildbot is used by BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py
     # and should ideally match the version of BuildBot used at build.webkit.org.
-    def _install_buildbot(self):
-        # The buildbot package uses jinja2, for example, in buildbot/status/web/base.py.
-        # buildbot imports jinja2 directly (as though it were installed on the system),
-        # so the search path needs to include jinja2.  We put jinja2 in
-        # its own directory so that we can include it in the search path
-        # without including other modules as a side effect.
-        jinja_dir = self._fs.join(_AUTOINSTALLED_DIR, "jinja2")
-        installer = AutoInstaller(append_to_search_path=True, target_dir=jinja_dir)
-        did_install_something = installer.install(url="http://pypi.python.org/packages/source/J/Jinja2/Jinja2-2.6.tar.gz#md5=1c49a8825c993bfdcf55bb36897d28a2",
-                                                url_subpath="Jinja2-2.6/jinja2")
-
-        SQLAlchemy_dir = self._fs.join(_AUTOINSTALLED_DIR, "sqlalchemy")
-        installer = AutoInstaller(append_to_search_path=True, target_dir=SQLAlchemy_dir)
-        did_install_something |= installer.install(url="http://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-0.7.7.tar.gz#md5=ddf6df7e014cea318fa981364f3f93b9",
-                                                 url_subpath="SQLAlchemy-0.7.7/lib/sqlalchemy")
-
-        did_install_something |= self._install("http://pypi.python.org/packages/source/b/buildbot/buildbot-0.8.6p1.tar.gz#md5=b6727d2810c692062c657492bcbeac6a", "buildbot-0.8.6p1/buildbot")
-        return did_install_something
-
     def _install_coverage(self):
         self._ensure_autoinstalled_dir_is_in_sys_path()
         return self._install(url="http://pypi.python.org/packages/source/c/coverage/coverage-3.5.1.tar.gz#md5=410d4c8155a4dab222f2bc51212d4a24", url_subpath="coverage-3.5.1/coverage")
 
-    def _install_eliza(self):
-        return self._install(url="http://www.adambarth.com/webkit/eliza", target_name="eliza.py")
-
-    def _install_irc(self):
-        # Since irclib and ircbot are two top-level packages, we need to import
-        # them separately.  We group them into an irc package for better
-        # organization purposes.
-        irc_dir = self._fs.join(_AUTOINSTALLED_DIR, "irc")
-        installer = AutoInstaller(target_dir=irc_dir)
-        did_install_something = installer.install(url="http://downloads.sourceforge.net/project/python-irclib/python-irclib/0.4.8/python-irclib-0.4.8.zip",
-                                                url_subpath="irclib.py")
-        did_install_something |= installer.install(url="http://downloads.sourceforge.net/project/python-irclib/python-irclib/0.4.8/python-irclib-0.4.8.zip",
-                          url_subpath="ircbot.py")
-        return did_install_something
-
     def _install_unittest2(self):
         self._ensure_autoinstalled_dir_is_in_sys_path()
         return self._install(url="http://pypi.python.org/packages/source/u/unittest2/unittest2-0.5.1.tar.gz#md5=a0af5cac92bbbfa0c3b0e99571390e0f", url_subpath="unittest2-0.5.1/unittest2")
diff --git a/Tools/Scripts/webkitpy/thirdparty/__init___unittest.py b/Tools/Scripts/webkitpy/thirdparty/__init___unittest.py
index f687ae0..adeed74 100644
--- a/Tools/Scripts/webkitpy/thirdparty/__init___unittest.py
+++ b/Tools/Scripts/webkitpy/thirdparty/__init___unittest.py
@@ -29,40 +29,12 @@
 import sys
 import unittest2 as unittest
 
-from webkitpy.thirdparty import AutoinstallImportHook
-
 
 class ThirdpartyTest(unittest.TestCase):
-    def test_import_hook(self):
-        # Add another import hook and make sure we get called.
-        class MockImportHook(AutoinstallImportHook):
-            def __init__(self):
-                AutoinstallImportHook.__init__(self)
-                self.eliza_installed = False
-
-            def _install_eliza(self):
-                self.eliza_installed = True
-
-        mock_import_hook = MockImportHook()
-        try:
-            # The actual AutoinstallImportHook should be installed before us,
-            # so these modules will get installed before MockImportHook runs.
-            sys.meta_path.append(mock_import_hook)
-            # unused-variable, import failures - pylint: disable-msg=W0612,E0611,F0401
-            from webkitpy.thirdparty.autoinstalled import eliza
-            self.assertTrue(mock_import_hook.eliza_installed)
-
-        finally:
-            sys.meta_path.remove(mock_import_hook)
-
     def test_imports(self):
         # This method tests that we can actually import everything.
         # unused-variable, import failures - pylint: disable-msg=W0612,E0611,F0401
-        import webkitpy.thirdparty.autoinstalled.buildbot
         import webkitpy.thirdparty.autoinstalled.coverage
-        import webkitpy.thirdparty.autoinstalled.eliza
-        import webkitpy.thirdparty.autoinstalled.irc.ircbot
-        import webkitpy.thirdparty.autoinstalled.irc.irclib
         import webkitpy.thirdparty.autoinstalled.mechanize
         import webkitpy.thirdparty.autoinstalled.pylint
         import webkitpy.thirdparty.autoinstalled.webpagereplay
diff --git a/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/_stream_base.py b/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/_stream_base.py
index 60fb33d..8235666 100644
--- a/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/_stream_base.py
+++ b/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/_stream_base.py
@@ -39,6 +39,8 @@
 # writing/reading.
 
 
+import socket
+
 from mod_pywebsocket import util
 
 
@@ -109,20 +111,34 @@
             ConnectionTerminatedException: when read returns empty string.
         """
 
-        bytes = self._request.connection.read(length)
-        if not bytes:
+        try:
+            read_bytes = self._request.connection.read(length)
+            if not read_bytes:
+                raise ConnectionTerminatedException(
+                    'Receiving %d byte failed. Peer (%r) closed connection' %
+                    (length, (self._request.connection.remote_addr,)))
+            return read_bytes
+        except socket.error, e:
+            # Catch a socket.error. Because it's not a child class of the
+            # IOError prior to Python 2.6, we cannot omit this except clause.
+            # Use %s rather than %r for the exception to use human friendly
+            # format.
             raise ConnectionTerminatedException(
-                'Receiving %d byte failed. Peer (%r) closed connection' %
-                (length, (self._request.connection.remote_addr,)))
-        return bytes
+                'Receiving %d byte failed. socket.error (%s) occurred' %
+                (length, e))
+        except IOError, e:
+            # Also catch an IOError because mod_python throws it.
+            raise ConnectionTerminatedException(
+                'Receiving %d byte failed. IOError (%s) occurred' %
+                (length, e))
 
-    def _write(self, bytes):
+    def _write(self, bytes_to_write):
         """Writes given bytes to connection. In case we catch any exception,
         prepends remote address to the exception message and raise again.
         """
 
         try:
-            self._request.connection.write(bytes)
+            self._request.connection.write(bytes_to_write)
         except Exception, e:
             util.prepend_message_to_exception(
                     'Failed to send message to %r: ' %
@@ -138,12 +154,12 @@
             ConnectionTerminatedException: when read returns empty string.
         """
 
-        bytes = []
+        read_bytes = []
         while length > 0:
-            new_bytes = self._read(length)
-            bytes.append(new_bytes)
-            length -= len(new_bytes)
-        return ''.join(bytes)
+            new_read_bytes = self._read(length)
+            read_bytes.append(new_read_bytes)
+            length -= len(new_read_bytes)
+        return ''.join(read_bytes)
 
     def _read_until(self, delim_char):
         """Reads bytes until we encounter delim_char. The result will not
@@ -153,13 +169,13 @@
             ConnectionTerminatedException: when read returns empty string.
         """
 
-        bytes = []
+        read_bytes = []
         while True:
             ch = self._read(1)
             if ch == delim_char:
                 break
-            bytes.append(ch)
-        return ''.join(bytes)
+            read_bytes.append(ch)
+        return ''.join(read_bytes)
 
 
 # vi:sts=4 sw=4 et
diff --git a/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/_stream_hybi.py b/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/_stream_hybi.py
index bd158fa..a8a49e3 100644
--- a/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/_stream_hybi.py
+++ b/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/_stream_hybi.py
@@ -280,7 +280,7 @@
     if logger.isEnabledFor(common.LOGLEVEL_FINE):
         unmask_start = time.time()
 
-    bytes = masker.mask(raw_payload_bytes)
+    unmasked_bytes = masker.mask(raw_payload_bytes)
 
     if logger.isEnabledFor(common.LOGLEVEL_FINE):
         logger.log(
@@ -288,7 +288,7 @@
             'Done unmasking payload data at %s MB/s',
             payload_length / (time.time() - unmask_start) / 1000 / 1000)
 
-    return opcode, bytes, fin, rsv1, rsv2, rsv3
+    return opcode, unmasked_bytes, fin, rsv1, rsv2, rsv3
 
 
 class FragmentedFrameBuilder(object):
@@ -389,9 +389,6 @@
     def __init__(self):
         """Constructs StreamOptions."""
 
-        # Enables deflate-stream extension.
-        self.deflate_stream = False
-
         # Filters applied to frames.
         self.outgoing_frame_filters = []
         self.incoming_frame_filters = []
@@ -403,9 +400,6 @@
         self.encode_text_message_to_utf8 = True
         self.mask_send = False
         self.unmask_receive = True
-        # RFC6455 disallows fragmented control frames, but mux extension
-        # relaxes the restriction.
-        self.allow_fragmented_control_frame = False
 
 
 class Stream(StreamBase):
@@ -426,10 +420,6 @@
 
         self._options = options
 
-        if self._options.deflate_stream:
-            self._logger.debug('Setup filter for deflate-stream')
-            self._request = util.DeflateRequest(self._request)
-
         self._request.client_terminated = False
         self._request.server_terminated = False
 
@@ -463,10 +453,10 @@
                            unmask_receive=self._options.unmask_receive)
 
     def _receive_frame_as_frame_object(self):
-        opcode, bytes, fin, rsv1, rsv2, rsv3 = self._receive_frame()
+        opcode, unmasked_bytes, fin, rsv1, rsv2, rsv3 = self._receive_frame()
 
         return Frame(fin=fin, rsv1=rsv1, rsv2=rsv2, rsv3=rsv3,
-                     opcode=opcode, payload=bytes)
+                     opcode=opcode, payload=unmasked_bytes)
 
     def receive_filtered_frame(self):
         """Receives a frame and applies frame filters and message filters.
@@ -602,8 +592,7 @@
             else:
                 # Start of fragmentation frame
 
-                if (not self._options.allow_fragmented_control_frame and
-                    common.is_control_opcode(frame.opcode)):
+                if common.is_control_opcode(frame.opcode):
                     raise InvalidFrameException(
                         'Control frames must not be fragmented')
 
@@ -647,8 +636,9 @@
                 self._request.ws_close_code,
                 self._request.ws_close_reason)
 
-        # Drain junk data after the close frame if necessary.
-        self._drain_received_data()
+        # As we've received a close frame, no more data is coming over the
+        # socket. We can now safely close the socket without worrying about
+        # RST sending.
 
         if self._request.server_terminated:
             self._logger.debug(
@@ -672,7 +662,7 @@
                 reason = ''
         self._send_closing_handshake(code, reason)
         self._logger.debug(
-            'Sent ack for client-initiated closing handshake '
+            'Acknowledged closing handshake initiated by the peer '
             '(code=%r, reason=%r)', code, reason)
 
     def _process_ping_message(self, message):
@@ -815,13 +805,15 @@
 
         self._write(frame)
 
-    def close_connection(self, code=common.STATUS_NORMAL_CLOSURE, reason=''):
+    def close_connection(self, code=common.STATUS_NORMAL_CLOSURE, reason='',
+                         wait_response=True):
         """Closes a WebSocket connection.
 
         Args:
             code: Status code for close frame. If code is None, a close
                 frame with empty body will be sent.
             reason: string representing close reason.
+            wait_response: True when caller want to wait the response.
         Raises:
             BadOperationException: when reason is specified with code None
             or reason is not an instance of both str and unicode.
@@ -844,11 +836,11 @@
 
         self._send_closing_handshake(code, reason)
         self._logger.debug(
-            'Sent server-initiated closing handshake (code=%r, reason=%r)',
+            'Initiated closing handshake (code=%r, reason=%r)',
             code, reason)
 
         if (code == common.STATUS_GOING_AWAY or
-            code == common.STATUS_PROTOCOL_ERROR):
+            code == common.STATUS_PROTOCOL_ERROR) or not wait_response:
             # It doesn't make sense to wait for a close frame if the reason is
             # protocol error or that the server is going away. For some of
             # other reasons, it might not make sense to wait for a close frame,
@@ -891,25 +883,5 @@
 
         return self._original_opcode
 
-    def _drain_received_data(self):
-        """Drains unread data in the receive buffer to avoid sending out TCP
-        RST packet. This is because when deflate-stream is enabled, some
-        DEFLATE block for flushing data may follow a close frame. If any data
-        remains in the receive buffer of a socket when the socket is closed,
-        it sends out TCP RST packet to the other peer.
-
-        Since mod_python's mp_conn object doesn't support non-blocking read,
-        we perform this only when pywebsocket is running in standalone mode.
-        """
-
-        # If self._options.deflate_stream is true, self._request is
-        # DeflateRequest, so we can get wrapped request object by
-        # self._request._request.
-        #
-        # Only _StandaloneRequest has _drain_received_data method.
-        if (self._options.deflate_stream and
-            ('_drain_received_data' in dir(self._request._request))):
-            self._request._request._drain_received_data()
-
 
 # vi:sts=4 sw=4 et
diff --git a/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/common.py b/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/common.py
index 2388379..afa1233 100644
--- a/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/common.py
+++ b/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/common.py
@@ -101,10 +101,10 @@
 SEC_WEBSOCKET_LOCATION_HEADER = 'Sec-WebSocket-Location'
 
 # Extensions
-DEFLATE_STREAM_EXTENSION = 'deflate-stream'
 DEFLATE_FRAME_EXTENSION = 'deflate-frame'
 PERFRAME_COMPRESSION_EXTENSION = 'perframe-compress'
 PERMESSAGE_COMPRESSION_EXTENSION = 'permessage-compress'
+PERMESSAGE_DEFLATE_EXTENSION = 'permessage-deflate'
 X_WEBKIT_DEFLATE_FRAME_EXTENSION = 'x-webkit-deflate-frame'
 X_WEBKIT_PERMESSAGE_COMPRESSION_EXTENSION = 'x-webkit-permessage-compress'
 MUX_EXTENSION = 'mux_DO_NOT_USE'
diff --git a/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/dispatch.py b/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/dispatch.py
index 25905f1..96c91e0 100644
--- a/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/dispatch.py
+++ b/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/dispatch.py
@@ -255,6 +255,9 @@
         try:
             do_extra_handshake_(request)
         except handshake.AbortedByUserException, e:
+            # Re-raise to tell the caller of this function to finish this
+            # connection without sending any error.
+            self._logger.debug('%s', util.get_stack_trace())
             raise
         except Exception, e:
             util.prepend_message_to_exception(
@@ -294,11 +297,12 @@
                 request.ws_stream.close_connection()
         # Catch non-critical exceptions the handler didn't handle.
         except handshake.AbortedByUserException, e:
-            self._logger.debug('%s', e)
+            self._logger.debug('%s', util.get_stack_trace())
             raise
         except msgutil.BadOperationException, e:
             self._logger.debug('%s', e)
-            request.ws_stream.close_connection(common.STATUS_ABNORMAL_CLOSURE)
+            request.ws_stream.close_connection(
+                common.STATUS_INTERNAL_ENDPOINT_ERROR)
         except msgutil.InvalidFrameException, e:
             # InvalidFrameException must be caught before
             # ConnectionTerminatedException that catches InvalidFrameException.
@@ -314,6 +318,8 @@
         except msgutil.ConnectionTerminatedException, e:
             self._logger.debug('%s', e)
         except Exception, e:
+            # Any other exceptions are forwarded to the caller of this
+            # function.
             util.prepend_message_to_exception(
                 '%s raised exception for %s: ' % (
                     _TRANSFER_DATA_HANDLER_NAME, request.ws_resource),
diff --git a/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/extensions.py b/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/extensions.py
index 03dbf9e..4cb8edf 100644
--- a/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/extensions.py
+++ b/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/extensions.py
@@ -34,83 +34,114 @@
 
 
 _available_processors = {}
+_compression_extension_names = []
 
 
 class ExtensionProcessorInterface(object):
 
+    def __init__(self, request):
+        self._request = request
+        self._active = True
+
+    def request(self):
+        return self._request
+
     def name(self):
         return None
 
-    def get_extension_response(self):
-        return None
-
-    def setup_stream_options(self, stream_options):
+    def check_consistency_with_other_processors(self, processors):
         pass
 
+    def set_active(self, active):
+        self._active = active
 
-class DeflateStreamExtensionProcessor(ExtensionProcessorInterface):
-    """WebSocket DEFLATE stream extension processor.
+    def is_active(self):
+        return self._active
 
-    Specification:
-    Section 9.2.1 in
-    http://tools.ietf.org/html/draft-ietf-hybi-thewebsocketprotocol-10
-    """
-
-    def __init__(self, request):
-        self._logger = util.get_class_logger(self)
-
-        self._request = request
-
-    def name(self):
-        return common.DEFLATE_STREAM_EXTENSION
+    def _get_extension_response_internal(self):
+        return None
 
     def get_extension_response(self):
-        if len(self._request.get_parameter_names()) != 0:
-            return None
+        if self._active:
+            response = self._get_extension_response_internal()
+            if response is None:
+                self._active = False
+            return response
+        return None
 
-        self._logger.debug(
-            'Enable %s extension', common.DEFLATE_STREAM_EXTENSION)
-
-        return common.ExtensionParameter(common.DEFLATE_STREAM_EXTENSION)
+    def _setup_stream_options_internal(self, stream_options):
+        pass
 
     def setup_stream_options(self, stream_options):
-        stream_options.deflate_stream = True
+        if self._active:
+            self._setup_stream_options_internal(stream_options)
 
 
-_available_processors[common.DEFLATE_STREAM_EXTENSION] = (
-    DeflateStreamExtensionProcessor)
-
-
-def _log_compression_ratio(logger, original_bytes, total_original_bytes,
-                           filtered_bytes, total_filtered_bytes):
+def _log_outgoing_compression_ratio(
+        logger, original_bytes, filtered_bytes, average_ratio):
     # Print inf when ratio is not available.
     ratio = float('inf')
-    average_ratio = float('inf')
     if original_bytes != 0:
         ratio = float(filtered_bytes) / original_bytes
-    if total_original_bytes != 0:
-        average_ratio = (
-            float(total_filtered_bytes) / total_original_bytes)
-    logger.debug('Outgoing compress ratio: %f (average: %f)' %
-        (ratio, average_ratio))
+
+    logger.debug('Outgoing compression ratio: %f (average: %f)' %
+            (ratio, average_ratio))
 
 
-def _log_decompression_ratio(logger, received_bytes, total_received_bytes,
-                             filtered_bytes, total_filtered_bytes):
+def _log_incoming_compression_ratio(
+        logger, received_bytes, filtered_bytes, average_ratio):
     # Print inf when ratio is not available.
     ratio = float('inf')
-    average_ratio = float('inf')
-    if received_bytes != 0:
+    if filtered_bytes != 0:
         ratio = float(received_bytes) / filtered_bytes
-    if total_filtered_bytes != 0:
-        average_ratio = (
-            float(total_received_bytes) / total_filtered_bytes)
-    logger.debug('Incoming compress ratio: %f (average: %f)' %
-        (ratio, average_ratio))
+
+    logger.debug('Incoming compression ratio: %f (average: %f)' %
+            (ratio, average_ratio))
+
+
+def _parse_window_bits(bits):
+    """Return parsed integer value iff the given string conforms to the
+    grammar of the window bits extension parameters.
+    """
+
+    if bits is None:
+        raise ValueError('Value is required')
+
+    # For non integer values such as "10.0", ValueError will be raised.
+    int_bits = int(bits)
+
+    # First condition is to drop leading zero case e.g. "08".
+    if bits != str(int_bits) or int_bits < 8 or int_bits > 15:
+        raise ValueError('Invalid value: %r' % bits)
+
+    return int_bits
+
+
+class _AverageRatioCalculator(object):
+    """Stores total bytes of original and result data, and calculates average
+    result / original ratio.
+    """
+
+    def __init__(self):
+        self._total_original_bytes = 0
+        self._total_result_bytes = 0
+
+    def add_original_bytes(self, value):
+        self._total_original_bytes += value
+
+    def add_result_bytes(self, value):
+        self._total_result_bytes += value
+
+    def get_average_ratio(self):
+        if self._total_original_bytes != 0:
+            return (float(self._total_result_bytes) /
+                    self._total_original_bytes)
+        else:
+            return float('inf')
 
 
 class DeflateFrameExtensionProcessor(ExtensionProcessorInterface):
-    """WebSocket Per-frame DEFLATE extension processor.
+    """deflate-frame extension processor.
 
     Specification:
     http://tools.ietf.org/html/draft-tyoshino-hybi-websocket-perframe-deflate
@@ -120,34 +151,38 @@
     _NO_CONTEXT_TAKEOVER_PARAM = 'no_context_takeover'
 
     def __init__(self, request):
+        ExtensionProcessorInterface.__init__(self, request)
         self._logger = util.get_class_logger(self)
 
-        self._request = request
-
         self._response_window_bits = None
         self._response_no_context_takeover = False
         self._bfinal = False
 
-        # Counters for statistics.
+        # Calculates
+        #     (Total outgoing bytes supplied to this filter) /
+        #     (Total bytes sent to the network after applying this filter)
+        self._outgoing_average_ratio_calculator = _AverageRatioCalculator()
 
-        # Total number of outgoing bytes supplied to this filter.
-        self._total_outgoing_payload_bytes = 0
-        # Total number of bytes sent to the network after applying this filter.
-        self._total_filtered_outgoing_payload_bytes = 0
-
-        # Total number of bytes received from the network.
-        self._total_incoming_payload_bytes = 0
-        # Total number of incoming bytes obtained after applying this filter.
-        self._total_filtered_incoming_payload_bytes = 0
+        # Calculates
+        #     (Total bytes received from the network) /
+        #     (Total incoming bytes obtained after applying this filter)
+        self._incoming_average_ratio_calculator = _AverageRatioCalculator()
 
     def name(self):
         return common.DEFLATE_FRAME_EXTENSION
 
-    def get_extension_response(self):
+    def _get_extension_response_internal(self):
         # Any unknown parameter will be just ignored.
 
-        window_bits = self._request.get_parameter_value(
-            self._WINDOW_BITS_PARAM)
+        window_bits = None
+        if self._request.has_parameter(self._WINDOW_BITS_PARAM):
+            window_bits = self._request.get_parameter_value(
+                self._WINDOW_BITS_PARAM)
+            try:
+                window_bits = _parse_window_bits(window_bits)
+            except ValueError, e:
+                return None
+
         no_context_takeover = self._request.has_parameter(
             self._NO_CONTEXT_TAKEOVER_PARAM)
         if (no_context_takeover and
@@ -155,18 +190,10 @@
                 self._NO_CONTEXT_TAKEOVER_PARAM) is not None):
             return None
 
-        if window_bits is not None:
-            try:
-                window_bits = int(window_bits)
-            except ValueError, e:
-                return None
-            if window_bits < 8 or window_bits > 15:
-                return None
-
-        self._deflater = util._RFC1979Deflater(
+        self._rfc1979_deflater = util._RFC1979Deflater(
             window_bits, no_context_takeover)
 
-        self._inflater = util._RFC1979Inflater()
+        self._rfc1979_inflater = util._RFC1979Inflater()
 
         self._compress_outgoing = True
 
@@ -191,7 +218,7 @@
 
         return response
 
-    def setup_stream_options(self, stream_options):
+    def _setup_stream_options_internal(self, stream_options):
 
         class _OutgoingFilter(object):
 
@@ -235,25 +262,28 @@
         """
 
         original_payload_size = len(frame.payload)
-        self._total_outgoing_payload_bytes += original_payload_size
+        self._outgoing_average_ratio_calculator.add_original_bytes(
+                original_payload_size)
 
         if (not self._compress_outgoing or
             common.is_control_opcode(frame.opcode)):
-            self._total_filtered_outgoing_payload_bytes += (
-                original_payload_size)
+            self._outgoing_average_ratio_calculator.add_result_bytes(
+                    original_payload_size)
             return
 
-        frame.payload = self._deflater.filter(
+        frame.payload = self._rfc1979_deflater.filter(
             frame.payload, bfinal=self._bfinal)
         frame.rsv1 = 1
 
         filtered_payload_size = len(frame.payload)
-        self._total_filtered_outgoing_payload_bytes += filtered_payload_size
+        self._outgoing_average_ratio_calculator.add_result_bytes(
+                filtered_payload_size)
 
-        _log_compression_ratio(self._logger, original_payload_size,
-                               self._total_outgoing_payload_bytes,
-                               filtered_payload_size,
-                               self._total_filtered_outgoing_payload_bytes)
+        _log_outgoing_compression_ratio(
+                self._logger,
+                original_payload_size,
+                filtered_payload_size,
+                self._outgoing_average_ratio_calculator.get_average_ratio())
 
     def _incoming_filter(self, frame):
         """Transform incoming frames. This method is called only by
@@ -261,33 +291,35 @@
         """
 
         received_payload_size = len(frame.payload)
-        self._total_incoming_payload_bytes += received_payload_size
+        self._incoming_average_ratio_calculator.add_result_bytes(
+                received_payload_size)
 
         if frame.rsv1 != 1 or common.is_control_opcode(frame.opcode):
-            self._total_filtered_incoming_payload_bytes += (
-                received_payload_size)
+            self._incoming_average_ratio_calculator.add_original_bytes(
+                    received_payload_size)
             return
 
-        frame.payload = self._inflater.filter(frame.payload)
+        frame.payload = self._rfc1979_inflater.filter(frame.payload)
         frame.rsv1 = 0
 
         filtered_payload_size = len(frame.payload)
-        self._total_filtered_incoming_payload_bytes += filtered_payload_size
+        self._incoming_average_ratio_calculator.add_original_bytes(
+                filtered_payload_size)
 
-        _log_decompression_ratio(self._logger, received_payload_size,
-                                 self._total_incoming_payload_bytes,
-                                 filtered_payload_size,
-                                 self._total_filtered_incoming_payload_bytes)
+        _log_incoming_compression_ratio(
+                self._logger,
+                received_payload_size,
+                filtered_payload_size,
+                self._incoming_average_ratio_calculator.get_average_ratio())
 
 
 _available_processors[common.DEFLATE_FRAME_EXTENSION] = (
     DeflateFrameExtensionProcessor)
+_compression_extension_names.append(common.DEFLATE_FRAME_EXTENSION)
 
-
-# Adding vendor-prefixed deflate-frame extension.
-# TODO(bashi): Remove this after WebKit stops using vendor prefix.
 _available_processors[common.X_WEBKIT_DEFLATE_FRAME_EXTENSION] = (
     DeflateFrameExtensionProcessor)
+_compression_extension_names.append(common.X_WEBKIT_DEFLATE_FRAME_EXTENSION)
 
 
 def _parse_compression_method(data):
@@ -306,13 +338,13 @@
 
 
 class CompressionExtensionProcessorBase(ExtensionProcessorInterface):
-    """Base class for Per-frame and Per-message compression extension."""
+    """Base class for perframe-compress and permessage-compress extension."""
 
     _METHOD_PARAM = 'method'
 
     def __init__(self, request):
+        ExtensionProcessorInterface.__init__(self, request)
         self._logger = util.get_class_logger(self)
-        self._request = request
         self._compression_method_name = None
         self._compression_processor = None
         self._compression_processor_hook = None
@@ -357,7 +389,7 @@
         self._compression_processor = compression_processor
         return processor_response
 
-    def get_extension_response(self):
+    def _get_extension_response_internal(self):
         processor_response = self._get_compression_processor_response()
         if processor_response is None:
             return None
@@ -372,7 +404,7 @@
             (self._request.name(), self._compression_method_name))
         return response
 
-    def setup_stream_options(self, stream_options):
+    def _setup_stream_options_internal(self, stream_options):
         if self._compression_processor is None:
             return
         self._compression_processor.setup_stream_options(stream_options)
@@ -384,8 +416,8 @@
         return self._compression_processor
 
 
-class PerFrameCompressionExtensionProcessor(CompressionExtensionProcessorBase):
-    """WebSocket Per-frame compression extension processor.
+class PerFrameCompressExtensionProcessor(CompressionExtensionProcessorBase):
+    """perframe-compress processor.
 
     Specification:
     http://tools.ietf.org/html/draft-ietf-hybi-websocket-perframe-compression
@@ -406,56 +438,66 @@
 
 
 _available_processors[common.PERFRAME_COMPRESSION_EXTENSION] = (
-    PerFrameCompressionExtensionProcessor)
+    PerFrameCompressExtensionProcessor)
+_compression_extension_names.append(common.PERFRAME_COMPRESSION_EXTENSION)
 
 
-class DeflateMessageProcessor(ExtensionProcessorInterface):
-    """Per-message deflate processor."""
+class PerMessageDeflateExtensionProcessor(ExtensionProcessorInterface):
+    """permessage-deflate extension processor. It's also used for
+    permessage-compress extension when the deflate method is chosen.
+
+    Specification:
+    http://tools.ietf.org/html/draft-ietf-hybi-permessage-compression-08
+    """
 
     _S2C_MAX_WINDOW_BITS_PARAM = 's2c_max_window_bits'
     _S2C_NO_CONTEXT_TAKEOVER_PARAM = 's2c_no_context_takeover'
     _C2S_MAX_WINDOW_BITS_PARAM = 'c2s_max_window_bits'
     _C2S_NO_CONTEXT_TAKEOVER_PARAM = 'c2s_no_context_takeover'
 
-    def __init__(self, request):
-        self._request = request
+    def __init__(self, request, draft08=True):
+        """Construct PerMessageDeflateExtensionProcessor
+
+        Args:
+            draft08: Follow the constraints on the parameters that were not
+                specified for permessage-compress but are specified for
+                permessage-deflate as on
+                draft-ietf-hybi-permessage-compression-08.
+        """
+
+        ExtensionProcessorInterface.__init__(self, request)
         self._logger = util.get_class_logger(self)
 
         self._c2s_max_window_bits = None
         self._c2s_no_context_takeover = False
-        self._bfinal = False
 
-        self._compress_outgoing_enabled = False
-
-        # True if a message is fragmented and compression is ongoing.
-        self._compress_ongoing = False
-
-        # Counters for statistics.
-
-        # Total number of outgoing bytes supplied to this filter.
-        self._total_outgoing_payload_bytes = 0
-        # Total number of bytes sent to the network after applying this filter.
-        self._total_filtered_outgoing_payload_bytes = 0
-
-        # Total number of bytes received from the network.
-        self._total_incoming_payload_bytes = 0
-        # Total number of incoming bytes obtained after applying this filter.
-        self._total_filtered_incoming_payload_bytes = 0
+        self._draft08 = draft08
 
     def name(self):
         return 'deflate'
 
-    def get_extension_response(self):
-        # Any unknown parameter will be just ignored.
+    def _get_extension_response_internal(self):
+        if self._draft08:
+            for name in self._request.get_parameter_names():
+                if name not in [self._S2C_MAX_WINDOW_BITS_PARAM,
+                                self._S2C_NO_CONTEXT_TAKEOVER_PARAM,
+                                self._C2S_MAX_WINDOW_BITS_PARAM]:
+                    self._logger.debug('Unknown parameter: %r', name)
+                    return None
+        else:
+            # Any unknown parameter will be just ignored.
+            pass
 
-        s2c_max_window_bits = self._request.get_parameter_value(
-            self._S2C_MAX_WINDOW_BITS_PARAM)
-        if s2c_max_window_bits is not None:
+        s2c_max_window_bits = None
+        if self._request.has_parameter(self._S2C_MAX_WINDOW_BITS_PARAM):
+            s2c_max_window_bits = self._request.get_parameter_value(
+                    self._S2C_MAX_WINDOW_BITS_PARAM)
             try:
-                s2c_max_window_bits = int(s2c_max_window_bits)
+                s2c_max_window_bits = _parse_window_bits(s2c_max_window_bits)
             except ValueError, e:
-                return None
-            if s2c_max_window_bits < 8 or s2c_max_window_bits > 15:
+                self._logger.debug('Bad %s parameter: %r',
+                                   self._S2C_MAX_WINDOW_BITS_PARAM,
+                                   e)
                 return None
 
         s2c_no_context_takeover = self._request.has_parameter(
@@ -463,14 +505,32 @@
         if (s2c_no_context_takeover and
             self._request.get_parameter_value(
                 self._S2C_NO_CONTEXT_TAKEOVER_PARAM) is not None):
+            self._logger.debug('%s parameter must not have a value: %r',
+                               self._S2C_NO_CONTEXT_TAKEOVER_PARAM,
+                               s2c_no_context_takeover)
             return None
 
-        self._deflater = util._RFC1979Deflater(
+        c2s_max_window_bits = self._request.has_parameter(
+            self._C2S_MAX_WINDOW_BITS_PARAM)
+        if (self._draft08 and
+            c2s_max_window_bits and
+            self._request.get_parameter_value(
+                self._C2S_MAX_WINDOW_BITS_PARAM) is not None):
+            self._logger.debug('%s parameter must not have a value in a '
+                               'client\'s opening handshake: %r',
+                               self._C2S_MAX_WINDOW_BITS_PARAM,
+                               c2s_max_window_bits)
+            return None
+
+        self._rfc1979_deflater = util._RFC1979Deflater(
             s2c_max_window_bits, s2c_no_context_takeover)
 
-        self._inflater = util._RFC1979Inflater()
+        self._rfc1979_inflater = util._RFC1979Inflater()
 
-        self._compress_outgoing_enabled = True
+        self._framer = _PerMessageDeflateFramer(
+            s2c_max_window_bits, s2c_no_context_takeover)
+        self._framer.set_bfinal(False)
+        self._framer.set_compress_outgoing_enabled(True)
 
         response = common.ExtensionParameter(self._request.name())
 
@@ -483,9 +543,15 @@
                 self._S2C_NO_CONTEXT_TAKEOVER_PARAM, None)
 
         if self._c2s_max_window_bits is not None:
+            if self._draft08 and not c2s_max_window_bits:
+                self._logger.debug('Processor is configured to use %s but '
+                                   'the client cannot accept it',
+                                   self._C2S_MAX_WINDOW_BITS_PARAM)
+                return None
             response.add_parameter(
                 self._C2S_MAX_WINDOW_BITS_PARAM,
                 str(self._c2s_max_window_bits))
+
         if self._c2s_no_context_takeover:
             response.add_parameter(
                 self._C2S_NO_CONTEXT_TAKEOVER_PARAM, None)
@@ -502,7 +568,146 @@
 
         return response
 
+    def _setup_stream_options_internal(self, stream_options):
+        self._framer.setup_stream_options(stream_options)
+
+    def set_c2s_max_window_bits(self, value):
+        """If this option is specified, this class adds the c2s_max_window_bits
+        extension parameter to the handshake response, but doesn't reduce the
+        LZ77 sliding window size of its inflater. I.e., you can use this for
+        testing client implementation but cannot reduce memory usage of this
+        class.
+
+        If this method has been called with True and an offer without the
+        c2s_max_window_bits extension parameter is received,
+        - (When processing the permessage-deflate extension) this processor
+          declines the request.
+        - (When processing the permessage-compress extension) this processor
+          accepts the request.
+        """
+
+        self._c2s_max_window_bits = value
+
+    def set_c2s_no_context_takeover(self, value):
+        """If this option is specified, this class adds the
+        c2s_no_context_takeover extension parameter to the handshake response,
+        but doesn't reset inflater for each message. I.e., you can use this for
+        testing client implementation but cannot reduce memory usage of this
+        class.
+        """
+
+        self._c2s_no_context_takeover = value
+
+    def set_bfinal(self, value):
+        self._framer.set_bfinal(value)
+
+    def enable_outgoing_compression(self):
+        self._framer.set_compress_outgoing_enabled(True)
+
+    def disable_outgoing_compression(self):
+        self._framer.set_compress_outgoing_enabled(False)
+
+
+class _PerMessageDeflateFramer(object):
+    """A framer for extensions with per-message DEFLATE feature."""
+
+    def __init__(self, deflate_max_window_bits, deflate_no_context_takeover):
+        self._logger = util.get_class_logger(self)
+
+        self._rfc1979_deflater = util._RFC1979Deflater(
+            deflate_max_window_bits, deflate_no_context_takeover)
+
+        self._rfc1979_inflater = util._RFC1979Inflater()
+
+        self._bfinal = False
+
+        self._compress_outgoing_enabled = False
+
+        # True if a message is fragmented and compression is ongoing.
+        self._compress_ongoing = False
+
+        # Calculates
+        #     (Total outgoing bytes supplied to this filter) /
+        #     (Total bytes sent to the network after applying this filter)
+        self._outgoing_average_ratio_calculator = _AverageRatioCalculator()
+
+        # Calculates
+        #     (Total bytes received from the network) /
+        #     (Total incoming bytes obtained after applying this filter)
+        self._incoming_average_ratio_calculator = _AverageRatioCalculator()
+
+    def set_bfinal(self, value):
+        self._bfinal = value
+
+    def set_compress_outgoing_enabled(self, value):
+        self._compress_outgoing_enabled = value
+
+    def _process_incoming_message(self, message, decompress):
+        if not decompress:
+            return message
+
+        received_payload_size = len(message)
+        self._incoming_average_ratio_calculator.add_result_bytes(
+                received_payload_size)
+
+        message = self._rfc1979_inflater.filter(message)
+
+        filtered_payload_size = len(message)
+        self._incoming_average_ratio_calculator.add_original_bytes(
+                filtered_payload_size)
+
+        _log_incoming_compression_ratio(
+                self._logger,
+                received_payload_size,
+                filtered_payload_size,
+                self._incoming_average_ratio_calculator.get_average_ratio())
+
+        return message
+
+    def _process_outgoing_message(self, message, end, binary):
+        if not binary:
+            message = message.encode('utf-8')
+
+        if not self._compress_outgoing_enabled:
+            return message
+
+        original_payload_size = len(message)
+        self._outgoing_average_ratio_calculator.add_original_bytes(
+            original_payload_size)
+
+        message = self._rfc1979_deflater.filter(
+            message, flush=end, bfinal=self._bfinal)
+
+        filtered_payload_size = len(message)
+        self._outgoing_average_ratio_calculator.add_result_bytes(
+            filtered_payload_size)
+
+        _log_outgoing_compression_ratio(
+                self._logger,
+                original_payload_size,
+                filtered_payload_size,
+                self._outgoing_average_ratio_calculator.get_average_ratio())
+
+        if not self._compress_ongoing:
+            self._outgoing_frame_filter.set_compression_bit()
+        self._compress_ongoing = not end
+        return message
+
+    def _process_incoming_frame(self, frame):
+        if frame.rsv1 == 1 and not common.is_control_opcode(frame.opcode):
+            self._incoming_message_filter.decompress_next_message()
+            frame.rsv1 = 0
+
+    def _process_outgoing_frame(self, frame, compression_bit):
+        if (not compression_bit or
+            common.is_control_opcode(frame.opcode)):
+            return
+
+        frame.rsv1 = 1
+
     def setup_stream_options(self, stream_options):
+        """Creates filters and sets them to the StreamOptions."""
+
         class _OutgoingMessageFilter(object):
 
             def __init__(self, parent):
@@ -565,82 +770,16 @@
 
         stream_options.encode_text_message_to_utf8 = False
 
-    def set_c2s_max_window_bits(self, value):
-        self._c2s_max_window_bits = value
 
-    def set_c2s_no_context_takeover(self, value):
-        self._c2s_no_context_takeover = value
-
-    def set_bfinal(self, value):
-        self._bfinal = value
-
-    def enable_outgoing_compression(self):
-        self._compress_outgoing_enabled = True
-
-    def disable_outgoing_compression(self):
-        self._compress_outgoing_enabled = False
-
-    def _process_incoming_message(self, message, decompress):
-        if not decompress:
-            return message
-
-        received_payload_size = len(message)
-        self._total_incoming_payload_bytes += received_payload_size
-
-        message = self._inflater.filter(message)
-
-        filtered_payload_size = len(message)
-        self._total_filtered_incoming_payload_bytes += filtered_payload_size
-
-        _log_decompression_ratio(self._logger, received_payload_size,
-                                 self._total_incoming_payload_bytes,
-                                 filtered_payload_size,
-                                 self._total_filtered_incoming_payload_bytes)
-
-        return message
-
-    def _process_outgoing_message(self, message, end, binary):
-        if not binary:
-            message = message.encode('utf-8')
-
-        if not self._compress_outgoing_enabled:
-            return message
-
-        original_payload_size = len(message)
-        self._total_outgoing_payload_bytes += original_payload_size
-
-        message = self._deflater.filter(
-            message, flush=end, bfinal=self._bfinal)
-
-        filtered_payload_size = len(message)
-        self._total_filtered_outgoing_payload_bytes += filtered_payload_size
-
-        _log_compression_ratio(self._logger, original_payload_size,
-                               self._total_outgoing_payload_bytes,
-                               filtered_payload_size,
-                               self._total_filtered_outgoing_payload_bytes)
-
-        if not self._compress_ongoing:
-            self._outgoing_frame_filter.set_compression_bit()
-        self._compress_ongoing = not end
-        return message
-
-    def _process_incoming_frame(self, frame):
-        if frame.rsv1 == 1 and not common.is_control_opcode(frame.opcode):
-            self._incoming_message_filter.decompress_next_message()
-            frame.rsv1 = 0
-
-    def _process_outgoing_frame(self, frame, compression_bit):
-        if (not compression_bit or
-            common.is_control_opcode(frame.opcode)):
-            return
-
-        frame.rsv1 = 1
+_available_processors[common.PERMESSAGE_DEFLATE_EXTENSION] = (
+        PerMessageDeflateExtensionProcessor)
+# TODO(tyoshino): Reorganize class names.
+_compression_extension_names.append('deflate')
 
 
-class PerMessageCompressionExtensionProcessor(
+class PerMessageCompressExtensionProcessor(
     CompressionExtensionProcessorBase):
-    """WebSocket Per-message compression extension processor.
+    """permessage-compress extension processor.
 
     Specification:
     http://tools.ietf.org/html/draft-ietf-hybi-permessage-compression
@@ -656,18 +795,13 @@
 
     def _lookup_compression_processor(self, method_desc):
         if method_desc.name() == self._DEFLATE_METHOD:
-            return DeflateMessageProcessor(method_desc)
+            return PerMessageDeflateExtensionProcessor(method_desc, False)
         return None
 
 
 _available_processors[common.PERMESSAGE_COMPRESSION_EXTENSION] = (
-    PerMessageCompressionExtensionProcessor)
-
-
-# Adding vendor-prefixed permessage-compress extension.
-# TODO(bashi): Remove this after WebKit stops using vendor prefix.
-_available_processors[common.X_WEBKIT_PERMESSAGE_COMPRESSION_EXTENSION] = (
-    PerMessageCompressionExtensionProcessor)
+    PerMessageCompressExtensionProcessor)
+_compression_extension_names.append(common.PERMESSAGE_COMPRESSION_EXTENSION)
 
 
 class MuxExtensionProcessor(ExtensionProcessorInterface):
@@ -676,52 +810,85 @@
     _QUOTA_PARAM = 'quota'
 
     def __init__(self, request):
-        self._request = request
+        ExtensionProcessorInterface.__init__(self, request)
+        self._quota = 0
+        self._extensions = []
 
     def name(self):
         return common.MUX_EXTENSION
 
-    def get_extension_response(self, ws_request,
-                               logical_channel_extensions):
-        # Mux extension cannot be used after extensions that depend on
-        # frame boundary, extension data field, or any reserved bits
-        # which are attributed to each frame.
-        for extension in logical_channel_extensions:
-            name = extension.name()
-            if (name == common.PERFRAME_COMPRESSION_EXTENSION or
-                name == common.DEFLATE_FRAME_EXTENSION or
-                name == common.X_WEBKIT_DEFLATE_FRAME_EXTENSION):
-                return None
+    def check_consistency_with_other_processors(self, processors):
+        before_mux = True
+        for processor in processors:
+            name = processor.name()
+            if name == self.name():
+                before_mux = False
+                continue
+            if not processor.is_active():
+                continue
+            if before_mux:
+                # Mux extension cannot be used after extensions
+                # that depend on frame boundary, extension data field, or any
+                # reserved bits which are attributed to each frame.
+                if (name == common.PERFRAME_COMPRESSION_EXTENSION or
+                    name == common.DEFLATE_FRAME_EXTENSION or
+                    name == common.X_WEBKIT_DEFLATE_FRAME_EXTENSION):
+                    self.set_active(False)
+                    return
+            else:
+                # Mux extension should not be applied before any history-based
+                # compression extension.
+                if (name == common.PERFRAME_COMPRESSION_EXTENSION or
+                    name == common.DEFLATE_FRAME_EXTENSION or
+                    name == common.X_WEBKIT_DEFLATE_FRAME_EXTENSION or
+                    name == common.PERMESSAGE_COMPRESSION_EXTENSION or
+                    name == common.X_WEBKIT_PERMESSAGE_COMPRESSION_EXTENSION):
+                    self.set_active(False)
+                    return
 
+    def _get_extension_response_internal(self):
+        self._active = False
         quota = self._request.get_parameter_value(self._QUOTA_PARAM)
-        if quota is None:
-            ws_request.mux_quota = 0
-        else:
+        if quota is not None:
             try:
                 quota = int(quota)
             except ValueError, e:
                 return None
             if quota < 0 or quota >= 2 ** 32:
                 return None
-            ws_request.mux_quota = quota
+            self._quota = quota
 
-        ws_request.mux = True
-        ws_request.mux_extensions = logical_channel_extensions
+        self._active = True
         return common.ExtensionParameter(common.MUX_EXTENSION)
 
-    def setup_stream_options(self, stream_options):
+    def _setup_stream_options_internal(self, stream_options):
         pass
 
+    def set_quota(self, quota):
+        self._quota = quota
+
+    def quota(self):
+        return self._quota
+
+    def set_extensions(self, extensions):
+        self._extensions = extensions
+
+    def extensions(self):
+        return self._extensions
+
 
 _available_processors[common.MUX_EXTENSION] = MuxExtensionProcessor
 
 
 def get_extension_processor(extension_request):
-    global _available_processors
     processor_class = _available_processors.get(extension_request.name())
     if processor_class is None:
         return None
     return processor_class(extension_request)
 
 
+def is_compression_extension(extension_name):
+    return extension_name in _compression_extension_names
+
+
 # vi:sts=4 sw=4 et
diff --git a/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/_base.py b/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/_base.py
index e5c94ca..c993a58 100644
--- a/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/_base.py
+++ b/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/_base.py
@@ -84,42 +84,29 @@
         return common.DEFAULT_WEB_SOCKET_PORT
 
 
-def validate_subprotocol(subprotocol, hixie):
+def validate_subprotocol(subprotocol):
     """Validate a value in the Sec-WebSocket-Protocol field.
 
-    See
-    - RFC 6455: Section 4.1., 4.2.2., and 4.3.
-    - HyBi 00: Section 4.1. Opening handshake
-
-    Args:
-         hixie: if True, checks if characters in subprotocol are in range
-                between U+0020 and U+007E. It's required by HyBi 00 but not by
-                RFC 6455.
+    See the Section 4.1., 4.2.2., and 4.3. of RFC 6455.
     """
 
     if not subprotocol:
         raise HandshakeException('Invalid subprotocol name: empty')
-    if hixie:
-        # Parameter should be in the range U+0020 to U+007E.
-        for c in subprotocol:
-            if not 0x20 <= ord(c) <= 0x7e:
-                raise HandshakeException(
-                    'Illegal character in subprotocol name: %r' % c)
-    else:
-        # Parameter should be encoded HTTP token.
-        state = http_header_util.ParsingState(subprotocol)
-        token = http_header_util.consume_token(state)
-        rest = http_header_util.peek(state)
-        # If |rest| is not None, |subprotocol| is not one token or invalid. If
-        # |rest| is None, |token| must not be None because |subprotocol| is
-        # concatenation of |token| and |rest| and is not None.
-        if rest is not None:
-            raise HandshakeException('Invalid non-token string in subprotocol '
-                                     'name: %r' % rest)
+
+    # Parameter should be encoded HTTP token.
+    state = http_header_util.ParsingState(subprotocol)
+    token = http_header_util.consume_token(state)
+    rest = http_header_util.peek(state)
+    # If |rest| is not None, |subprotocol| is not one token or invalid. If
+    # |rest| is None, |token| must not be None because |subprotocol| is
+    # concatenation of |token| and |rest| and is not None.
+    if rest is not None:
+        raise HandshakeException('Invalid non-token string in subprotocol '
+                                 'name: %r' % rest)
 
 
 def parse_host_header(request):
-    fields = request.headers_in['Host'].split(':', 1)
+    fields = request.headers_in[common.HOST_HEADER].split(':', 1)
     if len(fields) == 1:
         return fields[0], get_default_port(request.is_https())
     try:
@@ -132,27 +119,6 @@
     return '%s: %s\r\n' % (name, value)
 
 
-def build_location(request):
-    """Build WebSocket location for request."""
-    location_parts = []
-    if request.is_https():
-        location_parts.append(common.WEB_SOCKET_SECURE_SCHEME)
-    else:
-        location_parts.append(common.WEB_SOCKET_SCHEME)
-    location_parts.append('://')
-    host, port = parse_host_header(request)
-    connection_port = request.connection.local_addr[1]
-    if port != connection_port:
-        raise HandshakeException('Header/connection port mismatch: %d/%d' %
-                                 (port, connection_port))
-    location_parts.append(host)
-    if (port != get_default_port(request.is_https())):
-        location_parts.append(':')
-        location_parts.append(str(port))
-    location_parts.append(request.uri)
-    return ''.join(location_parts)
-
-
 def get_mandatory_header(request, key):
     value = request.headers_in.get(key)
     if value is None:
@@ -180,16 +146,6 @@
                                  request.protocol)
 
 
-def check_header_lines(request, mandatory_headers):
-    check_request_line(request)
-
-    # The expected field names, and the meaning of their corresponding
-    # values, are as follows.
-    #  |Upgrade| and |Connection|
-    for key, expected_value in mandatory_headers:
-        validate_mandatory_header(request, key, expected_value)
-
-
 def parse_token_list(data):
     """Parses a header value which follows 1#token and returns parsed elements
     as a list of strings.
diff --git a/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/hybi.py b/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/hybi.py
index fc0e2a0..1d54a66 100644
--- a/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/hybi.py
+++ b/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/hybi.py
@@ -49,6 +49,7 @@
 
 from mod_pywebsocket import common
 from mod_pywebsocket.extensions import get_extension_processor
+from mod_pywebsocket.extensions import is_compression_extension
 from mod_pywebsocket.handshake._base import check_request_line
 from mod_pywebsocket.handshake._base import format_header
 from mod_pywebsocket.handshake._base import get_mandatory_header
@@ -180,43 +181,59 @@
                         processors.append(processor)
             self._request.ws_extension_processors = processors
 
+            # List of extra headers. The extra handshake handler may add header
+            # data as name/value pairs to this list and pywebsocket appends
+            # them to the WebSocket handshake.
+            self._request.extra_headers = []
+
             # Extra handshake handler may modify/remove processors.
             self._dispatcher.do_extra_handshake(self._request)
             processors = filter(lambda processor: processor is not None,
                                 self._request.ws_extension_processors)
 
+            # Ask each processor if there are extensions on the request which
+            # cannot co-exist. When processor decided other processors cannot
+            # co-exist with it, the processor marks them (or itself) as
+            # "inactive". The first extension processor has the right to
+            # make the final call.
+            for processor in reversed(processors):
+                if processor.is_active():
+                    processor.check_consistency_with_other_processors(
+                        processors)
+            processors = filter(lambda processor: processor.is_active(),
+                                processors)
+
             accepted_extensions = []
 
-            # We need to take care of mux extension here. Extensions that
-            # are placed before mux should be applied to logical channels.
+            # We need to take into account of mux extension here.
+            # If mux extension exists:
+            # - Remove processors of extensions for logical channel,
+            #   which are processors located before the mux processor
+            # - Pass extension requests for logical channel to mux processor
+            # - Attach the mux processor to the request. It will be referred
+            #   by dispatcher to see whether the dispatcher should use mux
+            #   handler or not.
             mux_index = -1
             for i, processor in enumerate(processors):
                 if processor.name() == common.MUX_EXTENSION:
                     mux_index = i
                     break
             if mux_index >= 0:
-                mux_processor = processors[mux_index]
-                logical_channel_processors = processors[:mux_index]
-                processors = processors[mux_index+1:]
-
-                for processor in logical_channel_processors:
-                    extension_response = processor.get_extension_response()
-                    if extension_response is None:
-                        # Rejected.
-                        continue
-                    accepted_extensions.append(extension_response)
-                # Pass a shallow copy of accepted_extensions as extensions for
-                # logical channels.
-                mux_response = mux_processor.get_extension_response(
-                    self._request, accepted_extensions[:])
-                if mux_response is not None:
-                    accepted_extensions.append(mux_response)
+                logical_channel_extensions = []
+                for processor in processors[:mux_index]:
+                    logical_channel_extensions.append(processor.request())
+                    processor.set_active(False)
+                self._request.mux_processor = processors[mux_index]
+                self._request.mux_processor.set_extensions(
+                    logical_channel_extensions)
+                processors = filter(lambda processor: processor.is_active(),
+                                    processors)
 
             stream_options = StreamOptions()
 
-            # When there is mux extension, here, |processors| contain only
-            # prosessors for extensions placed after mux.
-            for processor in processors:
+            for index, processor in enumerate(processors):
+                if not processor.is_active():
+                    continue
 
                 extension_response = processor.get_extension_response()
                 if extension_response is None:
@@ -227,6 +244,14 @@
 
                 processor.setup_stream_options(stream_options)
 
+                if not is_compression_extension(processor.name()):
+                    continue
+
+                # Inactivate all of the following compression extensions.
+                for j in xrange(index + 1, len(processors)):
+                    if is_compression_extension(processors[j].name()):
+                        processors[j].set_active(False)
+
             if len(accepted_extensions) > 0:
                 self._request.ws_extensions = accepted_extensions
                 self._logger.debug(
@@ -242,7 +267,7 @@
                     raise HandshakeException(
                         'do_extra_handshake must choose one subprotocol from '
                         'ws_requested_protocols and set it to ws_protocol')
-                validate_subprotocol(self._request.ws_protocol, hixie=False)
+                validate_subprotocol(self._request.ws_protocol)
 
                 self._logger.debug(
                     'Subprotocol accepted: %r',
@@ -375,6 +400,7 @@
 
         response.append('HTTP/1.1 101 Switching Protocols\r\n')
 
+        # WebSocket headers
         response.append(format_header(
             common.UPGRADE_HEADER, common.WEBSOCKET_UPGRADE_TYPE))
         response.append(format_header(
@@ -390,6 +416,11 @@
             response.append(format_header(
                 common.SEC_WEBSOCKET_EXTENSIONS_HEADER,
                 common.format_extensions(self._request.ws_extensions)))
+
+        # Headers not specific for WebSocket
+        for name, value in self._request.extra_headers:
+            response.append(format_header(name, value))
+
         response.append('\r\n')
 
         return ''.join(response)
diff --git a/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/hybi00.py b/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/hybi00.py
index cc6f8dc..8757717 100644
--- a/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/hybi00.py
+++ b/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/hybi00.py
@@ -51,11 +51,12 @@
 from mod_pywebsocket.stream import StreamHixie75
 from mod_pywebsocket import util
 from mod_pywebsocket.handshake._base import HandshakeException
-from mod_pywebsocket.handshake._base import build_location
-from mod_pywebsocket.handshake._base import check_header_lines
+from mod_pywebsocket.handshake._base import check_request_line
 from mod_pywebsocket.handshake._base import format_header
+from mod_pywebsocket.handshake._base import get_default_port
 from mod_pywebsocket.handshake._base import get_mandatory_header
-from mod_pywebsocket.handshake._base import validate_subprotocol
+from mod_pywebsocket.handshake._base import parse_host_header
+from mod_pywebsocket.handshake._base import validate_mandatory_header
 
 
 _MANDATORY_HEADERS = [
@@ -65,6 +66,56 @@
 ]
 
 
+def _validate_subprotocol(subprotocol):
+    """Checks if characters in subprotocol are in range between U+0020 and
+    U+007E. A value in the Sec-WebSocket-Protocol field need to satisfy this
+    requirement.
+
+    See the Section 4.1. Opening handshake of the spec.
+    """
+
+    if not subprotocol:
+        raise HandshakeException('Invalid subprotocol name: empty')
+
+    # Parameter should be in the range U+0020 to U+007E.
+    for c in subprotocol:
+        if not 0x20 <= ord(c) <= 0x7e:
+            raise HandshakeException(
+                'Illegal character in subprotocol name: %r' % c)
+
+
+def _check_header_lines(request, mandatory_headers):
+    check_request_line(request)
+
+    # The expected field names, and the meaning of their corresponding
+    # values, are as follows.
+    #  |Upgrade| and |Connection|
+    for key, expected_value in mandatory_headers:
+        validate_mandatory_header(request, key, expected_value)
+
+
+def _build_location(request):
+    """Build WebSocket location for request."""
+
+    location_parts = []
+    if request.is_https():
+        location_parts.append(common.WEB_SOCKET_SECURE_SCHEME)
+    else:
+        location_parts.append(common.WEB_SOCKET_SCHEME)
+    location_parts.append('://')
+    host, port = parse_host_header(request)
+    connection_port = request.connection.local_addr[1]
+    if port != connection_port:
+        raise HandshakeException('Header/connection port mismatch: %d/%d' %
+                                 (port, connection_port))
+    location_parts.append(host)
+    if (port != get_default_port(request.is_https())):
+        location_parts.append(':')
+        location_parts.append(str(port))
+    location_parts.append(request.unparsed_uri)
+    return ''.join(location_parts)
+
+
 class Handshaker(object):
     """Opening handshake processor for the WebSocket protocol version HyBi 00.
     """
@@ -101,7 +152,7 @@
 
         # 5.1 Reading the client's opening handshake.
         # dispatcher sets it in self._request.
-        check_header_lines(self._request, _MANDATORY_HEADERS)
+        _check_header_lines(self._request, _MANDATORY_HEADERS)
         self._set_resource()
         self._set_subprotocol()
         self._set_location()
@@ -121,14 +172,14 @@
         subprotocol = self._request.headers_in.get(
             common.SEC_WEBSOCKET_PROTOCOL_HEADER)
         if subprotocol is not None:
-            validate_subprotocol(subprotocol, hixie=True)
+            _validate_subprotocol(subprotocol)
         self._request.ws_protocol = subprotocol
 
     def _set_location(self):
         # |Host|
         host = self._request.headers_in.get(common.HOST_HEADER)
         if host is not None:
-            self._request.ws_location = build_location(self._request)
+            self._request.ws_location = _build_location(self._request)
         # TODO(ukai): check host is this host.
 
     def _set_origin(self):
diff --git a/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/headerparserhandler.py b/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/headerparserhandler.py
index 2cc62de..c244421 100644
--- a/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/headerparserhandler.py
+++ b/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/headerparserhandler.py
@@ -167,7 +167,9 @@
         handler_root, handler_scan, allow_handlers_outside_root)
 
     for warning in dispatcher.source_warnings():
-        apache.log_error('mod_pywebsocket: %s' % warning, apache.APLOG_WARNING)
+        apache.log_error(
+            'mod_pywebsocket: Warning in source loading: %s' % warning,
+            apache.APLOG_WARNING)
 
     return dispatcher
 
@@ -191,12 +193,16 @@
         # Fallback to default http handler for request paths for which
         # we don't have request handlers.
         if not _dispatcher.get_handler_suite(request.uri):
-            request.log_error('No handler for resource: %r' % request.uri,
-                              apache.APLOG_INFO)
-            request.log_error('Fallback to Apache', apache.APLOG_INFO)
+            request.log_error(
+                'mod_pywebsocket: No handler for resource: %r' % request.uri,
+                apache.APLOG_INFO)
+            request.log_error(
+                'mod_pywebsocket: Fallback to Apache', apache.APLOG_INFO)
             return apache.DECLINED
     except dispatch.DispatchException, e:
-        request.log_error('mod_pywebsocket: %s' % e, apache.APLOG_INFO)
+        request.log_error(
+            'mod_pywebsocket: Dispatch failed for error: %s' % e,
+            apache.APLOG_INFO)
         if not handshake_is_done:
             return e.status
 
@@ -210,26 +216,30 @@
             handshake.do_handshake(
                 request, _dispatcher, allowDraft75=allow_draft75)
         except handshake.VersionException, e:
-            request.log_error('mod_pywebsocket: %s' % e, apache.APLOG_INFO)
+            request.log_error(
+                'mod_pywebsocket: Handshake failed for version error: %s' % e,
+                apache.APLOG_INFO)
             request.err_headers_out.add(common.SEC_WEBSOCKET_VERSION_HEADER,
                                         e.supported_versions)
             return apache.HTTP_BAD_REQUEST
         except handshake.HandshakeException, e:
             # Handshake for ws/wss failed.
             # Send http response with error status.
-            request.log_error('mod_pywebsocket: %s' % e, apache.APLOG_INFO)
+            request.log_error(
+                'mod_pywebsocket: Handshake failed for error: %s' % e,
+                apache.APLOG_INFO)
             return e.status
 
         handshake_is_done = True
         request._dispatcher = _dispatcher
         _dispatcher.transfer_data(request)
     except handshake.AbortedByUserException, e:
-        request.log_error('mod_pywebsocket: %s' % e, apache.APLOG_INFO)
+        request.log_error('mod_pywebsocket: Aborted: %s' % e, apache.APLOG_INFO)
     except Exception, e:
         # DispatchException can also be thrown if something is wrong in
         # pywebsocket code. It's caught here, then.
 
-        request.log_error('mod_pywebsocket: %s\n%s' %
+        request.log_error('mod_pywebsocket: Exception occurred: %s\n%s' %
                           (e, util.get_stack_trace()),
                           apache.APLOG_ERR)
         # Unknown exceptions before handshake mean Apache must handle its
diff --git a/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/mux.py b/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/mux.py
index f0bdd24..7633468 100644
--- a/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/mux.py
+++ b/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/mux.py
@@ -50,6 +50,7 @@
 from mod_pywebsocket import util
 from mod_pywebsocket._stream_base import BadOperationException
 from mod_pywebsocket._stream_base import ConnectionTerminatedException
+from mod_pywebsocket._stream_base import InvalidFrameException
 from mod_pywebsocket._stream_hybi import Frame
 from mod_pywebsocket._stream_hybi import Stream
 from mod_pywebsocket._stream_hybi import StreamOptions
@@ -94,10 +95,12 @@
 _DROP_CODE_INVALID_MUX_CONTROL_BLOCK = 2005
 _DROP_CODE_CHANNEL_ALREADY_EXISTS = 2006
 _DROP_CODE_NEW_CHANNEL_SLOT_VIOLATION = 2007
+_DROP_CODE_UNKNOWN_REQUEST_ENCODING = 2010
 
-_DROP_CODE_UNKNOWN_REQUEST_ENCODING = 3002
 _DROP_CODE_SEND_QUOTA_VIOLATION = 3005
+_DROP_CODE_SEND_QUOTA_OVERFLOW = 3006
 _DROP_CODE_ACKNOWLEDGED = 3008
+_DROP_CODE_BAD_FRAGMENTATION = 3009
 
 
 class MuxUnexpectedException(Exception):
@@ -158,8 +161,7 @@
 
 
 def _create_add_channel_response(channel_id, encoded_handshake,
-                                 encoding=0, rejected=False,
-                                 outer_frame_mask=False):
+                                 encoding=0, rejected=False):
     if encoding != 0 and encoding != 1:
         raise ValueError('Invalid encoding %d' % encoding)
 
@@ -169,12 +171,10 @@
              _encode_channel_id(channel_id) +
              _encode_number(len(encoded_handshake)) +
              encoded_handshake)
-    payload = _encode_channel_id(_CONTROL_CHANNEL_ID) + block
-    return create_binary_frame(payload, mask=outer_frame_mask)
+    return block
 
 
-def _create_drop_channel(channel_id, code=None, message='',
-                         outer_frame_mask=False):
+def _create_drop_channel(channel_id, code=None, message=''):
     if len(message) > 0 and code is None:
         raise ValueError('Code must be specified if message is specified')
 
@@ -187,36 +187,31 @@
         reason_size = _encode_number(len(reason))
         block += reason_size + reason
 
-    payload = _encode_channel_id(_CONTROL_CHANNEL_ID) + block
-    return create_binary_frame(payload, mask=outer_frame_mask)
+    return block
 
 
-def _create_flow_control(channel_id, replenished_quota,
-                         outer_frame_mask=False):
+def _create_flow_control(channel_id, replenished_quota):
     first_byte = _MUX_OPCODE_FLOW_CONTROL << 5
     block = (chr(first_byte) +
              _encode_channel_id(channel_id) +
              _encode_number(replenished_quota))
-    payload = _encode_channel_id(_CONTROL_CHANNEL_ID) + block
-    return create_binary_frame(payload, mask=outer_frame_mask)
+    return block
 
 
-def _create_new_channel_slot(slots, send_quota, outer_frame_mask=False):
+def _create_new_channel_slot(slots, send_quota):
     if slots < 0 or send_quota < 0:
         raise ValueError('slots and send_quota must be non-negative.')
     first_byte = _MUX_OPCODE_NEW_CHANNEL_SLOT << 5
     block = (chr(first_byte) +
              _encode_number(slots) +
              _encode_number(send_quota))
-    payload = _encode_channel_id(_CONTROL_CHANNEL_ID) + block
-    return create_binary_frame(payload, mask=outer_frame_mask)
+    return block
 
 
-def _create_fallback_new_channel_slot(outer_frame_mask=False):
+def _create_fallback_new_channel_slot():
     first_byte = (_MUX_OPCODE_NEW_CHANNEL_SLOT << 5) | 1 # Set the F flag
     block = (chr(first_byte) + _encode_number(0) + _encode_number(0))
-    payload = _encode_channel_id(_CONTROL_CHANNEL_ID) + block
-    return create_binary_frame(payload, mask=outer_frame_mask)
+    return block
 
 
 def _parse_request_text(request_text):
@@ -318,44 +313,34 @@
 
     def _read_number(self):
         if self._read_position + 1 > len(self._data):
-            raise PhysicalConnectionError(
-                _DROP_CODE_INVALID_MUX_CONTROL_BLOCK,
+            raise ValueError(
                 'Cannot read the first byte of number field')
 
         number = ord(self._data[self._read_position])
         if number & 0x80 == 0x80:
-            raise PhysicalConnectionError(
-                _DROP_CODE_INVALID_MUX_CONTROL_BLOCK,
+            raise ValueError(
                 'The most significant bit of the first byte of number should '
                 'be unset')
         self._read_position += 1
         pos = self._read_position
         if number == 127:
             if pos + 8 > len(self._data):
-                raise PhysicalConnectionError(
-                    _DROP_CODE_INVALID_MUX_CONTROL_BLOCK,
-                    'Invalid number field')
+                raise ValueError('Invalid number field')
             self._read_position += 8
             number = struct.unpack('!Q', self._data[pos:pos+8])[0]
             if number > 0x7FFFFFFFFFFFFFFF:
-                raise PhysicalConnectionError(
-                    _DROP_CODE_INVALID_MUX_CONTROL_BLOCK,
-                    'Encoded number >= 2^63')
+                raise ValueError('Encoded number(%d) >= 2^63' % number)
             if number <= 0xFFFF:
-                raise PhysicalConnectionError(
-                    _DROP_CODE_INVALID_MUX_CONTROL_BLOCK,
+                raise ValueError(
                     '%d should not be encoded by 9 bytes encoding' % number)
             return number
         if number == 126:
             if pos + 2 > len(self._data):
-                raise PhysicalConnectionError(
-                    _DROP_CODE_INVALID_MUX_CONTROL_BLOCK,
-                    'Invalid number field')
+                raise ValueError('Invalid number field')
             self._read_position += 2
             number = struct.unpack('!H', self._data[pos:pos+2])[0]
             if number <= 125:
-                raise PhysicalConnectionError(
-                    _DROP_CODE_INVALID_MUX_CONTROL_BLOCK,
+                raise ValueError(
                     '%d should not be encoded by 3 bytes encoding' % number)
         return number
 
@@ -366,7 +351,11 @@
             - the contents.
         """
 
-        size = self._read_number()
+        try:
+            size = self._read_number()
+        except ValueError, e:
+            raise PhysicalConnectionError(_DROP_CODE_INVALID_MUX_CONTROL_BLOCK,
+                                          str(e))
         pos = self._read_position
         if pos + size > len(self._data):
             raise PhysicalConnectionError(
@@ -419,9 +408,11 @@
 
         try:
             control_block.channel_id = self.read_channel_id()
+            control_block.send_quota = self._read_number()
         except ValueError, e:
-            raise PhysicalConnectionError(_DROP_CODE_INVALID_MUX_CONTROL_BLOCK)
-        control_block.send_quota = self._read_number()
+            raise PhysicalConnectionError(_DROP_CODE_INVALID_MUX_CONTROL_BLOCK,
+                                          str(e))
+
         return control_block
 
     def _read_drop_channel(self, first_byte, control_block):
@@ -455,8 +446,12 @@
                 _DROP_CODE_INVALID_MUX_CONTROL_BLOCK,
                 'Reserved bits must be unset')
         control_block.fallback = first_byte & 1
-        control_block.slots = self._read_number()
-        control_block.send_quota = self._read_number()
+        try:
+            control_block.slots = self._read_number()
+            control_block.send_quota = self._read_number()
+        except ValueError, e:
+            raise PhysicalConnectionError(_DROP_CODE_INVALID_MUX_CONTROL_BLOCK,
+                                          str(e))
         return control_block
 
     def read_control_blocks(self):
@@ -549,8 +544,12 @@
         self._mux_handler = mux_handler
         self._channel_id = channel_id
         self._incoming_data = ''
+
+        # - Protects _waiting_write_completion
+        # - Signals the thread waiting for completion of write by mux handler
         self._write_condition = threading.Condition()
         self._waiting_write_completion = False
+
         self._read_condition = threading.Condition()
         self._read_state = self.STATE_ACTIVE
 
@@ -594,6 +593,7 @@
             self._waiting_write_completion = True
             self._mux_handler.send_data(self._channel_id, data)
             self._write_condition.wait()
+            # TODO(tyoshino): Raise an exception if woke up by on_writer_done.
         finally:
             self._write_condition.release()
 
@@ -607,20 +607,31 @@
 
         self._mux_handler.send_control_data(data)
 
-    def notify_write_done(self):
+    def on_write_data_done(self):
         """Called when sending data is completed."""
 
         try:
             self._write_condition.acquire()
             if not self._waiting_write_completion:
                 raise MuxUnexpectedException(
-                    'Invalid call of notify_write_done for logical connection'
-                    ' %d' % self._channel_id)
+                    'Invalid call of on_write_data_done for logical '
+                    'connection %d' % self._channel_id)
             self._waiting_write_completion = False
             self._write_condition.notify()
         finally:
             self._write_condition.release()
 
+    def on_writer_done(self):
+        """Called by the mux handler when the writer thread has finished."""
+
+        try:
+            self._write_condition.acquire()
+            self._waiting_write_completion = False
+            self._write_condition.notify()
+        finally:
+            self._write_condition.release()
+
+
     def append_frame_data(self, frame_data):
         """Appends incoming frame data. Called when mux_handler dispatches
         frame data to the corresponding application.
@@ -686,37 +697,162 @@
         self._read_condition.release()
 
 
+class _InnerMessage(object):
+    """Holds the result of _InnerMessageBuilder.build().
+    """
+
+    def __init__(self, opcode, payload):
+        self.opcode = opcode
+        self.payload = payload
+
+
+class _InnerMessageBuilder(object):
+    """A class that holds the context of inner message fragmentation and
+    builds a message from fragmented inner frame(s).
+    """
+
+    def __init__(self):
+        self._control_opcode = None
+        self._pending_control_fragments = []
+        self._message_opcode = None
+        self._pending_message_fragments = []
+        self._frame_handler = self._handle_first
+
+    def _handle_first(self, frame):
+        if frame.opcode == common.OPCODE_CONTINUATION:
+            raise InvalidFrameException('Sending invalid continuation opcode')
+
+        if common.is_control_opcode(frame.opcode):
+            return self._process_first_fragmented_control(frame)
+        else:
+            return self._process_first_fragmented_message(frame)
+
+    def _process_first_fragmented_control(self, frame):
+        self._control_opcode = frame.opcode
+        self._pending_control_fragments.append(frame.payload)
+        if not frame.fin:
+            self._frame_handler = self._handle_fragmented_control
+            return None
+        return self._reassemble_fragmented_control()
+
+    def _process_first_fragmented_message(self, frame):
+        self._message_opcode = frame.opcode
+        self._pending_message_fragments.append(frame.payload)
+        if not frame.fin:
+            self._frame_handler = self._handle_fragmented_message
+            return None
+        return self._reassemble_fragmented_message()
+
+    def _handle_fragmented_control(self, frame):
+        if frame.opcode != common.OPCODE_CONTINUATION:
+            raise InvalidFrameException(
+                'Sending invalid opcode %d while sending fragmented control '
+                'message' % frame.opcode)
+        self._pending_control_fragments.append(frame.payload)
+        if not frame.fin:
+            return None
+        return self._reassemble_fragmented_control()
+
+    def _reassemble_fragmented_control(self):
+        opcode = self._control_opcode
+        payload = ''.join(self._pending_control_fragments)
+        self._control_opcode = None
+        self._pending_control_fragments = []
+        if self._message_opcode is not None:
+            self._frame_handler = self._handle_fragmented_message
+        else:
+            self._frame_handler = self._handle_first
+        return _InnerMessage(opcode, payload)
+
+    def _handle_fragmented_message(self, frame):
+        # Sender can interleave a control message while sending fragmented
+        # messages.
+        if common.is_control_opcode(frame.opcode):
+            if self._control_opcode is not None:
+                raise MuxUnexpectedException(
+                    'Should not reach here(Bug in builder)')
+            return self._process_first_fragmented_control(frame)
+
+        if frame.opcode != common.OPCODE_CONTINUATION:
+            raise InvalidFrameException(
+                'Sending invalid opcode %d while sending fragmented message' %
+                frame.opcode)
+        self._pending_message_fragments.append(frame.payload)
+        if not frame.fin:
+            return None
+        return self._reassemble_fragmented_message()
+
+    def _reassemble_fragmented_message(self):
+        opcode = self._message_opcode
+        payload = ''.join(self._pending_message_fragments)
+        self._message_opcode = None
+        self._pending_message_fragments = []
+        self._frame_handler = self._handle_first
+        return _InnerMessage(opcode, payload)
+
+    def build(self, frame):
+        """Build an inner message. Returns an _InnerMessage instance when
+        the given frame is the last fragmented frame. Returns None otherwise.
+
+        Args:
+            frame: an inner frame.
+        Raises:
+            InvalidFrameException: when received invalid opcode. (e.g.
+                receiving non continuation data opcode but the fin flag of
+                the previous inner frame was not set.)
+        """
+
+        return self._frame_handler(frame)
+
+
 class _LogicalStream(Stream):
     """Mimics the Stream class. This class interprets multiplexed WebSocket
     frames.
     """
 
-    def __init__(self, request, send_quota, receive_quota):
+    def __init__(self, request, stream_options, send_quota, receive_quota):
         """Constructs an instance.
 
         Args:
             request: _LogicalRequest instance.
+            stream_options: StreamOptions instance.
             send_quota: Initial send quota.
             receive_quota: Initial receive quota.
         """
 
-        # TODO(bashi): Support frame filters.
-        stream_options = StreamOptions()
         # Physical stream is responsible for masking.
         stream_options.unmask_receive = False
-        # Control frames can be fragmented on logical channel.
-        stream_options.allow_fragmented_control_frame = True
         Stream.__init__(self, request, stream_options)
+
+        self._send_closed = False
         self._send_quota = send_quota
-        self._send_quota_condition = threading.Condition()
+        # - Protects _send_closed and _send_quota
+        # - Signals the thread waiting for send quota replenished
+        self._send_condition = threading.Condition()
+
+        # The opcode of the first frame in messages.
+        self._message_opcode = common.OPCODE_TEXT
+        # True when the last message was fragmented.
+        self._last_message_was_fragmented = False
+
         self._receive_quota = receive_quota
         self._write_inner_frame_semaphore = threading.Semaphore()
 
+        self._inner_message_builder = _InnerMessageBuilder()
+
     def _create_inner_frame(self, opcode, payload, end=True):
-        # TODO(bashi): Support extensions that use reserved bits.
-        first_byte = (end << 7) | opcode
-        return (_encode_channel_id(self._request.channel_id) +
-                chr(first_byte) + payload)
+        frame = Frame(fin=end, opcode=opcode, payload=payload)
+        for frame_filter in self._options.outgoing_frame_filters:
+            frame_filter.filter(frame)
+
+        if len(payload) != len(frame.payload):
+            raise MuxUnexpectedException(
+                'Mux extension must not be used after extensions which change '
+                ' frame boundary')
+
+        first_byte = ((frame.fin << 7) | (frame.rsv1 << 6) |
+                      (frame.rsv2 << 5) | (frame.rsv3 << 4) | frame.opcode)
+        return chr(first_byte) + frame.payload
 
     def _write_inner_frame(self, opcode, payload, end=True):
         payload_length = len(payload)
@@ -730,14 +866,36 @@
             # multiplexing control blocks can be inserted between fragmented
             # inner frames on the physical channel.
             self._write_inner_frame_semaphore.acquire()
+
+            # Consume an octet quota when this is the first fragmented frame.
+            if opcode != common.OPCODE_CONTINUATION:
+                try:
+                    self._send_condition.acquire()
+                    while (not self._send_closed) and self._send_quota == 0:
+                        self._send_condition.wait()
+
+                    if self._send_closed:
+                        raise BadOperationException(
+                            'Logical connection %d is closed' %
+                            self._request.channel_id)
+
+                    self._send_quota -= 1
+                finally:
+                    self._send_condition.release()
+
             while write_position < payload_length:
                 try:
-                    self._send_quota_condition.acquire()
-                    while self._send_quota == 0:
+                    self._send_condition.acquire()
+                    while (not self._send_closed) and self._send_quota == 0:
                         self._logger.debug(
                             'No quota. Waiting FlowControl message for %d.' %
                             self._request.channel_id)
-                        self._send_quota_condition.wait()
+                        self._send_condition.wait()
+
+                    if self._send_closed:
+                        raise BadOperationException(
+                            'Logical connection %d is closed' %
+                            self.request._channel_id)
 
                     remaining = payload_length - write_position
                     write_length = min(self._send_quota, remaining)
@@ -749,18 +907,16 @@
                         opcode,
                         payload[write_position:write_position+write_length],
                         inner_frame_end)
-                    frame_data = self._writer.build(
-                        inner_frame, end=True, binary=True)
                     self._send_quota -= write_length
                     self._logger.debug('Consumed quota=%d, remaining=%d' %
                                        (write_length, self._send_quota))
                 finally:
-                    self._send_quota_condition.release()
+                    self._send_condition.release()
 
                 # Writing data will block the worker so we need to release
-                # _send_quota_condition before writing.
-                self._logger.debug('Sending inner frame: %r' % frame_data)
-                self._request.connection.write(frame_data)
+                # _send_condition before writing.
+                self._logger.debug('Sending inner frame: %r' % inner_frame)
+                self._request.connection.write(inner_frame)
                 write_position += write_length
 
                 opcode = common.OPCODE_CONTINUATION
@@ -773,12 +929,18 @@
     def replenish_send_quota(self, send_quota):
         """Replenish send quota."""
 
-        self._send_quota_condition.acquire()
-        self._send_quota += send_quota
-        self._logger.debug('Replenished send quota for channel id %d: %d' %
-                           (self._request.channel_id, self._send_quota))
-        self._send_quota_condition.notify()
-        self._send_quota_condition.release()
+        try:
+            self._send_condition.acquire()
+            if self._send_quota + send_quota > 0x7FFFFFFFFFFFFFFF:
+                self._send_quota = 0
+                raise LogicalChannelError(
+                    self._request.channel_id, _DROP_CODE_SEND_QUOTA_OVERFLOW)
+            self._send_quota += send_quota
+            self._logger.debug('Replenished send quota for channel id %d: %d' %
+                               (self._request.channel_id, self._send_quota))
+        finally:
+            self._send_condition.notify()
+            self._send_condition.release()
 
     def consume_receive_quota(self, amount):
         """Consumes receive quota. Returns False on failure."""
@@ -808,7 +970,19 @@
             opcode = common.OPCODE_TEXT
             message = message.encode('utf-8')
 
+        for message_filter in self._options.outgoing_message_filters:
+            message = message_filter.filter(message, end, binary)
+
+        if self._last_message_was_fragmented:
+            if opcode != self._message_opcode:
+                raise BadOperationException('Message types are different in '
+                                            'frames for the same message')
+            opcode = common.OPCODE_CONTINUATION
+        else:
+            self._message_opcode = opcode
+
         self._write_inner_frame(opcode, message, end)
+        self._last_message_was_fragmented = not end
 
     def _receive_frame(self):
         """Overrides Stream._receive_frame.
@@ -821,6 +995,9 @@
 
         opcode, payload, fin, rsv1, rsv2, rsv3 = Stream._receive_frame(self)
         amount = len(payload)
+        # Replenish extra one octet when receiving the first fragmented frame.
+        if opcode != common.OPCODE_CONTINUATION:
+            amount += 1
         self._receive_quota += amount
         frame_data = _create_flow_control(self._request.channel_id,
                                           amount)
@@ -829,6 +1006,21 @@
         self._request.connection.write_control_data(frame_data)
         return opcode, payload, fin, rsv1, rsv2, rsv3
 
+    def _get_message_from_frame(self, frame):
+        """Overrides Stream._get_message_from_frame.
+        """
+
+        try:
+            inner_message = self._inner_message_builder.build(frame)
+        except InvalidFrameException:
+            raise LogicalChannelError(
+                self._request.channel_id, _DROP_CODE_BAD_FRAGMENTATION)
+
+        if inner_message is None:
+            return None
+        self._original_opcode = inner_message.opcode
+        return inner_message.payload
+
     def receive_message(self):
         """Overrides Stream.receive_message."""
 
@@ -875,12 +1067,13 @@
                            self._request.channel_id)
         self._request.server_terminated = True
 
-    def _drain_received_data(self):
-        """Overrides Stream._drain_received_data. Nothing need to be done for
-        logical channel.
-        """
+    def stop_sending(self):
+        """Stops accepting new send operation (_write_inner_frame)."""
 
-        pass
+        self._send_condition.acquire()
+        self._send_closed = True
+        self._send_condition.notify()
+        self._send_condition.release()
 
 
 class _OutgoingData(object):
@@ -911,8 +1104,17 @@
         self._logger = util.get_class_logger(self)
         self._mux_handler = mux_handler
         self.setDaemon(True)
+
+        # When set, make this thread stop accepting new data, flush pending
+        # data and exit.
         self._stop_requested = False
+        # The close code of the physical connection.
+        self._close_code = common.STATUS_NORMAL_CLOSURE
+        # Deque for passing write data. It's protected by _deque_condition
+        # until _stop_requested is set.
         self._deque = collections.deque()
+        # - Protects _deque, _stop_requested and _close_code
+        # - Signals threads waiting for them to be available
         self._deque_condition = threading.Condition()
 
     def put_outgoing_data(self, data):
@@ -937,8 +1139,11 @@
             self._deque_condition.release()
 
     def _write_data(self, outgoing_data):
+        message = (_encode_channel_id(outgoing_data.channel_id) +
+                   outgoing_data.data)
         try:
-            self._mux_handler.physical_connection.write(outgoing_data.data)
+            self._mux_handler.physical_stream.send_message(
+                message=message, end=True, binary=True)
         except Exception, e:
             util.prepend_message_to_exception(
                 'Failed to send message to %r: ' %
@@ -948,33 +1153,51 @@
         # TODO(bashi): It would be better to block the thread that sends
         # control data as well.
         if outgoing_data.channel_id != _CONTROL_CHANNEL_ID:
-            self._mux_handler.notify_write_done(outgoing_data.channel_id)
+            self._mux_handler.notify_write_data_done(outgoing_data.channel_id)
 
     def run(self):
-        self._deque_condition.acquire()
-        while not self._stop_requested:
-            if len(self._deque) == 0:
-                self._deque_condition.wait()
-                continue
-
-            outgoing_data = self._deque.popleft()
-            self._deque_condition.release()
-            self._write_data(outgoing_data)
-            self._deque_condition.acquire()
-
-        # Flush deque
         try:
-            while len(self._deque) > 0:
-                outgoing_data = self._deque.popleft()
-                self._write_data(outgoing_data)
-        finally:
-            self._deque_condition.release()
+            self._deque_condition.acquire()
+            while not self._stop_requested:
+                if len(self._deque) == 0:
+                    self._deque_condition.wait()
+                    continue
 
-    def stop(self):
+                outgoing_data = self._deque.popleft()
+
+                self._deque_condition.release()
+                self._write_data(outgoing_data)
+                self._deque_condition.acquire()
+
+            # Flush deque.
+            #
+            # At this point, self._deque_condition is always acquired.
+            try:
+                while len(self._deque) > 0:
+                    outgoing_data = self._deque.popleft()
+                    self._write_data(outgoing_data)
+            finally:
+                self._deque_condition.release()
+
+            # Close physical connection.
+            try:
+                # Don't wait the response here. The response will be read
+                # by the reader thread.
+                self._mux_handler.physical_stream.close_connection(
+                    self._close_code, wait_response=False)
+            except Exception, e:
+                util.prepend_message_to_exception(
+                    'Failed to close the physical connection: %r' % e)
+                raise
+        finally:
+            self._mux_handler.notify_writer_done()
+
+    def stop(self, close_code=common.STATUS_NORMAL_CLOSURE):
         """Stops the writer thread."""
 
         self._deque_condition.acquire()
         self._stop_requested = True
+        self._close_code = close_code
         self._deque_condition.notify()
         self._deque_condition.release()
 
@@ -1055,6 +1278,9 @@
         try:
             # Non-critical exceptions will be handled by dispatcher.
             self._mux_handler.dispatcher.transfer_data(self._request)
+        except LogicalChannelError, e:
+            self._mux_handler.fail_logical_channel(
+                e.channel_id, e.drop_code, e.message)
         finally:
             self._mux_handler.notify_worker_done(self._request.channel_id)
 
@@ -1083,8 +1309,6 @@
         #     these headers are included already.
         request.headers_in[common.UPGRADE_HEADER] = (
             common.WEBSOCKET_UPGRADE_TYPE)
-        request.headers_in[common.CONNECTION_HEADER] = (
-            common.UPGRADE_CONNECTION_TYPE)
         request.headers_in[common.SEC_WEBSOCKET_VERSION_HEADER] = (
             str(common.VERSION_HYBI_LATEST))
         request.headers_in[common.SEC_WEBSOCKET_KEY_HEADER] = (
@@ -1095,8 +1319,9 @@
 
         self._logger.debug('Creating logical stream for %d' %
                            self._request.channel_id)
-        return _LogicalStream(self._request, self._send_quota,
-                              self._receive_quota)
+        return _LogicalStream(
+            self._request, stream_options, self._send_quota,
+            self._receive_quota)
 
     def _create_handshake_response(self, accept):
         """Override hybi._create_handshake_response."""
@@ -1105,7 +1330,9 @@
 
         response.append('HTTP/1.1 101 Switching Protocols\r\n')
 
-        # Upgrade, Connection and Sec-WebSocket-Accept should be excluded.
+        # Upgrade and Sec-WebSocket-Accept should be excluded.
+        response.append('%s: %s\r\n' % (
+            common.CONNECTION_HEADER, common.UPGRADE_CONNECTION_TYPE))
         if self._request.ws_protocol is not None:
             response.append('%s: %s\r\n' % (
                 common.SEC_WEBSOCKET_PROTOCOL_HEADER,
@@ -1169,8 +1396,6 @@
                     del headers[key]
                 else:
                     headers[key] = value
-        # TODO(bashi): Support extensions
-        headers['Sec-WebSocket-Extensions'] = ''
         return headers
 
 
@@ -1232,8 +1457,12 @@
 
         # Create "Implicitly Opened Connection".
         logical_connection = _LogicalConnection(self, _DEFAULT_CHANNEL_ID)
-        self._handshake_base = _HandshakeDeltaBase(
-            self.original_request.headers_in)
+        headers = copy.copy(self.original_request.headers_in)
+        # Add extensions for logical channel.
+        headers[common.SEC_WEBSOCKET_EXTENSIONS_HEADER] = (
+            common.format_extensions(
+                self.original_request.mux_processor.extensions()))
+        self._handshake_base = _HandshakeDeltaBase(headers)
         logical_request = _LogicalRequest(
             _DEFAULT_CHANNEL_ID,
             self.original_request.method,
@@ -1245,8 +1474,9 @@
         # but we will send FlowControl later so set the initial quota to
         # _INITIAL_QUOTA_FOR_CLIENT.
         self._channel_slots.append(_INITIAL_QUOTA_FOR_CLIENT)
+        send_quota = self.original_request.mux_processor.quota()
         if not self._do_handshake_for_logical_request(
-            logical_request, send_quota=self.original_request.mux_quota):
+            logical_request, send_quota=send_quota):
             raise MuxUnexpectedException(
                 'Failed handshake on the default channel id')
         self._add_logical_channel(logical_request)
@@ -1287,7 +1517,6 @@
                 if not self._worker_done_notify_received:
                     self._logger.debug('Waiting worker(s) timed out')
                     return False
-
         finally:
             self._logical_channels_condition.release()
 
@@ -1297,7 +1526,7 @@
 
         return True
 
-    def notify_write_done(self, channel_id):
+    def notify_write_data_done(self, channel_id):
         """Called by the writer thread when a write operation has done.
 
         Args:
@@ -1308,7 +1537,7 @@
             self._logical_channels_condition.acquire()
             if channel_id in self._logical_channels:
                 channel_data = self._logical_channels[channel_id]
-                channel_data.request.connection.notify_write_done()
+                channel_data.request.connection.on_write_data_done()
             else:
                 self._logger.debug('Seems that logical channel for %d has gone'
                                    % channel_id)
@@ -1469,9 +1698,11 @@
                 return
             channel_data = self._logical_channels[block.channel_id]
             channel_data.drop_code = _DROP_CODE_ACKNOWLEDGED
+
             # Close the logical channel
             channel_data.request.connection.set_read_state(
                 _LogicalConnection.STATE_TERMINATED)
+            channel_data.request.ws_stream.stop_sending()
         finally:
             self._logical_channels_condition.release()
 
@@ -1506,8 +1737,11 @@
                 return
             channel_data = self._logical_channels[channel_id]
             fin, rsv1, rsv2, rsv3, opcode, payload = parser.read_inner_frame()
+            consuming_byte = len(payload)
+            if opcode != common.OPCODE_CONTINUATION:
+                consuming_byte += 1
             if not channel_data.request.ws_stream.consume_receive_quota(
-                len(payload)):
+                consuming_byte):
                 # The client violates quota. Close logical channel.
                 raise LogicalChannelError(
                     channel_id, _DROP_CODE_SEND_QUOTA_VIOLATION)
@@ -1569,15 +1803,32 @@
         finished.
         """
 
-        # Terminate all logical connections
-        self._logger.debug('termiating all logical connections...')
+        self._logger.debug(
+            'Termiating all logical connections waiting for incoming data '
+            '...')
         self._logical_channels_condition.acquire()
         for channel_data in self._logical_channels.values():
             try:
                 channel_data.request.connection.set_read_state(
                     _LogicalConnection.STATE_TERMINATED)
             except Exception:
-                pass
+                self._logger.debug(traceback.format_exc())
+        self._logical_channels_condition.release()
+
+    def notify_writer_done(self):
+        """This method is called by the writer thread when the writer has
+        finished.
+        """
+
+        self._logger.debug(
+            'Termiating all logical connections waiting for write '
+            'completion ...')
+        self._logical_channels_condition.acquire()
+        for channel_data in self._logical_channels.values():
+            try:
+                channel_data.request.connection.on_writer_done()
+            except Exception:
+                self._logger.debug(traceback.format_exc())
         self._logical_channels_condition.release()
 
     def fail_physical_connection(self, code, message):
@@ -1590,8 +1841,7 @@
 
         self._logger.debug('Failing the physical connection...')
         self._send_drop_channel(_CONTROL_CHANNEL_ID, code, message)
-        self.physical_stream.close_connection(
-            common.STATUS_INTERNAL_ENDPOINT_ERROR)
+        self._writer.stop(common.STATUS_INTERNAL_ENDPOINT_ERROR)
 
     def fail_logical_channel(self, channel_id, code, message):
         """Fail a logical channel.
@@ -1611,8 +1861,10 @@
                 # called later and it will send DropChannel.
                 channel_data.drop_code = code
                 channel_data.drop_message = message
+
                 channel_data.request.connection.set_read_state(
                     _LogicalConnection.STATE_TERMINATED)
+                channel_data.request.ws_stream.stop_sending()
             else:
                 self._send_drop_channel(channel_id, code, message)
         finally:
@@ -1620,7 +1872,8 @@
 
 
 def use_mux(request):
-    return hasattr(request, 'mux') and request.mux
+    return hasattr(request, 'mux_processor') and (
+        request.mux_processor.is_active())
 
 
 def start(request, dispatcher):
diff --git a/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/standalone.py b/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/standalone.py
index 07a33d9..2bf3b0c 100755
--- a/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/standalone.py
+++ b/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/standalone.py
@@ -76,6 +76,9 @@
 
 To support TLS, run standalone.py with -t, -k, and -c options.
 
+Note that when ssl module is used and the key/cert location is incorrect,
+TLS connection silently fails while pyOpenSSL fails on startup.
+
 
 SUPPORTING CLIENT AUTHENTICATION
 
@@ -140,18 +143,6 @@
 import threading
 import time
 
-_HAS_SSL = False
-_HAS_OPEN_SSL = False
-try:
-    import ssl
-    _HAS_SSL = True
-except ImportError:
-    try:
-        import OpenSSL.SSL
-        _HAS_OPEN_SSL = True
-    except ImportError:
-        pass
-
 from mod_pywebsocket import common
 from mod_pywebsocket import dispatch
 from mod_pywebsocket import handshake
@@ -168,6 +159,10 @@
 # 1024 is practically large enough to contain WebSocket handshake lines.
 _MAX_MEMORIZED_LINES = 1024
 
+# Constants for the --tls_module flag.
+_TLS_BY_STANDARD_MODULE = 'ssl'
+_TLS_BY_PYOPENSSL = 'pyopenssl'
+
 
 class _StandaloneConnection(object):
     """Mimic mod_python mp_conn."""
@@ -231,11 +226,23 @@
         self.headers_in = request_handler.headers
 
     def get_uri(self):
-        """Getter to mimic request.uri."""
+        """Getter to mimic request.uri.
+
+        This method returns the raw data at the Request-URI part of the
+        Request-Line, while the uri method on the request object of mod_python
+        returns the path portion after parsing the raw data. This behavior is
+        kept for compatibility.
+        """
 
         return self._request_handler.path
     uri = property(get_uri)
 
+    def get_unparsed_uri(self):
+        """Getter to mimic request.unparsed_uri."""
+
+        return self._request_handler.path
+    unparsed_uri = property(get_unparsed_uri)
+
     def get_method(self):
         """Getter to mimic request.method."""
 
@@ -253,39 +260,68 @@
 
         return self._use_tls
 
-    def _drain_received_data(self):
-        """Don't use this method from WebSocket handler. Drains unread data
-        in the receive buffer.
-        """
 
-        raw_socket = self._request_handler.connection
-        drained_data = util.drain_received_data(raw_socket)
+def _import_ssl():
+    global ssl
+    try:
+        import ssl
+        return True
+    except ImportError:
+        return False
 
-        if drained_data:
-            self._logger.debug(
-                'Drained data following close frame: %r', drained_data)
+
+def _import_pyopenssl():
+    global OpenSSL
+    try:
+        import OpenSSL.SSL
+        return True
+    except ImportError:
+        return False
 
 
 class _StandaloneSSLConnection(object):
-    """A wrapper class for OpenSSL.SSL.Connection to provide makefile method
-    which is not supported by the class.
+    """A wrapper class for OpenSSL.SSL.Connection to
+    - provide makefile method which is not supported by the class
+    - tweak shutdown method since OpenSSL.SSL.Connection.shutdown doesn't
+      accept the "how" argument.
+    - convert SysCallError exceptions that its recv method may raise into a
+      return value of '', meaning EOF. We cannot overwrite the recv method on
+      self._connection since it's immutable.
     """
 
+    _OVERRIDDEN_ATTRIBUTES = ['_connection', 'makefile', 'shutdown', 'recv']
+
     def __init__(self, connection):
         self._connection = connection
 
     def __getattribute__(self, name):
-        if name in ('_connection', 'makefile'):
+        if name in _StandaloneSSLConnection._OVERRIDDEN_ATTRIBUTES:
             return object.__getattribute__(self, name)
         return self._connection.__getattribute__(name)
 
     def __setattr__(self, name, value):
-        if name in ('_connection', 'makefile'):
+        if name in _StandaloneSSLConnection._OVERRIDDEN_ATTRIBUTES:
             return object.__setattr__(self, name, value)
         return self._connection.__setattr__(name, value)
 
     def makefile(self, mode='r', bufsize=-1):
-        return socket._fileobject(self._connection, mode, bufsize)
+        return socket._fileobject(self, mode, bufsize)
+
+    def shutdown(self, unused_how):
+        self._connection.shutdown()
+
+    def recv(self, bufsize, flags=0):
+        if flags != 0:
+            raise ValueError('Non-zero flags not allowed')
+
+        try:
+            return self._connection.recv(bufsize)
+        except OpenSSL.SSL.SysCallError, (err, message):
+            if err == -1:
+                # Suppress "unexpected EOF" exception. See the OpenSSL document
+                # for SSL_get_error.
+                return ''
+            raise
 
 
 def _alias_handlers(dispatcher, websock_handlers_map_file):
@@ -340,7 +376,7 @@
         warnings = options.dispatcher.source_warnings()
         if warnings:
             for warning in warnings:
-                logging.warning('mod_pywebsocket: %s' % warning)
+                logging.warning('Warning in source loading: %s' % warning)
 
         self._logger = util.get_class_logger(self)
 
@@ -387,25 +423,25 @@
             except Exception, e:
                 self._logger.info('Skip by failure: %r', e)
                 continue
-            if self.websocket_server_options.use_tls:
-                if _HAS_SSL:
-                    if self.websocket_server_options.tls_client_auth:
-                        client_cert_ = ssl.CERT_REQUIRED
+            server_options = self.websocket_server_options
+            if server_options.use_tls:
+                # For the case of _HAS_OPEN_SSL, we do wrapper setup after
+                # accept.
+                if server_options.tls_module == _TLS_BY_STANDARD_MODULE:
+                    if server_options.tls_client_auth:
+                        if server_options.tls_client_cert_optional:
+                            client_cert_ = ssl.CERT_OPTIONAL
+                        else:
+                            client_cert_ = ssl.CERT_REQUIRED
                     else:
                         client_cert_ = ssl.CERT_NONE
                     socket_ = ssl.wrap_socket(socket_,
-                        keyfile=self.websocket_server_options.private_key,
-                        certfile=self.websocket_server_options.certificate,
+                        keyfile=server_options.private_key,
+                        certfile=server_options.certificate,
                         ssl_version=ssl.PROTOCOL_SSLv23,
-                        ca_certs=self.websocket_server_options.tls_client_ca,
-                        cert_reqs=client_cert_)
-                if _HAS_OPEN_SSL:
-                    ctx = OpenSSL.SSL.Context(OpenSSL.SSL.SSLv23_METHOD)
-                    ctx.use_privatekey_file(
-                        self.websocket_server_options.private_key)
-                    ctx.use_certificate_file(
-                        self.websocket_server_options.certificate)
-                    socket_ = OpenSSL.SSL.Connection(ctx, socket_)
+                        ca_certs=server_options.tls_client_ca,
+                        cert_reqs=client_cert_,
+                        do_handshake_on_connect=False)
             self._sockets.append((socket_, addrinfo))
 
     def server_bind(self):
@@ -479,7 +515,7 @@
         self._logger.critical('Not supported: fileno')
         return self._sockets[0][0].fileno()
 
-    def handle_error(self, rquest, client_address):
+    def handle_error(self, request, client_address):
         """Override SocketServer.handle_error."""
 
         self._logger.error(
@@ -496,8 +532,63 @@
         """
 
         accepted_socket, client_address = self.socket.accept()
-        if self.websocket_server_options.use_tls and _HAS_OPEN_SSL:
-            accepted_socket = _StandaloneSSLConnection(accepted_socket)
+
+        server_options = self.websocket_server_options
+        if server_options.use_tls:
+            if server_options.tls_module == _TLS_BY_STANDARD_MODULE:
+                try:
+                    accepted_socket.do_handshake()
+                except ssl.SSLError, e:
+                    self._logger.debug('%r', e)
+                    raise
+
+                # Print cipher in use. Handshake is done on accept.
+                self._logger.debug('Cipher: %s', accepted_socket.cipher())
+                self._logger.debug('Client cert: %r',
+                                   accepted_socket.getpeercert())
+            elif server_options.tls_module == _TLS_BY_PYOPENSSL:
+                # We cannot print the cipher in use. pyOpenSSL doesn't provide
+                # any method to fetch that.
+
+                ctx = OpenSSL.SSL.Context(OpenSSL.SSL.SSLv23_METHOD)
+                ctx.use_privatekey_file(server_options.private_key)
+                ctx.use_certificate_file(server_options.certificate)
+
+                def default_callback(conn, cert, errnum, errdepth, ok):
+                    return ok == 1
+
+                # See the OpenSSL document for SSL_CTX_set_verify.
+                if server_options.tls_client_auth:
+                    verify_mode = OpenSSL.SSL.VERIFY_PEER
+                    if not server_options.tls_client_cert_optional:
+                        verify_mode |= OpenSSL.SSL.VERIFY_FAIL_IF_NO_PEER_CERT
+                    ctx.set_verify(verify_mode, default_callback)
+                    ctx.load_verify_locations(server_options.tls_client_ca,
+                                              None)
+                else:
+                    ctx.set_verify(OpenSSL.SSL.VERIFY_NONE, default_callback)
+
+                accepted_socket = OpenSSL.SSL.Connection(ctx, accepted_socket)
+                accepted_socket.set_accept_state()
+
+                # Convert SSL related error into socket.error so that
+                # SocketServer ignores them and keeps running.
+                #
+                # TODO(tyoshino): Convert all kinds of errors.
+                try:
+                    accepted_socket.do_handshake()
+                except OpenSSL.SSL.Error, e:
+                    # Set errno part to 1 (SSL_ERROR_SSL) like the ssl module
+                    # does.
+                    self._logger.debug('%r', e)
+                    raise socket.error(1, '%r' % e)
+                cert = accepted_socket.get_peer_certificate()
+                self._logger.debug('Client cert subject: %r',
+                                   cert.get_subject().get_components())
+                accepted_socket = _StandaloneSSLConnection(accepted_socket)
+            else:
+                raise ValueError('No TLS support module is available')
+
         return accepted_socket, client_address
 
     def serve_forever(self, poll_interval=0.5):
@@ -636,7 +727,7 @@
                 self._logger.info('Fallback to CGIHTTPRequestHandler')
                 return True
         except dispatch.DispatchException, e:
-            self._logger.info('%s', e)
+            self._logger.info('Dispatch failed for error: %s', e)
             self.send_error(e.status)
             return False
 
@@ -652,7 +743,7 @@
                     allowDraft75=self._options.allow_draft75,
                     strict=self._options.strict)
             except handshake.VersionException, e:
-                self._logger.info('%s', e)
+                self._logger.info('Handshake failed for version error: %s', e)
                 self.send_response(common.HTTP_STATUS_BAD_REQUEST)
                 self.send_header(common.SEC_WEBSOCKET_VERSION_HEADER,
                                  e.supported_versions)
@@ -660,14 +751,14 @@
                 return False
             except handshake.HandshakeException, e:
                 # Handshake for ws(s) failed.
-                self._logger.info('%s', e)
+                self._logger.info('Handshake failed for error: %s', e)
                 self.send_error(e.status)
                 return False
 
             request._dispatcher = self._options.dispatcher
             self._options.dispatcher.transfer_data(request)
         except handshake.AbortedByUserException, e:
-            self._logger.info('%s', e)
+            self._logger.info('Aborted: %s', e)
         return False
 
     def log_request(self, code='-', size='-'):
@@ -799,6 +890,12 @@
                             'as CGI programs. Must be executable.'))
     parser.add_option('-t', '--tls', dest='use_tls', action='store_true',
                       default=False, help='use TLS (wss://)')
+    parser.add_option('--tls-module', '--tls_module', dest='tls_module',
+                      type='choice',
+                      choices = [_TLS_BY_STANDARD_MODULE, _TLS_BY_PYOPENSSL],
+                      help='Use ssl module if "%s" is specified. '
+                      'Use pyOpenSSL module if "%s" is specified' %
+                      (_TLS_BY_STANDARD_MODULE, _TLS_BY_PYOPENSSL))
     parser.add_option('-k', '--private-key', '--private_key',
                       dest='private_key',
                       default='', help='TLS private key file.')
@@ -806,7 +903,12 @@
                       default='', help='TLS certificate file.')
     parser.add_option('--tls-client-auth', dest='tls_client_auth',
                       action='store_true', default=False,
-                      help='Requires TLS client auth on every connection.')
+                      help='Requests TLS client auth on every connection.')
+    parser.add_option('--tls-client-cert-optional',
+                      dest='tls_client_cert_optional',
+                      action='store_true', default=False,
+                      help=('Makes client certificate optional even though '
+                            'TLS client auth is enabled.'))
     parser.add_option('--tls-client-ca', dest='tls_client_ca', default='',
                       help=('Specifies a pem file which contains a set of '
                             'concatenated CA certificates which are used to '
@@ -933,6 +1035,12 @@
 
     _configure_logging(options)
 
+    if options.allow_draft75:
+        logging.warning('--allow_draft75 option is obsolete.')
+
+    if options.strict:
+        logging.warning('--strict option is obsolete.')
+
     # TODO(tyoshino): Clean up initialization of CGI related values. Move some
     # of code here to WebSocketRequestHandler class if it's better.
     options.cgi_directories = []
@@ -955,20 +1063,53 @@
             options.is_executable_method = __check_script
 
     if options.use_tls:
-        if not (_HAS_SSL or _HAS_OPEN_SSL):
-            logging.critical('TLS support requires ssl or pyOpenSSL module.')
+        if options.tls_module is None:
+            if _import_ssl():
+                options.tls_module = _TLS_BY_STANDARD_MODULE
+                logging.debug('Using ssl module')
+            elif _import_pyopenssl():
+                options.tls_module = _TLS_BY_PYOPENSSL
+                logging.debug('Using pyOpenSSL module')
+            else:
+                logging.critical(
+                        'TLS support requires ssl or pyOpenSSL module.')
+                sys.exit(1)
+        elif options.tls_module == _TLS_BY_STANDARD_MODULE:
+            if not _import_ssl():
+                logging.critical('ssl module is not available')
+                sys.exit(1)
+        elif options.tls_module == _TLS_BY_PYOPENSSL:
+            if not _import_pyopenssl():
+                logging.critical('pyOpenSSL module is not available')
+                sys.exit(1)
+        else:
+            logging.critical('Invalid --tls-module option: %r',
+                             options.tls_module)
             sys.exit(1)
+
         if not options.private_key or not options.certificate:
             logging.critical(
                     'To use TLS, specify private_key and certificate.')
             sys.exit(1)
 
-    if options.tls_client_auth:
-        if not options.use_tls:
+        if (options.tls_client_cert_optional and
+            not options.tls_client_auth):
+            logging.critical('Client authentication must be enabled to '
+                             'specify tls_client_cert_optional')
+            sys.exit(1)
+    else:
+        if options.tls_module is not None:
+            logging.critical('Use --tls-module option only together with '
+                             '--use-tls option.')
+            sys.exit(1)
+
+        if options.tls_client_auth:
             logging.critical('TLS must be enabled for client authentication.')
             sys.exit(1)
-        if not _HAS_SSL:
-            logging.critical('Client authentication requires ssl module.')
+
+        if options.tls_client_cert_optional:
+            logging.critical('TLS must be enabled for client authentication.')
+            sys.exit(1)
 
     if not options.scan_dir:
         options.scan_dir = options.websock_handlers
diff --git a/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/util.py b/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/util.py
index 7bb0b5d..adaca3a 100644
--- a/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/util.py
+++ b/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/util.py
@@ -56,6 +56,11 @@
 import traceback
 import zlib
 
+try:
+    from mod_pywebsocket import fast_masking
+except ImportError:
+    pass
+
 
 def get_stack_trace():
     """Get the current stack trace as string.
@@ -169,45 +174,39 @@
     ended and resumes from that point on the next mask method call.
     """
 
-    def __init__(self, mask):
-        self._mask = map(ord, mask)
-        self._mask_size = len(self._mask)
-        self._count = 0
+    def __init__(self, masking_key):
+        self._masking_key = masking_key
+        self._masking_key_index = 0
 
-    def mask(self, s):
+    def _mask_using_swig(self, s):
+        masked_data = fast_masking.mask(
+                s, self._masking_key, self._masking_key_index)
+        self._masking_key_index = (
+                (self._masking_key_index + len(s)) % len(self._masking_key))
+        return masked_data
+
+    def _mask_using_array(self, s):
         result = array.array('B')
         result.fromstring(s)
+
         # Use temporary local variables to eliminate the cost to access
         # attributes
-        count = self._count
-        mask = self._mask
-        mask_size = self._mask_size
+        masking_key = map(ord, self._masking_key)
+        masking_key_size = len(masking_key)
+        masking_key_index = self._masking_key_index
+
         for i in xrange(len(result)):
-            result[i] ^= mask[count]
-            count = (count + 1) % mask_size
-        self._count = count
+            result[i] ^= masking_key[masking_key_index]
+            masking_key_index = (masking_key_index + 1) % masking_key_size
+
+        self._masking_key_index = masking_key_index
 
         return result.tostring()
 
-
-class DeflateRequest(object):
-    """A wrapper class for request object to intercept send and recv to perform
-    deflate compression and decompression transparently.
-    """
-
-    def __init__(self, request):
-        self._request = request
-        self.connection = DeflateConnection(request.connection)
-
-    def __getattribute__(self, name):
-        if name in ('_request', 'connection'):
-            return object.__getattribute__(self, name)
-        return self._request.__getattribute__(name)
-
-    def __setattr__(self, name, value):
-        if name in ('_request', 'connection'):
-            return object.__setattr__(self, name, value)
-        return self._request.__setattr__(name, value)
+    if 'fast_masking' in globals():
+        mask = _mask_using_swig
+    else:
+        mask = _mask_using_array
 
 
 # By making wbits option negative, we can suppress CMF/FLG (2 octet) and
@@ -252,6 +251,7 @@
         self._logger.debug('Compress result %r', compressed_bytes)
         return compressed_bytes
 
+
 class _Inflater(object):
 
     def __init__(self):
@@ -346,6 +346,7 @@
             return self._deflater.compress_and_flush(bytes)[:-4]
         return self._deflater.compress(bytes)
 
+
 class _RFC1979Inflater(object):
     """A decompressor class for byte sequence compressed and flushed following
     the algorithm described in the RFC1979 section 2.1.
@@ -405,111 +406,4 @@
         return len(bytes)
 
 
-class DeflateConnection(object):
-    """A wrapper class for request object to intercept write and read to
-    perform deflate compression and decompression transparently.
-    """
-
-    def __init__(self, connection):
-        self._connection = connection
-
-        self._logger = get_class_logger(self)
-
-        self._deflater = _Deflater(zlib.MAX_WBITS)
-        self._inflater = _Inflater()
-
-    def get_remote_addr(self):
-        return self._connection.remote_addr
-    remote_addr = property(get_remote_addr)
-
-    def put_bytes(self, bytes):
-        self.write(bytes)
-
-    def read(self, size=-1):
-        """Reads at most size bytes. Blocks until there's at least one byte
-        available.
-        """
-
-        # TODO(tyoshino): Allow call with size=0.
-        if not (size == -1 or size > 0):
-            raise Exception('size must be -1 or positive')
-
-        data = ''
-        while True:
-            if size == -1:
-                data += self._inflater.decompress(-1)
-            else:
-                data += self._inflater.decompress(size - len(data))
-
-            if size >= 0 and len(data) != 0:
-                break
-
-            # TODO(tyoshino): Make this read efficient by some workaround.
-            #
-            # In 3.0.3 and prior of mod_python, read blocks until length bytes
-            # was read. We don't know the exact size to read while using
-            # deflate, so read byte-by-byte.
-            #
-            # _StandaloneRequest.read that ultimately performs
-            # socket._fileobject.read also blocks until length bytes was read
-            read_data = self._connection.read(1)
-            if not read_data:
-                break
-            self._inflater.append(read_data)
-        return data
-
-    def write(self, bytes):
-        self._connection.write(self._deflater.compress_and_flush(bytes))
-
-
-def _is_ewouldblock_errno(error_number):
-    """Returns True iff error_number indicates that receive operation would
-    block. To make this portable, we check availability of errno and then
-    compare them.
-    """
-
-    for error_name in ['WSAEWOULDBLOCK', 'EWOULDBLOCK', 'EAGAIN']:
-        if (error_name in dir(errno) and
-            error_number == getattr(errno, error_name)):
-            return True
-    return False
-
-
-def drain_received_data(raw_socket):
-    # Set the socket non-blocking.
-    original_timeout = raw_socket.gettimeout()
-    raw_socket.settimeout(0.0)
-
-    drained_data = []
-
-    # Drain until the socket is closed or no data is immediately
-    # available for read.
-    while True:
-        try:
-            data = raw_socket.recv(1)
-            if not data:
-                break
-            drained_data.append(data)
-        except socket.error, e:
-            # e can be either a pair (errno, string) or just a string (or
-            # something else) telling what went wrong. We suppress only
-            # the errors that indicates that the socket blocks. Those
-            # exceptions can be parsed as a pair (errno, string).
-            try:
-                error_number, message = e
-            except:
-                # Failed to parse socket.error.
-                raise e
-
-            if _is_ewouldblock_errno(error_number):
-                break
-            else:
-                raise e
-
-    # Rollback timeout value.
-    raw_socket.settimeout(original_timeout)
-
-    return ''.join(drained_data)
-
-
 # vi:sts=4 sw=4 et
diff --git a/Tools/Scripts/webkitpy/tool/bot/irc_command.py b/Tools/Scripts/webkitpy/tool/bot/irc_command.py
deleted file mode 100644
index c168376..0000000
--- a/Tools/Scripts/webkitpy/tool/bot/irc_command.py
+++ /dev/null
@@ -1,356 +0,0 @@
-# Copyright (c) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import itertools
-import random
-import re
-
-from webkitpy.common.config import irc as config_irc
-from webkitpy.common.config import urls
-from webkitpy.common.config.committers import CommitterList
-from webkitpy.common.net.web import Web
-from webkitpy.common.system.executive import ScriptError
-from webkitpy.tool.bot.queueengine import TerminateQueue
-from webkitpy.tool.grammar import join_with_separators
-
-
-def _post_error_and_check_for_bug_url(tool, nicks_string, exception):
-    tool.irc().post("%s" % exception)
-    bug_id = urls.parse_bug_id(exception.output)
-    if bug_id:
-        bug_url = tool.bugs.bug_url_for_bug_id(bug_id)
-        tool.irc().post("%s: Ugg...  Might have created %s" % (nicks_string, bug_url))
-
-
-# FIXME: Merge with Command?
-class IRCCommand(object):
-    usage_string = None
-    help_string = None
-
-    def execute(self, nick, args, tool, sheriff):
-        raise NotImplementedError("subclasses must implement")
-
-    @classmethod
-    def usage(cls, nick):
-        return "%s: Usage: %s" % (nick, cls.usage_string)
-
-    @classmethod
-    def help(cls, nick):
-        return "%s: %s" % (nick, cls.help_string)
-
-
-class CreateBug(IRCCommand):
-    usage_string = "create-bug BUG_TITLE"
-    help_string = "Creates a Bugzilla bug with the given title."
-
-    def execute(self, nick, args, tool, sheriff):
-        if not args:
-            return self.usage(nick)
-
-        bug_title = " ".join(args)
-        bug_description = "%s\nRequested by %s on %s." % (bug_title, nick, config_irc.channel)
-
-        # There happens to be a committers list hung off of Bugzilla, so
-        # re-using that one makes things easiest for now.
-        requester = tool.bugs.committers.contributor_by_irc_nickname(nick)
-        requester_email = requester.bugzilla_email() if requester else None
-
-        try:
-            bug_id = tool.bugs.create_bug(bug_title, bug_description, cc=requester_email, assignee=requester_email)
-            bug_url = tool.bugs.bug_url_for_bug_id(bug_id)
-            return "%s: Created bug: %s" % (nick, bug_url)
-        except Exception, e:
-            return "%s: Failed to create bug:\n%s" % (nick, e)
-
-
-class Help(IRCCommand):
-    usage_string = "help [COMMAND]"
-    help_string = "Provides help on individual sheriffbot commands."
-
-    def execute(self, nick, args, tool, sheriff):
-        if args:
-            for command_name in args:
-                if command_name in commands:
-                    self._post_command_help(nick, tool, commands[command_name])
-        else:
-            tool.irc().post("%s: Available commands: %s" % (nick, ", ".join(sorted(visible_commands.keys()))))
-            tool.irc().post('%s: Type "sheriffbot: help COMMAND" for help on individual commands.' % nick)
-
-    def _post_command_help(self, nick, tool, command):
-        tool.irc().post(command.usage(nick))
-        tool.irc().post(command.help(nick))
-        aliases = " ".join(sorted(filter(lambda alias: commands[alias] == command and alias not in visible_commands, commands)))
-        if aliases:
-            tool.irc().post("%s: Aliases: %s" % (nick, aliases))
-
-
-class Hi(IRCCommand):
-    usage_string = "hi"
-    help_string = "Retrieves a random quip from Bugzilla."
-
-    def execute(self, nick, args, tool, sheriff):
-        quips = tool.bugs.quips()
-        quips.append('"Only you can prevent forest fires." -- Smokey the Bear')
-        return random.choice(quips)
-
-
-class Restart(IRCCommand):
-    usage_string = "restart"
-    help_string = "Restarts sherrifbot.  Will update its WebKit checkout, and re-join the channel momentarily."
-
-    def execute(self, nick, args, tool, sheriff):
-        tool.irc().post("Restarting...")
-        raise TerminateQueue()
-
-
-class RollChromiumDEPS(IRCCommand):
-    usage_string = "roll-chromium-deps REVISION"
-    help_string = "Rolls WebKit's Chromium DEPS to the given revision. Give LKGR as the revision number to use the last known good revision. This lands an unreviewed patch and provides the bug URL."
-
-    def _parse_args(self, args):
-        if not args:
-            return None
-        revision = args[0].lstrip("r")
-        if revision == "LKGR" or revision.isdigit():
-            return revision
-        return None
-
-    def _expand_irc_nickname(self, nick):
-        contributor = CommitterList().contributor_by_irc_nickname(nick)
-        if contributor:
-            return str(contributor)
-        return nick
-
-    def execute(self, nick, args, tool, sheriff):
-        revision = self._parse_args(args)
-        if not revision:
-            return self.usage(nick)
-
-        roll_target = "r%s" % revision if revision.isdigit() else "last-known good revision"
-        tool.irc().post("%s: Rolling Chromium DEPS to %s" % (nick, roll_target))
-        changelog_message = "Unreviewed.  Rolled Chromium DEPS to %s.  Requested by %s via sheriffbot.\n\n" % (roll_target, self._expand_irc_nickname(nick))
-
-        try:
-            bug_id = sheriff.post_chromium_deps_roll(revision, roll_target, changelog_message)
-            bug_url = tool.bugs.bug_url_for_bug_id(bug_id)
-            return "%s: Created DEPS roll: %s" % (nick, bug_url)
-        except ScriptError, e:
-            tool.irc().post("%s: Failed to create DEPS roll:" % nick)
-            pre_bug_error_messages = [
-                r"Current Chromium DEPS revision \d+ is newer than \d+\.",
-                r"Unable to update Chromium DEPS\.",
-                r"Unable to parse LKGR from: .*",
-                r"Unable to reach LKGR source: .*",
-                r"Invalid revision number\.",
-            ]
-            for message in pre_bug_error_messages:
-                match = re.search(message, e.output)
-                if match:
-                    return "%s: %s" % (nick, match.group(0))
-            _post_error_and_check_for_bug_url(tool, nick, e)
-
-
-class Rollout(IRCCommand):
-    usage_string = "rollout SVN_REVISION [SVN_REVISIONS] REASON"
-    help_string = "Opens a rollout bug, CCing author + reviewer, and attaching the reverse-diff of the given revisions marked as commit-queue=?."
-
-    def _extract_revisions(self, arg):
-        revision_list = []
-        possible_revisions = arg.split(",")
-        for revision in possible_revisions:
-            revision = revision.strip()
-            if not revision:
-                continue
-            revision = revision.lstrip("r")
-            # If one part of the arg isn't in the correct format,
-            # then none of the arg should be considered a revision.
-            if not revision.isdigit():
-                return None
-            revision_list.append(int(revision))
-        return revision_list
-
-    def _parse_args(self, args):
-        if not args:
-            return (None, None)
-
-        svn_revision_list = []
-        remaining_args = args[:]
-        # First process all revisions.
-        while remaining_args:
-            new_revisions = self._extract_revisions(remaining_args[0])
-            if not new_revisions:
-                break
-            svn_revision_list += new_revisions
-            remaining_args = remaining_args[1:]
-
-        # Was there a revision number?
-        if not len(svn_revision_list):
-            return (None, None)
-
-        # Everything left is the reason.
-        rollout_reason = " ".join(remaining_args)
-        return svn_revision_list, rollout_reason
-
-    def _responsible_nicknames_from_revisions(self, tool, sheriff, svn_revision_list):
-        commit_infos = map(tool.checkout().commit_info_for_revision, svn_revision_list)
-        nickname_lists = map(sheriff.responsible_nicknames_from_commit_info, commit_infos)
-        return sorted(set(itertools.chain(*nickname_lists)))
-
-    def _nicks_string(self, tool, sheriff, requester_nick, svn_revision_list):
-        # FIXME: _parse_args guarentees that our svn_revision_list is all numbers.
-        # However, it's possible our checkout will not include one of the revisions,
-        # so we may need to catch exceptions from commit_info_for_revision here.
-        target_nicks = [requester_nick] + self._responsible_nicknames_from_revisions(tool, sheriff, svn_revision_list)
-        return ", ".join(target_nicks)
-
-    def _update_working_copy(self, tool):
-        tool.scm().discard_local_changes()
-        tool.executive.run_and_throw_if_fail(tool.deprecated_port().update_webkit_command(), quiet=True, cwd=tool.scm().checkout_root)
-
-    def execute(self, nick, args, tool, sheriff):
-        svn_revision_list, rollout_reason = self._parse_args(args)
-
-        if (not svn_revision_list or not rollout_reason):
-            return self.usage(nick)
-
-        revision_urls_string = join_with_separators([urls.view_revision_url(revision) for revision in svn_revision_list])
-        tool.irc().post("%s: Preparing rollout for %s ..." % (nick, revision_urls_string))
-
-        self._update_working_copy(tool)
-
-        # FIXME: IRCCommand should bind to a tool and have a self._tool like Command objects do.
-        # Likewise we should probably have a self._sheriff.
-        nicks_string = self._nicks_string(tool, sheriff, nick, svn_revision_list)
-
-        try:
-            complete_reason = "%s (Requested by %s on %s)." % (
-                rollout_reason, nick, config_irc.channel)
-            bug_id = sheriff.post_rollout_patch(svn_revision_list, complete_reason)
-            bug_url = tool.bugs.bug_url_for_bug_id(bug_id)
-            tool.irc().post("%s: Created rollout: %s" % (nicks_string, bug_url))
-        except ScriptError, e:
-            tool.irc().post("%s: Failed to create rollout patch:" % nicks_string)
-            _post_error_and_check_for_bug_url(tool, nicks_string, e)
-
-
-class Sheriffs(IRCCommand):
-    usage_string = "sheriffs"
-    help_string = "Retrieves who the current Chromium WebKit sheriffs are from: %s" % urls.chromium_webkit_sheriff_url
-
-    def _retrieve_webkit_sheriffs(self, tool, url):
-        try:
-            sheriff_js = tool.web.get_binary(url, True)
-        except:
-            return None
-        if sheriff_js == None:
-            return None
-
-        match = re.search(r"document.write\('(.*)'\)", sheriff_js)
-
-        try:
-            return match.group(1)
-        except:
-            return None
-
-    def execute(self, nick, args, tool, sheriff):
-        if not args:
-            url = urls.chromium_webkit_sheriff_url
-        else:
-            url = args[0]
-
-        sheriffs = self._retrieve_webkit_sheriffs(tool, url)
-        if sheriffs == None:
-            return "%s: Failed to parse URL: %s" % (nick, url)
-
-        sheriff_name = "Chromium Webkit sheriff"
-        sheriff_count = len(sheriffs.split())
-        if sheriff_count == 0:
-            return "%s: There are no %ss currently assigned." % (nick, sheriff_name)
-        if sheriff_count == 1:
-            return "%s: The current %s is: %s" % (nick, sheriff_name, sheriffs)
-        return "%s: The current %ss are: %s" % (nick, sheriff_name, sheriffs)
-
-
-class Whois(IRCCommand):
-    usage_string = "whois SEARCH_STRING"
-    help_string = "Searches known contributors and returns any matches with irc, email and full name. Wild card * permitted."
-
-    def _nick_or_full_record(self, contributor):
-        if contributor.irc_nicknames:
-            return ', '.join(contributor.irc_nicknames)
-        return unicode(contributor)
-
-    def execute(self, nick, args, tool, sheriff):
-        if not args:
-            return self.usage(nick)
-        search_string = " ".join(args)
-        # FIXME: We should get the ContributorList off the tool somewhere.
-        contributors = CommitterList().contributors_by_search_string(search_string)
-        if not contributors:
-            return "%s: Sorry, I don't know any contributors matching '%s'." % (nick, search_string)
-        if len(contributors) > 5:
-            return "%s: More than 5 contributors match '%s', could you be more specific?" % (nick, search_string)
-        if len(contributors) == 1:
-            contributor = contributors[0]
-            if not contributor.irc_nicknames:
-                return "%s: %s hasn't told me their nick. Boo hoo :-(" % (nick, contributor)
-            if contributor.emails and search_string.lower() not in map(lambda email: email.lower(), contributor.emails):
-                formattedEmails = ', '.join(contributor.emails)
-                return "%s: %s is %s (%s). Why do you ask?" % (nick, search_string, self._nick_or_full_record(contributor), formattedEmails)
-            else:
-                return "%s: %s is %s. Why do you ask?" % (nick, search_string, self._nick_or_full_record(contributor))
-        contributor_nicks = map(self._nick_or_full_record, contributors)
-        contributors_string = join_with_separators(contributor_nicks, only_two_separator=" or ", last_separator=', or ')
-        return "%s: I'm not sure who you mean?  %s could be '%s'." % (nick, contributors_string, search_string)
-
-
-# FIXME: Lame.  We should have an auto-registering CommandCenter.
-visible_commands = {
-    "create-bug": CreateBug,
-    "help": Help,
-    "hi": Hi,
-    "restart": Restart,
-    "roll-chromium-deps": RollChromiumDEPS,
-    "rollout": Rollout,
-    "sheriffs": Sheriffs,
-    "whois": Whois,
-}
-
-# Add revert as an "easter egg" command. Why?
-# revert is the same as rollout and it would be confusing to list both when
-# they do the same thing. However, this command is a very natural thing for
-# people to use and it seems silly to have them hunt around for "rollout" instead.
-commands = visible_commands.copy()
-commands["revert"] = Rollout
-commands["gardeners"] = Sheriffs
-# Enough people misspell "sheriffs" that they've requested aliases for the command.
-commands["sherriffs"] = Sheriffs
-commands["sherifs"] = Sheriffs
-commands["sherrifs"] = Sheriffs
-# "hello" Alias for "hi" command for the purposes of testing aliases
-commands["hello"] = Hi
diff --git a/Tools/Scripts/webkitpy/tool/bot/irc_command_unittest.py b/Tools/Scripts/webkitpy/tool/bot/irc_command_unittest.py
deleted file mode 100644
index 0517744..0000000
--- a/Tools/Scripts/webkitpy/tool/bot/irc_command_unittest.py
+++ /dev/null
@@ -1,147 +0,0 @@
-# Copyright (c) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import os
-import unittest2 as unittest
-
-from webkitpy.common.system.outputcapture import OutputCapture
-from webkitpy.tool.bot.irc_command import *
-from webkitpy.tool.mocktool import MockTool
-from webkitpy.common.net.web_mock import MockWeb
-from webkitpy.common.system.executive_mock import MockExecutive
-
-
-class IRCCommandTest(unittest.TestCase):
-    def test_whois(self):
-        whois = Whois()
-        self.assertEqual("tom: Usage: whois SEARCH_STRING",
-                          whois.execute("tom", [], None, None))
-        self.assertEqual("tom: Adam Barth is abarth (abarth@webkit.org). Why do you ask?",
-                          whois.execute("tom", ["Adam", "Barth"], None, None))
-        self.assertEqual("tom: Sorry, I don't know any contributors matching 'unknown@example.com'.",
-                          whois.execute("tom", ["unknown@example.com"], None, None))
-        self.assertEqual("tom: tonyg@chromium.org is tonyg-cr. Why do you ask?",
-                          whois.execute("tom", ["tonyg@chromium.org"], None, None))
-        self.assertEqual("tom: TonyG@Chromium.org is tonyg-cr. Why do you ask?",
-                          whois.execute("tom", ["TonyG@Chromium.org"], None, None))
-        self.assertEqual("tom: rniwa is rniwa (rniwa@webkit.org). Why do you ask?",
-                          whois.execute("tom", ["rniwa"], None, None))
-        self.assertEqual("tom: lopez is xan (xan.lopez@gmail.com, xan@gnome.org, xan@webkit.org, xlopez@igalia.com). Why do you ask?",
-                          whois.execute("tom", ["lopez"], None, None))
-        self.assertEqual('tom: "Vicki Murley" <vicki@apple.com> hasn\'t told me their nick. Boo hoo :-(',
-                          whois.execute("tom", ["vicki@apple.com"], None, None))
-        self.assertEqual('tom: I\'m not sure who you mean?  gavinp or gbarra could be \'Gavin\'.',
-                          whois.execute("tom", ["Gavin"], None, None))
-        self.assertEqual('tom: More than 5 contributors match \'david\', could you be more specific?',
-                          whois.execute("tom", ["david"], None, None))
-
-    @staticmethod
-    def _sheriff_test_data_url(suffix):
-        return "file://" + os.path.join(os.path.dirname(os.path.abspath(__file__)), "testdata", "webkit_sheriff_%s.js" % suffix)
-
-    def test_sheriffs(self):
-        sheriffs = Sheriffs()
-        tool = MockTool(web=MockWeb({
-          "test_0": "document.write('');",
-          "test_1": "document.write('test_user');",
-          "test_2": "document.write('test_user_1, test_user_2');",
-          "test_malformed": "malformed",
-        }))
-        self.assertEqual("tom: There are no Chromium Webkit sheriffs currently assigned.",
-                         sheriffs.execute("tom", ["test_0"], tool, None))
-        self.assertEqual("tom: The current Chromium Webkit sheriff is: test_user",
-                         sheriffs.execute("tom", ["test_1"], tool, None))
-        self.assertEqual("tom: The current Chromium Webkit sheriffs are: test_user_1, test_user_2",
-                         sheriffs.execute("tom", ["test_2"], tool, None))
-        self.assertEqual("tom: Failed to parse URL: test_malformed",
-                         sheriffs.execute("tom", ["test_malformed"], tool, None))
-        self.assertEqual("tom: Failed to parse URL: invalid",
-                         sheriffs.execute("tom", ["invalid"], tool, None))
-
-    def test_create_bug(self):
-        create_bug = CreateBug()
-        self.assertEqual("tom: Usage: create-bug BUG_TITLE",
-                          create_bug.execute("tom", [], None, None))
-
-        example_args = ["sherrif-bot", "should", "have", "a", "create-bug", "command"]
-        tool = MockTool()
-
-        # MockBugzilla has a create_bug, but it logs to stderr, this avoids any logging.
-        tool.bugs.create_bug = lambda a, b, cc=None, assignee=None: 50004
-        self.assertEqual("tom: Created bug: http://example.com/50004",
-                          create_bug.execute("tom", example_args, tool, None))
-
-        def mock_create_bug(title, description, cc=None, assignee=None):
-            raise Exception("Exception from bugzilla!")
-        tool.bugs.create_bug = mock_create_bug
-        self.assertEqual("tom: Failed to create bug:\nException from bugzilla!",
-                          create_bug.execute("tom", example_args, tool, None))
-
-    def test_roll_chromium_deps(self):
-        roll = RollChromiumDEPS()
-        self.assertIsNone(roll._parse_args([]))
-        self.assertIsNone(roll._parse_args(["invalid"]))
-        self.assertEqual("1234", roll._parse_args(["1234"]))
-        self.assertEqual("1234", roll._parse_args(["r1234"]))
-        self.assertEqual("LKGR", roll._parse_args(["LKGR"]))
-        self.assertEqual('"Alan Cutter" <alancutter@chromium.org>', roll._expand_irc_nickname("alancutter"))
-        self.assertEqual("unknown_irc_nickname", roll._expand_irc_nickname("unknown_irc_nickname"))
-
-    def test_rollout_updates_working_copy(self):
-        rollout = Rollout()
-        tool = MockTool()
-        tool.executive = MockExecutive(should_log=True)
-        expected_logs = "MOCK run_and_throw_if_fail: ['mock-update-webkit'], cwd=/mock-checkout\n"
-        OutputCapture().assert_outputs(self, rollout._update_working_copy, [tool], expected_logs=expected_logs)
-
-    def test_rollout(self):
-        rollout = Rollout()
-        self.assertEqual(([1234], "testing foo"),
-                          rollout._parse_args(["1234", "testing", "foo"]))
-
-        self.assertEqual(([554], "testing foo"),
-                          rollout._parse_args(["r554", "testing", "foo"]))
-
-        self.assertEqual(([556, 792], "testing foo"),
-                          rollout._parse_args(["r556", "792", "testing", "foo"]))
-
-        self.assertEqual(([128, 256], "testing foo"),
-                          rollout._parse_args(["r128,r256", "testing", "foo"]))
-
-        self.assertEqual(([512, 1024, 2048], "testing foo"),
-                          rollout._parse_args(["512,", "1024,2048", "testing", "foo"]))
-
-        # Test invalid argument parsing:
-        self.assertEqual((None, None), rollout._parse_args([]))
-        self.assertEqual((None, None), rollout._parse_args(["--bar", "1234"]))
-
-        # Invalid arguments result in the USAGE message.
-        self.assertEqual("tom: Usage: rollout SVN_REVISION [SVN_REVISIONS] REASON",
-                          rollout.execute("tom", [], None, None))
-
-        # FIXME: We need a better way to test IRCCommands which call tool.irc().post()
diff --git a/Tools/Scripts/webkitpy/tool/bot/ircbot.py b/Tools/Scripts/webkitpy/tool/bot/ircbot.py
deleted file mode 100644
index 0c45b97..0000000
--- a/Tools/Scripts/webkitpy/tool/bot/ircbot.py
+++ /dev/null
@@ -1,105 +0,0 @@
-# Copyright (c) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from webkitpy.tool.bot.queueengine import TerminateQueue
-from webkitpy.tool.bot.irc_command import IRCCommand
-from webkitpy.common.net.irc.ircbot import IRCBotDelegate
-from webkitpy.common.thread.threadedmessagequeue import ThreadedMessageQueue
-
-
-class _IRCThreadTearoff(IRCBotDelegate):
-    def __init__(self, name, password, message_queue, wakeup_event):
-        self._name = name
-        self._password = password
-        self._message_queue = message_queue
-        self._wakeup_event = wakeup_event
-
-    # IRCBotDelegate methods
-
-    def irc_message_received(self, nick, message):
-        self._message_queue.post([nick, message])
-        self._wakeup_event.set()
-
-    def irc_nickname(self):
-        return self._name
-
-    def irc_password(self):
-        return self._password
-
-
-class Eliza(IRCCommand):
-    therapist = None
-
-    def __init__(self):
-        if not self.therapist:
-            import webkitpy.thirdparty.autoinstalled.eliza as eliza
-            Eliza.therapist = eliza.eliza()
-
-    def execute(self, nick, args, tool, sheriff):
-        return "%s: %s" % (nick, self.therapist.respond(" ".join(args)))
-
-
-class IRCBot(object):
-    def __init__(self, name, tool, agent, commands):
-        self._name = name
-        self._tool = tool
-        self._agent = agent
-        self._message_queue = ThreadedMessageQueue()
-        self._commands = commands
-
-    def irc_delegate(self):
-        return _IRCThreadTearoff(self._name, self._tool.irc_password,
-            self._message_queue, self._tool.wakeup_event)
-
-    def _parse_command_and_args(self, request):
-        tokenized_request = request.strip().split(" ")
-        command = self._commands.get(tokenized_request[0])
-        args = tokenized_request[1:]
-        if not command:
-            # Give the peoples someone to talk with.
-            command = Eliza
-            args = tokenized_request
-        return (command, args)
-
-    def process_message(self, requester_nick, request):
-        command, args = self._parse_command_and_args(request)
-        try:
-            response = command().execute(requester_nick, args, self._tool, self._agent)
-            if response:
-                self._tool.irc().post(response)
-        except TerminateQueue:
-            raise
-        # This will catch everything else. SystemExit and KeyboardInterrupt are not subclasses of Exception, so we won't catch those.
-        except Exception, e:
-            self._tool.irc().post("Exception executing command: %s" % e)
-
-    def process_pending_messages(self):
-        (messages, is_running) = self._message_queue.take_all()
-        for message in messages:
-            (nick, request) = message
-            self.process_message(nick, request)
diff --git a/Tools/Scripts/webkitpy/tool/bot/ircbot_unittest.py b/Tools/Scripts/webkitpy/tool/bot/ircbot_unittest.py
deleted file mode 100644
index c83569b..0000000
--- a/Tools/Scripts/webkitpy/tool/bot/ircbot_unittest.py
+++ /dev/null
@@ -1,166 +0,0 @@
-# Copyright (c) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import unittest2 as unittest
-import random
-
-from webkitpy.common.system.outputcapture import OutputCapture
-from webkitpy.tool.bot import irc_command
-from webkitpy.tool.bot.queueengine import TerminateQueue
-from webkitpy.tool.bot.sheriff import Sheriff
-from webkitpy.tool.bot.ircbot import IRCBot
-from webkitpy.tool.bot.ircbot import Eliza
-from webkitpy.tool.bot.sheriff_unittest import MockSheriffBot
-from webkitpy.tool.mocktool import MockTool
-
-
-def run(message):
-    tool = MockTool()
-    tool.ensure_irc_connected(None)
-    bot = IRCBot("sheriffbot", tool, Sheriff(tool, MockSheriffBot()), irc_command.commands)
-    bot._message_queue.post(["mock_nick", message])
-    bot.process_pending_messages()
-
-
-class IRCBotTest(unittest.TestCase):
-    def test_eliza(self):
-        eliza = Eliza()
-        eliza.execute("tom", "hi", None, None)
-        eliza.execute("tom", "bye", None, None)
-
-    def test_parse_command_and_args(self):
-        tool = MockTool()
-        bot = IRCBot("sheriffbot", tool, Sheriff(tool, MockSheriffBot()), irc_command.commands)
-        self.assertEqual(bot._parse_command_and_args(""), (Eliza, [""]))
-        self.assertEqual(bot._parse_command_and_args("   "), (Eliza, [""]))
-        self.assertEqual(bot._parse_command_and_args(" hi "), (irc_command.Hi, []))
-        self.assertEqual(bot._parse_command_and_args(" hi there "), (irc_command.Hi, ["there"]))
-
-    def test_exception_during_command(self):
-        tool = MockTool()
-        tool.ensure_irc_connected(None)
-        bot = IRCBot("sheriffbot", tool, Sheriff(tool, MockSheriffBot()), irc_command.commands)
-
-        class CommandWithException(object):
-            def execute(self, nick, args, tool, sheriff):
-                raise Exception("mock_exception")
-
-        bot._parse_command_and_args = lambda request: (CommandWithException, [])
-        expected_logs = 'MOCK: irc.post: Exception executing command: mock_exception\n'
-        OutputCapture().assert_outputs(self, bot.process_message, args=["mock_nick", "ignored message"], expected_logs=expected_logs)
-
-        class CommandWithException(object):
-            def execute(self, nick, args, tool, sheriff):
-                raise KeyboardInterrupt()
-
-        bot._parse_command_and_args = lambda request: (CommandWithException, [])
-        # KeyboardInterrupt and SystemExit are not subclasses of Exception and thus correctly will not be caught.
-        OutputCapture().assert_outputs(self, bot.process_message, args=["mock_nick", "ignored message"], expected_exception=KeyboardInterrupt)
-
-    def test_hi(self):
-        random.seed(23324)
-        expected_logs = 'MOCK: irc.post: "Only you can prevent forest fires." -- Smokey the Bear\n'
-        OutputCapture().assert_outputs(self, run, args=["hi"], expected_logs=expected_logs)
-
-    def test_help(self):
-        expected_logs = 'MOCK: irc.post: mock_nick: Available commands: create-bug, help, hi, restart, roll-chromium-deps, rollout, sheriffs, whois\nMOCK: irc.post: mock_nick: Type "sheriffbot: help COMMAND" for help on individual commands.\n'
-        OutputCapture().assert_outputs(self, run, args=["help"], expected_logs=expected_logs)
-        expected_logs = 'MOCK: irc.post: mock_nick: Usage: hi\nMOCK: irc.post: mock_nick: Retrieves a random quip from Bugzilla.\nMOCK: irc.post: mock_nick: Aliases: hello\n'
-        OutputCapture().assert_outputs(self, run, args=["help hi"], expected_logs=expected_logs)
-        OutputCapture().assert_outputs(self, run, args=["help hello"], expected_logs=expected_logs)
-
-    def test_restart(self):
-        expected_logs = "MOCK: irc.post: Restarting...\n"
-        OutputCapture().assert_outputs(self, run, args=["restart"], expected_logs=expected_logs, expected_exception=TerminateQueue)
-
-    def test_rollout(self):
-        expected_logs = "MOCK: irc.post: mock_nick: Preparing rollout for http://trac.webkit.org/changeset/21654 ...\nMOCK: irc.post: mock_nick, abarth, darin, eseidel: Created rollout: http://example.com/36936\n"
-        OutputCapture().assert_outputs(self, run, args=["rollout 21654 This patch broke the world"], expected_logs=expected_logs)
-
-    def test_revert(self):
-        expected_logs = "MOCK: irc.post: mock_nick: Preparing rollout for http://trac.webkit.org/changeset/21654 ...\nMOCK: irc.post: mock_nick, abarth, darin, eseidel: Created rollout: http://example.com/36936\n"
-        OutputCapture().assert_outputs(self, run, args=["revert 21654 This patch broke the world"], expected_logs=expected_logs)
-
-    def test_roll_chromium_deps(self):
-        expected_logs = "MOCK: irc.post: mock_nick: Rolling Chromium DEPS to r21654\nMOCK: irc.post: mock_nick: Created DEPS roll: http://example.com/36936\n"
-        OutputCapture().assert_outputs(self, run, args=["roll-chromium-deps 21654"], expected_logs=expected_logs)
-
-    def test_roll_chromium_deps_to_lkgr(self):
-        expected_logs = "MOCK: irc.post: mock_nick: Rolling Chromium DEPS to last-known good revision\nMOCK: irc.post: mock_nick: Created DEPS roll: http://example.com/36936\n"
-        OutputCapture().assert_outputs(self, run, args=["roll-chromium-deps LKGR"], expected_logs=expected_logs)
-
-    def test_multi_rollout(self):
-        expected_logs = "MOCK: irc.post: mock_nick: Preparing rollout for http://trac.webkit.org/changeset/21654, http://trac.webkit.org/changeset/21655, and http://trac.webkit.org/changeset/21656 ...\nMOCK: irc.post: mock_nick, abarth, darin, eseidel: Created rollout: http://example.com/36936\n"
-        OutputCapture().assert_outputs(self, run, args=["rollout 21654 21655 21656 This 21654 patch broke the world"], expected_logs=expected_logs)
-
-    def test_rollout_with_r_in_svn_revision(self):
-        expected_logs = "MOCK: irc.post: mock_nick: Preparing rollout for http://trac.webkit.org/changeset/21654 ...\nMOCK: irc.post: mock_nick, abarth, darin, eseidel: Created rollout: http://example.com/36936\n"
-        OutputCapture().assert_outputs(self, run, args=["rollout r21654 This patch broke the world"], expected_logs=expected_logs)
-
-    def test_multi_rollout_with_r_in_svn_revision(self):
-        expected_logs = "MOCK: irc.post: mock_nick: Preparing rollout for http://trac.webkit.org/changeset/21654, http://trac.webkit.org/changeset/21655, and http://trac.webkit.org/changeset/21656 ...\nMOCK: irc.post: mock_nick, abarth, darin, eseidel: Created rollout: http://example.com/36936\n"
-        OutputCapture().assert_outputs(self, run, args=["rollout r21654 21655 r21656 This r21654 patch broke the world"], expected_logs=expected_logs)
-
-    def test_rollout_bananas(self):
-        expected_logs = "MOCK: irc.post: mock_nick: Usage: rollout SVN_REVISION [SVN_REVISIONS] REASON\n"
-        OutputCapture().assert_outputs(self, run, args=["rollout bananas"], expected_logs=expected_logs)
-
-    def test_rollout_invalidate_revision(self):
-        # When folks pass junk arguments, we should just spit the usage back at them.
-        expected_logs = "MOCK: irc.post: mock_nick: Usage: rollout SVN_REVISION [SVN_REVISIONS] REASON\n"
-        OutputCapture().assert_outputs(self, run,
-                                       args=["rollout --component=Tools 21654"],
-                                       expected_logs=expected_logs)
-
-    def test_rollout_invalidate_reason(self):
-        # FIXME: I'm slightly confused as to why this doesn't return the USAGE message.
-        expected_logs = """MOCK: irc.post: mock_nick: Preparing rollout for http://trac.webkit.org/changeset/21654 ...
-MOCK: irc.post: mock_nick, abarth, darin, eseidel: Failed to create rollout patch:
-MOCK: irc.post: The rollout reason may not begin with - (\"-bad (Requested by mock_nick on #webkit).\").
-"""
-        OutputCapture().assert_outputs(self, run,
-                                       args=["rollout 21654 -bad"],
-                                       expected_logs=expected_logs)
-
-    def test_multi_rollout_invalidate_reason(self):
-        expected_logs = """MOCK: irc.post: mock_nick: Preparing rollout for http://trac.webkit.org/changeset/21654, http://trac.webkit.org/changeset/21655, and http://trac.webkit.org/changeset/21656 ...
-MOCK: irc.post: mock_nick, abarth, darin, eseidel: Failed to create rollout patch:
-MOCK: irc.post: The rollout reason may not begin with - (\"-bad (Requested by mock_nick on #webkit).\").
-"""
-        OutputCapture().assert_outputs(self, run,
-                                       args=["rollout "
-                                             "21654 21655 r21656 -bad"],
-                                       expected_logs=expected_logs)
-
-    def test_rollout_no_reason(self):
-        expected_logs = "MOCK: irc.post: mock_nick: Usage: rollout SVN_REVISION [SVN_REVISIONS] REASON\n"
-        OutputCapture().assert_outputs(self, run, args=["rollout 21654"], expected_logs=expected_logs)
-
-    def test_multi_rollout_no_reason(self):
-        expected_logs = "MOCK: irc.post: mock_nick: Usage: rollout SVN_REVISION [SVN_REVISIONS] REASON\n"
-        OutputCapture().assert_outputs(self, run, args=["rollout 21654 21655 r21656"], expected_logs=expected_logs)
diff --git a/Tools/Scripts/webkitpy/tool/bot/sheriff.py b/Tools/Scripts/webkitpy/tool/bot/sheriff.py
deleted file mode 100644
index 38e4bf2..0000000
--- a/Tools/Scripts/webkitpy/tool/bot/sheriff.py
+++ /dev/null
@@ -1,114 +0,0 @@
-# Copyright (c) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from webkitpy.common.config import urls
-from webkitpy.common.system.executive import ScriptError
-from webkitpy.tool.grammar import join_with_separators
-
-
-class Sheriff(object):
-    def __init__(self, tool, sheriffbot):
-        self._tool = tool
-        self._sheriffbot = sheriffbot
-
-    def responsible_nicknames_from_commit_info(self, commit_info):
-        nestedList = [party.irc_nicknames for party in commit_info.responsible_parties() if party.irc_nicknames]
-        return reduce(lambda list, childList: list + childList, nestedList)
-
-    def post_irc_warning(self, commit_info, builders):
-        irc_nicknames = sorted(self.responsible_nicknames_from_commit_info(commit_info))
-        irc_prefix = ": " if irc_nicknames else ""
-        irc_message = "%s%s%s might have broken %s" % (
-            ", ".join(irc_nicknames),
-            irc_prefix,
-            urls.view_revision_url(commit_info.revision()),
-            join_with_separators([builder.name() for builder in builders]))
-
-        self._tool.irc().post(irc_message)
-
-    def post_irc_summary(self, failure_map):
-        failing_tests = failure_map.failing_tests()
-        if not failing_tests:
-            return
-        test_list_limit = 5
-        irc_message = "New failures: %s" % ", ".join(sorted(failing_tests)[:test_list_limit])
-        failure_count = len(failing_tests)
-        if failure_count > test_list_limit:
-            irc_message += " (and %s more...)" % (failure_count - test_list_limit)
-        self._tool.irc().post(irc_message)
-
-    def post_rollout_patch(self, svn_revision_list, rollout_reason):
-        # Ensure that svn revisions are numbers (and not options to
-        # create-rollout).
-        try:
-            svn_revisions = " ".join([str(int(revision)) for revision in svn_revision_list])
-        except:
-            raise ScriptError(message="Invalid svn revision number \"%s\"."
-                              % " ".join(svn_revision_list))
-
-        if rollout_reason.startswith("-"):
-            raise ScriptError(message="The rollout reason may not begin "
-                              "with - (\"%s\")." % rollout_reason)
-
-        output = self._sheriffbot.run_webkit_patch([
-            "create-rollout",
-            "--force-clean",
-            # In principle, we should pass --non-interactive here, but it
-            # turns out that create-rollout doesn't need it yet.  We can't
-            # pass it prophylactically because we reject unrecognized command
-            # line switches.
-            "--parent-command=sheriff-bot",
-            svn_revisions,
-            rollout_reason,
-        ])
-        return urls.parse_bug_id(output)
-
-    def post_chromium_deps_roll(self, revision, revision_name, changelog_message):
-        args = [
-            "post-chromium-deps-roll",
-            "--force-clean",
-            "--non-interactive",
-            "--parent-command=sheriff-bot",
-        ]
-        # revision can be None, but revision_name is always something meaningful.
-        args += [revision, revision_name, changelog_message]
-        output = self._sheriffbot.run_webkit_patch(args)
-        return urls.parse_bug_id(output)
-
-    def post_blame_comment_on_bug(self, commit_info, builders, tests):
-        if not commit_info.bug_id():
-            return
-        comment = "%s might have broken %s" % (
-            urls.view_revision_url(commit_info.revision()),
-            join_with_separators([builder.name() for builder in builders]))
-        if tests:
-            comment += "\nThe following tests are not passing:\n"
-            comment += "\n".join(tests)
-        self._tool.bugs.post_comment_to_bug(commit_info.bug_id(),
-                                            comment,
-                                            cc=self._sheriffbot.watchers)
diff --git a/Tools/Scripts/webkitpy/tool/bot/sheriff_unittest.py b/Tools/Scripts/webkitpy/tool/bot/sheriff_unittest.py
deleted file mode 100644
index cf989c9..0000000
--- a/Tools/Scripts/webkitpy/tool/bot/sheriff_unittest.py
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright (C) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#    * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#    * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#    * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import unittest2 as unittest
-
-from webkitpy.common.net.buildbot import Builder
-from webkitpy.common.system.outputcapture import OutputCapture
-from webkitpy.thirdparty.mock import Mock
-from webkitpy.tool.bot.sheriff import Sheriff
-from webkitpy.tool.mocktool import MockTool
-
-
-class MockSheriffBot(object):
-    name = "mock-sheriff-bot"
-    watchers = [
-        "watcher@example.com",
-    ]
-
-    def run_webkit_patch(self, args):
-        return "Created bug https://bugs.webkit.org/show_bug.cgi?id=36936\n"
-
-
-class SheriffTest(unittest.TestCase):
-    def test_post_blame_comment_on_bug(self):
-        def run():
-            sheriff = Sheriff(MockTool(), MockSheriffBot())
-            builders = [
-                Builder("Foo", None),
-                Builder("Bar", None),
-            ]
-            commit_info = Mock()
-            commit_info.bug_id = lambda: None
-            commit_info.revision = lambda: 4321
-            # Should do nothing with no bug_id
-            sheriff.post_blame_comment_on_bug(commit_info, builders, [])
-            sheriff.post_blame_comment_on_bug(commit_info, builders, ["mock-test-1", "mock-test-2"])
-            # Should try to post a comment to the bug, but MockTool.bugs does nothing.
-            commit_info.bug_id = lambda: 1234
-            sheriff.post_blame_comment_on_bug(commit_info, builders, [])
-            sheriff.post_blame_comment_on_bug(commit_info, builders, ["mock-test-1"])
-            sheriff.post_blame_comment_on_bug(commit_info, builders, ["mock-test-1", "mock-test-2"])
-
-        expected_logs = u"""MOCK bug comment: bug_id=1234, cc=['watcher@example.com']
---- Begin comment ---
-http://trac.webkit.org/changeset/4321 might have broken Foo and Bar
---- End comment ---
-
-MOCK bug comment: bug_id=1234, cc=['watcher@example.com']
---- Begin comment ---
-http://trac.webkit.org/changeset/4321 might have broken Foo and Bar
-The following tests are not passing:
-mock-test-1
---- End comment ---
-
-MOCK bug comment: bug_id=1234, cc=['watcher@example.com']
---- Begin comment ---
-http://trac.webkit.org/changeset/4321 might have broken Foo and Bar
-The following tests are not passing:
-mock-test-1
-mock-test-2
---- End comment ---
-
-"""
-        OutputCapture().assert_outputs(self, run, expected_logs=expected_logs)
diff --git a/Tools/Scripts/webkitpy/tool/commands/__init__.py b/Tools/Scripts/webkitpy/tool/commands/__init__.py
index f4af47e..24646fc 100644
--- a/Tools/Scripts/webkitpy/tool/commands/__init__.py
+++ b/Tools/Scripts/webkitpy/tool/commands/__init__.py
@@ -10,15 +10,12 @@
 from webkitpy.tool.commands.earlywarningsystem import *
 from webkitpy.tool.commands.findusers import FindUsers
 from webkitpy.tool.commands.gardenomatic import GardenOMatic
-from webkitpy.tool.commands.newcommitbot import NewCommitBot
 from webkitpy.tool.commands.openbugs import OpenBugs
-from webkitpy.tool.commands.perfalizer import Perfalizer
 from webkitpy.tool.commands.prettydiff import PrettyDiff
 from webkitpy.tool.commands.queries import *
 from webkitpy.tool.commands.queues import *
 from webkitpy.tool.commands.rebaseline import Rebaseline
 from webkitpy.tool.commands.rebaselineserver import RebaselineServer
 from webkitpy.tool.commands.roll import *
-from webkitpy.tool.commands.sheriffbot import *
 from webkitpy.tool.commands.upload import *
 from webkitpy.tool.commands.suggestnominations import *
diff --git a/Tools/Scripts/webkitpy/tool/commands/download_unittest.py b/Tools/Scripts/webkitpy/tool/commands/download_unittest.py
index bc7fc4f..dbbdf2d 100644
--- a/Tools/Scripts/webkitpy/tool/commands/download_unittest.py
+++ b/Tools/Scripts/webkitpy/tool/commands/download_unittest.py
@@ -73,6 +73,8 @@
 
 
 class DownloadCommandsTest(CommandsTest):
+    maxDiff = None
+
     def _default_options(self):
         options = MockOptions()
         options.build = True
@@ -158,7 +160,7 @@
     def test_land_cowboy(self):
         expected_logs = """MOCK run_and_throw_if_fail: ['mock-prepare-ChangeLog', '--email=MOCK email', '--merge-base=None', 'MockFile1'], cwd=/mock-checkout
 MOCK run_and_throw_if_fail: ['mock-check-webkit-style', '--git-commit', 'MOCK git commit', '--diff-files', 'MockFile1', '--filter', '-changelog'], cwd=/mock-checkout
-MOCK run_command: ['ruby', '-I', '/mock-checkout/Websites/bugs.webkit.org/PrettyPatch', '/mock-checkout/Websites/bugs.webkit.org/PrettyPatch/prettify.rb'], cwd=None, input=Patch1
+MOCK run_command: ['ruby', '-I', '/mock-checkout/Tools/Scripts/webkitruby/PrettyPatch', '/mock-checkout/Tools/Scripts/webkitruby/PrettyPatch/prettify.rb'], cwd=None, input=Patch1
 MOCK: user.open_url: file://...
 Was that diff correct?
 Building WebKit
diff --git a/Tools/Scripts/webkitpy/tool/commands/earlywarningsystem.py b/Tools/Scripts/webkitpy/tool/commands/earlywarningsystem.py
index bd24274..90501fc 100644
--- a/Tools/Scripts/webkitpy/tool/commands/earlywarningsystem.py
+++ b/Tools/Scripts/webkitpy/tool/commands/earlywarningsystem.py
@@ -212,7 +212,6 @@
 class MacEWS(AbstractEarlyWarningSystem):
     name = "mac-ews"
     port_name = "mac"
-    _default_run_tests = True
     watchers = AbstractEarlyWarningSystem.watchers + [
         "rniwa@webkit.org",
     ]
@@ -221,7 +220,6 @@
 class MacWK2EWS(AbstractEarlyWarningSystem):
     name = "mac-wk2-ews"
     port_name = "mac-wk2"
-    _default_run_tests = True
     watchers = AbstractEarlyWarningSystem.watchers + [
         "rniwa@webkit.org",
     ]
diff --git a/Tools/Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py b/Tools/Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py
index 5f0b806..3ab1cd4 100644
--- a/Tools/Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py
+++ b/Tools/Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py
@@ -38,7 +38,7 @@
     def test_failing_tests_message(self):
         # Needed to define port_name, used in AbstractEarlyWarningSystem.__init__
         class TestEWS(AbstractEarlyWarningSystem):
-            port_name = "win"  # Needs to be a port which port/factory understands.
+            port_name = "chromium"  # Needs to be a port which port/factory understands.
 
         ews = TestEWS()
         ews.bind_to_tool(MockTool())
diff --git a/Tools/Scripts/webkitpy/tool/commands/newcommitbot.py b/Tools/Scripts/webkitpy/tool/commands/newcommitbot.py
deleted file mode 100644
index 16434cf..0000000
--- a/Tools/Scripts/webkitpy/tool/commands/newcommitbot.py
+++ /dev/null
@@ -1,165 +0,0 @@
-# Copyright (c) 2012 Google Inc. All rights reserved.
-# Copyright (c) 2013 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import logging
-import re
-
-from webkitpy.common.config.committers import CommitterList
-from webkitpy.tool.bot.irc_command import IRCCommand
-from webkitpy.tool.bot.irc_command import Help
-from webkitpy.tool.bot.irc_command import Hi
-from webkitpy.tool.bot.irc_command import Restart
-from webkitpy.tool.bot.ircbot import IRCBot
-from webkitpy.tool.commands.queues import AbstractQueue
-from webkitpy.tool.commands.stepsequence import StepSequenceErrorHandler
-
-_log = logging.getLogger(__name__)
-
-
-class PingPong(IRCCommand):
-    def execute(self, nick, args, tool, sheriff):
-        return nick + ": pong"
-
-
-class NewCommitBot(AbstractQueue, StepSequenceErrorHandler):
-    name = "new-commit-bot"
-    watchers = AbstractQueue.watchers + ["rniwa@webkit.org"]
-
-    _commands = {
-        "ping": PingPong,
-        "restart": Restart,
-    }
-
-    # AbstractQueue methods
-
-    def begin_work_queue(self):
-        AbstractQueue.begin_work_queue(self)
-        self._last_svn_revision = int(self._tool.scm().head_svn_revision())
-        self._irc_bot = IRCBot('WKR', self._tool, None, self._commands)
-        self._tool.ensure_irc_connected(self._irc_bot.irc_delegate())
-
-    def work_item_log_path(self, failure_map):
-        return None
-
-    def next_work_item(self):
-        self._irc_bot.process_pending_messages()
-
-        _log.info('Last SVN revision: %d' % self._last_svn_revision)
-
-        _log.info('Updating checkout')
-        self._update_checkout()
-
-        _log.info('Obtaining new SVN revisions')
-        revisions = self._new_svn_revisions()
-
-        _log.info('Obtaining commit logs for %d revisions' % len(revisions))
-        for revision in revisions:
-            commit_log = self._tool.scm().svn_commit_log(revision)
-            self._tool.irc().post(self._summarize_commit_log(commit_log).encode('ascii', 'ignore'))
-
-        return
-
-    def process_work_item(self, failure_map):
-        return True
-
-    def _update_checkout(self):
-        tool = self._tool
-        tool.executive.run_and_throw_if_fail(tool.deprecated_port().update_webkit_command(), quiet=True, cwd=tool.scm().checkout_root)
-
-    def _new_svn_revisions(self):
-        scm = self._tool.scm()
-        current_head = int(scm.head_svn_revision())
-        first_new_revision = self._last_svn_revision + 1
-        self._last_svn_revision = current_head
-        return range(max(first_new_revision, current_head - 20), current_head + 1)
-
-    _patch_by_regex = re.compile(r'^Patch\s+by\s+(?P<author>.+?)\s+on(\s+\d{4}-\d{2}-\d{2})?\n?', re.MULTILINE | re.IGNORECASE)
-    _rollout_regex = re.compile(r'(rolling out|reverting) (?P<revisions>r?\d+((,\s*|,?\s*and\s+)?r?\d+)*)\.?\s*', re.MULTILINE | re.IGNORECASE)
-    _requested_by_regex = re.compile(r'^\"?(?P<reason>.+?)\"? \(Requested\s+by\s+(?P<author>.+?)\s+on\s+#webkit\)\.', re.MULTILINE | re.IGNORECASE)
-    _bugzilla_url_regex = re.compile(r'http(s?)://bugs\.webkit\.org/show_bug\.cgi\?id=(?P<id>\d+)', re.MULTILINE)
-    _trac_url_regex = re.compile(r'http(s?)://trac.webkit.org/changeset/(?P<revision>\d+)', re.MULTILINE)
-
-    @classmethod
-    def _summarize_commit_log(self, commit_log, committer_list=CommitterList()):
-        patch_by = self._patch_by_regex.search(commit_log)
-        commit_log = self._patch_by_regex.sub('', commit_log, count=1)
-
-        rollout = self._rollout_regex.search(commit_log)
-        commit_log = self._rollout_regex.sub('', commit_log, count=1)
-
-        requested_by = self._requested_by_regex.search(commit_log)
-
-        commit_log = self._bugzilla_url_regex.sub(r'https://webkit.org/b/\g<id>', commit_log)
-        commit_log = self._trac_url_regex.sub(r'https://trac.webkit.org/r\g<revision>', commit_log)
-
-        for contributor in committer_list.contributors():
-            if not contributor.irc_nicknames:
-                continue
-            name_with_nick = "%s (%s)" % (contributor.full_name, contributor.irc_nicknames[0])
-            if contributor.full_name in commit_log:
-                commit_log = commit_log.replace(contributor.full_name, name_with_nick)
-                for email in contributor.emails:
-                    commit_log = commit_log.replace(' <' + email + '>', '')
-            else:
-                for email in contributor.emails:
-                    commit_log = commit_log.replace(email, name_with_nick)
-
-        lines = commit_log.split('\n')[1:-2]  # Ignore lines with ----------.
-
-        firstline = re.match(r'^(?P<revision>r\d+) \| (?P<email>[^\|]+) \| (?P<timestamp>[^|]+) \| [^\n]+', lines[0])
-        assert firstline
-        author = firstline.group('email')
-        if patch_by:
-            author = patch_by.group('author')
-
-        linkified_revision = 'https://trac.webkit.org/%s' % firstline.group('revision')
-        lines[0] = '%s by %s' % (linkified_revision, author)
-
-        if rollout:
-            if requested_by:
-                author = requested_by.group('author')
-                contributor = committer_list.contributor_by_irc_nickname(author)
-                if contributor:
-                    author = "%s (%s)" % (contributor.full_name, contributor.irc_nicknames[0])
-                return '%s rolled out %s in %s : %s' % (author, rollout.group('revisions'),
-                    linkified_revision, requested_by.group('reason'))
-            lines[0] = '%s rolled out %s in %s' % (author, rollout.group('revisions'), linkified_revision)
-
-        return ' '.join(filter(lambda line: len(line), lines)[0:4])
-
-    def handle_unexpected_error(self, failure_map, message):
-        _log.error(message)
-
-    # StepSequenceErrorHandler methods
-
-    @classmethod
-    def handle_script_error(cls, tool, state, script_error):
-        # Ideally we would post some information to IRC about what went wrong
-        # here, but we don't have the IRC password in the child process.
-        pass
diff --git a/Tools/Scripts/webkitpy/tool/commands/newcommitbot_unittest.py b/Tools/Scripts/webkitpy/tool/commands/newcommitbot_unittest.py
deleted file mode 100644
index 05bf456..0000000
--- a/Tools/Scripts/webkitpy/tool/commands/newcommitbot_unittest.py
+++ /dev/null
@@ -1,129 +0,0 @@
-# Copyright (C) 2013 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#    * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#    * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#    * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import unittest2 as unittest
-
-from webkitpy.tool.commands.newcommitbot import NewCommitBot
-
-
-class NewCommitBotTest(unittest.TestCase):
-    def test_summarize_commit_log_basic(self):
-        self.assertEqual(NewCommitBot._summarize_commit_log("""------------------------------------------------------------------------
-r143106 | jochen@chromium.org | 2013-02-16 10:27:07 -0800 (Sat, 16 Feb 2013) | 10 lines
-
-[chromium] initialize all variables of TestRunner classes
-https://bugs.webkit.org/show_bug.cgi?id=110013
-
-Reviewed by Adam Barth.
-
-* DumpRenderTree/chromium/TestRunner/src/TestInterfaces.cpp:
-(WebTestRunner::TestInterfaces::TestInterfaces):
-* DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp:
-(WebTestRunner::TestRunner::TestRunner):
-
-------------------------------------------------------------------------"""),
-            "https://trac.webkit.org/r143106 by Jochen Eisinger (jochen__) [chromium] initialize all variables of TestRunner classes"
-            " https://webkit.org/b/110013 Reviewed by Adam Barth (abarth).")
-
-        self.assertEqual(NewCommitBot._summarize_commit_log("""------------------------------------------------------------------------
-r140066 | simon.fraser@apple.com | 2013-01-17 16:10:31 -0800 (Thu, 17 Jan 2013) | 10 lines
-
-Allow PaintInfo to carry all PaintBehavior flags
-https://bugs.webkit.org/show_bug.cgi?id=106980
-
-Reviewed by Beth Dakin.
-
-In r139908 I missed one instance of the PaintInfo constructor that should take PaintBehaviorNormal
-instead of "false".
-
-* rendering/RenderScrollbarPart.cpp:
-(WebCore::RenderScrollbarPart::paintIntoRect):
-------------------------------------------------------------------------"""),
-            "https://trac.webkit.org/r140066 by Simon Fraser (smfr)"
-            " Allow PaintInfo to carry all PaintBehavior flags https://webkit.org/b/106980 Reviewed by Beth Dakin (dethbakin).")
-
-    def test_summarize_commit_log_rollout(self):
-        self.assertEqual(NewCommitBot._summarize_commit_log("""------------------------------------------------------------------------
-r143104 | commit-queue@webkit.org | 2013-02-16 09:09:01 -0800 (Sat, 16 Feb 2013) | 27 lines
-
-Unreviewed, rolling out r142734.
-http://trac.webkit.org/changeset/142734
-https://bugs.webkit.org/show_bug.cgi?id=110018
-
-"Triggered crashes on lots of websites" (Requested by ggaren
-on #webkit).
-
-Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2013-02-16
-
-Source/WebCore:
-
-------------------------------------------------------------------------"""),
-            "Geoffrey Garen (ggaren) rolled out r142734 in https://trac.webkit.org/r143104 : Triggered crashes on lots of websites")
-
-        self.assertEqual(NewCommitBot._summarize_commit_log("""------------------------------------------------------------------------
-r139884 | kov@webkit.org | 2013-01-16 08:26:10 -0800 (Wed, 16 Jan 2013) | 23 lines
-
-[GStreamer][Soup] Let GStreamer provide the buffer data is downloaded to, to avoid copying
-https://bugs.webkit.org/show_bug.cgi?id=105552
-
-Reverting 139877. It made a couple of API tests fail.
-
-* platform/graphics/gstreamer/GStreamerVersioning.cpp:
-* platform/graphics/gstreamer/GStreamerVersioning.h:
-* platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:
-(StreamingClient):
-(_WebKitWebSrcPrivate):
-
-------------------------------------------------------------------------"""),
-            "Gustavo Noronha Silva (kov) rolled out 139877 in https://trac.webkit.org/r139884"
-            " [GStreamer][Soup] Let GStreamer provide the buffer data is downloaded to, to avoid copying"
-            " https://webkit.org/b/105552 It made a couple of API tests fail.")
-
-        self.assertEqual(NewCommitBot._summarize_commit_log("""------------------------------------------------------------------------
-r135487 | commit-queue@webkit.org | 2012-11-22 00:09:25 -0800 (Thu, 22 Nov 2012) | 52 lines
-
-Unreviewed, rolling out r134927 and r134944.
-http://trac.webkit.org/changeset/134927
-http://trac.webkit.org/changeset/134944
-https://bugs.webkit.org/show_bug.cgi?id=103028
-
-Reverting the reverts after merging. (Requested by vsevik on
-#webkit).
-
-Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2012-11-22
-
-* English.lproj/localizedStrings.js:
-* WebCore.gypi:
-* WebCore.vcproj/WebCore.vcproj:
-* inspector/compile-front-end.py:
-* inspector/front-end/AdvancedSearchController.js:
-* inspector/front-end/CallStackSidebarPane.js:
-
-------------------------------------------------------------------------"""),
-            "Vsevolod Vlasov (vsevik) rolled out r134927 and r134944 in https://trac.webkit.org/r135487 :"
-            " Reverting the reverts after merging.")
diff --git a/Tools/Scripts/webkitpy/tool/commands/perfalizer.py b/Tools/Scripts/webkitpy/tool/commands/perfalizer.py
deleted file mode 100644
index ed0e015..0000000
--- a/Tools/Scripts/webkitpy/tool/commands/perfalizer.py
+++ /dev/null
@@ -1,218 +0,0 @@
-# Copyright (c) 2012 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import logging
-
-from webkitpy.tool.bot.expectedfailures import ExpectedFailures
-from webkitpy.tool.bot.irc_command import IRCCommand
-from webkitpy.tool.bot.irc_command import Help
-from webkitpy.tool.bot.irc_command import Hi
-from webkitpy.tool.bot.irc_command import Restart
-from webkitpy.tool.bot.ircbot import IRCBot
-from webkitpy.tool.bot.patchanalysistask import PatchAnalysisTask, PatchAnalysisTaskDelegate, UnableToApplyPatch
-from webkitpy.tool.bot.sheriff import Sheriff
-from webkitpy.tool.commands.queues import AbstractQueue
-from webkitpy.tool.commands.stepsequence import StepSequenceErrorHandler
-
-_log = logging.getLogger(__name__)
-
-
-class PerfalizerTask(PatchAnalysisTask):
-    def __init__(self, tool, patch, logger):
-        PatchAnalysisTask.__init__(self, self, patch)
-        self._port = tool.port_factory.get()
-        self._tool = tool
-        self._logger = logger
-
-    def _copy_build_product_without_patch(self):
-        filesystem = self._tool.filesystem
-        configuration = filesystem.basename(self._port._build_path())
-        self._build_directory = filesystem.dirname(self._port._build_path())
-        self._build_directory_without_patch = self._build_directory + 'WithoutPatch'
-
-        try:
-            filesystem.rmtree(self._build_directory_without_patch)
-            filesystem.copytree(filesystem.join(self._build_directory, configuration),
-                filesystem.join(self._build_directory_without_patch, configuration))
-            return True
-        except:
-            return False
-
-    def run(self):
-        if not self._patch.committer() and not self._patch.attacher().can_commit:
-            self._logger('The patch %d is not authorized by a commmitter' % self._patch.id())
-            return False
-
-        self._logger('Preparing to run performance tests for the attachment %d...' % self._patch.id())
-        if not self._clean() or not self._update():
-            return False
-
-        head_revision = self._tool.scm().head_svn_revision()
-
-        self._logger('Building WebKit at r%s without the patch' % head_revision)
-        if not self._build_without_patch():
-            return False
-
-        if not self._port.check_build(needs_http=False):
-            self._logger('Failed to build DumpRenderTree.')
-            return False
-
-        if not self._copy_build_product_without_patch():
-            self._logger('Failed to copy the build product from %s to %s' % (self._build_directory, self._build_directory_without_patch))
-            return False
-
-        self._logger('Building WebKit at r%s with the patch' % head_revision)
-        if not self._apply() or not self._build():
-            return False
-
-        if not self._port.check_build(needs_http=False):
-            self._logger('Failed to build DumpRenderTree.')
-            return False
-
-        filesystem = self._tool.filesystem
-        if filesystem.exists(self._json_path()):
-            filesystem.remove(self._json_path())
-
-        self._logger("Running performance tests...")
-        if self._run_perf_test(self._build_directory_without_patch, 'without %d' % self._patch.id()) < 0:
-            self._logger('Failed to run performance tests without the patch.')
-            return False
-
-        if self._run_perf_test(self._build_directory, 'with %d' % self._patch.id()) < 0:
-            self._logger('Failed to run performance tests with the patch.')
-            return False
-
-        if not filesystem.exists(self._results_page_path()):
-            self._logger('Failed to generate the results page.')
-            return False
-
-        results_page = filesystem.read_text_file(self._results_page_path())
-        self._tool.bugs.add_attachment_to_bug(self._patch.bug_id(), results_page,
-            description="Performance tests results for %d" % self._patch.id(), mimetype='text/html')
-
-        self._logger("Uploaded the results on the bug %d" % self._patch.bug_id())
-        return True
-
-    def parent_command(self):
-        return "perfalizer"
-
-    def run_webkit_patch(self, args):
-        webkit_patch_args = [self._tool.path()]
-        webkit_patch_args.extend(args)
-        return self._tool.executive.run_and_throw_if_fail(webkit_patch_args, cwd=self._tool.scm().checkout_root)
-
-    def _json_path(self):
-        return self._tool.filesystem.join(self._build_directory, 'PerformanceTestResults.json')
-
-    def _results_page_path(self):
-        return self._tool.filesystem.join(self._build_directory, 'PerformanceTestResults.html')
-
-    def _run_perf_test(self, build_path, description):
-        filesystem = self._tool.filesystem
-        script_path = filesystem.join(filesystem.dirname(self._tool.path()), 'run-perf-tests')
-        perf_test_runner_args = [script_path, '--no-build', '--no-show-results', '--build-directory', build_path,
-            '--output-json-path', self._json_path(), '--description', description]
-        return self._tool.executive.run_and_throw_if_fail(perf_test_runner_args, cwd=self._tool.scm().checkout_root)
-
-    def run_command(self, command):
-        self.run_webkit_patch(command)
-
-    def command_passed(self, message, patch):
-        pass
-
-    def command_failed(self, message, script_error, patch):
-        self._logger(message)
-
-    def refetch_patch(self, patch):
-        return self._tool.bugs.fetch_attachment(patch.id())
-
-    def expected_failures(self):
-        return ExpectedFailures()
-
-    def build_style(self):
-        return "release"
-
-
-class PerfTest(IRCCommand):
-    def execute(self, nick, args, tool, sheriff):
-        if not args:
-            tool.irc().post(nick + ": Please specify an attachment/patch id")
-            return
-
-        patch_id = args[0]
-        patch = tool.bugs.fetch_attachment(patch_id)
-        if not patch:
-            tool.irc().post(nick + ": Could not fetch the patch")
-            return
-
-        task = PerfalizerTask(tool, patch, lambda message: tool.irc().post('%s: %s' % (nick, message)))
-        task.run()
-
-
-class Perfalizer(AbstractQueue, StepSequenceErrorHandler):
-    name = "perfalizer"
-    watchers = AbstractQueue.watchers + ["rniwa@webkit.org"]
-
-    _commands = {
-        "help": Help,
-        "hi": Hi,
-        "restart": Restart,
-        "test": PerfTest,
-    }
-
-    # AbstractQueue methods
-
-    def begin_work_queue(self):
-        AbstractQueue.begin_work_queue(self)
-        self._sheriff = Sheriff(self._tool, self)
-        self._irc_bot = IRCBot("perfalizer", self._tool, self._sheriff, self._commands)
-        self._tool.ensure_irc_connected(self._irc_bot.irc_delegate())
-
-    def work_item_log_path(self, failure_map):
-        return None
-
-    def _is_old_failure(self, revision):
-        return self._tool.status_server.svn_revision(revision)
-
-    def next_work_item(self):
-        self._irc_bot.process_pending_messages()
-        return
-
-    def process_work_item(self, failure_map):
-        return True
-
-    def handle_unexpected_error(self, failure_map, message):
-        _log.error(message)
-
-    # StepSequenceErrorHandler methods
-
-    @classmethod
-    def handle_script_error(cls, tool, state, script_error):
-        # Ideally we would post some information to IRC about what went wrong
-        # here, but we don't have the IRC password in the child process.
-        pass
diff --git a/Tools/Scripts/webkitpy/tool/commands/perfalizer_unittest.py b/Tools/Scripts/webkitpy/tool/commands/perfalizer_unittest.py
deleted file mode 100644
index 14211e4..0000000
--- a/Tools/Scripts/webkitpy/tool/commands/perfalizer_unittest.py
+++ /dev/null
@@ -1,112 +0,0 @@
-# Copyright (C) 2012 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#    * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#    * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#    * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import unittest2 as unittest
-
-from webkitpy.common.net.buildbot import Builder
-from webkitpy.common.system.executive import ScriptError
-from webkitpy.common.system.outputcapture import OutputCapture
-from webkitpy.layout_tests.port.test import TestPort
-from webkitpy.tool.commands.perfalizer import PerfalizerTask
-from webkitpy.tool.mocktool import MockTool
-
-
-class PerfalizerTaskTest(unittest.TestCase):
-    def _create_and_run_perfalizer(self, commands_to_fail=[]):
-        tool = MockTool()
-        patch = tool.bugs.fetch_attachment(10000)
-
-        logs = []
-
-        def logger(message):
-            logs.append(message)
-
-        def run_webkit_patch(args):
-            if args[0] in commands_to_fail:
-                raise ScriptError
-
-        def run_perf_test(build_path, description):
-            self.assertTrue(description == 'without 10000' or description == 'with 10000')
-            if 'run-perf-tests' in commands_to_fail:
-                return -1
-            if 'results-page' not in commands_to_fail:
-                tool.filesystem.write_text_file(tool.filesystem.join(build_path, 'PerformanceTestResults.html'), 'results page')
-            return 0
-
-        perfalizer = PerfalizerTask(tool, patch, logger)
-        perfalizer._port = TestPort(tool)
-        perfalizer.run_webkit_patch = run_webkit_patch
-        perfalizer._run_perf_test = run_perf_test
-
-        capture = OutputCapture()
-        capture.capture_output()
-
-        if commands_to_fail:
-            self.assertFalse(perfalizer.run())
-        else:
-            self.assertTrue(perfalizer.run())
-
-        capture.restore_output()
-
-        return logs
-
-    def test_run(self):
-        self.assertEqual(self._create_and_run_perfalizer(), [
-            'Preparing to run performance tests for the attachment 10000...',
-            'Building WebKit at r1234 without the patch',
-            'Building WebKit at r1234 with the patch',
-            'Running performance tests...',
-            'Uploaded the results on the bug 50000'])
-
-    def test_run_with_clean_fails(self):
-        self.assertEqual(self._create_and_run_perfalizer(['clean']), [
-            'Preparing to run performance tests for the attachment 10000...',
-            'Unable to clean working directory'])
-
-    def test_run_with_update_fails(self):
-        logs = self._create_and_run_perfalizer(['update'])
-        self.assertEqual(len(logs), 2)
-        self.assertEqual(logs[-1], 'Unable to update working directory')
-
-    def test_run_with_build_fails(self):
-        logs = self._create_and_run_perfalizer(['build'])
-        self.assertEqual(len(logs), 3)
-
-    def test_run_with_build_fails(self):
-        logs = self._create_and_run_perfalizer(['apply-attachment'])
-        self.assertEqual(len(logs), 4)
-
-    def test_run_with_perf_test_fails(self):
-        logs = self._create_and_run_perfalizer(['run-perf-tests'])
-        self.assertEqual(len(logs), 5)
-        self.assertEqual(logs[-1], 'Failed to run performance tests without the patch.')
-
-    def test_run_without_results_page(self):
-        logs = self._create_and_run_perfalizer(['results-page'])
-        self.assertEqual(len(logs), 5)
-        self.assertEqual(logs[-1], 'Failed to generate the results page.')
diff --git a/Tools/Scripts/webkitpy/tool/commands/queues.py b/Tools/Scripts/webkitpy/tool/commands/queues.py
index 8a47e4c..b9a78a8 100644
--- a/Tools/Scripts/webkitpy/tool/commands/queues.py
+++ b/Tools/Scripts/webkitpy/tool/commands/queues.py
@@ -260,15 +260,10 @@
         AbstractPatchQueue.__init__(self, options)
 
     # FIXME: This is a hack to map between the old port names and the new port names.
-    def _new_port_name_from_old(self, port_name):
+    def _new_port_name_from_old(self, port_name, platform):
         # The new port system has no concept of xvfb yet.
         if port_name == 'chromium-xvfb':
             return 'chromium'
-        # ApplePort.determine_full_port_name asserts if the name doesn't include version.
-        if port_name == 'mac':
-            return 'mac-future'
-        if port_name == 'win':
-            return 'win-future'
         return port_name
 
     def begin_work_queue(self):
@@ -279,11 +274,11 @@
         self._deprecated_port = DeprecatedPort.port(self.port_name)
         # FIXME: This violates abstraction
         self._tool._deprecated_port = self._deprecated_port
-        self._port = self._tool.port_factory.get(self._new_port_name_from_old(self.port_name))
+        self._port = self._tool.port_factory.get(self._new_port_name_from_old(self.port_name, self._tool.platform))
 
     def _upload_results_archive_for_patch(self, patch, results_archive_zip):
         if not self._port:
-            self._port = self._tool.port_factory.get(self._new_port_name_from_old(self.port_name))
+            self._port = self._tool.port_factory.get(self._new_port_name_from_old(self.port_name, self._tool.platform))
 
         bot_id = self._tool.status_server.bot_id or "bot"
         description = "Archive of layout-test-results from %s for %s" % (bot_id, self._port.name())
diff --git a/Tools/Scripts/webkitpy/tool/commands/queues_unittest.py b/Tools/Scripts/webkitpy/tool/commands/queues_unittest.py
index 53a46ed..929f83e 100644
--- a/Tools/Scripts/webkitpy/tool/commands/queues_unittest.py
+++ b/Tools/Scripts/webkitpy/tool/commands/queues_unittest.py
@@ -176,10 +176,10 @@
         queue._options = Mock()
         queue._options.port = None
         patch = queue._tool.bugs.fetch_attachment(10001)
-        expected_logs = """MOCK add_attachment_to_bug: bug_id=50000, description=Archive of layout-test-results from bot for mac-snowleopard filename=layout-test-results.zip mimetype=None
+        expected_logs = """MOCK add_attachment_to_bug: bug_id=50000, description=Archive of layout-test-results from bot for chromium-mac-snowleopard filename=layout-test-results.zip mimetype=None
 -- Begin comment --
 The attached test failures were seen while running run-webkit-tests on the mock-queue.
-Port: mac-snowleopard  Platform: MockPlatform 1.0
+Port: chromium-mac-snowleopard  Platform: MockPlatform 1.0
 -- End comment --
 """
         OutputCapture().assert_outputs(self, queue._upload_results_archive_for_patch, [patch, Mock()], expected_logs=expected_logs)
diff --git a/Tools/Scripts/webkitpy/tool/commands/rebaseline.py b/Tools/Scripts/webkitpy/tool/commands/rebaseline.py
index b6e408d..c6c4d2a 100644
--- a/Tools/Scripts/webkitpy/tool/commands/rebaseline.py
+++ b/Tools/Scripts/webkitpy/tool/commands/rebaseline.py
@@ -32,6 +32,7 @@
 import sys
 
 from webkitpy.common.checkout.baselineoptimizer import BaselineOptimizer
+from webkitpy.common.memoized import memoized
 from webkitpy.common.system.executive import ScriptError
 from webkitpy.layout_tests.controllers.test_result_writer import TestResultWriter
 from webkitpy.layout_tests.models import test_failures
@@ -85,7 +86,7 @@
                 help="Platform to move existing baselines to before rebaselining. This is for bringing up new ports."),
             optparse.make_option("--test", help="Test to rebaseline"),
             ])
-        self._scm_changes = {'add': []}
+        self._scm_changes = {'add': [], 'remove-lines': []}
 
     def _results_url(self, builder_name):
         return self._tool.buildbot_for_builder_name(builder_name).builder_with_name(builder_name).latest_layout_test_results_url()
@@ -97,6 +98,24 @@
             return self._tool.filesystem.join(port.layout_tests_dir(), 'platform', override_dir)
         return port.baseline_version_dir()
 
+    @memoized
+    def _immediate_predecessors_in_fallback(self, path_to_rebaseline):
+        port_names = self._tool.port_factory.all_port_names()
+        immediate_predecessors_in_fallback = []
+        for port_name in port_names:
+            port = self._tool.port_factory.get(port_name)
+            if not port.buildbot_archives_baselines():
+                continue
+            baseline_search_path = port.baseline_search_path()
+            try:
+                index = baseline_search_path.index(path_to_rebaseline)
+                if index:
+                    immediate_predecessors_in_fallback.append(self._tool.filesystem.basename(baseline_search_path[index - 1]))
+            except ValueError:
+                # index throw's a ValueError if the item isn't in the list.
+                pass
+        return immediate_predecessors_in_fallback
+
     def _copy_existing_baseline(self, move_overwritten_baselines_to, test_name, suffix):
         old_baselines = []
         new_baselines = []
@@ -128,9 +147,13 @@
             if not self._tool.scm().exists(new_baseline):
                 self._add_to_scm(new_baseline)
 
-    def _save_baseline(self, data, target_baseline):
+    def _save_baseline(self, data, target_baseline, baseline_directory, test_name, suffix):
         if not data:
+            _log.debug("No baseline data to save.")
             return
+
+        self._copy_existing_baseline(self._immediate_predecessors_in_fallback(baseline_directory), test_name, suffix)
+
         filesystem = self._tool.filesystem
         filesystem.maybe_make_directory(filesystem.dirname(target_baseline))
         filesystem.write_binary_file(target_baseline, data)
@@ -140,27 +163,6 @@
     def _add_to_scm(self, path):
         self._scm_changes['add'].append(path)
 
-    def _update_expectations_file(self, builder_name, test_name):
-        port = self._tool.port_factory.get_from_builder_name(builder_name)
-
-        # Since rebaseline-test-internal can be called multiple times in parallel,
-        # we need to ensure that we're not trying to update the expectations file
-        # concurrently as well.
-        # FIXME: We should rework the code to not need this; maybe just download
-        # the files in parallel and rebaseline local files serially?
-        try:
-            path = port.path_to_test_expectations_file()
-            lock = self._tool.make_file_lock(path + '.lock')
-            lock.acquire_lock()
-            expectations = TestExpectations(port, include_generic=False, include_overrides=False)
-            for test_configuration in port.all_test_configurations():
-                if test_configuration.version == port.test_configuration().version:
-                    expectationsString = expectations.remove_configuration_from_test(test_name, test_configuration)
-
-            self._tool.filesystem.write_text_file(path, expectationsString)
-        finally:
-            lock.release_lock()
-
     def _test_root(self, test_name):
         return self._tool.filesystem.splitext(test_name)[0]
 
@@ -176,13 +178,19 @@
         source_baseline = "%s/%s" % (results_url, self._file_name_for_actual_result(test_name, suffix))
         target_baseline = self._tool.filesystem.join(baseline_directory, self._file_name_for_expected_result(test_name, suffix))
 
+        # FIXME: This concept is outdated now that we always move baselines in _save_baseline.
         if move_overwritten_baselines_to:
             self._copy_existing_baseline(move_overwritten_baselines_to, test_name, suffix)
 
         _log.debug("Retrieving %s." % source_baseline)
-        self._save_baseline(self._tool.web.get_binary(source_baseline, convert_404_to_None=True), target_baseline)
+        self._save_baseline(self._tool.web.get_binary(source_baseline, convert_404_to_None=True), target_baseline, baseline_directory, test_name, suffix)
 
     def _rebaseline_test_and_update_expectations(self, options):
+        port = self._tool.port_factory.get_from_builder_name(options.builder)
+        if (port.reference_files(options.test)):
+            _log.warning("Cannot rebaseline reftest: %s", options.test)
+            return
+
         if options.results_directory:
             results_url = 'file://' + options.results_directory
         else:
@@ -190,7 +198,7 @@
         self._baseline_suffix_list = options.suffixes.split(',')
         for suffix in self._baseline_suffix_list:
             self._rebaseline_test(options.builder, options.test, options.move_overwritten_baselines_to, suffix, results_url)
-        self._update_expectations_file(options.builder, options.test)
+        self._scm_changes['remove-lines'].append({'builder': options.builder, 'test': options.test})
 
     def execute(self, options, args, tool):
         self._rebaseline_test_and_update_expectations(options)
@@ -320,12 +328,22 @@
 
     def _files_to_add(self, command_results):
         files_to_add = set()
+        lines_to_remove = {}
         for output in [result[1].split('\n') for result in command_results]:
             file_added = False
             for line in output:
                 try:
                     if line:
-                        files_to_add.update(json.loads(line)['add'])
+                        parsed_line = json.loads(line)
+                        if 'add' in parsed_line:
+                            files_to_add.update(parsed_line['add'])
+                        if 'remove-lines' in parsed_line:
+                            for line_to_remove in parsed_line['remove-lines']:
+                                test = line_to_remove['test']
+                                builder = line_to_remove['builder']
+                                if test not in lines_to_remove:
+                                    lines_to_remove[test] = []
+                                lines_to_remove[test].append(builder)
                         file_added = True
                 except ValueError:
                     _log.debug('"%s" is not a JSON object, ignoring' % line)
@@ -333,8 +351,7 @@
             if not file_added:
                 _log.debug('Could not add file based off output "%s"' % output)
 
-
-        return list(files_to_add)
+        return list(files_to_add), lines_to_remove
 
     def _optimize_baselines(self, test_list, verbose=False):
         # We don't run this in parallel because modifying the SCM in parallel is unreliable.
@@ -345,6 +362,17 @@
             # FIXME: We should propagate the platform options as well.
             self._run_webkit_patch(['optimize-baselines', '--suffixes', ','.join(all_suffixes), test], verbose)
 
+    def _update_expectations_files(self, lines_to_remove):
+        for test in lines_to_remove:
+            for builder in lines_to_remove[test]:
+                port = self._tool.port_factory.get_from_builder_name(builder)
+                path = port.path_to_generic_test_expectations_file()
+                expectations = TestExpectations(port, include_overrides=False)
+                for test_configuration in port.all_test_configurations():
+                    if test_configuration.version == port.test_configuration().version:
+                        expectationsString = expectations.remove_configuration_from_test(test, test_configuration)
+                self._tool.filesystem.write_text_file(path, expectationsString)
+
     def _rebaseline(self, options, test_list):
         for test, builders_to_check in sorted(test_list.items()):
             _log.info("Rebaselining %s" % test)
@@ -353,15 +381,15 @@
 
         commands = self._rebaseline_commands(test_list, options)
         command_results = self._tool.executive.run_in_parallel(commands)
-
         log_output = '\n'.join(result[2] for result in command_results).replace('\n\n', '\n')
         for line in log_output.split('\n'):
             if line:
                 print >> sys.stderr, line  # FIXME: Figure out how to log properly.
 
-        files_to_add = self._files_to_add(command_results)
+        files_to_add, lines_to_remove = self._files_to_add(command_results)
         if files_to_add:
             self._tool.scm().add_list(list(files_to_add))
+        self._update_expectations_files(lines_to_remove)
 
         if options.optimize:
             self._optimize_baselines(test_list, options.verbose)
@@ -393,14 +421,6 @@
             ] + self.platform_options)
         self._test_list = None
 
-    def _update_expectations_files(self, port_name):
-        port = self._tool.port_factory.get(port_name)
-
-        expectations = TestExpectations(port)
-        for path in port.expectations_dict():
-            if self._tool.filesystem.exists(path):
-                self._tool.filesystem.write_text_file(path, expectations.remove_rebaselined_tests(expectations.get_rebaselining_failures(), path))
-
     def _tests_to_rebaseline(self, port):
         tests_to_rebaseline = {}
         expectations = TestExpectations(port, include_overrides=True)
@@ -435,9 +455,6 @@
 
         self._rebaseline(options, self._test_list)
 
-        for port_name in port_names:
-            self._update_expectations_files(port_name)
-
 
 class Rebaseline(AbstractParallelRebaselineCommand):
     name = "rebaseline"
@@ -455,17 +472,9 @@
 
     def _builders_to_pull_from(self):
         chromium_buildbot_builder_names = []
-        webkit_buildbot_builder_names = []
         for name in builders.all_builder_names():
-            if self._tool.port_factory.get_from_builder_name(name).is_chromium():
-                chromium_buildbot_builder_names.append(name)
-            else:
-                webkit_buildbot_builder_names.append(name)
-
-        titles = ["build.webkit.org bots", "build.chromium.org bots"]
-        lists = [webkit_buildbot_builder_names, chromium_buildbot_builder_names]
-
-        chosen_names = self._tool.user.prompt_with_multiple_lists("Which builder to pull results from:", titles, lists, can_choose_multiple=True)
+            chromium_buildbot_builder_names.append(name)
+        chosen_names = self._tool.user.prompt_with_list("Which builder to pull results from:", chromium_buildbot_builder_names, can_choose_multiple=True)
         return [self._builder_with_name(name) for name in chosen_names]
 
     def _builder_with_name(self, name):
diff --git a/Tools/Scripts/webkitpy/tool/commands/rebaseline_unittest.py b/Tools/Scripts/webkitpy/tool/commands/rebaseline_unittest.py
index b93e1a5..c982731 100644
--- a/Tools/Scripts/webkitpy/tool/commands/rebaseline_unittest.py
+++ b/Tools/Scripts/webkitpy/tool/commands/rebaseline_unittest.py
@@ -48,7 +48,7 @@
         self.command = self.command_constructor()  # lint warns that command_constructor might not be set, but this is intentional; pylint: disable=E1102
         self.command.bind_to_tool(self.tool)
         self.lion_port = self.tool.port_factory.get_from_builder_name("WebKit Mac10.7")
-        self.lion_expectations_path = self.lion_port.path_to_test_expectations_file()
+        self.lion_expectations_path = self.lion_port.path_to_generic_test_expectations_file()
 
         # FIXME: we should override builders._exact_matches here to point to a set
         # of test ports and restore the value in tearDown(), and that way the
@@ -83,14 +83,6 @@
 
     def test_baseline_directory(self):
         command = self.command
-        self.assertMultiLineEqual(command._baseline_directory("Apple Win XP Debug (Tests)"), "/mock-checkout/LayoutTests/platform/win-xp")
-        self.assertMultiLineEqual(command._baseline_directory("Apple Win 7 Release (Tests)"), "/mock-checkout/LayoutTests/platform/win")
-        self.assertMultiLineEqual(command._baseline_directory("Apple Lion Release WK1 (Tests)"), "/mock-checkout/LayoutTests/platform/mac-lion")
-        self.assertMultiLineEqual(command._baseline_directory("Apple Lion Release WK2 (Tests)"), "/mock-checkout/LayoutTests/platform/mac-wk2")
-        self.assertMultiLineEqual(command._baseline_directory("GTK Linux 64-bit Debug"), "/mock-checkout/LayoutTests/platform/gtk-wk1")
-        self.assertMultiLineEqual(command._baseline_directory("GTK Linux 64-bit Release WK2 (Tests)"), "/mock-checkout/LayoutTests/platform/gtk-wk2")
-        self.assertMultiLineEqual(command._baseline_directory("EFL Linux 64-bit Release WK2"), "/mock-checkout/LayoutTests/platform/efl-wk2")
-        self.assertMultiLineEqual(command._baseline_directory("Qt Linux Release"), "/mock-checkout/LayoutTests/platform/qt")
         self.assertMultiLineEqual(command._baseline_directory("WebKit Mac10.7"), "/mock-checkout/LayoutTests/platform/chromium-mac-lion")
         self.assertMultiLineEqual(command._baseline_directory("WebKit Mac10.6"), "/mock-checkout/LayoutTests/platform/chromium-mac-snowleopard")
 
@@ -115,36 +107,6 @@
 Bug(A) [ Debug ] : fast/css/large-list-of-rules-crash.html [ Failure ]
 """)
 
-    def test_rebaseline_updates_expectations_file(self):
-        self._write(self.lion_expectations_path, "Bug(x) [ Mac ] userscripts/another-test.html [ ImageOnlyFailure ]\nbug(z) [ Linux ] userscripts/another-test.html [ ImageOnlyFailure ]\n")
-        self._write("userscripts/another-test.html", "Dummy test contents")
-
-        self.options.suffixes = 'png,wav,txt'
-        self.command._rebaseline_test_and_update_expectations(self.options)
-
-        self.assertItemsEqual(self.tool.web.urls_fetched,
-            [self.WEB_PREFIX + '/userscripts/another-test-actual.png',
-             self.WEB_PREFIX + '/userscripts/another-test-actual.wav',
-             self.WEB_PREFIX + '/userscripts/another-test-actual.txt'])
-        new_expectations = self._read(self.lion_expectations_path)
-        self.assertMultiLineEqual(new_expectations, "Bug(x) [ MountainLion SnowLeopard ] userscripts/another-test.html [ ImageOnlyFailure ]\nbug(z) [ Linux ] userscripts/another-test.html [ ImageOnlyFailure ]\n")
-
-    def test_rebaseline_does_not_include_overrides(self):
-        self._write(self.lion_expectations_path, "Bug(x) [ Mac ] userscripts/another-test.html [ ImageOnlyFailure ]\nBug(z) [ Linux ] userscripts/another-test.html [ ImageOnlyFailure ]\n")
-        self._write(self.lion_port.path_from_chromium_base('skia', 'skia_test_expectations.txt'), "Bug(y) [ Mac ] other-test.html [ Failure ]\n")
-        self._write("userscripts/another-test.html", "Dummy test contents")
-
-        self.options.suffixes = 'png,wav,txt'
-        self.command._rebaseline_test_and_update_expectations(self.options)
-
-        self.assertItemsEqual(self.tool.web.urls_fetched,
-            [self.WEB_PREFIX + '/userscripts/another-test-actual.png',
-             self.WEB_PREFIX + '/userscripts/another-test-actual.wav',
-             self.WEB_PREFIX + '/userscripts/another-test-actual.txt'])
-
-        new_expectations = self._read(self.lion_expectations_path)
-        self.assertMultiLineEqual(new_expectations, "Bug(x) [ MountainLion SnowLeopard ] userscripts/another-test.html [ ImageOnlyFailure ]\nBug(z) [ Linux ] userscripts/another-test.html [ ImageOnlyFailure ]\n")
-
     def test_rebaseline_test(self):
         self.command._rebaseline_test("WebKit Linux", "userscripts/another-test.html", None, "txt", self.WEB_PREFIX)
         self.assertItemsEqual(self.tool.web.urls_fetched, [self.WEB_PREFIX + '/userscripts/another-test-actual.txt'])
@@ -155,6 +117,11 @@
         self.command._rebaseline_test_and_update_expectations(self.options)
         self.assertItemsEqual(self.tool.web.urls_fetched, ['file:///tmp/userscripts/another-test-actual.txt'])
 
+    def test_rebaseline_reftest(self):
+        self._write("userscripts/another-test-expected.html", "generic result")
+        OutputCapture().assert_outputs(self, self.command._rebaseline_test_and_update_expectations, args=[self.options],
+            expected_logs="Cannot rebaseline reftest: userscripts/another-test.html\n")
+
     def test_rebaseline_test_and_print_scm_changes(self):
         self.command._print_scm_changes = True
         self.command._scm_changes = {'add': [], 'delete': []}
@@ -196,7 +163,7 @@
         self.assertMultiLineEqual(self._read("platform/chromium-mac-snowleopard/userscripts/another-test-expected.txt"), "original snowleopard result")
         self.assertMultiLineEqual(self._read("platform/chromium-mac-lion/userscripts/another-test-expected.txt"), self.MOCK_WEB_RESULT)
 
-    def test_rebaseline_test_internal_with_move_overwritten_baselines_to(self):
+    def test_rebaseline_test_internal_with_copying_overwritten_baseline_first(self):
         self.tool.executive = MockExecutive2()
 
         # FIXME: it's confusing that this is the test- port, and not the regular lion port. Really all of the tests should be using the test ports.
@@ -212,7 +179,7 @@
             }
 
             options = MockOptions(optimize=True, builder="MOCK SnowLeopard", suffixes="txt",
-                move_overwritten_baselines_to=["test-mac-leopard"], verbose=True, test="failures/expected/image.html",
+                move_overwritten_baselines_to=None, verbose=True, test="failures/expected/image.html",
                 results_directory=None)
 
             oc.capture_output()
@@ -222,7 +189,102 @@
             builders._exact_matches = old_exact_matches
 
         self.assertMultiLineEqual(self._read(self.tool.filesystem.join(port.layout_tests_dir(), 'platform/test-mac-leopard/failures/expected/image-expected.txt')), 'original snowleopard result')
-        self.assertMultiLineEqual(out, '{"add": []}\n')
+        self.assertMultiLineEqual(out, '{"add": [], "remove-lines": [{"test": "failures/expected/image.html", "builder": "MOCK SnowLeopard"}]}\n')
+
+    def test_rebaseline_test_internal_with_copying_overwritten_baseline_first_to_multiple_locations(self):
+        self.tool.executive = MockExecutive2()
+
+        # FIXME: it's confusing that this is the test- port, and not the regular win port. Really all of the tests should be using the test ports.
+        port = self.tool.port_factory.get('test-win-win7')
+        self._write(port._filesystem.join(port.layout_tests_dir(), 'platform/test-win-win7/failures/expected/image-expected.txt'), 'original win7 result')
+
+        old_exact_matches = builders._exact_matches
+        oc = OutputCapture()
+        try:
+            builders._exact_matches = {
+                "MOCK Leopard": {"port_name": "test-mac-leopard", "specifiers": set(["mock-specifier"])},
+                "MOCK Linux": {"port_name": "test-linux-x86_64", "specifiers": set(["mock-specifier"])},
+                "MOCK Vista": {"port_name": "test-win-vista", "specifiers": set(["mock-specifier"])},
+                "MOCK Win7": {"port_name": "test-win-win7", "specifiers": set(["mock-specifier"])},
+            }
+
+            options = MockOptions(optimize=True, builder="MOCK Win7", suffixes="txt",
+                move_overwritten_baselines_to=None, verbose=True, test="failures/expected/image.html",
+                results_directory=None)
+
+            oc.capture_output()
+            self.command.execute(options, [], self.tool)
+        finally:
+            out, _, _ = oc.restore_output()
+            builders._exact_matches = old_exact_matches
+
+        self.assertMultiLineEqual(self._read(self.tool.filesystem.join(port.layout_tests_dir(), 'platform/test-linux-x86_64/failures/expected/image-expected.txt')), 'original win7 result')
+        self.assertMultiLineEqual(self._read(self.tool.filesystem.join(port.layout_tests_dir(), 'platform/test-win-vista/failures/expected/image-expected.txt')), 'original win7 result')
+        self.assertFalse(self.tool.filesystem.exists(self.tool.filesystem.join(port.layout_tests_dir(), 'platform/chromium-mac-leopard/userscripts/another-test-expected.txt')))
+        self.assertMultiLineEqual(out, '{"add": [], "remove-lines": [{"test": "failures/expected/image.html", "builder": "MOCK Win7"}]}\n')
+
+    def test_rebaseline_test_internal_with_no_overwrite_existing_baseline(self):
+        self.tool.executive = MockExecutive2()
+
+        # FIXME: it's confusing that this is the test- port, and not the regular win port. Really all of the tests should be using the test ports.
+        port = self.tool.port_factory.get('test-win-win7')
+        self._write(port._filesystem.join(port.layout_tests_dir(), 'platform/test-win-win7/failures/expected/image-expected.txt'), 'original win7 result')
+        self._write(port._filesystem.join(port.layout_tests_dir(), 'platform/test-win-vista/failures/expected/image-expected.txt'), 'original vista result')
+
+        old_exact_matches = builders._exact_matches
+        oc = OutputCapture()
+        try:
+            builders._exact_matches = {
+                "MOCK Leopard": {"port_name": "test-mac-leopard", "specifiers": set(["mock-specifier"])},
+                "MOCK Linux": {"port_name": "test-linux-x86_64", "specifiers": set(["mock-specifier"])},
+                "MOCK Vista": {"port_name": "test-win-vista", "specifiers": set(["mock-specifier"])},
+                "MOCK Win7": {"port_name": "test-win-win7", "specifiers": set(["mock-specifier"])},
+            }
+
+            options = MockOptions(optimize=True, builder="MOCK Win7", suffixes="txt",
+                move_overwritten_baselines_to=None, verbose=True, test="failures/expected/image.html",
+                results_directory=None)
+
+            oc.capture_output()
+            self.command.execute(options, [], self.tool)
+        finally:
+            out, _, _ = oc.restore_output()
+            builders._exact_matches = old_exact_matches
+
+        self.assertMultiLineEqual(self._read(self.tool.filesystem.join(port.layout_tests_dir(), 'platform/test-linux-x86_64/failures/expected/image-expected.txt')), 'original win7 result')
+        self.assertMultiLineEqual(self._read(self.tool.filesystem.join(port.layout_tests_dir(), 'platform/test-win-vista/failures/expected/image-expected.txt')), 'original vista result')
+        self.assertMultiLineEqual(self._read(self.tool.filesystem.join(port.layout_tests_dir(), 'platform/test-win-win7/failures/expected/image-expected.txt')), 'MOCK Web result, convert 404 to None=True')
+        self.assertFalse(self.tool.filesystem.exists(self.tool.filesystem.join(port.layout_tests_dir(), 'platform/chromium-mac-leopard/userscripts/another-test-expected.txt')))
+        self.assertMultiLineEqual(out, '{"add": [], "remove-lines": [{"test": "failures/expected/image.html", "builder": "MOCK Win7"}]}\n')
+
+    def test_rebaseline_test_internal_with_port_that_lacks_buildbot(self):
+        self.tool.executive = MockExecutive2()
+
+        # FIXME: it's confusing that this is the test- port, and not the regular win port. Really all of the tests should be using the test ports.
+        port = self.tool.port_factory.get('test-win-vista')
+        self._write(port._filesystem.join(port.layout_tests_dir(), 'platform/test-win-vista/failures/expected/image-expected.txt'), 'original vista result')
+
+        old_exact_matches = builders._exact_matches
+        oc = OutputCapture()
+        try:
+            builders._exact_matches = {
+                "MOCK XP": {"port_name": "test-win-xp"},
+                "MOCK Vista": {"port_name": "test-win-vista"},
+            }
+
+            options = MockOptions(optimize=True, builder="MOCK Vista", suffixes="txt",
+                move_overwritten_baselines_to=None, verbose=True, test="failures/expected/image.html",
+                results_directory=None)
+
+            oc.capture_output()
+            self.command.execute(options, [], self.tool)
+        finally:
+            out, _, _ = oc.restore_output()
+            builders._exact_matches = old_exact_matches
+
+        self.assertMultiLineEqual(self._read(self.tool.filesystem.join(port.layout_tests_dir(), 'platform/test-win-vista/failures/expected/image-expected.txt')), 'MOCK Web result, convert 404 to None=True')
+        self.assertFalse(self.tool.filesystem.exists(self.tool.filesystem.join(port.layout_tests_dir(), 'platform/test-win-xp/failures/expected/image-expected.txt')))
+        self.assertMultiLineEqual(out, '{"add": [], "remove-lines": [{"test": "failures/expected/image.html", "builder": "MOCK Vista"}]}\n')
 
 
 class TestRebaselineJson(_BaseTestCase):
@@ -285,6 +347,46 @@
         self.assertEqual(self.tool.executive.calls,
             [[['echo', 'rebaseline-test-internal', '--suffixes', 'txt,png', '--builder', 'MOCK builder', '--test', 'user-scripts/another-test.html', '--results-directory', '/tmp', '--verbose']]])
 
+class TestRebaselineJsonUpdatesExpectationsFiles(_BaseTestCase):
+    command_constructor = RebaselineJson
+
+    def setUp(self):
+        super(TestRebaselineJsonUpdatesExpectationsFiles, self).setUp()
+        self.tool.executive = MockExecutive2()
+
+        def mock_run_command(args,
+                             cwd=None,
+                             input=None,
+                             error_handler=None,
+                             return_exit_code=False,
+                             return_stderr=True,
+                             decode_output=False,
+                             env=None):
+            return '{"add": [], "remove-lines": [{"test": "userscripts/another-test.html", "builder": "WebKit Mac10.7"}]}\n'
+        self.tool.executive.run_command = mock_run_command
+
+    def test_rebaseline_updates_expectations_file(self):
+        options = MockOptions(optimize=False, verbose=True, move_overwritten_baselines=False, results_directory=None)
+
+        self._write(self.lion_expectations_path, "Bug(x) [ Mac ] userscripts/another-test.html [ ImageOnlyFailure ]\nbug(z) [ Linux ] userscripts/another-test.html [ ImageOnlyFailure ]\n")
+        self._write("userscripts/another-test.html", "Dummy test contents")
+
+        self.command._rebaseline(options,  {"userscripts/another-test.html": {"WebKit Mac10.7": ["txt", "png"]}})
+
+        new_expectations = self._read(self.lion_expectations_path)
+        self.assertMultiLineEqual(new_expectations, "Bug(x) [ MountainLion SnowLeopard ] userscripts/another-test.html [ ImageOnlyFailure ]\nbug(z) [ Linux ] userscripts/another-test.html [ ImageOnlyFailure ]\n")
+
+    def test_rebaseline_updates_expectations_file_all_platforms(self):
+        options = MockOptions(optimize=False, verbose=True, move_overwritten_baselines=False, results_directory=None)
+
+        self._write(self.lion_expectations_path, "Bug(x) userscripts/another-test.html [ ImageOnlyFailure ]\n")
+        self._write("userscripts/another-test.html", "Dummy test contents")
+
+        self.command._rebaseline(options,  {"userscripts/another-test.html": {"WebKit Mac10.7": ["txt", "png"]}})
+
+        new_expectations = self._read(self.lion_expectations_path)
+        self.assertMultiLineEqual(new_expectations, "Bug(x) [ Linux MountainLion SnowLeopard Win ] userscripts/another-test.html [ ImageOnlyFailure ]\n")
+
 
 class TestRebaseline(_BaseTestCase):
     # This command shares most of its logic with RebaselineJson, so these tests just test what is different.
@@ -337,7 +439,7 @@
         # FIXME: change this to use the test- ports.
         calls = filter(lambda x: x != ['qmake', '-v'], self.tool.executive.calls)
         self.assertEqual(len(calls), 1)
-        self.assertEqual(len(calls[0]), 36)
+        self.assertEqual(len(calls[0]), 14)
 
     def test_rebaseline_expectations_noop(self):
         self._zero_out_test_expectations()
diff --git a/Tools/Scripts/webkitpy/tool/commands/sheriffbot.py b/Tools/Scripts/webkitpy/tool/commands/sheriffbot.py
deleted file mode 100644
index 0f91be3..0000000
--- a/Tools/Scripts/webkitpy/tool/commands/sheriffbot.py
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright (c) 2009 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-# 
-#     * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#     * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-# 
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import logging
-
-from webkitpy.tool.bot.sheriff import Sheriff
-from webkitpy.tool.bot.irc_command import commands as irc_commands
-from webkitpy.tool.bot.ircbot import IRCBot
-from webkitpy.tool.commands.queues import AbstractQueue
-from webkitpy.tool.commands.stepsequence import StepSequenceErrorHandler
-
-_log = logging.getLogger(__name__)
-
-
-class SheriffBot(AbstractQueue, StepSequenceErrorHandler):
-    name = "sheriff-bot"
-    watchers = AbstractQueue.watchers + [
-        "abarth@webkit.org",
-        "eric@webkit.org",
-    ]
-
-    # AbstractQueue methods
-
-    def begin_work_queue(self):
-        AbstractQueue.begin_work_queue(self)
-        self._sheriff = Sheriff(self._tool, self)
-        self._irc_bot = IRCBot("sheriffbot", self._tool, self._sheriff, irc_commands)
-        self._tool.ensure_irc_connected(self._irc_bot.irc_delegate())
-
-    def work_item_log_path(self, failure_map):
-        return None
-
-    def _is_old_failure(self, revision):
-        return self._tool.status_server.svn_revision(revision)
-
-    def next_work_item(self):
-        self._irc_bot.process_pending_messages()
-        return
-
-    def process_work_item(self, failure_map):
-        return True
-
-    def handle_unexpected_error(self, failure_map, message):
-        _log.error(message)
-
-    # StepSequenceErrorHandler methods
-
-    @classmethod
-    def handle_script_error(cls, tool, state, script_error):
-        # Ideally we would post some information to IRC about what went wrong
-        # here, but we don't have the IRC password in the child process.
-        pass
diff --git a/Tools/Scripts/webkitpy/tool/commands/sheriffbot_unittest.py b/Tools/Scripts/webkitpy/tool/commands/sheriffbot_unittest.py
deleted file mode 100644
index bed8c74..0000000
--- a/Tools/Scripts/webkitpy/tool/commands/sheriffbot_unittest.py
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright (C) 2010 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#    * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#    * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#    * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-from webkitpy.tool.commands.queuestest import QueuesTest, MockQueueEngine
-from webkitpy.tool.commands import SheriffBot
-from webkitpy.tool.mocktool import MockTool, MockOptions
-from webkitpy.tool.bot.irc_command import Rollout, Sheriffs
-
-
-class SheriffBotTest(QueuesTest):
-    def test_command_aliases(self):
-        tool = MockTool()
-        options = MockOptions()
-        options.ensure_value("confirm", False)
-        options.ensure_value("seconds_to_sleep", 120)
-        sheriffbot = SheriffBot()
-        sheriffbot.execute(options, [], tool, MockQueueEngine)
-        sheriffbot.begin_work_queue()
-        irc_bot = sheriffbot._irc_bot
-        # Test Rollout command aliases
-        revert_command, args = irc_bot._parse_command_and_args("revert")
-        self.assertEqual(revert_command, Rollout)
-        # Test Sheriffs command aliases
-        gardeners_command, args = irc_bot._parse_command_and_args("gardeners")
-        self.assertEqual(gardeners_command, Sheriffs)
-        sherifs_command, args = irc_bot._parse_command_and_args("sherifs")
-        self.assertEqual(sherifs_command, Sheriffs)
-        sherrifs_command, args = irc_bot._parse_command_and_args("sherrifs")
-        self.assertEqual(sherrifs_command, Sheriffs)
-        sherriffs_command, args = irc_bot._parse_command_and_args("sherriffs")
-        self.assertEqual(sherriffs_command, Sheriffs)
diff --git a/Tools/Scripts/webkitpy/tool/main.py b/Tools/Scripts/webkitpy/tool/main.py
index 3fa6e6b..c1f5289 100644
--- a/Tools/Scripts/webkitpy/tool/main.py
+++ b/Tools/Scripts/webkitpy/tool/main.py
@@ -35,7 +35,6 @@
 
 from webkitpy.common.config.ports import DeprecatedPort
 from webkitpy.common.host import Host
-from webkitpy.common.net.irc import ircproxy
 from webkitpy.common.net.statusserver import StatusServer
 from webkitpy.tool.multicommandtool import MultiCommandTool
 from webkitpy.tool import commands
@@ -47,7 +46,6 @@
         make_option("-d", "--directory", action="append", dest="patch_directories", default=[], help="Directory to look at for changed files"),
         make_option("--status-host", action="store", dest="status_host", type="string", help="Hostname (e.g. localhost or commit.webkit.org) where status updates should be posted."),
         make_option("--bot-id", action="store", dest="bot_id", type="string", help="Identifier for this bot (if multiple bots are running for a queue)"),
-        make_option("--irc-password", action="store", dest="irc_password", type="string", help="Password to use when communicating via IRC."),
         make_option("--seconds-to-sleep", action="store", default=120, type="int", help="Number of seconds to sleep in the task queue."),
         make_option("--port", action="store", dest="port", default=None, help="Specify a port (e.g., mac, qt, gtk, ...)."),
     ]
@@ -59,7 +57,6 @@
         self.status_server = StatusServer()
 
         self.wakeup_event = threading.Event()
-        self._irc = None
         self._deprecated_port = None
 
     def deprecated_port(self):
@@ -68,20 +65,6 @@
     def path(self):
         return self._path
 
-    def ensure_irc_connected(self, irc_delegate):
-        if not self._irc:
-            self._irc = ircproxy.IRCProxy(irc_delegate)
-
-    def irc(self):
-        # We don't automatically construct IRCProxy here because constructing
-        # IRCProxy actually connects to IRC.  We want clients to explicitly
-        # connect to IRC.
-        return self._irc
-
-    def command_completed(self):
-        if self._irc:
-            self._irc.disconnect()
-
     def should_show_in_main_help(self, command):
         if not command.show_in_main_help:
             return False
@@ -96,8 +79,6 @@
             self.status_server.set_host(options.status_host)
         if options.bot_id:
             self.status_server.set_bot_id(options.bot_id)
-        if options.irc_password:
-            self.irc_password = options.irc_password
         # If options.port is None, we'll get the default port for this platform.
         self._deprecated_port = DeprecatedPort.port(options.port)
 
diff --git a/Tools/Scripts/webkitpy/tool/mocktool.py b/Tools/Scripts/webkitpy/tool/mocktool.py
index 8afaea9..71b8513 100644
--- a/Tools/Scripts/webkitpy/tool/mocktool.py
+++ b/Tools/Scripts/webkitpy/tool/mocktool.py
@@ -31,7 +31,6 @@
 from webkitpy.common.host_mock import MockHost
 from webkitpy.common.net.buildbot.buildbot_mock import MockBuildBot
 from webkitpy.common.net.statusserver_mock import MockStatusServer
-from webkitpy.common.net.irc.irc_mock import MockIRC
 
 # FIXME: Old-style "Ports" need to die and be replaced by modern layout_tests.port which needs to move to common.
 from webkitpy.common.config.ports_mock import MockPort
@@ -67,8 +66,6 @@
         self._deprecated_port = MockPort()
         self.status_server = MockStatusServer()
 
-        self._irc = None
-        self.irc_password = "MOCK irc password"
         self.wakeup_event = threading.Event()
 
     def deprecated_port(self):
@@ -77,12 +74,5 @@
     def path(self):
         return "echo"
 
-    def ensure_irc_connected(self, delegate):
-        if not self._irc:
-            self._irc = MockIRC()
-
-    def irc(self):
-        return self._irc
-
     def buildbot_for_builder_name(self, name):
         return MockBuildBot()
diff --git a/Tools/Scripts/webkitpy/tool/servers/gardeningserver.py b/Tools/Scripts/webkitpy/tool/servers/gardeningserver.py
index 6d29f44..0a5713c 100644
--- a/Tools/Scripts/webkitpy/tool/servers/gardeningserver.py
+++ b/Tools/Scripts/webkitpy/tool/servers/gardeningserver.py
@@ -27,6 +27,7 @@
 import logging
 import json
 import os
+import re
 import sys
 import urllib
 
@@ -52,6 +53,12 @@
 
 
 class GardeningHTTPRequestHandler(ReflectionHandler):
+    REVISION_LIMIT = 100
+    BLINK_SVN_URL = 'http://src.chromium.org/blink/trunk'
+    CHROMIUM_SVN_DEPS_URL = 'http://src.chromium.org/chrome/trunk/src/DEPS'
+    # "webkit_revision": "149598",
+    BLINK_REVISION_REGEXP = re.compile(r'^  "webkit_revision": "(?P<revision>\d+)",$', re.MULTILINE);
+
     STATIC_FILE_NAMES = frozenset()
 
     STATIC_FILE_EXTENSIONS = ('.js', '.css', '.html', '.gif', '.png', '.ico')
@@ -62,10 +69,7 @@
         '..',
         '..',
         '..',
-        'BuildSlaveSupport',
-        'build.webkit.org-config',
-        'public_html',
-        'TestFailures')
+        'GardeningServer')
 
     allow_cross_origin_requests = True
     debug_output = ''
@@ -80,6 +84,21 @@
         output, error = process.communicate()
         return (process.returncode, output, error)
 
+    def svnlog(self):
+        self._serve_xml(self.server.tool.executive.run_command(['svn', 'log', '--xml', '--limit', self.REVISION_LIMIT, self.BLINK_SVN_URL]))
+
+    def lastroll(self):
+        deps_contents = self.server.tool.executive.run_command(['svn', 'cat', self.CHROMIUM_SVN_DEPS_URL])
+        match = re.search(self.BLINK_REVISION_REGEXP, deps_contents)
+        if not match:
+            _log.error("Unable to produce last Blink roll revision")
+            self._serve_text("0")
+            return
+
+        revision_line = match.group()
+        revision = match.group("revision")
+        self._serve_text(revision)
+
     def rebaselineall(self):
         command = ['rebaseline-json']
         if self.server.options.move_overwritten_baselines:
diff --git a/Tools/Scripts/webkitpy/tool/servers/gardeningserver_unittest.py b/Tools/Scripts/webkitpy/tool/servers/gardeningserver_unittest.py
index 45bd4ee..e849bc7 100644
--- a/Tools/Scripts/webkitpy/tool/servers/gardeningserver_unittest.py
+++ b/Tools/Scripts/webkitpy/tool/servers/gardeningserver_unittest.py
@@ -48,15 +48,15 @@
         return host.port_factory.get("test-win-xp")
 
     @classmethod
-    def path_to_test_expectations_file(cls):
-        return cls.create().path_to_test_expectations_file()
+    def path_to_generic_test_expectations_file(cls):
+        return cls.create().path_to_generic_test_expectations_file()
 
 
 class MockServer(object):
     def __init__(self):
         self.tool = MockTool()
         self.tool.executive = MockExecutive(should_log=True)
-        self.tool.filesystem.files[TestPortFactory.path_to_test_expectations_file()] = ""
+        self.tool.filesystem.files[TestPortFactory.path_to_generic_test_expectations_file()] = ""
 
 
 # The real GardeningHTTPRequestHandler has a constructor that's too hard to
@@ -82,6 +82,10 @@
         print json.dumps(json_object)
         print "== End JSON Response =="
 
+    def _serve_xml(self, xml):
+        print "== Begin XML Response =="
+        print xml
+        print "== End XML Response =="
 
 class GardeningServerTest(unittest.TestCase):
     def _post_to_path(self, path, body=None, expected_stderr=None, expected_stdout=None, server=None):
@@ -90,6 +94,26 @@
         handler.body = body
         OutputCapture().assert_outputs(self, handler.do_POST, expected_stderr=expected_stderr, expected_stdout=expected_stdout)
 
+    def test_svnlog(self):
+        expected_stderr = ''
+        expected_stdout = '== Begin XML Response ==\nMOCK output of child process\n== End XML Response ==\n'
+        self._post_to_path('/svnlog', expected_stderr=expected_stderr, expected_stdout=expected_stdout)
+
+    def test_lastroll(self):
+        expected_stderr = 'MOCK run_command: [\'svn\', \'cat\', \'http://src.chromium.org/chrome/trunk/src/DEPS\'], cwd=None, input=None\n'
+        expected_stdout = '== Begin Response ==\n1\n== End Response ==\n'
+        server = MockServer()
+
+        self.output = ['  "webkit_revision": "3",', 'lol']
+
+        def run_command(args, cwd=None, input=None, **kwargs):
+            print >> sys.stderr, "MOCK run_command: %s, cwd=%s, input=%s" % (args, cwd, input)
+            return self.output.pop(0)
+
+        server.tool.executive.run_command = run_command
+        self._post_to_path('/lastroll', expected_stderr=expected_stderr, expected_stdout='== Begin Response ==\n3\n== End Response ==\n', server=server)
+        self._post_to_path('/lastroll', expected_stderr=expected_stderr, expected_stdout='== Begin Response ==\n0\n== End Response ==\n', server=server)
+
     def disabled_test_rollout(self):
         expected_stderr = "MOCK run_command: ['echo', 'rollout', '--force-clean', '--non-interactive', '2314', 'MOCK rollout reason'], cwd=/mock-checkout\n"
         expected_stdout = "== Begin Response ==\nsuccess\n== End Response ==\n"
diff --git a/Tools/Scripts/webkitpy/tool/servers/reflectionhandler.py b/Tools/Scripts/webkitpy/tool/servers/reflectionhandler.py
index 954fb56..549b271 100644
--- a/Tools/Scripts/webkitpy/tool/servers/reflectionhandler.py
+++ b/Tools/Scripts/webkitpy/tool/servers/reflectionhandler.py
@@ -142,3 +142,11 @@
 
             if not headers_only:
                 shutil.copyfileobj(static_file, self.wfile)
+
+    def _serve_xml(self, xml):
+        self.send_response(200)
+        self._send_access_control_header()
+        self.send_header("Content-type", "text/xml")
+        self.end_headers()
+        xml = xml.encode('utf-8')
+        self.wfile.write(xml)
diff --git a/Tools/Scripts/webkitpy/tool/servers/reflectionhandler_unittest.py b/Tools/Scripts/webkitpy/tool/servers/reflectionhandler_unittest.py
index e1d5623..3ea9a28 100644
--- a/Tools/Scripts/webkitpy/tool/servers/reflectionhandler_unittest.py
+++ b/Tools/Scripts/webkitpy/tool/servers/reflectionhandler_unittest.py
@@ -52,6 +52,26 @@
         self.functions_run.add("some_html")
 
 
+class WriteConvertingLogger(object):
+    def __init__(self):
+        self.data = ''
+
+    def write(self, data):
+        # If data is still in ASCII, this will throw an exception.
+        self.data = str(data)
+
+
+class TestReflectionHandlerServeXML(ReflectionHandler):
+    def __init__(self):
+        self.requestline = False
+        self.client_address = '127.0.0.1'
+        self.request_version = '1'
+        self.wfile = WriteConvertingLogger()
+
+    def serve_xml(self, data):
+        self._serve_xml(data)
+
+
 class ReflectionHandlerTest(unittest.TestCase):
     def assert_handler_response(self, requests, expected_static_files, expected_errors, expected_functions):
         handler = TestReflectionHandler()
@@ -68,3 +88,9 @@
         self.assert_handler_response(["/test.js", "/test.exe", "/testhtml"], set(["test.js"]), set([404]), set())
         self.assert_handler_response(["/test.html", "/function.one"], set(["test.html"]), set(), set(['function_one']))
         self.assert_handler_response(["/some.html"], set(["some.html"]), set(), set())
+
+    def test_svn_log_non_ascii(self):
+        xmlChangelog = u'<?xml version="1.0"?>\n<log>\n<logentry revision="1">\n<msg>Patch from John Do\xe9.</msg>\n</logentry>\n</log>'
+        handler = TestReflectionHandlerServeXML()
+        handler.serve_xml(xmlChangelog)
+        self.assertEqual(handler.wfile.data, xmlChangelog.encode('utf-8'))
diff --git a/Tools/Scripts/webkitruby/PrettyPatch/PrettyPatch.rb b/Tools/Scripts/webkitruby/PrettyPatch/PrettyPatch.rb
new file mode 100644
index 0000000..7398888
--- /dev/null
+++ b/Tools/Scripts/webkitruby/PrettyPatch/PrettyPatch.rb
@@ -0,0 +1,1005 @@
+require 'cgi'
+require 'diff'
+require 'open3'
+require 'open-uri'
+require 'pp'
+require 'set'
+require 'tempfile'
+
+module PrettyPatch
+
+public
+
+    GIT_PATH = "git"
+
+    def self.prettify(string)
+        $last_prettify_file_count = -1
+        $last_prettify_part_count = { "remove" => 0, "add" => 0, "shared" => 0, "binary" => 0, "extract-error" => 0 }
+        string = normalize_line_ending(string)
+        str = "#{HEADER}<body>\n"
+
+        # Just look at the first line to see if it is an SVN revision number as added
+        # by webkit-patch for git checkouts.
+        $svn_revision = 0
+        string.each_line do |line|
+            match = /^Subversion\ Revision: (\d*)$/.match(line)
+            unless match.nil?
+                str << "<span class='revision'>#{match[1]}</span>\n"
+                $svn_revision = match[1].to_i;
+            end
+            break
+        end
+
+        fileDiffs = FileDiff.parse(string)
+
+        $last_prettify_file_count = fileDiffs.length
+        str << fileDiffs.collect{ |diff| diff.to_html }.join
+        str << "</body></html>"
+    end
+
+    def self.filename_from_diff_header(line)
+        DIFF_HEADER_FORMATS.each do |format|
+            match = format.match(line)
+            return match[1] unless match.nil?
+        end
+        nil
+    end
+
+    def self.diff_header?(line)
+        RELAXED_DIFF_HEADER_FORMATS.any? { |format| line =~ format }
+    end
+
+private
+    DIFF_HEADER_FORMATS = [
+        /^Index: (.*)\r?$/,
+        /^diff --git "?a\/.+"? "?b\/(.+)"?\r?$/,
+        /^\+\+\+ ([^\t]+)(\t.*)?\r?$/
+    ]
+
+    RELAXED_DIFF_HEADER_FORMATS = [
+        /^Index:/,
+        /^diff/
+    ]
+
+    BINARY_FILE_MARKER_FORMAT = /^Cannot display: file marked as a binary type.$/
+
+    IMAGE_FILE_MARKER_FORMAT = /^svn:mime-type = image\/png$/
+
+    GIT_INDEX_MARKER_FORMAT = /^index ([0-9a-f]{40})\.\.([0-9a-f]{40})/
+
+    GIT_BINARY_FILE_MARKER_FORMAT = /^GIT binary patch$/
+
+    GIT_BINARY_PATCH_FORMAT = /^(literal|delta) \d+$/
+
+    GIT_LITERAL_FORMAT = /^literal \d+$/
+
+    GIT_DELTA_FORMAT = /^delta \d+$/
+
+    START_OF_BINARY_DATA_FORMAT = /^[0-9a-zA-Z\+\/=]{20,}/ # Assume 20 chars without a space is base64 binary data.
+
+    START_OF_SECTION_FORMAT = /^@@ -(\d+)(?:,(\d+))? \+(\d+)(?:,(\d+))? @@\s*(.*)/
+
+    START_OF_EXTENT_STRING = "%c" % 0
+    END_OF_EXTENT_STRING = "%c" % 1
+
+    # We won't search for intra-line diffs in lines longer than this length, to avoid hangs. See <http://webkit.org/b/56109>.
+    MAXIMUM_INTRALINE_DIFF_LINE_LENGTH = 10000
+
+    SMALLEST_EQUAL_OPERATION = 3
+
+    OPENSOURCE_URL = "http://src.chromium.org/viewvc/blink/"
+
+    OPENSOURCE_DIRS = Set.new %w[
+        LayoutTests
+        PerformanceTests
+        Source
+        Tools
+    ]
+
+    IMAGE_CHECKSUM_ERROR = "INVALID: Image lacks a checksum. This will fail with a MISSING error in run-webkit-tests. Always generate new png files using run-webkit-tests."
+
+    def self.normalize_line_ending(s)
+        if RUBY_VERSION >= "1.9"
+            # Transliteration table from http://stackoverflow.com/a/6609998
+            transliteration_table = { '\xc2\x82' => ',',        # High code comma
+                                      '\xc2\x84' => ',,',       # High code double comma
+                                      '\xc2\x85' => '...',      # Tripple dot
+                                      '\xc2\x88' => '^',        # High carat
+                                      '\xc2\x91' => '\x27',     # Forward single quote
+                                      '\xc2\x92' => '\x27',     # Reverse single quote
+                                      '\xc2\x93' => '\x22',     # Forward double quote
+                                      '\xc2\x94' => '\x22',     # Reverse double quote
+                                      '\xc2\x95' => ' ',
+                                      '\xc2\x96' => '-',        # High hyphen
+                                      '\xc2\x97' => '--',       # Double hyphen
+                                      '\xc2\x99' => ' ',
+                                      '\xc2\xa0' => ' ',
+                                      '\xc2\xa6' => '|',        # Split vertical bar
+                                      '\xc2\xab' => '<<',       # Double less than
+                                      '\xc2\xbb' => '>>',       # Double greater than
+                                      '\xc2\xbc' => '1/4',      # one quarter
+                                      '\xc2\xbd' => '1/2',      # one half
+                                      '\xc2\xbe' => '3/4',      # three quarters
+                                      '\xca\xbf' => '\x27',     # c-single quote
+                                      '\xcc\xa8' => '',         # modifier - under curve
+                                      '\xcc\xb1' => ''          # modifier - under line
+                                   }
+            encoded_string = s.force_encoding('UTF-8').encode('UTF-16', :invalid => :replace, :replace => '', :fallback => transliteration_table).encode('UTF-8')
+            encoded_string.gsub /\r\n?/, "\n"
+        else
+            s.gsub /\r\n?/, "\n"
+        end
+    end
+
+    def self.find_url_and_path(file_path)
+        # Search file_path from the bottom up, at each level checking whether
+        # we've found a directory we know exists in the source tree.
+
+        dirname, basename = File.split(file_path)
+        dirname.split(/\//).reverse.inject(basename) do |path, directory|
+            path = directory + "/" + path
+
+            return [OPENSOURCE_URL, path] if OPENSOURCE_DIRS.include?(directory)
+
+            path
+        end
+
+        [nil, file_path]
+    end
+
+    def self.linkifyFilename(filename)
+        url, pathBeneathTrunk = find_url_and_path(filename)
+
+        url.nil? ? filename : "<a href='#{url}trunk/#{pathBeneathTrunk}'>#{filename}</a>"
+    end
+
+
+    HEADER =<<EOF
+<html>
+<head>
+<style>
+:link, :visited {
+    text-decoration: none;
+    border-bottom: 1px dotted;
+}
+
+:link {
+    color: #039;
+}
+
+.FileDiff {
+    background-color: #f8f8f8;
+    border: 1px solid #ddd;
+    font-family: monospace;
+    margin: 1em 0;
+    position: relative;
+}
+
+h1 {
+    color: #333;
+    font-family: sans-serif;
+    font-size: 1em;
+    margin-left: 0.5em;
+    display: table-cell;
+    width: 100%;
+    padding: 0.5em;
+}
+
+h1 :link, h1 :visited {
+    color: inherit;
+}
+
+h1 :hover {
+    color: #555;
+    background-color: #eee;
+}
+
+.DiffLinks {
+    float: right;
+}
+
+.FileDiffLinkContainer {
+    opacity: 0;
+    display: table-cell;
+    padding-right: 0.5em;
+    white-space: nowrap;
+}
+
+.DiffSection {
+    background-color: white;
+    border: solid #ddd;
+    border-width: 1px 0px;
+}
+
+.ExpansionLine, .LineContainer {
+    white-space: nowrap;
+}
+
+.sidebyside .DiffBlockPart.add:first-child {
+    float: right;
+}
+
+.LineSide,
+.sidebyside .DiffBlockPart.remove,
+.sidebyside .DiffBlockPart.add {
+    display:inline-block;
+    width: 50%;
+    vertical-align: top;
+}
+
+.sidebyside .resizeHandle {
+    width: 5px;
+    height: 100%;
+    cursor: move;
+    position: absolute;
+    top: 0;
+    left: 50%;
+}
+
+.sidebyside .resizeHandle:hover {
+    background-color: grey;
+    opacity: 0.5;
+}
+
+.sidebyside .DiffBlockPart.remove .to,
+.sidebyside .DiffBlockPart.add .from {
+    display: none;
+}
+
+.lineNumber, .expansionLineNumber {
+    border-bottom: 1px solid #998;
+    border-right: 1px solid #ddd;
+    color: #444;
+    display: inline-block;
+    padding: 1px 5px 0px 0px;
+    text-align: right;
+    vertical-align: bottom;
+    width: 3em;
+}
+
+.lineNumber {
+  background-color: #eed;
+}
+
+.expansionLineNumber {
+  background-color: #eee;
+}
+
+.text {
+    padding-left: 5px;
+    white-space: pre-wrap;
+    word-wrap: break-word;
+}
+
+.image {
+    border: 2px solid black;
+}
+
+.context, .context .lineNumber {
+    color: #849;
+    background-color: #fef;
+}
+
+.Line.add, .FileDiff .add {
+    background-color: #dfd;
+}
+
+.Line.add ins {
+    background-color: #9e9;
+    text-decoration: none;
+}
+
+.Line.remove, .FileDiff .remove {
+    background-color: #fdd;
+}
+
+.Line.remove del {
+    background-color: #e99;
+    text-decoration: none;
+}
+
+/* Support for inline comments */
+
+.author {
+  font-style: italic;
+}
+
+.comment {
+  position: relative;
+}
+
+.comment textarea {
+  height: 6em;
+}
+
+.overallComments textarea {
+  height: 2em;
+  max-width: 100%;
+  min-width: 200px;
+}
+
+.comment textarea, .overallComments textarea {
+  display: block;
+  width: 100%;
+}
+
+.overallComments .open {
+  -webkit-transition: height .2s;
+  height: 4em;
+}
+
+#statusBubbleContainer.wrap {
+  display: block;
+}
+
+#toolbar {
+  display: -webkit-flex;
+  display: -moz-flex;
+  padding: 3px;
+  left: 0;
+  right: 0;
+  border: 1px solid #ddd;
+  background-color: #eee;
+  font-family: sans-serif;
+  position: fixed;
+  bottom: 0;
+}
+
+#toolbar .actions {
+  float: right;
+}
+
+.winter {
+  position: fixed;
+  z-index: 5;
+  left: 0;
+  right: 0;
+  top: 0;
+  bottom: 0;
+  background-color: black;
+  opacity: 0.8;
+}
+
+.inactive {
+  display: none;
+}
+
+.lightbox {
+  position: fixed;
+  z-index: 6;
+  left: 10%;
+  right: 10%;
+  top: 10%;
+  bottom: 10%;
+  background: white;
+}
+
+.lightbox iframe {
+  width: 100%;
+  height: 100%;
+}
+
+.commentContext .lineNumber {
+  background-color: yellow;
+}
+
+.selected .lineNumber {
+  background-color: #69F;
+  border-bottom-color: #69F;
+  border-right-color: #69F;
+}
+
+.ExpandLinkContainer {
+  opacity: 0;
+  border-top: 1px solid #ddd;
+  border-bottom: 1px solid #ddd;
+}
+
+.ExpandArea {
+  margin: 0;
+}
+
+.ExpandText {
+  margin-left: 0.67em;
+}
+
+.LinkContainer {
+  font-family: sans-serif;
+  font-size: small;
+  font-style: normal;
+  -webkit-transition: opacity 0.5s;
+}
+
+.LinkContainer a {
+  border: 0;
+}
+
+.LinkContainer label:after,
+.LinkContainer a:after {
+  content: " | ";
+  color: black;
+}
+
+.LinkContainer a:last-of-type:after {
+  content: "";
+}
+
+.LinkContainer label {
+  color: #039;
+}
+
+.help {
+ color: gray;
+ font-style: italic;
+}
+
+#message {
+  font-size: small;
+  font-family: sans-serif;
+}
+
+.commentStatus {
+  font-style: italic;
+}
+
+.comment, .previousComment, .frozenComment {
+  background-color: #ffd;
+}
+
+.overallComments {
+  -webkit-flex: 1;
+  -moz-flex: 1;
+  margin-right: 3px;
+}
+
+.previousComment, .frozenComment {
+  border: inset 1px;
+  padding: 5px;
+  white-space: pre-wrap;
+}
+
+.comment button {
+  width: 6em;
+}
+
+div:focus {
+  outline: 1px solid blue;
+  outline-offset: -1px;
+}
+
+.statusBubble {
+  /* The width/height get set to the bubble contents via postMessage on browsers that support it. */
+  width: 450px;
+  height: 20px;
+  margin: 2px 2px 0 0;
+  border: none;
+  vertical-align: middle;
+}
+
+.revision {
+  display: none;
+}
+
+.autosave-state {
+  position: absolute;
+  right: 0;
+  top: -1.3em;
+  padding: 0 3px;
+  outline: 1px solid #DDD;
+  color: #8FDF5F;
+  font-size: small;   
+  background-color: #EEE;
+}
+
+.autosave-state:empty {
+  outline: 0px;
+}
+.autosave-state.saving {
+  color: #E98080;
+}
+
+.clear_float {
+    clear: both;
+}
+</style>
+</head>
+EOF
+
+    def self.revisionOrDescription(string)
+        case string
+        when /\(revision \d+\)/
+            /\(revision (\d+)\)/.match(string)[1]
+        when /\(.*\)/
+            /\((.*)\)/.match(string)[1]
+        end
+    end
+
+    def self.has_image_suffix(filename)
+        filename =~ /\.(png|jpg|gif)$/
+    end
+
+    class FileDiff
+        def initialize(lines)
+            @filename = PrettyPatch.filename_from_diff_header(lines[0].chomp)
+            startOfSections = 1
+            for i in 0...lines.length
+                case lines[i]
+                when /^--- /
+                    @from = PrettyPatch.revisionOrDescription(lines[i])
+                when /^\+\+\+ /
+                    @filename = PrettyPatch.filename_from_diff_header(lines[i].chomp) if @filename.nil?
+                    @to = PrettyPatch.revisionOrDescription(lines[i])
+                    startOfSections = i + 1
+                    break
+                when BINARY_FILE_MARKER_FORMAT
+                    @binary = true
+                    if (IMAGE_FILE_MARKER_FORMAT.match(lines[i + 1]) or PrettyPatch.has_image_suffix(@filename)) then
+                        @image = true
+                        startOfSections = i + 2
+                        for x in startOfSections...lines.length
+                            # Binary diffs often have property changes listed before the actual binary data.  Skip them.
+                            if START_OF_BINARY_DATA_FORMAT.match(lines[x]) then
+                                startOfSections = x
+                                break
+                            end
+                        end
+                    end
+                    break
+                when GIT_INDEX_MARKER_FORMAT
+                    @git_indexes = [$1, $2]
+                when GIT_BINARY_FILE_MARKER_FORMAT
+                    @binary = true
+                    if (GIT_BINARY_PATCH_FORMAT.match(lines[i + 1]) and PrettyPatch.has_image_suffix(@filename)) then
+                        @git_image = true
+                        startOfSections = i + 1
+                    end
+                    break
+                end
+            end
+            lines_with_contents = lines[startOfSections...lines.length]
+            @sections = DiffSection.parse(lines_with_contents) unless @binary
+            if @image and not lines_with_contents.empty?
+                @image_url = "data:image/png;base64," + lines_with_contents.join
+                @image_checksum = FileDiff.read_checksum_from_png(lines_with_contents.join.unpack("m").join)
+            elsif @git_image
+                begin
+                    raise "index line is missing" unless @git_indexes
+
+                    chunks = nil
+                    for i in 0...lines_with_contents.length
+                        if lines_with_contents[i] =~ /^$/
+                            chunks = [lines_with_contents[i + 1 .. -1], lines_with_contents[0 .. i]]
+                            break
+                        end
+                    end
+
+                    raise "no binary chunks" unless chunks
+
+                    from_filepath = FileDiff.extract_contents_of_from_revision(@filename, chunks[0], @git_indexes[0])
+                    to_filepath = FileDiff.extract_contents_of_to_revision(@filename, chunks[1], @git_indexes[1], from_filepath, @git_indexes[0])
+                    filepaths = from_filepath, to_filepath
+
+                    binary_contents = filepaths.collect { |filepath| File.exists?(filepath) ? File.read(filepath) : nil }
+                    @image_urls = binary_contents.collect { |content| (content and not content.empty?) ? "data:image/png;base64," + [content].pack("m") : nil }
+                    @image_checksums = binary_contents.collect { |content| FileDiff.read_checksum_from_png(content) }
+                rescue
+                    $last_prettify_part_count["extract-error"] += 1
+                    @image_error = "Exception raised during decoding git binary patch:<pre>#{CGI.escapeHTML($!.to_s + "\n" + $!.backtrace.join("\n"))}</pre>"
+                ensure
+                    File.unlink(from_filepath) if (from_filepath and File.exists?(from_filepath))
+                    File.unlink(to_filepath) if (to_filepath and File.exists?(to_filepath))
+                end
+            end
+            nil
+        end
+
+        def image_to_html
+            if not @image_url then
+                return "<span class='text'>Image file removed</span>"
+            end
+
+            image_checksum = ""
+            if @image_checksum
+                image_checksum = @image_checksum
+            elsif @filename.include? "-expected.png" and @image_url
+                image_checksum = IMAGE_CHECKSUM_ERROR
+            end
+
+            return "<p>" + image_checksum + "</p><img class='image' src='" + @image_url + "' />"
+        end
+
+        def to_html
+            str = "<div class='FileDiff'>\n"
+            str += "<h1>#{PrettyPatch.linkifyFilename(@filename)}</h1>\n"
+            if @image then
+                str += self.image_to_html
+            elsif @git_image then
+                if @image_error
+                    str += @image_error
+                else
+                    for i in (0...2)
+                        image_url = @image_urls[i]
+                        image_checksum = @image_checksums[i]
+
+                        style = ["remove", "add"][i]
+                        str += "<p class=\"#{style}\">"
+
+                        if image_checksum
+                            str += image_checksum
+                        elsif @filename.include? "-expected.png" and image_url
+                            str += IMAGE_CHECKSUM_ERROR
+                        end
+
+                        str += "<br>"
+
+                        if image_url
+                            str += "<img class='image' src='" + image_url + "' />"
+                        else
+                            str += ["</p>Added", "</p>Removed"][i]
+                        end
+                    end
+                end
+            elsif @binary then
+                $last_prettify_part_count["binary"] += 1
+                str += "<span class='text'>Binary file, nothing to see here</span>"
+            else
+                str += @sections.collect{ |section| section.to_html }.join("<br>\n") unless @sections.nil?
+            end
+
+            if @from then
+                str += "<span class='revision'>" + @from + "</span>"
+            end
+
+            str += "</div>\n"
+        end
+
+        def self.parse(string)
+            haveSeenDiffHeader = false
+            linesForDiffs = []
+            string.each_line do |line|
+                if (PrettyPatch.diff_header?(line))
+                    linesForDiffs << []
+                    haveSeenDiffHeader = true
+                elsif (!haveSeenDiffHeader && line =~ /^--- /)
+                    linesForDiffs << []
+                    haveSeenDiffHeader = false
+                end
+                linesForDiffs.last << line unless linesForDiffs.last.nil?
+            end
+
+            linesForDiffs.collect { |lines| FileDiff.new(lines) }
+        end
+
+        def self.read_checksum_from_png(png_bytes)
+            # Ruby 1.9 added the concept of string encodings, so to avoid treating binary data as UTF-8,
+            # we can force the encoding to binary at this point.
+            if RUBY_VERSION >= "1.9"
+                png_bytes.force_encoding('binary')
+            end
+            match = png_bytes && png_bytes.match(/tEXtchecksum\0([a-fA-F0-9]{32})/)
+            match ? match[1] : nil
+        end
+
+        def self.git_new_file_binary_patch(filename, encoded_chunk, git_index)
+            return <<END
+diff --git a/#{filename} b/#{filename}
+new file mode 100644
+index 0000000000000000000000000000000000000000..#{git_index}
+GIT binary patch
+#{encoded_chunk.join("")}literal 0
+HcmV?d00001
+
+END
+        end
+
+        def self.git_changed_file_binary_patch(to_filename, from_filename, encoded_chunk, to_git_index, from_git_index)
+            return <<END
+diff --git a/#{from_filename} b/#{to_filename}
+copy from #{from_filename}
++++ b/#{to_filename}
+index #{from_git_index}..#{to_git_index}
+GIT binary patch
+#{encoded_chunk.join("")}literal 0
+HcmV?d00001
+
+END
+        end
+
+        def self.get_svn_uri(repository_path)
+            "http://src.chromium.org/blink/trunk/" + (repository_path) + "?p=" + $svn_revision.to_s
+        end
+
+        def self.get_new_temp_filepath_and_name
+            tempfile = Tempfile.new("PrettyPatch")
+            filepath = tempfile.path + '.bin'
+            filename = File.basename(filepath)
+            return filepath, filename
+        end
+
+        def self.download_from_revision_from_svn(repository_path)
+            filepath, filename = get_new_temp_filepath_and_name
+            svn_uri = get_svn_uri(repository_path)
+            open(filepath, 'wb') do |to_file|
+                to_file << open(svn_uri) { |from_file| from_file.read }
+            end
+            return filepath
+        end
+
+        def self.run_git_apply_on_patch(output_filepath, patch)
+            # Apply the git binary patch using git-apply.
+            cmd = GIT_PATH + " apply --directory=" + File.dirname(output_filepath)
+            stdin, stdout, stderr = *Open3.popen3(cmd)
+            begin
+                stdin.puts(patch)
+                stdin.close
+
+                error = stderr.read
+                if error != ""
+                    error = "Error running " + cmd + "\n" + "with patch:\n" + patch[0..500] + "...\n" + error
+                end
+                raise error if error != ""
+            ensure
+                stdin.close unless stdin.closed?
+                stdout.close
+                stderr.close
+            end
+        end
+
+        def self.extract_contents_from_git_binary_literal_chunk(encoded_chunk, git_index)
+            filepath, filename = get_new_temp_filepath_and_name
+            patch = FileDiff.git_new_file_binary_patch(filename, encoded_chunk, git_index)
+            run_git_apply_on_patch(filepath, patch)
+            return filepath
+        end
+
+        def self.extract_contents_from_git_binary_delta_chunk(from_filepath, from_git_index, encoded_chunk, to_git_index)
+            to_filepath, to_filename = get_new_temp_filepath_and_name
+            from_filename = File.basename(from_filepath)
+            patch = FileDiff.git_changed_file_binary_patch(to_filename, from_filename, encoded_chunk, to_git_index, from_git_index)
+            run_git_apply_on_patch(to_filepath, patch)
+            return to_filepath
+        end
+
+        def self.extract_contents_of_from_revision(repository_path, encoded_chunk, git_index)
+            # For literal encoded, simply reconstruct.
+            if GIT_LITERAL_FORMAT.match(encoded_chunk[0])
+                return extract_contents_from_git_binary_literal_chunk(encoded_chunk, git_index)
+            end
+            #  For delta encoded, download from svn.
+            if GIT_DELTA_FORMAT.match(encoded_chunk[0])
+                return download_from_revision_from_svn(repository_path)
+            end
+            raise "Error: unknown git patch encoding"
+        end
+
+        def self.extract_contents_of_to_revision(repository_path, encoded_chunk, git_index, from_filepath, from_git_index)
+            # For literal encoded, simply reconstruct.
+            if GIT_LITERAL_FORMAT.match(encoded_chunk[0])
+                return extract_contents_from_git_binary_literal_chunk(encoded_chunk, git_index)
+            end
+            # For delta encoded, reconstruct using delta and previously constructed 'from' revision.
+            if GIT_DELTA_FORMAT.match(encoded_chunk[0])
+                return extract_contents_from_git_binary_delta_chunk(from_filepath, from_git_index, encoded_chunk, git_index)
+            end
+            raise "Error: unknown git patch encoding"
+        end
+    end
+
+    class DiffBlock
+        attr_accessor :parts
+
+        def initialize(container)
+            @parts = []
+            container << self
+        end
+
+        def to_html
+            str = "<div class='DiffBlock'>\n"
+            str += @parts.collect{ |part| part.to_html }.join
+            str += "<div class='clear_float'></div></div>\n"
+        end
+    end
+
+    class DiffBlockPart
+        attr_reader :className
+        attr :lines
+
+        def initialize(className, container)
+            $last_prettify_part_count[className] += 1
+            @className = className
+            @lines = []
+            container.parts << self
+        end
+
+        def to_html
+            str = "<div class='DiffBlockPart %s'>\n" % @className
+            str += @lines.collect{ |line| line.to_html }.join
+            # Don't put white-space after this so adjacent inline-block DiffBlockParts will not wrap.
+            str += "</div>"
+        end
+    end
+
+    class DiffSection
+        def initialize(lines)
+            lines.length >= 1 or raise "DiffSection.parse only received %d lines" % lines.length
+
+            matches = START_OF_SECTION_FORMAT.match(lines[0])
+
+            if matches
+                from, to = [matches[1].to_i, matches[3].to_i]
+                if matches[2] and matches[4]
+                    from_end = from + matches[2].to_i
+                    to_end = to + matches[4].to_i
+                end
+            end
+
+            @blocks = []
+            diff_block = nil
+            diff_block_part = nil
+
+            for line in lines[1...lines.length]
+                startOfLine = line =~ /^[-\+ ]/ ? 1 : 0
+                text = line[startOfLine...line.length].chomp
+                case line[0]
+                when ?-
+                    if (diff_block_part.nil? or diff_block_part.className != 'remove')
+                        diff_block = DiffBlock.new(@blocks)
+                        diff_block_part = DiffBlockPart.new('remove', diff_block)
+                    end
+
+                    diff_block_part.lines << CodeLine.new(from, nil, text)
+                    from += 1 unless from.nil?
+                when ?+
+                    if (diff_block_part.nil? or diff_block_part.className != 'add')
+                        # Put add lines that immediately follow remove lines into the same DiffBlock.
+                        if (diff_block.nil? or diff_block_part.className != 'remove')
+                            diff_block = DiffBlock.new(@blocks)
+                        end
+
+                        diff_block_part = DiffBlockPart.new('add', diff_block)
+                    end
+
+                    diff_block_part.lines << CodeLine.new(nil, to, text)
+                    to += 1 unless to.nil?
+                else
+                    if (diff_block_part.nil? or diff_block_part.className != 'shared')
+                        diff_block = DiffBlock.new(@blocks)
+                        diff_block_part = DiffBlockPart.new('shared', diff_block)
+                    end
+
+                    diff_block_part.lines << CodeLine.new(from, to, text)
+                    from += 1 unless from.nil?
+                    to += 1 unless to.nil?
+                end
+
+                break if from_end and to_end and from == from_end and to == to_end
+            end
+
+            changes = [ [ [], [] ] ]
+            for block in @blocks
+                for block_part in block.parts
+                    for line in block_part.lines
+                        if (!line.fromLineNumber.nil? and !line.toLineNumber.nil?) then
+                            changes << [ [], [] ]
+                            next
+                        end
+                        changes.last.first << line if line.toLineNumber.nil?
+                        changes.last.last << line if line.fromLineNumber.nil?
+                    end
+                end
+            end
+
+            for change in changes
+                next unless change.first.length == change.last.length
+                for i in (0...change.first.length)
+                    from_text = change.first[i].text
+                    to_text = change.last[i].text
+                    next if from_text.length > MAXIMUM_INTRALINE_DIFF_LINE_LENGTH or to_text.length > MAXIMUM_INTRALINE_DIFF_LINE_LENGTH
+                    raw_operations = HTMLDiff::DiffBuilder.new(from_text, to_text).operations
+                    operations = []
+                    back = 0
+                    raw_operations.each_with_index do |operation, j|
+                        if operation.action == :equal and j < raw_operations.length - 1
+                           length = operation.end_in_new - operation.start_in_new
+                           if length < SMALLEST_EQUAL_OPERATION
+                               back = length
+                               next
+                           end
+                        end
+                        operation.start_in_old -= back
+                        operation.start_in_new -= back
+                        back = 0
+                        operations << operation
+                    end
+                    change.first[i].operations = operations
+                    change.last[i].operations = operations
+                end
+            end
+
+            @blocks.unshift(ContextLine.new(matches[5])) unless matches.nil? || matches[5].empty?
+        end
+
+        def to_html
+            str = "<div class='DiffSection'>\n"
+            str += @blocks.collect{ |block| block.to_html }.join
+            str += "</div>\n"
+        end
+
+        def self.parse(lines)
+            linesForSections = lines.inject([[]]) do |sections, line|
+                sections << [] if line =~ /^@@/
+                sections.last << line
+                sections
+            end
+
+            linesForSections.delete_if { |lines| lines.nil? or lines.empty? }
+            linesForSections.collect { |lines| DiffSection.new(lines) }
+        end
+    end
+
+    class Line
+        attr_reader :fromLineNumber
+        attr_reader :toLineNumber
+        attr_reader :text
+
+        def initialize(from, to, text)
+            @fromLineNumber = from
+            @toLineNumber = to
+            @text = text
+        end
+
+        def text_as_html
+            CGI.escapeHTML(text)
+        end
+
+        def classes
+            lineClasses = ["Line", "LineContainer"]
+            lineClasses << ["add"] unless @toLineNumber.nil? or !@fromLineNumber.nil?
+            lineClasses << ["remove"] unless @fromLineNumber.nil? or !@toLineNumber.nil?
+            lineClasses
+        end
+
+        def to_html
+            markedUpText = self.text_as_html
+            str = "<div class='%s'>\n" % self.classes.join(' ')
+            str += "<span class='from lineNumber'>%s</span><span class='to lineNumber'>%s</span>" %
+                   [@fromLineNumber.nil? ? '&nbsp;' : @fromLineNumber,
+                    @toLineNumber.nil? ? '&nbsp;' : @toLineNumber] unless @fromLineNumber.nil? and @toLineNumber.nil?
+            str += "<span class='text'>%s</span>\n" % markedUpText
+            str += "</div>\n"
+        end
+    end
+
+    class CodeLine < Line
+        attr :operations, true
+
+        def text_as_html
+            html = []
+            tag = @fromLineNumber.nil? ? "ins" : "del"
+            if @operations.nil? or @operations.empty?
+                return CGI.escapeHTML(@text)
+            end
+            @operations.each do |operation|
+                start = @fromLineNumber.nil? ? operation.start_in_new : operation.start_in_old
+                eend = @fromLineNumber.nil? ? operation.end_in_new : operation.end_in_old
+                escaped_text = CGI.escapeHTML(@text[start...eend])
+                if eend - start === 0 or operation.action === :equal
+                    html << escaped_text
+                else
+                    html << "<#{tag}>#{escaped_text}</#{tag}>"
+                end
+            end
+            html.join
+        end
+    end
+
+    class ContextLine < Line
+        def initialize(context)
+            super("@", "@", context)
+        end
+
+        def classes
+            super << "context"
+        end
+    end
+end
diff --git a/Tools/Scripts/webkitruby/PrettyPatch/PrettyPatch_test.rb b/Tools/Scripts/webkitruby/PrettyPatch/PrettyPatch_test.rb
new file mode 100755
index 0000000..0d5f943
--- /dev/null
+++ b/Tools/Scripts/webkitruby/PrettyPatch/PrettyPatch_test.rb
@@ -0,0 +1,99 @@
+#!/usr/bin/ruby
+
+require 'test/unit'
+require 'open-uri'
+require 'PrettyPatch'
+
+# Note: internet connection is needed to run this test suite.
+
+class PrettyPatch_test < Test::Unit::TestCase
+    class Info
+        TITLE = 0
+        FILE = 1
+        ADD = 2
+        REMOVE = 3
+        SHARED = 4
+    end
+
+    PATCHES = {
+        20510 => ["Single change", 1, 1, 0, 2],
+        20528 => ["No 'Index' or 'diff' in patch header", 1, 4, 3, 7],
+        21151 => ["Leading '/' in the path of files", 4, 9, 1, 16],
+        # Binary files use shared blocks, there are three in 30488.
+        30488 => ["Quoted filenames in git diff", 23, 28, 25, 64 + 3],
+        23920 => ["Mac line ending", 3, 3, 0, 5],
+        39615 => ["Git signature", 2, 2, 0, 3],
+        80852 => ["Changes one line plus ChangeLog", 2, 2, 1, 4],
+        83127 => ["Only add stuff", 2, 2, 0, 3],
+        85071 => ["Adds and removes from a file plus git signature", 2, 5, 3, 9],
+        106368 => ["Images with git delta binary patch", 69, 8, 23, 10],
+    }
+
+    def get_patch_uri(id)
+        "https://bugs.webkit.org/attachment.cgi?id=" + id.to_s
+    end
+
+    def get_patch(id)
+        result = nil
+        patch_uri = get_patch_uri(id)
+        begin
+            result = open(patch_uri) { |f| result = f.read }
+        rescue => exception
+            assert(false, "Fail to get patch " + patch_uri)
+        end
+        result
+    end
+
+    def check_one_patch(id, info)
+        patch = get_patch(id)
+        description = get_patch_uri(id)
+        description +=  " (" + info[Info::TITLE] + ")" unless info[Info::TITLE].nil?
+        puts "Testing " + description
+        pretty = nil
+        assert_nothing_raised("Crash while prettifying " + description) {
+            pretty = PrettyPatch.prettify(patch)
+        }
+        assert(pretty, "Empty result while prettifying " + description)
+        assert_equal(info[Info::FILE], $last_prettify_file_count, "Wrong number of files changed in " + description)
+        assert_equal(info[Info::ADD], $last_prettify_part_count["add"], "Wrong number of 'add' parts in " + description)
+        assert_equal(info[Info::REMOVE], $last_prettify_part_count["remove"], "Wrong number of 'remove' parts in " + description)
+        assert_equal(info[Info::SHARED], $last_prettify_part_count["shared"], "Wrong number of 'shared' parts in " + description)
+        assert_equal(0, $last_prettify_part_count["binary"], "Wrong number of 'binary' parts in " + description)
+        assert_equal(0, $last_prettify_part_count["extract-error"], "Wrong number of 'extract-error' parts in " + description)
+        return pretty
+    end
+
+    def test_patches
+        PATCHES.each { |id, info| check_one_patch(id, info) }
+    end
+
+    def test_images_without_checksum
+        pretty = check_one_patch(144064, ["Images without checksums", 10, 5, 4, 8])
+        matches = pretty.match("INVALID: Image lacks a checksum.")
+        # FIXME: This should match, but there's a bug when running the tests where the image data
+        # doesn't get properly written out to the temp files, so there is no image and we don't print
+        # the warning that the image is missing its checksum.
+        assert(!matches, "Should have invalid checksums")
+        # FIXME: This should only have 4 invalid images, but due to the above tempfile issue, there are 0.
+        assert_equal(0, pretty.scan(/INVALID\: Image lacks a checksum\./).size)
+    end
+
+    def test_new_image
+        pretty = check_one_patch(145881, ["New image", 19, 36, 19, 56])
+        matches = pretty.match("INVALID: Image lacks a checksum.")
+        assert(!matches, "Should not have invalid checksums")
+    end
+
+    def test_images_correctly_without_checksum_git
+        pretty = check_one_patch(101620, ["Images correctly without checksums git", 7, 15, 10, 26])
+        matches = pretty.match("INVALID: Image lacks a checksum.")
+        assert(!matches, "Png should lack a checksum without an error.")
+    end
+
+    def test_images_correctly_without_checksum_svn
+        pretty = check_one_patch(31202, ["Images correctly without checksums svn", 4, 4, 1, 4])
+        matches = pretty.match("INVALID: Image lacks a checksum.")
+        assert(!matches, "Png should lack a checksum without an error.")
+    end
+
+end
diff --git a/Tools/Scripts/webkitruby/PrettyPatch/diff.rb b/Tools/Scripts/webkitruby/PrettyPatch/diff.rb
new file mode 100644
index 0000000..e5c154a
--- /dev/null
+++ b/Tools/Scripts/webkitruby/PrettyPatch/diff.rb
@@ -0,0 +1,164 @@
+module HTMLDiff
+
+  Match = Struct.new(:start_in_old, :start_in_new, :size)
+  class Match
+    def end_in_old
+      self.start_in_old + self.size
+    end
+    
+    def end_in_new
+      self.start_in_new + self.size
+    end
+  end
+  
+  Operation = Struct.new(:action, :start_in_old, :end_in_old, :start_in_new, :end_in_new)
+
+  class DiffBuilder
+
+    def initialize(old_version, new_version)
+      @old_version, @new_version = old_version, new_version
+      split_inputs_to_words
+      index_new_words
+    end
+
+    def split_inputs_to_words
+      @old_words = explode(@old_version)
+      @new_words = explode(@new_version)
+    end
+
+    def index_new_words
+      @word_indices = Hash.new { |h, word| h[word] = [] }
+      @new_words.each_with_index { |word, i| @word_indices[word] << i }
+    end
+
+    def operations
+      position_in_old = position_in_new = 0
+      operations = []
+      
+      matches = matching_blocks
+      # an empty match at the end forces the loop below to handle the unmatched tails
+      # I'm sure it can be done more gracefully, but not at 23:52
+      matches << Match.new(@old_words.length, @new_words.length, 0)
+      
+      matches.each_with_index do |match, i|
+        match_starts_at_current_position_in_old = (position_in_old == match.start_in_old)
+        match_starts_at_current_position_in_new = (position_in_new == match.start_in_new)
+        
+        action_upto_match_positions = 
+          case [match_starts_at_current_position_in_old, match_starts_at_current_position_in_new]
+          when [false, false]
+            :replace
+          when [true, false]
+            :insert
+          when [false, true]
+            :delete
+          else
+            # this happens if the first few words are same in both versions
+            :none
+          end
+
+        if action_upto_match_positions != :none
+          operation_upto_match_positions = 
+              Operation.new(action_upto_match_positions, 
+                  position_in_old, match.start_in_old, 
+                  position_in_new, match.start_in_new)
+          operations << operation_upto_match_positions
+        end
+        if match.size != 0
+          match_operation = Operation.new(:equal, 
+              match.start_in_old, match.end_in_old, 
+              match.start_in_new, match.end_in_new)
+          operations << match_operation
+        end
+
+        position_in_old = match.end_in_old
+        position_in_new = match.end_in_new
+      end
+      
+      operations
+    end
+
+    def matching_blocks
+      matching_blocks = []
+      recursively_find_matching_blocks(0, @old_words.size, 0, @new_words.size, matching_blocks)
+      matching_blocks
+    end
+
+    def recursively_find_matching_blocks(start_in_old, end_in_old, start_in_new, end_in_new, matching_blocks)
+      match = find_match(start_in_old, end_in_old, start_in_new, end_in_new)
+      if match
+        if start_in_old < match.start_in_old and start_in_new < match.start_in_new
+          recursively_find_matching_blocks(
+              start_in_old, match.start_in_old, start_in_new, match.start_in_new, matching_blocks) 
+        end
+        matching_blocks << match
+        if match.end_in_old < end_in_old and match.end_in_new < end_in_new
+          recursively_find_matching_blocks(
+              match.end_in_old, end_in_old, match.end_in_new, end_in_new, matching_blocks)
+        end
+      end
+    end
+
+    def find_match(start_in_old, end_in_old, start_in_new, end_in_new)
+
+      best_match_in_old = start_in_old
+      best_match_in_new = start_in_new
+      best_match_size = 0
+      
+      match_length_at = Hash.new { |h, index| h[index] = 0 }
+      
+      start_in_old.upto(end_in_old - 1) do |index_in_old|
+
+        new_match_length_at = Hash.new { |h, index| h[index] = 0 }
+
+        @word_indices[@old_words[index_in_old]].each do |index_in_new|
+          next  if index_in_new < start_in_new
+          break if index_in_new >= end_in_new
+
+          new_match_length = match_length_at[index_in_new - 1] + 1
+          new_match_length_at[index_in_new] = new_match_length
+
+          if new_match_length > best_match_size
+            best_match_in_old = index_in_old - new_match_length + 1
+            best_match_in_new = index_in_new - new_match_length + 1
+            best_match_size = new_match_length
+          end
+        end
+        match_length_at = new_match_length_at
+      end
+
+#      best_match_in_old, best_match_in_new, best_match_size = add_matching_words_left(
+#          best_match_in_old, best_match_in_new, best_match_size, start_in_old, start_in_new)
+#      best_match_in_old, best_match_in_new, match_size = add_matching_words_right(
+#          best_match_in_old, best_match_in_new, best_match_size, end_in_old, end_in_new)
+
+      return (best_match_size != 0 ? Match.new(best_match_in_old, best_match_in_new, best_match_size) : nil)
+    end
+
+    def add_matching_words_left(match_in_old, match_in_new, match_size, start_in_old, start_in_new)
+      while match_in_old > start_in_old and 
+            match_in_new > start_in_new and 
+            @old_words[match_in_old - 1] == @new_words[match_in_new - 1]
+        match_in_old -= 1
+        match_in_new -= 1
+        match_size += 1
+      end
+      [match_in_old, match_in_new, match_size]
+    end
+
+    def add_matching_words_right(match_in_old, match_in_new, match_size, end_in_old, end_in_new)
+      while match_in_old + match_size < end_in_old and 
+            match_in_new + match_size < end_in_new and
+            @old_words[match_in_old + match_size] == @new_words[match_in_new + match_size]
+        match_size += 1
+      end
+      [match_in_old, match_in_new, match_size]
+    end
+
+    def explode(sequence)
+      sequence.is_a?(String) ? sequence.split(//) : sequence
+    end
+
+  end # of class Diff Builder
+  
+end
diff --git a/Tools/Scripts/webkitruby/PrettyPatch/prettify.rb b/Tools/Scripts/webkitruby/PrettyPatch/prettify.rb
new file mode 100755
index 0000000..a9c211f
--- /dev/null
+++ b/Tools/Scripts/webkitruby/PrettyPatch/prettify.rb
@@ -0,0 +1,37 @@
+#!/usr/bin/env ruby
+
+require 'optparse'
+require 'pathname'
+require 'webrick/htmlutils'
+
+$LOAD_PATH << Pathname.new(__FILE__).dirname.realpath.to_s
+
+require 'PrettyPatch'
+
+BACKTRACE_SEPARATOR = "\n\tfrom "
+
+options = { :html_exceptions => false }
+OptionParser.new do |opts|
+    opts.banner = "Usage: #{File.basename($0)} [options] [patch-file]"
+
+    opts.separator ""
+
+    opts.on("--html-exceptions", "Print exceptions to stdout as HTML") { |h| options[:html_exceptions] = h }
+end.parse!
+
+patch_data = nil
+if ARGV.length == 0 || ARGV[0] == '-' then
+    patch_data = $stdin.read
+else
+    File.open(ARGV[0]) { |file| patch_data = file.read }
+end
+
+begin
+    puts PrettyPatch.prettify(patch_data)
+rescue => exception
+    raise unless options[:html_exceptions]
+
+    backtrace = exception.backtrace
+    backtrace[0] += ": " + exception + " (" + exception.class.to_s + ")"
+    print "<pre>\n", WEBrick::HTMLUtils::escape(backtrace.join(BACKTRACE_SEPARATOR)), "\n</pre>\n"
+end
diff --git a/Tools/TestResultServer/OWNERS b/Tools/TestResultServer/OWNERS
new file mode 100644
index 0000000..2e16222
--- /dev/null
+++ b/Tools/TestResultServer/OWNERS
@@ -0,0 +1,2 @@
+ojan@chromium.org
+jparent@chromium.org
diff --git a/Tools/TestResultServer/app.yaml b/Tools/TestResultServer/app.yaml
index e5a2b31..1026be1 100644
--- a/Tools/TestResultServer/app.yaml
+++ b/Tools/TestResultServer/app.yaml
@@ -1,7 +1,8 @@
 application: test-results
 version: 1
-runtime: python
+runtime: python27
 api_version: 1
+threadsafe: true
 
 handlers:
 - url: /stylesheets
@@ -11,8 +12,8 @@
   static_dir: static-dashboards
 
 - url: /testfile/delete
-  script: main.py
+  script: main.app
   login: admin
 
 - url: /.*
-  script: main.py
+  script: main.app
diff --git a/Tools/TestResultServer/handlers/menu.py b/Tools/TestResultServer/handlers/menu.py
index f15e53c..7b5403a 100644
--- a/Tools/TestResultServer/handlers/menu.py
+++ b/Tools/TestResultServer/handlers/menu.py
@@ -26,8 +26,9 @@
 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
+import webapp2
+
 from google.appengine.api import users
-from google.appengine.ext import webapp
 from google.appengine.ext.webapp import template
 
 dashboards = [
@@ -44,7 +45,7 @@
 ]
 
 
-class Menu(webapp.RequestHandler):
+class Menu(webapp2.RequestHandler):
     def get(self):
         user = users.get_current_user()
         if user:
diff --git a/Tools/TestResultServer/handlers/testfilehandler.py b/Tools/TestResultServer/handlers/testfilehandler.py
index fd17202..759d7d6 100644
--- a/Tools/TestResultServer/handlers/testfilehandler.py
+++ b/Tools/TestResultServer/handlers/testfilehandler.py
@@ -30,9 +30,9 @@
 import logging
 import re
 import urllib
+import webapp2
 
 from google.appengine.api import users
-from google.appengine.ext import webapp
 from google.appengine.ext.webapp import template
 from google.appengine.ext import db
 
@@ -60,7 +60,7 @@
     return json
 
 
-class DeleteFile(webapp.RequestHandler):
+class DeleteFile(webapp2.RequestHandler):
     """Delete test file for a given builder and name from datastore."""
 
     def get(self):
@@ -81,7 +81,7 @@
             % (master, builder, test_type, name))
 
 
-class GetFile(webapp.RequestHandler):
+class GetFile(webapp2.RequestHandler):
     """Get file content or list of files for given builder and name."""
 
     def _get_file_list(self, master, builder, test_type, name, callback_name=None):
@@ -210,7 +210,7 @@
         self._serve_json(json, date)
 
 
-class Upload(webapp.RequestHandler):
+class Upload(webapp2.RequestHandler):
     """Upload test results file to datastore."""
 
     def post(self):
@@ -268,7 +268,7 @@
             self.response.out.write("OK")
 
 
-class UploadForm(webapp.RequestHandler):
+class UploadForm(webapp2.RequestHandler):
     """Show a form so user can upload a file."""
 
     def get(self):
diff --git a/Tools/TestResultServer/main.py b/Tools/TestResultServer/main.py
index 2fa61e5..3bab073 100644
--- a/Tools/TestResultServer/main.py
+++ b/Tools/TestResultServer/main.py
@@ -26,12 +26,7 @@
 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
-# Request a modern Django
-from google.appengine.dist import use_library
-use_library('django', '1.1')
-
-from google.appengine.ext import webapp
-from google.appengine.ext.webapp.util import run_wsgi_app
+import webapp2
 
 from handlers import menu
 from handlers import testfilehandler
@@ -44,11 +39,4 @@
     ('/*|/menu', menu.Menu),
 ]
 
-application = webapp.WSGIApplication(routes, debug=True)
-
-
-def main():
-    run_wsgi_app(application)
-
-if __name__ == "__main__":
-    main()
+app = webapp2.WSGIApplication(routes, debug=True)
diff --git a/Tools/TestResultServer/model/datastorefile.py b/Tools/TestResultServer/model/datastorefile.py
index ac28d64..bfa4c3c 100755
--- a/Tools/TestResultServer/model/datastorefile.py
+++ b/Tools/TestResultServer/model/datastorefile.py
@@ -26,7 +26,6 @@
 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
-from datetime import datetime
 import logging
 
 from google.appengine.ext import db
diff --git a/Tools/TestResultServer/model/jsonresults.py b/Tools/TestResultServer/model/jsonresults.py
index 16316f3..9da9d32 100755
--- a/Tools/TestResultServer/model/jsonresults.py
+++ b/Tools/TestResultServer/model/jsonresults.py
@@ -26,8 +26,7 @@
 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
-from datetime import datetime
-from django.utils import simplejson
+import json
 import logging
 import sys
 import traceback
@@ -107,8 +106,8 @@
         return data
 
     @classmethod
-    def _generate_file_data(cls, json, sort_keys=False):
-        return simplejson.dumps(json, separators=(',', ':'), sort_keys=sort_keys)
+    def _generate_file_data(cls, data, sort_keys=False):
+        return json.dumps(data, separators=(',', ':'), sort_keys=sort_keys)
 
     @classmethod
     def _load_json(cls, file_data):
@@ -118,7 +117,7 @@
             return None
 
         try:
-            return simplejson.loads(json_results_str)
+            return json.loads(json_results_str)
         except:
             logging.debug(json_results_str)
             logging.error("Failed to load json results: %s", traceback.print_exception(*sys.exc_info()))
diff --git a/Tools/TestResultServer/model/jsonresults_unittest.py b/Tools/TestResultServer/model/jsonresults_unittest.py
index 0e65d0b..969f9b4 100755
--- a/Tools/TestResultServer/model/jsonresults_unittest.py
+++ b/Tools/TestResultServer/model/jsonresults_unittest.py
@@ -33,8 +33,7 @@
     print "ERROR: Add the TestResultServer, google_appengine and yaml/lib directories to your PYTHONPATH"
     raise
 
-from django.utils import simplejson
-
+import json
 import unittest
 
 
@@ -81,9 +80,9 @@
         self._builder = "Webkit"
 
     def test_strip_prefix_suffix(self):
-        json = "['contents']"
-        self.assertEqual(JsonResults._strip_prefix_suffix("ADD_RESULTS(" + json + ");"), json)
-        self.assertEqual(JsonResults._strip_prefix_suffix(json), json)
+        json_string = "['contents']"
+        self.assertEqual(JsonResults._strip_prefix_suffix("ADD_RESULTS(" + json_string + ");"), json_string)
+        self.assertEqual(JsonResults._strip_prefix_suffix(json_string), json_string)
 
     def _make_test_json(self, test_data):
         if not test_data:
@@ -94,7 +93,7 @@
         if not builds or not tests:
             return ""
 
-        json = JSON_RESULTS_TEMPLATE
+        json_string = JSON_RESULTS_TEMPLATE
 
         counts = []
         build_numbers = []
@@ -108,17 +107,17 @@
             chrome_revision.append("3000%s" % build)
             times.append("100000%s000" % build)
 
-        json = json.replace("[TESTDATA_COUNTS]", ",".join(counts))
-        json = json.replace("[TESTDATA_COUNT]", ",".join(builds))
-        json = json.replace("[TESTDATA_BUILDNUMBERS]", ",".join(build_numbers))
-        json = json.replace("[TESTDATA_WEBKITREVISION]", ",".join(webkit_revision))
-        json = json.replace("[TESTDATA_CHROMEREVISION]", ",".join(chrome_revision))
-        json = json.replace("[TESTDATA_TIMES]", ",".join(times))
+        json_string = json_string.replace("[TESTDATA_COUNTS]", ",".join(counts))
+        json_string = json_string.replace("[TESTDATA_COUNT]", ",".join(builds))
+        json_string = json_string.replace("[TESTDATA_BUILDNUMBERS]", ",".join(build_numbers))
+        json_string = json_string.replace("[TESTDATA_WEBKITREVISION]", ",".join(webkit_revision))
+        json_string = json_string.replace("[TESTDATA_CHROMEREVISION]", ",".join(chrome_revision))
+        json_string = json_string.replace("[TESTDATA_TIMES]", ",".join(times))
 
         version = str(test_data["version"]) if "version" in test_data else "4"
-        json = json.replace("[VERSION]", version)
-        json = json.replace("{[TESTDATA_TESTS]}", simplejson.dumps(tests, separators=(',', ':'), sort_keys=True))
-        return json
+        json_string = json_string.replace("[VERSION]", version)
+        json_string = json_string.replace("{[TESTDATA_TESTS]}", json.dumps(tests, separators=(',', ':'), sort_keys=True))
+        return json_string
 
     def _test_merge(self, aggregated_data, incremental_data, expected_data, max_builds=jsonresults.JSON_RESULTS_MAX_BUILDS):
         aggregated_results = self._make_test_json(aggregated_data)
@@ -133,7 +132,7 @@
 
     def _test_get_test_list(self, input_data, expected_data):
         input_results = self._make_test_json(input_data)
-        expected_results = JSON_RESULTS_TEST_LIST_TEMPLATE.replace("{[TESTDATA_TESTS]}", simplejson.dumps(expected_data, separators=(',', ':')))
+        expected_results = JSON_RESULTS_TEST_LIST_TEMPLATE.replace("{[TESTDATA_TESTS]}", json.dumps(expected_data, separators=(',', ':')))
         actual_results = JsonResults.get_test_list(self._builder, input_results)
         self.assertEqual(actual_results, expected_results)
 
diff --git a/Tools/TestResultServer/static-dashboards/aggregate_results.js b/Tools/TestResultServer/static-dashboards/aggregate_results.js
index 0fd2dfe..5fb7e91 100644
--- a/Tools/TestResultServer/static-dashboards/aggregate_results.js
+++ b/Tools/TestResultServer/static-dashboards/aggregate_results.js
@@ -34,10 +34,7 @@
 //     -copy them to the appropriate location
 //     -add the builder name to the list of builders in dashboard_base.js.
 
-//////////////////////////////////////////////////////////////////////////////
-// Methods and objects from dashboard_base.js to override.
-//////////////////////////////////////////////////////////////////////////////
-function generatePage()
+function generatePage(historyInstance)
 {
     var html = ui.html.testTypeSwitcher(true) + '<br>';
     for (var builder in currentBuilders())
@@ -45,11 +42,11 @@
     document.body.innerHTML = html;
 }
 
-function handleValidHashParameter(key, value)
+function handleValidHashParameter(historyInstance, key, value)
 {
     switch(key) {
     case 'rawValues':
-        g_history.dashboardSpecificState[key] = value == 'true';
+        historyInstance.dashboardSpecificState[key] = value == 'true';
         return true;
 
     default:
@@ -57,10 +54,21 @@
     }
 }
 
-g_defaultDashboardSpecificStateValues = {
+var defaultDashboardSpecificStateValues = {
     rawValues: false
 };
 
+
+var aggregateResultsConfig = {
+    defaultStateValues: defaultDashboardSpecificStateValues,
+    generatePage: generatePage,
+    handleValidHashParameter: handleValidHashParameter,
+};
+
+// FIXME(jparent): Eventually remove all usage of global history object.
+var g_history = new history.History(aggregateResultsConfig);
+g_history.parseCrossDashboardParameters();
+
 function htmlForBuilder(builder)
 {
     var results = g_resultsByBuilder[builder];
@@ -267,6 +275,6 @@
 }
 
 window.addEventListener('load', function() {
-    var resourceLoader = new loader.Loader(intializeHistory);
+    var resourceLoader = new loader.Loader();
     resourceLoader.load();
 }, false);
diff --git a/Tools/TestResultServer/static-dashboards/builders.js b/Tools/TestResultServer/static-dashboards/builders.js
index 39000ce..ec4377a 100644
--- a/Tools/TestResultServer/static-dashboards/builders.js
+++ b/Tools/TestResultServer/static-dashboards/builders.js
@@ -94,7 +94,6 @@
 CHROMIUM_FYI_BUILDER_MASTER = 'ChromiumFYI';
 CHROMIUM_PERF_AV_BUILDER_MASTER = 'ChromiumPerfAv';
 CHROMIUM_WEBKIT_BUILDER_MASTER = 'ChromiumWebkit';
-WEBKIT_BUILDER_MASTER = 'webkit.org';
 
 var LEGACY_BUILDER_MASTERS_TO_GROUPS = {
     'Chromium': '@DEPS - chromium.org',
@@ -105,8 +104,7 @@
     'ChromiumGPU': '@DEPS - chromium.org',
     'ChromiumGPUFYI': '@DEPS FYI - chromium.org',
     'ChromiumPerfAv': '@DEPS - chromium.org',
-    'ChromiumWebkit': '@ToT - chromium.org',
-    'webkit.org': '@ToT - webkit.org'
+    'ChromiumWebkit': '@ToT - chromium.org'
 };
 
 function BuilderGroup(isToTWebKit)
@@ -210,11 +208,6 @@
             requestBuilderList(LAYOUT_TESTS_BUILDER_GROUPS, CHROMIUM_WEBKIT_BUILDER_MASTER, groupName, builderGroup, testType, isChromiumWebkitTipOfTreeTestRunner);
             break;
 
-        case '@ToT - webkit.org':
-            var builderGroup = new BuilderGroup(BuilderGroup.TOT_WEBKIT);
-            requestBuilderList(LAYOUT_TESTS_BUILDER_GROUPS, WEBKIT_BUILDER_MASTER, groupName, builderGroup, testType);
-            break;
-
         case '@DEPS - chromium.org':
             var builderGroup = new BuilderGroup(BuilderGroup.DEPS_WEBKIT);
             requestBuilderList(LAYOUT_TESTS_BUILDER_GROUPS, CHROMIUM_WEBKIT_BUILDER_MASTER, groupName, builderGroup, testType, isChromiumWebkitDepsTestRunner);
@@ -300,7 +293,6 @@
 
 var LAYOUT_TESTS_BUILDER_GROUPS = {
     '@ToT - chromium.org': null,
-    '@ToT - webkit.org': null,
     '@DEPS - chromium.org': null,
     'Content Shell @ToT - chromium.org': null,
 };
diff --git a/Tools/TestResultServer/static-dashboards/builders.jsonp b/Tools/TestResultServer/static-dashboards/builders.jsonp
index 91d61eb..0e6a713 100644
--- a/Tools/TestResultServer/static-dashboards/builders.jsonp
+++ b/Tools/TestResultServer/static-dashboards/builders.jsonp
@@ -66,6 +66,7 @@
                 "builders": [
                     "XP Tests (1)", 
                     "Win7 Tests (dbg)(1)", 
+                    "Win 7 Tests x64 (1)", 
                     "Vista Tests (1)", 
                     "Win7 Tests (1)", 
                     "XP Tests (dbg)(1)"
@@ -99,6 +100,7 @@
                 "builders": [
                     "XP Tests (1)", 
                     "Win7 Tests (dbg)(1)", 
+                    "Win 7 Tests x64 (1)", 
                     "Vista Tests (1)", 
                     "Win7 Tests (1)", 
                     "XP Tests (dbg)(1)"
@@ -107,6 +109,7 @@
             "components_unittests": {
                 "builders": [
                     "Win7 Tests (dbg)(1)", 
+                    "Win 7 Tests x64 (3)", 
                     "XP Tests (3)", 
                     "Vista Tests (3)", 
                     "Win7 Tests (3)", 
@@ -122,6 +125,7 @@
             "content_browsertests": {
                 "builders": [
                     "XP Tests (1)", 
+                    "Win 7 Tests x64 (1)", 
                     "Vista Tests (1)", 
                     "XP Tests (dbg)(2)", 
                     "Win7 Tests (dbg)(2)", 
@@ -132,6 +136,7 @@
             "content_unittests": {
                 "builders": [
                     "Win7 Tests (dbg)(1)", 
+                    "Win 7 Tests x64 (3)", 
                     "XP Tests (3)", 
                     "Win Aura Tests (2)", 
                     "Vista Tests (3)", 
@@ -143,6 +148,7 @@
                 "builders": [
                     "XP Tests (1)", 
                     "Win7 Tests (dbg)(1)", 
+                    "Win 7 Tests x64 (1)", 
                     "Vista Tests (1)", 
                     "Win7 Tests (1)", 
                     "XP Tests (dbg)(1)"
@@ -158,11 +164,6 @@
                     "XP Tests (dbg)(1)"
                 ]
             }, 
-            "device_unittests": {
-                "builders": [
-                    "Win 7 Tests x64 (1)"
-                ]
-            }, 
             "googleurl_unittests": {
                 "builders": [
                     "XP Tests (1)", 
@@ -197,6 +198,7 @@
                 "builders": [
                     "XP Tests (1)", 
                     "Interactive Tests (dbg)", 
+                    "Win 7 Tests x64 (1)", 
                     "Vista Tests (1)", 
                     "Win7 Tests (1)", 
                     "Win Aura Tests (3)"
@@ -226,6 +228,7 @@
                 "builders": [
                     "XP Tests (1)", 
                     "Win7 Tests (dbg)(1)", 
+                    "Win 7 Tests x64 (1)", 
                     "Vista Tests (1)", 
                     "Win7 Tests (1)", 
                     "XP Tests (dbg)(1)"
@@ -272,6 +275,7 @@
                 "builders": [
                     "XP Tests (1)", 
                     "Win7 Tests (dbg)(1)", 
+                    "Win 7 Tests x64 (1)", 
                     "Vista Tests (1)", 
                     "Win7 Tests (1)", 
                     "XP Tests (dbg)(1)"
@@ -323,7 +327,8 @@
             }, 
             "sync_integration_tests": {
                 "builders": [
-                    "Win7 Sync"
+                    "Win7 Sync", 
+                    "Win7 Sync x64"
                 ]
             }, 
             "sync_unit_tests": {
@@ -349,6 +354,7 @@
             "unit_tests": {
                 "builders": [
                     "Win7 Tests (dbg)(1)", 
+                    "Win 7 Tests x64 (3)", 
                     "XP Tests (3)", 
                     "Win Aura Tests (2)", 
                     "Vista Tests (3)", 
@@ -372,6 +378,7 @@
                 "builders": [
                     "XP Tests (1)", 
                     "Win7 Tests (dbg)(1)", 
+                    "Win 7 Tests x64 (1)", 
                     "Vista Tests (1)", 
                     "Win7 Tests (1)", 
                     "XP Tests (dbg)(1)"
@@ -608,411 +615,312 @@
         "tests": {
             "Run tests": {
                 "builders": [
-                    "Android Tests (dbg)", 
-                    "Android Tests"
+                    "Android Tests", 
+                    "Android Tests (dbg)"
                 ]
             }, 
             "android_webview_unittests": {
                 "builders": [
-                    "Android Tests (dbg)", 
-                    "Android Tests"
+                    "Android Tests", 
+                    "Android Tests (dbg)"
                 ]
             }, 
             "androidwebview_instrumentation_tests": {
                 "builders": [
-                    "Android Tests (dbg)", 
-                    "Android Tests"
+                    "Android Tests", 
+                    "Android Tests (dbg)"
                 ]
             }, 
             "aura_unittests": {
                 "builders": [
-                    "Linux Aura (Precise)", 
                     "Linux Aura"
                 ]
             }, 
             "base_unittests": {
                 "builders": [
-                    "Linux Precise (dbg)", 
-                    "Linux Aura (Precise)", 
-                    "Linux Precise x64", 
                     "Linux Clang (dbg)", 
-                    "Linux Aura", 
-                    "Linux Tests (dbg)(2)(Precise 32)", 
-                    "Linux Tests (Precise)", 
+                    "Linux Tests", 
+                    "Android Tests", 
+                    "Linux Tests (dbg)(2)(32)", 
                     "Android Tests (dbg)", 
-                    "Linux Tests (dbg)(2)(Precise)", 
-                    "Linux Tests x64", 
-                    "Linux Clang (dbg)(Precise)", 
-                    "Linux Tests (dbg)(2)", 
-                    "Android Tests"
+                    "Linux Aura", 
+                    "Linux Tests (dbg)(2)"
                 ]
             }, 
             "browser_tests": {
                 "builders": [
-                    "Linux Precise (dbg)", 
-                    "Linux Tests (dbg)(1)(Precise 32)", 
-                    "Linux Aura (Precise)", 
-                    "Linux Precise x64", 
-                    "Linux Aura", 
+                    "Linux Tests (dbg)(1)(32)", 
                     "Linux Tests (dbg)(1)", 
-                    "Linux Tests (Precise)", 
-                    "Linux Tests (dbg)(1)(Precise)", 
-                    "Linux Tests x64"
+                    "Linux Tests", 
+                    "Linux Aura"
                 ]
             }, 
             "cacheinvalidation_unittests": {
                 "builders": [
-                    "Linux Aura (Precise)", 
+                    "Linux Tests", 
+                    "Linux Tests (dbg)(2)(32)", 
                     "Linux Aura", 
-                    "Linux Tests (dbg)(2)(Precise 32)", 
-                    "Linux Tests (Precise)", 
-                    "Linux Tests (dbg)(2)(Precise)", 
-                    "Linux Tests x64", 
                     "Linux Tests (dbg)(2)"
                 ]
             }, 
             "cc_unittests": {
                 "builders": [
-                    "Linux Tests (dbg)(2)(Precise 32)", 
-                    "Linux Tests (Precise)", 
+                    "Linux Tests", 
+                    "Android Tests", 
+                    "Linux Tests (dbg)(2)(32)", 
                     "Android Tests (dbg)", 
-                    "Linux Tests (dbg)(2)(Precise)", 
-                    "Linux Tests x64", 
-                    "Linux Tests (dbg)(2)", 
-                    "Android Tests"
+                    "Linux Tests (dbg)(2)"
                 ]
             }, 
             "chromedriver2_unittests": {
                 "builders": [
-                    "Linux Tests (dbg)(2)(Precise 32)", 
-                    "Linux Tests (Precise)", 
-                    "Linux Tests (dbg)(2)(Precise)", 
-                    "Linux Tests x64", 
+                    "Linux Tests", 
+                    "Linux Tests (dbg)(2)(32)", 
                     "Linux Tests (dbg)(2)"
                 ]
             }, 
             "chromiumtestshell_instrumentation_tests": {
                 "builders": [
-                    "Android Tests (dbg)", 
-                    "Android Tests"
+                    "Android Tests", 
+                    "Android Tests (dbg)"
                 ]
             }, 
             "components_unittests": {
                 "builders": [
                     "Linux Clang (dbg)", 
-                    "Linux Tests (dbg)(2)(Precise 32)", 
-                    "Linux Tests (Precise)", 
+                    "Linux Tests", 
+                    "Android Tests", 
+                    "Linux Tests (dbg)(2)(32)", 
                     "Android Tests (dbg)", 
-                    "Linux Tests (dbg)(2)(Precise)", 
-                    "Linux Tests x64", 
-                    "Linux Clang (dbg)(Precise)", 
-                    "Linux Tests (dbg)(2)", 
-                    "Android Tests"
+                    "Linux Tests (dbg)(2)"
                 ]
             }, 
             "compositor_unittests": {
                 "builders": [
-                    "Linux Aura (Precise)", 
                     "Linux Aura"
                 ]
             }, 
             "content_browsertests": {
                 "builders": [
-                    "Linux Precise (dbg)", 
-                    "Linux Tests (dbg)(1)(Precise 32)", 
-                    "Linux Aura (Precise)", 
-                    "Linux Precise x64", 
-                    "Linux Aura", 
+                    "Linux Tests (dbg)(1)(32)", 
                     "Linux Tests (dbg)(1)", 
-                    "Linux Tests (Precise)", 
-                    "Linux Tests (dbg)(1)(Precise)", 
-                    "Linux Tests x64"
+                    "Linux Tests", 
+                    "Linux Aura"
                 ]
             }, 
             "content_unittests": {
                 "builders": [
-                    "Linux Aura (Precise)", 
                     "Linux Clang (dbg)", 
-                    "Linux Aura", 
-                    "Linux Tests (dbg)(2)(Precise 32)", 
-                    "Linux Tests (Precise)", 
+                    "Linux Tests", 
+                    "Android Tests", 
+                    "Linux Tests (dbg)(2)(32)", 
                     "Android Tests (dbg)", 
-                    "Linux Tests (dbg)(2)(Precise)", 
-                    "Linux Tests x64", 
-                    "Linux Clang (dbg)(Precise)", 
-                    "Linux Tests (dbg)(2)", 
-                    "Android Tests"
+                    "Linux Aura", 
+                    "Linux Tests (dbg)(2)"
                 ]
             }, 
             "contentshell_instrumentation_tests": {
                 "builders": [
-                    "Android Tests (dbg)", 
-                    "Android Tests"
+                    "Android Tests", 
+                    "Android Tests (dbg)"
                 ]
             }, 
             "crypto_unittests": {
                 "builders": [
-                    "Linux Aura (Precise)", 
                     "Linux Clang (dbg)", 
+                    "Linux Tests", 
+                    "Linux Tests (dbg)(2)(32)", 
                     "Linux Aura", 
-                    "Linux Tests (dbg)(2)(Precise 32)", 
-                    "Linux Tests (Precise)", 
-                    "Linux Tests (dbg)(2)(Precise)", 
-                    "Linux Tests x64", 
-                    "Linux Clang (dbg)(Precise)", 
                     "Linux Tests (dbg)(2)"
                 ]
             }, 
             "dbus_unittests": {
                 "builders": [
-                    "Linux Tests (dbg)(2)(Precise 32)", 
-                    "Linux Tests (Precise)", 
-                    "Linux Tests (dbg)(2)(Precise)", 
-                    "Linux Tests x64", 
+                    "Linux Tests", 
+                    "Linux Tests (dbg)(2)(32)", 
                     "Linux Tests (dbg)(2)"
                 ]
             }, 
             "device_unittests": {
                 "builders": [
-                    "Linux Aura (Precise)", 
                     "Linux Clang (dbg)", 
+                    "Linux Tests", 
+                    "Linux Tests (dbg)(2)(32)", 
                     "Linux Aura", 
-                    "Linux Tests (dbg)(2)(Precise 32)", 
-                    "Linux Tests (Precise)", 
-                    "Linux Tests (dbg)(2)(Precise)", 
-                    "Linux Tests x64", 
-                    "Linux Clang (dbg)(Precise)", 
                     "Linux Tests (dbg)(2)"
                 ]
             }, 
             "googleurl_unittests": {
                 "builders": [
-                    "Linux Aura (Precise)", 
+                    "Linux Tests", 
+                    "Linux Tests (dbg)(2)(32)", 
                     "Linux Aura", 
-                    "Linux Tests (dbg)(2)(Precise 32)", 
-                    "Linux Tests (Precise)", 
-                    "Linux Tests (dbg)(2)(Precise)", 
-                    "Linux Tests x64", 
                     "Linux Tests (dbg)(2)"
                 ]
             }, 
             "gpu_unittests": {
                 "builders": [
-                    "Linux Aura (Precise)", 
-                    "Linux Aura", 
-                    "Linux Tests (dbg)(2)(Precise 32)", 
-                    "Linux Tests (Precise)", 
+                    "Linux Tests", 
+                    "Android Tests", 
+                    "Linux Tests (dbg)(2)(32)", 
                     "Android Tests (dbg)", 
-                    "Linux Tests (dbg)(2)(Precise)", 
-                    "Linux Tests x64", 
-                    "Linux Tests (dbg)(2)", 
-                    "Android Tests"
+                    "Linux Aura", 
+                    "Linux Tests (dbg)(2)"
                 ]
             }, 
             "interactive_ui_tests": {
                 "builders": [
-                    "Linux Aura (Precise)", 
+                    "Linux Tests", 
+                    "Linux Tests (dbg)(2)(32)", 
                     "Linux Aura", 
-                    "Linux Tests (dbg)(2)(Precise 32)", 
-                    "Linux Tests (Precise)", 
-                    "Linux Tests (dbg)(2)(Precise)", 
-                    "Linux Tests x64", 
                     "Linux Tests (dbg)(2)"
                 ]
             }, 
             "ipc_tests": {
                 "builders": [
-                    "Linux Aura (Precise)", 
                     "Linux Clang (dbg)", 
-                    "Linux Aura", 
-                    "Linux Tests (dbg)(2)(Precise 32)", 
-                    "Linux Tests (Precise)", 
+                    "Linux Tests", 
+                    "Android Tests", 
+                    "Linux Tests (dbg)(2)(32)", 
                     "Android Tests (dbg)", 
-                    "Linux Tests (dbg)(2)(Precise)", 
-                    "Linux Tests x64", 
-                    "Linux Clang (dbg)(Precise)", 
-                    "Linux Tests (dbg)(2)", 
-                    "Android Tests"
+                    "Linux Aura", 
+                    "Linux Tests (dbg)(2)"
                 ]
             }, 
             "jingle_unittests": {
                 "builders": [
-                    "Linux Aura (Precise)", 
+                    "Linux Tests", 
+                    "Linux Tests (dbg)(2)(32)", 
                     "Linux Aura", 
-                    "Linux Tests (dbg)(2)(Precise 32)", 
-                    "Linux Tests (Precise)", 
-                    "Linux Tests (dbg)(2)(Precise)", 
-                    "Linux Tests x64", 
                     "Linux Tests (dbg)(2)"
                 ]
             }, 
             "media_unittests": {
                 "builders": [
-                    "Linux Aura (Precise)", 
-                    "Linux Aura", 
-                    "Linux Tests (dbg)(2)(Precise 32)", 
-                    "Linux Tests (Precise)", 
+                    "Linux Tests", 
+                    "Android Tests", 
+                    "Linux Tests (dbg)(2)(32)", 
                     "Android Tests (dbg)", 
-                    "Linux Tests (dbg)(2)(Precise)", 
-                    "Linux Tests x64", 
-                    "Linux Tests (dbg)(2)", 
-                    "Android Tests"
+                    "Linux Aura", 
+                    "Linux Tests (dbg)(2)"
                 ]
             }, 
             "net_unittests": {
                 "builders": [
-                    "Linux Tests (dbg)(1)(Precise 32)", 
-                    "Linux Aura (Precise)", 
-                    "Linux Aura", 
+                    "Linux Tests (dbg)(1)(32)", 
                     "Linux Tests (dbg)(1)", 
-                    "Linux Tests (Precise)", 
+                    "Linux Tests", 
+                    "Android Tests", 
                     "Android Tests (dbg)", 
-                    "Linux Tests (dbg)(1)(Precise)", 
-                    "Linux Tests x64", 
-                    "Android Tests"
+                    "Linux Aura"
                 ]
             }, 
             "ppapi_unittests": {
                 "builders": [
-                    "Linux Aura (Precise)", 
+                    "Linux Tests", 
+                    "Linux Tests (dbg)(2)(32)", 
                     "Linux Aura", 
-                    "Linux Tests (dbg)(2)(Precise 32)", 
-                    "Linux Tests (Precise)", 
-                    "Linux Tests (dbg)(2)(Precise)", 
-                    "Linux Tests x64", 
                     "Linux Tests (dbg)(2)"
                 ]
             }, 
             "printing_unittests": {
                 "builders": [
-                    "Linux Aura (Precise)", 
+                    "Linux Tests", 
+                    "Linux Tests (dbg)(2)(32)", 
                     "Linux Aura", 
-                    "Linux Tests (dbg)(2)(Precise 32)", 
-                    "Linux Tests (Precise)", 
-                    "Linux Tests (dbg)(2)(Precise)", 
-                    "Linux Tests x64", 
                     "Linux Tests (dbg)(2)"
                 ]
             }, 
             "remoting_unittests": {
                 "builders": [
-                    "Linux Aura (Precise)", 
+                    "Linux Tests", 
+                    "Linux Tests (dbg)(2)(32)", 
                     "Linux Aura", 
-                    "Linux Tests (dbg)(2)(Precise 32)", 
-                    "Linux Tests (Precise)", 
-                    "Linux Tests (dbg)(2)(Precise)", 
-                    "Linux Tests x64", 
                     "Linux Tests (dbg)(2)"
                 ]
             }, 
             "sandbox_linux_unittests": {
                 "builders": [
-                    "Linux Precise (dbg)", 
-                    "Linux Aura (Precise)", 
-                    "Linux Precise x64", 
                     "Linux Clang (dbg)", 
+                    "Linux Tests", 
+                    "Linux Tests (dbg)(2)(32)", 
                     "Linux Aura", 
-                    "Linux Tests (dbg)(2)(Precise 32)", 
-                    "Linux Tests (Precise)", 
-                    "Linux Tests (dbg)(2)(Precise)", 
-                    "Linux Tests x64", 
-                    "Linux Clang (dbg)(Precise)", 
                     "Linux Tests (dbg)(2)"
                 ]
             }, 
             "sql_unittests": {
                 "builders": [
-                    "Linux Aura (Precise)", 
                     "Linux Clang (dbg)", 
-                    "Linux Aura", 
-                    "Linux Tests (dbg)(2)(Precise 32)", 
-                    "Linux Tests (Precise)", 
+                    "Linux Tests", 
+                    "Android Tests", 
+                    "Linux Tests (dbg)(2)(32)", 
                     "Android Tests (dbg)", 
-                    "Linux Tests (dbg)(2)(Precise)", 
-                    "Linux Tests x64", 
-                    "Linux Clang (dbg)(Precise)", 
-                    "Linux Tests (dbg)(2)", 
-                    "Android Tests"
+                    "Linux Aura", 
+                    "Linux Tests (dbg)(2)"
                 ]
             }, 
             "sync_integration_tests": {
                 "builders": [
-                    "Linux Sync (Precise)", 
                     "Linux Sync"
                 ]
             }, 
             "sync_unit_tests": {
                 "builders": [
-                    "Linux Aura (Precise)", 
                     "Linux Clang (dbg)", 
-                    "Linux Aura", 
-                    "Linux Tests (dbg)(2)(Precise 32)", 
-                    "Linux Tests (Precise)", 
+                    "Linux Tests", 
+                    "Android Tests", 
+                    "Linux Tests (dbg)(2)(32)", 
                     "Android Tests (dbg)", 
-                    "Linux Tests (dbg)(2)(Precise)", 
-                    "Linux Tests x64", 
-                    "Linux Clang (dbg)(Precise)", 
-                    "Linux Tests (dbg)(2)", 
-                    "Android Tests"
+                    "Linux Aura", 
+                    "Linux Tests (dbg)(2)"
                 ]
             }, 
             "test_report": {
                 "builders": [
-                    "Android Tests (dbg)", 
-                    "Android Tests"
+                    "Android Tests", 
+                    "Android Tests (dbg)"
                 ]
             }, 
             "ui_unittests": {
                 "builders": [
-                    "Linux Aura (Precise)", 
                     "Linux Clang (dbg)", 
-                    "Linux Aura", 
-                    "Linux Tests (dbg)(2)(Precise 32)", 
-                    "Linux Tests (Precise)", 
+                    "Linux Tests", 
+                    "Android Tests", 
+                    "Linux Tests (dbg)(2)(32)", 
                     "Android Tests (dbg)", 
-                    "Linux Tests (dbg)(2)(Precise)", 
-                    "Linux Tests x64", 
-                    "Linux Clang (dbg)(Precise)", 
-                    "Linux Tests (dbg)(2)", 
-                    "Android Tests"
+                    "Linux Aura", 
+                    "Linux Tests (dbg)(2)"
                 ]
             }, 
             "unit_tests": {
                 "builders": [
-                    "Linux Aura (Precise)", 
                     "Linux Clang (dbg)", 
-                    "Linux Aura", 
-                    "Linux Tests (dbg)(2)(Precise 32)", 
-                    "Linux Tests (Precise)", 
+                    "Linux Tests", 
+                    "Android Tests", 
+                    "Linux Tests (dbg)(2)(32)", 
                     "Android Tests (dbg)", 
-                    "Linux Tests (dbg)(2)(Precise)", 
-                    "Linux Tests x64", 
-                    "Linux Clang (dbg)(Precise)", 
-                    "Linux Tests (dbg)(2)", 
-                    "Android Tests"
+                    "Linux Aura", 
+                    "Linux Tests (dbg)(2)"
                 ]
             }, 
             "views_unittests": {
                 "builders": [
-                    "Linux Aura (Precise)", 
                     "Linux Aura"
                 ]
             }, 
             "webkit_compositor_bindings_unittests": {
                 "builders": [
-                    "Linux Tests (dbg)(2)(Precise 32)", 
-                    "Linux Tests (Precise)", 
+                    "Linux Tests", 
+                    "Android Tests", 
+                    "Linux Tests (dbg)(2)(32)", 
                     "Android Tests (dbg)", 
-                    "Linux Tests (dbg)(2)(Precise)", 
-                    "Linux Tests x64", 
-                    "Linux Tests (dbg)(2)", 
-                    "Android Tests"
+                    "Linux Tests (dbg)(2)"
                 ]
             }, 
             "webkit_unit_tests": {
                 "builders": [
-                    "Android Tests (dbg)", 
-                    "Android Tests"
+                    "Android Tests", 
+                    "Android Tests (dbg)"
                 ]
             }
         }, 
@@ -1887,14 +1795,21 @@
                     "Chromium Windows Buildrunner"
                 ]
             }, 
+            "breakpad_unittests": {
+                "builders": [
+                    "Android Tests (JB Nexus7)(dbg)", 
+                    "Android Tests (ICS GalaxyNexus)(dbg)", 
+                    "Android Tests (JB GalaxyNexus)(dbg)"
+                ]
+            }, 
             "browser_tests": {
                 "builders": [
                     "Chromium Mac Buildrunner", 
                     "Chromium Win (aura)", 
+                    "Vista Tests (dbg)(2)", 
                     "Chromium Linux TSan v2", 
                     "Win ASAN Tests (2)", 
                     "Linux ARM Tests (Panda)", 
-                    "Vista Tests (dbg)(2)", 
                     "Chromium Linux Buildrunner", 
                     "Chromium Win (ash)", 
                     "Win8 Tests (2)", 
@@ -2030,13 +1945,13 @@
                 "builders": [
                     "Chromium Mac Buildrunner", 
                     "Chromium Win (aura)", 
+                    "Vista Tests (dbg)(2)", 
                     "Chromium Linux TSan v2", 
                     "Android Tests (JB Nexus7)(dbg)", 
                     "Android Tests (ICS GalaxyNexus)(dbg)", 
                     "Win ASAN Tests (2)", 
                     "Linux ARM Tests (Panda)", 
                     "Android Tests (JB GalaxyNexus)(dbg)", 
-                    "Vista Tests (dbg)(2)", 
                     "Chromium Linux Buildrunner", 
                     "Chromium Win (ash)", 
                     "Win8 Tests (2)", 
@@ -2610,16 +2525,6 @@
                     "Chromium Linux Buildrunner"
                 ]
             }, 
-            "new_tab_ui_cold_test": {
-                "builders": [
-                    "Chromium Linux Perf Annotator"
-                ]
-            }, 
-            "new_tab_ui_warm_test": {
-                "builders": [
-                    "Chromium Linux Perf Annotator"
-                ]
-            }, 
             "ppapi_unittests": {
                 "builders": [
                     "Chromium Win7 Ninja Goma (shared)", 
@@ -2721,17 +2626,13 @@
                     "Linux Coverage (dbg)"
                 ]
             }, 
-            "sandbox_linux_jni_unittests": {
-                "builders": [
-                    "Android Tests (JB Nexus7)(dbg)", 
-                    "Android Tests (ICS GalaxyNexus)(dbg)", 
-                    "Android Tests (JB GalaxyNexus)(dbg)"
-                ]
-            }, 
             "sandbox_linux_unittests": {
                 "builders": [
                     "Chromium Linux TSan v2", 
-                    "Linux ARM Tests (Panda)"
+                    "Android Tests (JB Nexus7)(dbg)", 
+                    "Android Tests (ICS GalaxyNexus)(dbg)", 
+                    "Linux ARM Tests (Panda)", 
+                    "Android Tests (JB GalaxyNexus)(dbg)"
                 ]
             }, 
             "sbox_integration_tests": {
@@ -2831,13 +2732,9 @@
                     "Chromium Linux Buildrunner"
                 ]
             }, 
-            "startup_test": {
-                "builders": [
-                    "Chromium Linux Perf Annotator"
-                ]
-            }, 
             "sync_integration_tests": {
                 "builders": [
+                    "ChromiumOS Linux Tests", 
                     "Chromium Win x64 Clobber"
                 ]
             }, 
diff --git a/Tools/TestResultServer/static-dashboards/dashboard_base.js b/Tools/TestResultServer/static-dashboards/dashboard_base.js
index 8b1bcbf..71c437a 100644
--- a/Tools/TestResultServer/static-dashboards/dashboard_base.js
+++ b/Tools/TestResultServer/static-dashboards/dashboard_base.js
@@ -29,36 +29,7 @@
 // @fileoverview Base JS file for pages that want to parse the results JSON
 // from the testing bots. This deals with generic utility functions, visible
 // history, popups and appending the script elements for the JSON files.
-//
-// The calling page is expected to implement the following "abstract"
-// functions/objects:
 
-// Generates the contents of the dashboard. The page should override this with
-// a function that generates the page assuming all resources have loaded.
-function generatePage() {}
-
-// Takes a key and a value and sets the g_history.dashboardSpecificState[key] = value iff key is
-// a valid hash parameter and the value is a valid value for that key.
-//
-// @return {boolean} Whether the key what inserted into the g_history.dashboardSpecificState.
-function handleValidHashParameter(key, value)
-{
-    return false;
-}
-
-// Default hash parameters for the page. The page should override this to create
-// default states.
-var g_defaultDashboardSpecificStateValues = {};
-
-
-// The page should override this to modify page state due to
-// changing query parameters.
-// @param {Object} params New or modified query params as key: value.
-// @return {boolean} Whether changing this parameter should cause generatePage to be called.
-function handleQueryParameterChange(params)
-{
-    return true;
-}
 
 //////////////////////////////////////////////////////////////////////////////
 // CONSTANTS
@@ -84,11 +55,6 @@
     'O': 'MISSING'
 };
 
-// Map of parameter to other parameter it invalidates.
-var CROSS_DB_INVALIDATING_PARAMETERS = {
-    'testType': 'group'
-};
-var DB_SPECIFIC_INVALIDATING_PARAMETERS;
 
 // Keys in the JSON files.
 var WONTFIX_COUNTS_KEY = 'wontfixCounts';
@@ -100,6 +66,7 @@
 var FIXABLE_COUNT_KEY = 'fixableCount';
 var ALL_FIXABLE_COUNT_KEY = 'allFixableCount';
 var CHROME_REVISIONS_KEY = 'chromeRevision';
+// FIXME: Rename to blink revision.
 var WEBKIT_REVISIONS_KEY = 'webkitRevision';
 var TIMESTAMPS_KEY = 'secondsSinceEpoch';
 var BUILD_NUMBERS_KEY = 'buildNumbers';
@@ -138,7 +105,7 @@
     'sync_unit_tests',
     'sync_integration_tests',
     'test_shell_tests',
-    'ui_tests',
+    'ui_unittests',
     'unit_tests',
     'views_unittests',
     'webkit_unit_tests',
@@ -167,25 +134,6 @@
     return document.getElementById(id);
 }
 
-function parseDashboardSpecificParameters()
-{
-    g_history.dashboardSpecificState = {};
-    var parameters = history.queryHashAsMap();
-    for (parameterName in g_defaultDashboardSpecificStateValues)
-        g_history.parseParameter(parameters, parameterName);
-}
-
-function defaultValue(key)
-{
-    if (key in g_defaultDashboardSpecificStateValues)
-        return g_defaultDashboardSpecificStateValues[key];
-    return history.DEFAULT_CROSS_DASHBOARD_STATE_VALUES[key];
-}
-
-// TODO(jparent): Each db should create their own history obj, not global.
-var g_history = new history.History();
-g_history.parseCrossDashboardParameters();
-
 function currentBuilderGroupCategory()
 {
     switch (g_history.crossDashboardState.testType) {
@@ -236,18 +184,6 @@
     return string.endsWith(window.location.pathname, 'flakiness_dashboard.html');
 }
 
-function handleLocationChange()
-{
-    if (g_history.parseParameters())
-        generatePage();
-}
-
-// TODO(jparent): Move this to upcoming History object.
-function intializeHistory() {
-    window.onhashchange = handleLocationChange;
-    handleLocationChange();
-}
-
 // Create a new function with some of its arguements
 // pre-filled.
 // Taken from goog.partial in the Closure library.
diff --git a/Tools/TestResultServer/static-dashboards/flakiness_dashboard.js b/Tools/TestResultServer/static-dashboards/flakiness_dashboard.js
index 510ecd5..8901e16 100644
--- a/Tools/TestResultServer/static-dashboards/flakiness_dashboard.js
+++ b/Tools/TestResultServer/static-dashboards/flakiness_dashboard.js
@@ -33,7 +33,7 @@
 var FORWARD = 'forward';
 var BACKWARD = 'backward';
 var GTEST_MODIFIERS = ['FLAKY', 'FAILS', 'MAYBE', 'DISABLED'];
-var TEST_URL_BASE_PATH_TRAC = 'http://trac.webkit.org/browser/trunk/LayoutTests/';
+var TEST_URL_BASE_PATH_IN_VERSION_CONTROL = 'http://src.chromium.org/viewvc/blink/trunk/LayoutTests/';
 var TEST_URL_BASE_PATH = "http://svn.webkit.org/repository/webkit/trunk/LayoutTests/";
 var EXPECTATIONS_URL_BASE_PATH = TEST_URL_BASE_PATH + "platform/";
 var TEST_RESULTS_BASE_PATH = 'http://build.chromium.org/f/chromium/layout_test_results/';
@@ -41,7 +41,7 @@
 
 var PLATFORMS = {
     'CHROMIUM': {
-        expectationsDirectory: 'chromium',
+        expectationsDirectory:  null, /* FIXME: cleanup post blink split 'chromium', */
         subPlatforms: {
             'LION': { fallbackPlatforms: ['CHROMIUM'] },
             'SNOWLEOPARD': { fallbackPlatforms: ['CHROMIUM'] },
@@ -49,7 +49,7 @@
             'VISTA': { fallbackPlatforms: ['CHROMIUM'] },
             'WIN7': { fallbackPlatforms: ['CHROMIUM'] },
             'LUCID': { fallbackPlatforms: ['CHROMIUM'] },
-            'ANDROID': { fallbackPlatforms: ['CHROMIUM'], expectationsDirectory: 'chromium-android' }
+            'ANDROID': { fallbackPlatforms: ['CHROMIUM'], expectationsDirectory: null /* 'chromium-android' */ }
         },
         platformModifierUnions: {
             'MAC': ['CHROMIUM_LION', 'CHROMIUM_SNOWLEOPARD'],
@@ -70,7 +70,7 @@
                         }
                     },
                     'SNOWLEOPARD': {
-                        expectationsDirectory: 'mac-snowleopard',
+                        expectationsDirectory: null,
                         subPlatforms: {
                             'WK1': { fallbackPlatforms: ['APPLE_MAC_SNOWLEOPARD', 'APPLE_MAC'] },
                             'WK2': { fallbackPlatforms: ['APPLE_MAC_SNOWLEOPARD', 'APPLE_MAC', 'WK2'] }
@@ -136,12 +136,9 @@
 
 var resourceLoader;
 
-//////////////////////////////////////////////////////////////////////////////
-// Methods and objects from dashboard_base.js to override.
-//////////////////////////////////////////////////////////////////////////////
-function generatePage()
+function generatePage(historyInstance)
 {
-    if (g_history.crossDashboardState.useTestData)
+    if (historyInstance.crossDashboardState.useTestData)
         return;
 
     document.body.innerHTML = '<div id="loading-ui">LOADING...</div>';
@@ -149,12 +146,12 @@
 
     // tests expands to all tests that match the CSV list.
     // result expands to all tests that ever have the given result
-    if (g_history.dashboardSpecificState.tests || g_history.dashboardSpecificState.result)
+    if (historyInstance.dashboardSpecificState.tests || historyInstance.dashboardSpecificState.result)
         generatePageForIndividualTests(individualTests());
-    else if (g_history.dashboardSpecificState.expectationsUpdate)
+    else if (historyInstance.dashboardSpecificState.expectationsUpdate)
         generatePageForExpectationsUpdate();
     else
-        generatePageForBuilder(g_history.dashboardSpecificState.builder || currentBuilderGroup().defaultBuilder());
+        generatePageForBuilder(historyInstance.dashboardSpecificState.builder || currentBuilderGroup().defaultBuilder());
 
     for (var builder in currentBuilders())
         processTestResultsForBuilderAsync(builder);
@@ -162,11 +159,11 @@
     postHeightChangedMessage();
 }
 
-function handleValidHashParameter(key, value)
+function handleValidHashParameter(historyInstance, key, value)
 {
     switch(key) {
     case 'tests':
-        history.validateParameter(g_history.dashboardSpecificState, key, value,
+        history.validateParameter(historyInstance.dashboardSpecificState, key, value,
             function() {
                 return string.isValidName(value);
             });
@@ -174,7 +171,7 @@
 
     case 'result':
         value = value.toUpperCase();
-        history.validateParameter(g_history.dashboardSpecificState, key, value,
+        history.validateParameter(historyInstance.dashboardSpecificState, key, value,
             function() {
                 for (var result in LAYOUT_TEST_EXPECTATIONS_MAP_) {
                     if (value == LAYOUT_TEST_EXPECTATIONS_MAP_[result])
@@ -185,7 +182,7 @@
         return true;
 
     case 'builder':
-        history.validateParameter(g_history.dashboardSpecificState, key, value,
+        history.validateParameter(historyInstance.dashboardSpecificState, key, value,
             function() {
                 return value in currentBuilders();
             });
@@ -193,10 +190,10 @@
         return true;
 
     case 'sortColumn':
-        history.validateParameter(g_history.dashboardSpecificState, key, value,
+        history.validateParameter(historyInstance.dashboardSpecificState, key, value,
             function() {
                 // Get all possible headers since the actual used set of headers
-                // depends on the values in g_history.dashboardSpecificState, which are currently being set.
+                // depends on the values in historyInstance.dashboardSpecificState, which are currently being set.
                 var headers = tableHeaders(true);
                 for (var i = 0; i < headers.length; i++) {
                     if (value == sortColumnFromTableHeader(headers[i]))
@@ -207,7 +204,7 @@
         return true;
 
     case 'sortOrder':
-        history.validateParameter(g_history.dashboardSpecificState, key, value,
+        history.validateParameter(historyInstance.dashboardSpecificState, key, value,
             function() {
                 return value == FORWARD || value == BACKWARD;
             });
@@ -216,7 +213,7 @@
     case 'resultsHeight':
     case 'updateIndex':
     case 'revision':
-        history.validateParameter(g_history.dashboardSpecificState, key, Number(value),
+        history.validateParameter(historyInstance.dashboardSpecificState, key, Number(value),
             function() {
                 return value.match(/^\d+$/);
             });
@@ -234,7 +231,7 @@
     case 'showUnexpectedPasses':
     case 'showWontFixSkip':
     case 'expectationsUpdate':
-        g_history.dashboardSpecificState[key] = value == 'true';
+        historyInstance.dashboardSpecificState[key] = value == 'true';
         return true;
 
     default:
@@ -242,7 +239,27 @@
     }
 }
 
-g_defaultDashboardSpecificStateValues = {
+// @param {Object} params New or modified query parameters as key: value.
+function handleQueryParameterChange(historyInstance, params)
+{
+    for (key in params) {
+        if (key == 'tests') {
+            // Entering cross-builder view, only keep valid keys for that view.
+            for (var currentKey in historyInstance.dashboardSpecificState) {
+              if (isInvalidKeyForCrossBuilderView(currentKey)) {
+                delete historyInstance.dashboardSpecificState[currentKey];
+              }
+            }
+        } else if (isInvalidKeyForCrossBuilderView(key)) {
+            delete historyInstance.dashboardSpecificState.tests;
+            delete historyInstance.dashboardSpecificState.result;
+        }
+    }
+
+    return true;
+}
+
+var defaultDashboardSpecificStateValues = {
     sortOrder: BACKWARD,
     sortColumn: 'flakiness',
     showExpectations: false,
@@ -250,12 +267,12 @@
     showLargeExpectations: false,
     legacyExpectationsSemantics: true,
     showChrome: true,
-    showCorrectExpectations: !g_history.isLayoutTestResults(),
-    showWrongExpectations: !g_history.isLayoutTestResults(),
-    showWontFixSkip: !g_history.isLayoutTestResults(),
-    showSlow: !g_history.isLayoutTestResults(),
-    showSkipped: !g_history.isLayoutTestResults(),
-    showUnexpectedPasses: !g_history.isLayoutTestResults(),
+    showCorrectExpectations: false,
+    showWrongExpectations: false,
+    showWontFixSkip: false,
+    showSlow: false,
+    showSkipped: false,
+    showUnexpectedPasses: false,
     expectationsUpdate: false,
     updateIndex: 0,
     resultsHeight: 300,
@@ -265,12 +282,25 @@
     builder: null
 };
 
-DB_SPECIFIC_INVALIDATING_PARAMETERS = {
+var DB_SPECIFIC_INVALIDATING_PARAMETERS = {
     'tests' : 'builder',
     'testType': 'builder',
     'group': 'builder'
 };
 
+
+var flakinessConfig = {
+    defaultStateValues: defaultDashboardSpecificStateValues,
+    generatePage: generatePage,
+    handleValidHashParameter: handleValidHashParameter,
+    handleQueryParameterChange: handleQueryParameterChange,
+    invalidatingHashParameters: DB_SPECIFIC_INVALIDATING_PARAMETERS
+};
+
+// FIXME(jparent): Eventually remove all usage of global history object.
+var g_history = new history.History(flakinessConfig);
+g_history.parseCrossDashboardParameters();
+
 //////////////////////////////////////////////////////////////////////////////
 // GLOBALS
 //////////////////////////////////////////////////////////////////////////////
@@ -339,31 +369,6 @@
     }
 }
 
-function determineWKPlatform(builderName, basePlatform)
-{
-    var isWK2Builder = string.contains(builderName, 'WK2') || string.contains(builderName, 'WEBKIT2');
-    return basePlatform + (isWK2Builder ? '_WK2' : '_WK1');
-}
-
-function nonChromiumPlatform(builderNameUpperCase)
-{
-    if (string.contains(builderNameUpperCase, 'WINDOWS 7'))
-        return 'APPLE_WIN_WIN7';
-    if (string.contains(builderNameUpperCase, 'WINDOWS XP'))
-        return 'APPLE_WIN_XP';
-    if (string.contains(builderNameUpperCase, 'QT LINUX'))
-        return 'QT_LINUX';
-
-    if (string.contains(builderNameUpperCase, 'LION'))
-        return determineWKPlatform(builderNameUpperCase, 'APPLE_MAC_LION');
-    if (string.contains(builderNameUpperCase, 'SNOWLEOPARD'))
-        return determineWKPlatform(builderNameUpperCase, 'APPLE_MAC_SNOWLEOPARD');
-    if (string.contains(builderNameUpperCase, 'GTK LINUX'))
-        return determineWKPlatform(builderNameUpperCase, 'GTK_LINUX');
-    if (string.contains(builderNameUpperCase, 'EFL'))
-        return determineWKPlatform(builderNameUpperCase, 'EFL_LINUX');
-}
-
 function chromiumPlatform(builderNameUpperCase)
 {
     if (string.contains(builderNameUpperCase, 'MAC')) {
@@ -393,11 +398,7 @@
     if (!g_perBuilderPlatformAndBuildType[builderName]) {
         var builderNameUpperCase = builderName.toUpperCase();
         
-        var platform = '';
-        if (g_history.isLayoutTestResults() && currentBuilderGroupName() == '@ToT - webkit.org' && !string.contains(builderNameUpperCase, 'CHROMIUM'))
-            platform = nonChromiumPlatform(builderNameUpperCase);
-        else
-            platform = chromiumPlatform(builderNameUpperCase);
+        var platform = chromiumPlatform(builderNameUpperCase);
         
         if (!platform)
             console.error('Could not resolve platform for builder: ' + builderName);
@@ -1135,7 +1136,6 @@
     resultsForTest.extra = extraExpectations.sort().join(' ');
 }
 
-
 var BUG_URL_PREFIX = '<a href="http://';
 var BUG_URL_POSTFIX = '/$1">crbug.com/$1</a> ';
 var WEBKIT_BUG_URL_POSTFIX = '/$1">webkit.org/b/$1</a> ';
@@ -1155,22 +1155,6 @@
     return '<a href="' + url + '" target="_blank">' + text + '</a>';
 }
 
-// FIXME: replaced with ui.html.chromiumRevisionLink/ui.html.webKitRevisionLink
-function createBlameListHTML(revisions, index, urlBase, separator, repo)
-{
-    var thisRevision = revisions[index];
-    if (!thisRevision)
-        return '';
-
-    var previousRevision = revisions[index + 1];
-    if (previousRevision && previousRevision != thisRevision) {
-        previousRevision++;
-        return linkHTMLToOpenWindow(urlBase + thisRevision + separator + previousRevision,
-            repo + ' blamelist r' + previousRevision + ':r' + thisRevision);
-    } else
-        return 'At ' + repo + ' revision: ' + thisRevision;
-}
-
 // Returns whether the result for index'th result for testName on builder was
 // a failure.
 function isFailure(builder, testName, index)
@@ -1224,28 +1208,14 @@
     var buildBasePath = master.logPath(builder, buildNumber);
 
     html += '<ul><li>' + linkHTMLToOpenWindow(buildBasePath, 'Build log') +
-        '</li><li>' +
-        createBlameListHTML(g_resultsByBuilder[builder].webkitRevision, index,
-            'http://trac.webkit.org/log/?verbose=on&rev=', '&stop_rev=',
-            'WebKit') +
-        '</li>';
+        '</li><li>Blink: ' + ui.html.blinkRevisionLink(g_resultsByBuilder[builder], index) + '</li>';
 
-    if (master.name == WEBKIT_BUILDER_MASTER) {
-        var revision = g_resultsByBuilder[builder].webkitRevision[index];
-        html += '<li><span class=link onclick="g_history.setQueryParameter(\'revision\',' +
-            revision + ')">Show results for WebKit r' + revision +
-            '</span></li>';
-    } else {
-        html += '<li>' +
-            createBlameListHTML(g_resultsByBuilder[builder].chromeRevision, index,
-                'http://build.chromium.org/f/chromium/perf/dashboard/ui/changelog.html?url=/trunk/src&mode=html&range=', ':', 'Chrome') +
-            '</li>';
+    html += '</li><li>Chromium: ' + ui.html.chromiumRevisionLink(g_resultsByBuilder[builder], index) + '</li>';
 
-        var chromeRevision = g_resultsByBuilder[builder].chromeRevision[index];
-        if (chromeRevision && g_history.isLayoutTestResults()) {
-            html += '<li><a href="' + TEST_RESULTS_BASE_PATH + currentBuilders()[builder] +
-                '/' + chromeRevision + '/layout-test-results.zip">layout-test-results.zip</a></li>';
-        }
+    var chromeRevision = g_resultsByBuilder[builder].chromeRevision[index];
+    if (chromeRevision && g_history.isLayoutTestResults()) {
+        html += '<li><a href="' + TEST_RESULTS_BASE_PATH + currentBuilders()[builder] +
+            '/' + chromeRevision + '/layout-test-results.zip">layout-test-results.zip</a></li>';
     }
 
     if (!g_history.isLayoutTestResults() && opt_testName && isFailure(builder, opt_testName, index))
@@ -1295,14 +1265,8 @@
             innerHTML = currentTime || '&nbsp;';
         }
 
-        var extraClassNames = '';
-        var webkitRevision = g_resultsByBuilder[builder].webkitRevision;
-        var isWebkitMerge = webkitRevision[i + 1] && webkitRevision[i] != webkitRevision[i + 1];
-        if (isWebkitMerge && master.name != WEBKIT_BUILDER_MASTER)
-            extraClassNames += ' merge';
-
         html += '<td title="' + (resultString || 'NO DATA') + '. Click for more info." class="results ' + currentResult +
-          extraClassNames + '" onclick=\'showPopupForBuild(event, "' + builder + '",' + i + ',"' + test.test + '")\'>' + innerHTML;
+          '" onclick=\'showPopupForBuild(event, "' + builder + '",' + i + ',"' + test.test + '")\'>' + innerHTML;
     }
     return html;
 }
@@ -1314,9 +1278,8 @@
     var showUnexpectedPassesLink =  linkHTMLToToggleState('showUnexpectedPasses', 'tests that have not failed in last ' + g_resultsByBuilder[builder].buildNumbers.length + ' runs');
     var showSkippedLink = linkHTMLToToggleState('showSkipped', 'skipped tests in TestExpectations');
     
-
     var html = '';
-    if (tests.length || skippedPaths.length) {
+    if (g_history.isLayoutTestResults() && (tests.length || skippedPaths.length)) {
         var buildInfo = platformAndBuildType(builder);
         html += '<h2 style="display:inline-block">Expectations for ' + buildInfo.platform + '-' + buildInfo.buildType + '</h2> ';
         if (!g_history.dashboardSpecificState.showUnexpectedPasses && tests.length)
@@ -1343,6 +1306,10 @@
 // Returns whether we should exclude test results from the test table.
 function shouldHideTest(testResult)
 {
+    // For non-layout tests, we always show everything.
+    if (!g_history.isLayoutTestResults())
+        return false;
+
     if (testResult.isWontFixSkip)
         return !g_history.dashboardSpecificState.showWontFixSkip;
 
@@ -1372,8 +1339,7 @@
         '[insert platform]\n\n' + test.test + '\n\nProbable cause:\n\n' +
         '[insert probable cause]');
     
-    var component = encodeURIComponent('Tools / Tests');
-    url = 'https://bugs.webkit.org/enter_bug.cgi?assigned_to=webkit-unassigned%40lists.webkit.org&product=WebKit&form_name=enter_bug&component=' + component + '&short_desc=' + title + '&comment=' + description;
+    url = 'https://code.google.com/p/chromium/issues/entry?template=Layout%20Test%20Failure&summary=' + title + '&comment=' + description;
     return '<a href="' + url + '" class="file-bug">FILE BUG</a>';
 }
 
@@ -1826,13 +1792,6 @@
     if (g_history.isLayoutTestResults() || g_history.isGPUTestResults()) {
         if (g_history.isLayoutTestResults())
             html += ' | ' + linkHTMLToToggleState('showLargeExpectations', 'large thumbnails');
-        if (testResults && currentBuilderGroup().master().name == WEBKIT_BUILDER_MASTER) {
-            var revision = g_history.dashboardSpecificState.revision || '';
-            html += '<form onsubmit="g_history.setQueryParameter(\'revision\', revision.value);' +
-                'return false;">Show results for WebKit revision: ' +
-                '<input name=revision placeholder="e.g. 65540" value="' + revision +
-                '" id=revision-input></form>';
-        } else
             html += ' | <b>Only shows actual results/diffs from the most recent *failure* on each bot.</b>';
     } else {
       html += ' | <span>Results height:<input ' +
@@ -2011,7 +1970,7 @@
         else {
             console.log('No expectations identified for this test. This means ' +
                 'there is a logic bug in the dashboard for which expectations a ' +
-                'platform uses or trac.webkit.org/src.chromium.org is giving 5XXs.');
+                'platform uses or src.chromium.org is giving 5XXs.');
         }
     }
 
@@ -2260,32 +2219,13 @@
     var revisionContainer = document.createElement('div');
     revisionContainer.textContent = "Showing results for: "
     expectationsContainer.appendChild(revisionContainer);
-    for (var builder in currentBuilders()) {
-        if (builderMaster(builder).name == WEBKIT_BUILDER_MASTER) {
-            var latestRevision = g_history.dashboardSpecificState.revision || g_resultsByBuilder[builder].webkitRevision[0];
-            var buildInfo = buildInfoForRevision(builder, latestRevision);
-            var revisionInfo = document.createElement('div');
-            revisionInfo.style.cssText = 'background:lightgray;margin:0 3px;padding:0 2px;display:inline-block;';
-            revisionInfo.innerHTML = builder + ' r' + buildInfo.revisionEnd +
-                ':r' + buildInfo.revisionStart + ', build ' + buildInfo.buildNumber;
-            revisionContainer.appendChild(revisionInfo);
-        }
-    }
-
     loadBaselinesForTest(expectationsContainers, expectationsContainer, test);
         
     var testWithoutSuffix = test.substring(0, test.lastIndexOf('.'));
     var actualResultSuffixes = ['-actual.txt', '-actual.png', '-crash-log.txt', '-diff.txt', '-wdiff.html', '-diff.png'];
 
     for (var builder in currentBuilders()) {
-        var actualResultsBase;
-        if (builderMaster(builder).name == WEBKIT_BUILDER_MASTER) {
-            var latestRevision = g_history.dashboardSpecificState.revision || g_resultsByBuilder[builder].webkitRevision[0];
-            var buildInfo = buildInfoForRevision(builder, latestRevision);
-            actualResultsBase = 'http://build.webkit.org/results/' + builder +
-                '/r' + buildInfo.revisionStart + ' (' + buildInfo.buildNumber + ')/';
-        } else
-            actualResultsBase = TEST_RESULTS_BASE_PATH + currentBuilders()[builder] + '/results/layout-test-results/';
+        var actualResultsBase = TEST_RESULTS_BASE_PATH + currentBuilders()[builder] + '/results/layout-test-results/';
 
         for (var i = 0; i < actualResultSuffixes.length; i++) {
             addExpectationItem(expectationsContainers, expectationsContainer, null,
@@ -2383,8 +2323,8 @@
             if (g_history.isLayoutTestResults()) {
                 var suite = lookupVirtualTestSuite(test);
                 var base = suite ? baseTest(test, suite) : test;
-                var tracURL = TEST_URL_BASE_PATH_TRAC + base;
-                testNameHtml += '<h2>' + linkHTMLToOpenWindow(tracURL, test) + '</h2>';
+                var versionControlUrl = TEST_URL_BASE_PATH_IN_VERSION_CONTROL + base;
+                testNameHtml += '<h2>' + linkHTMLToOpenWindow(versionControlUrl, test) + '</h2>';
             } else
                 testNameHtml += '<h2>' + test + '</h2>';
         }
@@ -2489,27 +2429,6 @@
     return !(key in VALID_KEYS_FOR_CROSS_BUILDER_VIEW) && !(key in history.DEFAULT_CROSS_DASHBOARD_STATE_VALUES);
 }
 
-// Sets the page state to regenerate the page.
-// @param {Object} params New or modified query parameters as key: value.
-function handleQueryParameterChange(params)
-{
-    for (key in params) {
-        if (key == 'tests') {
-            // Entering cross-builder view, only keep valid keys for that view.
-            for (var currentKey in g_history.dashboardSpecificState) {
-              if (isInvalidKeyForCrossBuilderView(currentKey)) {
-                delete g_history.dashboardSpecificState[currentKey];
-              }
-            }
-        } else if (isInvalidKeyForCrossBuilderView(key)) {
-            delete g_history.dashboardSpecificState.tests;
-            delete g_history.dashboardSpecificState.result;
-        }
-    }
-
-    return true;
-}
-
 function hideLegend()
 {
     var legend = $('legend');
@@ -2544,7 +2463,6 @@
     for (var expectation in expectationsMap())
         html += '<div class=' + expectation + '>' + expectationsMap()[expectation] + '</div>';
 
-    html += '<div class=merge>WEBKIT MERGE</div>';
     if (g_history.isLayoutTestResults()) {
       html += '</div><br style="clear:both">' +
           '</div><h3>Test expectatons fallback order.</h3>';
@@ -2603,6 +2521,6 @@
 }, false);
 
 window.addEventListener('load', function() {
-    resourceLoader = new loader.Loader(intializeHistory);
+    resourceLoader = new loader.Loader();
     resourceLoader.load();
 }, false);
diff --git a/Tools/TestResultServer/static-dashboards/flakiness_dashboard_tests.css b/Tools/TestResultServer/static-dashboards/flakiness_dashboard_tests.css
index 6165bcd..55d912c 100644
--- a/Tools/TestResultServer/static-dashboards/flakiness_dashboard_tests.css
+++ b/Tools/TestResultServer/static-dashboards/flakiness_dashboard_tests.css
@@ -133,14 +133,6 @@
 .Z {
     background-color: #96f;
 }
-#legend .merge {
-    background-color: black;
-    color: white;
-}
-.test-table .merge {
-    border-right: solid 2px #000;
-    padding-right: 0;
-}
 .separator {
     border: 1px solid lightgray;
     height: 0px;
diff --git a/Tools/TestResultServer/static-dashboards/flakiness_dashboard_unittests.js b/Tools/TestResultServer/static-dashboards/flakiness_dashboard_unittests.js
index 95247d9..4eb81d9 100644
--- a/Tools/TestResultServer/static-dashboards/flakiness_dashboard_unittests.js
+++ b/Tools/TestResultServer/static-dashboards/flakiness_dashboard_unittests.js
@@ -35,7 +35,7 @@
     g_resultsByBuilder = {};
     g_allExpectations = null;
     g_allTestsTrie = null;
-    var historyInstance = new history.History();
+    var historyInstance = new history.History(flakinessConfig);
     // FIXME(jparent): Remove this once global isn't used.
     g_history = historyInstance;
     g_testToResultsMap = {};
@@ -47,11 +47,6 @@
         name: 'ChromiumWebkit',
         url: 'dummyurl', 
         tests: {'layout-tests': {'builders': ['WebKit Linux', 'WebKit Linux (dbg)', 'WebKit Mac10.7', 'WebKit Win', 'WebKit Win (dbg)']}}
-    },
-    {
-        name: 'webkit.org',
-        url: 'dummyurl',
-        tests: {'layout-tests': {'builders': ['Apple SnowLeopard Tests', 'Qt Linux Tests', 'Chromium Mac10.7 Tests', 'GTK Win']}}
     }]);
  
     for (var group in LAYOUT_TESTS_BUILDER_GROUPS)
@@ -144,8 +139,8 @@
     runExpectationsTest('WebKit Mac10.7 (dbg)(3)', test, 'FAIL', 'MAC WONTFIX');
 });
 
-test('platformAndBuildType', 78, function() {
-    var historyInstance = new history.History();
+test('platformAndBuildType', 42, function() {
+    var historyInstance = new history.History(flakinessConfig);
     // FIXME(jparent): Change to use the flakiness_db's history object
     // once it exists, rather than tracking global.
     g_history = historyInstance;
@@ -178,31 +173,6 @@
     runPlatformAndBuildTypeTest('WebKit Mac10.6 (dbg)', 'CHROMIUM_SNOWLEOPARD', 'DEBUG');
     runPlatformAndBuildTypeTest('XP Tests', 'CHROMIUM_XP', 'RELEASE');
     runPlatformAndBuildTypeTest('Interactive Tests (dbg)', 'CHROMIUM_XP', 'DEBUG');
-    
-    historyInstance.crossDashboardState.group = '@ToT - webkit.org';
-    historyInstance.crossDashboardState.testType = 'layout-tests';
-    runPlatformAndBuildTypeTest('Chromium Win Release (Tests)', 'CHROMIUM_XP', 'RELEASE');
-    runPlatformAndBuildTypeTest('Chromium Linux Release (Tests)', 'CHROMIUM_LUCID', 'RELEASE');
-    runPlatformAndBuildTypeTest('Chromium Mac Release (Tests)', 'CHROMIUM_SNOWLEOPARD', 'RELEASE');
-    
-    // FIXME: These platforms should match whatever we use in the TestExpectations format.
-    runPlatformAndBuildTypeTest('Lion Release (Tests)', 'APPLE_MAC_LION_WK1', 'RELEASE');
-    runPlatformAndBuildTypeTest('Lion Debug (Tests)', 'APPLE_MAC_LION_WK1', 'DEBUG');
-    runPlatformAndBuildTypeTest('SnowLeopard Intel Release (Tests)', 'APPLE_MAC_SNOWLEOPARD_WK1', 'RELEASE');
-    runPlatformAndBuildTypeTest('SnowLeopard Intel Leaks', 'APPLE_MAC_SNOWLEOPARD_WK1', 'RELEASE');
-    runPlatformAndBuildTypeTest('SnowLeopard Intel Debug (Tests)', 'APPLE_MAC_SNOWLEOPARD_WK1', 'DEBUG');
-    runPlatformAndBuildTypeTest('GTK Linux 32-bit Release', 'GTK_LINUX_WK1', 'RELEASE');
-    runPlatformAndBuildTypeTest('GTK Linux 32-bit Debug', 'GTK_LINUX_WK1', 'DEBUG');
-    runPlatformAndBuildTypeTest('GTK Linux 64-bit Debug', 'GTK_LINUX_WK1', 'DEBUG');
-    runPlatformAndBuildTypeTest('GTK Linux 64-bit Debug WK2', 'GTK_LINUX_WK2', 'DEBUG');
-    runPlatformAndBuildTypeTest('Qt Linux Release', 'QT_LINUX', 'RELEASE');
-    runPlatformAndBuildTypeTest('Windows 7 Release (Tests)', 'APPLE_WIN_WIN7', 'RELEASE');
-    runPlatformAndBuildTypeTest('Windows XP Debug (Tests)', 'APPLE_WIN_XP', 'DEBUG');
-    
-    // FIXME: Should WebKit2 be it's own platform?
-    runPlatformAndBuildTypeTest('SnowLeopard Intel Release (WebKit2 Tests)', 'APPLE_MAC_SNOWLEOPARD_WK2', 'RELEASE');
-    runPlatformAndBuildTypeTest('SnowLeopard Intel Debug (WebKit2 Tests)', 'APPLE_MAC_SNOWLEOPARD_WK2', 'DEBUG');
-    runPlatformAndBuildTypeTest('Windows 7 Release (WebKit2 Tests)', 'APPLE_WIN_WIN7', 'RELEASE');    
 });
 
 test('realModifiers', 3, function() {
@@ -312,7 +282,7 @@
 });
 
 test('substringList', 2, function() {
-    var historyInstance = new history.History();
+    var historyInstance = new history.History(flakinessConfig);
     // FIXME(jparent): Remove this once global isn't used.
     g_history = historyInstance;
     historyInstance.crossDashboardState.testType = 'gtest';
@@ -325,7 +295,7 @@
 });
 
 test('htmlForTestsWithExpectationsButNoFailures', 4, function() {
-    var historyInstance = new history.History();
+    var historyInstance = new history.History(defaultDashboardSpecificStateValues, generatePage, handleValidHashParameter);
     // FIXME(jparent): Remove this once global isn't used.
     g_history = historyInstance;
     loadBuildersList('@ToT - chromium.org', 'layout-tests');
@@ -361,7 +331,7 @@
 });
 
 test('htmlForTestTypeSwitcherGroup', 6, function() {
-    var historyInstance = new history.History();
+    var historyInstance = new history.History(flakinessConfig);
     // FIXME(jparent): Remove this once global isn't used.
     g_history = historyInstance;
     var container = document.createElement('div');
@@ -379,7 +349,7 @@
     equal(selects.length, 2);
     var group = selects[1];
     equal(group.parentNode.textContent.indexOf('Group:'), 0);
-    equal(group.children.length, 4);
+    equal(group.children.length, 3);
 });
 
 test('htmlForIndividualTestOnAllBuilders', 1, function() {
@@ -432,39 +402,6 @@
         '</div>');
 });
 
-test('htmlForIndividualTestOnAllBuildersWithResultsLinksWebkitMaster', 1, function() {
-    var historyInstance = resetGlobals();
-    historyInstance.crossDashboardState.group = '@ToT - webkit.org';
-    loadBuildersList('@ToT - webkit.org', 'layout-tests');
-
-    var builderName = 'Apple SnowLeopard Tests';
-    var test = 'dummytest.html';
-    g_testToResultsMap[test] = [createResultsObjectForTest(test, builderName)];
-
-    equal(htmlForIndividualTestOnAllBuildersWithResultsLinks(test),
-        '<table class=test-table><thead><tr>' +
-                '<th sortValue=test><div class=table-header-content><span></span><span class=header-text>test</span></div></th>' +
-                '<th sortValue=bugs><div class=table-header-content><span></span><span class=header-text>bugs</span></div></th>' +
-                '<th sortValue=modifiers><div class=table-header-content><span></span><span class=header-text>modifiers</span></div></th>' +
-                '<th sortValue=expectations><div class=table-header-content><span></span><span class=header-text>expectations</span></div></th>' +
-                '<th sortValue=slowest><div class=table-header-content><span></span><span class=header-text>slowest run</span></div></th>' +
-                '<th sortValue=flakiness colspan=10000><div class=table-header-content><span></span><span class=header-text>flakiness (numbers are runtimes in seconds)</span></div></th>' +
-            '</tr></thead>' +
-            '<tbody></tbody>' +
-        '</table>' +
-        '<div>The following builders either don\'t run this test (e.g. it\'s skipped) or all runs passed:</div>' +
-        '<div class=skipped-builder-list>' +
-            '<div class=skipped-builder>Qt Linux Tests</div><div class=skipped-builder>Chromium Mac10.7 Tests</div><div class=skipped-builder>GTK Win</div>' +
-        '</div>' +
-        '<div class=expectations test=dummytest.html>' +
-            '<div><span class=link onclick="g_history.setQueryParameter(\'showExpectations\', true)">Show results</span> | ' +
-            '<span class=link onclick="g_history.setQueryParameter(\'showLargeExpectations\', true)">Show large thumbnails</span>' +
-            '<form onsubmit="g_history.setQueryParameter(\'revision\', revision.value);return false;">' +
-                'Show results for WebKit revision: <input name=revision placeholder="e.g. 65540" value="" id=revision-input>' +
-            '</form></div>' +
-        '</div>');
-});
-
 test('htmlForIndividualTests', 4, function() {
     var historyInstance = resetGlobals();
     loadBuildersList('@ToT - chromium.org', 'layout-tests');
@@ -475,7 +412,7 @@
 
     var tests = [test1, test2];
     equal(htmlForIndividualTests(tests),
-        '<h2><a href="http://trac.webkit.org/browser/trunk/LayoutTests/foo/nonexistant.html" target="_blank">foo/nonexistant.html</a></h2>' +
+        '<h2><a href="' + TEST_URL_BASE_PATH_IN_VERSION_CONTROL + 'foo/nonexistant.html" target="_blank">foo/nonexistant.html</a></h2>' +
         htmlForIndividualTestOnAllBuilders(test1) + 
         '<div class=expectations test=foo/nonexistant.html>' +
             '<div><span class=link onclick=\"g_history.setQueryParameter(\'showExpectations\', true)\">Show results</span> | ' +
@@ -483,7 +420,7 @@
             '<b>Only shows actual results/diffs from the most recent *failure* on each bot.</b></div>' +
         '</div>' +
         '<hr>' +
-        '<h2><a href="http://trac.webkit.org/browser/trunk/LayoutTests/bar/nonexistant.html" target="_blank">bar/nonexistant.html</a></h2>' +
+        '<h2><a href="' + TEST_URL_BASE_PATH_IN_VERSION_CONTROL + 'bar/nonexistant.html" target="_blank">bar/nonexistant.html</a></h2>' +
         htmlForIndividualTestOnAllBuilders(test2) +
         '<div class=expectations test=bar/nonexistant.html>' +
             '<div><span class=link onclick=\"g_history.setQueryParameter(\'showExpectations\', true)\">Show results</span> | ' +
@@ -502,14 +439,14 @@
     historyInstance.dashboardSpecificState.showChrome = true;
 
     equal(htmlForIndividualTests(tests),
-        '<h2><a href="http://trac.webkit.org/browser/trunk/LayoutTests/foo/nonexistant.html" target="_blank">foo/nonexistant.html</a></h2>' +
+        '<h2><a href="' + TEST_URL_BASE_PATH_IN_VERSION_CONTROL + 'foo/nonexistant.html" target="_blank">foo/nonexistant.html</a></h2>' +
         htmlForIndividualTestOnAllBuildersWithResultsLinks(test1));
 
     tests = [test1, test2];
     equal(htmlForIndividualTests(tests),
-        '<h2><a href="http://trac.webkit.org/browser/trunk/LayoutTests/foo/nonexistant.html" target="_blank">foo/nonexistant.html</a></h2>' +
+        '<h2><a href="' + TEST_URL_BASE_PATH_IN_VERSION_CONTROL + 'foo/nonexistant.html" target="_blank">foo/nonexistant.html</a></h2>' +
         htmlForIndividualTestOnAllBuildersWithResultsLinks(test1) + '<hr>' +
-        '<h2><a href="http://trac.webkit.org/browser/trunk/LayoutTests/bar/nonexistant.html" target="_blank">bar/nonexistant.html</a></h2>' +
+        '<h2><a href="' + TEST_URL_BASE_PATH_IN_VERSION_CONTROL + 'bar/nonexistant.html" target="_blank">bar/nonexistant.html</a></h2>' +
         htmlForIndividualTestOnAllBuildersWithResultsLinks(test2));
 });
 
@@ -527,7 +464,7 @@
         '<td class=options-container><a href="https://bugs.webkit.org/enter_bug.cgi?assigned_to=webkit-unassigned%40lists.webkit.org&product=WebKit&form_name=enter_bug&component=Tools%20%2F%20Tests&short_desc=Layout%20Test%20foo%2Fexists.html%20is%20failing&comment=The%20following%20layout%20test%20is%20failing%20on%20%5Binsert%20platform%5D%0A%0Afoo%2Fexists.html%0A%0AProbable%20cause%3A%0A%0A%5Binsert%20probable%20cause%5D" class="file-bug">FILE BUG</a>' +
         '<td class=options-container>' +
             '<td class=options-container>' +
-                '<td><td title="TEXT. Click for more info." class="results F merge" onclick=\'showPopupForBuild(event, "dummyBuilder",0,"foo/exists.html")\'>&nbsp;' +
+                '<td><td title="TEXT. Click for more info." class="results F" onclick=\'showPopupForBuild(event, "dummyBuilder",0,"foo/exists.html")\'>&nbsp;' +
                 '<td title="IMAGE. Click for more info." class="results I" onclick=\'showPopupForBuild(event, "dummyBuilder",1,"foo/exists.html")\'>5';
 
     equal(htmlForSingleTestRow(test), expected);
@@ -698,4 +635,45 @@
 
     historyInstance.invalidateQueryParameters({'testType': 'ui_tests'});
     notEqual(historyInstance.crossDashboardState.group, originalGroup, "group should have been invalidated");   
+});
+
+test('shouldHideTest', 10, function() {
+    var historyInstance = new history.History(flakinessConfig);
+    historyInstance.parseParameters();
+    // FIXME(jparent): Change to use the flakiness_dashboard's history object
+    // once it exists, rather than tracking global.
+    g_history = historyInstance;
+    var test = createResultsObjectForTest('foo/test.html', 'dummyBuilder');
+
+    equal(shouldHideTest(test), true, 'default layout test, hide it.');
+    historyInstance.dashboardSpecificState.showCorrectExpectations = true;
+    equal(shouldHideTest(test), false, 'show correct expectations.');
+    historyInstance.dashboardSpecificState.showCorrectExpectations = false;
+
+    test = createResultsObjectForTest('foo/test.html', 'dummyBuilder');
+    test.isWontFixSkip = true;
+    equal(shouldHideTest(test), true, 'by default hide these too');
+    historyInstance.dashboardSpecificState.showWontFixSkip = true;
+    equal(shouldHideTest(test), false, 'now we should show it');
+    historyInstance.dashboardSpecificState.showWontFixSkip = false;
+
+    test = createResultsObjectForTest('foo/test.html', 'dummyBuilder');
+    test.isFlaky = true;
+    equal(shouldHideTest(test), false, 'we show flaky tests by default');
+    historyInstance.dashboardSpecificState.showFlaky = false;
+    equal(shouldHideTest(test), true, 'do not show flaky test');
+    historyInstance.dashboardSpecificState.showFlaky = true;
+
+    test = createResultsObjectForTest('foo/test.html', 'dummyBuilder');
+    test.slowestNonTimeoutCrashTime = MIN_SECONDS_FOR_SLOW_TEST + 1;
+    equal(shouldHideTest(test), true, 'we hide slow tests by default');
+    historyInstance.dashboardSpecificState.showSlow = true;
+    equal(shouldHideTest(test), false, 'now show slow test');
+    historyInstance.dashboardSpecificState.showSlow = false;
+
+    test = createResultsObjectForTest('foo/test.html', 'dummyBuilder');
+    historyInstance.crossDashboardState.testType = 'not layout tests';
+    equal(shouldHideTest(test), false, 'show all non layout tests');
+    test.isWontFixSkip = true;
+    equal(shouldHideTest(test), false, 'show all non layout tests, even if wont fix');
 });
\ No newline at end of file
diff --git a/Tools/TestResultServer/static-dashboards/history.js b/Tools/TestResultServer/static-dashboards/history.js
index 49c7108..f4814a2 100644
--- a/Tools/TestResultServer/static-dashboards/history.js
+++ b/Tools/TestResultServer/static-dashboards/history.js
@@ -106,15 +106,32 @@
     }
 }
 
-history.History = function()
+history.History = function(configuration)
 {
-  this.crossDashboardState = {};
-  this.dashboardSpecificState = {};
+    this.crossDashboardState = {};
+    this.dashboardSpecificState = {};
+
+    if (configuration) {
+        this._defaultDashboardSpecificStateValues = configuration.defaultStateValues;
+        this._handleValidHashParameter = configuration.handleValidHashParameter;
+        this._handleQueryParameterChange = configuration.handleQueryParameterChange || function(historyInstance, params) { return true; };
+        this._dashboardSpecificInvalidatingParameters = configuration.invalidatingHashParameters;
+        this._generatePage = configuration.generatePage;
+    }
 }
 
 var RELOAD_REQUIRING_PARAMETERS = ['showAllRuns', 'group', 'testType'];
 
+var CROSS_DB_INVALIDATING_PARAMETERS = {
+    'testType': 'group'
+};
+
 history.History.prototype = {
+    initialize: function()
+    {
+        window.onhashchange = this._handleLocationChange.bind(this);
+        this._handleLocationChange();
+    },
     isLayoutTestResults: function()
     {
         return this.crossDashboardState.testType == 'layout-tests';
@@ -132,6 +149,13 @@
 
         history._fillMissingValues(this.crossDashboardState, history.DEFAULT_CROSS_DASHBOARD_STATE_VALUES);
     },
+    _parseDashboardSpecificParameters: function()
+    {
+        this.dashboardSpecificState = {};
+        var parameters = history.queryHashAsMap();
+        for (parameterName in this._defaultDashboardSpecificStateValues)
+            this.parseParameter(parameters, parameterName);
+    },
     // TODO(jparent): Make private once callers move here.
     parseParameters: function()
     {
@@ -150,10 +174,10 @@
             }
         }
 
-        parseDashboardSpecificParameters();
+        this._parseDashboardSpecificParameters();
         var dashboardSpecificDiffState = history._diffStates(oldDashboardSpecificState, this.dashboardSpecificState);
 
-        history._fillMissingValues(this.dashboardSpecificState, g_defaultDashboardSpecificStateValues);
+        history._fillMissingValues(this.dashboardSpecificState, this._defaultDashboardSpecificStateValues);
 
         // FIXME: dashboard_base shouldn't know anything about specific dashboard specific keys.
         if (dashboardSpecificDiffState.builder)
@@ -163,7 +187,7 @@
 
         var shouldGeneratePage = true;
         if (Object.keys(dashboardSpecificDiffState).length)
-            shouldGeneratePage = handleQueryParameterChange(dashboardSpecificDiffState);
+            shouldGeneratePage = this._handleQueryParameterChange(this, dashboardSpecificDiffState);
         return shouldGeneratePage;
     },
     // TODO(jparent): Make private once callers move here.
@@ -205,7 +229,7 @@
             return true;
 
         default:
-            return handleValidHashParameter(key, value);
+            return this._handleValidHashParameter(this, key, value);
         }
     },
     queryParameterValue: function(parameter)
@@ -243,8 +267,8 @@
         for (var key in queryParamsAsState) {
             if (key in CROSS_DB_INVALIDATING_PARAMETERS)
                 delete this.crossDashboardState[CROSS_DB_INVALIDATING_PARAMETERS[key]];
-            if (DB_SPECIFIC_INVALIDATING_PARAMETERS && key in DB_SPECIFIC_INVALIDATING_PARAMETERS)
-                delete this.dashboardSpecificState[DB_SPECIFIC_INVALIDATING_PARAMETERS[key]];
+            if (this._dashboardSpecificInvalidatingParameters && key in this._dashboardSpecificInvalidatingParameters)
+                delete this.dashboardSpecificState[this._dashboardSpecificInvalidatingParameters[key]];
         }
     },
     _joinParameters: function(stateObject)
@@ -252,7 +276,7 @@
         var state = [];
         for (var key in stateObject) {
             var value = stateObject[key];
-            if (value != defaultValue(key))
+            if (value != this._defaultValue(key))
                 state.push(key + '=' + encodeURIComponent(value));
         }
         return state.join('&');
@@ -268,7 +292,19 @@
         for (var key in this.crossDashboardState)
             combinedState[key] = this.crossDashboardState[key];
         return combinedState;    
+    },
+    _defaultValue: function(key)
+    {
+        if (key in this._defaultDashboardSpecificStateValues)
+            return this._defaultDashboardSpecificStateValues[key];
+        return history.DEFAULT_CROSS_DASHBOARD_STATE_VALUES[key];
+    },
+    _handleLocationChange: function()
+    {
+        if (this.parseParameters())
+            this._generatePage(this);
     }
+
 }
 
 })();
\ No newline at end of file
diff --git a/Tools/TestResultServer/static-dashboards/loader.js b/Tools/TestResultServer/static-dashboards/loader.js
index a526eeb..8d84682 100644
--- a/Tools/TestResultServer/static-dashboards/loader.js
+++ b/Tools/TestResultServer/static-dashboards/loader.js
@@ -57,7 +57,7 @@
     xhr.send();
 }
 
-loader.Loader = function(opt_onLoadingComplete)
+loader.Loader = function()
 {
     this._loadingSteps = [
         this._loadBuildersList,
@@ -68,7 +68,6 @@
     this._buildersThatFailedToLoad = [];
     this._staleBuilders = [];
     this._errors = new ui.Errors();
-    this._onLoadingComplete = opt_onLoadingComplete || function() {};
     // TODO(jparent): Pass in the appropriate history obj per db.
     this._history = g_history;
 }
@@ -107,7 +106,7 @@
         var loadingStep = this._loadingSteps.shift();
         if (!loadingStep) {
             this._addErrors();
-            this._onLoadingComplete();
+            this._history.initialize();
             return;
         }
         loadingStep.apply(this);
diff --git a/Tools/TestResultServer/static-dashboards/loader_unittests.js b/Tools/TestResultServer/static-dashboards/loader_unittests.js
index 23eab31..186067a 100644
--- a/Tools/TestResultServer/static-dashboards/loader_unittests.js
+++ b/Tools/TestResultServer/static-dashboards/loader_unittests.js
@@ -31,11 +31,10 @@
 test('loading steps', 1, function() {
     resetGlobals();
     var loadedSteps = [];
-    var loadingCompleteCallback = handleLocationChange;
-    handleLocationChange = function() {
+    g_history._handleLocationChange = function() {
         deepEqual(loadedSteps, ['step 1', 'step 2']);
     }
-    var resourceLoader = new loader.Loader(handleLocationChange);
+    var resourceLoader = new loader.Loader();
     function loadingStep1() {
         loadedSteps.push('step 1');
         resourceLoader.load();
@@ -45,12 +44,8 @@
         resourceLoader.load();
     }
 
-    try {
-        resourceLoader._loadingSteps = [loadingStep1, loadingStep2];
-        resourceLoader.load();
-    } finally {
-        handleLocationChange = loadingCompleteCallback;
-    }
+    resourceLoader._loadingSteps = [loadingStep1, loadingStep2];
+    resourceLoader.load();
 });
 
 // Total number of assertions is 1 for the deepEqual of the builder lists
@@ -87,8 +82,9 @@
 test('expectations files loading', 1, function() {
     resetGlobals();
     g_history.parseCrossDashboardParameters();
-    var expectedLoadedPlatforms = ["chromium", "chromium-android", "efl", "efl-wk1", "efl-wk2", "gtk",
-                                   "gtk-wk2", "mac", "mac-lion", "mac-snowleopard", "qt", "win", "wk2"];
+    // FIXME: re-enable once added back in flakiness_dashboard.js
+    var expectedLoadedPlatforms = [/* "chromium", "chromium-android", */"efl", "efl-wk1", "efl-wk2", "gtk",
+                                   "gtk-wk2", "mac", "mac-lion", /*"mac-snowleopard", */"qt", "win", "wk2"];
     var loadedPlatforms = [];
     var resourceLoader = new loader.Loader();
     resourceLoader._loadNext = function() {
diff --git a/Tools/TestResultServer/static-dashboards/run-embedded-unittests.html b/Tools/TestResultServer/static-dashboards/run-embedded-unittests.html
index 161ecbb..10f058a 100644
--- a/Tools/TestResultServer/static-dashboards/run-embedded-unittests.html
+++ b/Tools/TestResultServer/static-dashboards/run-embedded-unittests.html
@@ -25,10 +25,10 @@
 -->
 <html>
 <head>
-<link rel="stylesheet" href="../../../Source/ThirdParty/qunit/qunit/qunit.css">
+<link rel="stylesheet" href="../../qunit/qunit/qunit.css">
 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> 
 <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.15/jquery-ui.min.js"></script>
-<script src="../../../Source/ThirdParty/qunit/qunit/qunit.js"></script>
+<script src="../../qunit/qunit/qunit.js"></script>
 </head>
 <body>
 <h1 id="qunit-header">Test Results Server JavaScript Unit Tests</h1>
diff --git a/Tools/TestResultServer/static-dashboards/run-unittests.html b/Tools/TestResultServer/static-dashboards/run-unittests.html
index d33c655..15bc212 100644
--- a/Tools/TestResultServer/static-dashboards/run-unittests.html
+++ b/Tools/TestResultServer/static-dashboards/run-unittests.html
@@ -25,10 +25,10 @@
 -->
 <html>
 <head>
-<link rel="stylesheet" href="../../../Source/ThirdParty/qunit/qunit/qunit.css">
+<link rel="stylesheet" href="../../qunit/qunit/qunit.css">
 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> 
 <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.15/jquery-ui.min.js"></script>
-<script src="../../../Source/ThirdParty/qunit/qunit/qunit.js"></script>
+<script src="../../qunit/qunit/qunit.js"></script>
 </head>
 <body>
 <h1 id="qunit-header">Test Results Server JavaScript Unit Tests</h1>
diff --git a/Tools/TestResultServer/static-dashboards/timeline_explorer.js b/Tools/TestResultServer/static-dashboards/timeline_explorer.js
index dd498bd..7e6aea3 100644
--- a/Tools/TestResultServer/static-dashboards/timeline_explorer.js
+++ b/Tools/TestResultServer/static-dashboards/timeline_explorer.js
@@ -32,21 +32,29 @@
 var g_currentBuildIndex = -1;
 var g_currentBuilderTestResults;
 
-//////////////////////////////////////////////////////////////////////////////
-// Methods and objects from dashboard_base.js to override.
-//////////////////////////////////////////////////////////////////////////////
-function generatePage()
+var defaultDashboardSpecificStateValues = {
+    builder: null,
+    buildTimestamp: -1,
+    ignoreFlakyTests: true
+};
+
+var DB_SPECIFIC_INVALIDATING_PARAMETERS = {
+    'testType': 'builder',
+    'group': 'builder'
+};
+
+function generatePage(historyInstance)
 {
     g_buildIndicesByTimestamp = {};
-    var results = g_resultsByBuilder[g_history.dashboardSpecificState.builder || currentBuilderGroup().defaultBuilder()];
+    var results = g_resultsByBuilder[historyInstance.dashboardSpecificState.builder || currentBuilderGroup().defaultBuilder()];
 
     for (var i = 0; i < results[FIXABLE_COUNTS_KEY].length; i++) {
         var buildDate = new Date(results[TIMESTAMPS_KEY][i] * 1000);
         g_buildIndicesByTimestamp[buildDate.getTime()] = i;
     }
 
-    if (g_history.dashboardSpecificState.buildTimestamp != -1 && g_history.dashboardSpecificState.buildTimestamp in g_buildIndicesByTimestamp) {
-        var newBuildIndex = g_buildIndicesByTimestamp[g_history.dashboardSpecificState.buildTimestamp];
+    if (historyInstance.dashboardSpecificState.buildTimestamp != -1 && historyInstance.dashboardSpecificState.buildTimestamp in g_buildIndicesByTimestamp) {
+        var newBuildIndex = g_buildIndicesByTimestamp[historyInstance.dashboardSpecificState.buildTimestamp];
 
         if (newBuildIndex == g_currentBuildIndex) {
             // This happens when selectBuild is called, which updates the UI
@@ -61,12 +69,41 @@
     initCurrentBuilderTestResults();
 
     $('test-type-switcher').innerHTML = ui.html.testTypeSwitcher( false,
-        ui.html.checkbox('ignoreFlakyTests', 'Ignore flaky tests', g_history.dashboardSpecificState.ignoreFlakyTests, 'g_currentBuildIndex = -1')
+        ui.html.checkbox('ignoreFlakyTests', 'Ignore flaky tests', historyInstance.dashboardSpecificState.ignoreFlakyTests, 'g_currentBuildIndex = -1')
     );
 
     updateTimelineForBuilder();
 }
 
+function handleValidHashParameter(historyInstance, key, value)
+{
+    switch(key) {
+    case 'builder':
+        history.validateParameter(historyInstance.dashboardSpecificState, key, value,
+            function() { return value in currentBuilders(); });
+        return true;
+    case 'buildTimestamp':
+        historyInstance.dashboardSpecificState.buildTimestamp = parseInt(value, 10);
+        return true;
+    case 'ignoreFlakyTests':
+        historyInstance.dashboardSpecificState.ignoreFlakyTests = value == 'true';
+        return true;
+    default:
+        return false;
+    }
+}
+
+var timelineConfig = {
+    defaultStateValues: defaultDashboardSpecificStateValues,
+    generatePage: generatePage,
+    handleValidHashParameter: handleValidHashParameter,
+    invalidatingHashParameters: DB_SPECIFIC_INVALIDATING_PARAMETERS
+};
+
+// FIXME(jparent): Eventually remove all usage of global history object.
+var g_history = new history.History(timelineConfig);
+g_history.parseCrossDashboardParameters();
+
 function initCurrentBuilderTestResults()
 {
     var startTime = Date.now();
@@ -74,35 +111,6 @@
     console.log( 'Time to get test results by build: ' + (Date.now() - startTime));
 }
 
-function handleValidHashParameter(key, value)
-{
-    switch(key) {
-    case 'builder':
-        history.validateParameter(g_history.dashboardSpecificState, key, value,
-            function() { return value in currentBuilders(); });
-        return true;
-    case 'buildTimestamp':
-        g_history.dashboardSpecificState.buildTimestamp = parseInt(value, 10);
-        return true;
-    case 'ignoreFlakyTests':
-        g_history.dashboardSpecificState.ignoreFlakyTests = value == 'true';
-        return true;
-    default:
-        return false;
-    }
-}
-
-g_defaultDashboardSpecificStateValues = {
-    builder: null,
-    buildTimestamp: -1,
-    ignoreFlakyTests: true
-};
-
-DB_SPECIFIC_INVALIDATING_PARAMETERS = {
-    'testType': 'builder',
-    'group': 'builder'
-};
-
 function shouldShowWebKitRevisionsOnly()
 {
     return isTipOfTreeWebKitBuilder();
@@ -221,20 +229,15 @@
     addRow('', '');
     var master = builderMaster(builder);
     var buildUrl = master.logPath(builder, results[BUILD_NUMBERS_KEY][index]);
-    if (master.name == WEBKIT_BUILDER_MASTER) {
-        var resultsUrl = 'http://build.webkit.org/results/' + builder + '/r' + results[WEBKIT_REVISIONS_KEY][index] +
-            ' (' + results[BUILD_NUMBERS_KEY][index] + ')';
-    } else {
-        var resultsUrl = 'http://build.chromium.org/f/chromium/layout_test_results/' +
-            currentBuilders()[builder] + '/' + results[CHROME_REVISIONS_KEY][index];
-    }
+    var resultsUrl = 'http://build.chromium.org/f/chromium/layout_test_results/' +
+        currentBuilders()[builder] + '/' + results[CHROME_REVISIONS_KEY][index];
 
     addRow('Build:', '<a href="' + buildUrl + '" target="_blank">' + buildNumber + '</a> (<a href="' + resultsUrl + '" target="_blank">results</a>)');
 
     // Revision link(s)
     if (!shouldShowWebKitRevisionsOnly())
         addRow('Chromium change:', ui.html.chromiumRevisionLink(results, index));
-    addRow('WebKit change:', ui.html.webKitRevisionLink(results, index));
+    addRow('Blink change:', ui.html.blinkRevisionLink(results, index));
 
     // Test status/counts
     addRow('', '');
@@ -488,6 +491,6 @@
 });
 
 window.addEventListener('load', function() {
-    var resourceLoader = new loader.Loader(intializeHistory);
+    var resourceLoader = new loader.Loader();
     resourceLoader.load();
 }, false);
diff --git a/Tools/TestResultServer/static-dashboards/treemap.js b/Tools/TestResultServer/static-dashboards/treemap.js
index a261dfd..db99b8a 100644
--- a/Tools/TestResultServer/static-dashboards/treemap.js
+++ b/Tools/TestResultServer/static-dashboards/treemap.js
@@ -26,6 +26,77 @@
 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
+var defaultDashboardSpecificStateValues = {
+    builder: null,
+    treemapfocus: '',
+};
+
+var DB_SPECIFIC_INVALIDATING_PARAMETERS = {
+    'testType': 'builder',
+    'group': 'builder'
+};
+
+function generatePage(historyInstance)
+{
+    $('header-container').innerHTML = ui.html.testTypeSwitcher();
+
+    g_isGeneratingPage = true;
+
+    var rawTree = g_resultsByBuilder[historyInstance.dashboardSpecificState.builder || currentBuilderGroup().defaultBuilder()];
+    g_webTree = convertToWebTreemapFormat('LayoutTests', rawTree);
+    appendTreemap($('map'), g_webTree);
+
+    if (historyInstance.dashboardSpecificState.treemapfocus)
+        focusPath(g_webTree, historyInstance.dashboardSpecificState.treemapfocus)
+
+    g_isGeneratingPage = false;
+}
+
+function handleValidHashParameter(historyInstance, key, value)
+{
+    switch(key) {
+    case 'builder':
+        history.validateParameter(historyInstance.dashboardSpecificState, key, value,
+            function() { return value in currentBuilders(); });
+        return true;
+
+    case 'treemapfocus':
+        history.validateParameter(historyInstance.dashboardSpecificState, key, value,
+            function() {
+                // FIXME: There's probably a simpler regexp here. Just trying to match ascii + forward-slash.
+                // e.g. LayoutTests/foo/bar.html
+                return (value.match(/^(\w+\/\w*)*$/));
+            });
+        return true;
+
+    default:
+        return false;
+    }
+}
+
+function handleQueryParameterChange(historyInstance, params)
+{
+    for (var param in params) {
+        if (param != 'treemapfocus') {
+            $('map').innerHTML = 'Loading...';
+            return true;
+        }
+    }
+    return false;
+}
+
+var treemapConfig = {
+    defaultStateValues: defaultDashboardSpecificStateValues,
+    generatePage: generatePage,
+    handleValidHashParameter: handleValidHashParameter,
+    handleQueryParameterChange: handleQueryParameterChange,
+    invalidatingHashParameters: DB_SPECIFIC_INVALIDATING_PARAMETERS
+};
+
+// FIXME(jparent): Eventually remove all usage of global history object.
+var g_history = new history.History(treemapConfig);
+g_history.parseCrossDashboardParameters();
+
 var TEST_URL_BASE_PATH = "http://svn.webkit.org/repository/webkit/trunk/";
 
 function humanReadableTime(milliseconds)
@@ -136,22 +207,6 @@
 var g_isGeneratingPage = false;
 var g_webTree;
 
-function generatePage()
-{
-    $('header-container').innerHTML = ui.html.testTypeSwitcher();
-
-    g_isGeneratingPage = true;
-
-    var rawTree = g_resultsByBuilder[g_history.dashboardSpecificState.builder || currentBuilderGroup().defaultBuilder()];
-    g_webTree = convertToWebTreemapFormat('LayoutTests', rawTree);
-    appendTreemap($('map'), g_webTree);
-
-    if (g_history.dashboardSpecificState.treemapfocus)
-        focusPath(g_webTree, g_history.dashboardSpecificState.treemapfocus)
-
-    g_isGeneratingPage = false;
-}
-
 function focusPath(tree, path)
 {
     var parts = decodeURIComponent(path).split('/');
@@ -178,49 +233,6 @@
 
 }
 
-function handleValidHashParameter(key, value)
-{
-    switch(key) {
-    case 'builder':
-        history.validateParameter(g_history.dashboardSpecificState, key, value,
-            function() { return value in currentBuilders(); });
-        return true;
-
-    case 'treemapfocus':
-        history.validateParameter(g_history.dashboardSpecificState, key, value,
-            function() {
-                // FIXME: There's probably a simpler regexp here. Just trying to match ascii + forward-slash.
-                // e.g. LayoutTests/foo/bar.html
-                return (value.match(/^(\w+\/\w*)*$/));
-            });
-        return true;
-
-    default:
-        return false;
-    }
-}
-
-g_defaultDashboardSpecificStateValues = {
-    builder: null,
-    treemapfocus: '',
-};
-
-DB_SPECIFIC_INVALIDATING_PARAMETERS = {
-    'testType': 'builder',
-    'group': 'builder'
-};
-
-function handleQueryParameterChange(params)
-{
-    for (var param in params) {
-        if (param != 'treemapfocus') {
-            $('map').innerHTML = 'Loading...';
-            return true;
-        }
-    }
-    return false;
-}
-
 function extractName(node)
 {
     return node.name.split(' ')[0];
@@ -270,6 +282,6 @@
 }
 
 window.addEventListener('load', function() {
-    var resourceLoader = new loader.Loader(intializeHistory);
+    var resourceLoader = new loader.Loader();
     resourceLoader.load();
 }, false);
diff --git a/Tools/TestResultServer/static-dashboards/ui.js b/Tools/TestResultServer/static-dashboards/ui.js
index 8907986..4df39bc 100644
--- a/Tools/TestResultServer/static-dashboards/ui.js
+++ b/Tools/TestResultServer/static-dashboards/ui.js
@@ -153,47 +153,34 @@
     return ui.html._topLink(html, onClick, isSelected);
 }
 
-ui.html._revisionLink = function(results, index, key, singleUrlTemplate, rangeUrlTemplate)
+ui.html._revisionLink = function(resultsKey, results, index)
 {
-    var currentRevision = parseInt(results[key][index], 10);
-    var previousRevision = parseInt(results[key][index + 1], 10);
+    var currentRevision = parseInt(results[resultsKey][index], 10);
+    var previousRevision = parseInt(results[resultsKey][index + 1], 10);
 
-    function singleUrl()
-    {
-        return singleUrlTemplate.replace('<rev>', currentRevision);
-    }
-
-    function rangeUrl()
-    {
-        return rangeUrlTemplate.replace('<rev1>', currentRevision).replace('<rev2>', previousRevision + 1);
-    }
+    var isChrome = resultsKey == CHROME_REVISIONS_KEY;
+    var singleUrl = 'http://src.chromium.org/viewvc/' + (isChrome ? 'chrome' : 'blink') + '?view=rev&revision=' + currentRevision;
 
     if (currentRevision == previousRevision)
-        return 'At <a href="' + singleUrl() + '">r' + currentRevision    + '</a>';
-    else if (currentRevision - previousRevision == 1)
-        return '<a href="' + singleUrl() + '">r' + currentRevision    + '</a>';
-    else
-        return '<a href="' + rangeUrl() + '">r' + (previousRevision + 1) + ' to r' + currentRevision + '</a>';
+        return 'At <a href="' + singleUrl + '">r' + currentRevision    + '</a>';
+
+    if (currentRevision - previousRevision == 1)
+        return '<a href="' + singleUrl + '">r' + currentRevision    + '</a>';
+
+    var rangeUrl = 'http://build.chromium.org/f/chromium/perf/dashboard/ui/changelog' +
+        (isChrome ? '' : '_blink') + '.html?url=/trunk' + (isChrome ? '/src' : '') +
+        '&range=' + previousRevision + ':' + currentRevision + '&mode=html';
+    return '<a href="' + rangeUrl + '">r' + (previousRevision + 1) + ' to r' + currentRevision + '</a>';
 }
 
 ui.html.chromiumRevisionLink = function(results, index)
 {
-    return ui.html._revisionLink(
-        results,
-        index,
-        CHROME_REVISIONS_KEY,
-        'http://src.chromium.org/viewvc/chrome?view=rev&revision=<rev>',
-        'http://build.chromium.org/f/chromium/perf/dashboard/ui/changelog.html?url=/trunk/src&range=<rev2>:<rev1>&mode=html');
+    return ui.html._revisionLink(CHROME_REVISIONS_KEY, results, index);
 }
 
-ui.html.webKitRevisionLink = function(results, index)
+ui.html.blinkRevisionLink = function(results, index)
 {
-    return ui.html._revisionLink(
-        results,
-        index,
-        WEBKIT_REVISIONS_KEY,
-        'http://trac.webkit.org/changeset/<rev>',
-        'http://trac.webkit.org/log/trunk/?rev=<rev1>&stop_rev=<rev2>&limit=100&verbose=on');
+    return ui.html._revisionLink(WEBKIT_REVISIONS_KEY, results, index);
 }
 
 
diff --git a/Tools/TestWebKitAPI/CMakeLists.txt b/Tools/TestWebKitAPI/CMakeLists.txt
deleted file mode 100644
index a8e9999..0000000
--- a/Tools/TestWebKitAPI/CMakeLists.txt
+++ /dev/null
@@ -1,145 +0,0 @@
-set(TESTWEBKITAPI_DIR "${TOOLS_DIR}/TestWebKitAPI")
-
-include_directories(${CMAKE_BINARY_DIR}
-    ${TESTWEBKITAPI_DIR}
-    ${CMAKE_SOURCE_DIR}/Source
-    ${DERIVED_SOURCES_WEBCORE_DIR}
-    ${DERIVED_SOURCES_WEBKIT2_DIR}/include
-    ${JAVASCRIPTCORE_DIR}
-    ${JAVASCRIPTCORE_DIR}/API
-    ${JAVASCRIPTCORE_DIR}/ForwardingHeaders
-    ${THIRDPARTY_DIR}/gtest/include
-    ${WEBCORE_DIR}/editing
-    ${WEBCORE_DIR}/platform
-    ${WEBCORE_DIR}/platform/graphics
-    ${WEBCORE_DIR}/platform/text
-    ${WEBCORE_DIR}/platform/network
-    ${WEBKIT2_DIR}/Shared
-    ${WEBKIT2_DIR}/Shared/API/c
-    ${WEBKIT2_DIR}/UIProcess
-    ${WTF_DIR}
-)
-
-WEBKIT_INCLUDE_CONFIG_FILES_IF_EXISTS()
-
-add_library(TestWebKitAPIInjectedBundle SHARED
-    ${bundle_harness_SOURCES}
-    ${TESTWEBKITAPI_DIR}/InjectedBundleController.cpp
-    ${TESTWEBKITAPI_DIR}/InjectedBundleMain.cpp
-    ${TESTWEBKITAPI_DIR}/PlatformUtilities.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WebKit2/CanHandleRequest_Bundle.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WebKit2/DOMWindowExtensionBasic_Bundle.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WebKit2/DOMWindowExtensionNoCache_Bundle.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WebKit2/DocumentStartUserScriptAlertCrash_Bundle.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WebKit2/GetInjectedBundleInitializationUserDataCallback_Bundle.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WebKit2/HitTestResultNodeHandle_Bundle.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WebKit2/InjectedBundleBasic_Bundle.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WebKit2/InjectedBundleFrameHitTest_Bundle.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WebKit2/InjectedBundleInitializationUserDataCallbackWins_Bundle.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WebKit2/LoadCanceledNoServerRedirectCallback_Bundle.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WebKit2/MouseMoveAfterCrash_Bundle.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFails_Bundle.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutForImages_Bundle.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFrames_Bundle.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WebKit2/NewFirstVisuallyNonEmptyLayout_Bundle.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WebKit2/ParentFrame_Bundle.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WebKit2/ResponsivenessTimerDoesntFireEarly_Bundle.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WebKit2/ShouldGoToBackForwardListItem_Bundle.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WebKit2/UserMessage_Bundle.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WebKit2/WKConnection_Bundle.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WebKit2/WillSendSubmitEvent_Bundle.cpp
-)
-
-target_link_libraries(TestWebKitAPIInjectedBundle ${WTF_LIBRARY_NAME})
-add_dependencies(TestWebKitAPIInjectedBundle ${WebKit2_LIBRARY_NAME} ${ForwardingHeadersForTestWebKitAPI_NAME} ${ForwardingNetworkHeadersForTestWebKitAPI_NAME})
-
-get_property(TestWebKitAPIInjectedBundle_PATH TARGET TestWebKitAPIInjectedBundle PROPERTY LOCATION)
-
-add_definitions(-DGTEST_LINKED_AS_SHARED_LIBRARY=1
-    -DTEST_WEBKIT2_RESOURCES_DIR=\"${TESTWEBKITAPI_DIR}/Tests/WebKit2\"
-    -DTEST_INJECTED_BUNDLE_PATH=\"${TestWebKitAPIInjectedBundle_PATH}\"
-)
-
-set(test_wtf_LIBRARIES
-    ${WTF_LIBRARY_NAME}
-    gtest
-)
-
-add_executable(test_wtf
-    ${test_main_SOURCES}
-    ${TESTWEBKITAPI_DIR}/TestsController.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WTF/AtomicString.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WTF/CString.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WTF/CheckedArithmeticOperations.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WTF/Functional.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WTF/HashMap.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WTF/IntegerToStringConversion.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WTF/ListHashSet.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WTF/MathExtras.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WTF/MetaAllocator.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WTF/MemoryInstrumentationTest.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WTF/RedBlackTree.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WTF/SaturatedArithmeticOperations.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WTF/StringBuilder.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WTF/StringHasher.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WTF/StringImpl.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WTF/StringOperators.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WTF/TemporaryChange.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WTF/Vector.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WTF/VectorBasic.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WTF/VectorReverse.cpp
-    ${TESTWEBKITAPI_DIR}/Tests/WTF/WTFString.cpp
-)
-
-target_link_libraries(test_wtf ${test_wtf_LIBRARIES})
-add_dependencies(test_wtf ${ForwardingHeadersForTestWebKitAPI_NAME} ${ForwardingNetworkHeadersForTestWebKitAPI_NAME})
-add_test(test_wtf ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/test_wtf)
-set_tests_properties(test_wtf PROPERTIES TIMEOUT 60)
-
-set(test_webcore_LIBRARIES
-    gtest
-    ${WTF_LIBRARY_NAME}
-    ${WebCore_LIBRARY_NAME}
-)
-
-foreach (testName ${test_webcore_BINARIES})
-    add_executable(test_webcore_${testName} ${test_main_SOURCES} ${TESTWEBKITAPI_DIR}/TestsController.cpp ${TESTWEBKITAPI_DIR}/Tests/WebCore/${testName}.cpp)
-    add_test(test_webcore_${testName} ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/test_webcore_${testName})
-    set_tests_properties(test_webcore_${testName} PROPERTIES TIMEOUT 60)
-    target_link_libraries(test_webcore_${testName} ${test_webcore_LIBRARIES})
-endforeach ()
-
-add_library(TestWebKitAPIBase
-    ${test_main_SOURCES}
-    ${webkit2_api_harness_SOURCES}
-    ${TESTWEBKITAPI_DIR}/JavaScriptTest.cpp
-    ${TESTWEBKITAPI_DIR}/PlatformUtilities.cpp
-    ${TESTWEBKITAPI_DIR}/TestsController.cpp
-)
-
-add_dependencies(TestWebKitAPIBase ${WebKit2_LIBRARY_NAME} ${ForwardingHeadersForTestWebKitAPI_NAME} ${ForwardingNetworkHeadersForTestWebKitAPI_NAME})
-
-set(test_webkit2_api_LIBRARIES
-    TestWebKitAPIBase
-    ${WTF_LIBRARY_NAME}
-    ${JavaScriptCore_LIBRARY_NAME}
-    ${WebKit2_LIBRARY_NAME}
-    gtest
-)
-
-foreach (testName ${test_webkit2_api_BINARIES})
-    get_filename_component(testBaseName ${testName} NAME)
-    add_executable(test_webkit2_api_${testBaseName} ${TESTWEBKITAPI_DIR}/Tests/WebKit2/${testName}.cpp)
-    add_test(test_webkit2_api_${testBaseName} ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/test_webkit2_api_${testBaseName})
-    set_tests_properties(test_webkit2_api_${testBaseName} PROPERTIES TIMEOUT 60)
-    target_link_libraries(test_webkit2_api_${testBaseName} ${test_webkit2_api_LIBRARIES})
-endforeach ()
-
-# We don't run tests that are expected to fail. We could use the WILL_FAIL
-# property, but it reports failure when the test crashes or timeouts and would
-# make the bot red.
-
-foreach (testName ${test_webkit2_api_fail_BINARIES})
-    add_executable(test_webkit2_api_fail_${testName} ${TESTWEBKITAPI_DIR}/Tests/WebKit2/${testName}.cpp)
-    target_link_libraries(test_webkit2_api_fail_${testName} ${test_webkit2_api_LIBRARIES})
-endforeach ()
diff --git a/Tools/TestWebKitAPI/Configurations/Base.xcconfig b/Tools/TestWebKitAPI/Configurations/Base.xcconfig
deleted file mode 100644
index 5542f41..0000000
--- a/Tools/TestWebKitAPI/Configurations/Base.xcconfig
+++ /dev/null
@@ -1,73 +0,0 @@
-// Copyright (C) 2010 Apple Inc. All rights reserved.
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions
-// are met:
-// 1. Redistributions of source code must retain the above copyright
-//    notice, this list of conditions and the following disclaimer.
-// 2. Redistributions in binary form must reproduce the above copyright
-//    notice, this list of conditions and the following disclaimer in the
-//    documentation and/or other materials provided with the distribution.
-//
-// THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
-// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-// PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
-// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-CLANG_CXX_LANGUAGE_STANDARD = gnu++0x;
-CLANG_CXX_LIBRARY = libc++;
-CLANG_WARN_CXX0X_EXTENSIONS = NO;
-HEADER_SEARCH_PATHS = ${BUILT_PRODUCTS_DIR}/usr/local/include $(WEBCORE_PRIVATE_HEADERS_DIR)/ForwardingHeaders $(WEBCORE_PRIVATE_HEADERS_DIR)/icu;
-FRAMEWORK_SEARCH_PATHS = $(FRAMEWORK_SEARCH_PATHS_$(PLATFORM_NAME));
-FRAMEWORK_SEARCH_PATHS_macosx = $(SYSTEM_LIBRARY_DIR)/Frameworks/Quartz.framework/Frameworks $(SYSTEM_LIBRARY_DIR)/Frameworks/ApplicationServices.framework/Frameworks $(SYSTEM_LIBRARY_DIR)/Frameworks/CoreServices.framework/Frameworks;
-
-GCC_PREPROCESSOR_DEFINITIONS = $(DEBUG_DEFINES) WEBKIT_VERSION_MIN_REQUIRED=WEBKIT_VERSION_LATEST GTEST_HAS_TR1_TUPLE=0 GTEST_HAS_RTTI=0 $(GCC_PREPROCESSOR_DEFINITIONS_$(PLATFORM_NAME));
-GCC_PREPROCESSOR_DEFINITIONS_macosx = ENABLE_DASHBOARD_SUPPORT;
-DEBUG_INFORMATION_FORMAT = dwarf-with-dsym;
-PREBINDING = NO
-GCC_C_LANGUAGE_STANDARD = gnu99
-GCC_ENABLE_CPP_EXCEPTIONS = NO;
-GCC_ENABLE_CPP_RTTI = NO;
-GCC_PRECOMPILE_PREFIX_HEADER = YES
-GCC_TREAT_WARNINGS_AS_ERRORS = YES
-GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
-GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO
-GCC_WARN_UNUSED_FUNCTION = YES
-GCC_WARN_UNUSED_VARIABLE = YES
-WARNING_CFLAGS = -Wall -W -Wno-unused-parameter
-LINKER_DISPLAYS_MANGLED_NAMES = YES;
-
-// DEBUG_DEFINES, GCC_OPTIMIZATION_LEVEL, STRIP_INSTALLED_PRODUCT and DEAD_CODE_STRIPPING vary between the debug and normal variants.
-// We set up the values for each variant here, and have the Debug configuration in the Xcode project use the _debug variant.
-DEBUG_DEFINES_debug = ;
-DEBUG_DEFINES_normal = NDEBUG;
-DEBUG_DEFINES = $(DEBUG_DEFINES_$(CURRENT_VARIANT));
-
-SUPPORTED_PLATFORMS = iphoneos iphonesimulator macosx;
-
-TARGET_MAC_OS_X_VERSION_MAJOR = $(MAC_OS_X_VERSION_MAJOR);
-
-
-TARGETING_SAME_OS_X_VERSION = $(TARGETING_SAME_OS_X_VERSION_$(MAC_OS_X_VERSION_MAJOR)_$(TARGET_MAC_OS_X_VERSION_MAJOR));
-TARGETING_SAME_OS_X_VERSION_1070_1070 = YES;
-TARGETING_SAME_OS_X_VERSION_1080_1080 = YES;
-TARGETING_SAME_OS_X_VERSION_1090_1090 = YES;
-
-// Don't build against an SDK unless we're targeting an older OS version.
-SDKROOT = $(SDKROOT_TARGETING_SAME_OS_X_VERSION_$(TARGETING_SAME_OS_X_VERSION));
-SDKROOT_TARGETING_SAME_OS_X_VERSION_ = macosx;
-
-WEBKIT_UMBRELLA_FRAMEWORKS_DIR = $(NEXT_ROOT)$(SYSTEM_LIBRARY_DIR)/Frameworks/WebKit.framework/Versions/A/Frameworks;
-WEBCORE_PRIVATE_HEADERS_DIR = $(WEBKIT_UMBRELLA_FRAMEWORKS_DIR)/WebCore.framework/PrivateHeaders;
-
-EXCLUDED_SOURCE_FILE_NAMES = $(EXCLUDED_SOURCE_FILE_NAMES_$(PLATFORM_NAME));
-EXCLUDED_SOURCE_FILE_NAMES_macosx = *IOS.h *IOS.cpp *IOS.mm;
-EXCLUDED_SOURCE_FILE_NAMES_iphoneos = *Mac.h *Mac.cpp *Mac.mm *InjectedBundle* *PlatformUtilities* Tests/WebKit2/* Tests/WebKit2ObjC/* *_Bundle* JavaScriptTest.*;
-EXCLUDED_SOURCE_FILE_NAMES_iphonesimulator = $(EXCLUDED_SOURCE_FILE_NAMES_iphoneos);
diff --git a/Tools/TestWebKitAPI/Configurations/DebugRelease.xcconfig b/Tools/TestWebKitAPI/Configurations/DebugRelease.xcconfig
deleted file mode 100644
index f681015..0000000
--- a/Tools/TestWebKitAPI/Configurations/DebugRelease.xcconfig
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright (C) 2010 Apple Inc. All rights reserved.
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions
-// are met:
-// 1. Redistributions of source code must retain the above copyright
-//    notice, this list of conditions and the following disclaimer.
-// 2. Redistributions in binary form must reproduce the above copyright
-//    notice, this list of conditions and the following disclaimer in the
-//    documentation and/or other materials provided with the distribution.
-//
-// THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
-// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-// PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
-// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-
-#include "Base.xcconfig"
-
-ARCHS = $(ARCHS_STANDARD_32_64_BIT);
-
-ONLY_ACTIVE_ARCH = YES;
-
-MACOSX_DEPLOYMENT_TARGET = $(MACOSX_DEPLOYMENT_TARGET_$(TARGET_MAC_OS_X_VERSION_MAJOR))
-MACOSX_DEPLOYMENT_TARGET_1070 = 10.7;
-MACOSX_DEPLOYMENT_TARGET_1080 = 10.8;
-MACOSX_DEPLOYMENT_TARGET_1090 = 10.9;
-
-WEBKIT_UMBRELLA_FRAMEWORKS_DIR = $(BUILT_PRODUCTS_DIR);
diff --git a/Tools/TestWebKitAPI/Configurations/InjectedBundle.xcconfig b/Tools/TestWebKitAPI/Configurations/InjectedBundle.xcconfig
deleted file mode 100644
index 164a05c..0000000
--- a/Tools/TestWebKitAPI/Configurations/InjectedBundle.xcconfig
+++ /dev/null
@@ -1,24 +0,0 @@
-// Copyright (C) 2010 Apple Inc. All rights reserved.
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions
-// are met:
-// 1. Redistributions of source code must retain the above copyright
-//    notice, this list of conditions and the following disclaimer.
-// 2. Redistributions in binary form must reproduce the above copyright
-//    notice, this list of conditions and the following disclaimer in the
-//    documentation and/or other materials provided with the distribution.
-//
-// THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
-// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-// PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
-// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-
-PRODUCT_NAME = InjectedBundleTestWebKitAPI;
diff --git a/Tools/TestWebKitAPI/Configurations/TestWebKitAPI.xcconfig b/Tools/TestWebKitAPI/Configurations/TestWebKitAPI.xcconfig
deleted file mode 100644
index 5fc6f74..0000000
--- a/Tools/TestWebKitAPI/Configurations/TestWebKitAPI.xcconfig
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright (C) 2010 Apple Inc. All rights reserved.
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions
-// are met:
-// 1. Redistributions of source code must retain the above copyright
-//    notice, this list of conditions and the following disclaimer.
-// 2. Redistributions in binary form must reproduce the above copyright
-//    notice, this list of conditions and the following disclaimer in the
-//    documentation and/or other materials provided with the distribution.
-//
-// THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
-// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-// PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
-// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-
-PRODUCT_NAME = TestWebKitAPI;
-GCC_ENABLE_OBJC_EXCEPTIONS = YES;
-
-OTHER_LDFLAGS = -lgtest -framework JavaScriptCore -framework WebKit $(OTHER_LDFLAGS_$(PLATFORM_NAME));
-OTHER_LDFLAGS_iphoneos = -framework WebCore;
-OTHER_LDFLAGS_iphonesimulator = $(OTHER_LDFLAGS_iphoneos);
-OTHER_LDFLAGS_macosx = -framework Cocoa -framework Carbon -framework WebKit2;
diff --git a/Tools/TestWebKitAPI/Configurations/TestWebKitAPICFLite.vsprops b/Tools/TestWebKitAPI/Configurations/TestWebKitAPICFLite.vsprops
deleted file mode 100644
index cfbcfad..0000000
--- a/Tools/TestWebKitAPI/Configurations/TestWebKitAPICFLite.vsprops
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="TestWebKitAPICFLite"
-	>
-	<Tool
-		Name="VCLinkerTool"
-		AdditionalDependencies="CFLite$(LibraryConfigSuffix).lib"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/TestWebKitAPI/Configurations/TestWebKitAPICFNetwork.vsprops b/Tools/TestWebKitAPI/Configurations/TestWebKitAPICFNetwork.vsprops
deleted file mode 100644
index 1a5f5ea..0000000
--- a/Tools/TestWebKitAPI/Configurations/TestWebKitAPICFNetwork.vsprops
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="TestWebKitAPICFNetwork"
-	>
-	<Tool
-		Name="VCLinkerTool"
-		AdditionalDependencies="CFNetwork$(LibraryConfigSuffix).lib"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/TestWebKitAPI/Configurations/TestWebKitAPICommon.vsprops b/Tools/TestWebKitAPI/Configurations/TestWebKitAPICommon.vsprops
deleted file mode 100644
index 8478329..0000000
--- a/Tools/TestWebKitAPI/Configurations/TestWebKitAPICommon.vsprops
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="TestWebKitAPICommon"
-	>
-	<Tool
-		Name="VCCLCompilerTool"
-                AdditionalIncludeDirectories="&quot;$(ProjectDir)&quot;;&quot;$(ProjectDir)\..&quot;;&quot;$(ConfigurationBuildDir)\include&quot;;&quot;$(ConfigurationBuildDir)\include\private\JavaScriptCore&quot;;&quot;$(ConfigurationBuildDir)\include\WebCore\ForwardingHeaders&quot;;&quot;$(ConfigurationBuildDir)\include\private&quot;;&quot;$(WebKitLibrariesDir)\include&quot;;&quot;$(ProjectDir)\..\..\..\Source\ThirdParty\gtest\include&quot;"
-	/>
-	<Tool
-		Name="VCLinkerTool"
-		AdditionalDependencies="WebKit$(WebKitDLLConfigSuffix).lib JavaScriptCore$(WebKitDLLConfigSuffix).lib gtest.lib"
-		SubSystem="1"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/TestWebKitAPI/Configurations/TestWebKitAPICoreFoundation.vsprops b/Tools/TestWebKitAPI/Configurations/TestWebKitAPICoreFoundation.vsprops
deleted file mode 100644
index 1260b1a..0000000
--- a/Tools/TestWebKitAPI/Configurations/TestWebKitAPICoreFoundation.vsprops
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="TestWebKitAPICoreFoundation"
-	>
-	<Tool
-		Name="VCLinkerTool"
-		AdditionalDependencies="CoreFoundation$(LibraryConfigSuffix).lib"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/TestWebKitAPI/Configurations/TestWebKitAPIDebug.vsprops b/Tools/TestWebKitAPI/Configurations/TestWebKitAPIDebug.vsprops
deleted file mode 100644
index ad76269..0000000
--- a/Tools/TestWebKitAPI/Configurations/TestWebKitAPIDebug.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="TestWebKitAPIDebug"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;.\TestWebKitAPICommon.vsprops;.\TestWebKitAPICoreFoundation.vsprops;.\TestWebKitAPICFNetwork.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/TestWebKitAPI/Configurations/TestWebKitAPIDebugAll.vsprops b/Tools/TestWebKitAPI/Configurations/TestWebKitAPIDebugAll.vsprops
deleted file mode 100644
index cc4a879..0000000
--- a/Tools/TestWebKitAPI/Configurations/TestWebKitAPIDebugAll.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="TestWebKitAPIDebugAll"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug_all.vsprops;.\TestWebKitAPICommon.vsprops;.\TestWebKitAPICoreFoundation.vsprops;.\TestWebKitAPICFNetwork.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/TestWebKitAPI/Configurations/TestWebKitAPIDebugCairoCFLite.vsprops b/Tools/TestWebKitAPI/Configurations/TestWebKitAPIDebugCairoCFLite.vsprops
deleted file mode 100644
index 49bb10d..0000000
--- a/Tools/TestWebKitAPI/Configurations/TestWebKitAPIDebugCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="TestWebKitAPIDebugCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug_wincairo.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\WinCairo.vsprops;..\Configurations\TestWebKitAPICommon.vsprops;..\Configurations\TestWebKitAPICFLite.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/TestWebKitAPI/Configurations/TestWebKitAPIInjectedBundleCommon.vsprops b/Tools/TestWebKitAPI/Configurations/TestWebKitAPIInjectedBundleCommon.vsprops
deleted file mode 100644
index 2819359..0000000
--- a/Tools/TestWebKitAPI/Configurations/TestWebKitAPIInjectedBundleCommon.vsprops
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="TestWebKitAPIInjectedBundleCommon"
-	>
-	<Tool
-		Name="VCLinkerTool"
-		OutputFile="$(OutDir)\$(ProjectName)$(WebKitDLLConfigSuffix).dll"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/TestWebKitAPI/Configurations/TestWebKitAPIRelease.vsprops b/Tools/TestWebKitAPI/Configurations/TestWebKitAPIRelease.vsprops
deleted file mode 100644
index 844f803..0000000
--- a/Tools/TestWebKitAPI/Configurations/TestWebKitAPIRelease.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="TestWebKitAPIRelease"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;.\TestWebKitAPICommon.vsprops;.\TestWebKitAPICoreFoundation.vsprops;.\TestWebKitAPICFNetwork.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/TestWebKitAPI/Configurations/TestWebKitAPIReleaseCairoCFLite.vsprops b/Tools/TestWebKitAPI/Configurations/TestWebKitAPIReleaseCairoCFLite.vsprops
deleted file mode 100644
index 7d02068..0000000
--- a/Tools/TestWebKitAPI/Configurations/TestWebKitAPIReleaseCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="TestWebKitAPIReleaseCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\WinCairo.vsprops;..\Configurations\TestWebKitAPICommon.vsprops;..\Configurations\TestWebKitAPICFLite.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/TestWebKitAPI/DerivedSources.pri b/Tools/TestWebKitAPI/DerivedSources.pri
deleted file mode 100644
index cb391ad..0000000
--- a/Tools/TestWebKitAPI/DerivedSources.pri
+++ /dev/null
@@ -1,12 +0,0 @@
-# -------------------------------------------------------------------
-# Derived sources for TestWebKitAPI
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-TEMPLATE = derived
-
-# Make sure forwarded headers needed by this project are present
-fwheader_generator.commands = perl $${ROOT_WEBKIT_DIR}/Source/WebKit2/Scripts/generate-forwarding-headers.pl $${ROOT_WEBKIT_DIR}/Tools/TestWebKitAPI $${ROOT_BUILD_DIR}/Source/include qt
-fwheader_generator.depends  = $${ROOT_WEBKIT_DIR}/Source/WebKit2/Scripts/generate-forwarding-headers.pl
-GENERATORS += fwheader_generator
diff --git a/Tools/TestWebKitAPI/ForwardingHeaders/WebCore/LayoutUnit.h b/Tools/TestWebKitAPI/ForwardingHeaders/WebCore/LayoutUnit.h
deleted file mode 100644
index de0a745..0000000
--- a/Tools/TestWebKitAPI/ForwardingHeaders/WebCore/LayoutUnit.h
+++ /dev/null
@@ -1,4 +0,0 @@
-#ifndef TestWebKitAPI_FWD_LayoutUnit_h
-#define TestWebKitAPI_FWD_LayoutUnit_h
-#include <LayoutUnit.h>
-#endif
diff --git a/Tools/TestWebKitAPI/GNUmakefile.am b/Tools/TestWebKitAPI/GNUmakefile.am
deleted file mode 100644
index 344f60b..0000000
--- a/Tools/TestWebKitAPI/GNUmakefile.am
+++ /dev/null
@@ -1,248 +0,0 @@
-BUILT_SOURCES += \
-	generate-testwebkitapi-forwarding-headers
-wk2_tests_sources = $(shell ls $(srcdir)/Tools/TestWebKitAPI/Tests/WebKit2/*.cpp)
-generate-testwebkitapi-forwarding-headers: $(WebKit2)/Scripts/generate-forwarding-headers.pl $(wk2_tests_sources)
-	$(AM_V_GEN)$(PERL) $< $(srcdir)/Tools/TestWebKitAPI $(GENSOURCES_WEBKIT2)/include gtk
-	$(AM_V_GEN)$(PERL) $< $(srcdir)/Tools/TestWebKitAPI $(GENSOURCES_WEBKIT2)/include soup
-
-noinst_LTLIBRARIES += \
-	Libraries/libTestWebKitAPIMain.la
-
-Libraries_libTestWebKitAPIMain_la_SOURCES = \
-	Tools/TestWebKitAPI/Test.h \
-	Tools/TestWebKitAPI/TestsController.cpp \
-	Tools/TestWebKitAPI/TestsController.h \
-	Tools/TestWebKitAPI/gtk/main.cpp
-
-# Use -isystem gcc flag so that gcc considers gtest headers as system headers.
-# We need this to avoid a lot of compile warnings due to -Wundef.
-# See http://code.google.com/p/googletest/issues/detail?id=258
-Libraries_libTestWebKitAPIMain_la_CPPFLAGS = \
-	-isystem $(srcdir)/Source/ThirdParty/gtest/include \
-	-I$(srcdir)/Tools/TestWebKitAPI \
-	-I$(srcdir)/Source/ThirdParty/gtest/include \
-	-I$(top_builddir)/DerivedSources/WebKit2/include \
-	$(global_cppflags) \
-	$(javascriptcore_cppflags) \
-	$(GTK_CFLAGS)
-
-noinst_PROGRAMS += \
-	Programs/TestWebKitAPI/TestWTF
-
-Programs_TestWebKitAPI_TestWTF_CPPFLAGS = \
-	$(Libraries_libTestWebKitAPIMain_la_CPPFLAGS) \
-	$(GLIB_LIBS) \
-	$(CAIRO_CFLAGS)
-
-Programs_TestWebKitAPI_TestWTF_LDADD = \
-	Libraries/libTestWebKitAPIMain.la \
-	Libraries/libgtest.la \
-	libWTF.la \
-	$(GTK_LIBS) \
-	$(GLIB_LIBS)
-
-Programs_TestWebKitAPI_TestWTF_LDFLAGS = \
-	-no-install \
-	-no-fast-install
-
-Programs_TestWebKitAPI_TestWTF_SOURCES = \
-	Tools/TestWebKitAPI/Tests/WTF/AtomicString.cpp \
-	Tools/TestWebKitAPI/Tests/WTF/CString.cpp \
-	Tools/TestWebKitAPI/Tests/WTF/CheckedArithmeticOperations.cpp \
-	Tools/TestWebKitAPI/Tests/WTF/Functional.cpp \
-	Tools/TestWebKitAPI/Tests/WTF/HashMap.cpp \
-	Tools/TestWebKitAPI/Tests/WTF/IntegerToStringConversion.cpp \
-	Tools/TestWebKitAPI/Tests/WTF/ListHashSet.cpp \
-	Tools/TestWebKitAPI/Tests/WTF/MathExtras.cpp \
-	Tools/TestWebKitAPI/Tests/WTF/MediaTime.cpp \
-	Tools/TestWebKitAPI/Tests/WTF/RedBlackTree.cpp \
-	Tools/TestWebKitAPI/Tests/WTF/SaturatedArithmeticOperations.cpp \
-	Tools/TestWebKitAPI/Tests/WTF/StringBuilder.cpp \
-	Tools/TestWebKitAPI/Tests/WTF/StringHasher.cpp \
-	Tools/TestWebKitAPI/Tests/WTF/StringImpl.cpp \
-	Tools/TestWebKitAPI/Tests/WTF/StringOperators.cpp \
-	Tools/TestWebKitAPI/Tests/WTF/TemporaryChange.cpp \
-	Tools/TestWebKitAPI/Tests/WTF/VectorBasic.cpp \
-	Tools/TestWebKitAPI/Tests/WTF/Vector.cpp \
-	Tools/TestWebKitAPI/Tests/WTF/VectorReverse.cpp \
-	Tools/TestWebKitAPI/WTFStringUtilities.h
-
-noinst_PROGRAMS += \
-	Programs/TestWebKitAPI/TestGtk
-
-Programs_TestWebKitAPI_TestGtk_CPPFLAGS = \
-	$(Programs_TestWebKitAPI_TestWTF_CPPFLAGS) \
-	$(platformgtk_cppflags) \
-	$(webcore_cppflags) \
-	$(webcoregtk_cppflags) \
-	$(FREETYPE_CFLAGS) \
-	$(GLIB_CFLAGS) \
-	$(GTK_CFLAGS) \
-	$(LIBSOUP_CFLAGS)
-
-Programs_TestWebKitAPI_TestGtk_LDADD = \
-	Libraries/libTestWebKitAPIMain.la \
-	Libraries/libgtest.la \
-	libjavascriptcoregtk-@WEBKITGTK_API_MAJOR_VERSION@.@WEBKITGTK_API_MINOR_VERSION@.la \
-	libPlatformGtk.la \
-	libWebCore.la \
-	libWebCoreGtk.la \
-	$(FREETYPE_LIBS) \
-	$(GLIB_LIBS) \
-	$(GTK_LIBS) \
-	$(LIBSOUP_LIBS)
-
-Programs_TestWebKitAPI_TestGtk_LDFLAGS = \
-	$(Programs_TestWebKitAPI_TestWTF_LDFLAGS)
-
-Programs_TestWebKitAPI_TestGtk_SOURCES = \
-	Source/WebCore/platform/graphics/IntRect.cpp \
-	Source/WebCore/platform/graphics/cairo/IntRectCairo.cpp \
-	Source/WebCore/platform/graphics/gtk/IntRectGtk.cpp \
-	Source/WebCore/platform/gtk/GtkInputMethodFilter.cpp \
-	Tools/TestWebKitAPI/config.h \
-	Tools/TestWebKitAPI/Tests/gtk/InputMethodFilter.cpp
-
-if ENABLE_WEBKIT2
-noinst_PROGRAMS += \
-	Programs/TestWebKitAPI/TestWebKit2
-
-Programs_TestWebKitAPI_TestWebKit2_CPPFLAGS = \
-	$(Programs_TestWebKitAPI_TestWTF_CPPFLAGS) \
-	-I$(top_builddir)/DerivedSources/WebKit2/include \
-	$(FREETYPE_CFLAGS) \
-	$(GLIB_CFLAGS) \
-	$(GTK_CFLAGS) \
-	$(LIBSOUP_CFLAGS)
-
-Programs_TestWebKitAPI_TestWebKit2_LDADD = \
-	Libraries/libTestWebKitAPIMain.la \
-	Libraries/libgtest.la \
-	libjavascriptcoregtk-@WEBKITGTK_API_MAJOR_VERSION@.@WEBKITGTK_API_MINOR_VERSION@.la \
-	libwebkit2gtk-@WEBKITGTK_API_MAJOR_VERSION@.@WEBKITGTK_API_MINOR_VERSION@.la \
-	$(FREETYPE_LIBS) \
-	$(GLIB_LIBS) \
-	$(GTK_LIBS) \
-	$(LIBSOUP_LIBS)
-
-Programs_TestWebKitAPI_TestWebKit2_LDFLAGS = \
-	$(Programs_TestWebKitAPI_TestWTF_LDFLAGS)
-
-Programs_TestWebKitAPI_TestWebKit2_SOURCES = \
-	Tools/TestWebKitAPI/config.h \
-	Tools/TestWebKitAPI/gtk/PlatformUtilitiesGtk.cpp \
-	Tools/TestWebKitAPI/gtk/PlatformWebViewGtk.cpp \
-	Tools/TestWebKitAPI/JavaScriptTest.cpp \
-	Tools/TestWebKitAPI/JavaScriptTest.h \
-	Tools/TestWebKitAPI/PlatformUtilities.cpp \
-	Tools/TestWebKitAPI/PlatformUtilities.h \
-	Tools/TestWebKitAPI/PlatformWebView.h \
-	Tools/TestWebKitAPI/Tests/WebKit2/CanHandleRequest.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/CookieManager.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/DocumentStartUserScriptAlertCrash.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionBasic.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionNoCache.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/DownloadDecideDestinationCrash.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/EvaluateJavaScript.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/FailedLoad.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/Find.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/ForceRepaint.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/FrameMIMETypeHTML.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/FrameMIMETypePNG.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/GetInjectedBundleInitializationUserDataCallback.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/HitTestResultNodeHandle.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/InjectedBundleBasic.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/InjectedBundleInitializationUserDataCallbackWins.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/LoadAlternateHTMLStringWithNonDirectoryURL.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/LoadCanceledNoServerRedirectCallback.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/MouseMoveAfterCrash.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/ReloadPageAfterCrash.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/ResizeWindowAfterCrash.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayout.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFails.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutForImages.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFrames.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/PageLoadBasic.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/PageLoadDidChangeLocationWithinPageForFrame.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/ParentFrame.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/PreventEmptyUserAgent.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/PrivateBrowsingPushStateNoHistoryCallback.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/ResponsivenessTimerDoesntFireEarly.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/RestoreSessionStateContainingFormData.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/ShouldGoToBackForwardListItem.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/SpacebarScrolling.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/UserMessage.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/WillSendSubmitEvent.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/WKConnection.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/WKPageGetScaleFactorNotZero.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/WKPreferences.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/WKString.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/WKStringJSString.cpp
-
-noinst_LTLIBRARIES += \
-	Libraries/libTestWebKitAPIInjectedBundle.la
-
-Libraries_libTestWebKitAPIInjectedBundle_la_SOURCES = \
-	Tools/TestWebKitAPI/InjectedBundleController.cpp \
-	Tools/TestWebKitAPI/InjectedBundleController.h \
-	Tools/TestWebKitAPI/InjectedBundleMain.cpp \
-	Tools/TestWebKitAPI/InjectedBundleTest.h \
-	Tools/TestWebKitAPI/PlatformUtilities.cpp \
-	Tools/TestWebKitAPI/PlatformUtilities.h \
-	Tools/TestWebKitAPI/Tests/WebKit2/CanHandleRequest_Bundle.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/DocumentStartUserScriptAlertCrash_Bundle.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionBasic_Bundle.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionNoCache_Bundle.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/GetInjectedBundleInitializationUserDataCallback_Bundle.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/HitTestResultNodeHandle_Bundle.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/InjectedBundleBasic_Bundle.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/InjectedBundleInitializationUserDataCallbackWins_Bundle.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/LoadCanceledNoServerRedirectCallback_Bundle.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/MouseMoveAfterCrash_Bundle.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayout_Bundle.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFails_Bundle.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutForImages_Bundle.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFrames_Bundle.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/ParentFrame_Bundle.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/ResponsivenessTimerDoesntFireEarly_Bundle.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/ShouldGoToBackForwardListItem_Bundle.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/UserMessage_Bundle.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/WillSendSubmitEvent_Bundle.cpp \
-	Tools/TestWebKitAPI/Tests/WebKit2/WKConnection_Bundle.cpp \
-	Tools/TestWebKitAPI/gtk/InjectedBundleControllerGtk.cpp \
-	Tools/TestWebKitAPI/gtk/PlatformUtilitiesGtk.cpp
-
-Libraries_libTestWebKitAPIInjectedBundle_la_LDFLAGS = \
-	-rpath ${shell pwd}/$(top_builddir)/Libraries/.libs \
-	$(no_undefined) \
-	-avoid-version \
-	-module
-
-Libraries_libTestWebKitAPIInjectedBundle_la_CPPFLAGS = \
-	$(Libraries_libTestWebKitAPIMain_la_CPPFLAGS) \
-	-I$(top_builddir)/DerivedSources/InjectedBundle \
-	$(GTK_CFLAGS)
-
-Libraries_libTestWebKitAPIInjectedBundle_la_CXXFLAGS = \
-	$(global_cxxflags)
-
-Libraries_libTestWebKitAPIInjectedBundle_la_CFLAGS = \
-	$(global_cflags)
-endif # ENABLE_WEBKIT2
-
-EXTRA_DIST += \
-	Tools/TestWebKitAPI/Tests/WebKit2/18-characters.html \
-	Tools/TestWebKitAPI/Tests/WebKit2/file-with-anchor.html \
-	Tools/TestWebKitAPI/Tests/WebKit2/find.html \
-	Tools/TestWebKitAPI/Tests/WebKit2/icon.png \
-	Tools/TestWebKitAPI/Tests/WebKit2/lots-of-iframes.html \
-	Tools/TestWebKitAPI/Tests/WebKit2/lots-of-images.html \
-	Tools/TestWebKitAPI/Tests/WebKit2/lots-of-text.html \
-	Tools/TestWebKitAPI/Tests/WebKit2/mouse-move-listener.html \
-	Tools/TestWebKitAPI/Tests/WebKit2/push-state.html \
-	Tools/TestWebKitAPI/Tests/WebKit2/simple-accelerated-compositing.html \
-	Tools/TestWebKitAPI/Tests/WebKit2/simple-form.html \
-	Tools/TestWebKitAPI/Tests/WebKit2/simple.html \
-	Tools/TestWebKitAPI/Tests/WebKit2/simple-iframe.html \
-	Tools/TestWebKitAPI/Tests/WebKit2/simple-tall.html \
-	Tools/TestWebKitAPI/Tests/WebKit2/spacebar-scrolling.html
diff --git a/Tools/TestWebKitAPI/InjectedBundle-Info.plist b/Tools/TestWebKitAPI/InjectedBundle-Info.plist
deleted file mode 100644
index c285a47..0000000
--- a/Tools/TestWebKitAPI/InjectedBundle-Info.plist
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
-	<key>CFBundleDevelopmentRegion</key>
-	<string>English</string>
-	<key>CFBundleExecutable</key>
-	<string>${EXECUTABLE_NAME}</string>
-	<key>CFBundleIdentifier</key>
-	<string>com.yourcompany.${PRODUCT_NAME:rfc1034identifier}</string>
-	<key>CFBundleInfoDictionaryVersion</key>
-	<string>6.0</string>
-	<key>CFBundlePackageType</key>
-	<string>BNDL</string>
-	<key>CFBundleShortVersionString</key>
-	<string>1.0</string>
-	<key>CFBundleSignature</key>
-	<string>????</string>
-	<key>CFBundleVersion</key>
-	<string>1</string>
-</dict>
-</plist>
diff --git a/Tools/TestWebKitAPI/InjectedBundle.pri b/Tools/TestWebKitAPI/InjectedBundle.pri
deleted file mode 100644
index 171a200..0000000
--- a/Tools/TestWebKitAPI/InjectedBundle.pri
+++ /dev/null
@@ -1,56 +0,0 @@
-# -------------------------------------------------------------------
-# Project file for TestWebKitAPI's InjectedBundle
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-TEMPLATE = lib
-TARGET = TestWebKitAPIInjectedBundle
-
-INCLUDEPATH += $$PWD
-INCLUDEPATH += $${ROOT_WEBKIT_DIR}/Source/ThirdParty/gtest/include
-
-SOURCES += \
-    $$PWD/InjectedBundleController.cpp \
-    $$PWD/InjectedBundleController.h \
-    $$PWD/InjectedBundleMain.cpp \
-    $$PWD/InjectedBundleTest.h \
-    $$PWD/PlatformUtilities.cpp \
-    $$PWD/PlatformUtilities.h \
-    $$PWD/qt/InjectedBundleControllerQt.cpp \
-    $$PWD/qt/PlatformUtilitiesQt.cpp \
-    $$PWD/Tests/WebKit2/CanHandleRequest_Bundle.cpp \
-    $$PWD/Tests/WebKit2/DocumentStartUserScriptAlertCrash_Bundle.cpp \
-    $$PWD/Tests/WebKit2/DOMWindowExtensionBasic_Bundle.cpp \
-    $$PWD/Tests/WebKit2/DOMWindowExtensionNoCache_Bundle.cpp \
-    $$PWD/Tests/WebKit2/GetInjectedBundleInitializationUserDataCallback_Bundle.cpp \
-    $$PWD/Tests/WebKit2/HitTestResultNodeHandle_Bundle.cpp \
-    $$PWD/Tests/WebKit2/InjectedBundleBasic_Bundle.cpp \
-    $$PWD/Tests/WebKit2/InjectedBundleFrameHitTest_Bundle.cpp \
-    $$PWD/Tests/WebKit2/InjectedBundleInitializationUserDataCallbackWins_Bundle.cpp \
-    $$PWD/Tests/WebKit2/LoadCanceledNoServerRedirectCallback_Bundle.cpp \
-    $$PWD/Tests/WebKit2/MouseMoveAfterCrash_Bundle.cpp \
-    $$PWD/Tests/WebKit2/NewFirstVisuallyNonEmptyLayout_Bundle.cpp \
-    $$PWD/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFails_Bundle.cpp \
-    $$PWD/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutForImages_Bundle.cpp \
-    $$PWD/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFrames_Bundle.cpp \
-    $$PWD/Tests/WebKit2/ParentFrame_Bundle.cpp \
-    $$PWD/Tests/WebKit2/ResponsivenessTimerDoesntFireEarly_Bundle.cpp \
-    $$PWD/Tests/WebKit2/ShouldGoToBackForwardListItem_Bundle.cpp \
-    $$PWD/Tests/WebKit2/UserMessage_Bundle.cpp \
-    $$PWD/Tests/WebKit2/WillSendSubmitEvent_Bundle.cpp \
-    $$PWD/Tests/WebKit2/WKConnection_Bundle.cpp
-
-
-DESTDIR = $${ROOT_BUILD_DIR}/lib
-
-QT += core webkit
-
-WEBKIT += wtf javascriptcore webcore webkit2
-
-CONFIG += plugin rpath compiling_thirdparty_code
-
-LIBS += -L$${ROOT_BUILD_DIR}/Source/ThirdParty/gtest/$$targetSubDir() -lgtest
-
-DEFINES += APITEST_SOURCE_DIR=\\\"$$PWD\\\" \
-           ROOT_BUILD_DIR=\\\"$${ROOT_BUILD_DIR}\\\"
diff --git a/Tools/TestWebKitAPI/InjectedBundleController.cpp b/Tools/TestWebKitAPI/InjectedBundleController.cpp
deleted file mode 100644
index fb78013..0000000
--- a/Tools/TestWebKitAPI/InjectedBundleController.cpp
+++ /dev/null
@@ -1,141 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleController.h"
-
-#include "InjectedBundleTest.h"
-#include "PlatformUtilities.h"
-#include <algorithm>
-#include <assert.h>
-
-namespace TestWebKitAPI {
-
-InjectedBundleController& InjectedBundleController::shared()
-{
-    static InjectedBundleController& shared = *new InjectedBundleController;
-    return shared;
-}
-
-InjectedBundleController::InjectedBundleController()
-    : m_bundle(0)
-    , m_currentTest(0)
-{
-}
-
-void InjectedBundleController::initialize(WKBundleRef bundle, WKTypeRef initializationUserData)
-{
-    platformInitialize();
-
-    m_bundle = bundle;
-
-    if (!initializationUserData)
-        return;
-
-    WKBundleClient client = {
-        0,
-        this,
-        didCreatePage,
-        willDestroyPage,
-        didInitializePageGroup,
-        didReceiveMessage,
-        didReceiveMessageToPage
-    };
-    WKBundleSetClient(m_bundle, &client);
-
-    // Initialize the test from the "initializationUserData".
-
-    assert(WKGetTypeID(initializationUserData) == WKDictionaryGetTypeID());
-    WKDictionaryRef initializationDictionary = static_cast<WKDictionaryRef>(initializationUserData);
-
-    WKRetainPtr<WKStringRef> testNameKey(AdoptWK, WKStringCreateWithUTF8CString("TestName"));
-    WKStringRef testName = static_cast<WKStringRef>(WKDictionaryGetItemForKey(initializationDictionary, testNameKey.get()));
-
-    WKRetainPtr<WKStringRef> userDataKey(AdoptWK, WKStringCreateWithUTF8CString("UserData"));
-    WKTypeRef userData = WKDictionaryGetItemForKey(initializationDictionary, userDataKey.get());
-    initializeTestNamed(bundle, Util::toSTD(testName), userData);
-}
-
-void InjectedBundleController::didCreatePage(WKBundleRef bundle, WKBundlePageRef page, const void* clientInfo)
-{
-    InjectedBundleController* self = static_cast<InjectedBundleController*>(const_cast<void*>(clientInfo));
-    assert(self->m_currentTest);
-    self->m_currentTest->didCreatePage(bundle, page);
-}
-
-void InjectedBundleController::willDestroyPage(WKBundleRef bundle, WKBundlePageRef page, const void* clientInfo)
-{
-    InjectedBundleController* self = static_cast<InjectedBundleController*>(const_cast<void*>(clientInfo));
-    assert(self->m_currentTest);
-    self->m_currentTest->willDestroyPage(bundle, page);
-}
-
-void InjectedBundleController::didInitializePageGroup(WKBundleRef bundle, WKBundlePageGroupRef pageGroup, const void* clientInfo)
-{
-    InjectedBundleController* self = static_cast<InjectedBundleController*>(const_cast<void*>(clientInfo));
-    assert(self->m_currentTest);
-    self->m_currentTest->didInitializePageGroup(bundle, pageGroup);
-}
-
-void InjectedBundleController::didReceiveMessage(WKBundleRef bundle, WKStringRef messageName, WKTypeRef messageBody, const void* clientInfo)
-{
-    InjectedBundleController* self = static_cast<InjectedBundleController*>(const_cast<void*>(clientInfo));
-    assert(self->m_currentTest);
-    self->m_currentTest->didReceiveMessage(bundle, messageName, messageBody);
-}
-
-void InjectedBundleController::didReceiveMessageToPage(WKBundleRef bundle, WKBundlePageRef page, WKStringRef messageName, WKTypeRef messageBody, const void* clientInfo)
-{
-    InjectedBundleController* self = static_cast<InjectedBundleController*>(const_cast<void*>(clientInfo));
-    assert(self->m_currentTest);
-    self->m_currentTest->didReceiveMessageToPage(bundle, page, messageName, messageBody);
-}
-
-void InjectedBundleController::dumpTestNames()
-{
-    std::map<std::string, CreateInjectedBundleTestFunction>::const_iterator it = m_createInjectedBundleTestFunctions.begin();
-    std::map<std::string, CreateInjectedBundleTestFunction>::const_iterator end = m_createInjectedBundleTestFunctions.end();
-    for (; it != end; ++it)
-        printf("%s\n", (*it).first.c_str());
-}
-
-void InjectedBundleController::initializeTestNamed(WKBundleRef bundle, const std::string& identifier, WKTypeRef userData)
-{
-    CreateInjectedBundleTestFunction createTestFunction = m_createInjectedBundleTestFunctions[identifier];
-    if (!createTestFunction) {
-        printf("ERROR: InjectedBundle test not found - %s\n", identifier.c_str());
-        exit(1);
-    }
-
-    m_currentTest = createTestFunction(identifier);
-    m_currentTest->initialize(bundle, userData);
-}
-
-void InjectedBundleController::registerCreateInjectedBundleTestFunction(const std::string& identifier, CreateInjectedBundleTestFunction function)
-{
-    m_createInjectedBundleTestFunctions[identifier] = function;
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/InjectedBundleController.h b/Tools/TestWebKitAPI/InjectedBundleController.h
deleted file mode 100644
index 0ca1125..0000000
--- a/Tools/TestWebKitAPI/InjectedBundleController.h
+++ /dev/null
@@ -1,70 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef InjectedBundleController_h
-#define InjectedBundleController_h
-
-#include <WebKit2/WKBundle.h>
-#include <map>
-#include <string>
-
-namespace TestWebKitAPI {
-
-class InjectedBundleTest;
-
-class InjectedBundleController {
-public:
-    static InjectedBundleController& shared();
-
-    void initialize(WKBundleRef, WKTypeRef);
-
-    void dumpTestNames();
-    void initializeTestNamed(WKBundleRef bundle, const std::string&, WKTypeRef userData);
-
-    typedef InjectedBundleTest* (*CreateInjectedBundleTestFunction)(const std::string&);
-    void registerCreateInjectedBundleTestFunction(const std::string&, CreateInjectedBundleTestFunction);
-
-    WKBundleRef bundle() const { return m_bundle; }
-    
-private:
-    InjectedBundleController();
-    ~InjectedBundleController();
-
-    void platformInitialize();
-
-    static void didCreatePage(WKBundleRef, WKBundlePageRef, const void* clientInfo);
-    static void willDestroyPage(WKBundleRef, WKBundlePageRef, const void* clientInfo);
-    static void didInitializePageGroup(WKBundleRef, WKBundlePageGroupRef, const void* clientInfo);
-    static void didReceiveMessage(WKBundleRef, WKStringRef messageName, WKTypeRef messageBody, const void* clientInfo);
-    static void didReceiveMessageToPage(WKBundleRef, WKBundlePageRef, WKStringRef messageName, WKTypeRef messageBody, const void* clientInfo);
-
-    std::map<std::string, CreateInjectedBundleTestFunction> m_createInjectedBundleTestFunctions;
-    WKBundleRef m_bundle;
-    InjectedBundleTest* m_currentTest;
-};
-
-} // namespace TestWebKitAPI
-
-#endif // InjectedBundleController_h
diff --git a/Tools/TestWebKitAPI/InjectedBundleMain.cpp b/Tools/TestWebKitAPI/InjectedBundleMain.cpp
deleted file mode 100644
index 8ad6c2b..0000000
--- a/Tools/TestWebKitAPI/InjectedBundleMain.cpp
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleController.h"
-#include <WebKit2/WKBundleInitialize.h>
-
-#if defined(WIN32) || defined(_WIN32)
-extern "C" __declspec(dllexport) 
-#else
-extern "C"
-#endif
-void WKBundleInitialize(WKBundleRef bundle, WKTypeRef initializationUserData)
-{
-    TestWebKitAPI::InjectedBundleController::shared().initialize(bundle, initializationUserData);
-}
diff --git a/Tools/TestWebKitAPI/InjectedBundleTest.h b/Tools/TestWebKitAPI/InjectedBundleTest.h
deleted file mode 100644
index d0f996a..0000000
--- a/Tools/TestWebKitAPI/InjectedBundleTest.h
+++ /dev/null
@@ -1,72 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef InjectedBundleTest_h
-#define InjectedBundleTest_h
-
-#include "InjectedBundleController.h"
-
-namespace TestWebKitAPI {
-
-class InjectedBundleTest {
-public:
-    virtual ~InjectedBundleTest() { }
-
-    virtual void initialize(WKBundleRef, WKTypeRef) { }
-
-    virtual void didCreatePage(WKBundleRef, WKBundlePageRef) { }
-    virtual void willDestroyPage(WKBundleRef, WKBundlePageRef) { }
-    virtual void didInitializePageGroup(WKBundleRef, WKBundlePageGroupRef) { }
-    virtual void didReceiveMessage(WKBundleRef, WKStringRef messageName, WKTypeRef messageBody) { }
-    virtual void didReceiveMessageToPage(WKBundleRef, WKBundlePageRef, WKStringRef messageName, WKTypeRef messageBody) { }
-
-    std::string name() const { return m_identifier; }
-    
-    template<typename TestClassTy> class Register {
-    public:
-        Register(const std::string& test)
-        {
-            InjectedBundleController::shared().registerCreateInjectedBundleTestFunction(test, Register::create);
-        }
-
-    private:
-        static InjectedBundleTest* create(const std::string& identifier) 
-        {
-            return new TestClassTy(identifier);
-        }
-    };
-
-protected:
-    InjectedBundleTest(const std::string& identifier)
-        : m_identifier(identifier)
-    {
-    }
-
-    std::string m_identifier;
-};
-
-} // namespace TestWebKitAPI
-
-#endif // InjectedBundleTest_h
diff --git a/Tools/TestWebKitAPI/JavaScriptTest.cpp b/Tools/TestWebKitAPI/JavaScriptTest.cpp
deleted file mode 100644
index 85be892..0000000
--- a/Tools/TestWebKitAPI/JavaScriptTest.cpp
+++ /dev/null
@@ -1,92 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "JavaScriptTest.h"
-
-#include "PlatformUtilities.h"
-#include "Test.h"
-#include <JavaScriptCore/JSContextRef.h>
-#include <JavaScriptCore/JSRetainPtr.h>
-#include <WebKit2/WKRetainPtr.h>
-#include <WebKit2/WKSerializedScriptValue.h>
-#include <wtf/OwnArrayPtr.h>
-
-namespace TestWebKitAPI {
-
-struct JavaScriptCallbackContext {
-    JavaScriptCallbackContext() : didFinish(false) { }
-
-    bool didFinish;
-    JSRetainPtr<JSStringRef> actualString;
-};
-
-static void javaScriptCallback(WKSerializedScriptValueRef resultSerializedScriptValue, WKErrorRef error, void* ctx)
-{
-    ASSERT_NOT_NULL(resultSerializedScriptValue);
-
-    JavaScriptCallbackContext* context = static_cast<JavaScriptCallbackContext*>(ctx);
-
-    JSGlobalContextRef scriptContext = JSGlobalContextCreate(0);
-    ASSERT_NOT_NULL(scriptContext);
-
-    JSValueRef scriptValue = WKSerializedScriptValueDeserialize(resultSerializedScriptValue, scriptContext, 0);
-    ASSERT_NOT_NULL(scriptValue);
-
-    context->actualString.adopt(JSValueToStringCopy(scriptContext, scriptValue, 0));
-    ASSERT_NOT_NULL(context->actualString.get());
-
-    context->didFinish = true;
-
-    JSGlobalContextRelease(scriptContext);
-
-    EXPECT_NULL(error);
-}
-
-::testing::AssertionResult runJSTest(const char*, const char*, const char*, WKPageRef page, const char* script, const char* expectedResult)
-{
-    JavaScriptCallbackContext context;
-    WKPageRunJavaScriptInMainFrame(page, Util::toWK(script).get(), &context, javaScriptCallback);
-    Util::run(&context.didFinish);
-
-    size_t bufferSize = JSStringGetMaximumUTF8CStringSize(context.actualString.get());
-    OwnArrayPtr<char> buffer = adoptArrayPtr(new char[bufferSize]);
-    JSStringGetUTF8CString(context.actualString.get(), buffer.get(), bufferSize);
-    
-    return compareJSResult(script, buffer.get(), expectedResult);
-}
-    
-::testing::AssertionResult compareJSResult(const char* script, const char* actualResult, const char* expectedResult)
-{
-    if (!strcmp(actualResult, expectedResult))
-        return ::testing::AssertionSuccess();
-
-    return ::testing::AssertionFailure()
-        << "JS expression: " << script << "\n"
-        << "       Actual: " << actualResult << "\n"
-        << "     Expected: " << expectedResult;
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/JavaScriptTest.h b/Tools/TestWebKitAPI/JavaScriptTest.h
deleted file mode 100644
index c6e79c3..0000000
--- a/Tools/TestWebKitAPI/JavaScriptTest.h
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#if PLATFORM(MAC)
-#ifdef __OBJC__
-@class WKView;
-@class WebView;
-#else
-class WKView;
-class WebView;
-#endif
-#endif
-
-namespace TestWebKitAPI {
-
-// These macros execute |script| in the page and wait until it has run, then compare its return
-// value to the expected result.
-#define EXPECT_JS_EQ(page, script, result) EXPECT_PRED_FORMAT3(runJSTest, page, script, result)
-#define EXPECT_JS_FALSE(page, script) EXPECT_JS_EQ(page, script, "false")
-#define EXPECT_JS_TRUE(page, script) EXPECT_JS_EQ(page, script, "true")
-
-::testing::AssertionResult runJSTest(const char* pageExpr, const char* scriptExpr, const char* expectedResultExpr, WKPageRef, const char* script, const char* expectedResult);
-::testing::AssertionResult compareJSResult(const char* script, const char* actualResult, const char* expectedResult);
-
-#if PLATFORM(MAC)
-::testing::AssertionResult runJSTest(const char* webViewExpr, const char* scriptExpr, const char* expectedResultExpr, WebView *, const char* script, const char* expectedResult);
-::testing::AssertionResult runJSTest(const char* viewExpr, const char* scriptExpr, const char* expectedResultExpr, WKView *, const char* script, const char* expectedResult);
-#endif
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Makefile b/Tools/TestWebKitAPI/Makefile
deleted file mode 100644
index ed01cce..0000000
--- a/Tools/TestWebKitAPI/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-# Build TestWebKitAPI only on Snow Leopard and later.
-
-OSX_VERSION ?= $(shell sw_vers -productVersion | cut -d. -f 2)
-BUILD_TESTWEBKITAPI = $(shell (( $(OSX_VERSION) >= 6 )) && echo "YES" )
-
-ifeq "$(BUILD_TESTWEBKITAPI)" "YES"
-
-SCRIPTS_PATH = ../Scripts
-include ../../Makefile.shared
-
-else
-
-all: ;
-
-debug d development dev develop: ;
-
-release r deployment dep deploy: ;
-
-clean: ;
-
-endif
diff --git a/Tools/TestWebKitAPI/PlatformEfl.cmake b/Tools/TestWebKitAPI/PlatformEfl.cmake
deleted file mode 100644
index a717559..0000000
--- a/Tools/TestWebKitAPI/PlatformEfl.cmake
+++ /dev/null
@@ -1,107 +0,0 @@
-add_custom_target(forwarding-headersEflForTestWebKitAPI
-    COMMAND ${PERL_EXECUTABLE} ${WEBKIT2_DIR}/Scripts/generate-forwarding-headers.pl ${WEBKIT2_DIR} ${DERIVED_SOURCES_WEBKIT2_DIR}/include efl
-    COMMAND ${PERL_EXECUTABLE} ${WEBKIT2_DIR}/Scripts/generate-forwarding-headers.pl ${TESTWEBKITAPI_DIR} ${DERIVED_SOURCES_WEBKIT2_DIR}/include efl
-)
-set(ForwardingHeadersForTestWebKitAPI_NAME forwarding-headersEflForTestWebKitAPI)
-
-add_custom_target(forwarding-headersSoupForTestWebKitAPI
-    COMMAND ${PERL_EXECUTABLE} ${WEBKIT2_DIR}/Scripts/generate-forwarding-headers.pl ${WEBKIT2_DIR} ${DERIVED_SOURCES_WEBKIT2_DIR}/include soup
-    COMMAND ${PERL_EXECUTABLE} ${WEBKIT2_DIR}/Scripts/generate-forwarding-headers.pl ${TESTWEBKITAPI_DIR} ${DERIVED_SOURCES_WEBKIT2_DIR}/include soup
-)
-set(ForwardingNetworkHeadersForTestWebKitAPI_NAME forwarding-headersSoupForTestWebKitAPI)
-
-include_directories(
-    ${WEBKIT2_DIR}/UIProcess/API/C/soup
-    ${WEBKIT2_DIR}/UIProcess/API/C/efl
-    ${WEBKIT2_DIR}/UIProcess/API/efl
-    ${ECORE_EVAS_INCLUDE_DIRS}
-    ${ECORE_INCLUDE_DIRS}
-    ${EINA_INCLUDE_DIRS}
-    ${EO_INCLUDE_DIRS}
-    ${EVAS_INCLUDE_DIRS}
-    ${GLIB_INCLUDE_DIRS}
-    ${LIBSOUP_INCLUDE_DIRS}
-)
-
-set(test_main_SOURCES
-    ${TESTWEBKITAPI_DIR}/efl/main.cpp
-)
-
-set(bundle_harness_SOURCES
-    ${TESTWEBKITAPI_DIR}/efl/InjectedBundleController.cpp
-    ${TESTWEBKITAPI_DIR}/efl/PlatformUtilities.cpp
-)
-
-set(webkit2_api_harness_SOURCES
-    ${TESTWEBKITAPI_DIR}/efl/PlatformUtilities.cpp
-    ${TESTWEBKITAPI_DIR}/efl/PlatformWebView.cpp
-)
-
-# The list below works like a test expectation. Tests in the
-# test_{webkit2_api|webcore}_BINARIES list are added to the test runner and
-# tried on the bots on every build. Tests in test_{webkit2_api|webcore}_BINARIES
-# are compiled and suffixed with fail and skipped from the test runner.
-#
-# Make sure that the tests are passing on both Debug and
-# Release builds before adding it to test_{webkit2_api|webcore}_BINARIES.
-
-set(test_webcore_BINARIES
-    LayoutUnit
-    KURL
-)
-
-set(test_webkit2_api_BINARIES
-    AboutBlankLoad
-    CookieManager
-    DOMWindowExtensionNoCache
-    DocumentStartUserScriptAlertCrash
-    EvaluateJavaScript
-    FailedLoad
-    Find
-    ForceRepaint
-    FrameMIMETypeHTML
-    FrameMIMETypePNG
-    GetInjectedBundleInitializationUserDataCallback
-    HitTestResultNodeHandle
-    InjectedBundleBasic
-    InjectedBundleFrameHitTest
-    InjectedBundleInitializationUserDataCallbackWins
-    LoadAlternateHTMLStringWithNonDirectoryURL
-    LoadCanceledNoServerRedirectCallback
-    MouseMoveAfterCrash
-    ReloadPageAfterCrash
-    ResizeWindowAfterCrash
-    NewFirstVisuallyNonEmptyLayout
-    NewFirstVisuallyNonEmptyLayoutFails
-    NewFirstVisuallyNonEmptyLayoutForImages
-    PageLoadBasic
-    PageLoadDidChangeLocationWithinPageForFrame
-    ParentFrame
-    PreventEmptyUserAgent
-    PrivateBrowsingPushStateNoHistoryCallback
-    ShouldGoToBackForwardListItem
-    UserMessage
-    WKConnection
-    WKPreferences
-    WKString
-    WKStringJSString
-    WKURL
-    WillSendSubmitEvent
-    efl/WKViewClientWebProcessCallbacks
-)
-
-set(test_webkit2_api_fail_BINARIES
-    CanHandleRequest
-    DOMWindowExtensionBasic
-    DownloadDecideDestinationCrash
-    NewFirstVisuallyNonEmptyLayoutFrames
-    RestoreSessionStateContainingFormData
-    WKPageGetScaleFactorNotZero
-)
-
-add_definitions(-DTHEME_DIR="${THEME_BINARY_DIR}")
-
-# Tests disabled because of missing features on the test harness:
-#
-#   ResponsivenessTimerDoesntFireEarly
-#   SpacebarScrolling
diff --git a/Tools/TestWebKitAPI/PlatformUtilities.cpp b/Tools/TestWebKitAPI/PlatformUtilities.cpp
deleted file mode 100644
index 1ded2a9..0000000
--- a/Tools/TestWebKitAPI/PlatformUtilities.cpp
+++ /dev/null
@@ -1,91 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-
-#include <wtf/OwnArrayPtr.h>
-#include <wtf/PassOwnArrayPtr.h>
-
-namespace TestWebKitAPI {
-namespace Util {
-
-WKContextRef createContextWithInjectedBundle()
-{
-    WKRetainPtr<WKStringRef> injectedBundlePath(AdoptWK, createInjectedBundlePath());
-    WKContextRef context = WKContextCreateWithInjectedBundlePath(injectedBundlePath.get());
-
-    return context;
-}
-
-WKDictionaryRef createInitializationDictionaryForInjectedBundleTest(const std::string& testName, WKTypeRef userData)
-{
-    WKMutableDictionaryRef initializationDictionary = WKMutableDictionaryCreate();
-
-    WKRetainPtr<WKStringRef> testNameKey(AdoptWK, WKStringCreateWithUTF8CString("TestName"));
-    WKRetainPtr<WKStringRef> testNameString(AdoptWK, WKStringCreateWithUTF8CString(testName.c_str()));
-    WKDictionaryAddItem(initializationDictionary, testNameKey.get(), testNameString.get());
-
-    WKRetainPtr<WKStringRef> userDataKey(AdoptWK, WKStringCreateWithUTF8CString("UserData"));
-    WKDictionaryAddItem(initializationDictionary, userDataKey.get(), userData);
-
-    return initializationDictionary;
-}
-
-WKContextRef createContextForInjectedBundleTest(const std::string& testName, WKTypeRef userData)
-{
-    WKContextRef context = createContextWithInjectedBundle();
-
-    WKRetainPtr<WKDictionaryRef> initializationDictionary(AdoptWK, createInitializationDictionaryForInjectedBundleTest(testName, userData));
-    WKContextSetInitializationUserDataForInjectedBundle(context, initializationDictionary.get());
-
-    return context;
-}
-
-std::string toSTD(WKStringRef string)
-{
-    size_t bufferSize = WKStringGetMaximumUTF8CStringSize(string);
-    OwnArrayPtr<char> buffer = adoptArrayPtr(new char[bufferSize]);
-    size_t stringLength = WKStringGetUTF8CString(string, buffer.get(), bufferSize);
-    return std::string(buffer.get(), stringLength - 1);
-}
-
-std::string toSTD(WKRetainPtr<WKStringRef> string)
-{
-    return toSTD(string.get());
-}
-
-std::string toSTD(const char* string)
-{
-    return std::string(string);
-}
-
-WKRetainPtr<WKStringRef> toWK(const char* utf8String)
-{
-    return WKRetainPtr<WKStringRef>(AdoptWK, WKStringCreateWithUTF8CString(utf8String));
-}
-
-} // namespace Util
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/PlatformUtilities.h b/Tools/TestWebKitAPI/PlatformUtilities.h
deleted file mode 100644
index 10da84d..0000000
--- a/Tools/TestWebKitAPI/PlatformUtilities.h
+++ /dev/null
@@ -1,84 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef PlatformUtilities_h
-#define PlatformUtilities_h
-
-#include <WebKit2/WKRetainPtr.h>
-#include <string>
-
-#if PLATFORM(MAC)
-#if __OBJC__
-@class NSString;
-#else
-class NSString;
-#endif
-#endif
-
-namespace TestWebKitAPI {
-namespace Util {
-
-// Runs a platform runloop until the 'done' is true. 
-void run(bool* done);
-
-#if PLATFORM(WIN)
-bool shouldTranslateMessage(const MSG&);
-#endif
-
-void sleep(double seconds);
-
-WKContextRef createContextWithInjectedBundle();
-WKContextRef createContextForInjectedBundleTest(const std::string&, WKTypeRef userData = 0);
-WKDictionaryRef createInitializationDictionaryForInjectedBundleTest(const std::string&, WKTypeRef userData);
-
-WKStringRef createInjectedBundlePath();
-WKURLRef createURLForResource(const char* resource, const char* extension);
-WKURLRef URLForNonExistentResource();
-WKRetainPtr<WKStringRef> MIMETypeForWKURLResponse(WKURLResponseRef);
-
-bool isKeyDown(WKNativeEventPtr);
-
-std::string toSTD(WKStringRef);
-std::string toSTD(WKRetainPtr<WKStringRef>);
-std::string toSTD(const char*);
-#if PLATFORM(MAC)
-std::string toSTD(NSString *);
-#endif
-
-WKRetainPtr<WKStringRef> toWK(const char* utf8String);
-
-template<typename T, typename U>
-static inline ::testing::AssertionResult assertWKStringEqual(const char* expected_expression, const char* actual_expression, T expected, U actual)
-{
-    return ::testing::internal::CmpHelperSTREQ(expected_expression, actual_expression, Util::toSTD(expected).c_str(), Util::toSTD(actual).c_str());
-}
-
-#define EXPECT_WK_STREQ(expected, actual) \
-    EXPECT_PRED_FORMAT2(TestWebKitAPI::Util::assertWKStringEqual, expected, actual)
-
-} // namespace Util
-} // namespace TestWebKitAPI
-
-#endif // PlatformUtilities_h
diff --git a/Tools/TestWebKitAPI/PlatformWebView.h b/Tools/TestWebKitAPI/PlatformWebView.h
deleted file mode 100644
index 5594ee4..0000000
--- a/Tools/TestWebKitAPI/PlatformWebView.h
+++ /dev/null
@@ -1,105 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef PlatformWebView_h
-#define PlatformWebView_h
-
-#if USE(CG)
-#include <CoreGraphics/CGGeometry.h>
-#endif
-
-#ifdef __APPLE__
-#ifdef __OBJC__
-@class WKView;
-@class NSWindow;
-#else
-class WKView;
-class NSWindow;
-#endif
-typedef WKView *PlatformWKView;
-typedef NSWindow *PlatformWindow;
-#elif defined(WIN32) || defined(_WIN32)
-typedef WKViewRef PlatformWKView;
-typedef HWND PlatformWindow;
-#elif PLATFORM(GTK)
-typedef WKViewRef PlatformWKView;
-typedef GtkWidget *PlatformWindow;
-#elif PLATFORM(EFL)
-typedef struct _Ecore_Evas Ecore_Evas;
-typedef struct _Evas_Object Evas_Object;
-typedef Evas_Object* PlatformWKView;
-typedef Ecore_Evas* PlatformWindow;
-#elif PLATFORM(QT)
-QT_BEGIN_NAMESPACE
-class QQuickView;
-QT_END_NAMESPACE
-class QQuickWebView;
-typedef QQuickWebView* PlatformWKView;
-typedef QQuickView* PlatformWindow;
-#endif
-
-namespace TestWebKitAPI {
-
-#if PLATFORM(WIN)
-class WindowMessageObserver;
-#endif
-
-class PlatformWebView {
-public:
-    PlatformWebView(WKContextRef, WKPageGroupRef = 0);
-    ~PlatformWebView();
-
-    WKPageRef page() const;
-    PlatformWKView platformView() const { return m_view; }
-    void resizeTo(unsigned width, unsigned height);
-    void focus();
-
-    void simulateSpacebarKeyPress();
-    void simulateAltKeyPress();
-    void simulateRightClick(unsigned x, unsigned y);
-    void simulateMouseMove(unsigned x, unsigned y);
-
-#if PLATFORM(WIN)
-    void simulateAKeyDown();
-    void setParentWindowMessageObserver(WindowMessageObserver* observer) { m_parentWindowMessageObserver = observer; }
-#endif
-
-private:
-#if PLATFORM(WIN)
-    static void registerWindowClass();
-    static LRESULT CALLBACK wndProc(HWND, UINT message, WPARAM, LPARAM);
-#endif
-
-    PlatformWKView m_view;
-    PlatformWindow m_window;
-
-#if PLATFORM(WIN)
-    WindowMessageObserver* m_parentWindowMessageObserver;
-#endif
-};
-
-} // namespace TestWebKitAPI
-
-#endif // PlatformWebView_h
diff --git a/Tools/TestWebKitAPI/Test.h b/Tools/TestWebKitAPI/Test.h
deleted file mode 100644
index ca43924..0000000
--- a/Tools/TestWebKitAPI/Test.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef Test_h
-#define Test_h
-
-namespace TestWebKitAPI {
-
-#define EXPECT_NOT_NULL(expression) \
-    EXPECT_TRUE(expression)
-
-#define EXPECT_NULL(expression) \
-    EXPECT_TRUE(!(expression))
-
-#define ASSERT_NOT_NULL(expression) \
-    ASSERT_TRUE(expression)
-
-#define ASSERT_NULL(expression) \
-    ASSERT_TRUE(!(expression))
-
-} // namespace TestWebKitAPI
-
-#endif // Test_h
diff --git a/Tools/TestWebKitAPI/TestWebKitAPI.gyp/.gitignore b/Tools/TestWebKitAPI/TestWebKitAPI.gyp/.gitignore
deleted file mode 100644
index 2ca14bf..0000000
--- a/Tools/TestWebKitAPI/TestWebKitAPI.gyp/.gitignore
+++ /dev/null
@@ -1,6 +0,0 @@
-*.Makefile
-*.mk
-*.sln
-*.vcproj*
-*.vcxproj*
-*.xcodeproj*
diff --git a/Tools/TestWebKitAPI/TestWebKitAPI.gyp/TestWebKitAPI.gyp b/Tools/TestWebKitAPI/TestWebKitAPI.gyp/TestWebKitAPI.gyp
deleted file mode 100644
index f2c5fa5..0000000
--- a/Tools/TestWebKitAPI/TestWebKitAPI.gyp/TestWebKitAPI.gyp
+++ /dev/null
@@ -1,171 +0,0 @@
-#
-# Copyright (C) 2012 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#         * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#         * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#         * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#
-
-{
-    'variables': {
-        'tools_dir': '../..',
-        'source_dir': '../../../Source',
-        'conditions': [
-            # Location of the chromium src directory and target type is different
-            # if webkit is built inside chromium or as standalone project.
-            ['inside_chromium_build==0', {
-                # Webkit is being built outside of the full chromium project.
-                # e.g. via build-webkit --chromium
-                'chromium_src_dir': '<(source_dir)/WebKit/chromium',
-            },{
-                # WebKit is checked out in src/chromium/third_party/WebKit
-                'chromium_src_dir': '<(tools_dir)/../../..',
-            }],
-        ],
-    },
-    'includes': [
-        '../TestWebKitAPI.gypi',
-        '../../../Source/WebKit/chromium/features.gypi',
-    ],
-    'targets': [
-        {
-            'target_name': 'TestWebKitAPI',
-            'type': 'executable',
-            'dependencies': [
-                '<(source_dir)/WebCore/WebCore.gyp/WebCore.gyp:webcore',
-                '<(source_dir)/WebKit/chromium/WebKit.gyp:webkit',
-                '<(source_dir)/WTF/WTF.gyp/WTF.gyp:wtf',
-                '<(chromium_src_dir)/build/temp_gyp/googleurl.gyp:googleurl',
-                '<(chromium_src_dir)/v8/tools/gyp/v8.gyp:v8',
-                '<(chromium_src_dir)/base/base.gyp:test_support_base',
-                '<(chromium_src_dir)/testing/gtest.gyp:gtest',
-                '<(chromium_src_dir)/testing/gmock.gyp:gmock',
-                '<(chromium_src_dir)/webkit/support/webkit_support.gyp:webkit_support',
-            ],
-            'include_dirs': [
-                '<(tools_dir)/TestWebKitAPI',
-                # Needed by tests/RunAllTests.cpp, as well as ChromiumCurrentTime.cpp and
-                # ChromiumThreading.cpp in chromium shared library configuration.
-                '<(source_dir)/WebKit/chromium/public',
-                '<(tools_dir)/TestWebKitAPI/ForwardingHeaders',
-            ],
-            'sources': [
-                # Reuse the same testing driver of Chromium's webkit_unit_tests.
-                '<(source_dir)/WebKit/chromium/tests/RunAllTests.cpp',
-                '<@(TestWebKitAPI_files)',
-            ],
-            'conditions': [
-                ['component!="shared_library"', {
-                    'sources': [
-		        '../Tests/WebCore/HeapGraphSerializerTest.cpp'
-                    ],
-                }],
-                ['inside_chromium_build==1 and component=="shared_library"', {
-                    'sources': [
-                        # To satisfy linking of WTF::currentTime() etc. in shared library configuration,
-                        # as the symbols are not exported from the DLLs.
-                        '<(source_dir)/WebKit/chromium/src/ChromiumCurrentTime.cpp',
-                        '<(source_dir)/WebKit/chromium/src/ChromiumThreading.cpp',
-                    ],
-                }],
-                ['OS=="android" and gtest_target_type == "shared_library"', {
-                    'type': 'shared_library',
-                    'dependencies': [
-                        '<(chromium_src_dir)/testing/android/native_test.gyp:native_test_native_code',
-                    ],
-                }],
-            ],
-        },
-    ], # targets
-    'conditions': [
-        ['OS=="android" and gtest_target_type == "shared_library"', {
-            # Wrap libTestWebKitAPI.so into an android apk for execution.
-            'targets': [{
-                'target_name': 'TestWebKitAPI_apk',
-                'type': 'none',
-                'dependencies': [
-                    '<(chromium_src_dir)/base/base.gyp:base_java',
-                    'TestWebKitAPI',
-                ],
-                'variables': {
-                    'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)TestWebKitAPI<(SHARED_LIB_SUFFIX)',
-                    'conditions': [
-                        ['inside_chromium_build==1', {
-                            'ant_build_to_chromium_src': '<(ant_build_out)/../../',
-                        }, {
-                            'ant_build_to_chromium_src': '<(chromium_src_dir)',
-                        }],
-                    ],
-                },
-                # Part of the following was copied from <(chromium_src_dir)/build/apk_test.gpyi.
-                # Not including it because gyp include doesn't support variable in path or under
-                # conditions. And we also have some different requirements.
-                'actions': [{
-                    'action_name': 'apk_TestWebKitAPI',
-                    'message': 'Building TestWebKitAPI test apk.',
-                    'inputs': [
-                        '<(chromium_src_dir)/testing/android/AndroidManifest.xml',
-                        '<(chromium_src_dir)/testing/android/generate_native_test.py',
-                        '<(input_shlib_path)',
-                        '>@(input_jars_paths)',
-                    ],
-                    'outputs': [
-                        '<(PRODUCT_DIR)/TestWebKitAPI_apk/TestWebKitAPI-debug.apk',
-                    ],
-                    'action': [
-                        '<(chromium_src_dir)/testing/android/generate_native_test.py',
-                        '--native_library',
-                        '<(input_shlib_path)',
-                        '--output',
-                        '<(PRODUCT_DIR)/TestWebKitAPI_apk',
-                        '--strip-binary=<(android_strip)',
-                        '--ant-args',
-                        '-quiet',
-                        '--ant-args',
-                        '-DANDROID_SDK=<(android_sdk)',
-                        '--ant-args',
-                        '-DANDROID_SDK_ROOT=<(android_sdk_root)',
-                        '--ant-args',
-                        '-DANDROID_SDK_TOOLS=<(android_sdk_tools)',
-                        '--ant-args',
-                        '-DANDROID_SDK_VERSION=<(android_sdk_version)',
-                        '--ant-args',
-                        '-DANDROID_TOOLCHAIN=<(android_toolchain)',
-                        '--ant-args',
-                        '-DANDROID_GDBSERVER=<(android_gdbserver)',
-                        '--ant-args',
-                        '-DPRODUCT_DIR=<(ant_build_out)',
-                        '--ant-args',
-                        '-DCHROMIUM_SRC=<(ant_build_to_chromium_src)',
-                        '--ant-args',
-                        '-DINPUT_JARS_PATHS=>@(input_jars_paths)',
-                        '--app_abi',
-                        '<(android_app_abi)',
-                    ],
-                }],
-            }],
-        }],
-    ],
-}
diff --git a/Tools/TestWebKitAPI/TestWebKitAPI.gypi b/Tools/TestWebKitAPI/TestWebKitAPI.gypi
deleted file mode 100644
index 0f71e82..0000000
--- a/Tools/TestWebKitAPI/TestWebKitAPI.gypi
+++ /dev/null
@@ -1,58 +0,0 @@
-#
-# Copyright (C) 2011 Google Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-#         * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#         * Redistributions in binary form must reproduce the above
-# copyright notice, this list of conditions and the following disclaimer
-# in the documentation and/or other materials provided with the
-# distribution.
-#         * Neither the name of Google Inc. nor the names of its
-# contributors may be used to endorse or promote products derived from
-# this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#
-
-{
-    'variables': {
-        'TestWebKitAPI_files': [
-            'Tests/WebCore/LayoutUnit.cpp',
-            'Tests/WTF/AtomicString.cpp',
-            'Tests/WTF/CheckedArithmeticOperations.cpp',
-            'Tests/WTF/CString.cpp',
-            'Tests/WTF/Functional.cpp',
-            'Tests/WTF/HashMap.cpp',
-            'Tests/WTF/HashSet.cpp',
-            'Tests/WTF/ListHashSet.cpp',
-            'Tests/WTF/MathExtras.cpp',
-            'Tests/WTF/MediaTime.cpp',
-            'Tests/WTF/MemoryInstrumentationTest.cpp',
-            'Tests/WTF/RedBlackTree.cpp',
-            'Tests/WTF/SaturatedArithmeticOperations.cpp',
-            'Tests/WTF/StringBuilder.cpp',
-            'Tests/WTF/StringHasher.cpp',
-            'Tests/WTF/StringImpl.cpp',
-            'Tests/WTF/StringOperators.cpp',
-            'Tests/WTF/TemporaryChange.cpp',
-            'Tests/WTF/Vector.cpp',
-            'Tests/WTF/VectorBasic.cpp',
-            'Tests/WTF/VectorReverse.cpp',
-            'Tests/WTF/WTFString.cpp',
-        ],
-    },
-}
diff --git a/Tools/TestWebKitAPI/TestWebKitAPI.pri b/Tools/TestWebKitAPI/TestWebKitAPI.pri
deleted file mode 100644
index ddc9934..0000000
--- a/Tools/TestWebKitAPI/TestWebKitAPI.pri
+++ /dev/null
@@ -1,22 +0,0 @@
-
-INCLUDEPATH += $$PWD $${ROOT_WEBKIT_DIR}/Source/ThirdParty/gtest/include
-WEBKIT += wtf javascriptcore webkit2
-
-DEFINES += QT_NO_CAST_FROM_ASCII
-
-QT += core core-private gui gui-private webkit quick quick-private
-
-CONFIG += compiling_thirdparty_code
-
-SOURCES += \
-    $$PWD/JavaScriptTest.cpp \
-    $$PWD/PlatformUtilities.cpp \
-    $$PWD/TestsController.cpp \
-    $$PWD/qt/main.cpp \
-    $$PWD/qt/PlatformUtilitiesQt.cpp \
-    $$PWD/qt/PlatformWebViewQt.cpp
-
-LIBS += -L$${ROOT_BUILD_DIR}/Source/ThirdParty/gtest/$$targetSubDir() -lgtest
-
-DEFINES += ROOT_BUILD_DIR=\\\"$${ROOT_BUILD_DIR}\\\"
-
diff --git a/Tools/TestWebKitAPI/TestWebKitAPI.pro b/Tools/TestWebKitAPI/TestWebKitAPI.pro
deleted file mode 100644
index b9d0cd5..0000000
--- a/Tools/TestWebKitAPI/TestWebKitAPI.pro
+++ /dev/null
@@ -1,11 +0,0 @@
-TEMPLATE = subdirs
-CONFIG += ordered
-
-derived_sources.file = DerivedSources.pri
-injected_bundle.file = InjectedBundle.pri
-tests.file = Tests.pri
-
-SUBDIRS += derived_sources injected_bundle tests
-
-addStrictSubdirOrderBetween(derived_sources, injected_bundle)
-addStrictSubdirOrderBetween(derived_sources, tests)
diff --git a/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPI.sln b/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPI.sln
deleted file mode 100644
index 38b2fd6..0000000
--- a/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPI.sln
+++ /dev/null
@@ -1,29 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 11.00
-# Visual Studio 2010
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestWebKitAPI", "TestWebKitAPI.vcxproj", "{AF94D13A-36C1-45FF-9B0B-EB5D3FF6F43D}"
-	ProjectSection(ProjectDependencies) = postProject
-		{C8F6C172-56F2-4E76-B5FA-C3B423B31BE8} = {C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}
-	EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest-md", "..\..\..\Source\ThirdParty\gtest\msvc\gtest-md.vcxproj", "{C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}"
-EndProject
-Global
-	GlobalSection(SolutionConfigurationPlatforms) = preSolution
-		Debug|Win32 = Debug|Win32
-		Release|Win32 = Release|Win32
-	EndGlobalSection
-	GlobalSection(ProjectConfigurationPlatforms) = postSolution
-		{AF94D13A-36C1-45FF-9B0B-EB5D3FF6F43D}.Debug|Win32.ActiveCfg = Debug|Win32
-		{AF94D13A-36C1-45FF-9B0B-EB5D3FF6F43D}.Debug|Win32.Build.0 = Debug|Win32
-		{AF94D13A-36C1-45FF-9B0B-EB5D3FF6F43D}.Release|Win32.ActiveCfg = Release|Win32
-		{AF94D13A-36C1-45FF-9B0B-EB5D3FF6F43D}.Release|Win32.Build.0 = Release|Win32
-		{C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}.Debug|Win32.ActiveCfg = Debug|Win32
-		{C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}.Debug|Win32.Build.0 = Debug|Win32
-		{C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}.Release|Win32.ActiveCfg = Release|Win32
-		{C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}.Release|Win32.Build.0 = Release|Win32
-	EndGlobalSection
-	GlobalSection(SolutionProperties) = preSolution
-		HideSolutionNode = FALSE
-	EndGlobalSection
-EndGlobal
diff --git a/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPI.vcxproj b/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPI.vcxproj
deleted file mode 100644
index d4907c4..0000000
--- a/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPI.vcxproj
+++ /dev/null
@@ -1,181 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ItemGroup Label="ProjectConfigurations">

-    <ProjectConfiguration Include="DebugSuffix|Win32">

-      <Configuration>DebugSuffix</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Debug_WinCairo|Win32">

-      <Configuration>Debug_WinCairo</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Debug|Win32">

-      <Configuration>Debug</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Production|Win32">

-      <Configuration>Production</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Release_WinCairo|Win32">

-      <Configuration>Release_WinCairo</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Release|Win32">

-      <Configuration>Release</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-  </ItemGroup>

-  <PropertyGroup Label="Globals">

-    <ProjectGuid>{AF94D13A-36C1-45FF-9B0B-EB5D3FF6F43D}</ProjectGuid>

-    <Keyword>Win32Proj</Keyword>

-    <RootNamespace>TestWebKitAPI</RootNamespace>

-  </PropertyGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <UseDebugLibraries>true</UseDebugLibraries>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <UseDebugLibraries>true</UseDebugLibraries>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <UseDebugLibraries>true</UseDebugLibraries>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <UseDebugLibraries>false</UseDebugLibraries>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <UseDebugLibraries>false</UseDebugLibraries>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Production|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <UseDebugLibraries>false</UseDebugLibraries>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />

-  <ImportGroup Label="ExtensionSettings">

-  </ImportGroup>

-  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="TestWebKitAPIDebug.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="TestWebKitAPIDebugWinCairo.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="TestWebKitAPIDebug.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\debugsuffix.props" />

-  </ImportGroup>

-  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="TestWebKitAPIRelease.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="TestWebKitAPIReleaseWinCairo.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Production|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="TestWebKitAPIProduction.props" />

-  </ImportGroup>

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'" />

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'" />

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'" />

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Production|Win32'" />

-  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">

-    <ClCompile>

-      <PrecompiledHeader>

-      </PrecompiledHeader>

-    </ClCompile>

-    <Link />

-  </ItemDefinitionGroup>

-  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'">

-    <ClCompile>

-      <PrecompiledHeader>

-      </PrecompiledHeader>

-    </ClCompile>

-    <Link />

-  </ItemDefinitionGroup>

-  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'">

-    <ClCompile>

-      <PrecompiledHeader>

-      </PrecompiledHeader>

-    </ClCompile>

-    <Link />

-  </ItemDefinitionGroup>

-  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">

-    <ClCompile>

-      <PrecompiledHeader>

-      </PrecompiledHeader>

-    </ClCompile>

-    <Link />

-  </ItemDefinitionGroup>

-  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">

-    <ClCompile>

-      <PrecompiledHeader>

-      </PrecompiledHeader>

-    </ClCompile>

-    <Link />

-  </ItemDefinitionGroup>

-  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">

-    <ClCompile>

-      <PrecompiledHeader>

-      </PrecompiledHeader>

-    </ClCompile>

-    <Link />

-  </ItemDefinitionGroup>

-  <ItemGroup>

-    <ClInclude Include="..\config.h" />

-    <ClInclude Include="..\Test.h" />

-    <ClInclude Include="..\TestsController.h" />

-    <ClInclude Include="..\win\HostWindow.h" />

-  </ItemGroup>

-  <ItemGroup>

-    <ClCompile Include="..\TestsController.cpp" />

-    <ClCompile Include="..\Tests\WebCore\LayoutUnit.cpp" />

-    <ClCompile Include="..\Tests\WebCore\win\BitmapImage.cpp">

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'">true</ExcludedFromBuild>

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">true</ExcludedFromBuild>

-      <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>

-    </ClCompile>

-    <ClCompile Include="..\Tests\WebKit\win\WebViewDestruction.cpp" />

-    <ClCompile Include="..\Tests\WTF\cf\RetainPtr.cpp" />

-    <ClCompile Include="..\Tests\WTF\cf\RetainPtrHashing.cpp" />

-    <ClCompile Include="..\Tests\WTF\CheckedArithmeticOperations.cpp" />

-    <ClCompile Include="..\Tests\WTF\Functional.cpp" />

-    <ClCompile Include="..\Tests\WTF\HashMap.cpp" />

-    <ClCompile Include="..\Tests\WTF\MathExtras.cpp" />

-    <ClCompile Include="..\Tests\WTF\MediaTime.cpp" />

-    <ClCompile Include="..\Tests\WTF\SaturatedArithmeticOperations.cpp" />

-    <ClCompile Include="..\Tests\WTF\StringHasher.cpp" />

-    <ClCompile Include="..\Tests\WTF\StringOperators.cpp" />

-    <ClCompile Include="..\Tests\WTF\Vector.cpp" />

-    <ClCompile Include="..\Tests\WTF\VectorBasic.cpp" />

-    <ClCompile Include="..\Tests\WTF\VectorReverse.cpp" />

-    <ClCompile Include="..\win\HostWindow.cpp" />

-    <ClCompile Include="..\win\main.cpp" />

-  </ItemGroup>

-  <ItemGroup>

-    <None Include="TestWebKitAPIPostBuild.cmd" />

-    <None Include="TestWebKitAPIPreBuild.cmd" />

-  </ItemGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />

-  <ImportGroup Label="ExtensionTargets">

-  </ImportGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPI.vcxproj.filters b/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPI.vcxproj.filters
deleted file mode 100644
index 3756383..0000000
--- a/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPI.vcxproj.filters
+++ /dev/null
@@ -1,92 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ItemGroup>

-    <Filter Include="Tests">

-      <UniqueIdentifier>{80b7e5c5-5c50-4363-ae7b-a0956e6a688d}</UniqueIdentifier>

-    </Filter>

-    <Filter Include="win">

-      <UniqueIdentifier>{e0b41579-994a-4d5e-9c2a-2ec14cd0c606}</UniqueIdentifier>

-    </Filter>

-    <Filter Include="Tests\WTF">

-      <UniqueIdentifier>{87f2c8f6-8710-4785-a918-2aec42c9f1d3}</UniqueIdentifier>

-    </Filter>

-    <Filter Include="Tests\WebCore">

-      <UniqueIdentifier>{77db1e64-3c2d-4de3-adc1-860d4ea1c3c2}</UniqueIdentifier>

-    </Filter>

-    <Filter Include="Tests\WebKit">

-      <UniqueIdentifier>{f8236406-78aa-4c83-b393-b060b09405a3}</UniqueIdentifier>

-    </Filter>

-    <Filter Include="Tests\WTF\cf">

-      <UniqueIdentifier>{909ce22a-2223-4afa-af44-2d0153f13cc6}</UniqueIdentifier>

-    </Filter>

-  </ItemGroup>

-  <ItemGroup>

-    <ClInclude Include="..\config.h" />

-    <ClInclude Include="..\Test.h" />

-    <ClInclude Include="..\TestsController.h" />

-    <ClInclude Include="..\win\HostWindow.h">

-      <Filter>win</Filter>

-    </ClInclude>

-  </ItemGroup>

-  <ItemGroup>

-    <ClCompile Include="..\TestsController.cpp" />

-    <ClCompile Include="..\win\HostWindow.cpp">

-      <Filter>win</Filter>

-    </ClCompile>

-    <ClCompile Include="..\win\main.cpp">

-      <Filter>win</Filter>

-    </ClCompile>

-    <ClCompile Include="..\Tests\WebCore\win\BitmapImage.cpp">

-      <Filter>Tests\WebCore</Filter>

-    </ClCompile>

-    <ClCompile Include="..\Tests\WebCore\LayoutUnit.cpp">

-      <Filter>Tests\WebCore</Filter>

-    </ClCompile>

-    <ClCompile Include="..\Tests\WebKit\win\WebViewDestruction.cpp">

-      <Filter>Tests\WebKit</Filter>

-    </ClCompile>

-    <ClCompile Include="..\Tests\WTF\CheckedArithmeticOperations.cpp">

-      <Filter>Tests\WTF</Filter>

-    </ClCompile>

-    <ClCompile Include="..\Tests\WTF\Functional.cpp">

-      <Filter>Tests\WTF</Filter>

-    </ClCompile>

-    <ClCompile Include="..\Tests\WTF\HashMap.cpp">

-      <Filter>Tests\WTF</Filter>

-    </ClCompile>

-    <ClCompile Include="..\Tests\WTF\MathExtras.cpp">

-      <Filter>Tests\WTF</Filter>

-    </ClCompile>

-    <ClCompile Include="..\Tests\WTF\MediaTime.cpp">

-      <Filter>Tests\WTF</Filter>

-    </ClCompile>

-    <ClCompile Include="..\Tests\WTF\SaturatedArithmeticOperations.cpp">

-      <Filter>Tests\WTF</Filter>

-    </ClCompile>

-    <ClCompile Include="..\Tests\WTF\StringHasher.cpp">

-      <Filter>Tests\WTF</Filter>

-    </ClCompile>

-    <ClCompile Include="..\Tests\WTF\StringOperators.cpp">

-      <Filter>Tests\WTF</Filter>

-    </ClCompile>

-    <ClCompile Include="..\Tests\WTF\Vector.cpp">

-      <Filter>Tests\WTF</Filter>

-    </ClCompile>

-    <ClCompile Include="..\Tests\WTF\VectorBasic.cpp">

-      <Filter>Tests\WTF</Filter>

-    </ClCompile>

-    <ClCompile Include="..\Tests\WTF\VectorReverse.cpp">

-      <Filter>Tests\WTF</Filter>

-    </ClCompile>

-    <ClCompile Include="..\Tests\WTF\cf\RetainPtr.cpp">

-      <Filter>Tests\WTF\cf</Filter>

-    </ClCompile>

-    <ClCompile Include="..\Tests\WTF\cf\RetainPtrHashing.cpp">

-      <Filter>Tests\WTF\cf</Filter>

-    </ClCompile>

-  </ItemGroup>

-  <ItemGroup>

-    <None Include="TestWebKitAPIPostBuild.cmd" />

-    <None Include="TestWebKitAPIPreBuild.cmd" />

-  </ItemGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPICommon.props b/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPICommon.props
deleted file mode 100644
index 3d589a4..0000000
--- a/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPICommon.props
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets" />

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup />

-  <ItemDefinitionGroup>

-    <Link>

-      <SubSystem>Console</SubSystem>

-      <AdditionalDependencies>CFNetwork.lib;CoreFoundation.lib;WebKit.lib;JavaScriptCore.lib;gtest.lib;%(AdditionalDependencies)</AdditionalDependencies>

-    </Link>

-    <ClCompile>

-      <AdditionalIncludeDirectories>$(ProjectDir)..;$(ProjectDir)..\win;$(ConfigurationBuildDir)\Include;$(ConfigurationBuildDir)\Include\private\JavaScriptCore;$(ConfigurationBuildDir)\Include\WebCore\ForwardingHeaders;$(ConfigurationBuildDir)\Include\private;$(WebKit_Source)\ThirdParty\gtest\include;$(WebKit_Libraries)\include;$(WebKit_Libraries)\Include\private;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>

-      <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>

-    </ClCompile>

-  </ItemDefinitionGroup>

-  <ItemGroup />

-</Project>
\ No newline at end of file
diff --git a/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPICommonWinCairo.props b/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPICommonWinCairo.props
deleted file mode 100644
index fc15249..0000000
--- a/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPICommonWinCairo.props
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets" />

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup />

-  <ItemDefinitionGroup>

-    <Link>

-      <SubSystem>Console</SubSystem>

-      <AdditionalDependencies>CFLite.lib;WebKit.lib;JavaScriptCore.lib;gtest.lib;%(AdditionalDependencies)</AdditionalDependencies>

-    </Link>

-    <ClCompile>

-      <AdditionalIncludeDirectories>$(ProjectDir)..;$(ProjectDir)..\win;$(ConfigurationBuildDir)\Include;$(ConfigurationBuildDir)\Include\private\JavaScriptCore;$(ConfigurationBuildDir)\Include\WebCore\ForwardingHeaders;$(ConfigurationBuildDir)\Include\private;$(WebKit_Source)\ThirdParty\gtest\include;$(WebKit_Libraries)\include;$(WebKit_Libraries)\Include\private;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>

-      <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>

-    </ClCompile>

-  </ItemDefinitionGroup>

-  <ItemGroup />

-</Project>

diff --git a/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIDebug.props b/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIDebug.props
deleted file mode 100644
index 72fe2c9..0000000
--- a/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIDebug.props
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\FeatureDefines.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\debug.props" />

-    <Import Project="TestWebKitAPICommon.props" />

-  </ImportGroup>

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup />

-  <ItemDefinitionGroup />

-  <ItemGroup />

-</Project>
\ No newline at end of file
diff --git a/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIDebugWinCairo.props b/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIDebugWinCairo.props
deleted file mode 100644
index 6fafee9..0000000
--- a/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIDebugWinCairo.props
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\FeatureDefinesCairo.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\debug.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\WinCairo.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\cURL.props" />

-    <Import Project="TestWebKitAPICommonWinCairo.props" />

-  </ImportGroup>

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup />

-  <ItemDefinitionGroup />

-  <ItemGroup />

-</Project>

diff --git a/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIPostBuild.cmd b/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIPostBuild.cmd
deleted file mode 100644
index 26707ca..0000000
--- a/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIPostBuild.cmd
+++ /dev/null
@@ -1 +0,0 @@
-if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed"
diff --git a/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIPreBuild.cmd b/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIPreBuild.cmd
deleted file mode 100644
index a770776..0000000
--- a/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIPreBuild.cmd
+++ /dev/null
@@ -1,6 +0,0 @@
-%SystemDrive%\cygwin\bin\which.exe bash
-if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
-cmd /c
-if exist "%CONFIGURATIONBUILDDIR%\buildfailed" grep XX%PROJECTNAME%XX "%CONFIGURATIONBUILDDIR%\buildfailed"
-if errorlevel 1 exit 1
-echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed"
diff --git a/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIProduction.props b/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIProduction.props
deleted file mode 100644
index 7c252b6..0000000
--- a/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIProduction.props
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\FeatureDefines.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\production.props" />

-    <Import Project="TestWebKitAPICommon.props" />

-  </ImportGroup>

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup />

-  <ItemDefinitionGroup />

-  <ItemGroup />

-</Project>
\ No newline at end of file
diff --git a/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIRelease.props b/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIRelease.props
deleted file mode 100644
index 0c1ccbf..0000000
--- a/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIRelease.props
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\FeatureDefines.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\release.props" />

-    <Import Project="TestWebKitAPICommon.props" />

-  </ImportGroup>

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup />

-  <ItemDefinitionGroup />

-  <ItemGroup />

-</Project>
\ No newline at end of file
diff --git a/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIReleaseWinCairo.props b/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIReleaseWinCairo.props
deleted file mode 100644
index 9ef4ff5..0000000
--- a/Tools/TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPIReleaseWinCairo.props
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\FeatureDefinesCairo.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\release.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\WinCairo.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\cURL.props" />

-    <Import Project="TestWebKitAPICommonWinCairo.props" />

-  </ImportGroup>

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup />

-  <ItemDefinitionGroup />

-  <ItemGroup />

-</Project>

diff --git a/Tools/TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj b/Tools/TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj
deleted file mode 100644
index 5f66b09..0000000
--- a/Tools/TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj
+++ /dev/null
@@ -1,1243 +0,0 @@
-// !$*UTF8*$!
-{
-	archiveVersion = 1;
-	classes = {
-	};
-	objectVersion = 45;
-	objects = {
-
-/* Begin PBXBuildFile section */
-		00BC16871680FE810065F1E5 /* PublicSuffix.mm in Sources */ = {isa = PBXBuildFile; fileRef = 00BC16851680FE810065F1E5 /* PublicSuffix.mm */; };
-		00CD9F6315BE312C002DA2CE /* BackForwardList.mm in Sources */ = {isa = PBXBuildFile; fileRef = 00CD9F6215BE312C002DA2CE /* BackForwardList.mm */; };
-		0BCD833514857CE400EA2003 /* HashMap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BCD833414857CE400EA2003 /* HashMap.cpp */; };
-		0BCD856A1485C98B00EA2003 /* TemporaryChange.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BCD85691485C98B00EA2003 /* TemporaryChange.cpp */; };
-		0F17BBD615AF6C4D007AB753 /* WebCoreStatisticsWithNoWebProcess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0F17BBD415AF6C4D007AB753 /* WebCoreStatisticsWithNoWebProcess.cpp */; };
-		0FC6C4CC141027E0005B7F0C /* RedBlackTree.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FC6C4CB141027E0005B7F0C /* RedBlackTree.cpp */; };
-		0FC6C4CF141034AD005B7F0C /* MetaAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FC6C4CE141034AD005B7F0C /* MetaAllocator.cpp */; };
-		14464013167A8305000BD218 /* LayoutUnit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14464012167A8305000BD218 /* LayoutUnit.cpp */; };
-		14F3B11315E45EAB00210069 /* SaturatedArithmeticOperations.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14F3B11215E45EAB00210069 /* SaturatedArithmeticOperations.cpp */; };
-		1A02C84F125D4A8400E3F4BD /* Find.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A02C84E125D4A8400E3F4BD /* Find.cpp */; };
-		1A02C870125D4CFD00E3F4BD /* find.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 1A02C84B125D4A5E00E3F4BD /* find.html */; };
-		1A5FEFDD1270E2A3000E2921 /* EvaluateJavaScript.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A5FEFDC1270E2A3000E2921 /* EvaluateJavaScript.cpp */; };
-		1A9E52C913E65EF4006917F5 /* 18-characters.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = C045F9461385C2F800C0F3CD /* 18-characters.html */; };
-		1AA9E55914980A9900001A8A /* Functional.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AA9E55714980A9900001A8A /* Functional.cpp */; };
-		1ADBEFAE130C689C00D61D19 /* ForceRepaint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1ADBEFAD130C689C00D61D19 /* ForceRepaint.cpp */; };
-		1ADBEFE3130C6AA100D61D19 /* simple-accelerated-compositing.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 1ADBEFBC130C6A0100D61D19 /* simple-accelerated-compositing.html */; };
-		1AEDE22613E5E7E700E62FE8 /* InjectedBundleControllerMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1AEDE22413E5E7A000E62FE8 /* InjectedBundleControllerMac.mm */; };
-		261516D615B0E60500A2C201 /* SetAndUpdateCacheModel.mm in Sources */ = {isa = PBXBuildFile; fileRef = 261516D515B0E60500A2C201 /* SetAndUpdateCacheModel.mm */; };
-		26300B1816755CD90066886D /* ListHashSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26300B1716755CD90066886D /* ListHashSet.cpp */; };
-		265AF55015D1E48A00B0CB4A /* WTFString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 265AF54F15D1E48A00B0CB4A /* WTFString.cpp */; };
-		266FAFD315E5775200F61D5B /* IntegerToStringConversion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 266FAFD215E5775200F61D5B /* IntegerToStringConversion.cpp */; };
-		26A2C72F15E2E73C005B1A14 /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26A2C72E15E2E73C005B1A14 /* CString.cpp */; };
-		26B2DFF915BDE599004F691D /* HashSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26B2DFF815BDE599004F691D /* HashSet.cpp */; };
-		26DF5A5E15A29BAA003689C2 /* CancelLoadFromResourceLoadDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 26DF5A5D15A29BAA003689C2 /* CancelLoadFromResourceLoadDelegate.mm */; };
-		26DF5A6315A2A27E003689C2 /* CancelLoadFromResourceLoadDelegate.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 26DF5A6115A2A22B003689C2 /* CancelLoadFromResourceLoadDelegate.html */; };
-		26F1B44415CA434F00D1E4BF /* AtomicString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26F1B44215CA434F00D1E4BF /* AtomicString.cpp */; };
-		26F1B44515CA434F00D1E4BF /* StringImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26F1B44315CA434F00D1E4BF /* StringImpl.cpp */; };
-		2943BE86161DFEB800999E3D /* UserContentTest.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2943BE84161DFEB800999E3D /* UserContentTest.mm */; };
-		29AB8AA1164C735800D49BEC /* CustomProtocolsTest.mm in Sources */ = {isa = PBXBuildFile; fileRef = 29AB8A9F164C735800D49BEC /* CustomProtocolsTest.mm */; };
-		29AB8AA4164C7A9300D49BEC /* TestBrowsingContextLoadDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 29AB8AA2164C7A9300D49BEC /* TestBrowsingContextLoadDelegate.mm */; };
-		2E7765CD16C4D80A00BA2BB1 /* mainIOS.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2E7765CC16C4D80A00BA2BB1 /* mainIOS.mm */; };
-		2E7765CF16C4D81100BA2BB1 /* mainMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2E7765CE16C4D81100BA2BB1 /* mainMac.mm */; };
-		333B9CE21277F23100FEFCE3 /* PreventEmptyUserAgent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 333B9CE11277F23100FEFCE3 /* PreventEmptyUserAgent.cpp */; };
-		33BE5AF5137B5A6C00705813 /* MouseMoveAfterCrash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 33BE5AF4137B5A6C00705813 /* MouseMoveAfterCrash.cpp */; };
-		33BE5AF9137B5AAE00705813 /* MouseMoveAfterCrash_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 33BE5AF8137B5AAE00705813 /* MouseMoveAfterCrash_Bundle.cpp */; };
-		33DC8911141953A300747EF7 /* LoadCanceledNoServerRedirectCallback.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 33DC8910141953A300747EF7 /* LoadCanceledNoServerRedirectCallback.cpp */; };
-		33DC8912141955FE00747EF7 /* simple-iframe.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 33DC890E1419539300747EF7 /* simple-iframe.html */; };
-		33DC89141419579F00747EF7 /* LoadCanceledNoServerRedirectCallback_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 33DC89131419579F00747EF7 /* LoadCanceledNoServerRedirectCallback_Bundle.cpp */; };
-		33E79E06137B5FD900E32D99 /* mouse-move-listener.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 33E79E05137B5FCE00E32D99 /* mouse-move-listener.html */; };
-		37200B9213A16230007A4FAD /* VectorReverse.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 37200B9113A16230007A4FAD /* VectorReverse.cpp */; };
-		3722C8691461E03E00C45D00 /* RenderedImageFromDOMRange.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3722C8681461E03E00C45D00 /* RenderedImageFromDOMRange.mm */; };
-		3751AF7C169518F800764319 /* DOMNodeFromJSObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3751AF7A169518F800764319 /* DOMNodeFromJSObject.mm */; };
-		3776BC63150946BC0043A66D /* DeviceScaleFactorInDashboardRegions.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3776BC62150946BC0043A66D /* DeviceScaleFactorInDashboardRegions.mm */; };
-		378E64731632646D00B6C676 /* InjectedBundleFrameHitTest.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 378E64711632646D00B6C676 /* InjectedBundleFrameHitTest.cpp */; };
-		378E64771632655E00B6C676 /* InjectedBundleFrameHitTest_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 378E64751632655D00B6C676 /* InjectedBundleFrameHitTest_Bundle.cpp */; };
-		378E64791632707400B6C676 /* link-with-title.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 378E647816326FDF00B6C676 /* link-with-title.html */; };
-		379028B614FABD92007E6B43 /* AcceptsFirstMouse.mm in Sources */ = {isa = PBXBuildFile; fileRef = 379028B514FABD92007E6B43 /* AcceptsFirstMouse.mm */; };
-		379028B914FAC24C007E6B43 /* acceptsFirstMouse.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 379028B814FABE49007E6B43 /* acceptsFirstMouse.html */; };
-		3799AD3A14120A43005EB0C6 /* StringByEvaluatingJavaScriptFromString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3799AD3914120A43005EB0C6 /* StringByEvaluatingJavaScriptFromString.mm */; };
-		37A6895F148A9B50005100FA /* SubresourceErrorCrash.mm in Sources */ = {isa = PBXBuildFile; fileRef = 37A6895D148A9B50005100FA /* SubresourceErrorCrash.mm */; };
-		37DC678D140D7C5000ABCCDB /* DOMRangeOfString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 37DC678B140D7C5000ABCCDB /* DOMRangeOfString.mm */; };
-		37DC6791140D7D7600ABCCDB /* DOMRangeOfString.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 37DC678F140D7D3A00ABCCDB /* DOMRangeOfString.html */; };
-		37E1064C1697681800B78BD0 /* DOMHTMLTableCellElementCellAbove.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 37E1064B169767F700B78BD0 /* DOMHTMLTableCellElementCellAbove.html */; };
-		37E1064D16976C8500B78BD0 /* DOMHTMLTableCellCellAbove.mm in Sources */ = {isa = PBXBuildFile; fileRef = 37E1064A1697676400B78BD0 /* DOMHTMLTableCellCellAbove.mm */; };
-		37E38C34169B7D010084C28C /* WebViewDidRemoveFrameFromHierarchy.mm in Sources */ = {isa = PBXBuildFile; fileRef = 37E38C33169B7D010084C28C /* WebViewDidRemoveFrameFromHierarchy.mm */; };
-		440A1D3914A0103A008A66F2 /* KURL.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 440A1D3814A0103A008A66F2 /* KURL.cpp */; };
-		4BB4160216815B2600824238 /* JSWrapperForNodeInWebFrame.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4BB4160116815B2600824238 /* JSWrapperForNodeInWebFrame.mm */; };
-		4BB4160416815F9100824238 /* ElementAtPointInWebFrame.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4BB4160316815F9100824238 /* ElementAtPointInWebFrame.mm */; };
-		4BFDFFA71314776C0061F24B /* HitTestResultNodeHandle_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BFDFFA61314776C0061F24B /* HitTestResultNodeHandle_Bundle.cpp */; };
-		4BFDFFA9131477770061F24B /* HitTestResultNodeHandle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BFDFFA8131477770061F24B /* HitTestResultNodeHandle.cpp */; };
-		4F4D2C0E1626FE2700320FE1 /* MemoryInstrumentationTest.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F4D2C0D1626FE2700320FE1 /* MemoryInstrumentationTest.cpp */; };
-		51393E201523944A005F39C5 /* DOMWindowExtensionBasic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51393E1E1523944A005F39C5 /* DOMWindowExtensionBasic.cpp */; };
-		51393E221523952D005F39C5 /* DOMWindowExtensionBasic_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51393E1D1523944A005F39C5 /* DOMWindowExtensionBasic_Bundle.cpp */; };
-		5142B2711517C88B00C32B19 /* ContextMenuCanCopyURL.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5142B2701517C88B00C32B19 /* ContextMenuCanCopyURL.mm */; };
-		5142B2731517C8C800C32B19 /* ContextMenuCanCopyURL.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 5142B2721517C89100C32B19 /* ContextMenuCanCopyURL.html */; };
-		517E7DFC15110EA600D0B008 /* MemoryCachePruneWithinResourceLoadDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 517E7DFB15110EA600D0B008 /* MemoryCachePruneWithinResourceLoadDelegate.mm */; };
-		517E7E04151119C100D0B008 /* MemoryCachePruneWithinResourceLoadDelegate.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 517E7E031511187500D0B008 /* MemoryCachePruneWithinResourceLoadDelegate.html */; };
-		51E93017156B13E1004C99DF /* WKPageGetScaleFactorNotZero.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51E93016156B13E1004C99DF /* WKPageGetScaleFactorNotZero.cpp */; };
-		51FBBB4D1513D4E900822738 /* WebViewCanPasteURL.mm in Sources */ = {isa = PBXBuildFile; fileRef = 51FBBB4C1513D4E900822738 /* WebViewCanPasteURL.mm */; };
-		51FCF79A1534AC6D00104491 /* ShouldGoToBackForwardListItem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51FCF7981534AC6D00104491 /* ShouldGoToBackForwardListItem.cpp */; };
-		51FCF7A11534B2A000104491 /* ShouldGoToBackForwardListItem_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51FCF7971534AC6D00104491 /* ShouldGoToBackForwardListItem_Bundle.cpp */; };
-		520BCF4C141EB09E00937EA8 /* WebArchive_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 520BCF4A141EB09E00937EA8 /* WebArchive_Bundle.cpp */; };
-		520BCF4D141EB09E00937EA8 /* WebArchive.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 520BCF4B141EB09E00937EA8 /* WebArchive.cpp */; };
-		52B8CF9615868CF000281053 /* SetDocumentURI.mm in Sources */ = {isa = PBXBuildFile; fileRef = 52B8CF9515868CF000281053 /* SetDocumentURI.mm */; };
-		52B8CF9815868D9100281053 /* SetDocumentURI.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 52B8CF9415868CF000281053 /* SetDocumentURI.html */; };
-		52CB47411448FB9300873995 /* LoadAlternateHTMLStringWithNonDirectoryURL.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52CB47401448FB9300873995 /* LoadAlternateHTMLStringWithNonDirectoryURL.cpp */; };
-		52E5CE4614D21E9D003B2BD8 /* ParentFrame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52E5CE4514D21E9D003B2BD8 /* ParentFrame.cpp */; };
-		52E5CE4914D21EAB003B2BD8 /* ParentFrame_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52E5CE4814D21EAB003B2BD8 /* ParentFrame_Bundle.cpp */; };
-		76E182DA1547550100F1FADD /* WillSendSubmitEvent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 76E182D91547550100F1FADD /* WillSendSubmitEvent.cpp */; };
-		76E182DD1547569100F1FADD /* WillSendSubmitEvent_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 76E182DC1547569100F1FADD /* WillSendSubmitEvent_Bundle.cpp */; };
-		76E182DF154767E600F1FADD /* auto-submitting-form.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 76E182DE15475A8300F1FADD /* auto-submitting-form.html */; };
-		81B50193140F232300D9EB58 /* StringBuilder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81B50192140F232300D9EB58 /* StringBuilder.cpp */; };
-		8A2C750E16CED9550024F352 /* ResizeWindowAfterCrash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A2C750D16CED9550024F352 /* ResizeWindowAfterCrash.cpp */; };
-		8A3AF93B16C9ED2700D248C1 /* ReloadPageAfterCrash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A3AF93A16C9ED2700D248C1 /* ReloadPageAfterCrash.cpp */; };
-		930AD402150698D00067970F /* lots-of-text.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 930AD401150698B30067970F /* lots-of-text.html */; };
-		9318778915EEC57700A9CCE3 /* NewFirstVisuallyNonEmptyLayoutForImages.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93AF4ECA1506F035007FD57E /* NewFirstVisuallyNonEmptyLayoutForImages.cpp */; };
-		9361002914DC95A70061379D /* lots-of-iframes.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 9361002814DC957B0061379D /* lots-of-iframes.html */; };
-		939BA91714103412001A01BD /* DeviceScaleFactorOnBack.mm in Sources */ = {isa = PBXBuildFile; fileRef = 939BA91614103412001A01BD /* DeviceScaleFactorOnBack.mm */; };
-		93ABA80916DDAB91002DB2FA /* StringHasher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93ABA80816DDAB91002DB2FA /* StringHasher.cpp */; };
-		93AF4ECE1506F064007FD57E /* NewFirstVisuallyNonEmptyLayoutForImages_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93AF4ECD1506F064007FD57E /* NewFirstVisuallyNonEmptyLayoutForImages_Bundle.cpp */; };
-		93AF4ED01506F123007FD57E /* lots-of-images.html in Resources */ = {isa = PBXBuildFile; fileRef = 93AF4ECF1506F123007FD57E /* lots-of-images.html */; };
-		93AF4ED11506F130007FD57E /* lots-of-images.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 93AF4ECF1506F123007FD57E /* lots-of-images.html */; };
-		93F1DB3114DA20760024C362 /* NewFirstVisuallyNonEmptyLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93F1DB3014DA20760024C362 /* NewFirstVisuallyNonEmptyLayout.cpp */; };
-		93F1DB3414DA20870024C362 /* NewFirstVisuallyNonEmptyLayout_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93F1DB3314DA20870024C362 /* NewFirstVisuallyNonEmptyLayout_Bundle.cpp */; };
-		93F1DB5514DB1B730024C362 /* NewFirstVisuallyNonEmptyLayoutFails.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93F1DB5414DB1B730024C362 /* NewFirstVisuallyNonEmptyLayoutFails.cpp */; };
-		93F1DB5714DB1B840024C362 /* NewFirstVisuallyNonEmptyLayoutFails_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93F1DB5614DB1B840024C362 /* NewFirstVisuallyNonEmptyLayoutFails_Bundle.cpp */; };
-		93F7E86C14DC8E4D00C84A99 /* NewFirstVisuallyNonEmptyLayoutFrames.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93F7E86B14DC8E4D00C84A99 /* NewFirstVisuallyNonEmptyLayoutFrames.cpp */; };
-		93F7E86F14DC8E5C00C84A99 /* NewFirstVisuallyNonEmptyLayoutFrames_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93F7E86E14DC8E5B00C84A99 /* NewFirstVisuallyNonEmptyLayoutFrames_Bundle.cpp */; };
-		9B26FC6C159D061000CC3765 /* HTMLFormCollectionNamedItem.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B26FC6B159D061000CC3765 /* HTMLFormCollectionNamedItem.mm */; };
-		9B26FCCA159D16DE00CC3765 /* HTMLFormCollectionNamedItem.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 9B26FCB4159D15E700CC3765 /* HTMLFormCollectionNamedItem.html */; };
-		9B4F8FA4159D52B1002D9F94 /* HTMLCollectionNamedItem.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B4F8FA3159D52B1002D9F94 /* HTMLCollectionNamedItem.mm */; };
-		9B4F8FA7159D52DD002D9F94 /* HTMLCollectionNamedItem.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 9B4F8FA6159D52CA002D9F94 /* HTMLCollectionNamedItem.html */; };
-		A51B650916ADF9B1007AA5D9 /* PageVisibilityState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A51B650816ADF9B1007AA5D9 /* PageVisibilityState.cpp */; };
-		A57A34F016AF677200C2501F /* PageVisibilityStateWithWindowChanges.mm in Sources */ = {isa = PBXBuildFile; fileRef = A57A34EF16AF677200C2501F /* PageVisibilityStateWithWindowChanges.mm */; };
-		A57A34F216AF6B2B00C2501F /* PageVisibilityStateWithWindowChanges.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = A57A34F116AF69E200C2501F /* PageVisibilityStateWithWindowChanges.html */; };
-		A5E2027315B2181900C13E14 /* WindowlessWebViewWithMedia.mm in Sources */ = {isa = PBXBuildFile; fileRef = A5E2027215B2181900C13E14 /* WindowlessWebViewWithMedia.mm */; };
-		A5E2027515B21F6E00C13E14 /* WindowlessWebViewWithMedia.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = A5E2027015B2180600C13E14 /* WindowlessWebViewWithMedia.html */; };
-		A7A966DB140ECCC8005EF9B4 /* CheckedArithmeticOperations.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A7A966DA140ECCC8005EF9B4 /* CheckedArithmeticOperations.cpp */; };
-		B4039F9D15E6D8B3007255D6 /* MathExtras.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4039F9C15E6D8B3007255D6 /* MathExtras.cpp */; };
-		B55F11A01516834F00915916 /* AttributedString.mm in Sources */ = {isa = PBXBuildFile; fileRef = B55F119F1516834F00915916 /* AttributedString.mm */; };
-		B55F11B71517D03300915916 /* attributedStringCustomFont.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = B55F11B01517A2C400915916 /* attributedStringCustomFont.html */; };
-		B55F11BE15191A0600915916 /* Ahem.ttf in Copy Resources */ = {isa = PBXBuildFile; fileRef = B55F11B9151916E600915916 /* Ahem.ttf */; };
-		BC029B181486AD6400817DA9 /* RetainPtr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC029B161486AD6400817DA9 /* RetainPtr.cpp */; };
-		BC029B1C1486B25900817DA9 /* RetainPtr.mm in Sources */ = {isa = PBXBuildFile; fileRef = BC029B1B1486B25900817DA9 /* RetainPtr.mm */; };
-		BC131885117114B600B69727 /* PlatformUtilitiesMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = BC131884117114B600B69727 /* PlatformUtilitiesMac.mm */; };
-		BC131AA9117131FC00B69727 /* TestsController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC131AA8117131FC00B69727 /* TestsController.cpp */; };
-		BC22D31514DC689800FFB1DD /* UserMessage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC22D31314DC689800FFB1DD /* UserMessage.cpp */; };
-		BC22D31914DC68B900FFB1DD /* UserMessage_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC22D31714DC68B800FFB1DD /* UserMessage_Bundle.cpp */; };
-		BC246D8E132F115A00B56D7C /* AboutBlankLoad.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC246D8C132F115A00B56D7C /* AboutBlankLoad.cpp */; };
-		BC246D9A132F1FE100B56D7C /* CanHandleRequest.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC246D98132F1FE100B56D7C /* CanHandleRequest.cpp */; };
-		BC246D9C132F1FF000B56D7C /* CanHandleRequest_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC246D97132F1FE100B56D7C /* CanHandleRequest_Bundle.cpp */; };
-		BC2D004912A9FDFA00E732A3 /* PageLoadDidChangeLocationWithinPageForFrame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC2D004812A9FDFA00E732A3 /* PageLoadDidChangeLocationWithinPageForFrame.cpp */; };
-		BC2D006412AA04CE00E732A3 /* file-with-anchor.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = BC2D004A12A9FEB300E732A3 /* file-with-anchor.html */; };
-		BC3C4C7214575B6A0025FB62 /* WKBrowsingContextLoadDelegateTest.mm in Sources */ = {isa = PBXBuildFile; fileRef = BC3C4C7014575B6A0025FB62 /* WKBrowsingContextLoadDelegateTest.mm */; };
-		BC3C4C7F14587AA60025FB62 /* WKBrowsingContextGroupTest.mm in Sources */ = {isa = PBXBuildFile; fileRef = BC3C4C7D14587AA60025FB62 /* WKBrowsingContextGroupTest.mm */; };
-		BC55F5F914AD78EE00484BE1 /* Vector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC55F5F814AD78EE00484BE1 /* Vector.cpp */; };
-		BC575A90126E74D3006F0F12 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BCB9E9F011235BDE00A137E0 /* Cocoa.framework */; };
-		BC575A91126E74D3006F0F12 /* WebKit2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BCA61DB411700EFD00460D1E /* WebKit2.framework */; };
-		BC575A92126E74D3006F0F12 /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BC90964D1255620C00083756 /* JavaScriptCore.framework */; };
-		BC575A97126E74F1006F0F12 /* InjectedBundleMain.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC575946126E7351006F0F12 /* InjectedBundleMain.cpp */; };
-		BC575AA2126E7660006F0F12 /* InjectedBundleController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC575AA0126E7657006F0F12 /* InjectedBundleController.cpp */; };
-		BC575AAD126E83B9006F0F12 /* InjectedBundleBasic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC575AAC126E83B9006F0F12 /* InjectedBundleBasic.cpp */; };
-		BC575AB0126E83C8006F0F12 /* InjectedBundleBasic_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC575AAF126E83C8006F0F12 /* InjectedBundleBasic_Bundle.cpp */; };
-		BC575BC0126F5752006F0F12 /* PlatformUtilities.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC575BBF126F5752006F0F12 /* PlatformUtilities.cpp */; };
-		BC575BD9126F58E2006F0F12 /* PlatformUtilities.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC575BBF126F5752006F0F12 /* PlatformUtilities.cpp */; };
-		BC575BE0126F590D006F0F12 /* PlatformUtilitiesMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = BC131884117114B600B69727 /* PlatformUtilitiesMac.mm */; };
-		BC7B61AA129A038700D174A4 /* WKPreferences.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC7B619A1299FE9E00D174A4 /* WKPreferences.cpp */; };
-		BC901E241492ADCE0074A667 /* WKConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC901E221492ADCE0074A667 /* WKConnection.cpp */; };
-		BC901E331492AF390074A667 /* WKConnection_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC901E311492AF390074A667 /* WKConnection_Bundle.cpp */; };
-		BC90955D125548AA00083756 /* PlatformWebViewMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = BC90955C125548AA00083756 /* PlatformWebViewMac.mm */; };
-		BC90964C125561BF00083756 /* VectorBasic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC90964B125561BF00083756 /* VectorBasic.cpp */; };
-		BC90977A125571AB00083756 /* PageLoadBasic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC909779125571AB00083756 /* PageLoadBasic.cpp */; };
-		BC909784125571CF00083756 /* simple.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = BC909778125571AB00083756 /* simple.html */; };
-		BC90995E12567BC100083756 /* WKString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC90995D12567BC100083756 /* WKString.cpp */; };
-		BC9099941256ACF100083756 /* WKStringJSString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC9099931256ACF100083756 /* WKStringJSString.cpp */; };
-		BCAA485614A0444C0088FAC4 /* simple-tall.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = BCAA485514A021640088FAC4 /* simple-tall.html */; };
-		BCAA485814A044D40088FAC4 /* EditorCommands.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCAA485714A044D40088FAC4 /* EditorCommands.mm */; };
-		BCB68040126FBFE100642A61 /* DocumentStartUserScriptAlertCrash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCB6803F126FBFE100642A61 /* DocumentStartUserScriptAlertCrash.cpp */; };
-		BCB68042126FBFF100642A61 /* DocumentStartUserScriptAlertCrash_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCB68041126FBFF100642A61 /* DocumentStartUserScriptAlertCrash_Bundle.cpp */; };
-		BCBD3710125AA2EB00D2C29F /* FrameMIMETypeHTML.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCBD370F125AA2EB00D2C29F /* FrameMIMETypeHTML.cpp */; };
-		BCBD3737125ABBEB00D2C29F /* icon.png in Copy Resources */ = {isa = PBXBuildFile; fileRef = BCBD372E125ABBE600D2C29F /* icon.png */; };
-		BCBD3761125ABCFE00D2C29F /* FrameMIMETypePNG.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCBD3760125ABCFE00D2C29F /* FrameMIMETypePNG.cpp */; };
-		BCC8B95B12611F4700DE46A4 /* FailedLoad.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCC8B95A12611F4700DE46A4 /* FailedLoad.cpp */; };
-		C01363C813C3997300EF3964 /* StringOperators.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C01363C713C3997300EF3964 /* StringOperators.cpp */; };
-		C01A23F21266156700C9ED55 /* spacebar-scrolling.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = C02B7882126615410026BF0F /* spacebar-scrolling.html */; };
-		C02B77F2126612140026BF0F /* SpacebarScrolling.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C02B77F1126612140026BF0F /* SpacebarScrolling.cpp */; };
-		C045F9451385C2EA00C0F3CD /* DownloadDecideDestinationCrash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C045F9441385C2E900C0F3CD /* DownloadDecideDestinationCrash.cpp */; };
-		C07E6CAF13FD67650038B22B /* DynamicDeviceScaleFactor.mm in Sources */ = {isa = PBXBuildFile; fileRef = C07E6CAE13FD67650038B22B /* DynamicDeviceScaleFactor.mm */; };
-		C07E6CB213FD73930038B22B /* devicePixelRatio.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = C07E6CB113FD738A0038B22B /* devicePixelRatio.html */; };
-		C081224213FC172400DC39AE /* JavaScriptTestMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = C081224013FC172400DC39AE /* JavaScriptTestMac.mm */; };
-		C081224513FC19EC00DC39AE /* SyntheticBackingScaleFactorWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = C081224413FC19EC00DC39AE /* SyntheticBackingScaleFactorWindow.m */; };
-		C08587BF13FE956C001EF4E5 /* WebKitAgnosticTest.mm in Sources */ = {isa = PBXBuildFile; fileRef = C08587BD13FE956C001EF4E5 /* WebKitAgnosticTest.mm */; };
-		C08587FC13FEC39B001EF4E5 /* InstanceMethodSwizzler.mm in Sources */ = {isa = PBXBuildFile; fileRef = C08587FB13FEC39B001EF4E5 /* InstanceMethodSwizzler.mm */; };
-		C085880013FEC3A6001EF4E5 /* InstanceMethodSwizzler.mm in Sources */ = {isa = PBXBuildFile; fileRef = C08587FF13FEC3A6001EF4E5 /* InstanceMethodSwizzler.mm */; };
-		C0991C51143C7D68007998F2 /* RetainPtrHashing.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0991C50143C7D68007998F2 /* RetainPtrHashing.cpp */; };
-		C0ADBE7C12FCA4D000D2C129 /* JavaScriptTest.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0ADBE7A12FCA4D000D2C129 /* JavaScriptTest.cpp */; };
-		C0ADBE8312FCA6AA00D2C129 /* RestoreSessionStateContainingFormData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0ADBE8212FCA6AA00D2C129 /* RestoreSessionStateContainingFormData.cpp */; };
-		C0ADBE9612FCA79B00D2C129 /* simple-form.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = C0ADBE8412FCA6B600D2C129 /* simple-form.html */; };
-		C0BD669D131D3CF700E18F2A /* ResponsivenessTimerDoesntFireEarly.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0BD669C131D3CF700E18F2A /* ResponsivenessTimerDoesntFireEarly.cpp */; };
-		C0BD669F131D3CFF00E18F2A /* ResponsivenessTimerDoesntFireEarly_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0BD669E131D3CFF00E18F2A /* ResponsivenessTimerDoesntFireEarly_Bundle.cpp */; };
-		C0C5D3BE14598B6F00A802A6 /* GetBackingScaleFactor.mm in Sources */ = {isa = PBXBuildFile; fileRef = C0C5D3BC14598B6F00A802A6 /* GetBackingScaleFactor.mm */; };
-		C0C5D3C61459912900A802A6 /* GetBackingScaleFactor_Bundle.mm in Sources */ = {isa = PBXBuildFile; fileRef = C0C5D3BD14598B6F00A802A6 /* GetBackingScaleFactor_Bundle.mm */; };
-		C2CF975A16CEC7140054E99D /* JSContextBackForwardCache2.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = C2CF975916CEC69E0054E99D /* JSContextBackForwardCache2.html */; };
-		C2CF975B16CEC71B0054E99D /* JSContextBackForwardCache1.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = C2CF975816CEC69E0054E99D /* JSContextBackForwardCache1.html */; };
-		C2EB2DD316CAC7AC009B52EE /* WebViewDidCreateJavaScriptContext.mm in Sources */ = {isa = PBXBuildFile; fileRef = C2EB2DD116CAC7AC009B52EE /* WebViewDidCreateJavaScriptContext.mm */; };
-		C507E8A714C6545B005D6B3B /* InspectorBar.mm in Sources */ = {isa = PBXBuildFile; fileRef = C507E8A614C6545B005D6B3B /* InspectorBar.mm */; };
-		C51AFB99169F49FF009CCF66 /* FindMatches.mm in Sources */ = {isa = PBXBuildFile; fileRef = C51AFB98169F49FF009CCF66 /* FindMatches.mm */; };
-		C540F776152E4DA000A40C8C /* SimplifyMarkup.mm in Sources */ = {isa = PBXBuildFile; fileRef = C540F775152E4DA000A40C8C /* SimplifyMarkup.mm */; };
-		C540F784152E5A9A00A40C8C /* verboseMarkup.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = C540F783152E5A7800A40C8C /* verboseMarkup.html */; };
-		C54237F016B8955800E638FC /* PasteboardNotifications.mm in Sources */ = {isa = PBXBuildFile; fileRef = C54237EE16B8955800E638FC /* PasteboardNotifications.mm */; };
-		C54237F116B8957D00E638FC /* PasteboardNotifications_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C54237ED16B8955800E638FC /* PasteboardNotifications_Bundle.cpp */; };
-		C5E1AFFE16B221F1006CC1F2 /* execCopy.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = C5E1AFFD16B22179006CC1F2 /* execCopy.html */; };
-		CD5497B415857F0C00B5BC30 /* MediaTime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD5497B315857F0C00B5BC30 /* MediaTime.cpp */; };
-		E1220DA0155B25480013E2FC /* MemoryCacheDisableWithinResourceLoadDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = E1220D9F155B25480013E2FC /* MemoryCacheDisableWithinResourceLoadDelegate.mm */; };
-		E1220DCA155B28AA0013E2FC /* MemoryCacheDisableWithinResourceLoadDelegate.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = E1220DC9155B287D0013E2FC /* MemoryCacheDisableWithinResourceLoadDelegate.html */; };
-		E490296814E2E3A4002BEDD1 /* TypingStyleCrash.mm in Sources */ = {isa = PBXBuildFile; fileRef = E490296714E2E3A4002BEDD1 /* TypingStyleCrash.mm */; };
-		F660AA0D15A5F061003A1243 /* GetInjectedBundleInitializationUserDataCallback.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F660AA0C15A5F061003A1243 /* GetInjectedBundleInitializationUserDataCallback.cpp */; };
-		F660AA1115A5F631003A1243 /* GetInjectedBundleInitializationUserDataCallback_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F660AA0F15A5F624003A1243 /* GetInjectedBundleInitializationUserDataCallback_Bundle.cpp */; };
-		F660AA1315A619C9003A1243 /* InjectedBundleInitializationUserDataCallbackWins.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F660AA1215A619C8003A1243 /* InjectedBundleInitializationUserDataCallbackWins.cpp */; };
-		F660AA1515A61ABF003A1243 /* InjectedBundleInitializationUserDataCallbackWins_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F660AA1415A61ABF003A1243 /* InjectedBundleInitializationUserDataCallbackWins_Bundle.cpp */; };
-		F6F3F29113342FEB00A6BF19 /* CookieManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F6F3F29013342FEB00A6BF19 /* CookieManager.cpp */; };
-		F6F49C6915545C8E0007F39D /* DOMWindowExtensionNoCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F6F49C6715545C8D0007F39D /* DOMWindowExtensionNoCache.cpp */; };
-		F6F49C6B15545CA70007F39D /* DOMWindowExtensionNoCache_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F6F49C6615545C8D0007F39D /* DOMWindowExtensionNoCache_Bundle.cpp */; };
-		F6FDDDD314241AD4004F1729 /* PrivateBrowsingPushStateNoHistoryCallback.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F6FDDDD214241AD4004F1729 /* PrivateBrowsingPushStateNoHistoryCallback.cpp */; };
-		F6FDDDD614241C6F004F1729 /* push-state.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = F6FDDDD514241C48004F1729 /* push-state.html */; };
-		FE217ECD1640A54A0052988B /* VMInspector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FE217ECC1640A54A0052988B /* VMInspector.cpp */; };
-/* End PBXBuildFile section */
-
-/* Begin PBXContainerItemProxy section */
-		BC575A95126E74E7006F0F12 /* PBXContainerItemProxy */ = {
-			isa = PBXContainerItemProxy;
-			containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
-			proxyType = 1;
-			remoteGlobalIDString = BC57597F126E74AF006F0F12;
-			remoteInfo = InjectedBundle;
-		};
-/* End PBXContainerItemProxy section */
-
-/* Begin PBXCopyFilesBuildPhase section */
-		8DD76F9E0486AA7600D96B5E /* CopyFiles */ = {
-			isa = PBXCopyFilesBuildPhase;
-			buildActionMask = 8;
-			dstPath = /usr/share/man/man1/;
-			dstSubfolderSpec = 0;
-			files = (
-			);
-			runOnlyForDeploymentPostprocessing = 1;
-		};
-		BCB9F4FB112384C000A137E0 /* Copy Resources */ = {
-			isa = PBXCopyFilesBuildPhase;
-			buildActionMask = 2147483647;
-			dstPath = TestWebKitAPI.resources;
-			dstSubfolderSpec = 7;
-			files = (
-				C2CF975B16CEC71B0054E99D /* JSContextBackForwardCache1.html in Copy Resources */,
-				C2CF975A16CEC7140054E99D /* JSContextBackForwardCache2.html in Copy Resources */,
-				1A9E52C913E65EF4006917F5 /* 18-characters.html in Copy Resources */,
-				379028B914FAC24C007E6B43 /* acceptsFirstMouse.html in Copy Resources */,
-				B55F11BE15191A0600915916 /* Ahem.ttf in Copy Resources */,
-				B55F11B71517D03300915916 /* attributedStringCustomFont.html in Copy Resources */,
-				76E182DF154767E600F1FADD /* auto-submitting-form.html in Copy Resources */,
-				26DF5A6315A2A27E003689C2 /* CancelLoadFromResourceLoadDelegate.html in Copy Resources */,
-				5142B2731517C8C800C32B19 /* ContextMenuCanCopyURL.html in Copy Resources */,
-				C07E6CB213FD73930038B22B /* devicePixelRatio.html in Copy Resources */,
-				37E1064C1697681800B78BD0 /* DOMHTMLTableCellElementCellAbove.html in Copy Resources */,
-				37DC6791140D7D7600ABCCDB /* DOMRangeOfString.html in Copy Resources */,
-				C5E1AFFE16B221F1006CC1F2 /* execCopy.html in Copy Resources */,
-				BC2D006412AA04CE00E732A3 /* file-with-anchor.html in Copy Resources */,
-				1A02C870125D4CFD00E3F4BD /* find.html in Copy Resources */,
-				9B4F8FA7159D52DD002D9F94 /* HTMLCollectionNamedItem.html in Copy Resources */,
-				9B26FCCA159D16DE00CC3765 /* HTMLFormCollectionNamedItem.html in Copy Resources */,
-				BCBD3737125ABBEB00D2C29F /* icon.png in Copy Resources */,
-				378E64791632707400B6C676 /* link-with-title.html in Copy Resources */,
-				9361002914DC95A70061379D /* lots-of-iframes.html in Copy Resources */,
-				93AF4ED11506F130007FD57E /* lots-of-images.html in Copy Resources */,
-				930AD402150698D00067970F /* lots-of-text.html in Copy Resources */,
-				E1220DCA155B28AA0013E2FC /* MemoryCacheDisableWithinResourceLoadDelegate.html in Copy Resources */,
-				517E7E04151119C100D0B008 /* MemoryCachePruneWithinResourceLoadDelegate.html in Copy Resources */,
-				33E79E06137B5FD900E32D99 /* mouse-move-listener.html in Copy Resources */,
-				A57A34F216AF6B2B00C2501F /* PageVisibilityStateWithWindowChanges.html in Copy Resources */,
-				F6FDDDD614241C6F004F1729 /* push-state.html in Copy Resources */,
-				52B8CF9815868D9100281053 /* SetDocumentURI.html in Copy Resources */,
-				1ADBEFE3130C6AA100D61D19 /* simple-accelerated-compositing.html in Copy Resources */,
-				C0ADBE9612FCA79B00D2C129 /* simple-form.html in Copy Resources */,
-				33DC8912141955FE00747EF7 /* simple-iframe.html in Copy Resources */,
-				BCAA485614A0444C0088FAC4 /* simple-tall.html in Copy Resources */,
-				BC909784125571CF00083756 /* simple.html in Copy Resources */,
-				C01A23F21266156700C9ED55 /* spacebar-scrolling.html in Copy Resources */,
-				C540F784152E5A9A00A40C8C /* verboseMarkup.html in Copy Resources */,
-				A5E2027515B21F6E00C13E14 /* WindowlessWebViewWithMedia.html in Copy Resources */,
-			);
-			name = "Copy Resources";
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-/* End PBXCopyFilesBuildPhase section */
-
-/* Begin PBXFileReference section */
-		00BC16851680FE810065F1E5 /* PublicSuffix.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PublicSuffix.mm; sourceTree = "<group>"; };
-		00CD9F6215BE312C002DA2CE /* BackForwardList.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = BackForwardList.mm; sourceTree = "<group>"; };
-		0BCD833414857CE400EA2003 /* HashMap.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = HashMap.cpp; path = WTF/HashMap.cpp; sourceTree = "<group>"; };
-		0BCD85691485C98B00EA2003 /* TemporaryChange.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = TemporaryChange.cpp; path = WTF/TemporaryChange.cpp; sourceTree = "<group>"; };
-		0F17BBD415AF6C4D007AB753 /* WebCoreStatisticsWithNoWebProcess.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WebCoreStatisticsWithNoWebProcess.cpp; sourceTree = "<group>"; };
-		0FC6C4CB141027E0005B7F0C /* RedBlackTree.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RedBlackTree.cpp; path = WTF/RedBlackTree.cpp; sourceTree = "<group>"; };
-		0FC6C4CE141034AD005B7F0C /* MetaAllocator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = MetaAllocator.cpp; path = WTF/MetaAllocator.cpp; sourceTree = "<group>"; };
-		14464012167A8305000BD218 /* LayoutUnit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LayoutUnit.cpp; sourceTree = "<group>"; };
-		14F3B11215E45EAB00210069 /* SaturatedArithmeticOperations.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SaturatedArithmeticOperations.cpp; path = WTF/SaturatedArithmeticOperations.cpp; sourceTree = "<group>"; };
-		1A02C84B125D4A5E00E3F4BD /* find.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = find.html; sourceTree = "<group>"; };
-		1A02C84E125D4A8400E3F4BD /* Find.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Find.cpp; sourceTree = "<group>"; };
-		1A5FEFDC1270E2A3000E2921 /* EvaluateJavaScript.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = EvaluateJavaScript.cpp; sourceTree = "<group>"; };
-		1AA9E55714980A9900001A8A /* Functional.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Functional.cpp; path = WTF/Functional.cpp; sourceTree = "<group>"; };
-		1ADBEFAD130C689C00D61D19 /* ForceRepaint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ForceRepaint.cpp; sourceTree = "<group>"; };
-		1ADBEFBC130C6A0100D61D19 /* simple-accelerated-compositing.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "simple-accelerated-compositing.html"; sourceTree = "<group>"; };
-		1AEDE22413E5E7A000E62FE8 /* InjectedBundleControllerMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = InjectedBundleControllerMac.mm; sourceTree = "<group>"; };
-		261516D515B0E60500A2C201 /* SetAndUpdateCacheModel.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = SetAndUpdateCacheModel.mm; sourceTree = "<group>"; };
-		26300B1716755CD90066886D /* ListHashSet.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ListHashSet.cpp; path = WTF/ListHashSet.cpp; sourceTree = "<group>"; };
-		265AF54F15D1E48A00B0CB4A /* WTFString.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = WTFString.cpp; path = WTF/WTFString.cpp; sourceTree = "<group>"; };
-		266FAFD215E5775200F61D5B /* IntegerToStringConversion.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = IntegerToStringConversion.cpp; path = WTF/IntegerToStringConversion.cpp; sourceTree = "<group>"; };
-		26A2C72E15E2E73C005B1A14 /* CString.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CString.cpp; path = WTF/CString.cpp; sourceTree = "<group>"; };
-		26B2DFF815BDE599004F691D /* HashSet.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = HashSet.cpp; path = WTF/HashSet.cpp; sourceTree = "<group>"; };
-		26DF5A5D15A29BAA003689C2 /* CancelLoadFromResourceLoadDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = CancelLoadFromResourceLoadDelegate.mm; sourceTree = "<group>"; };
-		26DF5A6115A2A22B003689C2 /* CancelLoadFromResourceLoadDelegate.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = CancelLoadFromResourceLoadDelegate.html; sourceTree = "<group>"; };
-		26F1B44215CA434F00D1E4BF /* AtomicString.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = AtomicString.cpp; path = WTF/AtomicString.cpp; sourceTree = "<group>"; };
-		26F1B44315CA434F00D1E4BF /* StringImpl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = StringImpl.cpp; path = WTF/StringImpl.cpp; sourceTree = "<group>"; };
-		2943BE84161DFEB800999E3D /* UserContentTest.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = UserContentTest.mm; path = WebKit2ObjC/UserContentTest.mm; sourceTree = "<group>"; };
-		29AB8A9F164C735800D49BEC /* CustomProtocolsTest.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = CustomProtocolsTest.mm; path = WebKit2ObjC/CustomProtocolsTest.mm; sourceTree = "<group>"; };
-		29AB8AA2164C7A9300D49BEC /* TestBrowsingContextLoadDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = TestBrowsingContextLoadDelegate.mm; sourceTree = "<group>"; };
-		29AB8AA3164C7A9300D49BEC /* TestBrowsingContextLoadDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestBrowsingContextLoadDelegate.h; sourceTree = "<group>"; };
-		2E7765CC16C4D80A00BA2BB1 /* mainIOS.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = mainIOS.mm; sourceTree = "<group>"; };
-		2E7765CE16C4D81100BA2BB1 /* mainMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = mainMac.mm; sourceTree = "<group>"; };
-		333B9CE11277F23100FEFCE3 /* PreventEmptyUserAgent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PreventEmptyUserAgent.cpp; sourceTree = "<group>"; };
-		33BE5AF4137B5A6C00705813 /* MouseMoveAfterCrash.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MouseMoveAfterCrash.cpp; sourceTree = "<group>"; };
-		33BE5AF8137B5AAE00705813 /* MouseMoveAfterCrash_Bundle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MouseMoveAfterCrash_Bundle.cpp; sourceTree = "<group>"; };
-		33DC890E1419539300747EF7 /* simple-iframe.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "simple-iframe.html"; sourceTree = "<group>"; };
-		33DC8910141953A300747EF7 /* LoadCanceledNoServerRedirectCallback.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LoadCanceledNoServerRedirectCallback.cpp; sourceTree = "<group>"; };
-		33DC89131419579F00747EF7 /* LoadCanceledNoServerRedirectCallback_Bundle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LoadCanceledNoServerRedirectCallback_Bundle.cpp; sourceTree = "<group>"; };
-		33E79E05137B5FCE00E32D99 /* mouse-move-listener.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "mouse-move-listener.html"; sourceTree = "<group>"; };
-		37200B9113A16230007A4FAD /* VectorReverse.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = VectorReverse.cpp; path = WTF/VectorReverse.cpp; sourceTree = "<group>"; };
-		3722C8681461E03E00C45D00 /* RenderedImageFromDOMRange.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = RenderedImageFromDOMRange.mm; sourceTree = "<group>"; };
-		3751AF7A169518F800764319 /* DOMNodeFromJSObject.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMNodeFromJSObject.mm; sourceTree = "<group>"; };
-		3776BC62150946BC0043A66D /* DeviceScaleFactorInDashboardRegions.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = DeviceScaleFactorInDashboardRegions.mm; sourceTree = "<group>"; };
-		378E64711632646D00B6C676 /* InjectedBundleFrameHitTest.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = InjectedBundleFrameHitTest.cpp; sourceTree = "<group>"; };
-		378E64751632655D00B6C676 /* InjectedBundleFrameHitTest_Bundle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = InjectedBundleFrameHitTest_Bundle.cpp; sourceTree = "<group>"; };
-		378E647816326FDF00B6C676 /* link-with-title.html */ = {isa = PBXFileReference; lastKnownFileType = text.html; path = "link-with-title.html"; sourceTree = "<group>"; };
-		379028B514FABD92007E6B43 /* AcceptsFirstMouse.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = AcceptsFirstMouse.mm; sourceTree = "<group>"; };
-		379028B814FABE49007E6B43 /* acceptsFirstMouse.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = acceptsFirstMouse.html; sourceTree = "<group>"; };
-		3799AD3914120A43005EB0C6 /* StringByEvaluatingJavaScriptFromString.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = StringByEvaluatingJavaScriptFromString.mm; sourceTree = "<group>"; };
-		37A6895D148A9B50005100FA /* SubresourceErrorCrash.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = SubresourceErrorCrash.mm; sourceTree = "<group>"; };
-		37DC678B140D7C5000ABCCDB /* DOMRangeOfString.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMRangeOfString.mm; sourceTree = "<group>"; };
-		37DC678F140D7D3A00ABCCDB /* DOMRangeOfString.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = DOMRangeOfString.html; sourceTree = "<group>"; };
-		37E1064A1697676400B78BD0 /* DOMHTMLTableCellCellAbove.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = DOMHTMLTableCellCellAbove.mm; sourceTree = "<group>"; };
-		37E1064B169767F700B78BD0 /* DOMHTMLTableCellElementCellAbove.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = DOMHTMLTableCellElementCellAbove.html; sourceTree = "<group>"; };
-		37E38C33169B7D010084C28C /* WebViewDidRemoveFrameFromHierarchy.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WebViewDidRemoveFrameFromHierarchy.mm; sourceTree = "<group>"; };
-		440A1D3814A0103A008A66F2 /* KURL.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = KURL.cpp; sourceTree = "<group>"; };
-		44A622C114A0E2B60048515B /* WTFStringUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WTFStringUtilities.h; sourceTree = "<group>"; };
-		4BB4160116815B2600824238 /* JSWrapperForNodeInWebFrame.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = JSWrapperForNodeInWebFrame.mm; sourceTree = "<group>"; };
-		4BB4160316815F9100824238 /* ElementAtPointInWebFrame.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ElementAtPointInWebFrame.mm; sourceTree = "<group>"; };
-		4BFDFFA61314776C0061F24B /* HitTestResultNodeHandle_Bundle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = HitTestResultNodeHandle_Bundle.cpp; sourceTree = "<group>"; };
-		4BFDFFA8131477770061F24B /* HitTestResultNodeHandle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = HitTestResultNodeHandle.cpp; sourceTree = "<group>"; };
-		4F4D2C0D1626FE2700320FE1 /* MemoryInstrumentationTest.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = MemoryInstrumentationTest.cpp; path = WTF/MemoryInstrumentationTest.cpp; sourceTree = "<group>"; };
-		51393E1D1523944A005F39C5 /* DOMWindowExtensionBasic_Bundle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DOMWindowExtensionBasic_Bundle.cpp; sourceTree = "<group>"; };
-		51393E1E1523944A005F39C5 /* DOMWindowExtensionBasic.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DOMWindowExtensionBasic.cpp; sourceTree = "<group>"; };
-		5142B2701517C88B00C32B19 /* ContextMenuCanCopyURL.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ContextMenuCanCopyURL.mm; sourceTree = "<group>"; };
-		5142B2721517C89100C32B19 /* ContextMenuCanCopyURL.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = ContextMenuCanCopyURL.html; sourceTree = "<group>"; };
-		517E7DFB15110EA600D0B008 /* MemoryCachePruneWithinResourceLoadDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MemoryCachePruneWithinResourceLoadDelegate.mm; sourceTree = "<group>"; };
-		517E7E031511187500D0B008 /* MemoryCachePruneWithinResourceLoadDelegate.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = MemoryCachePruneWithinResourceLoadDelegate.html; sourceTree = "<group>"; };
-		51E93016156B13E1004C99DF /* WKPageGetScaleFactorNotZero.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WKPageGetScaleFactorNotZero.cpp; sourceTree = "<group>"; };
-		51FBBB4C1513D4E900822738 /* WebViewCanPasteURL.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WebViewCanPasteURL.mm; sourceTree = "<group>"; };
-		51FCF7971534AC6D00104491 /* ShouldGoToBackForwardListItem_Bundle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ShouldGoToBackForwardListItem_Bundle.cpp; sourceTree = "<group>"; };
-		51FCF7981534AC6D00104491 /* ShouldGoToBackForwardListItem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ShouldGoToBackForwardListItem.cpp; sourceTree = "<group>"; };
-		520BCF4A141EB09E00937EA8 /* WebArchive_Bundle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WebArchive_Bundle.cpp; sourceTree = "<group>"; };
-		520BCF4B141EB09E00937EA8 /* WebArchive.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WebArchive.cpp; sourceTree = "<group>"; };
-		52B8CF9415868CF000281053 /* SetDocumentURI.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = SetDocumentURI.html; sourceTree = "<group>"; };
-		52B8CF9515868CF000281053 /* SetDocumentURI.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = SetDocumentURI.mm; sourceTree = "<group>"; };
-		52CB47401448FB9300873995 /* LoadAlternateHTMLStringWithNonDirectoryURL.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LoadAlternateHTMLStringWithNonDirectoryURL.cpp; sourceTree = "<group>"; };
-		52E5CE4514D21E9D003B2BD8 /* ParentFrame.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ParentFrame.cpp; sourceTree = "<group>"; };
-		52E5CE4814D21EAB003B2BD8 /* ParentFrame_Bundle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ParentFrame_Bundle.cpp; sourceTree = "<group>"; };
-		76E182D91547550100F1FADD /* WillSendSubmitEvent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WillSendSubmitEvent.cpp; sourceTree = "<group>"; };
-		76E182DC1547569100F1FADD /* WillSendSubmitEvent_Bundle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WillSendSubmitEvent_Bundle.cpp; sourceTree = "<group>"; };
-		76E182DE15475A8300F1FADD /* auto-submitting-form.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "auto-submitting-form.html"; sourceTree = "<group>"; };
-		81B50192140F232300D9EB58 /* StringBuilder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = StringBuilder.cpp; path = WTF/StringBuilder.cpp; sourceTree = "<group>"; };
-		8A2C750D16CED9550024F352 /* ResizeWindowAfterCrash.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ResizeWindowAfterCrash.cpp; sourceTree = "<group>"; };
-		8A3AF93A16C9ED2700D248C1 /* ReloadPageAfterCrash.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ReloadPageAfterCrash.cpp; sourceTree = "<group>"; };
-		8DD76FA10486AA7600D96B5E /* TestWebKitAPI */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = TestWebKitAPI; sourceTree = BUILT_PRODUCTS_DIR; };
-		930AD401150698B30067970F /* lots-of-text.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "lots-of-text.html"; sourceTree = "<group>"; };
-		9361002814DC957B0061379D /* lots-of-iframes.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "lots-of-iframes.html"; sourceTree = "<group>"; };
-		939BA91614103412001A01BD /* DeviceScaleFactorOnBack.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = DeviceScaleFactorOnBack.mm; sourceTree = "<group>"; };
-		93ABA80816DDAB91002DB2FA /* StringHasher.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = StringHasher.cpp; path = WTF/StringHasher.cpp; sourceTree = "<group>"; };
-		93AF4ECA1506F035007FD57E /* NewFirstVisuallyNonEmptyLayoutForImages.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NewFirstVisuallyNonEmptyLayoutForImages.cpp; sourceTree = "<group>"; };
-		93AF4ECD1506F064007FD57E /* NewFirstVisuallyNonEmptyLayoutForImages_Bundle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NewFirstVisuallyNonEmptyLayoutForImages_Bundle.cpp; sourceTree = "<group>"; };
-		93AF4ECF1506F123007FD57E /* lots-of-images.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "lots-of-images.html"; sourceTree = "<group>"; };
-		93F1DB3014DA20760024C362 /* NewFirstVisuallyNonEmptyLayout.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NewFirstVisuallyNonEmptyLayout.cpp; sourceTree = "<group>"; };
-		93F1DB3314DA20870024C362 /* NewFirstVisuallyNonEmptyLayout_Bundle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NewFirstVisuallyNonEmptyLayout_Bundle.cpp; sourceTree = "<group>"; };
-		93F1DB5414DB1B730024C362 /* NewFirstVisuallyNonEmptyLayoutFails.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NewFirstVisuallyNonEmptyLayoutFails.cpp; sourceTree = "<group>"; };
-		93F1DB5614DB1B840024C362 /* NewFirstVisuallyNonEmptyLayoutFails_Bundle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NewFirstVisuallyNonEmptyLayoutFails_Bundle.cpp; sourceTree = "<group>"; };
-		93F7E86B14DC8E4D00C84A99 /* NewFirstVisuallyNonEmptyLayoutFrames.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NewFirstVisuallyNonEmptyLayoutFrames.cpp; sourceTree = "<group>"; };
-		93F7E86E14DC8E5B00C84A99 /* NewFirstVisuallyNonEmptyLayoutFrames_Bundle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NewFirstVisuallyNonEmptyLayoutFrames_Bundle.cpp; sourceTree = "<group>"; };
-		9B26FC6B159D061000CC3765 /* HTMLFormCollectionNamedItem.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = HTMLFormCollectionNamedItem.mm; sourceTree = "<group>"; };
-		9B26FCB4159D15E700CC3765 /* HTMLFormCollectionNamedItem.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = HTMLFormCollectionNamedItem.html; sourceTree = "<group>"; };
-		9B4F8FA3159D52B1002D9F94 /* HTMLCollectionNamedItem.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = HTMLCollectionNamedItem.mm; sourceTree = "<group>"; };
-		9B4F8FA6159D52CA002D9F94 /* HTMLCollectionNamedItem.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = HTMLCollectionNamedItem.html; sourceTree = "<group>"; };
-		A51B650816ADF9B1007AA5D9 /* PageVisibilityState.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PageVisibilityState.cpp; sourceTree = "<group>"; };
-		A57A34EF16AF677200C2501F /* PageVisibilityStateWithWindowChanges.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PageVisibilityStateWithWindowChanges.mm; sourceTree = "<group>"; };
-		A57A34F116AF69E200C2501F /* PageVisibilityStateWithWindowChanges.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = PageVisibilityStateWithWindowChanges.html; sourceTree = "<group>"; };
-		A5E2027015B2180600C13E14 /* WindowlessWebViewWithMedia.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = WindowlessWebViewWithMedia.html; sourceTree = "<group>"; };
-		A5E2027215B2181900C13E14 /* WindowlessWebViewWithMedia.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WindowlessWebViewWithMedia.mm; sourceTree = "<group>"; };
-		A7A966DA140ECCC8005EF9B4 /* CheckedArithmeticOperations.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CheckedArithmeticOperations.cpp; path = WTF/CheckedArithmeticOperations.cpp; sourceTree = "<group>"; };
-		B4039F9C15E6D8B3007255D6 /* MathExtras.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = MathExtras.cpp; path = WTF/MathExtras.cpp; sourceTree = "<group>"; };
-		B55F119F1516834F00915916 /* AttributedString.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = AttributedString.mm; sourceTree = "<group>"; };
-		B55F11B01517A2C400915916 /* attributedStringCustomFont.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = attributedStringCustomFont.html; sourceTree = "<group>"; };
-		B55F11B9151916E600915916 /* Ahem.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Ahem.ttf; sourceTree = "<group>"; };
-		BC029B161486AD6400817DA9 /* RetainPtr.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RetainPtr.cpp; sourceTree = "<group>"; };
-		BC029B1B1486B25900817DA9 /* RetainPtr.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = RetainPtr.mm; path = WTF/ns/RetainPtr.mm; sourceTree = "<group>"; };
-		BC131883117114A800B69727 /* PlatformUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlatformUtilities.h; sourceTree = "<group>"; };
-		BC131884117114B600B69727 /* PlatformUtilitiesMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PlatformUtilitiesMac.mm; sourceTree = "<group>"; };
-		BC131A9E1171317C00B69727 /* config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = config.h; sourceTree = "<group>"; };
-		BC131AA8117131FC00B69727 /* TestsController.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; fileEncoding = 4; path = TestsController.cpp; sourceTree = "<group>"; };
-		BC22D31314DC689800FFB1DD /* UserMessage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UserMessage.cpp; sourceTree = "<group>"; };
-		BC22D31714DC68B800FFB1DD /* UserMessage_Bundle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UserMessage_Bundle.cpp; sourceTree = "<group>"; };
-		BC246D8C132F115A00B56D7C /* AboutBlankLoad.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AboutBlankLoad.cpp; sourceTree = "<group>"; };
-		BC246D97132F1FE100B56D7C /* CanHandleRequest_Bundle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CanHandleRequest_Bundle.cpp; sourceTree = "<group>"; };
-		BC246D98132F1FE100B56D7C /* CanHandleRequest.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CanHandleRequest.cpp; sourceTree = "<group>"; };
-		BC2D004812A9FDFA00E732A3 /* PageLoadDidChangeLocationWithinPageForFrame.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PageLoadDidChangeLocationWithinPageForFrame.cpp; sourceTree = "<group>"; };
-		BC2D004A12A9FEB300E732A3 /* file-with-anchor.html */ = {isa = PBXFileReference; explicitFileType = text.html; fileEncoding = 4; path = "file-with-anchor.html"; sourceTree = "<group>"; };
-		BC3C4C7014575B6A0025FB62 /* WKBrowsingContextLoadDelegateTest.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = WKBrowsingContextLoadDelegateTest.mm; path = WebKit2ObjC/WKBrowsingContextLoadDelegateTest.mm; sourceTree = "<group>"; };
-		BC3C4C7D14587AA60025FB62 /* WKBrowsingContextGroupTest.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = WKBrowsingContextGroupTest.mm; path = WebKit2ObjC/WKBrowsingContextGroupTest.mm; sourceTree = "<group>"; };
-		BC55F5F814AD78EE00484BE1 /* Vector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Vector.cpp; path = WTF/Vector.cpp; sourceTree = "<group>"; };
-		BC575946126E7351006F0F12 /* InjectedBundleMain.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = InjectedBundleMain.cpp; sourceTree = "<group>"; };
-		BC575980126E74AF006F0F12 /* InjectedBundleTestWebKitAPI.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = InjectedBundleTestWebKitAPI.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
-		BC575981126E74AF006F0F12 /* InjectedBundle-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "InjectedBundle-Info.plist"; sourceTree = "<group>"; };
-		BC575A9E126E75FB006F0F12 /* InjectedBundleTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InjectedBundleTest.h; sourceTree = "<group>"; };
-		BC575A9F126E7657006F0F12 /* InjectedBundleController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InjectedBundleController.h; sourceTree = "<group>"; };
-		BC575AA0126E7657006F0F12 /* InjectedBundleController.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = InjectedBundleController.cpp; sourceTree = "<group>"; };
-		BC575AAC126E83B9006F0F12 /* InjectedBundleBasic.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = InjectedBundleBasic.cpp; sourceTree = "<group>"; };
-		BC575AAF126E83C8006F0F12 /* InjectedBundleBasic_Bundle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = InjectedBundleBasic_Bundle.cpp; sourceTree = "<group>"; };
-		BC575AE2126E88B1006F0F12 /* InjectedBundle.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = InjectedBundle.xcconfig; sourceTree = "<group>"; };
-		BC575BBF126F5752006F0F12 /* PlatformUtilities.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PlatformUtilities.cpp; sourceTree = "<group>"; };
-		BC7B619A1299FE9E00D174A4 /* WKPreferences.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WKPreferences.cpp; sourceTree = "<group>"; };
-		BC901E221492ADCE0074A667 /* WKConnection.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WKConnection.cpp; sourceTree = "<group>"; };
-		BC901E311492AF390074A667 /* WKConnection_Bundle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WKConnection_Bundle.cpp; sourceTree = "<group>"; };
-		BC90951B125533D700083756 /* PlatformWebView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlatformWebView.h; sourceTree = "<group>"; };
-		BC90955C125548AA00083756 /* PlatformWebViewMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PlatformWebViewMac.mm; sourceTree = "<group>"; };
-		BC90957E12554CF900083756 /* Base.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Base.xcconfig; sourceTree = "<group>"; };
-		BC90957F12554CF900083756 /* DebugRelease.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = DebugRelease.xcconfig; sourceTree = "<group>"; };
-		BC90958012554CF900083756 /* TestWebKitAPI.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = TestWebKitAPI.xcconfig; sourceTree = "<group>"; };
-		BC90964B125561BF00083756 /* VectorBasic.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = VectorBasic.cpp; path = WTF/VectorBasic.cpp; sourceTree = "<group>"; };
-		BC90964D1255620C00083756 /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = JavaScriptCore.framework; sourceTree = BUILT_PRODUCTS_DIR; };
-		BC909778125571AB00083756 /* simple.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = simple.html; sourceTree = "<group>"; };
-		BC909779125571AB00083756 /* PageLoadBasic.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PageLoadBasic.cpp; sourceTree = "<group>"; };
-		BC90995D12567BC100083756 /* WKString.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WKString.cpp; sourceTree = "<group>"; };
-		BC9099931256ACF100083756 /* WKStringJSString.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WKStringJSString.cpp; sourceTree = "<group>"; };
-		BCA61DB411700EFD00460D1E /* WebKit2.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = WebKit2.framework; sourceTree = BUILT_PRODUCTS_DIR; };
-		BCAA485514A021640088FAC4 /* simple-tall.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "simple-tall.html"; sourceTree = "<group>"; };
-		BCAA485714A044D40088FAC4 /* EditorCommands.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = EditorCommands.mm; sourceTree = "<group>"; };
-		BCB6803F126FBFE100642A61 /* DocumentStartUserScriptAlertCrash.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DocumentStartUserScriptAlertCrash.cpp; sourceTree = "<group>"; };
-		BCB68041126FBFF100642A61 /* DocumentStartUserScriptAlertCrash_Bundle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DocumentStartUserScriptAlertCrash_Bundle.cpp; sourceTree = "<group>"; };
-		BCB9E7C711234E3A00A137E0 /* TestsController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestsController.h; sourceTree = "<group>"; };
-		BCB9E7FA112359A300A137E0 /* Test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Test.h; sourceTree = "<group>"; };
-		BCB9E9F011235BDE00A137E0 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
-		BCBD370F125AA2EB00D2C29F /* FrameMIMETypeHTML.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FrameMIMETypeHTML.cpp; sourceTree = "<group>"; };
-		BCBD372E125ABBE600D2C29F /* icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon.png; sourceTree = "<group>"; };
-		BCBD3760125ABCFE00D2C29F /* FrameMIMETypePNG.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FrameMIMETypePNG.cpp; sourceTree = "<group>"; };
-		BCC8B95A12611F4700DE46A4 /* FailedLoad.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FailedLoad.cpp; sourceTree = "<group>"; };
-		C01363C713C3997300EF3964 /* StringOperators.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = StringOperators.cpp; path = WTF/StringOperators.cpp; sourceTree = "<group>"; };
-		C02B77F1126612140026BF0F /* SpacebarScrolling.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SpacebarScrolling.cpp; sourceTree = "<group>"; };
-		C02B7853126613AE0026BF0F /* Carbon.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; name = Carbon.framework; sourceTree = SDKROOT; };
-		C02B7882126615410026BF0F /* spacebar-scrolling.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "spacebar-scrolling.html"; sourceTree = "<group>"; };
-		C045F9441385C2E900C0F3CD /* DownloadDecideDestinationCrash.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DownloadDecideDestinationCrash.cpp; sourceTree = "<group>"; };
-		C045F9461385C2F800C0F3CD /* 18-characters.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "18-characters.html"; sourceTree = "<group>"; };
-		C07E6CAE13FD67650038B22B /* DynamicDeviceScaleFactor.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = DynamicDeviceScaleFactor.mm; sourceTree = "<group>"; };
-		C07E6CB113FD738A0038B22B /* devicePixelRatio.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = devicePixelRatio.html; sourceTree = "<group>"; };
-		C081224013FC172400DC39AE /* JavaScriptTestMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = JavaScriptTestMac.mm; sourceTree = "<group>"; };
-		C081224313FC19EC00DC39AE /* SyntheticBackingScaleFactorWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SyntheticBackingScaleFactorWindow.h; sourceTree = "<group>"; };
-		C081224413FC19EC00DC39AE /* SyntheticBackingScaleFactorWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SyntheticBackingScaleFactorWindow.m; sourceTree = "<group>"; };
-		C081224813FC1B0300DC39AE /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = WebKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
-		C08587BD13FE956C001EF4E5 /* WebKitAgnosticTest.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WebKitAgnosticTest.mm; sourceTree = "<group>"; };
-		C08587BE13FE956C001EF4E5 /* WebKitAgnosticTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebKitAgnosticTest.h; sourceTree = "<group>"; };
-		C08587FB13FEC39B001EF4E5 /* InstanceMethodSwizzler.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = InstanceMethodSwizzler.mm; sourceTree = "<group>"; };
-		C08587FE13FEC3A6001EF4E5 /* InstanceMethodSwizzler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InstanceMethodSwizzler.h; sourceTree = "<group>"; };
-		C08587FF13FEC3A6001EF4E5 /* InstanceMethodSwizzler.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = InstanceMethodSwizzler.mm; sourceTree = "<group>"; };
-		C0991C50143C7D68007998F2 /* RetainPtrHashing.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RetainPtrHashing.cpp; sourceTree = "<group>"; };
-		C0ADBE7A12FCA4D000D2C129 /* JavaScriptTest.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JavaScriptTest.cpp; sourceTree = "<group>"; };
-		C0ADBE7B12FCA4D000D2C129 /* JavaScriptTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JavaScriptTest.h; sourceTree = "<group>"; };
-		C0ADBE8212FCA6AA00D2C129 /* RestoreSessionStateContainingFormData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RestoreSessionStateContainingFormData.cpp; sourceTree = "<group>"; };
-		C0ADBE8412FCA6B600D2C129 /* simple-form.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "simple-form.html"; sourceTree = "<group>"; };
-		C0BD669C131D3CF700E18F2A /* ResponsivenessTimerDoesntFireEarly.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ResponsivenessTimerDoesntFireEarly.cpp; sourceTree = "<group>"; };
-		C0BD669E131D3CFF00E18F2A /* ResponsivenessTimerDoesntFireEarly_Bundle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ResponsivenessTimerDoesntFireEarly_Bundle.cpp; sourceTree = "<group>"; };
-		C0C5D3BC14598B6F00A802A6 /* GetBackingScaleFactor.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = GetBackingScaleFactor.mm; sourceTree = "<group>"; };
-		C0C5D3BD14598B6F00A802A6 /* GetBackingScaleFactor_Bundle.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = GetBackingScaleFactor_Bundle.mm; sourceTree = "<group>"; };
-		C2CF975816CEC69E0054E99D /* JSContextBackForwardCache1.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = JSContextBackForwardCache1.html; sourceTree = "<group>"; };
-		C2CF975916CEC69E0054E99D /* JSContextBackForwardCache2.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = JSContextBackForwardCache2.html; sourceTree = "<group>"; };
-		C2EB2DD116CAC7AC009B52EE /* WebViewDidCreateJavaScriptContext.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WebViewDidCreateJavaScriptContext.mm; sourceTree = "<group>"; };
-		C507E8A614C6545B005D6B3B /* InspectorBar.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = InspectorBar.mm; sourceTree = "<group>"; };
-		C51AFB98169F49FF009CCF66 /* FindMatches.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = FindMatches.mm; sourceTree = "<group>"; };
-		C540F775152E4DA000A40C8C /* SimplifyMarkup.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = SimplifyMarkup.mm; sourceTree = "<group>"; };
-		C540F783152E5A7800A40C8C /* verboseMarkup.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = verboseMarkup.html; sourceTree = "<group>"; };
-		C54237ED16B8955800E638FC /* PasteboardNotifications_Bundle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PasteboardNotifications_Bundle.cpp; sourceTree = "<group>"; };
-		C54237EE16B8955800E638FC /* PasteboardNotifications.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PasteboardNotifications.mm; sourceTree = "<group>"; };
-		C5E1AFFD16B22179006CC1F2 /* execCopy.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = execCopy.html; sourceTree = "<group>"; };
-		CD5497B315857F0C00B5BC30 /* MediaTime.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = MediaTime.cpp; path = WTF/MediaTime.cpp; sourceTree = "<group>"; };
-		E1220D9F155B25480013E2FC /* MemoryCacheDisableWithinResourceLoadDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MemoryCacheDisableWithinResourceLoadDelegate.mm; sourceTree = "<group>"; };
-		E1220DC9155B287D0013E2FC /* MemoryCacheDisableWithinResourceLoadDelegate.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = MemoryCacheDisableWithinResourceLoadDelegate.html; sourceTree = "<group>"; };
-		E490296714E2E3A4002BEDD1 /* TypingStyleCrash.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = TypingStyleCrash.mm; sourceTree = "<group>"; };
-		F3FC3EE213678B7300126A65 /* libgtest.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libgtest.a; sourceTree = BUILT_PRODUCTS_DIR; };
-		F660AA0C15A5F061003A1243 /* GetInjectedBundleInitializationUserDataCallback.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GetInjectedBundleInitializationUserDataCallback.cpp; sourceTree = "<group>"; };
-		F660AA0F15A5F624003A1243 /* GetInjectedBundleInitializationUserDataCallback_Bundle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GetInjectedBundleInitializationUserDataCallback_Bundle.cpp; sourceTree = "<group>"; };
-		F660AA1215A619C8003A1243 /* InjectedBundleInitializationUserDataCallbackWins.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = InjectedBundleInitializationUserDataCallbackWins.cpp; sourceTree = "<group>"; };
-		F660AA1415A61ABF003A1243 /* InjectedBundleInitializationUserDataCallbackWins_Bundle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = InjectedBundleInitializationUserDataCallbackWins_Bundle.cpp; sourceTree = "<group>"; };
-		F6F3F29013342FEB00A6BF19 /* CookieManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CookieManager.cpp; sourceTree = "<group>"; };
-		F6F49C6615545C8D0007F39D /* DOMWindowExtensionNoCache_Bundle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DOMWindowExtensionNoCache_Bundle.cpp; sourceTree = "<group>"; };
-		F6F49C6715545C8D0007F39D /* DOMWindowExtensionNoCache.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DOMWindowExtensionNoCache.cpp; sourceTree = "<group>"; };
-		F6FDDDD214241AD4004F1729 /* PrivateBrowsingPushStateNoHistoryCallback.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PrivateBrowsingPushStateNoHistoryCallback.cpp; sourceTree = "<group>"; };
-		F6FDDDD514241C48004F1729 /* push-state.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "push-state.html"; sourceTree = "<group>"; };
-		FE217ECC1640A54A0052988B /* VMInspector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = VMInspector.cpp; sourceTree = "<group>"; };
-/* End PBXFileReference section */
-
-/* Begin PBXFrameworksBuildPhase section */
-		8DD76F9B0486AA7600D96B5E /* Frameworks */ = {
-			isa = PBXFrameworksBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-		BC57597E126E74AF006F0F12 /* Frameworks */ = {
-			isa = PBXFrameworksBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				BC575A90126E74D3006F0F12 /* Cocoa.framework in Frameworks */,
-				BC575A92126E74D3006F0F12 /* JavaScriptCore.framework in Frameworks */,
-				BC575A91126E74D3006F0F12 /* WebKit2.framework in Frameworks */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-/* End PBXFrameworksBuildPhase section */
-
-/* Begin PBXGroup section */
-		08FB7794FE84155DC02AAC07 /* TestWebKitAPI */ = {
-			isa = PBXGroup;
-			children = (
-				08FB7795FE84155DC02AAC07 /* Source */,
-				BCB9EB66112366D800A137E0 /* Tests */,
-				BC90957D12554CEA00083756 /* Configurations */,
-				08FB779DFE84155DC02AAC07 /* External Frameworks and Libraries */,
-				1AB674ADFE9D54B511CA2CBB /* Products */,
-			);
-			name = TestWebKitAPI;
-			sourceTree = "<group>";
-		};
-		08FB7795FE84155DC02AAC07 /* Source */ = {
-			isa = PBXGroup;
-			children = (
-				BC575944126E733C006F0F12 /* InjectedBundle */,
-				2E9660DC16C07D7B00371B42 /* ios */,
-				BCA61C3A11700B9400460D1E /* mac */,
-				BC131A9E1171317C00B69727 /* config.h */,
-				C0ADBE7A12FCA4D000D2C129 /* JavaScriptTest.cpp */,
-				C0ADBE7B12FCA4D000D2C129 /* JavaScriptTest.h */,
-				BC575BBF126F5752006F0F12 /* PlatformUtilities.cpp */,
-				BC131883117114A800B69727 /* PlatformUtilities.h */,
-				BC90951B125533D700083756 /* PlatformWebView.h */,
-				BCB9E7FA112359A300A137E0 /* Test.h */,
-				BC131AA8117131FC00B69727 /* TestsController.cpp */,
-				BCB9E7C711234E3A00A137E0 /* TestsController.h */,
-				44A622C114A0E2B60048515B /* WTFStringUtilities.h */,
-			);
-			name = Source;
-			sourceTree = "<group>";
-		};
-		08FB779DFE84155DC02AAC07 /* External Frameworks and Libraries */ = {
-			isa = PBXGroup;
-			children = (
-				C02B7853126613AE0026BF0F /* Carbon.framework */,
-				BCB9E9F011235BDE00A137E0 /* Cocoa.framework */,
-				BC90964D1255620C00083756 /* JavaScriptCore.framework */,
-				F3FC3EE213678B7300126A65 /* libgtest.a */,
-				C081224813FC1B0300DC39AE /* WebKit.framework */,
-				BCA61DB411700EFD00460D1E /* WebKit2.framework */,
-			);
-			name = "External Frameworks and Libraries";
-			sourceTree = "<group>";
-		};
-		1AB674ADFE9D54B511CA2CBB /* Products */ = {
-			isa = PBXGroup;
-			children = (
-				8DD76FA10486AA7600D96B5E /* TestWebKitAPI */,
-				BC575980126E74AF006F0F12 /* InjectedBundleTestWebKitAPI.bundle */,
-			);
-			name = Products;
-			sourceTree = "<group>";
-		};
-		2E9660DC16C07D7B00371B42 /* ios */ = {
-			isa = PBXGroup;
-			children = (
-				2E7765CC16C4D80A00BA2BB1 /* mainIOS.mm */,
-			);
-			path = ios;
-			sourceTree = "<group>";
-		};
-		440A1D3614A01000008A66F2 /* WebCore */ = {
-			isa = PBXGroup;
-			children = (
-				440A1D3814A0103A008A66F2 /* KURL.cpp */,
-				14464012167A8305000BD218 /* LayoutUnit.cpp */,
-			);
-			path = WebCore;
-			sourceTree = "<group>";
-		};
-		BC029B1A1486B23800817DA9 /* ns */ = {
-			isa = PBXGroup;
-			children = (
-				BC029B1B1486B25900817DA9 /* RetainPtr.mm */,
-			);
-			name = ns;
-			sourceTree = "<group>";
-		};
-		BC3C4C6F14575B1D0025FB62 /* WebKit2 Objective-C */ = {
-			isa = PBXGroup;
-			children = (
-				29AB8A9F164C735800D49BEC /* CustomProtocolsTest.mm */,
-				2943BE84161DFEB800999E3D /* UserContentTest.mm */,
-				BC3C4C7D14587AA60025FB62 /* WKBrowsingContextGroupTest.mm */,
-				BC3C4C7014575B6A0025FB62 /* WKBrowsingContextLoadDelegateTest.mm */,
-			);
-			name = "WebKit2 Objective-C";
-			sourceTree = "<group>";
-		};
-		BC575944126E733C006F0F12 /* InjectedBundle */ = {
-			isa = PBXGroup;
-			children = (
-				BC575981126E74AF006F0F12 /* InjectedBundle-Info.plist */,
-				BC575AA0126E7657006F0F12 /* InjectedBundleController.cpp */,
-				BC575A9F126E7657006F0F12 /* InjectedBundleController.h */,
-				BC575946126E7351006F0F12 /* InjectedBundleMain.cpp */,
-				BC575A9E126E75FB006F0F12 /* InjectedBundleTest.h */,
-			);
-			name = InjectedBundle;
-			sourceTree = "<group>";
-		};
-		BC90957D12554CEA00083756 /* Configurations */ = {
-			isa = PBXGroup;
-			children = (
-				BC90957E12554CF900083756 /* Base.xcconfig */,
-				BC90957F12554CF900083756 /* DebugRelease.xcconfig */,
-				BC575AE2126E88B1006F0F12 /* InjectedBundle.xcconfig */,
-				BC90958012554CF900083756 /* TestWebKitAPI.xcconfig */,
-			);
-			path = Configurations;
-			sourceTree = "<group>";
-		};
-		BC9096411255616000083756 /* WebKit2 */ = {
-			isa = PBXGroup;
-			children = (
-				C0C5D3BB14598B6F00A802A6 /* mac */,
-				BC90977B125571AE00083756 /* Resources */,
-				BC246D8C132F115A00B56D7C /* AboutBlankLoad.cpp */,
-				BC246D98132F1FE100B56D7C /* CanHandleRequest.cpp */,
-				BC246D97132F1FE100B56D7C /* CanHandleRequest_Bundle.cpp */,
-				F6F3F29013342FEB00A6BF19 /* CookieManager.cpp */,
-				BCB6803F126FBFE100642A61 /* DocumentStartUserScriptAlertCrash.cpp */,
-				BCB68041126FBFF100642A61 /* DocumentStartUserScriptAlertCrash_Bundle.cpp */,
-				51393E1E1523944A005F39C5 /* DOMWindowExtensionBasic.cpp */,
-				51393E1D1523944A005F39C5 /* DOMWindowExtensionBasic_Bundle.cpp */,
-				F6F49C6715545C8D0007F39D /* DOMWindowExtensionNoCache.cpp */,
-				F6F49C6615545C8D0007F39D /* DOMWindowExtensionNoCache_Bundle.cpp */,
-				C045F9441385C2E900C0F3CD /* DownloadDecideDestinationCrash.cpp */,
-				1A5FEFDC1270E2A3000E2921 /* EvaluateJavaScript.cpp */,
-				BCC8B95A12611F4700DE46A4 /* FailedLoad.cpp */,
-				1A02C84E125D4A8400E3F4BD /* Find.cpp */,
-				C51AFB98169F49FF009CCF66 /* FindMatches.mm */,
-				1ADBEFAD130C689C00D61D19 /* ForceRepaint.cpp */,
-				BCBD370F125AA2EB00D2C29F /* FrameMIMETypeHTML.cpp */,
-				BCBD3760125ABCFE00D2C29F /* FrameMIMETypePNG.cpp */,
-				F660AA0C15A5F061003A1243 /* GetInjectedBundleInitializationUserDataCallback.cpp */,
-				F660AA0F15A5F624003A1243 /* GetInjectedBundleInitializationUserDataCallback_Bundle.cpp */,
-				4BFDFFA8131477770061F24B /* HitTestResultNodeHandle.cpp */,
-				4BFDFFA61314776C0061F24B /* HitTestResultNodeHandle_Bundle.cpp */,
-				BC575AAC126E83B9006F0F12 /* InjectedBundleBasic.cpp */,
-				BC575AAF126E83C8006F0F12 /* InjectedBundleBasic_Bundle.cpp */,
-				378E64711632646D00B6C676 /* InjectedBundleFrameHitTest.cpp */,
-				378E64751632655D00B6C676 /* InjectedBundleFrameHitTest_Bundle.cpp */,
-				F660AA1215A619C8003A1243 /* InjectedBundleInitializationUserDataCallbackWins.cpp */,
-				F660AA1415A61ABF003A1243 /* InjectedBundleInitializationUserDataCallbackWins_Bundle.cpp */,
-				52CB47401448FB9300873995 /* LoadAlternateHTMLStringWithNonDirectoryURL.cpp */,
-				33DC8910141953A300747EF7 /* LoadCanceledNoServerRedirectCallback.cpp */,
-				33DC89131419579F00747EF7 /* LoadCanceledNoServerRedirectCallback_Bundle.cpp */,
-				33BE5AF4137B5A6C00705813 /* MouseMoveAfterCrash.cpp */,
-				33BE5AF8137B5AAE00705813 /* MouseMoveAfterCrash_Bundle.cpp */,
-				93F1DB3014DA20760024C362 /* NewFirstVisuallyNonEmptyLayout.cpp */,
-				93F1DB3314DA20870024C362 /* NewFirstVisuallyNonEmptyLayout_Bundle.cpp */,
-				93F1DB5414DB1B730024C362 /* NewFirstVisuallyNonEmptyLayoutFails.cpp */,
-				93F1DB5614DB1B840024C362 /* NewFirstVisuallyNonEmptyLayoutFails_Bundle.cpp */,
-				93AF4ECA1506F035007FD57E /* NewFirstVisuallyNonEmptyLayoutForImages.cpp */,
-				93AF4ECD1506F064007FD57E /* NewFirstVisuallyNonEmptyLayoutForImages_Bundle.cpp */,
-				93F7E86B14DC8E4D00C84A99 /* NewFirstVisuallyNonEmptyLayoutFrames.cpp */,
-				93F7E86E14DC8E5B00C84A99 /* NewFirstVisuallyNonEmptyLayoutFrames_Bundle.cpp */,
-				BC909779125571AB00083756 /* PageLoadBasic.cpp */,
-				BC2D004812A9FDFA00E732A3 /* PageLoadDidChangeLocationWithinPageForFrame.cpp */,
-				A51B650816ADF9B1007AA5D9 /* PageVisibilityState.cpp */,
-				52E5CE4514D21E9D003B2BD8 /* ParentFrame.cpp */,
-				52E5CE4814D21EAB003B2BD8 /* ParentFrame_Bundle.cpp */,
-				C54237EE16B8955800E638FC /* PasteboardNotifications.mm */,
-				C54237ED16B8955800E638FC /* PasteboardNotifications_Bundle.cpp */,
-				333B9CE11277F23100FEFCE3 /* PreventEmptyUserAgent.cpp */,
-				F6FDDDD214241AD4004F1729 /* PrivateBrowsingPushStateNoHistoryCallback.cpp */,
-				8A3AF93A16C9ED2700D248C1 /* ReloadPageAfterCrash.cpp */,
-				8A2C750D16CED9550024F352 /* ResizeWindowAfterCrash.cpp */,
-				C0BD669C131D3CF700E18F2A /* ResponsivenessTimerDoesntFireEarly.cpp */,
-				C0BD669E131D3CFF00E18F2A /* ResponsivenessTimerDoesntFireEarly_Bundle.cpp */,
-				C0ADBE8212FCA6AA00D2C129 /* RestoreSessionStateContainingFormData.cpp */,
-				51FCF7981534AC6D00104491 /* ShouldGoToBackForwardListItem.cpp */,
-				51FCF7971534AC6D00104491 /* ShouldGoToBackForwardListItem_Bundle.cpp */,
-				C02B77F1126612140026BF0F /* SpacebarScrolling.cpp */,
-				BC22D31314DC689800FFB1DD /* UserMessage.cpp */,
-				BC22D31714DC68B800FFB1DD /* UserMessage_Bundle.cpp */,
-				520BCF4B141EB09E00937EA8 /* WebArchive.cpp */,
-				520BCF4A141EB09E00937EA8 /* WebArchive_Bundle.cpp */,
-				0F17BBD415AF6C4D007AB753 /* WebCoreStatisticsWithNoWebProcess.cpp */,
-				76E182D91547550100F1FADD /* WillSendSubmitEvent.cpp */,
-				76E182DC1547569100F1FADD /* WillSendSubmitEvent_Bundle.cpp */,
-				BC901E221492ADCE0074A667 /* WKConnection.cpp */,
-				BC901E311492AF390074A667 /* WKConnection_Bundle.cpp */,
-				51E93016156B13E1004C99DF /* WKPageGetScaleFactorNotZero.cpp */,
-				BC7B619A1299FE9E00D174A4 /* WKPreferences.cpp */,
-				BC90995D12567BC100083756 /* WKString.cpp */,
-				BC9099931256ACF100083756 /* WKStringJSString.cpp */,
-			);
-			path = WebKit2;
-			sourceTree = "<group>";
-		};
-		BC9096461255618900083756 /* WTF */ = {
-			isa = PBXGroup;
-			children = (
-				C0991C4F143C7D68007998F2 /* cf */,
-				BC029B1A1486B23800817DA9 /* ns */,
-				26F1B44215CA434F00D1E4BF /* AtomicString.cpp */,
-				A7A966DA140ECCC8005EF9B4 /* CheckedArithmeticOperations.cpp */,
-				26A2C72E15E2E73C005B1A14 /* CString.cpp */,
-				1AA9E55714980A9900001A8A /* Functional.cpp */,
-				0BCD833414857CE400EA2003 /* HashMap.cpp */,
-				26B2DFF815BDE599004F691D /* HashSet.cpp */,
-				266FAFD215E5775200F61D5B /* IntegerToStringConversion.cpp */,
-				26300B1716755CD90066886D /* ListHashSet.cpp */,
-				B4039F9C15E6D8B3007255D6 /* MathExtras.cpp */,
-				CD5497B315857F0C00B5BC30 /* MediaTime.cpp */,
-				4F4D2C0D1626FE2700320FE1 /* MemoryInstrumentationTest.cpp */,
-				0FC6C4CE141034AD005B7F0C /* MetaAllocator.cpp */,
-				0FC6C4CB141027E0005B7F0C /* RedBlackTree.cpp */,
-				14F3B11215E45EAB00210069 /* SaturatedArithmeticOperations.cpp */,
-				81B50192140F232300D9EB58 /* StringBuilder.cpp */,
-				93ABA80816DDAB91002DB2FA /* StringHasher.cpp */,
-				26F1B44315CA434F00D1E4BF /* StringImpl.cpp */,
-				C01363C713C3997300EF3964 /* StringOperators.cpp */,
-				0BCD85691485C98B00EA2003 /* TemporaryChange.cpp */,
-				BC55F5F814AD78EE00484BE1 /* Vector.cpp */,
-				BC90964B125561BF00083756 /* VectorBasic.cpp */,
-				37200B9113A16230007A4FAD /* VectorReverse.cpp */,
-				265AF54F15D1E48A00B0CB4A /* WTFString.cpp */,
-			);
-			name = WTF;
-			sourceTree = "<group>";
-		};
-		BC90977B125571AE00083756 /* Resources */ = {
-			isa = PBXGroup;
-			children = (
-				C045F9461385C2F800C0F3CD /* 18-characters.html */,
-				76E182DE15475A8300F1FADD /* auto-submitting-form.html */,
-				C5E1AFFD16B22179006CC1F2 /* execCopy.html */,
-				BC2D004A12A9FEB300E732A3 /* file-with-anchor.html */,
-				1A02C84B125D4A5E00E3F4BD /* find.html */,
-				BCBD372E125ABBE600D2C29F /* icon.png */,
-				378E647816326FDF00B6C676 /* link-with-title.html */,
-				9361002814DC957B0061379D /* lots-of-iframes.html */,
-				93AF4ECF1506F123007FD57E /* lots-of-images.html */,
-				930AD401150698B30067970F /* lots-of-text.html */,
-				33E79E05137B5FCE00E32D99 /* mouse-move-listener.html */,
-				F6FDDDD514241C48004F1729 /* push-state.html */,
-				1ADBEFBC130C6A0100D61D19 /* simple-accelerated-compositing.html */,
-				C0ADBE8412FCA6B600D2C129 /* simple-form.html */,
-				33DC890E1419539300747EF7 /* simple-iframe.html */,
-				BCAA485514A021640088FAC4 /* simple-tall.html */,
-				BC909778125571AB00083756 /* simple.html */,
-				C02B7882126615410026BF0F /* spacebar-scrolling.html */,
-			);
-			name = Resources;
-			sourceTree = "<group>";
-		};
-		BCA61C3A11700B9400460D1E /* mac */ = {
-			isa = PBXGroup;
-			children = (
-				1AEDE22413E5E7A000E62FE8 /* InjectedBundleControllerMac.mm */,
-				C08587FE13FEC3A6001EF4E5 /* InstanceMethodSwizzler.h */,
-				C08587FF13FEC3A6001EF4E5 /* InstanceMethodSwizzler.mm */,
-				C081224013FC172400DC39AE /* JavaScriptTestMac.mm */,
-				2E7765CE16C4D81100BA2BB1 /* mainMac.mm */,
-				BC131884117114B600B69727 /* PlatformUtilitiesMac.mm */,
-				BC90955C125548AA00083756 /* PlatformWebViewMac.mm */,
-				C081224313FC19EC00DC39AE /* SyntheticBackingScaleFactorWindow.h */,
-				C081224413FC19EC00DC39AE /* SyntheticBackingScaleFactorWindow.m */,
-				29AB8AA3164C7A9300D49BEC /* TestBrowsingContextLoadDelegate.h */,
-				29AB8AA2164C7A9300D49BEC /* TestBrowsingContextLoadDelegate.mm */,
-				C08587BE13FE956C001EF4E5 /* WebKitAgnosticTest.h */,
-				C08587BD13FE956C001EF4E5 /* WebKitAgnosticTest.mm */,
-			);
-			path = mac;
-			sourceTree = "<group>";
-		};
-		BCB9EB66112366D800A137E0 /* Tests */ = {
-			isa = PBXGroup;
-			children = (
-				FE217ECB1640A54A0052988B /* JavaScriptCore */,
-				C07E6CAD13FD67650038B22B /* mac */,
-				C08587F913FEC39B001EF4E5 /* TestWebKitAPI */,
-				440A1D3614A01000008A66F2 /* WebCore */,
-				BC9096411255616000083756 /* WebKit2 */,
-				BC3C4C6F14575B1D0025FB62 /* WebKit2 Objective-C */,
-				BC9096461255618900083756 /* WTF */,
-			);
-			path = Tests;
-			sourceTree = "<group>";
-		};
-		C07E6CAD13FD67650038B22B /* mac */ = {
-			isa = PBXGroup;
-			children = (
-				C07E6CB013FD737C0038B22B /* Resources */,
-				379028B514FABD92007E6B43 /* AcceptsFirstMouse.mm */,
-				B55F119F1516834F00915916 /* AttributedString.mm */,
-				00CD9F6215BE312C002DA2CE /* BackForwardList.mm */,
-				26DF5A5D15A29BAA003689C2 /* CancelLoadFromResourceLoadDelegate.mm */,
-				5142B2701517C88B00C32B19 /* ContextMenuCanCopyURL.mm */,
-				3776BC62150946BC0043A66D /* DeviceScaleFactorInDashboardRegions.mm */,
-				939BA91614103412001A01BD /* DeviceScaleFactorOnBack.mm */,
-				37E1064A1697676400B78BD0 /* DOMHTMLTableCellCellAbove.mm */,
-				3751AF7A169518F800764319 /* DOMNodeFromJSObject.mm */,
-				37DC678B140D7C5000ABCCDB /* DOMRangeOfString.mm */,
-				C07E6CAE13FD67650038B22B /* DynamicDeviceScaleFactor.mm */,
-				4BB4160316815F9100824238 /* ElementAtPointInWebFrame.mm */,
-				9B4F8FA3159D52B1002D9F94 /* HTMLCollectionNamedItem.mm */,
-				9B26FC6B159D061000CC3765 /* HTMLFormCollectionNamedItem.mm */,
-				C507E8A614C6545B005D6B3B /* InspectorBar.mm */,
-				4BB4160116815B2600824238 /* JSWrapperForNodeInWebFrame.mm */,
-				E1220D9F155B25480013E2FC /* MemoryCacheDisableWithinResourceLoadDelegate.mm */,
-				517E7DFB15110EA600D0B008 /* MemoryCachePruneWithinResourceLoadDelegate.mm */,
-				A57A34EF16AF677200C2501F /* PageVisibilityStateWithWindowChanges.mm */,
-				00BC16851680FE810065F1E5 /* PublicSuffix.mm */,
-				3722C8681461E03E00C45D00 /* RenderedImageFromDOMRange.mm */,
-				261516D515B0E60500A2C201 /* SetAndUpdateCacheModel.mm */,
-				52B8CF9515868CF000281053 /* SetDocumentURI.mm */,
-				C540F775152E4DA000A40C8C /* SimplifyMarkup.mm */,
-				3799AD3914120A43005EB0C6 /* StringByEvaluatingJavaScriptFromString.mm */,
-				37A6895D148A9B50005100FA /* SubresourceErrorCrash.mm */,
-				E490296714E2E3A4002BEDD1 /* TypingStyleCrash.mm */,
-				51FBBB4C1513D4E900822738 /* WebViewCanPasteURL.mm */,
-				37E38C33169B7D010084C28C /* WebViewDidRemoveFrameFromHierarchy.mm */,
-				A5E2027215B2181900C13E14 /* WindowlessWebViewWithMedia.mm */,
-				C2EB2DD116CAC7AC009B52EE /* WebViewDidCreateJavaScriptContext.mm */,
-			);
-			path = mac;
-			sourceTree = "<group>";
-		};
-		C07E6CB013FD737C0038B22B /* Resources */ = {
-			isa = PBXGroup;
-			children = (
-				C2CF975816CEC69E0054E99D /* JSContextBackForwardCache1.html */,
-				C2CF975916CEC69E0054E99D /* JSContextBackForwardCache2.html */,
-				379028B814FABE49007E6B43 /* acceptsFirstMouse.html */,
-				B55F11B9151916E600915916 /* Ahem.ttf */,
-				B55F11B01517A2C400915916 /* attributedStringCustomFont.html */,
-				26DF5A6115A2A22B003689C2 /* CancelLoadFromResourceLoadDelegate.html */,
-				5142B2721517C89100C32B19 /* ContextMenuCanCopyURL.html */,
-				C07E6CB113FD738A0038B22B /* devicePixelRatio.html */,
-				37E1064B169767F700B78BD0 /* DOMHTMLTableCellElementCellAbove.html */,
-				37DC678F140D7D3A00ABCCDB /* DOMRangeOfString.html */,
-				9B4F8FA6159D52CA002D9F94 /* HTMLCollectionNamedItem.html */,
-				9B26FCB4159D15E700CC3765 /* HTMLFormCollectionNamedItem.html */,
-				E1220DC9155B287D0013E2FC /* MemoryCacheDisableWithinResourceLoadDelegate.html */,
-				517E7E031511187500D0B008 /* MemoryCachePruneWithinResourceLoadDelegate.html */,
-				A57A34F116AF69E200C2501F /* PageVisibilityStateWithWindowChanges.html */,
-				52B8CF9415868CF000281053 /* SetDocumentURI.html */,
-				C540F783152E5A7800A40C8C /* verboseMarkup.html */,
-				A5E2027015B2180600C13E14 /* WindowlessWebViewWithMedia.html */,
-			);
-			name = Resources;
-			sourceTree = "<group>";
-		};
-		C08587F913FEC39B001EF4E5 /* TestWebKitAPI */ = {
-			isa = PBXGroup;
-			children = (
-				C08587FA13FEC39B001EF4E5 /* mac */,
-			);
-			path = TestWebKitAPI;
-			sourceTree = "<group>";
-		};
-		C08587FA13FEC39B001EF4E5 /* mac */ = {
-			isa = PBXGroup;
-			children = (
-				C08587FB13FEC39B001EF4E5 /* InstanceMethodSwizzler.mm */,
-			);
-			path = mac;
-			sourceTree = "<group>";
-		};
-		C0991C4F143C7D68007998F2 /* cf */ = {
-			isa = PBXGroup;
-			children = (
-				BC029B161486AD6400817DA9 /* RetainPtr.cpp */,
-				C0991C50143C7D68007998F2 /* RetainPtrHashing.cpp */,
-			);
-			name = cf;
-			path = WTF/cf;
-			sourceTree = "<group>";
-		};
-		C0C5D3BB14598B6F00A802A6 /* mac */ = {
-			isa = PBXGroup;
-			children = (
-				BCAA485714A044D40088FAC4 /* EditorCommands.mm */,
-				C0C5D3BC14598B6F00A802A6 /* GetBackingScaleFactor.mm */,
-				C0C5D3BD14598B6F00A802A6 /* GetBackingScaleFactor_Bundle.mm */,
-			);
-			path = mac;
-			sourceTree = "<group>";
-		};
-		FE217ECB1640A54A0052988B /* JavaScriptCore */ = {
-			isa = PBXGroup;
-			children = (
-				FE217ECC1640A54A0052988B /* VMInspector.cpp */,
-			);
-			path = JavaScriptCore;
-			sourceTree = "<group>";
-		};
-/* End PBXGroup section */
-
-/* Begin PBXNativeTarget section */
-		8DD76F960486AA7600D96B5E /* TestWebKitAPI */ = {
-			isa = PBXNativeTarget;
-			buildConfigurationList = 1DEB927408733DD40010E9CD /* Build configuration list for PBXNativeTarget "TestWebKitAPI" */;
-			buildPhases = (
-				8DD76F990486AA7600D96B5E /* Sources */,
-				8DD76F9B0486AA7600D96B5E /* Frameworks */,
-				8DD76F9E0486AA7600D96B5E /* CopyFiles */,
-				BCB9F4FB112384C000A137E0 /* Copy Resources */,
-			);
-			buildRules = (
-			);
-			dependencies = (
-				BC575A96126E74E7006F0F12 /* PBXTargetDependency */,
-			);
-			name = TestWebKitAPI;
-			productInstallPath = "$(HOME)/bin";
-			productName = TestWebKitAPI;
-			productReference = 8DD76FA10486AA7600D96B5E /* TestWebKitAPI */;
-			productType = "com.apple.product-type.tool";
-		};
-		BC57597F126E74AF006F0F12 /* InjectedBundleTestWebKitAPI */ = {
-			isa = PBXNativeTarget;
-			buildConfigurationList = BC575986126E74AF006F0F12 /* Build configuration list for PBXNativeTarget "InjectedBundleTestWebKitAPI" */;
-			buildPhases = (
-				BC57597C126E74AF006F0F12 /* Resources */,
-				BC57597D126E74AF006F0F12 /* Sources */,
-				BC57597E126E74AF006F0F12 /* Frameworks */,
-			);
-			buildRules = (
-			);
-			dependencies = (
-			);
-			name = InjectedBundleTestWebKitAPI;
-			productName = InjectedBundle;
-			productReference = BC575980126E74AF006F0F12 /* InjectedBundleTestWebKitAPI.bundle */;
-			productType = "com.apple.product-type.bundle";
-		};
-/* End PBXNativeTarget section */
-
-/* Begin PBXProject section */
-		08FB7793FE84155DC02AAC07 /* Project object */ = {
-			isa = PBXProject;
-			buildConfigurationList = 1DEB927808733DD40010E9CD /* Build configuration list for PBXProject "TestWebKitAPI" */;
-			compatibilityVersion = "Xcode 3.1";
-			developmentRegion = English;
-			hasScannedForEncodings = 1;
-			knownRegions = (
-				English,
-				Japanese,
-				French,
-				German,
-			);
-			mainGroup = 08FB7794FE84155DC02AAC07 /* TestWebKitAPI */;
-			projectDirPath = "";
-			projectRoot = "";
-			targets = (
-				8DD76F960486AA7600D96B5E /* TestWebKitAPI */,
-				BC57597F126E74AF006F0F12 /* InjectedBundleTestWebKitAPI */,
-			);
-		};
-/* End PBXProject section */
-
-/* Begin PBXResourcesBuildPhase section */
-		BC57597C126E74AF006F0F12 /* Resources */ = {
-			isa = PBXResourcesBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				93AF4ED01506F123007FD57E /* lots-of-images.html in Resources */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-/* End PBXResourcesBuildPhase section */
-
-/* Begin PBXSourcesBuildPhase section */
-		8DD76F990486AA7600D96B5E /* Sources */ = {
-			isa = PBXSourcesBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				BC246D8E132F115A00B56D7C /* AboutBlankLoad.cpp in Sources */,
-				379028B614FABD92007E6B43 /* AcceptsFirstMouse.mm in Sources */,
-				26F1B44415CA434F00D1E4BF /* AtomicString.cpp in Sources */,
-				B55F11A01516834F00915916 /* AttributedString.mm in Sources */,
-				00CD9F6315BE312C002DA2CE /* BackForwardList.mm in Sources */,
-				26DF5A5E15A29BAA003689C2 /* CancelLoadFromResourceLoadDelegate.mm in Sources */,
-				BC246D9A132F1FE100B56D7C /* CanHandleRequest.cpp in Sources */,
-				A7A966DB140ECCC8005EF9B4 /* CheckedArithmeticOperations.cpp in Sources */,
-				5142B2711517C88B00C32B19 /* ContextMenuCanCopyURL.mm in Sources */,
-				F6F3F29113342FEB00A6BF19 /* CookieManager.cpp in Sources */,
-				26A2C72F15E2E73C005B1A14 /* CString.cpp in Sources */,
-				29AB8AA1164C735800D49BEC /* CustomProtocolsTest.mm in Sources */,
-				3776BC63150946BC0043A66D /* DeviceScaleFactorInDashboardRegions.mm in Sources */,
-				939BA91714103412001A01BD /* DeviceScaleFactorOnBack.mm in Sources */,
-				BCB68040126FBFE100642A61 /* DocumentStartUserScriptAlertCrash.cpp in Sources */,
-				37E1064D16976C8500B78BD0 /* DOMHTMLTableCellCellAbove.mm in Sources */,
-				3751AF7C169518F800764319 /* DOMNodeFromJSObject.mm in Sources */,
-				37DC678D140D7C5000ABCCDB /* DOMRangeOfString.mm in Sources */,
-				51393E201523944A005F39C5 /* DOMWindowExtensionBasic.cpp in Sources */,
-				F6F49C6915545C8E0007F39D /* DOMWindowExtensionNoCache.cpp in Sources */,
-				C045F9451385C2EA00C0F3CD /* DownloadDecideDestinationCrash.cpp in Sources */,
-				C07E6CAF13FD67650038B22B /* DynamicDeviceScaleFactor.mm in Sources */,
-				BCAA485814A044D40088FAC4 /* EditorCommands.mm in Sources */,
-				4BB4160416815F9100824238 /* ElementAtPointInWebFrame.mm in Sources */,
-				1A5FEFDD1270E2A3000E2921 /* EvaluateJavaScript.cpp in Sources */,
-				BCC8B95B12611F4700DE46A4 /* FailedLoad.cpp in Sources */,
-				1A02C84F125D4A8400E3F4BD /* Find.cpp in Sources */,
-				C51AFB99169F49FF009CCF66 /* FindMatches.mm in Sources */,
-				1ADBEFAE130C689C00D61D19 /* ForceRepaint.cpp in Sources */,
-				BCBD3710125AA2EB00D2C29F /* FrameMIMETypeHTML.cpp in Sources */,
-				BCBD3761125ABCFE00D2C29F /* FrameMIMETypePNG.cpp in Sources */,
-				1AA9E55914980A9900001A8A /* Functional.cpp in Sources */,
-				C0C5D3BE14598B6F00A802A6 /* GetBackingScaleFactor.mm in Sources */,
-				F660AA0D15A5F061003A1243 /* GetInjectedBundleInitializationUserDataCallback.cpp in Sources */,
-				0BCD833514857CE400EA2003 /* HashMap.cpp in Sources */,
-				26B2DFF915BDE599004F691D /* HashSet.cpp in Sources */,
-				4BFDFFA9131477770061F24B /* HitTestResultNodeHandle.cpp in Sources */,
-				9B4F8FA4159D52B1002D9F94 /* HTMLCollectionNamedItem.mm in Sources */,
-				9B26FC6C159D061000CC3765 /* HTMLFormCollectionNamedItem.mm in Sources */,
-				C2EB2DD316CAC7AC009B52EE /* WebViewDidCreateJavaScriptContext.mm in Sources */,
-				BC575AAD126E83B9006F0F12 /* InjectedBundleBasic.cpp in Sources */,
-				378E64731632646D00B6C676 /* InjectedBundleFrameHitTest.cpp in Sources */,
-				F660AA1315A619C9003A1243 /* InjectedBundleInitializationUserDataCallbackWins.cpp in Sources */,
-				C507E8A714C6545B005D6B3B /* InspectorBar.mm in Sources */,
-				C08587FC13FEC39B001EF4E5 /* InstanceMethodSwizzler.mm in Sources */,
-				C085880013FEC3A6001EF4E5 /* InstanceMethodSwizzler.mm in Sources */,
-				266FAFD315E5775200F61D5B /* IntegerToStringConversion.cpp in Sources */,
-				C0ADBE7C12FCA4D000D2C129 /* JavaScriptTest.cpp in Sources */,
-				C081224213FC172400DC39AE /* JavaScriptTestMac.mm in Sources */,
-				4BB4160216815B2600824238 /* JSWrapperForNodeInWebFrame.mm in Sources */,
-				440A1D3914A0103A008A66F2 /* KURL.cpp in Sources */,
-				14464013167A8305000BD218 /* LayoutUnit.cpp in Sources */,
-				26300B1816755CD90066886D /* ListHashSet.cpp in Sources */,
-				52CB47411448FB9300873995 /* LoadAlternateHTMLStringWithNonDirectoryURL.cpp in Sources */,
-				33DC8911141953A300747EF7 /* LoadCanceledNoServerRedirectCallback.cpp in Sources */,
-				B4039F9D15E6D8B3007255D6 /* MathExtras.cpp in Sources */,
-				CD5497B415857F0C00B5BC30 /* MediaTime.cpp in Sources */,
-				E1220DA0155B25480013E2FC /* MemoryCacheDisableWithinResourceLoadDelegate.mm in Sources */,
-				517E7DFC15110EA600D0B008 /* MemoryCachePruneWithinResourceLoadDelegate.mm in Sources */,
-				4F4D2C0E1626FE2700320FE1 /* MemoryInstrumentationTest.cpp in Sources */,
-				0FC6C4CF141034AD005B7F0C /* MetaAllocator.cpp in Sources */,
-				33BE5AF5137B5A6C00705813 /* MouseMoveAfterCrash.cpp in Sources */,
-				93F1DB3114DA20760024C362 /* NewFirstVisuallyNonEmptyLayout.cpp in Sources */,
-				93F1DB5514DB1B730024C362 /* NewFirstVisuallyNonEmptyLayoutFails.cpp in Sources */,
-				9318778915EEC57700A9CCE3 /* NewFirstVisuallyNonEmptyLayoutForImages.cpp in Sources */,
-				93F7E86C14DC8E4D00C84A99 /* NewFirstVisuallyNonEmptyLayoutFrames.cpp in Sources */,
-				BC90977A125571AB00083756 /* PageLoadBasic.cpp in Sources */,
-				BC2D004912A9FDFA00E732A3 /* PageLoadDidChangeLocationWithinPageForFrame.cpp in Sources */,
-				A51B650916ADF9B1007AA5D9 /* PageVisibilityState.cpp in Sources */,
-				A57A34F016AF677200C2501F /* PageVisibilityStateWithWindowChanges.mm in Sources */,
-				52E5CE4614D21E9D003B2BD8 /* ParentFrame.cpp in Sources */,
-				C54237F016B8955800E638FC /* PasteboardNotifications.mm in Sources */,
-				BC575BC0126F5752006F0F12 /* PlatformUtilities.cpp in Sources */,
-				BC131885117114B600B69727 /* PlatformUtilitiesMac.mm in Sources */,
-				BC90955D125548AA00083756 /* PlatformWebViewMac.mm in Sources */,
-				333B9CE21277F23100FEFCE3 /* PreventEmptyUserAgent.cpp in Sources */,
-				F6FDDDD314241AD4004F1729 /* PrivateBrowsingPushStateNoHistoryCallback.cpp in Sources */,
-				00BC16871680FE810065F1E5 /* PublicSuffix.mm in Sources */,
-				0FC6C4CC141027E0005B7F0C /* RedBlackTree.cpp in Sources */,
-				8A3AF93B16C9ED2700D248C1 /* ReloadPageAfterCrash.cpp in Sources */,
-				8A2C750E16CED9550024F352 /* ResizeWindowAfterCrash.cpp in Sources */,
-				3722C8691461E03E00C45D00 /* RenderedImageFromDOMRange.mm in Sources */,
-				C0BD669D131D3CF700E18F2A /* ResponsivenessTimerDoesntFireEarly.cpp in Sources */,
-				C0ADBE8312FCA6AA00D2C129 /* RestoreSessionStateContainingFormData.cpp in Sources */,
-				BC029B181486AD6400817DA9 /* RetainPtr.cpp in Sources */,
-				BC029B1C1486B25900817DA9 /* RetainPtr.mm in Sources */,
-				C0991C51143C7D68007998F2 /* RetainPtrHashing.cpp in Sources */,
-				14F3B11315E45EAB00210069 /* SaturatedArithmeticOperations.cpp in Sources */,
-				261516D615B0E60500A2C201 /* SetAndUpdateCacheModel.mm in Sources */,
-				52B8CF9615868CF000281053 /* SetDocumentURI.mm in Sources */,
-				51FCF79A1534AC6D00104491 /* ShouldGoToBackForwardListItem.cpp in Sources */,
-				C540F776152E4DA000A40C8C /* SimplifyMarkup.mm in Sources */,
-				C02B77F2126612140026BF0F /* SpacebarScrolling.cpp in Sources */,
-				81B50193140F232300D9EB58 /* StringBuilder.cpp in Sources */,
-				3799AD3A14120A43005EB0C6 /* StringByEvaluatingJavaScriptFromString.mm in Sources */,
-				93ABA80916DDAB91002DB2FA /* StringHasher.cpp in Sources */,
-				26F1B44515CA434F00D1E4BF /* StringImpl.cpp in Sources */,
-				C01363C813C3997300EF3964 /* StringOperators.cpp in Sources */,
-				37A6895F148A9B50005100FA /* SubresourceErrorCrash.mm in Sources */,
-				C081224513FC19EC00DC39AE /* SyntheticBackingScaleFactorWindow.m in Sources */,
-				0BCD856A1485C98B00EA2003 /* TemporaryChange.cpp in Sources */,
-				29AB8AA4164C7A9300D49BEC /* TestBrowsingContextLoadDelegate.mm in Sources */,
-				BC131AA9117131FC00B69727 /* TestsController.cpp in Sources */,
-				E490296814E2E3A4002BEDD1 /* TypingStyleCrash.mm in Sources */,
-				2943BE86161DFEB800999E3D /* UserContentTest.mm in Sources */,
-				BC22D31514DC689800FFB1DD /* UserMessage.cpp in Sources */,
-				BC55F5F914AD78EE00484BE1 /* Vector.cpp in Sources */,
-				BC90964C125561BF00083756 /* VectorBasic.cpp in Sources */,
-				37200B9213A16230007A4FAD /* VectorReverse.cpp in Sources */,
-				FE217ECD1640A54A0052988B /* VMInspector.cpp in Sources */,
-				520BCF4D141EB09E00937EA8 /* WebArchive.cpp in Sources */,
-				0F17BBD615AF6C4D007AB753 /* WebCoreStatisticsWithNoWebProcess.cpp in Sources */,
-				C08587BF13FE956C001EF4E5 /* WebKitAgnosticTest.mm in Sources */,
-				51FBBB4D1513D4E900822738 /* WebViewCanPasteURL.mm in Sources */,
-				37E38C34169B7D010084C28C /* WebViewDidRemoveFrameFromHierarchy.mm in Sources */,
-				76E182DA1547550100F1FADD /* WillSendSubmitEvent.cpp in Sources */,
-				A5E2027315B2181900C13E14 /* WindowlessWebViewWithMedia.mm in Sources */,
-				BC3C4C7F14587AA60025FB62 /* WKBrowsingContextGroupTest.mm in Sources */,
-				BC3C4C7214575B6A0025FB62 /* WKBrowsingContextLoadDelegateTest.mm in Sources */,
-				BC901E241492ADCE0074A667 /* WKConnection.cpp in Sources */,
-				51E93017156B13E1004C99DF /* WKPageGetScaleFactorNotZero.cpp in Sources */,
-				BC7B61AA129A038700D174A4 /* WKPreferences.cpp in Sources */,
-				BC90995E12567BC100083756 /* WKString.cpp in Sources */,
-				BC9099941256ACF100083756 /* WKStringJSString.cpp in Sources */,
-				265AF55015D1E48A00B0CB4A /* WTFString.cpp in Sources */,
-				2E7765CD16C4D80A00BA2BB1 /* mainIOS.mm in Sources */,
-				2E7765CF16C4D81100BA2BB1 /* mainMac.mm in Sources */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-		BC57597D126E74AF006F0F12 /* Sources */ = {
-			isa = PBXSourcesBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				BC246D9C132F1FF000B56D7C /* CanHandleRequest_Bundle.cpp in Sources */,
-				BCB68042126FBFF100642A61 /* DocumentStartUserScriptAlertCrash_Bundle.cpp in Sources */,
-				51393E221523952D005F39C5 /* DOMWindowExtensionBasic_Bundle.cpp in Sources */,
-				F6F49C6B15545CA70007F39D /* DOMWindowExtensionNoCache_Bundle.cpp in Sources */,
-				C0C5D3C61459912900A802A6 /* GetBackingScaleFactor_Bundle.mm in Sources */,
-				F660AA1115A5F631003A1243 /* GetInjectedBundleInitializationUserDataCallback_Bundle.cpp in Sources */,
-				4BFDFFA71314776C0061F24B /* HitTestResultNodeHandle_Bundle.cpp in Sources */,
-				BC575AB0126E83C8006F0F12 /* InjectedBundleBasic_Bundle.cpp in Sources */,
-				BC575AA2126E7660006F0F12 /* InjectedBundleController.cpp in Sources */,
-				1AEDE22613E5E7E700E62FE8 /* InjectedBundleControllerMac.mm in Sources */,
-				378E64771632655E00B6C676 /* InjectedBundleFrameHitTest_Bundle.cpp in Sources */,
-				F660AA1515A61ABF003A1243 /* InjectedBundleInitializationUserDataCallbackWins_Bundle.cpp in Sources */,
-				BC575A97126E74F1006F0F12 /* InjectedBundleMain.cpp in Sources */,
-				33DC89141419579F00747EF7 /* LoadCanceledNoServerRedirectCallback_Bundle.cpp in Sources */,
-				33BE5AF9137B5AAE00705813 /* MouseMoveAfterCrash_Bundle.cpp in Sources */,
-				93F1DB3414DA20870024C362 /* NewFirstVisuallyNonEmptyLayout_Bundle.cpp in Sources */,
-				93F1DB5714DB1B840024C362 /* NewFirstVisuallyNonEmptyLayoutFails_Bundle.cpp in Sources */,
-				93AF4ECE1506F064007FD57E /* NewFirstVisuallyNonEmptyLayoutForImages_Bundle.cpp in Sources */,
-				93F7E86F14DC8E5C00C84A99 /* NewFirstVisuallyNonEmptyLayoutFrames_Bundle.cpp in Sources */,
-				52E5CE4914D21EAB003B2BD8 /* ParentFrame_Bundle.cpp in Sources */,
-				C54237F116B8957D00E638FC /* PasteboardNotifications_Bundle.cpp in Sources */,
-				BC575BD9126F58E2006F0F12 /* PlatformUtilities.cpp in Sources */,
-				BC575BE0126F590D006F0F12 /* PlatformUtilitiesMac.mm in Sources */,
-				C0BD669F131D3CFF00E18F2A /* ResponsivenessTimerDoesntFireEarly_Bundle.cpp in Sources */,
-				51FCF7A11534B2A000104491 /* ShouldGoToBackForwardListItem_Bundle.cpp in Sources */,
-				BC22D31914DC68B900FFB1DD /* UserMessage_Bundle.cpp in Sources */,
-				520BCF4C141EB09E00937EA8 /* WebArchive_Bundle.cpp in Sources */,
-				76E182DD1547569100F1FADD /* WillSendSubmitEvent_Bundle.cpp in Sources */,
-				BC901E331492AF390074A667 /* WKConnection_Bundle.cpp in Sources */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-/* End PBXSourcesBuildPhase section */
-
-/* Begin PBXTargetDependency section */
-		BC575A96126E74E7006F0F12 /* PBXTargetDependency */ = {
-			isa = PBXTargetDependency;
-			target = BC57597F126E74AF006F0F12 /* InjectedBundleTestWebKitAPI */;
-			targetProxy = BC575A95126E74E7006F0F12 /* PBXContainerItemProxy */;
-		};
-/* End PBXTargetDependency section */
-
-/* Begin XCBuildConfiguration section */
-		1DEB927508733DD40010E9CD /* Debug */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BC90958012554CF900083756 /* TestWebKitAPI.xcconfig */;
-			buildSettings = {
-			};
-			name = Debug;
-		};
-		1DEB927608733DD40010E9CD /* Release */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BC90958012554CF900083756 /* TestWebKitAPI.xcconfig */;
-			buildSettings = {
-			};
-			name = Release;
-		};
-		1DEB927908733DD40010E9CD /* Debug */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BC90957F12554CF900083756 /* DebugRelease.xcconfig */;
-			buildSettings = {
-				DEBUG_DEFINES = "$(DEBUG_DEFINES_debug)";
-				GCC_OPTIMIZATION_LEVEL = 0;
-			};
-			name = Debug;
-		};
-		1DEB927A08733DD40010E9CD /* Release */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BC90957F12554CF900083756 /* DebugRelease.xcconfig */;
-			buildSettings = {
-			};
-			name = Release;
-		};
-		BC575984126E74AF006F0F12 /* Debug */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BC575AE2126E88B1006F0F12 /* InjectedBundle.xcconfig */;
-			buildSettings = {
-			};
-			name = Debug;
-		};
-		BC575985126E74AF006F0F12 /* Release */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BC575AE2126E88B1006F0F12 /* InjectedBundle.xcconfig */;
-			buildSettings = {
-			};
-			name = Release;
-		};
-/* End XCBuildConfiguration section */
-
-/* Begin XCConfigurationList section */
-		1DEB927408733DD40010E9CD /* Build configuration list for PBXNativeTarget "TestWebKitAPI" */ = {
-			isa = XCConfigurationList;
-			buildConfigurations = (
-				1DEB927508733DD40010E9CD /* Debug */,
-				1DEB927608733DD40010E9CD /* Release */,
-			);
-			defaultConfigurationIsVisible = 0;
-			defaultConfigurationName = Release;
-		};
-		1DEB927808733DD40010E9CD /* Build configuration list for PBXProject "TestWebKitAPI" */ = {
-			isa = XCConfigurationList;
-			buildConfigurations = (
-				1DEB927908733DD40010E9CD /* Debug */,
-				1DEB927A08733DD40010E9CD /* Release */,
-			);
-			defaultConfigurationIsVisible = 0;
-			defaultConfigurationName = Release;
-		};
-		BC575986126E74AF006F0F12 /* Build configuration list for PBXNativeTarget "InjectedBundleTestWebKitAPI" */ = {
-			isa = XCConfigurationList;
-			buildConfigurations = (
-				BC575984126E74AF006F0F12 /* Debug */,
-				BC575985126E74AF006F0F12 /* Release */,
-			);
-			defaultConfigurationIsVisible = 0;
-			defaultConfigurationName = Release;
-		};
-/* End XCConfigurationList section */
-	};
-	rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
-}
diff --git a/Tools/TestWebKitAPI/Tests.pri b/Tools/TestWebKitAPI/Tests.pri
deleted file mode 100644
index 15e81c0..0000000
--- a/Tools/TestWebKitAPI/Tests.pri
+++ /dev/null
@@ -1,3 +0,0 @@
-TEMPLATE = subdirs
-
-SUBDIRS += Tests/WTF Tests/JavaScriptCore Tests/WebKit2
diff --git a/Tools/TestWebKitAPI/Tests/JavaScriptCore/JavaScriptCore.pro b/Tools/TestWebKitAPI/Tests/JavaScriptCore/JavaScriptCore.pro
deleted file mode 100644
index 9d44fad..0000000
--- a/Tools/TestWebKitAPI/Tests/JavaScriptCore/JavaScriptCore.pro
+++ /dev/null
@@ -1,8 +0,0 @@
-TEMPLATE = app
-TARGET = tst_jsc
-
-SOURCES += *.cpp
-
-include(../../TestWebKitAPI.pri)
-
-DEFINES += APITEST_SOURCE_DIR=\\\"$$PWD\\\"
diff --git a/Tools/TestWebKitAPI/Tests/JavaScriptCore/VMInspector.cpp b/Tools/TestWebKitAPI/Tests/JavaScriptCore/VMInspector.cpp
deleted file mode 100644
index b1c1bac..0000000
--- a/Tools/TestWebKitAPI/Tests/JavaScriptCore/VMInspector.cpp
+++ /dev/null
@@ -1,689 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include <interpreter/VMInspector.h>
-#include <stdarg.h>
-#include <stdio.h>
-
-using namespace JSC;
-
-// There's not much we can test for the VMInspector::printf() case except to
-// make sure it does not crash. Unfortunately, we also don't want all the
-// test strings crowding out stdout. So, we forego the printf tests.
-// NOTE that the most interesting part of VMInspector::printf() is the
-// formatting functionality, and it is are already being tested by the
-// fprintf() and sprintf() cases.
-
-
-// The VMInspector::fprintf() test works by printing the string to a temp file,
-// and then reading the file content back into a buffer, which we, in turn,
-// compare against the expected string.
-
-TEST(JSC, VMInspectorFprintf)
-{
-#if ENABLE(VMINSPECTOR)
-    char actual[1024];
-    char expected[1024];
-    const char* format;
-    const char* expectedLiteral;
-    FILE* file;
-    const char* filename = "/tmp/VMInspectorFprintfTest.txt";
-    size_t size;
-
-#define OPEN_FILE(file)                         \
-    do {                                        \
-        file = fopen(filename, "w");            \
-    } while (false)
-
-#define READ_AND_CLOSE_FILE(file, actual)       \
-    do {                                        \
-        fclose(file);                           \
-        file = fopen(filename, "r");            \
-        fseek(file, 0, SEEK_END);               \
-        size = ftell(file);                     \
-        rewind(file);                           \
-        fread(actual, 1, size, file);           \
-        actual[size] = '\0';                    \
-        fclose(file);                           \
-    } while (false)
-
-    // Testing standard default format specifiers:
-    // Note: should work just like sprintf. So, we just compare against that.
-    memset(actual, 'z', sizeof(actual));
-    // The compiler warning flags are configured to expect a literal string for
-    // ::sprintf below. So, use a #define for this one case to keep the
-    // compiler happy.
-#undef LITERAL_FORMAT
-#define LITERAL_FORMAT "'%%%%'                         ==> '%%'\n"
-
-    OPEN_FILE(file);
-    VMInspector::fprintf(file, LITERAL_FORMAT);
-    READ_AND_CLOSE_FILE(file, actual);
-    ::sprintf(expected, LITERAL_FORMAT);
-
-#undef LITERAL_FORMAT
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%c', 'x'                    ==> '%c'\n";
-    OPEN_FILE(file);
-    VMInspector::fprintf(file, format, 'x');
-    READ_AND_CLOSE_FILE(file, actual);
-    ::sprintf(expected, format, 'x');
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%*c', 8, 'x'                ==> '%*c'\n";
-    OPEN_FILE(file);
-    VMInspector::fprintf(file, format, 8, 'x');
-    READ_AND_CLOSE_FILE(file, actual);
-    ::sprintf(expected, format, 8, 'x');
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%s', \"hello world\"          ==> '%s'\n";
-    OPEN_FILE(file);
-    VMInspector::fprintf(file, format, "hello world");
-    READ_AND_CLOSE_FILE(file, actual);
-    ::sprintf(expected, format, "hello world");
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%*s', 8, \"hello world\"      ==> '%*s'\n";
-    OPEN_FILE(file);
-    VMInspector::fprintf(file, format, 8, "hello world");
-    READ_AND_CLOSE_FILE(file, actual);
-    ::sprintf(expected, format, 8, "hello world");
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%*s', 8, \"hello\"            ==> '%*s'\n";
-    OPEN_FILE(file);
-    VMInspector::fprintf(file, format, 8, "hello");
-    READ_AND_CLOSE_FILE(file, actual);
-    ::sprintf(expected, format, 8, "hello");
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%d', 987654321              ==> '%d'\n";
-    OPEN_FILE(file);
-    VMInspector::fprintf(file, format, 987654321);
-    READ_AND_CLOSE_FILE(file, actual);
-    ::sprintf(expected, format, 987654321);
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%u', 4276543210u            ==> '%u'\n";
-    OPEN_FILE(file);
-    VMInspector::fprintf(file, format, 4276543210u);
-    READ_AND_CLOSE_FILE(file, actual);
-    ::sprintf(expected, format, 4276543210u);
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%u', 0xffffffff             ==> '%u'\n";
-    OPEN_FILE(file);
-    VMInspector::fprintf(file, format, 0xffffffff);
-    READ_AND_CLOSE_FILE(file, actual);
-    ::sprintf(expected, format, 0xffffffff);
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%x', 0xffffffff             ==> '%x'\n";
-    OPEN_FILE(file);
-    VMInspector::fprintf(file, format, 0xffffffff);
-    READ_AND_CLOSE_FILE(file, actual);
-    ::sprintf(expected, format, 0xffffffff);
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%p', (void*)0xabcdbabe      ==> '%p'\n";
-    OPEN_FILE(file);
-    VMInspector::fprintf(file, format, (void*)0xabcdbabe);
-    READ_AND_CLOSE_FILE(file, actual);
-    ::sprintf(expected, format, (void*)0xabcdbabe);
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%lu', 1234567890987654321ul ==> '%lu'\n";
-    OPEN_FILE(file);
-    VMInspector::fprintf(file, format, 1234567890987654321ul);
-    READ_AND_CLOSE_FILE(file, actual);
-    ::sprintf(expected, format, 1234567890987654321ul);
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%f', 1234.567               ==> '%f'\n";
-    OPEN_FILE(file);
-    VMInspector::fprintf(file, format, 1234.567);
-    READ_AND_CLOSE_FILE(file, actual);
-    ::sprintf(expected, format, 1234.567);
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%.2f', 1234.567             ==> '%.2f'\n";
-    OPEN_FILE(file);
-    VMInspector::fprintf(file, format, 1234.567);
-    READ_AND_CLOSE_FILE(file, actual);
-    ::sprintf(expected, format, 1234.567);
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%10.2f', 1234.567           ==> '%10.2f'\n";
-    OPEN_FILE(file);
-    VMInspector::fprintf(file, format, 1234.567);
-    READ_AND_CLOSE_FILE(file, actual);
-    ::sprintf(expected, format, 1234.567);
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%010.2f', 1234.567          ==> '%010.2f'\n";
-    OPEN_FILE(file);
-    VMInspector::fprintf(file, format, 1234.567);
-    READ_AND_CLOSE_FILE(file, actual);
-    ::sprintf(expected, format, 1234.567);
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    // Bad / weird formats:
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%5.4', 987654321            ==> '%5.4'\n";
-    OPEN_FILE(file);
-    VMInspector::fprintf(file, format, 987654321);
-    READ_AND_CLOSE_FILE(file, actual);
-    expectedLiteral = "'%5.4', 987654321            ==> 'ERROR @ \"%5.4' \"\n";
-    ASSERT_EQ(strcmp(actual, expectedLiteral), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%5.4' '%%d', 987654321, 4    ==> '%5.4' '%d'\n";
-    OPEN_FILE(file);
-    VMInspector::fprintf(file, format, 987654321, 4);
-    READ_AND_CLOSE_FILE(file, actual);
-    ::sprintf(expected, format, 987654321, 4);
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%w' '%%d', 987654321, 6      ==> '%w' '%d'\n";
-    OPEN_FILE(file);
-    VMInspector::fprintf(file, format, 987654321, 6);
-    READ_AND_CLOSE_FILE(file, actual);
-    ::sprintf(expected, format, 987654321, 6);
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-
-    // Testing the %b extension:
-    memset(actual, 'z', sizeof(actual));
-    OPEN_FILE(file);
-    VMInspector::fprintf(file, "'%%b', 0          ==> '%b'\n", 0);
-    READ_AND_CLOSE_FILE(file, actual);
-    ASSERT_EQ(strcmp(actual, "'%b', 0          ==> 'FALSE'\n"), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    OPEN_FILE(file);
-    VMInspector::fprintf(file, "'%%b', 1          ==> '%b'\n", 1);
-    READ_AND_CLOSE_FILE(file, actual);
-    ASSERT_EQ(strcmp(actual, "'%b', 1          ==> 'TRUE'\n"), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    OPEN_FILE(file);
-    VMInspector::fprintf(file, "'%%b', -123456789 ==> '%b'\n", -123456789);
-    READ_AND_CLOSE_FILE(file, actual);
-    ASSERT_EQ(strcmp(actual, "'%b', -123456789 ==> 'TRUE'\n"), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    OPEN_FILE(file);
-    VMInspector::fprintf(file, "'%%b', 123456789  ==> '%b'\n", 123456789);
-    READ_AND_CLOSE_FILE(file, actual);
-    ASSERT_EQ(strcmp(actual, "'%b', 123456789  ==> 'TRUE'\n"), 0);
-
-
-    // Testing the %J<x> extensions:
-    String str1("Test WTF String");
-    String str2("");
-
-    memset(actual, 'z', sizeof(actual));
-    OPEN_FILE(file);
-    VMInspector::fprintf(file, "'%%Js' is %%s, &str1, str1.isEmpty()?\"EMPTY\":\"NOT EMPTY\"  ==> '%Js' is %s\n",
-        &str1, str1.isEmpty() ? "EMPTY" : "NOT EMPTY");
-    READ_AND_CLOSE_FILE(file, actual);
-    expectedLiteral = "'%Js' is %s, &str1, str1.isEmpty()?\"EMPTY\":\"NOT EMPTY\"  ==> 'Test WTF String' is NOT EMPTY\n";
-    ASSERT_EQ(strcmp(actual, expectedLiteral), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    OPEN_FILE(file);
-    VMInspector::fprintf(file, "'%%Js' is %%s, &str2, str2.isEmpty()?\"EMPTY\":\"NOT EMPTY\"  ==> '%Js' is %s\n",
-        &str2, str2.isEmpty() ? "EMPTY" : "NOT EMPTY");
-    READ_AND_CLOSE_FILE(file, actual);
-    expectedLiteral = "'%Js' is %s, &str2, str2.isEmpty()?\"EMPTY\":\"NOT EMPTY\"  ==> '' is EMPTY\n";
-    ASSERT_EQ(strcmp(actual, expectedLiteral), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    OPEN_FILE(file);
-    VMInspector::fprintf(file, "'%%J+s' is %%s, &str1, str1.isEmpty()?\"EMPTY\":\"NOT EMPTY\" ==> '%J+s' is %s\n",
-        &str1, str1.isEmpty() ? "EMPTY" : "NOT EMPTY");
-    READ_AND_CLOSE_FILE(file, actual);
-    expectedLiteral = "'%J+s' is %s, &str1, str1.isEmpty()?\"EMPTY\":\"NOT EMPTY\" ==> 'WTF::String \"Test WTF String\"' is NOT EMPTY\n";
-    ASSERT_EQ(strcmp(actual, expectedLiteral), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    OPEN_FILE(file);
-    VMInspector::fprintf(file, "'%%J+s' is %%s, &str2, str2.isEmpty()?\"EMPTY\":\"NOT EMPTY\" ==> '%J+s' is %s\n",
-        &str2, str2.isEmpty() ? "EMPTY" : "NOT EMPTY");
-    READ_AND_CLOSE_FILE(file, actual);
-    expectedLiteral = "'%J+s' is %s, &str2, str2.isEmpty()?\"EMPTY\":\"NOT EMPTY\" ==> 'WTF::String \"\"' is EMPTY\n";
-    ASSERT_EQ(strcmp(actual, expectedLiteral), 0);
-
-#undef OPEN_FILE
-#undef READ_AND_CLOSE_FILE
-
-#endif
-}
-
-
-TEST(JSC, VMInspectorSprintf)
-{
-#if ENABLE(VMINSPECTOR)
-    char actual[1024];
-    char expected[1024];
-    const char* format;
-    const char* expectedLiteral;
-
-    // Testing standard default format specifiers:
-    // Note: should work just like sprintf. So, we just compare against that.
-    memset(actual, 'z', sizeof(actual));
-    // The compiler warning flags are configured to expect a literal string for
-    // ::sprintf below. So, use a #define for this one case to keep the
-    // compiler happy.
-#undef LITERAL_FORMAT
-#define LITERAL_FORMAT "'%%%%'                         ==> '%%'\n"
-    VMInspector::sprintf(actual, LITERAL_FORMAT);
-    ::sprintf(expected, LITERAL_FORMAT);
-#undef LITERAL_FORMAT
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%c', 'x'                    ==> '%c'\n";
-    VMInspector::sprintf(actual, format, 'x');
-    ::sprintf(expected, format, 'x');
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%*c', 8, 'x'                ==> '%*c'\n";
-    VMInspector::sprintf(actual, format, 8, 'x');
-    ::sprintf(expected, format, 8, 'x');
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%s', \"hello world\"          ==> '%s'\n";
-    VMInspector::sprintf(actual, format, "hello world");
-    ::sprintf(expected, format, "hello world");
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%*s', 8, \"hello world\"      ==> '%*s'\n";
-    VMInspector::sprintf(actual, format, 8, "hello world");
-    ::sprintf(expected, format, 8, "hello world");
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%*s', 8, \"hello\"            ==> '%*s'\n";
-    VMInspector::sprintf(actual, format, 8, "hello");
-    ::sprintf(expected, format, 8, "hello");
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%d', 987654321              ==> '%d'\n";
-    VMInspector::sprintf(actual, format, 987654321);
-    ::sprintf(expected, format, 987654321);
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%u', 4276543210u            ==> '%u'\n";
-    VMInspector::sprintf(actual, format, 4276543210u);
-    ::sprintf(expected, format, 4276543210u);
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%u', 0xffffffff             ==> '%u'\n";
-    VMInspector::sprintf(actual, format, 0xffffffff);
-    ::sprintf(expected, format, 0xffffffff);
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%x', 0xffffffff             ==> '%x'\n";
-    VMInspector::sprintf(actual, format, 0xffffffff);
-    ::sprintf(expected, format, 0xffffffff);
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%p', (void*)0xabcdbabe      ==> '%p'\n";
-    VMInspector::sprintf(actual, format, (void*)0xabcdbabe);
-    ::sprintf(expected, format, (void*)0xabcdbabe);
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%lu', 1234567890987654321ul ==> '%lu'\n";
-    VMInspector::sprintf(actual, format, 1234567890987654321ul);
-    ::sprintf(expected, format, 1234567890987654321ul);
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%f', 1234.567               ==> '%f'\n";
-    VMInspector::sprintf(actual, format, 1234.567);
-    ::sprintf(expected, format, 1234.567);
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%.2f', 1234.567             ==> '%.2f'\n";
-    VMInspector::sprintf(actual, format, 1234.567);
-    ::sprintf(expected, format, 1234.567);
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%10.2f', 1234.567           ==> '%10.2f'\n";
-    VMInspector::sprintf(actual, format, 1234.567);
-    ::sprintf(expected, format, 1234.567);
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%010.2f', 1234.567          ==> '%010.2f'\n";
-    VMInspector::sprintf(actual, format, 1234.567);
-    ::sprintf(expected, format, 1234.567);
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    // Bad / weird formats:
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%5.4', 987654321            ==> '%5.4'\n";
-    VMInspector::sprintf(actual, format, 987654321);
-    expectedLiteral = "'%5.4', 987654321            ==> 'ERROR @ \"%5.4' \"\n";
-    ASSERT_EQ(strcmp(actual, expectedLiteral), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%5.4' '%%d', 987654321, 4    ==> '%5.4' '%d'\n";
-    VMInspector::sprintf(actual, format, 987654321, 4);
-    ::sprintf(expected, format, 987654321, 4);
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    format = "'%%w' '%%d', 987654321, 6      ==> '%w' '%d'\n";
-    VMInspector::sprintf(actual, format, 987654321, 6);
-    ::sprintf(expected, format, 987654321, 6);
-    ASSERT_EQ(strcmp(actual, expected), 0);
-
-
-    // Testing the %b extension:
-    memset(actual, 'z', sizeof(actual));
-    VMInspector::sprintf(actual, "'%%b', 0          ==> '%b'\n", 0);
-    ASSERT_EQ(strcmp(actual, "'%b', 0          ==> 'FALSE'\n"), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    VMInspector::sprintf(actual, "'%%b', 1          ==> '%b'\n", 1);
-    ASSERT_EQ(strcmp(actual, "'%b', 1          ==> 'TRUE'\n"), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    VMInspector::sprintf(actual, "'%%b', -123456789 ==> '%b'\n", -123456789);
-    ASSERT_EQ(strcmp(actual, "'%b', -123456789 ==> 'TRUE'\n"), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    VMInspector::sprintf(actual, "'%%b', 123456789  ==> '%b'\n", 123456789);
-    ASSERT_EQ(strcmp(actual, "'%b', 123456789  ==> 'TRUE'\n"), 0);
-
-
-    // Testing the %J<x> extensions:
-    String str1("Test WTF String");
-    String str2("");
-
-    memset(actual, 'z', sizeof(actual));
-    VMInspector::sprintf(actual, "'%%Js' is %%s, &str1, str1.isEmpty()?\"EMPTY\":\"NOT EMPTY\"  ==> '%Js' is %s\n",
-        &str1, str1.isEmpty() ? "EMPTY" : "NOT EMPTY");
-    expectedLiteral = "'%Js' is %s, &str1, str1.isEmpty()?\"EMPTY\":\"NOT EMPTY\"  ==> 'Test WTF String' is NOT EMPTY\n";
-    ASSERT_EQ(strcmp(actual, expectedLiteral), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    VMInspector::sprintf(actual, "'%%Js' is %%s, &str2, str2.isEmpty()?\"EMPTY\":\"NOT EMPTY\"  ==> '%Js' is %s\n",
-        &str2, str2.isEmpty() ? "EMPTY" : "NOT EMPTY");
-    expectedLiteral = "'%Js' is %s, &str2, str2.isEmpty()?\"EMPTY\":\"NOT EMPTY\"  ==> '' is EMPTY\n";
-    ASSERT_EQ(strcmp(actual, expectedLiteral), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    VMInspector::sprintf(actual, "'%%J+s' is %%s, &str1, str1.isEmpty()?\"EMPTY\":\"NOT EMPTY\" ==> '%J+s' is %s\n",
-        &str1, str1.isEmpty() ? "EMPTY" : "NOT EMPTY");
-    expectedLiteral = "'%J+s' is %s, &str1, str1.isEmpty()?\"EMPTY\":\"NOT EMPTY\" ==> 'WTF::String \"Test WTF String\"' is NOT EMPTY\n";
-    ASSERT_EQ(strcmp(actual, expectedLiteral), 0);
-
-    memset(actual, 'z', sizeof(actual));
-    VMInspector::sprintf(actual, "'%%J+s' is %%s, &str2, str2.isEmpty()?\"EMPTY\":\"NOT EMPTY\" ==> '%J+s' is %s\n",
-        &str2, str2.isEmpty() ? "EMPTY" : "NOT EMPTY");
-    expectedLiteral = "'%J+s' is %s, &str2, str2.isEmpty()?\"EMPTY\":\"NOT EMPTY\" ==> 'WTF::String \"\"' is EMPTY\n";
-    ASSERT_EQ(strcmp(actual, expectedLiteral), 0);
-#endif
-}
-
-
-TEST(JSC, VMInspectorSnprintf)
-{
-#if ENABLE(VMINSPECTOR)
-    char actual[1024];
-    char expected[1024];
-    const char* format;
-    const char* expectedLiteral;
-
-    size_t size = 1;
-    while (size <= 100) {
-
-        // Testing standard default format specifiers:
-        // Note: should work just like snprintf. So, we just compare against that.
-        memset(actual, 'z', sizeof(actual));
-        // The compiler warning flags are configured to expect a literal string for
-        // ::snprintf below. So, use a #define for this one case to keep the
-        // compiler happy.
-#undef LITERAL_FORMAT
-#define LITERAL_FORMAT "'%%%%'                         ==> '%%'\n"
-        VMInspector::snprintf(actual, size, LITERAL_FORMAT);
-        ::snprintf(expected, size, LITERAL_FORMAT);
-#undef LITERAL_FORMAT
-        ASSERT_EQ(strcmp(actual, expected), 0);
-
-        memset(actual, 'z', sizeof(actual));
-        format = "'%%c', 'x'                    ==> '%c'\n";
-        VMInspector::snprintf(actual, size, format, 'x');
-        ::snprintf(expected, size, format, 'x');
-        ASSERT_EQ(strcmp(actual, expected), 0);
-
-        memset(actual, 'z', sizeof(actual));
-        format = "'%%*c', 8, 'x'                ==> '%*c'\n";
-        VMInspector::snprintf(actual, size, format, 8, 'x');
-        ::snprintf(expected, size, format, 8, 'x');
-        ASSERT_EQ(strcmp(actual, expected), 0);
-
-        memset(actual, 'z', sizeof(actual));
-        format = "'%%s', \"hello world\"          ==> '%s'\n";
-        VMInspector::snprintf(actual, size, format, "hello world");
-        ::snprintf(expected, size, format, "hello world");
-        ASSERT_EQ(strcmp(actual, expected), 0);
-
-        memset(actual, 'z', sizeof(actual));
-        format = "'%%*s', 8, \"hello world\"      ==> '%*s'\n";
-        VMInspector::snprintf(actual, size, format, 8, "hello world");
-        ::snprintf(expected, size, format, 8, "hello world");
-        ASSERT_EQ(strcmp(actual, expected), 0);
-
-        memset(actual, 'z', sizeof(actual));
-        format = "'%%*s', 8, \"hello\"            ==> '%*s'\n";
-        VMInspector::snprintf(actual, size, format, 8, "hello");
-        ::snprintf(expected, size, format, 8, "hello");
-        ASSERT_EQ(strcmp(actual, expected), 0);
-
-        memset(actual, 'z', sizeof(actual));
-        format = "'%%d', 987654321              ==> '%d'\n";
-        VMInspector::snprintf(actual, size, format, 987654321);
-        ::snprintf(expected, size, format, 987654321);
-        ASSERT_EQ(strcmp(actual, expected), 0);
-
-        memset(actual, 'z', sizeof(actual));
-        format = "'%%u', 4276543210u            ==> '%u'\n";
-        VMInspector::snprintf(actual, size, format, 4276543210u);
-        ::snprintf(expected, size, format, 4276543210u);
-        ASSERT_EQ(strcmp(actual, expected), 0);
-
-        memset(actual, 'z', sizeof(actual));
-        format = "'%%u', 0xffffffff             ==> '%u'\n";
-        VMInspector::snprintf(actual, size, format, 0xffffffff);
-        ::snprintf(expected, size, format, 0xffffffff);
-        ASSERT_EQ(strcmp(actual, expected), 0);
-
-        memset(actual, 'z', sizeof(actual));
-        format = "'%%x', 0xffffffff             ==> '%x'\n";
-        VMInspector::snprintf(actual, size, format, 0xffffffff);
-        ::snprintf(expected, size, format, 0xffffffff);
-        ASSERT_EQ(strcmp(actual, expected), 0);
-
-        memset(actual, 'z', sizeof(actual));
-        format = "'%%p', (void*)0xabcdbabe      ==> '%p'\n";
-        VMInspector::snprintf(actual, size, format, (void*)0xabcdbabe);
-        ::snprintf(expected, size, format, (void*)0xabcdbabe);
-        ASSERT_EQ(strcmp(actual, expected), 0);
-
-        memset(actual, 'z', sizeof(actual));
-        format = "'%%lu', 1234567890987654321ul ==> '%lu'\n";
-        VMInspector::snprintf(actual, size, format, 1234567890987654321ul);
-        ::snprintf(expected, size, format, 1234567890987654321ul);
-        ASSERT_EQ(strcmp(actual, expected), 0);
-
-        memset(actual, 'z', sizeof(actual));
-        format = "'%%f', 1234.567               ==> '%f'\n";
-        VMInspector::snprintf(actual, size, format, 1234.567);
-        ::snprintf(expected, size, format, 1234.567);
-        ASSERT_EQ(strcmp(actual, expected), 0);
-
-        memset(actual, 'z', sizeof(actual));
-        format = "'%%.2f', 1234.567             ==> '%.2f'\n";
-        VMInspector::snprintf(actual, size, format, 1234.567);
-        ::snprintf(expected, size, format, 1234.567);
-        ASSERT_EQ(strcmp(actual, expected), 0);
-
-        memset(actual, 'z', sizeof(actual));
-        format = "'%%10.2f', 1234.567           ==> '%10.2f'\n";
-        VMInspector::snprintf(actual, size, format, 1234.567);
-        ::snprintf(expected, size, format, 1234.567);
-        ASSERT_EQ(strcmp(actual, expected), 0);
-
-        memset(actual, 'z', sizeof(actual));
-        format = "'%%010.2f', 1234.567          ==> '%010.2f'\n";
-        VMInspector::snprintf(actual, size, format, 1234.567);
-        ::snprintf(expected, size, format, 1234.567);
-        ASSERT_EQ(strcmp(actual, expected), 0);
-
-        // Bad / weird formats:
-        memset(actual, 'z', sizeof(actual));
-        format = "'%%5.4', 987654321            ==> '%5.4'\n";
-        VMInspector::snprintf(actual, size, format, 987654321);
-        expectedLiteral = "'%5.4', 987654321            ==> 'ERROR @ \"%5.4' \"\n";
-        ::snprintf(expected, size, "%s", expectedLiteral);
-        ASSERT_EQ(strcmp(actual, expected), 0);
-
-        memset(actual, 'z', sizeof(actual));
-        format = "'%%5.4' '%%d', 987654321, 4    ==> '%5.4' '%d'\n";
-        VMInspector::snprintf(actual, size, format, 987654321, 4);
-        ::snprintf(expected, size, format, 987654321, 4);
-        ASSERT_EQ(strcmp(actual, expected), 0);
-
-        memset(actual, 'z', sizeof(actual));
-        format = "'%%w' '%%d', 987654321, 6      ==> '%w' '%d'\n";
-        VMInspector::snprintf(actual, size, format, 987654321, 6);
-        ::snprintf(expected, size, format, 987654321, 6);
-        ASSERT_EQ(strcmp(actual, expected), 0);
-
-
-        // Testing the %b extension:
-        memset(actual, 'z', sizeof(actual));
-        VMInspector::snprintf(actual, size, "'%%b', 0          ==> '%b'\n", 0);
-        expectedLiteral = "'%b', 0          ==> 'FALSE'\n";
-        ::snprintf(expected, size, "%s", expectedLiteral);
-        ASSERT_EQ(strcmp(actual, expected), 0);
-
-        memset(actual, 'z', sizeof(actual));
-        VMInspector::snprintf(actual, size, "'%%b', 1          ==> '%b'\n", 1);
-        expectedLiteral = "'%b', 1          ==> 'TRUE'\n";
-        ::snprintf(expected, size, "%s", expectedLiteral);
-        ASSERT_EQ(strcmp(actual, expected), 0);
-
-        memset(actual, 'z', sizeof(actual));
-        VMInspector::snprintf(actual, size, "'%%b', -123456789 ==> '%b'\n", -123456789);
-        expectedLiteral = "'%b', -123456789 ==> 'TRUE'\n";
-        ::snprintf(expected, size, "%s", expectedLiteral);
-        ASSERT_EQ(strcmp(actual, expected), 0);
-
-        memset(actual, 'z', sizeof(actual));
-        VMInspector::snprintf(actual, size, "'%%b', 123456789  ==> '%b'\n", 123456789);
-        expectedLiteral = "'%b', 123456789  ==> 'TRUE'\n";
-        ::snprintf(expected, size, "%s", expectedLiteral);
-        ASSERT_EQ(strcmp(actual, expected), 0);
-
-        // Testing the %J<x> extensions:
-        String str1("Test WTF String");
-        String str2("");
-
-        memset(actual, 'z', sizeof(actual));
-        VMInspector::snprintf(actual, size, "'%%Js' is %%s, &str1, str1.isEmpty()?\"EMPTY\":\"NOT EMPTY\"  ==> '%Js' is %s\n",
-            &str1, str1.isEmpty() ? "EMPTY" : "NOT EMPTY");
-        expectedLiteral = "'%Js' is %s, &str1, str1.isEmpty()?\"EMPTY\":\"NOT EMPTY\"  ==> 'Test WTF String' is NOT EMPTY\n";
-        ::snprintf(expected, size, "%s", expectedLiteral);
-        ASSERT_EQ(strcmp(actual, expected), 0);
-
-        memset(actual, 'z', sizeof(actual));
-        VMInspector::snprintf(actual, size, "'%%Js' is %%s, &str2, str2.isEmpty()?\"EMPTY\":\"NOT EMPTY\"  ==> '%Js' is %s\n",
-            &str2, str2.isEmpty() ? "EMPTY" : "NOT EMPTY");
-        expectedLiteral = "'%Js' is %s, &str2, str2.isEmpty()?\"EMPTY\":\"NOT EMPTY\"  ==> '' is EMPTY\n";
-        ::snprintf(expected, size, "%s", expectedLiteral);
-        ASSERT_EQ(strcmp(actual, expected), 0);
-
-        memset(actual, 'z', sizeof(actual));
-        VMInspector::snprintf(actual, size, "'%%J+s' is %%s, &str1, str1.isEmpty()?\"EMPTY\":\"NOT EMPTY\" ==> '%J+s' is %s\n",
-            &str1, str1.isEmpty() ? "EMPTY" : "NOT EMPTY");
-        expectedLiteral = "'%J+s' is %s, &str1, str1.isEmpty()?\"EMPTY\":\"NOT EMPTY\" ==> 'WTF::String \"Test WTF String\"' is NOT EMPTY\n";
-        ::snprintf(expected, size, "%s", expectedLiteral);
-        ASSERT_EQ(strcmp(actual, expected), 0);
-
-        memset(actual, 'z', sizeof(actual));
-        VMInspector::snprintf(actual, size, "'%%J+s' is %%s, &str2, str2.isEmpty()?\"EMPTY\":\"NOT EMPTY\" ==> '%J+s' is %s\n",
-            &str2, str2.isEmpty() ? "EMPTY" : "NOT EMPTY");
-        expectedLiteral = "'%J+s' is %s, &str2, str2.isEmpty()?\"EMPTY\":\"NOT EMPTY\" ==> 'WTF::String \"\"' is EMPTY\n";
-        ::snprintf(expected, size, "%s", expectedLiteral);
-        ASSERT_EQ(strcmp(actual, expected), 0);
-
-        // Test lower sizes more densely, and then space out to larger sizes.
-        // We're doing this because the lower sizes might be interesting, but
-        // for expediency, we don't want to test at this fine grain resolution
-        // for all possible sizes. Hence, we accelerate the rate once we're
-        // pass the interesting small sizes.
-        if (size <= 5)
-            size++;
-        else
-            size += 4;
-    }
-#endif
-}
diff --git a/Tools/TestWebKitAPI/Tests/TestWebKitAPI/mac/InstanceMethodSwizzler.mm b/Tools/TestWebKitAPI/Tests/TestWebKitAPI/mac/InstanceMethodSwizzler.mm
deleted file mode 100644
index f869272..0000000
--- a/Tools/TestWebKitAPI/Tests/TestWebKitAPI/mac/InstanceMethodSwizzler.mm
+++ /dev/null
@@ -1,84 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "InstanceMethodSwizzler.h"
-
-#import <wtf/RetainPtr.h>
-
-@interface SimpleObject : NSObject
-- (void)setValue:(int*)value;
-@end
-
-@implementation SimpleObject
-- (void)setValue:(int*)value
-{
-    *value = 1;
-}
-@end
-
-namespace TestWebKitAPI {
-
-static void setValue2(id self, SEL _cmd, int* value)
-{
-    *value = 2;
-}
-
-static void setValue3(id self, SEL _cmd, int* value)
-{
-    *value = 3;
-}
-
-TEST(TestWebKitAPI, InstanceMethodSwizzler)
-{
-    RetainPtr<SimpleObject> object(AdoptNS, [[SimpleObject alloc] init]);
-
-    int value = 0;
-
-    [object.get() setValue:&value];
-    EXPECT_EQ(value, 1);
-
-    {
-        InstanceMethodSwizzler swizzle([object.get() class], @selector(setValue:), reinterpret_cast<IMP>(setValue2));
-
-        [object.get() setValue:&value];
-        EXPECT_EQ(value, 2);
-
-        {
-            InstanceMethodSwizzler swizzle([object.get() class], @selector(setValue:), reinterpret_cast<IMP>(setValue3));
-
-            [object.get() setValue:&value];
-            EXPECT_EQ(value, 3);
-        }
-
-        [object.get() setValue:&value];
-        EXPECT_EQ(value, 2);
-    }
-
-    [object.get() setValue:&value];
-    EXPECT_EQ(value, 1);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WTF/AtomicString.cpp b/Tools/TestWebKitAPI/Tests/WTF/AtomicString.cpp
deleted file mode 100644
index bddf22c..0000000
--- a/Tools/TestWebKitAPI/Tests/WTF/AtomicString.cpp
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include <wtf/text/AtomicString.h>
-
-namespace TestWebKitAPI {
-
-TEST(WTF, AtomicStringCreationFromLiteral)
-{
-    AtomicString stringWithTemplate("Template Literal", AtomicString::ConstructFromLiteral);
-    ASSERT_EQ(strlen("Template Literal"), stringWithTemplate.length());
-    ASSERT_TRUE(stringWithTemplate == "Template Literal");
-    ASSERT_TRUE(stringWithTemplate.string().is8Bit());
-    ASSERT_TRUE(stringWithTemplate.impl()->hasTerminatingNullCharacter());
-
-    const char* programmaticStringData = "Explicit Size Literal";
-    AtomicString programmaticString(programmaticStringData, strlen(programmaticStringData), AtomicString::ConstructFromLiteral);
-    ASSERT_EQ(strlen(programmaticStringData), programmaticString.length());
-    ASSERT_TRUE(programmaticStringData == programmaticStringData);
-    ASSERT_TRUE(programmaticString.string().is8Bit());
-    ASSERT_TRUE(programmaticString.impl()->hasTerminatingNullCharacter());
-    ASSERT_EQ(programmaticStringData, reinterpret_cast<const char*>(programmaticString.string().characters8()));
-}
-
-TEST(WTF, AtomicStringCreationFromLiteralUniqueness)
-{
-    AtomicString string1("Template Literal", AtomicString::ConstructFromLiteral);
-    AtomicString string2("Template Literal", AtomicString::ConstructFromLiteral);
-    ASSERT_EQ(string1.impl(), string2.impl());
-
-    AtomicString string3("Template Literal");
-    ASSERT_EQ(string1.impl(), string3.impl());
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WTF/CString.cpp b/Tools/TestWebKitAPI/Tests/WTF/CString.cpp
deleted file mode 100644
index 735d7dd..0000000
--- a/Tools/TestWebKitAPI/Tests/WTF/CString.cpp
+++ /dev/null
@@ -1,196 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include <wtf/text/CString.h>
-
-TEST(WTF, CStringNullStringConstructor)
-{
-    CString string;
-    ASSERT_TRUE(string.isNull());
-    ASSERT_EQ(string.data(), static_cast<const char*>(0));
-    ASSERT_EQ(string.length(), static_cast<size_t>(0));
-
-    CString stringFromCharPointer(static_cast<const char*>(0));
-    ASSERT_TRUE(stringFromCharPointer.isNull());
-    ASSERT_EQ(stringFromCharPointer.data(), static_cast<const char*>(0));
-    ASSERT_EQ(stringFromCharPointer.length(), static_cast<size_t>(0));
-
-    CString stringFromCharAndLength(static_cast<const char*>(0), 0);
-    ASSERT_TRUE(stringFromCharAndLength.isNull());
-    ASSERT_EQ(stringFromCharAndLength.data(), static_cast<const char*>(0));
-    ASSERT_EQ(stringFromCharAndLength.length(), static_cast<size_t>(0));
-}
-
-TEST(WTF, CStringEmptyEmptyConstructor)
-{
-    const char* emptyString = "";
-    CString string(emptyString);
-    ASSERT_FALSE(string.isNull());
-    ASSERT_EQ(string.length(), static_cast<size_t>(0));
-    ASSERT_EQ(string.data()[0], 0);
-
-    CString stringWithLength(emptyString, 0);
-    ASSERT_FALSE(stringWithLength.isNull());
-    ASSERT_EQ(stringWithLength.length(), static_cast<size_t>(0));
-    ASSERT_EQ(stringWithLength.data()[0], 0);
-}
-
-TEST(WTF, CStringEmptyRegularConstructor)
-{
-    const char* referenceString = "WebKit";
-
-    CString string(referenceString);
-    ASSERT_FALSE(string.isNull());
-    ASSERT_EQ(string.length(), strlen(referenceString));
-    ASSERT_STREQ(referenceString, string.data());
-
-    CString stringWithLength(referenceString, 6);
-    ASSERT_FALSE(stringWithLength.isNull());
-    ASSERT_EQ(stringWithLength.length(), strlen(referenceString));
-    ASSERT_STREQ(referenceString, stringWithLength.data());
-}
-
-TEST(WTF, CStringUninitializedConstructor)
-{
-    char* buffer;
-    CString emptyString = CString::newUninitialized(0, buffer);
-    ASSERT_FALSE(emptyString.isNull());
-    ASSERT_EQ(buffer, emptyString.data());
-    ASSERT_EQ(buffer[0], 0);
-
-    const size_t length = 25;
-    CString uninitializedString = CString::newUninitialized(length, buffer);
-    ASSERT_FALSE(uninitializedString.isNull());
-    ASSERT_EQ(buffer, uninitializedString.data());
-    ASSERT_EQ(uninitializedString.data()[length], 0);
-}
-
-TEST(WTF, CStringZeroTerminated)
-{
-    const char* referenceString = "WebKit";
-    CString stringWithLength(referenceString, 3);
-    ASSERT_EQ(stringWithLength.data()[3], 0);
-}
-
-TEST(WTF, CStringCopyOnWrite)
-{
-    const char* initialString = "Webkit";
-    CString string(initialString);
-    CString copy = string;
-
-    string.mutableData()[3] = 'K';
-    ASSERT_TRUE(string != copy);
-    ASSERT_STREQ(string.data(), "WebKit");
-    ASSERT_STREQ(copy.data(), initialString);
-}
-
-TEST(WTF, CStringComparison)
-{
-    // Comparison with another CString.
-    CString a;
-    CString b;
-    ASSERT_TRUE(a == b);
-    ASSERT_FALSE(a != b);
-    a = "a";
-    b = CString();
-    ASSERT_FALSE(a == b);
-    ASSERT_TRUE(a != b);
-    a = "a";
-    b = "b";
-    ASSERT_FALSE(a == b);
-    ASSERT_TRUE(a != b);
-    a = "a";
-    b = "a";
-    ASSERT_TRUE(a == b);
-    ASSERT_FALSE(a != b);
-    a = "a";
-    b = "aa";
-    ASSERT_FALSE(a == b);
-    ASSERT_TRUE(a != b);
-    a = "";
-    b = "";
-    ASSERT_TRUE(a == b);
-    ASSERT_FALSE(a != b);
-    a = "";
-    b = CString();
-    ASSERT_FALSE(a == b);
-    ASSERT_TRUE(a != b);
-    a = "a";
-    b = "";
-    ASSERT_FALSE(a == b);
-    ASSERT_TRUE(a != b);
-
-    // Comparison with a const char*.
-    CString c;
-    const char* d = 0;
-    ASSERT_TRUE(c == d);
-    ASSERT_FALSE(c != d);
-    c = "c";
-    d = 0;
-    ASSERT_FALSE(c == d);
-    ASSERT_TRUE(c != d);
-    c = CString();
-    d = "d";
-    ASSERT_FALSE(c == d);
-    ASSERT_TRUE(c != d);
-    c = "c";
-    d = "d";
-    ASSERT_FALSE(c == d);
-    ASSERT_TRUE(c != d);
-    c = "c";
-    d = "c";
-    ASSERT_TRUE(c == d);
-    ASSERT_FALSE(c != d);
-    c = "c";
-    d = "cc";
-    ASSERT_FALSE(c == d);
-    ASSERT_TRUE(c != d);
-    c = "cc";
-    d = "c";
-    ASSERT_FALSE(c == d);
-    ASSERT_TRUE(c != d);
-    c = "";
-    d = "";
-    ASSERT_TRUE(c == d);
-    ASSERT_FALSE(c != d);
-    c = "";
-    d = 0;
-    ASSERT_FALSE(c == d);
-    ASSERT_TRUE(c != d);
-    c = CString();
-    d = "";
-    ASSERT_FALSE(c == d);
-    ASSERT_TRUE(c != d);
-    c = "a";
-    d = "";
-    ASSERT_FALSE(c == d);
-    ASSERT_TRUE(c != d);
-    c = "";
-    d = "b";
-    ASSERT_FALSE(c == d);
-    ASSERT_TRUE(c != d);
-}
diff --git a/Tools/TestWebKitAPI/Tests/WTF/CheckedArithmeticOperations.cpp b/Tools/TestWebKitAPI/Tests/WTF/CheckedArithmeticOperations.cpp
deleted file mode 100644
index 77b8ff4..0000000
--- a/Tools/TestWebKitAPI/Tests/WTF/CheckedArithmeticOperations.cpp
+++ /dev/null
@@ -1,149 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include <wtf/CheckedArithmetic.h>
-
-namespace TestWebKitAPI {
-
-#define CheckedArithmeticTest(type, coerceLiteral, MixedSignednessTest) \
-    TEST(WTF, Checked_##type) \
-    { \
-        Checked<type, RecordOverflow> value; \
-        EXPECT_EQ(coerceLiteral(0), value.unsafeGet()); \
-        EXPECT_EQ(std::numeric_limits<type>::max(), (value + std::numeric_limits<type>::max()).unsafeGet()); \
-        EXPECT_EQ(std::numeric_limits<type>::max(), (std::numeric_limits<type>::max() + value).unsafeGet()); \
-        EXPECT_EQ(std::numeric_limits<type>::min(), (value + std::numeric_limits<type>::min()).unsafeGet()); \
-        EXPECT_EQ(std::numeric_limits<type>::min(), (std::numeric_limits<type>::min() + value).unsafeGet()); \
-        EXPECT_EQ(coerceLiteral(0), (value * coerceLiteral(0)).unsafeGet()); \
-        EXPECT_EQ(coerceLiteral(0), (coerceLiteral(0) * value).unsafeGet()); \
-        EXPECT_EQ(coerceLiteral(0), (value * value).unsafeGet()); \
-        EXPECT_EQ(coerceLiteral(0), (value - coerceLiteral(0)).unsafeGet()); \
-        EXPECT_EQ(coerceLiteral(0), (coerceLiteral(0) - value).unsafeGet()); \
-        EXPECT_EQ(coerceLiteral(0), (value - value).unsafeGet()); \
-        EXPECT_EQ(coerceLiteral(0), (value++).unsafeGet()); \
-        EXPECT_EQ(coerceLiteral(1), (value--).unsafeGet()); \
-        EXPECT_EQ(coerceLiteral(1), (++value).unsafeGet()); \
-        EXPECT_EQ(coerceLiteral(0), (--value).unsafeGet()); \
-        EXPECT_EQ(coerceLiteral(10), (value += coerceLiteral(10)).unsafeGet()); \
-        EXPECT_EQ(coerceLiteral(10), value.unsafeGet()); \
-        EXPECT_EQ(coerceLiteral(100), (value *= coerceLiteral(10)).unsafeGet()); \
-        EXPECT_EQ(coerceLiteral(100), value.unsafeGet()); \
-        EXPECT_EQ(coerceLiteral(0), (value -= coerceLiteral(100)).unsafeGet()); \
-        EXPECT_EQ(coerceLiteral(0), value.unsafeGet()); \
-        value = 10; \
-        EXPECT_EQ(coerceLiteral(10), value.unsafeGet()); \
-        EXPECT_EQ(coerceLiteral(0), (value - coerceLiteral(10)).unsafeGet()); \
-        EXPECT_EQ(coerceLiteral(10), value.unsafeGet()); \
-        value = std::numeric_limits<type>::min(); \
-        EXPECT_EQ(true, (Checked<type, RecordOverflow>(value - coerceLiteral(1))).hasOverflowed()); \
-        EXPECT_EQ(true, !((value--).hasOverflowed())); \
-        EXPECT_EQ(true, value.hasOverflowed()); \
-        value = std::numeric_limits<type>::max(); \
-        EXPECT_EQ(true, !value.hasOverflowed()); \
-        EXPECT_EQ(true, (Checked<type, RecordOverflow>(value + coerceLiteral(1))).hasOverflowed()); \
-        EXPECT_EQ(true, !(value++).hasOverflowed()); \
-        EXPECT_EQ(true, value.hasOverflowed()); \
-        value = std::numeric_limits<type>::max(); \
-        EXPECT_EQ(true, (value += coerceLiteral(1)).hasOverflowed()); \
-        EXPECT_EQ(true, value.hasOverflowed()); \
-        value = 10; \
-        type _value = 0; \
-        EXPECT_EQ(true, CheckedState::DidNotOverflow == (value * Checked<type, RecordOverflow>(0)).safeGet(_value)); \
-        _value = 0; \
-        EXPECT_EQ(true, CheckedState::DidNotOverflow == (Checked<type, RecordOverflow>(0) * value).safeGet(_value)); \
-        _value = 0; \
-        EXPECT_EQ(true, CheckedState::DidOverflow == (value * Checked<type, RecordOverflow>(std::numeric_limits<type>::max())).safeGet(_value)); \
-        _value = 0; \
-        EXPECT_EQ(true, CheckedState::DidOverflow == (Checked<type, RecordOverflow>(std::numeric_limits<type>::max()) * value).safeGet(_value)); \
-        value = 0; \
-        _value = 0; \
-        EXPECT_EQ(true, CheckedState::DidNotOverflow == (value * Checked<type, RecordOverflow>(std::numeric_limits<type>::max())).safeGet(_value)); \
-        _value = 0; \
-        EXPECT_EQ(true, CheckedState::DidNotOverflow == (Checked<type, RecordOverflow>(std::numeric_limits<type>::max()) * value).safeGet(_value)); \
-        value = 1; \
-        _value = 0; \
-        EXPECT_EQ(true, CheckedState::DidNotOverflow == (value * Checked<type, RecordOverflow>(std::numeric_limits<type>::max())).safeGet(_value)); \
-        _value = 0; \
-        EXPECT_EQ(true, CheckedState::DidNotOverflow == (Checked<type, RecordOverflow>(std::numeric_limits<type>::max()) * value).safeGet(_value)); \
-        _value = 0; \
-        value = 0; \
-        EXPECT_EQ(true, CheckedState::DidNotOverflow == (value * Checked<type, RecordOverflow>(std::numeric_limits<type>::max())).safeGet(_value)); \
-        _value = 0; \
-        EXPECT_EQ(true, CheckedState::DidNotOverflow == (Checked<type, RecordOverflow>(std::numeric_limits<type>::max()) * (type)0).safeGet(_value)); \
-        _value = 0; \
-        value = 1; \
-        EXPECT_EQ(true, CheckedState::DidNotOverflow == (value * Checked<type, RecordOverflow>(std::numeric_limits<type>::max())).safeGet(_value)); \
-        _value = 0; \
-        EXPECT_EQ(true, CheckedState::DidNotOverflow == (Checked<type, RecordOverflow>(std::numeric_limits<type>::max()) * (type)1).safeGet(_value)); \
-        _value = 0; \
-        value = 2; \
-        EXPECT_EQ(true, CheckedState::DidOverflow == (value * Checked<type, RecordOverflow>(std::numeric_limits<type>::max())).safeGet(_value)); \
-        _value = 0; \
-        EXPECT_EQ(true, CheckedState::DidOverflow == (Checked<type, RecordOverflow>(std::numeric_limits<type>::max()) * (type)2).safeGet(_value)); \
-        value = 10; \
-        EXPECT_EQ(true, (value * Checked<type, RecordOverflow>(std::numeric_limits<type>::max())).hasOverflowed()); \
-        MixedSignednessTest(EXPECT_EQ(coerceLiteral(0), (value + -10).unsafeGet())); \
-        MixedSignednessTest(EXPECT_EQ(0U, (value - 10U).unsafeGet())); \
-        MixedSignednessTest(EXPECT_EQ(coerceLiteral(0), (-10 + value).unsafeGet())); \
-        MixedSignednessTest(EXPECT_EQ(0U, (10U - value).unsafeGet())); \
-        value = std::numeric_limits<type>::min(); \
-        MixedSignednessTest(EXPECT_EQ(true, (Checked<type, RecordOverflow>(value - 1)).hasOverflowed())); \
-        MixedSignednessTest(EXPECT_EQ(true, !(value--).hasOverflowed())); \
-        MixedSignednessTest(EXPECT_EQ(true, value.hasOverflowed())); \
-        value = std::numeric_limits<type>::max(); \
-        MixedSignednessTest(EXPECT_EQ(true, !value.hasOverflowed())); \
-        MixedSignednessTest(EXPECT_EQ(true, (Checked<type, RecordOverflow>(value + 1)).hasOverflowed())); \
-        MixedSignednessTest(EXPECT_EQ(true, !(value++).hasOverflowed())); \
-        MixedSignednessTest(EXPECT_EQ(true, value.hasOverflowed())); \
-        value = std::numeric_limits<type>::max(); \
-        MixedSignednessTest(EXPECT_EQ(true, (value += 1).hasOverflowed())); \
-        MixedSignednessTest(EXPECT_EQ(true, value.hasOverflowed())); \
-        value = std::numeric_limits<type>::min(); \
-        MixedSignednessTest(EXPECT_EQ(true, (value - 1U).hasOverflowed())); \
-        MixedSignednessTest(EXPECT_EQ(true, !(value--).hasOverflowed())); \
-        MixedSignednessTest(EXPECT_EQ(true, value.hasOverflowed())); \
-        value = std::numeric_limits<type>::max(); \
-        MixedSignednessTest(EXPECT_EQ(true, !value.hasOverflowed())); \
-        MixedSignednessTest(EXPECT_EQ(true, (Checked<type, RecordOverflow>(value + 1U)).hasOverflowed())); \
-        MixedSignednessTest(EXPECT_EQ(true, !(value++).hasOverflowed())); \
-        MixedSignednessTest(EXPECT_EQ(true, value.hasOverflowed())); \
-        value = std::numeric_limits<type>::max(); \
-        MixedSignednessTest(EXPECT_EQ(true, (value += 1U).hasOverflowed())); \
-        MixedSignednessTest(EXPECT_EQ(true, value.hasOverflowed())); \
-    }
-
-#define CoerceLiteralToUnsigned(x) x##U
-#define CoerceLiteralNop(x) x
-#define AllowMixedSignednessTest(x) x
-#define IgnoreMixedSignednessTest(x)
-CheckedArithmeticTest(int8_t, CoerceLiteralNop, IgnoreMixedSignednessTest)
-CheckedArithmeticTest(int16_t, CoerceLiteralNop, IgnoreMixedSignednessTest)
-CheckedArithmeticTest(int32_t, CoerceLiteralNop, AllowMixedSignednessTest)
-CheckedArithmeticTest(uint32_t, CoerceLiteralToUnsigned, AllowMixedSignednessTest)
-CheckedArithmeticTest(int64_t, CoerceLiteralNop, IgnoreMixedSignednessTest)
-CheckedArithmeticTest(uint64_t, CoerceLiteralToUnsigned, IgnoreMixedSignednessTest)
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WTF/Functional.cpp b/Tools/TestWebKitAPI/Tests/WTF/Functional.cpp
deleted file mode 100644
index cf8c3c3..0000000
--- a/Tools/TestWebKitAPI/Tests/WTF/Functional.cpp
+++ /dev/null
@@ -1,218 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include <wtf/RefCounted.h>
-#include <wtf/Functional.h>
-
-namespace TestWebKitAPI {
-
-static int returnFortyTwo()
-{
-    return 42;
-}
-
-TEST(FunctionalTest, Basic)
-{
-    Function<int ()> emptyFunction;
-    ASSERT_TRUE(emptyFunction.isNull());
-
-    Function<int ()> returnFortyTwoFunction = bind(returnFortyTwo);
-    ASSERT_FALSE(returnFortyTwoFunction.isNull());
-    ASSERT_EQ(42, returnFortyTwoFunction());
-}
-
-static int multiplyByTwo(int n)
-{
-    return n * 2;
-}
-
-static double multiplyByOneAndAHalf(double d)
-{
-    return d * 1.5;
-}
-
-TEST(FunctionalTest, UnaryBind)
-{
-    Function<int ()> multiplyFourByTwoFunction = bind(multiplyByTwo, 4);
-    ASSERT_EQ(8, multiplyFourByTwoFunction());
-
-    Function<double ()> multiplyByOneAndAHalfFunction = bind(multiplyByOneAndAHalf, 3);
-    ASSERT_EQ(4.5, multiplyByOneAndAHalfFunction());
-}
-
-static int multiply(int x, int y)
-{
-    return x * y;
-}
-
-static int subtract(int x, int y)
-{
-    return x - y;
-}
-
-TEST(FunctionalTest, BinaryBind)
-{
-    Function<int ()> multiplyFourByTwoFunction = bind(multiply, 4, 2);
-    ASSERT_EQ(8, multiplyFourByTwoFunction());
-
-    Function<int ()> subtractTwoFromFourFunction = bind(subtract, 4, 2);
-    ASSERT_EQ(2, subtractTwoFromFourFunction());
-}
-
-class A {
-public:
-    explicit A(int i)
-        : m_i(i)
-    {
-    }
-
-    int f() { return m_i; }
-    int addF(int j) { return m_i + j; }
-
-private:
-    int m_i;
-};
-
-TEST(FunctionalTest, MemberFunctionBind)
-{
-    A a(10);
-    Function<int ()> function1 = bind(&A::f, &a);
-    ASSERT_EQ(10, function1());
-
-    Function<int ()> function2 = bind(&A::addF, &a, 15);
-    ASSERT_EQ(25, function2());
-}
-
-class B {
-public:
-    B()
-        : m_numRefCalls(0)
-        , m_numDerefCalls(0)
-    {
-    }
-
-    ~B()
-    {
-    }
-
-    void ref()
-    {
-        m_numRefCalls++;
-    }
-
-    void deref()
-    {
-        m_numDerefCalls++;
-    }
-
-    void f() { ASSERT_GT(m_numRefCalls, 0); }
-    void g(int) { ASSERT_GT(m_numRefCalls, 0); }
-
-    int m_numRefCalls;
-    int m_numDerefCalls;
-};
-
-TEST(FunctionalTest, MemberFunctionBindRefDeref)
-{
-    B b;
-
-    {
-        Function<void ()> function1 = bind(&B::f, &b);
-        function1();
-
-        Function<void ()> function2 = bind(&B::g, &b, 10);
-        function2();
-    }
-
-    ASSERT_TRUE(b.m_numRefCalls == b.m_numDerefCalls);
-    ASSERT_GT(b.m_numRefCalls, 0);
-
-}
-
-class Number : public RefCounted<Number> {
-public:
-    static PassRefPtr<Number> create(int value)
-    {
-        return adoptRef(new Number(value));
-    }
-
-    ~Number()
-    {
-        m_value = 0;
-    }
-
-    int value() const { return m_value; }
-
-private:
-    explicit Number(int value)
-        : m_value(value)
-    {
-    }
-
-    int m_value;
-};
-
-static int multiplyNumberByTwo(Number* number)
-{
-    return number->value() * 2;
-}
-
-TEST(FunctionalTest, RefCountedStorage)
-{
-    RefPtr<Number> five = Number::create(5);
-    Function<int ()> multiplyFiveByTwoFunction = bind(multiplyNumberByTwo, five);
-    ASSERT_EQ(10, multiplyFiveByTwoFunction());
-
-    Function<int ()> multiplyFourByTwoFunction = bind(multiplyNumberByTwo, Number::create(4));
-    ASSERT_EQ(8, multiplyFourByTwoFunction());
-
-    RefPtr<Number> six = Number::create(6);
-    Function<int ()> multiplySixByTwoFunction = bind(multiplyNumberByTwo, six.release());
-    ASSERT_FALSE(six);
-    ASSERT_EQ(12, multiplySixByTwoFunction());
-}
-
-namespace RefAndDerefTests {
-    
-    template<typename T> struct RefCounted {
-        void ref();
-        void deref();
-    };
-    struct Connection : RefCounted<Connection> { };
-    COMPILE_ASSERT(WTF::HasRefAndDeref<Connection>::value, class_has_ref_and_deref);
-    
-    struct NoRefOrDeref { };
-    COMPILE_ASSERT(!WTF::HasRefAndDeref<NoRefOrDeref>::value, class_has_no_ref_or_deref);
-    
-    struct RefOnly { void ref(); };
-    COMPILE_ASSERT(!WTF::HasRefAndDeref<RefOnly>::value, class_has_ref_only);
-    
-    struct DerefOnly { void deref(); };
-    COMPILE_ASSERT(!WTF::HasRefAndDeref<DerefOnly>::value, class_has_deref_only);
-
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WTF/HashMap.cpp b/Tools/TestWebKitAPI/Tests/WTF/HashMap.cpp
deleted file mode 100644
index db6ca81..0000000
--- a/Tools/TestWebKitAPI/Tests/WTF/HashMap.cpp
+++ /dev/null
@@ -1,84 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include <wtf/HashMap.h>
-
-namespace TestWebKitAPI {
-
-typedef WTF::HashMap<int, int> IntHashMap;
-
-TEST(WTF, HashTableIteratorComparison)
-{
-    IntHashMap map;
-    map.add(1, 2);
-    ASSERT_TRUE(map.begin() != map.end());
-    ASSERT_FALSE(map.begin() == map.end());
-
-    IntHashMap::const_iterator begin = map.begin();
-    ASSERT_TRUE(begin == map.begin());
-    ASSERT_TRUE(map.begin() == begin);
-    ASSERT_TRUE(begin != map.end());
-    ASSERT_TRUE(map.end() != begin);
-    ASSERT_FALSE(begin != map.begin());
-    ASSERT_FALSE(map.begin() != begin);
-    ASSERT_FALSE(begin == map.end());
-    ASSERT_FALSE(map.end() == begin);
-}
-
-struct TestDoubleHashTraits : HashTraits<double> {
-    static const int minimumTableSize = 8;
-};
-
-typedef HashMap<double, int64_t, DefaultHash<double>::Hash, TestDoubleHashTraits> DoubleHashMap;
-
-static int bucketForKey(double key)
-{
-    return DefaultHash<double>::Hash::hash(key) & (TestDoubleHashTraits::minimumTableSize - 1);
-}
-
-TEST(WTF, DoubleHashCollisions)
-{
-    // The "clobber" key here is one that ends up stealing the bucket that the -0 key
-    // originally wants to be in. This makes the 0 and -0 keys collide and the test then
-    // fails unless the FloatHash::equals() implementation can distinguish them.
-    const double clobberKey = 6;
-    const double zeroKey = 0;
-    const double negativeZeroKey = -zeroKey;
-
-    DoubleHashMap map;
-
-    map.add(clobberKey, 1);
-    map.add(zeroKey, 2);
-    map.add(negativeZeroKey, 3);
-
-    ASSERT_EQ(bucketForKey(clobberKey), bucketForKey(negativeZeroKey));
-    ASSERT_EQ(map.get(clobberKey), 1);
-    ASSERT_EQ(map.get(zeroKey), 2);
-    ASSERT_EQ(map.get(negativeZeroKey), 3);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WTF/HashSet.cpp b/Tools/TestWebKitAPI/Tests/WTF/HashSet.cpp
deleted file mode 100644
index 71e21aa..0000000
--- a/Tools/TestWebKitAPI/Tests/WTF/HashSet.cpp
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include <wtf/HashSet.h>
-
-namespace TestWebKitAPI {
-
-template<int initialCapacity>
-    struct InitialCapacityTestHashTraits : public WTF::UnsignedWithZeroKeyHashTraits<int> {
-    static const int minimumTableSize = initialCapacity;
-};
-
-template<unsigned size>
-void testInitialCapacity()
-{
-    const unsigned initialCapacity = WTF::HashTableCapacityForSize<size>::value;
-    HashSet<int, DefaultHash<int>::Hash, InitialCapacityTestHashTraits<initialCapacity> > testSet;
-
-    // Initial capacity is null.
-    ASSERT_EQ(0, testSet.capacity());
-
-    // Adding items up to size should never change the capacity.
-    for (size_t i = 0; i < size; ++i) {
-        testSet.add(i);
-        ASSERT_EQ(initialCapacity, static_cast<unsigned>(testSet.capacity()));
-    }
-
-    // Adding items up to less than half the capacity should not change the capacity.
-    unsigned capacityLimit = initialCapacity / 2 - 1;
-    for (size_t i = size; i < capacityLimit; ++i) {
-        testSet.add(i);
-        ASSERT_EQ(initialCapacity, static_cast<unsigned>(testSet.capacity()));
-    }
-
-    // Adding one more item increase the capacity.
-    testSet.add(initialCapacity);
-    EXPECT_GT(static_cast<unsigned>(testSet.capacity()), initialCapacity);
-}
-
-template<unsigned size> void generateTestCapacityUpToSize();
-template<> void generateTestCapacityUpToSize<0>()
-{
-}
-template<unsigned size> void generateTestCapacityUpToSize()
-{
-    generateTestCapacityUpToSize<size - 1>();
-    testInitialCapacity<size>();
-}
-
-TEST(WTF, HashSetInitialCapacity)
-{
-    generateTestCapacityUpToSize<128>();
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WTF/IntegerToStringConversion.cpp b/Tools/TestWebKitAPI/Tests/WTF/IntegerToStringConversion.cpp
deleted file mode 100644
index 6b9d8df..0000000
--- a/Tools/TestWebKitAPI/Tests/WTF/IntegerToStringConversion.cpp
+++ /dev/null
@@ -1,132 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include <limits>
-#include <wtf/StringExtras.h>
-#include <wtf/text/CString.h>
-#include <wtf/text/WTFString.h>
-
-template<typename IntegerType> struct PrintfFormatTrait { static const char format[]; };
-
-template<> struct PrintfFormatTrait<short> { static const char format[]; };
-const char PrintfFormatTrait<short>::format[] = "%hd";
-
-template<> struct PrintfFormatTrait<int> { static const char format[]; };
-const char PrintfFormatTrait<int>::format[] = "%d";
-
-template<> struct PrintfFormatTrait<long> { static const char format[]; };
-const char PrintfFormatTrait<long>::format[] = "%ld";
-
-template<> struct PrintfFormatTrait<long long> { static const char format[]; };
-#if OS(WINDOWS) && !PLATFORM(QT)
-const char PrintfFormatTrait<long long>::format[] = "%I64i";
-#else
-const char PrintfFormatTrait<long long>::format[] = "%lli";
-#endif // OS(WINDOWS) && !PLATFORM(QT)
-
-template<> struct PrintfFormatTrait<unsigned short> { static const char format[]; };
-const char PrintfFormatTrait<unsigned short>::format[] = "%hu";
-
-template<> struct PrintfFormatTrait<unsigned> { static const char format[]; };
-const char PrintfFormatTrait<unsigned>::format[] = "%u";
-
-template<> struct PrintfFormatTrait<unsigned long> { static const char format[]; };
-const char PrintfFormatTrait<unsigned long>::format[] = "%lu";
-
-template<> struct PrintfFormatTrait<unsigned long long> { static const char format[]; };
-#if OS(WINDOWS) && !PLATFORM(QT)
-const char PrintfFormatTrait<unsigned long long>::format[] = "%I64u";
-#else
-const char PrintfFormatTrait<unsigned long long>::format[] = "%llu";
-#endif // OS(WINDOWS) && !PLATFORM(QT)
-
-
-// FIXME: use snprintf from StringExtras.h
-template<typename IntegerType>
-void testBoundaries()
-{
-    const unsigned bufferSize = 256;
-    Vector<char, bufferSize> buffer;
-    buffer.resize(bufferSize);
-
-    const IntegerType min = std::numeric_limits<IntegerType>::min();
-    CString minStringData = String::number(min).latin1();
-    snprintf(buffer.data(), bufferSize, PrintfFormatTrait<IntegerType>::format, min);
-    ASSERT_STREQ(buffer.data(), minStringData.data());
-
-    const IntegerType max = std::numeric_limits<IntegerType>::max();
-    CString maxStringData = String::number(max).latin1();
-    snprintf(buffer.data(), bufferSize, PrintfFormatTrait<IntegerType>::format, max);
-    ASSERT_STREQ(buffer.data(), maxStringData.data());
-}
-
-template<typename IntegerType>
-void testNumbers()
-{
-    const unsigned bufferSize = 256;
-    Vector<char, bufferSize> buffer;
-    buffer.resize(bufferSize);
-
-    for (int i = -100; i < 100; ++i) {
-        const IntegerType number = static_cast<IntegerType>(i);
-        CString numberStringData = String::number(number).latin1();
-        snprintf(buffer.data(), bufferSize, PrintfFormatTrait<IntegerType>::format, number);
-        ASSERT_STREQ(buffer.data(), numberStringData.data());
-    }
-}
-
-TEST(WTF, IntegerToStringConversionSignedIntegerBoundaries)
-{
-    testBoundaries<short>();
-    testBoundaries<int>();
-    testBoundaries<long>();
-    testBoundaries<long long>();
-}
-
-TEST(WTF, IntegerToStringConversionSignedIntegerRegularNumbers)
-{
-    testNumbers<short>();
-    testNumbers<int>();
-    testNumbers<long>();
-    testNumbers<long long>();
-}
-
-TEST(WTF, IntegerToStringConversionUnsignedIntegerBoundaries)
-{
-    testBoundaries<unsigned short>();
-    testBoundaries<unsigned int>();
-    testBoundaries<unsigned long>();
-    testBoundaries<unsigned long long>();
-}
-
-TEST(WTF, IntegerToStringConversionUnsignedIntegerRegularNumbers)
-{
-    testNumbers<unsigned short>();
-    testNumbers<unsigned int>();
-    testNumbers<unsigned long>();
-    testNumbers<unsigned long long>();
-}
diff --git a/Tools/TestWebKitAPI/Tests/WTF/ListHashSet.cpp b/Tools/TestWebKitAPI/Tests/WTF/ListHashSet.cpp
deleted file mode 100644
index 7579c42..0000000
--- a/Tools/TestWebKitAPI/Tests/WTF/ListHashSet.cpp
+++ /dev/null
@@ -1,173 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include <wtf/ListHashSet.h>
-
-namespace TestWebKitAPI {
-
-TEST(WTF, ListHashSetRemoveFirst)
-{
-    ListHashSet<int> list;
-    list.add(1);
-    list.add(2);
-    list.add(3);
-
-    ASSERT_EQ(1, list.first());
-
-    list.removeFirst();
-    ASSERT_EQ(2, list.first());
-
-    list.removeFirst();
-    ASSERT_EQ(3, list.first());
-
-    list.removeFirst();
-    ASSERT_TRUE(list.isEmpty());
-}
-
-TEST(WTF, ListHashSetAppendOrMoveToLastNewItems)
-{
-    ListHashSet<int> list;
-    ListHashSet<int>::AddResult result = list.appendOrMoveToLast(1);
-    ASSERT_TRUE(result.isNewEntry);
-    result = list.add(2);
-    ASSERT_TRUE(result.isNewEntry);
-    result = list.appendOrMoveToLast(3);
-    ASSERT_TRUE(result.isNewEntry);
-
-    ASSERT_EQ(list.size(), 3);
-
-    // The list should be in order 1, 2, 3.
-    ListHashSet<int>::iterator iterator = list.begin();
-    ASSERT_EQ(1, *iterator);
-    ++iterator;
-    ASSERT_EQ(2, *iterator);
-    ++iterator;
-    ASSERT_EQ(3, *iterator);
-    ++iterator;
-}
-
-TEST(WTF, ListHashSetAppendOrMoveToLastWithDuplicates)
-{
-    ListHashSet<int> list;
-
-    // Add a single element twice.
-    ListHashSet<int>::AddResult result = list.add(1);
-    ASSERT_TRUE(result.isNewEntry);
-    result = list.appendOrMoveToLast(1);
-    ASSERT_FALSE(result.isNewEntry);
-    ASSERT_EQ(1, list.size());
-
-    list.add(2);
-    list.add(3);
-    ASSERT_EQ(3, list.size());
-
-    // Appending 2 move it to the end.
-    ASSERT_EQ(3, list.last());
-    result = list.appendOrMoveToLast(2);
-    ASSERT_FALSE(result.isNewEntry);
-    ASSERT_EQ(2, list.last());
-
-    // Inverse the list by moving each element to end end.
-    result = list.appendOrMoveToLast(3);
-    ASSERT_FALSE(result.isNewEntry);
-    result = list.appendOrMoveToLast(2);
-    ASSERT_FALSE(result.isNewEntry);
-    result = list.appendOrMoveToLast(1);
-    ASSERT_FALSE(result.isNewEntry);
-    ASSERT_EQ(3, list.size());
-
-    ListHashSet<int>::iterator iterator = list.begin();
-    ASSERT_EQ(3, *iterator);
-    ++iterator;
-    ASSERT_EQ(2, *iterator);
-    ++iterator;
-    ASSERT_EQ(1, *iterator);
-    ++iterator;
-}
-
-TEST(WTF, ListHashSetPrependOrMoveToLastNewItems)
-{
-    ListHashSet<int> list;
-    ListHashSet<int>::AddResult result = list.prependOrMoveToFirst(1);
-    ASSERT_TRUE(result.isNewEntry);
-    result = list.add(2);
-    ASSERT_TRUE(result.isNewEntry);
-    result = list.prependOrMoveToFirst(3);
-    ASSERT_TRUE(result.isNewEntry);
-
-    ASSERT_EQ(list.size(), 3);
-
-    // The list should be in order 3, 1, 2.
-    ListHashSet<int>::iterator iterator = list.begin();
-    ASSERT_EQ(3, *iterator);
-    ++iterator;
-    ASSERT_EQ(1, *iterator);
-    ++iterator;
-    ASSERT_EQ(2, *iterator);
-    ++iterator;
-}
-
-TEST(WTF, ListHashSetPrependOrMoveToLastWithDuplicates)
-{
-    ListHashSet<int> list;
-
-    // Add a single element twice.
-    ListHashSet<int>::AddResult result = list.add(1);
-    ASSERT_TRUE(result.isNewEntry);
-    result = list.prependOrMoveToFirst(1);
-    ASSERT_FALSE(result.isNewEntry);
-    ASSERT_EQ(1, list.size());
-
-    list.add(2);
-    list.add(3);
-    ASSERT_EQ(3, list.size());
-
-    // Prepending 2 move it to the beginning.
-    ASSERT_EQ(1, list.first());
-    result = list.prependOrMoveToFirst(2);
-    ASSERT_FALSE(result.isNewEntry);
-    ASSERT_EQ(2, list.first());
-
-    // Inverse the list by moving each element to the first position.
-    result = list.prependOrMoveToFirst(1);
-    ASSERT_FALSE(result.isNewEntry);
-    result = list.prependOrMoveToFirst(2);
-    ASSERT_FALSE(result.isNewEntry);
-    result = list.prependOrMoveToFirst(3);
-    ASSERT_FALSE(result.isNewEntry);
-    ASSERT_EQ(3, list.size());
-
-    ListHashSet<int>::iterator iterator = list.begin();
-    ASSERT_EQ(3, *iterator);
-    ++iterator;
-    ASSERT_EQ(2, *iterator);
-    ++iterator;
-    ASSERT_EQ(1, *iterator);
-    ++iterator;
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WTF/MathExtras.cpp b/Tools/TestWebKitAPI/Tests/WTF/MathExtras.cpp
deleted file mode 100644
index 7cbb297..0000000
--- a/Tools/TestWebKitAPI/Tests/WTF/MathExtras.cpp
+++ /dev/null
@@ -1,177 +0,0 @@
-/*
- * Copyright (C) 2012 Intel Corporation
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include <wtf/MathExtras.h>
-
-namespace TestWebKitAPI {
-
-TEST(WTF, Lrint)
-{
-    EXPECT_EQ(lrint(-7.5), -8);
-    EXPECT_EQ(lrint(-8.5), -8);
-    EXPECT_EQ(lrint(-0.5), 0);
-    EXPECT_EQ(lrint(0.5), 0);
-    EXPECT_EQ(lrint(-0.5), 0);
-    EXPECT_EQ(lrint(1.3), 1);
-    EXPECT_EQ(lrint(1.7), 2);
-    EXPECT_EQ(lrint(0), 0);
-    EXPECT_EQ(lrint(-0), 0);
-    if (sizeof(long int) == 8) {
-        // Largest double number with 0.5 precision and one halfway rounding case below.
-        EXPECT_EQ(lrint(pow(2.0, 52) - 0.5), pow(2.0, 52));
-        EXPECT_EQ(lrint(pow(2.0, 52) - 1.5), pow(2.0, 52) - 2);
-        // Smallest double number with 0.5 precision and one halfway rounding case above.
-        EXPECT_EQ(lrint(-pow(2.0, 52) + 0.5), -pow(2.0, 52));
-        EXPECT_EQ(lrint(-pow(2.0, 52) + 1.5), -pow(2.0, 52) + 2);
-    }
-}
-
-TEST(WTF, clampToIntLong)
-{
-    if (sizeof(long) == sizeof(int))
-        return;
-
-    long maxInt = std::numeric_limits<int>::max();
-    long minInt = std::numeric_limits<int>::min();
-    long overflowInt = maxInt + 1;
-    long underflowInt = minInt - 1;
-
-    EXPECT_GT(overflowInt, maxInt);
-    EXPECT_LT(underflowInt, minInt);
-
-    EXPECT_EQ(clampTo<int>(maxInt), maxInt);
-    EXPECT_EQ(clampTo<int>(minInt), minInt);
-
-    EXPECT_EQ(clampTo<int>(overflowInt), maxInt);
-    EXPECT_EQ(clampTo<int>(underflowInt), minInt);
-}
-
-TEST(WTF, clampToIntLongLong)
-{
-    long long maxInt = std::numeric_limits<int>::max();
-    long long minInt = std::numeric_limits<int>::min();
-    long long overflowInt = maxInt + 1;
-    long long underflowInt = minInt - 1;
-
-    EXPECT_GT(overflowInt, maxInt);
-    EXPECT_LT(underflowInt, minInt);
-
-    EXPECT_EQ(clampTo<int>(maxInt), maxInt);
-    EXPECT_EQ(clampTo<int>(minInt), minInt);
-
-    EXPECT_EQ(clampTo<int>(overflowInt), maxInt);
-    EXPECT_EQ(clampTo<int>(underflowInt), minInt);
-}
-
-TEST(WTF, clampToIntegerFloat)
-{
-    // This test is inaccurate as floats will round the min / max integer
-    // due to the narrow mantissa. However it will properly checks within
-    // (close to the extreme) and outside the integer range.
-    float maxInt = std::numeric_limits<int>::max();
-    float minInt = std::numeric_limits<int>::min();
-    float overflowInt = maxInt * 1.1;
-    float underflowInt = minInt * 1.1;
-
-    EXPECT_GT(overflowInt, maxInt);
-    EXPECT_LT(underflowInt, minInt);
-
-    // If maxInt == 2^31 - 1 (ie on I32 architecture), the closest float used to represent it is 2^31.
-    EXPECT_NEAR(clampToInteger(maxInt), maxInt, 1);
-    EXPECT_EQ(clampToInteger(minInt), minInt);
-
-    EXPECT_NEAR(clampToInteger(overflowInt), maxInt, 1);
-    EXPECT_EQ(clampToInteger(underflowInt), minInt);
-}
-
-TEST(WTF, clampToIntegerDouble)
-{
-    double maxInt = std::numeric_limits<int>::max();
-    double minInt = std::numeric_limits<int>::min();
-    double overflowInt = maxInt + 1;
-    double underflowInt = minInt - 1;
-
-    EXPECT_GT(overflowInt, maxInt);
-    EXPECT_LT(underflowInt, minInt);
-
-    EXPECT_EQ(clampToInteger(maxInt), maxInt);
-    EXPECT_EQ(clampToInteger(minInt), minInt);
-
-    EXPECT_EQ(clampToInteger(overflowInt), maxInt);
-    EXPECT_EQ(clampToInteger(underflowInt), minInt);
-}
-
-TEST(WTF, clampToFloat)
-{
-    double maxFloat = std::numeric_limits<float>::max();
-    double minFloat = -maxFloat;
-    double overflowFloat = maxFloat * 1.1;
-    double underflowFloat = minFloat * 1.1;
-
-    EXPECT_GT(overflowFloat, maxFloat);
-    EXPECT_LT(underflowFloat, minFloat);
-
-    EXPECT_EQ(clampToFloat(maxFloat), maxFloat);
-    EXPECT_EQ(clampToFloat(minFloat), minFloat);
-
-    EXPECT_EQ(clampToFloat(overflowFloat), maxFloat);
-    EXPECT_EQ(clampToFloat(underflowFloat), minFloat);
-
-    EXPECT_EQ(clampToFloat(std::numeric_limits<float>::infinity()), maxFloat);
-    EXPECT_EQ(clampToFloat(-std::numeric_limits<float>::infinity()), minFloat);
-}
-
-TEST(WTF, clampToUnsignedLong)
-{
-    if (sizeof(unsigned long) == sizeof(unsigned))
-        return;
-
-    unsigned long maxUnsigned = std::numeric_limits<unsigned>::max();
-    unsigned long overflowUnsigned = maxUnsigned + 1;
-
-    EXPECT_GT(overflowUnsigned, maxUnsigned);
-
-    EXPECT_EQ(clampTo<unsigned>(maxUnsigned), maxUnsigned);
-
-    EXPECT_EQ(clampTo<unsigned>(overflowUnsigned), maxUnsigned);
-    EXPECT_EQ(clampTo<unsigned>(-1), 0u);
-}
-
-TEST(WTF, clampToUnsignedLongLong)
-{
-    unsigned long long maxUnsigned = std::numeric_limits<unsigned>::max();
-    unsigned long long overflowUnsigned = maxUnsigned + 1;
-
-    EXPECT_GT(overflowUnsigned, maxUnsigned);
-
-    EXPECT_EQ(clampTo<unsigned>(maxUnsigned), maxUnsigned);
-
-    EXPECT_EQ(clampTo<unsigned>(overflowUnsigned), maxUnsigned);
-    EXPECT_EQ(clampTo<unsigned>(-1), 0u);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WTF/MediaTime.cpp b/Tools/TestWebKitAPI/Tests/WTF/MediaTime.cpp
deleted file mode 100644
index d6d48fc..0000000
--- a/Tools/TestWebKitAPI/Tests/WTF/MediaTime.cpp
+++ /dev/null
@@ -1,178 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#define _USE_MATH_DEFINES 1
-#include "config.h"
-
-#include <wtf/MediaTime.h>
-
-using namespace std;
-
-#if COMPILER(MSVC)
-// Work around Visual Studio 2008's lack of an INFINITY or NAN definition.
-#include <limits>
-#if !defined(INFINITY)
-#define INFINITY (numeric_limits<double>::infinity())
-#endif
-#if !defined(NAN)
-#define NAN (numeric_limits<double>::quiet_NaN())
-#endif
-#endif
-
-namespace WTF {
-
-std::ostream& operator<<(std::ostream& out, const MediaTime& val)
-{
-    out << "{ ";
-    if (val.isInvalid())
-        out << "invalid";
-    else if (val.isPositiveInfinite())
-        out << "+infinite";
-    else if (val.isNegativeInfinite())
-        out << "-infinite";
-    else
-        out << "value: " << val.timeValue() << ", scale: " << val.timeScale();
-    return out << " }";
-}
-
-}
-
-namespace TestWebKitAPI {
-
-TEST(WTF, MediaTime)
-{
-    // Comparison Operators
-    EXPECT_EQ(MediaTime::positiveInfiniteTime() > MediaTime::negativeInfiniteTime(), true);
-    EXPECT_EQ(MediaTime::negativeInfiniteTime() < MediaTime::positiveInfiniteTime(), true);
-    EXPECT_EQ(MediaTime::negativeInfiniteTime() == MediaTime::negativeInfiniteTime(), true);
-    EXPECT_EQ(MediaTime::positiveInfiniteTime() == MediaTime::positiveInfiniteTime(), true);
-    EXPECT_EQ(MediaTime::invalidTime() == MediaTime::invalidTime(), true);
-    EXPECT_EQ(MediaTime::invalidTime() > MediaTime::negativeInfiniteTime(), true);
-    EXPECT_EQ(MediaTime::invalidTime() > MediaTime::positiveInfiniteTime(), true);
-    EXPECT_EQ(MediaTime::negativeInfiniteTime() < MediaTime::invalidTime(), true);
-    EXPECT_EQ(MediaTime::positiveInfiniteTime() < MediaTime::invalidTime(), true);
-    EXPECT_EQ(MediaTime::indefiniteTime() == MediaTime::indefiniteTime(), true);
-    EXPECT_EQ(MediaTime::indefiniteTime() > MediaTime::negativeInfiniteTime(), true);
-    EXPECT_EQ(MediaTime::indefiniteTime() < MediaTime::positiveInfiniteTime(), true);
-    EXPECT_EQ(MediaTime::negativeInfiniteTime() < MediaTime::indefiniteTime(), true);
-    EXPECT_EQ(MediaTime::positiveInfiniteTime() > MediaTime::indefiniteTime(), true);
-    EXPECT_EQ(MediaTime(1, 1) < MediaTime::indefiniteTime(), true);
-    EXPECT_EQ(MediaTime::indefiniteTime() > MediaTime(1, 1), true);
-    EXPECT_EQ(MediaTime(1, 1) < MediaTime(2, 1), true);
-    EXPECT_EQ(MediaTime(2, 1) > MediaTime(1, 1), true);
-    EXPECT_EQ(MediaTime(2, 1) == MediaTime(2, 1), true);
-    EXPECT_EQ(MediaTime(2, 1) == MediaTime(4, 2), true);
-
-    // Addition Operators
-    EXPECT_EQ(MediaTime::positiveInfiniteTime() + MediaTime::positiveInfiniteTime(), MediaTime::positiveInfiniteTime());
-    EXPECT_EQ(MediaTime::negativeInfiniteTime() + MediaTime::negativeInfiniteTime(), MediaTime::negativeInfiniteTime());
-    EXPECT_EQ(MediaTime::positiveInfiniteTime() + MediaTime::negativeInfiniteTime(), MediaTime::invalidTime());
-    EXPECT_EQ(MediaTime::negativeInfiniteTime() + MediaTime::positiveInfiniteTime(), MediaTime::invalidTime());
-    EXPECT_EQ(MediaTime::invalidTime() + MediaTime::positiveInfiniteTime(), MediaTime::invalidTime());
-    EXPECT_EQ(MediaTime::invalidTime() + MediaTime::negativeInfiniteTime(), MediaTime::invalidTime());
-    EXPECT_EQ(MediaTime::invalidTime() + MediaTime::invalidTime(), MediaTime::invalidTime());
-    EXPECT_EQ(MediaTime::invalidTime() + MediaTime(1, 1), MediaTime::invalidTime());
-    EXPECT_EQ(MediaTime::indefiniteTime() + MediaTime::positiveInfiniteTime(), MediaTime::indefiniteTime());
-    EXPECT_EQ(MediaTime::indefiniteTime() + MediaTime::negativeInfiniteTime(), MediaTime::indefiniteTime());
-    EXPECT_EQ(MediaTime::indefiniteTime() + MediaTime::indefiniteTime(), MediaTime::indefiniteTime());
-    EXPECT_EQ(MediaTime::indefiniteTime() + MediaTime(1, 1), MediaTime::indefiniteTime());
-    EXPECT_EQ(MediaTime(1, 1) + MediaTime(1, 1), MediaTime(2, 1));
-    EXPECT_EQ(MediaTime(1, 2) + MediaTime(1, 3), MediaTime(5, 6));
-    EXPECT_EQ(MediaTime(1, numeric_limits<int32_t>::max()-1) + MediaTime(1, numeric_limits<int32_t>::max()-2), MediaTime(2, numeric_limits<int32_t>::max()));
-
-    // Subtraction Operators
-    EXPECT_EQ(MediaTime::positiveInfiniteTime() - MediaTime::positiveInfiniteTime(), MediaTime::invalidTime());
-    EXPECT_EQ(MediaTime::negativeInfiniteTime() - MediaTime::negativeInfiniteTime(), MediaTime::invalidTime());
-    EXPECT_EQ(MediaTime::positiveInfiniteTime() - MediaTime::negativeInfiniteTime(), MediaTime::positiveInfiniteTime());
-    EXPECT_EQ(MediaTime::negativeInfiniteTime() - MediaTime::positiveInfiniteTime(), MediaTime::negativeInfiniteTime());
-    EXPECT_EQ(MediaTime::invalidTime() - MediaTime::positiveInfiniteTime(), MediaTime::invalidTime());
-    EXPECT_EQ(MediaTime::invalidTime() - MediaTime::negativeInfiniteTime(), MediaTime::invalidTime());
-    EXPECT_EQ(MediaTime::invalidTime() - MediaTime::invalidTime(), MediaTime::invalidTime());
-    EXPECT_EQ(MediaTime::invalidTime() - MediaTime(1, 1), MediaTime::invalidTime());
-    EXPECT_EQ(MediaTime::indefiniteTime() - MediaTime::positiveInfiniteTime(), MediaTime::indefiniteTime());
-    EXPECT_EQ(MediaTime::indefiniteTime() - MediaTime::negativeInfiniteTime(), MediaTime::indefiniteTime());
-    EXPECT_EQ(MediaTime::indefiniteTime() - MediaTime::indefiniteTime(), MediaTime::indefiniteTime());
-    EXPECT_EQ(MediaTime::indefiniteTime() - MediaTime(1, 1), MediaTime::indefiniteTime());
-    EXPECT_EQ(MediaTime(3, 1) - MediaTime(2, 1), MediaTime(1, 1));
-    EXPECT_EQ(MediaTime(1, 2) - MediaTime(1, 3), MediaTime(1, 6));
-    EXPECT_EQ(MediaTime(2, numeric_limits<int32_t>::max()-1) - MediaTime(1, numeric_limits<int32_t>::max()-2), MediaTime(1, numeric_limits<int32_t>::max()));
-
-    // Constants
-    EXPECT_EQ(MediaTime::zeroTime(), MediaTime(0, 1));
-    EXPECT_EQ(MediaTime::invalidTime(), MediaTime(-1, 1, 0));
-    EXPECT_EQ(MediaTime::positiveInfiniteTime(), MediaTime(0, 1, MediaTime::PositiveInfinite));
-    EXPECT_EQ(MediaTime::negativeInfiniteTime(), MediaTime(0, 1, MediaTime::NegativeInfinite));
-    EXPECT_EQ(MediaTime::indefiniteTime(), MediaTime(0, 1, MediaTime::Indefinite));
-
-    // Absolute Functions
-    EXPECT_EQ(abs(MediaTime::positiveInfiniteTime()), MediaTime::positiveInfiniteTime());
-    EXPECT_EQ(abs(MediaTime::negativeInfiniteTime()), MediaTime::positiveInfiniteTime());
-    EXPECT_EQ(abs(MediaTime::invalidTime()), MediaTime::invalidTime());
-    EXPECT_EQ(abs(MediaTime(1, 1)), MediaTime(1, 1));
-    EXPECT_EQ(abs(MediaTime(-1, 1)), MediaTime(1, 1));
-    EXPECT_EQ(abs(MediaTime(-1, -1)), MediaTime(-1, -1));
-    EXPECT_EQ(abs(MediaTime(1, -1)), MediaTime(-1, -1));
-
-    // Floating Point Functions
-    EXPECT_EQ(MediaTime::createWithFloat(1.0f), MediaTime(1, 1));
-    EXPECT_EQ(MediaTime::createWithFloat(1.5f), MediaTime(3, 2));
-    EXPECT_EQ(MediaTime::createWithDouble(1.0), MediaTime(1, 1));
-    EXPECT_EQ(MediaTime::createWithDouble(1.5), MediaTime(3, 2));
-    EXPECT_EQ(MediaTime(1, 1).toFloat(), 1.0f);
-    EXPECT_EQ(MediaTime(3, 2).toFloat(), 1.5f);
-    EXPECT_EQ(MediaTime(1, 1).toDouble(), 1.0);
-    EXPECT_EQ(MediaTime(3, 2).toDouble(), 1.5);
-    EXPECT_EQ(MediaTime(1, 1 << 16).toFloat(), 1 / pow(2.0f, 16.0f));
-    EXPECT_EQ(MediaTime(1, 1 << 30).toDouble(), 1 / pow(2.0, 30.0));
-    EXPECT_EQ(MediaTime::createWithDouble(M_PI, 1 << 30), MediaTime(3373259426U, 1 << 30));
-    EXPECT_EQ(MediaTime::createWithFloat(INFINITY), MediaTime::positiveInfiniteTime());
-    EXPECT_EQ(MediaTime::createWithFloat(-INFINITY), MediaTime::negativeInfiniteTime());
-    EXPECT_EQ(MediaTime::createWithFloat(NAN), MediaTime::invalidTime());
-    EXPECT_EQ(MediaTime::createWithDouble(INFINITY), MediaTime::positiveInfiniteTime());
-    EXPECT_EQ(MediaTime::createWithDouble(-INFINITY), MediaTime::negativeInfiniteTime());
-    EXPECT_EQ(MediaTime::createWithDouble(NAN), MediaTime::invalidTime());
-
-    // Overflow Behavior
-    EXPECT_EQ(MediaTime::createWithFloat(pow(2.0f, 64.0f)), MediaTime::positiveInfiniteTime());
-    EXPECT_EQ(MediaTime::createWithFloat(-pow(2.0f, 64.0f)), MediaTime::negativeInfiniteTime());
-    EXPECT_EQ(MediaTime::createWithFloat(pow(2.0f, 63.0f), 2).timeScale(), 1);
-    EXPECT_EQ(MediaTime::createWithFloat(pow(2.0f, 63.0f), 3).timeScale(), 1);
-    EXPECT_EQ(MediaTime::createWithDouble(pow(2.0, 64.0)), MediaTime::positiveInfiniteTime());
-    EXPECT_EQ(MediaTime::createWithDouble(-pow(2.0, 64.0)), MediaTime::negativeInfiniteTime());
-    EXPECT_EQ(MediaTime::createWithDouble(pow(2.0, 63.0), 2).timeScale(), 1);
-    EXPECT_EQ(MediaTime::createWithDouble(pow(2.0, 63.0), 3).timeScale(), 1);
-    EXPECT_EQ((MediaTime(numeric_limits<int64_t>::max(), 2) + MediaTime(numeric_limits<int64_t>::max(), 2)).timeScale(), 1);
-    EXPECT_EQ((MediaTime(numeric_limits<int64_t>::min(), 2) - MediaTime(numeric_limits<int64_t>::max(), 2)).timeScale(), 1);
-    EXPECT_EQ(MediaTime(numeric_limits<int64_t>::max(), 1) + MediaTime(numeric_limits<int64_t>::max(), 1), MediaTime::positiveInfiniteTime());
-    EXPECT_EQ(MediaTime(numeric_limits<int64_t>::min(), 1) + MediaTime(numeric_limits<int64_t>::min(), 1), MediaTime::negativeInfiniteTime());
-    EXPECT_EQ(MediaTime(numeric_limits<int64_t>::min(), 1) - MediaTime(numeric_limits<int64_t>::max(), 1), MediaTime::negativeInfiniteTime());
-    EXPECT_EQ(MediaTime(numeric_limits<int64_t>::max(), 1) - MediaTime(numeric_limits<int64_t>::min(), 1), MediaTime::positiveInfiniteTime());
-}
-
-}
-
diff --git a/Tools/TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp b/Tools/TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp
deleted file mode 100644
index 106a6dc..0000000
--- a/Tools/TestWebKitAPI/Tests/WTF/MemoryInstrumentationTest.cpp
+++ /dev/null
@@ -1,933 +0,0 @@
-/*
- * Copyright (C) 2012 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *     * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include <gtest/gtest.h>
-
-#include <wtf/ArrayBuffer.h>
-#include <wtf/HashCountedSet.h>
-#include <wtf/HashMap.h>
-#include <wtf/HashSet.h>
-#include <wtf/ListHashSet.h>
-#include <wtf/MemoryInstrumentation.h>
-#include <wtf/MemoryInstrumentationArrayBufferView.h>
-#include <wtf/MemoryInstrumentationHashCountedSet.h>
-#include <wtf/MemoryInstrumentationHashMap.h>
-#include <wtf/MemoryInstrumentationHashSet.h>
-#include <wtf/MemoryInstrumentationListHashSet.h>
-#include <wtf/MemoryInstrumentationString.h>
-#include <wtf/MemoryInstrumentationVector.h>
-#include <wtf/MemoryObjectInfo.h>
-#include <wtf/RefCounted.h>
-#include <wtf/Vector.h>
-#include <wtf/text/AtomicString.h>
-#include <wtf/text/CString.h>
-#include <wtf/text/StringBuffer.h>
-#include <wtf/text/StringHash.h>
-#include <wtf/text/StringImpl.h>
-#include <wtf/text/WTFString.h>
-
-namespace {
-enum TestEnum { ONE = 1, TWO, THREE, MY_ENUM_MAX };
-}
-
-namespace WTF {
-
-template<> struct DefaultHash<TestEnum> {
-    typedef IntHash<unsigned> Hash;
-};
-
-template<> struct HashTraits<TestEnum> : GenericHashTraits<TestEnum> {
-    static const bool emptyValueIsZero = true;
-    static const bool needsDestruction = false;
-    static void constructDeletedValue(TestEnum& slot) { slot = static_cast<TestEnum>(MY_ENUM_MAX + 1); }
-    static bool isDeletedValue(TestEnum value) { return value == (MY_ENUM_MAX + 1); }
-};
-
-}
-
-namespace {
-
-using WTF::MemoryObjectInfo;
-using WTF::MemoryClassInfo;
-using WTF::MemoryObjectType;
-using WTF::MemberType;
-
-MemoryObjectType TestType = "TestType";
-
-class MemoryInstrumentationTestClient : public WTF::MemoryInstrumentationClient {
-public:
-    MemoryInstrumentationTestClient() : m_links(WTF::LastMemberTypeEntry)
-    {
-        m_links[WTF::PointerMember] = 0;
-        m_links[WTF::ReferenceMember] = 0;
-        m_links[WTF::RetainingPointer] = 0;
-    }
-
-    virtual void countObjectSize(const void*, MemoryObjectType objectType, size_t size)
-    {
-        TypeToSizeMap::AddResult result = m_totalSizes.add(objectType, size);
-        if (!result.isNewEntry)
-            result.iterator->value += size;
-    }
-    virtual bool visited(const void* object) { return !m_visitedObjects.add(object).isNewEntry; }
-    virtual bool checkCountedObject(const void*) { return true; }
-    virtual void reportNode(const MemoryObjectInfo&) OVERRIDE { }
-    virtual void reportEdge(const void*, const char*, MemberType memberType) OVERRIDE
-    {
-        ++m_links[memberType];
-    }
-    virtual void reportLeaf(const MemoryObjectInfo&, const char*) OVERRIDE
-    {
-        ++m_links[WTF::RetainingPointer];
-    }
-    virtual void reportBaseAddress(const void*, const void*) OVERRIDE { }
-    virtual int registerString(const char*) OVERRIDE { return -1; }
-
-    size_t visitedObjects() const { return m_visitedObjects.size(); }
-    size_t totalSize(const MemoryObjectType objectType) const
-    {
-        TypeToSizeMap::const_iterator i = m_totalSizes.find(objectType);
-        return i == m_totalSizes.end() ? 0 : i->value;
-    }
-
-    size_t linksCount(const WTF::MemberType memberType) const
-    {
-        return m_links[memberType];
-    }
-
-    size_t reportedSizeForAllTypes() const
-    {
-        size_t size = 0;
-        for (TypeToSizeMap::const_iterator i = m_totalSizes.begin(); i != m_totalSizes.end(); ++i)
-            size += i->value;
-        return size;
-    }
-
-private:
-    typedef HashMap<MemoryObjectType, size_t> TypeToSizeMap;
-    TypeToSizeMap m_totalSizes;
-    WTF::HashSet<const void*> m_visitedObjects;
-    WTF::Vector<size_t, WTF::LastMemberTypeEntry> m_links;
-};
-
-class InstrumentationTestImpl : public WTF::MemoryInstrumentation {
-public:
-    explicit InstrumentationTestImpl(MemoryInstrumentationTestClient* client)
-        : MemoryInstrumentation(client)
-        , m_client(client) { }
-
-    virtual void processDeferredObjects();
-    virtual void deferObject(PassOwnPtr<WrapperBase>);
-
-    size_t visitedObjects() const { return m_client->visitedObjects(); }
-    size_t reportedSizeForAllTypes() const { return m_client->reportedSizeForAllTypes(); }
-    size_t totalSize(const MemoryObjectType objectType) const { return m_client->totalSize(objectType); }
-    size_t linksCount(const WTF::MemberType memberType) const {  return m_client->linksCount(memberType); }
-
-private:
-    MemoryInstrumentationTestClient* m_client;
-    Vector<OwnPtr<WrapperBase> > m_deferredObjects;
-};
-
-class InstrumentationTestHelper : public InstrumentationTestImpl {
-public:
-    InstrumentationTestHelper() : InstrumentationTestImpl(&m_client) { }
-
-private:
-    MemoryInstrumentationTestClient m_client;
-};
-
-void InstrumentationTestImpl::processDeferredObjects()
-{
-    while (!m_deferredObjects.isEmpty()) {
-        OwnPtr<WrapperBase> pointer = m_deferredObjects.last().release();
-        m_deferredObjects.removeLast();
-        pointer->process(this);
-    }
-}
-
-void InstrumentationTestImpl::deferObject(PassOwnPtr<WrapperBase> pointer)
-{
-    m_deferredObjects.append(pointer);
-}
-
-class NotInstrumented {
-public:
-    NotInstrumented(const char* = 0) { }
-    char m_data[42];
-};
-
-class Instrumented {
-public:
-    Instrumented() : m_notInstrumented(new NotInstrumented) { }
-    virtual ~Instrumented() { disposeOwnedObject(); }
-
-    virtual void reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-    {
-        MemoryClassInfo info(memoryObjectInfo, this, TestType);
-        memoryObjectInfo->setClassName("Instrumented");
-        info.addMember(m_notInstrumented, "m_notInstrumented", WTF::RetainingPointer);
-    }
-
-    void disposeOwnedObject()
-    {
-        delete m_notInstrumented;
-        m_notInstrumented = 0;
-    }
-
-    NotInstrumented* m_notInstrumented;
-};
-
-TEST(MemoryInstrumentationTest, sizeOf)
-{
-    InstrumentationTestHelper helper;
-    Instrumented instrumented;
-    helper.addRootObject(instrumented);
-    EXPECT_EQ(sizeof(NotInstrumented), helper.reportedSizeForAllTypes());
-    EXPECT_EQ(1u, helper.visitedObjects());
-    EXPECT_EQ(1u, helper.linksCount(WTF::RetainingPointer));
-}
-
-TEST(MemoryInstrumentationTest, nullCheck)
-{
-    InstrumentationTestHelper helper;
-    Instrumented* instrumented = 0;
-    helper.addRootObject(instrumented);
-    EXPECT_EQ(0u, helper.reportedSizeForAllTypes());
-    EXPECT_EQ(0u, helper.visitedObjects());
-    EXPECT_EQ(0u, helper.linksCount(WTF::RetainingPointer));
-}
-
-TEST(MemoryInstrumentationTest, ptrVsRef)
-{
-    {
-        InstrumentationTestHelper helper;
-        Instrumented instrumented;
-        helper.addRootObject(&instrumented);
-        EXPECT_EQ(sizeof(Instrumented) + sizeof(NotInstrumented), helper.reportedSizeForAllTypes());
-        EXPECT_EQ(2u, helper.visitedObjects());
-        EXPECT_EQ(1u, helper.linksCount(WTF::RetainingPointer));
-    }
-    {
-        InstrumentationTestHelper helper;
-        Instrumented instrumented;
-        helper.addRootObject(instrumented);
-        EXPECT_EQ(sizeof(NotInstrumented), helper.reportedSizeForAllTypes());
-        EXPECT_EQ(1u, helper.visitedObjects());
-        EXPECT_EQ(1u, helper.linksCount(WTF::RetainingPointer));
-    }
-}
-
-class InstrumentedWithOwnPtr : public Instrumented {
-public:
-    InstrumentedWithOwnPtr() : m_notInstrumentedOwnPtr(adoptPtr(new NotInstrumented)) { }
-
-    virtual void reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-    {
-        MemoryClassInfo info(memoryObjectInfo, this, TestType);
-        Instrumented::reportMemoryUsage(memoryObjectInfo);
-        info.addMember(m_notInstrumentedOwnPtr);
-    }
-    OwnPtr<NotInstrumented> m_notInstrumentedOwnPtr;
-};
-
-TEST(MemoryInstrumentationTest, ownPtrNotInstrumented)
-{
-    InstrumentationTestHelper helper;
-    InstrumentedWithOwnPtr instrumentedWithOwnPtr;
-    helper.addRootObject(instrumentedWithOwnPtr);
-    EXPECT_EQ(2u * sizeof(NotInstrumented), helper.reportedSizeForAllTypes());
-    EXPECT_EQ(2u, helper.visitedObjects());
-    EXPECT_EQ(2u, helper.linksCount(WTF::RetainingPointer));
-}
-
-class InstrumentedUndefined {
-public:
-    InstrumentedUndefined() : m_data(0) { }
-
-    void reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-    {
-        MemoryClassInfo info(memoryObjectInfo, this);
-    }
-    int m_data;
-};
-
-class InstrumentedDOM {
-public:
-    InstrumentedDOM() : m_instrumentedUndefined(adoptPtr(new InstrumentedUndefined)) { }
-
-    void reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-    {
-        MemoryClassInfo info(memoryObjectInfo, this, TestType);
-        info.addMember(m_instrumentedUndefined);
-    }
-    OwnPtr<InstrumentedUndefined> m_instrumentedUndefined;
-};
-
-TEST(MemoryInstrumentationTest, ownerTypePropagation)
-{
-    InstrumentationTestHelper helper;
-    OwnPtr<InstrumentedDOM> instrumentedDOM(adoptPtr(new InstrumentedDOM));
-    helper.addRootObject(instrumentedDOM.get());
-    EXPECT_EQ(sizeof(InstrumentedDOM) + sizeof(InstrumentedUndefined), helper.reportedSizeForAllTypes());
-    EXPECT_EQ(sizeof(InstrumentedDOM) + sizeof(InstrumentedUndefined), helper.totalSize(TestType));
-    EXPECT_EQ(2u, helper.visitedObjects());
-}
-
-class NonVirtualInstrumented {
-public:
-    void reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-    {
-        MemoryClassInfo info(memoryObjectInfo, this, TestType);
-        info.addMember(m_instrumented);
-    }
-
-    Instrumented m_instrumented;
-};
-
-TEST(MemoryInstrumentationTest, visitFirstMemberInNonVirtualClass)
-{
-    InstrumentationTestHelper helper;
-    NonVirtualInstrumented nonVirtualInstrumented;
-    helper.addRootObject(&nonVirtualInstrumented);
-    EXPECT_EQ(sizeof(NonVirtualInstrumented) + sizeof(NotInstrumented), helper.reportedSizeForAllTypes());
-    EXPECT_EQ(2u, helper.visitedObjects());
-}
-
-template<typename T>
-class InstrumentedOwner {
-public:
-    template<typename V>
-    InstrumentedOwner(const V& value) : m_value(value) { }
-    InstrumentedOwner() { }
-    void reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-    {
-        MemoryClassInfo info(memoryObjectInfo, this, TestType);
-        info.addMember(m_value, "value", WTF::RetainingPointer);
-    }
-
-    T m_value;
-};
-
-TEST(MemoryInstrumentationTest, visitStrings)
-{
-    { // 8-bit string.
-        InstrumentationTestHelper helper;
-        InstrumentedOwner<String> stringInstrumentedOwner("String");
-        helper.addRootObject(stringInstrumentedOwner);
-        EXPECT_EQ(sizeof(StringImpl) + stringInstrumentedOwner.m_value.length(), helper.reportedSizeForAllTypes());
-        EXPECT_EQ(1u, helper.visitedObjects());
-    }
-
-    { // 8-bit string with 16bit shadow.
-        InstrumentationTestHelper helper;
-        InstrumentedOwner<String> stringInstrumentedOwner("String");
-        stringInstrumentedOwner.m_value.characters();
-        helper.addRootObject(stringInstrumentedOwner);
-        EXPECT_EQ(sizeof(StringImpl) + stringInstrumentedOwner.m_value.length() * (sizeof(LChar) + sizeof(UChar)), helper.reportedSizeForAllTypes());
-        EXPECT_EQ(2u, helper.visitedObjects());
-    }
-
-    { // 16 bit string.
-        InstrumentationTestHelper helper;
-        String string("String");
-        InstrumentedOwner<String> stringInstrumentedOwner(String(string.characters(), string.length()));
-        helper.addRootObject(stringInstrumentedOwner);
-        EXPECT_EQ(sizeof(StringImpl) + stringInstrumentedOwner.m_value.length() * sizeof(UChar), helper.reportedSizeForAllTypes());
-        EXPECT_EQ(1u, helper.visitedObjects());
-    }
-
-    { // ASCIILiteral
-        InstrumentationTestHelper helper;
-        ASCIILiteral literal("String");
-        InstrumentedOwner<String> stringInstrumentedOwner(literal);
-        helper.addRootObject(stringInstrumentedOwner);
-        EXPECT_EQ(sizeof(StringImpl), helper.reportedSizeForAllTypes());
-        EXPECT_EQ(1u, helper.visitedObjects());
-    }
-
-    { // Zero terminated internal buffer.
-        InstrumentationTestHelper helper;
-        InstrumentedOwner<String> stringInstrumentedOwner("string");
-        stringInstrumentedOwner.m_value.charactersWithNullTermination();
-        helper.addRootObject(stringInstrumentedOwner);
-        EXPECT_EQ(sizeof(StringImpl) + (stringInstrumentedOwner.m_value.length() + 1) * (sizeof(LChar) + sizeof(UChar)), helper.reportedSizeForAllTypes());
-        EXPECT_EQ(2u, helper.visitedObjects());
-    }
-
-    { // Substring
-        InstrumentationTestHelper helper;
-        String baseString("String");
-        baseString.characters(); // Force 16 shadow creation.
-        InstrumentedOwner<String> stringInstrumentedOwner(baseString.substringSharingImpl(1, 4));
-        helper.addRootObject(stringInstrumentedOwner);
-        EXPECT_EQ(sizeof(StringImpl) * 2 + baseString.length() * (sizeof(LChar) + sizeof(UChar)), helper.reportedSizeForAllTypes());
-        EXPECT_EQ(3u, helper.visitedObjects());
-    }
-
-    { // Owned buffer.
-        InstrumentationTestHelper helper;
-        StringBuffer<LChar> buffer(6);
-        InstrumentedOwner<String> stringInstrumentedOwner(String::adopt(buffer));
-        helper.addRootObject(stringInstrumentedOwner);
-        EXPECT_EQ(sizeof(StringImpl) + stringInstrumentedOwner.m_value.length(), helper.reportedSizeForAllTypes());
-        EXPECT_EQ(2u, helper.visitedObjects());
-    }
-
-    {
-        InstrumentationTestHelper helper;
-        InstrumentedOwner<AtomicString> atomicStringInstrumentedOwner("AtomicString");
-        atomicStringInstrumentedOwner.m_value.string().characters(); // Force 16bit shadow creation.
-        helper.addRootObject(atomicStringInstrumentedOwner);
-        EXPECT_EQ(sizeof(StringImpl) + atomicStringInstrumentedOwner.m_value.length() * (sizeof(LChar) + sizeof(UChar)), helper.reportedSizeForAllTypes());
-        EXPECT_EQ(2u, helper.visitedObjects());
-    }
-
-    {
-        InstrumentationTestHelper helper;
-        InstrumentedOwner<CString> cStringInstrumentedOwner("CString");
-        helper.addRootObject(cStringInstrumentedOwner);
-        EXPECT_EQ(sizeof(WTF::CStringBuffer) + cStringInstrumentedOwner.m_value.length(), helper.reportedSizeForAllTypes());
-        EXPECT_EQ(1u, helper.visitedObjects());
-    }
-}
-
-class TwoPointersToRefPtr {
-public:
-    TwoPointersToRefPtr(const RefPtr<StringImpl>& value) : m_ptr1(&value), m_ptr2(&value)  { }
-    void reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-    {
-        MemoryClassInfo info(memoryObjectInfo, this, TestType);
-        info.addMember(m_ptr1);
-        info.addMember(m_ptr2);
-    }
-
-    const RefPtr<StringImpl>* m_ptr1;
-    const RefPtr<StringImpl>* m_ptr2;
-};
-
-TEST(MemoryInstrumentationTest, refPtrPtr)
-{
-    InstrumentationTestHelper helper;
-    RefPtr<StringImpl> refPtr;
-    TwoPointersToRefPtr root(refPtr);
-    helper.addRootObject(root);
-    EXPECT_EQ(sizeof(RefPtr<StringImpl>), helper.reportedSizeForAllTypes());
-    EXPECT_EQ(1u, helper.visitedObjects());
-}
-
-class TwoPointersToOwnPtr {
-public:
-    TwoPointersToOwnPtr(const OwnPtr<NotInstrumented>& value) : m_ptr1(&value), m_ptr2(&value)  { }
-    void reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-    {
-        MemoryClassInfo info(memoryObjectInfo, this, TestType);
-        info.addMember(m_ptr1);
-        info.addMember(m_ptr2);
-    }
-
-    const OwnPtr<NotInstrumented>* m_ptr1;
-    const OwnPtr<NotInstrumented>* m_ptr2;
-};
-
-TEST(MemoryInstrumentationTest, ownPtrPtr)
-{
-    InstrumentationTestHelper helper;
-    OwnPtr<NotInstrumented> ownPtr;
-    TwoPointersToOwnPtr root(ownPtr);
-    helper.addRootObject(root);
-    EXPECT_EQ(sizeof(OwnPtr<NotInstrumented>), helper.reportedSizeForAllTypes());
-    EXPECT_EQ(1u, helper.visitedObjects());
-}
-
-template<typename T>
-class InstrumentedTemplate {
-public:
-    template<typename V>
-    InstrumentedTemplate(const V& value) : m_value(value) { }
-
-    template<typename MemoryObjectInfo>
-    void reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-    {
-        typename MemoryObjectInfo::ClassInfo info(memoryObjectInfo, this, TestType);
-        info.addMember(m_value);
-    }
-
-    T m_value;
-};
-
-TEST(MemoryInstrumentationTest, detectReportMemoryUsageMethod)
-{
-    {
-        InstrumentationTestHelper helper;
-
-        OwnPtr<InstrumentedTemplate<String> > value(adoptPtr(new InstrumentedTemplate<String>("")));
-        InstrumentedOwner<InstrumentedTemplate<String>* > root(value.get());
-        helper.addRootObject(root);
-        EXPECT_EQ(sizeof(InstrumentedTemplate<String>) + sizeof(StringImpl), helper.reportedSizeForAllTypes());
-        // FIXME: it is failing on Chromium Canary bots but works fine locally.
-        // EXPECT_EQ(2, helper.visitedObjects());
-    }
-    {
-        InstrumentationTestHelper helper;
-
-        OwnPtr<InstrumentedTemplate<NotInstrumented> > value(adoptPtr(new InstrumentedTemplate<NotInstrumented>("")));
-        InstrumentedOwner<InstrumentedTemplate<NotInstrumented>* > root(value.get());
-        helper.addRootObject(root);
-        EXPECT_EQ(sizeof(InstrumentedTemplate<NotInstrumented>), helper.reportedSizeForAllTypes());
-        EXPECT_EQ(1u, helper.visitedObjects());
-    }
-}
-
-TEST(MemoryInstrumentationTest, vectorZeroInlineCapacity)
-{
-    InstrumentationTestHelper helper;
-    InstrumentedOwner<Vector<int> > vectorOwner(16);
-    helper.addRootObject(vectorOwner);
-    EXPECT_EQ(16 * sizeof(int), helper.reportedSizeForAllTypes());
-    EXPECT_EQ(1u, helper.visitedObjects());
-}
-
-TEST(MemoryInstrumentationTest, vectorFieldWithInlineCapacity)
-{
-    InstrumentationTestHelper helper;
-    InstrumentedOwner<Vector<int, 4> > vectorOwner;
-    helper.addRootObject(vectorOwner);
-    EXPECT_EQ(static_cast<size_t>(0), helper.reportedSizeForAllTypes());
-    EXPECT_EQ(0u, helper.visitedObjects());
-}
-
-TEST(MemoryInstrumentationTest, vectorFieldWithInlineCapacityResized)
-{
-    InstrumentationTestHelper helper;
-    InstrumentedOwner<Vector<int, 4> > vectorOwner;
-    vectorOwner.m_value.reserveCapacity(8);
-    helper.addRootObject(vectorOwner);
-    EXPECT_EQ(8u * sizeof(int), helper.reportedSizeForAllTypes());
-    EXPECT_EQ(1u, helper.visitedObjects());
-}
-
-TEST(MemoryInstrumentationTest, heapAllocatedVectorWithInlineCapacity)
-{
-    InstrumentationTestHelper helper;
-    InstrumentedOwner<OwnPtr<Vector<int, 4> > > vectorOwner;
-    vectorOwner.m_value = adoptPtr(new Vector<int, 4>());
-    helper.addRootObject(vectorOwner);
-    EXPECT_EQ(sizeof(Vector<int, 4>), helper.reportedSizeForAllTypes());
-    EXPECT_EQ(1u, helper.visitedObjects());
-}
-
-TEST(MemoryInstrumentationTest, heapAllocatedVectorWithInlineCapacityResized)
-{
-    InstrumentationTestHelper helper;
-    InstrumentedOwner<OwnPtr<Vector<int, 4> > > vectorOwner;
-    vectorOwner.m_value = adoptPtr(new Vector<int, 4>());
-    vectorOwner.m_value->reserveCapacity(8);
-    helper.addRootObject(vectorOwner);
-    EXPECT_EQ(8u * sizeof(int) + sizeof(Vector<int, 4>), helper.reportedSizeForAllTypes());
-    EXPECT_EQ(2u, helper.visitedObjects());
-}
-
-TEST(MemoryInstrumentationTest, vectorWithInstrumentedType)
-{
-    InstrumentationTestHelper helper;
-
-    typedef Vector<String> StringVector;
-    OwnPtr<StringVector> value = adoptPtr(new StringVector());
-    size_t count = 10;
-    for (size_t i = 0; i < count; ++i)
-        value->append("string");
-    InstrumentedOwner<StringVector* > root(value.get());
-    helper.addRootObject(root);
-    EXPECT_EQ(sizeof(StringVector) + sizeof(String) * value->capacity() + (sizeof(StringImpl) + 6) * value->size(), helper.reportedSizeForAllTypes());
-    EXPECT_EQ(count + 2, (size_t)helper.visitedObjects());
-}
-
-TEST(MemoryInstrumentationTest, hashSetWithInstrumentedType)
-{
-    InstrumentationTestHelper helper;
-
-    typedef HashSet<String> ValueType;
-    OwnPtr<ValueType> value = adoptPtr(new ValueType());
-    size_t count = 10;
-    for (size_t i = 0; i < count; ++i)
-        value->add(String::number(i));
-    InstrumentedOwner<ValueType* > root(value.get());
-    helper.addRootObject(root);
-    EXPECT_EQ(sizeof(ValueType) + sizeof(String) * value->capacity() + (sizeof(StringImpl) + 1) * value->size(), helper.reportedSizeForAllTypes());
-    EXPECT_EQ(count + 1, (size_t)helper.visitedObjects());
-}
-
-TEST(MemoryInstrumentationTest, hashMapWithNotInstrumentedKeysAndValues)
-{
-    InstrumentationTestHelper helper;
-
-    typedef HashMap<int, int> IntToIntMap;
-    OwnPtr<IntToIntMap> value = adoptPtr(new IntToIntMap());
-    size_t count = 10;
-    for (size_t i = 1; i <= count; ++i)
-        value->set(i, i);
-    InstrumentedOwner<IntToIntMap* > root(value.get());
-    helper.addRootObject(root);
-    EXPECT_EQ(sizeof(IntToIntMap) + sizeof(IntToIntMap::ValueType) * value->capacity(), helper.reportedSizeForAllTypes());
-    EXPECT_EQ(1u, helper.visitedObjects());
-}
-
-TEST(MemoryInstrumentationTest, hashMapWithInstrumentedKeys)
-{
-    InstrumentationTestHelper helper;
-
-    typedef HashMap<String, int> StringToIntMap;
-    OwnPtr<StringToIntMap> value = adoptPtr(new StringToIntMap());
-    size_t count = 10;
-    for (size_t i = 10; i < 10 + count; ++i)
-        value->set(String::number(i), i);
-    InstrumentedOwner<StringToIntMap* > root(value.get());
-    helper.addRootObject(root);
-    EXPECT_EQ(sizeof(StringToIntMap) + sizeof(StringToIntMap::ValueType) * value->capacity() + (sizeof(StringImpl) + 2) * value->size(), helper.reportedSizeForAllTypes());
-    EXPECT_EQ(count + 1, helper.visitedObjects());
-}
-
-TEST(MemoryInstrumentationTest, hashMapWithInstrumentedValues)
-{
-    InstrumentationTestHelper helper;
-
-    typedef HashMap<int, String> IntToStringMap;
-    OwnPtr<IntToStringMap> value = adoptPtr(new IntToStringMap());
-    size_t count = 10;
-    for (size_t i = 10; i < 10 + count; ++i)
-        value->set(i, String::number(i));
-    InstrumentedOwner<IntToStringMap* > root(value.get());
-    helper.addRootObject(root);
-    EXPECT_EQ(sizeof(IntToStringMap) + sizeof(IntToStringMap::ValueType) * value->capacity() + (sizeof(StringImpl) + 2) * value->size(), helper.reportedSizeForAllTypes());
-    EXPECT_EQ(count + 1, helper.visitedObjects());
-}
-
-TEST(MemoryInstrumentationTest, hashMapWithInstrumentedKeysAndValues)
-{
-    InstrumentationTestHelper helper;
-
-    typedef HashMap<String, String> StringToStringMap;
-    OwnPtr<StringToStringMap> value = adoptPtr(new StringToStringMap());
-    size_t count = 10;
-    for (size_t i = 10; i < 10 + count; ++i)
-        value->set(String::number(count + i), String::number(i));
-    InstrumentedOwner<StringToStringMap* > root(value.get());
-    helper.addRootObject(root);
-    EXPECT_EQ(sizeof(StringToStringMap) + sizeof(StringToStringMap::ValueType) * value->capacity() + 2 * (sizeof(StringImpl) + 2) * value->size(), helper.reportedSizeForAllTypes());
-    EXPECT_EQ(2u * count + 1, helper.visitedObjects());
-}
-
-class InstrumentedRefCounted : public RefCounted<InstrumentedRefCounted> {
-public:
-    InstrumentedRefCounted() : m_notInstrumented(new NotInstrumented) { }
-    ~InstrumentedRefCounted() { delete m_notInstrumented; }
-    
-    void reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-    {
-        MemoryClassInfo info(memoryObjectInfo, this, TestType);
-        info.addMember(m_notInstrumented, "m_notInstrumented", WTF::RetainingPointer);
-    }
-private:
-    NotInstrumented* m_notInstrumented;
-};
-
-TEST(MemoryInstrumentationTest, hashMapWithInstrumentedPointerKeysAndPointerValues)
-{
-    InstrumentationTestHelper helper;
-
-    typedef HashMap<RefPtr<InstrumentedRefCounted>, RefPtr<InstrumentedRefCounted> > InstrumentedToInstrumentedMap;
-    OwnPtr<InstrumentedToInstrumentedMap> value(adoptPtr(new InstrumentedToInstrumentedMap()));
-    size_t count = 10;
-    for (size_t i = 0; i < count; ++i)
-        value->set(adoptRef(new InstrumentedRefCounted()), adoptRef(new InstrumentedRefCounted()));
-    InstrumentedOwner<InstrumentedToInstrumentedMap* > root(value.get());
-    helper.addRootObject(root);
-    EXPECT_EQ(sizeof(InstrumentedToInstrumentedMap)
-        + sizeof(InstrumentedToInstrumentedMap::ValueType) * value->capacity()
-        + 2 * (sizeof(InstrumentedRefCounted) + sizeof(NotInstrumented)) * value->size(),
-        helper.reportedSizeForAllTypes());
-    EXPECT_EQ(2u * 2u * count + 1, helper.visitedObjects());
-}
-
-TEST(MemoryInstrumentationTest, listHashSetWithInstrumentedType)
-{
-    InstrumentationTestHelper helper;
-
-    typedef ListHashSet<String, 8> TestSet;
-    OwnPtr<TestSet> value = adoptPtr(new TestSet());
-    size_t count = 10;
-    for (size_t i = 0; i < count; ++i)
-        value->add(String::number(i));
-    InstrumentedOwner<TestSet* > root(value.get());
-    helper.addRootObject(root);
-    EXPECT_EQ(sizeof(TestSet) + sizeof(String) * value->capacity() + (sizeof(StringImpl) + 1 * sizeof(LChar)) * count +
-        sizeof(WTF::ListHashSetNodeAllocator<String, 8>) + sizeof(WTF::ListHashSetNode<String, 8>) * (count - 8),
-        helper.reportedSizeForAllTypes());
-    EXPECT_EQ(1 + count, helper.visitedObjects());
-}
-
-TEST(MemoryInstrumentationTest, listHashSetWithInstrumentedTypeAfterValuesRemoval)
-{
-    InstrumentationTestHelper helper;
-
-    typedef ListHashSet<String, 8> TestSet;
-    OwnPtr<TestSet> value = adoptPtr(new TestSet());
-    size_t count = 20;
-    for (size_t i = 0; i < count; ++i)
-        value->add(String::number(i));
-    // Remove 10 values, 8 of which were allocated in the internal buffer.
-    for (size_t i = 0; i < 10; ++i)
-        value->remove(String::number(i));
-    InstrumentedOwner<TestSet* > root(value.get());
-    helper.addRootObject(root);
-    EXPECT_EQ(sizeof(TestSet) + sizeof(String) * value->capacity() + (sizeof(StringImpl) + 2 * sizeof(LChar)) * (count - 10) +
-        sizeof(WTF::ListHashSetNodeAllocator<String, 8>) + sizeof(WTF::ListHashSetNode<String, 8>) * (count - 10),
-        helper.reportedSizeForAllTypes());
-    EXPECT_EQ(1 + (count - 10), helper.visitedObjects());
-}
-
-class InstrumentedConvertibleToInt : public RefCounted<InstrumentedConvertibleToInt> {
-public:
-    InstrumentedConvertibleToInt() : m_notInstrumented(new NotInstrumented) { }
-    virtual ~InstrumentedConvertibleToInt() { delete m_notInstrumented; }
-
-    virtual void reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-    {
-        MemoryClassInfo info(memoryObjectInfo, this, TestType);
-        info.addMember(m_notInstrumented);
-    }
-
-    operator int() const { return 2012; }
-
-    NotInstrumented* m_notInstrumented;
-};
-
-// This test checks if reportMemoryUsage method will be called on a class
-// that can be implicitly cast to int. Currently objects of such classes are
-// treated as integers when they are stored in a HashMap by value and
-// reportMemoryUsage will not be called on them. We may fix that later.
-TEST(MemoryInstrumentationTest, hashMapWithValuesConvertibleToInt)
-{
-    InstrumentationTestHelper helper;
-
-    typedef HashMap<RefPtr<InstrumentedConvertibleToInt>, int> TestMap;
-    OwnPtr<TestMap> value(adoptPtr(new TestMap()));
-    size_t count = 10;
-    for (size_t i = 0; i < count; ++i)
-        value->set(adoptRef(new InstrumentedConvertibleToInt()), 0);
-    InstrumentedOwner<TestMap* > root(value.get());
-    helper.addRootObject(root);
-    EXPECT_EQ(sizeof(TestMap) + sizeof(TestMap::ValueType) * value->capacity() +
-        sizeof(InstrumentedConvertibleToInt) * count /* + sizeof(NotInstrumented) * count */, helper.reportedSizeForAllTypes());
-    EXPECT_EQ(count + 1, helper.visitedObjects());
-}
-
-TEST(MemoryInstrumentationTest, hashMapWithEnumKeysAndInstrumentedValues)
-{
-    InstrumentationTestHelper helper;
-
-    typedef HashMap<TestEnum, String> EnumToStringMap;
-    OwnPtr<EnumToStringMap> value(adoptPtr(new EnumToStringMap()));
-    size_t count = MY_ENUM_MAX;
-    for (size_t i = ONE; i <= count; ++i)
-        value->set(static_cast<TestEnum>(i), String::number(i));
-    InstrumentedOwner<EnumToStringMap* > root(value.get());
-    helper.addRootObject(root);
-    EXPECT_EQ(sizeof(EnumToStringMap)
-        + sizeof(EnumToStringMap::ValueType) * value->capacity()
-        + (sizeof(StringImpl) + 1) * value->size(),
-        helper.reportedSizeForAllTypes());
-    EXPECT_EQ(count + 1, helper.visitedObjects());
-}
-
-TEST(MemoryInstrumentationTest, hashCountedSetWithInstrumentedValues)
-{
-    InstrumentationTestHelper helper;
-
-    typedef HashCountedSet<RefPtr<InstrumentedRefCounted> > TestSet;
-    OwnPtr<TestSet> set(adoptPtr(new TestSet()));
-    size_t count = 10;
-    for (size_t i = 0; i < count; ++i) {
-        RefPtr<InstrumentedRefCounted> instrumentedRefCounted = adoptRef(new InstrumentedRefCounted());
-        for (size_t j = 0; j <= i; j++)
-            set->add(instrumentedRefCounted);
-    }
-    InstrumentedOwner<TestSet* > root(set.get());
-    helper.addRootObject(root);
-    EXPECT_EQ(sizeof(TestSet)
-        + sizeof(HashMap<RefPtr<InstrumentedRefCounted>, unsigned>::ValueType) * set->capacity()
-        + (sizeof(InstrumentedRefCounted) + sizeof(NotInstrumented))  * set->size(),
-        helper.reportedSizeForAllTypes());
-    EXPECT_EQ(2u * count + 1, helper.visitedObjects());
-}
-
-TEST(MemoryInstrumentationTest, arrayBuffer)
-{
-    InstrumentationTestHelper helper;
-
-    typedef InstrumentedTemplate<RefPtr<ArrayBuffer> > ValueType;
-    ValueType value(ArrayBuffer::create(1000, sizeof(int)));
-    helper.addRootObject(value);
-    EXPECT_EQ(sizeof(int) * 1000 + sizeof(ArrayBuffer), helper.reportedSizeForAllTypes());
-    EXPECT_EQ(2u, helper.visitedObjects());
-    EXPECT_EQ(2u, helper.linksCount(WTF::RetainingPointer));
-}
-
-class AncestorWithVirtualMethod {
-public:
-    virtual char* data() { return m_data; }
-
-private:
-    char m_data[10];
-};
-
-class ClassWithTwoAncestors : public AncestorWithVirtualMethod, public Instrumented {
-public:
-    virtual void reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-    {
-        MemoryClassInfo info(memoryObjectInfo, this, TestType);
-        Instrumented::reportMemoryUsage(memoryObjectInfo);
-    }
-};
-
-TEST(MemoryInstrumentationTest, instrumentedWithMultipleAncestors)
-{
-    InstrumentationTestHelper helper;
-    OwnPtr<ClassWithTwoAncestors> instance = adoptPtr(new ClassWithTwoAncestors());
-    ClassWithTwoAncestors* descendantPointer = instance.get();
-    InstrumentedOwner<ClassWithTwoAncestors*> descendantPointerOwner(descendantPointer);
-    Instrumented* ancestorPointer = descendantPointer;
-    InstrumentedOwner<Instrumented*> ancestorPointerOwner(ancestorPointer);
-    EXPECT_NE(static_cast<void*>(ancestorPointer), static_cast<void*>(descendantPointer));
-
-    helper.addRootObject(descendantPointerOwner);
-    helper.addRootObject(ancestorPointerOwner);
-    EXPECT_EQ(sizeof(ClassWithTwoAncestors) + sizeof(NotInstrumented), helper.reportedSizeForAllTypes());
-    EXPECT_EQ(3u, helper.visitedObjects());
-}
-
-class CheckCountedObjectsClient : public MemoryInstrumentationTestClient {
-public:
-    CheckCountedObjectsClient(const void* expectedPointer) : m_expectedPointer(expectedPointer), m_expectedPointerFound(false) { }
-    virtual bool checkCountedObject(const void* pointer)
-    {
-        EXPECT_EQ(pointer, m_expectedPointer);
-        m_expectedPointerFound = true;
-        return true;
-    }
-    bool expectedPointerFound() { return m_expectedPointerFound; }
-
-private:
-    const void* m_expectedPointer;
-    bool m_expectedPointerFound;
-};
-
-TEST(MemoryInstrumentationTest, checkCountedObjectWithMultipleAncestors)
-{
-    OwnPtr<ClassWithTwoAncestors> instance = adoptPtr(new ClassWithTwoAncestors());
-    instance->disposeOwnedObject();
-    ClassWithTwoAncestors* descendantPointer = instance.get();
-    InstrumentedOwner<ClassWithTwoAncestors*> descendantPointerOwner(descendantPointer);
-    Instrumented* ancestorPointer = descendantPointer;
-    InstrumentedOwner<Instrumented*> ancestorPointerOwner(ancestorPointer);
-    EXPECT_NE(static_cast<void*>(ancestorPointer), static_cast<void*>(descendantPointer));
-
-    CheckCountedObjectsClient client(instance.get());
-    InstrumentationTestImpl instrumentation(&client);
-    instrumentation.addRootObject(descendantPointerOwner);
-    instrumentation.addRootObject(ancestorPointerOwner);
-    EXPECT_TRUE(client.expectedPointerFound());
-}
-
-class TwoPointersToSameInsrumented {
-public:
-    TwoPointersToSameInsrumented()
-        : m_ownPtr(adoptPtr(new ClassWithTwoAncestors()))
-        , m_baseClassPtr(m_ownPtr.get())
-    {
-        EXPECT_NE(static_cast<void*>(m_ownPtr.get()), static_cast<void*>(m_baseClassPtr));
-    }
-    void reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-    {
-        MemoryClassInfo info(memoryObjectInfo, this, TestType);
-        info.addMember(m_ownPtr);
-        info.addMember(m_baseClassPtr);
-    }
-
-private:
-    OwnPtr<ClassWithTwoAncestors> m_ownPtr;
-    Instrumented* m_baseClassPtr;
-};
-
-class CountLinksFromInstrumentedObject : public MemoryInstrumentationTestClient {
-public:
-    CountLinksFromInstrumentedObject() : m_linkCount(0) { }
-    virtual void reportEdge(const void*, const char* name, MemberType) OVERRIDE
-    {
-        if (name && !strcmp("m_notInstrumented", name))
-            m_linkCount++;
-    }
-    int linkCount() const { return m_linkCount; }
-
-private:
-    int m_linkCount;
-};
-
-
-TEST(MemoryInstrumentationTest, doNotReportEdgeTwice)
-{
-    OwnPtr<TwoPointersToSameInsrumented> instance = adoptPtr(new TwoPointersToSameInsrumented());
-
-    CountLinksFromInstrumentedObject client;
-    InstrumentationTestImpl instrumentation(&client);
-    instrumentation.addRootObject(instance.get());
-    EXPECT_EQ(1, client.linkCount());
-}
-
-class DerivedClass : public Instrumented {
-public:
-    size_t m_member;
-};
-
-TEST(MemoryInstrumentationTest, detectBaseClassInstrumentation)
-{
-    OwnPtr<DerivedClass> instance = adoptPtr(new DerivedClass());
-
-    InstrumentationTestHelper helper;
-    helper.addRootObject(instance.get(), TestType);
-    EXPECT_EQ(sizeof(Instrumented) + sizeof(NotInstrumented), helper.reportedSizeForAllTypes());
-    EXPECT_EQ(2u, helper.visitedObjects());
-}
-
-} // namespace
-
diff --git a/Tools/TestWebKitAPI/Tests/WTF/MetaAllocator.cpp b/Tools/TestWebKitAPI/Tests/WTF/MetaAllocator.cpp
deleted file mode 100644
index 61c16d1..0000000
--- a/Tools/TestWebKitAPI/Tests/WTF/MetaAllocator.cpp
+++ /dev/null
@@ -1,953 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include <stdarg.h>
-#include <wtf/MetaAllocator.h>
-#include <wtf/Vector.h>
-
-using namespace WTF;
-
-namespace TestWebKitAPI {
-
-class MetaAllocatorTest: public testing::Test {
-public:
-    enum SanityCheckMode { RunSanityCheck, DontRunSanityCheck };
-    
-    enum HeapGrowthMode { DontGrowHeap, ForTestDemandAllocCoalesce, ForTestDemandAllocDontCoalesce };
-    
-    HeapGrowthMode currentHeapGrowthMode;
-    size_t allowAllocatePages;
-    size_t requestedNumPages;
-
-    class SimpleTestAllocator: public MetaAllocator {
-    public:
-        SimpleTestAllocator(MetaAllocatorTest* parent)
-            : MetaAllocator(32)
-            , m_parent(parent)
-        {
-            addFreshFreeSpace(reinterpret_cast<void*>(basePage * pageSize()), defaultPagesInHeap * pageSize());
-        }
-        
-        virtual ~SimpleTestAllocator()
-        {
-            EXPECT_TRUE(!m_parent->allocatorDestroyed);
-            m_parent->allocatorDestroyed = true;
-        }
-        
-        virtual void* allocateNewSpace(size_t& numPages)
-        {
-            switch (m_parent->currentHeapGrowthMode) {
-            case DontGrowHeap:
-                return 0;
-                
-            case ForTestDemandAllocCoalesce:
-            case ForTestDemandAllocDontCoalesce: {
-                EXPECT_TRUE(m_parent->allowAllocatePages);
-                EXPECT_TRUE(m_parent->allowAllocatePages >= numPages);
-                m_parent->requestedNumPages = numPages;
-                numPages = m_parent->allowAllocatePages;
-                
-                unsigned offset;
-                if (m_parent->currentHeapGrowthMode == ForTestDemandAllocCoalesce)
-                    offset = 0;
-                else
-                    offset = 1;
-                
-                void* result = reinterpret_cast<void*>((basePage + defaultPagesInHeap + offset) * pageSize());
-                
-                m_parent->allowAllocatePages = 0;
-                m_parent->currentHeapGrowthMode = DontGrowHeap;
-                
-                for (size_t counter = 0; counter < numPages + offset; ++counter) {
-                    m_parent->pageMap->append(false);
-                    for (unsigned byteCounter = 0; byteCounter < pageSize(); ++byteCounter)
-                        m_parent->memoryMap->append(false);
-                }
-                
-                m_parent->additionalPagesInHeap += numPages;
-        
-                return result;
-            }
-                
-            default:
-                CRASH();
-                return 0;
-            }
-        }
-        
-        virtual void notifyNeedPage(void* page)
-        {
-            // the page should be both free and unmapped.
-            EXPECT_TRUE(!m_parent->pageState(reinterpret_cast<uintptr_t>(page) / pageSize()));
-            for (uintptr_t address = reinterpret_cast<uintptr_t>(page); address < reinterpret_cast<uintptr_t>(page) + pageSize(); ++address)
-                EXPECT_TRUE(!m_parent->byteState(reinterpret_cast<void*>(address)));
-            m_parent->pageState(reinterpret_cast<uintptr_t>(page) / pageSize()) = true;
-        }
-        
-        virtual void notifyPageIsFree(void* page)
-        {
-            // the page should be free of objects at this point, but it should still
-            // be mapped.
-            EXPECT_TRUE(m_parent->pageState(reinterpret_cast<uintptr_t>(page) / pageSize()));
-            for (uintptr_t address = reinterpret_cast<uintptr_t>(page); address < reinterpret_cast<uintptr_t>(page) + pageSize(); ++address)
-                EXPECT_TRUE(!m_parent->byteState(reinterpret_cast<void*>(address)));
-            m_parent->pageState(reinterpret_cast<uintptr_t>(page) / pageSize()) = false;
-        }
-        
-    private:
-        MetaAllocatorTest* m_parent;
-    };
-
-    static const unsigned basePage = 1;
-    static const unsigned defaultPagesInHeap = 100;
-    
-    unsigned additionalPagesInHeap;
-    
-    Vector<bool, 0>* memoryMap;
-    Vector<bool, 0>* pageMap;
-    bool allocatorDestroyed;
-    
-    SimpleTestAllocator* allocator;
-    
-    virtual void SetUp()
-    {
-        memoryMap = new Vector<bool, 0>();
-        pageMap = new Vector<bool, 0>();
-        
-        for (unsigned page = basePage; page < basePage + defaultPagesInHeap; ++page) {
-            pageMap->append(false);
-            for (unsigned byteInPage = 0; byteInPage < pageSize(); ++byteInPage)
-                memoryMap->append(false);
-        }
-
-        allocatorDestroyed = false;
-        
-        currentHeapGrowthMode = DontGrowHeap;
-        allowAllocatePages = 0;
-        additionalPagesInHeap = 0;
-        requestedNumPages = 0;
-        
-        allocator = new SimpleTestAllocator(this);
-    }
-    
-    virtual void TearDown()
-    {
-        EXPECT_TRUE(currentHeapGrowthMode == DontGrowHeap);
-        EXPECT_EQ(allowAllocatePages, static_cast<size_t>(0));
-        EXPECT_EQ(requestedNumPages, static_cast<size_t>(0));
-        
-        // memory should be free.
-        for (unsigned page = basePage; page < basePage + defaultPagesInHeap; ++page) {
-            EXPECT_TRUE(!pageState(page));
-            for (unsigned byteInPage = 0; byteInPage < pageSize(); ++byteInPage)
-                EXPECT_TRUE(!byteState(page * pageSize() + byteInPage));
-        }
-        
-        // NOTE: this automatically tests that the allocator did not leak
-        // memory, so long as these tests are running with !defined(NDEBUG).
-        // See MetaAllocator::m_mallocBalance.
-        delete allocator;
-        
-        EXPECT_TRUE(allocatorDestroyed);
-        
-        delete memoryMap;
-        delete pageMap;
-    }
-    
-    MetaAllocatorHandle* allocate(size_t sizeInBytes, SanityCheckMode sanityCheckMode = RunSanityCheck)
-    {
-        MetaAllocatorHandle* handle = allocator->allocate(sizeInBytes, 0).leakRef();
-        EXPECT_TRUE(handle);
-        EXPECT_EQ(handle->sizeInBytes(), sizeInBytes);
-        
-        uintptr_t startByte = reinterpret_cast<uintptr_t>(handle->start());
-        uintptr_t endByte = startByte + sizeInBytes;
-        for (uintptr_t currentByte = startByte; currentByte < endByte; ++currentByte) {
-            EXPECT_TRUE(!byteState(currentByte));
-            byteState(currentByte) = true;
-            EXPECT_TRUE(pageState(currentByte / pageSize()));
-        }
-        
-        if (sanityCheckMode == RunSanityCheck)
-            sanityCheck();
-        
-        return handle;
-    }
-    
-    void free(MetaAllocatorHandle* handle, SanityCheckMode sanityCheckMode = RunSanityCheck)
-    {
-        EXPECT_TRUE(handle);
-        
-        notifyFree(handle->start(), handle->sizeInBytes());
-        handle->deref();
-        
-        if (sanityCheckMode == RunSanityCheck)
-            sanityCheck();
-    }
-    
-    void notifyFree(void* start, size_t sizeInBytes)
-    {
-        uintptr_t startByte = reinterpret_cast<uintptr_t>(start);
-        uintptr_t endByte = startByte + sizeInBytes;
-        for (uintptr_t currentByte = startByte; currentByte < endByte; ++currentByte) {
-            EXPECT_TRUE(byteState(currentByte));
-            byteState(currentByte) = false;
-        }
-    }
-    
-    void sanityCheck()
-    {
-#ifndef NDEBUG
-        EXPECT_EQ(allocator->bytesReserved() - allocator->bytesAllocated(), allocator->debugFreeSpaceSize());
-#endif
-        EXPECT_EQ(allocator->bytesReserved(), (defaultPagesInHeap + additionalPagesInHeap) * pageSize());
-        EXPECT_EQ(allocator->bytesAllocated(), bytesAllocated());
-        EXPECT_EQ(allocator->bytesCommitted(), bytesCommitted());
-    }
-    
-    void confirm(MetaAllocatorHandle* handle)
-    {
-        uintptr_t startByte = reinterpret_cast<uintptr_t>(handle->start());
-        confirm(startByte, startByte + handle->sizeInBytes(), true);
-    }
-    
-    void confirmHighWatermark(MetaAllocatorHandle* handle)
-    {
-        confirm(reinterpret_cast<uintptr_t>(handle->end()), (basePage + defaultPagesInHeap) * pageSize(), false);
-    }
-                
-    void confirm(uintptr_t startByte, uintptr_t endByte, bool value)
-    {
-        for (uintptr_t currentByte = startByte; currentByte < endByte; ++currentByte) {
-            EXPECT_EQ(byteState(currentByte), value);
-            if (value)
-                EXPECT_TRUE(pageState(currentByte / pageSize()));
-        }
-        if (!value) {
-            uintptr_t firstFreePage = (startByte + pageSize() - 1) / pageSize();
-            uintptr_t lastFreePage = (endByte - pageSize()) / pageSize();
-            for (uintptr_t currentPage = firstFreePage; currentPage <= lastFreePage; ++currentPage)
-                EXPECT_TRUE(!pageState(currentPage));
-        }
-    }
-    
-    size_t bytesAllocated()
-    {
-        size_t result = 0;
-        for (unsigned index = 0; index < memoryMap->size(); ++index) {
-            if (memoryMap->at(index))
-                result++;
-        }
-        return result;
-    }
-    
-    size_t bytesCommitted()
-    {
-        size_t result = 0;
-        for (unsigned index = 0; index < pageMap->size(); ++index) {
-            if (pageMap->at(index))
-                result++;
-        }
-        return result * pageSize();
-    }
-    
-    bool& byteState(void* address)
-    {
-        return byteState(reinterpret_cast<uintptr_t>(address));
-    }
-    
-    bool& byteState(uintptr_t address)
-    {
-        uintptr_t byteIndex = address - basePage * pageSize();
-        return memoryMap->at(byteIndex);
-    }
-    
-    bool& pageState(uintptr_t page)
-    {
-        uintptr_t pageIndex = page - basePage;
-        return pageMap->at(pageIndex);
-    }
-
-    // Test helpers
-
-    void testOneAlloc(size_t size)
-    {
-        // Tests the most basic behavior: allocate one thing and free it. Also
-        // verifies that the state of pages is correct.
-        
-        MetaAllocatorHandle* handle = allocate(size);
-        EXPECT_EQ(handle->start(), reinterpret_cast<void*>(basePage * pageSize()));
-        EXPECT_EQ(handle->sizeInBytes(), size);
-        EXPECT_TRUE(pageState(basePage));
-        
-        confirm(handle);
-        confirmHighWatermark(handle);
-        
-        free(handle);
-    }
-    
-    void testRepeatAllocFree(size_t firstSize, ...)
-    {
-        // Tests right-coalescing by repeatedly allocating and freeing. The idea
-        // is that if you allocate something and then free it, then the heap should
-        // look identical to what it was before the allocation due to a right-coalesce
-        // of the freed chunk and the already-free memory, and so subsequent
-        // allocations should behave the same as the first one.
-        
-        MetaAllocatorHandle* handle = allocate(firstSize);
-        EXPECT_EQ(handle->start(), reinterpret_cast<void*>(basePage * pageSize()));
-        EXPECT_EQ(handle->sizeInBytes(), firstSize);
-        
-        confirm(handle);
-        confirmHighWatermark(handle);
-        
-        free(handle);
-        
-        va_list argList;
-        va_start(argList, firstSize);
-        while (size_t sizeInBytes = va_arg(argList, int)) {
-            handle = allocate(sizeInBytes);
-            EXPECT_EQ(handle->start(), reinterpret_cast<void*>(basePage * pageSize()));
-            EXPECT_EQ(handle->sizeInBytes(), sizeInBytes);
-            
-            confirm(handle);
-            confirmHighWatermark(handle);
-            
-            free(handle);
-        }
-        va_end(argList);
-    }
-    
-    void testSimpleFullCoalesce(size_t firstSize, size_t secondSize, size_t thirdSize)
-    {
-        // Allocates something of size firstSize, then something of size secondSize, and then
-        // frees the first allocation, and then the second, and then attempts to allocate the
-        // third, asserting that it allocated at the base address of the heap.
-        
-        // Note that this test may cause right-allocation, which will cause the test to fail.
-        // Thus the correct way of running this test is to ensure that secondSize is
-        // picked in such a way that it never straddles a page.
-        
-        MetaAllocatorHandle* firstHandle = allocate(firstSize);
-        EXPECT_EQ(firstHandle->start(), reinterpret_cast<void*>(basePage * pageSize()));
-        EXPECT_EQ(firstHandle->sizeInBytes(), firstSize);
-        
-        confirm(firstHandle);
-        confirmHighWatermark(firstHandle);
-
-        MetaAllocatorHandle* secondHandle = allocate(secondSize);
-        EXPECT_EQ(secondHandle->start(), reinterpret_cast<void*>(basePage * pageSize() + firstSize));
-        EXPECT_EQ(secondHandle->sizeInBytes(), secondSize);
-        
-        confirm(firstHandle);
-        confirm(secondHandle);
-        confirmHighWatermark(secondHandle);
-        
-        free(firstHandle);
-        
-        confirm(secondHandle);
-        confirmHighWatermark(secondHandle);
-        
-        free(secondHandle);
-        
-        confirm(basePage * pageSize(), (basePage + defaultPagesInHeap) * pageSize(), false);
-        
-        MetaAllocatorHandle* thirdHandle = allocate(thirdSize);
-        EXPECT_EQ(thirdHandle->start(), reinterpret_cast<void*>(basePage * pageSize()));
-        EXPECT_EQ(thirdHandle->sizeInBytes(), thirdSize);
-        
-        confirm(thirdHandle);
-        confirmHighWatermark(thirdHandle);
-        
-        free(thirdHandle);
-    }
-    
-    enum TestFIFOAllocMode { FillAtEnd, EagerFill };
-    void testFIFOAlloc(TestFIFOAllocMode mode, ...)
-    {
-        // This will test the simple case of no-coalesce (freeing the left-most
-        // chunk in memory when the chunk to the right of it is allocated) and
-        // fully exercise left-coalescing and full-coalescing. In EagerFill
-        // mode, this also tests perfect-fit allocation and no-coalescing free.
-        
-        size_t totalSize = 0;
-        
-        Vector<MetaAllocatorHandle*, 0> handles;
-        
-        va_list argList;
-        va_start(argList, mode);
-        while (size_t sizeInBytes = va_arg(argList, int)) {
-            MetaAllocatorHandle* handle = allocate(sizeInBytes);
-            EXPECT_EQ(handle->start(), reinterpret_cast<void*>(basePage * pageSize() + totalSize));
-            EXPECT_EQ(handle->sizeInBytes(), sizeInBytes);
-            
-            confirm(handle);
-            confirmHighWatermark(handle);
-            
-            handles.append(handle);
-            totalSize += sizeInBytes;
-        }
-        va_end(argList);
-        
-        for (unsigned index = 0; index < handles.size(); ++index)
-            confirm(handles.at(index));
-        
-        size_t sizeSoFar = 0;
-        for (unsigned index = 0; index < handles.size(); ++index) {
-            sizeSoFar += handles.at(index)->sizeInBytes();
-            free(handles.at(index));
-            if (mode == EagerFill) {
-                MetaAllocatorHandle* handle = allocate(sizeSoFar);
-                EXPECT_EQ(handle->start(), reinterpret_cast<void*>(basePage * pageSize()));
-                EXPECT_EQ(handle->sizeInBytes(), sizeSoFar);
-                
-                confirm(basePage * pageSize(), basePage * pageSize() + totalSize, true);
-                if (index < handles.size() - 1)
-                    confirmHighWatermark(handles.last());
-                else
-                    confirmHighWatermark(handle);
-                
-                free(handle);
-                
-                confirm(basePage * pageSize(), basePage * pageSize() + sizeSoFar, false);
-            }
-        }
-        
-        ASSERT(sizeSoFar == totalSize);
-        
-        confirm(basePage * pageSize(), (basePage + defaultPagesInHeap) * pageSize(), false);
-        
-        if (mode == FillAtEnd) {
-            MetaAllocatorHandle* finalHandle = allocate(totalSize);
-            EXPECT_EQ(finalHandle->start(), reinterpret_cast<void*>(basePage * pageSize()));
-            EXPECT_EQ(finalHandle->sizeInBytes(), totalSize);
-            
-            confirm(finalHandle);
-            confirmHighWatermark(finalHandle);
-            
-            free(finalHandle);
-        }
-    }
-    
-    void testFillHeap(size_t sizeInBytes, size_t numAllocations)
-    {
-        Vector<MetaAllocatorHandle*, 0> handles;
-        
-        for (size_t index = 0; index < numAllocations; ++index)
-            handles.append(allocate(sizeInBytes, DontRunSanityCheck));
-        
-        sanityCheck();
-        
-        EXPECT_TRUE(!allocator->allocate(sizeInBytes, 0));
-        
-        for (size_t index = 0; index < numAllocations; ++index)
-            free(handles.at(index), DontRunSanityCheck);
-        
-        sanityCheck();
-    }
-    
-    void testRightAllocation(size_t firstLeftSize, size_t firstRightSize, size_t secondLeftSize, size_t secondRightSize)
-    {
-        MetaAllocatorHandle* firstLeft = allocate(firstLeftSize);
-        EXPECT_EQ(firstLeft->start(), reinterpret_cast<void*>(basePage * pageSize()));
-        
-        MetaAllocatorHandle* firstRight = allocate(firstRightSize);
-        EXPECT_EQ(firstRight->end(), reinterpret_cast<void*>((basePage + defaultPagesInHeap) * pageSize()));
-        
-        MetaAllocatorHandle* secondLeft = allocate(secondLeftSize);
-        EXPECT_EQ(secondLeft->start(), reinterpret_cast<void*>(basePage * pageSize() + firstLeft->sizeInBytes()));
-        
-        MetaAllocatorHandle* secondRight = allocate(secondRightSize);
-        EXPECT_EQ(secondRight->end(), reinterpret_cast<void*>((basePage + defaultPagesInHeap) * pageSize() - firstRight->sizeInBytes()));
-        
-        free(firstLeft);
-        free(firstRight);
-        free(secondLeft);
-        free(secondRight);
-        
-        MetaAllocatorHandle* final = allocate(defaultPagesInHeap * pageSize());
-        EXPECT_EQ(final->start(), reinterpret_cast<void*>(basePage * pageSize()));
-        
-        free(final);
-    }
-    
-    void testBestFit(size_t firstSize, size_t step, unsigned numSlots, SanityCheckMode sanityCheckMode)
-    {
-        Vector<MetaAllocatorHandle*, 0> handlesToFree;
-        Vector<MetaAllocatorHandle*, 0> handles;
-        Vector<void*, 0> locations;
-        
-        size_t size = firstSize;
-        for (unsigned index = 0; index < numSlots; ++index) {
-            MetaAllocatorHandle* toFree = allocate(size, sanityCheckMode);
-            if (!handles.isEmpty()) {
-                while (toFree->start() != handles.last()->end()) {
-                    handlesToFree.append(toFree);
-                    toFree = allocate(size, sanityCheckMode);
-                }
-            }
-
-            MetaAllocatorHandle* fragger = allocate(32, sanityCheckMode);
-            EXPECT_EQ(fragger->start(), toFree->end());
-            
-            locations.append(toFree->start());
-
-            handlesToFree.append(toFree);
-            handles.append(fragger);
-            
-            size += step;
-        }
-        
-        ASSERT(locations.size() == numSlots);
-        
-        for (unsigned index = 0; index < handlesToFree.size(); ++index)
-            free(handlesToFree.at(index), sanityCheckMode);
-        
-        size = firstSize;
-        for (unsigned index = 0; index < numSlots; ++index) {
-            MetaAllocatorHandle* bestFit = allocate(size - 32, sanityCheckMode);
-            
-            EXPECT_TRUE(bestFit->start() == locations.at(index)
-                        || bestFit->end() == reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(locations.at(index)) + size));
-            
-            MetaAllocatorHandle* small = allocate(32, sanityCheckMode);
-            if (bestFit->start() == locations.at(index))
-                EXPECT_EQ(small->start(), bestFit->end());
-            else
-                EXPECT_EQ(small->end(), bestFit->start());
-            
-            free(bestFit, sanityCheckMode);
-            free(small, sanityCheckMode);
-            
-            size += step;
-        }
-        
-        for (unsigned index = 0; index < numSlots; ++index)
-            free(handles.at(index), sanityCheckMode);
-        
-        MetaAllocatorHandle* final = allocate(defaultPagesInHeap * pageSize(), sanityCheckMode);
-        EXPECT_EQ(final->start(), reinterpret_cast<void*>(basePage * pageSize()));
-        
-        free(final, sanityCheckMode);
-    }
-    
-    void testShrink(size_t firstSize, size_t secondSize)
-    {
-        // Allocate the thing that will be shrunk
-        MetaAllocatorHandle* handle = allocate(firstSize);
-        
-        // Shrink it, and make sure that our state reflects the shrinkage.
-        notifyFree(reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(handle->start()) + secondSize), firstSize - secondSize);
-        
-        handle->shrink(secondSize);
-        EXPECT_EQ(handle->sizeInBytes(), secondSize);
-        
-        sanityCheck();
-        
-        // Assert that the heap is not empty.
-        EXPECT_TRUE(!allocator->allocate(defaultPagesInHeap * pageSize(), 0));
-        
-        // Allocate the remainder of the heap.
-        MetaAllocatorHandle* remainder = allocate(defaultPagesInHeap * pageSize() - secondSize);
-        EXPECT_EQ(remainder->start(), handle->end());
-        
-        free(remainder);
-        free(handle);
-        
-        // Assert that the heap is empty and finish up.
-        MetaAllocatorHandle* final = allocate(defaultPagesInHeap * pageSize());
-        EXPECT_EQ(final->start(), reinterpret_cast<void*>(basePage * pageSize()));
-        
-        free(final);
-    }
-    
-    void testDemandAllocCoalesce(size_t firstSize, size_t numPages, size_t secondSize)
-    {
-        EXPECT_TRUE(!allocator->allocate((defaultPagesInHeap + numPages) * pageSize(), 0));
-        
-        MetaAllocatorHandle* firstHandle = allocate(firstSize);
-        
-        EXPECT_TRUE(!allocator->allocate(secondSize, 0));
-        EXPECT_TRUE(!allocator->allocate((defaultPagesInHeap + numPages) * pageSize(), 0));
-        
-        currentHeapGrowthMode = ForTestDemandAllocCoalesce;
-        allowAllocatePages = numPages;
-        
-        MetaAllocatorHandle* secondHandle = allocate(secondSize);
-        
-        EXPECT_TRUE(currentHeapGrowthMode == DontGrowHeap);
-        EXPECT_EQ(allowAllocatePages, static_cast<size_t>(0));
-        EXPECT_EQ(requestedNumPages, (secondSize + pageSize() - 1) / pageSize());
-        EXPECT_EQ(secondHandle->start(), reinterpret_cast<void*>((basePage + defaultPagesInHeap) * pageSize()));
-        
-        requestedNumPages = 0;
-        
-        free(firstHandle);
-        free(secondHandle);
-        
-        free(allocate((defaultPagesInHeap + numPages) * pageSize()));
-    }
-    
-    void testDemandAllocDontCoalesce(size_t firstSize, size_t numPages, size_t secondSize)
-    {
-        free(allocate(firstSize));
-        free(allocate(defaultPagesInHeap * pageSize()));
-        EXPECT_TRUE(!allocator->allocate((defaultPagesInHeap + numPages) * pageSize(), 0));
-        
-        MetaAllocatorHandle* firstHandle = allocate(firstSize);
-        
-        EXPECT_TRUE(!allocator->allocate(secondSize, 0));
-        EXPECT_TRUE(!allocator->allocate((defaultPagesInHeap + numPages) * pageSize(), 0));
-        
-        currentHeapGrowthMode = ForTestDemandAllocDontCoalesce;
-        allowAllocatePages = numPages;
-        
-        MetaAllocatorHandle* secondHandle = allocate(secondSize);
-        
-        EXPECT_TRUE(currentHeapGrowthMode == DontGrowHeap);
-        EXPECT_EQ(allowAllocatePages, static_cast<size_t>(0));
-        EXPECT_EQ(requestedNumPages, (secondSize + pageSize() - 1) / pageSize());
-        EXPECT_EQ(secondHandle->start(), reinterpret_cast<void*>((basePage + defaultPagesInHeap + 1) * pageSize()));
-        
-        requestedNumPages = 0;
-        
-        EXPECT_TRUE(!allocator->allocate((defaultPagesInHeap + numPages) * pageSize(), 0));
-
-        free(firstHandle);
-        free(secondHandle);
-        
-        EXPECT_TRUE(!allocator->allocate((defaultPagesInHeap + numPages) * pageSize(), 0));
-        
-        firstHandle = allocate(firstSize);
-        secondHandle = allocate(secondSize);
-        EXPECT_EQ(firstHandle->start(), reinterpret_cast<void*>(basePage * pageSize()));
-        EXPECT_EQ(secondHandle->start(), reinterpret_cast<void*>((basePage + defaultPagesInHeap + 1) * pageSize()));
-        free(firstHandle);
-        free(secondHandle);
-    }
-};
-
-TEST_F(MetaAllocatorTest, Empty)
-{
-    // Tests that creating and destroying an allocator works.
-}
-
-TEST_F(MetaAllocatorTest, AllocZero)    
-{
-    // Tests that allocating a zero-length block returns 0 and
-    // does not change anything in memory.
-    
-    ASSERT(!allocator->allocate(0, 0));
-    
-    MetaAllocatorHandle* final = allocate(defaultPagesInHeap * pageSize());
-    EXPECT_EQ(final->start(), reinterpret_cast<void*>(basePage * pageSize()));
-    free(final);
-}
-
-TEST_F(MetaAllocatorTest, OneAlloc32)
-{
-    testOneAlloc(32);
-}
-
-TEST_F(MetaAllocatorTest, OneAlloc64)
-{
-    testOneAlloc(64);
-}
-
-TEST_F(MetaAllocatorTest, OneAllocTwoPages)
-{
-    testOneAlloc(pageSize() * 2);
-}
-
-TEST_F(MetaAllocatorTest, RepeatAllocFree32Twice)
-{
-    testRepeatAllocFree(32, 32, 0);
-}
-
-TEST_F(MetaAllocatorTest, RepeatAllocFree32Then64)
-{
-    testRepeatAllocFree(32, 64, 0);
-}
-
-TEST_F(MetaAllocatorTest, RepeatAllocFree64Then32)
-{
-    testRepeatAllocFree(64, 32, 0);
-}
-
-TEST_F(MetaAllocatorTest, RepeatAllocFree32TwiceThen64)
-{
-    testRepeatAllocFree(32, 32, 64, 0);
-}
-
-TEST_F(MetaAllocatorTest, RepeatAllocFree32Then64Twice)
-{
-    testRepeatAllocFree(32, 64, 64, 0);
-}
-
-TEST_F(MetaAllocatorTest, RepeatAllocFree64Then32Then64)
-{
-    testRepeatAllocFree(64, 32, 64, 0);
-}
-
-TEST_F(MetaAllocatorTest, RepeatAllocFree32Thrice)
-{
-    testRepeatAllocFree(32, 32, 32, 0);
-}
-
-TEST_F(MetaAllocatorTest, RepeatAllocFree32Then64Then32)
-{
-    testRepeatAllocFree(32, 32, 32, 0);
-}
-
-TEST_F(MetaAllocatorTest, RepeatAllocFree64Then32Twice)
-{
-    testRepeatAllocFree(64, 32, 32, 0);
-}
-
-TEST_F(MetaAllocatorTest, RepeatAllocFreeTwoPagesThen32)
-{
-    testRepeatAllocFree(static_cast<int>(pageSize() * 2), 32, 0);
-}
-
-TEST_F(MetaAllocatorTest, RepeatAllocFree32ThenTwoPages)
-{
-    testRepeatAllocFree(32, static_cast<int>(pageSize() * 2), 0);
-}
-
-TEST_F(MetaAllocatorTest, RepeatAllocFreePageThenTwoPages)
-{
-    testRepeatAllocFree(static_cast<int>(pageSize()), static_cast<int>(pageSize() * 2), 0);
-}
-
-TEST_F(MetaAllocatorTest, RepeatAllocFreeTwoPagesThenPage)
-{
-    testRepeatAllocFree(static_cast<int>(pageSize() * 2), static_cast<int>(pageSize()), 0);
-}
-
-TEST_F(MetaAllocatorTest, SimpleFullCoalesce32Plus32Then128)
-{
-    testSimpleFullCoalesce(32, 32, 128);
-}
-
-TEST_F(MetaAllocatorTest, SimpleFullCoalesce32Plus64Then128)
-{
-    testSimpleFullCoalesce(32, 64, 128);
-}
-
-TEST_F(MetaAllocatorTest, SimpleFullCoalesce64Plus32Then128)
-{
-    testSimpleFullCoalesce(64, 32, 128);
-}
-
-TEST_F(MetaAllocatorTest, SimpleFullCoalesce32PlusPageLess32ThenPage)
-{
-    testSimpleFullCoalesce(32, pageSize() - 32, pageSize());
-}
-
-TEST_F(MetaAllocatorTest, SimpleFullCoalesce32PlusPageLess32ThenTwoPages)
-{
-    testSimpleFullCoalesce(32, pageSize() - 32, pageSize() * 2);
-}
-
-TEST_F(MetaAllocatorTest, SimpleFullCoalescePagePlus32ThenTwoPages)
-{
-    testSimpleFullCoalesce(pageSize(), 32, pageSize() * 2);
-}
-
-TEST_F(MetaAllocatorTest, SimpleFullCoalescePagePlusPageThenTwoPages)
-{
-    testSimpleFullCoalesce(pageSize(), pageSize(), pageSize() * 2);
-}
-
-TEST_F(MetaAllocatorTest, FIFOAllocFillAtEnd32Twice)
-{
-    testFIFOAlloc(FillAtEnd, 32, 32, 0);
-}
-
-TEST_F(MetaAllocatorTest, FIFOAllocFillAtEnd32Thrice)
-{
-    testFIFOAlloc(FillAtEnd, 32, 32, 32, 0);
-}
-
-TEST_F(MetaAllocatorTest, FIFOAllocFillAtEnd32FourTimes)
-{
-    testFIFOAlloc(FillAtEnd, 32, 32, 32, 32, 0);
-}
-
-TEST_F(MetaAllocatorTest, FIFOAllocFillAtEndPageLess32Then32ThenPageLess64Then64)
-{
-    testFIFOAlloc(FillAtEnd, static_cast<int>(pageSize() - 32), 32, static_cast<int>(pageSize() - 64), 64, 0);
-}
-
-TEST_F(MetaAllocatorTest, FIFOAllocEagerFill32Twice)
-{
-    testFIFOAlloc(EagerFill, 32, 32, 0);
-}
-
-TEST_F(MetaAllocatorTest, FIFOAllocEagerFill32Thrice)
-{
-    testFIFOAlloc(EagerFill, 32, 32, 32, 0);
-}
-
-TEST_F(MetaAllocatorTest, FIFOAllocEagerFill32FourTimes)
-{
-    testFIFOAlloc(EagerFill, 32, 32, 32, 32, 0);
-}
-
-TEST_F(MetaAllocatorTest, FIFOAllocEagerFillPageLess32Then32ThenPageLess64Then64)
-{
-    testFIFOAlloc(EagerFill, static_cast<int>(pageSize() - 32), 32, static_cast<int>(pageSize() - 64), 64, 0);
-}
-
-TEST_F(MetaAllocatorTest, FillHeap32)
-{
-    testFillHeap(32, defaultPagesInHeap * pageSize() / 32);
-}
-
-TEST_F(MetaAllocatorTest, FillHeapPage)
-{
-    testFillHeap(pageSize(), defaultPagesInHeap);
-}
-
-TEST_F(MetaAllocatorTest, FillHeapTwoPages)
-{
-    testFillHeap(pageSize() * 2, defaultPagesInHeap / 2);
-}
-
-TEST_F(MetaAllocatorTest, RightAllocation32ThenPageThen32ThenPage)
-{
-    testRightAllocation(32, pageSize(), 32, pageSize());
-}
-
-TEST_F(MetaAllocatorTest, RightAllocationQuarterPageThenPageThenQuarterPageThenPage)
-{
-    testRightAllocation(pageSize() / 4, pageSize(), pageSize() / 4, pageSize());
-}
-
-TEST_F(MetaAllocatorTest, BestFit64Plus64Thrice)
-{
-    testBestFit(64, 64, 3, RunSanityCheck);
-}
-
-TEST_F(MetaAllocatorTest, BestFit64Plus64TenTimes)
-{
-    testBestFit(64, 64, 10, DontRunSanityCheck);
-}
-
-TEST_F(MetaAllocatorTest, BestFit64Plus64HundredTimes)
-{
-    testBestFit(64, 64, 100, DontRunSanityCheck);
-}
-
-TEST_F(MetaAllocatorTest, BestFit96Plus64Thrice)
-{
-    testBestFit(96, 64, 3, RunSanityCheck);
-}
-
-TEST_F(MetaAllocatorTest, BestFit96Plus64TenTimes)
-{
-    testBestFit(96, 64, 10, DontRunSanityCheck);
-}
-
-TEST_F(MetaAllocatorTest, BestFit96Plus64HundredTimes)
-{
-    testBestFit(96, 64, 100, DontRunSanityCheck);
-}
-
-TEST_F(MetaAllocatorTest, BestFit96Plus96Thrice)
-{
-    testBestFit(96, 96, 3, RunSanityCheck);
-}
-
-TEST_F(MetaAllocatorTest, BestFit96Plus96TenTimes)
-{
-    testBestFit(96, 96, 10, DontRunSanityCheck);
-}
-
-TEST_F(MetaAllocatorTest, BestFit96Plus96EightyTimes)
-{
-    testBestFit(96, 96, 80, DontRunSanityCheck);
-}
-
-TEST_F(MetaAllocatorTest, Shrink64To32)
-{
-    testShrink(64, 32);
-}
-
-TEST_F(MetaAllocatorTest, ShrinkPageTo32)
-{
-    testShrink(pageSize(), 32);
-}
-
-TEST_F(MetaAllocatorTest, ShrinkPageToPageLess32)
-{
-    testShrink(pageSize(), pageSize() - 32);
-}
-
-TEST_F(MetaAllocatorTest, ShrinkTwoPagesTo32)
-{
-    testShrink(pageSize() * 2, 32);
-}
-
-TEST_F(MetaAllocatorTest, ShrinkTwoPagesToPagePlus32)
-{
-    testShrink(pageSize() * 2, pageSize() + 32);
-}
-
-TEST_F(MetaAllocatorTest, ShrinkTwoPagesToPage)
-{
-    testShrink(pageSize() * 2, pageSize());
-}
-
-TEST_F(MetaAllocatorTest, ShrinkTwoPagesToPageLess32)
-{
-    testShrink(pageSize() * 2, pageSize() - 32);
-}
-
-TEST_F(MetaAllocatorTest, ShrinkTwoPagesToTwoPagesLess32)
-{
-    testShrink(pageSize() * 2, pageSize() * 2 - 32);
-}
-
-TEST_F(MetaAllocatorTest, DemandAllocCoalescePageThenDoubleHeap)
-{
-    testDemandAllocCoalesce(pageSize(), defaultPagesInHeap, defaultPagesInHeap * pageSize());
-}
-
-TEST_F(MetaAllocatorTest, DemandAllocCoalescePageThenTripleHeap)
-{
-    testDemandAllocCoalesce(pageSize(), defaultPagesInHeap * 2, defaultPagesInHeap * pageSize());
-}
-
-TEST_F(MetaAllocatorTest, DemandAllocDontCoalescePageThenDoubleHeap)
-{
-    testDemandAllocDontCoalesce(pageSize(), defaultPagesInHeap, defaultPagesInHeap * pageSize());
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WTF/RedBlackTree.cpp b/Tools/TestWebKitAPI/Tests/WTF/RedBlackTree.cpp
deleted file mode 100644
index 1a1c9fd..0000000
--- a/Tools/TestWebKitAPI/Tests/WTF/RedBlackTree.cpp
+++ /dev/null
@@ -1,322 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include <wtf/RedBlackTree.h>
-#include <wtf/Vector.h>
-
-using namespace WTF;
-
-namespace TestWebKitAPI {
-
-class TestNode : public RedBlackTree<TestNode, char>::Node {
-public:
-    TestNode(char key, unsigned value)
-        : m_key(key)
-        , m_value(value)
-    {
-    }
-
-    char key()
-    {
-        return m_key;
-    }
-
-    char m_key;
-    unsigned m_value;
-};
-
-class RedBlackTreeTest : public testing::Test {
-public:
-    unsigned m_counter;
-    
-    virtual void SetUp()
-    {
-        m_counter = 0;
-    }
-    
-    virtual void TearDown()
-    {
-    }
-    
-    struct Pair {
-        char key;
-        unsigned value;
-        
-        Pair() { }
-        
-        Pair(char key, unsigned value)
-            : key(key)
-            , value(value)
-        {
-        }
-        
-        bool operator==(const Pair& other) const
-        {
-            return key == other.key;
-        }
-        
-        bool operator<(const Pair& other) const
-        {
-            return key < other.key;
-        }
-    };
-    
-    typedef Vector<Pair, 16> PairVector;
-    
-    PairVector findExact(PairVector& asVector, char key)
-    {
-        PairVector result;
-        
-        for (size_t index = 0; index < asVector.size(); ++index) {
-            if (asVector.at(index).key == key)
-                result.append(asVector.at(index));
-        }
-        
-        std::sort(result.begin(), result.end());
-        
-        return result;
-    }
-    
-    void remove(PairVector& asVector, size_t index)
-    {
-        asVector.at(index) = asVector.last();
-        asVector.removeLast();
-    }
-    
-    PairVector findLeastGreaterThanOrEqual(PairVector& asVector, char key)
-    {
-        char bestKey = 0; // assignment to make gcc happy
-        bool foundKey = false;
-        
-        for (size_t index = 0; index < asVector.size(); ++index) {
-            if (asVector.at(index).key >= key) {
-                if (asVector.at(index).key < bestKey || !foundKey) {
-                    foundKey = true;
-                    bestKey = asVector.at(index).key;
-                }
-            }
-        }
-        
-        PairVector result;
-        
-        if (!foundKey)
-            return result;
-        
-        return findExact(asVector, bestKey);
-    }
-    
-    void assertFoundAndRemove(PairVector& asVector, char key, unsigned value)
-    {
-            bool found = false;
-            size_t foundIndex = 0; // make compilers happy
-            
-            for (size_t index = 0; index < asVector.size(); ++index) {
-                if (asVector.at(index).key == key
-                    && asVector.at(index).value == value) {
-                    EXPECT_TRUE(!found);
-                    
-                    found = true;
-                    foundIndex = index;
-                }
-            }
-            
-            EXPECT_TRUE(found);
-            
-            remove(asVector, foundIndex);
-    }
-    
-    // This deliberately passes a copy of the vector.
-    void assertEqual(RedBlackTree<TestNode, char>& asTree, PairVector asVector)
-    {
-        for (TestNode* current = asTree.first(); current; current = current->successor())
-            assertFoundAndRemove(asVector, current->m_key, current->m_value);
-    }
-    
-    void assertSameValuesForKey(RedBlackTree<TestNode, char>& asTree, TestNode* node, PairVector foundValues, char key)
-    {
-        if (node) {
-            EXPECT_EQ(node->m_key, key);
-            
-            TestNode* prevNode = node;
-            do {
-                node = prevNode;
-                prevNode = prevNode->predecessor();
-            } while (prevNode && prevNode->m_key == key);
-            
-            EXPECT_EQ(node->m_key, key);
-            EXPECT_TRUE(!prevNode || prevNode->m_key < key);
-            
-            do {
-                assertFoundAndRemove(foundValues, node->m_key, node->m_value);
-                
-                node = node->successor();
-                EXPECT_TRUE(!node || node->m_key >= key);
-            } while (node && node->m_key == key);
-        }
-        
-        EXPECT_TRUE(foundValues.isEmpty());
-    }
-    
-    // The control string is a null-terminated list of commands. Each
-    // command is two characters, with the first identifying the operation
-    // and the second giving a key. The commands are:
-    //  +x  Add x
-    //  *x  Find all elements equal to x
-    //  @x  Find all elements that have the smallest key that is greater than or equal to x
-    //  !x  Remove all elements equal to x
-    void testDriver(const char* controlString)
-    {
-        PairVector asVector;
-        RedBlackTree<TestNode, char> asTree;
-        
-        for (const char* current = controlString; *current; current += 2) {
-            char command = current[0];
-            char key = current[1];
-            unsigned value = ++m_counter;
-            
-            ASSERT(command);
-            ASSERT(key);
-            
-            switch (command) {
-            case '+': {
-                TestNode* node = new TestNode(key, value);
-                asTree.insert(node);
-                asVector.append(Pair(key, value));
-                break;
-            }
-                
-            case '*': {
-                TestNode* node = asTree.findExact(key);
-                if (node)
-                    EXPECT_EQ(node->m_key, key);
-                assertSameValuesForKey(asTree, node, findExact(asVector, key), key);
-                break;
-            }
-
-            case '@': {
-                TestNode* node = asTree.findLeastGreaterThanOrEqual(key);
-                if (node) {
-                    EXPECT_TRUE(node->m_key >= key);
-                    assertSameValuesForKey(asTree, node, findLeastGreaterThanOrEqual(asVector, key), node->m_key);
-                } else
-                    EXPECT_TRUE(findLeastGreaterThanOrEqual(asVector, key).isEmpty());
-                break;
-            }
-                
-            case '!': {
-                while (true) {
-                    TestNode* node = asTree.remove(key);
-                    if (node) {
-                        EXPECT_EQ(node->m_key, key);
-                        assertFoundAndRemove(asVector, node->m_key, node->m_value);
-                    } else {
-                        EXPECT_TRUE(findExact(asVector, key).isEmpty());
-                        break;
-                    }
-                }
-                break;
-            }
-                
-            default:
-                ASSERT_NOT_REACHED();
-                break;
-            }
-            
-            EXPECT_EQ(asTree.size(), asVector.size());
-            assertEqual(asTree, asVector);
-        }
-    }
-};
-
-TEST_F(RedBlackTreeTest, Empty)
-{
-    testDriver("");
-}
-
-TEST_F(RedBlackTreeTest, EmptyGetFindRemove)
-{
-    testDriver("*x@y!z");
-}
-
-TEST_F(RedBlackTreeTest, SingleAdd)
-{
-    testDriver("+a");
-}
-
-TEST_F(RedBlackTreeTest, SingleAddGetFindRemoveNotFound)
-{
-    testDriver("+a*x@y!z");
-}
-
-TEST_F(RedBlackTreeTest, SingleAddGetFindRemove)
-{
-    testDriver("+a*a@a!a");
-}
-
-TEST_F(RedBlackTreeTest, TwoAdds)
-{
-    testDriver("+a+b");
-}
-
-TEST_F(RedBlackTreeTest, ThreeAdds)
-{
-    testDriver("+a+b+c");
-}
-
-TEST_F(RedBlackTreeTest, FourAdds)
-{
-    testDriver("+a+b+c+d");
-}
-
-TEST_F(RedBlackTreeTest, LotsOfRepeatAdds)
-{
-    testDriver("+a+b+c+d+a+b+c+d+a+b+c+d+a+b+c+d+a+b+c+d+a+b+c+d+a+b+c+d+a+b+c+d+a+b+c+d+a+b+c+d+a+b+c+d+a+b+c+d");
-}
-
-TEST_F(RedBlackTreeTest, LotsOfRepeatAndUniqueAdds)
-{
-    testDriver("+a+b+c+d+a+b+c+d+a+b+c+d+a+b+c+d+a+b+c+d+a+b+c+d+a+b+c+d+a+b+c+d+a+b+c+d+a+b+c+d+a+b+c+d+a+b+c+d+e+f+g+h+i+j+k+l+m+n+o+p+q+r+s+t+u+v+x+y+z");
-}
-
-TEST_F(RedBlackTreeTest, LotsOfRepeatAndUniqueAddsAndGetsAndRemoves)
-{
-    testDriver("+a+b+c+d+a+b+c+d+a+b+c+d+a+b+c+d+a+b+c+d+a+b+c+d+a+b+c+d+a+b+c+d+a+b+c+d+a+b+c+d+a+b+c+d+a+b+c+d+e+f+g+h+i+j+k+l+m+n+o+p+q+r+s+t+u+v+x+y+z*a*b*c*d*e*f*g*h*i*j*k*l*m*n*o*p*q*r*s*t*u*v*w*x*y*z!a!b!c!d!e!f!g!h!i!j!k!l!m!n!o!p!q!r!s!t!u!v!w!x!y!z");
-}
-
-TEST_F(RedBlackTreeTest, SimpleBestFitSearch)
-{
-    testDriver("+d+d+m+w@d@m@w@a@g@q");
-}
-
-TEST_F(RedBlackTreeTest, BiggerBestFitSearch)
-{
-    testDriver("+d+d+d+d+d+d+d+d+d+d+f+f+f+f+f+f+f+h+h+i+j+k+l+m+o+p+q+r+z@a@b@c@d@e@f@g@h@i@j@k@l@m@n@o@p@q@r@s@t@u@v@w@x@y@z");
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WTF/SaturatedArithmeticOperations.cpp b/Tools/TestWebKitAPI/Tests/WTF/SaturatedArithmeticOperations.cpp
deleted file mode 100644
index e854e25..0000000
--- a/Tools/TestWebKitAPI/Tests/WTF/SaturatedArithmeticOperations.cpp
+++ /dev/null
@@ -1,105 +0,0 @@
-/*
- * Copyright (c) 2012, Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *     * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "limits.h"
-#include <wtf/SaturatedArithmetic.h>
-
-namespace TestWebKitAPI {
-
-TEST(WTF, SaturatedArithmeticAddition)
-{
-    ASSERT_EQ(saturatedAddition(0, 0), 0);
-    ASSERT_EQ(saturatedAddition(0, 1), 1);
-    ASSERT_EQ(saturatedAddition(0, 100), 100);
-    ASSERT_EQ(saturatedAddition(100, 50), 150);
-
-    ASSERT_EQ(saturatedAddition(0, -1), -1);
-    ASSERT_EQ(saturatedAddition(1, -1), 0);
-    ASSERT_EQ(saturatedAddition(100, -50), 50);
-    ASSERT_EQ(saturatedAddition(50, -100), -50);
-
-    ASSERT_EQ(saturatedAddition(INT_MAX - 1, 0), INT_MAX - 1);
-    ASSERT_EQ(saturatedAddition(INT_MAX - 1, 1), INT_MAX);
-    ASSERT_EQ(saturatedAddition(INT_MAX - 1, 2), INT_MAX);
-    ASSERT_EQ(saturatedAddition(0, INT_MAX - 1), INT_MAX - 1);
-    ASSERT_EQ(saturatedAddition(1, INT_MAX - 1), INT_MAX);
-    ASSERT_EQ(saturatedAddition(2, INT_MAX - 1), INT_MAX);
-    ASSERT_EQ(saturatedAddition(INT_MAX - 1, INT_MAX - 1), INT_MAX);
-    ASSERT_EQ(saturatedAddition(INT_MAX, INT_MAX), INT_MAX);
-
-    ASSERT_EQ(saturatedAddition(INT_MIN, 0), INT_MIN);
-    ASSERT_EQ(saturatedAddition(INT_MIN + 1, 0), INT_MIN + 1);
-    ASSERT_EQ(saturatedAddition(INT_MIN + 1, 1), INT_MIN + 2);
-    ASSERT_EQ(saturatedAddition(INT_MIN + 1, 2), INT_MIN + 3);
-    ASSERT_EQ(saturatedAddition(INT_MIN + 1, -1), INT_MIN);
-    ASSERT_EQ(saturatedAddition(INT_MIN + 1, -2), INT_MIN);
-    ASSERT_EQ(saturatedAddition(0, INT_MIN + 1), INT_MIN + 1);
-    ASSERT_EQ(saturatedAddition(-1, INT_MIN + 1), INT_MIN);
-    ASSERT_EQ(saturatedAddition(-2, INT_MIN + 1), INT_MIN);
-
-    ASSERT_EQ(saturatedAddition(INT_MAX / 2, 10000), INT_MAX / 2 + 10000);
-    ASSERT_EQ(saturatedAddition(INT_MAX / 2 + 1, INT_MAX / 2 + 1), INT_MAX);
-    ASSERT_EQ(saturatedAddition(INT_MIN, INT_MAX), -1);
-}
-
-TEST(WTF, SaturatedArithmeticSubtraction)
-{
-    ASSERT_EQ(saturatedSubtraction(0, 0), 0);
-    ASSERT_EQ(saturatedSubtraction(0, 1), -1);
-    ASSERT_EQ(saturatedSubtraction(0, 100), -100);
-    ASSERT_EQ(saturatedSubtraction(100, 50), 50);
-    
-    ASSERT_EQ(saturatedSubtraction(0, -1), 1);
-    ASSERT_EQ(saturatedSubtraction(1, -1), 2);
-    ASSERT_EQ(saturatedSubtraction(100, -50), 150);
-    ASSERT_EQ(saturatedSubtraction(50, -100), 150);
-
-    ASSERT_EQ(saturatedSubtraction(INT_MAX, 0), INT_MAX);
-    ASSERT_EQ(saturatedSubtraction(INT_MAX, 1), INT_MAX - 1);
-    ASSERT_EQ(saturatedSubtraction(INT_MAX - 1, 0), INT_MAX - 1);
-    ASSERT_EQ(saturatedSubtraction(INT_MAX - 1, -1), INT_MAX);
-    ASSERT_EQ(saturatedSubtraction(INT_MAX - 1, -2), INT_MAX);
-    ASSERT_EQ(saturatedSubtraction(0, INT_MAX - 1), -INT_MAX + 1);
-    ASSERT_EQ(saturatedSubtraction(-1, INT_MAX - 1), -INT_MAX);
-    ASSERT_EQ(saturatedSubtraction(-2, INT_MAX - 1), -INT_MAX - 1);
-    ASSERT_EQ(saturatedSubtraction(-3, INT_MAX - 1), -INT_MAX - 1);
-
-    ASSERT_EQ(saturatedSubtraction(INT_MIN, 0), INT_MIN);
-    ASSERT_EQ(saturatedSubtraction(INT_MIN + 1, 0), INT_MIN + 1);
-    ASSERT_EQ(saturatedSubtraction(INT_MIN + 1, 1), INT_MIN);
-    ASSERT_EQ(saturatedSubtraction(INT_MIN + 1, 2), INT_MIN);
-
-    ASSERT_EQ(saturatedSubtraction(INT_MIN, INT_MIN), 0);
-    ASSERT_EQ(saturatedSubtraction(INT_MAX, INT_MAX), 0);
-    ASSERT_EQ(saturatedSubtraction(INT_MAX, INT_MIN), INT_MAX);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WTF/StringBuilder.cpp b/Tools/TestWebKitAPI/Tests/WTF/StringBuilder.cpp
deleted file mode 100644
index d1b5b43..0000000
--- a/Tools/TestWebKitAPI/Tests/WTF/StringBuilder.cpp
+++ /dev/null
@@ -1,335 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- * Copyright (C) 2013 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *     * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "WTFStringUtilities.h"
-
-namespace TestWebKitAPI {
-
-static void expectBuilderContent(const String& expected, const StringBuilder& builder)
-{
-    // Not using builder.toString() or builder.toStringPreserveCapacity() because they all
-    // change internal state of builder.
-    EXPECT_EQ(expected, String(builder.characters(), builder.length()));
-}
-
-void expectEmpty(const StringBuilder& builder)
-{
-    EXPECT_EQ(0U, builder.length());
-    EXPECT_TRUE(builder.isEmpty());
-    EXPECT_EQ(0, builder.characters());
-}
-
-TEST(StringBuilderTest, DefaultConstructor)
-{
-    StringBuilder builder;
-    expectEmpty(builder);
-}
-
-TEST(StringBuilderTest, Append)
-{
-    StringBuilder builder;
-    builder.append(String("0123456789"));
-    expectBuilderContent("0123456789", builder);
-    builder.append("abcd");
-    expectBuilderContent("0123456789abcd", builder);
-    builder.append("efgh", 3);
-    expectBuilderContent("0123456789abcdefg", builder);
-    builder.append("");
-    expectBuilderContent("0123456789abcdefg", builder);
-    builder.append('#');
-    expectBuilderContent("0123456789abcdefg#", builder);
-
-    builder.toString(); // Test after reifyString().
-    StringBuilder builder1;
-    builder.append("", 0);
-    expectBuilderContent("0123456789abcdefg#", builder);
-    builder1.append(builder.characters(), builder.length());
-    builder1.append("XYZ");
-    builder.append(builder1.characters(), builder1.length());
-    expectBuilderContent("0123456789abcdefg#0123456789abcdefg#XYZ", builder);
-
-    StringBuilder builder2;
-    builder2.reserveCapacity(100);
-    builder2.append("xyz");
-    const UChar* characters = builder2.characters();
-    builder2.append("0123456789");
-    ASSERT_EQ(characters, builder2.characters());
-    builder2.toStringPreserveCapacity(); // Test after reifyString with buffer preserved.
-    builder2.append("abcd");
-    ASSERT_EQ(characters, builder2.characters());
-
-    // Test appending UChar32 characters to StringBuilder.
-    StringBuilder builderForUChar32Append;
-    UChar32 frakturAChar = 0x1D504;
-    builderForUChar32Append.append(frakturAChar); // The fraktur A is not in the BMP, so it's two UTF-16 code units long.
-    ASSERT_EQ(2U, builderForUChar32Append.length());
-    builderForUChar32Append.append(static_cast<UChar32>('A'));
-    ASSERT_EQ(3U, builderForUChar32Append.length());
-    const UChar resultArray[] = { U16_LEAD(frakturAChar), U16_TRAIL(frakturAChar), 'A' };
-    expectBuilderContent(String(resultArray, WTF_ARRAY_LENGTH(resultArray)), builderForUChar32Append);
-}
-
-TEST(StringBuilderTest, ToString)
-{
-    StringBuilder builder;
-    builder.append("0123456789");
-    String string = builder.toString();
-    ASSERT_EQ(String("0123456789"), string);
-    ASSERT_EQ(string.impl(), builder.toString().impl());
-
-    // Changing the StringBuilder should not affect the original result of toString().
-    builder.append("abcdefghijklmnopqrstuvwxyz");
-    ASSERT_EQ(String("0123456789"), string);
-
-    // Changing the StringBuilder should not affect the original result of toString() in case the capacity is not changed.
-    builder.reserveCapacity(200);
-    string = builder.toString();
-    ASSERT_EQ(String("0123456789abcdefghijklmnopqrstuvwxyz"), string);
-    builder.append("ABC");
-    ASSERT_EQ(String("0123456789abcdefghijklmnopqrstuvwxyz"), string);
-
-    // Changing the original result of toString() should not affect the content of the StringBuilder.
-    String string1 = builder.toString();
-    ASSERT_EQ(String("0123456789abcdefghijklmnopqrstuvwxyzABC"), string1);
-    string1.append("DEF");
-    ASSERT_EQ(String("0123456789abcdefghijklmnopqrstuvwxyzABC"), builder.toString());
-    ASSERT_EQ(String("0123456789abcdefghijklmnopqrstuvwxyzABCDEF"), string1);
-
-    // Resizing the StringBuilder should not affect the original result of toString().
-    string1 = builder.toString();
-    builder.resize(10);
-    builder.append("###");
-    ASSERT_EQ(String("0123456789abcdefghijklmnopqrstuvwxyzABC"), string1);
-}
-
-TEST(StringBuilderTest, ToStringPreserveCapacity)
-{
-    StringBuilder builder;
-    builder.append("0123456789");
-    unsigned capacity = builder.capacity();
-    String string = builder.toStringPreserveCapacity();
-    ASSERT_EQ(capacity, builder.capacity());
-    ASSERT_EQ(String("0123456789"), string);
-    ASSERT_EQ(string.impl(), builder.toStringPreserveCapacity().impl());
-    ASSERT_EQ(string.characters(), builder.characters());
-
-    // Changing the StringBuilder should not affect the original result of toStringPreserveCapacity().
-    builder.append("abcdefghijklmnopqrstuvwxyz");
-    ASSERT_EQ(String("0123456789"), string);
-
-    // Changing the StringBuilder should not affect the original result of toStringPreserveCapacity() in case the capacity is not changed.
-    builder.reserveCapacity(200);
-    capacity = builder.capacity();
-    string = builder.toStringPreserveCapacity();
-    ASSERT_EQ(capacity, builder.capacity());
-    ASSERT_EQ(string.characters(), builder.characters());
-    ASSERT_EQ(String("0123456789abcdefghijklmnopqrstuvwxyz"), string);
-    builder.append("ABC");
-    ASSERT_EQ(String("0123456789abcdefghijklmnopqrstuvwxyz"), string);
-
-    // Changing the original result of toStringPreserveCapacity() should not affect the content of the StringBuilder.
-    capacity = builder.capacity();
-    String string1 = builder.toStringPreserveCapacity();
-    ASSERT_EQ(capacity, builder.capacity());
-    ASSERT_EQ(string1.characters(), builder.characters());
-    ASSERT_EQ(String("0123456789abcdefghijklmnopqrstuvwxyzABC"), string1);
-    string1.append("DEF");
-    ASSERT_EQ(String("0123456789abcdefghijklmnopqrstuvwxyzABC"), builder.toStringPreserveCapacity());
-    ASSERT_EQ(String("0123456789abcdefghijklmnopqrstuvwxyzABCDEF"), string1);
-
-    // Resizing the StringBuilder should not affect the original result of toStringPreserveCapacity().
-    capacity = builder.capacity();
-    string1 = builder.toStringPreserveCapacity();
-    ASSERT_EQ(capacity, builder.capacity());
-    ASSERT_EQ(string.characters(), builder.characters());
-    builder.resize(10);
-    builder.append("###");
-    ASSERT_EQ(String("0123456789abcdefghijklmnopqrstuvwxyzABC"), string1);
-}
-
-TEST(StringBuilderTest, Clear)
-{
-    StringBuilder builder;
-    builder.append("0123456789");
-    builder.clear();
-    expectEmpty(builder);
-}
-
-TEST(StringBuilderTest, Array)
-{
-    StringBuilder builder;
-    builder.append("0123456789");
-    EXPECT_EQ('0', static_cast<char>(builder[0]));
-    EXPECT_EQ('9', static_cast<char>(builder[9]));
-    builder.toString(); // Test after reifyString().
-    EXPECT_EQ('0', static_cast<char>(builder[0]));
-    EXPECT_EQ('9', static_cast<char>(builder[9]));
-}
-
-TEST(StringBuilderTest, Resize)
-{
-    StringBuilder builder;
-    builder.append("0123456789");
-    builder.resize(10);
-    EXPECT_EQ(10U, builder.length());
-    expectBuilderContent("0123456789", builder);
-    builder.resize(8);
-    EXPECT_EQ(8U, builder.length());
-    expectBuilderContent("01234567", builder);
-
-    builder.toString();
-    builder.resize(7);
-    EXPECT_EQ(7U, builder.length());
-    expectBuilderContent("0123456", builder);
-    builder.resize(0);
-    expectEmpty(builder);
-}
-
-TEST(StringBuilderTest, Equal)
-{
-    StringBuilder builder1;
-    StringBuilder builder2;
-    ASSERT_TRUE(builder1 == builder2);
-    ASSERT_TRUE(equal(builder1, static_cast<LChar*>(0), 0));
-    ASSERT_TRUE(builder1 == String());
-    ASSERT_TRUE(String() == builder1);
-    ASSERT_TRUE(builder1 != String("abc"));
-
-    builder1.append("123");
-    builder1.reserveCapacity(32);
-    builder2.append("123");
-    builder1.reserveCapacity(64);
-    ASSERT_TRUE(builder1 == builder2);
-    ASSERT_TRUE(builder1 == String("123"));
-    ASSERT_TRUE(String("123") == builder1);
-
-    builder2.append("456");
-    ASSERT_TRUE(builder1 != builder2);
-    ASSERT_TRUE(builder2 != builder1);
-    ASSERT_TRUE(String("123") != builder2);
-    ASSERT_TRUE(builder2 != String("123"));
-    builder2.toString(); // Test after reifyString().
-    ASSERT_TRUE(builder1 != builder2);
-
-    builder2.resize(3);
-    ASSERT_TRUE(builder1 == builder2);
-
-    builder1.toString(); // Test after reifyString().
-    ASSERT_TRUE(builder1 == builder2);
-}
-
-TEST(StringBuilderTest, CanShrink)
-{
-    StringBuilder builder;
-    builder.reserveCapacity(256);
-    ASSERT_TRUE(builder.canShrink());
-    for (int i = 0; i < 256; i++)
-        builder.append('x');
-    ASSERT_EQ(builder.length(), builder.capacity());
-    ASSERT_FALSE(builder.canShrink());
-}
-
-TEST(StringBuilderTest, ToAtomicString)
-{
-    StringBuilder builder;
-    builder.append("123");
-    AtomicString atomicString = builder.toAtomicString();
-    ASSERT_EQ(String("123"), atomicString);
-
-    builder.reserveCapacity(256);
-    ASSERT_TRUE(builder.canShrink());
-    for (int i = builder.length(); i < 128; i++)
-        builder.append('x');
-    AtomicString atomicString1 = builder.toAtomicString();
-    ASSERT_EQ(128u, atomicString1.length());
-    ASSERT_EQ('x', atomicString1[127]);
-
-    // Later change of builder should not affect the atomic string.
-    for (int i = builder.length(); i < 256; i++)
-        builder.append('x');
-    ASSERT_EQ(128u, atomicString1.length());
-
-    ASSERT_FALSE(builder.canShrink());
-    String string = builder.toString();
-    AtomicString atomicString2 = builder.toAtomicString();
-    // They should share the same StringImpl.
-    ASSERT_EQ(atomicString2.impl(), string.impl());
-}
-
-TEST(StringBuilderTest, ToAtomicStringOnEmpty)
-{
-    { // Default constructed.
-        StringBuilder builder;
-        AtomicString atomicString = builder.toAtomicString();
-        ASSERT_EQ(emptyAtom, atomicString);
-    }
-    { // With capacity.
-        StringBuilder builder;
-        builder.reserveCapacity(64);
-        AtomicString atomicString = builder.toAtomicString();
-        ASSERT_EQ(emptyAtom, atomicString);
-    }
-    { // AtomicString constructed from a null string.
-        StringBuilder builder;
-        builder.append(String());
-        AtomicString atomicString = builder.toAtomicString();
-        ASSERT_EQ(emptyAtom, atomicString);
-    }
-    { // AtomicString constructed from an empty string.
-        StringBuilder builder;
-        builder.append(emptyString());
-        AtomicString atomicString = builder.toAtomicString();
-        ASSERT_EQ(emptyAtom, atomicString);
-    }
-    { // AtomicString constructed from an empty StringBuilder.
-        StringBuilder builder;
-        StringBuilder emptyBuilder;
-        builder.append(emptyBuilder);
-        AtomicString atomicString = builder.toAtomicString();
-        ASSERT_EQ(emptyAtom, atomicString);
-    }
-    { // AtomicString constructed from an empty char* string.
-        StringBuilder builder;
-        builder.append("", 0);
-        AtomicString atomicString = builder.toAtomicString();
-        ASSERT_EQ(emptyAtom, atomicString);
-    }
-    { // Cleared StringBuilder.
-        StringBuilder builder;
-        builder.appendLiteral("WebKit");
-        builder.clear();
-        AtomicString atomicString = builder.toAtomicString();
-        ASSERT_EQ(emptyAtom, atomicString);
-    }
-}
-
-} // namespace
diff --git a/Tools/TestWebKitAPI/Tests/WTF/StringHasher.cpp b/Tools/TestWebKitAPI/Tests/WTF/StringHasher.cpp
deleted file mode 100644
index a4d223c..0000000
--- a/Tools/TestWebKitAPI/Tests/WTF/StringHasher.cpp
+++ /dev/null
@@ -1,444 +0,0 @@
-/*
- * Copyright (C) 2013 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include <wtf/StringHasher.h>
-
-namespace TestWebKitAPI {
-
-static const LChar nullLChars[2] = { 0, 0 };
-static const UChar nullUChars[2] = { 0, 0 };
-
-static const unsigned emptyStringHash = 0x4EC889EU;
-static const unsigned singleNullCharacterHash = 0x3D3ABF44U;
-
-static const LChar testALChars[6] = { 0x41, 0x95, 0xFF, 0x50, 0x01, 0 };
-static const UChar testAUChars[6] = { 0x41, 0x95, 0xFF, 0x50, 0x01, 0 };
-static const UChar testBUChars[6] = { 0x41, 0x95, 0xFFFF, 0x1080, 0x01, 0 };
-
-static const unsigned testAHash1 = 0xEA32B004;
-static const unsigned testAHash2 = 0x93F0F71E;
-static const unsigned testAHash3 = 0xCB609EB1;
-static const unsigned testAHash4 = 0x7984A706;
-static const unsigned testAHash5 = 0x0427561F;
-
-static const unsigned testBHash1 = 0xEA32B004;
-static const unsigned testBHash2 = 0x93F0F71E;
-static const unsigned testBHash3 = 0x59EB1B2C;
-static const unsigned testBHash4 = 0xA7BCCC0A;
-static const unsigned testBHash5 = 0x79201649;
-
-TEST(WTF, StringHasher)
-{
-    StringHasher hasher;
-
-    // The initial state of the hasher.
-    ASSERT_EQ(emptyStringHash, hasher.hash());
-    ASSERT_EQ(emptyStringHash & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-}
-
-TEST(WTF, StringHasher_addCharacter)
-{
-    StringHasher hasher;
-
-    // Hashing a single character.
-    hasher = StringHasher();
-    hasher.addCharacter(0);
-    ASSERT_EQ(singleNullCharacterHash, hasher.hash());
-    ASSERT_EQ(singleNullCharacterHash & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-
-    // Hashing five characters, checking the intermediate state after each is added.
-    hasher = StringHasher();
-    hasher.addCharacter(testAUChars[0]);
-    ASSERT_EQ(testAHash1, hasher.hash());
-    ASSERT_EQ(testAHash1 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharacter(testAUChars[1]);
-    ASSERT_EQ(testAHash2, hasher.hash());
-    ASSERT_EQ(testAHash2 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharacter(testAUChars[2]);
-    ASSERT_EQ(testAHash3, hasher.hash());
-    ASSERT_EQ(testAHash3 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharacter(testAUChars[3]);
-    ASSERT_EQ(testAHash4, hasher.hash());
-    ASSERT_EQ(testAHash4 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharacter(testAUChars[4]);
-    ASSERT_EQ(testAHash5, hasher.hash());
-    ASSERT_EQ(testAHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-
-    // Hashing a second set of five characters, including non-Latin-1 characters.
-    hasher = StringHasher();
-    hasher.addCharacter(testBUChars[0]);
-    ASSERT_EQ(testBHash1, hasher.hash());
-    ASSERT_EQ(testBHash1 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharacter(testBUChars[1]);
-    ASSERT_EQ(testBHash2, hasher.hash());
-    ASSERT_EQ(testBHash2 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharacter(testBUChars[2]);
-    ASSERT_EQ(testBHash3, hasher.hash());
-    ASSERT_EQ(testBHash3 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharacter(testBUChars[3]);
-    ASSERT_EQ(testBHash4, hasher.hash());
-    ASSERT_EQ(testBHash4 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharacter(testBUChars[4]);
-    ASSERT_EQ(testBHash5, hasher.hash());
-    ASSERT_EQ(testBHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-}
-
-TEST(WTF, StringHasher_addCharacters)
-{
-    StringHasher hasher;
-
-    // Hashing zero characters.
-    hasher = StringHasher();
-    hasher.addCharacters(static_cast<LChar*>(0), 0);
-    ASSERT_EQ(emptyStringHash, hasher.hash());
-    ASSERT_EQ(emptyStringHash & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharacters(nullLChars, 0);
-    ASSERT_EQ(emptyStringHash, hasher.hash());
-    ASSERT_EQ(emptyStringHash & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharacters(nullLChars);
-    ASSERT_EQ(emptyStringHash, hasher.hash());
-    ASSERT_EQ(emptyStringHash & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharacters(static_cast<UChar*>(0), 0);
-    ASSERT_EQ(emptyStringHash, hasher.hash());
-    ASSERT_EQ(emptyStringHash & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharacters(nullUChars, 0);
-    ASSERT_EQ(emptyStringHash, hasher.hash());
-    ASSERT_EQ(emptyStringHash & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharacters(nullUChars);
-    ASSERT_EQ(emptyStringHash, hasher.hash());
-    ASSERT_EQ(emptyStringHash & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-
-    // Hashing one character.
-    hasher = StringHasher();
-    hasher.addCharacters(nullLChars, 1);
-    ASSERT_EQ(singleNullCharacterHash, hasher.hash());
-    ASSERT_EQ(singleNullCharacterHash & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharacters(nullUChars, 1);
-    ASSERT_EQ(singleNullCharacterHash, hasher.hash());
-    ASSERT_EQ(singleNullCharacterHash & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-
-    // Hashing five characters, all at once.
-    hasher = StringHasher();
-    hasher.addCharacters(testALChars, 5);
-    ASSERT_EQ(testAHash5, hasher.hash());
-    ASSERT_EQ(testAHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharacters(testALChars);
-    ASSERT_EQ(testAHash5, hasher.hash());
-    ASSERT_EQ(testAHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharacters(testAUChars, 5);
-    ASSERT_EQ(testAHash5, hasher.hash());
-    ASSERT_EQ(testAHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharacters(testAUChars);
-    ASSERT_EQ(testAHash5, hasher.hash());
-    ASSERT_EQ(testAHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharacters(testBUChars, 5);
-    ASSERT_EQ(testBHash5, hasher.hash());
-    ASSERT_EQ(testBHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharacters(testBUChars);
-    ASSERT_EQ(testBHash5, hasher.hash());
-    ASSERT_EQ(testBHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-
-    // Hashing five characters, in groups of two, then the last one.
-    hasher = StringHasher();
-    hasher.addCharacters(testALChars, 2);
-    ASSERT_EQ(testAHash2, hasher.hash());
-    ASSERT_EQ(testAHash2 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharacters(testALChars + 2, 2);
-    ASSERT_EQ(testAHash4, hasher.hash());
-    ASSERT_EQ(testAHash4 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharacters(testALChars + 4, 1);
-    ASSERT_EQ(testAHash5, hasher.hash());
-    ASSERT_EQ(testAHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharacters(testALChars, 2);
-    hasher.addCharacters(testALChars + 2, 2);
-    hasher.addCharacters(testALChars + 4);
-    ASSERT_EQ(testAHash5, hasher.hash());
-    ASSERT_EQ(testAHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharacters(testAUChars, 2);
-    ASSERT_EQ(testAHash2, hasher.hash());
-    ASSERT_EQ(testAHash2 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharacters(testAUChars + 2, 2);
-    ASSERT_EQ(testAHash4, hasher.hash());
-    ASSERT_EQ(testAHash4 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharacters(testAUChars + 4, 1);
-    ASSERT_EQ(testAHash5, hasher.hash());
-    ASSERT_EQ(testAHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharacters(testAUChars, 2);
-    hasher.addCharacters(testAUChars + 2, 2);
-    hasher.addCharacters(testAUChars + 4);
-    ASSERT_EQ(testAHash5, hasher.hash());
-    ASSERT_EQ(testAHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharacters(testBUChars, 2);
-    ASSERT_EQ(testBHash2, hasher.hash());
-    ASSERT_EQ(testBHash2 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharacters(testBUChars + 2, 2);
-    ASSERT_EQ(testBHash4, hasher.hash());
-    ASSERT_EQ(testBHash4 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharacters(testBUChars + 4, 1);
-    ASSERT_EQ(testBHash5, hasher.hash());
-    ASSERT_EQ(testBHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharacters(testBUChars, 2);
-    hasher.addCharacters(testBUChars + 2, 2);
-    hasher.addCharacters(testBUChars + 4);
-    ASSERT_EQ(testBHash5, hasher.hash());
-    ASSERT_EQ(testBHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-
-    // Hashing five characters, the first three, then the last two.
-    hasher = StringHasher();
-    hasher.addCharacters(testALChars, 3);
-    ASSERT_EQ(testAHash3, hasher.hash());
-    ASSERT_EQ(testAHash3 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharacters(testALChars + 3, 2);
-    ASSERT_EQ(testAHash5, hasher.hash());
-    ASSERT_EQ(testAHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharacters(testALChars, 3);
-    ASSERT_EQ(testAHash3, hasher.hash());
-    ASSERT_EQ(testAHash3 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharacters(testALChars + 3);
-    ASSERT_EQ(testAHash5, hasher.hash());
-    ASSERT_EQ(testAHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharacters(testAUChars, 3);
-    ASSERT_EQ(testAHash3, hasher.hash());
-    ASSERT_EQ(testAHash3 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharacters(testAUChars + 3, 2);
-    ASSERT_EQ(testAHash5, hasher.hash());
-    ASSERT_EQ(testAHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharacters(testAUChars, 3);
-    ASSERT_EQ(testAHash3, hasher.hash());
-    ASSERT_EQ(testAHash3 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharacters(testAUChars + 3, 2);
-    ASSERT_EQ(testAHash5, hasher.hash());
-    ASSERT_EQ(testAHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharacters(testBUChars, 3);
-    ASSERT_EQ(testBHash3, hasher.hash());
-    ASSERT_EQ(testBHash3 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharacters(testBUChars + 3, 2);
-    ASSERT_EQ(testBHash5, hasher.hash());
-    ASSERT_EQ(testBHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharacters(testBUChars, 3);
-    hasher.addCharacters(testBUChars + 3);
-    ASSERT_EQ(testBHash5, hasher.hash());
-    ASSERT_EQ(testBHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-}
-
-TEST(WTF, StringHasher_addCharactersAssumingAligned)
-{
-    StringHasher hasher;
-
-    // Hashing zero characters.
-    hasher = StringHasher();
-    hasher.addCharactersAssumingAligned(static_cast<LChar*>(0), 0);
-    ASSERT_EQ(emptyStringHash, hasher.hash());
-    ASSERT_EQ(emptyStringHash & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharactersAssumingAligned(nullLChars, 0);
-    ASSERT_EQ(emptyStringHash, hasher.hash());
-    ASSERT_EQ(emptyStringHash & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharactersAssumingAligned(static_cast<UChar*>(0), 0);
-    ASSERT_EQ(emptyStringHash, hasher.hash());
-    ASSERT_EQ(emptyStringHash & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharactersAssumingAligned(nullUChars, 0);
-    ASSERT_EQ(emptyStringHash, hasher.hash());
-    ASSERT_EQ(emptyStringHash & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharactersAssumingAligned(nullUChars);
-    ASSERT_EQ(emptyStringHash, hasher.hash());
-    ASSERT_EQ(emptyStringHash & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-
-    // Hashing one character.
-    hasher = StringHasher();
-    hasher.addCharactersAssumingAligned(nullLChars, 1);
-    ASSERT_EQ(singleNullCharacterHash, hasher.hash());
-    ASSERT_EQ(singleNullCharacterHash & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharactersAssumingAligned(nullUChars, 1);
-    ASSERT_EQ(singleNullCharacterHash, hasher.hash());
-    ASSERT_EQ(singleNullCharacterHash & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-
-    // Hashing five characters, all at once.
-    hasher = StringHasher();
-    hasher.addCharactersAssumingAligned(testALChars, 5);
-    ASSERT_EQ(testAHash5, hasher.hash());
-    ASSERT_EQ(testAHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharactersAssumingAligned(testALChars);
-    ASSERT_EQ(testAHash5, hasher.hash());
-    ASSERT_EQ(testAHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharactersAssumingAligned(testAUChars, 5);
-    ASSERT_EQ(testAHash5, hasher.hash());
-    ASSERT_EQ(testAHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharactersAssumingAligned(testAUChars);
-    ASSERT_EQ(testAHash5, hasher.hash());
-    ASSERT_EQ(testAHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharactersAssumingAligned(testBUChars, 5);
-    ASSERT_EQ(testBHash5, hasher.hash());
-    ASSERT_EQ(testBHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharactersAssumingAligned(testBUChars);
-    ASSERT_EQ(testBHash5, hasher.hash());
-    ASSERT_EQ(testBHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-
-    // Hashing five characters, in groups of two, then the last one.
-    hasher = StringHasher();
-    hasher.addCharactersAssumingAligned(testALChars, 2);
-    ASSERT_EQ(testAHash2, hasher.hash());
-    ASSERT_EQ(testAHash2 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharactersAssumingAligned(testALChars + 2, 2);
-    ASSERT_EQ(testAHash4, hasher.hash());
-    ASSERT_EQ(testAHash4 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharactersAssumingAligned(testALChars + 4, 1);
-    ASSERT_EQ(testAHash5, hasher.hash());
-    ASSERT_EQ(testAHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharactersAssumingAligned(testALChars, 2);
-    hasher.addCharactersAssumingAligned(testALChars + 2, 2);
-    hasher.addCharactersAssumingAligned(testALChars + 4);
-    ASSERT_EQ(testAHash5, hasher.hash());
-    ASSERT_EQ(testAHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharactersAssumingAligned(testAUChars, 2);
-    ASSERT_EQ(testAHash2, hasher.hash());
-    ASSERT_EQ(testAHash2 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharactersAssumingAligned(testAUChars + 2, 2);
-    ASSERT_EQ(testAHash4, hasher.hash());
-    ASSERT_EQ(testAHash4 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharactersAssumingAligned(testAUChars + 4, 1);
-    ASSERT_EQ(testAHash5, hasher.hash());
-    ASSERT_EQ(testAHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharactersAssumingAligned(testAUChars, 2);
-    hasher.addCharactersAssumingAligned(testAUChars + 2, 2);
-    hasher.addCharactersAssumingAligned(testAUChars + 4);
-    ASSERT_EQ(testAHash5, hasher.hash());
-    ASSERT_EQ(testAHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharactersAssumingAligned(testBUChars, 2);
-    ASSERT_EQ(testBHash2, hasher.hash());
-    ASSERT_EQ(testBHash2 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharactersAssumingAligned(testBUChars + 2, 2);
-    ASSERT_EQ(testBHash4, hasher.hash());
-    ASSERT_EQ(testBHash4 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharactersAssumingAligned(testBUChars + 4, 1);
-    ASSERT_EQ(testBHash5, hasher.hash());
-    ASSERT_EQ(testBHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher = StringHasher();
-    hasher.addCharactersAssumingAligned(testBUChars, 2);
-    hasher.addCharactersAssumingAligned(testBUChars + 2, 2);
-    hasher.addCharactersAssumingAligned(testBUChars + 4);
-    ASSERT_EQ(testBHash5, hasher.hash());
-    ASSERT_EQ(testBHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-
-    // Hashing five characters, first two characters one at a time,
-    // then two more, then the last one.
-    hasher = StringHasher();
-    hasher.addCharacter(testBUChars[0]);
-    ASSERT_EQ(testBHash1, hasher.hash());
-    ASSERT_EQ(testBHash1 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharacter(testBUChars[1]);
-    ASSERT_EQ(testBHash2, hasher.hash());
-    ASSERT_EQ(testBHash2 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharactersAssumingAligned(testBUChars[2], testBUChars[3]);
-    ASSERT_EQ(testBHash4, hasher.hash());
-    ASSERT_EQ(testBHash4 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-    hasher.addCharactersAssumingAligned(testBUChars + 4);
-    ASSERT_EQ(testBHash5, hasher.hash());
-    ASSERT_EQ(testBHash5 & 0xFFFFFF, hasher.hashWithTop8BitsMasked());
-}
-
-TEST(WTF, StringHasher_computeHash)
-{
-    ASSERT_EQ(emptyStringHash, StringHasher::computeHash(static_cast<LChar*>(0), 0));
-    ASSERT_EQ(emptyStringHash, StringHasher::computeHash(nullLChars, 0));
-    ASSERT_EQ(emptyStringHash, StringHasher::computeHash(static_cast<UChar*>(0), 0));
-    ASSERT_EQ(emptyStringHash, StringHasher::computeHash(nullUChars, 0));
-
-    ASSERT_EQ(singleNullCharacterHash, StringHasher::computeHash(nullLChars, 1));
-    ASSERT_EQ(singleNullCharacterHash, StringHasher::computeHash(nullUChars, 1));
-
-    ASSERT_EQ(testAHash5, StringHasher::computeHash(testALChars, 5));
-    ASSERT_EQ(testAHash5, StringHasher::computeHash(testAUChars, 5));
-    ASSERT_EQ(testBHash5, StringHasher::computeHash(testBUChars, 5));
-}
-
-TEST(WTF, StringHasher_computeHashAndMaskTop8Bits)
-{
-    ASSERT_EQ(emptyStringHash & 0xFFFFFF, StringHasher::computeHashAndMaskTop8Bits(static_cast<LChar*>(0), 0));
-    ASSERT_EQ(emptyStringHash & 0xFFFFFF, StringHasher::computeHashAndMaskTop8Bits(nullLChars, 0));
-    ASSERT_EQ(emptyStringHash & 0xFFFFFF, StringHasher::computeHashAndMaskTop8Bits(static_cast<UChar*>(0), 0));
-    ASSERT_EQ(emptyStringHash & 0xFFFFFF, StringHasher::computeHashAndMaskTop8Bits(nullUChars, 0));
-
-    ASSERT_EQ(singleNullCharacterHash & 0xFFFFFF, StringHasher::computeHashAndMaskTop8Bits(nullLChars, 1));
-    ASSERT_EQ(singleNullCharacterHash & 0xFFFFFF, StringHasher::computeHashAndMaskTop8Bits(nullUChars, 1));
-
-    ASSERT_EQ(testAHash5 & 0xFFFFFF, StringHasher::computeHashAndMaskTop8Bits(testALChars, 5));
-    ASSERT_EQ(testAHash5 & 0xFFFFFF, StringHasher::computeHashAndMaskTop8Bits(testAUChars, 5));
-    ASSERT_EQ(testBHash5 & 0xFFFFFF, StringHasher::computeHashAndMaskTop8Bits(testBUChars, 5));
-}
-
-TEST(WTF, StringHasher_hashMemory)
-{
-    ASSERT_EQ(emptyStringHash & 0xFFFFFF, StringHasher::hashMemory(0, 0));
-    ASSERT_EQ(emptyStringHash & 0xFFFFFF, StringHasher::hashMemory(nullUChars, 0));
-    ASSERT_EQ(emptyStringHash & 0xFFFFFF, StringHasher::hashMemory<0>(0));
-    ASSERT_EQ(emptyStringHash & 0xFFFFFF, StringHasher::hashMemory<0>(nullUChars));
-
-    ASSERT_EQ(singleNullCharacterHash & 0xFFFFFF, StringHasher::hashMemory(nullUChars, 2));
-    ASSERT_EQ(singleNullCharacterHash & 0xFFFFFF, StringHasher::hashMemory<2>(nullUChars));
-
-    ASSERT_EQ(testAHash5 & 0xFFFFFF, StringHasher::hashMemory(testAUChars, 10));
-    ASSERT_EQ(testAHash5 & 0xFFFFFF, StringHasher::hashMemory<10>(testAUChars));
-    ASSERT_EQ(testBHash5 & 0xFFFFFF, StringHasher::hashMemory(testBUChars, 10));
-    ASSERT_EQ(testBHash5 & 0xFFFFFF, StringHasher::hashMemory<10>(testBUChars));
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WTF/StringImpl.cpp b/Tools/TestWebKitAPI/Tests/WTF/StringImpl.cpp
deleted file mode 100644
index 35d6484..0000000
--- a/Tools/TestWebKitAPI/Tests/WTF/StringImpl.cpp
+++ /dev/null
@@ -1,116 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include <wtf/text/StringImpl.h>
-#include <wtf/text/WTFString.h>
-
-namespace TestWebKitAPI {
-
-TEST(WTF, StringImplCreationFromLiteral)
-{
-    // Constructor using the template to determine the size.
-    RefPtr<StringImpl> stringWithTemplate = StringImpl::createFromLiteral("Template Literal");
-    ASSERT_EQ(strlen("Template Literal"), stringWithTemplate->length());
-    ASSERT_TRUE(equal(stringWithTemplate.get(), "Template Literal"));
-    ASSERT_TRUE(stringWithTemplate->is8Bit());
-    ASSERT_TRUE(stringWithTemplate->hasTerminatingNullCharacter());
-
-    // Constructor taking the size explicitely.
-    const char* programmaticStringData = "Explicit Size Literal";
-    RefPtr<StringImpl> programmaticString = StringImpl::createFromLiteral(programmaticStringData, strlen(programmaticStringData));
-    ASSERT_EQ(strlen(programmaticStringData), programmaticString->length());
-    ASSERT_TRUE(equal(programmaticString.get(), programmaticStringData));
-    ASSERT_EQ(programmaticStringData, reinterpret_cast<const char*>(programmaticString->characters8()));
-    ASSERT_TRUE(programmaticString->is8Bit());
-    ASSERT_TRUE(programmaticString->hasTerminatingNullCharacter());
-
-    // Constructor without explicit size.
-    const char* stringWithoutLengthLiteral = "No Size Literal";
-    RefPtr<StringImpl> programmaticStringNoLength = StringImpl::createFromLiteral(stringWithoutLengthLiteral);
-    ASSERT_EQ(strlen(stringWithoutLengthLiteral), programmaticStringNoLength->length());
-    ASSERT_TRUE(equal(programmaticStringNoLength.get(), stringWithoutLengthLiteral));
-    ASSERT_EQ(stringWithoutLengthLiteral, reinterpret_cast<const char*>(programmaticStringNoLength->characters8()));
-    ASSERT_TRUE(programmaticStringNoLength->is8Bit());
-    ASSERT_TRUE(programmaticStringNoLength->hasTerminatingNullCharacter());
-}
-
-TEST(WTF, StringImplFromLiteralLoop16BitConversion)
-{
-    RefPtr<StringImpl> controlString = StringImpl::create("Template Literal");
-    for (size_t i = 0; i < 10; ++i) {
-        RefPtr<StringImpl> string = StringImpl::createFromLiteral("Template Literal");
-
-        ASSERT_EQ(0, memcmp(controlString->characters(), string->characters(), controlString->length() * sizeof(UChar)));
-        ASSERT_TRUE(string->has16BitShadow());
-    }
-}
-
-TEST(WTF, StringImplReplaceWithLiteral)
-{
-    RefPtr<StringImpl> testStringImpl = StringImpl::createFromLiteral("1224");
-    ASSERT_TRUE(testStringImpl->is8Bit());
-
-    // Cases for 8Bit source.
-    testStringImpl = testStringImpl->replace('2', "", 0);
-    ASSERT_TRUE(equal(testStringImpl.get(), "14"));
-
-    testStringImpl = StringImpl::createFromLiteral("1224");
-    ASSERT_TRUE(testStringImpl->is8Bit());
-
-    testStringImpl = testStringImpl->replace('3', "NotFound", 8);
-    ASSERT_TRUE(equal(testStringImpl.get(), "1224"));
-
-    testStringImpl = testStringImpl->replace('2', "3", 1);
-    ASSERT_TRUE(equal(testStringImpl.get(), "1334"));
-
-    testStringImpl = StringImpl::createFromLiteral("1224");
-    ASSERT_TRUE(testStringImpl->is8Bit());
-    testStringImpl = testStringImpl->replace('2', "555", 3);
-    ASSERT_TRUE(equal(testStringImpl.get(), "15555554"));
-
-    // Cases for 16Bit source.
-    String testString = String::fromUTF8("résumé");
-    ASSERT_FALSE(testString.impl()->is8Bit());
-
-    testStringImpl = testString.impl()->replace('2', "NotFound", 8);
-    ASSERT_TRUE(equal(testStringImpl.get(), String::fromUTF8("résumé").impl()));
-
-    testStringImpl = testString.impl()->replace(UChar(0x00E9 /*U+00E9 is 'é'*/), "e", 1);
-    ASSERT_TRUE(equal(testStringImpl.get(), "resume"));
-
-    testString = String::fromUTF8("résumé");
-    ASSERT_FALSE(testString.impl()->is8Bit());
-    testStringImpl = testString.impl()->replace(UChar(0x00E9 /*U+00E9 is 'é'*/), "", 0);
-    ASSERT_TRUE(equal(testStringImpl.get(), "rsum"));
-
-    testString = String::fromUTF8("résumé");
-    ASSERT_FALSE(testString.impl()->is8Bit());
-    testStringImpl = testString.impl()->replace(UChar(0x00E9 /*U+00E9 is 'é'*/), "555", 3);
-    ASSERT_TRUE(equal(testStringImpl.get(), "r555sum555"));
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WTF/StringOperators.cpp b/Tools/TestWebKitAPI/Tests/WTF/StringOperators.cpp
deleted file mode 100644
index 149b85b..0000000
--- a/Tools/TestWebKitAPI/Tests/WTF/StringOperators.cpp
+++ /dev/null
@@ -1,187 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#define WTF_STRINGTYPEADAPTER_COPIED_WTF_STRING() (++wtfStringCopyCount)
-
-static int wtfStringCopyCount;
-
-#include <wtf/text/WTFString.h>
-
-namespace TestWebKitAPI {
-
-#define EXPECT_N_WTF_STRING_COPIES(count, expr) \
-    do { \
-        wtfStringCopyCount = 0; \
-        String __testString = expr; \
-        (void)__testString; \
-        EXPECT_EQ(count, wtfStringCopyCount) << #expr; \
-    } while (false)
-
-TEST(WTF, StringOperators)
-{
-    String string("String");
-    AtomicString atomicString("AtomicString");
-    ASCIILiteral literal("ASCIILiteral");
-
-    EXPECT_EQ(0, wtfStringCopyCount);
-
-    EXPECT_N_WTF_STRING_COPIES(2, string + string);
-    EXPECT_N_WTF_STRING_COPIES(2, string + atomicString);
-    EXPECT_N_WTF_STRING_COPIES(2, atomicString + string);
-    EXPECT_N_WTF_STRING_COPIES(2, atomicString + atomicString);
-
-    EXPECT_N_WTF_STRING_COPIES(1, "C string" + string);
-    EXPECT_N_WTF_STRING_COPIES(1, string + "C string");
-    EXPECT_N_WTF_STRING_COPIES(1, "C string" + atomicString);
-    EXPECT_N_WTF_STRING_COPIES(1, atomicString + "C string");
-
-    EXPECT_N_WTF_STRING_COPIES(1, literal + string);
-    EXPECT_N_WTF_STRING_COPIES(1, string + literal);
-    EXPECT_N_WTF_STRING_COPIES(1, literal + atomicString);
-    EXPECT_N_WTF_STRING_COPIES(1, atomicString + literal);
-
-    EXPECT_N_WTF_STRING_COPIES(2, "C string" + string + "C string" + string);
-    EXPECT_N_WTF_STRING_COPIES(2, "C string" + (string + "C string" + string));
-    EXPECT_N_WTF_STRING_COPIES(2, ("C string" + string) + ("C string" + string));
-    EXPECT_N_WTF_STRING_COPIES(2, string + "C string" + string + "C string");
-    EXPECT_N_WTF_STRING_COPIES(2, string + ("C string" + string + "C string"));
-    EXPECT_N_WTF_STRING_COPIES(2, (string + "C string") + (string + "C string"));
-
-    EXPECT_N_WTF_STRING_COPIES(2, literal + string + literal + string);
-    EXPECT_N_WTF_STRING_COPIES(2, literal + (string + literal + string));
-    EXPECT_N_WTF_STRING_COPIES(2, (literal + string) + (literal + string));
-    EXPECT_N_WTF_STRING_COPIES(2, string + literal + string + literal);
-    EXPECT_N_WTF_STRING_COPIES(2, string + (literal + string + literal));
-    EXPECT_N_WTF_STRING_COPIES(2, (string + literal) + (string + literal));
-
-    EXPECT_N_WTF_STRING_COPIES(2, literal + string + "C string" + string);
-    EXPECT_N_WTF_STRING_COPIES(2, literal + (string + "C string" + string));
-    EXPECT_N_WTF_STRING_COPIES(2, (literal + string) + ("C string" + string));
-    EXPECT_N_WTF_STRING_COPIES(2, "C string" + string + literal + string);
-    EXPECT_N_WTF_STRING_COPIES(2, "C string" + (string + literal + string));
-    EXPECT_N_WTF_STRING_COPIES(2, ("C string" + string) + (literal + string));
-
-    EXPECT_N_WTF_STRING_COPIES(2, literal + atomicString + "C string" + atomicString);
-    EXPECT_N_WTF_STRING_COPIES(2, literal + (atomicString + "C string" + atomicString));
-    EXPECT_N_WTF_STRING_COPIES(2, (literal + atomicString) + ("C string" + atomicString));
-    EXPECT_N_WTF_STRING_COPIES(2, "C string" + atomicString + literal + atomicString);
-    EXPECT_N_WTF_STRING_COPIES(2, "C string" + (atomicString + literal + atomicString));
-    EXPECT_N_WTF_STRING_COPIES(2, ("C string" + atomicString) + (literal + atomicString));
-
-    EXPECT_N_WTF_STRING_COPIES(2, literal + atomicString + "C string" + string);
-    EXPECT_N_WTF_STRING_COPIES(2, literal + (atomicString + "C string" + string));
-    EXPECT_N_WTF_STRING_COPIES(2, (literal + atomicString) + ("C string" + string));
-    EXPECT_N_WTF_STRING_COPIES(2, "C string" + atomicString + literal + string);
-    EXPECT_N_WTF_STRING_COPIES(2, "C string" + (atomicString + literal + string));
-    EXPECT_N_WTF_STRING_COPIES(2, ("C string" + atomicString) + (literal + string));
-
-    EXPECT_N_WTF_STRING_COPIES(2, literal + string + "C string" + atomicString);
-    EXPECT_N_WTF_STRING_COPIES(2, literal + (string + "C string" + atomicString));
-    EXPECT_N_WTF_STRING_COPIES(2, (literal + string) + ("C string" + atomicString));
-    EXPECT_N_WTF_STRING_COPIES(2, "C string" + string + literal + atomicString);
-    EXPECT_N_WTF_STRING_COPIES(2, "C string" + (string + literal + atomicString));
-    EXPECT_N_WTF_STRING_COPIES(2, ("C string" + string) + (literal + atomicString));
-
-    EXPECT_N_WTF_STRING_COPIES(2, "C string" + atomicString + "C string" + atomicString);
-    EXPECT_N_WTF_STRING_COPIES(2, "C string" + (atomicString + "C string" + atomicString));
-    EXPECT_N_WTF_STRING_COPIES(2, ("C string" + atomicString) + ("C string" + atomicString));
-    EXPECT_N_WTF_STRING_COPIES(2, atomicString + "C string" + atomicString + "C string");
-    EXPECT_N_WTF_STRING_COPIES(2, atomicString + ("C string" + atomicString + "C string"));
-    EXPECT_N_WTF_STRING_COPIES(2, (atomicString + "C string") + (atomicString + "C string"));
-
-    EXPECT_N_WTF_STRING_COPIES(2, literal + atomicString + literal + atomicString);
-    EXPECT_N_WTF_STRING_COPIES(2, literal + (atomicString + literal + atomicString));
-    EXPECT_N_WTF_STRING_COPIES(2, (literal + atomicString) + (literal + atomicString));
-    EXPECT_N_WTF_STRING_COPIES(2, atomicString + literal + atomicString + literal);
-    EXPECT_N_WTF_STRING_COPIES(2, atomicString + (literal + atomicString + literal));
-    EXPECT_N_WTF_STRING_COPIES(2, (atomicString + literal) + (atomicString + literal));
-
-    EXPECT_N_WTF_STRING_COPIES(2, "C string" + string + "C string" + atomicString);
-    EXPECT_N_WTF_STRING_COPIES(2, "C string" + (string + "C string" + atomicString));
-    EXPECT_N_WTF_STRING_COPIES(2, ("C string" + string) + ("C string" + atomicString));
-    EXPECT_N_WTF_STRING_COPIES(2, string + "C string" + atomicString + "C string");
-    EXPECT_N_WTF_STRING_COPIES(2, string + ("C string" + atomicString + "C string"));
-    EXPECT_N_WTF_STRING_COPIES(2, (string + "C string") + (atomicString + "C string"));
-
-    EXPECT_N_WTF_STRING_COPIES(2, literal + string + literal + atomicString);
-    EXPECT_N_WTF_STRING_COPIES(2, literal + (string + literal + atomicString));
-    EXPECT_N_WTF_STRING_COPIES(2, (literal + string) + (literal + atomicString));
-    EXPECT_N_WTF_STRING_COPIES(2, string + literal + atomicString + literal);
-    EXPECT_N_WTF_STRING_COPIES(2, string + (literal + atomicString + literal));
-    EXPECT_N_WTF_STRING_COPIES(2, (string + literal) + (atomicString + literal));
-
-    EXPECT_N_WTF_STRING_COPIES(2, "C string" + atomicString + "C string" + string);
-    EXPECT_N_WTF_STRING_COPIES(2, "C string" + (atomicString + "C string" + string));
-    EXPECT_N_WTF_STRING_COPIES(2, ("C string" + atomicString) + ("C string" + string));
-    EXPECT_N_WTF_STRING_COPIES(2, atomicString + "C string" + string + "C string");
-    EXPECT_N_WTF_STRING_COPIES(2, atomicString + ("C string" + string + "C string"));
-    EXPECT_N_WTF_STRING_COPIES(2, (atomicString + "C string") + (string + "C string"));
-
-    EXPECT_N_WTF_STRING_COPIES(2, literal + atomicString + literal + string);
-    EXPECT_N_WTF_STRING_COPIES(2, literal + (atomicString + literal + string));
-    EXPECT_N_WTF_STRING_COPIES(2, (literal + atomicString) + (literal + string));
-    EXPECT_N_WTF_STRING_COPIES(2, atomicString + literal + string + literal);
-    EXPECT_N_WTF_STRING_COPIES(2, atomicString + (literal + string + literal));
-    EXPECT_N_WTF_STRING_COPIES(2, (atomicString + literal) + (string + literal));
-
-#if COMPILER(MSVC)
-    EXPECT_N_WTF_STRING_COPIES(1, L"wide string" + string);
-    EXPECT_N_WTF_STRING_COPIES(1, string + L"wide string");
-    EXPECT_N_WTF_STRING_COPIES(1, L"wide string" + atomicString);
-    EXPECT_N_WTF_STRING_COPIES(1, atomicString + L"wide string");
-
-    EXPECT_N_WTF_STRING_COPIES(2, L"wide string" + string + L"wide string" + string);
-    EXPECT_N_WTF_STRING_COPIES(2, L"wide string" + (string + L"wide string" + string));
-    EXPECT_N_WTF_STRING_COPIES(2, (L"wide string" + string) + (L"wide string" + string));
-    EXPECT_N_WTF_STRING_COPIES(2, string + L"wide string" + string + L"wide string");
-    EXPECT_N_WTF_STRING_COPIES(2, string + (L"wide string" + string + L"wide string"));
-    EXPECT_N_WTF_STRING_COPIES(2, (string + L"wide string") + (string + L"wide string"));
-
-    EXPECT_N_WTF_STRING_COPIES(2, L"wide string" + atomicString + L"wide string" + atomicString);
-    EXPECT_N_WTF_STRING_COPIES(2, L"wide string" + (atomicString + L"wide string" + atomicString));
-    EXPECT_N_WTF_STRING_COPIES(2, (L"wide string" + atomicString) + (L"wide string" + atomicString));
-    EXPECT_N_WTF_STRING_COPIES(2, atomicString + L"wide string" + atomicString + L"wide string");
-    EXPECT_N_WTF_STRING_COPIES(2, atomicString + (L"wide string" + atomicString + L"wide string"));
-    EXPECT_N_WTF_STRING_COPIES(2, (atomicString + L"wide string") + (atomicString + L"wide string"));
-
-    EXPECT_N_WTF_STRING_COPIES(2, L"wide string" + string + L"wide string" + atomicString);
-    EXPECT_N_WTF_STRING_COPIES(2, L"wide string" + (string + L"wide string" + atomicString));
-    EXPECT_N_WTF_STRING_COPIES(2, (L"wide string" + string) + (L"wide string" + atomicString));
-    EXPECT_N_WTF_STRING_COPIES(2, string + L"wide string" + atomicString + L"wide string");
-    EXPECT_N_WTF_STRING_COPIES(2, string + (L"wide string" + atomicString + L"wide string"));
-    EXPECT_N_WTF_STRING_COPIES(2, (string + L"wide string") + (atomicString + L"wide string"));
-
-    EXPECT_N_WTF_STRING_COPIES(2, L"wide string" + atomicString + L"wide string" + string);
-    EXPECT_N_WTF_STRING_COPIES(2, L"wide string" + (atomicString + L"wide string" + string));
-    EXPECT_N_WTF_STRING_COPIES(2, (L"wide string" + atomicString) + (L"wide string" + string));
-    EXPECT_N_WTF_STRING_COPIES(2, atomicString + L"wide string" + string + L"wide string");
-    EXPECT_N_WTF_STRING_COPIES(2, atomicString + (L"wide string" + string + L"wide string"));
-    EXPECT_N_WTF_STRING_COPIES(2, (atomicString + L"wide string") + (string + L"wide string"));
-#endif
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WTF/TemporaryChange.cpp b/Tools/TestWebKitAPI/Tests/WTF/TemporaryChange.cpp
deleted file mode 100644
index 3ba0f15..0000000
--- a/Tools/TestWebKitAPI/Tests/WTF/TemporaryChange.cpp
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include <wtf/TemporaryChange.h>
-
-namespace TestWebKitAPI {
-
-TEST(WTF, TemporaryChangeNested)
-{
-    bool originallyFalse = false;
-    {
-        TemporaryChange<bool> change1OriginallyFalse(originallyFalse, true);
-        EXPECT_TRUE(originallyFalse);
-        {
-            TemporaryChange<bool> change2OriginallyFalse(originallyFalse, false);
-            EXPECT_FALSE(originallyFalse);
-        }
-        EXPECT_TRUE(originallyFalse);
-    }
-    EXPECT_FALSE(originallyFalse);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WTF/Vector.cpp b/Tools/TestWebKitAPI/Tests/WTF/Vector.cpp
deleted file mode 100644
index 9ffb0b2..0000000
--- a/Tools/TestWebKitAPI/Tests/WTF/Vector.cpp
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include <wtf/Vector.h>
-
-namespace TestWebKitAPI {
-
-TEST(WTF_Vector, Iterator)
-{
-    Vector<int> intVector;
-    intVector.append(10);
-    intVector.append(11);
-    intVector.append(12);
-    intVector.append(13);
-
-    Vector<int>::iterator it = intVector.begin();
-    Vector<int>::iterator end = intVector.end();
-    EXPECT_TRUE(end != it);
-
-    EXPECT_EQ(10, *it);
-    ++it;
-    EXPECT_EQ(11, *it);
-    ++it;
-    EXPECT_EQ(12, *it);
-    ++it;
-    EXPECT_EQ(13, *it);
-    ++it;
-
-    EXPECT_TRUE(end == it);
-}
-
-TEST(WTF_Vector, ReverseIterator)
-{
-    Vector<int> intVector;
-    intVector.append(10);
-    intVector.append(11);
-    intVector.append(12);
-    intVector.append(13);
-
-    Vector<int>::reverse_iterator it = intVector.rbegin();
-    Vector<int>::reverse_iterator end = intVector.rend();
-    EXPECT_TRUE(end != it);
-
-    EXPECT_EQ(13, *it);
-    ++it;
-    EXPECT_EQ(12, *it);
-    ++it;
-    EXPECT_EQ(11, *it);
-    ++it;
-    EXPECT_EQ(10, *it);
-    ++it;
-
-    EXPECT_TRUE(end == it);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WTF/VectorBasic.cpp b/Tools/TestWebKitAPI/Tests/WTF/VectorBasic.cpp
deleted file mode 100644
index 211ef88..0000000
--- a/Tools/TestWebKitAPI/Tests/WTF/VectorBasic.cpp
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include <wtf/Vector.h>
-
-namespace TestWebKitAPI {
-
-TEST(WTF, VectorBasic)
-{
-    Vector<int> intVector;
-    EXPECT_TRUE(intVector.isEmpty());
-    EXPECT_EQ(0ul, intVector.size());
-    EXPECT_EQ(0ul, intVector.capacity());
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WTF/VectorReverse.cpp b/Tools/TestWebKitAPI/Tests/WTF/VectorReverse.cpp
deleted file mode 100644
index 6d4a00f..0000000
--- a/Tools/TestWebKitAPI/Tests/WTF/VectorReverse.cpp
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include <wtf/Vector.h>
-
-namespace TestWebKitAPI {
-
-TEST(WTF, VectorReverse)
-{
-    Vector<int> intVector;
-    intVector.append(10);
-    intVector.append(11);
-    intVector.append(12);
-    intVector.append(13);
-    intVector.reverse();
-
-    EXPECT_EQ(13, intVector[0]);
-    EXPECT_EQ(12, intVector[1]);
-    EXPECT_EQ(11, intVector[2]);
-    EXPECT_EQ(10, intVector[3]);
-
-    intVector.append(9);
-    intVector.reverse();
-
-    EXPECT_EQ(9, intVector[0]);
-    EXPECT_EQ(10, intVector[1]);
-    EXPECT_EQ(11, intVector[2]);
-    EXPECT_EQ(12, intVector[3]);
-    EXPECT_EQ(13, intVector[4]);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WTF/WTF.pro b/Tools/TestWebKitAPI/Tests/WTF/WTF.pro
deleted file mode 100644
index 1208198..0000000
--- a/Tools/TestWebKitAPI/Tests/WTF/WTF.pro
+++ /dev/null
@@ -1,30 +0,0 @@
-TEMPLATE = app
-TARGET = tst_wtf
-
-SOURCES += \
-    AtomicString.cpp \
-    CheckedArithmeticOperations.cpp \
-    CString.cpp \
-    Functional.cpp \
-    HashMap.cpp \
-    HashSet.cpp \
-    IntegerToStringConversion.cpp \
-    ListHashSet.cpp \
-    MathExtras.cpp \
-    MediaTime.cpp \
-    RedBlackTree.cpp \
-    SaturatedArithmeticOperations.cpp \
-    StringBuilder.cpp \
-    StringHasher.cpp \
-    StringImpl.cpp \
-    StringOperators.cpp \
-    TemporaryChange.cpp \
-    Vector.cpp \
-    VectorBasic.cpp \
-    VectorReverse.cpp \
-    WTFString.cpp
-
-include(../../TestWebKitAPI.pri)
-
-DEFINES += APITEST_SOURCE_DIR=\\\"$$PWD\\\"
-
diff --git a/Tools/TestWebKitAPI/Tests/WTF/WTFString.cpp b/Tools/TestWebKitAPI/Tests/WTF/WTFString.cpp
deleted file mode 100644
index 4a92cd4..0000000
--- a/Tools/TestWebKitAPI/Tests/WTF/WTFString.cpp
+++ /dev/null
@@ -1,159 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include <limits>
-#include <wtf/MathExtras.h>
-#include <wtf/text/CString.h>
-#include <wtf/text/WTFString.h>
-
-namespace TestWebKitAPI {
-
-TEST(WTF, StringCreationFromLiteral)
-{
-    String stringFromLiteral(ASCIILiteral("Explicit construction syntax"));
-    ASSERT_EQ(strlen("Explicit construction syntax"), stringFromLiteral.length());
-    ASSERT_TRUE(stringFromLiteral == "Explicit construction syntax");
-    ASSERT_TRUE(stringFromLiteral.is8Bit());
-    ASSERT_TRUE(stringFromLiteral.impl()->hasTerminatingNullCharacter());
-    ASSERT_TRUE(String("Explicit construction syntax") == stringFromLiteral);
-
-    String stringWithTemplate("Template Literal", String::ConstructFromLiteral);
-    ASSERT_EQ(strlen("Template Literal"), stringWithTemplate.length());
-    ASSERT_TRUE(stringWithTemplate == "Template Literal");
-    ASSERT_TRUE(stringWithTemplate.is8Bit());
-    ASSERT_TRUE(stringWithTemplate.impl()->hasTerminatingNullCharacter());
-    ASSERT_TRUE(String("Template Literal") == stringWithTemplate);
-}
-
-TEST(WTF, StringASCII)
-{
-    CString output;
-
-    // Null String.
-    output = String().ascii();
-    ASSERT_STREQ("", output.data());
-
-    // Empty String.
-    output = emptyString().ascii();
-    ASSERT_STREQ("", output.data());
-
-    // Regular String.
-    output = String(ASCIILiteral("foobar")).ascii();
-    ASSERT_STREQ("foobar", output.data());
-}
-
-static void testNumberToStringECMAScript(double number, const char* reference)
-{
-    CString numberString = String::numberToStringECMAScript(number).latin1();
-    ASSERT_STREQ(reference, numberString.data());
-}
-
-TEST(WTF, StringNumberToStringECMAScriptBoundaries)
-{
-    typedef std::numeric_limits<double> Limits;
-
-    // Infinity.
-    testNumberToStringECMAScript(Limits::infinity(), "Infinity");
-    testNumberToStringECMAScript(-Limits::infinity(), "-Infinity");
-
-    // NaN.
-    testNumberToStringECMAScript(-Limits::quiet_NaN(), "NaN");
-
-    // Zeros.
-    testNumberToStringECMAScript(0, "0");
-    testNumberToStringECMAScript(-0, "0");
-
-    // Min-Max.
-    testNumberToStringECMAScript(Limits::min(), "2.2250738585072014e-308");
-    testNumberToStringECMAScript(Limits::max(), "1.7976931348623157e+308");
-}
-
-TEST(WTF, StringNumberToStringECMAScriptRegularNumbers)
-{
-    // Pi.
-    testNumberToStringECMAScript(piDouble, "3.141592653589793");
-    testNumberToStringECMAScript(piFloat, "3.1415927410125732");
-    testNumberToStringECMAScript(piOverTwoDouble, "1.5707963267948966");
-    testNumberToStringECMAScript(piOverTwoFloat, "1.5707963705062866");
-    testNumberToStringECMAScript(piOverFourDouble, "0.7853981633974483");
-    testNumberToStringECMAScript(piOverFourFloat, "0.7853981852531433");
-
-    // e.
-    const double e = 2.71828182845904523536028747135266249775724709369995;
-    testNumberToStringECMAScript(e, "2.718281828459045");
-
-    // c, speed of light in m/s.
-    const double c = 299792458;
-    testNumberToStringECMAScript(c, "299792458");
-
-    // Golen ratio.
-    const double phi = 1.6180339887498948482;
-    testNumberToStringECMAScript(phi, "1.618033988749895");
-}
-
-TEST(WTF, StringReplaceWithLiteral)
-{
-    // Cases for 8Bit source.
-    String testString = "1224";
-    ASSERT_TRUE(testString.is8Bit());
-    testString.replaceWithLiteral('2', "");
-    ASSERT_STREQ("14", testString.utf8().data());
-
-    testString = "1224";
-    ASSERT_TRUE(testString.is8Bit());
-    testString.replaceWithLiteral('2', "3");
-    ASSERT_STREQ("1334", testString.utf8().data());
-
-    testString = "1224";
-    ASSERT_TRUE(testString.is8Bit());
-    testString.replaceWithLiteral('2', "555");
-    ASSERT_STREQ("15555554", testString.utf8().data());
-
-    testString = "1224";
-    ASSERT_TRUE(testString.is8Bit());
-    testString.replaceWithLiteral('3', "NotFound");
-    ASSERT_STREQ("1224", testString.utf8().data());
-
-    // Cases for 16Bit source.
-    testString = String::fromUTF8("résumé");
-    ASSERT_FALSE(testString.is8Bit());
-    testString.replaceWithLiteral(UChar(0x00E9 /*U+00E9 is 'é'*/), "e");
-    ASSERT_STREQ("resume", testString.utf8().data());
-
-    testString = String::fromUTF8("résumé");
-    ASSERT_FALSE(testString.is8Bit());
-    testString.replaceWithLiteral(UChar(0x00E9 /*U+00E9 is 'é'*/), "");
-    ASSERT_STREQ("rsum", testString.utf8().data());
-
-    testString = String::fromUTF8("résumé");
-    ASSERT_FALSE(testString.is8Bit());
-    testString.replaceWithLiteral('3', "NotFound");
-    ASSERT_STREQ("résumé", testString.utf8().data());
-}
-
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WTF/cf/RetainPtr.cpp b/Tools/TestWebKitAPI/Tests/WTF/cf/RetainPtr.cpp
deleted file mode 100644
index 0ca174c..0000000
--- a/Tools/TestWebKitAPI/Tests/WTF/cf/RetainPtr.cpp
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include <wtf/RetainPtr.h>
-
-namespace TestWebKitAPI {
-
-TEST(RetainPtr, AdoptCF)
-{
-    RetainPtr<CFStringRef> foo = adoptCF(CFStringCreateWithCString(kCFAllocatorDefault, "foo", kCFStringEncodingUTF8));
-
-    EXPECT_EQ(1, CFGetRetainCount(foo.get()));
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WTF/cf/RetainPtrHashing.cpp b/Tools/TestWebKitAPI/Tests/WTF/cf/RetainPtrHashing.cpp
deleted file mode 100644
index 0cd28c9..0000000
--- a/Tools/TestWebKitAPI/Tests/WTF/cf/RetainPtrHashing.cpp
+++ /dev/null
@@ -1,91 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include <wtf/HashSet.h>
-#include <wtf/HashMap.h>
-#include <wtf/RetainPtr.h>
-
-namespace TestWebKitAPI {
-
-TEST(RetainPtrHashing, HashSet)
-{
-    HashSet<RetainPtr<CFStringRef> > set;
-
-    RetainPtr<CFStringRef> foo(AdoptCF, CFStringCreateWithCString(kCFAllocatorDefault, "foo", kCFStringEncodingUTF8));
-
-    EXPECT_FALSE(set.contains(foo));
-    set.add(foo);
-    EXPECT_TRUE(set.contains(foo));
-
-    RetainPtr<CFStringRef> foo2(AdoptCF, CFStringCreateWithCString(kCFAllocatorDefault, "foo", kCFStringEncodingUTF8));
-    EXPECT_FALSE(set.contains(foo2));
-    set.add(foo2);
-    EXPECT_TRUE(set.contains(foo2));
-
-    set.remove(foo);
-    EXPECT_FALSE(set.contains(foo));
-}
-
-TEST(RetainPtrHashing, HashMapKey)
-{
-    HashMap<RetainPtr<CFStringRef>, int> map;
-
-    RetainPtr<CFStringRef> foo(AdoptCF, CFStringCreateWithCString(kCFAllocatorDefault, "foo", kCFStringEncodingUTF8));
-
-    EXPECT_FALSE(map.contains(foo));
-    map.add(foo, 1);
-    EXPECT_EQ(1, map.get(foo));
-
-    RetainPtr<CFStringRef> foo2(AdoptCF, CFStringCreateWithCString(kCFAllocatorDefault, "foo", kCFStringEncodingUTF8));
-    EXPECT_FALSE(map.contains(foo2));
-    map.add(foo2, 2);
-    EXPECT_EQ(2, map.get(foo2));
-
-    map.remove(foo);
-    EXPECT_FALSE(map.contains(foo));
-}
-
-TEST(RetainPtrHashing, HashMapValue)
-{
-    HashMap<int, RetainPtr<CFStringRef> > map;
-
-    RetainPtr<CFStringRef> foo(AdoptCF, CFStringCreateWithCString(kCFAllocatorDefault, "foo", kCFStringEncodingUTF8));
-
-    EXPECT_FALSE(map.contains(1));
-    map.add(1, foo);
-    EXPECT_EQ(foo, map.get(1));
-
-    RetainPtr<CFStringRef> foo2(AdoptCF, CFStringCreateWithCString(kCFAllocatorDefault, "foo", kCFStringEncodingUTF8));
-    EXPECT_FALSE(map.contains(2));
-    map.add(2, foo2);
-    EXPECT_EQ(foo2, map.get(2));
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WTF/ns/RetainPtr.mm b/Tools/TestWebKitAPI/Tests/WTF/ns/RetainPtr.mm
deleted file mode 100644
index a03971c..0000000
--- a/Tools/TestWebKitAPI/Tests/WTF/ns/RetainPtr.mm
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include <wtf/RetainPtr.h>
-
-namespace TestWebKitAPI {
-
-TEST(RetainPtr, AdoptNS)
-{
-    RetainPtr<NSObject> foo = adoptNS([[NSObject alloc] init]);
-
-    EXPECT_EQ(1, CFGetRetainCount(foo.get()));
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebCore/HeapGraphSerializerTest.cpp b/Tools/TestWebKitAPI/Tests/WebCore/HeapGraphSerializerTest.cpp
deleted file mode 100644
index 8486f7d..0000000
--- a/Tools/TestWebKitAPI/Tests/WebCore/HeapGraphSerializerTest.cpp
+++ /dev/null
@@ -1,292 +0,0 @@
-/*
- * Copyright (C) 2013 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *     * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "WTFStringUtilities.h"
-#include <gtest/gtest.h>
-
-#include "HeapGraphSerializer.h"
-#include "MemoryInstrumentationImpl.h"
-#include <wtf/MemoryInstrumentation.h>
-#include <wtf/MemoryInstrumentationHashSet.h>
-#include <wtf/MemoryInstrumentationString.h>
-#include <wtf/MemoryObjectInfo.h>
-
-namespace TestWebKitAPI {
-
-using namespace WebCore;
-
-static WTF::MemoryObjectType g_defaultObjectType = "DefaultObjectType";
-
-class HeapGraphReceiver : public HeapGraphSerializer::Client {
-public:
-    HeapGraphReceiver() : m_serializer(this) { }
-
-    virtual void addNativeSnapshotChunk(PassRefPtr<TypeBuilder::Memory::HeapSnapshotChunk> heapSnapshotChunk) OVERRIDE
-    {
-        ASSERT(!m_heapSnapshotChunk);
-        m_heapSnapshotChunk = heapSnapshotChunk;
-        m_strings = chunkPart("strings");
-        m_edges = chunkPart("edges");
-        m_nodes = chunkPart("nodes");
-
-        // Reset platform depended size field values.
-        for (InspectorArray::iterator i = m_nodes->begin(); i != m_nodes->end(); i += s_nodeFieldCount)
-            *(i + s_sizeOffset) = InspectorBasicValue::create(0);
-
-        m_id2index.clear();
-
-        for (unsigned index = 0; index < m_nodes->length(); index += s_nodeFieldCount)
-            m_id2index.add(intValue(m_nodes.get(), index + s_idOffset), index);
-    }
-
-    void printGraph()
-    {
-        EXPECT_TRUE(m_heapSnapshotChunk);
-        int processedEdgesCount = 0;
-        for (unsigned index = 0; index < m_nodes->length(); index += s_nodeFieldCount)
-            processedEdgesCount += printNode(index, processedEdgesCount);
-    }
-
-    String dumpNodes() { return dumpPart("nodes"); }
-    String dumpEdges() { return dumpPart("edges"); }
-    String dumpBaseToRealNodeId() { return dumpPart("baseToRealNodeId"); }
-    String dumpStrings() { return dumpPart("strings"); }
-
-    HeapGraphSerializer* serializer() { return &m_serializer; }
-
-private:
-    PassRefPtr<InspectorArray> chunkPart(String partName)
-    {
-        EXPECT_TRUE(m_heapSnapshotChunk);
-        RefPtr<InspectorObject> chunk = *reinterpret_cast<RefPtr<InspectorObject>*>(&m_heapSnapshotChunk);
-        RefPtr<InspectorValue> partValue = chunk->get(partName);
-        RefPtr<InspectorArray> partArray;
-        EXPECT_TRUE(partValue->asArray(&partArray));
-        return partArray.release();
-    }
-
-    String dumpPart(String partName)
-    {
-        return chunkPart(partName)->toJSONString().replace("\"", "'");
-    }
-
-    String stringValue(InspectorArray* array, int index)
-    {
-        RefPtr<InspectorValue> inspectorValue = array->get(index);
-        String value;
-        EXPECT_TRUE(inspectorValue->asString(&value));
-        return value;
-    }
-
-    int intValue(InspectorArray* array, int index)
-    {
-        RefPtr<InspectorValue> inspectorValue = array->get(index);
-        int value;
-        EXPECT_TRUE(inspectorValue->asNumber(&value));
-        return value;
-    }
-
-    String nodeToString(unsigned nodeIndex)
-    {
-        StringBuilder builder;
-        builder.append("node: ");
-        builder.appendNumber(intValue(m_nodes.get(), nodeIndex + s_idOffset));
-        builder.append(" with className:'");
-        builder.append(stringValue(m_strings.get(), intValue(m_nodes.get(), nodeIndex + s_classNameOffset)));
-        builder.append("' and name: '");
-        builder.append(stringValue(m_strings.get(), intValue(m_nodes.get(), nodeIndex + s_nameOffset)));
-        builder.append("'");
-        return builder.toString();
-    }
-
-    String edgeToString(unsigned edgeOrdinal)
-    {
-        unsigned edgeIndex = edgeOrdinal * s_edgeFieldCount;
-        StringBuilder builder;
-        builder.append("'");
-        builder.append(stringValue(m_strings.get(), intValue(m_edges.get(), edgeIndex + s_edgeTypeOffset)));
-        builder.append("' edge '");
-        builder.append(stringValue(m_strings.get(), intValue(m_edges.get(), edgeIndex + s_edgeNameOffset)));
-        builder.append("' points to ");
-        int nodeId = intValue(m_edges.get(), edgeIndex + s_toNodeIdOffset);
-        builder.append(nodeToString(m_id2index.get(nodeId)));
-        return builder.toString();
-    }
-
-    int printNode(unsigned nodeIndex, unsigned processedEdgesCount)
-    {
-        String nodeString = nodeToString(nodeIndex);
-        unsigned edgeCount = intValue(m_nodes.get(), nodeIndex + s_edgeCountOffset);
-
-        printf("%s\n", nodeString.utf8().data());
-        for (unsigned i = 0; i < edgeCount; ++i) {
-            String edgeText = edgeToString(i + processedEdgesCount);
-            printf("\thas %s\n", edgeText.utf8().data());
-        }
-        return edgeCount;
-    }
-
-    HeapGraphSerializer m_serializer;
-    RefPtr<TypeBuilder::Memory::HeapSnapshotChunk> m_heapSnapshotChunk;
-
-    RefPtr<InspectorArray> m_strings;
-    RefPtr<InspectorArray> m_nodes;
-    RefPtr<InspectorArray> m_edges;
-    HashMap<int, int> m_id2index;
-
-    static const int s_nodeFieldCount = 5;
-    static const int s_classNameOffset = 0;
-    static const int s_nameOffset = 1;
-    static const int s_idOffset = 2;
-    static const int s_sizeOffset = 3;
-    static const int s_edgeCountOffset = 4;
-
-    static const int s_edgeFieldCount = 3;
-    static const int s_edgeTypeOffset = 0;
-    static const int s_edgeNameOffset = 1;
-    static const int s_toNodeIdOffset = 2;
-};
-
-class Helper {
-public:
-    Helper(HeapGraphSerializer* serializer)
-        : m_serializer(serializer)
-        , m_memoryInstrumentationClient(serializer)
-        , m_memoryInstrumentation(&m_memoryInstrumentationClient)
-        , m_currentPointer(0)
-    { }
-
-    void* addNode(const char* className, const char* name, bool isRoot)
-    {
-        WTF::MemoryObjectInfo info(&m_memoryInstrumentation, g_defaultObjectType, ++m_currentPointer);
-        info.setClassName(className);
-        info.setName(name);
-        if (isRoot)
-            info.markAsRoot();
-        m_serializer->reportNode(info);
-        return m_currentPointer;
-    }
-
-    void addEdge(void* to, const char* edgeName, WTF::MemberType memberType)
-    {
-        m_serializer->reportEdge(to, edgeName, memberType);
-    }
-
-    void done()
-    {
-        m_serializer->finish();
-    }
-
-private:
-    HeapGraphSerializer* m_serializer;
-    MemoryInstrumentationClientImpl m_memoryInstrumentationClient;
-    MemoryInstrumentationImpl m_memoryInstrumentation;
-
-    class Object {
-    public:
-        Object() { m_data[0] = 0; }
-        char m_data[sizeof(void*)];
-    };
-    Object* m_currentPointer;
-};
-
-TEST(HeapGraphSerializerTest, snapshotWithoutUserObjects)
-{
-    HeapGraphReceiver receiver;
-    Helper helper(receiver.serializer());
-    helper.done();
-    receiver.printGraph();
-    EXPECT_EQ(String("['','weak','property','object','unknown','Root']"), receiver.dumpStrings());
-    EXPECT_EQ(String("[5,0,1,0,0]"), receiver.dumpNodes()); // Only Root object.
-    EXPECT_EQ(String("[]"), receiver.dumpEdges()); // No edges.
-    EXPECT_EQ(String("[]"), receiver.dumpBaseToRealNodeId()); // No id maps.
-}
-
-TEST(HeapGraphSerializerTest, oneRootUserObject)
-{
-    HeapGraphReceiver receiver;
-    Helper helper(receiver.serializer());
-    helper.addNode("ClassName", "objectName", true);
-    helper.done();
-    receiver.printGraph();
-    EXPECT_EQ(String("['','weak','property','object','unknown','ClassName','objectName','Root']"), receiver.dumpStrings());
-    EXPECT_EQ(String("[5,6,1,0,0,7,0,2,0,1]"), receiver.dumpNodes());
-    EXPECT_EQ(String("[1,0,1]"), receiver.dumpEdges());
-    EXPECT_EQ(String("[]"), receiver.dumpBaseToRealNodeId());
-}
-
-TEST(HeapGraphSerializerTest, twoUserObjectsWithEdge)
-{
-    HeapGraphReceiver receiver;
-    Helper helper(receiver.serializer());
-    void* childObject = helper.addNode("Child", "child", false);
-    helper.addEdge(childObject, "pointerToChild", WTF::RetainingPointer);
-    helper.addNode("Parent", "parent", true);
-    helper.done();
-    receiver.printGraph();
-    EXPECT_EQ(String("['','weak','property','object','unknown','Child','child','pointerToChild','Parent','parent','Root']"), receiver.dumpStrings());
-    EXPECT_EQ(String("[5,6,1,0,0,8,9,2,0,1,10,0,3,0,1]"), receiver.dumpNodes());
-    EXPECT_EQ(String("[2,7,1,1,0,2]"), receiver.dumpEdges());
-    EXPECT_EQ(String("[]"), receiver.dumpBaseToRealNodeId());
-}
-
-class Owner {
-public:
-    Owner()
-    {
-        m_strings.add("first element");
-        m_strings.add("second element");
-    }
-    void reportMemoryUsage(WTF::MemoryObjectInfo* memoryObjectInfo) const
-    {
-        WTF::MemoryClassInfo info(memoryObjectInfo, this, g_defaultObjectType);
-        info.addMember(m_strings, "strings");
-    }
-private:
-    HashSet<String> m_strings;
-};
-
-TEST(HeapGraphSerializerTest, hashSetWithTwoStrings)
-{
-    HeapGraphReceiver receiver;
-    MemoryInstrumentationClientImpl memoryInstrumentationClient(receiver.serializer());
-    MemoryInstrumentationImpl memoryInstrumentation(&memoryInstrumentationClient);
-
-    Owner owner;
-    memoryInstrumentation.addRootObject(&owner);
-    receiver.serializer()->finish();
-    receiver.printGraph();
-    EXPECT_EQ(String("[6,0,1,0,0,5,0,4,0,3,9,0,3,0,0,9,0,2,0,0,10,0,5,0,1]"), receiver.dumpNodes());
-    EXPECT_EQ(String("[2,7,1,2,8,2,2,8,3,1,0,4]"), receiver.dumpEdges());
-    EXPECT_EQ(String("[]"), receiver.dumpBaseToRealNodeId());
-}
-
-} // namespace
diff --git a/Tools/TestWebKitAPI/Tests/WebCore/KURL.cpp b/Tools/TestWebKitAPI/Tests/WebCore/KURL.cpp
deleted file mode 100644
index 66f5808..0000000
--- a/Tools/TestWebKitAPI/Tests/WebCore/KURL.cpp
+++ /dev/null
@@ -1,75 +0,0 @@
-/*
- * Copyright (C) 2011, 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "WTFStringUtilities.h"
-#include <WebCore/KURL.h>
-#include <wtf/MainThread.h>
-
-using namespace WebCore;
-
-namespace TestWebKitAPI {
-
-class WebCore: public testing::Test {
-public:
-    virtual void SetUp()
-    {
-        WTF::initializeMainThread();
-    }
-};
-
-TEST_F(WebCore, KURLConstructorDefault)
-{
-    KURL kurl;
-
-    EXPECT_FALSE(kurl.hasPath());
-    EXPECT_TRUE(kurl.isEmpty());
-    EXPECT_TRUE(kurl.isNull());
-    EXPECT_FALSE(kurl.isValid());
-}
-
-TEST_F(WebCore, KURLConstructorConstChar)
-{
-    KURL kurl(ParsedURLString, "http://username:password@www.example.com:8080/index.html?var=val#fragment");
-
-    EXPECT_TRUE(kurl.hasPath());
-    EXPECT_FALSE(kurl.isEmpty());
-    EXPECT_FALSE(kurl.isNull());
-    EXPECT_TRUE(kurl.isValid());
-
-    EXPECT_EQ(String("http"), kurl.protocol());
-    EXPECT_EQ(String("www.example.com"), kurl.host());
-    EXPECT_TRUE(kurl.hasPort());
-    EXPECT_EQ(8080, kurl.port());
-    EXPECT_EQ(String("username"), kurl.user());
-    EXPECT_EQ(String("password"), kurl.pass());
-    EXPECT_EQ(String("/index.html"), kurl.path());
-    EXPECT_EQ(String("index.html"), kurl.lastPathComponent());
-    EXPECT_EQ(String("var=val"), kurl.query());
-    EXPECT_TRUE(kurl.hasFragmentIdentifier());
-    EXPECT_EQ(String("fragment"), kurl.fragmentIdentifier());
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebCore/LayoutUnit.cpp b/Tools/TestWebKitAPI/Tests/WebCore/LayoutUnit.cpp
deleted file mode 100644
index ceafb03..0000000
--- a/Tools/TestWebKitAPI/Tests/WebCore/LayoutUnit.cpp
+++ /dev/null
@@ -1,254 +0,0 @@
-/*
- * Copyright (c) 2012, Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *     * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#define ENABLE_SUBPIXEL_LAYOUT 1
-#define ENABLE_SATURATED_LAYOUT_ARITHMETIC 1
-#include "config.h"
-
-#include <WebCore/LayoutUnit.h>
-
-using namespace WebCore;
-
-namespace TestWebKitAPI {
-
-TEST(WebCoreLayoutUnit, LayoutUnitInt)
-{
-    ASSERT_EQ(LayoutUnit(INT_MIN).toInt(), intMinForLayoutUnit);
-    ASSERT_EQ(LayoutUnit(INT_MIN / 2).toInt(), intMinForLayoutUnit);
-    ASSERT_EQ(LayoutUnit(intMinForLayoutUnit - 1).toInt(), intMinForLayoutUnit); 
-    ASSERT_EQ(LayoutUnit(intMinForLayoutUnit).toInt(), intMinForLayoutUnit);
-    ASSERT_EQ(LayoutUnit(intMinForLayoutUnit + 1).toInt(), intMinForLayoutUnit + 1);
-    ASSERT_EQ(LayoutUnit(intMinForLayoutUnit / 2).toInt(), intMinForLayoutUnit / 2);
-    ASSERT_EQ(LayoutUnit(-10000).toInt(), -10000);
-    ASSERT_EQ(LayoutUnit(-1000).toInt(), -1000);
-    ASSERT_EQ(LayoutUnit(-100).toInt(), -100);
-    ASSERT_EQ(LayoutUnit(-10).toInt(), -10);
-    ASSERT_EQ(LayoutUnit(-1).toInt(), -1);
-    ASSERT_EQ(LayoutUnit(0).toInt(), 0);
-    ASSERT_EQ(LayoutUnit(1).toInt(), 1);
-    ASSERT_EQ(LayoutUnit(100).toInt(), 100);
-    ASSERT_EQ(LayoutUnit(1000).toInt(), 1000);
-    ASSERT_EQ(LayoutUnit(10000).toInt(), 10000);
-    ASSERT_EQ(LayoutUnit(intMaxForLayoutUnit / 2).toInt(), intMaxForLayoutUnit / 2);
-    ASSERT_EQ(LayoutUnit(intMaxForLayoutUnit - 1).toInt(), intMaxForLayoutUnit - 1);
-    ASSERT_EQ(LayoutUnit(intMaxForLayoutUnit).toInt(), intMaxForLayoutUnit);
-    ASSERT_EQ(LayoutUnit(intMaxForLayoutUnit + 1).toInt(), intMaxForLayoutUnit);
-    ASSERT_EQ(LayoutUnit(INT_MAX / 2).toInt(), intMaxForLayoutUnit);
-    ASSERT_EQ(LayoutUnit(INT_MAX).toInt(), intMaxForLayoutUnit);
-}
-
-TEST(WebCoreLayoutUnit, LayoutUnitFloat)
-{
-    const float tolerance = 1.0f / kFixedPointDenominator;
-    ASSERT_FLOAT_EQ(LayoutUnit(1.0f).toFloat(), 1.0f);
-    ASSERT_FLOAT_EQ(LayoutUnit(1.25f).toFloat(), 1.25f);
-    ASSERT_NEAR(LayoutUnit(1.1f).toFloat(), 1.1f, tolerance);
-    ASSERT_NEAR(LayoutUnit(1.33f).toFloat(), 1.33f, tolerance);
-    ASSERT_NEAR(LayoutUnit(1.3333f).toFloat(), 1.3333f, tolerance);
-    ASSERT_NEAR(LayoutUnit(1.53434f).toFloat(), 1.53434f, tolerance);
-    ASSERT_NEAR(LayoutUnit(345634).toFloat(), 345634.0f, tolerance);
-    ASSERT_NEAR(LayoutUnit(345634.12335f).toFloat(), 345634.12335f, tolerance);
-    ASSERT_NEAR(LayoutUnit(-345634.12335f).toFloat(), -345634.12335f, tolerance);
-    ASSERT_NEAR(LayoutUnit(-345634).toFloat(), -345634.0f, tolerance);    
-}
-
-TEST(WebCoreLayoutUnit, LayoutUnitRounding)
-{
-    ASSERT_EQ(LayoutUnit(-1.9f).round(), -2);
-    ASSERT_EQ(LayoutUnit(-1.6f).round(), -2);
-    ASSERT_EQ(LayoutUnit::fromFloatRound(-1.51f).round(), -2);
-    ASSERT_EQ(LayoutUnit::fromFloatRound(-1.5f).round(), -1);
-    ASSERT_EQ(LayoutUnit::fromFloatRound(-1.49f).round(), -1);
-    ASSERT_EQ(LayoutUnit(-1.0f).round(), -1);
-    ASSERT_EQ(LayoutUnit::fromFloatRound(-0.99f).round(), -1);
-    ASSERT_EQ(LayoutUnit::fromFloatRound(-0.51f).round(), -1);
-    ASSERT_EQ(LayoutUnit::fromFloatRound(-0.50f).round(), 0);
-    ASSERT_EQ(LayoutUnit::fromFloatRound(-0.49f).round(), 0);
-    ASSERT_EQ(LayoutUnit(-0.1f).round(), 0);
-    ASSERT_EQ(LayoutUnit(0.0f).round(), 0);
-    ASSERT_EQ(LayoutUnit(0.1f).round(), 0);
-    ASSERT_EQ(LayoutUnit::fromFloatRound(0.49f).round(), 0);
-    ASSERT_EQ(LayoutUnit::fromFloatRound(0.50f).round(), 1);
-    ASSERT_EQ(LayoutUnit::fromFloatRound(0.51f).round(), 1);
-    ASSERT_EQ(LayoutUnit(0.99f).round(), 1);
-    ASSERT_EQ(LayoutUnit(1.0f).round(), 1);
-    ASSERT_EQ(LayoutUnit::fromFloatRound(1.49f).round(), 1);
-    ASSERT_EQ(LayoutUnit::fromFloatRound(1.5f).round(), 2);
-    ASSERT_EQ(LayoutUnit::fromFloatRound(1.51f).round(), 2);
-}
-
-TEST(WebCoreLayoutUnit, LayoutUnitSnapSizeToPixel)
-{
-    ASSERT_EQ(snapSizeToPixel(LayoutUnit(1), LayoutUnit(0)), 1);
-    ASSERT_EQ(snapSizeToPixel(LayoutUnit(1), LayoutUnit(0.5)), 1);
-    ASSERT_EQ(snapSizeToPixel(LayoutUnit(1.5), LayoutUnit(0)), 2);
-    ASSERT_EQ(snapSizeToPixel(LayoutUnit(1.5), LayoutUnit(0.49)), 2);
-    ASSERT_EQ(snapSizeToPixel(LayoutUnit(1.5), LayoutUnit(0.5)), 1);
-    ASSERT_EQ(snapSizeToPixel(LayoutUnit(1.5), LayoutUnit(0.75)), 1);
-    ASSERT_EQ(snapSizeToPixel(LayoutUnit(1.5), LayoutUnit(0.99)), 1);
-    ASSERT_EQ(snapSizeToPixel(LayoutUnit(1.5), LayoutUnit(1)), 2);
-    
-    ASSERT_EQ(snapSizeToPixel(LayoutUnit(0.5), LayoutUnit(1.5)), 0);
-    ASSERT_EQ(snapSizeToPixel(LayoutUnit(0.99), LayoutUnit(1.5)), 0);
-    ASSERT_EQ(snapSizeToPixel(LayoutUnit(1.0), LayoutUnit(1.5)), 1);
-    ASSERT_EQ(snapSizeToPixel(LayoutUnit(1.49), LayoutUnit(1.5)), 1);
-    ASSERT_EQ(snapSizeToPixel(LayoutUnit(1.5), LayoutUnit(1.5)), 1);
-    
-    ASSERT_EQ(snapSizeToPixel(LayoutUnit(100.5), LayoutUnit(100)), 101);
-    ASSERT_EQ(snapSizeToPixel(LayoutUnit(intMaxForLayoutUnit), LayoutUnit(0.3)), intMaxForLayoutUnit);
-    ASSERT_EQ(snapSizeToPixel(LayoutUnit(intMinForLayoutUnit), LayoutUnit(-0.3)), intMinForLayoutUnit);
-}
-
-TEST(WebCoreLayoutUnit, LayoutUnitMultiplication)
-{
-    ASSERT_EQ((LayoutUnit(1) * LayoutUnit(1)).toInt(), 1);
-    ASSERT_EQ((LayoutUnit(1) * LayoutUnit(2)).toInt(), 2);
-    ASSERT_EQ((LayoutUnit(2) * LayoutUnit(1)).toInt(), 2);
-    ASSERT_EQ((LayoutUnit(2) * LayoutUnit(0.5)).toInt(), 1);
-    ASSERT_EQ((LayoutUnit(0.5) * LayoutUnit(2)).toInt(), 1);
-    ASSERT_EQ((LayoutUnit(100) * LayoutUnit(1)).toInt(), 100);
-    
-    ASSERT_EQ((LayoutUnit(-1) * LayoutUnit(1)).toInt(), -1);
-    ASSERT_EQ((LayoutUnit(-1) * LayoutUnit(2)).toInt(), -2);
-    ASSERT_EQ((LayoutUnit(-2) * LayoutUnit(1)).toInt(), -2);
-    ASSERT_EQ((LayoutUnit(-2) * LayoutUnit(0.5)).toInt(), -1);
-    ASSERT_EQ((LayoutUnit(-0.5) * LayoutUnit(2)).toInt(), -1);
-    ASSERT_EQ((LayoutUnit(-100) * LayoutUnit(1)).toInt(), -100);
-    
-    ASSERT_EQ((LayoutUnit(-1) * LayoutUnit(-1)).toInt(), 1);
-    ASSERT_EQ((LayoutUnit(-1) * LayoutUnit(-2)).toInt(), 2);
-    ASSERT_EQ((LayoutUnit(-2) * LayoutUnit(-1)).toInt(), 2);
-    ASSERT_EQ((LayoutUnit(-2) * LayoutUnit(-0.5)).toInt(), 1);
-    ASSERT_EQ((LayoutUnit(-0.5) * LayoutUnit(-2)).toInt(), 1);
-    ASSERT_EQ((LayoutUnit(-100) * LayoutUnit(-1)).toInt(), 100);
-    
-    ASSERT_EQ((LayoutUnit(100) * LayoutUnit(3.33)).round(), 333);
-    ASSERT_EQ((LayoutUnit(-100) * LayoutUnit(3.33)).round(), -333);
-    ASSERT_EQ((LayoutUnit(-100) * LayoutUnit(-3.33)).round(), 333);
-
-    size_t aHundredSizeT = 100;
-    ASSERT_EQ((LayoutUnit(aHundredSizeT) * LayoutUnit(1)).toInt(), 100);
-    ASSERT_EQ((aHundredSizeT * LayoutUnit(4)).toInt(), 400);
-    ASSERT_EQ((LayoutUnit(4) * aHundredSizeT).toInt(), 400);
-
-    int quarterMax = intMaxForLayoutUnit / 4;
-    ASSERT_EQ((LayoutUnit(quarterMax) * LayoutUnit(2)).toInt(), quarterMax * 2);
-    ASSERT_EQ((LayoutUnit(quarterMax) * LayoutUnit(3)).toInt(), quarterMax * 3);
-    ASSERT_EQ((LayoutUnit(quarterMax) * LayoutUnit(4)).toInt(), quarterMax * 4);
-    ASSERT_EQ((LayoutUnit(quarterMax) * LayoutUnit(5)).toInt(), intMaxForLayoutUnit);
-
-    size_t overflowIntSizeT = intMaxForLayoutUnit * 4;
-    ASSERT_EQ((LayoutUnit(overflowIntSizeT) * LayoutUnit(2)).toInt(), intMaxForLayoutUnit);
-    ASSERT_EQ((overflowIntSizeT * LayoutUnit(4)).toInt(), intMaxForLayoutUnit);
-    ASSERT_EQ((LayoutUnit(4) * overflowIntSizeT).toInt(), intMaxForLayoutUnit);
-}
-
-TEST(WebCoreLayoutUnit, LayoutUnitDivision)
-{
-    ASSERT_EQ((LayoutUnit(1) / LayoutUnit(1)).toInt(), 1);
-    ASSERT_EQ((LayoutUnit(1) / LayoutUnit(2)).toInt(), 0);
-    ASSERT_EQ((LayoutUnit(2) / LayoutUnit(1)).toInt(), 2);
-    ASSERT_EQ((LayoutUnit(2) / LayoutUnit(0.5)).toInt(), 4);
-    ASSERT_EQ((LayoutUnit(0.5) / LayoutUnit(2)).toInt(), 0);
-    ASSERT_EQ((LayoutUnit(100) / LayoutUnit(10)).toInt(), 10);
-    ASSERT_FLOAT_EQ((LayoutUnit(1) / LayoutUnit(2)).toFloat(), 0.5f);
-    ASSERT_FLOAT_EQ((LayoutUnit(0.5) / LayoutUnit(2)).toFloat(), 0.25f);
-    
-    ASSERT_EQ((LayoutUnit(-1) / LayoutUnit(1)).toInt(), -1);
-    ASSERT_EQ((LayoutUnit(-1) / LayoutUnit(2)).toInt(), 0);
-    ASSERT_EQ((LayoutUnit(-2) / LayoutUnit(1)).toInt(), -2);
-    ASSERT_EQ((LayoutUnit(-2) / LayoutUnit(0.5)).toInt(), -4);
-    ASSERT_EQ((LayoutUnit(-0.5) / LayoutUnit(2)).toInt(), 0);
-    ASSERT_EQ((LayoutUnit(-100) / LayoutUnit(10)).toInt(), -10);
-    ASSERT_FLOAT_EQ((LayoutUnit(-1) / LayoutUnit(2)).toFloat(), -0.5f);
-    ASSERT_FLOAT_EQ((LayoutUnit(-0.5) / LayoutUnit(2)).toFloat(), -0.25f);
-    
-    ASSERT_EQ((LayoutUnit(-1) / LayoutUnit(-1)).toInt(), 1);
-    ASSERT_EQ((LayoutUnit(-1) / LayoutUnit(-2)).toInt(), 0);
-    ASSERT_EQ((LayoutUnit(-2) / LayoutUnit(-1)).toInt(), 2);
-    ASSERT_EQ((LayoutUnit(-2) / LayoutUnit(-0.5)).toInt(), 4);
-    ASSERT_EQ((LayoutUnit(-0.5) / LayoutUnit(-2)).toInt(), 0);
-    ASSERT_EQ((LayoutUnit(-100) / LayoutUnit(-10)).toInt(), 10);
-    ASSERT_FLOAT_EQ((LayoutUnit(-1) / LayoutUnit(-2)).toFloat(), 0.5f);
-    ASSERT_FLOAT_EQ((LayoutUnit(-0.5) / LayoutUnit(-2)).toFloat(), 0.25f);
-    
-    size_t aHundredSizeT = 100;
-    ASSERT_EQ((LayoutUnit(aHundredSizeT) / LayoutUnit(2)).toInt(), 50);
-    ASSERT_EQ((aHundredSizeT / LayoutUnit(4)).toInt(), 25);
-    ASSERT_EQ((LayoutUnit(400) / aHundredSizeT).toInt(), 4);
-
-    ASSERT_EQ((LayoutUnit(intMaxForLayoutUnit) / LayoutUnit(2)).toInt(), intMaxForLayoutUnit / 2);
-    ASSERT_EQ((LayoutUnit(intMaxForLayoutUnit) / LayoutUnit(0.5)).toInt(), intMaxForLayoutUnit);
-}
-
-TEST(WebCoreLayoutUnit, LayoutUnitCeil)
-{
-    ASSERT_EQ(LayoutUnit(0).ceil(), 0);
-    ASSERT_EQ(LayoutUnit(0.1).ceil(), 1);
-    ASSERT_EQ(LayoutUnit(0.5).ceil(), 1);
-    ASSERT_EQ(LayoutUnit(0.9).ceil(), 1);
-    ASSERT_EQ(LayoutUnit(1.0).ceil(), 1);
-    ASSERT_EQ(LayoutUnit(1.1).ceil(), 2);
-    
-    ASSERT_EQ(LayoutUnit(-0.1).ceil(), 0);
-    ASSERT_EQ(LayoutUnit(-0.5).ceil(), 0);
-    ASSERT_EQ(LayoutUnit(-0.9).ceil(), 0);
-    ASSERT_EQ(LayoutUnit(-1.0).ceil(), -1);
-    
-    ASSERT_EQ(LayoutUnit(intMaxForLayoutUnit).ceil(), intMaxForLayoutUnit);
-    ASSERT_EQ((LayoutUnit(intMaxForLayoutUnit) - LayoutUnit(0.5)).ceil(), intMaxForLayoutUnit);
-    ASSERT_EQ((LayoutUnit(intMaxForLayoutUnit) - LayoutUnit(1)).ceil(), intMaxForLayoutUnit - 1);
-
-    ASSERT_EQ(LayoutUnit(intMinForLayoutUnit).ceil(), intMinForLayoutUnit);
-}
-
-TEST(WebCoreLayoutUnit, LayoutUnitFloor)
-{
-    ASSERT_EQ(LayoutUnit(0).floor(), 0);
-    ASSERT_EQ(LayoutUnit(0.1).floor(), 0);
-    ASSERT_EQ(LayoutUnit(0.5).floor(), 0);
-    ASSERT_EQ(LayoutUnit(0.9).floor(), 0);
-    ASSERT_EQ(LayoutUnit(1.0).floor(), 1);
-    ASSERT_EQ(LayoutUnit(1.1).floor(), 1);
-    
-    ASSERT_EQ(LayoutUnit(-0.1).floor(), -1);
-    ASSERT_EQ(LayoutUnit(-0.5).floor(), -1);
-    ASSERT_EQ(LayoutUnit(-0.9).floor(), -1);
-    ASSERT_EQ(LayoutUnit(-1.0).floor(), -1);
-    
-    ASSERT_EQ(LayoutUnit(intMaxForLayoutUnit).floor(), intMaxForLayoutUnit);
-
-    ASSERT_EQ(LayoutUnit(intMinForLayoutUnit).floor(), intMinForLayoutUnit);
-    ASSERT_EQ((LayoutUnit(intMinForLayoutUnit) + LayoutUnit(0.5)).floor(), intMinForLayoutUnit);
-    ASSERT_EQ((LayoutUnit(intMinForLayoutUnit) + LayoutUnit(1)).floor(), intMinForLayoutUnit + 1);
-}
-
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebCore/win/BitmapImage.cpp b/Tools/TestWebKitAPI/Tests/WebCore/win/BitmapImage.cpp
deleted file mode 100644
index 61b87cd..0000000
--- a/Tools/TestWebKitAPI/Tests/WebCore/win/BitmapImage.cpp
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- * Copyright (C) 2012 peavo@outlook.com All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include <WebCore/BitmapImage.h>
-
-using namespace WebCore;
-
-namespace TestWebKitAPI {
-
-// Test that there is no crash when BitmapImage::getHBITMAPOfSize() is called
-// for an image with empty frames (BitmapImage::frameAtIndex(i) return null), WebKit Bug 102689.
-
-class BitmapImageTest : public WebCore::BitmapImage {
-public:
-    BitmapImageTest()
-    {
-        m_frames.grow(1);
-    }
-
-    virtual size_t frameCount()
-    {
-        return 1;
-    }
-};
-
-TEST(WebCore, BitmapImageEmptyFrameTest)
-{
-    SIZE sz = {16, 16};
-    RefPtr<BitmapImageTest> bitmapImageTest = adoptRef(new BitmapImageTest);
-    int bits[256];
-    HBITMAP hBitmap = CreateBitmap(16, 16, 1, 32, bits);
-    bitmapImageTest->getHBITMAPOfSize(hBitmap, &sz);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit/win/WebViewDestruction.cpp b/Tools/TestWebKitAPI/Tests/WebKit/win/WebViewDestruction.cpp
deleted file mode 100644
index 3e6630f..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit/win/WebViewDestruction.cpp
+++ /dev/null
@@ -1,178 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
- * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include "HostWindow.h"
-#include "Test.h"
-#include <WebCore/COMPtr.h>
-#include <WebKit/WebKit.h>
-#include <WebKit/WebKitCOMAPI.h>
-#include <wtf/PassOwnPtr.h>
-
-namespace TestWebKitAPI {
-
-template <typename T>
-static HRESULT WebKitCreateInstance(REFCLSID clsid, T** object)
-{
-    return WebKitCreateInstance(clsid, 0, __uuidof(T), reinterpret_cast<void**>(object));
-}
-
-class WebViewDestruction : public ::testing::Test {
-protected:
-    virtual void SetUp();
-    virtual void TearDown();
-
-    static int webViewCount();
-    static void runMessagePump(DWORD timeoutMilliseconds);
-
-    COMPtr<IWebView> m_webView;
-};
-
-class WebViewDestructionWithHostWindow : public WebViewDestruction {
-protected:
-    virtual void SetUp();
-    virtual void TearDown();
-
-    HostWindow m_window;
-    HWND m_viewWindow;
-};
-
-void WebViewDestruction::SetUp()
-{
-    EXPECT_HRESULT_SUCCEEDED(WebKitCreateInstance(__uuidof(WebView), &m_webView));
-}
-
-int WebViewDestruction::webViewCount()
-{
-    COMPtr<IWebKitStatistics> statistics;
-    if (FAILED(WebKitCreateInstance(__uuidof(WebKitStatistics), &statistics)))
-        return -1;
-    int count;
-    if (FAILED(statistics->webViewCount(&count)))
-        return -1;
-    return count;
-}
-
-void WebViewDestructionWithHostWindow::SetUp()
-{
-    WebViewDestruction::SetUp();
-
-    EXPECT_TRUE(m_window.initialize());
-    EXPECT_HRESULT_SUCCEEDED(m_webView->setHostWindow(reinterpret_cast<OLE_HANDLE>(m_window.window())));
-    EXPECT_HRESULT_SUCCEEDED(m_webView->initWithFrame(m_window.clientRect(), 0, 0));
-
-    COMPtr<IWebViewPrivate> viewPrivate(Query, m_webView);
-    ASSERT_NOT_NULL(viewPrivate);
-    EXPECT_HRESULT_SUCCEEDED(viewPrivate->viewWindow(reinterpret_cast<OLE_HANDLE*>(&m_viewWindow)));
-    EXPECT_TRUE(::IsWindow(m_viewWindow));
-}
-
-void WebViewDestruction::runMessagePump(DWORD timeoutMilliseconds)
-{
-    // FIXME: We should move this functionality to PlatformUtilities at some point.
-
-    DWORD startTickCount = ::GetTickCount();
-    MSG msg;
-    BOOL result;
-    while ((result = ::PeekMessageW(&msg, 0, 0, 0, PM_REMOVE)) && ::GetTickCount() - startTickCount <= timeoutMilliseconds) {
-        if (result == -1)
-            break;
-        ::TranslateMessage(&msg);
-        ::DispatchMessage(&msg);
-    }
-}
-
-void WebViewDestruction::TearDown()
-{
-    // Allow window messages to be processed, because in some cases that would trigger a crash (e.g., <http://webkit.org/b/32827>).
-    runMessagePump(50);
-
-    // We haven't crashed. Release the WebView and ensure that its view window has been destroyed and the WebView doesn't leak.
-    int currentWebViewCount = webViewCount();
-    EXPECT_GT(currentWebViewCount, 0);
-
-    m_webView = 0;
-
-    EXPECT_EQ(webViewCount(), currentWebViewCount - 1);
-}
-
-void WebViewDestructionWithHostWindow::TearDown()
-{
-    WebViewDestruction::TearDown();
-
-    EXPECT_FALSE(::IsWindow(m_viewWindow));
-}
-
-// Tests that releasing a WebView without calling IWebView::initWithFrame works.
-TEST_F(WebViewDestruction, NoInitWithFrame)
-{
-}
-
-TEST_F(WebViewDestruction, CloseWithoutInitWithFrame)
-{
-    EXPECT_HRESULT_SUCCEEDED(m_webView->close());
-}
-
-// Tests that calling IWebView::close without calling DestroyWindow, then releasing a WebView doesn't crash. <http://webkit.org/b/32827>
-TEST_F(WebViewDestructionWithHostWindow, CloseWithoutDestroyViewWindow)
-{
-    EXPECT_HRESULT_SUCCEEDED(m_webView->close());
-}
-
-TEST_F(WebViewDestructionWithHostWindow, DestroyViewWindowWithoutClose)
-{
-    ::DestroyWindow(m_viewWindow);
-}
-
-TEST_F(WebViewDestructionWithHostWindow, CloseThenDestroyViewWindow)
-{
-    EXPECT_HRESULT_SUCCEEDED(m_webView->close());
-    ::DestroyWindow(m_viewWindow);
-}
-
-TEST_F(WebViewDestructionWithHostWindow, DestroyViewWindowThenClose)
-{
-    ::DestroyWindow(m_viewWindow);
-    EXPECT_HRESULT_SUCCEEDED(m_webView->close());
-}
-
-TEST_F(WebViewDestructionWithHostWindow, DestroyHostWindow)
-{
-    ::DestroyWindow(m_window.window());
-}
-
-TEST_F(WebViewDestructionWithHostWindow, DestroyHostWindowThenClose)
-{
-    ::DestroyWindow(m_window.window());
-    EXPECT_HRESULT_SUCCEEDED(m_webView->close());
-}
-
-TEST_F(WebViewDestructionWithHostWindow, CloseThenDestroyHostWindow)
-{
-    EXPECT_HRESULT_SUCCEEDED(m_webView->close());
-    ::DestroyWindow(m_window.window());
-}
-
-} // namespace WebKitAPITest
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/18-characters.html b/Tools/TestWebKitAPI/Tests/WebKit2/18-characters.html
deleted file mode 100644
index e69de29..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/18-characters.html
+++ /dev/null
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/AboutBlankLoad.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/AboutBlankLoad.cpp
deleted file mode 100644
index 42939dd..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/AboutBlankLoad.cpp
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-
-namespace TestWebKitAPI {
-    
-static bool done;
-
-static void didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo)
-{
-    WKRetainPtr<WKStringRef> mimeType = adoptWK(WKFrameCopyMIMEType(frame));
-    EXPECT_WK_STREQ("text/html", mimeType);
-    done = true;
-}
-
-TEST(WebKit2, AboutBlankLoad)
-{
-    WKRetainPtr<WKContextRef> context = adoptWK(WKContextCreate());
-    PlatformWebView webView(context.get());
-
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0 , sizeof(loaderClient));
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-    WKPageSetPageLoaderClient(webView.page(), &loaderClient);
-
-    WKPageLoadURL(webView.page(), adoptWK(WKURLCreateWithUTF8CString("about:blank")).get());
-
-    Util::run(&done);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/CanHandleRequest.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/CanHandleRequest.cpp
deleted file mode 100644
index e3e5d0c..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/CanHandleRequest.cpp
+++ /dev/null
@@ -1,71 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <WebKit2/WKContextPrivate.h>
-
-namespace TestWebKitAPI {
-
-static bool didReceiveMessage;
-static bool canHandleRequest;
-
-static void didReceiveMessageFromInjectedBundle(WKContextRef, WKStringRef messageName, WKTypeRef body, const void*)
-{
-    didReceiveMessage = true;
-
-    EXPECT_WK_STREQ("DidCheckCanHandleRequest", messageName);
-    EXPECT_EQ(WKBooleanGetTypeID(), WKGetTypeID(body));
-
-    canHandleRequest = WKBooleanGetValue(static_cast<WKBooleanRef>(body));
-}
-
-static void setInjectedBundleClient(WKContextRef context)
-{
-    WKContextInjectedBundleClient injectedBundleClient;
-    memset(&injectedBundleClient, 0, sizeof(injectedBundleClient));
-    injectedBundleClient.didReceiveMessageFromInjectedBundle = didReceiveMessageFromInjectedBundle;
-
-    WKContextSetInjectedBundleClient(context, &injectedBundleClient);
-}
-
-TEST(WebKit2, CanHandleRequest)
-{
-    WKRetainPtr<WKContextRef> context = adoptWK(Util::createContextForInjectedBundleTest("CanHandleRequestTest"));
-    setInjectedBundleClient(context.get());
-
-    WKContextRegisterURLSchemeAsEmptyDocument(context.get(), Util::toWK("emptyscheme").get());
-
-    PlatformWebView webView(context.get());
-
-    WKPageLoadURL(webView.page(), adoptWK(Util::createURLForResource("simple", "html")).get());
-
-    WKContextPostMessageToInjectedBundle(context.get(), Util::toWK("CheckCanHandleRequest").get(), 0);
-    Util::run(&didReceiveMessage);
-    EXPECT_TRUE(canHandleRequest);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/CanHandleRequest_Bundle.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/CanHandleRequest_Bundle.cpp
deleted file mode 100644
index 5f66b53..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/CanHandleRequest_Bundle.cpp
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleTest.h"
-
-#include "PlatformUtilities.h"
-#include <WebKit2/WKBundlePage.h>
-
-namespace TestWebKitAPI {
-
-class CanHandleRequestTest : public InjectedBundleTest {
-public:
-    CanHandleRequestTest(const std::string& identifier);
-
-private:
-    virtual void didReceiveMessage(WKBundleRef, WKStringRef messageName, WKTypeRef messageBody);
-};
-
-static InjectedBundleTest::Register<CanHandleRequestTest> registrar("CanHandleRequestTest");
-
-CanHandleRequestTest::CanHandleRequestTest(const std::string& identifier)
-    : InjectedBundleTest(identifier)
-{
-}
-
-static bool canHandleURL(const char* url)
-{
-    return WKBundlePageCanHandleRequest(adoptWK(WKURLRequestCreateWithWKURL(adoptWK(WKURLCreateWithUTF8CString(url)).get())).get());
-}
-
-static bool runTest()
-{
-    return canHandleURL("about:blank") && canHandleURL("emptyscheme://") && !canHandleURL("notascheme://");
-}
-
-void CanHandleRequestTest::didReceiveMessage(WKBundleRef bundle, WKStringRef messageName, WKTypeRef)
-{
-    if (!WKStringIsEqualToUTF8CString(messageName, "CheckCanHandleRequest"))
-        return;
-
-    WKBundlePostMessage(bundle, Util::toWK("DidCheckCanHandleRequest").get(), adoptWK(WKBooleanCreate(runTest())).get());
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/CookieManager.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/CookieManager.cpp
deleted file mode 100644
index df5fb2e..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/CookieManager.cpp
+++ /dev/null
@@ -1,87 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <WebKit2/WKCookieManager.h>
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-static bool testDone;
-// Make sure that the policy on the machine running the test is not changed after running the test.
-static WKHTTPCookieAcceptPolicy userPolicy;
-static WKHTTPCookieAcceptPolicy testPolicy;
-static WKRetainPtr<WKContextRef> wkContext;
-
-static void didGetTestHTTPCookieAcceptPolicy(WKHTTPCookieAcceptPolicy policy, WKErrorRef, void* context)
-{
-    EXPECT_EQ(reinterpret_cast<void*>(0x1234578), context);
-    EXPECT_EQ(testPolicy, policy);
-
-    WKCookieManagerRef cookieManager = WKContextGetCookieManager(wkContext.get());
-    WKCookieManagerSetHTTPCookieAcceptPolicy(cookieManager, userPolicy);
-
-    testDone = true;
-}
-
-static void didGetUserHTTPCookieAcceptPolicy(WKHTTPCookieAcceptPolicy policy, WKErrorRef, void* context)
-{
-    EXPECT_EQ(reinterpret_cast<void*>(0x1234578), context);
-
-    userPolicy = policy;
-
-    // Make sure to choose a policy different from the policy the user currently has set.
-    testPolicy = (userPolicy + 1) % 3;
-    WKCookieManagerRef cookieManager = WKContextGetCookieManager(wkContext.get());
-    WKCookieManagerSetHTTPCookieAcceptPolicy(cookieManager, testPolicy);
-    WKCookieManagerGetHTTPCookieAcceptPolicy(cookieManager, reinterpret_cast<void*>(0x1234578), didGetTestHTTPCookieAcceptPolicy);
-}
-
-static void didFinishLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef, const void*)
-{
-    WKCookieManagerRef cookieManager = WKContextGetCookieManager(wkContext.get());
-    WKCookieManagerGetHTTPCookieAcceptPolicy(cookieManager, reinterpret_cast<void*>(0x1234578), didGetUserHTTPCookieAcceptPolicy);
-}
-
-TEST(WebKit2, CookieManager)
-{
-    wkContext.adopt(WKContextCreate());
-    PlatformWebView webView(wkContext.get());
-
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-
-    loaderClient.version = 0;
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-    WKPageSetPageLoaderClient(webView.page(), &loaderClient);
-
-    WKPageLoadURL(webView.page(), adoptWK(WKURLCreateWithUTF8CString("about:blank")).get());
-
-    Util::run(&testDone);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionBasic.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionBasic.cpp
deleted file mode 100644
index 7ccddae..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionBasic.cpp
+++ /dev/null
@@ -1,134 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include "Test.h"
-#include <WebKit2/WKRetainPtr.h>
-#include <wtf/Vector.h>
-
-namespace TestWebKitAPI {
-
-static bool finished;
-
-static const char* expectedMessages[] = {
-"GlobalObjectIsAvailableForFrame called",
-"GlobalObjectIsAvailableForFrame called",
-"GlobalObjectIsAvailableForFrame called",
-"GlobalObjectIsAvailableForFrame called",
-"Subframe finished loading",
-"Extension states:\nFirst page, main frame, standard world - Connected\nFirst page, main frame, non-standard world - Connected\nFirst page, subframe, standard world - Connected\nFirst page, subframe, non-standard world - Connected\nSecond page, main frame, standard world - Uncreated\nSecond page, main frame, non-standard world - Uncreated",
-"Main frame finished loading",
-"Extension states:\nFirst page, main frame, standard world - Connected\nFirst page, main frame, non-standard world - Connected\nFirst page, subframe, standard world - Connected\nFirst page, subframe, non-standard world - Connected\nSecond page, main frame, standard world - Uncreated\nSecond page, main frame, non-standard world - Uncreated",
-"WillDisconnectDOMWindowExtensionFromGlobalObject called",
-"WillDisconnectDOMWindowExtensionFromGlobalObject called",
-"WillDisconnectDOMWindowExtensionFromGlobalObject called",
-"WillDisconnectDOMWindowExtensionFromGlobalObject called",
-"GlobalObjectIsAvailableForFrame called",
-"GlobalObjectIsAvailableForFrame called",
-"Main frame finished loading",
-"Extension states:\nFirst page, main frame, standard world - Disconnected\nFirst page, main frame, non-standard world - Disconnected\nFirst page, subframe, standard world - Disconnected\nFirst page, subframe, non-standard world - Disconnected\nSecond page, main frame, standard world - Connected\nSecond page, main frame, non-standard world - Connected",
-"WillDisconnectDOMWindowExtensionFromGlobalObject called",
-"WillDisconnectDOMWindowExtensionFromGlobalObject called",
-"DidReconnectDOMWindowExtensionToGlobalObject called",
-"DidReconnectDOMWindowExtensionToGlobalObject called",
-"DidReconnectDOMWindowExtensionToGlobalObject called",
-"DidReconnectDOMWindowExtensionToGlobalObject called",
-"Main frame finished loading",
-"Extension states:\nFirst page, main frame, standard world - Connected\nFirst page, main frame, non-standard world - Connected\nFirst page, subframe, standard world - Connected\nFirst page, subframe, non-standard world - Connected\nSecond page, main frame, standard world - Disconnected\nSecond page, main frame, non-standard world - Disconnected",
-"Extension states:\nFirst page, main frame, standard world - Removed\nFirst page, main frame, non-standard world - Removed\nFirst page, subframe, standard world - Removed\nFirst page, subframe, non-standard world - Removed\nSecond page, main frame, standard world - Removed\nSecond page, main frame, non-standard world - Removed",
-"TestComplete"
-};
-
-static Vector<WKRetainPtr<WKStringRef> > messages;
-
-static void didReceiveMessageFromInjectedBundle(WKContextRef, WKStringRef messageName, WKTypeRef messageBody, const void*)
-{
-    ASSERT_NOT_NULL(messageBody);
-    EXPECT_EQ(WKStringGetTypeID(), WKGetTypeID(messageBody));
-
-    WKStringRef bodyString = (WKStringRef)messageBody;
-    messages.append(bodyString);
-    
-    if (WKStringIsEqualToUTF8CString(messageName, "DidFinishLoadForMainFrame") || WKStringIsEqualToUTF8CString(messageName, "TestComplete"))
-        finished = true;
-}
-
-TEST(WebKit2, DISABLED_DOMWindowExtensionBasic)
-{
-    WKRetainPtr<WKPageGroupRef> pageGroup(AdoptWK, WKPageGroupCreateWithIdentifier(WKStringCreateWithUTF8CString("DOMWindowExtensionBasicPageGroup"))); 
-
-    WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextForInjectedBundleTest("DOMWindowExtensionBasic", pageGroup.get()));
-
-    WKContextInjectedBundleClient injectedBundleClient;
-    memset(&injectedBundleClient, 0, sizeof(injectedBundleClient));
-    injectedBundleClient.version = 0;
-    injectedBundleClient.clientInfo = 0;
-    injectedBundleClient.didReceiveMessageFromInjectedBundle = didReceiveMessageFromInjectedBundle;
-    WKContextSetInjectedBundleClient(context.get(), &injectedBundleClient);
-    
-    // The default cache model has a capacity of 0, so it is necessary to switch to a cache
-    // model that actually allows for a page cache.
-    WKContextSetCacheModel(context.get(), kWKCacheModelDocumentBrowser);
-
-    PlatformWebView webView(context.get(), pageGroup.get());
-    
-    // Make sure the extensions for each frame are installed in each world.
-    WKRetainPtr<WKURLRef> url1(AdoptWK, Util::createURLForResource("simple-iframe", "html"));
-    WKPageLoadURL(webView.page(), url1.get());
-
-    Util::run(&finished);
-    finished = false;
-    
-    // Make sure those first 4 extensions are disconnected, and 2 new ones are installed.
-    WKRetainPtr<WKURLRef> url2(AdoptWK, Util::createURLForResource("simple", "html"));
-    WKPageLoadURL(webView.page(), url2.get());
-
-    Util::run(&finished);
-    finished = false;
-
-    // Make sure those two are disconnected, and the first four are reconnected.
-    WKPageGoBack(webView.page());
-
-    Util::run(&finished);
-    finished = false;
-
-    // Make sure the 2 disconnected extensions in the page cache and the 4 active extensions are all removed.
-    WKPageClose(webView.page());
-
-    Util::run(&finished);
-        
-    const size_t expectedSize = sizeof(expectedMessages) / sizeof(const char*);
-    EXPECT_EQ(expectedSize, messages.size());
-    
-    if (messages.size() != expectedSize)
-        return;
-    
-    for (size_t i = 0; i < messages.size(); ++i)
-        EXPECT_WK_STREQ(expectedMessages[i], messages[i].get());
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionBasic_Bundle.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionBasic_Bundle.cpp
deleted file mode 100644
index 5b1296f..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionBasic_Bundle.cpp
+++ /dev/null
@@ -1,259 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleTest.h"
-#include <WebKit2/WKBundleDOMWindowExtension.h>
-#include <WebKit2/WKBundleFrame.h>
-#include <WebKit2/WKBundlePage.h>
-#include <WebKit2/WKBundlePageGroup.h>
-#include <WebKit2/WKBundlePrivate.h>
-#include <WebKit2/WKBundleScriptWorld.h>
-#include <WebKit2/WKRetainPtr.h>
-#include <wtf/HashMap.h>
-#include <assert.h>
-
-namespace TestWebKitAPI {
-
-static void didFinishLoadForFrameCallback(WKBundlePageRef, WKBundleFrameRef, WKTypeRef*, const void* clientInfo);
-static void globalObjectIsAvailableForFrameCallback(WKBundlePageRef, WKBundleFrameRef, WKBundleScriptWorldRef, const void* clientInfo);
-static void willDisconnectDOMWindowExtensionFromGlobalObjectCallback(WKBundlePageRef, WKBundleDOMWindowExtensionRef, const void* clientInfo);
-static void didReconnectDOMWindowExtensionToGlobalObjectCallback(WKBundlePageRef, WKBundleDOMWindowExtensionRef, const void* clientInfo);
-static void willDestroyGlobalObjectForDOMWindowExtensionCallback(WKBundlePageRef, WKBundleDOMWindowExtensionRef, const void* clientInfo);
-
-
-enum ExtensionState {
-    Uncreated = 0, Connected, Disconnected, Destroyed, Removed
-};
-
-const char* stateNames[5] = {
-    "Uncreated",
-    "Connected",
-    "Disconnected",
-    "Destroyed",
-    "Removed"
-};
-
-typedef struct {
-    const char* name;
-    ExtensionState state;
-} ExtensionRecord;
-    
-class DOMWindowExtensionBasic : public InjectedBundleTest {
-public:
-    DOMWindowExtensionBasic(const std::string& identifier);
-    
-    virtual void initialize(WKBundleRef, WKTypeRef userData);
-    virtual void didCreatePage(WKBundleRef, WKBundlePageRef);
-    virtual void willDestroyPage(WKBundleRef, WKBundlePageRef);
-    
-    void globalObjectIsAvailableForFrame(WKBundleFrameRef, WKBundleScriptWorldRef);
-    void willDisconnectDOMWindowExtensionFromGlobalObject(WKBundleDOMWindowExtensionRef);
-    void didReconnectDOMWindowExtensionToGlobalObject(WKBundleDOMWindowExtensionRef);
-    void willDestroyGlobalObjectForDOMWindowExtension(WKBundleDOMWindowExtensionRef);
-
-    void frameLoadFinished(WKBundleFrameRef);
-
-private:
-    void updateExtensionStateRecord(WKBundleDOMWindowExtensionRef, ExtensionState);
-    void sendExtensionStateMessage();
-    void sendBundleMessage(const char*);
-
-    WKBundleRef m_bundle;
-    ExtensionRecord m_extensionRecords[6];
-    HashMap<WKBundleDOMWindowExtensionRef, int> m_extensionToRecordMap;
-    bool m_finishedOneMainFrameLoad;
-};
-
-static InjectedBundleTest::Register<DOMWindowExtensionBasic> registrar("DOMWindowExtensionBasic");
-
-DOMWindowExtensionBasic::DOMWindowExtensionBasic(const std::string& identifier)
-    : InjectedBundleTest(identifier)
-    , m_finishedOneMainFrameLoad(false)
-{
-    m_extensionRecords[0].name = "First page, main frame, standard world";
-    m_extensionRecords[1].name = "First page, main frame, non-standard world";
-    m_extensionRecords[2].name = "First page, subframe, standard world";
-    m_extensionRecords[3].name = "First page, subframe, non-standard world";
-    m_extensionRecords[4].name = "Second page, main frame, standard world";
-    m_extensionRecords[5].name = "Second page, main frame, non-standard world";
-    
-    for (size_t i = 0; i < 6; ++i)
-        m_extensionRecords[i].state = Uncreated;
-}
-
-void DOMWindowExtensionBasic::frameLoadFinished(WKBundleFrameRef frame)
-{
-    bool mainFrame = !WKBundleFrameGetParentFrame(frame);
-    if (mainFrame)
-        m_finishedOneMainFrameLoad = true;
-
-    char body[16384];
-    sprintf(body, "%s finished loading", mainFrame ? "Main frame" : "Subframe");
-    
-    // Only consider load finished for the main frame
-    const char* name = mainFrame ? "DidFinishLoadForMainFrame" : "DidFinishLoadForFrame";
-
-    WKRetainPtr<WKStringRef> messageName = adoptWK(WKStringCreateWithUTF8CString(name));
-    WKRetainPtr<WKStringRef> messageBody = adoptWK(WKStringCreateWithUTF8CString(body));
-    WKBundlePostMessage(m_bundle, messageName.get(), messageBody.get());
-    
-    sendExtensionStateMessage();
-}
-
-void DOMWindowExtensionBasic::sendExtensionStateMessage()
-{
-    char body[16384];
-    sprintf(body, "Extension states:\n%s - %s\n%s - %s\n%s - %s\n%s - %s\n%s - %s\n%s - %s",
-        m_extensionRecords[0].name, stateNames[m_extensionRecords[0].state],
-        m_extensionRecords[1].name, stateNames[m_extensionRecords[1].state],
-        m_extensionRecords[2].name, stateNames[m_extensionRecords[2].state],
-        m_extensionRecords[3].name, stateNames[m_extensionRecords[3].state],
-        m_extensionRecords[4].name, stateNames[m_extensionRecords[4].state],
-        m_extensionRecords[5].name, stateNames[m_extensionRecords[5].state]);
-
-    WKRetainPtr<WKStringRef> messageName = adoptWK(WKStringCreateWithUTF8CString("ExtensionStates"));
-    WKRetainPtr<WKStringRef> messageBody = adoptWK(WKStringCreateWithUTF8CString(body));
-    WKBundlePostMessage(m_bundle, messageName.get(), messageBody.get());
-}
-
-void DOMWindowExtensionBasic::initialize(WKBundleRef bundle, WKTypeRef userData)
-{
-    assert(WKGetTypeID(userData) == WKBundlePageGroupGetTypeID());
-    WKBundlePageGroupRef pageGroup = static_cast<WKBundlePageGroupRef>(userData);
-
-    WKRetainPtr<WKStringRef> source(AdoptWK, WKStringCreateWithUTF8CString("alert('Unimportant alert');"));
-    WKBundleAddUserScript(bundle, pageGroup, WKBundleScriptWorldCreateWorld(), source.get(), 0, 0, 0, kWKInjectAtDocumentStart, kWKInjectInAllFrames);
-}
-
-void DOMWindowExtensionBasic::didCreatePage(WKBundleRef bundle, WKBundlePageRef page)
-{    
-    m_bundle = bundle;
-
-    WKBundlePageLoaderClient pageLoaderClient;
-    memset(&pageLoaderClient, 0, sizeof(pageLoaderClient));
-    
-    pageLoaderClient.version = 1;
-    pageLoaderClient.clientInfo = this;
-    pageLoaderClient.didFinishLoadForFrame = didFinishLoadForFrameCallback;
-    pageLoaderClient.globalObjectIsAvailableForFrame = globalObjectIsAvailableForFrameCallback;
-    pageLoaderClient.willDisconnectDOMWindowExtensionFromGlobalObject = willDisconnectDOMWindowExtensionFromGlobalObjectCallback;
-    pageLoaderClient.didReconnectDOMWindowExtensionToGlobalObject = didReconnectDOMWindowExtensionToGlobalObjectCallback;
-    pageLoaderClient.willDestroyGlobalObjectForDOMWindowExtension = willDestroyGlobalObjectForDOMWindowExtensionCallback;
-    
-    WKBundlePageSetPageLoaderClient(page, &pageLoaderClient);
-}
-
-void DOMWindowExtensionBasic::willDestroyPage(WKBundleRef, WKBundlePageRef)
-{
-    HashMap<WKBundleDOMWindowExtensionRef, int>::iterator it = m_extensionToRecordMap.begin();
-    HashMap<WKBundleDOMWindowExtensionRef, int>::iterator end = m_extensionToRecordMap.end();
-    for (; it != end; ++it) {
-        updateExtensionStateRecord(it->key, Removed);
-        WKRelease(it->key);
-    }
-
-    m_extensionToRecordMap.clear();
-
-    sendExtensionStateMessage();
-    sendBundleMessage("TestComplete");
-}
-    
-void DOMWindowExtensionBasic::updateExtensionStateRecord(WKBundleDOMWindowExtensionRef extension, ExtensionState state)
-{
-    int index = m_extensionToRecordMap.get(extension);
-    m_extensionRecords[index].state = state;
-}
-
-void DOMWindowExtensionBasic::sendBundleMessage(const char* message)
-{
-    WKRetainPtr<WKStringRef> wkMessage = adoptWK(WKStringCreateWithUTF8CString(message));
-    WKBundlePostMessage(m_bundle, wkMessage.get(), wkMessage.get());
-}
-
-void DOMWindowExtensionBasic::globalObjectIsAvailableForFrame(WKBundleFrameRef frame, WKBundleScriptWorldRef world)
-{
-    WKBundleDOMWindowExtensionRef extension = WKBundleDOMWindowExtensionCreate(frame, world);
-
-    int index;
-    bool standard;
-    standard = world == WKBundleScriptWorldNormalWorld();
-
-    if (WKBundleFrameGetParentFrame(frame))
-        index = standard ? 2 : 3;
-    else
-        index = m_finishedOneMainFrameLoad ? (standard ? 4 : 5) : (standard ? 0 : 1);
-
-    m_extensionToRecordMap.set(extension, index);
-
-    updateExtensionStateRecord(extension, Connected);
-    sendBundleMessage("GlobalObjectIsAvailableForFrame called");
-}
-
-void DOMWindowExtensionBasic::willDisconnectDOMWindowExtensionFromGlobalObject(WKBundleDOMWindowExtensionRef extension)
-{
-    updateExtensionStateRecord(extension, Disconnected);
-    sendBundleMessage("WillDisconnectDOMWindowExtensionFromGlobalObject called");
-}
-
-void DOMWindowExtensionBasic::didReconnectDOMWindowExtensionToGlobalObject(WKBundleDOMWindowExtensionRef extension)
-{
-    updateExtensionStateRecord(extension, Connected);
-    sendBundleMessage("DidReconnectDOMWindowExtensionToGlobalObject called");
-}
-
-void DOMWindowExtensionBasic::willDestroyGlobalObjectForDOMWindowExtension(WKBundleDOMWindowExtensionRef)
-{
-    // All of the items are candidates for the page cache and should not be evicted from the page
-    // cache before the test completes.
-    ASSERT_NOT_REACHED();
-}
-
-static void didFinishLoadForFrameCallback(WKBundlePageRef, WKBundleFrameRef frame, WKTypeRef*, const void *clientInfo)
-{
-    ((DOMWindowExtensionBasic*)clientInfo)->frameLoadFinished(frame);
-}
-
-static void globalObjectIsAvailableForFrameCallback(WKBundlePageRef, WKBundleFrameRef frame, WKBundleScriptWorldRef world, const void* clientInfo)
-{
-    ((DOMWindowExtensionBasic*)clientInfo)->globalObjectIsAvailableForFrame(frame, world);
-}
-
-static void willDisconnectDOMWindowExtensionFromGlobalObjectCallback(WKBundlePageRef, WKBundleDOMWindowExtensionRef extension, const void* clientInfo)
-{
-    ((DOMWindowExtensionBasic*)clientInfo)->willDisconnectDOMWindowExtensionFromGlobalObject(extension);
-}
-
-static void didReconnectDOMWindowExtensionToGlobalObjectCallback(WKBundlePageRef, WKBundleDOMWindowExtensionRef extension, const void* clientInfo)
-{
-    ((DOMWindowExtensionBasic*)clientInfo)->didReconnectDOMWindowExtensionToGlobalObject(extension);
-}
-
-static void willDestroyGlobalObjectForDOMWindowExtensionCallback(WKBundlePageRef, WKBundleDOMWindowExtensionRef extension , const void* clientInfo)
-{
-    ((DOMWindowExtensionBasic*)clientInfo)->willDestroyGlobalObjectForDOMWindowExtension(extension);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionNoCache.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionNoCache.cpp
deleted file mode 100644
index c19104e..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionNoCache.cpp
+++ /dev/null
@@ -1,133 +0,0 @@
-/*
-* Copyright (C) 2012 Apple Inc. All rights reserved.
-*
-* Redistribution and use in source and binary forms, with or without
-* modification, are permitted provided that the following conditions
-* are met:
-* 1. Redistributions of source code must retain the above copyright
-*    notice, this list of conditions and the following disclaimer.
-* 2. Redistributions in binary form must reproduce the above copyright
-*    notice, this list of conditions and the following disclaimer in the
-*    documentation and/or other materials provided with the distribution.
-*
-* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
-* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
-* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-* THE POSSIBILITY OF SUCH DAMAGE.
-*/
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include "Test.h"
-#include <wtf/Vector.h>
-
-namespace TestWebKitAPI {
-
-static bool finished;
-
-static const char* expectedMessages[] = {
-"GlobalObjectIsAvailableForFrame called",
-"GlobalObjectIsAvailableForFrame called",
-"GlobalObjectIsAvailableForFrame called",
-"GlobalObjectIsAvailableForFrame called",
-"Subframe finished loading",
-"Extension states:\nFirst page, main frame, standard world - Connected\nFirst page, main frame, non-standard world - Connected\nFirst page, subframe, standard world - Connected\nFirst page, subframe, non-standard world - Connected\nSecond page, main frame, standard world - Uncreated\nSecond page, main frame, non-standard world - Uncreated\nFirst page, main frame, standard world - Uncreated\nFirst page, main frame, non-standard world - Uncreated\nFirst page, subframe, standard world - Uncreated\nFirst page, subframe, non-standard world - Uncreated",
-"Main frame finished loading",
-"Extension states:\nFirst page, main frame, standard world - Connected\nFirst page, main frame, non-standard world - Connected\nFirst page, subframe, standard world - Connected\nFirst page, subframe, non-standard world - Connected\nSecond page, main frame, standard world - Uncreated\nSecond page, main frame, non-standard world - Uncreated\nFirst page, main frame, standard world - Uncreated\nFirst page, main frame, non-standard world - Uncreated\nFirst page, subframe, standard world - Uncreated\nFirst page, subframe, non-standard world - Uncreated",
-"WillDestroyDOMWindowExtensionToGlobalObject called",
-"WillDestroyDOMWindowExtensionToGlobalObject called",
-"WillDestroyDOMWindowExtensionToGlobalObject called",
-"WillDestroyDOMWindowExtensionToGlobalObject called",
-"GlobalObjectIsAvailableForFrame called",
-"GlobalObjectIsAvailableForFrame called",
-"Main frame finished loading",
-"Extension states:\nFirst page, main frame, standard world - Destroyed\nFirst page, main frame, non-standard world - Destroyed\nFirst page, subframe, standard world - Destroyed\nFirst page, subframe, non-standard world - Destroyed\nSecond page, main frame, standard world - Connected\nSecond page, main frame, non-standard world - Connected\nFirst page, main frame, standard world - Uncreated\nFirst page, main frame, non-standard world - Uncreated\nFirst page, subframe, standard world - Uncreated\nFirst page, subframe, non-standard world - Uncreated",
-"WillDestroyDOMWindowExtensionToGlobalObject called",
-"WillDestroyDOMWindowExtensionToGlobalObject called",
-"GlobalObjectIsAvailableForFrame called",
-"GlobalObjectIsAvailableForFrame called",
-"GlobalObjectIsAvailableForFrame called",
-"GlobalObjectIsAvailableForFrame called",
-"Subframe finished loading",
-"Extension states:\nFirst page, main frame, standard world - Destroyed\nFirst page, main frame, non-standard world - Destroyed\nFirst page, subframe, standard world - Destroyed\nFirst page, subframe, non-standard world - Destroyed\nSecond page, main frame, standard world - Destroyed\nSecond page, main frame, non-standard world - Destroyed\nFirst page, main frame, standard world - Connected\nFirst page, main frame, non-standard world - Connected\nFirst page, subframe, standard world - Connected\nFirst page, subframe, non-standard world - Connected",
-"Main frame finished loading",
-"Extension states:\nFirst page, main frame, standard world - Destroyed\nFirst page, main frame, non-standard world - Destroyed\nFirst page, subframe, standard world - Destroyed\nFirst page, subframe, non-standard world - Destroyed\nSecond page, main frame, standard world - Destroyed\nSecond page, main frame, non-standard world - Destroyed\nFirst page, main frame, standard world - Connected\nFirst page, main frame, non-standard world - Connected\nFirst page, subframe, standard world - Connected\nFirst page, subframe, non-standard world - Connected",
-"Extension states:\nFirst page, main frame, standard world - Destroyed\nFirst page, main frame, non-standard world - Destroyed\nFirst page, subframe, standard world - Destroyed\nFirst page, subframe, non-standard world - Destroyed\nSecond page, main frame, standard world - Destroyed\nSecond page, main frame, non-standard world - Destroyed\nFirst page, main frame, standard world - Removed\nFirst page, main frame, non-standard world - Removed\nFirst page, subframe, standard world - Removed\nFirst page, subframe, non-standard world - Removed",
-"TestComplete"
-};
-
-static Vector<WKRetainPtr<WKStringRef> > messages;
-
-static void didReceiveMessageFromInjectedBundle(WKContextRef, WKStringRef messageName, WKTypeRef messageBody, const void*)
-{
-    ASSERT_NOT_NULL(messageBody);
-    EXPECT_EQ(WKStringGetTypeID(), WKGetTypeID(messageBody));
-
-    WKStringRef bodyString = (WKStringRef)messageBody;
-    messages.append(bodyString);
-
-    if (WKStringIsEqualToUTF8CString(messageName, "DidFinishLoadForMainFrame") || WKStringIsEqualToUTF8CString(messageName, "TestComplete"))
-      finished = true;
-}
-
-TEST(WebKit2, DOMWindowExtensionNoCache)
-{
-    WKRetainPtr<WKPageGroupRef> pageGroup(AdoptWK, WKPageGroupCreateWithIdentifier(WKStringCreateWithUTF8CString("DOMWindowExtensionNoCachePageGroup")));
-
-    WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextForInjectedBundleTest("DOMWindowExtensionNoCache", pageGroup.get()));
-
-    WKContextInjectedBundleClient injectedBundleClient;
-    memset(&injectedBundleClient, 0, sizeof(injectedBundleClient));
-    injectedBundleClient.version = kWKContextInjectedBundleClientCurrentVersion;
-    injectedBundleClient.clientInfo = 0;
-    injectedBundleClient.didReceiveMessageFromInjectedBundle = didReceiveMessageFromInjectedBundle;
-    WKContextSetInjectedBundleClient(context.get(), &injectedBundleClient);
-
-    // Disable the page cache.
-    WKContextSetCacheModel(context.get(), kWKCacheModelDocumentViewer);
-
-    PlatformWebView webView(context.get(), pageGroup.get());
-
-    // Make sure the extensions for each frame are installed in each world.
-    WKRetainPtr<WKURLRef> url1(AdoptWK, Util::createURLForResource("simple-iframe", "html"));
-    WKPageLoadURL(webView.page(), url1.get());
-
-    Util::run(&finished);
-    finished = false;
-
-    // Make sure those first 4 extensions are destroyed, and 2 new ones are installed.
-    WKRetainPtr<WKURLRef> url2(AdoptWK, Util::createURLForResource("simple", "html"));
-    WKPageLoadURL(webView.page(), url2.get());
-
-    Util::run(&finished);
-    finished = false;
-
-    // Make sure those 2 are destroyed, and the first 4 are recreated.
-    WKPageGoBack(webView.page());
-
-    Util::run(&finished);
-    finished = false;
-
-    WKPageClose(webView.page());
-
-    Util::run(&finished);
-
-    const size_t expectedSize = sizeof(expectedMessages) / sizeof(const char*);
-    EXPECT_EQ(expectedSize, messages.size());
-
-    if (messages.size() != expectedSize)
-      return;
-
-    for (size_t i = 0; i < messages.size(); ++i)
-      EXPECT_WK_STREQ(expectedMessages[i], messages[i].get());
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionNoCache_Bundle.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionNoCache_Bundle.cpp
deleted file mode 100644
index 411e115..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/DOMWindowExtensionNoCache_Bundle.cpp
+++ /dev/null
@@ -1,278 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleTest.h"
-#include <WebKit2/WKBundleDOMWindowExtension.h>
-#include <WebKit2/WKBundleFrame.h>
-#include <WebKit2/WKBundlePage.h>
-#include <WebKit2/WKBundlePageGroup.h>
-#include <WebKit2/WKBundlePrivate.h>
-#include <WebKit2/WKBundleScriptWorld.h>
-#include <WebKit2/WKRetainPtr.h>
-#include <wtf/HashMap.h>
-#include <assert.h>
-
-namespace TestWebKitAPI {
-
-static void didFinishLoadForFrameCallback(WKBundlePageRef, WKBundleFrameRef, WKTypeRef*, const void* clientInfo);
-static void globalObjectIsAvailableForFrameCallback(WKBundlePageRef, WKBundleFrameRef, WKBundleScriptWorldRef, const void* clientInfo);
-static void willDisconnectDOMWindowExtensionFromGlobalObjectCallback(WKBundlePageRef, WKBundleDOMWindowExtensionRef, const void* clientInfo);
-static void didReconnectDOMWindowExtensionToGlobalObjectCallback(WKBundlePageRef, WKBundleDOMWindowExtensionRef, const void* clientInfo);
-static void willDestroyGlobalObjectForDOMWindowExtensionCallback(WKBundlePageRef, WKBundleDOMWindowExtensionRef, const void* clientInfo);
-
-enum ExtensionState {
-    Uncreated = 0, Connected, Disconnected, Destroyed, Removed
-};
-
-const char* states[5] = {
-    "Uncreated",
-    "Connected",
-    "Disconnected",
-    "Destroyed",
-    "Removed"
-};
-
-typedef struct {
-    const char* name;
-    ExtensionState state;
-} ExtensionRecord;
-
-class DOMWindowExtensionNoCache : public InjectedBundleTest {
-public:
-    DOMWindowExtensionNoCache(const std::string& identifier);
-
-    virtual void initialize(WKBundleRef, WKTypeRef userData);
-    virtual void didCreatePage(WKBundleRef, WKBundlePageRef);
-    virtual void willDestroyPage(WKBundleRef, WKBundlePageRef);
-
-    void globalObjectIsAvailableForFrame(WKBundleFrameRef, WKBundleScriptWorldRef);
-    void willDisconnectDOMWindowExtensionFromGlobalObject(WKBundleDOMWindowExtensionRef);
-    void didReconnectDOMWindowExtensionToGlobalObject(WKBundleDOMWindowExtensionRef);
-    void willDestroyGlobalObjectForDOMWindowExtension(WKBundleDOMWindowExtensionRef);
-
-    void frameLoadFinished(WKBundleFrameRef);
-
-private:
-    void updateExtensionStateRecord(WKBundleDOMWindowExtensionRef, ExtensionState);
-    void sendExtensionStateMessage();
-    void sendBundleMessage(const char*);
-
-    WKBundleRef m_bundle;
-    ExtensionRecord m_extensionRecords[10];
-    HashMap<WKBundleDOMWindowExtensionRef, int> m_extensionToRecordMap;
-    int m_numberMainFrameLoads;
-};
-
-static InjectedBundleTest::Register<DOMWindowExtensionNoCache> registrar("DOMWindowExtensionNoCache");
-
-DOMWindowExtensionNoCache::DOMWindowExtensionNoCache(const std::string& identifier)
-    : InjectedBundleTest(identifier)
-    , m_numberMainFrameLoads(0)
-{
-    m_extensionRecords[0].name = "First page, main frame, standard world";
-    m_extensionRecords[1].name = "First page, main frame, non-standard world";
-    m_extensionRecords[2].name = "First page, subframe, standard world";
-    m_extensionRecords[3].name = "First page, subframe, non-standard world";
-    m_extensionRecords[4].name = "Second page, main frame, standard world";
-    m_extensionRecords[5].name = "Second page, main frame, non-standard world";
-    m_extensionRecords[6].name = "First page, main frame, standard world";
-    m_extensionRecords[7].name = "First page, main frame, non-standard world";
-    m_extensionRecords[8].name = "First page, subframe, standard world";
-    m_extensionRecords[9].name = "First page, subframe, non-standard world";
-
-    for (size_t i = 0; i < 10; ++i)
-      m_extensionRecords[i].state = Uncreated;
-}
-
-void DOMWindowExtensionNoCache::frameLoadFinished(WKBundleFrameRef frame)
-{
-    bool mainFrame = !WKBundleFrameGetParentFrame(frame);
-    if (mainFrame)
-        m_numberMainFrameLoads++;
-
-    char body[16384];
-    sprintf(body, "%s finished loading", mainFrame ? "Main frame" : "Subframe");
-
-    // Only consider load finished for the main frame
-    const char* name = mainFrame ? "DidFinishLoadForMainFrame" : "DidFinishLoadForFrame";
-
-    WKRetainPtr<WKStringRef> messageName = adoptWK(WKStringCreateWithUTF8CString(name));
-    WKRetainPtr<WKStringRef> messageBody = adoptWK(WKStringCreateWithUTF8CString(body));
-    WKBundlePostMessage(m_bundle, messageName.get(), messageBody.get());
-
-    sendExtensionStateMessage();
-}
-
-void DOMWindowExtensionNoCache::sendExtensionStateMessage()
-{
-    char body[16384];
-    sprintf(body, "Extension states:\n%s - %s\n%s - %s\n%s - %s\n%s - %s\n%s - %s\n%s - %s\n%s - %s\n%s - %s\n%s - %s\n%s - %s",
-            m_extensionRecords[0].name, states[m_extensionRecords[0].state],
-            m_extensionRecords[1].name, states[m_extensionRecords[1].state],
-            m_extensionRecords[2].name, states[m_extensionRecords[2].state],
-            m_extensionRecords[3].name, states[m_extensionRecords[3].state],
-            m_extensionRecords[4].name, states[m_extensionRecords[4].state],
-            m_extensionRecords[5].name, states[m_extensionRecords[5].state],
-            m_extensionRecords[6].name, states[m_extensionRecords[6].state],
-            m_extensionRecords[7].name, states[m_extensionRecords[7].state],
-            m_extensionRecords[8].name, states[m_extensionRecords[8].state],
-            m_extensionRecords[9].name, states[m_extensionRecords[9].state]);
-
-    WKRetainPtr<WKStringRef> messageName = adoptWK(WKStringCreateWithUTF8CString("ExtensionStates"));
-    WKRetainPtr<WKStringRef> messageBody = adoptWK(WKStringCreateWithUTF8CString(body));
-    WKBundlePostMessage(m_bundle, messageName.get(), messageBody.get());
-}
-
-void DOMWindowExtensionNoCache::initialize(WKBundleRef bundle, WKTypeRef userData)
-{
-    assert(WKGetTypeID(userData) == WKBundlePageGroupGetTypeID());
-    WKBundlePageGroupRef pageGroup = static_cast<WKBundlePageGroupRef>(userData);
-
-    WKRetainPtr<WKStringRef> source(AdoptWK, WKStringCreateWithUTF8CString("alert('Unimportant alert');"));
-    WKBundleAddUserScript(bundle, pageGroup, WKBundleScriptWorldCreateWorld(), source.get(), 0, 0, 0, kWKInjectAtDocumentStart, kWKInjectInAllFrames);
-}
-
-void DOMWindowExtensionNoCache::didCreatePage(WKBundleRef bundle, WKBundlePageRef page)
-{
-    m_bundle = bundle;
-
-    WKBundlePageLoaderClient pageLoaderClient;
-    memset(&pageLoaderClient, 0, sizeof(pageLoaderClient));
-
-    pageLoaderClient.version = kWKBundlePageLoaderClientCurrentVersion;
-    pageLoaderClient.clientInfo = this;
-    pageLoaderClient.didFinishLoadForFrame = didFinishLoadForFrameCallback;
-    pageLoaderClient.globalObjectIsAvailableForFrame = globalObjectIsAvailableForFrameCallback;
-    pageLoaderClient.willDisconnectDOMWindowExtensionFromGlobalObject = willDisconnectDOMWindowExtensionFromGlobalObjectCallback;
-    pageLoaderClient.didReconnectDOMWindowExtensionToGlobalObject = didReconnectDOMWindowExtensionToGlobalObjectCallback;
-    pageLoaderClient.willDestroyGlobalObjectForDOMWindowExtension = willDestroyGlobalObjectForDOMWindowExtensionCallback;
-
-    WKBundlePageSetPageLoaderClient(page, &pageLoaderClient);
-}
-
-void DOMWindowExtensionNoCache::willDestroyPage(WKBundleRef, WKBundlePageRef)
-{
-    HashMap<WKBundleDOMWindowExtensionRef, int>::iterator it = m_extensionToRecordMap.begin();
-    HashMap<WKBundleDOMWindowExtensionRef, int>::iterator end = m_extensionToRecordMap.end();
-    for (; it != end; ++it) {
-        updateExtensionStateRecord(it->key, Removed);
-        WKRelease(it->key);
-    }
-
-    m_extensionToRecordMap.clear();
-
-    sendExtensionStateMessage();
-    sendBundleMessage("TestComplete");
-}
-
-void DOMWindowExtensionNoCache::updateExtensionStateRecord(WKBundleDOMWindowExtensionRef extension, ExtensionState state)
-{
-    int index = m_extensionToRecordMap.get(extension);
-    m_extensionRecords[index].state = state;
-}
-
-void DOMWindowExtensionNoCache::sendBundleMessage(const char* message)
-{
-    WKRetainPtr<WKStringRef> wkMessage = adoptWK(WKStringCreateWithUTF8CString(message));
-    WKBundlePostMessage(m_bundle, wkMessage.get(), wkMessage.get());
-}
-
-void DOMWindowExtensionNoCache::globalObjectIsAvailableForFrame(WKBundleFrameRef frame, WKBundleScriptWorldRef world)
-{
-    WKBundleDOMWindowExtensionRef extension = WKBundleDOMWindowExtensionCreate(frame, world);
-
-    int index;
-    bool standard;
-    standard = world == WKBundleScriptWorldNormalWorld();
-
-    bool mainFrame = !WKBundleFrameGetParentFrame(frame);
-    switch (m_numberMainFrameLoads) {
-    case 0:
-        index = mainFrame ? (standard ? 0 : 1) : (standard ? 2 : 3);
-        break;
-    case 1:
-        index = standard ? 4 : 5;
-        break;
-    case 2:
-        index = mainFrame ? (standard ? 6 : 7) : (standard ? 8 : 9);
-        break;
-    default:
-        ASSERT_NOT_REACHED();
-        break;
-    }
-
-    m_extensionToRecordMap.set(extension, index);
-
-    updateExtensionStateRecord(extension, Connected);
-    sendBundleMessage("GlobalObjectIsAvailableForFrame called");
-}
-
-void DOMWindowExtensionNoCache::willDisconnectDOMWindowExtensionFromGlobalObject(WKBundleDOMWindowExtensionRef extension)
-{
-    // No items should be going into a 0-capacity page cache.
-    ASSERT_NOT_REACHED();
-}
-
-void DOMWindowExtensionNoCache::didReconnectDOMWindowExtensionToGlobalObject(WKBundleDOMWindowExtensionRef)
-{
-    // No items should be coming out of a 0-capacity page cache.
-    ASSERT_NOT_REACHED();
-}
-
-void DOMWindowExtensionNoCache::willDestroyGlobalObjectForDOMWindowExtension(WKBundleDOMWindowExtensionRef extension)
-{
-    sendBundleMessage("WillDestroyDOMWindowExtensionToGlobalObject called");
-    updateExtensionStateRecord(extension, Destroyed);
-    m_extensionToRecordMap.remove(extension);
-    WKRelease(extension);
-}
-
-static void didFinishLoadForFrameCallback(WKBundlePageRef, WKBundleFrameRef frame, WKTypeRef*, const void *clientInfo)
-{
-    ((DOMWindowExtensionNoCache*)clientInfo)->frameLoadFinished(frame);
-}
-
-static void globalObjectIsAvailableForFrameCallback(WKBundlePageRef, WKBundleFrameRef frame, WKBundleScriptWorldRef world, const void* clientInfo)
-{
-    ((DOMWindowExtensionNoCache*)clientInfo)->globalObjectIsAvailableForFrame(frame, world);
-}
-
-static void willDisconnectDOMWindowExtensionFromGlobalObjectCallback(WKBundlePageRef, WKBundleDOMWindowExtensionRef extension, const void* clientInfo)
-{
-    ((DOMWindowExtensionNoCache*)clientInfo)->willDisconnectDOMWindowExtensionFromGlobalObject(extension);
-}
-
-static void didReconnectDOMWindowExtensionToGlobalObjectCallback(WKBundlePageRef, WKBundleDOMWindowExtensionRef extension, const void* clientInfo)
-{
-    ((DOMWindowExtensionNoCache*)clientInfo)->didReconnectDOMWindowExtensionToGlobalObject(extension);
-}
-
-static void willDestroyGlobalObjectForDOMWindowExtensionCallback(WKBundlePageRef, WKBundleDOMWindowExtensionRef extension , const void* clientInfo)
-{
-    ((DOMWindowExtensionNoCache*)clientInfo)->willDestroyGlobalObjectForDOMWindowExtension(extension);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/DocumentStartUserScriptAlertCrash.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/DocumentStartUserScriptAlertCrash.cpp
deleted file mode 100644
index 7559da2..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/DocumentStartUserScriptAlertCrash.cpp
+++ /dev/null
@@ -1,66 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include "Test.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-static bool done;
-
-static void runJavaScriptAlert(WKPageRef page, WKStringRef alertText, WKFrameRef frame, const void* clientInfo)
-{
-    ASSERT_NOT_NULL(frame);
-
-    EXPECT_EQ(page, WKFrameGetPage(frame));
-    EXPECT_WK_STREQ("an alert", alertText);
-
-    done = true;
-}
-
-TEST(WebKit2, DocumentStartUserScriptAlertCrashTest)
-{
-    WKRetainPtr<WKPageGroupRef> pageGroup(AdoptWK, WKPageGroupCreateWithIdentifier(WKStringCreateWithUTF8CString("DocumentStartUserScriptAlertCrashTestPageGroup"))); 
-
-    WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextForInjectedBundleTest("DocumentStartUserScriptAlertCrashTest", pageGroup.get()));
-    PlatformWebView webView(context.get(), pageGroup.get());
-
-    WKPageUIClient uiClient;
-    memset(&uiClient, 0, sizeof(uiClient));
-    uiClient.version = 0;
-    uiClient.clientInfo = 0;
-    uiClient.runJavaScriptAlert = runJavaScriptAlert;
-    WKPageSetPageUIClient(webView.page(), &uiClient);
-
-    WKRetainPtr<WKURLRef> url(AdoptWK, Util::createURLForResource("simple", "html"));
-    WKPageLoadURL(webView.page(), url.get());
-
-    Util::run(&done);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/DocumentStartUserScriptAlertCrash_Bundle.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/DocumentStartUserScriptAlertCrash_Bundle.cpp
deleted file mode 100644
index 30805f7..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/DocumentStartUserScriptAlertCrash_Bundle.cpp
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleTest.h"
-#include <WebKit2/WKBundlePageGroup.h>
-#include <WebKit2/WKBundlePrivate.h>
-#include <WebKit2/WKBundleScriptWorld.h>
-#include <WebKit2/WKRetainPtr.h>
-#include <assert.h>
-
-namespace TestWebKitAPI {
-
-class DocumentStartUserScriptAlertCrashTest : public InjectedBundleTest {
-public:
-    DocumentStartUserScriptAlertCrashTest(const std::string& identifier)
-        : InjectedBundleTest(identifier)
-    {
-    }
-
-    virtual void initialize(WKBundleRef bundle, WKTypeRef userData)
-    {
-        assert(WKGetTypeID(userData) == WKBundlePageGroupGetTypeID());
-        WKBundlePageGroupRef pageGroup = static_cast<WKBundlePageGroupRef>(userData);
-
-        WKRetainPtr<WKStringRef> source(AdoptWK, WKStringCreateWithUTF8CString("alert('an alert');"));
-        WKBundleAddUserScript(bundle, pageGroup, WKBundleScriptWorldNormalWorld(), source.get(), 0, 0, 0, kWKInjectAtDocumentStart, kWKInjectInAllFrames);
-    }
-};
-
-static InjectedBundleTest::Register<DocumentStartUserScriptAlertCrashTest> registrar("DocumentStartUserScriptAlertCrashTest");
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/DownloadDecideDestinationCrash.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/DownloadDecideDestinationCrash.cpp
deleted file mode 100644
index f360646..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/DownloadDecideDestinationCrash.cpp
+++ /dev/null
@@ -1,81 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <WebKit2/WKDownload.h>
-
-namespace TestWebKitAPI {
-
-static bool didDecideDestination;
-
-static void decidePolicyForNavigationAction(WKPageRef, WKFrameRef, WKFrameNavigationType, WKEventModifiers, WKEventMouseButton, WKURLRequestRef, WKFramePolicyListenerRef listener, WKTypeRef, const void*)
-{
-    WKFramePolicyListenerDownload(listener);
-}
-
-static WKStringRef decideDestinationWithSuggestedFilename(WKContextRef, WKDownloadRef download, WKStringRef, bool*, const void*)
-{
-    didDecideDestination = true;
-    WKDownloadCancel(download);
-    return Util::toWK("does not matter").leakRef();
-}
-
-static void setContextDownloadClient(WKContextRef context)
-{
-    WKContextDownloadClient client;
-    memset(&client, 0, sizeof(client));
-    client.decideDestinationWithSuggestedFilename = decideDestinationWithSuggestedFilename;
-
-    WKContextSetDownloadClient(context, &client);
-}
-
-static void setPagePolicyClient(WKPageRef page)
-{
-    WKPagePolicyClient policyClient;
-    memset(&policyClient, 0, sizeof(policyClient));
-    policyClient.decidePolicyForNavigationAction = decidePolicyForNavigationAction;
-
-    WKPageSetPagePolicyClient(page, &policyClient);
-}
-
-TEST(WebKit2, DownloadDecideDestinationCrash)
-{
-    WKRetainPtr<WKContextRef> context = adoptWK(WKContextCreate());
-    setContextDownloadClient(context.get());
-
-    PlatformWebView webView(context.get());
-    setPagePolicyClient(webView.page());
-
-    // The length of this filename was specially chosen to trigger the crash conditions in
-    // <http://webkit.org/b/61142>. Specifically, it causes ArgumentDecoder::m_bufferPos and m_bufferEnd
-    // to be equal after the DecideDestinationWithSuggestedFilename message has been handled.
-    WKPageLoadURL(webView.page(), adoptWK(Util::createURLForResource("18-characters", "html")).get());
-
-    Util::run(&didDecideDestination);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/EvaluateJavaScript.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/EvaluateJavaScript.cpp
deleted file mode 100644
index 90ad04f..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/EvaluateJavaScript.cpp
+++ /dev/null
@@ -1,60 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include "Test.h"
-#include <WebKit2/WKRetainPtr.h>
-#include <WebKit2/WKSerializedScriptValue.h>
-
-namespace TestWebKitAPI {
-
-static bool testDone;
-
-static void didRunJavaScript(WKSerializedScriptValueRef resultSerializedScriptValue, WKErrorRef error, void* context)
-{
-    EXPECT_EQ(reinterpret_cast<void*>(0x1234578), context);
-    EXPECT_NULL(resultSerializedScriptValue);
-
-    // FIXME: We should also check the error, but right now it's always null.
-    // Assert that it's null so we can revisit when this changes.
-    EXPECT_NULL(error);
-
-    testDone = true;
-}
-
-TEST(WebKit2, EvaluateJavaScriptThatThrowsAnException)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate());
-    PlatformWebView webView(context.get());
-
-    WKRetainPtr<WKStringRef> javaScriptString(AdoptWK, WKStringCreateWithUTF8CString("throw 'Hello'"));
-    WKPageRunJavaScriptInMainFrame(webView.page(), javaScriptString.get(), reinterpret_cast<void*>(0x1234578), didRunJavaScript);
-
-    Util::run(&testDone);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/FailedLoad.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/FailedLoad.cpp
deleted file mode 100644
index 99b1b97..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/FailedLoad.cpp
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include "Test.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-// FIXME: This should also test the that the load state after didFailLoadWithErrorForFrame is kWKFrameLoadStateFinished
-
-static bool testDone;
-
-static void didFailProvisionalLoadWithErrorForFrame(WKPageRef page, WKFrameRef frame, WKErrorRef error, WKTypeRef userData, const void* clientInfo)
-{
-    EXPECT_EQ(static_cast<uint32_t>(kWKFrameLoadStateFinished), WKFrameGetFrameLoadState(frame));
-
-    WKURLRef url = WKFrameCopyProvisionalURL(frame);
-    EXPECT_NULL(url);
-
-    testDone = true;
-}
-
-TEST(WebKit2, FailedLoad)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate());
-    PlatformWebView webView(context.get());
-
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-
-    loaderClient.version = 0;
-    loaderClient.clientInfo = 0;
-    loaderClient.didFailProvisionalLoadWithErrorForFrame = didFailProvisionalLoadWithErrorForFrame;
-    WKPageSetPageLoaderClient(webView.page(), &loaderClient);
-
-    WKRetainPtr<WKURLRef> url(AdoptWK, Util::URLForNonExistentResource());
-    WKPageLoadURL(webView.page(), url.get());
-
-    Util::run(&testDone);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/Find.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/Find.cpp
deleted file mode 100644
index 2717c13..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/Find.cpp
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-static bool didFinishLoad = false;
-static bool didCallCountStringMatches = false;
-
-static void didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo)
-{
-    didFinishLoad = true;
-}
-
-static void didCountStringMatches(WKPageRef page, WKStringRef string, unsigned numMatches, const void* clientInfo)
-{
-    EXPECT_WK_STREQ("Hello", string);
-    EXPECT_EQ(3u, numMatches);
-
-    didCallCountStringMatches = true;
-}
-
-TEST(WebKit2, Find)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate());
-    PlatformWebView webView(context.get());
-    
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-    
-    loaderClient.version = 0;
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-    WKPageSetPageLoaderClient(webView.page(), &loaderClient);
-
-    WKPageFindClient findClient;
-    memset(&findClient, 0, sizeof(findClient));
-
-    findClient.version = 0;
-    findClient.didCountStringMatches = didCountStringMatches;
-    WKPageSetPageFindClient(webView.page(), &findClient);
-
-    WKRetainPtr<WKURLRef> url(AdoptWK, Util::createURLForResource("find", "html"));
-    WKPageLoadURL(webView.page(), url.get());
-
-    Util::run(&didFinishLoad);
-
-    WKRetainPtr<WKStringRef> findString(AdoptWK, WKStringCreateWithUTF8CString("Hello"));
-    WKPageCountStringMatches(webView.page(), findString.get(), true, 100);
-
-    Util::run(&didCallCountStringMatches);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/FindMatches.mm b/Tools/TestWebKitAPI/Tests/WebKit2/FindMatches.mm
deleted file mode 100644
index 4b08972..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/FindMatches.mm
+++ /dev/null
@@ -1,144 +0,0 @@
-/*
- * Copyright (C) 2013 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#import <WebKit/WebDocumentPrivate.h>
-#import <WebKit/DOMPrivate.h>
-#include <WebKit2/WKImage.h>
-#import <wtf/RetainPtr.h>
-
-@interface FindMatchesWK1FrameLoadDelegate : NSObject {
-}
-@end
-
-static bool didFinishLoadWK1;
-
-@implementation FindMatchesWK1FrameLoadDelegate
-
-- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
-{
-    didFinishLoadWK1 = true;
-}
-
-@end
-
-namespace TestWebKitAPI {
-
-static bool didFinishLoad = false;
-static bool didCallFindStringMatches = false;
-static bool didCallGetImage = false;
-
-RetainPtr<WebView> webkit1View;
-
-static void didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo)
-{
-    didFinishLoad = true;
-}
-
-static void didFindStringMatches(WKPageRef page, WKStringRef string, WKArrayRef matches, int firstIndex, const void* clientInfo)
-{
-    EXPECT_WK_STREQ("Hello", string);
-    size_t numMatches = WKArrayGetSize(matches);
-    EXPECT_EQ(3u, numMatches);
-
-    for (size_t i = 0; i < numMatches; ++i) {
-        WKTypeRef items = WKArrayGetItemAtIndex(matches, i);
-        WKTypeID type = WKGetTypeID(items);
-        EXPECT_EQ(type, WKArrayGetTypeID());
-        WKArrayRef rects = reinterpret_cast<WKArrayRef>(items);
-        size_t numRects = WKArrayGetSize(rects);
-        EXPECT_EQ(1u, numRects);
-        items = WKArrayGetItemAtIndex(rects, 0);
-        type = WKGetTypeID(items);
-        EXPECT_EQ(type, WKRectGetTypeID());
-        WKRect rect = WKRectGetValue(reinterpret_cast<WKRectRef>(items));
-        rect = rect;
-    }
-    didCallFindStringMatches = true;
-}
-
-static void didGetImageForMatchResult(WKPageRef page, WKImageRef image, uint32_t index, const void* clientInfo)
-{
-    WKSize size = WKImageGetSize(image);
-
-    DOMDocument *document = webkit1View.get().mainFrameDocument;
-    DOMRange *range = [document createRange];
-    DOMNode *target = [document getElementById:@"target"];
-    [range selectNode:target];
-    NSImage *expectedImage = [range renderedImageForcingBlackText:YES];
-    NSSize expectedSize = [expectedImage size];
-    EXPECT_EQ(size.width, expectedSize.width);
-    EXPECT_EQ(size.height, expectedSize.height);
-    didCallGetImage = true;
-}
-
-TEST(WebKit2, FindMatches)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate());
-    PlatformWebView webView(context.get());
-    
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-    
-    loaderClient.version = 0;
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-    WKPageSetPageLoaderClient(webView.page(), &loaderClient);
-
-    WKPageFindMatchesClient findMatchesClient;
-    memset(&findMatchesClient, 0, sizeof(findMatchesClient));
-
-    findMatchesClient.version = 0;
-    findMatchesClient.didFindStringMatches = didFindStringMatches;
-    findMatchesClient.didGetImageForMatchResult = didGetImageForMatchResult;
-
-    WKPageSetPageFindMatchesClient(webView.page(), &findMatchesClient);
-
-    WKRetainPtr<WKURLRef> url(AdoptWK, Util::createURLForResource("find", "html"));
-    WKPageLoadURL(webView.page(), url.get());
-
-    Util::run(&didFinishLoad);
-
-    WKRetainPtr<WKStringRef> findString(AdoptWK, WKStringCreateWithUTF8CString("Hello"));
- 
-    WKPageFindStringMatches(webView.page(), findString.get(), true, 100);
-    Util::run(&didCallFindStringMatches);
-
-    webkit1View.adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-    RetainPtr<FindMatchesWK1FrameLoadDelegate> frameLoadDelegate(AdoptNS, [FindMatchesWK1FrameLoadDelegate new]);
-
-    webkit1View.get().frameLoadDelegate = frameLoadDelegate.get();
-    [webkit1View.get().mainFrame loadHTMLString:@"Test search. Hello <span id=\"target\">Hello</span> Hello!" baseURL:[NSURL URLWithString:@"about:blank"]];
-
-    Util::run(&didFinishLoadWK1);
-
-    WKPageGetImageForFindMatch(webView.page(), 0);
-    Util::run(&didCallGetImage);
-
-    WKPageHideFindUI(webView.page());
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/ForceRepaint.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/ForceRepaint.cpp
deleted file mode 100644
index 08873f8..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/ForceRepaint.cpp
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include "Test.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-static bool test1Done;
-static bool test2Done;
-    
-void didForceRepaint(WKErrorRef error, void*)
-{
-    EXPECT_NULL(error);
-    test2Done = true;
-}
-
-static void didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo)
-{
-    test1Done = true;
-    WKPageForceRepaint(page, 0, didForceRepaint);
-}
-
-TEST(WebKit2, ForceRepaint)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate());
-    PlatformWebView webView(context.get());
-
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-
-    loaderClient.version = 0;
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-    WKPageSetPageLoaderClient(webView.page(), &loaderClient);
-
-    WKRetainPtr<WKURLRef> url(AdoptWK, Util::createURLForResource("simple-accelerated-compositing", "html"));
-    WKPageLoadURL(webView.page(), url.get());
-
-    Util::run(&test1Done);
-    Util::run(&test2Done);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/FrameMIMETypeHTML.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/FrameMIMETypeHTML.cpp
deleted file mode 100644
index 7349866..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/FrameMIMETypeHTML.cpp
+++ /dev/null
@@ -1,77 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include "Test.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-static bool testDone;
-
-static void didStartProvisionalLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo)
-{
-    WKRetainPtr<WKStringRef> wkMIME = adoptWK(WKFrameCopyMIMEType(frame));
-    EXPECT_TRUE(WKStringIsEmpty(wkMIME.get()));
-}
-
-static void didCommitLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo)
-{
-    WKRetainPtr<WKStringRef> wkMIME = adoptWK(WKFrameCopyMIMEType(frame));
-    EXPECT_WK_STREQ("text/html", wkMIME);
-}
-
-static void didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo)
-{
-    WKRetainPtr<WKStringRef> wkMIME = adoptWK(WKFrameCopyMIMEType(frame));
-    EXPECT_WK_STREQ("text/html", wkMIME);
-
-    testDone = true;
-}
-
-TEST(WebKit2, FrameMIMETypeHTML)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate());
-    PlatformWebView webView(context.get());
-
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-
-    loaderClient.version = 0;
-    loaderClient.clientInfo = 0;
-    loaderClient.didStartProvisionalLoadForFrame = didStartProvisionalLoadForFrame;
-    loaderClient.didCommitLoadForFrame = didCommitLoadForFrame;
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-    WKPageSetPageLoaderClient(webView.page(), &loaderClient);
-
-    WKRetainPtr<WKURLRef> url(AdoptWK, Util::createURLForResource("simple", "html"));
-    WKPageLoadURL(webView.page(), url.get());
-
-    Util::run(&testDone);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/FrameMIMETypePNG.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/FrameMIMETypePNG.cpp
deleted file mode 100644
index 46f63da..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/FrameMIMETypePNG.cpp
+++ /dev/null
@@ -1,76 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-static bool testDone;
-
-static void didStartProvisionalLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo)
-{
-    WKRetainPtr<WKStringRef> wkMIME = adoptWK(WKFrameCopyMIMEType(frame));
-    EXPECT_TRUE(WKStringIsEmpty(wkMIME.get()));
-}
-
-static void didCommitLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo)
-{
-    WKRetainPtr<WKStringRef> wkMIME = adoptWK(WKFrameCopyMIMEType(frame));
-    EXPECT_WK_STREQ("image/png", wkMIME);
-}
-
-static void didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo)
-{
-    WKRetainPtr<WKStringRef> wkMIME = adoptWK(WKFrameCopyMIMEType(frame));
-    EXPECT_WK_STREQ("image/png", wkMIME);
-
-    testDone = true;
-}
-
-TEST(WebKit2, FrameMIMETypePNG)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate());
-    PlatformWebView webView(context.get());
-
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-
-    loaderClient.version = 0;
-    loaderClient.clientInfo = 0;
-    loaderClient.didStartProvisionalLoadForFrame = didStartProvisionalLoadForFrame;
-    loaderClient.didCommitLoadForFrame = didCommitLoadForFrame;
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-    WKPageSetPageLoaderClient(webView.page(), &loaderClient);
-
-    WKRetainPtr<WKURLRef> url(AdoptWK, Util::createURLForResource("icon", "png"));
-    WKPageLoadURL(webView.page(), url.get());
-
-    Util::run(&testDone);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/GetInjectedBundleInitializationUserDataCallback.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/GetInjectedBundleInitializationUserDataCallback.cpp
deleted file mode 100644
index 4bfe879..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/GetInjectedBundleInitializationUserDataCallback.cpp
+++ /dev/null
@@ -1,66 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-static bool done;
-
-static void didReceiveMessageFromInjectedBundle(WKContextRef context, WKStringRef, WKTypeRef messageBody, const void* clientInfo)
-{
-    EXPECT_WK_STREQ("Extra initialization data", static_cast<WKStringRef>(messageBody));
-    done = true;
-}
-
-static WKTypeRef getInjectedBundleInitializationUserData(WKContextRef context, const void* clientInfo)
-{
-    return Util::createInitializationDictionaryForInjectedBundleTest("GetInjectedBundleInitializationUserDataCallbackTest",  Util::toWK("Extra initialization data").get());
-}
-
-TEST(WebKit2, GetInjectedBundleInitializationUserDataCallback)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextWithInjectedBundle());
-
-    WKContextInjectedBundleClient injectedBundleClient;
-    memset(&injectedBundleClient, 0, sizeof(injectedBundleClient));
-    injectedBundleClient.version = 1;
-    injectedBundleClient.clientInfo = 0;
-    injectedBundleClient.didReceiveMessageFromInjectedBundle = didReceiveMessageFromInjectedBundle;
-    injectedBundleClient.getInjectedBundleInitializationUserData = getInjectedBundleInitializationUserData;
-    WKContextSetInjectedBundleClient(context.get(), &injectedBundleClient);
-
-    PlatformWebView webView(context.get());
-
-    WKRetainPtr<WKURLRef> url(AdoptWK, Util::createURLForResource("simple", "html"));
-    WKPageLoadURL(webView.page(), url.get());
-
-    Util::run(&done);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/GetInjectedBundleInitializationUserDataCallback_Bundle.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/GetInjectedBundleInitializationUserDataCallback_Bundle.cpp
deleted file mode 100644
index 97500b5..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/GetInjectedBundleInitializationUserDataCallback_Bundle.cpp
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleTest.h"
-#include "PlatformUtilities.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-class GetInjectedBundleInitializationUserDataCallbackTest : public InjectedBundleTest {
-public:
-    GetInjectedBundleInitializationUserDataCallbackTest(const std::string& identifier)
-        : InjectedBundleTest(identifier)
-    {
-    }
-
-    virtual void initialize(WKBundleRef bundle, WKTypeRef userData)
-    {
-        WKBundlePostMessage(bundle, Util::toWK("Return the userData").get(), userData);
-    }
-};
-
-static InjectedBundleTest::Register<GetInjectedBundleInitializationUserDataCallbackTest> registrar("GetInjectedBundleInitializationUserDataCallbackTest");
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/HitTestResultNodeHandle.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/HitTestResultNodeHandle.cpp
deleted file mode 100644
index 2100d28..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/HitTestResultNodeHandle.cpp
+++ /dev/null
@@ -1,86 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-static bool done;
-static bool messageReceived;
-static bool didFinishLoad;
-
-static void didFinishLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef, const void*)
-{
-    didFinishLoad = true;
-}
-
-static void didReceiveMessageFromInjectedBundle(WKContextRef context, WKStringRef messageName, WKTypeRef messageBody, const void* clientInfo)
-{
-    messageReceived = true;
-    if (WKStringIsEqualToUTF8CString(messageName, "HitTestResultNodeHandleTestDoneMessageName"))
-        done = true;
-}
-
-static void setPageLoaderClient(WKPageRef page)
-{
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-    loaderClient.version = 0;
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-
-    WKPageSetPageLoaderClient(page, &loaderClient);
-}
-
-static void setInjectedBundleClient(WKContextRef context)
-{
-    WKContextInjectedBundleClient injectedBundleClient;
-    memset(&injectedBundleClient, 0, sizeof(injectedBundleClient));
-    injectedBundleClient.version = 0;
-    injectedBundleClient.clientInfo = 0;
-    injectedBundleClient.didReceiveMessageFromInjectedBundle = didReceiveMessageFromInjectedBundle;
-    WKContextSetInjectedBundleClient(context, &injectedBundleClient);
-}
-
-TEST(WebKit2, HitTestResultNodeHandle)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextForInjectedBundleTest("HitTestResultNodeHandleTest"));
-    
-    setInjectedBundleClient(context.get());
-
-    PlatformWebView webView(context.get());
-    setPageLoaderClient(webView.page());
-
-    WKPageLoadURL(webView.page(), adoptWK(Util::createURLForResource("simple", "html")).get());
-    Util::run(&didFinishLoad);
-    didFinishLoad = false;
-
-    webView.simulateRightClick(10, 10);
-    Util::run(&done);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/HitTestResultNodeHandle_Bundle.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/HitTestResultNodeHandle_Bundle.cpp
deleted file mode 100644
index 882909e..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/HitTestResultNodeHandle_Bundle.cpp
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleTest.h"
-#include "InjectedBundleController.h"
-#include "PlatformUtilities.h"
-#include <WebKit2/WKBundlePage.h>
-#include <WebKit2/WKBundleHitTestResult.h>
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-class HitTestResultNodeHandleTest : public InjectedBundleTest {
-public:
-    HitTestResultNodeHandleTest(const std::string& identifier)
-        : InjectedBundleTest(identifier)
-    {
-    }
-
-    static void getContextMenuFromDefaultMenu(WKBundlePageRef page, WKBundleHitTestResultRef hitTestResult, WKArrayRef defaultMenu, WKArrayRef* newMenu, WKTypeRef* userData, const void* clientInfo)
-    {
-        WKRetainPtr<WKBundleNodeHandleRef> nodeHandle(AdoptWK, WKBundleHitTestResultCopyNodeHandle(hitTestResult));
-        if (!nodeHandle)
-            return;
-        
-        WKBundlePostMessage(InjectedBundleController::shared().bundle(), Util::toWK("HitTestResultNodeHandleTestDoneMessageName").get(), Util::toWK("HitTestResultNodeHandleTestDoneMessageBody").get());
-    }
-
-    virtual void didCreatePage(WKBundleRef bundle, WKBundlePageRef page)
-    {
-        WKBundlePageContextMenuClient contextMenuClient;
-        memset(&contextMenuClient, 0, sizeof(contextMenuClient));
-        contextMenuClient.getContextMenuFromDefaultMenu = getContextMenuFromDefaultMenu;
-    
-        WKBundlePageSetContextMenuClient(page, &contextMenuClient);
-    }
-};
-
-static InjectedBundleTest::Register<HitTestResultNodeHandleTest> registrar("HitTestResultNodeHandleTest");
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/InjectedBundleBasic.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/InjectedBundleBasic.cpp
deleted file mode 100644
index 083a88f..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/InjectedBundleBasic.cpp
+++ /dev/null
@@ -1,77 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-static bool done;
-static bool loadDone;
-static bool messageReceived;
-
-static void didReceiveMessageFromInjectedBundle(WKContextRef context, WKStringRef messageName, WKTypeRef messageBody, const void* clientInfo)
-{
-    messageReceived = true;
-    if (loadDone)
-        done = true;
-}
-
-static void didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo)
-{
-    loadDone = true;
-    if (messageReceived)
-        done = true;
-}
-
-TEST(WebKit2, InjectedBundleBasic)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextForInjectedBundleTest("InjectedBundleBasicTest"));
-
-    WKContextInjectedBundleClient injectedBundleClient;
-    memset(&injectedBundleClient, 0, sizeof(injectedBundleClient));
-    injectedBundleClient.version = 0;
-    injectedBundleClient.clientInfo = 0;
-    injectedBundleClient.didReceiveMessageFromInjectedBundle = didReceiveMessageFromInjectedBundle;
-    WKContextSetInjectedBundleClient(context.get(), &injectedBundleClient);
- 
-    PlatformWebView webView(context.get());
-
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-    loaderClient.version = 0;
-    loaderClient.clientInfo = 0;
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-    WKPageSetPageLoaderClient(webView.page(), &loaderClient);
-
-    WKRetainPtr<WKURLRef> url(AdoptWK, Util::createURLForResource("simple", "html"));
-    WKPageLoadURL(webView.page(), url.get());
-
-    Util::run(&done);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/InjectedBundleBasic_Bundle.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/InjectedBundleBasic_Bundle.cpp
deleted file mode 100644
index 6a597be..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/InjectedBundleBasic_Bundle.cpp
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleTest.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-class InjectedBundleBasicTest : public InjectedBundleTest {
-public:
-    InjectedBundleBasicTest(const std::string& identifier)
-        : InjectedBundleTest(identifier)
-    {
-    }
-
-    virtual void didCreatePage(WKBundleRef bundle, WKBundlePageRef page)
-    {
-        WKRetainPtr<WKStringRef> doneMessageName = adoptWK(WKStringCreateWithUTF8CString("DoneMessageName"));
-        WKRetainPtr<WKStringRef> doneMessageBody = adoptWK(WKStringCreateWithUTF8CString("DoneMessageBody"));
-        WKBundlePostMessage(bundle, doneMessageName.get(), doneMessageBody.get());
-    }
-};
-
-static InjectedBundleTest::Register<InjectedBundleBasicTest> registrar("InjectedBundleBasicTest");
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/InjectedBundleFrameHitTest.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/InjectedBundleFrameHitTest.cpp
deleted file mode 100644
index 9320801..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/InjectedBundleFrameHitTest.cpp
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-static bool done;
-
-static void didReceiveMessageFromInjectedBundle(WKContextRef context, WKStringRef messageName, WKTypeRef messageBody, const void* clientInfo)
-{
-    if (WKStringIsEqualToUTF8CString(messageName, "InjectedBundleFrameHitTestDone")) {
-        done = true;
-        WKStringRef linkTitle = (WKStringRef)messageBody;
-        EXPECT_WK_STREQ("HitTestLinkTitle", linkTitle);
-    }
-}
-
-static void setInjectedBundleClient(WKContextRef context)
-{
-    WKContextInjectedBundleClient injectedBundleClient;
-    memset(&injectedBundleClient, 0, sizeof(injectedBundleClient));
-    injectedBundleClient.version = 0;
-    injectedBundleClient.clientInfo = 0;
-    injectedBundleClient.didReceiveMessageFromInjectedBundle = didReceiveMessageFromInjectedBundle;
-    WKContextSetInjectedBundleClient(context, &injectedBundleClient);
-}
-
-TEST(WebKit2, InjectedBundleFrameHitTest)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextForInjectedBundleTest("InjectedBundleFrameHitTestTest"));
-    
-    setInjectedBundleClient(context.get());
-
-    PlatformWebView webView(context.get());
-
-    WKPageLoadURL(webView.page(), adoptWK(Util::createURLForResource("link-with-title", "html")).get());
-
-    Util::run(&done);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/InjectedBundleFrameHitTest_Bundle.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/InjectedBundleFrameHitTest_Bundle.cpp
deleted file mode 100644
index ddaeec1..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/InjectedBundleFrameHitTest_Bundle.cpp
+++ /dev/null
@@ -1,78 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleTest.h"
-#include "PlatformUtilities.h"
-#include <WebKit2/WKBundle.h>
-#include <WebKit2/WKBundleFramePrivate.h>
-#include <WebKit2/WKBundleHitTestResult.h>
-#include <WebKit2/WKBundlePage.h>
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-class InjectedBundleFrameHitTestTest : public InjectedBundleTest {
-public:
-    InjectedBundleFrameHitTestTest(const std::string& identifier)
-        : InjectedBundleTest(identifier)
-    {
-    }
-
-    virtual void didCreatePage(WKBundleRef, WKBundlePageRef) OVERRIDE;
-    void frameLoadFinished(WKBundleFrameRef);
-
-    WKBundleRef m_bundle;
-};
-
-static InjectedBundleTest::Register<InjectedBundleFrameHitTestTest> registrar("InjectedBundleFrameHitTestTest");
-
-static void didFinishLoadForFrameCallback(WKBundlePageRef page, WKBundleFrameRef frame, WKTypeRef* userData, const void *clientInfo)
-{
-    ((InjectedBundleFrameHitTestTest*)clientInfo)->frameLoadFinished(frame);
-}
-
-void InjectedBundleFrameHitTestTest::didCreatePage(WKBundleRef bundle, WKBundlePageRef page)
-{
-    m_bundle = bundle;
-
-    WKBundlePageLoaderClient pageLoaderClient;
-    memset(&pageLoaderClient, 0, sizeof(pageLoaderClient));
-    
-    pageLoaderClient.version = 1;
-    pageLoaderClient.clientInfo = this;
-    pageLoaderClient.didFinishLoadForFrame = didFinishLoadForFrameCallback;
-
-    WKBundlePageSetPageLoaderClient(page, &pageLoaderClient);
-}
-
-void InjectedBundleFrameHitTestTest::frameLoadFinished(WKBundleFrameRef frame)
-{
-    WKBundleHitTestResultRef hitTestResult = WKBundleFrameCreateHitTestResult(frame, WKPointMake(50, 50));
-    WKRetainPtr<WKStringRef> linkTitle(AdoptWK, WKBundleHitTestResultCopyLinkTitle(hitTestResult));
-    WKBundlePostMessage(m_bundle, Util::toWK("InjectedBundleFrameHitTestDone").get(), linkTitle.get());
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/InjectedBundleInitializationUserDataCallbackWins.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/InjectedBundleInitializationUserDataCallbackWins.cpp
deleted file mode 100644
index 360cf39..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/InjectedBundleInitializationUserDataCallbackWins.cpp
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-static bool done;
-
-static void didReceiveMessageFromInjectedBundle(WKContextRef context, WKStringRef, WKTypeRef messageBody, const void* clientInfo)
-{
-    EXPECT_WK_STREQ("Set in the getInjectedBundleInitializationUserData callback", static_cast<WKStringRef>(messageBody));
-    done = true;
-}
-
-static WKTypeRef getInjectedBundleInitializationUserData(WKContextRef context, const void* clientInfo)
-{
-    return Util::createInitializationDictionaryForInjectedBundleTest("InjectedBundleInitializationUserDataCallbackWinsTest",  Util::toWK("Set in the getInjectedBundleInitializationUserData callback").get());
-}
-
-TEST(WebKit2, InjectedBundleInitializationUserDataCallbackWins)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextWithInjectedBundle());
-    WKRetainPtr<WKDictionaryRef> initializationDictionary(AdoptWK, Util::createInitializationDictionaryForInjectedBundleTest("InjectedBundleInitializationUserDataCallbackWinsTest",  Util::toWK("Set with WKContextSetInitializationUserDataForInjectedBundle").get()));
-    WKContextSetInitializationUserDataForInjectedBundle(context.get(), initializationDictionary.get());
-
-    WKContextInjectedBundleClient injectedBundleClient;
-    memset(&injectedBundleClient, 0, sizeof(injectedBundleClient));
-    injectedBundleClient.version = 1;
-    injectedBundleClient.clientInfo = 0;
-    injectedBundleClient.didReceiveMessageFromInjectedBundle = didReceiveMessageFromInjectedBundle;
-    injectedBundleClient.getInjectedBundleInitializationUserData = getInjectedBundleInitializationUserData;
-    WKContextSetInjectedBundleClient(context.get(), &injectedBundleClient);
-
-    PlatformWebView webView(context.get());
-
-    WKRetainPtr<WKURLRef> url(AdoptWK, Util::createURLForResource("simple", "html"));
-    WKPageLoadURL(webView.page(), url.get());
-
-    Util::run(&done);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/InjectedBundleInitializationUserDataCallbackWins_Bundle.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/InjectedBundleInitializationUserDataCallbackWins_Bundle.cpp
deleted file mode 100644
index 36708a4..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/InjectedBundleInitializationUserDataCallbackWins_Bundle.cpp
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleTest.h"
-#include "PlatformUtilities.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-class InjectedBundleInitializationUserDataCallbackWinsTest : public InjectedBundleTest {
-public:
-    InjectedBundleInitializationUserDataCallbackWinsTest(const std::string& identifier)
-        : InjectedBundleTest(identifier)
-    {
-    }
-
-    virtual void initialize(WKBundleRef bundle, WKTypeRef userData)
-    {
-        WKBundlePostMessage(bundle, Util::toWK("Return the userData").get(), userData);
-    }
-};
-
-static InjectedBundleTest::Register<InjectedBundleInitializationUserDataCallbackWinsTest> registrar("InjectedBundleInitializationUserDataCallbackWinsTest");
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/LoadAlternateHTMLStringWithNonDirectoryURL.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/LoadAlternateHTMLStringWithNonDirectoryURL.cpp
deleted file mode 100644
index 7878741..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/LoadAlternateHTMLStringWithNonDirectoryURL.cpp
+++ /dev/null
@@ -1,66 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "JavaScriptTest.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-
-#include <WebKit2/WKContext.h>
-#include <WebKit2/WKPage.h>
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-    
-static bool didFinishLoad = false;
-    
-static void didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo)
-{
-    didFinishLoad = true;
-}
-
-TEST(WebKit2, LoadAlternateHTMLStringWithNonDirectoryURL)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate());
-    PlatformWebView webView(context.get());
-
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-    
-    loaderClient.version = 0;
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-    WKPageSetPageLoaderClient(webView.page(), &loaderClient);
-
-    WKRetainPtr<WKURLRef> fileURL(AdoptWK, Util::createURLForResource("simple", "html"));
-    WKRetainPtr<WKStringRef> alternateHTMLString(AdoptWK, WKStringCreateWithUTF8CString("<html><body><img src='icon.png'></body></html>"));
-    
-    // Call WKPageLoadAlternateHTMLString() with fileURL which does not point to a directory
-    WKPageLoadAlternateHTMLString(webView.page(), alternateHTMLString.get(), fileURL.get(), fileURL.get());
-    
-    // If we can finish loading the html without resulting in an invalid message being sent from the WebProcess, this test passes.
-    Util::run(&didFinishLoad);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/LoadCanceledNoServerRedirectCallback.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/LoadCanceledNoServerRedirectCallback.cpp
deleted file mode 100644
index 7dbd063..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/LoadCanceledNoServerRedirectCallback.cpp
+++ /dev/null
@@ -1,92 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "JavaScriptTest.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-
-#include <WebKit2/WKContext.h>
-#include <WebKit2/WKFrame.h>
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-static bool loadedMainFrame;
-static bool loadedIFrame;
-static bool loadedAllFrames;
-
-static bool performedServerRedirect;
-
-static void didFinishLoadForFrame(WKPageRef, WKFrameRef frame, WKTypeRef, const void*)
-{
-    if (WKFrameIsMainFrame(frame))
-        loadedMainFrame = true;
-    else
-        loadedIFrame = true;
-
-    loadedAllFrames = loadedMainFrame && loadedIFrame;
-}
-
-static void didPerformServerRedirect(WKContextRef context, WKPageRef page, WKURLRef sourceURL, WKURLRef destinationURL, WKFrameRef frame, const void *clientInfo)
-{
-    performedServerRedirect = true;
-}
-
-TEST(WebKit2, LoadCanceledNoServerRedirectCallback)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextForInjectedBundleTest("LoadCanceledNoServerRedirectCallbackTest"));
-    
-    WKContextInjectedBundleClient injectedBundleClient;
-    memset(&injectedBundleClient, 0, sizeof(injectedBundleClient));
-    injectedBundleClient.version = 0;
-    injectedBundleClient.clientInfo = 0;
-    WKContextSetInjectedBundleClient(context.get(), &injectedBundleClient);
-
-    PlatformWebView webView(context.get());
-
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-    
-    loaderClient.version = 0;
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-    WKPageSetPageLoaderClient(webView.page(), &loaderClient);
-    
-    WKContextHistoryClient historyClient;
-    memset(&historyClient, 0, sizeof(historyClient));
-    
-    historyClient.version = 0;
-    historyClient.didPerformServerRedirect = didPerformServerRedirect;
-    WKContextSetHistoryClient(context.get(), &historyClient);
-
-    WKRetainPtr<WKURLRef> url(AdoptWK, Util::createURLForResource("simple-iframe", "html"));
-    WKPageLoadURL(webView.page(), url.get());
-    Util::run(&loadedAllFrames);
-    
-    // We shouldn't have performed a server redirect when the iframe load was cancelled.
-    EXPECT_FALSE(performedServerRedirect);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/LoadCanceledNoServerRedirectCallback_Bundle.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/LoadCanceledNoServerRedirectCallback_Bundle.cpp
deleted file mode 100644
index 0792c3f..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/LoadCanceledNoServerRedirectCallback_Bundle.cpp
+++ /dev/null
@@ -1,72 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleTest.h"
-#include "PlatformUtilities.h"
-#include "Test.h"
-
-#include <WebKit2/WKBundlePage.h>
-#include <WebKit2/WKBundleFrame.h>
-#include <WebKit2/WKRetainPtr.h>
-
-#include <wtf/Assertions.h>
-
-namespace TestWebKitAPI {
-    
-class LoadCanceledNoServerRedirectCallbackTest : public InjectedBundleTest {
-public:
-    LoadCanceledNoServerRedirectCallbackTest(const std::string& identifier)
-        : InjectedBundleTest(identifier)
-    {
-    }
-    
-    static WKURLRequestRef willSendRequestForFrame(WKBundlePageRef, WKBundleFrameRef frame, uint64_t resourceIdentifier, WKURLRequestRef request, WKURLResponseRef redirectResponse, const void *clientInfo)
-    {
-        // Allow the loading of the main resource, but don't allow the loading of an iframe, return null from willSendRequest.
-        if (WKBundleFrameIsMainFrame(frame)) {
-            WKRetainPtr<WKURLRequestRef> newRequest = request;
-            return newRequest.leakRef();
-        }
-        
-        return 0;
-    }
-
-    virtual void didCreatePage(WKBundleRef bundle, WKBundlePageRef page)
-    {
-        WKBundlePageResourceLoadClient resourceLoadClient;
-        memset(&resourceLoadClient, 0, sizeof(resourceLoadClient));
-        
-        resourceLoadClient.version = 0;
-        resourceLoadClient.willSendRequestForFrame = willSendRequestForFrame;
-
-        WKBundlePageSetResourceLoadClient(page, &resourceLoadClient);
-
-    }
-};
-
-static InjectedBundleTest::Register<LoadCanceledNoServerRedirectCallbackTest> registrar("LoadCanceledNoServerRedirectCallbackTest");
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/MouseMoveAfterCrash.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/MouseMoveAfterCrash.cpp
deleted file mode 100644
index 9b47051..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/MouseMoveAfterCrash.cpp
+++ /dev/null
@@ -1,98 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "JavaScriptTest.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-
-namespace TestWebKitAPI {
-
-static bool didFinishLoad;
-
-static void didFinishLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef, const void*)
-{
-    didFinishLoad = true;
-}
-
-static void processDidCrash(WKPageRef page, const void*)
-{
-    WKPageReload(page);
-}
-
-static void setPageLoaderClient(WKPageRef page)
-{
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-    loaderClient.version = 0;
-    loaderClient.clientInfo = 0;
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-    loaderClient.processDidCrash = processDidCrash;
-
-    WKPageSetPageLoaderClient(page, &loaderClient);
-}
-
-#if PLATFORM(WIN)
-TEST(WebKit2, DISABLED_MouseMoveAfterCrash)
-#else
-TEST(WebKit2, MouseMoveAfterCrash)
-#endif
-{
-    WKRetainPtr<WKContextRef> context = adoptWK(Util::createContextForInjectedBundleTest("MouseMoveAfterCrashTest"));
-
-    PlatformWebView webView(context.get());
-    setPageLoaderClient(webView.page());
-
-    WKRetainPtr<WKURLRef> url(AdoptWK, Util::createURLForResource("mouse-move-listener", "html"));
-    WKPageLoadURL(webView.page(), url.get());
-    Util::run(&didFinishLoad);
-
-    didFinishLoad = false;
-
-    WKContextPostMessageToInjectedBundle(context.get(), Util::toWK("Pause").get(), 0);
-
-    webView.simulateSpacebarKeyPress();
-
-    // Move the mouse once we are hung.
-    webView.simulateMouseMove(10, 10);
-    webView.simulateMouseMove(20, 20);
-
-    // After moving the mouse (while the web process was hung on the Pause message), kill the web process. It is restarted in
-    // processDidCrash by reloading the page.
-    WKPageTerminate(webView.page());
-
-    // Wait until we load the page a second time (via reloading the page in processDidCrash).
-    Util::run(&didFinishLoad);
-
-    EXPECT_JS_FALSE(webView.page(), "didMoveMouse()");
-
-    // Once the page has reloaded, try moving the mouse to verify that we get mouse move events.
-    webView.simulateMouseMove(10, 10);
-    webView.simulateMouseMove(20, 20);
-
-    EXPECT_JS_TRUE(webView.page(), "didMoveMouse()");
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/MouseMoveAfterCrash_Bundle.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/MouseMoveAfterCrash_Bundle.cpp
deleted file mode 100644
index a075620..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/MouseMoveAfterCrash_Bundle.cpp
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleTest.h"
-
-#include "PlatformUtilities.h"
-
-namespace TestWebKitAPI {
-
-class MouseMoveAfterCrashTest : public InjectedBundleTest {
-public:
-    MouseMoveAfterCrashTest(const std::string& identifier);
-
-private:
-    virtual void didReceiveMessage(WKBundleRef, WKStringRef messageName, WKTypeRef messageBody);
-};
-
-static InjectedBundleTest::Register<MouseMoveAfterCrashTest> registrar("MouseMoveAfterCrashTest");
-
-MouseMoveAfterCrashTest::MouseMoveAfterCrashTest(const std::string& identifier)
-    : InjectedBundleTest(identifier)
-{
-}
-
-void MouseMoveAfterCrashTest::didReceiveMessage(WKBundleRef bundle, WKStringRef messageName, WKTypeRef)
-{
-    if (!WKStringIsEqualToUTF8CString(messageName, "Pause"))
-        return;
-
-    Util::sleep(30);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayout.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayout.cpp
deleted file mode 100644
index 605003e..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayout.cpp
+++ /dev/null
@@ -1,87 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <WebKit2/WKContextPrivate.h>
-
-namespace TestWebKitAPI {
-
-static bool didFirstLayoutAchieved;
-static bool didFirstVisuallyNonEmptyLayoutAchieved;
-static bool didHitRelevantRepaintedObjectsAreaThresholdAchieved;
-static bool didUnlockAllLayoutMilestones;
-
-static void didLayout(WKPageRef, WKLayoutMilestones type, WKTypeRef, const void *)
-{
-    switch (type) {
-    case kWKDidFirstLayout:
-        didFirstLayoutAchieved = true;
-        break;
-    case kWKDidFirstVisuallyNonEmptyLayout:
-        didFirstVisuallyNonEmptyLayoutAchieved = true;
-        break;
-    case kWKDidHitRelevantRepaintedObjectsAreaThreshold:
-        didHitRelevantRepaintedObjectsAreaThresholdAchieved = true;
-        break;
-    default:
-        break;
-    }
-    
-    if (didFirstLayoutAchieved && didFirstVisuallyNonEmptyLayoutAchieved && didHitRelevantRepaintedObjectsAreaThresholdAchieved)
-        didUnlockAllLayoutMilestones = true;
-}
-
-static void setPageLoaderClient(WKPageRef page)
-{
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-    loaderClient.version = kWKPageLoaderClientCurrentVersion;
-    loaderClient.didLayout = didLayout;
-
-    WKPageSetPageLoaderClient(page, &loaderClient);
-}
-
-// FIXME: This test has been broken since http://trac.webkit.org/changeset/115752 It's failing because
-// the frame load is completing before didLayout() manages to unlock the
-// kWKDidHitRelevantRepaintedObjectsAreaThreshold achievement. We probably need to fix this by making
-// this test have a long-running resource.
-TEST(WebKit2, DISABLED_NewFirstVisuallyNonEmptyLayout)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextForInjectedBundleTest("NewFirstVisuallyNonEmptyLayoutTest"));
-
-    PlatformWebView webView(context.get());
-    setPageLoaderClient(webView.page());
-
-    // This test is expected to succeed because lots-of-text.html is a large document and the relevant painted
-    // objects take up more than 10% of the view.
-    WKPageLoadURL(webView.page(), adoptWK(Util::createURLForResource("lots-of-text", "html")).get());
-
-    Util::run(&didUnlockAllLayoutMilestones);
-    EXPECT_TRUE(didUnlockAllLayoutMilestones);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFails.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFails.cpp
deleted file mode 100644
index 06c7150..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFails.cpp
+++ /dev/null
@@ -1,87 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include "Test.h"
-#include <WebKit2/WKContextPrivate.h>
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-static bool didHitRelevantRepaintedObjectsAreaThresholdAchieved;
-static bool test1Done;
-static bool test2Done;
-    
-static void didForceRepaint(WKErrorRef error, void*)
-{
-    EXPECT_NULL(error);
-    test2Done = true;
-}
-
-static void didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo)
-{
-    test1Done = true;
-    WKPageForceRepaint(page, 0, didForceRepaint);
-}
-
-static void didLayout(WKPageRef, WKLayoutMilestones type, WKTypeRef, const void *)
-{
-    if (type == kWKDidHitRelevantRepaintedObjectsAreaThreshold)
-        didHitRelevantRepaintedObjectsAreaThresholdAchieved = true;
-}
-
-static void setPageLoaderClient(WKPageRef page)
-{
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-    loaderClient.version = kWKPageLoaderClientCurrentVersion;
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-    loaderClient.didLayout = didLayout;
-
-    WKPageSetPageLoaderClient(page, &loaderClient);
-}
-
-TEST(WebKit2, NewFirstVisuallyNonEmptyLayoutFails)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextForInjectedBundleTest("NewFirstVisuallyNonEmptyLayoutFailsTest"));
-
-    PlatformWebView webView(context.get());
-    setPageLoaderClient(webView.page());
-
-    // This test is expected to fail because simple.html is a small document and the relevant painted
-    // objects take up less than 10% of the view.
-    WKPageLoadURL(webView.page(), adoptWK(Util::createURLForResource("simple", "html")).get());
-
-    Util::run(&test1Done);
-    Util::run(&test2Done);
-
-    // By the time the forced repaint has finished, the counter would have been hit 
-    // if it was sized reasonably for the page.
-    EXPECT_FALSE(didHitRelevantRepaintedObjectsAreaThresholdAchieved);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFails_Bundle.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFails_Bundle.cpp
deleted file mode 100644
index b909ec9..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFails_Bundle.cpp
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleTest.h"
-
-#include "PlatformUtilities.h"
-#include <WebKit2/WKBundlePage.h>
-#include <WebKit2/WKBundlePagePrivate.h>
-
-namespace TestWebKitAPI {
-
-class NewFirstVisuallyNonEmptyLayoutFailsTest : public InjectedBundleTest {
-public:
-    NewFirstVisuallyNonEmptyLayoutFailsTest(const std::string& identifier)
-        : InjectedBundleTest(identifier)
-    {
-    }
-
-    virtual void didCreatePage(WKBundleRef bundle, WKBundlePageRef page)
-    {
-        WKBundlePageListenForLayoutMilestones(page, kWKDidFirstLayout | kWKDidFirstVisuallyNonEmptyLayout | kWKDidHitRelevantRepaintedObjectsAreaThreshold);
-    }
-    
-};
-
-static InjectedBundleTest::Register<NewFirstVisuallyNonEmptyLayoutFailsTest> registrar("NewFirstVisuallyNonEmptyLayoutFailsTest");
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutForImages.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutForImages.cpp
deleted file mode 100644
index 2ec5bd0..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutForImages.cpp
+++ /dev/null
@@ -1,87 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <WebKit2/WKContextPrivate.h>
-
-namespace TestWebKitAPI {
-
-static bool didFirstLayoutAchieved;
-static bool didFirstVisuallyNonEmptyLayoutAchieved;
-static bool didHitRelevantRepaintedObjectsAreaThresholdAchieved;
-static bool didUnlockAllLayoutMilestones;
-
-static void didLayout(WKPageRef, WKLayoutMilestones type, WKTypeRef, const void *)
-{
-    switch (type) {
-    case kWKDidFirstLayout:
-        didFirstLayoutAchieved = true;
-        break;
-    case kWKDidFirstVisuallyNonEmptyLayout:
-        didFirstVisuallyNonEmptyLayoutAchieved = true;
-        break;
-    case kWKDidHitRelevantRepaintedObjectsAreaThreshold:
-        didHitRelevantRepaintedObjectsAreaThresholdAchieved = true;
-        break;
-    default:
-        break;
-    }
-    
-    if (didFirstLayoutAchieved && didFirstVisuallyNonEmptyLayoutAchieved && didHitRelevantRepaintedObjectsAreaThresholdAchieved)
-        didUnlockAllLayoutMilestones = true;
-}
-
-static void setPageLoaderClient(WKPageRef page)
-{
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-    loaderClient.version = kWKPageLoaderClientCurrentVersion;
-    loaderClient.didLayout = didLayout;
-
-    WKPageSetPageLoaderClient(page, &loaderClient);
-}
-
-// FIXME: This test has been broken since http://trac.webkit.org/changeset/115752 It's failing because
-// the frame load is completing before didLayout() manages to unlock the
-// kWKDidHitRelevantRepaintedObjectsAreaThreshold achievement. We probably need to fix this by making
-// this test have a long-running resource.
-TEST(WebKit2, DISABLED_NewFirstVisuallyNonEmptyLayoutForImages)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextForInjectedBundleTest("NewFirstVisuallyNonEmptyLayoutForImagesTest"));
-
-    PlatformWebView webView(context.get());
-    setPageLoaderClient(webView.page());
-
-    // This test is expected to succeed because lots-of-images.html is a large document and the relevant painted
-    // objects take up more than 10% of the view.
-    WKPageLoadURL(webView.page(), adoptWK(Util::createURLForResource("lots-of-images", "html")).get());
-
-    Util::run(&didUnlockAllLayoutMilestones);
-    EXPECT_TRUE(didUnlockAllLayoutMilestones);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutForImages_Bundle.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutForImages_Bundle.cpp
deleted file mode 100644
index bdaade7..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutForImages_Bundle.cpp
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleTest.h"
-
-#include "PlatformUtilities.h"
-#include <WebKit2/WKBundlePage.h>
-#include <WebKit2/WKBundlePagePrivate.h>
-
-namespace TestWebKitAPI {
-
-class NewFirstVisuallyNonEmptyLayoutForImagesTest : public InjectedBundleTest {
-public:
-    NewFirstVisuallyNonEmptyLayoutForImagesTest(const std::string& identifier)
-        : InjectedBundleTest(identifier)
-    {
-    }
-
-    virtual void didCreatePage(WKBundleRef bundle, WKBundlePageRef page)
-    {
-        WKBundlePageListenForLayoutMilestones(page, kWKDidFirstLayout | kWKDidFirstVisuallyNonEmptyLayout | kWKDidHitRelevantRepaintedObjectsAreaThreshold);
-    }
-    
-};
-
-static InjectedBundleTest::Register<NewFirstVisuallyNonEmptyLayoutForImagesTest> registrar("NewFirstVisuallyNonEmptyLayoutForImagesTest");
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFrames.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFrames.cpp
deleted file mode 100644
index 1ad4b99..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFrames.cpp
+++ /dev/null
@@ -1,91 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include "Test.h"
-#include <WebKit2/WKContextPrivate.h>
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-static bool didHitRelevantRepaintedObjectsAreaThresholdMoreThanOnce;
-static unsigned didHitRelevantRepaintedObjectsAreaThresholdCounter;
-static bool test1Done;
-static bool test2Done;
-    
-static void didForceRepaint(WKErrorRef error, void*)
-{
-    EXPECT_NULL(error);
-    test2Done = true;
-}
-
-static void didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo)
-{
-    test1Done = true;
-    WKPageForceRepaint(page, 0, didForceRepaint);
-}
-
-static void didLayout(WKPageRef, WKLayoutMilestones type, WKTypeRef, const void *)
-{
-    if (type != kWKDidHitRelevantRepaintedObjectsAreaThreshold)
-        return;
-
-    ++didHitRelevantRepaintedObjectsAreaThresholdCounter;
-    if (didHitRelevantRepaintedObjectsAreaThresholdCounter > 1)
-        didHitRelevantRepaintedObjectsAreaThresholdMoreThanOnce = true;
-}
-
-static void setPageLoaderClient(WKPageRef page)
-{
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-    loaderClient.version = kWKPageLoaderClientCurrentVersion;
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-    loaderClient.didLayout = didLayout;
-
-    WKPageSetPageLoaderClient(page, &loaderClient);
-}
-
-TEST(WebKit2, NewFirstVisuallyNonEmptyLayoutFrames)
-{
-    didHitRelevantRepaintedObjectsAreaThresholdCounter = 0;
-    WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextForInjectedBundleTest("NewFirstVisuallyNonEmptyLayoutFramesTest"));
-
-    PlatformWebView webView(context.get());
-    setPageLoaderClient(webView.page());
-
-    WKPageLoadURL(webView.page(), adoptWK(Util::createURLForResource("lots-of-iframes", "html")).get());
-
-    Util::run(&test1Done);
-    Util::run(&test2Done);
-
-    // By the time the forced repaint has finished, the counter would have been hit 
-    // if it was sized reasonably for the page.
-    EXPECT_FALSE(didHitRelevantRepaintedObjectsAreaThresholdMoreThanOnce);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFrames_Bundle.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFrames_Bundle.cpp
deleted file mode 100644
index 33e16bd..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFrames_Bundle.cpp
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleTest.h"
-
-#include "PlatformUtilities.h"
-#include <WebKit2/WKBundlePage.h>
-#include <WebKit2/WKBundlePagePrivate.h>
-
-namespace TestWebKitAPI {
-
-class NewFirstVisuallyNonEmptyLayoutFramesTest : public InjectedBundleTest {
-public:
-    NewFirstVisuallyNonEmptyLayoutFramesTest(const std::string& identifier)
-        : InjectedBundleTest(identifier)
-    {
-    }
-
-    virtual void didCreatePage(WKBundleRef bundle, WKBundlePageRef page)
-    {
-        WKBundlePageListenForLayoutMilestones(page, kWKDidFirstLayout | kWKDidFirstVisuallyNonEmptyLayout | kWKDidHitRelevantRepaintedObjectsAreaThreshold);
-    }
-    
-};
-
-static InjectedBundleTest::Register<NewFirstVisuallyNonEmptyLayoutFramesTest> registrar("NewFirstVisuallyNonEmptyLayoutFramesTest");
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayout_Bundle.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayout_Bundle.cpp
deleted file mode 100644
index c408c3b..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayout_Bundle.cpp
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleTest.h"
-
-#include "PlatformUtilities.h"
-#include <WebKit2/WKBundlePage.h>
-#include <WebKit2/WKBundlePagePrivate.h>
-
-namespace TestWebKitAPI {
-
-class NewFirstVisuallyNonEmptyLayoutTest : public InjectedBundleTest {
-public:
-    NewFirstVisuallyNonEmptyLayoutTest(const std::string& identifier)
-        : InjectedBundleTest(identifier)
-    {
-    }
-
-    virtual void didCreatePage(WKBundleRef bundle, WKBundlePageRef page)
-    {
-        WKBundlePageListenForLayoutMilestones(page, kWKDidFirstLayout | kWKDidFirstVisuallyNonEmptyLayout | kWKDidHitRelevantRepaintedObjectsAreaThreshold);
-    }
-    
-};
-
-static InjectedBundleTest::Register<NewFirstVisuallyNonEmptyLayoutTest> registrar("NewFirstVisuallyNonEmptyLayoutTest");
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/PageLoadBasic.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/PageLoadBasic.cpp
deleted file mode 100644
index 5f2f6e2..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/PageLoadBasic.cpp
+++ /dev/null
@@ -1,152 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include "Test.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-static bool test1Done;
-
-struct State {
-    State()
-        : didDecidePolicyForNavigationAction(false)
-        , didStartProvisionalLoadForFrame(false)
-        , didCommitLoadForFrame(false)
-    {
-    }
-
-    bool didDecidePolicyForNavigationAction;
-    bool didStartProvisionalLoadForFrame;
-    bool didCommitLoadForFrame;
-};
-
-static void didStartProvisionalLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo)
-{
-    State* state = reinterpret_cast<State*>(const_cast<void*>(clientInfo));
-    EXPECT_TRUE(state->didDecidePolicyForNavigationAction);
-    EXPECT_FALSE(state->didCommitLoadForFrame);
-
-    // The commited URL should be null.
-    EXPECT_NULL(WKFrameCopyURL(frame));
-
-    EXPECT_FALSE(state->didStartProvisionalLoadForFrame);
-
-    state->didStartProvisionalLoadForFrame = true;
-}
-
-static void didCommitLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo)
-{
-    State* state = reinterpret_cast<State*>(const_cast<void*>(clientInfo));
-    EXPECT_TRUE(state->didDecidePolicyForNavigationAction);
-    EXPECT_TRUE(state->didStartProvisionalLoadForFrame);
-
-    // The provisional URL should be null.
-    EXPECT_NULL(WKFrameCopyProvisionalURL(frame));
-
-    state->didCommitLoadForFrame = true;
-}
-
-static void didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo)
-{
-    State* state = reinterpret_cast<State*>(const_cast<void*>(clientInfo));
-    EXPECT_TRUE(state->didDecidePolicyForNavigationAction);
-    EXPECT_TRUE(state->didStartProvisionalLoadForFrame);
-    EXPECT_TRUE(state->didCommitLoadForFrame);
-
-    // The provisional URL should be null.
-    EXPECT_NULL(WKFrameCopyProvisionalURL(frame));
-
-    test1Done = true;
-}
-
-static void decidePolicyForNavigationAction(WKPageRef page, WKFrameRef frame, WKFrameNavigationType navigationType, WKEventModifiers modifiers, WKEventMouseButton mouseButton, WKURLRequestRef request, WKFramePolicyListenerRef listener, WKTypeRef userData, const void* clientInfo)
-{
-    State* state = reinterpret_cast<State*>(const_cast<void*>(clientInfo));
-    EXPECT_FALSE(state->didStartProvisionalLoadForFrame);
-    EXPECT_FALSE(state->didCommitLoadForFrame);
-    EXPECT_TRUE(mouseButton == kWKEventMouseButtonNoButton);
-
-    state->didDecidePolicyForNavigationAction = true;
-
-    WKFramePolicyListenerUse(listener);
-}
-
-static void decidePolicyForNewWindowAction(WKPageRef page, WKFrameRef frame, WKFrameNavigationType navigationType, WKEventModifiers modifiers, WKEventMouseButton mouseButton, WKURLRequestRef request, WKStringRef frameName, WKFramePolicyListenerRef listener, WKTypeRef userData, const void* clientInfo)
-{
-    EXPECT_TRUE(mouseButton == kWKEventMouseButtonNoButton);
-    WKFramePolicyListenerUse(listener);
-}
-
-static void decidePolicyForResponse(WKPageRef page, WKFrameRef frame, WKURLResponseRef response, WKURLRequestRef request, WKFramePolicyListenerRef listener, WKTypeRef userData, const void* clientInfo)
-{
-    WKFramePolicyListenerUse(listener);
-}
-
-TEST(WebKit2, PageLoadBasic)
-{
-    State state;
-
-    WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate());
-    PlatformWebView webView(context.get());
-
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-
-    loaderClient.version = 0;
-    loaderClient.clientInfo = &state;
-    loaderClient.didStartProvisionalLoadForFrame = didStartProvisionalLoadForFrame;
-    loaderClient.didCommitLoadForFrame = didCommitLoadForFrame;
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-    WKPageSetPageLoaderClient(webView.page(), &loaderClient);
-
-    WKPagePolicyClient policyClient;
-    memset(&policyClient, 0, sizeof(policyClient));
-
-    policyClient.version = 0;
-    policyClient.clientInfo = &state;
-    policyClient.decidePolicyForNavigationAction = decidePolicyForNavigationAction;
-    policyClient.decidePolicyForNewWindowAction = decidePolicyForNewWindowAction;
-    policyClient.decidePolicyForResponse = decidePolicyForResponse;
-    WKPageSetPagePolicyClient(webView.page(), &policyClient);
-
-    // Before loading anything, the active url should be null
-    EXPECT_NULL(WKPageCopyActiveURL(webView.page()));
-
-    WKRetainPtr<WKURLRef> url(AdoptWK, Util::createURLForResource("simple", "html"));
-    WKPageLoadURL(webView.page(), url.get());
-
-    // But immediately after starting a load, the active url should reflect the request
-    WKRetainPtr<WKURLRef> activeUrl = adoptWK(WKPageCopyActiveURL(webView.page()));
-    ASSERT_NOT_NULL(activeUrl.get());
-    EXPECT_TRUE(WKURLIsEqual(activeUrl.get(), url.get()));
-
-    Util::run(&test1Done);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/PageLoadDidChangeLocationWithinPageForFrame.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/PageLoadDidChangeLocationWithinPageForFrame.cpp
deleted file mode 100644
index 86fbe5e..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/PageLoadDidChangeLocationWithinPageForFrame.cpp
+++ /dev/null
@@ -1,83 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-static void nullJavaScriptCallback(WKSerializedScriptValueRef, WKErrorRef error, void*)
-{
-}
-
-static bool didFinishLoad;
-static void didFinishLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef, const void*)
-{
-    didFinishLoad = true;
-}
-
-static bool didPopStateWithinPage;
-static bool didChangeLocationWithinPage;
-static void didSameDocumentNavigationForFrame(WKPageRef, WKFrameRef, WKSameDocumentNavigationType type, WKTypeRef, const void*)
-{
-    if (!didPopStateWithinPage) {
-        EXPECT_EQ(static_cast<uint32_t>(kWKSameDocumentNavigationSessionStatePop), type);
-        EXPECT_FALSE(didChangeLocationWithinPage);
-        didPopStateWithinPage = true;
-        return;
-    }
-
-    EXPECT_EQ(static_cast<uint32_t>(kWKSameDocumentNavigationAnchorNavigation), type);
-    didChangeLocationWithinPage = true;
-}
-
-TEST(WebKit2, PageLoadDidChangeLocationWithinPageForFrame)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate());
-    PlatformWebView webView(context.get());
-
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-    loaderClient.didSameDocumentNavigationForFrame = didSameDocumentNavigationForFrame;
-    WKPageSetPageLoaderClient(webView.page(), &loaderClient);
-
-    WKRetainPtr<WKURLRef> url(AdoptWK, Util::createURLForResource("file-with-anchor", "html"));
-    WKPageLoadURL(webView.page(), url.get());
-    Util::run(&didFinishLoad);
-
-    WKRetainPtr<WKURLRef> initialURL = adoptWK(WKFrameCopyURL(WKPageGetMainFrame(webView.page())));
-
-    WKPageRunJavaScriptInMainFrame(webView.page(), Util::toWK("clickLink()").get(), 0, nullJavaScriptCallback);
-    Util::run(&didChangeLocationWithinPage);
-
-    WKRetainPtr<WKURLRef> urlAfterAnchorClick = adoptWK(WKFrameCopyURL(WKPageGetMainFrame(webView.page())));
-
-    EXPECT_FALSE(WKURLIsEqual(initialURL.get(), urlAfterAnchorClick.get()));
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/PageVisibilityState.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/PageVisibilityState.cpp
deleted file mode 100644
index 8aa7495..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/PageVisibilityState.cpp
+++ /dev/null
@@ -1,109 +0,0 @@
-/*
- * Copyright (C) 2013 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include "Test.h"
-#include <JavaScriptCore/JSContextRef.h>
-#include <WebKit2/WKRetainPtr.h>
-#include <WebKit2/WKSerializedScriptValue.h>
-
-namespace TestWebKitAPI {
-
-static bool testDone;
-
-static void didRunStep1StateChangeVisibleToHidden(WKSerializedScriptValueRef, WKErrorRef, void*);
-static void didRunStep2StateChangeHiddenToPrerender(WKSerializedScriptValueRef, WKErrorRef, void*);
-static void didRunStep3StateChangePrerenderToPreview(WKSerializedScriptValueRef, WKErrorRef, void*);
-static void didRunStep4InStatePreview(WKSerializedScriptValueRef, WKErrorRef, void*);
-
-static void setPageVisibilityStateWithEvalContinuation(PlatformWebView* webView, WKPageVisibilityState visibilityState, WKPageRunJavaScriptFunction callback)
-{
-    WKPageSetVisibilityState(webView->page(), visibilityState, false);
-    WKRetainPtr<WKStringRef> javaScriptString(AdoptWK, WKStringCreateWithUTF8CString("document.webkitVisibilityState"));
-    WKPageRunJavaScriptInMainFrame(webView->page(), javaScriptString.get(), static_cast<void*>(webView), callback);
-}
-
-static void assertSerializedScriptValueIsStringValue(WKSerializedScriptValueRef serializedValue, WKErrorRef error, const char *expected)
-{
-    EXPECT_NULL(error);
-    EXPECT_NOT_NULL(serializedValue);
-    if (error || !serializedValue)
-        return;
-
-    JSGlobalContextRef scriptContext = JSGlobalContextCreate(0);
-    JSValueRef scriptValue = WKSerializedScriptValueDeserialize(serializedValue, scriptContext, 0);
-    EXPECT_TRUE(JSValueIsString(scriptContext, scriptValue));
-    if (!JSValueIsString(scriptContext, scriptValue)) {
-        JSGlobalContextRelease(scriptContext);
-        return;
-    }
-
-    JSStringRef expectedString = JSStringCreateWithUTF8CString(expected);
-    JSStringRef scriptString = JSValueToStringCopy(scriptContext, scriptValue, 0);
-    EXPECT_TRUE(JSStringIsEqual(scriptString, expectedString));
-
-    JSStringRelease(scriptString);
-    JSStringRelease(expectedString);
-    JSGlobalContextRelease(scriptContext);
-}
-
-static void didRunStep1StateChangeVisibleToHidden(WKSerializedScriptValueRef resultSerializedScriptValue, WKErrorRef error, void* context)
-{
-    assertSerializedScriptValueIsStringValue(resultSerializedScriptValue, error, "visible");
-    setPageVisibilityStateWithEvalContinuation(static_cast<PlatformWebView*>(context), kWKPageVisibilityStateHidden, didRunStep2StateChangeHiddenToPrerender);
-}
-
-static void didRunStep2StateChangeHiddenToPrerender(WKSerializedScriptValueRef resultSerializedScriptValue, WKErrorRef error, void* context)
-{
-    assertSerializedScriptValueIsStringValue(resultSerializedScriptValue, error, "hidden");
-    setPageVisibilityStateWithEvalContinuation(static_cast<PlatformWebView*>(context), kWKPageVisibilityStatePrerender, didRunStep3StateChangePrerenderToPreview);
-}
-
-static void didRunStep3StateChangePrerenderToPreview(WKSerializedScriptValueRef resultSerializedScriptValue, WKErrorRef error, void* context)
-{
-    assertSerializedScriptValueIsStringValue(resultSerializedScriptValue, error, "prerender");
-    setPageVisibilityStateWithEvalContinuation(static_cast<PlatformWebView*>(context), kWKPageVisibilityStatePreview, didRunStep4InStatePreview);
-}
-
-static void didRunStep4InStatePreview(WKSerializedScriptValueRef resultSerializedScriptValue, WKErrorRef error, void* context)
-{
-    assertSerializedScriptValueIsStringValue(resultSerializedScriptValue, error, "preview");
-    testDone = true;
-}
-
-TEST(WebKit2, PageVisibilityState)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate());
-
-    // Pass the PlatformWebView webView on as the context of the evals, so we can continue to eval on it.
-    PlatformWebView webView(context.get());
-    setPageVisibilityStateWithEvalContinuation(&webView, kWKPageVisibilityStateVisible, didRunStep1StateChangeVisibleToHidden);
-
-    Util::run(&testDone);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/ParentFrame.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/ParentFrame.cpp
deleted file mode 100644
index 7645c66..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/ParentFrame.cpp
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <WebKit2/WKContextPrivate.h>
-
-namespace TestWebKitAPI {
-
-static bool didReceiveMessage;
-static bool isParentFrameCheckSuccessful;
-
-static void didReceiveMessageFromInjectedBundle(WKContextRef, WKStringRef messageName, WKTypeRef body, const void*)
-{
-    didReceiveMessage = true;
-
-    EXPECT_WK_STREQ("DidCheckParentFrame", messageName);
-    EXPECT_EQ(WKBooleanGetTypeID(), WKGetTypeID(body));
-    
-    isParentFrameCheckSuccessful = WKBooleanGetValue(static_cast<WKBooleanRef>(body));
-}
-
-static void setInjectedBundleClient(WKContextRef context)
-{
-    WKContextInjectedBundleClient injectedBundleClient;
-    memset(&injectedBundleClient, 0, sizeof(injectedBundleClient));
-    injectedBundleClient.didReceiveMessageFromInjectedBundle = didReceiveMessageFromInjectedBundle;
-
-    WKContextSetInjectedBundleClient(context, &injectedBundleClient);
-}
-
-TEST(WebKit2, ParentFrame)
-{
-    WKRetainPtr<WKContextRef> context = adoptWK(Util::createContextForInjectedBundleTest("ParentFrameTest"));
-    setInjectedBundleClient(context.get());
-
-    PlatformWebView webView(context.get());
-
-    WKPageLoadURL(webView.page(), adoptWK(Util::createURLForResource("simple-iframe", "html")).get());
-
-    Util::run(&didReceiveMessage);
-    EXPECT_TRUE(isParentFrameCheckSuccessful);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/ParentFrame_Bundle.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/ParentFrame_Bundle.cpp
deleted file mode 100644
index 40035e9..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/ParentFrame_Bundle.cpp
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleTest.h"
-
-#include "PlatformUtilities.h"
-#include <WebKit2/WKBundlePage.h>
-#include <WebKit2/WKBundleFrame.h>
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-static WKRetainPtr<WKBundleRef> testBundle;
-static WKRetainPtr<WKBundleFrameRef> childFrame;
-
-class ParentFrameTest : public InjectedBundleTest {
-public:
-    ParentFrameTest(const std::string& identifier);
-
-private:
-    virtual void didCreatePage(WKBundleRef, WKBundlePageRef);
-    
-};
-
-static InjectedBundleTest::Register<ParentFrameTest> registrar("ParentFrameTest");
-
-ParentFrameTest::ParentFrameTest(const std::string& identifier)
-    : InjectedBundleTest(identifier)
-{
-}
-
-static void didFinishLoadForFrame(WKBundlePageRef page, WKBundleFrameRef frame, WKTypeRef* userData, const void *clientInfo)
-{
-    if (!WKBundleFrameIsMainFrame(frame)) {
-        childFrame = frame;
-        return;
-    }
-    
-    bool isParentFrameCheckSuccessful = childFrame ? WKBundleFrameGetParentFrame(childFrame.get()) == frame : false;
-    WKBundlePostMessage(testBundle.get(), Util::toWK("DidCheckParentFrame").get(), adoptWK(WKBooleanCreate(isParentFrameCheckSuccessful)).get());
-}
-
-void ParentFrameTest::didCreatePage(WKBundleRef bundle, WKBundlePageRef page)
-{
-    testBundle = bundle;
-    
-    WKBundlePageLoaderClient pageLoaderClient;
-    memset(&pageLoaderClient, 0, sizeof(pageLoaderClient));
-    
-    pageLoaderClient.version = 1;
-    pageLoaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-    
-    WKBundlePageSetPageLoaderClient(page, &pageLoaderClient);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/PasteboardNotifications.mm b/Tools/TestWebKitAPI/Tests/WebKit2/PasteboardNotifications.mm
deleted file mode 100644
index 6635fae..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/PasteboardNotifications.mm
+++ /dev/null
@@ -1,76 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include "Test.h"
-
-#include <WebKit2/WKString.h>
-
-namespace TestWebKitAPI {
-
-static bool finished = false;
-
-static void didReceiveMessageFromInjectedBundle(WKContextRef context, WKStringRef messageName, WKTypeRef messageBody, const void* clientInfo)
-{
-    if (WKStringIsEqualToUTF8CString(messageName, "PasteboardNotificationTestDoneMessageName")
-        && WKStringIsEqualToUTF8CString(static_cast<WKStringRef>(messageBody), "didWriteToPasteboard")) {
-        NSData* data = [[NSPasteboard generalPasteboard] dataForType:@"AnotherArchivePasteboardType"];
-        EXPECT_NE(data, (NSData*)nil);
-        finished = true;
-    }
-}
-
-static void setInjectedBundleClient(WKContextRef context)
-{
-    WKContextInjectedBundleClient injectedBundleClient;
-    memset(&injectedBundleClient, 0, sizeof(injectedBundleClient));
-    injectedBundleClient.version = 0;
-    injectedBundleClient.clientInfo = 0;
-    injectedBundleClient.didReceiveMessageFromInjectedBundle = didReceiveMessageFromInjectedBundle;
-    WKContextSetInjectedBundleClient(context, &injectedBundleClient);
-}
-
-TEST(WebKit2, PasteboardNotifications)
-{
-    [[NSPasteboard generalPasteboard] clearContents];
-    
-    WKRetainPtr<WKContextRef> context = adoptWK(Util::createContextForInjectedBundleTest("PasteboardNotificationsTest"));
-    setInjectedBundleClient(context.get());
-
-    PlatformWebView webView(context.get());
-
-    WKRetainPtr<WKPreferencesRef> preferences(AdoptWK, WKPreferencesCreate());
-    WKPreferencesSetJavaScriptCanAccessClipboard(preferences.get(), true);
-
-    WKPageGroupRef pageGroup = WKPageGetPageGroup(webView.page());
-    WKPageGroupSetPreferences(pageGroup, preferences.get());
-
-    WKPageLoadURL(webView.page(), adoptWK(Util::createURLForResource("execCopy", "html")).get());
-    Util::run(&finished);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/PasteboardNotifications_Bundle.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/PasteboardNotifications_Bundle.cpp
deleted file mode 100644
index d33b77b..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/PasteboardNotifications_Bundle.cpp
+++ /dev/null
@@ -1,85 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleTest.h"
-
-#include "PlatformUtilities.h"
-#include <WebKit2/WKArray.h>
-#include <WebKit2/WKBundlePage.h>
-#include <WebKit2/WKBundleBackForwardListItem.h>
-#include <WebKit2/WKWebArchive.h>
-
-namespace TestWebKitAPI {
-
-class PasteboardNotificationsTest : public InjectedBundleTest {
-public:
-    PasteboardNotificationsTest(const std::string& identifier);
-
-    virtual void didCreatePage(WKBundleRef, WKBundlePageRef);
-};
-
-static InjectedBundleTest::Register<PasteboardNotificationsTest> registrar("PasteboardNotificationsTest");
-
-static void willWriteToPasteboard(WKBundlePageRef page, WKBundleRangeHandleRef range,  const void*)
-{
-    if (!range)
-        WKBundlePostMessage(InjectedBundleController::shared().bundle(), Util::toWK("PasteboardNotificationTestDoneMessageName").get(), Util::toWK("willWritetoPasteboardFail").get());
-}
-
-static void getPasteboardDataForRange(WKBundlePageRef, WKBundleRangeHandleRef range, WKArrayRef* pasteboardTypes, WKArrayRef* pasteboardData, const void*)
-{
-    WKTypeRef typeName = WKStringCreateWithUTF8CString("AnotherArchivePasteboardType");
-    *pasteboardTypes = WKArrayCreateAdoptingValues(&typeName, 1);
-    WKTypeRef typeData = WKWebArchiveCopyData(WKWebArchiveCreateFromRange(range));
-    *pasteboardData = WKArrayCreateAdoptingValues(&typeData, 1);
-}
-
-static void didWriteToPasteboard(WKBundlePageRef, const void*)
-{
-    WKBundlePostMessage(InjectedBundleController::shared().bundle(), Util::toWK("PasteboardNotificationTestDoneMessageName").get(), Util::toWK("didWriteToPasteboard").get());
-}
-
-PasteboardNotificationsTest::PasteboardNotificationsTest(const std::string& identifier)
-    : InjectedBundleTest(identifier)
-{
-}
-
-void PasteboardNotificationsTest::didCreatePage(WKBundleRef bundle, WKBundlePageRef page)
-{    
-    WKBundlePageEditorClient pageEditorClient;
-
-    memset(&pageEditorClient, 0, sizeof(pageEditorClient));
-
-    pageEditorClient.version = 1;
-    pageEditorClient.clientInfo = this;
-    pageEditorClient.willWriteToPasteboard = willWriteToPasteboard;
-    pageEditorClient.getPasteboardDataForRange = getPasteboardDataForRange;
-    pageEditorClient.didWriteToPasteboard = didWriteToPasteboard;
-
-    WKBundlePageSetEditorClient(page, &pageEditorClient);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/PreventEmptyUserAgent.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/PreventEmptyUserAgent.cpp
deleted file mode 100644
index c5acb61..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/PreventEmptyUserAgent.cpp
+++ /dev/null
@@ -1,70 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include "Test.h"
-#include <JavaScriptCore/JSContextRef.h>
-#include <WebKit2/WKRetainPtr.h>
-#include <WebKit2/WKSerializedScriptValue.h>
-
-namespace TestWebKitAPI {
-
-static bool testDone;
-
-static void didRunJavaScript(WKSerializedScriptValueRef resultSerializedScriptValue, WKErrorRef error, void* context)
-{
-    EXPECT_EQ(reinterpret_cast<void*>(0x1234578), context);
-    EXPECT_NOT_NULL(resultSerializedScriptValue);
-
-    JSGlobalContextRef scriptContext = JSGlobalContextCreate(0);
-    JSValueRef scriptValue = WKSerializedScriptValueDeserialize(resultSerializedScriptValue, scriptContext, 0);
-    EXPECT_TRUE(JSValueIsString(scriptContext, scriptValue));
-
-    // Make sure that the result of navigator.userAgent isn't empty, even if we set the custom
-    // user agent to the empty string.
-    JSStringRef scriptString = JSValueToStringCopy(scriptContext, scriptValue, 0);
-    EXPECT_GT(JSStringGetLength(scriptString), 0u);
-
-    JSStringRelease(scriptString);
-    JSGlobalContextRelease(scriptContext);
-
-    testDone = true;
-}
-
-TEST(WebKit2, PreventEmptyUserAgent)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate());
-    PlatformWebView webView(context.get());
-
-    WKPageSetCustomUserAgent(webView.page(), WKStringCreateWithUTF8CString(""));
-    WKRetainPtr<WKStringRef> javaScriptString(AdoptWK, WKStringCreateWithUTF8CString("navigator.userAgent"));
-    WKPageRunJavaScriptInMainFrame(webView.page(), javaScriptString.get(), reinterpret_cast<void*>(0x1234578), didRunJavaScript);
-
-    Util::run(&testDone);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/PrivateBrowsingPushStateNoHistoryCallback.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/PrivateBrowsingPushStateNoHistoryCallback.cpp
deleted file mode 100644
index 164466b..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/PrivateBrowsingPushStateNoHistoryCallback.cpp
+++ /dev/null
@@ -1,81 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include "Test.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-static bool testDone;
-
-static void didNavigateWithNavigationData(WKContextRef context, WKPageRef page, WKNavigationDataRef navigationData, WKFrameRef frame, const void* clientInfo)
-{
-    // This should never be called when navigating in Private Browsing.
-    FAIL();
-}
-
-static void didSameDocumentNavigationForFrame(WKPageRef page, WKFrameRef frame, WKSameDocumentNavigationType type, WKTypeRef userData, const void *clientInfo)
-{
-    testDone = true;
-}
-
-TEST(WebKit2, PrivateBrowsingPushStateNoHistoryCallback)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate());
-
-    WKContextHistoryClient historyClient;
-    memset(&historyClient, 0, sizeof(historyClient));
-
-    historyClient.version = 0;
-    historyClient.clientInfo = 0;
-    historyClient.didNavigateWithNavigationData = didNavigateWithNavigationData;
-    WKContextSetHistoryClient(context.get(), &historyClient);
-
-    PlatformWebView webView(context.get());
-
-    WKPageLoaderClient pageLoaderClient;
-    memset(&pageLoaderClient, 0, sizeof(pageLoaderClient));
-
-    pageLoaderClient.version = 0;
-    pageLoaderClient.clientInfo = 0;
-    pageLoaderClient.didSameDocumentNavigationForFrame = didSameDocumentNavigationForFrame;
-    WKPageSetPageLoaderClient(webView.page(), &pageLoaderClient);
-
-    WKRetainPtr<WKPreferencesRef> preferences(AdoptWK, WKPreferencesCreate());
-    WKPreferencesSetPrivateBrowsingEnabled(preferences.get(), true);
-
-    WKPageGroupRef pageGroup = WKPageGetPageGroup(webView.page());
-    WKPageGroupSetPreferences(pageGroup, preferences.get());
-
-    WKRetainPtr<WKURLRef> url(AdoptWK, Util::createURLForResource("push-state", "html"));
-    WKPageLoadURL(webView.page(), url.get());
-
-    Util::run(&testDone);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/ReloadPageAfterCrash.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/ReloadPageAfterCrash.cpp
deleted file mode 100644
index 7960dcb..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/ReloadPageAfterCrash.cpp
+++ /dev/null
@@ -1,85 +0,0 @@
-/*
- * Copyright (C) 2013 Adenilson Cavalcanti <cavalcantii@gmail.com>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include "Test.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-static bool loadBeforeCrash = false;
-static bool loadAfterCrash = false;
-
-static void didFinishLoad(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo)
-{
-    // First load before WebProcess was terminated.
-    if (!loadBeforeCrash) {
-        loadBeforeCrash = true;
-        return;
-    }
-
-    // Next load after WebProcess was terminated (hopefully
-    // it will be correctly re-spawned).
-    EXPECT_EQ(static_cast<uint32_t>(kWKFrameLoadStateFinished), WKFrameGetFrameLoadState(frame));
-    EXPECT_FALSE(loadAfterCrash);
-
-    // Set it, otherwise the loop will not end.
-    loadAfterCrash = true;
-}
-
-static void didCrash(WKPageRef page, const void*)
-{
-    // Test if first load actually worked.
-    EXPECT_TRUE(loadBeforeCrash);
-
-    // Reload should re-spawn webprocess.
-    WKPageReload(page);
-}
-
-TEST(WebKit2, ReloadPageAfterCrash)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate());
-    PlatformWebView webView(context.get());
-
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-    loaderClient.didFinishLoadForFrame = didFinishLoad;
-    loaderClient.processDidCrash = didCrash;
-    WKPageSetPageLoaderClient(webView.page(), &loaderClient);
-
-    WKRetainPtr<WKURLRef> url = adoptWK(WKURLCreateWithUTF8CString("about:blank"));
-    // Load a blank page and next kills WebProcess.
-    WKPageLoadURL(webView.page(), url.get());
-    Util::run(&loadBeforeCrash);
-    WKPageTerminate(webView.page());
-
-    // Let's try load a page and see what happens.
-    WKPageLoadURL(webView.page(), url.get());
-    Util::run(&loadAfterCrash);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/ResizeWindowAfterCrash.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/ResizeWindowAfterCrash.cpp
deleted file mode 100644
index 1af639d..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/ResizeWindowAfterCrash.cpp
+++ /dev/null
@@ -1,96 +0,0 @@
-/*
- * Copyright (C) 2013 Adenilson Cavalcanti <cavalcantii@gmail.com>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include "Test.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-struct TestStatesData {
-    TestStatesData(WKContextRef context)
-        : webView(context)
-        , firstLoad(false)
-        , resizeAfterCrash(false)
-    {
-    }
-
-    PlatformWebView webView;
-    bool firstLoad;
-    bool resizeAfterCrash;
-};
-
-static void didFinishLoad(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo)
-{
-    TestStatesData* states = const_cast<TestStatesData*>(static_cast<const TestStatesData*>(clientInfo));
-    if (!states->firstLoad) {
-        // Loading a blank page worked, next we will kill WebProcess.
-        states->firstLoad = true;
-        return;
-    }
-
-    EXPECT_FALSE(states->resizeAfterCrash);
-    states->resizeAfterCrash = true;
-}
-
-static void didCrash(WKPageRef page, const void* clientInfo)
-{
-    TestStatesData* states = const_cast<TestStatesData*>(static_cast<const TestStatesData*>(clientInfo));
-    EXPECT_TRUE(states->firstLoad);
-    // Resize should work after WebProcess was terminated, unless
-    // the port's View is accessing nulled WebProcess related data,
-    // which would cause a crash.
-    states->webView.resizeTo(100, 200);
-    states->webView.resizeTo(300, 400);
-
-    WKPageReload(page);
-}
-
-TEST(WebKit2, ResizeWindowAfterCrash)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate());
-    TestStatesData states(context.get());
-
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-    loaderClient.clientInfo = &states;
-    loaderClient.didFinishLoadForFrame = didFinishLoad;
-    loaderClient.processDidCrash = didCrash;
-    WKPageSetPageLoaderClient(states.webView.page(), &loaderClient);
-
-    WKRetainPtr<WKURLRef> url = adoptWK(WKURLCreateWithUTF8CString("about:blank"));
-    // Load a blank page and next kills WebProcess.
-    WKPageLoadURL(states.webView.page(), url.get());
-    Util::run(&states.firstLoad);
-    WKPageTerminate(states.webView.page());
-
-    // Let's try load a page and see what happens.
-    WKPageLoadURL(states.webView.page(), url.get());
-    Util::run(&states.resizeAfterCrash);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/ResponsivenessTimerDoesntFireEarly.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/ResponsivenessTimerDoesntFireEarly.cpp
deleted file mode 100644
index 10f04c1..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/ResponsivenessTimerDoesntFireEarly.cpp
+++ /dev/null
@@ -1,98 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-
-namespace TestWebKitAPI {
-
-static bool didFinishLoad;
-static bool didBecomeUnresponsive;
-static bool didBrieflyPause;
-
-static void didReceiveMessageFromInjectedBundle(WKContextRef, WKStringRef messageName, WKTypeRef, const void*)
-{
-    didBrieflyPause = true;
-    EXPECT_WK_STREQ("DidBrieflyPause", messageName);
-}
-
-static void didFinishLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef, const void*)
-{
-    didFinishLoad = true;
-}
-
-static void processDidBecomeUnresponsive(WKPageRef, const void*)
-{
-    didBecomeUnresponsive = true;
-}
-
-static void setInjectedBundleClient(WKContextRef context)
-{
-    WKContextInjectedBundleClient injectedBundleClient;
-    memset(&injectedBundleClient, 0, sizeof(injectedBundleClient));
-    injectedBundleClient.version = 0;
-    injectedBundleClient.clientInfo = 0;
-    injectedBundleClient.didReceiveMessageFromInjectedBundle = didReceiveMessageFromInjectedBundle;
-
-    WKContextSetInjectedBundleClient(context, &injectedBundleClient);
-}
-
-static void setPageLoaderClient(WKPageRef page)
-{
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-    loaderClient.version = 0;
-    loaderClient.clientInfo = 0;
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-    loaderClient.processDidBecomeUnresponsive = processDidBecomeUnresponsive;
-
-    WKPageSetPageLoaderClient(page, &loaderClient);
-}
-
-TEST(WebKit2, ResponsivenessTimerDoesntFireEarly)
-{
-    WKRetainPtr<WKContextRef> context = adoptWK(Util::createContextForInjectedBundleTest("ResponsivenessTimerDoesntFireEarlyTest"));
-    setInjectedBundleClient(context.get());
-
-    PlatformWebView webView(context.get());
-    setPageLoaderClient(webView.page());
-
-    WKPageLoadURL(webView.page(), adoptWK(Util::createURLForResource("simple", "html")).get());
-    Util::run(&didFinishLoad);
-
-    WKContextPostMessageToInjectedBundle(context.get(), Util::toWK("BrieflyPause").get(), 0);
-
-    // Pressing a key on the keyboard should start the responsiveness timer. Since the web process
-    // is going to pause before it receives this keypress, it should take a little while to respond
-    // (but not so long that the responsiveness timer fires).
-    webView.simulateSpacebarKeyPress();
-
-    Util::run(&didBrieflyPause);
-
-    EXPECT_FALSE(didBecomeUnresponsive);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/ResponsivenessTimerDoesntFireEarly_Bundle.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/ResponsivenessTimerDoesntFireEarly_Bundle.cpp
deleted file mode 100644
index 50d664f..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/ResponsivenessTimerDoesntFireEarly_Bundle.cpp
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleTest.h"
-
-#include "PlatformUtilities.h"
-
-namespace TestWebKitAPI {
-
-class ResponsivenessTimerDoesntFireEarlyTest : public InjectedBundleTest {
-public:
-    ResponsivenessTimerDoesntFireEarlyTest(const std::string& identifier);
-
-private:
-    virtual void didReceiveMessage(WKBundleRef, WKStringRef messageName, WKTypeRef messageBody);
-};
-
-static InjectedBundleTest::Register<ResponsivenessTimerDoesntFireEarlyTest> registrar("ResponsivenessTimerDoesntFireEarlyTest");
-
-ResponsivenessTimerDoesntFireEarlyTest::ResponsivenessTimerDoesntFireEarlyTest(const std::string& identifier)
-    : InjectedBundleTest(identifier)
-{
-}
-
-void ResponsivenessTimerDoesntFireEarlyTest::didReceiveMessage(WKBundleRef bundle, WKStringRef messageName, WKTypeRef)
-{
-    if (!WKStringIsEqualToUTF8CString(messageName, "BrieflyPause"))
-        return;
-
-    // The responsiveness timer is a 3-second timer. Pausing for 0.5 seconds should not cause it to fire.
-    Util::sleep(0.5);
-
-    WKBundlePostMessage(bundle, Util::toWK("DidBrieflyPause").get(), 0);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/RestoreSessionStateContainingFormData.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/RestoreSessionStateContainingFormData.cpp
deleted file mode 100644
index f75de12..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/RestoreSessionStateContainingFormData.cpp
+++ /dev/null
@@ -1,86 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "JavaScriptTest.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include "Test.h"
-
-namespace TestWebKitAPI {
-
-static bool didFinishLoad;
-
-static void didFinishLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef, const void*)
-{
-    didFinishLoad = true;
-}
-
-static void setPageLoaderClient(WKPageRef page)
-{
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-    loaderClient.version = 0;
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-
-    WKPageSetPageLoaderClient(page, &loaderClient);
-}
-
-static WKRetainPtr<WKDataRef> createSessionStateContainingFormData(WKContextRef context)
-{
-    PlatformWebView webView(context);
-    setPageLoaderClient(webView.page());
-
-    WKPageLoadURL(webView.page(), adoptWK(Util::createURLForResource("simple-form", "html")).get());
-    Util::run(&didFinishLoad);
-    didFinishLoad = false;
-
-    EXPECT_JS_EQ(webView.page(), "submitForm()", "undefined");
-    Util::run(&didFinishLoad);
-    didFinishLoad = false;
-
-    return adoptWK(WKPageCopySessionState(webView.page(), 0, 0));
-}
-
-TEST(WebKit2, RestoreSessionStateContainingFormData)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate());
-
-    // FIXME: Once <rdar://problem/8708435> is fixed, we can move the creation of this
-    // PlatformWebView after the call to createSessionStaetContainingFormData. Until then, it must
-    // remain here to avoid a race condition between the UI and web processes.
-    PlatformWebView webView(context.get());
-    setPageLoaderClient(webView.page());
-
-    WKRetainPtr<WKDataRef> data = createSessionStateContainingFormData(context.get());
-    EXPECT_NOT_NULL(data);
-
-    WKPageRestoreFromSessionState(webView.page(), data.get());
-    Util::run(&didFinishLoad);
-
-    EXPECT_TRUE(WKPageCanGoBack(webView.page()));
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/ShouldGoToBackForwardListItem.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/ShouldGoToBackForwardListItem.cpp
deleted file mode 100644
index c6f3b1b..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/ShouldGoToBackForwardListItem.cpp
+++ /dev/null
@@ -1,92 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include "Test.h"
-
-#include <WebKit2/WKString.h>
-
-namespace TestWebKitAPI {
-
-static bool finished = false;
-static bool receivedProperBackForwardCallbacks = false;
-
-static void didFinishLoadForFrame(WKPageRef, WKFrameRef frame, WKTypeRef, const void*)
-{
-    // Only mark finished when the main frame loads
-    if (!WKFrameIsMainFrame(frame))
-        return;
-
-    finished = true;
-}
-
-static void willGoToBackForwardListItem(WKPageRef, WKBackForwardListItemRef, WKTypeRef userData, const void*)
-{
-    if (WKGetTypeID(userData) == WKStringGetTypeID()) {
-        if (WKStringIsEqualToUTF8CString((WKStringRef)userData, "shouldGoToBackForwardListItemCallback called as expected"))
-            receivedProperBackForwardCallbacks = true;
-    }
-
-    finished = true;
-}
-
-static void setPageLoaderClient(WKPageRef page)
-{
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-    loaderClient.version = 1;
-    loaderClient.clientInfo = 0;
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-    loaderClient.willGoToBackForwardListItem = willGoToBackForwardListItem;
-
-    WKPageSetPageLoaderClient(page, &loaderClient);
-}
-
-TEST(WebKit2, ShouldGoToBackForwardListItem)
-{
-    WKRetainPtr<WKContextRef> context = adoptWK(Util::createContextForInjectedBundleTest("ShouldGoToBackForwardListItemTest"));
-    // Enable the page cache so we can test the WKBundleBackForwardListItemIsInPageCache API
-    WKContextSetCacheModel(context.get(), kWKCacheModelDocumentBrowser);
-
-    PlatformWebView webView(context.get());
-    setPageLoaderClient(webView.page());
-
-    WKPageLoadURL(webView.page(), adoptWK(Util::createURLForResource("simple", "html")).get());
-    Util::run(&finished);
-    
-    finished = false;
-    WKPageLoadURL(webView.page(), adoptWK(Util::createURLForResource("simple-iframe", "html")).get());
-    Util::run(&finished);
-
-    finished = false;
-    WKPageGoBack(webView.page());
-    Util::run(&finished);
-    
-    EXPECT_EQ(receivedProperBackForwardCallbacks, true);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/ShouldGoToBackForwardListItem_Bundle.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/ShouldGoToBackForwardListItem_Bundle.cpp
deleted file mode 100644
index 0f15c47..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/ShouldGoToBackForwardListItem_Bundle.cpp
+++ /dev/null
@@ -1,70 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleTest.h"
-
-#include "PlatformUtilities.h"
-#include <WebKit2/WKBundlePage.h>
-#include <WebKit2/WKBundleBackForwardListItem.h>
-
-namespace TestWebKitAPI {
-
-class ShouldGoToBackForwardListItemTest : public InjectedBundleTest {
-public:
-    ShouldGoToBackForwardListItemTest(const std::string& identifier);
-
-    virtual void didCreatePage(WKBundleRef bundle, WKBundlePageRef page);
-};
-
-static InjectedBundleTest::Register<ShouldGoToBackForwardListItemTest> registrar("ShouldGoToBackForwardListItemTest");
-
-static bool shouldGoToBackForwardListItemCallback(WKBundlePageRef, WKBundleBackForwardListItemRef item, WKTypeRef* userData, const void*)
-{
-    // The item should be in the page cache
-    if (WKBundleBackForwardListItemIsInPageCache(item))
-        *userData = WKStringCreateWithUTF8CString("shouldGoToBackForwardListItemCallback called as expected");
-
-    return true;
-}
-
-ShouldGoToBackForwardListItemTest::ShouldGoToBackForwardListItemTest(const std::string& identifier)
-    : InjectedBundleTest(identifier)
-{
-}
-
-void ShouldGoToBackForwardListItemTest::didCreatePage(WKBundleRef bundle, WKBundlePageRef page)
-{    
-    WKBundlePageLoaderClient pageLoaderClient;
-    memset(&pageLoaderClient, 0, sizeof(pageLoaderClient));
-    
-    pageLoaderClient.version = 1;
-    pageLoaderClient.clientInfo = this;
-    pageLoaderClient.shouldGoToBackForwardListItem = shouldGoToBackForwardListItemCallback;
-    
-    WKBundlePageSetPageLoaderClient(page, &pageLoaderClient);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/SpacebarScrolling.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/SpacebarScrolling.cpp
deleted file mode 100644
index d6a7870..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/SpacebarScrolling.cpp
+++ /dev/null
@@ -1,106 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "JavaScriptTest.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-static bool didFinishLoad;
-static bool didNotHandleKeyDownEvent;
-
-static void didFinishLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef, const void*)
-{
-    didFinishLoad = true;
-}
-
-static void didNotHandleKeyEventCallback(WKPageRef, WKNativeEventPtr event, const void*)
-{
-    if (Util::isKeyDown(event))
-        didNotHandleKeyDownEvent = true;
-}
-
-TEST(WebKit2, SpacebarScrolling)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextWithInjectedBundle());
-    PlatformWebView webView(context.get());
-
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-    
-    loaderClient.version = 0;
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-    WKPageSetPageLoaderClient(webView.page(), &loaderClient);
-
-    WKPageUIClient uiClient;
-    memset(&uiClient, 0, sizeof(uiClient));
-
-    uiClient.didNotHandleKeyEvent = didNotHandleKeyEventCallback;
-    WKPageSetPageUIClient(webView.page(), &uiClient);
-
-    WKRetainPtr<WKURLRef> url(AdoptWK, Util::createURLForResource("spacebar-scrolling", "html"));
-    WKPageLoadURL(webView.page(), url.get());
-    Util::run(&didFinishLoad);
-
-    EXPECT_JS_FALSE(webView.page(), "isDocumentScrolled()");
-    EXPECT_JS_FALSE(webView.page(), "textFieldContainsSpace()");
-
-    webView.simulateSpacebarKeyPress();
-
-    EXPECT_JS_FALSE(webView.page(), "isDocumentScrolled()");
-    EXPECT_JS_TRUE(webView.page(), "textFieldContainsSpace()");
-
-    // On Mac, a key down event represents both a raw key down and a key press. On Windows, a key
-    // down event only represents a raw key down. We expect the key press to be handled (because it
-    // inserts text into the text field). But the raw key down should not be handled.
-#if PLATFORM(MAC)
-    EXPECT_FALSE(didNotHandleKeyDownEvent);
-#elif PLATFORM(WIN)
-    EXPECT_TRUE(didNotHandleKeyDownEvent);
-#endif
-
-    EXPECT_JS_EQ(webView.page(), "blurTextField()", "undefined");
-
-    didNotHandleKeyDownEvent = false;
-    webView.simulateSpacebarKeyPress();
-
-    // This EXPECT_JS_TRUE test fails on Windows port
-    // https://bugs.webkit.org/show_bug.cgi?id=84961
-#if !PLATFORM(WIN)
-    EXPECT_JS_TRUE(webView.page(), "isDocumentScrolled()");
-#endif
-    EXPECT_JS_TRUE(webView.page(), "textFieldContainsSpace()");
-
-#if PLATFORM(MAC)
-    EXPECT_FALSE(didNotHandleKeyDownEvent);
-#elif PLATFORM(WIN)
-    EXPECT_TRUE(didNotHandleKeyDownEvent);
-#endif
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/UserMessage.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/UserMessage.cpp
deleted file mode 100644
index bc02dc8..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/UserMessage.cpp
+++ /dev/null
@@ -1,157 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "Test.h"
-
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <wtf/OwnPtr.h>
-#include <wtf/PassOwnPtr.h>
-
-namespace TestWebKitAPI {
-
-class WebKit2UserMessageRoundTripTest : public ::testing::Test {
-public:
-    WebKit2UserMessageRoundTripTest()
-        : didFinishLoad(false)
-        , didReceiveMessage(false)
-    {
-    }
-
-    WKRetainPtr<WKContextRef> context;
-    OwnPtr<PlatformWebView> webView;
-
-    WKRetainPtr<WKTypeRef> recievedBody;
-
-    bool didFinishLoad;
-    bool didReceiveMessage;
-
-    static void didReceiveMessageFromInjectedBundle(WKContextRef, WKStringRef messageName, WKTypeRef messageBody, const void* clientInfo)
-    {
-        if (!WKStringIsEqualToUTF8CString(messageName, "RoundTripReturn"))
-            return;
-
-        ((WebKit2UserMessageRoundTripTest*)clientInfo)->recievedBody = messageBody;
-        ((WebKit2UserMessageRoundTripTest*)clientInfo)->didReceiveMessage = true;
-    }
-
-    static void didFinishLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef, const void* clientInfo)
-    {
-        ((WebKit2UserMessageRoundTripTest*)clientInfo)->didFinishLoad = true;
-    }
-
-    static void setInjectedBundleClient(WKContextRef context, const void* clientInfo)
-    {
-        WKContextInjectedBundleClient injectedBundleClient;
-        memset(&injectedBundleClient, 0, sizeof(injectedBundleClient));
-        injectedBundleClient.version = kWKContextInjectedBundleClientCurrentVersion;
-        injectedBundleClient.clientInfo = clientInfo;
-        injectedBundleClient.didReceiveMessageFromInjectedBundle = didReceiveMessageFromInjectedBundle;
-
-        WKContextSetInjectedBundleClient(context, &injectedBundleClient);
-    }
-
-    static void setPageLoaderClient(WKPageRef page, const void* clientInfo)
-    {
-        WKPageLoaderClient loaderClient;
-        memset(&loaderClient, 0, sizeof(loaderClient));
-        loaderClient.version = kWKPageLoaderClientCurrentVersion;
-        loaderClient.clientInfo = clientInfo;
-        loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-
-        WKPageSetPageLoaderClient(page, &loaderClient);
-    }
-
-    virtual void SetUp()
-    {
-        context = adoptWK(Util::createContextForInjectedBundleTest("UserMessageTest"));
-        setInjectedBundleClient(context.get(), this);
-
-        webView = adoptPtr(new PlatformWebView(context.get()));
-        setPageLoaderClient(webView->page(), this);
-
-        didFinishLoad = false;
-        didReceiveMessage = false;
-
-        // Force the creation of the 
-        WKPageLoadURL(webView->page(), adoptWK(Util::createURLForResource("simple", "html")).get());
-        Util::run(&didFinishLoad);
-
-    }
-
-    // Used to test sending a WKType round trip to the WebProcess and back.
-    // Result is stored into the recievedBody member variable.
-    void roundTrip(WKTypeRef object)
-    {
-        WKTypeID storedTypeID = WKGetTypeID(object);
-    
-        recievedBody.clear();
-        didReceiveMessage = false;
-        WKContextPostMessageToInjectedBundle(context.get(), Util::toWK("RoundTrip").get(), object);
-        Util::run(&didReceiveMessage);
-
-        EXPECT_NOT_NULL(recievedBody);
-        EXPECT_EQ(storedTypeID, WKGetTypeID(recievedBody.get()));
-    }
-};
-
-
-TEST_F(WebKit2UserMessageRoundTripTest, WKURLRequestRef)
-{
-    WKRetainPtr<WKURLRef> url = adoptWK(WKURLCreateWithUTF8CString("http://webkit.org/"));
-    WKRetainPtr<WKURLRequestRef> request = adoptWK(WKURLRequestCreateWithWKURL(url.get()));
-    
-    roundTrip(request.get());
-    WKTypeRef roundTrippedTypeRef = recievedBody.get();
-
-    WKRetainPtr<WKURLRequestRef> roundTrippedRequest = static_cast<WKURLRequestRef>(roundTrippedTypeRef);
-    WKRetainPtr<WKURLRef> roundTrippedURL = adoptWK(WKURLRequestCopyURL(roundTrippedRequest.get()));
-    EXPECT_TRUE(WKURLIsEqual(roundTrippedURL.get(), url.get()));
-}
-
-TEST_F(WebKit2UserMessageRoundTripTest, WKURL)
-{
-    WKRetainPtr<WKURLRef> url = adoptWK(WKURLCreateWithUTF8CString("http://webkit.org/"));
-    
-    roundTrip(url.get());
-    WKTypeRef roundTrippedTypeRef = recievedBody.get();
-
-    WKRetainPtr<WKURLRef> roundTrippedURL = static_cast<WKURLRef>(roundTrippedTypeRef);
-    EXPECT_TRUE(WKURLIsEqual(roundTrippedURL.get(), url.get()));
-}
-
-TEST_F(WebKit2UserMessageRoundTripTest, WKString)
-{
-    WKRetainPtr<WKStringRef> string = adoptWK(WKStringCreateWithUTF8CString("An important string"));
-    
-    roundTrip(string.get());
-    WKTypeRef roundTrippedTypeRef = recievedBody.get();
-
-    WKRetainPtr<WKStringRef> roundTrippedString = static_cast<WKStringRef>(roundTrippedTypeRef);
-    EXPECT_TRUE(WKStringIsEqual(roundTrippedString.get(), string.get()));
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/UserMessage_Bundle.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/UserMessage_Bundle.cpp
deleted file mode 100644
index 29ede3d..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/UserMessage_Bundle.cpp
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleTest.h"
-
-#include "PlatformUtilities.h"
-
-namespace TestWebKitAPI {
-
-class UserMessageTest : public InjectedBundleTest {
-public:
-    UserMessageTest(const std::string& identifier)
-        : InjectedBundleTest(identifier)
-    {
-    }
-
-private:
-    virtual void didReceiveMessage(WKBundleRef bundle, WKStringRef messageName, WKTypeRef messageBody)
-    {
-        if (!WKStringIsEqualToUTF8CString(messageName, "RoundTrip"))
-            return;
-
-        WKBundlePostMessage(bundle, Util::toWK("RoundTripReturn").get(), messageBody);
-    }
-};
-
-static InjectedBundleTest::Register<UserMessageTest> registrar("UserMessageTest");
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/WKConnection.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/WKConnection.cpp
deleted file mode 100644
index d2782a4..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/WKConnection.cpp
+++ /dev/null
@@ -1,116 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include "Test.h"
-
-namespace TestWebKitAPI {
-
-// State for part 1 - setting up the connection.
-static bool connectionEstablished;
-static WKConnectionRef connectionToBundle;
-
-// State for part 2 - send/recieving messages.
-static bool messageReceived;
-
-// State for part 3 - tearing down the connection.
-static bool connectionTornDown;
-
-
-/* WKContextConnectionClient */
-static void didCreateConnection(WKContextRef context, WKConnectionRef connection, const void* clientInfo)
-{
-    connectionEstablished = true;
-
-    // Store off the conneciton to use.
-    connectionToBundle = (WKConnectionRef)WKRetain(connection);
-}
-
-/* WKConnectionClient */
-static void connectionDidReceiveMessage(WKConnectionRef connection, WKStringRef messageName, WKTypeRef messageBody, const void *clientInfo)
-{
-    // We only expect to get the "Pong" message.
-    EXPECT_WK_STREQ(messageName, "PongMessageName");
-    EXPECT_WK_STREQ((WKStringRef)messageBody, "PongMessageBody");
-
-    messageReceived = true;
-}
-
-static void connectionDidClose(WKConnectionRef connection, const void* clientInfo)
-{
-    connectionTornDown = true;
-}
-
-TEST(WebKit2, WKConnectionTest)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextForInjectedBundleTest("WKConnectionTest"));
-
-    // Set up the context's connection client so that we can access the connection when
-    // it is created.
-    WKContextConnectionClient contextConnectionClient;
-    memset(&contextConnectionClient, 0, sizeof(contextConnectionClient));
-    contextConnectionClient.version = kWKContextConnectionClientCurrentVersion;
-    contextConnectionClient.clientInfo = 0;
-    contextConnectionClient.didCreateConnection = didCreateConnection;
-    WKContextSetConnectionClient(context.get(), &contextConnectionClient);
- 
-    // Load a simple page to start the WebProcess and establish a connection.
-    PlatformWebView webView(context.get());
-    WKRetainPtr<WKURLRef> url(AdoptWK, Util::createURLForResource("simple", "html"));
-    WKPageLoadURL(webView.page(), url.get());
-
-    // Wait until the connection is established.
-    Util::run(&connectionEstablished);
-    ASSERT_NOT_NULL(connectionToBundle);
-
-    // Setup a client on the connection so we can listen for messages and
-    // tear down notifications.
-    WKConnectionClient connectionClient;
-    memset(&connectionClient, 0, sizeof(connectionClient));
-    connectionClient.version = WKConnectionClientCurrentVersion;
-    connectionClient.clientInfo = 0;
-    connectionClient.didReceiveMessage = connectionDidReceiveMessage;
-    connectionClient.didClose = connectionDidClose;
-    WKConnectionSetConnectionClient(connectionToBundle, &connectionClient);
-    
-    // Post a simple message to the bundle via the connection.
-    WKConnectionPostMessage(connectionToBundle, Util::toWK("PingMessageName").get(), Util::toWK("PingMessageBody").get());
-
-    // Wait for the reply.
-    Util::run(&messageReceived);
-
-    // Terminate the page to force the connection closed.
-    WKPageTerminate(webView.page());
-    
-    // Wait for the connection to close.
-    Util::run(&connectionTornDown);
-
-    // This release is to balance the retain in didCreateConnection.
-    WKRelease(connectionToBundle);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/WKConnection_Bundle.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/WKConnection_Bundle.cpp
deleted file mode 100644
index 9ab2c97..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/WKConnection_Bundle.cpp
+++ /dev/null
@@ -1,60 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleTest.h"
-#include "PlatformUtilities.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-/* WKConnectionClient */
-static void connectionDidReceiveMessage(WKConnectionRef connection, WKStringRef messageName, WKTypeRef messageBody, const void *clientInfo)
-{
-    // Post a simple message to the back to the application layer.
-    WKConnectionPostMessage(connection, Util::toWK("PongMessageName").get(), Util::toWK("PongMessageBody").get());
-}
-
-class WKConnectionTest : public InjectedBundleTest {
-public:
-    WKConnectionTest(const std::string& identifier)
-        : InjectedBundleTest(identifier)
-    {
-    }
-
-    virtual void initialize(WKBundleRef bundle, WKTypeRef)
-    {
-        WKConnectionClient connectionClient;
-        memset(&connectionClient, 0, sizeof(connectionClient));
-        connectionClient.version = WKConnectionClientCurrentVersion;
-        connectionClient.clientInfo = 0;
-        connectionClient.didReceiveMessage = connectionDidReceiveMessage;
-        WKConnectionSetConnectionClient(WKBundleGetApplicationConnection(bundle), &connectionClient);
-    }
-};
-
-static InjectedBundleTest::Register<WKConnectionTest> registrar("WKConnectionTest");
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/WKPageGetScaleFactorNotZero.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/WKPageGetScaleFactorNotZero.cpp
deleted file mode 100644
index 85490de..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/WKPageGetScaleFactorNotZero.cpp
+++ /dev/null
@@ -1,78 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include "Test.h"
-
-namespace TestWebKitAPI {
-
-static bool didFinishLoad;
-
-static void didFinishLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef, const void*)
-{
-    didFinishLoad = true;
-}
-
-static void setPageLoaderClient(WKPageRef page)
-{
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-    loaderClient.version = 0;
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-
-    WKPageSetPageLoaderClient(page, &loaderClient);
-}
-
-static WKRetainPtr<WKDataRef> createSessionState(WKContextRef context)
-{
-    PlatformWebView webView(context);
-    setPageLoaderClient(webView.page());
-
-    WKPageLoadURL(webView.page(), adoptWK(Util::createURLForResource("simple", "html")).get());
-    Util::run(&didFinishLoad);
-    didFinishLoad = false;
-
-    return adoptWK(WKPageCopySessionState(webView.page(), 0, 0));
-}
-
-TEST(WebKit2, WKPageGetScaleFactorNotZero)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate());
-
-    PlatformWebView webView(context.get());
-    setPageLoaderClient(webView.page());
-
-    WKRetainPtr<WKDataRef> data = createSessionState(context.get());
-    EXPECT_NOT_NULL(data);
-
-    WKPageRestoreFromSessionState(webView.page(), data.get());
-    Util::run(&didFinishLoad);
-
-    EXPECT_TRUE(WKPageGetScaleFactor(webView.page()) == 1.0);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/WKPreferences.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/WKPreferences.cpp
deleted file mode 100644
index 976e704..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/WKPreferences.cpp
+++ /dev/null
@@ -1,124 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include <WebKit2/WKPreferencesPrivate.h>
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-TEST(WebKit2, WKPreferencesBasic)
-{
-    WKPreferencesRef preference = WKPreferencesCreate();
-
-    EXPECT_EQ(WKPreferencesGetTypeID(), WKGetTypeID(preference));
-
-    WKRelease(preference);
-}
-
-TEST(WebKit2, WKPreferencesDefaults)
-{
-#if PLATFORM(WIN)
-    static const char* expectedStandardFontFamily = "Times New Roman";
-    static const char* expectedFixedFontFamily = "Courier New";
-    static const char* expectedSerifFontFamily = "Times New Roman";
-    static const char* expectedSansSerifFontFamily = "Arial";
-    static const char* expectedCursiveFontFamily = "Comic Sans MS";
-    static const char* expectedFantasyFontFamily = "Comic Sans MS";
-    static const char* expectedPictographFontFamily = "Times New Roman";
-#elif PLATFORM(MAC)
-    static const char* expectedStandardFontFamily = "Times";
-    static const char* expectedFixedFontFamily = "Courier";
-    static const char* expectedSerifFontFamily = "Times";
-    static const char* expectedSansSerifFontFamily = "Helvetica";
-    static const char* expectedCursiveFontFamily = "Apple Chancery";
-    static const char* expectedFantasyFontFamily = "Papyrus";
-    static const char* expectedPictographFontFamily = "Apple Color Emoji";
-#elif PLATFORM(GTK) || PLATFORM(EFL)
-    static const char* expectedStandardFontFamily = "Times";
-    static const char* expectedFixedFontFamily = "Courier New";
-    static const char* expectedSerifFontFamily = "Times";
-    static const char* expectedSansSerifFontFamily = "Helvetica";
-    static const char* expectedCursiveFontFamily = "Comic Sans MS";
-    static const char* expectedFantasyFontFamily = "Impact";
-    static const char* expectedPictographFontFamily = "Times";
-#endif
-
-    WKPreferencesRef preference = WKPreferencesCreate();
-
-    EXPECT_TRUE(WKPreferencesGetJavaScriptEnabled(preference));
-    EXPECT_TRUE(WKPreferencesGetLoadsImagesAutomatically(preference));
-    EXPECT_FALSE(WKPreferencesGetOfflineWebApplicationCacheEnabled(preference));
-    EXPECT_TRUE(WKPreferencesGetLocalStorageEnabled(preference));
-    EXPECT_TRUE(WKPreferencesGetXSSAuditorEnabled(preference));
-    EXPECT_FALSE(WKPreferencesGetFrameFlatteningEnabled(preference));
-    EXPECT_TRUE(WKPreferencesGetPluginsEnabled(preference));
-    EXPECT_TRUE(WKPreferencesGetJavaEnabled(preference));
-    EXPECT_TRUE(WKPreferencesGetJavaScriptCanOpenWindowsAutomatically(preference));
-    EXPECT_TRUE(WKPreferencesGetHyperlinkAuditingEnabled(preference));
-    EXPECT_WK_STREQ(expectedStandardFontFamily, adoptWK(WKPreferencesCopyStandardFontFamily(preference)));
-    EXPECT_WK_STREQ(expectedFixedFontFamily, adoptWK(WKPreferencesCopyFixedFontFamily(preference)));
-    EXPECT_WK_STREQ(expectedSerifFontFamily, adoptWK(WKPreferencesCopySerifFontFamily(preference)));
-    EXPECT_WK_STREQ(expectedSansSerifFontFamily, adoptWK(WKPreferencesCopySansSerifFontFamily(preference)));
-    EXPECT_WK_STREQ(expectedCursiveFontFamily, adoptWK(WKPreferencesCopyCursiveFontFamily(preference)));
-    EXPECT_WK_STREQ(expectedFantasyFontFamily, adoptWK(WKPreferencesCopyFantasyFontFamily(preference)));
-    EXPECT_WK_STREQ(expectedPictographFontFamily, adoptWK(WKPreferencesCopyPictographFontFamily(preference)));
-    EXPECT_EQ(0u, WKPreferencesGetMinimumFontSize(preference));
-    EXPECT_FALSE(WKPreferencesGetPrivateBrowsingEnabled(preference));
-    EXPECT_FALSE(WKPreferencesGetDeveloperExtrasEnabled(preference));
-    EXPECT_TRUE(WKPreferencesGetTextAreasAreResizable(preference));
-
-#if PLATFORM(WIN)
-    EXPECT_EQ(kWKFontSmoothingLevelWindows, WKPreferencesGetFontSmoothingLevel(preference));
-#else
-    EXPECT_EQ(kWKFontSmoothingLevelMedium, WKPreferencesGetFontSmoothingLevel(preference));
-#endif
-
-    EXPECT_TRUE(WKPreferencesGetAcceleratedCompositingEnabled(preference));
-    EXPECT_FALSE(WKPreferencesGetCompositingBordersVisible(preference));
-    EXPECT_FALSE(WKPreferencesGetCompositingRepaintCountersVisible(preference));
-    EXPECT_FALSE(WKPreferencesGetNeedsSiteSpecificQuirks(preference));
-    EXPECT_EQ(kWKAllowAllStorage, WKPreferencesGetStorageBlockingPolicy(preference));
-    EXPECT_FALSE(WKPreferencesGetTextAutosizingEnabled(preference));
-
-    WKRelease(preference);
-}
-
-TEST(WebKit2, WKPreferencesCopying)
-{
-    WKRetainPtr<WKStringRef> identifier(AdoptWK, WKStringCreateWithUTF8CString("identifier"));
-
-    WKRetainPtr<WKPreferencesRef> preferences(AdoptWK, WKPreferencesCreateWithIdentifier(identifier.get()));
-    WKPreferencesSetDefaultFontSize(preferences.get(), 36);
-
-    WKRetainPtr<WKPreferencesRef> copy(AdoptWK, WKPreferencesCreateCopy(preferences.get()));
-
-    WKPreferencesSetDefaultFontSize(preferences.get(), 24);
-    EXPECT_EQ(24u, WKPreferencesGetDefaultFontSize(preferences.get()));
-    EXPECT_EQ(36u, WKPreferencesGetDefaultFontSize(copy.get()));
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/WKString.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/WKString.cpp
deleted file mode 100644
index b672359..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/WKString.cpp
+++ /dev/null
@@ -1,71 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-namespace TestWebKitAPI {
-
-TEST(WebKit2, WKString)
-{
-    WKStringRef string = WKStringCreateWithUTF8CString("hello");
-    EXPECT_TRUE(!WKStringIsEmpty(string));
-    EXPECT_TRUE(WKStringIsEqual(string, string));
-    EXPECT_TRUE(WKStringIsEqualToUTF8CString(string, "hello"));
-    EXPECT_EQ(16u, WKStringGetMaximumUTF8CStringSize(string));
-
-    size_t maxSize = WKStringGetMaximumUTF8CStringSize(string);
-    char* buffer = new char[maxSize];
-
-    size_t actualSize = WKStringGetUTF8CString(string, buffer, maxSize);
-    EXPECT_EQ(6u, actualSize);
-    EXPECT_STREQ("hello", buffer);
-
-    delete[] buffer;
-    
-    maxSize = WKStringGetLength(string);
-    EXPECT_EQ(5u, maxSize);
-
-    // Allocate a buffer one character larger than we need.
-    WKChar* uniBuffer = new WKChar[maxSize+1];
-    actualSize = WKStringGetCharacters(string, uniBuffer, maxSize);
-    EXPECT_EQ(5u, actualSize);
-    
-    WKChar helloBuffer[] = { 'h', 'e', 'l', 'l', 'o' };
-    EXPECT_TRUE(!memcmp(uniBuffer, helloBuffer, 10));
-    
-    // Test passing a buffer length < the string length.
-    actualSize = WKStringGetCharacters(string, uniBuffer, maxSize - 1);
-    EXPECT_EQ(4u, actualSize);
-    
-    // Test passing a buffer length > the string length.
-    actualSize = WKStringGetCharacters(string, uniBuffer, maxSize + 1);
-    EXPECT_EQ(5u, actualSize);
-    
-    delete[] uniBuffer;
-    
-    WKRelease(string);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/WKStringJSString.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/WKStringJSString.cpp
deleted file mode 100644
index cdba57d..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/WKStringJSString.cpp
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include <WebKit2/WKStringPrivate.h>
-#include <JavaScriptCore/JSStringRef.h>
-
-namespace TestWebKitAPI {
-
-TEST(WebKit2, WKStringJSString)
-{
-    WKStringRef wkString = WKStringCreateWithUTF8CString("hello");
-    JSStringRef jsString = JSStringCreateWithUTF8CString("hello");
-    
-    WKStringRef convertedJSString = WKStringCreateWithJSString(jsString);
-    EXPECT_TRUE(WKStringIsEqual(wkString, convertedJSString));
-    
-    JSStringRef convertedWKString = WKStringCopyJSString(wkString);
-    EXPECT_TRUE(JSStringIsEqual(jsString, convertedWKString));
-
-    WKRelease(wkString);
-    WKRelease(convertedJSString);
-
-    JSStringRelease(jsString);
-    JSStringRelease(convertedWKString);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/WKURL.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/WKURL.cpp
deleted file mode 100644
index f3ea83b..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/WKURL.cpp
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * Copyright (C) 2012 Intel Corporation. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-namespace TestWebKitAPI {
-
-TEST(WebKit2, WKURL)
-{        
-    WKURLRef baseURL = WKURLCreateWithUTF8CString("http://trac.webkit.org");
-    WKURLRef URL = WKURLCreateWithBaseURL(baseURL, "wiki");
-    WKRelease(baseURL);
-
-    WKStringRef string = WKURLCopyString(URL);
-    EXPECT_TRUE(WKStringIsEqualToUTF8CString(string, "http://trac.webkit.org/wiki"));
-
-    WKRelease(string);
-    WKRelease(URL);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/WebArchive.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/WebArchive.cpp
deleted file mode 100644
index 7dea315..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/WebArchive.cpp
+++ /dev/null
@@ -1,127 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <CoreFoundation/CoreFoundation.h>
-#include <WebKit2/WKURLCF.h>
-#include <WebKit2/WKContextPrivate.h>
-#include <wtf/RetainPtr.h>
-
-namespace TestWebKitAPI {
-
-static bool didFinishLoad;
-static bool didReceiveMessage;
-    
-static void didReceiveMessageFromInjectedBundle(WKContextRef, WKStringRef messageName, WKTypeRef body, const void*)
-{
-    didReceiveMessage = true;
-
-    EXPECT_WK_STREQ("DidGetWebArchive", messageName);
-    EXPECT_TRUE(body);
-    EXPECT_EQ(WKDataGetTypeID(), WKGetTypeID(body));
-    WKDataRef receivedData = static_cast<WKDataRef>(body);
-        
-    // Do basic sanity checks on the returned webarchive. We have more thorough checks in LayoutTests.
-    size_t size = WKDataGetSize(receivedData);
-    const unsigned char* bytes = WKDataGetBytes(receivedData);
-    RetainPtr<CFDataRef> data(AdoptCF, CFDataCreate(0, bytes, size));
-    RetainPtr<CFPropertyListRef> propertyList(AdoptCF, CFPropertyListCreateWithData(0, data.get(), kCFPropertyListImmutable, 0, 0));
-    EXPECT_TRUE(propertyList);
-    
-    // It should be a dictionary.
-    EXPECT_EQ(CFDictionaryGetTypeID(), CFGetTypeID(propertyList.get()));
-    CFDictionaryRef dictionary = (CFDictionaryRef)propertyList.get();
-    
-    // It should have a main resource.
-    CFTypeRef mainResource = CFDictionaryGetValue(dictionary, CFSTR("WebMainResource"));
-    EXPECT_TRUE(mainResource);
-    EXPECT_EQ(CFDictionaryGetTypeID(), CFGetTypeID(mainResource));
-    CFDictionaryRef mainResourceDictionary = (CFDictionaryRef)mainResource;
-    
-    // Main resource should have a non-empty url and mime type.
-    CFTypeRef url = CFDictionaryGetValue(mainResourceDictionary, CFSTR("WebResourceURL"));
-    EXPECT_TRUE(url);
-    EXPECT_EQ(CFStringGetTypeID(), CFGetTypeID(url));
-    EXPECT_NE(CFStringGetLength((CFStringRef)url), 0);
-    
-    CFTypeRef mimeType = CFDictionaryGetValue(mainResourceDictionary, CFSTR("WebResourceMIMEType"));
-    EXPECT_TRUE(mimeType);
-    EXPECT_EQ(CFStringGetTypeID(), CFGetTypeID(mimeType));
-    EXPECT_NE(CFStringGetLength((CFStringRef)mimeType), 0);
-    
-    // Main resource dictionary should have a "WebResourceData" key.
-    CFTypeRef resourceData = CFDictionaryGetValue(mainResourceDictionary, CFSTR("WebResourceData"));
-    EXPECT_TRUE(resourceData);
-    EXPECT_EQ(CFDataGetTypeID(), CFGetTypeID(resourceData));
-    
-    RetainPtr<CFStringRef> stringData(AdoptCF, CFStringCreateFromExternalRepresentation(0, (CFDataRef)resourceData, kCFStringEncodingUTF8));
-    EXPECT_TRUE(stringData);
-    
-    // It should contain the string "Simple HTML file." in it.
-    bool foundString = CFStringFind(stringData.get(), CFSTR("Simple HTML file."), 0).location != kCFNotFound;
-    EXPECT_TRUE(foundString);
-}
-
-static void setInjectedBundleClient(WKContextRef context)
-{
-    WKContextInjectedBundleClient injectedBundleClient;
-    memset(&injectedBundleClient, 0, sizeof(injectedBundleClient));
-    injectedBundleClient.didReceiveMessageFromInjectedBundle = didReceiveMessageFromInjectedBundle;
-
-    WKContextSetInjectedBundleClient(context, &injectedBundleClient);
-}
-
-static void didFinishLoadForFrame(WKPageRef page, WKFrameRef, WKTypeRef, const void*)
-{
-    didFinishLoad = true;
-}
-
-TEST(WebKit2, WebArchive)
-{
-    WKRetainPtr<WKContextRef> context = adoptWK(Util::createContextForInjectedBundleTest("WebArchiveTest"));
-    setInjectedBundleClient(context.get());
-
-    PlatformWebView webView(context.get());
-
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-    
-    loaderClient.version = kWKPageLoaderClientCurrentVersion;
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-    WKPageSetPageLoaderClient(webView.page(), &loaderClient);
-
-    WKPageLoadURL(webView.page(), adoptWK(Util::createURLForResource("simple", "html")).get());
-
-    // Wait till the load finishes before getting the web archive.
-    Util::run(&didFinishLoad);
-    WKContextPostMessageToInjectedBundle(context.get(), Util::toWK("GetWebArchive").get(), webView.page());
-
-    // Wait till we have received the web archive from the injected bundle.
-    Util::run(&didReceiveMessage);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/WebArchive_Bundle.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/WebArchive_Bundle.cpp
deleted file mode 100644
index f588595..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/WebArchive_Bundle.cpp
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleTest.h"
-
-#include "PlatformUtilities.h"
-#include <WebKit2/WKBundlePage.h>
-#include <WebKit2/WKBundleFrame.h>
-
-namespace TestWebKitAPI {
-
-class WebArchiveTest : public InjectedBundleTest {
-public:
-    WebArchiveTest(const std::string& identifier);
-
-private:
-    virtual void didReceiveMessage(WKBundleRef, WKStringRef messageName, WKTypeRef messageBody);
-};
-
-static InjectedBundleTest::Register<WebArchiveTest> registrar("WebArchiveTest");
-
-WebArchiveTest::WebArchiveTest(const std::string& identifier)
-    : InjectedBundleTest(identifier)
-{
-}
-
-void WebArchiveTest::didReceiveMessage(WKBundleRef bundle, WKStringRef messageName, WKTypeRef body)
-{
-    if (!WKStringIsEqualToUTF8CString(messageName, "GetWebArchive"))
-        return;
-
-    if (WKGetTypeID(body) != WKBundlePageGetTypeID())
-        return;
-    
-    WKBundleFrameRef frame = WKBundlePageGetMainFrame(static_cast<WKBundlePageRef>(body));
-    if (!frame)
-        return;
-    WKBundlePostMessage(bundle, Util::toWK("DidGetWebArchive").get(), adoptWK(WKBundleFrameCopyWebArchive(frame)).get());
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/WebCoreStatisticsWithNoWebProcess.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/WebCoreStatisticsWithNoWebProcess.cpp
deleted file mode 100644
index f71f186..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/WebCoreStatisticsWithNoWebProcess.cpp
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "test.h"
-
-namespace TestWebKitAPI {
-
-static bool done;
-
-// Callback for WKContextGetStatistics.
-static void wkContextGetStatisticsCallback(WKDictionaryRef statistics, WKErrorRef error, void* functionContext)
-{
-    EXPECT_NOT_NULL(error);
-    done = true;
-}
-
-TEST(WebKit2, WebCoreStatisticsWithNoWebProcess)
-{
-    WKRetainPtr<WKContextRef> context = adoptWK(WKContextCreate());
-    
-    WKContextGetStatistics(context.get(), 0, wkContextGetStatisticsCallback);
-    
-    Util::run(&done);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/WebKit2.pro b/Tools/TestWebKitAPI/Tests/WebKit2/WebKit2.pro
deleted file mode 100644
index 9452a5a..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/WebKit2.pro
+++ /dev/null
@@ -1,61 +0,0 @@
-TEMPLATE = app
-TARGET = tst_webkit2
-
-SOURCES += \
-    AboutBlankLoad.cpp \
-    DocumentStartUserScriptAlertCrash.cpp \
-    DOMWindowExtensionBasic.cpp \
-    DOMWindowExtensionNoCache.cpp \
-    DocumentStartUserScriptAlertCrash.cpp \
-    EvaluateJavaScript.cpp \
-    FailedLoad.cpp \
-    Find.cpp \
-    FrameMIMETypeHTML.cpp \
-    FrameMIMETypePNG.cpp \
-    GetInjectedBundleInitializationUserDataCallback.cpp \
-    HitTestResultNodeHandle.cpp \
-    InjectedBundleBasic.cpp \
-    InjectedBundleFrameHitTest.cpp \
-    InjectedBundleInitializationUserDataCallbackWins.cpp \
-    LoadAlternateHTMLStringWithNonDirectoryURL.cpp \
-    LoadCanceledNoServerRedirectCallback.cpp \
-    MouseMoveAfterCrash.cpp \
-    PageLoadBasic.cpp \
-    PageLoadDidChangeLocationWithinPageForFrame.cpp \
-    PageVisibilityState.cpp \
-    ParentFrame.cpp \
-    PreventEmptyUserAgent.cpp \
-    PrivateBrowsingPushStateNoHistoryCallback.cpp \
-    ReloadPageAfterCrash.cpp \
-    ResizeWindowAfterCrash.cpp \
-    ResponsivenessTimerDoesntFireEarly.cpp \
-    UserMessage.cpp \
-    WillSendSubmitEvent.cpp \
-    WKConnection.cpp \
-    WKString.cpp \
-    WKStringJSString.cpp \
-    WKURL.cpp
-
-FAILING_SOURCES = \
-    CanHandleRequest.cpp \
-
-FAILING_SOURCES += ShouldGoToBackForwardListItem.cpp # Only stalls in flickable mode.
-FAILING_SOURCES += SpacebarScrolling.cpp # Only fails in flickable mode.
-
-SOURCES += $$FAILING_SOURCES
-
-# Tests skipped because they crash, stall or do not compile.
-SKIPPED_SOURCES = \
-    CookieManager.cpp \
-    DownloadDecideDestinationCrash.cpp \
-    ForceRepaint.cpp \
-    NewFirstVisuallyNonEmptyLayout.cpp \
-    NewFirstVisuallyNonEmptyLayoutFails.cpp \
-    NewFirstVisuallyNonEmptyLayoutForImages.cpp \
-    NewFirstVisuallyNonEmptyLayoutFrames.cpp \
-    RestoreSessionStateContainingFormData.cpp \
-    WebCoreStatisticsWithNoWebProcess.cpp
-
-include(../../TestWebKitAPI.pri)
-
-DEFINES += APITEST_SOURCE_DIR=\\\"$$PWD\\\"
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/WillSendSubmitEvent.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/WillSendSubmitEvent.cpp
deleted file mode 100644
index 1058cc1..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/WillSendSubmitEvent.cpp
+++ /dev/null
@@ -1,77 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include "Test.h"
-
-namespace TestWebKitAPI {
-
-static bool didReceiveMessage;
-
-static void didReceiveMessageFromInjectedBundle(WKContextRef, WKStringRef messageName, WKTypeRef body, const void*)
-{
-    didReceiveMessage = true;
-
-    EXPECT_WK_STREQ("DidReceiveWillSendSubmitEvent", messageName);
-
-    EXPECT_EQ(WKDictionaryGetTypeID(), WKGetTypeID(body));
-    WKDictionaryRef values = static_cast<WKDictionaryRef>(body);
-
-    WKRetainPtr<WKStringRef> textFieldKey(AdoptWK, WKStringCreateWithUTF8CString("textField"));
-    WKStringRef textFieldValueWK = static_cast<WKStringRef>(WKDictionaryGetItemForKey(values, textFieldKey.get()));
-    EXPECT_WK_STREQ("text field", textFieldValueWK);
-
-    WKRetainPtr<WKStringRef> passwordFieldKey(AdoptWK, WKStringCreateWithUTF8CString("passwordField"));
-    WKStringRef passwordFieldValueWK = static_cast<WKStringRef>(WKDictionaryGetItemForKey(values, passwordFieldKey.get()));
-    EXPECT_WK_STREQ("password field", passwordFieldValueWK);
-
-    // <input type="hidden"> fields are not sent.
-    WKRetainPtr<WKStringRef> hiddenFieldKey(AdoptWK, WKStringCreateWithUTF8CString("hiddenField"));
-    WKStringRef hiddenFieldValueWK = static_cast<WKStringRef>(WKDictionaryGetItemForKey(values, hiddenFieldKey.get()));
-    EXPECT_NULL(hiddenFieldValueWK);
-}
-
-static void setInjectedBundleClient(WKContextRef context)
-{
-    WKContextInjectedBundleClient injectedBundleClient;
-    memset(&injectedBundleClient, 0, sizeof(injectedBundleClient));
-    injectedBundleClient.didReceiveMessageFromInjectedBundle = didReceiveMessageFromInjectedBundle;
-
-    WKContextSetInjectedBundleClient(context, &injectedBundleClient);
-}
-
-TEST(WebKit2, WillSendSubmitEvent)
-{
-    WKRetainPtr<WKContextRef> context = adoptWK(Util::createContextForInjectedBundleTest("WillSendSubmitEventTest"));
-    setInjectedBundleClient(context.get());
-
-    PlatformWebView webView(context.get());
-    WKPageLoadURL(webView.page(), adoptWK(Util::createURLForResource("auto-submitting-form", "html")).get());
-    Util::run(&didReceiveMessage);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/WillSendSubmitEvent_Bundle.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/WillSendSubmitEvent_Bundle.cpp
deleted file mode 100644
index 7bbbcaf..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/WillSendSubmitEvent_Bundle.cpp
+++ /dev/null
@@ -1,65 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleTest.h"
-
-#include "PlatformUtilities.h"
-#include <WebKit2/WKBundlePage.h>
-
-namespace TestWebKitAPI {
-
-class WillSendSubmitEventTest : public InjectedBundleTest {
-public:
-    WillSendSubmitEventTest(const std::string& identifier);
-
-    virtual void didCreatePage(WKBundleRef, WKBundlePageRef);
-};
-
-static InjectedBundleTest::Register<WillSendSubmitEventTest> registrar("WillSendSubmitEventTest");
-
-static void willSendSubmitEvent(WKBundlePageRef, WKBundleNodeHandleRef, WKBundleFrameRef, WKBundleFrameRef, WKDictionaryRef values, const void*)
-{
-    WKBundlePostMessage(InjectedBundleController::shared().bundle(), Util::toWK("DidReceiveWillSendSubmitEvent").get(), values);
-}
-
-WillSendSubmitEventTest::WillSendSubmitEventTest(const std::string& identifier)
-    : InjectedBundleTest(identifier)
-{
-}
-
-void WillSendSubmitEventTest::didCreatePage(WKBundleRef bundle, WKBundlePageRef page)
-{
-    WKBundlePageFormClient formClient;
-    memset(&formClient, 0, sizeof(formClient));
-    
-    formClient.version = 1;
-    formClient.clientInfo = this;
-    formClient.willSendSubmitEvent = willSendSubmitEvent;
-    
-    WKBundlePageSetFormClient(page, &formClient);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/auto-submitting-form.html b/Tools/TestWebKitAPI/Tests/WebKit2/auto-submitting-form.html
deleted file mode 100644
index 9ed815e..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/auto-submitting-form.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<html>
-    <head>
-        <script>
-            function submitFormIfNecessary()
-            {
-                if (window.location.search)
-                    return;
-                document.forms[0].submit.click();
-            }
-        </script>
-    </head>
-    <body onload="submitFormIfNecessary()">
-        <form action="#" method="GET">
-            <input type="text" name="textField" value="text field">
-            <input type="password" name="passwordField" value="password field">
-            <input type="hidden" name="hiddenField" value="hidden field">
-            <input type="submit" name="submit">
-        </form>
-    </body>
-</html>
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/efl/WKViewClientWebProcessCallbacks.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/efl/WKViewClientWebProcessCallbacks.cpp
deleted file mode 100644
index 450dcf1..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/efl/WKViewClientWebProcessCallbacks.cpp
+++ /dev/null
@@ -1,125 +0,0 @@
-/*
- * Copyright (C) 2013 Intel Corporation. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "ewk_view_private.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include "Test.h"
-#include "WKView.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-struct TestStatesData {
-    TestStatesData(WKViewRef view, WKURLRef url)
-        : view(view)
-        , url(url)
-        , didFinishLoad(false)
-        , didCrash(false)
-        , didRelaunch(false)
-    {
-    }
-
-    WKViewRef view;
-    WKURLRef url;
-    bool didFinishLoad;
-    bool didCrash;
-    bool didRelaunch;
-};
-
-static void didFinishLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef, const void* clientInfo)
-{
-    TestStatesData* states = const_cast<TestStatesData*>(static_cast<const TestStatesData*>(clientInfo));
-    states->didFinishLoad = true;
-}
-
-static void setPageLoaderClient(WKPageRef page, const void* clientInfo)
-{
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-    loaderClient.clientInfo = clientInfo;
-
-    WKPageSetPageLoaderClient(page, &loaderClient);
-}
-
-void webProcessCrashed(WKViewRef view, WKURLRef url, const void* clientInfo)
-{
-    TestStatesData* states = const_cast<TestStatesData*>(static_cast<const TestStatesData*>(clientInfo));
-
-    EXPECT_EQ(states->view, view);
-    EXPECT_TRUE(WKURLIsEqual(url, states->url));
-
-    states->didCrash = true;
-}
-
-void webProcessDidRelaunch(WKViewRef view, const void* clientInfo)
-{
-    TestStatesData* states = const_cast<TestStatesData*>(static_cast<const TestStatesData*>(clientInfo));
-
-    EXPECT_EQ(states->view, view);
-
-    states->didRelaunch = true;
-}
-
-static void setViewClient(WKViewRef view, const void* clientInfo)
-{
-    WKViewClient viewClient;
-    memset(&viewClient, 0, sizeof(WKViewClient));
-
-    viewClient.version = kWKViewClientCurrentVersion;
-    viewClient.clientInfo = clientInfo;
-    viewClient.webProcessCrashed = webProcessCrashed;
-    viewClient.webProcessDidRelaunch = webProcessDidRelaunch;
-
-    WKViewSetViewClient(view, &viewClient);
-}
-
-TEST(WebKit2, WKViewClientWebProcessCallbacks)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate());
-    WKRetainPtr<WKURLRef> url(AdoptWK, Util::createURLForResource("simple", "html"));
-
-    PlatformWebView view(context.get());
-    WKViewRef wkView = EWKViewGetWKView(view.platformView());
-
-    TestStatesData states = TestStatesData(wkView, url.get());
-
-    setPageLoaderClient(view.page(), &states);
-    setViewClient(wkView, &states);
-
-    WKPageLoadURL(view.page(), url.get());
-    Util::run(&states.didFinishLoad);
-
-    WKPageTerminate(view.page());
-    Util::run(&states.didCrash);
-
-    WKPageReload(view.page());
-    Util::run(&states.didRelaunch);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/execCopy.html b/Tools/TestWebKitAPI/Tests/WebKit2/execCopy.html
deleted file mode 100644
index cf4608e..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/execCopy.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<html>
-<head>
-<script type="text/javascript">
-  function doCopy() {
-      document.execCommand("selectAll", true);
-      document.execCommand("copy");
-  }
-</script>
-</head>
-<body onLoad="doCopy()">
-    <div>Hello world.</div>
-    <div><b>Hello</b><i> world</i></div>
-    <div style="border: solid red 1px">Hello world</div>
-</body>
-</html>
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/file-with-anchor.html b/Tools/TestWebKitAPI/Tests/WebKit2/file-with-anchor.html
deleted file mode 100644
index 8ea866b..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/file-with-anchor.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<html>
-<head>
-  <script>
-    function clickLink()
-    {
-      var evt = document.createEvent("MouseEvent");
-      evt.initMouseEvent("click", true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);
-      var link = document.querySelector('a');
-      link.dispatchEvent(evt);
-    }
-  </script>
-</head>
-<body>
-  <a href="#anchor">Link to anchor</a><br>
-  In between.<br>
-  <span id="anchor">Anchor</span><br>
-  After the anchor.<br>
-  </body>
-</html>
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/find.html b/Tools/TestWebKitAPI/Tests/WebKit2/find.html
deleted file mode 100644
index d965911..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/find.html
+++ /dev/null
@@ -1,5 +0,0 @@
-<html>
-<body>
-  Test search. Hello Hello Hello!
-</body>
-</html>
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/icon.png b/Tools/TestWebKitAPI/Tests/WebKit2/icon.png
deleted file mode 100644
index 79e4598..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/icon.png
+++ /dev/null
Binary files differ
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/link-with-title.html b/Tools/TestWebKitAPI/Tests/WebKit2/link-with-title.html
deleted file mode 100644
index 971ed28..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/link-with-title.html
+++ /dev/null
@@ -1,5 +0,0 @@
-<html>
-    <body>
-        <a  href="#" style="display: block; height: 100%;" title="HitTestLinkTitle"></a>
-    </body>
-</html>
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/lots-of-iframes.html b/Tools/TestWebKitAPI/Tests/WebKit2/lots-of-iframes.html
deleted file mode 100644
index 5436310..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/lots-of-iframes.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<html>
-<head>
-<script type="text/javascript">
-  var maxNumberOfFrames = 100;
-
-  function createIFrames() {
-    var str = "<div id=\"status\"></div>";
-    for (var i = 0; i < maxNumberOfFrames + 1; i++) {
-      str += "<iframe id=\"i" + i + "\" src=\"data:text/html,iframe_" + i + "\"></iframe>";
-    }
-    document.getElementsByTagName("body")[0].innerHTML = str;
-
-    var results = "";
-
-    var f = document.getElementById("i" + (maxNumberOfFrames - 1));
-    if (f && f.contentWindow) {
-      results += "Sucessfully created " + maxNumberOfFrames + " frames.<br>";
-    } else {
-      results += "Failed to create " + maxNumberOfFrames + " frames.<br>";
-    }
-
-    var g = document.getElementById("i" + maxNumberOfFrames);
-    if (g && g.contentWindow) {
-      results += "Failed to block creation of frame number " + (maxNumberOfFrames + 1) + ".";
-    } else {
-      results += "Successfully blocked creation of frame number " + (maxNumberOfFrames + 1) + ".";
-    }
-
-    document.getElementById("status").innerHTML = results;
-  }
-</script>
-</head>
-<body onLoad="createIFrames()">
-</body>
-</html>
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/lots-of-images.html b/Tools/TestWebKitAPI/Tests/WebKit2/lots-of-images.html
deleted file mode 100644
index 2233b8e..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/lots-of-images.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<img src="icon.png"/>
-<img src="icon.png"/>
-<img src="icon.png"/>
-<img src="icon.png"/>
-<img src="icon.png"/>
-<img src="icon.png"/>
-<img src="icon.png"/>
-<img src="icon.png"/>
-<img src="icon.png"/>
-<img src="icon.png"/>
-<img src="icon.png"/>
-<img src="icon.png"/>
-<img src="icon.png"/>
-<img src="icon.png"/>
-<img src="icon.png"/>
-<img src="icon.png"/>
-<img src="icon.png"/>
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/lots-of-text.html b/Tools/TestWebKitAPI/Tests/WebKit2/lots-of-text.html
deleted file mode 100644
index 3cd1b4c..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/lots-of-text.html
+++ /dev/null
@@ -1,3 +0,0 @@
-<body style="width:800px">
-You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too!You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too!You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too!You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too!You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too!You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too!You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too!You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too!You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too!You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too!You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too!You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too!You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too!You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too!You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too!You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too!You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too!You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too!You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too!You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too! You say it's your Birthday. It's my Birthday too!
-</body>
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/mac/EditorCommands.mm b/Tools/TestWebKitAPI/Tests/WebKit2/mac/EditorCommands.mm
deleted file mode 100644
index 583dc7a..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/mac/EditorCommands.mm
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "JavaScriptTest.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-static bool didFinishLoad;
-
-static void didFinishLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef, const void*)
-{
-    didFinishLoad = true;
-}
-
-TEST(WebKit2, ScrollByLineCommands)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, Util::createContextWithInjectedBundle());
-    PlatformWebView webView(context.get());
-
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-    loaderClient.version = 0;
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-    WKPageSetPageLoaderClient(webView.page(), &loaderClient);
-
-    WKRetainPtr<WKURLRef> url(AdoptWK, Util::createURLForResource("simple-tall", "html"));
-    WKPageLoadURL(webView.page(), url.get());
-    Util::run(&didFinishLoad);
-
-    EXPECT_JS_EQ(webView.page(), "window.scrollY", "0");
-
-    ASSERT_TRUE([webView.platformView() respondsToSelector:@selector(scrollLineDown:)]);
-    [webView.platformView() scrollLineDown:nil];
-
-    EXPECT_JS_EQ(webView.page(), "window.scrollY", "40");
-
-    ASSERT_TRUE([webView.platformView() respondsToSelector:@selector(scrollLineUp:)]);
-    [webView.platformView() scrollLineUp:nil];
-
-    EXPECT_JS_EQ(webView.page(), "window.scrollY", "0");
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/mac/GetBackingScaleFactor.mm b/Tools/TestWebKitAPI/Tests/WebKit2/mac/GetBackingScaleFactor.mm
deleted file mode 100644
index 4afd72f..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/mac/GetBackingScaleFactor.mm
+++ /dev/null
@@ -1,94 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-
-#import "PlatformUtilities.h"
-#import "SyntheticBackingScaleFactorWindow.h"
-#import "Test.h"
-#import <WebKit2/WKViewPrivate.h>
-#import <wtf/RetainPtr.h>
-
-namespace TestWebKitAPI {
-
-static bool messageReceived;
-static double backingScaleFactor;
-
-static void didReceiveMessageFromInjectedBundle(WKContextRef context, WKStringRef messageName, WKTypeRef messageBody, const void*)
-{
-    messageReceived = true;
-    EXPECT_WK_STREQ("DidGetBackingScaleFactor", messageName);
-    ASSERT_NOT_NULL(messageBody);
-    EXPECT_EQ(WKDoubleGetTypeID(), WKGetTypeID(messageBody));
-    backingScaleFactor = WKDoubleGetValue(static_cast<WKDoubleRef>(messageBody));
-}
-
-static void setInjectedBundleClient(WKContextRef context)
-{
-    WKContextInjectedBundleClient injectedBundleClient;
-    memset(&injectedBundleClient, 0, sizeof(injectedBundleClient));
-    injectedBundleClient.didReceiveMessageFromInjectedBundle = didReceiveMessageFromInjectedBundle;
-    WKContextSetInjectedBundleClient(context, &injectedBundleClient);
-}
-
-static RetainPtr<SyntheticBackingScaleFactorWindow> createWindow()
-{
-    RetainPtr<SyntheticBackingScaleFactorWindow> window(AdoptNS, [[SyntheticBackingScaleFactorWindow alloc] initWithContentRect:NSMakeRect(0, 0, 800, 600) styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:YES]);
-    [window.get() setReleasedWhenClosed:NO];
-    return window;
-}
-
-TEST(WebKit2, GetBackingScaleFactor)
-{
-    WKRetainPtr<WKContextRef> context = adoptWK(Util::createContextForInjectedBundleTest("GetBackingScaleFactorTest"));
-    setInjectedBundleClient(context.get());
-    RetainPtr<WKView> view(AdoptNS, [[WKView alloc] initWithFrame:NSMakeRect(0, 0, 800, 600) contextRef:context.get() pageGroupRef:0]);
-
-    RetainPtr<SyntheticBackingScaleFactorWindow> window1 = createWindow();
-    [window1.get() setBackingScaleFactor:1];
-
-    [[window1.get() contentView] addSubview:view.get()];
-    WKContextPostMessageToInjectedBundle(context.get(), Util::toWK("GetBackingScaleFactor").get(), 0);
-    Util::run(&messageReceived);
-    messageReceived = false;
-    EXPECT_EQ(1, backingScaleFactor);
-
-    RetainPtr<SyntheticBackingScaleFactorWindow> window2 = createWindow();
-    [window2.get() setBackingScaleFactor:2];
-
-    [[window2.get() contentView] addSubview:view.get()];
-    WKContextPostMessageToInjectedBundle(context.get(), Util::toWK("GetBackingScaleFactor").get(), 0);
-    Util::run(&messageReceived);
-    messageReceived = false;
-    EXPECT_EQ(2, backingScaleFactor);
-
-    WKPageSetCustomBackingScaleFactor(view.get().pageRef, 3);
-    WKContextPostMessageToInjectedBundle(context.get(), Util::toWK("GetBackingScaleFactor").get(), 0);
-    Util::run(&messageReceived);
-    messageReceived = false;
-    EXPECT_EQ(3, backingScaleFactor);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/mac/GetBackingScaleFactor_Bundle.mm b/Tools/TestWebKitAPI/Tests/WebKit2/mac/GetBackingScaleFactor_Bundle.mm
deleted file mode 100644
index b8bceab..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/mac/GetBackingScaleFactor_Bundle.mm
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-
-#import "InjectedBundleTest.h"
-#import "PlatformUtilities.h"
-#import <WebKit2/WKBundlePage.h>
-#import <assert.h>
-
-namespace TestWebKitAPI {
-
-class GetBackingScaleFactorTest : public InjectedBundleTest {
-public:
-    GetBackingScaleFactorTest(const std::string&);
-
-private:
-    virtual void didCreatePage(WKBundleRef, WKBundlePageRef);
-    virtual void didReceiveMessage(WKBundleRef, WKStringRef messageName, WKTypeRef messageBody);
-
-    WKBundlePageRef m_page;
-};
-
-static InjectedBundleTest::Register<GetBackingScaleFactorTest> registrar("GetBackingScaleFactorTest");
-
-GetBackingScaleFactorTest::GetBackingScaleFactorTest(const std::string& identifier)
-    : InjectedBundleTest(identifier)
-    , m_page(0)
-{
-}
-
-void GetBackingScaleFactorTest::didCreatePage(WKBundleRef, WKBundlePageRef page)
-{
-    assert(!m_page);
-    m_page = page;
-}
-
-void GetBackingScaleFactorTest::didReceiveMessage(WKBundleRef bundle, WKStringRef messageName, WKTypeRef messageBody)
-{
-    if (!WKStringIsEqualToUTF8CString(messageName, "GetBackingScaleFactor"))
-        return;
-
-    WKRetainPtr<WKDoubleRef> backingScaleFactor = adoptWK(WKDoubleCreate(WKBundlePageGetBackingScaleFactor(m_page)));
-    WKBundlePostMessage(bundle, Util::toWK("DidGetBackingScaleFactor").get(), backingScaleFactor.get());
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/mouse-move-listener.html b/Tools/TestWebKitAPI/Tests/WebKit2/mouse-move-listener.html
deleted file mode 100644
index afca7ed..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/mouse-move-listener.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<script>
-    var mouseMoved = false;
-
-    function mouseMoveHandler()
-    {
-        mouseMoved = true;
-    }
-    
-    function didMoveMouse()
-    {
-        return mouseMoved;
-    }
-   
-    addEventListener("mousemove", mouseMoveHandler);
-</script>
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/push-state.html b/Tools/TestWebKitAPI/Tests/WebKit2/push-state.html
deleted file mode 100644
index f3a04a6..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/push-state.html
+++ /dev/null
@@ -1,3 +0,0 @@
-<script type="text/javascript">
-history.pushState('newState', 0, '?newState');
-</script>
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/simple-accelerated-compositing.html b/Tools/TestWebKitAPI/Tests/WebKit2/simple-accelerated-compositing.html
deleted file mode 100644
index bea6272..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/simple-accelerated-compositing.html
+++ /dev/null
@@ -1,5 +0,0 @@
-<html>
-<body>
-    <div style="-webkit-transform: translateZ(0);">Simple HTML file with accelerated compositing</div>
-</body>
-</html>
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/simple-form.html b/Tools/TestWebKitAPI/Tests/WebKit2/simple-form.html
deleted file mode 100644
index 3bf1852..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/simple-form.html
+++ /dev/null
@@ -1,11 +0,0 @@
-<!DOCTYPE html>
-<script>
-function submitForm()
-{
-    document.forms[0].submit();
-}
-</script>
-<form method=post>
-<input name=foo value="Some unimportant data">
-<input type=submit>
-</form>
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/simple-iframe.html b/Tools/TestWebKitAPI/Tests/WebKit2/simple-iframe.html
deleted file mode 100644
index 429521c..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/simple-iframe.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html>
-<body>
-  Simple HTML file.
-  <iframe src="simple.html"></iframe>
-</body>
-</html>
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/simple-tall.html b/Tools/TestWebKitAPI/Tests/WebKit2/simple-tall.html
deleted file mode 100644
index a220e9b..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/simple-tall.html
+++ /dev/null
@@ -1,7 +0,0 @@
-<!DOCTYPE html>
-<html>
-<body>
-  Simple and tall HTML file.
-  <div style="height: 3000px;"></div>
-</body>
-</html>
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/simple.html b/Tools/TestWebKitAPI/Tests/WebKit2/simple.html
deleted file mode 100644
index 12cf873..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/simple.html
+++ /dev/null
@@ -1,5 +0,0 @@
-<html>
-<body>
-  Simple HTML file.
-</body>
-</html>
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/spacebar-scrolling.html b/Tools/TestWebKitAPI/Tests/WebKit2/spacebar-scrolling.html
deleted file mode 100644
index 8da08b3..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/spacebar-scrolling.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<!DOCTYPE html>
-<script>
-    function textFieldContainsSpace()
-    {
-        return document.querySelector("input").value === " ";
-    }
-
-    function blurTextField()
-    {
-        document.querySelector("input").blur();
-    }
-
-    function isDocumentScrolled()
-    {
-        return scrollY !== 0;
-    }
-
-    function loaded()
-    {
-        document.querySelector("input").focus();
-    }
-
-    addEventListener("load", loaded);
-</script>
-<input>
-<div style="height: 3000px;"></div>
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/win/AltKeyGeneratesWMSysCommand.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/win/AltKeyGeneratesWMSysCommand.cpp
deleted file mode 100644
index 000f9cd..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/win/AltKeyGeneratesWMSysCommand.cpp
+++ /dev/null
@@ -1,85 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include "WindowMessageObserver.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-class WMSysCommandObserver : public WindowMessageObserver {
-public:
-    WMSysCommandObserver() : m_windowDidReceiveWMSysCommand(false) { }
-
-    bool windowDidReceiveWMSysCommand() const { return m_windowDidReceiveWMSysCommand; }
-
-private:
-    virtual void windowReceivedMessage(HWND, UINT message, WPARAM, LPARAM)
-    {
-        if (message == WM_SYSCOMMAND)
-            m_windowDidReceiveWMSysCommand = true;
-    }
-
-    bool m_windowDidReceiveWMSysCommand;
-};
-
-static bool didNotHandleWMSysKeyUp;
-
-static void didNotHandleKeyEventCallback(WKPageRef, WKNativeEventPtr event, const void*)
-{
-    if (event->message != WM_SYSKEYUP)
-        return;
-
-    didNotHandleWMSysKeyUp = true;
-}
-
-TEST(WebKit2, AltKeyGeneratesWMSysCommand)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate());
-    PlatformWebView webView(context.get());
-
-    WKPageUIClient uiClient;
-    memset(&uiClient, 0, sizeof(uiClient));
-
-    uiClient.didNotHandleKeyEvent = didNotHandleKeyEventCallback;
-    WKPageSetPageUIClient(webView.page(), &uiClient);
-
-    WMSysCommandObserver observer;
-    webView.setParentWindowMessageObserver(&observer);
-
-    webView.simulateAltKeyPress();
-
-    Util::run(&didNotHandleWMSysKeyUp);
-
-    webView.setParentWindowMessageObserver(0);
-
-    // The WM_SYSKEYUP message should have generated a WM_SYSCOMMAND message that was sent to the
-    // WKView's parent window.
-    EXPECT_TRUE(observer.windowDidReceiveWMSysCommand());
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/win/DoNotCopyANullCFURLResponse.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/win/DoNotCopyANullCFURLResponse.cpp
deleted file mode 100644
index 8bd0c56..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/win/DoNotCopyANullCFURLResponse.cpp
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include <WebKit2/WKRetainPtr.h>
-#include <WebKit2/WKURLResponseCF.h>
-#include <wtf/RetainPtr.h>
-
-namespace TestWebKitAPI {
-
-TEST(WebKit2, DoNotCopyANullCFURLResponse)
-{
-    // Neither of these calls should cause a crash.
-    WKRetainPtr<WKURLResponseRef> nullWKResponse(AdoptWK, WKURLResponseCreateWithCFURLResponse(0));
-    RetainPtr<CFURLResponseRef> nullCFResponse(AdoptCF, WKURLResponseCopyCFURLResponse(kCFAllocatorDefault, nullWKResponse.get()));
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/win/HideFindIndicator.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/win/HideFindIndicator.cpp
deleted file mode 100644
index 6e350ff..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/win/HideFindIndicator.cpp
+++ /dev/null
@@ -1,85 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include "Test.h"
-
-namespace TestWebKitAPI {
-
-static bool didFinishLoad;
-static bool findIndicatorCallbackWasCalled;
-static HBITMAP bitmap;
-
-static void didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo)
-{
-    didFinishLoad = true;
-}
-
-static void findIndicatorCallback(WKViewRef, HBITMAP selectionBitmap, RECT, bool, void*)
-{
-    findIndicatorCallbackWasCalled = true;
-    bitmap = selectionBitmap;
-}
-
-static void initialize(const PlatformWebView& webView)
-{
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-
-    loaderClient.version = 0;
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-    WKPageSetPageLoaderClient(webView.page(), &loaderClient);
-
-    WKViewSetFindIndicatorCallback(webView.platformView(), findIndicatorCallback, 0);
-}
-
-TEST(WebKit2, HideFindIndicator)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate());
-    PlatformWebView webView(context.get());
-    initialize(webView);
-
-    WKRetainPtr<WKURLRef> url = adoptWK(Util::createURLForResource("find", "html"));
-    WKPageLoadURL(webView.page(), url.get());
-    Util::run(&didFinishLoad);
-    didFinishLoad = false;
-
-    WKPageFindString(webView.page(), Util::toWK("Hello").get(), kWKFindOptionsShowFindIndicator, 100);
-    Util::run(&findIndicatorCallbackWasCalled);
-    findIndicatorCallbackWasCalled = false;
-
-    EXPECT_NOT_NULL(bitmap);
-    ::DeleteObject(bitmap);
-    bitmap = 0;
-
-    WKPageHideFindUI(webView.page());
-    Util::run(&findIndicatorCallbackWasCalled);
-
-    EXPECT_NULL(bitmap);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/win/ResizeViewWhileHidden.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/win/ResizeViewWhileHidden.cpp
deleted file mode 100644
index 32c8a07..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/win/ResizeViewWhileHidden.cpp
+++ /dev/null
@@ -1,124 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-static bool didFinishLoad;
-
-static void didFinishLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef, const void*)
-{
-    didFinishLoad = true;
-}
-
-static void setPageLoaderClient(WKPageRef page)
-{
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-    loaderClient.version = 0;
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-
-    WKPageSetPageLoaderClient(page, &loaderClient);
-}
-
-static void flushMessages(WKPageRef page)
-{
-    // In order to ensure all pending messages have been handled by the UI and web processes, we
-    // load a URL and wait for the load to finish.
-
-    setPageLoaderClient(page);
-
-    WKPageLoadURL(page, adoptWK(Util::createURLForResource("simple", "html")).get());
-    Util::run(&didFinishLoad);
-    didFinishLoad = false;
-
-    WKPageSetPageLoaderClient(page, 0);
-}
-
-static bool timerFired;
-static void CALLBACK timerCallback(HWND hwnd, UINT, UINT_PTR timerID, DWORD)
-{
-    ::KillTimer(hwnd, timerID);
-    timerFired = true;
-}
-
-static void runForDuration(double seconds)
-{
-    ::SetTimer(0, 0, seconds * 1000, timerCallback);
-    Util::run(&timerFired);
-    timerFired = false;
-}
-
-static void waitForBackingStoreUpdate(WKPageRef page)
-{
-    // Wait for the web process to handle the changes we just made, to perform a display (which
-    // happens on a timer), and to tell the UI process about the display (which updates the backing
-    // store).
-    // FIXME: It would be much less fragile (and maybe faster) to have an explicit way to wait
-    // until the backing store is updated.
-    runForDuration(0.5);
-    flushMessages(page);
-}
-
-TEST(WebKit2, ResizeViewWhileHidden)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate());
-    PlatformWebView webView(context.get());
-
-    HWND window = WKViewGetWindow(webView.platformView());
-
-    RECT originalRect;
-    ::GetClientRect(window, &originalRect);
-    RECT newRect = originalRect;
-    ::InflateRect(&newRect, 1, 1);
-
-    // Show the WKView and resize it so that the WKView's backing store will be created. Ideally
-    // we'd have some more explicit way of forcing the backing store to be created.
-    ::ShowWindow(window, SW_SHOW);
-    webView.resizeTo(newRect.right - newRect.left, newRect.bottom - newRect.top);
-
-    waitForBackingStoreUpdate(webView.page());
-
-    // Resize the window while hidden and show it again so that it will update its backing store at
-    // the new size.
-    ::ShowWindow(window, SW_HIDE);
-    webView.resizeTo(originalRect.right - originalRect.left, originalRect.bottom - originalRect.top);
-    ::ShowWindow(window, SW_SHOW);
-
-    // Force the WKView to paint to try to trigger <http://webkit.org/b/54142>.
-    ::SendMessage(window, WM_PAINT, 0, 0);
-
-    // In Debug builds without the fix for <http://webkit.org/b/54141>, the web process will assert
-    // at this point.
-    // FIXME: It would be good to have a way to check that our behavior is correct in Release
-    // builds, too!
-    waitForBackingStoreUpdate(webView.page());
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/win/TranslateMessageGeneratesWMChar.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/win/TranslateMessageGeneratesWMChar.cpp
deleted file mode 100644
index 844499c..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/win/TranslateMessageGeneratesWMChar.cpp
+++ /dev/null
@@ -1,90 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include "WindowMessageObserver.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-static bool didSeeWMChar;
-static bool didNotHandleKeyEventCalled;
-
-static void didNotHandleKeyEventCallback(WKPageRef, WKNativeEventPtr event, const void*)
-{
-    if (event->message != WM_KEYDOWN)
-        return;
-    
-    // Don't call TranslateMessage() here so a WM_CHAR isn't generated.
-    didNotHandleKeyEventCalled = true;
-}
-
-static void runAndWatchForWMChar(bool* done)
-{
-    while (!*done) {
-        MSG msg;
-        BOOL result = ::GetMessageW(&msg, 0, 0, 0);
-        if (!result || result == -1)
-            break;
-        
-        if (msg.message == WM_CHAR)
-            didSeeWMChar = true;
-        
-        if (Util::shouldTranslateMessage(msg))
-            ::TranslateMessage(&msg);
-        
-        ::DispatchMessage(&msg);
-    }
-}
-
-TEST(WebKit2, TranslateMessageGeneratesWMChar)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate());
-    PlatformWebView webView(context.get());
-
-    webView.simulateAKeyDown();
-
-    // WebKit should call TranslateMessage() on the WM_KEYDOWN message to generate the WM_CHAR message.
-    runAndWatchForWMChar(&didSeeWMChar);
-    
-    didSeeWMChar = false;
-
-    WKPageUIClient uiClient;
-    memset(&uiClient, 0, sizeof(uiClient));
-
-    uiClient.didNotHandleKeyEvent = didNotHandleKeyEventCallback;
-    WKPageSetPageUIClient(webView.page(), &uiClient);
-
-    webView.simulateAKeyDown();
-
-    runAndWatchForWMChar(&didNotHandleKeyEventCalled);
-
-    // WebKit should not have called TranslateMessage() on the WM_KEYDOWN message since we installed a didNotHandleKeyEvent callback.
-    EXPECT_FALSE(didSeeWMChar);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/win/WMCloseCallsUIClientClose.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/win/WMCloseCallsUIClientClose.cpp
deleted file mode 100644
index 5fa4b3a..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/win/WMCloseCallsUIClientClose.cpp
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-static bool didReceiveClose;
-
-static void close(WKPageRef, const void*)
-{
-    didReceiveClose = true;
-}
-
-TEST(WebKit2, WMCloseCallsUIClientClose)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate());
-    PlatformWebView webView(context.get());
-
-    WKPageUIClient uiClient;
-    memset(&uiClient, 0, sizeof(uiClient));
-
-    uiClient.close = close;
-    WKPageSetPageUIClient(webView.page(), &uiClient);
-
-    ::SendMessageW(WKViewGetWindow(webView.platformView()), WM_CLOSE, 0, 0);
-
-    Util::run(&didReceiveClose);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/win/WMPrint.cpp b/Tools/TestWebKitAPI/Tests/WebKit2/win/WMPrint.cpp
deleted file mode 100644
index 36a18ca..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2/win/WMPrint.cpp
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <WebKit2/WKRetainPtr.h>
-
-namespace TestWebKitAPI {
-
-TEST(WebKit2, WMPrint)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate());
-    PlatformWebView webView(context.get());
-
-    HWND window = WKViewGetWindow(webView.platformView());
-    HDC dc = ::CreateCompatibleDC(0);
-    // FIXME: It would be nice to test that this actually paints the view into dc.
-    ::SendMessage(window, WM_PRINT, reinterpret_cast<WPARAM>(dc), PRF_CLIENT | PRF_CHILDREN);
-    ::DeleteDC(dc);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2ObjC/CustomProtocolsTest.mm b/Tools/TestWebKitAPI/Tests/WebKit2ObjC/CustomProtocolsTest.mm
deleted file mode 100644
index 0454f3f..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2ObjC/CustomProtocolsTest.mm
+++ /dev/null
@@ -1,92 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "Test.h"
-
-#import "PlatformUtilities.h"
-#import "TestBrowsingContextLoadDelegate.h"
-#import <Foundation/Foundation.h>
-#import <WebKit2/WebKit2.h>
-
-static NSString *testScheme = @"test";
-static NSString *testHost = @"test";
-static bool testFinished = false;
-
-@interface TestProtocol : NSURLProtocol {
-}
-@end
-
-@implementation TestProtocol
-
-+ (BOOL)canInitWithRequest:(NSURLRequest *)request
-{
-    return [[[request URL] scheme] caseInsensitiveCompare:testScheme] == NSOrderedSame;
-}
-
-+ (NSURLRequest *)canonicalRequestForRequest:(NSURLRequest *)request
-{
-    return request;
-}
-
-+ (BOOL)requestIsCacheEquivalent:(NSURLRequest *)a toRequest:(NSURLRequest *)b
-{
-    return NO;
-}
-
-- (void)startLoading
-{
-    EXPECT_TRUE([[[[self request] URL] scheme] isEqualToString:testScheme]);
-    EXPECT_TRUE([[[[self request] URL] host] isEqualToString:testHost]);
-    
-    NSData *data = [@"<body>PASS</body>" dataUsingEncoding:NSASCIIStringEncoding];
-    NSURLResponse *response = [[NSURLResponse alloc] initWithURL:[[self request] URL] MIMEType:@"text/html" expectedContentLength:[data length] textEncodingName:nil];
-    [[self client] URLProtocol:self didReceiveResponse:response cacheStoragePolicy:NSURLCacheStorageNotAllowed];
-    [[self client] URLProtocol:self didLoadData:data];
-    [[self client] URLProtocolDidFinishLoading:self];
-    [response release];
-}
-
-- (void)stopLoading
-{
-}
-
-@end
-
-TEST(WebKit2CustomProtocolsTest, CustomProtocolUsed)
-{
-    [NSURLProtocol registerClass:[TestProtocol class]];
-    [WKBrowsingContextController registerSchemeForCustomProtocol:testScheme];
-
-    WKProcessGroup *processGroup = [[WKProcessGroup alloc] init];
-    WKBrowsingContextGroup *browsingContextGroup = [[WKBrowsingContextGroup alloc] initWithIdentifier:@"TestIdentifier"];
-    WKView *wkView = [[WKView alloc] initWithFrame:NSMakeRect(0, 0, 800, 600) processGroup:processGroup browsingContextGroup:browsingContextGroup];
-    wkView.browsingContextController.loadDelegate = [[TestBrowsingContextLoadDelegate alloc] initWithBlockToRunOnLoad:^(WKBrowsingContextController *sender) {
-        testFinished = true;
-    }];
-    [wkView.browsingContextController loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@://%@", testScheme, testHost]]]];
-
-    TestWebKitAPI::Util::run(&testFinished);
-}
\ No newline at end of file
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2ObjC/UserContentTest.mm b/Tools/TestWebKitAPI/Tests/WebKit2ObjC/UserContentTest.mm
deleted file mode 100644
index 0258963..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2ObjC/UserContentTest.mm
+++ /dev/null
@@ -1,230 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "Test.h"
-
-#import "PlatformUtilities.h"
-#import "TestBrowsingContextLoadDelegate.h"
-#import <JavaScriptCore/JSRetainPtr.h>
-#import <JavaScriptCore/JavaScriptCore.h>
-#import <WebKit2/WKSerializedScriptValue.h>
-#import <WebKit2/WKViewPrivate.h>
-#import <WebKit2/WebKit2.h>
-
-
-static bool testFinished = false;
-static NSString *htmlString = @"<body style='background-color: red'>";
-static NSString *userStyleSheet = @"body { background-color: green !important; }";
-static const char* backgroundColorScript = "window.getComputedStyle(document.body, null).getPropertyValue('background-color')";
-static const char* greenInRGB = "rgb(0, 128, 0)";
-static const char* redInRGB = "rgb(255, 0, 0)";
-static const char* userScriptTestProperty = "window._userScriptInstalled";
-
-namespace {
-    class WebKit2UserContentTest : public ::testing::Test {
-    public:
-        WKProcessGroup *processGroup;
-        WKBrowsingContextGroup *browsingContextGroup;
-
-        WebKit2UserContentTest()
-            : processGroup(nil)
-            , browsingContextGroup(nil)
-        {
-        }
-        
-        virtual void SetUp()
-        {
-            processGroup = [[WKProcessGroup alloc] init];
-            browsingContextGroup = [[WKBrowsingContextGroup alloc] initWithIdentifier:@"UserContentIdentifier"];
-        }
-        
-        virtual void TearDown()
-        {
-            [browsingContextGroup release];
-            [processGroup release];
-        }
-    };
-} // namespace
-
-static void expectScriptValueIsString(WKSerializedScriptValueRef serializedScriptValue, const char* expectedValue)
-{
-    JSGlobalContextRef scriptContext = JSGlobalContextCreate(0);
-    
-    JSValueRef scriptValue = WKSerializedScriptValueDeserialize(serializedScriptValue, scriptContext, 0);
-    EXPECT_TRUE(JSValueIsString(scriptContext, scriptValue));
-    
-    JSRetainPtr<JSStringRef> scriptString(Adopt, JSValueToStringCopy(scriptContext, scriptValue, 0));
-    EXPECT_TRUE(JSStringIsEqualToUTF8CString(scriptString.get(), expectedValue));
-    
-    JSGlobalContextRelease(scriptContext);
-}
-
-static void expectScriptValueIsBoolean(WKSerializedScriptValueRef serializedScriptValue, bool expectedValue)
-{
-    JSGlobalContextRef scriptContext = JSGlobalContextCreate(0);
-    
-    JSValueRef scriptValue = WKSerializedScriptValueDeserialize(serializedScriptValue, scriptContext, 0);
-    EXPECT_TRUE(JSValueIsBoolean(scriptContext, scriptValue));
-    EXPECT_EQ(JSValueToBoolean(scriptContext, scriptValue), expectedValue);
-    
-    JSGlobalContextRelease(scriptContext);
-}
-
-static void expectScriptValueIsUndefined(WKSerializedScriptValueRef serializedScriptValue)
-{
-    JSGlobalContextRef scriptContext = JSGlobalContextCreate(0);
-    
-    JSValueRef scriptValue = WKSerializedScriptValueDeserialize(serializedScriptValue, scriptContext, 0);
-    EXPECT_TRUE(JSValueIsUndefined(scriptContext, scriptValue));
-    
-    JSGlobalContextRelease(scriptContext);
-}
-
-TEST_F(WebKit2UserContentTest, AddUserStyleSheetBeforeCreatingView)
-{
-    testFinished = false;
-    [browsingContextGroup addUserStyleSheet:userStyleSheet baseURL:nil whitelistedURLPatterns:nil blacklistedURLPatterns:nil mainFrameOnly:YES];
-    
-    WKView *wkView = [[WKView alloc] initWithFrame:NSMakeRect(0, 0, 800, 600) processGroup:processGroup browsingContextGroup:browsingContextGroup];
-    WKStringRef backgroundColorQuery = WKStringCreateWithUTF8CString(backgroundColorScript);
-    wkView.browsingContextController.loadDelegate = [[TestBrowsingContextLoadDelegate alloc] initWithBlockToRunOnLoad:^(WKBrowsingContextController *sender) {
-        WKPageRunJavaScriptInMainFrame_b(wkView.pageRef, backgroundColorQuery, ^(WKSerializedScriptValueRef serializedScriptValue, WKErrorRef error) {
-            expectScriptValueIsString(serializedScriptValue, greenInRGB);
-            testFinished = true;
-            WKRelease(backgroundColorQuery);
-        });
-    }];
-    
-    [wkView.browsingContextController loadHTMLString:htmlString baseURL:nil];
-    
-    TestWebKitAPI::Util::run(&testFinished);
-}
-
-TEST_F(WebKit2UserContentTest, AddUserStyleSheetAfterCreatingView)
-{
-    testFinished = false;
-    
-    WKView *wkView = [[WKView alloc] initWithFrame:NSMakeRect(0, 0, 800, 600) processGroup:processGroup browsingContextGroup:browsingContextGroup];
-    WKStringRef backgroundColorQuery = WKStringCreateWithUTF8CString(backgroundColorScript);
-    wkView.browsingContextController.loadDelegate = [[TestBrowsingContextLoadDelegate alloc] initWithBlockToRunOnLoad:^(WKBrowsingContextController *sender) {
-        WKPageRunJavaScriptInMainFrame_b(wkView.pageRef, backgroundColorQuery, ^(WKSerializedScriptValueRef serializedScriptValue, WKErrorRef error) {
-            expectScriptValueIsString(serializedScriptValue, greenInRGB);
-            testFinished = true;
-            WKRelease(backgroundColorQuery);
-        });
-    }];
-    
-    [browsingContextGroup addUserStyleSheet:userStyleSheet baseURL:nil whitelistedURLPatterns:nil blacklistedURLPatterns:nil mainFrameOnly:YES];
-    
-    [wkView.browsingContextController loadHTMLString:htmlString baseURL:nil];
-
-    TestWebKitAPI::Util::run(&testFinished);
-}
-
-TEST_F(WebKit2UserContentTest, RemoveAllUserStyleSheets)
-{
-    testFinished = false;
-    [browsingContextGroup addUserStyleSheet:userStyleSheet baseURL:nil whitelistedURLPatterns:nil blacklistedURLPatterns:nil mainFrameOnly:YES];
-    
-    WKView *wkView = [[WKView alloc] initWithFrame:NSMakeRect(0, 0, 800, 600) processGroup:processGroup browsingContextGroup:browsingContextGroup];
-    WKStringRef backgroundColorQuery = WKStringCreateWithUTF8CString(backgroundColorScript);
-    wkView.browsingContextController.loadDelegate = [[TestBrowsingContextLoadDelegate alloc] initWithBlockToRunOnLoad:^(WKBrowsingContextController *sender) {
-        WKPageRunJavaScriptInMainFrame_b(wkView.pageRef, backgroundColorQuery, ^(WKSerializedScriptValueRef serializedScriptValue, WKErrorRef error) {
-            expectScriptValueIsString(serializedScriptValue, redInRGB);
-            testFinished = true;
-            WKRelease(backgroundColorQuery);
-        });
-    }];
-    
-    [browsingContextGroup removeAllUserStyleSheets];
-    
-    [wkView.browsingContextController loadHTMLString:htmlString baseURL:nil];
-    
-    TestWebKitAPI::Util::run(&testFinished);
-}
-
-TEST_F(WebKit2UserContentTest, AddUserScriptBeforeCreatingView)
-{
-    testFinished = false;
-    [browsingContextGroup addUserScript:[NSString stringWithFormat:@"%s = true;", userScriptTestProperty] baseURL:nil whitelistedURLPatterns:nil blacklistedURLPatterns:nil injectionTime:kWKInjectAtDocumentStart mainFrameOnly:YES];
-    
-    WKView *wkView = [[WKView alloc] initWithFrame:NSMakeRect(0, 0, 800, 600) processGroup:processGroup browsingContextGroup:browsingContextGroup];
-    WKStringRef userScriptTestPropertyString = WKStringCreateWithUTF8CString(userScriptTestProperty);
-    wkView.browsingContextController.loadDelegate = [[TestBrowsingContextLoadDelegate alloc] initWithBlockToRunOnLoad:^(WKBrowsingContextController *sender) {
-        WKPageRunJavaScriptInMainFrame_b(wkView.pageRef, userScriptTestPropertyString, ^(WKSerializedScriptValueRef serializedScriptValue, WKErrorRef error) {
-            expectScriptValueIsBoolean(serializedScriptValue, true);
-            testFinished = true;
-            WKRelease(userScriptTestPropertyString);
-        });
-    }];
-    
-    [wkView.browsingContextController loadHTMLString:@"" baseURL:nil];
-    
-    TestWebKitAPI::Util::run(&testFinished);
-}
-
-TEST_F(WebKit2UserContentTest, AddUserScriptAfterCreatingView)
-{
-    testFinished = false;
-    
-    WKView *wkView = [[WKView alloc] initWithFrame:NSMakeRect(0, 0, 800, 600) processGroup:processGroup browsingContextGroup:browsingContextGroup];
-    WKStringRef userScriptTestPropertyString = WKStringCreateWithUTF8CString(userScriptTestProperty);
-    wkView.browsingContextController.loadDelegate = [[TestBrowsingContextLoadDelegate alloc] initWithBlockToRunOnLoad:^(WKBrowsingContextController *sender) {
-        WKPageRunJavaScriptInMainFrame_b(wkView.pageRef, userScriptTestPropertyString, ^(WKSerializedScriptValueRef serializedScriptValue, WKErrorRef error) {
-            expectScriptValueIsBoolean(serializedScriptValue, true);
-            testFinished = true;
-            WKRelease(userScriptTestPropertyString);
-        });
-    }];
-    
-    [browsingContextGroup addUserScript:[NSString stringWithFormat:@"%s = true;", userScriptTestProperty] baseURL:nil whitelistedURLPatterns:nil blacklistedURLPatterns:nil injectionTime:kWKInjectAtDocumentStart mainFrameOnly:YES];
-    
-    [wkView.browsingContextController loadHTMLString:@"" baseURL:nil];
-    
-    TestWebKitAPI::Util::run(&testFinished);
-}
-
-TEST_F(WebKit2UserContentTest, RemoveAllUserScripts)
-{
-    testFinished = false;
-    [browsingContextGroup addUserScript:[NSString stringWithFormat:@"%s = true;", userScriptTestProperty] baseURL:nil whitelistedURLPatterns:nil blacklistedURLPatterns:nil injectionTime:kWKInjectAtDocumentStart mainFrameOnly:YES];
-    
-    WKView *wkView = [[WKView alloc] initWithFrame:NSMakeRect(0, 0, 800, 600) processGroup:processGroup browsingContextGroup:browsingContextGroup];
-    WKStringRef userScriptTestPropertyString = WKStringCreateWithUTF8CString(userScriptTestProperty);
-    wkView.browsingContextController.loadDelegate = [[TestBrowsingContextLoadDelegate alloc] initWithBlockToRunOnLoad:^(WKBrowsingContextController *sender) {
-        WKPageRunJavaScriptInMainFrame_b(wkView.pageRef, userScriptTestPropertyString, ^(WKSerializedScriptValueRef serializedScriptValue, WKErrorRef error) {
-            expectScriptValueIsUndefined(serializedScriptValue);
-            testFinished = true;
-            WKRelease(userScriptTestPropertyString);
-        });
-    }];
-    
-    [browsingContextGroup removeAllUserScripts];
-    
-    [wkView.browsingContextController loadHTMLString:htmlString baseURL:nil];
-    
-    TestWebKitAPI::Util::run(&testFinished);
-}
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2ObjC/WKBrowsingContextGroupTest.mm b/Tools/TestWebKitAPI/Tests/WebKit2ObjC/WKBrowsingContextGroupTest.mm
deleted file mode 100644
index fbd87bd..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2ObjC/WKBrowsingContextGroupTest.mm
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "Test.h"
-
-#import <WebKit2/WKBrowsingContextGroup.h>
-
-TEST(WKBrowsingContextGroupTest, GetSetJavaScriptEnabled)
-{
-    WKBrowsingContextGroup *browsingContextGroup = [[WKBrowsingContextGroup alloc] initWithIdentifier:@"TestIdentifier"];
-    
-    ASSERT_TRUE(browsingContextGroup.allowsJavaScript);
-
-    browsingContextGroup.allowsJavaScript = NO;
-
-    ASSERT_FALSE(browsingContextGroup.allowsJavaScript);
-
-    [browsingContextGroup release];
-}
-
-TEST(WKBrowsingContextGroupTest, GetSetPluginsEnabled)
-{
-    WKBrowsingContextGroup *browsingContextGroup = [[WKBrowsingContextGroup alloc] initWithIdentifier:@"TestIdentifier"];
-    
-    ASSERT_TRUE(browsingContextGroup.allowsPlugIns);
-
-    browsingContextGroup.allowsPlugIns = NO;
-
-    ASSERT_FALSE(browsingContextGroup.allowsPlugIns);
-
-    [browsingContextGroup release];
-}
diff --git a/Tools/TestWebKitAPI/Tests/WebKit2ObjC/WKBrowsingContextLoadDelegateTest.mm b/Tools/TestWebKitAPI/Tests/WebKit2ObjC/WKBrowsingContextLoadDelegateTest.mm
deleted file mode 100644
index 6cadf0b..0000000
--- a/Tools/TestWebKitAPI/Tests/WebKit2ObjC/WKBrowsingContextLoadDelegateTest.mm
+++ /dev/null
@@ -1,229 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "Test.h"
-
-#import <WebKit2/WKBrowsingContextController.h>
-#import <WebKit2/WKBrowsingContextGroup.h>
-#import <WebKit2/WKBrowsingContextLoadDelegate.h>
-#import <WebKit2/WKProcessGroup.h>
-#import <WebKit2/WKRetainPtr.h>
-#import <WebKit2/WKView.h>
-
-#import "PlatformUtilities.h"
-
-namespace {
-
-class WKBrowsingContextLoadDelegateTest : public ::testing::Test { 
-public:
-    WKProcessGroup *processGroup;
-    WKBrowsingContextGroup *browsingContextGroup;
-    WKView *view;
-
-    WKBrowsingContextLoadDelegateTest()
-        : processGroup(nil)
-        , browsingContextGroup(nil)
-        , view(nil)
-    {
-    }
-
-    virtual void SetUp()
-    {
-        processGroup = [[WKProcessGroup alloc] init];
-        browsingContextGroup = [[WKBrowsingContextGroup alloc] initWithIdentifier:@"TestIdentifier"];
-        view = [[WKView alloc] initWithFrame:NSMakeRect(0, 0, 800, 600) processGroup:processGroup browsingContextGroup:browsingContextGroup];
-    }
-
-    virtual void TearDown()
-    {
-        [view release];
-        [browsingContextGroup release];
-        [processGroup release];
-    }
-};
-
-} // namespace
-
-@interface SimpleLoadDelegate : NSObject <WKBrowsingContextLoadDelegate>
-{
-    bool* _simpleLoadDone;
-}
-
-- (id)initWithFlag:(bool*)flag;
-
-@end
-
-@implementation SimpleLoadDelegate
-
-- (id)initWithFlag:(bool*)flag
-{
-    self = [super init];
-    if (!self)
-        return nil;
-
-    _simpleLoadDone = flag;
-    return self;
-}
-
-- (void)browsingContextControllerDidFinishLoad:(WKBrowsingContextController *)sender
-{
-    *_simpleLoadDone = true;
-}
-
-@end
-
-TEST_F(WKBrowsingContextLoadDelegateTest, Empty)
-{
-    // Just make sure the setup/tear down works.
-}
-
-TEST_F(WKBrowsingContextLoadDelegateTest, SimpleLoad)
-{
-    bool simpleLoadDone = false;
-
-    // Add the load delegate.
-    SimpleLoadDelegate *loadDelegate = [[SimpleLoadDelegate alloc] initWithFlag:&simpleLoadDone];
-    view.browsingContextController.loadDelegate = loadDelegate;
-
-    // Load the file.
-    NSURL *nsURL = [[NSBundle mainBundle] URLForResource:@"simple" withExtension:@"html" subdirectory:@"TestWebKitAPI.resources"];
-    [view.browsingContextController loadFileURL:nsURL restrictToFilesWithin:nil];
-
-    // Wait for the load to finish.
-    TestWebKitAPI::Util::run(&simpleLoadDone);
-
-    // Tear down the delegate.
-    view.browsingContextController.loadDelegate = nil;
-    [loadDelegate release];
-}
-
-TEST_F(WKBrowsingContextLoadDelegateTest, SimpleLoadOfHTMLString)
-{
-    bool simpleLoadDone = false;
-
-    // Add the load delegate.
-    SimpleLoadDelegate *loadDelegate = [[SimpleLoadDelegate alloc] initWithFlag:&simpleLoadDone];
-    view.browsingContextController.loadDelegate = loadDelegate;
-
-    // Load the HTML string.
-    [view.browsingContextController loadHTMLString:@"<html><body>Simple HTML String</body></html>" baseURL:[NSURL URLWithString:@"about:blank"]];
-
-    // Wait for the load to finish.
-    TestWebKitAPI::Util::run(&simpleLoadDone);
-
-    // Tear down the delegate.
-    view.browsingContextController.loadDelegate = nil;
-    [loadDelegate release];
-}
-
-TEST_F(WKBrowsingContextLoadDelegateTest, SimpleLoadOfHTMLString_NilBaseURL)
-{
-    bool simpleLoadDone = false;
-
-    // Add the load delegate.
-    SimpleLoadDelegate *loadDelegate = [[SimpleLoadDelegate alloc] initWithFlag:&simpleLoadDone];
-    view.browsingContextController.loadDelegate = loadDelegate;
-
-    // Load the HTML string, pass nil as the baseURL.
-    [view.browsingContextController loadHTMLString:@"<html><body>Simple HTML String</body></html>" baseURL:nil];
-
-    // Wait for the load to finish.
-    TestWebKitAPI::Util::run(&simpleLoadDone);
-
-    // Tear down the delegate.
-    view.browsingContextController.loadDelegate = nil;
-    [loadDelegate release];
-}
-
-TEST_F(WKBrowsingContextLoadDelegateTest, SimpleLoadOfHTMLString_NilHTMLStringAndBaseURL)
-{
-    bool simpleLoadDone = false;
-
-    // Add the load delegate.
-    SimpleLoadDelegate *loadDelegate = [[SimpleLoadDelegate alloc] initWithFlag:&simpleLoadDone];
-    view.browsingContextController.loadDelegate = loadDelegate;
-
-    // Load the HTML string (as nil).
-    [view.browsingContextController loadHTMLString:nil baseURL:nil];
-
-    // Wait for the load to finish.
-    TestWebKitAPI::Util::run(&simpleLoadDone);
-
-    // Tear down the delegate.
-    view.browsingContextController.loadDelegate = nil;
-    [loadDelegate release];
-}
-
-@interface SimpleLoadFailDelegate : NSObject <WKBrowsingContextLoadDelegate>
-{
-    bool* _simpleLoadFailDone;
-}
-
-- (id)initWithFlag:(bool*)flag;
-
-@end
-
-@implementation SimpleLoadFailDelegate
-
-- (id)initWithFlag:(bool*)flag
-{
-    self = [super init];
-    if (!self)
-        return nil;
-
-    _simpleLoadFailDone = flag;
-    return self;
-}
-
-- (void)browsingContextControllerDidFailProvisionalLoad:(WKBrowsingContextController *)sender withError:(NSError *)error
-{
-    EXPECT_EQ(-1100, error.code);
-    EXPECT_WK_STREQ(NSURLErrorDomain, error.domain);
-    
-    *_simpleLoadFailDone = true;
-}
-
-@end
-
-TEST_F(WKBrowsingContextLoadDelegateTest, SimpleLoadFail)
-{
-    bool simpleLoadFailDone = false;
-
-    // Add the load delegate.
-    SimpleLoadFailDelegate *loadDelegate = [[SimpleLoadFailDelegate alloc] initWithFlag:&simpleLoadFailDone];
-    view.browsingContextController.loadDelegate = loadDelegate;
-
-    // Load a non-existent file.
-    NSURL *nsURL = [NSURL URLWithString:@"file:///does-not-exist.html"];
-    [view.browsingContextController loadFileURL:nsURL restrictToFilesWithin:nil];
-
-    // Wait for the load to fail.
-    TestWebKitAPI::Util::run(&simpleLoadFailDone);
-
-    // Tear down the delegate.
-    view.browsingContextController.loadDelegate = nil;
-    [loadDelegate release];
-}
diff --git a/Tools/TestWebKitAPI/Tests/gtk/InputMethodFilter.cpp b/Tools/TestWebKitAPI/Tests/gtk/InputMethodFilter.cpp
deleted file mode 100644
index bfcc17d..0000000
--- a/Tools/TestWebKitAPI/Tests/gtk/InputMethodFilter.cpp
+++ /dev/null
@@ -1,310 +0,0 @@
-/*
- * Copyright (C) 2012 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include "GtkInputMethodFilter.h"
-#include "WTFStringUtilities.h"
-#include <gdk/gdkkeysyms.h>
-#include <gtk/gtk.h>
-#include <wtf/gobject/GOwnPtr.h>
-#include <wtf/gobject/GRefPtr.h>
-#include <wtf/text/CString.h>
-
-using namespace WebCore;
-
-namespace TestWebKitAPI {
-
-class TestInputMethodFilter : public GtkInputMethodFilter {
-public:
-    TestInputMethodFilter()
-        : m_testWindow(gtk_window_new(GTK_WINDOW_POPUP))
-    {
-        gtk_widget_show(m_testWindow.get());
-        setWidget(m_testWindow.get());
-
-        // Focus in is necessary to activate the default input method in the multicontext.
-        notifyFocusedIn();
-    }
-
-    Vector<String>& events() { return m_events; }
-
-    void sendKeyEventToFilter(unsigned int gdkKeyValue, GdkEventType type, unsigned int modifiers = 0)
-    {
-        GdkEvent* event = gdk_event_new(type);
-        event->key.keyval = gdkKeyValue;
-        event->key.state = modifiers;
-        event->key.window = gtk_widget_get_window(m_testWindow.get());
-        event->key.time = GDK_CURRENT_TIME;
-        g_object_ref(event->key.window);
-
-#ifndef GTK_API_VERSION_2
-        gdk_event_set_device(event, gdk_device_manager_get_client_pointer(gdk_display_get_device_manager(gdk_display_get_default())));
-#endif
-
-        GOwnPtr<GdkKeymapKey> keys;
-        gint nKeys;
-        if (gdk_keymap_get_entries_for_keyval(gdk_keymap_get_default(), gdkKeyValue, &keys.outPtr(), &nKeys))
-            event->key.hardware_keycode = keys.get()[0].keycode;
-
-        filterKeyEvent(&event->key);
-        gdk_event_free(event);
-    }
-
-    void sendPressAndReleaseKeyEventPairToFilter(unsigned int gdkKeyValue, unsigned int modifiers = 0)
-    {
-        sendKeyEventToFilter(gdkKeyValue, GDK_KEY_PRESS, modifiers);
-        sendKeyEventToFilter(gdkKeyValue, GDK_KEY_RELEASE, modifiers);
-    }
-
-protected:
-    virtual bool sendSimpleKeyEvent(GdkEventKey* event, WTF::String eventString, EventFakedForComposition faked)
-    {
-        const char* eventType = event->type == GDK_KEY_RELEASE ? "release" : "press";
-        const char* fakedString = faked == EventFaked ? " (faked)" : "";
-        if (!eventString.isNull())
-            m_events.append(String::format("sendSimpleKeyEvent type=%s keycode=%x text='%s'%s", eventType, event->keyval, eventString.utf8().data(), fakedString));
-        else
-            m_events.append(String::format("sendSimpleKeyEvent type=%s keycode=%x%s", eventType, event->keyval, fakedString));
-
-        return true;
-    }
-
-    virtual bool sendKeyEventWithCompositionResults(GdkEventKey* event, ResultsToSend resultsToSend, EventFakedForComposition faked)
-    {
-        const char* eventType = event->type == GDK_KEY_RELEASE ? "release" : "press";
-        const char* fakedString = faked == EventFaked ? " (faked)" : "";
-        m_events.append(String::format("sendKeyEventWithCompositionResults type=%s keycode=%u%s", eventType, event->keyval, fakedString));
-
-        if (resultsToSend & Composition && !m_confirmedComposition.isNull())
-            confirmCompositionText(m_confirmedComposition);
-        if (resultsToSend & Preedit && !m_preedit.isNull())
-            setPreedit(m_preedit, m_cursorOffset);
-
-        return true;
-    }
-
-    virtual bool canEdit()
-    {
-        return true;
-    }
-
-    virtual void confirmCompositionText(String text)
-    {
-        m_events.append(String::format("confirmComposition '%s'", text.utf8().data()));
-    }
-
-    virtual void confirmCurrentComposition()
-    {
-        m_events.append(String("confirmCurrentcomposition"));
-    }
-
-    virtual void cancelCurrentComposition()
-    {
-        m_events.append(String("cancelCurrentComposition"));
-    }
-
-    virtual void setPreedit(String preedit, int cursorOffset)
-    {
-        m_events.append(String::format("setPreedit text='%s' cursorOffset=%i", preedit.utf8().data(), cursorOffset));
-    }
-
-private:
-    GRefPtr<GtkWidget> m_testWindow;
-    Vector<String> m_events;
-};
-
-TEST(GTK, GtkInputMethodFilterSimple)
-{
-    TestInputMethodFilter inputMethodFilter;
-    inputMethodFilter.sendPressAndReleaseKeyEventPairToFilter(GDK_KEY_g);
-    inputMethodFilter.sendPressAndReleaseKeyEventPairToFilter(GDK_KEY_t);
-    inputMethodFilter.sendPressAndReleaseKeyEventPairToFilter(GDK_KEY_k);
-
-    const Vector<String>& events = inputMethodFilter.events();
-
-    ASSERT_EQ(6, events.size());
-    ASSERT_EQ(String("sendSimpleKeyEvent type=press keycode=67 text='g'"), events[0]);
-    ASSERT_EQ(String("sendSimpleKeyEvent type=release keycode=67"), events[1]);
-    ASSERT_EQ(String("sendSimpleKeyEvent type=press keycode=74 text='t'"), events[2]);
-    ASSERT_EQ(String("sendSimpleKeyEvent type=release keycode=74"), events[3]);
-    ASSERT_EQ(String("sendSimpleKeyEvent type=press keycode=6b text='k'"), events[4]);
-    ASSERT_EQ(String("sendSimpleKeyEvent type=release keycode=6b"), events[5]);
-}
-
-TEST(GTK, GtkInputMethodFilterUnicodeSequence)
-{
-    TestInputMethodFilter inputMethodFilter;
-
-    // This is simple unicode hex entry of the characters, u, 0, 0, f, 4 pressed with
-    // the shift and controls keys held down. In reality, these values are not typical
-    // of an actual hex entry, because they'd be transformed by the shift modifier according
-    // to the keyboard layout. For instance, on a US keyboard a 0 with the shift key pressed
-    // is a right parenthesis. Using these values prevents having to work out what the
-    // transformed characters are based on the current keyboard layout.
-    inputMethodFilter.sendKeyEventToFilter(GDK_KEY_Control_L, GDK_KEY_PRESS);
-    inputMethodFilter.sendKeyEventToFilter(GDK_KEY_Shift_L, GDK_KEY_PRESS, GDK_CONTROL_MASK);
-
-    inputMethodFilter.sendPressAndReleaseKeyEventPairToFilter(GDK_KEY_U, GDK_SHIFT_MASK | GDK_CONTROL_MASK);
-    inputMethodFilter.sendPressAndReleaseKeyEventPairToFilter(GDK_KEY_0, GDK_SHIFT_MASK | GDK_CONTROL_MASK);
-    inputMethodFilter.sendPressAndReleaseKeyEventPairToFilter(GDK_KEY_0, GDK_SHIFT_MASK | GDK_CONTROL_MASK);
-    inputMethodFilter.sendPressAndReleaseKeyEventPairToFilter(GDK_KEY_F, GDK_SHIFT_MASK | GDK_CONTROL_MASK);
-    inputMethodFilter.sendPressAndReleaseKeyEventPairToFilter(GDK_KEY_4, GDK_SHIFT_MASK | GDK_CONTROL_MASK);
-
-    inputMethodFilter.sendKeyEventToFilter(GDK_KEY_Shift_L, GDK_KEY_RELEASE, GDK_CONTROL_MASK | GDK_SHIFT_MASK);
-    inputMethodFilter.sendKeyEventToFilter(GDK_KEY_Control_L, GDK_KEY_RELEASE, GDK_CONTROL_MASK);
-
-    const Vector<String>& events = inputMethodFilter.events();
-    ASSERT_EQ(21, events.size());
-    ASSERT_EQ(String("sendSimpleKeyEvent type=press keycode=ffe3"), events[0]);
-    ASSERT_EQ(String("sendSimpleKeyEvent type=press keycode=ffe1"), events[1]);
-    ASSERT_EQ(String("sendKeyEventWithCompositionResults type=press keycode=85"), events[2]);
-    ASSERT_EQ(String("setPreedit text='u' cursorOffset=1"), events[3]);
-    ASSERT_EQ(String("sendSimpleKeyEvent type=release keycode=55"), events[4]);
-    ASSERT_EQ(String("sendKeyEventWithCompositionResults type=press keycode=48"), events[5]);
-    ASSERT_EQ(String("setPreedit text='u0' cursorOffset=2"), events[6]);
-    ASSERT_EQ(String("sendSimpleKeyEvent type=release keycode=30"), events[7]);
-    ASSERT_EQ(String("sendKeyEventWithCompositionResults type=press keycode=48"), events[8]);
-    ASSERT_EQ(String("setPreedit text='u00' cursorOffset=3"), events[9]);
-    ASSERT_EQ(String("sendSimpleKeyEvent type=release keycode=30"), events[10]);
-    ASSERT_EQ(String("sendKeyEventWithCompositionResults type=press keycode=70"), events[11]);
-    ASSERT_EQ(String("setPreedit text='u00F' cursorOffset=4"), events[12]);
-    ASSERT_EQ(String("sendSimpleKeyEvent type=release keycode=46"), events[13]);
-    ASSERT_EQ(String("sendKeyEventWithCompositionResults type=press keycode=52"), events[14]);
-    ASSERT_EQ(String("setPreedit text='u00F4' cursorOffset=5"), events[15]);
-    ASSERT_EQ(String("sendSimpleKeyEvent type=release keycode=34"), events[16]);
-    ASSERT_EQ(String("confirmComposition 'ô'"), events[17]);
-    ASSERT_EQ(String("setPreedit text='' cursorOffset=0"), events[18]);
-    ASSERT_EQ(String("sendSimpleKeyEvent type=release keycode=ffe1"), events[19]);
-    ASSERT_EQ(String("sendSimpleKeyEvent type=release keycode=ffe3"), events[20]);
-}
-
-TEST(GTK, GtkInputMethodFilterComposeKey)
-{
-    TestInputMethodFilter inputMethodFilter;
-
-    inputMethodFilter.sendPressAndReleaseKeyEventPairToFilter(GDK_KEY_Multi_key);
-    inputMethodFilter.sendPressAndReleaseKeyEventPairToFilter(GDK_KEY_apostrophe);
-    inputMethodFilter.sendPressAndReleaseKeyEventPairToFilter(GDK_KEY_o);
-
-    const Vector<String>& events = inputMethodFilter.events();
-    ASSERT_EQ(5, events.size());
-    ASSERT_EQ(String("sendKeyEventWithCompositionResults type=press keycode=39"), events[0]);
-    ASSERT_EQ(String("setPreedit text='' cursorOffset=0"), events[1]);
-    ASSERT_EQ(String("sendSimpleKeyEvent type=release keycode=27"), events[2]);
-    ASSERT_EQ(String("sendSimpleKeyEvent type=press keycode=6f text='ó'"), events[3]);
-    ASSERT_EQ(String("sendSimpleKeyEvent type=release keycode=6f"), events[4]);
-}
-
-typedef void (*GetPreeditStringCallback) (GtkIMContext*, gchar**, PangoAttrList**, int*);
-static void temporaryGetPreeditStringOverride(GtkIMContext*, char** string, PangoAttrList** attrs, int* cursorPosition)
-{
-    *string = g_strdup("preedit of doom, bringer of cheese");
-    *cursorPosition = 3;
-}
-
-TEST(GTK, GtkInputMethodFilterContextEventsWithoutKeyEvents)
-{
-    TestInputMethodFilter inputMethodFilter;
-
-    // This is a bit of a hack to avoid mocking out the entire InputMethodContext, by
-    // simply replacing the get_preedit_string virtual method for the length of this test.
-    GtkIMContext* context = inputMethodFilter.context();
-    GtkIMContextClass* contextClass = GTK_IM_CONTEXT_GET_CLASS(context);
-    GetPreeditStringCallback previousCallback = contextClass->get_preedit_string;
-    contextClass->get_preedit_string = temporaryGetPreeditStringOverride;
-
-    g_signal_emit_by_name(context, "preedit-changed");
-    g_signal_emit_by_name(context, "commit", "commit text");
-
-    contextClass->get_preedit_string = previousCallback;
-
-    const Vector<String>& events = inputMethodFilter.events();
-    ASSERT_EQ(6, events.size());
-    ASSERT_EQ(String("sendKeyEventWithCompositionResults type=press keycode=16777215 (faked)"), events[0]);
-    ASSERT_EQ(String("setPreedit text='preedit of doom, bringer of cheese' cursorOffset=3"), events[1]);
-    ASSERT_EQ(String("sendSimpleKeyEvent type=release keycode=ffffff (faked)"), events[2]);
-    ASSERT_EQ(String("sendKeyEventWithCompositionResults type=press keycode=16777215 (faked)"), events[3]);
-    ASSERT_EQ(String("confirmComposition 'commit text'"), events[4]);
-    ASSERT_EQ(String("sendSimpleKeyEvent type=release keycode=ffffff (faked)"), events[5]);
-}
-
-static bool gSawContextReset = false;
-typedef void (*ResetCallback) (GtkIMContext*);
-static void temporaryResetOverride(GtkIMContext*)
-{
-    gSawContextReset = true;
-}
-
-static void verifyCanceledComposition(const Vector<String>& events)
-{
-    ASSERT_EQ(3, events.size());
-    ASSERT_EQ(String("sendKeyEventWithCompositionResults type=press keycode=39"), events[0]);
-    ASSERT_EQ(String("setPreedit text='' cursorOffset=0"), events[1]);
-    ASSERT_EQ(String("sendSimpleKeyEvent type=release keycode=27"), events[2]);
-    ASSERT(gSawContextReset);
-}
-
-TEST(GTK, GtkInputMethodFilterContextFocusOutDuringOngoingComposition)
-{
-    TestInputMethodFilter inputMethodFilter;
-
-    // See comment above about this technique.
-    GtkIMContext* context = inputMethodFilter.context();
-    GtkIMContextClass* contextClass = GTK_IM_CONTEXT_GET_CLASS(context);
-    ResetCallback previousCallback = contextClass->reset;
-    contextClass->reset = temporaryResetOverride;
-
-    gSawContextReset = false;
-    inputMethodFilter.sendPressAndReleaseKeyEventPairToFilter(GDK_KEY_Multi_key);
-    inputMethodFilter.sendPressAndReleaseKeyEventPairToFilter(GDK_KEY_apostrophe);
-    inputMethodFilter.notifyFocusedOut();
-
-    verifyCanceledComposition(inputMethodFilter.events());
-
-    contextClass->reset = previousCallback;
-}
-
-TEST(GTK, GtkInputMethodFilterContextMouseClickDuringOngoingComposition)
-{
-    TestInputMethodFilter inputMethodFilter;
-
-    // See comment above about this technique.
-    GtkIMContext* context = inputMethodFilter.context();
-    GtkIMContextClass* contextClass = GTK_IM_CONTEXT_GET_CLASS(context);
-    ResetCallback previousCallback = contextClass->reset;
-    contextClass->reset = temporaryResetOverride;
-
-    gSawContextReset = false;
-    inputMethodFilter.sendPressAndReleaseKeyEventPairToFilter(GDK_KEY_Multi_key);
-    inputMethodFilter.sendPressAndReleaseKeyEventPairToFilter(GDK_KEY_apostrophe);
-    inputMethodFilter.notifyMouseButtonPress();
-
-    verifyCanceledComposition(inputMethodFilter.events());
-
-    contextClass->reset = previousCallback;
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/0.png b/Tools/TestWebKitAPI/Tests/mac/0.png
deleted file mode 100644
index 649d1ad..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/0.png
+++ /dev/null
Binary files differ
diff --git a/Tools/TestWebKitAPI/Tests/mac/AcceptsFirstMouse.mm b/Tools/TestWebKitAPI/Tests/mac/AcceptsFirstMouse.mm
deleted file mode 100644
index bc2f786..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/AcceptsFirstMouse.mm
+++ /dev/null
@@ -1,77 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "WebKitAgnosticTest.h"
-
-#include <wtf/RetainPtr.h>
-
-@interface NSApplication (TestWebKitAPINSApplicationDetails)
-- (void)_setCurrentEvent:(NSEvent *)event;
-@end
-
-namespace TestWebKitAPI {
-
-class AcceptsFirstMouse : public WebKitAgnosticTest {
-public:
-    template <typename View> void runTest(View);
-
-    // WebKitAgnosticTest
-    virtual NSURL *url() const { return [[NSBundle mainBundle] URLForResource:@"acceptsFirstMouse" withExtension:@"html" subdirectory:@"TestWebKitAPI.resources"]; }
-    virtual void didLoadURL(WebView *webView) { runTest(webView); }
-    virtual void didLoadURL(WKView *wkView) { runTest(wkView); }
-};
-
-template <typename View>
-void AcceptsFirstMouse::runTest(View view)
-{
-    RetainPtr<NSWindow> window(AdoptNS, [[NSWindow alloc] initWithContentRect:view.frame styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:YES]);
-    [[window.get() contentView] addSubview:view];
-
-    CGFloat viewHeight = view.bounds.size.height;
-
-    NSPoint pointInsideSelection = NSMakePoint(50, viewHeight - 50);
-    NSEvent *mouseEventInsideSelection = [NSEvent mouseEventWithType:NSLeftMouseDown location:pointInsideSelection modifierFlags:0 timestamp:0 windowNumber:[window.get() windowNumber] context:nil eventNumber:0 clickCount:1 pressure:1];
-    EXPECT_TRUE([[view hitTest:pointInsideSelection] acceptsFirstMouse:mouseEventInsideSelection]);
-
-    NSPoint pointOutsideSelection = NSMakePoint(50, viewHeight - 150);
-    NSEvent *mouseEventOutsideSelection = [NSEvent mouseEventWithType:NSLeftMouseDown location:pointOutsideSelection modifierFlags:0 timestamp:0 windowNumber:[window.get() windowNumber] context:nil eventNumber:0 clickCount:1 pressure:1];
-    EXPECT_FALSE([[view hitTest:pointInsideSelection] acceptsFirstMouse:mouseEventOutsideSelection]);
-}
-
-TEST_F(AcceptsFirstMouse, WebKit)
-{
-    // Ensure that [NSApp currentEvent] is not a previously-simulated spacebar key press, since this
-    // causes the scrollBy() in the test to perform a smooth scroll.
-    [NSApp _setCurrentEvent:nil];
-    runWebKit1Test();
-}
-
-TEST_F(AcceptsFirstMouse, WebKit2)
-{
-    runWebKit2Test();
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/Ahem.ttf b/Tools/TestWebKitAPI/Tests/mac/Ahem.ttf
deleted file mode 100644
index ac81cb0..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/Ahem.ttf
+++ /dev/null
Binary files differ
diff --git a/Tools/TestWebKitAPI/Tests/mac/AttributedString.mm b/Tools/TestWebKitAPI/Tests/mac/AttributedString.mm
deleted file mode 100644
index 18cce9c..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/AttributedString.mm
+++ /dev/null
@@ -1,93 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <wtf/RetainPtr.h>
-
-
-@interface AttributedStringTest : NSObject {
-}
-@end
-
-static bool didFinishLoad;
-
-@implementation AttributedStringTest
-
-- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
-{
-    didFinishLoad = true;
-}
-@end
-
-namespace TestWebKitAPI {
-
-static void didFinishLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef, const void*)
-{
-    didFinishLoad = true;
-}
-
-TEST(WebKit1, AttributedStringTest)
-{
-    RetainPtr<WebView> webView(AdoptNS, [[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-    RetainPtr<AttributedStringTest> testController(AdoptNS, [AttributedStringTest new]);
-    
-    webView.get().frameLoadDelegate = testController.get();
-    [[webView.get() mainFrame] loadRequest:[NSURLRequest requestWithURL:[[NSBundle mainBundle] URLForResource:@"attributedStringCustomFont" withExtension:@"html" subdirectory:@"TestWebKitAPI.resources"]]];
-    
-    Util::run(&didFinishLoad);
-    didFinishLoad = false;
-        
-    NSAttributedString *attrString = [(NSView <NSTextInput> *)[[[webView.get() mainFrame] frameView] documentView] attributedSubstringFromRange:NSMakeRange(0, 5)];
-
-    EXPECT_WK_STREQ("Lorem", [attrString string]);
-}
-
-TEST(WebKit2, AttributedStringTest)
-{
-    WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate());
-    PlatformWebView webView(context.get());
-    
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-    loaderClient.version = 0;
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-    WKPageSetPageLoaderClient(webView.page(), &loaderClient);
-    
-    WKPageLoadURL(webView.page(), adoptWK(Util::createURLForResource("attributedStringCustomFont", "html")).get());
-
-    Util::run(&didFinishLoad);
-    didFinishLoad = false;
-    
-    NSRange range = NSMakeRange(0, 5);
-    NSRange actualRange;
-    NSAttributedString *attrString = [webView.platformView() attributedSubstringForProposedRange:range actualRange:&actualRange];
-
-    EXPECT_WK_STREQ("Lorem", [attrString string]);
-}
-
-    
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/BackForwardList.mm b/Tools/TestWebKitAPI/Tests/mac/BackForwardList.mm
deleted file mode 100644
index 098453d..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/BackForwardList.mm
+++ /dev/null
@@ -1,72 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <wtf/RetainPtr.h>
-
-#include <WebKit/WebBackForwardList.h>
-
-@interface BackForwardListTest : NSObject {
-}
-@end
-
-static bool didFinishLoad;
-
-@implementation BackForwardListTest
-
-- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
-{
-    didFinishLoad = true;
-}
-
-- (void)webView:(WebView *)sender didFailProvisionalLoadWithError:(NSError *)error forFrame:(WebFrame *)frame
-{
-    [frame loadAlternateHTMLString:@"<html></html>" baseURL:[NSURL URLWithString:@"about:blank"] forUnreachableURL:[[error userInfo] valueForKey:NSURLErrorFailingURLErrorKey]];
-}
-
-@end
-
-namespace TestWebKitAPI {
-
-TEST(WebKit1, ReloadBackForward)
-{
-    RetainPtr<WebView> webView(AdoptNS, [[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-    RetainPtr<BackForwardListTest> testController(AdoptNS, [BackForwardListTest new]);
-    webView.get().frameLoadDelegate = testController.get();
-    [[webView.get() mainFrame] loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://does-not-exist.example"]]];
-    Util::run(&didFinishLoad);
-    didFinishLoad = false;
-
-    [[webView.get() mainFrame] reload];
-    Util::run(&didFinishLoad);
-    didFinishLoad = false;
-
-    WebBackForwardList *bfList = [webView.get() backForwardList];
-    EXPECT_EQ(0, [bfList backListCount]);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/CancelLoadFromResourceLoadDelegate.html b/Tools/TestWebKitAPI/Tests/mac/CancelLoadFromResourceLoadDelegate.html
deleted file mode 100644
index efa4d1e..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/CancelLoadFromResourceLoadDelegate.html
+++ /dev/null
@@ -1,8 +0,0 @@
-<script>
-    function cancelLoadAndJumpToBlank() {
-        window.stop();
-        window.location = "about:blank";
-    }
-</script>
-<img src="Ahem.ttf">
-<script src="about:blank"></script>
\ No newline at end of file
diff --git a/Tools/TestWebKitAPI/Tests/mac/CancelLoadFromResourceLoadDelegate.mm b/Tools/TestWebKitAPI/Tests/mac/CancelLoadFromResourceLoadDelegate.mm
deleted file mode 100644
index 3729eb5..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/CancelLoadFromResourceLoadDelegate.mm
+++ /dev/null
@@ -1,82 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "PlatformUtilities.h"
-#import <wtf/RetainPtr.h>
-
-@interface CancelLoadFromResourceLoadDelegate : NSObject {
-    size_t resourceCount;
-}
-
-@end
-
-@implementation CancelLoadFromResourceLoadDelegate
-
-- (void)webView:(WebView *)sender resource:(id)identifier didFinishLoadingFromDataSource:(WebDataSource *)dataSource
-{
-    // Break the load once we have loaded the <script> and <img>.
-    ++resourceCount;
-    if (resourceCount > 2)
-        [sender stringByEvaluatingJavaScriptFromString:@"cancelLoadAndJumpToBlank()"];
-}
-@end
-
-
-static bool didFinishLoad = false;
-
-@interface CancelLoadFromResourceLoadDelegateFrameLoadDelegate : NSObject
-@end
-
-@implementation CancelLoadFromResourceLoadDelegateFrameLoadDelegate
-- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
-{
-    if ([[sender mainFrameURL] isEqualToString:@"about:blank"])
-        didFinishLoad = true;
-}
-@end
-
-namespace TestWebKitAPI {
-
-TEST(WebKit1, CancelLoadFromResourceLoadDelegate)
-{
-    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
-
-    RetainPtr<WebView> webView(AdoptNS, [[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-
-    RetainPtr<CancelLoadFromResourceLoadDelegate> resourceLoadDelegate(AdoptNS, [[CancelLoadFromResourceLoadDelegate alloc] init]);
-    webView.get().resourceLoadDelegate = resourceLoadDelegate.get();
-    RetainPtr<CancelLoadFromResourceLoadDelegateFrameLoadDelegate> frameLoadDelegate(AdoptNS, [[CancelLoadFromResourceLoadDelegateFrameLoadDelegate alloc] init]);
-    webView.get().frameLoadDelegate = frameLoadDelegate.get();
-
-    [[webView.get() mainFrame] loadRequest:[NSURLRequest requestWithURL:[[NSBundle mainBundle] URLForResource:@"CancelLoadFromResourceLoadDelegate" withExtension:@"html" subdirectory:@"TestWebKitAPI.resources"]]];
-
-    Util::run(&didFinishLoad);
-
-    [pool drain];
-    // If we finished without crashing, the test passed.
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/ContextMenuCanCopyURL.html b/Tools/TestWebKitAPI/Tests/mac/ContextMenuCanCopyURL.html
deleted file mode 100644
index 3147603..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/ContextMenuCanCopyURL.html
+++ /dev/null
@@ -1,4 +0,0 @@
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
-</head>
-Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<a href='http://www.webkit.org/'>Click me</a>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<a href='http://xn--ls8h.la/'>http://💩.la</a>.Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
\ No newline at end of file
diff --git a/Tools/TestWebKitAPI/Tests/mac/ContextMenuCanCopyURL.mm b/Tools/TestWebKitAPI/Tests/mac/ContextMenuCanCopyURL.mm
deleted file mode 100644
index 40ac377..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/ContextMenuCanCopyURL.mm
+++ /dev/null
@@ -1,115 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "PlatformUtilities.h"
-#import "PlatformWebView.h"
-#import "WTFStringUtilities.h"
-
-#import <WebKit/WebViewPrivate.h>
-#import <WebKit/WebURLsWithTitles.h>
-#import <WebKit/DOM.h>
-#import <Carbon/Carbon.h>
-#import <wtf/RetainPtr.h>
-
-
-@interface ContextMenuCanCopyURLDelegate : NSObject {
-}
-@end
-
-static bool didFinishLoad;
-
-@implementation ContextMenuCanCopyURLDelegate
-
-- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
-{
-    didFinishLoad = true;
-}
-
-@end
-
-namespace TestWebKitAPI {
-
-static void contextMenuCopyLink(WebView* webView, int itemIndex)
-{
-    [[[[webView mainFrame] frameView] documentView] layout];
-    
-    DOMDocument *document = [[webView mainFrame] DOMDocument];
-    DOMElement *documentElement = [document documentElement];
-    DOMHTMLAnchorElement *anchor = (DOMHTMLAnchorElement *)[[documentElement querySelectorAll:@"a"] item:itemIndex];
-
-    NSWindow *window = [webView window];
-    NSEvent *event = [NSEvent mouseEventWithType:NSRightMouseDown
-                                        location:NSMakePoint(anchor.offsetLeft + anchor.offsetWidth / 2, window.frame.size.height - (anchor.offsetTop + anchor.offsetHeight / 2))
-                                   modifierFlags:0
-                                       timestamp:GetCurrentEventTime()
-                                    windowNumber:[window windowNumber]
-                                         context:[NSGraphicsContext currentContext] 
-                                     eventNumber:0
-                                      clickCount:0
-                                        pressure:0.0];
-
-    NSView *subView = [webView hitTest:[event locationInWindow]];
-    if (!subView)
-        return;
-
-    NSMenu* menu = [subView menuForEvent:event];
-    for (int i = 0; i < [menu numberOfItems]; ++i) {
-        NSMenuItem* menuItem = [menu itemAtIndex:i];
-        if ([menuItem tag] != WebMenuItemTagCopyLinkToClipboard)
-            continue;
-            
-        [menu performActionForItemAtIndex:i];
-    }
-}
-
-
-TEST(WebKit1, ContextMenuCanCopyURL)
-{
-    RetainPtr<WebView> webView(AdoptNS, [[WebView alloc] initWithFrame:NSMakeRect(0,0,800,600) frameName:nil groupName:nil]);
-    RetainPtr<NSWindow> window(AdoptNS, [[NSWindow alloc] initWithContentRect:NSMakeRect(100, 100, 800, 600) styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:YES]);
-    RetainPtr<ContextMenuCanCopyURLDelegate> delegate(AdoptNS, [[ContextMenuCanCopyURLDelegate alloc] init]);
-
-    [window.get().contentView addSubview:webView.get()];
-    webView.get().frameLoadDelegate = delegate.get();
-
-    [webView.get().mainFrame loadRequest:[NSURLRequest requestWithURL:[[NSBundle mainBundle] URLForResource:@"ContextMenuCanCopyURL" withExtension:@"html" subdirectory:@"TestWebKitAPI.resources"]]];
-    
-    Util::run(&didFinishLoad);
-
-    contextMenuCopyLink(webView.get(), 0);
-    
-    NSURL *url = [NSURL URLFromPasteboard:[NSPasteboard generalPasteboard]];
-    EXPECT_EQ(String("http://www.webkit.org/"), String([url absoluteString]));
-
-    contextMenuCopyLink(webView.get(), 1);
-    
-    NSArray * urls = [WebURLsWithTitles URLsFromPasteboard: [NSPasteboard generalPasteboard]];
-    NSArray * titles = [WebURLsWithTitles titlesFromPasteboard: [NSPasteboard generalPasteboard]];
-    EXPECT_WK_STREQ(@"http://xn--ls8h.la/", [[urls objectAtIndex:0] absoluteString]);
-    EXPECT_WK_STREQ(@"http://💩.la", [titles objectAtIndex:0]);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/DOMHTMLTableCellCellAbove.mm b/Tools/TestWebKitAPI/Tests/mac/DOMHTMLTableCellCellAbove.mm
deleted file mode 100644
index d9c24a7..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/DOMHTMLTableCellCellAbove.mm
+++ /dev/null
@@ -1,77 +0,0 @@
-/*
- * Copyright (C) 2013 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <wtf/RetainPtr.h>
-
-#import <WebKit/DOMPrivate.h>
-#import <WebKit/WebViewPrivate.h>
-
-@interface HTMLTableCellElementCellAboveTest : NSObject
-@end
-
-static bool didFinishLoad;
-
-@implementation HTMLTableCellElementCellAboveTest
-
-- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
-{
-    didFinishLoad = true;
-}
-@end
-
-namespace TestWebKitAPI {
-
-static void expectCellAboveCell(DOMDocument *document, NSString *cellID, NSString *cellAboveID)
-{
-    DOMHTMLTableCellElement *cell = (DOMHTMLTableCellElement *)[document getElementById:cellID];
-    DOMHTMLTableCellElement *cellAbove = [cell _cellAbove];
-
-    EXPECT_WK_STREQ(cellAboveID, [cellAbove getAttribute:@"id"]);
-}
-
-TEST(WebKit1, HTMLTableCellElementCellAbove)
-{
-    RetainPtr<WebView> webView(AdoptNS, [[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-    RetainPtr<HTMLTableCellElementCellAboveTest> testController(AdoptNS, [HTMLTableCellElementCellAboveTest new]);
-
-    webView.get().frameLoadDelegate = testController.get();
-    [[webView.get() mainFrame] loadRequest:[NSURLRequest requestWithURL:[[NSBundle mainBundle]
-        URLForResource:@"DOMHTMLTableCellElementCellAbove" withExtension:@"html" subdirectory:@"TestWebKitAPI.resources"]]];
-
-    Util::run(&didFinishLoad);
-    didFinishLoad = false;
-
-    DOMDocument *document = webView.get().mainFrameDocument;
-
-    expectCellAboveCell(document, @"cell-4-2", @"cell-3-2");
-    expectCellAboveCell(document, @"cell-3-1", @"cell-2-1");
-    expectCellAboveCell(document, @"cell-2-1", @"cell-1-1");
-    expectCellAboveCell(document, @"cell-1-2", @"cell-h-2");
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/DOMHTMLTableCellElementCellAbove.html b/Tools/TestWebKitAPI/Tests/mac/DOMHTMLTableCellElementCellAbove.html
deleted file mode 100644
index 79135fd..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/DOMHTMLTableCellElementCellAbove.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<!DOCTYPE html>
-<body>
-    <table>
-        <tbody>
-            <tr>
-                <td id="cell-1-1">1-1</td>
-                <td id="cell-1-2">1-2</td>
-            </tr>
-            <tr>
-                <td id="cell-2-1">2-1</td>
-                <td id="cell-2-2">2-2</td>
-            </tr>
-        </tbody>
-        <thead>
-            <tr>
-                <th id="cell-h-1">h-1</th>
-                <th id="cell-h-2">h-2</th>
-            </tr>
-        </thead>
-        <tbody>
-            <tr>
-                <td id="cell-3-1">3-1</td>
-                <td id="cell-3-2">3-2</td>
-            </tr>
-            <tr>
-                <td id="cell-4-1">4-1</td>
-                <td id="cell-4-2">4-2</td>
-            </tr>
-        </tbody>
-</body>
diff --git a/Tools/TestWebKitAPI/Tests/mac/DOMNodeFromJSObject.mm b/Tools/TestWebKitAPI/Tests/mac/DOMNodeFromJSObject.mm
deleted file mode 100644
index 7bd23ea..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/DOMNodeFromJSObject.mm
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- * Copyright (C) 2013 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-
-#import <JavaScriptCore/JSRetainPtr.h>
-#import <WebKit/DOMPrivate.h>
-#import <WebKit/WebFramePrivate.h>
-#import <WebKit/WebScriptWorld.h>
-#import <objc/runtime.h>
-
-namespace TestWebKitAPI {
-
-TEST(WebKit1, DOMNodeFromJSObject)
-{
-    WebView *webView = [[WebView alloc] initWithFrame:NSZeroRect frameName:nil groupName:nil];
-
-    [webView stringByEvaluatingJavaScriptFromString:@"document.body.mainWorldProperty = true"];
-
-    WebScriptWorld *isolatedWorld = [WebScriptWorld world];
-    JSGlobalContextRef context = [[webView mainFrame] _globalContextForScriptWorld:isolatedWorld];
-
-    JSRetainPtr<JSStringRef> script(Adopt, JSStringCreateWithUTF8CString("document.body"));
-
-    JSValueRef value = JSEvaluateScript(context, script.get(), 0, 0, 0, 0);
-    JSObjectRef jsBody = JSValueToObject(context, value, 0);
-
-    id objcBody = [DOMNode _nodeFromJSWrapper:jsBody];
-
-    EXPECT_STREQ("DOMHTMLBodyElement", class_getName([objcBody class]));
-    EXPECT_EQ([[[webView mainFrame] DOMDocument] body], objcBody);
-
-    // Verify that the Objective-C wrapper is for the main world JS wrapper.
-    EXPECT_TRUE([[objcBody valueForKey:@"mainWorldProperty"] boolValue]);
-
-    [webView release];
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/DOMRangeOfString.html b/Tools/TestWebKitAPI/Tests/mac/DOMRangeOfString.html
deleted file mode 100644
index 539cc0a..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/DOMRangeOfString.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<!DOCTYPE html>
-<html>
-<body>
-    There is only a single needle in this stack of hay.
-    <iframe src="data:text/html,
-        There are no feathers in here.
-    "></iframe>
-</body>
-</html>
diff --git a/Tools/TestWebKitAPI/Tests/mac/DOMRangeOfString.mm b/Tools/TestWebKitAPI/Tests/mac/DOMRangeOfString.mm
deleted file mode 100644
index 1e80805..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/DOMRangeOfString.mm
+++ /dev/null
@@ -1,92 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "PlatformUtilities.h"
-#import <WebKit/WebViewPrivate.h>
-#import <WebKit/DOM.h>
-#import <wtf/RetainPtr.h>
-
-@interface DOMRangeOfStringFrameLoadDelegate : NSObject {
-}
-@end
-
-static bool didFinishLoad;
-
-@implementation DOMRangeOfStringFrameLoadDelegate
-
-- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
-{
-    didFinishLoad = true;
-}
-
-@end
-
-namespace TestWebKitAPI {
-
-TEST(WebKit1, DOMRangeOfString)
-{
-    RetainPtr<WebView> webView(AdoptNS, [[WebView alloc] initWithFrame:NSZeroRect frameName:nil groupName:nil]);
-    RetainPtr<DOMRangeOfStringFrameLoadDelegate> frameLoadDelegate(AdoptNS, [DOMRangeOfStringFrameLoadDelegate new]);
-
-    webView.get().frameLoadDelegate = frameLoadDelegate.get();
-    [[webView.get() mainFrame] loadRequest:[NSURLRequest requestWithURL:[[NSBundle mainBundle] URLForResource:@"DOMRangeOfString" withExtension:@"html" subdirectory:@"TestWebKitAPI.resources"]]];
-
-    Util::run(&didFinishLoad);
-
-    DOMRange *resultRange = [webView.get() DOMRangeOfString:@"needles" relativeTo:nil options:0];
-    EXPECT_EQ(nil, resultRange);
-
-    DOMRange *needleRange = [webView.get() DOMRangeOfString:@"needle" relativeTo:nil options:0];
-    EXPECT_EQ(28, needleRange.startOffset);
-
-    resultRange = [webView.get() DOMRangeOfString:@"stack" relativeTo:needleRange options:0];
-    EXPECT_EQ(43, resultRange.startOffset);
-
-    resultRange = [webView.get() DOMRangeOfString:@"stack" relativeTo:needleRange options:WebFindOptionsBackwards];
-    EXPECT_EQ(nil, resultRange);
-
-    resultRange = [webView.get() DOMRangeOfString:@"n" relativeTo:needleRange options:0];
-    EXPECT_EQ(36, resultRange.startOffset);
-
-    resultRange = [webView.get() DOMRangeOfString:@"n" relativeTo:needleRange options:WebFindOptionsStartInSelection];
-    EXPECT_EQ(28, resultRange.startOffset);
-
-    RetainPtr<WebView> otherWebView(AdoptNS, [[WebView alloc] initWithFrame:NSZeroRect frameName:nil groupName:nil]);
-    DOMRange *foreignRange = [[[otherWebView.get() mainFrame] DOMDocument] createRange];
-    resultRange = [webView.get() DOMRangeOfString:@"needle" relativeTo:foreignRange options:0];
-    EXPECT_EQ(nil, resultRange);
-
-    resultRange = [webView.get() DOMRangeOfString:@"here" relativeTo:needleRange options:0];
-    EXPECT_EQ(1, resultRange.startOffset);
-
-    resultRange = [webView.get() DOMRangeOfString:@"here" relativeTo:resultRange options:0];
-    EXPECT_EQ(25, resultRange.startOffset);
-
-    resultRange = [webView.get() DOMRangeOfString:@"here" relativeTo:resultRange options:WebFindOptionsWrapAround];
-    EXPECT_EQ(6, resultRange.startOffset);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/DeviceScaleFactorInDashboardRegions.mm b/Tools/TestWebKitAPI/Tests/mac/DeviceScaleFactorInDashboardRegions.mm
deleted file mode 100644
index f203564..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/DeviceScaleFactorInDashboardRegions.mm
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-
-#import "PlatformUtilities.h"
-#import "SyntheticBackingScaleFactorWindow.h"
-#import "Test.h"
-#import <WebKit/WebDashboardRegion.h>
-#import <wtf/RetainPtr.h>
-
-static bool gotDashboardRegions;
-static NSDictionary *regions;
-
-@interface DeviceScaleFactorInDashboardRegionsUIDelegate : NSObject {
-}
-@end
-
-@implementation DeviceScaleFactorInDashboardRegionsUIDelegate
-
-- (void)webView:(WebView *)webView dashboardRegionsChanged:(NSDictionary *)newRegions
-{
-    gotDashboardRegions = true;
-    regions = [newRegions retain];
-}
-
-@end
-
-namespace TestWebKitAPI {
-
-TEST(WebKit1, DeviceScaleFactorInDashboardRegions)
-{
-    NSRect viewFrame = NSMakeRect(0, 0, 800, 600);
-    RetainPtr<SyntheticBackingScaleFactorWindow> window(AdoptNS, [[SyntheticBackingScaleFactorWindow alloc] initWithContentRect:viewFrame styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:YES]);
-    [window.get() setReleasedWhenClosed:NO];
-    [window.get() setBackingScaleFactor:2];
-
-    RetainPtr<WebView> webView(AdoptNS, [[WebView alloc] initWithFrame:viewFrame frameName:nil groupName:nil]);
-    RetainPtr<DeviceScaleFactorInDashboardRegionsUIDelegate> uiDelegate(AdoptNS, [DeviceScaleFactorInDashboardRegionsUIDelegate new]);
-    webView.get().UIDelegate = uiDelegate.get();
-    [window.get().contentView addSubview:webView.get()];
-
-    [webView.get().mainFrame loadHTMLString:@"<div style='position: absolute; top: 10px; left: 10px; width: 50px; height: 50px; -webkit-dashboard-region: dashboard-region(control rectangle);'></div>" baseURL:[NSURL URLWithString:@"about:blank"]];
-
-    Util::run(&gotDashboardRegions);
-
-    NSRect controlRegionRect = [[[regions objectForKey:@"control"] objectAtIndex:0] dashboardRegionRect];
-
-    EXPECT_EQ(10, controlRegionRect.origin.x);
-    EXPECT_EQ(10, controlRegionRect.origin.y);
-    EXPECT_EQ(50, controlRegionRect.size.width);
-    EXPECT_EQ(50, controlRegionRect.size.height);
-
-    [regions release];
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/DeviceScaleFactorOnBack.mm b/Tools/TestWebKitAPI/Tests/mac/DeviceScaleFactorOnBack.mm
deleted file mode 100644
index 154b8c3..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/DeviceScaleFactorOnBack.mm
+++ /dev/null
@@ -1,109 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "WebKitAgnosticTest.h"
-
-#include "JavaScriptTest.h"
-#include "PlatformUtilities.h"
-#include "SyntheticBackingScaleFactorWindow.h"
-#include <WebKit2/WKViewPrivate.h>
-#include <wtf/RetainPtr.h>
-
-namespace TestWebKitAPI {
-
-class DeviceScaleFactorOnBack : public WebKitAgnosticTest {
-public:
-    RetainPtr<SyntheticBackingScaleFactorWindow> createWindow();
-
-    template <typename View> void runTest(View);
-
-    // WebKitAgnosticTest
-    virtual NSURL *url() const { return [[NSBundle mainBundle] URLForResource:@"devicePixelRatio" withExtension:@"html" subdirectory:@"TestWebKitAPI.resources"]; }
-    virtual void didLoadURL(WebView *webView) { runTest(webView); }
-    virtual void didLoadURL(WKView *wkView) { runTest(wkView); }
-    virtual void initializeView(WebView *);
-    virtual void initializeView(WKView *);
-};
-
-RetainPtr<SyntheticBackingScaleFactorWindow> DeviceScaleFactorOnBack::createWindow()
-{
-    RetainPtr<SyntheticBackingScaleFactorWindow> window(AdoptNS, [[SyntheticBackingScaleFactorWindow alloc] initWithContentRect:viewFrame styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:YES]);
-    [window.get() setReleasedWhenClosed:NO];
-    return window;
-}
-
-void DeviceScaleFactorOnBack::initializeView(WebView *view)
-{
-    // The default cache model has a capacity of 0, so it is necessary to switch to a cache
-    // model that actuall caches things.
-    [[view preferences] setCacheModel:WebCacheModelDocumentBrowser];
-}
-
-void DeviceScaleFactorOnBack::initializeView(WKView *view)
-{
-    // The default cache model has a capacity of 0, so it is necessary to switch to a cache
-    // model that actuall caches things.
-    WKContextSetCacheModel(WKPageGetContext([view pageRef]), kWKCacheModelDocumentBrowser);
-}
-
-template <typename View>
-void DeviceScaleFactorOnBack::runTest(View view)
-{
-    EXPECT_JS_EQ(view, "window.devicePixelRatio", "1");
-    EXPECT_JS_EQ(view, "devicePixelRatioFromStyle()", "1");
-
-    // Navigate to new URL
-    loadURL(view, [NSURL URLWithString:@"about:blank"]);
-    waitForLoadToFinish();
-
-    // Change the scale factor
-    RetainPtr<SyntheticBackingScaleFactorWindow> window1 = createWindow();
-    [window1.get() setBackingScaleFactor:3];
-
-    [[window1.get() contentView] addSubview:view];
-
-    // Navigate back to the first page
-    goBack(view);
-    waitForLoadToFinish();
-
-    // Ensure that the cached page has updated its scale factor
-    EXPECT_JS_EQ(view, "window.devicePixelRatio", "3");
-    EXPECT_JS_EQ(view, "devicePixelRatioFromStyle()", "3");
-
-    [view removeFromSuperview];
-}
-
-TEST_F(DeviceScaleFactorOnBack, WebKit)
-{
-    runWebKit1Test();
-}
-
-TEST_F(DeviceScaleFactorOnBack, WebKit2)
-{
-    runWebKit2Test();
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/DynamicDeviceScaleFactor.mm b/Tools/TestWebKitAPI/Tests/mac/DynamicDeviceScaleFactor.mm
deleted file mode 100644
index d0ebd51..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/DynamicDeviceScaleFactor.mm
+++ /dev/null
@@ -1,90 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "WebKitAgnosticTest.h"
-
-#include "JavaScriptTest.h"
-#include "PlatformUtilities.h"
-#include "SyntheticBackingScaleFactorWindow.h"
-#include <wtf/RetainPtr.h>
-
-namespace TestWebKitAPI {
-
-class DynamicDeviceScaleFactor : public WebKitAgnosticTest {
-public:
-    RetainPtr<SyntheticBackingScaleFactorWindow> createWindow();
-
-    template <typename View> void runTest(View);
-
-    // WebKitAgnosticTest
-    virtual NSURL *url() const { return [[NSBundle mainBundle] URLForResource:@"devicePixelRatio" withExtension:@"html" subdirectory:@"TestWebKitAPI.resources"]; }
-    virtual void didLoadURL(WebView *webView) { runTest(webView); }
-    virtual void didLoadURL(WKView *wkView) { runTest(wkView); }
-};
-
-RetainPtr<SyntheticBackingScaleFactorWindow> DynamicDeviceScaleFactor::createWindow()
-{
-    RetainPtr<SyntheticBackingScaleFactorWindow> window(AdoptNS, [[SyntheticBackingScaleFactorWindow alloc] initWithContentRect:viewFrame styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:YES]);
-    [window.get() setReleasedWhenClosed:NO];
-    return window;
-}
-
-template <typename View>
-void DynamicDeviceScaleFactor::runTest(View view)
-{
-    EXPECT_JS_EQ(view, "window.devicePixelRatio", "1");
-    EXPECT_JS_EQ(view, "devicePixelRatioFromStyle()", "1");
-
-    RetainPtr<SyntheticBackingScaleFactorWindow> window1 = createWindow();
-    [window1.get() setBackingScaleFactor:3];
-
-    [[window1.get() contentView] addSubview:view];
-    EXPECT_JS_EQ(view, "window.devicePixelRatio", "3");
-    EXPECT_JS_EQ(view, "devicePixelRatioFromStyle()", "3");
-
-    RetainPtr<SyntheticBackingScaleFactorWindow> window2 = createWindow();
-    [window2.get() setBackingScaleFactor:4];
-
-    [[window2.get() contentView] addSubview:view];
-    EXPECT_JS_EQ(view, "window.devicePixelRatio", "4");
-    EXPECT_JS_EQ(view, "devicePixelRatioFromStyle()", "4");
-
-    [view removeFromSuperview];
-    EXPECT_JS_EQ(view, "window.devicePixelRatio", "1");
-    EXPECT_JS_EQ(view, "devicePixelRatioFromStyle()", "1");
-}
-
-TEST_F(DynamicDeviceScaleFactor, WebKit)
-{
-    runWebKit1Test();
-}
-
-TEST_F(DynamicDeviceScaleFactor, WebKit2)
-{
-    runWebKit2Test();
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/ElementAtPointInWebFrame.mm b/Tools/TestWebKitAPI/Tests/mac/ElementAtPointInWebFrame.mm
deleted file mode 100644
index 10fc581..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/ElementAtPointInWebFrame.mm
+++ /dev/null
@@ -1,73 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "PlatformUtilities.h"
-#import <WebKit/WebFramePrivate.h>
-#import <wtf/RetainPtr.h>
-
-@interface ElementAtPointFrameLoadDelegate : NSObject
-@end
-
-static bool didFinishLoad;
-
-@implementation ElementAtPointFrameLoadDelegate
-
-- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
-{
-    didFinishLoad = true;
-}
-
-@end
-
-namespace TestWebKitAPI {
-
-TEST(WebKit1, ElementAtPoint)
-{
-    RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-    RetainPtr<ElementAtPointFrameLoadDelegate> frameLoadDelegate = adoptNS([[ElementAtPointFrameLoadDelegate alloc] init]);
-
-    webView.get().frameLoadDelegate = frameLoadDelegate.get();
-    WebFrame *mainFrame = webView.get().mainFrame;
-
-    [mainFrame loadHTMLString:@"<style> div { position:absolute; width:60px; height:100px; } </style> <div name='first'></div> <div name='second' style='left:60px; top:100px;'></div>"
-                      baseURL:[NSURL URLWithString:@"about:blank"]];
-
-    Util::run(&didFinishLoad);
-    
-    NSDictionary *elementDictionary = [mainFrame elementAtPoint:NSMakePoint(30, 50)];
-    DOMElement *domElement = [elementDictionary objectForKey:WebElementDOMNodeKey];
-    EXPECT_WK_STREQ(@"first", [domElement getAttribute:@"name"]);
-
-    elementDictionary = [mainFrame elementAtPoint:NSMakePoint(90, 150)];
-    domElement = [elementDictionary objectForKey:WebElementDOMNodeKey];
-    EXPECT_WK_STREQ(@"second", [domElement getAttribute:@"name"]);
-
-    elementDictionary = [mainFrame elementAtPoint:NSMakePoint(30, 150)];
-    domElement = [elementDictionary objectForKey:WebElementDOMNodeKey];
-    EXPECT_WK_STREQ(@"BODY", [domElement tagName]);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/HTMLCollectionNamedItem.html b/Tools/TestWebKitAPI/Tests/mac/HTMLCollectionNamedItem.html
deleted file mode 100644
index c0205b6..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/HTMLCollectionNamedItem.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<!DOCTYPE html>
-<html>
-<body>
-<input type="text" id="idForTwoTextFields" value="firstItem">
-<input type="text" id="idForTwoTextFields" value="secondItem">
-<img name="nameForTwoImages" title="thirdItem">
-<img name="nameForTwoImages" title="fourthItem">
-</body>
-</html>
diff --git a/Tools/TestWebKitAPI/Tests/mac/HTMLCollectionNamedItem.mm b/Tools/TestWebKitAPI/Tests/mac/HTMLCollectionNamedItem.mm
deleted file mode 100644
index 50aafee..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/HTMLCollectionNamedItem.mm
+++ /dev/null
@@ -1,80 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- * Copyright (C) 2012 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <wtf/RetainPtr.h>
-
-#import <WebKit/DOM.h>
-#import <WebKit/WebViewPrivate.h>
-
-@interface HTMLCollectionNamedItemTest : NSObject {
-}
-@end
-
-static bool didFinishLoad;
-
-@implementation HTMLCollectionNamedItemTest
-
-- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
-{
-    didFinishLoad = true;
-}
-@end
-
-namespace TestWebKitAPI {
-
-TEST(WebKit1, HTMLCollectionNamedItemTest)
-{
-    RetainPtr<WebView> webView(AdoptNS, [[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-    RetainPtr<HTMLCollectionNamedItemTest> testController(AdoptNS, [HTMLCollectionNamedItemTest new]);
-
-    webView.get().frameLoadDelegate = testController.get();
-    [[webView.get() mainFrame] loadRequest:[NSURLRequest requestWithURL:[[NSBundle mainBundle]
-        URLForResource:@"HTMLCollectionNamedItem" withExtension:@"html" subdirectory:@"TestWebKitAPI.resources"]]];
-
-    Util::run(&didFinishLoad);
-    didFinishLoad = false;
-
-    DOMDocument *document = webView.get().mainFrameDocument;
-    RetainPtr<DOMHTMLCollection> collection = [[document body] children];
-
-    EXPECT_EQ([collection.get() length], (unsigned)4);
-    EXPECT_WK_STREQ([[collection.get() item:0] value], @"firstItem");
-    EXPECT_WK_STREQ([[collection.get() item:1] value], @"secondItem");
-    EXPECT_WK_STREQ([[collection.get() namedItem:@"idForTwoTextFields"] value], @"firstItem");
-    EXPECT_WK_STREQ([[collection.get() item:1] value], @"secondItem");
-    EXPECT_WK_STREQ([[collection.get() item:0] value], @"firstItem");
-
-    EXPECT_WK_STREQ([(DOMHTMLElement*)[collection.get() item:2] title], @"thirdItem");
-    EXPECT_WK_STREQ([(DOMHTMLElement*)[collection.get() item:3] title], @"fourthItem");
-    EXPECT_WK_STREQ([(DOMHTMLElement*)[collection.get() namedItem:@"nameForTwoImages"] title], @"thirdItem");
-    EXPECT_WK_STREQ([(DOMHTMLElement*)[collection.get() item:3] title], @"fourthItem");
-    EXPECT_WK_STREQ([(DOMHTMLElement*)[collection.get() item:2] title], @"thirdItem");
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/HTMLFormCollectionNamedItem.html b/Tools/TestWebKitAPI/Tests/mac/HTMLFormCollectionNamedItem.html
deleted file mode 100644
index 8439f2c..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/HTMLFormCollectionNamedItem.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<!DOCTYPE html>
-<html>
-<body>
-<form>
-    <input type="text" name="nameForTwoTextFields" value="firstItem">
-    <input type="text" name="nameForTwoTextFields" value="secondItem">
-</form>
-</body>
-</html>
diff --git a/Tools/TestWebKitAPI/Tests/mac/HTMLFormCollectionNamedItem.mm b/Tools/TestWebKitAPI/Tests/mac/HTMLFormCollectionNamedItem.mm
deleted file mode 100644
index cf2da2d..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/HTMLFormCollectionNamedItem.mm
+++ /dev/null
@@ -1,75 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- * Copyright (C) 2012 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <wtf/RetainPtr.h>
-
-#import <WebKit/DOM.h>
-#import <WebKit/WebViewPrivate.h>
-
-@interface HTMLFormCollectionNamedItemTest : NSObject {
-}
-@end
-
-static bool didFinishLoad;
-
-@implementation HTMLFormCollectionNamedItemTest
-
-- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
-{
-    didFinishLoad = true;
-}
-@end
-
-namespace TestWebKitAPI {
-
-TEST(WebKit1, HTMLFormCollectionNamedItemTest)
-{
-    RetainPtr<WebView> webView(AdoptNS, [[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-    RetainPtr<HTMLFormCollectionNamedItemTest> testController(AdoptNS, [HTMLFormCollectionNamedItemTest new]);
-
-    webView.get().frameLoadDelegate = testController.get();
-    [[webView.get() mainFrame] loadRequest:[NSURLRequest requestWithURL:[[NSBundle mainBundle]
-        URLForResource:@"HTMLFormCollectionNamedItem" withExtension:@"html" subdirectory:@"TestWebKitAPI.resources"]]];
-
-    Util::run(&didFinishLoad);
-    didFinishLoad = false;
-
-    DOMDocument *document = webView.get().mainFrameDocument;
-    DOMHTMLFormElement *form = (DOMHTMLFormElement *)[document querySelector:@"form"];
-    RetainPtr<DOMHTMLCollection> collection = [form elements];
-
-    EXPECT_EQ([collection.get() length], (unsigned)2);
-    EXPECT_WK_STREQ([[collection.get() item:0] value], @"firstItem");
-    EXPECT_WK_STREQ([[collection.get() item:1] value], @"secondItem");
-    EXPECT_WK_STREQ([[collection.get() namedItem:@"nameForTwoTextFields"] value], @"firstItem");
-    EXPECT_WK_STREQ([[collection.get() item:1] value], @"secondItem");
-    EXPECT_WK_STREQ([[collection.get() item:0] value], @"firstItem");
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/InspectorBar.mm b/Tools/TestWebKitAPI/Tests/mac/InspectorBar.mm
deleted file mode 100644
index 0a51e2f..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/InspectorBar.mm
+++ /dev/null
@@ -1,87 +0,0 @@
-/*
- * Copyright (C) 2011, 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "PlatformUtilities.h"
-#import <wtf/RetainPtr.h>
-
-@interface InspectorBarController : NSObject {
-}
-@end
-
-static bool didFinishLoad;
-
-@implementation InspectorBarController
-
-- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
-{
-    didFinishLoad = true;
-}
-
-- (NSDictionary *)convertAttributes:(NSDictionary *)dictionary
-{
-    NSMutableDictionary *newDictionary = [dictionary mutableCopy];
-    [newDictionary removeObjectForKey:NSForegroundColorAttributeName];
-    return [newDictionary autorelease];
-}
-@end
-
-namespace TestWebKitAPI {
-
-TEST(WebKit1, InspectorBarTest)
-{
-    RetainPtr<WebView> webView(AdoptNS, [[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-    RetainPtr<InspectorBarController> inspectorBarController(AdoptNS, [InspectorBarController new]);
-
-    webView.get().frameLoadDelegate = inspectorBarController.get();
-    [webView.get().mainFrame loadHTMLString:@"<body contenteditable style=\"color: green\"><u>Lorem ipsum sit amet</u></body>" baseURL:[NSURL URLWithString:@"about:blank"]];
-
-    Util::run(&didFinishLoad);
-
-    DOMDocument *document = webView.get().mainFrameDocument;
-    [[document body] focus];
-    
-    EXPECT_TRUE([webView.get() respondsToSelector:@selector(typingAttributes)]);
-    NSDictionary *attributes = [(id)webView.get() typingAttributes];
-    [(id)[[[webView.get() mainFrame] frameView] documentView] doCommandBySelector:@selector(bold:)];
-    EXPECT_FALSE([attributes isEqual:[(id)webView.get() typingAttributes]]);
-    
-    [webView.get() selectAll:nil];
-    NSAttributedString *attrString = [(NSView <NSTextInput> *)[[[webView.get() mainFrame] frameView] documentView] attributedSubstringFromRange:NSMakeRange(0, 5)];
-    attributes = [attrString attributesAtIndex:0 effectiveRange:0];
-    
-    EXPECT_TRUE([[attributes objectForKey:NSUnderlineStyleAttributeName] intValue] != 0);
-
-    [webView.get() changeAttributes:inspectorBarController.get()];
-    
-    DOMNode *currentNode = [document body];
-    while ([[currentNode firstChild] nodeType] != DOM_TEXT_NODE)
-        currentNode = [currentNode firstChild];
-
-    DOMCSSStyleDeclaration *style = [document getComputedStyle:(DOMElement *)currentNode pseudoElement:nil];
-    EXPECT_WK_STREQ(@"rgb(0, 0, 0)", [style color]);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/JSContextBackForwardCache1.html b/Tools/TestWebKitAPI/Tests/mac/JSContextBackForwardCache1.html
deleted file mode 100644
index f736a78..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/JSContextBackForwardCache1.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<body>
-    <div id="test-div"></div>
-    <script>
-        var testDiv = document.getElementById("test-div");
-        if (!testDiv.myCustomProperty)
-            insertMyCustomProperty(testDiv);
-        else
-            checkForMyCustomProperty(testDiv);
-    </script>
-</body>
diff --git a/Tools/TestWebKitAPI/Tests/mac/JSContextBackForwardCache2.html b/Tools/TestWebKitAPI/Tests/mac/JSContextBackForwardCache2.html
deleted file mode 100644
index 1d26d21..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/JSContextBackForwardCache2.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<body>
-    <div id="test-div"></div>
-    <script>
-        var testDiv = document.getElementById("test-div");
-        if (testDiv.myCustomProperty)
-            myConsole.log("ERROR: found myCustomProperty.");
-        else
-            didCompleteTestSuccessfully();
-    </script>
-</body>
diff --git a/Tools/TestWebKitAPI/Tests/mac/JSWrapperForNodeInWebFrame.mm b/Tools/TestWebKitAPI/Tests/mac/JSWrapperForNodeInWebFrame.mm
deleted file mode 100644
index 5c41aaa..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/JSWrapperForNodeInWebFrame.mm
+++ /dev/null
@@ -1,96 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "PlatformUtilities.h"
-#import <WebKit/WebFramePrivate.h>
-#import <WebKit/WebScriptWorld.h>
-#import <JavaScriptCore/JSContextRef.h>
-#import <JavaScriptCore/JSRetainPtr.h>
-#import <JavaScriptCore/JSStringRef.h>
-#import <JavaScriptCore/JSValueRef.h>
-#import <wtf/RetainPtr.h>
-
-@interface JSWrapperForNodeFrameLoadDelegate : NSObject {
-}
-@end
-
-static bool didFinishLoad;
-
-@implementation JSWrapperForNodeFrameLoadDelegate
-
-- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
-{
-    didFinishLoad = true;
-}
-
-@end
-
-namespace TestWebKitAPI {
-
-TEST(WebKit1, JSWrapperForNode)
-{
-    RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-    RetainPtr<JSWrapperForNodeFrameLoadDelegate> frameLoadDelegate = adoptNS([[JSWrapperForNodeFrameLoadDelegate alloc] init]);
-
-    webView.get().frameLoadDelegate = frameLoadDelegate.get();
-    WebFrame *mainFrame = webView.get().mainFrame;
-    [mainFrame loadHTMLString:@"<div id=\"target\"</div>" baseURL:[NSURL URLWithString:@"about:blank"]];
-    Util::run(&didFinishLoad);
-    DOMDocument *document = webView.get().mainFrameDocument;
-    DOMNode *target = [document getElementById:@"target"]; // This script object is in standard world.
-
-    // In an isolated script world, add a new property to the target node.
-    NSString *isolatedScriptString = @"var target = document.getElementById(\"target\"); target.isolatedProperty = true;";
-    WebScriptWorld *isolatedWorld = [WebScriptWorld world];
-    JSGlobalContextRef isolatedCtx = [mainFrame _globalContextForScriptWorld:isolatedWorld];
-    [mainFrame _stringByEvaluatingJavaScriptFromString:isolatedScriptString withGlobalObject:JSContextGetGlobalObject(isolatedCtx) inScriptWorld:isolatedWorld];
-    JSValueRef isolatedNodeJSValue = [mainFrame jsWrapperForNode:target inScriptWorld:isolatedWorld];
-    ASSERT_TRUE(JSValueIsObject(isolatedCtx, isolatedNodeJSValue));
-    JSObjectRef isolatedNodeJSObject = JSValueToObject(isolatedCtx, isolatedNodeJSValue, 0);
-
-    // In the standard script world, add a different property to the target node
-    NSString *normalScriptString = @"var target = document.getElementById(\"target\"); target.normalProperty = true;";
-    WebScriptWorld *normalWorld = [WebScriptWorld standardWorld];
-    JSGlobalContextRef normalCtx = [mainFrame _globalContextForScriptWorld:normalWorld];
-    [mainFrame _stringByEvaluatingJavaScriptFromString:normalScriptString withGlobalObject:JSContextGetGlobalObject(normalCtx) inScriptWorld:normalWorld];
-    JSValueRef normalNodeJSValue = [mainFrame jsWrapperForNode:target inScriptWorld:normalWorld];
-    ASSERT_TRUE(JSValueIsObject(normalCtx, normalNodeJSValue));
-    JSObjectRef normalNodeJSObject = JSValueToObject(normalCtx, normalNodeJSValue, 0);
-
-    JSRetainPtr<JSStringRef> isolatedPropertyJSString = JSStringCreateWithUTF8CString("isolatedProperty");
-    // Test for successful retrieval of the first property in the isolated script world
-    EXPECT_TRUE(JSValueIsBoolean(isolatedCtx, JSObjectGetProperty(isolatedCtx, isolatedNodeJSObject, isolatedPropertyJSString.get(), 0)));
-    // Test for failed retrieval of the first property in the standard script world
-    EXPECT_TRUE(JSValueIsUndefined(normalCtx, JSObjectGetProperty(normalCtx, normalNodeJSObject, isolatedPropertyJSString.get(), 0)));
-
-    JSRetainPtr<JSStringRef> normalPropertyJSString = JSStringCreateWithUTF8CString("normalProperty");
-    // Test for successful retrieval of the second property in the standard script world
-    EXPECT_TRUE(JSValueIsBoolean(normalCtx, JSObjectGetProperty(normalCtx, normalNodeJSObject, normalPropertyJSString.get(), 0)));
-    // Test for failed retrieval of the second property in the isolated script world
-    EXPECT_TRUE(JSValueIsUndefined(isolatedCtx, JSObjectGetProperty(isolatedCtx, isolatedNodeJSObject, normalPropertyJSString.get(), 0)));
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/MemoryCacheDisableWithinResourceLoadDelegate.html b/Tools/TestWebKitAPI/Tests/mac/MemoryCacheDisableWithinResourceLoadDelegate.html
deleted file mode 100644
index 033c791..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/MemoryCacheDisableWithinResourceLoadDelegate.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<script>
-
-function loaded()
-{
-    var request = new XMLHttpRequest();
-    request.open('GET', 'http://www.iana.org/domains/example/', true);
-    request.send(null);
-}
-
-</script>
-
-<body onload="loaded();">
-We will do some XHR'ing now!
-</body>
diff --git a/Tools/TestWebKitAPI/Tests/mac/MemoryCacheDisableWithinResourceLoadDelegate.mm b/Tools/TestWebKitAPI/Tests/mac/MemoryCacheDisableWithinResourceLoadDelegate.mm
deleted file mode 100644
index aeb9555..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/MemoryCacheDisableWithinResourceLoadDelegate.mm
+++ /dev/null
@@ -1,90 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "PlatformUtilities.h"
-#import <WebKit/WebCache.h>
-#import <wtf/RetainPtr.h>
-
-@interface MemoryCacheDisableTestResourceLoadDelegate : NSObject {
-}
-@end
-
-static bool didFinishLoad;
-
-@implementation MemoryCacheDisableTestResourceLoadDelegate
-
-- (id)webView:(WebView *)sender identifierForInitialRequest:(NSURLRequest *)request fromDataSource:(WebDataSource *)dataSource
-{
-    [WebCache setDisabled:YES];
-    [WebCache setDisabled:NO];
-
-    return self;
-}
-
-- (NSURLRequest *)webView:(WebView *)sender resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)dataSource
-{
-    [WebCache setDisabled:YES];
-    [WebCache setDisabled:NO];
-
-    return request;
-}
-
-- (void)webView:(WebView *)sender resource:(id)identifier didFinishLoadingFromDataSource:(WebDataSource *)dataSource
-{
-    [WebCache setDisabled:YES];
-    [WebCache setDisabled:NO];
-
-    didFinishLoad = YES;
-}
-
-- (void)webView:(WebView *)sender resource:(id)identifier didFailLoadingWithError:(NSError *)error fromDataSource:(WebDataSource *)dataSource
-{
-    [WebCache setDisabled:YES];
-    [WebCache setDisabled:NO];
-}
-
-@end
-
-namespace TestWebKitAPI {
-
-TEST(WebKit1, MemoryCacheDisableWithinResourceLoadDelegate)
-{
-    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
-
-    RetainPtr<WebView> webView(AdoptNS, [[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-
-    RetainPtr<MemoryCacheDisableTestResourceLoadDelegate> resourceLoadDelegate(AdoptNS, [[MemoryCacheDisableTestResourceLoadDelegate alloc] init]);
-    webView.get().resourceLoadDelegate = resourceLoadDelegate.get();
-
-    [[webView.get() mainFrame] loadRequest:[NSURLRequest requestWithURL:[[NSBundle mainBundle] URLForResource:@"MemoryCacheDisableWithinResourceLoadDelegate" withExtension:@"html" subdirectory:@"TestWebKitAPI.resources"]]];
-
-    Util::run(&didFinishLoad);
-    
-    [pool drain];
-    // If we finished without crashing, the test passed.
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/MemoryCachePruneWithinResourceLoadDelegate.html b/Tools/TestWebKitAPI/Tests/mac/MemoryCachePruneWithinResourceLoadDelegate.html
deleted file mode 100644
index 7f4fd33..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/MemoryCachePruneWithinResourceLoadDelegate.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<script>
-
-function loaded()
-{
-    var request = new XMLHttpRequest();
-    request.open('GET', 'http://www.iana.org/domains/example/', true);
-    request.send(null);
-}
-
-</script>
-
-<body onload="loaded();">
-We will do some XHR'ing now!
-</body>
\ No newline at end of file
diff --git a/Tools/TestWebKitAPI/Tests/mac/MemoryCachePruneWithinResourceLoadDelegate.mm b/Tools/TestWebKitAPI/Tests/mac/MemoryCachePruneWithinResourceLoadDelegate.mm
deleted file mode 100644
index cf3d311..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/MemoryCachePruneWithinResourceLoadDelegate.mm
+++ /dev/null
@@ -1,100 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "PlatformUtilities.h"
-#import <wtf/RetainPtr.h>
-
-@interface MemoryCachePruneTestResourceLoadDelegate : NSObject {
-@public
-    NSWindow *_window;
-}
-@end
-
-static bool didFinishLoad;
-
-@implementation MemoryCachePruneTestResourceLoadDelegate
-
-- (id)webView:(WebView *)sender identifierForInitialRequest:(NSURLRequest *)request fromDataSource:(WebDataSource *)dataSource
-{
-    // We only care about an http request, which is our test XHR
-    if ([[[request URL] scheme] isEqualToString:@"http"])
-        return self;
-
-    return nil;
-}
-
-- (NSURLRequest *)webView:(WebView *)sender resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)dataSource
-{
-    if (identifier == nil)
-        return request;
-        
-    [_window close];
-    return request;
-}
-
-- (void)webView:(WebView *)sender resource:(id)identifier didFinishLoadingFromDataSource:(WebDataSource *)dataSource
-{
-    if (identifier == nil)
-        return;
-
-    didFinishLoad = true;
-}
-
-- (void)webView:(WebView *)sender resource:(id)identifier didFailLoadingWithError:(NSError *)error fromDataSource:(WebDataSource *)dataSource
-{
-    if (identifier == nil)
-        return;
-
-    didFinishLoad = true;
-}
-
-@end
-
-namespace TestWebKitAPI {
-
-TEST(WebKit1, DISABLED_MemoryCachePruneWithinResourceLoadDelegate)
-{
-    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
-
-    RetainPtr<WebView> webView1(AdoptNS, [[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-    RetainPtr<WebView> webView2(AdoptNS, [[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-
-    NSWindow* window = [[NSWindow alloc] initWithContentRect:webView2.get().frame styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:YES];
-    [window.contentView addSubview:webView2.get()];
-
-    RetainPtr<MemoryCachePruneTestResourceLoadDelegate> resourceLoadDelegate(AdoptNS, [[MemoryCachePruneTestResourceLoadDelegate alloc] init]);
-    resourceLoadDelegate.get()->_window = window;
-    webView1.get().resourceLoadDelegate = resourceLoadDelegate.get();
-
-    [[webView1.get() mainFrame] loadRequest:[NSURLRequest requestWithURL:[[NSBundle mainBundle] URLForResource:@"MemoryCachePruneWithinResourceLoadDelegate" withExtension:@"html" subdirectory:@"TestWebKitAPI.resources"]]];
-
-    Util::run(&didFinishLoad);
-    
-    [pool drain];
-    // If we finished without crashing, the test passed.
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/PageVisibilityStateWithWindowChanges.html b/Tools/TestWebKitAPI/Tests/mac/PageVisibilityStateWithWindowChanges.html
deleted file mode 100644
index 8a2bdc6..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/PageVisibilityStateWithWindowChanges.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<script>
-document.addEventListener("webkitvisibilitychange", function(event) {
-    // Send a signal to the test controller via alert.
-    alert('webkitvisibilitychange');
-});
-</script>
diff --git a/Tools/TestWebKitAPI/Tests/mac/PageVisibilityStateWithWindowChanges.mm b/Tools/TestWebKitAPI/Tests/mac/PageVisibilityStateWithWindowChanges.mm
deleted file mode 100644
index cec138c..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/PageVisibilityStateWithWindowChanges.mm
+++ /dev/null
@@ -1,160 +0,0 @@
-/*
- * Copyright (C) 2013 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "JavaScriptTest.h"
-#import "Test.h"
-#import "WebKitAgnosticTest.h"
-#import <WebKit/WebView.h>
-#import <WebKit2/WKViewPrivate.h>
-#import <wtf/RetainPtr.h>
-
-static bool didGetPageSignalToContinue;
-
-// WebKit1 WebUIDelegate
-
-@interface PageVisibilityStateDelegate : NSObject
-@end
-
-@implementation PageVisibilityStateDelegate
-
-- (void)webView:(WebView *)sender runJavaScriptAlertPanelWithMessage:(NSString *)message initiatedByFrame:(WebFrame *)frame
-{
-    didGetPageSignalToContinue = true;
-}
-
-@end
-
-// WebKit2 WKPageUIClient
-
-static void runJavaScriptAlert(WKPageRef page, WKStringRef alertText, WKFrameRef frame, const void* clientInfo)
-{
-    didGetPageSignalToContinue = true;
-}
-
-// WebKitAgnosticTest
-
-namespace TestWebKitAPI {
-
-class PageVisibilityStateWithWindowChanges : public WebKitAgnosticTest {
-public:
-    template <typename View> void runTest(View);
-
-    // WebKitAgnosticTest
-    virtual NSURL *url() const OVERRIDE { return [[NSBundle mainBundle] URLForResource:@"PageVisibilityStateWithWindowChanges" withExtension:@"html" subdirectory:@"TestWebKitAPI.resources"]; }
-    virtual void didLoadURL(WebView *webView) OVERRIDE { runTest(webView); }
-    virtual void didLoadURL(WKView *wkView) OVERRIDE { runTest(wkView); }
-
-    // Setup and teardown the UIDelegate which gets alert() signals from the page.
-    virtual void initializeView(WebView *) OVERRIDE;
-    virtual void initializeView(WKView *) OVERRIDE;
-    virtual void teardownView(WebView *) OVERRIDE;
-    virtual void teardownView(WKView *) OVERRIDE;
-};
-
-void PageVisibilityStateWithWindowChanges::initializeView(WebView *webView)
-{
-    // Released in teardownView.
-    webView.UIDelegate = [[PageVisibilityStateDelegate alloc] init];
-}
-
-void PageVisibilityStateWithWindowChanges::teardownView(WebView *webView)
-{
-    id uiDelegate = webView.UIDelegate;
-    webView.UIDelegate = nil;
-    [uiDelegate release];
-}
-
-void PageVisibilityStateWithWindowChanges::initializeView(WKView *wkView)
-{
-    WKPageUIClient uiClient;
-    memset(&uiClient, 0, sizeof(uiClient));
-    uiClient.version = 0;
-    uiClient.clientInfo = 0;
-    uiClient.runJavaScriptAlert = runJavaScriptAlert;
-    WKPageSetPageUIClient(wkView.pageRef, &uiClient);
-}
-
-void PageVisibilityStateWithWindowChanges::teardownView(WKView *wkView)
-{
-    // We do not need to teardown the WKPageUIClient.
-}
-
-template <typename View>
-void PageVisibilityStateWithWindowChanges::runTest(View view)
-{
-    // This WebView does not have a window and superview. PageVisibility should be "hidden".
-    EXPECT_NULL([view window]);
-    EXPECT_NULL([view superview]);
-    EXPECT_JS_EQ(view, "document.webkitVisibilityState", "hidden");
-
-    // Add it to a non-visible window. PageVisibility should still be "hidden".
-    RetainPtr<NSWindow> window(AdoptNS, [[NSWindow alloc] initWithContentRect:view.frame styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:NO]);
-    [window.get().contentView addSubview:view];
-    EXPECT_NOT_NULL([view window]);
-    EXPECT_NOT_NULL([view superview]);
-    EXPECT_FALSE([window.get() isVisible]);
-    EXPECT_JS_EQ(view, "document.webkitVisibilityState", "hidden");
-
-    // Make the window visible. PageVisibility should become "visible".
-    didGetPageSignalToContinue = false;    
-    [window.get() makeKeyAndOrderFront:nil];
-    EXPECT_TRUE([window.get() isVisible]);
-    Util::run(&didGetPageSignalToContinue);
-    EXPECT_JS_EQ(view, "document.webkitVisibilityState", "visible");
-
-    // Minimize the window. PageVisibility should become "hidden".
-    didGetPageSignalToContinue = false;
-    [window.get() miniaturize:nil];
-    Util::run(&didGetPageSignalToContinue);
-    EXPECT_JS_EQ(view, "document.webkitVisibilityState", "hidden");
-
-    // Deminimize the window. PageVisibility should become "visible".
-    didGetPageSignalToContinue = false;
-    [window.get() deminiaturize:nil];
-    Util::run(&didGetPageSignalToContinue);
-    EXPECT_JS_EQ(view, "document.webkitVisibilityState", "visible");
-
-    // Remove the WebView from its superview. PageVisibility should become "hidden".
-    didGetPageSignalToContinue = false;
-    [view removeFromSuperview];
-    EXPECT_NULL([view window]);
-    EXPECT_NULL([view superview]);
-    EXPECT_TRUE([window.get() isVisible]);
-    Util::run(&didGetPageSignalToContinue);
-    EXPECT_JS_EQ(view, "document.webkitVisibilityState", "hidden");
-}
-    
-TEST_F(PageVisibilityStateWithWindowChanges, WebKit)
-{
-    runWebKit1Test();
-}
-
-TEST_F(PageVisibilityStateWithWindowChanges, WebKit2)
-{
-    runWebKit1Test();
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/PublicSuffix.mm b/Tools/TestWebKitAPI/Tests/mac/PublicSuffix.mm
deleted file mode 100644
index cb72414..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/PublicSuffix.mm
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#if USE(PUBLIC_SUFFIX_LIST)
-
-#include "WTFStringUtilities.h"
-#include <WebCore/PublicSuffix.h>
-#include <wtf/MainThread.h>
-
-using namespace WebCore;
-
-namespace TestWebKitAPI {
-
-class PublicSuffix: public testing::Test {
-public:
-    virtual void SetUp()
-    {
-        WTF::initializeMainThread();
-        [WebView initialize];
-    }
-};
-
-TEST_F(PublicSuffix, IsPublicSuffix)
-{
-    EXPECT_TRUE(isPublicSuffix("com"));
-    EXPECT_FALSE(isPublicSuffix("test.com"));
-    EXPECT_FALSE(isPublicSuffix("com.com"));
-    EXPECT_TRUE(isPublicSuffix("net"));
-    EXPECT_TRUE(isPublicSuffix("org"));
-    EXPECT_TRUE(isPublicSuffix("co.uk"));
-    EXPECT_FALSE(isPublicSuffix("bl.uk"));
-    EXPECT_FALSE(isPublicSuffix("test.co.uk"));
-    EXPECT_TRUE(isPublicSuffix("xn--zf0ao64a.tw"));
-}
-
-TEST_F(PublicSuffix, TopPrivatelyControlledDomain)
-{
-    EXPECT_EQ(String("test.com"), topPrivatelyControlledDomain("test.com"));
-    EXPECT_EQ(String("test.com"), topPrivatelyControlledDomain("com.test.com"));
-    EXPECT_EQ(String("test.com"), topPrivatelyControlledDomain("subdomain.test.com"));
-    EXPECT_EQ(String("com.com"), topPrivatelyControlledDomain("www.com.com"));
-    EXPECT_EQ(String("test.co.uk"), topPrivatelyControlledDomain("test.co.uk"));
-    EXPECT_EQ(String("test.co.uk"), topPrivatelyControlledDomain("subdomain.test.co.uk"));
-    EXPECT_EQ(String("bl.uk"), topPrivatelyControlledDomain("bl.uk"));
-    EXPECT_EQ(String("bl.uk"), topPrivatelyControlledDomain("subdomain.bl.uk"));
-    EXPECT_EQ(String("test.xn--zf0ao64a.tw"), topPrivatelyControlledDomain("test.xn--zf0ao64a.tw"));
-    EXPECT_EQ(String("test.xn--zf0ao64a.tw"), topPrivatelyControlledDomain("www.test.xn--zf0ao64a.tw"));
-    EXPECT_EQ(String("127.0.0.1"), topPrivatelyControlledDomain("127.0.0.1"));
-    EXPECT_EQ(String(), topPrivatelyControlledDomain("1"));
-    EXPECT_EQ(String(), topPrivatelyControlledDomain("com"));
-}
-
-}
-
-#endif
diff --git a/Tools/TestWebKitAPI/Tests/mac/RenderedImageFromDOMRange.mm b/Tools/TestWebKitAPI/Tests/mac/RenderedImageFromDOMRange.mm
deleted file mode 100644
index 5ad43bd..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/RenderedImageFromDOMRange.mm
+++ /dev/null
@@ -1,75 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "PlatformUtilities.h"
-#import <WebKit/WebDocumentPrivate.h>
-#import <WebKit/DOMPrivate.h>
-#import <wtf/RetainPtr.h>
-
-@interface RenderedImageFromDOMRangeFrameLoadDelegate : NSObject {
-}
-@end
-
-static bool didFinishLoad;
-
-@implementation RenderedImageFromDOMRangeFrameLoadDelegate
-
-- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
-{
-    didFinishLoad = true;
-}
-
-@end
-
-namespace TestWebKitAPI {
-
-TEST(WebKit1, RenderedImageFromDOMRange)
-{
-    RetainPtr<WebView> webView(AdoptNS, [[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-    RetainPtr<RenderedImageFromDOMRangeFrameLoadDelegate> frameLoadDelegate(AdoptNS, [RenderedImageFromDOMRangeFrameLoadDelegate new]);
-
-    webView.get().frameLoadDelegate = frameLoadDelegate.get();
-    [webView.get().mainFrame loadHTMLString:@"<div style=\"width: 100px;\">Lorem <span id=\"target\">ipsum dolor</span> sit amet</div>" baseURL:[NSURL URLWithString:@"about:blank"]];
-
-    Util::run(&didFinishLoad);
-
-    DOMDocument *document = webView.get().mainFrameDocument;
-    DOMRange *range = [document createRange];
-    DOMNode *target = [document getElementById:@"target"];
-    [range selectNode:target];
-    NSImage *actualImage = [range renderedImageForcingBlackText:YES];
-
-    [webView.get() setSelectedDOMRange:range affinity:NSSelectionAffinityDownstream];
-    id <WebDocumentView> documentView = webView.get().mainFrame.frameView.documentView;
-    NSImage *expectedImage = [(id <WebDocumentSelection>)documentView selectionImageForcingBlackText:YES];
-    EXPECT_TRUE([actualImage.TIFFRepresentation isEqual:expectedImage.TIFFRepresentation]);
-
-    [target.parentElement.style setProperty:@"-webkit-user-select" value:@"none" priority:nil];
-    NSImage *actualImageWithUserSelectNone = [range renderedImageForcingBlackText:YES];
-    EXPECT_TRUE([actualImageWithUserSelectNone.TIFFRepresentation isEqual:expectedImage.TIFFRepresentation]);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/SetAndUpdateCacheModel.mm b/Tools/TestWebKitAPI/Tests/mac/SetAndUpdateCacheModel.mm
deleted file mode 100644
index eed1f81..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/SetAndUpdateCacheModel.mm
+++ /dev/null
@@ -1,103 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include <wtf/RetainPtr.h>
-
-#import <WebKit/WebView.h>
-#import <WebKit/WebPreferences.h>
-
-@interface WebView (WebViewOtherInternal)
-+ (WebCacheModel)_cacheModel;
-@end
-
-namespace TestWebKitAPI {
-
-TEST(WebKit1, SetAndUpdateCacheModelInitialModel)
-{
-    EXPECT_EQ((int)WebCacheModelDocumentViewer, (int)[WebView _cacheModel]);
-
-    RetainPtr<WebView> webView(AdoptNS, [[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-
-    EXPECT_EQ((int)WebCacheModelDocumentBrowser, (int)[WebView _cacheModel]);
-}
-
-TEST(WebKit1, SetAndUpdateCacheModelStandardPreferenceChange)
-{
-    EXPECT_EQ((int)WebCacheModelDocumentViewer, (int)[WebView _cacheModel]);
-
-    WebPreferences *standardPreferences = [WebPreferences standardPreferences];
-    EXPECT_EQ((int)WebCacheModelDocumentBrowser, (int)[WebView _cacheModel]);
-
-    [standardPreferences setCacheModel:WebCacheModelPrimaryWebBrowser];
-    EXPECT_EQ((int)WebCacheModelPrimaryWebBrowser, (int)[WebView _cacheModel]);
-
-    [standardPreferences setCacheModel:WebCacheModelDocumentViewer];
-    EXPECT_EQ((int)WebCacheModelDocumentViewer, (int)[WebView _cacheModel]);
-}
-
-TEST(WebKit1, SetAndUpdateCacheModelPreferencesChangeMix)
-{
-    // On change, the cache model always take the highest value of any preference bound to a WebView.
-    EXPECT_EQ((int)WebCacheModelDocumentViewer, (int)[WebView _cacheModel]);
-
-    WebPreferences *standardPreferences = [WebPreferences standardPreferences];
-    RetainPtr<WebPreferences> customPreferences(AdoptNS, [[WebPreferences alloc] initWithIdentifier:@"SetAndUpdateCacheModelPreferencesChangeMix"]);
-
-    // 1) The customPreferences is not set on a view.
-    EXPECT_EQ((int)WebCacheModelDocumentBrowser, (int)[WebView _cacheModel]);
-
-    [standardPreferences setCacheModel:WebCacheModelPrimaryWebBrowser];
-    EXPECT_EQ((int)WebCacheModelPrimaryWebBrowser, (int)[WebView _cacheModel]);
-
-    [standardPreferences setCacheModel:WebCacheModelDocumentViewer];
-    EXPECT_EQ((int)WebCacheModelDocumentViewer, (int)[WebView _cacheModel]);
-    [customPreferences.get() setCacheModel:WebCacheModelPrimaryWebBrowser];
-    EXPECT_EQ((int)WebCacheModelPrimaryWebBrowser, (int)[WebView _cacheModel]);
-
-
-    // 2) The cache model should follow the highest value of cache model between the two preferences.
-    RetainPtr<WebView> webView(AdoptNS, [[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-    [webView.get() setPreferences:customPreferences.get()];
-    EXPECT_EQ((int)WebCacheModelPrimaryWebBrowser, (int)[WebView _cacheModel]);
-
-    [customPreferences.get() setCacheModel:WebCacheModelDocumentBrowser];
-    EXPECT_EQ((int)WebCacheModelDocumentBrowser, (int)[WebView _cacheModel]);
-
-    [standardPreferences setCacheModel:WebCacheModelPrimaryWebBrowser];
-    EXPECT_EQ((int)WebCacheModelPrimaryWebBrowser, (int)[WebView _cacheModel]);
-    [customPreferences.get() setCacheModel:WebCacheModelDocumentViewer];
-    EXPECT_EQ((int)WebCacheModelPrimaryWebBrowser, (int)[WebView _cacheModel]);
-
-    // 3) Resetting the view should fall back to standardPreferences.
-    [standardPreferences setCacheModel:WebCacheModelDocumentViewer];
-    [customPreferences.get() setCacheModel:WebCacheModelPrimaryWebBrowser];
-    EXPECT_EQ((int)WebCacheModelPrimaryWebBrowser, (int)[WebView _cacheModel]);
-
-    webView.clear();
-    EXPECT_EQ((int)WebCacheModelDocumentViewer, (int)[WebView _cacheModel]);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/SetDocumentURI.html b/Tools/TestWebKitAPI/Tests/mac/SetDocumentURI.html
deleted file mode 100644
index ad3714b..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/SetDocumentURI.html
+++ /dev/null
@@ -1,8 +0,0 @@
-<!doctype html>
-<html>
-  <body>
-    <p>This is a document to load so that the ObjC [document setDocumentURI:]
-       API can be tested.</p>
-    <a href="relativeURL.html" id="relative"></a>
-  </body>
-</html>
diff --git a/Tools/TestWebKitAPI/Tests/mac/SetDocumentURI.mm b/Tools/TestWebKitAPI/Tests/mac/SetDocumentURI.mm
deleted file mode 100644
index f077ed9..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/SetDocumentURI.mm
+++ /dev/null
@@ -1,121 +0,0 @@
-/*
- * Copyright (C) 2012 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <wtf/RetainPtr.h>
-
-#import <WebKit/DOM.h>
-#import <WebKit/WebViewPrivate.h>
-
-@interface SetDocumentURITest : NSObject {
-}
-@end
-
-static bool didFinishLoad;
-
-@implementation SetDocumentURITest
-
-- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
-{
-    didFinishLoad = true;
-}
-@end
-
-namespace TestWebKitAPI {
-
-TEST(WebKit1, SetDocumentURITestFile)
-{
-    RetainPtr<WebView> webView(AdoptNS, [[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-    RetainPtr<SetDocumentURITest> testController(AdoptNS, [SetDocumentURITest new]);
-    webView.get().frameLoadDelegate = testController.get();
-    [[webView.get() mainFrame] loadRequest:[NSURLRequest requestWithURL:[[NSBundle mainBundle] URLForResource:@"SetDocumentURI" withExtension:@"html" subdirectory:@"TestWebKitAPI.resources"]]];
-    Util::run(&didFinishLoad);
-    didFinishLoad = false;
-    DOMDocument *document = webView.get().mainFrameDocument;
-
-    [document setDocumentURI:@"file:///test"];
-    // documentURI set correctly.
-    EXPECT_WK_STREQ(@"file:///test", [document documentURI]);
-    // baseURI follows along.
-    EXPECT_WK_STREQ(@"file:///test", [document baseURI]);
-}
-
-TEST(WebKit1, SetDocumentURITestURL)
-{
-    RetainPtr<WebView> webView(AdoptNS, [[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-    RetainPtr<SetDocumentURITest> testController(AdoptNS, [SetDocumentURITest new]);
-    webView.get().frameLoadDelegate = testController.get();
-    [[webView.get() mainFrame] loadRequest:[NSURLRequest requestWithURL:[[NSBundle mainBundle] URLForResource:@"SetDocumentURI" withExtension:@"html" subdirectory:@"TestWebKitAPI.resources"]]];
-    Util::run(&didFinishLoad);
-    didFinishLoad = false;
-    DOMDocument *document = webView.get().mainFrameDocument;
-
-    [document setDocumentURI:@"http://example.com/"];
-    // documentURI set correctly.
-    EXPECT_WK_STREQ(@"http://example.com/", [document documentURI]);
-    // baseURI follows along.
-    EXPECT_WK_STREQ(@"http://example.com/", [document baseURI]);
-    // Relative links too.
-    NSString *result = [webView.get() stringByEvaluatingJavaScriptFromString:@"document.getElementById('relative').href"];
-    EXPECT_WK_STREQ(@"http://example.com/relativeURL.html", result);
-}
-
-TEST(WebKit1, SetDocumentURITestString)
-{
-    RetainPtr<WebView> webView(AdoptNS, [[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-    RetainPtr<SetDocumentURITest> testController(AdoptNS, [SetDocumentURITest new]);
-    webView.get().frameLoadDelegate = testController.get();
-    [[webView.get() mainFrame] loadRequest:[NSURLRequest requestWithURL:[[NSBundle mainBundle] URLForResource:@"SetDocumentURI" withExtension:@"html" subdirectory:@"TestWebKitAPI.resources"]]];
-    Util::run(&didFinishLoad);
-    didFinishLoad = false;
-    DOMDocument *document = webView.get().mainFrameDocument;
-
-    [document setDocumentURI:@"A non-URL string."];
-    // documentURI accepts random strings.
-    EXPECT_WK_STREQ(@"A non-URL string.", [document documentURI]);
-    // baseURI is empty for non-URL strings.
-    EXPECT_WK_STREQ(@"", [document baseURI]);
-}
-
-TEST(WebKit1, SetDocumentURITestNull)
-{
-    RetainPtr<WebView> webView(AdoptNS, [[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-    RetainPtr<SetDocumentURITest> testController(AdoptNS, [SetDocumentURITest new]);
-    webView.get().frameLoadDelegate = testController.get();
-    [[webView.get() mainFrame] loadRequest:[NSURLRequest requestWithURL:[[NSBundle mainBundle] URLForResource:@"SetDocumentURI" withExtension:@"html" subdirectory:@"TestWebKitAPI.resources"]]];
-    Util::run(&didFinishLoad);
-    didFinishLoad = false;
-    DOMDocument *document = webView.get().mainFrameDocument;
-
-    [document setDocumentURI:nil];
-    // documenturi is empty.
-    EXPECT_WK_STREQ(@"", [document documentURI]);
-    // baseURI is null as well.
-    EXPECT_WK_STREQ(@"", [document baseURI]);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/SimplifyMarkup.mm b/Tools/TestWebKitAPI/Tests/mac/SimplifyMarkup.mm
deleted file mode 100644
index 70ec47d..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/SimplifyMarkup.mm
+++ /dev/null
@@ -1,111 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-#include "PlatformWebView.h"
-#include <wtf/RetainPtr.h>
-
-#import <WebKit/DOM.h>
-#import <WebKit/WebViewPrivate.h>
-
-@interface SimplifyMarkupTest : NSObject {
-}
-@end
-
-static bool didFinishLoad;
-
-@implementation SimplifyMarkupTest
-
-- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
-{
-    didFinishLoad = true;
-}
-@end
-
-namespace TestWebKitAPI {
-
-TEST(WebKit1, SimplifyMarkupTest)
-{
-    RetainPtr<WebView> webView1(AdoptNS, [[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-    RetainPtr<WebView> webView2(AdoptNS, [[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-    RetainPtr<SimplifyMarkupTest> testController(AdoptNS, [SimplifyMarkupTest new]);
-    
-    webView1.get().frameLoadDelegate = testController.get();
-    [[webView1.get() mainFrame] loadRequest:[NSURLRequest requestWithURL:[[NSBundle mainBundle] URLForResource:@"verboseMarkup" withExtension:@"html" subdirectory:@"TestWebKitAPI.resources"]]];
-    
-    Util::run(&didFinishLoad);
-    didFinishLoad = false;
- 
-    webView2.get().frameLoadDelegate = testController.get();
-    [[webView2.get() mainFrame] loadRequest:[NSURLRequest requestWithURL:[[NSBundle mainBundle] URLForResource:@"verboseMarkup" withExtension:@"html" subdirectory:@"TestWebKitAPI.resources"]]];
-    
-    Util::run(&didFinishLoad);
-    didFinishLoad = false;
-
-    DOMDocument *document1 = webView1.get().mainFrameDocument;
-    NSString* markupBefore = [[document1 body] innerHTML];
-    DOMDocument *document2 = webView2.get().mainFrameDocument;
-    
-    // If start is after end, nothing is done
-    DOMNode *start = [document1 getElementById:@"test2"];
-    DOMNode *end = [document1 getElementById:@"test1"];
-
-    [webView1.get() _simplifyMarkup:[document1 body] endNode:end];
-    NSString* markupAfter = [[document1 body] innerHTML];
-
-    EXPECT_WK_STREQ(markupBefore, markupAfter);
-    EXPECT_EQ([markupBefore length], [markupAfter length]);
-
-    // If the two nodes are not in the same webView, nothing is done.
-    start = [document1 getElementById:@"test1"];
-    end = [document2 getElementById:@"test2"];
-    [webView1.get() _simplifyMarkup:start endNode:end];
-    markupAfter = [[document1 body] innerHTML];
-    
-    EXPECT_WK_STREQ(markupBefore, markupAfter);
-    EXPECT_EQ([markupBefore length], [markupAfter length]);
-
-    // If the two nodes are not in the same document, nothing is done.
-    DOMHTMLFrameElement* frame = (DOMHTMLFrameElement *)[document1 getElementById:@"test3"];
-    end = [[frame contentDocument] firstChild];
-    
-    [webView1.get() _simplifyMarkup:start endNode:end];
-    markupAfter = [[document1 body] innerHTML];
-    
-    EXPECT_WK_STREQ(markupBefore, markupAfter);
-    EXPECT_EQ([markupBefore length], [markupAfter length]);
-
-    // If the nodes are in the same webView, same document and in the right order,
-    // we should have a simplified markup.
-    [webView1.get() _simplifyMarkup:[document1 body] endNode:nil];
-    markupAfter = [[document1 body] innerHTML];
-    // We only verify that the markup has changed and that it is less verbose
-    // then the original version.
-    // The accuracy of the operation is tested by the DRT tests already.
-    EXPECT_GT([markupBefore length], [markupAfter length]);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/StringByEvaluatingJavaScriptFromString.mm b/Tools/TestWebKitAPI/Tests/mac/StringByEvaluatingJavaScriptFromString.mm
deleted file mode 100644
index 4e3e3ec..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/StringByEvaluatingJavaScriptFromString.mm
+++ /dev/null
@@ -1,71 +0,0 @@
-/*
- * Copyright (C) 2007, 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "PlatformUtilities.h"
-#import <wtf/RetainPtr.h>
-
-namespace TestWebKitAPI {
-
-TEST(WebKit1, StringByEvaluatingJavaScriptFromString)
-{
-    // maps expected result <= JavaScript expression
-    RetainPtr<NSDictionary> expressions(AdoptNS, [[NSDictionary alloc] initWithObjectsAndKeys:
-        @"0", @"0",
-        @"0", @"'0'",
-        @"", @"",
-        @"", @"''",
-        @"", @"new String()",
-        @"", @"new String('0')",
-        @"", @"throw 1",
-        @"", @"{ }",
-        @"", @"[ ]",
-        @"", @"//",
-        @"", @"a.b.c",
-        @"", @"(function() { throw 'error'; })()",
-        @"", @"null",
-        @"", @"undefined",
-        @"true", @"true",
-        @"false", @"false",
-        @"", @"alert('Should not be result')",
-        nil
-    ]);
-
-    RetainPtr<WebView> webView (AdoptNS, [[WebView alloc] initWithFrame:NSZeroRect frameName:@"" groupName:@""]);
-
-    // Test a nil string
-    NSString *result = [webView.get() stringByEvaluatingJavaScriptFromString:nil];
-    EXPECT_WK_STREQ(@"", result);
-
-    for (id expression in expressions.get()) {
-        NSString *expectedResult = [expressions.get() objectForKey:expression];
-        NSString *result = [webView.get() stringByEvaluatingJavaScriptFromString:expression];
-        EXPECT_WK_STREQ(expectedResult, result);
-    }
-
-    [webView.get() close];
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/SubresourceErrorCrash.mm b/Tools/TestWebKitAPI/Tests/mac/SubresourceErrorCrash.mm
deleted file mode 100644
index 870a489..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/SubresourceErrorCrash.mm
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-namespace TestWebKitAPI {
-
-TEST(WebKit1, SubresourceErrorCrash)
-{
-    WebView *webView = [[WebView alloc] initWithFrame:NSZeroRect frameName:@"" groupName:@""];
-    [webView.mainFrame loadHTMLString:@"<link rel=stylesheet href='x-error:error'>" baseURL:nil];
-    [webView release];
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/TypingStyleCrash.mm b/Tools/TestWebKitAPI/Tests/mac/TypingStyleCrash.mm
deleted file mode 100644
index a23623b..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/TypingStyleCrash.mm
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-namespace TestWebKitAPI {
-
-TEST(WebKit1, TypingStyleCrash)
-{
-    WebView *webView = [[WebView alloc] init];
-    [webView typingStyle];
-    [webView release];
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/WebViewCanPasteURL.mm b/Tools/TestWebKitAPI/Tests/mac/WebViewCanPasteURL.mm
deleted file mode 100644
index d4bc83b..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/WebViewCanPasteURL.mm
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "PlatformUtilities.h"
-#import "WTFStringUtilities.h"
-
-#import <WebKit/WebViewPrivate.h>
-#import <WebKit/DOM.h>
-
-namespace TestWebKitAPI {
-
-TEST(WebKit1, WebViewCanPasteURL)
-{
-    WebView *webView = [[WebView alloc] initWithFrame:NSZeroRect frameName:nil groupName:nil];
-    [webView setEditable:YES];
-
-    [[NSPasteboard generalPasteboard] declareTypes:[NSArray arrayWithObject:NSURLPboardType] owner:nil];
-    [[NSURL URLWithString:@"http://www.webkit.org/"] writeToPasteboard:[NSPasteboard generalPasteboard]];
-    [webView paste:nil];
-
-    DOMDocument *document = [[webView mainFrame] DOMDocument];
-    DOMElement *documentElement = [document documentElement];
-    DOMHTMLAnchorElement *anchor = (DOMHTMLAnchorElement *)[documentElement querySelector:@"a"];
-    NSString *text = [anchor href];
-    
-    EXPECT_EQ(String("http://www.webkit.org/"), String(text));
-    
-    [webView release];
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/WebViewCanPasteZeroPng.mm b/Tools/TestWebKitAPI/Tests/mac/WebViewCanPasteZeroPng.mm
deleted file mode 100644
index 5049fb3..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/WebViewCanPasteZeroPng.mm
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "PlatformUtilities.h"
-#import "WTFStringUtilities.h"
-
-#import <WebKit/WebViewPrivate.h>
-#import <WebKit/DOM.h>
-
-namespace TestWebKitAPI {
-
-TEST(WebKit1, WebViewCanPasteZeroPng)
-{
-    WebView *webView = [[WebView alloc] initWithFrame:NSZeroRect frameName:nil groupName:nil];
-    [webView setEditable:YES];
-    
-    //pasting a 0x0 image as pdf board type. Referring to <rdar://problem/11141920>
-    [[NSPasteboard generalPasteboard] declareTypes:[NSArray arrayWithObject:NSPDFPboardType] owner:nil];
-    [[[NSBundle mainBundle] URLForResource:@"0" withExtension:@"png" subdirectory:@"TestWebKitAPI.resources"] writeToPasteboard:[NSPasteboard generalPasteboard]];
-    [webView paste:nil];
-    
-    [webView release];
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/WebViewDidCreateJavaScriptContext.mm b/Tools/TestWebKitAPI/Tests/mac/WebViewDidCreateJavaScriptContext.mm
deleted file mode 100644
index 39504dd..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/WebViewDidCreateJavaScriptContext.mm
+++ /dev/null
@@ -1,287 +0,0 @@
-/*
- * Copyright (C) 2013 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "PlatformUtilities.h"
-#import <JavaScriptCore/JSExport.h>
-#import <JavaScriptCore/JSContext.h>
-#import <WebKit/WebFrameLoadDelegatePrivate.h>
-#import <wtf/RetainPtr.h>
-
-#if JSC_OBJC_API_ENABLED
-
-@class MyConsole;
-
-static bool didFinishLoad = false;
-static bool didCompleteTestSuccessfully = false;
-static bool didCallWindowCallback = false;
-static bool didFindMyCustomProperty = false;
-static bool didInsertMyCustomProperty = true;
-
-@protocol MyConsole<JSExport>
-- (void)log:(NSString *)s;
-- (void)printHelloWorld;
-- (int)add:(int)a to:(int)b;
-@end
-
-@interface MyConsole : NSObject<MyConsole>
-@end
-
-@implementation MyConsole
-- (void)log:(NSString *)s
-{
-    NSLog(@"%@", s);
-}
-
-- (void)printHelloWorld
-{
-    NSLog(@"Hello, World!");
-}
-
-- (int)add:(int)a to:(int)b
-{
-    return a + b;
-}
-@end
-
-@interface DidCreateJavaScriptContextFrameLoadDelegate : NSObject
-@end
-
-@implementation DidCreateJavaScriptContextFrameLoadDelegate
-
-- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
-{
-    didFinishLoad = true;
-}
-
-- (void)webView:(WebView *)webView didCreateJavaScriptContext:(JSContext *)context forFrame:(WebFrame *)frame
-{
-    MyConsole *myConsole = [[MyConsole alloc] init];
-    context[@"myConsole"] = myConsole;
-    context.exceptionHandler = nil;
-    [myConsole release];
-
-    context[@"windowCallback"] = ^(JSValue *thisObject){
-        didCallWindowCallback = true;
-    };
-
-    context[@"didCompleteTestSuccessfully"] = ^{
-        didCompleteTestSuccessfully = true;
-    };
-
-    context[@"callMeBack"] = ^(JSValue *functionValue) {
-        [functionValue callWithArguments:[NSArray array]];
-    };
-
-    context[@"checkForMyCustomProperty"] = ^(JSValue *element) {
-        if ([element hasProperty:@"myCustomProperty"] && [[element valueForProperty:@"myCustomProperty"] toInt32] == 42)
-            didFindMyCustomProperty = true;
-        else
-            NSLog(@"ERROR: Did not find myCustomProperty.");
-    };
-
-    context[@"insertMyCustomProperty"] = ^(JSValue *element) {
-        JSValue *fortyTwo = [JSValue valueWithInt32:42 inContext:[JSContext currentContext]];
-        [element setValue:fortyTwo forProperty:@"myCustomProperty"];
-        didInsertMyCustomProperty = true;
-    };
-}
-
-@end
-
-namespace TestWebKitAPI {
-
-TEST(WebKit1, DidCreateJavaScriptContextSanity1)
-{
-    didFinishLoad = false;
-    @autoreleasepool {
-        RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-        RetainPtr<DidCreateJavaScriptContextFrameLoadDelegate> frameLoadDelegate = adoptNS([[DidCreateJavaScriptContextFrameLoadDelegate alloc] init]);
-
-        webView.get().frameLoadDelegate = frameLoadDelegate.get();
-        WebFrame *mainFrame = webView.get().mainFrame;
-
-        NSString *bodyString = 
-            @"<body> \
-                <script> \
-                    myConsole.printHelloWorld(); \
-                    myConsole.log(\"Loaded custom stuff.\"); \
-                    myConsole.log(myConsole.addTo(40, 2)); \
-                    didCompleteTestSuccessfully(); \
-                </script> \
-            </body>";
-        NSURL *aboutBlankURL = [NSURL URLWithString:@"about:blank"];
-
-        [mainFrame loadHTMLString:bodyString baseURL:aboutBlankURL];
-        Util::run(&didCompleteTestSuccessfully);
-    }
-}
-
-TEST(WebKit1, DidCreateJavaScriptContextSanity2)
-{
-    didCallWindowCallback = false;
-    @autoreleasepool {
-        RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-        RetainPtr<DidCreateJavaScriptContextFrameLoadDelegate> frameLoadDelegate = adoptNS([[DidCreateJavaScriptContextFrameLoadDelegate alloc] init]);
-
-        webView.get().frameLoadDelegate = frameLoadDelegate.get();
-        WebFrame *mainFrame = webView.get().mainFrame;
-
-        NSString *bodyString = 
-            @"<body> \
-                <script> \
-                    setTimeout(windowCallback, 100); \
-                </script> \
-            </body>";
-        NSURL *aboutBlankURL = [NSURL URLWithString:@"about:blank"];
-
-        [mainFrame loadHTMLString:bodyString baseURL:aboutBlankURL];
-        Util::run(&didCallWindowCallback);
-    }
-}
-
-TEST(WebKit1, DidCreateJavaScriptContextCallJSFunctionFromObjCCallbackTest)
-{
-    @autoreleasepool {
-        RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-        RetainPtr<DidCreateJavaScriptContextFrameLoadDelegate> frameLoadDelegate = adoptNS([[DidCreateJavaScriptContextFrameLoadDelegate alloc] init]);
-
-        webView.get().frameLoadDelegate = frameLoadDelegate.get();
-        WebFrame *mainFrame = webView.get().mainFrame;
-
-        NSString *bodyString = 
-            @"<body> \
-                <script> \
-                    callMeBack(function() { \
-                        didCompleteTestSuccessfully(); \
-                    }); \
-                </script> \
-            </body>";
-        NSURL *aboutBlankURL = [NSURL URLWithString:@"about:blank"];
-
-        [mainFrame loadHTMLString:bodyString baseURL:aboutBlankURL];
-        Util::run(&didCompleteTestSuccessfully);
-    }
-}
-
-TEST(WebKit1, DidCreateJavaScriptContextAddCustomPropertiesFromJSTest)
-{
-    didFindMyCustomProperty = false;
-    @autoreleasepool {
-        RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-        RetainPtr<DidCreateJavaScriptContextFrameLoadDelegate> frameLoadDelegate = adoptNS([[DidCreateJavaScriptContextFrameLoadDelegate alloc] init]);
-
-        webView.get().frameLoadDelegate = frameLoadDelegate.get();
-        WebFrame *mainFrame = webView.get().mainFrame;
-
-        NSString *bodyString = 
-        @"<body> \
-            <div id=\"test-div\"></div> \
-            <script> \
-                var testDiv = document.getElementById(\"test-div\"); \
-                testDiv.myCustomProperty = 42; \
-                checkForMyCustomProperty(testDiv); \
-            </script> \
-        </body>";
-        NSURL *aboutBlankURL = [NSURL URLWithString:@"about:blank"];
-
-        [mainFrame loadHTMLString:bodyString baseURL:aboutBlankURL];
-        Util::run(&didFindMyCustomProperty);
-    }
-}
-
-TEST(WebKit1, DidCreateJavaScriptContextAddCustomPropertiesFromObjCTest)
-{
-    didFindMyCustomProperty = false;
-    @autoreleasepool {
-        RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-        RetainPtr<DidCreateJavaScriptContextFrameLoadDelegate> frameLoadDelegate = adoptNS([[DidCreateJavaScriptContextFrameLoadDelegate alloc] init]);
-
-        webView.get().frameLoadDelegate = frameLoadDelegate.get();
-        WebFrame *mainFrame = webView.get().mainFrame;
-
-        NSString *bodyString = 
-            @"<body> \
-                <div id=\"test-div\"></div> \
-                <script> \
-                    var testDiv = document.getElementById(\"test-div\"); \
-                    insertMyCustomProperty(testDiv); \
-                    if (testDiv.myCustomProperty === 42) { \
-                        checkForMyCustomProperty(testDiv); \
-                    } \
-                </script> \
-            </body>";
-        NSURL *aboutBlankURL = [NSURL URLWithString:@"about:blank"];
-
-        [mainFrame loadHTMLString:bodyString baseURL:aboutBlankURL];
-        Util::run(&didFindMyCustomProperty);
-    }
-}
-
-TEST(WebKit1, DidCreateJavaScriptContextBackForwardCacheTest)
-{
-    didInsertMyCustomProperty = false;
-    didFindMyCustomProperty = false;
-    didCompleteTestSuccessfully = false;
-    @autoreleasepool {
-        RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-        RetainPtr<DidCreateJavaScriptContextFrameLoadDelegate> frameLoadDelegate = adoptNS([[DidCreateJavaScriptContextFrameLoadDelegate alloc] init]);
-
-        webView.get().frameLoadDelegate = frameLoadDelegate.get();
-        WebFrame *mainFrame = webView.get().mainFrame;
-
-        NSURL *url1 = [[NSBundle mainBundle] URLForResource:@"JSContextBackForwardCache1" 
-                                              withExtension:@"html" 
-                                               subdirectory:@"TestWebKitAPI.resources"];
-        [mainFrame loadRequest:[NSURLRequest requestWithURL:url1]];
-        Util::run(&didInsertMyCustomProperty);
-
-        NSURL *url2 = [[NSBundle mainBundle] URLForResource:@"JSContextBackForwardCache2" 
-                                              withExtension:@"html" 
-                                               subdirectory:@"TestWebKitAPI.resources"];
-        [mainFrame loadRequest:[NSURLRequest requestWithURL:url2]];
-        Util::run(&didCompleteTestSuccessfully);
-
-        didCompleteTestSuccessfully = false;
-        [[mainFrame javaScriptContext] evaluateScript:
-            @"var testDiv = document.getElementById(\"test-div\"); \
-            if (!testDiv.myCustomProperty) { \
-                didCompleteTestSuccessfully(); \
-            }"];
-        EXPECT_TRUE(didCompleteTestSuccessfully);
-
-        if ([webView.get() goBack]) {
-            [[mainFrame javaScriptContext] evaluateScript:
-                @"var testDiv = document.getElementById(\"test-div\"); \
-                checkForMyCustomProperty(testDiv);"];
-            EXPECT_TRUE(didFindMyCustomProperty);
-        } else
-            EXPECT_TRUE(false);
-    }
-}
-
-} // namespace TestWebKitAPI
-
-#endif // ENABLE(JSC_OBJC_API)
diff --git a/Tools/TestWebKitAPI/Tests/mac/WebViewDidRemoveFrameFromHierarchy.mm b/Tools/TestWebKitAPI/Tests/mac/WebViewDidRemoveFrameFromHierarchy.mm
deleted file mode 100644
index fbe8af5..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/WebViewDidRemoveFrameFromHierarchy.mm
+++ /dev/null
@@ -1,83 +0,0 @@
-/*
- * Copyright (C) 2013 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "PlatformUtilities.h"
-#import <WebKit/WebFrameLoadDelegatePrivate.h>
-#import <wtf/RetainPtr.h>
-
-@interface DidRemoveFrameFromHierarchyFrameLoadDelegate : NSObject
-@end
-
-static bool didFinishLoad;
-static bool didRemoveFrame;
-
-@implementation DidRemoveFrameFromHierarchyFrameLoadDelegate
-
-- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
-{
-    didFinishLoad = true;
-}
-
-- (void)webView:(WebView *)sender didRemoveFrameFromHierarchy:(WebFrame *)frame
-{
-    didRemoveFrame = true;
-}
-
-@end
-
-namespace TestWebKitAPI {
-
-TEST(WebKit1, DidRemoveFrameFromHierarchy)
-{
-    RetainPtr<WebView> webView = adoptNS([[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-    RetainPtr<DidRemoveFrameFromHierarchyFrameLoadDelegate> frameLoadDelegate = adoptNS([[DidRemoveFrameFromHierarchyFrameLoadDelegate alloc] init]);
-
-    webView.get().frameLoadDelegate = frameLoadDelegate.get();
-    WebFrame *mainFrame = webView.get().mainFrame;
-
-    NSString *bodyWithIFrameString = @"<body><iframe id='iframe'></iframe></body>";
-    NSURL *aboutBlankURL = [NSURL URLWithString:@"about:blank"];
-
-    [mainFrame loadHTMLString:bodyWithIFrameString baseURL:aboutBlankURL];
-    Util::run(&didFinishLoad);
-    
-    EXPECT_FALSE(didRemoveFrame);
-    [webView.get() stringByEvaluatingJavaScriptFromString:@"document.body.removeChild(document.getElementById('iframe'))"];
-    EXPECT_TRUE(didRemoveFrame);
-
-    didFinishLoad = false;
-    didRemoveFrame = false;
-
-    [mainFrame loadHTMLString:bodyWithIFrameString baseURL:aboutBlankURL];
-    Util::run(&didFinishLoad);
-
-    // The delegate method is not called when the frame is removed due to navigation in an ancestor frame.
-    EXPECT_FALSE(didRemoveFrame);
-    [mainFrame loadHTMLString:@"<body></body>" baseURL:aboutBlankURL];
-    EXPECT_FALSE(didRemoveFrame);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/WindowlessWebViewWithMedia.html b/Tools/TestWebKitAPI/Tests/mac/WindowlessWebViewWithMedia.html
deleted file mode 100644
index db064fb..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/WindowlessWebViewWithMedia.html
+++ /dev/null
@@ -1,13 +0,0 @@
-<!DOCTYPE html>
-<html>
-<body>
-    We want to make sure the page sends its onload event even if it has media in a windowless WebView.
-    <audio src="invalid.mp3"></audio>
-    <script>
-    var didTriggerLoad = false;
-    window.addEventListener('load', function(event) {
-        didTriggerLoad = true;
-    }, false);
-    </script>
-</body>
-</html>
diff --git a/Tools/TestWebKitAPI/Tests/mac/WindowlessWebViewWithMedia.mm b/Tools/TestWebKitAPI/Tests/mac/WindowlessWebViewWithMedia.mm
deleted file mode 100644
index bf593e6..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/WindowlessWebViewWithMedia.mm
+++ /dev/null
@@ -1,86 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "JavaScriptTest.h"
-#include "PlatformUtilities.h"
-#include <wtf/RetainPtr.h>
-
-
-static bool didFinishLoad;
-
-@interface WindowlessWebViewWithMediaFrameLoadDelegate : NSObject
-@end
-
-@implementation WindowlessWebViewWithMediaFrameLoadDelegate
-
-- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
-{
-    didFinishLoad = true;
-}
-
-@end
-
-
-namespace TestWebKitAPI {
-
-static void spinLoop(NSTimeInterval timeout, BOOL (^block)())
-{
-    if (timeout <= 0)
-        return;
-
-    NSTimeInterval end = [[NSDate date] timeIntervalSinceReferenceDate] + timeout;
-    NSDate *endDate = [NSDate dateWithTimeIntervalSinceReferenceDate:end];
-
-    while (!block()) {
-        [[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:endDate];
-        if ([[NSDate date] timeIntervalSinceReferenceDate] > end)
-            break;
-    }
-}
-
-TEST(WebKit1, WindowlessWebViewWithMedia)
-{
-    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
-
-    RetainPtr<WebView> webView(AdoptNS, [[WebView alloc] initWithFrame:NSMakeRect(0, 0, 120, 200) frameName:nil groupName:nil]);
-    RetainPtr<WindowlessWebViewWithMediaFrameLoadDelegate> testController(AdoptNS, [WindowlessWebViewWithMediaFrameLoadDelegate new]);
-    webView.get().frameLoadDelegate = testController.get();
-    [[webView.get() mainFrame] loadRequest:[NSURLRequest requestWithURL:[[NSBundle mainBundle] URLForResource:@"WindowlessWebViewWithMedia" withExtension:@"html" subdirectory:@"TestWebKitAPI.resources"]]];
-
-    EXPECT_EQ(nil, [webView.get() window]);
-
-    Util::run(&didFinishLoad);    
-
-    spinLoop(0.25, ^{
-        return [[webView.get() stringByEvaluatingJavaScriptFromString:@"window.didTriggerLoad"] isEqualToString:@"true"];
-    });
-
-    EXPECT_JS_EQ(webView.get(), "window.didTriggerLoad", "true");
-
-    [pool drain];
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/Tests/mac/acceptsFirstMouse.html b/Tools/TestWebKitAPI/Tests/mac/acceptsFirstMouse.html
deleted file mode 100644
index 3de413a..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/acceptsFirstMouse.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<!DOCTYPE html>
-<html style="height: 200%;">
-<head>
-    <style>
-        img.selectable {
-            width: 100px;
-            height: 100px;
-            display: block;
-            background-color: gray;
-        }
-    </style>
-</head>
-<body style="margin: 0;">
-    <img class="selectable">
-    <img class="selectable" id="target">
-    <img class="selectable">
-    <script>
-        var target = document.getElementById("target");
-        getSelection().setBaseAndExtent(target, 0, target, 1);
-        scrollBy(0, 100);
-    </script>
-</body>
-</html>
diff --git a/Tools/TestWebKitAPI/Tests/mac/attributedStringCustomFont.html b/Tools/TestWebKitAPI/Tests/mac/attributedStringCustomFont.html
deleted file mode 100644
index 1e6b90a..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/attributedStringCustomFont.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<html>
-    <head>
-        <style>
-            @font-face {
-                font-family: customFont;
-                src: url(Ahem.ttf);
-            }
-        </style>
-    </head>
-    <body contenteditable style="font-family: customFont; font-size: 48px;">Lorem Ipsum
-        <script>
-            document.body.focus();
-        </script>
-    </body>
-</html>
diff --git a/Tools/TestWebKitAPI/Tests/mac/devicePixelRatio.html b/Tools/TestWebKitAPI/Tests/mac/devicePixelRatio.html
deleted file mode 100644
index f6acf86..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/devicePixelRatio.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<!DOCTYPE html>
-<style>
-    #detector { width: 5px; }
-    @media (-webkit-device-pixel-ratio:1) { #detector { width: 10px; } }
-    @media (-webkit-device-pixel-ratio:3) { #detector { width: 30px; } }
-    @media (-webkit-device-pixel-ratio:4) { #detector { width: 40px; } }
-</style>
-<script>
-    function devicePixelRatioFromStyle() {
-        var width = getComputedStyle(document.getElementById("detector")).width;
-        switch (width) {
-            case "10px":
-                return 1;
-            case "30px":
-                return 3;
-            case "40px":
-                return 4;
-            default:
-                return "unknown width: " + width;
-        }
-    }
-</script>
-<div id="detector"></div>
diff --git a/Tools/TestWebKitAPI/Tests/mac/verboseMarkup.html b/Tools/TestWebKitAPI/Tests/mac/verboseMarkup.html
deleted file mode 100644
index c8a2448..0000000
--- a/Tools/TestWebKitAPI/Tests/mac/verboseMarkup.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<html>
-    <body contenteditable="true">
-        <div>Hello</div>
-        <div id="test1"><b><i>Hello</i></b></div>
-        <div><b><i><span style="font-weight: normal"><b><i>Hello</i></b></span></i></b></div>
-        <div><div><div>Hello</div></div></div>
-        <div><b><div><i>Hello</i></div></b></div>
-        <div><div style="text-align: center;"><b>Hello</b></div></div>
-        <div id="test2"><b><i><span style="font-weight: normal"><b><i>hello</i></b></span></i></b></div><div><b><i><span style="font-weight: normal"><b><i>world</i></b></span></i></b></div>
-        <div><b><i><span style="font-weight: normal;"><b><i>hello1</i></b><b><i> hello2</i></b></span></i></b></div>
-        <div><i style="margin: 10px;"><b><i style="margin: 10px;">hello</i></b></i></div>
-        <div><b><i><span style="font-weight: normal"><b><i>Hello <!-- comment -->world</i></b></span></i></b></div>
-        <div><b><i><span style="font-weight: normal">plain text<b><i>bold italic text</i></b></span></i></b></div>
-        <iframe id="test3" src="data:text/html,
-            <div>This is another document.</div>
-            ">
-        </iframe>
-     </body>
-</html>
diff --git a/Tools/TestWebKitAPI/TestsController.cpp b/Tools/TestWebKitAPI/TestsController.cpp
deleted file mode 100644
index 29dcc71..0000000
--- a/Tools/TestWebKitAPI/TestsController.cpp
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "TestsController.h"
-
-#include <wtf/Threading.h>
-
-namespace TestWebKitAPI {
-
-TestsController& TestsController::shared()
-{
-    static TestsController& shared = *new TestsController;
-    return shared;
-}
-
-TestsController::TestsController()
-{
-    // FIXME: We currently initialize threading here to avoid assertion failures from
-    // the ThreadRestrictionVerifier - https://bugs.webkit.org/show_bug.cgi?id=66112
-    // We should make sure that all objects tested either initialize threading or inherit from
-    // ThreadSafeRefCounted so that we don't have to initialize threading at all here.
-    WTF::initializeThreading();
-}
-
-bool TestsController::run(int argc, char** argv)
-{
-    ::testing::InitGoogleTest(&argc, argv);
-    return !RUN_ALL_TESTS();
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/TestsController.h b/Tools/TestWebKitAPI/TestsController.h
deleted file mode 100644
index c73e3ac..0000000
--- a/Tools/TestWebKitAPI/TestsController.h
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef TestsController_h
-#define TestsController_h
-
-namespace TestWebKitAPI {
-
-class TestsController {
-public:
-    static TestsController& shared();
-
-    bool run(int argc, char** argv);
-
-private:
-    TestsController();
-    ~TestsController();
-};
-
-} // namespace TestWebKitAPI
-
-#endif // TestsController_h
diff --git a/Tools/TestWebKitAPI/WTFStringUtilities.h b/Tools/TestWebKitAPI/WTFStringUtilities.h
deleted file mode 100644
index 29a8767..0000000
--- a/Tools/TestWebKitAPI/WTFStringUtilities.h
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *     * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef WTFStringUtilities_h
-#define WTFStringUtilities_h
-
-#include <wtf/Assertions.h>
-#include <wtf/text/CString.h>
-#include <wtf/text/StringBuilder.h>
-#include <wtf/text/WTFString.h>
-
-namespace WTF {
-
-inline std::ostream& operator<<(std::ostream& os, const String& string)
-{
-    return os << string.utf8().data();
-}
-
-}
-
-#endif // WTFStringUtilities_h
diff --git a/Tools/TestWebKitAPI/config.h b/Tools/TestWebKitAPI/config.h
deleted file mode 100644
index d4714cd..0000000
--- a/Tools/TestWebKitAPI/config.h
+++ /dev/null
@@ -1,94 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#if defined(HAVE_CONFIG_H) && HAVE_CONFIG_H
-#ifdef BUILDING_WITH_CMAKE
-#include "cmakeconfig.h"
-#else
-#include "autotoolsconfig.h"
-#endif
-#endif
-
-#include <wtf/Platform.h>
-#include <wtf/ExportMacros.h>
-#if USE(JSC)
-#include <runtime/JSExportMacros.h>
-#endif
-
-#if defined(__APPLE__) && __APPLE__
-
-#ifdef __OBJC__
-#if PLATFORM(IOS)
-#import <Foundation/Foundation.h>
-#else
-#import <Cocoa/Cocoa.h>
-#endif
-#endif
-
-#elif defined(WIN32) || defined(_WIN32)
-
-#ifndef NOMINMAX
-#define NOMINMAX
-#endif
-
-#if PLATFORM(WIN_CAIRO)
-#undef WTF_USE_CG
-#define WTF_USE_CAIRO 1
-#define WTF_USE_CURL 1
-#ifndef _WINSOCKAPI_
-#define _WINSOCKAPI_ // Prevent inclusion of winsock.h in windows.h
-#endif
-#elif !OS(WINCE)
-#define WTF_USE_CG 1
-#undef WTF_USE_CAIRO
-#undef WTF_USE_CURL
-#endif
-
-#endif
-
-#include <stdint.h>
-
-#if !PLATFORM(IOS) && ((!PLATFORM(CHROMIUM) && !PLATFORM(WIN)) || (PLATFORM(GTK) && defined(BUILDING_WEBKIT2__)))
-#include <WebKit2/WebKit2_C.h>
-#endif
-
-#ifdef __clang__
-// Work around the less strict coding standards of the gtest framework.
-#pragma clang diagnostic push
-#pragma clang diagnostic ignored "-Wunused-variable"
-#endif
-
-#ifdef __cplusplus
-#include <gtest/gtest.h>
-#endif
-
-#ifdef __clang__
-// Finish working around the less strict coding standards of the gtest framework.
-#pragma clang diagnostic pop
-#endif
-
-#if PLATFORM(MAC) && defined(__OBJC__)
-#import <WebKit/WebKit.h>
-#endif
diff --git a/Tools/TestWebKitAPI/efl/InjectedBundleController.cpp b/Tools/TestWebKitAPI/efl/InjectedBundleController.cpp
deleted file mode 100644
index c2442bd..0000000
--- a/Tools/TestWebKitAPI/efl/InjectedBundleController.cpp
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Copyright (C) 2012 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleController.h"
-
-#include <wtf/Assertions.h>
-
-namespace TestWebKitAPI {
-
-void InjectedBundleController::platformInitialize()
-{
-    WTFInstallReportBacktraceOnCrashHook();
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/efl/PlatformUtilities.cpp b/Tools/TestWebKitAPI/efl/PlatformUtilities.cpp
deleted file mode 100644
index 65c54e1..0000000
--- a/Tools/TestWebKitAPI/efl/PlatformUtilities.cpp
+++ /dev/null
@@ -1,74 +0,0 @@
-/*
- * Copyright (C) 2012 Intel Corporation. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-
-#include <Ecore.h>
-#include <stdio.h>
-#include <unistd.h>
-
-namespace TestWebKitAPI {
-
-namespace Util {
-
-void run(bool* done)
-{
-    while (!*done)
-        ecore_main_loop_iterate();
-}
-
-void sleep(double seconds)
-{
-    usleep(seconds * 1000000);
-}
-
-WKURLRef createURLForResource(const char* resource, const char* extension)
-{
-    char url[PATH_MAX];
-
-    snprintf(url, sizeof(url), "file://%s/%s.%s", TEST_WEBKIT2_RESOURCES_DIR, resource, extension);
-
-    return WKURLCreateWithUTF8CString(url);
-}
-
-WKStringRef createInjectedBundlePath()
-{
-    return WKStringCreateWithUTF8CString(TEST_INJECTED_BUNDLE_PATH);
-}
-
-WKURLRef URLForNonExistentResource()
-{
-    return WKURLCreateWithUTF8CString("file:///does-not-exist.html");
-}
-
-WKRetainPtr<WKStringRef> MIMETypeForWKURLResponse(WKURLResponseRef wkResponse)
-{
-    return adoptWK(WKURLResponseCopyMIMEType(wkResponse));
-}
-
-} // namespace Util
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/efl/PlatformWebView.cpp b/Tools/TestWebKitAPI/efl/PlatformWebView.cpp
deleted file mode 100644
index be29f0e..0000000
--- a/Tools/TestWebKitAPI/efl/PlatformWebView.cpp
+++ /dev/null
@@ -1,121 +0,0 @@
-/*
- * Copyright (C) 2012 Samsung Electronics
- * Copyright (C) 2012 Intel Corporation. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "ewk_view_private.h"
-#include "PlatformWebView.h"
-
-#include "EWebKit2.h"
-#include <WebKit2/WKAPICast.h>
-#include <WebKit2/WKRetainPtr.h>
-#include <Ecore_Evas.h>
-
-extern bool useX11Window;
-
-using namespace WebKit;
-
-namespace TestWebKitAPI {
-
-static Ecore_Evas* initEcoreEvas()
-{
-    if (!ecore_evas_init())
-        return 0;
-
-    const char* engine = 0;
-#if defined(WTF_USE_ACCELERATED_COMPOSITING) && defined(HAVE_ECORE_X)
-    engine = "opengl_x11";
-#endif
-    Ecore_Evas* ecoreEvas = ecore_evas_new(engine, 0, 0, 800, 600, 0);
-
-    ASSERT(ecoreEvas);
-
-    ecore_evas_show(ecoreEvas);
-
-    return ecoreEvas;
-}
-
-static void onWebProcessCrashed(void*, Evas_Object*, void* eventInfo)
-{
-    bool* handled = static_cast<bool*>(eventInfo);
-    *handled = true;
-}
-
-PlatformWebView::PlatformWebView(WKContextRef contextRef, WKPageGroupRef pageGroupRef)
-{
-    m_window = initEcoreEvas();
-
-    m_view = EWKViewCreate(contextRef, pageGroupRef, ecore_evas_get(m_window), /* smart */ 0);
-
-    WKRetainPtr<WKStringRef> wkTheme = adoptWK(WKStringCreateWithUTF8CString(THEME_DIR "/default.edj"));
-    WKViewSetThemePath(EWKViewGetWKView(m_view), wkTheme.get());
-
-    evas_object_smart_callback_add(m_view, "webprocess,crashed", onWebProcessCrashed, 0);
-    resizeTo(600, 800);
-}
-
-PlatformWebView::~PlatformWebView()
-{
-    evas_object_del(m_view);
-
-    ecore_evas_free(m_window);
-    ecore_evas_shutdown();
-}
-
-void PlatformWebView::resizeTo(unsigned width, unsigned height)
-{
-    evas_object_resize(m_view, width, height);
-}
-
-WKPageRef PlatformWebView::page() const
-{
-    return WKViewGetPage(EWKViewGetWKView(m_view));
-}
-
-void PlatformWebView::simulateSpacebarKeyPress()
-{
-    Evas* evas = evas_object_evas_get(m_view);
-    evas_object_focus_set(m_view, true);
-    evas_event_feed_key_down(evas, "space", "space", " ", 0, 0, 0);
-    evas_event_feed_key_up(evas, "space", "space", " ", 0, 1, 0);
-}
-
-void PlatformWebView::simulateMouseMove(unsigned x, unsigned y)
-{
-    Evas* evas = evas_object_evas_get(m_view);
-    evas_object_show(m_view);
-    evas_event_feed_mouse_move(evas, x, y, 0, 0);
-}
-
-void PlatformWebView::simulateRightClick(unsigned x, unsigned y)
-{
-    Evas* evas = evas_object_evas_get(m_view);
-    evas_object_show(m_view);
-    evas_event_feed_mouse_move(evas, x, y, 0, 0);
-    evas_event_feed_mouse_down(evas, 3, EVAS_BUTTON_NONE, 0, 0);
-    evas_event_feed_mouse_up(evas, 3, EVAS_BUTTON_NONE, 0, 0);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/efl/main.cpp b/Tools/TestWebKitAPI/efl/main.cpp
deleted file mode 100644
index c69ec45..0000000
--- a/Tools/TestWebKitAPI/efl/main.cpp
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * Copyright (C) 2012 Samsung Electronics
- * Copyright (C) 2012 Intel Corporation. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "TestsController.h"
-#include <Ecore.h>
-#include <Eina.h>
-#include <getopt.h>
-#include <wtf/Assertions.h>
-
-bool useX11Window = false;
-
-static bool checkForUseX11WindowArgument(int argc, char** argv)
-{
-    int hasUseX11Window = 0;
-
-    static const option options[] = {
-        {"useX11Window", no_argument, &hasUseX11Window, 1},
-        {0, 0, 0, 0}
-    };
-
-    while (getopt_long(argc, argv, "", options, 0) != -1) { }
-
-    return hasUseX11Window;
-}
-
-int main(int argc, char** argv)
-{
-    WTFInstallReportBacktraceOnCrashHook();
-
-    if (!eina_init())
-        return EXIT_FAILURE;
-
-    if (!ecore_init())
-        return EXIT_FAILURE;
-
-    useX11Window = checkForUseX11WindowArgument(argc, argv);
-
-    int returnCode = TestWebKitAPI::TestsController::shared().run(argc, argv) ? EXIT_SUCCESS : EXIT_FAILURE;
-
-    ecore_shutdown();
-    eina_shutdown();
-
-    return returnCode;
-}
diff --git a/Tools/TestWebKitAPI/gtk/InjectedBundleControllerGtk.cpp b/Tools/TestWebKitAPI/gtk/InjectedBundleControllerGtk.cpp
deleted file mode 100644
index 5d55002..0000000
--- a/Tools/TestWebKitAPI/gtk/InjectedBundleControllerGtk.cpp
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright (C) 2012 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleController.h"
-
-namespace TestWebKitAPI {
-
-void InjectedBundleController::platformInitialize()
-{
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/gtk/PlatformUtilitiesGtk.cpp b/Tools/TestWebKitAPI/gtk/PlatformUtilitiesGtk.cpp
deleted file mode 100644
index 6fd05f5..0000000
--- a/Tools/TestWebKitAPI/gtk/PlatformUtilitiesGtk.cpp
+++ /dev/null
@@ -1,96 +0,0 @@
-/*
- * Copyright (C) 2012 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-
-#include <gtk/gtk.h>
-#include <wtf/gobject/GOwnPtr.h>
-#include <wtf/gobject/GRefPtr.h>
-
-namespace TestWebKitAPI {
-namespace Util {
-
-static gboolean checkTestFinished(gpointer userData)
-{
-    bool* done = static_cast<bool*>(userData);
-
-    if (*done)
-        gtk_main_quit();
-
-    return !*done;
-}
-
-void run(bool* done)
-{
-    g_idle_add(checkTestFinished, done);
-    gtk_main();
-}
-
-void sleep(double seconds)
-{
-    g_usleep(seconds * 1000000);
-}
-
-static char* getFilenameFromEnvironmentVariableAsUTF8(const char* variableName)
-{
-    const char* value = g_getenv(variableName);
-    if (!value) {
-        g_printerr("%s environment variable not found\n", variableName);
-        exit(1);
-    }
-    gsize bytesWritten;
-    return g_filename_to_utf8(value, -1, 0, &bytesWritten, 0);
-}
-
-WKStringRef createInjectedBundlePath()
-{
-    GOwnPtr<char> injectedBundlePath(getFilenameFromEnvironmentVariableAsUTF8("TEST_WEBKIT_API_WEBKIT2_INJECTED_BUNDLE_PATH"));
-    GOwnPtr<char> injectedBundleFilename(g_build_filename(injectedBundlePath.get(), "libTestWebKitAPIInjectedBundle.la", NULL));
-    return WKStringCreateWithUTF8CString(injectedBundleFilename.get());
-}
-
-WKURLRef createURLForResource(const char* resource, const char* extension)
-{
-    GOwnPtr<char> testResourcesPath(getFilenameFromEnvironmentVariableAsUTF8("TEST_WEBKIT_API_WEBKIT2_RESOURCES_PATH"));
-    GOwnPtr<char> resourceBasename(g_strdup_printf("%s.%s", resource, extension));
-    GOwnPtr<char> resourceFilename(g_build_filename(testResourcesPath.get(), resourceBasename.get(), NULL));
-    GRefPtr<GFile> resourceFile = adoptGRef(g_file_new_for_path(resourceFilename.get()));
-    GOwnPtr<char> resourceURI(g_file_get_uri(resourceFile.get()));
-    return WKURLCreateWithUTF8CString(resourceURI.get());
-}
-
-WKURLRef URLForNonExistentResource()
-{
-    return WKURLCreateWithUTF8CString("file:///does-not-exist.html");
-}
-
-bool isKeyDown(WKNativeEventPtr event)
-{
-    return event->type == GDK_KEY_PRESS;
-}
-
-} // namespace Util
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/gtk/PlatformWebViewGtk.cpp b/Tools/TestWebKitAPI/gtk/PlatformWebViewGtk.cpp
deleted file mode 100644
index ba6fab0..0000000
--- a/Tools/TestWebKitAPI/gtk/PlatformWebViewGtk.cpp
+++ /dev/null
@@ -1,148 +0,0 @@
-/*
- * Copyright (C) 2012 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformWebView.h"
-
-#include <WebCore/GOwnPtrGtk.h>
-#include <gtk/gtk.h>
-#include <wtf/gobject/GOwnPtr.h>
-
-namespace TestWebKitAPI {
-
-PlatformWebView::PlatformWebView(WKContextRef contextRef, WKPageGroupRef pageGroupRef)
-{
-    m_window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
-    m_view = WKViewCreate(contextRef, pageGroupRef);
-    gtk_container_add(GTK_CONTAINER(m_window), GTK_WIDGET(m_view));
-    gtk_widget_show(GTK_WIDGET(m_view));
-    gtk_widget_show(m_window);
-}
-
-PlatformWebView::~PlatformWebView()
-{
-    gtk_widget_destroy(m_window);
-}
-
-WKPageRef PlatformWebView::page() const
-{
-    return WKViewGetPage(m_view);
-}
-
-void PlatformWebView::resizeTo(unsigned width, unsigned height)
-{
-    gtk_window_resize(GTK_WINDOW(m_window), width, height);
-}
-
-static void doKeyStroke(GtkWidget* viewWidget, unsigned int keyVal)
-{
-    GOwnPtr<GdkEvent> event(gdk_event_new(GDK_KEY_PRESS));
-    event->key.keyval = keyVal;
-    event->key.time = GDK_CURRENT_TIME;
-    event->key.state = 0;
-    event->key.window = gtk_widget_get_window(viewWidget);
-    g_object_ref(event->key.window);
-    gdk_event_set_device(event.get(), gdk_device_manager_get_client_pointer(gdk_display_get_device_manager(gtk_widget_get_display(viewWidget))));
-
-    // When synthesizing an event, an invalid hardware_keycode value can cause it to be badly processed by GTK+.
-    GOwnPtr<GdkKeymapKey> keys;
-    int keysCount;
-    if (gdk_keymap_get_entries_for_keyval(gdk_keymap_get_default(), keyVal, &keys.outPtr(), &keysCount))
-        event->key.hardware_keycode = keys.get()[0].keycode;
-
-    gtk_main_do_event(event.get());
-    event->key.type = GDK_KEY_RELEASE;
-    gtk_main_do_event(event.get());
-}
-
-void PlatformWebView::simulateSpacebarKeyPress()
-{
-    GtkWidget* viewWidget = GTK_WIDGET(m_view);
-    if (!gtk_widget_get_realized(viewWidget))
-        gtk_widget_show(m_window);
-    doKeyStroke(viewWidget, GDK_KEY_KP_Space);
-}
-
-void PlatformWebView::simulateAltKeyPress()
-{
-    GtkWidget* viewWidget = GTK_WIDGET(m_view);
-    if (!gtk_widget_get_realized(viewWidget))
-        gtk_widget_show(m_window);
-    doKeyStroke(viewWidget, GDK_KEY_Alt_L);
-}
-
-static void doMouseButtonEvent(GtkWidget* viewWidget, GdkEventType eventType, int x, int y, unsigned int button)
-{
-    GOwnPtr<GdkEvent> event(gdk_event_new(eventType));
-    event->button.x = x;
-    event->button.y = y;
-    event->button.button = button;
-    event->button.time = GDK_CURRENT_TIME;
-    event->button.axes = 0;
-    event->button.state = 0;
-    event->button.window = gtk_widget_get_window(viewWidget);
-    g_object_ref(event->button.window);
-    event->button.device = gdk_device_manager_get_client_pointer(gdk_display_get_device_manager(gtk_widget_get_display(viewWidget)));
-
-    int xRoot, yRoot;
-    gdk_window_get_root_coords(gtk_widget_get_window(viewWidget), x, y, &xRoot, &yRoot);
-    event->button.x_root = xRoot;
-    event->button.y_root = yRoot;
-    gtk_main_do_event(event.get());
-}
-
-void PlatformWebView::simulateRightClick(unsigned x, unsigned y)
-{
-    GtkWidget* viewWidget = GTK_WIDGET(m_view);
-    if (!gtk_widget_get_realized(viewWidget))
-        gtk_widget_show(m_window);
-    doMouseButtonEvent(viewWidget, GDK_BUTTON_PRESS, x, y, 3);
-    doMouseButtonEvent(viewWidget, GDK_BUTTON_RELEASE, x, y, 3);
-}
-
-void PlatformWebView::simulateMouseMove(unsigned x, unsigned y)
-{
-    GOwnPtr<GdkEvent> event(gdk_event_new(GDK_MOTION_NOTIFY));
-    event->motion.x = x;
-    event->motion.y = y;
-    event->motion.time = GDK_CURRENT_TIME;
-    event->motion.state = 0;
-    event->motion.axes = 0;
-
-    GtkWidget* viewWidget = GTK_WIDGET(m_view);
-    if (!gtk_widget_get_realized(viewWidget))
-        gtk_widget_show(m_window);
-    event->motion.window = gtk_widget_get_window(viewWidget);
-    g_object_ref(event->motion.window);
-    event->motion.device = gdk_device_manager_get_client_pointer(gdk_display_get_device_manager(gtk_widget_get_display(viewWidget)));
-
-    int xRoot, yRoot;
-    gdk_window_get_root_coords(gtk_widget_get_window(viewWidget), x, y, &xRoot, &yRoot);
-    event->motion.x_root = xRoot;
-    event->motion.y_root = yRoot;
-    gtk_main_do_event(event.get());
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/gtk/main.cpp b/Tools/TestWebKitAPI/gtk/main.cpp
deleted file mode 100644
index 1b7fef6..0000000
--- a/Tools/TestWebKitAPI/gtk/main.cpp
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * Copyright (C) 2012 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "TestsController.h"
-
-#include <gtk/gtk.h>
-
-int main(int argc, char** argv)
-{
-    gtk_init(&argc, &argv);
-
-    return TestWebKitAPI::TestsController::shared().run(argc, argv) ? EXIT_SUCCESS : EXIT_FAILURE;
-}
diff --git a/Tools/TestWebKitAPI/ios/mainIOS.mm b/Tools/TestWebKitAPI/ios/mainIOS.mm
deleted file mode 100644
index 3eec9b0..0000000
--- a/Tools/TestWebKitAPI/ios/mainIOS.mm
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Copyright (C) 2013 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "TestsController.h"
-
-int main(int argc, char** argv)
-{
-    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
-
-    bool passed = TestWebKitAPI::TestsController::shared().run(argc, argv);
-
-    [pool drain];
-
-    return passed ? EXIT_SUCCESS : EXIT_FAILURE;
-}
diff --git a/Tools/TestWebKitAPI/mac/InjectedBundleControllerMac.mm b/Tools/TestWebKitAPI/mac/InjectedBundleControllerMac.mm
deleted file mode 100644
index 965beb4..0000000
--- a/Tools/TestWebKitAPI/mac/InjectedBundleControllerMac.mm
+++ /dev/null
@@ -1,58 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "InjectedBundleController.h"
-
-#import <Foundation/Foundation.h>
-
-namespace TestWebKitAPI {
-
-void InjectedBundleController::platformInitialize()
-{
-    // Set up user defaults.
-    NSMutableDictionary *argumentDomain = [[[NSUserDefaults standardUserDefaults] volatileDomainForName:NSArgumentDomain] mutableCopy];
-    if (!argumentDomain)
-        argumentDomain = [[NSMutableDictionary alloc] init];
-    
-    NSDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys:
-                          [NSNumber numberWithInteger:4],   @"AppleAntiAliasingThreshold",
-                          [NSNumber numberWithInteger:0],   @"AppleFontSmoothing",
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1080 && !PLATFORM(CHROMIUM)
-                          [NSNumber numberWithBool:NO],     @"NSScrollAnimationEnabled",
-#else
-                          [NSNumber numberWithBool:NO],     @"AppleScrollAnimationEnabled",
-#endif
-                          [NSNumber numberWithBool:NO],     @"NSOverlayScrollersEnabled",
-                          @"Always",                        @"AppleShowScrollBars",
-                          nil];
-
-    [argumentDomain addEntriesFromDictionary:dict];
-    [[NSUserDefaults standardUserDefaults] setVolatileDomain:argumentDomain forName:NSArgumentDomain];
-
-    [argumentDomain release];
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/mac/InstanceMethodSwizzler.h b/Tools/TestWebKitAPI/mac/InstanceMethodSwizzler.h
deleted file mode 100644
index fe31a8a..0000000
--- a/Tools/TestWebKitAPI/mac/InstanceMethodSwizzler.h
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef InstanceMethodSwizzler_h
-#define InstanceMethodSwizzler_h
-
-#include <objc/runtime.h>
-#include <wtf/Noncopyable.h>
-
-namespace TestWebKitAPI {
-
-class InstanceMethodSwizzler {
-    WTF_MAKE_NONCOPYABLE(InstanceMethodSwizzler);
-public:
-    InstanceMethodSwizzler(Class, SEL, IMP);
-    ~InstanceMethodSwizzler();
-
-    Method m_method;
-    IMP m_originalImplementation;
-};
-
-} // namespace TestWebKitAPI
-
-#endif // InstanceMethodSwizzler_h
diff --git a/Tools/TestWebKitAPI/mac/InstanceMethodSwizzler.mm b/Tools/TestWebKitAPI/mac/InstanceMethodSwizzler.mm
deleted file mode 100644
index 4c37da4..0000000
--- a/Tools/TestWebKitAPI/mac/InstanceMethodSwizzler.mm
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InstanceMethodSwizzler.h"
-
-namespace TestWebKitAPI {
-
-InstanceMethodSwizzler::InstanceMethodSwizzler(Class cls, SEL selector, IMP implementation)
-    : m_method(class_getInstanceMethod(cls, selector))
-    , m_originalImplementation(method_setImplementation(m_method, implementation))
-{
-}
-
-InstanceMethodSwizzler::~InstanceMethodSwizzler()
-{
-    method_setImplementation(m_method, m_originalImplementation);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/mac/JavaScriptTestMac.mm b/Tools/TestWebKitAPI/mac/JavaScriptTestMac.mm
deleted file mode 100644
index b252667..0000000
--- a/Tools/TestWebKitAPI/mac/JavaScriptTestMac.mm
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "JavaScriptTest.h"
-
-#include <WebKit/WebView.h>
-#include <WebKit2/WKViewPrivate.h>
-
-namespace TestWebKitAPI {
-
-::testing::AssertionResult runJSTest(const char*, const char*, const char*, WebView *webView, const char* script, const char* expectedResult)
-{
-    NSString *actualResult = [webView stringByEvaluatingJavaScriptFromString:[NSString stringWithUTF8String:script]];
-    return compareJSResult(script, [actualResult UTF8String], expectedResult);
-}
-
-::testing::AssertionResult runJSTest(const char* viewExpr, const char* scriptExpr, const char* expectedResultExpr, WKView *view, const char* script, const char* expectedResult)
-{
-    return runJSTest(viewExpr, scriptExpr, expectedResultExpr, [view pageRef], script, expectedResult);
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/mac/PlatformUtilitiesMac.mm b/Tools/TestWebKitAPI/mac/PlatformUtilitiesMac.mm
deleted file mode 100644
index afa28a7..0000000
--- a/Tools/TestWebKitAPI/mac/PlatformUtilitiesMac.mm
+++ /dev/null
@@ -1,89 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-
-#include <WebKit2/WKRetainPtr.h>
-#include <WebKit2/WKStringCF.h>
-#include <WebKit2/WKURLCF.h>
-#include <WebKit2/WKURLResponseNS.h>
-#include <wtf/OwnArrayPtr.h>
-#include <wtf/RetainPtr.h>
-
-namespace TestWebKitAPI {
-namespace Util {
-
-void run(bool* done)
-{
-    while (!*done)
-        [[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantPast]];
-}
-
-void sleep(double seconds)
-{
-    usleep(seconds * 1000000);
-}
-
-WKStringRef createInjectedBundlePath()
-{
-    NSString *nsString = [[[NSBundle mainBundle] bundlePath] stringByAppendingPathComponent:@"InjectedBundleTestWebKitAPI.bundle"];
-    return WKStringCreateWithCFString((CFStringRef)nsString);
-}
-
-WKURLRef createURLForResource(const char* resource, const char* extension)
-{
-    NSURL *nsURL = [[NSBundle mainBundle] URLForResource:[NSString stringWithUTF8String:resource] withExtension:[NSString stringWithUTF8String:extension] subdirectory:@"TestWebKitAPI.resources"];
-    return WKURLCreateWithCFURL((CFURLRef)nsURL);
-}
-
-WKURLRef URLForNonExistentResource()
-{
-    NSURL *nsURL = [NSURL URLWithString:@"file:///does-not-exist.html"];
-    return WKURLCreateWithCFURL((CFURLRef)nsURL);
-}
-
-WKRetainPtr<WKStringRef> MIMETypeForWKURLResponse(WKURLResponseRef wkResponse)
-{
-    RetainPtr<NSURLResponse> response(AdoptNS, WKURLResponseCopyNSURLResponse(wkResponse));
-    return adoptWK(WKStringCreateWithCFString((CFStringRef)[response.get() MIMEType]));
-}
-
-bool isKeyDown(WKNativeEventPtr event)
-{
-    return [event type] == NSKeyDown;
-}
-
-std::string toSTD(NSString *string)
-{
-    size_t bufferSize = [string lengthOfBytesUsingEncoding:NSUTF8StringEncoding];
-    OwnArrayPtr<char> buffer = adoptArrayPtr(new char[bufferSize]);
-    NSUInteger stringLength;
-    [string getBytes:buffer.get() maxLength:bufferSize usedLength:&stringLength encoding:NSUTF8StringEncoding options:0 range:NSMakeRange(0, [string length]) remainingRange:0];
-    return std::string(buffer.get(), stringLength);
-}
-
-} // namespace Util
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/mac/PlatformWebViewMac.mm b/Tools/TestWebKitAPI/mac/PlatformWebViewMac.mm
deleted file mode 100644
index 1661074..0000000
--- a/Tools/TestWebKitAPI/mac/PlatformWebViewMac.mm
+++ /dev/null
@@ -1,155 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "PlatformWebView.h"
-
-#import <WebKit2/WKViewPrivate.h>
-#import <Carbon/Carbon.h>
-
-@interface ActiveOffscreenWindow : NSWindow
-@end
-
-@implementation ActiveOffscreenWindow
-- (BOOL)isKeyWindow
-{
-    return YES;
-}
-@end
-
-namespace TestWebKitAPI {
-
-PlatformWebView::PlatformWebView(WKContextRef contextRef, WKPageGroupRef pageGroupRef)
-{
-    NSRect rect = NSMakeRect(0, 0, 800, 600);
-    m_view = [[WKView alloc] initWithFrame:rect contextRef:contextRef pageGroupRef:pageGroupRef];
-
-    NSRect windowRect = NSOffsetRect(rect, -10000, [(NSScreen *)[[NSScreen screens] objectAtIndex:0] frame].size.height - rect.size.height + 10000);
-    m_window = [[ActiveOffscreenWindow alloc] initWithContentRect:windowRect styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:YES];
-    [m_window setColorSpace:[[NSScreen mainScreen] colorSpace]];
-    [[m_window contentView] addSubview:m_view];
-    [m_window orderBack:nil];
-    [m_window setAutodisplay:NO];
-    [m_window setReleasedWhenClosed:NO];
-}
-
-PlatformWebView::~PlatformWebView()
-{
-    [m_window close];
-    [m_window release];
-    [m_view release];
-}
-
-void PlatformWebView::resizeTo(unsigned width, unsigned height)
-{
-    [m_view setFrame:NSMakeRect(0, 0, width, height)];
-}
-
-
-WKPageRef PlatformWebView::page() const
-{
-    return [m_view pageRef];
-}
-
-void PlatformWebView::focus()
-{
-    // Implement.
-}
-
-void PlatformWebView::simulateSpacebarKeyPress()
-{
-    NSEvent *event = [NSEvent keyEventWithType:NSKeyDown
-                                      location:NSMakePoint(5, 5)
-                                 modifierFlags:0
-                                     timestamp:GetCurrentEventTime()
-                                  windowNumber:[m_window windowNumber]
-                                       context:[NSGraphicsContext currentContext]
-                                    characters:@" "
-                   charactersIgnoringModifiers:@" "
-                                     isARepeat:NO
-                                       keyCode:0x31];
-
-    [m_view keyDown:event];
-
-    event = [NSEvent keyEventWithType:NSKeyUp
-                             location:NSMakePoint(5, 5)
-                        modifierFlags:0
-                            timestamp:GetCurrentEventTime()
-                         windowNumber:[m_window windowNumber]
-                              context:[NSGraphicsContext currentContext]
-                           characters:@" "
-          charactersIgnoringModifiers:@" "
-                            isARepeat:NO
-                              keyCode:0x31];
-
-    [m_view keyUp:event];
-}
-
-void PlatformWebView::simulateRightClick(unsigned x, unsigned y)
-{
-    NSEvent *event = [NSEvent mouseEventWithType:NSRightMouseDown
-                                        location:NSMakePoint(x, y)
-                                   modifierFlags:0
-                                       timestamp:GetCurrentEventTime()
-                                    windowNumber:[m_window windowNumber]
-                                         context:[NSGraphicsContext currentContext]
-                                     eventNumber:0
-                                      clickCount:0
-                                        pressure:0];
-
-
-    [m_view rightMouseDown:event];
-
-    event = [NSEvent mouseEventWithType:NSRightMouseUp
-                               location:NSMakePoint(x, y)
-                          modifierFlags:0
-                              timestamp:GetCurrentEventTime()
-                           windowNumber:[m_window windowNumber]
-                                context:[NSGraphicsContext currentContext]
-                            eventNumber:0
-                             clickCount:0
-                               pressure:0];
-
-    [m_view rightMouseUp:event];
-
-}
-    
-void PlatformWebView::simulateMouseMove(unsigned x, unsigned y)
-{   
-    NSEvent *event = [NSEvent mouseEventWithType:NSMouseMoved
-                               location:NSMakePoint(x, y)
-                          modifierFlags:0
-                              timestamp:GetCurrentEventTime()
-                           windowNumber:[m_window windowNumber]
-                                context:[NSGraphicsContext currentContext]
-                            eventNumber:0
-                             clickCount:0
-                               pressure:0];
-    
-    [m_view mouseMoved:event];
-    
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/mac/SyntheticBackingScaleFactorWindow.h b/Tools/TestWebKitAPI/mac/SyntheticBackingScaleFactorWindow.h
deleted file mode 100644
index e83e653..0000000
--- a/Tools/TestWebKitAPI/mac/SyntheticBackingScaleFactorWindow.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-@interface SyntheticBackingScaleFactorWindow : NSWindow {
-    CGFloat _backingScaleFactor;
-}
-- (void)setBackingScaleFactor:(CGFloat)scaleFactor;
-@end
diff --git a/Tools/TestWebKitAPI/mac/SyntheticBackingScaleFactorWindow.m b/Tools/TestWebKitAPI/mac/SyntheticBackingScaleFactorWindow.m
deleted file mode 100644
index 555cf98..0000000
--- a/Tools/TestWebKitAPI/mac/SyntheticBackingScaleFactorWindow.m
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "SyntheticBackingScaleFactorWindow.h"
-
-@implementation SyntheticBackingScaleFactorWindow
-
-- (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)windowStyle backing:(NSBackingStoreType)bufferingType defer:(BOOL)deferCreation
-{
-    self = [super initWithContentRect:contentRect styleMask:windowStyle backing:bufferingType defer:deferCreation];
-    if (!self)
-        return nil;
-
-    _backingScaleFactor = 1;
-    return self;
-}
-
-- (void)setBackingScaleFactor:(CGFloat)scaleFactor
-{
-    _backingScaleFactor = scaleFactor;
-}
-
-- (CGFloat)backingScaleFactor
-{
-    return _backingScaleFactor;
-}
-
-- (CGFloat)userSpaceScaleFactor
-{
-    return _backingScaleFactor;
-}
-
-@end
diff --git a/Tools/TestWebKitAPI/mac/TestBrowsingContextLoadDelegate.h b/Tools/TestWebKitAPI/mac/TestBrowsingContextLoadDelegate.h
deleted file mode 100644
index d8f8ffa..0000000
--- a/Tools/TestWebKitAPI/mac/TestBrowsingContextLoadDelegate.h
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import <WebKit2/WebKit2.h>
-
-typedef void (^OnLoadBlock)(WKBrowsingContextController *);
-
-@interface TestBrowsingContextLoadDelegate : NSObject <WKBrowsingContextLoadDelegate> {
-@private
-    OnLoadBlock _onLoadBlock;
-}
-
-@property(nonatomic, copy) OnLoadBlock onLoadBlock;
-
-- (id)initWithBlockToRunOnLoad:(OnLoadBlock)block;
-
-@end
diff --git a/Tools/TestWebKitAPI/mac/TestBrowsingContextLoadDelegate.mm b/Tools/TestWebKitAPI/mac/TestBrowsingContextLoadDelegate.mm
deleted file mode 100644
index a6c8cef..0000000
--- a/Tools/TestWebKitAPI/mac/TestBrowsingContextLoadDelegate.mm
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "TestBrowsingContextLoadDelegate.h"
-
-@implementation TestBrowsingContextLoadDelegate
-
-@synthesize onLoadBlock = _onLoadBlock;
-
-- (id)initWithBlockToRunOnLoad:(OnLoadBlock)block
-{
-    if (!(self = [super init]))
-        return nil;
-    
-    self.onLoadBlock = block;
-    return self;
-}
-
-- (void)browsingContextControllerDidFinishLoad:(WKBrowsingContextController *)sender
-{
-    if (_onLoadBlock)
-        _onLoadBlock(sender);
-}
-
-@end
\ No newline at end of file
diff --git a/Tools/TestWebKitAPI/mac/WebKitAgnosticTest.h b/Tools/TestWebKitAPI/mac/WebKitAgnosticTest.h
deleted file mode 100644
index c25c4b4..0000000
--- a/Tools/TestWebKitAPI/mac/WebKitAgnosticTest.h
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef WebKitAgnosticTest_h
-#define WebKitAgnosticTest_h
-
-#include "PlatformUtilities.h"
-
-namespace TestWebKitAPI {
-
-// This test fixture can be used to write test that work with both WebKit1 and WebKit2. Calling
-// runWebKit1Test or runWebKit2Test will create a WebView or WKView (respectively), load the URL
-// specified by url(), and then call didLoadURL. Your test's logic should go in didLoadURL.
-class WebKitAgnosticTest : public ::testing::Test {
-public:
-    WebKitAgnosticTest();
-
-    void runWebKit1Test();
-    void runWebKit2Test();
-
-    void loadURL(WebView *, NSURL *);
-    void loadURL(WKView *, NSURL *);
-
-    void goBack(WebView *);
-    void goBack(WKView *);
-
-    void waitForLoadToFinish();
-
-    NSRect viewFrame;
-
-private:
-    virtual NSURL *url() const = 0;
-    virtual void didLoadURL(WebView *) = 0;
-    virtual void didLoadURL(WKView *) = 0;
-
-    virtual void initializeView(WebView *) { }
-    virtual void initializeView(WKView *) { }
-
-    virtual void teardownView(WebView *) { }
-    virtual void teardownView(WKView *) { }
-
-    bool didFinishLoad;
-};
-
-} // namespace TestWebKitAPI
-
-#endif // WebKitAgnosticTest_h
diff --git a/Tools/TestWebKitAPI/mac/WebKitAgnosticTest.mm b/Tools/TestWebKitAPI/mac/WebKitAgnosticTest.mm
deleted file mode 100644
index ce25a84..0000000
--- a/Tools/TestWebKitAPI/mac/WebKitAgnosticTest.mm
+++ /dev/null
@@ -1,141 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "WebKitAgnosticTest.h"
-
-#include <WebKit2/WKURLCF.h>
-#include <WebKit2/WKViewPrivate.h>
-#include <wtf/RetainPtr.h>
-
-@interface FrameLoadDelegate : NSObject {
-    bool* _didFinishLoad;
-}
-
-- (id)initWithDidFinishLoadBoolean:(bool*)didFinishLoad;
-
-@end
-
-@implementation FrameLoadDelegate
-
-- (id)initWithDidFinishLoadBoolean:(bool*)didFinishLoad
-{
-    self = [super init];
-    if (!self)
-        return nil;
-
-    _didFinishLoad = didFinishLoad;
-    return self;
-}
-
-- (void)webView:(WebView *)webView didFinishLoadForFrame:(WebFrame *)webFrame
-{
-    *_didFinishLoad = true;
-}
-
-@end
-
-namespace TestWebKitAPI {
-
-static void didFinishLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef, const void* context)
-{
-    *static_cast<bool*>(const_cast<void*>(context)) = true;
-}
-
-static void setPageLoaderClient(WKPageRef page, bool* didFinishLoad)
-{
-    WKPageLoaderClient loaderClient;
-    memset(&loaderClient, 0, sizeof(loaderClient));
-    loaderClient.version = 0;
-    loaderClient.clientInfo = didFinishLoad;
-    loaderClient.didFinishLoadForFrame = didFinishLoadForFrame;
-
-    WKPageSetPageLoaderClient(page, &loaderClient);
-}
-
-WebKitAgnosticTest::WebKitAgnosticTest()
-    : viewFrame(NSMakeRect(0, 0, 800, 600))
-    , didFinishLoad(false)
-{
-}
-
-void WebKitAgnosticTest::runWebKit1Test()
-{
-    RetainPtr<WebView> webView(AdoptNS, [[WebView alloc] initWithFrame:viewFrame]);
-    RetainPtr<FrameLoadDelegate> delegate(AdoptNS, [[FrameLoadDelegate alloc] initWithDidFinishLoadBoolean:&didFinishLoad]);
-    [webView.get() setFrameLoadDelegate:delegate.get()];
-    initializeView(webView.get());
-
-    loadURL(webView.get(), url());
-    waitForLoadToFinish();
-    didLoadURL(webView.get());
-    teardownView(webView.get());
-}
-
-void WebKitAgnosticTest::runWebKit2Test()
-{
-    WKRetainPtr<WKContextRef> context = adoptWK(WKContextCreate());
-    WKRetainPtr<WKPageGroupRef> pageGroup = adoptWK(WKPageGroupCreateWithIdentifier(Util::toWK("WebKitAgnosticTest").get()));
-    RetainPtr<WKView> view(AdoptNS, [[WKView alloc] initWithFrame:viewFrame contextRef:context.get() pageGroupRef:pageGroup.get()]);
-    setPageLoaderClient([view.get() pageRef], &didFinishLoad);
-    initializeView(view.get());
-
-    loadURL(view.get(), url());
-    waitForLoadToFinish();
-    didLoadURL(view.get());
-    teardownView(view.get());
-}
-
-void WebKitAgnosticTest::loadURL(WebView *webView, NSURL *url)
-{
-    EXPECT_FALSE(didFinishLoad);
-    [[webView mainFrame] loadRequest:[NSURLRequest requestWithURL:url]];
-}
-
-void WebKitAgnosticTest::loadURL(WKView *view, NSURL *url)
-{
-    EXPECT_FALSE(didFinishLoad);
-    WKPageLoadURL([view pageRef], adoptWK(WKURLCreateWithCFURL((CFURLRef)url)).get());
-}
-
-void WebKitAgnosticTest::goBack(WebView *webView)
-{
-    EXPECT_FALSE(didFinishLoad);
-    [webView goBack];
-}
-
-void WebKitAgnosticTest::goBack(WKView *view)
-{
-    EXPECT_FALSE(didFinishLoad);
-    WKPageGoBack([view pageRef]);
-}
-
-void WebKitAgnosticTest::waitForLoadToFinish()
-{
-    Util::run(&didFinishLoad);
-    didFinishLoad = false;
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/mac/mainMac.mm b/Tools/TestWebKitAPI/mac/mainMac.mm
deleted file mode 100644
index 498eb48..0000000
--- a/Tools/TestWebKitAPI/mac/mainMac.mm
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "TestsController.h"
-
-int main(int argc, char** argv)
-{
-    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
-
-    [NSApplication sharedApplication];
-
-    bool passed = TestWebKitAPI::TestsController::shared().run(argc, argv);
-
-    [pool drain];
-
-    return passed ? EXIT_SUCCESS : EXIT_FAILURE;
-}
diff --git a/Tools/TestWebKitAPI/qt/InjectedBundleControllerQt.cpp b/Tools/TestWebKitAPI/qt/InjectedBundleControllerQt.cpp
deleted file mode 100644
index 5d55002..0000000
--- a/Tools/TestWebKitAPI/qt/InjectedBundleControllerQt.cpp
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright (C) 2012 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleController.h"
-
-namespace TestWebKitAPI {
-
-void InjectedBundleController::platformInitialize()
-{
-}
-
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/qt/PlatformUtilitiesQt.cpp b/Tools/TestWebKitAPI/qt/PlatformUtilitiesQt.cpp
deleted file mode 100644
index 5a3c13a..0000000
--- a/Tools/TestWebKitAPI/qt/PlatformUtilitiesQt.cpp
+++ /dev/null
@@ -1,73 +0,0 @@
-/*
- * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this library; see the file COPYING.LIB.  If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- *
- */
-
-#include "config.h"
-#include "PlatformUtilities.h"
-
-#include <WebKit2/WKStringQt.h>
-#include <WebKit2/WKNativeEvent.h>
-#include <WebKit2/WKURLQt.h>
-
-#include <QCoreApplication>
-#include <QDir>
-#include <QUrl>
-#include <QThread>
-
-namespace TestWebKitAPI {
-namespace Util {
-
-void run(bool* done)
-{
-    while (!*done)
-        QCoreApplication::processEvents();
-}
-
-void sleep(double seconds)
-{
-    QThread::sleep(seconds);
-}
-
-WKStringRef createInjectedBundlePath()
-{
-    QString path = QFileInfo(QStringLiteral(ROOT_BUILD_DIR "/lib/libTestWebKitAPIInjectedBundle")).absoluteFilePath();
-
-    return WKStringCreateWithQString(path);
-}
-
-WKURLRef createURLForResource(const char* resource, const char* extension)
-{
-    QDir path(QStringLiteral(APITEST_SOURCE_DIR));
-    QString filename = QString::fromLocal8Bit(resource) + QStringLiteral(".") + QString::fromLocal8Bit(extension);
-
-    return WKURLCreateWithQUrl(QUrl::fromLocalFile(path.absoluteFilePath(filename)));
-}
-
-WKURLRef URLForNonExistentResource()
-{
-    return WKURLCreateWithUTF8CString("file:///does-not-exist.html");
-}
-
-bool isKeyDown(WKNativeEventPtr event)
-{
-    return event->type() == QEvent::KeyPress;
-}
-
-} // namespace Util
-} // namespace TestWebKitAPI
diff --git a/Tools/TestWebKitAPI/qt/PlatformWebViewQt.cpp b/Tools/TestWebKitAPI/qt/PlatformWebViewQt.cpp
deleted file mode 100644
index 9949ade..0000000
--- a/Tools/TestWebKitAPI/qt/PlatformWebViewQt.cpp
+++ /dev/null
@@ -1,148 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- * Copyright (C) 2010 University of Szeged. All rights reserved.
- * Copyright (C) 2013 Digia Plc. and/or its subsidiary(-ies).
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include "PlatformWebView.h"
-#include "qquickwebpage_p.h"
-#include "qquickwebview_p.h"
-
-#include <WebKit2/WKRetainPtr.h>
-
-#include <QCoreApplication>
-#include <QEventLoop>
-#include <QQmlProperty>
-#include <QtQuick/QQuickView>
-#include <qpa/qwindowsysteminterface.h>
-
-namespace TestWebKitAPI {
-
-class WrapperWindow : public QQuickView {
-    Q_OBJECT
-public:
-    WrapperWindow(QQuickWebView* view)
-        : QQuickView(QUrl(QStringLiteral("data:text/plain,import QtQuick 2.0\nItem { objectName: 'root' }")))
-        , m_view(view)
-    {
-        connect(this, SIGNAL(statusChanged(QQuickView::Status)), SLOT(handleStatusChanged(QQuickView::Status)));
-    }
-
-private Q_SLOTS:
-    void handleStatusChanged(QQuickView::Status status)
-    {
-        if (status != QQuickView::Ready)
-            return;
-
-        setGeometry(0, 0, 800, 600);
-
-        setResizeMode(QQuickView::SizeRootObjectToView);
-        m_view->setParentItem(rootObject());
-        QQmlProperty::write(m_view, QStringLiteral("anchors.fill"), qVariantFromValue(rootObject()));
-
-        m_view->experimental()->setRenderToOffscreenBuffer(true);
-
-        QWindowSystemInterface::handleWindowActivated(this);
-        m_view->page()->setFocus(true);
-    }
-
-private:
-    QQuickWebView* m_view;
-};
-
-PlatformWebView::PlatformWebView(WKContextRef contextRef, WKPageGroupRef pageGroupRef)
-{
-    m_view = new QQuickWebView(contextRef, pageGroupRef);
-    m_view->setAllowAnyHTTPSCertificateForLocalHost(true);
-    m_view->componentComplete();
-
-    m_window = new WrapperWindow(m_view);
-}
-
-PlatformWebView::~PlatformWebView()
-{
-    delete m_window;
-}
-
-void PlatformWebView::resizeTo(unsigned width, unsigned height)
-{
-    // If we do not have a platform window we will never get the necessary
-    // resize event, so simulate it in that case to make sure the quickview is
-    // resized to what the api tests expects.
-    if (!m_window->handle()) {
-        QRect newGeometry(m_window->x(), m_window->y(), width, height);
-        QWindowSystemInterface::handleGeometryChange(m_window, newGeometry);
-        QWindowSystemInterface::flushWindowSystemEvents();
-    }
-
-    m_window->resize(width, height);
-}
-
-WKPageRef PlatformWebView::page() const
-{
-    return m_view->pageRef();
-}
-
-void PlatformWebView::focus()
-{
-    m_view->setFocus(true);
-}
-
-void PlatformWebView::simulateSpacebarKeyPress()
-{
-    QKeyEvent event(QEvent::KeyPress, Qt::Key_Space, Qt::NoModifier);
-    QCoreApplication::sendEvent(m_window, &event);
-    QKeyEvent event2(QEvent::KeyRelease, Qt::Key_Space, Qt::NoModifier);
-    QCoreApplication::sendEvent(m_window, &event2);
-}
-
-void PlatformWebView::simulateAltKeyPress()
-{
-    QKeyEvent event(QEvent::KeyPress, Qt::Key_Alt, Qt::NoModifier);
-    QCoreApplication::sendEvent(m_window, &event);
-    QKeyEvent event2(QEvent::KeyRelease, Qt::Key_Alt, Qt::NoModifier);
-    QCoreApplication::sendEvent(m_window, &event2);
-}
-
-void PlatformWebView::simulateMouseMove(unsigned x, unsigned y)
-{
-    QPointF mousePos(x, y);
-    QMouseEvent event(QEvent::MouseMove, mousePos, Qt::NoButton, Qt::NoButton, Qt::NoModifier);
-    QCoreApplication::sendEvent(m_window, &event);
-}
-
-void PlatformWebView::simulateRightClick(unsigned x, unsigned y)
-{
-    QPointF mousePos(x, y);
-    QMouseEvent event2(QEvent::MouseButtonPress, mousePos, Qt::RightButton, Qt::RightButton, Qt::NoModifier);
-    QCoreApplication::sendEvent(m_window, &event2);
-    QMouseEvent event3(QEvent::MouseButtonRelease, mousePos,  Qt::RightButton, Qt::NoButton, Qt::NoModifier);
-    QCoreApplication::sendEvent(m_window, &event3);
-}
-
-} // namespace TestWebKitAPI
-
-#include "PlatformWebViewQt.moc"
diff --git a/Tools/TestWebKitAPI/qt/main.cpp b/Tools/TestWebKitAPI/qt/main.cpp
deleted file mode 100644
index efad5bb..0000000
--- a/Tools/TestWebKitAPI/qt/main.cpp
+++ /dev/null
@@ -1,70 +0,0 @@
-/*
- * Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this library; see the file COPYING.LIB.  If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- *
- */
-
-#include "config.h"
-#include "TestsController.h"
-
-#include "qquickwebview_p.h"
-#include <QGuiApplication>
-
-void addQtWebProcessToPath()
-{
-    // Since tests won't find ./QtWebProcess, add it to PATH (at the end to prevent surprises).
-    // ROOT_BUILD_DIR should be defined by qmake.
-    qputenv("PATH", qgetenv("PATH") + QByteArray(":" ROOT_BUILD_DIR "/bin"));
-}
-
-void messageHandler(QtMsgType type, const QMessageLogContext&, const QString& message)
-{
-    if (type == QtCriticalMsg) {
-        fprintf(stderr, "%s\n", qPrintable(message));
-        return;
-    }
-
-    // Do nothing
-}
-
-int main(int argc, char** argv)
-{
-    bool suppressQtDebugOutput = true; // Suppress debug output from Qt if not started with --verbose.
-    bool useDesktopBehavior = true; // Use traditional desktop behavior if not started with --flickable.
-
-    for (int i = 1; i < argc; ++i) {
-        if (!qstrcmp(argv[i], "--verbose"))
-            suppressQtDebugOutput = false;
-        else if (!qstrcmp(argv[i], "--flickable"))
-            useDesktopBehavior = false;
-    }
-
-    QQuickWebViewExperimental::setFlickableViewportEnabled(!useDesktopBehavior);
-
-    // Has to be done before QApplication is constructed in case
-    // QApplication itself produces debug output.
-    if (suppressQtDebugOutput) {
-        qInstallMessageHandler(messageHandler);
-        if (qgetenv("QT_WEBKIT_SUPPRESS_WEB_PROCESS_OUTPUT").isEmpty())
-            qputenv("QT_WEBKIT_SUPPRESS_WEB_PROCESS_OUTPUT", "1");
-    }
-
-    QGuiApplication app(argc, argv);
-    addQtWebProcessToPath();
-
-    return TestWebKitAPI::TestsController::shared().run(argc, argv) ? EXIT_SUCCESS : EXIT_FAILURE;
-}
diff --git a/Tools/TestWebKitAPI/win/HostWindow.cpp b/Tools/TestWebKitAPI/win/HostWindow.cpp
deleted file mode 100644
index 74c947d..0000000
--- a/Tools/TestWebKitAPI/win/HostWindow.cpp
+++ /dev/null
@@ -1,84 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
- * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "HostWindow.h"
-
-namespace TestWebKitAPI {
-
-static LPCWSTR hostWindowClassName = L"HostWindow";
-
-HostWindow::HostWindow()
-    : m_window(0)
-{
-}
-
-bool HostWindow::initialize()
-{
-    registerWindowClass();
-    m_window = ::CreateWindowExW(0, hostWindowClassName, L"TestWebKitAPI", WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, 0, 0, ::GetModuleHandle(0), 0);
-    return m_window;
-}
-
-HostWindow::~HostWindow()
-{
-    if (!::IsWindow(m_window))
-        return;
-    ::DestroyWindow(m_window);
-}
-
-RECT HostWindow::clientRect() const
-{
-    RECT rect = {0};
-    if (!::GetClientRect(m_window, &rect)) {
-        RECT emptyRect = {0};
-        return emptyRect;
-    }
-    return rect;
-}
-
-void HostWindow::registerWindowClass()
-{
-    static bool initialized;
-    if (initialized)
-        return;
-    initialized = true;
-
-    WNDCLASSEXW wndClass = {0};
-    wndClass.cbSize = sizeof(wndClass);
-    wndClass.style = CS_HREDRAW | CS_VREDRAW;
-    wndClass.lpfnWndProc = wndProc;
-    wndClass.hCursor = LoadCursor(0, IDC_ARROW);
-    wndClass.hInstance = GetModuleHandle(0);
-    wndClass.lpszClassName = hostWindowClassName;
-
-    ::RegisterClassExW(&wndClass);
-}
-
-LRESULT HostWindow::wndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
-{
-    return ::DefWindowProcW(hWnd, uMsg, wParam, lParam);
-}
-
-} // namespace WebKitAPITest
diff --git a/Tools/TestWebKitAPI/win/HostWindow.h b/Tools/TestWebKitAPI/win/HostWindow.h
deleted file mode 100644
index ddb53f1..0000000
--- a/Tools/TestWebKitAPI/win/HostWindow.h
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
- * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef HostWindow_h
-#define HostWindow_h
-
-#include <windows.h>
-#include <wtf/Noncopyable.h>
-
-namespace TestWebKitAPI {
-
-class HostWindow {
-    WTF_MAKE_NONCOPYABLE(HostWindow);
-public:
-    HostWindow();
-    ~HostWindow();
-    bool initialize();
-
-    RECT clientRect() const;
-    HWND window() const { return m_window; }
-
-private:
-    static void registerWindowClass();
-    static LRESULT CALLBACK wndProc(HWND, UINT uMsg, WPARAM, LPARAM);
-
-    HWND m_window;
-};
-
-} // namespace WebKitAPITest
-
-#endif // HostWindow_h
diff --git a/Tools/TestWebKitAPI/win/TestWebKitAPI.vcproj b/Tools/TestWebKitAPI/win/TestWebKitAPI.vcproj
deleted file mode 100644
index 66e48f4..0000000
--- a/Tools/TestWebKitAPI/win/TestWebKitAPI.vcproj
+++ /dev/null
@@ -1,567 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="TestWebKitAPI"
-	ProjectGUID="{3E48AB23-D249-488F-A1C4-43CDF52FBD28}"
-	RootNamespace="TestWebKitAPI"
-	>
-	<Platforms>
-		<Platform
-			Name="Win32"
-		/>
-	</Platforms>
-	<ToolFiles>
-	</ToolFiles>
-	<Configurations>
-		<Configuration
-			Name="Debug|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets="..\Configurations\TestWebKitAPIDebug.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets="..\Configurations\TestWebKitAPIRelease.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_All|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets="..\Configurations\TestWebKitAPIDebugAll.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_Cairo_CFLite|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets="..\Configurations\TestWebKitAPIDebugCairoCFLite.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release_Cairo_CFLite|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets="..\Configurations\TestWebKitAPIReleaseCairoCFLite.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Production|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets="..\Configurations\TestWebKitAPIRelease.vsprops"
-			CharacterSet="1"
-			WholeProgramOptimization="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-	</Configurations>
-	<References>
-	</References>
-	<Files>
-		<Filter
-			Name="win"
-			>
-			<File
-				RelativePath=".\HostWindow.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\HostWindow.h"
-				>
-			</File>
-			<File
-				RelativePath=".\main.cpp"
-				>
-			</File>
-		</Filter>
-		<Filter
-			Name="Tests"
-			>
-			<Filter
-				Name="WebCore"
-				>
-				<File
-					RelativePath="..\Tests\WebCore\LayoutUnit.cpp"
-					>
-				</File>
-				<Filter
-					Name="win"
-					>
-					<File
-						RelativePath="..\Tests\WebCore\win\BitmapImage.cpp"
-						>
-						<FileConfiguration
-							Name="Debug|Win32"
-							ExcludedFromBuild="true"
-							>
-							<Tool
-								Name="VCCLCompilerTool"
-							/>
-						</FileConfiguration>
-						<FileConfiguration
-							Name="Release|Win32"
-							ExcludedFromBuild="true"
-							>
-							<Tool
-								Name="VCCLCompilerTool"
-							/>
-						</FileConfiguration>
-						<FileConfiguration
-							Name="Debug_All|Win32"
-							ExcludedFromBuild="true"
-							>
-							<Tool
-								Name="VCCLCompilerTool"
-							/>
-						</FileConfiguration>
-						<FileConfiguration
-							Name="Debug_Cairo_CFLite|Win32"
-							ExcludedFromBuild="true"
-							>
-							<Tool
-								Name="VCCLCompilerTool"
-							/>
-						</FileConfiguration>
-						<FileConfiguration
-							Name="Release_Cairo_CFLite|Win32"
-							ExcludedFromBuild="true"
-							>
-							<Tool
-								Name="VCCLCompilerTool"
-							/>
-						</FileConfiguration>
-						<FileConfiguration
-							Name="Production|Win32"
-							ExcludedFromBuild="true"
-							>
-							<Tool
-								Name="VCCLCompilerTool"
-							/>
-						</FileConfiguration>
-					</File>
-				</Filter>
-			</Filter>
-			<Filter
-				Name="WTF"
-				>
-				<File
-					RelativePath="..\Tests\WTF\CheckedArithmeticOperations.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\Tests\WTF\Functional.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\Tests\WTF\HashMap.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\Tests\WTF\MathExtras.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\Tests\WTF\MediaTime.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\Tests\WTF\SaturatedArithmeticOperations.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\Tests\WTF\StringHasher.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\Tests\WTF\StringOperators.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\Tests\WTF\TemporaryChange.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\Tests\WTF\Vector.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\Tests\WTF\VectorBasic.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\Tests\WTF\VectorReverse.cpp"
-					>
-				</File>
-				<Filter
-					Name="cf"
-					>
-					<File
-						RelativePath="..\Tests\WTF\cf\RetainPtr.cpp"
-						>
-					</File>
-					<File
-						RelativePath="..\Tests\WTF\cf\RetainPtrHashing.cpp"
-						>
-					</File>
-				</Filter>
-			</Filter>
-			<Filter
-				Name="WebKit"
-				>
-				<Filter
-					Name="win"
-					>
-					<File
-						RelativePath="..\Tests\WebKit\win\WebViewDestruction.cpp"
-						>
-					</File>
-				</Filter>
-			</Filter>
-		</Filter>
-		<File
-			RelativePath="..\config.h"
-			>
-		</File>
-		<File
-			RelativePath="..\Test.h"
-			>
-		</File>
-		<File
-			RelativePath="..\TestsController.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\TestsController.h"
-			>
-		</File>
-	</Files>
-	<Globals>
-	</Globals>
-</VisualStudioProject>
diff --git a/Tools/TestWebKitAPI/win/TestWebKitAPIPostBuild.cmd b/Tools/TestWebKitAPI/win/TestWebKitAPIPostBuild.cmd
deleted file mode 100644
index 26707ca..0000000
--- a/Tools/TestWebKitAPI/win/TestWebKitAPIPostBuild.cmd
+++ /dev/null
@@ -1 +0,0 @@
-if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed"
diff --git a/Tools/TestWebKitAPI/win/TestWebKitAPIPreBuild.cmd b/Tools/TestWebKitAPI/win/TestWebKitAPIPreBuild.cmd
deleted file mode 100644
index a770776..0000000
--- a/Tools/TestWebKitAPI/win/TestWebKitAPIPreBuild.cmd
+++ /dev/null
@@ -1,6 +0,0 @@
-%SystemDrive%\cygwin\bin\which.exe bash
-if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
-cmd /c
-if exist "%CONFIGURATIONBUILDDIR%\buildfailed" grep XX%PROJECTNAME%XX "%CONFIGURATIONBUILDDIR%\buildfailed"
-if errorlevel 1 exit 1
-echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed"
diff --git a/Tools/TestWebKitAPI/win/main.cpp b/Tools/TestWebKitAPI/win/main.cpp
deleted file mode 100644
index 9842d4b..0000000
--- a/Tools/TestWebKitAPI/win/main.cpp
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Copyright (C) 2010, 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "TestsController.h"
-#include <windows.h>
-
-int main(int argc, char** argv)
-{
-    // Cygwin calls ::SetErrorMode(SEM_FAILCRITICALERRORS), which we will inherit. This is bad for
-    // testing/debugging, as it causes the post-mortem debugger not to be invoked. We reset the
-    // error mode here to work around Cygwin's behavior. See <http://webkit.org/b/55222>.
-    ::SetErrorMode(0);
-
-    // Initialize COM, needed for WebKit1 tests.
-    // FIXME: Remove this line once <http://webkit.org/b/32867> is fixed.
-    ::OleInitialize(0);
-
-    bool passed = TestWebKitAPI::TestsController::shared().run(argc, argv);
-
-    return passed ? EXIT_SUCCESS : EXIT_FAILURE;
-}
diff --git a/Tools/Tools.pro b/Tools/Tools.pro
deleted file mode 100644
index 5e2a45d..0000000
--- a/Tools/Tools.pro
+++ /dev/null
@@ -1,51 +0,0 @@
-# -------------------------------------------------------------------
-# Root project file for tools
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-TEMPLATE = subdirs
-CONFIG += ordered
-
-build?(webkit1) {
-    build?(testbrowser): SUBDIRS += QtTestBrowser/QtTestBrowser.pro
-    build?(drt): SUBDIRS += DumpRenderTree/qt/DumpRenderTree.pro
-}
-
-build?(webkit2) {
-    # WTR's InjectedBundle depends currently on WK1's DumpRenderTreeSupport
-    build?(webkit1):build?(wtr):have?(QTQUICK): SUBDIRS += WebKitTestRunner/WebKitTestRunner.pro
-
-    build?(minibrowser) {
-        have?(QTQUICK): SUBDIRS += MiniBrowser/qt/MiniBrowser.pro
-        SUBDIRS += MiniBrowser/qt/raw/MiniBrowserRaw.pro
-    }
-
-    !production_build {
-        # Only tested on Linux so far.
-        linux* {
-            SUBDIRS += TestWebKitAPI
-        }
-    }
-}
-
-build?(imagediff): SUBDIRS += ImageDiff/ImageDiff.pro
-
-build?(test_npapi): SUBDIRS += DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro
-
-OTHER_FILES = \
-    Scripts/* \
-    $$files(Scripts/webkitpy/*.py, true) \
-    $$files(Scripts/webkitperl/*.p[l|m], true) \
-    qmake/README \
-    qmake/dump-features.pl \
-    qmake/config.tests/README \
-    qmake/config.tests/fontconfig/* \
-    qmake/config.tests/gccdepends/* \
-    qmake/config.tests/libexecdir/* \
-    qmake/mkspecs/modules/* \
-    qmake/mkspecs/features/*.prf \
-    qmake/mkspecs/features/*.pri \
-    qmake/mkspecs/features/mac/*.prf \
-    qmake/mkspecs/features/unix/*.prf \
-    qmake/mkspecs/features/win32/*.prf
diff --git a/Tools/WebKitLauncher/Configurations/Base.xcconfig b/Tools/WebKitLauncher/Configurations/Base.xcconfig
deleted file mode 100644
index 149eb82..0000000
--- a/Tools/WebKitLauncher/Configurations/Base.xcconfig
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright (C) 2009 Apple Inc. All rights reserved.
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions
-// are met:
-// 1. Redistributions of source code must retain the above copyright
-//    notice, this list of conditions and the following disclaimer.
-// 2. Redistributions in binary form must reproduce the above copyright
-//    notice, this list of conditions and the following disclaimer in the
-//    documentation and/or other materials provided with the distribution.
-//
-// THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
-// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-// PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
-// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-
-ARCHS = $(ARCHS_STANDARD_32_64_BIT);
-DEAD_CODE_STRIPPING = YES;
-DEBUG_INFORMATION_FORMAT = dwarf-with-dsym;
-GCC_DEBUGGING_SYMBOLS = full;
-GCC_MODEL_TUNING = G5;
-GCC_PREPROCESSOR_DEFINITIONS = ENABLE_SPARKLE=$(ENABLE_SPARKLE);
-GCC_TREAT_WARNINGS_AS_ERRORS = YES;
-GCC_VERSION = 4.0;
-GCC_VERSION[arch=x86_64] = 4.2;
-MACOSX_DEPLOYMENT_TARGET = 10.4;
-MACOSX_DEPLOYMENT_TARGET[arch=x86_64] = 10.5;
-PREBINDING = NO;
-SDKROOT = macosx10.5;
-WARNING_CFLAGS = -Wall;
-
-ENABLE_SPARKLE = 0;
diff --git a/Tools/WebKitLauncher/Configurations/WebKitLauncher.xcconfig b/Tools/WebKitLauncher/Configurations/WebKitLauncher.xcconfig
deleted file mode 100644
index c4dde36..0000000
--- a/Tools/WebKitLauncher/Configurations/WebKitLauncher.xcconfig
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright (C) 2009 Apple Inc. All rights reserved.
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions
-// are met:
-// 1. Redistributions of source code must retain the above copyright
-//    notice, this list of conditions and the following disclaimer.
-// 2. Redistributions in binary form must reproduce the above copyright
-//    notice, this list of conditions and the following disclaimer in the
-//    documentation and/or other materials provided with the distribution.
-//
-// THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
-// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-// PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
-// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-
-INFOPLIST_FILE = Info.plist;
-PRODUCT_NAME = WebKit;
-WRAPPER_EXTENSION = app;
-MACOSX_DEPLOYMENT_TARGET[arch=ppc] = 10.2;
diff --git a/Tools/WebKitLauncher/Configurations/WebKitNightlyEnabler.xcconfig b/Tools/WebKitLauncher/Configurations/WebKitNightlyEnabler.xcconfig
deleted file mode 100644
index ff352e6..0000000
--- a/Tools/WebKitLauncher/Configurations/WebKitNightlyEnabler.xcconfig
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright (C) 2009 Apple Inc. All rights reserved.
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions
-// are met:
-// 1. Redistributions of source code must retain the above copyright
-//    notice, this list of conditions and the following disclaimer.
-// 2. Redistributions in binary form must reproduce the above copyright
-//    notice, this list of conditions and the following disclaimer in the
-//    documentation and/or other materials provided with the distribution.
-//
-// THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
-// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-// PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
-// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-
-PRODUCT_NAME = WebKitNightlyEnabler;
-INSTALL_PATH = @executable_path/../Resources;
-
-OTHER_LDFLAGS = $(OTHER_LDFLAGS_$(ENABLE_SPARKLE));
-OTHER_LDFLAGS_0 = ;
-OTHER_LDFLAGS_1 = -framework Sparkle;
diff --git a/Tools/WebKitLauncher/Info.plist b/Tools/WebKitLauncher/Info.plist
deleted file mode 100644
index 83564a7..0000000
--- a/Tools/WebKitLauncher/Info.plist
+++ /dev/null
@@ -1,493 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
-	<key>CFBundleDevelopmentRegion</key>
-	<string>English</string>
-	<key>CFBundleDocumentTypes</key>
-	<array>
-		<dict>
-			<key>CFBundleTypeExtensions</key>
-			<array>
-				<string>css</string>
-			</array>
-			<key>CFBundleTypeIconFile</key>
-			<string>document.icns</string>
-			<key>CFBundleTypeMIMETypes</key>
-			<array>
-				<string>text/css</string>
-			</array>
-			<key>CFBundleTypeName</key>
-			<string>CSS style sheet</string>
-			<key>CFBundleTypeRole</key>
-			<string>Viewer</string>
-			<key>NSDocumentClass</key>
-			<string>BrowserDocument</string>
-		</dict>
-		<dict>
-			<key>CFBundleTypeExtensions</key>
-			<array>
-				<string>pdf</string>
-			</array>
-			<key>CFBundleTypeIconFile</key>
-			<string>document.icns</string>
-			<key>CFBundleTypeMIMETypes</key>
-			<array>
-				<string>application/pdf</string>
-			</array>
-			<key>CFBundleTypeName</key>
-			<string>PDF document</string>
-			<key>CFBundleTypeRole</key>
-			<string>Viewer</string>
-			<key>NSDocumentClass</key>
-			<string>BrowserDocument</string>
-		</dict>
-		<dict>
-			<key>CFBundleTypeExtensions</key>
-			<array>
-				<string>webarchive</string>
-			</array>
-			<key>CFBundleTypeIconFile</key>
-			<string>webarchive.icns</string>
-			<key>CFBundleTypeMIMETypes</key>
-			<array>
-				<string>application/x-webarchive</string>
-			</array>
-			<key>CFBundleTypeName</key>
-			<string>Web archive</string>
-			<key>CFBundleTypeRole</key>
-			<string>Viewer</string>
-			<key>NSDocumentClass</key>
-			<string>BrowserDocument</string>
-		</dict>
-		<dict>
-			<key>CFBundleTypeExtensions</key>
-			<array>
-				<string>syndarticle</string>
-			</array>
-			<key>CFBundleTypeIconFile</key>
-			<string>document.icns</string>
-			<key>CFBundleTypeName</key>
-			<string>RSS article</string>
-			<key>CFBundleTypeRole</key>
-			<string>Viewer</string>
-			<key>NSDocumentClass</key>
-			<string>BrowserDocument</string>
-		</dict>
-		<dict>
-			<key>CFBundleTypeExtensions</key>
-			<array>
-				<string>webbookmark</string>
-			</array>
-			<key>CFBundleTypeIconFile</key>
-			<string>document.icns</string>
-			<key>CFBundleTypeName</key>
-			<string>Safari bookmark</string>
-			<key>CFBundleTypeRole</key>
-			<string>Viewer</string>
-			<key>NSDocumentClass</key>
-			<string>BrowserDocument</string>
-		</dict>
-		<dict>
-			<key>CFBundleTypeExtensions</key>
-			<array>
-				<string>webloc</string>
-			</array>
-			<key>CFBundleTypeIconFile</key>
-			<string>document.icns</string>
-			<key>CFBundleTypeName</key>
-			<string>Web internet location</string>
-			<key>CFBundleTypeOSTypes</key>
-			<array>
-				<string>ilht</string>
-			</array>
-			<key>CFBundleTypeRole</key>
-			<string>Viewer</string>
-			<key>NSDocumentClass</key>
-			<string>BrowserDocument</string>
-		</dict>
-		<dict>
-			<key>CFBundleTypeExtensions</key>
-			<array>
-				<string>download</string>
-			</array>
-			<key>CFBundleTypeIconFile</key>
-			<string>download10.icns</string>
-			<key>CFBundleTypeName</key>
-			<string>Safari download</string>
-			<key>CFBundleTypeRole</key>
-			<string>Editor</string>
-			<key>LSTypeIsPackage</key>
-			<true/>
-			<key>NSDocumentClass</key>
-			<string>BrowserDocument</string>
-		</dict>
-		<dict>
-			<key>CFBundleTypeExtensions</key>
-			<array>
-				<string>gif</string>
-			</array>
-			<key>CFBundleTypeIconFile</key>
-			<string>document.icns</string>
-			<key>CFBundleTypeMIMETypes</key>
-			<array>
-				<string>image/gif</string>
-			</array>
-			<key>CFBundleTypeName</key>
-			<string>GIF image</string>
-			<key>CFBundleTypeOSTypes</key>
-			<array>
-				<string>GIFf</string>
-			</array>
-			<key>CFBundleTypeRole</key>
-			<string>Viewer</string>
-			<key>NSDocumentClass</key>
-			<string>BrowserDocument</string>
-		</dict>
-		<dict>
-			<key>CFBundleTypeExtensions</key>
-			<array>
-				<string>html</string>
-				<string>htm</string>
-				<string>shtml</string>
-				<string>jhtml</string>
-			</array>
-			<key>CFBundleTypeIconFile</key>
-			<string>document.icns</string>
-			<key>CFBundleTypeMIMETypes</key>
-			<array>
-				<string>text/html</string>
-			</array>
-			<key>CFBundleTypeName</key>
-			<string>HTML document</string>
-			<key>CFBundleTypeOSTypes</key>
-			<array>
-				<string>HTML</string>
-			</array>
-			<key>CFBundleTypeRole</key>
-			<string>Viewer</string>
-			<key>NSDocumentClass</key>
-			<string>BrowserDocument</string>
-		</dict>
-		<dict>
-			<key>CFBundleTypeExtensions</key>
-			<array>
-				<string>js</string>
-			</array>
-			<key>CFBundleTypeIconFile</key>
-			<string>document.icns</string>
-			<key>CFBundleTypeMIMETypes</key>
-			<array>
-				<string>application/x-javascript</string>
-			</array>
-			<key>CFBundleTypeName</key>
-			<string>JavaScript script</string>
-			<key>CFBundleTypeRole</key>
-			<string>Viewer</string>
-			<key>NSDocumentClass</key>
-			<string>BrowserDocument</string>
-		</dict>
-		<dict>
-			<key>CFBundleTypeExtensions</key>
-			<array>
-				<string>jpg</string>
-				<string>jpeg</string>
-			</array>
-			<key>CFBundleTypeIconFile</key>
-			<string>document.icns</string>
-			<key>CFBundleTypeMIMETypes</key>
-			<array>
-				<string>image/jpeg</string>
-			</array>
-			<key>CFBundleTypeName</key>
-			<string>JPEG image</string>
-			<key>CFBundleTypeOSTypes</key>
-			<array>
-				<string>JPEG</string>
-			</array>
-			<key>CFBundleTypeRole</key>
-			<string>Viewer</string>
-			<key>NSDocumentClass</key>
-			<string>BrowserDocument</string>
-		</dict>
-		<dict>
-			<key>CFBundleTypeExtensions</key>
-			<array>
-				<string>jp2</string>
-			</array>
-			<key>CFBundleTypeIconFile</key>
-			<string>document.icns</string>
-			<key>CFBundleTypeMIMETypes</key>
-			<array>
-				<string>image/jp2</string>
-			</array>
-			<key>CFBundleTypeName</key>
-			<string>JPEG 2000 image</string>
-			<key>CFBundleTypeOSTypes</key>
-			<array>
-				<string>jp2 </string>
-			</array>
-			<key>CFBundleTypeRole</key>
-			<string>Viewer</string>
-			<key>NSDocumentClass</key>
-			<string>BrowserDocument</string>
-		</dict>
-		<dict>
-			<key>CFBundleTypeExtensions</key>
-			<array>
-				<string>txt</string>
-				<string>text</string>
-			</array>
-			<key>CFBundleTypeIconFile</key>
-			<string>document.icns</string>
-			<key>CFBundleTypeMIMETypes</key>
-			<array>
-				<string>text/plain</string>
-			</array>
-			<key>CFBundleTypeName</key>
-			<string>Plain text document</string>
-			<key>CFBundleTypeOSTypes</key>
-			<array>
-				<string>TEXT</string>
-			</array>
-			<key>CFBundleTypeRole</key>
-			<string>Viewer</string>
-			<key>NSDocumentClass</key>
-			<string>BrowserDocument</string>
-		</dict>
-		<dict>
-			<key>CFBundleTypeExtensions</key>
-			<array>
-				<string>png</string>
-			</array>
-			<key>CFBundleTypeIconFile</key>
-			<string>document.icns</string>
-			<key>CFBundleTypeMIMETypes</key>
-			<array>
-				<string>image/png</string>
-			</array>
-			<key>CFBundleTypeName</key>
-			<string>PNG image</string>
-			<key>CFBundleTypeOSTypes</key>
-			<array>
-				<string>PNGf</string>
-			</array>
-			<key>CFBundleTypeRole</key>
-			<string>Viewer</string>
-			<key>NSDocumentClass</key>
-			<string>BrowserDocument</string>
-		</dict>
-		<dict>
-			<key>CFBundleTypeExtensions</key>
-			<array>
-				<string>rtf</string>
-			</array>
-			<key>CFBundleTypeIconFile</key>
-			<string>document.icns</string>
-			<key>CFBundleTypeMIMETypes</key>
-			<array>
-				<string>application/rtf</string>
-			</array>
-			<key>CFBundleTypeName</key>
-			<string>Rich Text Format (RTF) document</string>
-			<key>CFBundleTypeOSTypes</key>
-			<array>
-				<string>RTF </string>
-			</array>
-			<key>CFBundleTypeRole</key>
-			<string>Viewer</string>
-			<key>NSDocumentClass</key>
-			<string>BrowserDocument</string>
-		</dict>
-		<dict>
-			<key>CFBundleTypeExtensions</key>
-			<array>
-				<string>tiff</string>
-				<string>tif</string>
-			</array>
-			<key>CFBundleTypeIconFile</key>
-			<string>document.icns</string>
-			<key>CFBundleTypeMIMETypes</key>
-			<array>
-				<string>image/tiff</string>
-			</array>
-			<key>CFBundleTypeName</key>
-			<string>TIFF image</string>
-			<key>CFBundleTypeOSTypes</key>
-			<array>
-				<string>TIFF</string>
-			</array>
-			<key>CFBundleTypeRole</key>
-			<string>Viewer</string>
-			<key>NSDocumentClass</key>
-			<string>BrowserDocument</string>
-		</dict>
-		<dict>
-			<key>CFBundleTypeExtensions</key>
-			<array>
-				<string>url</string>
-			</array>
-			<key>CFBundleTypeIconFile</key>
-			<string>document.icns</string>
-			<key>CFBundleTypeName</key>
-			<string>Web site location</string>
-			<key>CFBundleTypeOSTypes</key>
-			<array>
-				<string>LINK</string>
-			</array>
-			<key>CFBundleTypeRole</key>
-			<string>Viewer</string>
-			<key>NSDocumentClass</key>
-			<string>BrowserDocument</string>
-		</dict>
-		<dict>
-			<key>CFBundleTypeExtensions</key>
-			<array>
-				<string>ico</string>
-			</array>
-			<key>CFBundleTypeIconFile</key>
-			<string>document.icns</string>
-			<key>CFBundleTypeMIMETypes</key>
-			<array>
-				<string>image/x-icon</string>
-			</array>
-			<key>CFBundleTypeName</key>
-			<string>Windows icon image</string>
-			<key>CFBundleTypeOSTypes</key>
-			<array>
-				<string>ICO </string>
-			</array>
-			<key>CFBundleTypeRole</key>
-			<string>Viewer</string>
-			<key>NSDocumentClass</key>
-			<string>BrowserDocument</string>
-		</dict>
-		<dict>
-			<key>CFBundleTypeExtensions</key>
-			<array>
-				<string>xhtml</string>
-				<string>xhtm</string>
-			</array>
-			<key>CFBundleTypeIconFile</key>
-			<string>document.icns</string>
-			<key>CFBundleTypeMIMETypes</key>
-			<array>
-				<string>application/xhtml+xml</string>
-			</array>
-			<key>CFBundleTypeName</key>
-			<string>XHTML document</string>
-			<key>CFBundleTypeRole</key>
-			<string>Viewer</string>
-			<key>NSDocumentClass</key>
-			<string>BrowserDocument</string>
-		</dict>
-		<dict>
-			<key>CFBundleTypeExtensions</key>
-			<array>
-				<string>xml</string>
-				<string>xbl</string>
-				<string>xsl</string>
-				<string>xslt</string>
-			</array>
-			<key>CFBundleTypeIconFile</key>
-			<string>document.icns</string>
-			<key>CFBundleTypeMIMETypes</key>
-			<array>
-				<string>application/xml</string>
-				<string>text/xml</string>
-			</array>
-			<key>CFBundleTypeName</key>
-			<string>XML document</string>
-			<key>CFBundleTypeRole</key>
-			<string>Viewer</string>
-			<key>NSDocumentClass</key>
-			<string>BrowserDocument</string>
-		</dict>
-	</array>
-	<key>CFBundleExecutable</key>
-	<string>${EXECUTABLE_NAME}</string>
-	<key>CFBundleGetInfoString</key>
-	<string>rVERSION, Copyright 2005-2009 Apple Inc.</string>
-	<key>CFBundleIconFile</key>
-	<string>webkit.icns</string>
-	<key>CFBundleIdentifier</key>
-	<string>org.webkit.nightly.WebKit</string>
-	<key>CFBundleInfoDictionaryVersion</key>
-	<string>6.0</string>
-	<key>CFBundleName</key>
-	<string>${PRODUCT_NAME}</string>
-	<key>CFBundlePackageType</key>
-	<string>APPL</string>
-	<key>CFBundleSignature</key>
-	<string>wbkt</string>
-	<key>CFBundleVersion</key>
-	<string>VERSION</string>
-	<key>CFBundleShortVersionString</key>
-	<string>rVERSION</string>
-	<key>LSArchitecturePriority</key>
-	<array>
-		<string>x86_64</string>
-		<string>i386</string>
-		<string>ppc</string>
-	</array>
-	<key>LSMinimumSystemVersionByArchitecture</key>
-	<dict>
-		<key>x86_64</key>
-		<string>10.6</string>
-	</dict>
-	<key>SUFeedURL</key>
-	<string>http://nightly.webkit.org/builds/trunk/mac/rss</string>
-	<key>SUShowReleaseNotes</key>
-	<false/>
-	<key>SUAllowsAutomaticUpdates</key>
-	<false/>
-	<key>SUPublicDSAKeyFile</key>
-	<string>nightly.webkit.org.public.pem</string>
-	<key>NSPrincipalClass</key>
-	<string>BrowserApplication</string>
-	<key>CFBundleHelpBookFolder</key>
-	<string>SafariHelp</string>
-	<key>CFBundleHelpBookName</key>
-	<string>Safari Help</string>
-	<key>CFBundleURLTypes</key>
-	<array>
-		<dict>
-			<key>CFBundleURLName</key>
-			<string>Web site URL</string>
-			<key>CFBundleURLSchemes</key>
-			<array>
-				<string>http</string>
-				<string>https</string>
-			</array>
-		</dict>
-		<dict>
-			<key>CFBundleURLName</key>
-			<string>local file URL</string>
-			<key>CFBundleURLSchemes</key>
-			<array>
-				<string>file</string>
-			</array>
-		</dict>
-	</array>
-	<key>NSAppleScriptEnabled</key>
-	<string>Yes</string>
-	<key>UTExportedTypeDeclarations</key>
-	<array>
-		<dict>
-			<key>UTTypeConformsTo</key>
-			<string>public.data</string>
-			<key>UTTypeDescription</key>
-			<string>Safari bookmark</string>
-			<key>UTTypeIdentifier</key>
-			<string>com.apple.safari.bookmark</string>
-			<key>UTTypeTagSpecification</key>
-			<dict>
-				<key>public.filename-extension</key>
-				<array>
-					<string>webbookmark</string>
-				</array>
-			</dict>
-		</dict>
-	</array>
-</dict>
-</plist>
diff --git a/Tools/WebKitLauncher/VERSION b/Tools/WebKitLauncher/VERSION
deleted file mode 100644
index fd85e30..0000000
--- a/Tools/WebKitLauncher/VERSION
+++ /dev/null
@@ -1 +0,0 @@
-VERSION
diff --git a/Tools/WebKitLauncher/WebKitLauncher.xcodeproj/project.pbxproj b/Tools/WebKitLauncher/WebKitLauncher.xcodeproj/project.pbxproj
deleted file mode 100644
index 4cf2f12..0000000
--- a/Tools/WebKitLauncher/WebKitLauncher.xcodeproj/project.pbxproj
+++ /dev/null
@@ -1,448 +0,0 @@
-// !$*UTF8*$!
-{
-	archiveVersion = 1;
-	classes = {
-	};
-	objectVersion = 45;
-	objects = {
-
-/* Begin PBXAggregateTarget section */
-		5DE79BC30F1C62450067BE08 /* Extract Sparkle */ = {
-			isa = PBXAggregateTarget;
-			buildConfigurationList = 5DE79BD80F1C629B0067BE08 /* Build configuration list for PBXAggregateTarget "Extract Sparkle" */;
-			buildPhases = (
-				5DE79BC20F1C62450067BE08 /* ShellScript */,
-			);
-			dependencies = (
-			);
-			name = "Extract Sparkle";
-			productName = "Extract Sparkle";
-		};
-/* End PBXAggregateTarget section */
-
-/* Begin PBXBuildFile section */
-		5D1067640FE63758002A2868 /* WebKitLauncherURLProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D1067620FE63758002A2868 /* WebKitLauncherURLProtocol.h */; };
-		5D1067650FE63758002A2868 /* WebKitLauncherURLProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D1067630FE63758002A2868 /* WebKitLauncherURLProtocol.m */; };
-		5D18A1FF103FE255006CA7C7 /* nightly.webkit.org.public.pem in Resources */ = {isa = PBXBuildFile; fileRef = 5D18A1FE103FE255006CA7C7 /* nightly.webkit.org.public.pem */; };
-		5D41141C0A50A9DE00C84CF0 /* VERSION in Resources */ = {isa = PBXBuildFile; fileRef = 5D41141B0A50A9DE00C84CF0 /* VERSION */; };
-		5D4DF982097F89FB0083D5E5 /* start.html in Resources */ = {isa = PBXBuildFile; fileRef = 5D4DF981097F89FB0083D5E5 /* start.html */; };
-		5D650F3609DB8B370075E9A8 /* WebKitNightlyEnabler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D650F3509DB8B370075E9A8 /* WebKitNightlyEnabler.m */; };
-		5D650F3A09DB8B410075E9A8 /* WebKitNightlyEnabler.dylib in Resources */ = {isa = PBXBuildFile; fileRef = 5D650F3409DB8B280075E9A8 /* WebKitNightlyEnabler.dylib */; };
-		5D877FCD0A5795F200D0C67B /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; };
-		5DA88F6D0FC8136000AB2F62 /* WebKitNightlyEnablerSparkle.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DA88F6B0FC8136000AB2F62 /* WebKitNightlyEnablerSparkle.h */; };
-		5DA88F6E0FC8136000AB2F62 /* WebKitNightlyEnablerSparkle.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DA88F6C0FC8136000AB2F62 /* WebKitNightlyEnablerSparkle.m */; };
-		5DA88F7A0FC813EB00AB2F62 /* WebKitNightlyEnabler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DA88F790FC813EB00AB2F62 /* WebKitNightlyEnabler.h */; };
-		5DB70525097B94CD009875EC /* webkit.icns in Resources */ = {isa = PBXBuildFile; fileRef = 5DB70524097B94CD009875EC /* webkit.icns */; };
-		8D11072D0486CEB800E47090 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; settings = {ATTRIBUTES = (); }; };
-		8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; };
-/* End PBXBuildFile section */
-
-/* Begin PBXContainerItemProxy section */
-		5D650F4409DB8B830075E9A8 /* PBXContainerItemProxy */ = {
-			isa = PBXContainerItemProxy;
-			containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */;
-			proxyType = 1;
-			remoteGlobalIDString = 5D650F3309DB8B280075E9A8;
-			remoteInfo = WebKitNightlyEnabler;
-		};
-		5DE79BC90F1C62850067BE08 /* PBXContainerItemProxy */ = {
-			isa = PBXContainerItemProxy;
-			containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */;
-			proxyType = 1;
-			remoteGlobalIDString = 5DE79BC30F1C62450067BE08;
-			remoteInfo = "Extract Sparkle";
-		};
-		5DE79BCB0F1C62890067BE08 /* PBXContainerItemProxy */ = {
-			isa = PBXContainerItemProxy;
-			containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */;
-			proxyType = 1;
-			remoteGlobalIDString = 5DE79BC30F1C62450067BE08;
-			remoteInfo = "Extract Sparkle";
-		};
-/* End PBXContainerItemProxy section */
-
-/* Begin PBXFileReference section */
-		1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; };
-		29B97316FDCFA39411CA2CEA /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
-		5D1067620FE63758002A2868 /* WebKitLauncherURLProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebKitLauncherURLProtocol.h; sourceTree = "<group>"; };
-		5D1067630FE63758002A2868 /* WebKitLauncherURLProtocol.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WebKitLauncherURLProtocol.m; sourceTree = "<group>"; };
-		5D18A1FE103FE255006CA7C7 /* nightly.webkit.org.public.pem */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = nightly.webkit.org.public.pem; sourceTree = "<group>"; };
-		5D41141B0A50A9DE00C84CF0 /* VERSION */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = VERSION; sourceTree = "<group>"; };
-		5D4DF981097F89FB0083D5E5 /* start.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = start.html; sourceTree = "<group>"; };
-		5D650F3409DB8B280075E9A8 /* WebKitNightlyEnabler.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = WebKitNightlyEnabler.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
-		5D650F3509DB8B370075E9A8 /* WebKitNightlyEnabler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WebKitNightlyEnabler.m; sourceTree = "<group>"; };
-		5DA88F6B0FC8136000AB2F62 /* WebKitNightlyEnablerSparkle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebKitNightlyEnablerSparkle.h; sourceTree = "<group>"; };
-		5DA88F6C0FC8136000AB2F62 /* WebKitNightlyEnablerSparkle.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WebKitNightlyEnablerSparkle.m; sourceTree = "<group>"; };
-		5DA88F790FC813EB00AB2F62 /* WebKitNightlyEnabler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebKitNightlyEnabler.h; sourceTree = "<group>"; };
-		5DA88F7E0FC8176100AB2F62 /* Base.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Base.xcconfig; sourceTree = "<group>"; };
-		5DA88F7F0FC8176100AB2F62 /* WebKitLauncher.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = WebKitLauncher.xcconfig; sourceTree = "<group>"; };
-		5DA88F800FC8176100AB2F62 /* WebKitNightlyEnabler.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = WebKitNightlyEnabler.xcconfig; sourceTree = "<group>"; };
-		5DB70524097B94CD009875EC /* webkit.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = webkit.icns; sourceTree = "<group>"; };
-		5DE79BEB0F1C63CC0067BE08 /* Sparkle.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Sparkle.framework; sourceTree = BUILT_PRODUCTS_DIR; };
-		8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
-		8D1107320486CEB800E47090 /* WebKit.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = WebKit.app; sourceTree = BUILT_PRODUCTS_DIR; };
-/* End PBXFileReference section */
-
-/* Begin PBXFrameworksBuildPhase section */
-		5D650F3209DB8B280075E9A8 /* Frameworks */ = {
-			isa = PBXFrameworksBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				5D877FCD0A5795F200D0C67B /* Cocoa.framework in Frameworks */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-		8D11072E0486CEB800E47090 /* Frameworks */ = {
-			isa = PBXFrameworksBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-/* End PBXFrameworksBuildPhase section */
-
-/* Begin PBXGroup section */
-		1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */ = {
-			isa = PBXGroup;
-			children = (
-				1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */,
-			);
-			name = "Linked Frameworks";
-			sourceTree = "<group>";
-		};
-		19C28FACFE9D520D11CA2CBB /* Products */ = {
-			isa = PBXGroup;
-			children = (
-				5DE79BEB0F1C63CC0067BE08 /* Sparkle.framework */,
-				8D1107320486CEB800E47090 /* WebKit.app */,
-				5D650F3409DB8B280075E9A8 /* WebKitNightlyEnabler.dylib */,
-			);
-			name = Products;
-			sourceTree = "<group>";
-		};
-		29B97314FDCFA39411CA2CEA /* WebKit */ = {
-			isa = PBXGroup;
-			children = (
-				29B97315FDCFA39411CA2CEA /* Source */,
-				5DA88F7D0FC8174E00AB2F62 /* Configurations */,
-				29B97317FDCFA39411CA2CEA /* Resources */,
-				29B97323FDCFA39411CA2CEA /* Frameworks */,
-				19C28FACFE9D520D11CA2CBB /* Products */,
-			);
-			name = WebKit;
-			sourceTree = "<group>";
-		};
-		29B97315FDCFA39411CA2CEA /* Source */ = {
-			isa = PBXGroup;
-			children = (
-				29B97316FDCFA39411CA2CEA /* main.m */,
-				5D1067620FE63758002A2868 /* WebKitLauncherURLProtocol.h */,
-				5D1067630FE63758002A2868 /* WebKitLauncherURLProtocol.m */,
-				5DA88F790FC813EB00AB2F62 /* WebKitNightlyEnabler.h */,
-				5D650F3509DB8B370075E9A8 /* WebKitNightlyEnabler.m */,
-				5DA88F6B0FC8136000AB2F62 /* WebKitNightlyEnablerSparkle.h */,
-				5DA88F6C0FC8136000AB2F62 /* WebKitNightlyEnablerSparkle.m */,
-			);
-			name = Source;
-			sourceTree = "<group>";
-		};
-		29B97317FDCFA39411CA2CEA /* Resources */ = {
-			isa = PBXGroup;
-			children = (
-				5D41141B0A50A9DE00C84CF0 /* VERSION */,
-				8D1107310486CEB800E47090 /* Info.plist */,
-				5D18A1FE103FE255006CA7C7 /* nightly.webkit.org.public.pem */,
-				5D4DF981097F89FB0083D5E5 /* start.html */,
-				5DB70524097B94CD009875EC /* webkit.icns */,
-			);
-			name = Resources;
-			sourceTree = "<group>";
-		};
-		29B97323FDCFA39411CA2CEA /* Frameworks */ = {
-			isa = PBXGroup;
-			children = (
-				1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */,
-			);
-			name = Frameworks;
-			sourceTree = "<group>";
-		};
-		5DA88F7D0FC8174E00AB2F62 /* Configurations */ = {
-			isa = PBXGroup;
-			children = (
-				5DA88F7E0FC8176100AB2F62 /* Base.xcconfig */,
-				5DA88F7F0FC8176100AB2F62 /* WebKitLauncher.xcconfig */,
-				5DA88F800FC8176100AB2F62 /* WebKitNightlyEnabler.xcconfig */,
-			);
-			path = Configurations;
-			sourceTree = "<group>";
-		};
-/* End PBXGroup section */
-
-/* Begin PBXHeadersBuildPhase section */
-		5D650F3009DB8B280075E9A8 /* Headers */ = {
-			isa = PBXHeadersBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				5D1067640FE63758002A2868 /* WebKitLauncherURLProtocol.h in Headers */,
-				5DA88F7A0FC813EB00AB2F62 /* WebKitNightlyEnabler.h in Headers */,
-				5DA88F6D0FC8136000AB2F62 /* WebKitNightlyEnablerSparkle.h in Headers */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-/* End PBXHeadersBuildPhase section */
-
-/* Begin PBXNativeTarget section */
-		5D650F3309DB8B280075E9A8 /* WebKitNightlyEnabler */ = {
-			isa = PBXNativeTarget;
-			buildConfigurationList = 5D650F3709DB8B370075E9A8 /* Build configuration list for PBXNativeTarget "WebKitNightlyEnabler" */;
-			buildPhases = (
-				5D650F3009DB8B280075E9A8 /* Headers */,
-				5D650F3109DB8B280075E9A8 /* Sources */,
-				5D650F3209DB8B280075E9A8 /* Frameworks */,
-			);
-			buildRules = (
-			);
-			dependencies = (
-				5DE79BCC0F1C62890067BE08 /* PBXTargetDependency */,
-			);
-			name = WebKitNightlyEnabler;
-			productName = WebKitNightlyEnabler;
-			productReference = 5D650F3409DB8B280075E9A8 /* WebKitNightlyEnabler.dylib */;
-			productType = "com.apple.product-type.library.dynamic";
-		};
-		8D1107260486CEB800E47090 /* WebKit */ = {
-			isa = PBXNativeTarget;
-			buildConfigurationList = C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "WebKit" */;
-			buildPhases = (
-				8D1107290486CEB800E47090 /* Resources */,
-				8D11072C0486CEB800E47090 /* Sources */,
-				8D11072E0486CEB800E47090 /* Frameworks */,
-				5DA892AC0FC8E3A100AB2F62 /* Copy Sparkle in to Frameworks */,
-			);
-			buildRules = (
-			);
-			dependencies = (
-				5D650F4509DB8B830075E9A8 /* PBXTargetDependency */,
-				5DE79BCA0F1C62850067BE08 /* PBXTargetDependency */,
-			);
-			name = WebKit;
-			productInstallPath = "$(HOME)/Applications";
-			productName = WebKit;
-			productReference = 8D1107320486CEB800E47090 /* WebKit.app */;
-			productType = "com.apple.product-type.application";
-		};
-/* End PBXNativeTarget section */
-
-/* Begin PBXProject section */
-		29B97313FDCFA39411CA2CEA /* Project object */ = {
-			isa = PBXProject;
-			buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "WebKitLauncher" */;
-			compatibilityVersion = "Xcode 3.1";
-			developmentRegion = English;
-			hasScannedForEncodings = 1;
-			knownRegions = (
-				English,
-				Japanese,
-				French,
-				German,
-			);
-			mainGroup = 29B97314FDCFA39411CA2CEA /* WebKit */;
-			projectDirPath = "";
-			projectRoot = "";
-			targets = (
-				8D1107260486CEB800E47090 /* WebKit */,
-				5D650F3309DB8B280075E9A8 /* WebKitNightlyEnabler */,
-				5DE79BC30F1C62450067BE08 /* Extract Sparkle */,
-			);
-		};
-/* End PBXProject section */
-
-/* Begin PBXResourcesBuildPhase section */
-		8D1107290486CEB800E47090 /* Resources */ = {
-			isa = PBXResourcesBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				5D18A1FF103FE255006CA7C7 /* nightly.webkit.org.public.pem in Resources */,
-				5D4DF982097F89FB0083D5E5 /* start.html in Resources */,
-				5D41141C0A50A9DE00C84CF0 /* VERSION in Resources */,
-				5DB70525097B94CD009875EC /* webkit.icns in Resources */,
-				5D650F3A09DB8B410075E9A8 /* WebKitNightlyEnabler.dylib in Resources */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-/* End PBXResourcesBuildPhase section */
-
-/* Begin PBXShellScriptBuildPhase section */
-		5DA892AC0FC8E3A100AB2F62 /* Copy Sparkle in to Frameworks */ = {
-			isa = PBXShellScriptBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-			);
-			inputPaths = (
-			);
-			name = "Copy Sparkle in to Frameworks";
-			outputPaths = (
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-			shellPath = /bin/sh;
-			shellScript = "if [[ \"${ENABLE_SPARKLE}\" == \"1\" ]]\nthen\n    ditto \"${CONFIGURATION_BUILD_DIR}/Sparkle.framework\" \"${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Sparkle.framework\"\n    cd \"${CONFIGURATION_BUILD_DIR}/Sparkle.framework/Resources\"\n    find . -name '*lproj' -not -name 'en.lproj' -print0 | xargs -0 rm -rf\nelse\n    rm -rf \"${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Sparkle.framework\"\nfi\n";
-		};
-		5DE79BC20F1C62450067BE08 /* ShellScript */ = {
-			isa = PBXShellScriptBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-			);
-			inputPaths = (
-				"$(SRCROOT)/Sparkle.framework.tar.gz",
-			);
-			outputPaths = (
-				"$(CONFIGURATION_BUILD_DIR)/Sparkle.framework",
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-			shellPath = /bin/sh;
-			shellScript = "if [[ \"${ENABLE_SPARKLE}\" == \"1\" ]]\nthen\n    tar -C \"${CONFIGURATION_BUILD_DIR}\" -xvzf \"${SRCROOT}/Sparkle.framework.tar.gz\"\n    cd \"${CONFIGURATION_BUILD_DIR}/Sparkle.framework/Resources\"\n    find . -name '*lproj' -not -name 'en.lproj' -print0 | xargs -0 rm -rf\nelse\n    rm -rf \"${CONFIGURATION_BUILD_DIR}/Sparkle.framework\"\nfi\n";
-		};
-/* End PBXShellScriptBuildPhase section */
-
-/* Begin PBXSourcesBuildPhase section */
-		5D650F3109DB8B280075E9A8 /* Sources */ = {
-			isa = PBXSourcesBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				5D1067650FE63758002A2868 /* WebKitLauncherURLProtocol.m in Sources */,
-				5D650F3609DB8B370075E9A8 /* WebKitNightlyEnabler.m in Sources */,
-				5DA88F6E0FC8136000AB2F62 /* WebKitNightlyEnablerSparkle.m in Sources */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-		8D11072C0486CEB800E47090 /* Sources */ = {
-			isa = PBXSourcesBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				8D11072D0486CEB800E47090 /* main.m in Sources */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-/* End PBXSourcesBuildPhase section */
-
-/* Begin PBXTargetDependency section */
-		5D650F4509DB8B830075E9A8 /* PBXTargetDependency */ = {
-			isa = PBXTargetDependency;
-			target = 5D650F3309DB8B280075E9A8 /* WebKitNightlyEnabler */;
-			targetProxy = 5D650F4409DB8B830075E9A8 /* PBXContainerItemProxy */;
-		};
-		5DE79BCA0F1C62850067BE08 /* PBXTargetDependency */ = {
-			isa = PBXTargetDependency;
-			target = 5DE79BC30F1C62450067BE08 /* Extract Sparkle */;
-			targetProxy = 5DE79BC90F1C62850067BE08 /* PBXContainerItemProxy */;
-		};
-		5DE79BCC0F1C62890067BE08 /* PBXTargetDependency */ = {
-			isa = PBXTargetDependency;
-			target = 5DE79BC30F1C62450067BE08 /* Extract Sparkle */;
-			targetProxy = 5DE79BCB0F1C62890067BE08 /* PBXContainerItemProxy */;
-		};
-/* End PBXTargetDependency section */
-
-/* Begin XCBuildConfiguration section */
-		5D650F3809DB8B370075E9A8 /* Debug */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = 5DA88F800FC8176100AB2F62 /* WebKitNightlyEnabler.xcconfig */;
-			buildSettings = {
-			};
-			name = Debug;
-		};
-		5D650F3909DB8B370075E9A8 /* Release */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = 5DA88F800FC8176100AB2F62 /* WebKitNightlyEnabler.xcconfig */;
-			buildSettings = {
-			};
-			name = Release;
-		};
-		5DE79BC40F1C62450067BE08 /* Debug */ = {
-			isa = XCBuildConfiguration;
-			buildSettings = {
-				PRODUCT_NAME = "Extract Sparkle";
-			};
-			name = Debug;
-		};
-		5DE79BC50F1C62450067BE08 /* Release */ = {
-			isa = XCBuildConfiguration;
-			buildSettings = {
-				PRODUCT_NAME = "Extract Sparkle";
-			};
-			name = Release;
-		};
-		C01FCF4B08A954540054247B /* Debug */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = 5DA88F7F0FC8176100AB2F62 /* WebKitLauncher.xcconfig */;
-			buildSettings = {
-			};
-			name = Debug;
-		};
-		C01FCF4C08A954540054247B /* Release */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = 5DA88F7F0FC8176100AB2F62 /* WebKitLauncher.xcconfig */;
-			buildSettings = {
-			};
-			name = Release;
-		};
-		C01FCF4F08A954540054247B /* Debug */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = 5DA88F7E0FC8176100AB2F62 /* Base.xcconfig */;
-			buildSettings = {
-				GCC_OPTIMIZATION_LEVEL = 0;
-				ONLY_ACTIVE_ARCH = YES;
-			};
-			name = Debug;
-		};
-		C01FCF5008A954540054247B /* Release */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = 5DA88F7E0FC8176100AB2F62 /* Base.xcconfig */;
-			buildSettings = {
-			};
-			name = Release;
-		};
-/* End XCBuildConfiguration section */
-
-/* Begin XCConfigurationList section */
-		5D650F3709DB8B370075E9A8 /* Build configuration list for PBXNativeTarget "WebKitNightlyEnabler" */ = {
-			isa = XCConfigurationList;
-			buildConfigurations = (
-				5D650F3809DB8B370075E9A8 /* Debug */,
-				5D650F3909DB8B370075E9A8 /* Release */,
-			);
-			defaultConfigurationIsVisible = 0;
-			defaultConfigurationName = Release;
-		};
-		5DE79BD80F1C629B0067BE08 /* Build configuration list for PBXAggregateTarget "Extract Sparkle" */ = {
-			isa = XCConfigurationList;
-			buildConfigurations = (
-				5DE79BC40F1C62450067BE08 /* Debug */,
-				5DE79BC50F1C62450067BE08 /* Release */,
-			);
-			defaultConfigurationIsVisible = 0;
-			defaultConfigurationName = Release;
-		};
-		C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "WebKit" */ = {
-			isa = XCConfigurationList;
-			buildConfigurations = (
-				C01FCF4B08A954540054247B /* Debug */,
-				C01FCF4C08A954540054247B /* Release */,
-			);
-			defaultConfigurationIsVisible = 0;
-			defaultConfigurationName = Release;
-		};
-		C01FCF4E08A954540054247B /* Build configuration list for PBXProject "WebKitLauncher" */ = {
-			isa = XCConfigurationList;
-			buildConfigurations = (
-				C01FCF4F08A954540054247B /* Debug */,
-				C01FCF5008A954540054247B /* Release */,
-			);
-			defaultConfigurationIsVisible = 0;
-			defaultConfigurationName = Release;
-		};
-/* End XCConfigurationList section */
-	};
-	rootObject = 29B97313FDCFA39411CA2CEA /* Project object */;
-}
diff --git a/Tools/WebKitLauncher/WebKitLauncherURLProtocol.h b/Tools/WebKitLauncher/WebKitLauncherURLProtocol.h
deleted file mode 100644
index 9159f5d..0000000
--- a/Tools/WebKitLauncher/WebKitLauncherURLProtocol.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Copyright (C) 2009 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#import <Foundation/Foundation.h>
-
-@interface WebKitLauncherURLProtocol : NSURLProtocol
-{
-
-}
-
-@end
diff --git a/Tools/WebKitLauncher/WebKitLauncherURLProtocol.m b/Tools/WebKitLauncher/WebKitLauncherURLProtocol.m
deleted file mode 100644
index 9e56857..0000000
--- a/Tools/WebKitLauncher/WebKitLauncherURLProtocol.m
+++ /dev/null
@@ -1,123 +0,0 @@
-/*
- * Copyright (C) 2009 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#import "WebKitLauncherURLProtocol.h"
-#import "WebKitNightlyEnabler.h"
-
-#if ENABLE_SPARKLE
-#import <AppKit/AppKit.h>
-#import <Sparkle/Sparkle.h>
-#endif
-
-@interface WebKitLauncherURLProtocol (ImplementationDetails)
--(void)handleIsWebKitLauncherAvailableJS;
--(void)handleCheckForUpdates;
--(void)resourceNotFound;
-@end
-
-@implementation WebKitLauncherURLProtocol
-
-+(void)load
-{
-    [NSURLProtocol registerClass:self];
-}
-
-+(BOOL)canInitWithRequest:(NSURLRequest *)request
-{
-    if (![[[request URL] scheme] isEqualToString:@"x-webkit-launcher"])
-        return NO;
-
-    NSURL *mainDocumentURL = [request mainDocumentURL];
-    if (!mainDocumentURL)
-        return NO;
-
-    NSString *mainDocumentHost = [mainDocumentURL host];
-    if (![mainDocumentHost isEqualToString:@"webkit.org"] && ![mainDocumentHost hasSuffix:@".webkit.org"])
-        return NO;
-
-    return YES;
-}
-
-+(NSURLRequest *)canonicalRequestForRequest:(NSURLRequest *)request
-{
-    return request;
-}
-
--(void)startLoading
-{
-    NSURLRequest *request = [self request];
-    NSString *resourceSpecifier = [[request URL] resourceSpecifier];
-    if ([resourceSpecifier isEqualToString:@"is-x-webkit-launcher-available.js"]) {
-        [self handleIsWebKitLauncherAvailableJS];
-        return;
-    }
-#if ENABLE_SPARKLE
-    if ([resourceSpecifier isEqualToString:@"check-for-updates"]) {
-        [self handleCheckForUpdates];
-        return;
-    }
-#endif
-    [self resourceNotFound];
-}
-
--(void)stopLoading
-{
-}
-
--(void)handleIsWebKitLauncherAvailableJS
-{
-    id client = [self client];
-    NSURLResponse *response = [[NSURLResponse alloc] initWithURL:[[self request] URL] MIMEType:@"text/javascript" expectedContentLength:0 textEncodingName:@"utf-8"];
-    [client URLProtocol:self didReceiveResponse:response cacheStoragePolicy:NSURLCacheStorageAllowed];
-    [response release];
-
-    NSData *data = [@"var isWebKitLauncherAvailable = true;" dataUsingEncoding:NSUTF8StringEncoding];
-    [client URLProtocol:self didLoadData:data];
-    [client URLProtocolDidFinishLoading:self];
-}
-
-#if ENABLE_SPARKLE
--(void)handleCheckForUpdates
-{
-    id client = [self client];
-    NSURLResponse *response = [[NSURLResponse alloc] initWithURL:[[self request] URL] MIMEType:@"text/plain" expectedContentLength:0 textEncodingName:@"utf-8"];
-    [client URLProtocol:self didReceiveResponse:response cacheStoragePolicy:NSURLCacheStorageNotAllowed];
-    [response release];
-
-    SUUpdater *updater = [SUUpdater updaterForBundle:webKitLauncherBundle()];
-    [updater performSelectorOnMainThread:@selector(checkForUpdates:) withObject:self waitUntilDone:NO];
-    [client URLProtocolDidFinishLoading:self];
-}
-#endif
-
--(void)resourceNotFound
-{
-    id client = [self client];
-    NSDictionary *infoDictionary = [NSDictionary dictionaryWithObject:NSErrorFailingURLStringKey forKey:[[self request] URL]];
-    NSError *error = [NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorFileDoesNotExist userInfo:infoDictionary];
-    [client URLProtocol:self didFailWithError:error];
-}
-
-@end
diff --git a/Tools/WebKitLauncher/WebKitNightlyEnabler.h b/Tools/WebKitLauncher/WebKitNightlyEnabler.h
deleted file mode 100644
index 2fe1444..0000000
--- a/Tools/WebKitLauncher/WebKitNightlyEnabler.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * Copyright (C) 2009 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-#ifndef WebKitNightlyEnabler_h
-#define WebKitNightlyEnabler_h
-
-@class NSBundle;
-extern NSBundle *webKitLauncherBundle();
-
-#endif // WebKitNightlyEnabler_h
diff --git a/Tools/WebKitLauncher/WebKitNightlyEnabler.m b/Tools/WebKitLauncher/WebKitNightlyEnabler.m
deleted file mode 100644
index eef0f8c..0000000
--- a/Tools/WebKitLauncher/WebKitNightlyEnabler.m
+++ /dev/null
@@ -1,236 +0,0 @@
-/*
- * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc.  All rights reserved.
- * Copyright (C) 2006 Graham Dennis.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import <Cocoa/Cocoa.h>
-#import "WebKitNightlyEnablerSparkle.h"
-
-static void enableWebKitNightlyBehaviour() __attribute__ ((constructor));
-
-static NSString *WKNERunState = @"WKNERunState";
-static NSString *WKNEShouldMonitorShutdowns = @"WKNEShouldMonitorShutdowns";
-
-typedef enum {
-    RunStateShutDown,
-    RunStateInitializing,
-    RunStateRunning
-} WKNERunStates;
-
-static char *webKitAppPath;
-static bool extensionBundlesWereLoaded = NO;
-static NSSet *extensionPaths = nil;
-
-static int32_t systemVersion()
-{
-    static SInt32 version = 0;
-    if (!version)
-        Gestalt(gestaltSystemVersion, &version);
-
-    return version;
-}
-
-
-static void myBundleDidLoad(CFNotificationCenterRef center, void *observer, CFStringRef name, const void *object, CFDictionaryRef userInfo)
-{
-    NSBundle *bundle = (NSBundle *)object;
-    NSString *bundlePath = [[bundle bundlePath] stringByAbbreviatingWithTildeInPath];
-    NSString *bundleFileName = [bundlePath lastPathComponent];
-
-    // Explicitly ignore SIMBL.bundle, as its only purpose is to load extensions
-    // on a per-application basis.  It's presence indicates a user has application
-    // extensions, but not that any will be loaded into Safari
-    if ([bundleFileName isEqualToString:@"SIMBL.bundle"])
-        return;
-
-    // If the bundle lives inside a known extension path, flag it as an extension
-    NSEnumerator *e = [extensionPaths objectEnumerator];
-    NSString *path = nil;
-    while ((path = [e nextObject])) {
-        if ([bundlePath length] < [path length])
-            continue;
-
-        if ([[bundlePath substringToIndex:[path length]] isEqualToString:path]) {
-            NSLog(@"Extension detected: %@", bundlePath);
-            extensionBundlesWereLoaded = YES;
-            break;
-        }
-    }
-}
-
-static void myApplicationWillFinishLaunching(CFNotificationCenterRef center, void *observer, CFStringRef name, const void *object, CFDictionaryRef userInfo)
-{
-    CFNotificationCenterRemoveObserver(CFNotificationCenterGetLocalCenter(), &myApplicationWillFinishLaunching, NULL, NULL);
-    CFNotificationCenterRemoveObserver(CFNotificationCenterGetLocalCenter(), &myBundleDidLoad, NULL, NULL);
-    [extensionPaths release];
-    extensionPaths = nil;
-
-    NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
-    [userDefaults setInteger:RunStateRunning forKey:WKNERunState];
-    [userDefaults synchronize];
-
-    if (extensionBundlesWereLoaded)
-        NSRunInformationalAlertPanel(@"Safari extensions detected",
-                                     @"Safari extensions were detected on your system.  Extensions are incompatible with nightly builds of WebKit, and may cause crashes or incorrect behavior.  Please disable them if you experience such behavior.", @"Continue",
-                                     nil, nil);
-
-    initializeSparkle();
-}
-
-static void myApplicationWillTerminate(CFNotificationCenterRef center, void *observer, CFStringRef name, const void *object, CFDictionaryRef userInfo)
-{
-    NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
-    [userDefaults setInteger:RunStateShutDown forKey:WKNERunState];
-    [userDefaults synchronize];
-}
-
-NSBundle *webKitLauncherBundle()
-{
-    NSString *executablePath = [NSString stringWithUTF8String:webKitAppPath];
-    NSRange appLocation = [executablePath rangeOfString:@".app/" options:NSBackwardsSearch];
-    NSString *appPath = [executablePath substringToIndex:appLocation.location + appLocation.length];
-    return [NSBundle bundleWithPath:appPath];
-}
-
-extern char **_CFGetProcessPath() __attribute__((weak));
-extern OSStatus _RegisterApplication(CFDictionaryRef additionalAppInfoRef, ProcessSerialNumber* myPSN) __attribute__((weak));
-
-static void poseAsWebKitApp()
-{
-    webKitAppPath = strdup(getenv("WebKitAppPath"));
-    if (!webKitAppPath)
-        return;
-
-    unsetenv("WebKitAppPath");
-
-    // Set up the main bundle early so it points at Safari.app
-    CFBundleGetMainBundle();
-
-    if (systemVersion() < 0x1060) {
-        if (!_CFGetProcessPath)
-            return;
-
-        // Fiddle with CoreFoundation to have it pick up the executable path as being within WebKit.app
-        char **processPath = _CFGetProcessPath();
-        *processPath = NULL;
-        setenv("CFProcessPath", webKitAppPath, 1);
-        _CFGetProcessPath();
-        unsetenv("CFProcessPath");
-    } else {
-        if (!_RegisterApplication)
-            return;
-
-        // Register the application with LaunchServices, passing a customized registration dictionary that
-        // uses the WebKit launcher as the application bundle.
-        NSBundle *bundle = webKitLauncherBundle();
-        NSMutableDictionary *checkInDictionary = [[bundle infoDictionary] mutableCopy];
-        [checkInDictionary setObject:[bundle bundlePath] forKey:@"LSBundlePath"];
-        [checkInDictionary setObject:[checkInDictionary objectForKey:(NSString *)kCFBundleNameKey] forKey:@"LSDisplayName"];
-        _RegisterApplication((CFDictionaryRef)checkInDictionary, 0);
-        [checkInDictionary release];
-    }
-}
-
-static BOOL insideSafari4OnTigerTrampoline()
-{
-    // If we're not on Tiger then we can't be in the trampoline state.
-    if ((systemVersion() & 0xFFF0) != 0x1040)
-        return NO;
-
-    // If we're running Safari < 4.0 then we can't be in the trampoline state.
-    CFBundleRef safariBundle = CFBundleGetMainBundle();
-    CFStringRef safariVersion = CFBundleGetValueForInfoDictionaryKey(safariBundle, CFSTR("CFBundleShortVersionString"));
-    if ([(NSString *)safariVersion intValue] < 4)
-        return NO;
-
-    const char* frameworkPath = getenv("DYLD_FRAMEWORK_PATH");
-    if (!frameworkPath)
-        frameworkPath = "";
-
-    // If the framework search path is empty or otherwise does not contain the Safari
-    // framework's Frameworks directory then we are in the trampoline state.
-    const char safariFrameworkSearchPath[] = "/System/Library/PrivateFrameworks/Safari.framework/Frameworks";
-    return strstr(frameworkPath, safariFrameworkSearchPath) == 0;
-}
-
-static void enableWebKitNightlyBehaviour()
-{
-    // If we're inside Safari in its trampoline state, it will very shortly relaunch itself.
-    // We bail out here so that we'll be called again in the freshly-launched Safari process.
-    if (insideSafari4OnTigerTrampoline())
-        return;
-
-    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
-
-    unsetenv("DYLD_INSERT_LIBRARIES");
-    poseAsWebKitApp();
-
-    extensionPaths = [[NSSet alloc] initWithObjects:@"~/Library/InputManagers/", @"/Library/InputManagers/",
-                                                    @"~/Library/Application Support/SIMBL/Plugins/", @"/Library/Application Support/SIMBL/Plugins/",
-                                                    @"~/Library/Application Enhancers/", @"/Library/Application Enhancers/",
-                                                    nil];
-
-    // As of 2008-11 attempting to load Saft would cause a crash on launch, so prevent it from being loaded.
-    NSArray *disabledInputManagers = [NSArray arrayWithObjects:@"Saft", nil];
-
-    NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
-    NSDictionary *defaultPrefs = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:RunStateShutDown], WKNERunState,
-                                                                            [NSNumber numberWithBool:YES], WKNEShouldMonitorShutdowns,
-                                                                            disabledInputManagers, @"NSDisabledInputManagers", nil];
-    [userDefaults registerDefaults:defaultPrefs];
-    if ([userDefaults boolForKey:WKNEShouldMonitorShutdowns]) {
-        WKNERunStates savedState = (WKNERunStates)[userDefaults integerForKey:WKNERunState];
-        if (savedState == RunStateInitializing) {
-            // Use CoreFoundation here as AppKit hasn't been initialized at this stage of Safari's lifetime
-            CFOptionFlags responseFlags;
-            CFUserNotificationDisplayAlert(0, kCFUserNotificationCautionAlertLevel,
-                                           NULL, NULL, NULL,
-                                           CFSTR("WebKit failed to open correctly"),
-                                           CFSTR("WebKit failed to open correctly on your previous attempt. Please disable any Safari extensions that you may have installed.  If the problem continues to occur, please file a bug report at http://webkit.org/quality/reporting.html"), 
-                                           CFSTR("Continue"), NULL, NULL, &responseFlags);
-        }
-        else if (savedState == RunStateRunning) {
-            NSLog(@"WebKit failed to shut down cleanly.  Checking for Safari extensions.");
-            CFNotificationCenterAddObserver(CFNotificationCenterGetLocalCenter(), &myBundleDidLoad,
-                                            myBundleDidLoad, (CFStringRef) NSBundleDidLoadNotification,
-                                            NULL, CFNotificationSuspensionBehaviorDeliverImmediately);
-        }
-    }
-    [userDefaults setInteger:RunStateInitializing forKey:WKNERunState];
-    [userDefaults synchronize];
-
-    CFNotificationCenterAddObserver(CFNotificationCenterGetLocalCenter(), &myApplicationWillFinishLaunching,
-                                    myApplicationWillFinishLaunching, (CFStringRef) NSApplicationWillFinishLaunchingNotification,
-                                    NULL, CFNotificationSuspensionBehaviorDeliverImmediately);
-    CFNotificationCenterAddObserver(CFNotificationCenterGetLocalCenter(), &myApplicationWillTerminate,
-                                    myApplicationWillTerminate, (CFStringRef) NSApplicationWillTerminateNotification,
-                                    NULL, CFNotificationSuspensionBehaviorDeliverImmediately);
-
-    NSLog(@"WebKit %@ initialized.", [webKitLauncherBundle() objectForInfoDictionaryKey:@"CFBundleShortVersionString"]);
-
-    [pool release];
-}
diff --git a/Tools/WebKitLauncher/WebKitNightlyEnablerSparkle.h b/Tools/WebKitLauncher/WebKitNightlyEnablerSparkle.h
deleted file mode 100644
index 7ff4fef..0000000
--- a/Tools/WebKitLauncher/WebKitNightlyEnablerSparkle.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * Copyright (C) 2009 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-#ifndef WebKitNightlyEnablerSparkle_h
-#define WebKitNightlyEnablerSparkle_h
-
-extern void initializeSparkle();
-
-#endif // WebKitNightlyEnablerSparkle_h
diff --git a/Tools/WebKitLauncher/WebKitNightlyEnablerSparkle.m b/Tools/WebKitLauncher/WebKitNightlyEnablerSparkle.m
deleted file mode 100644
index 8b13ab8..0000000
--- a/Tools/WebKitLauncher/WebKitNightlyEnablerSparkle.m
+++ /dev/null
@@ -1,156 +0,0 @@
-/*
- * Copyright (C) 2009 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#if !ENABLE_SPARKLE
-
-void initializeSparkle()
-{
-    // No-op.
-}
-
-#else // ENABLE_SPARKLE
-
-#import <Cocoa/Cocoa.h>
-#import <Sparkle/SUUpdater.h>
-#import <objc/objc-runtime.h>
-#import "WebKitNightlyEnabler.h"
-
-// We need to tweak the wording of the prompt to make sense in the context of WebKit and Safari.
-static NSString* updatePermissionPromptDescription(id self, SEL _cmd)
-{
-    return @"Should WebKit automatically check for updates? You can always check for updates manually from the Safari menu.";
-}
-
-static NSPanel *updateAlertPanel(id updateItem, id host)
-{
-    NSString *hostName = objc_msgSend(host, @selector(name));
-    NSPanel *panel = NSGetInformationalAlertPanel([NSString stringWithFormat:@"Would you like to download and install %@ %@ now?", hostName, objc_msgSend(updateItem, @selector(displayVersionString))],
-                                                  [NSString stringWithFormat:@"You are currently running %@ %@.", hostName, objc_msgSend(host, @selector(displayVersion))],
-                                                  @"Install Update", @"Skip This Version", @"Remind Me Later");
-    NSArray *subviews = [[panel contentView] subviews];
-    NSEnumerator *e = [subviews objectEnumerator];
-    NSView *view;
-    while ((view = [e nextObject])) {
-        if (![view isKindOfClass:[NSButton class]])
-            continue;
-
-        NSButton *button = (NSButton *)view;
-        [button setAction:@selector(webKitHandleButtonPress:)];
-        if ([button tag] == NSAlertOtherReturn)
-            [button setKeyEquivalent:@"\033"];
-    }
-    [panel center];
-    return panel;
-}
-
-// Sparkle's udpate alert panel looks odd with the release notes hidden, so we
-// swap it out with a standard NSAlert-style panel instead.
-static id updateAlertInitForAlertPanel(id self, SEL _cmd, id updateItem, id host)
-{
-    NSPanel *panel = updateAlertPanel(updateItem, host);
-    [panel setDelegate:self];
-
-    self = [self initWithWindow:panel];
-    if (!self)
-        return nil;
-
-    [updateItem retain];
-    [host retain];
-
-    object_setInstanceVariable(self, "updateItem", (void*)updateItem);
-    object_setInstanceVariable(self, "host", (void*)host);
-
-    [self setShouldCascadeWindows:NO];
-
-    return self;
-}
-
-@implementation NSAlert (WebKitLauncherExtensions)
-
-- (void)webKitHandleButtonPress:(id)sender
-{
-    // We rely on the fact that NSAlertOtherReturn == -1, NSAlertAlternateReturn == 0 and NSAlertDefaultReturn == 1
-    // to map the button tag to the corresponding selector
-    SEL selectors[] = { @selector(remindMeLater:), @selector(skipThisVersion:), @selector(installUpdate:) };
-    SEL selector = selectors[[sender tag] + 1];
-
-    id delegate = [[sender window] delegate];
-    objc_msgSend(delegate, selector, sender);
-}
-
-@end
-
-#if __LP64__
-
-#define setMethodImplementation method_setImplementation
-
-#else
-
-static void setMethodImplementation(Method m, IMP imp)
-{
-    m->method_imp = imp;
-}
-
-#endif
-
-static NSString *userAgentStringForSparkle()
-{
-    NSBundle *safariBundle = [NSBundle mainBundle];
-    NSString *safariVersion = [[safariBundle localizedInfoDictionary] valueForKey:@"CFBundleShortVersionString"];
-    NSString *safariBuild = [[[safariBundle infoDictionary] valueForKey:(NSString *)kCFBundleVersionKey] substringFromIndex:1];
-    NSString *webKitRevision = [[webKitLauncherBundle() infoDictionary] valueForKey:(NSString *)kCFBundleVersionKey];
-    NSString *applicationName = [NSString stringWithFormat:@"Version/%@ Safari/%@ WebKitRevision/%@", safariVersion, safariBuild, webKitRevision];
-    Class WebView = objc_lookUpClass("WebView");
-    return objc_msgSend(WebView, @selector(_standardUserAgentWithApplicationName:), applicationName);
-}
-
-void initializeSparkle()
-{
-    // Override some Sparkle behaviour
-    Method methodToPatch = class_getInstanceMethod(objc_getRequiredClass("SUUpdatePermissionPrompt"), @selector(promptDescription));
-    setMethodImplementation(methodToPatch, (IMP)updatePermissionPromptDescription);
-
-    methodToPatch = class_getInstanceMethod(objc_getRequiredClass("SUUpdateAlert"), @selector(initWithAppcastItem:host:));
-    setMethodImplementation(methodToPatch, (IMP)updateAlertInitForAlertPanel);
-
-    SUUpdater *updater = [SUUpdater updaterForBundle:webKitLauncherBundle()];
-    [updater setUserAgentString:userAgentStringForSparkle()];
-
-    // Find the first separator on the Safari menu…
-    NSMenu *applicationSubmenu = [[[NSApp mainMenu] itemAtIndex:0] submenu];
-    int i = 0;
-    for (; i < [applicationSubmenu numberOfItems]; i++) {
-        if ([[applicationSubmenu itemAtIndex:i] isSeparatorItem])
-            break;
-    }
-
-    // … and insert a menu item that can be used to manually trigger update checks.
-    NSMenuItem *updateMenuItem = [[NSMenuItem alloc] initWithTitle:@"Check for WebKit Updates…" action:@selector(checkForUpdates:) keyEquivalent:@""];
-    [updateMenuItem setTarget:updater];
-    [applicationSubmenu insertItem:updateMenuItem atIndex:i];
-    [updateMenuItem release];
-}
-
-#endif // ENABLE_SPARKLE
diff --git a/Tools/WebKitLauncher/main.m b/Tools/WebKitLauncher/main.m
deleted file mode 100644
index 4fee68a..0000000
--- a/Tools/WebKitLauncher/main.m
+++ /dev/null
@@ -1,248 +0,0 @@
-/*
- * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer. 
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution. 
- * 3.  Neither the name of Apple Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission. 
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import <Cocoa/Cocoa.h>
-#import <CoreFoundation/CoreFoundation.h>
-
-// We need to weak-import posix_spawn and friends as they're not available on Tiger.
-// The BSD-level system headers do not have availability macros, so we redeclare the
-// functions ourselves with the "weak" attribute.
-
-#define WEAK_IMPORT __attribute__((weak))
-
-#define POSIX_SPAWN_SETEXEC 0x0040
-typedef void *posix_spawnattr_t;
-typedef void *posix_spawn_file_actions_t;
-int posix_spawnattr_init(posix_spawnattr_t *) WEAK_IMPORT;
-int posix_spawn(pid_t * __restrict, const char * __restrict, const posix_spawn_file_actions_t *, const posix_spawnattr_t * __restrict, char *const __argv[ __restrict], char *const __envp[ __restrict]) WEAK_IMPORT;
-int posix_spawnattr_setbinpref_np(posix_spawnattr_t * __restrict, size_t, cpu_type_t *__restrict, size_t *__restrict) WEAK_IMPORT;
-int posix_spawnattr_setflags(posix_spawnattr_t *, short) WEAK_IMPORT;
-
-
-static void displayErrorAndQuit(NSString *title, NSString *message)
-{
-    NSApplicationLoad();
-    NSRunCriticalAlertPanel(title, message, @"Quit", nil, nil);
-    exit(0);
-}
-
-static int getLastVersionShown()
-{
-    [[NSUserDefaults standardUserDefaults] registerDefaults:[NSDictionary dictionaryWithObject:@"-1" forKey:@"StartPageShownInVersion"]];
-    return [[NSUserDefaults standardUserDefaults] integerForKey:@"StartPageShownInVersion"];
-}
-
-static void saveLastVersionShown(int lastVersion)
-{
-    [[NSUserDefaults standardUserDefaults] setInteger:lastVersion forKey:@"StartPageShownInVersion"];
-    [[NSUserDefaults standardUserDefaults] synchronize];
-}
-
-static NSString *getPathForStartPage()
-{
-    return [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"start.html"];
-}
-
-static int getCurrentVersion()
-{
-    return [[[[NSBundle mainBundle] infoDictionary] valueForKey:(NSString *)kCFBundleVersionKey] intValue];
-}
-
-static int getShowStartPageVersion()
-{
-    return getCurrentVersion() + 1;
-}
-
-static BOOL startPageDisabled()
-{
-    return [[NSUserDefaults standardUserDefaults] boolForKey:@"StartPageDisabled"];
-}
-
-static void addStartPageToArgumentsIfNeeded(NSMutableArray *arguments)
-{
-    if (startPageDisabled())
-        return;
-
-    if (getLastVersionShown() < getShowStartPageVersion()) {
-        saveLastVersionShown(getCurrentVersion());
-        NSString *startPagePath = getPathForStartPage();
-        if (startPagePath)
-            [arguments addObject:startPagePath];
-    }
-}
-
-static cpu_type_t preferredArchitecture()
-{
-#if defined(__ppc__)
-    return CPU_TYPE_POWERPC;
-#elif defined(__LP64__)
-    return CPU_TYPE_X86_64;
-#else
-    return CPU_TYPE_X86;
-#endif
-}
-
-static void myExecve(NSString *executable, NSArray *args, NSDictionary *environment)
-{
-    char **argv = (char **)calloc(sizeof(char *), [args count] + 1);
-    char **env = (char **)calloc(sizeof(char *), [environment count] + 1);
-
-    NSEnumerator *e = [args objectEnumerator];
-    NSString *s;
-    int i = 0;
-    while ((s = [e nextObject]))
-        argv[i++] = (char *) [s UTF8String];
-
-    e = [environment keyEnumerator];
-    i = 0;
-    while ((s = [e nextObject]))
-        env[i++] = (char *) [[NSString stringWithFormat:@"%@=%@", s, [environment objectForKey:s]] UTF8String];
-
-    if (posix_spawnattr_init && posix_spawn && posix_spawnattr_setbinpref_np && posix_spawnattr_setflags) {
-        posix_spawnattr_t attr;
-        posix_spawnattr_init(&attr);
-        cpu_type_t architecturePreference[] = { preferredArchitecture(), CPU_TYPE_X86 };
-        posix_spawnattr_setbinpref_np(&attr, 2, architecturePreference, 0);
-        short flags = POSIX_SPAWN_SETEXEC;
-        posix_spawnattr_setflags(&attr, flags);
-        posix_spawn(NULL, [executable fileSystemRepresentation], NULL, &attr, argv, env);
-    } else
-        execve([executable fileSystemRepresentation], argv, env);
-}
-
-static NSBundle *locateSafariBundle()
-{
-    NSArray *applicationDirectories = NSSearchPathForDirectoriesInDomains(NSApplicationDirectory, NSAllDomainsMask, YES);
-    NSEnumerator *e = [applicationDirectories objectEnumerator];
-    NSString *applicationDirectory;
-    while ((applicationDirectory = [e nextObject])) {
-        NSString *possibleSafariPath = [applicationDirectory stringByAppendingPathComponent:@"Safari.app"];
-        NSBundle *possibleSafariBundle = [NSBundle bundleWithPath:possibleSafariPath];
-        if ([[possibleSafariBundle bundleIdentifier] isEqualToString:@"com.apple.Safari"])
-            return possibleSafariBundle;
-    }
-
-    CFURLRef safariURL = nil;
-    OSStatus err = LSFindApplicationForInfo(kLSUnknownCreator, CFSTR("com.apple.Safari"), nil, nil, &safariURL);
-    if (err != noErr)
-        displayErrorAndQuit(@"Unable to locate Safari", @"Nightly builds of WebKit require Safari to run.  Please check that it is available and then try again.");
-
-    NSBundle *safariBundle = [NSBundle bundleWithPath:[(NSURL *)safariURL path]];
-    CFRelease(safariURL);
-    return safariBundle;
-}
-
-static NSString *currentMacOSXVersion()
-{
-    SInt32 version;
-    if (Gestalt(gestaltSystemVersion, &version) != noErr)
-        return @"10.4";
-
-    return [NSString stringWithFormat:@"%x.%x", (version & 0xFF00) >> 8, (version & 0x00F0) >> 4];
-}
-
-static NSString *fallbackMacOSXVersion(NSString *systemVersion)
-{
-    NSDictionary *fallbackVersionMap = [[NSUserDefaults standardUserDefaults] dictionaryForKey:@"FallbackSystemVersions"];
-    if (!fallbackVersionMap)
-        return nil;
-    NSString *fallbackSystemVersion = [fallbackVersionMap objectForKey:systemVersion];
-    if (!fallbackSystemVersion || ![fallbackSystemVersion isKindOfClass:[NSString class]])
-        return nil;
-    return fallbackSystemVersion;
-}
-
-static BOOL checkFrameworkPath(NSString *frameworkPath)
-{
-    BOOL isDirectory = NO;
-    return [[NSFileManager defaultManager] fileExistsAtPath:frameworkPath isDirectory:&isDirectory] && isDirectory;
-}
-
-static BOOL checkSafariVersion(NSBundle *safariBundle)
-{
-    NSString *safariBundleVersion = [[safariBundle infoDictionary] objectForKey:(NSString *)kCFBundleVersionKey];
-    NSString *majorComponent = [[safariBundleVersion componentsSeparatedByString:@"."] objectAtIndex:0];
-    NSString *majorVersion = [majorComponent substringFromIndex:[majorComponent length] - 3];
-    return [majorVersion intValue] >= 530;
-}
-
-int main(int argc, char *argv[])
-{
-    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
-
-    NSString *systemVersion = currentMacOSXVersion();
-    NSString *frameworkPath = [[[NSBundle mainBundle] privateFrameworksPath] stringByAppendingPathComponent:systemVersion];
-
-    BOOL frameworkPathIsUsable = checkFrameworkPath(frameworkPath);
-
-    if (!frameworkPathIsUsable) {
-        NSString *fallbackSystemVersion = fallbackMacOSXVersion(systemVersion);
-        if (fallbackSystemVersion) {
-            frameworkPath = [[[NSBundle mainBundle] privateFrameworksPath] stringByAppendingPathComponent:fallbackSystemVersion];
-            frameworkPathIsUsable = checkFrameworkPath(frameworkPath);
-        }
-    }
-
-    if (!frameworkPathIsUsable)
-        displayErrorAndQuit([NSString stringWithFormat:@"Mac OS X %@ is not supported", systemVersion],
-                            [NSString stringWithFormat:@"Nightly builds of WebKit are not supported on Mac OS X %@ at this time.", systemVersion]);
-
-    NSString *pathToEnablerLib = [[NSBundle mainBundle] pathForResource:@"WebKitNightlyEnabler" ofType:@"dylib"];
-
-    NSBundle *safariBundle = locateSafariBundle();
-    NSString *executablePath = [safariBundle executablePath];
-
-    if (!checkSafariVersion(safariBundle)) {
-        NSString *safariVersion = [[safariBundle localizedInfoDictionary] objectForKey:@"CFBundleShortVersionString"];
-        displayErrorAndQuit([NSString stringWithFormat:@"Safari %@ is not supported", safariVersion],
-                            [NSString stringWithFormat:@"Nightly builds of WebKit are not supported with Safari %@ at this time. Please update to a newer version of Safari.", safariVersion]);
-    }
-
-    if ([frameworkPath rangeOfString:@":"].location != NSNotFound ||
-        [pathToEnablerLib rangeOfString:@":"].location != NSNotFound)
-        displayErrorAndQuit(@"Unable to launch Safari",
-                            @"WebKit is located at a path containing an unsupported character.  Please move WebKit to a different location and try again.");
-
-    NSMutableArray *arguments = [NSMutableArray arrayWithObject:executablePath];
-    NSMutableDictionary *environment = [[[NSDictionary dictionaryWithObjectsAndKeys:frameworkPath, @"DYLD_FRAMEWORK_PATH", @"YES", @"WEBKIT_UNSET_DYLD_FRAMEWORK_PATH",
-                                                                                    pathToEnablerLib, @"DYLD_INSERT_LIBRARIES", [[NSBundle mainBundle] executablePath], @"WebKitAppPath", nil] mutableCopy] autorelease];
-    [environment addEntriesFromDictionary:[[NSProcessInfo processInfo] environment]];
-    addStartPageToArgumentsIfNeeded(arguments);
-
-    while (*++argv)
-        [arguments addObject:[NSString stringWithUTF8String:*argv]];
-
-    myExecve(executablePath, arguments, environment);
-
-    char *error = strerror(errno);
-    NSString *errorMessage = [NSString stringWithFormat:@"Launching Safari at %@ failed with the error '%s' (%d)", [safariBundle bundlePath], error, errno];
-    displayErrorAndQuit(@"Unable to launch Safari", errorMessage);
-
-    [pool release];
-    return 0;
-}
diff --git a/Tools/WebKitLauncher/nightly.webkit.org.public.pem b/Tools/WebKitLauncher/nightly.webkit.org.public.pem
deleted file mode 100644
index 174c1e4..0000000
--- a/Tools/WebKitLauncher/nightly.webkit.org.public.pem
+++ /dev/null
@@ -1,20 +0,0 @@
------BEGIN PUBLIC KEY-----
-MIIDOjCCAi0GByqGSM44BAEwggIgAoIBAQCkQLoVjuu3dPn1dO8N6xIFf4riPVuJ
-XOVpx+QlFMno+qzqGJcJxqhfqZhIRwLq62eHpeuYKIuuPG8fqXY/hquHQIjrtEFZ
-euCW8cxqC7iBg3PlX6RsKUXHD+WY82HJ5Hdkd+5G3jD9qO+Ka7RXgOnL7fTRcbkW
-rtBjL7lVAlMBSVG54+zvti/h1CmdfpO83JAnoGl8c+WGgKlwt5nR7jxp4PgBdAw2
-aJt+UqrMkZOr4Npik1a8IzW+KTlBn96DbF5M6PP6Uh9TblnYtt0ic/Vnr6MKS60X
-WNCb/2/HFjQYaINYtJfXpBaGUMZ0dsAyMxn/Sf1vApmVWh2t0TRMgI4JAhUAtL7E
-pauM+spqaZnAxcMNMP0uFaECggEAe1lF6yZHJh89QdPQvmwROKFHOXYvEX5/IFRw
-pFJDdJJdw53nS/yXWKy8o/wBqESzeVCbktYRqQE84ApO/KJs4KdwiL2LU32FiMD0
-c4UCkRf/RxSLxE4/FGKQzTaBB5TGMfuNLn6C/4aoNXnxcB399QxKF2slBp1GQgsC
-6/4KZZYN+kxGxqAfA1UqrleVtv9OwmaCJwMYYqq20zxYhryuBjTSAD+VN6ncerUf
-IxUceX83mWriBMtXHHR0x12WUDfnFQZg583MeMguFc8qESqZX7mWtzSnblsGmez3
-pD028APHFWJSdruT2YI1NJf08S7A9GLdkLRaUNQTABygANviQwOCAQUAAoIBAGDn
-SFRJ3o/wKBm1PwQyaMfE8dtFt1NVOqTA2/VL3CVfqPV6tizRSvto45HSBn96R6nC
-cxZCi3knJy/9V9ITtlCw1UtqeYOW7sp0PRAgct93XuzlMpOFQr5Q8jydvqMEymOD
-c55QE2vbSgHYbQH362uNXsyMWN1xRVSlT13MBi+fmZ86Z5CkRWvIPWg2NRO16bnx
-jK6l0LGvBKiU79HIrH7DlEfX0zVJBYi6NnJqvFSDeoKyiOMWaCAquWDgu00k3NOl
-gndPnl+mVzEEgNvvN0H6KGVTf55H7KR1LqtWFWCw0VXy5oFgRB359hrLvxe91U4M
-iN3jD7YxuENTOTefu9c=
------END PUBLIC KEY-----
diff --git a/Tools/WebKitLauncher/start.html b/Tools/WebKitLauncher/start.html
deleted file mode 100644
index 2c94e79..0000000
--- a/Tools/WebKitLauncher/start.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<html>
-    <head>
-        <title>Loading WebKit...</title>
-        <meta http-equiv="refresh" content="1;URL=http://nightly.webkit.org/start/" />
-        <script type="text/javascript">
-            function getWebKitRevision()
-            {
-                var request = new XMLHttpRequest();
-                request.open("GET", "VERSION", false);
-                request.send();
-                var revision = parseInt(request.responseText);
-                if (isNaN(revision))
-                    return "";
-
-                return revision;
-            }
-
-            function getWebKitBranch()
-            {
-                var request = new XMLHttpRequest();
-                request.open("GET", "BRANCH", false);
-                request.send();
-                return (request.responseText || "trunk").replace(/\s/g, '')
-            }
-
-            var revision = getWebKitRevision();
-            var branch = getWebKitBranch();
-            document.location = "http://nightly.webkit.org/start/" + branch + "/" + revision;
-        </script>
-    </head>
-    <body>
-    </body>
-</html>
diff --git a/Tools/WebKitLauncher/webkit.icns b/Tools/WebKitLauncher/webkit.icns
deleted file mode 100644
index b1e1017..0000000
--- a/Tools/WebKitLauncher/webkit.icns
+++ /dev/null
Binary files differ
diff --git a/Tools/WebKitLauncherWin/Resource.h b/Tools/WebKitLauncherWin/Resource.h
deleted file mode 100644
index f0c38ab..0000000
--- a/Tools/WebKitLauncherWin/Resource.h
+++ /dev/null
@@ -1,19 +0,0 @@
-//{{NO_DEPENDENCIES}}
-// Microsoft Visual C++ generated include file.
-// Used by WebKitLauncherWin.rc
-//
-
-#define IDI_WEBKITLAUNCHERWIN       107
-
-// Next default values for new objects
-// 
-#ifdef APSTUDIO_INVOKED
-#ifndef APSTUDIO_READONLY_SYMBOLS
-
-#define _APS_NO_MFC                 130
-#define _APS_NEXT_RESOURCE_VALUE    129
-#define _APS_NEXT_COMMAND_VALUE     32771
-#define _APS_NEXT_CONTROL_VALUE     1000
-#define _APS_NEXT_SYMED_VALUE       110
-#endif
-#endif
diff --git a/Tools/WebKitLauncherWin/WebKitLauncherWin.cpp b/Tools/WebKitLauncherWin/WebKitLauncherWin.cpp
deleted file mode 100644
index 5ebd93c..0000000
--- a/Tools/WebKitLauncherWin/WebKitLauncherWin.cpp
+++ /dev/null
@@ -1,99 +0,0 @@
-/*
- * Copyright (C) 2009 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#include "resource.h"
-#include <shlwapi.h>
-#include <string>
-#include <tchar.h>
-#include <vector>
-#include <windows.h>
-
-using namespace std;
-
-typedef basic_string<TCHAR> tstring;
-
-static tstring getStringValue(HKEY key, const tstring& valueName)
-{
-    DWORD type = 0;
-    DWORD bufferSize = 0;
-    if (RegQueryValueEx(key, valueName.c_str(), 0, &type, 0, &bufferSize) != ERROR_SUCCESS || type != REG_SZ)
-        return tstring();
-
-    vector<TCHAR> buffer(bufferSize / sizeof(TCHAR));
-    if (RegQueryValueEx(key, valueName.c_str(), 0, &type, reinterpret_cast<LPBYTE>(&buffer[0]), &bufferSize) != ERROR_SUCCESS)
-        return tstring();
-
-    return &buffer[0];
-}
-
-static tstring applePathFromRegistry(const tstring& key, const tstring& value)
-{
-    HKEY applePathKey = 0;
-    LONG error = RegOpenKeyEx(HKEY_LOCAL_MACHINE, key.c_str(), 0, KEY_READ, &applePathKey);
-    if (error != ERROR_SUCCESS)
-        return tstring();
-    tstring path = getStringValue(applePathKey, value);
-    RegCloseKey(applePathKey);
-    return path;
-}
-
-static tstring safariInstallDir()
-{
-    return applePathFromRegistry(TEXT("SOFTWARE\\Apple Computer, Inc.\\Safari"), TEXT("InstallDir"));
-}
-
-static tstring safariBrowserExe()
-{
-    return applePathFromRegistry(TEXT("SOFTWARE\\Apple Computer, Inc.\\Safari"), TEXT("BrowserExe"));
-}
-
-int APIENTRY _tWinMain(HINSTANCE instance, HINSTANCE, LPTSTR commandLine, int)
-{
-    tstring path = safariInstallDir();
-    tstring browserExe = safariBrowserExe();
-    if (path.empty() || browserExe.empty()) {
-        MessageBox(0, TEXT("Safari must be installed to run a WebKit nightly. You can download Safari from http://www.apple.com/safari/download"), TEXT("Safari not found"), MB_ICONSTOP);
-        return 1;
-    }
-
-    // Set WEBKITNIGHTLY environment variable to point to the nightly bits
-    TCHAR exePath[MAX_PATH];
-    if (!GetModuleFileName(0, exePath, ARRAYSIZE(exePath)))
-        return 1;
-    if (!PathRemoveFileSpec(exePath))
-        return 1;
-    SetEnvironmentVariable(TEXT("WEBKITNIGHTLY"), exePath);
-
-    tstring finalCommandLine = TEXT('"') + browserExe + TEXT("\" ") + commandLine;
-
-    // Launch Safari as a child process
-    STARTUPINFO startupInfo = {0};
-    startupInfo.cb = sizeof(startupInfo);
-    PROCESS_INFORMATION processInfo = {0};
-    if (!CreateProcess(browserExe.c_str(), const_cast<LPTSTR>(finalCommandLine.c_str()), 0, 0, FALSE, NORMAL_PRIORITY_CLASS | CREATE_UNICODE_ENVIRONMENT, 0, path.c_str(), &startupInfo, &processInfo))
-        MessageBox(0, TEXT("Safari could not be launched. Please make sure you have the latest version of Safari installed and try again. You can download Safari from http://www.apple.com/safari/download"), TEXT("Safari launch failed"), MB_ICONSTOP);
-
-    return 0;
-}
diff --git a/Tools/WebKitLauncherWin/WebKitLauncherWin.rc b/Tools/WebKitLauncherWin/WebKitLauncherWin.rc
deleted file mode 100644
index 65a2dfa..0000000
--- a/Tools/WebKitLauncherWin/WebKitLauncherWin.rc
+++ /dev/null
@@ -1,70 +0,0 @@
-//Microsoft Visual C++ generated resource script.
-//
-#include "resource.h"
-
-#define APSTUDIO_READONLY_SYMBOLS
-/////////////////////////////////////////////////////////////////////////////
-//
-// Generated from the TEXTINCLUDE 2 resource.
-//
-#define APSTUDIO_HIDDEN_SYMBOLS
-#include "windows.h"
-#undef APSTUDIO_HIDDEN_SYMBOLS
-/////////////////////////////////////////////////////////////////////////////
-#undef APSTUDIO_READONLY_SYMBOLS
-
-#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
-LANGUAGE 9, 1
-#pragma code_page(1252)
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Icon
-//
-
-// Icon with lowest ID value placed first to ensure application icon
-// remains consistent on all systems.
-
-IDI_WEBKITLAUNCHERWIN       ICON         "webkit.ico"
-
-
-
-#ifdef APSTUDIO_INVOKED
-/////////////////////////////////////////////////////////////////////////////
-//
-// TEXTINCLUDE
-//
-1 TEXTINCLUDE  
-BEGIN
-    "resource.h\0"
-END
-
-2 TEXTINCLUDE  
-BEGIN
-    "#define APSTUDIO_HIDDEN_SYMBOLS\r\n"
-    "#include ""windows.h""\r\n"
-    "#undef APSTUDIO_HIDDEN_SYMBOLS\r\n"
-    "\0"
-END
-
-3 TEXTINCLUDE  
-BEGIN
-    "\r\n"
-    "\0"
-END
-
-#endif    // APSTUDIO_INVOKED
-
-#endif
-/////////////////////////////////////////////////////////////////////////////
-
-
-
-#ifndef APSTUDIO_INVOKED
-/////////////////////////////////////////////////////////////////////////////
-//
-// Generated from the TEXTINCLUDE 3 resource.
-//
-
-/////////////////////////////////////////////////////////////////////////////
-#endif    // not APSTUDIO_INVOKED
diff --git a/Tools/WebKitLauncherWin/WebKitLauncherWin.vcproj b/Tools/WebKitLauncherWin/WebKitLauncherWin.vcproj
deleted file mode 100644
index 336839b..0000000
--- a/Tools/WebKitLauncherWin/WebKitLauncherWin.vcproj
+++ /dev/null
@@ -1,426 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WebKitLauncherWin"
-	ProjectGUID="{D09806DB-E58B-4646-8C9B-61101906C1E2}"
-	RootNamespace="WebKitLauncherWin"
-	Keyword="Win32Proj"
-	>
-	<Platforms>
-		<Platform
-			Name="Win32"
-		/>
-	</Platforms>
-	<ToolFiles>
-	</ToolFiles>
-	<Configurations>
-		<Configuration
-			Name="Release|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\WebKitLauncherWinRelease.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Production|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\WebKitLauncherWinProduction.vsprops"
-			CharacterSet="1"
-			WholeProgramOptimization="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\WebKitLauncherWinDebug.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_All|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\WebKitLauncherWinDebugAll.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release_Cairo_CFLite|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\WebKitLauncherWinReleaseCairoCFLite.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_Cairo_CFLite|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\WebKitLauncherWinDebugCairoCFLite.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-	</Configurations>
-	<References>
-	</References>
-	<Files>
-		<Filter
-			Name="Source Files"
-			Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
-			UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
-			>
-			<File
-				RelativePath=".\WebKitLauncherWin.cpp"
-				>
-			</File>
-		</Filter>
-		<Filter
-			Name="Header Files"
-			Filter="h;hpp;hxx;hm;inl;inc;xsd"
-			UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
-			>
-			<File
-				RelativePath=".\Resource.h"
-				>
-			</File>
-		</Filter>
-		<Filter
-			Name="Resource Files"
-			Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
-			UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
-			>
-			<File
-				RelativePath=".\webkit.ico"
-				>
-			</File>
-			<File
-				RelativePath=".\WebKitLauncherWin.rc"
-				>
-			</File>
-		</Filter>
-	</Files>
-	<Globals>
-	</Globals>
-</VisualStudioProject>
diff --git a/Tools/WebKitLauncherWin/WebKitLauncherWinCommon.vsprops b/Tools/WebKitLauncherWin/WebKitLauncherWinCommon.vsprops
deleted file mode 100644
index 37b2b87..0000000
--- a/Tools/WebKitLauncherWin/WebKitLauncherWinCommon.vsprops
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WebKitLauncherWinCommon"
-	>
-	<Tool
-		Name="VCLinkerTool"
-		AdditionalDependencies="shlwapi.lib"
-		OutputFile="$(OutDir)\WebKit$(WebKitConfigSuffix).exe"
-		ProgramDatabaseFile="$(TargetDir)$(ProjectName)$(WebKitConfigSuffix).pdb"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitLauncherWin/WebKitLauncherWinDebug.vsprops b/Tools/WebKitLauncherWin/WebKitLauncherWinDebug.vsprops
deleted file mode 100644
index b1f66fc..0000000
--- a/Tools/WebKitLauncherWin/WebKitLauncherWinDebug.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WebKitLauncherWinDebug"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;.\WebKitLauncherWinCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitLauncherWin/WebKitLauncherWinDebugAll.vsprops b/Tools/WebKitLauncherWin/WebKitLauncherWinDebugAll.vsprops
deleted file mode 100644
index 254e4dc..0000000
--- a/Tools/WebKitLauncherWin/WebKitLauncherWinDebugAll.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WebKitLauncherWinDebugAll"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\debug_all.vsprops;.\WebKitLauncherWinCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitLauncherWin/WebKitLauncherWinDebugCairoCFLite.vsprops b/Tools/WebKitLauncherWin/WebKitLauncherWinDebugCairoCFLite.vsprops
deleted file mode 100644
index 760a391..0000000
--- a/Tools/WebKitLauncherWin/WebKitLauncherWinDebugCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WebKitLauncherWinDebugCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\debug_wincairo.vsprops;.\WebKitLauncherWinCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitLauncherWin/WebKitLauncherWinProduction.vsprops b/Tools/WebKitLauncherWin/WebKitLauncherWinProduction.vsprops
deleted file mode 100644
index dff9793..0000000
--- a/Tools/WebKitLauncherWin/WebKitLauncherWinProduction.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WebKitLauncherWinProduction"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\production.vsprops;.\WebKitLauncherWinCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitLauncherWin/WebKitLauncherWinRelease.vsprops b/Tools/WebKitLauncherWin/WebKitLauncherWinRelease.vsprops
deleted file mode 100644
index fc0ac16..0000000
--- a/Tools/WebKitLauncherWin/WebKitLauncherWinRelease.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WebKitLauncherWinRelease"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;.\WebKitLauncherWinCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitLauncherWin/WebKitLauncherWinReleaseCairoCFLite.vsprops b/Tools/WebKitLauncherWin/WebKitLauncherWinReleaseCairoCFLite.vsprops
deleted file mode 100644
index 50d929d..0000000
--- a/Tools/WebKitLauncherWin/WebKitLauncherWinReleaseCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WebKitLauncherWinReleaseCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\WinCairo.vsprops;.\WebKitLauncherWinCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitLauncherWin/webkit.ico b/Tools/WebKitLauncherWin/webkit.ico
deleted file mode 100644
index b86c9bb..0000000
--- a/Tools/WebKitLauncherWin/webkit.ico
+++ /dev/null
Binary files differ
diff --git a/Tools/WebKitTestRunner/CMakeLists.txt b/Tools/WebKitTestRunner/CMakeLists.txt
deleted file mode 100644
index b245660..0000000
--- a/Tools/WebKitTestRunner/CMakeLists.txt
+++ /dev/null
@@ -1,98 +0,0 @@
-set(WEBKIT_TESTRUNNER_DIR "${TOOLS_DIR}/WebKitTestRunner")
-set(WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR "${TOOLS_DIR}/WebKitTestRunner/InjectedBundle")
-
-file(MAKE_DIRECTORY ${DERIVED_SOURCES_DIR}/InjectedBundle)
-
-set(WebKitTestRunner_SOURCES
-    ${WEBKIT_TESTRUNNER_DIR}/CyclicRedundancyCheck.cpp
-    ${WEBKIT_TESTRUNNER_DIR}/GeolocationProviderMock.cpp
-    ${WEBKIT_TESTRUNNER_DIR}/PixelDumpSupport.cpp
-    ${WEBKIT_TESTRUNNER_DIR}/TestController.cpp
-    ${WEBKIT_TESTRUNNER_DIR}/TestInvocation.cpp
-    ${WEBKIT_TESTRUNNER_DIR}/WebNotificationProvider.cpp
-    ${WEBKIT_TESTRUNNER_DIR}/WorkQueueManager.cpp
-)
-
-set(WebKitTestRunner_LIBRARIES
-    ${JavaScriptCore_LIBRARY_NAME}
-    ${WebCore_LIBRARY_NAME}
-    ${WebCoreTestSupport_LIBRARY_NAME}
-    ${WebKit2_LIBRARY_NAME}
-)
-
-set(WebKitTestRunner_INCLUDE_DIRECTORIES
-    ${WEBKIT_TESTRUNNER_DIR}
-    ${WEBKIT_TESTRUNNER_DIR}/InjectedBundle
-    ${WEBKIT_TESTRUNNER_DIR}/InjectedBundle/Bindings
-    ${JAVASCRIPTCORE_DIR}
-    ${JAVASCRIPTCORE_DIR}/ForwardingHeaders
-    ${WEBCORE_DIR}/editing
-    ${WEBCORE_DIR}/platform
-    ${WEBCORE_DIR}/platform/graphics
-    ${WEBCORE_DIR}/platform/graphics/harfbuzz
-    ${WEBCORE_DIR}/platform/graphics/harfbuzz/ng
-    ${WEBCORE_DIR}/platform/network
-    ${WEBCORE_DIR}/platform/text
-    ${WEBCORE_DIR}/testing/js
-    ${WEBKIT2_DIR}/Shared
-    ${WEBKIT2_DIR}/Shared/API/c
-    ${WEBKIT2_DIR}/UIProcess
-    ${WEBKIT2_DIR}/UIProcess/API/C/efl
-    ${WEBKIT2_DIR}/UIProcess/API/C/soup
-    ${WTF_DIR}
-    ${DERIVED_SOURCES_WEBCORE_DIR}
-    ${DERIVED_SOURCES_WEBCORE_DIR}/include
-    ${DERIVED_SOURCES_WEBKIT2_DIR}/include
-    ${DERIVED_SOURCES_DIR}/InjectedBundle
-    ${CMAKE_BINARY_DIR}
-    ${CMAKE_SOURCE_DIR}/Source
-    ${LIBSOUP_INCLUDE_DIRS}
-)
-
-set(WebKitTestRunnerInjectedBundle_SOURCES
-    ${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/AccessibilityController.cpp
-    ${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/AccessibilityTextMarker.cpp
-    ${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/AccessibilityTextMarkerRange.cpp
-    ${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/AccessibilityUIElement.cpp
-    ${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/EventSendingController.cpp
-    ${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/GCController.cpp
-    ${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/InjectedBundle.cpp
-    ${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/InjectedBundleMain.cpp
-    ${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/InjectedBundlePage.cpp
-    ${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/TestRunner.cpp
-    ${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/TextInputController.cpp
-
-    ${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/Bindings/JSWrapper.cpp
-)
-
-set(WebKitTestRunnerInjectedBundle_IDL_FILES
-    "${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/Bindings/AccessibilityController.idl"
-    "${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/Bindings/AccessibilityTextMarker.idl"
-    "${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/Bindings/AccessibilityTextMarkerRange.idl"
-    "${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/Bindings/AccessibilityUIElement.idl"
-    "${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/Bindings/EventSendingController.idl"
-    "${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/Bindings/GCController.idl"
-    "${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/Bindings/TestRunner.idl"
-    "${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/Bindings/TextInputController.idl"
-)
-
-GENERATE_BINDINGS(WebKitTestRunnerInjectedBundle_SOURCES
-    "${WebKitTestRunnerInjectedBundle_IDL_FILES}"
-    "${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/Bindings"
-    "--include=${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/Bindings"
-    "${FEATURE_DEFINES_WITH_SPACE_SEPARATOR}"
-    ${DERIVED_SOURCES_DIR}/InjectedBundle JS TestRunner
-    ${WEBCORE_DIR}/bindings/scripts/IDLAttributes.txt)
-
-INCLUDE_IF_EXISTS(${WEBKIT_TESTRUNNER_DIR}/Platform${PORT}.cmake)
-
-include_directories(${WebKitTestRunner_INCLUDE_DIRECTORIES})
-
-add_library(TestRunnerInjectedBundle SHARED ${WebKitTestRunnerInjectedBundle_SOURCES})
-target_link_libraries(TestRunnerInjectedBundle ${WebKitTestRunner_LIBRARIES})
-
-add_executable(WebKitTestRunner ${WebKitTestRunner_SOURCES})
-target_link_libraries(WebKitTestRunner ${WebKitTestRunner_LIBRARIES})
-
-add_dependencies(${WebKit2_LIBRARY_NAME} ${ForwardingHeadersForWebKitTestRunner_NAME})
-add_dependencies(${WebKit2_LIBRARY_NAME} ${ForwardingNetworkHeadersForWebKitTestRunner_NAME})
diff --git a/Tools/WebKitTestRunner/Configurations/Base.xcconfig b/Tools/WebKitTestRunner/Configurations/Base.xcconfig
deleted file mode 100644
index ef87ffe..0000000
--- a/Tools/WebKitTestRunner/Configurations/Base.xcconfig
+++ /dev/null
@@ -1,64 +0,0 @@
-// Copyright (C) 2010 Apple Inc. All rights reserved.
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions
-// are met:
-// 1. Redistributions of source code must retain the above copyright
-//    notice, this list of conditions and the following disclaimer.
-// 2. Redistributions in binary form must reproduce the above copyright
-//    notice, this list of conditions and the following disclaimer in the
-//    documentation and/or other materials provided with the distribution.
-//
-// THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
-// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-// PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
-// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-
-CLANG_CXX_LANGUAGE_STANDARD = gnu++0x;
-CLANG_CXX_LIBRARY = libc++;
-CLANG_WARN_CXX0X_EXTENSIONS = NO;
-HEADER_SEARCH_PATHS = $(BUILT_PRODUCTS_DIR)/usr/local/include $(WEBCORE_PRIVATE_HEADERS_DIR)/ForwardingHeaders ${SRCROOT}/../../Source/JavaScriptCore/icu $(NEXT_ROOT)/usr/local/include/WebCoreTestSupport;
-FRAMEWORK_SEARCH_PATHS = $(SYSTEM_LIBRARY_DIR)/Frameworks/Quartz.framework/Frameworks $(SYSTEM_LIBRARY_DIR)/Frameworks/ApplicationServices.framework/Frameworks $(SYSTEM_LIBRARY_DIR)/Frameworks/CoreServices.framework/Frameworks;
-GCC_PREPROCESSOR_DEFINITIONS = $(DEBUG_DEFINES) ENABLE_DASHBOARD_SUPPORT WEBKIT_VERSION_MIN_REQUIRED=WEBKIT_VERSION_LATEST;
-DEBUG_INFORMATION_FORMAT = dwarf-with-dsym;
-PREBINDING = NO
-GCC_C_LANGUAGE_STANDARD = gnu99
-GCC_ENABLE_CPP_EXCEPTIONS = NO;
-GCC_ENABLE_CPP_RTTI = NO;
-GCC_PRECOMPILE_PREFIX_HEADER = YES
-GCC_TREAT_WARNINGS_AS_ERRORS = YES
-GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
-GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO
-GCC_WARN_UNUSED_FUNCTION = YES
-GCC_WARN_UNUSED_VARIABLE = YES
-WARNING_CFLAGS = -Wall -W -Wno-unused-parameter -Wundef
-LINKER_DISPLAYS_MANGLED_NAMES = YES;
-VALID_ARCHS = i386 x86_64;
-GCC_PREFIX_HEADER = WebKitTestRunnerPrefix.h
-
-DEBUG_DEFINES_debug = ;
-DEBUG_DEFINES_normal = NDEBUG;
-DEBUG_DEFINES = $(DEBUG_DEFINES_$(CURRENT_VARIANT));
-
-TARGET_MAC_OS_X_VERSION_MAJOR = $(MAC_OS_X_VERSION_MAJOR);
-
-TARGETING_SAME_OS_X_VERSION = $(TARGETING_SAME_OS_X_VERSION_$(MAC_OS_X_VERSION_MAJOR)_$(TARGET_MAC_OS_X_VERSION_MAJOR));
-TARGETING_SAME_OS_X_VERSION_1070_1070 = YES;
-TARGETING_SAME_OS_X_VERSION_1080_1080 = YES;
-TARGETING_SAME_OS_X_VERSION_1090_1090 = YES;
-
-// Don't build against an SDK unless we're targeting an older OS version.
-SDKROOT = $(SDKROOT_TARGETING_SAME_OS_X_VERSION_$(TARGETING_SAME_OS_X_VERSION));
-SDKROOT_TARGETING_SAME_OS_X_VERSION_ = macosx;
-
-WEBKIT_UMBRELLA_FRAMEWORKS_DIR = $(NEXT_ROOT)$(SYSTEM_LIBRARY_DIR)/Frameworks/WebKit.framework/Versions/A/Frameworks;
-WEBCORE_PRIVATE_HEADERS_DIR = $(WEBKIT_UMBRELLA_FRAMEWORKS_DIR)/WebCore.framework/PrivateHeaders;
-
-WEBKIT_SYSTEM_INTERFACE_LIBRARY = WebKitSystemInterface
diff --git a/Tools/WebKitTestRunner/Configurations/DebugRelease.xcconfig b/Tools/WebKitTestRunner/Configurations/DebugRelease.xcconfig
deleted file mode 100644
index 5b97d12..0000000
--- a/Tools/WebKitTestRunner/Configurations/DebugRelease.xcconfig
+++ /dev/null
@@ -1,43 +0,0 @@
-// Copyright (C) 2010 Apple Inc. All rights reserved.
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions
-// are met:
-// 1. Redistributions of source code must retain the above copyright
-//    notice, this list of conditions and the following disclaimer.
-// 2. Redistributions in binary form must reproduce the above copyright
-//    notice, this list of conditions and the following disclaimer in the
-//    documentation and/or other materials provided with the distribution.
-//
-// THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
-// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-// PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
-// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-
-#include "Base.xcconfig"
-
-ARCHS = $(ARCHS_STANDARD_32_64_BIT);
-
-ONLY_ACTIVE_ARCH = YES;
-
-MACOSX_DEPLOYMENT_TARGET = $(MACOSX_DEPLOYMENT_TARGET_$(TARGET_MAC_OS_X_VERSION_MAJOR))
-MACOSX_DEPLOYMENT_TARGET_1070 = 10.7;
-MACOSX_DEPLOYMENT_TARGET_1080 = 10.8;
-MACOSX_DEPLOYMENT_TARGET_1090 = 10.9;
-
-WEBKIT_UMBRELLA_FRAMEWORKS_DIR = $(BUILT_PRODUCTS_DIR);
-
-WEBKIT_SYSTEM_INTERFACE_LIBRARY = $(WEBKIT_SYSTEM_INTERFACE_LIBRARY_$(PLATFORM_NAME));
-WEBKIT_SYSTEM_INTERFACE_LIBRARY_iphoneos = WebKitSystemInterface;
-WEBKIT_SYSTEM_INTERFACE_LIBRARY_iphonesimulator = $(WEBKIT_SYSTEM_INTERFACE_LIBRARY_iphoneos);
-WEBKIT_SYSTEM_INTERFACE_LIBRARY_macosx = $(WEBKIT_SYSTEM_INTERFACE_LIBRARY_macosx_$(TARGET_MAC_OS_X_VERSION_MAJOR));
-WEBKIT_SYSTEM_INTERFACE_LIBRARY_macosx_1070 = WebKitSystemInterfaceLion;
-WEBKIT_SYSTEM_INTERFACE_LIBRARY_macosx_1080 = WebKitSystemInterfaceMountainLion;
-WEBKIT_SYSTEM_INTERFACE_LIBRARY_macosx_1090 = WebKitSystemInterfaceMountainLion;
diff --git a/Tools/WebKitTestRunner/Configurations/InjectedBundle.xcconfig b/Tools/WebKitTestRunner/Configurations/InjectedBundle.xcconfig
deleted file mode 100644
index 4235ead..0000000
--- a/Tools/WebKitTestRunner/Configurations/InjectedBundle.xcconfig
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright (C) 2010, 2011 Apple Inc. All rights reserved.
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions
-// are met:
-// 1. Redistributions of source code must retain the above copyright
-//    notice, this list of conditions and the following disclaimer.
-// 2. Redistributions in binary form must reproduce the above copyright
-//    notice, this list of conditions and the following disclaimer in the
-//    documentation and/or other materials provided with the distribution.
-//
-// THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
-// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-// PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
-// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-
-LD_RUNPATH_SEARCH_PATHS = "@loader_path/../../..";
-PRODUCT_NAME = WebKitTestRunnerInjectedBundle;
-
-INSTALL_PATH = $(SYSTEM_LIBRARY_DIR)/Frameworks/WebKit.framework/Versions/A/Resources;
-SKIP_INSTALL = NO;
-OTHER_LDFLAGS = -l$(WEBKIT_SYSTEM_INTERFACE_LIBRARY)
diff --git a/Tools/WebKitTestRunner/Configurations/InjectedBundleCFLite.vsprops b/Tools/WebKitTestRunner/Configurations/InjectedBundleCFLite.vsprops
deleted file mode 100644
index b3d9f03..0000000
--- a/Tools/WebKitTestRunner/Configurations/InjectedBundleCFLite.vsprops
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="InjectedBundleCFLite"
-	>
-	<Tool
-		Name="VCLinkerTool"
-		AdditionalDependencies="JavaScriptCore$(WebKitDLLConfigSuffix).lib WebCoreTestSupport$(WebKitDLLConfigSuffix).lib WebKit$(WebKitDLLConfigSuffix).lib CFLite$(LibraryConfigSuffix).lib"
-		OutputFile="$(OutDir)\$(ProjectName)$(WebKitConfigSuffix).dll"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitTestRunner/Configurations/InjectedBundleCommon.vsprops b/Tools/WebKitTestRunner/Configurations/InjectedBundleCommon.vsprops
deleted file mode 100644
index cfb5640..0000000
--- a/Tools/WebKitTestRunner/Configurations/InjectedBundleCommon.vsprops
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="InjectedBundleCommon"
-	>
-	<Tool
-		Name="VCCLCompilerTool"
-		AdditionalIncludeDirectories="&quot;$(ProjectDir)\..&quot;;&quot;$(ProjectDir)\..\InjectedBundle\&quot;;&quot;$(ProjectDir)\..\InjectedBundle\Bindings&quot;;&quot;$(ConfigurationBuildDir)\Include&quot;;&quot;$(ConfigurationBuildDir)\Include\private&quot;;&quot;$(ConfigurationBuildDir)\Include\private\JavaScriptCore&quot;;&quot;$(ConfigurationBuildDir)\Include\WebCore\ForwardingHeaders&quot;;&quot;$(ConfigurationBuildDir)\include\WebCoreTestSupport&quot;;&quot;$(WebKitLibrariesDir)\include&quot;;&quot;$(ConfigurationBuildDir)\obj\InjectedBundle\DerivedSources\&quot;"
-		ForcedIncludeFiles="WebKitTestRunnerPrefix.h"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitTestRunner/Configurations/InjectedBundleCoreFoundation.vsprops b/Tools/WebKitTestRunner/Configurations/InjectedBundleCoreFoundation.vsprops
deleted file mode 100644
index ac322f2..0000000
--- a/Tools/WebKitTestRunner/Configurations/InjectedBundleCoreFoundation.vsprops
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="InjectedBundleCoreFoundation"
-	>
-	<Tool
-		Name="VCLinkerTool"
-		AdditionalDependencies="JavaScriptCore$(WebKitDLLConfigSuffix).lib WebCoreTestSupport$(WebKitDLLConfigSuffix).lib WebKit$(WebKitDLLConfigSuffix).lib CoreFoundation$(LibraryConfigSuffix).lib"
-		OutputFile="$(OutDir)\$(ProjectName)$(WebKitConfigSuffix).dll"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitTestRunner/Configurations/WebKitTestRunner.xcconfig b/Tools/WebKitTestRunner/Configurations/WebKitTestRunner.xcconfig
deleted file mode 100644
index 01e9413..0000000
--- a/Tools/WebKitTestRunner/Configurations/WebKitTestRunner.xcconfig
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright (C) 2010, 2011 Apple Inc. All rights reserved.
-//
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions
-// are met:
-// 1. Redistributions of source code must retain the above copyright
-//    notice, this list of conditions and the following disclaimer.
-// 2. Redistributions in binary form must reproduce the above copyright
-//    notice, this list of conditions and the following disclaimer in the
-//    documentation and/or other materials provided with the distribution.
-//
-// THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
-// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-// PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
-// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-
-PRODUCT_NAME = WebKitTestRunner
-GCC_ENABLE_OBJC_EXCEPTIONS = YES
-
-INSTALL_PATH = $(SYSTEM_LIBRARY_DIR)/Frameworks/WebKit.framework/Versions/A/Resources;
-SKIP_INSTALL = NO;
diff --git a/Tools/WebKitTestRunner/Configurations/WebKitTestRunnerCFLite.vsprops b/Tools/WebKitTestRunner/Configurations/WebKitTestRunnerCFLite.vsprops
deleted file mode 100644
index 3b18ee0..0000000
--- a/Tools/WebKitTestRunner/Configurations/WebKitTestRunnerCFLite.vsprops
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WebKitTestRunnerCFLite"
-	>
-	<Tool
-		Name="VCLinkerTool"
-		AdditionalDependencies="CFLite$(LibraryConfigSuffix).lib cairo.lib"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitTestRunner/Configurations/WebKitTestRunnerCommon.vsprops b/Tools/WebKitTestRunner/Configurations/WebKitTestRunnerCommon.vsprops
deleted file mode 100644
index e7232b0..0000000
--- a/Tools/WebKitTestRunner/Configurations/WebKitTestRunnerCommon.vsprops
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WebKitTestRunnerCommon"
-	>
-	<Tool
-		Name="VCCLCompilerTool"
-		AdditionalIncludeDirectories="&quot;$(ProjectDir)\..&quot;;&quot;$(ConfigurationBuildDir)\Include&quot;;&quot;$(ConfigurationBuildDir)\Include\private&quot;;&quot;$(ConfigurationBuildDir)\Include\private\JavaScriptCore&quot;;&quot;$(ConfigurationBuildDir)\Include\WebCore\ForwardingHeaders&quot;;&quot;$(WebKitLibrariesDir)\Include&quot;"
-		PreprocessorDefinitions="__WIN32__;_CONSOLE"
-		DisableSpecificWarnings="4146"
-		ForcedIncludeFiles="WebKitTestRunnerPrefix.h"
-	/>
-	<Tool
-		Name="VCLinkerTool"
-		AdditionalOptions="/NXCOMPAT"
-		AdditionalDependencies="JavaScriptCore$(WebKitDLLConfigSuffix).lib WebKit$(WebKitDLLConfigSuffix).lib shlwapi.lib"
-		OutputFile="$(OutDir)\$(ProjectName)$(WebKitConfigSuffix).dll"
-		SubSystem="1"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitTestRunner/Configurations/WebKitTestRunnerCoreFoundation.vsprops b/Tools/WebKitTestRunner/Configurations/WebKitTestRunnerCoreFoundation.vsprops
deleted file mode 100644
index 11e031a..0000000
--- a/Tools/WebKitTestRunner/Configurations/WebKitTestRunnerCoreFoundation.vsprops
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WebKitTestRunnerCoreFoundation"
-	>
-	<Tool
-		Name="VCLinkerTool"
-		AdditionalDependencies="CoreFoundation$(LibraryConfigSuffix).lib"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitTestRunner/Configurations/WebKitTestRunnerCoreGraphics.vsprops b/Tools/WebKitTestRunner/Configurations/WebKitTestRunnerCoreGraphics.vsprops
deleted file mode 100644
index 70da2ba..0000000
--- a/Tools/WebKitTestRunner/Configurations/WebKitTestRunnerCoreGraphics.vsprops
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WebKitTestRunnerCoreGraphics"
-	>
-	<Tool
-		Name="VCLinkerTool"
-		AdditionalDependencies="CoreGraphics$(LibraryConfigSuffix).lib"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitTestRunner/CyclicRedundancyCheck.cpp b/Tools/WebKitTestRunner/CyclicRedundancyCheck.cpp
deleted file mode 100644
index 5622253..0000000
--- a/Tools/WebKitTestRunner/CyclicRedundancyCheck.cpp
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
- * Copyright (C) 2010, Robert Eisele <robert@xarg.org> All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *     * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "CyclicRedundancyCheck.h"
-
-#include <wtf/Vector.h>
-
-static void makeCrcTable(unsigned crcTable[256])
-{
-    for (unsigned i = 0; i < 256; i++) {
-        unsigned c = i;
-        for (int k = 0; k < 8; k++) {
-            if (c & 1)
-                c = -306674912 ^ ((c >> 1) & 0x7fffffff);
-            else
-                c = c >> 1;
-        }
-        crcTable[i] = c;
-    }
-}
-
-unsigned computeCrc(const Vector<unsigned char>& buffer)
-{
-    static unsigned crcTable[256];
-    static bool crcTableComputed = false;
-    if (!crcTableComputed) {
-        makeCrcTable(crcTable);
-        crcTableComputed = true;
-    }
-
-    unsigned crc = 0xffffffffU;
-    for (size_t i = 0; i < buffer.size(); ++i)
-        crc = crcTable[(crc ^ buffer[i]) & 0xff] ^ ((crc >> 8) & 0x00ffffffU);
-    return crc ^ 0xffffffffU;
-}
-
diff --git a/Tools/WebKitTestRunner/CyclicRedundancyCheck.h b/Tools/WebKitTestRunner/CyclicRedundancyCheck.h
deleted file mode 100644
index ef1d78e..0000000
--- a/Tools/WebKitTestRunner/CyclicRedundancyCheck.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *     * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef CyclicRedundancyCheck_h
-#define CyclicRedundancyCheck_h
-
-#include <wtf/Vector.h>
-
-unsigned computeCrc(const Vector<unsigned char>&);
-
-#endif
diff --git a/Tools/WebKitTestRunner/DerivedSources.make b/Tools/WebKitTestRunner/DerivedSources.make
deleted file mode 100644
index d3f3308..0000000
--- a/Tools/WebKitTestRunner/DerivedSources.make
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright (C) 2010 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
-# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
-# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-# THE POSSIBILITY OF SUCH DAMAGE.
-
-VPATH = \
-    $(WebKitTestRunner)/InjectedBundle/Bindings \
-#
-
-INTERFACES = \
-    AccessibilityController \
-    AccessibilityTextMarker \
-    AccessibilityTextMarkerRange \
-    AccessibilityUIElement \
-    EventSendingController \
-    GCController \
-    TestRunner \
-    TextInputController \
-#
-
-SCRIPTS = \
-    $(WebCoreScripts)/CodeGenerator.pm \
-    $(WebKitTestRunner)/InjectedBundle/Bindings/CodeGeneratorTestRunner.pm \
-    $(WebCoreScripts)/IDLParser.pm \
-    $(WebCoreScripts)/generate-bindings.pl \
-#
-
-.PHONY : all
-
-JS%.h JS%.cpp : %.idl $(SCRIPTS)
-	@echo Generating bindings for $*...
-	@perl -I $(WebCoreScripts) -I $(WebKitTestRunner)/InjectedBundle/Bindings $(WebCoreScripts)/generate-bindings.pl --defines "" --include InjectedBundle/Bindings --outputDir . --generator TestRunner $<
-
-all : \
-    $(INTERFACES:%=JS%.h) \
-    $(INTERFACES:%=JS%.cpp) \
-#
diff --git a/Tools/WebKitTestRunner/DerivedSources.pri b/Tools/WebKitTestRunner/DerivedSources.pri
deleted file mode 100644
index d1e92ad..0000000
--- a/Tools/WebKitTestRunner/DerivedSources.pri
+++ /dev/null
@@ -1,12 +0,0 @@
-# -------------------------------------------------------------------
-# Derived sources for WebKitTestRunner
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-TEMPLATE = derived
-
-# Make sure forwarded headers needed by this project are present
-fwheader_generator.commands = perl $${ROOT_WEBKIT_DIR}/Source/WebKit2/Scripts/generate-forwarding-headers.pl $${ROOT_WEBKIT_DIR}/Tools/WebKitTestRunner $${ROOT_BUILD_DIR}/Source/include qt
-fwheader_generator.depends  = $${ROOT_WEBKIT_DIR}/Source/WebKit2/Scripts/generate-forwarding-headers.pl
-GENERATORS += fwheader_generator
diff --git a/Tools/WebKitTestRunner/EventSenderProxy.h b/Tools/WebKitTestRunner/EventSenderProxy.h
deleted file mode 100644
index 92fe2d0..0000000
--- a/Tools/WebKitTestRunner/EventSenderProxy.h
+++ /dev/null
@@ -1,139 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- * Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef EventSenderProxy_h
-#define EventSenderProxy_h
-
-#if PLATFORM(QT)
-#include <QEvent>
-#include <QTouchEvent>
-#elif PLATFORM(GTK)
-#include <gdk/gdk.h>
-#include <wtf/Vector.h>
-#elif PLATFORM(EFL)
-#include <WebKit2/EWebKit2.h>
-#include <wtf/Deque.h>
-#endif
-
-namespace WTR {
-
-class TestController;
-
-#if PLATFORM(GTK)
-struct WTREventQueueItem;
-#elif PLATFORM(EFL)
-struct WTREvent;
-#endif
-
-class EventSenderProxy {
-public:
-    explicit EventSenderProxy(TestController*);
-    ~EventSenderProxy();
-
-    void mouseDown(unsigned button, WKEventModifiers);
-    void mouseUp(unsigned button, WKEventModifiers);
-    void mouseMoveTo(double x, double y);
-    void mouseScrollBy(int x, int y);
-    void continuousMouseScrollBy(int x, int y, bool paged);
-
-    void leapForward(int milliseconds);
-
-    void keyDown(WKStringRef key, WKEventModifiers, unsigned location);
-
-#if ENABLE(TOUCH_EVENTS)
-    // Touch events.
-    void addTouchPoint(int x, int y);
-    void updateTouchPoint(int index, int x, int y);
-    void setTouchModifier(WKEventModifiers, bool enable);
-    void setTouchPointRadius(int radiusX, int radiusY);
-    void touchStart();
-    void touchMove();
-    void touchEnd();
-    void touchCancel();
-    void clearTouchPoints();
-    void releaseTouchPoint(int index);
-    void cancelTouchPoint(int index);
-#endif
-
-private:
-    TestController* m_testController;
-
-    double currentEventTime() { return m_time; }
-    void updateClickCountForButton(int button);
-
-#if PLATFORM(QT) || PLATFORM(GTK) || PLATFORM(EFL)
-    void replaySavedEvents();
-#endif
-
-#if PLATFORM(QT)
-#if ENABLE(TOUCH_EVENTS)
-    void sendTouchEvent(QEvent::Type);
-#endif
-    void sendOrQueueEvent(QEvent*);
-#elif PLATFORM(GTK)
-    void sendOrQueueEvent(GdkEvent*);
-    GdkEvent* createMouseButtonEvent(GdkEventType, unsigned button, WKEventModifiers);
-#elif PLATFORM(EFL)
-    void sendOrQueueEvent(const WTREvent&);
-    void dispatchEvent(const WTREvent&);
-#if ENABLE(TOUCH_EVENTS)
-    void sendTouchEvent(Ewk_Touch_Event_Type);
-#endif
-#endif
-
-    double m_time;
-    WKPoint m_position;
-    bool m_leftMouseButtonDown;
-    int m_clickCount;
-    double m_clickTime;
-    WKPoint m_clickPosition;
-    WKEventMouseButton m_clickButton;
-#if PLATFORM(MAC)
-    int eventNumber;
-#elif PLATFORM(GTK)
-    Vector<WTREventQueueItem> m_eventQueue;
-    unsigned m_mouseButtonCurrentlyDown;
-#elif PLATFORM(QT)
-    Qt::MouseButtons m_mouseButtons;
-
-#if ENABLE(TOUCH_EVENTS)
-    QList<QTouchEvent::TouchPoint> m_touchPoints;
-    Qt::KeyboardModifiers m_touchModifiers;
-    QPoint m_touchPointRadius;
-    bool m_touchActive;
-#endif
-#elif PLATFORM(EFL)
-    Deque<WTREvent> m_eventQueue;
-    WKEventMouseButton m_mouseButton;
-#if ENABLE(TOUCH_EVENTS)
-    Eina_List* m_touchPoints;
-#endif
-#endif
-};
-
-} // namespace WTR
-
-#endif // EventSenderProxy_h
diff --git a/Tools/WebKitTestRunner/GNUmakefile.am b/Tools/WebKitTestRunner/GNUmakefile.am
deleted file mode 100644
index 1812569..0000000
--- a/Tools/WebKitTestRunner/GNUmakefile.am
+++ /dev/null
@@ -1,174 +0,0 @@
-BUILT_SOURCES += \
-	generate-webkittestrunner-forwarding-headers
-
-generate-webkittestrunner-forwarding-headers: $(WebKit2)/Scripts/generate-forwarding-headers.pl $(Programs_WebKitTestRunner_SOURCES)
-	$(AM_V_GEN)$(PERL) $< $(srcdir)/Tools/WebKitTestRunner $(GENSOURCES_WEBKIT2)/include gtk
-	$(AM_V_GEN)$(PERL) $< $(srcdir)/Tools/WebKitTestRunner $(GENSOURCES_WEBKIT2)/include soup
-
-if ENABLE_WEBKIT2
-noinst_PROGRAMS += \
-	Programs/WebKitTestRunner
-endif
-
-Programs_WebKitTestRunner_SOURCES = \
-	Tools/WebKitTestRunner/EventSenderProxy.h \
-	Tools/WebKitTestRunner/gtk/main.cpp \
-	Tools/WebKitTestRunner/gtk/EventSenderProxyGtk.cpp \
-	Tools/WebKitTestRunner/gtk/PlatformWebViewGtk.cpp \
-	Tools/WebKitTestRunner/gtk/TestControllerGtk.cpp \
-	Tools/WebKitTestRunner/cairo/TestInvocationCairo.cpp \
-	Tools/WebKitTestRunner/CyclicRedundancyCheck.cpp \
-	Tools/WebKitTestRunner/CyclicRedundancyCheck.h \
-	Tools/WebKitTestRunner/GeolocationProviderMock.cpp \
-	Tools/WebKitTestRunner/GeolocationProviderMock.h \
-	Tools/WebKitTestRunner/PixelDumpSupport.cpp \
-	Tools/WebKitTestRunner/PixelDumpSupport.h \
-	Tools/WebKitTestRunner/PlatformWebView.h \
-	Tools/WebKitTestRunner/StringFunctions.h \
-	Tools/WebKitTestRunner/TestController.cpp \
-	Tools/WebKitTestRunner/TestController.h \
-	Tools/WebKitTestRunner/TestInvocation.cpp \
-	Tools/WebKitTestRunner/TestInvocation.h \
-	Tools/WebKitTestRunner/WebNotificationProvider.cpp \
-	Tools/WebKitTestRunner/WebNotificationProvider.h \
-	Tools/WebKitTestRunner/WebKitTestRunnerPrefix.h \
-	Tools/WebKitTestRunner/WorkQueueManager.cpp \
-	Tools/WebKitTestRunner/WorkQueueManager.h
-
-Programs_WebKitTestRunner_CPPFLAGS = \
-	-include Tools/WebKitTestRunner/WebKitTestRunnerPrefix.h \
-	-I$(srcdir)/Tools/WebKitTestRunner \
-	-I$(srcdir)/Source/WebCore/platform/gtk \
-	-I$(top_builddir)/DerivedSources/WebKit2/include \
-	$(global_cppflags) \
-	$(javascriptcore_cppflags) \
-	$(webcore_cppflags) \
-	$(GLOBALDEPS_CFLAGS) \
-	$(CAIRO_CFLAGS) \
-	$(GTK_CFLAGS) \
-	$(LIBSOUP_CFLAGS)
-Programs_WebKitTestRunner_CXXFLAGS = $(global_cxxflags)
-Programs_WebKitTestRunner_CFLAGS = $(global_cflags)
-
-Programs_WebKitTestRunner_LDADD = \
-	libjavascriptcoregtk-@WEBKITGTK_API_MAJOR_VERSION@.@WEBKITGTK_API_MINOR_VERSION@.la \
-	libwebkit2gtk-@WEBKITGTK_API_MAJOR_VERSION@.@WEBKITGTK_API_MINOR_VERSION@.la \
-	$(GLOBALDEPS_LIBS) \
-	$(CAIRO_LIBS) \
-	$(GTK_LIBS) \
-	$(GLIB_LIBS) \
-	$(LIBSOUP_LIBS) \
-	$(FREETYPE_LIBS) \
-	$(WINMM_LIBS) \
-	$(XRENDER_LIBS) \
-	$(XT_LIBS)
-
-Programs_WebKitTestRunner_LDFLAGS = \
-	-no-fast-install \
-	-no-install
-
-# The InjectedBundle library allows the render process to load harness code.
-if ENABLE_WEBKIT2
-noinst_LTLIBRARIES += Libraries/libTestRunnerInjectedBundle.la
-endif
-
-webkittestrunner_built_sources += \
-	DerivedSources/InjectedBundle/JSAccessibilityController.cpp \
-	DerivedSources/InjectedBundle/JSAccessibilityTextMarker.cpp \
-	DerivedSources/InjectedBundle/JSAccessibilityTextMarkerRange.cpp \
-	DerivedSources/InjectedBundle/JSAccessibilityUIElement.cpp \
-	DerivedSources/InjectedBundle/JSEventSendingController.cpp \
-	DerivedSources/InjectedBundle/JSGCController.cpp \
-	DerivedSources/InjectedBundle/JSTestRunner.cpp \
-	DerivedSources/InjectedBundle/JSTextInputController.cpp
-nodist_Libraries_libTestRunnerInjectedBundle_la_SOURCES = $(webkittestrunner_built_sources)
-BUILT_SOURCES += $(webkittestrunner_built_sources)
-
-Libraries_libTestRunnerInjectedBundle_la_SOURCES = \
-	Tools/WebKitTestRunner/InjectedBundle/AccessibilityController.cpp \
-	Tools/WebKitTestRunner/InjectedBundle/AccessibilityController.h \
-	Tools/WebKitTestRunner/InjectedBundle/AccessibilityTextMarker.cpp \
-	Tools/WebKitTestRunner/InjectedBundle/AccessibilityTextMarker.h \
-	Tools/WebKitTestRunner/InjectedBundle/AccessibilityTextMarkerRange.cpp \
-	Tools/WebKitTestRunner/InjectedBundle/AccessibilityTextMarkerRange.h \
-	Tools/WebKitTestRunner/InjectedBundle/AccessibilityUIElement.cpp \
-	Tools/WebKitTestRunner/InjectedBundle/AccessibilityUIElement.h \
-	Tools/WebKitTestRunner/InjectedBundle/ActivateFonts.h \
-	Tools/WebKitTestRunner/InjectedBundle/atk/AccessibilityControllerAtk.cpp \
-	Tools/WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp \
-	Tools/WebKitTestRunner/InjectedBundle/Bindings/JSWrappable.h \
-	Tools/WebKitTestRunner/InjectedBundle/Bindings/JSWrapper.cpp \
-	Tools/WebKitTestRunner/InjectedBundle/Bindings/JSWrapper.h \
-	Tools/WebKitTestRunner/InjectedBundle/EventSendingController.cpp \
-	Tools/WebKitTestRunner/InjectedBundle/EventSendingController.h \
-	Tools/WebKitTestRunner/InjectedBundle/GCController.cpp \
-	Tools/WebKitTestRunner/InjectedBundle/GCController.h \
-	Tools/WebKitTestRunner/InjectedBundle/gtk/ActivateFontsGtk.cpp \
-	Tools/WebKitTestRunner/InjectedBundle/gtk/InjectedBundleGtk.cpp \
-	Tools/WebKitTestRunner/InjectedBundle/gtk/InjectedBundleUtilities.cpp \
-	Tools/WebKitTestRunner/InjectedBundle/gtk/InjectedBundleUtilities.h \
-	Tools/WebKitTestRunner/InjectedBundle/gtk/TestRunnerGtk.cpp \
-	Tools/WebKitTestRunner/InjectedBundle/InjectedBundle.cpp \
-	Tools/WebKitTestRunner/InjectedBundle/InjectedBundle.h \
-	Tools/WebKitTestRunner/InjectedBundle/InjectedBundleMain.cpp \
-	Tools/WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp \
-	Tools/WebKitTestRunner/InjectedBundle/InjectedBundlePage.h \
-	Tools/WebKitTestRunner/InjectedBundle/TestRunner.cpp \
-	Tools/WebKitTestRunner/InjectedBundle/TestRunner.h \
-	Tools/WebKitTestRunner/InjectedBundle/TextInputController.cpp \
-	Tools/WebKitTestRunner/InjectedBundle/TextInputController.h
-
-Libraries_libTestRunnerInjectedBundle_la_LIBADD = \
-	libWebCoreInternals.la
-
-Libraries_libTestRunnerInjectedBundle_la_LDFLAGS = \
-	-rpath ${shell pwd}/$(top_builddir)/../unix/TestNetscapePlugin/.libs \
-	$(no_undefined) \
-	-avoid-version \
-	-module
-
-Libraries_libTestRunnerInjectedBundle_la_CPPFLAGS = \
-	-DFONTS_CONF_DIR=\"${shell pwd}/${srcdir}/Tools/DumpRenderTree/gtk/fonts\" \
-	-DTOP_LEVEL_DIR=\"${shell pwd}/${srcdir}\" \
-	-include Tools/WebKitTestRunner/WebKitTestRunnerPrefix.h \
-	-I$(srcdir)/Tools/WebKitTestRunner \
-	-I$(srcdir)/Tools/WebKitTestRunner/InjectedBundle \
-	-I$(srcdir)/Tools/WebKitTestRunner/InjectedBundle/Bindings \
-	-I$(srcdir)/Source/WebCore/testing/js \
-	-I$(top_builddir)/DerivedSources/InjectedBundle \
-	-I$(top_builddir)/DerivedSources/WebKit2/include \
-	$(global_cppflags) \
-	$(javascriptcore_cppflags) \
-	$(webcore_cppflags) \
-	$(GLOBALDEPS_CFLAGS) \
-	$(CAIRO_CFLAGS) \
-	$(GLIB_CFLAGS) \
-	$(GTK_CFLAGS) \
-	$(LIBSOUP_CFLAGS)
-Libraries_libTestRunnerInjectedBundle_la_CXXFLAGS = $(global_cxxflags)
-Libraries_libTestRunnerInjectedBundle_la_CFLAGS = $(global_cflags)
-
-code_generation_dependencies = \
-	Tools/WebKitTestRunner/InjectedBundle/Bindings/CodeGeneratorTestRunner.pm \
-	Source/WebCore/bindings/scripts/CodeGenerator.pm \
-	Source/WebCore/bindings/scripts/IDLParser.pm \
-	Source/WebCore/bindings/scripts/InFilesParser.pm \
-	Source/WebCore/bindings/scripts/generate-bindings.pl
-
-DerivedSources/InjectedBundle/JS%.cpp: Tools/WebKitTestRunner/InjectedBundle/Bindings/%.idl $(code_generation_dependencies)
-	$(AM_V_GEN)$(PERL) \
-		-I $(srcdir)/Source/WebCore/bindings/scripts \
-		-I $(srcdir)/Tools/WebKitTestRunner/InjectedBundle/Bindings \
-		$(srcdir)/Source/WebCore/bindings/scripts/generate-bindings.pl \
-		--defines \"\" --generator TestRunner \
-		--include $(srcdir)/Tools/InjectedBundle/Bindings \
-		--outputDir $(top_builddir)/DerivedSources/InjectedBundle \
-		$<
-
-EXTRA_DIST += \
-	$(srcdir)/Tools/WebKitTestRunner/InjectedBundle/Bindings/CodeGeneratorTestRunner.pm \
-	$(srcdir)/Source/WebCore/bindings/scripts/CodeGenerator.pm \
-	$(srcdir)/Source/WebCore/bindings/scripts/IDLParser.pm \
-	$(srcdir)/Source/WebCore/bindings/scripts/InFilesParser.pm \
-	$(srcdir)/Source/WebCore/bindings/scripts/generate-bindings.pl \
-	$(shell ls $(srcdir)/Tools/WebKitTestRunner/InjectedBundle/Bindings/*.idl)
diff --git a/Tools/WebKitTestRunner/GeolocationProviderMock.cpp b/Tools/WebKitTestRunner/GeolocationProviderMock.cpp
deleted file mode 100644
index 7fa0bdb..0000000
--- a/Tools/WebKitTestRunner/GeolocationProviderMock.cpp
+++ /dev/null
@@ -1,109 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "GeolocationProviderMock.h"
-
-#include <WebKit2/WKGeolocationManager.h>
-#include <wtf/Assertions.h>
-#include <wtf/CurrentTime.h>
-
-namespace WTR {
-
-static void startUpdatingCallback(WKGeolocationManagerRef geolocationManager, const void* clientInfo)
-{
-    GeolocationProviderMock* geolocationProvider = static_cast<GeolocationProviderMock*>(const_cast<void*>(clientInfo));
-    geolocationProvider->startUpdating(geolocationManager);
-}
-
-static void stopUpdatingCallback(WKGeolocationManagerRef geolocationManager, const void* clientInfo)
-{
-    GeolocationProviderMock* geolocationProvider = static_cast<GeolocationProviderMock*>(const_cast<void*>(clientInfo));
-    geolocationProvider->stopUpdating(geolocationManager);
-}
-
-GeolocationProviderMock::GeolocationProviderMock(WKContextRef context)
-    : m_isActive(false)
-    , m_hasError(false)
-{
-    m_geolocationManager = WKContextGetGeolocationManager(context);
-
-    WKGeolocationProvider providerCallback = {
-        kWKGeolocationProviderCurrentVersion,
-        this,
-        startUpdatingCallback,
-        stopUpdatingCallback };
-    WKGeolocationManagerSetProvider(m_geolocationManager, &providerCallback);
-}
-
-void GeolocationProviderMock::setPosition(double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed)
-{
-    m_position.adopt(WKGeolocationPositionCreate_b(currentTime(), latitude, longitude, accuracy, providesAltitude, altitude, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed));
-
-    m_hasError = false;
-    m_errorMessage.clear();
-
-    sendPositionIfNeeded();
-}
-
-void GeolocationProviderMock::setPositionUnavailableError(WKStringRef errorMessage)
-{
-    m_errorMessage = errorMessage;
-    m_hasError = true;
-
-    m_position.clear();
-
-    sendErrorIfNeeded();
-}
-
-void GeolocationProviderMock::startUpdating(WKGeolocationManagerRef geolocationManager)
-{
-    ASSERT_UNUSED(geolocationManager, geolocationManager == m_geolocationManager);
-
-    m_isActive = true;
-    sendPositionIfNeeded();
-    sendErrorIfNeeded();
-}
-
-void GeolocationProviderMock::stopUpdating(WKGeolocationManagerRef geolocationManager)
-{
-    ASSERT_UNUSED(geolocationManager, geolocationManager == m_geolocationManager);
-
-    m_isActive = false;
-}
-
-void GeolocationProviderMock::sendPositionIfNeeded()
-{
-    if (m_isActive && m_position)
-        WKGeolocationManagerProviderDidChangePosition(m_geolocationManager, m_position.get());
-}
-
-void GeolocationProviderMock::sendErrorIfNeeded()
-{
-    if (m_isActive && m_hasError)
-        WKGeolocationManagerProviderDidFailToDeterminePositionWithErrorMessage(m_geolocationManager, m_errorMessage.get());
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/GeolocationProviderMock.h b/Tools/WebKitTestRunner/GeolocationProviderMock.h
deleted file mode 100644
index 1ebf67d..0000000
--- a/Tools/WebKitTestRunner/GeolocationProviderMock.h
+++ /dev/null
@@ -1,58 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef GeolocationProviderMock_h
-#define GeolocationProviderMock_h
-
-#include <WebKit2/WKRetainPtr.h>
-
-namespace WTR {
-
-class GeolocationProviderMock {
-public:
-    GeolocationProviderMock(WKContextRef);
-
-    void setPosition(double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed);
-    void setPositionUnavailableError(WKStringRef errorMessage);
-
-    void startUpdating(WKGeolocationManagerRef);
-    void stopUpdating(WKGeolocationManagerRef);
-
-private:
-    void sendPositionIfNeeded();
-    void sendErrorIfNeeded();
-
-    WKGeolocationManagerRef m_geolocationManager;
-    bool m_isActive;
-
-    WKRetainPtr<WKGeolocationPositionRef> m_position;
-
-    bool m_hasError;
-    WKRetainPtr<WKStringRef> m_errorMessage;
-};
-
-} // namespace WTR
-
-#endif // GeolocationProviderMock_h
diff --git a/Tools/WebKitTestRunner/InjectedBundle-Info.plist b/Tools/WebKitTestRunner/InjectedBundle-Info.plist
deleted file mode 100644
index a21fbde..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle-Info.plist
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
-	<key>CFBundleDevelopmentRegion</key>
-	<string>English</string>
-	<key>CFBundleExecutable</key>
-	<string>${EXECUTABLE_NAME}</string>
-	<key>CFBundleIdentifier</key>
-	<string>com.apple.WebKitTestRunner.InjectedBundle</string>
-	<key>CFBundleInfoDictionaryVersion</key>
-	<string>6.0</string>
-	<key>CFBundlePackageType</key>
-	<string>BNDL</string>
-	<key>CFBundleShortVersionString</key>
-	<string>1.0</string>
-	<key>CFBundleSignature</key>
-	<string>????</string>
-	<key>CFBundleVersion</key>
-	<string>1</string>
-</dict>
-</plist>
diff --git a/Tools/WebKitTestRunner/InjectedBundle/AccessibilityController.cpp b/Tools/WebKitTestRunner/InjectedBundle/AccessibilityController.cpp
deleted file mode 100644
index 03ec650..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/AccessibilityController.cpp
+++ /dev/null
@@ -1,121 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#include "config.h"
-#include "AccessibilityController.h"
-
-#include "AccessibilityUIElement.h"
-#include "InjectedBundle.h"
-#include "InjectedBundlePage.h"
-#include "JSAccessibilityController.h"
-
-#include <JavaScriptCore/JSRetainPtr.h>
-#include <WebKit2/WKBundle.h>
-#include <WebKit2/WKBundlePage.h>
-#include <WebKit2/WKBundlePagePrivate.h>
-
-namespace WTR {
-
-PassRefPtr<AccessibilityController> AccessibilityController::create()
-{
-    return adoptRef(new AccessibilityController);
-}
-
-AccessibilityController::AccessibilityController()
-#if PLATFORM(GTK) || PLATFORM(EFL)
-    : m_stateChangeListenerId(0)
-    , m_focusEventListenerId(0)
-    , m_activeDescendantChangedListenerId(0)
-    , m_childrenChangedListenerId(0)
-    , m_propertyChangedListenerId(0)
-    , m_visibleDataChangedListenerId(0)
-#endif
-{
-}
-
-AccessibilityController::~AccessibilityController()
-{
-}
-
-void AccessibilityController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception)
-{
-    setProperty(context, windowObject, "accessibilityController", this, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, exception);
-}
-
-JSClassRef AccessibilityController::wrapperClass()
-{
-    return JSAccessibilityController::accessibilityControllerClass();
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityController::rootElement()
-{
-    // FIXME: Make this work on Windows.
-#if PLATFORM(WIN)
-    return 0;
-#else
-    WKBundlePageRef page = InjectedBundle::shared().page()->page();
-    void* root = WKAccessibilityRootObject(page);
-    
-    return AccessibilityUIElement::create(static_cast<PlatformUIElement>(root));    
-#endif
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityController::focusedElement()
-{
-    // FIXME: Make this work on Windows.
-#if PLATFORM(WIN)
-    return 0;
-#else    
-    WKBundlePageRef page = InjectedBundle::shared().page()->page();
-    void* root = WKAccessibilityFocusedObject(page);
-    
-    return AccessibilityUIElement::create(static_cast<PlatformUIElement>(root));    
-#endif
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityController::elementAtPoint(int x, int y)
-{
-    RefPtr<AccessibilityUIElement> uiElement = rootElement();
-    return uiElement->elementAtPoint(x, y);
-}
-
-// Unsupported methods on various platforms.
-// As they're implemented on other platforms this list should be modified.
-#if !PLATFORM(MAC)
-bool AccessibilityController::addNotificationListener(JSValueRef) { return false; }
-bool AccessibilityController::removeNotificationListener() { return false; }
-#endif
-
-#if !PLATFORM(MAC) && !PLATFORM(GTK) && !PLATFORM(EFL)
-PassRefPtr<AccessibilityUIElement> AccessibilityController::accessibleElementById(JSStringRef attribute) { return 0; }
-#endif
-
-#if !PLATFORM(GTK) && !PLATFORM(EFL) && !PLATFORM(MAC)
-void AccessibilityController::logAccessibilityEvents() { }
-void AccessibilityController::resetToConsistentState() { }
-#endif
-
-} // namespace WTR
-
diff --git a/Tools/WebKitTestRunner/InjectedBundle/AccessibilityController.h b/Tools/WebKitTestRunner/InjectedBundle/AccessibilityController.h
deleted file mode 100644
index 247de34..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/AccessibilityController.h
+++ /dev/null
@@ -1,83 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#ifndef AccessibilityController_h
-#define AccessibilityController_h
-
-#include "AccessibilityUIElement.h"
-#include "JSWrappable.h"
-#include <JavaScriptCore/JSObjectRef.h>
-#include <wtf/Platform.h>
-#if PLATFORM(WIN)
-#include <windows.h>
-#endif
-
-namespace WTR {
-    
-class AccessibilityController : public JSWrappable {
-public:
-    static PassRefPtr<AccessibilityController> create();
-    ~AccessibilityController();
-
-    void makeWindowObject(JSContextRef, JSObjectRef windowObject, JSValueRef* exception);
-    virtual JSClassRef wrapperClass();
-    
-    // Controller Methods - platform-independent implementations.
-    PassRefPtr<AccessibilityUIElement> rootElement();
-    PassRefPtr<AccessibilityUIElement> focusedElement();
-    PassRefPtr<AccessibilityUIElement> elementAtPoint(int x, int y);
-    PassRefPtr<AccessibilityUIElement> accessibleElementById(JSStringRef idAttribute);
-
-    bool addNotificationListener(JSValueRef functionCallback);
-    bool removeNotificationListener();
-
-    // Here for consistency with DRT. Not implemented because they don't do anything on the Mac.
-    void logFocusEvents() { }
-    void logValueChangeEvents() { }
-    void logScrollingStartEvents() { }
-    void logAccessibilityEvents();
-
-    void resetToConsistentState();
-
-private:
-    AccessibilityController();
-
-#if PLATFORM(MAC)
-    RetainPtr<NotificationHandler> m_globalNotificationHandler;
-#endif
-
-#if PLATFORM(GTK) || PLATFORM(EFL)
-    unsigned m_stateChangeListenerId;
-    unsigned m_focusEventListenerId;
-    unsigned m_activeDescendantChangedListenerId;
-    unsigned m_childrenChangedListenerId;
-    unsigned m_propertyChangedListenerId;
-    unsigned m_visibleDataChangedListenerId;
-#endif
-};
-
-} // namespace WTR
-
-#endif // AccessibilityController_h
diff --git a/Tools/WebKitTestRunner/InjectedBundle/AccessibilityTextMarker.cpp b/Tools/WebKitTestRunner/InjectedBundle/AccessibilityTextMarker.cpp
deleted file mode 100644
index a7a4b7d..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/AccessibilityTextMarker.cpp
+++ /dev/null
@@ -1,76 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#include "config.h"
-#include "AccessibilityTextMarker.h"
-
-#include "AccessibilityUIElement.h"
-#include "JSAccessibilityTextMarker.h"
-
-#include <JavaScriptCore/JSRetainPtr.h>
-
-namespace WTR {
-    
-PassRefPtr<AccessibilityTextMarker> AccessibilityTextMarker::create(PlatformTextMarker marker)
-{
-    return adoptRef(new AccessibilityTextMarker(marker));
-}
-
-PassRefPtr<AccessibilityTextMarker> AccessibilityTextMarker::create(const AccessibilityTextMarker& marker)
-{
-    return adoptRef(new AccessibilityTextMarker(marker));
-}
-
-AccessibilityTextMarker::AccessibilityTextMarker(PlatformTextMarker marker)
-    : m_textMarker(marker)
-{
-}
-
-AccessibilityTextMarker::AccessibilityTextMarker(const AccessibilityTextMarker& marker)
-    : JSWrappable()
-    , m_textMarker(marker.platformTextMarker())
-{
-}
-
-AccessibilityTextMarker::~AccessibilityTextMarker()
-{
-}
-
-PlatformTextMarker AccessibilityTextMarker::platformTextMarker() const
-{
-#if PLATFORM(MAC)
-    return m_textMarker.get();
-#else
-    return m_textMarker;
-#endif
-}
-    
-JSClassRef AccessibilityTextMarker::wrapperClass()
-{
-    return JSAccessibilityTextMarker::accessibilityTextMarkerClass();
-}
-
-} // namespace WTR
-
diff --git a/Tools/WebKitTestRunner/InjectedBundle/AccessibilityTextMarker.h b/Tools/WebKitTestRunner/InjectedBundle/AccessibilityTextMarker.h
deleted file mode 100644
index c4d4d04..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/AccessibilityTextMarker.h
+++ /dev/null
@@ -1,75 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#ifndef AccessibilityTextMarker_h
-#define AccessibilityTextMarker_h
-
-#include "JSWrappable.h"
-#include <JavaScriptCore/JSObjectRef.h>
-#include <wtf/PassRefPtr.h>
-#include <wtf/Platform.h>
-
-#if PLATFORM(MAC)
-#include <wtf/RetainPtr.h>
-typedef CFTypeRef PlatformTextMarker;
-#else
-typedef void* PlatformTextMarker;
-#endif
-
-namespace WTR {
-
-class AccessibilityUIElement;
-
-class AccessibilityTextMarker : public JSWrappable {
-public:
-    static PassRefPtr<AccessibilityTextMarker> create(PlatformTextMarker);
-    static PassRefPtr<AccessibilityTextMarker> create(const AccessibilityTextMarker&);
-
-    ~AccessibilityTextMarker();
-    
-    PlatformTextMarker platformTextMarker() const;
-    virtual JSClassRef wrapperClass();
-
-    static JSObjectRef makeJSAccessibilityTextMarker(JSContextRef, const AccessibilityTextMarker&);
-    bool isEqual(AccessibilityTextMarker*);
-    
-private:
-    AccessibilityTextMarker(PlatformTextMarker);
-    AccessibilityTextMarker(const AccessibilityTextMarker&);
-
-#if PLATFORM(MAC)
-    RetainPtr<PlatformTextMarker> m_textMarker;
-#else
-    PlatformTextMarker m_textMarker;
-#endif
-};
-
-#if !PLATFORM(MAC)
-inline bool AccessibilityTextMarker::isEqual(AccessibilityTextMarker*) { return false; }
-#endif
-
-} // namespace WTR
-    
-#endif // AccessibilityTextMarker_h
diff --git a/Tools/WebKitTestRunner/InjectedBundle/AccessibilityTextMarkerRange.cpp b/Tools/WebKitTestRunner/InjectedBundle/AccessibilityTextMarkerRange.cpp
deleted file mode 100644
index 3613f37..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/AccessibilityTextMarkerRange.cpp
+++ /dev/null
@@ -1,76 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#include "config.h"
-#include "AccessibilityTextMarker.h"
-
-#include "AccessibilityUIElement.h"
-#include "JSAccessibilityTextMarkerRange.h"
-
-#include <JavaScriptCore/JSRetainPtr.h>
-
-namespace WTR {
-    
-PassRefPtr<AccessibilityTextMarkerRange> AccessibilityTextMarkerRange::create(PlatformTextMarkerRange markerRange)
-{
-    return adoptRef(new AccessibilityTextMarkerRange(markerRange));
-}
-
-PassRefPtr<AccessibilityTextMarkerRange> AccessibilityTextMarkerRange::create(const AccessibilityTextMarkerRange& markerRange)
-{
-    return adoptRef(new AccessibilityTextMarkerRange(markerRange));
-}
-
-AccessibilityTextMarkerRange::AccessibilityTextMarkerRange(PlatformTextMarkerRange markerRange)
-    : m_textMarkerRange(markerRange)
-{
-}
-
-AccessibilityTextMarkerRange::AccessibilityTextMarkerRange(const AccessibilityTextMarkerRange& markerRange)
-    : JSWrappable()
-    , m_textMarkerRange(markerRange.platformTextMarkerRange())
-{
-}
-
-AccessibilityTextMarkerRange::~AccessibilityTextMarkerRange()
-{
-}
-
-PlatformTextMarkerRange AccessibilityTextMarkerRange::platformTextMarkerRange() const
-{
-#if PLATFORM(MAC)
-    return m_textMarkerRange.get();
-#else
-    return m_textMarkerRange;
-#endif
-}
-    
-JSClassRef AccessibilityTextMarkerRange::wrapperClass()
-{
-    return JSAccessibilityTextMarkerRange::accessibilityTextMarkerRangeClass();
-}
-    
-} // namespace WTR
-
diff --git a/Tools/WebKitTestRunner/InjectedBundle/AccessibilityTextMarkerRange.h b/Tools/WebKitTestRunner/InjectedBundle/AccessibilityTextMarkerRange.h
deleted file mode 100644
index e57a29c..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/AccessibilityTextMarkerRange.h
+++ /dev/null
@@ -1,73 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#ifndef AccessibilityTextMarkerRange_h
-#define AccessibilityTextMarkerRange_h
-
-#include "JSWrappable.h"
-#include <JavaScriptCore/JSObjectRef.h>
-#include <wtf/PassRefPtr.h>
-#include <wtf/Platform.h>
-
-#if PLATFORM(MAC)
-#include <wtf/RetainPtr.h>
-typedef CFTypeRef PlatformTextMarkerRange;
-#else
-typedef void* PlatformTextMarkerRange;
-#endif
-
-namespace WTR {
-    
-class AccessibilityTextMarkerRange : public JSWrappable {
-public:
-    static PassRefPtr<AccessibilityTextMarkerRange> create(PlatformTextMarkerRange);
-    static PassRefPtr<AccessibilityTextMarkerRange> create(const AccessibilityTextMarkerRange&);
-    
-    ~AccessibilityTextMarkerRange();
-    
-    PlatformTextMarkerRange platformTextMarkerRange() const;
-    virtual JSClassRef wrapperClass();
-    
-    static JSObjectRef makeJSAccessibilityTextMarkerRange(JSContextRef, const AccessibilityTextMarkerRange&);
-    bool isEqual(AccessibilityTextMarkerRange*);
-    
-private:
-    AccessibilityTextMarkerRange(PlatformTextMarkerRange);
-    AccessibilityTextMarkerRange(const AccessibilityTextMarkerRange&);
-    
-#if PLATFORM(MAC)
-    RetainPtr<PlatformTextMarkerRange> m_textMarkerRange;
-#else
-    PlatformTextMarkerRange m_textMarkerRange;
-#endif
-};
-    
-#if !PLATFORM(MAC)
-inline bool AccessibilityTextMarkerRange::isEqual(AccessibilityTextMarkerRange*) { return false; }
-#endif
-    
-} // namespace WTR
-
-#endif // AccessibilityTextMarkerRange_h
diff --git a/Tools/WebKitTestRunner/InjectedBundle/AccessibilityUIElement.cpp b/Tools/WebKitTestRunner/InjectedBundle/AccessibilityUIElement.cpp
deleted file mode 100644
index f03fd4f..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/AccessibilityUIElement.cpp
+++ /dev/null
@@ -1,187 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#include "config.h"
-#include "AccessibilityUIElement.h"
-
-#include "JSAccessibilityUIElement.h"
-#include <JavaScriptCore/JSRetainPtr.h>
-
-namespace WTR {
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::create(PlatformUIElement uiElement)
-{
-    return adoptRef(new AccessibilityUIElement(uiElement));
-}
-    
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::create(const AccessibilityUIElement& uiElement)
-{
-    return adoptRef(new AccessibilityUIElement(uiElement));
-}
-
-JSClassRef AccessibilityUIElement::wrapperClass()
-{
-    return JSAccessibilityUIElement::accessibilityUIElementClass();
-}
-    
-// Implementation
-
-bool AccessibilityUIElement::isValid() const
-{
-    return m_element;            
-}
-
-// Unsupported methods on various platforms. As they're implemented on other platforms this list should be modified.
-#if !PLATFORM(MAC) && !PLATFORM(GTK) && !PLATFORM(EFL)
-AccessibilityUIElement::AccessibilityUIElement(PlatformUIElement) { }
-AccessibilityUIElement::AccessibilityUIElement(const AccessibilityUIElement&) { }
-AccessibilityUIElement::~AccessibilityUIElement() { }
-bool AccessibilityUIElement::isEqual(AccessibilityUIElement*) { return false; }
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::elementAtPoint(int, int) { return 0; }
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::childAtIndex(unsigned) { return 0; }
-unsigned AccessibilityUIElement::indexOfChild(AccessibilityUIElement*) { return 0; }
-int AccessibilityUIElement::childrenCount() { return 0; }
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::titleUIElement() { return 0; }
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::parentElement() { return 0; }
-void AccessibilityUIElement::takeFocus() { }
-void AccessibilityUIElement::takeSelection() { }
-void AccessibilityUIElement::addSelection() { }
-void AccessibilityUIElement::removeSelection() { }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::allAttributes() { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributesOfLinkedUIElements() { return 0; }
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::linkedUIElementAtIndex(unsigned) { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributesOfDocumentLinks() { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributesOfChildren() { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::parameterizedAttributeNames() { return 0; }
-void AccessibilityUIElement::increment() { }
-void AccessibilityUIElement::decrement() { }
-void AccessibilityUIElement::showMenu() { }
-void AccessibilityUIElement::press() { }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::stringAttributeValue(JSStringRef) { return 0; }
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::uiElementAttributeValue(JSStringRef) const { return 0; }
-double AccessibilityUIElement::numberAttributeValue(JSStringRef) { return 0; }
-bool AccessibilityUIElement::boolAttributeValue(JSStringRef) { return false; }
-bool AccessibilityUIElement::isAttributeSupported(JSStringRef) { return false; }
-bool AccessibilityUIElement::isAttributeSettable(JSStringRef) { return false; }
-bool AccessibilityUIElement::isPressActionSupported() { return false; }
-bool AccessibilityUIElement::isIncrementActionSupported() { return false; }
-bool AccessibilityUIElement::isDecrementActionSupported() { return false; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::role() { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::subrole() { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::roleDescription() { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::title() { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::description() { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::language() { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::stringValue() { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::accessibilityValue() const { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::helpText() const { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::orientation() const { return 0; }
-double AccessibilityUIElement::x() { return 0; }
-double AccessibilityUIElement::y() { return 0; }
-double AccessibilityUIElement::width() { return 0; }
-double AccessibilityUIElement::height() { return 0; }
-double AccessibilityUIElement::intValue() const { return 0; }
-double AccessibilityUIElement::minValue() { return 0; }
-double AccessibilityUIElement::maxValue() { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::valueDescription() { return 0; }
-int AccessibilityUIElement::insertionPointLineNumber() { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::selectedTextRange() { return 0; }
-bool AccessibilityUIElement::isEnabled() { return false; }
-bool AccessibilityUIElement::isRequired() const { return false; }
-bool AccessibilityUIElement::isFocused() const { return false; }
-bool AccessibilityUIElement::isFocusable() const { return false; }
-bool AccessibilityUIElement::isSelected() const { return false; }
-bool AccessibilityUIElement::isSelectable() const { return false; }
-bool AccessibilityUIElement::isMultiSelectable() const { return false; }
-void AccessibilityUIElement::setSelectedChild(AccessibilityUIElement*) const { }
-unsigned AccessibilityUIElement::selectedChildrenCount() const { return 0; }
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::selectedChildAtIndex(unsigned) const { return 0; }
-bool AccessibilityUIElement::isExpanded() const { return false; }
-bool AccessibilityUIElement::isChecked() const { return false; }
-bool AccessibilityUIElement::isVisible() const { return false; }
-bool AccessibilityUIElement::isOffScreen() const { return false; }
-bool AccessibilityUIElement::isCollapsed() const { return false; }
-bool AccessibilityUIElement::isIgnored() const { return false; }
-bool AccessibilityUIElement::hasPopup() const { return false; }
-int AccessibilityUIElement::hierarchicalLevel() const { return 0; }
-double AccessibilityUIElement::clickPointX() { return 0; }
-double AccessibilityUIElement::clickPointY() { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::documentEncoding() { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::documentURI() { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::url() { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::speak() { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributesOfColumnHeaders() { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributesOfRowHeaders() { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributesOfColumns() { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributesOfRows() { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributesOfVisibleCells() { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributesOfHeader() { return 0; }
-int AccessibilityUIElement::indexInTable() { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::rowIndexRange() { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::columnIndexRange() { return 0; }
-int AccessibilityUIElement::rowCount() { return 0; }
-int AccessibilityUIElement::columnCount() { return 0; }
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::selectedRowAtIndex(unsigned) { return 0; }
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::disclosedByRow() { return 0; }
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::disclosedRowAtIndex(unsigned) { return 0; }
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::rowAtIndex(unsigned) { return 0; }
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::ariaOwnsElementAtIndex(unsigned) { return 0; }
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::ariaFlowToElementAtIndex(unsigned) { return 0; }
-bool AccessibilityUIElement::ariaIsGrabbed() const { return false; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::ariaDropEffects() const { return 0; }
-int AccessibilityUIElement::lineForIndex(int) { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::rangeForLine(int) { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::rangeForPosition(int, int) { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::boundsForRange(unsigned, unsigned) { return 0; }
-void AccessibilityUIElement::setSelectedTextRange(unsigned, unsigned) { }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::stringForRange(unsigned, unsigned) { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributedStringForRange(unsigned, unsigned) { return 0; }
-bool AccessibilityUIElement::attributedStringRangeIsMisspelled(unsigned, unsigned) { return false; }
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::uiElementForSearchPredicate(AccessibilityUIElement*, bool, JSStringRef, JSStringRef) { return 0; }
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::cellForColumnAndRow(unsigned, unsigned) { return 0; }
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::horizontalScrollbar() const { return 0; }
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::verticalScrollbar() const { return 0; }
-bool AccessibilityUIElement::addNotificationListener(JSValueRef) { return false; }
-bool AccessibilityUIElement::removeNotificationListener() { return false; }
-PassRefPtr<AccessibilityTextMarkerRange> AccessibilityUIElement::textMarkerRangeForElement(AccessibilityUIElement*) { return 0; }
-int AccessibilityUIElement::textMarkerRangeLength(AccessibilityTextMarkerRange*) { return 0; }
-PassRefPtr<AccessibilityTextMarkerRange> AccessibilityUIElement::textMarkerRangeForMarkers(AccessibilityTextMarker*, AccessibilityTextMarker*) { return 0; }
-PassRefPtr<AccessibilityTextMarker> AccessibilityUIElement::startTextMarkerForTextMarkerRange(AccessibilityTextMarkerRange*) { return 0; }
-PassRefPtr<AccessibilityTextMarker> AccessibilityUIElement::endTextMarkerForTextMarkerRange(AccessibilityTextMarkerRange*) { return 0; }
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::accessibilityElementForTextMarker(AccessibilityTextMarker*) { return 0; }
-PassRefPtr<AccessibilityTextMarker> AccessibilityUIElement::textMarkerForPoint(int, int) { return 0; }
-PassRefPtr<AccessibilityTextMarker> AccessibilityUIElement::previousTextMarker(AccessibilityTextMarker*) { return 0; }
-PassRefPtr<AccessibilityTextMarker> AccessibilityUIElement::nextTextMarker(AccessibilityTextMarker*) { return 0; }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::stringForTextMarkerRange(AccessibilityTextMarkerRange*) { return 0; }
-bool AccessibilityUIElement::attributedStringForTextMarkerRangeContainsAttribute(JSStringRef, AccessibilityTextMarkerRange*) { return false; }
-int AccessibilityUIElement::indexForTextMarker(AccessibilityTextMarker*) { return -1; }
-bool AccessibilityUIElement::isTextMarkerValid(AccessibilityTextMarker*) { return false; }
-PassRefPtr<AccessibilityTextMarker> AccessibilityUIElement::textMarkerForIndex(int) { return 0; }
-void AccessibilityUIElement::scrollToMakeVisible() { }
-JSRetainPtr<JSStringRef> AccessibilityUIElement::supportedActions() const { return 0; }
-#endif
-
-} // namespace WTR
-
diff --git a/Tools/WebKitTestRunner/InjectedBundle/AccessibilityUIElement.h b/Tools/WebKitTestRunner/InjectedBundle/AccessibilityUIElement.h
deleted file mode 100644
index 43c4180..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/AccessibilityUIElement.h
+++ /dev/null
@@ -1,263 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#ifndef AccessibilityUIElement_h
-#define AccessibilityUIElement_h
-
-#include "AccessibilityTextMarker.h"
-#include "AccessibilityTextMarkerRange.h"
-#include "JSWrappable.h"
-
-#include <JavaScriptCore/JSObjectRef.h>
-#include <JavaScriptCore/JSRetainPtr.h>
-#include <wtf/Platform.h>
-#include <wtf/Vector.h>
-
-#if PLATFORM(MAC)
-#ifdef __OBJC__
-typedef id PlatformUIElement;
-#else
-typedef struct objc_object* PlatformUIElement;
-#endif
-#elif PLATFORM(WIN)
-#undef _WINSOCKAPI_
-#define _WINSOCKAPI_ // Prevent inclusion of winsock.h in windows.h
-
-#include <WebCore/COMPtr.h>
-#include <oleacc.h>
-
-typedef COMPtr<IAccessible> PlatformUIElement;
-#elif PLATFORM(GTK) || (PLATFORM(EFL) && HAVE(ACCESSIBILITY))
-#include <atk/atk.h>
-typedef AtkObject* PlatformUIElement;
-#else
-typedef void* PlatformUIElement;
-#endif
-
-#if PLATFORM(MAC)
-#ifdef __OBJC__
-typedef id NotificationHandler;
-#else
-typedef struct objc_object* NotificationHandler;
-#endif
-#endif
-
-namespace WTR {
-
-class AccessibilityUIElement : public JSWrappable {
-public:
-    static PassRefPtr<AccessibilityUIElement> create(PlatformUIElement);
-    static PassRefPtr<AccessibilityUIElement> create(const AccessibilityUIElement&);
-
-    ~AccessibilityUIElement();
-
-    PlatformUIElement platformUIElement() { return m_element; }
-    virtual JSClassRef wrapperClass();
-
-    static JSObjectRef makeJSAccessibilityUIElement(JSContextRef, const AccessibilityUIElement&);
-
-    bool isEqual(AccessibilityUIElement* otherElement);
-    
-    PassRefPtr<AccessibilityUIElement> elementAtPoint(int x, int y);
-    PassRefPtr<AccessibilityUIElement> childAtIndex(unsigned);
-    unsigned indexOfChild(AccessibilityUIElement*);
-    int childrenCount();
-    PassRefPtr<AccessibilityUIElement> titleUIElement();
-    PassRefPtr<AccessibilityUIElement> parentElement();
-
-    void takeFocus();
-    void takeSelection();
-    void addSelection();
-    void removeSelection();
-
-    // Methods - platform-independent implementations
-    JSRetainPtr<JSStringRef> allAttributes();
-    JSRetainPtr<JSStringRef> attributesOfLinkedUIElements();
-    PassRefPtr<AccessibilityUIElement> linkedUIElementAtIndex(unsigned);
-    
-    JSRetainPtr<JSStringRef> attributesOfDocumentLinks();
-    JSRetainPtr<JSStringRef> attributesOfChildren();
-    JSRetainPtr<JSStringRef> parameterizedAttributeNames();
-    void increment();
-    void decrement();
-    void showMenu();
-    void press();
-
-    // Attributes - platform-independent implementations
-    JSRetainPtr<JSStringRef> stringAttributeValue(JSStringRef attribute);
-    double numberAttributeValue(JSStringRef attribute);
-    PassRefPtr<AccessibilityUIElement> uiElementAttributeValue(JSStringRef attribute) const;
-    bool boolAttributeValue(JSStringRef attribute);
-    bool isAttributeSupported(JSStringRef attribute);
-    bool isAttributeSettable(JSStringRef attribute);
-    bool isPressActionSupported();
-    bool isIncrementActionSupported();
-    bool isDecrementActionSupported();
-    JSRetainPtr<JSStringRef> role();
-    JSRetainPtr<JSStringRef> subrole();
-    JSRetainPtr<JSStringRef> roleDescription();
-    JSRetainPtr<JSStringRef> title();
-    JSRetainPtr<JSStringRef> description();
-    JSRetainPtr<JSStringRef> language();
-    JSRetainPtr<JSStringRef> stringValue();
-    JSRetainPtr<JSStringRef> accessibilityValue() const;
-    JSRetainPtr<JSStringRef> helpText() const;
-    JSRetainPtr<JSStringRef> orientation() const;
-    double x();
-    double y();
-    double width();
-    double height();
-    double intValue() const;
-    double minValue();
-    double maxValue();
-    JSRetainPtr<JSStringRef> valueDescription();
-    int insertionPointLineNumber();
-    JSRetainPtr<JSStringRef> selectedTextRange();
-    bool isEnabled();
-    bool isRequired() const;
-    
-    bool isFocused() const;
-    bool isFocusable() const;
-    bool isSelected() const;
-    bool isSelectable() const;
-    bool isMultiSelectable() const;
-    void setSelectedChild(AccessibilityUIElement*) const;
-    unsigned selectedChildrenCount() const;
-    PassRefPtr<AccessibilityUIElement> selectedChildAtIndex(unsigned) const;
-    
-    bool isValid() const;
-    bool isExpanded() const;
-    bool isChecked() const;
-    bool isVisible() const;
-    bool isOffScreen() const;
-    bool isCollapsed() const;
-    bool isIgnored() const;
-    bool hasPopup() const;
-    int hierarchicalLevel() const;
-    double clickPointX();
-    double clickPointY();
-    JSRetainPtr<JSStringRef> documentEncoding();
-    JSRetainPtr<JSStringRef> documentURI();
-    JSRetainPtr<JSStringRef> url();
-
-    // CSS3-speech properties.
-    JSRetainPtr<JSStringRef> speak();
-    
-    // Table-specific attributes
-    JSRetainPtr<JSStringRef> attributesOfColumnHeaders();
-    JSRetainPtr<JSStringRef> attributesOfRowHeaders();
-    JSRetainPtr<JSStringRef> attributesOfColumns();
-    JSRetainPtr<JSStringRef> attributesOfRows();
-    JSRetainPtr<JSStringRef> attributesOfVisibleCells();
-    JSRetainPtr<JSStringRef> attributesOfHeader();
-    int indexInTable();
-    JSRetainPtr<JSStringRef> rowIndexRange();
-    JSRetainPtr<JSStringRef> columnIndexRange();
-    int rowCount();
-    int columnCount();
-    
-    // Tree/Outline specific attributes
-    PassRefPtr<AccessibilityUIElement> selectedRowAtIndex(unsigned);
-    PassRefPtr<AccessibilityUIElement> disclosedByRow();
-    PassRefPtr<AccessibilityUIElement> disclosedRowAtIndex(unsigned);
-    PassRefPtr<AccessibilityUIElement> rowAtIndex(unsigned);
-
-    // ARIA specific
-    PassRefPtr<AccessibilityUIElement> ariaOwnsElementAtIndex(unsigned);
-    PassRefPtr<AccessibilityUIElement> ariaFlowToElementAtIndex(unsigned);
-
-    // ARIA Drag and Drop
-    bool ariaIsGrabbed() const;
-    // A space concatentated string of all the drop effects.
-    JSRetainPtr<JSStringRef> ariaDropEffects() const;
-    
-    // Parameterized attributes
-    int lineForIndex(int);
-    JSRetainPtr<JSStringRef> rangeForLine(int);
-    JSRetainPtr<JSStringRef> rangeForPosition(int x, int y);
-    JSRetainPtr<JSStringRef> boundsForRange(unsigned location, unsigned length);
-    void setSelectedTextRange(unsigned location, unsigned length);
-    JSRetainPtr<JSStringRef> stringForRange(unsigned location, unsigned length);
-    JSRetainPtr<JSStringRef> attributedStringForRange(unsigned location, unsigned length);
-    bool attributedStringRangeIsMisspelled(unsigned location, unsigned length);
-    PassRefPtr<AccessibilityUIElement> uiElementForSearchPredicate(AccessibilityUIElement* startElement, bool isDirectionNext, JSStringRef searchKey, JSStringRef searchText);
-    
-    // Table-specific
-    PassRefPtr<AccessibilityUIElement> cellForColumnAndRow(unsigned column, unsigned row);
-
-    // Scrollarea-specific
-    PassRefPtr<AccessibilityUIElement> horizontalScrollbar() const;
-    PassRefPtr<AccessibilityUIElement> verticalScrollbar() const;
-
-    void scrollToMakeVisible();
-    
-    // Text markers.
-    PassRefPtr<AccessibilityTextMarkerRange> textMarkerRangeForElement(AccessibilityUIElement*);    
-    PassRefPtr<AccessibilityTextMarkerRange> textMarkerRangeForMarkers(AccessibilityTextMarker* startMarker, AccessibilityTextMarker* endMarker);
-    PassRefPtr<AccessibilityTextMarker> startTextMarkerForTextMarkerRange(AccessibilityTextMarkerRange*);
-    PassRefPtr<AccessibilityTextMarker> endTextMarkerForTextMarkerRange(AccessibilityTextMarkerRange*);
-    PassRefPtr<AccessibilityTextMarker> textMarkerForPoint(int x, int y);
-    PassRefPtr<AccessibilityTextMarker> previousTextMarker(AccessibilityTextMarker*);
-    PassRefPtr<AccessibilityTextMarker> nextTextMarker(AccessibilityTextMarker*);
-    PassRefPtr<AccessibilityUIElement> accessibilityElementForTextMarker(AccessibilityTextMarker*);
-    JSRetainPtr<JSStringRef> stringForTextMarkerRange(AccessibilityTextMarkerRange*);
-    int textMarkerRangeLength(AccessibilityTextMarkerRange*);
-    bool attributedStringForTextMarkerRangeContainsAttribute(JSStringRef, AccessibilityTextMarkerRange*);
-    int indexForTextMarker(AccessibilityTextMarker*);
-    bool isTextMarkerValid(AccessibilityTextMarker*);
-    PassRefPtr<AccessibilityTextMarker> textMarkerForIndex(int);
-
-    // Returns an ordered list of supported actions for an element.
-    JSRetainPtr<JSStringRef> supportedActions() const;
-
-    // Notifications
-    // Function callback should take one argument, the name of the notification.
-    bool addNotificationListener(JSValueRef functionCallback);
-    // Make sure you call remove, because you can't rely on objects being deallocated in a timely fashion.
-    bool removeNotificationListener();
-    
-private:
-    AccessibilityUIElement(PlatformUIElement);
-    AccessibilityUIElement(const AccessibilityUIElement&);
-
-    PlatformUIElement m_element;
-    
-    // A retained, platform specific object used to help manage notifications for this object.
-#if PLATFORM(MAC)
-    NotificationHandler m_notificationHandler;
-
-    void getLinkedUIElements(Vector<RefPtr<AccessibilityUIElement> >&);
-    void getDocumentLinks(Vector<RefPtr<AccessibilityUIElement> >&);
-#endif
-
-#if PLATFORM(MAC) || PLATFORM(GTK) || (PLATFORM(EFL) && HAVE(ACCESSIBILITY))
-    void getChildren(Vector<RefPtr<AccessibilityUIElement> >&);
-    void getChildrenWithRange(Vector<RefPtr<AccessibilityUIElement> >&, unsigned location, unsigned length);
-#endif
-};
-    
-} // namespace WTR
-    
-#endif // AccessibilityUIElement_h
diff --git a/Tools/WebKitTestRunner/InjectedBundle/ActivateFonts.h b/Tools/WebKitTestRunner/InjectedBundle/ActivateFonts.h
deleted file mode 100644
index 5ee1276..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/ActivateFonts.h
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef ActivateFonts_h
-#define ActivateFonts_h
-
-namespace WTR {
-
-void activateFonts();
-
-} // namespace WTR
-
-#endif // ActivateFonts_h
diff --git a/Tools/WebKitTestRunner/InjectedBundle/Bindings/AccessibilityController.idl b/Tools/WebKitTestRunner/InjectedBundle/Bindings/AccessibilityController.idl
deleted file mode 100644
index 005ec81..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/Bindings/AccessibilityController.idl
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-interface AccessibilityController {
-    readonly attribute AccessibilityUIElement rootElement;
-    readonly attribute AccessibilityUIElement focusedElement;
-    AccessibilityUIElement elementAtPoint(in int x, in int y);
-    AccessibilityUIElement accessibleElementById(in DOMString id);
-    
-    boolean addNotificationListener(in object functionCallback);
-    boolean removeNotificationListener();
-
-    void logFocusEvents();
-    void logValueChangeEvents();
-    void logScrollingStartEvents();
-    void logAccessibilityEvents();
-    void resetToConsistentState();
-};
-
diff --git a/Tools/WebKitTestRunner/InjectedBundle/Bindings/AccessibilityTextMarker.idl b/Tools/WebKitTestRunner/InjectedBundle/Bindings/AccessibilityTextMarker.idl
deleted file mode 100644
index 192fffc..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/Bindings/AccessibilityTextMarker.idl
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-interface AccessibilityTextMarker {
-    boolean isEqual(in AccessibilityTextMarker otherMarker);
-};
-
diff --git a/Tools/WebKitTestRunner/InjectedBundle/Bindings/AccessibilityTextMarkerRange.idl b/Tools/WebKitTestRunner/InjectedBundle/Bindings/AccessibilityTextMarkerRange.idl
deleted file mode 100644
index a63a672..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/Bindings/AccessibilityTextMarkerRange.idl
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-interface AccessibilityTextMarkerRange {
-    boolean isEqual(in AccessibilityTextMarkerRange otherMarkerRange);
-};
-
diff --git a/Tools/WebKitTestRunner/InjectedBundle/Bindings/AccessibilityUIElement.idl b/Tools/WebKitTestRunner/InjectedBundle/Bindings/AccessibilityUIElement.idl
deleted file mode 100644
index 44253e3..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/Bindings/AccessibilityUIElement.idl
+++ /dev/null
@@ -1,177 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-interface AccessibilityUIElement {
-    boolean isEqual(in AccessibilityUIElement otherElement);
-
-    // Document information
-    readonly attribute DOMString documentEncoding;
-    readonly attribute DOMString documentURI;
-
-    // Element access.
-    AccessibilityUIElement elementAtPoint(in int x, in int y);
-    AccessibilityUIElement childAtIndex(in unsigned long index);
-    unsigned long indexOfChild(in AccessibilityUIElement child);
-    AccessibilityUIElement linkedUIElementAtIndex(in unsigned long index);
-    AccessibilityUIElement selectedChildAtIndex(in unsigned long index);
-    void setSelectedChild(in AccessibilityUIElement element);
-    AccessibilityUIElement titleUIElement();
-    AccessibilityUIElement parentElement();
-    
-    readonly attribute DOMString role;
-    readonly attribute DOMString subrole;
-    readonly attribute DOMString roleDescription;
-    readonly attribute DOMString title;
-    readonly attribute DOMString description;
-    readonly attribute DOMString language;
-    readonly attribute DOMString helpText;
-    readonly attribute DOMString valueDescription;
-    readonly attribute DOMString url;
-    readonly attribute DOMString speak;
-    readonly attribute DOMString orientation;
-    readonly attribute int insertionPointLineNumber;
-    readonly attribute DOMString selectedTextRange;
-
-    DOMString stringAttributeValue(in DOMString attr);
-    double numberAttributeValue(in DOMString attr);
-    AccessibilityUIElement uiElementAttributeValue(in DOMString attr);  
-    boolean boolAttributeValue(in DOMString attr);
-    boolean isAttributeSupported(in DOMString attr);
-    boolean isAttributeSettable(in DOMString attr);
-    boolean isPressActionSupported();
-    boolean isIncrementActionSupported();
-    boolean isDecrementActionSupported();
-
-    readonly attribute DOMString stringValue;
-    readonly attribute int intValue;
-    readonly attribute int minValue;
-    readonly attribute int maxValue;
-    
-    readonly attribute boolean isEnabled;
-    readonly attribute boolean isRequired;
-    readonly attribute boolean isFocused;
-    readonly attribute boolean isFocusable;
-    readonly attribute boolean isSelected;
-    readonly attribute boolean isMultiSelectable;
-    readonly attribute boolean isExpanded;
-    readonly attribute boolean isChecked;
-    readonly attribute boolean isVisible;
-    readonly attribute boolean isCollapsed;
-    readonly attribute boolean hasPopup;
-    readonly attribute boolean isIgnored;
-    readonly attribute boolean isOffScreen;
-    readonly attribute boolean isValid;
-    readonly attribute int hierarchicalLevel;
-    readonly attribute boolean ariaIsGrabbed;
-    readonly attribute DOMString ariaDropEffects;
-    
-    readonly attribute int x;
-    readonly attribute int y;
-    readonly attribute int width;
-    readonly attribute int height;
-    readonly attribute int clickPointX;
-    readonly attribute int clickPointY;
-
-    readonly attribute int childrenCount;
-    readonly attribute int selectedChildrenCount;
-    readonly attribute int rowCount;
-    readonly attribute int columnCount;
-
-    // Actions.
-    void increment();
-    void decrement();
-    void press();
-    void showMenu();
-
-    // Attribute info.
-    DOMString allAttributes();
-    DOMString attributesOfChildren();
-    DOMString attributesOfLinkedUIElements();
-    DOMString attributesOfDocumentLinks();
-    
-    // Table info.
-    DOMString attributesOfColumnHeaders();
-    DOMString attributesOfRowHeaders();
-    DOMString attributesOfColumns();
-    DOMString attributesOfRows();
-    DOMString attributesOfVisibleCells();
-    DOMString attributesOfHeader();
-    AccessibilityUIElement cellForColumnAndRow(in unsigned long column, in unsigned long row);
-    AccessibilityUIElement selectedRowAtIndex(in unsigned long index);
-    AccessibilityUIElement disclosedByRow();
-    AccessibilityUIElement disclosedRowAtIndex(in unsigned long index);
-    AccessibilityUIElement rowAtIndex(in unsigned long index);
-    int indexInTable();
-    DOMString rowIndexRange();
-    DOMString columnIndexRange();
-    int rowCount();
-    int columnCount();
-
-    AccessibilityUIElement ariaOwnsElementAtIndex(in unsigned long index);
-    AccessibilityUIElement ariaFlowToElementAtIndex(in unsigned long index);
-
-    // Paramaterized attributes.
-    DOMString parameterizedAttributeNames();
-    int lineForIndex(in int index);
-    DOMString rangeForLine(in int index);
-    DOMString rangeForPosition(in int x, in int y);
-    DOMString boundsForRange(in unsigned long location, in unsigned long length);
-    DOMString stringForRange(in unsigned long location, in unsigned long length);
-    DOMString attributedStringForRange(in unsigned long location, in unsigned long length);
-    boolean attributedStringRangeIsMisspelled(in unsigned long location, in unsigned long length);
-    AccessibilityUIElement uiElementForSearchPredicate(in AccessibilityUIElement startElement, in boolean isDirectionNext, in DOMString searchKey, in DOMString searchText);
-    void setSelectedTextRange(in unsigned long location, in unsigned long length);
-
-    // Scroll area attributes.
-    readonly attribute AccessibilityUIElement horizontalScrollbar;
-    readonly attribute AccessibilityUIElement verticalScrollbar;
-
-    void scrollToMakeVisible();
-
-    // Text markers.
-    AccessibilityTextMarkerRange textMarkerRangeForElement(in AccessibilityUIElement element);    
-    AccessibilityTextMarkerRange textMarkerRangeForMarkers(in AccessibilityTextMarker startMarker, in AccessibilityTextMarker endMarker);
-    AccessibilityTextMarker startTextMarkerForTextMarkerRange(in AccessibilityTextMarkerRange range);
-    AccessibilityTextMarker endTextMarkerForTextMarkerRange(in AccessibilityTextMarkerRange range);
-    AccessibilityTextMarker textMarkerForPoint(in int x, in int y);
-    AccessibilityTextMarker previousTextMarker(in AccessibilityTextMarker marker);
-    AccessibilityTextMarker nextTextMarker(in AccessibilityTextMarker marker);
-    AccessibilityUIElement accessibilityElementForTextMarker(in AccessibilityTextMarker marker);
-    DOMString stringForTextMarkerRange(in AccessibilityTextMarkerRange range);
-    int textMarkerRangeLength(in AccessibilityTextMarkerRange range);
-    boolean attributedStringForTextMarkerRangeContainsAttribute(in DOMString attr, in AccessibilityTextMarkerRange range);
-    int indexForTextMarker(in AccessibilityTextMarker marker);
-    boolean isTextMarkerValid(in AccessibilityTextMarker marker);
-    AccessibilityTextMarker textMarkerForIndex(in int textIndex);
-
-    // Returns an ordered list of supported actions for an element.
-    readonly attribute DOMString supportedActions;
-
-    // Notification support.
-    boolean addNotificationListener(in object callbackFunction);
-    boolean removeNotificationListener();
-    
-};
-
diff --git a/Tools/WebKitTestRunner/InjectedBundle/Bindings/CodeGeneratorTestRunner.pm b/Tools/WebKitTestRunner/InjectedBundle/Bindings/CodeGeneratorTestRunner.pm
deleted file mode 100644
index 7383946..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/Bindings/CodeGeneratorTestRunner.pm
+++ /dev/null
@@ -1,571 +0,0 @@
-# Copyright (C) 2010 Apple Inc. All rights reserved.
-# Copyright (C) 2012 Samsung Electronics
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
-# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
-# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-# THE POSSIBILITY OF SUCH DAMAGE.
-
-use strict;
-use warnings;
-use File::Spec;
-
-package CodeGeneratorTestRunner;
-
-sub new
-{
-    my ($class, $codeGenerator, $layerOnTop, $preprocessor, $writeDependencies, $verbose, $idlFilePath) = @_;
-
-    my $reference = {
-        codeGenerator => $codeGenerator,
-        idlFilePath => $idlFilePath,
-    };
-
-    bless($reference, $class);
-    return $reference;
-}
-
-sub GenerateInterface
-{
-}
-
-sub WriteData
-{
-    my ($self, $interface, $outputDir) = @_;
-
-    foreach my $file ($self->_generateHeaderFile($interface), $self->_generateImplementationFile($interface)) {
-        open(FILE, ">", File::Spec->catfile($outputDir, $$file{name})) or die "Failed to open $$file{name} for writing: $!";
-        print FILE @{$$file{contents}};
-        close(FILE) or die "Failed to close $$file{name} after writing: $!";
-    }
-}
-
-sub _className
-{
-    my ($idlType) = @_;
-
-    return "JS" . _implementationClassName($idlType);
-}
-
-sub _classRefGetter
-{
-    my ($self, $idlType) = @_;
-    return $$self{codeGenerator}->WK_lcfirst(_implementationClassName($idlType)) . "Class";
-}
-
-sub _parseLicenseBlock
-{
-    my ($fileHandle) = @_;
-
-    my ($copyright, $readCount, $buffer, $currentCharacter, $previousCharacter);
-    my $startSentinel = "/*";
-    my $lengthOfStartSentinel = length($startSentinel);
-    $readCount = read($fileHandle, $buffer, $lengthOfStartSentinel);
-    return "" if ($readCount < $lengthOfStartSentinel || $buffer ne $startSentinel);
-    $copyright = $buffer;
-
-    while ($readCount = read($fileHandle, $currentCharacter, 1)) {
-        $copyright .= $currentCharacter;
-        return $copyright if $currentCharacter eq "/" && $previousCharacter eq "*";
-        $previousCharacter = $currentCharacter;
-    }
-
-    return "";
-}
-
-sub _parseLicenseBlockFromFile
-{
-    my ($path) = @_;
-    open my $fileHandle, "<", $path or die "Failed to open $path for reading: $!";
-    my $licenseBlock = _parseLicenseBlock($fileHandle);
-    close($fileHandle);
-    return $licenseBlock;
-}
-
-sub _defaultLicenseBlock
-{
-    return <<EOF;
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-EOF
-}
-
-sub _licenseBlock
-{
-    my ($self) = @_;
-    return $self->{licenseBlock} if $self->{licenseBlock};
-
-    my $licenseBlock = _parseLicenseBlockFromFile($self->{idlFilePath}) || _defaultLicenseBlock();
-    $self->{licenseBlock} = $licenseBlock;
-    return $licenseBlock;
-}
-
-sub _generateHeaderFile
-{
-    my ($self, $interface) = @_;
-
-    my @contents = ();
-
-    my $idlType = $interface->name;
-    my $className = _className($idlType);
-    my $implementationClassName = _implementationClassName($idlType);
-    my $filename = $className . ".h";
-
-    push(@contents, $self->_licenseBlock());
-
-    my $parentClassName = _parentClassName($interface);
-
-    push(@contents, <<EOF);
-
-#ifndef ${className}_h
-#define ${className}_h
-
-#include "${parentClassName}.h"
-EOF
-    push(@contents, <<EOF);
-
-namespace WTR {
-
-class ${implementationClassName};
-
-class ${className} : public ${parentClassName} {
-public:
-    static JSClassRef @{[$self->_classRefGetter($idlType)]}();
-
-private:
-    static const JSStaticFunction* staticFunctions();
-    static const JSStaticValue* staticValues();
-EOF
-
-    if (my @functions = @{$interface->functions}) {
-        push(@contents, "\n    // Functions\n\n");
-        foreach my $function (@functions) {
-            push(@contents, "    static JSValueRef @{[$function->signature->name]}(JSContextRef, JSObjectRef, JSObjectRef, size_t, const JSValueRef[], JSValueRef*);\n");
-        }
-    }
-
-    if (my @attributes = @{$interface->attributes}) {
-        push(@contents, "\n    // Attributes\n\n");
-        foreach my $attribute (@attributes) {
-            push(@contents, "    static JSValueRef @{[$self->_getterName($attribute)]}(JSContextRef, JSObjectRef, JSStringRef, JSValueRef*);\n");
-            push(@contents, "    static bool @{[$self->_setterName($attribute)]}(JSContextRef, JSObjectRef, JSStringRef, JSValueRef, JSValueRef*);\n") unless $attribute->type =~ /^readonly/;
-        }
-    }
-
-    push(@contents, <<EOF);
-};
-    
-${implementationClassName}* to${implementationClassName}(JSContextRef, JSValueRef);
-
-} // namespace WTR
-
-#endif // ${className}_h
-EOF
-
-    return { name => $filename, contents => \@contents };
-}
-
-sub _generateImplementationFile
-{
-    my ($self, $interface) = @_;
-
-    my @contentsPrefix = ();
-    my %contentsIncludes = ();
-    my @contents = ();
-
-    my $idlType = $interface->name;
-    my $className = _className($idlType);
-    my $implementationClassName = _implementationClassName($idlType);
-    my $filename = $className . ".cpp";
-
-    push(@contentsPrefix, $self->_licenseBlock());
-
-    my $classRefGetter = $self->_classRefGetter($idlType);
-    my $parentClassName = _parentClassName($interface);
-
-    $contentsIncludes{"${className}.h"} = 1;
-    $contentsIncludes{"${implementationClassName}.h"} = 1;
-
-    push(@contentsPrefix, <<EOF);
-
-EOF
-
-    push(@contents, <<EOF);
-#include <JavaScriptCore/JSRetainPtr.h>
-#include <wtf/GetPtr.h>
-
-namespace WTR {
-
-${implementationClassName}* to${implementationClassName}(JSContextRef context, JSValueRef value)
-{
-    if (!context || !value || !${className}::${classRefGetter}() || !JSValueIsObjectOfClass(context, value, ${className}::${classRefGetter}()))
-        return 0;
-    return static_cast<${implementationClassName}*>(JSWrapper::unwrap(context, value));
-}
-
-JSClassRef ${className}::${classRefGetter}()
-{
-    static JSClassRef jsClass;
-    if (!jsClass) {
-        JSClassDefinition definition = kJSClassDefinitionEmpty;
-        definition.className = "${idlType}";
-        definition.parentClass = @{[$self->_parentClassRefGetterExpression($interface)]};
-        definition.staticValues = staticValues();
-        definition.staticFunctions = staticFunctions();
-EOF
-
-    push(@contents, "        definition.initialize = initialize;\n") unless _parentInterface($interface);
-    push(@contents, "        definition.finalize = finalize;\n") unless _parentInterface($interface);
-
-    push(@contents, <<EOF);
-        jsClass = JSClassCreate(&definition);
-    }
-    return jsClass;
-}
-
-EOF
-
-    push(@contents, $self->_staticFunctionsGetterImplementation($interface), "\n");
-    push(@contents, $self->_staticValuesGetterImplementation($interface));
-
-    if (my @functions = @{$interface->functions}) {
-        push(@contents, "\n// Functions\n");
-
-        foreach my $function (@functions) {
-            push(@contents, <<EOF);
-
-JSValueRef ${className}::@{[$function->signature->name]}(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
-{
-    ${implementationClassName}* impl = to${implementationClassName}(context, thisObject);
-    if (!impl)
-        return JSValueMakeUndefined(context);
-
-EOF
-            my $functionCall;
-            if ($function->signature->extendedAttributes->{"CustomArgumentHandling"}) {
-                $functionCall = "impl->" . $function->signature->name . "(context, argumentCount, arguments, exception)";
-            } else {
-                my @parameters = ();
-                my @specifiedParameters = @{$function->parameters};
-
-                $self->_includeHeaders(\%contentsIncludes, $function->signature->type, $function->signature);
-
-                if ($function->signature->extendedAttributes->{"PassContext"}) {
-                    push(@parameters, "context");
-                }
-
-                foreach my $i (0..$#specifiedParameters) {
-                    my $parameter = $specifiedParameters[$i];
-
-                    $self->_includeHeaders(\%contentsIncludes, $idlType, $parameter);
-
-                    push(@contents, "    " . $self->_platformTypeVariableDeclaration($parameter, $parameter->name, "arguments[$i]", "argumentCount > $i") . "\n");
-                    
-                    push(@parameters, $self->_parameterExpression($parameter));
-                }
-
-                $functionCall = "impl->" . $function->signature->name . "(" . join(", ", @parameters) . ")";
-            }
-            
-            push(@contents, "    ${functionCall};\n\n") if $function->signature->type eq "void";
-            push(@contents, "    return " . $self->_returnExpression($function->signature, $functionCall) . ";\n}\n");
-        }
-    }
-
-    if (my @attributes = @{$interface->attributes}) {
-        push(@contents, "\n// Attributes\n");
-        foreach my $attribute (@attributes) {
-            $self->_includeHeaders(\%contentsIncludes, $attribute->signature->type, $attribute->signature);
-
-            my $getterName = $self->_getterName($attribute);
-            my $getterExpression = "impl->${getterName}()";
-
-            push(@contents, <<EOF);
-
-JSValueRef ${className}::${getterName}(JSContextRef context, JSObjectRef object, JSStringRef, JSValueRef* exception)
-{
-    ${implementationClassName}* impl = to${implementationClassName}(context, object);
-    if (!impl)
-        return JSValueMakeUndefined(context);
-
-    return @{[$self->_returnExpression($attribute->signature, $getterExpression)]};
-}
-EOF
-
-            unless ($attribute->type =~ /^readonly/) {
-                push(@contents, <<EOF);
-
-bool ${className}::@{[$self->_setterName($attribute)]}(JSContextRef context, JSObjectRef object, JSStringRef, JSValueRef value, JSValueRef* exception)
-{
-    ${implementationClassName}* impl = to${implementationClassName}(context, object);
-    if (!impl)
-        return false;
-
-EOF
-
-                my $platformValue = $self->_platformTypeConstructor($attribute->signature, "value");
-
-                push(@contents, <<EOF);
-    impl->@{[$self->_setterName($attribute)]}(${platformValue});
-
-    return true;
-}
-EOF
-            }
-        }
-    }
-
-    push(@contents, <<EOF);
-
-} // namespace WTR
-
-EOF
-
-    unshift(@contents, map { "#include \"$_\"\n" } sort keys(%contentsIncludes));
-    unshift(@contents, "#include \"config.h\"\n");
-    unshift(@contents, @contentsPrefix);
-
-    return { name => $filename, contents => \@contents };
-}
-
-sub _getterName
-{
-    my ($self, $attribute) = @_;
-
-    my $signature = $attribute->signature;
-    my $name = $signature->name;
-
-    return $name;
-}
-
-sub _includeHeaders
-{
-    my ($self, $headers, $idlType, $signature) = @_;
-
-    return unless defined $idlType;
-    return if $idlType eq "boolean";
-    return if $idlType eq "object";
-    return if $$self{codeGenerator}->IsNonPointerType($idlType);
-    return if $$self{codeGenerator}->IsStringType($idlType);
-
-    $$headers{_className($idlType) . ".h"} = 1;
-    $$headers{_implementationClassName($idlType) . ".h"} = 1;
-}
-
-sub _implementationClassName
-{
-    my ($idlType) = @_;
-
-    return $idlType;
-}
-
-sub _parentClassName
-{
-    my ($interface) = @_;
-
-    my $parentInterface = _parentInterface($interface);
-    return $parentInterface ? _className($parentInterface) : "JSWrapper";
-}
-
-sub _parentClassRefGetterExpression
-{
-    my ($self, $interface) = @_;
-
-    my $parentInterface = _parentInterface($interface);
-    return $parentInterface ? $self->_classRefGetter($parentInterface) . "()" : "0";
-}
-
-sub _parentInterface
-{
-    my ($interface) = @_;
-    return $interface->parents->[0];
-}
-
-sub _platformType
-{
-    my ($self, $idlType, $signature) = @_;
-
-    return undef unless defined $idlType;
-
-    return "bool" if $idlType eq "boolean";
-    return "JSValueRef" if $idlType eq "object";
-    return "JSRetainPtr<JSStringRef>" if $$self{codeGenerator}->IsStringType($idlType);
-    return "double" if $$self{codeGenerator}->IsNonPointerType($idlType);
-    return _implementationClassName($idlType);
-}
-
-sub _platformTypeConstructor
-{
-    my ($self, $signature, $argumentName) = @_;
-
-    my $idlType = $signature->type;
-
-    return "JSValueToBoolean(context, $argumentName)" if $idlType eq "boolean";
-    return "$argumentName" if $idlType eq "object";
-    return "JSRetainPtr<JSStringRef>(Adopt, JSValueToStringCopy(context, $argumentName, 0))" if $$self{codeGenerator}->IsStringType($idlType);
-    return "JSValueToNumber(context, $argumentName, 0)" if $$self{codeGenerator}->IsNonPointerType($idlType);
-    return "to" . _implementationClassName($idlType) . "(context, $argumentName)";
-}
-
-sub _platformTypeVariableDeclaration
-{
-    my ($self, $signature, $variableName, $argumentName, $condition) = @_;
-
-    my $platformType = $self->_platformType($signature->type, $signature);
-    my $constructor = $self->_platformTypeConstructor($signature, $argumentName);
-
-    my %nonPointerTypes = (
-        "bool" => 1,
-        "double" => 1,
-        "JSRetainPtr<JSStringRef>" => 1,
-        "JSValueRef" => 1,
-    );
-
-    my $nullValue = "0";
-    if ($platformType eq "JSValueRef") {
-        $nullValue = "JSValueMakeUndefined(context)";
-    } elsif (defined $nonPointerTypes{$platformType} && $platformType ne "double") {
-        $nullValue = "$platformType()";
-    }
-
-    $platformType .= "*" unless defined $nonPointerTypes{$platformType};
-
-    return "$platformType $variableName = $condition && $constructor;" if $condition && $platformType eq "bool";
-    return "$platformType $variableName = $condition ? $constructor : $nullValue;" if $condition;
-    return "$platformType $variableName = $constructor;";
-}
-
-sub _returnExpression
-{
-    my ($self, $signature, $expression) = @_;
-
-    my $returnIDLType = $signature->type;
-
-    return "JSValueMakeUndefined(context)" if $returnIDLType eq "void";
-    return "JSValueMakeBoolean(context, ${expression})" if $returnIDLType eq "boolean";
-    return "${expression}" if $returnIDLType eq "object";
-    return "JSValueMakeNumber(context, ${expression})" if $$self{codeGenerator}->IsNonPointerType($returnIDLType);
-    return "JSValueMakeStringOrNull(context, ${expression}.get())" if $$self{codeGenerator}->IsStringType($returnIDLType);
-    return "toJS(context, WTF::getPtr(${expression}))";
-}
-
-sub _parameterExpression
-{
-    my ($self, $parameter) = @_;
-
-    my $idlType = $parameter->type;
-    my $name = $parameter->name;
-
-    return "${name}.get()" if $$self{codeGenerator}->IsStringType($idlType);
-    return $name;
-}
-
-sub _setterName
-{
-    my ($self, $attribute) = @_;
-
-    my $name = $attribute->signature->name;
-
-    return "set" . $$self{codeGenerator}->WK_ucfirst($name);
-}
-
-sub _staticFunctionsGetterImplementation
-{
-    my ($self, $interface) = @_;
-
-    my $mapFunction = sub {
-        my $name = $_->signature->name;
-        my @attributes = qw(kJSPropertyAttributeDontDelete kJSPropertyAttributeReadOnly);
-        push(@attributes, "kJSPropertyAttributeDontEnum") if $_->signature->extendedAttributes->{"DontEnum"};
-
-        return  "{ \"$name\", $name, " . join(" | ", @attributes) . " }";
-    };
-
-    return $self->_staticFunctionsOrValuesGetterImplementation($interface, "function", "{ 0, 0, 0 }", $mapFunction, $interface->functions);
-}
-
-sub _staticFunctionsOrValuesGetterImplementation
-{
-    my ($self, $interface, $functionOrValue, $arrayTerminator, $mapFunction, $functionsOrAttributes) = @_;
-
-    my $className = _className($interface->name);
-    my $uppercaseFunctionOrValue = $$self{codeGenerator}->WK_ucfirst($functionOrValue);
-
-    my $result = <<EOF;
-const JSStatic${uppercaseFunctionOrValue}* ${className}::static${uppercaseFunctionOrValue}s()
-{
-EOF
-
-    my @initializers = map(&$mapFunction, @{$functionsOrAttributes});
-    return $result . "    return 0;\n}\n" unless @initializers;
-
-    $result .= <<EOF
-    static const JSStatic${uppercaseFunctionOrValue} ${functionOrValue}s[] = {
-        @{[join(",\n        ", @initializers)]},
-        ${arrayTerminator}
-    };
-    return ${functionOrValue}s;
-}
-EOF
-}
-
-sub _staticValuesGetterImplementation
-{
-    my ($self, $interface) = @_;
-
-    my $mapFunction = sub {
-        return if $_->signature->extendedAttributes->{"NoImplementation"};
-
-        my $attributeName = $_->signature->name;
-        my $attributeIsReadonly = $_->type =~ /^readonly/;
-        my $getterName = $self->_getterName($_);
-        my $setterName = $attributeIsReadonly ? "0" : $self->_setterName($_);
-        my @attributes = qw(kJSPropertyAttributeDontDelete);
-        push(@attributes, "kJSPropertyAttributeReadOnly") if $attributeIsReadonly;
-        push(@attributes, "kJSPropertyAttributeDontEnum") if $_->signature->extendedAttributes->{"DontEnum"};
-
-        return "{ \"$attributeName\", $getterName, $setterName, " . join(" | ", @attributes) . " }";
-    };
-
-    return $self->_staticFunctionsOrValuesGetterImplementation($interface, "value", "{ 0, 0, 0, 0 }", $mapFunction, $interface->attributes);
-}
-
-1;
diff --git a/Tools/WebKitTestRunner/InjectedBundle/Bindings/EventSendingController.idl b/Tools/WebKitTestRunner/InjectedBundle/Bindings/EventSendingController.idl
deleted file mode 100644
index 65716f2..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/Bindings/EventSendingController.idl
+++ /dev/null
@@ -1,62 +0,0 @@
-/*
- * Copyright (C) 2010, 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-interface EventSendingController {
-    void mouseDown(in long buttonNumber, in object modifierArray);
-    void mouseUp(in long buttonNumber, in object modifierArray);
-    void mouseMoveTo(in long x, in long y);
-    void mouseScrollBy(in long x, in long y);
-    void continuousMouseScrollBy(in long x, in long y, in [Optional] boolean paged);
-    object contextClick();
-    void scheduleAsynchronousClick();
-
-    void leapForward(in long milliseconds);
-
-    void keyDown(in DOMString key, in object modifierArray, in long location);
-    void scheduleAsynchronousKeyDown(in DOMString key);
-
-    // Zoom functions.
-    void textZoomIn();
-    void textZoomOut();
-    void zoomPageIn();
-    void zoomPageOut();
-    void scalePageBy(in double scale, in double x, in double y);
-
-#if defined(ENABLE_TOUCH_EVENTS) && ENABLE_TOUCH_EVENTS
-    // Touch events.
-    void addTouchPoint(in long x, in long y);
-    void updateTouchPoint(in long index, in long x, in long y);
-    void setTouchModifier(in DOMString modifier, in boolean enable);
-    void setTouchPointRadius(in long radiusX, in long radiusY);
-    void touchStart();
-    void touchMove();
-    void touchEnd();
-    void touchCancel();
-    void clearTouchPoints();
-    void releaseTouchPoint(in long index);
-    void cancelTouchPoint(in long index);
-#endif
-};
-
diff --git a/Tools/WebKitTestRunner/InjectedBundle/Bindings/GCController.idl b/Tools/WebKitTestRunner/InjectedBundle/Bindings/GCController.idl
deleted file mode 100644
index 6c13b71..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/Bindings/GCController.idl
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-interface GCController {
-    void collect();
-    void collectOnAlternateThread(in boolean waitUntilDone);
-    unsigned long long getJSObjectCount();
-};
-
diff --git a/Tools/WebKitTestRunner/InjectedBundle/Bindings/JSWrappable.h b/Tools/WebKitTestRunner/InjectedBundle/Bindings/JSWrappable.h
deleted file mode 100644
index 5ec7197..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/Bindings/JSWrappable.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef JSWrappable_h
-#define JSWrappable_h
-
-#include <JavaScriptCore/JavaScript.h>
-#include <wtf/RefCounted.h>
-
-namespace WTR {
-
-class JSWrappable : public RefCounted<JSWrappable> {
-public:
-    virtual ~JSWrappable() { }
-    virtual JSClassRef wrapperClass() = 0;
-};
-
-inline JSValueRef JSValueMakeStringOrNull(JSContextRef context, JSStringRef stringOrNull)
-{
-    return stringOrNull ? JSValueMakeString(context, stringOrNull) : JSValueMakeNull(context);
-}
-
-} // namespace WTR
-
-#endif // JSWrappable_h
diff --git a/Tools/WebKitTestRunner/InjectedBundle/Bindings/JSWrapper.cpp b/Tools/WebKitTestRunner/InjectedBundle/Bindings/JSWrapper.cpp
deleted file mode 100644
index e3cf58c..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/Bindings/JSWrapper.cpp
+++ /dev/null
@@ -1,80 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "JSWrapper.h"
-
-#include <JavaScriptCore/JSContextRefPrivate.h>
-
-namespace WTR {
-
-JSValueRef JSWrapper::wrap(JSContextRef context, JSWrappable* object)
-{
-    ASSERT_ARG(context, context);
-
-    if (!object)
-        return JSValueMakeNull(context);
-
-    JSClassRef objectClass = object->wrapperClass();
-    ASSERT(objectClass);
-    JSObjectRef wrapperObject = JSObjectMake(context, objectClass, object);
-    ASSERT(wrapperObject);
-
-    return wrapperObject;
-}
-
-JSWrappable* JSWrapper::unwrap(JSContextRef context, JSValueRef value)
-{
-    ASSERT_ARG(context, context);
-    ASSERT_ARG(value, value);
-    if (!context || !value)
-        return 0;
-    return static_cast<JSWrappable*>(JSObjectGetPrivate(JSValueToObject(context, value, 0)));
-}
-
-static JSWrappable* unwrapObject(JSObjectRef object)
-{
-    JSWrappable* wrappable = static_cast<JSWrappable*>(JSObjectGetPrivate(object));
-    ASSERT(wrappable);
-    return wrappable;
-}
-
-void JSWrapper::initialize(JSContextRef ctx, JSObjectRef object)
-{
-    JSWrappable* wrappable = unwrapObject(object);
-    if (!wrappable)
-        return;
-    wrappable->ref();
-}
-
-void JSWrapper::finalize(JSObjectRef object)
-{
-    JSWrappable* wrappable = unwrapObject(object);
-    if (!wrappable)
-        return;
-    wrappable->deref();
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/InjectedBundle/Bindings/JSWrapper.h b/Tools/WebKitTestRunner/InjectedBundle/Bindings/JSWrapper.h
deleted file mode 100644
index d885801..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/Bindings/JSWrapper.h
+++ /dev/null
@@ -1,57 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef JSWrapper_h
-#define JSWrapper_h
-
-#include "JSWrappable.h"
-#include <JavaScriptCore/JSRetainPtr.h>
-
-namespace WTR {
-
-// FIXME: If necessary, we can do wrapper caching here.
-class JSWrapper {
-public:
-    static JSValueRef wrap(JSContextRef context, JSWrappable* object);
-    static JSWrappable* unwrap(JSContextRef context, JSValueRef value);
-
-    static void initialize(JSContextRef, JSObjectRef);
-    static void finalize(JSObjectRef);
-};
-
-inline JSValueRef toJS(JSContextRef context, JSWrappable* impl)
-{
-    return JSWrapper::wrap(context, impl);
-}
-
-inline void setProperty(JSContextRef context, JSObjectRef object, const char* propertyName, JSWrappable* value, JSPropertyAttributes attributes, JSValueRef* exception)
-{
-    JSRetainPtr<JSStringRef> propertyNameString(Adopt, JSStringCreateWithUTF8CString(propertyName));
-    JSObjectSetProperty(context, object, propertyNameString.get(), JSWrapper::wrap(context, value), attributes, exception);
-}
-
-} // namespace WTR
-
-#endif // JSWrapper_h
diff --git a/Tools/WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl b/Tools/WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl
deleted file mode 100644
index 9c642e8..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl
+++ /dev/null
@@ -1,189 +0,0 @@
-/*
- * Copyright (C) 2010, 2011, 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-interface TestRunner {
-    // The basics.
-    void dumpAsText(in boolean dumpPixels);
-    void dumpChildFramesAsText();
-    void waitForPolicyDelegate();
-    void waitUntilDone();
-    void notifyDone();
-    double preciseTime();
-
-    // Other dumping.
-    void dumpBackForwardList();
-    void dumpChildFrameScrollPositions();
-    void dumpEditingCallbacks();
-    void dumpSelectionRect();
-    void dumpStatusCallbacks();
-    void dumpTitleChanges();
-    void dumpFullScreenCallbacks();
-    void dumpFrameLoadCallbacks();
-    void dumpProgressFinishedCallback();
-    void dumpResourceLoadCallbacks();
-    void dumpResourceResponseMIMETypes();
-    void dumpWillCacheResponse();
-    void dumpApplicationCacheDelegateCallbacks();
-    void dumpDatabaseCallbacks();
-
-    // Special options.
-    void keepWebHistory();
-    void setAcceptsEditing(in boolean value);
-    void setCanOpenWindows(in boolean value);
-    void setCloseRemainingWindowsWhenComplete(in boolean value);
-    void setXSSAuditorEnabled(in boolean value);
-    void setAllowUniversalAccessFromFileURLs(in boolean value);
-    void setAllowFileAccessFromFileURLs(in boolean value);
-    void setPluginsEnabled(in boolean value);
-    void setJavaScriptCanAccessClipboard(in boolean value);
-    void setPrivateBrowsingEnabled(in boolean value);
-    void setPopupBlockingEnabled(in boolean value);
-    void setAuthorAndUserStylesEnabled(in boolean value);
-    void setCustomPolicyDelegate(in boolean enabled, in boolean permissive);
-    void addOriginAccessWhitelistEntry(in DOMString sourceOrigin, in DOMString destinationProtocol, in DOMString destinationHost, in boolean allowDestinationSubdomains);
-    void removeOriginAccessWhitelistEntry(in DOMString sourceOrigin, in DOMString destinationProtocol, in DOMString destinationHost, in boolean allowDestinationSubdomains);
-    void setUserStyleSheetEnabled(in boolean value);
-    void setUserStyleSheetLocation(in DOMString location);
-    void setSpatialNavigationEnabled(in boolean value);
-    void setTabKeyCyclesThroughElements(in boolean enabled);
-    void setSerializeHTTPLoads();
-    void dispatchPendingLoadRequests();
-    void setCacheModel(in int model);
-    void setAsynchronousSpellCheckingEnabled(in boolean value);
-
-    // Special DOM functions.
-    void clearBackForwardList();
-    void execCommand(in DOMString name, in DOMString argument);
-    boolean isCommandEnabled(in DOMString name);
-    unsigned long windowCount();
-
-    // Special DOM variables.
-    attribute boolean globalFlag;
-
-    // Repaint testing.
-    void testRepaint();
-    void repaintSweepHorizontally();
-    void display();
-
-    // Printing
-    boolean isPageBoxVisible(in int pageIndex);
-
-    [PassContext] void setValueForUser(in object element, in DOMString value);
-
-    // UserContent testing.
-    void addUserScript(in DOMString source, in boolean runAtStart, in boolean allFrames);
-    void addUserStyleSheet(in DOMString source, in boolean allFrames);
-
-    // Local storage API
-    void clearAllDatabases();
-    void setDatabaseQuota(in unsigned long long quota);
-    DOMString pathToLocalResource(in DOMString url);
-
-    // Application Cache API
-    void clearAllApplicationCaches();
-    void setAppCacheMaximumSize(in unsigned long long size);
-    long long applicationCacheDiskUsageForOrigin(in DOMString origin);
-    void clearApplicationCacheForOrigin(in DOMString name);
-    void setApplicationCacheOriginQuota(in unsigned long long bytes);
-    void disallowIncreaseForApplicationCacheQuota();
-    object originsWithApplicationCache();
-
-    // Text search testing.
-    boolean findString(in DOMString target, in object optionsArray);
-
-    // Evaluating script in a special context.
-    [PassContext] void evaluateScriptInIsolatedWorld(in unsigned long worldID, in DOMString script);
-
-    // For Web Inspector tests
-    void showWebInspector();
-    void closeWebInspector();
-    void evaluateInWebInspector(in long callID, in DOMString script);
-
-    void setPOSIXLocale(in DOMString locale);
-
-    void setTextDirection(in DOMString direction);
-
-    void setWillSendRequestReturnsNull(in boolean flag);
-    void setWillSendRequestReturnsNullOnRedirect(in boolean flag);
-    
-    void setShouldStayOnPageAfterHandlingBeforeUnload(in boolean flag);
-
-    void setDefersLoading(in boolean flag);
-    void setStopProvisionalFrameLoads();
-
-    // Focus testing.
-    void addChromeInputField(in object callback);
-    void removeChromeInputField(in object callback);
-    void focusWebView(in object callback);
-
-    void setBackingScaleFactor(in double backingScaleFactor, in object callback);
-
-    void setWindowIsKey(in boolean isKey);
-
-    // Cookies testing
-    void setAlwaysAcceptCookies(in boolean accept);
-
-    void overridePreference(in DOMString preference, in DOMString value);
-
-    // Page Visibility API
-    void setPageVisibility(in DOMString state);
-    void resetPageVisibility();
-
-    readonly attribute DOMString platformName;
-
-    // Control full screen behavior.
-    void setHasCustomFullScreenBehavior(in boolean value);
-
-    // Web notifications support
-    void grantWebNotificationPermission(in DOMString origin);
-    void denyWebNotificationPermission(in DOMString origin);
-    void removeAllWebNotificationPermissions();
-    void simulateWebNotificationClick(in object notification);
-
-    // Geolocation
-    void setGeolocationPermission(in boolean value);
-    void setMockGeolocationPosition(in double latitude, in double longitude, in double accuracy, in [Optional=DefaultIsUndefined] object altitude, in [Optional] object altitudeAccuracy, in [Optional] object heading, in [Optional] object speed);
-    void setMockGeolocationPositionUnavailableError(in DOMString errorMessage);
-
-    // Audio testing.
-    [PassContext] void setAudioData(in object data);
-
-    boolean callShouldCloseOnWebView();
-
-    // Work queue.
-    void queueBackNavigation(in unsigned long howFarBackward);
-    void queueForwardNavigation(in unsigned long howFarForward);
-    void queueLoad(in DOMString url, in DOMString target);
-    void queueLoadHTMLString(in DOMString content, in [Optional] DOMString baseURL, in [Optional] DOMString unreachableURL);
-    void queueReload();
-    void queueLoadingScript(in DOMString script);
-    void queueNonLoadingScript(in DOMString script);
-
-    // Authentication
-    void setHandlesAuthenticationChallenges(in boolean value);
-    void setAuthenticationUsername(in DOMString username);
-    void setAuthenticationPassword(in DOMString password);
-};
-
diff --git a/Tools/WebKitTestRunner/InjectedBundle/Bindings/TextInputController.idl b/Tools/WebKitTestRunner/InjectedBundle/Bindings/TextInputController.idl
deleted file mode 100644
index 039988a..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/Bindings/TextInputController.idl
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies)
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-interface TextInputController {
-    void setMarkedText(in DOMString string, in long from, in long length);
-    boolean hasMarkedText();
-    void unmarkText();
-    void insertText(in DOMString string);
-};
-
diff --git a/Tools/WebKitTestRunner/InjectedBundle/DerivedSources.pri b/Tools/WebKitTestRunner/InjectedBundle/DerivedSources.pri
deleted file mode 100644
index 54e4d34..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/DerivedSources.pri
+++ /dev/null
@@ -1,39 +0,0 @@
-# -------------------------------------------------------------------
-# Derived sources for WebKitTestRunner's InjectedBundle
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-# This file is both a top level target, and included from Target.pri,
-# so that the resulting generated sources can be added to SOURCES.
-# We only set the template if we're a top level target, so that we
-# don't override what Target.pri has already set.
-sanitizedFile = $$toSanitizedPath($$_FILE_)
-equals(sanitizedFile, $$toSanitizedPath($$_PRO_FILE_)):TEMPLATE = derived
-
-IDL_BINDINGS += \
-    Bindings/AccessibilityController.idl \
-    Bindings/AccessibilityTextMarker.idl \
-    Bindings/AccessibilityTextMarkerRange.idl \
-    Bindings/AccessibilityUIElement.idl \
-    Bindings/EventSendingController.idl \
-    Bindings/GCController.idl \
-    Bindings/TestRunner.idl \
-    Bindings/TextInputController.idl \
-
-qtPrepareTool(QMAKE_MOC, moc)
-
-# GENERATOR 1: IDL compiler
-idl.output = JS${QMAKE_FILE_BASE}.cpp
-idl.input = IDL_BINDINGS
-idl.script = $${ROOT_WEBKIT_DIR}/Source/WebCore/bindings/scripts/generate-bindings.pl
-idl.commands = perl -I$${ROOT_WEBKIT_DIR}/Source/WebCore/bindings/scripts -I$$PWD/Bindings $$idl.script --defines \"$$javascriptFeatureDefines()\" --generator TestRunner --include $$PWD/Bindings --outputDir ${QMAKE_FUNC_FILE_OUT_PATH} --preprocessor \"$${QMAKE_MOC} -E\" ${QMAKE_FILE_NAME}
-idl.depends = $${ROOT_WEBKIT_DIR}/Source/WebCore/bindings/scripts/CodeGenerator.pm \
-              $$PWD/Bindings/CodeGeneratorTestRunner.pm \
-              $${ROOT_WEBKIT_DIR}/Source/WebCore/bindings/scripts/IDLParser.pm \
-              $${ROOT_WEBKIT_DIR}/Source/WebCore/bindings/scripts/InFilesParser.pm \
-              $${ROOT_WEBKIT_DIR}/Source/WebCore/bindings/scripts/generate-bindings.pl
-GENERATORS += idl
-
-INCLUDEPATH += $${ROOT_BUILD_DIR}/Tools/WebKitTestRunner/InjectedBundle/$${GENERATED_SOURCES_DESTDIR}
-
diff --git a/Tools/WebKitTestRunner/InjectedBundle/EventSendingController.cpp b/Tools/WebKitTestRunner/InjectedBundle/EventSendingController.cpp
deleted file mode 100644
index 7005dd2..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/EventSendingController.cpp
+++ /dev/null
@@ -1,622 +0,0 @@
-/*
- * Copyright (C) 2010, 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "EventSendingController.h"
-
-#include "InjectedBundle.h"
-#include "InjectedBundlePage.h"
-#include "JSEventSendingController.h"
-#include "StringFunctions.h"
-#include <WebKit2/WKBundle.h>
-#include <WebKit2/WKBundleFrame.h>
-#include <WebKit2/WKBundlePagePrivate.h>
-#include <WebKit2/WKBundlePrivate.h>
-#include <WebKit2/WKMutableDictionary.h>
-#include <WebKit2/WKNumber.h>
-
-namespace WTR {
-
-static const float ZoomMultiplierRatio = 1.2f;
-
-static WKEventModifiers parseModifier(JSStringRef modifier)
-{
-    if (JSStringIsEqualToUTF8CString(modifier, "ctrlKey"))
-        return kWKEventModifiersControlKey;
-    if (JSStringIsEqualToUTF8CString(modifier, "shiftKey") || JSStringIsEqualToUTF8CString(modifier, "rangeSelectionKey"))
-        return kWKEventModifiersShiftKey;
-    if (JSStringIsEqualToUTF8CString(modifier, "altKey"))
-        return kWKEventModifiersAltKey;
-    if (JSStringIsEqualToUTF8CString(modifier, "metaKey"))
-        return kWKEventModifiersMetaKey;
-    if (JSStringIsEqualToUTF8CString(modifier, "addSelectionKey")) {
-#if OS(MAC_OS_X)
-        return kWKEventModifiersMetaKey;
-#else
-        return kWKEventModifiersControlKey;
-#endif
-    }
-    return 0;
-}
-
-static unsigned arrayLength(JSContextRef context, JSObjectRef array)
-{
-    JSRetainPtr<JSStringRef> lengthString(Adopt, JSStringCreateWithUTF8CString("length"));
-    JSValueRef lengthValue = JSObjectGetProperty(context, array, lengthString.get(), 0);
-    if (!lengthValue)
-        return 0;
-    return static_cast<unsigned>(JSValueToNumber(context, lengthValue, 0));
-}
-
-static WKEventModifiers parseModifierArray(JSContextRef context, JSValueRef arrayValue)
-{
-    if (!arrayValue)
-        return 0;
-
-    // The value may either be a string with a single modifier or an array of modifiers.
-    if (JSValueIsString(context, arrayValue)) {
-        JSRetainPtr<JSStringRef> string(Adopt, JSValueToStringCopy(context, arrayValue, 0));
-        return parseModifier(string.get());
-    }
-
-    if (!JSValueIsObject(context, arrayValue))
-        return 0;
-    JSObjectRef array = const_cast<JSObjectRef>(arrayValue);
-    unsigned length = arrayLength(context, array);
-    WKEventModifiers modifiers = 0;
-    for (unsigned i = 0; i < length; i++) {
-        JSValueRef exception = 0;
-        JSValueRef value = JSObjectGetPropertyAtIndex(context, array, i, &exception);
-        if (exception)
-            continue;
-        JSRetainPtr<JSStringRef> string(Adopt, JSValueToStringCopy(context, value, &exception));
-        if (exception)
-            continue;
-        modifiers |= parseModifier(string.get());
-    }
-    return modifiers;
-}
-
-PassRefPtr<EventSendingController> EventSendingController::create()
-{
-    return adoptRef(new EventSendingController);
-}
-
-EventSendingController::EventSendingController()
-#ifdef USE_WEBPROCESS_EVENT_SIMULATION
-    : m_time(0)
-    , m_position()
-    , m_clickCount(0)
-    , m_clickTime(0)
-    , m_clickPosition()
-    , m_clickButton(kWKEventMouseButtonNoButton)
-#endif
-{
-}
-
-EventSendingController::~EventSendingController()
-{
-}
-
-JSClassRef EventSendingController::wrapperClass()
-{
-    return JSEventSendingController::eventSendingControllerClass();
-}
-
-enum MouseState {
-    MouseUp,
-    MouseDown
-};
-
-static WKMutableDictionaryRef createMouseMessageBody(MouseState state, int button, WKEventModifiers modifiers)
-{
-    WKMutableDictionaryRef EventSenderMessageBody = WKMutableDictionaryCreate();
-
-    WKRetainPtr<WKStringRef> subMessageKey(AdoptWK, WKStringCreateWithUTF8CString("SubMessage"));
-    WKRetainPtr<WKStringRef> subMessageName(AdoptWK, WKStringCreateWithUTF8CString(state == MouseUp ? "MouseUp" : "MouseDown"));
-    WKDictionaryAddItem(EventSenderMessageBody, subMessageKey.get(), subMessageName.get());
-
-    WKRetainPtr<WKStringRef> buttonKey = adoptWK(WKStringCreateWithUTF8CString("Button"));
-    WKRetainPtr<WKUInt64Ref> buttonRef = adoptWK(WKUInt64Create(button));
-    WKDictionaryAddItem(EventSenderMessageBody, buttonKey.get(), buttonRef.get());
-
-    WKRetainPtr<WKStringRef> modifiersKey = adoptWK(WKStringCreateWithUTF8CString("Modifiers"));
-    WKRetainPtr<WKUInt64Ref> modifiersRef = adoptWK(WKUInt64Create(modifiers));
-    WKDictionaryAddItem(EventSenderMessageBody, modifiersKey.get(), modifiersRef.get());
-
-    return EventSenderMessageBody;
-}
-
-void EventSendingController::mouseDown(int button, JSValueRef modifierArray) 
-{
-    WKBundlePageRef page = InjectedBundle::shared().page()->page();
-    WKBundleFrameRef frame = WKBundlePageGetMainFrame(page);
-    JSContextRef context = WKBundleFrameGetJavaScriptContext(frame);
-    WKEventModifiers modifiers = parseModifierArray(context, modifierArray);
-
-#ifdef USE_WEBPROCESS_EVENT_SIMULATION
-    updateClickCount(button);
-    WKBundlePageSimulateMouseDown(page, button, m_position, m_clickCount, modifiers, m_time);
-#else
-    WKRetainPtr<WKStringRef> EventSenderMessageName(AdoptWK, WKStringCreateWithUTF8CString("EventSender"));
-    WKRetainPtr<WKMutableDictionaryRef> EventSenderMessageBody(AdoptWK, createMouseMessageBody(MouseDown, button, modifiers));
-
-    WKBundlePostSynchronousMessage(InjectedBundle::shared().bundle(), EventSenderMessageName.get(), EventSenderMessageBody.get(), 0);
-#endif
-}
-
-void EventSendingController::mouseUp(int button, JSValueRef modifierArray)
-{
-    WKBundlePageRef page = InjectedBundle::shared().page()->page();
-    WKBundleFrameRef frame = WKBundlePageGetMainFrame(page);
-    JSContextRef context = WKBundleFrameGetJavaScriptContext(frame);
-    WKEventModifiers modifiers = parseModifierArray(context, modifierArray);
-
-#ifdef USE_WEBPROCESS_EVENT_SIMULATION
-    updateClickCount(button);
-    WKBundlePageSimulateMouseUp(page, button, m_position, m_clickCount, modifiers, m_time);
-#else
-    WKRetainPtr<WKStringRef> EventSenderMessageName(AdoptWK, WKStringCreateWithUTF8CString("EventSender"));
-    WKRetainPtr<WKMutableDictionaryRef> EventSenderMessageBody(AdoptWK, createMouseMessageBody(MouseUp, button, modifiers));
-
-    WKBundlePostSynchronousMessage(InjectedBundle::shared().bundle(), EventSenderMessageName.get(), EventSenderMessageBody.get(), 0);
-#endif
-}
-
-void EventSendingController::mouseMoveTo(int x, int y)
-{
-#ifdef USE_WEBPROCESS_EVENT_SIMULATION
-    m_position.x = x;
-    m_position.y = y;
-    WKBundlePageSimulateMouseMotion(InjectedBundle::shared().page()->page(), m_position, m_time);
-#else
-    WKRetainPtr<WKStringRef> EventSenderMessageName(AdoptWK, WKStringCreateWithUTF8CString("EventSender"));
-    WKRetainPtr<WKMutableDictionaryRef> EventSenderMessageBody(AdoptWK, WKMutableDictionaryCreate());
-
-    WKRetainPtr<WKStringRef> subMessageKey(AdoptWK, WKStringCreateWithUTF8CString("SubMessage"));
-    WKRetainPtr<WKStringRef> subMessageName(AdoptWK, WKStringCreateWithUTF8CString("MouseMoveTo"));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), subMessageKey.get(), subMessageName.get());
-
-    WKRetainPtr<WKStringRef> xKey(AdoptWK, WKStringCreateWithUTF8CString("X"));
-    WKRetainPtr<WKDoubleRef> xRef(AdoptWK, WKDoubleCreate(x));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), xKey.get(), xRef.get());
-
-    WKRetainPtr<WKStringRef> yKey(AdoptWK, WKStringCreateWithUTF8CString("Y"));
-    WKRetainPtr<WKDoubleRef> yRef(AdoptWK, WKDoubleCreate(y));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), yKey.get(), yRef.get());
-
-    WKBundlePostSynchronousMessage(InjectedBundle::shared().bundle(), EventSenderMessageName.get(), EventSenderMessageBody.get(), 0);
-#endif
-}
-
-void EventSendingController::leapForward(int milliseconds)
-{
-#ifdef USE_WEBPROCESS_EVENT_SIMULATION
-    m_time += milliseconds / 1000.0;
-#else
-    WKRetainPtr<WKStringRef> EventSenderMessageName(AdoptWK, WKStringCreateWithUTF8CString("EventSender"));
-    WKRetainPtr<WKMutableDictionaryRef> EventSenderMessageBody(AdoptWK, WKMutableDictionaryCreate());
-
-    WKRetainPtr<WKStringRef> subMessageKey(AdoptWK, WKStringCreateWithUTF8CString("SubMessage"));
-    WKRetainPtr<WKStringRef> subMessageName(AdoptWK, WKStringCreateWithUTF8CString("LeapForward"));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), subMessageKey.get(), subMessageName.get());
-
-    WKRetainPtr<WKStringRef> timeKey(AdoptWK, WKStringCreateWithUTF8CString("TimeInMilliseconds"));
-    WKRetainPtr<WKUInt64Ref> timeRef(AdoptWK, WKUInt64Create(milliseconds));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), timeKey.get(), timeRef.get());
-
-    WKBundlePostSynchronousMessage(InjectedBundle::shared().bundle(), EventSenderMessageName.get(), EventSenderMessageBody.get(), 0);
-#endif
-}
-
-void EventSendingController::scheduleAsynchronousClick()
-{
-    WKEventModifiers modifiers = 0;
-    int button = 0;
-
-    WKRetainPtr<WKStringRef> EventSenderMessageName(AdoptWK, WKStringCreateWithUTF8CString("EventSender"));
-
-    // Asynchronous mouse down.
-    WKRetainPtr<WKMutableDictionaryRef> mouseDownMessageBody(AdoptWK, createMouseMessageBody(MouseDown, button, modifiers));
-    WKBundlePostMessage(InjectedBundle::shared().bundle(), EventSenderMessageName.get(), mouseDownMessageBody.get());
-
-    // Asynchronous mouse up.
-    WKRetainPtr<WKMutableDictionaryRef> mouseUpMessageBody(AdoptWK, createMouseMessageBody(MouseUp, button, modifiers));
-    WKBundlePostMessage(InjectedBundle::shared().bundle(), EventSenderMessageName.get(), mouseUpMessageBody.get());
-}
-
-static WKRetainPtr<WKMutableDictionaryRef> createKeyDownMessageBody(JSStringRef key, WKEventModifiers modifiers, int location)
-{
-    WKRetainPtr<WKMutableDictionaryRef> EventSenderMessageBody(AdoptWK, WKMutableDictionaryCreate());
-
-    WKRetainPtr<WKStringRef> subMessageKey(AdoptWK, WKStringCreateWithUTF8CString("SubMessage"));
-    WKRetainPtr<WKStringRef> subMessageName(AdoptWK, WKStringCreateWithUTF8CString("KeyDown"));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), subMessageKey.get(), subMessageName.get());
-
-    WKRetainPtr<WKStringRef> keyKey(AdoptWK, WKStringCreateWithUTF8CString("Key"));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), keyKey.get(), toWK(key).get());
-
-    WKRetainPtr<WKStringRef> modifiersKey(AdoptWK, WKStringCreateWithUTF8CString("Modifiers"));
-    WKRetainPtr<WKUInt64Ref> modifiersRef(AdoptWK, WKUInt64Create(modifiers));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), modifiersKey.get(), modifiersRef.get());
-
-    WKRetainPtr<WKStringRef> locationKey(AdoptWK, WKStringCreateWithUTF8CString("Location"));
-    WKRetainPtr<WKUInt64Ref> locationRef(AdoptWK, WKUInt64Create(location));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), locationKey.get(), locationRef.get());
-
-    return EventSenderMessageBody;
-}
-
-void EventSendingController::keyDown(JSStringRef key, JSValueRef modifierArray, int location)
-{
-    WKBundlePageRef page = InjectedBundle::shared().page()->page();
-    WKBundleFrameRef frame = WKBundlePageGetMainFrame(page);
-    JSContextRef context = WKBundleFrameGetJavaScriptContext(frame);
-    WKEventModifiers modifiers = parseModifierArray(context, modifierArray);
-
-    WKRetainPtr<WKStringRef> EventSenderMessageName(AdoptWK, WKStringCreateWithUTF8CString("EventSender"));
-    WKRetainPtr<WKMutableDictionaryRef> keyDownMessageBody = createKeyDownMessageBody(key, modifiers, location);
-
-    WKBundlePostSynchronousMessage(InjectedBundle::shared().bundle(), EventSenderMessageName.get(), keyDownMessageBody.get(), 0);
-}
-
-void EventSendingController::scheduleAsynchronousKeyDown(JSStringRef key)
-{
-    WKRetainPtr<WKStringRef> EventSenderMessageName(AdoptWK, WKStringCreateWithUTF8CString("EventSender"));
-    WKRetainPtr<WKMutableDictionaryRef> keyDownMessageBody = createKeyDownMessageBody(key, 0 /* modifiers */, 0 /* location */);
-
-    WKBundlePostMessage(InjectedBundle::shared().bundle(), EventSenderMessageName.get(), keyDownMessageBody.get());
-}
-
-void EventSendingController::mouseScrollBy(int x, int y)
-{
-    WKRetainPtr<WKStringRef> EventSenderMessageName(AdoptWK, WKStringCreateWithUTF8CString("EventSender"));
-    WKRetainPtr<WKMutableDictionaryRef> EventSenderMessageBody(AdoptWK, WKMutableDictionaryCreate());
-
-    WKRetainPtr<WKStringRef> subMessageKey(AdoptWK, WKStringCreateWithUTF8CString("SubMessage"));
-    WKRetainPtr<WKStringRef> subMessageName(AdoptWK, WKStringCreateWithUTF8CString("MouseScrollBy"));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), subMessageKey.get(), subMessageName.get());
-
-    WKRetainPtr<WKStringRef> xKey(AdoptWK, WKStringCreateWithUTF8CString("X"));
-    WKRetainPtr<WKDoubleRef> xRef(AdoptWK, WKDoubleCreate(x));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), xKey.get(), xRef.get());
-
-    WKRetainPtr<WKStringRef> yKey(AdoptWK, WKStringCreateWithUTF8CString("Y"));
-    WKRetainPtr<WKDoubleRef> yRef(AdoptWK, WKDoubleCreate(y));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), yKey.get(), yRef.get());
-
-    WKBundlePostSynchronousMessage(InjectedBundle::shared().bundle(), EventSenderMessageName.get(), EventSenderMessageBody.get(), 0);
-}
-
-void EventSendingController::continuousMouseScrollBy(int x, int y, bool paged)
-{
-    WKRetainPtr<WKStringRef> EventSenderMessageName(AdoptWK, WKStringCreateWithUTF8CString("EventSender"));
-    WKRetainPtr<WKMutableDictionaryRef> EventSenderMessageBody(AdoptWK, WKMutableDictionaryCreate());
-
-    WKRetainPtr<WKStringRef> subMessageKey(AdoptWK, WKStringCreateWithUTF8CString("SubMessage"));
-    WKRetainPtr<WKStringRef> subMessageName(AdoptWK, WKStringCreateWithUTF8CString("ContinuousMouseScrollBy"));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), subMessageKey.get(), subMessageName.get());
-
-    WKRetainPtr<WKStringRef> xKey(AdoptWK, WKStringCreateWithUTF8CString("X"));
-    WKRetainPtr<WKDoubleRef> xRef(AdoptWK, WKDoubleCreate(x));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), xKey.get(), xRef.get());
-
-    WKRetainPtr<WKStringRef> yKey(AdoptWK, WKStringCreateWithUTF8CString("Y"));
-    WKRetainPtr<WKDoubleRef> yRef(AdoptWK, WKDoubleCreate(y));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), yKey.get(), yRef.get());
-
-    WKRetainPtr<WKStringRef> pagedKey(AdoptWK, WKStringCreateWithUTF8CString("Paged"));
-    WKRetainPtr<WKUInt64Ref> pagedRef(AdoptWK, WKUInt64Create(paged));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), pagedKey.get(), pagedRef.get());
-
-    WKBundlePostSynchronousMessage(InjectedBundle::shared().bundle(), EventSenderMessageName.get(), EventSenderMessageBody.get(), 0);
-}
-
-JSValueRef EventSendingController::contextClick()
-{
-    WKBundlePageRef page = InjectedBundle::shared().page()->page();
-    WKBundleFrameRef mainFrame = WKBundlePageGetMainFrame(page);
-    JSContextRef context = WKBundleFrameGetJavaScriptContext(mainFrame);
-#if ENABLE(CONTEXT_MENUS)
-    // Do mouse context click.
-    mouseDown(2, 0);
-    mouseUp(2, 0);
-
-    WKRetainPtr<WKArrayRef> entriesNames = adoptWK(WKBundlePageCopyContextMenuItemTitles(page));
-    JSRetainPtr<JSStringRef> jsPropertyName(Adopt, JSStringCreateWithUTF8CString("title"));
-    size_t entriesSize = WKArrayGetSize(entriesNames.get());
-    OwnArrayPtr<JSValueRef> jsValuesArray = adoptArrayPtr(new JSValueRef[entriesSize]);
-    for (size_t i = 0; i < entriesSize; ++i) {
-        ASSERT(WKGetTypeID(WKArrayGetItemAtIndex(entriesNames.get(), i)) == WKStringGetTypeID());
-
-        WKStringRef wkEntryName = static_cast<WKStringRef>(WKArrayGetItemAtIndex(entriesNames.get(), i));
-        JSObjectRef jsItemObject = JSObjectMake(context, /* JSClassRef */0, /* privData */0);
-        JSRetainPtr<JSStringRef> jsNameCopy(Adopt, WKStringCopyJSString(wkEntryName));
-        JSValueRef jsEntryName = JSValueMakeString(context, jsNameCopy.get());
-        JSObjectSetProperty(context, jsItemObject, jsPropertyName.get(), jsEntryName, kJSPropertyAttributeReadOnly, 0);
-        jsValuesArray[i] = jsItemObject;
-    }
-
-    return JSObjectMakeArray(context, entriesSize, jsValuesArray.get(), 0);
-#else
-    return JSValueMakeUndefined(context);
-#endif
-}
-
-#ifdef USE_WEBPROCESS_EVENT_SIMULATION
-void EventSendingController::updateClickCount(WKEventMouseButton button)
-{
-    if (m_time - m_clickTime < 1 && m_position == m_clickPosition && button == m_clickButton) {
-        ++m_clickCount;
-        m_clickTime = m_time;
-        return;
-    }
-
-    m_clickCount = 1;
-    m_clickTime = m_time;
-    m_clickPosition = m_position;
-    m_clickButton = button;
-}
-#endif
-
-void EventSendingController::textZoomIn()
-{
-    // Ensure page zoom is reset.
-    WKBundlePageSetPageZoomFactor(InjectedBundle::shared().page()->page(), 1);
-
-    double zoomFactor = WKBundlePageGetTextZoomFactor(InjectedBundle::shared().page()->page());
-    WKBundlePageSetTextZoomFactor(InjectedBundle::shared().page()->page(), zoomFactor * ZoomMultiplierRatio);
-}
-
-void EventSendingController::textZoomOut()
-{
-    // Ensure page zoom is reset.
-    WKBundlePageSetPageZoomFactor(InjectedBundle::shared().page()->page(), 1);
-
-    double zoomFactor = WKBundlePageGetTextZoomFactor(InjectedBundle::shared().page()->page());
-    WKBundlePageSetTextZoomFactor(InjectedBundle::shared().page()->page(), zoomFactor / ZoomMultiplierRatio);
-}
-
-void EventSendingController::zoomPageIn()
-{
-    // Ensure text zoom is reset.
-    WKBundlePageSetTextZoomFactor(InjectedBundle::shared().page()->page(), 1);
-
-    double zoomFactor = WKBundlePageGetPageZoomFactor(InjectedBundle::shared().page()->page());
-    WKBundlePageSetPageZoomFactor(InjectedBundle::shared().page()->page(), zoomFactor * ZoomMultiplierRatio);
-}
-
-void EventSendingController::zoomPageOut()
-{
-    // Ensure text zoom is reset.
-    WKBundlePageSetTextZoomFactor(InjectedBundle::shared().page()->page(), 1);
-
-    double zoomFactor = WKBundlePageGetPageZoomFactor(InjectedBundle::shared().page()->page());
-    WKBundlePageSetPageZoomFactor(InjectedBundle::shared().page()->page(), zoomFactor / ZoomMultiplierRatio);
-}
-
-void EventSendingController::scalePageBy(double scale, double x, double y)
-{
-    WKPoint origin = { x, y };
-    WKBundlePageSetScaleAtOrigin(InjectedBundle::shared().page()->page(), scale, origin);
-}
-
-#if ENABLE(TOUCH_EVENTS)
-void EventSendingController::addTouchPoint(int x, int y)
-{
-    WKRetainPtr<WKStringRef> EventSenderMessageName(AdoptWK, WKStringCreateWithUTF8CString("EventSender"));
-    WKRetainPtr<WKMutableDictionaryRef> EventSenderMessageBody(AdoptWK, WKMutableDictionaryCreate());
-
-    WKRetainPtr<WKStringRef> subMessageKey(AdoptWK, WKStringCreateWithUTF8CString("SubMessage"));
-    WKRetainPtr<WKStringRef> subMessageName(AdoptWK, WKStringCreateWithUTF8CString("AddTouchPoint"));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), subMessageKey.get(), subMessageName.get());
-
-    WKRetainPtr<WKStringRef> xKey(AdoptWK, WKStringCreateWithUTF8CString("X"));
-    WKRetainPtr<WKUInt64Ref> xRef(AdoptWK, WKUInt64Create(x));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), xKey.get(), xRef.get());
-
-    WKRetainPtr<WKStringRef> yKey(AdoptWK, WKStringCreateWithUTF8CString("Y"));
-    WKRetainPtr<WKUInt64Ref> yRef(AdoptWK, WKUInt64Create(y));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), yKey.get(), yRef.get());
-
-    WKBundlePostSynchronousMessage(InjectedBundle::shared().bundle(), EventSenderMessageName.get(), EventSenderMessageBody.get(), 0);
-}
-
-void EventSendingController::updateTouchPoint(int index, int x, int y)
-{
-    WKRetainPtr<WKStringRef> EventSenderMessageName(AdoptWK, WKStringCreateWithUTF8CString("EventSender"));
-    WKRetainPtr<WKMutableDictionaryRef> EventSenderMessageBody(AdoptWK, WKMutableDictionaryCreate());
-
-    WKRetainPtr<WKStringRef> subMessageKey(AdoptWK, WKStringCreateWithUTF8CString("SubMessage"));
-    WKRetainPtr<WKStringRef> subMessageName(AdoptWK, WKStringCreateWithUTF8CString("UpdateTouchPoint"));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), subMessageKey.get(), subMessageName.get());
-
-    WKRetainPtr<WKStringRef> indexKey(AdoptWK, WKStringCreateWithUTF8CString("Index"));
-    WKRetainPtr<WKUInt64Ref> indexRef(AdoptWK, WKUInt64Create(index));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), indexKey.get(), indexRef.get());
-
-    WKRetainPtr<WKStringRef> xKey(AdoptWK, WKStringCreateWithUTF8CString("X"));
-    WKRetainPtr<WKUInt64Ref> xRef(AdoptWK, WKUInt64Create(x));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), xKey.get(), xRef.get());
-
-    WKRetainPtr<WKStringRef> yKey(AdoptWK, WKStringCreateWithUTF8CString("Y"));
-    WKRetainPtr<WKUInt64Ref> yRef(AdoptWK, WKUInt64Create(y));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), yKey.get(), yRef.get());
-
-    WKBundlePostSynchronousMessage(InjectedBundle::shared().bundle(), EventSenderMessageName.get(), EventSenderMessageBody.get(), 0);
-}
-
-void EventSendingController::setTouchModifier(const JSStringRef &modifier, bool enable)
-{
-    WKRetainPtr<WKStringRef> EventSenderMessageName(AdoptWK, WKStringCreateWithUTF8CString("EventSender"));
-    WKRetainPtr<WKMutableDictionaryRef> EventSenderMessageBody(AdoptWK, WKMutableDictionaryCreate());
-
-    WKRetainPtr<WKStringRef> subMessageKey(AdoptWK, WKStringCreateWithUTF8CString("SubMessage"));
-    WKRetainPtr<WKStringRef> subMessageName(AdoptWK, WKStringCreateWithUTF8CString("SetTouchModifier"));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), subMessageKey.get(), subMessageName.get());
-
-    WKEventModifiers mod = 0;
-    if (JSStringIsEqualToUTF8CString(modifier, "ctrl"))
-        mod = kWKEventModifiersControlKey;
-    if (JSStringIsEqualToUTF8CString(modifier, "shift"))
-        mod = kWKEventModifiersShiftKey;
-    if (JSStringIsEqualToUTF8CString(modifier, "alt"))
-        mod = kWKEventModifiersAltKey;
-    if (JSStringIsEqualToUTF8CString(modifier, "meta"))
-        mod = kWKEventModifiersMetaKey;
-
-    WKRetainPtr<WKStringRef> modifierKey(AdoptWK, WKStringCreateWithUTF8CString("Modifier"));
-    WKRetainPtr<WKUInt64Ref> modifierRef(AdoptWK, WKUInt64Create(mod));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), modifierKey.get(), modifierRef.get());
-
-    WKRetainPtr<WKStringRef> enableKey(AdoptWK, WKStringCreateWithUTF8CString("Enable"));
-    WKRetainPtr<WKUInt64Ref> enableRef(AdoptWK, WKUInt64Create(enable));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), enableKey.get(), enableRef.get());
-
-    WKBundlePostSynchronousMessage(InjectedBundle::shared().bundle(), EventSenderMessageName.get(), EventSenderMessageBody.get(), 0);
-}
-
-
-void EventSendingController::setTouchPointRadius(int radiusX, int radiusY)
-{
-    WKRetainPtr<WKStringRef> EventSenderMessageName(AdoptWK, WKStringCreateWithUTF8CString("EventSender"));
-    WKRetainPtr<WKMutableDictionaryRef> EventSenderMessageBody(AdoptWK, WKMutableDictionaryCreate());
-
-    WKRetainPtr<WKStringRef> subMessageKey(AdoptWK, WKStringCreateWithUTF8CString("SubMessage"));
-    WKRetainPtr<WKStringRef> subMessageName(AdoptWK, WKStringCreateWithUTF8CString("SetTouchPointRadius"));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), subMessageKey.get(), subMessageName.get());
-
-    WKRetainPtr<WKStringRef> xKey(AdoptWK, WKStringCreateWithUTF8CString("RadiusX"));
-    WKRetainPtr<WKUInt64Ref> xRef(AdoptWK, WKUInt64Create(radiusX));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), xKey.get(), xRef.get());
-
-    WKRetainPtr<WKStringRef> yKey(AdoptWK, WKStringCreateWithUTF8CString("RadiusY"));
-    WKRetainPtr<WKUInt64Ref> yRef(AdoptWK, WKUInt64Create(radiusY));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), yKey.get(), yRef.get());
-
-    WKBundlePostSynchronousMessage(InjectedBundle::shared().bundle(), EventSenderMessageName.get(), EventSenderMessageBody.get(), 0);
-}
-
-void EventSendingController::touchStart()
-{
-    WKRetainPtr<WKStringRef> EventSenderMessageName(AdoptWK, WKStringCreateWithUTF8CString("EventSender"));
-    WKRetainPtr<WKMutableDictionaryRef> EventSenderMessageBody(AdoptWK, WKMutableDictionaryCreate());
-
-    WKRetainPtr<WKStringRef> subMessageKey(AdoptWK, WKStringCreateWithUTF8CString("SubMessage"));
-    WKRetainPtr<WKStringRef> subMessageName(AdoptWK, WKStringCreateWithUTF8CString("TouchStart"));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), subMessageKey.get(), subMessageName.get());
-
-    WKBundlePostSynchronousMessage(InjectedBundle::shared().bundle(), EventSenderMessageName.get(), EventSenderMessageBody.get(), 0);
-}
-
-void EventSendingController::touchMove()
-{
-    WKRetainPtr<WKStringRef> EventSenderMessageName(AdoptWK, WKStringCreateWithUTF8CString("EventSender"));
-    WKRetainPtr<WKMutableDictionaryRef> EventSenderMessageBody(AdoptWK, WKMutableDictionaryCreate());
-
-    WKRetainPtr<WKStringRef> subMessageKey(AdoptWK, WKStringCreateWithUTF8CString("SubMessage"));
-    WKRetainPtr<WKStringRef> subMessageName(AdoptWK, WKStringCreateWithUTF8CString("TouchMove"));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), subMessageKey.get(), subMessageName.get());
-
-    WKBundlePostSynchronousMessage(InjectedBundle::shared().bundle(), EventSenderMessageName.get(), EventSenderMessageBody.get(), 0);
-}
-
-void EventSendingController::touchEnd()
-{
-    WKRetainPtr<WKStringRef> EventSenderMessageName(AdoptWK, WKStringCreateWithUTF8CString("EventSender"));
-    WKRetainPtr<WKMutableDictionaryRef> EventSenderMessageBody(AdoptWK, WKMutableDictionaryCreate());
-
-    WKRetainPtr<WKStringRef> subMessageKey(AdoptWK, WKStringCreateWithUTF8CString("SubMessage"));
-    WKRetainPtr<WKStringRef> subMessageName(AdoptWK, WKStringCreateWithUTF8CString("TouchEnd"));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), subMessageKey.get(), subMessageName.get());
-
-    WKBundlePostSynchronousMessage(InjectedBundle::shared().bundle(), EventSenderMessageName.get(), EventSenderMessageBody.get(), 0);
-}
-
-void EventSendingController::touchCancel()
-{
-    WKRetainPtr<WKStringRef> EventSenderMessageName(AdoptWK, WKStringCreateWithUTF8CString("EventSender"));
-    WKRetainPtr<WKMutableDictionaryRef> EventSenderMessageBody(AdoptWK, WKMutableDictionaryCreate());
-
-    WKRetainPtr<WKStringRef> subMessageKey(AdoptWK, WKStringCreateWithUTF8CString("SubMessage"));
-    WKRetainPtr<WKStringRef> subMessageName(AdoptWK, WKStringCreateWithUTF8CString("TouchCancel"));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), subMessageKey.get(), subMessageName.get());
-
-    WKBundlePostSynchronousMessage(InjectedBundle::shared().bundle(), EventSenderMessageName.get(), EventSenderMessageBody.get(), 0);
-}
-
-void EventSendingController::clearTouchPoints()
-{
-    WKRetainPtr<WKStringRef> EventSenderMessageName(AdoptWK, WKStringCreateWithUTF8CString("EventSender"));
-    WKRetainPtr<WKMutableDictionaryRef> EventSenderMessageBody(AdoptWK, WKMutableDictionaryCreate());
-
-    WKRetainPtr<WKStringRef> subMessageKey(AdoptWK, WKStringCreateWithUTF8CString("SubMessage"));
-    WKRetainPtr<WKStringRef> subMessageName(AdoptWK, WKStringCreateWithUTF8CString("ClearTouchPoints"));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), subMessageKey.get(), subMessageName.get());
-
-    WKBundlePostSynchronousMessage(InjectedBundle::shared().bundle(), EventSenderMessageName.get(), EventSenderMessageBody.get(), 0);
-}
-
-void EventSendingController::releaseTouchPoint(int index)
-{
-    WKRetainPtr<WKStringRef> EventSenderMessageName(AdoptWK, WKStringCreateWithUTF8CString("EventSender"));
-    WKRetainPtr<WKMutableDictionaryRef> EventSenderMessageBody(AdoptWK, WKMutableDictionaryCreate());
-
-    WKRetainPtr<WKStringRef> subMessageKey(AdoptWK, WKStringCreateWithUTF8CString("SubMessage"));
-    WKRetainPtr<WKStringRef> subMessageName(AdoptWK, WKStringCreateWithUTF8CString("ReleaseTouchPoint"));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), subMessageKey.get(), subMessageName.get());
-
-    WKRetainPtr<WKStringRef> indexKey(AdoptWK, WKStringCreateWithUTF8CString("Index"));
-    WKRetainPtr<WKUInt64Ref> indexRef(AdoptWK, WKUInt64Create(index));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), indexKey.get(), indexRef.get());
-
-    WKBundlePostSynchronousMessage(InjectedBundle::shared().bundle(), EventSenderMessageName.get(), EventSenderMessageBody.get(), 0);
-}
-
-void EventSendingController::cancelTouchPoint(int index)
-{
-    WKRetainPtr<WKStringRef> EventSenderMessageName(AdoptWK, WKStringCreateWithUTF8CString("EventSender"));
-    WKRetainPtr<WKMutableDictionaryRef> EventSenderMessageBody(AdoptWK, WKMutableDictionaryCreate());
-
-    WKRetainPtr<WKStringRef> subMessageKey(AdoptWK, WKStringCreateWithUTF8CString("SubMessage"));
-    WKRetainPtr<WKStringRef> subMessageName(AdoptWK, WKStringCreateWithUTF8CString("CancelTouchPoint"));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), subMessageKey.get(), subMessageName.get());
-
-    WKRetainPtr<WKStringRef> indexKey(AdoptWK, WKStringCreateWithUTF8CString("Index"));
-    WKRetainPtr<WKUInt64Ref> indexRef(AdoptWK, WKUInt64Create(index));
-    WKDictionaryAddItem(EventSenderMessageBody.get(), indexKey.get(), indexRef.get());
-
-    WKBundlePostSynchronousMessage(InjectedBundle::shared().bundle(), EventSenderMessageName.get(), EventSenderMessageBody.get(), 0);
-}
-#endif
-
-// Object Creation
-
-void EventSendingController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception)
-{
-    setProperty(context, windowObject, "eventSender", this, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, exception);
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/InjectedBundle/EventSendingController.h b/Tools/WebKitTestRunner/InjectedBundle/EventSendingController.h
deleted file mode 100644
index bdacfd3..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/EventSendingController.h
+++ /dev/null
@@ -1,102 +0,0 @@
-/*
- * Copyright (C) 2010, 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef EventSendingController_h
-#define EventSendingController_h
-
-#include "JSWrappable.h"
-#include <WebKit2/WKEvent.h>
-#include <WebKit2/WKGeometry.h>
-#include <wtf/PassRefPtr.h>
-
-#if !PLATFORM(MAC) && !PLATFORM(QT) && !PLATFORM(GTK) && !PLATFORM(EFL)
-#define USE_WEBPROCESS_EVENT_SIMULATION
-#endif
-
-namespace WTR {
-
-class EventSendingController : public JSWrappable {
-public:
-    static PassRefPtr<EventSendingController> create();
-    virtual ~EventSendingController();
-
-    void makeWindowObject(JSContextRef, JSObjectRef windowObject, JSValueRef* exception);
-
-    // JSWrappable
-    virtual JSClassRef wrapperClass();
-
-    void mouseDown(int button, JSValueRef modifierArray);
-    void mouseUp(int button, JSValueRef modifierArray);
-    void mouseMoveTo(int x, int y);
-    void mouseScrollBy(int x, int y);
-    void continuousMouseScrollBy(int x, int y, bool paged);
-    JSValueRef contextClick();
-    void leapForward(int milliseconds);
-    void scheduleAsynchronousClick();
-
-    void keyDown(JSStringRef key, JSValueRef modifierArray, int location);
-    void scheduleAsynchronousKeyDown(JSStringRef key);
-
-    // Zoom functions.
-    void textZoomIn();
-    void textZoomOut();
-    void zoomPageIn();
-    void zoomPageOut();
-    void scalePageBy(double scale, double x, double y);
-
-#if ENABLE(TOUCH_EVENTS)
-    // Touch events.
-    void addTouchPoint(int x, int y);
-    void updateTouchPoint(int index, int x, int y);
-    void setTouchModifier(const JSStringRef &modifier, bool enable);
-    void setTouchPointRadius(int radiusX, int radiusY);
-    void touchStart();
-    void touchMove();
-    void touchEnd();
-    void touchCancel();
-    void clearTouchPoints();
-    void releaseTouchPoint(int index);
-    void cancelTouchPoint(int index);
-#endif
-
-private:
-    EventSendingController();
-
-#ifdef USE_WEBPROCESS_EVENT_SIMULATION
-    void updateClickCount(WKEventMouseButton);
-
-    double m_time;
-    WKPoint m_position;
-
-    int m_clickCount;
-    double m_clickTime;
-    WKPoint m_clickPosition;
-    WKEventMouseButton m_clickButton;
-#endif
-};
-
-} // namespace WTR
-
-#endif // EventSendingController_h
diff --git a/Tools/WebKitTestRunner/InjectedBundle/GCController.cpp b/Tools/WebKitTestRunner/InjectedBundle/GCController.cpp
deleted file mode 100644
index 10c21db..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/GCController.cpp
+++ /dev/null
@@ -1,75 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "GCController.h"
-
-#include "InjectedBundle.h"
-#include "JSGCController.h"
-#include <WebKit2/WKBundlePrivate.h>
-
-namespace WTR {
-
-PassRefPtr<GCController> GCController::create()
-{
-    return adoptRef(new GCController);
-}
-
-GCController::GCController()
-{
-}
-
-GCController::~GCController()
-{
-}
-
-JSClassRef GCController::wrapperClass()
-{
-    return JSGCController::gCControllerClass();
-}
-
-void GCController::collect()
-{
-    WKBundleGarbageCollectJavaScriptObjects(InjectedBundle::shared().bundle());
-}
-
-void GCController::collectOnAlternateThread(bool waitUntilDone)
-{
-    WKBundleGarbageCollectJavaScriptObjectsOnAlternateThreadForDebugging(InjectedBundle::shared().bundle(), waitUntilDone);
-}
-
-size_t GCController::getJSObjectCount()
-{
-    return WKBundleGetJavaScriptObjectsCount(InjectedBundle::shared().bundle());
-}
-
-// Object Creation
-
-void GCController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception)
-{
-    setProperty(context, windowObject, "GCController", this, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, exception);
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/InjectedBundle/GCController.h b/Tools/WebKitTestRunner/InjectedBundle/GCController.h
deleted file mode 100644
index 760fbb1..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/GCController.h
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef GCController_h
-#define GCController_h
-
-#include "JSWrappable.h"
-#include <wtf/PassRefPtr.h>
-
-namespace WTR {
-
-class GCController : public JSWrappable {
-public:
-    static PassRefPtr<GCController> create();
-    virtual ~GCController();
-
-    void makeWindowObject(JSContextRef, JSObjectRef windowObject, JSValueRef* exception);
-
-    // JSWrappable
-    virtual JSClassRef wrapperClass();
-
-    void collect();
-    void collectOnAlternateThread(bool waitUntilDone);
-    size_t getJSObjectCount();
-
-private:
-    GCController();
-};
-
-} // namespace WTR
-
-#endif // GCController_h
diff --git a/Tools/WebKitTestRunner/InjectedBundle/InjectedBundle.cpp b/Tools/WebKitTestRunner/InjectedBundle/InjectedBundle.cpp
deleted file mode 100644
index 9094a66..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/InjectedBundle.cpp
+++ /dev/null
@@ -1,591 +0,0 @@
-/*
- * Copyright (C) 2010, 2011, 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundle.h"
-
-#include "ActivateFonts.h"
-#include "InjectedBundlePage.h"
-#include "StringFunctions.h"
-#include <WebKit2/WKBundle.h>
-#include <WebKit2/WKBundlePage.h>
-#include <WebKit2/WKBundlePagePrivate.h>
-#include <WebKit2/WKBundlePrivate.h>
-#include <WebKit2/WKRetainPtr.h>
-#include <WebKit2/WebKit2_C.h>
-#include <wtf/PassOwnPtr.h>
-#include <wtf/text/CString.h>
-#include <wtf/text/StringBuilder.h>
-#include <wtf/Vector.h>
-
-namespace WTR {
-
-InjectedBundle& InjectedBundle::shared()
-{
-    static InjectedBundle& shared = *new InjectedBundle;
-    return shared;
-}
-
-InjectedBundle::InjectedBundle()
-    : m_bundle(0)
-    , m_topLoadingFrame(0)
-    , m_state(Idle)
-    , m_dumpPixels(false)
-    , m_useWaitToDumpWatchdogTimer(true)
-    , m_useWorkQueue(false)
-    , m_timeout(0)
-{
-}
-
-void InjectedBundle::didCreatePage(WKBundleRef bundle, WKBundlePageRef page, const void* clientInfo)
-{
-    static_cast<InjectedBundle*>(const_cast<void*>(clientInfo))->didCreatePage(page);
-}
-
-void InjectedBundle::willDestroyPage(WKBundleRef bundle, WKBundlePageRef page, const void* clientInfo)
-{
-    static_cast<InjectedBundle*>(const_cast<void*>(clientInfo))->willDestroyPage(page);
-}
-
-void InjectedBundle::didInitializePageGroup(WKBundleRef bundle, WKBundlePageGroupRef pageGroup, const void* clientInfo)
-{
-    static_cast<InjectedBundle*>(const_cast<void*>(clientInfo))->didInitializePageGroup(pageGroup);
-}
-
-void InjectedBundle::didReceiveMessage(WKBundleRef bundle, WKStringRef messageName, WKTypeRef messageBody, const void* clientInfo)
-{
-    static_cast<InjectedBundle*>(const_cast<void*>(clientInfo))->didReceiveMessage(messageName, messageBody);
-}
-
-void InjectedBundle::didReceiveMessageToPage(WKBundleRef bundle, WKBundlePageRef page, WKStringRef messageName, WKTypeRef messageBody, const void* clientInfo)
-{
-    static_cast<InjectedBundle*>(const_cast<void*>(clientInfo))->didReceiveMessageToPage(page, messageName, messageBody);
-}
-
-void InjectedBundle::initialize(WKBundleRef bundle, WKTypeRef initializationUserData)
-{
-    m_bundle = bundle;
-
-    WKBundleClient client = {
-        kWKBundleClientCurrentVersion,
-        this,
-        didCreatePage,
-        willDestroyPage,
-        didInitializePageGroup,
-        didReceiveMessage,
-        didReceiveMessageToPage
-    };
-    WKBundleSetClient(m_bundle, &client);
-
-    platformInitialize(initializationUserData);
-
-    activateFonts();
-    WKBundleActivateMacFontAscentHack(m_bundle);
-
-    // FIXME: We'd like to start with a clean state for every test, but this function can't be used more than once yet.
-    WKBundleSwitchNetworkLoaderToNewTestingSession(m_bundle);
-}
-
-void InjectedBundle::didCreatePage(WKBundlePageRef page)
-{
-    m_pages.append(adoptPtr(new InjectedBundlePage(page)));
-}
-
-void InjectedBundle::willDestroyPage(WKBundlePageRef page)
-{
-    size_t size = m_pages.size();
-    for (size_t i = 0; i < size; ++i) {
-        if (m_pages[i]->page() == page) {
-            m_pages.remove(i);
-            break;
-        }
-    }
-}
-
-void InjectedBundle::didInitializePageGroup(WKBundlePageGroupRef pageGroup)
-{
-    m_pageGroup = pageGroup;
-}
-
-InjectedBundlePage* InjectedBundle::page() const
-{
-    // It might be better to have the UI process send over a reference to the main
-    // page instead of just assuming it's the first one.
-    return m_pages[0].get();
-}
-
-void InjectedBundle::resetLocalSettings()
-{
-    setlocale(LC_ALL, "");
-}
-
-void InjectedBundle::didReceiveMessage(WKStringRef messageName, WKTypeRef messageBody)
-{
-    if (WKStringIsEqualToUTF8CString(messageName, "BeginTest")) {
-        ASSERT(messageBody);
-        ASSERT(WKGetTypeID(messageBody) == WKDictionaryGetTypeID());
-        WKDictionaryRef messageBodyDictionary = static_cast<WKDictionaryRef>(messageBody);
-
-        WKRetainPtr<WKStringRef> dumpPixelsKey(AdoptWK, WKStringCreateWithUTF8CString("DumpPixels"));
-        m_dumpPixels = WKBooleanGetValue(static_cast<WKBooleanRef>(WKDictionaryGetItemForKey(messageBodyDictionary, dumpPixelsKey.get())));
-
-        WKRetainPtr<WKStringRef> useWaitToDumpWatchdogTimerKey(AdoptWK, WKStringCreateWithUTF8CString("UseWaitToDumpWatchdogTimer"));
-        m_useWaitToDumpWatchdogTimer = WKBooleanGetValue(static_cast<WKBooleanRef>(WKDictionaryGetItemForKey(messageBodyDictionary, useWaitToDumpWatchdogTimerKey.get())));
-
-        WKRetainPtr<WKStringRef> timeoutKey(AdoptWK, WKStringCreateWithUTF8CString("Timeout"));
-        m_timeout = (int)WKUInt64GetValue(static_cast<WKUInt64Ref>(WKDictionaryGetItemForKey(messageBodyDictionary, timeoutKey.get())));
-
-        WKRetainPtr<WKStringRef> ackMessageName(AdoptWK, WKStringCreateWithUTF8CString("Ack"));
-        WKRetainPtr<WKStringRef> ackMessageBody(AdoptWK, WKStringCreateWithUTF8CString("BeginTest"));
-        WKBundlePostMessage(m_bundle, ackMessageName.get(), ackMessageBody.get());
-
-        beginTesting(messageBodyDictionary);
-        return;
-    } else if (WKStringIsEqualToUTF8CString(messageName, "Reset")) {
-        ASSERT(messageBody);
-        ASSERT(WKGetTypeID(messageBody) == WKDictionaryGetTypeID());
-        WKDictionaryRef messageBodyDictionary = static_cast<WKDictionaryRef>(messageBody);
-
-        WKRetainPtr<WKStringRef> shouldGCKey(AdoptWK, WKStringCreateWithUTF8CString("ShouldGC"));
-        bool shouldGC = WKBooleanGetValue(static_cast<WKBooleanRef>(WKDictionaryGetItemForKey(messageBodyDictionary, shouldGCKey.get())));
-
-        if (shouldGC)
-            WKBundleGarbageCollectJavaScriptObjects(m_bundle);
-
-        m_state = Idle;
-        m_dumpPixels = false;
-
-        resetLocalSettings();
-        m_testRunner->removeAllWebNotificationPermissions();
-
-        page()->resetAfterTest();
-
-        return;
-    }
-    if (WKStringIsEqualToUTF8CString(messageName, "CallAddChromeInputFieldCallback")) {
-        m_testRunner->callAddChromeInputFieldCallback();
-        return;
-    }
-    if (WKStringIsEqualToUTF8CString(messageName, "CallRemoveChromeInputFieldCallback")) {
-        m_testRunner->callRemoveChromeInputFieldCallback();
-        return;
-    }
-    if (WKStringIsEqualToUTF8CString(messageName, "CallFocusWebViewCallback")) {
-        m_testRunner->callFocusWebViewCallback();
-        return;
-    }
-    if (WKStringIsEqualToUTF8CString(messageName, "CallSetBackingScaleFactorCallback")) {
-        m_testRunner->callSetBackingScaleFactorCallback();
-        return;
-    }   
-    if (WKStringIsEqualToUTF8CString(messageName, "WorkQueueProcessedCallback")) {
-        if (!topLoadingFrame() && !m_testRunner->waitToDump())
-            page()->dump();
-        return;
-    }
-
-    WKRetainPtr<WKStringRef> errorMessageName(AdoptWK, WKStringCreateWithUTF8CString("Error"));
-    WKRetainPtr<WKStringRef> errorMessageBody(AdoptWK, WKStringCreateWithUTF8CString("Unknown"));
-    WKBundlePostMessage(m_bundle, errorMessageName.get(), errorMessageBody.get());
-}
-
-void InjectedBundle::didReceiveMessageToPage(WKBundlePageRef page, WKStringRef messageName, WKTypeRef messageBody)
-{
-    WKRetainPtr<WKStringRef> errorMessageName(AdoptWK, WKStringCreateWithUTF8CString("Error"));
-    WKRetainPtr<WKStringRef> errorMessageBody(AdoptWK, WKStringCreateWithUTF8CString("Unknown"));
-    WKBundlePostMessage(m_bundle, errorMessageName.get(), errorMessageBody.get());
-}
-
-bool InjectedBundle::booleanForKey(WKDictionaryRef dictionary, const char* key)
-{
-    WKRetainPtr<WKStringRef> wkKey(AdoptWK, WKStringCreateWithUTF8CString(key));
-    WKTypeRef value = WKDictionaryGetItemForKey(dictionary, wkKey.get());
-    if (WKGetTypeID(value) != WKBooleanGetTypeID()) {
-        outputText(makeString("Boolean value for key", key, " not found in dictionary\n"));
-        return false;
-    }
-    return WKBooleanGetValue(static_cast<WKBooleanRef>(value));
-}
-
-void InjectedBundle::beginTesting(WKDictionaryRef settings)
-{
-    m_state = Testing;
-
-    m_pixelResult.clear();
-    m_repaintRects.clear();
-
-    m_testRunner = TestRunner::create();
-    m_gcController = GCController::create();
-    m_eventSendingController = EventSendingController::create();
-    m_textInputController = TextInputController::create();
-    m_accessibilityController = AccessibilityController::create();
-
-    WKBundleSetShouldTrackVisitedLinks(m_bundle, false);
-    WKBundleRemoveAllVisitedLinks(m_bundle);
-    WKBundleSetAllowUniversalAccessFromFileURLs(m_bundle, m_pageGroup, true);
-    WKBundleSetJavaScriptCanAccessClipboard(m_bundle, m_pageGroup, true);
-    WKBundleSetPrivateBrowsingEnabled(m_bundle, m_pageGroup, false);
-    WKBundleSetAuthorAndUserStylesEnabled(m_bundle, m_pageGroup, true);
-    WKBundleSetFrameFlatteningEnabled(m_bundle, m_pageGroup, false);
-    WKBundleSetMinimumLogicalFontSize(m_bundle, m_pageGroup, 9);
-    WKBundleSetSpatialNavigationEnabled(m_bundle, m_pageGroup, false);
-    WKBundleSetAllowFileAccessFromFileURLs(m_bundle, m_pageGroup, true);
-    WKBundleSetPluginsEnabled(m_bundle, m_pageGroup, true);
-    WKBundleSetPopupBlockingEnabled(m_bundle, m_pageGroup, false);
-    WKBundleSetAlwaysAcceptCookies(m_bundle, false);
-    WKBundleSetSerialLoadingEnabled(m_bundle, false);
-    WKBundleSetShadowDOMEnabled(m_bundle, true);
-    WKBundleSetSeamlessIFramesEnabled(m_bundle, true);
-    WKBundleSetCacheModel(m_bundle, 1 /*CacheModelDocumentBrowser*/);
-
-    WKBundleRemoveAllUserContent(m_bundle, m_pageGroup);
-
-    m_testRunner->setShouldDumpFrameLoadCallbacks(booleanForKey(settings, "DumpFrameLoadDelegates"));
-    m_testRunner->setUserStyleSheetEnabled(false);
-    m_testRunner->setXSSAuditorEnabled(false);
-    m_testRunner->setCloseRemainingWindowsWhenComplete(false);
-    m_testRunner->setAcceptsEditing(true);
-    m_testRunner->setTabKeyCyclesThroughElements(true);
-
-    m_testRunner->setCustomTimeout(m_timeout);
-
-    page()->prepare();
-
-    WKBundleClearAllDatabases(m_bundle);
-    WKBundleClearApplicationCache(m_bundle);
-    WKBundleResetOriginAccessWhitelists(m_bundle);
-
-    // [WK2] REGRESSION(r128623): It made layout tests extremely slow
-    // https://bugs.webkit.org/show_bug.cgi?id=96862
-    // WKBundleSetDatabaseQuota(m_bundle, 5 * 1024 * 1024);
-}
-
-void InjectedBundle::done()
-{
-    m_state = Stopping;
-
-    m_useWorkQueue = false;
-
-    page()->stopLoading();
-    setTopLoadingFrame(0);
-
-    m_accessibilityController->resetToConsistentState();
-
-    WKRetainPtr<WKStringRef> doneMessageName(AdoptWK, WKStringCreateWithUTF8CString("Done"));
-    WKRetainPtr<WKMutableDictionaryRef> doneMessageBody(AdoptWK, WKMutableDictionaryCreate());
-
-    WKRetainPtr<WKStringRef> pixelResultKey = adoptWK(WKStringCreateWithUTF8CString("PixelResult"));
-    WKDictionaryAddItem(doneMessageBody.get(), pixelResultKey.get(), m_pixelResult.get());
-
-    WKRetainPtr<WKStringRef> repaintRectsKey = adoptWK(WKStringCreateWithUTF8CString("RepaintRects"));
-    WKDictionaryAddItem(doneMessageBody.get(), repaintRectsKey.get(), m_repaintRects.get());
-
-    WKRetainPtr<WKStringRef> audioResultKey = adoptWK(WKStringCreateWithUTF8CString("AudioResult"));
-    WKDictionaryAddItem(doneMessageBody.get(), audioResultKey.get(), m_audioResult.get());
-
-    WKBundlePostMessage(m_bundle, doneMessageName.get(), doneMessageBody.get());
-
-    closeOtherPages();
-
-    m_state = Idle;
-}
-
-void InjectedBundle::closeOtherPages()
-{
-    Vector<WKBundlePageRef> pagesToClose;
-    size_t size = m_pages.size();
-    for (size_t i = 1; i < size; ++i)
-        pagesToClose.append(m_pages[i]->page());
-    size = pagesToClose.size();
-    for (size_t i = 0; i < size; ++i)
-        WKBundlePageClose(pagesToClose[i]);
-}
-
-void InjectedBundle::dumpBackForwardListsForAllPages(StringBuilder& stringBuilder)
-{
-    size_t size = m_pages.size();
-    for (size_t i = 0; i < size; ++i)
-        m_pages[i]->dumpBackForwardList(stringBuilder);
-}
-
-void InjectedBundle::outputText(const String& output)
-{
-    if (m_state != Testing)
-        return;
-    if (output.isEmpty())
-        return;
-    WKRetainPtr<WKStringRef> messageName(AdoptWK, WKStringCreateWithUTF8CString("TextOutput"));
-    WKRetainPtr<WKStringRef> messageBody(AdoptWK, WKStringCreateWithUTF8CString(output.utf8().data()));
-    WKBundlePostMessage(m_bundle, messageName.get(), messageBody.get());
-}
-
-void InjectedBundle::postNewBeforeUnloadReturnValue(bool value)
-{
-    WKRetainPtr<WKStringRef> messageName(AdoptWK, WKStringCreateWithUTF8CString("BeforeUnloadReturnValue"));
-    WKRetainPtr<WKBooleanRef> messageBody(AdoptWK, WKBooleanCreate(value));
-    WKBundlePostMessage(m_bundle, messageName.get(), messageBody.get());
-}
-
-void InjectedBundle::postAddChromeInputField()
-{
-    WKRetainPtr<WKStringRef> messageName(AdoptWK, WKStringCreateWithUTF8CString("AddChromeInputField"));
-    WKBundlePostMessage(m_bundle, messageName.get(), 0);
-}
-
-void InjectedBundle::postRemoveChromeInputField()
-{
-    WKRetainPtr<WKStringRef> messageName(AdoptWK, WKStringCreateWithUTF8CString("RemoveChromeInputField"));
-    WKBundlePostMessage(m_bundle, messageName.get(), 0);
-}
-
-void InjectedBundle::postFocusWebView()
-{
-    WKRetainPtr<WKStringRef> messageName(AdoptWK, WKStringCreateWithUTF8CString("FocusWebView"));
-    WKBundlePostMessage(m_bundle, messageName.get(), 0);
-}
-
-void InjectedBundle::postSetBackingScaleFactor(double backingScaleFactor)
-{
-    WKRetainPtr<WKStringRef> messageName(AdoptWK, WKStringCreateWithUTF8CString("SetBackingScaleFactor"));
-    WKRetainPtr<WKDoubleRef> messageBody(AdoptWK, WKDoubleCreate(backingScaleFactor));
-    WKBundlePostMessage(m_bundle, messageName.get(), messageBody.get());
-}
-
-void InjectedBundle::postSetWindowIsKey(bool isKey)
-{
-    WKRetainPtr<WKStringRef> messageName(AdoptWK, WKStringCreateWithUTF8CString("SetWindowIsKey"));
-    WKRetainPtr<WKBooleanRef> messageBody(AdoptWK, WKBooleanCreate(isKey));
-    WKBundlePostSynchronousMessage(m_bundle, messageName.get(), messageBody.get(), 0);
-}
-
-void InjectedBundle::postSimulateWebNotificationClick(uint64_t notificationID)
-{
-    WKRetainPtr<WKStringRef> messageName(AdoptWK, WKStringCreateWithUTF8CString("SimulateWebNotificationClick"));
-    WKRetainPtr<WKUInt64Ref> messageBody(AdoptWK, WKUInt64Create(notificationID));
-    WKBundlePostMessage(m_bundle, messageName.get(), messageBody.get());
-}
-
-void InjectedBundle::setGeolocationPermission(bool enabled)
-{
-    WKRetainPtr<WKStringRef> messageName(AdoptWK, WKStringCreateWithUTF8CString("SetGeolocationPermission"));
-    WKRetainPtr<WKBooleanRef> messageBody(AdoptWK, WKBooleanCreate(enabled));
-    WKBundlePostMessage(m_bundle, messageName.get(), messageBody.get());
-}
-
-void InjectedBundle::setMockGeolocationPosition(double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed)
-{
-    WKRetainPtr<WKStringRef> messageName(AdoptWK, WKStringCreateWithUTF8CString("SetMockGeolocationPosition"));
-
-    WKRetainPtr<WKMutableDictionaryRef> messageBody(AdoptWK, WKMutableDictionaryCreate());
-
-    WKRetainPtr<WKStringRef> latitudeKeyWK(AdoptWK, WKStringCreateWithUTF8CString("latitude"));
-    WKRetainPtr<WKDoubleRef> latitudeWK(AdoptWK, WKDoubleCreate(latitude));
-    WKDictionaryAddItem(messageBody.get(), latitudeKeyWK.get(), latitudeWK.get());
-
-    WKRetainPtr<WKStringRef> longitudeKeyWK(AdoptWK, WKStringCreateWithUTF8CString("longitude"));
-    WKRetainPtr<WKDoubleRef> longitudeWK(AdoptWK, WKDoubleCreate(longitude));
-    WKDictionaryAddItem(messageBody.get(), longitudeKeyWK.get(), longitudeWK.get());
-
-    WKRetainPtr<WKStringRef> accuracyKeyWK(AdoptWK, WKStringCreateWithUTF8CString("accuracy"));
-    WKRetainPtr<WKDoubleRef> accuracyWK(AdoptWK, WKDoubleCreate(accuracy));
-    WKDictionaryAddItem(messageBody.get(), accuracyKeyWK.get(), accuracyWK.get());
-
-    WKRetainPtr<WKStringRef> providesAltitudeKeyWK(AdoptWK, WKStringCreateWithUTF8CString("providesAltitude"));
-    WKRetainPtr<WKBooleanRef> providesAltitudeWK(AdoptWK, WKBooleanCreate(providesAltitude));
-    WKDictionaryAddItem(messageBody.get(), providesAltitudeKeyWK.get(), providesAltitudeWK.get());
-
-    WKRetainPtr<WKStringRef> altitudeKeyWK(AdoptWK, WKStringCreateWithUTF8CString("altitude"));
-    WKRetainPtr<WKDoubleRef> altitudeWK(AdoptWK, WKDoubleCreate(altitude));
-    WKDictionaryAddItem(messageBody.get(), altitudeKeyWK.get(), altitudeWK.get());
-
-    WKRetainPtr<WKStringRef> providesAltitudeAccuracyKeyWK(AdoptWK, WKStringCreateWithUTF8CString("providesAltitudeAccuracy"));
-    WKRetainPtr<WKBooleanRef> providesAltitudeAccuracyWK(AdoptWK, WKBooleanCreate(providesAltitudeAccuracy));
-    WKDictionaryAddItem(messageBody.get(), providesAltitudeAccuracyKeyWK.get(), providesAltitudeAccuracyWK.get());
-
-    WKRetainPtr<WKStringRef> altitudeAccuracyKeyWK(AdoptWK, WKStringCreateWithUTF8CString("altitudeAccuracy"));
-    WKRetainPtr<WKDoubleRef> altitudeAccuracyWK(AdoptWK, WKDoubleCreate(altitudeAccuracy));
-    WKDictionaryAddItem(messageBody.get(), altitudeAccuracyKeyWK.get(), altitudeAccuracyWK.get());
-
-    WKRetainPtr<WKStringRef> providesHeadingKeyWK(AdoptWK, WKStringCreateWithUTF8CString("providesHeading"));
-    WKRetainPtr<WKBooleanRef> providesHeadingWK(AdoptWK, WKBooleanCreate(providesHeading));
-    WKDictionaryAddItem(messageBody.get(), providesHeadingKeyWK.get(), providesHeadingWK.get());
-
-    WKRetainPtr<WKStringRef> headingKeyWK(AdoptWK, WKStringCreateWithUTF8CString("heading"));
-    WKRetainPtr<WKDoubleRef> headingWK(AdoptWK, WKDoubleCreate(heading));
-    WKDictionaryAddItem(messageBody.get(), headingKeyWK.get(), headingWK.get());
-
-    WKRetainPtr<WKStringRef> providesSpeedKeyWK(AdoptWK, WKStringCreateWithUTF8CString("providesSpeed"));
-    WKRetainPtr<WKBooleanRef> providesSpeedWK(AdoptWK, WKBooleanCreate(providesSpeed));
-    WKDictionaryAddItem(messageBody.get(), providesSpeedKeyWK.get(), providesSpeedWK.get());
-
-    WKRetainPtr<WKStringRef> speedKeyWK(AdoptWK, WKStringCreateWithUTF8CString("speed"));
-    WKRetainPtr<WKDoubleRef> speedWK(AdoptWK, WKDoubleCreate(speed));
-    WKDictionaryAddItem(messageBody.get(), speedKeyWK.get(), speedWK.get());
-
-    WKBundlePostMessage(m_bundle, messageName.get(), messageBody.get());
-}
-
-void InjectedBundle::setMockGeolocationPositionUnavailableError(WKStringRef errorMessage)
-{
-    WKRetainPtr<WKStringRef> messageName(AdoptWK, WKStringCreateWithUTF8CString("SetMockGeolocationPositionUnavailableError"));
-    WKBundlePostMessage(m_bundle, messageName.get(), errorMessage);
-}
-
-void InjectedBundle::setCustomPolicyDelegate(bool enabled, bool permissive)
-{
-    WKRetainPtr<WKStringRef> messageName(AdoptWK, WKStringCreateWithUTF8CString("SetCustomPolicyDelegate"));
-
-    WKRetainPtr<WKMutableDictionaryRef> messageBody(AdoptWK, WKMutableDictionaryCreate());
-
-    WKRetainPtr<WKStringRef> enabledKeyWK(AdoptWK, WKStringCreateWithUTF8CString("enabled"));
-    WKRetainPtr<WKBooleanRef> enabledWK(AdoptWK, WKBooleanCreate(enabled));
-    WKDictionaryAddItem(messageBody.get(), enabledKeyWK.get(), enabledWK.get());
-
-    WKRetainPtr<WKStringRef> permissiveKeyWK(AdoptWK, WKStringCreateWithUTF8CString("permissive"));
-    WKRetainPtr<WKBooleanRef> permissiveWK(AdoptWK, WKBooleanCreate(permissive));
-    WKDictionaryAddItem(messageBody.get(), permissiveKeyWK.get(), permissiveWK.get());
-
-    WKBundlePostMessage(m_bundle, messageName.get(), messageBody.get());
-}
-
-void InjectedBundle::setVisibilityState(WKPageVisibilityState visibilityState, bool isInitialState)
-{
-    WKRetainPtr<WKStringRef> messageName(AdoptWK, WKStringCreateWithUTF8CString("SetVisibilityState"));
-    WKRetainPtr<WKMutableDictionaryRef> messageBody(AdoptWK, WKMutableDictionaryCreate());
-
-    WKRetainPtr<WKStringRef> visibilityStateKeyWK(AdoptWK, WKStringCreateWithUTF8CString("visibilityState"));
-    WKRetainPtr<WKUInt64Ref> visibilityStateWK(AdoptWK, WKUInt64Create(visibilityState));
-    WKDictionaryAddItem(messageBody.get(), visibilityStateKeyWK.get(), visibilityStateWK.get());
-
-    WKRetainPtr<WKStringRef> isInitialKeyWK(AdoptWK, WKStringCreateWithUTF8CString("isInitialState"));
-    WKRetainPtr<WKBooleanRef> isInitialWK(AdoptWK, WKBooleanCreate(isInitialState));
-    WKDictionaryAddItem(messageBody.get(), isInitialKeyWK.get(), isInitialWK.get());
-
-    WKBundlePostMessage(m_bundle, messageName.get(), messageBody.get());
-}
-
-bool InjectedBundle::shouldProcessWorkQueue() const
-{
-    if (!m_useWorkQueue)
-        return false;
-
-    WKRetainPtr<WKStringRef> messageName(AdoptWK, WKStringCreateWithUTF8CString("IsWorkQueueEmpty"));
-    WKTypeRef resultToPass = 0;
-    WKBundlePostSynchronousMessage(m_bundle, messageName.get(), 0, &resultToPass);
-    WKRetainPtr<WKBooleanRef> isEmpty(AdoptWK, static_cast<WKBooleanRef>(resultToPass));
-
-    return !WKBooleanGetValue(isEmpty.get());
-}
-
-void InjectedBundle::processWorkQueue()
-{
-    WKRetainPtr<WKStringRef> messageName(AdoptWK, WKStringCreateWithUTF8CString("ProcessWorkQueue"));
-    WKBundlePostMessage(m_bundle, messageName.get(), 0);
-}
-
-void InjectedBundle::queueBackNavigation(unsigned howFarBackward)
-{
-    m_useWorkQueue = true;
-
-    WKRetainPtr<WKStringRef> messageName(AdoptWK, WKStringCreateWithUTF8CString("QueueBackNavigation"));
-    WKRetainPtr<WKUInt64Ref> messageBody(AdoptWK, WKUInt64Create(howFarBackward));
-    WKBundlePostMessage(m_bundle, messageName.get(), messageBody.get());
-}
-
-void InjectedBundle::queueForwardNavigation(unsigned howFarForward)
-{
-    m_useWorkQueue = true;
-
-    WKRetainPtr<WKStringRef> messageName(AdoptWK, WKStringCreateWithUTF8CString("QueueForwardNavigation"));
-    WKRetainPtr<WKUInt64Ref> messageBody(AdoptWK, WKUInt64Create(howFarForward));
-    WKBundlePostMessage(m_bundle, messageName.get(), messageBody.get());
-}
-
-void InjectedBundle::queueLoad(WKStringRef url, WKStringRef target)
-{
-    m_useWorkQueue = true;
-
-    WKRetainPtr<WKStringRef> messageName(AdoptWK, WKStringCreateWithUTF8CString("QueueLoad"));
-
-    WKRetainPtr<WKMutableDictionaryRef> loadData(AdoptWK, WKMutableDictionaryCreate());
-
-    WKRetainPtr<WKStringRef> urlKey(AdoptWK, WKStringCreateWithUTF8CString("url"));
-    WKDictionaryAddItem(loadData.get(), urlKey.get(), url);
-
-    WKRetainPtr<WKStringRef> targetKey(AdoptWK, WKStringCreateWithUTF8CString("target"));
-    WKDictionaryAddItem(loadData.get(), targetKey.get(), target);
-
-    WKBundlePostMessage(m_bundle, messageName.get(), loadData.get());
-}
-
-void InjectedBundle::queueLoadHTMLString(WKStringRef content, WKStringRef baseURL, WKStringRef unreachableURL)
-{
-    m_useWorkQueue = true;
-
-    WKRetainPtr<WKStringRef> messageName(AdoptWK, WKStringCreateWithUTF8CString("QueueLoadHTMLString"));
-
-    WKRetainPtr<WKMutableDictionaryRef> loadData(AdoptWK, WKMutableDictionaryCreate());
-
-    WKRetainPtr<WKStringRef> contentKey(AdoptWK, WKStringCreateWithUTF8CString("content"));
-    WKDictionaryAddItem(loadData.get(), contentKey.get(), content);
-
-    if (baseURL) {
-        WKRetainPtr<WKStringRef> baseURLKey(AdoptWK, WKStringCreateWithUTF8CString("baseURL"));
-        WKDictionaryAddItem(loadData.get(), baseURLKey.get(), baseURL);
-    }
-
-    if (unreachableURL) {
-        WKRetainPtr<WKStringRef> unreachableURLKey(AdoptWK, WKStringCreateWithUTF8CString("unreachableURL"));
-        WKDictionaryAddItem(loadData.get(), unreachableURLKey.get(), unreachableURL);
-    }
-
-    WKBundlePostMessage(m_bundle, messageName.get(), loadData.get());
-}
-
-void InjectedBundle::queueReload()
-{
-    m_useWorkQueue = true;
-
-    WKRetainPtr<WKStringRef> messageName(AdoptWK, WKStringCreateWithUTF8CString("QueueReload"));
-    WKBundlePostMessage(m_bundle, messageName.get(), 0);
-}
-
-void InjectedBundle::queueLoadingScript(WKStringRef script)
-{
-    m_useWorkQueue = true;
-
-    WKRetainPtr<WKStringRef> messageName(AdoptWK, WKStringCreateWithUTF8CString("QueueLoadingScript"));
-    WKBundlePostMessage(m_bundle, messageName.get(), script);
-}
-
-void InjectedBundle::queueNonLoadingScript(WKStringRef script)
-{
-    m_useWorkQueue = true;
-
-    WKRetainPtr<WKStringRef> messageName(AdoptWK, WKStringCreateWithUTF8CString("QueueNonLoadingScript"));
-    WKBundlePostMessage(m_bundle, messageName.get(), script);
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/InjectedBundle/InjectedBundle.h b/Tools/WebKitTestRunner/InjectedBundle/InjectedBundle.h
deleted file mode 100644
index 170c8ac..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/InjectedBundle.h
+++ /dev/null
@@ -1,166 +0,0 @@
-/*
- * Copyright (C) 2010, 2011, 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef InjectedBundle_h
-#define InjectedBundle_h
-
-#include "AccessibilityController.h"
-#include "EventSendingController.h"
-#include "GCController.h"
-#include "TestRunner.h"
-#include "TextInputController.h"
-#include <WebKit2/WKBase.h>
-#include <WebKit2/WKRetainPtr.h>
-#include <sstream>
-#include <wtf/Forward.h>
-#include <wtf/OwnPtr.h>
-#include <wtf/RefPtr.h>
-#include <wtf/Vector.h>
-
-namespace WTR {
-
-class InjectedBundlePage;
-
-class InjectedBundle {
-public:
-    static InjectedBundle& shared();
-
-    // Initialize the InjectedBundle.
-    void initialize(WKBundleRef, WKTypeRef initializationUserData);
-
-    WKBundleRef bundle() const { return m_bundle; }
-    WKBundlePageGroupRef pageGroup() const { return m_pageGroup; }
-
-    TestRunner* testRunner() { return m_testRunner.get(); }
-    GCController* gcController() { return m_gcController.get(); }
-    EventSendingController* eventSendingController() { return m_eventSendingController.get(); }
-    TextInputController* textInputController() { return m_textInputController.get(); }
-    AccessibilityController* accessibilityController() { return m_accessibilityController.get(); }
-
-    InjectedBundlePage* page() const;
-    size_t pageCount() const { return m_pages.size(); }
-    void closeOtherPages();
-
-    void dumpBackForwardListsForAllPages(StringBuilder&);
-
-    void done();
-    void setAudioResult(WKDataRef audioData) { m_audioResult = audioData; }
-    void setPixelResult(WKImageRef image) { m_pixelResult = image; }
-    void setRepaintRects(WKArrayRef rects) { m_repaintRects = rects; }
-
-    bool isTestRunning() { return m_state == Testing; }
-
-    WKBundleFrameRef topLoadingFrame() { return m_topLoadingFrame; }
-    void setTopLoadingFrame(WKBundleFrameRef frame) { m_topLoadingFrame = frame; }
-
-    bool shouldDumpPixels() const { return m_dumpPixels; }
-    bool useWaitToDumpWatchdogTimer() const { return m_useWaitToDumpWatchdogTimer; }
-    
-    void outputText(const String&);
-    void postNewBeforeUnloadReturnValue(bool);
-    void postAddChromeInputField();
-    void postRemoveChromeInputField();
-    void postFocusWebView();
-    void postSetBackingScaleFactor(double);
-    void postSetWindowIsKey(bool);
-    void postSimulateWebNotificationClick(uint64_t notificationID);
-
-    // Geolocation.
-    void setGeolocationPermission(bool);
-    void setMockGeolocationPosition(double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed);
-    void setMockGeolocationPositionUnavailableError(WKStringRef errorMessage);
-
-    // Policy delegate.
-    void setCustomPolicyDelegate(bool enabled, bool permissive);
-
-    // Page Visibility.
-    void setVisibilityState(WKPageVisibilityState, bool isInitialState);
-
-    // Work queue.
-    bool shouldProcessWorkQueue() const;
-    void processWorkQueue();
-    void queueBackNavigation(unsigned howFarBackward);
-    void queueForwardNavigation(unsigned howFarForward);
-    void queueLoad(WKStringRef url, WKStringRef target);
-    void queueLoadHTMLString(WKStringRef content, WKStringRef baseURL = 0, WKStringRef unreachableURL = 0);
-    void queueReload();
-    void queueLoadingScript(WKStringRef script);
-    void queueNonLoadingScript(WKStringRef script);
-
-private:
-    InjectedBundle();
-    ~InjectedBundle();
-
-    static void didCreatePage(WKBundleRef, WKBundlePageRef, const void* clientInfo);
-    static void willDestroyPage(WKBundleRef, WKBundlePageRef, const void* clientInfo);
-    static void didInitializePageGroup(WKBundleRef, WKBundlePageGroupRef, const void* clientInfo);
-    static void didReceiveMessage(WKBundleRef, WKStringRef messageName, WKTypeRef messageBody, const void* clientInfo);
-    static void didReceiveMessageToPage(WKBundleRef, WKBundlePageRef, WKStringRef messageName, WKTypeRef messageBody, const void* clientInfo);
-
-    void didCreatePage(WKBundlePageRef);
-    void willDestroyPage(WKBundlePageRef);
-    void didInitializePageGroup(WKBundlePageGroupRef);
-    void didReceiveMessage(WKStringRef messageName, WKTypeRef messageBody);
-    void didReceiveMessageToPage(WKBundlePageRef, WKStringRef messageName, WKTypeRef messageBody);
-
-    void platformInitialize(WKTypeRef initializationUserData);
-    void resetLocalSettings();
-
-    void beginTesting(WKDictionaryRef initialSettings);
-
-    bool booleanForKey(WKDictionaryRef, const char* key);
-
-    WKBundleRef m_bundle;
-    WKBundlePageGroupRef m_pageGroup;
-    Vector<OwnPtr<InjectedBundlePage> > m_pages;
-
-    RefPtr<AccessibilityController> m_accessibilityController;
-    RefPtr<TestRunner> m_testRunner;
-    RefPtr<GCController> m_gcController;
-    RefPtr<EventSendingController> m_eventSendingController;
-    RefPtr<TextInputController> m_textInputController;
-
-    WKBundleFrameRef m_topLoadingFrame;
-
-    enum State {
-        Idle,
-        Testing,
-        Stopping
-    };
-    State m_state;
-
-    bool m_dumpPixels;
-    bool m_useWaitToDumpWatchdogTimer;
-    bool m_useWorkQueue;
-    int m_timeout;
-
-    WKRetainPtr<WKDataRef> m_audioResult;
-    WKRetainPtr<WKImageRef> m_pixelResult;
-    WKRetainPtr<WKArrayRef> m_repaintRects;
-};
-
-} // namespace WTR
-
-#endif // InjectedBundle_h
diff --git a/Tools/WebKitTestRunner/InjectedBundle/InjectedBundle.pro b/Tools/WebKitTestRunner/InjectedBundle/InjectedBundle.pro
deleted file mode 100644
index 18842dd..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/InjectedBundle.pro
+++ /dev/null
@@ -1,16 +0,0 @@
-# -------------------------------------------------------------------
-# Main project file for WebKitTestRunner's InjectedBundle
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-TEMPLATE = subdirs
-CONFIG += ordered
-
-derived_sources.file = DerivedSources.pri
-target.file = Target.pri
-
-SUBDIRS = derived_sources target
-
-addStrictSubdirOrderBetween(derived_sources, target)
-
diff --git a/Tools/WebKitTestRunner/InjectedBundle/InjectedBundleMain.cpp b/Tools/WebKitTestRunner/InjectedBundle/InjectedBundleMain.cpp
deleted file mode 100644
index 7244077..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/InjectedBundleMain.cpp
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include "InjectedBundle.h"
-#include <WebKit2/WKBundleInitialize.h>
-
-#if defined(WIN32) || defined(_WIN32)
-extern "C" __declspec(dllexport) 
-#else
-extern "C"
-#endif
-void WKBundleInitialize(WKBundleRef bundle, WKTypeRef initializationUserData)
-{
-    WTR::InjectedBundle::shared().initialize(bundle, initializationUserData);
-}
diff --git a/Tools/WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp b/Tools/WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp
deleted file mode 100644
index 6903be6..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp
+++ /dev/null
@@ -1,1888 +0,0 @@
-/*
- * Copyright (C) 2010, 2011, 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundlePage.h"
-
-#include "InjectedBundle.h"
-#include "StringFunctions.h"
-#include "WebCoreTestSupport.h"
-#include <cmath>
-#include <JavaScriptCore/JSRetainPtr.h>
-#include <WebKit2/WKArray.h>
-#include <WebKit2/WKBundle.h>
-#include <WebKit2/WKBundleBackForwardList.h>
-#include <WebKit2/WKBundleBackForwardListItem.h>
-#include <WebKit2/WKBundleFrame.h>
-#include <WebKit2/WKBundleFramePrivate.h>
-#include <WebKit2/WKBundleHitTestResult.h>
-#include <WebKit2/WKBundleNavigationAction.h>
-#include <WebKit2/WKBundleNodeHandlePrivate.h>
-#include <WebKit2/WKBundlePagePrivate.h>
-#include <WebKit2/WKBundlePrivate.h>
-#include <WebKit2/WKSecurityOrigin.h>
-#include <WebKit2/WKURLRequest.h>
-#include <wtf/HashMap.h>
-#include <wtf/text/CString.h>
-#include <wtf/text/StringBuilder.h>
-
-#if PLATFORM(QT)
-#include "DumpRenderTreeSupportQt.h"
-#endif
-
-using namespace std;
-
-namespace WTR {
-
-static bool hasPrefix(const WTF::String& searchString, const WTF::String& prefix)
-{
-    return searchString.length() >= prefix.length() && searchString.substring(0, prefix.length()) == prefix;
-}
-
-static JSValueRef propertyValue(JSContextRef context, JSObjectRef object, const char* propertyName)
-{
-    if (!object)
-        return 0;
-    JSRetainPtr<JSStringRef> propertyNameString(Adopt, JSStringCreateWithUTF8CString(propertyName));
-    return JSObjectGetProperty(context, object, propertyNameString.get(), 0);
-}
-
-static double propertyValueDouble(JSContextRef context, JSObjectRef object, const char* propertyName)
-{
-    JSValueRef value = propertyValue(context, object, propertyName);
-    if (!value)
-        return 0;
-    return JSValueToNumber(context, value, 0);    
-}
-
-static int propertyValueInt(JSContextRef context, JSObjectRef object, const char* propertyName)
-{
-    return static_cast<int>(propertyValueDouble(context, object, propertyName));    
-}
-
-static double numericWindowPropertyValue(WKBundleFrameRef frame, const char* propertyName)
-{
-    JSGlobalContextRef context = WKBundleFrameGetJavaScriptContext(frame);
-    return propertyValueDouble(context, JSContextGetGlobalObject(context), propertyName);
-}
-
-static WTF::String dumpPath(JSGlobalContextRef context, JSObjectRef nodeValue)
-{
-    JSValueRef nodeNameValue = propertyValue(context, nodeValue, "nodeName");
-    JSRetainPtr<JSStringRef> jsStringNodeName(Adopt, JSValueToStringCopy(context, nodeNameValue, 0));
-    WKRetainPtr<WKStringRef> nodeName = toWK(jsStringNodeName);
-
-    JSValueRef parentNode = propertyValue(context, nodeValue, "parentNode");
-
-    StringBuilder stringBuilder;
-    stringBuilder.append(toWTFString(nodeName));
-
-    if (parentNode && JSValueIsObject(context, parentNode)) {
-        stringBuilder.appendLiteral(" > ");
-        stringBuilder.append(dumpPath(context, (JSObjectRef)parentNode));
-    }
-
-    return stringBuilder.toString();
-}
-
-static WTF::String dumpPath(WKBundlePageRef page, WKBundleScriptWorldRef world, WKBundleNodeHandleRef node)
-{
-    if (!node)
-        return "(null)";
-
-    WKBundleFrameRef frame = WKBundlePageGetMainFrame(page);
-
-    JSGlobalContextRef context = WKBundleFrameGetJavaScriptContextForWorld(frame, world);
-    JSValueRef nodeValue = WKBundleFrameGetJavaScriptWrapperForNodeForWorld(frame, node, world);
-    ASSERT(JSValueIsObject(context, nodeValue));
-    JSObjectRef nodeObject = (JSObjectRef)nodeValue;
-
-    return dumpPath(context, nodeObject);
-}
-
-static WTF::String rangeToStr(WKBundlePageRef page, WKBundleScriptWorldRef world, WKBundleRangeHandleRef rangeRef)
-{
-    if (!rangeRef)
-        return "(null)";
- 
-    WKBundleFrameRef frame = WKBundlePageGetMainFrame(page);
-
-    JSGlobalContextRef context = WKBundleFrameGetJavaScriptContextForWorld(frame, world);
-    JSValueRef rangeValue = WKBundleFrameGetJavaScriptWrapperForRangeForWorld(frame, rangeRef, world);
-    ASSERT(JSValueIsObject(context, rangeValue));
-    JSObjectRef rangeObject = (JSObjectRef)rangeValue;
-
-    JSValueRef startNodeValue = propertyValue(context, rangeObject, "startContainer");
-    ASSERT(JSValueIsObject(context, startNodeValue));
-    JSObjectRef startNodeObject = (JSObjectRef)startNodeValue;
-
-    JSValueRef endNodeValue = propertyValue(context, rangeObject, "endContainer");
-    ASSERT(JSValueIsObject(context, endNodeValue));
-    JSObjectRef endNodeObject = (JSObjectRef)endNodeValue;
-
-    int startOffset = propertyValueInt(context, rangeObject, "startOffset");
-    int endOffset = propertyValueInt(context, rangeObject, "endOffset");
-
-    StringBuilder stringBuilder;
-    stringBuilder.appendLiteral("range from ");
-    stringBuilder.appendNumber(startOffset);
-    stringBuilder.appendLiteral(" of ");
-    stringBuilder.append(dumpPath(context, startNodeObject));
-    stringBuilder.appendLiteral(" to ");
-    stringBuilder.appendNumber(endOffset);
-    stringBuilder.appendLiteral(" of ");
-    stringBuilder.append(dumpPath(context, endNodeObject));
-    return stringBuilder.toString();
-}
-
-static WKRetainPtr<WKStringRef> NavigationTypeToString(WKFrameNavigationType type)
-{
-    switch (type) {
-    case kWKFrameNavigationTypeLinkClicked:
-        return adoptWK(WKStringCreateWithUTF8CString("link clicked"));
-    case kWKFrameNavigationTypeFormSubmitted:
-        return adoptWK(WKStringCreateWithUTF8CString("form submitted"));
-    case kWKFrameNavigationTypeBackForward:
-        return adoptWK(WKStringCreateWithUTF8CString("back/forward"));
-    case kWKFrameNavigationTypeReload:
-        return adoptWK(WKStringCreateWithUTF8CString("reload"));
-    case kWKFrameNavigationTypeFormResubmitted:
-        return adoptWK(WKStringCreateWithUTF8CString("form resubmitted"));
-    case kWKFrameNavigationTypeOther:
-        return adoptWK(WKStringCreateWithUTF8CString("other"));
-    }
-    return adoptWK(WKStringCreateWithUTF8CString("illegal value"));
-}
-
-static WTF::String styleDecToStr(WKBundleCSSStyleDeclarationRef style)
-{
-    // DumpRenderTree calls -[DOMCSSStyleDeclaration description], which just dumps class name and object address.
-    // No existing tests actually hit this code path at the time of this writing, because WebCore doesn't call
-    // the editing client if the styling operation source is CommandFromDOM or CommandFromDOMWithUserInterface.
-    StringBuilder stringBuilder;
-    stringBuilder.appendLiteral("<DOMCSSStyleDeclaration ADDRESS>");
-    return stringBuilder.toString();
-}
-
-static WTF::String securityOriginToStr(WKSecurityOriginRef origin)
-{
-    StringBuilder stringBuilder;
-    stringBuilder.append('{');
-    stringBuilder.append(toWTFString(adoptWK(WKSecurityOriginCopyProtocol(origin))));
-    stringBuilder.appendLiteral(", ");
-    stringBuilder.append(toWTFString(adoptWK(WKSecurityOriginCopyHost(origin))));
-    stringBuilder.appendLiteral(", ");
-    stringBuilder.appendNumber(WKSecurityOriginGetPort(origin));
-    stringBuilder.append('}');
-
-    return stringBuilder.toString();
-}
-
-static WTF::String frameToStr(WKBundleFrameRef frame)
-{
-    WKRetainPtr<WKStringRef> name(AdoptWK, WKBundleFrameCopyName(frame));
-    StringBuilder stringBuilder;
-    if (WKBundleFrameIsMainFrame(frame)) {
-        if (!WKStringIsEmpty(name.get())) {
-            stringBuilder.appendLiteral("main frame \"");
-            stringBuilder.append(toWTFString(name));
-            stringBuilder.append('"');
-        } else
-            stringBuilder.appendLiteral("main frame");
-    } else {
-        if (!WKStringIsEmpty(name.get())) {
-            stringBuilder.appendLiteral("frame \"");
-            stringBuilder.append(toWTFString(name));
-            stringBuilder.append('"');
-        }
-        else
-            stringBuilder.appendLiteral("frame (anonymous)");
-    }
-    
-    return stringBuilder.toString();
-}
-
-static inline bool isLocalFileScheme(WKStringRef scheme)
-{
-    return WKStringIsEqualToUTF8CStringIgnoringCase(scheme, "file");
-}
-
-static const char divider = '/';
-
-static inline WTF::String pathSuitableForTestResult(WKURLRef fileUrl)
-{
-    if (!fileUrl)
-        return String();
-
-    WKRetainPtr<WKStringRef> schemeString = adoptWK(WKURLCopyScheme(fileUrl));
-    if (!isLocalFileScheme(schemeString.get()))
-        return toWTFString(adoptWK(WKURLCopyString(fileUrl)));
-
-    String pathString = toWTFString(adoptWK(WKURLCopyPath(fileUrl)));
-    StringBuilder stringBuilder;
-
-    // Remove the leading path from file urls.
-    const size_t indexBaseName = pathString.reverseFind(divider);
-    if (indexBaseName != notFound) {
-        const size_t indexDirName = pathString.reverseFind(divider, indexBaseName - 1);
-        if (indexDirName != notFound)
-            stringBuilder.append(pathString.substring(indexDirName + 1, indexBaseName - indexDirName - 1));
-        stringBuilder.append(divider);
-        stringBuilder.append(pathString.substring(indexBaseName + 1)); // Filename.
-    } else {
-        stringBuilder.append(divider);
-        stringBuilder.append(pathString); // Return "/pathString".
-    }
-
-    return stringBuilder.toString();
-}
-
-static inline WTF::String urlSuitableForTestResult(WKURLRef fileUrl)
-{
-    if (!fileUrl)
-        return String();
-
-    WKRetainPtr<WKStringRef> schemeString = adoptWK(WKURLCopyScheme(fileUrl));
-    if (!isLocalFileScheme(schemeString.get()))
-        return toWTFString(adoptWK(WKURLCopyString(fileUrl)));
-
-    WTF::String urlString = toWTFString(adoptWK(WKURLCopyString(fileUrl)));
-    const size_t indexBaseName = urlString.reverseFind(divider);
-
-    return (indexBaseName == notFound) ? urlString : urlString.substring(indexBaseName + 1);
-}
-
-static HashMap<uint64_t, String> assignedUrlsCache;
-
-static inline void dumpResourceURL(uint64_t identifier, StringBuilder& stringBuilder)
-{
-    if (assignedUrlsCache.contains(identifier))
-        stringBuilder.append(assignedUrlsCache.get(identifier));
-    else
-        stringBuilder.appendLiteral("<unknown>");
-}
-
-InjectedBundlePage::InjectedBundlePage(WKBundlePageRef page)
-    : m_page(page)
-    , m_world(AdoptWK, WKBundleScriptWorldCreateWorld())
-{
-    WKBundlePageLoaderClient loaderClient = {
-        kWKBundlePageLoaderClientCurrentVersion,
-        this,
-        didStartProvisionalLoadForFrame,
-        didReceiveServerRedirectForProvisionalLoadForFrame,
-        didFailProvisionalLoadWithErrorForFrame,
-        didCommitLoadForFrame,
-        didFinishDocumentLoadForFrame,
-        didFinishLoadForFrame,
-        didFailLoadWithErrorForFrame,
-        didSameDocumentNavigationForFrame,
-        didReceiveTitleForFrame,
-        0, // didFirstLayoutForFrame
-        0, // didFirstVisuallyNonEmptyLayoutForFrame
-        0, // didRemoveFrameFromHierarchy
-        didDisplayInsecureContentForFrame,
-        didRunInsecureContentForFrame,
-        didClearWindowForFrame,
-        didCancelClientRedirectForFrame,
-        willPerformClientRedirectForFrame,
-        didHandleOnloadEventsForFrame,
-        0, // didLayoutForFrame
-        0, // didNewFirstVisuallyNonEmptyLayoutForFrame
-        didDetectXSSForFrame,
-        0, // shouldGoToBackForwardListItem
-        0, // didCreateGlobalObjectForFrame
-        0, // willDisconnectDOMWindowExtensionFromGlobalObject
-        0, // didReconnectDOMWindowExtensionToGlobalObject
-        0, // willDestroyGlobalObjectForDOMWindowExtension
-        didFinishProgress, // didFinishProgress
-        0, // shouldForceUniversalAccessFromLocalURL
-        0, // didReceiveIntentForFrame
-        0, // registerIntentServiceForFrame
-        0, // didLayout
-    };
-    WKBundlePageSetPageLoaderClient(m_page, &loaderClient);
-
-    WKBundlePageResourceLoadClient resourceLoadClient = {
-        kWKBundlePageResourceLoadClientCurrentVersion,
-        this,
-        didInitiateLoadForResource,
-        willSendRequestForFrame,
-        didReceiveResponseForResource,
-        didReceiveContentLengthForResource,
-        didFinishLoadForResource,
-        didFailLoadForResource,
-        shouldCacheResponse,
-        0 // shouldUseCredentialStorage
-    };
-    WKBundlePageSetResourceLoadClient(m_page, &resourceLoadClient);
-
-    WKBundlePagePolicyClient policyClient = {
-        kWKBundlePagePolicyClientCurrentVersion,
-        this,
-        decidePolicyForNavigationAction,
-        decidePolicyForNewWindowAction,
-        decidePolicyForResponse,
-        unableToImplementPolicy
-    };
-    WKBundlePageSetPolicyClient(m_page, &policyClient);
-
-    WKBundlePageUIClient uiClient = {
-        kWKBundlePageUIClientCurrentVersion,
-        this,
-        willAddMessageToConsole,
-        willSetStatusbarText,
-        willRunJavaScriptAlert,
-        willRunJavaScriptConfirm,
-        willRunJavaScriptPrompt,
-        0, /*mouseDidMoveOverElement*/
-        0, /*pageDidScroll*/
-        0, /*paintCustomOverhangArea*/
-        0, /*shouldGenerateFileForUpload*/
-        0, /*generateFileForUpload*/
-        0, /*shouldRubberBandInDirection*/
-        0, /*statusBarIsVisible*/
-        0, /*menuBarIsVisible*/
-        0, /*toolbarsAreVisible*/
-        didReachApplicationCacheOriginQuota,
-        didExceedDatabaseQuota,
-        0, /*plugInStartLabelTitle*/
-        0, /*plugInStartLabelSubtitle*/
-        0, /*plugInExtraStyleSheet*/
-    };
-    WKBundlePageSetUIClient(m_page, &uiClient);
-
-    WKBundlePageEditorClient editorClient = {
-        kWKBundlePageEditorClientCurrentVersion,
-        this,
-        shouldBeginEditing,
-        shouldEndEditing,
-        shouldInsertNode,
-        shouldInsertText,
-        shouldDeleteRange,
-        shouldChangeSelectedRange,
-        shouldApplyStyle,
-        didBeginEditing,
-        didEndEditing,
-        didChange,
-        didChangeSelection,
-        0, /* willWriteToPasteboard */
-        0, /* getPasteboardDataForRange */
-        0  /* didWriteToPasteboard */
-    };
-    WKBundlePageSetEditorClient(m_page, &editorClient);
-
-#if ENABLE(FULLSCREEN_API)
-    WKBundlePageFullScreenClient fullScreenClient = {
-        kWKBundlePageFullScreenClientCurrentVersion,
-        this,
-        supportsFullScreen,
-        enterFullScreenForElement,
-        exitFullScreenForElement,
-        beganEnterFullScreen,
-        beganExitFullScreen,
-        closeFullScreen,
-    };
-    WKBundlePageSetFullScreenClient(m_page, &fullScreenClient);
-#endif
-}
-
-InjectedBundlePage::~InjectedBundlePage()
-{
-}
-
-void InjectedBundlePage::stopLoading()
-{
-    WKBundlePageStopLoading(m_page);
-}
-
-void InjectedBundlePage::prepare()
-{
-    WKBundlePageClearMainFrameName(m_page);
-
-    WKBundlePageSetPageZoomFactor(m_page, 1);
-    WKBundlePageSetTextZoomFactor(m_page, 1);
-
-    WKPoint origin = { 0, 0 };
-    WKBundlePageSetScaleAtOrigin(m_page, 1, origin);
-
-    m_previousTestBackForwardListItem = adoptWK(WKBundleBackForwardListCopyItemAtIndex(WKBundlePageGetBackForwardList(m_page), 0));
-
-    WKBundleFrameClearOpener(WKBundlePageGetMainFrame(m_page));
-    
-    WKBundlePageSetTracksRepaints(m_page, false);
-}
-
-void InjectedBundlePage::resetAfterTest()
-{
-    WKBundleFrameRef frame = WKBundlePageGetMainFrame(m_page);
-    JSGlobalContextRef context = WKBundleFrameGetJavaScriptContext(frame);
-#if PLATFORM(QT)
-    DumpRenderTreeSupportQt::resetInternalsObject(context);
-#else
-    WebCoreTestSupport::resetInternalsObject(context);
-#endif
-    assignedUrlsCache.clear();
-}
-
-// Loader Client Callbacks
-
-// String output must be identical to -[WebFrame _drt_descriptionSuitableForTestResult].
-static void dumpFrameDescriptionSuitableForTestResult(WKBundleFrameRef frame, StringBuilder& stringBuilder)
-{
-    WKRetainPtr<WKStringRef> name(AdoptWK, WKBundleFrameCopyName(frame));
-    if (WKBundleFrameIsMainFrame(frame)) {
-        if (WKStringIsEmpty(name.get())) {
-            stringBuilder.appendLiteral("main frame");
-            return;
-        }
-
-        stringBuilder.appendLiteral("main frame \"");
-        stringBuilder.append(toWTFString(name));
-        stringBuilder.append('"');
-        return;
-    }
-
-    if (WKStringIsEmpty(name.get())) {
-        stringBuilder.appendLiteral("frame (anonymous)");
-        return;
-    }
-
-    stringBuilder.appendLiteral("frame \"");
-    stringBuilder.append(toWTFString(name));
-    stringBuilder.append('"');
-}
-
-static void dumpLoadEvent(WKBundleFrameRef frame, const char* eventName)
-{
-    StringBuilder stringBuilder;
-    dumpFrameDescriptionSuitableForTestResult(frame, stringBuilder);
-    stringBuilder.appendLiteral(" - ");
-    stringBuilder.append(eventName);
-    stringBuilder.append('\n');
-    InjectedBundle::shared().outputText(stringBuilder.toString());
-}
-
-static inline void dumpRequestDescriptionSuitableForTestResult(WKURLRequestRef request, StringBuilder& stringBuilder)
-{
-    WKRetainPtr<WKURLRef> url = adoptWK(WKURLRequestCopyURL(request));
-    WKRetainPtr<WKURLRef> firstParty = adoptWK(WKURLRequestCopyFirstPartyForCookies(request));
-    WKRetainPtr<WKStringRef> httpMethod = adoptWK(WKURLRequestCopyHTTPMethod(request));
-
-    stringBuilder.appendLiteral("<NSURLRequest URL ");
-    stringBuilder.append(pathSuitableForTestResult(url.get()));
-    stringBuilder.appendLiteral(", main document URL ");
-    stringBuilder.append(urlSuitableForTestResult(firstParty.get()));
-    stringBuilder.appendLiteral(", http method ");
-
-    if (WKStringIsEmpty(httpMethod.get()))
-        stringBuilder.appendLiteral("(none)");
-    else
-        stringBuilder.append(toWTFString(httpMethod));
-
-    stringBuilder.append('>');
-}
-
-static inline void dumpResponseDescriptionSuitableForTestResult(WKURLResponseRef response, StringBuilder& stringBuilder)
-{
-    WKRetainPtr<WKURLRef> url = adoptWK(WKURLResponseCopyURL(response));
-    if (!url) {
-        stringBuilder.appendLiteral("(null)");
-        return;
-    }
-    stringBuilder.appendLiteral("<NSURLResponse ");
-    stringBuilder.append(pathSuitableForTestResult(url.get()));
-    stringBuilder.appendLiteral(", http status code ");
-    stringBuilder.appendNumber(WKURLResponseHTTPStatusCode(response));
-    stringBuilder.append('>');
-}
-
-static inline void dumpErrorDescriptionSuitableForTestResult(WKErrorRef error, StringBuilder& stringBuilder)
-{
-    WKRetainPtr<WKStringRef> errorDomain = adoptWK(WKErrorCopyDomain(error));
-    int errorCode = WKErrorGetErrorCode(error);
-
-    // We need to do some error mapping here to match the test expectations (Mac error names are expected).
-    if (WKStringIsEqualToUTF8CString(errorDomain.get(), "WebKitNetworkError")) {
-        errorDomain = adoptWK(WKStringCreateWithUTF8CString("NSURLErrorDomain"));
-        errorCode = -999;
-    }
-
-    if (WKStringIsEqualToUTF8CString(errorDomain.get(), "WebKitPolicyError"))
-        errorDomain = adoptWK(WKStringCreateWithUTF8CString("WebKitErrorDomain"));
-
-    stringBuilder.appendLiteral("<NSError domain ");
-    stringBuilder.append(toWTFString(errorDomain));
-    stringBuilder.appendLiteral(", code ");
-    stringBuilder.appendNumber(errorCode);
-
-    WKRetainPtr<WKURLRef> url = adoptWK(WKErrorCopyFailingURL(error));
-    if (url.get()) {
-        WKRetainPtr<WKStringRef> urlString = adoptWK(WKURLCopyString(url.get()));
-        stringBuilder.appendLiteral(", failing URL \"");
-        stringBuilder.append(toWTFString(urlString));
-        stringBuilder.append('"');
-    }
-
-    stringBuilder.append('>');
-}
-
-void InjectedBundlePage::didStartProvisionalLoadForFrame(WKBundlePageRef page, WKBundleFrameRef frame, WKTypeRef*, const void *clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didStartProvisionalLoadForFrame(frame);
-}
-
-void InjectedBundlePage::didReceiveServerRedirectForProvisionalLoadForFrame(WKBundlePageRef page, WKBundleFrameRef frame, WKTypeRef*, const void *clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didReceiveServerRedirectForProvisionalLoadForFrame(frame);
-}
-
-void InjectedBundlePage::didFailProvisionalLoadWithErrorForFrame(WKBundlePageRef page, WKBundleFrameRef frame, WKErrorRef error, WKTypeRef*, const void *clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didFailProvisionalLoadWithErrorForFrame(frame, error);
-}
-
-void InjectedBundlePage::didCommitLoadForFrame(WKBundlePageRef page, WKBundleFrameRef frame, WKTypeRef*, const void *clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didCommitLoadForFrame(frame);
-}
-
-void InjectedBundlePage::didFinishLoadForFrame(WKBundlePageRef page, WKBundleFrameRef frame, WKTypeRef*, const void *clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didFinishLoadForFrame(frame);
-}
-
-void InjectedBundlePage::didFinishProgress(WKBundlePageRef, const void *clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didFinishProgress();
-}
-
-void InjectedBundlePage::didFinishDocumentLoadForFrame(WKBundlePageRef page, WKBundleFrameRef frame, WKTypeRef*, const void* clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didFinishDocumentLoadForFrame(frame);
-}
-
-void InjectedBundlePage::didFailLoadWithErrorForFrame(WKBundlePageRef page, WKBundleFrameRef frame, WKErrorRef error, WKTypeRef*, const void *clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didFailLoadWithErrorForFrame(frame, error);
-}
-
-void InjectedBundlePage::didReceiveTitleForFrame(WKBundlePageRef page, WKStringRef title, WKBundleFrameRef frame, WKTypeRef*, const void *clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didReceiveTitleForFrame(title, frame);
-}
-
-void InjectedBundlePage::didClearWindowForFrame(WKBundlePageRef page, WKBundleFrameRef frame, WKBundleScriptWorldRef world, const void *clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didClearWindowForFrame(frame, world);
-}
-
-void InjectedBundlePage::didCancelClientRedirectForFrame(WKBundlePageRef page, WKBundleFrameRef frame, const void* clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didCancelClientRedirectForFrame(frame);
-}
-
-void InjectedBundlePage::willPerformClientRedirectForFrame(WKBundlePageRef page, WKBundleFrameRef frame, WKURLRef url, double delay, double date, const void* clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->willPerformClientRedirectForFrame(frame, url, delay, date);
-}
-
-void InjectedBundlePage::didSameDocumentNavigationForFrame(WKBundlePageRef page, WKBundleFrameRef frame, WKSameDocumentNavigationType type, WKTypeRef*, const void* clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didSameDocumentNavigationForFrame(frame, type);
-}
-
-void InjectedBundlePage::didHandleOnloadEventsForFrame(WKBundlePageRef page, WKBundleFrameRef frame, const void* clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didHandleOnloadEventsForFrame(frame);
-}
-
-void InjectedBundlePage::didDisplayInsecureContentForFrame(WKBundlePageRef page, WKBundleFrameRef frame, WKTypeRef*, const void* clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didDisplayInsecureContentForFrame(frame);
-}
-
-void InjectedBundlePage::didDetectXSSForFrame(WKBundlePageRef page, WKBundleFrameRef frame, WKTypeRef*, const void* clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didDetectXSSForFrame(frame);
-}
-
-void InjectedBundlePage::didRunInsecureContentForFrame(WKBundlePageRef page, WKBundleFrameRef frame, WKTypeRef*, const void* clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didRunInsecureContentForFrame(frame);
-}
-
-void InjectedBundlePage::didInitiateLoadForResource(WKBundlePageRef page, WKBundleFrameRef frame, uint64_t identifier, WKURLRequestRef request, bool pageLoadIsProvisional, const void* clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didInitiateLoadForResource(page, frame, identifier, request, pageLoadIsProvisional);
-}
-
-WKURLRequestRef InjectedBundlePage::willSendRequestForFrame(WKBundlePageRef page, WKBundleFrameRef frame, uint64_t identifier, WKURLRequestRef request, WKURLResponseRef redirectResponse, const void* clientInfo)
-{
-    return static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->willSendRequestForFrame(page, frame, identifier, request, redirectResponse);
-}
-
-void InjectedBundlePage::didReceiveResponseForResource(WKBundlePageRef page, WKBundleFrameRef frame, uint64_t identifier, WKURLResponseRef response, const void* clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didReceiveResponseForResource(page, frame, identifier, response);
-}
-
-void InjectedBundlePage::didReceiveContentLengthForResource(WKBundlePageRef page, WKBundleFrameRef frame, uint64_t identifier, uint64_t length, const void* clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didReceiveContentLengthForResource(page, frame, identifier, length);
-}
-
-void InjectedBundlePage::didFinishLoadForResource(WKBundlePageRef page, WKBundleFrameRef frame, uint64_t identifier, const void* clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didFinishLoadForResource(page, frame, identifier);
-}
-
-void InjectedBundlePage::didFailLoadForResource(WKBundlePageRef page, WKBundleFrameRef frame, uint64_t identifier, WKErrorRef error, const void* clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didFailLoadForResource(page, frame, identifier, error);
-}
-
-bool InjectedBundlePage::shouldCacheResponse(WKBundlePageRef page, WKBundleFrameRef frame, uint64_t identifier, const void* clientInfo)
-{
-    return static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->shouldCacheResponse(page, frame, identifier);
-}
-
-void InjectedBundlePage::didStartProvisionalLoadForFrame(WKBundleFrameRef frame)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return;
-
-    platformDidStartProvisionalLoadForFrame(frame);
-
-    if (InjectedBundle::shared().testRunner()->shouldDumpFrameLoadCallbacks())
-        dumpLoadEvent(frame, "didStartProvisionalLoadForFrame");
-
-    if (!InjectedBundle::shared().topLoadingFrame())
-        InjectedBundle::shared().setTopLoadingFrame(frame);
-
-    if (InjectedBundle::shared().testRunner()->shouldStopProvisionalFrameLoads())
-        dumpLoadEvent(frame, "stopping load in didStartProvisionalLoadForFrame callback");
-}
-
-void InjectedBundlePage::didReceiveServerRedirectForProvisionalLoadForFrame(WKBundleFrameRef frame)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return;
-
-    if (!InjectedBundle::shared().testRunner()->shouldDumpFrameLoadCallbacks())
-        return;
-
-    dumpLoadEvent(frame, "didReceiveServerRedirectForProvisionalLoadForFrame");
-}
-
-void InjectedBundlePage::didFailProvisionalLoadWithErrorForFrame(WKBundleFrameRef frame, WKErrorRef)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return;
-
-    if (InjectedBundle::shared().testRunner()->shouldDumpFrameLoadCallbacks())
-        dumpLoadEvent(frame, "didFailProvisionalLoadWithError");
-
-    frameDidChangeLocation(frame);
-}
-
-void InjectedBundlePage::didCommitLoadForFrame(WKBundleFrameRef frame)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return;
-
-    if (!InjectedBundle::shared().testRunner()->shouldDumpFrameLoadCallbacks())
-        return;
-
-    dumpLoadEvent(frame, "didCommitLoadForFrame");
-}
-
-void InjectedBundlePage::didFinishProgress()
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return;
-
-    if (!InjectedBundle::shared().testRunner()->shouldDumpProgressFinishedCallback())
-        return;
-
-    InjectedBundle::shared().outputText("postProgressFinishedNotification\n");
-}
-
-enum FrameNamePolicy { ShouldNotIncludeFrameName, ShouldIncludeFrameName };
-
-static void dumpFrameScrollPosition(WKBundleFrameRef frame, StringBuilder& stringBuilder, FrameNamePolicy shouldIncludeFrameName = ShouldNotIncludeFrameName)
-{
-    double x = numericWindowPropertyValue(frame, "pageXOffset");
-    double y = numericWindowPropertyValue(frame, "pageYOffset");
-    if (fabs(x) <= 0.00000001 && fabs(y) <= 0.00000001)
-        return;
-
-    if (shouldIncludeFrameName) {
-        WKRetainPtr<WKStringRef> name(AdoptWK, WKBundleFrameCopyName(frame));
-        stringBuilder.appendLiteral("frame '");
-        stringBuilder.append(toWTFString(name));
-        stringBuilder.appendLiteral("' ");
-    }
-    stringBuilder.appendLiteral("scrolled to ");
-    stringBuilder.append(WTF::String::number(x));
-    stringBuilder.append(',');
-    stringBuilder.append(WTF::String::number(y));
-    stringBuilder.append('\n');
-}
-
-static void dumpDescendantFrameScrollPositions(WKBundleFrameRef frame, StringBuilder& stringBuilder)
-{
-    WKRetainPtr<WKArrayRef> childFrames(AdoptWK, WKBundleFrameCopyChildFrames(frame));
-    size_t size = WKArrayGetSize(childFrames.get());
-    for (size_t i = 0; i < size; ++i) {
-        WKBundleFrameRef subframe = static_cast<WKBundleFrameRef>(WKArrayGetItemAtIndex(childFrames.get(), i));
-        dumpFrameScrollPosition(subframe, stringBuilder, ShouldIncludeFrameName);
-        dumpDescendantFrameScrollPositions(subframe, stringBuilder);
-    }
-}
-
-void InjectedBundlePage::dumpAllFrameScrollPositions(StringBuilder& stringBuilder)
-{
-    WKBundleFrameRef frame = WKBundlePageGetMainFrame(m_page);
-    dumpFrameScrollPosition(frame, stringBuilder);
-    dumpDescendantFrameScrollPositions(frame, stringBuilder);
-}
-
-static JSRetainPtr<JSStringRef> toJS(const char* string)
-{
-    return JSRetainPtr<JSStringRef>(Adopt, JSStringCreateWithUTF8CString(string));
-}
-
-static bool hasDocumentElement(WKBundleFrameRef frame)
-{
-    JSGlobalContextRef context = WKBundleFrameGetJavaScriptContext(frame);
-    JSObjectRef globalObject = JSContextGetGlobalObject(context);
-
-    JSValueRef documentValue = JSObjectGetProperty(context, globalObject, toJS("document").get(), 0);
-    if (!documentValue)
-        return false;
-
-    ASSERT(JSValueIsObject(context, documentValue));
-    JSObjectRef document = JSValueToObject(context, documentValue, 0);
-
-    JSValueRef documentElementValue = JSObjectGetProperty(context, document, toJS("documentElement").get(), 0);
-    if (!documentElementValue)
-        return false;
-
-    return JSValueToBoolean(context, documentElementValue);
-}
-
-static void dumpFrameText(WKBundleFrameRef frame, StringBuilder& stringBuilder)
-{
-    // If the frame doesn't have a document element, its inner text will be an empty string, so
-    // we'll end up just appending a single newline below. But DumpRenderTree doesn't append
-    // anything in this case, so we shouldn't either.
-    if (!hasDocumentElement(frame))
-        return;
-
-    WKRetainPtr<WKStringRef> text(AdoptWK, WKBundleFrameCopyInnerText(frame));
-    stringBuilder.append(toWTFString(text));
-    stringBuilder.append('\n');
-}
-
-static void dumpDescendantFramesText(WKBundleFrameRef frame, StringBuilder& stringBuilder)
-{
-    WKRetainPtr<WKArrayRef> childFrames(AdoptWK, WKBundleFrameCopyChildFrames(frame));
-    size_t size = WKArrayGetSize(childFrames.get());
-    for (size_t i = 0; i < size; ++i) {
-        WKBundleFrameRef subframe = static_cast<WKBundleFrameRef>(WKArrayGetItemAtIndex(childFrames.get(), i));
-        WKRetainPtr<WKStringRef> subframeName(AdoptWK, WKBundleFrameCopyName(subframe));
-
-        // DumpRenderTree ignores empty frames, so do the same thing here.
-        if (!hasDocumentElement(subframe))
-            continue;
-
-        stringBuilder.appendLiteral("\n--------\nFrame: '");
-        stringBuilder.append(toWTFString(subframeName));
-        stringBuilder.appendLiteral("'\n--------\n");
-
-        dumpFrameText(subframe, stringBuilder);
-        dumpDescendantFramesText(subframe, stringBuilder);
-    }
-}
-
-void InjectedBundlePage::dumpAllFramesText(StringBuilder& stringBuilder)
-{
-    WKBundleFrameRef frame = WKBundlePageGetMainFrame(m_page);
-    dumpFrameText(frame, stringBuilder);
-    dumpDescendantFramesText(frame, stringBuilder);
-}
-
-void InjectedBundlePage::dump()
-{
-    ASSERT(InjectedBundle::shared().isTestRunning());
-
-    InjectedBundle::shared().testRunner()->invalidateWaitToDumpWatchdogTimer();
-
-    // Force a paint before dumping. This matches DumpRenderTree on Windows. (DumpRenderTree on Mac
-    // does this at a slightly different time.) See <http://webkit.org/b/55469> for details.
-    WKBundlePageForceRepaint(m_page);
-
-    WKBundleFrameRef frame = WKBundlePageGetMainFrame(m_page);
-    WTF::String url = toWTFString(adoptWK(WKURLCopyString(adoptWK(WKBundleFrameCopyURL(frame)).get())));
-    if (url.find("dumpAsText/") != WTF::notFound)
-        InjectedBundle::shared().testRunner()->dumpAsText(false);
-
-    StringBuilder stringBuilder;
-
-    switch (InjectedBundle::shared().testRunner()->whatToDump()) {
-    case TestRunner::RenderTree: {
-        WKRetainPtr<WKStringRef> text(AdoptWK, WKBundlePageCopyRenderTreeExternalRepresentation(m_page));
-        stringBuilder.append(toWTFString(text));
-        break;
-    }
-    case TestRunner::MainFrameText:
-        dumpFrameText(WKBundlePageGetMainFrame(m_page), stringBuilder);
-        break;
-    case TestRunner::AllFramesText:
-        dumpAllFramesText(stringBuilder);
-        break;
-    case TestRunner::Audio:
-        break;
-    }
-
-    if (InjectedBundle::shared().testRunner()->shouldDumpAllFrameScrollPositions())
-        dumpAllFrameScrollPositions(stringBuilder);
-    else if (InjectedBundle::shared().testRunner()->shouldDumpMainFrameScrollPosition())
-        dumpFrameScrollPosition(WKBundlePageGetMainFrame(m_page), stringBuilder);
-
-    if (InjectedBundle::shared().testRunner()->shouldDumpBackForwardListsForAllWindows())
-        InjectedBundle::shared().dumpBackForwardListsForAllPages(stringBuilder);
-
-    if (InjectedBundle::shared().shouldDumpPixels() && InjectedBundle::shared().testRunner()->shouldDumpPixels()) {
-        WKSnapshotOptions options = kWKSnapshotOptionsShareable | kWKSnapshotOptionsInViewCoordinates;
-        if (InjectedBundle::shared().testRunner()->shouldDumpSelectionRect())
-            options |= kWKSnapshotOptionsPaintSelectionRectangle;
-
-        InjectedBundle::shared().setPixelResult(adoptWK(WKBundlePageCreateSnapshotWithOptions(m_page, WKBundleFrameGetVisibleContentBounds(WKBundlePageGetMainFrame(m_page)), options)).get());
-        if (WKBundlePageIsTrackingRepaints(m_page))
-            InjectedBundle::shared().setRepaintRects(adoptWK(WKBundlePageCopyTrackedRepaintRects(m_page)).get());
-    }
-
-    InjectedBundle::shared().outputText(stringBuilder.toString());
-    InjectedBundle::shared().done();
-}
-
-void InjectedBundlePage::didFinishLoadForFrame(WKBundleFrameRef frame)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return;
-
-    if (InjectedBundle::shared().testRunner()->shouldDumpFrameLoadCallbacks())
-        dumpLoadEvent(frame, "didFinishLoadForFrame");
-
-    frameDidChangeLocation(frame, /*shouldDump*/ true);
-}
-
-void InjectedBundlePage::didFailLoadWithErrorForFrame(WKBundleFrameRef frame, WKErrorRef)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return;
-
-    if (InjectedBundle::shared().testRunner()->shouldDumpFrameLoadCallbacks())
-        dumpLoadEvent(frame, "didFailLoadWithError");
-
-    frameDidChangeLocation(frame);
-}
-
-void InjectedBundlePage::didReceiveTitleForFrame(WKStringRef title, WKBundleFrameRef frame)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return;
-
-    StringBuilder stringBuilder;
-    if (InjectedBundle::shared().testRunner()->shouldDumpFrameLoadCallbacks()) {
-        dumpFrameDescriptionSuitableForTestResult(frame, stringBuilder);
-        stringBuilder.appendLiteral(" - didReceiveTitle: ");
-        stringBuilder.append(toWTFString(title));
-        stringBuilder.append('\n');
-    }
-
-    if (InjectedBundle::shared().testRunner()->shouldDumpTitleChanges()) {
-        stringBuilder.appendLiteral("TITLE CHANGED: '");
-        stringBuilder.append(toWTFString(title));
-        stringBuilder.appendLiteral("'\n");
-    }
-
-    InjectedBundle::shared().outputText(stringBuilder.toString());
-}
-
-void InjectedBundlePage::didClearWindowForFrame(WKBundleFrameRef frame, WKBundleScriptWorldRef world)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return;
-
-    JSGlobalContextRef context = WKBundleFrameGetJavaScriptContextForWorld(frame, world);
-    JSObjectRef window = JSContextGetGlobalObject(context);
-
-    if (WKBundleScriptWorldNormalWorld() != world) {
-        JSObjectSetProperty(context, window, toJS("__worldID").get(), JSValueMakeNumber(context, TestRunner::worldIDForWorld(world)), kJSPropertyAttributeReadOnly, 0);
-        return;
-    }
-
-    JSValueRef exception = 0;
-    InjectedBundle::shared().testRunner()->makeWindowObject(context, window, &exception);
-    InjectedBundle::shared().gcController()->makeWindowObject(context, window, &exception);
-    InjectedBundle::shared().eventSendingController()->makeWindowObject(context, window, &exception);
-    InjectedBundle::shared().textInputController()->makeWindowObject(context, window, &exception);
-    InjectedBundle::shared().accessibilityController()->makeWindowObject(context, window, &exception);
-
-#if PLATFORM(QT)
-    DumpRenderTreeSupportQt::injectInternalsObject(context);
-#else
-    WebCoreTestSupport::injectInternalsObject(context);
-#endif
-}
-
-void InjectedBundlePage::didCancelClientRedirectForFrame(WKBundleFrameRef frame)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return;
-
-    if (!InjectedBundle::shared().testRunner()->shouldDumpFrameLoadCallbacks())
-        return;
-
-    dumpLoadEvent(frame, "didCancelClientRedirectForFrame");
-}
-
-void InjectedBundlePage::willPerformClientRedirectForFrame(WKBundleFrameRef frame, WKURLRef url, double delay, double date)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return;
-
-    if (!InjectedBundle::shared().testRunner()->shouldDumpFrameLoadCallbacks())
-        return;
-
-    StringBuilder stringBuilder;
-    dumpFrameDescriptionSuitableForTestResult(frame, stringBuilder);
-    stringBuilder.appendLiteral(" - willPerformClientRedirectToURL: ");
-    stringBuilder.append(pathSuitableForTestResult(url));
-    stringBuilder.appendLiteral(" \n");
-    InjectedBundle::shared().outputText(stringBuilder.toString());
-}
-
-void InjectedBundlePage::didSameDocumentNavigationForFrame(WKBundleFrameRef frame, WKSameDocumentNavigationType type)
-{
-}
-
-void InjectedBundlePage::didFinishDocumentLoadForFrame(WKBundleFrameRef frame)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return;
-
-    if (InjectedBundle::shared().testRunner()->shouldDumpFrameLoadCallbacks())
-        dumpLoadEvent(frame, "didFinishDocumentLoadForFrame");
-
-    unsigned pendingFrameUnloadEvents = WKBundleFrameGetPendingUnloadCount(frame);
-    if (pendingFrameUnloadEvents) {
-        StringBuilder stringBuilder;
-        stringBuilder.append(frameToStr(frame));
-        stringBuilder.appendLiteral(" - has ");
-        stringBuilder.appendNumber(pendingFrameUnloadEvents);
-        stringBuilder.appendLiteral(" onunload handler(s)\n");
-        InjectedBundle::shared().outputText(stringBuilder.toString());
-    }
-}
-
-void InjectedBundlePage::didHandleOnloadEventsForFrame(WKBundleFrameRef frame)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return;
-
-    if (InjectedBundle::shared().testRunner()->shouldDumpFrameLoadCallbacks())
-        dumpLoadEvent(frame, "didHandleOnloadEventsForFrame");
-}
-
-void InjectedBundlePage::didDisplayInsecureContentForFrame(WKBundleFrameRef frame)
-{
-    if (InjectedBundle::shared().testRunner()->shouldDumpFrameLoadCallbacks())
-        InjectedBundle::shared().outputText("didDisplayInsecureContent\n");
-}
-
-void InjectedBundlePage::didRunInsecureContentForFrame(WKBundleFrameRef frame)
-{
-    if (InjectedBundle::shared().testRunner()->shouldDumpFrameLoadCallbacks())
-        InjectedBundle::shared().outputText("didRunInsecureContent\n");
-}
-
-void InjectedBundlePage::didDetectXSSForFrame(WKBundleFrameRef frame)
-{
-    if (InjectedBundle::shared().testRunner()->shouldDumpFrameLoadCallbacks())
-        InjectedBundle::shared().outputText("didDetectXSS\n");
-}
-
-void InjectedBundlePage::didInitiateLoadForResource(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier, WKURLRequestRef request, bool)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return;
-
-    if (!InjectedBundle::shared().testRunner()->shouldDumpResourceLoadCallbacks())
-        return;
-
-    WKRetainPtr<WKURLRef> url = adoptWK(WKURLRequestCopyURL(request));
-    assignedUrlsCache.add(identifier, pathSuitableForTestResult(url.get()));
-}
-
-// Resource Load Client Callbacks
-
-static inline bool isLocalHost(WKStringRef host)
-{
-    return WKStringIsEqualToUTF8CString(host, "127.0.0.1") || WKStringIsEqualToUTF8CString(host, "localhost");
-}
-
-static inline bool isHTTPOrHTTPSScheme(WKStringRef scheme)
-{
-    return WKStringIsEqualToUTF8CStringIgnoringCase(scheme, "http") || WKStringIsEqualToUTF8CStringIgnoringCase(scheme, "https");
-}
-
-WKURLRequestRef InjectedBundlePage::willSendRequestForFrame(WKBundlePageRef, WKBundleFrameRef frame, uint64_t identifier, WKURLRequestRef request, WKURLResponseRef response)
-{
-    if (InjectedBundle::shared().isTestRunning()
-        && InjectedBundle::shared().testRunner()->shouldDumpResourceLoadCallbacks()) {
-        StringBuilder stringBuilder;
-        dumpResourceURL(identifier, stringBuilder);
-        stringBuilder.appendLiteral(" - willSendRequest ");
-        dumpRequestDescriptionSuitableForTestResult(request, stringBuilder);
-        stringBuilder.appendLiteral(" redirectResponse ");
-        dumpResponseDescriptionSuitableForTestResult(response, stringBuilder);
-        stringBuilder.append('\n');
-        InjectedBundle::shared().outputText(stringBuilder.toString());
-    }
-
-    if (InjectedBundle::shared().isTestRunning() && InjectedBundle::shared().testRunner()->willSendRequestReturnsNull())
-        return 0;
-
-    WKRetainPtr<WKURLRef> redirectURL = adoptWK(WKURLResponseCopyURL(response));
-    if (InjectedBundle::shared().isTestRunning() && InjectedBundle::shared().testRunner()->willSendRequestReturnsNullOnRedirect() && redirectURL) {
-        InjectedBundle::shared().outputText("Returning null for this redirect\n");
-        return 0;
-    }
-
-    WKRetainPtr<WKURLRef> url = adoptWK(WKURLRequestCopyURL(request));
-    WKRetainPtr<WKStringRef> host = adoptWK(WKURLCopyHostName(url.get()));
-    WKRetainPtr<WKStringRef> scheme = adoptWK(WKURLCopyScheme(url.get()));
-    WKRetainPtr<WKStringRef> urlString = adoptWK(WKURLCopyString(url.get()));
-    if (host && !WKStringIsEmpty(host.get())
-        && isHTTPOrHTTPSScheme(scheme.get())
-        && !WKStringIsEqualToUTF8CString(host.get(), "255.255.255.255") // Used in some tests that expect to get back an error.
-        && !isLocalHost(host.get())) {
-        bool mainFrameIsExternal = false;
-        if (InjectedBundle::shared().isTestRunning()) {
-            WKBundleFrameRef mainFrame = InjectedBundle::shared().topLoadingFrame();
-            WKRetainPtr<WKURLRef> mainFrameURL = adoptWK(WKBundleFrameCopyURL(mainFrame));
-            if (!mainFrameURL || WKStringIsEqualToUTF8CString(adoptWK(WKURLCopyString(mainFrameURL.get())).get(), "about:blank"))
-                mainFrameURL = adoptWK(WKBundleFrameCopyProvisionalURL(mainFrame));
-
-            WKRetainPtr<WKStringRef> mainFrameHost = WKURLCopyHostName(mainFrameURL.get());
-            WKRetainPtr<WKStringRef> mainFrameScheme = WKURLCopyScheme(mainFrameURL.get());
-            mainFrameIsExternal = isHTTPOrHTTPSScheme(mainFrameScheme.get()) && !isLocalHost(mainFrameHost.get());
-        }
-        if (!mainFrameIsExternal) {
-            StringBuilder stringBuilder;
-            stringBuilder.appendLiteral("Blocked access to external URL ");
-            stringBuilder.append(toWTFString(urlString));
-            stringBuilder.append('\n');
-            InjectedBundle::shared().outputText(stringBuilder.toString());
-            return 0;
-        }
-    }
-
-    WKRetain(request);
-    return request;
-}
-
-void InjectedBundlePage::didReceiveResponseForResource(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier, WKURLResponseRef response)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return;
-
-    if (InjectedBundle::shared().testRunner()->shouldDumpResourceLoadCallbacks()) {
-        StringBuilder stringBuilder;
-        dumpResourceURL(identifier, stringBuilder);
-        stringBuilder.appendLiteral(" - didReceiveResponse ");
-        dumpResponseDescriptionSuitableForTestResult(response, stringBuilder);
-        stringBuilder.append('\n');
-        InjectedBundle::shared().outputText(stringBuilder.toString());
-    }
-
-
-    if (!InjectedBundle::shared().testRunner()->shouldDumpResourceResponseMIMETypes())
-        return;
-
-    WKRetainPtr<WKURLRef> url = adoptWK(WKURLResponseCopyURL(response));
-    WKRetainPtr<WKStringRef> urlString = adoptWK(WKURLCopyLastPathComponent(url.get()));
-    WKRetainPtr<WKStringRef> mimeTypeString = adoptWK(WKURLResponseCopyMIMEType(response));
-
-    StringBuilder stringBuilder;
-    stringBuilder.append(toWTFString(urlString));
-    stringBuilder.appendLiteral(" has MIME type ");
-    stringBuilder.append(toWTFString(mimeTypeString));
-    stringBuilder.append('\n');
-    InjectedBundle::shared().outputText(stringBuilder.toString());
-}
-
-void InjectedBundlePage::didReceiveContentLengthForResource(WKBundlePageRef, WKBundleFrameRef, uint64_t, uint64_t)
-{
-}
-
-void InjectedBundlePage::didFinishLoadForResource(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return;
-
-    if (!InjectedBundle::shared().testRunner()->shouldDumpResourceLoadCallbacks())
-        return;
-
-    StringBuilder stringBuilder;
-    dumpResourceURL(identifier, stringBuilder);
-    stringBuilder.appendLiteral(" - didFinishLoading\n");
-    InjectedBundle::shared().outputText(stringBuilder.toString());
-}
-
-void InjectedBundlePage::didFailLoadForResource(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier, WKErrorRef error)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return;
-
-    if (!InjectedBundle::shared().testRunner()->shouldDumpResourceLoadCallbacks())
-        return;
-
-    StringBuilder stringBuilder;
-    dumpResourceURL(identifier, stringBuilder);
-    stringBuilder.appendLiteral(" - didFailLoadingWithError: ");
-
-    dumpErrorDescriptionSuitableForTestResult(error, stringBuilder);
-    stringBuilder.append('\n');
-    InjectedBundle::shared().outputText(stringBuilder.toString());
-}
-
-bool InjectedBundlePage::shouldCacheResponse(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return true;
-
-    if (!InjectedBundle::shared().testRunner()->shouldDumpWillCacheResponse())
-        return true;
-
-    StringBuilder stringBuilder;
-    stringBuilder.appendNumber(identifier);
-    stringBuilder.appendLiteral(" - willCacheResponse: called\n");
-    InjectedBundle::shared().outputText(stringBuilder.toString());
-
-    // The default behavior is the cache the response.
-    return true;
-}
-
-
-// Policy Client Callbacks
-
-WKBundlePagePolicyAction InjectedBundlePage::decidePolicyForNavigationAction(WKBundlePageRef page, WKBundleFrameRef frame, WKBundleNavigationActionRef navigationAction, WKURLRequestRef request, WKTypeRef* userData, const void* clientInfo)
-{
-    return static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->decidePolicyForNavigationAction(page, frame, navigationAction, request, userData);
-}
-
-WKBundlePagePolicyAction InjectedBundlePage::decidePolicyForNewWindowAction(WKBundlePageRef page, WKBundleFrameRef frame, WKBundleNavigationActionRef navigationAction, WKURLRequestRef request, WKStringRef frameName, WKTypeRef* userData, const void* clientInfo)
-{
-    return static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->decidePolicyForNewWindowAction(page, frame, navigationAction, request, frameName, userData);
-}
-
-WKBundlePagePolicyAction InjectedBundlePage::decidePolicyForResponse(WKBundlePageRef page, WKBundleFrameRef frame, WKURLResponseRef response, WKURLRequestRef request, WKTypeRef* userData, const void* clientInfo)
-{
-    return static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->decidePolicyForResponse(page, frame, response, request, userData);
-}
-
-void InjectedBundlePage::unableToImplementPolicy(WKBundlePageRef page, WKBundleFrameRef frame, WKErrorRef error, WKTypeRef* userData, const void* clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->unableToImplementPolicy(page, frame, error, userData);
-}
-
-WKBundlePagePolicyAction InjectedBundlePage::decidePolicyForNavigationAction(WKBundlePageRef page, WKBundleFrameRef frame, WKBundleNavigationActionRef navigationAction, WKURLRequestRef request, WKTypeRef* userData)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return WKBundlePagePolicyActionUse;
-
-    if (!InjectedBundle::shared().testRunner()->isPolicyDelegateEnabled())
-        return WKBundlePagePolicyActionUse;
-
-    WKRetainPtr<WKURLRef> url = adoptWK(WKURLRequestCopyURL(request));
-    WKRetainPtr<WKStringRef> urlScheme = adoptWK(WKURLCopyScheme(url.get()));
-
-    StringBuilder stringBuilder;
-    stringBuilder.appendLiteral("Policy delegate: attempt to load ");
-    if (isLocalFileScheme(urlScheme.get())) {
-        WKRetainPtr<WKStringRef> filename = adoptWK(WKURLCopyLastPathComponent(url.get()));
-        stringBuilder.append(toWTFString(filename));
-    } else {
-        WKRetainPtr<WKStringRef> urlString = adoptWK(WKURLCopyString(url.get()));
-        stringBuilder.append(toWTFString(urlString));
-    }
-    stringBuilder.appendLiteral(" with navigation type \'");
-    stringBuilder.append(toWTFString(NavigationTypeToString(WKBundleNavigationActionGetNavigationType(navigationAction))));
-    stringBuilder.appendLiteral("\'");
-    WKBundleHitTestResultRef hitTestResultRef = WKBundleNavigationActionCopyHitTestResult(navigationAction);
-    if (hitTestResultRef) {
-        stringBuilder.appendLiteral(" originating from ");
-        stringBuilder.append(dumpPath(m_page, m_world.get(), WKBundleHitTestResultCopyNodeHandle(hitTestResultRef)));
-    }
-
-    stringBuilder.append('\n');
-    InjectedBundle::shared().outputText(stringBuilder.toString());
-    InjectedBundle::shared().testRunner()->notifyDone();
-
-    if (InjectedBundle::shared().testRunner()->isPolicyDelegatePermissive())
-        return WKBundlePagePolicyActionUse;
-    return WKBundlePagePolicyActionPassThrough;
-}
-
-WKBundlePagePolicyAction InjectedBundlePage::decidePolicyForNewWindowAction(WKBundlePageRef, WKBundleFrameRef, WKBundleNavigationActionRef, WKURLRequestRef, WKStringRef, WKTypeRef*)
-{
-    return WKBundlePagePolicyActionUse;
-}
-
-WKBundlePagePolicyAction InjectedBundlePage::decidePolicyForResponse(WKBundlePageRef page, WKBundleFrameRef, WKURLResponseRef response, WKURLRequestRef, WKTypeRef*)
-{
-    if (WKURLResponseIsAttachment(response)) {
-        StringBuilder stringBuilder;
-        WKRetainPtr<WKStringRef> filename = adoptWK(WKURLResponseCopySuggestedFilename(response));
-        stringBuilder.appendLiteral("Policy delegate: resource is an attachment, suggested file name \'");
-        stringBuilder.append(toWTFString(filename));
-        stringBuilder.appendLiteral("\'\n");
-        InjectedBundle::shared().outputText(stringBuilder.toString());
-    }
-
-    WKRetainPtr<WKStringRef> mimeType = adoptWK(WKURLResponseCopyMIMEType(response));
-    return WKBundlePageCanShowMIMEType(page, mimeType.get()) ? WKBundlePagePolicyActionUse : WKBundlePagePolicyActionPassThrough;
-}
-
-void InjectedBundlePage::unableToImplementPolicy(WKBundlePageRef, WKBundleFrameRef, WKErrorRef, WKTypeRef*)
-{
-}
-
-// UI Client Callbacks
-
-void InjectedBundlePage::willAddMessageToConsole(WKBundlePageRef page, WKStringRef message, uint32_t lineNumber, const void *clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->willAddMessageToConsole(message, lineNumber);
-}
-
-void InjectedBundlePage::willSetStatusbarText(WKBundlePageRef page, WKStringRef statusbarText, const void *clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->willSetStatusbarText(statusbarText);
-}
-
-void InjectedBundlePage::willRunJavaScriptAlert(WKBundlePageRef page, WKStringRef message, WKBundleFrameRef frame, const void *clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->willRunJavaScriptAlert(message, frame);
-}
-
-void InjectedBundlePage::willRunJavaScriptConfirm(WKBundlePageRef page, WKStringRef message, WKBundleFrameRef frame, const void *clientInfo)
-{
-    return static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->willRunJavaScriptConfirm(message, frame);
-}
-
-void InjectedBundlePage::willRunJavaScriptPrompt(WKBundlePageRef page, WKStringRef message, WKStringRef defaultValue, WKBundleFrameRef frame, const void *clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->willRunJavaScriptPrompt(message, defaultValue, frame);
-}
-
-void InjectedBundlePage::didReachApplicationCacheOriginQuota(WKBundlePageRef page, WKSecurityOriginRef origin, int64_t totalBytesNeeded, const void* clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didReachApplicationCacheOriginQuota(origin, totalBytesNeeded);
-}
-
-uint64_t InjectedBundlePage::didExceedDatabaseQuota(WKBundlePageRef page, WKSecurityOriginRef origin, WKStringRef databaseName, WKStringRef databaseDisplayName, uint64_t currentQuotaBytes, uint64_t currentOriginUsageBytes, uint64_t currentDatabaseUsageBytes, uint64_t expectedUsageBytes, const void* clientInfo)
-{
-    return static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didExceedDatabaseQuota(origin, databaseName, databaseDisplayName, currentQuotaBytes, currentOriginUsageBytes, currentDatabaseUsageBytes, expectedUsageBytes);
-}
-
-static WTF::String lastFileURLPathComponent(const WTF::String& path)
-{
-    size_t pos = path.find("file://");
-    ASSERT(WTF::notFound != pos);
-
-    WTF::String tmpPath = path.substring(pos + 7);
-    if (tmpPath.length() < 2) // Keep the lone slash to avoid empty output.
-        return tmpPath;
-
-    // Remove the trailing delimiter
-    if (tmpPath[tmpPath.length() - 1] == '/')
-        tmpPath.remove(tmpPath.length() - 1);
-
-    pos = tmpPath.reverseFind('/');
-    if (WTF::notFound != pos)
-        return tmpPath.substring(pos + 1);
-
-    return tmpPath;
-}
-
-void InjectedBundlePage::willAddMessageToConsole(WKStringRef message, uint32_t lineNumber)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return;
-
-    WTF::String messageString = toWTFString(message);
-    size_t nullCharPos = messageString.find(UChar(0));
-    if (nullCharPos != WTF::notFound)
-        messageString.truncate(nullCharPos);
-
-    size_t fileProtocolStart = messageString.find("file://");
-    if (fileProtocolStart != WTF::notFound)
-        // FIXME: The code below does not handle additional text after url nor multiple urls. This matches DumpRenderTree implementation.
-        messageString = messageString.substring(0, fileProtocolStart) + lastFileURLPathComponent(messageString.substring(fileProtocolStart));
-
-    StringBuilder stringBuilder;
-    stringBuilder.appendLiteral("CONSOLE MESSAGE: ");
-    if (lineNumber) {
-        stringBuilder.appendLiteral("line ");
-        stringBuilder.appendNumber(lineNumber);
-        stringBuilder.appendLiteral(": ");
-    }
-    stringBuilder.append(messageString);
-    stringBuilder.append('\n');
-    InjectedBundle::shared().outputText(stringBuilder.toString());
-}
-
-void InjectedBundlePage::willSetStatusbarText(WKStringRef statusbarText)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return;
-
-    if (!InjectedBundle::shared().testRunner()->shouldDumpStatusCallbacks())
-        return;
-
-    StringBuilder stringBuilder;
-    stringBuilder.appendLiteral("UI DELEGATE STATUS CALLBACK: setStatusText:");
-    stringBuilder.append(toWTFString(statusbarText));
-    stringBuilder.append('\n');
-    InjectedBundle::shared().outputText(stringBuilder.toString());
-}
-
-void InjectedBundlePage::willRunJavaScriptAlert(WKStringRef message, WKBundleFrameRef)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return;
-
-    StringBuilder stringBuilder;
-    stringBuilder.appendLiteral("ALERT: ");
-    stringBuilder.append(toWTFString(message));
-    stringBuilder.append('\n');
-    InjectedBundle::shared().outputText(stringBuilder.toString());
-}
-
-void InjectedBundlePage::willRunJavaScriptConfirm(WKStringRef message, WKBundleFrameRef)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return;
-
-    StringBuilder stringBuilder;
-    stringBuilder.appendLiteral("CONFIRM: ");
-    stringBuilder.append(toWTFString(message));
-    stringBuilder.append('\n');
-    InjectedBundle::shared().outputText(stringBuilder.toString());
-}
-
-void InjectedBundlePage::willRunJavaScriptPrompt(WKStringRef message, WKStringRef defaultValue, WKBundleFrameRef)
-{
-    StringBuilder stringBuilder;
-    stringBuilder.appendLiteral("PROMPT: ");
-    stringBuilder.append(toWTFString(message));
-    stringBuilder.appendLiteral(", default text: ");
-    stringBuilder.append(toWTFString(defaultValue));
-    stringBuilder.append('\n');
-    InjectedBundle::shared().outputText(stringBuilder.toString());
-}
-
-void InjectedBundlePage::didReachApplicationCacheOriginQuota(WKSecurityOriginRef origin, int64_t totalBytesNeeded)
-{
-    if (InjectedBundle::shared().testRunner()->shouldDumpApplicationCacheDelegateCallbacks()) {
-        // For example, numbers from 30000 - 39999 will output as 30000.
-        // Rounding up or down does not really matter for these tests. It's
-        // sufficient to just get a range of 10000 to determine if we were
-        // above or below a threshold.
-        int64_t truncatedSpaceNeeded = (totalBytesNeeded / 10000) * 10000;
-
-        StringBuilder stringBuilder;
-        stringBuilder.appendLiteral("UI DELEGATE APPLICATION CACHE CALLBACK: exceededApplicationCacheOriginQuotaForSecurityOrigin:");
-        stringBuilder.append(securityOriginToStr(origin));
-        stringBuilder.appendLiteral(" totalSpaceNeeded:~");
-        stringBuilder.appendNumber(truncatedSpaceNeeded);
-        stringBuilder.append('\n');
-        InjectedBundle::shared().outputText(stringBuilder.toString());
-    }
-
-    if (InjectedBundle::shared().testRunner()->shouldDisallowIncreaseForApplicationCacheQuota())
-        return;
-
-    // Reset default application cache quota.
-    WKBundleResetApplicationCacheOriginQuota(InjectedBundle::shared().bundle(), adoptWK(WKSecurityOriginCopyToString(origin)).get());
-}
-
-uint64_t InjectedBundlePage::didExceedDatabaseQuota(WKSecurityOriginRef origin, WKStringRef databaseName, WKStringRef databaseDisplayName, uint64_t currentQuotaBytes, uint64_t currentOriginUsageBytes, uint64_t currentDatabaseUsageBytes, uint64_t expectedUsageBytes)
-{
-    if (InjectedBundle::shared().testRunner()->shouldDumpDatabaseCallbacks()) {
-        StringBuilder stringBuilder;
-        stringBuilder.appendLiteral("UI DELEGATE DATABASE CALLBACK: exceededDatabaseQuotaForSecurityOrigin:");
-        stringBuilder.append(securityOriginToStr(origin));
-        stringBuilder.appendLiteral(" database:");
-        stringBuilder.append(toWTFString(databaseName));
-        stringBuilder.append('\n');
-        InjectedBundle::shared().outputText(stringBuilder.toString());
-    }
-
-    static const uint64_t defaultQuota = 5 * 1024 * 1024;
-    return defaultQuota;
-}
-
-// Editor Client Callbacks
-
-bool InjectedBundlePage::shouldBeginEditing(WKBundlePageRef page, WKBundleRangeHandleRef range, const void* clientInfo)
-{
-    return static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->shouldBeginEditing(range);
-}
-
-bool InjectedBundlePage::shouldEndEditing(WKBundlePageRef page, WKBundleRangeHandleRef range, const void* clientInfo)
-{
-    return static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->shouldEndEditing(range);
-}
-
-bool InjectedBundlePage::shouldInsertNode(WKBundlePageRef page, WKBundleNodeHandleRef node, WKBundleRangeHandleRef rangeToReplace, WKInsertActionType action, const void* clientInfo)
-{
-    return static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->shouldInsertNode(node, rangeToReplace, action);
-}
-
-bool InjectedBundlePage::shouldInsertText(WKBundlePageRef page, WKStringRef text, WKBundleRangeHandleRef rangeToReplace, WKInsertActionType action, const void* clientInfo)
-{
-    return static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->shouldInsertText(text, rangeToReplace, action);
-}
-
-bool InjectedBundlePage::shouldDeleteRange(WKBundlePageRef page, WKBundleRangeHandleRef range, const void* clientInfo)
-{
-    return static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->shouldDeleteRange(range);
-}
-
-bool InjectedBundlePage::shouldChangeSelectedRange(WKBundlePageRef page, WKBundleRangeHandleRef fromRange, WKBundleRangeHandleRef toRange, WKAffinityType affinity, bool stillSelecting, const void* clientInfo)
-{
-    return static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->shouldChangeSelectedRange(fromRange, toRange, affinity, stillSelecting);
-}
-
-bool InjectedBundlePage::shouldApplyStyle(WKBundlePageRef page, WKBundleCSSStyleDeclarationRef style, WKBundleRangeHandleRef range, const void* clientInfo)
-{
-    return static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->shouldApplyStyle(style, range);
-}
-
-void InjectedBundlePage::didBeginEditing(WKBundlePageRef page, WKStringRef notificationName, const void* clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didBeginEditing(notificationName);
-}
-
-void InjectedBundlePage::didEndEditing(WKBundlePageRef page, WKStringRef notificationName, const void* clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didEndEditing(notificationName);
-}
-
-void InjectedBundlePage::didChange(WKBundlePageRef page, WKStringRef notificationName, const void* clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didChange(notificationName);
-}
-
-void InjectedBundlePage::didChangeSelection(WKBundlePageRef page, WKStringRef notificationName, const void* clientInfo)
-{
-    static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didChangeSelection(notificationName);
-}
-
-bool InjectedBundlePage::shouldBeginEditing(WKBundleRangeHandleRef range)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return true;
-
-    if (InjectedBundle::shared().testRunner()->shouldDumpEditingCallbacks()) {
-        StringBuilder stringBuilder;
-        stringBuilder.appendLiteral("EDITING DELEGATE: shouldBeginEditingInDOMRange:");
-        stringBuilder.append(rangeToStr(m_page, m_world.get(), range));
-        stringBuilder.append('\n');
-        InjectedBundle::shared().outputText(stringBuilder.toString());
-    }
-    return InjectedBundle::shared().testRunner()->shouldAllowEditing();
-}
-
-bool InjectedBundlePage::shouldEndEditing(WKBundleRangeHandleRef range)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return true;
-
-    if (InjectedBundle::shared().testRunner()->shouldDumpEditingCallbacks()) {
-        StringBuilder stringBuilder;
-        stringBuilder.appendLiteral("EDITING DELEGATE: shouldEndEditingInDOMRange:");
-        stringBuilder.append(rangeToStr(m_page, m_world.get(), range));
-        stringBuilder.append('\n');
-        InjectedBundle::shared().outputText(stringBuilder.toString());
-    }
-    return InjectedBundle::shared().testRunner()->shouldAllowEditing();
-}
-
-bool InjectedBundlePage::shouldInsertNode(WKBundleNodeHandleRef node, WKBundleRangeHandleRef rangeToReplace, WKInsertActionType action)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return true;
-
-    static const char* insertactionstring[] = {
-        "WebViewInsertActionTyped",
-        "WebViewInsertActionPasted",
-        "WebViewInsertActionDropped",
-    };
-
-    if (InjectedBundle::shared().testRunner()->shouldDumpEditingCallbacks()) {
-        StringBuilder stringBuilder;
-        stringBuilder.appendLiteral("EDITING DELEGATE: shouldInsertNode:");
-        stringBuilder.append(dumpPath(m_page, m_world.get(), node));
-        stringBuilder.appendLiteral(" replacingDOMRange:");
-        stringBuilder.append(rangeToStr(m_page, m_world.get(), rangeToReplace));
-        stringBuilder.appendLiteral(" givenAction:");
-        stringBuilder.append(insertactionstring[action]);
-        stringBuilder.append('\n');
-        InjectedBundle::shared().outputText(stringBuilder.toString());
-    }
-    return InjectedBundle::shared().testRunner()->shouldAllowEditing();
-}
-
-bool InjectedBundlePage::shouldInsertText(WKStringRef text, WKBundleRangeHandleRef rangeToReplace, WKInsertActionType action)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return true;
-
-    static const char *insertactionstring[] = {
-        "WebViewInsertActionTyped",
-        "WebViewInsertActionPasted",
-        "WebViewInsertActionDropped",
-    };
-
-    if (InjectedBundle::shared().testRunner()->shouldDumpEditingCallbacks()) {
-        StringBuilder stringBuilder;
-        stringBuilder.appendLiteral("EDITING DELEGATE: shouldInsertText:");
-        stringBuilder.append(toWTFString(text));
-        stringBuilder.appendLiteral(" replacingDOMRange:");
-        stringBuilder.append(rangeToStr(m_page, m_world.get(), rangeToReplace));
-        stringBuilder.appendLiteral(" givenAction:");
-        stringBuilder.append(insertactionstring[action]);
-        stringBuilder.append('\n');
-        InjectedBundle::shared().outputText(stringBuilder.toString());
-    }
-    return InjectedBundle::shared().testRunner()->shouldAllowEditing();
-}
-
-bool InjectedBundlePage::shouldDeleteRange(WKBundleRangeHandleRef range)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return true;
-
-    if (InjectedBundle::shared().testRunner()->shouldDumpEditingCallbacks()) {
-        StringBuilder stringBuilder;
-        stringBuilder.appendLiteral("EDITING DELEGATE: shouldDeleteDOMRange:");
-        stringBuilder.append(rangeToStr(m_page, m_world.get(), range));
-        stringBuilder.append('\n');
-        InjectedBundle::shared().outputText(stringBuilder.toString());
-    }
-    return InjectedBundle::shared().testRunner()->shouldAllowEditing();
-}
-
-bool InjectedBundlePage::shouldChangeSelectedRange(WKBundleRangeHandleRef fromRange, WKBundleRangeHandleRef toRange, WKAffinityType affinity, bool stillSelecting)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return true;
-
-    static const char *affinitystring[] = {
-        "NSSelectionAffinityUpstream",
-        "NSSelectionAffinityDownstream"
-    };
-    static const char *boolstring[] = {
-        "FALSE",
-        "TRUE"
-    };
-
-    if (InjectedBundle::shared().testRunner()->shouldDumpEditingCallbacks()) {
-        StringBuilder stringBuilder;
-        stringBuilder.appendLiteral("EDITING DELEGATE: shouldChangeSelectedDOMRange:");
-        stringBuilder.append(rangeToStr(m_page, m_world.get(), fromRange));
-        stringBuilder.appendLiteral(" toDOMRange:");
-        stringBuilder.append(rangeToStr(m_page, m_world.get(), toRange));
-        stringBuilder.appendLiteral(" affinity:");
-        stringBuilder.append(affinitystring[affinity]); 
-        stringBuilder.appendLiteral(" stillSelecting:");
-        stringBuilder.append(boolstring[stillSelecting]); 
-        stringBuilder.append('\n');
-        InjectedBundle::shared().outputText(stringBuilder.toString());
-    }
-    return InjectedBundle::shared().testRunner()->shouldAllowEditing();
-}
-
-bool InjectedBundlePage::shouldApplyStyle(WKBundleCSSStyleDeclarationRef style, WKBundleRangeHandleRef range)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return true;
-
-    if (InjectedBundle::shared().testRunner()->shouldDumpEditingCallbacks()) {
-        StringBuilder stringBuilder;
-        stringBuilder.appendLiteral("EDITING DELEGATE: shouldApplyStyle:");
-        stringBuilder.append(styleDecToStr(style));
-        stringBuilder.appendLiteral(" toElementsInDOMRange:");
-        stringBuilder.append(rangeToStr(m_page, m_world.get(), range));
-        stringBuilder.append('\n');
-        InjectedBundle::shared().outputText(stringBuilder.toString());
-    }
-    return InjectedBundle::shared().testRunner()->shouldAllowEditing();
-}
-
-void InjectedBundlePage::didBeginEditing(WKStringRef notificationName)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return;
-    if (!InjectedBundle::shared().testRunner()->shouldDumpEditingCallbacks())
-        return;
-
-    StringBuilder stringBuilder;
-    stringBuilder.appendLiteral("EDITING DELEGATE: webViewDidBeginEditing:");
-    stringBuilder.append(toWTFString(notificationName));
-    stringBuilder.append('\n');
-    InjectedBundle::shared().outputText(stringBuilder.toString());
-}
-
-void InjectedBundlePage::didEndEditing(WKStringRef notificationName)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return;
-    if (!InjectedBundle::shared().testRunner()->shouldDumpEditingCallbacks())
-        return;
-
-    StringBuilder stringBuilder;
-    stringBuilder.appendLiteral("EDITING DELEGATE: webViewDidEndEditing:");
-    stringBuilder.append(toWTFString(notificationName));
-    stringBuilder.append('\n');
-    InjectedBundle::shared().outputText(stringBuilder.toString());
-}
-
-void InjectedBundlePage::didChange(WKStringRef notificationName)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return;
-    if (!InjectedBundle::shared().testRunner()->shouldDumpEditingCallbacks())
-        return;
-
-    StringBuilder stringBuilder;
-    stringBuilder.appendLiteral("EDITING DELEGATE: webViewDidChange:");
-    stringBuilder.append(toWTFString(notificationName));
-    stringBuilder.append('\n');
-    InjectedBundle::shared().outputText(stringBuilder.toString());
-}
-
-void InjectedBundlePage::didChangeSelection(WKStringRef notificationName)
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return;
-    if (!InjectedBundle::shared().testRunner()->shouldDumpEditingCallbacks())
-        return;
-
-    StringBuilder stringBuilder;
-    stringBuilder.appendLiteral("EDITING DELEGATE: webViewDidChangeSelection:");
-    stringBuilder.append(toWTFString(notificationName));
-    stringBuilder.append('\n');
-    InjectedBundle::shared().outputText(stringBuilder.toString());
-}
-
-#if ENABLE(FULLSCREEN_API)
-bool InjectedBundlePage::supportsFullScreen(WKBundlePageRef pageRef, WKFullScreenKeyboardRequestType requestType)
-{
-    if (InjectedBundle::shared().testRunner()->shouldDumpFullScreenCallbacks())
-        InjectedBundle::shared().outputText("supportsFullScreen() == true\n");
-    return true;
-}
-
-void InjectedBundlePage::enterFullScreenForElement(WKBundlePageRef pageRef, WKBundleNodeHandleRef elementRef)
-{
-    if (InjectedBundle::shared().testRunner()->shouldDumpFullScreenCallbacks())
-        InjectedBundle::shared().outputText("enterFullScreenForElement()\n");
-
-    if (!InjectedBundle::shared().testRunner()->hasCustomFullScreenBehavior()) {
-        WKBundlePageWillEnterFullScreen(pageRef);
-        WKBundlePageDidEnterFullScreen(pageRef);
-    }
-}
-
-void InjectedBundlePage::exitFullScreenForElement(WKBundlePageRef pageRef, WKBundleNodeHandleRef elementRef)
-{
-    if (InjectedBundle::shared().testRunner()->shouldDumpFullScreenCallbacks())
-        InjectedBundle::shared().outputText("exitFullScreenForElement()\n");
-
-    if (!InjectedBundle::shared().testRunner()->hasCustomFullScreenBehavior()) {
-        WKBundlePageWillExitFullScreen(pageRef);
-        WKBundlePageDidExitFullScreen(pageRef);
-    }
-}
-
-void InjectedBundlePage::beganEnterFullScreen(WKBundlePageRef, WKRect, WKRect)
-{
-    if (InjectedBundle::shared().testRunner()->shouldDumpFullScreenCallbacks())
-        InjectedBundle::shared().outputText("beganEnterFullScreen()\n");
-}
-
-void InjectedBundlePage::beganExitFullScreen(WKBundlePageRef, WKRect, WKRect)
-{
-    if (InjectedBundle::shared().testRunner()->shouldDumpFullScreenCallbacks())
-        InjectedBundle::shared().outputText("beganExitFullScreen()\n");
-}
-
-void InjectedBundlePage::closeFullScreen(WKBundlePageRef pageRef)
-{
-    if (InjectedBundle::shared().testRunner()->shouldDumpFullScreenCallbacks())
-        InjectedBundle::shared().outputText("closeFullScreen()\n");
-
-    if (!InjectedBundle::shared().testRunner()->hasCustomFullScreenBehavior()) {
-        WKBundlePageWillExitFullScreen(pageRef);
-        WKBundlePageDidExitFullScreen(pageRef);
-    }
-}
-#endif
-
-static bool compareByTargetName(WKBundleBackForwardListItemRef item1, WKBundleBackForwardListItemRef item2)
-{
-    return toSTD(adoptWK(WKBundleBackForwardListItemCopyTarget(item1))) < toSTD(adoptWK(WKBundleBackForwardListItemCopyTarget(item2)));
-}
-
-static void dumpBackForwardListItem(WKBundleBackForwardListItemRef item, unsigned indent, bool isCurrentItem, StringBuilder& stringBuilder)
-{
-    unsigned column = 0;
-    if (isCurrentItem) {
-        stringBuilder.appendLiteral("curr->");
-        column = 6;
-    }
-    for (unsigned i = column; i < indent; i++)
-        stringBuilder.append(' ');
-
-    WTF::String url = toWTFString(adoptWK(WKURLCopyString(adoptWK(WKBundleBackForwardListItemCopyURL(item)).get())));
-    if (hasPrefix(url, "file:")) {
-        WTF::String directoryName = "/LayoutTests/";
-        size_t start = url.find(directoryName);
-        if (start == WTF::notFound)
-            start = 0;
-        else
-            start += directoryName.length();
-        stringBuilder.appendLiteral("(file test):");
-        stringBuilder.append(url.substring(start));
-    } else
-        stringBuilder.append(url);
-
-    WTF::String target = toWTFString(adoptWK(WKBundleBackForwardListItemCopyTarget(item)));
-    if (target.length()) {
-        stringBuilder.appendLiteral(" (in frame \"");
-        stringBuilder.append(target);
-        stringBuilder.appendLiteral("\")");
-    }
-
-    // FIXME: Need WKBackForwardListItemIsTargetItem.
-    if (WKBundleBackForwardListItemIsTargetItem(item))
-        stringBuilder.appendLiteral("  **nav target**");
-
-    stringBuilder.append('\n');
-
-    if (WKRetainPtr<WKArrayRef> kids = adoptWK(WKBundleBackForwardListItemCopyChildren(item))) {
-        // Sort to eliminate arbitrary result ordering which defeats reproducible testing.
-        size_t size = WKArrayGetSize(kids.get());
-        Vector<WKBundleBackForwardListItemRef> sortedKids(size);
-        for (size_t i = 0; i < size; ++i)
-            sortedKids[i] = static_cast<WKBundleBackForwardListItemRef>(WKArrayGetItemAtIndex(kids.get(), i));
-        stable_sort(sortedKids.begin(), sortedKids.end(), compareByTargetName);
-        for (size_t i = 0; i < size; ++i)
-            dumpBackForwardListItem(sortedKids[i], indent + 4, false, stringBuilder);
-    }
-}
-
-void InjectedBundlePage::dumpBackForwardList(StringBuilder& stringBuilder)
-{
-    stringBuilder.appendLiteral("\n============== Back Forward List ==============\n");
-
-    WKBundleBackForwardListRef list = WKBundlePageGetBackForwardList(m_page);
-
-    // Print out all items in the list after m_previousTestBackForwardListItem.
-    // Gather items from the end of the list, then print them out from oldest to newest.
-    Vector<WKRetainPtr<WKBundleBackForwardListItemRef> > itemsToPrint;
-    for (unsigned i = WKBundleBackForwardListGetForwardListCount(list); i; --i) {
-        WKRetainPtr<WKBundleBackForwardListItemRef> item = adoptWK(WKBundleBackForwardListCopyItemAtIndex(list, i));
-        // Something is wrong if the item from the last test is in the forward part of the list.
-        ASSERT(!WKBundleBackForwardListItemIsSame(item.get(), m_previousTestBackForwardListItem.get()));
-        itemsToPrint.append(item);
-    }
-
-    ASSERT(!WKBundleBackForwardListItemIsSame(adoptWK(WKBundleBackForwardListCopyItemAtIndex(list, 0)).get(), m_previousTestBackForwardListItem.get()));
-
-    itemsToPrint.append(adoptWK(WKBundleBackForwardListCopyItemAtIndex(list, 0)));
-
-    int currentItemIndex = itemsToPrint.size() - 1;
-
-    int backListCount = WKBundleBackForwardListGetBackListCount(list);
-    for (int i = -1; i >= -backListCount; --i) {
-        WKRetainPtr<WKBundleBackForwardListItemRef> item = adoptWK(WKBundleBackForwardListCopyItemAtIndex(list, i));
-        if (WKBundleBackForwardListItemIsSame(item.get(), m_previousTestBackForwardListItem.get()))
-            break;
-        itemsToPrint.append(item);
-    }
-
-    for (int i = itemsToPrint.size() - 1; i >= 0; i--)
-        dumpBackForwardListItem(itemsToPrint[i].get(), 8, i == currentItemIndex, stringBuilder);
-
-    stringBuilder.appendLiteral("===============================================\n");
-}
-
-#if !PLATFORM(MAC)
-void InjectedBundlePage::platformDidStartProvisionalLoadForFrame(WKBundleFrameRef)
-{
-}
-#endif
-
-void InjectedBundlePage::frameDidChangeLocation(WKBundleFrameRef frame, bool shouldDump)
-{
-    if (frame != InjectedBundle::shared().topLoadingFrame())
-        return;
-
-    InjectedBundle::shared().setTopLoadingFrame(0);
-
-    if (InjectedBundle::shared().testRunner()->waitToDump())
-        return;
-
-    if (InjectedBundle::shared().shouldProcessWorkQueue()) {
-        InjectedBundle::shared().processWorkQueue();
-        return;
-    }
-
-    if (shouldDump)
-        InjectedBundle::shared().page()->dump();
-    else
-        InjectedBundle::shared().done();
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/InjectedBundle/InjectedBundlePage.h b/Tools/WebKitTestRunner/InjectedBundle/InjectedBundlePage.h
deleted file mode 100644
index 317294d..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/InjectedBundlePage.h
+++ /dev/null
@@ -1,181 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef InjectedBundlePage_h
-#define InjectedBundlePage_h
-
-#include <WebKit2/WKBundlePage.h>
-#include <WebKit2/WKBundleScriptWorld.h>
-#include <WebKit2/WKRetainPtr.h>
-#include <wtf/text/WTFString.h>
-
-namespace WTR {
-
-class InjectedBundlePage {
-public:
-    InjectedBundlePage(WKBundlePageRef);
-    ~InjectedBundlePage();
-
-    WKBundlePageRef page() const { return m_page; }
-
-    void dump();
-
-    void stopLoading();
-
-    void prepare();
-    void resetAfterTest();
-
-    void dumpBackForwardList(WTF::StringBuilder&);
-
-private:
-    // Loader Client
-    static void didStartProvisionalLoadForFrame(WKBundlePageRef, WKBundleFrameRef, WKTypeRef*, const void*);
-    static void didReceiveServerRedirectForProvisionalLoadForFrame(WKBundlePageRef, WKBundleFrameRef, WKTypeRef*, const void*);
-    static void didFailProvisionalLoadWithErrorForFrame(WKBundlePageRef, WKBundleFrameRef, WKErrorRef, WKTypeRef*, const void*);
-    static void didCommitLoadForFrame(WKBundlePageRef, WKBundleFrameRef, WKTypeRef*, const void*);
-    static void didFinishLoadForFrame(WKBundlePageRef, WKBundleFrameRef, WKTypeRef*, const void*);
-    static void didFinishProgress(WKBundlePageRef, const void*);
-    static void didFinishDocumentLoadForFrame(WKBundlePageRef, WKBundleFrameRef,  WKTypeRef*, const void*);
-    static void didFailLoadWithErrorForFrame(WKBundlePageRef, WKBundleFrameRef, WKErrorRef, WKTypeRef*, const void*);
-    static void didReceiveTitleForFrame(WKBundlePageRef, WKStringRef title, WKBundleFrameRef, WKTypeRef*, const void*);
-    static void didClearWindowForFrame(WKBundlePageRef, WKBundleFrameRef, WKBundleScriptWorldRef, const void*);
-    static void didCancelClientRedirectForFrame(WKBundlePageRef, WKBundleFrameRef, const void*);
-    static void willPerformClientRedirectForFrame(WKBundlePageRef, WKBundleFrameRef, WKURLRef url, double delay, double date, const void*);
-    static void didSameDocumentNavigationForFrame(WKBundlePageRef, WKBundleFrameRef, WKSameDocumentNavigationType, WKTypeRef*, const void*);
-    static void didHandleOnloadEventsForFrame(WKBundlePageRef, WKBundleFrameRef, const void*);
-    static void didDisplayInsecureContentForFrame(WKBundlePageRef, WKBundleFrameRef, WKTypeRef*, const void*);
-    static void didRunInsecureContentForFrame(WKBundlePageRef, WKBundleFrameRef, WKTypeRef*, const void*);
-    static void didDetectXSSForFrame(WKBundlePageRef, WKBundleFrameRef, WKTypeRef*, const void*);
-    static void didInitiateLoadForResource(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier, WKURLRequestRef, bool pageLoadIsProvisional, const void*);
-    static WKURLRequestRef willSendRequestForFrame(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier, WKURLRequestRef, WKURLResponseRef, const void*);
-    static void didReceiveResponseForResource(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier, WKURLResponseRef, const void*);
-    static void didReceiveContentLengthForResource(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier, uint64_t length, const void*);
-    static void didFinishLoadForResource(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier, const void*);
-    static void didFailLoadForResource(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier, WKErrorRef, const void*);
-    static bool shouldCacheResponse(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier, const void*);
-
-    void didStartProvisionalLoadForFrame(WKBundleFrameRef);
-    void didReceiveServerRedirectForProvisionalLoadForFrame(WKBundleFrameRef);
-    void didFailProvisionalLoadWithErrorForFrame(WKBundleFrameRef, WKErrorRef);
-    void didCommitLoadForFrame(WKBundleFrameRef);
-    void didFinishLoadForFrame(WKBundleFrameRef);
-    void didFinishProgress();
-    void didFailLoadWithErrorForFrame(WKBundleFrameRef, WKErrorRef);
-    void didReceiveTitleForFrame(WKStringRef title, WKBundleFrameRef);
-    void didClearWindowForFrame(WKBundleFrameRef, WKBundleScriptWorldRef);
-    void didCancelClientRedirectForFrame(WKBundleFrameRef);
-    void willPerformClientRedirectForFrame(WKBundleFrameRef, WKURLRef url, double delay, double date);
-    void didSameDocumentNavigationForFrame(WKBundleFrameRef, WKSameDocumentNavigationType);
-    void didFinishDocumentLoadForFrame(WKBundleFrameRef);
-    void didHandleOnloadEventsForFrame(WKBundleFrameRef);
-    void didDisplayInsecureContentForFrame(WKBundleFrameRef);
-    void didRunInsecureContentForFrame(WKBundleFrameRef);
-    void didDetectXSSForFrame(WKBundleFrameRef);
-
-    // Resource Load Client
-    void didInitiateLoadForResource(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier, WKURLRequestRef, bool pageLoadIsProvisional);
-    WKURLRequestRef willSendRequestForFrame(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier, WKURLRequestRef, WKURLResponseRef);
-    void didReceiveResponseForResource(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier, WKURLResponseRef);
-    void didReceiveContentLengthForResource(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier, uint64_t length);
-    void didFinishLoadForResource(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier);
-    void didFailLoadForResource(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier, WKErrorRef);
-    bool shouldCacheResponse(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier);
-
-    // WKBundlePagePolicyClient
-    static WKBundlePagePolicyAction decidePolicyForNavigationAction(WKBundlePageRef, WKBundleFrameRef, WKBundleNavigationActionRef, WKURLRequestRef, WKTypeRef*, const void*);
-    static WKBundlePagePolicyAction decidePolicyForNewWindowAction(WKBundlePageRef, WKBundleFrameRef, WKBundleNavigationActionRef, WKURLRequestRef, WKStringRef frameName, WKTypeRef*, const void*);
-    static WKBundlePagePolicyAction decidePolicyForResponse(WKBundlePageRef, WKBundleFrameRef, WKURLResponseRef, WKURLRequestRef, WKTypeRef*, const void*);
-    static void unableToImplementPolicy(WKBundlePageRef, WKBundleFrameRef, WKErrorRef, WKTypeRef*, const void*);
-    WKBundlePagePolicyAction decidePolicyForNavigationAction(WKBundlePageRef, WKBundleFrameRef, WKBundleNavigationActionRef, WKURLRequestRef, WKTypeRef*);
-    WKBundlePagePolicyAction decidePolicyForNewWindowAction(WKBundlePageRef, WKBundleFrameRef, WKBundleNavigationActionRef, WKURLRequestRef, WKStringRef frameName, WKTypeRef*);
-    WKBundlePagePolicyAction decidePolicyForResponse(WKBundlePageRef, WKBundleFrameRef, WKURLResponseRef, WKURLRequestRef, WKTypeRef*);
-    void unableToImplementPolicy(WKBundlePageRef, WKBundleFrameRef, WKErrorRef, WKTypeRef*);
-
-    // UI Client
-    static void willAddMessageToConsole(WKBundlePageRef, WKStringRef message, uint32_t lineNumber, const void* clientInfo);
-    static void willSetStatusbarText(WKBundlePageRef, WKStringRef statusbarText, const void* clientInfo);
-    static void willRunJavaScriptAlert(WKBundlePageRef, WKStringRef message, WKBundleFrameRef frame, const void* clientInfo);
-    static void willRunJavaScriptConfirm(WKBundlePageRef, WKStringRef message, WKBundleFrameRef frame, const void* clientInfo);
-    static void willRunJavaScriptPrompt(WKBundlePageRef, WKStringRef message, WKStringRef defaultValue, WKBundleFrameRef frame, const void* clientInfo);
-    static void didReachApplicationCacheOriginQuota(WKBundlePageRef, WKSecurityOriginRef, int64_t totalBytesNeeded, const void* clientInfo);
-    static uint64_t didExceedDatabaseQuota(WKBundlePageRef, WKSecurityOriginRef, WKStringRef databaseName, WKStringRef databaseDisplayName, uint64_t currentQuotaBytes, uint64_t currentOriginUsageBytes, uint64_t currentDatabaseUsageBytes, uint64_t expectedUsageBytes, const void* clientInfo);
-    void willAddMessageToConsole(WKStringRef message, uint32_t lineNumber);
-    void willSetStatusbarText(WKStringRef statusbarText);
-    void willRunJavaScriptAlert(WKStringRef message, WKBundleFrameRef);
-    void willRunJavaScriptConfirm(WKStringRef message, WKBundleFrameRef);
-    void willRunJavaScriptPrompt(WKStringRef message, WKStringRef defaultValue, WKBundleFrameRef);
-    void didReachApplicationCacheOriginQuota(WKSecurityOriginRef, int64_t totalBytesNeeded);
-    uint64_t didExceedDatabaseQuota(WKSecurityOriginRef, WKStringRef databaseName, WKStringRef databaseDisplayName, uint64_t currentQuotaBytes, uint64_t currentOriginUsageBytes, uint64_t currentDatabaseUsageBytes, uint64_t expectedUsageBytes);
-
-#if ENABLE(FULLSCREEN_API)
-    // Full Screen client
-    static bool supportsFullScreen(WKBundlePageRef, WKFullScreenKeyboardRequestType);
-    static void setHasCustomFullScreenBehavior(WKBundlePageRef, bool value);
-    static void enterFullScreenForElement(WKBundlePageRef, WKBundleNodeHandleRef element);
-    static void exitFullScreenForElement(WKBundlePageRef, WKBundleNodeHandleRef element);
-    static void beganEnterFullScreen(WKBundlePageRef, WKRect initialFrame, WKRect finalFrame);
-    static void beganExitFullScreen(WKBundlePageRef, WKRect initialFrame, WKRect finalFrame);
-    static void closeFullScreen(WKBundlePageRef);
-#endif
-
-    // Editor client
-    static bool shouldBeginEditing(WKBundlePageRef, WKBundleRangeHandleRef, const void* clientInfo);
-    static bool shouldEndEditing(WKBundlePageRef, WKBundleRangeHandleRef, const void* clientInfo);
-    static bool shouldInsertNode(WKBundlePageRef, WKBundleNodeHandleRef, WKBundleRangeHandleRef rangeToReplace, WKInsertActionType, const void* clientInfo);
-    static bool shouldInsertText(WKBundlePageRef, WKStringRef, WKBundleRangeHandleRef rangeToReplace, WKInsertActionType, const void* clientInfo);
-    static bool shouldDeleteRange(WKBundlePageRef, WKBundleRangeHandleRef, const void* clientInfo);
-    static bool shouldChangeSelectedRange(WKBundlePageRef, WKBundleRangeHandleRef fromRange, WKBundleRangeHandleRef toRange, WKAffinityType, bool stillSelecting, const void* clientInfo);
-    static bool shouldApplyStyle(WKBundlePageRef, WKBundleCSSStyleDeclarationRef style, WKBundleRangeHandleRef range, const void* clientInfo);
-    static void didBeginEditing(WKBundlePageRef, WKStringRef notificationName, const void* clientInfo);
-    static void didEndEditing(WKBundlePageRef, WKStringRef notificationName, const void* clientInfo);
-    static void didChange(WKBundlePageRef, WKStringRef notificationName, const void* clientInfo);
-    static void didChangeSelection(WKBundlePageRef, WKStringRef notificationName, const void* clientInfo);
-    bool shouldBeginEditing(WKBundleRangeHandleRef);
-    bool shouldEndEditing(WKBundleRangeHandleRef);
-    bool shouldInsertNode(WKBundleNodeHandleRef, WKBundleRangeHandleRef rangeToReplace, WKInsertActionType);
-    bool shouldInsertText(WKStringRef, WKBundleRangeHandleRef rangeToReplace, WKInsertActionType);
-    bool shouldDeleteRange(WKBundleRangeHandleRef);
-    bool shouldChangeSelectedRange(WKBundleRangeHandleRef fromRange, WKBundleRangeHandleRef toRange, WKAffinityType, bool stillSelecting);
-    bool shouldApplyStyle(WKBundleCSSStyleDeclarationRef style, WKBundleRangeHandleRef range);
-    void didBeginEditing(WKStringRef notificationName);
-    void didEndEditing(WKStringRef notificationName);
-    void didChange(WKStringRef notificationName);
-    void didChangeSelection(WKStringRef notificationName);
-
-    void dumpAllFramesText(WTF::StringBuilder&);
-    void dumpAllFrameScrollPositions(WTF::StringBuilder&);
-
-    void platformDidStartProvisionalLoadForFrame(WKBundleFrameRef);
-
-    void frameDidChangeLocation(WKBundleFrameRef, bool shouldDump = false);
-
-    WKBundlePageRef m_page;
-    WKRetainPtr<WKBundleScriptWorldRef> m_world;
-    WKRetainPtr<WKBundleBackForwardListItemRef> m_previousTestBackForwardListItem;
-};
-
-} // namespace WTR
-
-#endif // InjectedBundlePage_h
diff --git a/Tools/WebKitTestRunner/InjectedBundle/Target.pri b/Tools/WebKitTestRunner/InjectedBundle/Target.pri
deleted file mode 100644
index b009119..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/Target.pri
+++ /dev/null
@@ -1,72 +0,0 @@
-# -------------------------------------------------------------------
-# Project file for WebKitTestRunner's InjectedBundle
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-TEMPLATE = lib
-TARGET = WTRInjectedBundle
-
-SOURCES += \
-    AccessibilityController.cpp \
-    AccessibilityTextMarker.cpp \
-    AccessibilityTextMarkerRange.cpp \
-    AccessibilityUIElement.cpp \
-    InjectedBundle.cpp \
-    InjectedBundle.h \
-    InjectedBundleMain.cpp \
-    InjectedBundlePage.cpp \
-    InjectedBundlePage.h \
-    EventSendingController.cpp \
-    EventSendingController.h \
-    GCController.cpp \
-    GCController.h \
-    TestRunner.cpp \
-    TestRunner.h \
-    TextInputController.cpp \
-    TextInputController.h \
-    Bindings/JSWrapper.cpp \
-    qt/ActivateFontsQt.cpp \
-    qt/InjectedBundleQt.cpp \
-    qt/TestRunnerQt.cpp
-
-# Adds the generated sources to SOURCES
-include(DerivedSources.pri)
-
-HEADERS += \
-    AccessibilityController.h \
-    AccessibilityTextMarker.h \
-    AccessibilityTextMarkerRange.h \
-    AccessibilityUIElement.h \
-    ActivateFonts.h \
-    EventSendingController.h \
-    GCController.h \
-    InjectedBundle.h \
-    InjectedBundlePage.h \
-    TestRunner.h \
-    TextInputController.h \
-
-DESTDIR = $${ROOT_BUILD_DIR}/lib
-
-QT += widgets webkit
-
-WEBKIT += wtf javascriptcore webcore
-
-CONFIG += plugin rpath
-
-have?(FONTCONFIG): PKGCONFIG += fontconfig
-
-INCLUDEPATH += \
-    $$PWD \
-    $$PWD/.. \
-    $$PWD/Bindings \
-    $${ROOT_WEBKIT_DIR}/Source/WebCore/platform/qt \
-    $${ROOT_WEBKIT_DIR}/Source/WebCore/testing/js \
-    $${ROOT_WEBKIT_DIR}/Source/WebKit/qt/WebCoreSupport
-
-PREFIX_HEADER = $$PWD/../WebKitTestRunnerPrefix.h
-*-g++*:QMAKE_CXXFLAGS += "-include $$PREFIX_HEADER"
-
-linux-* {
-    QMAKE_LFLAGS += -Wl,--no-undefined
-}
diff --git a/Tools/WebKitTestRunner/InjectedBundle/TestRunner.cpp b/Tools/WebKitTestRunner/InjectedBundle/TestRunner.cpp
deleted file mode 100644
index 2cc8b49..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/TestRunner.cpp
+++ /dev/null
@@ -1,804 +0,0 @@
-/*
- * Copyright (C) 2010, 2011, 2012, 2013 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "TestRunner.h"
-
-#include "InjectedBundle.h"
-#include "InjectedBundlePage.h"
-#include "JSTestRunner.h"
-#include "PlatformWebView.h"
-#include "StringFunctions.h"
-#include "TestController.h"
-#include <WebKit2/WKBundle.h>
-#include <WebKit2/WKBundleBackForwardList.h>
-#include <WebKit2/WKBundleFrame.h>
-#include <WebKit2/WKBundleFramePrivate.h>
-#include <WebKit2/WKBundleInspector.h>
-#include <WebKit2/WKBundleNodeHandlePrivate.h>
-#include <WebKit2/WKBundlePage.h>
-#include <WebKit2/WKBundlePagePrivate.h>
-#include <WebKit2/WKBundlePrivate.h>
-#include <WebKit2/WKBundleScriptWorld.h>
-#include <WebKit2/WKData.h>
-#include <WebKit2/WKRetainPtr.h>
-#include <WebKit2/WKSerializedScriptValue.h>
-#include <WebKit2/WebKit2_C.h>
-#include <wtf/CurrentTime.h>
-#include <wtf/HashMap.h>
-#include <wtf/OwnArrayPtr.h>
-#include <wtf/PassOwnArrayPtr.h>
-#include <wtf/text/CString.h>
-#include <wtf/text/StringBuilder.h>
-
-namespace WTR {
-
-const double TestRunner::waitToDumpWatchdogTimerInterval = 30;
-
-PassRefPtr<TestRunner> TestRunner::create()
-{
-    return adoptRef(new TestRunner);
-}
-
-TestRunner::TestRunner()
-    : m_whatToDump(RenderTree)
-    , m_shouldDumpAllFrameScrollPositions(false)
-    , m_shouldDumpBackForwardListsForAllWindows(false)
-    , m_shouldAllowEditing(true)
-    , m_shouldCloseExtraWindows(false)
-    , m_dumpEditingCallbacks(false)
-    , m_dumpStatusCallbacks(false)
-    , m_dumpTitleChanges(false)
-    , m_dumpPixels(true)
-    , m_dumpSelectionRect(false)
-    , m_dumpFullScreenCallbacks(false)
-    , m_dumpFrameLoadCallbacks(false)
-    , m_dumpProgressFinishedCallback(false)
-    , m_dumpResourceLoadCallbacks(false)
-    , m_dumpResourceResponseMIMETypes(false)
-    , m_dumpWillCacheResponse(false)
-    , m_dumpApplicationCacheDelegateCallbacks(false)
-    , m_dumpDatabaseCallbacks(false)
-    , m_disallowIncreaseForApplicationCacheQuota(false)
-    , m_waitToDump(false)
-    , m_testRepaint(false)
-    , m_testRepaintSweepHorizontally(false)
-    , m_willSendRequestReturnsNull(false)
-    , m_willSendRequestReturnsNullOnRedirect(false)
-    , m_shouldStopProvisionalFrameLoads(false)
-    , m_policyDelegateEnabled(false)
-    , m_policyDelegatePermissive(false)
-    , m_globalFlag(false)
-    , m_customFullScreenBehavior(false)
-    , m_userStyleSheetEnabled(false)
-    , m_userStyleSheetLocation(adoptWK(WKStringCreateWithUTF8CString("")))
-{
-    platformInitialize();
-}
-
-TestRunner::~TestRunner()
-{
-}
-
-JSClassRef TestRunner::wrapperClass()
-{
-    return JSTestRunner::testRunnerClass();
-}
-
-void TestRunner::display()
-{
-    WKBundlePageRef page = InjectedBundle::shared().page()->page();
-    WKBundlePageForceRepaint(page);
-    WKBundlePageSetTracksRepaints(page, true);
-    WKBundlePageResetTrackedRepaints(page);
-}
-
-void TestRunner::dumpAsText(bool dumpPixels)
-{
-    if (m_whatToDump < MainFrameText)
-        m_whatToDump = MainFrameText;
-    m_dumpPixels = dumpPixels;
-}
-
-void TestRunner::setCustomPolicyDelegate(bool enabled, bool permissive)
-{
-    m_policyDelegateEnabled = enabled;
-    m_policyDelegatePermissive = permissive;
-
-    InjectedBundle::shared().setCustomPolicyDelegate(enabled, permissive);
-}
-
-void TestRunner::waitForPolicyDelegate()
-{
-    setCustomPolicyDelegate(true);
-    waitUntilDone();
-}
-
-void TestRunner::waitUntilDone()
-{
-    m_waitToDump = true;
-    if (InjectedBundle::shared().useWaitToDumpWatchdogTimer())
-        initializeWaitToDumpWatchdogTimerIfNeeded();
-}
-
-void TestRunner::waitToDumpWatchdogTimerFired()
-{
-    invalidateWaitToDumpWatchdogTimer();
-    InjectedBundle::shared().outputText("FAIL: Timed out waiting for notifyDone to be called\n\n");
-    InjectedBundle::shared().done();
-}
-
-void TestRunner::notifyDone()
-{
-    if (!InjectedBundle::shared().isTestRunning())
-        return;
-
-    if (m_waitToDump && !InjectedBundle::shared().topLoadingFrame())
-        InjectedBundle::shared().page()->dump();
-
-    m_waitToDump = false;
-}
-
-void TestRunner::setCustomTimeout(int timeout)
-{
-    m_timeout = timeout;
-}
-
-void TestRunner::addUserScript(JSStringRef source, bool runAtStart, bool allFrames)
-{
-    WKRetainPtr<WKStringRef> sourceWK = toWK(source);
-    WKRetainPtr<WKBundleScriptWorldRef> scriptWorld(AdoptWK, WKBundleScriptWorldCreateWorld());
-
-    WKBundleAddUserScript(InjectedBundle::shared().bundle(), InjectedBundle::shared().pageGroup(), scriptWorld.get(), sourceWK.get(), 0, 0, 0,
-        (runAtStart ? kWKInjectAtDocumentStart : kWKInjectAtDocumentEnd),
-        (allFrames ? kWKInjectInAllFrames : kWKInjectInTopFrameOnly));
-}
-
-void TestRunner::addUserStyleSheet(JSStringRef source, bool allFrames)
-{
-    WKRetainPtr<WKStringRef> sourceWK = toWK(source);
-    WKRetainPtr<WKBundleScriptWorldRef> scriptWorld(AdoptWK, WKBundleScriptWorldCreateWorld());
-
-    WKBundleAddUserStyleSheet(InjectedBundle::shared().bundle(), InjectedBundle::shared().pageGroup(), scriptWorld.get(), sourceWK.get(), 0, 0, 0,
-        (allFrames ? kWKInjectInAllFrames : kWKInjectInTopFrameOnly));
-}
-
-void TestRunner::keepWebHistory()
-{
-    WKBundleSetShouldTrackVisitedLinks(InjectedBundle::shared().bundle(), true);
-}
-
-void TestRunner::execCommand(JSStringRef name, JSStringRef argument)
-{
-    WKBundlePageExecuteEditingCommand(InjectedBundle::shared().page()->page(), toWK(name).get(), toWK(argument).get());
-}
-
-bool TestRunner::findString(JSStringRef target, JSValueRef optionsArrayAsValue)
-{
-    WKFindOptions options = 0;
-
-    WKBundleFrameRef mainFrame = WKBundlePageGetMainFrame(InjectedBundle::shared().page()->page());
-    JSContextRef context = WKBundleFrameGetJavaScriptContext(mainFrame);
-    JSRetainPtr<JSStringRef> lengthPropertyName(Adopt, JSStringCreateWithUTF8CString("length"));
-    JSObjectRef optionsArray = JSValueToObject(context, optionsArrayAsValue, 0);
-    JSValueRef lengthValue = JSObjectGetProperty(context, optionsArray, lengthPropertyName.get(), 0);
-    if (!JSValueIsNumber(context, lengthValue))
-        return false;
-
-    size_t length = static_cast<size_t>(JSValueToNumber(context, lengthValue, 0));
-    for (size_t i = 0; i < length; ++i) {
-        JSValueRef value = JSObjectGetPropertyAtIndex(context, optionsArray, i, 0);
-        if (!JSValueIsString(context, value))
-            continue;
-
-        JSRetainPtr<JSStringRef> optionName(Adopt, JSValueToStringCopy(context, value, 0));
-
-        if (JSStringIsEqualToUTF8CString(optionName.get(), "CaseInsensitive"))
-            options |= kWKFindOptionsCaseInsensitive;
-        else if (JSStringIsEqualToUTF8CString(optionName.get(), "AtWordStarts"))
-            options |= kWKFindOptionsAtWordStarts;
-        else if (JSStringIsEqualToUTF8CString(optionName.get(), "TreatMedialCapitalAsWordStart"))
-            options |= kWKFindOptionsTreatMedialCapitalAsWordStart;
-        else if (JSStringIsEqualToUTF8CString(optionName.get(), "Backwards"))
-            options |= kWKFindOptionsBackwards;
-        else if (JSStringIsEqualToUTF8CString(optionName.get(), "WrapAround"))
-            options |= kWKFindOptionsWrapAround;
-        else if (JSStringIsEqualToUTF8CString(optionName.get(), "StartInSelection")) {
-            // FIXME: No kWKFindOptionsStartInSelection.
-        }
-    }
-
-    return WKBundlePageFindString(InjectedBundle::shared().page()->page(), toWK(target).get(), options);
-}
-
-void TestRunner::clearAllDatabases()
-{
-    WKBundleClearAllDatabases(InjectedBundle::shared().bundle());
-}
-
-void TestRunner::setDatabaseQuota(uint64_t quota)
-{
-    return WKBundleSetDatabaseQuota(InjectedBundle::shared().bundle(), quota);
-}
-
-void TestRunner::clearAllApplicationCaches()
-{
-    WKBundleClearApplicationCache(InjectedBundle::shared().bundle());
-}
-
-void TestRunner::clearApplicationCacheForOrigin(JSStringRef origin)
-{
-    WKBundleClearApplicationCacheForOrigin(InjectedBundle::shared().bundle(), toWK(origin).get());
-}
-
-void TestRunner::setAppCacheMaximumSize(uint64_t size)
-{
-    WKBundleSetAppCacheMaximumSize(InjectedBundle::shared().bundle(), size);
-}
-
-long long TestRunner::applicationCacheDiskUsageForOrigin(JSStringRef origin)
-{
-    return WKBundleGetAppCacheUsageForOrigin(InjectedBundle::shared().bundle(), toWK(origin).get());
-}
-
-void TestRunner::setApplicationCacheOriginQuota(unsigned long long bytes)
-{
-    WKRetainPtr<WKStringRef> origin(AdoptWK, WKStringCreateWithUTF8CString("http://127.0.0.1:8000"));
-    WKBundleSetApplicationCacheOriginQuota(InjectedBundle::shared().bundle(), origin.get(), bytes);
-}
-
-void TestRunner::disallowIncreaseForApplicationCacheQuota()
-{
-    m_disallowIncreaseForApplicationCacheQuota = true;
-}
-
-static inline JSValueRef stringArrayToJS(JSContextRef context, WKArrayRef strings)
-{
-    const size_t count = WKArrayGetSize(strings);
-
-    OwnArrayPtr<JSValueRef> jsStringsArray = adoptArrayPtr(new JSValueRef[count]);
-    for (size_t i = 0; i < count; ++i) {
-        WKStringRef stringRef = static_cast<WKStringRef>(WKArrayGetItemAtIndex(strings, i));
-        JSRetainPtr<JSStringRef> stringJS = toJS(stringRef);
-        jsStringsArray[i] = JSValueMakeString(context, stringJS.get());
-    }
-
-    return JSObjectMakeArray(context, count, jsStringsArray.get(), 0);
-}
-
-JSValueRef TestRunner::originsWithApplicationCache()
-{
-    WKRetainPtr<WKArrayRef> origins(AdoptWK, WKBundleCopyOriginsWithApplicationCache(InjectedBundle::shared().bundle()));
-
-    WKBundleFrameRef mainFrame = WKBundlePageGetMainFrame(InjectedBundle::shared().page()->page());
-    JSContextRef context = WKBundleFrameGetJavaScriptContext(mainFrame);
-
-    return stringArrayToJS(context, origins.get());
-}
-
-bool TestRunner::isCommandEnabled(JSStringRef name)
-{
-    return WKBundlePageIsEditingCommandEnabled(InjectedBundle::shared().page()->page(), toWK(name).get());
-}
-
-void TestRunner::setCanOpenWindows(bool)
-{
-    // It's not clear if or why any tests require opening windows be forbidden.
-    // For now, just ignore this setting, and if we find later it's needed we can add it.
-}
-
-void TestRunner::setXSSAuditorEnabled(bool enabled)
-{
-    WKRetainPtr<WKStringRef> key(AdoptWK, WKStringCreateWithUTF8CString("WebKitXSSAuditorEnabled"));
-    WKBundleOverrideBoolPreferenceForTestRunner(InjectedBundle::shared().bundle(), InjectedBundle::shared().pageGroup(), key.get(), enabled);
-}
-
-void TestRunner::setAllowUniversalAccessFromFileURLs(bool enabled)
-{
-    WKBundleSetAllowUniversalAccessFromFileURLs(InjectedBundle::shared().bundle(), InjectedBundle::shared().pageGroup(), enabled);
-}
-
-void TestRunner::setAllowFileAccessFromFileURLs(bool enabled)
-{
-    WKBundleSetAllowFileAccessFromFileURLs(InjectedBundle::shared().bundle(), InjectedBundle::shared().pageGroup(), enabled);
-}
-
-void TestRunner::setPluginsEnabled(bool enabled)
-{
-    WKBundleSetPluginsEnabled(InjectedBundle::shared().bundle(), InjectedBundle::shared().pageGroup(), enabled);
-}
-
-void TestRunner::setJavaScriptCanAccessClipboard(bool enabled)
-{
-     WKBundleSetJavaScriptCanAccessClipboard(InjectedBundle::shared().bundle(), InjectedBundle::shared().pageGroup(), enabled);
-}
-
-void TestRunner::setPrivateBrowsingEnabled(bool enabled)
-{
-     WKBundleSetPrivateBrowsingEnabled(InjectedBundle::shared().bundle(), InjectedBundle::shared().pageGroup(), enabled);
-}
-
-void TestRunner::setPopupBlockingEnabled(bool enabled)
-{
-     WKBundleSetPopupBlockingEnabled(InjectedBundle::shared().bundle(), InjectedBundle::shared().pageGroup(), enabled);
-}
-
-void TestRunner::setAuthorAndUserStylesEnabled(bool enabled)
-{
-     WKBundleSetAuthorAndUserStylesEnabled(InjectedBundle::shared().bundle(), InjectedBundle::shared().pageGroup(), enabled);
-}
-
-void TestRunner::addOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef destinationProtocol, JSStringRef destinationHost, bool allowDestinationSubdomains)
-{
-    WKBundleAddOriginAccessWhitelistEntry(InjectedBundle::shared().bundle(), toWK(sourceOrigin).get(), toWK(destinationProtocol).get(), toWK(destinationHost).get(), allowDestinationSubdomains);
-}
-
-void TestRunner::removeOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef destinationProtocol, JSStringRef destinationHost, bool allowDestinationSubdomains)
-{
-    WKBundleRemoveOriginAccessWhitelistEntry(InjectedBundle::shared().bundle(), toWK(sourceOrigin).get(), toWK(destinationProtocol).get(), toWK(destinationHost).get(), allowDestinationSubdomains);
-}
-
-bool TestRunner::isPageBoxVisible(int pageIndex)
-{
-    WKBundleFrameRef mainFrame = WKBundlePageGetMainFrame(InjectedBundle::shared().page()->page());
-    return WKBundleIsPageBoxVisible(InjectedBundle::shared().bundle(), mainFrame, pageIndex);
-}
-
-void TestRunner::setValueForUser(JSContextRef context, JSValueRef element, JSStringRef value)
-{
-    if (!element || !JSValueIsObject(context, element))
-        return;
-
-    WKRetainPtr<WKBundleNodeHandleRef> nodeHandle(AdoptWK, WKBundleNodeHandleCreate(context, const_cast<JSObjectRef>(element)));
-    WKBundleNodeHandleSetHTMLInputElementValueForUser(nodeHandle.get(), toWK(value).get());
-}
-
-void TestRunner::setAudioData(JSContextRef context, JSValueRef data)
-{
-    WKRetainPtr<WKDataRef> audioData(AdoptWK, WKBundleCreateWKDataFromUInt8Array(InjectedBundle::shared().bundle(), context, data));
-    InjectedBundle::shared().setAudioResult(audioData.get());
-    m_whatToDump = Audio;
-}
-
-unsigned TestRunner::windowCount()
-{
-    return InjectedBundle::shared().pageCount();
-}
-
-void TestRunner::clearBackForwardList()
-{
-    WKBundleBackForwardListClear(WKBundlePageGetBackForwardList(InjectedBundle::shared().page()->page()));
-}
-
-// Object Creation
-
-void TestRunner::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception)
-{
-    setProperty(context, windowObject, "testRunner", this, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, exception);
-}
-
-void TestRunner::showWebInspector()
-{
-#if ENABLE(INSPECTOR)
-    WKBundleInspectorShow(WKBundlePageGetInspector(InjectedBundle::shared().page()->page()));
-#endif // ENABLE(INSPECTOR)
-}
-
-void TestRunner::closeWebInspector()
-{
-#if ENABLE(INSPECTOR)
-    WKBundleInspectorClose(WKBundlePageGetInspector(InjectedBundle::shared().page()->page()));
-#endif // ENABLE(INSPECTOR)
-}
-
-void TestRunner::evaluateInWebInspector(long callID, JSStringRef script)
-{
-#if ENABLE(INSPECTOR)
-    WKRetainPtr<WKStringRef> scriptWK = toWK(script);
-    WKBundleInspectorEvaluateScriptForTest(WKBundlePageGetInspector(InjectedBundle::shared().page()->page()), callID, scriptWK.get());
-#endif // ENABLE(INSPECTOR)
-}
-
-typedef WTF::HashMap<unsigned, WKRetainPtr<WKBundleScriptWorldRef> > WorldMap;
-static WorldMap& worldMap()
-{
-    static WorldMap& map = *new WorldMap;
-    return map;
-}
-
-unsigned TestRunner::worldIDForWorld(WKBundleScriptWorldRef world)
-{
-    WorldMap::const_iterator end = worldMap().end();
-    for (WorldMap::const_iterator it = worldMap().begin(); it != end; ++it) {
-        if (it->value == world)
-            return it->key;
-    }
-
-    return 0;
-}
-
-void TestRunner::evaluateScriptInIsolatedWorld(JSContextRef context, unsigned worldID, JSStringRef script)
-{
-    // A worldID of 0 always corresponds to a new world. Any other worldID corresponds to a world
-    // that is created once and cached forever.
-    WKRetainPtr<WKBundleScriptWorldRef> world;
-    if (!worldID)
-        world.adopt(WKBundleScriptWorldCreateWorld());
-    else {
-        WKRetainPtr<WKBundleScriptWorldRef>& worldSlot = worldMap().add(worldID, 0).iterator->value;
-        if (!worldSlot)
-            worldSlot.adopt(WKBundleScriptWorldCreateWorld());
-        world = worldSlot;
-    }
-
-    WKBundleFrameRef frame = WKBundleFrameForJavaScriptContext(context);
-    if (!frame)
-        frame = WKBundlePageGetMainFrame(InjectedBundle::shared().page()->page());
-
-    JSGlobalContextRef jsContext = WKBundleFrameGetJavaScriptContextForWorld(frame, world.get());
-    JSEvaluateScript(jsContext, script, 0, 0, 0, 0); 
-}
-
-void TestRunner::setPOSIXLocale(JSStringRef locale)
-{
-    char localeBuf[32];
-    JSStringGetUTF8CString(locale, localeBuf, sizeof(localeBuf));
-    setlocale(LC_ALL, localeBuf);
-}
-
-void TestRunner::setTextDirection(JSStringRef direction)
-{
-    WKBundleFrameRef mainFrame = WKBundlePageGetMainFrame(InjectedBundle::shared().page()->page());
-    return WKBundleFrameSetTextDirection(mainFrame, toWK(direction).get());
-}
-    
-void TestRunner::setShouldStayOnPageAfterHandlingBeforeUnload(bool shouldStayOnPage)
-{
-    InjectedBundle::shared().postNewBeforeUnloadReturnValue(!shouldStayOnPage);
-}
-
-void TestRunner::setDefersLoading(bool shouldDeferLoading)
-{
-    WKBundlePageSetDefersLoading(InjectedBundle::shared().page()->page(), shouldDeferLoading);
-}
-
-void TestRunner::setPageVisibility(JSStringRef state)
-{
-    WKPageVisibilityState visibilityState = kWKPageVisibilityStateVisible;
-
-    if (JSStringIsEqualToUTF8CString(state, "hidden"))
-        visibilityState = kWKPageVisibilityStateHidden;
-    else if (JSStringIsEqualToUTF8CString(state, "prerender"))
-        visibilityState = kWKPageVisibilityStatePrerender;
-    else if (JSStringIsEqualToUTF8CString(state, "preview"))
-        visibilityState = kWKPageVisibilityStatePreview;
-
-    InjectedBundle::shared().setVisibilityState(visibilityState, false);
-}
-
-void TestRunner::resetPageVisibility()
-{
-    InjectedBundle::shared().setVisibilityState(kWKPageVisibilityStateVisible, true);
-}
-
-typedef WTF::HashMap<unsigned, JSValueRef> CallbackMap;
-static CallbackMap& callbackMap()
-{
-    static CallbackMap& map = *new CallbackMap;
-    return map;
-}
-
-enum {
-    AddChromeInputFieldCallbackID = 1,
-    RemoveChromeInputFieldCallbackID,
-    FocusWebViewCallbackID,
-    SetBackingScaleFactorCallbackID
-};
-
-static void cacheTestRunnerCallback(unsigned index, JSValueRef callback)
-{
-    if (!callback)
-        return;
-
-    WKBundleFrameRef mainFrame = WKBundlePageGetMainFrame(InjectedBundle::shared().page()->page());
-    JSContextRef context = WKBundleFrameGetJavaScriptContext(mainFrame);
-    JSValueProtect(context, callback);
-    callbackMap().add(index, callback);
-}
-
-static void callTestRunnerCallback(unsigned index)
-{
-    if (!callbackMap().contains(index))
-        return;
-    WKBundleFrameRef mainFrame = WKBundlePageGetMainFrame(InjectedBundle::shared().page()->page());
-    JSContextRef context = WKBundleFrameGetJavaScriptContext(mainFrame);
-    JSObjectRef callback = JSValueToObject(context, callbackMap().take(index), 0);
-    JSObjectCallAsFunction(context, callback, JSContextGetGlobalObject(context), 0, 0, 0);
-    JSValueUnprotect(context, callback);
-}
-
-void TestRunner::addChromeInputField(JSValueRef callback)
-{
-    cacheTestRunnerCallback(AddChromeInputFieldCallbackID, callback);
-    InjectedBundle::shared().postAddChromeInputField();
-}
-
-void TestRunner::removeChromeInputField(JSValueRef callback)
-{
-    cacheTestRunnerCallback(RemoveChromeInputFieldCallbackID, callback);
-    InjectedBundle::shared().postRemoveChromeInputField();
-}
-
-void TestRunner::focusWebView(JSValueRef callback)
-{
-    cacheTestRunnerCallback(FocusWebViewCallbackID, callback);
-    InjectedBundle::shared().postFocusWebView();
-}
-
-void TestRunner::setBackingScaleFactor(double backingScaleFactor, JSValueRef callback)
-{
-    cacheTestRunnerCallback(SetBackingScaleFactorCallbackID, callback);
-    InjectedBundle::shared().postSetBackingScaleFactor(backingScaleFactor);
-}
-
-void TestRunner::setWindowIsKey(bool isKey)
-{
-    InjectedBundle::shared().postSetWindowIsKey(isKey);
-}
-
-void TestRunner::callAddChromeInputFieldCallback()
-{
-    callTestRunnerCallback(AddChromeInputFieldCallbackID);
-}
-
-void TestRunner::callRemoveChromeInputFieldCallback()
-{
-    callTestRunnerCallback(RemoveChromeInputFieldCallbackID);
-}
-
-void TestRunner::callFocusWebViewCallback()
-{
-    callTestRunnerCallback(FocusWebViewCallbackID);
-}
-
-void TestRunner::callSetBackingScaleFactorCallback()
-{
-    callTestRunnerCallback(SetBackingScaleFactorCallbackID);
-}
-
-static inline bool toBool(JSStringRef value)
-{
-    return JSStringIsEqualToUTF8CString(value, "true") || JSStringIsEqualToUTF8CString(value, "1");
-}
-
-void TestRunner::overridePreference(JSStringRef preference, JSStringRef value)
-{
-    // FIXME: handle non-boolean preferences.
-    WKBundleOverrideBoolPreferenceForTestRunner(InjectedBundle::shared().bundle(), InjectedBundle::shared().pageGroup(), toWK(preference).get(), toBool(value));
-}
-
-void TestRunner::setAlwaysAcceptCookies(bool accept)
-{
-    WKBundleSetAlwaysAcceptCookies(InjectedBundle::shared().bundle(), accept);
-}
-
-double TestRunner::preciseTime()
-{
-    return currentTime();
-}
-
-void TestRunner::setUserStyleSheetEnabled(bool enabled)
-{
-    m_userStyleSheetEnabled = enabled;
-
-    WKRetainPtr<WKStringRef> emptyUrl = adoptWK(WKStringCreateWithUTF8CString(""));
-    WKStringRef location = enabled ? m_userStyleSheetLocation.get() : emptyUrl.get();
-    WKBundleSetUserStyleSheetLocation(InjectedBundle::shared().bundle(), InjectedBundle::shared().pageGroup(), location);
-}
-
-void TestRunner::setUserStyleSheetLocation(JSStringRef location)
-{
-    m_userStyleSheetLocation = adoptWK(WKStringCreateWithJSString(location));
-
-    if (m_userStyleSheetEnabled)
-        setUserStyleSheetEnabled(true);
-}
-
-void TestRunner::setSpatialNavigationEnabled(bool enabled)
-{
-    WKBundleSetSpatialNavigationEnabled(InjectedBundle::shared().bundle(), InjectedBundle::shared().pageGroup(), enabled);
-}
-
-void TestRunner::setTabKeyCyclesThroughElements(bool enabled)
-{
-    WKBundleSetTabKeyCyclesThroughElements(InjectedBundle::shared().bundle(), InjectedBundle::shared().page()->page(), enabled);
-}
-
-void TestRunner::setSerializeHTTPLoads()
-{
-    WKBundleSetSerialLoadingEnabled(InjectedBundle::shared().bundle(), true);
-}
-
-void TestRunner::dispatchPendingLoadRequests()
-{
-    WKBundleDispatchPendingLoadRequests(InjectedBundle::shared().bundle());
-}
-
-void TestRunner::setCacheModel(int model)
-{
-    WKBundleSetCacheModel(InjectedBundle::shared().bundle(), model);
-}
-
-void TestRunner::setAsynchronousSpellCheckingEnabled(bool enabled)
-{
-    WKBundleSetAsynchronousSpellCheckingEnabled(InjectedBundle::shared().bundle(), InjectedBundle::shared().pageGroup(), enabled);
-}
-
-void TestRunner::grantWebNotificationPermission(JSStringRef origin)
-{
-    WKRetainPtr<WKStringRef> originWK = toWK(origin);
-    WKBundleSetWebNotificationPermission(InjectedBundle::shared().bundle(), InjectedBundle::shared().page()->page(), originWK.get(), true);
-}
-
-void TestRunner::denyWebNotificationPermission(JSStringRef origin)
-{
-    WKRetainPtr<WKStringRef> originWK = toWK(origin);
-    WKBundleSetWebNotificationPermission(InjectedBundle::shared().bundle(), InjectedBundle::shared().page()->page(), originWK.get(), false);
-}
-
-void TestRunner::removeAllWebNotificationPermissions()
-{
-    WKBundleRemoveAllWebNotificationPermissions(InjectedBundle::shared().bundle(), InjectedBundle::shared().page()->page());
-}
-
-void TestRunner::simulateWebNotificationClick(JSValueRef notification)
-{
-    WKBundleFrameRef mainFrame = WKBundlePageGetMainFrame(InjectedBundle::shared().page()->page());
-    JSContextRef context = WKBundleFrameGetJavaScriptContext(mainFrame);
-    uint64_t notificationID = WKBundleGetWebNotificationID(InjectedBundle::shared().bundle(), context, notification);
-    InjectedBundle::shared().postSimulateWebNotificationClick(notificationID);
-}
-
-void TestRunner::setGeolocationPermission(bool enabled)
-{
-    // FIXME: this should be done by frame.
-    InjectedBundle::shared().setGeolocationPermission(enabled);
-}
-
-void TestRunner::setMockGeolocationPosition(double latitude, double longitude, double accuracy, JSValueRef jsAltitude, JSValueRef jsAltitudeAccuracy, JSValueRef jsHeading, JSValueRef jsSpeed)
-{
-    WKBundleFrameRef mainFrame = WKBundlePageGetMainFrame(InjectedBundle::shared().page()->page());
-    JSContextRef context = WKBundleFrameGetJavaScriptContext(mainFrame);
-
-    bool providesAltitude = false;
-    double altitude = 0.;
-    if (!JSValueIsUndefined(context, jsAltitude)) {
-        providesAltitude = true;
-        altitude = JSValueToNumber(context, jsAltitude, 0);
-    }
-
-    bool providesAltitudeAccuracy = false;
-    double altitudeAccuracy = 0.;
-    if (!JSValueIsUndefined(context, jsAltitudeAccuracy)) {
-        providesAltitudeAccuracy = true;
-        altitudeAccuracy = JSValueToNumber(context, jsAltitudeAccuracy, 0);
-    }
-
-    bool providesHeading = false;
-    double heading = 0.;
-    if (!JSValueIsUndefined(context, jsHeading)) {
-        providesHeading = true;
-        heading = JSValueToNumber(context, jsHeading, 0);
-    }
-
-    bool providesSpeed = false;
-    double speed = 0.;
-    if (!JSValueIsUndefined(context, jsSpeed)) {
-        providesSpeed = true;
-        speed = JSValueToNumber(context, jsSpeed, 0);
-    }
-
-    InjectedBundle::shared().setMockGeolocationPosition(latitude, longitude, accuracy, providesAltitude, altitude, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed);
-}
-
-void TestRunner::setMockGeolocationPositionUnavailableError(JSStringRef message)
-{
-    WKRetainPtr<WKStringRef> messageWK = toWK(message);
-    InjectedBundle::shared().setMockGeolocationPositionUnavailableError(messageWK.get());
-}
-
-bool TestRunner::callShouldCloseOnWebView()
-{
-    WKBundleFrameRef mainFrame = WKBundlePageGetMainFrame(InjectedBundle::shared().page()->page());
-    return WKBundleFrameCallShouldCloseOnWebView(mainFrame);
-}
-
-void TestRunner::queueBackNavigation(unsigned howFarBackward)
-{
-    InjectedBundle::shared().queueBackNavigation(howFarBackward);
-}
-
-void TestRunner::queueForwardNavigation(unsigned howFarForward)
-{
-    InjectedBundle::shared().queueForwardNavigation(howFarForward);
-}
-
-void TestRunner::queueLoad(JSStringRef url, JSStringRef target)
-{
-    WKRetainPtr<WKURLRef> baseURLWK(AdoptWK, WKBundleFrameCopyURL(WKBundlePageGetMainFrame(InjectedBundle::shared().page()->page())));
-    WKRetainPtr<WKURLRef> urlWK(AdoptWK, WKURLCreateWithBaseURL(baseURLWK.get(), toWTFString(toWK(url)).utf8().data()));
-    WKRetainPtr<WKStringRef> urlStringWK(AdoptWK, WKURLCopyString(urlWK.get()));
-
-    InjectedBundle::shared().queueLoad(urlStringWK.get(), toWK(target).get());
-}
-
-void TestRunner::queueLoadHTMLString(JSStringRef content, JSStringRef baseURL, JSStringRef unreachableURL)
-{
-    WKRetainPtr<WKStringRef> contentWK = toWK(content);
-    WKRetainPtr<WKStringRef> baseURLWK = baseURL ? toWK(baseURL) : WKRetainPtr<WKStringRef>();
-    WKRetainPtr<WKStringRef> unreachableURLWK = unreachableURL ? toWK(unreachableURL) : WKRetainPtr<WKStringRef>();
-
-    InjectedBundle::shared().queueLoadHTMLString(contentWK.get(), baseURLWK.get(), unreachableURLWK.get());
-}
-
-void TestRunner::queueReload()
-{
-    InjectedBundle::shared().queueReload();
-}
-
-void TestRunner::queueLoadingScript(JSStringRef script)
-{
-    WKRetainPtr<WKStringRef> scriptWK = toWK(script);
-    InjectedBundle::shared().queueLoadingScript(scriptWK.get());
-}
-
-void TestRunner::queueNonLoadingScript(JSStringRef script)
-{
-    WKRetainPtr<WKStringRef> scriptWK = toWK(script);
-    InjectedBundle::shared().queueNonLoadingScript(scriptWK.get());
-}
-
-void TestRunner::setHandlesAuthenticationChallenges(bool handlesAuthenticationChallenges)
-{
-    WKRetainPtr<WKStringRef> messageName(AdoptWK, WKStringCreateWithUTF8CString("SetHandlesAuthenticationChallenge"));
-    WKRetainPtr<WKBooleanRef> messageBody(AdoptWK, WKBooleanCreate(handlesAuthenticationChallenges));
-    WKBundlePostMessage(InjectedBundle::shared().bundle(), messageName.get(), messageBody.get());
-}
-
-void TestRunner::setAuthenticationUsername(JSStringRef username)
-{
-    WKRetainPtr<WKStringRef> messageName(AdoptWK, WKStringCreateWithUTF8CString("SetAuthenticationUsername"));
-    WKRetainPtr<WKStringRef> messageBody(AdoptWK, WKStringCreateWithJSString(username));
-    WKBundlePostMessage(InjectedBundle::shared().bundle(), messageName.get(), messageBody.get());
-}
-
-void TestRunner::setAuthenticationPassword(JSStringRef password)
-{
-    WKRetainPtr<WKStringRef> messageName(AdoptWK, WKStringCreateWithUTF8CString("SetAuthenticationPassword"));
-    WKRetainPtr<WKStringRef> messageBody(AdoptWK, WKStringCreateWithJSString(password));
-    WKBundlePostMessage(InjectedBundle::shared().bundle(), messageName.get(), messageBody.get());
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/InjectedBundle/TestRunner.h b/Tools/WebKitTestRunner/InjectedBundle/TestRunner.h
deleted file mode 100644
index f249ae6..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/TestRunner.h
+++ /dev/null
@@ -1,326 +0,0 @@
-/*
- * Copyright (C) 2010, 2011, 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef TestRunner_h
-#define TestRunner_h
-
-#include "JSWrappable.h"
-#include <JavaScriptCore/JSRetainPtr.h>
-#include <WebKit2/WKBundleScriptWorld.h>
-#include <WebKit2/WKRetainPtr.h>
-#include <string>
-#include <wtf/PassRefPtr.h>
-
-#if PLATFORM(MAC)
-#include <wtf/RetainPtr.h>
-#include <CoreFoundation/CFRunLoop.h>
-typedef RetainPtr<CFRunLoopTimerRef> PlatformTimerRef;
-#elif PLATFORM(WIN)
-typedef UINT_PTR PlatformTimerRef;
-#elif PLATFORM(QT)
-#include <QTimer>
-typedef QTimer PlatformTimerRef;
-#elif PLATFORM(GTK)
-typedef unsigned int PlatformTimerRef;
-#elif PLATFORM(EFL)
-#if USE(EO)
-typedef struct _Eo Ecore_Timer;
-#else
-typedef struct _Ecore_Timer Ecore_Timer;
-#endif
-typedef Ecore_Timer* PlatformTimerRef;
-#endif
-
-namespace WTR {
-
-class TestRunner : public JSWrappable {
-public:
-    static PassRefPtr<TestRunner> create();
-    virtual ~TestRunner();
-
-    // JSWrappable
-    virtual JSClassRef wrapperClass();
-
-    void makeWindowObject(JSContextRef, JSObjectRef windowObject, JSValueRef* exception);
-
-    // The basics.
-    void dumpAsText(bool dumpPixels);
-    void waitForPolicyDelegate();
-    void dumpChildFramesAsText() { m_whatToDump = AllFramesText; }
-    void waitUntilDone();
-    void notifyDone();
-    double preciseTime();
-
-    // Other dumping.
-    void dumpBackForwardList() { m_shouldDumpBackForwardListsForAllWindows = true; }
-    void dumpChildFrameScrollPositions() { m_shouldDumpAllFrameScrollPositions = true; }
-    void dumpEditingCallbacks() { m_dumpEditingCallbacks = true; }
-    void dumpSelectionRect() { m_dumpSelectionRect = true; }
-    void dumpStatusCallbacks() { m_dumpStatusCallbacks = true; }
-    void dumpTitleChanges() { m_dumpTitleChanges = true; }
-    void dumpFullScreenCallbacks() { m_dumpFullScreenCallbacks = true; }
-    void dumpFrameLoadCallbacks() { setShouldDumpFrameLoadCallbacks(true); }
-    void dumpProgressFinishedCallback() { setShouldDumpProgressFinishedCallback(true); }
-    void dumpResourceLoadCallbacks() { m_dumpResourceLoadCallbacks = true; }
-    void dumpResourceResponseMIMETypes() { m_dumpResourceResponseMIMETypes = true; }
-    void dumpWillCacheResponse() { m_dumpWillCacheResponse = true; }
-    void dumpApplicationCacheDelegateCallbacks() { m_dumpApplicationCacheDelegateCallbacks = true; }
-    void dumpDatabaseCallbacks() { m_dumpDatabaseCallbacks = true; }
-
-    void setShouldDumpFrameLoadCallbacks(bool value) { m_dumpFrameLoadCallbacks = value; }
-    void setShouldDumpProgressFinishedCallback(bool value) { m_dumpProgressFinishedCallback = value; }
-
-    // Special options.
-    void keepWebHistory();
-    void setAcceptsEditing(bool value) { m_shouldAllowEditing = value; }
-    void setCanOpenWindows(bool);
-    void setCloseRemainingWindowsWhenComplete(bool value) { m_shouldCloseExtraWindows = value; }
-    void setXSSAuditorEnabled(bool);
-    void setAllowUniversalAccessFromFileURLs(bool);
-    void setAllowFileAccessFromFileURLs(bool);
-    void setPluginsEnabled(bool);
-    void setJavaScriptCanAccessClipboard(bool);
-    void setPrivateBrowsingEnabled(bool);
-    void setPopupBlockingEnabled(bool);
-    void setAuthorAndUserStylesEnabled(bool);
-    void setCustomPolicyDelegate(bool enabled, bool permissive = false);
-    void addOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef destinationProtocol, JSStringRef destinationHost, bool allowDestinationSubdomains);
-    void removeOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef destinationProtocol, JSStringRef destinationHost, bool allowDestinationSubdomains);
-    void setUserStyleSheetEnabled(bool);
-    void setUserStyleSheetLocation(JSStringRef);
-    void setSpatialNavigationEnabled(bool);
-    void setTabKeyCyclesThroughElements(bool);
-    void setSerializeHTTPLoads();
-    void dispatchPendingLoadRequests();
-    void setCacheModel(int);
-    void setAsynchronousSpellCheckingEnabled(bool);
-
-    // Special DOM functions.
-    void clearBackForwardList();
-    void execCommand(JSStringRef name, JSStringRef argument);
-    bool isCommandEnabled(JSStringRef name);
-    unsigned windowCount();
-
-    // Repaint testing.
-    void testRepaint() { m_testRepaint = true; }
-    void repaintSweepHorizontally() { m_testRepaintSweepHorizontally = true; }
-    void display();
-    
-    // UserContent testing.
-    void addUserScript(JSStringRef source, bool runAtStart, bool allFrames);
-    void addUserStyleSheet(JSStringRef source, bool allFrames);
-
-    // Text search testing.
-    bool findString(JSStringRef, JSValueRef optionsArray);
-
-    // Local storage
-    void clearAllDatabases();
-    void setDatabaseQuota(uint64_t);
-    JSRetainPtr<JSStringRef> pathToLocalResource(JSStringRef);
-
-    // Application Cache
-    void clearAllApplicationCaches();
-    void clearApplicationCacheForOrigin(JSStringRef origin);
-    void setAppCacheMaximumSize(uint64_t);
-    long long applicationCacheDiskUsageForOrigin(JSStringRef origin);
-    void setApplicationCacheOriginQuota(unsigned long long);
-    void disallowIncreaseForApplicationCacheQuota();
-    bool shouldDisallowIncreaseForApplicationCacheQuota() { return m_disallowIncreaseForApplicationCacheQuota; }
-    JSValueRef originsWithApplicationCache();
-
-    // Printing
-    bool isPageBoxVisible(int pageIndex);
-
-    // Authentication
-    void setHandlesAuthenticationChallenges(bool);
-    void setAuthenticationUsername(JSStringRef);
-    void setAuthenticationPassword(JSStringRef);
-
-    void setValueForUser(JSContextRef, JSValueRef element, JSStringRef value);
-
-    // Audio testing.
-    void setAudioData(JSContextRef, JSValueRef data);
-
-    enum WhatToDump { RenderTree, MainFrameText, AllFramesText, Audio };
-    WhatToDump whatToDump() const { return m_whatToDump; }
-
-    bool shouldDumpAllFrameScrollPositions() const { return m_shouldDumpAllFrameScrollPositions; }
-    bool shouldDumpBackForwardListsForAllWindows() const { return m_shouldDumpBackForwardListsForAllWindows; }
-    bool shouldDumpEditingCallbacks() const { return m_dumpEditingCallbacks; }
-    bool shouldDumpMainFrameScrollPosition() const { return m_whatToDump == RenderTree; }
-    bool shouldDumpStatusCallbacks() const { return m_dumpStatusCallbacks; }
-    bool shouldDumpTitleChanges() const { return m_dumpTitleChanges; }
-    bool shouldDumpPixels() const { return m_dumpPixels; }
-    bool shouldDumpFullScreenCallbacks() const { return m_dumpFullScreenCallbacks; }
-    bool shouldDumpFrameLoadCallbacks() const { return m_dumpFrameLoadCallbacks; }
-    bool shouldDumpProgressFinishedCallback() const { return m_dumpProgressFinishedCallback; }
-    bool shouldDumpResourceLoadCallbacks() const { return m_dumpResourceLoadCallbacks; }
-    bool shouldDumpResourceResponseMIMETypes() const { return m_dumpResourceResponseMIMETypes; }
-    bool shouldDumpWillCacheResponse() const { return m_dumpWillCacheResponse; }
-    bool shouldDumpApplicationCacheDelegateCallbacks() const { return m_dumpApplicationCacheDelegateCallbacks; }
-    bool shouldDumpDatabaseCallbacks() const { return m_dumpDatabaseCallbacks; }
-    bool shouldDumpSelectionRect() const { return m_dumpSelectionRect; }
-
-    bool isPolicyDelegateEnabled() const { return m_policyDelegateEnabled; }
-    bool isPolicyDelegatePermissive() const { return m_policyDelegatePermissive; }
-
-    bool waitToDump() const { return m_waitToDump; }
-    void waitToDumpWatchdogTimerFired();
-    void invalidateWaitToDumpWatchdogTimer();
-
-    bool shouldAllowEditing() const { return m_shouldAllowEditing; }
-
-    bool shouldCloseExtraWindowsAfterRunningTest() const { return m_shouldCloseExtraWindows; }
-
-    void evaluateScriptInIsolatedWorld(JSContextRef, unsigned worldID, JSStringRef script);
-    static unsigned worldIDForWorld(WKBundleScriptWorldRef);
-
-    void showWebInspector();
-    void closeWebInspector();
-    void evaluateInWebInspector(long callId, JSStringRef script);
-
-    void setPOSIXLocale(JSStringRef);
-
-    bool willSendRequestReturnsNull() const { return m_willSendRequestReturnsNull; }
-    void setWillSendRequestReturnsNull(bool f) { m_willSendRequestReturnsNull = f; }
-    bool willSendRequestReturnsNullOnRedirect() const { return m_willSendRequestReturnsNullOnRedirect; }
-    void setWillSendRequestReturnsNullOnRedirect(bool f) { m_willSendRequestReturnsNullOnRedirect = f; }
-
-    void setTextDirection(JSStringRef);
-
-    void setShouldStayOnPageAfterHandlingBeforeUnload(bool);
-
-    void setDefersLoading(bool);
-
-    void setStopProvisionalFrameLoads() { m_shouldStopProvisionalFrameLoads = true; }
-    bool shouldStopProvisionalFrameLoads() const { return m_shouldStopProvisionalFrameLoads; }
-    
-    bool globalFlag() const { return m_globalFlag; }
-    void setGlobalFlag(bool value) { m_globalFlag = value; }
-
-    void addChromeInputField(JSValueRef);
-    void removeChromeInputField(JSValueRef);
-    void focusWebView(JSValueRef);
-    void setBackingScaleFactor(double, JSValueRef);
-
-    void setWindowIsKey(bool);
-
-    void callAddChromeInputFieldCallback();
-    void callRemoveChromeInputFieldCallback();
-    void callFocusWebViewCallback();
-    void callSetBackingScaleFactorCallback();
-
-    void overridePreference(JSStringRef preference, JSStringRef value);
-
-    // Cookies testing
-    void setAlwaysAcceptCookies(bool);
-
-    // Custom full screen behavior.
-    void setHasCustomFullScreenBehavior(bool value) { m_customFullScreenBehavior = value; }
-    bool hasCustomFullScreenBehavior() const { return m_customFullScreenBehavior; }
-
-    // Web notifications.
-    void grantWebNotificationPermission(JSStringRef origin);
-    void denyWebNotificationPermission(JSStringRef origin);
-    void removeAllWebNotificationPermissions();
-    void simulateWebNotificationClick(JSValueRef notification);
-
-    // Geolocation.
-    void setGeolocationPermission(bool);
-    void setMockGeolocationPosition(double latitude, double longitude, double accuracy, JSValueRef altitude, JSValueRef altitudeAccuracy, JSValueRef heading, JSValueRef speed);
-    void setMockGeolocationPositionUnavailableError(JSStringRef message);
-
-    JSRetainPtr<JSStringRef> platformName();
-
-    void setPageVisibility(JSStringRef state);
-    void resetPageVisibility();
-
-    bool callShouldCloseOnWebView();
-
-    void setCustomTimeout(int duration);
-
-    // Work queue.
-    void queueBackNavigation(unsigned howFarBackward);
-    void queueForwardNavigation(unsigned howFarForward);
-    void queueLoad(JSStringRef url, JSStringRef target);
-    void queueLoadHTMLString(JSStringRef content, JSStringRef baseURL, JSStringRef unreachableURL);
-    void queueReload();
-    void queueLoadingScript(JSStringRef script);
-    void queueNonLoadingScript(JSStringRef script);
-
-private:
-    static const double waitToDumpWatchdogTimerInterval;
-
-    TestRunner();
-
-    void platformInitialize();
-    void initializeWaitToDumpWatchdogTimerIfNeeded();
-
-    WhatToDump m_whatToDump;
-    bool m_shouldDumpAllFrameScrollPositions;
-    bool m_shouldDumpBackForwardListsForAllWindows;
-
-    bool m_shouldAllowEditing;
-    bool m_shouldCloseExtraWindows;
-
-    bool m_dumpEditingCallbacks;
-    bool m_dumpStatusCallbacks;
-    bool m_dumpTitleChanges;
-    bool m_dumpPixels;
-    bool m_dumpSelectionRect;
-    bool m_dumpFullScreenCallbacks;
-    bool m_dumpFrameLoadCallbacks;
-    bool m_dumpProgressFinishedCallback;
-    bool m_dumpResourceLoadCallbacks;
-    bool m_dumpResourceResponseMIMETypes;
-    bool m_dumpWillCacheResponse;
-    bool m_dumpApplicationCacheDelegateCallbacks;
-    bool m_dumpDatabaseCallbacks;
-    bool m_disallowIncreaseForApplicationCacheQuota;
-    bool m_waitToDump; // True if waitUntilDone() has been called, but notifyDone() has not yet been called.
-    bool m_testRepaint;
-    bool m_testRepaintSweepHorizontally;
-
-    bool m_willSendRequestReturnsNull;
-    bool m_willSendRequestReturnsNullOnRedirect;
-    bool m_shouldStopProvisionalFrameLoads;
-
-    bool m_policyDelegateEnabled;
-    bool m_policyDelegatePermissive;
-    
-    bool m_globalFlag;
-    bool m_customFullScreenBehavior;
-
-    int m_timeout;
-
-    bool m_userStyleSheetEnabled;
-    WKRetainPtr<WKStringRef> m_userStyleSheetLocation;
-
-    PlatformTimerRef m_waitToDumpWatchdogTimer;
-};
-
-} // namespace WTR
-
-#endif // TestRunner_h
diff --git a/Tools/WebKitTestRunner/InjectedBundle/TextInputController.cpp b/Tools/WebKitTestRunner/InjectedBundle/TextInputController.cpp
deleted file mode 100644
index 0087aa3..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/TextInputController.cpp
+++ /dev/null
@@ -1,80 +0,0 @@
-/*
- * Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies)
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "TextInputController.h"
-
-#include "InjectedBundle.h"
-#include "InjectedBundlePage.h"
-#include "JSTextInputController.h"
-#include "StringFunctions.h"
-#include <WebKit2/WKBundlePagePrivate.h>
-
-namespace WTR {
-
-PassRefPtr<TextInputController> TextInputController::create()
-{
-    return adoptRef(new TextInputController);
-}
-
-TextInputController::TextInputController()
-{
-}
-
-TextInputController::~TextInputController()
-{
-}
-
-JSClassRef TextInputController::wrapperClass()
-{
-    return JSTextInputController::textInputControllerClass();
-}
-
-void TextInputController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception)
-{
-    setProperty(context, windowObject, "textInputController", this, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, exception);
-}
-
-void TextInputController::setMarkedText(JSStringRef text, int from, int length)
-{
-    WKBundlePageSetComposition(InjectedBundle::shared().page()->page(), toWK(text).get(), from, length);
-}
-
-bool TextInputController::hasMarkedText()
-{
-    return WKBundlePageHasComposition(InjectedBundle::shared().page()->page());
-}
-
-void TextInputController::unmarkText()
-{
-    WKBundlePageConfirmComposition(InjectedBundle::shared().page()->page());
-}
-
-void TextInputController::insertText(JSStringRef text)
-{
-    WKBundlePageConfirmCompositionWithText(InjectedBundle::shared().page()->page(), toWK(text).get());
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/InjectedBundle/TextInputController.h b/Tools/WebKitTestRunner/InjectedBundle/TextInputController.h
deleted file mode 100644
index 71a0437..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/TextInputController.h
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- * Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies)
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef TextInputController_h
-#define TextInputController_h
-
-#include "JSWrappable.h"
-#include <wtf/PassRefPtr.h>
-
-namespace WTR {
-
-class TextInputController : public JSWrappable {
-public:
-    static PassRefPtr<TextInputController> create();
-    virtual ~TextInputController();
-
-    // JSWrappable
-    virtual JSClassRef wrapperClass();
-
-    void makeWindowObject(JSContextRef, JSObjectRef windowObject, JSValueRef* exception);
-
-    void setMarkedText(JSStringRef text, int from, int length);
-    bool hasMarkedText();
-    void unmarkText();
-    void insertText(JSStringRef text);
-
-private:
-    TextInputController();
-};
-
-} // namespace WTR
-
-#endif // TextInputController_h
diff --git a/Tools/WebKitTestRunner/InjectedBundle/atk/AccessibilityControllerAtk.cpp b/Tools/WebKitTestRunner/InjectedBundle/atk/AccessibilityControllerAtk.cpp
deleted file mode 100644
index 458472b..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/atk/AccessibilityControllerAtk.cpp
+++ /dev/null
@@ -1,195 +0,0 @@
-/*
- * Copyright (C) 2012 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "AccessibilityController.h"
-
-#include "InjectedBundle.h"
-#include "InjectedBundlePage.h"
-
-#include <WebKit2/WKBundlePagePrivate.h>
-#include <atk/atk.h>
-#include <cstdio>
-#include <wtf/gobject/GOwnPtr.h>
-#include <wtf/text/StringBuilder.h>
-
-namespace WTR {
-
-static void printAccessibilityEvent(AtkObject* accessible, const gchar* signalName, const gchar* signalValue)
-{
-    // Do not handle state-change:defunct signals, as the AtkObject
-    // associated to them will not be valid at this point already.
-    if (!signalName || !g_strcmp0(signalName, "state-change:defunct"))
-        return;
-
-    if (!accessible || !ATK_IS_OBJECT(accessible))
-        return;
-
-    const gchar* objectName = atk_object_get_name(accessible);
-    AtkRole objectRole = atk_object_get_role(accessible);
-
-    // Try to always provide a name to be logged for the object.
-    if (!objectName || *objectName == '\0')
-        objectName = "(No name)";
-
-    GOwnPtr<gchar> signalNameAndValue(signalValue ? g_strdup_printf("%s = %s", signalName, signalValue) : g_strdup(signalName));
-    GOwnPtr<gchar> accessibilityEventString(g_strdup_printf("Accessibility object emitted \"%s\" / Name: \"%s\" / Role: %d\n", signalNameAndValue.get(), objectName, objectRole));
-    InjectedBundle::shared().outputText(String::fromUTF8(accessibilityEventString.get()));
-}
-
-static gboolean axObjectEventListener(GSignalInvocationHint *signalHint, guint numParamValues, const GValue *paramValues, gpointer data)
-{
-    // At least we should receive the instance emitting the signal.
-    if (numParamValues < 1)
-        return TRUE;
-
-    AtkObject* accessible = ATK_OBJECT(g_value_get_object(&paramValues[0]));
-    if (!accessible || !ATK_IS_OBJECT(accessible))
-        return TRUE;
-
-    GSignalQuery signalQuery;
-    GOwnPtr<gchar> signalName;
-    GOwnPtr<gchar> signalValue;
-
-    g_signal_query(signalHint->signal_id, &signalQuery);
-
-    if (!g_strcmp0(signalQuery.signal_name, "state-change")) {
-        signalName.set(g_strdup_printf("state-change:%s", g_value_get_string(&paramValues[1])));
-        signalValue.set(g_strdup_printf("%d", g_value_get_boolean(&paramValues[2])));
-    } else if (!g_strcmp0(signalQuery.signal_name, "focus-event")) {
-        signalName.set(g_strdup("focus-event"));
-        signalValue.set(g_strdup_printf("%d", g_value_get_boolean(&paramValues[1])));
-    } else if (!g_strcmp0(signalQuery.signal_name, "children-changed")) {
-        signalName.set(g_strdup("children-changed"));
-        signalValue.set(g_strdup_printf("%d", g_value_get_uint(&paramValues[1])));
-    } else if (!g_strcmp0(signalQuery.signal_name, "property-change"))
-        signalName.set(g_strdup_printf("property-change:%s", g_quark_to_string(signalHint->detail)));
-    else
-        signalName.set(g_strdup(signalQuery.signal_name));
-
-    printAccessibilityEvent(accessible, signalName.get(), signalValue.get());
-
-    return TRUE;
-}
-
-void AccessibilityController::logAccessibilityEvents()
-{
-    // Ensure no callbacks are connected before.
-    resetToConsistentState();
-
-    // Ensure that accessibility is initialized for the WebView by querying for
-    // the root accessible object, which will create the full hierarchy.
-    rootElement();
-
-    // Add global listeners for AtkObject's signals.
-    m_stateChangeListenerId = atk_add_global_event_listener(axObjectEventListener, "ATK:AtkObject:state-change");
-    m_focusEventListenerId = atk_add_global_event_listener(axObjectEventListener, "ATK:AtkObject:focus-event");
-    m_activeDescendantChangedListenerId = atk_add_global_event_listener(axObjectEventListener, "ATK:AtkObject:active-descendant-changed");
-    m_childrenChangedListenerId = atk_add_global_event_listener(axObjectEventListener, "ATK:AtkObject:children-changed");
-    m_propertyChangedListenerId = atk_add_global_event_listener(axObjectEventListener, "ATK:AtkObject:property-change");
-    m_visibleDataChangedListenerId = atk_add_global_event_listener(axObjectEventListener, "ATK:AtkObject:visible-data-changed");
-
-    // Ensure the Atk interface types are registered, otherwise
-    // the AtkDocument signal handlers below won't get registered.
-    GObject* dummyAxObject = G_OBJECT(g_object_new(ATK_TYPE_OBJECT, 0));
-    AtkObject* dummyNoOpAxObject = atk_no_op_object_new(dummyAxObject);
-    g_object_unref(G_OBJECT(dummyNoOpAxObject));
-    g_object_unref(dummyAxObject);
-}
-
-void AccessibilityController::resetToConsistentState()
-{
-    // AtkObject signals.
-    if (m_stateChangeListenerId) {
-        atk_remove_global_event_listener(m_stateChangeListenerId);
-        m_stateChangeListenerId = 0;
-    }
-    if (m_focusEventListenerId) {
-        atk_remove_global_event_listener(m_focusEventListenerId);
-        m_focusEventListenerId = 0;
-    }
-    if (m_activeDescendantChangedListenerId) {
-        atk_remove_global_event_listener(m_activeDescendantChangedListenerId);
-        m_activeDescendantChangedListenerId = 0;
-    }
-    if (m_childrenChangedListenerId) {
-        atk_remove_global_event_listener(m_childrenChangedListenerId);
-        m_childrenChangedListenerId = 0;
-    }
-    if (m_propertyChangedListenerId) {
-        atk_remove_global_event_listener(m_propertyChangedListenerId);
-        m_propertyChangedListenerId = 0;
-    }
-    if (m_visibleDataChangedListenerId) {
-        atk_remove_global_event_listener(m_visibleDataChangedListenerId);
-        m_visibleDataChangedListenerId = 0;
-    }
-}
-
-static AtkObject* childElementById(AtkObject* parent, const char* id)
-{
-    if (!ATK_IS_OBJECT(parent))
-        return 0;
-
-    AtkAttributeSet* attributeSet = atk_object_get_attributes(parent);
-    for (GSList* attributes = attributeSet; attributes; attributes = attributes->next) {
-        AtkAttribute* attribute = static_cast<AtkAttribute*>(attributes->data);
-        if (!strcmp(attribute->name, "html-id")) {
-            if (!strcmp(attribute->value, id))
-                return parent;
-            break;
-        }
-    }
-
-    int childCount = atk_object_get_n_accessible_children(parent);
-    for (int i = 0; i < childCount; i++) {
-        AtkObject* result = childElementById(atk_object_ref_accessible_child(parent, i), id);
-        if (ATK_IS_OBJECT(result))
-            return result;
-    }
-
-    return 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityController::accessibleElementById(JSStringRef id)
-{
-    AtkObject* root = ATK_OBJECT(WKAccessibilityRootObject(InjectedBundle::shared().page()->page()));
-    if (!root)
-        return 0;
-
-    size_t bufferSize = JSStringGetMaximumUTF8CStringSize(id);
-    GOwnPtr<gchar> idBuffer(static_cast<gchar*>(g_malloc(bufferSize)));
-    JSStringGetUTF8CString(id, idBuffer.get(), bufferSize);
-
-    AtkObject* result = childElementById(root, idBuffer.get());
-    if (ATK_IS_OBJECT(result))
-        return AccessibilityUIElement::create(result);
-
-    return 0;
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp b/Tools/WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp
deleted file mode 100644
index 361d11b..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp
+++ /dev/null
@@ -1,1156 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All Rights Reserved.
- * Copyright (C) 2012 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "AccessibilityUIElement.h"
-
-#if HAVE(ACCESSIBILITY)
-
-#include "InjectedBundle.h"
-#include "InjectedBundlePage.h"
-#include <JavaScriptCore/JSStringRef.h>
-#include <atk/atk.h>
-#include <wtf/Assertions.h>
-#include <wtf/gobject/GOwnPtr.h>
-#include <wtf/gobject/GRefPtr.h>
-#include <wtf/text/CString.h>
-#include <wtf/text/WTFString.h>
-#include <wtf/unicode/CharacterNames.h>
-
-namespace WTR {
-
-static gchar* attributeSetToString(AtkAttributeSet* attributeSet)
-{
-    GString* str = g_string_new(0);
-    for (GSList* attributes = attributeSet; attributes; attributes = attributes->next) {
-        AtkAttribute* attribute = static_cast<AtkAttribute*>(attributes->data);
-        GOwnPtr<gchar> attributeData(g_strconcat(attribute->name, ":", attribute->value, NULL));
-        g_string_append(str, attributeData.get());
-        if (attributes->next)
-            g_string_append(str, ", ");
-    }
-
-    return g_string_free(str, FALSE);
-}
-
-static bool checkElementState(PlatformUIElement element, AtkStateType stateType)
-{
-    if (!ATK_IS_OBJECT(element))
-        return false;
-
-    GRefPtr<AtkStateSet> stateSet = adoptGRef(atk_object_ref_state_set(ATK_OBJECT(element)));
-    return atk_state_set_contains_state(stateSet.get(), stateType);
-}
-
-static JSStringRef indexRangeInTable(PlatformUIElement element, bool isRowRange)
-{
-    GOwnPtr<gchar> rangeString(g_strdup("{0, 0}"));
-
-    if (!element || !ATK_IS_OBJECT(element))
-        return JSStringCreateWithUTF8CString(rangeString.get());
-
-    AtkObject* axTable = atk_object_get_parent(ATK_OBJECT(element));
-    if (!axTable || !ATK_IS_TABLE(axTable))
-        return JSStringCreateWithUTF8CString(rangeString.get());
-
-    // Look for the cell in the table.
-    gint indexInParent = atk_object_get_index_in_parent(ATK_OBJECT(element));
-    if (indexInParent == -1)
-        return JSStringCreateWithUTF8CString(rangeString.get());
-
-    int row = -1;
-    int column = -1;
-    row = atk_table_get_row_at_index(ATK_TABLE(axTable), indexInParent);
-    column = atk_table_get_column_at_index(ATK_TABLE(axTable), indexInParent);
-
-    // Get the actual values, if row and columns are valid values.
-    if (row != -1 && column != -1) {
-        int base = 0;
-        int length = 0;
-        if (isRowRange) {
-            base = row;
-            length = atk_table_get_row_extent_at(ATK_TABLE(axTable), row, column);
-        } else {
-            base = column;
-            length = atk_table_get_column_extent_at(ATK_TABLE(axTable), row, column);
-        }
-        rangeString.set(g_strdup_printf("{%d, %d}", base, length));
-    }
-
-    return JSStringCreateWithUTF8CString(rangeString.get());
-}
-
-static void alterCurrentValue(PlatformUIElement element, int factor)
-{
-    if (!element || !ATK_IS_VALUE(element))
-        return;
-
-    GValue currentValue = G_VALUE_INIT;
-    atk_value_get_current_value(ATK_VALUE(element), &currentValue);
-
-    GValue increment = G_VALUE_INIT;
-    atk_value_get_minimum_increment(ATK_VALUE(element), &increment);
-
-    GValue newValue = G_VALUE_INIT;
-    g_value_init(&newValue, G_TYPE_DOUBLE);
-
-    g_value_set_float(&newValue, g_value_get_float(&currentValue) + factor * g_value_get_float(&increment));
-    atk_value_set_current_value(ATK_VALUE(element), &newValue);
-
-    g_value_unset(&newValue);
-    g_value_unset(&increment);
-    g_value_unset(&currentValue);
-}
-
-static gchar* replaceCharactersForResults(gchar* str)
-{
-    WTF::String uString = WTF::String::fromUTF8(str);
-
-    // The object replacement character is passed along to ATs so we need to be
-    // able to test for their presence and do so without causing test failures.
-    uString.replace(objectReplacementCharacter, "<obj>");
-
-    // The presence of newline characters in accessible text of a single object
-    // is appropriate, but it makes test results (especially the accessible tree)
-    // harder to read.
-    uString.replace("\n", "<\\n>");
-
-    return g_strdup(uString.utf8().data());
-}
-
-static const gchar* roleToString(AtkRole role)
-{
-    switch (role) {
-    case ATK_ROLE_ALERT:
-        return "AXRole: AXAlert";
-    case ATK_ROLE_CANVAS:
-        return "AXRole: AXCanvas";
-    case ATK_ROLE_CHECK_BOX:
-        return "AXRole: AXCheckBox";
-    case ATK_ROLE_COLUMN_HEADER:
-        return "AXRole: AXColumnHeader";
-    case ATK_ROLE_COMBO_BOX:
-        return "AXRole: AXComboBox";
-    case ATK_ROLE_DOCUMENT_FRAME:
-        return "AXRole: AXWebArea";
-    case ATK_ROLE_ENTRY:
-        return "AXRole: AXTextField";
-    case ATK_ROLE_FOOTER:
-        return "AXRole: AXFooter";
-    case ATK_ROLE_FORM:
-        return "AXRole: AXForm";
-    case ATK_ROLE_GROUPING:
-        return "AXRole: AXGroup";
-    case ATK_ROLE_HEADING:
-        return "AXRole: AXHeading";
-    case ATK_ROLE_IMAGE:
-        return "AXRole: AXImage";
-    case ATK_ROLE_IMAGE_MAP:
-        return "AXRole: AXImageMap";
-    case ATK_ROLE_LABEL:
-        return "AXRole: AXLabel";
-    case ATK_ROLE_LINK:
-        return "AXRole: AXLink";
-    case ATK_ROLE_LIST:
-        return "AXRole: AXList";
-    case ATK_ROLE_LIST_BOX:
-        return "AXRole: AXListBox";
-    case ATK_ROLE_LIST_ITEM:
-        return "AXRole: AXListItem";
-    case ATK_ROLE_MENU:
-        return "AXRole: AXMenu";
-    case ATK_ROLE_MENU_BAR:
-        return "AXRole: AXMenuBar";
-    case ATK_ROLE_MENU_ITEM:
-        return "AXRole: AXMenuItem";
-    case ATK_ROLE_PAGE_TAB:
-        return "AXRole: AXTab";
-    case ATK_ROLE_PAGE_TAB_LIST:
-        return "AXRole: AXTabGroup";
-    case ATK_ROLE_PANEL:
-        return "AXRole: AXGroup";
-    case ATK_ROLE_PARAGRAPH:
-        return "AXRole: AXParagraph";
-    case ATK_ROLE_PASSWORD_TEXT:
-        return "AXRole: AXPasswordField";
-    case ATK_ROLE_PUSH_BUTTON:
-        return "AXRole: AXButton";
-    case ATK_ROLE_RADIO_BUTTON:
-        return "AXRole: AXRadioButton";
-    case ATK_ROLE_ROW_HEADER:
-        return "AXRole: AXRowHeader";
-    case ATK_ROLE_RULER:
-        return "AXRole: AXRuler";
-    case ATK_ROLE_SCROLL_BAR:
-        return "AXRole: AXScrollBar";
-    case ATK_ROLE_SCROLL_PANE:
-        return "AXRole: AXScrollArea";
-    case ATK_ROLE_SECTION:
-        return "AXRole: AXDiv";
-    case ATK_ROLE_SEPARATOR:
-        return "AXRole: AXHorizontalRule";
-    case ATK_ROLE_SLIDER:
-        return "AXRole: AXSlider";
-    case ATK_ROLE_SPIN_BUTTON:
-        return "AXRole: AXSpinButton";
-    case ATK_ROLE_TABLE:
-        return "AXRole: AXTable";
-    case ATK_ROLE_TABLE_CELL:
-        return "AXRole: AXCell";
-    case ATK_ROLE_TABLE_COLUMN_HEADER:
-        return "AXRole: AXColumnHeader";
-    case ATK_ROLE_TABLE_ROW:
-        return "AXRole: AXRow";
-    case ATK_ROLE_TABLE_ROW_HEADER:
-        return "AXRole: AXRowHeader";
-    case ATK_ROLE_TOGGLE_BUTTON:
-        return "AXRole: AXToggleButton";
-    case ATK_ROLE_TOOL_BAR:
-        return "AXRole: AXToolbar";
-    case ATK_ROLE_TOOL_TIP:
-        return "AXRole: AXUserInterfaceTooltip";
-    case ATK_ROLE_TREE:
-        return "AXRole: AXTree";
-    case ATK_ROLE_TREE_TABLE:
-        return "AXRole: AXTreeGrid";
-    case ATK_ROLE_TREE_ITEM:
-        return "AXRole: AXTreeItem";
-    case ATK_ROLE_WINDOW:
-        return "AXRole: AXWindow";
-    case ATK_ROLE_UNKNOWN:
-        return "AXRole: AXUnknown";
-    default:
-        // We want to distinguish ATK_ROLE_UNKNOWN from a known AtkRole which
-        // our DRT isn't properly handling.
-        return "AXRole: FIXME not identified";
-    }
-}
-
-AccessibilityUIElement::AccessibilityUIElement(PlatformUIElement element)
-    : m_element(element)
-{
-}
-
-AccessibilityUIElement::AccessibilityUIElement(const AccessibilityUIElement& other)
-    : JSWrappable()
-    , m_element(other.m_element)
-{
-}
-
-AccessibilityUIElement::~AccessibilityUIElement()
-{
-}
-
-bool AccessibilityUIElement::isEqual(AccessibilityUIElement* otherElement)
-{
-    return m_element == otherElement->platformUIElement();
-}
-
-void AccessibilityUIElement::getChildren(Vector<RefPtr<AccessibilityUIElement> >& children)
-{
-    if (!m_element || !ATK_IS_OBJECT(m_element))
-        return;
-
-    int count = childrenCount();
-    for (int i = 0; i < count; i++) {
-        AtkObject* child = atk_object_ref_accessible_child(ATK_OBJECT(m_element), i);
-        children.append(AccessibilityUIElement::create(child));
-    }
-}
-
-void AccessibilityUIElement::getChildrenWithRange(Vector<RefPtr<AccessibilityUIElement> >& children, unsigned location, unsigned length)
-{
-    if (!m_element || !ATK_IS_OBJECT(m_element))
-        return;
-    unsigned end = location + length;
-    for (unsigned i = location; i < end; i++) {
-        AtkObject* child = atk_object_ref_accessible_child(ATK_OBJECT(m_element), i);
-        children.append(AccessibilityUIElement::create(child));
-    }
-}
-
-int AccessibilityUIElement::childrenCount()
-{
-    if (!m_element)
-        return 0;
-
-    return atk_object_get_n_accessible_children(ATK_OBJECT(m_element));
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::elementAtPoint(int x, int y)
-{
-    // FIXME: implement
-    return 0;
-}
-
-unsigned AccessibilityUIElement::indexOfChild(AccessibilityUIElement* element)
-{
-    if (!m_element || !ATK_IS_OBJECT(m_element))
-        return 0;
-
-    Vector<RefPtr<AccessibilityUIElement> > children;
-    getChildren(children);
-
-    unsigned count = children.size();
-    for (unsigned i = 0; i < count; i++)
-        if (children[i]->isEqual(element))
-            return i;
-
-    return 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::childAtIndex(unsigned index)
-{
-    Vector<RefPtr<AccessibilityUIElement> > children;
-    getChildrenWithRange(children, index, 1);
-
-    if (children.size() == 1)
-        return children[0];
-
-    return 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::linkedUIElementAtIndex(unsigned index)
-{
-    // FIXME: implement
-    return 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::ariaOwnsElementAtIndex(unsigned index)
-{
-    // FIXME: implement
-    return 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::ariaFlowToElementAtIndex(unsigned index)
-{
-    // FIXME: implement
-    return 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::disclosedRowAtIndex(unsigned index)
-{
-    // FIXME: implement
-    return 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::rowAtIndex(unsigned index)
-{
-    // FIXME: implement
-    return 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::selectedChildAtIndex(unsigned index) const
-{
-    // FIXME: implement
-    return 0;
-}
-
-unsigned AccessibilityUIElement::selectedChildrenCount() const
-{
-    // FIXME: implement
-    return 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::selectedRowAtIndex(unsigned index)
-{
-    // FIXME: implement
-    return 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::titleUIElement()
-{
-    if (!m_element)
-        return 0;
-
-    AtkRelationSet* set = atk_object_ref_relation_set(ATK_OBJECT(m_element));
-    if (!set)
-        return 0;
-
-    AtkObject* target = 0;
-    int count = atk_relation_set_get_n_relations(set);
-    for (int i = 0; i < count; i++) {
-        AtkRelation* relation = atk_relation_set_get_relation(set, i);
-        if (atk_relation_get_relation_type(relation) == ATK_RELATION_LABELLED_BY) {
-            GPtrArray* targetList = atk_relation_get_target(relation);
-            if (targetList->len)
-                target = static_cast<AtkObject*>(g_ptr_array_index(targetList, 0));
-        }
-    }
-
-    g_object_unref(set);
-    return target ? AccessibilityUIElement::create(target) : 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::parentElement()
-{
-    if (!m_element || !ATK_IS_OBJECT(m_element))
-        return 0;
-
-    AtkObject* parent = atk_object_get_parent(ATK_OBJECT(m_element));
-    return parent ? AccessibilityUIElement::create(parent) : 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::disclosedByRow()
-{
-    // FIXME: implement
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributesOfLinkedUIElements()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributesOfDocumentLinks()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributesOfChildren()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::allAttributes()
-{
-    if (!m_element || !ATK_IS_OBJECT(m_element))
-        return JSStringCreateWithCharacters(0, 0);
-
-    GOwnPtr<gchar> attributeData(attributeSetToString(atk_object_get_attributes(ATK_OBJECT(m_element))));
-    return JSStringCreateWithUTF8CString(attributeData.get());
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::stringAttributeValue(JSStringRef attribute)
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-double AccessibilityUIElement::numberAttributeValue(JSStringRef attribute)
-{
-    // FIXME: implement
-    return 0.0f;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::uiElementAttributeValue(JSStringRef attribute) const
-{
-    // FIXME: implement
-    return 0;
-}
-
-bool AccessibilityUIElement::boolAttributeValue(JSStringRef attribute)
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isAttributeSettable(JSStringRef attribute)
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isAttributeSupported(JSStringRef attribute)
-{
-    // FIXME: implement
-    return false;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::parameterizedAttributeNames()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::role()
-{
-    if (!m_element || !ATK_IS_OBJECT(m_element))
-        return JSStringCreateWithCharacters(0, 0);
-
-    AtkRole role = atk_object_get_role(ATK_OBJECT(m_element));
-    if (!role)
-        return JSStringCreateWithCharacters(0, 0);
-
-    GOwnPtr<gchar> axRole(g_strdup(roleToString(role)));
-    return JSStringCreateWithUTF8CString(axRole.get());
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::subrole()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::roleDescription()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::title()
-{
-    if (!m_element || !ATK_IS_OBJECT(m_element))
-        return JSStringCreateWithCharacters(0, 0);
-
-    const gchar* name = atk_object_get_name(ATK_OBJECT(m_element));
-    GOwnPtr<gchar> axTitle(g_strdup_printf("AXTitle: %s", name ? name : ""));
-
-    return JSStringCreateWithUTF8CString(axTitle.get());
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::description()
-{
-    if (!m_element || !ATK_IS_OBJECT(m_element))
-        return JSStringCreateWithCharacters(0, 0);
-
-    const gchar* description = atk_object_get_description(ATK_OBJECT(m_element));
-    if (!description)
-        return JSStringCreateWithCharacters(0, 0);
-
-    GOwnPtr<gchar> axDesc(g_strdup_printf("AXDescription: %s", description));
-
-    return JSStringCreateWithUTF8CString(axDesc.get());
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::orientation() const
-{
-    if (!m_element || !ATK_IS_OBJECT(m_element))
-        return JSStringCreateWithCharacters(0, 0);
-
-    const gchar* axOrientation = 0;
-    if (checkElementState(m_element, ATK_STATE_HORIZONTAL))
-        axOrientation = "AXOrientation: AXHorizontalOrientation";
-    else if (checkElementState(m_element, ATK_STATE_VERTICAL))
-        axOrientation = "AXOrientation: AXVerticalOrientation";
-
-    if (!axOrientation)
-        return JSStringCreateWithCharacters(0, 0);
-
-    return JSStringCreateWithUTF8CString(axOrientation);
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::stringValue()
-{
-    if (!m_element || !ATK_IS_TEXT(m_element))
-        return JSStringCreateWithCharacters(0, 0);
-
-    GOwnPtr<gchar> text(atk_text_get_text(ATK_TEXT(m_element), 0, -1));
-    GOwnPtr<gchar> textWithReplacedCharacters(replaceCharactersForResults(text.get()));
-    GOwnPtr<gchar> axValue(g_strdup_printf("AXValue: %s", textWithReplacedCharacters.get()));
-
-    return JSStringCreateWithUTF8CString(axValue.get());
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::language()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::helpText() const
-{
-    // FIXME: implement
-    // We need a way to call WebCore::AccessibilityObject::helpText()
-    // from here, probably a new helper class in WebProcess/WebCoreSupport.
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-double AccessibilityUIElement::x()
-{
-    if (!m_element || !ATK_IS_OBJECT(m_element))
-        return 0.0f;
-
-    int x, y;
-    atk_component_get_position(ATK_COMPONENT(m_element), &x, &y, ATK_XY_SCREEN);
-    return x;
-}
-
-double AccessibilityUIElement::y()
-{
-    if (!m_element || !ATK_IS_OBJECT(m_element))
-        return 0.0f;
-
-    int x, y;
-    atk_component_get_position(ATK_COMPONENT(m_element), &x, &y, ATK_XY_SCREEN);
-    return y;
-}
-
-double AccessibilityUIElement::width()
-{
-    if (!m_element || !ATK_IS_OBJECT(m_element))
-        return 0.0f;
-
-    int width, height;
-    atk_component_get_size(ATK_COMPONENT(m_element), &width, &height);
-    return width;
-}
-
-double AccessibilityUIElement::height()
-{
-    if (!m_element || !ATK_IS_OBJECT(m_element))
-        return 0.0f;
-
-    int width, height;
-    atk_component_get_size(ATK_COMPONENT(m_element), &width, &height);
-    return height;
-}
-
-double AccessibilityUIElement::clickPointX()
-{
-    // FIXME: implement
-    return 0.0f;
-}
-
-double AccessibilityUIElement::clickPointY()
-{
-    // FIXME: implement
-    return 0.0f;
-}
-
-double AccessibilityUIElement::intValue() const
-{
-    if (!m_element || !ATK_IS_OBJECT(m_element))
-        return 0.0f;
-
-    GValue value = G_VALUE_INIT;
-    atk_value_get_current_value(ATK_VALUE(m_element), &value);
-    if (!G_VALUE_HOLDS_FLOAT(&value))
-        return 0.0f;
-
-    return g_value_get_float(&value);
-}
-
-double AccessibilityUIElement::minValue()
-{
-    if (!m_element || !ATK_IS_OBJECT(m_element))
-        return 0.0f;
-
-    GValue value = G_VALUE_INIT;
-    atk_value_get_minimum_value(ATK_VALUE(m_element), &value);
-    if (!G_VALUE_HOLDS_FLOAT(&value))
-        return 0.0f;
-
-    return g_value_get_float(&value);
-}
-
-double AccessibilityUIElement::maxValue()
-{
-    if (!m_element || !ATK_IS_OBJECT(m_element))
-        return 0.0f;
-
-    GValue value = G_VALUE_INIT;
-    atk_value_get_maximum_value(ATK_VALUE(m_element), &value);
-    if (!G_VALUE_HOLDS_FLOAT(&value))
-        return 0.0f;
-
-    return g_value_get_float(&value);
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::valueDescription()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-int AccessibilityUIElement::insertionPointLineNumber()
-{
-    // FIXME: implement
-    return -1;
-}
-
-bool AccessibilityUIElement::isPressActionSupported()
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isIncrementActionSupported()
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isDecrementActionSupported()
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isEnabled()
-{
-    return checkElementState(m_element, ATK_STATE_ENABLED);
-}
-
-bool AccessibilityUIElement::isRequired() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isFocused() const
-{
-    return checkElementState(m_element, ATK_STATE_FOCUSED);
-}
-
-bool AccessibilityUIElement::isSelected() const
-{
-    return checkElementState(m_element, ATK_STATE_SELECTED);
-}
-
-bool AccessibilityUIElement::isExpanded() const
-{
-    return checkElementState(m_element, ATK_STATE_EXPANDED);
-}
-
-bool AccessibilityUIElement::isChecked() const
-{
-    return checkElementState(m_element, ATK_STATE_CHECKED);
-}
-
-int AccessibilityUIElement::hierarchicalLevel() const
-{
-    // FIXME: implement
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::speak()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-bool AccessibilityUIElement::ariaIsGrabbed() const
-{
-    // FIXME: implement
-    return false;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::ariaDropEffects() const
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-// parameterized attributes
-int AccessibilityUIElement::lineForIndex(int index)
-{
-    // FIXME: implement
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::rangeForLine(int line)
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::rangeForPosition(int x, int y)
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::boundsForRange(unsigned location, unsigned length)
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::stringForRange(unsigned location, unsigned length)
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributedStringForRange(unsigned location, unsigned length)
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-bool AccessibilityUIElement::attributedStringRangeIsMisspelled(unsigned location, unsigned length)
-{
-    // FIXME: implement
-    return false;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::uiElementForSearchPredicate(AccessibilityUIElement* startElement, bool isDirectionNext, JSStringRef searchKey, JSStringRef searchText)
-{
-    // FIXME: implement
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributesOfColumnHeaders()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributesOfRowHeaders()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributesOfColumns()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributesOfRows()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributesOfVisibleCells()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributesOfHeader()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-int AccessibilityUIElement::rowCount()
-{
-    if (!m_element || !ATK_IS_TABLE(m_element))
-        return 0;
-
-    return atk_table_get_n_rows(ATK_TABLE(m_element));
-}
-
-int AccessibilityUIElement::columnCount()
-{
-    if (!m_element || !ATK_IS_TABLE(m_element))
-        return 0;
-
-    return atk_table_get_n_columns(ATK_TABLE(m_element));
-}
-
-int AccessibilityUIElement::indexInTable()
-{
-    // FIXME: implement
-    return -1;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::rowIndexRange()
-{
-    // Range in table for rows.
-    return indexRangeInTable(m_element, true);
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::columnIndexRange()
-{
-    // Range in table for columns.
-    return indexRangeInTable(m_element, false);
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::cellForColumnAndRow(unsigned col, unsigned row)
-{
-    if (!m_element || !ATK_IS_TABLE(m_element))
-        return 0;
-
-    // Adopt the AtkObject representing the cell because
-    // at_table_ref_at() transfers full ownership.
-    GRefPtr<AtkObject> foundCell = adoptGRef(atk_table_ref_at(ATK_TABLE(m_element), row, col));
-    return foundCell ? AccessibilityUIElement::create(foundCell.get()) : 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::horizontalScrollbar() const
-{
-    // FIXME: implement
-    return 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::verticalScrollbar() const
-{
-    // FIXME: implement
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::selectedTextRange()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-void AccessibilityUIElement::setSelectedTextRange(unsigned location, unsigned length)
-{
-    // FIXME: implement
-}
-
-void AccessibilityUIElement::increment()
-{
-    alterCurrentValue(m_element, 1);
-}
-
-void AccessibilityUIElement::decrement()
-{
-    alterCurrentValue(m_element, -1);
-}
-
-void AccessibilityUIElement::showMenu()
-{
-    // FIXME: implement
-}
-
-void AccessibilityUIElement::press()
-{
-    if (!m_element || !ATK_IS_OBJECT(m_element))
-        return;
-
-    if (!ATK_IS_ACTION(m_element))
-        return;
-
-    // Only one action per object is supported so far.
-    atk_action_do_action(ATK_ACTION(m_element), 0);
-}
-
-void AccessibilityUIElement::setSelectedChild(AccessibilityUIElement* element) const
-{
-    // FIXME: implement
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::accessibilityValue() const
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::documentEncoding()
-{
-    if (!m_element || !ATK_IS_OBJECT(m_element))
-        return JSStringCreateWithCharacters(0, 0);
-
-    AtkRole role = atk_object_get_role(ATK_OBJECT(m_element));
-    if (role != ATK_ROLE_DOCUMENT_FRAME)
-        return JSStringCreateWithCharacters(0, 0);
-
-    return JSStringCreateWithUTF8CString(atk_document_get_attribute_value(ATK_DOCUMENT(m_element), "Encoding"));
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::documentURI()
-{
-    if (!m_element || !ATK_IS_OBJECT(m_element))
-        return JSStringCreateWithCharacters(0, 0);
-
-    AtkRole role = atk_object_get_role(ATK_OBJECT(m_element));
-    if (role != ATK_ROLE_DOCUMENT_FRAME)
-        return JSStringCreateWithCharacters(0, 0);
-
-    return JSStringCreateWithUTF8CString(atk_document_get_attribute_value(ATK_DOCUMENT(m_element), "URI"));
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::url()
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-bool AccessibilityUIElement::addNotificationListener(JSValueRef functionCallback)
-{
-    // FIXME: implement
-    return true;
-}
-
-bool AccessibilityUIElement::removeNotificationListener()
-{
-    // FIXME: implement
-    return true;
-}
-
-bool AccessibilityUIElement::isFocusable() const
-{
-    return checkElementState(m_element, ATK_STATE_FOCUSABLE);
-}
-
-bool AccessibilityUIElement::isSelectable() const
-{
-    return checkElementState(m_element, ATK_STATE_SELECTABLE);
-}
-
-bool AccessibilityUIElement::isMultiSelectable() const
-{
-    return checkElementState(m_element, ATK_STATE_MULTISELECTABLE);
-}
-
-bool AccessibilityUIElement::isVisible() const
-{
-    return checkElementState(m_element, ATK_STATE_VISIBLE);
-}
-
-bool AccessibilityUIElement::isOffScreen() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isCollapsed() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isIgnored() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::hasPopup() const
-{
-    // FIXME: implement
-    return false;
-}
-
-void AccessibilityUIElement::takeFocus()
-{
-    // FIXME: implement
-}
-
-void AccessibilityUIElement::takeSelection()
-{
-    // FIXME: implement
-}
-
-void AccessibilityUIElement::addSelection()
-{
-    // FIXME: implement
-}
-
-void AccessibilityUIElement::removeSelection()
-{
-    // FIXME: implement
-}
-
-// Text markers
-PassRefPtr<AccessibilityTextMarkerRange> AccessibilityUIElement::textMarkerRangeForElement(AccessibilityUIElement* element)
-{
-    // FIXME: implement
-    return 0;
-}
-
-int AccessibilityUIElement::textMarkerRangeLength(AccessibilityTextMarkerRange* range)
-{
-    // FIXME: implement
-    return 0;
-}
-
-PassRefPtr<AccessibilityTextMarker> AccessibilityUIElement::previousTextMarker(AccessibilityTextMarker* textMarker)
-{
-    // FIXME: implement
-    return 0;
-}
-
-PassRefPtr<AccessibilityTextMarker> AccessibilityUIElement::nextTextMarker(AccessibilityTextMarker* textMarker)
-{
-    // FIXME: implement
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::stringForTextMarkerRange(AccessibilityTextMarkerRange* markerRange)
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-PassRefPtr<AccessibilityTextMarkerRange> AccessibilityUIElement::textMarkerRangeForMarkers(AccessibilityTextMarker* startMarker, AccessibilityTextMarker* endMarker)
-{
-    // FIXME: implement
-    return 0;
-}
-
-PassRefPtr<AccessibilityTextMarker> AccessibilityUIElement::startTextMarkerForTextMarkerRange(AccessibilityTextMarkerRange* range)
-{
-    // FIXME: implement
-    return 0;
-}
-
-PassRefPtr<AccessibilityTextMarker> AccessibilityUIElement::endTextMarkerForTextMarkerRange(AccessibilityTextMarkerRange* range)
-{
-    // FIXME: implement
-    return 0;
-}
-
-PassRefPtr<AccessibilityTextMarker> AccessibilityUIElement::textMarkerForPoint(int x, int y)
-{
-    // FIXME: implement
-    return 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::accessibilityElementForTextMarker(AccessibilityTextMarker* marker)
-{
-    // FIXME: implement
-    return 0;
-}
-
-bool AccessibilityUIElement::attributedStringForTextMarkerRangeContainsAttribute(JSStringRef attribute, AccessibilityTextMarkerRange* range)
-{
-    // FIXME: implement
-    return false;
-}
-
-int AccessibilityUIElement::indexForTextMarker(AccessibilityTextMarker* marker)
-{
-    // FIXME: implement
-    return -1;
-}
-
-bool AccessibilityUIElement::isTextMarkerValid(AccessibilityTextMarker* textMarker)
-{
-    // FIXME: implement
-    return false;
-}
-
-PassRefPtr<AccessibilityTextMarker> AccessibilityUIElement::textMarkerForIndex(int textIndex)
-{
-    // FIXME: implement
-    return 0;
-}
-
-void AccessibilityUIElement::scrollToMakeVisible()
-{
-    // FIXME: implement
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::supportedActions() const
-{
-    // FIXME: implement
-    return 0;
-}
-
-} // namespace WTR
-
-#endif
diff --git a/Tools/WebKitTestRunner/InjectedBundle/efl/ActivateFontsEfl.cpp b/Tools/WebKitTestRunner/InjectedBundle/efl/ActivateFontsEfl.cpp
deleted file mode 100644
index 7785f77..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/efl/ActivateFontsEfl.cpp
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * Copyright (C) 2012 Samsung Electronics
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this program; see the file COPYING.LIB.  If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-#include "config.h"
-#include "ActivateFonts.h"
-
-#include "FontManagement.h"
-
-namespace WTR {
-
-void activateFonts()
-{
-    addFontsToEnvironment();
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/InjectedBundle/efl/InjectedBundleEfl.cpp b/Tools/WebKitTestRunner/InjectedBundle/efl/InjectedBundleEfl.cpp
deleted file mode 100644
index 1198320..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/efl/InjectedBundleEfl.cpp
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * Copyright (C) 2012 Samsung Electronics
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this program; see the file COPYING.LIB.  If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-#include "config.h"
-#include "InjectedBundle.h"
-
-#include <wtf/Assertions.h>
-
-namespace WTR {
-
-void InjectedBundle::platformInitialize(WKTypeRef)
-{
-    WTFInstallReportBacktraceOnCrashHook();
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/InjectedBundle/efl/TestRunnerEfl.cpp b/Tools/WebKitTestRunner/InjectedBundle/efl/TestRunnerEfl.cpp
deleted file mode 100644
index 9681611..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/efl/TestRunnerEfl.cpp
+++ /dev/null
@@ -1,92 +0,0 @@
-/*
- * Copyright (C) 2012 Samsung Electronics
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this program; see the file COPYING.LIB.  If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-#include "config.h"
-#include "TestRunner.h"
-
-#include "InjectedBundle.h"
-#include <Ecore.h>
-#include <JavaScriptCore/OpaqueJSString.h>
-#include <wtf/text/CString.h>
-#include <wtf/text/WTFString.h>
-
-namespace WTR {
-
-static Eina_Bool waitToDumpWatchdogTimerCallback(void*)
-{
-    InjectedBundle::shared().testRunner()->waitToDumpWatchdogTimerFired();
-    return false;
-}
-
-void TestRunner::platformInitialize()
-{
-    m_waitToDumpWatchdogTimer = 0;
-}
-
-void TestRunner::invalidateWaitToDumpWatchdogTimer()
-{
-    if (!m_waitToDumpWatchdogTimer)
-        return;
-
-    ecore_timer_del(m_waitToDumpWatchdogTimer);
-    m_waitToDumpWatchdogTimer = 0;
-}
-
-void TestRunner::initializeWaitToDumpWatchdogTimerIfNeeded()
-{
-    if (m_waitToDumpWatchdogTimer)
-        return;
-
-    m_waitToDumpWatchdogTimer = ecore_timer_loop_add(waitToDumpWatchdogTimerInterval,
-                                                     waitToDumpWatchdogTimerCallback, 0);
-}
-
-JSRetainPtr<JSStringRef> TestRunner::pathToLocalResource(JSStringRef url)
-{
-    String requestedUrl(url->characters(), url->length());
-    String resourceRoot;
-    String requestedRoot;
-
-    if (requestedUrl.find("LayoutTests") != notFound) {
-        // If the URL contains LayoutTests we need to remap that to
-        // LOCAL_RESOURCE_ROOT which is the path of the LayoutTests directory
-        // within the WebKit source tree.
-        requestedRoot = "/tmp/LayoutTests";
-        resourceRoot = getenv("LOCAL_RESOURCE_ROOT");
-    } else if (requestedUrl.find("tmp") != notFound) {
-        // If the URL is a child of /tmp we need to convert it to be a child
-        // DUMPRENDERTREE_TEMP replace tmp with DUMPRENDERTREE_TEMP
-        requestedRoot = "/tmp";
-        resourceRoot = getenv("DUMPRENDERTREE_TEMP");
-    }
-
-    size_t indexOfRootStart = requestedUrl.reverseFind(requestedRoot);
-    size_t indexOfSeparatorAfterRoot = indexOfRootStart + requestedRoot.length();
-    String fullPathToUrl = "file://" + resourceRoot + requestedUrl.substring(indexOfSeparatorAfterRoot);
-
-    return JSStringCreateWithUTF8CString(fullPathToUrl.utf8().data());
-}
-
-JSRetainPtr<JSStringRef> TestRunner::platformName()
-{
-    JSRetainPtr<JSStringRef> platformName(Adopt, JSStringCreateWithUTF8CString("efl"));
-    return platformName;
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/InjectedBundle/gtk/ActivateFontsGtk.cpp b/Tools/WebKitTestRunner/InjectedBundle/gtk/ActivateFontsGtk.cpp
deleted file mode 100644
index 83ae272..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/gtk/ActivateFontsGtk.cpp
+++ /dev/null
@@ -1,157 +0,0 @@
-/*
- * Copyright (C) 2005, 2006 Apple Computer, Inc.  All rights reserved.
- * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
- * Copyright (C) 2010 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "ActivateFonts.h"
-
-#include "InjectedBundleUtilities.h"
-#include <fontconfig/fontconfig.h>
-#include <gtk/gtk.h>
-#include <wtf/gobject/GlibUtilities.h>
-#include <wtf/gobject/GOwnPtr.h>
-
-namespace WTR {
-
-void initializeGtkSettings()
-{
-    GtkSettings* settings = gtk_settings_get_default();
-    if (!settings)
-        return;
-    g_object_set(settings, 
-                 "gtk-xft-dpi", 98304,
-                 "gtk-xft-antialias", 1,
-                 "gtk-xft-hinting", 0,
-                 "gtk-font-name", "Liberation Sans 12",
-                 "gtk-theme-name", "Raleigh",
-                 "gtk-icon-theme-name", "gnome",
-                 "gtk-xft-rgba", "none", NULL);
-}
-
-CString getOutputDir()
-{
-    const char* webkitOutputDir = g_getenv("WEBKITOUTPUTDIR");
-    if (webkitOutputDir)
-        return webkitOutputDir;
-
-    CString topLevelPath = WTR::topLevelPath();
-    GOwnPtr<char> outputDir(g_build_filename(topLevelPath.data(), "WebKitBuild", NULL));
-    return outputDir.get();
-}
-
-static CString getFontsPath()
-{
-    CString webkitOutputDir = getOutputDir();
-    GOwnPtr<char> fontsPath(g_build_filename(webkitOutputDir.data(), "Dependencies", "Root", "webkitgtk-test-fonts", NULL));
-    if (g_file_test(fontsPath.get(), static_cast<GFileTest>(G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR)))
-        return fontsPath.get();
-
-    // Try alternative fonts path.
-    fontsPath.set(g_build_filename(webkitOutputDir.data(), "webkitgtk-test-fonts", NULL));
-    if (g_file_test(fontsPath.get(), static_cast<GFileTest>(G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR)))
-        return fontsPath.get();
-
-    return CString();
-}
-
-void inititializeFontConfigSetting()
-{
-    FcInit();
-
-    // If a test resulted a font being added or removed via the @font-face rule, then
-    // we want to reset the FontConfig configuration to prevent it from affecting other tests.
-    static int numFonts = 0;
-    FcFontSet* appFontSet = FcConfigGetFonts(0, FcSetApplication);
-    if (appFontSet && numFonts && appFontSet->nfont == numFonts)
-        return;
-
-    // Load our configuration file, which sets up proper aliases for family
-    // names like sans, serif and monospace.
-    FcConfig* config = FcConfigCreate();
-    GOwnPtr<gchar> fontConfigFilename(g_build_filename(FONTS_CONF_DIR, "fonts.conf", NULL));
-    if (!g_file_test(fontConfigFilename.get(), G_FILE_TEST_IS_REGULAR))
-        g_error("Cannot find fonts.conf at %s\n", fontConfigFilename.get());
-    if (!FcConfigParseAndLoad(config, reinterpret_cast<FcChar8*>(fontConfigFilename.get()), true))
-        g_error("Couldn't load font configuration file from: %s", fontConfigFilename.get());
-
-    CString fontsPath = getFontsPath();
-    if (fontsPath.isNull())
-        g_error("Could not locate test fonts at %s. Is WEBKIT_TOP_LEVEL set?", fontsPath.data());
-
-    GOwnPtr<GDir> fontsDirectory(g_dir_open(fontsPath.data(), 0, 0));
-    while (const char* directoryEntry = g_dir_read_name(fontsDirectory.get())) {
-        if (!g_str_has_suffix(directoryEntry, ".ttf") && !g_str_has_suffix(directoryEntry, ".otf"))
-            continue;
-        GOwnPtr<gchar> fontPath(g_build_filename(fontsPath.data(), directoryEntry, NULL));
-        if (!FcConfigAppFontAddFile(config, reinterpret_cast<const FcChar8*>(fontPath.get())))
-            g_error("Could not load font at %s!", fontPath.get());
-    }
-
-    // Ahem is used by many layout tests.
-    GOwnPtr<gchar> ahemFontFilename(g_build_filename(FONTS_CONF_DIR, "AHEM____.TTF", NULL));
-    if (!FcConfigAppFontAddFile(config, reinterpret_cast<FcChar8*>(ahemFontFilename.get())))
-        g_error("Could not load font at %s!", ahemFontFilename.get()); 
-
-    static const char* fontFilenames[] = {
-        "WebKitWeightWatcher100.ttf",
-        "WebKitWeightWatcher200.ttf",
-        "WebKitWeightWatcher300.ttf",
-        "WebKitWeightWatcher400.ttf",
-        "WebKitWeightWatcher500.ttf",
-        "WebKitWeightWatcher600.ttf",
-        "WebKitWeightWatcher700.ttf",
-        "WebKitWeightWatcher800.ttf",
-        "WebKitWeightWatcher900.ttf",
-        0
-    };
-
-    for (size_t i = 0; fontFilenames[i]; ++i) {
-        GOwnPtr<gchar> fontFilename(g_build_filename(FONTS_CONF_DIR, "..", "..", "fonts", fontFilenames[i], NULL));
-        if (!FcConfigAppFontAddFile(config, reinterpret_cast<FcChar8*>(fontFilename.get())))
-            g_error("Could not load font at %s!", fontFilename.get()); 
-    }
-
-    // A font with no valid Fontconfig encoding to test https://bugs.webkit.org/show_bug.cgi?id=47452
-    GOwnPtr<gchar> fontWithNoValidEncodingFilename(g_build_filename(FONTS_CONF_DIR, "FontWithNoValidEncoding.fon", NULL));
-    if (!FcConfigAppFontAddFile(config, reinterpret_cast<FcChar8*>(fontWithNoValidEncodingFilename.get())))
-        g_error("Could not load font at %s!", fontWithNoValidEncodingFilename.get()); 
-
-    if (!FcConfigSetCurrent(config))
-        g_error("Could not set the current font configuration!");
-
-    numFonts = FcConfigGetFonts(config, FcSetApplication)->nfont;
-}
-
-void activateFonts()
-{
-    initializeGtkSettings();
-    inititializeFontConfigSetting();
-}
-
-}
diff --git a/Tools/WebKitTestRunner/InjectedBundle/gtk/InjectedBundleGtk.cpp b/Tools/WebKitTestRunner/InjectedBundle/gtk/InjectedBundleGtk.cpp
deleted file mode 100644
index ba08431..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/gtk/InjectedBundleGtk.cpp
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- * Copyright (C) 2011 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundle.h"
-
-#include <cstdio>
-#include <glib.h>
-
-namespace WTR {
-
-static void logHandler(const gchar* domain, GLogLevelFlags level, const gchar* message, gpointer data)
-{
-    if (level < G_LOG_LEVEL_DEBUG)
-        fprintf(stderr, "%s\n", message);
-}
-
-void InjectedBundle::platformInitialize(WKTypeRef)
-{
-    // Some plugins might try to use the GLib logger for printing debug messages. This
-    // will cause tests to fail because of unexpected output. We squelch all debug
-    // messages sent to the logger.
-    g_log_set_default_handler(logHandler, 0);
-
-    if (!g_getenv("WEBKIT_TOP_LEVEL"))
-        g_setenv("WEBKIT_TOP_LEVEL", TOP_LEVEL_DIR, FALSE);
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/InjectedBundle/gtk/InjectedBundleUtilities.cpp b/Tools/WebKitTestRunner/InjectedBundle/gtk/InjectedBundleUtilities.cpp
deleted file mode 100644
index 1f539ba..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/gtk/InjectedBundleUtilities.cpp
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- * Copyright (C) 2013 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundleUtilities.h"
-
-#include <gtk/gtk.h>
-#include <wtf/gobject/GOwnPtr.h>
-#include <wtf/gobject/GlibUtilities.h>
-
-namespace WTR {
-
-CString topLevelPath()
-{
-    if (const char* topLevelDirectory = g_getenv("WEBKIT_TOP_LEVEL"))
-        return topLevelDirectory;
-
-    // If the environment variable wasn't provided then assume we were built into
-    // WebKitBuild/Debug or WebKitBuild/Release. Obviously this will fail if the build
-    // directory is non-standard, but we can't do much more about this.
-    GOwnPtr<char> parentPath(g_path_get_dirname(getCurrentExecutablePath().data()));
-    GOwnPtr<char> layoutTestsPath(g_build_filename(parentPath.get(), "..", "..", "..", NULL));
-    GOwnPtr<char> absoluteTopLevelPath(realpath(layoutTestsPath.get(), 0));
-    return absoluteTopLevelPath.get();
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/InjectedBundle/gtk/InjectedBundleUtilities.h b/Tools/WebKitTestRunner/InjectedBundle/gtk/InjectedBundleUtilities.h
deleted file mode 100644
index 50f89de..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/gtk/InjectedBundleUtilities.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * Copyright (C) 2013 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef InjectedBundleUtilities_h
-#define InjectedBundleUtilities_h
-
-#include <wtf/text/CString.h>
-
-namespace WTR {
-
-CString topLevelPath();
-
-} // namespace WTR
-
-#endif // InjectedBundleUtilities_h
diff --git a/Tools/WebKitTestRunner/InjectedBundle/gtk/TestRunnerGtk.cpp b/Tools/WebKitTestRunner/InjectedBundle/gtk/TestRunnerGtk.cpp
deleted file mode 100644
index b50a332..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/gtk/TestRunnerGtk.cpp
+++ /dev/null
@@ -1,86 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- * Copyright (C) 2011 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "TestRunner.h"
-
-#include "InjectedBundle.h"
-#include "InjectedBundleUtilities.h"
-#include <glib.h>
-#include <wtf/gobject/GOwnPtr.h>
-
-namespace WTR {
-
-static gboolean waitToDumpWatchdogTimerCallback(gpointer)
-{
-    InjectedBundle::shared().testRunner()->waitToDumpWatchdogTimerFired();
-    return FALSE;
-}
-
-void TestRunner::platformInitialize()
-{
-    m_waitToDumpWatchdogTimer = 0;
-}
-
-void TestRunner::invalidateWaitToDumpWatchdogTimer()
-{
-    if (!m_waitToDumpWatchdogTimer)
-        return;
-    g_source_remove(m_waitToDumpWatchdogTimer);
-    m_waitToDumpWatchdogTimer = 0;
-}
-
-void TestRunner::initializeWaitToDumpWatchdogTimerIfNeeded()
-{
-    if (m_waitToDumpWatchdogTimer)
-        return;
-
-    m_waitToDumpWatchdogTimer = g_timeout_add(waitToDumpWatchdogTimerInterval * 1000,
-                                              waitToDumpWatchdogTimerCallback, 0);
-}
-
-JSRetainPtr<JSStringRef> TestRunner::pathToLocalResource(JSStringRef url)
-{
-    size_t urlSize = JSStringGetMaximumUTF8CStringSize(url);
-    GOwnPtr<gchar> urlString(static_cast<gchar*>(g_malloc(urlSize)));
-    JSStringGetUTF8CString(url, urlString.get(), urlSize);
-
-    if (!g_str_has_prefix(urlString.get(), "file:///tmp/LayoutTests/"))
-        return JSStringRetain(url);
-
-    const gchar* layoutTestsSuffix = urlString.get() + strlen("file:///tmp/");
-    GOwnPtr<gchar> testPath(g_build_filename(WTR::topLevelPath().data(), layoutTestsSuffix, NULL));
-    GOwnPtr<gchar> testURI(g_filename_to_uri(testPath.get(), 0, 0));
-    return JSStringCreateWithUTF8CString(testURI.get());
-}
-
-JSRetainPtr<JSStringRef> TestRunner::platformName()
-{
-    JSRetainPtr<JSStringRef> platformName(Adopt, JSStringCreateWithUTF8CString("gtk"));
-    return platformName;
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/InjectedBundle/mac/AccessibilityCommonMac.h b/Tools/WebKitTestRunner/InjectedBundle/mac/AccessibilityCommonMac.h
deleted file mode 100644
index c8b9125..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/mac/AccessibilityCommonMac.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * Copyright (C) 2012 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *     * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef AccessibilityCommonMac_h
-#define AccessibilityCommonMac_h
-
-#import <JavaScriptCore/JSStringRef.h>
-
-// If an unsupported attribute is passed in, it will raise an accessibility exception. These are usually caught by the Accessibility Runtime to inform
-// the AX client app of the error. However, DRT is the AX client app, so it must catch these exceptions.
-#define BEGIN_AX_OBJC_EXCEPTIONS @try {
-#define END_AX_OBJC_EXCEPTIONS } @catch(NSException *e) { if (![[e name] isEqualToString:NSAccessibilityException]) @throw; }
-
-
-@interface NSString (JSStringRefAdditions)
-+ (NSString *)stringWithJSStringRef:(JSStringRef)jsStringRef;
-- (JSStringRef)createJSStringRef;
-@end
-
-#endif // AccessibilityCommonMac_h
diff --git a/Tools/WebKitTestRunner/InjectedBundle/mac/AccessibilityCommonMac.mm b/Tools/WebKitTestRunner/InjectedBundle/mac/AccessibilityCommonMac.mm
deleted file mode 100644
index 082c0f0..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/mac/AccessibilityCommonMac.mm
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- * Copyright (C) 2012 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *     * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "AccessibilityCommonMac.h"
-
-#import <JavaScriptCore/JSStringRefCF.h>
-
-@implementation NSString (JSStringRefAdditions)
-
-+ (NSString *)stringWithJSStringRef:(JSStringRef)jsStringRef
-{
-    if (!jsStringRef)
-        return nil;
-
-    CFStringRef cfString = JSStringCopyCFString(kCFAllocatorDefault, jsStringRef);
-    return [(NSString *)cfString autorelease];
-}
-
-- (JSStringRef)createJSStringRef
-{
-    return JSStringCreateWithCFString((CFStringRef)self);
-}
-
-@end
diff --git a/Tools/WebKitTestRunner/InjectedBundle/mac/AccessibilityControllerMac.mm b/Tools/WebKitTestRunner/InjectedBundle/mac/AccessibilityControllerMac.mm
deleted file mode 100644
index fefddc7..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/mac/AccessibilityControllerMac.mm
+++ /dev/null
@@ -1,112 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *     * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "AccessibilityCommonMac.h"
-#import "AccessibilityController.h"
-#import "AccessibilityNotificationHandler.h"
-#import "InjectedBundle.h"
-#import "InjectedBundlePage.h"
-
-#import <JavaScriptCore/JSRetainPtr.h>
-#import <JavaScriptCore/JSStringRef.h>
-#import <JavaScriptCore/JSStringRefCF.h>
-#import <WebKit2/WKBundle.h>
-#import <WebKit2/WKBundlePage.h>
-#import <WebKit2/WKBundlePagePrivate.h>
-
-namespace WTR {
-
-bool AccessibilityController::addNotificationListener(JSValueRef functionCallback)
-{
-    if (!functionCallback)
-        return false;
-
-    if (m_globalNotificationHandler)
-        return false;
-    m_globalNotificationHandler = [[AccessibilityNotificationHandler alloc] init];
-    [m_globalNotificationHandler.get() setCallback:functionCallback];
-    [m_globalNotificationHandler.get() startObserving];
-
-    return true;
-}
-
-bool AccessibilityController::removeNotificationListener()
-{
-    ASSERT(m_globalNotificationHandler);
-    
-    [m_globalNotificationHandler.get() stopObserving];
-    m_globalNotificationHandler.clear();
-
-    return true;
-}
-
-void AccessibilityController::logAccessibilityEvents()
-{
-}
-
-void AccessibilityController::resetToConsistentState()
-{
-    if (m_globalNotificationHandler)
-        removeNotificationListener();
-}
-
-static id findAccessibleObjectById(id obj, NSString *idAttribute)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id objIdAttribute = [obj accessibilityAttributeValue:@"AXDRTElementIdAttribute"];
-    if ([objIdAttribute isKindOfClass:[NSString class]] && [objIdAttribute isEqualToString:idAttribute])
-        return obj;
-    END_AX_OBJC_EXCEPTIONS
-
-    NSArray *children = [obj accessibilityAttributeValue:NSAccessibilityChildrenAttribute];
-    NSUInteger childrenCount = [children count];
-    for (NSUInteger i = 0; i < childrenCount; ++i) {
-        id result = findAccessibleObjectById([children objectAtIndex:i], idAttribute);
-        if (result)
-            return result;
-    }
-
-    return 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityController::accessibleElementById(JSStringRef idAttribute)
-{
-    WKBundlePageRef page = InjectedBundle::shared().page()->page();
-    id root = static_cast<PlatformUIElement>(WKAccessibilityRootObject(page));
-
-    id result = findAccessibleObjectById(root, [NSString stringWithJSStringRef:idAttribute]);
-    if (result)
-        return AccessibilityUIElement::create(result);
-
-    return 0;
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/InjectedBundle/mac/AccessibilityNotificationHandler.h b/Tools/WebKitTestRunner/InjectedBundle/mac/AccessibilityNotificationHandler.h
deleted file mode 100644
index 2c16088..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/mac/AccessibilityNotificationHandler.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *     * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef AccessibilityNotificationHandler_h
-#define AccessibilityNotificationHandler_h
-
-#import <JavaScriptCore/JSObjectRef.h>
-
-@interface AccessibilityNotificationHandler : NSObject {
-    id m_platformElement;
-    JSValueRef m_notificationFunctionCallback;
-}
-
-- (id)init;
-- (void)setPlatformElement:(id)platformElement;
-- (void)setCallback:(JSValueRef)callback;
-- (void)startObserving;
-- (void)stopObserving;
-
-@end
-
-#endif // AccessibilityNotificationHandler_h
diff --git a/Tools/WebKitTestRunner/InjectedBundle/mac/AccessibilityNotificationHandler.mm b/Tools/WebKitTestRunner/InjectedBundle/mac/AccessibilityNotificationHandler.mm
deleted file mode 100644
index a3a0233..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/mac/AccessibilityNotificationHandler.mm
+++ /dev/null
@@ -1,146 +0,0 @@
-/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *     * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "InjectedBundle.h"
-#import "InjectedBundlePage.h"
-#import "JSWrapper.h"
-#import "AccessibilityNotificationHandler.h"
-#import "AccessibilityUIElement.h"
-
-#import <JavaScriptCore/JSRetainPtr.h>
-#import <JavaScriptCore/JSStringRef.h>
-#import <JavaScriptCore/JSStringRefCF.h>
-#import <WebKit2/WKBundleFrame.h>
-#import <wtf/RetainPtr.h>
-
-@interface NSObject (WebAccessibilityObjectWrapperAdditions)
-+ (void)accessibilitySetShouldRepostNotifications:(BOOL)repost;
-@end
-
-@interface NSString (JSStringRefAdditions)
-- (JSStringRef)createJSStringRef;
-@end
-
-@implementation NSString (JSStringRefAdditions)
-
-- (JSStringRef)createJSStringRef
-{
-    return JSStringCreateWithCFString((CFStringRef)self);
-}
-
-@end
-
-@implementation AccessibilityNotificationHandler
-
-- (id)init
-{
-    if (!(self = [super init]))
-        return nil;
-
-    return self;
-}
-
-- (void)setPlatformElement:(id)platformElement
-{
-    m_platformElement = platformElement;
-}
-
-- (void)dealloc
-{
-    [self stopObserving];
-
-    WKBundleFrameRef mainFrame = WKBundlePageGetMainFrame(WTR::InjectedBundle::shared().page()->page());
-    JSContextRef context = WKBundleFrameGetJavaScriptContext(mainFrame);
-
-    JSValueUnprotect(context, m_notificationFunctionCallback);
-    m_notificationFunctionCallback = 0;
-
-    [super dealloc];
-}
-
-- (void)setCallback:(JSValueRef)callback
-{
-    if (!callback)
-        return;
-
-    WKBundleFrameRef mainFrame = WKBundlePageGetMainFrame(WTR::InjectedBundle::shared().page()->page());
-    JSContextRef context = WKBundleFrameGetJavaScriptContext(mainFrame);
-
-    if (m_notificationFunctionCallback)
-        JSValueUnprotect(context, m_notificationFunctionCallback);
-
-    m_notificationFunctionCallback = callback;
-    JSValueProtect(context, m_notificationFunctionCallback);
-}
-
-- (void)startObserving
-{
-    // Once we start requesting notifications, it's on for the duration of the program.
-    // This is to avoid any race conditions between tests turning this flag on and off. Instead
-    // AccessibilityNotificationHandler can ignore events it doesn't care about.
-    id webAccessibilityObjectWrapperClass = NSClassFromString(@"WebAccessibilityObjectWrapper");
-    ASSERT(webAccessibilityObjectWrapperClass);
-    [webAccessibilityObjectWrapperClass accessibilitySetShouldRepostNotifications:YES];
-    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(_notificationReceived:) name:@"AXDRTNotification" object:nil];
-}
-
-- (void)stopObserving
-{
-    [[NSNotificationCenter defaultCenter] removeObserver:self];
-}
-
-- (void)_notificationReceived:(NSNotification *)notification
-{
-    NSString *notificationName = [[notification userInfo] objectForKey:@"notificationName"];
-    if (!notificationName)
-        return;
-    if (m_platformElement && m_platformElement != [notification object])
-        return;
-
-    WKBundleFrameRef mainFrame = WKBundlePageGetMainFrame(WTR::InjectedBundle::shared().page()->page());
-    JSContextRef context = WKBundleFrameGetJavaScriptContext(mainFrame);
-
-    JSRetainPtr<JSStringRef> jsNotification(Adopt, [notificationName createJSStringRef]);
-    JSValueRef notificationNameArgument = JSValueMakeString(context, jsNotification.get());
-    if (m_platformElement) {
-        // Listener for one element just gets one argument, the notification name.
-        JSObjectCallAsFunction(context, const_cast<JSObjectRef>(m_notificationFunctionCallback), 0, 1, &notificationNameArgument, 0);
-    } else {
-        // A global listener gets the element and the notification name as arguments.
-        JSValueRef arguments[2];
-        arguments[0] = toJS(context, WTF::getPtr(WTR::AccessibilityUIElement::create([notification object])));
-        arguments[1] = notificationNameArgument;
-        JSObjectCallAsFunction(context, const_cast<JSObjectRef>(m_notificationFunctionCallback), 0, 2, arguments, 0);
-    }
-}
-
-@end
-
diff --git a/Tools/WebKitTestRunner/InjectedBundle/mac/AccessibilityTextMarkerMac.mm b/Tools/WebKitTestRunner/InjectedBundle/mac/AccessibilityTextMarkerMac.mm
deleted file mode 100644
index face90c..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/mac/AccessibilityTextMarkerMac.mm
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#import "AccessibilityTextMarker.h"
-
-namespace WTR {
-
-bool AccessibilityTextMarker::isEqual(AccessibilityTextMarker* other)
-{
-    return [(id)platformTextMarker() isEqual:(id)other->platformTextMarker()];
-}
-
-} // namespace WTR
-
diff --git a/Tools/WebKitTestRunner/InjectedBundle/mac/AccessibilityTextMarkerRangeMac.mm b/Tools/WebKitTestRunner/InjectedBundle/mac/AccessibilityTextMarkerRangeMac.mm
deleted file mode 100644
index 2186497..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/mac/AccessibilityTextMarkerRangeMac.mm
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#import "AccessibilityTextMarkerRange.h"
-
-namespace WTR {
-    
-bool AccessibilityTextMarkerRange::isEqual(AccessibilityTextMarkerRange* other)
-{
-    return [(id)platformTextMarkerRange() isEqual:(id)other->platformTextMarkerRange()];
-}
-    
-} // namespace WTR
-
diff --git a/Tools/WebKitTestRunner/InjectedBundle/mac/AccessibilityUIElementMac.mm b/Tools/WebKitTestRunner/InjectedBundle/mac/AccessibilityUIElementMac.mm
deleted file mode 100644
index ec0bd30..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/mac/AccessibilityUIElementMac.mm
+++ /dev/null
@@ -1,1459 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#import "config.h"
-#import "AccessibilityCommonMac.h"
-#import "AccessibilityNotificationHandler.h"
-#import "AccessibilityUIElement.h"
-#import "InjectedBundle.h"
-#import "InjectedBundlePage.h"
-
-#import <AppKit/NSAccessibility.h>
-#import <Foundation/Foundation.h>
-#import <JavaScriptCore/JSRetainPtr.h>
-#import <JavaScriptCore/JSStringRef.h>
-#import <JavaScriptCore/JSStringRefCF.h>
-#import <WebKit2/WKBundleFrame.h>
-#import <wtf/RetainPtr.h>
-#import <wtf/Vector.h>
-
-
-#ifndef NSAccessibilityOwnsAttribute
-#define NSAccessibilityOwnsAttribute @"AXOwns"
-#endif
-
-#ifndef NSAccessibilityGrabbedAttribute
-#define NSAccessibilityGrabbedAttribute @"AXGrabbed"
-#endif
-
-#ifndef NSAccessibilityDropEffectsAttribute
-#define NSAccessibilityDropEffectsAttribute @"AXDropEffects"
-#endif
-
-typedef void (*AXPostedNotificationCallback)(id element, NSString* notification, void* context);
-
-@interface NSObject (WebKitAccessibilityAdditions)
-- (NSArray *)accessibilityArrayAttributeValues:(NSString *)attribute index:(NSUInteger)index maxCount:(NSUInteger)maxCount;
-- (NSUInteger)accessibilityIndexOfChild:(id)child;
-- (NSUInteger)accessibilityArrayAttributeCount:(NSString *)attribute;
-@end
-
-namespace WTR {
-
-AccessibilityUIElement::AccessibilityUIElement(PlatformUIElement element)
-    : m_element(element)
-    , m_notificationHandler(0)
-{
-    // FIXME: ap@webkit.org says ObjC objects need to be CFRetained/CFRelease to be GC-compliant on the mac.
-    [m_element retain];
-}
-
-AccessibilityUIElement::AccessibilityUIElement(const AccessibilityUIElement& other)
-    : JSWrappable()
-    , m_element(other.m_element)
-    , m_notificationHandler(0)
-{
-    [m_element retain];
-}
-
-AccessibilityUIElement::~AccessibilityUIElement()
-{
-    // The notification handler should be nil because removeNotificationListener() should have been called in the test.
-    ASSERT(!m_notificationHandler);
-    [m_element release];
-}
-
-bool AccessibilityUIElement::isEqual(AccessibilityUIElement* otherElement)
-{
-    if (!otherElement)
-        return false;
-    return platformUIElement() == otherElement->platformUIElement();
-}
-    
-static NSString* descriptionOfValue(id valueObject, id focusedAccessibilityObject)
-{
-    if (!valueObject)
-        return NULL;
-
-    if ([valueObject isKindOfClass:[NSArray class]])
-        return [NSString stringWithFormat:@"<array of size %lu>", static_cast<unsigned long>([(NSArray*)valueObject count])];
-
-    if ([valueObject isKindOfClass:[NSNumber class]])
-        return [(NSNumber*)valueObject stringValue];
-
-    if ([valueObject isKindOfClass:[NSValue class]]) {
-        NSString* type = [NSString stringWithCString:[valueObject objCType] encoding:NSASCIIStringEncoding];
-        NSValue* value = (NSValue*)valueObject;
-        if ([type rangeOfString:@"NSRect"].length > 0)
-            return [NSString stringWithFormat:@"NSRect: %@", NSStringFromRect([value rectValue])];
-        if ([type rangeOfString:@"NSPoint"].length > 0)
-            return [NSString stringWithFormat:@"NSPoint: %@", NSStringFromPoint([value pointValue])];
-        if ([type rangeOfString:@"NSSize"].length > 0)
-            return [NSString stringWithFormat:@"NSSize: %@", NSStringFromSize([value sizeValue])];
-        if ([type rangeOfString:@"NSRange"].length > 0)
-            return [NSString stringWithFormat:@"NSRange: %@", NSStringFromRange([value rangeValue])];
-    }
-
-    // Strip absolute URL paths
-    NSString* description = [valueObject description];
-    NSRange range = [description rangeOfString:@"LayoutTests"];
-    if (range.length)
-        return [description substringFromIndex:range.location];
-
-    // Strip pointer locations
-    if ([description rangeOfString:@"0x"].length) {
-        NSString* role = [focusedAccessibilityObject accessibilityAttributeValue:NSAccessibilityRoleAttribute];
-        NSString* title = [focusedAccessibilityObject accessibilityAttributeValue:NSAccessibilityTitleAttribute];
-        if ([title length])
-            return [NSString stringWithFormat:@"<%@: '%@'>", role, title];
-        return [NSString stringWithFormat:@"<%@>", role];
-    }
-    
-    return [valueObject description];
-}
-
-static NSString* attributesOfElement(id accessibilityObject)
-{
-    NSArray* supportedAttributes = [accessibilityObject accessibilityAttributeNames];
-
-    NSMutableString* attributesString = [NSMutableString string];
-    for (NSUInteger i = 0; i < [supportedAttributes count]; ++i) {
-        NSString* attribute = [supportedAttributes objectAtIndex:i];
-        
-        // Right now, position provides useless and screen-specific information, so we do not
-        // want to include it for the sake of universally passing tests.
-        if ([attribute isEqualToString:@"AXPosition"])
-            continue;
-        
-        // accessibilityAttributeValue: can throw an if an attribute is not returned.
-        // For DumpRenderTree's purpose, we should ignore those exceptions
-        BEGIN_AX_OBJC_EXCEPTIONS
-        id valueObject = [accessibilityObject accessibilityAttributeValue:attribute];
-        NSString* value = descriptionOfValue(valueObject, accessibilityObject);
-        [attributesString appendFormat:@"%@: %@\n", attribute, value];
-        END_AX_OBJC_EXCEPTIONS
-    }
-    
-    return attributesString;
-}
-
-static JSStringRef concatenateAttributeAndValue(NSString* attribute, NSString* value)
-{
-    Vector<UniChar> buffer([attribute length]);
-    [attribute getCharacters:buffer.data()];
-    buffer.append(':');
-    buffer.append(' ');
-
-    Vector<UniChar> valueBuffer([value length]);
-    [value getCharacters:valueBuffer.data()];
-    buffer.append(valueBuffer);
-
-    return JSStringCreateWithCharacters(buffer.data(), buffer.size());
-}
-
-static void convertNSArrayToVector(NSArray* array, Vector<RefPtr<AccessibilityUIElement> >& elementVector)
-{
-    NSUInteger count = [array count];
-    for (NSUInteger i = 0; i < count; ++i)
-        elementVector.append(AccessibilityUIElement::create([array objectAtIndex:i]));
-}
-
-static JSStringRef descriptionOfElements(Vector<RefPtr<AccessibilityUIElement> >& elementVector)
-{
-    NSMutableString* allElementString = [NSMutableString string];
-    size_t size = elementVector.size();
-    for (size_t i = 0; i < size; ++i) {
-        RefPtr<AccessibilityUIElement> uiElement = elementVector[i];
-        NSString* attributes = attributesOfElement(uiElement->platformUIElement());
-        [allElementString appendFormat:@"%@\n------------\n", attributes];
-    }
-    
-    return [allElementString createJSStringRef];
-}
-
-void AccessibilityUIElement::getLinkedUIElements(Vector<RefPtr<AccessibilityUIElement> >& elementVector)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* linkedElements = [m_element accessibilityAttributeValue:NSAccessibilityLinkedUIElementsAttribute];
-    convertNSArrayToVector(linkedElements, elementVector);
-    END_AX_OBJC_EXCEPTIONS
-}
-
-void AccessibilityUIElement::getDocumentLinks(Vector<RefPtr<AccessibilityUIElement> >& elementVector)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* linkElements = [m_element accessibilityAttributeValue:@"AXLinkUIElements"];
-    convertNSArrayToVector(linkElements, elementVector);
-    END_AX_OBJC_EXCEPTIONS
-}
-
-void AccessibilityUIElement::getChildren(Vector<RefPtr<AccessibilityUIElement> >& elementVector)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* children = [m_element accessibilityAttributeValue:NSAccessibilityChildrenAttribute];
-    convertNSArrayToVector(children, elementVector);
-    END_AX_OBJC_EXCEPTIONS
-}
-
-void AccessibilityUIElement::getChildrenWithRange(Vector<RefPtr<AccessibilityUIElement> >& elementVector, unsigned location, unsigned length)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* children = [m_element accessibilityArrayAttributeValues:NSAccessibilityChildrenAttribute index:location maxCount:length];
-    convertNSArrayToVector(children, elementVector);
-    END_AX_OBJC_EXCEPTIONS
-}
-
-int AccessibilityUIElement::childrenCount()
-{
-    Vector<RefPtr<AccessibilityUIElement> > children;
-    getChildren(children);
-    
-    return children.size();
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::elementAtPoint(int x, int y)
-{
-    id element = [m_element accessibilityHitTest:NSMakePoint(x, y)];
-    if (!element)
-        return nil;
-    
-    return AccessibilityUIElement::create(element);
-}
-
-unsigned AccessibilityUIElement::indexOfChild(AccessibilityUIElement* element)
-{
-    return [m_element accessibilityIndexOfChild:element->platformUIElement()];
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::childAtIndex(unsigned index)
-{
-    Vector<RefPtr<AccessibilityUIElement> > children;
-    getChildrenWithRange(children, index, 1);
-
-    if (children.size() == 1)
-        return children[0];
-    return 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::linkedUIElementAtIndex(unsigned index)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* objects = [m_element accessibilityAttributeValue:NSAccessibilityLinkedUIElementsAttribute];
-    if (index < [objects count])
-        return AccessibilityUIElement::create([objects objectAtIndex:index]);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::ariaOwnsElementAtIndex(unsigned index)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* objects = [m_element accessibilityAttributeValue:NSAccessibilityOwnsAttribute];
-    if (index < [objects count])
-        return AccessibilityUIElement::create([objects objectAtIndex:index]);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::ariaFlowToElementAtIndex(unsigned index)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* objects = [m_element accessibilityAttributeValue:NSAccessibilityLinkedUIElementsAttribute];
-    if (index < [objects count])
-        return AccessibilityUIElement::create([objects objectAtIndex:index]);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::disclosedRowAtIndex(unsigned index)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* rows = [m_element accessibilityAttributeValue:NSAccessibilityDisclosedRowsAttribute];
-    if (index < [rows count])
-        return AccessibilityUIElement::create([rows objectAtIndex:index]);
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0;
-}
-    
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::rowAtIndex(unsigned index)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* rows = [m_element accessibilityAttributeValue:NSAccessibilityRowsAttribute];
-    if (index < [rows count])
-        return AccessibilityUIElement::create([rows objectAtIndex:index]);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::selectedChildAtIndex(unsigned index) const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* array = [m_element accessibilityAttributeValue:NSAccessibilitySelectedChildrenAttribute];
-    if (index < [array count])
-        return AccessibilityUIElement::create([array objectAtIndex:index]);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-unsigned AccessibilityUIElement::selectedChildrenCount() const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    return [m_element accessibilityArrayAttributeCount:NSAccessibilitySelectedChildrenAttribute];
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::selectedRowAtIndex(unsigned index)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* rows = [m_element accessibilityAttributeValue:NSAccessibilitySelectedRowsAttribute];
-    if (index < [rows count])
-        return AccessibilityUIElement::create([rows objectAtIndex:index]);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::titleUIElement()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id accessibilityObject = [m_element accessibilityAttributeValue:NSAccessibilityTitleUIElementAttribute];
-    if (accessibilityObject)
-        return AccessibilityUIElement::create(accessibilityObject);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::parentElement()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id accessibilityObject = [m_element accessibilityAttributeValue:NSAccessibilityParentAttribute];
-    if (accessibilityObject)
-        return AccessibilityUIElement::create(accessibilityObject);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::disclosedByRow()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id accessibilityObject = [m_element accessibilityAttributeValue:NSAccessibilityDisclosedByRowAttribute];
-    if (accessibilityObject)
-        return AccessibilityUIElement::create(accessibilityObject);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributesOfLinkedUIElements()
-{
-    Vector<RefPtr<AccessibilityUIElement> > linkedElements;
-    getLinkedUIElements(linkedElements);
-    return descriptionOfElements(linkedElements);
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributesOfDocumentLinks()
-{
-    Vector<RefPtr<AccessibilityUIElement> > linkElements;
-    getDocumentLinks(linkElements);
-    return descriptionOfElements(linkElements);
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributesOfChildren()
-{
-    Vector<RefPtr<AccessibilityUIElement> > children;
-    getChildren(children);
-    return descriptionOfElements(children);
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::allAttributes()
-{
-    NSString* attributes = attributesOfElement(m_element);
-    return [attributes createJSStringRef];
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::stringAttributeValue(JSStringRef attribute)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:[NSString stringWithJSStringRef:attribute]];
-    if ([value isKindOfClass:[NSString class]])
-        return [value createJSStringRef];
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0;
-}
-
-double AccessibilityUIElement::numberAttributeValue(JSStringRef attribute)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:[NSString stringWithJSStringRef:attribute]];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [value doubleValue];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::uiElementAttributeValue(JSStringRef attribute) const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id uiElement = [m_element accessibilityAttributeValue:[NSString stringWithJSStringRef:attribute]];
-    return AccessibilityUIElement::create(uiElement);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-    
-bool AccessibilityUIElement::boolAttributeValue(JSStringRef attribute)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:[NSString stringWithJSStringRef:attribute]];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [value boolValue];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return false;
-}
-
-bool AccessibilityUIElement::isAttributeSettable(JSStringRef attribute)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    return [m_element accessibilityIsAttributeSettable:[NSString stringWithJSStringRef:attribute]];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return false;
-}
-
-bool AccessibilityUIElement::isAttributeSupported(JSStringRef attribute)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    return [[m_element accessibilityAttributeNames] containsObject:[NSString stringWithJSStringRef:attribute]];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return false;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::parameterizedAttributeNames()
-{
-    NSArray* supportedParameterizedAttributes = [m_element accessibilityParameterizedAttributeNames];
-    
-    NSMutableString* attributesString = [NSMutableString string];
-    for (NSUInteger i = 0; i < [supportedParameterizedAttributes count]; ++i) {
-        [attributesString appendFormat:@"%@\n", [supportedParameterizedAttributes objectAtIndex:i]];
-    }
-    
-    return [attributesString createJSStringRef];
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::role()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSString *role = descriptionOfValue([m_element accessibilityAttributeValue:NSAccessibilityRoleAttribute], m_element);
-    return concatenateAttributeAndValue(@"AXRole", role);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::subrole()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSString* role = descriptionOfValue([m_element accessibilityAttributeValue:NSAccessibilitySubroleAttribute], m_element);
-    return concatenateAttributeAndValue(@"AXSubrole", role);
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::roleDescription()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSString* role = descriptionOfValue([m_element accessibilityAttributeValue:NSAccessibilityRoleDescriptionAttribute], m_element);
-    return concatenateAttributeAndValue(@"AXRoleDescription", role);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::title()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSString* title = descriptionOfValue([m_element accessibilityAttributeValue:NSAccessibilityTitleAttribute], m_element);
-    return concatenateAttributeAndValue(@"AXTitle", title);
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::description()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id description = descriptionOfValue([m_element accessibilityAttributeValue:NSAccessibilityDescriptionAttribute], m_element);
-    return concatenateAttributeAndValue(@"AXDescription", description);
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::orientation() const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id description = descriptionOfValue([m_element accessibilityAttributeValue:NSAccessibilityOrientationAttribute], m_element);
-    return concatenateAttributeAndValue(@"AXOrientation", description);    
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::stringValue()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id description = descriptionOfValue([m_element accessibilityAttributeValue:NSAccessibilityValueAttribute], m_element);
-    return concatenateAttributeAndValue(@"AXValue", description);
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::language()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id description = descriptionOfValue([m_element accessibilityAttributeValue:@"AXLanguage"], m_element);
-    return concatenateAttributeAndValue(@"AXLanguage", description);
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::helpText() const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id description = descriptionOfValue([m_element accessibilityAttributeValue:NSAccessibilityHelpAttribute], m_element);
-    return concatenateAttributeAndValue(@"AXHelp", description);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-double AccessibilityUIElement::x()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSValue* positionValue = [m_element accessibilityAttributeValue:NSAccessibilityPositionAttribute];
-    return static_cast<double>([positionValue pointValue].x);    
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0.0f;
-}
-
-double AccessibilityUIElement::y()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSValue* positionValue = [m_element accessibilityAttributeValue:NSAccessibilityPositionAttribute];
-    return static_cast<double>([positionValue pointValue].y);    
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0.0f;
-}
-
-double AccessibilityUIElement::width()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSValue* sizeValue = [m_element accessibilityAttributeValue:NSAccessibilitySizeAttribute];
-    return static_cast<double>([sizeValue sizeValue].width);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0.0f;
-}
-
-double AccessibilityUIElement::height()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSValue* sizeValue = [m_element accessibilityAttributeValue:NSAccessibilitySizeAttribute];
-    return static_cast<double>([sizeValue sizeValue].height);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0.0f;
-}
-
-double AccessibilityUIElement::clickPointX()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSValue* positionValue = [m_element accessibilityAttributeValue:@"AXClickPoint"];
-    return static_cast<double>([positionValue pointValue].x);        
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0.0f;
-}
-
-double AccessibilityUIElement::clickPointY()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSValue* positionValue = [m_element accessibilityAttributeValue:@"AXClickPoint"];
-    return static_cast<double>([positionValue pointValue].y);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0.0f;
-}
-
-double AccessibilityUIElement::intValue() const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilityValueAttribute];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [(NSNumber*)value doubleValue]; 
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0.0f;
-}
-
-double AccessibilityUIElement::minValue()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilityMinValueAttribute];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [(NSNumber*)value doubleValue]; 
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0.0f;
-}
-
-double AccessibilityUIElement::maxValue()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilityMaxValueAttribute];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [(NSNumber*)value doubleValue]; 
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0.0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::valueDescription()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSString* valueDescription = [m_element accessibilityAttributeValue:NSAccessibilityValueDescriptionAttribute];
-    if ([valueDescription isKindOfClass:[NSString class]])
-         return [valueDescription createJSStringRef];
-
-    END_AX_OBJC_EXCEPTIONS
-    return 0;
-}
-
-int AccessibilityUIElement::insertionPointLineNumber()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilityInsertionPointLineNumberAttribute];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [(NSNumber *)value intValue]; 
-    END_AX_OBJC_EXCEPTIONS
-    
-    return -1;
-}
-
-bool AccessibilityUIElement::isPressActionSupported()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* actions = [m_element accessibilityActionNames];
-    return [actions containsObject:NSAccessibilityPressAction];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return false;
-}
-
-bool AccessibilityUIElement::isIncrementActionSupported()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* actions = [m_element accessibilityActionNames];
-    return [actions containsObject:NSAccessibilityIncrementAction];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return false;
-}
-
-bool AccessibilityUIElement::isDecrementActionSupported()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* actions = [m_element accessibilityActionNames];
-    return [actions containsObject:NSAccessibilityDecrementAction];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return false;
-}
-
-bool AccessibilityUIElement::isEnabled()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilityEnabledAttribute];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [value boolValue];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return false;
-}
-
-bool AccessibilityUIElement::isRequired() const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:@"AXRequired"];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [value boolValue];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return false;
-}
-
-bool AccessibilityUIElement::isFocused() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isSelected() const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilitySelectedAttribute];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [value boolValue];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return false;
-}
-
-bool AccessibilityUIElement::isExpanded() const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilityExpandedAttribute];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [value boolValue];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return false;
-}
-
-bool AccessibilityUIElement::isChecked() const
-{
-    // On the Mac, intValue()==1 if a a checkable control is checked.
-    return intValue() == 1;
-}
-
-int AccessibilityUIElement::hierarchicalLevel() const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilityDisclosureLevelAttribute];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [value intValue];
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::speak()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:@"AXDRTSpeechAttribute"];
-    if ([value isKindOfClass:[NSString class]])
-        return [value createJSStringRef];
-    END_AX_OBJC_EXCEPTIONS
-        
-    return 0;
-}
-
-bool AccessibilityUIElement::ariaIsGrabbed() const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilityGrabbedAttribute];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [value boolValue];
-    END_AX_OBJC_EXCEPTIONS
-
-    return false;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::ariaDropEffects() const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilityDropEffectsAttribute];
-    if (![value isKindOfClass:[NSArray class]])
-        return 0;
-
-    NSMutableString* dropEffects = [NSMutableString string];
-    NSInteger length = [value count];
-    for (NSInteger k = 0; k < length; ++k) {
-        [dropEffects appendString:[value objectAtIndex:k]];
-        if (k < length - 1)
-            [dropEffects appendString:@","];
-    }
-    
-    return [dropEffects createJSStringRef];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-// parameterized attributes
-int AccessibilityUIElement::lineForIndex(int index)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilityLineForIndexParameterizedAttribute forParameter:[NSNumber numberWithInt:index]];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [(NSNumber *)value intValue]; 
-    END_AX_OBJC_EXCEPTIONS
-
-    return -1;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::rangeForLine(int line)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilityRangeForLineParameterizedAttribute forParameter:[NSNumber numberWithInt:line]];
-    if ([value isKindOfClass:[NSValue class]])
-        return [NSStringFromRange([value rangeValue]) createJSStringRef];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::rangeForPosition(int x, int y)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilityRangeForPositionParameterizedAttribute forParameter:[NSValue valueWithPoint:NSMakePoint(x, y)]];
-    if ([value isKindOfClass:[NSValue class]])
-        return [NSStringFromRange([value rangeValue]) createJSStringRef];
-    END_AX_OBJC_EXCEPTIONS
-
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::boundsForRange(unsigned location, unsigned length)
-{
-    NSRange range = NSMakeRange(location, length);
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:NSAccessibilityBoundsForRangeParameterizedAttribute forParameter:[NSValue valueWithRange:range]];
-    NSRect rect = NSMakeRect(0,0,0,0);
-    if ([value isKindOfClass:[NSValue class]])
-        rect = [value rectValue]; 
-    
-    // don't return position information because it is platform dependent
-    NSMutableString* boundsDescription = [NSMutableString stringWithFormat:@"{{%f, %f}, {%f, %f}}",-1.0f,-1.0f,rect.size.width,rect.size.height];
-    return [boundsDescription createJSStringRef];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::stringForRange(unsigned location, unsigned length)
-{
-    NSRange range = NSMakeRange(location, length);
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id string = [m_element accessibilityAttributeValue:NSAccessibilityStringForRangeParameterizedAttribute forParameter:[NSValue valueWithRange:range]];
-    if (![string isKindOfClass:[NSString class]])
-        return 0;
-    
-    return [string createJSStringRef];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributedStringForRange(unsigned location, unsigned length)
-{
-    NSRange range = NSMakeRange(location, length);
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSAttributedString* string = [m_element accessibilityAttributeValue:NSAccessibilityAttributedStringForRangeParameterizedAttribute forParameter:[NSValue valueWithRange:range]];
-    if (![string isKindOfClass:[NSAttributedString class]])
-        return 0;
-    
-    NSString* stringWithAttrs = [string description];
-    return [stringWithAttrs createJSStringRef];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-bool AccessibilityUIElement::attributedStringRangeIsMisspelled(unsigned location, unsigned length)
-{
-    NSRange range = NSMakeRange(location, length);
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSAttributedString* string = [m_element accessibilityAttributeValue:NSAccessibilityAttributedStringForRangeParameterizedAttribute forParameter:[NSValue valueWithRange:range]];
-    if (![string isKindOfClass:[NSAttributedString class]])
-        return false;
-
-    NSDictionary* attrs = [string attributesAtIndex:0 effectiveRange:nil];
-    if([[attrs objectForKey:NSAccessibilityMisspelledTextAttribute] boolValue])
-        return true;    
-    END_AX_OBJC_EXCEPTIONS
-    
-    return false;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::uiElementForSearchPredicate(AccessibilityUIElement* startElement, bool isDirectionNext, JSStringRef searchKey, JSStringRef searchText)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSMutableDictionary* parameter = [NSMutableDictionary dictionary];
-    [parameter setObject:(isDirectionNext) ? @"AXDirectionNext" : @"AXDirectionPrevious" forKey:@"AXDirection"];
-    [parameter setObject:[NSNumber numberWithInt:1] forKey:@"AXResultsLimit"];
-    if (startElement && startElement->platformUIElement())
-        [parameter setObject:(id)startElement->platformUIElement() forKey:@"AXStartElement"];
-    if (searchKey)
-        [parameter setObject:[NSString stringWithJSStringRef:searchKey] forKey:@"AXSearchKey"];
-    if (searchText && JSStringGetLength(searchText))
-        [parameter setObject:[NSString stringWithJSStringRef:searchText] forKey:@"AXSearchText"];
-    
-    id uiElement = [[m_element accessibilityAttributeValue:@"AXUIElementsForSearchPredicate" forParameter:parameter] lastObject];
-    return AccessibilityUIElement::create(uiElement);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributesOfColumnHeaders()
-{
-    // not yet defined in AppKit... odd
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* columnHeadersArray = [m_element accessibilityAttributeValue:@"AXColumnHeaderUIElements"];
-    Vector<RefPtr<AccessibilityUIElement> > columnHeadersVector;
-    convertNSArrayToVector(columnHeadersArray, columnHeadersVector);
-    return descriptionOfElements(columnHeadersVector);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributesOfRowHeaders()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* rowHeadersArray = [m_element accessibilityAttributeValue:@"AXRowHeaderUIElements"];
-    Vector<RefPtr<AccessibilityUIElement> > rowHeadersVector;
-    convertNSArrayToVector(rowHeadersArray, rowHeadersVector);
-    return descriptionOfElements(rowHeadersVector);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributesOfColumns()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* columnsArray = [m_element accessibilityAttributeValue:NSAccessibilityColumnsAttribute];
-    Vector<RefPtr<AccessibilityUIElement> > columnsVector;
-    convertNSArrayToVector(columnsArray, columnsVector);
-    return descriptionOfElements(columnsVector);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributesOfRows()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* rowsArray = [m_element accessibilityAttributeValue:NSAccessibilityRowsAttribute];
-    Vector<RefPtr<AccessibilityUIElement> > rowsVector;
-    convertNSArrayToVector(rowsArray, rowsVector);
-    return descriptionOfElements(rowsVector);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributesOfVisibleCells()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* cellsArray = [m_element accessibilityAttributeValue:@"AXVisibleCells"];
-    Vector<RefPtr<AccessibilityUIElement> > cellsVector;
-    convertNSArrayToVector(cellsArray, cellsVector);
-    return descriptionOfElements(cellsVector);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::attributesOfHeader()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id headerObject = [m_element accessibilityAttributeValue:NSAccessibilityHeaderAttribute];
-    if (!headerObject)
-        return [@"" createJSStringRef];
-    
-    Vector<RefPtr<AccessibilityUIElement> > headerVector;
-    headerVector.append(AccessibilityUIElement::create(headerObject));
-    return descriptionOfElements(headerVector);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-int AccessibilityUIElement::rowCount()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    return [m_element accessibilityArrayAttributeCount:NSAccessibilityRowsAttribute];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-int AccessibilityUIElement::columnCount()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    return [m_element accessibilityArrayAttributeCount:NSAccessibilityColumnsAttribute];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-int AccessibilityUIElement::indexInTable()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSNumber* indexNumber = [m_element accessibilityAttributeValue:NSAccessibilityIndexAttribute];
-    if (indexNumber)
-        return [indexNumber intValue];
-    END_AX_OBJC_EXCEPTIONS
-
-    return -1;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::rowIndexRange()
-{
-    NSRange range = NSMakeRange(0, 0);
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSValue* indexRange = [m_element accessibilityAttributeValue:@"AXRowIndexRange"];
-    if (indexRange)
-        range = [indexRange rangeValue];
-    NSMutableString* rangeDescription = [NSMutableString stringWithFormat:@"{%lu, %lu}", static_cast<unsigned long>(range.location), static_cast<unsigned long>(range.length)];
-    return [rangeDescription createJSStringRef];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::columnIndexRange()
-{
-    NSRange range = NSMakeRange(0, 0);
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSNumber* indexRange = [m_element accessibilityAttributeValue:@"AXColumnIndexRange"];
-    if (indexRange)
-        range = [indexRange rangeValue];
-    NSMutableString* rangeDescription = [NSMutableString stringWithFormat:@"{%lu, %lu}", static_cast<unsigned long>(range.location), static_cast<unsigned long>(range.length)];
-    return [rangeDescription createJSStringRef];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::cellForColumnAndRow(unsigned col, unsigned row)
-{
-    NSArray *colRowArray = [NSArray arrayWithObjects:[NSNumber numberWithUnsignedInt:col], [NSNumber numberWithUnsignedInt:row], nil];
-    BEGIN_AX_OBJC_EXCEPTIONS
-    return AccessibilityUIElement::create([m_element accessibilityAttributeValue:@"AXCellForColumnAndRow" forParameter:colRowArray]);
-    END_AX_OBJC_EXCEPTIONS    
-
-    return 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::horizontalScrollbar() const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    return AccessibilityUIElement::create([m_element accessibilityAttributeValue:NSAccessibilityHorizontalScrollBarAttribute]);
-    END_AX_OBJC_EXCEPTIONS    
-    
-    return 0;
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::verticalScrollbar() const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    return AccessibilityUIElement::create([m_element accessibilityAttributeValue:NSAccessibilityVerticalScrollBarAttribute]);
-    END_AX_OBJC_EXCEPTIONS        
-
-    return 0;
-}
-
-void AccessibilityUIElement::scrollToMakeVisible()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    [m_element accessibilityPerformAction:@"AXScrollToVisible"];
-    END_AX_OBJC_EXCEPTIONS
-}
-    
-JSRetainPtr<JSStringRef> AccessibilityUIElement::selectedTextRange()
-{
-    NSRange range = NSMakeRange(NSNotFound, 0);
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSValue *indexRange = [m_element accessibilityAttributeValue:NSAccessibilitySelectedTextRangeAttribute];
-    if (indexRange)
-        range = [indexRange rangeValue];
-    NSMutableString* rangeDescription = [NSMutableString stringWithFormat:@"{%lu, %lu}", static_cast<unsigned long>(range.location), static_cast<unsigned long>(range.length)];
-    return [rangeDescription createJSStringRef];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-void AccessibilityUIElement::setSelectedTextRange(unsigned location, unsigned length)
-{
-    NSRange textRange = NSMakeRange(location, length);
-    NSValue *textRangeValue = [NSValue valueWithRange:textRange];
-    BEGIN_AX_OBJC_EXCEPTIONS
-    [m_element accessibilitySetValue:textRangeValue forAttribute:NSAccessibilitySelectedTextRangeAttribute];
-    END_AX_OBJC_EXCEPTIONS
-}
-
-void AccessibilityUIElement::increment()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    [m_element accessibilityPerformAction:NSAccessibilityIncrementAction];
-    END_AX_OBJC_EXCEPTIONS
-}
-
-void AccessibilityUIElement::decrement()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    [m_element accessibilityPerformAction:NSAccessibilityDecrementAction];
-    END_AX_OBJC_EXCEPTIONS
-}
-
-void AccessibilityUIElement::showMenu()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    [m_element accessibilityPerformAction:NSAccessibilityShowMenuAction];
-    END_AX_OBJC_EXCEPTIONS
-}
-
-void AccessibilityUIElement::press()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    [m_element accessibilityPerformAction:NSAccessibilityPressAction];
-    END_AX_OBJC_EXCEPTIONS
-}
-
-void AccessibilityUIElement::setSelectedChild(AccessibilityUIElement* element) const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* array = [NSArray arrayWithObject:element->platformUIElement()];
-    [m_element accessibilitySetValue:array forAttribute:NSAccessibilitySelectedChildrenAttribute];
-    END_AX_OBJC_EXCEPTIONS    
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::accessibilityValue() const
-{
-    // FIXME: implement
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::documentEncoding()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::documentURI()
-{
-    return JSStringCreateWithCharacters(0, 0);
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::url()
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSURL *url = [m_element accessibilityAttributeValue:NSAccessibilityURLAttribute];
-    return [[url absoluteString] createJSStringRef];    
-    END_AX_OBJC_EXCEPTIONS
-    
-    return nil;
-}
-
-bool AccessibilityUIElement::addNotificationListener(JSValueRef functionCallback)
-{
-    if (!functionCallback)
-        return false;
- 
-    // Mac programmers should not be adding more than one notification listener per element.
-    // Other platforms may be different.
-    if (m_notificationHandler)
-        return false;
-    m_notificationHandler = [[AccessibilityNotificationHandler alloc] init];
-    [m_notificationHandler setPlatformElement:platformUIElement()];
-    [m_notificationHandler setCallback:functionCallback];
-    [m_notificationHandler startObserving];
-
-    return true;
-}
-
-bool AccessibilityUIElement::removeNotificationListener()
-{
-    // Mac programmers should not be trying to remove a listener that's already removed.
-    ASSERT(m_notificationHandler);
-
-    [m_notificationHandler release];
-    m_notificationHandler = nil;
-    
-    return true;
-}
-
-bool AccessibilityUIElement::isFocusable() const
-{
-    bool result = false;
-    BEGIN_AX_OBJC_EXCEPTIONS
-    result = [m_element accessibilityIsAttributeSettable:NSAccessibilityFocusedAttribute];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return result;
-}
-
-bool AccessibilityUIElement::isSelectable() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isMultiSelectable() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isVisible() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isOffScreen() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isCollapsed() const
-{
-    // FIXME: implement
-    return false;
-}
-
-bool AccessibilityUIElement::isIgnored() const
-{
-    BOOL result = NO;
-    BEGIN_AX_OBJC_EXCEPTIONS
-    result = [m_element accessibilityIsIgnored];
-    END_AX_OBJC_EXCEPTIONS
-    return result;
-}
-
-bool AccessibilityUIElement::hasPopup() const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id value = [m_element accessibilityAttributeValue:@"AXHasPopup"];
-    if ([value isKindOfClass:[NSNumber class]])
-        return [value boolValue];
-    END_AX_OBJC_EXCEPTIONS
-
-    return false;
-}
-
-void AccessibilityUIElement::takeFocus()
-{
-    // FIXME: implement
-}
-
-void AccessibilityUIElement::takeSelection()
-{
-    // FIXME: implement
-}
-
-void AccessibilityUIElement::addSelection()
-{
-    // FIXME: implement
-}
-
-void AccessibilityUIElement::removeSelection()
-{
-    // FIXME: implement
-}
-
-// Text markers
-PassRefPtr<AccessibilityTextMarkerRange> AccessibilityUIElement::textMarkerRangeForElement(AccessibilityUIElement* element)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id textMarkerRange = [m_element accessibilityAttributeValue:@"AXTextMarkerRangeForUIElement" forParameter:element->platformUIElement()];
-    return AccessibilityTextMarkerRange::create(textMarkerRange);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-int AccessibilityUIElement::textMarkerRangeLength(AccessibilityTextMarkerRange* range)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSNumber* lengthValue = [m_element accessibilityAttributeValue:@"AXLengthForTextMarkerRange" forParameter:(id)range->platformTextMarkerRange()];
-    return [lengthValue intValue];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-PassRefPtr<AccessibilityTextMarker> AccessibilityUIElement::previousTextMarker(AccessibilityTextMarker* textMarker)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id previousMarker = [m_element accessibilityAttributeValue:@"AXPreviousTextMarkerForTextMarker" forParameter:(id)textMarker->platformTextMarker()];
-    return AccessibilityTextMarker::create(previousMarker);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-PassRefPtr<AccessibilityTextMarker> AccessibilityUIElement::nextTextMarker(AccessibilityTextMarker* textMarker)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id nextMarker = [m_element accessibilityAttributeValue:@"AXNextTextMarkerForTextMarker" forParameter:(id)textMarker->platformTextMarker()];
-    return AccessibilityTextMarker::create(nextMarker);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::stringForTextMarkerRange(AccessibilityTextMarkerRange* markerRange)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id textString = [m_element accessibilityAttributeValue:@"AXStringForTextMarkerRange" forParameter:(id)markerRange->platformTextMarkerRange()];
-    return [textString createJSStringRef];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-PassRefPtr<AccessibilityTextMarkerRange> AccessibilityUIElement::textMarkerRangeForMarkers(AccessibilityTextMarker* startMarker, AccessibilityTextMarker* endMarker)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray* textMarkers = [NSArray arrayWithObjects:(id)startMarker->platformTextMarker(), (id)endMarker->platformTextMarker(), nil];
-    id textMarkerRange = [m_element accessibilityAttributeValue:@"AXTextMarkerRangeForUnorderedTextMarkers" forParameter:textMarkers];
-    return AccessibilityTextMarkerRange::create(textMarkerRange);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-PassRefPtr<AccessibilityTextMarker> AccessibilityUIElement::startTextMarkerForTextMarkerRange(AccessibilityTextMarkerRange* range)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id textMarker = [m_element accessibilityAttributeValue:@"AXStartTextMarkerForTextMarkerRange" forParameter:(id)range->platformTextMarkerRange()];
-    return AccessibilityTextMarker::create(textMarker);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;    
-}
-
-PassRefPtr<AccessibilityTextMarker> AccessibilityUIElement::endTextMarkerForTextMarkerRange(AccessibilityTextMarkerRange* range)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id textMarker = [m_element accessibilityAttributeValue:@"AXEndTextMarkerForTextMarkerRange" forParameter:(id)range->platformTextMarkerRange()];
-    return AccessibilityTextMarker::create(textMarker);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;    
-}
-
-PassRefPtr<AccessibilityTextMarker> AccessibilityUIElement::textMarkerForPoint(int x, int y)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id textMarker = [m_element accessibilityAttributeValue:@"AXTextMarkerForPosition" forParameter:[NSValue valueWithPoint:NSMakePoint(x, y)]];
-    return AccessibilityTextMarker::create(textMarker);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;    
-}
-
-PassRefPtr<AccessibilityUIElement> AccessibilityUIElement::accessibilityElementForTextMarker(AccessibilityTextMarker* marker)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id uiElement = [m_element accessibilityAttributeValue:@"AXUIElementForTextMarker" forParameter:(id)marker->platformTextMarker()];
-    return AccessibilityUIElement::create(uiElement);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;  
-}
-    
-bool AccessibilityUIElement::attributedStringForTextMarkerRangeContainsAttribute(JSStringRef attribute, AccessibilityTextMarkerRange* range)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSAttributedString* string = [m_element accessibilityAttributeValue:@"AXAttributedStringForTextMarkerRange" forParameter:(id)range->platformTextMarkerRange()];
-    if (![string isKindOfClass:[NSAttributedString class]])
-        return false;
-    
-    NSDictionary* attrs = [string attributesAtIndex:0 effectiveRange:nil];
-    if ([attrs objectForKey:[NSString stringWithJSStringRef:attribute]])
-        return true;    
-    END_AX_OBJC_EXCEPTIONS
-    
-    return false;
-}
-    
-int AccessibilityUIElement::indexForTextMarker(AccessibilityTextMarker* marker)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSNumber* indexNumber = [m_element accessibilityAttributeValue:@"AXIndexForTextMarker" forParameter:(id)marker->platformTextMarker()];
-    return [indexNumber intValue];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return -1;
-}
-
-bool AccessibilityUIElement::isTextMarkerValid(AccessibilityTextMarker* textMarker)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSNumber* validNumber = [m_element accessibilityAttributeValue:@"AXTextMarkerIsValid" forParameter:(id)textMarker->platformTextMarker()];
-    return [validNumber boolValue];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return false;
-}
-
-PassRefPtr<AccessibilityTextMarker> AccessibilityUIElement::textMarkerForIndex(int textIndex)
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    id textMarker = [m_element accessibilityAttributeValue:@"AXTextMarkerForIndex" forParameter:[NSNumber numberWithInteger:textIndex]];
-    return AccessibilityTextMarker::create(textMarker);
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;                                                                          
-}
-
-JSRetainPtr<JSStringRef> AccessibilityUIElement::supportedActions() const
-{
-    BEGIN_AX_OBJC_EXCEPTIONS
-    NSArray *names = [m_element accessibilityActionNames];
-    return [[names componentsJoinedByString:@","] createJSStringRef];
-    END_AX_OBJC_EXCEPTIONS
-    
-    return 0;
-}
-
-} // namespace WTR
-
diff --git a/Tools/WebKitTestRunner/InjectedBundle/mac/ActivateFonts.mm b/Tools/WebKitTestRunner/InjectedBundle/mac/ActivateFonts.mm
deleted file mode 100644
index c2768db..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/mac/ActivateFonts.mm
+++ /dev/null
@@ -1,263 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "ActivateFonts.h"
-
-#import <AppKit/AppKit.h>
-#import <CoreFoundation/CoreFoundation.h>
-#import <wtf/ObjcRuntimeExtras.h>
-#import <wtf/RetainPtr.h>
-
-@interface WKTRFontActivatorDummyClass : NSObject
-@end
-
-@implementation WKTRFontActivatorDummyClass
-@end
-
-namespace WTR {
-
-
-static NSSet *allowedFontFamilySet()
-{
-    static NSSet *fontFamiliySet = [[NSSet setWithObjects:
-        @"Ahem",
-        @"Al Bayan",
-        @"American Typewriter",
-        @"Andale Mono",
-        @"Apple Braille",
-        @"Apple Color Emoji",
-        @"Apple Chancery",
-        @"Apple Garamond BT",
-        @"Apple LiGothic",
-        @"Apple LiSung",
-        @"Apple Symbols",
-        @"AppleGothic",
-        @"AppleMyungjo",
-        @"Arial Black",
-        @"Arial Hebrew",
-        @"Arial Narrow",
-        @"Arial Rounded MT Bold",
-        @"Arial Unicode MS",
-        @"Arial",
-        @"Ayuthaya",
-        @"Baghdad",
-        @"Baskerville",
-        @"BiauKai",
-        @"Big Caslon",
-        @"Brush Script MT",
-        @"Chalkboard",
-        @"Chalkduster",
-        @"Charcoal CY",
-        @"Cochin",
-        @"Comic Sans MS",
-        @"Copperplate",
-        @"Corsiva Hebrew",
-        @"Courier New",
-        @"Courier",
-        @"DecoType Naskh",
-        @"Devanagari MT",
-        @"Didot",
-        @"Euphemia UCAS",
-        @"Futura",
-        @"GB18030 Bitmap",
-        @"Geeza Pro",
-        @"Geneva CY",
-        @"Geneva",
-        @"Georgia",
-        @"Gill Sans",
-        @"Gujarati MT",
-        @"GungSeo",
-        @"Gurmukhi MT",
-        @"HeadLineA",
-        @"Hei",
-        @"Heiti SC",
-        @"Heiti TC",
-        @"Helvetica CY",
-        @"Helvetica Neue",
-        @"Helvetica",
-        @"Herculanum",
-        @"Hiragino Kaku Gothic Pro",
-        @"Hiragino Kaku Gothic ProN",
-        @"Hiragino Kaku Gothic Std",
-        @"Hiragino Kaku Gothic StdN",
-        @"Hiragino Maru Gothic Monospaced",
-        @"Hiragino Maru Gothic Pro",
-        @"Hiragino Maru Gothic ProN",
-        @"Hiragino Mincho Pro",
-        @"Hiragino Mincho ProN",
-        @"Hiragino Sans GB",
-        @"Hoefler Text",
-        @"Impact",
-        @"InaiMathi",
-        @"Kai",
-        @"Kailasa",
-        @"Kokonor",
-        @"Krungthep",
-        @"KufiStandardGK",
-        @"LiHei Pro",
-        @"LiSong Pro",
-        @"Lucida Grande",
-        @"Marker Felt",
-        @"Menlo",
-        @"Microsoft Sans Serif",
-        @"Monaco",
-        @"Mshtakan",
-        @"Nadeem",
-        @"New Peninim MT",
-        @"Optima",
-        @"Osaka",
-        @"Papyrus",
-        @"PCMyungjo",
-        @"PilGi",
-        @"Plantagenet Cherokee",
-        @"Raanana",
-        @"Sathu",
-        @"Silom",
-        @"Skia",
-        @"STFangsong",
-        @"STHeiti",
-        @"STIXGeneral",
-        @"STIXSizeOneSym",
-        @"STKaiti",
-        @"STSong",
-        @"Symbol",
-        @"Tahoma",
-        @"Thonburi",
-        @"Times New Roman",
-        @"Times",
-        @"Trebuchet MS",
-        @"Verdana",
-        @"Webdings",
-        @"WebKit WeightWatcher",
-        @"Wingdings 2",
-        @"Wingdings 3",
-        @"Wingdings",
-        @"Zapf Dingbats",
-        @"Zapfino",
-        nil] retain];
-    
-    return fontFamiliySet;
-}
-
-static IMP appKitAvailableFontFamiliesIMP;
-static IMP appKitAvailableFontsIMP;
-
-static NSArray *wtr_NSFontManager_availableFontFamilies(id self, SEL _cmd)
-{
-    static NSArray *availableFontFamilies;
-    if (availableFontFamilies)
-        return availableFontFamilies;
-    
-    NSArray *availableFamilies = wtfCallIMP<id>(appKitAvailableFontFamiliesIMP, self, _cmd);
-
-    NSMutableSet *prunedFamiliesSet = [NSMutableSet setWithArray:availableFamilies];
-    [prunedFamiliesSet intersectSet:allowedFontFamilySet()];
-
-    availableFontFamilies = [[prunedFamiliesSet allObjects] retain];
-    return availableFontFamilies;
-}
-
-static NSArray *wtr_NSFontManager_availableFonts(id self, SEL _cmd)
-{
-    static NSArray *availableFonts;
-    if (availableFonts)
-        return availableFonts;
-    
-    NSSet *allowedFamilies = allowedFontFamilySet();
-    NSMutableArray *availableFontList = [[NSMutableArray alloc] initWithCapacity:[allowedFamilies count] * 2];
-    for (NSString *fontFamily in allowedFontFamilySet()) {
-        NSArray* fontsForFamily = [[NSFontManager sharedFontManager] availableMembersOfFontFamily:fontFamily];
-        for (NSArray* fontInfo in fontsForFamily) {
-            // Font name is the first entry in the array.
-            [availableFontList addObject:[fontInfo objectAtIndex:0]];
-        }
-    }
-    
-    availableFonts = availableFontList;
-    return availableFonts;
-}
-
-static void swizzleNSFontManagerMethods()
-{
-    Method availableFontFamiliesMethod = class_getInstanceMethod(objc_getClass("NSFontManager"), @selector(availableFontFamilies));
-    ASSERT(availableFontFamiliesMethod);
-    if (!availableFontFamiliesMethod) {
-        NSLog(@"Failed to swizzle the \"availableFontFamilies\" method on NSFontManager");
-        return;
-    }
-    
-    appKitAvailableFontFamiliesIMP = method_setImplementation(availableFontFamiliesMethod, (IMP)wtr_NSFontManager_availableFontFamilies);
-
-    Method availableFontsMethod = class_getInstanceMethod(objc_getClass("NSFontManager"), @selector(availableFonts));
-    ASSERT(availableFontsMethod);
-    if (!availableFontsMethod) {
-        NSLog(@"Failed to swizzle the \"availableFonts\" method on NSFontManager");
-        return;
-    }
-    
-    appKitAvailableFontsIMP = method_setImplementation(availableFontsMethod, (IMP)wtr_NSFontManager_availableFonts);
-}
-
-void activateFonts()
-{
-    // Work around <rdar://problem/6698023> by activating fonts from disk
-
-    static const char* fontFileNames[] = {
-        "AHEM____.TTF",
-        "WebKitWeightWatcher100.ttf",
-        "WebKitWeightWatcher200.ttf",
-        "WebKitWeightWatcher300.ttf",
-        "WebKitWeightWatcher400.ttf",
-        "WebKitWeightWatcher500.ttf",
-        "WebKitWeightWatcher600.ttf",
-        "WebKitWeightWatcher700.ttf",
-        "WebKitWeightWatcher800.ttf",
-        "WebKitWeightWatcher900.ttf",
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1080
-        "SampleFont.sfont",
-#endif
-        0
-    };
-
-    NSMutableArray *fontURLs = [NSMutableArray array];
-    NSURL *resourcesDirectory = [[NSBundle bundleForClass:[WKTRFontActivatorDummyClass class]] resourceURL];
-    for (unsigned i = 0; fontFileNames[i]; ++i) {
-        NSURL *fontURL = [resourcesDirectory URLByAppendingPathComponent:[NSString stringWithUTF8String:fontFileNames[i]]];
-        [fontURLs addObject:[fontURL absoluteURL]];
-    }
-
-    CFArrayRef errors = 0;
-    if (!CTFontManagerRegisterFontsForURLs((CFArrayRef)fontURLs, kCTFontManagerScopeProcess, &errors)) {
-        NSLog(@"Failed to activate fonts: %@", errors);
-        CFRelease(errors);
-        exit(1);
-    }
-
-    swizzleNSFontManagerMethods();
-}
-
-}
-
diff --git a/Tools/WebKitTestRunner/InjectedBundle/mac/InjectedBundleMac.mm b/Tools/WebKitTestRunner/InjectedBundle/mac/InjectedBundleMac.mm
deleted file mode 100644
index 1ad19ae..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/mac/InjectedBundleMac.mm
+++ /dev/null
@@ -1,66 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "InjectedBundle.h"
-
-#import <Foundation/Foundation.h>
-
-@interface NSURLRequest (PrivateThingsWeShouldntReallyUse)
-+(void)setAllowsAnyHTTPSCertificate:(BOOL)allow forHost:(NSString *)host;
-@end
-
-@interface NSSound (Details)
-+ (void)_setAlertType:(NSUInteger)alertType;
-@end
-
-namespace WTR {
-
-void InjectedBundle::platformInitialize(WKTypeRef)
-{
-    NSDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys:
-        [NSNumber numberWithInteger:4],   @"AppleAntiAliasingThreshold",
-        [NSNumber numberWithInteger:0],   @"AppleFontSmoothing",
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1080 && !PLATFORM(CHROMIUM)
-        [NSNumber numberWithBool:NO],     @"NSScrollAnimationEnabled",
-#else
-        [NSNumber numberWithBool:NO],     @"AppleScrollAnimationEnabled",
-#endif
-        [NSNumber numberWithBool:NO],     @"NSOverlayScrollersEnabled",
-        @"Always",                        @"AppleShowScrollBars",
-        [NSArray arrayWithObject:@"en"],  @"AppleLanguages",
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1070
-        [NSDictionary dictionaryWithObjectsAndKeys:@"notational", @"notationl", nil], @"NSTestCorrectionDictionary",
-#endif
-        nil];
-
-    [[NSUserDefaults standardUserDefaults] setVolatileDomain:dict forName:NSArgumentDomain];
-
-    [NSURLRequest setAllowsAnyHTTPSCertificate:YES forHost:@"localhost"];
-    [NSURLRequest setAllowsAnyHTTPSCertificate:YES forHost:@"127.0.0.1"];
-
-    [NSSound _setAlertType:0];
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/InjectedBundle/mac/InjectedBundlePageMac.mm b/Tools/WebKitTestRunner/InjectedBundle/mac/InjectedBundlePageMac.mm
deleted file mode 100644
index b0cb4e0..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/mac/InjectedBundlePageMac.mm
+++ /dev/null
@@ -1,93 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "InjectedBundlePage.h"
-
-#import "StringFunctions.h"
-#import <WebKit2/WKBundleFrame.h>
-#import <WebKit2/WKURLCF.h>
-#import <WebKitSystemInterface.h>
-#import <wtf/RetainPtr.h>
-#import <wtf/text/StringBuilder.h>
-#import <wtf/text/WTFString.h>
-
-namespace WTR {
-
-using namespace WTF;
-
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1070
-static String testPathFromURL(WKURLRef url)
-{
-    RetainPtr<CFURLRef> cfURL(AdoptCF, WKURLCopyCFURL(kCFAllocatorDefault, url));
-    if (!cfURL)
-        return String();
-
-    RetainPtr<CFStringRef> schemeCFString(AdoptCF, CFURLCopyScheme(cfURL.get()));
-    RetainPtr<CFStringRef> pathCFString(AdoptCF, CFURLCopyPath(cfURL.get()));
-
-    String schemeString(schemeCFString.get());
-    String pathString(pathCFString.get());
-    
-    if (equalIgnoringCase(schemeString, "file")) {
-        String layoutTests("/LayoutTests/");
-        size_t layoutTestsOffset = pathString.find(layoutTests);
-        if (layoutTestsOffset == notFound)
-            return String();
-
-        return pathString.substring(layoutTestsOffset + layoutTests.length());
-    }
-
-    if (!equalIgnoringCase(schemeString, "http") && !equalIgnoringCase(schemeString, "https"))
-        return String();
-
-    RetainPtr<CFStringRef> hostCFString(AdoptCF, CFURLCopyHostName(cfURL.get()));
-    String hostString(hostCFString.get());
-    if (hostString == "127.0.0.1"  && (CFURLGetPortNumber(cfURL.get()) == 8000 || CFURLGetPortNumber(cfURL.get()) == 8443))
-        return pathString;
-
-    return String();
-}
-#endif
-
-void InjectedBundlePage::platformDidStartProvisionalLoadForFrame(WKBundleFrameRef frame)
-{
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1070
-    if (!WKBundleFrameIsMainFrame(frame))
-        return;
-
-    WKRetainPtr<WKURLRef> mainFrameURL = adoptWK(WKBundleFrameCopyProvisionalURL(frame));
-    
-    String testPath = testPathFromURL(mainFrameURL.get());
-    if (!testPath.isNull()) {
-        StringBuilder builder;
-        builder.appendLiteral("CRASHING TEST: ");
-        builder.append(testPath);
-        WKSetCrashReportApplicationSpecificInformation(builder.toString().createCFString().get());
-    }
-#endif
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/InjectedBundle/mac/TestRunnerMac.mm b/Tools/WebKitTestRunner/InjectedBundle/mac/TestRunnerMac.mm
deleted file mode 100644
index dca27e6..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/mac/TestRunnerMac.mm
+++ /dev/null
@@ -1,70 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "TestRunner.h"
-
-#include "InjectedBundle.h"
-
-namespace WTR {
-
-void TestRunner::platformInitialize()
-{
-}
-
-void TestRunner::invalidateWaitToDumpWatchdogTimer()
-{
-    if (!m_waitToDumpWatchdogTimer)
-        return;
-
-    CFRunLoopTimerInvalidate(m_waitToDumpWatchdogTimer.get());
-    m_waitToDumpWatchdogTimer = 0;
-}
-
-static void waitUntilDoneWatchdogTimerFired(CFRunLoopTimerRef timer, void* info)
-{
-    InjectedBundle::shared().testRunner()->waitToDumpWatchdogTimerFired();
-}
-
-void TestRunner::initializeWaitToDumpWatchdogTimerIfNeeded()
-{
-    if (m_waitToDumpWatchdogTimer)
-        return;
-
-    m_waitToDumpWatchdogTimer.adoptCF(CFRunLoopTimerCreate(kCFAllocatorDefault, CFAbsoluteTimeGetCurrent() + waitToDumpWatchdogTimerInterval, 0, 0, 0, WTR::waitUntilDoneWatchdogTimerFired, NULL));
-    CFRunLoopAddTimer(CFRunLoopGetCurrent(), m_waitToDumpWatchdogTimer.get(), kCFRunLoopCommonModes);
-}
-
-JSRetainPtr<JSStringRef> TestRunner::pathToLocalResource(JSStringRef url)
-{
-    return JSStringRetain(url); // Do nothing on mac.
-}
-    
-JSRetainPtr<JSStringRef> TestRunner::platformName()
-{
-    JSRetainPtr<JSStringRef> platformName(Adopt, JSStringCreateWithUTF8CString("mac"));
-    return platformName;
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp b/Tools/WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp
deleted file mode 100644
index ff24aa5..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * Copyright (C) 2005, 2006 Apple Computer, Inc.  All rights reserved.
- * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "ActivateFonts.h"
-#include "DumpRenderTreeSupportQt.h"
-#include "QtTestSupport.h"
-#include <QCoreApplication>
-
-namespace WTR {
-
-void activateFonts()
-{
-    WebKit::QtTestSupport::initializeTestFonts();
-    QCoreApplication::setAttribute(Qt::AA_Use96Dpi, true);
-    DumpRenderTreeSupportQt::disableDefaultTypesettingFeatures();
-}
-
-}
diff --git a/Tools/WebKitTestRunner/InjectedBundle/qt/InjectedBundleQt.cpp b/Tools/WebKitTestRunner/InjectedBundle/qt/InjectedBundleQt.cpp
deleted file mode 100644
index d14dd87..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/qt/InjectedBundleQt.cpp
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- * Copyright (C) 2011 University of Szeged. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundle.h"
-#include <QApplication>
-#include <QByteArray>
-#include <QStyle>
-#include <QStyleFactory>
-#include <stdio.h>
-#include <stdlib.h>
-#include <wtf/AlwaysInline.h>
-#include <wtf/Assertions.h>
-
-namespace WTR {
-
-void InjectedBundle::platformInitialize(WKTypeRef)
-{
-    QStyle* styleForTests = QStyleFactory::create(QLatin1String("windows"));
-    QApplication::setStyle(styleForTests);
-    // Force Qt to use the style's standard palette, instead of platform default palette. This is needed
-    // because we are setting the style after QApplication is instantiated.
-    QApplication::setPalette(styleForTests->standardPalette());
-
-    if (qgetenv("QT_WEBKIT2_DEBUG") == "1")
-        return;
-
-    WTFInstallReportBacktraceOnCrashHook();
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/InjectedBundle/qt/TestRunnerQt.cpp b/Tools/WebKitTestRunner/InjectedBundle/qt/TestRunnerQt.cpp
deleted file mode 100644
index 95ed46d..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/qt/TestRunnerQt.cpp
+++ /dev/null
@@ -1,118 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- * Copyright (C) 2010 University of Szeged. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "TestRunner.h"
-
-#include "ActivateFonts.h"
-#include "InjectedBundle.h"
-#include "QtTestSupport.h"
-#include <QCoreApplication>
-#include <QDir>
-#include <QFontDatabase>
-#include <QObject>
-#include <QtCore/qglobal.h>
-#include <qwebsettings.h>
-
-namespace WTR {
-
-class WatchdogTimerHelper : public QObject {
-    Q_OBJECT
-
-public:
-    static WatchdogTimerHelper* instance()
-    {
-        static WatchdogTimerHelper* theInstance = new WatchdogTimerHelper;
-        return theInstance;
-    }
-
-public Q_SLOTS:
-    void timerFired()
-    {
-        InjectedBundle::shared().testRunner()->waitToDumpWatchdogTimerFired();
-    }
-
-private:
-    WatchdogTimerHelper() {}
-};
-
-void TestRunner::platformInitialize()
-{
-    WebKit::QtTestSupport::clearMemoryCaches();
-    activateFonts();
-
-    QObject::connect(&m_waitToDumpWatchdogTimer, SIGNAL(timeout()), WatchdogTimerHelper::instance(), SLOT(timerFired()));
-}
-
-void TestRunner::invalidateWaitToDumpWatchdogTimer()
-{
-    m_waitToDumpWatchdogTimer.stop();
-}
-
-void TestRunner::initializeWaitToDumpWatchdogTimerIfNeeded()
-{
-    int timerInterval;
-    if (qgetenv("QT_WEBKIT2_DEBUG") == "1")
-        return;
-
-    if (m_waitToDumpWatchdogTimer.isActive())
-        return;
-    if (m_timeout > 0)
-        timerInterval = m_timeout;
-    else
-        timerInterval = waitToDumpWatchdogTimerInterval * 1000;
-
-    m_waitToDumpWatchdogTimer.start(timerInterval);
-}
-
-JSRetainPtr<JSStringRef> TestRunner::pathToLocalResource(JSStringRef url)
-{
-    QString localTmpUrl(QStringLiteral("file:///tmp/LayoutTests"));
-    QString givenUrl(reinterpret_cast<const QChar*>(JSStringGetCharactersPtr(url)), JSStringGetLength(url));
-
-    // Translate a request for /tmp/LayoutTests to the repository LayoutTests directory.
-    // Do not rely on a symlink to be created via the test runner, which will not work on Windows.
-    if (givenUrl.startsWith(localTmpUrl)) {
-        // DumpRenderTree lives in WebKit/WebKitBuild/<build_mode>/bin.
-        // Translate from WebKit/WebKitBuild/Release/bin => WebKit/LayoutTests.
-        QFileInfo layoutTestsRoot(QCoreApplication::applicationDirPath() + QStringLiteral("/../../../LayoutTests/"));
-        if (layoutTestsRoot.exists()) {
-            QString path = QStringLiteral("file://") + layoutTestsRoot.absolutePath() + givenUrl.mid(localTmpUrl.length());
-            return JSStringCreateWithCharacters(reinterpret_cast<const JSChar*>(path.constData()), path.length());
-        }
-    }
-    return url;
-}
-
-JSRetainPtr<JSStringRef> TestRunner::platformName()
-{
-    JSRetainPtr<JSStringRef> platformName(Adopt, JSStringCreateWithUTF8CString("qt"));
-    return platformName;
-}
-
-} // namespace WTR
-
-#include "TestRunnerQt.moc"
diff --git a/Tools/WebKitTestRunner/InjectedBundle/win/ActivateFonts.cpp b/Tools/WebKitTestRunner/InjectedBundle/win/ActivateFonts.cpp
deleted file mode 100644
index 410d60f..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/win/ActivateFonts.cpp
+++ /dev/null
@@ -1,108 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "ActivateFonts.h"
-
-#include <string>
-#include <wtf/Vector.h>
-
-static LPCWSTR fontsEnvironmentVariable = L"WEBKIT_TESTFONTS";
-
-namespace WTR {
-
-using namespace std;
-
-static const wstring& fontsPath()
-{
-    static wstring path;
-    static bool initialized;
-
-    if (initialized)
-        return path;
-    initialized = true;
-
-    DWORD size = ::GetEnvironmentVariableW(fontsEnvironmentVariable, 0, 0);
-    Vector<WCHAR> buffer(size);
-    if (!::GetEnvironmentVariableW(fontsEnvironmentVariable, buffer.data(), buffer.size()))
-        return path;
-
-    path = buffer.data();
-    if (path[path.length() - 1] != '\\')
-        path.append(L"\\");
-
-    return path;
-}
-
-
-void activateFonts()
-{
-    static LPCWSTR fontsToInstall[] = {
-        TEXT("AHEM____.ttf"),
-        TEXT("Apple Chancery.ttf"),
-        TEXT("Courier Bold.ttf"),
-        TEXT("Courier.ttf"),
-        TEXT("Helvetica Bold Oblique.ttf"),
-        TEXT("Helvetica Bold.ttf"),
-        TEXT("Helvetica Oblique.ttf"),
-        TEXT("Helvetica.ttf"),
-        TEXT("Helvetica Neue Bold Italic.ttf"),
-        TEXT("Helvetica Neue Bold.ttf"),
-        TEXT("Helvetica Neue Condensed Black.ttf"),
-        TEXT("Helvetica Neue Condensed Bold.ttf"),
-        TEXT("Helvetica Neue Italic.ttf"),
-        TEXT("Helvetica Neue Light Italic.ttf"),
-        TEXT("Helvetica Neue Light.ttf"),
-        TEXT("Helvetica Neue UltraLight Italic.ttf"),
-        TEXT("Helvetica Neue UltraLight.ttf"),
-        TEXT("Helvetica Neue.ttf"),
-        TEXT("Lucida Grande.ttf"),
-        TEXT("Lucida Grande Bold.ttf"),
-        TEXT("Monaco.ttf"),
-        TEXT("Papyrus.ttf"),
-        TEXT("Times Bold Italic.ttf"),
-        TEXT("Times Bold.ttf"),
-        TEXT("Times Italic.ttf"),
-        TEXT("Times Roman.ttf"),
-        TEXT("WebKit Layout Tests 2.ttf"),
-        TEXT("WebKit Layout Tests.ttf"),
-        TEXT("WebKitWeightWatcher100.ttf"),
-        TEXT("WebKitWeightWatcher200.ttf"),
-        TEXT("WebKitWeightWatcher300.ttf"),
-        TEXT("WebKitWeightWatcher400.ttf"),
-        TEXT("WebKitWeightWatcher500.ttf"),
-        TEXT("WebKitWeightWatcher600.ttf"),
-        TEXT("WebKitWeightWatcher700.ttf"),
-        TEXT("WebKitWeightWatcher800.ttf"),
-        TEXT("WebKitWeightWatcher900.ttf")
-    };
-
-    wstring resourcesPath = fontsPath();
-
-    for (unsigned i = 0; i < ARRAYSIZE(fontsToInstall); ++i)
-        ::AddFontResourceExW(wstring(resourcesPath + fontsToInstall[i]).c_str(), FR_PRIVATE, 0);
-}
-
-}
diff --git a/Tools/WebKitTestRunner/InjectedBundle/win/InjectedBundleWin.cpp b/Tools/WebKitTestRunner/InjectedBundle/win/InjectedBundleWin.cpp
deleted file mode 100644
index c70514a..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/win/InjectedBundleWin.cpp
+++ /dev/null
@@ -1,58 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "InjectedBundle.h"
-
-namespace WTR {
-
-static HANDLE webProcessCrashingEvent;
-
-static LONG WINAPI exceptionFilter(EXCEPTION_POINTERS*)
-{
-    // Let the UI process know right away that we crashed. It might take a long time for us to
-    // finish crashing if a crash log is being saved.
-    ::SetEvent(webProcessCrashingEvent);
-
-    return EXCEPTION_CONTINUE_SEARCH;
-}
-
-void InjectedBundle::platformInitialize(WKTypeRef initializationUserData)
-{
-    ::SetUnhandledExceptionFilter(exceptionFilter);
-
-    ASSERT_ARG(initializationUserData, initializationUserData);
-    ASSERT_ARG(initializationUserData, WKGetTypeID(initializationUserData) == WKStringGetTypeID());
-
-    WKStringRef string = static_cast<WKStringRef>(initializationUserData);
-    Vector<char> buffer(WKStringGetMaximumUTF8CStringSize(string));
-    WKStringGetUTF8CString(string, buffer.data(), buffer.size());
-
-    // The UI process should already have created this event. We're just getting another HANDLE to it.
-    webProcessCrashingEvent = ::CreateEventA(0, FALSE, FALSE, buffer.data());
-    ASSERT(webProcessCrashingEvent);
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/InjectedBundle/win/TestRunnerWin.cpp b/Tools/WebKitTestRunner/InjectedBundle/win/TestRunnerWin.cpp
deleted file mode 100644
index 2253942..0000000
--- a/Tools/WebKitTestRunner/InjectedBundle/win/TestRunnerWin.cpp
+++ /dev/null
@@ -1,73 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "TestRunner.h"
-
-#include "InjectedBundle.h"
-
-namespace WTR {
-
-void TestRunner::platformInitialize()
-{
-    m_waitToDumpWatchdogTimer = 0;
-}
-
-void TestRunner::invalidateWaitToDumpWatchdogTimer()
-{
-    if (!m_waitToDumpWatchdogTimer)
-        return;
-
-    ::KillTimer(0, m_waitToDumpWatchdogTimer);
-    m_waitToDumpWatchdogTimer = 0;
-}
-
-static void CALLBACK waitToDumpWatchdogTimerFired(HWND, UINT, UINT_PTR, DWORD)
-{
-    InjectedBundle::shared().testRunner()->waitToDumpWatchdogTimerFired();
-}
-
-static const UINT_PTR waitToDumpWatchdogTimerIdentifier = 1;
-
-void TestRunner::initializeWaitToDumpWatchdogTimerIfNeeded()
-{
-    if (m_waitToDumpWatchdogTimer)
-        return;
-
-    m_waitToDumpWatchdogTimer = ::SetTimer(0, waitToDumpWatchdogTimerIdentifier, waitToDumpWatchdogTimerInterval * 1000, WTR::waitToDumpWatchdogTimerFired);
-}
-
-JSRetainPtr<JSStringRef> TestRunner::pathToLocalResource(JSStringRef url)
-{
-    return JSStringRetain(url); // TODO.
-}
-
-JSRetainPtr<JSStringRef> TestRunner::platformName()
-{
-    JSRetainPtr<JSStringRef> platformName(Adopt, JSStringCreateWithUTF8CString("win"));
-    return platformName;
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/Makefile b/Tools/WebKitTestRunner/Makefile
deleted file mode 100644
index 4648f98..0000000
--- a/Tools/WebKitTestRunner/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-# Build WebKitTestRunner only on Snow Leopard and later.
-
-OSX_VERSION ?= $(shell sw_vers -productVersion | cut -d. -f 2)
-BUILD_WEBKITTESTRUNNER = $(shell (( $(OSX_VERSION) >= 6 )) && echo "YES" )
-
-ifeq "$(BUILD_WEBKITTESTRUNNER)" "YES"
-
-SCRIPTS_PATH = ../Scripts
-include ../../Makefile.shared
-
-else
-
-all: ;
-
-debug d development dev develop: ;
-
-release r deployment dep deploy: ;
-
-clean: ;
-
-endif
diff --git a/Tools/WebKitTestRunner/PixelDumpSupport.cpp b/Tools/WebKitTestRunner/PixelDumpSupport.cpp
deleted file mode 100644
index 7697473..0000000
--- a/Tools/WebKitTestRunner/PixelDumpSupport.cpp
+++ /dev/null
@@ -1,94 +0,0 @@
-/*
- * Copyright (C) 2009 Apple, Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PixelDumpSupport.h"
-
-#include "CyclicRedundancyCheck.h"
-#include <cstdio>
-
-static void appendIntToVector(unsigned number, Vector<unsigned char>& vector)
-{
-    size_t offset = vector.size();
-    vector.grow(offset + 4);
-    vector[offset] = ((number >> 24) & 0xff);
-    vector[offset + 1] = ((number >> 16) & 0xff);
-    vector[offset + 2] = ((number >> 8) & 0xff);
-    vector[offset + 3] = (number & 0xff);
-}
-
-static void convertChecksumToPNGComment(const char* checksum, Vector<unsigned char>& bytesToAdd)
-{
-    // Chunks of PNG files are <length>, <type>, <data>, <crc>.
-    static const char textCommentPrefix[] = "\x00\x00\x00\x29tEXtchecksum\x00";
-    static const size_t prefixLength = sizeof(textCommentPrefix) - 1; // The -1 is for the null at the end of the char[].
-    static const size_t checksumLength = 32;
-
-    bytesToAdd.append(textCommentPrefix, prefixLength);
-    bytesToAdd.append(checksum, checksumLength);
-
-    Vector<unsigned char> dataToCrc;
-    dataToCrc.append(textCommentPrefix + 4, prefixLength - 4); // Don't include the chunk length in the crc.
-    dataToCrc.append(checksum, checksumLength);
-    unsigned crc32 = computeCrc(dataToCrc);
-
-    appendIntToVector(crc32, bytesToAdd);
-}
-
-static size_t offsetAfterIHDRChunk(const unsigned char* data, const size_t dataLength)
-{
-    const int pngHeaderLength = 8;
-    const int pngIHDRChunkLength = 25; // chunk length + "IHDR" + 13 bytes of data + checksum
-    return pngHeaderLength + pngIHDRChunkLength;
-}
-
-void printPNG(const unsigned char* data, const size_t dataLength, const char* checksum)
-{
-    Vector<unsigned char> bytesToAdd;
-    convertChecksumToPNGComment(checksum, bytesToAdd);
-
-    printf("Content-Type: %s\n", "image/png");
-    printf("Content-Length: %lu\n", static_cast<unsigned long>(dataLength + bytesToAdd.size()));
-
-    size_t insertOffset = offsetAfterIHDRChunk(data, dataLength);
-
-    fwrite(data, 1, insertOffset, stdout);
-    fwrite(bytesToAdd.data(), 1, bytesToAdd.size(), stdout);
-
-    const size_t bytesToWriteInOneChunk = 1 << 15;
-    data += insertOffset;
-    size_t dataRemainingToWrite = dataLength - insertOffset;
-    while (dataRemainingToWrite) {
-        size_t bytesToWriteInThisChunk = std::min(dataRemainingToWrite, bytesToWriteInOneChunk);
-        size_t bytesWritten = fwrite(data, 1, bytesToWriteInThisChunk, stdout);
-        if (bytesWritten != bytesToWriteInThisChunk)
-            break;
-        dataRemainingToWrite -= bytesWritten;
-        data += bytesWritten;
-    }
-}
diff --git a/Tools/WebKitTestRunner/PixelDumpSupport.h b/Tools/WebKitTestRunner/PixelDumpSupport.h
deleted file mode 100644
index 41c6e38..0000000
--- a/Tools/WebKitTestRunner/PixelDumpSupport.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright (C) 2007 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef PixelDumpSupport_h
-#define PixelDumpSupport_h
-
-void printPNG(const unsigned char* data, const size_t dataLength, const char* checksum);
-
-#endif // PixelDumpSupport_h
diff --git a/Tools/WebKitTestRunner/PlatformEfl.cmake b/Tools/WebKitTestRunner/PlatformEfl.cmake
deleted file mode 100644
index 0a8ab37..0000000
--- a/Tools/WebKitTestRunner/PlatformEfl.cmake
+++ /dev/null
@@ -1,82 +0,0 @@
-add_custom_target(forwarding-headersEflForWebKitTestRunner
-    COMMAND ${PERL_EXECUTABLE} ${WEBKIT2_DIR}/Scripts/generate-forwarding-headers.pl ${WEBKIT_TESTRUNNER_DIR} ${DERIVED_SOURCES_WEBKIT2_DIR}/include efl
-)
-set(ForwardingHeadersForWebKitTestRunner_NAME forwarding-headersEflForWebKitTestRunner)
-
-add_custom_target(forwarding-headersSoupForWebKitTestRunner
-    COMMAND ${PERL_EXECUTABLE} ${WEBKIT2_DIR}/Scripts/generate-forwarding-headers.pl ${WEBKIT_TESTRUNNER_DIR} ${DERIVED_SOURCES_WEBKIT2_DIR}/include soup
-)
-set(ForwardingNetworkHeadersForWebKitTestRunner_NAME forwarding-headersSoupForWebKitTestRunner)
-
-list(APPEND WebKitTestRunner_SOURCES
-    ${WEBKIT_TESTRUNNER_DIR}/cairo/TestInvocationCairo.cpp
-
-    ${WEBKIT_TESTRUNNER_DIR}/efl/EventSenderProxyEfl.cpp
-    ${WEBKIT_TESTRUNNER_DIR}/efl/PlatformWebViewEfl.cpp
-    ${WEBKIT_TESTRUNNER_DIR}/efl/TestControllerEfl.cpp
-    ${WEBKIT_TESTRUNNER_DIR}/efl/main.cpp
-)
-
-list(APPEND WebKitTestRunner_INCLUDE_DIRECTORIES
-    ${TOOLS_DIR}/DumpRenderTree/efl/
-    ${WEBKIT2_DIR}/UIProcess/API/efl
-    "${WTF_DIR}/wtf/gobject"
-    ${CAIRO_INCLUDE_DIRS}
-    ${ECORE_EVAS_INCLUDE_DIRS}
-    ${ECORE_FILE_INCLUDE_DIRS}
-    ${ECORE_INCLUDE_DIRS}
-    ${EINA_INCLUDE_DIRS}
-    ${EO_INCLUDE_DIRS}
-    ${EVAS_INCLUDE_DIRS}
-    ${GLIB_INCLUDE_DIRS}
-)
-
-list(APPEND WebKitTestRunner_LIBRARIES
-    ${CAIRO_LIBRARIES}
-    ${ECORE_LIBRARIES}
-    ${ECORE_EVAS_LIBRARIES}
-    ${EINA_LIBRARIES}
-    ${EO_LIBRARIES}
-    ${EVAS_LIBRARIES}
-    ${GLIB_LIBRARIES}
-    ${OPENGL_LIBRARIES}
-    ${WTF_LIBRARY_NAME}
-)
-
-if (ENABLE_ECORE_X)
-    list(APPEND WebKitTestRunner_INCLUDE_DIRECTORIES
-        ${ECORE_X_INCLUDE_DIRS}
-    )
-
-    list(APPEND WebKitTestRunner_LIBRARIES
-        ${ECORE_X_LIBRARIES}
-        ${X11_Xext_LIB}
-    )
-endif ()
-
-list(APPEND WebKitTestRunnerInjectedBundle_SOURCES
-    ${TOOLS_DIR}/DumpRenderTree/efl/FontManagement.cpp
-
-    ${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/efl/ActivateFontsEfl.cpp
-    ${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/efl/InjectedBundleEfl.cpp
-    ${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/efl/TestRunnerEfl.cpp
-)
-
-# FIXME: DOWNLOADED_FONTS_DIR should not hardcode the directory
-# structure. See <https://bugs.webkit.org/show_bug.cgi?id=81475>.
-add_definitions(-DFONTS_CONF_DIR="${TOOLS_DIR}/DumpRenderTree/gtk/fonts"
-                -DDOWNLOADED_FONTS_DIR="${CMAKE_SOURCE_DIR}/WebKitBuild/Dependencies/Source/webkitgtk-test-fonts-0.0.3"
-                -DTHEME_DIR="${THEME_BINARY_DIR}")
-
-if (ENABLE_ACCESSIBILITY)
-    list(APPEND WebKitTestRunnerInjectedBundle_SOURCES
-        ${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/atk/AccessibilityControllerAtk.cpp
-        ${WEBKIT_TESTRUNNER_INJECTEDBUNDLE_DIR}/atk/AccessibilityUIElementAtk.cpp
-    )
-    list(APPEND WebKitTestRunner_INCLUDE_DIRECTORIES
-        ${ATK_INCLUDE_DIRS}
-    )
-    list(APPEND WebKitTestRunner_LIBRARIES
-        ${ATK_LIBRARIES}
-    )
-endif ()
diff --git a/Tools/WebKitTestRunner/PlatformWebView.h b/Tools/WebKitTestRunner/PlatformWebView.h
deleted file mode 100644
index 8df1144..0000000
--- a/Tools/WebKitTestRunner/PlatformWebView.h
+++ /dev/null
@@ -1,118 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef PlatformWebView_h
-#define PlatformWebView_h
-
-#include <WebKit2/WKRetainPtr.h>
-
-#if defined(BUILDING_QT__)
-QT_BEGIN_NAMESPACE
-class QQuickView;
-class QEventLoop;
-QT_END_NAMESPACE
-class QQuickWebView;
-typedef QQuickWebView* PlatformWKView;
-typedef QQuickView* PlatformWindow;
-#elif defined(__APPLE__) && __APPLE__
-#ifdef __OBJC__
-@class WKView;
-@class WebKitTestRunnerWindow;
-#else
-class WKView;
-class WebKitTestRunnerWindow;
-#endif
-typedef WKView* PlatformWKView;
-typedef WebKitTestRunnerWindow* PlatformWindow;
-#elif defined(WIN32) || defined(_WIN32)
-typedef WKViewRef PlatformWKView;
-typedef HWND PlatformWindow;
-#elif defined(BUILDING_GTK__)
-typedef struct _GtkWidget GtkWidget;
-typedef WKViewRef PlatformWKView;
-typedef GtkWidget* PlatformWindow;
-#elif PLATFORM(EFL)
-typedef struct _Ecore_Evas Ecore_Evas;
-typedef struct _Evas_Object Evas_Object;
-typedef Evas_Object* PlatformWKView;
-typedef Ecore_Evas* PlatformWindow;
-#endif
-
-namespace WTR {
-
-class PlatformWebView {
-public:
-    PlatformWebView(WKContextRef, WKPageGroupRef, WKDictionaryRef options = 0);
-    ~PlatformWebView();
-
-    WKPageRef page();
-    PlatformWKView platformView() { return m_view; }
-    PlatformWindow platformWindow() { return m_window; }
-    void resizeTo(unsigned width, unsigned height);
-    void focus();
-
-#if PLATFORM(QT)
-    bool sendEvent(QEvent*);
-    void postEvent(QEvent*);
-    void setModalEventLoop(QEventLoop* eventLoop) { m_modalEventLoop = eventLoop; }
-    static bool windowShapshotEnabled();
-#endif
-
-    WKRect windowFrame();
-    void setWindowFrame(WKRect);
-
-    void didInitializeClients();
-    
-    void addChromeInputField();
-    void removeChromeInputField();
-    void makeWebViewFirstResponder();
-    void setWindowIsKey(bool isKey) { m_windowIsKey = isKey; }
-    bool windowIsKey() const { return m_windowIsKey; }
-
-#if PLATFORM(MAC) || PLATFORM(EFL) || PLATFORM(QT)
-    bool viewSupportsOptions(WKDictionaryRef) const;
-#else
-    bool viewSupportsOptions(WKDictionaryRef) const { return true; }
-#endif
-
-    WKRetainPtr<WKImageRef> windowSnapshotImage();
-    WKDictionaryRef options() const { return m_options.get(); }
-
-private:
-    PlatformWKView m_view;
-    PlatformWindow m_window;
-    bool m_windowIsKey;
-    WKRetainPtr<WKDictionaryRef> m_options;
-#if PLATFORM(EFL) || PLATFORM(QT)
-    bool m_usingFixedLayout;
-#endif
-#if PLATFORM(QT)
-    QEventLoop* m_modalEventLoop;
-#endif
-};
-
-} // namespace WTR
-
-#endif // PlatformWebView_h
diff --git a/Tools/WebKitTestRunner/StringFunctions.h b/Tools/WebKitTestRunner/StringFunctions.h
deleted file mode 100644
index 13f6e58..0000000
--- a/Tools/WebKitTestRunner/StringFunctions.h
+++ /dev/null
@@ -1,102 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- * Copyright (C) 2010 University of Szeged. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef StringFunctions_h
-#define StringFunctions_h
-
-#include <JavaScriptCore/JSRetainPtr.h>
-#include <JavaScriptCore/JavaScript.h>
-#include <sstream>
-#include <string>
-#include <WebKit2/WKRetainPtr.h>
-#include <WebKit2/WKString.h>
-#include <WebKit2/WKStringPrivate.h>
-#include <WebKit2/WKURL.h>
-#include <wtf/OwnArrayPtr.h>
-#include <wtf/PassOwnArrayPtr.h>
-#include <wtf/Platform.h>
-#include <wtf/text/CString.h>
-#include <wtf/text/WTFString.h>
-#include <wtf/Vector.h>
-
-namespace WTR {
-
-// Conversion functions
-
-inline WKRetainPtr<WKStringRef> toWK(JSStringRef string)
-{
-    return adoptWK(WKStringCreateWithJSString(string));
-}
-
-inline WKRetainPtr<WKStringRef> toWK(JSRetainPtr<JSStringRef> string)
-{
-    return toWK(string.get());
-}
-
-inline WKRetainPtr<WKStringRef> toWK(const WTF::String& string)
-{
-    return adoptWK(WKStringCreateWithUTF8CString(string.utf8().data()));
-}
-
-inline JSRetainPtr<JSStringRef> toJS(WKStringRef string)
-{
-    return JSRetainPtr<JSStringRef>(Adopt, WKStringCopyJSString(string));
-}
-
-inline JSRetainPtr<JSStringRef> toJS(const WKRetainPtr<WKStringRef>& string)
-{
-    return toJS(string.get());
-}
-
-inline std::string toSTD(WKStringRef string)
-{
-    size_t bufferSize = WKStringGetMaximumUTF8CStringSize(string);
-    OwnArrayPtr<char> buffer = adoptArrayPtr(new char[bufferSize]);
-    size_t stringLength = WKStringGetUTF8CString(string, buffer.get(), bufferSize);
-    return std::string(buffer.get(), stringLength - 1);
-}
-
-inline std::string toSTD(const WKRetainPtr<WKStringRef>& string)
-{
-    return toSTD(string.get());
-}
-
-inline WTF::String toWTFString(WKStringRef string)
-{
-    size_t bufferSize = WKStringGetMaximumUTF8CStringSize(string);
-    OwnArrayPtr<char> buffer = adoptArrayPtr(new char[bufferSize]);
-    size_t stringLength = WKStringGetUTF8CString(string, buffer.get(), bufferSize);
-    return WTF::String::fromUTF8WithLatin1Fallback(buffer.get(), stringLength - 1);
-}
-    
-inline WTF::String toWTFString(const WKRetainPtr<WKStringRef>& string)
-{
-    return toWTFString(string.get());
-}
-
-} // namespace WTR
-
-#endif // StringFunctions_h
diff --git a/Tools/WebKitTestRunner/Target.pri b/Tools/WebKitTestRunner/Target.pri
deleted file mode 100644
index 39800ab..0000000
--- a/Tools/WebKitTestRunner/Target.pri
+++ /dev/null
@@ -1,49 +0,0 @@
-# -------------------------------------------------------------------
-# Project file for WebKitTestRunner binary (WTR)
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-TEMPLATE = app
-TARGET = WebKitTestRunner
-
-HEADERS += \
-    EventSenderProxy.h \
-    GeolocationProviderMock.h \
-    PlatformWebView.h \
-    StringFunctions.h \
-    TestController.h \
-    TestInvocation.h \
-    WebNotificationProvider.h \
-    WorkQueueManager.h
-
-SOURCES += \
-    qt/main.cpp \
-    qt/EventSenderProxyQt.cpp \
-    qt/PlatformWebViewQt.cpp \
-    qt/TestControllerQt.cpp \
-    qt/TestInvocationQt.cpp \
-    GeolocationProviderMock.cpp \
-    TestController.cpp \
-    TestInvocation.cpp \
-    WebNotificationProvider.cpp \
-    WorkQueueManager.cpp
-
-DESTDIR = $${ROOT_BUILD_DIR}/bin
-
-QT = core core-private gui gui-private widgets network testlib quick quick-private webkitwidgets qml-private v8-private
-
-WEBKIT += wtf javascriptcore webkit2
-
-DEFINES += USE_SYSTEM_MALLOC=1
-
-INCLUDEPATH += \
-    $$PWD \
-    $${ROOT_WEBKIT_DIR}/Source/WebCore/platform/qt \
-    $${ROOT_WEBKIT_DIR}/Tools/DumpRenderTree/qt
-
-PREFIX_HEADER = WebKitTestRunnerPrefix.h
-*-g++*:QMAKE_CXXFLAGS += "-include $$PREFIX_HEADER"
-*-clang*:QMAKE_CXXFLAGS += "-include $$PREFIX_HEADER"
-
-RESOURCES = qt/WebKitTestRunner.qrc
diff --git a/Tools/WebKitTestRunner/TestController.cpp b/Tools/WebKitTestRunner/TestController.cpp
deleted file mode 100644
index be7620f..0000000
--- a/Tools/WebKitTestRunner/TestController.cpp
+++ /dev/null
@@ -1,1229 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "TestController.h"
-
-#include "PlatformWebView.h"
-#include "StringFunctions.h"
-#include "TestInvocation.h"
-#include <WebKit2/WKAuthenticationChallenge.h>
-#include <WebKit2/WKAuthenticationDecisionListener.h>
-#include <WebKit2/WKContextPrivate.h>
-#include <WebKit2/WKCredential.h>
-#include <WebKit2/WKNotification.h>
-#include <WebKit2/WKNotificationManager.h>
-#include <WebKit2/WKNotificationPermissionRequest.h>
-#include <WebKit2/WKNumber.h>
-#include <WebKit2/WKPageGroup.h>
-#include <WebKit2/WKPagePrivate.h>
-#include <WebKit2/WKPreferencesPrivate.h>
-#include <WebKit2/WKRetainPtr.h>
-#include <algorithm>
-#include <cstdio>
-#include <ctype.h>
-#include <stdlib.h>
-#include <string>
-#include <wtf/PassOwnPtr.h>
-#include <wtf/text/CString.h>
-
-#if PLATFORM(MAC)
-#include <WebKit2/WKPagePrivateMac.h>
-#endif
-
-#if PLATFORM(MAC) || PLATFORM(QT) || PLATFORM(GTK) || PLATFORM(EFL)
-#include "EventSenderProxy.h"
-#endif
-
-#if !PLATFORM(MAC)
-#include <WebKit2/WKTextChecker.h>
-#endif
-
-namespace WTR {
-
-// defaultLongTimeout + defaultShortTimeout should be less than 80,
-// the default timeout value of the test harness so we can detect an
-// unresponsive web process.
-static const double defaultLongTimeout = 60;
-static const double defaultShortTimeout = 15;
-static const double defaultNoTimeout = -1;
-
-static WKURLRef blankURL()
-{
-    static WKURLRef staticBlankURL = WKURLCreateWithUTF8CString("about:blank");
-    return staticBlankURL;
-}
-
-static TestController* controller;
-
-TestController& TestController::shared()
-{
-    ASSERT(controller);
-    return *controller;
-}
-
-TestController::TestController(int argc, const char* argv[])
-    : m_verbose(false)
-    , m_printSeparators(false)
-    , m_usingServerMode(false)
-    , m_gcBetweenTests(false)
-    , m_shouldDumpPixelsForAllTests(false)
-    , m_state(Initial)
-    , m_doneResetting(false)
-    , m_longTimeout(defaultLongTimeout)
-    , m_shortTimeout(defaultShortTimeout)
-    , m_noTimeout(defaultNoTimeout)
-    , m_useWaitToDumpWatchdogTimer(true)
-    , m_forceNoTimeout(false)
-    , m_timeout(0)
-    , m_didPrintWebProcessCrashedMessage(false)
-    , m_shouldExitWhenWebProcessCrashes(true)
-    , m_beforeUnloadReturnValue(true)
-    , m_isGeolocationPermissionSet(false)
-    , m_isGeolocationPermissionAllowed(false)
-    , m_policyDelegateEnabled(false)
-    , m_policyDelegatePermissive(false)
-{
-    initialize(argc, argv);
-    controller = this;
-    run();
-    controller = 0;
-}
-
-TestController::~TestController()
-{
-    platformDestroy();
-}
-
-static WKRect getWindowFrame(WKPageRef page, const void* clientInfo)
-{
-    PlatformWebView* view = static_cast<PlatformWebView*>(const_cast<void*>(clientInfo));
-    return view->windowFrame();
-}
-
-static void setWindowFrame(WKPageRef page, WKRect frame, const void* clientInfo)
-{
-    PlatformWebView* view = static_cast<PlatformWebView*>(const_cast<void*>(clientInfo));
-    view->setWindowFrame(frame);
-}
-
-static bool runBeforeUnloadConfirmPanel(WKPageRef page, WKStringRef message, WKFrameRef frame, const void*)
-{
-    printf("CONFIRM NAVIGATION: %s\n", toSTD(message).c_str());
-    return TestController::shared().beforeUnloadReturnValue();
-}
-
-static unsigned long long exceededDatabaseQuota(WKPageRef, WKFrameRef, WKSecurityOriginRef, WKStringRef, WKStringRef, unsigned long long, unsigned long long, unsigned long long, unsigned long long, const void*)
-{
-    static const unsigned long long defaultQuota = 5 * 1024 * 1024;
-    return defaultQuota;
-}
-
-
-void TestController::runModal(WKPageRef page, const void* clientInfo)
-{
-    PlatformWebView* view = static_cast<PlatformWebView*>(const_cast<void*>(clientInfo));
-    view->setWindowIsKey(false);
-    runModal(view);
-    view->setWindowIsKey(true);
-}
-
-static void closeOtherPage(WKPageRef page, const void* clientInfo)
-{
-    WKPageClose(page);
-    PlatformWebView* view = static_cast<PlatformWebView*>(const_cast<void*>(clientInfo));
-    delete view;
-}
-
-static void focus(WKPageRef page, const void* clientInfo)
-{
-    PlatformWebView* view = static_cast<PlatformWebView*>(const_cast<void*>(clientInfo));
-    view->focus();
-    view->setWindowIsKey(true);
-}
-
-static void unfocus(WKPageRef page, const void* clientInfo)
-{
-    PlatformWebView* view = static_cast<PlatformWebView*>(const_cast<void*>(clientInfo));
-    view->setWindowIsKey(false);
-}
-
-static void decidePolicyForGeolocationPermissionRequest(WKPageRef, WKFrameRef, WKSecurityOriginRef, WKGeolocationPermissionRequestRef permissionRequest, const void* clientInfo)
-{
-    TestController::shared().handleGeolocationPermissionRequest(permissionRequest);
-}
-
-int TestController::getCustomTimeout()
-{
-    return m_timeout;
-}
-
-WKPageRef TestController::createOtherPage(WKPageRef oldPage, WKURLRequestRef, WKDictionaryRef, WKEventModifiers, WKEventMouseButton, const void* clientInfo)
-{
-    PlatformWebView* parentView = static_cast<PlatformWebView*>(const_cast<void*>(clientInfo));
-
-    PlatformWebView* view = new PlatformWebView(WKPageGetContext(oldPage), WKPageGetPageGroup(oldPage), parentView->options());
-    WKPageRef newPage = view->page();
-
-    view->resizeTo(800, 600);
-
-    WKPageUIClient otherPageUIClient = {
-        kWKPageUIClientCurrentVersion,
-        view,
-        0, // createNewPage_deprecatedForUseWithV0
-        0, // showPage
-        closeOtherPage,
-        0, // takeFocus
-        focus,
-        unfocus,
-        0, // runJavaScriptAlert
-        0, // runJavaScriptConfirm
-        0, // runJavaScriptPrompt
-        0, // setStatusText
-        0, // mouseDidMoveOverElement_deprecatedForUseWithV0
-        0, // missingPluginButtonClicked
-        0, // didNotHandleKeyEvent
-        0, // didNotHandleWheelEvent
-        0, // toolbarsAreVisible
-        0, // setToolbarsAreVisible
-        0, // menuBarIsVisible
-        0, // setMenuBarIsVisible
-        0, // statusBarIsVisible
-        0, // setStatusBarIsVisible
-        0, // isResizable
-        0, // setIsResizable
-        getWindowFrame,
-        setWindowFrame,
-        runBeforeUnloadConfirmPanel,
-        0, // didDraw
-        0, // pageDidScroll
-        exceededDatabaseQuota,
-        0, // runOpenPanel
-        decidePolicyForGeolocationPermissionRequest,
-        0, // headerHeight
-        0, // footerHeight
-        0, // drawHeader
-        0, // drawFooter
-        0, // printFrame
-        runModal,
-        0, // didCompleteRubberBandForMainFrame
-        0, // saveDataToFileInDownloadsFolder
-        0, // shouldInterruptJavaScript
-        createOtherPage,
-        0, // mouseDidMoveOverElement
-        0, // decidePolicyForNotificationPermissionRequest
-        0, // unavailablePluginButtonClicked_deprecatedForUseWithV1
-        0, // showColorPicker
-        0, // hideColorPicker
-        0, // unavailablePluginButtonClicked
-    };
-    WKPageSetPageUIClient(newPage, &otherPageUIClient);
-
-    view->didInitializeClients();
-
-    WKRetain(newPage);
-    return newPage;
-}
-
-const char* TestController::libraryPathForTesting()
-{
-    // FIXME: This may not be sufficient to prevent interactions/crashes
-    // when running more than one copy of DumpRenderTree.
-    // See https://bugs.webkit.org/show_bug.cgi?id=10906
-    char* dumpRenderTreeTemp = getenv("DUMPRENDERTREE_TEMP");
-    if (dumpRenderTreeTemp)
-        return dumpRenderTreeTemp;
-    return platformLibraryPathForTesting();
-}
-
-
-void TestController::initialize(int argc, const char* argv[])
-{
-    platformInitialize();
-
-    if (argc < 2) {
-        fputs("Usage: WebKitTestRunner [options] filename [filename2..n]\n", stderr);
-        // FIXME: Refactor option parsing to allow us to print
-        // an auto-generated list of options.
-        exit(1);
-    }
-
-    bool printSupportedFeatures = false;
-
-    for (int i = 1; i < argc; ++i) {
-        std::string argument(argv[i]);
-
-        if (argument == "--timeout" && i + 1 < argc) {
-            m_longTimeout = atoi(argv[++i]);
-            // Scale up the short timeout to match.
-            m_shortTimeout = defaultShortTimeout * m_longTimeout / defaultLongTimeout;
-            continue;
-        }
-
-        if (argument == "--no-timeout") {
-            m_useWaitToDumpWatchdogTimer = false;
-            continue;
-        }
-
-        if (argument == "--no-timeout-at-all") {
-            m_useWaitToDumpWatchdogTimer = false;
-            m_forceNoTimeout = true;
-            continue;
-        }
-
-        if (argument == "--verbose") {
-            m_verbose = true;
-            continue;
-        }
-        if (argument == "--gc-between-tests") {
-            m_gcBetweenTests = true;
-            continue;
-        }
-        if (argument == "--pixel-tests" || argument == "-p") {
-            m_shouldDumpPixelsForAllTests = true;
-            continue;
-        }
-        if (argument == "--print-supported-features") {
-            printSupportedFeatures = true;
-            break;
-        }
-
-
-        // Skip any other arguments that begin with '--'.
-        if (argument.length() >= 2 && argument[0] == '-' && argument[1] == '-')
-            continue;
-
-        m_paths.push_back(argument);
-    }
-
-    if (printSupportedFeatures) {
-        // FIXME: On Windows, DumpRenderTree uses this to expose whether it supports 3d
-        // transforms and accelerated compositing. When we support those features, we
-        // should match DRT's behavior.
-        exit(0);
-    }
-
-    m_usingServerMode = (m_paths.size() == 1 && m_paths[0] == "-");
-    if (m_usingServerMode)
-        m_printSeparators = true;
-    else
-        m_printSeparators = m_paths.size() > 1;
-
-    initializeInjectedBundlePath();
-    initializeTestPluginDirectory();
-
-    WKRetainPtr<WKStringRef> pageGroupIdentifier(AdoptWK, WKStringCreateWithUTF8CString("WebKitTestRunnerPageGroup"));
-    m_pageGroup.adopt(WKPageGroupCreateWithIdentifier(pageGroupIdentifier.get()));
-
-    m_context.adopt(WKContextCreateWithInjectedBundlePath(injectedBundlePath()));
-    m_geolocationProvider = adoptPtr(new GeolocationProviderMock(m_context.get()));
-
-    if (const char* dumpRenderTreeTemp = libraryPathForTesting()) {
-        WKRetainPtr<WKStringRef> dumpRenderTreeTempWK(AdoptWK, WKStringCreateWithUTF8CString(dumpRenderTreeTemp));
-        WKContextSetDatabaseDirectory(m_context.get(), dumpRenderTreeTempWK.get());
-        WKContextSetLocalStorageDirectory(m_context.get(), dumpRenderTreeTempWK.get());
-        WKContextSetDiskCacheDirectory(m_context.get(), dumpRenderTreeTempWK.get());
-        WKContextSetCookieStorageDirectory(m_context.get(), dumpRenderTreeTempWK.get());
-
-        // WebCore::pathByAppendingComponent is not used here because of the namespace,
-        // which leads us to this ugly #ifdef and file path concatenation.
-#if OS(WINDOWS)
-        const char separator = '\\';
-#else
-        const char separator = '/';
-#endif
-        String iconDatabaseFileTemp = String::fromUTF8(dumpRenderTreeTemp) + separator + String(ASCIILiteral("WebpageIcons.db"));
-        WKContextSetIconDatabasePath(m_context.get(), toWK(iconDatabaseFileTemp).get());
-    }
-
-    platformInitializeContext();
-
-    WKContextInjectedBundleClient injectedBundleClient = {
-        kWKContextInjectedBundleClientCurrentVersion,
-        this,
-        didReceiveMessageFromInjectedBundle,
-        didReceiveSynchronousMessageFromInjectedBundle,
-        0 // getInjectedBundleInitializationUserData
-    };
-    WKContextSetInjectedBundleClient(m_context.get(), &injectedBundleClient);
-
-    WKNotificationManagerRef notificationManager = WKContextGetNotificationManager(m_context.get());
-    WKNotificationProvider notificationKit = m_webNotificationProvider.provider();
-    WKNotificationManagerSetProvider(notificationManager, &notificationKit);
-
-    if (testPluginDirectory())
-        WKContextSetAdditionalPluginsDirectory(m_context.get(), testPluginDirectory());
-
-    createWebViewWithOptions(0);
-}
-
-void TestController::createWebViewWithOptions(WKDictionaryRef options)
-{
-    m_mainWebView = adoptPtr(new PlatformWebView(m_context.get(), m_pageGroup.get(), options));
-    WKPageUIClient pageUIClient = {
-        kWKPageUIClientCurrentVersion,
-        m_mainWebView.get(),
-        0, // createNewPage_deprecatedForUseWithV0
-        0, // showPage
-        0, // close
-        0, // takeFocus
-        focus,
-        unfocus,
-        0, // runJavaScriptAlert
-        0, // runJavaScriptConfirm
-        0, // runJavaScriptPrompt
-        0, // setStatusText
-        0, // mouseDidMoveOverElement_deprecatedForUseWithV0
-        0, // missingPluginButtonClicked
-        0, // didNotHandleKeyEvent
-        0, // didNotHandleWheelEvent
-        0, // toolbarsAreVisible
-        0, // setToolbarsAreVisible
-        0, // menuBarIsVisible
-        0, // setMenuBarIsVisible
-        0, // statusBarIsVisible
-        0, // setStatusBarIsVisible
-        0, // isResizable
-        0, // setIsResizable
-        getWindowFrame,
-        setWindowFrame,
-        runBeforeUnloadConfirmPanel,
-        0, // didDraw
-        0, // pageDidScroll
-        exceededDatabaseQuota,
-        0, // runOpenPanel
-        decidePolicyForGeolocationPermissionRequest,
-        0, // headerHeight
-        0, // footerHeight
-        0, // drawHeader
-        0, // drawFooter
-        0, // printFrame
-        runModal,
-        0, // didCompleteRubberBandForMainFrame
-        0, // saveDataToFileInDownloadsFolder
-        0, // shouldInterruptJavaScript
-        createOtherPage,
-        0, // mouseDidMoveOverElement
-        decidePolicyForNotificationPermissionRequest, // decidePolicyForNotificationPermissionRequest
-        0, // unavailablePluginButtonClicked_deprecatedForUseWithV1
-        0, // showColorPicker
-        0, // hideColorPicker
-        unavailablePluginButtonClicked,
-    };
-    WKPageSetPageUIClient(m_mainWebView->page(), &pageUIClient);
-
-    WKPageLoaderClient pageLoaderClient = {
-        kWKPageLoaderClientCurrentVersion,
-        this,
-        0, // didStartProvisionalLoadForFrame
-        0, // didReceiveServerRedirectForProvisionalLoadForFrame
-        0, // didFailProvisionalLoadWithErrorForFrame
-        didCommitLoadForFrame,
-        0, // didFinishDocumentLoadForFrame
-        didFinishLoadForFrame,
-        0, // didFailLoadWithErrorForFrame
-        0, // didSameDocumentNavigationForFrame
-        0, // didReceiveTitleForFrame
-        0, // didFirstLayoutForFrame
-        0, // didFirstVisuallyNonEmptyLayoutForFrame
-        0, // didRemoveFrameFromHierarchy
-        0, // didFailToInitializePlugin
-        0, // didDisplayInsecureContentForFrame
-        0, // canAuthenticateAgainstProtectionSpaceInFrame
-        didReceiveAuthenticationChallengeInFrame, // didReceiveAuthenticationChallengeInFrame
-        0, // didStartProgress
-        0, // didChangeProgress
-        0, // didFinishProgress
-        0, // didBecomeUnresponsive
-        0, // didBecomeResponsive
-        processDidCrash,
-        0, // didChangeBackForwardList
-        0, // shouldGoToBackForwardListItem
-        0, // didRunInsecureContentForFrame
-        0, // didDetectXSSForFrame
-        0, // didNewFirstVisuallyNonEmptyLayout
-        0, // willGoToBackForwardListItem
-        0, // interactionOccurredWhileProcessUnresponsive
-        0, // pluginDidFail_deprecatedForUseWithV1
-        0, // didReceiveIntentForFrame
-        0, // registerIntentServiceForFrame
-        0, // didLayout
-        0, // pluginLoadPolicy
-        0, // pluginDidFail
-    };
-    WKPageSetPageLoaderClient(m_mainWebView->page(), &pageLoaderClient);
-
-    WKPagePolicyClient pagePolicyClient = {
-        kWKPagePolicyClientCurrentVersion,
-        this,
-        decidePolicyForNavigationAction,
-        0, // decidePolicyForNewWindowAction
-        decidePolicyForResponse,
-        0, // unableToImplementPolicy
-    };
-    WKPageSetPagePolicyClient(m_mainWebView->page(), &pagePolicyClient);
-
-    m_mainWebView->didInitializeClients();
-}
-
-void TestController::ensureViewSupportsOptions(WKDictionaryRef options)
-{
-    if (m_mainWebView && !m_mainWebView->viewSupportsOptions(options)) {
-        WKPageSetPageUIClient(m_mainWebView->page(), 0);
-        WKPageSetPageLoaderClient(m_mainWebView->page(), 0);
-        WKPageSetPagePolicyClient(m_mainWebView->page(), 0);
-        WKPageClose(m_mainWebView->page());
-        
-        m_mainWebView = nullptr;
-
-        createWebViewWithOptions(options);
-        resetStateToConsistentValues();
-    }
-}
-
-bool TestController::resetStateToConsistentValues()
-{
-    m_state = Resetting;
-
-    m_beforeUnloadReturnValue = true;
-
-    WKRetainPtr<WKStringRef> messageName = adoptWK(WKStringCreateWithUTF8CString("Reset"));
-    WKRetainPtr<WKMutableDictionaryRef> resetMessageBody = adoptWK(WKMutableDictionaryCreate());
-
-    WKRetainPtr<WKStringRef> shouldGCKey = adoptWK(WKStringCreateWithUTF8CString("ShouldGC"));
-    WKRetainPtr<WKBooleanRef> shouldGCValue = adoptWK(WKBooleanCreate(m_gcBetweenTests));
-    WKDictionaryAddItem(resetMessageBody.get(), shouldGCKey.get(), shouldGCValue.get());
-
-    WKContextPostMessageToInjectedBundle(TestController::shared().context(), messageName.get(), resetMessageBody.get());
-
-    WKContextSetShouldUseFontSmoothing(TestController::shared().context(), false);
-
-    WKContextSetCacheModel(TestController::shared().context(), kWKCacheModelDocumentBrowser);
-
-    // FIXME: This function should also ensure that there is only one page open.
-
-    // Reset the EventSender for each test.
-#if PLATFORM(MAC) || PLATFORM(QT) || PLATFORM(GTK) || PLATFORM(EFL)
-    m_eventSenderProxy = adoptPtr(new EventSenderProxy(this));
-#endif
-
-    // Reset preferences
-    WKPreferencesRef preferences = WKPageGroupGetPreferences(m_pageGroup.get());
-    WKPreferencesResetTestRunnerOverrides(preferences);
-    WKPreferencesSetOfflineWebApplicationCacheEnabled(preferences, true);
-    WKPreferencesSetFontSmoothingLevel(preferences, kWKFontSmoothingLevelNoSubpixelAntiAliasing);
-    WKPreferencesSetXSSAuditorEnabled(preferences, false);
-    WKPreferencesSetWebAudioEnabled(preferences, true);
-    WKPreferencesSetDeveloperExtrasEnabled(preferences, true);
-    WKPreferencesSetJavaScriptExperimentsEnabled(preferences, true);
-    WKPreferencesSetJavaScriptCanOpenWindowsAutomatically(preferences, true);
-    WKPreferencesSetJavaScriptCanAccessClipboard(preferences, true);
-    WKPreferencesSetDOMPasteAllowed(preferences, true);
-    WKPreferencesSetUniversalAccessFromFileURLsAllowed(preferences, true);
-    WKPreferencesSetFileAccessFromFileURLsAllowed(preferences, true);
-#if ENABLE(FULLSCREEN_API)
-    WKPreferencesSetFullScreenEnabled(preferences, true);
-#endif
-    WKPreferencesSetPageCacheEnabled(preferences, false);
-    WKPreferencesSetAsynchronousPluginInitializationEnabled(preferences, false);
-    WKPreferencesSetAsynchronousPluginInitializationEnabledForAllPlugins(preferences, false);
-    WKPreferencesSetArtificialPluginInitializationDelayEnabled(preferences, false);
-    WKPreferencesSetTabToLinksEnabled(preferences, false);
-    WKPreferencesSetInteractiveFormValidationEnabled(preferences, true);
-    WKPreferencesSetMockScrollbarsEnabled(preferences, true);
-
-#if !PLATFORM(QT)
-    static WKStringRef standardFontFamily = WKStringCreateWithUTF8CString("Times");
-    static WKStringRef cursiveFontFamily = WKStringCreateWithUTF8CString("Apple Chancery");
-    static WKStringRef fantasyFontFamily = WKStringCreateWithUTF8CString("Papyrus");
-    static WKStringRef fixedFontFamily = WKStringCreateWithUTF8CString("Courier");
-    static WKStringRef pictographFontFamily = WKStringCreateWithUTF8CString("Apple Color Emoji");
-    static WKStringRef sansSerifFontFamily = WKStringCreateWithUTF8CString("Helvetica");
-    static WKStringRef serifFontFamily = WKStringCreateWithUTF8CString("Times");
-
-    WKPreferencesSetStandardFontFamily(preferences, standardFontFamily);
-    WKPreferencesSetCursiveFontFamily(preferences, cursiveFontFamily);
-    WKPreferencesSetFantasyFontFamily(preferences, fantasyFontFamily);
-    WKPreferencesSetFixedFontFamily(preferences, fixedFontFamily);
-    WKPreferencesSetPictographFontFamily(preferences, pictographFontFamily);
-    WKPreferencesSetSansSerifFontFamily(preferences, sansSerifFontFamily);
-    WKPreferencesSetSerifFontFamily(preferences, serifFontFamily);
-#endif
-    WKPreferencesSetScreenFontSubstitutionEnabled(preferences, true);
-    WKPreferencesSetInspectorUsesWebKitUserInterface(preferences, true);
-    WKPreferencesSetAsynchronousSpellCheckingEnabled(preferences, false);
-#if !PLATFORM(MAC)
-    WKTextCheckerContinuousSpellCheckingEnabledStateChanged(true);
-#endif
-
-    // in the case that a test using the chrome input field failed, be sure to clean up for the next test
-    m_mainWebView->removeChromeInputField();
-    m_mainWebView->focus();
-
-    // Re-set to the default backing scale factor by setting the custom scale factor to 0.
-    WKPageSetCustomBackingScaleFactor(m_mainWebView->page(), 0);
-
-#if PLATFORM(EFL)
-    // EFL use a real window while other ports such as Qt don't.
-    // In EFL, we need to resize the window to the original size after calls to window.resizeTo.
-    WKRect rect = m_mainWebView->windowFrame();
-    m_mainWebView->setWindowFrame(WKRectMake(rect.origin.x, rect.origin.y, 800, 600));
-#endif
-
-    // Reset notification permissions
-    m_webNotificationProvider.reset();
-
-    // Reset Geolocation permissions.
-    m_geolocationPermissionRequests.clear();
-    m_isGeolocationPermissionSet = false;
-    m_isGeolocationPermissionAllowed = false;
-
-    // Reset Custom Policy Delegate.
-    setCustomPolicyDelegate(false, false);
-
-    m_workQueueManager.clearWorkQueue();
-
-    m_handlesAuthenticationChallenges = false;
-    m_authenticationUsername = String();
-    m_authenticationPassword = String();
-
-    // Reset main page back to about:blank
-    m_doneResetting = false;
-
-    WKPageLoadURL(m_mainWebView->page(), blankURL());
-    runUntil(m_doneResetting, ShortTimeout);
-    return m_doneResetting;
-}
-
-struct TestCommand {
-    TestCommand() : shouldDumpPixels(false), timeout(0) { }
-
-    std::string pathOrURL;
-    bool shouldDumpPixels;
-    std::string expectedPixelHash;
-    int timeout;
-};
-
-class CommandTokenizer {
-public:
-    explicit CommandTokenizer(const std::string& input)
-        : m_input(input)
-        , m_posNextSeparator(0)
-    {
-        pump();
-    }
-
-    bool hasNext() const;
-    std::string next();
-
-private:
-    void pump();
-    static const char kSeparator = '\'';
-    const std::string& m_input;
-    std::string m_next;
-    size_t m_posNextSeparator;
-};
-
-void CommandTokenizer::pump()
-{
-    if (m_posNextSeparator == std::string::npos || m_posNextSeparator == m_input.size()) {
-        m_next = std::string();
-        return;
-    }
-    size_t start = m_posNextSeparator ? m_posNextSeparator + 1 : 0;
-    m_posNextSeparator = m_input.find(kSeparator, start);
-    size_t size = m_posNextSeparator == std::string::npos ? std::string::npos : m_posNextSeparator - start;
-    m_next = std::string(m_input, start, size);
-}
-
-std::string CommandTokenizer::next()
-{
-    ASSERT(hasNext());
-
-    std::string oldNext = m_next;
-    pump();
-    return oldNext;
-}
-
-bool CommandTokenizer::hasNext() const
-{
-    return !m_next.empty();
-}
-
-NO_RETURN static void die(const std::string& inputLine)
-{
-    fprintf(stderr, "Unexpected input line: %s\n", inputLine.c_str());
-    exit(1);
-}
-
-TestCommand parseInputLine(const std::string& inputLine)
-{
-    TestCommand result;
-    CommandTokenizer tokenizer(inputLine);
-    if (!tokenizer.hasNext())
-        die(inputLine);
-
-    std::string arg = tokenizer.next();
-    result.pathOrURL = arg;
-    while (tokenizer.hasNext()) {
-        arg = tokenizer.next();
-        if (arg == std::string("--timeout")) {
-            std::string timeoutToken = tokenizer.next();
-            result.timeout = atoi(timeoutToken.c_str());
-        } else if (arg == std::string("-p") || arg == std::string("--pixel-test")) {
-            result.shouldDumpPixels = true;
-            if (tokenizer.hasNext())
-                result.expectedPixelHash = tokenizer.next();
-        } else
-            die(inputLine);
-    }
-    return result;
-}
-
-bool TestController::runTest(const char* inputLine)
-{
-    TestCommand command = parseInputLine(std::string(inputLine));
-
-    m_state = RunningTest;
-
-    m_currentInvocation = adoptPtr(new TestInvocation(command.pathOrURL));
-    if (command.shouldDumpPixels || m_shouldDumpPixelsForAllTests)
-        m_currentInvocation->setIsPixelTest(command.expectedPixelHash);
-    if (command.timeout > 0)
-        m_currentInvocation->setCustomTimeout(command.timeout);
-
-    m_currentInvocation->invoke();
-    m_currentInvocation.clear();
-
-    return true;
-}
-
-void TestController::runTestingServerLoop()
-{
-    char filenameBuffer[2048];
-    while (fgets(filenameBuffer, sizeof(filenameBuffer), stdin)) {
-        char* newLineCharacter = strchr(filenameBuffer, '\n');
-        if (newLineCharacter)
-            *newLineCharacter = '\0';
-
-        if (strlen(filenameBuffer) == 0)
-            continue;
-
-        if (!runTest(filenameBuffer))
-            break;
-    }
-}
-
-void TestController::run()
-{
-    if (!resetStateToConsistentValues()) {
-        m_currentInvocation->dumpWebProcessUnresponsiveness();
-        return;
-    }
-
-    if (m_usingServerMode)
-        runTestingServerLoop();
-    else {
-        for (size_t i = 0; i < m_paths.size(); ++i) {
-            if (!runTest(m_paths[i].c_str()))
-                break;
-        }
-    }
-}
-
-void TestController::runUntil(bool& done, TimeoutDuration timeoutDuration)
-{
-    double timeout = m_noTimeout;
-    if (!m_forceNoTimeout) {
-        switch (timeoutDuration) {
-        case ShortTimeout:
-            timeout = m_shortTimeout;
-            break;
-        case LongTimeout:
-            timeout = m_longTimeout;
-            break;
-        case CustomTimeout:
-            timeout = m_timeout;
-            break;
-        case NoTimeout:
-        default:
-            timeout = m_noTimeout;
-            break;
-        }
-    }
-
-    platformRunUntil(done, timeout);
-}
-
-// WKContextInjectedBundleClient
-
-void TestController::didReceiveMessageFromInjectedBundle(WKContextRef context, WKStringRef messageName, WKTypeRef messageBody, const void* clientInfo)
-{
-    static_cast<TestController*>(const_cast<void*>(clientInfo))->didReceiveMessageFromInjectedBundle(messageName, messageBody);
-}
-
-void TestController::didReceiveSynchronousMessageFromInjectedBundle(WKContextRef context, WKStringRef messageName, WKTypeRef messageBody, WKTypeRef* returnData, const void* clientInfo)
-{
-    *returnData = static_cast<TestController*>(const_cast<void*>(clientInfo))->didReceiveSynchronousMessageFromInjectedBundle(messageName, messageBody).leakRef();
-}
-
-void TestController::didReceiveKeyDownMessageFromInjectedBundle(WKDictionaryRef messageBodyDictionary, bool synchronous)
-{
-    WKRetainPtr<WKStringRef> keyKey = adoptWK(WKStringCreateWithUTF8CString("Key"));
-    WKStringRef key = static_cast<WKStringRef>(WKDictionaryGetItemForKey(messageBodyDictionary, keyKey.get()));
-
-    WKRetainPtr<WKStringRef> modifiersKey = adoptWK(WKStringCreateWithUTF8CString("Modifiers"));
-    WKEventModifiers modifiers = static_cast<WKEventModifiers>(WKUInt64GetValue(static_cast<WKUInt64Ref>(WKDictionaryGetItemForKey(messageBodyDictionary, modifiersKey.get()))));
-
-    WKRetainPtr<WKStringRef> locationKey = adoptWK(WKStringCreateWithUTF8CString("Location"));
-    unsigned location = static_cast<unsigned>(WKUInt64GetValue(static_cast<WKUInt64Ref>(WKDictionaryGetItemForKey(messageBodyDictionary, locationKey.get()))));
-
-    if (synchronous)
-        WKPageSetShouldSendEventsSynchronously(mainWebView()->page(), true);
-
-    m_eventSenderProxy->keyDown(key, modifiers, location);
-
-    if (synchronous)
-        WKPageSetShouldSendEventsSynchronously(mainWebView()->page(), false);
-}
-
-void TestController::didReceiveMessageFromInjectedBundle(WKStringRef messageName, WKTypeRef messageBody)
-{
-#if PLATFORM(MAC) || PLATFORM(QT) || PLATFORM(GTK) || PLATFORM(EFL)
-    if (WKStringIsEqualToUTF8CString(messageName, "EventSender")) {
-        ASSERT(WKGetTypeID(messageBody) == WKDictionaryGetTypeID());
-        WKDictionaryRef messageBodyDictionary = static_cast<WKDictionaryRef>(messageBody);
-
-        WKRetainPtr<WKStringRef> subMessageKey(AdoptWK, WKStringCreateWithUTF8CString("SubMessage"));
-        WKStringRef subMessageName = static_cast<WKStringRef>(WKDictionaryGetItemForKey(messageBodyDictionary, subMessageKey.get()));
-
-        if (WKStringIsEqualToUTF8CString(subMessageName, "MouseDown") || WKStringIsEqualToUTF8CString(subMessageName, "MouseUp")) {
-            WKRetainPtr<WKStringRef> buttonKey = adoptWK(WKStringCreateWithUTF8CString("Button"));
-            unsigned button = static_cast<unsigned>(WKUInt64GetValue(static_cast<WKUInt64Ref>(WKDictionaryGetItemForKey(messageBodyDictionary, buttonKey.get()))));
-
-            WKRetainPtr<WKStringRef> modifiersKey = adoptWK(WKStringCreateWithUTF8CString("Modifiers"));
-            WKEventModifiers modifiers = static_cast<WKEventModifiers>(WKUInt64GetValue(static_cast<WKUInt64Ref>(WKDictionaryGetItemForKey(messageBodyDictionary, modifiersKey.get()))));
-
-            // Forward to WebProcess
-            WKPageSetShouldSendEventsSynchronously(mainWebView()->page(), false);
-            if (WKStringIsEqualToUTF8CString(subMessageName, "MouseDown"))
-                m_eventSenderProxy->mouseDown(button, modifiers);
-            else
-                m_eventSenderProxy->mouseUp(button, modifiers);
-
-            return;
-        }
-
-        if (WKStringIsEqualToUTF8CString(subMessageName, "KeyDown")) {
-            didReceiveKeyDownMessageFromInjectedBundle(messageBodyDictionary, false);
-
-            return;
-        }
-
-        ASSERT_NOT_REACHED();
-    }
-#endif
-
-    if (!m_currentInvocation)
-        return;
-
-    m_currentInvocation->didReceiveMessageFromInjectedBundle(messageName, messageBody);
-}
-
-WKRetainPtr<WKTypeRef> TestController::didReceiveSynchronousMessageFromInjectedBundle(WKStringRef messageName, WKTypeRef messageBody)
-{
-#if PLATFORM(MAC) || PLATFORM(QT) || PLATFORM(GTK) || PLATFORM(EFL)
-    if (WKStringIsEqualToUTF8CString(messageName, "EventSender")) {
-        ASSERT(WKGetTypeID(messageBody) == WKDictionaryGetTypeID());
-        WKDictionaryRef messageBodyDictionary = static_cast<WKDictionaryRef>(messageBody);
-
-        WKRetainPtr<WKStringRef> subMessageKey(AdoptWK, WKStringCreateWithUTF8CString("SubMessage"));
-        WKStringRef subMessageName = static_cast<WKStringRef>(WKDictionaryGetItemForKey(messageBodyDictionary, subMessageKey.get()));
-
-        if (WKStringIsEqualToUTF8CString(subMessageName, "KeyDown")) {
-            didReceiveKeyDownMessageFromInjectedBundle(messageBodyDictionary, true);
-
-            return 0;
-        }
-
-        if (WKStringIsEqualToUTF8CString(subMessageName, "MouseDown") || WKStringIsEqualToUTF8CString(subMessageName, "MouseUp")) {
-            WKRetainPtr<WKStringRef> buttonKey = adoptWK(WKStringCreateWithUTF8CString("Button"));
-            unsigned button = static_cast<unsigned>(WKUInt64GetValue(static_cast<WKUInt64Ref>(WKDictionaryGetItemForKey(messageBodyDictionary, buttonKey.get()))));
-
-            WKRetainPtr<WKStringRef> modifiersKey = adoptWK(WKStringCreateWithUTF8CString("Modifiers"));
-            WKEventModifiers modifiers = static_cast<WKEventModifiers>(WKUInt64GetValue(static_cast<WKUInt64Ref>(WKDictionaryGetItemForKey(messageBodyDictionary, modifiersKey.get()))));
-
-            // Forward to WebProcess
-            WKPageSetShouldSendEventsSynchronously(mainWebView()->page(), true);
-            if (WKStringIsEqualToUTF8CString(subMessageName, "MouseDown"))
-                m_eventSenderProxy->mouseDown(button, modifiers);
-            else
-                m_eventSenderProxy->mouseUp(button, modifiers);
-            WKPageSetShouldSendEventsSynchronously(mainWebView()->page(), false);
-            return 0;
-        }
-
-        if (WKStringIsEqualToUTF8CString(subMessageName, "MouseMoveTo")) {
-            WKRetainPtr<WKStringRef> xKey = adoptWK(WKStringCreateWithUTF8CString("X"));
-            double x = WKDoubleGetValue(static_cast<WKDoubleRef>(WKDictionaryGetItemForKey(messageBodyDictionary, xKey.get())));
-
-            WKRetainPtr<WKStringRef> yKey = adoptWK(WKStringCreateWithUTF8CString("Y"));
-            double y = WKDoubleGetValue(static_cast<WKDoubleRef>(WKDictionaryGetItemForKey(messageBodyDictionary, yKey.get())));
-
-            // Forward to WebProcess
-            WKPageSetShouldSendEventsSynchronously(mainWebView()->page(), true);
-            m_eventSenderProxy->mouseMoveTo(x, y);
-            WKPageSetShouldSendEventsSynchronously(mainWebView()->page(), false);
-            return 0;
-        }
-
-        if (WKStringIsEqualToUTF8CString(subMessageName, "MouseScrollBy")) {
-            WKRetainPtr<WKStringRef> xKey = adoptWK(WKStringCreateWithUTF8CString("X"));
-            double x = WKDoubleGetValue(static_cast<WKDoubleRef>(WKDictionaryGetItemForKey(messageBodyDictionary, xKey.get())));
-
-            WKRetainPtr<WKStringRef> yKey = adoptWK(WKStringCreateWithUTF8CString("Y"));
-            double y = WKDoubleGetValue(static_cast<WKDoubleRef>(WKDictionaryGetItemForKey(messageBodyDictionary, yKey.get())));
-
-            // Forward to WebProcess
-            WKPageSetShouldSendEventsSynchronously(mainWebView()->page(), true);
-            m_eventSenderProxy->mouseScrollBy(x, y);
-            WKPageSetShouldSendEventsSynchronously(mainWebView()->page(), false);
-            return 0;
-        }
-
-        if (WKStringIsEqualToUTF8CString(subMessageName, "ContinuousMouseScrollBy")) {
-            WKRetainPtr<WKStringRef> xKey = adoptWK(WKStringCreateWithUTF8CString("X"));
-            double x = WKDoubleGetValue(static_cast<WKDoubleRef>(WKDictionaryGetItemForKey(messageBodyDictionary, xKey.get())));
-
-            WKRetainPtr<WKStringRef> yKey = adoptWK(WKStringCreateWithUTF8CString("Y"));
-            double y = WKDoubleGetValue(static_cast<WKDoubleRef>(WKDictionaryGetItemForKey(messageBodyDictionary, yKey.get())));
-
-            WKRetainPtr<WKStringRef> pagedKey = adoptWK(WKStringCreateWithUTF8CString("Paged"));
-            bool paged = static_cast<bool>(WKUInt64GetValue(static_cast<WKUInt64Ref>(WKDictionaryGetItemForKey(messageBodyDictionary, pagedKey.get()))));
-
-            // Forward to WebProcess
-            WKPageSetShouldSendEventsSynchronously(mainWebView()->page(), true);
-            m_eventSenderProxy->continuousMouseScrollBy(x, y, paged);
-            WKPageSetShouldSendEventsSynchronously(mainWebView()->page(), false);
-            return 0;
-        }
-
-        if (WKStringIsEqualToUTF8CString(subMessageName, "LeapForward")) {
-            WKRetainPtr<WKStringRef> timeKey = adoptWK(WKStringCreateWithUTF8CString("TimeInMilliseconds"));
-            unsigned time = static_cast<unsigned>(WKUInt64GetValue(static_cast<WKUInt64Ref>(WKDictionaryGetItemForKey(messageBodyDictionary, timeKey.get()))));
-
-            m_eventSenderProxy->leapForward(time);
-            return 0;
-        }
-
-#if ENABLE(TOUCH_EVENTS)
-        if (WKStringIsEqualToUTF8CString(subMessageName, "AddTouchPoint")) {
-            WKRetainPtr<WKStringRef> xKey = adoptWK(WKStringCreateWithUTF8CString("X"));
-            int x = static_cast<int>(WKUInt64GetValue(static_cast<WKUInt64Ref>(WKDictionaryGetItemForKey(messageBodyDictionary, xKey.get()))));
-
-            WKRetainPtr<WKStringRef> yKey = adoptWK(WKStringCreateWithUTF8CString("Y"));
-            int y = static_cast<int>(WKUInt64GetValue(static_cast<WKUInt64Ref>(WKDictionaryGetItemForKey(messageBodyDictionary, yKey.get()))));
-
-            m_eventSenderProxy->addTouchPoint(x, y);
-            return 0;
-        }
-
-        if (WKStringIsEqualToUTF8CString(subMessageName, "UpdateTouchPoint")) {
-            WKRetainPtr<WKStringRef> indexKey = adoptWK(WKStringCreateWithUTF8CString("Index"));
-            int index = static_cast<int>(WKUInt64GetValue(static_cast<WKUInt64Ref>(WKDictionaryGetItemForKey(messageBodyDictionary, indexKey.get()))));
-
-            WKRetainPtr<WKStringRef> xKey = adoptWK(WKStringCreateWithUTF8CString("X"));
-            int x = static_cast<int>(WKUInt64GetValue(static_cast<WKUInt64Ref>(WKDictionaryGetItemForKey(messageBodyDictionary, xKey.get()))));
-
-            WKRetainPtr<WKStringRef> yKey = adoptWK(WKStringCreateWithUTF8CString("Y"));
-            int y = static_cast<int>(WKUInt64GetValue(static_cast<WKUInt64Ref>(WKDictionaryGetItemForKey(messageBodyDictionary, yKey.get()))));
-
-            m_eventSenderProxy->updateTouchPoint(index, x, y);
-            return 0;
-        }
-
-        if (WKStringIsEqualToUTF8CString(subMessageName, "SetTouchModifier")) {
-            WKRetainPtr<WKStringRef> modifierKey = adoptWK(WKStringCreateWithUTF8CString("Modifier"));
-            WKEventModifiers modifier = static_cast<WKEventModifiers>(WKUInt64GetValue(static_cast<WKUInt64Ref>(WKDictionaryGetItemForKey(messageBodyDictionary, modifierKey.get()))));
-
-            WKRetainPtr<WKStringRef> enableKey = adoptWK(WKStringCreateWithUTF8CString("Enable"));
-            bool enable = static_cast<bool>(WKUInt64GetValue(static_cast<WKUInt64Ref>(WKDictionaryGetItemForKey(messageBodyDictionary, enableKey.get()))));
-
-            m_eventSenderProxy->setTouchModifier(modifier, enable);
-            return 0;
-        }
-
-        if (WKStringIsEqualToUTF8CString(subMessageName, "SetTouchPointRadius")) {
-            WKRetainPtr<WKStringRef> xKey = adoptWK(WKStringCreateWithUTF8CString("RadiusX"));
-            int x = static_cast<int>(WKUInt64GetValue(static_cast<WKUInt64Ref>(WKDictionaryGetItemForKey(messageBodyDictionary, xKey.get()))));
-
-            WKRetainPtr<WKStringRef> yKey = adoptWK(WKStringCreateWithUTF8CString("RadiusY"));
-            int y = static_cast<int>(WKUInt64GetValue(static_cast<WKUInt64Ref>(WKDictionaryGetItemForKey(messageBodyDictionary, yKey.get()))));
-
-            m_eventSenderProxy->setTouchPointRadius(x, y);
-            return 0;
-        }
-
-        if (WKStringIsEqualToUTF8CString(subMessageName, "TouchStart")) {
-            WKPageSetShouldSendEventsSynchronously(mainWebView()->page(), true);
-            m_eventSenderProxy->touchStart();
-            WKPageSetShouldSendEventsSynchronously(mainWebView()->page(), false);
-            return 0;
-        }
-
-        if (WKStringIsEqualToUTF8CString(subMessageName, "TouchMove")) {
-            WKPageSetShouldSendEventsSynchronously(mainWebView()->page(), true);
-            m_eventSenderProxy->touchMove();
-            WKPageSetShouldSendEventsSynchronously(mainWebView()->page(), false);
-            return 0;
-        }
-
-        if (WKStringIsEqualToUTF8CString(subMessageName, "TouchEnd")) {
-            WKPageSetShouldSendEventsSynchronously(mainWebView()->page(), true);
-            m_eventSenderProxy->touchEnd();
-            WKPageSetShouldSendEventsSynchronously(mainWebView()->page(), false);
-            return 0;
-        }
-
-        if (WKStringIsEqualToUTF8CString(subMessageName, "TouchCancel")) {
-            WKPageSetShouldSendEventsSynchronously(mainWebView()->page(), true);
-            m_eventSenderProxy->touchCancel();
-            WKPageSetShouldSendEventsSynchronously(mainWebView()->page(), false);
-            return 0;
-        }
-
-        if (WKStringIsEqualToUTF8CString(subMessageName, "ClearTouchPoints")) {
-            m_eventSenderProxy->clearTouchPoints();
-            return 0;
-        }
-
-        if (WKStringIsEqualToUTF8CString(subMessageName, "ReleaseTouchPoint")) {
-            WKRetainPtr<WKStringRef> indexKey = adoptWK(WKStringCreateWithUTF8CString("Index"));
-            int index = static_cast<int>(WKUInt64GetValue(static_cast<WKUInt64Ref>(WKDictionaryGetItemForKey(messageBodyDictionary, indexKey.get()))));
-            m_eventSenderProxy->releaseTouchPoint(index);
-            return 0;
-        }
-
-        if (WKStringIsEqualToUTF8CString(subMessageName, "CancelTouchPoint")) {
-            WKRetainPtr<WKStringRef> indexKey = adoptWK(WKStringCreateWithUTF8CString("Index"));
-            int index = static_cast<int>(WKUInt64GetValue(static_cast<WKUInt64Ref>(WKDictionaryGetItemForKey(messageBodyDictionary, indexKey.get()))));
-            m_eventSenderProxy->cancelTouchPoint(index);
-            return 0;
-        }
-#endif
-        ASSERT_NOT_REACHED();
-    }
-#endif
-    return m_currentInvocation->didReceiveSynchronousMessageFromInjectedBundle(messageName, messageBody);
-}
-
-// WKPageLoaderClient
-
-void TestController::didCommitLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef, const void* clientInfo)
-{
-    static_cast<TestController*>(const_cast<void*>(clientInfo))->didCommitLoadForFrame(page, frame);
-}
-
-void TestController::didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef, const void* clientInfo)
-{
-    static_cast<TestController*>(const_cast<void*>(clientInfo))->didFinishLoadForFrame(page, frame);
-}
-
-void TestController::didReceiveAuthenticationChallengeInFrame(WKPageRef page, WKFrameRef frame, WKAuthenticationChallengeRef authenticationChallenge, const void *clientInfo)
-{
-    static_cast<TestController*>(const_cast<void*>(clientInfo))->didReceiveAuthenticationChallengeInFrame(page, frame, authenticationChallenge);
-}
-
-void TestController::processDidCrash(WKPageRef page, const void* clientInfo)
-{
-    static_cast<TestController*>(const_cast<void*>(clientInfo))->processDidCrash();
-}
-
-void TestController::didCommitLoadForFrame(WKPageRef page, WKFrameRef frame)
-{
-    if (!WKFrameIsMainFrame(frame))
-        return;
-
-    mainWebView()->focus();
-}
-
-void TestController::didFinishLoadForFrame(WKPageRef page, WKFrameRef frame)
-{
-    if (m_state != Resetting)
-        return;
-
-    if (!WKFrameIsMainFrame(frame))
-        return;
-
-    WKRetainPtr<WKURLRef> wkURL(AdoptWK, WKFrameCopyURL(frame));
-    if (!WKURLIsEqual(wkURL.get(), blankURL()))
-        return;
-
-    m_doneResetting = true;
-    shared().notifyDone();
-}
-
-void TestController::didReceiveAuthenticationChallengeInFrame(WKPageRef page, WKFrameRef frame, WKAuthenticationChallengeRef authenticationChallenge)
-{
-    String message;
-    if (!m_handlesAuthenticationChallenges)
-        message = "<unknown> - didReceiveAuthenticationChallenge - Simulating cancelled authentication sheet\n";
-    else
-        message = String::format("<unknown> - didReceiveAuthenticationChallenge - Responding with %s:%s\n", m_authenticationUsername.utf8().data(), m_authenticationPassword.utf8().data());
-    m_currentInvocation->outputText(message);
-
-    WKAuthenticationDecisionListenerRef decisionListener = WKAuthenticationChallengeGetDecisionListener(authenticationChallenge);
-    if (!m_handlesAuthenticationChallenges) {
-        WKAuthenticationDecisionListenerUseCredential(decisionListener, 0);
-        return;
-    }
-    WKRetainPtr<WKStringRef> username(AdoptWK, WKStringCreateWithUTF8CString(m_authenticationUsername.utf8().data()));
-    WKRetainPtr<WKStringRef> password(AdoptWK, WKStringCreateWithUTF8CString(m_authenticationPassword.utf8().data()));
-    WKRetainPtr<WKCredentialRef> credential(AdoptWK, WKCredentialCreate(username.get(), password.get(), kWKCredentialPersistenceForSession));
-    WKAuthenticationDecisionListenerUseCredential(decisionListener, credential.get());
-}
-
-void TestController::processDidCrash()
-{
-    // This function can be called multiple times when crash logs are being saved on Windows, so
-    // ensure we only print the crashed message once.
-    if (!m_didPrintWebProcessCrashedMessage) {
-#if PLATFORM(MAC)
-        pid_t pid = WKPageGetProcessIdentifier(m_mainWebView->page());
-        fprintf(stderr, "#CRASHED - WebProcess (pid %ld)\n", static_cast<long>(pid));
-#else
-        fputs("#CRASHED - WebProcess\n", stderr);
-#endif
-        fflush(stderr);
-        m_didPrintWebProcessCrashedMessage = true;
-    }
-
-    if (m_shouldExitWhenWebProcessCrashes)
-        exit(1);
-}
-
-void TestController::simulateWebNotificationClick(uint64_t notificationID)
-{
-    m_webNotificationProvider.simulateWebNotificationClick(notificationID);
-}
-
-void TestController::setGeolocationPermission(bool enabled)
-{
-    m_isGeolocationPermissionSet = true;
-    m_isGeolocationPermissionAllowed = enabled;
-    decidePolicyForGeolocationPermissionRequestIfPossible();
-}
-
-void TestController::setMockGeolocationPosition(double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed)
-{
-    m_geolocationProvider->setPosition(latitude, longitude, accuracy, providesAltitude, altitude, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed);
-}
-
-void TestController::setMockGeolocationPositionUnavailableError(WKStringRef errorMessage)
-{
-    m_geolocationProvider->setPositionUnavailableError(errorMessage);
-}
-
-void TestController::handleGeolocationPermissionRequest(WKGeolocationPermissionRequestRef geolocationPermissionRequest)
-{
-    m_geolocationPermissionRequests.append(geolocationPermissionRequest);
-    decidePolicyForGeolocationPermissionRequestIfPossible();
-}
-
-void TestController::setCustomPolicyDelegate(bool enabled, bool permissive)
-{
-    m_policyDelegateEnabled = enabled;
-    m_policyDelegatePermissive = permissive;
-}
-
-void TestController::setVisibilityState(WKPageVisibilityState visibilityState, bool isInitialState)
-{
-    WKPageSetVisibilityState(m_mainWebView->page(), visibilityState, isInitialState);
-}
-
-void TestController::decidePolicyForGeolocationPermissionRequestIfPossible()
-{
-    if (!m_isGeolocationPermissionSet)
-        return;
-
-    for (size_t i = 0; i < m_geolocationPermissionRequests.size(); ++i) {
-        WKGeolocationPermissionRequestRef permissionRequest = m_geolocationPermissionRequests[i].get();
-        if (m_isGeolocationPermissionAllowed)
-            WKGeolocationPermissionRequestAllow(permissionRequest);
-        else
-            WKGeolocationPermissionRequestDeny(permissionRequest);
-    }
-    m_geolocationPermissionRequests.clear();
-}
-
-void TestController::decidePolicyForNotificationPermissionRequest(WKPageRef page, WKSecurityOriginRef origin, WKNotificationPermissionRequestRef request, const void*)
-{
-    TestController::shared().decidePolicyForNotificationPermissionRequest(page, origin, request);
-}
-
-void TestController::decidePolicyForNotificationPermissionRequest(WKPageRef, WKSecurityOriginRef, WKNotificationPermissionRequestRef request)
-{
-    WKNotificationPermissionRequestAllow(request);
-}
-
-void TestController::unavailablePluginButtonClicked(WKPageRef, WKPluginUnavailabilityReason, WKDictionaryRef, const void*)
-{
-    printf("MISSING PLUGIN BUTTON PRESSED\n");
-}
-
-void TestController::decidePolicyForNavigationAction(WKPageRef, WKFrameRef, WKFrameNavigationType, WKEventModifiers, WKEventMouseButton, WKURLRequestRef, WKFramePolicyListenerRef listener, WKTypeRef, const void* clientInfo)
-{
-    static_cast<TestController*>(const_cast<void*>(clientInfo))->decidePolicyForNavigationAction(listener);
-}
-
-void TestController::decidePolicyForNavigationAction(WKFramePolicyListenerRef listener)
-{
-    if (m_policyDelegateEnabled && !m_policyDelegatePermissive) {
-        WKFramePolicyListenerIgnore(listener);
-        return;
-    }
-
-    WKFramePolicyListenerUse(listener);
-}
-
-void TestController::decidePolicyForResponse(WKPageRef, WKFrameRef frame, WKURLResponseRef response, WKURLRequestRef, WKFramePolicyListenerRef listener, WKTypeRef, const void* clientInfo)
-{
-    static_cast<TestController*>(const_cast<void*>(clientInfo))->decidePolicyForResponse(frame, response, listener);
-}
-
-void TestController::decidePolicyForResponse(WKFrameRef frame, WKURLResponseRef response, WKFramePolicyListenerRef listener)
-{
-    // Even though Response was already checked by WKBundlePagePolicyClient, the check did not include plugins
-    // so we have to re-check again.
-    WKRetainPtr<WKStringRef> wkMIMEType(AdoptWK, WKURLResponseCopyMIMEType(response));
-    if (WKFrameCanShowMIMEType(frame, wkMIMEType.get())) {
-        WKFramePolicyListenerUse(listener);
-        return;
-    }
-
-    WKFramePolicyListenerIgnore(listener);
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/TestController.h b/Tools/WebKitTestRunner/TestController.h
deleted file mode 100644
index 0f65c9f..0000000
--- a/Tools/WebKitTestRunner/TestController.h
+++ /dev/null
@@ -1,218 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef TestController_h
-#define TestController_h
-
-#include "WebNotificationProvider.h"
-#include "WorkQueueManager.h"
-#include <GeolocationProviderMock.h>
-#include <WebKit2/WKRetainPtr.h>
-#include <string>
-#include <vector>
-#include <wtf/OwnPtr.h>
-#include <wtf/Vector.h>
-
-namespace WTR {
-
-class TestInvocation;
-class PlatformWebView;
-class EventSenderProxy;
-
-// FIXME: Rename this TestRunner?
-class TestController {
-public:
-    static TestController& shared();
-
-    TestController(int argc, const char* argv[]);
-    ~TestController();
-
-    bool verbose() const { return m_verbose; }
-
-    WKStringRef injectedBundlePath() { return m_injectedBundlePath.get(); }
-    WKStringRef testPluginDirectory() { return m_testPluginDirectory.get(); }
-
-    PlatformWebView* mainWebView() { return m_mainWebView.get(); }
-    WKContextRef context() { return m_context.get(); }
-
-    void ensureViewSupportsOptions(WKDictionaryRef options);
-    
-    // Runs the run loop until `done` is true or the timeout elapses.
-    enum TimeoutDuration { ShortTimeout, LongTimeout, NoTimeout, CustomTimeout };
-    bool useWaitToDumpWatchdogTimer() { return m_useWaitToDumpWatchdogTimer; }
-    void runUntil(bool& done, TimeoutDuration);
-    void notifyDone();
-
-    int getCustomTimeout();
-    
-    bool beforeUnloadReturnValue() const { return m_beforeUnloadReturnValue; }
-    void setBeforeUnloadReturnValue(bool value) { m_beforeUnloadReturnValue = value; }
-
-    void simulateWebNotificationClick(uint64_t notificationID);
-
-    // Geolocation.
-    void setGeolocationPermission(bool);
-    void setMockGeolocationPosition(double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed);
-    void setMockGeolocationPositionUnavailableError(WKStringRef errorMessage);
-    void handleGeolocationPermissionRequest(WKGeolocationPermissionRequestRef);
-
-    // Policy delegate.
-    void setCustomPolicyDelegate(bool enabled, bool permissive);
-
-    // Page Visibility.
-    void setVisibilityState(WKPageVisibilityState, bool isInitialState);
-
-    bool resetStateToConsistentValues();
-
-    WorkQueueManager& workQueueManager() { return m_workQueueManager; }
-
-    void setHandlesAuthenticationChallenges(bool value) { m_handlesAuthenticationChallenges = value; }
-    void setAuthenticationUsername(String username) { m_authenticationUsername = username; }
-    void setAuthenticationPassword(String password) { m_authenticationPassword = password; }
-
-private:
-    void initialize(int argc, const char* argv[]);
-    void createWebViewWithOptions(WKDictionaryRef);
-    void run();
-
-    void runTestingServerLoop();
-    bool runTest(const char* pathOrURL);
-
-    void platformInitialize();
-    void platformDestroy();
-    void platformInitializeContext();
-    void platformRunUntil(bool& done, double timeout);
-    void platformDidCommitLoadForFrame(WKPageRef, WKFrameRef);
-    void initializeInjectedBundlePath();
-    void initializeTestPluginDirectory();
-
-    void decidePolicyForGeolocationPermissionRequestIfPossible();
-
-    // WKContextInjectedBundleClient
-    static void didReceiveMessageFromInjectedBundle(WKContextRef, WKStringRef messageName, WKTypeRef messageBody, const void*);
-    static void didReceiveSynchronousMessageFromInjectedBundle(WKContextRef, WKStringRef messageName, WKTypeRef messageBody, WKTypeRef* returnData, const void*);
-    void didReceiveMessageFromInjectedBundle(WKStringRef messageName, WKTypeRef messageBody);
-    WKRetainPtr<WKTypeRef> didReceiveSynchronousMessageFromInjectedBundle(WKStringRef messageName, WKTypeRef messageBody);
-
-    void didReceiveKeyDownMessageFromInjectedBundle(WKDictionaryRef messageBodyDictionary, bool synchronous);
-
-    // WKPageLoaderClient
-    static void didCommitLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef userData, const void*);
-    void didCommitLoadForFrame(WKPageRef, WKFrameRef);
-
-    static void didFinishLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef userData, const void*);
-    void didFinishLoadForFrame(WKPageRef, WKFrameRef);
-
-    static void processDidCrash(WKPageRef, const void* clientInfo);
-    void processDidCrash();
-
-    static void decidePolicyForNotificationPermissionRequest(WKPageRef, WKSecurityOriginRef, WKNotificationPermissionRequestRef, const void*);
-    void decidePolicyForNotificationPermissionRequest(WKPageRef, WKSecurityOriginRef, WKNotificationPermissionRequestRef);
-
-    static void unavailablePluginButtonClicked(WKPageRef, WKPluginUnavailabilityReason, WKDictionaryRef, const void*);
-
-    static void didReceiveAuthenticationChallengeInFrame(WKPageRef, WKFrameRef, WKAuthenticationChallengeRef, const void *clientInfo);
-    void didReceiveAuthenticationChallengeInFrame(WKPageRef, WKFrameRef, WKAuthenticationChallengeRef);
-
-    // WKPagePolicyClient
-    static void decidePolicyForNavigationAction(WKPageRef, WKFrameRef, WKFrameNavigationType, WKEventModifiers, WKEventMouseButton, WKURLRequestRef, WKFramePolicyListenerRef, WKTypeRef, const void*);
-    void decidePolicyForNavigationAction(WKFramePolicyListenerRef);
-
-    static void decidePolicyForResponse(WKPageRef, WKFrameRef, WKURLResponseRef, WKURLRequestRef, WKFramePolicyListenerRef, WKTypeRef, const void*);
-    void decidePolicyForResponse(WKFrameRef, WKURLResponseRef, WKFramePolicyListenerRef);
-
-    static WKPageRef createOtherPage(WKPageRef oldPage, WKURLRequestRef, WKDictionaryRef, WKEventModifiers, WKEventMouseButton, const void*);
-
-    static void runModal(WKPageRef, const void* clientInfo);
-    static void runModal(PlatformWebView*);
-
-    static const char* libraryPathForTesting();
-    static const char* platformLibraryPathForTesting();
-
-    OwnPtr<TestInvocation> m_currentInvocation;
-
-    bool m_verbose;
-    bool m_printSeparators;
-    bool m_usingServerMode;
-    bool m_gcBetweenTests;
-    bool m_shouldDumpPixelsForAllTests;
-    std::vector<std::string> m_paths;
-    WKRetainPtr<WKStringRef> m_injectedBundlePath;
-    WKRetainPtr<WKStringRef> m_testPluginDirectory;
-
-    WebNotificationProvider m_webNotificationProvider;
-
-    OwnPtr<PlatformWebView> m_mainWebView;
-    WKRetainPtr<WKContextRef> m_context;
-    WKRetainPtr<WKPageGroupRef> m_pageGroup;
-
-    enum State {
-        Initial,
-        Resetting,
-        RunningTest
-    };
-    State m_state;
-    bool m_doneResetting;
-
-    double m_longTimeout;
-    double m_shortTimeout;
-    double m_noTimeout;
-    bool m_useWaitToDumpWatchdogTimer;
-    bool m_forceNoTimeout;
-
-    int m_timeout;
-
-    bool m_didPrintWebProcessCrashedMessage;
-    bool m_shouldExitWhenWebProcessCrashes;
-    
-    bool m_beforeUnloadReturnValue;
-
-    OwnPtr<GeolocationProviderMock> m_geolocationProvider;
-    Vector<WKRetainPtr<WKGeolocationPermissionRequestRef> > m_geolocationPermissionRequests;
-    bool m_isGeolocationPermissionSet;
-    bool m_isGeolocationPermissionAllowed;
-
-    bool m_policyDelegateEnabled;
-    bool m_policyDelegatePermissive;
-
-    bool m_handlesAuthenticationChallenges;
-    String m_authenticationUsername;
-    String m_authenticationPassword;
-
-#if PLATFORM(MAC) || PLATFORM(QT) || PLATFORM(GTK) || PLATFORM(EFL)
-    OwnPtr<EventSenderProxy> m_eventSenderProxy;
-#endif
-
-#if PLATFORM(QT)
-    class RunLoop;
-    RunLoop* m_runLoop;
-#endif
-
-    WorkQueueManager m_workQueueManager;
-};
-
-} // namespace WTR
-
-#endif // TestController_h
diff --git a/Tools/WebKitTestRunner/TestInvocation.cpp b/Tools/WebKitTestRunner/TestInvocation.cpp
deleted file mode 100644
index 789eaa3..0000000
--- a/Tools/WebKitTestRunner/TestInvocation.cpp
+++ /dev/null
@@ -1,679 +0,0 @@
-/*
- * Copyright (C) 2010, 2011, 2012 Apple Inc. All rights reserved.
- * Copyright (C) 2012 Intel Corporation. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "TestInvocation.h"
-
-#include "PlatformWebView.h"
-#include "StringFunctions.h"
-#include "TestController.h"
-#include <climits>
-#include <cstdio>
-#include <WebKit2/WKContextPrivate.h>
-#include <WebKit2/WKData.h>
-#include <WebKit2/WKDictionary.h>
-#include <WebKit2/WKInspector.h>
-#include <WebKit2/WKRetainPtr.h>
-#include <wtf/OwnArrayPtr.h>
-#include <wtf/PassOwnArrayPtr.h>
-#include <wtf/PassOwnPtr.h>
-#include <wtf/text/CString.h>
-
-#if PLATFORM(MAC)
-#include <WebKit2/WKPagePrivateMac.h>
-#endif
-
-#if OS(WINDOWS)
-#include <direct.h> // For _getcwd.
-#define getcwd _getcwd // MSDN says getcwd is deprecated.
-#define PATH_MAX _MAX_PATH
-#else
-#include <unistd.h> // For getcwd.
-#endif
-
-using namespace WebKit;
-using namespace std;
-
-namespace WTR {
-
-static WKURLRef createWKURL(const char* pathOrURL)
-{
-    if (strstr(pathOrURL, "http://") || strstr(pathOrURL, "https://") || strstr(pathOrURL, "file://"))
-        return WKURLCreateWithUTF8CString(pathOrURL);
-
-    // Creating from filesytem path.
-    size_t length = strlen(pathOrURL);
-    if (!length)
-        return 0;
-
-#if OS(WINDOWS)
-    const char separator = '\\';
-    bool isAbsolutePath = length >= 3 && pathOrURL[1] == ':' && pathOrURL[2] == separator;
-    // FIXME: Remove the "localhost/" suffix once <http://webkit.org/b/55683> is fixed.
-    const char* filePrefix = "file://localhost/";
-#else
-    const char separator = '/';
-    bool isAbsolutePath = pathOrURL[0] == separator;
-    const char* filePrefix = "file://";
-#endif
-    static const size_t prefixLength = strlen(filePrefix);
-
-    OwnArrayPtr<char> buffer;
-    if (isAbsolutePath) {
-        buffer = adoptArrayPtr(new char[prefixLength + length + 1]);
-        strcpy(buffer.get(), filePrefix);
-        strcpy(buffer.get() + prefixLength, pathOrURL);
-    } else {
-        buffer = adoptArrayPtr(new char[prefixLength + PATH_MAX + length + 2]); // 1 for the separator
-        strcpy(buffer.get(), filePrefix);
-        if (!getcwd(buffer.get() + prefixLength, PATH_MAX))
-            return 0;
-        size_t numCharacters = strlen(buffer.get());
-        buffer[numCharacters] = separator;
-        strcpy(buffer.get() + numCharacters + 1, pathOrURL);
-    }
-
-    return WKURLCreateWithUTF8CString(buffer.get());
-}
-
-TestInvocation::TestInvocation(const std::string& pathOrURL)
-    : m_url(AdoptWK, createWKURL(pathOrURL.c_str()))
-    , m_pathOrURL(pathOrURL)
-    , m_dumpPixels(false)
-    , m_timeout(0)
-    , m_gotInitialResponse(false)
-    , m_gotFinalMessage(false)
-    , m_gotRepaint(false)
-    , m_error(false)
-    , m_webProcessIsUnresponsive(false)
-{
-}
-
-TestInvocation::~TestInvocation()
-{
-}
-
-void TestInvocation::setIsPixelTest(const std::string& expectedPixelHash)
-{
-    m_dumpPixels = true;
-    m_expectedPixelHash = expectedPixelHash;
-}
-
-void TestInvocation::setCustomTimeout(int timeout)
-{
-    m_timeout = timeout;
-}
-
-static const unsigned w3cSVGWidth = 480;
-static const unsigned w3cSVGHeight = 360;
-static const unsigned normalWidth = 800;
-static const unsigned normalHeight = 600;
-
-static void sizeWebViewForCurrentTest(const char* pathOrURL)
-{
-    bool isSVGW3CTest = strstr(pathOrURL, "svg/W3C-SVG-1.1") || strstr(pathOrURL, "svg\\W3C-SVG-1.1");
-
-    if (isSVGW3CTest)
-        TestController::shared().mainWebView()->resizeTo(w3cSVGWidth, w3cSVGHeight);
-    else
-        TestController::shared().mainWebView()->resizeTo(normalWidth, normalHeight);
-}
-static bool shouldLogFrameLoadDelegates(const char* pathOrURL)
-{
-    return strstr(pathOrURL, "loading/");
-}
-
-#if ENABLE(INSPECTOR)
-static bool shouldOpenWebInspector(const char* pathOrURL)
-{
-    return strstr(pathOrURL, "inspector/") || strstr(pathOrURL, "inspector\\");
-}
-#endif
-
-#if PLATFORM(MAC)
-static bool shouldUseTiledDrawing(const char* pathOrURL)
-{
-    return strstr(pathOrURL, "tiled-drawing/") || strstr(pathOrURL, "tiled-drawing\\");
-}
-#endif
-
-static void updateTiledDrawingForCurrentTest(const char* pathOrURL)
-{
-#if PLATFORM(MAC)
-    WKRetainPtr<WKMutableDictionaryRef> viewOptions = adoptWK(WKMutableDictionaryCreate());
-    WKRetainPtr<WKStringRef> useTiledDrawingKey = adoptWK(WKStringCreateWithUTF8CString("TiledDrawing"));
-    WKRetainPtr<WKBooleanRef> useTiledDrawingValue = adoptWK(WKBooleanCreate(shouldUseTiledDrawing(pathOrURL)));
-    WKDictionaryAddItem(viewOptions.get(), useTiledDrawingKey.get(), useTiledDrawingValue.get());
-
-    TestController::shared().ensureViewSupportsOptions(viewOptions.get());
-#else
-    UNUSED_PARAM(pathOrURL);
-#endif
-}
-
-static bool shouldUseFixedLayout(const char* pathOrURL)
-{
-#if ENABLE(CSS_DEVICE_ADAPTATION)
-    if (strstr(pathOrURL, "device-adapt/") || strstr(pathOrURL, "device-adapt\\"))
-        return true;
-#endif
-
-#if USE(TILED_BACKING_STORE) && PLATFORM(EFL)
-    if (strstr(pathOrURL, "sticky/") || strstr(pathOrURL, "sticky\\"))
-        return true;
-#endif
-    return false;
-
-    UNUSED_PARAM(pathOrURL);
-}
-
-static void updateLayoutType(const char* pathOrURL)
-{
-    WKRetainPtr<WKMutableDictionaryRef> viewOptions = adoptWK(WKMutableDictionaryCreate());
-    WKRetainPtr<WKStringRef> useFixedLayoutKey = adoptWK(WKStringCreateWithUTF8CString("UseFixedLayout"));
-    WKRetainPtr<WKBooleanRef> useFixedLayoutValue = adoptWK(WKBooleanCreate(shouldUseFixedLayout(pathOrURL)));
-    WKDictionaryAddItem(viewOptions.get(), useFixedLayoutKey.get(), useFixedLayoutValue.get());
-
-    TestController::shared().ensureViewSupportsOptions(viewOptions.get());
-}
-
-void TestInvocation::invoke()
-{
-    TestController::TimeoutDuration timeoutToUse = TestController::LongTimeout;
-    sizeWebViewForCurrentTest(m_pathOrURL.c_str());
-    updateLayoutType(m_pathOrURL.c_str());
-    updateTiledDrawingForCurrentTest(m_pathOrURL.c_str());
-
-    m_textOutput.clear();
-
-    WKRetainPtr<WKStringRef> messageName = adoptWK(WKStringCreateWithUTF8CString("BeginTest"));
-    WKRetainPtr<WKMutableDictionaryRef> beginTestMessageBody = adoptWK(WKMutableDictionaryCreate());
-
-    WKRetainPtr<WKStringRef> dumpFrameLoadDelegatesKey = adoptWK(WKStringCreateWithUTF8CString("DumpFrameLoadDelegates"));
-    WKRetainPtr<WKBooleanRef> dumpFrameLoadDelegatesValue = adoptWK(WKBooleanCreate(shouldLogFrameLoadDelegates(m_pathOrURL.c_str())));
-    WKDictionaryAddItem(beginTestMessageBody.get(), dumpFrameLoadDelegatesKey.get(), dumpFrameLoadDelegatesValue.get());
-
-    WKRetainPtr<WKStringRef> dumpPixelsKey = adoptWK(WKStringCreateWithUTF8CString("DumpPixels"));
-    WKRetainPtr<WKBooleanRef> dumpPixelsValue = adoptWK(WKBooleanCreate(m_dumpPixels));
-    WKDictionaryAddItem(beginTestMessageBody.get(), dumpPixelsKey.get(), dumpPixelsValue.get());
-
-    WKRetainPtr<WKStringRef> useWaitToDumpWatchdogTimerKey = adoptWK(WKStringCreateWithUTF8CString("UseWaitToDumpWatchdogTimer"));
-    WKRetainPtr<WKBooleanRef> useWaitToDumpWatchdogTimerValue = adoptWK(WKBooleanCreate(TestController::shared().useWaitToDumpWatchdogTimer()));
-    WKDictionaryAddItem(beginTestMessageBody.get(), useWaitToDumpWatchdogTimerKey.get(), useWaitToDumpWatchdogTimerValue.get());
-
-    WKRetainPtr<WKStringRef> timeoutKey = adoptWK(WKStringCreateWithUTF8CString("Timeout"));
-    WKRetainPtr<WKUInt64Ref> timeoutValue = adoptWK(WKUInt64Create(m_timeout));
-    WKDictionaryAddItem(beginTestMessageBody.get(), timeoutKey.get(), timeoutValue.get());
-
-    WKContextPostMessageToInjectedBundle(TestController::shared().context(), messageName.get(), beginTestMessageBody.get());
-
-    TestController::shared().runUntil(m_gotInitialResponse, TestController::ShortTimeout);
-    if (!m_gotInitialResponse) {
-        m_errorMessage = "Timed out waiting for initial response from web process\n";
-        m_webProcessIsUnresponsive = true;
-        goto end;
-    }
-    if (m_error)
-        goto end;
-
-#if ENABLE(INSPECTOR)
-    if (shouldOpenWebInspector(m_pathOrURL.c_str()))
-        WKInspectorShow(WKPageGetInspector(TestController::shared().mainWebView()->page()));
-#endif // ENABLE(INSPECTOR)        
-
-    WKPageLoadURL(TestController::shared().mainWebView()->page(), m_url.get());
-
-    if (TestController::shared().useWaitToDumpWatchdogTimer()) {
-        if (m_timeout > 0)
-            timeoutToUse = TestController::CustomTimeout;
-    } else
-        timeoutToUse = TestController::NoTimeout;
-    TestController::shared().runUntil(m_gotFinalMessage, timeoutToUse);
-
-    if (!m_gotFinalMessage) {
-        m_errorMessage = "Timed out waiting for final message from web process\n";
-        m_webProcessIsUnresponsive = true;
-        goto end;
-    }
-    if (m_error)
-        goto end;
-
-    dumpResults();
-
-end:
-#if ENABLE(INSPECTOR)
-    if (m_gotInitialResponse)
-        WKInspectorClose(WKPageGetInspector(TestController::shared().mainWebView()->page()));
-#endif // ENABLE(INSPECTOR)
-
-    if (m_webProcessIsUnresponsive)
-        dumpWebProcessUnresponsiveness();
-    else if (!TestController::shared().resetStateToConsistentValues()) {
-        m_errorMessage = "Timed out loading about:blank before the next test";
-        dumpWebProcessUnresponsiveness();
-    }
-}
-
-void TestInvocation::dumpWebProcessUnresponsiveness()
-{
-    const char* errorMessageToStderr = 0;
-#if PLATFORM(MAC)
-    char buffer[64];
-    pid_t pid = WKPageGetProcessIdentifier(TestController::shared().mainWebView()->page());
-    sprintf(buffer, "#PROCESS UNRESPONSIVE - WebProcess (pid %ld)\n", static_cast<long>(pid));
-    errorMessageToStderr = buffer;
-#else
-    errorMessageToStderr = "#PROCESS UNRESPONSIVE - WebProcess";
-#endif
-
-    dump(m_errorMessage.c_str(), errorMessageToStderr, true);
-}
-
-void TestInvocation::dump(const char* textToStdout, const char* textToStderr, bool seenError)
-{
-    printf("Content-Type: text/plain\n");
-    if (textToStdout)
-        fputs(textToStdout, stdout);
-    if (textToStderr)
-        fputs(textToStderr, stderr);
-
-    fputs("#EOF\n", stdout);
-    fputs("#EOF\n", stderr);
-    if (seenError)
-        fputs("#EOF\n", stdout);
-    fflush(stdout);
-    fflush(stderr);
-}
-
-void TestInvocation::dumpResults()
-{
-    if (m_textOutput.length() || !m_audioResult)
-        dump(m_textOutput.toString().utf8().data());
-    else
-        dumpAudio(m_audioResult.get());
-
-    if (m_dumpPixels && m_pixelResult)
-        dumpPixelsAndCompareWithExpected(m_pixelResult.get(), m_repaintRects.get());
-
-    fputs("#EOF\n", stdout);
-    fflush(stdout);
-    fflush(stderr);
-}
-
-void TestInvocation::dumpAudio(WKDataRef audioData)
-{
-    size_t length = WKDataGetSize(audioData);
-    if (!length)
-        return;
-
-    const unsigned char* data = WKDataGetBytes(audioData);
-
-    printf("Content-Type: audio/wav\n");
-    printf("Content-Length: %lu\n", static_cast<unsigned long>(length));
-
-    const size_t bytesToWriteInOneChunk = 1 << 15;
-    size_t dataRemainingToWrite = length;
-    while (dataRemainingToWrite) {
-        size_t bytesToWriteInThisChunk = std::min(dataRemainingToWrite, bytesToWriteInOneChunk);
-        size_t bytesWritten = fwrite(data, 1, bytesToWriteInThisChunk, stdout);
-        if (bytesWritten != bytesToWriteInThisChunk)
-            break;
-        dataRemainingToWrite -= bytesWritten;
-        data += bytesWritten;
-    }
-    printf("#EOF\n");
-    fprintf(stderr, "#EOF\n");
-}
-
-bool TestInvocation::compareActualHashToExpectedAndDumpResults(const char actualHash[33])
-{
-    // Compute the hash of the bitmap context pixels
-    fprintf(stdout, "\nActualHash: %s\n", actualHash);
-
-    if (!m_expectedPixelHash.length())
-        return false;
-
-    ASSERT(m_expectedPixelHash.length() == 32);
-    fprintf(stdout, "\nExpectedHash: %s\n", m_expectedPixelHash.c_str());
-
-    // FIXME: Do case insensitive compare.
-    return m_expectedPixelHash == actualHash;
-}
-
-void TestInvocation::didReceiveMessageFromInjectedBundle(WKStringRef messageName, WKTypeRef messageBody)
-{
-    if (WKStringIsEqualToUTF8CString(messageName, "Error")) {
-        // Set all states to true to stop spinning the runloop.
-        m_gotInitialResponse = true;
-        m_gotFinalMessage = true;
-        m_error = true;
-        m_errorMessage = "FAIL\n";
-        TestController::shared().notifyDone();
-        return;
-    }
-
-    if (WKStringIsEqualToUTF8CString(messageName, "Ack")) {
-        ASSERT(WKGetTypeID(messageBody) == WKStringGetTypeID());
-        WKStringRef messageBodyString = static_cast<WKStringRef>(messageBody);
-        if (WKStringIsEqualToUTF8CString(messageBodyString, "BeginTest")) {
-            m_gotInitialResponse = true;
-            TestController::shared().notifyDone();
-            return;
-        }
-
-        ASSERT_NOT_REACHED();
-    }
-
-    if (WKStringIsEqualToUTF8CString(messageName, "Done")) {
-        ASSERT(WKGetTypeID(messageBody) == WKDictionaryGetTypeID());
-        WKDictionaryRef messageBodyDictionary = static_cast<WKDictionaryRef>(messageBody);
-
-        WKRetainPtr<WKStringRef> pixelResultKey = adoptWK(WKStringCreateWithUTF8CString("PixelResult"));
-        m_pixelResult = static_cast<WKImageRef>(WKDictionaryGetItemForKey(messageBodyDictionary, pixelResultKey.get()));
-        ASSERT(!m_pixelResult || m_dumpPixels);
-
-        WKRetainPtr<WKStringRef> repaintRectsKey = adoptWK(WKStringCreateWithUTF8CString("RepaintRects"));
-        m_repaintRects = static_cast<WKArrayRef>(WKDictionaryGetItemForKey(messageBodyDictionary, repaintRectsKey.get()));
-
-        WKRetainPtr<WKStringRef> audioResultKey =  adoptWK(WKStringCreateWithUTF8CString("AudioResult"));
-        m_audioResult = static_cast<WKDataRef>(WKDictionaryGetItemForKey(messageBodyDictionary, audioResultKey.get()));
-
-        m_gotFinalMessage = true;
-        TestController::shared().notifyDone();
-        return;
-    }
-
-    if (WKStringIsEqualToUTF8CString(messageName, "TextOutput")) {
-        ASSERT(WKGetTypeID(messageBody) == WKStringGetTypeID());
-        WKStringRef textOutput = static_cast<WKStringRef>(messageBody);
-        m_textOutput.append(toWTFString(textOutput));
-        return;
-    }
-
-    if (WKStringIsEqualToUTF8CString(messageName, "BeforeUnloadReturnValue")) {
-        ASSERT(WKGetTypeID(messageBody) == WKBooleanGetTypeID());
-        WKBooleanRef beforeUnloadReturnValue = static_cast<WKBooleanRef>(messageBody);
-        TestController::shared().setBeforeUnloadReturnValue(WKBooleanGetValue(beforeUnloadReturnValue));
-        return;
-    }
-    
-    if (WKStringIsEqualToUTF8CString(messageName, "AddChromeInputField")) {
-        TestController::shared().mainWebView()->addChromeInputField();
-        WKRetainPtr<WKStringRef> messageName = adoptWK(WKStringCreateWithUTF8CString("CallAddChromeInputFieldCallback"));
-        WKContextPostMessageToInjectedBundle(TestController::shared().context(), messageName.get(), 0);
-        return;
-    }
-
-    if (WKStringIsEqualToUTF8CString(messageName, "RemoveChromeInputField")) {
-        TestController::shared().mainWebView()->removeChromeInputField();
-        WKRetainPtr<WKStringRef> messageName = adoptWK(WKStringCreateWithUTF8CString("CallRemoveChromeInputFieldCallback"));
-        WKContextPostMessageToInjectedBundle(TestController::shared().context(), messageName.get(), 0);
-        return;
-    }
-    
-    if (WKStringIsEqualToUTF8CString(messageName, "FocusWebView")) {
-        TestController::shared().mainWebView()->makeWebViewFirstResponder();
-        WKRetainPtr<WKStringRef> messageName = adoptWK(WKStringCreateWithUTF8CString("CallFocusWebViewCallback"));
-        WKContextPostMessageToInjectedBundle(TestController::shared().context(), messageName.get(), 0);
-        return;
-    }
-
-    if (WKStringIsEqualToUTF8CString(messageName, "SetBackingScaleFactor")) {
-        ASSERT(WKGetTypeID(messageBody) == WKDoubleGetTypeID());
-        double backingScaleFactor = WKDoubleGetValue(static_cast<WKDoubleRef>(messageBody));
-        WKPageSetCustomBackingScaleFactor(TestController::shared().mainWebView()->page(), backingScaleFactor);
-
-        WKRetainPtr<WKStringRef> messageName = adoptWK(WKStringCreateWithUTF8CString("CallSetBackingScaleFactorCallback"));
-        WKContextPostMessageToInjectedBundle(TestController::shared().context(), messageName.get(), 0);
-        return;
-    }
-
-    if (WKStringIsEqualToUTF8CString(messageName, "SimulateWebNotificationClick")) {
-        ASSERT(WKGetTypeID(messageBody) == WKUInt64GetTypeID());
-        uint64_t notificationID = WKUInt64GetValue(static_cast<WKUInt64Ref>(messageBody));
-        TestController::shared().simulateWebNotificationClick(notificationID);
-        return;
-    }
-
-    if (WKStringIsEqualToUTF8CString(messageName, "SetGeolocationPermission")) {
-        ASSERT(WKGetTypeID(messageBody) == WKBooleanGetTypeID());
-        WKBooleanRef enabledWK = static_cast<WKBooleanRef>(messageBody);
-        TestController::shared().setGeolocationPermission(WKBooleanGetValue(enabledWK));
-        return;
-    }
-
-    if (WKStringIsEqualToUTF8CString(messageName, "SetMockGeolocationPosition")) {
-        ASSERT(WKGetTypeID(messageBody) == WKDictionaryGetTypeID());
-        WKDictionaryRef messageBodyDictionary = static_cast<WKDictionaryRef>(messageBody);
-
-        WKRetainPtr<WKStringRef> latitudeKeyWK(AdoptWK, WKStringCreateWithUTF8CString("latitude"));
-        WKDoubleRef latitudeWK = static_cast<WKDoubleRef>(WKDictionaryGetItemForKey(messageBodyDictionary, latitudeKeyWK.get()));
-        double latitude = WKDoubleGetValue(latitudeWK);
-
-        WKRetainPtr<WKStringRef> longitudeKeyWK(AdoptWK, WKStringCreateWithUTF8CString("longitude"));
-        WKDoubleRef longitudeWK = static_cast<WKDoubleRef>(WKDictionaryGetItemForKey(messageBodyDictionary, longitudeKeyWK.get()));
-        double longitude = WKDoubleGetValue(longitudeWK);
-
-        WKRetainPtr<WKStringRef> accuracyKeyWK(AdoptWK, WKStringCreateWithUTF8CString("accuracy"));
-        WKDoubleRef accuracyWK = static_cast<WKDoubleRef>(WKDictionaryGetItemForKey(messageBodyDictionary, accuracyKeyWK.get()));
-        double accuracy = WKDoubleGetValue(accuracyWK);
-
-        WKRetainPtr<WKStringRef> providesAltitudeKeyWK(AdoptWK, WKStringCreateWithUTF8CString("providesAltitude"));
-        WKBooleanRef providesAltitudeWK = static_cast<WKBooleanRef>(WKDictionaryGetItemForKey(messageBodyDictionary, providesAltitudeKeyWK.get()));
-        bool providesAltitude = WKBooleanGetValue(providesAltitudeWK);
-
-        WKRetainPtr<WKStringRef> altitudeKeyWK(AdoptWK, WKStringCreateWithUTF8CString("altitude"));
-        WKDoubleRef altitudeWK = static_cast<WKDoubleRef>(WKDictionaryGetItemForKey(messageBodyDictionary, altitudeKeyWK.get()));
-        double altitude = WKDoubleGetValue(altitudeWK);
-
-        WKRetainPtr<WKStringRef> providesAltitudeAccuracyKeyWK(AdoptWK, WKStringCreateWithUTF8CString("providesAltitudeAccuracy"));
-        WKBooleanRef providesAltitudeAccuracyWK = static_cast<WKBooleanRef>(WKDictionaryGetItemForKey(messageBodyDictionary, providesAltitudeAccuracyKeyWK.get()));
-        bool providesAltitudeAccuracy = WKBooleanGetValue(providesAltitudeAccuracyWK);
-
-        WKRetainPtr<WKStringRef> altitudeAccuracyKeyWK(AdoptWK, WKStringCreateWithUTF8CString("altitudeAccuracy"));
-        WKDoubleRef altitudeAccuracyWK = static_cast<WKDoubleRef>(WKDictionaryGetItemForKey(messageBodyDictionary, altitudeAccuracyKeyWK.get()));
-        double altitudeAccuracy = WKDoubleGetValue(altitudeAccuracyWK);
-
-        WKRetainPtr<WKStringRef> providesHeadingKeyWK(AdoptWK, WKStringCreateWithUTF8CString("providesHeading"));
-        WKBooleanRef providesHeadingWK = static_cast<WKBooleanRef>(WKDictionaryGetItemForKey(messageBodyDictionary, providesHeadingKeyWK.get()));
-        bool providesHeading = WKBooleanGetValue(providesHeadingWK);
-
-        WKRetainPtr<WKStringRef> headingKeyWK(AdoptWK, WKStringCreateWithUTF8CString("heading"));
-        WKDoubleRef headingWK = static_cast<WKDoubleRef>(WKDictionaryGetItemForKey(messageBodyDictionary, headingKeyWK.get()));
-        double heading = WKDoubleGetValue(headingWK);
-
-        WKRetainPtr<WKStringRef> providesSpeedKeyWK(AdoptWK, WKStringCreateWithUTF8CString("providesSpeed"));
-        WKBooleanRef providesSpeedWK = static_cast<WKBooleanRef>(WKDictionaryGetItemForKey(messageBodyDictionary, providesSpeedKeyWK.get()));
-        bool providesSpeed = WKBooleanGetValue(providesSpeedWK);
-
-        WKRetainPtr<WKStringRef> speedKeyWK(AdoptWK, WKStringCreateWithUTF8CString("speed"));
-        WKDoubleRef speedWK = static_cast<WKDoubleRef>(WKDictionaryGetItemForKey(messageBodyDictionary, speedKeyWK.get()));
-        double speed = WKDoubleGetValue(speedWK);
-
-        TestController::shared().setMockGeolocationPosition(latitude, longitude, accuracy, providesAltitude, altitude, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed);
-        return;
-    }
-
-    if (WKStringIsEqualToUTF8CString(messageName, "SetMockGeolocationPositionUnavailableError")) {
-        ASSERT(WKGetTypeID(messageBody) == WKStringGetTypeID());
-        WKStringRef errorMessage = static_cast<WKStringRef>(messageBody);
-        TestController::shared().setMockGeolocationPositionUnavailableError(errorMessage);
-        return;
-    }
-
-    if (WKStringIsEqualToUTF8CString(messageName, "SetCustomPolicyDelegate")) {
-        ASSERT(WKGetTypeID(messageBody) == WKDictionaryGetTypeID());
-        WKDictionaryRef messageBodyDictionary = static_cast<WKDictionaryRef>(messageBody);
-
-        WKRetainPtr<WKStringRef> enabledKeyWK(AdoptWK, WKStringCreateWithUTF8CString("enabled"));
-        WKBooleanRef enabledWK = static_cast<WKBooleanRef>(WKDictionaryGetItemForKey(messageBodyDictionary, enabledKeyWK.get()));
-        bool enabled = WKBooleanGetValue(enabledWK);
-
-        WKRetainPtr<WKStringRef> permissiveKeyWK(AdoptWK, WKStringCreateWithUTF8CString("permissive"));
-        WKBooleanRef permissiveWK = static_cast<WKBooleanRef>(WKDictionaryGetItemForKey(messageBodyDictionary, permissiveKeyWK.get()));
-        bool permissive = WKBooleanGetValue(permissiveWK);
-
-        TestController::shared().setCustomPolicyDelegate(enabled, permissive);
-        return;
-    }
-
-    if (WKStringIsEqualToUTF8CString(messageName, "SetVisibilityState")) {
-        ASSERT(WKGetTypeID(messageBody) == WKDictionaryGetTypeID());
-        WKDictionaryRef messageBodyDictionary = static_cast<WKDictionaryRef>(messageBody);
-
-        WKRetainPtr<WKStringRef> visibilityStateKeyWK(AdoptWK, WKStringCreateWithUTF8CString("visibilityState"));
-        WKUInt64Ref visibilityStateWK = static_cast<WKUInt64Ref>(WKDictionaryGetItemForKey(messageBodyDictionary, visibilityStateKeyWK.get()));
-        WKPageVisibilityState visibilityState = static_cast<WKPageVisibilityState>(WKUInt64GetValue(visibilityStateWK));
-
-        WKRetainPtr<WKStringRef> isInitialKeyWK(AdoptWK, WKStringCreateWithUTF8CString("isInitialState"));
-        WKBooleanRef isInitialWK = static_cast<WKBooleanRef>(WKDictionaryGetItemForKey(messageBodyDictionary, isInitialKeyWK.get()));
-        bool isInitialState = WKBooleanGetValue(isInitialWK);
-
-        TestController::shared().setVisibilityState(visibilityState, isInitialState);
-        return;
-    }
-
-    if (WKStringIsEqualToUTF8CString(messageName, "ProcessWorkQueue")) {
-        if (TestController::shared().workQueueManager().processWorkQueue()) {
-            WKRetainPtr<WKStringRef> messageName = adoptWK(WKStringCreateWithUTF8CString("WorkQueueProcessedCallback"));
-            WKContextPostMessageToInjectedBundle(TestController::shared().context(), messageName.get(), 0);
-        }
-        return;
-    }
-
-    if (WKStringIsEqualToUTF8CString(messageName, "QueueBackNavigation")) {
-        ASSERT(WKGetTypeID(messageBody) == WKUInt64GetTypeID());
-        uint64_t stepCount = WKUInt64GetValue(static_cast<WKUInt64Ref>(messageBody));
-        TestController::shared().workQueueManager().queueBackNavigation(stepCount);
-        return;
-    }
-
-    if (WKStringIsEqualToUTF8CString(messageName, "QueueForwardNavigation")) {
-        ASSERT(WKGetTypeID(messageBody) == WKUInt64GetTypeID());
-        uint64_t stepCount = WKUInt64GetValue(static_cast<WKUInt64Ref>(messageBody));
-        TestController::shared().workQueueManager().queueForwardNavigation(stepCount);
-        return;
-    }
-
-    if (WKStringIsEqualToUTF8CString(messageName, "QueueLoad")) {
-        ASSERT(WKGetTypeID(messageBody) == WKDictionaryGetTypeID());
-        WKDictionaryRef loadDataDictionary = static_cast<WKDictionaryRef>(messageBody);
-
-        WKRetainPtr<WKStringRef> urlKey(AdoptWK, WKStringCreateWithUTF8CString("url"));
-        WKStringRef urlWK = static_cast<WKStringRef>(WKDictionaryGetItemForKey(loadDataDictionary, urlKey.get()));
-
-        WKRetainPtr<WKStringRef> targetKey(AdoptWK, WKStringCreateWithUTF8CString("target"));
-        WKStringRef targetWK = static_cast<WKStringRef>(WKDictionaryGetItemForKey(loadDataDictionary, targetKey.get()));
-
-        TestController::shared().workQueueManager().queueLoad(toWTFString(urlWK), toWTFString(targetWK));
-        return;
-    }
-
-    if (WKStringIsEqualToUTF8CString(messageName, "QueueLoadHTMLString")) {
-        ASSERT(WKGetTypeID(messageBody) == WKDictionaryGetTypeID());
-        WKDictionaryRef loadDataDictionary = static_cast<WKDictionaryRef>(messageBody);
-
-        WKRetainPtr<WKStringRef> contentKey(AdoptWK, WKStringCreateWithUTF8CString("content"));
-        WKStringRef contentWK = static_cast<WKStringRef>(WKDictionaryGetItemForKey(loadDataDictionary, contentKey.get()));
-
-        WKRetainPtr<WKStringRef> baseURLKey(AdoptWK, WKStringCreateWithUTF8CString("baseURL"));
-        WKStringRef baseURLWK = static_cast<WKStringRef>(WKDictionaryGetItemForKey(loadDataDictionary, baseURLKey.get()));
-
-        WKRetainPtr<WKStringRef> unreachableURLKey(AdoptWK, WKStringCreateWithUTF8CString("unreachableURL"));
-        WKStringRef unreachableURLWK = static_cast<WKStringRef>(WKDictionaryGetItemForKey(loadDataDictionary, unreachableURLKey.get()));
-
-        TestController::shared().workQueueManager().queueLoadHTMLString(toWTFString(contentWK), baseURLWK ? toWTFString(baseURLWK) : String(), unreachableURLWK ? toWTFString(unreachableURLWK) : String());
-        return;
-    }
-
-    if (WKStringIsEqualToUTF8CString(messageName, "QueueReload")) {
-        TestController::shared().workQueueManager().queueReload();
-        return;
-    }
-
-    if (WKStringIsEqualToUTF8CString(messageName, "QueueLoadingScript")) {
-        ASSERT(WKGetTypeID(messageBody) == WKStringGetTypeID());
-        WKStringRef script = static_cast<WKStringRef>(messageBody);
-        TestController::shared().workQueueManager().queueLoadingScript(toWTFString(script));
-        return;
-    }
-
-    if (WKStringIsEqualToUTF8CString(messageName, "QueueNonLoadingScript")) {
-        ASSERT(WKGetTypeID(messageBody) == WKStringGetTypeID());
-        WKStringRef script = static_cast<WKStringRef>(messageBody);
-        TestController::shared().workQueueManager().queueNonLoadingScript(toWTFString(script));
-        return;
-    }
-
-    if (WKStringIsEqualToUTF8CString(messageName, "SetHandlesAuthenticationChallenge")) {
-        ASSERT(WKGetTypeID(messageBody) == WKBooleanGetTypeID());
-        WKBooleanRef value = static_cast<WKBooleanRef>(messageBody);
-        TestController::shared().setHandlesAuthenticationChallenges(WKBooleanGetValue(value));
-        return;
-    }
-
-    if (WKStringIsEqualToUTF8CString(messageName, "SetAuthenticationUsername")) {
-        ASSERT(WKGetTypeID(messageBody) == WKStringGetTypeID());
-        WKStringRef username = static_cast<WKStringRef>(messageBody);
-        TestController::shared().setAuthenticationUsername(toWTFString(username));
-        return;
-    }
-
-    if (WKStringIsEqualToUTF8CString(messageName, "SetAuthenticationPassword")) {
-        ASSERT(WKGetTypeID(messageBody) == WKStringGetTypeID());
-        WKStringRef password = static_cast<WKStringRef>(messageBody);
-        TestController::shared().setAuthenticationPassword(toWTFString(password));
-        return;
-    }
-
-    ASSERT_NOT_REACHED();
-}
-
-WKRetainPtr<WKTypeRef> TestInvocation::didReceiveSynchronousMessageFromInjectedBundle(WKStringRef messageName, WKTypeRef messageBody)
-{
-    if (WKStringIsEqualToUTF8CString(messageName, "SetWindowIsKey")) {
-        ASSERT(WKGetTypeID(messageBody) == WKBooleanGetTypeID());
-        WKBooleanRef isKeyValue = static_cast<WKBooleanRef>(messageBody);
-        TestController::shared().mainWebView()->setWindowIsKey(WKBooleanGetValue(isKeyValue));
-        return 0;
-    }
-
-    if (WKStringIsEqualToUTF8CString(messageName, "IsWorkQueueEmpty")) {
-        bool isEmpty = TestController::shared().workQueueManager().isWorkQueueEmpty();
-        WKRetainPtr<WKTypeRef> result(AdoptWK, WKBooleanCreate(isEmpty));
-        return result;
-    }
-
-    ASSERT_NOT_REACHED();
-    return 0;
-}
-
-void TestInvocation::outputText(const WTF::String& text)
-{
-    m_textOutput.append(text);
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/TestInvocation.h b/Tools/WebKitTestRunner/TestInvocation.h
deleted file mode 100644
index 1ae7f33..0000000
--- a/Tools/WebKitTestRunner/TestInvocation.h
+++ /dev/null
@@ -1,89 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef TestInvocation_h
-#define TestInvocation_h
-
-#include <string>
-#include <WebKit2/WKRetainPtr.h>
-#include <wtf/Noncopyable.h>
-#include <wtf/OwnPtr.h>
-#include <wtf/text/StringBuilder.h>
-
-namespace WTR {
-
-class TestInvocation {
-    WTF_MAKE_NONCOPYABLE(TestInvocation);
-public:
-    explicit TestInvocation(const std::string& pathOrURL);
-    ~TestInvocation();
-
-    void setIsPixelTest(const std::string& expectedPixelHash);
-
-    void setCustomTimeout(int duration);
-
-    void invoke();
-    void didReceiveMessageFromInjectedBundle(WKStringRef messageName, WKTypeRef messageBody);
-    WKRetainPtr<WKTypeRef> didReceiveSynchronousMessageFromInjectedBundle(WKStringRef messageName, WKTypeRef messageBody);
-
-    void dumpWebProcessUnresponsiveness();
-    void outputText(const WTF::String&);
-private:
-    void dumpResults();
-    static void dump(const char* textToStdout, const char* textToStderr = 0, bool seenError = false);
-    void dumpPixelsAndCompareWithExpected(WKImageRef, WKArrayRef repaintRects);
-    void dumpAudio(WKDataRef);
-    bool compareActualHashToExpectedAndDumpResults(const char[33]);
-
-#if PLATFORM(QT) || PLATFORM(EFL)
-    static void forceRepaintDoneCallback(WKErrorRef, void* context);
-#endif
-    
-    WKRetainPtr<WKURLRef> m_url;
-    std::string m_pathOrURL;
-    
-    bool m_dumpPixels;
-    std::string m_expectedPixelHash;
-
-    int m_timeout;
-
-    // Invocation state
-    bool m_gotInitialResponse;
-    bool m_gotFinalMessage;
-    bool m_gotRepaint;
-    bool m_error;
-
-    StringBuilder m_textOutput;
-    WKRetainPtr<WKDataRef> m_audioResult;
-    WKRetainPtr<WKImageRef> m_pixelResult;
-    WKRetainPtr<WKArrayRef> m_repaintRects;
-    std::string m_errorMessage;
-    bool m_webProcessIsUnresponsive;
-
-};
-
-} // namespace WTR
-
-#endif // TestInvocation_h
diff --git a/Tools/WebKitTestRunner/WebKitTestRunner.pro b/Tools/WebKitTestRunner/WebKitTestRunner.pro
deleted file mode 100644
index e00a454..0000000
--- a/Tools/WebKitTestRunner/WebKitTestRunner.pro
+++ /dev/null
@@ -1,21 +0,0 @@
-# -------------------------------------------------------------------
-# Main project file for WebKitTestRunner (WTR)
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-TEMPLATE = subdirs
-CONFIG += ordered
-
-derived_sources.file = DerivedSources.pri
-target.file = Target.pri
-
-SUBDIRS = derived_sources target
-
-addStrictSubdirOrderBetween(derived_sources, target)
-
-injected_bundle.file = InjectedBundle/InjectedBundle.pro
-injected_bundle.makefile = Makefile.InjectedBundle
-SUBDIRS += injected_bundle
-
-
diff --git a/Tools/WebKitTestRunner/WebKitTestRunner.sln b/Tools/WebKitTestRunner/WebKitTestRunner.sln
deleted file mode 100644
index 2fa1a71..0000000
--- a/Tools/WebKitTestRunner/WebKitTestRunner.sln
+++ /dev/null
@@ -1,104 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 9.00
-# Visual Studio 2005
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "WebKitTestRunner", "win\WebKitTestRunner.vcproj", "{3B99669B-1817-443B-BCBE-835580146668}"
-	ProjectSection(ProjectDependencies) = postProject
-		{CBC3391C-F060-4BF5-A66E-81404168816B} = {CBC3391C-F060-4BF5-A66E-81404168816B}
-	EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "InjectedBundleGenerated", "win\InjectedBundleGenerated.vcproj", "{4343BC0B-A2E0-4B48-8277-F33CFBFA83CD}"
-	ProjectSection(ProjectDependencies) = postProject
-		{C0737398-3565-439E-A2B8-AB2BE4D5430C} = {C0737398-3565-439E-A2B8-AB2BE4D5430C}
-	EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ImageDiff", "..\DumpRenderTree\win\ImageDiff.vcproj", "{59CC0547-70AC-499C-9B19-EC01C6F61137}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "InjectedBundle", "win\InjectedBundle.vcproj", "{CBC3391C-F060-4BF5-A66E-81404168816B}"
-	ProjectSection(ProjectDependencies) = postProject
-		{4343BC0B-A2E0-4B48-8277-F33CFBFA83CD} = {4343BC0B-A2E0-4B48-8277-F33CFBFA83CD}
-	EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestNetscapePlugin", "..\DumpRenderTree\TestNetscapePlugIn\win\TestNetscapePlugin.vcproj", "{C0737398-3565-439E-A2B8-AB2BE4D5430C}"
-	ProjectSection(ProjectDependencies) = postProject
-		{DD7949B6-F2B4-47C2-9C42-E21E84CB1017} = {DD7949B6-F2B4-47C2-9C42-E21E84CB1017}
-	EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "WebKitTestRunnerLauncher", "win\WebKitTestRunnerLauncher.vcproj", "{C13FA6EF-B531-4BAD-9A23-18E2BEB8B040}"
-	ProjectSection(ProjectDependencies) = postProject
-		{3B99669B-1817-443B-BCBE-835580146668} = {3B99669B-1817-443B-BCBE-835580146668}
-	EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ImageDiffLauncher", "..\DumpRenderTree\win\ImageDiffLauncher.vcproj", "{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}"
-	ProjectSection(ProjectDependencies) = postProject
-		{59CC0547-70AC-499C-9B19-EC01C6F61137} = {59CC0547-70AC-499C-9B19-EC01C6F61137}
-	EndProjectSection
-EndProject
-Global
-	GlobalSection(SolutionConfigurationPlatforms) = preSolution
-		Debug_All|Win32 = Debug_All|Win32
-		Debug|Win32 = Debug|Win32
-		Production|Win32 = Production|Win32
-		Release|Win32 = Release|Win32
-	EndGlobalSection
-	GlobalSection(ProjectConfigurationPlatforms) = postSolution
-		{3B99669B-1817-443B-BCBE-835580146668}.Debug_All|Win32.ActiveCfg = Debug_All|Win32
-		{3B99669B-1817-443B-BCBE-835580146668}.Debug_All|Win32.Build.0 = Debug_All|Win32
-		{3B99669B-1817-443B-BCBE-835580146668}.Debug|Win32.ActiveCfg = Debug|Win32
-		{3B99669B-1817-443B-BCBE-835580146668}.Debug|Win32.Build.0 = Debug|Win32
-		{3B99669B-1817-443B-BCBE-835580146668}.Production|Win32.ActiveCfg = Production|Win32
-		{3B99669B-1817-443B-BCBE-835580146668}.Production|Win32.Build.0 = Production|Win32
-		{3B99669B-1817-443B-BCBE-835580146668}.Release|Win32.ActiveCfg = Release|Win32
-		{3B99669B-1817-443B-BCBE-835580146668}.Release|Win32.Build.0 = Release|Win32
-		{4343BC0B-A2E0-4B48-8277-F33CFBFA83CD}.Debug_All|Win32.ActiveCfg = Debug_All|Win32
-		{4343BC0B-A2E0-4B48-8277-F33CFBFA83CD}.Debug_All|Win32.Build.0 = Debug_All|Win32
-		{4343BC0B-A2E0-4B48-8277-F33CFBFA83CD}.Debug|Win32.ActiveCfg = Debug|Win32
-		{4343BC0B-A2E0-4B48-8277-F33CFBFA83CD}.Debug|Win32.Build.0 = Debug|Win32
-		{4343BC0B-A2E0-4B48-8277-F33CFBFA83CD}.Production|Win32.ActiveCfg = Production|Win32
-		{4343BC0B-A2E0-4B48-8277-F33CFBFA83CD}.Production|Win32.Build.0 = Production|Win32
-		{4343BC0B-A2E0-4B48-8277-F33CFBFA83CD}.Release|Win32.ActiveCfg = Release|Win32
-		{4343BC0B-A2E0-4B48-8277-F33CFBFA83CD}.Release|Win32.Build.0 = Release|Win32
-		{59CC0547-70AC-499C-9B19-EC01C6F61137}.Debug_All|Win32.ActiveCfg = Debug_All|Win32
-		{59CC0547-70AC-499C-9B19-EC01C6F61137}.Debug_All|Win32.Build.0 = Debug_All|Win32
-		{59CC0547-70AC-499C-9B19-EC01C6F61137}.Debug|Win32.ActiveCfg = Debug|Win32
-		{59CC0547-70AC-499C-9B19-EC01C6F61137}.Debug|Win32.Build.0 = Debug|Win32
-		{59CC0547-70AC-499C-9B19-EC01C6F61137}.Production|Win32.ActiveCfg = Production|Win32
-		{59CC0547-70AC-499C-9B19-EC01C6F61137}.Production|Win32.Build.0 = Production|Win32
-		{59CC0547-70AC-499C-9B19-EC01C6F61137}.Release|Win32.ActiveCfg = Release|Win32
-		{59CC0547-70AC-499C-9B19-EC01C6F61137}.Release|Win32.Build.0 = Release|Win32
-		{CBC3391C-F060-4BF5-A66E-81404168816B}.Debug_All|Win32.ActiveCfg = Debug_All|Win32
-		{CBC3391C-F060-4BF5-A66E-81404168816B}.Debug_All|Win32.Build.0 = Debug_All|Win32
-		{CBC3391C-F060-4BF5-A66E-81404168816B}.Debug|Win32.ActiveCfg = Debug|Win32
-		{CBC3391C-F060-4BF5-A66E-81404168816B}.Debug|Win32.Build.0 = Debug|Win32
-		{CBC3391C-F060-4BF5-A66E-81404168816B}.Production|Win32.ActiveCfg = Production|Win32
-		{CBC3391C-F060-4BF5-A66E-81404168816B}.Production|Win32.Build.0 = Production|Win32
-		{CBC3391C-F060-4BF5-A66E-81404168816B}.Release|Win32.ActiveCfg = Release|Win32
-		{CBC3391C-F060-4BF5-A66E-81404168816B}.Release|Win32.Build.0 = Release|Win32
-		{C0737398-3565-439E-A2B8-AB2BE4D5430C}.Debug_All|Win32.ActiveCfg = Debug_All|Win32
-		{C0737398-3565-439E-A2B8-AB2BE4D5430C}.Debug_All|Win32.Build.0 = Debug_All|Win32
-		{C0737398-3565-439E-A2B8-AB2BE4D5430C}.Debug|Win32.ActiveCfg = Debug|Win32
-		{C0737398-3565-439E-A2B8-AB2BE4D5430C}.Debug|Win32.Build.0 = Debug|Win32
-		{C0737398-3565-439E-A2B8-AB2BE4D5430C}.Production|Win32.ActiveCfg = Production|Win32
-		{C0737398-3565-439E-A2B8-AB2BE4D5430C}.Production|Win32.Build.0 = Production|Win32
-		{C0737398-3565-439E-A2B8-AB2BE4D5430C}.Release|Win32.ActiveCfg = Release|Win32
-		{C0737398-3565-439E-A2B8-AB2BE4D5430C}.Release|Win32.Build.0 = Release|Win32
-		{C13FA6EF-B531-4BAD-9A23-18E2BEB8B040}.Debug_All|Win32.ActiveCfg = Debug_All|Win32
-		{C13FA6EF-B531-4BAD-9A23-18E2BEB8B040}.Debug_All|Win32.Build.0 = Debug_All|Win32
-		{C13FA6EF-B531-4BAD-9A23-18E2BEB8B040}.Debug|Win32.ActiveCfg = Debug|Win32
-		{C13FA6EF-B531-4BAD-9A23-18E2BEB8B040}.Debug|Win32.Build.0 = Debug|Win32
-		{C13FA6EF-B531-4BAD-9A23-18E2BEB8B040}.Production|Win32.ActiveCfg = Production|Win32
-		{C13FA6EF-B531-4BAD-9A23-18E2BEB8B040}.Production|Win32.Build.0 = Production|Win32
-		{C13FA6EF-B531-4BAD-9A23-18E2BEB8B040}.Release|Win32.ActiveCfg = Release|Win32
-		{C13FA6EF-B531-4BAD-9A23-18E2BEB8B040}.Release|Win32.Build.0 = Release|Win32
-		{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}.Debug_All|Win32.ActiveCfg = Debug_All|Win32
-		{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}.Debug_All|Win32.Build.0 = Debug_All|Win32
-		{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}.Debug|Win32.ActiveCfg = Debug|Win32
-		{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}.Debug|Win32.Build.0 = Debug|Win32
-		{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}.Production|Win32.ActiveCfg = Production|Win32
-		{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}.Production|Win32.Build.0 = Production|Win32
-		{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}.Release|Win32.ActiveCfg = Release|Win32
-		{DD7949B6-F2B4-47C2-9C42-E21E84CB1017}.Release|Win32.Build.0 = Release|Win32
-	EndGlobalSection
-	GlobalSection(SolutionProperties) = preSolution
-		HideSolutionNode = FALSE
-	EndGlobalSection
-EndGlobal
diff --git a/Tools/WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj b/Tools/WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj
deleted file mode 100644
index 88bb732..0000000
--- a/Tools/WebKitTestRunner/WebKitTestRunner.xcodeproj/project.pbxproj
+++ /dev/null
@@ -1,782 +0,0 @@
-// !$*UTF8*$!
-{
-	archiveVersion = 1;
-	classes = {
-	};
-	objectVersion = 45;
-	objects = {
-
-/* Begin PBXAggregateTarget section */
-		BC952D7711F3BF5D003398B4 /* Derived Sources */ = {
-			isa = PBXAggregateTarget;
-			buildConfigurationList = BC952D7D11F3BF6A003398B4 /* Build configuration list for PBXAggregateTarget "Derived Sources" */;
-			buildPhases = (
-				BC952D8211F3BF78003398B4 /* Generate Derived Sources */,
-			);
-			dependencies = (
-			);
-			name = "Derived Sources";
-			productName = "Derived Sources";
-		};
-/* End PBXAggregateTarget section */
-
-/* Begin PBXBuildFile section */
-		0F5169CB1445222D00E0A9D7 /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F5169CA1445222D00E0A9D7 /* WebKit.framework */; };
-		0F5169CC1445222D00E0A9D7 /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F5169CA1445222D00E0A9D7 /* WebKit.framework */; };
-		0FAF67EF160D6C100077CB2B /* InjectedBundlePageMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0FAF67EE160D6C100077CB2B /* InjectedBundlePageMac.mm */; };
-		26D758E7160BECDD00268472 /* GeolocationProviderMock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26D758E5160BECDC00268472 /* GeolocationProviderMock.cpp */; };
-		29210EAE144CACB700835BB5 /* AccessibilityUIElement.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29210EA9144CACB200835BB5 /* AccessibilityUIElement.cpp */; };
-		29210EB0144CACBD00835BB5 /* AccessibilityController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29210EA2144CAAA500835BB5 /* AccessibilityController.cpp */; };
-		29210EB4144CACD500835BB5 /* AccessibilityTextMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29210EB1144CACD400835BB5 /* AccessibilityTextMarker.cpp */; };
-		29210EB5144CACD500835BB5 /* AccessibilityTextMarkerMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 29210EB3144CACD400835BB5 /* AccessibilityTextMarkerMac.mm */; };
-		29210EDA144CC3EA00835BB5 /* AccessibilityUIElementMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 29210EAB144CACB200835BB5 /* AccessibilityUIElementMac.mm */; };
-		29210EDA144CC3EA00835BB6 /* AccessibilityCommonMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 29210EAB144CACB200835BB6 /* AccessibilityCommonMac.mm */; };
-		29210EDB144CD47900835BB5 /* JSAccessibilityController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 583913D014335E95008307E5 /* JSAccessibilityController.cpp */; };
-		29210EE1144CDB2600835BB5 /* JSAccessibilityUIElement.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29210EDB146727E711835BB5 /* JSAccessibilityUIElement.cpp */; };
-		29A8FCCB145EF02E009045A6 /* JSAccessibilityTextMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29210EE1144CDE6789815EE5 /* JSAccessibilityTextMarker.cpp */; };
-		29A8FCDD145F0337009045A6 /* JSAccessibilityTextMarkerRange.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29A8FCE1345E7021006AA5A6 /* JSAccessibilityTextMarkerRange.cpp */; };
-		29A8FCE2145F037B009045A6 /* AccessibilityTextMarkerRange.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29A8FCE1145F037B009045A6 /* AccessibilityTextMarkerRange.cpp */; };
-		29A8FCE5145F0464009045A6 /* AccessibilityTextMarkerRangeMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 29A8FCE4145F0464009045A6 /* AccessibilityTextMarkerRangeMac.mm */; };
-		3164C8F015D1ADA100EF1FE0 /* WebNotificationProvider.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3164C8EF15D1ADA100EF1FE0 /* WebNotificationProvider.cpp */; };
-		4429FC5F1627089600F66D8B /* WorkQueueManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4429FC5E1627089600F66D8B /* WorkQueueManager.cpp */; };
-		5322FB4313FDA0CD0041ABCC /* CyclicRedundancyCheck.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5322FB4113FDA0CD0041ABCC /* CyclicRedundancyCheck.cpp */; };
-		5322FB4613FDA0EA0041ABCC /* PixelDumpSupport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5322FB4413FDA0EA0041ABCC /* PixelDumpSupport.cpp */; };
-		5641E2D014335E95008307E5 /* JSTextInputController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5641E2CE14335E95008307E5 /* JSTextInputController.cpp */; };
-		5664A49A14326384008881BE /* TextInputController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5664A49814326384008881BE /* TextInputController.cpp */; };
-		5670B8281386FCA5002EB355 /* EventSenderProxy.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5670B8271386FCA5002EB355 /* EventSenderProxy.mm */; };
-		6510A78211EC643800410867 /* AHEM____.TTF in Resources */ = {isa = PBXBuildFile; fileRef = 6510A77711EC643800410867 /* AHEM____.TTF */; };
-		6510A78411EC643800410867 /* WebKitWeightWatcher100.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 6510A77911EC643800410867 /* WebKitWeightWatcher100.ttf */; };
-		6510A78511EC643800410867 /* WebKitWeightWatcher200.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 6510A77A11EC643800410867 /* WebKitWeightWatcher200.ttf */; };
-		6510A78611EC643800410867 /* WebKitWeightWatcher300.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 6510A77B11EC643800410867 /* WebKitWeightWatcher300.ttf */; };
-		6510A78711EC643800410867 /* WebKitWeightWatcher400.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 6510A77C11EC643800410867 /* WebKitWeightWatcher400.ttf */; };
-		6510A78811EC643800410867 /* WebKitWeightWatcher500.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 6510A77D11EC643800410867 /* WebKitWeightWatcher500.ttf */; };
-		6510A78911EC643800410867 /* WebKitWeightWatcher600.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 6510A77E11EC643800410867 /* WebKitWeightWatcher600.ttf */; };
-		6510A78A11EC643800410867 /* WebKitWeightWatcher700.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 6510A77F11EC643800410867 /* WebKitWeightWatcher700.ttf */; };
-		6510A78B11EC643800410867 /* WebKitWeightWatcher800.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 6510A78011EC643800410867 /* WebKitWeightWatcher800.ttf */; };
-		6510A78C11EC643800410867 /* WebKitWeightWatcher900.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 6510A78111EC643800410867 /* WebKitWeightWatcher900.ttf */; };
-		65EB85A011EC67CC0034D300 /* ActivateFonts.mm in Sources */ = {isa = PBXBuildFile; fileRef = 65EB859F11EC67CC0034D300 /* ActivateFonts.mm */; };
-		8034C6621487636400AC32E9 /* AccessibilityControllerMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8034C6611487636400AC32E9 /* AccessibilityControllerMac.mm */; };
-		8097338A14874A5A008156D9 /* AccessibilityNotificationHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8097338914874A5A008156D9 /* AccessibilityNotificationHandler.mm */; };
-		8CCDA823151A570B0003F937 /* SampleFont.sfont in Resources */ = {isa = PBXBuildFile; fileRef = 8CCDA822151A570B0003F937 /* SampleFont.sfont */; };
-		A664BC7613A5F3A9009A7B25 /* libWebCoreTestSupport.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 41230E16138C78BF00BCCFCA /* libWebCoreTestSupport.dylib */; };
-		BC14E4DB120E02D000826C0C /* GCController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC14E4D9120E02D000826C0C /* GCController.cpp */; };
-		BC14E4EA120E03D800826C0C /* JSGCController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC14E4E8120E03D800826C0C /* JSGCController.cpp */; };
-		BC25193E11D15D8B002EBC01 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BC7934A411906584005EA8E2 /* Cocoa.framework */; };
-		BC25193F11D15D8B002EBC01 /* WebKit2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BC7934AB1190658C005EA8E2 /* WebKit2.framework */; };
-		BC25194011D15D8B002EBC01 /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BCDA2B991191051F00C3BC47 /* JavaScriptCore.framework */; };
-		BC251A3E11D16831002EBC01 /* InjectedBundleMain.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC25184611D15767002EBC01 /* InjectedBundleMain.cpp */; };
-		BC793400118F7C84005EA8E2 /* main.mm in Sources */ = {isa = PBXBuildFile; fileRef = BC7933FF118F7C84005EA8E2 /* main.mm */; };
-		BC793431118F7F19005EA8E2 /* TestController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC793430118F7F19005EA8E2 /* TestController.cpp */; };
-		BC7934A511906584005EA8E2 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BC7934A411906584005EA8E2 /* Cocoa.framework */; };
-		BC7934AC1190658C005EA8E2 /* WebKit2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BC7934AB1190658C005EA8E2 /* WebKit2.framework */; };
-		BC7934E811906846005EA8E2 /* PlatformWebViewMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = BC7934E711906846005EA8E2 /* PlatformWebViewMac.mm */; };
-		BC8C795C11D2785D004535A1 /* TestControllerMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = BC8C795B11D2785D004535A1 /* TestControllerMac.mm */; };
-		BC8DAD7B1316D91000EC96FC /* InjectedBundleMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = BC8DAD771316D7B900EC96FC /* InjectedBundleMac.mm */; };
-		BC8FD8CA120E527F00F3E71A /* EventSendingController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC8FD8C9120E527F00F3E71A /* EventSendingController.cpp */; };
-		BC8FD8D2120E545B00F3E71A /* JSEventSendingController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC8FD8D0120E545B00F3E71A /* JSEventSendingController.cpp */; };
-		BC9192051333E4F8003011DC /* TestInvocationCG.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC9192041333E4F8003011DC /* TestInvocationCG.cpp */; };
-		BC952C0D11F3B965003398B4 /* JSWrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC952C0C11F3B965003398B4 /* JSWrapper.cpp */; };
-		BC952F1F11F3C652003398B4 /* JSTestRunner.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC952F1D11F3C652003398B4 /* JSTestRunner.cpp */; };
-		BCC997A411D3C8F60017BCA2 /* InjectedBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCC997A011D3C8F60017BCA2 /* InjectedBundle.cpp */; };
-		BCC997A511D3C8F60017BCA2 /* InjectedBundlePage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCC997A211D3C8F60017BCA2 /* InjectedBundlePage.cpp */; };
-		BCC9981811D3F51E0017BCA2 /* TestRunner.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCC9981711D3F51E0017BCA2 /* TestRunner.cpp */; };
-		BCD7D2F811921278006DB7EE /* TestInvocation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCD7D2F711921278006DB7EE /* TestInvocation.cpp */; };
-		BCDA2B9A1191051F00C3BC47 /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BCDA2B991191051F00C3BC47 /* JavaScriptCore.framework */; };
-		C0CE720B1247C93300BC0EC4 /* TestRunnerMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = C0CE720A1247C93300BC0EC4 /* TestRunnerMac.mm */; };
-/* End PBXBuildFile section */
-
-/* Begin PBXContainerItemProxy section */
-		BC25194111D15D94002EBC01 /* PBXContainerItemProxy */ = {
-			isa = PBXContainerItemProxy;
-			containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
-			proxyType = 1;
-			remoteGlobalIDString = BC25186111D15D54002EBC01;
-			remoteInfo = InjectedBundle;
-		};
-		BC952ED611F3C38B003398B4 /* PBXContainerItemProxy */ = {
-			isa = PBXContainerItemProxy;
-			containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
-			proxyType = 1;
-			remoteGlobalIDString = BC952D7711F3BF5D003398B4;
-			remoteInfo = "Derived Sources";
-		};
-/* End PBXContainerItemProxy section */
-
-/* Begin PBXFileReference section */
-		0F5169CA1445222D00E0A9D7 /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = WebKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
-		0FAF67EE160D6C100077CB2B /* InjectedBundlePageMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = InjectedBundlePageMac.mm; sourceTree = "<group>"; };
-		26D758E5160BECDC00268472 /* GeolocationProviderMock.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GeolocationProviderMock.cpp; sourceTree = "<group>"; };
-		26D758E6160BECDD00268472 /* GeolocationProviderMock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GeolocationProviderMock.h; sourceTree = "<group>"; };
-		29210EA2144CAAA500835BB5 /* AccessibilityController.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AccessibilityController.cpp; sourceTree = "<group>"; };
-		29210EA3144CAAA500835BB5 /* AccessibilityController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccessibilityController.h; sourceTree = "<group>"; };
-		29210EA8144CAB8800835BB5 /* AccessibilityController.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AccessibilityController.idl; sourceTree = "<group>"; };
-		29210EA9144CACB200835BB5 /* AccessibilityUIElement.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AccessibilityUIElement.cpp; sourceTree = "<group>"; };
-		29210EAA144CACB200835BB5 /* AccessibilityUIElement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccessibilityUIElement.h; sourceTree = "<group>"; };
-		29210EAB144CACB200835BB5 /* AccessibilityUIElementMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AccessibilityUIElementMac.mm; path = mac/AccessibilityUIElementMac.mm; sourceTree = "<group>"; };
-		29210EAB144CACB200835BB6 /* AccessibilityCommonMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AccessibilityCommonMac.mm; path = mac/AccessibilityCommonMac.mm; sourceTree = "<group>"; };
-		29210EB1144CACD400835BB5 /* AccessibilityTextMarker.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AccessibilityTextMarker.cpp; sourceTree = "<group>"; };
-		29210EB2144CACD400835BB5 /* AccessibilityTextMarker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccessibilityTextMarker.h; sourceTree = "<group>"; };
-		29210EB3144CACD400835BB5 /* AccessibilityTextMarkerMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AccessibilityTextMarkerMac.mm; path = mac/AccessibilityTextMarkerMac.mm; sourceTree = "<group>"; };
-		29210EDB146727E711835BB5 /* JSAccessibilityUIElement.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = JSAccessibilityUIElement.cpp; path = DerivedSources/WebKitTestRunner/JSAccessibilityUIElement.cpp; sourceTree = BUILT_PRODUCTS_DIR; };
-		29210EDB146727E811835BB5 /* JSAccessibilityUIElement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JSAccessibilityUIElement.h; path = DerivedSources/WebKitTestRunner/JSAccessibilityUIElement.h; sourceTree = BUILT_PRODUCTS_DIR; };
-		29210EDC144CD56E00835BB5 /* AccessibilityUIElement.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AccessibilityUIElement.idl; sourceTree = "<group>"; };
-		29210EE1144CDE6789815EE5 /* JSAccessibilityTextMarker.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = JSAccessibilityTextMarker.cpp; path = DerivedSources/WebKitTestRunner/JSAccessibilityTextMarker.cpp; sourceTree = BUILT_PRODUCTS_DIR; };
-		29210EE1145CDE6789815EE5 /* JSAccessibilityTextMarker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JSAccessibilityTextMarker.h; path = DerivedSources/WebKitTestRunner/JSAccessibilityTextMarker.h; sourceTree = BUILT_PRODUCTS_DIR; };
-		29A8FCC5145B93C6009045A6 /* AccessibilityTextMarker.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AccessibilityTextMarker.idl; sourceTree = "<group>"; };
-		29A8FCD2145EF8F2009045A6 /* AccessibilityTextMarkerRange.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = AccessibilityTextMarkerRange.idl; sourceTree = "<group>"; };
-		29A8FCDF145F0358009045A6 /* AccessibilityTextMarkerRange.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccessibilityTextMarkerRange.h; sourceTree = "<group>"; };
-		29A8FCE1145F037B009045A6 /* AccessibilityTextMarkerRange.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AccessibilityTextMarkerRange.cpp; sourceTree = "<group>"; };
-		29A8FCE1345E7021006AA5A6 /* JSAccessibilityTextMarkerRange.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = JSAccessibilityTextMarkerRange.cpp; path = DerivedSources/WebKitTestRunner/JSAccessibilityTextMarkerRange.cpp; sourceTree = BUILT_PRODUCTS_DIR; };
-		29A8FCE1345E7021006AA5A7 /* JSAccessibilityTextMarkerRange.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JSAccessibilityTextMarkerRange.h; path = DerivedSources/WebKitTestRunner/JSAccessibilityTextMarkerRange.h; sourceTree = BUILT_PRODUCTS_DIR; };
-		29A8FCE4145F0464009045A6 /* AccessibilityTextMarkerRangeMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AccessibilityTextMarkerRangeMac.mm; path = mac/AccessibilityTextMarkerRangeMac.mm; sourceTree = "<group>"; };
-		3110BE0F15BA011400D216AC /* WebNotificationProvider.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WebNotificationProvider.h; sourceTree = "<group>"; };
-		3164C8EF15D1ADA100EF1FE0 /* WebNotificationProvider.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WebNotificationProvider.cpp; sourceTree = "<group>"; };
-		378D442213346D00006A777B /* config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = config.h; sourceTree = "<group>"; };
-		41230E16138C78BF00BCCFCA /* libWebCoreTestSupport.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; path = libWebCoreTestSupport.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
-		4181731B138AD39D0057AAA4 /* WebCoreTestSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WebCoreTestSupport.h; path = WebCoreTestSupport/WebCoreTestSupport.h; sourceTree = BUILT_PRODUCTS_DIR; };
-		4429FC5E1627089600F66D8B /* WorkQueueManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WorkQueueManager.cpp; sourceTree = "<group>"; };
-		4429FC611627089600F66D8B /* WorkQueueManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WorkQueueManager.h; sourceTree = "<group>"; };
-		5322FB4113FDA0CD0041ABCC /* CyclicRedundancyCheck.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CyclicRedundancyCheck.cpp; sourceTree = "<group>"; };
-		5322FB4213FDA0CD0041ABCC /* CyclicRedundancyCheck.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CyclicRedundancyCheck.h; sourceTree = "<group>"; };
-		5322FB4413FDA0EA0041ABCC /* PixelDumpSupport.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PixelDumpSupport.cpp; sourceTree = "<group>"; };
-		5322FB4513FDA0EA0041ABCC /* PixelDumpSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PixelDumpSupport.h; sourceTree = "<group>"; };
-		5641E2CE14335E95008307E5 /* JSTextInputController.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = JSTextInputController.cpp; path = DerivedSources/WebKitTestRunner/JSTextInputController.cpp; sourceTree = BUILT_PRODUCTS_DIR; };
-		5641E2CF14335E95008307E5 /* JSTextInputController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JSTextInputController.h; path = DerivedSources/WebKitTestRunner/JSTextInputController.h; sourceTree = BUILT_PRODUCTS_DIR; };
-		5664A49614326377008881BE /* TextInputController.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TextInputController.idl; sourceTree = "<group>"; };
-		5664A49814326384008881BE /* TextInputController.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TextInputController.cpp; sourceTree = "<group>"; };
-		5664A49914326384008881BE /* TextInputController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TextInputController.h; sourceTree = "<group>"; };
-		5670B8261386FC13002EB355 /* EventSenderProxy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EventSenderProxy.h; sourceTree = "<group>"; };
-		5670B8271386FCA5002EB355 /* EventSenderProxy.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = EventSenderProxy.mm; sourceTree = "<group>"; };
-		583913D014335E95008307E5 /* JSAccessibilityController.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = JSAccessibilityController.cpp; path = DerivedSources/WebKitTestRunner/JSAccessibilityController.cpp; sourceTree = BUILT_PRODUCTS_DIR; };
-		583913D114335E95008307E5 /* JSAccessibilityController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JSAccessibilityController.h; path = DerivedSources/WebKitTestRunner/JSAccessibilityController.h; sourceTree = BUILT_PRODUCTS_DIR; };
-		6510A77711EC643800410867 /* AHEM____.TTF */ = {isa = PBXFileReference; lastKnownFileType = file; name = "AHEM____.TTF"; path = "fonts/AHEM____.TTF"; sourceTree = "<group>"; };
-		6510A77911EC643800410867 /* WebKitWeightWatcher100.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = WebKitWeightWatcher100.ttf; path = fonts/WebKitWeightWatcher100.ttf; sourceTree = "<group>"; };
-		6510A77A11EC643800410867 /* WebKitWeightWatcher200.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = WebKitWeightWatcher200.ttf; path = fonts/WebKitWeightWatcher200.ttf; sourceTree = "<group>"; };
-		6510A77B11EC643800410867 /* WebKitWeightWatcher300.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = WebKitWeightWatcher300.ttf; path = fonts/WebKitWeightWatcher300.ttf; sourceTree = "<group>"; };
-		6510A77C11EC643800410867 /* WebKitWeightWatcher400.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = WebKitWeightWatcher400.ttf; path = fonts/WebKitWeightWatcher400.ttf; sourceTree = "<group>"; };
-		6510A77D11EC643800410867 /* WebKitWeightWatcher500.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = WebKitWeightWatcher500.ttf; path = fonts/WebKitWeightWatcher500.ttf; sourceTree = "<group>"; };
-		6510A77E11EC643800410867 /* WebKitWeightWatcher600.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = WebKitWeightWatcher600.ttf; path = fonts/WebKitWeightWatcher600.ttf; sourceTree = "<group>"; };
-		6510A77F11EC643800410867 /* WebKitWeightWatcher700.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = WebKitWeightWatcher700.ttf; path = fonts/WebKitWeightWatcher700.ttf; sourceTree = "<group>"; };
-		6510A78011EC643800410867 /* WebKitWeightWatcher800.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = WebKitWeightWatcher800.ttf; path = fonts/WebKitWeightWatcher800.ttf; sourceTree = "<group>"; };
-		6510A78111EC643800410867 /* WebKitWeightWatcher900.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = WebKitWeightWatcher900.ttf; path = fonts/WebKitWeightWatcher900.ttf; sourceTree = "<group>"; };
-		65EB859D11EC67CC0034D300 /* ActivateFonts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ActivateFonts.h; sourceTree = "<group>"; };
-		65EB859F11EC67CC0034D300 /* ActivateFonts.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ActivateFonts.mm; sourceTree = "<group>"; };
-		8034C6611487636400AC32E9 /* AccessibilityControllerMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AccessibilityControllerMac.mm; path = mac/AccessibilityControllerMac.mm; sourceTree = "<group>"; };
-		8097338814874A5A008156D9 /* AccessibilityNotificationHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AccessibilityNotificationHandler.h; path = mac/AccessibilityNotificationHandler.h; sourceTree = "<group>"; };
-		8097338914874A5A008156D9 /* AccessibilityNotificationHandler.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AccessibilityNotificationHandler.mm; path = mac/AccessibilityNotificationHandler.mm; sourceTree = "<group>"; };
-		8CCDA822151A570B0003F937 /* SampleFont.sfont */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; name = SampleFont.sfont; path = fonts/SampleFont.sfont; sourceTree = "<group>"; };
-		8DD76FA10486AA7600D96B5E /* WebKitTestRunner */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = WebKitTestRunner; sourceTree = BUILT_PRODUCTS_DIR; };
-		BC14E4D8120E02D000826C0C /* GCController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GCController.h; sourceTree = "<group>"; };
-		BC14E4D9120E02D000826C0C /* GCController.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GCController.cpp; sourceTree = "<group>"; };
-		BC14E4E1120E032000826C0C /* GCController.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GCController.idl; sourceTree = "<group>"; };
-		BC14E4E8120E03D800826C0C /* JSGCController.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = JSGCController.cpp; path = DerivedSources/WebKitTestRunner/JSGCController.cpp; sourceTree = BUILT_PRODUCTS_DIR; };
-		BC14E4E9120E03D800826C0C /* JSGCController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JSGCController.h; path = DerivedSources/WebKitTestRunner/JSGCController.h; sourceTree = BUILT_PRODUCTS_DIR; };
-		BC25184611D15767002EBC01 /* InjectedBundleMain.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = InjectedBundleMain.cpp; sourceTree = "<group>"; };
-		BC25186211D15D54002EBC01 /* WebKitTestRunnerInjectedBundle.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = WebKitTestRunnerInjectedBundle.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
-		BC25186311D15D54002EBC01 /* InjectedBundle-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "InjectedBundle-Info.plist"; sourceTree = "<group>"; };
-		BC25197111D15E61002EBC01 /* InjectedBundle.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = InjectedBundle.xcconfig; sourceTree = "<group>"; };
-		BC251A1711D16774002EBC01 /* WebKitTestRunnerPrefix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebKitTestRunnerPrefix.h; sourceTree = "<group>"; };
-		BC251A1811D16795002EBC01 /* WebKitTestRunner.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = WebKitTestRunner.xcconfig; sourceTree = "<group>"; };
-		BC7933FF118F7C84005EA8E2 /* main.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = main.mm; sourceTree = "<group>"; };
-		BC793426118F7D3C005EA8E2 /* Base.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Base.xcconfig; sourceTree = "<group>"; };
-		BC793427118F7DAF005EA8E2 /* DebugRelease.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = DebugRelease.xcconfig; sourceTree = "<group>"; };
-		BC79342F118F7F19005EA8E2 /* TestController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestController.h; sourceTree = "<group>"; };
-		BC793430118F7F19005EA8E2 /* TestController.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TestController.cpp; sourceTree = "<group>"; };
-		BC7934A411906584005EA8E2 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
-		BC7934AB1190658C005EA8E2 /* WebKit2.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = WebKit2.framework; sourceTree = BUILT_PRODUCTS_DIR; };
-		BC7934DD119066EC005EA8E2 /* PlatformWebView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlatformWebView.h; sourceTree = "<group>"; };
-		BC7934E711906846005EA8E2 /* PlatformWebViewMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PlatformWebViewMac.mm; sourceTree = "<group>"; };
-		BC8C795B11D2785D004535A1 /* TestControllerMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = TestControllerMac.mm; sourceTree = "<group>"; };
-		BC8DAD771316D7B900EC96FC /* InjectedBundleMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = InjectedBundleMac.mm; sourceTree = "<group>"; };
-		BC8FD8C8120E527F00F3E71A /* EventSendingController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EventSendingController.h; sourceTree = "<group>"; };
-		BC8FD8C9120E527F00F3E71A /* EventSendingController.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = EventSendingController.cpp; sourceTree = "<group>"; };
-		BC8FD8CB120E52B000F3E71A /* EventSendingController.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EventSendingController.idl; sourceTree = "<group>"; };
-		BC8FD8D0120E545B00F3E71A /* JSEventSendingController.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = JSEventSendingController.cpp; path = DerivedSources/WebKitTestRunner/JSEventSendingController.cpp; sourceTree = BUILT_PRODUCTS_DIR; };
-		BC8FD8D1120E545B00F3E71A /* JSEventSendingController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JSEventSendingController.h; path = DerivedSources/WebKitTestRunner/JSEventSendingController.h; sourceTree = BUILT_PRODUCTS_DIR; };
-		BC9192041333E4F8003011DC /* TestInvocationCG.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = TestInvocationCG.cpp; path = cg/TestInvocationCG.cpp; sourceTree = "<group>"; };
-		BC952C0B11F3B965003398B4 /* JSWrapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSWrapper.h; sourceTree = "<group>"; };
-		BC952C0C11F3B965003398B4 /* JSWrapper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSWrapper.cpp; sourceTree = "<group>"; };
-		BC952C0E11F3B97B003398B4 /* JSWrappable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSWrappable.h; sourceTree = "<group>"; };
-		BC952EC511F3C10F003398B4 /* DerivedSources.make */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DerivedSources.make; sourceTree = "<group>"; };
-		BC952ED211F3C29F003398B4 /* TestRunner.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TestRunner.idl; sourceTree = "<group>"; };
-		BC952ED311F3C318003398B4 /* CodeGeneratorTestRunner.pm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.perl; path = CodeGeneratorTestRunner.pm; sourceTree = "<group>"; };
-		BC952F1D11F3C652003398B4 /* JSTestRunner.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = JSTestRunner.cpp; path = DerivedSources/WebKitTestRunner/JSTestRunner.cpp; sourceTree = BUILT_PRODUCTS_DIR; };
-		BC952F1E11F3C652003398B4 /* JSTestRunner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JSTestRunner.h; path = DerivedSources/WebKitTestRunner/JSTestRunner.h; sourceTree = BUILT_PRODUCTS_DIR; };
-		BC99A4841208901A007E9F08 /* StringFunctions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StringFunctions.h; sourceTree = "<group>"; };
-		BCC997A011D3C8F60017BCA2 /* InjectedBundle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = InjectedBundle.cpp; sourceTree = "<group>"; };
-		BCC997A111D3C8F60017BCA2 /* InjectedBundle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InjectedBundle.h; sourceTree = "<group>"; };
-		BCC997A211D3C8F60017BCA2 /* InjectedBundlePage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = InjectedBundlePage.cpp; sourceTree = "<group>"; };
-		BCC997A311D3C8F60017BCA2 /* InjectedBundlePage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InjectedBundlePage.h; sourceTree = "<group>"; };
-		BCC9981611D3F51E0017BCA2 /* TestRunner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestRunner.h; sourceTree = "<group>"; };
-		BCC9981711D3F51E0017BCA2 /* TestRunner.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TestRunner.cpp; sourceTree = "<group>"; };
-		BCD7D2F611921278006DB7EE /* TestInvocation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestInvocation.h; sourceTree = "<group>"; };
-		BCD7D2F711921278006DB7EE /* TestInvocation.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TestInvocation.cpp; sourceTree = "<group>"; };
-		BCDA2B991191051F00C3BC47 /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = JavaScriptCore.framework; sourceTree = BUILT_PRODUCTS_DIR; };
-		C0CE720A1247C93300BC0EC4 /* TestRunnerMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = TestRunnerMac.mm; path = mac/TestRunnerMac.mm; sourceTree = "<group>"; };
-/* End PBXFileReference section */
-
-/* Begin PBXFrameworksBuildPhase section */
-		8DD76F9B0486AA7600D96B5E /* Frameworks */ = {
-			isa = PBXFrameworksBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				BC7934A511906584005EA8E2 /* Cocoa.framework in Frameworks */,
-				BCDA2B9A1191051F00C3BC47 /* JavaScriptCore.framework in Frameworks */,
-				0F5169CB1445222D00E0A9D7 /* WebKit.framework in Frameworks */,
-				BC7934AC1190658C005EA8E2 /* WebKit2.framework in Frameworks */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-		BC25186011D15D54002EBC01 /* Frameworks */ = {
-			isa = PBXFrameworksBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				BC25193E11D15D8B002EBC01 /* Cocoa.framework in Frameworks */,
-				BC25194011D15D8B002EBC01 /* JavaScriptCore.framework in Frameworks */,
-				A664BC7613A5F3A9009A7B25 /* libWebCoreTestSupport.dylib in Frameworks */,
-				0F5169CC1445222D00E0A9D7 /* WebKit.framework in Frameworks */,
-				BC25193F11D15D8B002EBC01 /* WebKit2.framework in Frameworks */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-/* End PBXFrameworksBuildPhase section */
-
-/* Begin PBXGroup section */
-		08FB7794FE84155DC02AAC07 /* WebKitTestRunner */ = {
-			isa = PBXGroup;
-			children = (
-				BC952EC511F3C10F003398B4 /* DerivedSources.make */,
-				BC99CBF11207642D00FDEE76 /* Shared */,
-				08FB7795FE84155DC02AAC07 /* TestRunner */,
-				BC25183511D1571D002EBC01 /* InjectedBundle */,
-				BC793401118F7C8A005EA8E2 /* Configurations */,
-				08FB779DFE84155DC02AAC07 /* External Frameworks and Libraries */,
-				BC25194411D15DBE002EBC01 /* Resources */,
-				1AB674ADFE9D54B511CA2CBB /* Products */,
-			);
-			name = WebKitTestRunner;
-			sourceTree = "<group>";
-		};
-		08FB7795FE84155DC02AAC07 /* TestRunner */ = {
-			isa = PBXGroup;
-			children = (
-				BC9192021333E4CD003011DC /* cg */,
-				BC7933FE118F7C74005EA8E2 /* mac */,
-				5322FB4113FDA0CD0041ABCC /* CyclicRedundancyCheck.cpp */,
-				5322FB4213FDA0CD0041ABCC /* CyclicRedundancyCheck.h */,
-				5670B8261386FC13002EB355 /* EventSenderProxy.h */,
-				26D758E5160BECDC00268472 /* GeolocationProviderMock.cpp */,
-				26D758E6160BECDD00268472 /* GeolocationProviderMock.h */,
-				5322FB4413FDA0EA0041ABCC /* PixelDumpSupport.cpp */,
-				5322FB4513FDA0EA0041ABCC /* PixelDumpSupport.h */,
-				BC7934DD119066EC005EA8E2 /* PlatformWebView.h */,
-				BC793430118F7F19005EA8E2 /* TestController.cpp */,
-				BC79342F118F7F19005EA8E2 /* TestController.h */,
-				BCD7D2F711921278006DB7EE /* TestInvocation.cpp */,
-				BCD7D2F611921278006DB7EE /* TestInvocation.h */,
-				BC251A1711D16774002EBC01 /* WebKitTestRunnerPrefix.h */,
-				3164C8EF15D1ADA100EF1FE0 /* WebNotificationProvider.cpp */,
-				3110BE0F15BA011400D216AC /* WebNotificationProvider.h */,
-				4429FC5E1627089600F66D8B /* WorkQueueManager.cpp */,
-				4429FC611627089600F66D8B /* WorkQueueManager.h */,
-			);
-			name = TestRunner;
-			sourceTree = "<group>";
-		};
-		08FB779DFE84155DC02AAC07 /* External Frameworks and Libraries */ = {
-			isa = PBXGroup;
-			children = (
-				BC7934A411906584005EA8E2 /* Cocoa.framework */,
-				BCDA2B991191051F00C3BC47 /* JavaScriptCore.framework */,
-				41230E16138C78BF00BCCFCA /* libWebCoreTestSupport.dylib */,
-				4181731B138AD39D0057AAA4 /* WebCoreTestSupport.h */,
-				0F5169CA1445222D00E0A9D7 /* WebKit.framework */,
-				BC7934AB1190658C005EA8E2 /* WebKit2.framework */,
-			);
-			name = "External Frameworks and Libraries";
-			sourceTree = "<group>";
-		};
-		1AB674ADFE9D54B511CA2CBB /* Products */ = {
-			isa = PBXGroup;
-			children = (
-				8DD76FA10486AA7600D96B5E /* WebKitTestRunner */,
-				BC25186211D15D54002EBC01 /* WebKitTestRunnerInjectedBundle.bundle */,
-			);
-			name = Products;
-			sourceTree = "<group>";
-		};
-		29A8FCE0145F035D009045A6 /* Accessibility */ = {
-			isa = PBXGroup;
-			children = (
-				29210EAB144CACB200835BB6 /* AccessibilityCommonMac.mm */,
-				29210EA2144CAAA500835BB5 /* AccessibilityController.cpp */,
-				29210EA3144CAAA500835BB5 /* AccessibilityController.h */,
-				8034C6611487636400AC32E9 /* AccessibilityControllerMac.mm */,
-				8097338814874A5A008156D9 /* AccessibilityNotificationHandler.h */,
-				8097338914874A5A008156D9 /* AccessibilityNotificationHandler.mm */,
-				29210EB1144CACD400835BB5 /* AccessibilityTextMarker.cpp */,
-				29210EB2144CACD400835BB5 /* AccessibilityTextMarker.h */,
-				29210EB3144CACD400835BB5 /* AccessibilityTextMarkerMac.mm */,
-				29A8FCE1145F037B009045A6 /* AccessibilityTextMarkerRange.cpp */,
-				29A8FCDF145F0358009045A6 /* AccessibilityTextMarkerRange.h */,
-				29A8FCE4145F0464009045A6 /* AccessibilityTextMarkerRangeMac.mm */,
-				29210EA9144CACB200835BB5 /* AccessibilityUIElement.cpp */,
-				29210EAA144CACB200835BB5 /* AccessibilityUIElement.h */,
-				29210EAB144CACB200835BB5 /* AccessibilityUIElementMac.mm */,
-			);
-			name = Accessibility;
-			sourceTree = "<group>";
-		};
-		65EB859E11EC67CC0034D300 /* mac */ = {
-			isa = PBXGroup;
-			children = (
-				65EB859F11EC67CC0034D300 /* ActivateFonts.mm */,
-				BC8DAD771316D7B900EC96FC /* InjectedBundleMac.mm */,
-				0FAF67EE160D6C100077CB2B /* InjectedBundlePageMac.mm */,
-			);
-			path = mac;
-			sourceTree = "<group>";
-		};
-		BC14E4E0120E02F900826C0C /* Controllers */ = {
-			isa = PBXGroup;
-			children = (
-				29A8FCE0145F035D009045A6 /* Accessibility */,
-				BC8FD8C9120E527F00F3E71A /* EventSendingController.cpp */,
-				BC8FD8C8120E527F00F3E71A /* EventSendingController.h */,
-				BC14E4D9120E02D000826C0C /* GCController.cpp */,
-				BC14E4D8120E02D000826C0C /* GCController.h */,
-				BCC9981711D3F51E0017BCA2 /* TestRunner.cpp */,
-				BCC9981611D3F51E0017BCA2 /* TestRunner.h */,
-				C0CE720A1247C93300BC0EC4 /* TestRunnerMac.mm */,
-				5664A49814326384008881BE /* TextInputController.cpp */,
-				5664A49914326384008881BE /* TextInputController.h */,
-			);
-			name = Controllers;
-			sourceTree = "<group>";
-		};
-		BC25183511D1571D002EBC01 /* InjectedBundle */ = {
-			isa = PBXGroup;
-			children = (
-				BC952C0A11F3B939003398B4 /* Bindings */,
-				BC14E4E0120E02F900826C0C /* Controllers */,
-				BC952D3A11F3BF1F003398B4 /* Derived Sources */,
-				65EB859E11EC67CC0034D300 /* mac */,
-				65EB859D11EC67CC0034D300 /* ActivateFonts.h */,
-				BCC997A011D3C8F60017BCA2 /* InjectedBundle.cpp */,
-				BCC997A111D3C8F60017BCA2 /* InjectedBundle.h */,
-				BC25184611D15767002EBC01 /* InjectedBundleMain.cpp */,
-				BCC997A211D3C8F60017BCA2 /* InjectedBundlePage.cpp */,
-				BCC997A311D3C8F60017BCA2 /* InjectedBundlePage.h */,
-			);
-			path = InjectedBundle;
-			sourceTree = "<group>";
-		};
-		BC25194411D15DBE002EBC01 /* Resources */ = {
-			isa = PBXGroup;
-			children = (
-				6510A77711EC643800410867 /* AHEM____.TTF */,
-				BC25186311D15D54002EBC01 /* InjectedBundle-Info.plist */,
-				8CCDA822151A570B0003F937 /* SampleFont.sfont */,
-				6510A77911EC643800410867 /* WebKitWeightWatcher100.ttf */,
-				6510A77A11EC643800410867 /* WebKitWeightWatcher200.ttf */,
-				6510A77B11EC643800410867 /* WebKitWeightWatcher300.ttf */,
-				6510A77C11EC643800410867 /* WebKitWeightWatcher400.ttf */,
-				6510A77D11EC643800410867 /* WebKitWeightWatcher500.ttf */,
-				6510A77E11EC643800410867 /* WebKitWeightWatcher600.ttf */,
-				6510A77F11EC643800410867 /* WebKitWeightWatcher700.ttf */,
-				6510A78011EC643800410867 /* WebKitWeightWatcher800.ttf */,
-				6510A78111EC643800410867 /* WebKitWeightWatcher900.ttf */,
-			);
-			name = Resources;
-			sourceTree = "<group>";
-		};
-		BC7933FE118F7C74005EA8E2 /* mac */ = {
-			isa = PBXGroup;
-			children = (
-				5670B8271386FCA5002EB355 /* EventSenderProxy.mm */,
-				BC7933FF118F7C84005EA8E2 /* main.mm */,
-				BC7934E711906846005EA8E2 /* PlatformWebViewMac.mm */,
-				BC8C795B11D2785D004535A1 /* TestControllerMac.mm */,
-			);
-			path = mac;
-			sourceTree = "<group>";
-		};
-		BC793401118F7C8A005EA8E2 /* Configurations */ = {
-			isa = PBXGroup;
-			children = (
-				BC793426118F7D3C005EA8E2 /* Base.xcconfig */,
-				BC793427118F7DAF005EA8E2 /* DebugRelease.xcconfig */,
-				BC25197111D15E61002EBC01 /* InjectedBundle.xcconfig */,
-				BC251A1811D16795002EBC01 /* WebKitTestRunner.xcconfig */,
-			);
-			path = Configurations;
-			sourceTree = "<group>";
-		};
-		BC9192021333E4CD003011DC /* cg */ = {
-			isa = PBXGroup;
-			children = (
-				BC9192041333E4F8003011DC /* TestInvocationCG.cpp */,
-			);
-			name = cg;
-			sourceTree = "<group>";
-		};
-		BC952C0A11F3B939003398B4 /* Bindings */ = {
-			isa = PBXGroup;
-			children = (
-				29210EA8144CAB8800835BB5 /* AccessibilityController.idl */,
-				29A8FCC5145B93C6009045A6 /* AccessibilityTextMarker.idl */,
-				29A8FCD2145EF8F2009045A6 /* AccessibilityTextMarkerRange.idl */,
-				29210EDC144CD56E00835BB5 /* AccessibilityUIElement.idl */,
-				BC952ED311F3C318003398B4 /* CodeGeneratorTestRunner.pm */,
-				BC8FD8CB120E52B000F3E71A /* EventSendingController.idl */,
-				BC14E4E1120E032000826C0C /* GCController.idl */,
-				BC952C0E11F3B97B003398B4 /* JSWrappable.h */,
-				BC952C0C11F3B965003398B4 /* JSWrapper.cpp */,
-				BC952C0B11F3B965003398B4 /* JSWrapper.h */,
-				BC952ED211F3C29F003398B4 /* TestRunner.idl */,
-				5664A49614326377008881BE /* TextInputController.idl */,
-			);
-			path = Bindings;
-			sourceTree = "<group>";
-		};
-		BC952D3A11F3BF1F003398B4 /* Derived Sources */ = {
-			isa = PBXGroup;
-			children = (
-				583913D014335E95008307E5 /* JSAccessibilityController.cpp */,
-				583913D114335E95008307E5 /* JSAccessibilityController.h */,
-				29210EE1144CDE6789815EE5 /* JSAccessibilityTextMarker.cpp */,
-				29210EE1145CDE6789815EE5 /* JSAccessibilityTextMarker.h */,
-				29A8FCE1345E7021006AA5A6 /* JSAccessibilityTextMarkerRange.cpp */,
-				29A8FCE1345E7021006AA5A7 /* JSAccessibilityTextMarkerRange.h */,
-				29210EDB146727E711835BB5 /* JSAccessibilityUIElement.cpp */,
-				29210EDB146727E811835BB5 /* JSAccessibilityUIElement.h */,
-				BC8FD8D0120E545B00F3E71A /* JSEventSendingController.cpp */,
-				BC8FD8D1120E545B00F3E71A /* JSEventSendingController.h */,
-				BC14E4E8120E03D800826C0C /* JSGCController.cpp */,
-				BC14E4E9120E03D800826C0C /* JSGCController.h */,
-				BC952F1D11F3C652003398B4 /* JSTestRunner.cpp */,
-				BC952F1E11F3C652003398B4 /* JSTestRunner.h */,
-				5641E2CE14335E95008307E5 /* JSTextInputController.cpp */,
-				5641E2CF14335E95008307E5 /* JSTextInputController.h */,
-			);
-			name = "Derived Sources";
-			sourceTree = "<group>";
-		};
-		BC99CBF11207642D00FDEE76 /* Shared */ = {
-			isa = PBXGroup;
-			children = (
-				378D442213346D00006A777B /* config.h */,
-				BC99A4841208901A007E9F08 /* StringFunctions.h */,
-			);
-			name = Shared;
-			sourceTree = "<group>";
-		};
-/* End PBXGroup section */
-
-/* Begin PBXNativeTarget section */
-		8DD76F960486AA7600D96B5E /* WebKitTestRunner */ = {
-			isa = PBXNativeTarget;
-			buildConfigurationList = 1DEB927408733DD40010E9CD /* Build configuration list for PBXNativeTarget "WebKitTestRunner" */;
-			buildPhases = (
-				8DD76F990486AA7600D96B5E /* Sources */,
-				8DD76F9B0486AA7600D96B5E /* Frameworks */,
-			);
-			buildRules = (
-			);
-			dependencies = (
-				BC25194211D15D94002EBC01 /* PBXTargetDependency */,
-			);
-			name = WebKitTestRunner;
-			productInstallPath = "$(HOME)/bin";
-			productName = WebKitTestRunner;
-			productReference = 8DD76FA10486AA7600D96B5E /* WebKitTestRunner */;
-			productType = "com.apple.product-type.tool";
-		};
-		BC25186111D15D54002EBC01 /* WebKitTestRunnerInjectedBundle */ = {
-			isa = PBXNativeTarget;
-			buildConfigurationList = BC25186611D15D55002EBC01 /* Build configuration list for PBXNativeTarget "WebKitTestRunnerInjectedBundle" */;
-			buildPhases = (
-				BC25185E11D15D54002EBC01 /* Resources */,
-				BC25185F11D15D54002EBC01 /* Sources */,
-				BC25186011D15D54002EBC01 /* Frameworks */,
-			);
-			buildRules = (
-			);
-			dependencies = (
-				BC952ED711F3C38B003398B4 /* PBXTargetDependency */,
-			);
-			name = WebKitTestRunnerInjectedBundle;
-			productName = InjectedBundle;
-			productReference = BC25186211D15D54002EBC01 /* WebKitTestRunnerInjectedBundle.bundle */;
-			productType = "com.apple.product-type.bundle";
-		};
-/* End PBXNativeTarget section */
-
-/* Begin PBXProject section */
-		08FB7793FE84155DC02AAC07 /* Project object */ = {
-			isa = PBXProject;
-			buildConfigurationList = 1DEB927808733DD40010E9CD /* Build configuration list for PBXProject "WebKitTestRunner" */;
-			compatibilityVersion = "Xcode 3.1";
-			developmentRegion = English;
-			hasScannedForEncodings = 1;
-			knownRegions = (
-				English,
-				Japanese,
-				French,
-				German,
-			);
-			mainGroup = 08FB7794FE84155DC02AAC07 /* WebKitTestRunner */;
-			projectDirPath = "";
-			projectRoot = "";
-			targets = (
-				8DD76F960486AA7600D96B5E /* WebKitTestRunner */,
-				BC25186111D15D54002EBC01 /* WebKitTestRunnerInjectedBundle */,
-				BC952D7711F3BF5D003398B4 /* Derived Sources */,
-			);
-		};
-/* End PBXProject section */
-
-/* Begin PBXResourcesBuildPhase section */
-		BC25185E11D15D54002EBC01 /* Resources */ = {
-			isa = PBXResourcesBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				6510A78211EC643800410867 /* AHEM____.TTF in Resources */,
-				8CCDA823151A570B0003F937 /* SampleFont.sfont in Resources */,
-				6510A78411EC643800410867 /* WebKitWeightWatcher100.ttf in Resources */,
-				6510A78511EC643800410867 /* WebKitWeightWatcher200.ttf in Resources */,
-				6510A78611EC643800410867 /* WebKitWeightWatcher300.ttf in Resources */,
-				6510A78711EC643800410867 /* WebKitWeightWatcher400.ttf in Resources */,
-				6510A78811EC643800410867 /* WebKitWeightWatcher500.ttf in Resources */,
-				6510A78911EC643800410867 /* WebKitWeightWatcher600.ttf in Resources */,
-				6510A78A11EC643800410867 /* WebKitWeightWatcher700.ttf in Resources */,
-				6510A78B11EC643800410867 /* WebKitWeightWatcher800.ttf in Resources */,
-				6510A78C11EC643800410867 /* WebKitWeightWatcher900.ttf in Resources */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-/* End PBXResourcesBuildPhase section */
-
-/* Begin PBXShellScriptBuildPhase section */
-		BC952D8211F3BF78003398B4 /* Generate Derived Sources */ = {
-			isa = PBXShellScriptBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-			);
-			inputPaths = (
-			);
-			name = "Generate Derived Sources";
-			outputPaths = (
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-			shellPath = /bin/sh;
-			shellScript = "mkdir -p \"${BUILT_PRODUCTS_DIR}/DerivedSources/WebKitTestRunner\"\ncd \"${BUILT_PRODUCTS_DIR}/DerivedSources/WebKitTestRunner\"\n\nexport WebKitTestRunner=\"${SRCROOT}\"\nexport WebCoreScripts=\"${WEBCORE_PRIVATE_HEADERS_DIR}\"\n\nif [ ! $CC ]; then\n    export CC=\"`xcrun -find clang`\"\nfi\n\nif [ \"${ACTION}\" = \"build\" -o \"${ACTION}\" = \"install\" -o \"${ACTION}\" = \"installhdrs\" ]; then\n    make -f \"${WebKitTestRunner}/DerivedSources.make\" -j `/usr/sbin/sysctl -n hw.availcpu`\nfi\n";
-		};
-/* End PBXShellScriptBuildPhase section */
-
-/* Begin PBXSourcesBuildPhase section */
-		8DD76F990486AA7600D96B5E /* Sources */ = {
-			isa = PBXSourcesBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				5322FB4313FDA0CD0041ABCC /* CyclicRedundancyCheck.cpp in Sources */,
-				5670B8281386FCA5002EB355 /* EventSenderProxy.mm in Sources */,
-				26D758E7160BECDD00268472 /* GeolocationProviderMock.cpp in Sources */,
-				BC793400118F7C84005EA8E2 /* main.mm in Sources */,
-				5322FB4613FDA0EA0041ABCC /* PixelDumpSupport.cpp in Sources */,
-				BC7934E811906846005EA8E2 /* PlatformWebViewMac.mm in Sources */,
-				BC793431118F7F19005EA8E2 /* TestController.cpp in Sources */,
-				BC8C795C11D2785D004535A1 /* TestControllerMac.mm in Sources */,
-				BCD7D2F811921278006DB7EE /* TestInvocation.cpp in Sources */,
-				BC9192051333E4F8003011DC /* TestInvocationCG.cpp in Sources */,
-				3164C8F015D1ADA100EF1FE0 /* WebNotificationProvider.cpp in Sources */,
-				4429FC5F1627089600F66D8B /* WorkQueueManager.cpp in Sources */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-		BC25185F11D15D54002EBC01 /* Sources */ = {
-			isa = PBXSourcesBuildPhase;
-			buildActionMask = 2147483647;
-			files = (
-				29210EDA144CC3EA00835BB6 /* AccessibilityCommonMac.mm in Sources */,
-				29210EB0144CACBD00835BB5 /* AccessibilityController.cpp in Sources */,
-				8034C6621487636400AC32E9 /* AccessibilityControllerMac.mm in Sources */,
-				8097338A14874A5A008156D9 /* AccessibilityNotificationHandler.mm in Sources */,
-				29210EB4144CACD500835BB5 /* AccessibilityTextMarker.cpp in Sources */,
-				29210EB5144CACD500835BB5 /* AccessibilityTextMarkerMac.mm in Sources */,
-				29A8FCE2145F037B009045A6 /* AccessibilityTextMarkerRange.cpp in Sources */,
-				29A8FCE5145F0464009045A6 /* AccessibilityTextMarkerRangeMac.mm in Sources */,
-				29210EAE144CACB700835BB5 /* AccessibilityUIElement.cpp in Sources */,
-				29210EDA144CC3EA00835BB5 /* AccessibilityUIElementMac.mm in Sources */,
-				65EB85A011EC67CC0034D300 /* ActivateFonts.mm in Sources */,
-				BC8FD8CA120E527F00F3E71A /* EventSendingController.cpp in Sources */,
-				BC14E4DB120E02D000826C0C /* GCController.cpp in Sources */,
-				BCC997A411D3C8F60017BCA2 /* InjectedBundle.cpp in Sources */,
-				BC8DAD7B1316D91000EC96FC /* InjectedBundleMac.mm in Sources */,
-				BC251A3E11D16831002EBC01 /* InjectedBundleMain.cpp in Sources */,
-				BCC997A511D3C8F60017BCA2 /* InjectedBundlePage.cpp in Sources */,
-				0FAF67EF160D6C100077CB2B /* InjectedBundlePageMac.mm in Sources */,
-				29210EDB144CD47900835BB5 /* JSAccessibilityController.cpp in Sources */,
-				29A8FCCB145EF02E009045A6 /* JSAccessibilityTextMarker.cpp in Sources */,
-				29A8FCDD145F0337009045A6 /* JSAccessibilityTextMarkerRange.cpp in Sources */,
-				29210EE1144CDB2600835BB5 /* JSAccessibilityUIElement.cpp in Sources */,
-				BC8FD8D2120E545B00F3E71A /* JSEventSendingController.cpp in Sources */,
-				BC14E4EA120E03D800826C0C /* JSGCController.cpp in Sources */,
-				BC952F1F11F3C652003398B4 /* JSTestRunner.cpp in Sources */,
-				5641E2D014335E95008307E5 /* JSTextInputController.cpp in Sources */,
-				BC952C0D11F3B965003398B4 /* JSWrapper.cpp in Sources */,
-				BCC9981811D3F51E0017BCA2 /* TestRunner.cpp in Sources */,
-				C0CE720B1247C93300BC0EC4 /* TestRunnerMac.mm in Sources */,
-				5664A49A14326384008881BE /* TextInputController.cpp in Sources */,
-			);
-			runOnlyForDeploymentPostprocessing = 0;
-		};
-/* End PBXSourcesBuildPhase section */
-
-/* Begin PBXTargetDependency section */
-		BC25194211D15D94002EBC01 /* PBXTargetDependency */ = {
-			isa = PBXTargetDependency;
-			target = BC25186111D15D54002EBC01 /* WebKitTestRunnerInjectedBundle */;
-			targetProxy = BC25194111D15D94002EBC01 /* PBXContainerItemProxy */;
-		};
-		BC952ED711F3C38B003398B4 /* PBXTargetDependency */ = {
-			isa = PBXTargetDependency;
-			target = BC952D7711F3BF5D003398B4 /* Derived Sources */;
-			targetProxy = BC952ED611F3C38B003398B4 /* PBXContainerItemProxy */;
-		};
-/* End PBXTargetDependency section */
-
-/* Begin XCBuildConfiguration section */
-		1DEB927508733DD40010E9CD /* Debug */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BC251A1811D16795002EBC01 /* WebKitTestRunner.xcconfig */;
-			buildSettings = {
-			};
-			name = Debug;
-		};
-		1DEB927608733DD40010E9CD /* Release */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BC251A1811D16795002EBC01 /* WebKitTestRunner.xcconfig */;
-			buildSettings = {
-			};
-			name = Release;
-		};
-		1DEB927908733DD40010E9CD /* Debug */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BC793427118F7DAF005EA8E2 /* DebugRelease.xcconfig */;
-			buildSettings = {
-				DEBUG_DEFINES = "$(DEBUG_DEFINES_debug)";
-				GCC_OPTIMIZATION_LEVEL = 0;
-			};
-			name = Debug;
-		};
-		1DEB927A08733DD40010E9CD /* Release */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BC793427118F7DAF005EA8E2 /* DebugRelease.xcconfig */;
-			buildSettings = {
-			};
-			name = Release;
-		};
-		BC25186411D15D55002EBC01 /* Debug */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BC25197111D15E61002EBC01 /* InjectedBundle.xcconfig */;
-			buildSettings = {
-			};
-			name = Debug;
-		};
-		BC25186511D15D55002EBC01 /* Release */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BC25197111D15E61002EBC01 /* InjectedBundle.xcconfig */;
-			buildSettings = {
-			};
-			name = Release;
-		};
-		BC646D6D136A3A8700B35DED /* Production */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BC793426118F7D3C005EA8E2 /* Base.xcconfig */;
-			buildSettings = {
-			};
-			name = Production;
-		};
-		BC646D6E136A3A8700B35DED /* Production */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BC251A1811D16795002EBC01 /* WebKitTestRunner.xcconfig */;
-			buildSettings = {
-			};
-			name = Production;
-		};
-		BC646D6F136A3A8700B35DED /* Production */ = {
-			isa = XCBuildConfiguration;
-			baseConfigurationReference = BC25197111D15E61002EBC01 /* InjectedBundle.xcconfig */;
-			buildSettings = {
-			};
-			name = Production;
-		};
-		BC646D70136A3A8700B35DED /* Production */ = {
-			isa = XCBuildConfiguration;
-			buildSettings = {
-				PRODUCT_NAME = "Derived Sources";
-			};
-			name = Production;
-		};
-		BC952D7811F3BF5E003398B4 /* Debug */ = {
-			isa = XCBuildConfiguration;
-			buildSettings = {
-				PRODUCT_NAME = "Derived Sources";
-			};
-			name = Debug;
-		};
-		BC952D7911F3BF5E003398B4 /* Release */ = {
-			isa = XCBuildConfiguration;
-			buildSettings = {
-				PRODUCT_NAME = "Derived Sources";
-			};
-			name = Release;
-		};
-/* End XCBuildConfiguration section */
-
-/* Begin XCConfigurationList section */
-		1DEB927408733DD40010E9CD /* Build configuration list for PBXNativeTarget "WebKitTestRunner" */ = {
-			isa = XCConfigurationList;
-			buildConfigurations = (
-				1DEB927508733DD40010E9CD /* Debug */,
-				1DEB927608733DD40010E9CD /* Release */,
-				BC646D6E136A3A8700B35DED /* Production */,
-			);
-			defaultConfigurationIsVisible = 0;
-			defaultConfigurationName = Production;
-		};
-		1DEB927808733DD40010E9CD /* Build configuration list for PBXProject "WebKitTestRunner" */ = {
-			isa = XCConfigurationList;
-			buildConfigurations = (
-				1DEB927908733DD40010E9CD /* Debug */,
-				1DEB927A08733DD40010E9CD /* Release */,
-				BC646D6D136A3A8700B35DED /* Production */,
-			);
-			defaultConfigurationIsVisible = 0;
-			defaultConfigurationName = Production;
-		};
-		BC25186611D15D55002EBC01 /* Build configuration list for PBXNativeTarget "WebKitTestRunnerInjectedBundle" */ = {
-			isa = XCConfigurationList;
-			buildConfigurations = (
-				BC25186411D15D55002EBC01 /* Debug */,
-				BC25186511D15D55002EBC01 /* Release */,
-				BC646D6F136A3A8700B35DED /* Production */,
-			);
-			defaultConfigurationIsVisible = 0;
-			defaultConfigurationName = Production;
-		};
-		BC952D7D11F3BF6A003398B4 /* Build configuration list for PBXAggregateTarget "Derived Sources" */ = {
-			isa = XCConfigurationList;
-			buildConfigurations = (
-				BC952D7811F3BF5E003398B4 /* Debug */,
-				BC952D7911F3BF5E003398B4 /* Release */,
-				BC646D70136A3A8700B35DED /* Production */,
-			);
-			defaultConfigurationIsVisible = 0;
-			defaultConfigurationName = Production;
-		};
-/* End XCConfigurationList section */
-	};
-	rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
-}
diff --git a/Tools/WebKitTestRunner/WebKitTestRunnerPrefix.h b/Tools/WebKitTestRunner/WebKitTestRunnerPrefix.h
deleted file mode 100644
index ac61ad7..0000000
--- a/Tools/WebKitTestRunner/WebKitTestRunnerPrefix.h
+++ /dev/null
@@ -1,58 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifdef __OBJC__
-#include <Cocoa/Cocoa.h>
-#endif
-
-#if defined(WIN32) || defined(_WIN32)
-// If we don't define these, they get defined in windef.h. 
-// We want to use std::min and std::max
-#define max max
-#define min min
-#endif
-
-#if defined(BUILDING_GTK__)
-#include "autotoolsconfig.h"
-#endif /* defined (BUILDING_GTK__) */
-
-#include <wtf/Platform.h>
-#include <WebKit2/WebKit2_C.h>
-
-
-/* When C++ exceptions are disabled, the C++ library defines |try| and |catch|
-* to allow C++ code that expects exceptions to build. These definitions
-* interfere with Objective-C++ uses of Objective-C exception handlers, which
-* use |@try| and |@catch|. As a workaround, undefine these macros. */
-
-#ifdef __cplusplus
-#include <algorithm> // needed for exception_defines.h
-#endif
-
-#ifdef __OBJC__
-#undef try
-#undef catch
-#endif
-
diff --git a/Tools/WebKitTestRunner/WebNotificationProvider.cpp b/Tools/WebKitTestRunner/WebNotificationProvider.cpp
deleted file mode 100644
index be32cb9..0000000
--- a/Tools/WebKitTestRunner/WebNotificationProvider.cpp
+++ /dev/null
@@ -1,155 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "WebNotificationProvider.h"
-
-#include <WebKit2/WKMutableArray.h>
-#include <WebKit2/WKNotification.h>
-#include <WebKit2/WKNumber.h>
-#include <WebKit2/WKSecurityOrigin.h>
-#include <wtf/Assertions.h>
-
-namespace WTR {
-
-static void showWebNotification(WKPageRef page, WKNotificationRef notification, const void* clientInfo)
-{
-    static_cast<WebNotificationProvider*>(const_cast<void*>(clientInfo))->showWebNotification(page, notification);
-}
-
-static void closeWebNotification(WKNotificationRef notification, const void* clientInfo)
-{
-    static_cast<WebNotificationProvider*>(const_cast<void*>(clientInfo))->closeWebNotification(notification);
-}
-
-static void addNotificationManager(WKNotificationManagerRef manager, const void* clientInfo)
-{
-    static_cast<WebNotificationProvider*>(const_cast<void*>(clientInfo))->addNotificationManager(manager);
-}
-
-static void removeNotificationManager(WKNotificationManagerRef manager, const void* clientInfo)
-{
-    static_cast<WebNotificationProvider*>(const_cast<void*>(clientInfo))->removeNotificationManager(manager);
-}
-
-static WKDictionaryRef notificationPermissions(const void* clientInfo)
-{
-    return static_cast<WebNotificationProvider*>(const_cast<void*>(clientInfo))->notificationPermissions();
-}
-
-WebNotificationProvider::WebNotificationProvider()
-{
-}
-
-WKNotificationProvider WebNotificationProvider::provider()
-{
-    WKNotificationProvider notificationProvider = {
-        kWKNotificationProviderCurrentVersion,
-        this,
-        WTR::showWebNotification,
-        WTR::closeWebNotification,
-        0, // didDestroyNotification
-        WTR::addNotificationManager,
-        WTR::removeNotificationManager,
-        WTR::notificationPermissions,
-        0, // clearNotifications
-    };
-    return notificationProvider;
-}
-
-void WebNotificationProvider::showWebNotification(WKPageRef, WKNotificationRef notification)
-{
-    if (!m_notificationManager)
-        return;
-
-    uint64_t id = WKNotificationGetID(notification);
-    ASSERT(!m_shownNotifications.contains(id));
-    m_shownNotifications.add(id);
-
-    WKNotificationManagerProviderDidShowNotification(m_notificationManager.get(), WKNotificationGetID(notification));
-}
-
-void WebNotificationProvider::closeWebNotification(WKNotificationRef notification)
-{
-    if (!m_notificationManager)
-        return;
-
-    uint64_t id = WKNotificationGetID(notification);
-    WKRetainPtr<WKUInt64Ref> wkID = WKUInt64Create(id);
-    WKRetainPtr<WKMutableArrayRef> array(AdoptWK, WKMutableArrayCreate());
-    WKArrayAppendItem(array.get(), wkID.get());
-    m_shownNotifications.remove(id);
-    WKNotificationManagerProviderDidCloseNotifications(m_notificationManager.get(), array.get());
-}
-
-void WebNotificationProvider::addNotificationManager(WKNotificationManagerRef manager)
-{
-    // We assume there is only one for testing.
-    ASSERT(!m_notificationManager);
-    m_notificationManager = manager;
-}
-
-void WebNotificationProvider::removeNotificationManager(WKNotificationManagerRef manager)
-{
-    // We assume there is only one for testing.
-    ASSERT(m_notificationManager);
-    ASSERT(m_notificationManager.get() == manager);
-    m_notificationManager = 0;
-}
-
-WKDictionaryRef WebNotificationProvider::notificationPermissions()
-{
-    // Initial permissions are always empty.
-    return WKMutableDictionaryCreate();
-}
-
-void WebNotificationProvider::simulateWebNotificationClick(uint64_t notificationID)
-{
-    if (!m_notificationManager)
-        return;
-
-    ASSERT(m_shownNotifications.contains(notificationID));
-    WKNotificationManagerProviderDidClickNotification(m_notificationManager.get(), notificationID);
-}
-
-void WebNotificationProvider::reset()
-{
-    if (!m_notificationManager) {
-        m_shownNotifications.clear();
-        return;
-    }
-
-    WKRetainPtr<WKMutableArrayRef> array(AdoptWK, WKMutableArrayCreate());
-    HashSet<uint64_t>::const_iterator itEnd = m_shownNotifications.end();
-    for (HashSet<uint64_t>::const_iterator it = m_shownNotifications.begin(); it != itEnd; ++it) {
-        WKRetainPtr<WKUInt64Ref> wkID = WKUInt64Create(*it);
-        WKArrayAppendItem(array.get(), wkID.get());
-    }
-
-    m_shownNotifications.clear();
-    WKNotificationManagerProviderDidCloseNotifications(m_notificationManager.get(), array.get());
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/WebNotificationProvider.h b/Tools/WebKitTestRunner/WebNotificationProvider.h
deleted file mode 100644
index 63c559c..0000000
--- a/Tools/WebKitTestRunner/WebNotificationProvider.h
+++ /dev/null
@@ -1,57 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef WebNotificationProvider_h
-#define WebNotificationProvider_h
-
-#include <WebKit2/WKNotificationManager.h>
-#include <WebKit2/WKNotificationProvider.h>
-#include <WebKit2/WKRetainPtr.h>
-#include <wtf/HashSet.h>
-
-namespace WTR {
-
-class WebNotificationProvider {
-public:
-    WebNotificationProvider();
-    WKNotificationProvider provider();
-
-    void showWebNotification(WKPageRef, WKNotificationRef);
-    void closeWebNotification(WKNotificationRef);
-    void addNotificationManager(WKNotificationManagerRef);
-    void removeNotificationManager(WKNotificationManagerRef);
-    WKDictionaryRef notificationPermissions();
-
-    void simulateWebNotificationClick(uint64_t notificationID);
-    void reset();
-
-private:
-    WKRetainPtr<WKNotificationManagerRef> m_notificationManager;
-    HashSet<uint64_t> m_shownNotifications;
-};
-
-}
-
-#endif
diff --git a/Tools/WebKitTestRunner/WorkQueueManager.cpp b/Tools/WebKitTestRunner/WorkQueueManager.cpp
deleted file mode 100644
index 8479230..0000000
--- a/Tools/WebKitTestRunner/WorkQueueManager.cpp
+++ /dev/null
@@ -1,227 +0,0 @@
-/*
- * Copyright (C) 2012 Intel Corporation. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "WorkQueueManager.h"
-
-#include "PlatformWebView.h"
-#include "TestController.h"
-#include <WebKit2/WKPage.h>
-#include <WebKit2/WKRetainPtr.h>
-#include <wtf/PassOwnPtr.h>
-#include <wtf/text/CString.h>
-
-namespace WTR {
-
-static inline WKPageRef mainPage()
-{
-    return TestController::shared().mainWebView()->page();
-}
-
-static inline bool goToItemAtIndex(int index)
-{
-    WKBackForwardListRef backForwardList = WKPageGetBackForwardList(mainPage());
-    ASSERT(backForwardList);
-
-    WKBackForwardListItemRef listItem = WKBackForwardListGetItemAtIndex(backForwardList, index);
-    if (!listItem)
-        return false;
-
-    WKPageGoToBackForwardListItem(mainPage(), listItem);
-
-    return true;
-}
-
-class WorkQueueItem {
-public:
-    enum Type {
-        Loading,
-        NonLoading
-    };
-
-    virtual ~WorkQueueItem() { }
-    virtual Type invoke() const = 0;
-};
-
-// Required by WKPageRunJavaScriptInMainFrame().
-static void runJavaScriptFunction(WKSerializedScriptValueRef, WKErrorRef, void*)
-{
-}
-
-template <WorkQueueItem::Type type>
-class ScriptItem : public WorkQueueItem {
-public:
-    explicit ScriptItem(const String& script)
-        : m_script(AdoptWK, WKStringCreateWithUTF8CString(script.utf8().data()))
-    {
-    }
-
-    WorkQueueItem::Type invoke() const
-    {
-        WKPageRunJavaScriptInMainFrame(mainPage(), m_script.get(), 0, runJavaScriptFunction);
-        return type;
-    }
-
-    WKRetainPtr<WKStringRef> m_script;
-};
-
-class NavigationItem : public WorkQueueItem {
-public:
-    explicit NavigationItem(int index) : m_index(index) { }
-
-    WorkQueueItem::Type invoke() const
-    {
-        return goToItemAtIndex(m_index) ? WorkQueueItem::Loading : WorkQueueItem::NonLoading;
-    }
-
-    unsigned m_index;
-};
-
-WorkQueueManager::WorkQueueManager()
-    : m_processing(false)
-{
-}
-
-WorkQueueManager::~WorkQueueManager()
-{
-}
-
-void WorkQueueManager::clearWorkQueue()
-{
-    m_processing = false;
-    m_workQueue.clear();
-}
-
-bool WorkQueueManager::processWorkQueue()
-{
-    m_processing = false;
-    while (!m_processing && !m_workQueue.isEmpty()) {
-        OwnPtr<WorkQueueItem> item(m_workQueue.takeFirst());
-        m_processing = (item->invoke() == WorkQueueItem::Loading);
-    }
-
-    return !m_processing;
-}
-
-void WorkQueueManager::queueLoad(const String& url, const String& target)
-{
-    class LoadItem : public WorkQueueItem {
-    public:
-        LoadItem(const String& url, const String& target)
-            : m_url(AdoptWK, WKURLCreateWithUTF8CString(url.utf8().data()))
-            , m_target(target)
-        {
-        }
-
-        WorkQueueItem::Type invoke() const
-        {
-            if (!m_target.isEmpty()) {
-                // FIXME: Use target. Some layout tests cannot pass as they rely on this functionality.
-                fprintf(stderr, "queueLoad for a specific target is not implemented.\n");
-                return WorkQueueItem::NonLoading;
-            }
-            WKPageLoadURL(mainPage(), m_url.get());
-            return WorkQueueItem::Loading;
-        }
-
-        WKRetainPtr<WKURLRef> m_url;
-        String m_target;
-    };
-
-    enqueue(new LoadItem(url, target));
-}
-
-void WorkQueueManager::queueLoadHTMLString(const String& content, const String& baseURL, const String& unreachableURL)
-{
-    class LoadHTMLStringItem : public WorkQueueItem {
-    public:
-        LoadHTMLStringItem(const String& content, const String& baseURL, const String& unreachableURL)
-            : m_content(AdoptWK, WKStringCreateWithUTF8CString(content.utf8().data()))
-            , m_baseURL(AdoptWK, WKURLCreateWithUTF8CString(baseURL.utf8().data()))
-            , m_unreachableURL(AdoptWK, WKURLCreateWithUTF8CString(unreachableURL.utf8().data()))
-        {
-        }
-
-        WorkQueueItem::Type invoke() const
-        {
-            WKPageLoadAlternateHTMLString(mainPage(), m_content.get(), m_baseURL.get(), m_unreachableURL.get());
-            return WorkQueueItem::Loading;
-        }
-
-        WKRetainPtr<WKStringRef> m_content;
-        WKRetainPtr<WKURLRef> m_baseURL;
-        WKRetainPtr<WKURLRef> m_unreachableURL;
-    };
-
-    enqueue(new LoadHTMLStringItem(content, baseURL, unreachableURL));
-}
-
-void WorkQueueManager::queueBackNavigation(unsigned howFarBackward)
-{
-    enqueue(new NavigationItem(-howFarBackward));
-}
-
-void WorkQueueManager::queueForwardNavigation(unsigned howFarForward)
-{
-    enqueue(new NavigationItem(howFarForward));
-}
-
-void WorkQueueManager::queueReload()
-{
-    class ReloadItem : public WorkQueueItem {
-    public:
-        WorkQueueItem::Type invoke() const
-        {
-            WKPageReload(mainPage());
-            return WorkQueueItem::Loading;
-        }
-    };
-
-    enqueue(new ReloadItem());
-}
-
-void WorkQueueManager::queueLoadingScript(const String& script)
-{
-    enqueue(new ScriptItem<WorkQueueItem::Loading>(script));
-}
-
-void WorkQueueManager::queueNonLoadingScript(const String& script)
-{
-    enqueue(new ScriptItem<WorkQueueItem::NonLoading>(script));
-}
-
-void WorkQueueManager::enqueue(WorkQueueItem* item)
-{
-    ASSERT(item);
-    if (m_processing) {
-        fprintf(stderr, "Attempt to enqueue a work item while queue is being processed.\n");
-        delete item;
-        return;
-    }
-
-    m_workQueue.append(adoptPtr(item));
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/WorkQueueManager.h b/Tools/WebKitTestRunner/WorkQueueManager.h
deleted file mode 100644
index 21d5ebb..0000000
--- a/Tools/WebKitTestRunner/WorkQueueManager.h
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
- * Copyright (C) 2012 Intel Corporation. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef WorkQueueManager_h
-#define WorkQueueManager_h
-
-#include <wtf/Deque.h>
-#include <wtf/OwnPtr.h>
-#include <wtf/text/WTFString.h>
-
-namespace WTR {
-
-class WorkQueueManager {
-    WTF_MAKE_NONCOPYABLE(WorkQueueManager);
-public:
-    WorkQueueManager();
-    ~WorkQueueManager();
-
-    bool isWorkQueueEmpty() const { return m_workQueue.isEmpty(); }
-    void clearWorkQueue();
-    bool processWorkQueue(); // Returns 'true' if queue is processed (no new loading is started), returns 'false' otherwise.
-
-    void queueLoad(const String& url, const String& target);
-    void queueLoadHTMLString(const String& content, const String& baseURL, const String& unreachableURL);
-    void queueBackNavigation(unsigned howFarBackward);
-    void queueForwardNavigation(unsigned howFarForward);
-    void queueReload();
-    void queueLoadingScript(const String& script);
-    void queueNonLoadingScript(const String& script);
-
-private:    
-    typedef Deque<OwnPtr<class WorkQueueItem> > WorkQueue;
-
-    void enqueue(WorkQueueItem*); // Adopts pointer.
-
-    WorkQueue m_workQueue;
-    bool m_processing;
-};
-
-} // namespace WTR
-
-#endif // WorkQueueManager_h
diff --git a/Tools/WebKitTestRunner/cairo/TestInvocationCairo.cpp b/Tools/WebKitTestRunner/cairo/TestInvocationCairo.cpp
deleted file mode 100644
index eb3a0d3..0000000
--- a/Tools/WebKitTestRunner/cairo/TestInvocationCairo.cpp
+++ /dev/null
@@ -1,152 +0,0 @@
-/*
- * Copyright (C) 2009 Apple Inc. All rights reserved.
- *           (C) 2011 Brent Fulgham <bfulgham@webkit.org>. All rights reserved.
- *           (C) 2010, 2011 Igalia S.L
- *           (C) 2012 Intel Corporation. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "TestInvocation.h"
-
-#include "PixelDumpSupport.h"
-#include "PlatformWebView.h"
-#include "TestController.h"
-#include <WebKit2/WKImageCairo.h>
-#include <cairo/cairo.h>
-#include <cstdio>
-#include <wtf/Assertions.h>
-#include <wtf/MD5.h>
-#include <wtf/StringExtras.h>
-
-namespace WTR {
-
-void computeMD5HashStringForCairoSurface(cairo_surface_t* surface, char hashString[33])
-{
-    ASSERT(cairo_image_surface_get_format(surface) == CAIRO_FORMAT_ARGB32); // ImageDiff assumes 32 bit RGBA, we must as well.
-
-    size_t pixelsHigh = cairo_image_surface_get_height(surface);
-    size_t pixelsWide = cairo_image_surface_get_width(surface);
-    size_t bytesPerRow = cairo_image_surface_get_stride(surface);
-
-    MD5 md5Context;
-    unsigned char* bitmapData = static_cast<unsigned char*>(cairo_image_surface_get_data(surface));
-    for (size_t row = 0; row < pixelsHigh; ++row) {
-        md5Context.addBytes(bitmapData, 4 * pixelsWide);
-        bitmapData += bytesPerRow;
-    }
-    Vector<uint8_t, 16> hash;
-    md5Context.checksum(hash);
-
-    snprintf(hashString, 33, "%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",
-        hash[0], hash[1], hash[2], hash[3], hash[4], hash[5], hash[6], hash[7],
-        hash[8], hash[9], hash[10], hash[11], hash[12], hash[13], hash[14], hash[15]);
-}
-
-static cairo_status_t writeFunction(void* closure, const unsigned char* data, unsigned length)
-{
-    Vector<unsigned char>* in = reinterpret_cast<Vector<unsigned char>*>(closure);
-    in->append(data, length);
-    return CAIRO_STATUS_SUCCESS;
-}
-
-static void dumpBitmap(cairo_surface_t* surface, const char* checksum)
-{
-    Vector<unsigned char> pixelData;
-    cairo_surface_write_to_png_stream(surface, writeFunction, &pixelData);
-    const size_t dataLength = pixelData.size();
-    const unsigned char* data = pixelData.data();
-
-    printPNG(data, dataLength, checksum);
-}
-
-static void paintRepaintRectOverlay(cairo_surface_t* surface, WKArrayRef repaintRects)
-{
-    cairo_t* context = cairo_create(surface);
-
-    cairo_push_group(context);
-
-    // Paint the gray mask over the original image.
-    cairo_set_source_rgba(context, 0, 0, 0, 0.66);
-    cairo_paint(context);
-
-    // Paint transparent rectangles over the mask to show the repainted regions.
-    cairo_set_source_rgba(context, 0, 0, 0, 0);
-    cairo_set_operator(context, CAIRO_OPERATOR_SOURCE);
-    size_t count = WKArrayGetSize(repaintRects);
-    for (size_t i = 0; i < count; ++i) {
-        WKRect rect = WKRectGetValue(static_cast<WKRectRef>(WKArrayGetItemAtIndex(repaintRects, i)));
-        cairo_rectangle(context, rect.origin.x, rect.origin.y, rect.size.width, rect.size.height);
-        cairo_fill(context);
-    }
-
-    cairo_pop_group_to_source(context);
-    cairo_paint(context);
-
-    cairo_destroy(context);
-}
-
-#if PLATFORM(EFL)
-void TestInvocation::forceRepaintDoneCallback(WKErrorRef, void *context)
-{
-    static_cast<TestInvocation*>(context)->m_gotRepaint = true;
-    TestController::shared().notifyDone();
-}
-#endif
-
-void TestInvocation::dumpPixelsAndCompareWithExpected(WKImageRef wkImage, WKArrayRef repaintRects)
-{
-#if USE(ACCELERATED_COMPOSITING) && PLATFORM(EFL)
-    UNUSED_PARAM(wkImage);
-
-    cairo_surface_t* surface;
-
-    WKPageRef page = TestController::shared().mainWebView()->page();
-    WKPageForceRepaint(page, this, &forceRepaintDoneCallback);
-
-    TestController::shared().runUntil(m_gotRepaint, TestController::ShortTimeout);
-
-    if (!m_gotRepaint) {
-        m_error = true;
-        m_errorMessage = "Timed out waiting for repaint\n";
-        m_webProcessIsUnresponsive = true;
-        return;
-    }
-
-    surface = WKImageCreateCairoSurface(TestController::shared().mainWebView()->windowSnapshotImage().get());
-#else
-    cairo_surface_t* surface = WKImageCreateCairoSurface(wkImage);
-#endif
-
-    if (repaintRects)
-        paintRepaintRectOverlay(surface, repaintRects);
-
-    char actualHash[33];
-    computeMD5HashStringForCairoSurface(surface, actualHash);
-    if (!compareActualHashToExpectedAndDumpResults(actualHash))
-        dumpBitmap(surface, actualHash);
-
-    cairo_surface_destroy(surface);
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/cg/TestInvocationCG.cpp b/Tools/WebKitTestRunner/cg/TestInvocationCG.cpp
deleted file mode 100644
index 99355f0..0000000
--- a/Tools/WebKitTestRunner/cg/TestInvocationCG.cpp
+++ /dev/null
@@ -1,182 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "TestInvocation.h"
-
-#include "PixelDumpSupport.h"
-#include "PlatformWebView.h"
-#include "TestController.h"
-#include <ImageIO/CGImageDestination.h>
-#include <WebKit2/WKImageCG.h>
-#include <wtf/MD5.h>
-#include <wtf/RetainPtr.h>
-#include <wtf/StringExtras.h>
-
-#if PLATFORM(MAC)
-#include <LaunchServices/UTCoreTypes.h>
-#endif
-
-#if PLATFORM(WIN)
-static const CFStringRef kUTTypePNG = CFSTR("public.png");
-#endif
-
-namespace WTR {
-
-enum FlipGraphicsContextOrNot {
-    DontFlipGraphicsContext,
-    FlipGraphicsContext
-};
-
-static CGContextRef createCGContextFromImage(WKImageRef wkImage, FlipGraphicsContextOrNot flip = DontFlipGraphicsContext)
-{
-    RetainPtr<CGImageRef> image(AdoptCF, WKImageCreateCGImage(wkImage));
-
-    size_t pixelsWide = CGImageGetWidth(image.get());
-    size_t pixelsHigh = CGImageGetHeight(image.get());
-    size_t rowBytes = (4 * pixelsWide + 63) & ~63;
-
-    // Creating this bitmap in the device color space should prevent any color conversion when the image of the web view is drawn into it.
-    RetainPtr<CGColorSpaceRef> colorSpace(AdoptCF, CGColorSpaceCreateDeviceRGB());
-    CGContextRef context = CGBitmapContextCreate(0, pixelsWide, pixelsHigh, 8, rowBytes, colorSpace.get(), kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host);
-    
-    if (flip == FlipGraphicsContext) {
-        CGContextSaveGState(context);
-        CGContextScaleCTM(context, 1, -1);
-        CGContextTranslateCTM(context, 0, -static_cast<CGFloat>(pixelsHigh));
-    }
-    
-    CGContextDrawImage(context, CGRectMake(0, 0, pixelsWide, pixelsHigh), image.get());
-    if (flip == FlipGraphicsContext)
-        CGContextRestoreGState(context);
-
-    return context;
-}
-
-void computeMD5HashStringForContext(CGContextRef bitmapContext, char hashString[33])
-{
-    ASSERT(CGBitmapContextGetBitsPerPixel(bitmapContext) == 32); // ImageDiff assumes 32 bit RGBA, we must as well.
-    size_t pixelsHigh = CGBitmapContextGetHeight(bitmapContext);
-    size_t pixelsWide = CGBitmapContextGetWidth(bitmapContext);
-    size_t bytesPerRow = CGBitmapContextGetBytesPerRow(bitmapContext);
-    
-    // We need to swap the bytes to ensure consistent hashes independently of endianness
-    MD5 md5;
-    unsigned char* bitmapData = static_cast<unsigned char*>(CGBitmapContextGetData(bitmapContext));
-#if PLATFORM(MAC)
-    if ((CGBitmapContextGetBitmapInfo(bitmapContext) & kCGBitmapByteOrderMask) == kCGBitmapByteOrder32Big) {
-        for (unsigned row = 0; row < pixelsHigh; row++) {
-            Vector<uint8_t> buffer(4 * pixelsWide);
-            for (unsigned column = 0; column < pixelsWide; column++)
-                buffer[column] = OSReadLittleInt32(bitmapData, 4 * column);
-            md5.addBytes(buffer);
-            bitmapData += bytesPerRow;
-        }
-    } else
-#endif
-    {
-        for (unsigned row = 0; row < pixelsHigh; row++) {
-            md5.addBytes(bitmapData, 4 * pixelsWide);
-            bitmapData += bytesPerRow;
-        }
-    }
-
-    Vector<uint8_t, 16> hash;
-    md5.checksum(hash);
-    
-    hashString[0] = '\0';
-    for (int i = 0; i < 16; i++)
-        snprintf(hashString, 33, "%s%02x", hashString, hash[i]);
-}
-
-static void dumpBitmap(CGContextRef bitmapContext, const char* checksum)
-{
-    RetainPtr<CGImageRef> image(AdoptCF, CGBitmapContextCreateImage(bitmapContext));
-    RetainPtr<CFMutableDataRef> imageData(AdoptCF, CFDataCreateMutable(0, 0));
-    RetainPtr<CGImageDestinationRef> imageDest(AdoptCF, CGImageDestinationCreateWithData(imageData.get(), kUTTypePNG, 1, 0));
-    CGImageDestinationAddImage(imageDest.get(), image.get(), 0);
-    CGImageDestinationFinalize(imageDest.get());
-
-    const unsigned char* data = CFDataGetBytePtr(imageData.get());
-    const size_t dataLength = CFDataGetLength(imageData.get());
-
-    printPNG(data, dataLength, checksum);
-}
-
-static void paintRepaintRectOverlay(CGContextRef context, WKImageRef image, WKArrayRef repaintRects)
-{
-    WKSize imageSize = WKImageGetSize(image);
-
-    CGContextSaveGState(context);
-
-    // Using a transparency layer is easier than futzing with clipping.
-    CGContextBeginTransparencyLayer(context, 0);
-    
-    // Flip the context.
-    CGContextScaleCTM(context, 1, -1);
-    CGContextTranslateCTM(context, 0, -imageSize.height);
-    
-    CGContextSetRGBFillColor(context, 0, 0, 0, static_cast<CGFloat>(0.66));
-    CGContextFillRect(context, CGRectMake(0, 0, imageSize.width, imageSize.height));
-
-    // Clear the repaint rects.
-    size_t count = WKArrayGetSize(repaintRects);
-    for (size_t i = 0; i < count; ++i) {
-        WKRect rect = WKRectGetValue(static_cast<WKRectRef>(WKArrayGetItemAtIndex(repaintRects, i)));
-        CGRect cgRect = CGRectMake(rect.origin.x, rect.origin.y, rect.size.width, rect.size.height);
-        CGContextClearRect(context, cgRect);
-    }
-    
-    CGContextEndTransparencyLayer(context);
-    CGContextRestoreGState(context);
-}
-
-void TestInvocation::dumpPixelsAndCompareWithExpected(WKImageRef image, WKArrayRef repaintRects)
-{
-    PlatformWebView* webView = TestController::shared().mainWebView();
-    WKRetainPtr<WKImageRef> windowSnapshot = webView->windowSnapshotImage();
-
-    // There is no way at this time to fake a window's scale factor, so we need to avoid the window
-    // snapshots for HiDPI tests.
-    if (WKPageGetBackingScaleFactor(webView->page()) != 1)
-        windowSnapshot = 0;
-
-    RetainPtr<CGContextRef> context;
-    if (windowSnapshot)
-        context.adoptCF(createCGContextFromImage(windowSnapshot.get(), DontFlipGraphicsContext));
-    else
-        context.adoptCF(createCGContextFromImage(image));
-
-    // A non-null repaintRects array means we're doing a repaint test.
-    if (repaintRects)
-        paintRepaintRectOverlay(context.get(), image, repaintRects);
-
-    char actualHash[33];
-    computeMD5HashStringForContext(context.get(), actualHash);
-    if (!compareActualHashToExpectedAndDumpResults(actualHash))
-        dumpBitmap(context.get(), actualHash);
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/config.h b/Tools/WebKitTestRunner/config.h
deleted file mode 100644
index c912693..0000000
--- a/Tools/WebKitTestRunner/config.h
+++ /dev/null
@@ -1,62 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
- * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- 
-#ifndef WebKitTestRunner_config_h
-#define WebKitTestRunner_config_h
-
-#if defined (BUILDING_WITH_CMAKE)
-#include "cmakeconfig.h"
-#endif
-
-#include <wtf/Platform.h>
-#include <wtf/ExportMacros.h>
-#if USE(JSC)
-#include <runtime/JSExportMacros.h>
-#endif
-
-#include <WebKit2/WebKit2_C.h>
-
-#if PLATFORM(WIN)
-#define WTF_USE_CF 1 
-#if defined(WIN_CAIRO)
-#define WTF_USE_CAIRO 1
-#define WTF_USE_CURL 1
-#else
-#define WTF_USE_CG 1
-#define WTF_USE_CFNETWORK 1
-#endif
-#endif
-
-#if OS(WINDOWS)
-/* If we don't define these, they get defined in windef.h. */
-/* We want to use std::min and std::max. */
-#ifndef max
-#define max max
-#endif
-#ifndef min
-#define min min
-#endif
-#endif
-
-#endif
diff --git a/Tools/WebKitTestRunner/efl/EventSenderProxyEfl.cpp b/Tools/WebKitTestRunner/efl/EventSenderProxyEfl.cpp
deleted file mode 100644
index 424974d..0000000
--- a/Tools/WebKitTestRunner/efl/EventSenderProxyEfl.cpp
+++ /dev/null
@@ -1,561 +0,0 @@
-/*
- * Copyright (C) 2007, 2008 Apple Inc. All rights reserved.
- * Copyright (C) 2009 Zan Dobersek <zandobersek@gmail.com>
- * Copyright (C) 2009 Holger Hans Peter Freyther
- * Copyright (C) 2010 Igalia S.L.
- * Copyright (C) 2011 ProFUSION Embedded Systems
- * Copyright (C) 2012 Samsung Electronics
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "EventSenderProxy.h"
-
-#include "NotImplemented.h"
-#include "PlatformWebView.h"
-#include "TestController.h"
-
-#include <Ecore.h>
-#include <Ecore_Evas.h>
-#include <unistd.h>
-#include <wtf/OwnArrayPtr.h>
-#include <wtf/PassOwnArrayPtr.h>
-#include <wtf/text/CString.h>
-#include <wtf/text/WTFString.h>
-
-namespace WTR {
-
-static const char* modifierNames[] = { "Shift", "Control", "Alt", "Meta" };
-
-enum WTREventType {
-    WTREventTypeNone = 0,
-    WTREventTypeMouseDown,
-    WTREventTypeMouseUp,
-    WTREventTypeMouseMove,
-    WTREventTypeMouseScrollBy,
-    WTREventTypeLeapForward
-};
-
-enum EvasMouseButton {
-    EvasMouseButtonNone = 0,
-    EvasMouseButtonLeft,
-    EvasMouseButtonMiddle,
-    EvasMouseButtonRight
-};
-
-// Key event location code defined in DOM Level 3.
-enum KeyLocationCode {
-    DOMKeyLocationStandard      = 0x00,
-    DOMKeyLocationLeft          = 0x01,
-    DOMKeyLocationRight         = 0x02,
-    DOMKeyLocationNumpad        = 0x03
-};
-
-struct WTREvent {
-    WTREventType eventType;
-    unsigned delay;
-    WKEventModifiers modifiers;
-    int button;
-    int horizontal;
-    int vertical;
-
-    WTREvent()
-        : eventType(WTREventTypeNone)
-        , delay(0)
-        , modifiers(0)
-        , button(-1)
-        , horizontal(-1)
-        , vertical(-1)
-    {
-    }
-
-    WTREvent(WTREventType eventType, unsigned delay, WKEventModifiers modifiers, int button)
-        : eventType(eventType)
-        , delay(delay)
-        , modifiers(modifiers)
-        , button(button)
-        , horizontal(-1)
-        , vertical(-1)
-    {
-    }
-};
-
-struct KeyEventInfo : public RefCounted<KeyEventInfo> {
-    KeyEventInfo(const CString& keyName, const CString& keyString)
-        : keyName(keyName)
-        , keyString(keyString)
-    {
-    }
-
-    const CString keyName;
-    const CString keyString;
-};
-
-static unsigned evasMouseButton(unsigned button)
-{
-    // The common case involves converting from a WKEventMouseButton (which
-    // starts at -1) to an EvasMouseButton (which a starts at 0). The special
-    // case for button 3 exists because of fast/events/mouse-click-events.html,
-    // which tests whether a 4th mouse button behaves as the middle one.
-    if (button <= kWKEventMouseButtonRightButton)
-        return button + 1;
-    if (button == kWKEventMouseButtonRightButton + 1)
-        return EvasMouseButtonMiddle;
-    return EvasMouseButtonNone;
-}
-
-static void setEvasModifiers(Evas* evas, WKEventModifiers wkModifiers)
-{
-    for (unsigned modifier = 0; modifier < (sizeof(modifierNames) / sizeof(char*)); ++modifier) {
-        if (wkModifiers & (1 << modifier))
-            evas_key_modifier_on(evas, modifierNames[modifier]);
-        else
-            evas_key_modifier_off(evas, modifierNames[modifier]);
-    }
-}
-
-static void dispatchMouseDownEvent(Evas* evas, unsigned button, WKEventModifiers wkModifiers, int clickCount)
-{
-    Evas_Button_Flags buttonFlags = EVAS_BUTTON_NONE;
-    if (clickCount == 3)
-        buttonFlags = EVAS_BUTTON_TRIPLE_CLICK;
-    else if (clickCount == 2)
-        buttonFlags = EVAS_BUTTON_DOUBLE_CLICK;
-
-    setEvasModifiers(evas, wkModifiers);
-    evas_event_feed_mouse_down(evas, button, buttonFlags, 0, 0);
-    setEvasModifiers(evas, 0);
-}
-
-static void dispatchMouseUpEvent(Evas* evas, unsigned button, WKEventModifiers wkModifiers)
-{
-    setEvasModifiers(evas, wkModifiers);
-    evas_event_feed_mouse_up(evas, button, EVAS_BUTTON_NONE, 0, 0);
-    setEvasModifiers(evas, 0);
-}
-
-static void dispatchMouseMoveEvent(Evas* evas, int x, int y)
-{
-    evas_event_feed_mouse_move(evas, x, y, 0, 0);
-}
-
-static void dispatchMouseScrollByEvent(Evas* evas, int horizontal, int vertical)
-{
-    if (horizontal)
-        evas_event_feed_mouse_wheel(evas, 1, horizontal, 0, 0);
-
-    if (vertical)
-        evas_event_feed_mouse_wheel(evas, 0, vertical, 0, 0);
-}
-
-static const PassRefPtr<KeyEventInfo> keyPadName(WKStringRef keyRef)
-{
-    if (WKStringIsEqualToUTF8CString(keyRef, "leftArrow"))
-        return adoptRef(new KeyEventInfo("KP_Left", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "rightArrow"))
-        return adoptRef(new KeyEventInfo("KP_Right", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "upArrow"))
-        return adoptRef(new KeyEventInfo("KP_Up", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "downArrow"))
-        return adoptRef(new KeyEventInfo("KP_Down", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "pageUp"))
-        return adoptRef(new KeyEventInfo("KP_Prior", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "pageDown"))
-        return adoptRef(new KeyEventInfo("KP_Next", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "home"))
-        return adoptRef(new KeyEventInfo("KP_Home", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "end"))
-        return adoptRef(new KeyEventInfo("KP_End", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "insert"))
-        return adoptRef(new KeyEventInfo("KP_Insert", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "delete"))
-        return adoptRef(new KeyEventInfo("KP_Delete", ""));
-
-    size_t bufferSize = WKStringGetMaximumUTF8CStringSize(keyRef);
-    OwnArrayPtr<char> buffer = adoptArrayPtr(new char[bufferSize]);
-    WKStringGetUTF8CString(keyRef, buffer.get(), bufferSize);
-    return adoptRef(new KeyEventInfo(buffer.get(), buffer.get()));
-}
-
-static const PassRefPtr<KeyEventInfo> keyName(WKStringRef keyRef)
-{
-    if (WKStringIsEqualToUTF8CString(keyRef, "leftArrow"))
-        return adoptRef(new KeyEventInfo("Left", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "rightArrow"))
-        return adoptRef(new KeyEventInfo("Right", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "upArrow"))
-        return adoptRef(new KeyEventInfo("Up", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "downArrow"))
-        return adoptRef(new KeyEventInfo("Down", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "pageUp"))
-        return adoptRef(new KeyEventInfo("Prior", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "pageDown"))
-        return adoptRef(new KeyEventInfo("Next", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "home"))
-        return adoptRef(new KeyEventInfo("Home", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "end"))
-        return adoptRef(new KeyEventInfo("End", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "insert"))
-        return adoptRef(new KeyEventInfo("Insert", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "delete"))
-        return adoptRef(new KeyEventInfo("Delete", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "printScreen"))
-        return adoptRef(new KeyEventInfo("Print", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "menu"))
-        return adoptRef(new KeyEventInfo("Menu", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "leftControl"))
-        return adoptRef(new KeyEventInfo("Control_L", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "rightControl"))
-        return adoptRef(new KeyEventInfo("Control_R", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "leftShift"))
-        return adoptRef(new KeyEventInfo("Shift_L", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "rightShift"))
-        return adoptRef(new KeyEventInfo("Shift_R", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "leftAlt"))
-        return adoptRef(new KeyEventInfo("Alt_L", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "rightAlt"))
-        return adoptRef(new KeyEventInfo("Alt_R", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "F1"))
-        return adoptRef(new KeyEventInfo("F1", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "F2"))
-        return adoptRef(new KeyEventInfo("F2", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "F3"))
-        return adoptRef(new KeyEventInfo("F3", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "F4"))
-        return adoptRef(new KeyEventInfo("F4", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "F5"))
-        return adoptRef(new KeyEventInfo("F5", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "F6"))
-        return adoptRef(new KeyEventInfo("F6", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "F7"))
-        return adoptRef(new KeyEventInfo("F7", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "F8"))
-        return adoptRef(new KeyEventInfo("F8", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "F9"))
-        return adoptRef(new KeyEventInfo("F9", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "F10"))
-        return adoptRef(new KeyEventInfo("F10", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "F11"))
-        return adoptRef(new KeyEventInfo("F11", ""));
-    if (WKStringIsEqualToUTF8CString(keyRef, "F12"))
-        return adoptRef(new KeyEventInfo("F12", ""));
-
-    size_t bufferSize = WKStringGetMaximumUTF8CStringSize(keyRef);
-    OwnArrayPtr<char> buffer = adoptArrayPtr(new char[bufferSize]);
-    WKStringGetUTF8CString(keyRef, buffer.get(), bufferSize);
-    char charCode = buffer.get()[0];
-
-    if (charCode == '\n' || charCode == '\r')
-        return adoptRef(new KeyEventInfo("Return", "\r"));
-    if (charCode == '\t')
-        return adoptRef(new KeyEventInfo("Tab", "\t"));
-    if (charCode == '\x8')
-        return adoptRef(new KeyEventInfo("BackSpace", "\x8"));
-    if (charCode == ' ')
-        return adoptRef(new KeyEventInfo("space", " "));
-
-    return adoptRef(new KeyEventInfo(buffer.get(), buffer.get()));
-}
-
-EventSenderProxy::EventSenderProxy(TestController* testController)
-    : m_testController(testController)
-    , m_time(0)
-    , m_leftMouseButtonDown(false)
-    , m_clickCount(0)
-    , m_clickTime(0)
-    , m_clickButton(kWKEventMouseButtonNoButton)
-    , m_mouseButton(kWKEventMouseButtonNoButton)
-#if ENABLE(TOUCH_EVENTS)
-    , m_touchPoints(0)
-#endif
-{
-}
-
-EventSenderProxy::~EventSenderProxy()
-{
-#if ENABLE(TOUCH_EVENTS)
-    clearTouchPoints();
-#endif
-}
-
-void EventSenderProxy::updateClickCountForButton(int button)
-{
-    if (m_time - m_clickTime < 1 && m_position == m_clickPosition && button == m_clickButton) {
-        ++m_clickCount;
-        m_clickTime = m_time;
-        return;
-    }
-
-    m_clickCount = 1;
-    m_clickTime = m_time;
-    m_clickPosition = m_position;
-    m_clickButton = button;
-}
-
-void EventSenderProxy::dispatchEvent(const WTREvent& event)
-{
-    Evas* evas = evas_object_evas_get(m_testController->mainWebView()->platformView());
-
-    if (event.eventType == WTREventTypeMouseDown)
-        dispatchMouseDownEvent(evas, event.button, event.modifiers, m_clickCount);
-    else if (event.eventType == WTREventTypeMouseUp)
-        dispatchMouseUpEvent(evas, event.button, event.modifiers);
-    else if (event.eventType == WTREventTypeMouseMove)
-        dispatchMouseMoveEvent(evas, static_cast<int>(m_position.x), static_cast<int>(m_position.y));
-    else if (event.eventType == WTREventTypeMouseScrollBy)
-        dispatchMouseScrollByEvent(evas, event.horizontal, event.vertical);
-}
-
-void EventSenderProxy::replaySavedEvents()
-{
-    while (!m_eventQueue.isEmpty()) {
-        WTREvent event = m_eventQueue.takeFirst();
-        if (event.delay)
-            usleep(event.delay * 1000);
-
-        dispatchEvent(event);
-    }
-}
-
-void EventSenderProxy::sendOrQueueEvent(const WTREvent& event)
-{
-    if (m_eventQueue.isEmpty() || !m_eventQueue.last().delay) {
-        dispatchEvent(event);
-        return;
-    }
-
-    m_eventQueue.append(event);
-    replaySavedEvents();
-}
-
-void EventSenderProxy::mouseDown(unsigned button, WKEventModifiers wkModifiers)
-{
-    if (m_mouseButton == button)
-        return;
-
-    m_mouseButton = button;
-    updateClickCountForButton(button);
-
-    sendOrQueueEvent(WTREvent(WTREventTypeMouseDown, 0, wkModifiers, evasMouseButton(button)));
-}
-
-void EventSenderProxy::mouseUp(unsigned button, WKEventModifiers wkModifiers)
-{
-    sendOrQueueEvent(WTREvent(WTREventTypeMouseUp, 0, wkModifiers, evasMouseButton(button)));
-
-    if (m_mouseButton == button)
-        m_mouseButton = kWKEventMouseButtonNoButton;
-
-    m_clickPosition = m_position;
-    m_clickTime = ecore_time_get();
-}
-
-void EventSenderProxy::mouseMoveTo(double x, double y)
-{
-    m_position.x = x;
-    m_position.y = y;
-
-    sendOrQueueEvent(WTREvent(WTREventTypeMouseMove, 0, 0, kWKEventMouseButtonNoButton));
-}
-
-void EventSenderProxy::mouseScrollBy(int horizontal, int vertical)
-{
-    WTREvent event(WTREventTypeMouseScrollBy, 0, 0, kWKEventMouseButtonNoButton);
-    // We need to invert scrolling values since in EFL negative z value means that
-    // canvas is scrolling down
-    event.horizontal = -horizontal;
-    event.vertical = -vertical;
-    sendOrQueueEvent(event);
-}
-
-void EventSenderProxy::continuousMouseScrollBy(int horizontal, int vertical, bool paged)
-{
-    notImplemented();
-}
-
-void EventSenderProxy::leapForward(int milliseconds)
-{
-    if (m_eventQueue.isEmpty())
-        m_eventQueue.append(WTREvent(WTREventTypeLeapForward, milliseconds, 0, kWKEventMouseButtonNoButton));
-
-    m_time += milliseconds / 1000.0;
-}
-
-void EventSenderProxy::keyDown(WKStringRef keyRef, WKEventModifiers wkModifiers, unsigned location)
-{
-    const RefPtr<KeyEventInfo> keyEventInfo = (location == DOMKeyLocationNumpad) ? keyPadName(keyRef) : keyName(keyRef);
-    if (!keyEventInfo)
-        return;
-
-    const char* keyName = keyEventInfo->keyName.data();
-    const char* keyString = keyEventInfo->keyString.data();
-
-    // Enforce 'Shift' modifier for caps.
-    if ((strlen(keyName) == 1) && (keyName[0] >= 'A' && keyName[0] <= 'Z'))
-        wkModifiers |= kWKEventModifiersShiftKey;
-
-    Evas* evas = evas_object_evas_get(m_testController->mainWebView()->platformView());
-
-    int eventIndex = 0;
-    // Mimic the emacs ctrl-o binding by inserting a paragraph
-    // separator and then putting the cursor back to its original
-    // position. Allows us to pass emacs-ctrl-o.html
-    if ((wkModifiers & kWKEventModifiersControlKey) && !strcmp(keyName, "o")) {
-        setEvasModifiers(evas, 0);
-        evas_event_feed_key_down(evas, "Return", "Return", "\r", 0, eventIndex++, 0);
-        evas_event_feed_key_up(evas, "Return", "Return", "\r", 0, eventIndex++, 0);
-        wkModifiers = 0;
-        keyName = "Left";
-        keyString = 0;
-    }
-
-    setEvasModifiers(evas, wkModifiers);
-    evas_event_feed_key_down(evas, keyName, keyName, keyString, 0, eventIndex++, 0);
-    evas_event_feed_key_up(evas, keyName, keyName, keyString, 0, eventIndex++, 0);
-    setEvasModifiers(evas, 0);
-}
-
-#if ENABLE(TOUCH_EVENTS)
-void EventSenderProxy::sendTouchEvent(Ewk_Touch_Event_Type eventType)
-{
-    ASSERT(m_touchPoints);
-
-    Evas_Object* ewkView = m_testController->mainWebView()->platformView();
-    ewk_view_feed_touch_event(ewkView, eventType, m_touchPoints, evas_key_modifier_get(evas_object_evas_get(ewkView)));
-
-    Eina_List* list;
-    Eina_List* listNext;
-    void* data;
-    EINA_LIST_FOREACH_SAFE(m_touchPoints, list, listNext, data) {
-         Ewk_Touch_Point* touchPoint = static_cast<Ewk_Touch_Point*>(data);
-         ASSERT(touchPoint);
-
-         if ((touchPoint->state == EVAS_TOUCH_POINT_UP) || (touchPoint->state == EVAS_TOUCH_POINT_CANCEL)) {
-             delete touchPoint;
-             m_touchPoints = eina_list_remove_list(m_touchPoints, list);
-         } else
-             touchPoint->state = EVAS_TOUCH_POINT_STILL;
-     }
-}
-
-void EventSenderProxy::addTouchPoint(int x, int y)
-{
-    int id = 0;
-    if (m_touchPoints) {
-        Eina_List* last = eina_list_last(m_touchPoints);
-        Ewk_Touch_Point* touchPoint = static_cast<Ewk_Touch_Point*>(eina_list_data_get(last));
-        ASSERT(touchPoint);
-
-        id = touchPoint->id + 1;
-    }
-
-    Ewk_Touch_Point* touchPoint = new Ewk_Touch_Point;
-    touchPoint->id = id;
-    touchPoint->x = x;
-    touchPoint->y = y;
-    touchPoint->state = EVAS_TOUCH_POINT_DOWN;
-
-    m_touchPoints = eina_list_append(m_touchPoints, touchPoint);
-}
-
-void EventSenderProxy::updateTouchPoint(int index, int x, int y)
-{
-    ASSERT(index >= 0 && index < eina_list_count(m_touchPoints));
-
-    Ewk_Touch_Point* touchPoint = static_cast<Ewk_Touch_Point*>(eina_list_nth(m_touchPoints, index));
-    ASSERT(touchPoint);
-
-    touchPoint->x = x;
-    touchPoint->y = y;
-    touchPoint->state = EVAS_TOUCH_POINT_MOVE;
-}
-
-void EventSenderProxy::setTouchModifier(WKEventModifiers modifier, bool enable)
-{
-    Evas_Object* ewkView = m_testController->mainWebView()->platformView();
-
-    for (unsigned index = 0; index < (sizeof(modifierNames) / sizeof(char*)); ++index) {
-        if (modifier & (1 << index)) {
-            if (enable)
-                evas_key_modifier_on(evas_object_evas_get(ewkView), modifierNames[index]);
-            else
-                evas_key_modifier_off(evas_object_evas_get(ewkView), modifierNames[index]);
-        }
-    }
-}
-
-void EventSenderProxy::touchStart()
-{
-    sendTouchEvent(EWK_TOUCH_START);
-}
-
-void EventSenderProxy::touchMove()
-{
-    sendTouchEvent(EWK_TOUCH_MOVE);
-}
-
-void EventSenderProxy::touchEnd()
-{
-    sendTouchEvent(EWK_TOUCH_END);
-}
-
-void EventSenderProxy::touchCancel()
-{
-    sendTouchEvent(EWK_TOUCH_CANCEL);
-}
-
-void EventSenderProxy::clearTouchPoints()
-{
-    void* data = 0;
-    EINA_LIST_FREE(m_touchPoints, data)
-        delete static_cast<Ewk_Touch_Point*>(data);
-}
-
-void EventSenderProxy::releaseTouchPoint(int index)
-{
-    ASSERT(index >= 0 && index < eina_list_count(m_touchPoints));
-
-    Ewk_Touch_Point* touchPoint = static_cast<Ewk_Touch_Point*>(eina_list_nth(m_touchPoints, index));
-    ASSERT(touchPoint);
-
-    touchPoint->state = EVAS_TOUCH_POINT_UP;
-}
-
-void EventSenderProxy::cancelTouchPoint(int index)
-{
-    ASSERT(index >= 0 && index < eina_list_count(m_touchPoints));
-
-    Ewk_Touch_Point* touchPoint = static_cast<Ewk_Touch_Point*>(eina_list_nth(m_touchPoints, index));
-    ASSERT(touchPoint);
-
-    touchPoint->state = EVAS_TOUCH_POINT_CANCEL;
-}
-
-void EventSenderProxy::setTouchPointRadius(int radiusX, int radiusY)
-{
-    notImplemented();
-}
-
-#endif
-
-}
diff --git a/Tools/WebKitTestRunner/efl/PlatformWebViewEfl.cpp b/Tools/WebKitTestRunner/efl/PlatformWebViewEfl.cpp
deleted file mode 100644
index bda1b08..0000000
--- a/Tools/WebKitTestRunner/efl/PlatformWebViewEfl.cpp
+++ /dev/null
@@ -1,151 +0,0 @@
-/*
- * Copyright (C) 2012 Samsung Electronics
- * Copyright (C) 2012 Intel Corporation. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this program; see the file COPYING.LIB.  If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-#include "config.h"
-#include "ewk_view_private.h"
-#include "PlatformWebView.h"
-
-#include "EWebKit2.h"
-#include "WebKit2/WKAPICast.h"
-#include <Ecore_Evas.h>
-#include <WebCore/RefPtrCairo.h>
-#include <WebKit2/WKImageCairo.h>
-#include <cairo.h>
-
-using namespace WebKit;
-
-namespace WTR {
-
-static Ecore_Evas* initEcoreEvas()
-{
-    Ecore_Evas* ecoreEvas = 0;
-#if defined(WTF_USE_ACCELERATED_COMPOSITING) && defined(HAVE_ECORE_X)
-    const char* engine = "opengl_x11";
-    ecoreEvas = ecore_evas_new(engine, 0, 0, 800, 600, 0);
-    // Graceful fallback to software rendering if evas_gl engine is not available.
-    if (!ecoreEvas)
-#endif
-    ecoreEvas = ecore_evas_new(0, 0, 0, 800, 600, 0);
-
-    if (!ecoreEvas)
-        return 0;
-
-    ecore_evas_title_set(ecoreEvas, "EFL WebKitTestRunner");
-    ecore_evas_show(ecoreEvas);
-
-    return ecoreEvas;
-}
-
-PlatformWebView::PlatformWebView(WKContextRef context, WKPageGroupRef pageGroup, WKDictionaryRef options)
-    : m_options(options)
-{
-    WKRetainPtr<WKStringRef> useFixedLayoutKey(AdoptWK, WKStringCreateWithUTF8CString("UseFixedLayout"));
-    m_usingFixedLayout = options ? WKBooleanGetValue(static_cast<WKBooleanRef>(WKDictionaryGetItemForKey(options, useFixedLayoutKey.get()))) : false;
-
-    m_window = initEcoreEvas();
-
-    m_view = EWKViewCreate(context, pageGroup, ecore_evas_get(m_window), /* smart */ 0);
-
-    WKPageSetUseFixedLayout(WKViewGetPage(EWKViewGetWKView(m_view)), m_usingFixedLayout);
-
-    if (m_usingFixedLayout)
-        resizeTo(800, 600);
-
-    ewk_view_theme_set(m_view, THEME_DIR"/default.edj");
-    m_windowIsKey = false;
-    evas_object_show(m_view);
-}
-
-PlatformWebView::~PlatformWebView()
-{
-    evas_object_del(m_view);
-
-    ecore_evas_free(m_window);
-}
-
-void PlatformWebView::resizeTo(unsigned width, unsigned height)
-{
-    evas_object_resize(m_view, width, height);
-}
-
-WKPageRef PlatformWebView::page()
-{
-    return WKViewGetPage(EWKViewGetWKView(m_view));
-}
-
-void PlatformWebView::focus()
-{
-    // In a few cases, an iframe might receive focus from JavaScript and Evas is not aware of it at all
-    // (WebCoreSupport::focusedFrameChanged() does not emit any notification). We then manually remove the
-    // focus from the view to make the call give focus to evas_object_focus_set(..., true) to be effectful.
-    if (WKPageGetFocusedFrame(page()) != WKPageGetMainFrame(page()))
-        evas_object_focus_set(m_view, false);
-    evas_object_focus_set(m_view, true);
-}
-
-WKRect PlatformWebView::windowFrame()
-{
-    int x, y, width, height;
-
-    ecore_evas_request_geometry_get(m_window, &x, &y, &width, &height);
-
-    return WKRectMake(x, y, width, height);
-}
-
-void PlatformWebView::setWindowFrame(WKRect frame)
-{
-    ecore_evas_move_resize(m_window, frame.origin.x, frame.origin.y, frame.size.width, frame.size.height);
-}
-
-void PlatformWebView::addChromeInputField()
-{
-}
-
-void PlatformWebView::removeChromeInputField()
-{
-}
-
-void PlatformWebView::makeWebViewFirstResponder()
-{
-}
-
-WKRetainPtr<WKImageRef> PlatformWebView::windowSnapshotImage()
-{
-    int width;
-    int height;
-    ecore_evas_geometry_get(m_window, 0, 0, &width, &height);
-    ASSERT(width > 0 && height > 0);
-
-    return adoptWK(WKViewCreateSnapshot(EWKViewGetWKView(m_view)));
-}
-
-bool PlatformWebView::viewSupportsOptions(WKDictionaryRef options) const
-{
-    WKRetainPtr<WKStringRef> useFixedLayoutKey(AdoptWK, WKStringCreateWithUTF8CString("UseFixedLayout"));
-
-    return m_usingFixedLayout == (options ? WKBooleanGetValue(static_cast<WKBooleanRef>(WKDictionaryGetItemForKey(options, useFixedLayoutKey.get()))) : false);
-}
-
-void PlatformWebView::didInitializeClients()
-{
-}
-
-} // namespace WTR
-
diff --git a/Tools/WebKitTestRunner/efl/TestControllerEfl.cpp b/Tools/WebKitTestRunner/efl/TestControllerEfl.cpp
deleted file mode 100644
index c69b3c9..0000000
--- a/Tools/WebKitTestRunner/efl/TestControllerEfl.cpp
+++ /dev/null
@@ -1,114 +0,0 @@
-/*
- * Copyright (C) 2012 Samsung Electronics
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this program; see the file COPYING.LIB.  If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-#include "config.h"
-#include "TestController.h"
-
-#include <Ecore.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <unistd.h>
-#include <wtf/Platform.h>
-#include <wtf/text/WTFString.h>
-
-namespace WTR {
-
-static Ecore_Timer* timer = 0;
-
-static Eina_Bool timerFired(void*)
-{
-    timer = 0;
-    ecore_main_loop_quit();
-    return ECORE_CALLBACK_CANCEL;
-}
-
-void TestController::notifyDone()
-{
-    if (!timer)
-        return;
-
-    ecore_timer_del(timer);
-    timer = 0;
-    ecore_main_loop_quit();
-}
-
-void TestController::platformInitialize()
-{
-    const char* isDebugging = getenv("WEB_PROCESS_CMD_PREFIX");
-    if (isDebugging && *isDebugging) {
-        m_useWaitToDumpWatchdogTimer = false;
-        m_forceNoTimeout = true;
-    }
-}
-
-void TestController::platformDestroy()
-{
-}
-
-void TestController::platformRunUntil(bool& condition, double timeout)
-{
-    if (timeout == m_noTimeout) {
-        // Never timeout if we are debugging or not meant to timeout.
-        while (!condition)
-            ecore_main_loop_iterate();
-
-        return;
-    }
-    timer = ecore_timer_loop_add(timeout, timerFired, 0);
-    ecore_main_loop_begin();
-}
-
-static const char* getEnvironmentVariableOrExit(const char* variableName)
-{
-    const char* value = getenv(variableName);
-    if (!value) {
-        fprintf(stderr, "%s environment variable not found\n", variableName);
-        exit(0);
-    }
-
-    return value;
-}
-
-void TestController::initializeInjectedBundlePath()
-{
-    const char* bundlePath = getEnvironmentVariableOrExit("TEST_RUNNER_INJECTED_BUNDLE_FILENAME");
-    m_injectedBundlePath.adopt(WKStringCreateWithUTF8CString(bundlePath));
-}
-
-void TestController::initializeTestPluginDirectory()
-{
-    const char* pluginPath = getEnvironmentVariableOrExit("TEST_RUNNER_PLUGIN_PATH");
-    m_testPluginDirectory.adopt(WKStringCreateWithUTF8CString(pluginPath));
-}
-
-void TestController::platformInitializeContext()
-{
-}
-
-void TestController::runModal(PlatformWebView*)
-{
-    // FIXME: Need to implement this to test showModalDialog.
-}
-
-const char* TestController::platformLibraryPathForTesting()
-{
-    return 0;
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/efl/main.cpp b/Tools/WebKitTestRunner/efl/main.cpp
deleted file mode 100644
index 6b50669..0000000
--- a/Tools/WebKitTestRunner/efl/main.cpp
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
- * Copyright (C) 2012 Samsung Electronics
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this program; see the file COPYING.LIB.  If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-#include "config.h"
-
-#include "EWebKit2.h"
-#include "TestController.h"
-#include <wtf/Assertions.h>
-#include <stdlib.h>
-
-#ifdef HAVE_ECORE_X
-#include <X11/Xlib.h>
-#include <X11/extensions/Xext.h>
-
-static int dummyExtensionErrorHandler(Display*, _Xconst char*, _Xconst char*)
-{
-    return 0;
-}
-#endif
-
-int main(int argc, char** argv)
-{
-    WTFInstallReportBacktraceOnCrashHook();
-
-#ifdef HAVE_ECORE_X
-    XSetExtensionErrorHandler(dummyExtensionErrorHandler);
-#endif
-
-    if (!ewk_init())
-        return 1;
-
-    {
-        // Test controller has own ptr containing WebView and WebView must be deleted
-        // before its evas object is deleted. Call of ewk_shutdown() leads to evas objects deletion.
-
-        WTR::TestController controller(argc, const_cast<const char**>(argv));
-    }
-
-    ewk_shutdown();
-
-    return 0;
-}
-
diff --git a/Tools/WebKitTestRunner/fonts/AHEM____.TTF b/Tools/WebKitTestRunner/fonts/AHEM____.TTF
deleted file mode 100644
index ac81cb0..0000000
--- a/Tools/WebKitTestRunner/fonts/AHEM____.TTF
+++ /dev/null
Binary files differ
diff --git a/Tools/WebKitTestRunner/fonts/ColorBits-A.png b/Tools/WebKitTestRunner/fonts/ColorBits-A.png
deleted file mode 100644
index 8b9319c..0000000
--- a/Tools/WebKitTestRunner/fonts/ColorBits-A.png
+++ /dev/null
Binary files differ
diff --git a/Tools/WebKitTestRunner/fonts/SampleFont.sfont b/Tools/WebKitTestRunner/fonts/SampleFont.sfont
deleted file mode 100644
index d50dfc4..0000000
--- a/Tools/WebKitTestRunner/fonts/SampleFont.sfont
+++ /dev/null
@@ -1,223 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<!DOCTYPE PosingFont SYSTEM "file://localhost/System/Library/DTDs/SplicedFont.dtd">
-
-<PosingFont name="HiraMaruMono-W4" version="1.0">
-	<Name type="1" string="Hiragino Maru Gothic Monospaced" language="en"/>
-	<Name type="2" string="W4" language="en"/>
-	<Name type="3" string="Composite Font Reference (Spliced Font) sample using Hiragino Maru Gothic W4 for Monospaced" language="en"/>
-	<Name type="4" string="Hiragino Maru Gothic Monospaced W4" language="en"/>
-	<FontMetrics
-		unitsPerEm="1000"
-		ascender="561.1"
-		descender="214.3"
-		lineGap="21.0"
-		italicAngle="0.0"
-		isFixedPitch="1"
-		vertTypoLineGap="4.2"
-		familyClass="1"
-	/>
-	<Components>
-		<ComponentDef name="HiraMaruPro-W4">
-			<Matrix
-				xx="1.0"
-				xy="0.0"
-				yx="0.0"
-				yy="1.0"
-				tx="0.0"
-				ty="0.0"
-			/>
-			<UnicodeCharSet
-				uset="[[\u0020-\u007E]|[\u00A0-\u00FC]|[\u02BB-\u0336]|[\u2010-\u2044]|[\u2212-\u223C]]"
-			/>
-			<cmapOverride>
-				<map charValue="u0020" charName="SPACE" glyphRefID="231"/>
-				<map charValue="u0021" charName="EXCLAMATION MARK" glyphRefID="232"/>
-				<map charValue="u0022" charName="QUOTATION MARK" glyphRefID="12087"/>
-				<map charValue="u0023" charName="NUMBER SIGN" glyphRefID="234"/>
-				<map charValue="u0024" charName="DOLLAR SIGN" glyphRefID="235"/>
-				<map charValue="u0025" charName="PERCENT SIGN" glyphRefID="236"/>
-				<map charValue="u0026" charName="AMPERSAND" glyphRefID="237"/>
-				<map charValue="u0027" charName="APOSTROPHE" glyphRefID="12086"/>
-				<map charValue="u0028" charName="LEFT PARENTHESIS" glyphRefID="239"/>
-				<map charValue="u0029" charName="RIGHT PARENTHESIS" glyphRefID="240"/>
-				<map charValue="u002A" charName="ASTERISK" glyphRefID="241"/>
-				<map charValue="u002B" charName="PLUS SIGN" glyphRefID="242"/>
-				<map charValue="u002C" charName="COMMA" glyphRefID="243"/>
-				<map charValue="u002D" charName="HYPHEN-MINUS" glyphRefID="244"/>
-				<map charValue="u002E" charName="FULL STOP" glyphRefID="245"/>
-				<map charValue="u002F" charName="SOLIDUS" glyphRefID="246"/>
-				<map charValue="u0030" charName="DIGIT ZERO" glyphRefID="247"/>
-				<map charValue="u0031" charName="DIGIT ONE" glyphRefID="248"/>
-				<map charValue="u0032" charName="DIGIT TWO" glyphRefID="249"/>
-				<map charValue="u0033" charName="DIGIT THREE" glyphRefID="250"/>
-				<map charValue="u0034" charName="DIGIT FOUR" glyphRefID="251"/>
-				<map charValue="u0035" charName="DIGIT FIVE" glyphRefID="252"/>
-				<map charValue="u0036" charName="DIGIT SIX" glyphRefID="253"/>
-				<map charValue="u0037" charName="DIGIT SEVEN" glyphRefID="254"/>
-				<map charValue="u0038" charName="DIGIT EIGHT" glyphRefID="255"/>
-				<map charValue="u0039" charName="DIGIT NINE" glyphRefID="256"/>
-				<map charValue="u003A" charName="COLON" glyphRefID="257"/>
-				<map charValue="u003B" charName="SEMICOLON" glyphRefID="258"/>
-				<map charValue="u003C" charName="LESS-THAN SIGN" glyphRefID="259"/>
-				<map charValue="u003D" charName="EQUALS SIGN" glyphRefID="260"/>
-				<map charValue="u003E" charName="GREATER-THAN SIGN" glyphRefID="261"/>
-				<map charValue="u003F" charName="QUESTION MARK" glyphRefID="262"/>
-				<map charValue="u0040" charName="COMMERCIAL AT" glyphRefID="263"/>
-				<map charValue="u0041" charName="LATIN CAPITAL LETTER A" glyphRefID="264"/>
-				<map charValue="u0042" charName="LATIN CAPITAL LETTER B" glyphRefID="265"/>
-				<map charValue="u0043" charName="LATIN CAPITAL LETTER C" glyphRefID="266"/>
-				<map charValue="u0044" charName="LATIN CAPITAL LETTER D" glyphRefID="267"/>
-				<map charValue="u0045" charName="LATIN CAPITAL LETTER E" glyphRefID="268"/>
-				<map charValue="u0046" charName="LATIN CAPITAL LETTER F" glyphRefID="269"/>
-				<map charValue="u0047" charName="LATIN CAPITAL LETTER G" glyphRefID="270"/>
-				<map charValue="u0048" charName="LATIN CAPITAL LETTER H" glyphRefID="271"/>
-				<map charValue="u0049" charName="LATIN CAPITAL LETTER I" glyphRefID="272"/>
-				<map charValue="u004A" charName="LATIN CAPITAL LETTER J" glyphRefID="273"/>
-				<map charValue="u004B" charName="LATIN CAPITAL LETTER K" glyphRefID="274"/>
-				<map charValue="u004C" charName="LATIN CAPITAL LETTER L" glyphRefID="275"/>
-				<map charValue="u004D" charName="LATIN CAPITAL LETTER M" glyphRefID="276"/>
-				<map charValue="u004E" charName="LATIN CAPITAL LETTER N" glyphRefID="277"/>
-				<map charValue="u004F" charName="LATIN CAPITAL LETTER O" glyphRefID="278"/>
-				<map charValue="u0050" charName="LATIN CAPITAL LETTER P" glyphRefID="279"/>
-				<map charValue="u0051" charName="LATIN CAPITAL LETTER Q" glyphRefID="280"/>
-				<map charValue="u0052" charName="LATIN CAPITAL LETTER R" glyphRefID="281"/>
-				<map charValue="u0053" charName="LATIN CAPITAL LETTER S" glyphRefID="282"/>
-				<map charValue="u0054" charName="LATIN CAPITAL LETTER T" glyphRefID="283"/>
-				<map charValue="u0055" charName="LATIN CAPITAL LETTER U" glyphRefID="284"/>
-				<map charValue="u0056" charName="LATIN CAPITAL LETTER V" glyphRefID="285"/>
-				<map charValue="u0057" charName="LATIN CAPITAL LETTER W" glyphRefID="286"/>
-				<map charValue="u0058" charName="LATIN CAPITAL LETTER X" glyphRefID="287"/>
-				<map charValue="u0059" charName="LATIN CAPITAL LETTER Y" glyphRefID="288"/>
-				<map charValue="u005A" charName="LATIN CAPITAL LETTER Z" glyphRefID="289"/>
-				<map charValue="u005B" charName="LEFT SQUARE BRACKET" glyphRefID="290"/>
-				<map charValue="u005C" charName="REVERSE SOLIDUS" glyphRefID="8719"/>
-				<map charValue="u005D" charName="RIGHT SQUARE BRACKET" glyphRefID="292"/>
-				<map charValue="u005E" charName="CIRCUMFLEX ACCENT" glyphRefID="293"/>
-				<map charValue="u005F" charName="LOW LINE" glyphRefID="294"/>
-				<map charValue="u0060" charName="GRAVE ACCENT" glyphRefID="390"/>
-				<map charValue="u0061" charName="LATIN SMALL LETTER A" glyphRefID="296"/>
-				<map charValue="u0062" charName="LATIN SMALL LETTER B" glyphRefID="297"/>
-				<map charValue="u0063" charName="LATIN SMALL LETTER C" glyphRefID="298"/>
-				<map charValue="u0064" charName="LATIN SMALL LETTER D" glyphRefID="299"/>
-				<map charValue="u0065" charName="LATIN SMALL LETTER E" glyphRefID="300"/>
-				<map charValue="u0066" charName="LATIN SMALL LETTER F" glyphRefID="301"/>
-				<map charValue="u0067" charName="LATIN SMALL LETTER G" glyphRefID="302"/>
-				<map charValue="u0068" charName="LATIN SMALL LETTER H" glyphRefID="303"/>
-				<map charValue="u0069" charName="LATIN SMALL LETTER I" glyphRefID="304"/>
-				<map charValue="u006A" charName="LATIN SMALL LETTER J" glyphRefID="305"/>
-				<map charValue="u006B" charName="LATIN SMALL LETTER K" glyphRefID="306"/>
-				<map charValue="u006C" charName="LATIN SMALL LETTER L" glyphRefID="307"/>
-				<map charValue="u006D" charName="LATIN SMALL LETTER M" glyphRefID="308"/>
-				<map charValue="u006E" charName="LATIN SMALL LETTER N" glyphRefID="309"/>
-				<map charValue="u006F" charName="LATIN SMALL LETTER O" glyphRefID="310"/>
-				<map charValue="u0070" charName="LATIN SMALL LETTER P" glyphRefID="311"/>
-				<map charValue="u0071" charName="LATIN SMALL LETTER Q" glyphRefID="312"/>
-				<map charValue="u0072" charName="LATIN SMALL LETTER R" glyphRefID="313"/>
-				<map charValue="u0073" charName="LATIN SMALL LETTER S" glyphRefID="314"/>
-				<map charValue="u0074" charName="LATIN SMALL LETTER T" glyphRefID="315"/>
-				<map charValue="u0075" charName="LATIN SMALL LETTER U" glyphRefID="316"/>
-				<map charValue="u0076" charName="LATIN SMALL LETTER V" glyphRefID="317"/>
-				<map charValue="u0077" charName="LATIN SMALL LETTER W" glyphRefID="318"/>
-				<map charValue="u0078" charName="LATIN SMALL LETTER X" glyphRefID="319"/>
-				<map charValue="u0079" charName="LATIN SMALL LETTER Y" glyphRefID="320"/>
-				<map charValue="u007A" charName="LATIN SMALL LETTER Z" glyphRefID="321"/>
-				<map charValue="u007B" charName="LEFT CURLY BRACKET" glyphRefID="322"/>
-				<map charValue="u007C" charName="VERTICAL LINE" glyphRefID="323"/>
-				<map charValue="u007D" charName="RIGHT CURLY BRACKET" glyphRefID="324"/>
-				<map charValue="u007E" charName="TILDE" glyphRefID="631"/>
-				<map charValue="u00A0" charName="NO-BREAK SPACE" glyphRefID="231"/>
-				<map charValue="u00A1" charName="INVERTED EXCLAMATION MARK" glyphRefID="612"/>
-				<map charValue="u00A2" charName="CENT SIGN" glyphRefID="608"/>
-				<map charValue="u00A3" charName="POUND SIGN" glyphRefID="609"/>
-				<map charValue="u00A5" charName="YEN SIGN" glyphRefID="291"/>
-				<map charValue="u00A6" charName="BROKEN BAR" glyphRefID="323"/>
-				<map charValue="u00A8" charName="DIAERESIS" glyphRefID="502"/>
-				<map charValue="u00AC" charName="NOT SIGN" glyphRefID="8718"/>
-				<map charValue="u00AD" charName="SOFT HYPHEN" glyphRefID="514"/>
-				<map charValue="u00AF" charName="MACRON" glyphRefID="325"/>
-				<map charValue="u00B4" charName="ACUTE ACCENT" glyphRefID="501"/>
-				<map charValue="u00B7" charName="MIDDLE DOT" glyphRefID="331"/>
-				<map charValue="u00BD" charName="VULGAR FRACTION ONE HALF" glyphRefID="614"/>
-				<map charValue="u00BF" charName="INVERTED QUESTION MARK" glyphRefID="613"/>
-				<map charValue="u00C4" charName="LATIN CAPITAL LETTER A WITH DIAERESIS" glyphRefID="599"/>
-				<map charValue="u00C7" charName="LATIN CAPITAL LETTER C WITH CEDILLA" glyphRefID="605"/>
-				<map charValue="u00D1" charName="LATIN CAPITAL LETTER N WITH TILDE" glyphRefID="606"/>
-				<map charValue="u00D6" charName="LATIN CAPITAL LETTER O WITH DIAERESIS" glyphRefID="615"/>
-				<map charValue="u00DC" charName="LATIN CAPITAL LETTER U WITH DIAERESIS" glyphRefID="616"/>
-				<map charValue="u00DF" charName="LATIN SMALL LETTER SHARP S" glyphRefID="603"/>
-				<map charValue="u00E0" charName="LATIN SMALL LETTER A WITH GRAVE" glyphRefID="627"/>
-				<map charValue="u00E1" charName="LATIN SMALL LETTER A WITH ACUTE" glyphRefID="630"/>
-				<map charValue="u00E2" charName="LATIN SMALL LETTER A WITH CIRCUMFLEX" glyphRefID="622"/>
-				<map charValue="u00E4" charName="LATIN SMALL LETTER A WITH DIAERESIS" glyphRefID="617"/>
-				<map charValue="u00E7" charName="LATIN SMALL LETTER C WITH CEDILLA" glyphRefID="604"/>
-				<map charValue="u00E8" charName="LATIN SMALL LETTER E WITH GRAVE" glyphRefID="628"/>
-				<map charValue="u00E9" charName="LATIN SMALL LETTER E WITH ACUTE" glyphRefID="601"/>
-				<map charValue="u00EA" charName="LATIN SMALL LETTER E WITH CIRCUMFLEX" glyphRefID="623"/>
-				<map charValue="u00EB" charName="LATIN SMALL LETTER E WITH DIAERESIS" glyphRefID="618"/>
-				<map charValue="u00ED" charName="LATIN SMALL LETTER I WITH ACUTE" glyphRefID="602"/>
-				<map charValue="u00EE" charName="LATIN SMALL LETTER I WITH CIRCUMFLEX" glyphRefID="624"/>
-				<map charValue="u00EF" charName="LATIN SMALL LETTER I WITH DIAERESIS" glyphRefID="619"/>
-				<map charValue="u00F1" charName="LATIN SMALL LETTER N WITH TILDE" glyphRefID="607"/>
-				<map charValue="u00F3" charName="LATIN SMALL LETTER O WITH ACUTE" glyphRefID="610"/>
-				<map charValue="u00F4" charName="LATIN SMALL LETTER O WITH CIRCUMFLEX" glyphRefID="625"/>
-				<map charValue="u00F6" charName="LATIN SMALL LETTER O WITH DIAERESIS" glyphRefID="620"/>
-				<map charValue="u00F9" charName="LATIN SMALL LETTER U WITH GRAVE" glyphRefID="600"/>
-				<map charValue="u00FA" charName="LATIN SMALL LETTER U WITH ACUTE" glyphRefID="611"/>
-				<map charValue="u00FB" charName="LATIN SMALL LETTER U WITH CIRCUMFLEX" glyphRefID="626"/>
-				<map charValue="u00FC" charName="LATIN SMALL LETTER U WITH DIAERESIS" glyphRefID="621"/>
-				<map charValue="u02BB" charName="MODIFIER LETTER TURNED COMMA" glyphRefID="295"/>
-				<map charValue="u02BC" charName="MODIFIER LETTER APOSTROPHE" glyphRefID="238"/>
-				<map charValue="u02DC" charName="SMALL TILDE" glyphRefID="631"/>
-				<map charValue="u0300" charName="COMBINING GRAVE ACCENT" glyphRefID="390"/>
-				<map charValue="u0301" charName="COMBINING ACUTE ACCENT" glyphRefID="501"/>
-				<map charValue="u0302" charName="COMBINING CIRCUMFLEX ACCENT" glyphRefID="293"/>
-				<map charValue="u0303" charName="COMBINING TILDE" glyphRefID="631"/>
-				<map charValue="u0304" charName="COMBINING MACRON" glyphRefID="325"/>
-				<map charValue="u0305" charName="COMBINING OVERLINE" glyphRefID="325"/>
-				<map charValue="u0308" charName="COMBINING DIAERESIS" glyphRefID="502"/>
-				<map charValue="u0332" charName="COMBINING LOW LINE" glyphRefID="294"/>
-				<map charValue="u0336" charName="COMBINING LONG STROKE OVERLAY" glyphRefID="514"/>
-				<map charValue="u2010" charName="HYPHEN" glyphRefID="244"/>
-				<map charValue="u2011" charName="NON-BREAKING HYPHEN" glyphRefID="244"/>
-				<map charValue="u2012" charName="FIGURE DASH" glyphRefID="244"/>
-				<map charValue="u2013" charName="EN DASH" glyphRefID="514"/>
-				<map charValue="u2014" charName="EM DASH" glyphRefID="514"/>
-				<map charValue="u2018" charName="LEFT SINGLE QUOTATION MARK" glyphRefID="295"/>
-				<map charValue="u2019" charName="RIGHT SINGLE QUOTATION MARK" glyphRefID="238"/>
-				<map charValue="u201C" charName="LEFT DOUBLE QUOTATION MARK" glyphRefID="503"/>
-				<map charValue="u201D" charName="RIGHT DOUBLE QUOTATION MARK" glyphRefID="233"/>
-				<map charValue="u2039" charName="SINGLE LEFT-POINTING ANGLE QUOTATION MARK" glyphRefID="259"/>
-				<map charValue="u203A" charName="SINGLE RIGHT-POINTING ANGLE QUOTATION MARK" glyphRefID="261"/>
-				<map charValue="u203E" charName="OVERLINE" glyphRefID="325"/>
-				<map charValue="u2044" charName="FRACTION SLASH" glyphRefID="246"/>
-				<map charValue="u2212" charName="MINUS SIGN" glyphRefID="514"/>
-				<map charValue="u2219" charName="BULETTE OPERATOR" glyphRefID="331"/>
-				<map charValue="u223C" charName="TILDE OPERATOR" glyphRefID="631"/>
-			</cmapOverride>
-		</ComponentDef>
-		<ComponentDef name="HiraMaruPro-W4">
-			<Matrix
-				xx="1.0"
-				xy="0.0"
-				yx="0.0"
-				yy="1.0"
-				tx="0.0"
-				ty="0.0"
-			/>
-			<Tracking trackingValue="1.0"/>
-			<ToUnicode fromEncoding="CID Japen1">
-				<mapChar fromCharValue="0x20" toCharValue="u20"/>
-				<mapChar fromCharValue="0x30" toCharValue="u30"/>
-				<mapChar fromCharValue="0x31" toCharValue="u31"/>
-				<mapChar fromCharValue="0x32" toCharValue="u32"/>
-				<mapChar fromCharValue="0x33" toCharValue="u33"/>
-				<mapChar fromCharValue="0x34" toCharValue="u34"/>
-				<mapChar fromCharValue="0x35" toCharValue="u35"/>
-				<mapChar fromCharValue="0x36" toCharValue="u36"/>
-				<mapChar fromCharValue="0x37" toCharValue="u37"/>
-				<mapChar fromCharValue="0x38" toCharValue="u38"/>
-				<mapChar fromCharValue="0x39" toCharValue="u39"/>
-			</ToUnicode>
-		</ComponentDef>
-	</Components>					
-</PosingFont>
diff --git a/Tools/WebKitTestRunner/fonts/WebKit Layout Tests 2.ttf b/Tools/WebKitTestRunner/fonts/WebKit Layout Tests 2.ttf
deleted file mode 100644
index e732fbc..0000000
--- a/Tools/WebKitTestRunner/fonts/WebKit Layout Tests 2.ttf
+++ /dev/null
Binary files differ
diff --git a/Tools/WebKitTestRunner/fonts/WebKit Layout Tests.ttf b/Tools/WebKitTestRunner/fonts/WebKit Layout Tests.ttf
deleted file mode 100644
index f9f997e..0000000
--- a/Tools/WebKitTestRunner/fonts/WebKit Layout Tests.ttf
+++ /dev/null
Binary files differ
diff --git a/Tools/WebKitTestRunner/fonts/WebKitWeightWatcher100.ttf b/Tools/WebKitTestRunner/fonts/WebKitWeightWatcher100.ttf
deleted file mode 100644
index 22b00de..0000000
--- a/Tools/WebKitTestRunner/fonts/WebKitWeightWatcher100.ttf
+++ /dev/null
Binary files differ
diff --git a/Tools/WebKitTestRunner/fonts/WebKitWeightWatcher200.ttf b/Tools/WebKitTestRunner/fonts/WebKitWeightWatcher200.ttf
deleted file mode 100644
index 1ccadba..0000000
--- a/Tools/WebKitTestRunner/fonts/WebKitWeightWatcher200.ttf
+++ /dev/null
Binary files differ
diff --git a/Tools/WebKitTestRunner/fonts/WebKitWeightWatcher300.ttf b/Tools/WebKitTestRunner/fonts/WebKitWeightWatcher300.ttf
deleted file mode 100644
index ab5563d..0000000
--- a/Tools/WebKitTestRunner/fonts/WebKitWeightWatcher300.ttf
+++ /dev/null
Binary files differ
diff --git a/Tools/WebKitTestRunner/fonts/WebKitWeightWatcher400.ttf b/Tools/WebKitTestRunner/fonts/WebKitWeightWatcher400.ttf
deleted file mode 100644
index 56d279e..0000000
--- a/Tools/WebKitTestRunner/fonts/WebKitWeightWatcher400.ttf
+++ /dev/null
Binary files differ
diff --git a/Tools/WebKitTestRunner/fonts/WebKitWeightWatcher500.ttf b/Tools/WebKitTestRunner/fonts/WebKitWeightWatcher500.ttf
deleted file mode 100644
index d827d7d..0000000
--- a/Tools/WebKitTestRunner/fonts/WebKitWeightWatcher500.ttf
+++ /dev/null
Binary files differ
diff --git a/Tools/WebKitTestRunner/fonts/WebKitWeightWatcher600.ttf b/Tools/WebKitTestRunner/fonts/WebKitWeightWatcher600.ttf
deleted file mode 100644
index 9141596..0000000
--- a/Tools/WebKitTestRunner/fonts/WebKitWeightWatcher600.ttf
+++ /dev/null
Binary files differ
diff --git a/Tools/WebKitTestRunner/fonts/WebKitWeightWatcher700.ttf b/Tools/WebKitTestRunner/fonts/WebKitWeightWatcher700.ttf
deleted file mode 100644
index a2d0505..0000000
--- a/Tools/WebKitTestRunner/fonts/WebKitWeightWatcher700.ttf
+++ /dev/null
Binary files differ
diff --git a/Tools/WebKitTestRunner/fonts/WebKitWeightWatcher800.ttf b/Tools/WebKitTestRunner/fonts/WebKitWeightWatcher800.ttf
deleted file mode 100644
index d0f354b..0000000
--- a/Tools/WebKitTestRunner/fonts/WebKitWeightWatcher800.ttf
+++ /dev/null
Binary files differ
diff --git a/Tools/WebKitTestRunner/fonts/WebKitWeightWatcher900.ttf b/Tools/WebKitTestRunner/fonts/WebKitWeightWatcher900.ttf
deleted file mode 100644
index 6b895ca..0000000
--- a/Tools/WebKitTestRunner/fonts/WebKitWeightWatcher900.ttf
+++ /dev/null
Binary files differ
diff --git a/Tools/WebKitTestRunner/gtk/EventSenderProxyGtk.cpp b/Tools/WebKitTestRunner/gtk/EventSenderProxyGtk.cpp
deleted file mode 100644
index cdbaec5..0000000
--- a/Tools/WebKitTestRunner/gtk/EventSenderProxyGtk.cpp
+++ /dev/null
@@ -1,446 +0,0 @@
-/*
- * Copyright (C) 2007, 2008 Apple Inc. All rights reserved.
- * Copyright (C) 2009 Zan Dobersek <zandobersek@gmail.com>
- * Copyright (C) 2009 Holger Hans Peter Freyther
- * Copyright (C) 2010 Igalia S.L.
- * Copyright (c) 2010 Motorola Mobility, Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1.  Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- * 2.  Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in the
- *     documentation and/or other materials provided with the distribution.
- * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- *     its contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "EventSenderProxy.h"
-
-#include "PlatformWebView.h"
-#include "TestController.h"
-#include <wtf/OwnArrayPtr.h>
-#include <wtf/PassOwnArrayPtr.h>
-#include <gdk/gdkkeysyms.h>
-#include <gtk/gtk.h>
-#include <wtf/gobject/GOwnPtr.h>
-#include <wtf/text/WTFString.h>
-
-namespace WTR {
-
-// WebCore and layout tests assume this value
-static const float pixelsPerScrollTick = 40;
-
-// Key event location code defined in DOM Level 3.
-enum KeyLocationCode {
-    DOMKeyLocationStandard      = 0x00,
-    DOMKeyLocationLeft          = 0x01,
-    DOMKeyLocationRight         = 0x02,
-    DOMKeyLocationNumpad        = 0x03
-};
-
-
-struct WTREventQueueItem {
-    GdkEvent* event;
-    gulong delay;
-
-    WTREventQueueItem()
-        : event(0)
-        , delay(0)
-    {
-    }
-    WTREventQueueItem(GdkEvent* event, gulong delay)
-        : event(event)
-        , delay(delay)
-    {
-    }
-};
-
-EventSenderProxy::EventSenderProxy(TestController* testController)
-    : m_testController(testController)
-    , m_time(0)
-    , m_leftMouseButtonDown(false)
-    , m_clickCount(0)
-    , m_clickTime(0)
-    , m_clickButton(kWKEventMouseButtonNoButton)
-    , m_mouseButtonCurrentlyDown(0)
-{
-}
-
-EventSenderProxy::~EventSenderProxy()
-{
-}
-
-static guint getMouseButtonModifiers(int gdkButton)
-{
-    if (gdkButton == 1)
-        return GDK_BUTTON1_MASK;
-    if (gdkButton == 2)
-        return GDK_BUTTON2_MASK;
-    if (gdkButton == 3)
-        return GDK_BUTTON3_MASK;
-    return 0;
-}
-
-static unsigned eventSenderButtonToGDKButton(unsigned button)
-{
-    int mouseButton = 3;
-    if (button <= 2)
-        mouseButton = button + 1;
-    // fast/events/mouse-click-events expects the 4th button to be treated as the middle button.
-    else if (button == 3)
-        mouseButton = 2;
-
-    return mouseButton;
-}
-
-GdkEvent* EventSenderProxy::createMouseButtonEvent(GdkEventType eventType, unsigned button, WKEventModifiers modifiers)
-{
-    GdkEvent* mouseEvent = gdk_event_new(eventType);
-
-    mouseEvent->button.button = eventSenderButtonToGDKButton(button);
-    mouseEvent->button.x = m_position.x;
-    mouseEvent->button.y = m_position.y;
-    mouseEvent->button.window = gtk_widget_get_window(GTK_WIDGET(m_testController->mainWebView()->platformView()));
-    g_object_ref(mouseEvent->button.window);
-    gdk_event_set_device(mouseEvent, gdk_device_manager_get_client_pointer(gdk_display_get_device_manager(gdk_window_get_display(mouseEvent->button.window))));
-    mouseEvent->button.state = modifiers | getMouseButtonModifiers(mouseEvent->button.button);
-    mouseEvent->button.time = GDK_CURRENT_TIME;
-    mouseEvent->button.axes = 0;
-
-    int xRoot, yRoot;
-    gdk_window_get_root_coords(mouseEvent->button.window, m_position.x, m_position.y, &xRoot, &yRoot);
-    mouseEvent->button.x_root = xRoot;
-    mouseEvent->button.y_root = yRoot;
-
-    return mouseEvent;
-}
-
-void EventSenderProxy::updateClickCountForButton(int button)
-{
-    if (m_time - m_clickTime < 1 && m_position == m_clickPosition && button == m_clickButton) {
-        ++m_clickCount;
-        m_clickTime = m_time;
-        return;
-    }
-
-    m_clickCount = 1;
-    m_clickTime = m_time;
-    m_clickPosition = m_position;
-    m_clickButton = button;
-}
-
-static void dispatchEvent(GdkEvent* event)
-{
-    gtk_main_do_event(event);
-    gdk_event_free(event);
-}
-
-void EventSenderProxy::replaySavedEvents()
-{
-    while (!m_eventQueue.isEmpty()) {
-        WTREventQueueItem item = m_eventQueue.first();
-        if (item.delay)
-            g_usleep(item.delay * 1000);
-
-        dispatchEvent(item.event);
-        m_eventQueue.remove(0);
-    }
-}
-
-void EventSenderProxy::sendOrQueueEvent(GdkEvent* event)
-{
-    if (m_eventQueue.isEmpty() || !m_eventQueue.last().delay) {
-        dispatchEvent(event);
-        return;
-    }
-
-    m_eventQueue.last().event = event;
-    replaySavedEvents();
-}
-
-static guint webkitModifiersToGDKModifiers(WKEventModifiers wkModifiers)
-{
-    guint modifiers = 0;
-
-    if (wkModifiers & kWKEventModifiersControlKey)
-        modifiers |= GDK_CONTROL_MASK;
-    if (wkModifiers & kWKEventModifiersShiftKey)
-        modifiers |= GDK_SHIFT_MASK;
-    if (wkModifiers & kWKEventModifiersAltKey)
-        modifiers |= GDK_MOD1_MASK;
-    if (wkModifiers & kWKEventModifiersMetaKey)
-        modifiers |= GDK_META_MASK;
-
-    return modifiers;
-}
-
-int getGDKKeySymForKeyRef(WKStringRef keyRef, unsigned location, guint* modifiers)
-{
-    if (location == DOMKeyLocationNumpad) {
-        if (WKStringIsEqualToUTF8CString(keyRef, "leftArrow"))
-            return GDK_KEY_KP_Left;
-        if (WKStringIsEqualToUTF8CString(keyRef, "rightArror"))
-            return GDK_KEY_KP_Right;
-        if (WKStringIsEqualToUTF8CString(keyRef, "upArrow"))
-            return GDK_KEY_KP_Up;
-        if (WKStringIsEqualToUTF8CString(keyRef, "downArrow"))
-            return GDK_KEY_KP_Down;
-        if (WKStringIsEqualToUTF8CString(keyRef, "pageUp"))
-            return GDK_KEY_KP_Page_Up;
-        if (WKStringIsEqualToUTF8CString(keyRef, "pageDown"))
-            return GDK_KEY_KP_Page_Down;
-        if (WKStringIsEqualToUTF8CString(keyRef, "home"))
-            return GDK_KEY_KP_Home;
-        if (WKStringIsEqualToUTF8CString(keyRef, "end"))
-            return GDK_KEY_KP_End;
-        if (WKStringIsEqualToUTF8CString(keyRef, "insert"))
-            return GDK_KEY_KP_Insert;
-        if (WKStringIsEqualToUTF8CString(keyRef, "delete"))
-            return GDK_KEY_KP_Delete;
-
-        return GDK_KEY_VoidSymbol;
-    }
-
-    if (WKStringIsEqualToUTF8CString(keyRef, "leftArrow"))
-        return GDK_KEY_Left;
-    if (WKStringIsEqualToUTF8CString(keyRef, "rightArrow"))
-        return GDK_KEY_Right;
-    if (WKStringIsEqualToUTF8CString(keyRef, "upArrow"))
-        return GDK_KEY_Up;
-    if (WKStringIsEqualToUTF8CString(keyRef, "downArrow"))
-        return GDK_KEY_Down;
-    if (WKStringIsEqualToUTF8CString(keyRef, "pageUp"))
-        return GDK_KEY_Page_Up;
-    if (WKStringIsEqualToUTF8CString(keyRef, "pageDown"))
-        return GDK_KEY_Page_Down;
-    if (WKStringIsEqualToUTF8CString(keyRef, "home"))
-        return GDK_KEY_Home;
-    if (WKStringIsEqualToUTF8CString(keyRef, "end"))
-        return GDK_KEY_End;
-    if (WKStringIsEqualToUTF8CString(keyRef, "insert"))
-        return GDK_KEY_Insert;
-    if (WKStringIsEqualToUTF8CString(keyRef, "delete"))
-        return GDK_KEY_Delete;
-    if (WKStringIsEqualToUTF8CString(keyRef, "printScreen"))
-        return GDK_KEY_Print;
-    if (WKStringIsEqualToUTF8CString(keyRef, "menu"))
-        return GDK_KEY_Menu;
-    if (WKStringIsEqualToUTF8CString(keyRef, "F1"))
-        return GDK_KEY_F1;
-    if (WKStringIsEqualToUTF8CString(keyRef, "F2"))
-        return GDK_KEY_F2;
-    if (WKStringIsEqualToUTF8CString(keyRef, "F3"))
-        return GDK_KEY_F3;
-    if (WKStringIsEqualToUTF8CString(keyRef, "F4"))
-        return GDK_KEY_F4;
-    if (WKStringIsEqualToUTF8CString(keyRef, "F5"))
-        return GDK_KEY_F5;
-    if (WKStringIsEqualToUTF8CString(keyRef, "F6"))
-        return GDK_KEY_F6;
-    if (WKStringIsEqualToUTF8CString(keyRef, "F7"))
-        return GDK_KEY_F7;
-    if (WKStringIsEqualToUTF8CString(keyRef, "F8"))
-        return GDK_KEY_F8;
-    if (WKStringIsEqualToUTF8CString(keyRef, "F9"))
-        return GDK_KEY_F9;
-    if (WKStringIsEqualToUTF8CString(keyRef, "F10"))
-        return GDK_KEY_F10;
-    if (WKStringIsEqualToUTF8CString(keyRef, "F11"))
-        return GDK_KEY_F11;
-    if (WKStringIsEqualToUTF8CString(keyRef, "F12"))
-        return GDK_KEY_F12;
-
-    size_t bufferSize = WKStringGetMaximumUTF8CStringSize(keyRef);
-    OwnArrayPtr<char> buffer = adoptArrayPtr(new char[bufferSize]);
-    WKStringGetUTF8CString(keyRef, buffer.get(), bufferSize);
-    char charCode = buffer.get()[0];
-
-    if (charCode == '\n' || charCode == '\r')
-        return GDK_KEY_Return;
-    if (charCode == '\t')
-        return GDK_KEY_Tab;
-    if (charCode == '\x8')
-        return GDK_KEY_BackSpace;
-
-    if (WTF::isASCIIUpper(charCode))
-        *modifiers |= GDK_SHIFT_MASK;
-
-    return gdk_unicode_to_keyval(static_cast<guint32>(buffer.get()[0]));
-}
-
-void EventSenderProxy::keyDown(WKStringRef keyRef, WKEventModifiers wkModifiers, unsigned location)
-{
-    guint modifiers = webkitModifiersToGDKModifiers(wkModifiers);
-    int gdkKeySym = getGDKKeySymForKeyRef(keyRef, location, &modifiers);
-
-    GdkEvent* pressEvent = gdk_event_new(GDK_KEY_PRESS);
-    pressEvent->key.keyval = gdkKeySym;
-    pressEvent->key.state = modifiers;
-    pressEvent->key.window = gtk_widget_get_window(GTK_WIDGET(m_testController->mainWebView()->platformWindow()));
-    g_object_ref(pressEvent->key.window);
-    gdk_event_set_device(pressEvent, gdk_device_manager_get_client_pointer(gdk_display_get_device_manager(gdk_window_get_display(pressEvent->key.window))));
-
-    GOwnPtr<GdkKeymapKey> keys;
-    gint nKeys;
-    if (gdk_keymap_get_entries_for_keyval(gdk_keymap_get_default(), gdkKeySym, &keys.outPtr(), &nKeys))
-        pressEvent->key.hardware_keycode = keys.get()[0].keycode;
-
-    GdkEvent* releaseEvent = gdk_event_copy(pressEvent);
-    dispatchEvent(pressEvent);
-    releaseEvent->key.type = GDK_KEY_RELEASE;
-    dispatchEvent(releaseEvent);
-}
-
-void EventSenderProxy::mouseDown(unsigned button, WKEventModifiers wkModifiers)
-{
-    // If the same mouse button is already in the down position don't
-    // send another event as it may confuse Xvfb.
-    unsigned gdkButton = eventSenderButtonToGDKButton(button);
-    if (m_mouseButtonCurrentlyDown == gdkButton)
-        return;
-
-    m_mouseButtonCurrentlyDown = gdkButton;
-
-    // Normally GDK will send both GDK_BUTTON_PRESS and GDK_2BUTTON_PRESS for
-    // the second button press during double-clicks. WebKit GTK+ selectively
-    // ignores the first GDK_BUTTON_PRESS of that pair using gdk_event_peek.
-    // Since our events aren't ever going onto the GDK event queue, WebKit won't
-    // be able to filter out the first GDK_BUTTON_PRESS, so we just don't send
-    // it here. Eventually this code should probably figure out a way to get all
-    // appropriate events onto the event queue and this work-around should be
-    // removed.
-    updateClickCountForButton(button);
-
-    GdkEventType eventType;
-    if (m_clickCount == 2)
-        eventType = GDK_2BUTTON_PRESS;
-    else if (m_clickCount == 3)
-        eventType = GDK_3BUTTON_PRESS;
-    else
-        eventType = GDK_BUTTON_PRESS;
-
-    GdkEvent* event = createMouseButtonEvent(eventType, button, wkModifiers);
-    sendOrQueueEvent(event);
-}
-
-void EventSenderProxy::mouseUp(unsigned button, WKEventModifiers wkModifiers)
-{
-    m_clickButton = kWKEventMouseButtonNoButton;
-    GdkEvent* event = createMouseButtonEvent(GDK_BUTTON_RELEASE, button, wkModifiers);
-    sendOrQueueEvent(event);
-
-    if (m_mouseButtonCurrentlyDown == event->button.button)
-        m_mouseButtonCurrentlyDown = 0;
-    m_clickPosition = m_position;
-    m_clickTime = GDK_CURRENT_TIME;
-}
-
-void EventSenderProxy::mouseMoveTo(double x, double y)
-{
-    m_position.x = x;
-    m_position.y = y;
-
-    GdkEvent* event = gdk_event_new(GDK_MOTION_NOTIFY);
-    event->motion.x = m_position.x;
-    event->motion.y = m_position.y;
-
-    event->motion.time = GDK_CURRENT_TIME;
-    event->motion.window = gtk_widget_get_window(GTK_WIDGET(m_testController->mainWebView()->platformView()));
-    g_object_ref(event->motion.window);
-    gdk_event_set_device(event, gdk_device_manager_get_client_pointer(gdk_display_get_device_manager(gdk_window_get_display(event->motion.window))));
-    event->motion.state = 0 | getMouseButtonModifiers(m_mouseButtonCurrentlyDown);
-    event->motion.axes = 0;
-
-    int xRoot, yRoot;
-    gdk_window_get_root_coords(gtk_widget_get_window(GTK_WIDGET(m_testController->mainWebView()->platformView())), m_position.x, m_position.y , &xRoot, &yRoot);
-    event->motion.x_root = xRoot;
-    event->motion.y_root = yRoot;
-
-    sendOrQueueEvent(event);
-}
-
-void EventSenderProxy::mouseScrollBy(int horizontal, int vertical)
-{
-    GdkEvent* event = gdk_event_new(GDK_SCROLL);
-    event->scroll.x = m_position.x;
-    event->scroll.y = m_position.y;
-    event->scroll.time = GDK_CURRENT_TIME;
-    event->scroll.window = gtk_widget_get_window(GTK_WIDGET(m_testController->mainWebView()->platformView()));
-    g_object_ref(event->scroll.window);
-    gdk_event_set_device(event, gdk_device_manager_get_client_pointer(gdk_display_get_device_manager(gdk_window_get_display(event->scroll.window))));
-
-    // For more than one tick in a scroll, we need smooth scroll event
-#if GTK_CHECK_VERSION(3, 3, 18)
-    if ((horizontal && vertical) || horizontal > 1 || horizontal < -1 || vertical > 1 || vertical < -1) {
-        event->scroll.direction = GDK_SCROLL_SMOOTH;
-        event->scroll.delta_x = -horizontal;
-        event->scroll.delta_y = -vertical;
-
-        sendOrQueueEvent(event);
-        return;
-    }
-#endif
-
-    if (horizontal < 0)
-        event->scroll.direction = GDK_SCROLL_RIGHT;
-    else if (horizontal > 0)
-        event->scroll.direction = GDK_SCROLL_LEFT;
-    else if (vertical < 0)
-        event->scroll.direction = GDK_SCROLL_DOWN;
-    else if (vertical > 0)
-        event->scroll.direction = GDK_SCROLL_UP;
-    else
-        g_assert_not_reached();
-
-    sendOrQueueEvent(event);
-}
-
-void EventSenderProxy::continuousMouseScrollBy(int horizontal, int vertical, bool paged)
-{
-    // Gtk+ does not support paged scroll events.
-    g_return_if_fail(!paged);
-
-#if GTK_CHECK_VERSION(3, 3, 18)
-    GdkEvent* event = gdk_event_new(GDK_SCROLL);
-    event->scroll.x = m_position.x;
-    event->scroll.y = m_position.y;
-    event->scroll.time = GDK_CURRENT_TIME;
-    event->scroll.window = gtk_widget_get_window(GTK_WIDGET(m_testController->mainWebView()->platformView()));
-    g_object_ref(event->scroll.window);
-    gdk_event_set_device(event, gdk_device_manager_get_client_pointer(gdk_display_get_device_manager(gdk_window_get_display(event->scroll.window))));
-
-    event->scroll.direction = GDK_SCROLL_SMOOTH;
-    event->scroll.delta_x = -horizontal / pixelsPerScrollTick;
-    event->scroll.delta_y = -vertical / pixelsPerScrollTick;
-
-    sendOrQueueEvent(event);
-#endif
-}
-
-void EventSenderProxy::leapForward(int milliseconds)
-{
-    if (m_eventQueue.isEmpty())
-        m_eventQueue.append(WTREventQueueItem());
-
-    m_eventQueue.last().delay = milliseconds;
-    m_time += milliseconds / 1000.0;
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/gtk/PlatformWebViewGtk.cpp b/Tools/WebKitTestRunner/gtk/PlatformWebViewGtk.cpp
deleted file mode 100644
index 75052ff..0000000
--- a/Tools/WebKitTestRunner/gtk/PlatformWebViewGtk.cpp
+++ /dev/null
@@ -1,129 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- * Copyright (C) 2010 University of Szeged. All rights reserved.
- * Copyright (C) 2010 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformWebView.h"
-
-#include <WebKit2/WKViewPrivate.h>
-#include <gtk/gtk.h>
-
-namespace WTR {
-
-PlatformWebView::PlatformWebView(WKContextRef context, WKPageGroupRef pageGroup, WKDictionaryRef options)
-    : m_view(WKViewCreate(context, pageGroup))
-    , m_window(gtk_window_new(GTK_WINDOW_POPUP))
-    , m_windowIsKey(true)
-    , m_options(options)
-{
-    gtk_container_add(GTK_CONTAINER(m_window), GTK_WIDGET(m_view));
-
-    GtkAllocation size = { 0, 0, 800, 600 };
-    gtk_widget_size_allocate(m_window, &size);
-    gtk_window_resize(GTK_WINDOW(m_window), 800, 600);
-    gtk_widget_show_all(m_window);
-
-    while (gtk_events_pending())
-        gtk_main_iteration();
-}
-
-PlatformWebView::~PlatformWebView()
-{
-    gtk_widget_destroy(m_window);
-}
-
-void PlatformWebView::resizeTo(unsigned width, unsigned height)
-{
-    GtkAllocation size = { 0, 0, static_cast<int>(width), static_cast<int>(height) };
-    gtk_widget_size_allocate(m_window, &size);
-    gtk_window_resize(GTK_WINDOW(m_window), width, height);
-
-    while (gtk_events_pending())
-        gtk_main_iteration();
-}
-
-WKPageRef PlatformWebView::page()
-{
-    return WKViewGetPage(m_view);
-}
-
-void PlatformWebView::focus()
-{
-    WKViewSetFocus(m_view, true);
-    setWindowIsKey(true);
-}
-
-WKRect PlatformWebView::windowFrame()
-{
-    GtkAllocation geometry;
-#ifdef GTK_API_VERSION_2
-    gint depth;
-    gdk_window_get_geometry(gtk_widget_get_window(GTK_WIDGET(m_window)),
-                            &geometry.x, &geometry.y, &geometry.width, &geometry.height, &depth);
-#else
-    gdk_window_get_geometry(gtk_widget_get_window(GTK_WIDGET(m_window)),
-                            &geometry.x, &geometry.y, &geometry.width, &geometry.height);
-#endif
-
-    WKRect frame;
-    frame.origin.x = geometry.x;
-    frame.origin.y = geometry.y;
-    frame.size.width = geometry.width;
-    frame.size.height = geometry.height;
-    return frame;
-}
-
-void PlatformWebView::setWindowFrame(WKRect frame)
-{
-    gtk_window_move(GTK_WINDOW(m_window), frame.origin.x, frame.origin.y);
-    resizeTo(frame.size.width, frame.size.height);
-}
-
-void PlatformWebView::addChromeInputField()
-{
-}
-
-void PlatformWebView::removeChromeInputField()
-{
-}
-
-void PlatformWebView::makeWebViewFirstResponder()
-{
-}
-
-WKRetainPtr<WKImageRef> PlatformWebView::windowSnapshotImage()
-{
-    // FIXME: implement to capture pixels in the UI process,
-    // which may be necessary to capture things like 3D transforms.
-    return 0;
-}
-
-void PlatformWebView::didInitializeClients()
-{
-}
-
-} // namespace WTR
-
diff --git a/Tools/WebKitTestRunner/gtk/TestControllerGtk.cpp b/Tools/WebKitTestRunner/gtk/TestControllerGtk.cpp
deleted file mode 100644
index 4aeb65f..0000000
--- a/Tools/WebKitTestRunner/gtk/TestControllerGtk.cpp
+++ /dev/null
@@ -1,113 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- * Copyright (C) 2010 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "TestController.h"
-
-#include <gtk/gtk.h>
-#include <wtf/Platform.h>
-#include <wtf/gobject/GOwnPtr.h>
-#include <wtf/text/WTFString.h>
-
-namespace WTR {
-
-static guint gTimeoutSourceId = 0;
-
-static void cancelTimeout()
-{
-    if (!gTimeoutSourceId)
-        return;
-    g_source_remove(gTimeoutSourceId);
-    gTimeoutSourceId = 0;
-}
-
-void TestController::notifyDone()
-{
-    gtk_main_quit();
-    cancelTimeout();
-}
-
-void TestController::platformInitialize()
-{
-}
-
-void TestController::platformDestroy()
-{
-}
-
-static gboolean timeoutCallback(gpointer)
-{
-    fprintf(stderr, "FAIL: TestControllerRunLoop timed out.\n");
-    gtk_main_quit();
-    return FALSE;
-}
-
-void TestController::platformRunUntil(bool&, double timeout)
-{
-    cancelTimeout();
-    if (timeout != m_noTimeout)
-        gTimeoutSourceId = g_timeout_add(timeout * 1000, timeoutCallback, 0);
-    gtk_main();
-}
-
-static char* getEnvironmentVariableAsUTF8String(const char* variableName)
-{
-    const char* value = g_getenv(variableName);
-    if (!value) {
-        fprintf(stderr, "%s environment variable not found\n", variableName);
-        exit(0);
-    }
-    gsize bytesWritten;
-    return g_filename_to_utf8(value, -1, 0, &bytesWritten, 0);
-}
-
-void TestController::initializeInjectedBundlePath()
-{
-    GOwnPtr<char> utf8BundlePath(getEnvironmentVariableAsUTF8String("TEST_RUNNER_INJECTED_BUNDLE_FILENAME"));
-    m_injectedBundlePath.adopt(WKStringCreateWithUTF8CString(utf8BundlePath.get()));
-}
-
-void TestController::initializeTestPluginDirectory()
-{
-    GOwnPtr<char> testPluginPath(getEnvironmentVariableAsUTF8String("TEST_RUNNER_TEST_PLUGIN_PATH"));
-    m_testPluginDirectory.adopt(WKStringCreateWithUTF8CString(testPluginPath.get()));
-}
-
-void TestController::platformInitializeContext()
-{
-}
-
-void TestController::runModal(PlatformWebView*)
-{
-    // FIXME: Need to implement this to test showModalDialog.
-}
-
-const char* TestController::platformLibraryPathForTesting()
-{
-    return 0;
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/gtk/main.cpp b/Tools/WebKitTestRunner/gtk/main.cpp
deleted file mode 100644
index d53c624..0000000
--- a/Tools/WebKitTestRunner/gtk/main.cpp
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * Copyright (C) 2011 Igalia S.L.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include "TestController.h"
-#include <gtk/gtk.h>
-
-int main(int argc, char** argv)
-{
-    gtk_init(&argc, &argv);
-    // Prefer the not installed web and plugin processes.
-    WTR::TestController controller(argc, const_cast<const char**>(argv));
-    return 0;
-}
diff --git a/Tools/WebKitTestRunner/mac/EventSenderProxy.mm b/Tools/WebKitTestRunner/mac/EventSenderProxy.mm
deleted file mode 100644
index 87c1cf7..0000000
--- a/Tools/WebKitTestRunner/mac/EventSenderProxy.mm
+++ /dev/null
@@ -1,437 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- * Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "EventSenderProxy.h"
-
-#import "PlatformWebView.h"
-#import "StringFunctions.h"
-#import "TestController.h"
-#import <wtf/RetainPtr.h>
-#import <WebKit2/WKString.h>
-
-namespace WTR {
-
-enum MouseAction {
-    MouseDown,
-    MouseUp,
-    MouseDragged
-};
-
-// Match the DOM spec (sadly the DOM spec does not provide an enum)
-enum MouseButton {
-    LeftMouseButton = 0,
-    MiddleMouseButton = 1,
-    RightMouseButton = 2,
-    NoMouseButton = -1
-};
-
-struct KeyMappingEntry {
-    int macKeyCode;
-    int macNumpadKeyCode;
-    unichar character;
-    NSString* characterName;
-};
-
-static NSEventType eventTypeForMouseButtonAndAction(int button, MouseAction action)
-{
-    switch (button) {
-        case LeftMouseButton:
-            switch (action) {
-                case MouseDown:
-                    return NSLeftMouseDown;
-                case MouseUp:
-                    return NSLeftMouseUp;
-                case MouseDragged:
-                    return NSLeftMouseDragged;
-            }
-        case RightMouseButton:
-            switch (action) {
-                case MouseDown:
-                    return NSRightMouseDown;
-                case MouseUp:
-                    return NSRightMouseUp;
-                case MouseDragged:
-                    return NSRightMouseDragged;
-            }
-        default:
-            switch (action) {
-                case MouseDown:
-                    return NSOtherMouseDown;
-                case MouseUp:
-                    return NSOtherMouseUp;
-                case MouseDragged:
-                    return NSOtherMouseDragged;
-            }
-    }
-    assert(0);
-    return static_cast<NSEventType>(0);
-}
-
-static int buildModifierFlags(WKEventModifiers modifiers)
-{
-    int flags = 0;
-    if (modifiers & kWKEventModifiersControlKey)
-        flags |= NSControlKeyMask;
-    if (modifiers & kWKEventModifiersShiftKey)
-        flags |= NSShiftKeyMask;
-    if (modifiers & kWKEventModifiersAltKey)
-        flags |= NSAlternateKeyMask;
-    if (modifiers & kWKEventModifiersMetaKey)
-        flags |= NSCommandKeyMask;
-    return flags;
-}
-
-EventSenderProxy::EventSenderProxy(TestController* testController)
-    : m_testController(testController)
-    , m_time(0)
-    , m_position()
-    , m_leftMouseButtonDown(false)
-    , m_clickCount(0)
-    , m_clickTime(0)
-    , m_clickPosition()
-    , m_clickButton(kWKEventMouseButtonNoButton)
-    , eventNumber(0)
-{
-}
-
-EventSenderProxy::~EventSenderProxy()
-{
-}
-
-void EventSenderProxy::updateClickCountForButton(int button)
-{
-    if (m_time - m_clickTime < 1 && m_position == m_clickPosition && button == m_clickButton) {
-        ++m_clickCount;
-        m_clickTime = m_time;
-        return;
-    }
-
-    m_clickCount = 1;
-    m_clickTime = m_time;
-    m_clickPosition = m_position;
-    m_clickButton = button;
-}
-
-void EventSenderProxy::mouseDown(unsigned buttonNumber, WKEventModifiers modifiers)
-{
-    updateClickCountForButton(buttonNumber);
-
-    NSEventType eventType = eventTypeForMouseButtonAndAction(buttonNumber, MouseDown);
-    NSEvent *event = [NSEvent mouseEventWithType:eventType
-                                        location:NSMakePoint(m_position.x, m_position.y)
-                                   modifierFlags:buildModifierFlags(modifiers)
-                                       timestamp:currentEventTime()
-                                    windowNumber:[m_testController->mainWebView()->platformWindow() windowNumber]
-                                         context:[NSGraphicsContext currentContext] 
-                                     eventNumber:++eventNumber 
-                                      clickCount:m_clickCount 
-                                        pressure:0.0];
-
-    NSView *targetView = [m_testController->mainWebView()->platformView() hitTest:[event locationInWindow]];
-    if (targetView) {
-        [targetView mouseDown:event];
-        if (buttonNumber == LeftMouseButton)
-            m_leftMouseButtonDown = true;
-    }
-}
-
-void EventSenderProxy::mouseUp(unsigned buttonNumber, WKEventModifiers modifiers)
-{
-    NSEventType eventType = eventTypeForMouseButtonAndAction(buttonNumber, MouseUp);
-    NSEvent *event = [NSEvent mouseEventWithType:eventType
-                                        location:NSMakePoint(m_position.x, m_position.y)
-                                   modifierFlags:buildModifierFlags(modifiers)
-                                       timestamp:currentEventTime()
-                                    windowNumber:[m_testController->mainWebView()->platformWindow() windowNumber]
-                                         context:[NSGraphicsContext currentContext] 
-                                     eventNumber:++eventNumber 
-                                      clickCount:m_clickCount 
-                                        pressure:0.0];
-
-    NSView *targetView = [m_testController->mainWebView()->platformView() hitTest:[event locationInWindow]];
-    targetView = targetView ? targetView : m_testController->mainWebView()->platformView();
-    assert(targetView);
-    [targetView mouseUp:event];
-    if (buttonNumber == LeftMouseButton)
-        m_leftMouseButtonDown = false;
-    m_clickTime = [event timestamp];
-    m_clickPosition = m_position;
-}
-
-void EventSenderProxy::mouseMoveTo(double x, double y)
-{
-    NSView *view = m_testController->mainWebView()->platformView();
-    NSPoint position = [view convertPoint:NSMakePoint(x, y) toView:nil];
-    m_position.x = position.x;
-    m_position.y = position.y;
-    NSEvent *event = [NSEvent mouseEventWithType:(m_leftMouseButtonDown ? NSLeftMouseDragged : NSMouseMoved)
-                                        location:position
-                                   modifierFlags:0 
-                                       timestamp:currentEventTime()
-                                    windowNumber:[[view window] windowNumber] 
-                                         context:[NSGraphicsContext currentContext] 
-                                     eventNumber:++eventNumber 
-                                      clickCount:(m_leftMouseButtonDown ? m_clickCount : 0) 
-                                        pressure:0.0];
-
-    NSView *targetView = [m_testController->mainWebView()->platformView() hitTest:[event locationInWindow]];
-    if (targetView)
-        [targetView mouseMoved:event];
-}
-
-void EventSenderProxy::leapForward(int milliseconds)
-{
-    m_time += milliseconds / 1000.0;
-}
-
-void EventSenderProxy::keyDown(WKStringRef key, WKEventModifiers modifiers, unsigned keyLocation)
-{
-    NSString* character = [NSString stringWithCString:toSTD(key).c_str() 
-                                   encoding:[NSString defaultCStringEncoding]];
-
-    NSString *eventCharacter = character;
-    unsigned short keyCode = 0;
-    if ([character isEqualToString:@"leftArrow"]) {
-        const unichar ch = NSLeftArrowFunctionKey;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x7B;
-    } else if ([character isEqualToString:@"rightArrow"]) {
-        const unichar ch = NSRightArrowFunctionKey;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x7C;
-    } else if ([character isEqualToString:@"upArrow"]) {
-        const unichar ch = NSUpArrowFunctionKey;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x7E;
-    } else if ([character isEqualToString:@"downArrow"]) {
-        const unichar ch = NSDownArrowFunctionKey;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x7D;
-    } else if ([character isEqualToString:@"pageUp"]) {
-        const unichar ch = NSPageUpFunctionKey;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x74;
-    } else if ([character isEqualToString:@"pageDown"]) {
-        const unichar ch = NSPageDownFunctionKey;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x79;
-    } else if ([character isEqualToString:@"home"]) {
-        const unichar ch = NSHomeFunctionKey;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x73;
-    } else if ([character isEqualToString:@"end"]) {
-        const unichar ch = NSEndFunctionKey;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x77;
-    } else if ([character isEqualToString:@"insert"]) {
-        const unichar ch = NSInsertFunctionKey;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x72;
-    } else if ([character isEqualToString:@"delete"]) {
-        const unichar ch = NSDeleteFunctionKey;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x75;
-    } else if ([character isEqualToString:@"printScreen"]) {
-        const unichar ch = NSPrintScreenFunctionKey;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x0; // There is no known virtual key code for PrintScreen.
-    } else if ([character isEqualToString:@"cyrillicSmallLetterA"]) {
-        const unichar ch = 0x0430;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x3; // Shares key with "F" on Russian layout.
-    } else if ([character isEqualToString:@"leftControl"]) {
-        const unichar ch = 0xFFE3;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x3B;
-    } else if ([character isEqualToString:@"leftShift"]) {
-        const unichar ch = 0xFFE1;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x38;
-    } else if ([character isEqualToString:@"leftAlt"]) {
-        const unichar ch = 0xFFE7;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x3A;
-    } else if ([character isEqualToString:@"rightControl"]) {
-        const unichar ch = 0xFFE4;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x3E;
-    } else if ([character isEqualToString:@"rightShift"]) {
-        const unichar ch = 0xFFE2;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x3C;
-    } else if ([character isEqualToString:@"rightAlt"]) {
-        const unichar ch = 0xFFE8;
-        eventCharacter = [NSString stringWithCharacters:&ch length:1];
-        keyCode = 0x3D;
-    }
-
-    // Compare the input string with the function-key names defined by the DOM spec (i.e. "F1",...,"F24").
-    // If the input string is a function-key name, set its key code.
-    for (unsigned i = 1; i <= 24; i++) {
-        if ([character isEqualToString:[NSString stringWithFormat:@"F%u", i]]) {
-            const unichar ch = NSF1FunctionKey + (i - 1);
-            eventCharacter = [NSString stringWithCharacters:&ch length:1];
-            switch (i) {
-                case 1: keyCode = 0x7A; break;
-                case 2: keyCode = 0x78; break;
-                case 3: keyCode = 0x63; break;
-                case 4: keyCode = 0x76; break;
-                case 5: keyCode = 0x60; break;
-                case 6: keyCode = 0x61; break;
-                case 7: keyCode = 0x62; break;
-                case 8: keyCode = 0x64; break;
-                case 9: keyCode = 0x65; break;
-                case 10: keyCode = 0x6D; break;
-                case 11: keyCode = 0x67; break;
-                case 12: keyCode = 0x6F; break;
-                case 13: keyCode = 0x69; break;
-                case 14: keyCode = 0x6B; break;
-                case 15: keyCode = 0x71; break;
-                case 16: keyCode = 0x6A; break;
-                case 17: keyCode = 0x40; break;
-                case 18: keyCode = 0x4F; break;
-                case 19: keyCode = 0x50; break;
-                case 20: keyCode = 0x5A; break;
-            }
-        }
-    }
-
-    // FIXME: No keyCode is set for most keys.
-    if ([character isEqualToString:@"\t"])
-        keyCode = 0x30;
-    else if ([character isEqualToString:@" "])
-        keyCode = 0x31;
-    else if ([character isEqualToString:@"\r"])
-        keyCode = 0x24;
-    else if ([character isEqualToString:@"\n"])
-        keyCode = 0x4C;
-    else if ([character isEqualToString:@"\x8"])
-        keyCode = 0x33;
-    else if ([character isEqualToString:@"a"])
-        keyCode = 0x00;
-    else if ([character isEqualToString:@"b"])
-        keyCode = 0x0B;
-    else if ([character isEqualToString:@"d"])
-        keyCode = 0x02;
-    else if ([character isEqualToString:@"e"])
-        keyCode = 0x0E;
-
-    KeyMappingEntry table[] = {
-        {0x2F, 0x41, '.', nil},
-        {0,    0x43, '*', nil},
-        {0,    0x45, '+', nil},
-        {0,    0x47, NSClearLineFunctionKey, @"clear"},
-        {0x2C, 0x4B, '/', nil},
-        {0,    0x4C, 3, @"enter" },
-        {0x1B, 0x4E, '-', nil},
-        {0x18, 0x51, '=', nil},
-        {0x1D, 0x52, '0', nil},
-        {0x12, 0x53, '1', nil},
-        {0x13, 0x54, '2', nil},
-        {0x14, 0x55, '3', nil},
-        {0x15, 0x56, '4', nil},
-        {0x17, 0x57, '5', nil},
-        {0x16, 0x58, '6', nil},
-        {0x1A, 0x59, '7', nil},
-        {0x1C, 0x5B, '8', nil},
-        {0x19, 0x5C, '9', nil},
-    };
-    for (unsigned i = 0; i < WTF_ARRAY_LENGTH(table); ++i) {
-        NSString* currentCharacterString = [NSString stringWithCharacters:&table[i].character length:1];
-        if ([character isEqualToString:currentCharacterString] || [character isEqualToString:table[i].characterName]) {
-            if (keyLocation == 0x03 /*DOM_KEY_LOCATION_NUMPAD*/)
-                keyCode = table[i].macNumpadKeyCode;
-            else
-                keyCode = table[i].macKeyCode;
-            eventCharacter = currentCharacterString;
-            break;
-        }
-    }
-
-    NSString *charactersIgnoringModifiers = eventCharacter;
-
-    int modifierFlags = 0;
-
-    if ([character length] == 1 && [character characterAtIndex:0] >= 'A' && [character characterAtIndex:0] <= 'Z') {
-        modifierFlags |= NSShiftKeyMask;
-        charactersIgnoringModifiers = [character lowercaseString];
-    }
-
-    modifierFlags |= buildModifierFlags(modifiers);
-
-    if (keyLocation == 0x03 /*DOM_KEY_LOCATION_NUMPAD*/)
-        modifierFlags |= NSNumericPadKeyMask;
-
-    // FIXME: [[[mainFrame frameView] documentView] layout];
-
-    NSEvent *event = [NSEvent keyEventWithType:NSKeyDown
-                        location:NSMakePoint(5, 5)
-                        modifierFlags:modifierFlags
-                        timestamp:currentEventTime()
-                        windowNumber:[m_testController->mainWebView()->platformWindow() windowNumber]
-                        context:[NSGraphicsContext currentContext]
-                        characters:eventCharacter
-                        charactersIgnoringModifiers:charactersIgnoringModifiers
-                        isARepeat:NO
-                        keyCode:keyCode];
-
-    [[m_testController->mainWebView()->platformWindow() firstResponder] keyDown:event];
-
-    event = [NSEvent keyEventWithType:NSKeyUp
-                        location:NSMakePoint(5, 5)
-                        modifierFlags:modifierFlags
-                        timestamp:currentEventTime()
-                        windowNumber:[m_testController->mainWebView()->platformWindow() windowNumber]
-                        context:[NSGraphicsContext currentContext]
-                        characters:eventCharacter
-                        charactersIgnoringModifiers:charactersIgnoringModifiers
-                        isARepeat:NO
-                        keyCode:keyCode];
-
-    [[m_testController->mainWebView()->platformWindow() firstResponder] keyUp:event];
-}
-
-void EventSenderProxy::mouseScrollBy(int x, int y)
-{
-    RetainPtr<CGEventRef> cgScrollEvent(AdoptCF, CGEventCreateScrollWheelEvent(0, kCGScrollEventUnitLine, 2, y, x));
-
-    // CGEvent locations are in global display coordinates.
-    CGPoint lastGlobalMousePosition = CGPointMake(m_position.x, [[NSScreen mainScreen] frame].size.height - m_position.y);
-    CGEventSetLocation(cgScrollEvent.get(), lastGlobalMousePosition);
-
-    NSEvent *event = [NSEvent eventWithCGEvent:cgScrollEvent.get()];
-    if (NSView *targetView = [m_testController->mainWebView()->platformView() hitTest:[event locationInWindow]])
-        [targetView scrollWheel:event];
-}
-
-void EventSenderProxy::continuousMouseScrollBy(int x, int y, bool paged)
-{
-    // FIXME: Implement this.
-    return;
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/mac/PlatformWebViewMac.mm b/Tools/WebKitTestRunner/mac/PlatformWebViewMac.mm
deleted file mode 100644
index b55d32c..0000000
--- a/Tools/WebKitTestRunner/mac/PlatformWebViewMac.mm
+++ /dev/null
@@ -1,234 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformWebView.h"
-#include "TestController.h"
-
-#import <WebKit2/WKImageCG.h>
-#import <WebKit2/WKViewPrivate.h>
-#import <wtf/RetainPtr.h>
-
-@interface WebKitTestRunnerWindow : NSWindow {
-    WTR::PlatformWebView* _platformWebView;
-    NSPoint _fakeOrigin;
-}
-@property (nonatomic, assign) WTR::PlatformWebView* platformWebView;
-@end
-
-@interface TestRunnerWKView : WKView {
-    BOOL _useTiledDrawing;
-}
-
-- (id)initWithFrame:(NSRect)frame contextRef:(WKContextRef)context pageGroupRef:(WKPageGroupRef)pageGroup useTiledDrawing:(BOOL)useTiledDrawing;
-
-@property (nonatomic, assign) BOOL useTiledDrawing;
-@end
-
-@implementation TestRunnerWKView
-
-@synthesize useTiledDrawing = _useTiledDrawing;
-
-- (id)initWithFrame:(NSRect)frame contextRef:(WKContextRef)context pageGroupRef:(WKPageGroupRef)pageGroup useTiledDrawing:(BOOL)useTiledDrawing
-{
-    _useTiledDrawing = useTiledDrawing;
-    return [super initWithFrame:frame contextRef:context pageGroupRef:pageGroup];
-}
-
-- (BOOL)_shouldUseTiledDrawingArea
-{
-    return _useTiledDrawing;
-}
-
-@end
-
-@implementation WebKitTestRunnerWindow
-@synthesize platformWebView = _platformWebView;
-
-- (BOOL)isKeyWindow
-{
-    return _platformWebView ? _platformWebView->windowIsKey() : YES;
-}
-
-- (void)setFrameOrigin:(NSPoint)point
-{
-    _fakeOrigin = point;
-}
-
-- (void)setFrame:(NSRect)windowFrame display:(BOOL)displayViews animate:(BOOL)performAnimation
-{
-    NSRect currentFrame = [super frame];
-
-    _fakeOrigin = windowFrame.origin;
-
-    [super setFrame:NSMakeRect(currentFrame.origin.x, currentFrame.origin.y, windowFrame.size.width, windowFrame.size.height) display:displayViews animate:performAnimation];
-}
-
-- (void)setFrame:(NSRect)windowFrame display:(BOOL)displayViews
-{
-    NSRect currentFrame = [super frame];
-
-    _fakeOrigin = windowFrame.origin;
-
-    [super setFrame:NSMakeRect(currentFrame.origin.x, currentFrame.origin.y, windowFrame.size.width, windowFrame.size.height) display:displayViews];
-}
-
-- (NSRect)frameRespectingFakeOrigin
-{
-    NSRect currentFrame = [self frame];
-    return NSMakeRect(_fakeOrigin.x, _fakeOrigin.y, currentFrame.size.width, currentFrame.size.height);
-}
-
-- (CGFloat)backingScaleFactor
-{
-    return 1;
-}
-
-@end
-
-@interface NSWindow (Details)
-
-- (void)_setWindowResolution:(CGFloat)resolution displayIfChanged:(BOOL)displayIfChanged;
-
-@end
-
-namespace WTR {
-
-PlatformWebView::PlatformWebView(WKContextRef contextRef, WKPageGroupRef pageGroupRef, WKDictionaryRef options)
-    : m_windowIsKey(true)
-    , m_options(options)
-{
-    WKRetainPtr<WKStringRef> useTiledDrawingKey(AdoptWK, WKStringCreateWithUTF8CString("TiledDrawing"));
-    WKTypeRef useTiledDrawingValue = options ? WKDictionaryGetItemForKey(options, useTiledDrawingKey.get()) : NULL;
-    bool useTiledDrawing = useTiledDrawingValue && WKBooleanGetValue(static_cast<WKBooleanRef>(useTiledDrawingValue));
-
-    NSRect rect = NSMakeRect(0, 0, 800, 600);
-    m_view = [[TestRunnerWKView alloc] initWithFrame:rect contextRef:contextRef pageGroupRef:pageGroupRef useTiledDrawing:useTiledDrawing];
-    [m_view setWindowOcclusionDetectionEnabled:NO];
-
-    NSRect windowRect = NSOffsetRect(rect, -10000, [(NSScreen *)[[NSScreen screens] objectAtIndex:0] frame].size.height - rect.size.height + 10000);
-    m_window = [[WebKitTestRunnerWindow alloc] initWithContentRect:windowRect styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:YES];
-    m_window.platformWebView = this;
-    [m_window setColorSpace:[[NSScreen mainScreen] colorSpace]];
-    [m_window setCollectionBehavior:NSWindowCollectionBehaviorStationary];
-    [[m_window contentView] addSubview:m_view];
-    [m_window orderBack:nil];
-    [m_window setReleasedWhenClosed:NO];
-    [m_window _setWindowResolution:1 displayIfChanged:YES];
-}
-
-void PlatformWebView::resizeTo(unsigned width, unsigned height)
-{
-    [m_view setFrame:NSMakeRect(0, 0, width, height)];
-}
-
-PlatformWebView::~PlatformWebView()
-{
-    m_window.platformWebView = 0;
-    [m_window close];
-    [m_window release];
-    [m_view release];
-}
-
-WKPageRef PlatformWebView::page()
-{
-    return [m_view pageRef];
-}
-
-void PlatformWebView::focus()
-{
-    [m_window makeFirstResponder:m_view];
-    setWindowIsKey(true);
-}
-
-WKRect PlatformWebView::windowFrame()
-{
-    NSRect frame = [m_window frameRespectingFakeOrigin];
-
-    WKRect wkFrame;
-    wkFrame.origin.x = frame.origin.x;
-    wkFrame.origin.y = frame.origin.y;
-    wkFrame.size.width = frame.size.width;
-    wkFrame.size.height = frame.size.height;
-    return wkFrame;
-}
-
-void PlatformWebView::setWindowFrame(WKRect frame)
-{
-    [m_window setFrame:NSMakeRect(frame.origin.x, frame.origin.y, frame.size.width, frame.size.height) display:YES];
-}
-
-void PlatformWebView::didInitializeClients()
-{
-    // Set a temporary 1x1 window frame to force a WindowAndViewFramesChanged notification. <rdar://problem/13380145>
-    WKRect wkFrame = windowFrame();
-    [m_window setFrame:NSMakeRect(0, 0, 1, 1) display:YES];
-    setWindowFrame(wkFrame);
-}
-
-void PlatformWebView::addChromeInputField()
-{
-    NSTextField* textField = [[NSTextField alloc] initWithFrame:NSMakeRect(0, 0, 100, 20)];
-    textField.tag = 1;
-    [[m_window contentView] addSubview:textField];
-    [textField release];
-
-    [textField setNextKeyView:m_view];
-    [m_view setNextKeyView:textField];
-}
-
-void PlatformWebView::removeChromeInputField()
-{
-    NSView* textField = [[m_window contentView] viewWithTag:1];
-    if (textField) {
-        [textField removeFromSuperview];
-        makeWebViewFirstResponder();
-    }
-}
-
-void PlatformWebView::makeWebViewFirstResponder()
-{
-    [m_window makeFirstResponder:m_view];
-}
-
-WKRetainPtr<WKImageRef> PlatformWebView::windowSnapshotImage()
-{
-    [m_view display];
-    RetainPtr<CGImageRef> windowSnapshotImage(AdoptCF, CGWindowListCreateImage(CGRectNull, kCGWindowListOptionIncludingWindow, [m_window windowNumber], kCGWindowImageBoundsIgnoreFraming | kCGWindowImageShouldBeOpaque));
-
-    // windowSnapshotImage will be in GenericRGB, as we've set the main display's color space to GenericRGB.
-    return adoptWK(WKImageCreateFromCGImage(windowSnapshotImage.get(), 0));
-}
-
-bool PlatformWebView::viewSupportsOptions(WKDictionaryRef options) const
-{
-    WKRetainPtr<WKStringRef> useTiledDrawingKey(AdoptWK, WKStringCreateWithUTF8CString("TiledDrawing"));
-    WKTypeRef useTiledDrawingValue = WKDictionaryGetItemForKey(options, useTiledDrawingKey.get());
-    bool useTiledDrawing = useTiledDrawingValue && WKBooleanGetValue(static_cast<WKBooleanRef>(useTiledDrawingValue));
-
-    return useTiledDrawing == [(TestRunnerWKView *)m_view useTiledDrawing];
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/mac/TestControllerMac.mm b/Tools/WebKitTestRunner/mac/TestControllerMac.mm
deleted file mode 100644
index fbae256..0000000
--- a/Tools/WebKitTestRunner/mac/TestControllerMac.mm
+++ /dev/null
@@ -1,83 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-#import "TestController.h"
-
-#import "PlatformWebView.h"
-#import <WebKit2/WKStringCF.h>
-#import <mach-o/dyld.h> 
-
-namespace WTR {
-
-void TestController::notifyDone()
-{
-}
-
-void TestController::platformInitialize()
-{
-}
-
-void TestController::platformDestroy()
-{
-}
-
-void TestController::initializeInjectedBundlePath()
-{
-    NSString *nsBundlePath = [[[NSBundle mainBundle] bundlePath] stringByAppendingPathComponent:@"WebKitTestRunnerInjectedBundle.bundle"];
-    m_injectedBundlePath.adopt(WKStringCreateWithCFString((CFStringRef)nsBundlePath));
-}
-
-void TestController::initializeTestPluginDirectory()
-{
-    m_testPluginDirectory.adopt(WKStringCreateWithCFString((CFStringRef)[[NSBundle mainBundle] bundlePath]));
-}
-
-void TestController::platformRunUntil(bool& done, double timeout)
-{
-    NSDate *endDate = (timeout > 0) ? [NSDate dateWithTimeIntervalSinceNow:timeout] : [NSDate distantFuture];
-
-    while (!done && [endDate compare:[NSDate date]] == NSOrderedDescending)
-        [[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:endDate];
-}
-
-void TestController::platformInitializeContext()
-{
-}
-
-void TestController::runModal(PlatformWebView* view)
-{
-    NSWindow *window = [view->platformView() window];
-    if (!window)
-        return;
-    [NSApp runModalForWindow:window];
-}
-
-const char* TestController::platformLibraryPathForTesting()
-{
-    return [[@"~/Library/Application Support/DumpRenderTree" stringByExpandingTildeInPath] UTF8String];
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/mac/main.mm b/Tools/WebKitTestRunner/mac/main.mm
deleted file mode 100644
index b5c34f7..0000000
--- a/Tools/WebKitTestRunner/mac/main.mm
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "config.h"
-
-#import "TestController.h"
-
-int main(int argc, const char* argv[])
-{
-    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
-    [NSApplication sharedApplication];
-    [[NSUserDefaults standardUserDefaults] setVolatileDomain:[NSDictionary dictionaryWithObject:[NSNumber numberWithBool:NO] forKey:@"WebKitKerningAndLigaturesEnabledByDefault"] forName:NSArgumentDomain];
-    {
-        WTR::TestController controller(argc, argv);
-    }
-    [pool drain];
-    return 0;
-}
diff --git a/Tools/WebKitTestRunner/qt/EventSenderProxyQt.cpp b/Tools/WebKitTestRunner/qt/EventSenderProxyQt.cpp
deleted file mode 100644
index e16e3ef..0000000
--- a/Tools/WebKitTestRunner/qt/EventSenderProxyQt.cpp
+++ /dev/null
@@ -1,476 +0,0 @@
-/*
- * Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "EventSenderProxy.h"
-
-#include "PlatformWebView.h"
-#include "TestController.h"
-#include <QGraphicsSceneMouseEvent>
-#include <QKeyEvent>
-#include <QtTest/QtTest>
-#include <WebKit2/WKPagePrivate.h>
-#include <WebKit2/WKStringQt.h>
-#include <qpa/qwindowsysteminterface.h>
-
-namespace WTR {
-
-#define KEYCODE_DEL         127
-#define KEYCODE_BACKSPACE   8
-#define KEYCODE_LEFTARROW   0xf702
-#define KEYCODE_RIGHTARROW  0xf703
-#define KEYCODE_UPARROW     0xf700
-#define KEYCODE_DOWNARROW   0xf701
-
-struct WTREventQueue {
-    QEvent* m_event;
-    int m_delay;
-};
-
-static WTREventQueue eventQueue[1024];
-static unsigned endOfQueue;
-static bool isReplayingEvents;
-
-EventSenderProxy::EventSenderProxy(TestController* testController)
-    : m_testController(testController)
-    , m_time(0)
-    , m_position()
-    , m_leftMouseButtonDown(false)
-    , m_clickCount(0)
-    , m_clickTime(0)
-    , m_clickPosition()
-    , m_clickButton(kWKEventMouseButtonNoButton)
-    , m_mouseButtons(0)
-#if ENABLE(TOUCH_EVENTS)
-    , m_touchActive(false)
-#endif
-{
-    memset(eventQueue, 0, sizeof(eventQueue));
-    endOfQueue = 0;
-    isReplayingEvents = false;
-}
-
-EventSenderProxy::~EventSenderProxy()
-{
-}
-
-static Qt::MouseButton getMouseButton(unsigned button)
-{
-    Qt::MouseButton mouseButton;
-    switch (button) {
-    case 0:
-        mouseButton = Qt::LeftButton;
-        break;
-    case 1:
-        mouseButton = Qt::MidButton;
-        break;
-    case 2:
-        mouseButton = Qt::RightButton;
-        break;
-    case 3:
-        // fast/events/mouse-click-events expects the 4th button to be treated as the middle button
-        mouseButton = Qt::MidButton;
-        break;
-    default:
-        mouseButton = Qt::LeftButton;
-        break;
-    }
-    return mouseButton;
-}
-
-static Qt::KeyboardModifiers getModifiers(WKEventModifiers modifiersRef)
-{
-    Qt::KeyboardModifiers modifiers = 0;
-
-    if (modifiersRef & kWKEventModifiersControlKey)
-        modifiers |= Qt::ControlModifier;
-    if (modifiersRef & kWKEventModifiersShiftKey)
-        modifiers |= Qt::ShiftModifier;
-    if (modifiersRef & kWKEventModifiersAltKey)
-        modifiers |= Qt::AltModifier;
-    if (modifiersRef & kWKEventModifiersMetaKey)
-        modifiers |= Qt::MetaModifier;
-
-    return modifiers;
-}
-
-void EventSenderProxy::keyDown(WKStringRef keyRef, WKEventModifiers modifiersRef, unsigned location)
-{
-    const QString key = WKStringCopyQString(keyRef);
-    QString keyText = key;
-
-    Qt::KeyboardModifiers modifiers = getModifiers(modifiersRef);
-
-    if (location == 3)
-        modifiers |= Qt::KeypadModifier;
-    int code = 0;
-    if (key.length() == 1) {
-        code = key.unicode()->unicode();
-        // map special keycodes used by the tests to something that works for Qt/X11
-        if (code == '\r') {
-            code = Qt::Key_Return;
-        } else if (code == '\t') {
-            code = Qt::Key_Tab;
-            if (modifiers == Qt::ShiftModifier)
-                code = Qt::Key_Backtab;
-            keyText = QStringLiteral("\t");
-        } else if (code == KEYCODE_DEL || code == KEYCODE_BACKSPACE) {
-            code = Qt::Key_Backspace;
-            if (modifiers == Qt::AltModifier)
-                modifiers = Qt::ControlModifier;
-            keyText = QString();
-        } else if (code == 'o' && modifiers == Qt::ControlModifier) {
-            // Mimic the emacs ctrl-o binding on Mac by inserting a paragraph
-            // separator and then putting the cursor back to its original
-            // position. Allows us to pass emacs-ctrl-o.html
-            keyText = QLatin1String("\n");
-            code = '\n';
-            modifiers = 0;
-            QKeyEvent event(QEvent::KeyPress, code, modifiers, keyText);
-            m_testController->mainWebView()->sendEvent(&event);
-            QKeyEvent event2(QEvent::KeyRelease, code, modifiers, keyText);
-            m_testController->mainWebView()->sendEvent(&event2);
-            keyText = QString();
-            code = Qt::Key_Left;
-        } else if (code == 'y' && modifiers == Qt::ControlModifier) {
-            keyText = QLatin1String("c");
-            code = 'c';
-        } else if (code == 'k' && modifiers == Qt::ControlModifier) {
-            keyText = QLatin1String("x");
-            code = 'x';
-        } else if (code == 'a' && modifiers == Qt::ControlModifier) {
-            keyText = QString();
-            code = Qt::Key_Home;
-            modifiers = 0;
-        } else if (code == KEYCODE_LEFTARROW) {
-            keyText = QString();
-            code = Qt::Key_Left;
-            if (modifiers & Qt::MetaModifier) {
-                code = Qt::Key_Home;
-                modifiers &= ~Qt::MetaModifier;
-            }
-        } else if (code == KEYCODE_RIGHTARROW) {
-            keyText = QString();
-            code = Qt::Key_Right;
-            if (modifiers & Qt::MetaModifier) {
-                code = Qt::Key_End;
-                modifiers &= ~Qt::MetaModifier;
-            }
-        } else if (code == KEYCODE_UPARROW) {
-            keyText = QString();
-            code = Qt::Key_Up;
-            if (modifiers & Qt::MetaModifier) {
-                code = Qt::Key_PageUp;
-                modifiers &= ~Qt::MetaModifier;
-            }
-        } else if (code == KEYCODE_DOWNARROW) {
-            keyText = QString();
-            code = Qt::Key_Down;
-            if (modifiers & Qt::MetaModifier) {
-                code = Qt::Key_PageDown;
-                modifiers &= ~Qt::MetaModifier;
-            }
-        } else
-            code = key.unicode()->toUpper().unicode();
-    } else {
-        if (key.startsWith(QLatin1Char('F')) && key.count() <= 3) {
-            keyText = keyText.mid(1);
-            int functionKey = keyText.toInt();
-            Q_ASSERT(functionKey >= 1 && functionKey <= 35);
-            code = Qt::Key_F1 + (functionKey - 1);
-        // map special keycode strings used by the tests to something that works for Qt/X11
-        } else if (key == QLatin1String("leftArrow")) {
-            keyText = QString();
-            code = Qt::Key_Left;
-        } else if (key == QLatin1String("rightArrow")) {
-            keyText = QString();
-            code = Qt::Key_Right;
-        } else if (key == QLatin1String("upArrow")) {
-            keyText = QString();
-            code = Qt::Key_Up;
-        } else if (key == QLatin1String("downArrow")) {
-            keyText = QString();
-            code = Qt::Key_Down;
-        } else if (key == QLatin1String("pageUp")) {
-            keyText = QString();
-            code = Qt::Key_PageUp;
-        } else if (key == QLatin1String("pageDown")) {
-            keyText = QString();
-            code = Qt::Key_PageDown;
-        } else if (key == QLatin1String("home")) {
-            keyText = QString();
-            code = Qt::Key_Home;
-        } else if (key == QLatin1String("end")) {
-            keyText = QString();
-            code = Qt::Key_End;
-        } else if (key == QLatin1String("insert")) {
-            keyText = QString();
-            code = Qt::Key_Insert;
-        } else if (key == QLatin1String("delete")) {
-            keyText = QString();
-            code = Qt::Key_Delete;
-        } else if (key == QLatin1String("printScreen")) {
-            keyText = QString();
-            code = Qt::Key_Print;
-        } else if (key == QLatin1String("menu")) {
-            keyText = QString();
-            code = Qt::Key_Menu;
-        }
-    }
-
-    QKeyEvent* pressEvent = new QKeyEvent(QEvent::KeyPress, code, modifiers, keyText);
-    sendOrQueueEvent(pressEvent);
-    QKeyEvent* releaseEvent = new QKeyEvent(QEvent::KeyRelease, code, modifiers, keyText);
-    sendOrQueueEvent(releaseEvent);
-
-}
-
-void EventSenderProxy::updateClickCountForButton(int button)
-{
-    if (m_time - m_clickTime < QApplication::doubleClickInterval() && m_position == m_clickPosition && button == m_clickButton) {
-        m_clickTime = m_time;
-        return;
-    }
-
-    m_clickTime = m_time;
-    m_clickPosition = m_position;
-    m_clickButton = button;
-}
-
-void EventSenderProxy::mouseDown(unsigned button, WKEventModifiers wkModifiers)
-{
-    Qt::KeyboardModifiers modifiers = getModifiers(wkModifiers);
-    Qt::MouseButton mouseButton = getMouseButton(button);
-
-    updateClickCountForButton(button);
-
-    m_mouseButtons |= mouseButton;
-
-    QPoint mousePos(m_position.x, m_position.y);
-    QMouseEvent* event = new QMouseEvent(QEvent::MouseButtonPress,
-        mousePos, mousePos, mouseButton, m_mouseButtons, modifiers);
-
-    // We aren't generating MouseButtonDblClick events as they aren't used.
-    sendOrQueueEvent(event);
-}
-
-void EventSenderProxy::mouseUp(unsigned button, WKEventModifiers)
-{
-    Qt::MouseButton mouseButton = getMouseButton(button);
-    m_mouseButtons &= ~mouseButton;
-
-    QPoint mousePos(m_position.x, m_position.y);
-    QMouseEvent* event = new QMouseEvent(QEvent::MouseButtonRelease,
-        mousePos, mousePos, mouseButton, m_mouseButtons, Qt::NoModifier);
-
-    sendOrQueueEvent(event);
-}
-
-void EventSenderProxy::mouseMoveTo(double x, double y)
-{
-    m_position.x = x;
-    m_position.y = y;
-
-    QPoint mousePos(m_position.x, m_position.y);
-    QMouseEvent* event = new QMouseEvent(QEvent::MouseMove,
-        mousePos, mousePos, Qt::NoButton, m_mouseButtons, Qt::NoModifier);
-
-    sendOrQueueEvent(event);
-}
-
-void EventSenderProxy::mouseScrollBy(int, int)
-{
-    // FIXME: Implement this.
-}
-
-void EventSenderProxy::continuousMouseScrollBy(int, int, bool)
-{
-    // FIXME: Implement this.
-}
-
-void EventSenderProxy::leapForward(int ms)
-{
-    eventQueue[endOfQueue].m_delay = ms;
-    m_time += ms;
-}
-
-#if ENABLE(TOUCH_EVENTS)
-void EventSenderProxy::addTouchPoint(int x, int y)
-{
-    const int id = m_touchPoints.isEmpty() ? 0 : m_touchPoints.last().id() + 1;
-    const QPointF pos(x, y);
-    QTouchEvent::TouchPoint point(id);
-    point.setPos(pos);
-    point.setStartPos(pos);
-    point.setState(Qt::TouchPointPressed);
-    if (!m_touchPointRadius.isNull())
-        point.setRect(QRectF(pos - m_touchPointRadius, pos + m_touchPointRadius));
-    m_touchPoints.append(point);
-}
-
-void EventSenderProxy::updateTouchPoint(int index, int x, int y)
-{
-    ASSERT(index >= 0 && index < m_touchPoints.count());
-    QPointF pos(x, y);
-    QTouchEvent::TouchPoint &p = m_touchPoints[index];
-    p.setPos(pos);
-    p.setState(Qt::TouchPointMoved);
-    if (!m_touchPointRadius.isNull())
-        p.setRect(QRectF(pos - m_touchPointRadius, pos + m_touchPointRadius));
-}
-
-void EventSenderProxy::setTouchModifier(WKEventModifiers modifier, bool enable)
-{
-    Qt::KeyboardModifiers mod = getModifiers(modifier);
-
-    if (enable)
-        m_touchModifiers |= mod;
-    else
-        m_touchModifiers &= ~mod;
-}
-
-void EventSenderProxy::setTouchPointRadius(int radiusX, int radiusY)
-{
-    m_touchPointRadius = QPoint(radiusX, radiusY);
-}
-
-void EventSenderProxy::touchStart()
-{
-    if (!m_touchActive) {
-        sendTouchEvent(QEvent::TouchBegin);
-        m_touchActive = true;
-    } else
-        sendTouchEvent(QEvent::TouchUpdate);
-}
-
-void EventSenderProxy::touchMove()
-{
-    sendTouchEvent(QEvent::TouchUpdate);
-}
-
-void EventSenderProxy::touchEnd()
-{
-    for (int i = 0; i < m_touchPoints.count(); ++i) {
-        if (m_touchPoints[i].state() != Qt::TouchPointReleased) {
-            sendTouchEvent(QEvent::TouchUpdate);
-            return;
-        }
-    }
-    sendTouchEvent(QEvent::TouchEnd);
-    m_touchActive = false;
-}
-
-void EventSenderProxy::touchCancel()
-{
-    sendTouchEvent(QEvent::TouchCancel);
-    m_touchActive = false;
-}
-
-void EventSenderProxy::clearTouchPoints()
-{
-    m_touchPoints.clear();
-    m_touchModifiers = Qt::KeyboardModifiers();
-    m_touchActive = false;
-    m_touchPointRadius = QPoint();
-}
-
-void EventSenderProxy::releaseTouchPoint(int index)
-{
-    if (index < 0 || index >= m_touchPoints.count())
-        return;
-
-    m_touchPoints[index].setState(Qt::TouchPointReleased);
-}
-
-void EventSenderProxy::cancelTouchPoint(int index)
-{
-    // FIXME: No cancellation state in Qt 5, mapped to release instead.
-    // PlatformTouchEvent conversion later will map all touch points to
-    // cancelled.
-    releaseTouchPoint(index);
-}
-
-void EventSenderProxy::sendTouchEvent(QEvent::Type type)
-{
-    static QTouchDevice* device = 0;
-    if (!device) {
-        device = new QTouchDevice;
-        device->setType(QTouchDevice::TouchScreen);
-        QWindowSystemInterface::registerTouchDevice(device);
-    }
-
-    Qt::TouchPointStates eventStates;
-    for (int i = 0; i < m_touchPoints.count(); i++)
-        eventStates |= m_touchPoints[i].state();
-    QTouchEvent event(type, device, m_touchModifiers, eventStates);
-    event.setTouchPoints(m_touchPoints);
-    m_testController->mainWebView()->sendEvent(&event);
-    QList<QTouchEvent::TouchPoint>::Iterator it = m_touchPoints.begin();
-    while (it != m_touchPoints.end()) {
-        if (it->state() == Qt::TouchPointReleased)
-            it = m_touchPoints.erase(it);
-        else {
-            it->setState(Qt::TouchPointStationary);
-            ++it;
-        }
-    }
-}
-#endif
-
-void EventSenderProxy::sendOrQueueEvent(QEvent* event)
-{
-    if (!endOfQueue && !eventQueue[endOfQueue].m_delay) {
-        m_testController->mainWebView()->sendEvent(event);
-        delete event;
-        return;
-    }
-
-    eventQueue[endOfQueue++].m_event = event;
-    replaySavedEvents();
-}
-
-void EventSenderProxy::replaySavedEvents()
-{
-    if (isReplayingEvents)
-        return;
-
-    isReplayingEvents = true;
-    int i = 0;
-
-    while (i < endOfQueue) {
-        WTREventQueue& ev = eventQueue[i];
-        if (ev.m_delay)
-            QTest::qWait(ev.m_delay);
-        i++;
-        m_testController->mainWebView()->sendEvent(ev.m_event);
-        delete ev.m_event;
-        ev.m_delay = 0;
-    }
-
-    endOfQueue = 0;
-    isReplayingEvents = false;
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/qt/PlatformWebViewQt.cpp b/Tools/WebKitTestRunner/qt/PlatformWebViewQt.cpp
deleted file mode 100644
index 37fd98e..0000000
--- a/Tools/WebKitTestRunner/qt/PlatformWebViewQt.cpp
+++ /dev/null
@@ -1,194 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- * Copyright (C) 2010 University of Szeged. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include "PlatformWebView.h"
-#include "qquickwebpage_p.h"
-#include "qquickwebview_p.h"
-
-#include <QCoreApplication>
-#include <QEventLoop>
-#include <QQmlProperty>
-#include <QtQuick/QQuickView>
-#include <QtQuick/private/qquickwindow_p.h>
-#include <WebKit2/WKImageQt.h>
-#include <qpa/qwindowsysteminterface.h>
-
-namespace WTR {
-
-class WrapperWindow : public QQuickView {
-    Q_OBJECT
-public:
-    WrapperWindow(QQuickWebView* view)
-        : QQuickView(QUrl("data:text/plain,import QtQuick 2.0\nItem { objectName: 'root' }"))
-        , m_view(view)
-    {
-        connect(this, SIGNAL(statusChanged(QQuickView::Status)), SLOT(handleStatusChanged(QQuickView::Status)));
-    }
-
-private Q_SLOTS:
-    void handleStatusChanged(QQuickView::Status status)
-    {
-        if (status != QQuickView::Ready)
-            return;
-
-        setGeometry(0, 0, 800, 600);
-
-        setResizeMode(QQuickView::SizeRootObjectToView);
-        m_view->setParentItem(rootObject());
-        QQmlProperty::write(m_view, "anchors.fill", qVariantFromValue(rootObject()));
-
-        if (PlatformWebView::windowShapshotEnabled()) {
-            setSurfaceType(OpenGLSurface);
-            create();
-            QQuickWindowPrivate::get(this)->setRenderWithoutShowing(true);
-        } else
-            m_view->experimental()->setRenderToOffscreenBuffer(true);
-
-        QWindowSystemInterface::handleWindowActivated(this);
-        m_view->page()->setFocus(true);
-    }
-
-private:
-    QQuickWebView* m_view;
-};
-
-PlatformWebView::PlatformWebView(WKContextRef contextRef, WKPageGroupRef pageGroupRef, WKDictionaryRef options)
-    : m_windowIsKey(true)
-    , m_options(options)
-    , m_modalEventLoop(0)
-{
-    WKRetainPtr<WKStringRef> useFixedLayoutKey(AdoptWK, WKStringCreateWithUTF8CString("UseFixedLayout"));
-    m_usingFixedLayout = options ? WKBooleanGetValue(static_cast<WKBooleanRef>(WKDictionaryGetItemForKey(options, useFixedLayoutKey.get()))) : false;
-    QQuickWebViewExperimental::setFlickableViewportEnabled(m_usingFixedLayout);
-
-    m_view = new QQuickWebView(contextRef, pageGroupRef);
-    m_view->setAllowAnyHTTPSCertificateForLocalHost(true);
-    m_view->componentComplete();
-
-    m_window = new WrapperWindow(m_view);
-}
-
-PlatformWebView::~PlatformWebView()
-{
-    delete m_window;
-    if (m_modalEventLoop)
-        m_modalEventLoop->exit();
-}
-
-void PlatformWebView::resizeTo(unsigned width, unsigned height)
-{
-    // If we do not have a platform window we will never get the necessary
-    // resize event, so simulate it in that case to make sure the quickview is
-    // resized to what the layout test expects.
-    if (!m_window->handle()) {
-        QRect newGeometry(m_window->x(), m_window->y(), width, height);
-        QWindowSystemInterface::handleGeometryChange(m_window, newGeometry);
-        QWindowSystemInterface::flushWindowSystemEvents();
-    }
-
-    m_window->resize(width, height);
-}
-
-WKPageRef PlatformWebView::page()
-{
-    return m_view->pageRef();
-}
-
-void PlatformWebView::focus()
-{
-    m_view->setFocus(true);
-}
-
-WKRect PlatformWebView::windowFrame()
-{
-    QRect windowRect = m_window->geometry();
-    WKRect wkFrame;
-    wkFrame.origin.x = windowRect.x();
-    wkFrame.origin.y = windowRect.y();
-    wkFrame.size.width = windowRect.size().width();
-    wkFrame.size.height = windowRect.size().height();
-    return wkFrame;
-}
-
-void PlatformWebView::setWindowFrame(WKRect wkRect)
-{
-    m_window->setGeometry(wkRect.origin.x, wkRect.origin.y, wkRect.size.width, wkRect.size.height);
-}
-
-bool PlatformWebView::sendEvent(QEvent* event)
-{
-    return QCoreApplication::sendEvent(m_window, event);
-}
-
-void PlatformWebView::postEvent(QEvent* event)
-{
-    QCoreApplication::postEvent(m_window, event);
-}
-
-void PlatformWebView::addChromeInputField()
-{
-}
-
-void PlatformWebView::removeChromeInputField()
-{
-}
-
-void PlatformWebView::makeWebViewFirstResponder()
-{
-}
-
-WKRetainPtr<WKImageRef> PlatformWebView::windowSnapshotImage()
-{
-    return adoptWK(WKImageCreateFromQImage(m_window->grabWindow()));
-}
-
-bool PlatformWebView::windowShapshotEnabled()
-{
-    // We need a way to disable UI side rendering for tests because it is
-    // too slow without appropriate hardware.
-    static bool result;
-    static bool hasChecked = false;
-    if (!hasChecked)
-        result = qgetenv("QT_WEBKIT_DISABLE_UIPROCESS_DUMPPIXELS") != "1";
-    return result;
-}
-
-bool PlatformWebView::viewSupportsOptions(WKDictionaryRef options) const
-{
-    WKRetainPtr<WKStringRef> useFixedLayoutKey(AdoptWK, WKStringCreateWithUTF8CString("UseFixedLayout"));
-
-    return m_usingFixedLayout == (options ? WKBooleanGetValue(static_cast<WKBooleanRef>(WKDictionaryGetItemForKey(options, useFixedLayoutKey.get()))) : false);
-}
-
-void PlatformWebView::didInitializeClients()
-{
-}
-
-} // namespace WTR
-
-#include "PlatformWebViewQt.moc"
diff --git a/Tools/WebKitTestRunner/qt/TestControllerQt.cpp b/Tools/WebKitTestRunner/qt/TestControllerQt.cpp
deleted file mode 100644
index 9d3515c..0000000
--- a/Tools/WebKitTestRunner/qt/TestControllerQt.cpp
+++ /dev/null
@@ -1,188 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- * Copyright (C) 2010 University of Szeged. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "TestController.h"
-
-#include "PlatformWebView.h"
-#include "WKStringQt.h"
-
-#include <cstdlib>
-#include <QCoreApplication>
-#include <QEventLoop>
-#include <QFileInfo>
-#include <QLibrary>
-#include <QObject>
-#include <QTimer>
-#include <QtGlobal>
-#include <qquickwebview_p.h>
-#include <wtf/Platform.h>
-#include <wtf/text/WTFString.h>
-
-namespace WTR {
-
-class TestController::RunLoop : public QObject {
-    Q_OBJECT
-public:
-    RunLoop();
-
-    void runUntil(double timeout);
-    void notifyDone();
-    void runModal(PlatformWebView*);
-public Q_SLOTS:
-    void timerFired();
-private:
-    QEventLoop m_runUntilLoop;
-    QEventLoop m_modalLoop;
-    QTimer m_runUntilLoopTimer;
-    bool m_runUntilLoopClosePending;
-};
-
-TestController::RunLoop::RunLoop()
-    : m_runUntilLoopClosePending(false)
-{
-    m_runUntilLoopTimer.setSingleShot(true);
-    QObject::connect(&m_runUntilLoopTimer, SIGNAL(timeout()), this, SLOT(timerFired()));
-}
-
-void TestController::RunLoop::runUntil(double timeout)
-{
-    ASSERT(!m_runUntilLoop.isRunning());
-    if (timeout) {
-        const int timeoutInMilliSecs = timeout * 1000;
-        m_runUntilLoopTimer.start(timeoutInMilliSecs);
-    }
-    m_runUntilLoop.exec(QEventLoop::ExcludeUserInputEvents);
-}
-
-void TestController::RunLoop::notifyDone()
-{
-    if (m_modalLoop.isRunning()) {
-        // Wait for the modal loop first. We only kill it if we timeout.
-        m_runUntilLoopClosePending = true;
-        return;
-    }
-
-    m_runUntilLoopTimer.stop();
-    m_runUntilLoop.exit();
-}
-
-void TestController::RunLoop::timerFired()
-{
-    if (m_modalLoop.isRunning()) {
-        m_runUntilLoopClosePending = true;
-        m_modalLoop.exit();
-        return;
-    }
-
-    m_runUntilLoop.exit();
-}
-
-void TestController::RunLoop::runModal(PlatformWebView* view)
-{
-    ASSERT(!m_modalLoop.isRunning());
-    view->setModalEventLoop(&m_modalLoop);
-    m_modalLoop.exec(QEventLoop::ExcludeUserInputEvents);
-
-    if (m_runUntilLoopClosePending)
-        m_runUntilLoop.exit();
-}
-
-void TestController::notifyDone()
-{
-    m_runLoop->notifyDone();
-}
-
-void TestController::platformInitialize()
-{
-    m_runLoop = new RunLoop;
-    QQuickWebView::platformInitialize();
-}
-
-void TestController::platformDestroy()
-{
-    delete m_runLoop;
-}
-
-void TestController::platformRunUntil(bool& condition, double timeout)
-{
-    UNUSED_PARAM(condition);
-    const bool shouldTimeout = !(qgetenv("QT_WEBKIT2_DEBUG") == "1" || timeout == m_noTimeout);
-    m_runLoop->runUntil(shouldTimeout ? timeout : 0);
-}
-
-static bool isExistingLibrary(const QString& path)
-{
-#if OS(WINDOWS)
-    const char* librarySuffixes[] = { ".dll" };
-#elif OS(MAC_OS_X)
-    const char* librarySuffixes[] = { ".bundle", ".dylib", ".so" };
-#elif OS(UNIX)
-    const char* librarySuffixes[] = { ".so" };
-#else
-#error Library path suffix should be specified for this platform
-#endif
-    for (unsigned i = 0; i < sizeof(librarySuffixes) / sizeof(const char*); ++i) {
-        if (QLibrary::isLibrary(path + librarySuffixes[i]))
-            return true;
-    }
-
-    return false;
-}
-
-void TestController::initializeInjectedBundlePath()
-{
-    QString path = QLatin1String(getenv("WTR_INJECTEDBUNDLE_PATH"));
-    if (path.isEmpty())
-        path = QFileInfo(QCoreApplication::applicationDirPath() + "/../lib/libWTRInjectedBundle").absoluteFilePath();
-    if (!isExistingLibrary(path))
-        qFatal("Cannot find the injected bundle at %s\n", qPrintable(path));
-
-    m_injectedBundlePath.adopt(WKStringCreateWithQString(path));
-}
-
-void TestController::initializeTestPluginDirectory()
-{
-    m_testPluginDirectory.adopt(WKStringCreateWithUTF8CString(qgetenv("QTWEBKIT_PLUGIN_PATH").constData()));
-}
-
-void TestController::platformInitializeContext()
-{
-}
-
-void TestController::runModal(PlatformWebView* view)
-{
-    shared().m_runLoop->runModal(view);
-}
-
-const char* TestController::platformLibraryPathForTesting()
-{
-    return 0;
-}
-
-} // namespace WTR
-
-#include "TestControllerQt.moc"
diff --git a/Tools/WebKitTestRunner/qt/TestInvocationQt.cpp b/Tools/WebKitTestRunner/qt/TestInvocationQt.cpp
deleted file mode 100644
index 99d5d0e..0000000
--- a/Tools/WebKitTestRunner/qt/TestInvocationQt.cpp
+++ /dev/null
@@ -1,123 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include "TestInvocation.h"
-
-#include "PlatformWebView.h"
-#include "TestController.h"
-#include <QBuffer>
-#include <QCryptographicHash>
-#include <QtGui/QPainter>
-#include <WebKit2/WKImageQt.h>
-#include <stdio.h>
-#include <wtf/Assertions.h>
-#include <wtf/UnusedParam.h>
-
-namespace WTR {
-
-static void dumpImage(const QImage& image)
-{
-    QBuffer buffer;
-    buffer.open(QBuffer::WriteOnly);
-    image.save(&buffer, "PNG");
-    buffer.close();
-    const QByteArray& data = buffer.data();
-
-    printf("Content-Type: %s\n", "image/png");
-    printf("Content-Length: %lu\n", static_cast<unsigned long>(data.length()));
-
-    const quint32 bytesToWriteInOneChunk = 1 << 15;
-    quint32 dataRemainingToWrite = data.length();
-    const char* ptr = data.data();
-    while (dataRemainingToWrite) {
-        quint32 bytesToWriteInThisChunk = qMin(dataRemainingToWrite, bytesToWriteInOneChunk);
-        quint32 bytesWritten = fwrite(ptr, 1, bytesToWriteInThisChunk, stdout);
-        if (bytesWritten != bytesToWriteInThisChunk)
-            break;
-        dataRemainingToWrite -= bytesWritten;
-        ptr += bytesWritten;
-    }
-
-    fflush(stdout);
-}
-
-void TestInvocation::forceRepaintDoneCallback(WKErrorRef, void *context)
-{
-    static_cast<TestInvocation*>(context)->m_gotRepaint = true;
-    TestController::shared().notifyDone();
-}
-
-void TestInvocation::dumpPixelsAndCompareWithExpected(WKImageRef imageRef, WKArrayRef repaintRects)
-{
-    QImage image;
-    if (PlatformWebView::windowShapshotEnabled()) {
-        WKPageRef page = TestController::shared().mainWebView()->page();
-        WKPageForceRepaint(page, this, &forceRepaintDoneCallback);
-
-        TestController::shared().runUntil(m_gotRepaint, TestController::ShortTimeout);
-
-        if (m_gotRepaint)
-            image = WKImageCreateQImage(TestController::shared().mainWebView()->windowSnapshotImage().get());
-        else {
-            m_error = true;
-            m_errorMessage = "Timed out waiting for repaint\n";
-            m_webProcessIsUnresponsive = true;
-            return;
-        }
-    } else
-        image = WKImageCreateQImage(imageRef);
-
-    if (repaintRects) {
-        QImage mask(image.size(), image.format());
-        mask.fill(QColor(0, 0, 0, 0.66 * 255));
-
-        QPainter maskPainter(&mask);
-        maskPainter.setCompositionMode(QPainter::CompositionMode_Source);
-        size_t count = WKArrayGetSize(repaintRects);
-        for (size_t i = 0; i < count; ++i) {
-            WKRect wkRect = WKRectGetValue(static_cast<WKRectRef>(WKArrayGetItemAtIndex(repaintRects, i)));
-            QRectF rect(wkRect.origin.x, wkRect.origin.y, wkRect.size.width, wkRect.size.height);
-            maskPainter.fillRect(rect, Qt::transparent);
-        }
-
-        QPainter painter(&image);
-        painter.drawImage(image.rect(), mask);
-    }
-
-    QCryptographicHash hash(QCryptographicHash::Md5);
-    for (unsigned row = 0; row < image.height(); ++row)
-        hash.addData(reinterpret_cast<const char*>(image.constScanLine(row)), image.bytesPerLine());
-
-    QByteArray actualHash = hash.result().toHex();
-    ASSERT(actualHash.size() == 32);
-    if (!compareActualHashToExpectedAndDumpResults(actualHash)) {
-        image.setText("checksum", actualHash);
-        dumpImage(image);
-    }
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/qt/WebKitTestRunner.qrc b/Tools/WebKitTestRunner/qt/WebKitTestRunner.qrc
deleted file mode 100644
index 71d163a..0000000
--- a/Tools/WebKitTestRunner/qt/WebKitTestRunner.qrc
+++ /dev/null
@@ -1,5 +0,0 @@
-<RCC>
-    <qresource prefix="/">
-        <file>resources/user.css</file>
-    </qresource>
-</RCC>
diff --git a/Tools/WebKitTestRunner/qt/main.cpp b/Tools/WebKitTestRunner/qt/main.cpp
deleted file mode 100644
index ac0ee24..0000000
--- a/Tools/WebKitTestRunner/qt/main.cpp
+++ /dev/null
@@ -1,131 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- * Copyright (C) 2010 University of Szeged.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include "QtTestSupport.h"
-#include "TestController.h"
-#include "qquickwebview_p.h"
-
-#include <stdio.h>
-#if !defined(NDEBUG) && defined(Q_OS_UNIX)
-#include <signal.h>
-#include <unistd.h>
-#endif
-
-#include <QApplication>
-#include <QObject>
-#include <QTimer>
-
-class Launcher : public QObject {
-    Q_OBJECT
-
-public:
-    Launcher(int argc, char** argv)
-        : m_argc(argc)
-        , m_argv(argv)
-    {
-    }
-
-    ~Launcher()
-    {
-        delete m_controller;
-    }
-
-public Q_SLOTS:
-    void launch()
-    {
-        m_controller = new WTR::TestController(m_argc, const_cast<const char**>(m_argv));
-        QApplication::exit();
-    }
-
-private:
-    WTR::TestController* m_controller;
-    int m_argc;
-    char** m_argv;
-};
-
-#if !defined(NDEBUG) && defined(Q_OS_UNIX)
-static void sigcontHandler(int)
-{
-}
-#endif
-
-void messageHandler(QtMsgType type, const QMessageLogContext&, const QString& message)
-{
-    if (type == QtCriticalMsg) {
-        fprintf(stderr, "%s\n", qPrintable(message));
-        return;
-    }
-
-    // Do nothing
-}
-
-int main(int argc, char** argv)
-{
-#if !defined(NDEBUG) && defined(Q_OS_UNIX)
-    if (qgetenv("QT_WEBKIT_PAUSE_UI_PROCESS") == "1") {
-        struct sigaction newAction, oldAction;
-        newAction.sa_handler = sigcontHandler;
-        sigemptyset(&newAction.sa_mask);
-        newAction.sa_flags = 0;
-        sigaction(SIGCONT, &newAction, &oldAction);
-        fprintf(stderr, "Pausing UI process, please attach to PID %d and send signal SIGCONT... ", getpid());
-        pause();
-        sigaction(SIGCONT, &oldAction, 0);
-        fprintf(stderr, " OK\n");
-    }
-#endif
-
-    // Suppress debug output from Qt if not started with --verbose
-    bool suppressQtDebugOutput = true;
-    for (int i = 1; i < argc; ++i) {
-        if (!qstrcmp(argv[i], "--verbose")) {
-            suppressQtDebugOutput = false;
-            break;
-        }
-    }
-
-    // Has to be done before QApplication is constructed in case
-    // QApplication itself produces debug output.
-    if (suppressQtDebugOutput) {
-        qInstallMessageHandler(messageHandler);
-        if (qgetenv("QT_WEBKIT_SUPPRESS_WEB_PROCESS_OUTPUT").isEmpty())
-            qputenv("QT_WEBKIT_SUPPRESS_WEB_PROCESS_OUTPUT", "1");
-    }
-
-    qputenv("QT_WEBKIT_THEME_NAME", "qstyle");
-
-    WebKit::QtTestSupport::initializeTestFonts();
-    QCoreApplication::setAttribute(Qt::AA_Use96Dpi, true);
-
-    QApplication app(argc, argv);
-    Launcher launcher(argc, argv);
-    QTimer::singleShot(0, &launcher, SLOT(launch()));
-    return app.exec();;
-}
-
-#include "main.moc"
diff --git a/Tools/WebKitTestRunner/qt/resources/user.css b/Tools/WebKitTestRunner/qt/resources/user.css
deleted file mode 100644
index af39819..0000000
--- a/Tools/WebKitTestRunner/qt/resources/user.css
+++ /dev/null
@@ -1,4 +0,0 @@
-body {
-    font-size: 50px;
-    background-color: rgb(255, 255, 0);
-}
\ No newline at end of file
diff --git a/Tools/WebKitTestRunner/win/InjectedBundle.vcproj b/Tools/WebKitTestRunner/win/InjectedBundle.vcproj
deleted file mode 100644
index c20bad9..0000000
--- a/Tools/WebKitTestRunner/win/InjectedBundle.vcproj
+++ /dev/null
@@ -1,992 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="InjectedBundle"
-	ProjectGUID="{CBC3391C-F060-4BF5-A66E-81404168816B}"
-	RootNamespace="InjectedBundle"
-	Keyword="Win32Proj"
-	>
-	<Platforms>
-		<Platform
-			Name="Win32"
-		/>
-	</Platforms>
-	<ToolFiles>
-	</ToolFiles>
-	<Configurations>
-		<Configuration
-			Name="Debug|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\InjectedBundleDebug.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\InjectedBundleRelease.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_All|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\InjectedBundleDebugAll.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_Cairo_CFLite|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\InjectedBundleDebugCairoCFLite.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release_Cairo_CFLite|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\InjectedBundleReleaseCairoCFLite.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Production|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\InjectedBundleProduction.vsprops"
-			CharacterSet="1"
-			WholeProgramOptimization="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-	</Configurations>
-	<References>
-	</References>
-	<Files>
-		<Filter
-			Name="Bindings"
-			>
-			<File
-				RelativePath="..\InjectedBundle\Bindings\CodeGeneratorTestRunner.pm"
-				>
-			</File>
-			<File
-				RelativePath="..\InjectedBundle\Bindings\AccessibilityController.idl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Debug_All|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Debug_Cairo_CFLite|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release_Cairo_CFLite|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Production|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath="..\InjectedBundle\Bindings\AccessibilityTextMarker.idl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Debug_All|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Debug_Cairo_CFLite|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release_Cairo_CFLite|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Production|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath="..\InjectedBundle\Bindings\AccessibilityTextMarkerRange.idl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Debug_All|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Debug_Cairo_CFLite|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release_Cairo_CFLite|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Production|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath="..\InjectedBundle\Bindings\AccessibilityUIElement.idl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Debug_All|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Debug_Cairo_CFLite|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release_Cairo_CFLite|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Production|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath="..\InjectedBundle\Bindings\EventSendingController.idl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Debug_All|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Debug_Cairo_CFLite|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release_Cairo_CFLite|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Production|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath="..\InjectedBundle\Bindings\GCController.idl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Debug_All|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Debug_Cairo_CFLite|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release_Cairo_CFLite|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Production|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath="..\InjectedBundle\Bindings\JSWrappable.h"
-				>
-			</File>
-			<File
-				RelativePath="..\InjectedBundle\Bindings\JSWrapper.cpp"
-				>
-			</File>
-			<File
-				RelativePath="..\InjectedBundle\Bindings\JSWrapper.h"
-				>
-			</File>
-			<File
-				RelativePath="..\InjectedBundle\Bindings\TestRunner.idl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Debug_All|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Debug_Cairo_CFLite|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release_Cairo_CFLite|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Production|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath="..\InjectedBundle\Bindings\TextInputController.idl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Debug_All|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Debug_Cairo_CFLite|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release_Cairo_CFLite|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Production|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCMIDLTool"
-					/>
-				</FileConfiguration>
-			</File>
-		</Filter>
-		<Filter
-			Name="Derived Sources"
-			>
-			<File
-				RelativePath="$(ConfigurationBuildDir)\obj\$(ProjectName)\DerivedSources\JSAccessibilityController.cpp"
-				>
-			</File>
-			<File
-				RelativePath="$(ConfigurationBuildDir)\obj\$(ProjectName)\DerivedSources\JSAccessibilityController.h"
-				>
-			</File>
-			<File
-				RelativePath="$(ConfigurationBuildDir)\obj\$(ProjectName)\DerivedSources\JSAccessibilityTextMarker.cpp"
-				>
-			</File>
-			<File
-				RelativePath="$(ConfigurationBuildDir)\obj\$(ProjectName)\DerivedSources\JSAccessibilityTextMarker.h"
-				>
-			</File>
-			<File
-				RelativePath="$(ConfigurationBuildDir)\obj\$(ProjectName)\DerivedSources\JSAccessibilityTextMarkerRange.cpp"
-				>
-			</File>
-			<File
-				RelativePath="$(ConfigurationBuildDir)\obj\$(ProjectName)\DerivedSources\JSAccessibilityTextMarkerRange.h"
-				>
-			</File>
-			<File
-				RelativePath="$(ConfigurationBuildDir)\obj\$(ProjectName)\DerivedSources\JSAccessibilityUIElement.cpp"
-				>
-			</File>
-			<File
-				RelativePath="$(ConfigurationBuildDir)\obj\$(ProjectName)\DerivedSources\JSAccessibilityUIElement.h"
-				>
-			</File>
-			<File
-				RelativePath="$(ConfigurationBuildDir)\obj\$(ProjectName)\DerivedSources\JSEventSendingController.cpp"
-				>
-			</File>
-			<File
-				RelativePath="$(ConfigurationBuildDir)\obj\$(ProjectName)\DerivedSources\JSEventSendingController.h"
-				>
-			</File>
-			<File
-				RelativePath="$(ConfigurationBuildDir)\obj\$(ProjectName)\DerivedSources\JSGCController.cpp"
-				>
-			</File>
-			<File
-				RelativePath="$(ConfigurationBuildDir)\obj\$(ProjectName)\DerivedSources\JSGCController.h"
-				>
-			</File>
-			<File
-				RelativePath="$(ConfigurationBuildDir)\obj\$(ProjectName)\DerivedSources\JSTestRunner.cpp"
-				>
-			</File>
-			<File
-				RelativePath="$(ConfigurationBuildDir)\obj\$(ProjectName)\DerivedSources\JSTestRunner.h"
-				>
-			</File>
-			<File
-				RelativePath="$(ConfigurationBuildDir)\obj\$(ProjectName)\DerivedSources\JSTextInputController.cpp"
-				>
-			</File>
-			<File
-				RelativePath="$(ConfigurationBuildDir)\obj\$(ProjectName)\DerivedSources\JSTextInputController.h"
-				>
-			</File>
-		</Filter>
-		<File
-			RelativePath="..\InjectedBundle\AccessibilityController.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\InjectedBundle\AccessibilityController.h"
-			>
-		</File>
-		<File
-			RelativePath="..\InjectedBundle\AccessibilityTextMarker.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\InjectedBundle\AccessibilityTextMarker.h"
-			>
-		</File>
-		<File
-			RelativePath="..\InjectedBundle\AccessibilityTextMarkerRange.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\InjectedBundle\AccessibilityTextMarkerRange.h"
-			>
-		</File>
-		<File
-			RelativePath="..\InjectedBundle\AccessibilityUIElement.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\InjectedBundle\AccessibilityUIElement.h"
-			>
-		</File>
-		<File
-			RelativePath="..\InjectedBundle\win\ActivateFonts.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\InjectedBundle\EventSendingController.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\InjectedBundle\EventSendingController.h"
-			>
-		</File>
-		<File
-			RelativePath="..\InjectedBundle\GCController.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\InjectedBundle\GCController.h"
-			>
-		</File>
-		<File
-			RelativePath="..\InjectedBundle\InjectedBundle.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\InjectedBundle\InjectedBundle.h"
-			>
-		</File>
-		<File
-			RelativePath="..\InjectedBundle\InjectedBundleMain.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\InjectedBundle\InjectedBundlePage.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\InjectedBundle\InjectedBundlePage.h"
-			>
-		</File>
-		<File
-			RelativePath="..\InjectedBundle\win\InjectedBundleWin.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\InjectedBundle\TestRunner.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\InjectedBundle\TestRunner.h"
-			>
-		</File>
-		<File
-			RelativePath="..\InjectedBundle\win\TestRunnerWin.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\InjectedBundle\TextInputController.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\InjectedBundle\TextInputController.h"
-			>
-		</File>
-	</Files>
-	<Globals>
-	</Globals>
-</VisualStudioProject>
diff --git a/Tools/WebKitTestRunner/win/InjectedBundleDebug.vsprops b/Tools/WebKitTestRunner/win/InjectedBundleDebug.vsprops
deleted file mode 100644
index 6946189..0000000
--- a/Tools/WebKitTestRunner/win/InjectedBundleDebug.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="InjectedBundleDebug"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;..\Configurations\InjectedBundleCoreFoundation.vsprops;..\Configurations\InjectedBundleCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitTestRunner/win/InjectedBundleDebugAll.vsprops b/Tools/WebKitTestRunner/win/InjectedBundleDebugAll.vsprops
deleted file mode 100644
index 0979bf5..0000000
--- a/Tools/WebKitTestRunner/win/InjectedBundleDebugAll.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="InjectedBundleDebugAll"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug_all.vsprops;..\Configurations\InjectedBundleCoreFoundation.vsprops;..\Configurations\InjectedBundleCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitTestRunner/win/InjectedBundleDebugCairoCFLite.vsprops b/Tools/WebKitTestRunner/win/InjectedBundleDebugCairoCFLite.vsprops
deleted file mode 100644
index f268ced..0000000
--- a/Tools/WebKitTestRunner/win/InjectedBundleDebugCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="InjectedBundleDebugCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug_wincairo.vsprops;..\Configurations\InjectedBundleCFLite.vsprops;..\Configurations\InjectedBundleCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitTestRunner/win/InjectedBundleGenerated.vcproj b/Tools/WebKitTestRunner/win/InjectedBundleGenerated.vcproj
deleted file mode 100755
index c74fd3e..0000000
--- a/Tools/WebKitTestRunner/win/InjectedBundleGenerated.vcproj
+++ /dev/null
@@ -1,87 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="InjectedBundleGenerated"
-	ProjectGUID="{4343BC0B-A2E0-4B48-8277-F33CFBFA83CD}"
-	RootNamespace="InjectedBundleGenerated"
-	Keyword="MakeFileProj"
-	>
-	<Platforms>
-		<Platform
-			Name="Win32"
-		/>
-	</Platforms>
-	<ToolFiles>
-	</ToolFiles>
-	<Configurations>
-		<Configuration
-			Name="Debug|Win32"
-			ConfigurationType="0"
-			InheritedPropertySheets=".\InjectedBundleGeneratedCommon.vsprops"
-			>
-			<Tool
-				Name="VCNMakeTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release|Win32"
-			ConfigurationType="0"
-			InheritedPropertySheets=".\InjectedBundleGeneratedCommon.vsprops"
-			>
-			<Tool
-				Name="VCNMakeTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_All|Win32"
-			ConfigurationType="0"
-			InheritedPropertySheets=".\InjectedBundleGeneratedCommon.vsprops"
-			>
-			<Tool
-				Name="VCNMakeTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Production|Win32"
-			ConfigurationType="0"
-			InheritedPropertySheets=".\InjectedBundleGeneratedCommon.vsprops"
-			>
-			<Tool
-				Name="VCNMakeTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release_Cairo_CFLite|Win32"
-			ConfigurationType="0"
-			InheritedPropertySheets=".\InjectedBundleGeneratedCommon.vsprops"
-			>
-			<Tool
-				Name="VCNMakeTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_Cairo_CFLite|Win32"
-			ConfigurationType="0"
-			InheritedPropertySheets=".\InjectedBundleGeneratedCommon.vsprops"
-			>
-			<Tool
-				Name="VCNMakeTool"
-			/>
-		</Configuration>
-	</Configurations>
-	<References>
-	</References>
-	<Files>
-		<File
-			RelativePath=".\build-generated-files.sh"
-			>
-		</File>
-		<File
-			RelativePath="..\DerivedSources.make"
-			>
-		</File>
-	</Files>
-	<Globals>
-	</Globals>
-</VisualStudioProject>
diff --git a/Tools/WebKitTestRunner/win/InjectedBundleGeneratedCommon.vsprops b/Tools/WebKitTestRunner/win/InjectedBundleGeneratedCommon.vsprops
deleted file mode 100644
index 303a15f..0000000
--- a/Tools/WebKitTestRunner/win/InjectedBundleGeneratedCommon.vsprops
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="InjectedBundleGeneratedCommon"
-	OutputDirectory="$(ConfigurationBuildDir)\lib"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops"
-	>
-	<Tool
-		Name="VCNMakeTool"
-		BuildCommandLine="if exist &quot;$(ConfigurationBuildDir)\buildfailed&quot; grep XX$(ProjectName)XX &quot;$(ConfigurationBuildDir)\buildfailed&quot;&#x0D;&#x0A;if errorlevel 1 exit 1&#x0D;&#x0A;echo XX$(ProjectName)XX &gt; &quot;$(ConfigurationBuildDir)\buildfailed&quot;&#x0D;&#x0A;&#x0D;&#x0A;set PATH=%SystemDrive%\cygwin\bin;%PATH%&#x0D;&#x0A;bash build-generated-files.sh &quot;$(ConfigurationBuildDir)&quot; &quot;$(WebKitLibrariesDir)&quot;&#x0D;&#x0A;if errorlevel 1 exit 1&#x0D;&#x0A;&#x0D;&#x0A;if exist &quot;$(ConfigurationBuildDir)\buildfailed&quot; del &quot;$(ConfigurationBuildDir)\buildfailed&quot;&#x0D;&#x0A;"
-		ReBuildCommandLine="echo XX$(ProjectName)XX &gt; &quot;$(ConfigurationBuildDir)\buildfailed&quot;&#x0D;&#x0A;&#x0D;&#x0A;del /s /q &quot;$(ConfigurationBuildDir)\obj\InjectedBundle\DerivedSources&quot;&#x0D;&#x0A;set PATH=%SystemDrive%\cygwin\bin;%PATH%&#x0D;&#x0A;bash build-generated-files.sh &quot;$(ConfigurationBuildDir)&quot; &quot;$(WebKitLibrariesDir)&quot;&#x0D;&#x0A;if errorlevel 1 exit 1&#x0D;&#x0A;&#x0D;&#x0A;if exist &quot;$(ConfigurationBuildDir)\buildfailed&quot; del &quot;$(ConfigurationBuildDir)\buildfailed&quot;&#x0D;&#x0A;"
-		CleanCommandLine="del /s /q &quot;$(ConfigurationBuildDir)\obj\InjectedBundle\DerivedSources&quot;&#x0D;&#x0A;if exist &quot;$(ConfigurationBuildDir)\buildfailed&quot; del &quot;$(ConfigurationBuildDir)\buildfailed&quot;&#x0D;&#x0A;"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitTestRunner/win/InjectedBundlePostBuild.cmd b/Tools/WebKitTestRunner/win/InjectedBundlePostBuild.cmd
deleted file mode 100644
index 26707ca..0000000
--- a/Tools/WebKitTestRunner/win/InjectedBundlePostBuild.cmd
+++ /dev/null
@@ -1 +0,0 @@
-if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed"
diff --git a/Tools/WebKitTestRunner/win/InjectedBundlePreBuild.cmd b/Tools/WebKitTestRunner/win/InjectedBundlePreBuild.cmd
deleted file mode 100644
index a770776..0000000
--- a/Tools/WebKitTestRunner/win/InjectedBundlePreBuild.cmd
+++ /dev/null
@@ -1,6 +0,0 @@
-%SystemDrive%\cygwin\bin\which.exe bash
-if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
-cmd /c
-if exist "%CONFIGURATIONBUILDDIR%\buildfailed" grep XX%PROJECTNAME%XX "%CONFIGURATIONBUILDDIR%\buildfailed"
-if errorlevel 1 exit 1
-echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed"
diff --git a/Tools/WebKitTestRunner/win/InjectedBundleProduction.vsprops b/Tools/WebKitTestRunner/win/InjectedBundleProduction.vsprops
deleted file mode 100644
index 8f81320..0000000
--- a/Tools/WebKitTestRunner/win/InjectedBundleProduction.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="InjectedBundleProduction"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\production.vsprops;..\Configurations\InjectedBundleCoreFoundation.vsprops;..\Configurations\InjectedBundleCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitTestRunner/win/InjectedBundleRelease.vsprops b/Tools/WebKitTestRunner/win/InjectedBundleRelease.vsprops
deleted file mode 100644
index b5a1745..0000000
--- a/Tools/WebKitTestRunner/win/InjectedBundleRelease.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="InjectedBundleRelease"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;..\Configurations\InjectedBundleCoreFoundation.vsprops;..\Configurations\InjectedBundleCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitTestRunner/win/InjectedBundleReleaseCairoCFLite.vsprops b/Tools/WebKitTestRunner/win/InjectedBundleReleaseCairoCFLite.vsprops
deleted file mode 100644
index c2c2e28..0000000
--- a/Tools/WebKitTestRunner/win/InjectedBundleReleaseCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="InjectedBundleReleaseCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\WinCairo.vsprops;..\Configurations\InjectedBundleCFLite.vsprops;..\Configurations\InjectedBundleCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitTestRunner/win/PlatformWebViewWin.cpp b/Tools/WebKitTestRunner/win/PlatformWebViewWin.cpp
deleted file mode 100644
index e5de871..0000000
--- a/Tools/WebKitTestRunner/win/PlatformWebViewWin.cpp
+++ /dev/null
@@ -1,125 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "PlatformWebView.h"
-
-namespace WTR {
-
-static LPCWSTR hostWindowClassName = L"WTRWebViewHostWindow";
-
-static void registerWindowClass()
-{
-    static bool initialized;
-    if (initialized)
-        return;
-    initialized = true;
-
-    WNDCLASSEXW wndClass = {0};
-    wndClass.cbSize = sizeof(wndClass);
-    wndClass.style = CS_HREDRAW | CS_VREDRAW;
-    wndClass.lpfnWndProc = DefWindowProcW;
-    wndClass.hCursor = LoadCursor(0, IDC_ARROW);
-    wndClass.hInstance = GetModuleHandle(0);
-    wndClass.lpszClassName = hostWindowClassName;
-
-    RegisterClassExW(&wndClass);
-}
-
-PlatformWebView::PlatformWebView(WKContextRef contextRef, WKPageGroupRef pageGroupRef, WKDictionaryRef /*options*/)
-    : m_windowIsKey(true)
-{
-    registerWindowClass();
-
-    RECT viewRect = {0, 0, 800, 600};
-    m_window = CreateWindowExW(0, hostWindowClassName, L"WebKitTestRunner", WS_OVERLAPPEDWINDOW, 0 /*XOFFSET*/, 0 /*YOFFSET*/, viewRect.right, viewRect.bottom, 0, 0, GetModuleHandle(0), 0);
-    m_view = WKViewCreate(viewRect, contextRef, pageGroupRef, m_window);
-    WKViewSetIsInWindow(m_view, true);
-}
-
-PlatformWebView::~PlatformWebView()
-{
-    if (::IsWindow(m_window))
-        ::DestroyWindow(m_window);
-    WKRelease(m_view);
-}
-
-void PlatformWebView::resizeTo(unsigned width, unsigned height)
-{
-    ::SetWindowPos(WKViewGetWindow(m_view), 0, 0, 0, width, height, SWP_NOMOVE | SWP_NOZORDER | SWP_NOACTIVATE | SWP_NOCOPYBITS);
-}
-
-WKPageRef PlatformWebView::page()
-{
-    return WKViewGetPage(m_view);
-}
-
-void PlatformWebView::focus()
-{
-    ::SetFocus(::WKViewGetWindow(m_view));
-}
-
-WKRect PlatformWebView::windowFrame()
-{
-    // Implement.
-
-    WKRect wkFrame;
-    wkFrame.origin.x = 0;
-    wkFrame.origin.y = 0;
-    wkFrame.size.width = 0;
-    wkFrame.size.height = 0;
-    return wkFrame;
-}
-
-void PlatformWebView::setWindowFrame(WKRect)
-{
-    // Implement.
-}
-
-
-void PlatformWebView::addChromeInputField()
-{
-}
-
-void PlatformWebView::removeChromeInputField()
-{
-}
-
-void PlatformWebView::makeWebViewFirstResponder()
-{
-}
-
-WKRetainPtr<WKImageRef> PlatformWebView::windowSnapshotImage()
-{
-    // FIXME: implement to capture pixels in the UI process,
-    // which may be necessary to capture things like 3D transforms.
-    return 0;
-}
-
-void PlatformWebView::didInitializeClients()
-{
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/win/TestControllerWin.cpp b/Tools/WebKitTestRunner/win/TestControllerWin.cpp
deleted file mode 100644
index 8f2eaaf..0000000
--- a/Tools/WebKitTestRunner/win/TestControllerWin.cpp
+++ /dev/null
@@ -1,225 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "TestController.h"
-
-#include <fcntl.h>
-#include <io.h>
-#include <shlwapi.h>
-#include <string>
-#include <WebKit2/WKContextPrivateWin.h>
-#include <WebKit2/WKStringCF.h>
-#include <wtf/RetainPtr.h>
-#include <wtf/Vector.h>
-
-using namespace std;
-
-namespace WTR {
-
-static HANDLE webProcessCrashingEvent;
-static const char webProcessCrashingEventName[] = "WebKitTestRunner.WebProcessCrashing";
-// This is the longest we'll wait (in seconds) for the web process to finish crashing and a crash
-// log to be saved. This interval should be just a tiny bit longer than it will ever reasonably
-// take to save a crash log.
-static const double maximumWaitForWebProcessToCrash = 60;
-
-#ifdef DEBUG_ALL
-const LPWSTR testPluginDirectoryName = L"TestNetscapePlugin_Debug";
-const char* injectedBundleDLL = "\\InjectedBundle_debug.dll";
-#else
-const LPWSTR testPluginDirectoryName = L"TestNetscapePlugin";
-const char* injectedBundleDLL = "\\InjectedBundle.dll";
-#endif
-
-static void addQTDirToPATH()
-{
-    static LPCWSTR pathEnvironmentVariable = L"PATH";
-    static LPCWSTR quickTimeKeyName = L"Software\\Apple Computer, Inc.\\QuickTime";
-    static LPCWSTR quickTimeSysDir = L"QTSysDir";
-    static bool initialized;
-
-    if (initialized)
-        return;
-    initialized = true;
-
-    // Get the QuickTime dll directory from the registry. The key can be in either HKLM or HKCU.
-    WCHAR qtPath[MAX_PATH];
-    DWORD qtPathBufferLen = sizeof(qtPath);
-    DWORD keyType;
-    HRESULT result = ::SHGetValueW(HKEY_LOCAL_MACHINE, quickTimeKeyName, quickTimeSysDir, &keyType, (LPVOID)qtPath, &qtPathBufferLen);
-    if (result != ERROR_SUCCESS || !qtPathBufferLen || keyType != REG_SZ) {
-        qtPathBufferLen = sizeof(qtPath);
-        result = ::SHGetValueW(HKEY_CURRENT_USER, quickTimeKeyName, quickTimeSysDir, &keyType, (LPVOID)qtPath, &qtPathBufferLen);
-        if (result != ERROR_SUCCESS || !qtPathBufferLen || keyType != REG_SZ)
-            return;
-    }
-
-    // Read the current PATH.
-    DWORD pathSize = ::GetEnvironmentVariableW(pathEnvironmentVariable, 0, 0);
-    Vector<WCHAR> oldPath(pathSize);
-    if (!::GetEnvironmentVariableW(pathEnvironmentVariable, oldPath.data(), oldPath.size()))
-        return;
-
-    // And add the QuickTime dll.
-    wstring newPath;
-    newPath.append(qtPath);
-    newPath.append(L";");
-    newPath.append(oldPath.data(), oldPath.size());
-    ::SetEnvironmentVariableW(pathEnvironmentVariable, newPath.data());
-}
-
-static LONG WINAPI exceptionFilter(EXCEPTION_POINTERS*)
-{
-    fputs("#CRASHED\n", stderr);
-    fflush(stderr);
-    return EXCEPTION_CONTINUE_SEARCH;
-}
-
-void TestController::notifyDone()
-{
-}
-
-void TestController::platformInitialize()
-{
-    // Cygwin calls ::SetErrorMode(SEM_FAILCRITICALERRORS), which we will inherit. This is bad for
-    // testing/debugging, as it causes the post-mortem debugger not to be invoked. We reset the
-    // error mode here to work around Cygwin's behavior. See <http://webkit.org/b/55222>.
-    ::SetErrorMode(0);
-
-    ::SetUnhandledExceptionFilter(exceptionFilter);
-
-    _setmode(1, _O_BINARY);
-    _setmode(2, _O_BINARY);
-
-    // Add the QuickTime dll directory to PATH or QT 7.6 will fail to initialize on systems
-    // linked with older versions of qtmlclientlib.dll.
-    addQTDirToPATH();
-
-    webProcessCrashingEvent = ::CreateEventA(0, FALSE, FALSE, webProcessCrashingEventName);
-}
-
-void TestController::platformDestroy()
-{
-}
-
-void TestController::initializeInjectedBundlePath()
-{
-    CFStringRef exeContainerPath = CFURLCopyFileSystemPath(CFURLCreateCopyDeletingLastPathComponent(0, CFBundleCopyExecutableURL(CFBundleGetMainBundle())), kCFURLWindowsPathStyle);
-    CFMutableStringRef bundlePath = CFStringCreateMutableCopy(0, 0, exeContainerPath);
-    CFStringAppendCString(bundlePath, injectedBundleDLL, kCFStringEncodingWindowsLatin1);
-    m_injectedBundlePath.adopt(WKStringCreateWithCFString(bundlePath));
-}
-
-void TestController::initializeTestPluginDirectory()
-{
-    RetainPtr<CFURLRef> bundleURL(AdoptCF, CFBundleCopyExecutableURL(CFBundleGetMainBundle()));
-    RetainPtr<CFURLRef> bundleDirectoryURL(AdoptCF, CFURLCreateCopyDeletingLastPathComponent(0, bundleURL.get()));
-    RetainPtr<CFStringRef> testPluginDirectoryNameString(AdoptCF, CFStringCreateWithCharacters(0, reinterpret_cast<const UniChar*>(testPluginDirectoryName), wcslen(testPluginDirectoryName)));
-    RetainPtr<CFURLRef> testPluginDirectoryURL(AdoptCF, CFURLCreateCopyAppendingPathComponent(0, bundleDirectoryURL.get(), testPluginDirectoryNameString.get(), true));
-    RetainPtr<CFStringRef> testPluginDirectoryPath(AdoptCF, CFURLCopyFileSystemPath(testPluginDirectoryURL.get(), kCFURLWindowsPathStyle));
-    m_testPluginDirectory.adopt(WKStringCreateWithCFString(testPluginDirectoryPath.get()));
-}
-
-enum RunLoopResult { TimedOut, ObjectSignaled, ConditionSatisfied };
-
-static RunLoopResult runRunLoopUntil(bool& condition, HANDLE object, double timeout)
-{
-    DWORD end = ::GetTickCount() + timeout * 1000;
-    while (!condition) {
-        DWORD now = ::GetTickCount();
-        if (now > end)
-            return TimedOut;
-
-        DWORD objectCount = object ? 1 : 0;
-        const HANDLE* objects = object ? &object : 0;
-        DWORD result = ::MsgWaitForMultipleObjectsEx(objectCount, objects, end - now, QS_ALLINPUT, MWMO_INPUTAVAILABLE);
-        if (result == WAIT_TIMEOUT)
-            return TimedOut;
-
-        if (objectCount && result >= WAIT_OBJECT_0 && result < WAIT_OBJECT_0 + objectCount)
-            return ObjectSignaled;
-
-        ASSERT(result == WAIT_OBJECT_0 + objectCount);
-        // There are messages in the queue. Process them.
-        MSG msg;
-        while (::PeekMessageW(&msg, 0, 0, 0, PM_REMOVE)) {
-            ::TranslateMessage(&msg);
-            ::DispatchMessageW(&msg);
-        }
-    }
-
-    return ConditionSatisfied;
-}
-
-void TestController::platformRunUntil(bool& done, double timeout)
-{
-    // FIXME: No timeout should occur if timeout is equal to m_noTimeout (necessary when running performance tests).
-    RunLoopResult result = runRunLoopUntil(done, webProcessCrashingEvent, timeout);
-    if (result == TimedOut || result == ConditionSatisfied)
-        return;
-    ASSERT(result == ObjectSignaled);
-
-    // The web process is crashing. A crash log might be being saved, which can take a long
-    // time, and we don't want to time out while that happens.
-
-    // First, let the test harness know this happened so it won't think we've hung. But
-    // make sure we don't exit just yet!
-    m_shouldExitWhenWebProcessCrashes = false;
-    processDidCrash();
-    m_shouldExitWhenWebProcessCrashes = true;
-
-    // Then spin a run loop until it finishes crashing to give time for a crash log to be saved. If
-    // it takes too long for a crash log to be saved, we'll just give up.
-    bool neverSetCondition = false;
-    result = runRunLoopUntil(neverSetCondition, 0, maximumWaitForWebProcessToCrash);
-    ASSERT_UNUSED(result, result == TimedOut);
-    exit(1);
-}
-
-static WKRetainPtr<WKStringRef> toWK(const char* string)
-{
-    return WKRetainPtr<WKStringRef>(AdoptWK, WKStringCreateWithUTF8CString(string));
-}
-
-void TestController::platformInitializeContext()
-{
-    // FIXME: Make DRT pass with Windows native controls. <http://webkit.org/b/25592>
-    WKContextSetShouldPaintNativeControls(m_context.get(), false);
-
-    WKContextSetInitializationUserDataForInjectedBundle(m_context.get(), toWK(webProcessCrashingEventName).get());
-}
-
-void TestController::runModal(PlatformWebView*)
-{
-    // FIXME: Need to implement this to test showModalDialog.
-}
-
-const char* TestController::platformLibraryPathForTesting()
-{
-    return 0;
-}
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/win/TestInvocationWin.cpp b/Tools/WebKitTestRunner/win/TestInvocationWin.cpp
deleted file mode 100644
index 8945aa6..0000000
--- a/Tools/WebKitTestRunner/win/TestInvocationWin.cpp
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "TestInvocation.h"
-
-namespace WTR {
-
-#if !USE(CG) && !USE(CAIRO)
-void TestInvocation::dumpPixelsAndCompareWithExpected(WKImageRef, WKArrayRef)
-{
-}
-#endif
-
-} // namespace WTR
diff --git a/Tools/WebKitTestRunner/win/WebKitTestRunner.vcproj b/Tools/WebKitTestRunner/win/WebKitTestRunner.vcproj
deleted file mode 100644
index d2d79ee..0000000
--- a/Tools/WebKitTestRunner/win/WebKitTestRunner.vcproj
+++ /dev/null
@@ -1,540 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WebKitTestRunner"
-	ProjectGUID="{3B99669B-1817-443B-BCBE-835580146668}"
-	RootNamespace="WebKitTestRunner"
-	Keyword="Win32Proj"
-	>
-	<Platforms>
-		<Platform
-			Name="Win32"
-		/>
-	</Platforms>
-	<ToolFiles>
-	</ToolFiles>
-	<Configurations>
-		<Configuration
-			Name="Debug|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\WebKitTestRunnerDebug.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\WebKitTestRunnerRelease.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_All|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\WebKitTestRunnerDebugAll.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_Cairo_CFLite|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\WebKitTestRunnerDebugCairoCFLite.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release_Cairo_CFLite|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\WebKitTestRunnerReleaseCairoCFLite.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Production|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\WebKitTestRunnerProduction.vsprops"
-			CharacterSet="1"
-			WholeProgramOptimization="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-	</Configurations>
-	<References>
-	</References>
-	<Files>
-		<Filter
-			Name="win"
-			>
-			<File
-				RelativePath=".\main.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\PlatformWebViewWin.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\TestControllerWin.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\TestInvocationWin.cpp"
-				>
-			</File>
-		</Filter>
-		<Filter
-			Name="cg"
-			>
-			<File
-				RelativePath="..\cg\TestInvocationCG.cpp"
-				>
-				<FileConfiguration
-					Name="Debug_Cairo_CFLite|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release_Cairo_CFLite|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-			</File>
-		</Filter>
-		<Filter
-			Name="cairo"
-			>
-			<File
-				RelativePath="..\cairo\TestInvocationCairo.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Debug_All|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Production|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-			</File>
-		</Filter>
-		<File
-			RelativePath="..\CyclicRedundancyCheck.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\CyclicRedundancyCheck.h"
-			>
-		</File>
-		<File
-			RelativePath="..\GeolocationProviderMock.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\GeolocationProviderMock.h"
-			>
-		</File>
-		<File
-			RelativePath="..\PixelDumpSupport.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\PixelDumpSupport.h"
-			>
-		</File>
-		<File
-			RelativePath="..\PlatformWebView.h"
-			>
-		</File>
-		<File
-			RelativePath="..\TestController.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\TestController.h"
-			>
-		</File>
-		<File
-			RelativePath="..\TestInvocation.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\TestInvocation.h"
-			>
-		</File>
-		<File
-			RelativePath="..\WebNotificationProvider.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\WebNotificationProvider.h"
-			>
-		</File>
-		<File
-			RelativePath="..\WebKitTestRunnerPrefix.h"
-			>
-		</File>
-		<File
-			RelativePath="..\WorkQueueManager.cpp"
-			>
-		</File>
-		<File
-			RelativePath="..\WorkQueueManager.h"
-			>
-		</File>
-	</Files>
-	<Globals>
-	</Globals>
-</VisualStudioProject>
diff --git a/Tools/WebKitTestRunner/win/WebKitTestRunnerDebug.vsprops b/Tools/WebKitTestRunner/win/WebKitTestRunnerDebug.vsprops
deleted file mode 100644
index 000f97c..0000000
--- a/Tools/WebKitTestRunner/win/WebKitTestRunnerDebug.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WebKitTestRunnerDebug"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;..\Configurations\WebKitTestRunnerCommon.vsprops;..\Configurations\WebKitTestRunnerCoreFoundation.vsprops;..\Configurations\WebKitTestRunnerCoreGraphics.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitTestRunner/win/WebKitTestRunnerDebugAll.vsprops b/Tools/WebKitTestRunner/win/WebKitTestRunnerDebugAll.vsprops
deleted file mode 100644
index 3f8cec8..0000000
--- a/Tools/WebKitTestRunner/win/WebKitTestRunnerDebugAll.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WebKitTestRunnerDebugAll"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug_all.vsprops;..\Configurations\WebKitTestRunnerCommon.vsprops;..\Configurations\WebKitTestRunnerCoreFoundation.vsprops;..\Configurations\WebKitTestRunnerCoreGraphics.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitTestRunner/win/WebKitTestRunnerDebugCairoCFLite.vsprops b/Tools/WebKitTestRunner/win/WebKitTestRunnerDebugCairoCFLite.vsprops
deleted file mode 100644
index 3107f9c..0000000
--- a/Tools/WebKitTestRunner/win/WebKitTestRunnerDebugCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WebKitTestRunnerDebugCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug_wincairo.vsprops;..\Configurations\WebKitTestRunnerCommon.vsprops;..\Configurations\WebKitTestRunnerCFLite.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitTestRunner/win/WebKitTestRunnerLauncher.vcproj b/Tools/WebKitTestRunner/win/WebKitTestRunnerLauncher.vcproj
deleted file mode 100644
index b29fa55..0000000
--- a/Tools/WebKitTestRunner/win/WebKitTestRunnerLauncher.vcproj
+++ /dev/null
@@ -1,396 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WebKitTestRunnerLauncher"
-	ProjectGUID="{C13FA6EF-B531-4BAD-9A23-18E2BEB8B040}"
-	RootNamespace="WebKitTestRunnerLauncher"
-	Keyword="Win32Proj"
-	>
-	<Platforms>
-		<Platform
-			Name="Win32"
-		/>
-	</Platforms>
-	<ToolFiles>
-	</ToolFiles>
-	<Configurations>
-		<Configuration
-			Name="Debug|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\WebKitTestRunnerLauncherDebug.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\WebKitTestRunnerLauncherRelease.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_Cairo_CFLite|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\WebKitTestRunnerLauncherDebugCairoCFLite.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_All|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\WebKitTestRunnerLauncherDebugAll.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Production|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\WebKitTestRunnerLauncherProduction.vsprops"
-			CharacterSet="1"
-			WholeProgramOptimization="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release_Cairo_CFLite|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\WebKitTestRunnerLauncherReleaseCairoCFLite.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-	</Configurations>
-	<References>
-	</References>
-	<Files>
-		<File
-			RelativePath="..\..\win\DLLLauncher\DLLLauncherMain.cpp"
-			>
-		</File>
-	</Files>
-	<Globals>
-	</Globals>
-</VisualStudioProject>
diff --git a/Tools/WebKitTestRunner/win/WebKitTestRunnerLauncherCommon.vsprops b/Tools/WebKitTestRunner/win/WebKitTestRunnerLauncherCommon.vsprops
deleted file mode 100644
index 02ccc64..0000000
--- a/Tools/WebKitTestRunner/win/WebKitTestRunnerLauncherCommon.vsprops
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WebKitTestRunnerLauncherCommon"
-	>
-	<Tool
-		Name="VCCLCompilerTool"
-		PreprocessorDefinitions="USE_CONSOLE_ENTRY_POINT"
-	/>
-	<Tool
-		Name="VCLinkerTool"
-		AdditionalDependencies="shlwapi.lib"
-		OutputFile="$(OutDir)\WebKitTestRunner$(WebKitConfigSuffix).exe"
-		ProgramDatabaseFile="$(TargetDir)$(TargetName)Launcher.pdb"
-		SubSystem="1"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitTestRunner/win/WebKitTestRunnerLauncherDebug.vsprops b/Tools/WebKitTestRunner/win/WebKitTestRunnerLauncherDebug.vsprops
deleted file mode 100644
index 1d7190e..0000000
--- a/Tools/WebKitTestRunner/win/WebKitTestRunnerLauncherDebug.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WebKitTestRunnerLauncherDebug"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;.\WebKitTestRunnerLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitTestRunner/win/WebKitTestRunnerLauncherDebugAll.vsprops b/Tools/WebKitTestRunner/win/WebKitTestRunnerLauncherDebugAll.vsprops
deleted file mode 100644
index 06928e1..0000000
--- a/Tools/WebKitTestRunner/win/WebKitTestRunnerLauncherDebugAll.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WebKitTestRunnerLauncherDebugAll"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug_all.vsprops;.\WebKitTestRunnerLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitTestRunner/win/WebKitTestRunnerLauncherDebugCairoCFLite.vsprops b/Tools/WebKitTestRunner/win/WebKitTestRunnerLauncherDebugCairoCFLite.vsprops
deleted file mode 100644
index 7745ad5..0000000
--- a/Tools/WebKitTestRunner/win/WebKitTestRunnerLauncherDebugCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WebKitTestRunnerDebugCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;.\WebKitTestRunnerLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitTestRunner/win/WebKitTestRunnerLauncherProduction.vsprops b/Tools/WebKitTestRunner/win/WebKitTestRunnerLauncherProduction.vsprops
deleted file mode 100644
index 1e5a125..0000000
--- a/Tools/WebKitTestRunner/win/WebKitTestRunnerLauncherProduction.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WebKitTestRunnerLauncherProduction"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\production.vsprops;.\WebKitTestRunnerLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitTestRunner/win/WebKitTestRunnerLauncherRelease.vsprops b/Tools/WebKitTestRunner/win/WebKitTestRunnerLauncherRelease.vsprops
deleted file mode 100644
index bc9b755..0000000
--- a/Tools/WebKitTestRunner/win/WebKitTestRunnerLauncherRelease.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WebKitTestRunnerLauncherRelease"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;.\WebKitTestRunnerLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitTestRunner/win/WebKitTestRunnerLauncherReleaseCairoCFLite.vsprops b/Tools/WebKitTestRunner/win/WebKitTestRunnerLauncherReleaseCairoCFLite.vsprops
deleted file mode 100644
index b2e5bee..0000000
--- a/Tools/WebKitTestRunner/win/WebKitTestRunnerLauncherReleaseCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WebKitTestRunnerLauncherReleaseCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;.\WebKitTestRunnerLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitTestRunner/win/WebKitTestRunnerPostBuild.cmd b/Tools/WebKitTestRunner/win/WebKitTestRunnerPostBuild.cmd
deleted file mode 100644
index cf7272a..0000000
--- a/Tools/WebKitTestRunner/win/WebKitTestRunnerPostBuild.cmd
+++ /dev/null
@@ -1,36 +0,0 @@
-if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed"
-
-if not defined ARCHIVE_BUILD (if defined PRODUCTION exit /b)
-
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\bin"
-
-if not exist "%WEBKITLIBRARIESDIR%\bin\CoreFoundation%LIBRARYCONFIGSUFFIX%.dll" exit /b
-
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\CoreFoundation%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\CoreFoundation%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\CFNetwork%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\CFNetwork%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d /e /i "%WEBKITLIBRARIESDIR%\bin\CFNetwork.resources" "%CONFIGURATIONBUILDDIR%\bin\CFNetwork.resources"
-xcopy /y /d /e /i "%WEBKITLIBRARIESDIR%\bin\CoreFoundation.resources" "%CONFIGURATIONBUILDDIR%\bin\CoreFoundation.resources"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\CoreGraphics%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\CoreGraphics%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icudt40.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icudt40.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icudt40%LIBRARYCONFIGSUFFIX%.dll"xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icudt40%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icuin40%LIBRARYCONFIGSUFFIX%.dll"xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icuin40%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icuin40%LIBRARYCONFIGSUFFIX%.pdb"xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icuin40%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icuuc40%LIBRARYCONFIGSUFFIX%.dll"xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icuuc40%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icuuc40%LIBRARYCONFIGSUFFIX%.pdb"xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icuuc40%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icudt42.dll" xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icudt42.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icudt42%LIBRARYCONFIGSUFFIX%.dll"xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icudt42%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icuin42%LIBRARYCONFIGSUFFIX%.dll"xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icuin42%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icuin42%LIBRARYCONFIGSUFFIX%.pdb"xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icuin42%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icuuc42%LIBRARYCONFIGSUFFIX%.dll"xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icuuc42%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-if exist "%WEBKITLIBRARIESDIR%\bin\icuuc42%LIBRARYCONFIGSUFFIX%.pdb"xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\icuuc42%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\libxml2%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\libxslt%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\pthreadVC2%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\pthreadVC2%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\SQLite3%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\SQLite3%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\zlib1%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
-xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\zlib1%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"
diff --git a/Tools/WebKitTestRunner/win/WebKitTestRunnerPreBuild.cmd b/Tools/WebKitTestRunner/win/WebKitTestRunnerPreBuild.cmd
deleted file mode 100644
index a770776..0000000
--- a/Tools/WebKitTestRunner/win/WebKitTestRunnerPreBuild.cmd
+++ /dev/null
@@ -1,6 +0,0 @@
-%SystemDrive%\cygwin\bin\which.exe bash
-if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
-cmd /c
-if exist "%CONFIGURATIONBUILDDIR%\buildfailed" grep XX%PROJECTNAME%XX "%CONFIGURATIONBUILDDIR%\buildfailed"
-if errorlevel 1 exit 1
-echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed"
diff --git a/Tools/WebKitTestRunner/win/WebKitTestRunnerProduction.vsprops b/Tools/WebKitTestRunner/win/WebKitTestRunnerProduction.vsprops
deleted file mode 100644
index 6f48bc8..0000000
--- a/Tools/WebKitTestRunner/win/WebKitTestRunnerProduction.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WebKitTestRunnerProduction"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\production.vsprops;..\Configurations\WebKitTestRunnerCommon.vsprops;..\Configurations\WebKitTestRunnerCoreFoundation.vsprops;..\Configurations\WebKitTestRunnerCoreGraphics.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitTestRunner/win/WebKitTestRunnerRelease.vsprops b/Tools/WebKitTestRunner/win/WebKitTestRunnerRelease.vsprops
deleted file mode 100644
index ce5b18d..0000000
--- a/Tools/WebKitTestRunner/win/WebKitTestRunnerRelease.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WebKitTestRunnerRelease"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;..\Configurations\WebKitTestRunnerCommon.vsprops;..\Configurations\WebKitTestRunnerCoreFoundation.vsprops;..\Configurations\WebKitTestRunnerCoreGraphics.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitTestRunner/win/WebKitTestRunnerReleaseCairoCFLite.vsprops b/Tools/WebKitTestRunner/win/WebKitTestRunnerReleaseCairoCFLite.vsprops
deleted file mode 100644
index 990946c..0000000
--- a/Tools/WebKitTestRunner/win/WebKitTestRunnerReleaseCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WebKitTestRunnerReleaseCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;$(WebKitVSPropsRedirectionDir)..\..\..\WebKitLibraries\win\tools\vsprops\WinCairo.vsprops;..\Configurations\WebKitTestRunnerCommon.vsprops;..\Configurations\WebKitTestRunnerCFLite.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WebKitTestRunner/win/build-generated-files.sh b/Tools/WebKitTestRunner/win/build-generated-files.sh
deleted file mode 100755
index 8c599c1..0000000
--- a/Tools/WebKitTestRunner/win/build-generated-files.sh
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright (C) 2010 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
-# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
-# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-# THE POSSIBILITY OF SUCH DAMAGE.
-
-# Calls to `cygpath -ms` below are needed to remove spaces from paths, which
-# confuse GNU make. See <http://webkit.org/b/8173>.
-
-WebKitOutputDir=$(cygpath -u "$(cygpath -ms "${1}")")
-WebKitLibrariesDir=$(cygpath -u "$(cygpath -ms "${2}")")
-DerivedSources="${WebKitOutputDir}/obj/InjectedBundle/DerivedSources"
-
-export WebKitTestRunner=$(cygpath -u "$(cygpath -ms "$(realpath ..)")")
-
-if [ -e "${WebKitOutputDir}/obj/WebCore/scripts" ]; then
-    export WebCoreScripts="${WebKitOutputDir}/obj/WebCore/scripts"
-else
-    export WebCoreScripts="${WebKitLibrariesDir}/tools/scripts"
-fi
-
-mkdir -p "${DerivedSources}"
-cd "${DerivedSources}"
-
-make -f "${WebKitTestRunner}/DerivedSources.make"
diff --git a/Tools/WebKitTestRunner/win/main.cpp b/Tools/WebKitTestRunner/win/main.cpp
deleted file mode 100644
index c511be5..0000000
--- a/Tools/WebKitTestRunner/win/main.cpp
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * Copyright (C) 2010 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-
-#include "TestController.h"
-
-extern "C" __declspec(dllexport) int WINAPI dllLauncherEntryPoint(int argc, const char* argv[])
-{
-    {
-        WTR::TestController controller(argc, argv);
-    }
-
-    return 0;
-}
diff --git a/Tools/WinCELauncher/CMakeLists.txt b/Tools/WinCELauncher/CMakeLists.txt
deleted file mode 100644
index 06f70ca..0000000
--- a/Tools/WinCELauncher/CMakeLists.txt
+++ /dev/null
@@ -1,27 +0,0 @@
-set(WinCELauncher_INCLUDE_DIRECTORIES
-    "${WEBKIT_DIR}/wince"
-    "${WEBCORE_DIR}"
-    "${WEBCORE_DIR}/platform"
-    "${WEBCORE_DIR}/platform/graphics"
-    "${WEBCORE_DIR}/platform/network"
-    "${WEBCORE_DIR}/platform/text"
-    "${JAVASCRIPTCORE_DIR}"
-    "${WTF_DIR}"
-    "${DERIVED_SOURCES_DIR}"
-    "${CMAKE_BINARY_DIR}"
-)
-
-set(WinCELauncher_SOURCES
-    ${TOOLS_DIR}/WinCELauncher/main.cpp
-)
-
-set(WinCELauncher_LIBRARIES
-    ${WebKit_LIBRARY_NAME}
-)
-
-include_directories(${WinCELauncher_INCLUDE_DIRECTORIES})
-add_executable(WinCELauncher WIN32 ${WinCELauncher_SOURCES})
-add_dependencies(WinCELauncher ${WebKit_LIBRARY_NAME})
-target_link_libraries(WinCELauncher ${WinCELauncher_LIBRARIES})
-set_target_properties(WinCELauncher PROPERTIES FOLDER "Tools")
-set_target_properties(WinCELauncher PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}")
diff --git a/Tools/WinCELauncher/main.cpp b/Tools/WinCELauncher/main.cpp
deleted file mode 100644
index e0f2a51..0000000
--- a/Tools/WinCELauncher/main.cpp
+++ /dev/null
@@ -1,133 +0,0 @@
-/*
- * Copyright (C) 2010 Patrick Gansterer <paroga@paroga.com>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "WebView.h"
-#include <windows.h>
-#include <wtf/PassOwnPtr.h>
-
-static const LPCWSTR kMainWindowTitle = L"WebKit for WinCE";
-static const LPCWSTR kMainWindowClassName = L"MainWindowClass";
-
-
-static LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
-{
-    switch (message) {
-    case WM_DESTROY:
-        PostQuitMessage(0);
-        break;
-
-    default:
-        return DefWindowProc(hWnd, message, wParam, lParam);
-    }
-
-    return 0;
-}
-
-int APIENTRY _tWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmdShow)
-{
-    UNREFERENCED_PARAMETER(hPrevInstance);
-
-    CoInitializeEx(0, COINIT_MULTITHREADED);
-    WebView::initialize(hInstance);
-
-    LPCWSTR homeUrl = lpCmdLine;
-    bool enableDoubleBuffer = true;
-    bool fullscreen = false;
-
-    if (homeUrl[0] == '-') {
-        for (; *homeUrl && *homeUrl != ' '; ++homeUrl) {
-            switch (*homeUrl) {
-            case 'd':
-                enableDoubleBuffer = false;
-                break;
-            case 'f':
-                fullscreen = true;
-                break;
-            default:
-                break;
-            }
-        }
-        if (*homeUrl)
-            ++homeUrl;
-    }
-
-    DWORD styles = WS_VISIBLE;
-
-    if (!fullscreen) {
-        styles |= WS_CAPTION
-            | WS_MAXIMIZEBOX
-            | WS_MINIMIZEBOX
-            | WS_OVERLAPPED
-            | WS_SYSMENU
-            | WS_THICKFRAME;
-    }
-
-    WNDCLASSW wc;
-    wc.style          = CS_HREDRAW | CS_VREDRAW;
-    wc.lpfnWndProc    = WndProc;
-    wc.cbClsExtra     = 0;
-    wc.cbWndExtra     = 0;
-    wc.hInstance      = hInstance;
-    wc.hIcon          = 0;
-    wc.hCursor        = 0;
-    wc.hbrBackground  = static_cast<HBRUSH>(GetStockObject(WHITE_BRUSH));
-    wc.lpszMenuName   = 0;
-    wc.lpszClassName  = kMainWindowClassName;
-    RegisterClass(&wc);
-
-    HWND hMainWindow = CreateWindowW(kMainWindowClassName, kMainWindowTitle, styles,
-        CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, 0, 0, hInstance, 0);
-
-    if (fullscreen) {
-        SetWindowPos(hMainWindow, HWND_TOPMOST, 0, 0, GetSystemMetrics(SM_CXSCREEN),
-            GetSystemMetrics(SM_CYSCREEN), SWP_SHOWWINDOW);
-    }
-
-    ShowWindow(hMainWindow, nCmdShow);
-    UpdateWindow(hMainWindow);
-
-    WTF::OwnPtr<WebView> webView = WTF::adoptPtr(new WebView(hMainWindow, enableDoubleBuffer ? WebView::EnableDoubleBuffering : WebView::NoFeature));
-    webView->load(homeUrl);
-
-    // Main message loop:
-    MSG msg;
-    BOOL bRet;
-    while (bRet = GetMessage(&msg, 0, 0, 0)) {
-        if (bRet == -1) {
-            // FIXME: Handle the error and possibly exit.
-        } else {
-            TranslateMessage(&msg);
-            DispatchMessage(&msg);
-        }
-    }
-
-    webView.clear();
-    DestroyWindow(hMainWindow);
-
-    WebView::cleanup();
-    CoUninitialize();
-
-    return msg.wParam;
-}
diff --git a/Tools/WinLauncher/DOMDefaultImpl.h b/Tools/WinLauncher/DOMDefaultImpl.h
deleted file mode 100644
index a8f5ed5..0000000
--- a/Tools/WinLauncher/DOMDefaultImpl.h
+++ /dev/null
@@ -1,156 +0,0 @@
-/*
- * Copyright (C) 2011 Anthony Johnson. All Rights Reserved.
- * Copyright (C) 2011 Brent Fulgham. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#ifndef DOMDefaultImpl_h
-#define DOMDefaultImpl_h
-
-#include <WebKit/WebKit.h>
-
-class WebScriptObject : public IWebScriptObject {
-public:
-    WebScriptObject() : m_refCount(0)
-    {
-    }
-
-    virtual ~WebScriptObject()
-    {
-    }
-
-    // IUnknown
-    virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppvObject);
-    virtual ULONG STDMETHODCALLTYPE AddRef(void);
-    virtual ULONG STDMETHODCALLTYPE Release(void);
-
-    // IWebScriptObject
-    virtual HRESULT STDMETHODCALLTYPE throwException(BSTR, BOOL*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE callWebScriptMethod(BSTR, const VARIANT[], int, VARIANT*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE evaluateWebScript(BSTR, VARIANT*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE removeWebScriptKey(BSTR) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE stringRepresentation(BSTR*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE webScriptValueAtIndex(unsigned int, VARIANT*)  { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE setWebScriptValueAtIndex(unsigned int, VARIANT)  { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE setException(BSTR)  { return E_NOTIMPL; }
-
-protected:
-    ULONG m_refCount;
-};
-
-
-class DOMObject : public WebScriptObject, public IDOMObject {
-public:
-    // IUnknown
-    virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppvObject);
-};
-
-
-class DOMEventListener : public DOMObject, public IDOMEventListener {
-public:
-    // IUnknown
-    virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppvObject);
-    virtual ULONG STDMETHODCALLTYPE AddRef(void);
-    virtual ULONG STDMETHODCALLTYPE Release(void);
-
-    // IWebScriptObject
-    virtual HRESULT STDMETHODCALLTYPE throwException(BSTR, BOOL*)  { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE callWebScriptMethod(BSTR, const VARIANT[], int, VARIANT*)  { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE evaluateWebScript(BSTR, VARIANT*)  { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE removeWebScriptKey(BSTR)  { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE stringRepresentation(BSTR*)  { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE webScriptValueAtIndex(unsigned int, VARIANT*)  { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE setWebScriptValueAtIndex(unsigned int, VARIANT)  { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE setException(BSTR) { return E_NOTIMPL; }
-
-    // IDOMEventListener
-    virtual HRESULT STDMETHODCALLTYPE handleEvent(IDOMEvent*) { return E_NOTIMPL; }
-};
-
-// IUnknown -------------------------------------------------------------------
-HRESULT WebScriptObject::QueryInterface(REFIID riid, void** ppvObject)
-{
-    *ppvObject = 0;
-    if (IsEqualGUID(riid, IID_IUnknown))
-        *ppvObject = static_cast<IWebScriptObject*>(this);
-    else if (IsEqualGUID(riid, IID_IWebScriptObject))
-        *ppvObject = static_cast<IWebScriptObject*>(this);
-    else
-        return E_NOINTERFACE;
-
-    AddRef();
-    return S_OK;
-}
-
-ULONG WebScriptObject::AddRef(void)
-{
-    return ++m_refCount;
-}
-
-ULONG WebScriptObject::Release(void)
-{
-    ULONG newRef = --m_refCount;
-    if (!newRef)
-        delete(this);
-
-    return newRef;
-}
-
-// DOMObject -------------------------------------------------------------------
-HRESULT DOMObject::QueryInterface(REFIID riid, void** ppvObject)
-{
-    *ppvObject = 0;
-    if (IsEqualGUID(riid, IID_IDOMObject))
-        *ppvObject = static_cast<IDOMObject*>(this);
-    else
-        return WebScriptObject::QueryInterface(riid, ppvObject);
-
-    WebScriptObject::AddRef();
-    return S_OK;
-}
-
-
-// DOMEventListener -------------------------------------------------------------------
-HRESULT DOMEventListener::QueryInterface(const IID &riid, void** ppvObject)
-{
-    *ppvObject = 0;
-    if (IsEqualGUID(riid, IID_IDOMEventListener))
-        *ppvObject = static_cast<IDOMEventListener*>(this);
-    else
-        return DOMObject::QueryInterface(riid, ppvObject);
-
-    AddRef();
-    return S_OK;
-}
-
-ULONG DOMEventListener::AddRef(void)
-{
-    return WebScriptObject::AddRef();
-}
-
-ULONG DOMEventListener::Release(void)
-{
-    return WebScriptObject::Release();
-}
-
-#endif
diff --git a/Tools/WinLauncher/PrintWebUIDelegate.cpp b/Tools/WinLauncher/PrintWebUIDelegate.cpp
deleted file mode 100644
index 3e92144..0000000
--- a/Tools/WinLauncher/PrintWebUIDelegate.cpp
+++ /dev/null
@@ -1,193 +0,0 @@
-/*
- * Copyright (C) 2009 Apple Inc. All Rights Reserved.
- * Copyright (C) 2009 Brent Fulgham. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#include "stdafx.h"
-#include "PrintWebUIDelegate.h"
-
-#include <WebKit/WebKitCOMAPI.h>
-#include <commctrl.h>
-#include <commdlg.h>
-#include <objbase.h>
-#include <shlwapi.h>
-#include <wininet.h>
-
-static const int MARGIN = 20;
-
-HRESULT PrintWebUIDelegate::QueryInterface(REFIID riid, void** ppvObject)
-{
-    *ppvObject = 0;
-    if (IsEqualIID(riid, IID_IUnknown))
-        *ppvObject = static_cast<IWebUIDelegate*>(this);
-    else if (IsEqualIID(riid, IID_IWebUIDelegate))
-        *ppvObject = static_cast<IWebUIDelegate*>(this);
-    else
-        return E_NOINTERFACE;
-
-    AddRef();
-    return S_OK;
-}
-
-ULONG PrintWebUIDelegate::AddRef(void)
-{
-    return ++m_refCount;
-}
-
-ULONG PrintWebUIDelegate::Release(void)
-{
-    ULONG newRef = --m_refCount;
-    if (!newRef)
-        delete this;
-
-    return newRef;
-}
-
-HRESULT PrintWebUIDelegate::webViewPrintingMarginRect(IWebView* view, RECT* rect)
-{
-    if (!view || !rect)
-        return E_POINTER;
-
-    IWebFrame* mainFrame = 0;
-    if (FAILED(view->mainFrame(&mainFrame)))
-        return E_FAIL;
-
-    IWebFramePrivate* privateFrame = 0;
-    if (FAILED(mainFrame->QueryInterface(&privateFrame))) {
-        mainFrame->Release();
-        return E_FAIL;
-    }
-
-    privateFrame->frameBounds(rect);
-
-    rect->left += MARGIN;
-    rect->top += MARGIN;
-    HDC dc = ::GetDC(0);
-    rect->right = (::GetDeviceCaps(dc, LOGPIXELSX) * 6.5) - MARGIN;
-    rect->bottom = (::GetDeviceCaps(dc, LOGPIXELSY) * 11) - MARGIN;
-    ::ReleaseDC(0, dc);
-
-    privateFrame->Release();
-    mainFrame->Release();
-
-    return S_OK;
-}
-
-HRESULT PrintWebUIDelegate::webViewHeaderHeight(IWebView* webView, float* height)
-{
-    if (!webView || !height)
-        return E_POINTER;
-
-    HDC dc = ::GetDC(0);
-
-    TEXTMETRIC textMetric;
-    ::GetTextMetrics(dc, &textMetric);
-    ::ReleaseDC(0, dc);
-
-    *height = 1.1 * textMetric.tmHeight;
-
-    return S_OK;
-}
-
-HRESULT PrintWebUIDelegate::webViewFooterHeight(IWebView* webView, float* height)
-{
-    if (!webView || !height)
-        return E_POINTER;
-
-    HDC dc = ::GetDC(0);
-
-    TEXTMETRIC textMetric;
-    ::GetTextMetrics(dc, &textMetric);
-    ::ReleaseDC(0, dc);
-
-    *height = 1.1 * textMetric.tmHeight;
-
-    return S_OK;
-}
-
-HRESULT PrintWebUIDelegate::drawHeaderInRect(
-            /* [in] */ IWebView* webView,
-            /* [in] */ RECT* rect,
-            /* [in] */ OLE_HANDLE drawingContext)
-{
-    if (!webView || !rect)
-        return E_POINTER;
-
-    // Turn off header for now.
-    HDC dc = reinterpret_cast<HDC>(drawingContext);
-
-    HGDIOBJ hFont = ::GetStockObject(ANSI_VAR_FONT);
-    HGDIOBJ hOldFont = ::SelectObject(dc, hFont);
-
-    LPCWSTR header = L"[Sample Header]";
-    size_t length = wcslen(header);
-
-    int rc = ::DrawTextW(dc, header, length, rect, DT_LEFT | DT_NOCLIP | DT_VCENTER | DT_SINGLELINE);
-    ::SelectObject(dc, hOldFont);
-
-    if (!rc)
-        return E_FAIL;
-
-    ::MoveToEx(dc, rect->left, rect->bottom, 0);
-    HGDIOBJ hPen = ::GetStockObject(BLACK_PEN);
-    HGDIOBJ hOldPen = ::SelectObject(dc, hPen);
-    ::LineTo(dc, rect->right, rect->bottom);
-    ::SelectObject(dc, hOldPen);
-
-    return S_OK;
-}
-
-HRESULT PrintWebUIDelegate::drawFooterInRect(
-            /* [in] */ IWebView* webView,
-            /* [in] */ RECT* rect,
-            /* [in] */ OLE_HANDLE drawingContext,
-            /* [in] */ UINT pageIndex,
-            /* [in] */ UINT pageCount)
-{
-    if (!webView || !rect)
-        return E_POINTER;
-
-    HDC dc = reinterpret_cast<HDC>(drawingContext);
-
-    HGDIOBJ hFont = ::GetStockObject(ANSI_VAR_FONT);
-    HGDIOBJ hOldFont = ::SelectObject(dc, hFont);
-
-    LPCWSTR footer = L"[Sample Footer]";
-    size_t length = wcslen(footer);
-
-    // Add a line, 1/10th inch above the footer text from left margin to right margin.
-    ::MoveToEx(dc, rect->left, rect->top, 0);
-    HGDIOBJ hPen = ::GetStockObject(BLACK_PEN);
-    HGDIOBJ hOldPen = ::SelectObject(dc, hPen);
-    ::LineTo(dc, rect->right, rect->top);
-    ::SelectObject(dc, hOldPen);
-
-    int rc = ::DrawTextW(dc, footer, length, rect, DT_LEFT | DT_NOCLIP | DT_VCENTER | DT_SINGLELINE);
-    ::SelectObject(dc, hOldFont);
-
-    if (!rc)
-        return E_FAIL;
-
-    return S_OK;
-}
diff --git a/Tools/WinLauncher/PrintWebUIDelegate.h b/Tools/WinLauncher/PrintWebUIDelegate.h
deleted file mode 100644
index 9749a98..0000000
--- a/Tools/WinLauncher/PrintWebUIDelegate.h
+++ /dev/null
@@ -1,109 +0,0 @@
-/*
- * Copyright (C) 2009 Apple Inc. All Rights Reserved.
- * Copyright (C) 2009 Brent Fulgham. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#ifndef PrintWebUIDelegate_h
-#define PrintWebUIDelegate_h
-
-#include <WebKit/WebKit.h>
-
-class PrintWebUIDelegate : public IWebUIDelegate {
-public:
-    PrintWebUIDelegate() : m_refCount(1) {}
-
-    // IUnknown
-    virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppvObject);
-    virtual ULONG STDMETHODCALLTYPE AddRef(void);
-    virtual ULONG STDMETHODCALLTYPE Release(void);
-
-    virtual HRESULT STDMETHODCALLTYPE createWebViewWithRequest(IWebView*, IWebURLRequest*, IWebView**) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE webViewShow(IWebView*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE webViewClose(IWebView*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE webViewFocus(IWebView*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE webViewUnfocus(IWebView*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE webViewFirstResponder(IWebView*, OLE_HANDLE*)  { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE makeFirstResponder(IWebView*, OLE_HANDLE) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE setStatusText(IWebView*, BSTR) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE webViewStatusText(IWebView*, BSTR*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE webViewAreToolbarsVisible(IWebView*, BOOL*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE setToolbarsVisible(IWebView*, BOOL) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE webViewIsStatusBarVisible(IWebView*, BOOL*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE setStatusBarVisible(IWebView*, BOOL) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE webViewIsResizable(IWebView*, BOOL*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE setResizable(IWebView*, BOOL) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE setFrame(IWebView*, RECT*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE webViewFrame(IWebView*, RECT*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE setContentRect(IWebView*, RECT*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE webViewContentRect(IWebView*, RECT*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE runJavaScriptAlertPanelWithMessage(IWebView*, BSTR) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE runJavaScriptConfirmPanelWithMessage(IWebView*, BSTR, BOOL*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE runJavaScriptTextInputPanelWithPrompt(IWebView*, BSTR, BSTR, BSTR*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE runBeforeUnloadConfirmPanelWithMessage(IWebView*, BSTR, IWebFrame*, BOOL*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE runOpenPanelForFileButtonWithResultListener(IWebView*, IWebOpenPanelResultListener*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE mouseDidMoveOverElement(IWebView*, IPropertyBag*, UINT) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE contextMenuItemsForElement(IWebView*, IPropertyBag*, OLE_HANDLE, OLE_HANDLE*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE validateUserInterfaceItem(IWebView*, UINT, BOOL, BOOL*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE shouldPerformAction(IWebView*, UINT, UINT) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE dragDestinationActionMaskForDraggingInfo(IWebView*, IDataObject*, WebDragDestinationAction*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE willPerformDragDestinationAction(IWebView*, WebDragDestinationAction, IDataObject*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE dragSourceActionMaskForPoint(IWebView*, LPPOINT, WebDragSourceAction*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE willPerformDragSourceAction(IWebView*, WebDragSourceAction, LPPOINT, IDataObject*, IDataObject**) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE contextMenuItemSelected(IWebView*, void*, IPropertyBag*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE hasCustomMenuImplementation(BOOL*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE trackCustomPopupMenu(IWebView*, OLE_HANDLE, LPPOINT) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE measureCustomMenuItem(IWebView*, void*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE drawCustomMenuItem(IWebView*, void*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE addCustomMenuDrawingData(IWebView*, OLE_HANDLE) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE cleanUpCustomMenuDrawingData(IWebView*, OLE_HANDLE) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE canTakeFocus(IWebView*, BOOL, BOOL*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE takeFocus(IWebView*, BOOL) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE registerUndoWithTarget(IWebUndoTarget*, BSTR, IUnknown*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE removeAllActionsWithTarget(IWebUndoTarget*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE setActionTitle(BSTR) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE undo() { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE redo() { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE canUndo(BOOL*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE canRedo(BOOL*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE printFrame(IWebView*, IWebFrame *) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE ftpDirectoryTemplatePath(IWebView*, BSTR*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE webViewHeaderHeight(IWebView*, float*);
-    virtual HRESULT STDMETHODCALLTYPE webViewFooterHeight(IWebView*, float*);
-    virtual HRESULT STDMETHODCALLTYPE drawHeaderInRect(IWebView*, RECT*, OLE_HANDLE);
-    virtual HRESULT STDMETHODCALLTYPE drawFooterInRect(IWebView*, RECT*, OLE_HANDLE, UINT, UINT);
-    virtual HRESULT STDMETHODCALLTYPE webViewPrintingMarginRect(IWebView*, RECT*);
-    virtual HRESULT STDMETHODCALLTYPE canRunModal(IWebView*, BOOL*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE createModalDialog(IWebView*, IWebURLRequest*, IWebView**) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE runModal(IWebView*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE isMenuBarVisible(IWebView*, BOOL*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE setMenuBarVisible(IWebView*, BOOL) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE runDatabaseSizeLimitPrompt(IWebView*, BSTR, IWebFrame*, BOOL*) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE paintCustomScrollbar(IWebView*, HDC, RECT, WebScrollBarControlSize, WebScrollbarControlState, WebScrollbarControlPart, BOOL, float, float, WebScrollbarControlPartMask) { return E_NOTIMPL; }
-    virtual HRESULT STDMETHODCALLTYPE paintCustomScrollCorner(IWebView*, HDC, RECT) { return E_NOTIMPL; }
-
-private:
-    int m_refCount;
-};
-
-#endif
diff --git a/Tools/WinLauncher/WinLauncher.cpp b/Tools/WinLauncher/WinLauncher.cpp
deleted file mode 100644
index 405d1b2..0000000
--- a/Tools/WinLauncher/WinLauncher.cpp
+++ /dev/null
@@ -1,677 +0,0 @@
-/*
- * Copyright (C) 2006, 2008 Apple Computer, Inc.  All rights reserved.
- * Copyright (C) 2009, 2011 Brent Fulgham.  All rights reserved.
- * Copyright (C) 2009, 2010, 2011 Appcelerator, Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#include "stdafx.h"
-#include "WinLauncher.h"
-
-#include "DOMDefaultImpl.h"
-#include "PrintWebUIDelegate.h"
-#include <WebKit/WebKitCOMAPI.h>
-
-#include <commctrl.h>
-#include <commdlg.h>
-#include <objbase.h>
-#include <shellapi.h>
-#include <shlwapi.h>
-#include <string>
-#include <wininet.h>
-
-#define MAX_LOADSTRING 100
-#define URLBAR_HEIGHT  24
-
-// Global Variables:
-HINSTANCE hInst;                                // current instance
-HWND hMainWnd;
-HWND hURLBarWnd;
-WNDPROC DefEditProc = 0;
-WNDPROC DefWebKitProc = 0;
-IWebView* gWebView = 0;
-IWebViewPrivate* gWebViewPrivate = 0;
-HWND gViewWindow = 0;
-WinLauncherWebHost* gWebHost = 0;
-PrintWebUIDelegate* gPrintDelegate = 0;
-TCHAR szTitle[MAX_LOADSTRING];                    // The title bar text
-TCHAR szWindowClass[MAX_LOADSTRING];            // the main window class name
-
-// Support moving the transparent window
-POINT s_windowPosition = { 100, 100 };
-SIZE s_windowSize = { 800, 400 };
-bool s_usesLayeredWebView = false;
-bool s_fullDesktop = false;
-
-// Forward declarations of functions included in this code module:
-ATOM                MyRegisterClass(HINSTANCE hInstance);
-LRESULT CALLBACK    WndProc(HWND, UINT, WPARAM, LPARAM);
-INT_PTR CALLBACK    About(HWND, UINT, WPARAM, LPARAM);
-LRESULT CALLBACK    MyEditProc(HWND, UINT, WPARAM, LPARAM);
-
-static void loadURL(BSTR urlBStr);
-
-static bool usesLayeredWebView()
-{
-    return s_usesLayeredWebView;
-}
-
-static bool shouldUseFullDesktop()
-{
-    return s_fullDesktop;
-}
-
-class SimpleEventListener : public DOMEventListener {
-public:
-    SimpleEventListener(LPWSTR type)
-    {
-        wcsncpy_s(m_eventType, 100, type, 100);
-        m_eventType[99] = 0;
-    }
-
-    virtual HRESULT STDMETHODCALLTYPE handleEvent(IDOMEvent* evt)
-    {
-        wchar_t message[255];
-        wcscpy_s(message, 255, m_eventType);
-        wcscat_s(message, 255, L" event fired!");
-        ::MessageBox(0, message, L"Event Handler", MB_OK);
-        return S_OK;
-    }
-
-private:
-    wchar_t m_eventType[100];
-};
-
-HRESULT WinLauncherWebHost::updateAddressBar(IWebView* webView)
-{
-    IWebFrame* mainFrame = 0;
-    IWebDataSource* dataSource = 0;
-    IWebMutableURLRequest* request = 0;
-    BSTR frameURL = 0;
-
-    HRESULT hr = S_OK;
-
-    hr = webView->mainFrame(&mainFrame);
-    if (FAILED(hr))
-        goto exit;
-
-    hr = mainFrame->dataSource(&dataSource);
-    if (FAILED(hr) || !dataSource)
-        hr = mainFrame->provisionalDataSource(&dataSource);
-    if (FAILED(hr) || !dataSource)
-        goto exit;
-
-    hr = dataSource->request(&request);
-    if (FAILED(hr) || !request)
-        goto exit;
-
-    hr = request->mainDocumentURL(&frameURL);
-    if (FAILED(hr))
-        goto exit;
-
-    SendMessage(hURLBarWnd, (UINT)WM_SETTEXT, 0, (LPARAM)frameURL);
-
-exit:
-    if (mainFrame)
-        mainFrame->Release();
-    if (dataSource)
-        dataSource->Release();
-    if (request)
-        request->Release();
-    SysFreeString(frameURL);
-    return 0;
-}
-
-HRESULT STDMETHODCALLTYPE WinLauncherWebHost::didFailProvisionalLoadWithError(IWebView*, IWebError *error, IWebFrame*)
-{
-    BSTR errorDescription = 0;
-    HRESULT hr = error->localizedDescription(&errorDescription);
-    if (FAILED(hr))
-        errorDescription = L"Failed to load page and to localize error description.";
-
-    ::MessageBoxW(0, static_cast<LPCWSTR>(errorDescription), L"Error", MB_APPLMODAL | MB_OK);
-    if (SUCCEEDED(hr))
-        SysFreeString(errorDescription);
-
-    return S_OK;
-}
-
-HRESULT STDMETHODCALLTYPE WinLauncherWebHost::QueryInterface(REFIID riid, void** ppvObject)
-{
-    *ppvObject = 0;
-    if (IsEqualGUID(riid, IID_IUnknown))
-        *ppvObject = static_cast<IWebFrameLoadDelegate*>(this);
-    else if (IsEqualGUID(riid, IID_IWebFrameLoadDelegate))
-        *ppvObject = static_cast<IWebFrameLoadDelegate*>(this);
-    else
-        return E_NOINTERFACE;
-
-    AddRef();
-    return S_OK;
-}
-
-ULONG STDMETHODCALLTYPE WinLauncherWebHost::AddRef(void)
-{
-    return ++m_refCount;
-}
-
-ULONG STDMETHODCALLTYPE WinLauncherWebHost::Release(void)
-{
-    ULONG newRef = --m_refCount;
-    if (!newRef)
-        delete(this);
-
-    return newRef;
-}
-
-HRESULT WinLauncherWebHost::didFinishLoadForFrame(IWebView* webView, IWebFrame* frame)
-{
-    IDOMDocument* doc = 0;
-    frame->DOMDocument(&doc);
-
-    IDOMElement* element = 0;
-    IDOMEventTarget* target = 0;
-    HRESULT hr = doc->getElementById(L"webkit logo", &element);
-    if (!SUCCEEDED(hr))
-        goto exit;
-
-    hr = element->QueryInterface(IID_IDOMEventTarget, reinterpret_cast<void**>(&target));
-    if (!SUCCEEDED(hr))
-        goto exit;
-
-    hr = target->addEventListener(L"click", new SimpleEventListener (L"webkit logo click"), FALSE);
-    if (!SUCCEEDED(hr))
-        goto exit;
-
-exit:
-    if (target)
-        target->Release();
-    if (element)
-        element->Release();
-    if (doc)
-        doc->Release();
-
-    return hr;
-}
-
-static void resizeSubViews()
-{
-    if (usesLayeredWebView() || !gViewWindow)
-        return;
-
-    RECT rcClient;
-    GetClientRect(hMainWnd, &rcClient);
-    MoveWindow(hURLBarWnd, 0, 0, rcClient.right, URLBAR_HEIGHT, TRUE);
-    MoveWindow(gViewWindow, 0, URLBAR_HEIGHT, rcClient.right, rcClient.bottom - URLBAR_HEIGHT, TRUE);
-}
-
-static void subclassForLayeredWindow()
-{
-    hMainWnd = gViewWindow;
-#if defined _M_AMD64 || defined _WIN64
-    DefWebKitProc = reinterpret_cast<WNDPROC>(::GetWindowLongPtr(hMainWnd, GWLP_WNDPROC));
-    ::SetWindowLongPtr(hMainWnd, GWLP_WNDPROC, reinterpret_cast<LONG_PTR>(WndProc));
-#else
-    DefWebKitProc = reinterpret_cast<WNDPROC>(::GetWindowLong(hMainWnd, GWL_WNDPROC));
-    ::SetWindowLong(hMainWnd, GWL_WNDPROC, reinterpret_cast<LONG_PTR>(WndProc));
-#endif
-}
-
-static void computeFullDesktopFrame()
-{
-    RECT desktop;
-    if (!::SystemParametersInfo(SPI_GETWORKAREA, 0, static_cast<void*>(&desktop), 0))
-        return;
-
-    s_windowPosition.x = 0;
-    s_windowPosition.y = 0;
-    s_windowSize.cx = desktop.right - desktop.left;
-    s_windowSize.cy = desktop.bottom - desktop.top;
-}
-
-BOOL WINAPI DllMain(HINSTANCE dllInstance, DWORD reason, LPVOID)
-{
-    if (reason == DLL_PROCESS_ATTACH)
-        hInst = dllInstance;
-
-    return TRUE;
-}
-
-extern "C" __declspec(dllexport) int WINAPI dllLauncherEntryPoint(HINSTANCE, HINSTANCE, LPTSTR, int nCmdShow)
-{
-#ifdef _CRTDBG_MAP_ALLOC
-    _CrtSetReportFile(_CRT_WARN, _CRTDBG_FILE_STDERR);
-    _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
-#endif
-
-     // TODO: Place code here.
-    MSG msg = {0};
-    HACCEL hAccelTable;
-
-    INITCOMMONCONTROLSEX InitCtrlEx;
-
-    InitCtrlEx.dwSize = sizeof(INITCOMMONCONTROLSEX);
-    InitCtrlEx.dwICC  = 0x00004000; //ICC_STANDARD_CLASSES;
-    InitCommonControlsEx(&InitCtrlEx);
-
-    int argc = 0;
-    WCHAR** argv = CommandLineToArgvW(GetCommandLineW(), &argc);
-    for (int i = 1; i < argc; ++i) {
-        if (!wcsicmp(argv[i], L"--transparent"))
-            s_usesLayeredWebView = true;
-        else if (!wcsicmp(argv[i], L"--desktop"))
-            s_fullDesktop = true;
-    }
-
-    // Initialize global strings
-    LoadString(hInst, IDS_APP_TITLE, szTitle, MAX_LOADSTRING);
-    LoadString(hInst, IDC_WINLAUNCHER, szWindowClass, MAX_LOADSTRING);
-    MyRegisterClass(hInst);
-
-    if (shouldUseFullDesktop())
-        computeFullDesktopFrame();
-
-    // Init COM
-    OleInitialize(NULL);
-
-    if (usesLayeredWebView()) {
-        hURLBarWnd = CreateWindow(L"EDIT", L"Type URL Here",
-                    WS_OVERLAPPEDWINDOW | WS_VISIBLE | WS_BORDER | ES_LEFT | ES_AUTOVSCROLL, 
-                    s_windowPosition.x, s_windowPosition.y + s_windowSize.cy, s_windowSize.cx, URLBAR_HEIGHT,
-                    0,
-                    0,
-                    hInst, 0);
-    } else {
-        hMainWnd = CreateWindow(szWindowClass, szTitle, WS_OVERLAPPEDWINDOW,
-                       CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, 0, 0, hInst, 0);
-
-        if (!hMainWnd)
-            return FALSE;
-
-        hURLBarWnd = CreateWindow(L"EDIT", 0,
-                    WS_CHILD | WS_VISIBLE | WS_BORDER | ES_LEFT | ES_AUTOVSCROLL, 
-                    0, 0, 0, 0,
-                    hMainWnd,
-                    0,
-                    hInst, 0);
-
-        ShowWindow(hMainWnd, nCmdShow);
-        UpdateWindow(hMainWnd);
-    }
-
-#if defined _M_AMD64 || defined _WIN64
-    DefEditProc = reinterpret_cast<WNDPROC>(GetWindowLongPtr(hURLBarWnd, GWLP_WNDPROC));
-    SetWindowLongPtr(hURLBarWnd, GWLP_WNDPROC, reinterpret_cast<LONG_PTR>(MyEditProc));
-#else
-    DefEditProc = reinterpret_cast<WNDPROC>(GetWindowLong(hURLBarWnd, GWL_WNDPROC));
-    SetWindowLong(hURLBarWnd, GWL_WNDPROC, reinterpret_cast<LONG_PTR>(MyEditProc));
-#endif
-
-    SetFocus(hURLBarWnd);
-
-    RECT clientRect = { s_windowPosition.x, s_windowPosition.y, s_windowPosition.x + s_windowSize.cx, s_windowPosition.y + s_windowSize.cy };
-
-    IWebPreferences* tmpPreferences = 0;
-    IWebPreferences* standardPreferences = 0;
-    if (FAILED(WebKitCreateInstance(CLSID_WebPreferences, 0, IID_IWebPreferences, reinterpret_cast<void**>(&tmpPreferences))))
-        goto exit;
-
-    if (FAILED(tmpPreferences->standardPreferences(&standardPreferences)))
-        goto exit;
-
-    standardPreferences->setAcceleratedCompositingEnabled(TRUE);
-
-    HRESULT hr = WebKitCreateInstance(CLSID_WebView, 0, IID_IWebView, reinterpret_cast<void**>(&gWebView));
-    if (FAILED(hr))
-        goto exit;
-
-    hr = gWebView->QueryInterface(IID_IWebViewPrivate, reinterpret_cast<void**>(&gWebViewPrivate));
-    if (FAILED(hr))
-        goto exit;
-
-    gWebHost = new WinLauncherWebHost();
-    gWebHost->AddRef();
-    hr = gWebView->setFrameLoadDelegate(gWebHost);
-    if (FAILED(hr))
-        goto exit;
-
-    gPrintDelegate = new PrintWebUIDelegate;
-    gPrintDelegate->AddRef();
-    hr = gWebView->setUIDelegate(gPrintDelegate);
-    if (FAILED (hr))
-        goto exit;
-
-    hr = gWebView->setHostWindow(reinterpret_cast<OLE_HANDLE>(hMainWnd));
-    if (FAILED(hr))
-        goto exit;
-
-    hr = gWebView->initWithFrame(clientRect, 0, 0);
-    if (FAILED(hr))
-        goto exit;
-
-    IWebFrame* frame;
-    hr = gWebView->mainFrame(&frame);
-    if (FAILED(hr))
-        goto exit;
-
-    static BSTR defaultHTML = SysAllocString(TEXT("<p style=\"background-color: #00FF00\">Testing</p><img id=\"webkit logo\" src=\"http://webkit.org/images/icon-gold.png\" alt=\"Face\"><div style=\"border: solid blue; background: white;\" contenteditable=\"true\">div with blue border</div><ul><li>foo<li>bar<li>baz</ul>"));
-    frame->loadHTMLString(defaultHTML, 0);
-    frame->Release();
-
-    hr = gWebViewPrivate->setTransparent(usesLayeredWebView());
-    if (FAILED(hr))
-        goto exit;
-
-    hr = gWebViewPrivate->setUsesLayeredWindow(usesLayeredWebView());
-    if (FAILED(hr))
-        goto exit;
-
-    hr = gWebViewPrivate->viewWindow(reinterpret_cast<OLE_HANDLE*>(&gViewWindow));
-    if (FAILED(hr) || !gViewWindow)
-        goto exit;
-
-    if (usesLayeredWebView())
-        subclassForLayeredWindow();
-
-    resizeSubViews();
-
-    ShowWindow(gViewWindow, nCmdShow);
-    UpdateWindow(gViewWindow);
-
-    hAccelTable = LoadAccelerators(hInst, MAKEINTRESOURCE(IDC_WINLAUNCHER));
-
-    // Main message loop:
-    while (GetMessage(&msg, NULL, 0, 0)) {
-        if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg)) {
-            TranslateMessage(&msg);
-            DispatchMessage(&msg);
-        }
-    }
-
-exit:
-    gPrintDelegate->Release();
-    if (gWebViewPrivate)
-        gWebViewPrivate->Release();
-    gWebView->Release();
-    if (standardPreferences)
-        standardPreferences->Release();
-    tmpPreferences->Release();
-
-    shutDownWebKit();
-#ifdef _CRTDBG_MAP_ALLOC
-    _CrtDumpMemoryLeaks();
-#endif
-
-    // Shut down COM.
-    OleUninitialize();
-    
-    return static_cast<int>(msg.wParam);
-}
-
-ATOM MyRegisterClass(HINSTANCE hInstance)
-{
-    WNDCLASSEX wcex;
-
-    wcex.cbSize = sizeof(WNDCLASSEX);
-
-    wcex.style          = CS_HREDRAW | CS_VREDRAW;
-    wcex.lpfnWndProc    = WndProc;
-    wcex.cbClsExtra     = 0;
-    wcex.cbWndExtra     = 0;
-    wcex.hInstance      = hInstance;
-    wcex.hIcon          = LoadIcon(hInstance, MAKEINTRESOURCE(IDI_WINLAUNCHER));
-    wcex.hCursor        = LoadCursor(NULL, IDC_ARROW);
-    wcex.hbrBackground  = 0;
-    wcex.lpszMenuName   = MAKEINTRESOURCE(IDC_WINLAUNCHER);
-    wcex.lpszClassName  = szWindowClass;
-    wcex.hIconSm        = LoadIcon(wcex.hInstance, MAKEINTRESOURCE(IDI_SMALL));
-
-    return RegisterClassEx(&wcex);
-}
-
-static BOOL CALLBACK AbortProc(HDC hDC, int Error)
-{
-    MSG msg;
-    while (::PeekMessage(&msg, 0, 0, 0, PM_REMOVE)) {
-        ::TranslateMessage(&msg);
-        ::DispatchMessage(&msg);
-    }
-
-    return TRUE;
-}
-
-static HDC getPrinterDC()
-{
-    PRINTDLG pdlg;
-    memset(&pdlg, 0, sizeof(PRINTDLG));
-    pdlg.lStructSize = sizeof(PRINTDLG);
-    pdlg.Flags = PD_PRINTSETUP | PD_RETURNDC;
-
-    ::PrintDlg(&pdlg);
-
-    return pdlg.hDC;
-}
-
-static void initDocStruct(DOCINFO* di, TCHAR* docname)
-{
-    memset(di, 0, sizeof(DOCINFO));
-    di->cbSize = sizeof(DOCINFO);
-    di->lpszDocName = docname;
-}
-
-void PrintView(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
-{
-    HDC printDC = getPrinterDC();
-    if (!printDC) {
-        ::MessageBoxW(0, L"Error creating printing DC", L"Error", MB_APPLMODAL | MB_OK);
-        return;
-    }
-
-    if (::SetAbortProc(printDC, AbortProc) == SP_ERROR) {
-        ::MessageBoxW(0, L"Error setting up AbortProc", L"Error", MB_APPLMODAL | MB_OK);
-        return;
-    }
-
-    IWebFrame* frame = 0;
-    IWebFramePrivate* framePrivate = 0;
-    if (FAILED(gWebView->mainFrame(&frame)))
-        goto exit;
-
-    if (FAILED(frame->QueryInterface(&framePrivate)))
-        goto exit;
-
-    framePrivate->setInPrintingMode(TRUE, printDC);
-
-    UINT pageCount = 0;
-    framePrivate->getPrintedPageCount(printDC, &pageCount);
-
-    DOCINFO di;
-    initDocStruct(&di, L"WebKit Doc");
-    ::StartDoc(printDC, &di);
-
-    // FIXME: Need CoreGraphics implementation
-    void* graphicsContext = 0;
-    for (size_t page = 1; page <= pageCount; ++page) {
-        ::StartPage(printDC);
-        framePrivate->spoolPages(printDC, page, page, graphicsContext);
-        ::EndPage(printDC);
-    }
-
-    framePrivate->setInPrintingMode(FALSE, printDC);
-
-    ::EndDoc(printDC);
-    ::DeleteDC(printDC);
-
-exit:
-    if (frame)
-        frame->Release();
-    if (framePrivate)
-        framePrivate->Release();
-}
-
-static const int dragBarHeight = 30;
-
-LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
-{
-    WNDPROC parentProc = usesLayeredWebView() ? DefWebKitProc : DefWindowProc;
-
-    switch (message) {
-    case WM_NCHITTEST:
-        if (usesLayeredWebView()) {
-            RECT window;
-            ::GetWindowRect(hWnd, &window);
-            // For testing our transparent window, we need a region to use as a handle for
-            // dragging. The right way to do this would be to query the web view to see what's
-            // under the mouse. However, for testing purposes we just use an arbitrary
-            // 30 pixel band at the top of the view as an arbitrary gripping location.
-            //
-            // When we are within this bad, return HT_CAPTION to tell Windows we want to
-            // treat this region as if it were the title bar on a normal window.
-            int y = HIWORD(lParam);
-
-            if ((y > window.top) && (y < window.top + dragBarHeight))
-                return HTCAPTION;
-        }
-        return CallWindowProc(parentProc, hWnd, message, wParam, lParam);
-    case WM_COMMAND: {
-        int wmId = LOWORD(wParam);
-        int wmEvent = HIWORD(wParam);
-        // Parse the menu selections:
-        switch (wmId) {
-        case IDM_ABOUT:
-            DialogBox(hInst, MAKEINTRESOURCE(IDD_ABOUTBOX), hWnd, About);
-            break;
-        case IDM_EXIT:
-            DestroyWindow(hWnd);
-            break;
-        case IDM_PRINT:
-            PrintView(hWnd, message, wParam, lParam);
-            break;
-        default:
-            return CallWindowProc(parentProc, hWnd, message, wParam, lParam);
-        }
-        }
-        break;
-    case WM_DESTROY:
-        PostQuitMessage(0);
-        break;
-    case WM_SIZE:
-        if (!gWebView || usesLayeredWebView())
-           return CallWindowProc(parentProc, hWnd, message, wParam, lParam);
-
-        resizeSubViews();
-        break;
-    default:
-        return CallWindowProc(parentProc, hWnd, message, wParam, lParam);
-    }
-
-    return 0;
-}
-
-#define MAX_URL_LENGTH  1024
-
-LRESULT CALLBACK MyEditProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
-{
-    switch (message) {
-        case WM_CHAR:
-            if (wParam == 13) { // Enter Key
-                wchar_t strPtr[MAX_URL_LENGTH];
-                *((LPWORD)strPtr) = MAX_URL_LENGTH; 
-                int strLen = SendMessage(hDlg, EM_GETLINE, 0, (LPARAM)strPtr);
-
-                BSTR bstr = SysAllocStringLen(strPtr, strLen);
-                loadURL(bstr);
-                SysFreeString(bstr);
-
-                return 0;
-            } else
-                return (LRESULT)CallWindowProc((WNDPROC)DefEditProc,hDlg,message,wParam,lParam);
-            break;
-        default:
-             return (LRESULT)CallWindowProc((WNDPROC)DefEditProc,hDlg,message,wParam,lParam);
-        break;
-    }
-}
-
-
-// Message handler for about box.
-INT_PTR CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
-{
-    UNREFERENCED_PARAMETER(lParam);
-    switch (message) {
-    case WM_INITDIALOG:
-        return (INT_PTR)TRUE;
-
-    case WM_COMMAND:
-        if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL) {
-            EndDialog(hDlg, LOWORD(wParam));
-            return (INT_PTR)TRUE;
-        }
-        break;
-    }
-    return (INT_PTR)FALSE;
-}
-
-static void loadURL(BSTR urlBStr)
-{
-    IWebFrame* frame = 0;
-    IWebMutableURLRequest* request = 0;
-
-    static BSTR methodBStr = SysAllocString(TEXT("GET"));
-
-    if (urlBStr && urlBStr[0] && (PathFileExists(urlBStr) || PathIsUNC(urlBStr))) {
-        TCHAR fileURL[INTERNET_MAX_URL_LENGTH];
-        DWORD fileURLLength = sizeof(fileURL)/sizeof(fileURL[0]);
-
-        if (SUCCEEDED(UrlCreateFromPath(urlBStr, fileURL, &fileURLLength, 0)))
-            SysReAllocString(&urlBStr, fileURL);
-    }
-
-    HRESULT hr = gWebView->mainFrame(&frame);
-    if (FAILED(hr))
-        goto exit;
-
-    hr = WebKitCreateInstance(CLSID_WebMutableURLRequest, 0, IID_IWebMutableURLRequest, (void**)&request);
-    if (FAILED(hr))
-        goto exit;
-
-    hr = request->initWithURL(urlBStr, WebURLRequestUseProtocolCachePolicy, 60);
-    if (FAILED(hr))
-        goto exit;
-
-    hr = request->setHTTPMethod(methodBStr);
-    if (FAILED(hr))
-        goto exit;
-
-    hr = frame->loadRequest(request);
-    if (FAILED(hr))
-        goto exit;
-
-    SetFocus(gViewWindow);
-
-exit:
-    if (frame)
-        frame->Release();
-    if (request)
-        request->Release();
-}
diff --git a/Tools/WinLauncher/WinLauncher.h b/Tools/WinLauncher/WinLauncher.h
deleted file mode 100644
index 04c2b49..0000000
--- a/Tools/WinLauncher/WinLauncher.h
+++ /dev/null
@@ -1,119 +0,0 @@
-/*
- * Copyright (C) 2006 Apple Computer, Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#pragma once
-
-#include "resource.h"
-#include <WebKit/WebKit.h>
-
-class WinLauncherWebHost : public IWebFrameLoadDelegate
-{
-public:
-    WinLauncherWebHost() : m_refCount(1) {}
-
-    // IUnknown
-    virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppvObject);
-    virtual ULONG STDMETHODCALLTYPE AddRef(void);
-    virtual ULONG STDMETHODCALLTYPE Release(void);
-
-    // IWebFrameLoadDelegate
-    virtual HRESULT STDMETHODCALLTYPE didStartProvisionalLoadForFrame( 
-        /* [in] */ IWebView* webView,
-        /* [in] */ IWebFrame* /*frame*/) { return S_OK; }
-    
-    virtual HRESULT STDMETHODCALLTYPE didReceiveServerRedirectForProvisionalLoadForFrame( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IWebFrame *frame) { return S_OK; }
-    
-    virtual HRESULT STDMETHODCALLTYPE didFailProvisionalLoadWithError( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IWebError *error,
-        /* [in] */ IWebFrame*);
-    
-    virtual HRESULT STDMETHODCALLTYPE didCommitLoadForFrame( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IWebFrame *frame) { return updateAddressBar(webView); }
-    
-    virtual HRESULT STDMETHODCALLTYPE didReceiveTitle( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ BSTR title,
-        /* [in] */ IWebFrame *frame) { return S_OK; }
-    
-    virtual HRESULT STDMETHODCALLTYPE didChangeIcons(
-        /* [in] */ IWebView *webView,
-        /* [in] */ IWebFrame *frame) { return S_OK; }
-
-    virtual HRESULT STDMETHODCALLTYPE didReceiveIcon( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ OLE_HANDLE hBitmap,
-        /* [in] */ IWebFrame *frame) { return S_OK; }
-    
-    virtual HRESULT STDMETHODCALLTYPE didFinishLoadForFrame( 
-        /* [in] */ IWebView* webView,
-        /* [in] */ IWebFrame* /*frame*/);
-    
-    virtual HRESULT STDMETHODCALLTYPE didFailLoadWithError( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IWebError *error,
-        /* [in] */ IWebFrame *forFrame) { return S_OK; }
-    
-    virtual HRESULT STDMETHODCALLTYPE didChangeLocationWithinPageForFrame( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IWebFrame *frame) { return S_OK; }
-
-    virtual HRESULT STDMETHODCALLTYPE willPerformClientRedirectToURL( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ BSTR url,
-        /* [in] */ double delaySeconds,
-        /* [in] */ DATE fireDate,
-        /* [in] */ IWebFrame *frame) { return S_OK; }
-    
-    virtual HRESULT STDMETHODCALLTYPE didCancelClientRedirectForFrame( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IWebFrame *frame) { return S_OK; }
-    
-    virtual HRESULT STDMETHODCALLTYPE willCloseFrame( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ IWebFrame *frame) { return S_OK; }
-    
-    virtual /* [local] */ HRESULT STDMETHODCALLTYPE windowScriptObjectAvailable( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ JSContextRef context,
-        /* [in] */ JSObjectRef windowScriptObject)  { return S_OK; }
-
-    virtual /* [local] */ HRESULT STDMETHODCALLTYPE didClearWindowObject( 
-        /* [in] */ IWebView *webView,
-        /* [in] */ JSContextRef context,
-        /* [in] */ JSObjectRef windowScriptObject,
-        /* [in] */ IWebFrame *frame) { return S_OK; }
-
-    // WinLauncherWebHost
-
-protected:
-    HRESULT updateAddressBar(IWebView* webView);
-
-protected:
-    ULONG                   m_refCount;
-};
diff --git a/Tools/WinLauncher/WinLauncher.ico b/Tools/WinLauncher/WinLauncher.ico
deleted file mode 100644
index d551aa3..0000000
--- a/Tools/WinLauncher/WinLauncher.ico
+++ /dev/null
Binary files differ
diff --git a/Tools/WinLauncher/WinLauncher.rc b/Tools/WinLauncher/WinLauncher.rc
deleted file mode 100644
index 172ed4a..0000000
--- a/Tools/WinLauncher/WinLauncher.rc
+++ /dev/null
@@ -1,137 +0,0 @@
-// Microsoft Visual C++ generated resource script.
-//
-#include "resource.h"
-
-#define APSTUDIO_READONLY_SYMBOLS
-/////////////////////////////////////////////////////////////////////////////
-//
-// Generated from the TEXTINCLUDE 2 resource.
-//
-#define APSTUDIO_HIDDEN_SYMBOLS
-#include "windows.h"
-#undef APSTUDIO_HIDDEN_SYMBOLS
-
-/////////////////////////////////////////////////////////////////////////////
-#undef APSTUDIO_READONLY_SYMBOLS
-
-/////////////////////////////////////////////////////////////////////////////
-// English (U.S.) resources
-
-#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
-#ifdef _WIN32
-LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
-#pragma code_page(1252)
-#endif //_WIN32
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Icon
-//
-
-// Icon with lowest ID value placed first to ensure application icon
-// remains consistent on all systems.
-IDI_WINLAUNCHER         ICON                    "WinLauncher.ico"
-IDI_SMALL               ICON                    "small.ico"
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Menu
-//
-
-IDC_WINLAUNCHER MENU 
-BEGIN
-    POPUP "&File"
-    BEGIN
-        MENUITEM "&Print\tCtrl-P",              IDM_PRINT
-        MENUITEM "E&xit",                       IDM_EXIT
-    END
-    POPUP "&Help"
-    BEGIN
-        MENUITEM "&About ...",                  IDM_ABOUT
-    END
-END
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Accelerator
-//
-
-IDC_WINLAUNCHER ACCELERATORS 
-BEGIN
-    "?",            IDM_ABOUT,              ASCII,  ALT
-    "/",            IDM_ABOUT,              ASCII,  ALT
-END
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Dialog
-//
-
-IDD_ABOUTBOX DIALOGEX 22, 17, 230, 75
-STYLE DS_SETFONT | DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
-CAPTION "About"
-FONT 8, "System", 0, 0, 0x0
-BEGIN
-    ICON            IDI_WINLAUNCHER,IDC_MYICON,14,9,20,20
-    LTEXT           "WinLauncher Version 1.2",IDC_STATIC,49,10,119,8,SS_NOPREFIX
-    LTEXT           "Copyright (C) 2009",IDC_STATIC,49,20,119,8
-    DEFPUSHBUTTON   "OK",IDOK,195,6,30,11,WS_GROUP
-END
-
-
-#ifdef APSTUDIO_INVOKED
-/////////////////////////////////////////////////////////////////////////////
-//
-// TEXTINCLUDE
-//
-
-1 TEXTINCLUDE 
-BEGIN
-    "resource.h\0"
-END
-
-2 TEXTINCLUDE 
-BEGIN
-    "#define APSTUDIO_HIDDEN_SYMBOLS\r\n"
-    "#include ""windows.h""\r\n"
-    "#undef APSTUDIO_HIDDEN_SYMBOLS\r\n"
-    "\0"
-END
-
-3 TEXTINCLUDE 
-BEGIN
-    "\r\n"
-    "\0"
-END
-
-#endif    // APSTUDIO_INVOKED
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// String Table
-//
-
-STRINGTABLE 
-BEGIN
-    IDS_APP_TITLE           "WinLauncher"
-    IDC_WINLAUNCHER         "WINLAUNCHER"
-END
-
-#endif    // English (U.S.) resources
-/////////////////////////////////////////////////////////////////////////////
-
-
-
-#ifndef APSTUDIO_INVOKED
-/////////////////////////////////////////////////////////////////////////////
-//
-// Generated from the TEXTINCLUDE 3 resource.
-//
-
-
-/////////////////////////////////////////////////////////////////////////////
-#endif    // not APSTUDIO_INVOKED
-
diff --git a/Tools/WinLauncher/WinLauncher.vcproj b/Tools/WinLauncher/WinLauncher.vcproj
deleted file mode 100644
index 09ada0d..0000000
--- a/Tools/WinLauncher/WinLauncher.vcproj
+++ /dev/null
@@ -1,502 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WinLauncher"
-	ProjectGUID="{114FCA11-216B-4C8C-957E-30A75AE80443}"
-	RootNamespace="WinLauncher"
-	Keyword="Win32Proj"
-	>
-	<Platforms>
-		<Platform
-			Name="Win32"
-		/>
-	</Platforms>
-	<ToolFiles>
-	</ToolFiles>
-	<Configurations>
-		<Configuration
-			Name="Debug|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\WinLauncherDebug.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\WinLauncherRelease.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_Cairo_CFLite|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\WinLauncherDebugCairoCFLite.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_All|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\WinLauncherDebugAll.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Production|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\WinLauncherProduction.vsprops"
-			CharacterSet="1"
-			WholeProgramOptimization="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release_Cairo_CFLite|Win32"
-			ConfigurationType="2"
-			InheritedPropertySheets=".\WinLauncherReleaseCairoCFLite.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-	</Configurations>
-	<References>
-	</References>
-	<Files>
-		<Filter
-			Name="Source Files"
-			Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
-			UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
-			>
-			<File
-				RelativePath=".\PrintWebUIDelegate.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\stdafx.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						UsePrecompiledHeader="1"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						UsePrecompiledHeader="1"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Debug_Cairo_CFLite|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						UsePrecompiledHeader="1"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Debug_All|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						UsePrecompiledHeader="1"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Production|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						UsePrecompiledHeader="1"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release_Cairo_CFLite|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						UsePrecompiledHeader="1"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\WinLauncher.cpp"
-				>
-			</File>
-		</Filter>
-		<Filter
-			Name="Header Files"
-			Filter="h;hpp;hxx;hm;inl;inc;xsd"
-			UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
-			>
-			<File
-				RelativePath=".\DOMDefaultImpl.h"
-				>
-			</File>
-			<File
-				RelativePath=".\PrintWebUIDelegate.h"
-				>
-			</File>
-			<File
-				RelativePath=".\Resource.h"
-				>
-			</File>
-			<File
-				RelativePath=".\stdafx.h"
-				>
-			</File>
-			<File
-				RelativePath=".\WinLauncher.h"
-				>
-			</File>
-		</Filter>
-		<Filter
-			Name="Resource Files"
-			Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
-			UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
-			>
-			<File
-				RelativePath=".\small.ico"
-				>
-			</File>
-			<File
-				RelativePath=".\WinLauncher.ico"
-				>
-			</File>
-			<File
-				RelativePath=".\WinLauncher.rc"
-				>
-			</File>
-		</Filter>
-	</Files>
-	<Globals>
-	</Globals>
-</VisualStudioProject>
diff --git a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncher.ico b/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncher.ico
deleted file mode 100644
index d551aa3..0000000
--- a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncher.ico
+++ /dev/null
Binary files differ
diff --git a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncher.rc b/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncher.rc
deleted file mode 100644
index 605098c..0000000
--- a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncher.rc
+++ /dev/null
@@ -1,76 +0,0 @@
-// Microsoft Visual C++ generated resource script.

-//

-#include "WinLauncherResource.h"

-

-#define APSTUDIO_READONLY_SYMBOLS

-/////////////////////////////////////////////////////////////////////////////

-//

-// Generated from the TEXTINCLUDE 2 resource.

-//

-#define APSTUDIO_HIDDEN_SYMBOLS

-#include "windows.h"

-#undef APSTUDIO_HIDDEN_SYMBOLS

-

-/////////////////////////////////////////////////////////////////////////////

-#undef APSTUDIO_READONLY_SYMBOLS

-

-/////////////////////////////////////////////////////////////////////////////

-// English (U.S.) resources

-

-#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)

-#ifdef _WIN32

-LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US

-#pragma code_page(1252)

-#endif //_WIN32

-

-/////////////////////////////////////////////////////////////////////////////

-//

-// Icon

-//

-

-// Icon with lowest ID value placed first to ensure application icon

-// remains consistent on all systems.

-IDI_WINLAUNCHER         ICON                    "WinLauncher.ico"

-

-#ifdef APSTUDIO_INVOKED

-/////////////////////////////////////////////////////////////////////////////

-//

-// TEXTINCLUDE

-//

-

-1 TEXTINCLUDE 

-BEGIN

-    "WinLauncherResource.\0"

-END

-

-2 TEXTINCLUDE 

-BEGIN

-    "#define APSTUDIO_HIDDEN_SYMBOLS\r\n"

-    "#include ""windows.h""\r\n"

-    "#undef APSTUDIO_HIDDEN_SYMBOLS\r\n"

-    "\0"

-END

-

-3 TEXTINCLUDE 

-BEGIN

-    "\r\n"

-    "\0"

-END

-

-#endif    // APSTUDIO_INVOKED

-

-#endif    // English (U.S.) resources

-/////////////////////////////////////////////////////////////////////////////

-

-

-

-#ifndef APSTUDIO_INVOKED

-/////////////////////////////////////////////////////////////////////////////

-//

-// Generated from the TEXTINCLUDE 3 resource.

-//

-

-

-/////////////////////////////////////////////////////////////////////////////

-#endif    // not APSTUDIO_INVOKED

-

diff --git a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncher.vcxproj b/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncher.vcxproj
deleted file mode 100644
index cc12a70..0000000
--- a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncher.vcxproj
+++ /dev/null
@@ -1,110 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ItemGroup Label="ProjectConfigurations">

-    <ProjectConfiguration Include="DebugSuffix|Win32">

-      <Configuration>DebugSuffix</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Debug_WinCairo|Win32">

-      <Configuration>Debug_WinCairo</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Debug|Win32">

-      <Configuration>Debug</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Production|Win32">

-      <Configuration>Production</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Release_WinCairo|Win32">

-      <Configuration>Release_WinCairo</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Release|Win32">

-      <Configuration>Release</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-  </ItemGroup>

-  <PropertyGroup Label="Globals">

-    <ProjectGuid>{767B10FB-76C1-44D0-8005-85ED7F9AA5E4}</ProjectGuid>

-    <RootNamespace>WinLauncherLauncher</RootNamespace>

-    <Keyword>Win32Proj</Keyword>

-  </PropertyGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Production|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />

-  <ImportGroup Label="ExtensionSettings">

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="WinLauncherRelease.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="WinLauncherRelease.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Production|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="WinLauncherProduction.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="WinLauncherDebug.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="WinLauncherDebug.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="WinLauncherDebug.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\debugsuffix.props" />

-  </ImportGroup>

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup>

-    <_ProjectFileVersion>10.0.40219.1</_ProjectFileVersion>

-  </PropertyGroup>

-  <ItemDefinitionGroup>

-  </ItemDefinitionGroup>

-  <ItemGroup>

-    <ClInclude Include="WinLauncherResource.h" />

-  </ItemGroup>

-  <ItemGroup>

-    <ClCompile Include="..\..\win\DLLLauncher\DLLLauncherMain.cpp" />

-  </ItemGroup>

-  <ItemGroup>

-    <ResourceCompile Include="WinLauncher.rc" />

-  </ItemGroup>

-  <ItemGroup>

-    <None Include="WinLauncher.ico" />

-    <None Include="WinLauncherPostBuild.cmd" />

-    <None Include="WinLauncherPreBuild.cmd" />

-  </ItemGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />

-  <ImportGroup Label="ExtensionTargets">

-  </ImportGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncher.vcxproj.filters b/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncher.vcxproj.filters
deleted file mode 100644
index 9bdcce3..0000000
--- a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncher.vcxproj.filters
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ItemGroup>

-    <Filter Include="Source Files">

-      <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>

-      <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>

-    </Filter>

-    <Filter Include="Resource Files">

-      <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>

-      <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav</Extensions>

-    </Filter>

-  </ItemGroup>

-  <ItemGroup>

-    <ClInclude Include="WinLauncherResource.h" />

-  </ItemGroup>

-  <ItemGroup>

-    <ClCompile Include="..\..\win\DLLLauncher\DLLLauncherMain.cpp">

-      <Filter>Source Files</Filter>

-    </ClCompile>

-  </ItemGroup>

-  <ItemGroup>

-    <ResourceCompile Include="WinLauncher.rc">

-      <Filter>Resource Files</Filter>

-    </ResourceCompile>

-  </ItemGroup>

-  <ItemGroup>

-    <None Include="WinLauncher.ico">

-      <Filter>Resource Files</Filter>

-    </None>

-    <None Include="WinLauncherPostBuild.cmd" />

-    <None Include="WinLauncherPreBuild.cmd" />

-  </ItemGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherCommon.props b/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherCommon.props
deleted file mode 100644
index f45dcd9..0000000
--- a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherCommon.props
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ItemDefinitionGroup>

-    <Link>

-      <AdditionalDependencies>shlwapi.lib;%(AdditionalDependencies)</AdditionalDependencies>

-      <OutputFile>$(OutDir)WinLauncher.exe</OutputFile>

-      <ProgramDatabaseFile>$(TargetDir)$(TargetName).pdb</ProgramDatabaseFile>

-    </Link>

-    <ClCompile />

-    <ClCompile />

-  </ItemDefinitionGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherDebug.props b/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherDebug.props
deleted file mode 100644
index 084ff52..0000000
--- a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherDebug.props
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\debug.props" />

-    <Import Project="WinLauncherCommon.props" />

-  </ImportGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLib.rc b/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLib.rc
deleted file mode 100644
index 8a101ea..0000000
--- a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLib.rc
+++ /dev/null
@@ -1,137 +0,0 @@
-// Microsoft Visual C++ generated resource script.
-//
-#include "WinLauncherLibResource.h"
-
-#define APSTUDIO_READONLY_SYMBOLS
-/////////////////////////////////////////////////////////////////////////////
-//
-// Generated from the TEXTINCLUDE 2 resource.
-//
-#define APSTUDIO_HIDDEN_SYMBOLS
-#include "windows.h"
-#undef APSTUDIO_HIDDEN_SYMBOLS
-
-/////////////////////////////////////////////////////////////////////////////
-#undef APSTUDIO_READONLY_SYMBOLS
-
-/////////////////////////////////////////////////////////////////////////////
-// English (U.S.) resources
-
-#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
-#ifdef _WIN32
-LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
-#pragma code_page(1252)
-#endif //_WIN32
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Icon
-//
-
-// Icon with lowest ID value placed first to ensure application icon
-// remains consistent on all systems.
-IDI_WINLAUNCHER         ICON                    "WinLauncher.ico"
-IDI_SMALL               ICON                    "small.ico"
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Menu
-//
-
-IDC_WINLAUNCHER MENU 
-BEGIN
-    POPUP "&File"
-    BEGIN
-        MENUITEM "&Print\tCtrl-P",              IDM_PRINT
-        MENUITEM "E&xit",                       IDM_EXIT
-    END
-    POPUP "&Help"
-    BEGIN
-        MENUITEM "&About ...",                  IDM_ABOUT
-    END
-END
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Accelerator
-//
-
-IDC_WINLAUNCHER ACCELERATORS 
-BEGIN
-    "?",            IDM_ABOUT,              ASCII,  ALT
-    "/",            IDM_ABOUT,              ASCII,  ALT
-END
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Dialog
-//
-
-IDD_ABOUTBOX DIALOGEX 22, 17, 230, 75
-STYLE DS_SETFONT | DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
-CAPTION "About"
-FONT 8, "System", 0, 0, 0x0
-BEGIN
-    ICON            IDI_WINLAUNCHER,IDC_MYICON,14,9,20,20
-    LTEXT           "WinLauncher Version 1.2",IDC_STATIC,49,10,119,8,SS_NOPREFIX
-    LTEXT           "Copyright (C) 2009",IDC_STATIC,49,20,119,8
-    DEFPUSHBUTTON   "OK",IDOK,195,6,30,11,WS_GROUP
-END
-
-
-#ifdef APSTUDIO_INVOKED
-/////////////////////////////////////////////////////////////////////////////
-//
-// TEXTINCLUDE
-//
-
-1 TEXTINCLUDE 
-BEGIN
-    "WinLauncherLibResource.h\0"
-END
-
-2 TEXTINCLUDE 
-BEGIN
-    "#define APSTUDIO_HIDDEN_SYMBOLS\r\n"
-    "#include ""windows.h""\r\n"
-    "#undef APSTUDIO_HIDDEN_SYMBOLS\r\n"
-    "\0"
-END
-
-3 TEXTINCLUDE 
-BEGIN
-    "\r\n"
-    "\0"
-END
-
-#endif    // APSTUDIO_INVOKED
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// String Table
-//
-
-STRINGTABLE 
-BEGIN
-    IDS_APP_TITLE           "WinLauncher"
-    IDC_WINLAUNCHER         "WINLAUNCHER"
-END
-
-#endif    // English (U.S.) resources
-/////////////////////////////////////////////////////////////////////////////
-
-
-
-#ifndef APSTUDIO_INVOKED
-/////////////////////////////////////////////////////////////////////////////
-//
-// Generated from the TEXTINCLUDE 3 resource.
-//
-
-
-/////////////////////////////////////////////////////////////////////////////
-#endif    // not APSTUDIO_INVOKED
-
diff --git a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLib.vcxproj b/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLib.vcxproj
deleted file mode 100644
index 448be47..0000000
--- a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLib.vcxproj
+++ /dev/null
@@ -1,124 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ItemGroup Label="ProjectConfigurations">

-    <ProjectConfiguration Include="DebugSuffix|Win32">

-      <Configuration>DebugSuffix</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Debug_WinCairo|Win32">

-      <Configuration>Debug_WinCairo</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Debug|Win32">

-      <Configuration>Debug</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Production|Win32">

-      <Configuration>Production</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Release_WinCairo|Win32">

-      <Configuration>Release_WinCairo</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Release|Win32">

-      <Configuration>Release</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-  </ItemGroup>

-  <PropertyGroup Label="Globals">

-    <ProjectGuid>{114FCA11-216B-4C8C-957E-30A75AE80443}</ProjectGuid>

-    <RootNamespace>WinLauncher</RootNamespace>

-    <Keyword>Win32Proj</Keyword>

-  </PropertyGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">

-    <ConfigurationType>DynamicLibrary</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'" Label="Configuration">

-    <ConfigurationType>DynamicLibrary</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Production|Win32'" Label="Configuration">

-    <ConfigurationType>DynamicLibrary</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">

-    <ConfigurationType>DynamicLibrary</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'" Label="Configuration">

-    <ConfigurationType>DynamicLibrary</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'" Label="Configuration">

-    <ConfigurationType>DynamicLibrary</ConfigurationType>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />

-  <ImportGroup Label="ExtensionSettings">

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="WinLauncherLibRelease.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="WinLauncherLibRelease.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Production|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="WinLauncherLibProduction.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="WinLauncherLibDebug.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="WinLauncherLibDebug.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="WinLauncherLibDebug.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\debugsuffix.props" />

-  </ImportGroup>

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup>

-    <_ProjectFileVersion>10.0.40219.1</_ProjectFileVersion>

-  </PropertyGroup>

-  <ItemDefinitionGroup>

-  </ItemDefinitionGroup>

-  <ItemGroup>

-    <None Include="small.ico" />

-    <None Include="WinLauncher.ico" />

-    <None Include="WinLauncherLibPostBuild.cmd" />

-    <None Include="WinLauncherLibPreBuild.cmd" />

-  </ItemGroup>

-  <ItemGroup>

-    <ClCompile Include="..\PrintWebUIDelegate.cpp" />

-    <ClCompile Include="..\stdafx.cpp">

-      <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>

-      <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">Create</PrecompiledHeader>

-      <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">Create</PrecompiledHeader>

-      <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>

-      <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'">Create</PrecompiledHeader>

-      <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'">Create</PrecompiledHeader>

-    </ClCompile>

-    <ClCompile Include="..\WinLauncher.cpp" />

-  </ItemGroup>

-  <ItemGroup>

-    <ClInclude Include="..\DOMDefaultImpl.h" />

-    <ClInclude Include="..\PrintWebUIDelegate.h" />

-    <ClInclude Include="..\stdafx.h" />

-    <ClInclude Include="..\WinLauncher.h" />

-    <ClInclude Include="WinLauncherLibResource.h" />

-  </ItemGroup>

-  <ItemGroup>

-    <ResourceCompile Include="WinLauncherLib.rc" />

-  </ItemGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />

-  <ImportGroup Label="ExtensionTargets">

-  </ImportGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLib.vcxproj.filters b/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLib.vcxproj.filters
deleted file mode 100644
index 0176009..0000000
--- a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLib.vcxproj.filters
+++ /dev/null
@@ -1,60 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ItemGroup>

-    <Filter Include="Source Files">

-      <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>

-      <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>

-    </Filter>

-    <Filter Include="Header Files">

-      <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>

-      <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>

-    </Filter>

-    <Filter Include="Resource Files">

-      <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>

-      <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav</Extensions>

-    </Filter>

-  </ItemGroup>

-  <ItemGroup>

-    <None Include="small.ico">

-      <Filter>Resource Files</Filter>

-    </None>

-    <None Include="WinLauncher.ico">

-      <Filter>Resource Files</Filter>

-    </None>

-    <None Include="WinLauncherLibPostBuild.cmd" />

-    <None Include="WinLauncherLibPreBuild.cmd" />

-  </ItemGroup>

-  <ItemGroup>

-    <ClCompile Include="..\PrintWebUIDelegate.cpp">

-      <Filter>Source Files</Filter>

-    </ClCompile>

-    <ClCompile Include="..\stdafx.cpp">

-      <Filter>Source Files</Filter>

-    </ClCompile>

-    <ClCompile Include="..\WinLauncher.cpp">

-      <Filter>Source Files</Filter>

-    </ClCompile>

-  </ItemGroup>

-  <ItemGroup>

-    <ClInclude Include="..\DOMDefaultImpl.h">

-      <Filter>Header Files</Filter>

-    </ClInclude>

-    <ClInclude Include="..\PrintWebUIDelegate.h">

-      <Filter>Header Files</Filter>

-    </ClInclude>

-    <ClInclude Include="..\stdafx.h">

-      <Filter>Header Files</Filter>

-    </ClInclude>

-    <ClInclude Include="..\WinLauncher.h">

-      <Filter>Header Files</Filter>

-    </ClInclude>

-    <ClInclude Include="WinLauncherLibResource.h">

-      <Filter>Header Files</Filter>

-    </ClInclude>

-  </ItemGroup>

-  <ItemGroup>

-    <ResourceCompile Include="WinLauncherLib.rc">

-      <Filter>Resource Files</Filter>

-    </ResourceCompile>

-  </ItemGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLibCommon.props b/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLibCommon.props
deleted file mode 100644
index 18b956e..0000000
--- a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLibCommon.props
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <PropertyGroup>

-    <TargetName>WinLauncher</TargetName>

-  </PropertyGroup>

-  <ItemDefinitionGroup>

-    <ClCompile>

-      <AdditionalIncludeDirectories>$(ProjectDir)\..;$(ConfigurationBuildDir)\include\WebKit;$(ConfigurationBuildDir)\Include\private;$(ConfigurationBuildDir)\Include;$(ConfigurationBuildDir)\Include\WebCore;$(ConfigurationBuildDir)\Include\WebCore\ForwardingHeaders;$(ConfigurationBuildDir)\Include\JavaScriptCore;$(ConfigurationBuildDir)\obj\WebKit\DerivedSources;$(WebKit_Libraries)\Include;$(WebKit_Libraries)\Include\private;$(WebKit_Libraries)\Include\WebCore;$(WebKit_Libraries)\Include\WebCore\ForwardingHeaders;$(WebKit_Libraries)\Include\JavaScriptCore;$(IntDir)Include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>

-      <PrecompiledHeader>Use</PrecompiledHeader>

-      <PrecompiledHeaderFile>StdAfx.h</PrecompiledHeaderFile>

-    </ClCompile>

-    <Link>

-      <AdditionalDependencies>comdlg32.lib;gdi32.lib;comctl32.lib;shlwapi.lib;user32.lib;ole32.lib;oleaut32.lib;WebKitGUID.lib;WebKit.lib;%(AdditionalDependencies)</AdditionalDependencies>

-    </Link>

-  </ItemDefinitionGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLibDebug.props b/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLibDebug.props
deleted file mode 100644
index 8c4c7d9..0000000
--- a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLibDebug.props
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\debug.props" />

-    <Import Project="WinLauncherLibCommon.props" />

-  </ImportGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLibPostBuild.cmd b/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLibPostBuild.cmd
deleted file mode 100644
index 26707ca..0000000
--- a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLibPostBuild.cmd
+++ /dev/null
@@ -1 +0,0 @@
-if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed"
diff --git a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLibPreBuild.cmd b/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLibPreBuild.cmd
deleted file mode 100644
index a770776..0000000
--- a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLibPreBuild.cmd
+++ /dev/null
@@ -1,6 +0,0 @@
-%SystemDrive%\cygwin\bin\which.exe bash
-if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
-cmd /c
-if exist "%CONFIGURATIONBUILDDIR%\buildfailed" grep XX%PROJECTNAME%XX "%CONFIGURATIONBUILDDIR%\buildfailed"
-if errorlevel 1 exit 1
-echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed"
diff --git a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLibProduction.props b/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLibProduction.props
deleted file mode 100644
index 8f7f126..0000000
--- a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLibProduction.props
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\production.props" />

-    <Import Project="WinLauncherLibCommon.props" />

-  </ImportGroup>

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup />

-  <ItemDefinitionGroup />

-  <ItemGroup />

-</Project>
\ No newline at end of file
diff --git a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLibRelease.props b/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLibRelease.props
deleted file mode 100644
index 7cb9b66..0000000
--- a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLibRelease.props
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\release.props" />

-    <Import Project="WinLauncherLibCommon.props" />

-  </ImportGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLibResource.h b/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLibResource.h
deleted file mode 100644
index c98fac7..0000000
--- a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLibResource.h
+++ /dev/null
@@ -1,28 +0,0 @@
-//{{NO_DEPENDENCIES}}
-// Microsoft Visual C++ generated include file.
-// Used by WinLauncher.rc
-//
-#define IDC_MYICON                      2
-#define IDD_WINLAUNCHER_DIALOG          102
-#define IDS_APP_TITLE                   103
-#define IDD_ABOUTBOX                    103
-#define IDM_ABOUT                       104
-#define IDM_EXIT                        105
-#define IDM_PRINT                       106
-#define IDI_WINLAUNCHER                 107
-#define IDI_SMALL                       108
-#define IDC_WINLAUNCHER                 109
-#define IDR_MAINFRAME                   128
-#define IDC_STATIC                      -1
-
-// Next default values for new objects
-// 
-#ifdef APSTUDIO_INVOKED
-#ifndef APSTUDIO_READONLY_SYMBOLS
-#define _APS_NO_MFC                     1
-#define _APS_NEXT_RESOURCE_VALUE        129
-#define _APS_NEXT_COMMAND_VALUE         32771
-#define _APS_NEXT_CONTROL_VALUE         1000
-#define _APS_NEXT_SYMED_VALUE           110
-#endif
-#endif
diff --git a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherPostBuild.cmd b/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherPostBuild.cmd
deleted file mode 100644
index 26707ca..0000000
--- a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherPostBuild.cmd
+++ /dev/null
@@ -1 +0,0 @@
-if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed"
diff --git a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherPreBuild.cmd b/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherPreBuild.cmd
deleted file mode 100644
index a770776..0000000
--- a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherPreBuild.cmd
+++ /dev/null
@@ -1,6 +0,0 @@
-%SystemDrive%\cygwin\bin\which.exe bash
-if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
-cmd /c
-if exist "%CONFIGURATIONBUILDDIR%\buildfailed" grep XX%PROJECTNAME%XX "%CONFIGURATIONBUILDDIR%\buildfailed"
-if errorlevel 1 exit 1
-echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed"
diff --git a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherProduction.props b/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherProduction.props
deleted file mode 100644
index 7f3c032..0000000
--- a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherProduction.props
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\production.props" />

-    <Import Project="WinLauncherCommon.props" />

-  </ImportGroup>

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup />

-  <ItemDefinitionGroup />

-  <ItemGroup />

-</Project>
\ No newline at end of file
diff --git a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherRelease.props b/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherRelease.props
deleted file mode 100644
index 0a3a226..0000000
--- a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherRelease.props
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\release.props" />

-    <Import Project="WinLauncherCommon.props" />

-  </ImportGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherResource.h b/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherResource.h
deleted file mode 100644
index 961fb17..0000000
--- a/Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherResource.h
+++ /dev/null
@@ -1,20 +0,0 @@
-//{{NO_DEPENDENCIES}}

-// Microsoft Visual C++ generated include file.

-// Used by WinLauncherLauncher.rc

-//

-#define IDD_WINLAUNCHER_DIALOG          102

-#define IDI_WINLAUNCHER                 107

-#define IDR_MAINFRAME                   128

-#define IDC_STATIC                      -1

-

-// Next default values for new objects

-// 

-#ifdef APSTUDIO_INVOKED

-#ifndef APSTUDIO_READONLY_SYMBOLS

-#define _APS_NO_MFC                     1

-#define _APS_NEXT_RESOURCE_VALUE        129

-#define _APS_NEXT_COMMAND_VALUE         32771

-#define _APS_NEXT_CONTROL_VALUE         1000

-#define _APS_NEXT_SYMED_VALUE           110

-#endif

-#endif

diff --git a/Tools/WinLauncher/WinLauncher.vcxproj/small.ico b/Tools/WinLauncher/WinLauncher.vcxproj/small.ico
deleted file mode 100644
index d551aa3..0000000
--- a/Tools/WinLauncher/WinLauncher.vcxproj/small.ico
+++ /dev/null
Binary files differ
diff --git a/Tools/WinLauncher/WinLauncherCommon.vsprops b/Tools/WinLauncher/WinLauncherCommon.vsprops
deleted file mode 100644
index 7716c39..0000000
--- a/Tools/WinLauncher/WinLauncherCommon.vsprops
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WinLauncherCommon"
-	>
-	<Tool
-		Name="VCCLCompilerTool"
-		AdditionalIncludeDirectories="&quot;$(ConfigurationBuildDir)\include\WebKit&quot;;&quot;$(ConfigurationBuildDir)\Include&quot;;&quot;$(WebKitLibrariesDir)\Include&quot;;&quot;$(ConfigurationBuildDir)\Include\WebCore&quot;;&quot;$(WebKitLibrariesDir)\Include\WebCore&quot;;&quot;$(ConfigurationBuildDir)\Include\WebCore\ForwardingHeaders&quot;;&quot;$(WebKitLibrariesDir)\Include\WebCore\ForwardingHeaders&quot;;&quot;$(ConfigurationBuildDir)\Include\JavaScriptCore&quot;;&quot;$(WebKitLibrariesDir)\Include\JavaScriptCore&quot;;&quot;$(ProjectDir)\..&quot;;&quot;$(ProjectDir)&quot;;&quot;$(IntDir)\Include&quot;;&quot;$(ConfigurationBuildDir)\obj\WebKit\DerivedSources&quot;"
-		UsePrecompiledHeader="2"
-	/>
-	<Tool
-		Name="VCLinkerTool"
-		AdditionalDependencies="comdlg32.lib gdi32.lib comctl32.lib shlwapi.lib user32.lib ole32.lib oleaut32.lib WebKitGUID$(WebKitConfigSuffix).lib WebKit$(WebKitDLLConfigSuffix).lib"
-		OutputFile="$(OutDir)\$(ProjectName)$(WebKitConfigSuffix).dll"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/WinLauncher/WinLauncherDebug.vsprops b/Tools/WinLauncher/WinLauncherDebug.vsprops
deleted file mode 100644
index b9ad9a2..0000000
--- a/Tools/WinLauncher/WinLauncherDebug.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WinLauncherDebug"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;.\WinLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WinLauncher/WinLauncherDebugAll.vsprops b/Tools/WinLauncher/WinLauncherDebugAll.vsprops
deleted file mode 100644
index 9a2c1c9..0000000
--- a/Tools/WinLauncher/WinLauncherDebugAll.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WinLauncherDebugAll"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\debug_all.vsprops;.\WinLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WinLauncher/WinLauncherDebugCairoCFLite.vsprops b/Tools/WinLauncher/WinLauncherDebugCairoCFLite.vsprops
deleted file mode 100644
index de709fb..0000000
--- a/Tools/WinLauncher/WinLauncherDebugCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WinLauncherDebugCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\debug_wincairo.vsprops;.\WinLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WinLauncher/WinLauncherLauncher.rc b/Tools/WinLauncher/WinLauncherLauncher.rc
deleted file mode 100644
index 4079a2b..0000000
--- a/Tools/WinLauncher/WinLauncherLauncher.rc
+++ /dev/null
@@ -1,76 +0,0 @@
-// Microsoft Visual C++ generated resource script.

-//

-#include "WinLauncherLauncherResource.h"

-

-#define APSTUDIO_READONLY_SYMBOLS

-/////////////////////////////////////////////////////////////////////////////

-//

-// Generated from the TEXTINCLUDE 2 resource.

-//

-#define APSTUDIO_HIDDEN_SYMBOLS

-#include "windows.h"

-#undef APSTUDIO_HIDDEN_SYMBOLS

-

-/////////////////////////////////////////////////////////////////////////////

-#undef APSTUDIO_READONLY_SYMBOLS

-

-/////////////////////////////////////////////////////////////////////////////

-// English (U.S.) resources

-

-#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)

-#ifdef _WIN32

-LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US

-#pragma code_page(1252)

-#endif //_WIN32

-

-/////////////////////////////////////////////////////////////////////////////

-//

-// Icon

-//

-

-// Icon with lowest ID value placed first to ensure application icon

-// remains consistent on all systems.

-IDI_WINLAUNCHER         ICON                    "WinLauncher.ico"

-

-#ifdef APSTUDIO_INVOKED

-/////////////////////////////////////////////////////////////////////////////

-//

-// TEXTINCLUDE

-//

-

-1 TEXTINCLUDE 

-BEGIN

-    "WinLauncherLauncherResource.\0"

-END

-

-2 TEXTINCLUDE 

-BEGIN

-    "#define APSTUDIO_HIDDEN_SYMBOLS\r\n"

-    "#include ""windows.h""\r\n"

-    "#undef APSTUDIO_HIDDEN_SYMBOLS\r\n"

-    "\0"

-END

-

-3 TEXTINCLUDE 

-BEGIN

-    "\r\n"

-    "\0"

-END

-

-#endif    // APSTUDIO_INVOKED

-

-#endif    // English (U.S.) resources

-/////////////////////////////////////////////////////////////////////////////

-

-

-

-#ifndef APSTUDIO_INVOKED

-/////////////////////////////////////////////////////////////////////////////

-//

-// Generated from the TEXTINCLUDE 3 resource.

-//

-

-

-/////////////////////////////////////////////////////////////////////////////

-#endif    // not APSTUDIO_INVOKED

-

diff --git a/Tools/WinLauncher/WinLauncherLauncher.vcproj b/Tools/WinLauncher/WinLauncherLauncher.vcproj
deleted file mode 100644
index ec82a12..0000000
--- a/Tools/WinLauncher/WinLauncherLauncher.vcproj
+++ /dev/null
@@ -1,420 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WinLauncherLauncher"
-	ProjectGUID="{767B10FB-76C1-44D0-8005-85ED7F9AA5E4}"
-	RootNamespace="WinLauncherLauncher"
-	Keyword="Win32Proj"
-	>
-	<Platforms>
-		<Platform
-			Name="Win32"
-		/>
-	</Platforms>
-	<ToolFiles>
-	</ToolFiles>
-	<Configurations>
-		<Configuration
-			Name="Debug|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\WinLauncherLauncherDebug.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\WinLauncherLauncherRelease.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_Cairo_CFLite|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\WinLauncherLauncherDebugCairoCFLite.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_All|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\WinLauncherLauncherDebugAll.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Production|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\WinLauncherLauncherProduction.vsprops"
-			CharacterSet="1"
-			WholeProgramOptimization="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release_Cairo_CFLite|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\WinLauncherLauncherReleaseCairoCFLite.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-	</Configurations>
-	<References>
-	</References>
-	<Files>
-		<Filter
-			Name="Source Files"
-			Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
-			UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
-			>
-			<File
-				RelativePath="..\win\DLLLauncher\DLLLauncherMain.cpp"
-				>
-			</File>
-		</Filter>
-		<Filter
-			Name="Resource Files"
-			Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
-			UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
-			>
-			<File
-				RelativePath=".\WinLauncher.ico"
-				>
-			</File>
-			<File
-				RelativePath=".\WinLauncherLauncher.rc"
-				>
-			</File>
-		</Filter>
-		<File
-			RelativePath=".\WinLauncherLauncherResource.h"
-			>
-		</File>
-	</Files>
-	<Globals>
-	</Globals>
-</VisualStudioProject>
diff --git a/Tools/WinLauncher/WinLauncherLauncherCommon.vsprops b/Tools/WinLauncher/WinLauncherLauncherCommon.vsprops
deleted file mode 100644
index a29a518..0000000
--- a/Tools/WinLauncher/WinLauncherLauncherCommon.vsprops
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WinLauncherLauncherCommon"
-	>
-	<Tool
-		Name="VCLinkerTool"
-		AdditionalDependencies="shlwapi.lib"
-		OutputFile="$(OutDir)\WinLauncher$(WebKitConfigSuffix).exe"
-		ProgramDatabaseFile="$(TargetDir)$(TargetName)Launcher.pdb"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/WinLauncher/WinLauncherLauncherDebug.vsprops b/Tools/WinLauncher/WinLauncherLauncherDebug.vsprops
deleted file mode 100644
index fb56bf2..0000000
--- a/Tools/WinLauncher/WinLauncherLauncherDebug.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WinLauncherLauncherDebug"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;.\WinLauncherLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WinLauncher/WinLauncherLauncherDebugAll.vsprops b/Tools/WinLauncher/WinLauncherLauncherDebugAll.vsprops
deleted file mode 100644
index d6b26eb..0000000
--- a/Tools/WinLauncher/WinLauncherLauncherDebugAll.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WinLauncherLauncherDebugAll"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\debug_all.vsprops;.\WinLauncherLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WinLauncher/WinLauncherLauncherDebugCairoCFLite.vsprops b/Tools/WinLauncher/WinLauncherLauncherDebugCairoCFLite.vsprops
deleted file mode 100644
index 01e7828..0000000
--- a/Tools/WinLauncher/WinLauncherLauncherDebugCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WinLauncherDebugCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;.\WinLauncherLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WinLauncher/WinLauncherLauncherProduction.vsprops b/Tools/WinLauncher/WinLauncherLauncherProduction.vsprops
deleted file mode 100644
index fc8908b..0000000
--- a/Tools/WinLauncher/WinLauncherLauncherProduction.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WinLauncherLauncherProduction"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\production.vsprops;.\WinLauncherLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WinLauncher/WinLauncherLauncherRelease.vsprops b/Tools/WinLauncher/WinLauncherLauncherRelease.vsprops
deleted file mode 100644
index aae42e3..0000000
--- a/Tools/WinLauncher/WinLauncherLauncherRelease.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WinLauncherLauncherRelease"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;.\WinLauncherLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WinLauncher/WinLauncherLauncherReleaseCairoCFLite.vsprops b/Tools/WinLauncher/WinLauncherLauncherReleaseCairoCFLite.vsprops
deleted file mode 100644
index 9384136..0000000
--- a/Tools/WinLauncher/WinLauncherLauncherReleaseCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WinLauncherLauncherReleaseCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;.\WinLauncherLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WinLauncher/WinLauncherLauncherResource.h b/Tools/WinLauncher/WinLauncherLauncherResource.h
deleted file mode 100644
index 961fb17..0000000
--- a/Tools/WinLauncher/WinLauncherLauncherResource.h
+++ /dev/null
@@ -1,20 +0,0 @@
-//{{NO_DEPENDENCIES}}

-// Microsoft Visual C++ generated include file.

-// Used by WinLauncherLauncher.rc

-//

-#define IDD_WINLAUNCHER_DIALOG          102

-#define IDI_WINLAUNCHER                 107

-#define IDR_MAINFRAME                   128

-#define IDC_STATIC                      -1

-

-// Next default values for new objects

-// 

-#ifdef APSTUDIO_INVOKED

-#ifndef APSTUDIO_READONLY_SYMBOLS

-#define _APS_NO_MFC                     1

-#define _APS_NEXT_RESOURCE_VALUE        129

-#define _APS_NEXT_COMMAND_VALUE         32771

-#define _APS_NEXT_CONTROL_VALUE         1000

-#define _APS_NEXT_SYMED_VALUE           110

-#endif

-#endif

diff --git a/Tools/WinLauncher/WinLauncherPostBuild.cmd b/Tools/WinLauncher/WinLauncherPostBuild.cmd
deleted file mode 100644
index 26707ca..0000000
--- a/Tools/WinLauncher/WinLauncherPostBuild.cmd
+++ /dev/null
@@ -1 +0,0 @@
-if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed"
diff --git a/Tools/WinLauncher/WinLauncherPreBuild.cmd b/Tools/WinLauncher/WinLauncherPreBuild.cmd
deleted file mode 100644
index a770776..0000000
--- a/Tools/WinLauncher/WinLauncherPreBuild.cmd
+++ /dev/null
@@ -1,6 +0,0 @@
-%SystemDrive%\cygwin\bin\which.exe bash
-if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
-cmd /c
-if exist "%CONFIGURATIONBUILDDIR%\buildfailed" grep XX%PROJECTNAME%XX "%CONFIGURATIONBUILDDIR%\buildfailed"
-if errorlevel 1 exit 1
-echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed"
diff --git a/Tools/WinLauncher/WinLauncherProduction.vsprops b/Tools/WinLauncher/WinLauncherProduction.vsprops
deleted file mode 100644
index 32b1f74..0000000
--- a/Tools/WinLauncher/WinLauncherProduction.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WinLauncherProduction"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\production.vsprops;.\WinLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WinLauncher/WinLauncherRelease.vsprops b/Tools/WinLauncher/WinLauncherRelease.vsprops
deleted file mode 100644
index a7caef3..0000000
--- a/Tools/WinLauncher/WinLauncherRelease.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WinLauncherRelease"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;.\WinLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WinLauncher/WinLauncherReleaseCairoCFLite.vsprops b/Tools/WinLauncher/WinLauncherReleaseCairoCFLite.vsprops
deleted file mode 100644
index 32f7582..0000000
--- a/Tools/WinLauncher/WinLauncherReleaseCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="WinLauncherReleaseCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\WinCairo.vsprops;.\WinLauncherCommon.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/WinLauncher/resource.h b/Tools/WinLauncher/resource.h
deleted file mode 100644
index c98fac7..0000000
--- a/Tools/WinLauncher/resource.h
+++ /dev/null
@@ -1,28 +0,0 @@
-//{{NO_DEPENDENCIES}}
-// Microsoft Visual C++ generated include file.
-// Used by WinLauncher.rc
-//
-#define IDC_MYICON                      2
-#define IDD_WINLAUNCHER_DIALOG          102
-#define IDS_APP_TITLE                   103
-#define IDD_ABOUTBOX                    103
-#define IDM_ABOUT                       104
-#define IDM_EXIT                        105
-#define IDM_PRINT                       106
-#define IDI_WINLAUNCHER                 107
-#define IDI_SMALL                       108
-#define IDC_WINLAUNCHER                 109
-#define IDR_MAINFRAME                   128
-#define IDC_STATIC                      -1
-
-// Next default values for new objects
-// 
-#ifdef APSTUDIO_INVOKED
-#ifndef APSTUDIO_READONLY_SYMBOLS
-#define _APS_NO_MFC                     1
-#define _APS_NEXT_RESOURCE_VALUE        129
-#define _APS_NEXT_COMMAND_VALUE         32771
-#define _APS_NEXT_CONTROL_VALUE         1000
-#define _APS_NEXT_SYMED_VALUE           110
-#endif
-#endif
diff --git a/Tools/WinLauncher/small.ico b/Tools/WinLauncher/small.ico
deleted file mode 100644
index d551aa3..0000000
--- a/Tools/WinLauncher/small.ico
+++ /dev/null
Binary files differ
diff --git a/Tools/WinLauncher/stdafx.cpp b/Tools/WinLauncher/stdafx.cpp
deleted file mode 100644
index 541dcb1..0000000
--- a/Tools/WinLauncher/stdafx.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Copyright (C) 2006 Apple Computer, Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-// stdafx.cpp : source file that includes just the standard includes
-// Spinneret.pch will be the pre-compiled header
-// stdafx.obj will contain the pre-compiled type information
-
-#include "stdafx.h"
-
-// TODO: reference any additional headers you need in STDAFX.H
-// and not in this file
diff --git a/Tools/WinLauncher/stdafx.h b/Tools/WinLauncher/stdafx.h
deleted file mode 100644
index b38e221..0000000
--- a/Tools/WinLauncher/stdafx.h
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- * Copyright (C) 2006 Apple Computer, Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-// stdafx.h : include file for standard system include files,
-// or project specific include files that are used frequently, but
-// are changed infrequently
-//
-
-#pragma once
-
-// Modify the following defines if you have to target a platform prior to the ones specified below.
-// Refer to MSDN for the latest info on corresponding values for different platforms.
-#ifndef WINVER // Allow use of features specific to Windows XP SP2 or later.
-#define WINVER 0x0502 // Change this to the appropriate value to target other versions of Windows.
-#endif
-
-#ifndef _WIN32_WINNT // Allow use of features specific to Windows XP SP2 or later.
-#define _WIN32_WINNT 0x0502 // Change this to the appropriate value to target other versions of Windows.
-#endif                        
-
-#ifndef _WIN32_WINDOWS        // Allow use of features specific to Windows 98 or later.
-#define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
-#endif
-
-#ifndef _WIN32_IE            // Allow use of features specific to IE 6.0 or later.
-#define _WIN32_IE 0x0600    // Change this to the appropriate value to target other versions of IE.
-#endif
-
-#define WIN32_LEAN_AND_MEAN        // Exclude rarely-used stuff from Windows headers
-// Windows Header Files:
-#include <windows.h>
-
-// C RunTime Header Files
-#include <stdlib.h>
-#include <malloc.h>
-#include <memory.h>
-#include <tchar.h>
-
-#if 0
-// Visual Studio Leak Detection
-// <http://msdn2.microsoft.com/en-US/library/e5ewb1h3.aspx>
-#if defined(_MSC_VER) && defined(_DEBUG)
-#define _CRTDBG_MAP_ALLOC
-#include <stdlib.h>
-#include <crtdbg.h>
-#endif
-#endif
diff --git a/Tools/clang/ReportMemoryUsagePlugin/CMakeLists.txt b/Tools/clang/ReportMemoryUsagePlugin/CMakeLists.txt
deleted file mode 100644
index 1cc4783..0000000
--- a/Tools/clang/ReportMemoryUsagePlugin/CMakeLists.txt
+++ /dev/null
@@ -1,15 +0,0 @@
-set(MODULE TRUE)
-
-set(LLVM_LINK_COMPONENTS support mc)
-
-add_clang_library(ReportMemoryUsage ReportMemoryUsage.cpp)
-
-target_link_libraries(ReportMemoryUsage
-  clangFrontend
-  clangAST
-  )
-
-set_target_properties(ReportMemoryUsage
-  PROPERTIES
-  LINKER_LANGUAGE CXX
-  PREFIX "")
diff --git a/Tools/clang/ReportMemoryUsagePlugin/Makefile b/Tools/clang/ReportMemoryUsagePlugin/Makefile
deleted file mode 100644
index 97fae1f..0000000
--- a/Tools/clang/ReportMemoryUsagePlugin/Makefile
+++ /dev/null
@@ -1,51 +0,0 @@
-# This file is building the plugin for clang in chromium checkout.
-
-# This file requires the clang build system, at least for now. So to use this
-# Makefile, you should execute the following commands to copy this directory
-# into a clang checkout:
-#
-#   cp -R <this directory> chromium/src/third_party/llvm/tools/clang/tools/report-memory-usage-plugin
-#   cd chromium/src/third_party/llvm/tools/clang/tools/report-memory-usage-plugin
-#   make
-#
-# It can be run with clang build with help of these clang flags:
-#
-#       -Xclang -load \
-#	-Xclang <plugin-libs-dir>/libReportMemoryUsage.so \
-#	-Xclang -plugin \
-#	-Xclang report-memory-usage
-
-CLANG_LEVEL := ../..
-LIBRARYNAME = ReportMemoryUsage
-
-LINK_LIBS_IN_SHARED = 0
-SHARED_LIBRARY = 1
-
-include $(CLANG_LEVEL)/Makefile
-
-ifeq ($(OS),Darwin)
-  LDFLAGS=-Wl,-undefined,dynamic_lookup
-endif
-
-BD=../../../../Release+Asserts
-SRC_DIR=../../../../../llvm/tools/clang/tools/report-memory-usage-plugin
-
-test: all
-	@${BD}/bin/clang++ \
-	-D_GNU_SOURCE \
-	-D_DEBUG \
-	-D__STDC_CONSTANT_MACROS \
-        -D__STDC_FORMAT_MACROS \
-	-D__STDC_LIMIT_MACROS \
-	-D_GNU_SOURCE \
-        -I${BD}/tools/clang/include \
-	-Itools/clang/include \
-	-I${BD}/include \
-	-Iinclude \
-        ${SRC_DIR}/tests/Source/WebCore/Test.cpp \
-	-fsyntax-only \
-        -Xclang -load \
-	-Xclang ${BD}/lib/lib${LIBRARYNAME}.so \
-	-Xclang -plugin \
-	-Xclang report-memory-usage
-
diff --git a/Tools/clang/ReportMemoryUsagePlugin/ReportMemoryUsage.cpp b/Tools/clang/ReportMemoryUsagePlugin/ReportMemoryUsage.cpp
deleted file mode 100644
index f309947..0000000
--- a/Tools/clang/ReportMemoryUsagePlugin/ReportMemoryUsage.cpp
+++ /dev/null
@@ -1,231 +0,0 @@
-/*
- * Copyright (C) 2012 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *     * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "clang/AST/AST.h"
-#include "clang/AST/ASTConsumer.h"
-#include "clang/AST/RecursiveASTVisitor.h"
-#include "clang/Frontend/CompilerInstance.h"
-#include "clang/Frontend/FrontendPluginRegistry.h"
-#include "llvm/Support/raw_ostream.h"
-
-using namespace clang;
-
-namespace {
-
-using namespace std;
-typedef vector<string> Strings;
-
-Strings instrumentationMethods;
-const char instrumentingMethodName[] = "reportMemoryUsage";
-
-class AddMemberCallVisitor : public RecursiveASTVisitor<AddMemberCallVisitor> {
-public:
-
-    bool VisitCallExpr(CallExpr*);
-    const Strings& instrumentedMembers() const { return m_instrumentedMembers; }
-
-private:
-    Strings m_instrumentedMembers;
-};
-
-class ReportMemoryUsageVisitor : public RecursiveASTVisitor<ReportMemoryUsageVisitor> {
-public:
-    explicit ReportMemoryUsageVisitor(CompilerInstance& instance, ASTContext* context)
-        : m_instance(instance)
-        , m_context(context) { }
-
-    bool VisitCXXMethodDecl(clang::CXXMethodDecl*);
-
-private:
-    void emitWarning(SourceLocation, const char* rawError);
-    CXXMethodDecl* findInstrumentationMethod(CXXRecordDecl*);
-    bool needsToBeInstrumented(const Type*);
-    void checkMembersCoverage(const CXXRecordDecl* instrumentedClass, const Strings& instrumentedMembers, SourceLocation);
-
-    CompilerInstance& m_instance;
-    ASTContext* m_context;
-};
-
-class ReportMemoryUsageConsumer : public ASTConsumer {
-public:
-    explicit ReportMemoryUsageConsumer(CompilerInstance& instance, ASTContext* context)
-        : m_visitor(instance, context)
-    {
-        instrumentationMethods.push_back("addMember");
-        instrumentationMethods.push_back("addRawBuffer");
-        instrumentationMethods.push_back("addWeakPointer");
-        instrumentationMethods.push_back("ignoreMember");
-    }
-
-    virtual void HandleTranslationUnit(clang::ASTContext& context)
-    {
-        m_visitor.TraverseDecl(context.getTranslationUnitDecl());
-    }
-
-private:
-    ReportMemoryUsageVisitor m_visitor;
-};
-
-class ReportMemoryUsageAction : public PluginASTAction {
-protected:
-    ASTConsumer* CreateASTConsumer(CompilerInstance& CI, llvm::StringRef)
-    {
-        return new ReportMemoryUsageConsumer(CI, &CI.getASTContext());
-    }
-
-    bool ParseArgs(const CompilerInstance& CI, const vector<string>& args)
-    {
-        if (args.size() && args[0] == "help")
-            llvm::errs() << m_helpText;
-        return true;
-    }
-
-    static const char* m_helpText;
-};
-
-const char* ReportMemoryUsageAction::m_helpText =
-    "This plugin is checking native memory instrumentation code.\n"
-    "The class is instrumented if it has reportMemoryUsage member function.\n"
-    "Sample:\n"
-    "class InstrumentedClass : public BaseInstrumentedClass {\n"
-    "public:\n"
-    "    void reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const\n"
-    "    {\n"
-    "        MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::DOM);\n"
-    "        BaseInstrumentedClass::reportMemoryUsage(memoryObjectInfo);\n"
-    "        info.addMember(m_notInstrumentedObject);\n"
-    "        info.addMember(m_instrumentedObject);\n"
-    "        info.addRawBuffer(m_pointer, m_length);\n"
-    "        info.ignoreMember(m_pointerToInternalField);\n"
-    "    }\n"
-    "\n"
-    "private:\n"
-    "    NotInstrumentedClass* m_notInstrumentedPtr;\n"
-    "    InstrumentedClass m_instrumentedObject;\n"
-    "    long m_length;\n"
-    "    double* m_pointer;\n"
-    "    Data* m_pointerToInternalField;\n"
-    "}\n";
-
-bool AddMemberCallVisitor::VisitCallExpr(CallExpr* callExpr)
-{
-    CXXMemberCallExpr* methodCallExpr = dyn_cast<CXXMemberCallExpr>(callExpr);
-    bool instrumented = false;
-    if (methodCallExpr) {
-        string methodName = methodCallExpr->getMethodDecl()->getNameAsString();
-        Strings::iterator i = find(instrumentationMethods.begin(), instrumentationMethods.end(), methodName);
-        instrumented = i != instrumentationMethods.end();
-    }
-    if (instrumented || !methodCallExpr) {
-        for (CallExpr::arg_iterator i = callExpr->arg_begin(); i != callExpr->arg_end(); ++i) {
-            Expr* expr = *i;
-            while (ImplicitCastExpr::classof(expr))
-                expr = static_cast<ImplicitCastExpr*>(expr)->getSubExpr();
-            if (MemberExpr* memberExpr = dyn_cast<MemberExpr>(expr))
-                m_instrumentedMembers.push_back(memberExpr->getMemberNameInfo().getAsString());
-        }
-    }
-    return true;
-}
-
-bool ReportMemoryUsageVisitor::VisitCXXMethodDecl(clang::CXXMethodDecl* decl)
-{
-    if (decl->doesThisDeclarationHaveABody() && decl->getNameAsString() == instrumentingMethodName) {
-        FullSourceLoc fullLocation = m_context->getFullLoc(decl->getLocStart());
-        if (fullLocation.isValid()) {
-            AddMemberCallVisitor visitor;
-            visitor.TraverseStmt(decl->getBody());
-            checkMembersCoverage(decl->getParent(), visitor.instrumentedMembers(), decl->getLocStart());
-        }
-    }
-    return true;
-}
-
-void ReportMemoryUsageVisitor::emitWarning(SourceLocation loc, const char* rawError)
-{
-    FullSourceLoc full(loc, m_instance.getSourceManager());
-    string err("[webkit-style] ");
-    err += rawError;
-    DiagnosticsEngine& diagnostic = m_instance.getDiagnostics();
-    DiagnosticsEngine::Level level = diagnostic.getWarningsAsErrors() ? DiagnosticsEngine::Error : DiagnosticsEngine::Warning;
-    unsigned id = diagnostic.getCustomDiagID(level, err);
-    DiagnosticBuilder builder = diagnostic.Report(full, id);
-}
-
-CXXMethodDecl* ReportMemoryUsageVisitor::findInstrumentationMethod(CXXRecordDecl* record)
-{
-    for (CXXRecordDecl::method_iterator m = record->method_begin(); m != record->method_end(); ++m) {
-        if (m->getNameInfo().getAsString() == instrumentingMethodName)
-            return *m;
-    }
-    return 0;
-}
-
-bool ReportMemoryUsageVisitor::needsToBeInstrumented(const Type* type)
-{
-    if (type->isBuiltinType())
-        return false;
-    if (type->isEnumeralType())
-        return false;
-    if (type->isClassType()) {
-        const RecordType* recordType = dyn_cast<RecordType>(type);
-        if (recordType) {
-            CXXRecordDecl* decl = dyn_cast<CXXRecordDecl>(recordType->getDecl());
-            if (decl->getNameAsString() == "String")
-                return true;
-            if (!decl || !findInstrumentationMethod(decl))
-                return false;
-        }
-    }
-    if (type->isArrayType()) {
-        const ArrayType* arrayType = dyn_cast<const ArrayType>(type);
-        return needsToBeInstrumented(arrayType->getElementType().getTypePtr());
-    }
-    return true;
-}
-
-void ReportMemoryUsageVisitor::checkMembersCoverage(const CXXRecordDecl* instrumentedClass, const Strings& instrumentedMembers, SourceLocation location)
-{
-    for (CXXRecordDecl::field_iterator i = instrumentedClass->field_begin(); i != instrumentedClass->field_end(); ++i) {
-        string fieldName = i->getNameAsString();
-        if (find(instrumentedMembers.begin(), instrumentedMembers.end(), fieldName) == instrumentedMembers.end()) {
-            if (!needsToBeInstrumented(i->getType().getTypePtr()))
-                continue;
-            emitWarning(i->getSourceRange().getBegin(), "class member needs to be instrumented in reportMemoryUsage function");
-            emitWarning(location, "located here");
-        }
-    }
-}
-
-} // namespace
-
-static FrontendPluginRegistry::Add<ReportMemoryUsageAction>
-X("report-memory-usage", "Checks reportMemoryUsage function consistency");
-
diff --git a/Tools/clang/ReportMemoryUsagePlugin/tests/Source/WebCore/Test.cpp b/Tools/clang/ReportMemoryUsagePlugin/tests/Source/WebCore/Test.cpp
deleted file mode 100644
index cc593e6..0000000
--- a/Tools/clang/ReportMemoryUsagePlugin/tests/Source/WebCore/Test.cpp
+++ /dev/null
@@ -1,151 +0,0 @@
-/*
- * Copyright (C) 2012 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *     * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-namespace aNamespace {
-
-class MemoryInstrumentation {
-public:
-    enum ObjectType {
-        DOM
-    };
-};
-
-class MemoryObjectInfo {
-};
-
-template <typename T>
-class MemoryClassInfo {
-public:
-    MemoryClassInfo(MemoryObjectInfo*, const T*, MemoryInstrumentation::ObjectType) { }
-    template <typename M> void addMember(M&) { }
-    template <typename M> void addInstrumentedMember(M&) { }
-};
-
-// ------ Mocked types
-template <typename T>
-class OwnPtr {
-public:
-    OwnPtr(T* ptr) : m_ptr(ptr) { }
-private:
-    T* m_ptr;
-};
-
-template <typename T>
-class RefPtr {
-public:
-    RefPtr(T* ptr) : m_ptr(ptr) { }
-private:
-    T* m_ptr;
-};
-
-template <typename T>
-class Vector {
-private:
-    T* m_data;
-};
-
-class String {
-private:
-    char* m_data;
-};
-
-// ------ User defined types
-class NotInstrumentedClass {
-public:
-    int m_array[10];
-};
-
-class InstrumentedClass {
-public:
-    virtual void reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-    {
-        MemoryClassInfo<InstrumentedClass> info(memoryObjectInfo, this, MemoryInstrumentation::DOM);
-        info.addMember(m_notInstrumentedPtrReportedNoWarning);
-        info.addInstrumentedMember(m_instrumentedPtrReportedNoWarning);
-    }
-
-private:
-
-    // have to be skipped even if not reported
-    int m_PODNotReportedNoWarning;
-    int m_arrayNotReportedNoWarning[10];
-    NotInstrumentedClass m_notInstrumentedNotReportedNoWarning;
-    NotInstrumentedClass m_notInstrumentedArrayNotReportedNoWarning[10];
-    enum { None } m_enumNotReportedNoWarning;
-    bool m_boolNotReportedNoWarning;
-
-    // reported
-    NotInstrumentedClass* m_notInstrumentedPtrReportedNoWarning;
-    InstrumentedClass* m_instrumentedPtrReportedNoWarning;
-
-    // reported
-    InstrumentedClass* m_instrumentedPtrNotReportedWarning;
-    int* m_rawBufferNotReportedWarning;
-    int* m_intPtrArrayNotReportedWarning[10];
-    NotInstrumentedClass* m_objPtrArrayNotReportedWarning[10];
-    OwnPtr<NotInstrumentedClass> m_ownPtrNotReportedWarning;
-    RefPtr<NotInstrumentedClass> m_refPtrNotReportedWarning;
-    String m_stringNotReportedWarning;
-    Vector<NotInstrumentedClass> m_vectorNotReportedWarning;
-};
-
-}
-
-using namespace aNamespace;
-
-namespace {
-
-class InstrumentedChildClass : public aNamespace::InstrumentedClass {
-public:
-    virtual void reportMemoryUsage(MemoryObjectInfo*) const;
-};
-
-void InstrumentedChildClass::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-{
-    MemoryClassInfo<InstrumentedChildClass> info(memoryObjectInfo, this, MemoryInstrumentation::DOM);
-}
-
-}
-
-class InstrumentedChildChildClass : public InstrumentedChildClass {
-public:
-    virtual void reportMemoryUsage(MemoryObjectInfo*) const;
-};
-
-void InstrumentedChildChildClass::reportMemoryUsage(MemoryObjectInfo*) const
-{
-}
-
-int aGlobalVariable = 0;
-
-int main(int argc, char** argv)
-{
-    return 0;
-}
diff --git a/Tools/efl/common.py b/Tools/efl/common.py
deleted file mode 100644
index 77657b3..0000000
--- a/Tools/efl/common.py
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/usr/bin/env python
-# Copyright (C) 2011 Igalia S.L.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
-
-import os
-
-script_dir = None
-
-
-def script_path(*args):
-    global script_dir
-    if not script_dir:
-        script_dir = os.path.join(os.path.dirname(__file__), '..', 'Scripts')
-    return os.path.join(*(script_dir,) + args)
-
-
-def top_level_path(*args):
-    return os.path.join(*((script_path('..', '..'),) + args))
diff --git a/Tools/efl/jhbuild.modules b/Tools/efl/jhbuild.modules
deleted file mode 100644
index 9e5cf26..0000000
--- a/Tools/efl/jhbuild.modules
+++ /dev/null
@@ -1,349 +0,0 @@
-<?xml version="1.0"?>
-<!DOCTYPE moduleset SYSTEM "moduleset.dtd">
-<?xml-stylesheet type="text/xsl" href="moduleset.xsl"?>
-<moduleset>
-
-  <metamodule id="webkitefl-testing-dependencies">
-    <dependencies>
-      <dep package="cairo"/>
-      <dep package="fonts"/>
-      <dep package="fontconfig"/>
-      <dep package="freetype6"/>
-      <dep package="harfbuzz"/>
-      <dep package="glib"/>
-      <dep package="glib-networking"/>
-      <dep package="libsoup"/>
-      <dep package="edje"/>
-      <dep package="e_dbus"/>
-      <dep package="eeze"/>
-      <dep package="efreet"/>
-      <dep package="elementary"/>
-      <dep package="libxml2"/>
-      <dep package="gstreamer"/>
-      <dep package="gst-plugins-base"/>
-      <dep package="gst-plugins-good"/>
-      <dep package="gst-plugins-bad"/>
-      <dep package="gst-libav"/>
-    </dependencies>
-  </metamodule>
-
-  <repository type="tarball" name="github.com"
-      href="https://github.com"/>
-  <repository type="tarball" name="sourceware.org"
-      href="ftp://sourceware.org"/>
-  <repository type="tarball" name="gnupg.org"
-      href="ftp://ftp.gnupg.org"/>
-  <repository type="tarball" name="p11-glue.freedesktop.org"
-      href="http://p11-glue.freedesktop.org"/>
-  <repository type="tarball" name="ftp.gnome.org"
-      href="http://ftp.gnome.org"/>
-  <repository type="git" name="git.gnome.org"
-      href="git://git.gnome.org/"/>
-  <repository type="tarball" name="cairographics.org"
-      href="http://cairographics.org"/>
-  <repository type="tarball" name="freedesktop.org"
-      href="http://www.freedesktop.org"/>
-  <repository type="tarball" name="enlightenment.fr"
-      href="http://git.enlightenment.fr/cgit.cgi/svn/"/>
-  <repository type="tarball" name="xmlsoft.org"
-      href="ftp://xmlsoft.org"/> 
-  <repository type="tarball" name="download.enlightenment.org"
-      href="http://download.enlightenment.org"/>
-  <repository type="tarball" name="gstreamer"
-      href="http://gstreamer.freedesktop.org/src/"/>
-
-  <autotools id="cairo" autogen-sh="configure">
-    <dependencies>
-      <dep package="fontconfig"/>
-      <dep package="pixman"/>
-    </dependencies>
-    <branch module="releases/cairo-1.12.4.tar.xz" version="1.12.4"
-            repo="cairographics.org"
-            hash="sha256:a467b2e1f04bfd3f848370ce5e82cfe0a7f712bac05a04d133bc34c94f677a28"
-            md5sum="a64bb8774a1e476e5cdd69e635794dfb">
-    </branch>
-  </autotools>
-
-  <autotools id="pixman" autogen-sh="configure"
-             autogenargs="--enable-gtk=no">
-    <branch module="releases/pixman-0.24.0.tar.gz" version="0.24.0"
-            repo="cairographics.org"
-            hash="sha256:a5647c7158f103eedff5fba799018f4169f6b26b573ab7685812ebc9a1c5d2e4"
-            md5sum="a2d0b120509bdccb10aa7f4bec3730e4">
-    </branch>
-  </autotools>
-
-  <autotools id="fonts"
-             skip-autogen="true">
-    <branch module="downloads/mrobinson/webkitgtk-test-fonts/webkitgtk-test-fonts-0.0.3.tar.gz" version="0.0.3"
-            repo="github.com"
-            hash="sha256:4a0a01f00855997cdcc7201f164b33a4e4144e8eadf40a5e542a1c448e035de5"
-            md5sum="10e74de1a8ba961d9037994d427b1dd2" size="16981642">
-    </branch>
-  </autotools>
-
-  <autotools id="libffi" autogen-sh="configure">
-    <branch module="/pub/libffi/libffi-3.0.11.tar.gz" version="3.0.11"
-             repo="sourceware.org"
-             hash="sha256:70bfb01356360089aa97d3e71e3edf05d195599fd822e922e50d46a0055a6283"
-             md5sum="f69b9693227d976835b4857b1ba7d0e3"/>
-  </autotools>
-
-  <tarball id="freetype6">
-    <source href="download.savannah.gnu.org/releases/freetype/freetype-2.4.11.tar.bz2" version="2.4.11"
-            hash="sha256:ef9d0bcb64647d9e5125dc7534d7ca371c98310fec87677c410f397f71ffbe3f"
-            md5sum="b93435488942486c8d0ca22e8f768034" />
-  </tarball>
-
-  <autotools id="p11-kit">
-    <branch module="/releases/p11-kit-0.12.tar.gz" version="0.12"
-             repo="p11-glue.freedesktop.org"
-             hash="sha256:4db792def545a3c8ae12e7e4ef166d7620cb445c00a5a984ab7c4a3b35f0be00"
-             md5sum="029aa2a3a103e7eb81b4aa731b93539e"/>
-  </autotools>
-
-  <autotools id="libgpg-error" autogen-sh="configure">
-    <branch module="/gcrypt/libgpg-error/libgpg-error-1.10.tar.bz2" version="1.10"
-             repo="gnupg.org"
-             hash="sha256:520629b4568b5c29b1991c8ffc267c8bdee5f223c7333c42a651b56f9b1c5431"
-             md5sum="736a03daa9dc5873047d4eb4a9c22a16"/>
-  </autotools>
-
-  <autotools id="libgcrypt" autogen-sh="./autogen.sh; configure">
-    <dependencies>
-      <dep package="libgpg-error"/>
-    </dependencies>
-    <branch module="/gcrypt/libgcrypt/libgcrypt-1.5.0.tar.bz2" version="1.5.0"
-             repo="gnupg.org"
-             hash="sha256:4b62fc516004940a0571025401a0581d49199f1a76dfb5ce6fd63f50db8173fa"
-             md5sum="693f9c64d50c908bc4d6e01da3ff76d8"/>
-  </autotools>
-
-  <autotools id="glib"
-             autogen-sh="configure"
-             autogenargs="--disable-dtrace">
-    <dependencies>
-      <dep package="libffi"/>
-    </dependencies>
-    <branch module="/pub/GNOME/sources/glib/2.33/glib-2.33.2.tar.xz" version="2.33.2"
-            repo="ftp.gnome.org"
-            hash="sha256:b7163e9f159775d13ecfb433d67c3f0883e0e518e85b2e970d4ad9773d7cd0b4"
-            md5sum="06ef0099fed22afcf34ade39ddff9a5b"/>
-  </autotools>
-
-  <autotools id="glib-networking">
-    <dependencies>
-      <dep package="glib"/>
-    </dependencies>
-    <branch module="/pub/GNOME/sources/glib-networking/2.33/glib-networking-2.33.2.tar.xz" version="2.33.2"
-            repo="ftp.gnome.org"
-            hash="e298cff3935eb752be290bbf734e457f1870bdb5370ee292606e6040a82074e7"
-            md5sum="5abb364f2a0babe2ec1e3a6d59f69043"/>
-  </autotools>
-
-  <autotools id="libsoup"
-             autogenargs="--without-gnome --disable-introspection">
-    <dependencies>
-      <dep package="glib-networking"/>
-    </dependencies>
-    <branch module="/pub/gnome/sources/libsoup/2.40/libsoup-2.40.3.tar.xz" version="2.40.3"
-            repo="ftp.gnome.org"
-            hash="sha256:82c92f1f6f4cbfd501df783ed87e7de9410b4a12a3bb0b19c64722e185d2bbc9">
-      <patch file="libsoup-2.40-auth-fix.patch" strip="1"/>
-    </branch>
-  </autotools>
-
-  <autotools id="fontconfig" autogen-sh="configure">
-    <branch module="software/fontconfig/release/fontconfig-2.8.0.tar.gz" version="2.8.0"
-            repo="freedesktop.org"
-            hash="sha256:fa2a1c6eea654d9fce7a4b1220f10c99cdec848dccaf1625c01f076b31382335"
-            md5sum="77e15a92006ddc2adbb06f840d591c0e">
-    </branch>
-  </autotools>
-
- <autotools id="harfbuzz" autogen-sh="configure">
-   <branch module="software/harfbuzz/release/harfbuzz-0.9.14.tar.bz2" version="0.9.14"
-           checkoutdir="harfbuzz-0.9.14"
-           repo="freedesktop.org"
-           hash="sha256:d07c0ffdbbbfdfbb6c65e73fe9c76466e87dbf04b094cbd0abf5fd7d571a4004"
-           md5sum="7e1990b79060e98e2d31f677a0ac9eed">
-   </branch>
- </autotools>
-
-  <autotools id="eina" autogen-sh="configure">
-    <branch module="releases/eina-1.7.5.tar.bz2" version="1.7.5"
-            repo="download.enlightenment.org"
-            hash="sha256:fc08c8aa3a225e3a42793afbf109788ab003de7595a542607a6a65694d08a44d"
-            md5sum="ea505aa52729de68ed6c00e1e45c3c50">
-    </branch>
-  </autotools>
-
-  <autotools id="embryo" autogen-sh="configure">
-    <branch module="releases/embryo-1.7.5.tar.bz2" version="1.7.5"
-            repo="download.enlightenment.org"
-            hash="sha256:a946d6b4e6aa94b39537aa6746f4653d9235d8b9ca3a0dc0734df07482d28e80"
-            md5sum="a52682ebfd04a0e787028732ee8f11f9">
-    </branch>
-    <dependencies>
-      <dep package="eina"/>
-    </dependencies>
-  </autotools>
-
-  <autotools id="evas" autogen-sh="configure">
-    <branch module="releases/evas-1.7.5.tar.bz2" version="1.7.5"
-            repo="download.enlightenment.org"
-            hash="sha256:70b350a970b2086787622845896f3e54de278fe698b8069796fd752e70427374"
-            md5sum="2c965b836128a839292161d4ca89380d">
-    </branch>
-  </autotools>
-
-  <autotools id="ecore" autogen-sh="configure">
-    <branch module="releases/ecore-1.7.5.tar.bz2" version="1.7.5"
-            repo="download.enlightenment.org"
-            hash="sha256:4bbaba2153db0c356d13c45adfbcc90c7118abd112d0817581417e708d6a9222"
-            md5sum="9ea98367ec40f7121ea61948bb395553">
-    </branch>
-    <dependencies>
-      <dep package="eina"/>
-      <dep package="evas"/>
-    </dependencies>
-  </autotools>
-
-  <autotools id="eet" autogen-sh="configure">
-    <branch module="releases/eet-1.7.5.tar.bz2" version="1.7.5"
-            repo="download.enlightenment.org"
-            hash="sha256:c79cc6e5d3304ae5761307c266835c4d8337cc0418ea43ace8c915b2d329427b"
-            md5sum="ec3fffbeff0be2699aeed1ed4377ee9d">
-    </branch>
-    <dependencies>
-      <dep package="libgcrypt"/>
-      <dep package="eina"/>
-    </dependencies>
-  </autotools>
-
-  <autotools id="edje" autogen-sh="configure">
-    <branch module="releases/edje-1.7.5.tar.bz2" version="1.7.5"
-            repo="download.enlightenment.org"
-            hash="sha256:c7b329ac6548378c1c74e9cdf60a34c33f4fdc2d8224577d6a9ea4b90c915ec3"
-            md5sum="56d7ba080088627773bc6369e9a924fe">
-    </branch>
-    <dependencies>
-      <dep package="eet"/>
-      <dep package="ecore"/>
-      <dep package="evas"/>
-      <dep package="embryo"/>
-    </dependencies>
-  </autotools>
-
-  <autotools id="e_dbus" autogen-sh="configure">
-    <branch module="releases/e_dbus-1.7.5.tar.bz2" version="1.7.5"
-            repo="download.enlightenment.org"
-            hash="sha256:d88886c13b470f9aee84f1a95a68eca5501506417362ee8066a117feffcd9399"
-            md5sum="a197ae1c8e93debf20728e3e7693b868">
-    </branch>
-    <dependencies>
-      <dep package="ecore"/>
-      <dep package="eina"/>
-    </dependencies>
-  </autotools>
-
-  <autotools id="eeze" autogen-sh="configure">
-    <branch module="releases/eeze-1.7.5.tar.bz2" version="1.7.5"
-            repo="download.enlightenment.org"
-            hash="sha256:b9cf6843d703c63930d5ff33be3dc640c28f58ce2e7def812086bfce8876e408"
-            md5sum="0891f831e2d25bd48a5c26e8793b1714">
-    </branch>
-    <dependencies>
-      <dep package="ecore"/>
-      <dep package="eina"/>
-    </dependencies>
-  </autotools>
-
-  <autotools id="efreet" autogen-sh="configure">
-    <branch module="releases/efreet-1.7.5.tar.bz2" version="1.7.5"
-            repo="download.enlightenment.org"
-            hash="sha256:8f5a043a76d8905f87600da5e0dddfcdf3b44f517724b376f8da32dc9ac487fb"
-            md5sum="d21e59631022d6fbdfa0e19b6b2ff93a">
-    </branch>
-    <dependencies>
-        <deb package="ecore"/>
-        <deb package="eina"/>
-        <deb package="eet"/>
-    </dependencies>
-  </autotools>
-
-  <autotools id="elementary"
-             autogen-sh="configure"
-             autogenargs="--disable-emap --disable-ethumb --disable-eweather --disable-web">
-    <branch module="releases/elementary-1.7.5.tar.bz2" version="1.7.5"
-            repo="download.enlightenment.org"
-            hash="sha256:898a4a7f8135c65359d4271ccab593b8a0b10d85fb6fd2d0cabea76152278b21"
-            md5sum="7f2cbea027fba8b58c41aaacfe68c155">
-    </branch>
-    <dependencies>
-        <deb package="edje"/>
-        <deb package="eina"/>
-        <deb package="eet"/>
-        <deb package="ecore"/>
-    </dependencies>
-  </autotools>
-
-  <autotools id="libxml2">
-    <branch module="/libxml2/libxml2-2.8.0.tar.gz" version="2.8.0"
-            repo="xmlsoft.org"
-            hash="sha256:f2e2d0e322685193d1affec83b21dc05d599e17a7306d7b90de95bb5b9ac622a"
-            md5sum="c62106f02ee00b6437f0fb9d370c1093"/>
-  </autotools>
-
-  <autotools id="gstreamer" autogen-sh="configure">
-    <branch repo="gstreamer"
-            module="gstreamer/gstreamer-1.0.5.tar.xz" version="1.0.5"
-            hash="sha256:26c2827567f09a46d0a3bc1e7f8696b2ae72b047306539178079abae487c5b77"/>
-  </autotools>
-
-  <autotools id="gst-plugins-base"
-             autogen-sh="configure"
-             autogenargs="--disable-examples --enable-theora --enable-vorbis">
-    <dependencies>
-      <dep package="gstreamer"/>
-    </dependencies>
-    <branch repo="gstreamer"
-            module="gst-plugins-base/gst-plugins-base-1.0.5.tar.xz" version="1.0.5"
-            hash="sha256:37ce6e09b99ef3879111c861ee5090582b4fd4c764e81ab6eb2b2b4dd77d7173"/>
-  </autotools>
-
-  <autotools id="gst-plugins-good"
-             autogen-sh="configure"
-             autogenargs="--disable-examples --enable-pulse">
-    <dependencies>
-      <dep package="cairo"/>
-      <dep package="gst-plugins-base"/>
-    </dependencies>
-    <branch repo="gstreamer"
-            module="gst-plugins-good/gst-plugins-good-1.0.5.tar.xz" version="1.0.5"
-            hash="sha256:53bd0b848e7896f1b22548ca4e8be56cf425e5100e121c472dff8272d5140bc5"/>
-  </autotools>
-
-  <autotools id="gst-plugins-bad"
-             autogen-sh="configure"
-             autogenargs="--disable-examples --enable-faad">
-    <dependencies>
-      <dep package="gst-plugins-base"/>
-    </dependencies>
-    <branch repo="gstreamer"
-            module="gst-plugins-bad/gst-plugins-bad-1.0.5.tar.xz" version="1.0.5"
-            hash="sha256:2e8f5b9a2fd274142d0a916b6425b9466028978b85858dc835dc80de744b276a"/>
-  </autotools>
-
-  <autotools id="gst-libav"
-             autogen-sh="configure"
-             autogenargs="--with-libav-extra-configure='--disable-yasm'">
-    <dependencies>
-      <dep package="gst-plugins-base"/>
-    </dependencies>
-    <branch repo="gstreamer"
-            module="gst-libav/gst-libav-1.0.5.tar.xz" version="1.0.5"
-            hash="sha256:aef8be665096b3a4e64424fb39d7c5da57faaaf95e9fea6c1bb44295d4fb32d5"/>
-  </autotools> 
-
-</moduleset>
diff --git a/Tools/efl/jhbuildrc b/Tools/efl/jhbuildrc
deleted file mode 100644
index cd3b942..0000000
--- a/Tools/efl/jhbuildrc
+++ /dev/null
@@ -1,75 +0,0 @@
-#!/usr/bin/env python
-# Copyright (C) 2011 Igalia S.L.
-# Copyright (C) 2012 Intel Corporation
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
-
-import multiprocessing
-import sys
-
-__efl_tools_directory = os.path.abspath(os.path.dirname(__file__))
-sys.path = [__efl_tools_directory] + sys.path
-import common
-
-build_policy = 'updated'
-
-# FIXME: move shared parts into ../jhbuild folder.
-
-__moduleset_file_uri = 'file://' + os.path.join(__efl_tools_directory, 'jhbuild.modules')
-__extra_modulesets = os.environ.get("WEBKIT_EXTRA_MODULESETS", "").split(",")
-moduleset = [ __moduleset_file_uri, ]
-if __extra_modulesets != ['']:
-    moduleset.extend(__extra_modulesets)
-
-__extra_modules = os.environ.get("WEBKIT_EXTRA_MODULES", "").split(",")
-modules = [ 'webkitefl-testing-dependencies', ]
-if __extra_modules != ['']:
-    modules.extend(__extra_modules)
-
-if os.environ.has_key('WEBKITOUTPUTDIR'):
-    checkoutroot = os.path.abspath(os.path.join(os.environ['WEBKITOUTPUTDIR'], 'Dependencies', 'Source'))
-    prefix = os.path.abspath(os.path.join(os.environ['WEBKITOUTPUTDIR'], 'Dependencies', 'Root'))
-else:
-    checkoutroot = os.path.abspath(common.top_level_path('WebKitBuild','Dependencies', 'Source'))
-    prefix = os.path.abspath(common.top_level_path('WebKitBuild','Dependencies', 'Root'))
-
-nonotify = True
-notrayicon = True
-if 'MAKEFLAGS' not in os.environ:
-    os.environ['MAKEFLAGS'] = '-j%d' % multiprocessing.cpu_count()
-
-# Use system libraries while building.
-if use_lib64:
-    _libdir = 'lib64'
-else:
-    _libdir = 'lib'
-addpath('PKG_CONFIG_PATH', os.path.join(os.sep, 'usr', _libdir, 'pkgconfig'))
-addpath('PKG_CONFIG_PATH', os.path.join(os.sep, 'usr', 'share', 'pkgconfig'))
-
-addpath('XDG_DATA_DIRS', '/usr/share')
-addpath('XDG_CONFIG_DIRS', '/etc/xdg')
-
-addpath('CMAKE_PREFIX_PATH', prefix)
-
-# jhbuild installs libraries into lib64/ by default when building on
-# 64-bit Linux installations, while CMake does not look for libraries
-# in lib64/ if /etc/debian_version exists. For now we just pass the
-# lib64/ directory to the CMAKE_LIBRARY_PATH environment variable to
-# make sure the libraries installed by jhbuild are found by CMake on
-# Debian-based systems as well.
-if use_lib64:
-    addpath('CMAKE_LIBRARY_PATH', os.path.join(prefix, _libdir))
-
-partial_build = False
diff --git a/Tools/efl/patches/libsoup-2.40-auth-fix.patch b/Tools/efl/patches/libsoup-2.40-auth-fix.patch
deleted file mode 100644
index 343dc27..0000000
--- a/Tools/efl/patches/libsoup-2.40-auth-fix.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-From f9816e366e53004618abcee1741885b69e9466a8 Mon Sep 17 00:00:00 2001
-From: Martin Robinson <mrobinson@igalia.com>
-Date: Tue, 4 Dec 2012 17:48:45 -0800
-Subject: [PATCH] Better handle the failure of URI embedded credentials
-
-When using credentials embedded in the URI, clear them so that a failure
-will trigger the authentication signal and the use of previously
-remembered credentials.
----
- libsoup/soup-auth-manager.c |    7 ++++---
- tests/auth-test.c           |    5 ++++-
- 2 files changed, 8 insertions(+), 4 deletions(-)
-
-diff --git a/libsoup/soup-auth-manager.c b/libsoup/soup-auth-manager.c
-index b3ef9f6..2a2030c 100644
---- a/libsoup/soup-auth-manager.c
-+++ b/libsoup/soup-auth-manager.c
-@@ -411,9 +411,10 @@ authenticate_auth (SoupAuthManager *manager, SoupAuth *auth,
- 	/* If a password is specified explicitly in the URI, use it
- 	 * even if the auth had previously already been authenticated.
- 	 */
--	if (uri->password) {
--		if (!prior_auth_failed)
--			soup_auth_authenticate (auth, uri->user, uri->password);
-+	if (uri->password && uri->user) {
-+		soup_auth_authenticate (auth, uri->user, uri->password);
-+		soup_uri_set_password (uri, NULL);
-+		soup_uri_set_user (uri, NULL);
- 	} else if (!soup_auth_is_authenticated (auth) && can_interact) {
- 		soup_auth_manager_emit_authenticate (manager, msg, auth,
- 						     prior_auth_failed);
-diff --git a/tests/auth-test.c b/tests/auth-test.c
-index 85c4d41..334033b 100644
---- a/tests/auth-test.c
-+++ b/tests/auth-test.c
-@@ -146,7 +146,10 @@ static SoupAuthTest main_tests[] = {
- 	  "Digest/realm1/not/", "1", FALSE, /* should not be used */ "1", SOUP_STATUS_UNAUTHORIZED },
- 
- 	{ "Make sure we've forgotten it",
--	  "Digest/realm1/", "", FALSE, "0", SOUP_STATUS_UNAUTHORIZED }
-+	  "Digest/realm1/", "", FALSE, "0", SOUP_STATUS_UNAUTHORIZED },
-+
-+	{ "Fail with URI-embedded password, then use right password in the authenticate signal",
-+	  "Basic/realm3/", "43", TRUE, "43", SOUP_STATUS_OK }
- };
- 
- static const char *auths[] = {
--- 
-1.7.10.4
-
diff --git a/Tools/gtk/common.py b/Tools/gtk/common.py
deleted file mode 100644
index 6bffc09..0000000
--- a/Tools/gtk/common.py
+++ /dev/null
@@ -1,139 +0,0 @@
-#!/usr/bin/env python
-# Copyright (C) 2011 Igalia S.L.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
-
-import errno
-import os
-import select
-import subprocess
-import sys
-
-script_dir = None
-build_dir = None
-
-
-def script_path(*args):
-    global script_dir
-    if not script_dir:
-        script_dir = os.path.join(os.path.dirname(__file__), '..', 'Scripts')
-    return os.path.join(*(script_dir,) + args)
-
-
-def top_level_path(*args):
-    return os.path.join(*((script_path('..', '..'),) + args))
-
-
-def get_build_path(build_types=('Release', 'Debug')):
-    global build_dir
-    if build_dir:
-        return build_dir
-
-    def is_valid_build_directory(path):
-        return os.path.exists(os.path.join(path, 'GNUmakefile')) or \
-            os.path.exists(os.path.join(path, 'Programs', 'DumpRenderTree'))
-
-    if len(sys.argv[1:]) > 1 and os.path.exists(sys.argv[-1]) and is_valid_build_directory(sys.argv[-1]):
-        return sys.argv[-1]
-
-    # Debian and Ubuntu build both flavours of the library (with gtk2
-    # and with gtk3); they use directories build-2.0 and build-3.0 for
-    # that, which is not handled by the above cases; we check that the
-    # directory where we are called from is a valid build directory,
-    # which should handle pretty much all other non-standard cases.
-    build_dir = os.getcwd()
-    if is_valid_build_directory(build_dir):
-        return build_dir
-
-    for build_type in build_types:
-        build_dir = top_level_path('WebKitBuild', build_type)
-        if is_valid_build_directory(build_dir):
-            return build_dir
-
-    # distcheck builds in a directory named _build in the top-level path.
-    build_dir = top_level_path("_build")
-    if is_valid_build_directory(build_dir):
-        return build_dir
-
-    build_dir = top_level_path()
-    if is_valid_build_directory(build_dir):
-        return build_dir
-
-    build_dir = top_level_path("WebKitBuild")
-    if is_valid_build_directory(build_dir):
-        return build_dir
-
-    print('Could not determine build directory.')
-    sys.exit(1)
-
-
-def build_path_for_build_types(build_types, *args):
-    return os.path.join(*(get_build_path(build_types),) + args)
-
-
-def build_path(*args):
-    return build_path_for_build_types(('Release', 'Debug'), *args)
-
-
-def pkg_config_file_variable(package, variable):
-    process = subprocess.Popen(['pkg-config', '--variable=%s' % variable, package],
-                               stdout=subprocess.PIPE)
-    stdout = process.communicate()[0].decode("utf-8")
-    if process.returncode:
-        return None
-    return stdout.strip()
-
-
-def prefix_of_pkg_config_file(package):
-    return pkg_config_file_variable(package, 'prefix')
-
-
-def gtk_version_of_pkg_config_file(pkg_config_path):
-    process = subprocess.Popen(['pkg-config', pkg_config_path, '--print-requires'],
-                               stdout=subprocess.PIPE)
-    stdout = process.communicate()[0].decode("utf-8")
-
-    if 'gtk+-3.0' in stdout:
-        return 3
-    return 2
-
-
-def parse_output_lines(fd, parse_line_callback):
-    output = ''
-    read_set = [fd]
-    while read_set:
-        rlist, wlist, xlist = select.select(read_set, [], [])
-
-        if fd in rlist:
-            try:
-                chunk = os.read(fd, 1024)
-            except OSError as e:
-                if e.errno == errno.EIO:
-                    # Child process finished.
-                    chunk = ''
-                else:
-                    raise e
-            if not chunk:
-                read_set.remove(fd)
-
-            output += chunk
-            while '\n' in output:
-                pos = output.find('\n')
-                parse_line_callback(output[:pos + 1])
-                output = output[pos + 1:]
-
-            if not chunk and output:
-                parse_line_callback(output)
-                output = ''
diff --git a/Tools/gtk/find-make-dist-errors b/Tools/gtk/find-make-dist-errors
deleted file mode 100755
index 880c780..0000000
--- a/Tools/gtk/find-make-dist-errors
+++ /dev/null
@@ -1,108 +0,0 @@
-#!/usr/bin/python
-# Copyright (C) 2011 Igalia S.L.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
-
-import common
-import os
-import subprocess
-import sys
-
-def is_source_file_listing(line):
-    return line.strip().startswith('Source')
-
-def get_listed_makefile_headers():
-    makefile_text = open(os.path.join(common.build_path('GNUmakefile'))).read()
-
-    # Automake often places separate includes on the same line.
-    makefile_text = makefile_text.replace(' ', '\n')
-
-    headers = []
-    for line in makefile_text.splitlines():
-        # $(srcdir)/ is the same as an empty string in a source file listing.
-        line = line.replace('$(srcdir)/', '')
-
-        # If the line doesn't start with 'Source' it isn't listing for
-        # a source file.
-        if not is_source_file_listing(line):
-            continue
-
-        # Most source listings end with \ indicating that the listing
-        # continues onto the next line.
-        line = line.replace('\\', '')
-
-        # We only care about header files. Source files result in build
-        # breakage, so we will detect them without this script.
-        line = line.strip()
-        if not line.endswith('.h'):
-            continue
-
-        # If the line contains a makefile variable we do not care about it.
-        if line.find('$') != -1:
-            continue
-
-        headers.append(line)
-
-    return headers
-
-def scan_headers_from_dependency_files():
-    process = subprocess.Popen(['find . -name *.Plo | xargs cat | grep .h:$'],
-                               cwd=common.build_path(),
-                               stdout=subprocess.PIPE,
-                               shell=True)
-    sanitized_lines = set()
-    for line in process.communicate()[0].splitlines():
-        # Paths in Plo files are relative to the build directory so they might contain
-        # ../.. if the build directory is something like WebKitBuild/Release.
-        line = line.replace('../../', '')
-        if not is_source_file_listing(line):
-            continue
-
-        # The lines we care about end with ':'.
-        line = line.replace(':', '')
-        line = line.strip()
-        sanitized_lines.add(line)
-    return sanitized_lines
-
-def get_unlisted_headers(listed_makefile_headers):
-    unlisted = set()
-    for header in scan_headers_from_dependency_files():
-        if not header in listed_makefile_headers:
-            unlisted.add(header)
-    return unlisted
-
-def get_missing_headers(listed_makefile_headers):
-    missing = set()
-    for header in listed_makefile_headers:
-        if not os.path.exists(common.top_level_path(header)):
-            missing.add(header)
-    return missing
-
-listed_makefile_headers = get_listed_makefile_headers()
-unlisted_headers = get_unlisted_headers(listed_makefile_headers)
-missing_headers = get_missing_headers(listed_makefile_headers)
-if unlisted_headers:
-    print 'Headers not listed in the GNUmakefiles:'
-    for header in sorted(unlisted_headers):
-        print '\t%s' % header
-    print
-
-if missing_headers:
-    print 'Headers listed in the GNUmakefiles that do not exist:'
-    for header in sorted(missing_headers):
-        print '\t%s' % header
-    print
-
-sys.exit(len(unlisted_headers) + len(missing_headers))
diff --git a/Tools/gtk/generate-feature-defines-files b/Tools/gtk/generate-feature-defines-files
deleted file mode 100755
index f5b2c7e..0000000
--- a/Tools/gtk/generate-feature-defines-files
+++ /dev/null
@@ -1,58 +0,0 @@
-#!/usr/bin/env python
-
-import os
-import re
-import sys
-
-def read_feature_defines_override(feature_defines):
-    feature_defines_overriding_file = 'WebKitFeatureOverrides.txt'
-    if not os.path.exists(feature_defines_overriding_file):
-        return
-
-    print("The following feature defines were overriden:")
-    with open(feature_defines_overriding_file) as f:
-        match_iter = re.findall(r"((?:ENABLE_)\w+)=(0|1)", f.read())
-
-    for match in match_iter:
-        feature = match[0]
-        value = int(match[1])
-
-        if feature in feature_defines and value != feature_defines[feature]:
-            print("\t{0}: {1} => {2}".format(feature, feature_defines[feature], value))
-        feature_defines[feature] = value
-
-def write_file_if_contents_changed(filename, contents):
-    if os.path.exists(filename):
-        with open(filename, 'r') as f:
-            old_contents = f.read()
-        if old_contents == contents:
-            return
-    with open(filename, 'w') as f:
-        f.write(contents)
-
-def write_feature_defines_header(feature_defines):
-    contents = ''
-    for (feature, value) in feature_defines.items():
-        contents += '#define {0} {1}\n'.format(feature, value)
-    write_file_if_contents_changed("WebKitFeatures.h", contents)
-
-def write_flattened_feature_defines_file(feature_defines):
-    contents = ''
-    for (feature, value) in feature_defines.items():
-        contents += '{0}={1}\n'.format(feature, value)
-    write_file_if_contents_changed("WebKitFeatures.txt", contents)
-
-def generate_feature_defines_files(default_features):
-    build_dir = os.getcwd()
-    feature_defines = {}
-
-    for feature_define in default_features:
-        (feature, value) = feature_define.split("=")
-        feature_defines[feature] = int(value)
-
-    read_feature_defines_override(feature_defines)
-    write_feature_defines_header(feature_defines)
-    write_flattened_feature_defines_file(feature_defines)
-
-if __name__=='__main__':
-    generate_feature_defines_files(sys.argv[1:])
diff --git a/Tools/gtk/generate-gtkdoc b/Tools/gtk/generate-gtkdoc
deleted file mode 100755
index a1d5109..0000000
--- a/Tools/gtk/generate-gtkdoc
+++ /dev/null
@@ -1,211 +0,0 @@
-#!/usr/bin/env python
-# Copyright (C) 2011 Igalia S.L.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
-
-import common
-import glob
-import gtkdoc
-import logging
-import os.path
-import sys
-
-def configure_logging():
-    level = logging.DEBUG if '-v' in sys.argv else logging.INFO
-    logger = logging.getLogger('gtkdoc')
-    logger.setLevel(level)
-    handler = logging.StreamHandler()
-    handler.setLevel(level)
-    logger.addHandler(handler)
-    if level == logging.DEBUG:
-        handler.setFormatter(logging.Formatter('[%(asctime)s]  %(message)s'))
-    else:
-        handler.setFormatter(logging.Formatter('%(message)s'))
-
-
-def get_gtkdoc_module_paths(xref_dep_packages):
-    deps = []
-    html_dir = os.path.join('share', 'gtk-doc', 'html')
-
-    for package in xref_dep_packages:
-        prefix = common.prefix_of_pkg_config_file(package)
-        if prefix is None:
-            continue
-        for module in xref_dep_packages[package]:
-            deps.append(os.path.join(prefix, html_dir, module))
-
-    return deps
-
-
-def get_common_options():
-    # TODO: We should consider using an arguments parsing library if
-    # we need more of these complex ones.
-    virtual_root = ''
-    for argument in sys.argv:
-        if argument.startswith('--virtual-root='):
-            virtual_root = argument.split('=')[1]
-            break
-
-    return {
-        'decorator': 'WEBKIT_API',
-        'deprecation_guard': 'WEBKIT_DISABLE_DEPRECATED',
-        'library_path' : common.build_path('.libs'),
-        'virtual_root' : virtual_root,
-    }
-
-def get_common_xref_deps():
-    return {
-        'glib-2.0' : ['glib', 'gobject', 'gio'],
-        'libsoup-2.4' : ['libsoup-2.4'],
-        'gdk-pixbuf-2.0': ['gdk-pixbuf']
-    }
-
-def get_webkit2_options():
-    def derived_sources_path(*args):
-        return common.build_path(*(('DerivedSources', 'WebKit2') + args))
-    def src_path(*args):
-        return common.top_level_path(*(('Source', 'WebKit2', 'UIProcess', 'API', 'gtk') + args))
-    def injected_bundle_src_path(*args):
-        return common.top_level_path(*(('Source', 'WebKit2', 'WebProcess', 'InjectedBundle', 'API', 'gtk') + args))
-
-    xref_deps = get_common_xref_deps().copy()
-    xref_deps.update({
-        'gtk+-3.0' : ['gtk3', 'gdk3']
-    })
-
-    options = get_common_options().copy()
-    options.update({
-        'module_name' : 'webkit2gtk',
-        'doc_dir' : src_path('docs'),
-        'output_dir' : common.build_path('Documentation', 'webkit2gtk'),
-        'source_dirs' : [src_path(), derived_sources_path('webkit2gtk', 'webkit2'), injected_bundle_src_path()],
-        'cflags' : ' -I' + derived_sources_path('webkit2gtk', 'include') + \
-                   ' -I' + derived_sources_path('webkit2gtk') + \
-                   ' -I' + derived_sources_path('include') + \
-                   ' -I' + common.top_level_path('Source') + \
-                   ' -I' + src_path(),
-        'cross_reference_deps' : get_gtkdoc_module_paths(xref_deps),
-        'ignored_files': glob.glob(src_path('*Private.h')) + \
-                         glob.glob(injected_bundle_src_path('*Private.h')) + \
-                         glob.glob(src_path('*Client*')) + \
-                         glob.glob(src_path('WebKit2GtkAuthenticationDialog.*')) + \
-                         glob.glob(src_path('WebKitGeolocationProvider.*')) + \
-                         glob.glob(src_path('WebKitTextChecker.*')) + \
-                         glob.glob(src_path('WebKitWebViewBaseAccessible.*')) + \
-                         glob.glob(src_path('WebViewBaseInputMethodFilter.*')) + \
-                         glob.glob(derived_sources_path('webkit2gtk', 'webkit2', 'WebKitMarshal.*')) + \
-                         glob.glob(derived_sources_path('webkit2gtk', 'webkit2', 'WebKitEnumTypes.*')) + \
-                         glob.glob(src_path('tests/*.h'))
-    })
-    return options
-
-def get_webkit1_options(gtk_version):
-    def src_path(*args):
-        return common.top_level_path(*(('Source', 'WebKit', 'gtk') + args))
-
-    xref_deps = get_common_xref_deps().copy()
-    if gtk_version == 3:
-        xref_deps.update({
-                'gtk+-3.0' : ['gtk3', 'gdk3']
-        })
-    else:
-        xref_deps.update({
-                'gtk+-2.0' : ['gtk', 'gdk']
-        })
-
-    options = get_common_options().copy()
-    options.update({
-        'module_name' : 'webkitgtk',
-        'doc_dir' : src_path('docs'),
-        'output_dir' : common.build_path('Documentation', 'webkitgtk'),
-        'source_dirs' : [src_path('webkit'), common.build_path('Source', 'WebKit', 'gtk', 'webkit')],
-        'cflags' : ' -I' + common.build_path('WebKit', 'gtk') + \
-                   ' -I' + common.build_path('DerivedSources') + \
-                   ' -I' + src_path() + \
-                   ' -I' + common.top_level_path('Source') + \
-                   ' -I' + common.top_level_path('Source', 'JavaScriptCore', 'ForwardingHeaders'),
-        'cross_reference_deps' : get_gtkdoc_module_paths(xref_deps),
-        'ignored_files': glob.glob(src_path('webkit', '*private.*')) + \
-                         glob.glob(src_path('webkit', 'webkitspellcheckerenchant.*'))
-    })
-    return options
-
-def print_missing_api(generator):
-    missing_api = generator.api_missing_documentation()
-    if not missing_api:
-        return
-    print("\nThe following API are missing documentation:")
-    for api in missing_api:
-        print("\t%s" % api)
-
-def generate_doc(generator):
-    generator.generate(html='--skip-html' not in sys.argv)
-    if generator.saw_warnings:
-        print_missing_api(generator)
-    return generator.saw_warnings
-
-configure_logging()
-
-# We need to add the JavaScriptCore build directory to the PKG_CONFIG_PATH
-# so that pkgconfig can properly resolve the libjavascriptcore dependency.
-pkg_config_path = os.environ.get("PKG_CONFIG_PATH")
-os.environ['PKG_CONFIG_PATH'] = common.build_path('Source', 'JavaScriptCore')
-if pkg_config_path:
-    os.environ['PKG_CONFIG_PATH'] += ':' + pkg_config_path
-
-# Newer versions of glib have deprecated g_type_init, so we need to disable
-# that warning when running gtkdoc-scanobj by overriding the CFLAGS we use
-# to compile it.
-cflags = os.environ.get('CFLAGS', '')
-cflags += ' -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_32'
-os.environ['CFLAGS'] = cflags
-
-# Clang can be noisy, throwing unnecessary warnings for unused arguments.
-if os.environ.get('CC') == "clang":
-    os.environ['CFLAGS'] += ' -Qunused-arguments'
-
-saw_webkit1_warnings = saw_webkit2_warnings = False
-
-pkg_config_path = common.build_path('Source', 'WebKit', 'gtk', 'webkitgtk-3.0.pc')
-if not os.path.exists(pkg_config_path):
-    pkg_config_path = common.build_path('Source', 'WebKit', 'gtk', 'webkit-1.0.pc')
-if os.path.exists(pkg_config_path):
-    options = get_webkit1_options(common.gtk_version_of_pkg_config_file(pkg_config_path))
-    generator = gtkdoc.PkgConfigGTKDoc(pkg_config_path, options)
-    if '--rebase' not in sys.argv:
-        print("Generating WebKit1 documentation...")
-        saw_webkit1_warnings = generate_doc(generator)
-    else:
-        print("Rebasing WebKit1 documentation...")
-        try:
-            generator.rebase_installed_docs()
-        except Exception:
-            print("Rebase did not happen, likely no documentation is present.")
-
-# WebKit2 might not be enabled, so check for the pkg-config file before building documentation.
-pkg_config_path = common.build_path('Source', 'WebKit2', 'webkit2gtk-3.0.pc')
-if os.path.exists(pkg_config_path):
-    generator = gtkdoc.PkgConfigGTKDoc(pkg_config_path, get_webkit2_options())
-    if '--rebase' not in sys.argv:
-        print("\nGenerating WebKit2 documentation...")
-        saw_webkit2_warnings = generate_doc(generator)
-    else:
-        print("\nRebasing WebKit2 documentation...")
-        try:
-            generator.rebase_installed_docs()
-        except Exception:
-            print("Rebase did not happen, likely no documentation is present.")
-
-sys.exit(saw_webkit1_warnings or saw_webkit2_warnings)
diff --git a/Tools/gtk/gtkdoc.py b/Tools/gtk/gtkdoc.py
deleted file mode 100644
index 0cbccf1..0000000
--- a/Tools/gtk/gtkdoc.py
+++ /dev/null
@@ -1,414 +0,0 @@
-# Copyright (C) 2011 Igalia S.L.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
-
-import errno
-import logging
-import os
-import os.path
-import subprocess
-import sys
-
-
-class GTKDoc(object):
-
-    """Class that controls a gtkdoc run.
-
-    Each instance of this class represents one gtkdoc configuration
-    and set of documentation. The gtkdoc package is a series of tools
-    run consecutively which converts inline C/C++ documentation into
-    docbook files and then into HTML. This class is suitable for
-    generating documentation or simply verifying correctness.
-
-    Keyword arguments:
-    output_dir         -- The path where gtkdoc output should be placed. Generation
-                          may overwrite file in this directory. Required.
-    module_name        -- The name of the documentation module. For libraries this
-                          is typically the library name. Required if not library path
-                          is given.
-    source_dirs        -- A list of paths to the source code to be scanned. Required.
-    ignored_files      -- A list of filenames to ignore in the source directory. It is
-                          only necessary to provide the basenames of these files.
-                          Typically it is important to provide an updated list of
-                          ignored files to prevent warnings about undocumented symbols.
-    decorator          -- If a decorator is used to unhide certain symbols in header
-                          files this parameter is required for successful scanning.
-                          (default '')
-    deprecation_guard  -- gtkdoc tries to ensure that symbols marked as deprecated
-                          are encased in this C preprocessor define. This is required
-                          to avoid gtkdoc warnings. (default '')
-    cflags             -- This parameter specifies any preprocessor flags necessary for
-                          building the scanner binary during gtkdoc-scanobj. Typically
-                          this includes all absolute include paths necessary to resolve
-                          all header dependencies. (default '')
-    ldflags            -- This parameter specifies any linker flags necessary for
-                          building the scanner binary during gtkdoc-scanobj. Typically
-                          this includes "-lyourlibraryname". (default '')
-    library_path       -- This parameter specifies the path to the directory where you
-                          library resides used for building the scanner binary during
-                          gtkdoc-scanobj. (default '')
-
-    doc_dir            -- The path to other documentation files necessary to build
-                          the documentation. This files in this directory as well as
-                          the files in the 'html' subdirectory will be copied
-                          recursively into the output directory. (default '')
-    main_sgml_file     -- The path or name (if a doc_dir is given) of the SGML file
-                          that is the considered the main page of your documentation.
-                          (default: <module_name>-docs.sgml)
-    version            -- The version number of the module. If this is provided,
-                          a version.xml file containing the version will be created
-                          in the output directory during documentation generation.
-
-    interactive        -- Whether or not errors or warnings should prompt the user
-                          to continue or not. When this value is false, generation
-                          will continue despite warnings. (default False)
-
-    virtual_root       -- A temporary installation directory which is used as the root
-                          where the actual installation prefix lives; this is mostly
-                          useful for packagers, and should be set to what is given to
-                          make install as DESTDIR.
-    """
-
-    def __init__(self, args):
-
-        # Parameters specific to scanning.
-        self.module_name = ''
-        self.source_dirs = []
-        self.ignored_files = []
-        self.decorator = ''
-        self.deprecation_guard = ''
-
-        # Parameters specific to gtkdoc-scanobj.
-        self.cflags = ''
-        self.ldflags = ''
-        self.library_path = ''
-
-        # Parameters specific to generation.
-        self.output_dir = ''
-        self.doc_dir = ''
-        self.main_sgml_file = ''
-
-        # Parameters specific to gtkdoc-fixxref.
-        self.cross_reference_deps = []
-
-        self.interactive = False
-
-        self.logger = logging.getLogger('gtkdoc')
-
-        for key, value in iter(args.items()):
-            setattr(self, key, value)
-
-        def raise_error_if_not_specified(key):
-            if not getattr(self, key):
-                raise Exception('%s not specified.' % key)
-
-        raise_error_if_not_specified('output_dir')
-        raise_error_if_not_specified('source_dirs')
-        raise_error_if_not_specified('module_name')
-
-        # Make all paths absolute in case we were passed relative paths, since
-        # we change the current working directory when executing subcommands.
-        self.output_dir = os.path.abspath(self.output_dir)
-        self.source_dirs = [os.path.abspath(x) for x in self.source_dirs]
-        if self.library_path:
-            self.library_path = os.path.abspath(self.library_path)
-
-        if not self.main_sgml_file:
-            self.main_sgml_file = self.module_name + "-docs.sgml"
-
-    def generate(self, html=True):
-        self.saw_warnings = False
-
-        self._copy_doc_files_to_output_dir(html)
-        self._write_version_xml()
-        self._run_gtkdoc_scan()
-        self._run_gtkdoc_scangobj()
-        self._run_gtkdoc_mktmpl()
-        self._run_gtkdoc_mkdb()
-
-        if not html:
-            return
-
-        self._run_gtkdoc_mkhtml()
-        self._run_gtkdoc_fixxref()
-
-    def _delete_file_if_exists(self, path):
-        if not os.access(path, os.F_OK | os.R_OK):
-            return
-        self.logger.debug('deleting %s', path)
-        os.unlink(path)
-
-    def _create_directory_if_nonexistent(self, path):
-        try:
-            os.makedirs(path)
-        except OSError as error:
-            if error.errno != errno.EEXIST:
-                raise
-
-    def _raise_exception_if_file_inaccessible(self, path):
-        if not os.path.exists(path) or not os.access(path, os.R_OK):
-            raise Exception("Could not access file at: %s" % path)
-
-    def _output_has_warnings(self, outputs):
-        for output in outputs:
-            if output and output.find('warning'):
-                return True
-        return False
-
-    def _ask_yes_or_no_question(self, question):
-        if not self.interactive:
-            return True
-
-        question += ' [y/N] '
-        answer = None
-        while answer != 'y' and answer != 'n' and answer != '':
-            answer = raw_input(question).lower()
-        return answer == 'y'
-
-    def _run_command(self, args, env=None, cwd=None, print_output=True, ignore_warnings=False):
-        if print_output:
-            self.logger.info("Running %s", args[0])
-        self.logger.debug("Full command args: %s", str(args))
-
-        process = subprocess.Popen(args, env=env, cwd=cwd,
-                                   stdout=subprocess.PIPE,
-                                   stderr=subprocess.PIPE)
-        stdout, stderr = [b.decode("utf-8") for b in process.communicate()]
-
-        if print_output:
-            if stdout:
-                sys.stdout.write(stdout)
-            if stderr:
-                sys.stderr.write(stderr)
-
-        if process.returncode != 0:
-            raise Exception('%s produced a non-zero return code %i'
-                             % (args[0], process.returncode))
-
-        if not ignore_warnings and ('warning' in stderr or 'warning' in stdout):
-            self.saw_warnings = True
-            if not self._ask_yes_or_no_question('%s produced warnings, '
-                                                'try to continue?' % args[0]):
-                raise Exception('%s step failed' % args[0])
-
-        return stdout.strip()
-
-    def _copy_doc_files_to_output_dir(self, html=True):
-        if not self.doc_dir:
-            self.logger.info('Not copying any files from doc directory,'
-                             ' because no doc directory given.')
-            return
-
-        def copy_file_replacing_existing(src, dest):
-            if os.path.isdir(src):
-                self.logger.debug('skipped directory %s',  src)
-                return
-            if not os.access(src, os.F_OK | os.R_OK):
-                self.logger.debug('skipped unreadable %s', src)
-                return
-
-            self._delete_file_if_exists(dest)
-
-            self.logger.debug('created %s', dest)
-            os.link(src, dest)
-
-        def copy_all_files_in_directory(src, dest):
-            for path in os.listdir(src):
-                copy_file_replacing_existing(os.path.join(src, path),
-                                             os.path.join(dest, path))
-
-        self.logger.info('Copying template files to output directory...')
-        self._create_directory_if_nonexistent(self.output_dir)
-        copy_all_files_in_directory(self.doc_dir, self.output_dir)
-
-        if not html:
-            return
-
-        self.logger.info('Copying HTML files to output directory...')
-        html_src_dir = os.path.join(self.doc_dir, 'html')
-        html_dest_dir = os.path.join(self.output_dir, 'html')
-        self._create_directory_if_nonexistent(html_dest_dir)
-
-        if os.path.exists(html_src_dir):
-            copy_all_files_in_directory(html_src_dir, html_dest_dir)
-
-    def _write_version_xml(self):
-        if not self.version:
-            self.logger.info('No version specified, so not writing version.xml')
-            return
-
-        version_xml_path = os.path.join(self.output_dir, 'version.xml')
-        src_version_xml_path = os.path.join(self.doc_dir, 'version.xml')
-
-        # Don't overwrite version.xml if it was in the doc directory.
-        if os.path.exists(version_xml_path) and \
-           os.path.exists(src_version_xml_path):
-            return
-
-        output_file = open(version_xml_path, 'w')
-        output_file.write(self.version)
-        output_file.close()
-
-    def _ignored_files_basenames(self):
-        return ' '.join([os.path.basename(x) for x in self.ignored_files])
-
-    def _run_gtkdoc_scan(self):
-        args = ['gtkdoc-scan',
-                '--module=%s' % self.module_name,
-                '--rebuild-types']
-
-        # Each source directory should be have its own "--source-dir=" prefix.
-        args.extend(['--source-dir=%s' % path for path in self.source_dirs])
-
-        if self.decorator:
-            args.append('--ignore-decorators=%s' % self.decorator)
-        if self.deprecation_guard:
-            args.append('--deprecated-guards=%s' % self.deprecation_guard)
-        if self.output_dir:
-            args.append('--output-dir=%s' % self.output_dir)
-
-        # gtkdoc-scan wants the basenames of ignored headers, so strip the
-        # dirname. Different from "--source-dir", the headers should be
-        # specified as one long string.
-        ignored_files_basenames = self._ignored_files_basenames()
-        if ignored_files_basenames:
-            args.append('--ignore-headers=%s' % ignored_files_basenames)
-
-        self._run_command(args)
-
-    def _run_gtkdoc_scangobj(self):
-        env = os.environ
-        ldflags = self.ldflags
-        if self.library_path:
-            ldflags = ' "-L%s" ' % self.library_path + ldflags
-            current_ld_library_path = env.get('LD_LIBRARY_PATH')
-            if current_ld_library_path:
-                env['RUN'] = 'LD_LIBRARY_PATH="%s:%s" ' % (self.library_path, current_ld_library_path)
-            else:
-                env['RUN'] = 'LD_LIBRARY_PATH="%s" ' % self.library_path
-
-        if ldflags:
-            env['LDFLAGS'] = '%s %s' % (ldflags, env.get('LDFLAGS', ''))
-        if self.cflags:
-            env['CFLAGS'] = '%s %s' % (self.cflags, env.get('CFLAGS', ''))
-
-        if 'CFLAGS' in env:
-            self.logger.debug('CFLAGS=%s', env['CFLAGS'])
-        if 'LDFLAGS' in env:
-            self.logger.debug('LDFLAGS %s', env['LDFLAGS'])
-        if 'RUN' in env:
-            self.logger.debug('RUN=%s', env['RUN'])
-        self._run_command(['gtkdoc-scangobj', '--module=%s' % self.module_name],
-                          env=env, cwd=self.output_dir)
-
-    def _run_gtkdoc_mktmpl(self):
-        args = ['gtkdoc-mktmpl', '--module=%s' % self.module_name]
-        self._run_command(args, cwd=self.output_dir)
-
-    def _run_gtkdoc_mkdb(self):
-        sgml_file = os.path.join(self.output_dir, self.main_sgml_file)
-        self._raise_exception_if_file_inaccessible(sgml_file)
-
-        args = ['gtkdoc-mkdb',
-                '--module=%s' % self.module_name,
-                '--main-sgml-file=%s' % sgml_file,
-                '--source-suffixes=h,c,cpp,cc',
-                '--output-format=xml',
-                '--sgml-mode']
-
-        ignored_files_basenames = self._ignored_files_basenames()
-        if ignored_files_basenames:
-            args.append('--ignore-files=%s' % ignored_files_basenames)
-
-        # Each directory should be have its own "--source-dir=" prefix.
-        args.extend(['--source-dir=%s' % path for path in self.source_dirs])
-        self._run_command(args, cwd=self.output_dir)
-
-    def _run_gtkdoc_mkhtml(self):
-        html_dest_dir = os.path.join(self.output_dir, 'html')
-        if not os.path.isdir(html_dest_dir):
-            raise Exception("%s is not a directory, could not generate HTML"
-                            % html_dest_dir)
-        elif not os.access(html_dest_dir, os.X_OK | os.R_OK | os.W_OK):
-            raise Exception("Could not access %s to generate HTML"
-                            % html_dest_dir)
-
-        # gtkdoc-mkhtml expects the SGML path to be absolute.
-        sgml_file = os.path.join(os.path.abspath(self.output_dir),
-                                 self.main_sgml_file)
-        self._raise_exception_if_file_inaccessible(sgml_file)
-
-        self._run_command(['gtkdoc-mkhtml', self.module_name, sgml_file],
-                          cwd=html_dest_dir)
-
-    def _run_gtkdoc_fixxref(self):
-        args = ['gtkdoc-fixxref',
-                '--module-dir=html',
-                '--html-dir=html']
-        args.extend(['--extra-dir=%s' % extra_dir for extra_dir in self.cross_reference_deps])
-        self._run_command(args, cwd=self.output_dir, ignore_warnings=True)
-
-    def rebase_installed_docs(self):
-        if not os.path.isdir(self.output_dir):
-            raise Exception("Tried to rebase documentation before generating it.")
-        html_dir = os.path.join(self.virtual_root + self.prefix, 'share', 'gtk-doc', 'html', self.module_name)
-        if not os.path.isdir(html_dir):
-            return
-        args = ['gtkdoc-rebase',
-                '--relative',
-                '--html-dir=%s' % html_dir]
-        args.extend(['--other-dir=%s' % extra_dir for extra_dir in self.cross_reference_deps])
-        if self.virtual_root:
-            args.extend(['--dest-dir=%s' % self.virtual_root])
-        self._run_command(args, cwd=self.output_dir)
-
-    def api_missing_documentation(self):
-        unused_doc_file = os.path.join(self.output_dir, self.module_name + "-unused.txt")
-        if not os.path.exists(unused_doc_file) or not os.access(unused_doc_file, os.R_OK):
-            return []
-        return open(unused_doc_file).read().splitlines()
-
-class PkgConfigGTKDoc(GTKDoc):
-
-    """Class reads a library's pkgconfig file to guess gtkdoc parameters.
-
-    Some gtkdoc parameters can be guessed by reading a library's pkgconfig
-    file, including the cflags, ldflags and version parameters. If you
-    provide these parameters as well, they will be appended to the ones
-    guessed via the pkgconfig file.
-
-    Keyword arguments:
-      pkg_config_path -- Path to the pkgconfig file for the library. Required.
-    """
-
-    def __init__(self, pkg_config_path, args):
-        super(PkgConfigGTKDoc, self).__init__(args)
-
-        if not os.path.exists(pkg_config_path):
-            raise Exception('Could not find pkg-config file at: %s'
-                            % pkg_config_path)
-
-        self.cflags += " " + self._run_command(['pkg-config',
-                                                pkg_config_path,
-                                                '--cflags'], print_output=False)
-        self.ldflags += " " + self._run_command(['pkg-config',
-                                                pkg_config_path,
-                                                '--libs'], print_output=False)
-        self.version = self._run_command(['pkg-config',
-                                          pkg_config_path,
-                                          '--modversion'], print_output=False)
-        self.prefix = self._run_command(['pkg-config',
-                                         pkg_config_path,
-                                         '--variable=prefix'], print_output=False)
diff --git a/Tools/gtk/install-dependencies b/Tools/gtk/install-dependencies
deleted file mode 100755
index 2e1f1b3..0000000
--- a/Tools/gtk/install-dependencies
+++ /dev/null
@@ -1,165 +0,0 @@
-#!/bin/bash
-
-# This script needs to be run with root rights.
-if [ $UID -ne 0 ]; then
-    sudo $0
-    exit 0
-fi
-
-function printNotSupportedMessageAndExit() {
-    echo
-    echo "Currently this script only works for distributions supporting apt-get and yum."
-    echo "Please add support for your distribution: http://webkit.org/b/110693"
-    echo
-    exit 1
-}
-
-function checkInstaller {
-    # apt-get - Debian based distributions
-    apt-get --version &> /dev/null
-    if [ $? -eq 0 ]; then
-        installDependenciesWithApt
-        exit 0
-    fi
-
-    # yum - Fedora
-    yum --version &> /dev/null
-    if [ $? -eq 0 ]; then
-        installDependenciesWithYum
-        exit 0
-    fi
-
-    printNotSupportedMessageAndExit
-}
-
-function installDependenciesWithApt {
-    # These are dependencies necessary for building WebKitGTK+.
-    apt-get install \
-        autoconf \
-        automake \
-        autopoint \
-        autotools-dev \
-        bison \
-        flex \
-        gail-3.0 \
-        gawk \
-        gnome-common \
-        gperf \
-        gtk-doc-tools \
-        intltool \
-        libatk1.0-dev \
-        libenchant-dev \
-        libfaad-dev \
-        libgail-3-dev \
-        libgail-dev \
-        libgeoclue-dev \
-        libgirepository1.0-dev \
-        libgl1-mesa-dev \
-        libgl1-mesa-glx \
-        libgnutls-dev \
-        libgudev-1.0-dev \
-        libicu-dev \
-        libjpeg62-dev \
-        libmpg123-dev \
-        libopus-dev \
-        libpango1.0-dev \
-        libpng12-dev \
-        libpulse-dev \
-        librsvg2-dev \
-        libsecret-1-dev \
-        libsqlite3-dev \
-        libtheora-dev \
-        libtool \
-        libvorbis-dev \
-        libwebp-dev \
-        libxslt1-dev \
-        libxt-dev \
-        libxtst-dev \
-        ruby
-
-    # These are dependencies necessary for running tests.
-    apt-get install \
-        apache2 \
-        curl \
-        libapache2-mod-bw \
-        libapache2-mod-php5 \
-        libgpg-error-dev \
-        pulseaudio-utils \
-        python-gi \
-        ruby \
-        xvfb
-
-    # These are dependencies necessary for building the jhbuild.
-    apt-get install \
-        gobject-introspection \
-        icon-naming-utils \
-        libgcrypt11-dev \
-        libgpg-error-dev \
-        libp11-kit-dev \
-        libtiff4-dev \
-        libcroco3-dev
-}
-
-function installDependenciesWithYum {
-    # These are dependencies necessary for building WebKitGTK+.
-    yum install \
-        autoconf \
-        automake \
-        bison \
-        atk-devel \
-        cairo-devel \
-        enchant-devel \
-        flex \
-        fontconfig-devel \
-        freetype-devel \
-        gcc-c++ \
-        geoclue-devel \
-        gettext \
-        gobject-introspection-devel \
-        gperf \
-        gstreamer1-devel \
-        gstreamer1-plugins-base-devel \
-        gtk2-devel \
-        gtk3-devel \
-        gtk-doc \
-        harfbuzz-devel \
-        libsoup-devel \
-        libicu-devel \
-        libjpeg-turbo-devel \
-        libpng-devel \
-        libsecret-devel \
-        libwebp-devel \
-        libxslt-devel \
-        libXt-devel \
-        libgudev1-devel \
-        mesa-libGL-devel \
-        pcre-devel \
-        ruby \
-        sqlite-devel \
-        perl-Switch \
-        perl-version
-
-    # These are dependencies necessary for running tests.
-    yum install \
-        httpd \
-        curl \
-        mod_bw \
-        libgpg-error-devel \
-        pulseaudio-utils \
-        pygobject3-base \
-        ruby \
-        xorg-x11-server-Xvfb
-
-    # These are dependencies necessary for building the jhbuild.
-    yum install \
-        gobject-introspection \
-        icon-naming-utils \
-        libgcrypt-devel \
-        libgpg-error-devel \
-        libp11-devel \
-        libtiff-devel \
-        libcroco-devel
-}
-
-checkInstaller
-
diff --git a/Tools/gtk/jhbuild-optional.modules b/Tools/gtk/jhbuild-optional.modules
deleted file mode 100644
index de858a8..0000000
--- a/Tools/gtk/jhbuild-optional.modules
+++ /dev/null
@@ -1,67 +0,0 @@
-<?xml version="1.0"?>
-<!DOCTYPE moduleset SYSTEM "moduleset.dtd">
-<?xml-stylesheet type="text/xsl" href="moduleset.xsl"?>
-<moduleset>
-
-  <!-- This file contains a set of modules that are hard to get on
-       certain distributions. Feel free to add more here, within reason,
-       as long as they are not built by default. -->
-
-  <metamodule id="webkitgtk-clutter-dependencies">
-    <dependencies>
-      <dep package="atk"/>
-      <dep package="clutter"/>
-      <dep package="clutter-gtk"/>
-      <dep package="cogl"/>
-    </dependencies>
-  </metamodule>
-
-  <repository type="tarball" name="ftp.gnome.org"
-      href="http://ftp.gnome.org"/>
-
-  <autotools id="libsecret" autogen-sh="configure">
-    <branch repo="ftp.gnome.org"
-            module="/pub/GNOME/sources/libsecret/0.11/libsecret-0.11.tar.xz" version="0.11"
-            hash="sha256:e5399dfb61376a7500d20cb22715152780aa3a2c8a64281ec6bc8f0ebeb8b689"/>
-  </autotools>
-
-  <autotools id="cogl"
-            autogen-sh="configure"
-            autogenargs="--disable-introspection">
-    <branch module="/pub/GNOME/sources/cogl/1.12/cogl-1.12.0.tar.xz" version="1.12.0"
-            repo="ftp.gnome.org" 
-            hash="sha256:4e7b5abbf0a1e51d74618db1b513551e7c71b486e17e98373f4db93e7710e2f2"/>
-  </autotools>
-
-  <autotools id="clutter"
-           autogen-sh="configure"
-           autogenargs="--disable-introspection">
-    <dependencies>
-      <dep package="cogl"/>
-      <dep package="atk"/>
-    </dependencies>
-    <branch module="/pub/GNOME/sources/clutter/1.12/clutter-1.12.0.tar.xz" version="1.12.0"
-            repo="ftp.gnome.org" 
-            hash="sha256:e75130a5df6dbe97e8d350259278331c6352b2d213230712127160e42053e558"/>
-  </autotools>
-
-  <autotools id="clutter-gtk"
-           autogen-sh="configure"
-           autogenargs="--disable-introspection">
-    <dependencies>
-      <dep package="clutter"/>
-    </dependencies>
-    <branch module="/pub/GNOME/sources/clutter-gtk/1.3/clutter-gtk-1.3.2.tar.xz" version="1.3.2"
-            repo="ftp.gnome.org"             
-            hash="sha256:ee50538daca9447be6ad1ed0d049fbb2dc5a1bcaecd13fda847b9b66f922ee37"/>
-  </autotools>
-
-  <autotools id="atk"
-           autogen-sh="configure"
-           autogenargs="--disable-introspection">
-    <branch module="/pub/GNOME/sources/atk/2.5/atk-2.5.3.tar.xz" version="2.5.3"
-            repo="ftp.gnome.org"
-            hash="sha256:ac118ef34ef5490fa113cf50cffdff7735d6293723bf35df958a89fbda876313"/>
-  </autotools>
-
-</moduleset>
diff --git a/Tools/gtk/jhbuild.modules b/Tools/gtk/jhbuild.modules
deleted file mode 100644
index d04a090..0000000
--- a/Tools/gtk/jhbuild.modules
+++ /dev/null
@@ -1,284 +0,0 @@
-<?xml version="1.0"?>
-<!DOCTYPE moduleset SYSTEM "moduleset.dtd">
-<?xml-stylesheet type="text/xsl" href="moduleset.xsl"?>
-<moduleset>
-
-  <metamodule id="webkitgtk-testing-dependencies">
-    <dependencies>
-      <dep package="make"/>
-      <dep package="cairo"/>
-      <dep package="fonts"/>
-      <dep package="fontconfig"/>
-      <dep package="freetype6"/>
-      <dep package="harfbuzz"/>
-      <dep package="libxml2"/>
-      <dep package="gdk-pixbuf"/>
-      <dep package="gtk+"/>
-      <dep package="glib"/>
-      <dep package="glib-networking"/>
-      <dep package="gnome-icon-theme"/>
-      <dep package="gnome-icon-theme-symbolic"/>
-      <dep package="gnome-themes-standard"/>
-      <dep package="libsoup"/>
-      <dep package="at-spi2-core"/>
-      <dep package="at-spi2-atk"/>
-      <dep package="gstreamer"/>
-      <dep package="gst-plugins-base"/>
-      <dep package="gst-plugins-good"/>
-      <dep package="gst-plugins-bad"/>
-      <dep package="gst-libav"/>
-    </dependencies>
-  </metamodule>
-
-  <include href="jhbuild-optional.modules"/>
-
-  <repository type="tarball" name="ftp.gnu.org"
-      href="ftp://ftp.gnu.org/gnu/"/>
-  <repository type="git" name="github.com"
-      href="git://github.com"/>
-  <repository type="tarball" name="sourceware.org-mirror"
-      href="ftp://mirrors.kernel.org/sources.redhat.com/"/>
-  <repository type="tarball" name="ftp.gnome.org"
-      href="http://ftp.gnome.org"/>
-  <repository type="git" name="git.gnome.org"
-      href="git://git.gnome.org/"/>
-  <repository type="tarball" name="cairographics.org"
-      href="http://cairographics.org"/>
-  <repository type="tarball" name="freedesktop.org"
-      href="http://www.freedesktop.org"/>
-  <repository type="tarball" name="xmlsoft.org"
-      href="ftp://xmlsoft.org"/>
-  <repository type="git" name="gstreamer"
-      href="git://anongit.freedesktop.org/git/gstreamer/"/>
-
-  <autotools id="make" autogen-sh="configure">
-    <branch repo="ftp.gnu.org"
-            module="make/make-3.82.tar.bz2" version="3.82"
-            size="1242186" md5sum="1a11100f3c63fcf5753818e59d63088f">
-      <patch file="make-3.82-arg-list-length.patch" strip="1"/>
-      <patch file="make-3.82-parallel-build.patch" strip="1"/>
-    </branch>
-  </autotools>
-
-  <autotools id="cairo" autogen-sh="configure">
-    <dependencies>
-      <dep package="fontconfig"/>
-      <dep package="pixman"/>
-    </dependencies>
-    <branch module="releases/cairo-1.12.8.tar.xz" version="1.12.8"
-            repo="cairographics.org"
-            hash="sha256:8fbb6fc66117ab4100bad830cb4479497e53c6f3facb98bf05c8d298554ebdd9"
-            md5sum="8b3dcade859c44fb7e56fc68edfe9a45">
-    </branch>
-  </autotools>
-
-  <autotools id="pixman" autogen-sh="configure"
-             autogenargs="--enable-gtk=no">
-    <branch module="releases/pixman-0.24.0.tar.gz" version="0.24.0"
-            repo="cairographics.org"
-            hash="sha256:a5647c7158f103eedff5fba799018f4169f6b26b573ab7685812ebc9a1c5d2e4"
-            md5sum="a2d0b120509bdccb10aa7f4bec3730e4">
-    </branch>
-  </autotools>
-
-  <autotools id="fonts"
-             skip-autogen="true">
-    <branch repo="github.com" module="mrobinson/webkitgtk-test-fonts.git" checkoutdir="webkitgtk-test-fonts" tag="0.0.4"/>
-  </autotools>
-
-  <tarball id="freetype6">
-    <source href="download.savannah.gnu.org/releases/freetype/freetype-2.4.2.tar.bz2" version="2.4.2"
-            hash="sha256:9a987aef8c50d9bcfdfdc9f012f8bd0de6095cc1a5524e62c1a037deb8dacbfe"
-            md5sum="647ee8ed266f9a4117c8d0a4855b3d3e"/>
-  </tarball>
-
-  <autotools id="harfbuzz" autogen-sh="configure">
-    <branch module="software/harfbuzz/release/harfbuzz-0.9.14.tar.bz2" version="0.9.14"
-            checkoutdir="harfbuzz-0.9.14"
-            repo="freedesktop.org"
-            hash="sha256:d07c0ffdbbbfdfbb6c65e73fe9c76466e87dbf04b094cbd0abf5fd7d571a4004"
-            md5sum="7e1990b79060e98e2d31f677a0ac9eed">
-    </branch>
-  </autotools>
-
-  <autotools id="libffi" autogen-sh="configure">
-    <branch module="libffi/libffi-3.0.10.tar.gz" version="3.0.10"
-             repo="sourceware.org-mirror"
-             hash="sha256:f01eb9027e9eb56aeaeef636649877756d475d714ef8b47f627f65bc5f3b492f"
-             md5sum="79390673f5d07a8fb342bc09b5055b6f"/>
-  </autotools>
-
-  <autotools id="gdk-pixbuf" autogen-sh="configure"
-             autogenargs="--disable-introspection">
-    <dependencies>
-      <dep package="glib"/>
-    </dependencies>
-    <branch module="/pub/GNOME/sources/gdk-pixbuf/2.26/gdk-pixbuf-2.26.5.tar.xz" version="2.26.5"
-            repo="ftp.gnome.org"
-            hash="sha256:77696fd163bca95a130a1883dbd78d0ae4d782de2fc85a9a38556d13681f5c84"
-            md5sum="339329e6d619ee3e1cb93979111b04c0"/>
-  </autotools>
-
-  <autotools id="librsvg" autogen-sh="configure"
-             autogenargs="--disable-introspection --enable-pixbuf-loader --disable-gtk-theme">
-    <dependencies>
-      <dep package="gdk-pixbuf"/>
-    </dependencies>
-    <branch module="/pub/GNOME/sources/librsvg/2.36/librsvg-2.36.1.tar.xz" version="2.36.1"
-            repo="ftp.gnome.org"
-            hash="sha256:786b95e1a091375c5ef2997a21c69ff24d7077afeff18197355f54d9dcbcd8c5"
-            md5sum="89d483f30a7c77245b7ee02faaea5a5a"/>
-  </autotools>
-
-  <autotools id="gtk+" autogen-sh="configure"
-             autogenargs="--disable-introspection">
-    <dependencies>
-      <dep package="glib"/>
-      <dep package="cairo"/>
-      <dep package="gdk-pixbuf"/>
-    </dependencies>
-    <branch module="/pub/GNOME/sources/gtk+/3.4/gtk+-3.4.2.tar.xz" version="3.4.2"
-            repo="ftp.gnome.org"
-            hash="sha256:b1ab72bc61434418160ff0c7edfd93c74758ed8a35e2ed3d07e3e218c2705480"
-            md5sum="9e20443fbaa3ba3e9cbd2fc44d6be121"/>
-  </autotools>
-
-  <autotools id="glib"
-             autogen-sh="configure"
-             autogenargs="--disable-dtrace">
-    <dependencies>
-      <dep package="libffi"/>
-    </dependencies>
-    <branch module="/pub/GNOME/sources/glib/2.35/glib-2.35.2.tar.xz" version="2.35.2"
-            repo="ftp.gnome.org"
-            hash="sha256:84fffa2041850352b83a7b27c127f1c4e8b3d169aa3a000b100820ba10f8c19e"/>
-  </autotools>
-
-  <autotools id="glib-networking">
-    <dependencies>
-      <dep package="glib"/>
-    </dependencies>
-    <branch module="/pub/GNOME/sources/glib-networking/2.33/glib-networking-2.33.2.tar.xz" version="2.33.2"
-            repo="ftp.gnome.org"
-            hash="sha256:e298cff3935eb752be290bbf734e457f1870bdb5370ee292606e6040a82074e7"
-            md5sum="5abb364f2a0babe2ec1e3a6d59f69043"/>
-  </autotools>
-
-  <autotools id="libsoup"
-             autogenargs="--without-gnome --disable-introspection">
-    <dependencies>
-      <dep package="glib-networking"/>
-    </dependencies>
-    <branch module="libsoup" version="2.40.2-r1"
-            repo="git.gnome.org"
-            revision="5651d18eb8c9edff5961a32c488641bf6776ca6b"/>
-  </autotools>
-
-  <autotools id="fontconfig" autogen-sh="configure">
-    <branch module="software/fontconfig/release/fontconfig-2.8.0.tar.gz" version="2.8.0"
-            repo="freedesktop.org"
-            hash="sha256:fa2a1c6eea654d9fce7a4b1220f10c99cdec848dccaf1625c01f076b31382335"
-            md5sum="77e15a92006ddc2adbb06f840d591c0e">
-    </branch>
-  </autotools>
-
-  <autotools id="gnome-icon-theme" autogen-sh="configure">
-    <dependencies>
-      <dep package="gtk+"/>
-    </dependencies>
-    <branch module="pub/GNOME/sources/gnome-icon-theme/3.2/gnome-icon-theme-3.2.1.tar.xz" version="3.2.1"
-            repo="ftp.gnome.org"
-            hash="sha256:a7f0a8b17e91ac338fdbc01ac59a8738e9c1e201de492c070d43aacf291a8959"
-            md5sum="40be1e5a6eae11181311a6fc432cf892">
-    </branch>
-  </autotools>
-
-  <autotools id="gnome-icon-theme-symbolic" autogen-sh="configure">
-    <dependencies>
-      <dep package="gtk+"/>
-    </dependencies>
-    <branch module="pub/GNOME/sources/gnome-icon-theme-symbolic/3.2/gnome-icon-theme-symbolic-3.2.1.tar.xz" version="3.2.1"
-            repo="ftp.gnome.org"
-            hash="sha256:a558af2f87f761f00421f49c1addd2149b70228158e09327fa861219ac1a63cb"
-            md5sum="94137d3c256f2cc80298a9bef15d68c4">
-    </branch>
-  </autotools>
-
-  <autotools id="gnome-themes-standard" autogen-sh="configure">
-    <dependencies>
-      <dep package="gtk+"/>
-      <dep package="librsvg"/>
-    </dependencies>
-    <branch module="pub/GNOME/sources/gnome-themes-standard/3.4/gnome-themes-standard-3.4.2.tar.xz" version="3.4.2"
-            repo="ftp.gnome.org"
-            hash="sha256:aa29d23708e3357775fb7ea2de14b90551a2c732fce297f3372dae005374c3a8"
-            md5sum="bbe736709a7cf00bd18f3b2b82e7a59e">
-    </branch>
-  </autotools>
-
-  <autotools id="at-spi2-core" 
-             autogenargs="--disable-introspection">
-    <branch module="pub/GNOME/sources/at-spi2-core/2.2/at-spi2-core-2.2.1.tar.xz" version="2.2.1"
-            repo="ftp.gnome.org"
-            hash="sha256:2a4129420decca3657e163a4dbb1a3cb28acafe32ea1292417fdd81084d48fac"
-            md5sum="183916373d6906ff6b220bd44d15ff97">
-    </branch>
-    <dependencies>
-      <dep package="glib"/>
-    </dependencies>
-  </autotools>
-
-  <autotools id="at-spi2-atk">
-    <branch module="pub/GNOME/sources/at-spi2-atk/2.2/at-spi2-atk-2.2.1.tar.xz" version="2.2.1"
-            repo="ftp.gnome.org"
-            hash="sha256:6677def34b16c9a28d6ad96473ea56a3c0e13aa968e584df004cd44c8691ea1a"
-            md5sum="19646097aca25a9c1b8ba7ab8d172916">
-    </branch>
-    <dependencies>
-      <dep package="glib"/>
-      <dep package="at-spi2-core"/>
-    </dependencies>
-  </autotools>
-
-  <autotools id="libxml2">
-    <branch module="/libxml2/libxml2-2.9.0.tar.gz" version="2.9.0"
-            repo="xmlsoft.org"
-            hash="sha256:ad25d91958b7212abdc12b9611cfb4dc4e5cddb6d1e9891532f48aacee422b82"
-            md5sum="5b9bebf4f5d2200ae2c4efe8fa6103f7">
-      <patch file="libxml2-2.9.0-dtd.patch" strip="1"/>
-    </branch>
-  </autotools>
-
-  <autotools id="gstreamer">
-    <branch repo="gstreamer" module="gstreamer" checkoutdir="gstreamer" tag="1.0.4"/>
-  </autotools>
-
-  <autotools id="gst-plugins-base" autogenargs="--disable-examples">
-    <dependencies>
-      <dep package="gstreamer"/>
-    </dependencies>
-    <branch repo="gstreamer" module="gst-plugins-base" checkoutdir="gst-plugins-base" tag="1.0.4"/>
-  </autotools>
-
-  <autotools id="gst-plugins-good" autogenargs="--disable-examples">
-    <dependencies>
-      <dep package="gst-plugins-base"/>
-    </dependencies>
-    <branch repo="gstreamer" module="gst-plugins-good" checkoutdir="gst-plugins-good" tag="1.0.4"/>
-  </autotools>
-
-  <autotools id="gst-plugins-bad" autogenargs="--disable-examples">
-    <dependencies>
-      <dep package="gst-plugins-base"/>
-    </dependencies>
-    <branch repo="gstreamer" module="gst-plugins-bad" checkoutdir="gst-plugins-bad" tag="1.0.4"/>
-  </autotools>
-
-  <autotools id="gst-libav" autogenargs="--with-libav-extra-configure='--disable-yasm'">
-    <dependencies>
-      <dep package="gst-plugins-base"/>
-    </dependencies>
-    <branch repo="gstreamer" module="gst-libav" checkoutdir="gst-libav" tag="1.0.4"/>
-  </autotools>
-
-</moduleset>
diff --git a/Tools/gtk/jhbuildrc b/Tools/gtk/jhbuildrc
deleted file mode 100644
index eec89a1..0000000
--- a/Tools/gtk/jhbuildrc
+++ /dev/null
@@ -1,50 +0,0 @@
-#!/usr/bin/env python
-# Copyright (C) 2011 Igalia S.L.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
-
-import multiprocessing
-import sys
-
-__gtk_tools_directory = os.path.abspath(os.path.dirname(__file__))
-sys.path = [__gtk_tools_directory] + sys.path
-import common
-
-build_policy = 'updated'
-
-__moduleset_file_uri = 'file://' + os.path.join(__gtk_tools_directory, 'jhbuild.modules')
-__extra_modulesets = os.environ.get("WEBKIT_EXTRA_MODULESETS", "").split(",")
-moduleset = [ __moduleset_file_uri, ]
-if __extra_modulesets != ['']:
-    moduleset.extend(__extra_modulesets)
-
-__extra_modules = os.environ.get("WEBKIT_EXTRA_MODULES", "").split(",")
-modules = [ 'webkitgtk-testing-dependencies', ]
-if __extra_modules != ['']:
-    modules.extend(__extra_modules)
-
-if os.environ.has_key('WEBKITOUTPUTDIR'):
-    checkoutroot = os.path.abspath(os.path.join(os.environ['WEBKITOUTPUTDIR'], 'Dependencies', 'Source'))
-    prefix = os.path.abspath(os.path.join(os.environ['WEBKITOUTPUTDIR'], 'Dependencies', 'Root'))
-else:
-    checkoutroot = os.path.abspath(common.top_level_path('WebKitBuild','Dependencies', 'Source'))
-    prefix = os.path.abspath(common.top_level_path('WebKitBuild','Dependencies', 'Root'))
-
-nonotify = True
-notrayicon = True
-os.environ['MAKEFLAGS'] = '-j%d' % multiprocessing.cpu_count()
-
-# GTK+ 3.0.12 misses the -lm flag when linking the tests.
-module_makeargs['gtk+'] = 'LDFLAGS="-lm" ' + makeargs
diff --git a/Tools/gtk/patches/libxml2-2.9.0-dtd.patch b/Tools/gtk/patches/libxml2-2.9.0-dtd.patch
deleted file mode 100644
index 7ed953b..0000000
--- a/Tools/gtk/patches/libxml2-2.9.0-dtd.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From cf8f0424db45c43ecda812b7c238ece5e2398107 Mon Sep 17 00:00:00 2001
-From: Dan Winship <danw@gnome.org>
-Date: Fri, 21 Dec 2012 11:13:31 +0800
-Subject: [PATCH] Fix an error in the progressive DTD parsing code
-
-For https://bugzilla.gnome.org/show_bug.cgi?id=689958
-We were looking for the wrong character in the input stream
----
- parser.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/parser.c b/parser.c
-index c7802cf..e719c9f 100644
---- a/parser.c
-+++ b/parser.c
-@@ -12042,7 +12042,7 @@ xmlParseCheckTransition(xmlParserCtxtPtr ctxt, const char *chunk, int size) {
-     }
-     if ((ctxt->progressive == XML_PARSER_DTD) ||
-         (ctxt->instate == XML_PARSER_DTD)) {
--        if (memchr(chunk, ']', size) != NULL)
-+        if (memchr(chunk, '>', size) != NULL)
-             return(1);
-         return(0);
-     }
--- 
-1.8.0.1
-
diff --git a/Tools/gtk/patches/make-3.82-arg-list-length.patch b/Tools/gtk/patches/make-3.82-arg-list-length.patch
deleted file mode 100644
index e835128..0000000
--- a/Tools/gtk/patches/make-3.82-arg-list-length.patch
+++ /dev/null
@@ -1,104 +0,0 @@
-diff -u make-3.82-orig/configure.in make-3.82/configure.in
---- make-3.82-orig/configure.in	2010-07-28 07:39:50.000000000 +0200
-+++ make-3.82/configure.in	2012-03-21 12:34:20.000000000 +0100
-@@ -64,7 +64,8 @@
- AC_HEADER_STAT
- AC_HEADER_TIME
- AC_CHECK_HEADERS(stdlib.h locale.h unistd.h limits.h fcntl.h string.h \
--		 memory.h sys/param.h sys/resource.h sys/time.h sys/timeb.h)
-+		 memory.h sys/param.h sys/resource.h sys/time.h sys/timeb.h \
-+		 sys/user.h linux/binfmts.h)
- 
- # Set a flag if we have an ANSI C compiler
- if test "$ac_cv_prog_cc_stdc" != no; then
-Subdirectorios comunes: make-3.82-orig/doc y make-3.82/doc
-Subdirectorios comunes: make-3.82-orig/glob y make-3.82/glob
-diff -u make-3.82-orig/job.c make-3.82/job.c
---- make-3.82-orig/job.c	2010-07-24 10:27:50.000000000 +0200
-+++ make-3.82/job.c	2012-03-21 12:34:20.000000000 +0100
-@@ -29,6 +29,11 @@
- 
- #include <string.h>
- 
-+#if defined (HAVE_LINUX_BINFMTS_H) && defined (HAVE_SYS_USER_H)
-+#include <sys/user.h>
-+#include <linux/binfmts.h>
-+#endif
-+
- /* Default shell to use.  */
- #ifdef WINDOWS32
- #include <windows.h>
-@@ -2795,6 +2800,7 @@
-     unsigned int sflags_len = strlen (shellflags);
-     char *command_ptr = NULL; /* used for batch_mode_shell mode */
-     char *new_line;
-+    char *args_ptr;
- 
- # ifdef __EMX__ /* is this necessary? */
-     if (!unixy_shell)
-@@ -2865,8 +2871,17 @@
- 	return new_argv;
-       }
- 
-+#ifdef MAX_ARG_STRLEN
-+    static char eval_line[] = "eval\\ \\\"set\\ x\\;\\ shift\\;\\ ";
-+#define ARG_NUMBER_DIGITS 5
-+#define EVAL_LEN (sizeof(eval_line)-1 + shell_len + 4                   \
-+                  + (7 + ARG_NUMBER_DIGITS) * 2 * line_len / (MAX_ARG_STRLEN - 2))
-+#else
-+#define EVAL_LEN 0
-+#endif
-+
-     new_line = alloca (shell_len + 1 + sflags_len + 1
--                             + (line_len*2) + 1);
-+                       + (line_len*2) + 1 + EVAL_LEN);
-     ap = new_line;
-     memcpy (ap, shell, shell_len);
-     ap += shell_len;
-@@ -2875,6 +2890,30 @@
-     ap += sflags_len;
-     *(ap++) = ' ';
-     command_ptr = ap;
-+
-+#if !defined (WINDOWS32) && defined (MAX_ARG_STRLEN)
-+    if (unixy_shell && line_len > MAX_ARG_STRLEN)
-+      {
-+	unsigned j;
-+	memcpy (ap, eval_line, sizeof (eval_line) - 1);
-+	ap += sizeof (eval_line) - 1;
-+	for (j = 1; j <= 2 * line_len / (MAX_ARG_STRLEN - 2); j++)
-+	  ap += sprintf (ap, "\\$\\{%u\\}", j);
-+	*ap++ = '\\';
-+	*ap++ = '"';
-+	*ap++ = ' ';
-+	/* Copy only the first word of SHELL to $0.  */
-+	for (p = shell; *p != '\0'; ++p)
-+	  {
-+	    if (isspace ((unsigned char)*p))
-+	      break;
-+	    *ap++ = *p;
-+	  }
-+	*ap++ = ' ';
-+      }
-+#endif
-+    args_ptr = ap;
-+
-     for (p = line; *p != '\0'; ++p)
-       {
- 	if (restp != NULL && *p == '\n')
-@@ -2922,6 +2961,14 @@
-           }
- #endif
- 	*ap++ = *p;
-+
-+#if !defined (WINDOWS32) && defined (MAX_ARG_STRLEN)
-+	if (unixy_shell && line_len > MAX_ARG_STRLEN && (ap - args_ptr > MAX_ARG_STRLEN - 2))
-+	  {
-+	    *ap++ = ' ';
-+	    args_ptr = ap;
-+	  }
-+#endif
-       }
-     if (ap == new_line + shell_len + sflags_len + 2)
-       /* Line was empty.  */
-
diff --git a/Tools/gtk/patches/make-3.82-parallel-build.patch b/Tools/gtk/patches/make-3.82-parallel-build.patch
deleted file mode 100644
index c056c2e..0000000
--- a/Tools/gtk/patches/make-3.82-parallel-build.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff -u make-3.82-orig/remake.c make-3.82/remake.c
---- make-3.82-orig/remake.c	2010-07-13 03:20:42.000000000 +0200
-+++ make-3.82/remake.c	2012-03-21 12:47:52.000000000 +0100
-@@ -301,7 +301,7 @@
-       /* Check for the case where a target has been tried and failed but
-          the diagnostics hasn't been issued. If we need the diagnostics
-          then we will have to continue. */
--      if (!(f->updated && f->update_status > 0 && !f->dontcare && f->no_diag))
-+      if (!(f->updated && f->update_status > 0 && !f->dontcare && f->no_diag) && f->command_state!=cs_not_started )
-         {
-           DBF (DB_VERBOSE, _("Pruning file `%s'.\n"));
-           return f->command_state == cs_finished ? f->update_status : 0;
-@@ -614,6 +614,12 @@
-                 d->file->dontcare = file->dontcare;
-               }
- 
-+	    /* We may have already encountered this file earlier in the same
-+	     * pass before we knew we'd be updating this target. In that 
-+	     * case calling update_file now would result in the file being 
-+	     * inappropriately pruned so we toggle the considered bit back 
-+	     * off first. */
-+            d->file->considered = !considered;
- 
- 	    dep_status |= update_file (d->file, depth);
- 
-
diff --git a/Tools/iExploder/iexploder-1.3.2/CHANGELOG.txt b/Tools/iExploder/iexploder-1.3.2/CHANGELOG.txt
deleted file mode 100644
index a9d5060..0000000
--- a/Tools/iExploder/iexploder-1.3.2/CHANGELOG.txt
+++ /dev/null
@@ -1,328 +0,0 @@
-------------------------------------------------------------------------
-r618 | thomas | 2006-04-21 09:55:51 -0400 (Fri, 21 Apr 2006) | 1 line
-Changed paths:
-   M /iexploder/README.txt
-   M /iexploder/htdocs/iexploder.cgi
-   M /iexploder/htdocs/iexploder.rb
-   M /iexploder/htdocs/webserver.rb
-
-1.3.2.. minor adjustment to title and where  gets set
-------------------------------------------------------------------------
-r617 | thomas | 2006-04-19 17:14:26 -0400 (Wed, 19 Apr 2006) | 1 line
-Changed paths:
-   A /iexploder/testcases/safari/2500_163-Safari-2.0.3_Mac_OS_X-Crash.html
-
-Add h4+pre+cite+nolayer+code crash for Safari 2.0.3
-------------------------------------------------------------------------
-r616 | thomas | 2006-04-19 17:01:48 -0400 (Wed, 19 Apr 2006) | 1 line
-Changed paths:
-   A /iexploder/tools/showtest.rb
-
-showtest.rb: easily download a testcase
-------------------------------------------------------------------------
-r615 | thomas | 2006-04-19 16:07:13 -0400 (Wed, 19 Apr 2006) | 1 line
-Changed paths:
-   M /iexploder/htdocs/iexploder.rb
-
-Remove stopping debug message
-------------------------------------------------------------------------
-r614 | thomas | 2006-04-19 16:02:48 -0400 (Wed, 19 Apr 2006) | 1 line
-Changed paths:
-   M /iexploder/README.txt
-   M /iexploder/htdocs/iexploder.rb
-
-New subtest algorithm: double the tag count each iteration
-------------------------------------------------------------------------
-r613 | thomas | 2006-04-19 15:05:30 -0400 (Wed, 19 Apr 2006) | 1 line
-Changed paths:
-   M /iexploder/htdocs/cssproperties.in
-
-remove IE dupes: text-overflow and word-wrap
-------------------------------------------------------------------------
-r612 | thomas | 2006-04-19 12:48:07 -0400 (Wed, 19 Apr 2006) | 1 line
-Changed paths:
-   M /iexploder/README.txt
-   M /iexploder/htdocs/config.rb
-   M /iexploder/htdocs/iexploder.rb
-
-Add some benchmark/performance info.. set MAX_TAGS default to 96
-------------------------------------------------------------------------
-r611 | thomas | 2006-04-19 10:22:33 -0400 (Wed, 19 Apr 2006) | 1 line
-Changed paths:
-   M /iexploder/htdocs/iexploder.cgi
-   M /iexploder/htdocs/iexploder.rb
-   M /iexploder/htdocs/webserver.rb
-
-Add stop parameter, fix port assignment issue, fix indentation
-------------------------------------------------------------------------
-r610 | thomas | 2006-04-19 10:22:06 -0400 (Wed, 19 Apr 2006) | 1 line
-Changed paths:
-   M /iexploder/README.txt
-
-1.3.0
-------------------------------------------------------------------------
-r609 | thomas | 2006-04-18 22:46:35 -0400 (Tue, 18 Apr 2006) | 1 line
-Changed paths:
-   A /iexploder/testcases/safari/16170_44-Safari-Nightly-420+-2006-r13911-2006-04-18.html
-
-applet+param Hashmap crash in Safari
-------------------------------------------------------------------------
-r608 | thomas | 2006-04-18 22:07:45 -0400 (Tue, 18 Apr 2006) | 1 line
-Changed paths:
-   M /iexploder/htdocs/iexploder.cgi
-   M /iexploder/htdocs/webserver.rb
-
-1.3.0
-------------------------------------------------------------------------
-r607 | thomas | 2006-04-18 22:05:47 -0400 (Tue, 18 Apr 2006) | 1 line
-Changed paths:
-   M /iexploder/README.txt
-   M /iexploder/htdocs/webserver.rb
-   M /iexploder/tools/osx_last_crash.rb
-
-commit osx_last_crash minutes->days change, document that you can pass a new port number to the webserver.rb program
-------------------------------------------------------------------------
-r606 | thomas | 2006-04-18 22:02:16 -0400 (Tue, 18 Apr 2006) | 1 line
-Changed paths:
-   A /iexploder/testcases/safari/2969_421-Safari-2.0.3_Mac_OS_X-Crash.html
-   A /iexploder/testcases/safari/5763_181-Safari-Nightly-420+-2006-r13911-2006-04-18.html
-
-Add more Safari crashes to the testcases list
-------------------------------------------------------------------------
-r605 | thomas | 2006-04-18 19:05:46 -0400 (Tue, 18 Apr 2006) | 1 line
-Changed paths:
-   M /iexploder/README.txt
-   M /iexploder/htdocs/config.rb
-   M /iexploder/htdocs/iexploder.cgi
-   M /iexploder/htdocs/iexploder.rb
-   M /iexploder/htdocs/webserver.rb
-
-Greatly improve subtests. Not only do we iterate around each tag, but we steadily increase the amount of tags we input as well
-------------------------------------------------------------------------
-r604 | thomas | 2006-04-18 17:04:17 -0400 (Tue, 18 Apr 2006) | 1 line
-Changed paths:
-   M /iexploder/README.txt
-   M /iexploder/htdocs/config.rb
-
-1.3b1.. also, raise max tags to 48 now that we have fixed subtest bugs
-------------------------------------------------------------------------
-r603 | thomas | 2006-04-18 16:59:20 -0400 (Tue, 18 Apr 2006) | 1 line
-Changed paths:
-   M /iexploder/htdocs/iexploder.cgi
-   M /iexploder/htdocs/iexploder.rb
-   A /iexploder/htdocs/webserver.rb
-
-New Webrick based option for standalone hosting
-------------------------------------------------------------------------
-r602 | thomas | 2006-04-18 16:18:35 -0400 (Tue, 18 Apr 2006) | 1 line
-Changed paths:
-   A /iexploder/htdocs/config.rb
-   M /iexploder/htdocs/cssproperties.in
-   M /iexploder/htdocs/iexploder.cgi
-   A /iexploder/htdocs/iexploder.rb
-
-Split iexploder.cgi into iexploder.rb and config.rb
-------------------------------------------------------------------------
-r601 | thomas | 2006-04-18 13:36:25 -0400 (Tue, 18 Apr 2006) | 1 line
-Changed paths:
-   M /iexploder/htdocs/cssvalues.in
-
-Add items from WebKit/WebCore/css/CSSValueKeywords.in
-------------------------------------------------------------------------
-r600 | thomas | 2006-04-18 13:32:45 -0400 (Tue, 18 Apr 2006) | 1 line
-Changed paths:
-   A /iexploder/testcases/opera/4750_Opera_8.5.4_Mac_OS_X-Crash.html
-
-Add odd new crash from Opera 8.5.4 for Mac
-------------------------------------------------------------------------
-r599 | thomas | 2006-04-18 13:10:15 -0400 (Tue, 18 Apr 2006) | 1 line
-Changed paths:
-   A /iexploder/testcases/safari/7483_Safari-Nightly-420+-2006-r13911-2006-04-18.html
-
-Add new Safari test case
-------------------------------------------------------------------------
-r598 | thomas | 2006-04-18 12:25:39 -0400 (Tue, 18 Apr 2006) | 1 line
-Changed paths:
-   M /iexploder/LICENSE.txt
-   M /iexploder/README.txt
-   M /iexploder/htdocs/htmlattrs.in
-   M /iexploder/htdocs/htmltags.in
-   M /iexploder/htdocs/iexploder.cgi
-
-iExploder 1.3: sync with modern rendering kits
-------------------------------------------------------------------------
-r597 | thomas | 2006-04-18 12:25:18 -0400 (Tue, 18 Apr 2006) | 1 line
-Changed paths:
-   A /iexploder/testcases/firefox/354_1-Firefox-1.5.0.1_Solaris-Crash.html
-   A /iexploder/testcases/firefox/44_9-Firefox-1.5.0.1_Solaris-Crash.html
-   A /iexploder/testcases/internet_explorer/8386_11-Internet-Explorer-6.0_WinXP-DoS.html (from /iexploder/testcases/safari/8386_11-Internet-Explorer-6.0_WinXP-DoS.html:596)
-   A /iexploder/testcases/safari/218-Safari-2.0.3_Mac_OS_X-Crash.html
-   D /iexploder/testcases/safari/8386_11-Internet-Explorer-6.0_WinXP-DoS.html
-
-New testcases
-------------------------------------------------------------------------
-r596 | thomas | 2006-04-18 12:23:48 -0400 (Tue, 18 Apr 2006) | 1 line
-Changed paths:
-   D /iexploder/testcases/119_4-Safari-Nightly-420+-2005-10-21-Crash.html
-   D /iexploder/testcases/165367_15-FireFox-1.4.1-Crash.html
-   D /iexploder/testcases/2009-iCab-3.0.1-Mac_OS_X-Crash.html
-   D /iexploder/testcases/2289-iCab-3.0.1-Crash.html
-   D /iexploder/testcases/25057-OmniWeb-5.1.1-Crash.html
-   D /iexploder/testcases/2624-Opera-8.5-Mac_OS_X-Crash.html
-   D /iexploder/testcases/502701_7-FireFox-1.4.1-Crash.html
-   D /iexploder/testcases/60253-OmniWeb-5.1.1-Crash.html
-   D /iexploder/testcases/6134_19-Safari-2.0.1-412.5-Crash.html
-   D /iexploder/testcases/8386_11-Internet-Explorer-6.0_WinXP-DoS.html
-   A /iexploder/testcases/firefox
-   A /iexploder/testcases/firefox/165367_15-Firefox-1.4.1-Crash.html (from /iexploder/testcases/165367_15-FireFox-1.4.1-Crash.html:595)
-   A /iexploder/testcases/firefox/502701_7-Firefox-1.4.1-Crash.html (from /iexploder/testcases/502701_7-FireFox-1.4.1-Crash.html:595)
-   A /iexploder/testcases/icab
-   A /iexploder/testcases/icab/2009-iCab-3.0.1-Mac_OS_X-Crash.html (from /iexploder/testcases/2009-iCab-3.0.1-Mac_OS_X-Crash.html:595)
-   A /iexploder/testcases/icab/2289-iCab-3.0.1-Crash.html (from /iexploder/testcases/2289-iCab-3.0.1-Crash.html:595)
-   A /iexploder/testcases/internet_explorer
-   A /iexploder/testcases/omniweb
-   A /iexploder/testcases/omniweb/25057-OmniWeb-5.1.1-Crash.html (from /iexploder/testcases/25057-OmniWeb-5.1.1-Crash.html:595)
-   A /iexploder/testcases/omniweb/60253-OmniWeb-5.1.1-Crash.html (from /iexploder/testcases/60253-OmniWeb-5.1.1-Crash.html:595)
-   A /iexploder/testcases/opera
-   A /iexploder/testcases/opera/2624-Opera-8.5-Mac_OS_X-Crash.html (from /iexploder/testcases/2624-Opera-8.5-Mac_OS_X-Crash.html:595)
-   A /iexploder/testcases/safari
-   A /iexploder/testcases/safari/119_4-Safari-Nightly-420+-2005-10-21-Crash.html (from /iexploder/testcases/119_4-Safari-Nightly-420+-2005-10-21-Crash.html:595)
-   A /iexploder/testcases/safari/6134_19-Safari-2.0.1-412.5-Crash.html (from /iexploder/testcases/6134_19-Safari-2.0.1-412.5-Crash.html:595)
-   A /iexploder/testcases/safari/8386_11-Internet-Explorer-6.0_WinXP-DoS.html (from /iexploder/testcases/8386_11-Internet-Explorer-6.0_WinXP-DoS.html:595)
-
-Reshuffle testcases
-------------------------------------------------------------------------
-r521 | thomas | 2005-11-03 22:01:43 -0500 (Thu, 03 Nov 2005) | 1 line
-Changed paths:
-   A /iexploder/testcases/2289-iCab-3.0.1-Crash.html
-   A /iexploder/testcases/60253-OmniWeb-5.1.1-Crash.html
-
-add some test cases
-------------------------------------------------------------------------
-r520 | thomas | 2005-11-03 22:01:19 -0500 (Thu, 03 Nov 2005) | 1 line
-Changed paths:
-   M /iexploder/htdocs/iexploder.cgi
-
-Add some cute tabs
-------------------------------------------------------------------------
-r508 | thomas | 2005-10-21 15:34:38 -0400 (Fri, 21 Oct 2005) | 1 line
-Changed paths:
-   A /iexploder/testcases/165367_15-FireFox-1.4.1-Crash.html (from /iexploder/testcases/165367_15-FireFox-1.4.1-Mac_OS_X-Crash.html:505)
-   D /iexploder/testcases/165367_15-FireFox-1.4.1-Mac_OS_X-Crash.html
-
-Crash is not OSX specific
-------------------------------------------------------------------------
-r507 | thomas | 2005-10-21 14:59:41 -0400 (Fri, 21 Oct 2005) | 1 line
-Changed paths:
-   M /iexploder/README.txt
-
-Mention the fact that testcases may not be portable across installations
-------------------------------------------------------------------------
-r506 | thomas | 2005-10-21 14:45:48 -0400 (Fri, 21 Oct 2005) | 1 line
-Changed paths:
-   M /iexploder/htdocs/index.html
-
-Fix lookup html code
-------------------------------------------------------------------------
-r505 | thomas | 2005-10-21 14:22:10 -0400 (Fri, 21 Oct 2005) | 1 line
-Changed paths:
-   A /iexploder/testcases/165367_15-FireFox-1.4.1-Mac_OS_X-Crash.html
-
-QuickDraw crash for Mac OS X
-------------------------------------------------------------------------
-r504 | thomas | 2005-10-21 14:14:34 -0400 (Fri, 21 Oct 2005) | 1 line
-Changed paths:
-   A /iexploder/testcases/25057-OmniWeb-5.1.1-Crash.html
-
-New crash
-------------------------------------------------------------------------
-r503 | thomas | 2005-10-21 14:06:45 -0400 (Fri, 21 Oct 2005) | 1 line
-Changed paths:
-   A /iexploder/testcases/8386_11-Internet-Explorer-6.0_WinXP-DoS.html
-
-IE DoS
-------------------------------------------------------------------------
-r502 | thomas | 2005-10-21 13:24:02 -0400 (Fri, 21 Oct 2005) | 1 line
-Changed paths:
-   M /iexploder/README.txt
-   M /iexploder/htdocs/cssvalues.in
-   M /iexploder/htdocs/iexploder.cgi
-   M /iexploder/htdocs/index.html
-   D /iexploder/testcases/100482.html
-   D /iexploder/testcases/103399-nscssvaluelist.html
-   A /iexploder/testcases/119_4-Safari-Nightly-420+-2005-10-21-Crash.html
-   A /iexploder/testcases/2009-iCab-3.0.1-Mac_OS_X-Crash.html
-   A /iexploder/testcases/2624-Opera-8.5-Mac_OS_X-Crash.html
-   A /iexploder/testcases/502701_7-FireFox-1.4.1-Crash.html
-   A /iexploder/testcases/6134_19-Safari-2.0.1-412.5-Crash.html
-   D /iexploder/testcases/firefox-caption-iframe-table-47179.html
-   D /iexploder/testcases/firefox-caption-marquee-27473.html
-   D /iexploder/testcases/firefox-caption-marquee-66937.html
-   D /iexploder/testcases/firefox-isindex-18149.html
-   D /iexploder/testcases/firefox-visibility-caption-111895.html
-
-1.2 Update, mostly documentation and test cases
-------------------------------------------------------------------------
-r501 | thomas | 2005-10-21 11:41:39 -0400 (Fri, 21 Oct 2005) | 1 line
-Changed paths:
-   M /iexploder/tools/osx_last_crash.rb
-
-back to days, filter out synergy
-------------------------------------------------------------------------
-r500 | thomas | 2005-10-21 11:25:28 -0400 (Fri, 21 Oct 2005) | 1 line
-Changed paths:
-   M /iexploder/htdocs/cssvalues.in
-   M /iexploder/htdocs/iexploder.cgi
-   M /iexploder/tools/lasthit.rb
-
-1.2: We now use javascript reloads after 1 second in case the meta breaks (IE)
-------------------------------------------------------------------------
-r499 | thomas | 2005-10-21 08:51:07 -0400 (Fri, 21 Oct 2005) | 1 line
-Changed paths:
-   M /iexploder/htdocs/iexploder.cgi
-
-1.1: Fix up our subtest model
-------------------------------------------------------------------------
-r498 | thomas | 2005-10-20 21:55:59 -0400 (Thu, 20 Oct 2005) | 1 line
-Changed paths:
-   M /iexploder/htdocs/iexploder.cgi
-
-Support for subtests, and compatibility with mod_ruby
-------------------------------------------------------------------------
-r497 | thomas | 2005-10-20 20:48:59 -0400 (Thu, 20 Oct 2005) | 1 line
-Changed paths:
-   M /iexploder/htdocs/cssproperties.in
-   M /iexploder/htdocs/cssvalues.in
-   M /iexploder/htdocs/htmlattrs.in
-   M /iexploder/htdocs/htmlvalues.in
-   M /iexploder/htdocs/iexploder.cgi
-
-update to v1.0
-------------------------------------------------------------------------
-r455 | tstrombe | 2005-02-28 08:13:25 -0500 (Mon, 28 Feb 2005) | 1 line
-Changed paths:
-   A /iexploder
-   A /iexploder/LICENSE.txt
-   A /iexploder/README.txt
-   A /iexploder/htdocs
-   A /iexploder/htdocs/cssproperties.in
-   A /iexploder/htdocs/cssvalues.in
-   A /iexploder/htdocs/htmlattrs.in
-   A /iexploder/htdocs/htmltags.in
-   A /iexploder/htdocs/htmlvalues.in
-   A /iexploder/htdocs/iexploder.cgi
-   A /iexploder/htdocs/index.html
-   A /iexploder/testcases
-   A /iexploder/testcases/100482.html
-   A /iexploder/testcases/103399-nscssvaluelist.html
-   A /iexploder/testcases/firefox-caption-iframe-table-47179.html
-   A /iexploder/testcases/firefox-caption-marquee-27473.html
-   A /iexploder/testcases/firefox-caption-marquee-66937.html
-   A /iexploder/testcases/firefox-isindex-18149.html
-   A /iexploder/testcases/firefox-visibility-caption-111895.html
-   A /iexploder/tools
-   A /iexploder/tools/lasthit.rb
-   A /iexploder/tools/osx_last_crash.rb
-
-iexploder software
-------------------------------------------------------------------------
diff --git a/Tools/iExploder/iexploder-1.3.2/LICENSE.txt b/Tools/iExploder/iexploder-1.3.2/LICENSE.txt
deleted file mode 100644
index 5199718..0000000
--- a/Tools/iExploder/iexploder-1.3.2/LICENSE.txt
+++ /dev/null
@@ -1,20 +0,0 @@
-#
-# Copyright (c) 2005 Thomas Stromberg <thomas%stromberg.org>
-# 
-# This software is provided 'as-is', without any express or implied warranty.
-# In no event will the authors be held liable for any damages arising from the
-# use of this software.
-# 
-# Permission is granted to anyone to use this software for any purpose,
-# including commercial applications, and to alter it and redistribute it
-# freely, subject to the following restrictions:
-# 
-# 1. The origin of this software must not be misrepresented; you must not
-# claim that you wrote the original software. If you use this software in a
-# product, an acknowledgment in the product documentation would be appreciated
-# but is not required.
-# 
-# 2. Altered source versions must be plainly marked as such, and must not be
-# misrepresented as being the original software.
-# 
-# 3. This notice may not be removed or altered from any source distribution.
diff --git a/Tools/iExploder/iexploder-1.3.2/README.txt b/Tools/iExploder/iexploder-1.3.2/README.txt
deleted file mode 100644
index a941697..0000000
--- a/Tools/iExploder/iexploder-1.3.2/README.txt
+++ /dev/null
@@ -1,149 +0,0 @@
-iExploder 1.3.2
-===============
-
-Welcome to iExploder. a highly inefficient, but fairly effective web
-browser tester. The code still has a lot of work to be done, but it's
-definitely usable. Here are some notable features:
-
-* Tests all common HTML and CSS tags and attributes, as parsed from 
-the KHTML, WebKit and Mozilla source trees, as well as tags for 
-Internet Explorer from MSDN. This also includes a few Javascript hooks.
-* Numeric, and String overflow and formatting tests
-* Sequential and Randomized Test Case Generation
-* Test Case Lookups
-* Subtest generation
-
-
-Installation (Standalone)
--------------------------
-Make sure you have Ruby installed (comes with Mac OS X, most Linux
-distributions). See http://www.ruby-lang.org/ if you do not.
-
-If you do not already have a webserver setup, you can use the server
-built into iexploder. Simply go into the htdocs directory and type:
-
-% ruby webserver.rb
-
-A webserver will then start on port 2000 with the iexploder form. If
-port 2000 is not preferable, you can pass it another port on the command
-line:
-
-% ruby webserver.rb 2001
-
-Please note that lasthit.rb does not currently work with the logs output
-from this method. I recommend using a seperate instance/port number
-for each browser you test simultaneous using this method.
-
-
-Installation (External Webserver)
----------------------------------
-If you wish to use an external webserver (required for lasthit.rb use), 
-you may do so. IExploder has been tested with apache.
-
-Copy the contents of the htdocs/ folder to any directory served
-by your webserver. Make sure that directory can execute CGI scripts. If
-performance seems to be low, please try using mod_ruby.
-
-
-FAQ:
-----
-1) Are the tests always the same? 
-
-  The test cases should always be the same on a single installation, but not
-necessarily on different installations of iExploder. Random generator seeds
-may differ between operating systems and platforms. If you alter the tag and
-property counts in config.rb, it will change the test cases as well.
-
-
-2) How do I look up the last successful test for a client?
-
-Use tools/lasthit.rb. When I get a crash, I usually do something like:
-
-     % tail -15000 /var/log/apache2/access_log | ./lasthit.rb
-
-Letting you know how many tests and what the last test id was for each
-client tested. You can then try to repeat the test, or go through the
-subtests to see if you can repeat the crash.
-
-
-3) How do subtests work?
-
-If you see a crash on a particular test, and would like to determine the exact
-line that is crashing it,  you can use subtests. To do so, go back to the test
-submission form, and start the test from the number that a crash was indicated
-on. Instead of leaving the "subtest" field blank, set it to 1. This will rotate
-through each subtest for a particular test.
-
-Each subtest will rotate through a tag offset and a number of tags to 
-garble, which should help you isolate the instance. The number of tags
-used doubles each cycle. Here is an idea of how many subtests to expect
-based on your $HTML_MAX_TAGS settings:
-
-tags    subtests
-----------------
-32      138
-48      236
-64      332
-96      558
-128     782
-
-Most of the time you will be able to replicate a crash within the first 
-$HTML_MAX_TAGS subtests, but sometimes crashes are due to a combination
-of corrupted tags.
-
-
-4) How come I can't seem to repeat the crash?
-
-  Many browser crashes are race conditions that are not easy to repeat. Some
-crashes only happen when going from test 4 -> test 5 -> test 6. If you can't
-repeat the crash through subtests or a lookup of the failing test, try going
-back a few tests.
-
-That said, some crashes are due to race conditions that are very difficult
-to replicate.
-
-
-5) Why did you write this?
-
-  I wanted to make sure that FireFox had as many bugs fixed in it as possible
-before the 1.0 release. After 1.0 came out, I kept improving it.
-
-
-6) Why does Internet Explorer run the tests so slowly?
-
-  <META> refresh tags are very fragile in Internet Explorer, and can be easily
-be rendered useless by other tags on the page. If this happens, a javascript
-refresh will execute after a 1 second delay. 
-
-
-
-7) How do I change the number of tags iExploder tests per page?
-
-See config.rb. I personally recommend 32-128 HTML tags per page. While this
-seems to be a lot to go through when designing a test case, that's why the
-subtest engine was made. Different web browsers will have different
-performance characteristics when it comes to the number of tags per page. 
-
-Here are the results with Firefox 2.0b1 (Bon Echo) and the iExploder
-built-in webserver running tests 1-250.
-
-tags  seconds  pages/second  tags/second
------------------------------------------
-32    60       4.0           131
-48    85       2.9           141
-64    95       2.6           168
-96    120      2.1           200 *DEFAULT*
-128   140      1.8           228
-196   228      1.1           210
-256   308      0.8           207
-
-If you find pages/second to be more important than tags/second, I would
-change $HTML_MAX_TAGS to 32. Do keep in mind that large tag counts mean
-longer subtest generation periods. 
-
-
-8) What other performance enhancements can I make?
-
-* Before using iExploder, reset your browser history
-* Minimize your browser while iExploder is running
-* If using Apache, make use of mod_ruby
diff --git a/Tools/iExploder/iexploder-1.3.2/htdocs/config.rb b/Tools/iExploder/iexploder-1.3.2/htdocs/config.rb
deleted file mode 100644
index d9e7e1b..0000000
--- a/Tools/iExploder/iexploder-1.3.2/htdocs/config.rb
+++ /dev/null
@@ -1,6 +0,0 @@
-# Configuration for iExploder.. not generally tuned.
-
-$HTML_MAX_TAGS = 96;
-$HTML_MAX_ATTRS = 4;
-$CSS_MAX_PROPS = 5;
-
diff --git a/Tools/iExploder/iexploder-1.3.2/htdocs/cssproperties.in b/Tools/iExploder/iexploder-1.3.2/htdocs/cssproperties.in
deleted file mode 100644
index d49eb8e..0000000
--- a/Tools/iExploder/iexploder-1.3.2/htdocs/cssproperties.in
+++ /dev/null
@@ -1,426 +0,0 @@
-# From WebKit svn r66165 (WebCore/css/CSSPropertyNames.in)
--webkit-animation
--webkit-animation-delay
--webkit-animation-direction
--webkit-animation-duration
--webkit-animation-fill-mode
--webkit-animation-iteration-count
--webkit-animation-name
--webkit-animation-play-state
--webkit-animation-timing-function
--webkit-appearance
--webkit-backface-visibility
--webkit-background-clip
--webkit-background-composite
--webkit-background-origin
--webkit-background-size
--webkit-border-end
--webkit-border-end-color
--webkit-border-end-style
--webkit-border-end-width
--webkit-border-fit
--webkit-border-horizontal-spacing
--webkit-border-image
--webkit-border-radius
--webkit-border-start
--webkit-border-start-color
--webkit-border-start-style
--webkit-border-start-width
--webkit-border-vertical-spacing
--webkit-box-align
--webkit-box-direction
--webkit-box-flex
--webkit-box-flex-group
--webkit-box-lines
--webkit-box-ordinal-group
--webkit-box-orient
--webkit-box-pack
--webkit-box-reflect
--webkit-box-shadow
--webkit-color-correction
--webkit-column-break-after
--webkit-column-break-before
--webkit-column-break-inside
--webkit-column-count
--webkit-column-gap
--webkit-column-rule
--webkit-column-rule-color
--webkit-column-rule-style
--webkit-column-rule-width
--webkit-column-span
--webkit-column-width
--webkit-columns
--webkit-font-size-delta
--webkit-font-smoothing
--webkit-highlight
--webkit-hyphenate-character
--webkit-hyphenate-locale
--webkit-hyphens
--webkit-line-break
--webkit-line-clamp
--webkit-margin-bottom-collapse
--webkit-margin-collapse
--webkit-margin-end
--webkit-margin-start
--webkit-margin-top-collapse
--webkit-marquee
--webkit-marquee-direction
--webkit-marquee-increment
--webkit-marquee-repetition
--webkit-marquee-speed
--webkit-marquee-style
--webkit-mask
--webkit-mask-attachment
--webkit-mask-box-image
--webkit-mask-clip
--webkit-mask-composite
--webkit-mask-image
--webkit-mask-origin
--webkit-mask-position
--webkit-mask-position-x
--webkit-mask-position-y
--webkit-mask-repeat
--webkit-mask-repeat-x
--webkit-mask-repeat-y
--webkit-mask-size
--webkit-match-nearest-mail-blockquote-color
--webkit-nbsp-mode
--webkit-padding-end
--webkit-padding-start
--webkit-perspective
--webkit-perspective-origin
--webkit-perspective-origin-x
--webkit-perspective-origin-y
--webkit-rtl-ordering
--webkit-text-decorations-in-effect
--webkit-text-fill-color
--webkit-text-security
--webkit-text-size-adjust
--webkit-text-stroke
--webkit-text-stroke-color
--webkit-text-stroke-width
--webkit-transform
--webkit-transform-origin
--webkit-transform-origin-x
--webkit-transform-origin-y
--webkit-transform-origin-z
--webkit-transform-style
--webkit-transition
--webkit-transition-delay
--webkit-transition-duration
--webkit-transition-property
--webkit-transition-timing-function
--webkit-user-drag
--webkit-user-modify
--webkit-user-select
--webkit-variable-declaration-block
-background
-background-attachment
-background-clip
-background-color
-background-image
-background-origin
-background-position
-background-position-x
-background-position-y
-background-repeat
-background-repeat-x
-background-repeat-y
-background-size
-border
-border-bottom
-border-bottom-color
-border-bottom-left-radius
-border-bottom-right-radius
-border-bottom-style
-border-bottom-width
-border-collapse
-border-color
-border-left
-border-left-color
-border-left-style
-border-left-width
-border-radius
-border-right
-border-right-color
-border-right-style
-border-right-width
-border-spacing
-border-style
-border-top
-border-top-color
-border-top-left-radius
-border-top-right-radius
-border-top-style
-border-top-width
-border-width
-bottom
-box-sizing
-caption-side
-clear
-clip
-color
-content
-counter-increment
-counter-reset
-cursor
-direction
-display
-empty-cells
-float
-font
-font-family
-font-size
-font-stretch
-font-style
-font-variant
-font-weight
-height
-left
-letter-spacing
-line-height
-list-style
-list-style-image
-list-style-position
-list-style-type
-margin
-margin-bottom
-margin-left
-margin-right
-margin-top
-max-height
-max-width
-min-height
-min-width
-opacity
-orphans
-outline
-outline-color
-outline-offset
-outline-style
-outline-width
-overflow
-overflow-x
-overflow-y
-padding
-padding-bottom
-padding-left
-padding-right
-padding-top
-page
-page-break-after
-page-break-before
-page-break-inside
-pointer-events
-position
-quotes
-resize
-right
-size
-src
-table-layout
-text-align
-text-decoration
-text-indent
-text-line-through
-text-line-through-color
-text-line-through-mode
-text-line-through-style
-text-line-through-width
-text-overflow
-text-overline
-text-overline-color
-text-overline-mode
-text-overline-style
-text-overline-width
-text-rendering
-text-shadow
-text-transform
-text-underline
-text-underline-color
-text-underline-mode
-text-underline-style
-text-underline-width
-top
-unicode-bidi
-unicode-range
-vertical-align
-visibility
-white-space
-widows
-width
-word-break
-word-spacing
-word-wrap
-z-index
-zoom
-
-# CSS3 properties - http://www.css3.info/preview/
-background-clip
-background-origin
-border-image
-border-radius
-box-shadow
-box-sizing
-column-count
-column-gap
-column-min-width
-column-rule
-column-rule-color
-column-rule-style
-column-rule-width
-column-space-distribution
-column-span
-column-width
-column-width-policy
-
-# Removed from WebKit between r53119 and r66165
--webkit-binding
-
-# Removed from WebKit between r44660 and r53119
--webkit-border-bottom-left-radius
--webkit-border-bottom-right-radius
--webkit-border-top-left-radius
--webkit-border-top-right-radius
-
-# Removed from WebKit between r24523 and r44660
--webkit-dashboard-region
-scrollbar-3dlight-color
-scrollbar-arrow-color
-scrollbar-darkshadow-color
-scrollbar-face-color
-scrollbar-highlight-color
-scrollbar-shadow-color
-scrollbar-track-color
-
-# All of the following are from khtml's cssproperties.in as of 19oct2004, but are no longer in WebKit
--khtml-border-horizontal-spacing
--khtml-border-vertical-spacing
--khtml-flow-mode
--khtml-marquee
--khtml-marquee-direction
--khtml-marquee-increment
--khtml-marquee-repetition
--khtml-marquee-speed
--khtml-marquee-style
--khtml-text-decoration-color
--khtml-user-input
-scrollbar-base-color
-
-# Internet Explorer 6.0 - http://msdn.microsoft.com/workshop/author/css/reference/attributes.asp
-filter:progid:
-filter:
-ime-mode
-layout-flow
-layout-grid
-layout-grid-char
-layout-grid-line
-layout-grid-mode
-layout-grid-type
-line-break
-overflow-x
-overflow-y
-pagebreakafter
-pagebreakbefore
-ruby-align
-ruby-overhang
-ruby-position
-text-autospace
-text-justify
-text-kashida-space
-text-underline-position
-word-break
-writing-mode
-zoom
-
-# from http://msdn.microsoft.com/library/default.asp?url=/workshop/author/filter/reference/reference.asp
-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(
-filter:progid:DXImageTransform.Microsoft.Blur(
-filter:progid:DXImageTransform.Microsoft.MotionBlur(
-filter:progid:DXImageTransform.Microsoft.Gradient(
-filter:progid:DXImageTransform.Microsoft.Pixelate(
-
-# From Mozilla Firefox CVS on 2006-04-15 (layout/style/nsCSSPropList.h)
-# grep "^CSS_PROP" nsCSSPropList.h | grep -v "_SVG" |cut -d, -f1 | cut -d\( -f2 | sort 
-++ /tmp/moz	Tue Apr 18 13:45:30 2006
--moz-appearance
--moz-background-clip
--moz-background-inline-policy
--moz-background-origin
--moz-binding
--moz-border-bottom-colors
--moz-border-left-colors
--moz-border-radius
--moz-border-radius-bottomleft
--moz-border-radius-bottomright
--moz-border-radius-topleft
--moz-border-radius-topright
--moz-border-right-colors
--moz-border-top-colors
--moz-box-align
--moz-box-direction
--moz-box-flex
--moz-box-ordinal-group
--moz-box-orient
--moz-box-pack
--moz-box-sizing
--moz-column-count
--moz-column-gap
--moz-column-width
--moz-float-edge
--moz-force-broken-image-icon
--moz-image-region
--moz-margin-end
--moz-margin-start
--moz-outline-radius
--moz-outline-radius-bottomleft
--moz-outline-radius-bottomright
--moz-outline-radius-topleft
--moz-outline-radius-topright
--moz-padding-end
--moz-padding-start
--moz-user-focus
--moz-user-input
--moz-user-modify
--moz-user-select
--x-background-x-position
--x-background-y-position
-azimuth
-cue
-cue-after
-cue-before
-elevation
-font-size-adjust
-margin-end-value
-margin-left-ltr-source
-margin-left-rtl-source
-margin-left-value
-margin-right-ltr-source
-margin-right-rtl-source
-margin-right-value
-margin-start-value
-marker
-marker-offset
-marks
-padding-end-value
-padding-left-ltr-source
-padding-left-rtl-source
-padding-left-value
-padding-right-ltr-source
-padding-right-rtl-source
-padding-right-value
-padding-start-value
-pause
-pause-after
-pause-before
-pitch
-pitch-range
-richness
-speak
-speak-header
-speak-numeral
-speak-punctuation
-speech-rate
-stress
-voice-family
-volume
diff --git a/Tools/iExploder/iexploder-1.3.2/htdocs/cssvalues.in b/Tools/iExploder/iexploder-1.3.2/htdocs/cssvalues.in
deleted file mode 100644
index c19f78f..0000000
--- a/Tools/iExploder/iexploder-1.3.2/htdocs/cssvalues.in
+++ /dev/null
@@ -1,339 +0,0 @@
-"Trebuchet MS",Verdana, Arial, Helvetica, sans-serif
-#339933 !important !important !important
-#9999999999999999999999999999999999999999999
--5, -5, -5
--9999%
--999999999999999999999999999%
--999999999999999999999999999em
--999999999999999999999999999px
--9999em
--9999px
--webkit-activelink
--webkit-auto
--webkit-baseline-middle
--webkit-body
--webkit-box
--webkit-center
--webkit-focus-ring-color
--webkit-inline-box
--webkit-left
--webkit-link
--webkit-marquee
--webkit-nowrap
--webkit-overlay
--webkit-right
--webkit-text
--webkit-xxx-large
-0
-0 auto
-0 fixed
-2%
-90000000000000000000000000000000000000000000%
-9999999999999999999999
-99999999999999999999999999999999999999 auto
-99999999999999999999999999999999999999999999px
-999999px solid #fff
-above
-absolute
-activeborder
-activecaption
-after-white-space
-ahead
-alternate
-always
-appworkspace
-aqua
-armenian
-attr("ATTRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA")
-auto
-avoid
-background
-backwards
-baseline
-below
-bidi-override
-black
-blink
-block
-block clear
-block width
-block-axis
-blue
-bold
-bolder
-border
-border-box
-both
-bottom
-break-word
-button
-button-bevel
-buttonface
-buttonhighlight
-buttonshadow
-buttontext
-capitalize
-caption
-captiontext
-caret
-center
-checkbox
-circle
-cjk-ideographic
-clip
-clip:rect(-0px -2000000px -200000px -0px)
-clip:rect(0px 2000000px 200000px 0px)
-close-quote
-collapse
-compact
-condensed
-content
-content-box
-continuous
-crop
-cross
-crosshair
-cursive
-dashed
-decimal
-decimal-leading-zero
-default
-disc
-discard
-dot-dash
-dot-dot-dash
-dotted
-double
-down
-e-resize
-element
-ellipsis
-embed
-end
-expanded
-extra-condensed
-extra-expanded
-fantasy
-fast
-fixed
-forwards
-fuchsia
-georgian
-gray
-graytext
-green
-grey
-groove
-hand
-hebrew
-help
-helvetica, arial, Courier New, Courier, Mono, Blah, Blah, Blah
-hidden
-hide
-higher
-highlight
-highlighttext
-hiragana
-hiragana-iroha
-horizontal
-icon
-ignore
-inactiveborder
-inactivecaption
-inactivecaptiontext
-infinite
-infobackground
-infotext
-inherit
-initial
-inline
-inline-axis
-inline-block
-inline-table
-inset
-inside
-intrinsic
-invert
-italic
-justify
-katakana
-katakana-iroha
-landscape
-large
-larger
-left
-level
-lighter
-lime
-line-through
-list-item
-listbox
-listitem
-logical
-loud
-lower
-lower-alpha
-lower-greek
-lower-latin
-lower-roman
-lowercase
-ltr
-marker
-maroon
-match
-medium
-menu
-menulist
-menulist-button
-menulist-text
-menulist-textfield
-menutext
-message-box
-middle
-min-intrinsic
-mix
-monospace
-move
-multiple
-n-resize
-narrower
-navy
-ne-resize
-no-close
-no-close-quote
-no-open-quote
-no-repeat
-none
-normal
-normal !important
-nowrap
-nw-resize
-oblique
-olive
-once
-open-quote
-orange
-outset
-outside
-overline
-padding
-pointer
-portrait
-pre
-pre-line
-pre-wrap
-purple
-push-button
-radio
-read-only
-read-write
-read-write-plaintext-only
-red
-relative
-repeat
-repeat-x
-repeat-y
-reverse
-rgb(9999999999, 999999999, 9999999999999)
-ridge
-right
-round
-rtl
-run-in
-s-resize
-sans-serif
-scroll
-scrollbar
-scrollbarbutton-down
-scrollbarbutton-left
-scrollbarbutton-right
-scrollbarbutton-up
-scrollbargripper-horizontal
-scrollbargripper-vertical
-scrollbarthumb-horizontal
-scrollbarthumb-vertical
-scrollbartrack-horizontal
-scrollbartrack-vertical
-se-resize
-searchfield
-searchfield-close
-searchfield-results
-semi-condensed
-semi-expanded
-separate
-serif
-show
-silver
-single
-skip-white-space
-slide
-slider-horizontal
-slider-vertical
-sliderthumb-horizontal
-sliderthumb-vertical
-slow
-small
-small-caps
-small-caption
-smaller
-solid
-space
-square
-square-button
-start
-static
-status-bar
-stretch
-sub
-super
-sw-resize
-table
-table-caption
-table-cell
-table-column
-table-column-group
-table-footer-group
-table-header-group
-table-row
-table-row-group
-teal
-text
-text-bottom
-text-top
-textfield
-thick
-thick dashed yellow
-thick dotted blue
-thin
-threeddarkshadow
-threedface
-threedhighlight
-threedlightshadow
-threedshadow
-top
-transparent
-ultra-condensed
-ultra-expanded
-underline
-unfurl
-up
-upper-alpha
-upper-latin
-upper-roman
-uppercase
-vertical
-visible
-visual
-w-resize
-wait
-wave
-white
-wider
-window
-windowframe
-windowtext
-x-large
-x-small
-xx-large
-xx-small
-yellow
diff --git a/Tools/iExploder/iexploder-1.3.2/htdocs/htmlattrs.in b/Tools/iExploder/iexploder-1.3.2/htdocs/htmlattrs.in
deleted file mode 100644
index 0dc8116..0000000
--- a/Tools/iExploder/iexploder-1.3.2/htdocs/htmlattrs.in
+++ /dev/null
@@ -1,373 +0,0 @@
-# From WebKit svn r66165 (WebCore/html/HTMLAttributeNames.in)
-abbr
-accept
-accept_charset
-accesskey
-action
-align
-alink
-alt
-archive
-aria-activedescendant
-aria-atomic
-aria-busy
-aria-checked
-aria-controls
-aria-describedby
-aria-disabled
-aria-dropeffect
-aria-expanded
-aria-flowto
-aria-grabbed
-aria-haspopup
-aria-help
-aria-hidden
-aria-label
-aria-labeledby
-aria-labelledby
-aria-level
-aria-live
-aria-multiselectable
-aria-orientation
-aria-owns
-aria-pressed
-aria-readonly
-aria-relevant
-aria-required
-aria-selected
-aria-valuemax
-aria-valuemin
-aria-valuenow
-aria-valuetext
-async
-autocomplete
-autofocus
-autoplay
-autosave
-axis
-background
-behavior
-bgcolor
-bgproperties
-border
-bordercolor
-cellborder
-cellpadding
-cellspacing
-challenge
-char
-charoff
-charset
-checked
-cite
-class
-classid
-clear
-code
-codebase
-codetype
-color
-cols
-colspan
-compact
-composite
-content
-contenteditable
-controls
-coords
-data
-datetime
-declare
-defer
-dir
-direction
-disabled
-draggable
-enctype
-end
-event
-expanded
-face
-focused
-for
-formnovalidate
-frame
-frameborder
-headers
-height
-hidden
-high
-href
-hreflang
-hspace
-http_equiv
-id
-incremental
-indeterminate
-ismap
-keytype
-label
-lang
-language
-leftmargin
-link
-list
-longdesc
-loop
-loopend
-loopstart
-low
-lowsrc
-manifest
-marginheight
-marginwidth
-max
-maxlength
-mayscript
-media
-method
-min
-multiple
-name
-nohref
-noresize
-noshade
-novalidate
-nowrap
-object
-onabort
-onbeforecopy
-onbeforecut
-onbeforeload
-onbeforepaste
-onbeforeprocess
-onbeforeunload
-onblur
-oncanplay
-oncanplaythrough
-onchange
-onclick
-oncontextmenu
-oncopy
-oncut
-ondblclick
-ondrag
-ondragend
-ondragenter
-ondragleave
-ondragover
-ondragstart
-ondrop
-ondurationchange
-onemptied
-onended
-onerror
-onfocus
-onfocusin
-onfocusout
-onhashchange
-oninput
-oninvalid
-onkeydown
-onkeypress
-onkeyup
-onload
-onloadeddata
-onloadedmetadata
-onloadstart
-onmousedown
-onmousemove
-onmouseout
-onmouseover
-onmouseup
-onmousewheel
-onoffline
-ononline
-onorientationchange
-onpagehide
-onpageshow
-onpaste
-onpause
-onplay
-onplaying
-onpopstate
-onprogress
-onratechange
-onreset
-onresize
-onscroll
-onsearch
-onseeked
-onseeking
-onselect
-onselectstart
-onstalled
-onstorage
-onsubmit
-onsuspend
-ontimeupdate
-ontouchcancel
-ontouchend
-ontouchmove
-ontouchstart
-onunload
-onvolumechange
-onwaiting
-onwebkitanimationend
-onwebkitanimationiteration
-onwebkitanimationstart
-onwebkitbeginfullscreen
-onwebkitendfullscreen
-onwebkittransitionend
-optimum
-pattern
-placeholder
-playcount
-pluginurl
-poster
-precision
-preload
-primary
-profile
-progress
-prompt
-readonly
-rel
-required
-results
-rev
-role
-rows
-rowspan
-rules
-sandbox
-scheme
-scope
-scrollamount
-scrolldelay
-scrolling
-selected
-shape
-size
-sortable
-sortdirection
-span
-speech
-spellcheck
-src
-standby
-start
-step
-style
-summary
-tabindex
-tableborder
-target
-text
-title
-top
-topmargin
-truespeed
-type
-usemap
-valign
-value
-valuetype
-version
-viewsource
-vlink
-vspace
-webkitdirectory
-width
-wrap
-
-# Removed from WebKit between r53119 and r56558
-autobuffer
-
-# Removed from WebKit between r14011 and r53119
-left
-pagex
-pagey
-plain
-pluginpage
-pluginspage
-
-# was in khtml in 2004, but is no longer in WebCore
-accept-charset
-html
-http-equiv
-nosave
-oversrc
-unknown
-visibility
-z-index
-
-# From Mozilla CVS 2006-04-15 (mozilla/layout/style/xbl-marquee)
-bounce
-finish
-onbounce
-onfinish
-onstart
-
-
-# IE specific, from msdn.microsoft.com/workshop/author/dhtml/reference/properties
-acceptcharset
-allowtransparency
-balance
-choff
-datafld
-dataformatas
-datapagesize
-datasrc
-dynsrc
-framespacing
-galleryimg
-hidefocus
-methods
-scroll
-units
-urn
-volume
-
-# From Mozilla CVS 2006-04-15 (mozilla/content/base/src/nsGkAtomList.h)
-# To get these, I used:
-# ggrep -r "Get.*Attr" * | perl -ne 'if (/nsHTMLAtoms::(\w+)/) { \
-# system("grep \\($1, content/base/src/nsGkAtomList.h"); }' \
-# | cut -d\" -f2 | sort -u
-autocheck
-base
-bottommargin
-event
-font-weight
-handler
-layout
-observer
-ping
-point-size
-rightmargin
-variable
-
-# events from Mozilla CVS 2006-04-15 (mozilla/content/base/src/nsGkAtomList.h)
-# cat nsGkAtomList.h | grep GK_ATOM | cut -d\" -f2 | egrep "^on[a-z]+"
-onzoom
-onunderflow
-ontext
-onset
-onpopupshown
-onpopupshowing
-onpopuphiding
-onpopuphidden
-onpaint
-onpageshow
-onpagehide
-onoverflowchanged
-onoverflow
-onget
-ondraggesture
-ondragexit
-ondragdrop
-oncompositionstart
-oncompositionend
-oncommandupdate
-oncommand
-onclose
diff --git a/Tools/iExploder/iexploder-1.3.2/htdocs/htmltags.in b/Tools/iExploder/iexploder-1.3.2/htdocs/htmltags.in
deleted file mode 100644
index 18740e1..0000000
--- a/Tools/iExploder/iexploder-1.3.2/htdocs/htmltags.in
+++ /dev/null
@@ -1,154 +0,0 @@
-# From WebKit svn r66165 (WebCore/html/HTMLTagNames.in)
-a
-abbr
-acronym
-address
-applet
-area
-article
-aside
-audio
-b
-base
-basefont
-bdo
-bgsound
-big
-blockquote
-body
-br
-button
-canvas
-caption
-center
-cite
-code
-col
-colgroup
-command
-datalist
-dcell
-dcol
-dd
-del
-details
-dfn
-dir
-div
-dl
-drow
-dt
-em
-embed
-fieldset
-figcaption
-figure
-font
-footer
-form
-frame
-frameset
-h1
-h2
-h3
-h4
-h5
-h6
-head
-header
-hgroup
-hr
-html
-i
-iframe
-image
-img
-input
-ins
-isindex
-kbd
-keygen
-label
-layer
-legend
-li
-link
-listing
-map
-mark
-marquee
-menu
-meta
-meter
-nav
-nobr
-noembed
-noframes
-nolayer
-noscript
-noscript
-object
-ol
-optgroup
-option
-p
-param
-plaintext
-pre
-progress
-q
-rp
-rt
-ruby
-s
-samp
-script
-section
-select
-small
-source
-span
-strike
-strong
-style
-sub
-summary
-sup
-table
-tbody
-td
-textarea
-tfoot
-th
-thead
-title
-tr
-track
-tt
-u
-ul
-var
-video
-wbr
-xmp
-
-# This was in khtml in 10-2004
-ilayer
-
-# Additions from Mozilla CVS, 2006-04-18.
-# mozilla/parser/htmlparser/public/nsHTMLTagList.h
-bgsound
-blink
-multicol
-spacer
-
-# The following tags used to be in Mozilla in 10-2004, now removed
-counter
-endnote
-parsererror
-server
-sound
-sourcetext
-
-# From Internet Explorer - http://msdn.microsoft.com/workshop/author/html/reference/elements.asp
-xml
diff --git a/Tools/iExploder/iexploder-1.3.2/htdocs/htmlvalues.in b/Tools/iExploder/iexploder-1.3.2/htdocs/htmlvalues.in
deleted file mode 100644
index d54984f..0000000
--- a/Tools/iExploder/iexploder-1.3.2/htdocs/htmlvalues.in
+++ /dev/null
@@ -1,35 +0,0 @@
-# Many of the following are from mangleme.cgi.c's make_up_value() function
-#
-*
-_blank
-_parent
-_self
-_top
-about:
-about:plugins
-file:
-http:
-jar:
-javascript:
-left
-top
-%n%n%n%n%n
-ftp:
-right
-wysiwyg:
-bottom
-none
-ldap:
-%i %i
-999999999,9999999,999999999,9999999,999999999,9999999,999999999,9999999,9
-999999999,9999999,9
-999999999,9999999
-true
-false
-_SEARCH
-javascript
-off
-on
-vbscript
-password
-image
diff --git a/Tools/iExploder/iexploder-1.3.2/htdocs/iexploder.cgi b/Tools/iExploder/iexploder-1.3.2/htdocs/iexploder.cgi
deleted file mode 100755
index 89e099c..0000000
--- a/Tools/iExploder/iexploder-1.3.2/htdocs/iexploder.cgi
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/usr/bin/ruby
-# iExploder - Generates bad HTML files to perform QA for web browsers.
-# Developed for the Mozilla Foundation.
-#####################
-#
-# Copyright (c) 2006 Thomas Stromberg <thomas%stromberg.org>
-# 
-# This software is provided 'as-is', without any express or implied warranty.
-# In no event will the authors be held liable for any damages arising from the
-# use of this software.
-# 
-# Permission is granted to anyone to use this software for any purpose,
-# including commercial applications, and to alter it and redistribute it
-# freely, subject to the following restrictions:
-# 
-# 1. The origin of this software must not be misrepresented; you must not
-# claim that you wrote the original software. If you use this software in a
-# product, an acknowledgment in the product documentation would be appreciated
-# but is not required.
-# 
-# 2. Altered source versions must be plainly marked as such, and must not be
-# misrepresented as being the original software.
-# 
-# 3. This notice may not be removed or altered from any source distribution.
-
-require 'cgi';
-require 'iexploder';
-require 'config';
-
-### THE INTERACTION ##################################
-ie = IExploder.new($HTML_MAX_TAGS, $HTML_MAX_ATTRS, $CSS_MAX_PROPS)
-ie.readTagFiles()
-
-cgi = CGI.new("html4");
-ie.url=ENV['SCRIPT_NAME'] || '?'
-ie.test_num = cgi.params['test'][0].to_i
-ie.subtest_num = cgi.params['subtest'][0].to_i || 0
-ie.random_mode = cgi.params['random'][0]
-ie.lookup_mode = cgi.params['lookup'][0]
-ie.stop_num = cgi.params['stop'][0].to_i || 0
-ie.setRandomSeed
-
-cgi.out('type' => 'text/html') do
-    ie.buildPage()
-end
diff --git a/Tools/iExploder/iexploder-1.3.2/htdocs/iexploder.rb b/Tools/iExploder/iexploder-1.3.2/htdocs/iexploder.rb
deleted file mode 100644
index eee3e38..0000000
--- a/Tools/iExploder/iexploder-1.3.2/htdocs/iexploder.rb
+++ /dev/null
@@ -1,337 +0,0 @@
-# iExploder - Generates bad HTML files to perform QA for web browsers.
-# Developed for the Mozilla Foundation.
-#####################
-#
-# Copyright (c) 2006 Thomas Stromberg <thomas%stromberg.org>
-# 
-# This software is provided 'as-is', without any express or implied warranty.
-# In no event will the authors be held liable for any damages arising from the
-# use of this software.
-# 
-# Permission is granted to anyone to use this software for any purpose,
-# including commercial applications, and to alter it and redistribute it
-# freely, subject to the following restrictions:
-# 
-# 1. The origin of this software must not be misrepresented; you must not
-# claim that you wrote the original software. If you use this software in a
-# product, an acknowledgment in the product documentation would be appreciated
-# but is not required.
-# 
-# 2. Altered source versions must be plainly marked as such, and must not be
-# misrepresented as being the original software.
-# 
-# 3. This notice may not be removed or altered from any source distribution.
-
-$VERSION="1.3.2"
-
-class IExploder
-    attr_accessor :test_num, :subtest_num, :lookup_mode, :random_mode, :url
-    attr_accessor :offset, :lines, :stop_num
-    
-    def initialize(max_tags, max_attrs, max_props)
-        @htmlMaxTags = max_tags
-        @htmlMaxAttrs = max_attrs
-        @cssMaxProps = max_props
-        @mangledTagTotal = 0
-        @stop_num = 0
-    end
-    
-    def setRandomSeed
-        if @test_num > 0
-            srand(@test_num)
-        else
-            srand
-        end
-    end
-    
-    
-    def readTagFiles
-        # These if statements are so that mod_ruby doesn't have to reload the files
-        # each time
-        
-        if (! @cssTags)
-            @cssTags = readTagFile('cssproperties.in');
-        end
-        
-        if (! @htmlTags)
-            @htmlTags = readTagFile('htmltags.in');
-        end
-        if (! @htmlAttr)
-            @htmlAttr = readTagFile('htmlattrs.in');
-        end
-        
-        if (! @htmlValues)
-            @htmlValues = readTagFile('htmlvalues.in');
-        end
-        
-        if (! @cssValues)
-            @cssValues = readTagFile('cssvalues.in');
-        end
-        
-    end
-    
-    
-    def readTagFile(filename)
-        list = Array.new
-        File.new(filename).readlines.each { |line|
-            line.chop!
-            
-            # Don't include comments.
-            if (line !~ /^# /) && (line.length > 0)
-                list << line
-            end
-        }
-        return  list
-    end
-    
-    # based on make_up_value, essentially.
-    def inventValue
-        value = rand(19);
-        case value
-        when 1..3 then return (@htmlValues[rand(@htmlValues.length)])
-        when 4..5 then return (@htmlValues[rand(@htmlValues.length)] + inventValue())
-        when 6 then return (@htmlValues[rand(@htmlValues.length)] + "//" + inventValue())
-        when 7 then return ''
-            # this may return negative argument?
-        when 8..10 then return rand(255).chr * (rand(256)+8)
-        when 11 then return rand(255).chr * (rand(2048)+8)
-        when 12 then return "#" + rand(999999).to_s
-        when 13 then return rand(999999).to_s + "%"
-        when 14..15 then return "&" + rand(999999).to_s + ";"
-            # filters
-        when 16 then
-            return inventValue() + "=" + inventValue()
-            
-            # this my return undefined method + for nil:NilClass
-        when 17 then return inventValue() + "," + inventValue()
-        else
-            if rand(5) > 3
-                return "-" + rand(999999).to_s
-            else
-                return rand(999999).to_s
-            end
-        end
-    end
-    
-    # based on make_up_value, essentially.
-    def inventCssValue(tag)
-        value = rand(23);
-        case value
-        when 1..10 then return @cssValues[rand(@cssValues.length)]
-        when 11 then return ''
-        when 12 then return rand(255).chr * (rand(8192)+8)
-        when 13
-            length = rand(1024) + 8
-            return (rand(255).chr * length) + " " + (rand(255).chr * length) + " " + (rand(255).chr * length)
-        when 14 then return (rand(255).chr * (rand(1024)+3)) + "px"
-        when 15 then return (rand(255).chr * (rand(1024)+3)) + "em"
-        when 16 then return "url(" + inventValue() + ")"
-        when 17..18 then return "#" + rand(999999999).to_s
-        when 19 then return "-" + rand(99999999).to_s
-        else return rand(99999999).to_s;
-        end
-    end
-    
-    
-    def mangleTag(tag)
-        @mangledTagTotal += 1
-        out = ''
-        
-        # 20% chance of closing a tag instead of opening it. This 
-        # still counts against @mangledTagTotal, however.
-        if rand(10) > 8
-            out = "</" + tag + ">"
-            return out
-        end
-        
-        # we're opening it.
-        out = "<" + tag
-        
-        # forgot the space between the tag and the attributes
-        if rand(15) > 1
-            out << ' '
-        end
-        
-        attrNum = rand(@htmlMaxAttrs) + 1
-        
-        1.upto(attrNum) {
-            attr = @htmlAttr[rand(@htmlAttr.length)]
-            
-            out << attr
-            
-            # 7.5% of the time we skip the = sign. Don't prefix it
-            # if the attribute ends with a ( however.
-            
-            
-            if rand(15) > 1
-                out << '='
-            end
-            
-            # sometimes quote it, sometimes not. I doubt the importance
-            # of this test, but mangleme-1.2 added it, and adding more
-            # random-ness never hurt anything but time. I'll do it less often.
-            quote = rand(2)
-            if (quote > 1)
-                out << "\""
-            end
-            
-            out << inventValue()
-            
-            # end the quote when you are done
-            if (quote > 1)
-                out << "\" "
-            end
-            
-            # 5% chance we skip the space at the end of the name
-            if rand(20) > 1
-                out << ' '
-            end
-            
-        }
-        
-        # CSS styles!
-        if rand(4) > 1
-            out << " style=\""
-            1.upto(rand(@cssMaxProps)+1) {
-                out << @cssTags[rand(@cssTags.length)]
-                
-                # very small chance we let the tag run on.
-                if rand(50) > 1
-                    out << ": "
-                end
-                
-                out << inventCssValue(tag)
-                # we almost always put the ; there.
-                if rand(50) > 1
-                    out << '; '
-                end
-            }
-            out << "\""
-        end
-        
-        out << ">\n"
-        
-        # support our local troops!
-        if (@subtest_num > 0) && filterSubTest() 
-            if tag =~ /html|body|head/
-                return '<' + tag + '>'
-            else
-                return "<x-#@mangledTagTotal>\n"
-            end
-        else
-            return out
-        end    
-    end
-    #end
-    
-    def filterSubTest()
-        result = 1
-        if (@mangledTagTotal >= @offset) && (@mangledTagTotal < (@offset + @lines))
-            result = nil
-        end
-        return result
-    end
-    
-    def nextTestNum()
-        if random_mode
-            n = rand(99999999)
-        else
-            if @test_num
-                n = @test_num  + 1
-            else
-                n = 1
-            end
-        end
-        return n
-    end
-    
-    # If we are at line 30 with 8 extra lines, there is no point to try line 31
-    # with 8 lines as well.. skip back to 1 and bump up the line count.
-    def nextSubTestNum()    
-        if (@offset + @lines) > @htmlMaxTags
-            nextNum = ((@lines * 2 -1)) * @htmlMaxTags
-        else
-            nextNum = @subtest_num + 1
-        end      
-        return nextNum
-    end
-    
-    
-    def buildPage
-        if (! @test_num) || (@test_num < 1)
-            @test_num = 1
-        end
-        next_num=nextTestNum()
-        @lines = @subtest_num.div(@htmlMaxTags) + 1
-        @offset = @subtest_num.modulo(@htmlMaxTags)
-        
-        # building the HTML
-        bodyText = mangleTag('html')
-        bodyText << "\n<head>\n"
-        
-        # Only do redirects if lookup=1 has not been specified.
-        if (! @lookup_mode) && (@lines <= @htmlMaxTags) && (@stop_num != @test_num)
-            newpage = @url + "?"
-            if @subtest_num > 0
-                newpage << "test=" << @test_num.to_s << "&subtest=" << nextSubTestNum().to_s
-            else
-                newpage << "test=" << next_num.to_s
-            end
-            
-            if @random_mode
-                newpage << "&random=1"
-            end
-            
-            if @stop_num > 0
-                newpage << "&stop=" << @stop_num.to_s
-            end
-            
-            bodyText << "\t<META HTTP-EQUIV=\"Refresh\" content=\"0;URL=#{newpage}\">\n" 
-            # use both techniques, because you never know how you might be corrupting yourself.
-            bodyText << "\t<script language=\"javascript\">setTimeout('window.location=\"#{newpage}\"', 1000);</script>\n" 
-        end
-        
-        bodyText << "\t" << mangleTag('meta')
-        bodyText << "\t" <<  mangleTag('meta')
-        bodyText << "\t" <<  mangleTag('link')
-        
-        bodyText << "\t<title>[#@test_num] iExploder #{$VERSION} - #{inventValue()}</title>\n"
-        bodyText << "</head>\n\n"
-        
-        # What tags will we be messing with ######################
-        tagList = [ 'body']
-        
-        # we already have 5 tags?
-        1.upto(@htmlMaxTags - 5 ) { tagList << @htmlTags[rand(@htmlTags.length)] }
-        
-        tagList.each { |tag|
-            bodyText << mangleTag(tag)
-            bodyText << inventValue() + "\n"
-        }
-        bodyText << "</body>\n</html>"
-    end
-end
-
-
-
-if $0 == __FILE__
-    max=ARGV[0].to_i
-    puts "testing #{max} tags"
-    test = IExploder.new(max, 5, 5)
-    test.readTagFiles()
-    test.test_num=1
-    test.subtest_num=1
-    counter=0
-    test.lines=0
-
-    while test.lines < max
-        test.lines = test.subtest_num.div(max) + 1
-        test.offset = test.subtest_num.modulo(max)
-        test.subtest_num=test.nextSubTestNum
-        counter = counter + 1
-	puts "[#{counter}] subtest #{test.subtest_num} is #{test.lines} lines with #{test.offset} offset"
-    end
-
-    puts "for #{max} tests, you will have #{counter} iterations until #{test.subtest_num}"
-end
-
diff --git a/Tools/iExploder/iexploder-1.3.2/htdocs/index.html b/Tools/iExploder/iexploder-1.3.2/htdocs/index.html
deleted file mode 100644
index 849bc6b..0000000
--- a/Tools/iExploder/iexploder-1.3.2/htdocs/index.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-  <title>iExploder 1.3.2</title>
-</head>
-<body>
-<h2>iExploder: Web Browser Quality Assurance Tester</h2>
-<small>Written by <a href="http://toadstool.se/">Thomas Str&ouml;mberg</a> for the
-<a href="http://www.mozilla.org/firefox/">Mozilla FireFox</a> project</small>
-
-
-<ul>
-  <li><a href="iexploder.cgi">Start test sequence from the beginning!</a></li>
-  <li><a href="iexploder.cgi?random=1">Start test sequence in random</a></li>
-  <li>Start testing from a test number:
-    <form method="get" action="iexploder.cgi" name="test">
-	Test: <input size="9" name="test" value="1"> Subtest: <input size="2" name="subtest" value="">
-	<input value="Start" type="submit">
-    </form>
-  </li>
-
-  <li>Lookup a single test number:
-    <form method="get" action="iexploder.cgi" name="test">
-	<input type="hidden" name="lookup" value="1">
-	Test: <input size="9" name="test" value="1"> Subtest: <input size="2" name="subtest" value="">
- <input value="Lookup" type="submit"></form>
-  </li>
-</ul>
-
-If your browser crashes, please contact thomas%stromberg.org!
-
-</body>
-</html>
-
diff --git a/Tools/iExploder/iexploder-1.3.2/htdocs/webserver.rb b/Tools/iExploder/iexploder-1.3.2/htdocs/webserver.rb
deleted file mode 100755
index 5176172..0000000
--- a/Tools/iExploder/iexploder-1.3.2/htdocs/webserver.rb
+++ /dev/null
@@ -1,75 +0,0 @@
-#!/usr/bin/ruby
-# iExploder - Generates bad HTML files to perform QA for web browsers.
-# Developed for the Mozilla Foundation.
-#####################
-#
-# Copyright (c) 2006 Thomas Stromberg <thomas%stromberg.org>
-# 
-# This software is provided 'as-is', without any express or implied warranty.
-# In no event will the authors be held liable for any damages arising from the
-# use of this software.
-# 
-# Permission is granted to anyone to use this software for any purpose,
-# including commercial applications, and to alter it and redistribute it
-# freely, subject to the following restrictions:
-# 
-# 1. The origin of this software must not be misrepresented; you must not
-# claim that you wrote the original software. If you use this software in a
-# product, an acknowledgment in the product documentation would be appreciated
-# but is not required.
-# 
-# 2. Altered source versions must be plainly marked as such, and must not be
-# misrepresented as being the original software.
-# 
-# 3. This notice may not be removed or altered from any source distribution.
-
-require 'webrick'
-require 'iexploder';
-require 'config';
-
-include WEBrick
-### THE INTERACTION ##################################
-$ie_preload = IExploder.new($HTML_MAX_TAGS, $HTML_MAX_ATTRS, $CSS_MAX_PROPS)
-$ie_preload.readTagFiles()
-$ie_preload.url='/iexploder.cgi'
-
-if ARGV[0]
-	port = ARGV[0].to_i
-else
-	port = 2000
-end
-
-puts "* iExploder #{$VERSION} will be available at http://localhost:#{port}"
-puts "* Max Tags: #$HTML_MAX_TAGS Max Attrs: #$HTML_MAX_ATTRS Max Props: #$CSS_MAX_PROPS"
-puts
-
-s = HTTPServer.new( :Port => port )
-class IEServlet < HTTPServlet::AbstractServlet
-    def do_GET(req, res)
-        ie = $ie_preload.dup
-        ie.test_num = req.query['test'].to_i
-        ie.subtest_num = req.query['subtest'].to_i || 0
-        ie.random_mode = req.query['random']
-        ie.lookup_mode = req.query['lookup']
-        ie.stop_num = req.query['stop'].to_i
-        ie.setRandomSeed
-        
-        res['Content-Type'] = 'text/html'  
-        res.body = ie.buildPage()
-    end
-end
-
-class IEForm < HTTPServlet::AbstractServlet
-    def do_GET(req, res)   
-        res['Content-Type'] = 'text/html'  
-        res.body = File.open("index.html").readlines.join("\n")
-    end
-end
-
-
-
-s.mount("/iexploder.cgi", IEServlet)
-s.mount("/", IEForm)
-trap("INT") { s.shutdown }
-
-s.start
diff --git a/Tools/iExploder/iexploder-1.3.2/tools/lasthit.rb b/Tools/iExploder/iexploder-1.3.2/tools/lasthit.rb
deleted file mode 100755
index b569deb..0000000
--- a/Tools/iExploder/iexploder-1.3.2/tools/lasthit.rb
+++ /dev/null
@@ -1,53 +0,0 @@
-#!/usr/bin/ruby
-# lasthit, part of iExploder
-# 
-# Shows statistics about recent agents that have tested with iExploder. 
-# It takes all or part of an apache logfile via stdin, and outputs a list
-# of all the agents who tested within that section, what their last test
-# was, and how many tests they have done.
-
-# The usefulness is finding out where a browser crashed.
-
-
-hostHash = Hash.new
-
-if (ARGV[0])
-	file = File.open(ARGV[0])
-else
-	file = $stdin
-end
- 
-file.readlines.each { |line|
-	if (line =~ /^(.*?) .*iexploder.*?test=(\d+).* HTTP.* \"(.*?)\"$/)
-		host = $1
-		testnum = $2
-		agent = $3
-		if (! hostHash[host])
-			hostHash[host] = Hash.new
-		end
-		if (! hostHash[host][agent])
-			hostHash[host][agent] = Hash.new
-			hostHash[host][agent]['total'] = 0
-		end
-
-		hostHash[host][agent]['last'] = testnum
-		if line =~ /subtest=(\d+)/
-			hostHash[host][agent]['subtest'] = $1
-		else
-			hostHash[host][agent]['subtest'] = ''
-		end
-		hostHash[host][agent]['total'] = hostHash[host][agent]['total'] + 1
-	end
-}
-
-printf("%14.14s | %8.8s | %3.3s | %8.8s | %s\n", 
-	 "IP",    "Test", "SubTest", "Total", "Agent")
-puts "---------------------------------------------------------------------------"
-hostHash.each_key { |host|
-
-	hostHash[host].each_key { |agent|
-		printf("%14.14s | %8.8s | %3.3s | %8.8s | %s\n", 
-			host, hostHash[host][agent]['last'],  hostHash[host][agent]['subtest'], hostHash[host][agent]['total'], agent);
-	}
-}
-
diff --git a/Tools/iExploder/iexploder-1.3.2/tools/osx_last_crash.rb b/Tools/iExploder/iexploder-1.3.2/tools/osx_last_crash.rb
deleted file mode 100755
index 5b62c6d..0000000
--- a/Tools/iExploder/iexploder-1.3.2/tools/osx_last_crash.rb
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/usr/bin/ruby
-# Gives you information about the most recent crash for each application
-# that has crashed within the last 2 days
-
-$LogDir=ENV['HOME'] + '/Library/Logs/CrashReporter'
-$Days=1
-$StackCount=5
-
-files=`find #$LogDir -mtime -#$Days -type f | grep -v synergy`
-files.each { |filename|
-    filename.chop!
-    record = 0
-    date=''
-    stackTrace = []
-
-    File.open(filename).readlines.each { |line|
-        #puts line
-
-        if line =~ /^Date.*(200.*)/
-            date = $1
-        end
-
-        if line =~ /^Thread \d+ Crashed/
-            record = 1
-            # reset the stack trace
-            stackTrace = []
-        end
-
-        if record
-            stackTrace << line
-            record = record + 1
-
-            # stop recording after $StackCount lines
-            if record > ($StackCount + 2)
-                record = nil
-            end
-        end
-    }
-
-    puts File.basename(filename) + " - " + date
-    puts "==================================================="
-    stackTrace.each { |line|
-        puts line
-    }
-    puts ""
-}
-
-
diff --git a/Tools/iExploder/iexploder-1.3.2/tools/showtest.rb b/Tools/iExploder/iexploder-1.3.2/tools/showtest.rb
deleted file mode 100755
index af6b101..0000000
--- a/Tools/iExploder/iexploder-1.3.2/tools/showtest.rb
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/usr/bin/ruby
-# showtest.rb - simple CLI interface to grab a testcase
-#####################
-#
-# Copyright (c) 2006 Thomas Stromberg <thomas%stromberg.org>
-# 
-# This software is provided 'as-is', without any express or implied warranty.
-# In no event will the authors be held liable for any damages arising from the
-# use of this software.
-# 
-# Permission is granted to anyone to use this software for any purpose,
-# including commercial applications, and to alter it and redistribute it
-# freely, subject to the following restrictions:
-# 
-# 1. The origin of this software must not be misrepresented; you must not
-# claim that you wrote the original software. If you use this software in a
-# product, an acknowledgment in the product documentation would be appreciated
-# but is not required.
-# 
-# 2. Altered source versions must be plainly marked as such, and must not be
-# misrepresented as being the original software.
-# 
-# 3. This notice may not be removed or altered from any source distribution.
-
-Dir.chdir('../htdocs')
-require 'iexploder';
-require 'config';
-
-### THE INTERACTION ##################################
-ie = IExploder.new($HTML_MAX_TAGS, $HTML_MAX_ATTRS, $CSS_MAX_PROPS)
-ie.readTagFiles()
-
-if ! ARGV[0]
-  puts "syntax: showtest.rb [test#] [subtest#]"
-  exit
-end
-
-ie.test_num = ARGV[0].to_i
-ie.subtest_num = ARGV[1].to_i || 0
-ie.lookup_mode = 1
-ie.setRandomSeed
-
-puts ie.buildPage()
diff --git a/Tools/iExploder/iexploder-1.7.2/ChangeLog.txt b/Tools/iExploder/iexploder-1.7.2/ChangeLog.txt
deleted file mode 100644
index ef8c31e..0000000
--- a/Tools/iExploder/iexploder-1.7.2/ChangeLog.txt
+++ /dev/null
@@ -1,890 +0,0 @@
-------------------------------------------------------------------------
-r227 | helixblue | 2010-09-20 09:20:36 +0200 (Mon, 20 Sep 2010) | 1 line
-
-update readme
-------------------------------------------------------------------------
-r226 | helixblue | 2010-09-20 09:17:00 +0200 (Mon, 20 Sep 2010) | 1 line
-
-1.7.2
-------------------------------------------------------------------------
-r225 | helixblue | 2010-09-20 08:50:32 +0200 (Mon, 20 Sep 2010) | 1 line
-
-Change style tag generation blacklist lookup to use same format as other tags
-------------------------------------------------------------------------
-r224 | helixblue | 2010-09-19 23:51:56 +0200 (Sun, 19 Sep 2010) | 1 line
-
-Fix whitespace and ruby 1.9 glitches
-------------------------------------------------------------------------
-r223 | helixblue | 2010-09-19 22:45:21 +0200 (Sun, 19 Sep 2010) | 1 line
-
-clean up filters
-------------------------------------------------------------------------
-r222 | helixblue | 2010-09-19 22:08:13 +0200 (Sun, 19 Sep 2010) | 1 line
-
-version bump to 1.7.1
-------------------------------------------------------------------------
-r221 | helixblue | 2010-09-19 22:07:53 +0200 (Sun, 19 Sep 2010) | 1 line
-
-Add progress font 9999 crash
-------------------------------------------------------------------------
-r220 | helixblue | 2010-09-19 21:34:24 +0200 (Sun, 19 Sep 2010) | 1 line
-
-Add Chrome crash for url//%n%n redirect
-------------------------------------------------------------------------
-r219 | helixblue | 2010-09-19 21:34:12 +0200 (Sun, 19 Sep 2010) | 1 line
-
-User the digested user agent
-------------------------------------------------------------------------
-r218 | helixblue | 2010-09-19 21:12:11 +0200 (Sun, 19 Sep 2010) | 1 line
-
-Make it so that the first testing redirect has the same content as the page being tested
-------------------------------------------------------------------------
-r217 | helixblue | 2010-09-19 21:07:44 +0200 (Sun, 19 Sep 2010) | 1 line
-
-Add a second redirection test for better testcase generation
-------------------------------------------------------------------------
-r216 | helixblue | 2010-09-19 21:07:20 +0200 (Sun, 19 Sep 2010) | 1 line
-
-Display lookup_mode in stdout, get user agent from last_page_requested
-------------------------------------------------------------------------
-r215 | helixblue | 2010-09-19 18:50:11 +0200 (Sun, 19 Sep 2010) | 1 line
-
-Fix nextTestNum() so that it works properly with @random_mode
-------------------------------------------------------------------------
-r213 | helixblue | 2010-09-06 12:38:12 +0200 (Mon, 06 Sep 2010) | 1 line
-
-Update docs to point to ../output instead of /tmp
-------------------------------------------------------------------------
-r212 | helixblue | 2010-09-06 11:34:48 +0200 (Mon, 06 Sep 2010) | 3 lines
-
-Add an empty output directory
-
-
-------------------------------------------------------------------------
-r211 | helixblue | 2010-09-06 11:34:30 +0200 (Mon, 06 Sep 2010) | 1 line
-
-change test_dir and log_dir default to ../output
-------------------------------------------------------------------------
-r210 | helixblue | 2010-09-06 11:29:45 +0200 (Mon, 06 Sep 2010) | 1 line
-
-Add some more testcases
-------------------------------------------------------------------------
-r209 | helixblue | 2010-09-06 10:07:45 +0200 (Mon, 06 Sep 2010) | 1 line
-
-Set default watchdog timer to 60s.
-------------------------------------------------------------------------
-r208 | helixblue | 2010-09-06 09:56:48 +0200 (Mon, 06 Sep 2010) | 1 line
-
-Give subtest form more room
-------------------------------------------------------------------------
-r207 | helixblue | 2010-09-06 09:56:40 +0200 (Mon, 06 Sep 2010) | 1 line
-
-Decrease the chance of arbitrary tag closure from 20% to 14%
-------------------------------------------------------------------------
-r206 | helixblue | 2010-09-06 09:49:29 +0200 (Mon, 06 Sep 2010) | 1 line
-
-Fix browser comment
-------------------------------------------------------------------------
-r205 | helixblue | 2010-09-06 09:44:29 +0200 (Mon, 06 Sep 2010) | 1 line
-
-Change Refresh from 0 to 1 when saving testcase
-------------------------------------------------------------------------
-r204 | helixblue | 2010-09-05 11:13:50 +0200 (Sun, 05 Sep 2010) | 1 line
-
-Revisit using THE_END marker, in conjunction w/ test_redirect.
-------------------------------------------------------------------------
-r203 | helixblue | 2010-09-05 11:10:12 +0200 (Sun, 05 Sep 2010) | 1 line
-
-Instead of using THE END, use test_redirect.
-------------------------------------------------------------------------
-r202 | helixblue | 2010-09-05 11:05:03 +0200 (Sun, 05 Sep 2010) | 1 line
-
-Make THE END work the same as surviving a redirect
-------------------------------------------------------------------------
-r201 | helixblue | 2010-09-05 10:51:23 +0200 (Sun, 05 Sep 2010) | 1 line
-
-Mention testcase viewing
-------------------------------------------------------------------------
-r200 | helixblue | 2010-09-05 09:22:26 +0200 (Sun, 05 Sep 2010) | 1 line
-
-Fix comments.
-------------------------------------------------------------------------
-r199 | helixblue | 2010-09-05 09:22:15 +0200 (Sun, 05 Sep 2010) | 1 line
-
-Adjust browser_harness so that references to iexploder.cgi are altered to localhost:3100 instances
-------------------------------------------------------------------------
-r198 | helixblue | 2010-09-03 21:45:27 +0200 (Fri, 03 Sep 2010) | 1 line
-
-If we are at the end, and stalled, save a testcase.
-------------------------------------------------------------------------
-r197 | helixblue | 2010-09-03 18:42:42 +0200 (Fri, 03 Sep 2010) | 1 line
-
-ruby assignments hate me. dup it.
-------------------------------------------------------------------------
-r196 | helixblue | 2010-09-03 18:25:24 +0200 (Fri, 03 Sep 2010) | 1 line
-
-Put comments in for START/END tag, use less attributes per page
-------------------------------------------------------------------------
-r195 | helixblue | 2010-09-03 18:06:53 +0200 (Fri, 03 Sep 2010) | 1 line
-
-Be better about generating sane <style> tags
-------------------------------------------------------------------------
-r194 | helixblue | 2010-09-03 18:06:25 +0200 (Fri, 03 Sep 2010) | 1 line
-
-Make pages a bit smaller
-------------------------------------------------------------------------
-r193 | helixblue | 2010-09-03 17:50:45 +0200 (Fri, 03 Sep 2010) | 1 line
-
-Mark as 1.7-DEV
-------------------------------------------------------------------------
-r192 | helixblue | 2010-09-03 17:49:27 +0200 (Fri, 03 Sep 2010) | 1 line
-
-Add some extra asterisks for fun
-------------------------------------------------------------------------
-r191 | helixblue | 2010-09-03 17:29:30 +0200 (Fri, 03 Sep 2010) | 1 line
-
-Add CSS selector fuzzing
-------------------------------------------------------------------------
-r190 | helixblue | 2010-09-03 16:56:14 +0200 (Fri, 03 Sep 2010) | 1 line
-
-Add css at-rules
-------------------------------------------------------------------------
-r189 | helixblue | 2010-09-03 16:16:35 +0200 (Fri, 03 Sep 2010) | 1 line
-
-Add css selector data, fix html5 mozilla attributes
-------------------------------------------------------------------------
-r188 | helixblue | 2010-09-03 15:07:30 +0200 (Fri, 03 Sep 2010) | 1 line
-
-Bump version to 1.6
-------------------------------------------------------------------------
-r187 | helixblue | 2010-09-03 14:48:52 +0200 (Fri, 03 Sep 2010) | 1 line
-
-Update release tool to use version.rb
-------------------------------------------------------------------------
-r186 | helixblue | 2010-09-03 14:18:06 +0200 (Fri, 03 Sep 2010) | 1 line
-
-Remove pid disappeared warning, fix False usage
-------------------------------------------------------------------------
-r185 | helixblue | 2010-09-03 14:16:14 +0200 (Fri, 03 Sep 2010) | 1 line
-
-Fix log access mode (append)
-------------------------------------------------------------------------
-r184 | helixblue | 2010-09-03 13:27:50 +0200 (Fri, 03 Sep 2010) | 1 line
-
-Update docs for -r
-------------------------------------------------------------------------
-r183 | helixblue | 2010-09-03 13:20:49 +0200 (Fri, 03 Sep 2010) | 1 line
-
-Update options. If we can't figure out the -port option, output an error.
-------------------------------------------------------------------------
-r182 | helixblue | 2010-09-03 13:13:16 +0200 (Fri, 03 Sep 2010) | 1 line
-
-Keep the original browser name in the output doc, do some testcase munging. Don't initialize test_num to 1
-------------------------------------------------------------------------
-r181 | helixblue | 2010-09-03 13:11:49 +0200 (Fri, 03 Sep 2010) | 1 line
-
-New testcases for Chrome and Opera
-------------------------------------------------------------------------
-r180 | helixblue | 2010-09-03 11:10:08 +0200 (Fri, 03 Sep 2010) | 1 line
-
-Reset testcases directory
-------------------------------------------------------------------------
-r179 | helixblue | 2010-09-03 11:05:08 +0200 (Fri, 03 Sep 2010) | 1 line
-
-Ruby 1.9.x fix: trailing colon
-------------------------------------------------------------------------
-r178 | helixblue | 2010-09-03 11:03:05 +0200 (Fri, 03 Sep 2010) | 1 line
-
-Change -r to random_mode, and --rescan to -s/--scan. Remove some extra debug messages
-------------------------------------------------------------------------
-r177 | helixblue | 2010-09-03 10:52:58 +0200 (Fri, 03 Sep 2010) | 1 line
-
-Change find_crash_logs() to use Dir.glob fully
-------------------------------------------------------------------------
-r176 | helixblue | 2010-09-03 08:53:07 +0200 (Fri, 03 Sep 2010) | 1 line
-
-Fix max_age in find_crash_logs
-------------------------------------------------------------------------
-r175 | helixblue | 2010-09-03 08:50:04 +0200 (Fri, 03 Sep 2010) | 1 line
-
-Fix dangling parens
-------------------------------------------------------------------------
-r174 | helixblue | 2010-09-03 08:46:05 +0200 (Fri, 03 Sep 2010) | 1 line
-
-Add client logging, make crash files return list of files
-------------------------------------------------------------------------
-r173 | helixblue | 2010-09-03 08:03:57 +0200 (Fri, 03 Sep 2010) | 1 line
-
-Reach back a little further to get iexploder lines
-------------------------------------------------------------------------
-r172 | helixblue | 2010-09-02 22:06:00 +0200 (Thu, 02 Sep 2010) | 1 line
-
-Extend watchdog from 30s to 45s
-------------------------------------------------------------------------
-r171 | helixblue | 2010-09-02 22:04:47 +0200 (Thu, 02 Sep 2010) | 1 line
-
-divide the sleeping up
-------------------------------------------------------------------------
-r170 | helixblue | 2010-09-02 21:42:28 +0200 (Thu, 02 Sep 2010) | 1 line
-
-More sleepy
-------------------------------------------------------------------------
-r169 | helixblue | 2010-09-02 19:36:00 +0200 (Thu, 02 Sep 2010) | 1 line
-
-Use File.stat for mtime to avoid too many open files
-------------------------------------------------------------------------
-r168 | helixblue | 2010-09-02 18:47:50 +0200 (Thu, 02 Sep 2010) | 1 line
-
-Add better testcase naming
-------------------------------------------------------------------------
-r167 | helixblue | 2010-09-02 18:22:51 +0200 (Thu, 02 Sep 2010) | 1 line
-
-Fix save_testcase
-------------------------------------------------------------------------
-r166 | helixblue | 2010-09-02 18:22:39 +0200 (Thu, 02 Sep 2010) | 1 line
-
-Add more browser_harness docs
-------------------------------------------------------------------------
-r165 | helixblue | 2010-09-02 18:10:20 +0200 (Thu, 02 Sep 2010) | 1 line
-
-Fix posix loading
-------------------------------------------------------------------------
-r164 | helixblue | 2010-09-02 18:06:19 +0200 (Thu, 02 Sep 2010) | 1 line
-
-Add Mac support for the browser_harness
-------------------------------------------------------------------------
-r163 | helixblue | 2010-09-02 12:59:02 +0200 (Thu, 02 Sep 2010) | 1 line
-
-Add version
-------------------------------------------------------------------------
-r162 | helixblue | 2010-09-02 12:14:11 +0200 (Thu, 02 Sep 2010) | 1 line
-
-A fully working browser harness for UNIX. awesome.
-------------------------------------------------------------------------
-r161 | helixblue | 2010-09-01 21:40:02 +0200 (Wed, 01 Sep 2010) | 1 line
-
-Clean up option parsing
-------------------------------------------------------------------------
-r160 | helixblue | 2010-09-01 21:33:22 +0200 (Wed, 01 Sep 2010) | 1 line
-
-Ruby 1.9.x + style fixes
-------------------------------------------------------------------------
-r159 | helixblue | 2010-09-01 21:18:16 +0200 (Wed, 01 Sep 2010) | 1 line
-
-Add hex junk generator, add newlines where spaces used to be, and add some document.write js tests
-------------------------------------------------------------------------
-r158 | helixblue | 2010-09-01 21:16:32 +0200 (Wed, 01 Sep 2010) | 1 line
-
-Add :% value
-------------------------------------------------------------------------
-r157 | helixblue | 2010-09-01 21:15:59 +0200 (Wed, 01 Sep 2010) | 1 line
-
-Add -l option to set a log path
-------------------------------------------------------------------------
-r156 | helixblue | 2010-09-01 16:31:55 +0200 (Wed, 01 Sep 2010) | 1 line
-
-Commit a sample browser harness
-------------------------------------------------------------------------
-r155 | helixblue | 2010-09-01 11:24:30 +0200 (Wed, 01 Sep 2010) | 1 line
-
-Sync to Webkit trunk
-------------------------------------------------------------------------
-r154 | helixblue | 2010-09-01 11:22:16 +0200 (Wed, 01 Sep 2010) | 1 line
-
-Add mozilla tags
-------------------------------------------------------------------------
-r153 | helixblue | 2010-09-01 11:21:56 +0200 (Wed, 01 Sep 2010) | 1 line
-
-Minor fixes, update for mozilla trunk parsing
-------------------------------------------------------------------------
-r150 | helixblue | 2010-03-14 16:10:15 +0100 (Sun, 14 Mar 2010) | 1 line
-
-Update the README
-------------------------------------------------------------------------
-r149 | helixblue | 2010-03-14 15:45:20 +0100 (Sun, 14 Mar 2010) | 1 line
-
-Fix straggler testcase
-------------------------------------------------------------------------
-r148 | helixblue | 2010-03-14 15:30:46 +0100 (Sun, 14 Mar 2010) | 1 line
-
-Add gtkhtml protocols
-------------------------------------------------------------------------
-r147 | helixblue | 2010-03-14 15:30:01 +0100 (Sun, 14 Mar 2010) | 1 line
-
-Add note about asterisk
-------------------------------------------------------------------------
-r146 | helixblue | 2010-03-14 15:29:31 +0100 (Sun, 14 Mar 2010) | 1 line
-
-Comment out chrome video crashes from config.yaml
-------------------------------------------------------------------------
-r145 | helixblue | 2010-03-14 15:28:55 +0100 (Sun, 14 Mar 2010) | 1 line
-
-Output the headers being manipulated
-------------------------------------------------------------------------
-r144 | helixblue | 2010-03-14 15:28:43 +0100 (Sun, 14 Mar 2010) | 1 line
-
-Add Chrome video crashes to config.yaml
-------------------------------------------------------------------------
-r143 | helixblue | 2010-03-14 15:06:33 +0100 (Sun, 14 Mar 2010) | 1 line
-
-Add Chrome hang on textarea letter-spacing
-------------------------------------------------------------------------
-r142 | helixblue | 2010-03-14 14:58:19 +0100 (Sun, 14 Mar 2010) | 1 line
-
-Add LinesAgo column to lasthit
-------------------------------------------------------------------------
-r141 | helixblue | 2010-03-14 14:11:00 +0100 (Sun, 14 Mar 2010) | 1 line
-
-Update lasthit for new subtest data structure
-------------------------------------------------------------------------
-r140 | helixblue | 2010-03-14 14:10:32 +0100 (Sun, 14 Mar 2010) | 1 line
-
-Remove some debug statements
-------------------------------------------------------------------------
-r139 | helixblue | 2010-03-14 14:10:12 +0100 (Sun, 14 Mar 2010) | 1 line
-
-Increase property counts
-------------------------------------------------------------------------
-r138 | helixblue | 2010-03-14 14:09:54 +0100 (Sun, 14 Mar 2010) | 1 line
-
-Add some more chrome crashers
-------------------------------------------------------------------------
-r137 | helixblue | 2010-03-14 13:44:10 +0100 (Sun, 14 Mar 2010) | 1 line
-
-Fix check against subtest_combinations_max, add subtest comment to html output
-------------------------------------------------------------------------
-r136 | helixblue | 2010-03-14 13:43:43 +0100 (Sun, 14 Mar 2010) | 1 line
-
-Remove some debug statements, use the golden ratio to calculate the new width
-------------------------------------------------------------------------
-r135 | helixblue | 2010-03-14 13:43:12 +0100 (Sun, 14 Mar 2010) | 1 line
-
-lower html_tags_per_page to 135 for faster subtest generation
-------------------------------------------------------------------------
-r134 | helixblue | 2010-03-14 12:24:31 +0100 (Sun, 14 Mar 2010) | 1 line
-
-Add an extra width line when we hit 3 offsets
-------------------------------------------------------------------------
-r133 | helixblue | 2010-03-14 12:24:08 +0100 (Sun, 14 Mar 2010) | 1 line
-
-Support an initial_subtest_width
-------------------------------------------------------------------------
-r132 | helixblue | 2010-03-14 10:21:34 +0100 (Sun, 14 Mar 2010) | 1 line
-
-Only add tag_data in subtests if there is data to append
-------------------------------------------------------------------------
-r131 | helixblue | 2010-03-14 10:21:20 +0100 (Sun, 14 Mar 2010) | 1 line
-
-Rename lines_at_time to width, enforce min width of 1
-------------------------------------------------------------------------
-r130 | helixblue | 2010-03-14 10:13:34 +0100 (Sun, 14 Mar 2010) | 5 lines
-
-* Add copyright to scanner, remove comments
-* Make exclusions work better: add check method, make sure that methods that check the property name get the unblacklisted version.
-* Add some initial blacklists
-
-
-------------------------------------------------------------------------
-r129 | helixblue | 2010-03-13 19:21:32 +0100 (Sat, 13 Mar 2010) | 1 line
-
-Oh jesus.. we now have a decent subtest implementation. RIP Bo Skough.
-------------------------------------------------------------------------
-r128 | helixblue | 2010-03-10 08:11:56 +0100 (Wed, 10 Mar 2010) | 2 lines
-
-add interesting firefox 3.6 crasher, still need to isolate testcase
-
-------------------------------------------------------------------------
-r127 | helixblue | 2010-03-10 07:06:16 +0100 (Wed, 10 Mar 2010) | 1 line
-
-Make some doc updates in preparation for 1.5 release
-------------------------------------------------------------------------
-r126 | helixblue | 2010-03-10 07:02:21 +0100 (Wed, 10 Mar 2010) | 1 line
-
-Make lasthit work with webserver.rb
-------------------------------------------------------------------------
-r125 | helixblue | 2010-03-09 19:39:55 +0100 (Tue, 09 Mar 2010) | 1 line
-
-add interesting double-page crash for Chrome
-------------------------------------------------------------------------
-r124 | helixblue | 2010-03-09 16:58:10 +0100 (Tue, 09 Mar 2010) | 1 line
-
-Lower headers_per_page_max, put back missing response.body change in webserver.rb
-------------------------------------------------------------------------
-r123 | helixblue | 2010-03-09 16:47:11 +0100 (Tue, 09 Mar 2010) | 1 line
-
-Make sure things work if @config['exclude'] is defined but empty
-------------------------------------------------------------------------
-r122 | helixblue | 2010-03-09 16:46:50 +0100 (Tue, 09 Mar 2010) | 1 line
-
-Fix buildHeaders bug
-------------------------------------------------------------------------
-r121 | helixblue | 2010-03-09 16:30:59 +0100 (Tue, 09 Mar 2010) | 1 line
-
-Allow iexploder to work if no exclude properties have been set, and fix special case for src tag
-------------------------------------------------------------------------
-r120 | helixblue | 2010-03-09 16:20:48 +0100 (Tue, 09 Mar 2010) | 1 line
-
-Add the ability to exclude certain combinations of tags/properties
-------------------------------------------------------------------------
-r119 | helixblue | 2010-03-09 15:20:37 +0100 (Tue, 09 Mar 2010) | 1 line
-
-Fix bug where we fill subtests with escaped tags
-------------------------------------------------------------------------
-r118 | helixblue | 2010-03-09 15:05:29 +0100 (Tue, 09 Mar 2010) | 1 line
-
-Add firefox hang
-------------------------------------------------------------------------
-r117 | helixblue | 2010-03-09 11:33:06 +0100 (Tue, 09 Mar 2010) | 1 line
-
-More tuning
-------------------------------------------------------------------------
-r116 | helixblue | 2010-03-09 11:29:54 +0100 (Tue, 09 Mar 2010) | 1 line
-
-Move max_garbage_text_size to be tuned by config.yaml
-------------------------------------------------------------------------
-r115 | helixblue | 2010-03-09 11:25:15 +0100 (Tue, 09 Mar 2010) | 1 line
-
-Minor adjustments to the skew mix
-------------------------------------------------------------------------
-r114 | helixblue | 2010-03-09 11:22:23 +0100 (Tue, 09 Mar 2010) | 1 line
-
-Add a list of tags we favor for testing
-------------------------------------------------------------------------
-r113 | helixblue | 2010-03-09 11:11:46 +0100 (Tue, 09 Mar 2010) | 1 line
-
-Make img/src inclusion random, not mandatory. Add raw values to js, fix subtest end lookup
-------------------------------------------------------------------------
-r112 | helixblue | 2010-03-09 10:52:42 +0100 (Tue, 09 Mar 2010) | 1 line
-
-We have a Firefox 3.6 hanger now
-------------------------------------------------------------------------
-r111 | helixblue | 2010-03-09 10:02:35 +0100 (Tue, 09 Mar 2010) | 1 line
-
-Sync the interface changes to the CGI version
-------------------------------------------------------------------------
-r110 | helixblue | 2010-03-08 08:35:12 +0100 (Mon, 08 Mar 2010) | 1 line
-
-Re-arrange testcase directories
-------------------------------------------------------------------------
-r109 | helixblue | 2010-03-08 07:55:27 +0100 (Mon, 08 Mar 2010) | 1 line
-
-Another chrome crasher
-------------------------------------------------------------------------
-r108 | helixblue | 2010-03-08 00:00:41 +0100 (Mon, 08 Mar 2010) | 1 line
-
-More floating point crashes
-------------------------------------------------------------------------
-r107 | helixblue | 2010-03-07 23:46:33 +0100 (Sun, 07 Mar 2010) | 1 line
-
-Mave generateOverflow less static
-------------------------------------------------------------------------
-r106 | helixblue | 2010-03-07 23:45:42 +0100 (Sun, 07 Mar 2010) | 1 line
-
-Tune down some of the excessiveness with overflow triggering. We don't exploit too many of them
-------------------------------------------------------------------------
-r105 | helixblue | 2010-03-07 20:58:35 +0100 (Sun, 07 Mar 2010) | 1 line
-
-Add back the default content-type, remove debug line
-------------------------------------------------------------------------
-r104 | helixblue | 2010-03-07 20:54:12 +0100 (Sun, 07 Mar 2010) | 1 line
-
-Add a dummy favicon.ico link, extend copyright, rename req/res to request/response, fix bug where we reset the http headers before returning
-------------------------------------------------------------------------
-r103 | helixblue | 2010-03-07 18:27:04 +0100 (Sun, 07 Mar 2010) | 1 line
-
-Add video height crasher for Chrome
-------------------------------------------------------------------------
-r102 | helixblue | 2010-03-07 18:26:10 +0100 (Sun, 07 Mar 2010) | 1 line
-
-End garbage text with a newline
-------------------------------------------------------------------------
-r101 | helixblue | 2010-03-07 18:24:18 +0100 (Sun, 07 Mar 2010) | 1 line
-
-Fix subtest generation by making sure all calls to random are accounted for, even when subtesting
-------------------------------------------------------------------------
-r100 | helixblue | 2010-03-07 16:30:09 +0100 (Sun, 07 Mar 2010) | 1 line
-
-Add video width crasher for chrome
-------------------------------------------------------------------------
-r99 | helixblue | 2010-03-07 14:08:06 +0100 (Sun, 07 Mar 2010) | 1 line
-
-1.5-BETA2 - add a Chrome crasher
-------------------------------------------------------------------------
-r97 | helixblue | 2010-03-07 12:54:03 +0100 (Sun, 07 Mar 2010) | 1 line
-
-Add bug.png mapping, fix HTML compliance
-------------------------------------------------------------------------
-r96 | helixblue | 2010-03-07 12:48:11 +0100 (Sun, 07 Mar 2010) | 1 line
-
-Give the form a facelift
-------------------------------------------------------------------------
-r95 | helixblue | 2010-03-07 11:39:55 +0100 (Sun, 07 Mar 2010) | 1 line
-
-Update the docs
-------------------------------------------------------------------------
-r94 | helixblue | 2010-03-07 11:36:52 +0100 (Sun, 07 Mar 2010) | 1 line
-
-Add tool to make source code releases
-------------------------------------------------------------------------
-r93 | helixblue | 2010-03-07 11:33:13 +0100 (Sun, 07 Mar 2010) | 1 line
-
-Do more munging
-------------------------------------------------------------------------
-r92 | helixblue | 2010-03-07 11:26:23 +0100 (Sun, 07 Mar 2010) | 1 line
-
-Change default port to 3100 to avoid conflicts, fix one more upto, and fix mime type parsing
-------------------------------------------------------------------------
-r91 | helixblue | 2010-03-07 11:20:10 +0100 (Sun, 07 Mar 2010) | 1 line
-
-Fix upto syntax
-------------------------------------------------------------------------
-r90 | helixblue | 2010-03-07 11:13:24 +0100 (Sun, 07 Mar 2010) | 1 line
-
-Fix ie.random_mode nil comparison
-------------------------------------------------------------------------
-r89 | helixblue | 2010-03-07 11:08:27 +0100 (Sun, 07 Mar 2010) | 1 line
-
-Rename htdocs to src
-------------------------------------------------------------------------
-r88 | helixblue | 2010-03-07 11:07:36 +0100 (Sun, 07 Mar 2010) | 1 line
-
-Change the way we log to console using webserver.rb
-------------------------------------------------------------------------
-r87 | helixblue | 2010-03-07 09:51:11 +0100 (Sun, 07 Mar 2010) | 1 line
-
-generateGarbageText should also love generateGarbageValue
-------------------------------------------------------------------------
-r86 | helixblue | 2010-03-07 09:40:00 +0100 (Sun, 07 Mar 2010) | 1 line
-
-Activate media fuzzing - oh yeah\!
-------------------------------------------------------------------------
-r85 | helixblue | 2010-03-07 07:34:48 +0100 (Sun, 07 Mar 2010) | 1 line
-
-Add mime-types content
-------------------------------------------------------------------------
-r84 | helixblue | 2010-03-06 22:23:28 +0100 (Sat, 06 Mar 2010) | 1 line
-
-Add some html files for Chrome
-------------------------------------------------------------------------
-r83 | helixblue | 2010-03-06 22:12:29 +0100 (Sat, 06 Mar 2010) | 1 line
-
-Add some url related opera bugs
-------------------------------------------------------------------------
-r82 | helixblue | 2010-03-06 12:34:45 +0100 (Sat, 06 Mar 2010) | 1 line
-
-Add an opera crasher
-------------------------------------------------------------------------
-r81 | helixblue | 2010-03-06 11:58:31 +0100 (Sat, 06 Mar 2010) | 1 line
-
-Better testing values, including a custom handler for html on attributes
-------------------------------------------------------------------------
-r80 | helixblue | 2010-03-06 11:17:48 +0100 (Sat, 06 Mar 2010) | 1 line
-
-iexploder.rb can now load tests.. add javascript testing to each page
-------------------------------------------------------------------------
-r79 | helixblue | 2010-03-06 08:04:14 +0100 (Sat, 06 Mar 2010) | 1 line
-
-Add new protocol/header data
-------------------------------------------------------------------------
-r78 | helixblue | 2010-03-06 08:03:58 +0100 (Sat, 06 Mar 2010) | 1 line
-
-Return accidentally deleted properties
-------------------------------------------------------------------------
-r77 | helixblue | 2010-03-06 08:02:50 +0100 (Sat, 06 Mar 2010) | 1 line
-
-Split out protocol and header properties
-------------------------------------------------------------------------
-r76 | helixblue | 2010-03-06 05:34:31 +0100 (Sat, 06 Mar 2010) | 1 line
-
-We have a Chrome 5.0 crasher
-------------------------------------------------------------------------
-r75 | helixblue | 2010-03-05 14:46:21 +0100 (Fri, 05 Mar 2010) | 1 line
-
-More tweaking: increase attributes_per_html_tag and properties_per_style
-------------------------------------------------------------------------
-r74 | helixblue | 2010-03-05 09:57:06 +0100 (Fri, 05 Mar 2010) | 1 line
-
-Move around our loading text
-------------------------------------------------------------------------
-r73 | helixblue | 2010-03-05 09:54:22 +0100 (Fri, 05 Mar 2010) | 1 line
-
-Fix --port passing
-------------------------------------------------------------------------
-r71 | helixblue | 2010-03-05 09:49:04 +0100 (Fri, 05 Mar 2010) | 1 line
-
-1.4-BETA1
-------------------------------------------------------------------------
-r70 | helixblue | 2010-03-05 09:47:46 +0100 (Fri, 05 Mar 2010) | 1 line
-
-Update README
-------------------------------------------------------------------------
-r69 | helixblue | 2010-03-05 09:44:29 +0100 (Fri, 05 Mar 2010) | 1 line
-
-Fix path interpolation
-------------------------------------------------------------------------
-r68 | helixblue | 2010-03-05 09:30:28 +0100 (Fri, 05 Mar 2010) | 1 line
-
-Add config.yaml file
-------------------------------------------------------------------------
-r67 | helixblue | 2010-03-05 09:30:15 +0100 (Fri, 05 Mar 2010) | 1 line
-
-Do some refactoring, moving configuration into a YAML file
-------------------------------------------------------------------------
-r66 | helixblue | 2010-03-05 07:55:26 +0100 (Fri, 05 Mar 2010) | 1 line
-
-Narrow down some chrome testcases
-------------------------------------------------------------------------
-r65 | helixblue | 2010-03-04 22:42:20 +0100 (Thu, 04 Mar 2010) | 1 line
-
-Narrow down chrome crasher
-------------------------------------------------------------------------
-r64 | helixblue | 2010-03-04 20:25:59 +0100 (Thu, 04 Mar 2010) | 1 line
-
-Fix subtesting
-------------------------------------------------------------------------
-r63 | helixblue | 2010-03-04 20:25:43 +0100 (Thu, 04 Mar 2010) | 1 line
-
-firefox sample
-------------------------------------------------------------------------
-r62 | helixblue | 2010-03-04 18:45:40 +0100 (Thu, 04 Mar 2010) | 1 line
-
-Make it a better URL
-------------------------------------------------------------------------
-r61 | helixblue | 2010-03-04 18:44:59 +0100 (Thu, 04 Mar 2010) | 1 line
-
-Change 127.0.0.1 to a full qualified URL
-------------------------------------------------------------------------
-r60 | helixblue | 2010-03-04 18:15:19 +0100 (Thu, 04 Mar 2010) | 1 line
-
-Make it less likely that there is a missing = after an HTML attribute name
-------------------------------------------------------------------------
-r59 | helixblue | 2010-03-04 17:59:13 +0100 (Thu, 04 Mar 2010) | 1 line
-
-Do some retuning and re-organization for todays generation of bugs. This may cause less crashes, so we need to keep an eye out on the results
-------------------------------------------------------------------------
-r58 | helixblue | 2010-03-04 17:58:32 +0100 (Thu, 04 Mar 2010) | 1 line
-
-update testcases
-------------------------------------------------------------------------
-r57 | helixblue | 2010-03-04 13:46:21 +0100 (Thu, 04 Mar 2010) | 1 line
-
-include the user-agent in the URL as a b variable
-------------------------------------------------------------------------
-r56 | helixblue | 2010-03-04 12:25:26 +0100 (Thu, 04 Mar 2010) | 1 line
-
-HTML_MAX_TAGS 150
-------------------------------------------------------------------------
-r55 | helixblue | 2010-03-04 10:15:48 +0100 (Thu, 04 Mar 2010) | 1 line
-
-Add some chrome test cases
-------------------------------------------------------------------------
-r54 | helixblue | 2010-03-04 09:48:57 +0100 (Thu, 04 Mar 2010) | 1 line
-
-Remove extraneous output
-------------------------------------------------------------------------
-r53 | helixblue | 2010-03-04 09:47:13 +0100 (Thu, 04 Mar 2010) | 1 line
-
-MAX_TAGS = 100
-------------------------------------------------------------------------
-r52 | helixblue | 2010-03-04 09:46:54 +0100 (Thu, 04 Mar 2010) | 1 line
-
-Add html-values
-------------------------------------------------------------------------
-r51 | helixblue | 2010-03-04 09:45:56 +0100 (Thu, 04 Mar 2010) | 1 line
-
-Complete splitting of properties, values, and tags
-------------------------------------------------------------------------
-r50 | helixblue | 2010-03-04 09:25:36 +0100 (Thu, 04 Mar 2010) | 1 line
-
-Start auto-generating html-values as well
-------------------------------------------------------------------------
-r49 | helixblue | 2010-03-04 09:24:46 +0100 (Thu, 04 Mar 2010) | 1 line
-
-Increase MAX_TAGS to 125
-------------------------------------------------------------------------
-r48 | helixblue | 2010-03-03 23:37:11 +0100 (Wed, 03 Mar 2010) | 1 line
-
-make webserver.rb executable
-------------------------------------------------------------------------
-r47 | helixblue | 2010-03-03 23:35:55 +0100 (Wed, 03 Mar 2010) | 1 line
-
-Add support for multiple css attributes in one style tag
-------------------------------------------------------------------------
-r46 | helixblue | 2010-03-03 23:27:10 +0100 (Wed, 03 Mar 2010) | 1 line
-
-Move to tag directories, add tool to extract tags from common open-source browsers
-------------------------------------------------------------------------
-r45 | helixblue | 2010-03-03 20:44:19 +0100 (Wed, 03 Mar 2010) | 3 lines
-
-Move code from /svn/iexploder to /svn/trunk
-
-
-------------------------------------------------------------------------
-r44 | helixblue | 2010-03-03 10:05:40 +0100 (Wed, 03 Mar 2010) | 1 line
-
-Re-license as Apache 2.0
-------------------------------------------------------------------------
-r42 | thomas | 2006-05-31 02:43:02 +0200 (Wed, 31 May 2006) | 1 line
-
-config->ieconfig
-------------------------------------------------------------------------
-r41 | thomas | 2006-05-22 23:21:15 +0200 (Mon, 22 May 2006) | 1 line
-
-Remove version
-------------------------------------------------------------------------
-r40 | thomas | 2006-04-25 21:43:38 +0200 (Tue, 25 Apr 2006) | 1 line
-
-Rename config.rb to ieconfig.rb to avoid conflict with ruby-config
-------------------------------------------------------------------------
-r39 | thomas | 2006-04-21 15:55:51 +0200 (Fri, 21 Apr 2006) | 1 line
-
-1.3.2.. minor adjustment to title and where  gets set
-------------------------------------------------------------------------
-r38 | thomas | 2006-04-19 23:14:26 +0200 (Wed, 19 Apr 2006) | 1 line
-
-Add h4+pre+cite+nolayer+code crash for Safari 2.0.3
-------------------------------------------------------------------------
-r37 | thomas | 2006-04-19 23:01:48 +0200 (Wed, 19 Apr 2006) | 1 line
-
-showtest.rb: easily download a testcase
-------------------------------------------------------------------------
-r36 | thomas | 2006-04-19 22:07:13 +0200 (Wed, 19 Apr 2006) | 1 line
-
-Remove stopping debug message
-------------------------------------------------------------------------
-r35 | thomas | 2006-04-19 22:02:48 +0200 (Wed, 19 Apr 2006) | 1 line
-
-New subtest algorithm: double the tag count each iteration
-------------------------------------------------------------------------
-r34 | thomas | 2006-04-19 21:05:30 +0200 (Wed, 19 Apr 2006) | 1 line
-
-remove IE dupes: text-overflow and word-wrap
-------------------------------------------------------------------------
-r33 | thomas | 2006-04-19 18:48:07 +0200 (Wed, 19 Apr 2006) | 1 line
-
-Add some benchmark/performance info.. set MAX_TAGS default to 96
-------------------------------------------------------------------------
-r32 | thomas | 2006-04-19 16:22:33 +0200 (Wed, 19 Apr 2006) | 1 line
-
-Add stop parameter, fix port assignment issue, fix indentation
-------------------------------------------------------------------------
-r31 | thomas | 2006-04-19 16:22:06 +0200 (Wed, 19 Apr 2006) | 1 line
-
-1.3.0
-------------------------------------------------------------------------
-r30 | thomas | 2006-04-19 04:46:35 +0200 (Wed, 19 Apr 2006) | 1 line
-
-applet+param Hashmap crash in Safari
-------------------------------------------------------------------------
-r29 | thomas | 2006-04-19 04:07:45 +0200 (Wed, 19 Apr 2006) | 1 line
-
-1.3.0
-------------------------------------------------------------------------
-r28 | thomas | 2006-04-19 04:05:47 +0200 (Wed, 19 Apr 2006) | 1 line
-
-commit osx_last_crash minutes->days change, document that you can pass a new port number to the webserver.rb program
-------------------------------------------------------------------------
-r27 | thomas | 2006-04-19 04:02:16 +0200 (Wed, 19 Apr 2006) | 1 line
-
-Add more Safari crashes to the testcases list
-------------------------------------------------------------------------
-r26 | thomas | 2006-04-19 01:05:46 +0200 (Wed, 19 Apr 2006) | 1 line
-
-Greatly improve subtests. Not only do we iterate around each tag, but we steadily increase the amount of tags we input as well
-------------------------------------------------------------------------
-r25 | thomas | 2006-04-18 23:04:17 +0200 (Tue, 18 Apr 2006) | 1 line
-
-1.3b1.. also, raise max tags to 48 now that we have fixed subtest bugs
-------------------------------------------------------------------------
-r24 | thomas | 2006-04-18 22:59:20 +0200 (Tue, 18 Apr 2006) | 1 line
-
-New Webrick based option for standalone hosting
-------------------------------------------------------------------------
-r23 | thomas | 2006-04-18 22:18:35 +0200 (Tue, 18 Apr 2006) | 1 line
-
-Split iexploder.cgi into iexploder.rb and config.rb
-------------------------------------------------------------------------
-r22 | thomas | 2006-04-18 19:36:25 +0200 (Tue, 18 Apr 2006) | 1 line
-
-Add items from WebKit/WebCore/css/CSSValueKeywords.in
-------------------------------------------------------------------------
-r21 | thomas | 2006-04-18 19:32:45 +0200 (Tue, 18 Apr 2006) | 1 line
-
-Add odd new crash from Opera 8.5.4 for Mac
-------------------------------------------------------------------------
-r20 | thomas | 2006-04-18 19:10:15 +0200 (Tue, 18 Apr 2006) | 1 line
-
-Add new Safari test case
-------------------------------------------------------------------------
-r19 | thomas | 2006-04-18 18:25:39 +0200 (Tue, 18 Apr 2006) | 1 line
-
-iExploder 1.3: sync with modern rendering kits
-------------------------------------------------------------------------
-r18 | thomas | 2006-04-18 18:25:18 +0200 (Tue, 18 Apr 2006) | 1 line
-
-New testcases
-------------------------------------------------------------------------
-r17 | thomas | 2006-04-18 18:23:48 +0200 (Tue, 18 Apr 2006) | 1 line
-
-Reshuffle testcases
-------------------------------------------------------------------------
-r16 | thomas | 2005-11-04 04:01:43 +0100 (Fri, 04 Nov 2005) | 1 line
-
-add some test cases
-------------------------------------------------------------------------
-r15 | thomas | 2005-11-04 04:01:19 +0100 (Fri, 04 Nov 2005) | 1 line
-
-Add some cute tabs
-------------------------------------------------------------------------
-r14 | thomas | 2005-10-21 21:34:38 +0200 (Fri, 21 Oct 2005) | 1 line
-
-Crash is not OSX specific
-------------------------------------------------------------------------
-r13 | thomas | 2005-10-21 20:59:41 +0200 (Fri, 21 Oct 2005) | 1 line
-
-Mention the fact that testcases may not be portable across installations
-------------------------------------------------------------------------
-r12 | thomas | 2005-10-21 20:45:48 +0200 (Fri, 21 Oct 2005) | 1 line
-
-Fix lookup html code
-------------------------------------------------------------------------
-r11 | thomas | 2005-10-21 20:22:10 +0200 (Fri, 21 Oct 2005) | 1 line
-
-QuickDraw crash for Mac OS X
-------------------------------------------------------------------------
-r10 | thomas | 2005-10-21 20:14:34 +0200 (Fri, 21 Oct 2005) | 1 line
-
-New crash
-------------------------------------------------------------------------
-r9 | thomas | 2005-10-21 20:06:45 +0200 (Fri, 21 Oct 2005) | 1 line
-
-IE DoS
-------------------------------------------------------------------------
-r8 | thomas | 2005-10-21 19:24:02 +0200 (Fri, 21 Oct 2005) | 1 line
-
-1.2 Update, mostly documentation and test cases
-------------------------------------------------------------------------
-r7 | thomas | 2005-10-21 17:41:39 +0200 (Fri, 21 Oct 2005) | 1 line
-
-back to days, filter out synergy
-------------------------------------------------------------------------
-r6 | thomas | 2005-10-21 17:25:28 +0200 (Fri, 21 Oct 2005) | 1 line
-
-1.2: We now use javascript reloads after 1 second in case the meta breaks (IE)
-------------------------------------------------------------------------
-r5 | thomas | 2005-10-21 14:51:07 +0200 (Fri, 21 Oct 2005) | 1 line
-
-1.1: Fix up our subtest model
-------------------------------------------------------------------------
-r4 | thomas | 2005-10-21 03:55:59 +0200 (Fri, 21 Oct 2005) | 1 line
-
-Support for subtests, and compatibility with mod_ruby
-------------------------------------------------------------------------
-r3 | thomas | 2005-10-21 02:48:59 +0200 (Fri, 21 Oct 2005) | 1 line
-
-update to v1.0
-------------------------------------------------------------------------
-r1 | tstrombe | 2005-02-28 14:13:25 +0100 (Mon, 28 Feb 2005) | 1 line
-
-iexploder software
-------------------------------------------------------------------------
diff --git a/Tools/iExploder/iexploder-1.7.2/LICENSE.txt b/Tools/iExploder/iexploder-1.7.2/LICENSE.txt
deleted file mode 100644
index d645695..0000000
--- a/Tools/iExploder/iexploder-1.7.2/LICENSE.txt
+++ /dev/null
@@ -1,202 +0,0 @@
-
-                                 Apache License
-                           Version 2.0, January 2004
-                        http://www.apache.org/licenses/
-
-   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
-   1. Definitions.
-
-      "License" shall mean the terms and conditions for use, reproduction,
-      and distribution as defined by Sections 1 through 9 of this document.
-
-      "Licensor" shall mean the copyright owner or entity authorized by
-      the copyright owner that is granting the License.
-
-      "Legal Entity" shall mean the union of the acting entity and all
-      other entities that control, are controlled by, or are under common
-      control with that entity. For the purposes of this definition,
-      "control" means (i) the power, direct or indirect, to cause the
-      direction or management of such entity, whether by contract or
-      otherwise, or (ii) ownership of fifty percent (50%) or more of the
-      outstanding shares, or (iii) beneficial ownership of such entity.
-
-      "You" (or "Your") shall mean an individual or Legal Entity
-      exercising permissions granted by this License.
-
-      "Source" form shall mean the preferred form for making modifications,
-      including but not limited to software source code, documentation
-      source, and configuration files.
-
-      "Object" form shall mean any form resulting from mechanical
-      transformation or translation of a Source form, including but
-      not limited to compiled object code, generated documentation,
-      and conversions to other media types.
-
-      "Work" shall mean the work of authorship, whether in Source or
-      Object form, made available under the License, as indicated by a
-      copyright notice that is included in or attached to the work
-      (an example is provided in the Appendix below).
-
-      "Derivative Works" shall mean any work, whether in Source or Object
-      form, that is based on (or derived from) the Work and for which the
-      editorial revisions, annotations, elaborations, or other modifications
-      represent, as a whole, an original work of authorship. For the purposes
-      of this License, Derivative Works shall not include works that remain
-      separable from, or merely link (or bind by name) to the interfaces of,
-      the Work and Derivative Works thereof.
-
-      "Contribution" shall mean any work of authorship, including
-      the original version of the Work and any modifications or additions
-      to that Work or Derivative Works thereof, that is intentionally
-      submitted to Licensor for inclusion in the Work by the copyright owner
-      or by an individual or Legal Entity authorized to submit on behalf of
-      the copyright owner. For the purposes of this definition, "submitted"
-      means any form of electronic, verbal, or written communication sent
-      to the Licensor or its representatives, including but not limited to
-      communication on electronic mailing lists, source code control systems,
-      and issue tracking systems that are managed by, or on behalf of, the
-      Licensor for the purpose of discussing and improving the Work, but
-      excluding communication that is conspicuously marked or otherwise
-      designated in writing by the copyright owner as "Not a Contribution."
-
-      "Contributor" shall mean Licensor and any individual or Legal Entity
-      on behalf of whom a Contribution has been received by Licensor and
-      subsequently incorporated within the Work.
-
-   2. Grant of Copyright License. Subject to the terms and conditions of
-      this License, each Contributor hereby grants to You a perpetual,
-      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
-      copyright license to reproduce, prepare Derivative Works of,
-      publicly display, publicly perform, sublicense, and distribute the
-      Work and such Derivative Works in Source or Object form.
-
-   3. Grant of Patent License. Subject to the terms and conditions of
-      this License, each Contributor hereby grants to You a perpetual,
-      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
-      (except as stated in this section) patent license to make, have made,
-      use, offer to sell, sell, import, and otherwise transfer the Work,
-      where such license applies only to those patent claims licensable
-      by such Contributor that are necessarily infringed by their
-      Contribution(s) alone or by combination of their Contribution(s)
-      with the Work to which such Contribution(s) was submitted. If You
-      institute patent litigation against any entity (including a
-      cross-claim or counterclaim in a lawsuit) alleging that the Work
-      or a Contribution incorporated within the Work constitutes direct
-      or contributory patent infringement, then any patent licenses
-      granted to You under this License for that Work shall terminate
-      as of the date such litigation is filed.
-
-   4. Redistribution. You may reproduce and distribute copies of the
-      Work or Derivative Works thereof in any medium, with or without
-      modifications, and in Source or Object form, provided that You
-      meet the following conditions:
-
-      (a) You must give any other recipients of the Work or
-          Derivative Works a copy of this License; and
-
-      (b) You must cause any modified files to carry prominent notices
-          stating that You changed the files; and
-
-      (c) You must retain, in the Source form of any Derivative Works
-          that You distribute, all copyright, patent, trademark, and
-          attribution notices from the Source form of the Work,
-          excluding those notices that do not pertain to any part of
-          the Derivative Works; and
-
-      (d) If the Work includes a "NOTICE" text file as part of its
-          distribution, then any Derivative Works that You distribute must
-          include a readable copy of the attribution notices contained
-          within such NOTICE file, excluding those notices that do not
-          pertain to any part of the Derivative Works, in at least one
-          of the following places: within a NOTICE text file distributed
-          as part of the Derivative Works; within the Source form or
-          documentation, if provided along with the Derivative Works; or,
-          within a display generated by the Derivative Works, if and
-          wherever such third-party notices normally appear. The contents
-          of the NOTICE file are for informational purposes only and
-          do not modify the License. You may add Your own attribution
-          notices within Derivative Works that You distribute, alongside
-          or as an addendum to the NOTICE text from the Work, provided
-          that such additional attribution notices cannot be construed
-          as modifying the License.
-
-      You may add Your own copyright statement to Your modifications and
-      may provide additional or different license terms and conditions
-      for use, reproduction, or distribution of Your modifications, or
-      for any such Derivative Works as a whole, provided Your use,
-      reproduction, and distribution of the Work otherwise complies with
-      the conditions stated in this License.
-
-   5. Submission of Contributions. Unless You explicitly state otherwise,
-      any Contribution intentionally submitted for inclusion in the Work
-      by You to the Licensor shall be under the terms and conditions of
-      this License, without any additional terms or conditions.
-      Notwithstanding the above, nothing herein shall supersede or modify
-      the terms of any separate license agreement you may have executed
-      with Licensor regarding such Contributions.
-
-   6. Trademarks. This License does not grant permission to use the trade
-      names, trademarks, service marks, or product names of the Licensor,
-      except as required for reasonable and customary use in describing the
-      origin of the Work and reproducing the content of the NOTICE file.
-
-   7. Disclaimer of Warranty. Unless required by applicable law or
-      agreed to in writing, Licensor provides the Work (and each
-      Contributor provides its Contributions) on an "AS IS" BASIS,
-      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
-      implied, including, without limitation, any warranties or conditions
-      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
-      PARTICULAR PURPOSE. You are solely responsible for determining the
-      appropriateness of using or redistributing the Work and assume any
-      risks associated with Your exercise of permissions under this License.
-
-   8. Limitation of Liability. In no event and under no legal theory,
-      whether in tort (including negligence), contract, or otherwise,
-      unless required by applicable law (such as deliberate and grossly
-      negligent acts) or agreed to in writing, shall any Contributor be
-      liable to You for damages, including any direct, indirect, special,
-      incidental, or consequential damages of any character arising as a
-      result of this License or out of the use or inability to use the
-      Work (including but not limited to damages for loss of goodwill,
-      work stoppage, computer failure or malfunction, or any and all
-      other commercial damages or losses), even if such Contributor
-      has been advised of the possibility of such damages.
-
-   9. Accepting Warranty or Additional Liability. While redistributing
-      the Work or Derivative Works thereof, You may choose to offer,
-      and charge a fee for, acceptance of support, warranty, indemnity,
-      or other liability obligations and/or rights consistent with this
-      License. However, in accepting such obligations, You may act only
-      on Your own behalf and on Your sole responsibility, not on behalf
-      of any other Contributor, and only if You agree to indemnify,
-      defend, and hold each Contributor harmless for any liability
-      incurred by, or claims asserted against, such Contributor by reason
-      of your accepting any such warranty or additional liability.
-
-   END OF TERMS AND CONDITIONS
-
-   APPENDIX: How to apply the Apache License to your work.
-
-      To apply the Apache License to your work, attach the following
-      boilerplate notice, with the fields enclosed by brackets "[]"
-      replaced with your own identifying information. (Don't include
-      the brackets!)  The text should be enclosed in the appropriate
-      comment syntax for the file format. We also recommend that a
-      file or class name and description of purpose be included on the
-      same "printed page" as the copyright notice for easier
-      identification within third-party archives.
-
-   Copyright [yyyy] [name of copyright owner]
-
-   Licensed under the Apache License, Version 2.0 (the "License");
-   you may not use this file except in compliance with the License.
-   You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing, software
-   distributed under the License is distributed on an "AS IS" BASIS,
-   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-   See the License for the specific language governing permissions and
-   limitations under the License.
diff --git a/Tools/iExploder/iexploder-1.7.2/README.txt b/Tools/iExploder/iexploder-1.7.2/README.txt
deleted file mode 100644
index 1f5b77a..0000000
--- a/Tools/iExploder/iexploder-1.7.2/README.txt
+++ /dev/null
@@ -1,174 +0,0 @@
-Welcome to iExploder. a highly inefficient, but fairly effective web
-browser tester. The code still has a lot of work to be done, but it's
-definitely usable. Here are some notable features:
-
-* Tests all HTML tags and CSS attributes, as parsed from various
-  open-source browsers.
-* HTTP Header testing
-* Basic Media format fuzzing (jpeg, png, snd, wav, etc.)
-* Numeric, and String overflow and formatting tests
-* Sequential and Randomized Test Case Generation
-* Test Case Lookups
-* Subtest generation
-* Test harness mode that controls your browser process and testcase
-  generation.
-
-Requirements:
--------------
-Make sure you have Ruby installed (comes with Mac OS X, most Linux
-distributions). See http://www.ruby-lang.org/ if you do not.
-
-
-Harness mode (Mac OS X, Linux, other UNIX based operating systems)
--------------------------------------------------------------------
-In this mode, iExploder controls the stopping and starting of your
-web browser, reproducing crashes, and writing test cases. This is
-the recommended mode of operation for most cases.
-
-
-Usage: browser_harness.rb [options] -- <browser path> <browser options>
-    -t, --test NUM                   Test to start at
-    -p, --port NUM                   Listen on TCP port NUM (random)
-    -c, --config PATH                Use PATH for configuration file
-    -d, --testdir PATH               Use PATH to save testcases (/tmp)
-    -l, --logdir PATH                Use PATH to save logs (/tmp)
-    -w, --watchdog NUM               How many seconds to wait for pages to load (45s)
-    -r, --random                     Generate test numbers pseudo-randomly
-    -s, --scan NUM                   How often to check for new log data (5s)
-    -h, --help                       Display this screen
-
-Here is an example use with Chrome starting at test number 1000:
-
-% ./browser_harness.rb -t 1000 -- /usr/local/chrome-linux/chrome --incognito
-
-For proper use, the harness mode must *ALWAYS* be used with the browser
-configured to not restore sessions after a restart. Here are some example
-command lines to use:
-
-  chrome --incognito
-  opera --nosession -newprivatetab
-  firefox -private
-
-On Mac OS X you may call the binary directly, or use the .app directory. The latter
-is required for Safari.app, but does not allow arguments to be passed. Here is an
-example:
-
-% ./browser_harness.rb /Applications/Safari.app
-
-By default, all testcases and logs will be written to ../output
-
-
-
-Viewing testcases:
-------------------
-Many test-cases make use of references to external objects (ogg, jpg, etc.)
-where we are fuzzing the HTTP header data. When the browser harness saves a
-testcase in HTML form, it rewrites all references to these external objects
-to refer to http://127.0.0.1:3100/
-
-To properly view these saved .html testcases, please run the built-in
-webserver in the background. 
-
-% ruby webserver.rb
-
-
-Standalone Webserver mode:
---------------------------
-If you do not already have a webserver setup, you can use the server
-built into iexploder. Simply go into the src/ directory and type:
-
-% ruby webserver.rb
-
-A webserver will then start on port 3100 with the iexploder form. You can
-also pass a -p or --port option to select a different location:
-
-% ruby webserver.rb -p 2001
-
-All requests will be logged to the path specified in 'access_log_path'
-parameter in config.yaml.
-
-
-
-Third-party webserver mode:
----------------------------
-Copy the contents of the src/ folder to any directory served
-by your webserver. Make sure that directory can execute CGI scripts.
-Performance is likely to be very slow unless you use something that
-keeps the interpreter alive like mod_ruby.
-
-
-FAQ:
-----
-1) Are the tests always the same?
-
-  The test cases should always be the same on a single installation, but not
-necessarily on different installations of iExploder. Random generator seeds
-may differ between operating systems and platforms. If you alter config.yaml,
-it is likely to change the test cases as well.
-
-
-2) I found a crash - how do I stop testing for it?
-
-See the 'exclude' section of config.yaml. It allows you to blacklist certain
-tag combinations that are known to result in a crash condition.
-
-
-3) How do I look up the last successful test for a client?
-
-Look at your access log. There is a handy tool to parse access logs and show
-the most recent test for each host and user-agent combo. Try:
-
-tools/lasthit.rb /path/to/access_log
-
-
-4) How do subtests work?
-
-Subtests are how iexploder attempts to isolate the crashing line of code for
-a particular HTML document. It's a multi-pass algorithm, which delivers
-nasty tags to your browser in the following order:
-
-* 1 combination, single line
-* 2 combinations, 3 lines per combination
-* 3 combinations, 5 lines per combination
-* 4 combinations...
-* 5 combinations...
-* Your original document (in case we haven't crashed by now)
-
-
-5) How come I can't seem to repeat the crash?
-
-  Many browser crashes are race conditions that are not easy to repeat. Some
-crashes only happen when going from test 4 -> test 5 -> test 6. If you can't
-repeat the crash through subtests or a lookup of the failing test, try going
-back a few tests.
-
-That said, some crashes are due to race conditions that are very difficult
-to replicate.
-
-
-6) Why did you write this?
-
-  I wanted to make sure that FireFox had as many bugs fixed in it as possible
-before the 1.0 release. After 1.0 came out, I kept improving it.
-
-
-7) Why does Internet Explorer run the tests so slowly?
-
-  <META> refresh tags are very fragile in Internet Explorer, and can be easily
-be rendered useless by other tags on the page. If this happens, a javascript
-refresh will execute after a 1 second delay.
-
-
-8) How do I change the number of tags iExploder tests per page?
-
-See config.yaml.
-
-
-9) What other performance enhancements can I make?
-
-* Use Private Browsing or Incognito mode in your browser
-* Before using iExploder, clear your browser history
-* Minimize your browser while iExploder is running
-* If you are using browser_harness, try adjusting the -w and -s options.
-
-
diff --git a/Tools/iExploder/iexploder-1.7.2/src/browser_harness.rb b/Tools/iExploder/iexploder-1.7.2/src/browser_harness.rb
deleted file mode 100755
index c5bec80..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/browser_harness.rb
+++ /dev/null
@@ -1,389 +0,0 @@
-#!/usr/bin/ruby
-# iExploder browser Harness  (test a single web browser)
-#
-# Copyright 2010 Thomas Stromberg - All Rights Reserved.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-#----------------------------------------------------------------------------
-# PLEASE NOTE:
-#
-# You must disable automatic session restoring for this to be useful.
-#
-# chrome --incognito
-# opera --nosession -newprivatetab
-# firefox -private
-require 'cgi'
-require 'open-uri'
-require 'optparse'
-require './iexploder.rb'
-require './scanner.rb'
-
-MAC_CRASH_PATH = "#{ENV['HOME']}/Library/Logs/CrashReporter"
-TESTCASE_URL = "http://127.0.0.1:3100/iexploder.cgi"
-
-class BrowserHarness
-  def initialize(port, config_path, log_dir, test_dir, watchdog_timer, scan_timer)
-    @app_base_url = "http://127.0.0.1:#{port}/"
-    @app_url = "#{@app_base_url}iexploder.cgi"
-    @port = port
-    @log_dir = log_dir
-    @server_log_path = "#{log_dir}/iexploder_webserver-#{port}.log"
-    @client_log_path = "#{log_dir}/iexploder_harness-#{port}.log"
-    @test_dir = test_dir
-    @watchdog_timer = watchdog_timer
-    @scan_timer = scan_timer
-    @config_path = config_path
-
-    @ie = IExploder.new(@config_path)
-    @ie.cgi_url = @app_url
-
-    @browser_id = nil
-    @browser_name = nil
-    msg("Client log: #{@client_log_path}")
-    msg("Server log: #{@server_log_path}")
-    @server_pid = launch_server()
-  end
-
-  def msg(text)
-    now = Time.now()
-    msg = ">>> #{@browser_name}:#{@port} | #{now}: #{text}"
-    puts msg
-    STDOUT.flush
-
-    f = File.open(@client_log_path, 'a')
-    f.puts msg
-    f.close
-  end
-
-  def launch_server()
-    args = ['./webserver.rb', "-p#{@port}", "-c#{@config_path}", "-l#{@server_log_path}"]
-    pids = fork { exec(*args) }
-    msg("Server args: #{args.inspect}")
-    msg("Server pid: #{pids.inspect}")
-    return pids
-  end
-
-  def launch_browser(args, url)
-    if ! File.exist?(args[0])
-      msg("First argument does not appear to be an executable file: #{args[0]}")
-      kill_server()
-      exit
-    end
-
-    browser = File.basename(args[0])
-    @browser_name = File.basename(browser)
-    if browser =~ /\.app$/
-      pids = launch_mac_browser(args, url)
-    else
-      pids = launch_posix_browser(args, url)
-    end
-    sleep(@scan_timer * 3)
-    if ! File.size?(@server_log_path)
-      puts "#{@server_log_path} was never written to. Unable to launch browser?"
-      kill_server()
-      exit
-    end
-    return pids
-  end
-
-  def launch_posix_browser(args, url)
-    browser = File.basename(args[0])
-    msg("Killing browser processes: #{browser}")
-    system("pkill #{browser} && pkill -9 #{browser}")
-    args = args + [url]
-    msg("Launching browser: #{args.inspect}")
-    browser_pid = fork {
-      exec(*args)
-    }
-    return [browser_pid]
-  end
-
-  def find_pids(text)
-    # Only tested on Mac OS X.
-    pids = []
-    `ps -x`.each do |proc_line|
-      if proc_line =~ /^ *(\d+).*#{text}/
-        pid = $1.to_i
-        # Do not include yourself.
-        if pid != Process.pid
-          pids << $1.to_i
-        end
-      end
-    end
-    return pids
-  end
-
-  def launch_mac_browser(args, url)
-    # This is dedicated to Safari.
-    if args.length > 1
-      msg(".app type launches do not support arguments, ignoring #{args[1..99].inspect}")
-    end
-    browser = args[0]
-    pids = find_pids(browser)
-    if pids
-      kill_pids(find_pids(browser))
-      sleep(2)
-    end
-    command = "open -a \"#{browser}\" \"#{url}\""
-    msg(".app open command: #{command}")
-    system(command)
-    return find_pids(browser)
-  end
-
-  def kill_pids(pids)
-    pids.each do |pid|
-      msg("Killing #{pid}")
-      begin
-        Process.kill("INT", pid)
-        sleep(0.5)
-        Process.kill("KILL", pid)
-      rescue
-        sleep(0.1)
-      end
-    end
-  end
-
-  def encode_browser()
-    return @browser_id.gsub(' ', '_').gsub(';', '').gsub('/', '-').gsub(/[\(\):\!\@\#\$\%\^\&\*\+=\{\}\[\]\'\"\<\>\?\|\\]/, '').gsub(/_$/, '').gsub(/^_/, '')
-  end
-
-  def kill_server()
-    kill_pids([@server_pid])
-  end
-
-  def parse_test_url(value)
-    current_vars = nil
-    test_num = nil
-    subtest_data = nil
-    lookup_values = false
-    if value =~ /iexploder.cgi(.*)/
-      current_vars = $1
-      if current_vars =~ /[&\?]t=(\d+)/
-        test_num = $1
-      end
-      if current_vars =~ /[&\?]s=([\d_,]+)/
-        subtest_data = $1
-      end
-      if current_vars =~ /[&\?]l=(\w+)/
-        lookup_value = $1
-      end
-    else
-      msg("Unable to parse url in #{value}")
-      return [nil, nil, nil, nil]
-    end
-    return [current_vars, test_num, subtest_data, lookup_value]
-  end
-
-  def check_log_status()
-    timestamp, uri, user_agent = open("#{@app_base_url}last_page.cgi").read().chomp.split(' ')
-    age = (Time.now() - timestamp.to_i).to_i
-    if not @browser_id
-      @browser_id = CGI.unescape(user_agent)
-      msg("My browser is #{@browser_id}")
-    end
-
-
-    return [age, uri]
-  end
-
-  def save_testcase(url, case_type=nil)
-    msg("Saving testcase: #{url}")
-    vars, test_num, subtest_data, lookup_value = parse_test_url(url)
-    if not case_type
-      case_type = 'testcase'
-    end
-
-    testcase_name = ([case_type, encode_browser(), 'TEST', test_num, subtest_data].join('-')).gsub(/-$/, '') + ".html"
-    testcase_path = "#{@test_dir}/#{testcase_name}"
-    data = open(url).read()
-    # Slow down our redirection time, and replace our testcase urls.
-    data.gsub!(/0;URL=\/iexploder.*?\"/, "1;URL=#{testcase_name}\"")
-    data.gsub!(/window\.location=\"\/iexploder.*?\"/, "window\.location=\"#{testcase_name}\"")
-
-    # I wish I did not have to do this, but the reality is that I can't imitate header fuzzing
-    # without a webservice in the backend. Change all URL's to use a well known localhost
-    # port.
-    data.gsub!(/\/iexploder.cgi/, TESTCASE_URL)
-
-    f = File.open(testcase_path, 'w')
-    f.write(data)
-    f.close
-    msg("Wrote testcase #{testcase_path}")
-    return testcase_path
-  end
-
-  def calculate_next_url(test_num, subtest_data)
-    @ie.test_num = test_num.to_i
-    @ie.subtest_data = subtest_data
-    if subtest_data and subtest_data.length > 0
-      (width, offsets) = @ie.parseSubTestData(subtest_data)
-      # We increment within combo_creator
-      (width, offsets, lines) = combine_combo_creator(@ie.config['html_tags_per_page'], width, offsets)
-      return @ie.generateTestUrl(@ie.nextTestNum(), width, offsets)
-    else
-      return @ie.generateTestUrl(@ie.nextTestNum())
-    end
-  end
-
-  def find_crash_logs(max_age)
-    crashed_files = []
-    check_files = Dir.glob("*core*")
-    if File.exists?(MAC_CRASH_PATH)
-      check_files = check_files + Dir.glob("#{MAC_CRASH_PATH}/*.*")
-    end
-    check_files.each do |file|
-      mtime = File.stat(file).mtime
-      age = (Time.now() - mtime).to_i
-      if age < max_age
-        msg("#{file} is only #{age}s old: #{mtime}")
-        crashed_files << file
-      end
-    end
-    return crashed_files
-  end
-
-  def test_browser(args, test_num, random_mode=false)
-    # NOTE: random_mode is not yet supported.
-
-    browser_pids = []
-    subtest_data = nil
-    @ie.test_num = test_num
-    @ie.random_mode = random_mode
-    next_url = @ie.generateTestUrl(test_num)
-
-    while next_url
-      msg("Starting at: #{next_url}")
-      if browser_pids
-        kill_pids(browser_pids)
-      end
-      browser_pids = launch_browser(args, next_url)
-      test_is_running = true
-      crash_files = []
-
-      while test_is_running
-        sleep(@scan_timer)
-        begin
-          age, request_uri = check_log_status()
-        rescue
-          msg("Failed to get status. webserver likely crashed.")
-          kill_pids([@server_pid])
-          @server_pid = launch_server()
-          next_url = @ie.generateTestUrl(test_num)
-          test_is_running = false
-          next
-        end
-        vars, test_num, subtest_data, lookup_value = parse_test_url(request_uri)
-        if lookup_value == 'survived_redirect'
-          msg("We survived #{vars}. Bummer, could not repeat crash. Moving on.")
-          test_is_running = false
-          next_url = calculate_next_url(test_num, subtest_data)
-          next
-        elsif age > @watchdog_timer
-          msg("Stuck at #{vars}, waited for #{@watchdog_timer}s. Killing browser.")
-          kill_pids(browser_pids)
-          current_url = "#{@app_url}#{vars}"
-#          save_testcase(current_url, 'possible')
-          crash_files = find_crash_logs(@watchdog_timer + (@scan_timer * 2))
-          if crash_files.length > 0
-            msg("Found recent crash logs: #{crash_files.inspect} - last page: #{current_url}")
-          end
-
-          if vars =~ /THE_END/
-            msg("We hung at the end. Saving a testcase just in case.")
-            save_testcase(current_url)
-            next_url = calculate_next_url(test_num, nil)
-            test_is_running = false
-            next
-          end
-
-          # This is for subtesting
-          if subtest_data
-            if lookup_value
-              msg("Confirmed crashing/hanging page at #{current_url} - saving testcase.")
-              save_testcase(current_url)
-              next_url = calculate_next_url(test_num, nil)
-              test_is_running = false
-              next
-            else
-              msg("Stopped at #{current_url}. Attempting to reproduce simplified crash/hang condition.")
-              browser_pids = launch_browser(args, "#{current_url}&l=test_redirect")
-            end
-          # Normal testing goes here
-          else
-            if lookup_value
-              msg("Reproducible crash/hang at #{current_url}, generating smaller test case.")
-              url = current_url.gsub(/&l=(\w+)/, '')
-              browser_pids = launch_browser(args, "#{url}&s=0")
-            else
-              msg("Stopped at #{current_url}. Attempting to reproduce crash/hang condition.")
-              browser_pids = launch_browser(args, "#{current_url}&l=test_redirect")
-            end
-          end
-        elsif age > @scan_timer
-          msg("Waiting for #{vars} to finish loading... (#{age}s of #{@watchdog_timer}s)")
-        end
-      end
-    end
-  end
-end
-
-if $0 == __FILE__
-  options = {
-    :port => rand(16000).to_i + 16000,
-    :test_dir => File.dirname($0) + '/../output',
-    :log_dir => File.dirname($0) + '/../output',
-    :test_num => nil,
-    :watchdog_timer => 60,
-    :scan_timer => 5,
-    :config_path => 'config.yaml',
-    :random_mode => false
-  }
-
-  optparse = OptionParser.new do |opts|
-    opts.banner = "Usage: browser_harness.rb [options] -- <browser path> <browser options>"
-    opts.on( '-t', '--test NUM', 'Test to start at' ) { |test_num| options[:test_num] = test_num.to_i }
-    opts.on( '-p', '--port NUM', 'Listen on TCP port NUM (random)' ) { |port| options[:port] = port.to_i }
-    opts.on( '-c', '--config PATH', 'Use PATH for configuration file' ) { |path| options[:config_path] = path }
-    opts.on( '-d', '--testdir PATH', 'Use PATH to save testcases (/tmp)' ) { |path| options[:test_dir] = path }
-    opts.on( '-l', '--logdir PATH', 'Use PATH to save logs (/tmp)' ) { |path|  options[:log_dir] = path }
-    opts.on( '-w', '--watchdog NUM', 'How many seconds to wait for pages to load (45s)' ) { |sec|  options[:watchdog_timer] = sec.to_i }
-    opts.on( '-r', '--random', 'Generate test numbers pseudo-randomly' ) { options[:random_mode] = true }
-    opts.on( '-s', '--scan NUM', 'How often to check for new log data (5s)' ) { |sec|  options[:scan_timer] = sec.to_i }
-    opts.on( '-h', '--help', 'Display this screen' ) { puts opts; exit }
-  end
-  optparse.parse!
-
-  if options[:port] == 0
-    puts "Unable to parse port option. Try adding -- as an argument before you specify your browser location."
-    exit
-  end
-
-  if ARGV.length < 1
-    puts "No browser specified. Perhaps you need some --help?"
-    exit
-  end
-  puts "options: #{options.inspect}"
-  puts "browser: #{ARGV.inspect}"
-
-  harness = BrowserHarness.new(
-    options[:port],
-    options[:config_path],
-    options[:log_dir],
-    options[:test_dir],
-    options[:watchdog_timer],
-    options[:scan_timer]
-  )
-
-  harness.test_browser(ARGV, options[:test_num], options[:random_mode])
-end
diff --git a/Tools/iExploder/iexploder-1.7.2/src/config.yaml b/Tools/iExploder/iexploder-1.7.2/src/config.yaml
deleted file mode 100644
index e796e8e..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/config.yaml
+++ /dev/null
@@ -1,54 +0,0 @@
-# iexploder configuration file
-
-# path to the data files (css-properties, css-values, etc.)
-mangle_data_path: .
-
-# This is only used by the webserver.py, not the cgi.
-access_log_path: ../access.log
-
-# Some basic tuning for maximum crashing power.
-html_tags_per_page: 100
-attributes_per_html_tag_max: 15
-properties_per_style_max: 15
-attributes_per_style_property_max: 3
-# URL's loaded by img/src/etc. get a max of this many fuzzed headers
-headers_per_page_max: 2
-
-# How many combinations should we try when generating subtests
-subtest_combinations_max: 5
-
-# How many lines wide should we start our subtesting at? Increase for faster/looser
-# subtesting.
-initial_subtest_width: 1
-
-# How much garbage do we send the client? If you really want to explore
-# buffer overflows, consider making this a much larger size (16K+)
-buffer_overflow_length: 1025
-max_garbage_text_size: 257
-
-# These tags are X% likely to overwrite one randomly selected tag per page load
-favor_html_tags:
-  script: 65
-  style: 75
-  img: 90
-  video: 90
-  object: 90
-  embed: 90
-
-# Exclude certain tag.parameter or tag.style.attribute combinations for a given regexp.
-# An asterisk is allowed in the first field. Valid forms include:
-#
-#  img.onloadbanana: "Bananarama 3000"
-#  dir.style.-webkit-banana-rule: "BananaWebKit\/532\.9 |BananaTron5K"
-#  *.style.-webkit-banana-rule: "BananaWebKit\/532\.9 |BananaTron5K"
-
-exclude:
-  # Hangs the test waiting for a prompt sometimes
-  iframe.src: "Firefox\/3.6"
-
-  # http://code.google.com/p/chromium/issues/detail?id=56207
-  *.style.content: "Chrome\/7\.0\.5"
-
-  # http://code.google.com/p/chromium/issues/detail?id=56208
-  progress.style.font: "Chrome\/7\.0\.5"
-
diff --git a/Tools/iExploder/iexploder-1.7.2/src/css-atrules/mozilla b/Tools/iExploder/iexploder-1.7.2/src/css-atrules/mozilla
deleted file mode 100644
index c0e626b..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/css-atrules/mozilla
+++ /dev/null
@@ -1,6 +0,0 @@
-@-moz-document
-@charset
-@font-face
-@import
-@media
-@namespace
diff --git a/Tools/iExploder/iexploder-1.7.2/src/css-atrules/webkit b/Tools/iExploder/iexploder-1.7.2/src/css-atrules/webkit
deleted file mode 100644
index 99ea2cc..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/css-atrules/webkit
+++ /dev/null
@@ -1,14 +0,0 @@
-@-webkit-decls
-@-webkit-keyframe-rule
-@-webkit-keyframes
-@-webkit-mediaquery
-@-webkit-rule
-@-webkit-selector
-@-webkit-value
-@-webkit-variables-decls
-@charset
-@font-face
-@import
-@media
-@namespace
-@page
diff --git a/Tools/iExploder/iexploder-1.7.2/src/css-properties/dillo b/Tools/iExploder/iexploder-1.7.2/src/css-properties/dillo
deleted file mode 100644
index 72a7d45..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/css-properties/dillo
+++ /dev/null
@@ -1,98 +0,0 @@
-background
-background-attachment
-background-color
-background-image
-background-position
-background-repeat
-border
-border-bottom
-border-bottom-color
-border-bottom-style
-border-bottom-width
-border-collapse
-border-color
-border-left
-border-left-color
-border-left-style
-border-left-width
-border-right
-border-right-color
-border-right-style
-border-rigth-width
-border-spacing
-border-style
-border-top
-border-top-color
-border-top-style
-border-top-width
-border-width
-bottom
-caption-side
-clear
-clip
-color
-content
-counter-increment
-counter-reset
-cursor
-direction
-display
-empty-cells
-float
-font
-font-family
-font-size
-font-size-adjust
-font-stretch
-font-style
-font-variant
-font-weight
-height
-last
-left
-letter-spacing
-line-height
-list-style
-list-style-image
-list-style-position
-list-style-type
-margin
-margin-bottom
-margin-left
-margin-right
-margin-top
-marker-offset
-marks
-max-height
-max-width
-min-height
-min-width
-outline
-outline-color
-outline-style
-outline-width
-overflow
-padding
-padding-bottom
-padding-left
-padding-right
-padding-top
-position
-quotes
-right
-text-align
-text-decoration
-text-indent
-text-shadow
-text-transform
-top
-unicode-bidi
-vertical-align
-visibility
-white-space
-width
-word-spacing
-x-colspan
-x-link
-x-rowspan
-z-index
diff --git a/Tools/iExploder/iexploder-1.7.2/src/css-properties/gtkhtml b/Tools/iExploder/iexploder-1.7.2/src/css-properties/gtkhtml
deleted file mode 100644
index 1011a4e..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/css-properties/gtkhtml
+++ /dev/null
@@ -1,16 +0,0 @@
-background
-background-color
-background-image
-border
-border-color
-border-style
-border-width
-clear
-color
-display
-height
-padding
-text-align
-text-decoration
-white-space
-width
diff --git a/Tools/iExploder/iexploder-1.7.2/src/css-properties/internet_explorer6 b/Tools/iExploder/iexploder-1.7.2/src/css-properties/internet_explorer6
deleted file mode 100644
index d23f3a1..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/css-properties/internet_explorer6
+++ /dev/null
@@ -1,29 +0,0 @@
-filter:progid:
-filter:
-ime-mode
-layout-flow
-layout-grid
-layout-grid-char
-layout-grid-line
-layout-grid-mode
-layout-grid-type
-line-break
-overflow-x
-overflow-y
-pagebreakafter
-pagebreakbefore
-ruby-align
-ruby-overhang
-ruby-position
-text-autospace
-text-justify
-text-kashida-space
-text-underline-position
-word-break
-writing-mode
-zoom
-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(
-filter:progid:DXImageTransform.Microsoft.Blur(
-filter:progid:DXImageTransform.Microsoft.MotionBlur(
-filter:progid:DXImageTransform.Microsoft.Gradient(
-filter:progid:DXImageTransform.Microsoft.Pixelate(
diff --git a/Tools/iExploder/iexploder-1.7.2/src/css-properties/mozilla b/Tools/iExploder/iexploder-1.7.2/src/css-properties/mozilla
deleted file mode 100644
index 953e606..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/css-properties/mozilla
+++ /dev/null
@@ -1,275 +0,0 @@
--moz-appearance
--moz-background-inline-policy
--moz-binding
--moz-border-bottom-colors
--moz-border-end
--moz-border-end-color
--moz-border-end-style
--moz-border-end-width
--moz-border-image
--moz-border-left-colors
--moz-border-radius
--moz-border-radius-bottomleft
--moz-border-radius-bottomright
--moz-border-radius-topleft
--moz-border-radius-topright
--moz-border-right-colors
--moz-border-start
--moz-border-start-color
--moz-border-start-style
--moz-border-start-width
--moz-border-top-colors
--moz-box-align
--moz-box-direction
--moz-box-flex
--moz-box-ordinal-group
--moz-box-orient
--moz-box-pack
--moz-box-shadow
--moz-box-sizing
--moz-column-count
--moz-column-gap
--moz-column-rule
--moz-column-rule-color
--moz-column-rule-style
--moz-column-rule-width
--moz-column-width
--moz-float-edge
--moz-font-feature-settings
--moz-font-language-override
--moz-force-broken-image-icon
--moz-image-region
--moz-margin-end
--moz-margin-start
--moz-outline-radius
--moz-outline-radius-bottomleft
--moz-outline-radius-bottomright
--moz-outline-radius-topleft
--moz-outline-radius-topright
--moz-padding-end
--moz-padding-start
--moz-script-level
--moz-script-min-size
--moz-script-size-multiplier
--moz-stack-sizing
--moz-tab-size
--moz-transform
--moz-transform-origin
--moz-transition
--moz-transition-delay
--moz-transition-duration
--moz-transition-property
--moz-transition-timing-function
--moz-user-focus
--moz-user-input
--moz-user-modify
--moz-user-select
--moz-window-shadow
--x-system-font
-appearance
-azimuth
-background
-background-attachment
-background-clip
-background-color
-background-image
-background-origin
-background-position
-background-repeat
-background-size
-binding
-border
-border-bottom
-border-bottom-color
-border-bottom-style
-border-bottom-width
-border-collapse
-border-color
-border-end-color-value
-border-end-style-value
-border-end-width-value
-border-left
-border-left-color
-border-left-color-ltr-source
-border-left-color-rtl-source
-border-left-color-value
-border-left-style
-border-left-style-ltr-source
-border-left-style-rtl-source
-border-left-style-value
-border-left-width
-border-left-width-ltr-source
-border-left-width-rtl-source
-border-left-width-value
-border-right
-border-right-color
-border-right-color-ltr-source
-border-right-color-rtl-source
-border-right-color-value
-border-right-style
-border-right-style-ltr-source
-border-right-style-rtl-source
-border-right-style-value
-border-right-width
-border-right-width-ltr-source
-border-right-width-rtl-source
-border-right-width-value
-border-spacing
-border-start-color-value
-border-start-style-value
-border-start-width-value
-border-style
-border-top
-border-top-color
-border-top-style
-border-top-width
-border-width
-bottom
-caption-side
-clear
-clip
-clip-path
-clip-rule
-color
-color-interpolation
-color-interpolation-filters
-content
-counter-increment
-counter-reset
-cue
-cue-after
-cue-before
-cursor
-direction
-display
-dominant-baseline
-elevation
-empty-cells
-fill
-fill-opacity
-fill-rule
-filter
-float
-flood-color
-flood-opacity
-font
-font-family
-font-size
-font-size-adjust
-font-stretch
-font-style
-font-variant
-font-weight
-height
-image-rendering
-ime-mode
-left
-letter-spacing
-lighting-color
-line-height
-list-style
-list-style-image
-list-style-position
-list-style-type
-margin
-margin-bottom
-margin-end-value
-margin-left
-margin-left-ltr-source
-margin-left-rtl-source
-margin-left-value
-margin-right
-margin-right-ltr-source
-margin-right-rtl-source
-margin-right-value
-margin-start-value
-margin-top
-marker
-marker-end
-marker-mid
-marker-offset
-marker-start
-marks
-mask
-max-height
-max-width
-min-height
-min-width
-nsnull
-opacity
-orphans
-outline
-outline-color
-outline-offset
-outline-style
-outline-width
-overflow
-overflow-x
-overflow-y
-padding
-padding-bottom
-padding-end-value
-padding-left
-padding-left-ltr-source
-padding-left-rtl-source
-padding-left-value
-padding-right
-padding-right-ltr-source
-padding-right-rtl-source
-padding-right-value
-padding-start-value
-padding-top
-page
-page-break-after
-page-break-before
-page-break-inside
-pause
-pause-after
-pause-before
-pitch
-pitch-range
-pointer-events
-position
-quotes
-resize
-richness
-right
-shape-rendering
-size
-speak
-speak-header
-speak-numeral
-speak-punctuation
-speech-rate
-stop-color
-stop-opacity
-stress
-stroke
-stroke-dasharray
-stroke-dashoffset
-stroke-linecap
-stroke-linejoin
-stroke-miterlimit
-stroke-opacity
-stroke-width
-table-layout
-text-align
-text-anchor
-text-decoration
-text-indent
-text-rendering
-text-shadow
-text-transform
-top
-transition
-unicode-bidi
-vertical-align
-visibility
-voice-family
-volume
-white-space
-widows
-width
-word-spacing
-word-wrap
-z-index
diff --git a/Tools/iExploder/iexploder-1.7.2/src/css-properties/webkit b/Tools/iExploder/iexploder-1.7.2/src/css-properties/webkit
deleted file mode 100644
index 927e24c..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/css-properties/webkit
+++ /dev/null
@@ -1,256 +0,0 @@
-
--webkit-animation
--webkit-animation-delay
--webkit-animation-direction
--webkit-animation-duration
--webkit-animation-fill-mode
--webkit-animation-iteration-count
--webkit-animation-name
--webkit-animation-play-state
--webkit-animation-timing-function
--webkit-appearance
--webkit-backface-visibility
--webkit-background-clip
--webkit-background-composite
--webkit-background-origin
--webkit-background-size
--webkit-border-end
--webkit-border-end-color
--webkit-border-end-style
--webkit-border-end-width
--webkit-border-fit
--webkit-border-horizontal-spacing
--webkit-border-image
--webkit-border-radius
--webkit-border-start
--webkit-border-start-color
--webkit-border-start-style
--webkit-border-start-width
--webkit-border-vertical-spacing
--webkit-box-align
--webkit-box-direction
--webkit-box-flex
--webkit-box-flex-group
--webkit-box-lines
--webkit-box-ordinal-group
--webkit-box-orient
--webkit-box-pack
--webkit-box-reflect
--webkit-box-shadow
--webkit-box-sizing
--webkit-color-correction
--webkit-column-break-after
--webkit-column-break-before
--webkit-column-break-inside
--webkit-column-count
--webkit-column-gap
--webkit-column-rule
--webkit-column-rule-color
--webkit-column-rule-style
--webkit-column-rule-width
--webkit-column-span
--webkit-column-width
--webkit-columns
--webkit-font-size-delta
--webkit-font-smoothing
--webkit-highlight
--webkit-hyphenate-character
--webkit-hyphenate-locale
--webkit-hyphens
--webkit-line-break
--webkit-line-clamp
--webkit-margin-bottom-collapse
--webkit-margin-collapse
--webkit-margin-end
--webkit-margin-start
--webkit-margin-top-collapse
--webkit-marquee
--webkit-marquee-direction
--webkit-marquee-increment
--webkit-marquee-repetition
--webkit-marquee-speed
--webkit-marquee-style
--webkit-mask
--webkit-mask-attachment
--webkit-mask-box-image
--webkit-mask-clip
--webkit-mask-composite
--webkit-mask-image
--webkit-mask-origin
--webkit-mask-position
--webkit-mask-position-x
--webkit-mask-position-y
--webkit-mask-repeat
--webkit-mask-repeat-x
--webkit-mask-repeat-y
--webkit-mask-size
--webkit-match-nearest-mail-blockquote-color
--webkit-nbsp-mode
--webkit-padding-end
--webkit-padding-start
--webkit-perspective
--webkit-perspective-origin
--webkit-perspective-origin-x
--webkit-perspective-origin-y
--webkit-rtl-ordering
--webkit-text-decorations-in-effect
--webkit-text-fill-color
--webkit-text-security
--webkit-text-size-adjust
--webkit-text-stroke
--webkit-text-stroke-color
--webkit-text-stroke-width
--webkit-transform
--webkit-transform-origin
--webkit-transform-origin-x
--webkit-transform-origin-y
--webkit-transform-origin-z
--webkit-transform-style
--webkit-transition
--webkit-transition-delay
--webkit-transition-duration
--webkit-transition-property
--webkit-transition-timing-function
--webkit-user-drag
--webkit-user-modify
--webkit-user-select
--webkit-variable-declaration-block
-background
-background-attachment
-background-clip
-background-color
-background-image
-background-origin
-background-position
-background-position-x
-background-position-y
-background-repeat
-background-repeat-x
-background-repeat-y
-background-size
-border
-border-bottom
-border-bottom-color
-border-bottom-left-radius
-border-bottom-right-radius
-border-bottom-style
-border-bottom-width
-border-collapse
-border-color
-border-left
-border-left-color
-border-left-style
-border-left-width
-border-radius
-border-right
-border-right-color
-border-right-style
-border-right-width
-border-spacing
-border-style
-border-top
-border-top-color
-border-top-left-radius
-border-top-right-radius
-border-top-style
-border-top-width
-border-width
-bottom
-caption-side
-clear
-clip
-color
-content
-counter-increment
-counter-reset
-cursor
-direction
-display
-empty-cells
-float
-font
-font-family
-font-size
-font-stretch
-font-style
-font-variant
-font-weight
-height
-left
-letter-spacing
-line-height
-list-style
-list-style-image
-list-style-position
-list-style-type
-margin
-margin-bottom
-margin-left
-margin-right
-margin-top
-max-height
-max-width
-min-height
-min-width
-opacity
-orphans
-outline
-outline-color
-outline-offset
-outline-style
-outline-width
-overflow
-overflow-x
-overflow-y
-padding
-padding-bottom
-padding-left
-padding-right
-padding-top
-page
-page-break-after
-page-break-before
-page-break-inside
-pointer-events
-position
-quotes
-resize
-right
-size
-src
-table-layout
-text-align
-text-decoration
-text-indent
-text-line-through
-text-line-through-color
-text-line-through-mode
-text-line-through-style
-text-line-through-width
-text-overflow
-text-overline
-text-overline-color
-text-overline-mode
-text-overline-style
-text-overline-width
-text-rendering
-text-shadow
-text-transform
-text-underline
-text-underline-color
-text-underline-mode
-text-underline-style
-text-underline-width
-top
-unicode-bidi
-unicode-range
-vertical-align
-visibility
-white-space
-widows
-width
-word-break
-word-spacing
-word-wrap
-z-index
-zoom
diff --git a/Tools/iExploder/iexploder-1.7.2/src/css-pseudo/mozilla b/Tools/iExploder/iexploder-1.7.2/src/css-pseudo/mozilla
deleted file mode 100644
index e092ef7..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/css-pseudo/mozilla
+++ /dev/null
@@ -1,60 +0,0 @@
--moz-any
--moz-any-link
--moz-bound-element
--moz-broken
--moz-drag-over
--moz-empty-except-children-with-localname
--moz-first-node
--moz-focusring
--moz-handler-blocked
--moz-handler-crashed
--moz-handler-disabled
--moz-has-handlerref
--moz-is-html
--moz-last-node
--moz-loading
--moz-locale-dir
--moz-lwtheme
--moz-lwtheme-brighttext
--moz-lwtheme-darktext
--moz-math-increment-script-level
--moz-only-whitespace
--moz-placeholder
--moz-read-only
--moz-read-write
--moz-suppressed
--moz-system-metric
--moz-type-unsupported
--moz-user-disabled
--moz-window-inactive
-active
-checked
-default
-disabled
-empty
-enabled
-first-child
-first-of-type
-focus
-hover
-in-range
-indeterminate
-invalid
-lang
-last-child
-last-of-type
-link
-not
-nth-child
-nth-last-child
-nth-last-of-type
-nth-of-type
-only-child
-only-of-type
-optional
-out-of-range
-required
-root
-target
-valid
-visited
diff --git a/Tools/iExploder/iexploder-1.7.2/src/css-pseudo/webkit b/Tools/iExploder/iexploder-1.7.2/src/css-pseudo/webkit
deleted file mode 100644
index b15fa30..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/css-pseudo/webkit
+++ /dev/null
@@ -1,100 +0,0 @@
--khtml-drag
--webkit-any-link
--webkit-autofill
--webkit-drag
--webkit-file-upload-button
--webkit-full-page-media
--webkit-full-screen
--webkit-full-screen-document
--webkit-inner-spin-button
--webkit-input-placeholder
--webkit-input-speech-button
--webkit-media-controls-current-time-display
--webkit-media-controls-fullscreen-button
--webkit-media-controls-mute-button
--webkit-media-controls-panel
--webkit-media-controls-play-button
--webkit-media-controls-return-to-realtime-button
--webkit-media-controls-rewind-button
--webkit-media-controls-seek-back-button
--webkit-media-controls-seek-forward-button
--webkit-media-controls-status-display
--webkit-media-controls-time-remaining-display
--webkit-media-controls-timeline
--webkit-media-controls-timeline-container
--webkit-media-controls-toggle-closed-captions-button
--webkit-media-controls-volume-slider
--webkit-media-controls-volume-slider-container
--webkit-media-controls-volume-slider-mute-button
--webkit-meter-horizontal-bar
--webkit-meter-horizontal-even-less-good-value
--webkit-meter-horizontal-optimum-value
--webkit-meter-horizontal-suboptimal-value
--webkit-meter-vertical-bar
--webkit-meter-vertical-even-less-good-value
--webkit-meter-vertical-optimum-value
--webkit-meter-vertical-suboptimal-value
--webkit-outer-spin-button
--webkit-progress-bar-value
--webkit-resizer
--webkit-scrollbar
--webkit-scrollbar-button
--webkit-scrollbar-corner
--webkit-scrollbar-thumb
--webkit-scrollbar-track
--webkit-scrollbar-track-piece
--webkit-search-cancel-button
--webkit-search-decoration
--webkit-search-results-button
--webkit-search-results-decoration
--webkit-slider-thumb
-active
-after
-before
-checked
-corner-present
-decrement
-default
-disabled
-double-button
-empty
-enabled
-end
-first
-first-child
-first-letter
-first-line
-first-of-type
-focus
-horizontal
-hover
-increment
-indeterminate
-invalid
-lang(
-last-child
-last-of-type
-left
-link
-no-button
-not(
-nth-child(
-nth-last-child(
-nth-last-of-type(
-nth-of-type(
-only-child
-only-of-type
-optional
-read-only
-read-write
-required
-right
-root
-selection
-single-button
-start
-target
-valid
-vertical
-visited
-window-inactive
diff --git a/Tools/iExploder/iexploder-1.7.2/src/css-values/dillo b/Tools/iExploder/iexploder-1.7.2/src/css-values/dillo
deleted file mode 100644
index 2d56833..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/css-values/dillo
+++ /dev/null
@@ -1,93 +0,0 @@
-armenian
-baseline
-blink
-block
-bold
-bolder
-bottom
-center
-circle
-cjk-ideographic
-crosshair
-dashed
-decimal
-decimal-leading-zero
-default
-disc
-dotted
-double
-e-resize
-georgian
-groove
-hebrew
-help
-hidden
-hiragana
-hiragana-iroha
-inline
-inset
-inside
-italic
-justify
-katakana
-katakana-iroha
-large
-larger
-left
-light
-lighter
-line-through
-list-item
-lower-alpha
-lower-greek
-lower-latin
-lower-roman
-medium
-middle
-move
-ne-resize
-none
-normal
-nowrap
-n-resize
-nw-resize
-oblique
-outset
-outside
-overline
-pointer
-pre
-ridge
-right
-se-resize
-small
-smaller
-solid
-square
-s-resize
-string
-sub
-super
-sw-resize
-table
-table-cell
-table-footer-group
-table-header-group
-table-row
-table-row-group
-text
-text-bottom
-text-top
-thick
-thin
-top
-underline
-upper-alpha
-upper-latin
-upper-roman
-wait
-w-resize
-x-large
-x-small
-xx-large
-xx-small
diff --git a/Tools/iExploder/iexploder-1.7.2/src/css-values/gtkhtml b/Tools/iExploder/iexploder-1.7.2/src/css-values/gtkhtml
deleted file mode 100644
index 53a4f81..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/css-values/gtkhtml
+++ /dev/null
@@ -1,18 +0,0 @@
-block
-both
-inherit
-inline
-inline-table
-inset
-left
-medium
-none
-normal
-nowrap
-pre
-pre-line
-pre-wrap
-right
-solid
-thick
-thin
diff --git a/Tools/iExploder/iexploder-1.7.2/src/css-values/mozilla b/Tools/iExploder/iexploder-1.7.2/src/css-values/mozilla
deleted file mode 100644
index 193f0c8..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/css-values/mozilla
+++ /dev/null
@@ -1,558 +0,0 @@
--moz-activehyperlinktext
--moz-all
--moz-alt-content
--moz-anchor-decoration
--moz-arabic-indic
--moz-available
--moz-bengali
--moz-block-height
--moz-box
--moz-button
--moz-buttondefault
--moz-buttonhoverface
--moz-buttonhovertext
--moz-cellhighlight
--moz-cellhighlighttext
--moz-center
--moz-cjk-earthly-branch
--moz-cjk-heavenly-stem
--moz-combobox
--moz-comboboxtext
--moz-compact
--moz-crisp-edges
--moz-deck
--moz-desktop
--moz-devanagari
--moz-dialog
--moz-dialogtext
--moz-document
--moz-dragtargetzone
--moz-element
--moz-ethiopic-halehame
--moz-ethiopic-halehame-am
--moz-ethiopic-halehame-ti-er
--moz-ethiopic-halehame-ti-et
--moz-ethiopic-numeric
--moz-eventreerow
--moz-field
--moz-fieldtext
--moz-fit-content
--moz-grab
--moz-grabbing
--moz-grid
--moz-grid-group
--moz-grid-line
--moz-groupbox
--moz-gujarati
--moz-gurmukhi
--moz-hangul
--moz-hangul-consonant
--moz-hidden-unscrollable
--moz-html-cellhighlight
--moz-html-cellhighlighttext
--moz-hyperlinktext
--moz-image-rect
--moz-info
--moz-initial
--moz-inline-box
--moz-inline-grid
--moz-inline-stack
--moz-japanese-formal
--moz-japanese-informal
--moz-kannada
--moz-khmer
--moz-lao
--moz-left
--moz-list
--moz-mac-alternateprimaryhighlight
--moz-mac-chrome-active
--moz-mac-chrome-inactive
--moz-mac-disabledtoolbartext
--moz-mac-focusring
--moz-mac-menuselect
--moz-mac-menushadow
--moz-mac-menutextdisable
--moz-mac-menutextselect
--moz-mac-secondaryhighlight
--moz-mac-unified-toolbar
--moz-malayalam
--moz-marker
--moz-max-content
--moz-menubarhovertext
--moz-menubartext
--moz-menuhover
--moz-menuhovertext
--moz-middle-with-baseline
--moz-min-content
--moz-myanmar
--moz-nativehyperlinktext
--moz-none
--moz-oddtreerow
--moz-oriya
--moz-persian
--moz-popup
--moz-pull-down-menu
--moz-right
--moz-run-in
--moz-scrollbars-horizontal
--moz-scrollbars-none
--moz-scrollbars-vertical
--moz-show-background
--moz-simp-chinese-formal
--moz-simp-chinese-informal
--moz-stack
--moz-tamil
--moz-telugu
--moz-thai
--moz-trad-chinese-formal
--moz-trad-chinese-informal
--moz-urdu
--moz-use-system-font
--moz-use-text-color
--moz-visitedhyperlinktext
--moz-win-borderless-glass
--moz-win-browsertabbar-toolbox
--moz-win-communications-toolbox
--moz-win-communicationstext
--moz-win-glass
--moz-win-media-toolbox
--moz-win-mediatext
--moz-window
--moz-window-button-box
--moz-window-button-box-maximized
--moz-window-button-close
--moz-window-button-maximize
--moz-window-button-minimize
--moz-window-button-restore
--moz-window-frame-bottom
--moz-window-frame-left
--moz-window-frame-right
--moz-window-titlebar
--moz-window-titlebar-maximized
--moz-workspace
--moz-zoom-in
--moz-zoom-out
-above
-absolute
-active
-activeborder
-activecaption
-alias
-all
-all-scroll
-alphabetic
-always
-appworkspace
-armenian
-auto
-avoid
-background
-baseline
-behind
-below
-bevel
-bidi-override
-blink
-block
-block-axis
-bold
-bolder
-border-box
-both
-bottom
-bottom-outside
-bounding-box
-break-word
-butt
-button
-button-arrow-down
-button-arrow-next
-button-arrow-previous
-button-arrow-up
-button-bevel
-button-focus
-buttonface
-buttonhighlight
-buttonshadow
-buttontext
-capitalize
-caption
-captiontext
-caret
-cell
-center
-center-left
-center-right
-central
-ch
-checkbox
-checkbox-container
-checkbox-label
-checkmenuitem
-circle
-cjk-ideographic
-close-quote
-closest-corner
-closest-side
-cm
-code
-col-resize
-collapse
-condensed
-contain
-content-box
-context-menu
-continuous
-copy
-cover
-crispedges
-crop
-cross
-crosshair
-currentcolor
-dashed
-decimal
-decimal-leading-zero
-default
-deg
-dialog
-digits
-disabled
-disc
-dotted
-double
-dualbutton
-e-resize
-each-box
-ease
-ease-in
-ease-in-out
-ease-out
-element
-elements
-ellipse
-em
-embed
-enabled
-end
-evenodd
-ew-resize
-ex
-expanded
-extra-condensed
-extra-expanded
-far-left
-far-right
-farthest-corner
-farthest-side
-fast
-faster
-fill
-fixed
-geometricprecision
-georgian
-grad
-graytext
-groove
-groupbox
-hanging
-hebrew
-help
-hidden
-hide
-high
-higher
-highlight
-highlighttext
-hiragana
-hiragana-iroha
-horizontal
-hz
-icon
-ideographic
-ignore
-in
-inactive
-inactiveborder
-inactivecaption
-inactivecaptiontext
-infobackground
-infotext
-inherit
-inline
-inline-axis
-inline-block
-inline-table
-inset
-inside
-interlace
-invert
-italic
-justify
-katakana
-katakana-iroha
-khz
-landscape
-large
-larger
-left
-left-side
-leftwards
-level
-lighter
-line-through
-linear
-linearrgb
-list-item
-listbox
-listitem
-logical
-loud
-low
-lower
-lower-alpha
-lower-greek
-lower-latin
-lower-roman
-lowercase
-ltr
-margin-box
-mathematical
-matrix
-medium
-menu
-menuarrow
-menubar
-menucheckbox
-menuimage
-menuitem
-menuitemtext
-menulist
-menulist-button
-menulist-text
-menulist-textfield
-menupopup
-menuradio
-menuseparator
-menutext
-message-box
-middle
-miter
-mix
-mm
-move
-ms
-n-resize
-narrower
-ne-resize
-nesw-resize
-no-change
-no-close-quote
-no-drop
-no-open-quote
-no-repeat
-none
-nonzero
-normal
-not-allowed
-nowrap
-ns-resize
-nw-resize
-nwse-resize
-oblique
-once
-open-quote
-optimizelegibility
-optimizequality
-optimizespeed
-outset
-outside
-overline
-padding-box
-painted
-pc
-physical
-pointer
-portrait
-pre
-pre-line
-pre-wrap
-progress
-progressbar
-progressbar-vertical
-progresschunk
-progresschunk-vertical
-progressive
-pt
-px
-rad
-radio
-radio-container
-radio-label
-radiomenuitem
-read-only
-read-write
-relative
-repeat
-repeat-x
-repeat-y
-reset-size
-resizer
-resizerpanel
-reverse
-ridge
-right
-right-side
-rightwards
-rotate
-round
-row-resize
-rtl
-s
-s-resize
-scale
-scale-horizontal
-scale-vertical
-scalethumb-horizontal
-scalethumb-vertical
-scalethumbend
-scalethumbstart
-scalethumbtick
-scalex
-scaley
-scroll
-scrollbar
-scrollbar-small
-scrollbarbutton-down
-scrollbarbutton-left
-scrollbarbutton-right
-scrollbarbutton-up
-scrollbarthumb-horizontal
-scrollbarthumb-vertical
-scrollbartrack-horizontal
-scrollbartrack-vertical
-se-resize
-searchfield
-select-after
-select-all
-select-before
-select-menu
-select-same
-semi-condensed
-semi-expanded
-separate
-separator
-sheet
-show
-silent
-skew
-skewx
-skewy
-slow
-slower
-small
-small-caps
-small-caption
-smaller
-soft
-solid
-spell-out
-spinner
-spinner-downbutton
-spinner-textfield
-spinner-upbutton
-splitter
-square
-srgb
-start
-static
-status-bar
-statusbar
-statusbarpanel
-stretch
-stretch-to-fit
-stroke
-sub
-super
-sw-resize
-tab
-tab-scroll-arrow-back
-tab-scroll-arrow-forward
-table
-table-caption
-table-cell
-table-column
-table-column-group
-table-footer-group
-table-header-group
-table-row
-table-row-group
-tabpanel
-tabpanels
-text
-text-after-edge
-text-before-edge
-text-bottom
-text-top
-textfield
-textfield-multiline
-thick
-thin
-threeddarkshadow
-threedface
-threedhighlight
-threedlightshadow
-threedshadow
-toggle
-toolbar
-toolbarbutton
-toolbarbutton-dropdown
-toolbargripper
-toolbox
-tooltip
-top
-top-outside
-translate
-translatex
-translatey
-transparent
-treeheader
-treeheadercell
-treeheadersortarrow
-treeitem
-treeline
-treetwisty
-treetwistyopen
-treeview
-tri-state
-ultra-condensed
-ultra-expanded
-underline
-upper-alpha
-upper-latin
-upper-roman
-uppercase
-use-script
-vertical
-vertical-text
-visible
-visiblefill
-visiblepainted
-visiblestroke
-w-resize
-wait
-wider
-window
-windowframe
-windowtext
-write-only
-x-fast
-x-high
-x-large
-x-loud
-x-low
-x-slow
-x-small
-x-soft
-xx-large
-xx-small
diff --git a/Tools/iExploder/iexploder-1.7.2/src/css-values/other b/Tools/iExploder/iexploder-1.7.2/src/css-values/other
deleted file mode 100644
index c3c1fba..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/css-values/other
+++ /dev/null
@@ -1,20 +0,0 @@
-0
-0 auto
-0 fixed
-#339933 !important !important !important
-attr("ATTRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA")
-block clear
-block width
-clip:rect(-0px -2000000px -200000px -0px)
-clip:rect(0px 2000000px 200000px 0px)
-no-close
-normal !important
-rgb(9999999999, 999999999, 9999999999999)
-scrollbargripper-horizontal
-scrollbargripper-vertical
-searchfield-close
-searchfield-results
-thick dashed yellow
-thick dotted blue
-unfurl
--webkit-overlay
diff --git a/Tools/iExploder/iexploder-1.7.2/src/css-values/webkit b/Tools/iExploder/iexploder-1.7.2/src/css-values/webkit
deleted file mode 100644
index bb7c7f8..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/css-values/webkit
+++ /dev/null
@@ -1,478 +0,0 @@
-
--wap-marquee
--webkit-activelink
--webkit-auto
--webkit-baseline-middle
--webkit-body
--webkit-box
--webkit-center
--webkit-control
--webkit-focus-ring-color
--webkit-grab
--webkit-grabbing
--webkit-inline-box
--webkit-left
--webkit-link
--webkit-marquee
--webkit-mini-control
--webkit-nowrap
--webkit-right
--webkit-small-control
--webkit-text
--webkit-xxx-large
--webkit-zoom-in
--webkit-zoom-out
-100
-200
-300
-400
-500
-600
-700
-800
-900
-a3
-a4
-a5
-above
-absolute
-activeborder
-activecaption
-afar
-after-white-space
-ahead
-alias
-all
-all-scroll
-alternate
-always
-amharic
-amharic-abegede
-antialiased
-appworkspace
-aqua
-arabic-indic
-armenian
-asterisks
-auto
-avoid
-b4
-b5
-background
-backwards
-baseline
-below
-bengali
-bidi-override
-binary
-black
-blink
-block
-block-axis
-blue
-bold
-bolder
-border
-border-box
-both
-bottom
-break-all
-break-word
-button
-button-bevel
-buttonface
-buttonhighlight
-buttonshadow
-buttontext
-cambodian
-capitalize
-caps-lock-indicator
-caption
-captiontext
-caret
-cell
-center
-checkbox
-circle
-cjk-earthly-branch
-cjk-heavenly-stem
-cjk-ideographic
-clear
-clip
-close-quote
-col-resize
-collapse
-compact
-condensed
-contain
-content
-content-box
-context-menu
-continuous
-continuous-capacity-level-indicator
-copy
-cover
-crop
-cross
-crosshair
-currentcolor
-cursive
-dashed
-decimal
-decimal-leading-zero
-default
-default-button
-destination-atop
-destination-in
-destination-out
-destination-over
-devanagari
-disc
-discard
-discrete-capacity-level-indicator
-document
-dot-dash
-dot-dot-dash
-dotted
-double
-down
-e-resize
-ease
-ease-in
-ease-in-out
-ease-out
-element
-ellipsis
-embed
-end
-ethiopic
-ethiopic-abegede
-ethiopic-abegede-am-et
-ethiopic-abegede-gez
-ethiopic-abegede-ti-er
-ethiopic-abegede-ti-et
-ethiopic-halehame-aa-er
-ethiopic-halehame-aa-et
-ethiopic-halehame-am-et
-ethiopic-halehame-gez
-ethiopic-halehame-om-et
-ethiopic-halehame-sid-et
-ethiopic-halehame-so-et
-ethiopic-halehame-ti-er
-ethiopic-halehame-ti-et
-ethiopic-halehame-tig
-ew-resize
-expanded
-extra-condensed
-extra-expanded
-fantasy
-fast
-fill
-fixed
-flat
-floating
-footnotes
-forwards
-fuchsia
-fullscreen
-geometricPrecision
-georgian
-gray
-graytext
-green
-grey
-groove
-gujarati
-gurmukhi
-hand
-hangul
-hangul-consonant
-hebrew
-help
-hidden
-hide
-higher
-highlight
-highlighttext
-hiragana
-hiragana-iroha
-horizontal
-icon
-ignore
-inactiveborder
-inactivecaption
-inactivecaptiontext
-infinite
-infobackground
-infotext
-inherit
-initial
-inline
-inline-axis
-inline-block
-inline-table
-inner-spin-button
-input-speech-button
-inset
-inside
-intrinsic
-invert
-italic
-justify
-kannada
-katakana
-katakana-iroha
-khmer
-landscape
-lao
-large
-larger
-ledger
-left
-legal
-letter
-level
-lighter
-lime
-line-through
-linear
-lines
-list-button
-list-item
-listbox
-listitem
-local
-logical
-loud
-lower
-lower-alpha
-lower-greek
-lower-hexadecimal
-lower-latin
-lower-norwegian
-lower-roman
-lowercase
-ltr
-malayalam
-manual
-maroon
-match
-maximized
-media-controls-background
-media-controls-fullscreen-background
-media-current-time-display
-media-fullscreen-button
-media-mute-button
-media-play-button
-media-return-to-realtime-button
-media-rewind-button
-media-seek-back-button
-media-seek-forward-button
-media-slider
-media-sliderthumb
-media-time-remaining-display
-media-toggle-closed-captions-button
-media-volume-slider
-media-volume-slider-container
-media-volume-slider-mute-button
-media-volume-sliderthumb
-medium
-menu
-menulist
-menulist-button
-menulist-text
-menulist-textfield
-menutext
-message-box
-meter
-middle
-min-intrinsic
-minimized
-mix
-mongolian
-monospace
-move
-multiple
-myanmar
-n-resize
-narrower
-navy
-ne-resize
-nesw-resize
-no-close-quote
-no-drop
-no-open-quote
-no-repeat
-none
-normal
-not-allowed
-nowrap
-ns-resize
-nw-resize
-nwse-resize
-oblique
-octal
-olive
-open-quote
-optimizeLegibility
-optimizeSpeed
-orange
-oriya
-oromo
-outer-spin-button
-outset
-outside
-overlay
-overline
-padding
-padding-box
-painted
-paused
-persian
-plus-darker
-plus-lighter
-pointer
-portrait
-pre
-pre-line
-pre-wrap
-preserve-3d
-progress
-progress-bar
-progress-bar-value
-purple
-push-button
-radio
-rating-level-indicator
-read-only
-read-write
-read-write-plaintext-only
-red
-relative
-relevancy-level-indicator
-repeat
-repeat-x
-repeat-y
-reset
-reverse
-ridge
-right
-round
-row-resize
-rtl
-run-in
-running
-s-resize
-sRGB
-sans-serif
-scroll
-scrollbar
-se-resize
-searchfield
-searchfield-cancel-button
-searchfield-decoration
-searchfield-results-button
-searchfield-results-decoration
-semi-condensed
-semi-expanded
-separate
-serif
-show
-sidama
-silver
-single
-skip-white-space
-slide
-slider-horizontal
-slider-vertical
-sliderthumb-horizontal
-sliderthumb-vertical
-slow
-small
-small-caps
-small-caption
-smaller
-solid
-somali
-source-atop
-source-in
-source-out
-source-over
-space
-square
-square-button
-start
-static
-status-bar
-stretch
-stroke
-sub
-subpixel-antialiased
-super
-sw-resize
-table
-table-caption
-table-cell
-table-column
-table-column-group
-table-footer-group
-table-header-group
-table-row
-table-row-group
-teal
-telugu
-text
-text-bottom
-text-top
-textarea
-textfield
-thai
-thick
-thin
-threeddarkshadow
-threedface
-threedhighlight
-threedlightshadow
-threedshadow
-tibetan
-tigre
-tigrinya-er
-tigrinya-er-abegede
-tigrinya-et
-tigrinya-et-abegede
-top
-transparent
-ultra-condensed
-ultra-expanded
-underline
-up
-upper-alpha
-upper-greek
-upper-hexadecimal
-upper-latin
-upper-norwegian
-upper-roman
-uppercase
-urdu
-vertical
-vertical-text
-visible
-visibleFill
-visiblePainted
-visibleStroke
-visual
-w-resize
-wait
-wave
-white
-wider
-window
-windowed
-windowframe
-windowtext
-x-large
-x-small
-xor
-xx-large
-xx-small
-yellow
diff --git a/Tools/iExploder/iexploder-1.7.2/src/headers/dillo b/Tools/iExploder/iexploder-1.7.2/src/headers/dillo
deleted file mode 100644
index 7eaee43..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/headers/dillo
+++ /dev/null
@@ -1,9 +0,0 @@
-Content-Encoding
-Content-Length
-Content-Type
-Date
-Location
-Set-Cookie
-Transfer-Encoding
-Warning
-WWW-Authenticate
diff --git a/Tools/iExploder/iexploder-1.7.2/src/headers/gtkhtml b/Tools/iExploder/iexploder-1.7.2/src/headers/gtkhtml
deleted file mode 100644
index e69de29..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/headers/gtkhtml
+++ /dev/null
diff --git a/Tools/iExploder/iexploder-1.7.2/src/headers/mozilla b/Tools/iExploder/iexploder-1.7.2/src/headers/mozilla
deleted file mode 100644
index 8eda16c..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/headers/mozilla
+++ /dev/null
@@ -1,70 +0,0 @@
-Accept
-Accept-Charset
-Accept-Encoding
-Accept-Language
-Accept-Ranges
-Age
-Allow
-Authentication
-Authorization
-Cache-Control
-Connection
-Content-Base
-Content-Disposition
-Content-Encoding
-Content-Language
-Content-Length
-Content-Location
-Content-MD5
-Content-Range
-Content-Transfer-Encoding
-Content-Type
-Cookie
-Date
-Depth
-Derived-From
-Destination
-Etag
-Expect
-Expires
-Forwarded
-From
-Host
-If
-If-Match
-If-Match-Any
-If-Modified-Since
-If-None-Match
-If-None-Match-Any
-If-Range
-If-Unmodified-Since
-Keep-Alive
-Last-Modified
-Link
-Location
-Lock-Token
-Max-Forwards
-Message-Id
-Mime
-Overwrite
-Pragma
-Proxy-Authenticate
-Proxy-Authorization
-Proxy-Connection
-Range
-Referer
-Retry-After
-Server
-Set-Cookie
-Set-Cookie2
-Status-URI
-Timeout
-Title
-Trailer
-Transfer-Encoding
-Upgrade
-User-Agent
-Vary
-Version
-WWW-Authenticate
-Warning
diff --git a/Tools/iExploder/iexploder-1.7.2/src/headers/webkit b/Tools/iExploder/iexploder-1.7.2/src/headers/webkit
deleted file mode 100644
index 4663d64..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/headers/webkit
+++ /dev/null
@@ -1,30 +0,0 @@
-Accept
-Accept-Ranges
-Access-Control-Allow-Credentials
-Access-Control-Allow-Headers
-Access-Control-Allow-Methods
-Access-Control-Allow-Origin
-Access-Control-Max-Age
-Content-Disposition
-Content-Encoding
-Content-Type
-ETag
-Last-Modified
-Origin
-Range
-Referer
-Refresh
-User-Agent
-X-DNS-Prefetch-Control
-age
-cache-control
-date
-expires
-icy-genre
-icy-metaint
-icy-name
-icy-title
-icy-url
-last-modified
-location
-pragma
diff --git a/Tools/iExploder/iexploder-1.7.2/src/html-attrs/dillo b/Tools/iExploder/iexploder-1.7.2/src/html-attrs/dillo
deleted file mode 100644
index d134209..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/html-attrs/dillo
+++ /dev/null
@@ -1,51 +0,0 @@
-accept-charset
-action
-align
-alt
-bgcolor
-border
-cellpadding
-cellspacing
-char
-checked
-codebase
-color
-cols
-colspan
-content
-coords
-data
-disabled
-enctype
-face
-href
-hspace
-http-equiv
-ismap
-link
-maxlength
-media
-method
-multiple
-name
-noshade
-nowrap
-prompt
-readonly
-rel
-rows
-rowspan
-selected
-shape
-size
-src
-start
-text
-title
-type
-usemap
-valign
-value
-vlink
-vspace
-width
diff --git a/Tools/iExploder/iexploder-1.7.2/src/html-attrs/gtkhtml b/Tools/iExploder/iexploder-1.7.2/src/html-attrs/gtkhtml
deleted file mode 100644
index 31f4052..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/html-attrs/gtkhtml
+++ /dev/null
@@ -1,64 +0,0 @@
-action
-align
-alink
-all
-background
-bgcolor
-bottom
-bottommargin
-button
-checkbox
-checked
-circle
-cite
-class
-clear
-cols
-content
-content-type
-coords
-default
-dir
-hidden
-href
-hspace
-http-equiv
-image
-key
-left
-leftmargin
-link
-ltr
-marginheight
-marginwidth
-maxlength
-method
-name
-no
-onClick
-password
-poly
-post
-radio
-rect
-refresh
-reset
-right
-rightmargin
-rows
-rtl
-shape
-size
-src
-style
-submit
-target
-text
-top
-topmargin
-type
-url
-value
-vlink
-vspace
-yes
diff --git a/Tools/iExploder/iexploder-1.7.2/src/html-attrs/internet_explorer6 b/Tools/iExploder/iexploder-1.7.2/src/html-attrs/internet_explorer6
deleted file mode 100644
index 9e4c6ed..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/html-attrs/internet_explorer6
+++ /dev/null
@@ -1,18 +0,0 @@
-# IE specific, from msdn.microsoft.com/workshop/author/dhtml/reference/properties
-acceptcharset
-allowtransparency
-balance
-choff
-datafld
-dataformatas
-datapagesize
-datasrc
-dynsrc
-framespacing
-galleryimg
-hidefocus
-methods
-scroll
-units
-urn
-volume
diff --git a/Tools/iExploder/iexploder-1.7.2/src/html-attrs/mozilla b/Tools/iExploder/iexploder-1.7.2/src/html-attrs/mozilla
deleted file mode 100644
index 5a8e6e1..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/html-attrs/mozilla
+++ /dev/null
@@ -1,694 +0,0 @@
-SVGLinearGradientFrame
-SVGRadialGradientFrame
-_moz-type
-abbr
-acceltext
-accent
-accent-height
-accentunder
-accept
-accept-charset
-accesskey
-accumulate
-action
-actiontype
-active
-additive
-align
-alignment-baseline
-alignmentscope
-alink
-alphabetic
-alt
-alternate
-altimg
-alttext
-amplitude
-arabic-form
-archive
-aria-activedescendant
-aria-atomic
-aria-autocomplete
-aria-busy
-aria-channel
-aria-checked
-aria-controls
-aria-datatype
-aria-describedby
-aria-disabled
-aria-dropeffect
-aria-expanded
-aria-flowto
-aria-grab
-aria-haspopup
-aria-hidden
-aria-invalid
-aria-labelledby
-aria-level
-aria-live
-aria-multiline
-aria-multiselectable
-aria-owns
-aria-posinset
-aria-pressed
-aria-readonly
-aria-relevant
-aria-required
-aria-secret
-aria-selected
-aria-setsize
-aria-sort
-aria-templateid
-aria-valuemax
-aria-valuemin
-aria-valuenow
-ascent
-async
-attribute
-attributeName
-attributename
-attributetype
-autocomplete
-autofocus
-autoplay
-autosubmit
-axis
-azimuth
-background
-base
-basefrequency
-baseline
-baseline-shift
-baseprofile
-bbox
-begin
-bevelled
-bgcolor
-bias
-border
-bordercolor
-bottom
-bottommargin
-by
-calcMode
-calcmode
-cap-height
-cellpadding
-cellspacing
-char
-charcode
-charoff
-charset
-checked
-child
-cite
-class
-classid
-clear
-clip
-clip-path
-clip-rule
-clippathunits
-close
-closure
-code
-codebase
-codetype
-color
-color-interpolation
-color-interpolation-filters
-color-profile
-color-rendering
-cols
-colspan
-columnalign
-columnlines
-columnspacing
-columnspan
-columnwidth
-command
-compact
-container
-containment
-content
-contenteditable
-contentscripttype
-contentstyletype
-contextmenu
-control
-controls
-coords
-curpos
-cursor
-cx
-cy
-d
-data
-datafld
-dataformatas
-datasources
-datasrc
-datetime
-declare
-default
-defer
-definitionurl
-denomalign
-depth
-descent
-diffuseconstant
-dir
-direction
-disabled
-display
-displaystyle
-divisor
-dominant-baseline
-draggable
-dur
-dx
-dy
-edge
-edgemode
-editable
-element
-elevation
-enable-background
-encoding
-enctype
-end
-equalcolumns
-equalrows
-equalsize
-event
-events
-exponent
-expr
-extends
-externalresourcesrequired
-face
-fence
-fill
-fill-opacity
-fill-rule
-filter
-filterres
-filterunits
-flags
-flex
-flood-color
-flood-opacity
-font-family
-font-size
-font-size-adjust
-font-stretch
-font-style
-font-variant
-font-weight
-fontfamily
-fontsize
-fontstyle
-fontweight
-for
-form
-formaction
-format
-formenctype
-formmethod
-frame
-frameborder
-framespacing
-from
-fx
-fy
-g1
-g2
-glyph-name
-glyph-orientation-horizontal
-glyph-orientation-vertical
-glyphRef
-glyphref
-gradientTransform
-gradientUnits
-gradienttransform
-gradientunits
-groupalign
-handler
-hanging
-headers
-height
-hidden
-hidefocus
-high
-horiz-adv-x
-horiz-origin-x
-horiz-origin-y
-href
-hreflang
-hspace
-http-equiv
-icon
-id
-ideographic
-image-rendering
-in
-in2
-includes
-increment
-index
-infer
-inherits
-inputmode
-insertafter
-insertbefore
-intercept
-irrelevant
-ismap
-k
-k1
-k2
-k3
-k4
-kernelmatrix
-kernelunitlength
-kerning
-key
-keycode
-keypoints
-keysplines
-keytext
-keytimes
-label
-lang
-language
-largeop
-layer
-layout
-left
-leftmargin
-lengthadjust
-letter-spacing
-lighting-color
-limitingconeangle
-linebreak
-linethickness
-link
-list
-local
-longdesc
-loopend
-loopstart
-low
-lowsrc
-lquote
-lspace
-lwtheme
-lwthemetextcolor
-macros
-manifest
-marginheight
-marginwidth
-marker-end
-marker-mid
-marker-start
-markerheight
-markerunits
-markerwidth
-mask
-maskcontentunits
-maskunits
-mathbackground
-mathcolor
-mathematical
-mathsize
-mathvariant
-max
-maxheight
-maxlength
-maxpos
-maxsize
-maxwidth
-media
-mediummathspace
-member
-method
-min
-minheight
-minpos
-minsize
-minwidth
-mode
-modifiers
-movablelimits
-multiple
-name
-namespace
-nargs
-nohref
-noresize
-noshade
-notation
-nowrap
-numalign
-numoctaves
-object
-observer
-observes
-occurrence
-offset
-onabort
-onactivate
-onafterprint
-onafterupdate
-onbefordeactivate
-onbeforeactivate
-onbeforecopy
-onbeforecut
-onbeforeeditfocus
-onbeforepaste
-onbeforeprint
-onbeforeunload
-onbeforeupdate
-onbegin
-onblur
-onbounce
-oncellchange
-onchange
-onclick
-oncontextmenu
-oncontrolselect
-oncopy
-oncut
-ondataavailable
-ondatasetchanged
-ondatasetcomplete
-ondblclick
-ondeactivate
-ondrag
-ondragdrop
-ondragend
-ondragenter
-ondragleave
-ondragover
-ondragstart
-ondrop
-onend
-onerror
-onerrorupdate
-onfilterchange
-onfinish
-onfocus
-onfocusin
-onfocusout
-onformchange
-onforminput
-onhelp
-oninput
-oninvalid
-onkeydown
-onkeypress
-onkeyup
-onload
-onlosecapture
-onmessage
-onmousedown
-onmouseenter
-onmouseleave
-onmousemove
-onmouseout
-onmouseover
-onmouseup
-onmousewheel
-onmove
-onmoveend
-onmovestart
-onpaste
-onpropertychange
-onreadystatechange
-onrepeat
-onreset
-onresize
-onrowenter
-onrowexit
-onrowsdelete
-onrowsinserted
-onscroll
-onselect
-onselectstart
-onstart
-onstop
-onsubmit
-onunload
-onzoom
-opacity
-open
-operator
-optimum
-order
-ordinal
-orient
-orientation
-origin
-other
-overflow
-overline-position
-overline-thickness
-pageincrement
-panose-1
-parent
-parsetype
-path
-pathlength
-pattern
-patternContentUnits
-patternTransform
-patternUnits
-patterncontentunits
-patterntransform
-patternunits
-persist
-ping
-placeholder
-playcount
-point-size
-pointer-events
-points
-pointsatx
-pointsaty
-pointsatz
-popupalign
-popupanchor
-position
-poster
-predicate
-prefix
-preload
-preserveAspectRatio
-preservealpha
-preserveaspectratio
-primitiveunits
-profile
-prompt
-properties
-querytype
-r
-radiogroup
-radius
-readonly
-ref
-refx
-refy
-rel
-rendering-intent
-repeat
-repeat-max
-repeat-min
-repeat-start
-repeat-template
-repeatcount
-repeatdur
-replace
-required
-requiredExtensions
-requiredFeatures
-requiredextensions
-requiredfeatures
-resource
-restart
-result
-rev
-right
-rightmargin
-role
-rotate
-rowalign
-rowlines
-rows
-rowspacing
-rowspan
-rquote
-rspace
-rt
-rules
-rx
-ry
-sandbox
-scale
-scheme
-scope
-scoped
-scriptlevel
-scriptminsize
-scriptsizemultiplier
-scrolldelay
-scrolling
-seamless
-seed
-select
-selectable
-selected
-selectedIndex
-selection
-separator
-separators
-shape
-shape-rendering
-size
-sizetopopup
-slope
-sort
-sortDirection
-sortResource
-sortResource2
-sorthints
-space
-spacing
-span
-specification
-specularconstant
-specularexponent
-speed
-spreadMethod
-spreadmethod
-src
-standby
-start
-startoffset
-statedatasource
-staticHint
-stddeviation
-stemh
-stemv
-step
-stitchtiles
-stop-color
-stop-opacity
-stretchy
-strikethrough-position
-strikethrough-thickness
-string
-stroke
-stroke-dasharray
-stroke-dashoffset
-stroke-linecap
-stroke-linejoin
-stroke-miterlimit
-stroke-opacity
-stroke-width
-style
-subject
-subscriptshift
-summary
-superscriptshift
-surfacescale
-symmetric
-systemLanguage
-systemlanguage
-tabindex
-tablevalues
-tag
-target
-targets
-targetx
-targety
-template
-text
-text-anchor
-text-decoration
-text-rendering
-textlength
-thickmathspace
-thinmathspace
-title
-to
-tooltip
-tooltiptext
-top
-topmargin
-transform
-type
-u1
-u2
-underline-position
-underline-thickness
-unicode
-unicode-bidi
-unicode-range
-units-per-em
-unselectable
-uri
-usemap
-v-alphabetic
-v-hanging
-v-ideographic
-v-mathematical
-valign
-value
-values
-valuetype
-var
-variable
-version
-vert-adv-y
-vert-origin-x
-vert-origin-y
-verythickmathspace
-verythinmathspace
-veryverythickmathspace
-veryverythinmathspace
-viewBox
-viewbox
-viewtarget
-visibility
-vlink
-vspace
-when
-width
-widths
-word-spacing
-wrap
-writing-mode
-x
-x-height
-x1
-x2
-xchannelselector
-xlink:actuate
-xlink:arcrole
-xlink:href
-xlink:role
-xlink:show
-xlink:title
-xlink:type
-xml:base
-xml:lang
-xml:space
-xmlns
-xmlns:xlink
-xref
-y
-y1
-y2
-ychannelselector
-z
-zoomandpan
diff --git a/Tools/iExploder/iexploder-1.7.2/src/html-attrs/other b/Tools/iExploder/iexploder-1.7.2/src/html-attrs/other
deleted file mode 100644
index 8805bee..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/html-attrs/other
+++ /dev/null
@@ -1,36 +0,0 @@
-autocheck
-bounce
-html
-nosave
-onbounce
-onclose
-oncommand
-oncommandupdate
-oncompositionend
-oncompositionstart
-ondragdrop
-ondragexit
-ondraggesture
-onfinish
-onget
-onoverflow
-onoverflowchanged
-onpaint
-onpopuphidden
-onpopuphiding
-onpopupshowing
-onpopupshown
-onset
-onstart
-ontext
-onunderflow
-onzoom
-oversrc
-pagex
-pagey
-plain
-pluginpage
-pluginspage
-unknown
-visibility
-z-index
diff --git a/Tools/iExploder/iexploder-1.7.2/src/html-attrs/webkit b/Tools/iExploder/iexploder-1.7.2/src/html-attrs/webkit
deleted file mode 100644
index 010f3ea..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/html-attrs/webkit
+++ /dev/null
@@ -1,284 +0,0 @@
-
-abbr
-accept
-accept_charset
-accesskey
-action
-align
-alink
-alt
-archive
-aria-activedescendant
-aria-atomic
-aria-busy
-aria-checked
-aria-controls
-aria-describedby
-aria-disabled
-aria-dropeffect
-aria-expanded
-aria-flowto
-aria-grabbed
-aria-haspopup
-aria-help
-aria-hidden
-aria-label
-aria-labeledby
-aria-labelledby
-aria-level
-aria-live
-aria-multiselectable
-aria-orientation
-aria-owns
-aria-pressed
-aria-readonly
-aria-relevant
-aria-required
-aria-selected
-aria-valuemax
-aria-valuemin
-aria-valuenow
-aria-valuetext
-async
-attrsNullNamespace
-autocomplete
-autofocus
-autoplay
-autosave
-axis
-background
-behavior
-bgcolor
-bgproperties
-border
-bordercolor
-cellborder
-cellpadding
-cellspacing
-challenge
-char
-charoff
-charset
-checked
-cite
-class
-classid
-clear
-code
-codebase
-codetype
-color
-cols
-colspan
-compact
-composite
-content
-contenteditable
-controls
-coords
-data
-datetime
-declare
-defer
-dir
-direction
-disabled
-draggable
-enctype
-end
-event
-expanded
-face
-focused
-for
-formnovalidate
-frame
-frameborder
-headers
-height
-hidden
-high
-href
-hreflang
-hspace
-http_equiv
-id
-incremental
-indeterminate
-ismap
-keytype
-label
-lang
-language
-leftmargin
-link
-list
-longdesc
-loop
-loopend
-loopstart
-low
-lowsrc
-manifest
-marginheight
-marginwidth
-max
-maxlength
-mayscript
-media
-method
-min
-multiple
-name
-nohref
-noresize
-noshade
-novalidate
-nowrap
-object
-onabort
-onbeforecopy
-onbeforecut
-onbeforeload
-onbeforepaste
-onbeforeprocess
-onbeforeunload
-onblur
-oncanplay
-oncanplaythrough
-onchange
-onclick
-oncontextmenu
-oncopy
-oncut
-ondblclick
-ondrag
-ondragend
-ondragenter
-ondragleave
-ondragover
-ondragstart
-ondrop
-ondurationchange
-onemptied
-onended
-onerror
-onfocus
-onfocusin
-onfocusout
-onhashchange
-oninput
-oninvalid
-onkeydown
-onkeypress
-onkeyup
-onload
-onloadeddata
-onloadedmetadata
-onloadstart
-onmousedown
-onmousemove
-onmouseout
-onmouseover
-onmouseup
-onmousewheel
-onoffline
-ononline
-onorientationchange
-onpagehide
-onpageshow
-onpaste
-onpause
-onplay
-onplaying
-onpopstate
-onprogress
-onratechange
-onreset
-onresize
-onscroll
-onsearch
-onseeked
-onseeking
-onselect
-onselectstart
-onstalled
-onstorage
-onsubmit
-onsuspend
-ontimeupdate
-ontouchcancel
-ontouchend
-ontouchmove
-ontouchstart
-onunload
-onvolumechange
-onwaiting
-onwebkitanimationend
-onwebkitanimationiteration
-onwebkitanimationstart
-onwebkitbeginfullscreen
-onwebkitendfullscreen
-onwebkitfullscreenchange
-onwebkittransitionend
-optimum
-pattern
-placeholder
-playcount
-pluginurl
-poster
-precision
-preload
-primary
-profile
-progress
-prompt
-readonly
-rel
-required
-results
-rev
-role
-rows
-rowspan
-rules
-sandbox
-scheme
-scope
-scrollamount
-scrolldelay
-scrolling
-selected
-shape
-size
-sortable
-sortdirection
-span
-speech
-spellcheck
-src
-standby
-start
-step
-style
-summary
-tabindex
-tableborder
-target
-text
-title
-top
-topmargin
-truespeed
-type
-usemap
-valign
-value
-valuetype
-version
-viewsource
-vlink
-vspace
-webkitdirectory
-width
-wrap
diff --git a/Tools/iExploder/iexploder-1.7.2/src/html-tags/dillo b/Tools/iExploder/iexploder-1.7.2/src/html-tags/dillo
deleted file mode 100644
index c9c0040..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/html-tags/dillo
+++ /dev/null
@@ -1,73 +0,0 @@
-a
-abbr
-address
-area
-b
-base
-big
-blockquote
-body
-br
-button
-center
-cite
-code
-dd
-del
-dfn
-dir
-div
-dl
-dt
-em
-font
-form
-frame
-frameset
-h1
-h2
-h3
-h4
-h5
-h6
-head
-hr
-html
-i
-iframe
-img
-input
-isindex
-kbd
-li
-link
-map
-menu
-meta
-object
-ol
-option
-p
-pre
-q
-s
-samp
-script
-select
-small
-span
-strike
-strong
-style
-sub
-sup
-table
-td
-textarea
-th
-title
-tr
-tt
-u
-ul
-var
diff --git a/Tools/iExploder/iexploder-1.7.2/src/html-tags/gtkhtml b/Tools/iExploder/iexploder-1.7.2/src/html-tags/gtkhtml
deleted file mode 100644
index bf51b2a..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/html-tags/gtkhtml
+++ /dev/null
@@ -1,46 +0,0 @@
-a
-address
-b
-big
-blockquote
-body
-caption
-center
-cite
-code
-dd
-dir
-div
-dl
-dt
-em
-font
-form
-h
-html
-i
-kbd
-li
-map
-ol
-option
-p
-pre
-s
-select
-small
-span
-strike
-strong
-sub
-sup
-table
-td
-test
-textarea
-th
-tr
-tt
-u
-ul
-var
diff --git a/Tools/iExploder/iexploder-1.7.2/src/html-tags/mozilla b/Tools/iExploder/iexploder-1.7.2/src/html-tags/mozilla
deleted file mode 100644
index a4a51a6..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/html-tags/mozilla
+++ /dev/null
@@ -1,119 +0,0 @@
-a
-abbr
-acronym
-address
-applet
-area
-article
-aside
-audio
-b
-base
-basefont
-bdo
-bgsound
-big
-blink
-blockquote
-body
-br
-button
-canvas
-caption
-center
-cite
-code
-col
-colgroup
-dd
-del
-dfn
-dir
-div
-dl
-dt
-em
-embed
-fieldset
-figcaption
-figure
-font
-footer
-form
-frame
-frameset
-h1
-h2
-h3
-h4
-h5
-h6
-head
-header
-hgroup
-hr
-html
-i
-iframe
-image
-img
-input
-ins
-isindex
-kbd
-keygen
-label
-legend
-li
-link
-listing
-map
-mark
-marquee
-menu
-meta
-multicol
-nav
-nobr
-noembed
-noframes
-noscript
-object
-ol
-optgroup
-option
-output
-p
-param
-plaintext
-pre
-q
-s
-samp
-script
-section
-select
-small
-source
-span
-strike
-strong
-style
-sub
-sup
-table
-tbody
-td
-textarea
-tfoot
-th
-thead
-title
-tr
-tt
-u
-ul
-var
-video
-wbr
-xmp
diff --git a/Tools/iExploder/iexploder-1.7.2/src/html-tags/other b/Tools/iExploder/iexploder-1.7.2/src/html-tags/other
deleted file mode 100644
index 598f1ec..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/html-tags/other
+++ /dev/null
@@ -1,8 +0,0 @@
-counter
-endnote
-ilayer
-parsererror
-server
-sound
-sourcetext
-xml
diff --git a/Tools/iExploder/iexploder-1.7.2/src/html-tags/webkit b/Tools/iExploder/iexploder-1.7.2/src/html-tags/webkit
deleted file mode 100644
index 0da3cc2..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/html-tags/webkit
+++ /dev/null
@@ -1,132 +0,0 @@
-
-a
-abbr
-acronym
-address
-applet
-area
-article
-aside
-audio
-b
-base
-basefont
-bdo
-bgsound
-big
-blockquote
-body
-br
-button
-canvas
-caption
-center
-cite
-code
-col
-colgroup
-command
-datalist
-dcell
-dcol
-dd
-del
-details
-dfn
-dir
-div
-dl
-drow
-dt
-em
-embed
-fieldset
-figcaption
-figure
-font
-footer
-form
-frame
-frameset
-h1
-h2
-h3
-h4
-h5
-h6
-head
-header
-hgroup
-hr
-html
-i
-iframe
-image
-img
-input
-ins
-isindex
-kbd
-keygen
-label
-layer
-legend
-li
-link
-listing
-map
-mark
-marquee
-menu
-meta
-meter
-nav
-nobr
-noembed
-noframes
-nolayer
-noscript
-object
-ol
-optgroup
-option
-p
-param
-plaintext
-pre
-progress
-q
-rp
-rt
-ruby
-s
-samp
-script
-section
-select
-small
-source
-span
-strike
-strong
-style
-sub
-summary
-sup
-table
-tbody
-td
-textarea
-tfoot
-th
-thead
-title
-tr
-track
-tt
-u
-ul
-var
-video
-wbr
-xmp
diff --git a/Tools/iExploder/iexploder-1.7.2/src/html-values/dillo b/Tools/iExploder/iexploder-1.7.2/src/html-values/dillo
deleted file mode 100644
index ae04b00..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/html-values/dillo
+++ /dev/null
@@ -1,30 +0,0 @@
-all
-baseline
-bottom
-button
-center
-char
-checkbox
-circle
-content-type
-default
-disc
-file
-get
-hidden
-image
-justify
-left
-password
-post
-radio
-rect
-refresh
-reset
-right
-screen
-square
-stylesheet
-submit
-text
-top
diff --git a/Tools/iExploder/iexploder-1.7.2/src/html-values/gtkhtml b/Tools/iExploder/iexploder-1.7.2/src/html-values/gtkhtml
deleted file mode 100644
index 055c4f0..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/html-values/gtkhtml
+++ /dev/null
@@ -1,9 +0,0 @@
-bottom
-center
-left
-ltr
-middle
-right
-rtl
-th
-top
diff --git a/Tools/iExploder/iexploder-1.7.2/src/html-values/mozilla b/Tools/iExploder/iexploder-1.7.2/src/html-values/mozilla
deleted file mode 100644
index d5e13fd..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/html-values/mozilla
+++ /dev/null
@@ -1,44 +0,0 @@
-_blank
-_content
-_parent
-_self
-_top
-absbottom
-abscenter
-absmiddle
-auto
-baseline
-bottom
-button
-center
-char
-checkbox
-content
-content-primary
-content-targetable
-email
-file
-hidden
-image
-justify
-left
-ltr
-middle
-no
-noscroll
-off
-on
-password
-radio
-reset
-right
-rtl
-scroll
-search
-submit
-tel
-text
-texttop
-top
-url
-yes
diff --git a/Tools/iExploder/iexploder-1.7.2/src/html-values/other b/Tools/iExploder/iexploder-1.7.2/src/html-values/other
deleted file mode 100644
index 382e312..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/html-values/other
+++ /dev/null
@@ -1,16 +0,0 @@
-*
-#
-?
-999999999,9999999
-999999999,9999999,9
-999999999,9999999,999999999,9999999,999999999,9999999,999999999,9999999,9
-%i %i
-%n%n%n%n%n
-_SEARCH
-vbscript
-http://127.0.0.1:2000/iexploder.cgi?test=1
-%s
-%s %s %s
-%f
-:%
-
diff --git a/Tools/iExploder/iexploder-1.7.2/src/html-values/webkit b/Tools/iExploder/iexploder-1.7.2/src/html-values/webkit
deleted file mode 100644
index 9d83d3a..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/html-values/webkit
+++ /dev/null
@@ -1,88 +0,0 @@
--1
-HTML
-above
-absbottom
-absmiddle
-afterBegin
-afterEnd
-all
-allow-forms
-allow-same-origin
-allow-scripts
-allow-top-navigation
-alternate
-any
-ascending
-auto
-beforeBegin
-beforeEnd
-below
-border
-bottom
-box
-button
-center
-checkbox
-circle
-color
-cols
-data
-date
-datetime
-datetime-local
-default
-descending
-dns-prefetch
-email
-false
-file
-fixed
-groups
-hard
-hidden
-hsides
-icon
-image
-infinite
-inherit
-khtml_isindex
-left
-lhs
-metadata
-middle
-month
-movie
-no
-none
-number
-off
-on
-password
-physical
-plaintext-only
-poly
-prefetch
-radio
-range
-rect
-reset
-rhs
-right
-rows
-rsa
-search
-src
-stylesheet
-submit
-tel
-texttop
-time
-top
-true
-type
-url
-viewport
-void
-vsides
-week
-yes
diff --git a/Tools/iExploder/iexploder-1.7.2/src/iexploder.cgi b/Tools/iExploder/iexploder-1.7.2/src/iexploder.cgi
deleted file mode 100755
index c1a86c4..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/iexploder.cgi
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/usr/bin/ruby
-# iExploder - Generates bad HTML files to perform QA for web browsers.
-#
-# Copyright 2010 Thomas Stromberg - All Rights Reserved.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-require 'cgi';
-require 'iexploder';
-
-$CONFIG_PATH = 'config.yaml'
-
-ie = IExploder.new($CONFIG_PATH)
-cgi = CGI.new("html4");
-ie.cgi_url=ENV['SCRIPT_NAME'] || '?'
-ie.browser=ENV['HTTP_USER_AGENT'] || 'unknown'
-ie.test_num = cgi.params['t'][0].to_i
-ie.subtest_data = cgi.params['s'][0] || nil
-ie.random_mode = cgi.params['r'][0]
-ie.lookup_mode = cgi.params['l'][0]
-ie.stop_num = cgi.params['x'][0] || nil
-ie.setRandomSeed()
-
-mime_type = cgi.params['m'][0] || nil
-if mime_type:
-  header_options = ie.buildHeaders(mime_type)
-  # The CGI library wants the Content-Type header to be named 'type'. It
-  # will post two Content-Type headers otherwise.
-  header_options['type'] = header_options['Content-Type'].dup
-  header_options.delete('Content-Type')
-  cgi.out(header_options) do
-    ie.buildMediaFile(mime_type)
-  end
-else
-  cgi.out('type' => 'text/html') do
-    ie.buildPage()
-  end
-end
diff --git a/Tools/iExploder/iexploder-1.7.2/src/iexploder.rb b/Tools/iExploder/iexploder-1.7.2/src/iexploder.rb
deleted file mode 100644
index 34e4666..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/iexploder.rb
+++ /dev/null
@@ -1,792 +0,0 @@
-# encoding: ASCII-8BIT
-
-# iExploder - Generates bad HTML files to perform QA for web browsers.
-#
-# Copyright 2010 Thomas Stromberg - All Rights Reserved.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-require 'cgi'
-require 'yaml'
-
-require './scanner.rb'
-require './version.rb'
-
-# Used to speed up subtest generation
-$TEST_CACHE = {}
-
-# Media extensions to proper mime type map (not that we always listen'
-$MIME_MAP = {
-  'bmp' => 'image/bmp',
-  'gif' => 'image/gif',
-  'jpg' => 'image/jpeg',
-  'png' => 'image/png',
-  'svg' => 'image/svg+xml',
-  'tiff' => 'image/tiff',
-  'xbm' => 'image/xbm',
-  'ico' => 'image/x-icon',
-  'jng' => 'image/x-jng',
-  'xpm' => 'image/x-portable-pixmap',
-  'ogg' => 'audio/ogg',
-  'snd' => 'audio/basic',
-  'wav' => 'audio/wav'
-}
-
-# These tags get src properties more often than others
-$SRC_TAGS = ['img', 'audio', 'video', 'embed']
-
-class IExploder
-  attr_accessor :test_num, :subtest_data, :lookup_mode, :random_mode, :cgi_url, :browser, :claimed_browser
-  attr_accessor :offset, :lines, :stop_num, :config
-
-  def initialize(config_path)
-    @config = YAML::load(File.open(config_path))
-    @stop_num = nil
-    @subtest_data = nil
-    @test_num = 0
-    @cgi_url = '/iexploder.cgi'
-    @browser = 'UNKNOWN'
-    @claimed_browser = nil
-    readTagFiles()
-    return nil
-  end
-
-  def setRandomSeed
-    if @test_num > 0
-      srand(@test_num)
-    else
-      srand
-    end
-  end
-
-
-  def readTagFiles
-    # These if statements are so that mod_ruby doesn't have to reload the files
-    # each time
-    data_path = @config['mangle_data_path']
-    @cssTags = readTagsDir("#{data_path}/css-properties")
-    @cssPseudoTags = readTagsDir("#{data_path}/css-pseudo")
-    @cssAtRules = readTagsDir("#{data_path}/css-atrules")
-    @htmlTags = readTagsDir("#{data_path}/html-tags")
-    @htmlAttr = readTagsDir("#{data_path}/html-attrs")
-    @htmlValues = readTagsDir("#{data_path}/html-values")
-    @cssValues = readTagsDir("#{data_path}/css-values")
-    @headerValues = readTagsDir("#{data_path}/headers")
-    @protocolValues = readTagsDir("#{data_path}/protocols")
-    @mimeTypes = readTagsDir("#{data_path}/mime-types")
-    @media = readMediaDir("#{data_path}/media")
-  end
-
-  def readTagsDir(directory)
-    values = []
-    Dir.foreach(directory) { |filename|
-      if File.file?(directory + "/" + filename)
-        values = values + readTagFile(directory + "/" + filename)
-      end
-    }
-    return values.uniq
-  end
-
-  def readMediaDir(directory)
-    data = {}
-    Dir.foreach(directory) { |filename|
-      if File.file?(directory + "/" + filename)
-       (base, extension) = filename.split('.')
-        mime_type = $MIME_MAP[extension]
-        data[mime_type] = File.read(directory + "/" + filename)
-      end
-    }
-    return data
-  end
-
-  def readTagFile(filename)
-    list = Array.new
-    File.new(filename).readlines.each { |line|
-      line.chop!
-
-      # Don't include comments.
-      if (line !~ /^# /) && (line.length > 0)
-        list << line
-      end
-    }
-    return list
-  end
-
-
-  def generateHtmlValue(tag)
-    choice = rand(100)
-    tag = tag.sub('EXCLUDED_', '')
-    if tag =~ /^on/ and choice < 90
-      return generateHtmlValue('') + "()"
-    elsif tag == 'src' or tag == 'data' or tag == 'profile' and choice < 90
-      return generateGarbageUrl(tag)
-    end
-
-    case choice
-      when 0..50 then
-        return @htmlValues[rand(@htmlValues.length)]
-      when 51..75
-        return generateGarbageNumber()
-      when 76..85
-        return generateGarbageValue()
-      when 86..90
-        return generateGarbageNumber() + ',' + generateGarbageNumber()
-      when 91..98
-        return generateGarbageUrl(tag)
-    else
-      return generateOverflow()
-    end
-  end
-
-  def generateMediaUrl(tag)
-    mime_type = @media.keys[rand(@media.keys.length)]
-    return generateTestUrl(@test_num, nil, nil, mime_type)
-  end
-
-  def generateGarbageUrl(tag)
-    choice = rand(100)
-    case choice
-      when 0..30
-      return generateMediaUrl(tag)
-      when 31..50
-      return @protocolValues[rand(@protocolValues.length)] + '%' + generateGarbageValue()
-      when 51..60
-      return @protocolValues[rand(@protocolValues.length)] + '//../' + generateGarbageValue()
-      when 60..75
-      return @protocolValues[rand(@protocolValues.length)] + '//' + generateGarbageValue()
-      when 75..85
-      return generateOverflow() + ":" + generateGarbageValue()
-      when 86..97
-      return generateGarbageValue() + ":" + generateOverflow()
-    else
-      return generateOverflow()
-    end
-  end
-
-  def generateCssValue(property)
-    size_types = ['', 'em', 'px', '%', 'pt', 'pc', 'ex', 'in', 'cm', 'mm']
-
-    choice = rand(100)
-    case choice
-      when 0..50 then
-      # return the most likely scenario
-      case property.sub('EXCLUDED_', '')
-        when /-image|content/
-          return 'url(' + generateGarbageUrl(property) + ')'
-        when /-width|-radius|-spacing|margin|padding|height/
-          return generateGarbageValue() + size_types[rand(size_types.length)]
-        when /-color/
-          return generateGarbageColor()
-        when /-delay|-duration/
-          return generateGarbageValue() + 'ms'
-      else
-        return @cssValues[rand(@cssValues.length)]
-      end
-      when 51..75 then return generateGarbageNumber()
-      when 76..85 then return 'url(' + generateGarbageUrl(property) + ')'
-      when 85..98 then return generateGarbageValue()
-    else
-      return generateOverflow()
-    end
-  end
-
-  def generateGarbageColor()
-    case rand(100)
-      when 0..50 then return '#' + generateGarbageValue()
-      when 51..70 then return 'rgb(' + generateGarbageNumber() + ',' + generateGarbageNumber() + ',' + generateGarbageNumber() + ')'
-      when 71..98 then return 'rgb(' + generateGarbageNumber() + '%,' + generateGarbageNumber() + '%,' + generateGarbageNumber() + '%)'
-    else
-      return generateOverflow()
-    end
-  end
-
-  def generateGarbageNumber()
-    choice = rand(100)
-    case choice
-      when 0 then return '0'
-      when 1..40 then return '9' * rand(100)
-      when 41..60 then return '999999.' + rand(999999999999999999999).to_s
-      when 61..80 then return '-' + ('9' * rand(100))
-      when 81..90 then return '-999999.' + rand(999999999999999999999).to_s
-      when 91..98 then return generateGarbageText()
-    else
-      return generateOverflow()
-    end
-  end
-
-  def generateGarbageValue()
-    case rand(100)
-      when 0..30 then return rand(255).chr * rand(@config['buffer_overflow_length'])
-      when 31..50 then return "%n" * 50
-      when 51..65 then return ("&#" + rand(999999).to_s + ";") * rand(@config['max_garbage_text_size'])
-      when 66..70 then
-      junk = []
-      0.upto(rand(20)+1) do
-        junk << "\\x" + rand(65535).to_s(16)
-      end
-      return junk.join('') * rand(@config['max_garbage_text_size'])
-      when 71..99 then
-      junk = []
-      chars = '%?!$#^0123456789ABCDEF%#./\&|;'
-      0.upto(rand(20)+1) do
-        junk << chars[rand(chars.length)].chr
-      end
-      return junk.join('') * rand(@config['max_garbage_text_size'])
-    end
-  end
-
-  def generateOverflow()
-    return rand(255).chr * (@config['buffer_overflow_length'] + rand(500))
-  end
-
-  def generateGarbageText
-    case rand(100)
-      when 0..70 then return 'X' * 129
-      when 71..75 then return "%n" * 15
-      when 76..85 then return ("&#" + rand(9999999999999).to_s + ";") * rand(@config['max_garbage_text_size'])
-      when 86..90 then return generateGarbageValue()
-      when 91..98 then return rand(255).chr * rand(@config['max_garbage_text_size'])
-    else
-      return generateOverflow()
-    end
-  end
-
-  def isPropertyInBlacklist(properties)
-    # Format: [img, src] or [img, style, property]
-    blacklist_entries = []
-    if @config.has_key?('exclude') and @config['exclude']
-      blacklist_entries << properties.join('.')
-      wildcard_property = properties.dup
-      wildcard_property[0] = '*'
-      blacklist_entries << wildcard_property.join('.')
-      blacklist_entries.each do |entry|
-        if @config['exclude'].has_key?(entry) and @browser =~ /#{@config['exclude'][entry]}/
-          return true
-        end
-      end
-    end
-    return false
-  end
-
-  def generateCssStyling(tag)
-    out = ' style="'
-    0.upto(rand(@config['properties_per_style_max'])) {
-      property = @cssTags[rand(@cssTags.length)]
-      if isPropertyInBlacklist([tag, 'style', property])
-        property = "EXCLUDED_#{property}"
-      end
-      out << property
-
-      # very small chance we let the tag run on.
-      if rand(65) > 1
-        out << ": "
-      end
-
-      values = []
-      0.upto(rand(@config['attributes_per_style_property_max'])) {
-        values << generateCssValue(property)
-      }
-      out << values.join(' ')
-      # we almost always put the ; there.
-      if rand(65) > 1
-        out << ";\n    "
-      end
-    }
-    out << "\""
-    return out
-  end
-
-  def mangleTag(tag, no_close_chance=false)
-    if not no_close_chance and rand(100) < 15
-      return "</" + tag + ">"
-    end
-    out = "<" + tag
-    if rand(100) > 1
-      out << ' '
-    else
-      out << generateOverflow()
-    end
-
-    attrNum = rand(@config['attributes_per_html_tag_max']) + 1
-    attrs = []
-    # The HTML head tag does not have many useful attributes, but is always included in tests.
-    if tag == 'head' and rand(100) < 75
-      case rand(3)
-        when 0 then attrs << 'lang'
-        when 1 then attrs << 'dir'
-        when 2 then attrs << 'profile'
-      end
-    end
-    # 75% of the time, these tags get a src attribute
-    if $SRC_TAGS.include?(tag) and rand(100) < 75
-      if @config.has_key?('exclude') and @config['exclude'] and @config['exclude'].has_key?("#{tag}.src")
-        attrs << 'EXCLUDED_src'
-      else
-        attrs << 'src'
-      end
-    end
-
-    while attrs.length < attrNum
-      attribute = @htmlAttr[rand(@htmlAttr.length)]
-      if isPropertyInBlacklist([tag, attribute])
-        attribute = "EXCLUDED_#{attribute}"
-      end
-      attrs << attribute
-    end
-
-    # Add a few HTML attributes
-    for attr in attrs
-      out << attr
-      if rand(100) > 1
-        out << '='
-      end
-      if (rand(100) >= 50)
-        quoted = 1
-        out << "\""
-      else
-        quoted = nil
-      end
-      out << generateHtmlValue(attr)
-      if quoted
-        if rand(100) >= 10
-          out << "\""
-        end
-      end
-      if rand(100) >= 1
-        out << "\n  "
-      end
-    end
-
-    if rand(100) >= 25
-      out << generateCssStyling(tag)
-    end
-    out << ">\n"
-    return out
-  end
-
-  def nextTestNum()
-    if @subtest_data
-      return @test_num
-    elsif @random_mode
-      return rand(99999999999)
-    else
-      return @test_num  + 1
-    end
-  end
-
-  def generateCssPattern()
-    # Generate a CSS selector pattern.
-    choice = rand(100)
-    pattern = ''
-    case choice
-      when 0..84 then pattern = @htmlTags[rand(@htmlTags.length)].dup
-      when 85..89 then pattern = "*"
-      when 90..94 then pattern = @cssAtRules[rand(@cssAtRules.length)].dup
-      when 95..100 then pattern = ''
-    end
-
-    if rand(100) < 25
-      pattern << " " + @htmlTags[rand(@htmlTags.length)]
-    end
-
-    if rand(100) < 25
-      pattern << " > " + @htmlTags[rand(@htmlTags.length)]
-    end
-
-    if rand(100) < 25
-      pattern << " + " + @htmlTags[rand(@htmlTags.length)]
-    end
-
-    if rand(100) < 10
-      pattern << "*"
-    end
-
-
-    if rand(100) < 25
-      pseudo = @cssPseudoTags[rand(@cssPseudoTags.length)].dup
-      # These tags typically have a parenthesis
-      if (pseudo =~ /^lang|^nth|^not/ and rand(100) < 75 and pseudo !~ /\(/) or rand(100) < 20
-        pseudo << '('
-      end
-
-      if pseudo =~ /\(/
-        if rand(100) < 75
-          pseudo << generateGarbageValue()
-        end
-        if rand(100) < 75
-          pseudo << ')'
-        end
-      end
-      pattern << ":" + pseudo
-    end
-
-    if rand(100) < 20
-      html_attr = @htmlAttr[rand(@htmlAttr.length)]
-      match = '[' + html_attr
-      choice = rand(100)
-      garbage = generateGarbageValue()
-      case choice
-        when 0..25 then match << ']'
-        when 26..50 then match << "=\"#{garbage}\"]"
-        when 51..75 then match << "=~\"#{garbage}\"]"
-        when 76..99 then match << "|=\"#{garbage}\"]"
-      end
-      pattern << match
-    end
-
-    if rand(100) < 20
-      if rand(100) < 50
-        pattern << '.' + generateGarbageValue()
-      else
-        pattern << '.*'
-      end
-    end
-
-    if rand(100) < 20
-      pattern << '#' + generateGarbageValue()
-    end
-
-    if rand(100) < 5
-      pattern << ' #' + generateGarbageValue()
-    end
-
-    return pattern
-  end
-
-  def buildStyleTag()
-    out = "\n"
-    0.upto(rand(@config['properties_per_style_max'])) {
-      out << generateCssPattern()
-      if rand(100) < 90
-        out << " {\n"
-      end
-
-      0.upto(rand(@config['properties_per_style_max'])) {
-        property = @cssTags[rand(@cssTags.length)].dup
-        if isPropertyInBlacklist(['style', 'style', property])
-          property = "  EXCLUDED_#{property}"
-        end
-        out << "  #{property}: "
-
-        values = []
-        0.upto(rand(@config['attributes_per_style_property_max'])) {
-          values << generateCssValue(property)
-        }
-        out << values.join(' ')
-        if rand(100) < 95
-          out << ";\n"
-        end
-      }
-      if rand(100) < 90
-        out << "\n}\n"
-      end
-
-    }
-    return out
-  end
-
-
-  # Build any malicious javascript here. Fairly naive at the moment.
-  def buildJavaScript
-    target = @htmlTags[rand(@htmlTags.length)]
-    css_property = @cssTags[rand(@cssTags.length)]
-    css_property2 = @cssTags[rand(@cssTags.length)]
-    html_attr = @htmlAttr[rand(@htmlAttr.length)]
-    css_value = generateCssValue(css_property)
-    html_value = generateHtmlValue(html_attr)
-    html_value2 = generateGarbageNumber()
-    mangled = mangleTag(@htmlTags[rand(@htmlTags.length)]);
-    mangled2 = mangleTag(@htmlTags[rand(@htmlTags.length)]);
-
-    js = []
-    js << "window.onload=function(){"
-    js << "  var ietarget = document.createElement('#{target}');"
-    js << "  ietarget.style.#{css_property} = '#{css_value}';"
-    js << "  ietarget.#{html_attr} = '#{html_value}';"
-    js << "  document.body.appendChild(ietarget);"
-    js << "  ietarget.style.#{css_property2} = #{html_value2};"
-
-    js << "  document.write('#{mangled}');"
-    js << "  document.write('#{mangled2}');"
-    js << "}"
-    return js.join("\n")
-  end
-
-  def buildMediaFile(mime_type)
-    if @media.has_key?(mime_type)
-      data = @media[mime_type].dup
-    else
-      puts "No media found for #{mime_type}"
-      data = generateGarbageText()
-    end
-
-    # corrupt it in a subtle way
-    choice = rand(100)
-    if choice > 50
-      garbage = generateGarbageValue()
-    else
-      garbage = rand(255).chr * rand(8)
-    end
-
-    if "1.9".respond_to?(:encoding)
-      garbage.force_encoding('ASCII-8BIT')
-      data.force_encoding('ASCII-8BIT')
-    end
-
-    garbage_start = rand(data.length)
-    garbage_end = garbage_start + garbage.length
-    data[garbage_start..garbage_end] = garbage
-    if rand(100) < 15
-      data << generateGarbageValue()
-    end
-    return data
-  end
-
-  # Parse the subtest data passed in as part of the URL
-  def parseSubTestData(subtest_data)
-    # Initialize with one line at 0
-    if not subtest_data or subtest_data.to_i == 0
-      return [@config['initial_subtest_width'], [0]]
-    end
-     (lines_at_time, offsets_string) = subtest_data.split('_')
-    offsets = offsets_string.split(',').map! {|x| x.to_i }
-    return [lines_at_time.to_i, offsets]
-  end
-
-  def generateTestUrl(test_num, subtest_width=nil, subtest_offsets=nil, mime_type=nil)
-    url = @cgi_url + '?'
-    if subtest_width
-      if subtest_offsets.length > @config['subtest_combinations_max']
-        url << "t=" << test_num.to_s << "&l=test_redirect&z=THE_END"
-      else
-        url << "t=" << test_num.to_s << "&s=" << subtest_width.to_s << "_" << subtest_offsets.join(',')
-      end
-    else
-      url << "t=" << test_num.to_s
-    end
-
-    if @random_mode
-      url << "&r=1"
-    elsif @stop_num
-      url << "&x=" << @stop_num.to_s
-    end
-
-    if mime_type
-      url << '&m=' + CGI::escape(mime_type)
-    end
-
-    url << "&b=" << CGI::escape(@browser)
-    return url
-  end
-
-  def buildBodyTags(tag_count)
-    tagList = ['body']
-    # subtract the <body> tag from tag_count.
-    1.upto(tag_count-1) { tagList << @htmlTags[rand(@htmlTags.length)] }
-
-    # Lean ourselves toward lots of img and src tests
-    for tag, percent in @config['favor_html_tags']
-      if rand(100) < percent.to_f
-        # Don't overwrite the body tag.
-        tagList[rand(tagList.length-1)+1] = tag
-      end
-    end
-
-    # Now we have our hitlist of tags,lets mangle them.
-    mangled_tags = []
-    tagList.each do |tag|
-      tag_data = mangleTag(tag)
-      if tag == 'script'
-        if rand(100) < 40
-          tag_data = "<script>"
-        end
-        tag_data << buildJavaScript() + "\n" + "</script>\n"
-      elsif tag == 'style'
-        if rand(100) < 40
-          tag_data = "<style>"
-        end
-        tag_data << buildStyleTag() + "\n" + "</style>\n"
-      elsif rand(100) <= 90
-        tag_data << generateGarbageText() << "\n"
-      else
-        tag_data << "\n"
-      end
-
-      if rand(100) <= 33
-        tag_data << "</#{tag}>\n"
-      end
-      mangled_tags << "\n<!-- START #{tag} -->\n" + tag_data + "\n<!-- END #{tag} -->\n"
-    end
-    return mangled_tags
-  end
-
-  def buildHeaderTags(tag_count)
-    valid_head_tags = ['title', 'base', 'link', 'meta']
-    header_tags = ['html', 'head']
-    1.upto(tag_count-1) { header_tags << valid_head_tags[rand(valid_head_tags.length)] }
-    header_tags << @htmlTags[rand(@htmlTags.length)]
-    mangled_tags = []
-    header_tags.each do |tag|
-      mangled_tags << mangleTag(tag, no_close_chance=true)
-    end
-    return mangled_tags
-  end
-
-  def buildSurvivedPage(page_type)
-    page = "<html><head>"
-    page << "<body>Bummer. You survived both redirects. Let me go sulk in the corner.</body>"
-    page << "</html>"
-    return page
-  end
-
-  def buildRedirect(test_num, subtest_data, lookup_mode, stop_num=nil)
-    # no more redirects.
-    if lookup_mode == '1' or stop_num == test_num
-      return ''
-    end
-
-    if subtest_data
-      width, offsets = parseSubTestData(@subtest_data)
-    else
-      width, offsets = nil
-    end
-
-    # We still need a redirect, but don't bother generating new data.
-    if lookup_mode
-      redirect_url = generateTestUrl(test_num, width, offsets)
-      if lookup_mode == 'test_redirect'
-        redirect_url << "&l=test_another_redirect"
-      elsif lookup_mode == 'test_another_redirect'
-        redirect_url << "&l=survived_redirect"
-      else
-        redirect_url << "&l=#{lookup_mode}"
-      end
-    else
-      # This is a normal redirect going on to the next page. If we have subtest, get the next one.
-      if subtest_data
-        width, offsets = combine_combo_creator(@config['html_tags_per_page'], width, offsets)[0..1]
-      end
-      redirect_url = generateTestUrl(nextTestNum(), width, offsets)
-    end
-
-    redirect_code = "\t<META HTTP-EQUIV=\"Refresh\" content=\"0;URL=#{redirect_url}\">\n"
-    # use both techniques, because you never know how you might be corrupting yourself.
-    redirect_code << "\t<script language=\"javascript\">setTimeout('window.location=\"#{redirect_url}\"', 1000);</script>\n"
-    return redirect_code
-  end
-
-  def buildPage()
-    if @lookup_mode == 'survived_redirect'
-      return self.buildSurvivedPage(@lookup_mode)
-    end
-    tag_count = @config['html_tags_per_page']
-
-    if $TEST_CACHE.has_key?(@test_num)
-     (header_tags, body_tags) = $TEST_CACHE[@test_num]
-    else
-      header_tags = buildHeaderTags(3)
-      body_tags = buildBodyTags(tag_count - header_tags.length)
-    end
-    required_tags = {
-      0 => 'html',
-      1 => 'head',
-      header_tags.length => 'body'
-    }
-
-    if @subtest_data and @subtest_data.length > 0
-      if not $TEST_CACHE.has_key?(@test_num)
-        $TEST_CACHE[@test_num] = [header_tags, body_tags]
-      end
-      (width, offsets) = parseSubTestData(@subtest_data)
-      lines = combine_combo_creator(tag_count, width, offsets)[2]
-      all_tags = header_tags + body_tags
-      body_start = header_tags.length
-      header_tags = []
-      body_tags = []
-      # <html> and <body> are required, regardless of their existence in the subtest data.
-      0.upto(tag_count) do |line_number|
-        tag_data = nil
-        if lines.include?(line_number)
-          tag_data = all_tags[line_number]
-        elsif required_tags.key?(line_number)
-          tag_data = "<" + required_tags[line_number] + ">"
-        end
-        if tag_data
-          if line_number < body_start
-            header_tags << tag_data
-          else
-            body_tags << tag_data
-          end
-        end
-      end
-      header_tags << "<!-- subtest mode: #{offsets.length} combinations, width: #{width} -->"
-    end
-
-    htmlText = header_tags[0..1].join("\n\t")
-    htmlText << buildRedirect(@test_num, @subtest_data, @lookup_mode, @stop_num)
-    htmlText << "<title>[#{@test_num}:#{@subtest_data}] iExploder #{$VERSION} - #{generateGarbageText()}</title>\n"
-    if @claimed_browser and @claimed_browser.length > 1
-      show_browser = @claimed_browser
-    else
-      show_browser = @browser
-    end
-    htmlText << "\n<!-- iExploder #{$VERSION} | test #{@test_num}:#{@subtest_data} at #{Time.now} -->\n"
-    htmlText << "<!-- browser: #{show_browser} -->\n"
-    htmlText << header_tags[2..-1].join("\n\t")
-    htmlText << "\n</head>\n\n"
-    htmlText << body_tags.join("\n")
-    htmlText << "</body>\n</html>"
-    return htmlText
-  end
-
-  def buildHeaders(mime_type)
-    use_headers = []
-    banned_headers = []
-    response = {'Content-Type' => mime_type}
-    0.upto(rand(@config['headers_per_page_max'])) do
-      try_header = @headerValues[rand(@headerValues.length)]
-      if ! banned_headers.include?(try_header.downcase)
-        use_headers << try_header
-      end
-    end
-    for header in use_headers.uniq
-      if rand(100) > 75
-        response[header] = generateGarbageNumber()
-      else
-        response[header] = generateGarbageUrl(header)
-      end
-    end
-    return response
-  end
-end
-
-
-# for testing
-if $0 == __FILE__
-  ie = IExploder.new('config.yaml')
-  ie.test_num = ARGV[0].to_i || 1
-  ie.subtest_data = ARGV[1] || nil
-  mime_type = ARGV[2] || nil
-  ie.setRandomSeed()
-  if not mime_type
-    html_output = ie.buildPage()
-    puts html_output
-  else
-    headers = ie.buildHeaders(mime_type)
-    for (key, value) in headers
-      puts "#{key}: #{value}"
-    end
-    puts "Mime-Type: #{mime_type}"
-    puts ie.buildMediaFile(mime_type)
-  end
-end
diff --git a/Tools/iExploder/iexploder-1.7.2/src/index.html b/Tools/iExploder/iexploder-1.7.2/src/index.html
deleted file mode 100644
index 8b2cef6..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/index.html
+++ /dev/null
@@ -1,105 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-  <title>iExploder</title>
-  <style type="text/css">
-body {
-  background-color: #bbb;
-  background-image: -moz-linear-gradient(0% 100% 90deg, #e5e5e5, #666, #e5e5e5 99%);
-  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#e5e5e5), to(#bbb), color-stop(.1,#666));
-}
-
-h1 {
-  margin: 0;
-  font-size: 30px;
-  padding-top: 4px;
-  padding-bottom: 4px;
-}
-
-img {
-  width: 64px;
-  margin-right: 8px;
-  float: left;
-}
-
-form {
-  display: inline;
-}
-
-.content {
-  width: 850px;
-  margin-left: auto;
-  margin-right: auto; 
-  margin-top: 2em;
-  border: 1px solid #000;
-  background-color: #f5f5f5;
-  box-shadow: 5px 5px 5px #333;
-  -moz-box-shadow: 5px 5px 5px #333;
-  -webkit-box-shadow: 5px 5px 5px #333;
-}
-
-.header {
-  background-color: #999;
-}
-
-.copyright {
-  margin-top: 4em;
-  margin-left: auto;
-  margin-right: auto;
-  font-size: 9px;
-  text-align: center;
-  color: #333;
-}
-
-ul {
-  clear: both;
-}
-
-.formtext {
-  width: 16em;
-  display: inline-block;
-}
-
-</style>
-</head>
-<body>
-
-<div class="content">
-  <div class="header"><img src="media/bug.png" alt="Bug logo"><h1>iExploder: Browser Quality Assurance Tester</h1></div>
-
-<ul class="links">
-  <li><a href="iexploder.cgi">Start from the beginning!</a></li>
-  <li><a href="iexploder.cgi?r=1">Start from a random location!</a></li>
-</ul>
-  
-<ul class="formlinks">
-  <li><div class="formtext">Test from:</div>
-    <form method="get" action="iexploder.cgi" name="test">
-	<input size="12" name="t" value="0"> 
-	to: <input size="12" name="x" value=""> 
-        <input value="Go!" type="submit">
-    </form>
-  </li>
-
-
-  <li><div class="formtext">Lookup individual test:</div>
-    <form method="get" action="iexploder.cgi" name="test">
-	<input type="hidden" name="l" value="1">
-	<input size="12" name="t" value="1"> Subtest: <input size="7" name="s" value="">
-        <input value="Go!" type="submit">
-    </form>
-  </li>
-
-  <li><div class="formtext">Generate smaller testcase for:</div>
-    <form method="get" action="iexploder.cgi" name="test">
-	<input size="12" name="t" value="1"> 
-	<input type="hidden" name="s" value="0">
-        <input value="Go!" type="submit">
-    </form>
-  </li>
-
-</ul>
-</div>
-<div class="copyright">&copy; 2005-2010 Thomas Str&ouml;mberg &mdash; <a href="http://iexploder.googlecode.com/">iexploder.googlecode.com</a></div>
-</body>
-</html>
diff --git a/Tools/iExploder/iexploder-1.7.2/src/media/blank.ogg b/Tools/iExploder/iexploder-1.7.2/src/media/blank.ogg
deleted file mode 100644
index 2629f98..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/media/blank.ogg
+++ /dev/null
Binary files differ
diff --git a/Tools/iExploder/iexploder-1.7.2/src/media/blank.snd b/Tools/iExploder/iexploder-1.7.2/src/media/blank.snd
deleted file mode 100644
index 32a4008..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/media/blank.snd
+++ /dev/null
Binary files differ
diff --git a/Tools/iExploder/iexploder-1.7.2/src/media/blank.wav b/Tools/iExploder/iexploder-1.7.2/src/media/blank.wav
deleted file mode 100644
index b9c31f7..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/media/blank.wav
+++ /dev/null
Binary files differ
diff --git a/Tools/iExploder/iexploder-1.7.2/src/media/bug.bmp b/Tools/iExploder/iexploder-1.7.2/src/media/bug.bmp
deleted file mode 100644
index 808870a..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/media/bug.bmp
+++ /dev/null
Binary files differ
diff --git a/Tools/iExploder/iexploder-1.7.2/src/media/bug.gif b/Tools/iExploder/iexploder-1.7.2/src/media/bug.gif
deleted file mode 100644
index 22e4c22..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/media/bug.gif
+++ /dev/null
Binary files differ
diff --git a/Tools/iExploder/iexploder-1.7.2/src/media/bug.ico b/Tools/iExploder/iexploder-1.7.2/src/media/bug.ico
deleted file mode 100644
index ebc5c64..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/media/bug.ico
+++ /dev/null
Binary files differ
diff --git a/Tools/iExploder/iexploder-1.7.2/src/media/bug.jng b/Tools/iExploder/iexploder-1.7.2/src/media/bug.jng
deleted file mode 100644
index 39e277c..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/media/bug.jng
+++ /dev/null
Binary files differ
diff --git a/Tools/iExploder/iexploder-1.7.2/src/media/bug.jpg b/Tools/iExploder/iexploder-1.7.2/src/media/bug.jpg
deleted file mode 100644
index ca5611a..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/media/bug.jpg
+++ /dev/null
Binary files differ
diff --git a/Tools/iExploder/iexploder-1.7.2/src/media/bug.png b/Tools/iExploder/iexploder-1.7.2/src/media/bug.png
deleted file mode 100755
index 4d658d7..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/media/bug.png
+++ /dev/null
Binary files differ
diff --git a/Tools/iExploder/iexploder-1.7.2/src/media/bug.svg b/Tools/iExploder/iexploder-1.7.2/src/media/bug.svg
deleted file mode 100644
index d42c0d5..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/media/bug.svg
+++ /dev/null
@@ -1,16389 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
-  "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
-<svg width="128" height="128">
-  <circle cx="0" cy="0" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="19" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="20" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="21" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="22" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="23" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="24" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="25" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="26" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="27" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="28" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="29" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="30" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="31" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="32" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="33" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="34" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="35" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="36" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="37" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="38" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="39" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="40" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="41" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="42" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="43" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="44" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="45" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="46" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="47" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="48" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="49" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="50" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="51" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="52" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="53" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="54" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="55" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="56" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="57" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="58" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="59" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="60" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="61" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="62" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="63" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="64" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="65" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="66" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="67" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="68" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="69" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="70" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="71" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="72" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="73" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="74" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="75" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="76" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="77" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="78" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="79" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="80" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="81" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="82" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="83" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="84" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="85" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="86" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="87" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="88" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="89" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="90" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="91" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="92" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="93" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="94" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="95" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="96" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="97" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="98" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="99" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="100" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="101" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="102" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="103" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="104" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="105" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="106" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="107" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="108" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="109" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="110" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="111" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="112" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="113" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="114" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="0" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="1" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="19" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="20" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="21" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="22" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="23" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="24" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="25" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="26" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="27" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="28" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="29" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="30" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="31" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="32" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="33" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="34" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="35" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="36" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="37" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="38" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="39" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="40" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="41" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="42" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="43" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="44" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="45" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="46" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="47" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="48" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="49" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="50" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="51" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="52" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="53" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="54" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="55" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="56" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="57" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="58" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="59" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="60" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="61" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="62" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="63" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="64" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="65" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="66" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="67" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="68" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="69" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="70" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="71" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="72" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="73" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="74" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="75" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="76" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="77" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="78" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="79" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="80" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="81" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="82" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="83" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="84" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="85" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="86" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="87" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="88" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="89" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="90" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="91" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="92" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="93" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="94" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="95" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="96" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="97" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="98" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="99" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="100" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="101" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="102" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="103" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="104" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="105" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="106" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="107" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="108" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="109" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="110" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="111" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="112" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="113" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="114" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="1" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="2" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="19" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="20" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="21" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="22" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="23" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="24" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="25" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="26" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="27" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="28" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="29" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="30" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="31" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="32" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="33" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="34" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="35" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="36" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="37" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="38" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="39" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="40" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="41" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="42" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="43" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="44" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="45" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="46" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="47" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="48" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="49" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="50" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="51" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="52" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="53" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="54" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="55" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="56" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="57" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="58" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="59" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="60" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="61" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="62" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="63" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="64" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="65" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="66" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="67" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="68" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="69" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="70" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="71" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="72" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="73" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="74" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="75" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="76" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="77" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="78" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="79" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="80" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="81" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="82" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="83" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="84" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="85" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="86" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="87" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="88" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="89" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="90" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="91" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="92" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="93" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="94" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="95" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="96" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="97" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="98" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="99" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="100" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="101" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="102" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="103" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="104" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="105" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="106" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="107" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="108" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="109" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="110" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="111" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="112" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="113" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="114" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="2" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="3" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="19" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="20" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="21" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="22" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="23" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="24" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="25" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="26" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="27" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="28" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="29" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="30" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="31" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="32" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="33" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="34" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="35" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="36" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="37" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="38" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="39" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="40" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="41" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="42" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="43" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="44" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="45" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="46" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="47" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="48" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="49" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="50" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="51" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="52" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="53" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="54" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="55" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="56" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="57" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="58" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="59" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="60" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="61" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="62" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="63" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="64" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="65" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="66" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="67" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="68" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="69" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="70" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="71" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="72" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="73" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="74" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="75" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="76" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="77" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="78" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="79" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="80" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="81" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="82" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="83" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="84" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="85" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="86" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="87" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="88" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="89" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="90" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="91" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="92" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="93" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="94" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="95" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="96" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="97" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="98" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="99" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="100" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="101" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="102" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="103" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="104" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="105" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="106" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="107" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="108" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="109" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="110" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="111" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="112" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="113" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="114" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="3" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="4" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="19" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="20" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="21" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="22" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="23" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="24" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="25" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="26" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="27" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="28" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="29" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="30" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="31" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="32" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="33" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="34" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="35" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="36" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="37" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="38" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="39" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="40" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="41" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="42" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="43" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="44" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="45" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="46" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="47" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="48" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="49" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="50" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="51" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="52" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="53" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="54" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="55" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="56" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="57" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="58" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="59" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="60" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="61" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="62" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="63" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="64" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="65" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="66" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="67" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="68" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="69" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="70" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="71" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="72" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="73" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="74" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="75" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="76" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="77" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="78" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="79" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="80" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="81" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="82" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="83" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="84" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="85" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="86" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="87" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="88" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="89" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="90" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="91" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="92" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="93" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="94" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="95" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="96" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="97" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="98" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="99" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="100" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="101" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="102" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="103" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="104" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="105" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="106" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="107" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="108" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="109" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="110" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="111" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="112" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="113" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="114" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="4" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="5" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="19" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="20" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="21" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="22" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="23" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="24" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="25" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="26" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="27" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="28" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="29" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="30" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="31" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="32" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="33" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="34" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="35" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="36" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="37" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="38" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="39" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="40" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="41" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="42" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="43" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="44" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="45" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="46" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="47" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="48" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="49" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="50" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="51" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="52" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="53" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="54" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="55" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="56" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="57" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="58" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="59" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="60" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="61" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="62" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="63" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="64" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="65" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="66" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="67" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="68" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="69" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="70" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="71" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="72" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="73" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="74" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="75" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="76" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="77" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="78" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="79" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="80" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="81" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="82" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="83" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="84" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="85" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="86" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="87" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="88" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="89" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="90" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="91" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="92" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="93" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="94" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="95" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="96" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="97" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="98" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="99" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="100" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="101" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="102" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="103" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="104" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="105" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="106" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="107" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="108" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="109" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="110" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="111" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="112" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="113" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="114" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="5" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="6" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="19" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="20" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="21" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="22" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="23" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="24" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="25" cy="6" r="1" fill="rgba(61,30,13,0.113725)"/>
-  <circle cx="26" cy="6" r="1" fill="rgba(61,30,13,0.34902)"/>
-  <circle cx="27" cy="6" r="1" fill="rgba(61,30,13,0.00392157)"/>
-  <circle cx="28" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="29" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="30" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="31" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="32" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="33" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="34" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="35" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="36" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="37" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="38" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="39" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="40" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="41" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="42" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="43" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="44" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="45" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="46" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="47" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="48" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="49" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="50" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="51" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="52" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="53" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="54" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="55" cy="6" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="56" cy="6" r="1" fill="rgba(67,35,17,0)"/>
-  <circle cx="57" cy="6" r="1" fill="rgba(74,42,21,0)"/>
-  <circle cx="58" cy="6" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="59" cy="6" r="1" fill="rgba(85,53,29,0)"/>
-  <circle cx="60" cy="6" r="1" fill="rgba(91,58,33,0)"/>
-  <circle cx="61" cy="6" r="1" fill="rgba(96,63,37,0)"/>
-  <circle cx="62" cy="6" r="1" fill="rgba(101,69,42,0)"/>
-  <circle cx="63" cy="6" r="1" fill="rgba(105,74,47,0)"/>
-  <circle cx="64" cy="6" r="1" fill="rgba(111,79,51,0)"/>
-  <circle cx="65" cy="6" r="1" fill="rgba(112,81,53,0)"/>
-  <circle cx="66" cy="6" r="1" fill="rgba(108,76,48,0)"/>
-  <circle cx="67" cy="6" r="1" fill="rgba(102,71,44,0)"/>
-  <circle cx="68" cy="6" r="1" fill="rgba(98,65,39,0)"/>
-  <circle cx="69" cy="6" r="1" fill="rgba(93,60,35,0)"/>
-  <circle cx="70" cy="6" r="1" fill="rgba(87,55,31,0)"/>
-  <circle cx="71" cy="6" r="1" fill="rgba(82,49,27,0)"/>
-  <circle cx="72" cy="6" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="73" cy="6" r="1" fill="rgba(69,38,18,0)"/>
-  <circle cx="74" cy="6" r="1" fill="rgba(63,33,15,0)"/>
-  <circle cx="75" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="76" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="77" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="78" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="79" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="80" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="81" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="82" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="83" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="84" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="85" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="86" cy="6" r="1" fill="rgba(61,31,14,0)"/>
-  <circle cx="87" cy="6" r="1" fill="rgba(62,33,16,0)"/>
-  <circle cx="88" cy="6" r="1" fill="rgba(61,29,13,0)"/>
-  <circle cx="89" cy="6" r="1" fill="rgba(63,32,14,0)"/>
-  <circle cx="90" cy="6" r="1" fill="rgba(68,37,18,0)"/>
-  <circle cx="91" cy="6" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="92" cy="6" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="93" cy="6" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="94" cy="6" r="1" fill="rgba(81,49,26,0)"/>
-  <circle cx="95" cy="6" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="96" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="97" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="98" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="99" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="100" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="101" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="102" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="103" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="104" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="105" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="106" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="107" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="108" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="109" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="110" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="111" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="112" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="113" cy="6" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="114" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="6" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="7" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="19" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="20" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="21" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="22" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="23" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="24" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="25" cy="7" r="1" fill="rgba(61,30,13,0.443137)"/>
-  <circle cx="26" cy="7" r="1" fill="rgba(61,30,13,0.780392)"/>
-  <circle cx="27" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="28" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="29" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="30" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="31" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="32" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="33" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="34" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="35" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="36" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="37" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="38" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="39" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="40" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="41" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="42" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="43" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="44" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="45" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="46" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="47" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="48" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="49" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="50" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="51" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="52" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="53" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="54" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="55" cy="7" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="56" cy="7" r="1" fill="rgba(67,35,17,0)"/>
-  <circle cx="57" cy="7" r="1" fill="rgba(74,42,21,0)"/>
-  <circle cx="58" cy="7" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="59" cy="7" r="1" fill="rgba(85,53,29,0)"/>
-  <circle cx="60" cy="7" r="1" fill="rgba(91,58,33,0)"/>
-  <circle cx="61" cy="7" r="1" fill="rgba(96,63,37,0)"/>
-  <circle cx="62" cy="7" r="1" fill="rgba(101,69,42,0)"/>
-  <circle cx="63" cy="7" r="1" fill="rgba(105,74,47,0)"/>
-  <circle cx="64" cy="7" r="1" fill="rgba(111,79,51,0)"/>
-  <circle cx="65" cy="7" r="1" fill="rgba(112,81,53,0)"/>
-  <circle cx="66" cy="7" r="1" fill="rgba(108,76,48,0)"/>
-  <circle cx="67" cy="7" r="1" fill="rgba(102,71,44,0)"/>
-  <circle cx="68" cy="7" r="1" fill="rgba(98,65,39,0)"/>
-  <circle cx="69" cy="7" r="1" fill="rgba(93,60,35,0)"/>
-  <circle cx="70" cy="7" r="1" fill="rgba(87,55,31,0)"/>
-  <circle cx="71" cy="7" r="1" fill="rgba(82,49,27,0)"/>
-  <circle cx="72" cy="7" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="73" cy="7" r="1" fill="rgba(69,38,18,0)"/>
-  <circle cx="74" cy="7" r="1" fill="rgba(63,33,15,0)"/>
-  <circle cx="75" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="76" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="77" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="78" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="79" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="80" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="81" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="82" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="83" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="84" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="85" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="86" cy="7" r="1" fill="rgba(61,31,14,0)"/>
-  <circle cx="87" cy="7" r="1" fill="rgba(62,33,16,0)"/>
-  <circle cx="88" cy="7" r="1" fill="rgba(61,29,13,0)"/>
-  <circle cx="89" cy="7" r="1" fill="rgba(63,32,14,0)"/>
-  <circle cx="90" cy="7" r="1" fill="rgba(68,37,18,0)"/>
-  <circle cx="91" cy="7" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="92" cy="7" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="93" cy="7" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="94" cy="7" r="1" fill="rgba(81,49,26,0)"/>
-  <circle cx="95" cy="7" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="96" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="97" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="98" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="99" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="100" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="101" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="102" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="103" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="104" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="105" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="106" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="107" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="108" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="109" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="110" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="111" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="112" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="113" cy="7" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="114" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="7" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="8" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="19" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="20" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="21" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="22" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="23" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="24" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="25" cy="8" r="1" fill="rgba(61,30,13,0.184314)"/>
-  <circle cx="26" cy="8" r="1" fill="rgba(61,30,13,0.866667)"/>
-  <circle cx="27" cy="8" r="1" fill="rgba(61,30,13,0.0862745)"/>
-  <circle cx="28" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="29" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="30" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="31" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="32" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="33" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="34" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="35" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="36" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="37" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="38" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="39" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="40" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="41" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="42" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="43" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="44" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="45" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="46" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="47" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="48" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="49" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="50" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="51" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="52" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="53" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="54" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="55" cy="8" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="56" cy="8" r="1" fill="rgba(67,35,17,0)"/>
-  <circle cx="57" cy="8" r="1" fill="rgba(74,42,21,0)"/>
-  <circle cx="58" cy="8" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="59" cy="8" r="1" fill="rgba(85,53,29,0)"/>
-  <circle cx="60" cy="8" r="1" fill="rgba(91,58,33,0)"/>
-  <circle cx="61" cy="8" r="1" fill="rgba(96,63,37,0)"/>
-  <circle cx="62" cy="8" r="1" fill="rgba(101,69,42,0)"/>
-  <circle cx="63" cy="8" r="1" fill="rgba(105,74,47,0)"/>
-  <circle cx="64" cy="8" r="1" fill="rgba(111,79,51,0)"/>
-  <circle cx="65" cy="8" r="1" fill="rgba(112,81,53,0)"/>
-  <circle cx="66" cy="8" r="1" fill="rgba(108,76,48,0)"/>
-  <circle cx="67" cy="8" r="1" fill="rgba(102,71,44,0)"/>
-  <circle cx="68" cy="8" r="1" fill="rgba(98,65,39,0)"/>
-  <circle cx="69" cy="8" r="1" fill="rgba(93,60,35,0)"/>
-  <circle cx="70" cy="8" r="1" fill="rgba(87,55,31,0)"/>
-  <circle cx="71" cy="8" r="1" fill="rgba(82,49,27,0)"/>
-  <circle cx="72" cy="8" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="73" cy="8" r="1" fill="rgba(69,38,18,0)"/>
-  <circle cx="74" cy="8" r="1" fill="rgba(63,33,15,0)"/>
-  <circle cx="75" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="76" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="77" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="78" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="79" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="80" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="81" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="82" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="83" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="84" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="85" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="86" cy="8" r="1" fill="rgba(61,31,14,0)"/>
-  <circle cx="87" cy="8" r="1" fill="rgba(62,33,16,0)"/>
-  <circle cx="88" cy="8" r="1" fill="rgba(61,29,13,0)"/>
-  <circle cx="89" cy="8" r="1" fill="rgba(63,32,14,0)"/>
-  <circle cx="90" cy="8" r="1" fill="rgba(68,37,18,0)"/>
-  <circle cx="91" cy="8" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="92" cy="8" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="93" cy="8" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="94" cy="8" r="1" fill="rgba(81,49,26,0)"/>
-  <circle cx="95" cy="8" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="96" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="97" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="98" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="99" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="100" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="101" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="102" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="103" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="104" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="105" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="106" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="107" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="108" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="109" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="110" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="111" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="112" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="113" cy="8" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="114" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="8" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="9" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="19" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="20" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="21" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="22" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="23" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="24" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="25" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="26" cy="9" r="1" fill="rgba(61,30,13,0.74902)"/>
-  <circle cx="27" cy="9" r="1" fill="rgba(61,30,13,0.403922)"/>
-  <circle cx="28" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="29" cy="9" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="30" cy="9" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="31" cy="9" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="32" cy="9" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="33" cy="9" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="34" cy="9" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="35" cy="9" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="36" cy="9" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="37" cy="9" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="38" cy="9" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="39" cy="9" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="40" cy="9" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="41" cy="9" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="42" cy="9" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="43" cy="9" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="44" cy="9" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="45" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="46" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="47" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="48" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="49" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="50" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="51" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="52" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="53" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="54" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="55" cy="9" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="56" cy="9" r="1" fill="rgba(67,35,17,0)"/>
-  <circle cx="57" cy="9" r="1" fill="rgba(74,42,21,0)"/>
-  <circle cx="58" cy="9" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="59" cy="9" r="1" fill="rgba(85,53,29,0)"/>
-  <circle cx="60" cy="9" r="1" fill="rgba(91,58,33,0)"/>
-  <circle cx="61" cy="9" r="1" fill="rgba(96,63,37,0)"/>
-  <circle cx="62" cy="9" r="1" fill="rgba(101,69,42,0)"/>
-  <circle cx="63" cy="9" r="1" fill="rgba(105,74,47,0)"/>
-  <circle cx="64" cy="9" r="1" fill="rgba(111,79,51,0)"/>
-  <circle cx="65" cy="9" r="1" fill="rgba(112,81,53,0)"/>
-  <circle cx="66" cy="9" r="1" fill="rgba(108,76,48,0)"/>
-  <circle cx="67" cy="9" r="1" fill="rgba(102,71,44,0)"/>
-  <circle cx="68" cy="9" r="1" fill="rgba(98,65,39,0)"/>
-  <circle cx="69" cy="9" r="1" fill="rgba(93,60,35,0)"/>
-  <circle cx="70" cy="9" r="1" fill="rgba(87,55,31,0)"/>
-  <circle cx="71" cy="9" r="1" fill="rgba(82,49,27,0)"/>
-  <circle cx="72" cy="9" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="73" cy="9" r="1" fill="rgba(69,38,18,0)"/>
-  <circle cx="74" cy="9" r="1" fill="rgba(63,33,15,0)"/>
-  <circle cx="75" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="76" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="77" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="78" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="79" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="80" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="81" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="82" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="83" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="84" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="85" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="86" cy="9" r="1" fill="rgba(61,31,14,0)"/>
-  <circle cx="87" cy="9" r="1" fill="rgba(62,33,16,0)"/>
-  <circle cx="88" cy="9" r="1" fill="rgba(61,29,13,0)"/>
-  <circle cx="89" cy="9" r="1" fill="rgba(63,32,14,0)"/>
-  <circle cx="90" cy="9" r="1" fill="rgba(68,37,18,0)"/>
-  <circle cx="91" cy="9" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="92" cy="9" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="93" cy="9" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="94" cy="9" r="1" fill="rgba(81,49,26,0)"/>
-  <circle cx="95" cy="9" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="96" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="97" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="98" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="99" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="100" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="101" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="102" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="103" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="104" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="105" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="106" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="107" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="108" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="109" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="110" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="111" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="112" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="113" cy="9" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="114" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="9" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="10" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="19" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="20" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="21" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="22" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="23" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="24" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="25" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="26" cy="10" r="1" fill="rgba(61,30,13,0.443137)"/>
-  <circle cx="27" cy="10" r="1" fill="rgba(61,30,13,0.831373)"/>
-  <circle cx="28" cy="10" r="1" fill="rgba(62,31,14,0.027451)"/>
-  <circle cx="29" cy="10" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="30" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="31" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="32" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="33" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="34" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="35" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="36" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="37" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="38" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="39" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="40" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="41" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="42" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="43" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="44" cy="10" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="45" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="46" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="47" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="48" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="49" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="50" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="51" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="52" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="53" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="54" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="55" cy="10" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="56" cy="10" r="1" fill="rgba(67,35,17,0)"/>
-  <circle cx="57" cy="10" r="1" fill="rgba(74,42,21,0)"/>
-  <circle cx="58" cy="10" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="59" cy="10" r="1" fill="rgba(85,53,29,0)"/>
-  <circle cx="60" cy="10" r="1" fill="rgba(91,58,33,0)"/>
-  <circle cx="61" cy="10" r="1" fill="rgba(96,63,37,0)"/>
-  <circle cx="62" cy="10" r="1" fill="rgba(101,69,42,0)"/>
-  <circle cx="63" cy="10" r="1" fill="rgba(105,74,47,0)"/>
-  <circle cx="64" cy="10" r="1" fill="rgba(111,79,51,0)"/>
-  <circle cx="65" cy="10" r="1" fill="rgba(112,81,53,0)"/>
-  <circle cx="66" cy="10" r="1" fill="rgba(108,76,48,0)"/>
-  <circle cx="67" cy="10" r="1" fill="rgba(102,71,44,0)"/>
-  <circle cx="68" cy="10" r="1" fill="rgba(98,65,39,0)"/>
-  <circle cx="69" cy="10" r="1" fill="rgba(93,60,35,0)"/>
-  <circle cx="70" cy="10" r="1" fill="rgba(87,55,31,0)"/>
-  <circle cx="71" cy="10" r="1" fill="rgba(82,49,27,0)"/>
-  <circle cx="72" cy="10" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="73" cy="10" r="1" fill="rgba(69,38,18,0)"/>
-  <circle cx="74" cy="10" r="1" fill="rgba(63,33,15,0)"/>
-  <circle cx="75" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="76" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="77" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="78" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="79" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="80" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="81" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="82" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="83" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="84" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="85" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="86" cy="10" r="1" fill="rgba(61,31,14,0)"/>
-  <circle cx="87" cy="10" r="1" fill="rgba(62,33,16,0)"/>
-  <circle cx="88" cy="10" r="1" fill="rgba(61,29,13,0)"/>
-  <circle cx="89" cy="10" r="1" fill="rgba(63,32,14,0)"/>
-  <circle cx="90" cy="10" r="1" fill="rgba(68,37,18,0)"/>
-  <circle cx="91" cy="10" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="92" cy="10" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="93" cy="10" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="94" cy="10" r="1" fill="rgba(81,49,26,0)"/>
-  <circle cx="95" cy="10" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="96" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="97" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="98" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="99" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="100" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="101" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="102" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="103" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="104" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="105" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="106" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="107" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="108" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="109" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="110" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="111" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="112" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="113" cy="10" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="114" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="10" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="11" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="19" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="20" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="21" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="22" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="23" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="24" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="25" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="26" cy="11" r="1" fill="rgba(61,30,13,0.12549)"/>
-  <circle cx="27" cy="11" r="1" fill="rgba(62,30,13,1)"/>
-  <circle cx="28" cy="11" r="1" fill="rgba(67,35,16,0.45098)"/>
-  <circle cx="29" cy="11" r="1" fill="rgba(51,24,10,0)"/>
-  <circle cx="30" cy="11" r="1" fill="rgba(33,12,3,0)"/>
-  <circle cx="31" cy="11" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="32" cy="11" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="33" cy="11" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="34" cy="11" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="35" cy="11" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="36" cy="11" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="37" cy="11" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="38" cy="11" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="39" cy="11" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="40" cy="11" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="41" cy="11" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="42" cy="11" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="43" cy="11" r="1" fill="rgba(37,15,5,0)"/>
-  <circle cx="44" cy="11" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="45" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="46" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="47" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="48" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="49" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="50" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="51" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="52" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="53" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="54" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="55" cy="11" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="56" cy="11" r="1" fill="rgba(67,35,17,0)"/>
-  <circle cx="57" cy="11" r="1" fill="rgba(74,42,21,0)"/>
-  <circle cx="58" cy="11" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="59" cy="11" r="1" fill="rgba(85,53,29,0)"/>
-  <circle cx="60" cy="11" r="1" fill="rgba(91,58,33,0)"/>
-  <circle cx="61" cy="11" r="1" fill="rgba(96,63,37,0)"/>
-  <circle cx="62" cy="11" r="1" fill="rgba(101,69,42,0)"/>
-  <circle cx="63" cy="11" r="1" fill="rgba(105,74,47,0)"/>
-  <circle cx="64" cy="11" r="1" fill="rgba(111,79,51,0)"/>
-  <circle cx="65" cy="11" r="1" fill="rgba(112,81,53,0)"/>
-  <circle cx="66" cy="11" r="1" fill="rgba(108,76,48,0)"/>
-  <circle cx="67" cy="11" r="1" fill="rgba(102,71,44,0)"/>
-  <circle cx="68" cy="11" r="1" fill="rgba(98,65,39,0)"/>
-  <circle cx="69" cy="11" r="1" fill="rgba(93,60,35,0)"/>
-  <circle cx="70" cy="11" r="1" fill="rgba(87,55,31,0)"/>
-  <circle cx="71" cy="11" r="1" fill="rgba(82,49,27,0)"/>
-  <circle cx="72" cy="11" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="73" cy="11" r="1" fill="rgba(69,38,18,0)"/>
-  <circle cx="74" cy="11" r="1" fill="rgba(63,33,15,0)"/>
-  <circle cx="75" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="76" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="77" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="78" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="79" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="80" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="81" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="82" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="83" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="84" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="85" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="86" cy="11" r="1" fill="rgba(61,31,14,0)"/>
-  <circle cx="87" cy="11" r="1" fill="rgba(62,33,16,0)"/>
-  <circle cx="88" cy="11" r="1" fill="rgba(61,29,13,0)"/>
-  <circle cx="89" cy="11" r="1" fill="rgba(63,32,14,0)"/>
-  <circle cx="90" cy="11" r="1" fill="rgba(68,37,18,0)"/>
-  <circle cx="91" cy="11" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="92" cy="11" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="93" cy="11" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="94" cy="11" r="1" fill="rgba(81,49,26,0)"/>
-  <circle cx="95" cy="11" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="96" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="97" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="98" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="99" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="100" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="101" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="102" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="103" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="104" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="105" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="106" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="107" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="108" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="109" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="110" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="111" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="112" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="113" cy="11" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="114" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="11" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="12" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="12" r="1" fill="rgba(64,33,15,0)"/>
-  <circle cx="19" cy="12" r="1" fill="rgba(64,33,15,0)"/>
-  <circle cx="20" cy="12" r="1" fill="rgba(64,33,15,0)"/>
-  <circle cx="21" cy="12" r="1" fill="rgba(64,33,15,0)"/>
-  <circle cx="22" cy="12" r="1" fill="rgba(64,33,15,0)"/>
-  <circle cx="23" cy="12" r="1" fill="rgba(64,33,15,0)"/>
-  <circle cx="24" cy="12" r="1" fill="rgba(64,33,15,0)"/>
-  <circle cx="25" cy="12" r="1" fill="rgba(64,33,15,0)"/>
-  <circle cx="26" cy="12" r="1" fill="rgba(64,33,15,0)"/>
-  <circle cx="27" cy="12" r="1" fill="rgba(64,34,16,0.792157)"/>
-  <circle cx="28" cy="12" r="1" fill="rgba(69,38,18,0.952941)"/>
-  <circle cx="29" cy="12" r="1" fill="rgba(54,26,11,0.160784)"/>
-  <circle cx="30" cy="12" r="1" fill="rgba(33,12,3,0)"/>
-  <circle cx="31" cy="12" r="1" fill="rgba(36,13,4,0)"/>
-  <circle cx="32" cy="12" r="1" fill="rgba(36,13,4,0)"/>
-  <circle cx="33" cy="12" r="1" fill="rgba(36,13,4,0)"/>
-  <circle cx="34" cy="12" r="1" fill="rgba(36,13,4,0)"/>
-  <circle cx="35" cy="12" r="1" fill="rgba(36,13,4,0)"/>
-  <circle cx="36" cy="12" r="1" fill="rgba(36,13,4,0)"/>
-  <circle cx="37" cy="12" r="1" fill="rgba(36,13,4,0)"/>
-  <circle cx="38" cy="12" r="1" fill="rgba(36,13,4,0)"/>
-  <circle cx="39" cy="12" r="1" fill="rgba(36,13,4,0)"/>
-  <circle cx="40" cy="12" r="1" fill="rgba(36,13,4,0)"/>
-  <circle cx="41" cy="12" r="1" fill="rgba(36,13,4,0)"/>
-  <circle cx="42" cy="12" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="43" cy="12" r="1" fill="rgba(37,15,5,0)"/>
-  <circle cx="44" cy="12" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="45" cy="12" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="46" cy="12" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="47" cy="12" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="48" cy="12" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="49" cy="12" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="50" cy="12" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="51" cy="12" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="52" cy="12" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="53" cy="12" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="54" cy="12" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="55" cy="12" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="56" cy="12" r="1" fill="rgba(67,35,17,0)"/>
-  <circle cx="57" cy="12" r="1" fill="rgba(74,42,21,0)"/>
-  <circle cx="58" cy="12" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="59" cy="12" r="1" fill="rgba(85,53,29,0)"/>
-  <circle cx="60" cy="12" r="1" fill="rgba(91,58,33,0)"/>
-  <circle cx="61" cy="12" r="1" fill="rgba(96,63,37,0)"/>
-  <circle cx="62" cy="12" r="1" fill="rgba(101,69,42,0)"/>
-  <circle cx="63" cy="12" r="1" fill="rgba(105,74,47,0)"/>
-  <circle cx="64" cy="12" r="1" fill="rgba(111,79,51,0)"/>
-  <circle cx="65" cy="12" r="1" fill="rgba(112,81,53,0)"/>
-  <circle cx="66" cy="12" r="1" fill="rgba(108,76,48,0)"/>
-  <circle cx="67" cy="12" r="1" fill="rgba(102,71,44,0)"/>
-  <circle cx="68" cy="12" r="1" fill="rgba(98,65,39,0)"/>
-  <circle cx="69" cy="12" r="1" fill="rgba(93,60,35,0)"/>
-  <circle cx="70" cy="12" r="1" fill="rgba(87,55,31,0)"/>
-  <circle cx="71" cy="12" r="1" fill="rgba(82,49,27,0)"/>
-  <circle cx="72" cy="12" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="73" cy="12" r="1" fill="rgba(69,38,18,0)"/>
-  <circle cx="74" cy="12" r="1" fill="rgba(63,33,15,0)"/>
-  <circle cx="75" cy="12" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="76" cy="12" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="77" cy="12" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="78" cy="12" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="79" cy="12" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="80" cy="12" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="81" cy="12" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="82" cy="12" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="83" cy="12" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="84" cy="12" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="85" cy="12" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="86" cy="12" r="1" fill="rgba(61,31,14,0)"/>
-  <circle cx="87" cy="12" r="1" fill="rgba(62,33,16,0)"/>
-  <circle cx="88" cy="12" r="1" fill="rgba(61,29,13,0)"/>
-  <circle cx="89" cy="12" r="1" fill="rgba(63,32,14,0)"/>
-  <circle cx="90" cy="12" r="1" fill="rgba(68,37,18,0)"/>
-  <circle cx="91" cy="12" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="92" cy="12" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="93" cy="12" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="94" cy="12" r="1" fill="rgba(81,49,26,0)"/>
-  <circle cx="95" cy="12" r="1" fill="rgba(63,32,14,0)"/>
-  <circle cx="96" cy="12" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="97" cy="12" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="98" cy="12" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="99" cy="12" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="100" cy="12" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="101" cy="12" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="102" cy="12" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="103" cy="12" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="104" cy="12" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="105" cy="12" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="106" cy="12" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="107" cy="12" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="108" cy="12" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="109" cy="12" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="110" cy="12" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="111" cy="12" r="1" fill="rgba(61,30,13,0.0313725)"/>
-  <circle cx="112" cy="12" r="1" fill="rgba(61,30,13,0.0705882)"/>
-  <circle cx="113" cy="12" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="114" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="12" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="13" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="13" r="1" fill="rgba(67,36,17,0)"/>
-  <circle cx="19" cy="13" r="1" fill="rgba(67,36,17,0)"/>
-  <circle cx="20" cy="13" r="1" fill="rgba(67,36,17,0)"/>
-  <circle cx="21" cy="13" r="1" fill="rgba(67,36,17,0)"/>
-  <circle cx="22" cy="13" r="1" fill="rgba(67,36,17,0)"/>
-  <circle cx="23" cy="13" r="1" fill="rgba(67,36,17,0)"/>
-  <circle cx="24" cy="13" r="1" fill="rgba(67,36,17,0)"/>
-  <circle cx="25" cy="13" r="1" fill="rgba(67,36,17,0)"/>
-  <circle cx="26" cy="13" r="1" fill="rgba(67,36,17,0)"/>
-  <circle cx="27" cy="13" r="1" fill="rgba(68,37,18,0.556863)"/>
-  <circle cx="28" cy="13" r="1" fill="rgba(71,40,20,1)"/>
-  <circle cx="29" cy="13" r="1" fill="rgba(73,41,20,0.737255)"/>
-  <circle cx="30" cy="13" r="1" fill="rgba(74,42,21,0.00784314)"/>
-  <circle cx="31" cy="13" r="1" fill="rgba(75,43,22,0)"/>
-  <circle cx="32" cy="13" r="1" fill="rgba(75,43,22,0)"/>
-  <circle cx="33" cy="13" r="1" fill="rgba(75,43,22,0)"/>
-  <circle cx="34" cy="13" r="1" fill="rgba(75,43,22,0)"/>
-  <circle cx="35" cy="13" r="1" fill="rgba(75,43,22,0)"/>
-  <circle cx="36" cy="13" r="1" fill="rgba(75,43,22,0)"/>
-  <circle cx="37" cy="13" r="1" fill="rgba(75,43,22,0)"/>
-  <circle cx="38" cy="13" r="1" fill="rgba(75,43,22,0)"/>
-  <circle cx="39" cy="13" r="1" fill="rgba(75,43,22,0)"/>
-  <circle cx="40" cy="13" r="1" fill="rgba(75,43,22,0)"/>
-  <circle cx="41" cy="13" r="1" fill="rgba(75,43,22,0)"/>
-  <circle cx="42" cy="13" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="43" cy="13" r="1" fill="rgba(68,36,18,0)"/>
-  <circle cx="44" cy="13" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="45" cy="13" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="46" cy="13" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="47" cy="13" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="48" cy="13" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="49" cy="13" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="50" cy="13" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="51" cy="13" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="52" cy="13" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="53" cy="13" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="54" cy="13" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="55" cy="13" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="56" cy="13" r="1" fill="rgba(67,35,17,0)"/>
-  <circle cx="57" cy="13" r="1" fill="rgba(74,42,21,0)"/>
-  <circle cx="58" cy="13" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="59" cy="13" r="1" fill="rgba(85,53,29,0)"/>
-  <circle cx="60" cy="13" r="1" fill="rgba(91,58,33,0)"/>
-  <circle cx="61" cy="13" r="1" fill="rgba(96,63,37,0)"/>
-  <circle cx="62" cy="13" r="1" fill="rgba(101,69,42,0)"/>
-  <circle cx="63" cy="13" r="1" fill="rgba(105,74,47,0)"/>
-  <circle cx="64" cy="13" r="1" fill="rgba(111,79,51,0)"/>
-  <circle cx="65" cy="13" r="1" fill="rgba(112,81,53,0)"/>
-  <circle cx="66" cy="13" r="1" fill="rgba(108,76,48,0)"/>
-  <circle cx="67" cy="13" r="1" fill="rgba(102,71,44,0)"/>
-  <circle cx="68" cy="13" r="1" fill="rgba(98,65,39,0)"/>
-  <circle cx="69" cy="13" r="1" fill="rgba(93,60,35,0)"/>
-  <circle cx="70" cy="13" r="1" fill="rgba(87,55,31,0)"/>
-  <circle cx="71" cy="13" r="1" fill="rgba(82,49,27,0)"/>
-  <circle cx="72" cy="13" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="73" cy="13" r="1" fill="rgba(69,38,18,0)"/>
-  <circle cx="74" cy="13" r="1" fill="rgba(63,33,15,0)"/>
-  <circle cx="75" cy="13" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="76" cy="13" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="77" cy="13" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="78" cy="13" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="79" cy="13" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="80" cy="13" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="81" cy="13" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="82" cy="13" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="83" cy="13" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="84" cy="13" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="85" cy="13" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="86" cy="13" r="1" fill="rgba(61,31,14,0)"/>
-  <circle cx="87" cy="13" r="1" fill="rgba(62,33,16,0)"/>
-  <circle cx="88" cy="13" r="1" fill="rgba(61,29,13,0)"/>
-  <circle cx="89" cy="13" r="1" fill="rgba(63,32,14,0)"/>
-  <circle cx="90" cy="13" r="1" fill="rgba(68,37,18,0)"/>
-  <circle cx="91" cy="13" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="92" cy="13" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="93" cy="13" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="94" cy="13" r="1" fill="rgba(83,51,27,0)"/>
-  <circle cx="95" cy="13" r="1" fill="rgba(82,50,27,0)"/>
-  <circle cx="96" cy="13" r="1" fill="rgba(40,17,6,0)"/>
-  <circle cx="97" cy="13" r="1" fill="rgba(34,13,4,0)"/>
-  <circle cx="98" cy="13" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="99" cy="13" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="100" cy="13" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="101" cy="13" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="102" cy="13" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="103" cy="13" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="104" cy="13" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="105" cy="13" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="106" cy="13" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="107" cy="13" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="108" cy="13" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="109" cy="13" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="110" cy="13" r="1" fill="rgba(42,18,6,0)"/>
-  <circle cx="111" cy="13" r="1" fill="rgba(61,30,13,0.321569)"/>
-  <circle cx="112" cy="13" r="1" fill="rgba(61,30,13,0.560784)"/>
-  <circle cx="113" cy="13" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="114" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="13" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="14" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="14" r="1" fill="rgba(69,39,18,0)"/>
-  <circle cx="19" cy="14" r="1" fill="rgba(69,39,18,0)"/>
-  <circle cx="20" cy="14" r="1" fill="rgba(69,39,18,0)"/>
-  <circle cx="21" cy="14" r="1" fill="rgba(69,39,18,0)"/>
-  <circle cx="22" cy="14" r="1" fill="rgba(69,39,18,0)"/>
-  <circle cx="23" cy="14" r="1" fill="rgba(69,39,18,0)"/>
-  <circle cx="24" cy="14" r="1" fill="rgba(69,39,18,0)"/>
-  <circle cx="25" cy="14" r="1" fill="rgba(69,39,18,0)"/>
-  <circle cx="26" cy="14" r="1" fill="rgba(69,39,18,0)"/>
-  <circle cx="27" cy="14" r="1" fill="rgba(70,39,19,0.427451)"/>
-  <circle cx="28" cy="14" r="1" fill="rgba(75,42,22,1)"/>
-  <circle cx="29" cy="14" r="1" fill="rgba(78,46,24,1)"/>
-  <circle cx="30" cy="14" r="1" fill="rgba(83,50,27,0.427451)"/>
-  <circle cx="31" cy="14" r="1" fill="rgba(84,51,29,0)"/>
-  <circle cx="32" cy="14" r="1" fill="rgba(84,51,29,0)"/>
-  <circle cx="33" cy="14" r="1" fill="rgba(84,51,29,0)"/>
-  <circle cx="34" cy="14" r="1" fill="rgba(84,51,29,0)"/>
-  <circle cx="35" cy="14" r="1" fill="rgba(84,51,29,0)"/>
-  <circle cx="36" cy="14" r="1" fill="rgba(84,51,29,0)"/>
-  <circle cx="37" cy="14" r="1" fill="rgba(84,51,29,0)"/>
-  <circle cx="38" cy="14" r="1" fill="rgba(84,51,29,0)"/>
-  <circle cx="39" cy="14" r="1" fill="rgba(84,51,29,0)"/>
-  <circle cx="40" cy="14" r="1" fill="rgba(84,51,29,0)"/>
-  <circle cx="41" cy="14" r="1" fill="rgba(84,51,29,0)"/>
-  <circle cx="42" cy="14" r="1" fill="rgba(85,52,29,0)"/>
-  <circle cx="43" cy="14" r="1" fill="rgba(73,40,20,0)"/>
-  <circle cx="44" cy="14" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="45" cy="14" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="46" cy="14" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="47" cy="14" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="48" cy="14" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="49" cy="14" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="50" cy="14" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="51" cy="14" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="52" cy="14" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="53" cy="14" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="54" cy="14" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="55" cy="14" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="56" cy="14" r="1" fill="rgba(67,35,17,0)"/>
-  <circle cx="57" cy="14" r="1" fill="rgba(74,42,21,0)"/>
-  <circle cx="58" cy="14" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="59" cy="14" r="1" fill="rgba(85,53,29,0)"/>
-  <circle cx="60" cy="14" r="1" fill="rgba(91,58,33,0)"/>
-  <circle cx="61" cy="14" r="1" fill="rgba(96,63,37,0)"/>
-  <circle cx="62" cy="14" r="1" fill="rgba(101,69,42,0)"/>
-  <circle cx="63" cy="14" r="1" fill="rgba(105,74,47,0.0470588)"/>
-  <circle cx="64" cy="14" r="1" fill="rgba(111,79,51,0.0588235)"/>
-  <circle cx="65" cy="14" r="1" fill="rgba(112,81,53,0.0588235)"/>
-  <circle cx="66" cy="14" r="1" fill="rgba(108,76,48,0.0588235)"/>
-  <circle cx="67" cy="14" r="1" fill="rgba(102,71,44,0.0196078)"/>
-  <circle cx="68" cy="14" r="1" fill="rgba(98,65,39,0)"/>
-  <circle cx="69" cy="14" r="1" fill="rgba(93,60,35,0)"/>
-  <circle cx="70" cy="14" r="1" fill="rgba(87,55,31,0)"/>
-  <circle cx="71" cy="14" r="1" fill="rgba(82,49,27,0)"/>
-  <circle cx="72" cy="14" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="73" cy="14" r="1" fill="rgba(69,38,18,0)"/>
-  <circle cx="74" cy="14" r="1" fill="rgba(63,33,15,0)"/>
-  <circle cx="75" cy="14" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="76" cy="14" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="77" cy="14" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="78" cy="14" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="79" cy="14" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="80" cy="14" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="81" cy="14" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="82" cy="14" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="83" cy="14" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="84" cy="14" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="85" cy="14" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="86" cy="14" r="1" fill="rgba(61,31,14,0)"/>
-  <circle cx="87" cy="14" r="1" fill="rgba(62,33,16,0)"/>
-  <circle cx="88" cy="14" r="1" fill="rgba(61,29,13,0)"/>
-  <circle cx="89" cy="14" r="1" fill="rgba(63,32,14,0)"/>
-  <circle cx="90" cy="14" r="1" fill="rgba(68,37,18,0)"/>
-  <circle cx="91" cy="14" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="92" cy="14" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="93" cy="14" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="94" cy="14" r="1" fill="rgba(83,51,27,0)"/>
-  <circle cx="95" cy="14" r="1" fill="rgba(83,51,27,0)"/>
-  <circle cx="96" cy="14" r="1" fill="rgba(34,13,4,0)"/>
-  <circle cx="97" cy="14" r="1" fill="rgba(26,8,2,0)"/>
-  <circle cx="98" cy="14" r="1" fill="rgba(29,10,3,0)"/>
-  <circle cx="99" cy="14" r="1" fill="rgba(29,10,3,0)"/>
-  <circle cx="100" cy="14" r="1" fill="rgba(29,10,3,0)"/>
-  <circle cx="101" cy="14" r="1" fill="rgba(29,10,3,0)"/>
-  <circle cx="102" cy="14" r="1" fill="rgba(29,10,3,0)"/>
-  <circle cx="103" cy="14" r="1" fill="rgba(29,10,3,0)"/>
-  <circle cx="104" cy="14" r="1" fill="rgba(29,10,3,0)"/>
-  <circle cx="105" cy="14" r="1" fill="rgba(29,10,3,0)"/>
-  <circle cx="106" cy="14" r="1" fill="rgba(33,12,3,0)"/>
-  <circle cx="107" cy="14" r="1" fill="rgba(33,12,3,0)"/>
-  <circle cx="108" cy="14" r="1" fill="rgba(33,12,3,0)"/>
-  <circle cx="109" cy="14" r="1" fill="rgba(33,12,3,0)"/>
-  <circle cx="110" cy="14" r="1" fill="rgba(33,13,4,0.00784314)"/>
-  <circle cx="111" cy="14" r="1" fill="rgba(59,29,13,0.780392)"/>
-  <circle cx="112" cy="14" r="1" fill="rgba(62,31,14,0.611765)"/>
-  <circle cx="113" cy="14" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="114" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="14" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="15" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="15" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="19" cy="15" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="20" cy="15" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="21" cy="15" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="22" cy="15" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="23" cy="15" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="24" cy="15" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="25" cy="15" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="26" cy="15" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="27" cy="15" r="1" fill="rgba(73,41,20,0.290196)"/>
-  <circle cx="28" cy="15" r="1" fill="rgba(77,45,23,1)"/>
-  <circle cx="29" cy="15" r="1" fill="rgba(81,49,26,1)"/>
-  <circle cx="30" cy="15" r="1" fill="rgba(84,52,28,0.929412)"/>
-  <circle cx="31" cy="15" r="1" fill="rgba(86,54,30,0.113725)"/>
-  <circle cx="32" cy="15" r="1" fill="rgba(86,54,30,0)"/>
-  <circle cx="33" cy="15" r="1" fill="rgba(86,54,30,0)"/>
-  <circle cx="34" cy="15" r="1" fill="rgba(86,54,30,0)"/>
-  <circle cx="35" cy="15" r="1" fill="rgba(86,54,30,0)"/>
-  <circle cx="36" cy="15" r="1" fill="rgba(86,54,30,0)"/>
-  <circle cx="37" cy="15" r="1" fill="rgba(86,54,30,0)"/>
-  <circle cx="38" cy="15" r="1" fill="rgba(86,54,30,0)"/>
-  <circle cx="39" cy="15" r="1" fill="rgba(86,54,30,0)"/>
-  <circle cx="40" cy="15" r="1" fill="rgba(86,54,30,0)"/>
-  <circle cx="41" cy="15" r="1" fill="rgba(86,53,30,0)"/>
-  <circle cx="42" cy="15" r="1" fill="rgba(86,54,30,0)"/>
-  <circle cx="43" cy="15" r="1" fill="rgba(63,32,15,0)"/>
-  <circle cx="44" cy="15" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="45" cy="15" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="46" cy="15" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="47" cy="15" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="48" cy="15" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="49" cy="15" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="50" cy="15" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="51" cy="15" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="52" cy="15" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="53" cy="15" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="54" cy="15" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="55" cy="15" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="56" cy="15" r="1" fill="rgba(67,35,17,0)"/>
-  <circle cx="57" cy="15" r="1" fill="rgba(74,42,21,0)"/>
-  <circle cx="58" cy="15" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="59" cy="15" r="1" fill="rgba(85,53,29,0.0745098)"/>
-  <circle cx="60" cy="15" r="1" fill="rgba(91,58,33,0.313725)"/>
-  <circle cx="61" cy="15" r="1" fill="rgba(96,63,37,0.552941)"/>
-  <circle cx="62" cy="15" r="1" fill="rgba(101,69,42,0.733333)"/>
-  <circle cx="63" cy="15" r="1" fill="rgba(105,74,47,0.886275)"/>
-  <circle cx="64" cy="15" r="1" fill="rgba(110,79,51,0.941176)"/>
-  <circle cx="65" cy="15" r="1" fill="rgba(112,80,52,0.941176)"/>
-  <circle cx="66" cy="15" r="1" fill="rgba(107,76,48,0.92549)"/>
-  <circle cx="67" cy="15" r="1" fill="rgba(102,71,44,0.796078)"/>
-  <circle cx="68" cy="15" r="1" fill="rgba(98,65,39,0.627451)"/>
-  <circle cx="69" cy="15" r="1" fill="rgba(93,60,35,0.419608)"/>
-  <circle cx="70" cy="15" r="1" fill="rgba(87,55,31,0.168627)"/>
-  <circle cx="71" cy="15" r="1" fill="rgba(82,49,27,0.0117647)"/>
-  <circle cx="72" cy="15" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="73" cy="15" r="1" fill="rgba(69,38,18,0)"/>
-  <circle cx="74" cy="15" r="1" fill="rgba(63,33,15,0)"/>
-  <circle cx="75" cy="15" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="76" cy="15" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="77" cy="15" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="78" cy="15" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="79" cy="15" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="80" cy="15" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="81" cy="15" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="82" cy="15" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="83" cy="15" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="84" cy="15" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="85" cy="15" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="86" cy="15" r="1" fill="rgba(61,31,14,0)"/>
-  <circle cx="87" cy="15" r="1" fill="rgba(62,33,16,0)"/>
-  <circle cx="88" cy="15" r="1" fill="rgba(61,29,13,0)"/>
-  <circle cx="89" cy="15" r="1" fill="rgba(63,32,14,0)"/>
-  <circle cx="90" cy="15" r="1" fill="rgba(68,37,18,0)"/>
-  <circle cx="91" cy="15" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="92" cy="15" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="93" cy="15" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="94" cy="15" r="1" fill="rgba(83,51,27,0)"/>
-  <circle cx="95" cy="15" r="1" fill="rgba(84,52,29,0)"/>
-  <circle cx="96" cy="15" r="1" fill="rgba(67,37,18,0)"/>
-  <circle cx="97" cy="15" r="1" fill="rgba(64,35,16,0)"/>
-  <circle cx="98" cy="15" r="1" fill="rgba(64,35,16,0)"/>
-  <circle cx="99" cy="15" r="1" fill="rgba(64,35,16,0)"/>
-  <circle cx="100" cy="15" r="1" fill="rgba(64,35,16,0)"/>
-  <circle cx="101" cy="15" r="1" fill="rgba(64,35,16,0)"/>
-  <circle cx="102" cy="15" r="1" fill="rgba(64,35,16,0)"/>
-  <circle cx="103" cy="15" r="1" fill="rgba(64,35,16,0)"/>
-  <circle cx="104" cy="15" r="1" fill="rgba(64,35,16,0)"/>
-  <circle cx="105" cy="15" r="1" fill="rgba(61,31,14,0)"/>
-  <circle cx="106" cy="15" r="1" fill="rgba(39,16,5,0)"/>
-  <circle cx="107" cy="15" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="108" cy="15" r="1" fill="rgba(37,14,4,0)"/>
-  <circle cx="109" cy="15" r="1" fill="rgba(34,13,4,0)"/>
-  <circle cx="110" cy="15" r="1" fill="rgba(51,24,9,0.513725)"/>
-  <circle cx="111" cy="15" r="1" fill="rgba(61,30,13,0.831373)"/>
-  <circle cx="112" cy="15" r="1" fill="rgba(47,21,8,0.0588235)"/>
-  <circle cx="113" cy="15" r="1" fill="rgba(47,21,8,0)"/>
-  <circle cx="114" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="15" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="16" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="16" r="1" fill="rgba(74,41,20,0)"/>
-  <circle cx="19" cy="16" r="1" fill="rgba(74,41,20,0)"/>
-  <circle cx="20" cy="16" r="1" fill="rgba(74,41,20,0)"/>
-  <circle cx="21" cy="16" r="1" fill="rgba(74,41,20,0)"/>
-  <circle cx="22" cy="16" r="1" fill="rgba(74,41,20,0)"/>
-  <circle cx="23" cy="16" r="1" fill="rgba(74,41,20,0)"/>
-  <circle cx="24" cy="16" r="1" fill="rgba(74,41,20,0)"/>
-  <circle cx="25" cy="16" r="1" fill="rgba(74,41,20,0)"/>
-  <circle cx="26" cy="16" r="1" fill="rgba(74,41,20,0)"/>
-  <circle cx="27" cy="16" r="1" fill="rgba(74,41,20,0.0509804)"/>
-  <circle cx="28" cy="16" r="1" fill="rgba(80,46,24,0.878431)"/>
-  <circle cx="29" cy="16" r="1" fill="rgba(84,51,27,1)"/>
-  <circle cx="30" cy="16" r="1" fill="rgba(87,55,30,1)"/>
-  <circle cx="31" cy="16" r="1" fill="rgba(90,57,33,0.364706)"/>
-  <circle cx="32" cy="16" r="1" fill="rgba(91,58,33,0)"/>
-  <circle cx="33" cy="16" r="1" fill="rgba(91,58,33,0)"/>
-  <circle cx="34" cy="16" r="1" fill="rgba(91,58,33,0)"/>
-  <circle cx="35" cy="16" r="1" fill="rgba(91,58,33,0)"/>
-  <circle cx="36" cy="16" r="1" fill="rgba(91,58,33,0)"/>
-  <circle cx="37" cy="16" r="1" fill="rgba(91,58,33,0)"/>
-  <circle cx="38" cy="16" r="1" fill="rgba(91,58,33,0)"/>
-  <circle cx="39" cy="16" r="1" fill="rgba(91,58,33,0)"/>
-  <circle cx="40" cy="16" r="1" fill="rgba(91,58,33,0)"/>
-  <circle cx="41" cy="16" r="1" fill="rgba(92,59,34,0)"/>
-  <circle cx="42" cy="16" r="1" fill="rgba(83,50,27,0)"/>
-  <circle cx="43" cy="16" r="1" fill="rgba(59,30,13,0)"/>
-  <circle cx="44" cy="16" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="45" cy="16" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="46" cy="16" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="47" cy="16" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="48" cy="16" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="49" cy="16" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="50" cy="16" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="51" cy="16" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="52" cy="16" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="53" cy="16" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="54" cy="16" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="55" cy="16" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="56" cy="16" r="1" fill="rgba(67,35,17,0.0196078)"/>
-  <circle cx="57" cy="16" r="1" fill="rgba(74,42,21,0.305882)"/>
-  <circle cx="58" cy="16" r="1" fill="rgba(80,47,25,0.623529)"/>
-  <circle cx="59" cy="16" r="1" fill="rgba(84,52,29,0.905882)"/>
-  <circle cx="60" cy="16" r="1" fill="rgba(91,58,33,1)"/>
-  <circle cx="61" cy="16" r="1" fill="rgba(94,62,37,1)"/>
-  <circle cx="62" cy="16" r="1" fill="rgba(99,67,40,1)"/>
-  <circle cx="63" cy="16" r="1" fill="rgba(103,71,44,1)"/>
-  <circle cx="64" cy="16" r="1" fill="rgba(106,75,48,1)"/>
-  <circle cx="65" cy="16" r="1" fill="rgba(107,75,48,1)"/>
-  <circle cx="66" cy="16" r="1" fill="rgba(105,73,46,1)"/>
-  <circle cx="67" cy="16" r="1" fill="rgba(101,69,42,1)"/>
-  <circle cx="68" cy="16" r="1" fill="rgba(97,64,38,1)"/>
-  <circle cx="69" cy="16" r="1" fill="rgba(91,59,33,1)"/>
-  <circle cx="70" cy="16" r="1" fill="rgba(87,54,30,0.972549)"/>
-  <circle cx="71" cy="16" r="1" fill="rgba(81,49,27,0.776471)"/>
-  <circle cx="72" cy="16" r="1" fill="rgba(76,44,22,0.458824)"/>
-  <circle cx="73" cy="16" r="1" fill="rgba(69,38,18,0.133333)"/>
-  <circle cx="74" cy="16" r="1" fill="rgba(63,33,15,0)"/>
-  <circle cx="75" cy="16" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="76" cy="16" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="77" cy="16" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="78" cy="16" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="79" cy="16" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="80" cy="16" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="81" cy="16" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="82" cy="16" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="83" cy="16" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="84" cy="16" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="85" cy="16" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="86" cy="16" r="1" fill="rgba(61,31,14,0)"/>
-  <circle cx="87" cy="16" r="1" fill="rgba(62,33,16,0)"/>
-  <circle cx="88" cy="16" r="1" fill="rgba(61,29,13,0)"/>
-  <circle cx="89" cy="16" r="1" fill="rgba(63,32,14,0)"/>
-  <circle cx="90" cy="16" r="1" fill="rgba(68,37,18,0)"/>
-  <circle cx="91" cy="16" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="92" cy="16" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="93" cy="16" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="94" cy="16" r="1" fill="rgba(82,50,27,0)"/>
-  <circle cx="95" cy="16" r="1" fill="rgba(85,53,30,0)"/>
-  <circle cx="96" cy="16" r="1" fill="rgba(94,61,35,0)"/>
-  <circle cx="97" cy="16" r="1" fill="rgba(94,61,36,0)"/>
-  <circle cx="98" cy="16" r="1" fill="rgba(92,59,33,0)"/>
-  <circle cx="99" cy="16" r="1" fill="rgba(92,59,33,0)"/>
-  <circle cx="100" cy="16" r="1" fill="rgba(92,59,33,0)"/>
-  <circle cx="101" cy="16" r="1" fill="rgba(92,59,33,0)"/>
-  <circle cx="102" cy="16" r="1" fill="rgba(92,59,33,0)"/>
-  <circle cx="103" cy="16" r="1" fill="rgba(92,59,33,0)"/>
-  <circle cx="104" cy="16" r="1" fill="rgba(92,59,33,0)"/>
-  <circle cx="105" cy="16" r="1" fill="rgba(86,54,30,0)"/>
-  <circle cx="106" cy="16" r="1" fill="rgba(77,45,23,0)"/>
-  <circle cx="107" cy="16" r="1" fill="rgba(71,40,20,0)"/>
-  <circle cx="108" cy="16" r="1" fill="rgba(64,34,16,0)"/>
-  <circle cx="109" cy="16" r="1" fill="rgba(58,28,12,0.34902)"/>
-  <circle cx="110" cy="16" r="1" fill="rgba(61,29,13,1)"/>
-  <circle cx="111" cy="16" r="1" fill="rgba(37,16,5,0.32549)"/>
-  <circle cx="112" cy="16" r="1" fill="rgba(28,9,3,0)"/>
-  <circle cx="113" cy="16" r="1" fill="rgba(28,9,3,0)"/>
-  <circle cx="114" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="16" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="17" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="17" r="1" fill="rgba(67,35,16,0)"/>
-  <circle cx="19" cy="17" r="1" fill="rgba(67,35,16,0)"/>
-  <circle cx="20" cy="17" r="1" fill="rgba(67,35,16,0)"/>
-  <circle cx="21" cy="17" r="1" fill="rgba(67,35,16,0)"/>
-  <circle cx="22" cy="17" r="1" fill="rgba(67,35,16,0)"/>
-  <circle cx="23" cy="17" r="1" fill="rgba(67,35,16,0)"/>
-  <circle cx="24" cy="17" r="1" fill="rgba(67,35,16,0)"/>
-  <circle cx="25" cy="17" r="1" fill="rgba(67,35,16,0)"/>
-  <circle cx="26" cy="17" r="1" fill="rgba(67,35,16,0)"/>
-  <circle cx="27" cy="17" r="1" fill="rgba(65,34,16,0)"/>
-  <circle cx="28" cy="17" r="1" fill="rgba(71,40,20,0.376471)"/>
-  <circle cx="29" cy="17" r="1" fill="rgba(86,54,30,1)"/>
-  <circle cx="30" cy="17" r="1" fill="rgba(90,56,32,1)"/>
-  <circle cx="31" cy="17" r="1" fill="rgba(93,61,35,0.584314)"/>
-  <circle cx="32" cy="17" r="1" fill="rgba(96,63,37,0)"/>
-  <circle cx="33" cy="17" r="1" fill="rgba(97,64,38,0)"/>
-  <circle cx="34" cy="17" r="1" fill="rgba(97,64,38,0)"/>
-  <circle cx="35" cy="17" r="1" fill="rgba(97,64,38,0)"/>
-  <circle cx="36" cy="17" r="1" fill="rgba(97,64,38,0)"/>
-  <circle cx="37" cy="17" r="1" fill="rgba(97,64,38,0)"/>
-  <circle cx="38" cy="17" r="1" fill="rgba(97,64,38,0)"/>
-  <circle cx="39" cy="17" r="1" fill="rgba(97,64,38,0)"/>
-  <circle cx="40" cy="17" r="1" fill="rgba(96,63,37,0)"/>
-  <circle cx="41" cy="17" r="1" fill="rgba(94,62,36,0)"/>
-  <circle cx="42" cy="17" r="1" fill="rgba(71,40,20,0)"/>
-  <circle cx="43" cy="17" r="1" fill="rgba(58,28,12,0)"/>
-  <circle cx="44" cy="17" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="45" cy="17" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="46" cy="17" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="47" cy="17" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="48" cy="17" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="49" cy="17" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="50" cy="17" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="51" cy="17" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="52" cy="17" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="53" cy="17" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="54" cy="17" r="1" fill="rgba(61,30,13,0.0588235)"/>
-  <circle cx="55" cy="17" r="1" fill="rgba(62,31,14,0.419608)"/>
-  <circle cx="56" cy="17" r="1" fill="rgba(65,35,17,0.807843)"/>
-  <circle cx="57" cy="17" r="1" fill="rgba(71,40,20,1)"/>
-  <circle cx="58" cy="17" r="1" fill="rgba(77,46,24,1)"/>
-  <circle cx="59" cy="17" r="1" fill="rgba(83,50,27,1)"/>
-  <circle cx="60" cy="17" r="1" fill="rgba(87,56,31,1)"/>
-  <circle cx="61" cy="17" r="1" fill="rgba(92,60,35,1)"/>
-  <circle cx="62" cy="17" r="1" fill="rgba(96,64,38,1)"/>
-  <circle cx="63" cy="17" r="1" fill="rgba(100,67,41,1)"/>
-  <circle cx="64" cy="17" r="1" fill="rgba(102,70,43,1)"/>
-  <circle cx="65" cy="17" r="1" fill="rgba(102,70,43,1)"/>
-  <circle cx="66" cy="17" r="1" fill="rgba(101,69,42,1)"/>
-  <circle cx="67" cy="17" r="1" fill="rgba(98,65,39,1)"/>
-  <circle cx="68" cy="17" r="1" fill="rgba(94,61,36,1)"/>
-  <circle cx="69" cy="17" r="1" fill="rgba(90,57,33,1)"/>
-  <circle cx="70" cy="17" r="1" fill="rgba(85,53,29,1)"/>
-  <circle cx="71" cy="17" r="1" fill="rgba(80,47,25,1)"/>
-  <circle cx="72" cy="17" r="1" fill="rgba(74,42,22,1)"/>
-  <circle cx="73" cy="17" r="1" fill="rgba(69,37,18,0.941176)"/>
-  <circle cx="74" cy="17" r="1" fill="rgba(63,32,15,0.615686)"/>
-  <circle cx="75" cy="17" r="1" fill="rgba(61,30,13,0.188235)"/>
-  <circle cx="76" cy="17" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="77" cy="17" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="78" cy="17" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="79" cy="17" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="80" cy="17" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="81" cy="17" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="82" cy="17" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="83" cy="17" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="84" cy="17" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="85" cy="17" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="86" cy="17" r="1" fill="rgba(61,31,14,0)"/>
-  <circle cx="87" cy="17" r="1" fill="rgba(62,33,16,0)"/>
-  <circle cx="88" cy="17" r="1" fill="rgba(61,29,13,0)"/>
-  <circle cx="89" cy="17" r="1" fill="rgba(63,32,14,0)"/>
-  <circle cx="90" cy="17" r="1" fill="rgba(68,37,18,0)"/>
-  <circle cx="91" cy="17" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="92" cy="17" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="93" cy="17" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="94" cy="17" r="1" fill="rgba(82,50,27,0)"/>
-  <circle cx="95" cy="17" r="1" fill="rgba(85,53,30,0)"/>
-  <circle cx="96" cy="17" r="1" fill="rgba(91,58,33,0)"/>
-  <circle cx="97" cy="17" r="1" fill="rgba(91,58,33,0)"/>
-  <circle cx="98" cy="17" r="1" fill="rgba(88,56,31,0)"/>
-  <circle cx="99" cy="17" r="1" fill="rgba(88,56,31,0)"/>
-  <circle cx="100" cy="17" r="1" fill="rgba(88,56,31,0)"/>
-  <circle cx="101" cy="17" r="1" fill="rgba(88,56,31,0)"/>
-  <circle cx="102" cy="17" r="1" fill="rgba(88,56,31,0)"/>
-  <circle cx="103" cy="17" r="1" fill="rgba(88,56,31,0)"/>
-  <circle cx="104" cy="17" r="1" fill="rgba(88,56,31,0)"/>
-  <circle cx="105" cy="17" r="1" fill="rgba(84,52,29,0)"/>
-  <circle cx="106" cy="17" r="1" fill="rgba(81,48,25,0)"/>
-  <circle cx="107" cy="17" r="1" fill="rgba(74,42,21,0)"/>
-  <circle cx="108" cy="17" r="1" fill="rgba(67,36,17,0.364706)"/>
-  <circle cx="109" cy="17" r="1" fill="rgba(64,33,15,0.996078)"/>
-  <circle cx="110" cy="17" r="1" fill="rgba(43,19,7,0.686275)"/>
-  <circle cx="111" cy="17" r="1" fill="rgba(24,7,2,0.0862745)"/>
-  <circle cx="112" cy="17" r="1" fill="rgba(29,10,3,0)"/>
-  <circle cx="113" cy="17" r="1" fill="rgba(29,10,3,0)"/>
-  <circle cx="114" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="17" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="18" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="18" r="1" fill="rgba(33,12,3,0)"/>
-  <circle cx="19" cy="18" r="1" fill="rgba(33,12,3,0)"/>
-  <circle cx="20" cy="18" r="1" fill="rgba(33,12,3,0)"/>
-  <circle cx="21" cy="18" r="1" fill="rgba(33,12,3,0)"/>
-  <circle cx="22" cy="18" r="1" fill="rgba(33,12,3,0)"/>
-  <circle cx="23" cy="18" r="1" fill="rgba(33,12,3,0)"/>
-  <circle cx="24" cy="18" r="1" fill="rgba(33,12,3,0)"/>
-  <circle cx="25" cy="18" r="1" fill="rgba(33,12,3,0)"/>
-  <circle cx="26" cy="18" r="1" fill="rgba(33,12,3,0)"/>
-  <circle cx="27" cy="18" r="1" fill="rgba(31,11,3,0)"/>
-  <circle cx="28" cy="18" r="1" fill="rgba(33,12,3,0.0156863)"/>
-  <circle cx="29" cy="18" r="1" fill="rgba(76,45,23,0.733333)"/>
-  <circle cx="30" cy="18" r="1" fill="rgba(93,59,34,1)"/>
-  <circle cx="31" cy="18" r="1" fill="rgba(94,62,37,0.811765)"/>
-  <circle cx="32" cy="18" r="1" fill="rgba(78,47,25,0.0117647)"/>
-  <circle cx="33" cy="18" r="1" fill="rgba(68,39,19,0)"/>
-  <circle cx="34" cy="18" r="1" fill="rgba(69,40,20,0)"/>
-  <circle cx="35" cy="18" r="1" fill="rgba(69,40,20,0)"/>
-  <circle cx="36" cy="18" r="1" fill="rgba(69,40,20,0)"/>
-  <circle cx="37" cy="18" r="1" fill="rgba(69,40,20,0)"/>
-  <circle cx="38" cy="18" r="1" fill="rgba(69,40,20,0)"/>
-  <circle cx="39" cy="18" r="1" fill="rgba(68,39,19,0)"/>
-  <circle cx="40" cy="18" r="1" fill="rgba(77,47,24,0)"/>
-  <circle cx="41" cy="18" r="1" fill="rgba(81,48,26,0)"/>
-  <circle cx="42" cy="18" r="1" fill="rgba(64,34,16,0)"/>
-  <circle cx="43" cy="18" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="44" cy="18" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="45" cy="18" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="46" cy="18" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="47" cy="18" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="48" cy="18" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="49" cy="18" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="50" cy="18" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="51" cy="18" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="52" cy="18" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="53" cy="18" r="1" fill="rgba(59,29,13,0.356863)"/>
-  <circle cx="54" cy="18" r="1" fill="rgba(61,30,13,0.839216)"/>
-  <circle cx="55" cy="18" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="56" cy="18" r="1" fill="rgba(64,34,16,1)"/>
-  <circle cx="57" cy="18" r="1" fill="rgba(70,38,19,1)"/>
-  <circle cx="58" cy="18" r="1" fill="rgba(75,43,22,1)"/>
-  <circle cx="59" cy="18" r="1" fill="rgba(80,48,26,1)"/>
-  <circle cx="60" cy="18" r="1" fill="rgba(85,52,29,1)"/>
-  <circle cx="61" cy="18" r="1" fill="rgba(90,56,32,1)"/>
-  <circle cx="62" cy="18" r="1" fill="rgba(93,60,35,1)"/>
-  <circle cx="63" cy="18" r="1" fill="rgba(96,63,37,1)"/>
-  <circle cx="64" cy="18" r="1" fill="rgba(97,65,38,1)"/>
-  <circle cx="65" cy="18" r="1" fill="rgba(97,65,38,1)"/>
-  <circle cx="66" cy="18" r="1" fill="rgba(96,64,38,1)"/>
-  <circle cx="67" cy="18" r="1" fill="rgba(94,61,36,1)"/>
-  <circle cx="68" cy="18" r="1" fill="rgba(91,58,33,1)"/>
-  <circle cx="69" cy="18" r="1" fill="rgba(86,54,30,1)"/>
-  <circle cx="70" cy="18" r="1" fill="rgba(82,50,27,1)"/>
-  <circle cx="71" cy="18" r="1" fill="rgba(77,45,23,1)"/>
-  <circle cx="72" cy="18" r="1" fill="rgba(73,41,20,1)"/>
-  <circle cx="73" cy="18" r="1" fill="rgba(67,36,17,1)"/>
-  <circle cx="74" cy="18" r="1" fill="rgba(62,31,13,1)"/>
-  <circle cx="75" cy="18" r="1" fill="rgba(61,30,13,0.968627)"/>
-  <circle cx="76" cy="18" r="1" fill="rgba(61,30,13,0.596078)"/>
-  <circle cx="77" cy="18" r="1" fill="rgba(61,30,13,0.0941176)"/>
-  <circle cx="78" cy="18" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="79" cy="18" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="80" cy="18" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="81" cy="18" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="82" cy="18" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="83" cy="18" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="84" cy="18" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="85" cy="18" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="86" cy="18" r="1" fill="rgba(61,31,14,0)"/>
-  <circle cx="87" cy="18" r="1" fill="rgba(62,33,16,0)"/>
-  <circle cx="88" cy="18" r="1" fill="rgba(61,29,13,0)"/>
-  <circle cx="89" cy="18" r="1" fill="rgba(63,32,14,0)"/>
-  <circle cx="90" cy="18" r="1" fill="rgba(68,37,18,0)"/>
-  <circle cx="91" cy="18" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="92" cy="18" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="93" cy="18" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="94" cy="18" r="1" fill="rgba(82,50,27,0)"/>
-  <circle cx="95" cy="18" r="1" fill="rgba(85,53,30,0)"/>
-  <circle cx="96" cy="18" r="1" fill="rgba(91,58,33,0)"/>
-  <circle cx="97" cy="18" r="1" fill="rgba(91,58,33,0)"/>
-  <circle cx="98" cy="18" r="1" fill="rgba(88,56,31,0)"/>
-  <circle cx="99" cy="18" r="1" fill="rgba(88,56,31,0)"/>
-  <circle cx="100" cy="18" r="1" fill="rgba(88,56,31,0)"/>
-  <circle cx="101" cy="18" r="1" fill="rgba(88,56,31,0)"/>
-  <circle cx="102" cy="18" r="1" fill="rgba(88,56,31,0)"/>
-  <circle cx="103" cy="18" r="1" fill="rgba(88,56,31,0)"/>
-  <circle cx="104" cy="18" r="1" fill="rgba(88,56,31,0)"/>
-  <circle cx="105" cy="18" r="1" fill="rgba(84,52,29,0)"/>
-  <circle cx="106" cy="18" r="1" fill="rgba(80,47,24,0)"/>
-  <circle cx="107" cy="18" r="1" fill="rgba(74,42,20,0.478431)"/>
-  <circle cx="108" cy="18" r="1" fill="rgba(70,38,18,1)"/>
-  <circle cx="109" cy="18" r="1" fill="rgba(59,30,13,0.909804)"/>
-  <circle cx="110" cy="18" r="1" fill="rgba(24,8,2,0.286275)"/>
-  <circle cx="111" cy="18" r="1" fill="rgba(31,11,3,0.0117647)"/>
-  <circle cx="112" cy="18" r="1" fill="rgba(31,11,4,0)"/>
-  <circle cx="113" cy="18" r="1" fill="rgba(31,11,4,0)"/>
-  <circle cx="114" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="18" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="19" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="19" r="1" fill="rgba(28,10,3,0)"/>
-  <circle cx="19" cy="19" r="1" fill="rgba(28,10,3,0)"/>
-  <circle cx="20" cy="19" r="1" fill="rgba(28,10,3,0)"/>
-  <circle cx="21" cy="19" r="1" fill="rgba(28,10,3,0)"/>
-  <circle cx="22" cy="19" r="1" fill="rgba(28,10,3,0)"/>
-  <circle cx="23" cy="19" r="1" fill="rgba(28,10,3,0)"/>
-  <circle cx="24" cy="19" r="1" fill="rgba(28,10,3,0)"/>
-  <circle cx="25" cy="19" r="1" fill="rgba(28,10,3,0)"/>
-  <circle cx="26" cy="19" r="1" fill="rgba(28,10,3,0)"/>
-  <circle cx="27" cy="19" r="1" fill="rgba(28,10,3,0)"/>
-  <circle cx="28" cy="19" r="1" fill="rgba(24,8,2,0)"/>
-  <circle cx="29" cy="19" r="1" fill="rgba(49,23,9,0.333333)"/>
-  <circle cx="30" cy="19" r="1" fill="rgba(92,60,34,1)"/>
-  <circle cx="31" cy="19" r="1" fill="rgba(98,65,39,0.984314)"/>
-  <circle cx="32" cy="19" r="1" fill="rgba(63,34,16,0.164706)"/>
-  <circle cx="33" cy="19" r="1" fill="rgba(34,14,4,0)"/>
-  <circle cx="34" cy="19" r="1" fill="rgba(40,16,5,0)"/>
-  <circle cx="35" cy="19" r="1" fill="rgba(40,16,5,0)"/>
-  <circle cx="36" cy="19" r="1" fill="rgba(40,16,5,0)"/>
-  <circle cx="37" cy="19" r="1" fill="rgba(40,16,5,0)"/>
-  <circle cx="38" cy="19" r="1" fill="rgba(40,16,5,0)"/>
-  <circle cx="39" cy="19" r="1" fill="rgba(37,15,5,0)"/>
-  <circle cx="40" cy="19" r="1" fill="rgba(59,31,14,0)"/>
-  <circle cx="41" cy="19" r="1" fill="rgba(76,43,22,0)"/>
-  <circle cx="42" cy="19" r="1" fill="rgba(65,35,16,0)"/>
-  <circle cx="43" cy="19" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="44" cy="19" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="45" cy="19" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="46" cy="19" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="47" cy="19" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="48" cy="19" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="49" cy="19" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="50" cy="19" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="51" cy="19" r="1" fill="rgba(61,30,13,0.0431373)"/>
-  <circle cx="52" cy="19" r="1" fill="rgba(55,26,11,0.611765)"/>
-  <circle cx="53" cy="19" r="1" fill="rgba(54,24,10,1)"/>
-  <circle cx="54" cy="19" r="1" fill="rgba(59,29,13,1)"/>
-  <circle cx="55" cy="19" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="56" cy="19" r="1" fill="rgba(62,31,14,1)"/>
-  <circle cx="57" cy="19" r="1" fill="rgba(68,36,17,1)"/>
-  <circle cx="58" cy="19" r="1" fill="rgba(73,41,20,1)"/>
-  <circle cx="59" cy="19" r="1" fill="rgba(77,45,23,1)"/>
-  <circle cx="60" cy="19" r="1" fill="rgba(82,49,26,1)"/>
-  <circle cx="61" cy="19" r="1" fill="rgba(85,53,29,1)"/>
-  <circle cx="62" cy="19" r="1" fill="rgba(88,56,31,1)"/>
-  <circle cx="63" cy="19" r="1" fill="rgba(91,58,33,1)"/>
-  <circle cx="64" cy="19" r="1" fill="rgba(92,59,34,1)"/>
-  <circle cx="65" cy="19" r="1" fill="rgba(93,60,34,1)"/>
-  <circle cx="66" cy="19" r="1" fill="rgba(91,59,33,1)"/>
-  <circle cx="67" cy="19" r="1" fill="rgba(90,56,32,1)"/>
-  <circle cx="68" cy="19" r="1" fill="rgba(86,54,30,1)"/>
-  <circle cx="69" cy="19" r="1" fill="rgba(83,50,27,1)"/>
-  <circle cx="70" cy="19" r="1" fill="rgba(78,46,24,1)"/>
-  <circle cx="71" cy="19" r="1" fill="rgba(74,42,22,1)"/>
-  <circle cx="72" cy="19" r="1" fill="rgba(69,38,18,1)"/>
-  <circle cx="73" cy="19" r="1" fill="rgba(63,33,15,1)"/>
-  <circle cx="74" cy="19" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="75" cy="19" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="76" cy="19" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="77" cy="19" r="1" fill="rgba(61,30,13,0.847059)"/>
-  <circle cx="78" cy="19" r="1" fill="rgba(61,30,13,0.219608)"/>
-  <circle cx="79" cy="19" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="80" cy="19" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="81" cy="19" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="82" cy="19" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="83" cy="19" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="84" cy="19" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="85" cy="19" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="86" cy="19" r="1" fill="rgba(61,31,14,0)"/>
-  <circle cx="87" cy="19" r="1" fill="rgba(62,33,16,0)"/>
-  <circle cx="88" cy="19" r="1" fill="rgba(61,29,13,0)"/>
-  <circle cx="89" cy="19" r="1" fill="rgba(63,32,14,0)"/>
-  <circle cx="90" cy="19" r="1" fill="rgba(68,37,18,0)"/>
-  <circle cx="91" cy="19" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="92" cy="19" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="93" cy="19" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="94" cy="19" r="1" fill="rgba(82,50,27,0)"/>
-  <circle cx="95" cy="19" r="1" fill="rgba(85,53,30,0)"/>
-  <circle cx="96" cy="19" r="1" fill="rgba(91,58,33,0)"/>
-  <circle cx="97" cy="19" r="1" fill="rgba(91,58,33,0)"/>
-  <circle cx="98" cy="19" r="1" fill="rgba(88,56,31,0)"/>
-  <circle cx="99" cy="19" r="1" fill="rgba(88,56,31,0)"/>
-  <circle cx="100" cy="19" r="1" fill="rgba(88,56,31,0)"/>
-  <circle cx="101" cy="19" r="1" fill="rgba(88,56,31,0)"/>
-  <circle cx="102" cy="19" r="1" fill="rgba(88,56,31,0)"/>
-  <circle cx="103" cy="19" r="1" fill="rgba(88,56,31,0)"/>
-  <circle cx="104" cy="19" r="1" fill="rgba(88,56,31,0)"/>
-  <circle cx="105" cy="19" r="1" fill="rgba(84,52,29,0.027451)"/>
-  <circle cx="106" cy="19" r="1" fill="rgba(80,48,24,0.588235)"/>
-  <circle cx="107" cy="19" r="1" fill="rgba(76,43,22,1)"/>
-  <circle cx="108" cy="19" r="1" fill="rgba(73,41,20,1)"/>
-  <circle cx="109" cy="19" r="1" fill="rgba(40,17,6,0.572549)"/>
-  <circle cx="110" cy="19" r="1" fill="rgba(24,8,2,0.0980392)"/>
-  <circle cx="111" cy="19" r="1" fill="rgba(34,13,4,0)"/>
-  <circle cx="112" cy="19" r="1" fill="rgba(34,13,4,0)"/>
-  <circle cx="113" cy="19" r="1" fill="rgba(34,13,4,0)"/>
-  <circle cx="114" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="19" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="20" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="20" r="1" fill="rgba(33,13,4,0)"/>
-  <circle cx="19" cy="20" r="1" fill="rgba(33,13,4,0)"/>
-  <circle cx="20" cy="20" r="1" fill="rgba(33,13,4,0)"/>
-  <circle cx="21" cy="20" r="1" fill="rgba(33,13,4,0)"/>
-  <circle cx="22" cy="20" r="1" fill="rgba(33,13,4,0)"/>
-  <circle cx="23" cy="20" r="1" fill="rgba(33,13,4,0)"/>
-  <circle cx="24" cy="20" r="1" fill="rgba(33,13,4,0)"/>
-  <circle cx="25" cy="20" r="1" fill="rgba(33,13,4,0)"/>
-  <circle cx="26" cy="20" r="1" fill="rgba(33,13,4,0)"/>
-  <circle cx="27" cy="20" r="1" fill="rgba(33,13,4,0)"/>
-  <circle cx="28" cy="20" r="1" fill="rgba(33,13,3,0)"/>
-  <circle cx="29" cy="20" r="1" fill="rgba(31,12,3,0.133333)"/>
-  <circle cx="30" cy="20" r="1" fill="rgba(85,53,30,0.901961)"/>
-  <circle cx="31" cy="20" r="1" fill="rgba(100,68,42,1)"/>
-  <circle cx="32" cy="20" r="1" fill="rgba(67,39,19,0.447059)"/>
-  <circle cx="33" cy="20" r="1" fill="rgba(45,16,6,0)"/>
-  <circle cx="34" cy="20" r="1" fill="rgba(77,17,6,0)"/>
-  <circle cx="35" cy="20" r="1" fill="rgba(78,17,6,0)"/>
-  <circle cx="36" cy="20" r="1" fill="rgba(78,17,6,0)"/>
-  <circle cx="37" cy="20" r="1" fill="rgba(78,17,6,0)"/>
-  <circle cx="38" cy="20" r="1" fill="rgba(78,15,5,0)"/>
-  <circle cx="39" cy="20" r="1" fill="rgba(78,32,14,0)"/>
-  <circle cx="40" cy="20" r="1" fill="rgba(77,47,24,0)"/>
-  <circle cx="41" cy="20" r="1" fill="rgba(75,42,22,0)"/>
-  <circle cx="42" cy="20" r="1" fill="rgba(65,35,16,0)"/>
-  <circle cx="43" cy="20" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="44" cy="20" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="45" cy="20" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="46" cy="20" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="47" cy="20" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="48" cy="20" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="49" cy="20" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="50" cy="20" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="51" cy="20" r="1" fill="rgba(53,24,10,0.439216)"/>
-  <circle cx="52" cy="20" r="1" fill="rgba(150,120,89,1)"/>
-  <circle cx="53" cy="20" r="1" fill="rgba(187,163,138,1)"/>
-  <circle cx="54" cy="20" r="1" fill="rgba(55,26,11,1)"/>
-  <circle cx="55" cy="20" r="1" fill="rgba(53,24,10,1)"/>
-  <circle cx="56" cy="20" r="1" fill="rgba(61,29,13,1)"/>
-  <circle cx="57" cy="20" r="1" fill="rgba(64,33,15,1)"/>
-  <circle cx="58" cy="20" r="1" fill="rgba(69,37,18,1)"/>
-  <circle cx="59" cy="20" r="1" fill="rgba(74,41,21,1)"/>
-  <circle cx="60" cy="20" r="1" fill="rgba(77,45,23,1)"/>
-  <circle cx="61" cy="20" r="1" fill="rgba(81,48,26,1)"/>
-  <circle cx="62" cy="20" r="1" fill="rgba(84,51,27,1)"/>
-  <circle cx="63" cy="20" r="1" fill="rgba(85,53,30,1)"/>
-  <circle cx="64" cy="20" r="1" fill="rgba(87,54,30,1)"/>
-  <circle cx="65" cy="20" r="1" fill="rgba(87,54,30,1)"/>
-  <circle cx="66" cy="20" r="1" fill="rgba(86,53,30,1)"/>
-  <circle cx="67" cy="20" r="1" fill="rgba(85,52,29,1)"/>
-  <circle cx="68" cy="20" r="1" fill="rgba(82,50,27,1)"/>
-  <circle cx="69" cy="20" r="1" fill="rgba(78,46,24,1)"/>
-  <circle cx="70" cy="20" r="1" fill="rgba(75,43,22,1)"/>
-  <circle cx="71" cy="20" r="1" fill="rgba(70,39,19,1)"/>
-  <circle cx="72" cy="20" r="1" fill="rgba(65,34,16,1)"/>
-  <circle cx="73" cy="20" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="74" cy="20" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="75" cy="20" r="1" fill="rgba(62,31,14,1)"/>
-  <circle cx="76" cy="20" r="1" fill="rgba(63,33,16,1)"/>
-  <circle cx="77" cy="20" r="1" fill="rgba(62,33,16,1)"/>
-  <circle cx="78" cy="20" r="1" fill="rgba(61,31,14,0.894118)"/>
-  <circle cx="79" cy="20" r="1" fill="rgba(62,31,14,0.0862745)"/>
-  <circle cx="80" cy="20" r="1" fill="rgba(58,28,12,0)"/>
-  <circle cx="81" cy="20" r="1" fill="rgba(77,47,26,0)"/>
-  <circle cx="82" cy="20" r="1" fill="rgba(65,35,16,0)"/>
-  <circle cx="83" cy="20" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="84" cy="20" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="85" cy="20" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="86" cy="20" r="1" fill="rgba(61,31,14,0)"/>
-  <circle cx="87" cy="20" r="1" fill="rgba(62,33,16,0)"/>
-  <circle cx="88" cy="20" r="1" fill="rgba(61,29,13,0)"/>
-  <circle cx="89" cy="20" r="1" fill="rgba(63,32,14,0)"/>
-  <circle cx="90" cy="20" r="1" fill="rgba(68,37,18,0)"/>
-  <circle cx="91" cy="20" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="92" cy="20" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="93" cy="20" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="94" cy="20" r="1" fill="rgba(82,50,27,0)"/>
-  <circle cx="95" cy="20" r="1" fill="rgba(85,53,30,0)"/>
-  <circle cx="96" cy="20" r="1" fill="rgba(91,58,33,0)"/>
-  <circle cx="97" cy="20" r="1" fill="rgba(91,58,33,0)"/>
-  <circle cx="98" cy="20" r="1" fill="rgba(90,57,32,0)"/>
-  <circle cx="99" cy="20" r="1" fill="rgba(88,56,31,0)"/>
-  <circle cx="100" cy="20" r="1" fill="rgba(88,56,31,0)"/>
-  <circle cx="101" cy="20" r="1" fill="rgba(88,56,31,0)"/>
-  <circle cx="102" cy="20" r="1" fill="rgba(88,56,31,0)"/>
-  <circle cx="103" cy="20" r="1" fill="rgba(88,56,31,0)"/>
-  <circle cx="104" cy="20" r="1" fill="rgba(88,56,31,0.027451)"/>
-  <circle cx="105" cy="20" r="1" fill="rgba(85,53,30,0.682353)"/>
-  <circle cx="106" cy="20" r="1" fill="rgba(81,49,27,1)"/>
-  <circle cx="107" cy="20" r="1" fill="rgba(78,47,24,1)"/>
-  <circle cx="108" cy="20" r="1" fill="rgba(65,35,17,0.905882)"/>
-  <circle cx="109" cy="20" r="1" fill="rgba(21,6,1,0.305882)"/>
-  <circle cx="110" cy="20" r="1" fill="rgba(33,13,4,0.0235294)"/>
-  <circle cx="111" cy="20" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="112" cy="20" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="113" cy="20" r="1" fill="rgba(36,14,4,0)"/>
-  <circle cx="114" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="20" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="21" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="21" r="1" fill="rgba(26,9,2,0)"/>
-  <circle cx="19" cy="21" r="1" fill="rgba(26,9,2,0)"/>
-  <circle cx="20" cy="21" r="1" fill="rgba(26,9,2,0)"/>
-  <circle cx="21" cy="21" r="1" fill="rgba(26,9,2,0)"/>
-  <circle cx="22" cy="21" r="1" fill="rgba(26,9,2,0)"/>
-  <circle cx="23" cy="21" r="1" fill="rgba(26,9,2,0)"/>
-  <circle cx="24" cy="21" r="1" fill="rgba(26,9,2,0)"/>
-  <circle cx="25" cy="21" r="1" fill="rgba(26,9,2,0)"/>
-  <circle cx="26" cy="21" r="1" fill="rgba(26,9,2,0)"/>
-  <circle cx="27" cy="21" r="1" fill="rgba(26,9,2,0)"/>
-  <circle cx="28" cy="21" r="1" fill="rgba(26,9,2,0)"/>
-  <circle cx="29" cy="21" r="1" fill="rgba(24,8,2,0.0588235)"/>
-  <circle cx="30" cy="21" r="1" fill="rgba(76,46,24,0.756863)"/>
-  <circle cx="31" cy="21" r="1" fill="rgba(100,68,41,1)"/>
-  <circle cx="32" cy="21" r="1" fill="rgba(76,47,24,0.709804)"/>
-  <circle cx="33" cy="21" r="1" fill="rgba(43,17,6,0.0745098)"/>
-  <circle cx="34" cy="21" r="1" fill="rgba(77,17,6,0)"/>
-  <circle cx="35" cy="21" r="1" fill="rgba(76,14,5,0)"/>
-  <circle cx="36" cy="21" r="1" fill="rgba(76,14,5,0)"/>
-  <circle cx="37" cy="21" r="1" fill="rgba(76,14,5,0)"/>
-  <circle cx="38" cy="21" r="1" fill="rgba(77,13,4,0)"/>
-  <circle cx="39" cy="21" r="1" fill="rgba(81,34,16,0)"/>
-  <circle cx="40" cy="21" r="1" fill="rgba(78,48,25,0)"/>
-  <circle cx="41" cy="21" r="1" fill="rgba(75,42,22,0)"/>
-  <circle cx="42" cy="21" r="1" fill="rgba(65,35,16,0)"/>
-  <circle cx="43" cy="21" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="44" cy="21" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="45" cy="21" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="46" cy="21" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="47" cy="21" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="48" cy="21" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="49" cy="21" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="50" cy="21" r="1" fill="rgba(55,26,11,0)"/>
-  <circle cx="51" cy="21" r="1" fill="rgba(49,21,8,0.227451)"/>
-  <circle cx="52" cy="21" r="1" fill="rgba(108,74,45,0.956863)"/>
-  <circle cx="53" cy="21" r="1" fill="rgba(213,197,178,1)"/>
-  <circle cx="54" cy="21" r="1" fill="rgba(170,143,115,1)"/>
-  <circle cx="55" cy="21" r="1" fill="rgba(83,49,26,1)"/>
-  <circle cx="56" cy="21" r="1" fill="rgba(50,22,8,1)"/>
-  <circle cx="57" cy="21" r="1" fill="rgba(50,22,9,1)"/>
-  <circle cx="58" cy="21" r="1" fill="rgba(62,32,14,1)"/>
-  <circle cx="59" cy="21" r="1" fill="rgba(69,38,18,1)"/>
-  <circle cx="60" cy="21" r="1" fill="rgba(73,41,20,1)"/>
-  <circle cx="61" cy="21" r="1" fill="rgba(76,44,22,1)"/>
-  <circle cx="62" cy="21" r="1" fill="rgba(78,47,24,1)"/>
-  <circle cx="63" cy="21" r="1" fill="rgba(81,48,25,1)"/>
-  <circle cx="64" cy="21" r="1" fill="rgba(82,49,26,1)"/>
-  <circle cx="65" cy="21" r="1" fill="rgba(82,49,26,1)"/>
-  <circle cx="66" cy="21" r="1" fill="rgba(81,48,26,1)"/>
-  <circle cx="67" cy="21" r="1" fill="rgba(78,47,24,1)"/>
-  <circle cx="68" cy="21" r="1" fill="rgba(77,45,23,1)"/>
-  <circle cx="69" cy="21" r="1" fill="rgba(74,42,21,1)"/>
-  <circle cx="70" cy="21" r="1" fill="rgba(70,39,19,1)"/>
-  <circle cx="71" cy="21" r="1" fill="rgba(67,35,16,1)"/>
-  <circle cx="72" cy="21" r="1" fill="rgba(62,31,14,1)"/>
-  <circle cx="73" cy="21" r="1" fill="rgba(61,30,14,1)"/>
-  <circle cx="74" cy="21" r="1" fill="rgba(63,33,16,1)"/>
-  <circle cx="75" cy="21" r="1" fill="rgba(65,37,20,1)"/>
-  <circle cx="76" cy="21" r="1" fill="rgba(68,41,24,1)"/>
-  <circle cx="77" cy="21" r="1" fill="rgba(67,39,22,1)"/>
-  <circle cx="78" cy="21" r="1" fill="rgba(62,32,15,0.823529)"/>
-  <circle cx="79" cy="21" r="1" fill="rgba(47,21,8,0.0431373)"/>
-  <circle cx="80" cy="21" r="1" fill="rgba(71,40,20,0)"/>
-  <circle cx="81" cy="21" r="1" fill="rgba(106,78,54,0)"/>
-  <circle cx="82" cy="21" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="83" cy="21" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="84" cy="21" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="85" cy="21" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="86" cy="21" r="1" fill="rgba(61,31,14,0)"/>
-  <circle cx="87" cy="21" r="1" fill="rgba(62,33,16,0)"/>
-  <circle cx="88" cy="21" r="1" fill="rgba(61,29,13,0)"/>
-  <circle cx="89" cy="21" r="1" fill="rgba(63,32,14,0)"/>
-  <circle cx="90" cy="21" r="1" fill="rgba(68,37,18,0)"/>
-  <circle cx="91" cy="21" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="92" cy="21" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="93" cy="21" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="94" cy="21" r="1" fill="rgba(82,50,27,0)"/>
-  <circle cx="95" cy="21" r="1" fill="rgba(85,53,30,0)"/>
-  <circle cx="96" cy="21" r="1" fill="rgba(90,57,33,0)"/>
-  <circle cx="97" cy="21" r="1" fill="rgba(95,62,37,0)"/>
-  <circle cx="98" cy="21" r="1" fill="rgba(97,65,38,0)"/>
-  <circle cx="99" cy="21" r="1" fill="rgba(93,60,35,0)"/>
-  <circle cx="100" cy="21" r="1" fill="rgba(92,59,34,0)"/>
-  <circle cx="101" cy="21" r="1" fill="rgba(92,59,34,0)"/>
-  <circle cx="102" cy="21" r="1" fill="rgba(92,59,34,0)"/>
-  <circle cx="103" cy="21" r="1" fill="rgba(92,59,34,0)"/>
-  <circle cx="104" cy="21" r="1" fill="rgba(91,58,33,0.4)"/>
-  <circle cx="105" cy="21" r="1" fill="rgba(87,55,30,1)"/>
-  <circle cx="106" cy="21" r="1" fill="rgba(83,51,27,1)"/>
-  <circle cx="107" cy="21" r="1" fill="rgba(82,49,27,1)"/>
-  <circle cx="108" cy="21" r="1" fill="rgba(45,20,7,0.635294)"/>
-  <circle cx="109" cy="21" r="1" fill="rgba(24,7,2,0.141176)"/>
-  <circle cx="110" cy="21" r="1" fill="rgba(36,13,4,0)"/>
-  <circle cx="111" cy="21" r="1" fill="rgba(34,13,4,0)"/>
-  <circle cx="112" cy="21" r="1" fill="rgba(34,13,4,0)"/>
-  <circle cx="113" cy="21" r="1" fill="rgba(34,13,4,0)"/>
-  <circle cx="114" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="21" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="22" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="22" r="1" fill="rgba(33,13,4,0)"/>
-  <circle cx="19" cy="22" r="1" fill="rgba(33,13,4,0)"/>
-  <circle cx="20" cy="22" r="1" fill="rgba(33,13,4,0)"/>
-  <circle cx="21" cy="22" r="1" fill="rgba(33,13,4,0)"/>
-  <circle cx="22" cy="22" r="1" fill="rgba(33,13,4,0)"/>
-  <circle cx="23" cy="22" r="1" fill="rgba(33,13,4,0)"/>
-  <circle cx="24" cy="22" r="1" fill="rgba(33,13,4,0)"/>
-  <circle cx="25" cy="22" r="1" fill="rgba(33,13,4,0)"/>
-  <circle cx="26" cy="22" r="1" fill="rgba(33,13,4,0)"/>
-  <circle cx="27" cy="22" r="1" fill="rgba(33,13,4,0)"/>
-  <circle cx="28" cy="22" r="1" fill="rgba(33,13,4,0)"/>
-  <circle cx="29" cy="22" r="1" fill="rgba(26,9,3,0.0117647)"/>
-  <circle cx="30" cy="22" r="1" fill="rgba(61,33,15,0.603922)"/>
-  <circle cx="31" cy="22" r="1" fill="rgba(98,65,39,1)"/>
-  <circle cx="32" cy="22" r="1" fill="rgba(87,56,31,0.905882)"/>
-  <circle cx="33" cy="22" r="1" fill="rgba(34,13,4,0.27451)"/>
-  <circle cx="34" cy="22" r="1" fill="rgba(55,21,8,0)"/>
-  <circle cx="35" cy="22" r="1" fill="rgba(77,42,21,0)"/>
-  <circle cx="36" cy="22" r="1" fill="rgba(76,41,21,0)"/>
-  <circle cx="37" cy="22" r="1" fill="rgba(75,39,20,0)"/>
-  <circle cx="38" cy="22" r="1" fill="rgba(71,37,18,0)"/>
-  <circle cx="39" cy="22" r="1" fill="rgba(81,48,25,0)"/>
-  <circle cx="40" cy="22" r="1" fill="rgba(78,46,24,0)"/>
-  <circle cx="41" cy="22" r="1" fill="rgba(75,42,22,0)"/>
-  <circle cx="42" cy="22" r="1" fill="rgba(65,35,16,0)"/>
-  <circle cx="43" cy="22" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="44" cy="22" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="45" cy="22" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="46" cy="22" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="47" cy="22" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="48" cy="22" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="49" cy="22" r="1" fill="rgba(62,31,14,0.301961)"/>
-  <circle cx="50" cy="22" r="1" fill="rgba(47,22,9,0.239216)"/>
-  <circle cx="51" cy="22" r="1" fill="rgba(10,1,0,0.560784)"/>
-  <circle cx="52" cy="22" r="1" fill="rgba(4,0,0,0.984314)"/>
-  <circle cx="53" cy="22" r="1" fill="rgba(51,23,9,1)"/>
-  <circle cx="54" cy="22" r="1" fill="rgba(125,90,60,1)"/>
-  <circle cx="55" cy="22" r="1" fill="rgba(172,144,116,1)"/>
-  <circle cx="56" cy="22" r="1" fill="rgba(171,144,115,1)"/>
-  <circle cx="57" cy="22" r="1" fill="rgba(123,88,58,1)"/>
-  <circle cx="58" cy="22" r="1" fill="rgba(65,34,16,1)"/>
-  <circle cx="59" cy="22" r="1" fill="rgba(50,22,9,1)"/>
-  <circle cx="60" cy="22" r="1" fill="rgba(61,31,14,1)"/>
-  <circle cx="61" cy="22" r="1" fill="rgba(69,38,18,1)"/>
-  <circle cx="62" cy="22" r="1" fill="rgba(74,41,21,1)"/>
-  <circle cx="63" cy="22" r="1" fill="rgba(75,43,22,1)"/>
-  <circle cx="64" cy="22" r="1" fill="rgba(76,44,22,1)"/>
-  <circle cx="65" cy="22" r="1" fill="rgba(76,44,22,1)"/>
-  <circle cx="66" cy="22" r="1" fill="rgba(75,43,22,1)"/>
-  <circle cx="67" cy="22" r="1" fill="rgba(74,42,21,1)"/>
-  <circle cx="68" cy="22" r="1" fill="rgba(73,41,20,1)"/>
-  <circle cx="69" cy="22" r="1" fill="rgba(69,38,18,1)"/>
-  <circle cx="70" cy="22" r="1" fill="rgba(65,35,16,1)"/>
-  <circle cx="71" cy="22" r="1" fill="rgba(63,32,15,1)"/>
-  <circle cx="72" cy="22" r="1" fill="rgba(62,33,16,1)"/>
-  <circle cx="73" cy="22" r="1" fill="rgba(63,36,18,1)"/>
-  <circle cx="74" cy="22" r="1" fill="rgba(68,42,24,1)"/>
-  <circle cx="75" cy="22" r="1" fill="rgba(70,44,27,1)"/>
-  <circle cx="76" cy="22" r="1" fill="rgba(67,39,21,1)"/>
-  <circle cx="77" cy="22" r="1" fill="rgba(53,27,12,1)"/>
-  <circle cx="78" cy="22" r="1" fill="rgba(10,3,0,0.835294)"/>
-  <circle cx="79" cy="22" r="1" fill="rgba(0,0,0,0.219608)"/>
-  <circle cx="80" cy="22" r="1" fill="rgba(76,44,22,0.0156863)"/>
-  <circle cx="81" cy="22" r="1" fill="rgba(111,82,57,0.0117647)"/>
-  <circle cx="82" cy="22" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="83" cy="22" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="84" cy="22" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="85" cy="22" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="86" cy="22" r="1" fill="rgba(61,31,14,0)"/>
-  <circle cx="87" cy="22" r="1" fill="rgba(62,33,16,0)"/>
-  <circle cx="88" cy="22" r="1" fill="rgba(61,29,13,0)"/>
-  <circle cx="89" cy="22" r="1" fill="rgba(63,32,14,0)"/>
-  <circle cx="90" cy="22" r="1" fill="rgba(68,37,18,0)"/>
-  <circle cx="91" cy="22" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="92" cy="22" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="93" cy="22" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="94" cy="22" r="1" fill="rgba(82,50,27,0)"/>
-  <circle cx="95" cy="22" r="1" fill="rgba(85,53,30,0)"/>
-  <circle cx="96" cy="22" r="1" fill="rgba(90,57,33,0)"/>
-  <circle cx="97" cy="22" r="1" fill="rgba(94,62,37,0)"/>
-  <circle cx="98" cy="22" r="1" fill="rgba(98,66,39,0)"/>
-  <circle cx="99" cy="22" r="1" fill="rgba(97,65,39,0)"/>
-  <circle cx="100" cy="22" r="1" fill="rgba(95,63,37,0)"/>
-  <circle cx="101" cy="22" r="1" fill="rgba(95,63,37,0)"/>
-  <circle cx="102" cy="22" r="1" fill="rgba(95,63,37,0)"/>
-  <circle cx="103" cy="22" r="1" fill="rgba(95,63,37,0.0862745)"/>
-  <circle cx="104" cy="22" r="1" fill="rgba(93,60,34,0.894118)"/>
-  <circle cx="105" cy="22" r="1" fill="rgba(88,56,31,1)"/>
-  <circle cx="106" cy="22" r="1" fill="rgba(87,54,30,1)"/>
-  <circle cx="107" cy="22" r="1" fill="rgba(55,29,13,0.764706)"/>
-  <circle cx="108" cy="22" r="1" fill="rgba(15,3,0,0.34902)"/>
-  <circle cx="109" cy="22" r="1" fill="rgba(33,12,4,0.0509804)"/>
-  <circle cx="110" cy="22" r="1" fill="rgba(36,14,5,0)"/>
-  <circle cx="111" cy="22" r="1" fill="rgba(36,14,5,0)"/>
-  <circle cx="112" cy="22" r="1" fill="rgba(36,14,5,0)"/>
-  <circle cx="113" cy="22" r="1" fill="rgba(36,14,5,0)"/>
-  <circle cx="114" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="22" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="23" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="23" r="1" fill="rgba(45,20,8,0)"/>
-  <circle cx="19" cy="23" r="1" fill="rgba(45,20,8,0)"/>
-  <circle cx="20" cy="23" r="1" fill="rgba(45,20,8,0)"/>
-  <circle cx="21" cy="23" r="1" fill="rgba(45,20,8,0)"/>
-  <circle cx="22" cy="23" r="1" fill="rgba(45,20,8,0)"/>
-  <circle cx="23" cy="23" r="1" fill="rgba(45,20,8,0)"/>
-  <circle cx="24" cy="23" r="1" fill="rgba(45,20,8,0)"/>
-  <circle cx="25" cy="23" r="1" fill="rgba(45,20,8,0)"/>
-  <circle cx="26" cy="23" r="1" fill="rgba(45,20,8,0)"/>
-  <circle cx="27" cy="23" r="1" fill="rgba(45,20,8,0)"/>
-  <circle cx="28" cy="23" r="1" fill="rgba(45,20,8,0)"/>
-  <circle cx="29" cy="23" r="1" fill="rgba(40,17,6,0)"/>
-  <circle cx="30" cy="23" r="1" fill="rgba(59,32,14,0.419608)"/>
-  <circle cx="31" cy="23" r="1" fill="rgba(94,61,36,1)"/>
-  <circle cx="32" cy="23" r="1" fill="rgba(93,61,35,0.996078)"/>
-  <circle cx="33" cy="23" r="1" fill="rgba(43,19,7,0.47451)"/>
-  <circle cx="34" cy="23" r="1" fill="rgba(73,41,20,0.172549)"/>
-  <circle cx="35" cy="23" r="1" fill="rgba(103,72,45,0.0745098)"/>
-  <circle cx="36" cy="23" r="1" fill="rgba(96,65,39,0)"/>
-  <circle cx="37" cy="23" r="1" fill="rgba(95,63,37,0)"/>
-  <circle cx="38" cy="23" r="1" fill="rgba(85,55,30,0)"/>
-  <circle cx="39" cy="23" r="1" fill="rgba(82,49,26,0)"/>
-  <circle cx="40" cy="23" r="1" fill="rgba(78,46,24,0)"/>
-  <circle cx="41" cy="23" r="1" fill="rgba(75,42,22,0)"/>
-  <circle cx="42" cy="23" r="1" fill="rgba(65,35,16,0)"/>
-  <circle cx="43" cy="23" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="44" cy="23" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="45" cy="23" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="46" cy="23" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="47" cy="23" r="1" fill="rgba(61,30,13,0.027451)"/>
-  <circle cx="48" cy="23" r="1" fill="rgba(61,30,13,0.592157)"/>
-  <circle cx="49" cy="23" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="50" cy="23" r="1" fill="rgba(61,30,13,0.992157)"/>
-  <circle cx="51" cy="23" r="1" fill="rgba(50,22,9,1)"/>
-  <circle cx="52" cy="23" r="1" fill="rgba(29,11,3,1)"/>
-  <circle cx="53" cy="23" r="1" fill="rgba(19,5,1,1)"/>
-  <circle cx="54" cy="23" r="1" fill="rgba(21,5,1,1)"/>
-  <circle cx="55" cy="23" r="1" fill="rgba(47,21,8,1)"/>
-  <circle cx="56" cy="23" r="1" fill="rgba(110,76,47,1)"/>
-  <circle cx="57" cy="23" r="1" fill="rgba(178,151,123,1)"/>
-  <circle cx="58" cy="23" r="1" fill="rgba(196,174,149,1)"/>
-  <circle cx="59" cy="23" r="1" fill="rgba(161,132,101,1)"/>
-  <circle cx="60" cy="23" r="1" fill="rgba(107,73,45,1)"/>
-  <circle cx="61" cy="23" r="1" fill="rgba(68,37,18,1)"/>
-  <circle cx="62" cy="23" r="1" fill="rgba(53,25,11,1)"/>
-  <circle cx="63" cy="23" r="1" fill="rgba(61,31,14,1)"/>
-  <circle cx="64" cy="23" r="1" fill="rgba(63,33,15,1)"/>
-  <circle cx="65" cy="23" r="1" fill="rgba(63,33,15,1)"/>
-  <circle cx="66" cy="23" r="1" fill="rgba(69,38,18,1)"/>
-  <circle cx="67" cy="23" r="1" fill="rgba(68,39,20,1)"/>
-  <circle cx="68" cy="23" r="1" fill="rgba(68,37,18,1)"/>
-  <circle cx="69" cy="23" r="1" fill="rgba(65,35,18,1)"/>
-  <circle cx="70" cy="23" r="1" fill="rgba(65,37,20,1)"/>
-  <circle cx="71" cy="23" r="1" fill="rgba(67,40,22,1)"/>
-  <circle cx="72" cy="23" r="1" fill="rgba(70,44,26,1)"/>
-  <circle cx="73" cy="23" r="1" fill="rgba(70,45,27,1)"/>
-  <circle cx="74" cy="23" r="1" fill="rgba(63,37,21,1)"/>
-  <circle cx="75" cy="23" r="1" fill="rgba(46,22,9,1)"/>
-  <circle cx="76" cy="23" r="1" fill="rgba(19,6,1,1)"/>
-  <circle cx="77" cy="23" r="1" fill="black"/>
-  <circle cx="78" cy="23" r="1" fill="rgba(33,12,3,1)"/>
-  <circle cx="79" cy="23" r="1" fill="rgba(57,30,14,0.94902)"/>
-  <circle cx="80" cy="23" r="1" fill="rgba(85,63,44,0.792157)"/>
-  <circle cx="81" cy="23" r="1" fill="rgba(98,78,61,0.776471)"/>
-  <circle cx="82" cy="23" r="1" fill="rgba(61,30,13,0.211765)"/>
-  <circle cx="83" cy="23" r="1" fill="rgba(59,28,12,0)"/>
-  <circle cx="84" cy="23" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="85" cy="23" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="86" cy="23" r="1" fill="rgba(61,31,14,0)"/>
-  <circle cx="87" cy="23" r="1" fill="rgba(62,33,16,0)"/>
-  <circle cx="88" cy="23" r="1" fill="rgba(61,29,13,0)"/>
-  <circle cx="89" cy="23" r="1" fill="rgba(63,32,14,0)"/>
-  <circle cx="90" cy="23" r="1" fill="rgba(68,37,18,0)"/>
-  <circle cx="91" cy="23" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="92" cy="23" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="93" cy="23" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="94" cy="23" r="1" fill="rgba(82,50,27,0)"/>
-  <circle cx="95" cy="23" r="1" fill="rgba(85,53,30,0)"/>
-  <circle cx="96" cy="23" r="1" fill="rgba(90,57,33,0)"/>
-  <circle cx="97" cy="23" r="1" fill="rgba(94,62,37,0)"/>
-  <circle cx="98" cy="23" r="1" fill="rgba(98,66,39,0)"/>
-  <circle cx="99" cy="23" r="1" fill="rgba(99,67,41,0)"/>
-  <circle cx="100" cy="23" r="1" fill="rgba(99,67,40,0)"/>
-  <circle cx="101" cy="23" r="1" fill="rgba(99,67,40,0)"/>
-  <circle cx="102" cy="23" r="1" fill="rgba(99,67,40,0)"/>
-  <circle cx="103" cy="23" r="1" fill="rgba(97,65,38,0.54902)"/>
-  <circle cx="104" cy="23" r="1" fill="rgba(93,61,35,1)"/>
-  <circle cx="105" cy="23" r="1" fill="rgba(91,58,33,1)"/>
-  <circle cx="106" cy="23" r="1" fill="rgba(57,30,13,0.717647)"/>
-  <circle cx="107" cy="23" r="1" fill="rgba(0,0,0,0.45098)"/>
-  <circle cx="108" cy="23" r="1" fill="rgba(21,6,1,0.262745)"/>
-  <circle cx="109" cy="23" r="1" fill="rgba(34,13,4,0.00784314)"/>
-  <circle cx="110" cy="23" r="1" fill="rgba(34,13,4,0)"/>
-  <circle cx="111" cy="23" r="1" fill="rgba(34,13,4,0)"/>
-  <circle cx="112" cy="23" r="1" fill="rgba(34,13,4,0)"/>
-  <circle cx="113" cy="23" r="1" fill="rgba(34,13,4,0)"/>
-  <circle cx="114" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="23" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="24" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="24" r="1" fill="rgba(47,22,9,0)"/>
-  <circle cx="19" cy="24" r="1" fill="rgba(47,22,9,0)"/>
-  <circle cx="20" cy="24" r="1" fill="rgba(47,22,9,0)"/>
-  <circle cx="21" cy="24" r="1" fill="rgba(47,22,9,0)"/>
-  <circle cx="22" cy="24" r="1" fill="rgba(47,22,9,0)"/>
-  <circle cx="23" cy="24" r="1" fill="rgba(47,22,9,0)"/>
-  <circle cx="24" cy="24" r="1" fill="rgba(47,22,9,0)"/>
-  <circle cx="25" cy="24" r="1" fill="rgba(47,22,9,0)"/>
-  <circle cx="26" cy="24" r="1" fill="rgba(47,22,9,0)"/>
-  <circle cx="27" cy="24" r="1" fill="rgba(47,22,9,0)"/>
-  <circle cx="28" cy="24" r="1" fill="rgba(47,22,9,0)"/>
-  <circle cx="29" cy="24" r="1" fill="rgba(46,21,8,0)"/>
-  <circle cx="30" cy="24" r="1" fill="rgba(53,26,11,0.160784)"/>
-  <circle cx="31" cy="24" r="1" fill="rgba(87,55,30,0.964706)"/>
-  <circle cx="32" cy="24" r="1" fill="rgba(92,60,34,1)"/>
-  <circle cx="33" cy="24" r="1" fill="rgba(91,58,33,0.945098)"/>
-  <circle cx="34" cy="24" r="1" fill="rgba(95,62,37,0.960784)"/>
-  <circle cx="35" cy="24" r="1" fill="rgba(97,65,38,0.803922)"/>
-  <circle cx="36" cy="24" r="1" fill="rgba(94,62,37,0.0666667)"/>
-  <circle cx="37" cy="24" r="1" fill="rgba(93,61,35,0)"/>
-  <circle cx="38" cy="24" r="1" fill="rgba(84,53,29,0)"/>
-  <circle cx="39" cy="24" r="1" fill="rgba(82,49,26,0)"/>
-  <circle cx="40" cy="24" r="1" fill="rgba(78,46,24,0)"/>
-  <circle cx="41" cy="24" r="1" fill="rgba(75,42,22,0)"/>
-  <circle cx="42" cy="24" r="1" fill="rgba(65,35,16,0)"/>
-  <circle cx="43" cy="24" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="44" cy="24" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="45" cy="24" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="46" cy="24" r="1" fill="rgba(61,30,13,0.0745098)"/>
-  <circle cx="47" cy="24" r="1" fill="rgba(61,30,13,0.701961)"/>
-  <circle cx="48" cy="24" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="49" cy="24" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="50" cy="24" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="51" cy="24" r="1" fill="rgba(62,31,14,1)"/>
-  <circle cx="52" cy="24" r="1" fill="rgba(63,32,14,1)"/>
-  <circle cx="53" cy="24" r="1" fill="rgba(55,26,11,1)"/>
-  <circle cx="54" cy="24" r="1" fill="rgba(40,16,6,1)"/>
-  <circle cx="55" cy="24" r="1" fill="rgba(24,8,2,1)"/>
-  <circle cx="56" cy="24" r="1" fill="rgba(7,0,0,1)"/>
-  <circle cx="57" cy="24" r="1" fill="rgba(21,5,1,1)"/>
-  <circle cx="58" cy="24" r="1" fill="rgba(76,44,22,1)"/>
-  <circle cx="59" cy="24" r="1" fill="rgba(137,104,74,1)"/>
-  <circle cx="60" cy="24" r="1" fill="rgba(172,145,116,1)"/>
-  <circle cx="61" cy="24" r="1" fill="rgba(172,145,117,1)"/>
-  <circle cx="62" cy="24" r="1" fill="rgba(152,122,91,1)"/>
-  <circle cx="63" cy="24" r="1" fill="rgba(120,86,56,1)"/>
-  <circle cx="64" cy="24" r="1" fill="rgba(113,79,50,1)"/>
-  <circle cx="65" cy="24" r="1" fill="rgba(109,75,46,1)"/>
-  <circle cx="66" cy="24" r="1" fill="rgba(70,42,22,1)"/>
-  <circle cx="67" cy="24" r="1" fill="rgba(70,44,27,1)"/>
-  <circle cx="68" cy="24" r="1" fill="rgba(71,44,27,1)"/>
-  <circle cx="69" cy="24" r="1" fill="rgba(69,43,26,1)"/>
-  <circle cx="70" cy="24" r="1" fill="rgba(68,42,25,1)"/>
-  <circle cx="71" cy="24" r="1" fill="rgba(61,36,20,1)"/>
-  <circle cx="72" cy="24" r="1" fill="rgba(46,23,11,1)"/>
-  <circle cx="73" cy="24" r="1" fill="rgba(24,10,3,1)"/>
-  <circle cx="74" cy="24" r="1" fill="rgba(7,2,0,1)"/>
-  <circle cx="75" cy="24" r="1" fill="rgba(36,14,4,1)"/>
-  <circle cx="76" cy="24" r="1" fill="rgba(76,45,23,1)"/>
-  <circle cx="77" cy="24" r="1" fill="rgba(99,71,47,1)"/>
-  <circle cx="78" cy="24" r="1" fill="rgba(104,82,62,1)"/>
-  <circle cx="79" cy="24" r="1" fill="rgba(95,79,68,1)"/>
-  <circle cx="80" cy="24" r="1" fill="rgba(85,76,69,1)"/>
-  <circle cx="81" cy="24" r="1" fill="rgba(86,78,72,1)"/>
-  <circle cx="82" cy="24" r="1" fill="rgba(78,59,44,0.92549)"/>
-  <circle cx="83" cy="24" r="1" fill="rgba(61,29,13,0.286275)"/>
-  <circle cx="84" cy="24" r="1" fill="rgba(59,28,12,0)"/>
-  <circle cx="85" cy="24" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="86" cy="24" r="1" fill="rgba(61,31,14,0)"/>
-  <circle cx="87" cy="24" r="1" fill="rgba(62,33,16,0)"/>
-  <circle cx="88" cy="24" r="1" fill="rgba(61,29,13,0)"/>
-  <circle cx="89" cy="24" r="1" fill="rgba(63,32,14,0)"/>
-  <circle cx="90" cy="24" r="1" fill="rgba(68,37,18,0)"/>
-  <circle cx="91" cy="24" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="92" cy="24" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="93" cy="24" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="94" cy="24" r="1" fill="rgba(82,50,27,0)"/>
-  <circle cx="95" cy="24" r="1" fill="rgba(85,53,30,0)"/>
-  <circle cx="96" cy="24" r="1" fill="rgba(90,57,33,0)"/>
-  <circle cx="97" cy="24" r="1" fill="rgba(94,62,37,0)"/>
-  <circle cx="98" cy="24" r="1" fill="rgba(98,66,39,0)"/>
-  <circle cx="99" cy="24" r="1" fill="rgba(99,67,41,0)"/>
-  <circle cx="100" cy="24" r="1" fill="rgba(100,67,41,0)"/>
-  <circle cx="101" cy="24" r="1" fill="rgba(100,67,41,0)"/>
-  <circle cx="102" cy="24" r="1" fill="rgba(99,67,41,0.172549)"/>
-  <circle cx="103" cy="24" r="1" fill="rgba(97,65,38,0.968627)"/>
-  <circle cx="104" cy="24" r="1" fill="rgba(96,63,37,1)"/>
-  <circle cx="105" cy="24" r="1" fill="rgba(63,34,16,0.705882)"/>
-  <circle cx="106" cy="24" r="1" fill="rgba(0,0,0,0.431373)"/>
-  <circle cx="107" cy="24" r="1" fill="rgba(4,0,0,0.435294)"/>
-  <circle cx="108" cy="24" r="1" fill="rgba(31,12,3,0.172549)"/>
-  <circle cx="109" cy="24" r="1" fill="rgba(36,15,5,0)"/>
-  <circle cx="110" cy="24" r="1" fill="rgba(34,14,4,0)"/>
-  <circle cx="111" cy="24" r="1" fill="rgba(34,14,4,0)"/>
-  <circle cx="112" cy="24" r="1" fill="rgba(34,14,4,0)"/>
-  <circle cx="113" cy="24" r="1" fill="rgba(34,14,4,0)"/>
-  <circle cx="114" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="24" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="25" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="25" r="1" fill="rgba(45,20,8,0)"/>
-  <circle cx="19" cy="25" r="1" fill="rgba(49,23,9,0)"/>
-  <circle cx="20" cy="25" r="1" fill="rgba(47,22,9,0)"/>
-  <circle cx="21" cy="25" r="1" fill="rgba(47,22,9,0)"/>
-  <circle cx="22" cy="25" r="1" fill="rgba(47,22,9,0)"/>
-  <circle cx="23" cy="25" r="1" fill="rgba(47,22,9,0)"/>
-  <circle cx="24" cy="25" r="1" fill="rgba(47,22,9,0)"/>
-  <circle cx="25" cy="25" r="1" fill="rgba(47,22,9,0)"/>
-  <circle cx="26" cy="25" r="1" fill="rgba(47,22,9,0)"/>
-  <circle cx="27" cy="25" r="1" fill="rgba(47,22,9,0)"/>
-  <circle cx="28" cy="25" r="1" fill="rgba(47,22,9,0)"/>
-  <circle cx="29" cy="25" r="1" fill="rgba(47,22,9,0)"/>
-  <circle cx="30" cy="25" r="1" fill="rgba(47,22,9,0.00784314)"/>
-  <circle cx="31" cy="25" r="1" fill="rgba(82,49,27,0.729412)"/>
-  <circle cx="32" cy="25" r="1" fill="rgba(90,57,33,1)"/>
-  <circle cx="33" cy="25" r="1" fill="rgba(92,59,34,1)"/>
-  <circle cx="34" cy="25" r="1" fill="rgba(92,60,34,1)"/>
-  <circle cx="35" cy="25" r="1" fill="rgba(93,61,35,1)"/>
-  <circle cx="36" cy="25" r="1" fill="rgba(93,61,35,0.67451)"/>
-  <circle cx="37" cy="25" r="1" fill="rgba(91,59,33,0)"/>
-  <circle cx="38" cy="25" r="1" fill="rgba(84,53,29,0)"/>
-  <circle cx="39" cy="25" r="1" fill="rgba(82,49,26,0)"/>
-  <circle cx="40" cy="25" r="1" fill="rgba(78,46,24,0)"/>
-  <circle cx="41" cy="25" r="1" fill="rgba(75,42,22,0)"/>
-  <circle cx="42" cy="25" r="1" fill="rgba(65,35,16,0)"/>
-  <circle cx="43" cy="25" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="44" cy="25" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="45" cy="25" r="1" fill="rgba(61,30,13,0.12549)"/>
-  <circle cx="46" cy="25" r="1" fill="rgba(61,30,13,0.792157)"/>
-  <circle cx="47" cy="25" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="48" cy="25" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="49" cy="25" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="50" cy="25" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="51" cy="25" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="52" cy="25" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="53" cy="25" r="1" fill="rgba(62,31,14,1)"/>
-  <circle cx="54" cy="25" r="1" fill="rgba(63,32,14,1)"/>
-  <circle cx="55" cy="25" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="56" cy="25" r="1" fill="rgba(53,24,10,1)"/>
-  <circle cx="57" cy="25" r="1" fill="rgba(36,14,5,1)"/>
-  <circle cx="58" cy="25" r="1" fill="rgba(19,4,1,1)"/>
-  <circle cx="59" cy="25" r="1" fill="black"/>
-  <circle cx="60" cy="25" r="1" fill="rgba(10,1,0,1)"/>
-  <circle cx="61" cy="25" r="1" fill="rgba(54,28,11,1)"/>
-  <circle cx="62" cy="25" r="1" fill="rgba(91,58,33,1)"/>
-  <circle cx="63" cy="25" r="1" fill="rgba(116,83,53,1)"/>
-  <circle cx="64" cy="25" r="1" fill="rgba(142,110,79,1)"/>
-  <circle cx="65" cy="25" r="1" fill="rgba(137,104,75,1)"/>
-  <circle cx="66" cy="25" r="1" fill="rgba(70,43,25,1)"/>
-  <circle cx="67" cy="25" r="1" fill="rgba(62,40,24,1)"/>
-  <circle cx="68" cy="25" r="1" fill="rgba(53,30,16,1)"/>
-  <circle cx="69" cy="25" r="1" fill="rgba(37,18,8,1)"/>
-  <circle cx="70" cy="25" r="1" fill="rgba(21,7,2,1)"/>
-  <circle cx="71" cy="25" r="1" fill="rgba(19,6,1,1)"/>
-  <circle cx="72" cy="25" r="1" fill="rgba(39,17,6,1)"/>
-  <circle cx="73" cy="25" r="1" fill="rgba(78,49,25,1)"/>
-  <circle cx="74" cy="25" r="1" fill="rgba(121,91,64,1)"/>
-  <circle cx="75" cy="25" r="1" fill="rgba(125,99,77,1)"/>
-  <circle cx="76" cy="25" r="1" fill="rgba(110,90,73,1)"/>
-  <circle cx="77" cy="25" r="1" fill="rgba(85,71,59,1)"/>
-  <circle cx="78" cy="25" r="1" fill="rgba(76,65,55,1)"/>
-  <circle cx="79" cy="25" r="1" fill="rgba(78,68,57,1)"/>
-  <circle cx="80" cy="25" r="1" fill="rgba(83,72,63,1)"/>
-  <circle cx="81" cy="25" r="1" fill="rgba(86,76,67,1)"/>
-  <circle cx="82" cy="25" r="1" fill="rgba(91,82,76,1)"/>
-  <circle cx="83" cy="25" r="1" fill="rgba(82,65,52,0.968627)"/>
-  <circle cx="84" cy="25" r="1" fill="rgba(63,32,16,0.360784)"/>
-  <circle cx="85" cy="25" r="1" fill="rgba(59,28,11,0)"/>
-  <circle cx="86" cy="25" r="1" fill="rgba(61,31,14,0)"/>
-  <circle cx="87" cy="25" r="1" fill="rgba(62,33,16,0)"/>
-  <circle cx="88" cy="25" r="1" fill="rgba(61,29,13,0)"/>
-  <circle cx="89" cy="25" r="1" fill="rgba(63,32,14,0)"/>
-  <circle cx="90" cy="25" r="1" fill="rgba(68,37,18,0)"/>
-  <circle cx="91" cy="25" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="92" cy="25" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="93" cy="25" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="94" cy="25" r="1" fill="rgba(82,50,27,0)"/>
-  <circle cx="95" cy="25" r="1" fill="rgba(85,53,30,0)"/>
-  <circle cx="96" cy="25" r="1" fill="rgba(90,57,33,0)"/>
-  <circle cx="97" cy="25" r="1" fill="rgba(94,62,37,0)"/>
-  <circle cx="98" cy="25" r="1" fill="rgba(98,66,39,0)"/>
-  <circle cx="99" cy="25" r="1" fill="rgba(98,66,40,0)"/>
-  <circle cx="100" cy="25" r="1" fill="rgba(99,66,40,0)"/>
-  <circle cx="101" cy="25" r="1" fill="rgba(100,67,41,0)"/>
-  <circle cx="102" cy="25" r="1" fill="rgba(99,67,41,0.686275)"/>
-  <circle cx="103" cy="25" r="1" fill="rgba(97,65,38,1)"/>
-  <circle cx="104" cy="25" r="1" fill="rgba(83,52,28,0.866667)"/>
-  <circle cx="105" cy="25" r="1" fill="rgba(12,4,0,0.447059)"/>
-  <circle cx="106" cy="25" r="1" fill="rgba(0,0,0,0.462745)"/>
-  <circle cx="107" cy="25" r="1" fill="rgba(17,5,1,0.372549)"/>
-  <circle cx="108" cy="25" r="1" fill="rgba(40,18,6,0.0705882)"/>
-  <circle cx="109" cy="25" r="1" fill="rgba(43,20,7,0)"/>
-  <circle cx="110" cy="25" r="1" fill="rgba(42,19,7,0)"/>
-  <circle cx="111" cy="25" r="1" fill="rgba(42,19,7,0)"/>
-  <circle cx="112" cy="25" r="1" fill="rgba(42,19,7,0)"/>
-  <circle cx="113" cy="25" r="1" fill="rgba(42,19,7,0)"/>
-  <circle cx="114" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="25" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="26" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="26" r="1" fill="rgba(62,34,16,0)"/>
-  <circle cx="19" cy="26" r="1" fill="rgba(43,20,8,0)"/>
-  <circle cx="20" cy="26" r="1" fill="rgba(50,25,10,0)"/>
-  <circle cx="21" cy="26" r="1" fill="rgba(50,25,10,0)"/>
-  <circle cx="22" cy="26" r="1" fill="rgba(50,25,10,0)"/>
-  <circle cx="23" cy="26" r="1" fill="rgba(50,25,10,0)"/>
-  <circle cx="24" cy="26" r="1" fill="rgba(50,25,10,0)"/>
-  <circle cx="25" cy="26" r="1" fill="rgba(50,25,10,0)"/>
-  <circle cx="26" cy="26" r="1" fill="rgba(50,25,10,0)"/>
-  <circle cx="27" cy="26" r="1" fill="rgba(50,25,10,0)"/>
-  <circle cx="28" cy="26" r="1" fill="rgba(50,25,10,0)"/>
-  <circle cx="29" cy="26" r="1" fill="rgba(50,25,10,0)"/>
-  <circle cx="30" cy="26" r="1" fill="rgba(47,23,9,0)"/>
-  <circle cx="31" cy="26" r="1" fill="rgba(64,35,16,0.243137)"/>
-  <circle cx="32" cy="26" r="1" fill="rgba(84,51,28,0.913725)"/>
-  <circle cx="33" cy="26" r="1" fill="rgba(88,56,32,1)"/>
-  <circle cx="34" cy="26" r="1" fill="rgba(90,58,33,1)"/>
-  <circle cx="35" cy="26" r="1" fill="rgba(88,56,32,1)"/>
-  <circle cx="36" cy="26" r="1" fill="rgba(88,57,32,1)"/>
-  <circle cx="37" cy="26" r="1" fill="rgba(87,55,30,0.552941)"/>
-  <circle cx="38" cy="26" r="1" fill="rgba(84,52,28,0.105882)"/>
-  <circle cx="39" cy="26" r="1" fill="rgba(82,49,26,0)"/>
-  <circle cx="40" cy="26" r="1" fill="rgba(78,46,24,0)"/>
-  <circle cx="41" cy="26" r="1" fill="rgba(75,42,22,0)"/>
-  <circle cx="42" cy="26" r="1" fill="rgba(65,35,16,0)"/>
-  <circle cx="43" cy="26" r="1" fill="rgba(59,29,13,0)"/>
-  <circle cx="44" cy="26" r="1" fill="rgba(61,30,13,0.192157)"/>
-  <circle cx="45" cy="26" r="1" fill="rgba(61,30,13,0.858824)"/>
-  <circle cx="46" cy="26" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="47" cy="26" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="48" cy="26" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="49" cy="26" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="50" cy="26" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="51" cy="26" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="52" cy="26" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="53" cy="26" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="54" cy="26" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="55" cy="26" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="56" cy="26" r="1" fill="rgba(62,31,14,1)"/>
-  <circle cx="57" cy="26" r="1" fill="rgba(63,32,14,1)"/>
-  <circle cx="58" cy="26" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="59" cy="26" r="1" fill="rgba(54,25,10,1)"/>
-  <circle cx="60" cy="26" r="1" fill="rgba(39,16,6,1)"/>
-  <circle cx="61" cy="26" r="1" fill="rgba(24,8,2,1)"/>
-  <circle cx="62" cy="26" r="1" fill="rgba(7,0,0,1)"/>
-  <circle cx="63" cy="26" r="1" fill="black"/>
-  <circle cx="64" cy="26" r="1" fill="black"/>
-  <circle cx="65" cy="26" r="1" fill="black"/>
-  <circle cx="66" cy="26" r="1" fill="rgba(12,4,1,1)"/>
-  <circle cx="67" cy="26" r="1" fill="rgba(17,7,3,1)"/>
-  <circle cx="68" cy="26" r="1" fill="rgba(17,6,1,1)"/>
-  <circle cx="69" cy="26" r="1" fill="rgba(19,8,3,1)"/>
-  <circle cx="70" cy="26" r="1" fill="rgba(49,26,12,1)"/>
-  <circle cx="71" cy="26" r="1" fill="rgba(83,56,34,1)"/>
-  <circle cx="72" cy="26" r="1" fill="rgba(105,79,56,1)"/>
-  <circle cx="73" cy="26" r="1" fill="rgba(98,76,56,1)"/>
-  <circle cx="74" cy="26" r="1" fill="rgba(82,64,48,1)"/>
-  <circle cx="75" cy="26" r="1" fill="rgba(63,50,38,1)"/>
-  <circle cx="76" cy="26" r="1" fill="rgba(63,50,40,1)"/>
-  <circle cx="77" cy="26" r="1" fill="rgba(70,57,46,1)"/>
-  <circle cx="78" cy="26" r="1" fill="rgba(74,62,50,1)"/>
-  <circle cx="79" cy="26" r="1" fill="rgba(78,66,56,1)"/>
-  <circle cx="80" cy="26" r="1" fill="rgba(81,70,59,1)"/>
-  <circle cx="81" cy="26" r="1" fill="rgba(83,73,64,1)"/>
-  <circle cx="82" cy="26" r="1" fill="rgba(87,77,69,1)"/>
-  <circle cx="83" cy="26" r="1" fill="rgba(92,84,79,1)"/>
-  <circle cx="84" cy="26" r="1" fill="rgba(86,72,62,1)"/>
-  <circle cx="85" cy="26" r="1" fill="rgba(64,36,19,0.454902)"/>
-  <circle cx="86" cy="26" r="1" fill="rgba(59,28,11,0)"/>
-  <circle cx="87" cy="26" r="1" fill="rgba(62,33,16,0)"/>
-  <circle cx="88" cy="26" r="1" fill="rgba(61,29,13,0)"/>
-  <circle cx="89" cy="26" r="1" fill="rgba(63,32,14,0)"/>
-  <circle cx="90" cy="26" r="1" fill="rgba(68,37,18,0)"/>
-  <circle cx="91" cy="26" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="92" cy="26" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="93" cy="26" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="94" cy="26" r="1" fill="rgba(82,50,27,0)"/>
-  <circle cx="95" cy="26" r="1" fill="rgba(85,53,30,0)"/>
-  <circle cx="96" cy="26" r="1" fill="rgba(90,57,33,0)"/>
-  <circle cx="97" cy="26" r="1" fill="rgba(94,62,37,0)"/>
-  <circle cx="98" cy="26" r="1" fill="rgba(98,66,39,0)"/>
-  <circle cx="99" cy="26" r="1" fill="rgba(98,66,40,0)"/>
-  <circle cx="100" cy="26" r="1" fill="rgba(97,64,38,0)"/>
-  <circle cx="101" cy="26" r="1" fill="rgba(98,66,39,0.282353)"/>
-  <circle cx="102" cy="26" r="1" fill="rgba(98,65,39,0.996078)"/>
-  <circle cx="103" cy="26" r="1" fill="rgba(97,64,38,1)"/>
-  <circle cx="104" cy="26" r="1" fill="rgba(51,26,11,0.6)"/>
-  <circle cx="105" cy="26" r="1" fill="rgba(0,0,0,0.435294)"/>
-  <circle cx="106" cy="26" r="1" fill="rgba(7,0,0,0.454902)"/>
-  <circle cx="107" cy="26" r="1" fill="rgba(28,10,3,0.223529)"/>
-  <circle cx="108" cy="26" r="1" fill="rgba(40,18,7,0.00784314)"/>
-  <circle cx="109" cy="26" r="1" fill="rgba(42,19,7,0)"/>
-  <circle cx="110" cy="26" r="1" fill="rgba(42,19,7,0)"/>
-  <circle cx="111" cy="26" r="1" fill="rgba(42,19,7,0)"/>
-  <circle cx="112" cy="26" r="1" fill="rgba(42,19,7,0)"/>
-  <circle cx="113" cy="26" r="1" fill="rgba(40,18,7,0)"/>
-  <circle cx="114" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="26" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="27" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="27" r="1" fill="rgba(100,69,42,0)"/>
-  <circle cx="19" cy="27" r="1" fill="rgba(63,36,17,0)"/>
-  <circle cx="20" cy="27" r="1" fill="rgba(40,18,7,0)"/>
-  <circle cx="21" cy="27" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="22" cy="27" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="23" cy="27" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="24" cy="27" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="25" cy="27" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="26" cy="27" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="27" cy="27" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="28" cy="27" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="29" cy="27" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="30" cy="27" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="31" cy="27" r="1" fill="rgba(45,21,8,0)"/>
-  <circle cx="32" cy="27" r="1" fill="rgba(43,20,7,0.278431)"/>
-  <circle cx="33" cy="27" r="1" fill="rgba(45,21,8,0.639216)"/>
-  <circle cx="34" cy="27" r="1" fill="rgba(68,38,19,0.780392)"/>
-  <circle cx="35" cy="27" r="1" fill="rgba(85,52,29,0.941176)"/>
-  <circle cx="36" cy="27" r="1" fill="rgba(85,52,29,1)"/>
-  <circle cx="37" cy="27" r="1" fill="rgba(84,52,28,1)"/>
-  <circle cx="38" cy="27" r="1" fill="rgba(83,50,27,0.929412)"/>
-  <circle cx="39" cy="27" r="1" fill="rgba(82,49,26,0.615686)"/>
-  <circle cx="40" cy="27" r="1" fill="rgba(78,46,24,0.254902)"/>
-  <circle cx="41" cy="27" r="1" fill="rgba(75,42,22,0.0117647)"/>
-  <circle cx="42" cy="27" r="1" fill="rgba(65,35,16,0)"/>
-  <circle cx="43" cy="27" r="1" fill="rgba(51,21,7,0.286275)"/>
-  <circle cx="44" cy="27" r="1" fill="rgba(55,24,9,0.92549)"/>
-  <circle cx="45" cy="27" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="46" cy="27" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="47" cy="27" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="48" cy="27" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="49" cy="27" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="50" cy="27" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="51" cy="27" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="52" cy="27" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="53" cy="27" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="54" cy="27" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="55" cy="27" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="56" cy="27" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="57" cy="27" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="58" cy="27" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="59" cy="27" r="1" fill="rgba(62,31,14,1)"/>
-  <circle cx="60" cy="27" r="1" fill="rgba(63,32,14,1)"/>
-  <circle cx="61" cy="27" r="1" fill="rgba(62,31,14,1)"/>
-  <circle cx="62" cy="27" r="1" fill="rgba(59,29,13,1)"/>
-  <circle cx="63" cy="27" r="1" fill="rgba(55,26,11,1)"/>
-  <circle cx="64" cy="27" r="1" fill="rgba(51,23,9,1)"/>
-  <circle cx="65" cy="27" r="1" fill="rgba(49,22,9,1)"/>
-  <circle cx="66" cy="27" r="1" fill="rgba(51,24,9,1)"/>
-  <circle cx="67" cy="27" r="1" fill="rgba(39,20,9,1)"/>
-  <circle cx="68" cy="27" r="1" fill="rgba(36,22,12,1)"/>
-  <circle cx="69" cy="27" r="1" fill="rgba(43,27,16,1)"/>
-  <circle cx="70" cy="27" r="1" fill="rgba(53,36,22,1)"/>
-  <circle cx="71" cy="27" r="1" fill="rgba(53,38,25,1)"/>
-  <circle cx="72" cy="27" r="1" fill="rgba(45,33,22,1)"/>
-  <circle cx="73" cy="27" r="1" fill="rgba(50,38,26,1)"/>
-  <circle cx="74" cy="27" r="1" fill="rgba(57,43,31,1)"/>
-  <circle cx="75" cy="27" r="1" fill="rgba(62,48,36,1)"/>
-  <circle cx="76" cy="27" r="1" fill="rgba(67,53,41,1)"/>
-  <circle cx="77" cy="27" r="1" fill="rgba(69,56,43,1)"/>
-  <circle cx="78" cy="27" r="1" fill="rgba(73,59,48,1)"/>
-  <circle cx="79" cy="27" r="1" fill="rgba(75,64,53,1)"/>
-  <circle cx="80" cy="27" r="1" fill="rgba(80,67,56,1)"/>
-  <circle cx="81" cy="27" r="1" fill="rgba(82,70,62,1)"/>
-  <circle cx="82" cy="27" r="1" fill="rgba(85,75,65,1)"/>
-  <circle cx="83" cy="27" r="1" fill="rgba(87,78,71,1)"/>
-  <circle cx="84" cy="27" r="1" fill="rgba(93,84,80,1)"/>
-  <circle cx="85" cy="27" r="1" fill="rgba(90,78,70,1)"/>
-  <circle cx="86" cy="27" r="1" fill="rgba(68,41,24,0.52549)"/>
-  <circle cx="87" cy="27" r="1" fill="rgba(61,29,13,0)"/>
-  <circle cx="88" cy="27" r="1" fill="rgba(61,29,13,0)"/>
-  <circle cx="89" cy="27" r="1" fill="rgba(63,32,14,0)"/>
-  <circle cx="90" cy="27" r="1" fill="rgba(68,37,18,0)"/>
-  <circle cx="91" cy="27" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="92" cy="27" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="93" cy="27" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="94" cy="27" r="1" fill="rgba(82,50,27,0)"/>
-  <circle cx="95" cy="27" r="1" fill="rgba(85,53,30,0)"/>
-  <circle cx="96" cy="27" r="1" fill="rgba(90,57,33,0)"/>
-  <circle cx="97" cy="27" r="1" fill="rgba(95,62,37,0)"/>
-  <circle cx="98" cy="27" r="1" fill="rgba(98,66,39,0.443137)"/>
-  <circle cx="99" cy="27" r="1" fill="rgba(98,66,40,0.415686)"/>
-  <circle cx="100" cy="27" r="1" fill="rgba(96,64,38,0.113725)"/>
-  <circle cx="101" cy="27" r="1" fill="rgba(96,63,38,0.792157)"/>
-  <circle cx="102" cy="27" r="1" fill="rgba(96,63,37,1)"/>
-  <circle cx="103" cy="27" r="1" fill="rgba(84,52,29,0.843137)"/>
-  <circle cx="104" cy="27" r="1" fill="rgba(15,4,0,0.427451)"/>
-  <circle cx="105" cy="27" r="1" fill="rgba(0,0,0,0.458824)"/>
-  <circle cx="106" cy="27" r="1" fill="rgba(22,8,2,0.301961)"/>
-  <circle cx="107" cy="27" r="1" fill="rgba(34,13,4,0.0509804)"/>
-  <circle cx="108" cy="27" r="1" fill="rgba(36,15,5,0)"/>
-  <circle cx="109" cy="27" r="1" fill="rgba(36,15,5,0)"/>
-  <circle cx="110" cy="27" r="1" fill="rgba(36,15,5,0)"/>
-  <circle cx="111" cy="27" r="1" fill="rgba(36,15,5,0)"/>
-  <circle cx="112" cy="27" r="1" fill="rgba(36,15,5,0)"/>
-  <circle cx="113" cy="27" r="1" fill="rgba(37,16,6,0)"/>
-  <circle cx="114" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="27" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="28" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="28" r="1" fill="rgba(113,82,54,0)"/>
-  <circle cx="19" cy="28" r="1" fill="rgba(112,81,54,0)"/>
-  <circle cx="20" cy="28" r="1" fill="rgba(65,38,18,0)"/>
-  <circle cx="21" cy="28" r="1" fill="rgba(37,16,5,0)"/>
-  <circle cx="22" cy="28" r="1" fill="rgba(45,21,8,0)"/>
-  <circle cx="23" cy="28" r="1" fill="rgba(45,22,8,0)"/>
-  <circle cx="24" cy="28" r="1" fill="rgba(45,21,8,0)"/>
-  <circle cx="25" cy="28" r="1" fill="rgba(45,21,8,0)"/>
-  <circle cx="26" cy="28" r="1" fill="rgba(45,21,8,0)"/>
-  <circle cx="27" cy="28" r="1" fill="rgba(45,21,8,0)"/>
-  <circle cx="28" cy="28" r="1" fill="rgba(45,21,8,0)"/>
-  <circle cx="29" cy="28" r="1" fill="rgba(45,21,8,0)"/>
-  <circle cx="30" cy="28" r="1" fill="rgba(45,21,8,0)"/>
-  <circle cx="31" cy="28" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="32" cy="28" r="1" fill="rgba(37,17,6,0.145098)"/>
-  <circle cx="33" cy="28" r="1" fill="rgba(0,0,0,0.407843)"/>
-  <circle cx="34" cy="28" r="1" fill="rgba(10,2,0,0.388235)"/>
-  <circle cx="35" cy="28" r="1" fill="rgba(55,30,13,0.247059)"/>
-  <circle cx="36" cy="28" r="1" fill="rgba(82,49,27,0.498039)"/>
-  <circle cx="37" cy="28" r="1" fill="rgba(82,50,27,0.898039)"/>
-  <circle cx="38" cy="28" r="1" fill="rgba(80,47,25,1)"/>
-  <circle cx="39" cy="28" r="1" fill="rgba(77,45,23,1)"/>
-  <circle cx="40" cy="28" r="1" fill="rgba(76,44,22,0.996078)"/>
-  <circle cx="41" cy="28" r="1" fill="rgba(73,41,20,0.772549)"/>
-  <circle cx="42" cy="28" r="1" fill="rgba(64,33,15,0.568627)"/>
-  <circle cx="43" cy="28" r="1" fill="rgba(104,85,73,0.964706)"/>
-  <circle cx="44" cy="28" r="1" fill="rgba(102,81,66,1)"/>
-  <circle cx="45" cy="28" r="1" fill="rgba(57,26,10,1)"/>
-  <circle cx="46" cy="28" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="47" cy="28" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="48" cy="28" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="49" cy="28" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="50" cy="28" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="51" cy="28" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="52" cy="28" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="53" cy="28" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="54" cy="28" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="55" cy="28" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="56" cy="28" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="57" cy="28" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="58" cy="28" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="59" cy="28" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="60" cy="28" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="61" cy="28" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="62" cy="28" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="63" cy="28" r="1" fill="rgba(62,31,14,1)"/>
-  <circle cx="64" cy="28" r="1" fill="rgba(62,31,14,1)"/>
-  <circle cx="65" cy="28" r="1" fill="rgba(62,31,14,1)"/>
-  <circle cx="66" cy="28" r="1" fill="rgba(62,31,14,1)"/>
-  <circle cx="67" cy="28" r="1" fill="rgba(46,23,11,1)"/>
-  <circle cx="68" cy="28" r="1" fill="rgba(33,20,10,1)"/>
-  <circle cx="69" cy="28" r="1" fill="rgba(39,24,13,1)"/>
-  <circle cx="70" cy="28" r="1" fill="rgba(42,27,16,1)"/>
-  <circle cx="71" cy="28" r="1" fill="rgba(45,31,19,1)"/>
-  <circle cx="72" cy="28" r="1" fill="rgba(49,35,23,1)"/>
-  <circle cx="73" cy="28" r="1" fill="rgba(54,39,27,1)"/>
-  <circle cx="74" cy="28" r="1" fill="rgba(57,43,30,1)"/>
-  <circle cx="75" cy="28" r="1" fill="rgba(61,46,33,1)"/>
-  <circle cx="76" cy="28" r="1" fill="rgba(63,50,37,1)"/>
-  <circle cx="77" cy="28" r="1" fill="rgba(68,54,42,1)"/>
-  <circle cx="78" cy="28" r="1" fill="rgba(71,57,46,1)"/>
-  <circle cx="79" cy="28" r="1" fill="rgba(74,61,49,1)"/>
-  <circle cx="80" cy="28" r="1" fill="rgba(77,64,54,1)"/>
-  <circle cx="81" cy="28" r="1" fill="rgba(81,68,58,1)"/>
-  <circle cx="82" cy="28" r="1" fill="rgba(83,72,63,1)"/>
-  <circle cx="83" cy="28" r="1" fill="rgba(86,75,68,1)"/>
-  <circle cx="84" cy="28" r="1" fill="rgba(88,79,72,1)"/>
-  <circle cx="85" cy="28" r="1" fill="rgba(94,85,81,1)"/>
-  <circle cx="86" cy="28" r="1" fill="rgba(93,83,77,1)"/>
-  <circle cx="87" cy="28" r="1" fill="rgba(70,45,29,0.6)"/>
-  <circle cx="88" cy="28" r="1" fill="rgba(58,27,10,0.0235294)"/>
-  <circle cx="89" cy="28" r="1" fill="rgba(63,32,14,0)"/>
-  <circle cx="90" cy="28" r="1" fill="rgba(68,37,18,0)"/>
-  <circle cx="91" cy="28" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="92" cy="28" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="93" cy="28" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="94" cy="28" r="1" fill="rgba(82,50,27,0)"/>
-  <circle cx="95" cy="28" r="1" fill="rgba(85,53,30,0)"/>
-  <circle cx="96" cy="28" r="1" fill="rgba(90,57,33,0.117647)"/>
-  <circle cx="97" cy="28" r="1" fill="rgba(94,61,36,0.686275)"/>
-  <circle cx="98" cy="28" r="1" fill="rgba(95,62,37,1)"/>
-  <circle cx="99" cy="28" r="1" fill="rgba(95,63,37,1)"/>
-  <circle cx="100" cy="28" r="1" fill="rgba(95,61,36,0.921569)"/>
-  <circle cx="101" cy="28" r="1" fill="rgba(93,60,35,1)"/>
-  <circle cx="102" cy="28" r="1" fill="rgba(94,61,35,0.992157)"/>
-  <circle cx="103" cy="28" r="1" fill="rgba(54,28,12,0.509804)"/>
-  <circle cx="104" cy="28" r="1" fill="rgba(0,0,0,0.435294)"/>
-  <circle cx="105" cy="28" r="1" fill="rgba(19,6,1,0.360784)"/>
-  <circle cx="106" cy="28" r="1" fill="rgba(36,15,5,0.0862745)"/>
-  <circle cx="107" cy="28" r="1" fill="rgba(33,13,4,0)"/>
-  <circle cx="108" cy="28" r="1" fill="rgba(33,13,4,0)"/>
-  <circle cx="109" cy="28" r="1" fill="rgba(33,13,4,0)"/>
-  <circle cx="110" cy="28" r="1" fill="rgba(33,13,4,0)"/>
-  <circle cx="111" cy="28" r="1" fill="rgba(33,13,4,0)"/>
-  <circle cx="112" cy="28" r="1" fill="rgba(34,14,4,0)"/>
-  <circle cx="113" cy="28" r="1" fill="rgba(53,25,10,0)"/>
-  <circle cx="114" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="28" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="29" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="29" r="1" fill="rgba(110,79,51,0)"/>
-  <circle cx="19" cy="29" r="1" fill="rgba(114,83,55,0)"/>
-  <circle cx="20" cy="29" r="1" fill="rgba(107,77,48,0)"/>
-  <circle cx="21" cy="29" r="1" fill="rgba(75,45,24,0)"/>
-  <circle cx="22" cy="29" r="1" fill="rgba(42,20,7,0)"/>
-  <circle cx="23" cy="29" r="1" fill="rgba(37,17,6,0)"/>
-  <circle cx="24" cy="29" r="1" fill="rgba(40,19,7,0)"/>
-  <circle cx="25" cy="29" r="1" fill="rgba(40,19,7,0)"/>
-  <circle cx="26" cy="29" r="1" fill="rgba(40,19,7,0)"/>
-  <circle cx="27" cy="29" r="1" fill="rgba(40,19,7,0)"/>
-  <circle cx="28" cy="29" r="1" fill="rgba(40,19,7,0)"/>
-  <circle cx="29" cy="29" r="1" fill="rgba(40,19,7,0)"/>
-  <circle cx="30" cy="29" r="1" fill="rgba(40,19,7,0)"/>
-  <circle cx="31" cy="29" r="1" fill="rgba(42,20,7,0)"/>
-  <circle cx="32" cy="29" r="1" fill="rgba(36,16,5,0.0862745)"/>
-  <circle cx="33" cy="29" r="1" fill="rgba(12,3,0,0.392157)"/>
-  <circle cx="34" cy="29" r="1" fill="rgba(4,0,0,0.462745)"/>
-  <circle cx="35" cy="29" r="1" fill="rgba(36,15,5,0.176471)"/>
-  <circle cx="36" cy="29" r="1" fill="rgba(55,27,11,0)"/>
-  <circle cx="37" cy="29" r="1" fill="rgba(64,35,16,0.0901961)"/>
-  <circle cx="38" cy="29" r="1" fill="rgba(69,38,19,0.513725)"/>
-  <circle cx="39" cy="29" r="1" fill="rgba(74,42,21,0.94902)"/>
-  <circle cx="40" cy="29" r="1" fill="rgba(71,40,20,1)"/>
-  <circle cx="41" cy="29" r="1" fill="rgba(62,31,13,1)"/>
-  <circle cx="42" cy="29" r="1" fill="rgba(94,70,52,1)"/>
-  <circle cx="43" cy="29" r="1" fill="rgba(214,227,254,1)"/>
-  <circle cx="44" cy="29" r="1" fill="rgba(164,164,175,1)"/>
-  <circle cx="45" cy="29" r="1" fill="rgba(62,33,16,1)"/>
-  <circle cx="46" cy="29" r="1" fill="rgba(58,27,11,1)"/>
-  <circle cx="47" cy="29" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="48" cy="29" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="49" cy="29" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="50" cy="29" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="51" cy="29" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="52" cy="29" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="53" cy="29" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="54" cy="29" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="55" cy="29" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="56" cy="29" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="57" cy="29" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="58" cy="29" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="59" cy="29" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="60" cy="29" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="61" cy="29" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="62" cy="29" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="63" cy="29" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="64" cy="29" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="65" cy="29" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="66" cy="29" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="67" cy="29" r="1" fill="rgba(46,23,10,1)"/>
-  <circle cx="68" cy="29" r="1" fill="rgba(29,17,9,1)"/>
-  <circle cx="69" cy="29" r="1" fill="rgba(36,22,11,1)"/>
-  <circle cx="70" cy="29" r="1" fill="rgba(40,26,15,1)"/>
-  <circle cx="71" cy="29" r="1" fill="rgba(45,29,17,1)"/>
-  <circle cx="72" cy="29" r="1" fill="rgba(47,33,21,1)"/>
-  <circle cx="73" cy="29" r="1" fill="rgba(51,37,24,1)"/>
-  <circle cx="74" cy="29" r="1" fill="rgba(55,40,27,1)"/>
-  <circle cx="75" cy="29" r="1" fill="rgba(58,43,31,1)"/>
-  <circle cx="76" cy="29" r="1" fill="rgba(62,48,34,1)"/>
-  <circle cx="77" cy="29" r="1" fill="rgba(64,51,39,1)"/>
-  <circle cx="78" cy="29" r="1" fill="rgba(69,55,42,1)"/>
-  <circle cx="79" cy="29" r="1" fill="rgba(71,59,47,1)"/>
-  <circle cx="80" cy="29" r="1" fill="rgba(74,62,51,1)"/>
-  <circle cx="81" cy="29" r="1" fill="rgba(78,66,56,1)"/>
-  <circle cx="82" cy="29" r="1" fill="rgba(82,69,60,1)"/>
-  <circle cx="83" cy="29" r="1" fill="rgba(84,73,64,1)"/>
-  <circle cx="84" cy="29" r="1" fill="rgba(86,77,69,1)"/>
-  <circle cx="85" cy="29" r="1" fill="rgba(90,80,74,1)"/>
-  <circle cx="86" cy="29" r="1" fill="rgba(94,87,82,1)"/>
-  <circle cx="87" cy="29" r="1" fill="rgba(95,85,80,1)"/>
-  <circle cx="88" cy="29" r="1" fill="rgba(69,44,27,0.623529)"/>
-  <circle cx="89" cy="29" r="1" fill="rgba(62,30,13,0.0509804)"/>
-  <circle cx="90" cy="29" r="1" fill="rgba(68,37,18,0.0588235)"/>
-  <circle cx="91" cy="29" r="1" fill="rgba(73,41,20,0.168627)"/>
-  <circle cx="92" cy="29" r="1" fill="rgba(76,44,22,0.258824)"/>
-  <circle cx="93" cy="29" r="1" fill="rgba(80,47,25,0.345098)"/>
-  <circle cx="94" cy="29" r="1" fill="rgba(82,50,27,0.45098)"/>
-  <circle cx="95" cy="29" r="1" fill="rgba(85,53,30,0.529412)"/>
-  <circle cx="96" cy="29" r="1" fill="rgba(88,56,31,0.87451)"/>
-  <circle cx="97" cy="29" r="1" fill="rgba(90,57,32,1)"/>
-  <circle cx="98" cy="29" r="1" fill="rgba(91,58,33,1)"/>
-  <circle cx="99" cy="29" r="1" fill="rgba(91,58,33,1)"/>
-  <circle cx="100" cy="29" r="1" fill="rgba(91,57,33,1)"/>
-  <circle cx="101" cy="29" r="1" fill="rgba(91,58,33,1)"/>
-  <circle cx="102" cy="29" r="1" fill="rgba(81,49,26,0.72549)"/>
-  <circle cx="103" cy="29" r="1" fill="rgba(21,7,1,0.364706)"/>
-  <circle cx="104" cy="29" r="1" fill="rgba(4,1,0,0.454902)"/>
-  <circle cx="105" cy="29" r="1" fill="rgba(37,17,6,0.207843)"/>
-  <circle cx="106" cy="29" r="1" fill="rgba(43,20,7,0)"/>
-  <circle cx="107" cy="29" r="1" fill="rgba(39,17,6,0)"/>
-  <circle cx="108" cy="29" r="1" fill="rgba(39,17,6,0)"/>
-  <circle cx="109" cy="29" r="1" fill="rgba(39,17,6,0)"/>
-  <circle cx="110" cy="29" r="1" fill="rgba(39,17,6,0)"/>
-  <circle cx="111" cy="29" r="1" fill="rgba(40,18,6,0)"/>
-  <circle cx="112" cy="29" r="1" fill="rgba(54,25,10,0)"/>
-  <circle cx="113" cy="29" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="114" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="29" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="30" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="30" r="1" fill="rgba(110,79,51,0)"/>
-  <circle cx="19" cy="30" r="1" fill="rgba(112,81,53,0)"/>
-  <circle cx="20" cy="30" r="1" fill="rgba(109,78,50,0)"/>
-  <circle cx="21" cy="30" r="1" fill="rgba(108,76,48,0)"/>
-  <circle cx="22" cy="30" r="1" fill="rgba(82,52,27,0)"/>
-  <circle cx="23" cy="30" r="1" fill="rgba(40,18,7,0)"/>
-  <circle cx="24" cy="30" r="1" fill="rgba(36,16,5,0)"/>
-  <circle cx="25" cy="30" r="1" fill="rgba(37,18,6,0)"/>
-  <circle cx="26" cy="30" r="1" fill="rgba(37,18,6,0)"/>
-  <circle cx="27" cy="30" r="1" fill="rgba(37,18,6,0)"/>
-  <circle cx="28" cy="30" r="1" fill="rgba(37,18,6,0)"/>
-  <circle cx="29" cy="30" r="1" fill="rgba(37,18,6,0)"/>
-  <circle cx="30" cy="30" r="1" fill="rgba(37,18,6,0)"/>
-  <circle cx="31" cy="30" r="1" fill="rgba(39,18,6,0)"/>
-  <circle cx="32" cy="30" r="1" fill="rgba(37,17,6,0.0509804)"/>
-  <circle cx="33" cy="30" r="1" fill="rgba(21,8,1,0.345098)"/>
-  <circle cx="34" cy="30" r="1" fill="rgba(0,0,0,0.478431)"/>
-  <circle cx="35" cy="30" r="1" fill="rgba(26,10,3,0.301961)"/>
-  <circle cx="36" cy="30" r="1" fill="rgba(34,12,3,0.0980392)"/>
-  <circle cx="37" cy="30" r="1" fill="rgba(39,17,6,0.0823529)"/>
-  <circle cx="38" cy="30" r="1" fill="rgba(51,27,11,0)"/>
-  <circle cx="39" cy="30" r="1" fill="rgba(65,36,17,0.192157)"/>
-  <circle cx="40" cy="30" r="1" fill="rgba(63,35,18,0.784314)"/>
-  <circle cx="41" cy="30" r="1" fill="rgba(55,26,10,1)"/>
-  <circle cx="42" cy="30" r="1" fill="rgba(90,65,48,1)"/>
-  <circle cx="43" cy="30" r="1" fill="rgba(229,235,254,1)"/>
-  <circle cx="44" cy="30" r="1" fill="rgba(204,212,236,1)"/>
-  <circle cx="45" cy="30" r="1" fill="rgba(105,87,76,1)"/>
-  <circle cx="46" cy="30" r="1" fill="rgba(57,26,11,1)"/>
-  <circle cx="47" cy="30" r="1" fill="rgba(58,26,10,1)"/>
-  <circle cx="48" cy="30" r="1" fill="rgba(59,28,12,1)"/>
-  <circle cx="49" cy="30" r="1" fill="rgba(61,29,13,1)"/>
-  <circle cx="50" cy="30" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="51" cy="30" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="52" cy="30" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="53" cy="30" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="54" cy="30" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="55" cy="30" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="56" cy="30" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="57" cy="30" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="58" cy="30" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="59" cy="30" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="60" cy="30" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="61" cy="30" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="62" cy="30" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="63" cy="30" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="64" cy="30" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="65" cy="30" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="66" cy="30" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="67" cy="30" r="1" fill="rgba(46,23,10,1)"/>
-  <circle cx="68" cy="30" r="1" fill="rgba(29,15,8,1)"/>
-  <circle cx="69" cy="30" r="1" fill="rgba(31,19,10,1)"/>
-  <circle cx="70" cy="30" r="1" fill="rgba(36,23,13,1)"/>
-  <circle cx="71" cy="30" r="1" fill="rgba(42,26,16,1)"/>
-  <circle cx="72" cy="30" r="1" fill="rgba(46,30,19,1)"/>
-  <circle cx="73" cy="30" r="1" fill="rgba(49,34,22,1)"/>
-  <circle cx="74" cy="30" r="1" fill="rgba(51,38,26,1)"/>
-  <circle cx="75" cy="30" r="1" fill="rgba(57,42,29,1)"/>
-  <circle cx="76" cy="30" r="1" fill="rgba(61,45,33,1)"/>
-  <circle cx="77" cy="30" r="1" fill="rgba(63,48,37,1)"/>
-  <circle cx="78" cy="30" r="1" fill="rgba(67,53,40,1)"/>
-  <circle cx="79" cy="30" r="1" fill="rgba(70,56,45,1)"/>
-  <circle cx="80" cy="30" r="1" fill="rgba(73,60,48,1)"/>
-  <circle cx="81" cy="30" r="1" fill="rgba(75,64,53,1)"/>
-  <circle cx="82" cy="30" r="1" fill="rgba(80,67,57,1)"/>
-  <circle cx="83" cy="30" r="1" fill="rgba(82,71,61,1)"/>
-  <circle cx="84" cy="30" r="1" fill="rgba(85,74,67,1)"/>
-  <circle cx="85" cy="30" r="1" fill="rgba(87,78,70,1)"/>
-  <circle cx="86" cy="30" r="1" fill="rgba(91,81,76,1)"/>
-  <circle cx="87" cy="30" r="1" fill="rgba(96,89,86,1)"/>
-  <circle cx="88" cy="30" r="1" fill="rgba(86,72,60,1)"/>
-  <circle cx="89" cy="30" r="1" fill="rgba(63,32,14,0.870588)"/>
-  <circle cx="90" cy="30" r="1" fill="rgba(67,36,16,0.937255)"/>
-  <circle cx="91" cy="30" r="1" fill="rgba(71,40,20,0.972549)"/>
-  <circle cx="92" cy="30" r="1" fill="rgba(74,42,22,1)"/>
-  <circle cx="93" cy="30" r="1" fill="rgba(77,45,23,1)"/>
-  <circle cx="94" cy="30" r="1" fill="rgba(81,48,25,1)"/>
-  <circle cx="95" cy="30" r="1" fill="rgba(83,50,27,1)"/>
-  <circle cx="96" cy="30" r="1" fill="rgba(84,52,28,1)"/>
-  <circle cx="97" cy="30" r="1" fill="rgba(85,53,29,1)"/>
-  <circle cx="98" cy="30" r="1" fill="rgba(87,54,30,1)"/>
-  <circle cx="99" cy="30" r="1" fill="rgba(88,56,31,0.976471)"/>
-  <circle cx="100" cy="30" r="1" fill="rgba(88,55,31,0.968627)"/>
-  <circle cx="101" cy="30" r="1" fill="rgba(86,53,30,0.788235)"/>
-  <circle cx="102" cy="30" r="1" fill="rgba(50,25,10,0.305882)"/>
-  <circle cx="103" cy="30" r="1" fill="rgba(0,0,0,0.439216)"/>
-  <circle cx="104" cy="30" r="1" fill="rgba(17,5,1,0.392157)"/>
-  <circle cx="105" cy="30" r="1" fill="rgba(47,23,9,0.0862745)"/>
-  <circle cx="106" cy="30" r="1" fill="rgba(50,25,10,0)"/>
-  <circle cx="107" cy="30" r="1" fill="rgba(49,24,10,0)"/>
-  <circle cx="108" cy="30" r="1" fill="rgba(49,24,10,0)"/>
-  <circle cx="109" cy="30" r="1" fill="rgba(49,24,10,0)"/>
-  <circle cx="110" cy="30" r="1" fill="rgba(47,23,10,0)"/>
-  <circle cx="111" cy="30" r="1" fill="rgba(55,27,11,0)"/>
-  <circle cx="112" cy="30" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="113" cy="30" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="114" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="30" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="31" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="31" r="1" fill="rgba(110,79,51,0)"/>
-  <circle cx="19" cy="31" r="1" fill="rgba(112,81,53,0)"/>
-  <circle cx="20" cy="31" r="1" fill="rgba(108,77,49,0)"/>
-  <circle cx="21" cy="31" r="1" fill="rgba(104,72,44,0)"/>
-  <circle cx="22" cy="31" r="1" fill="rgba(101,69,42,0)"/>
-  <circle cx="23" cy="31" r="1" fill="rgba(92,59,34,0)"/>
-  <circle cx="24" cy="31" r="1" fill="rgba(59,33,14,0)"/>
-  <circle cx="25" cy="31" r="1" fill="rgba(42,19,7,0)"/>
-  <circle cx="26" cy="31" r="1" fill="rgba(46,22,8,0)"/>
-  <circle cx="27" cy="31" r="1" fill="rgba(46,22,8,0)"/>
-  <circle cx="28" cy="31" r="1" fill="rgba(46,22,8,0)"/>
-  <circle cx="29" cy="31" r="1" fill="rgba(46,22,8,0)"/>
-  <circle cx="30" cy="31" r="1" fill="rgba(46,22,8,0)"/>
-  <circle cx="31" cy="31" r="1" fill="rgba(46,22,8,0)"/>
-  <circle cx="32" cy="31" r="1" fill="rgba(46,22,8,0.0117647)"/>
-  <circle cx="33" cy="31" r="1" fill="rgba(29,11,3,0.262745)"/>
-  <circle cx="34" cy="31" r="1" fill="rgba(0,0,0,0.466667)"/>
-  <circle cx="35" cy="31" r="1" fill="rgba(7,1,0,0.435294)"/>
-  <circle cx="36" cy="31" r="1" fill="rgba(10,2,0,0.4)"/>
-  <circle cx="37" cy="31" r="1" fill="rgba(15,4,0,0.4)"/>
-  <circle cx="38" cy="31" r="1" fill="rgba(37,17,6,0.223529)"/>
-  <circle cx="39" cy="31" r="1" fill="rgba(45,27,12,0)"/>
-  <circle cx="40" cy="31" r="1" fill="rgba(77,35,14,0.00784314)"/>
-  <circle cx="41" cy="31" r="1" fill="rgba(53,25,10,0.694118)"/>
-  <circle cx="42" cy="31" r="1" fill="rgba(31,13,5,1)"/>
-  <circle cx="43" cy="31" r="1" fill="rgba(160,150,148,1)"/>
-  <circle cx="44" cy="31" r="1" fill="rgba(243,253,254,1)"/>
-  <circle cx="45" cy="31" r="1" fill="rgba(186,189,208,1)"/>
-  <circle cx="46" cy="31" r="1" fill="rgba(114,98,88,1)"/>
-  <circle cx="47" cy="31" r="1" fill="rgba(75,48,30,1)"/>
-  <circle cx="48" cy="31" r="1" fill="rgba(61,32,15,1)"/>
-  <circle cx="49" cy="31" r="1" fill="rgba(55,26,11,1)"/>
-  <circle cx="50" cy="31" r="1" fill="rgba(57,26,11,1)"/>
-  <circle cx="51" cy="31" r="1" fill="rgba(57,26,11,1)"/>
-  <circle cx="52" cy="31" r="1" fill="rgba(58,27,11,1)"/>
-  <circle cx="53" cy="31" r="1" fill="rgba(58,27,11,1)"/>
-  <circle cx="54" cy="31" r="1" fill="rgba(58,28,11,1)"/>
-  <circle cx="55" cy="31" r="1" fill="rgba(59,28,11,1)"/>
-  <circle cx="56" cy="31" r="1" fill="rgba(59,28,12,1)"/>
-  <circle cx="57" cy="31" r="1" fill="rgba(59,29,12,1)"/>
-  <circle cx="58" cy="31" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="59" cy="31" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="60" cy="31" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="61" cy="31" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="62" cy="31" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="63" cy="31" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="64" cy="31" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="65" cy="31" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="66" cy="31" r="1" fill="rgba(61,29,13,1)"/>
-  <circle cx="67" cy="31" r="1" fill="rgba(46,23,10,1)"/>
-  <circle cx="68" cy="31" r="1" fill="rgba(28,14,6,1)"/>
-  <circle cx="69" cy="31" r="1" fill="rgba(29,16,8,1)"/>
-  <circle cx="70" cy="31" r="1" fill="rgba(34,21,10,1)"/>
-  <circle cx="71" cy="31" r="1" fill="rgba(37,24,14,1)"/>
-  <circle cx="72" cy="31" r="1" fill="rgba(43,28,16,1)"/>
-  <circle cx="73" cy="31" r="1" fill="rgba(46,31,20,1)"/>
-  <circle cx="74" cy="31" r="1" fill="rgba(50,35,23,1)"/>
-  <circle cx="75" cy="31" r="1" fill="rgba(53,39,27,1)"/>
-  <circle cx="76" cy="31" r="1" fill="rgba(58,43,30,1)"/>
-  <circle cx="77" cy="31" r="1" fill="rgba(61,47,33,1)"/>
-  <circle cx="78" cy="31" r="1" fill="rgba(63,50,37,1)"/>
-  <circle cx="79" cy="31" r="1" fill="rgba(68,53,42,1)"/>
-  <circle cx="80" cy="31" r="1" fill="rgba(71,57,46,1)"/>
-  <circle cx="81" cy="31" r="1" fill="rgba(74,61,50,1)"/>
-  <circle cx="82" cy="31" r="1" fill="rgba(76,65,54,1)"/>
-  <circle cx="83" cy="31" r="1" fill="rgba(81,69,58,1)"/>
-  <circle cx="84" cy="31" r="1" fill="rgba(84,72,63,1)"/>
-  <circle cx="85" cy="31" r="1" fill="rgba(86,76,68,1)"/>
-  <circle cx="86" cy="31" r="1" fill="rgba(90,79,73,1)"/>
-  <circle cx="87" cy="31" r="1" fill="rgba(94,87,83,1)"/>
-  <circle cx="88" cy="31" r="1" fill="rgba(84,66,53,1)"/>
-  <circle cx="89" cy="31" r="1" fill="rgba(59,29,13,1)"/>
-  <circle cx="90" cy="31" r="1" fill="rgba(61,32,14,1)"/>
-  <circle cx="91" cy="31" r="1" fill="rgba(65,36,17,1)"/>
-  <circle cx="92" cy="31" r="1" fill="rgba(70,39,19,1)"/>
-  <circle cx="93" cy="31" r="1" fill="rgba(74,42,21,0.984314)"/>
-  <circle cx="94" cy="31" r="1" fill="rgba(76,44,22,0.839216)"/>
-  <circle cx="95" cy="31" r="1" fill="rgba(80,47,24,0.643137)"/>
-  <circle cx="96" cy="31" r="1" fill="rgba(83,51,27,0.486275)"/>
-  <circle cx="97" cy="31" r="1" fill="rgba(85,52,29,0.364706)"/>
-  <circle cx="98" cy="31" r="1" fill="rgba(81,48,26,0.27451)"/>
-  <circle cx="99" cy="31" r="1" fill="rgba(69,39,19,0.180392)"/>
-  <circle cx="100" cy="31" r="1" fill="rgba(70,40,20,0.152941)"/>
-  <circle cx="101" cy="31" r="1" fill="rgba(61,33,15,0.0901961)"/>
-  <circle cx="102" cy="31" r="1" fill="rgba(22,8,2,0.317647)"/>
-  <circle cx="103" cy="31" r="1" fill="rgba(0,0,0,0.482353)"/>
-  <circle cx="104" cy="31" r="1" fill="rgba(28,11,3,0.286275)"/>
-  <circle cx="105" cy="31" r="1" fill="rgba(47,24,9,0.0156863)"/>
-  <circle cx="106" cy="31" r="1" fill="rgba(49,25,10,0)"/>
-  <circle cx="107" cy="31" r="1" fill="rgba(49,25,10,0)"/>
-  <circle cx="108" cy="31" r="1" fill="rgba(49,25,10,0)"/>
-  <circle cx="109" cy="31" r="1" fill="rgba(49,25,10,0)"/>
-  <circle cx="110" cy="31" r="1" fill="rgba(53,27,11,0)"/>
-  <circle cx="111" cy="31" r="1" fill="rgba(62,30,14,0)"/>
-  <circle cx="112" cy="31" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="113" cy="31" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="114" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="31" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="32" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="32" r="1" fill="rgba(110,79,51,0)"/>
-  <circle cx="19" cy="32" r="1" fill="rgba(112,81,53,0)"/>
-  <circle cx="20" cy="32" r="1" fill="rgba(108,77,49,0)"/>
-  <circle cx="21" cy="32" r="1" fill="rgba(104,72,44,0)"/>
-  <circle cx="22" cy="32" r="1" fill="rgba(99,67,40,0)"/>
-  <circle cx="23" cy="32" r="1" fill="rgba(95,62,37,0)"/>
-  <circle cx="24" cy="32" r="1" fill="rgba(90,56,32,0)"/>
-  <circle cx="25" cy="32" r="1" fill="rgba(57,30,13,0)"/>
-  <circle cx="26" cy="32" r="1" fill="rgba(40,18,6,0)"/>
-  <circle cx="27" cy="32" r="1" fill="rgba(43,20,8,0)"/>
-  <circle cx="28" cy="32" r="1" fill="rgba(43,20,8,0)"/>
-  <circle cx="29" cy="32" r="1" fill="rgba(43,20,8,0)"/>
-  <circle cx="30" cy="32" r="1" fill="rgba(43,20,8,0)"/>
-  <circle cx="31" cy="32" r="1" fill="rgba(43,20,8,0)"/>
-  <circle cx="32" cy="32" r="1" fill="rgba(45,20,8,0)"/>
-  <circle cx="33" cy="32" r="1" fill="rgba(36,16,5,0.168627)"/>
-  <circle cx="34" cy="32" r="1" fill="rgba(10,2,0,0.439216)"/>
-  <circle cx="35" cy="32" r="1" fill="rgba(0,0,0,0.478431)"/>
-  <circle cx="36" cy="32" r="1" fill="rgba(0,0,0,0.47451)"/>
-  <circle cx="37" cy="32" r="1" fill="rgba(0,0,0,0.478431)"/>
-  <circle cx="38" cy="32" r="1" fill="rgba(0,0,0,0.384314)"/>
-  <circle cx="39" cy="32" r="1" fill="rgba(106,30,4,0.298039)"/>
-  <circle cx="40" cy="32" r="1" fill="rgba(241,71,0,0.384314)"/>
-  <circle cx="41" cy="32" r="1" fill="rgba(197,60,2,0.372549)"/>
-  <circle cx="42" cy="32" r="1" fill="rgba(19,0,0,0.886275)"/>
-  <circle cx="43" cy="32" r="1" fill="rgba(34,25,16,1)"/>
-  <circle cx="44" cy="32" r="1" fill="rgba(194,190,197,1)"/>
-  <circle cx="45" cy="32" r="1" fill="rgba(254,254,254,1)"/>
-  <circle cx="46" cy="32" r="1" fill="rgba(221,223,236,1)"/>
-  <circle cx="47" cy="32" r="1" fill="rgba(179,174,181,1)"/>
-  <circle cx="48" cy="32" r="1" fill="rgba(140,126,119,1)"/>
-  <circle cx="49" cy="32" r="1" fill="rgba(112,92,79,1)"/>
-  <circle cx="50" cy="32" r="1" fill="rgba(93,69,54,1)"/>
-  <circle cx="51" cy="32" r="1" fill="rgba(83,58,40,1)"/>
-  <circle cx="52" cy="32" r="1" fill="rgba(78,52,33,1)"/>
-  <circle cx="53" cy="32" r="1" fill="rgba(73,45,27,1)"/>
-  <circle cx="54" cy="32" r="1" fill="rgba(73,46,28,1)"/>
-  <circle cx="55" cy="32" r="1" fill="rgba(73,45,26,1)"/>
-  <circle cx="56" cy="32" r="1" fill="rgba(74,46,27,1)"/>
-  <circle cx="57" cy="32" r="1" fill="rgba(70,42,24,1)"/>
-  <circle cx="58" cy="32" r="1" fill="rgba(62,31,14,1)"/>
-  <circle cx="59" cy="32" r="1" fill="rgba(61,29,13,1)"/>
-  <circle cx="60" cy="32" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="61" cy="32" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="62" cy="32" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="63" cy="32" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="64" cy="32" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="65" cy="32" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="66" cy="32" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="67" cy="32" r="1" fill="rgba(46,22,9,1)"/>
-  <circle cx="68" cy="32" r="1" fill="rgba(26,13,5,1)"/>
-  <circle cx="69" cy="32" r="1" fill="rgba(26,15,7,1)"/>
-  <circle cx="70" cy="32" r="1" fill="rgba(33,18,9,1)"/>
-  <circle cx="71" cy="32" r="1" fill="rgba(36,22,12,1)"/>
-  <circle cx="72" cy="32" r="1" fill="rgba(40,26,14,1)"/>
-  <circle cx="73" cy="32" r="1" fill="rgba(45,29,18,1)"/>
-  <circle cx="74" cy="32" r="1" fill="rgba(47,33,20,1)"/>
-  <circle cx="75" cy="32" r="1" fill="rgba(51,36,24,1)"/>
-  <circle cx="76" cy="32" r="1" fill="rgba(54,40,28,1)"/>
-  <circle cx="77" cy="32" r="1" fill="rgba(59,44,31,1)"/>
-  <circle cx="78" cy="32" r="1" fill="rgba(62,47,36,1)"/>
-  <circle cx="79" cy="32" r="1" fill="rgba(64,52,38,1)"/>
-  <circle cx="80" cy="32" r="1" fill="rgba(69,55,43,1)"/>
-  <circle cx="81" cy="32" r="1" fill="rgba(71,58,47,1)"/>
-  <circle cx="82" cy="32" r="1" fill="rgba(75,63,51,1)"/>
-  <circle cx="83" cy="32" r="1" fill="rgba(77,66,56,1)"/>
-  <circle cx="84" cy="32" r="1" fill="rgba(82,70,59,1)"/>
-  <circle cx="85" cy="32" r="1" fill="rgba(85,73,65,1)"/>
-  <circle cx="86" cy="32" r="1" fill="rgba(88,78,72,1)"/>
-  <circle cx="87" cy="32" r="1" fill="rgba(91,80,72,1)"/>
-  <circle cx="88" cy="32" r="1" fill="rgba(55,33,18,1)"/>
-  <circle cx="89" cy="32" r="1" fill="rgba(39,13,4,1)"/>
-  <circle cx="90" cy="32" r="1" fill="rgba(64,26,10,0.996078)"/>
-  <circle cx="91" cy="32" r="1" fill="rgba(70,34,15,0.8)"/>
-  <circle cx="92" cy="32" r="1" fill="rgba(58,36,17,0.486275)"/>
-  <circle cx="93" cy="32" r="1" fill="rgba(73,41,21,0.184314)"/>
-  <circle cx="94" cy="32" r="1" fill="rgba(78,45,23,0.0313725)"/>
-  <circle cx="95" cy="32" r="1" fill="rgba(80,47,24,0)"/>
-  <circle cx="96" cy="32" r="1" fill="rgba(68,38,18,0)"/>
-  <circle cx="97" cy="32" r="1" fill="rgba(62,33,15,0)"/>
-  <circle cx="98" cy="32" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="99" cy="32" r="1" fill="rgba(42,20,7,0.0509804)"/>
-  <circle cx="100" cy="32" r="1" fill="rgba(49,24,10,0.0235294)"/>
-  <circle cx="101" cy="32" r="1" fill="rgba(45,21,8,0.12549)"/>
-  <circle cx="102" cy="32" r="1" fill="rgba(10,2,0,0.435294)"/>
-  <circle cx="103" cy="32" r="1" fill="rgba(7,1,0,0.443137)"/>
-  <circle cx="104" cy="32" r="1" fill="rgba(37,17,6,0.164706)"/>
-  <circle cx="105" cy="32" r="1" fill="rgba(46,24,9,0)"/>
-  <circle cx="106" cy="32" r="1" fill="rgba(46,23,9,0)"/>
-  <circle cx="107" cy="32" r="1" fill="rgba(46,23,9,0)"/>
-  <circle cx="108" cy="32" r="1" fill="rgba(46,23,9,0)"/>
-  <circle cx="109" cy="32" r="1" fill="rgba(47,24,9,0)"/>
-  <circle cx="110" cy="32" r="1" fill="rgba(59,30,13,0)"/>
-  <circle cx="111" cy="32" r="1" fill="rgba(63,31,14,0)"/>
-  <circle cx="112" cy="32" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="113" cy="32" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="114" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="32" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="33" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="33" r="1" fill="rgba(110,79,51,0)"/>
-  <circle cx="19" cy="33" r="1" fill="rgba(112,81,53,0)"/>
-  <circle cx="20" cy="33" r="1" fill="rgba(108,77,49,0)"/>
-  <circle cx="21" cy="33" r="1" fill="rgba(104,72,44,0)"/>
-  <circle cx="22" cy="33" r="1" fill="rgba(99,67,40,0)"/>
-  <circle cx="23" cy="33" r="1" fill="rgba(93,61,36,0)"/>
-  <circle cx="24" cy="33" r="1" fill="rgba(90,57,33,0)"/>
-  <circle cx="25" cy="33" r="1" fill="rgba(84,52,28,0)"/>
-  <circle cx="26" cy="33" r="1" fill="rgba(57,29,13,0)"/>
-  <circle cx="27" cy="33" r="1" fill="rgba(45,21,8,0)"/>
-  <circle cx="28" cy="33" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="29" cy="33" r="1" fill="rgba(47,23,9,0)"/>
-  <circle cx="30" cy="33" r="1" fill="rgba(47,23,9,0)"/>
-  <circle cx="31" cy="33" r="1" fill="rgba(47,23,9,0)"/>
-  <circle cx="32" cy="33" r="1" fill="rgba(47,23,9,0)"/>
-  <circle cx="33" cy="33" r="1" fill="rgba(46,22,9,0.0470588)"/>
-  <circle cx="34" cy="33" r="1" fill="rgba(28,11,3,0.278431)"/>
-  <circle cx="35" cy="33" r="1" fill="rgba(10,2,0,0.431373)"/>
-  <circle cx="36" cy="33" r="1" fill="rgba(4,0,0,0.462745)"/>
-  <circle cx="37" cy="33" r="1" fill="rgba(0,0,0,0.439216)"/>
-  <circle cx="38" cy="33" r="1" fill="rgba(83,14,0,0.552941)"/>
-  <circle cx="39" cy="33" r="1" fill="rgba(236,69,1,0.933333)"/>
-  <circle cx="40" cy="33" r="1" fill="rgba(252,80,1,1)"/>
-  <circle cx="41" cy="33" r="1" fill="rgba(255,85,0,0.988235)"/>
-  <circle cx="42" cy="33" r="1" fill="rgba(208,65,0,0.972549)"/>
-  <circle cx="43" cy="33" r="1" fill="rgba(75,11,0,1)"/>
-  <circle cx="44" cy="33" r="1" fill="rgba(37,30,22,1)"/>
-  <circle cx="45" cy="33" r="1" fill="rgba(210,210,220,1)"/>
-  <circle cx="46" cy="33" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="47" cy="33" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="48" cy="33" r="1" fill="rgba(242,243,249,1)"/>
-  <circle cx="49" cy="33" r="1" fill="rgba(222,222,228,1)"/>
-  <circle cx="50" cy="33" r="1" fill="rgba(203,197,199,1)"/>
-  <circle cx="51" cy="33" r="1" fill="rgba(183,174,169,1)"/>
-  <circle cx="52" cy="33" r="1" fill="rgba(165,152,145,1)"/>
-  <circle cx="53" cy="33" r="1" fill="rgba(147,130,119,1)"/>
-  <circle cx="54" cy="33" r="1" fill="rgba(131,112,98,1)"/>
-  <circle cx="55" cy="33" r="1" fill="rgba(113,92,77,1)"/>
-  <circle cx="56" cy="33" r="1" fill="rgba(96,73,56,1)"/>
-  <circle cx="57" cy="33" r="1" fill="rgba(87,62,43,1)"/>
-  <circle cx="58" cy="33" r="1" fill="rgba(73,44,25,1)"/>
-  <circle cx="59" cy="33" r="1" fill="rgba(59,29,13,1)"/>
-  <circle cx="60" cy="33" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="61" cy="33" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="62" cy="33" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="63" cy="33" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="64" cy="33" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="65" cy="33" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="66" cy="33" r="1" fill="rgba(59,29,13,1)"/>
-  <circle cx="67" cy="33" r="1" fill="rgba(46,22,8,1)"/>
-  <circle cx="68" cy="33" r="1" fill="rgba(26,11,4,1)"/>
-  <circle cx="69" cy="33" r="1" fill="rgba(24,12,5,1)"/>
-  <circle cx="70" cy="33" r="1" fill="rgba(29,15,8,1)"/>
-  <circle cx="71" cy="33" r="1" fill="rgba(33,20,10,1)"/>
-  <circle cx="72" cy="33" r="1" fill="rgba(36,23,13,1)"/>
-  <circle cx="73" cy="33" r="1" fill="rgba(42,27,16,1)"/>
-  <circle cx="74" cy="33" r="1" fill="rgba(46,31,19,1)"/>
-  <circle cx="75" cy="33" r="1" fill="rgba(50,34,22,1)"/>
-  <circle cx="76" cy="33" r="1" fill="rgba(53,38,25,1)"/>
-  <circle cx="77" cy="33" r="1" fill="rgba(57,42,29,1)"/>
-  <circle cx="78" cy="33" r="1" fill="rgba(61,45,33,1)"/>
-  <circle cx="79" cy="33" r="1" fill="rgba(63,49,37,1)"/>
-  <circle cx="80" cy="33" r="1" fill="rgba(65,53,41,1)"/>
-  <circle cx="81" cy="33" r="1" fill="rgba(70,57,44,1)"/>
-  <circle cx="82" cy="33" r="1" fill="rgba(73,60,49,1)"/>
-  <circle cx="83" cy="33" r="1" fill="rgba(76,63,53,1)"/>
-  <circle cx="84" cy="33" r="1" fill="rgba(78,67,57,1)"/>
-  <circle cx="85" cy="33" r="1" fill="rgba(82,72,63,1)"/>
-  <circle cx="86" cy="33" r="1" fill="rgba(88,78,71,1)"/>
-  <circle cx="87" cy="33" r="1" fill="rgba(58,41,27,1)"/>
-  <circle cx="88" cy="33" r="1" fill="rgba(7,0,0,1)"/>
-  <circle cx="89" cy="33" r="1" fill="rgba(159,95,60,1)"/>
-  <circle cx="90" cy="33" r="1" fill="rgba(205,124,85,0.988235)"/>
-  <circle cx="91" cy="33" r="1" fill="rgba(187,50,16,0.392157)"/>
-  <circle cx="92" cy="33" r="1" fill="rgba(142,45,16,0)"/>
-  <circle cx="93" cy="33" r="1" fill="rgba(59,28,11,0)"/>
-  <circle cx="94" cy="33" r="1" fill="rgba(57,30,13,0)"/>
-  <circle cx="95" cy="33" r="1" fill="rgba(40,17,6,0)"/>
-  <circle cx="96" cy="33" r="1" fill="rgba(19,6,1,0)"/>
-  <circle cx="97" cy="33" r="1" fill="rgba(40,18,7,0)"/>
-  <circle cx="98" cy="33" r="1" fill="rgba(37,17,6,0.141176)"/>
-  <circle cx="99" cy="33" r="1" fill="rgba(21,7,1,0.356863)"/>
-  <circle cx="100" cy="33" r="1" fill="rgba(28,11,3,0.329412)"/>
-  <circle cx="101" cy="33" r="1" fill="rgba(24,9,2,0.341176)"/>
-  <circle cx="102" cy="33" r="1" fill="rgba(0,0,0,0.470588)"/>
-  <circle cx="103" cy="33" r="1" fill="rgba(21,6,1,0.368627)"/>
-  <circle cx="104" cy="33" r="1" fill="rgba(45,20,8,0.0705882)"/>
-  <circle cx="105" cy="33" r="1" fill="rgba(46,23,9,0)"/>
-  <circle cx="106" cy="33" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="107" cy="33" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="108" cy="33" r="1" fill="rgba(46,23,9,0)"/>
-  <circle cx="109" cy="33" r="1" fill="rgba(47,22,9,0)"/>
-  <circle cx="110" cy="33" r="1" fill="rgba(49,21,9,0)"/>
-  <circle cx="111" cy="33" r="1" fill="rgba(47,22,8,0)"/>
-  <circle cx="112" cy="33" r="1" fill="rgba(49,22,9,0)"/>
-  <circle cx="113" cy="33" r="1" fill="rgba(58,29,13,0)"/>
-  <circle cx="114" cy="33" r="1" fill="rgba(61,30,13,0.188235)"/>
-  <circle cx="115" cy="33" r="1" fill="rgba(61,30,13,0.470588)"/>
-  <circle cx="116" cy="33" r="1" fill="rgba(61,30,13,0.0431373)"/>
-  <circle cx="117" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="33" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="34" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="34" r="1" fill="rgba(110,79,51,0)"/>
-  <circle cx="19" cy="34" r="1" fill="rgba(112,81,53,0)"/>
-  <circle cx="20" cy="34" r="1" fill="rgba(108,77,49,0)"/>
-  <circle cx="21" cy="34" r="1" fill="rgba(104,72,44,0)"/>
-  <circle cx="22" cy="34" r="1" fill="rgba(99,67,40,0)"/>
-  <circle cx="23" cy="34" r="1" fill="rgba(93,61,36,0)"/>
-  <circle cx="24" cy="34" r="1" fill="rgba(88,56,32,0)"/>
-  <circle cx="25" cy="34" r="1" fill="rgba(85,52,29,0)"/>
-  <circle cx="26" cy="34" r="1" fill="rgba(77,46,24,0)"/>
-  <circle cx="27" cy="34" r="1" fill="rgba(61,32,14,0)"/>
-  <circle cx="28" cy="34" r="1" fill="rgba(50,25,10,0)"/>
-  <circle cx="29" cy="34" r="1" fill="rgba(47,24,10,0)"/>
-  <circle cx="30" cy="34" r="1" fill="rgba(49,24,10,0)"/>
-  <circle cx="31" cy="34" r="1" fill="rgba(49,24,10,0)"/>
-  <circle cx="32" cy="34" r="1" fill="rgba(49,24,10,0)"/>
-  <circle cx="33" cy="34" r="1" fill="rgba(49,24,10,0)"/>
-  <circle cx="34" cy="34" r="1" fill="rgba(39,18,7,0.0431373)"/>
-  <circle cx="35" cy="34" r="1" fill="rgba(26,12,4,0.14902)"/>
-  <circle cx="36" cy="34" r="1" fill="rgba(0,4,2,0.223529)"/>
-  <circle cx="37" cy="34" r="1" fill="rgba(81,18,1,0.419608)"/>
-  <circle cx="38" cy="34" r="1" fill="rgba(231,71,3,0.92549)"/>
-  <circle cx="39" cy="34" r="1" fill="rgba(254,87,4,1)"/>
-  <circle cx="40" cy="34" r="1" fill="rgba(247,89,4,1)"/>
-  <circle cx="41" cy="34" r="1" fill="rgba(248,90,3,1)"/>
-  <circle cx="42" cy="34" r="1" fill="rgba(255,94,2,1)"/>
-  <circle cx="43" cy="34" r="1" fill="rgba(240,84,1,1)"/>
-  <circle cx="44" cy="34" r="1" fill="rgba(107,20,0,1)"/>
-  <circle cx="45" cy="34" r="1" fill="rgba(55,45,33,1)"/>
-  <circle cx="46" cy="34" r="1" fill="rgba(216,214,217,1)"/>
-  <circle cx="47" cy="34" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="48" cy="34" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="49" cy="34" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="50" cy="34" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="51" cy="34" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="52" cy="34" r="1" fill="rgba(251,250,250,1)"/>
-  <circle cx="53" cy="34" r="1" fill="rgba(239,235,235,1)"/>
-  <circle cx="54" cy="34" r="1" fill="rgba(209,200,192,1)"/>
-  <circle cx="55" cy="34" r="1" fill="rgba(173,155,142,1)"/>
-  <circle cx="56" cy="34" r="1" fill="rgba(121,99,82,1)"/>
-  <circle cx="57" cy="34" r="1" fill="rgba(91,66,48,1)"/>
-  <circle cx="58" cy="34" r="1" fill="rgba(83,56,37,1)"/>
-  <circle cx="59" cy="34" r="1" fill="rgba(68,38,20,1)"/>
-  <circle cx="60" cy="34" r="1" fill="rgba(59,29,13,1)"/>
-  <circle cx="61" cy="34" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="62" cy="34" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="63" cy="34" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="64" cy="34" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="65" cy="34" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="66" cy="34" r="1" fill="rgba(61,29,13,1)"/>
-  <circle cx="67" cy="34" r="1" fill="rgba(46,21,8,1)"/>
-  <circle cx="68" cy="34" r="1" fill="rgba(22,10,3,1)"/>
-  <circle cx="69" cy="34" r="1" fill="rgba(21,9,3,1)"/>
-  <circle cx="70" cy="34" r="1" fill="rgba(26,13,6,1)"/>
-  <circle cx="71" cy="34" r="1" fill="rgba(31,17,8,1)"/>
-  <circle cx="72" cy="34" r="1" fill="rgba(34,20,11,1)"/>
-  <circle cx="73" cy="34" r="1" fill="rgba(37,25,13,1)"/>
-  <circle cx="74" cy="34" r="1" fill="rgba(42,28,17,1)"/>
-  <circle cx="75" cy="34" r="1" fill="rgba(47,32,20,1)"/>
-  <circle cx="76" cy="34" r="1" fill="rgba(50,36,23,1)"/>
-  <circle cx="77" cy="34" r="1" fill="rgba(53,39,27,1)"/>
-  <circle cx="78" cy="34" r="1" fill="rgba(58,43,30,1)"/>
-  <circle cx="79" cy="34" r="1" fill="rgba(62,46,34,1)"/>
-  <circle cx="80" cy="34" r="1" fill="rgba(64,50,37,1)"/>
-  <circle cx="81" cy="34" r="1" fill="rgba(68,54,42,1)"/>
-  <circle cx="82" cy="34" r="1" fill="rgba(71,57,46,1)"/>
-  <circle cx="83" cy="34" r="1" fill="rgba(74,61,50,1)"/>
-  <circle cx="84" cy="34" r="1" fill="rgba(76,65,55,1)"/>
-  <circle cx="85" cy="34" r="1" fill="rgba(84,73,64,1)"/>
-  <circle cx="86" cy="34" r="1" fill="rgba(59,48,34,1)"/>
-  <circle cx="87" cy="34" r="1" fill="rgba(22,0,0,1)"/>
-  <circle cx="88" cy="34" r="1" fill="rgba(177,101,64,1)"/>
-  <circle cx="89" cy="34" r="1" fill="rgba(253,216,196,1)"/>
-  <circle cx="90" cy="34" r="1" fill="rgba(221,97,53,1)"/>
-  <circle cx="91" cy="34" r="1" fill="rgba(210,56,17,0.945098)"/>
-  <circle cx="92" cy="34" r="1" fill="rgba(200,53,17,0.258824)"/>
-  <circle cx="93" cy="34" r="1" fill="rgba(42,13,4,0)"/>
-  <circle cx="94" cy="34" r="1" fill="rgba(28,12,4,0)"/>
-  <circle cx="95" cy="34" r="1" fill="rgba(21,6,1,0)"/>
-  <circle cx="96" cy="34" r="1" fill="rgba(21,7,1,0.00784314)"/>
-  <circle cx="97" cy="34" r="1" fill="rgba(37,16,6,0.137255)"/>
-  <circle cx="98" cy="34" r="1" fill="rgba(21,6,1,0.376471)"/>
-  <circle cx="99" cy="34" r="1" fill="rgba(0,0,0,0.47451)"/>
-  <circle cx="100" cy="34" r="1" fill="rgba(0,0,0,0.466667)"/>
-  <circle cx="101" cy="34" r="1" fill="rgba(0,0,0,0.462745)"/>
-  <circle cx="102" cy="34" r="1" fill="rgba(0,0,0,0.470588)"/>
-  <circle cx="103" cy="34" r="1" fill="rgba(31,12,4,0.270588)"/>
-  <circle cx="104" cy="34" r="1" fill="rgba(47,24,9,0.0156863)"/>
-  <circle cx="105" cy="34" r="1" fill="rgba(47,23,9,0)"/>
-  <circle cx="106" cy="34" r="1" fill="rgba(47,23,9,0)"/>
-  <circle cx="107" cy="34" r="1" fill="rgba(47,23,9,0)"/>
-  <circle cx="108" cy="34" r="1" fill="rgba(47,22,9,0)"/>
-  <circle cx="109" cy="34" r="1" fill="rgba(34,14,5,0)"/>
-  <circle cx="110" cy="34" r="1" fill="rgba(31,12,4,0)"/>
-  <circle cx="111" cy="34" r="1" fill="rgba(33,12,4,0)"/>
-  <circle cx="112" cy="34" r="1" fill="rgba(33,12,4,0)"/>
-  <circle cx="113" cy="34" r="1" fill="rgba(36,14,5,0)"/>
-  <circle cx="114" cy="34" r="1" fill="rgba(59,29,13,0.447059)"/>
-  <circle cx="115" cy="34" r="1" fill="rgba(62,31,14,1)"/>
-  <circle cx="116" cy="34" r="1" fill="rgba(62,31,14,0.0980392)"/>
-  <circle cx="117" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="34" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="35" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="35" r="1" fill="rgba(110,79,51,0)"/>
-  <circle cx="19" cy="35" r="1" fill="rgba(112,81,53,0)"/>
-  <circle cx="20" cy="35" r="1" fill="rgba(108,77,49,0)"/>
-  <circle cx="21" cy="35" r="1" fill="rgba(104,72,44,0)"/>
-  <circle cx="22" cy="35" r="1" fill="rgba(99,67,40,0)"/>
-  <circle cx="23" cy="35" r="1" fill="rgba(93,61,36,0)"/>
-  <circle cx="24" cy="35" r="1" fill="rgba(88,56,32,0)"/>
-  <circle cx="25" cy="35" r="1" fill="rgba(84,51,28,0)"/>
-  <circle cx="26" cy="35" r="1" fill="rgba(78,46,24,0)"/>
-  <circle cx="27" cy="35" r="1" fill="rgba(74,42,21,0)"/>
-  <circle cx="28" cy="35" r="1" fill="rgba(67,34,16,0)"/>
-  <circle cx="29" cy="35" r="1" fill="rgba(55,28,11,0)"/>
-  <circle cx="30" cy="35" r="1" fill="rgba(50,24,10,0)"/>
-  <circle cx="31" cy="35" r="1" fill="rgba(37,21,10,0)"/>
-  <circle cx="32" cy="35" r="1" fill="rgba(24,18,10,0)"/>
-  <circle cx="33" cy="35" r="1" fill="rgba(24,18,9,0)"/>
-  <circle cx="34" cy="35" r="1" fill="rgba(17,13,6,0)"/>
-  <circle cx="35" cy="35" r="1" fill="rgba(43,18,6,0)"/>
-  <circle cx="36" cy="35" r="1" fill="rgba(113,36,6,0.0392157)"/>
-  <circle cx="37" cy="35" r="1" fill="rgba(233,80,6,0.772549)"/>
-  <circle cx="38" cy="35" r="1" fill="rgba(254,94,7,1)"/>
-  <circle cx="39" cy="35" r="1" fill="rgba(248,96,8,1)"/>
-  <circle cx="40" cy="35" r="1" fill="rgba(248,99,8,1)"/>
-  <circle cx="41" cy="35" r="1" fill="rgba(249,99,7,1)"/>
-  <circle cx="42" cy="35" r="1" fill="rgba(248,98,6,1)"/>
-  <circle cx="43" cy="35" r="1" fill="rgba(255,98,4,1)"/>
-  <circle cx="44" cy="35" r="1" fill="rgba(248,90,1,1)"/>
-  <circle cx="45" cy="35" r="1" fill="rgba(96,18,0,1)"/>
-  <circle cx="46" cy="35" r="1" fill="rgba(50,37,26,1)"/>
-  <circle cx="47" cy="35" r="1" fill="rgba(214,205,200,1)"/>
-  <circle cx="48" cy="35" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="49" cy="35" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="50" cy="35" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="51" cy="35" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="52" cy="35" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="53" cy="35" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="54" cy="35" r="1" fill="rgba(236,232,229,1)"/>
-  <circle cx="55" cy="35" r="1" fill="rgba(202,190,181,1)"/>
-  <circle cx="56" cy="35" r="1" fill="rgba(162,142,126,1)"/>
-  <circle cx="57" cy="35" r="1" fill="rgba(110,86,68,1)"/>
-  <circle cx="58" cy="35" r="1" fill="rgba(86,61,43,1)"/>
-  <circle cx="59" cy="35" r="1" fill="rgba(77,50,30,1)"/>
-  <circle cx="60" cy="35" r="1" fill="rgba(63,32,15,1)"/>
-  <circle cx="61" cy="35" r="1" fill="rgba(59,29,13,1)"/>
-  <circle cx="62" cy="35" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="63" cy="35" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="64" cy="35" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="65" cy="35" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="66" cy="35" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="67" cy="35" r="1" fill="rgba(46,21,8,1)"/>
-  <circle cx="68" cy="35" r="1" fill="rgba(19,8,2,1)"/>
-  <circle cx="69" cy="35" r="1" fill="rgba(17,7,3,1)"/>
-  <circle cx="70" cy="35" r="1" fill="rgba(21,11,4,1)"/>
-  <circle cx="71" cy="35" r="1" fill="rgba(28,14,7,1)"/>
-  <circle cx="72" cy="35" r="1" fill="rgba(33,18,9,1)"/>
-  <circle cx="73" cy="35" r="1" fill="rgba(36,22,12,1)"/>
-  <circle cx="74" cy="35" r="1" fill="rgba(40,25,15,1)"/>
-  <circle cx="75" cy="35" r="1" fill="rgba(45,30,18,1)"/>
-  <circle cx="76" cy="35" r="1" fill="rgba(49,33,22,1)"/>
-  <circle cx="77" cy="35" r="1" fill="rgba(51,36,24,1)"/>
-  <circle cx="78" cy="35" r="1" fill="rgba(54,41,28,1)"/>
-  <circle cx="79" cy="35" r="1" fill="rgba(59,44,32,1)"/>
-  <circle cx="80" cy="35" r="1" fill="rgba(62,48,35,1)"/>
-  <circle cx="81" cy="35" r="1" fill="rgba(64,52,40,1)"/>
-  <circle cx="82" cy="35" r="1" fill="rgba(68,55,42,1)"/>
-  <circle cx="83" cy="35" r="1" fill="rgba(71,59,48,1)"/>
-  <circle cx="84" cy="35" r="1" fill="rgba(78,66,55,1)"/>
-  <circle cx="85" cy="35" r="1" fill="rgba(63,53,40,1)"/>
-  <circle cx="86" cy="35" r="1" fill="rgba(28,0,0,1)"/>
-  <circle cx="87" cy="35" r="1" fill="rgba(178,85,47,1)"/>
-  <circle cx="88" cy="35" r="1" fill="rgba(255,226,211,1)"/>
-  <circle cx="89" cy="35" r="1" fill="rgba(217,95,50,1)"/>
-  <circle cx="90" cy="35" r="1" fill="rgba(204,50,14,1)"/>
-  <circle cx="91" cy="35" r="1" fill="rgba(207,59,20,1)"/>
-  <circle cx="92" cy="35" r="1" fill="rgba(202,55,18,0.905882)"/>
-  <circle cx="93" cy="35" r="1" fill="rgba(90,23,7,0.219608)"/>
-  <circle cx="94" cy="35" r="1" fill="rgba(17,11,3,0.113725)"/>
-  <circle cx="95" cy="35" r="1" fill="rgba(21,6,1,0.188235)"/>
-  <circle cx="96" cy="35" r="1" fill="rgba(15,4,0,0.235294)"/>
-  <circle cx="97" cy="35" r="1" fill="rgba(17,5,1,0.376471)"/>
-  <circle cx="98" cy="35" r="1" fill="rgba(0,0,0,0.470588)"/>
-  <circle cx="99" cy="35" r="1" fill="rgba(0,0,0,0.466667)"/>
-  <circle cx="100" cy="35" r="1" fill="rgba(0,0,0,0.466667)"/>
-  <circle cx="101" cy="35" r="1" fill="rgba(0,0,0,0.47451)"/>
-  <circle cx="102" cy="35" r="1" fill="rgba(10,2,0,0.427451)"/>
-  <circle cx="103" cy="35" r="1" fill="rgba(40,19,7,0.152941)"/>
-  <circle cx="104" cy="35" r="1" fill="rgba(50,25,10,0)"/>
-  <circle cx="105" cy="35" r="1" fill="rgba(49,24,9,0)"/>
-  <circle cx="106" cy="35" r="1" fill="rgba(49,24,9,0)"/>
-  <circle cx="107" cy="35" r="1" fill="rgba(49,24,9,0)"/>
-  <circle cx="108" cy="35" r="1" fill="rgba(39,17,6,0)"/>
-  <circle cx="109" cy="35" r="1" fill="rgba(33,12,4,0)"/>
-  <circle cx="110" cy="35" r="1" fill="rgba(33,12,4,0)"/>
-  <circle cx="111" cy="35" r="1" fill="rgba(34,13,4,0)"/>
-  <circle cx="112" cy="35" r="1" fill="rgba(34,13,4,0)"/>
-  <circle cx="113" cy="35" r="1" fill="rgba(33,12,4,0.00392157)"/>
-  <circle cx="114" cy="35" r="1" fill="rgba(59,29,13,0.705882)"/>
-  <circle cx="115" cy="35" r="1" fill="rgba(55,26,11,0.615686)"/>
-  <circle cx="116" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="35" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="36" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="36" r="1" fill="rgba(110,79,51,0)"/>
-  <circle cx="19" cy="36" r="1" fill="rgba(112,81,53,0)"/>
-  <circle cx="20" cy="36" r="1" fill="rgba(108,77,49,0)"/>
-  <circle cx="21" cy="36" r="1" fill="rgba(104,72,44,0)"/>
-  <circle cx="22" cy="36" r="1" fill="rgba(99,67,40,0)"/>
-  <circle cx="23" cy="36" r="1" fill="rgba(93,61,36,0)"/>
-  <circle cx="24" cy="36" r="1" fill="rgba(88,56,32,0)"/>
-  <circle cx="25" cy="36" r="1" fill="rgba(84,51,28,0)"/>
-  <circle cx="26" cy="36" r="1" fill="rgba(78,46,24,0)"/>
-  <circle cx="27" cy="36" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="28" cy="36" r="1" fill="rgba(67,35,17,0)"/>
-  <circle cx="29" cy="36" r="1" fill="rgba(63,31,14,0)"/>
-  <circle cx="30" cy="36" r="1" fill="rgba(46,26,12,0)"/>
-  <circle cx="31" cy="36" r="1" fill="rgba(116,46,12,0)"/>
-  <circle cx="32" cy="36" r="1" fill="rgba(167,66,11,0)"/>
-  <circle cx="33" cy="36" r="1" fill="rgba(162,62,11,0)"/>
-  <circle cx="34" cy="36" r="1" fill="rgba(166,62,10,0)"/>
-  <circle cx="35" cy="36" r="1" fill="rgba(234,91,11,0)"/>
-  <circle cx="36" cy="36" r="1" fill="rgba(251,94,10,0.592157)"/>
-  <circle cx="37" cy="36" r="1" fill="rgba(253,100,10,1)"/>
-  <circle cx="38" cy="36" r="1" fill="rgba(249,104,13,1)"/>
-  <circle cx="39" cy="36" r="1" fill="rgba(249,107,13,1)"/>
-  <circle cx="40" cy="36" r="1" fill="rgba(249,108,13,1)"/>
-  <circle cx="41" cy="36" r="1" fill="rgba(249,107,12,1)"/>
-  <circle cx="42" cy="36" r="1" fill="rgba(249,105,10,1)"/>
-  <circle cx="43" cy="36" r="1" fill="rgba(249,101,8,1)"/>
-  <circle cx="44" cy="36" r="1" fill="rgba(255,100,6,1)"/>
-  <circle cx="45" cy="36" r="1" fill="rgba(238,87,2,1)"/>
-  <circle cx="46" cy="36" r="1" fill="rgba(67,10,0,1)"/>
-  <circle cx="47" cy="36" r="1" fill="rgba(57,40,25,1)"/>
-  <circle cx="48" cy="36" r="1" fill="rgba(218,208,200,1)"/>
-  <circle cx="49" cy="36" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="50" cy="36" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="51" cy="36" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="52" cy="36" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="53" cy="36" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="54" cy="36" r="1" fill="rgba(250,249,249,1)"/>
-  <circle cx="55" cy="36" r="1" fill="rgba(223,215,209,1)"/>
-  <circle cx="56" cy="36" r="1" fill="rgba(187,172,159,1)"/>
-  <circle cx="57" cy="36" r="1" fill="rgba(145,123,105,1)"/>
-  <circle cx="58" cy="36" r="1" fill="rgba(98,74,56,1)"/>
-  <circle cx="59" cy="36" r="1" fill="rgba(83,57,37,1)"/>
-  <circle cx="60" cy="36" r="1" fill="rgba(71,42,23,1)"/>
-  <circle cx="61" cy="36" r="1" fill="rgba(59,29,13,1)"/>
-  <circle cx="62" cy="36" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="63" cy="36" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="64" cy="36" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="65" cy="36" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="66" cy="36" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="67" cy="36" r="1" fill="rgba(47,21,8,1)"/>
-  <circle cx="68" cy="36" r="1" fill="rgba(19,6,1,1)"/>
-  <circle cx="69" cy="36" r="1" fill="rgba(10,4,1,1)"/>
-  <circle cx="70" cy="36" r="1" fill="rgba(19,8,3,1)"/>
-  <circle cx="71" cy="36" r="1" fill="rgba(22,12,5,1)"/>
-  <circle cx="72" cy="36" r="1" fill="rgba(29,16,8,1)"/>
-  <circle cx="73" cy="36" r="1" fill="rgba(34,19,10,1)"/>
-  <circle cx="74" cy="36" r="1" fill="rgba(37,23,13,1)"/>
-  <circle cx="75" cy="36" r="1" fill="rgba(40,27,16,1)"/>
-  <circle cx="76" cy="36" r="1" fill="rgba(46,30,19,1)"/>
-  <circle cx="77" cy="36" r="1" fill="rgba(50,34,22,1)"/>
-  <circle cx="78" cy="36" r="1" fill="rgba(53,38,26,1)"/>
-  <circle cx="79" cy="36" r="1" fill="rgba(55,42,29,1)"/>
-  <circle cx="80" cy="36" r="1" fill="rgba(61,46,33,1)"/>
-  <circle cx="81" cy="36" r="1" fill="rgba(63,49,37,1)"/>
-  <circle cx="82" cy="36" r="1" fill="rgba(67,52,40,1)"/>
-  <circle cx="83" cy="36" r="1" fill="rgba(71,59,48,1)"/>
-  <circle cx="84" cy="36" r="1" fill="rgba(64,54,42,1)"/>
-  <circle cx="85" cy="36" r="1" fill="rgba(19,0,0,1)"/>
-  <circle cx="86" cy="36" r="1" fill="rgba(170,67,33,1)"/>
-  <circle cx="87" cy="36" r="1" fill="rgba(255,224,209,1)"/>
-  <circle cx="88" cy="36" r="1" fill="rgba(220,103,59,1)"/>
-  <circle cx="89" cy="36" r="1" fill="rgba(207,50,14,1)"/>
-  <circle cx="90" cy="36" r="1" fill="rgba(208,61,22,1)"/>
-  <circle cx="91" cy="36" r="1" fill="rgba(206,59,20,1)"/>
-  <circle cx="92" cy="36" r="1" fill="rgba(208,57,19,1)"/>
-  <circle cx="93" cy="36" r="1" fill="rgba(184,48,14,0.862745)"/>
-  <circle cx="94" cy="36" r="1" fill="rgba(36,7,1,0.419608)"/>
-  <circle cx="95" cy="36" r="1" fill="rgba(0,0,0,0.427451)"/>
-  <circle cx="96" cy="36" r="1" fill="rgba(0,0,0,0.458824)"/>
-  <circle cx="97" cy="36" r="1" fill="rgba(4,0,0,0.470588)"/>
-  <circle cx="98" cy="36" r="1" fill="rgba(4,0,0,0.466667)"/>
-  <circle cx="99" cy="36" r="1" fill="rgba(10,2,0,0.447059)"/>
-  <circle cx="100" cy="36" r="1" fill="rgba(12,2,0,0.431373)"/>
-  <circle cx="101" cy="36" r="1" fill="rgba(12,3,0,0.419608)"/>
-  <circle cx="102" cy="36" r="1" fill="rgba(29,11,3,0.27451)"/>
-  <circle cx="103" cy="36" r="1" fill="rgba(49,24,9,0.0392157)"/>
-  <circle cx="104" cy="36" r="1" fill="rgba(51,25,10,0)"/>
-  <circle cx="105" cy="36" r="1" fill="rgba(50,25,10,0)"/>
-  <circle cx="106" cy="36" r="1" fill="rgba(47,23,9,0)"/>
-  <circle cx="107" cy="36" r="1" fill="rgba(53,27,11,0)"/>
-  <circle cx="108" cy="36" r="1" fill="rgba(54,27,11,0)"/>
-  <circle cx="109" cy="36" r="1" fill="rgba(34,13,4,0)"/>
-  <circle cx="110" cy="36" r="1" fill="rgba(36,14,5,0)"/>
-  <circle cx="111" cy="36" r="1" fill="rgba(34,13,4,0)"/>
-  <circle cx="112" cy="36" r="1" fill="rgba(28,9,3,0)"/>
-  <circle cx="113" cy="36" r="1" fill="rgba(31,11,3,0.239216)"/>
-  <circle cx="114" cy="36" r="1" fill="rgba(61,30,13,0.917647)"/>
-  <circle cx="115" cy="36" r="1" fill="rgba(45,19,7,0.2)"/>
-  <circle cx="116" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="36" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="37" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="37" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="37" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="37" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="37" r="1" fill="rgba(61,30,13,0.0156863)"/>
-  <circle cx="5" cy="37" r="1" fill="rgba(61,30,13,0.376471)"/>
-  <circle cx="6" cy="37" r="1" fill="rgba(61,30,13,0.435294)"/>
-  <circle cx="7" cy="37" r="1" fill="rgba(59,29,13,0.392157)"/>
-  <circle cx="8" cy="37" r="1" fill="rgba(58,28,12,0.211765)"/>
-  <circle cx="9" cy="37" r="1" fill="rgba(59,29,13,0.0235294)"/>
-  <circle cx="10" cy="37" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="37" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="37" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="37" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="37" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="37" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="37" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="37" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="37" r="1" fill="rgba(110,79,51,0)"/>
-  <circle cx="19" cy="37" r="1" fill="rgba(112,81,53,0)"/>
-  <circle cx="20" cy="37" r="1" fill="rgba(108,77,49,0)"/>
-  <circle cx="21" cy="37" r="1" fill="rgba(104,72,44,0)"/>
-  <circle cx="22" cy="37" r="1" fill="rgba(99,67,40,0)"/>
-  <circle cx="23" cy="37" r="1" fill="rgba(93,61,36,0)"/>
-  <circle cx="24" cy="37" r="1" fill="rgba(88,56,32,0)"/>
-  <circle cx="25" cy="37" r="1" fill="rgba(84,51,28,0)"/>
-  <circle cx="26" cy="37" r="1" fill="rgba(78,46,24,0)"/>
-  <circle cx="27" cy="37" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="28" cy="37" r="1" fill="rgba(67,35,17,0)"/>
-  <circle cx="29" cy="37" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="30" cy="37" r="1" fill="rgba(40,25,13,0)"/>
-  <circle cx="31" cy="37" r="1" fill="rgba(169,66,14,0)"/>
-  <circle cx="32" cy="37" r="1" fill="rgba(255,111,14,0)"/>
-  <circle cx="33" cy="37" r="1" fill="rgba(255,109,14,0)"/>
-  <circle cx="34" cy="37" r="1" fill="rgba(255,108,14,0)"/>
-  <circle cx="35" cy="37" r="1" fill="rgba(255,103,14,0.360784)"/>
-  <circle cx="36" cy="37" r="1" fill="rgba(252,106,15,1)"/>
-  <circle cx="37" cy="37" r="1" fill="rgba(250,112,18,1)"/>
-  <circle cx="38" cy="37" r="1" fill="rgba(251,115,20,1)"/>
-  <circle cx="39" cy="37" r="1" fill="rgba(250,117,20,1)"/>
-  <circle cx="40" cy="37" r="1" fill="rgba(250,116,19,1)"/>
-  <circle cx="41" cy="37" r="1" fill="rgba(249,114,17,1)"/>
-  <circle cx="42" cy="37" r="1" fill="rgba(249,111,15,1)"/>
-  <circle cx="43" cy="37" r="1" fill="rgba(249,107,13,1)"/>
-  <circle cx="44" cy="37" r="1" fill="rgba(249,104,9,1)"/>
-  <circle cx="45" cy="37" r="1" fill="rgba(255,104,7,1)"/>
-  <circle cx="46" cy="37" r="1" fill="rgba(219,78,2,1)"/>
-  <circle cx="47" cy="37" r="1" fill="rgba(37,4,0,1)"/>
-  <circle cx="48" cy="37" r="1" fill="rgba(70,45,27,1)"/>
-  <circle cx="49" cy="37" r="1" fill="rgba(225,214,203,1)"/>
-  <circle cx="50" cy="37" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="51" cy="37" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="52" cy="37" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="53" cy="37" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="54" cy="37" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="55" cy="37" r="1" fill="rgba(242,239,236,1)"/>
-  <circle cx="56" cy="37" r="1" fill="rgba(210,199,191,1)"/>
-  <circle cx="57" cy="37" r="1" fill="rgba(173,155,139,1)"/>
-  <circle cx="58" cy="37" r="1" fill="rgba(126,102,83,1)"/>
-  <circle cx="59" cy="37" r="1" fill="rgba(88,63,45,1)"/>
-  <circle cx="60" cy="37" r="1" fill="rgba(80,52,33,1)"/>
-  <circle cx="61" cy="37" r="1" fill="rgba(64,34,16,1)"/>
-  <circle cx="62" cy="37" r="1" fill="rgba(61,29,13,1)"/>
-  <circle cx="63" cy="37" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="64" cy="37" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="65" cy="37" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="66" cy="37" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="67" cy="37" r="1" fill="rgba(47,22,8,1)"/>
-  <circle cx="68" cy="37" r="1" fill="rgba(19,5,1,1)"/>
-  <circle cx="69" cy="37" r="1" fill="rgba(7,3,0,1)"/>
-  <circle cx="70" cy="37" r="1" fill="rgba(15,6,2,1)"/>
-  <circle cx="71" cy="37" r="1" fill="rgba(21,10,3,1)"/>
-  <circle cx="72" cy="37" r="1" fill="rgba(24,14,6,1)"/>
-  <circle cx="73" cy="37" r="1" fill="rgba(31,17,9,1)"/>
-  <circle cx="74" cy="37" r="1" fill="rgba(34,21,11,1)"/>
-  <circle cx="75" cy="37" r="1" fill="rgba(39,24,14,1)"/>
-  <circle cx="76" cy="37" r="1" fill="rgba(42,28,16,1)"/>
-  <circle cx="77" cy="37" r="1" fill="rgba(47,32,20,1)"/>
-  <circle cx="78" cy="37" r="1" fill="rgba(50,35,23,1)"/>
-  <circle cx="79" cy="37" r="1" fill="rgba(54,40,27,1)"/>
-  <circle cx="80" cy="37" r="1" fill="rgba(57,43,30,1)"/>
-  <circle cx="81" cy="37" r="1" fill="rgba(61,46,33,1)"/>
-  <circle cx="82" cy="37" r="1" fill="rgba(65,52,40,1)"/>
-  <circle cx="83" cy="37" r="1" fill="rgba(62,52,41,1)"/>
-  <circle cx="84" cy="37" r="1" fill="rgba(19,4,2,1)"/>
-  <circle cx="85" cy="37" r="1" fill="rgba(157,56,24,1)"/>
-  <circle cx="86" cy="37" r="1" fill="rgba(252,213,193,1)"/>
-  <circle cx="87" cy="37" r="1" fill="rgba(223,117,74,1)"/>
-  <circle cx="88" cy="37" r="1" fill="rgba(206,46,12,1)"/>
-  <circle cx="89" cy="37" r="1" fill="rgba(209,60,21,1)"/>
-  <circle cx="90" cy="37" r="1" fill="rgba(209,62,22,1)"/>
-  <circle cx="91" cy="37" r="1" fill="rgba(207,61,21,1)"/>
-  <circle cx="92" cy="37" r="1" fill="rgba(204,58,19,1)"/>
-  <circle cx="93" cy="37" r="1" fill="rgba(210,58,18,1)"/>
-  <circle cx="94" cy="37" r="1" fill="rgba(147,34,9,0.784314)"/>
-  <circle cx="95" cy="37" r="1" fill="rgba(0,0,0,0.423529)"/>
-  <circle cx="96" cy="37" r="1" fill="rgba(7,2,0,0.407843)"/>
-  <circle cx="97" cy="37" r="1" fill="rgba(10,2,0,0.329412)"/>
-  <circle cx="98" cy="37" r="1" fill="rgba(21,6,1,0.278431)"/>
-  <circle cx="99" cy="37" r="1" fill="rgba(31,12,3,0.239216)"/>
-  <circle cx="100" cy="37" r="1" fill="rgba(36,15,5,0.188235)"/>
-  <circle cx="101" cy="37" r="1" fill="rgba(39,17,6,0.156863)"/>
-  <circle cx="102" cy="37" r="1" fill="rgba(43,20,8,0.0588235)"/>
-  <circle cx="103" cy="37" r="1" fill="rgba(47,23,9,0)"/>
-  <circle cx="104" cy="37" r="1" fill="rgba(47,23,9,0)"/>
-  <circle cx="105" cy="37" r="1" fill="rgba(49,24,9,0)"/>
-  <circle cx="106" cy="37" r="1" fill="rgba(53,27,11,0)"/>
-  <circle cx="107" cy="37" r="1" fill="rgba(84,53,30,0)"/>
-  <circle cx="108" cy="37" r="1" fill="rgba(98,65,38,0)"/>
-  <circle cx="109" cy="37" r="1" fill="rgba(88,57,32,0)"/>
-  <circle cx="110" cy="37" r="1" fill="rgba(85,53,29,0)"/>
-  <circle cx="111" cy="37" r="1" fill="rgba(78,46,24,0)"/>
-  <circle cx="112" cy="37" r="1" fill="rgba(42,18,7,0.0392157)"/>
-  <circle cx="113" cy="37" r="1" fill="rgba(47,21,8,0.654902)"/>
-  <circle cx="114" cy="37" r="1" fill="rgba(57,27,11,0.807843)"/>
-  <circle cx="115" cy="37" r="1" fill="rgba(31,12,3,0.0352941)"/>
-  <circle cx="116" cy="37" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="37" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="37" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="37" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="37" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="37" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="37" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="37" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="37" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="37" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="37" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="37" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="38" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="38" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="38" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="38" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="38" r="1" fill="rgba(61,30,13,0.027451)"/>
-  <circle cx="5" cy="38" r="1" fill="rgba(61,30,13,0.654902)"/>
-  <circle cx="6" cy="38" r="1" fill="rgba(61,30,13,0.921569)"/>
-  <circle cx="7" cy="38" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="8" cy="38" r="1" fill="rgba(63,31,14,1)"/>
-  <circle cx="9" cy="38" r="1" fill="rgba(63,32,14,0.843137)"/>
-  <circle cx="10" cy="38" r="1" fill="rgba(54,27,11,0.439216)"/>
-  <circle cx="11" cy="38" r="1" fill="rgba(36,14,5,0.0941176)"/>
-  <circle cx="12" cy="38" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="38" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="38" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="38" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="38" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="38" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="38" r="1" fill="rgba(110,79,51,0)"/>
-  <circle cx="19" cy="38" r="1" fill="rgba(112,81,53,0)"/>
-  <circle cx="20" cy="38" r="1" fill="rgba(108,77,49,0)"/>
-  <circle cx="21" cy="38" r="1" fill="rgba(104,72,44,0)"/>
-  <circle cx="22" cy="38" r="1" fill="rgba(99,67,40,0)"/>
-  <circle cx="23" cy="38" r="1" fill="rgba(93,61,36,0)"/>
-  <circle cx="24" cy="38" r="1" fill="rgba(88,56,32,0)"/>
-  <circle cx="25" cy="38" r="1" fill="rgba(84,51,28,0)"/>
-  <circle cx="26" cy="38" r="1" fill="rgba(78,46,24,0)"/>
-  <circle cx="27" cy="38" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="28" cy="38" r="1" fill="rgba(67,35,17,0)"/>
-  <circle cx="29" cy="38" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="30" cy="38" r="1" fill="rgba(59,30,13,0)"/>
-  <circle cx="31" cy="38" r="1" fill="rgba(50,26,13,0)"/>
-  <circle cx="32" cy="38" r="1" fill="rgba(180,76,16,0)"/>
-  <circle cx="33" cy="38" r="1" fill="rgba(255,116,19,0)"/>
-  <circle cx="34" cy="38" r="1" fill="rgba(252,109,18,0.14902)"/>
-  <circle cx="35" cy="38" r="1" fill="rgba(252,112,18,0.921569)"/>
-  <circle cx="36" cy="38" r="1" fill="rgba(251,119,23,1)"/>
-  <circle cx="37" cy="38" r="1" fill="rgba(252,123,26,1)"/>
-  <circle cx="38" cy="38" r="1" fill="rgba(251,125,27,1)"/>
-  <circle cx="39" cy="38" r="1" fill="rgba(250,125,27,1)"/>
-  <circle cx="40" cy="38" r="1" fill="rgba(250,123,26,1)"/>
-  <circle cx="41" cy="38" r="1" fill="rgba(250,121,23,1)"/>
-  <circle cx="42" cy="38" r="1" fill="rgba(250,118,20,1)"/>
-  <circle cx="43" cy="38" r="1" fill="rgba(249,114,17,1)"/>
-  <circle cx="44" cy="38" r="1" fill="rgba(249,111,14,1)"/>
-  <circle cx="45" cy="38" r="1" fill="rgba(250,106,10,1)"/>
-  <circle cx="46" cy="38" r="1" fill="rgba(255,106,7,1)"/>
-  <circle cx="47" cy="38" r="1" fill="rgba(195,67,2,1)"/>
-  <circle cx="48" cy="38" r="1" fill="rgba(7,0,0,1)"/>
-  <circle cx="49" cy="38" r="1" fill="rgba(90,59,35,1)"/>
-  <circle cx="50" cy="38" r="1" fill="rgba(241,234,228,1)"/>
-  <circle cx="51" cy="38" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="52" cy="38" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="53" cy="38" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="54" cy="38" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="55" cy="38" r="1" fill="rgba(254,252,253,1)"/>
-  <circle cx="56" cy="38" r="1" fill="rgba(231,225,220,1)"/>
-  <circle cx="57" cy="38" r="1" fill="rgba(196,182,172,1)"/>
-  <circle cx="58" cy="38" r="1" fill="rgba(156,135,117,1)"/>
-  <circle cx="59" cy="38" r="1" fill="rgba(108,83,64,1)"/>
-  <circle cx="60" cy="38" r="1" fill="rgba(84,57,39,1)"/>
-  <circle cx="61" cy="38" r="1" fill="rgba(73,44,24,1)"/>
-  <circle cx="62" cy="38" r="1" fill="rgba(61,29,13,1)"/>
-  <circle cx="63" cy="38" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="64" cy="38" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="65" cy="38" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="66" cy="38" r="1" fill="rgba(62,31,14,1)"/>
-  <circle cx="67" cy="38" r="1" fill="rgba(49,23,9,1)"/>
-  <circle cx="68" cy="38" r="1" fill="rgba(17,4,0,1)"/>
-  <circle cx="69" cy="38" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="70" cy="38" r="1" fill="rgba(12,3,1,1)"/>
-  <circle cx="71" cy="38" r="1" fill="rgba(19,7,3,1)"/>
-  <circle cx="72" cy="38" r="1" fill="rgba(22,11,5,1)"/>
-  <circle cx="73" cy="38" r="1" fill="rgba(26,15,7,1)"/>
-  <circle cx="74" cy="38" r="1" fill="rgba(33,19,9,1)"/>
-  <circle cx="75" cy="38" r="1" fill="rgba(37,22,12,1)"/>
-  <circle cx="76" cy="38" r="1" fill="rgba(40,26,15,1)"/>
-  <circle cx="77" cy="38" r="1" fill="rgba(43,30,18,1)"/>
-  <circle cx="78" cy="38" r="1" fill="rgba(49,33,21,1)"/>
-  <circle cx="79" cy="38" r="1" fill="rgba(51,37,25,1)"/>
-  <circle cx="80" cy="38" r="1" fill="rgba(55,40,28,1)"/>
-  <circle cx="81" cy="38" r="1" fill="rgba(61,46,33,1)"/>
-  <circle cx="82" cy="38" r="1" fill="rgba(58,46,35,1)"/>
-  <circle cx="83" cy="38" r="1" fill="rgba(12,5,3,1)"/>
-  <circle cx="84" cy="38" r="1" fill="rgba(142,51,22,1)"/>
-  <circle cx="85" cy="38" r="1" fill="rgba(252,211,192,1)"/>
-  <circle cx="86" cy="38" r="1" fill="rgba(223,115,74,1)"/>
-  <circle cx="87" cy="38" r="1" fill="rgba(205,42,10,1)"/>
-  <circle cx="88" cy="38" r="1" fill="rgba(209,58,20,1)"/>
-  <circle cx="89" cy="38" r="1" fill="rgba(210,61,22,1)"/>
-  <circle cx="90" cy="38" r="1" fill="rgba(210,64,23,1)"/>
-  <circle cx="91" cy="38" r="1" fill="rgba(210,63,23,1)"/>
-  <circle cx="92" cy="38" r="1" fill="rgba(207,61,20,1)"/>
-  <circle cx="93" cy="38" r="1" fill="rgba(205,58,19,1)"/>
-  <circle cx="94" cy="38" r="1" fill="rgba(210,58,18,1)"/>
-  <circle cx="95" cy="38" r="1" fill="rgba(117,28,7,0.490196)"/>
-  <circle cx="96" cy="38" r="1" fill="rgba(0,8,3,0.109804)"/>
-  <circle cx="97" cy="38" r="1" fill="rgba(15,6,1,0.0588235)"/>
-  <circle cx="98" cy="38" r="1" fill="rgba(24,8,2,0.0313725)"/>
-  <circle cx="99" cy="38" r="1" fill="rgba(39,17,6,0.0196078)"/>
-  <circle cx="100" cy="38" r="1" fill="rgba(45,21,8,0.00392157)"/>
-  <circle cx="101" cy="38" r="1" fill="rgba(47,23,9,0)"/>
-  <circle cx="102" cy="38" r="1" fill="rgba(43,20,8,0)"/>
-  <circle cx="103" cy="38" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="104" cy="38" r="1" fill="rgba(63,35,16,0)"/>
-  <circle cx="105" cy="38" r="1" fill="rgba(87,56,31,0)"/>
-  <circle cx="106" cy="38" r="1" fill="rgba(97,65,39,0)"/>
-  <circle cx="107" cy="38" r="1" fill="rgba(98,66,39,0)"/>
-  <circle cx="108" cy="38" r="1" fill="rgba(97,64,38,0)"/>
-  <circle cx="109" cy="38" r="1" fill="rgba(94,62,36,0)"/>
-  <circle cx="110" cy="38" r="1" fill="rgba(88,56,32,0)"/>
-  <circle cx="111" cy="38" r="1" fill="rgba(83,51,27,0.513725)"/>
-  <circle cx="112" cy="38" r="1" fill="rgba(75,43,22,0.847059)"/>
-  <circle cx="113" cy="38" r="1" fill="rgba(69,38,18,1)"/>
-  <circle cx="114" cy="38" r="1" fill="rgba(43,19,7,0.505882)"/>
-  <circle cx="115" cy="38" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="38" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="38" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="38" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="38" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="38" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="38" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="38" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="38" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="38" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="38" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="38" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="38" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="39" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="39" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="39" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="39" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="39" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="39" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="39" r="1" fill="rgba(39,15,5,0.054902)"/>
-  <circle cx="7" cy="39" r="1" fill="rgba(37,15,5,0.298039)"/>
-  <circle cx="8" cy="39" r="1" fill="rgba(40,16,6,0.619608)"/>
-  <circle cx="9" cy="39" r="1" fill="rgba(54,25,10,0.862745)"/>
-  <circle cx="10" cy="39" r="1" fill="rgba(69,38,18,1)"/>
-  <circle cx="11" cy="39" r="1" fill="rgba(75,43,22,0.929412)"/>
-  <circle cx="12" cy="39" r="1" fill="rgba(74,43,22,0.658824)"/>
-  <circle cx="13" cy="39" r="1" fill="rgba(75,44,22,0.501961)"/>
-  <circle cx="14" cy="39" r="1" fill="rgba(92,59,33,0.501961)"/>
-  <circle cx="15" cy="39" r="1" fill="rgba(95,63,37,0.486275)"/>
-  <circle cx="16" cy="39" r="1" fill="rgba(99,67,41,0.192157)"/>
-  <circle cx="17" cy="39" r="1" fill="rgba(105,73,46,0.0156863)"/>
-  <circle cx="18" cy="39" r="1" fill="rgba(110,79,51,0)"/>
-  <circle cx="19" cy="39" r="1" fill="rgba(112,81,53,0)"/>
-  <circle cx="20" cy="39" r="1" fill="rgba(108,77,49,0)"/>
-  <circle cx="21" cy="39" r="1" fill="rgba(104,72,44,0)"/>
-  <circle cx="22" cy="39" r="1" fill="rgba(99,67,40,0)"/>
-  <circle cx="23" cy="39" r="1" fill="rgba(93,61,36,0)"/>
-  <circle cx="24" cy="39" r="1" fill="rgba(88,56,32,0)"/>
-  <circle cx="25" cy="39" r="1" fill="rgba(84,51,28,0)"/>
-  <circle cx="26" cy="39" r="1" fill="rgba(78,46,24,0)"/>
-  <circle cx="27" cy="39" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="28" cy="39" r="1" fill="rgba(67,35,17,0)"/>
-  <circle cx="29" cy="39" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="30" cy="39" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="31" cy="39" r="1" fill="rgba(45,25,13,0)"/>
-  <circle cx="32" cy="39" r="1" fill="rgba(124,52,15,0)"/>
-  <circle cx="33" cy="39" r="1" fill="rgba(249,114,21,0.00392157)"/>
-  <circle cx="34" cy="39" r="1" fill="rgba(254,116,20,0.701961)"/>
-  <circle cx="35" cy="39" r="1" fill="rgba(253,125,27,1)"/>
-  <circle cx="36" cy="39" r="1" fill="rgba(252,130,32,1)"/>
-  <circle cx="37" cy="39" r="1" fill="rgba(252,132,34,1)"/>
-  <circle cx="38" cy="39" r="1" fill="rgba(252,133,35,1)"/>
-  <circle cx="39" cy="39" r="1" fill="rgba(251,132,35,1)"/>
-  <circle cx="40" cy="39" r="1" fill="rgba(251,130,33,1)"/>
-  <circle cx="41" cy="39" r="1" fill="rgba(250,127,30,1)"/>
-  <circle cx="42" cy="39" r="1" fill="rgba(250,124,26,1)"/>
-  <circle cx="43" cy="39" r="1" fill="rgba(250,120,22,1)"/>
-  <circle cx="44" cy="39" r="1" fill="rgba(250,117,19,1)"/>
-  <circle cx="45" cy="39" r="1" fill="rgba(250,113,15,1)"/>
-  <circle cx="46" cy="39" r="1" fill="rgba(251,109,11,1)"/>
-  <circle cx="47" cy="39" r="1" fill="rgba(255,110,8,1)"/>
-  <circle cx="48" cy="39" r="1" fill="rgba(173,59,1,1)"/>
-  <circle cx="49" cy="39" r="1" fill="black"/>
-  <circle cx="50" cy="39" r="1" fill="rgba(104,73,46,1)"/>
-  <circle cx="51" cy="39" r="1" fill="rgba(233,222,212,1)"/>
-  <circle cx="52" cy="39" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="53" cy="39" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="54" cy="39" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="55" cy="39" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="56" cy="39" r="1" fill="rgba(248,246,245,1)"/>
-  <circle cx="57" cy="39" r="1" fill="rgba(218,209,203,1)"/>
-  <circle cx="58" cy="39" r="1" fill="rgba(182,165,151,1)"/>
-  <circle cx="59" cy="39" r="1" fill="rgba(137,114,95,1)"/>
-  <circle cx="60" cy="39" r="1" fill="rgba(94,69,50,1)"/>
-  <circle cx="61" cy="39" r="1" fill="rgba(80,52,33,1)"/>
-  <circle cx="62" cy="39" r="1" fill="rgba(65,35,18,1)"/>
-  <circle cx="63" cy="39" r="1" fill="rgba(59,29,13,1)"/>
-  <circle cx="64" cy="39" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="65" cy="39" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="66" cy="39" r="1" fill="rgba(62,30,14,1)"/>
-  <circle cx="67" cy="39" r="1" fill="rgba(50,22,9,1)"/>
-  <circle cx="68" cy="39" r="1" fill="rgba(15,3,0,1)"/>
-  <circle cx="69" cy="39" r="1" fill="black"/>
-  <circle cx="70" cy="39" r="1" fill="rgba(4,1,0,1)"/>
-  <circle cx="71" cy="39" r="1" fill="rgba(15,5,1,1)"/>
-  <circle cx="72" cy="39" r="1" fill="rgba(19,8,3,1)"/>
-  <circle cx="73" cy="39" r="1" fill="rgba(24,12,5,1)"/>
-  <circle cx="74" cy="39" r="1" fill="rgba(28,16,8,1)"/>
-  <circle cx="75" cy="39" r="1" fill="rgba(34,20,10,1)"/>
-  <circle cx="76" cy="39" r="1" fill="rgba(39,24,13,1)"/>
-  <circle cx="77" cy="39" r="1" fill="rgba(42,27,16,1)"/>
-  <circle cx="78" cy="39" r="1" fill="rgba(45,31,19,1)"/>
-  <circle cx="79" cy="39" r="1" fill="rgba(50,35,22,1)"/>
-  <circle cx="80" cy="39" r="1" fill="rgba(55,40,28,1)"/>
-  <circle cx="81" cy="39" r="1" fill="rgba(49,36,25,1)"/>
-  <circle cx="82" cy="39" r="1" fill="rgba(0,1,1,1)"/>
-  <circle cx="83" cy="39" r="1" fill="rgba(142,54,25,1)"/>
-  <circle cx="84" cy="39" r="1" fill="rgba(248,199,175,1)"/>
-  <circle cx="85" cy="39" r="1" fill="rgba(222,108,68,1)"/>
-  <circle cx="86" cy="39" r="1" fill="rgba(204,38,9,1)"/>
-  <circle cx="87" cy="39" r="1" fill="rgba(208,54,19,1)"/>
-  <circle cx="88" cy="39" r="1" fill="rgba(210,59,20,1)"/>
-  <circle cx="89" cy="39" r="1" fill="rgba(210,62,22,1)"/>
-  <circle cx="90" cy="39" r="1" fill="rgba(211,65,24,1)"/>
-  <circle cx="91" cy="39" r="1" fill="rgba(211,66,24,1)"/>
-  <circle cx="92" cy="39" r="1" fill="rgba(209,64,23,1)"/>
-  <circle cx="93" cy="39" r="1" fill="rgba(207,61,21,1)"/>
-  <circle cx="94" cy="39" r="1" fill="rgba(207,59,20,1)"/>
-  <circle cx="95" cy="39" r="1" fill="rgba(206,57,18,0.862745)"/>
-  <circle cx="96" cy="39" r="1" fill="rgba(99,27,8,0.0745098)"/>
-  <circle cx="97" cy="39" r="1" fill="rgba(33,11,3,0)"/>
-  <circle cx="98" cy="39" r="1" fill="rgba(29,10,3,0)"/>
-  <circle cx="99" cy="39" r="1" fill="rgba(40,18,7,0)"/>
-  <circle cx="100" cy="39" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="101" cy="39" r="1" fill="rgba(49,24,10,0)"/>
-  <circle cx="102" cy="39" r="1" fill="rgba(46,23,9,0)"/>
-  <circle cx="103" cy="39" r="1" fill="rgba(78,47,24,0)"/>
-  <circle cx="104" cy="39" r="1" fill="rgba(98,66,39,0)"/>
-  <circle cx="105" cy="39" r="1" fill="rgba(101,69,42,0)"/>
-  <circle cx="106" cy="39" r="1" fill="rgba(99,67,41,0)"/>
-  <circle cx="107" cy="39" r="1" fill="rgba(97,65,38,0)"/>
-  <circle cx="108" cy="39" r="1" fill="rgba(97,64,38,0)"/>
-  <circle cx="109" cy="39" r="1" fill="rgba(93,61,35,0)"/>
-  <circle cx="110" cy="39" r="1" fill="rgba(88,56,31,0.380392)"/>
-  <circle cx="111" cy="39" r="1" fill="rgba(83,50,27,1)"/>
-  <circle cx="112" cy="39" r="1" fill="rgba(76,44,22,1)"/>
-  <circle cx="113" cy="39" r="1" fill="rgba(68,37,18,0.996078)"/>
-  <circle cx="114" cy="39" r="1" fill="rgba(36,15,5,0.270588)"/>
-  <circle cx="115" cy="39" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="39" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="39" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="39" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="39" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="39" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="39" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="39" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="39" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="39" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="39" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="39" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="39" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="40" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="40" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="40" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="40" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="40" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="40" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="40" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="40" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="40" r="1" fill="rgba(21,7,1,0.0745098)"/>
-  <circle cx="9" cy="40" r="1" fill="rgba(15,3,0,0.203922)"/>
-  <circle cx="10" cy="40" r="1" fill="rgba(29,10,3,0.435294)"/>
-  <circle cx="11" cy="40" r="1" fill="rgba(53,26,11,0.745098)"/>
-  <circle cx="12" cy="40" r="1" fill="rgba(78,47,24,1)"/>
-  <circle cx="13" cy="40" r="1" fill="rgba(91,57,33,1)"/>
-  <circle cx="14" cy="40" r="1" fill="rgba(92,59,33,1)"/>
-  <circle cx="15" cy="40" r="1" fill="rgba(96,63,37,1)"/>
-  <circle cx="16" cy="40" r="1" fill="rgba(101,69,42,0.988235)"/>
-  <circle cx="17" cy="40" r="1" fill="rgba(107,75,48,0.8)"/>
-  <circle cx="18" cy="40" r="1" fill="rgba(111,80,52,0.568627)"/>
-  <circle cx="19" cy="40" r="1" fill="rgba(112,81,53,0.403922)"/>
-  <circle cx="20" cy="40" r="1" fill="rgba(108,77,49,0.266667)"/>
-  <circle cx="21" cy="40" r="1" fill="rgba(104,72,44,0.168627)"/>
-  <circle cx="22" cy="40" r="1" fill="rgba(99,67,40,0.294118)"/>
-  <circle cx="23" cy="40" r="1" fill="rgba(94,61,36,0.52549)"/>
-  <circle cx="24" cy="40" r="1" fill="rgba(88,56,32,0.568627)"/>
-  <circle cx="25" cy="40" r="1" fill="rgba(84,51,28,0.407843)"/>
-  <circle cx="26" cy="40" r="1" fill="rgba(78,46,24,0.129412)"/>
-  <circle cx="27" cy="40" r="1" fill="rgba(73,41,20,0.0156863)"/>
-  <circle cx="28" cy="40" r="1" fill="rgba(67,35,17,0)"/>
-  <circle cx="29" cy="40" r="1" fill="rgba(62,31,14,0)"/>
-  <circle cx="30" cy="40" r="1" fill="rgba(61,30,13,0)"/>
-  <circle cx="31" cy="40" r="1" fill="rgba(57,29,13,0)"/>
-  <circle cx="32" cy="40" r="1" fill="rgba(64,31,13,0)"/>
-  <circle cx="33" cy="40" r="1" fill="rgba(242,112,25,0.372549)"/>
-  <circle cx="34" cy="40" r="1" fill="rgba(255,127,28,1)"/>
-  <circle cx="35" cy="40" r="1" fill="rgba(254,134,35,1)"/>
-  <circle cx="36" cy="40" r="1" fill="rgba(254,139,41,1)"/>
-  <circle cx="37" cy="40" r="1" fill="rgba(252,140,43,1)"/>
-  <circle cx="38" cy="40" r="1" fill="rgba(252,140,43,1)"/>
-  <circle cx="39" cy="40" r="1" fill="rgba(252,139,43,1)"/>
-  <circle cx="40" cy="40" r="1" fill="rgba(251,136,40,1)"/>
-  <circle cx="41" cy="40" r="1" fill="rgba(251,133,37,1)"/>
-  <circle cx="42" cy="40" r="1" fill="rgba(250,130,33,1)"/>
-  <circle cx="43" cy="40" r="1" fill="rgba(250,127,30,1)"/>
-  <circle cx="44" cy="40" r="1" fill="rgba(250,123,25,1)"/>
-  <circle cx="45" cy="40" r="1" fill="rgba(250,120,21,1)"/>
-  <circle cx="46" cy="40" r="1" fill="rgba(251,116,17,1)"/>
-  <circle cx="47" cy="40" r="1" fill="rgba(252,113,13,1)"/>
-  <circle cx="48" cy="40" r="1" fill="rgba(255,111,7,1)"/>
-  <circle cx="49" cy="40" r="1" fill="rgba(169,59,0,1)"/>
-  <circle cx="50" cy="40" r="1" fill="black"/>
-  <circle cx="51" cy="40" r="1" fill="rgba(54,33,17,1)"/>
-  <circle cx="52" cy="40" r="1" fill="rgba(189,167,141,1)"/>
-  <circle cx="53" cy="40" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="54" cy="40" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="55" cy="40" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="56" cy="40" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="57" cy="40" r="1" fill="rgba(238,234,231,1)"/>
-  <circle cx="58" cy="40" r="1" fill="rgba(204,192,183,1)"/>
-  <circle cx="59" cy="40" r="1" fill="rgba(166,146,131,1)"/>
-  <circle cx="60" cy="40" r="1" fill="rgba(118,94,74,1)"/>
-  <circle cx="61" cy="40" r="1" fill="rgba(85,60,42,1)"/>
-  <circle cx="62" cy="40" r="1" fill="rgba(73,45,25,1)"/>
-  <circle cx="63" cy="40" r="1" fill="rgba(59,29,13,1)"/>
-  <circle cx="64" cy="40" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="65" cy="40" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="66" cy="40" r="1" fill="rgba(62,30,14,1)"/>
-  <circle cx="67" cy="40" r="1" fill="rgba(50,23,9,1)"/>
-  <circle cx="68" cy="40" r="1" fill="rgba(15,3,0,1)"/>
-  <circle cx="69" cy="40" r="1" fill="black"/>
-  <circle cx="70" cy="40" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="71" cy="40" r="1" fill="rgba(7,2,0,1)"/>
-  <circle cx="72" cy="40" r="1" fill="rgba(17,6,2,1)"/>
-  <circle cx="73" cy="40" r="1" fill="rgba(21,10,4,1)"/>
-  <circle cx="74" cy="40" r="1" fill="rgba(26,13,6,1)"/>
-  <circle cx="75" cy="40" r="1" fill="rgba(29,17,9,1)"/>
-  <circle cx="76" cy="40" r="1" fill="rgba(36,21,11,1)"/>
-  <circle cx="77" cy="40" r="1" fill="rgba(39,24,14,1)"/>
-  <circle cx="78" cy="40" r="1" fill="rgba(43,29,18,1)"/>
-  <circle cx="79" cy="40" r="1" fill="rgba(49,34,22,1)"/>
-  <circle cx="80" cy="40" r="1" fill="rgba(33,24,13,1)"/>
-  <circle cx="81" cy="40" r="1" fill="black"/>
-  <circle cx="82" cy="40" r="1" fill="rgba(148,75,42,1)"/>
-  <circle cx="83" cy="40" r="1" fill="rgba(248,199,175,1)"/>
-  <circle cx="84" cy="40" r="1" fill="rgba(218,90,51,1)"/>
-  <circle cx="85" cy="40" r="1" fill="rgba(203,34,8,1)"/>
-  <circle cx="86" cy="40" r="1" fill="rgba(208,52,18,1)"/>
-  <circle cx="87" cy="40" r="1" fill="rgba(210,56,20,1)"/>
-  <circle cx="88" cy="40" r="1" fill="rgba(210,61,22,1)"/>
-  <circle cx="89" cy="40" r="1" fill="rgba(211,64,24,1)"/>
-  <circle cx="90" cy="40" r="1" fill="rgba(213,68,26,1)"/>
-  <circle cx="91" cy="40" r="1" fill="rgba(213,70,27,1)"/>
-  <circle cx="92" cy="40" r="1" fill="rgba(212,70,26,1)"/>
-  <circle cx="93" cy="40" r="1" fill="rgba(210,67,24,1)"/>
-  <circle cx="94" cy="40" r="1" fill="rgba(207,63,22,1)"/>
-  <circle cx="95" cy="40" r="1" fill="rgba(208,61,20,1)"/>
-  <circle cx="96" cy="40" r="1" fill="rgba(208,60,20,0.584314)"/>
-  <circle cx="97" cy="40" r="1" fill="rgba(194,56,18,0)"/>
-  <circle cx="98" cy="40" r="1" fill="rgba(69,30,12,0)"/>
-  <circle cx="99" cy="40" r="1" fill="rgba(62,33,15,0)"/>
-  <circle cx="100" cy="40" r="1" fill="rgba(71,40,20,0)"/>
-  <circle cx="101" cy="40" r="1" fill="rgba(76,44,23,0)"/>
-  <circle cx="102" cy="40" r="1" fill="rgba(82,50,27,0)"/>
-  <circle cx="103" cy="40" r="1" fill="rgba(92,59,33,0)"/>
-  <circle cx="104" cy="40" r="1" fill="rgba(96,64,37,0)"/>
-  <circle cx="105" cy="40" r="1" fill="rgba(99,67,41,0)"/>
-  <circle cx="106" cy="40" r="1" fill="rgba(98,66,40,0)"/>
-  <circle cx="107" cy="40" r="1" fill="rgba(97,65,38,0)"/>
-  <circle cx="108" cy="40" r="1" fill="rgba(97,64,38,0)"/>
-  <circle cx="109" cy="40" r="1" fill="rgba(93,61,35,0.380392)"/>
-  <circle cx="110" cy="40" r="1" fill="rgba(88,56,31,0.941176)"/>
-  <circle cx="111" cy="40" r="1" fill="rgba(83,50,27,1)"/>
-  <circle cx="112" cy="40" r="1" fill="rgba(77,45,23,1)"/>
-  <circle cx="113" cy="40" r="1" fill="rgba(67,36,17,0.956863)"/>
-  <circle cx="114" cy="40" r="1" fill="rgba(31,12,3,0.14902)"/>
-  <circle cx="115" cy="40" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="40" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="40" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="40" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="40" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="40" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="40" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="40" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="40" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="40" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="40" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="40" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="40" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="41" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="41" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="41" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="41" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="41" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="41" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="41" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="41" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="41" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="41" r="1" fill="rgba(19,5,1,0.00392157)"/>
-  <circle cx="10" cy="41" r="1" fill="rgba(21,6,1,0.0627451)"/>
-  <circle cx="11" cy="41" r="1" fill="rgba(15,3,0,0.168627)"/>
-  <circle cx="12" cy="41" r="1" fill="rgba(29,11,3,0.411765)"/>
-  <circle cx="13" cy="41" r="1" fill="rgba(70,40,20,0.803922)"/>
-  <circle cx="14" cy="41" r="1" fill="rgba(91,59,33,0.992157)"/>
-  <circle cx="15" cy="41" r="1" fill="rgba(99,66,40,1)"/>
-  <circle cx="16" cy="41" r="1" fill="rgba(104,72,45,0.996078)"/>
-  <circle cx="17" cy="41" r="1" fill="rgba(103,71,44,0.968627)"/>
-  <circle cx="18" cy="41" r="1" fill="rgba(109,78,50,1)"/>
-  <circle cx="19" cy="41" r="1" fill="rgba(118,86,57,1)"/>
-  <circle cx="20" cy="41" r="1" fill="rgba(111,80,52,1)"/>
-  <circle cx="21" cy="41" r="1" fill="rgba(104,72,45,1)"/>
-  <circle cx="22" cy="41" r="1" fill="rgba(98,67,40,1)"/>
-  <circle cx="23" cy="41" r="1" fill="rgba(94,62,36,1)"/>
-  <circle cx="24" cy="41" r="1" fill="rgba(90,56,32,1)"/>
-  <circle cx="25" cy="41" r="1" fill="rgba(84,51,27,1)"/>
-  <circle cx="26" cy="41" r="1" fill="rgba(78,46,24,0.960784)"/>
-  <circle cx="27" cy="41" r="1" fill="rgba(73,41,20,0.784314)"/>
-  <circle cx="28" cy="41" r="1" fill="rgba(67,35,17,0.643137)"/>
-  <circle cx="29" cy="41" r="1" fill="rgba(62,31,14,0.564706)"/>
-  <circle cx="30" cy="41" r="1" fill="rgba(61,30,13,0.501961)"/>
-  <circle cx="31" cy="41" r="1" fill="rgba(54,28,13,0.501961)"/>
-  <circle cx="32" cy="41" r="1" fill="rgba(82,39,15,0.592157)"/>
-  <circle cx="33" cy="41" r="1" fill="rgba(244,128,43,0.913725)"/>
-  <circle cx="34" cy="41" r="1" fill="rgba(255,144,49,1)"/>
-  <circle cx="35" cy="41" r="1" fill="rgba(255,144,48,1)"/>
-  <circle cx="36" cy="41" r="1" fill="rgba(255,146,50,1)"/>
-  <circle cx="37" cy="41" r="1" fill="rgba(253,148,53,1)"/>
-  <circle cx="38" cy="41" r="1" fill="rgba(252,147,53,1)"/>
-  <circle cx="39" cy="41" r="1" fill="rgba(252,146,52,1)"/>
-  <circle cx="40" cy="41" r="1" fill="rgba(252,142,48,1)"/>
-  <circle cx="41" cy="41" r="1" fill="rgba(251,139,44,1)"/>
-  <circle cx="42" cy="41" r="1" fill="rgba(250,136,41,1)"/>
-  <circle cx="43" cy="41" r="1" fill="rgba(250,133,36,1)"/>
-  <circle cx="44" cy="41" r="1" fill="rgba(250,129,32,1)"/>
-  <circle cx="45" cy="41" r="1" fill="rgba(250,126,27,1)"/>
-  <circle cx="46" cy="41" r="1" fill="rgba(251,124,24,1)"/>
-  <circle cx="47" cy="41" r="1" fill="rgba(251,120,20,1)"/>
-  <circle cx="48" cy="41" r="1" fill="rgba(253,117,13,1)"/>
-  <circle cx="49" cy="41" r="1" fill="rgba(255,116,5,1)"/>
-  <circle cx="50" cy="41" r="1" fill="rgba(203,77,0,1)"/>
-  <circle cx="51" cy="41" r="1" fill="rgba(65,11,0,1)"/>
-  <circle cx="52" cy="41" r="1" fill="black"/>
-  <circle cx="53" cy="41" r="1" fill="rgba(114,83,55,1)"/>
-  <circle cx="54" cy="41" r="1" fill="rgba(218,204,187,1)"/>
-  <circle cx="55" cy="41" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="56" cy="41" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="57" cy="41" r="1" fill="rgba(253,252,253,1)"/>
-  <circle cx="58" cy="41" r="1" fill="rgba(226,219,215,1)"/>
-  <circle cx="59" cy="41" r="1" fill="rgba(191,176,163,1)"/>
-  <circle cx="60" cy="41" r="1" fill="rgba(149,126,108,1)"/>
-  <circle cx="61" cy="41" r="1" fill="rgba(101,76,56,1)"/>
-  <circle cx="62" cy="41" r="1" fill="rgba(80,53,34,1)"/>
-  <circle cx="63" cy="41" r="1" fill="rgba(64,35,17,1)"/>
-  <circle cx="64" cy="41" r="1" fill="rgba(59,29,13,1)"/>
-  <circle cx="65" cy="41" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="66" cy="41" r="1" fill="rgba(62,31,14,1)"/>
-  <circle cx="67" cy="41" r="1" fill="rgba(51,23,9,1)"/>
-  <circle cx="68" cy="41" r="1" fill="rgba(15,3,0,1)"/>
-  <circle cx="69" cy="41" r="1" fill="black"/>
-  <circle cx="70" cy="41" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="71" cy="41" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="72" cy="41" r="1" fill="rgba(10,4,1,1)"/>
-  <circle cx="73" cy="41" r="1" fill="rgba(19,8,3,1)"/>
-  <circle cx="74" cy="41" r="1" fill="rgba(22,11,5,1)"/>
-  <circle cx="75" cy="41" r="1" fill="rgba(26,14,7,1)"/>
-  <circle cx="76" cy="41" r="1" fill="rgba(31,18,9,1)"/>
-  <circle cx="77" cy="41" r="1" fill="rgba(37,24,13,1)"/>
-  <circle cx="78" cy="41" r="1" fill="rgba(36,24,14,1)"/>
-  <circle cx="79" cy="41" r="1" fill="rgba(0,7,3,1)"/>
-  <circle cx="80" cy="41" r="1" fill="rgba(39,0,0,1)"/>
-  <circle cx="81" cy="41" r="1" fill="rgba(176,108,74,1)"/>
-  <circle cx="82" cy="41" r="1" fill="rgba(247,193,169,1)"/>
-  <circle cx="83" cy="41" r="1" fill="rgba(214,70,34,1)"/>
-  <circle cx="84" cy="41" r="1" fill="rgba(203,34,8,1)"/>
-  <circle cx="85" cy="41" r="1" fill="rgba(208,50,17,1)"/>
-  <circle cx="86" cy="41" r="1" fill="rgba(209,54,20,1)"/>
-  <circle cx="87" cy="41" r="1" fill="rgba(210,59,22,1)"/>
-  <circle cx="88" cy="41" r="1" fill="rgba(213,64,24,1)"/>
-  <circle cx="89" cy="41" r="1" fill="rgba(214,68,27,1)"/>
-  <circle cx="90" cy="41" r="1" fill="rgba(215,72,29,1)"/>
-  <circle cx="91" cy="41" r="1" fill="rgba(215,75,30,1)"/>
-  <circle cx="92" cy="41" r="1" fill="rgba(214,75,30,1)"/>
-  <circle cx="93" cy="41" r="1" fill="rgba(213,74,29,1)"/>
-  <circle cx="94" cy="41" r="1" fill="rgba(210,70,26,1)"/>
-  <circle cx="95" cy="41" r="1" fill="rgba(207,65,23,1)"/>
-  <circle cx="96" cy="41" r="1" fill="rgba(214,65,22,0.976471)"/>
-  <circle cx="97" cy="41" r="1" fill="rgba(183,55,18,0.223529)"/>
-  <circle cx="98" cy="41" r="1" fill="rgba(62,30,13,0)"/>
-  <circle cx="99" cy="41" r="1" fill="rgba(64,34,16,0)"/>
-  <circle cx="100" cy="41" r="1" fill="rgba(73,41,20,0)"/>
-  <circle cx="101" cy="41" r="1" fill="rgba(80,47,25,0)"/>
-  <circle cx="102" cy="41" r="1" fill="rgba(85,52,29,0)"/>
-  <circle cx="103" cy="41" r="1" fill="rgba(91,58,33,0.0588235)"/>
-  <circle cx="104" cy="41" r="1" fill="rgba(96,64,37,0.356863)"/>
-  <circle cx="105" cy="41" r="1" fill="rgba(99,67,41,0.443137)"/>
-  <circle cx="106" cy="41" r="1" fill="rgba(98,66,40,0.0784314)"/>
-  <circle cx="107" cy="41" r="1" fill="rgba(97,65,38,0.121569)"/>
-  <circle cx="108" cy="41" r="1" fill="rgba(96,64,37,0.615686)"/>
-  <circle cx="109" cy="41" r="1" fill="rgba(92,59,34,1)"/>
-  <circle cx="110" cy="41" r="1" fill="rgba(87,55,30,1)"/>
-  <circle cx="111" cy="41" r="1" fill="rgba(81,48,26,0.988235)"/>
-  <circle cx="112" cy="41" r="1" fill="rgba(65,35,17,0.819608)"/>
-  <circle cx="113" cy="41" r="1" fill="rgba(40,17,6,0.529412)"/>
-  <circle cx="114" cy="41" r="1" fill="rgba(31,11,3,0.0588235)"/>
-  <circle cx="115" cy="41" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="41" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="41" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="41" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="41" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="41" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="41" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="41" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="41" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="41" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="41" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="41" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="41" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="42" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="42" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="42" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="42" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="42" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="42" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="42" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="42" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="42" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="42" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="42" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="42" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="42" r="1" fill="rgba(17,4,0,0.0470588)"/>
-  <circle cx="13" cy="42" r="1" fill="rgba(21,7,1,0.203922)"/>
-  <circle cx="14" cy="42" r="1" fill="rgba(40,19,7,0.466667)"/>
-  <circle cx="15" cy="42" r="1" fill="rgba(53,27,11,0.596078)"/>
-  <circle cx="16" cy="42" r="1" fill="rgba(58,31,14,0.482353)"/>
-  <circle cx="17" cy="42" r="1" fill="rgba(26,10,3,0.207843)"/>
-  <circle cx="18" cy="42" r="1" fill="rgba(42,20,7,0.176471)"/>
-  <circle cx="19" cy="42" r="1" fill="rgba(71,43,22,0.266667)"/>
-  <circle cx="20" cy="42" r="1" fill="rgba(80,49,26,0.388235)"/>
-  <circle cx="21" cy="42" r="1" fill="rgba(98,66,40,0.607843)"/>
-  <circle cx="22" cy="42" r="1" fill="rgba(101,68,42,0.956863)"/>
-  <circle cx="23" cy="42" r="1" fill="rgba(94,62,36,1)"/>
-  <circle cx="24" cy="42" r="1" fill="rgba(88,56,32,1)"/>
-  <circle cx="25" cy="42" r="1" fill="rgba(83,51,27,1)"/>
-  <circle cx="26" cy="42" r="1" fill="rgba(77,46,24,1)"/>
-  <circle cx="27" cy="42" r="1" fill="rgba(73,41,20,1)"/>
-  <circle cx="28" cy="42" r="1" fill="rgba(67,35,16,1)"/>
-  <circle cx="29" cy="42" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="30" cy="42" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="31" cy="42" r="1" fill="rgba(43,23,11,1)"/>
-  <circle cx="32" cy="42" r="1" fill="rgba(164,87,37,1)"/>
-  <circle cx="33" cy="42" r="1" fill="rgba(255,159,79,1)"/>
-  <circle cx="34" cy="42" r="1" fill="rgba(255,159,79,1)"/>
-  <circle cx="35" cy="42" r="1" fill="rgba(255,157,71,1)"/>
-  <circle cx="36" cy="42" r="1" fill="rgba(255,154,61,1)"/>
-  <circle cx="37" cy="42" r="1" fill="rgba(254,154,62,1)"/>
-  <circle cx="38" cy="42" r="1" fill="rgba(253,153,63,1)"/>
-  <circle cx="39" cy="42" r="1" fill="rgba(252,151,60,1)"/>
-  <circle cx="40" cy="42" r="1" fill="rgba(252,148,56,1)"/>
-  <circle cx="41" cy="42" r="1" fill="rgba(251,144,50,1)"/>
-  <circle cx="42" cy="42" r="1" fill="rgba(250,141,46,1)"/>
-  <circle cx="43" cy="42" r="1" fill="rgba(250,137,42,1)"/>
-  <circle cx="44" cy="42" r="1" fill="rgba(250,134,37,1)"/>
-  <circle cx="45" cy="42" r="1" fill="rgba(250,133,33,1)"/>
-  <circle cx="46" cy="42" r="1" fill="rgba(251,131,30,1)"/>
-  <circle cx="47" cy="42" r="1" fill="rgba(251,128,26,1)"/>
-  <circle cx="48" cy="42" r="1" fill="rgba(252,125,20,1)"/>
-  <circle cx="49" cy="42" r="1" fill="rgba(253,120,10,1)"/>
-  <circle cx="50" cy="42" r="1" fill="rgba(255,118,1,1)"/>
-  <circle cx="51" cy="42" r="1" fill="rgba(242,101,0,1)"/>
-  <circle cx="52" cy="42" r="1" fill="rgba(147,47,0,1)"/>
-  <circle cx="53" cy="42" r="1" fill="rgba(7,0,0,1)"/>
-  <circle cx="54" cy="42" r="1" fill="rgba(21,13,7,1)"/>
-  <circle cx="55" cy="42" r="1" fill="rgba(141,110,80,1)"/>
-  <circle cx="56" cy="42" r="1" fill="rgba(225,213,200,1)"/>
-  <circle cx="57" cy="42" r="1" fill="rgba(255,254,254,1)"/>
-  <circle cx="58" cy="42" r="1" fill="rgba(250,250,252,1)"/>
-  <circle cx="59" cy="42" r="1" fill="rgba(214,204,196,1)"/>
-  <circle cx="60" cy="42" r="1" fill="rgba(175,158,142,1)"/>
-  <circle cx="61" cy="42" r="1" fill="rgba(130,105,86,1)"/>
-  <circle cx="62" cy="42" r="1" fill="rgba(90,64,45,1)"/>
-  <circle cx="63" cy="42" r="1" fill="rgba(73,43,24,1)"/>
-  <circle cx="64" cy="42" r="1" fill="rgba(59,29,13,1)"/>
-  <circle cx="65" cy="42" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="66" cy="42" r="1" fill="rgba(62,31,14,1)"/>
-  <circle cx="67" cy="42" r="1" fill="rgba(50,23,9,1)"/>
-  <circle cx="68" cy="42" r="1" fill="rgba(12,3,0,1)"/>
-  <circle cx="69" cy="42" r="1" fill="black"/>
-  <circle cx="70" cy="42" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="71" cy="42" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="72" cy="42" r="1" fill="rgba(4,1,0,1)"/>
-  <circle cx="73" cy="42" r="1" fill="rgba(12,5,1,1)"/>
-  <circle cx="74" cy="42" r="1" fill="rgba(17,8,3,1)"/>
-  <circle cx="75" cy="42" r="1" fill="rgba(24,13,6,1)"/>
-  <circle cx="76" cy="42" r="1" fill="rgba(31,19,9,1)"/>
-  <circle cx="77" cy="42" r="1" fill="rgba(15,13,5,1)"/>
-  <circle cx="78" cy="42" r="1" fill="black"/>
-  <circle cx="79" cy="42" r="1" fill="rgba(103,22,6,1)"/>
-  <circle cx="80" cy="42" r="1" fill="rgba(219,155,124,1)"/>
-  <circle cx="81" cy="42" r="1" fill="rgba(244,175,147,1)"/>
-  <circle cx="82" cy="42" r="1" fill="rgba(207,50,19,1)"/>
-  <circle cx="83" cy="42" r="1" fill="rgba(203,33,8,1)"/>
-  <circle cx="84" cy="42" r="1" fill="rgba(207,48,16,1)"/>
-  <circle cx="85" cy="42" r="1" fill="rgba(210,53,19,1)"/>
-  <circle cx="86" cy="42" r="1" fill="rgba(211,58,22,1)"/>
-  <circle cx="87" cy="42" r="1" fill="rgba(213,63,25,1)"/>
-  <circle cx="88" cy="42" r="1" fill="rgba(214,68,27,1)"/>
-  <circle cx="89" cy="42" r="1" fill="rgba(215,73,30,1)"/>
-  <circle cx="90" cy="42" r="1" fill="rgba(217,77,33,1)"/>
-  <circle cx="91" cy="42" r="1" fill="rgba(217,81,34,1)"/>
-  <circle cx="92" cy="42" r="1" fill="rgba(217,82,35,1)"/>
-  <circle cx="93" cy="42" r="1" fill="rgba(216,81,34,1)"/>
-  <circle cx="94" cy="42" r="1" fill="rgba(214,77,31,1)"/>
-  <circle cx="95" cy="42" r="1" fill="rgba(211,73,28,1)"/>
-  <circle cx="96" cy="42" r="1" fill="rgba(216,70,25,1)"/>
-  <circle cx="97" cy="42" r="1" fill="rgba(172,55,19,0.882353)"/>
-  <circle cx="98" cy="42" r="1" fill="rgba(53,27,11,0.709804)"/>
-  <circle cx="99" cy="42" r="1" fill="rgba(64,34,16,0.643137)"/>
-  <circle cx="100" cy="42" r="1" fill="rgba(73,41,20,0.6)"/>
-  <circle cx="101" cy="42" r="1" fill="rgba(78,46,24,0.639216)"/>
-  <circle cx="102" cy="42" r="1" fill="rgba(84,51,28,0.729412)"/>
-  <circle cx="103" cy="42" r="1" fill="rgba(88,56,31,0.886275)"/>
-  <circle cx="104" cy="42" r="1" fill="rgba(93,60,35,1)"/>
-  <circle cx="105" cy="42" r="1" fill="rgba(96,63,37,1)"/>
-  <circle cx="106" cy="42" r="1" fill="rgba(96,64,38,0.894118)"/>
-  <circle cx="107" cy="42" r="1" fill="rgba(95,63,37,0.921569)"/>
-  <circle cx="108" cy="42" r="1" fill="rgba(92,59,34,1)"/>
-  <circle cx="109" cy="42" r="1" fill="rgba(88,56,32,1)"/>
-  <circle cx="110" cy="42" r="1" fill="rgba(80,48,25,0.886275)"/>
-  <circle cx="111" cy="42" r="1" fill="rgba(42,19,7,0.517647)"/>
-  <circle cx="112" cy="42" r="1" fill="rgba(10,2,0,0.411765)"/>
-  <circle cx="113" cy="42" r="1" fill="rgba(15,2,0,0.298039)"/>
-  <circle cx="114" cy="42" r="1" fill="rgba(31,12,3,0.0431373)"/>
-  <circle cx="115" cy="42" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="42" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="42" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="42" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="42" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="42" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="42" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="42" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="42" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="42" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="42" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="42" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="42" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="43" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="43" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="43" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="43" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="43" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="43" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="43" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="43" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="43" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="43" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="43" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="43" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="43" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="43" r="1" fill="rgba(29,11,3,0.00392157)"/>
-  <circle cx="14" cy="43" r="1" fill="rgba(29,10,3,0.0823529)"/>
-  <circle cx="15" cy="43" r="1" fill="rgba(12,4,0,0.266667)"/>
-  <circle cx="16" cy="43" r="1" fill="rgba(0,0,0,0.407843)"/>
-  <circle cx="17" cy="43" r="1" fill="rgba(0,0,0,0.4)"/>
-  <circle cx="18" cy="43" r="1" fill="rgba(0,0,0,0.337255)"/>
-  <circle cx="19" cy="43" r="1" fill="rgba(0,0,0,0.258824)"/>
-  <circle cx="20" cy="43" r="1" fill="rgba(31,12,4,0.0980392)"/>
-  <circle cx="21" cy="43" r="1" fill="rgba(51,26,11,0)"/>
-  <circle cx="22" cy="43" r="1" fill="rgba(70,42,21,0.176471)"/>
-  <circle cx="23" cy="43" r="1" fill="rgba(86,54,30,0.627451)"/>
-  <circle cx="24" cy="43" r="1" fill="rgba(84,52,29,0.901961)"/>
-  <circle cx="25" cy="43" r="1" fill="rgba(83,50,27,0.968627)"/>
-  <circle cx="26" cy="43" r="1" fill="rgba(78,46,24,0.917647)"/>
-  <circle cx="27" cy="43" r="1" fill="rgba(70,40,20,0.584314)"/>
-  <circle cx="28" cy="43" r="1" fill="rgba(65,34,16,0.396078)"/>
-  <circle cx="29" cy="43" r="1" fill="rgba(63,32,14,0.478431)"/>
-  <circle cx="30" cy="43" r="1" fill="rgba(42,22,10,0.737255)"/>
-  <circle cx="31" cy="43" r="1" fill="rgba(85,43,20,0.960784)"/>
-  <circle cx="32" cy="43" r="1" fill="rgba(239,153,91,1)"/>
-  <circle cx="33" cy="43" r="1" fill="rgba(255,176,111,1)"/>
-  <circle cx="34" cy="43" r="1" fill="rgba(255,173,105,1)"/>
-  <circle cx="35" cy="43" r="1" fill="rgba(255,169,92,1)"/>
-  <circle cx="36" cy="43" r="1" fill="rgba(255,162,77,1)"/>
-  <circle cx="37" cy="43" r="1" fill="rgba(254,160,72,1)"/>
-  <circle cx="38" cy="43" r="1" fill="rgba(253,159,72,1)"/>
-  <circle cx="39" cy="43" r="1" fill="rgba(252,156,68,1)"/>
-  <circle cx="40" cy="43" r="1" fill="rgba(252,152,63,1)"/>
-  <circle cx="41" cy="43" r="1" fill="rgba(251,148,56,1)"/>
-  <circle cx="42" cy="43" r="1" fill="rgba(251,145,51,1)"/>
-  <circle cx="43" cy="43" r="1" fill="rgba(250,141,47,1)"/>
-  <circle cx="44" cy="43" r="1" fill="rgba(250,138,42,1)"/>
-  <circle cx="45" cy="43" r="1" fill="rgba(250,136,38,1)"/>
-  <circle cx="46" cy="43" r="1" fill="rgba(251,136,36,1)"/>
-  <circle cx="47" cy="43" r="1" fill="rgba(251,135,32,1)"/>
-  <circle cx="48" cy="43" r="1" fill="rgba(252,132,25,1)"/>
-  <circle cx="49" cy="43" r="1" fill="rgba(252,127,15,1)"/>
-  <circle cx="50" cy="43" r="1" fill="rgba(253,120,3,1)"/>
-  <circle cx="51" cy="43" r="1" fill="rgba(255,116,0,1)"/>
-  <circle cx="52" cy="43" r="1" fill="rgba(255,112,0,1)"/>
-  <circle cx="53" cy="43" r="1" fill="rgba(217,83,0,1)"/>
-  <circle cx="54" cy="43" r="1" fill="rgba(115,32,0,1)"/>
-  <circle cx="55" cy="43" r="1" fill="black"/>
-  <circle cx="56" cy="43" r="1" fill="rgba(40,25,13,1)"/>
-  <circle cx="57" cy="43" r="1" fill="rgba(145,115,86,1)"/>
-  <circle cx="58" cy="43" r="1" fill="rgba(225,213,199,1)"/>
-  <circle cx="59" cy="43" r="1" fill="rgba(240,238,236,1)"/>
-  <circle cx="60" cy="43" r="1" fill="rgba(207,196,188,1)"/>
-  <circle cx="61" cy="43" r="1" fill="rgba(162,141,123,1)"/>
-  <circle cx="62" cy="43" r="1" fill="rgba(111,86,66,1)"/>
-  <circle cx="63" cy="43" r="1" fill="rgba(81,53,35,1)"/>
-  <circle cx="64" cy="43" r="1" fill="rgba(63,32,14,1)"/>
-  <circle cx="65" cy="43" r="1" fill="rgba(61,30,13,1)"/>
-  <circle cx="66" cy="43" r="1" fill="rgba(62,31,14,1)"/>
-  <circle cx="67" cy="43" r="1" fill="rgba(47,21,8,1)"/>
-  <circle cx="68" cy="43" r="1" fill="rgba(12,2,0,1)"/>
-  <circle cx="69" cy="43" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="70" cy="43" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="71" cy="43" r="1" fill="black"/>
-  <circle cx="72" cy="43" r="1" fill="black"/>
-  <circle cx="73" cy="43" r="1" fill="rgba(12,3,0,1)"/>
-  <circle cx="74" cy="43" r="1" fill="rgba(26,13,5,1)"/>
-  <circle cx="75" cy="43" r="1" fill="rgba(21,13,5,1)"/>
-  <circle cx="76" cy="43" r="1" fill="rgba(15,0,0,1)"/>
-  <circle cx="77" cy="43" r="1" fill="rgba(83,3,0,1)"/>
-  <circle cx="78" cy="43" r="1" fill="rgba(184,91,54,1)"/>
-  <circle cx="79" cy="43" r="1" fill="rgba(247,194,171,1)"/>
-  <circle cx="80" cy="43" r="1" fill="rgba(234,140,103,1)"/>
-  <circle cx="81" cy="43" r="1" fill="rgba(205,34,8,1)"/>
-  <circle cx="82" cy="43" r="1" fill="rgba(204,35,9,1)"/>
-  <circle cx="83" cy="43" r="1" fill="rgba(207,45,16,1)"/>
-  <circle cx="84" cy="43" r="1" fill="rgba(210,51,18,1)"/>
-  <circle cx="85" cy="43" r="1" fill="rgba(210,57,21,1)"/>
-  <circle cx="86" cy="43" r="1" fill="rgba(212,62,24,1)"/>
-  <circle cx="87" cy="43" r="1" fill="rgba(214,67,27,1)"/>
-  <circle cx="88" cy="43" r="1" fill="rgba(216,71,30,1)"/>
-  <circle cx="89" cy="43" r="1" fill="rgba(217,76,33,1)"/>
-  <circle cx="90" cy="43" r="1" fill="rgba(218,81,36,1)"/>
-  <circle cx="91" cy="43" r="1" fill="rgba(219,85,38,1)"/>
-  <circle cx="92" cy="43" r="1" fill="rgba(220,87,40,1)"/>
-  <circle cx="93" cy="43" r="1" fill="rgba(219,88,39,1)"/>
-  <circle cx="94" cy="43" r="1" fill="rgba(217,85,37,1)"/>
-  <circle cx="95" cy="43" r="1" fill="rgba(214,80,33,1)"/>
-  <circle cx="96" cy="43" r="1" fill="rgba(214,76,30,1)"/>
-  <circle cx="97" cy="43" r="1" fill="rgba(213,72,27,1)"/>
-  <circle cx="98" cy="43" r="1" fill="rgba(101,37,14,1)"/>
-  <circle cx="99" cy="43" r="1" fill="rgba(50,29,13,1)"/>
-  <circle cx="100" cy="43" r="1" fill="rgba(69,37,18,1)"/>
-  <circle cx="101" cy="43" r="1" fill="rgba(74,42,21,1)"/>
-  <circle cx="102" cy="43" r="1" fill="rgba(80,47,24,1)"/>
-  <circle cx="103" cy="43" r="1" fill="rgba(84,51,27,1)"/>
-  <circle cx="104" cy="43" r="1" fill="rgba(86,54,30,1)"/>
-  <circle cx="105" cy="43" r="1" fill="rgba(90,56,32,1)"/>
-  <circle cx="106" cy="43" r="1" fill="rgba(90,57,33,1)"/>
-  <circle cx="107" cy="43" r="1" fill="rgba(88,57,31,1)"/>
-  <circle cx="108" cy="43" r="1" fill="rgba(86,54,30,1)"/>
-  <circle cx="109" cy="43" r="1" fill="rgba(83,50,27,0.886275)"/>
-  <circle cx="110" cy="43" r="1" fill="rgba(42,18,7,0.396078)"/>
-  <circle cx="111" cy="43" r="1" fill="rgba(0,0,0,0.423529)"/>
-  <circle cx="112" cy="43" r="1" fill="rgba(0,0,0,0.470588)"/>
-  <circle cx="113" cy="43" r="1" fill="rgba(21,6,1,0.294118)"/>
-  <circle cx="114" cy="43" r="1" fill="rgba(34,14,4,0.0235294)"/>
-  <circle cx="115" cy="43" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="43" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="43" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="43" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="43" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="43" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="43" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="43" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="43" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="43" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="43" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="43" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="43" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="44" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="44" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="44" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="44" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="44" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="44" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="44" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="44" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="44" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="44" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="44" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="44" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="44" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="44" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="44" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="44" r="1" fill="rgba(33,12,3,0.0313725)"/>
-  <circle cx="16" cy="44" r="1" fill="rgba(28,10,3,0.207843)"/>
-  <circle cx="17" cy="44" r="1" fill="rgba(12,3,0,0.415686)"/>
-  <circle cx="18" cy="44" r="1" fill="rgba(0,0,0,0.482353)"/>
-  <circle cx="19" cy="44" r="1" fill="rgba(0,0,0,0.47451)"/>
-  <circle cx="20" cy="44" r="1" fill="rgba(10,3,0,0.423529)"/>
-  <circle cx="21" cy="44" r="1" fill="rgba(29,12,4,0.290196)"/>
-  <circle cx="22" cy="44" r="1" fill="rgba(29,12,4,0.0980392)"/>
-  <circle cx="23" cy="44" r="1" fill="rgba(33,14,5,0.00392157)"/>
-  <circle cx="24" cy="44" r="1" fill="rgba(51,27,11,0.0588235)"/>
-  <circle cx="25" cy="44" r="1" fill="rgba(69,40,19,0.152941)"/>
-  <circle cx="26" cy="44" r="1" fill="rgba(61,32,14,0.0627451)"/>
-  <circle cx="27" cy="44" r="1" fill="rgba(54,24,10,0)"/>
-  <circle cx="28" cy="44" r="1" fill="rgba(55,21,8,0)"/>
-  <circle cx="29" cy="44" r="1" fill="rgba(42,21,9,0)"/>
-  <circle cx="30" cy="44" r="1" fill="rgba(113,55,24,0)"/>
-  <circle cx="31" cy="44" r="1" fill="rgba(210,130,72,0.6)"/>
-  <circle cx="32" cy="44" r="1" fill="rgba(255,186,134,1)"/>
-  <circle cx="33" cy="44" r="1" fill="rgba(255,185,134,1)"/>
-  <circle cx="34" cy="44" r="1" fill="rgba(255,182,119,1)"/>
-  <circle cx="35" cy="44" r="1" fill="rgba(255,176,106,1)"/>
-  <circle cx="36" cy="44" r="1" fill="rgba(255,169,91,1)"/>
-  <circle cx="37" cy="44" r="1" fill="rgba(254,165,83,1)"/>
-  <circle cx="38" cy="44" r="1" fill="rgba(253,164,82,1)"/>
-  <circle cx="39" cy="44" r="1" fill="rgba(252,160,77,1)"/>
-  <circle cx="40" cy="44" r="1" fill="rgba(252,156,70,1)"/>
-  <circle cx="41" cy="44" r="1" fill="rgba(251,151,62,1)"/>
-  <circle cx="42" cy="44" r="1" fill="rgba(251,147,56,1)"/>
-  <circle cx="43" cy="44" r="1" fill="rgba(250,143,49,1)"/>
-  <circle cx="44" cy="44" r="1" fill="rgba(250,139,45,1)"/>
-  <circle cx="45" cy="44" r="1" fill="rgba(251,138,42,1)"/>
-  <circle cx="46" cy="44" r="1" fill="rgba(251,138,39,1)"/>
-  <circle cx="47" cy="44" r="1" fill="rgba(251,137,36,1)"/>
-  <circle cx="48" cy="44" r="1" fill="rgba(252,136,29,1)"/>
-  <circle cx="49" cy="44" r="1" fill="rgba(252,132,20,1)"/>
-  <circle cx="50" cy="44" r="1" fill="rgba(253,126,5,1)"/>
-  <circle cx="51" cy="44" r="1" fill="rgba(252,120,0,1)"/>
-  <circle cx="52" cy="44" r="1" fill="rgba(253,114,0,1)"/>
-  <circle cx="53" cy="44" r="1" fill="rgba(255,110,0,1)"/>
-  <circle cx="54" cy="44" r="1" fill="rgba(255,102,0,1)"/>
-  <circle cx="55" cy="44" r="1" fill="rgba(200,68,0,1)"/>
-  <circle cx="56" cy="44" r="1" fill="rgba(101,21,0,1)"/>
-  <circle cx="57" cy="44" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="58" cy="44" r="1" fill="rgba(34,22,10,1)"/>
-  <circle cx="59" cy="44" r="1" fill="rgba(129,98,69,1)"/>
-  <circle cx="60" cy="44" r="1" fill="rgba(182,161,140,1)"/>
-  <circle cx="61" cy="44" r="1" fill="rgba(186,170,156,1)"/>
-  <circle cx="62" cy="44" r="1" fill="rgba(148,127,108,1)"/>
-  <circle cx="63" cy="44" r="1" fill="rgba(98,72,53,1)"/>
-  <circle cx="64" cy="44" r="1" fill="rgba(68,38,20,1)"/>
-  <circle cx="65" cy="44" r="1" fill="rgba(59,28,12,1)"/>
-  <circle cx="66" cy="44" r="1" fill="rgba(62,31,14,1)"/>
-  <circle cx="67" cy="44" r="1" fill="rgba(45,20,7,1)"/>
-  <circle cx="68" cy="44" r="1" fill="black"/>
-  <circle cx="69" cy="44" r="1" fill="black"/>
-  <circle cx="70" cy="44" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="71" cy="44" r="1" fill="rgba(17,5,1,1)"/>
-  <circle cx="72" cy="44" r="1" fill="rgba(28,12,4,1)"/>
-  <circle cx="73" cy="44" r="1" fill="rgba(21,12,4,1)"/>
-  <circle cx="74" cy="44" r="1" fill="rgba(24,0,0,1)"/>
-  <circle cx="75" cy="44" r="1" fill="rgba(87,12,2,1)"/>
-  <circle cx="76" cy="44" r="1" fill="rgba(180,85,48,1)"/>
-  <circle cx="77" cy="44" r="1" fill="rgba(239,168,135,1)"/>
-  <circle cx="78" cy="44" r="1" fill="rgba(242,161,126,1)"/>
-  <circle cx="79" cy="44" r="1" fill="rgba(217,72,33,1)"/>
-  <circle cx="80" cy="44" r="1" fill="rgba(205,26,3,1)"/>
-  <circle cx="81" cy="44" r="1" fill="rgba(207,40,10,1)"/>
-  <circle cx="82" cy="44" r="1" fill="rgba(208,45,14,1)"/>
-  <circle cx="83" cy="44" r="1" fill="rgba(209,49,17,1)"/>
-  <circle cx="84" cy="44" r="1" fill="rgba(210,54,20,1)"/>
-  <circle cx="85" cy="44" r="1" fill="rgba(213,60,23,1)"/>
-  <circle cx="86" cy="44" r="1" fill="rgba(214,65,27,1)"/>
-  <circle cx="87" cy="44" r="1" fill="rgba(215,69,30,1)"/>
-  <circle cx="88" cy="44" r="1" fill="rgba(217,74,32,1)"/>
-  <circle cx="89" cy="44" r="1" fill="rgba(218,78,34,1)"/>
-  <circle cx="90" cy="44" r="1" fill="rgba(219,83,37,1)"/>
-  <circle cx="91" cy="44" r="1" fill="rgba(221,87,40,1)"/>
-  <circle cx="92" cy="44" r="1" fill="rgba(221,90,42,1)"/>
-  <circle cx="93" cy="44" r="1" fill="rgba(222,92,43,1)"/>
-  <circle cx="94" cy="44" r="1" fill="rgba(221,92,43,1)"/>
-  <circle cx="95" cy="44" r="1" fill="rgba(219,88,39,1)"/>
-  <circle cx="96" cy="44" r="1" fill="rgba(216,83,35,1)"/>
-  <circle cx="97" cy="44" r="1" fill="rgba(222,81,32,1)"/>
-  <circle cx="98" cy="44" r="1" fill="rgba(178,63,24,0.996078)"/>
-  <circle cx="99" cy="44" r="1" fill="rgba(51,26,11,0.890196)"/>
-  <circle cx="100" cy="44" r="1" fill="rgba(53,30,14,0.827451)"/>
-  <circle cx="101" cy="44" r="1" fill="rgba(70,39,19,0.827451)"/>
-  <circle cx="102" cy="44" r="1" fill="rgba(74,44,22,0.827451)"/>
-  <circle cx="103" cy="44" r="1" fill="rgba(80,47,24,0.909804)"/>
-  <circle cx="104" cy="44" r="1" fill="rgba(83,50,27,0.956863)"/>
-  <circle cx="105" cy="44" r="1" fill="rgba(85,53,29,0.992157)"/>
-  <circle cx="106" cy="44" r="1" fill="rgba(85,52,29,1)"/>
-  <circle cx="107" cy="44" r="1" fill="rgba(84,52,28,1)"/>
-  <circle cx="108" cy="44" r="1" fill="rgba(83,49,27,0.913725)"/>
-  <circle cx="109" cy="44" r="1" fill="rgba(55,29,13,0.368627)"/>
-  <circle cx="110" cy="44" r="1" fill="rgba(10,2,0,0.356863)"/>
-  <circle cx="111" cy="44" r="1" fill="rgba(0,0,0,0.470588)"/>
-  <circle cx="112" cy="44" r="1" fill="rgba(0,0,0,0.47451)"/>
-  <circle cx="113" cy="44" r="1" fill="rgba(17,5,1,0.286275)"/>
-  <circle cx="114" cy="44" r="1" fill="rgba(28,11,3,0.0156863)"/>
-  <circle cx="115" cy="44" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="44" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="44" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="44" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="44" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="44" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="44" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="44" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="44" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="44" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="44" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="44" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="44" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="45" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="45" r="1" fill="rgba(34,14,4,0.00392157)"/>
-  <circle cx="17" cy="45" r="1" fill="rgba(36,15,5,0.137255)"/>
-  <circle cx="18" cy="45" r="1" fill="rgba(22,8,2,0.34902)"/>
-  <circle cx="19" cy="45" r="1" fill="rgba(7,1,0,0.45098)"/>
-  <circle cx="20" cy="45" r="1" fill="rgba(4,0,0,0.470588)"/>
-  <circle cx="21" cy="45" r="1" fill="rgba(4,0,0,0.470588)"/>
-  <circle cx="22" cy="45" r="1" fill="rgba(12,3,0,0.415686)"/>
-  <circle cx="23" cy="45" r="1" fill="rgba(17,5,1,0.305882)"/>
-  <circle cx="24" cy="45" r="1" fill="rgba(39,18,7,0.184314)"/>
-  <circle cx="25" cy="45" r="1" fill="rgba(51,27,11,0.0705882)"/>
-  <circle cx="26" cy="45" r="1" fill="rgba(39,18,6,0.0588235)"/>
-  <circle cx="27" cy="45" r="1" fill="rgba(37,15,5,0.0745098)"/>
-  <circle cx="28" cy="45" r="1" fill="rgba(43,16,6,0.0470588)"/>
-  <circle cx="29" cy="45" r="1" fill="rgba(0,1,1,0)"/>
-  <circle cx="30" cy="45" r="1" fill="rgba(163,77,27,0.0745098)"/>
-  <circle cx="31" cy="45" r="1" fill="rgba(255,171,94,0.886275)"/>
-  <circle cx="32" cy="45" r="1" fill="rgba(255,178,123,1)"/>
-  <circle cx="33" cy="45" r="1" fill="rgba(255,185,129,1)"/>
-  <circle cx="34" cy="45" r="1" fill="rgba(255,182,119,1)"/>
-  <circle cx="35" cy="45" r="1" fill="rgba(255,178,109,1)"/>
-  <circle cx="36" cy="45" r="1" fill="rgba(255,173,98,1)"/>
-  <circle cx="37" cy="45" r="1" fill="rgba(254,171,94,1)"/>
-  <circle cx="38" cy="45" r="1" fill="rgba(253,168,90,1)"/>
-  <circle cx="39" cy="45" r="1" fill="rgba(252,164,83,1)"/>
-  <circle cx="40" cy="45" r="1" fill="rgba(252,159,74,1)"/>
-  <circle cx="41" cy="45" r="1" fill="rgba(251,154,66,1)"/>
-  <circle cx="42" cy="45" r="1" fill="rgba(251,149,58,1)"/>
-  <circle cx="43" cy="45" r="1" fill="rgba(251,145,51,1)"/>
-  <circle cx="44" cy="45" r="1" fill="rgba(251,141,46,1)"/>
-  <circle cx="45" cy="45" r="1" fill="rgba(251,139,42,1)"/>
-  <circle cx="46" cy="45" r="1" fill="rgba(251,138,40,1)"/>
-  <circle cx="47" cy="45" r="1" fill="rgba(252,137,36,1)"/>
-  <circle cx="48" cy="45" r="1" fill="rgba(252,136,30,1)"/>
-  <circle cx="49" cy="45" r="1" fill="rgba(252,132,21,1)"/>
-  <circle cx="50" cy="45" r="1" fill="rgba(253,127,7,1)"/>
-  <circle cx="51" cy="45" r="1" fill="rgba(253,122,0,1)"/>
-  <circle cx="52" cy="45" r="1" fill="rgba(252,118,0,1)"/>
-  <circle cx="53" cy="45" r="1" fill="rgba(252,112,0,1)"/>
-  <circle cx="54" cy="45" r="1" fill="rgba(251,105,0,1)"/>
-  <circle cx="55" cy="45" r="1" fill="rgba(255,100,0,1)"/>
-  <circle cx="56" cy="45" r="1" fill="rgba(251,88,0,1)"/>
-  <circle cx="57" cy="45" r="1" fill="rgba(205,60,0,1)"/>
-  <circle cx="58" cy="45" r="1" fill="rgba(116,23,0,1)"/>
-  <circle cx="59" cy="45" r="1" fill="rgba(21,0,0,1)"/>
-  <circle cx="60" cy="45" r="1" fill="rgba(12,10,4,1)"/>
-  <circle cx="61" cy="45" r="1" fill="rgba(82,55,33,1)"/>
-  <circle cx="62" cy="45" r="1" fill="rgba(119,90,64,1)"/>
-  <circle cx="63" cy="45" r="1" fill="rgba(110,83,61,1)"/>
-  <circle cx="64" cy="45" r="1" fill="rgba(74,43,24,1)"/>
-  <circle cx="65" cy="45" r="1" fill="rgba(62,30,13,1)"/>
-  <circle cx="66" cy="45" r="1" fill="rgba(58,29,13,1)"/>
-  <circle cx="67" cy="45" r="1" fill="rgba(29,10,3,1)"/>
-  <circle cx="68" cy="45" r="1" fill="rgba(19,5,1,1)"/>
-  <circle cx="69" cy="45" r="1" fill="rgba(29,11,3,1)"/>
-  <circle cx="70" cy="45" r="1" fill="rgba(29,16,6,1)"/>
-  <circle cx="71" cy="45" r="1" fill="rgba(22,11,4,1)"/>
-  <circle cx="72" cy="45" r="1" fill="rgba(43,4,0,1)"/>
-  <circle cx="73" cy="45" r="1" fill="rgba(110,29,8,1)"/>
-  <circle cx="74" cy="45" r="1" fill="rgba(190,99,60,1)"/>
-  <circle cx="75" cy="45" r="1" fill="rgba(238,157,120,1)"/>
-  <circle cx="76" cy="45" r="1" fill="rgba(239,141,100,1)"/>
-  <circle cx="77" cy="45" r="1" fill="rgba(219,73,32,1)"/>
-  <circle cx="78" cy="45" r="1" fill="rgba(207,26,3,1)"/>
-  <circle cx="79" cy="45" r="1" fill="rgba(208,31,5,1)"/>
-  <circle cx="80" cy="45" r="1" fill="rgba(210,41,10,1)"/>
-  <circle cx="81" cy="45" r="1" fill="rgba(210,45,13,1)"/>
-  <circle cx="82" cy="45" r="1" fill="rgba(210,47,16,1)"/>
-  <circle cx="83" cy="45" r="1" fill="rgba(211,51,19,1)"/>
-  <circle cx="84" cy="45" r="1" fill="rgba(212,56,22,1)"/>
-  <circle cx="85" cy="45" r="1" fill="rgba(214,61,24,1)"/>
-  <circle cx="86" cy="45" r="1" fill="rgba(217,67,27,1)"/>
-  <circle cx="87" cy="45" r="1" fill="rgba(224,74,33,1)"/>
-  <circle cx="88" cy="45" r="1" fill="rgba(227,78,35,1)"/>
-  <circle cx="89" cy="45" r="1" fill="rgba(222,80,36,1)"/>
-  <circle cx="90" cy="45" r="1" fill="rgba(219,83,37,1)"/>
-  <circle cx="91" cy="45" r="1" fill="rgba(221,87,40,1)"/>
-  <circle cx="92" cy="45" r="1" fill="rgba(221,91,43,1)"/>
-  <circle cx="93" cy="45" r="1" fill="rgba(222,95,46,1)"/>
-  <circle cx="94" cy="45" r="1" fill="rgba(223,96,47,1)"/>
-  <circle cx="95" cy="45" r="1" fill="rgba(222,95,45,1)"/>
-  <circle cx="96" cy="45" r="1" fill="rgba(220,90,41,1)"/>
-  <circle cx="97" cy="45" r="1" fill="rgba(219,86,37,1)"/>
-  <circle cx="98" cy="45" r="1" fill="rgba(224,85,35,0.988235)"/>
-  <circle cx="99" cy="45" r="1" fill="rgba(185,70,27,0.298039)"/>
-  <circle cx="100" cy="45" r="1" fill="rgba(104,44,18,0.0235294)"/>
-  <circle cx="101" cy="45" r="1" fill="rgba(59,33,16,0.027451)"/>
-  <circle cx="102" cy="45" r="1" fill="rgba(73,28,12,0.027451)"/>
-  <circle cx="103" cy="45" r="1" fill="rgba(62,32,14,0.0509804)"/>
-  <circle cx="104" cy="45" r="1" fill="rgba(65,36,17,0.113725)"/>
-  <circle cx="105" cy="45" r="1" fill="rgba(54,27,12,0.231373)"/>
-  <circle cx="106" cy="45" r="1" fill="rgba(59,32,14,0.403922)"/>
-  <circle cx="107" cy="45" r="1" fill="rgba(62,33,15,0.486275)"/>
-  <circle cx="108" cy="45" r="1" fill="rgba(58,30,13,0.262745)"/>
-  <circle cx="109" cy="45" r="1" fill="rgba(22,9,2,0.294118)"/>
-  <circle cx="110" cy="45" r="1" fill="rgba(0,0,0,0.466667)"/>
-  <circle cx="111" cy="45" r="1" fill="rgba(0,0,0,0.466667)"/>
-  <circle cx="112" cy="45" r="1" fill="rgba(4,0,0,0.443137)"/>
-  <circle cx="113" cy="45" r="1" fill="rgba(21,6,1,0.235294)"/>
-  <circle cx="114" cy="45" r="1" fill="rgba(29,11,3,0.0156863)"/>
-  <circle cx="115" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="45" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="46" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="46" r="1" fill="rgba(43,20,8,0.0745098)"/>
-  <circle cx="19" cy="46" r="1" fill="rgba(36,16,5,0.223529)"/>
-  <circle cx="20" cy="46" r="1" fill="rgba(33,14,4,0.298039)"/>
-  <circle cx="21" cy="46" r="1" fill="rgba(26,10,3,0.294118)"/>
-  <circle cx="22" cy="46" r="1" fill="rgba(12,3,0,0.313725)"/>
-  <circle cx="23" cy="46" r="1" fill="rgba(19,6,1,0.407843)"/>
-  <circle cx="24" cy="46" r="1" fill="rgba(19,6,1,0.443137)"/>
-  <circle cx="25" cy="46" r="1" fill="rgba(22,8,2,0.388235)"/>
-  <circle cx="26" cy="46" r="1" fill="rgba(22,8,2,0.360784)"/>
-  <circle cx="27" cy="46" r="1" fill="rgba(17,5,1,0.360784)"/>
-  <circle cx="28" cy="46" r="1" fill="rgba(19,6,1,0.317647)"/>
-  <circle cx="29" cy="46" r="1" fill="rgba(12,4,1,0.12549)"/>
-  <circle cx="30" cy="46" r="1" fill="rgba(184,84,25,0.470588)"/>
-  <circle cx="31" cy="46" r="1" fill="rgba(255,155,73,1)"/>
-  <circle cx="32" cy="46" r="1" fill="rgba(255,167,97,1)"/>
-  <circle cx="33" cy="46" r="1" fill="rgba(255,176,108,1)"/>
-  <circle cx="34" cy="46" r="1" fill="rgba(255,178,108,1)"/>
-  <circle cx="35" cy="46" r="1" fill="rgba(255,175,101,1)"/>
-  <circle cx="36" cy="46" r="1" fill="rgba(255,173,96,1)"/>
-  <circle cx="37" cy="46" r="1" fill="rgba(254,173,99,1)"/>
-  <circle cx="38" cy="46" r="1" fill="rgba(253,170,93,1)"/>
-  <circle cx="39" cy="46" r="1" fill="rgba(252,165,85,1)"/>
-  <circle cx="40" cy="46" r="1" fill="rgba(252,159,76,1)"/>
-  <circle cx="41" cy="46" r="1" fill="rgba(251,154,66,1)"/>
-  <circle cx="42" cy="46" r="1" fill="rgba(251,149,59,1)"/>
-  <circle cx="43" cy="46" r="1" fill="rgba(251,145,51,1)"/>
-  <circle cx="44" cy="46" r="1" fill="rgba(251,141,45,1)"/>
-  <circle cx="45" cy="46" r="1" fill="rgba(251,138,42,1)"/>
-  <circle cx="46" cy="46" r="1" fill="rgba(251,136,37,1)"/>
-  <circle cx="47" cy="46" r="1" fill="rgba(251,135,34,1)"/>
-  <circle cx="48" cy="46" r="1" fill="rgba(252,133,28,1)"/>
-  <circle cx="49" cy="46" r="1" fill="rgba(253,131,20,1)"/>
-  <circle cx="50" cy="46" r="1" fill="rgba(253,127,7,1)"/>
-  <circle cx="51" cy="46" r="1" fill="rgba(253,122,0,1)"/>
-  <circle cx="52" cy="46" r="1" fill="rgba(252,119,0,1)"/>
-  <circle cx="53" cy="46" r="1" fill="rgba(252,115,0,1)"/>
-  <circle cx="54" cy="46" r="1" fill="rgba(250,109,0,1)"/>
-  <circle cx="55" cy="46" r="1" fill="rgba(249,101,0,1)"/>
-  <circle cx="56" cy="46" r="1" fill="rgba(248,93,0,1)"/>
-  <circle cx="57" cy="46" r="1" fill="rgba(252,87,0,1)"/>
-  <circle cx="58" cy="46" r="1" fill="rgba(250,78,0,1)"/>
-  <circle cx="59" cy="46" r="1" fill="rgba(216,57,0,1)"/>
-  <circle cx="60" cy="46" r="1" fill="rgba(140,27,0,1)"/>
-  <circle cx="61" cy="46" r="1" fill="rgba(47,2,0,1)"/>
-  <circle cx="62" cy="46" r="1" fill="black"/>
-  <circle cx="63" cy="46" r="1" fill="rgba(28,14,5,1)"/>
-  <circle cx="64" cy="46" r="1" fill="rgba(42,18,7,1)"/>
-  <circle cx="65" cy="46" r="1" fill="rgba(45,19,7,1)"/>
-  <circle cx="66" cy="46" r="1" fill="rgba(33,12,3,1)"/>
-  <circle cx="67" cy="46" r="1" fill="rgba(22,8,2,1)"/>
-  <circle cx="68" cy="46" r="1" fill="rgba(17,10,3,1)"/>
-  <circle cx="69" cy="46" r="1" fill="rgba(19,3,0,1)"/>
-  <circle cx="70" cy="46" r="1" fill="rgba(73,9,1,1)"/>
-  <circle cx="71" cy="46" r="1" fill="rgba(145,48,18,1)"/>
-  <circle cx="72" cy="46" r="1" fill="rgba(210,106,62,1)"/>
-  <circle cx="73" cy="46" r="1" fill="rgba(239,134,90,1)"/>
-  <circle cx="74" cy="46" r="1" fill="rgba(233,108,60,1)"/>
-  <circle cx="75" cy="46" r="1" fill="rgba(217,52,13,1)"/>
-  <circle cx="76" cy="46" r="1" fill="rgba(210,25,0,1)"/>
-  <circle cx="77" cy="46" r="1" fill="rgba(210,31,3,1)"/>
-  <circle cx="78" cy="46" r="1" fill="rgba(210,38,8,1)"/>
-  <circle cx="79" cy="46" r="1" fill="rgba(211,41,10,1)"/>
-  <circle cx="80" cy="46" r="1" fill="rgba(211,43,11,1)"/>
-  <circle cx="81" cy="46" r="1" fill="rgba(211,47,13,1)"/>
-  <circle cx="82" cy="46" r="1" fill="rgba(210,49,16,1)"/>
-  <circle cx="83" cy="46" r="1" fill="rgba(211,52,19,1)"/>
-  <circle cx="84" cy="46" r="1" fill="rgba(213,57,22,1)"/>
-  <circle cx="85" cy="46" r="1" fill="rgba(219,63,25,1)"/>
-  <circle cx="86" cy="46" r="1" fill="rgba(204,60,23,1)"/>
-  <circle cx="87" cy="46" r="1" fill="rgba(149,41,13,1)"/>
-  <circle cx="88" cy="46" r="1" fill="rgba(135,37,12,1)"/>
-  <circle cx="89" cy="46" r="1" fill="rgba(190,63,26,1)"/>
-  <circle cx="90" cy="46" r="1" fill="rgba(224,83,37,1)"/>
-  <circle cx="91" cy="46" r="1" fill="rgba(221,86,38,1)"/>
-  <circle cx="92" cy="46" r="1" fill="rgba(221,90,42,1)"/>
-  <circle cx="93" cy="46" r="1" fill="rgba(223,95,45,1)"/>
-  <circle cx="94" cy="46" r="1" fill="rgba(224,98,48,1)"/>
-  <circle cx="95" cy="46" r="1" fill="rgba(224,99,48,1)"/>
-  <circle cx="96" cy="46" r="1" fill="rgba(223,97,46,1)"/>
-  <circle cx="97" cy="46" r="1" fill="rgba(221,93,42,1)"/>
-  <circle cx="98" cy="46" r="1" fill="rgba(221,89,38,1)"/>
-  <circle cx="99" cy="46" r="1" fill="rgba(236,95,39,0.647059)"/>
-  <circle cx="100" cy="46" r="1" fill="rgba(142,51,18,0)"/>
-  <circle cx="101" cy="46" r="1" fill="rgba(26,12,4,0)"/>
-  <circle cx="102" cy="46" r="1" fill="rgba(71,14,4,0)"/>
-  <circle cx="103" cy="46" r="1" fill="rgba(40,16,5,0)"/>
-  <circle cx="104" cy="46" r="1" fill="rgba(37,17,6,0.0156863)"/>
-  <circle cx="105" cy="46" r="1" fill="rgba(19,6,1,0.0666667)"/>
-  <circle cx="106" cy="46" r="1" fill="rgba(33,14,4,0)"/>
-  <circle cx="107" cy="46" r="1" fill="rgba(34,15,5,0.0117647)"/>
-  <circle cx="108" cy="46" r="1" fill="rgba(29,12,3,0.266667)"/>
-  <circle cx="109" cy="46" r="1" fill="rgba(4,0,0,0.454902)"/>
-  <circle cx="110" cy="46" r="1" fill="rgba(0,0,0,0.462745)"/>
-  <circle cx="111" cy="46" r="1" fill="rgba(15,4,0,0.372549)"/>
-  <circle cx="112" cy="46" r="1" fill="rgba(22,7,1,0.223529)"/>
-  <circle cx="113" cy="46" r="1" fill="rgba(28,9,3,0.0666667)"/>
-  <circle cx="114" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="46" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="47" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="47" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="19" cy="47" r="1" fill="rgba(47,23,9,0.00784314)"/>
-  <circle cx="20" cy="47" r="1" fill="rgba(46,22,9,0.0392157)"/>
-  <circle cx="21" cy="47" r="1" fill="rgba(46,22,9,0.0352941)"/>
-  <circle cx="22" cy="47" r="1" fill="rgba(24,10,2,0.0352941)"/>
-  <circle cx="23" cy="47" r="1" fill="rgba(45,22,8,0.117647)"/>
-  <circle cx="24" cy="47" r="1" fill="rgba(37,17,6,0.25098)"/>
-  <circle cx="25" cy="47" r="1" fill="rgba(19,6,1,0.376471)"/>
-  <circle cx="26" cy="47" r="1" fill="rgba(4,0,0,0.470588)"/>
-  <circle cx="27" cy="47" r="1" fill="rgba(0,0,0,0.478431)"/>
-  <circle cx="28" cy="47" r="1" fill="rgba(0,0,0,0.462745)"/>
-  <circle cx="29" cy="47" r="1" fill="rgba(31,6,0,0.435294)"/>
-  <circle cx="30" cy="47" r="1" fill="rgba(236,106,24,0.878431)"/>
-  <circle cx="31" cy="47" r="1" fill="rgba(255,142,52,1)"/>
-  <circle cx="32" cy="47" r="1" fill="rgba(255,156,74,1)"/>
-  <circle cx="33" cy="47" r="1" fill="rgba(255,166,87,1)"/>
-  <circle cx="34" cy="47" r="1" fill="rgba(255,169,89,1)"/>
-  <circle cx="35" cy="47" r="1" fill="rgba(255,168,86,1)"/>
-  <circle cx="36" cy="47" r="1" fill="rgba(255,169,88,1)"/>
-  <circle cx="37" cy="47" r="1" fill="rgba(254,170,92,1)"/>
-  <circle cx="38" cy="47" r="1" fill="rgba(252,168,90,1)"/>
-  <circle cx="39" cy="47" r="1" fill="rgba(252,164,83,1)"/>
-  <circle cx="40" cy="47" r="1" fill="rgba(251,159,74,1)"/>
-  <circle cx="41" cy="47" r="1" fill="rgba(251,153,66,1)"/>
-  <circle cx="42" cy="47" r="1" fill="rgba(251,148,57,1)"/>
-  <circle cx="43" cy="47" r="1" fill="rgba(251,144,50,1)"/>
-  <circle cx="44" cy="47" r="1" fill="rgba(251,139,43,1)"/>
-  <circle cx="45" cy="47" r="1" fill="rgba(251,136,38,1)"/>
-  <circle cx="46" cy="47" r="1" fill="rgba(251,132,34,1)"/>
-  <circle cx="47" cy="47" r="1" fill="rgba(252,130,30,1)"/>
-  <circle cx="48" cy="47" r="1" fill="rgba(252,128,24,1)"/>
-  <circle cx="49" cy="47" r="1" fill="rgba(253,126,17,1)"/>
-  <circle cx="50" cy="47" r="1" fill="rgba(254,123,5,1)"/>
-  <circle cx="51" cy="47" r="1" fill="rgba(254,120,0,1)"/>
-  <circle cx="52" cy="47" r="1" fill="rgba(252,118,0,1)"/>
-  <circle cx="53" cy="47" r="1" fill="rgba(252,115,0,1)"/>
-  <circle cx="54" cy="47" r="1" fill="rgba(250,110,0,1)"/>
-  <circle cx="55" cy="47" r="1" fill="rgba(249,105,0,1)"/>
-  <circle cx="56" cy="47" r="1" fill="rgba(247,97,0,1)"/>
-  <circle cx="57" cy="47" r="1" fill="rgba(244,89,0,1)"/>
-  <circle cx="58" cy="47" r="1" fill="rgba(244,81,0,1)"/>
-  <circle cx="59" cy="47" r="1" fill="rgba(246,75,0,1)"/>
-  <circle cx="60" cy="47" r="1" fill="rgba(247,69,0,1)"/>
-  <circle cx="61" cy="47" r="1" fill="rgba(225,54,0,1)"/>
-  <circle cx="62" cy="47" r="1" fill="rgba(152,27,0,1)"/>
-  <circle cx="63" cy="47" r="1" fill="rgba(39,1,0,1)"/>
-  <circle cx="64" cy="47" r="1" fill="black"/>
-  <circle cx="65" cy="47" r="1" fill="black"/>
-  <circle cx="66" cy="47" r="1" fill="black"/>
-  <circle cx="67" cy="47" r="1" fill="black"/>
-  <circle cx="68" cy="47" r="1" fill="rgba(81,6,0,1)"/>
-  <circle cx="69" cy="47" r="1" fill="rgba(173,47,14,1)"/>
-  <circle cx="70" cy="47" r="1" fill="rgba(224,86,38,1)"/>
-  <circle cx="71" cy="47" r="1" fill="rgba(236,100,48,1)"/>
-  <circle cx="72" cy="47" r="1" fill="rgba(225,67,21,1)"/>
-  <circle cx="73" cy="47" r="1" fill="rgba(215,35,2,1)"/>
-  <circle cx="74" cy="47" r="1" fill="rgba(212,27,0,1)"/>
-  <circle cx="75" cy="47" r="1" fill="rgba(214,35,3,1)"/>
-  <circle cx="76" cy="47" r="1" fill="rgba(214,39,5,1)"/>
-  <circle cx="77" cy="47" r="1" fill="rgba(214,42,8,1)"/>
-  <circle cx="78" cy="47" r="1" fill="rgba(213,42,9,1)"/>
-  <circle cx="79" cy="47" r="1" fill="rgba(213,43,11,1)"/>
-  <circle cx="80" cy="47" r="1" fill="rgba(213,46,13,1)"/>
-  <circle cx="81" cy="47" r="1" fill="rgba(212,48,15,1)"/>
-  <circle cx="82" cy="47" r="1" fill="rgba(212,49,17,1)"/>
-  <circle cx="83" cy="47" r="1" fill="rgba(211,53,19,1)"/>
-  <circle cx="84" cy="47" r="1" fill="rgba(217,59,22,1)"/>
-  <circle cx="85" cy="47" r="1" fill="rgba(190,49,18,1)"/>
-  <circle cx="86" cy="47" r="1" fill="rgba(61,10,1,1)"/>
-  <circle cx="87" cy="47" r="1" fill="black"/>
-  <circle cx="88" cy="47" r="1" fill="black"/>
-  <circle cx="89" cy="47" r="1" fill="rgba(26,3,0,1)"/>
-  <circle cx="90" cy="47" r="1" fill="rgba(150,46,16,1)"/>
-  <circle cx="91" cy="47" r="1" fill="rgba(226,84,37,1)"/>
-  <circle cx="92" cy="47" r="1" fill="rgba(221,87,40,1)"/>
-  <circle cx="93" cy="47" r="1" fill="rgba(222,93,44,1)"/>
-  <circle cx="94" cy="47" r="1" fill="rgba(224,98,48,1)"/>
-  <circle cx="95" cy="47" r="1" fill="rgba(225,101,49,1)"/>
-  <circle cx="96" cy="47" r="1" fill="rgba(224,102,49,1)"/>
-  <circle cx="97" cy="47" r="1" fill="rgba(224,98,47,1)"/>
-  <circle cx="98" cy="47" r="1" fill="rgba(223,94,42,1)"/>
-  <circle cx="99" cy="47" r="1" fill="rgba(230,95,41,0.960784)"/>
-  <circle cx="100" cy="47" r="1" fill="rgba(128,46,15,0.188235)"/>
-  <circle cx="101" cy="47" r="1" fill="rgba(19,10,3,0.027451)"/>
-  <circle cx="102" cy="47" r="1" fill="rgba(45,17,6,0.0901961)"/>
-  <circle cx="103" cy="47" r="1" fill="rgba(34,14,4,0.145098)"/>
-  <circle cx="104" cy="47" r="1" fill="rgba(26,10,3,0.278431)"/>
-  <circle cx="105" cy="47" r="1" fill="rgba(15,4,0,0.384314)"/>
-  <circle cx="106" cy="47" r="1" fill="rgba(21,7,1,0.317647)"/>
-  <circle cx="107" cy="47" r="1" fill="rgba(21,7,1,0.337255)"/>
-  <circle cx="108" cy="47" r="1" fill="rgba(7,1,0,0.45098)"/>
-  <circle cx="109" cy="47" r="1" fill="rgba(0,0,0,0.47451)"/>
-  <circle cx="110" cy="47" r="1" fill="rgba(12,4,0,0.392157)"/>
-  <circle cx="111" cy="47" r="1" fill="rgba(31,12,3,0.160784)"/>
-  <circle cx="112" cy="47" r="1" fill="rgba(29,12,3,0.0196078)"/>
-  <circle cx="113" cy="47" r="1" fill="rgba(28,10,3,0)"/>
-  <circle cx="114" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="47" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="48" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="48" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="19" cy="48" r="1" fill="rgba(46,23,9,0)"/>
-  <circle cx="20" cy="48" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="21" cy="48" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="22" cy="48" r="1" fill="rgba(24,10,2,0)"/>
-  <circle cx="23" cy="48" r="1" fill="rgba(50,26,10,0)"/>
-  <circle cx="24" cy="48" r="1" fill="rgba(49,25,10,0.00784314)"/>
-  <circle cx="25" cy="48" r="1" fill="rgba(43,21,8,0.0705882)"/>
-  <circle cx="26" cy="48" r="1" fill="rgba(36,16,5,0.266667)"/>
-  <circle cx="27" cy="48" r="1" fill="rgba(7,2,0,0.447059)"/>
-  <circle cx="28" cy="48" r="1" fill="rgba(0,0,0,0.45098)"/>
-  <circle cx="29" cy="48" r="1" fill="rgba(112,31,2,0.607843)"/>
-  <circle cx="30" cy="48" r="1" fill="rgba(255,112,19,1)"/>
-  <circle cx="31" cy="48" r="1" fill="rgba(255,129,33,1)"/>
-  <circle cx="32" cy="48" r="1" fill="rgba(255,145,50,1)"/>
-  <circle cx="33" cy="48" r="1" fill="rgba(255,154,62,1)"/>
-  <circle cx="34" cy="48" r="1" fill="rgba(255,159,68,1)"/>
-  <circle cx="35" cy="48" r="1" fill="rgba(255,162,74,1)"/>
-  <circle cx="36" cy="48" r="1" fill="rgba(254,165,80,1)"/>
-  <circle cx="37" cy="48" r="1" fill="rgba(253,165,84,1)"/>
-  <circle cx="38" cy="48" r="1" fill="rgba(252,164,82,1)"/>
-  <circle cx="39" cy="48" r="1" fill="rgba(252,161,77,1)"/>
-  <circle cx="40" cy="48" r="1" fill="rgba(251,157,70,1)"/>
-  <circle cx="41" cy="48" r="1" fill="rgba(251,151,62,1)"/>
-  <circle cx="42" cy="48" r="1" fill="rgba(251,146,55,1)"/>
-  <circle cx="43" cy="48" r="1" fill="rgba(251,141,47,1)"/>
-  <circle cx="44" cy="48" r="1" fill="rgba(253,138,41,1)"/>
-  <circle cx="45" cy="48" r="1" fill="rgba(255,136,35,1)"/>
-  <circle cx="46" cy="48" r="1" fill="rgba(255,134,30,1)"/>
-  <circle cx="47" cy="48" r="1" fill="rgba(255,130,24,1)"/>
-  <circle cx="48" cy="48" r="1" fill="rgba(255,124,19,1)"/>
-  <circle cx="49" cy="48" r="1" fill="rgba(253,119,13,1)"/>
-  <circle cx="50" cy="48" r="1" fill="rgba(254,116,3,1)"/>
-  <circle cx="51" cy="48" r="1" fill="rgba(254,115,0,1)"/>
-  <circle cx="52" cy="48" r="1" fill="rgba(252,114,0,1)"/>
-  <circle cx="53" cy="48" r="1" fill="rgba(252,112,0,1)"/>
-  <circle cx="54" cy="48" r="1" fill="rgba(250,110,0,1)"/>
-  <circle cx="55" cy="48" r="1" fill="rgba(249,106,0,1)"/>
-  <circle cx="56" cy="48" r="1" fill="rgba(247,100,0,1)"/>
-  <circle cx="57" cy="48" r="1" fill="rgba(245,92,0,1)"/>
-  <circle cx="58" cy="48" r="1" fill="rgba(243,85,0,1)"/>
-  <circle cx="59" cy="48" r="1" fill="rgba(241,76,0,1)"/>
-  <circle cx="60" cy="48" r="1" fill="rgba(238,69,0,1)"/>
-  <circle cx="61" cy="48" r="1" fill="rgba(239,63,0,1)"/>
-  <circle cx="62" cy="48" r="1" fill="rgba(244,58,0,1)"/>
-  <circle cx="63" cy="48" r="1" fill="rgba(211,42,0,1)"/>
-  <circle cx="64" cy="48" r="1" fill="rgba(84,11,0,1)"/>
-  <circle cx="65" cy="48" r="1" fill="black"/>
-  <circle cx="66" cy="48" r="1" fill="black"/>
-  <circle cx="67" cy="48" r="1" fill="rgba(137,16,0,1)"/>
-  <circle cx="68" cy="48" r="1" fill="rgba(221,32,0,1)"/>
-  <circle cx="69" cy="48" r="1" fill="rgba(227,43,4,1)"/>
-  <circle cx="70" cy="48" r="1" fill="rgba(220,42,4,1)"/>
-  <circle cx="71" cy="48" r="1" fill="rgba(215,28,0,1)"/>
-  <circle cx="72" cy="48" r="1" fill="rgba(216,33,0,1)"/>
-  <circle cx="73" cy="48" r="1" fill="rgba(216,37,2,1)"/>
-  <circle cx="74" cy="48" r="1" fill="rgba(216,40,4,1)"/>
-  <circle cx="75" cy="48" r="1" fill="rgba(215,42,5,1)"/>
-  <circle cx="76" cy="48" r="1" fill="rgba(214,43,6,1)"/>
-  <circle cx="77" cy="48" r="1" fill="rgba(214,44,8,1)"/>
-  <circle cx="78" cy="48" r="1" fill="rgba(214,45,10,1)"/>
-  <circle cx="79" cy="48" r="1" fill="rgba(214,44,11,1)"/>
-  <circle cx="80" cy="48" r="1" fill="rgba(213,47,13,1)"/>
-  <circle cx="81" cy="48" r="1" fill="rgba(212,47,15,1)"/>
-  <circle cx="82" cy="48" r="1" fill="rgba(212,48,16,1)"/>
-  <circle cx="83" cy="48" r="1" fill="rgba(213,51,18,1)"/>
-  <circle cx="84" cy="48" r="1" fill="rgba(212,53,19,1)"/>
-  <circle cx="85" cy="48" r="1" fill="rgba(77,13,3,1)"/>
-  <circle cx="86" cy="48" r="1" fill="black"/>
-  <circle cx="87" cy="48" r="1" fill="black"/>
-  <circle cx="88" cy="48" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="89" cy="48" r="1" fill="black"/>
-  <circle cx="90" cy="48" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="91" cy="48" r="1" fill="rgba(167,53,19,1)"/>
-  <circle cx="92" cy="48" r="1" fill="rgba(227,86,38,1)"/>
-  <circle cx="93" cy="48" r="1" fill="rgba(221,89,41,1)"/>
-  <circle cx="94" cy="48" r="1" fill="rgba(224,95,45,1)"/>
-  <circle cx="95" cy="48" r="1" fill="rgba(224,101,48,1)"/>
-  <circle cx="96" cy="48" r="1" fill="rgba(225,102,49,1)"/>
-  <circle cx="97" cy="48" r="1" fill="rgba(225,101,48,1)"/>
-  <circle cx="98" cy="48" r="1" fill="rgba(224,97,45,1)"/>
-  <circle cx="99" cy="48" r="1" fill="rgba(232,98,43,1)"/>
-  <circle cx="100" cy="48" r="1" fill="rgba(148,54,18,0.635294)"/>
-  <circle cx="101" cy="48" r="1" fill="rgba(0,3,1,0.266667)"/>
-  <circle cx="102" cy="48" r="1" fill="rgba(19,7,1,0.352941)"/>
-  <circle cx="103" cy="48" r="1" fill="rgba(15,4,0,0.411765)"/>
-  <circle cx="104" cy="48" r="1" fill="rgba(4,0,0,0.454902)"/>
-  <circle cx="105" cy="48" r="1" fill="rgba(0,0,0,0.470588)"/>
-  <circle cx="106" cy="48" r="1" fill="rgba(0,0,0,0.462745)"/>
-  <circle cx="107" cy="48" r="1" fill="rgba(4,0,0,0.466667)"/>
-  <circle cx="108" cy="48" r="1" fill="rgba(0,0,0,0.466667)"/>
-  <circle cx="109" cy="48" r="1" fill="rgba(10,1,0,0.439216)"/>
-  <circle cx="110" cy="48" r="1" fill="rgba(28,11,3,0.215686)"/>
-  <circle cx="111" cy="48" r="1" fill="rgba(34,15,5,0.0117647)"/>
-  <circle cx="112" cy="48" r="1" fill="rgba(29,12,3,0)"/>
-  <circle cx="113" cy="48" r="1" fill="rgba(28,10,3,0)"/>
-  <circle cx="114" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="48" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="49" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="49" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="19" cy="49" r="1" fill="rgba(46,23,9,0)"/>
-  <circle cx="20" cy="49" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="21" cy="49" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="22" cy="49" r="1" fill="rgba(24,10,2,0)"/>
-  <circle cx="23" cy="49" r="1" fill="rgba(49,25,10,0)"/>
-  <circle cx="24" cy="49" r="1" fill="rgba(47,24,9,0)"/>
-  <circle cx="25" cy="49" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="26" cy="49" r="1" fill="rgba(54,28,11,0.0196078)"/>
-  <circle cx="27" cy="49" r="1" fill="rgba(34,16,5,0.184314)"/>
-  <circle cx="28" cy="49" r="1" fill="rgba(0,0,0,0.337255)"/>
-  <circle cx="29" cy="49" r="1" fill="rgba(188,63,6,0.768627)"/>
-  <circle cx="30" cy="49" r="1" fill="rgba(255,114,18,1)"/>
-  <circle cx="31" cy="49" r="1" fill="rgba(254,124,26,1)"/>
-  <circle cx="32" cy="49" r="1" fill="rgba(255,138,37,1)"/>
-  <circle cx="33" cy="49" r="1" fill="rgba(255,147,49,1)"/>
-  <circle cx="34" cy="49" r="1" fill="rgba(254,154,58,1)"/>
-  <circle cx="35" cy="49" r="1" fill="rgba(253,158,67,1)"/>
-  <circle cx="36" cy="49" r="1" fill="rgba(253,160,72,1)"/>
-  <circle cx="37" cy="49" r="1" fill="rgba(252,160,74,1)"/>
-  <circle cx="38" cy="49" r="1" fill="rgba(252,160,74,1)"/>
-  <circle cx="39" cy="49" r="1" fill="rgba(252,157,70,1)"/>
-  <circle cx="40" cy="49" r="1" fill="rgba(251,153,64,1)"/>
-  <circle cx="41" cy="49" r="1" fill="rgba(251,148,57,1)"/>
-  <circle cx="42" cy="49" r="1" fill="rgba(251,143,50,1)"/>
-  <circle cx="43" cy="49" r="1" fill="rgba(255,140,43,1)"/>
-  <circle cx="44" cy="49" r="1" fill="rgba(243,128,37,1)"/>
-  <circle cx="45" cy="49" r="1" fill="rgba(200,98,30,1)"/>
-  <circle cx="46" cy="49" r="1" fill="rgba(179,82,22,1)"/>
-  <circle cx="47" cy="49" r="1" fill="rgba(193,86,18,1)"/>
-  <circle cx="48" cy="49" r="1" fill="rgba(238,107,14,1)"/>
-  <circle cx="49" cy="49" r="1" fill="rgba(255,116,8,1)"/>
-  <circle cx="50" cy="49" r="1" fill="rgba(255,109,1,1)"/>
-  <circle cx="51" cy="49" r="1" fill="rgba(253,108,0,1)"/>
-  <circle cx="52" cy="49" r="1" fill="rgba(252,108,0,1)"/>
-  <circle cx="53" cy="49" r="1" fill="rgba(251,107,0,1)"/>
-  <circle cx="54" cy="49" r="1" fill="rgba(250,107,0,1)"/>
-  <circle cx="55" cy="49" r="1" fill="rgba(249,105,0,1)"/>
-  <circle cx="56" cy="49" r="1" fill="rgba(247,101,0,1)"/>
-  <circle cx="57" cy="49" r="1" fill="rgba(245,94,0,1)"/>
-  <circle cx="58" cy="49" r="1" fill="rgba(244,87,0,1)"/>
-  <circle cx="59" cy="49" r="1" fill="rgba(241,79,0,1)"/>
-  <circle cx="60" cy="49" r="1" fill="rgba(239,71,0,1)"/>
-  <circle cx="61" cy="49" r="1" fill="rgba(236,63,0,1)"/>
-  <circle cx="62" cy="49" r="1" fill="rgba(233,55,0,1)"/>
-  <circle cx="63" cy="49" r="1" fill="rgba(239,51,0,1)"/>
-  <circle cx="64" cy="49" r="1" fill="rgba(213,33,0,1)"/>
-  <circle cx="65" cy="49" r="1" fill="rgba(86,4,0,1)"/>
-  <circle cx="66" cy="49" r="1" fill="rgba(104,12,0,1)"/>
-  <circle cx="67" cy="49" r="1" fill="rgba(227,33,0,1)"/>
-  <circle cx="68" cy="49" r="1" fill="rgba(221,32,0,1)"/>
-  <circle cx="69" cy="49" r="1" fill="rgba(217,32,0,1)"/>
-  <circle cx="70" cy="49" r="1" fill="rgba(217,34,0,1)"/>
-  <circle cx="71" cy="49" r="1" fill="rgba(217,37,1,1)"/>
-  <circle cx="72" cy="49" r="1" fill="rgba(217,39,2,1)"/>
-  <circle cx="73" cy="49" r="1" fill="rgba(217,41,3,1)"/>
-  <circle cx="74" cy="49" r="1" fill="rgba(217,43,4,1)"/>
-  <circle cx="75" cy="49" r="1" fill="rgba(217,45,6,1)"/>
-  <circle cx="76" cy="49" r="1" fill="rgba(216,45,7,1)"/>
-  <circle cx="77" cy="49" r="1" fill="rgba(215,45,8,1)"/>
-  <circle cx="78" cy="49" r="1" fill="rgba(214,46,10,1)"/>
-  <circle cx="79" cy="49" r="1" fill="rgba(214,45,11,1)"/>
-  <circle cx="80" cy="49" r="1" fill="rgba(212,46,13,1)"/>
-  <circle cx="81" cy="49" r="1" fill="rgba(211,45,14,1)"/>
-  <circle cx="82" cy="49" r="1" fill="rgba(210,45,16,1)"/>
-  <circle cx="83" cy="49" r="1" fill="rgba(217,49,17,1)"/>
-  <circle cx="84" cy="49" r="1" fill="rgba(168,35,10,1)"/>
-  <circle cx="85" cy="49" r="1" fill="black"/>
-  <circle cx="86" cy="49" r="1" fill="black"/>
-  <circle cx="87" cy="49" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="88" cy="49" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="89" cy="49" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="90" cy="49" r="1" fill="black"/>
-  <circle cx="91" cy="49" r="1" fill="rgba(45,7,1,1)"/>
-  <circle cx="92" cy="49" r="1" fill="rgba(205,71,29,1)"/>
-  <circle cx="93" cy="49" r="1" fill="rgba(223,86,38,1)"/>
-  <circle cx="94" cy="49" r="1" fill="rgba(222,92,42,1)"/>
-  <circle cx="95" cy="49" r="1" fill="rgba(224,98,46,1)"/>
-  <circle cx="96" cy="49" r="1" fill="rgba(225,102,49,1)"/>
-  <circle cx="97" cy="49" r="1" fill="rgba(225,102,48,1)"/>
-  <circle cx="98" cy="49" r="1" fill="rgba(224,100,46,1)"/>
-  <circle cx="99" cy="49" r="1" fill="rgba(228,98,43,1)"/>
-  <circle cx="100" cy="49" r="1" fill="rgba(200,80,30,0.901961)"/>
-  <circle cx="101" cy="49" r="1" fill="rgba(17,2,0,0.47451)"/>
-  <circle cx="102" cy="49" r="1" fill="rgba(0,0,0,0.470588)"/>
-  <circle cx="103" cy="49" r="1" fill="rgba(0,0,0,0.478431)"/>
-  <circle cx="104" cy="49" r="1" fill="rgba(0,0,0,0.470588)"/>
-  <circle cx="105" cy="49" r="1" fill="rgba(0,0,0,0.466667)"/>
-  <circle cx="106" cy="49" r="1" fill="rgba(0,0,0,0.466667)"/>
-  <circle cx="107" cy="49" r="1" fill="rgba(0,0,0,0.462745)"/>
-  <circle cx="108" cy="49" r="1" fill="rgba(0,0,0,0.470588)"/>
-  <circle cx="109" cy="49" r="1" fill="rgba(21,7,1,0.337255)"/>
-  <circle cx="110" cy="49" r="1" fill="rgba(36,15,5,0.054902)"/>
-  <circle cx="111" cy="49" r="1" fill="rgba(34,15,5,0)"/>
-  <circle cx="112" cy="49" r="1" fill="rgba(29,12,3,0)"/>
-  <circle cx="113" cy="49" r="1" fill="rgba(28,10,3,0)"/>
-  <circle cx="114" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="49" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="50" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="50" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="19" cy="50" r="1" fill="rgba(46,23,9,0)"/>
-  <circle cx="20" cy="50" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="21" cy="50" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="22" cy="50" r="1" fill="rgba(24,10,2,0)"/>
-  <circle cx="23" cy="50" r="1" fill="rgba(49,25,10,0)"/>
-  <circle cx="24" cy="50" r="1" fill="rgba(45,23,9,0)"/>
-  <circle cx="25" cy="50" r="1" fill="rgba(40,21,9,0)"/>
-  <circle cx="26" cy="50" r="1" fill="rgba(50,27,12,0)"/>
-  <circle cx="27" cy="50" r="1" fill="rgba(21,18,9,0)"/>
-  <circle cx="28" cy="50" r="1" fill="rgba(102,29,3,0.113725)"/>
-  <circle cx="29" cy="50" r="1" fill="rgba(246,91,9,0.901961)"/>
-  <circle cx="30" cy="50" r="1" fill="rgba(254,110,16,1)"/>
-  <circle cx="31" cy="50" r="1" fill="rgba(253,124,26,1)"/>
-  <circle cx="32" cy="50" r="1" fill="rgba(254,136,36,1)"/>
-  <circle cx="33" cy="50" r="1" fill="rgba(254,145,45,1)"/>
-  <circle cx="34" cy="50" r="1" fill="rgba(253,150,53,1)"/>
-  <circle cx="35" cy="50" r="1" fill="rgba(253,153,59,1)"/>
-  <circle cx="36" cy="50" r="1" fill="rgba(252,155,63,1)"/>
-  <circle cx="37" cy="50" r="1" fill="rgba(252,155,65,1)"/>
-  <circle cx="38" cy="50" r="1" fill="rgba(252,154,65,1)"/>
-  <circle cx="39" cy="50" r="1" fill="rgba(252,151,61,1)"/>
-  <circle cx="40" cy="50" r="1" fill="rgba(251,149,56,1)"/>
-  <circle cx="41" cy="50" r="1" fill="rgba(251,145,51,1)"/>
-  <circle cx="42" cy="50" r="1" fill="rgba(253,142,45,1)"/>
-  <circle cx="43" cy="50" r="1" fill="rgba(238,127,38,1)"/>
-  <circle cx="44" cy="50" r="1" fill="rgba(147,72,32,1)"/>
-  <circle cx="45" cy="50" r="1" fill="rgba(99,46,24,1)"/>
-  <circle cx="46" cy="50" r="1" fill="rgba(77,34,17,1)"/>
-  <circle cx="47" cy="50" r="1" fill="rgba(63,25,11,1)"/>
-  <circle cx="48" cy="50" r="1" fill="rgba(77,26,6,1)"/>
-  <circle cx="49" cy="50" r="1" fill="rgba(183,68,3,1)"/>
-  <circle cx="50" cy="50" r="1" fill="rgba(255,104,0,1)"/>
-  <circle cx="51" cy="50" r="1" fill="rgba(253,102,0,1)"/>
-  <circle cx="52" cy="50" r="1" fill="rgba(252,102,0,1)"/>
-  <circle cx="53" cy="50" r="1" fill="rgba(251,102,0,1)"/>
-  <circle cx="54" cy="50" r="1" fill="rgba(249,102,0,1)"/>
-  <circle cx="55" cy="50" r="1" fill="rgba(248,102,0,1)"/>
-  <circle cx="56" cy="50" r="1" fill="rgba(247,99,0,1)"/>
-  <circle cx="57" cy="50" r="1" fill="rgba(245,95,0,1)"/>
-  <circle cx="58" cy="50" r="1" fill="rgba(244,88,0,1)"/>
-  <circle cx="59" cy="50" r="1" fill="rgba(241,81,0,1)"/>
-  <circle cx="60" cy="50" r="1" fill="rgba(239,72,0,1)"/>
-  <circle cx="61" cy="50" r="1" fill="rgba(237,63,0,1)"/>
-  <circle cx="62" cy="50" r="1" fill="rgba(234,56,0,1)"/>
-  <circle cx="63" cy="50" r="1" fill="rgba(231,49,0,1)"/>
-  <circle cx="64" cy="50" r="1" fill="rgba(230,36,0,1)"/>
-  <circle cx="65" cy="50" r="1" fill="rgba(177,14,0,1)"/>
-  <circle cx="66" cy="50" r="1" fill="rgba(160,20,0,1)"/>
-  <circle cx="67" cy="50" r="1" fill="rgba(227,33,0,1)"/>
-  <circle cx="68" cy="50" r="1" fill="rgba(217,32,0,1)"/>
-  <circle cx="69" cy="50" r="1" fill="rgba(218,34,0,1)"/>
-  <circle cx="70" cy="50" r="1" fill="rgba(218,36,1,1)"/>
-  <circle cx="71" cy="50" r="1" fill="rgba(218,39,1,1)"/>
-  <circle cx="72" cy="50" r="1" fill="rgba(218,41,3,1)"/>
-  <circle cx="73" cy="50" r="1" fill="rgba(218,44,3,1)"/>
-  <circle cx="74" cy="50" r="1" fill="rgba(218,45,5,1)"/>
-  <circle cx="75" cy="50" r="1" fill="rgba(217,46,6,1)"/>
-  <circle cx="76" cy="50" r="1" fill="rgba(216,45,7,1)"/>
-  <circle cx="77" cy="50" r="1" fill="rgba(215,45,8,1)"/>
-  <circle cx="78" cy="50" r="1" fill="rgba(214,45,9,1)"/>
-  <circle cx="79" cy="50" r="1" fill="rgba(212,44,10,1)"/>
-  <circle cx="80" cy="50" r="1" fill="rgba(211,43,11,1)"/>
-  <circle cx="81" cy="50" r="1" fill="rgba(209,42,12,1)"/>
-  <circle cx="82" cy="50" r="1" fill="rgba(209,41,13,1)"/>
-  <circle cx="83" cy="50" r="1" fill="rgba(217,45,15,1)"/>
-  <circle cx="84" cy="50" r="1" fill="rgba(126,21,5,1)"/>
-  <circle cx="85" cy="50" r="1" fill="black"/>
-  <circle cx="86" cy="50" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="87" cy="50" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="88" cy="50" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="89" cy="50" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="90" cy="50" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="91" cy="50" r="1" fill="black"/>
-  <circle cx="92" cy="50" r="1" fill="rgba(136,38,12,1)"/>
-  <circle cx="93" cy="50" r="1" fill="rgba(227,84,36,1)"/>
-  <circle cx="94" cy="50" r="1" fill="rgba(221,87,39,1)"/>
-  <circle cx="95" cy="50" r="1" fill="rgba(223,93,43,1)"/>
-  <circle cx="96" cy="50" r="1" fill="rgba(224,98,46,1)"/>
-  <circle cx="97" cy="50" r="1" fill="rgba(225,101,48,1)"/>
-  <circle cx="98" cy="50" r="1" fill="rgba(224,100,46,1)"/>
-  <circle cx="99" cy="50" r="1" fill="rgba(225,97,42,1)"/>
-  <circle cx="100" cy="50" r="1" fill="rgba(227,96,41,0.996078)"/>
-  <circle cx="101" cy="50" r="1" fill="rgba(90,26,6,0.54902)"/>
-  <circle cx="102" cy="50" r="1" fill="rgba(0,0,0,0.384314)"/>
-  <circle cx="103" cy="50" r="1" fill="rgba(12,2,0,0.4)"/>
-  <circle cx="104" cy="50" r="1" fill="rgba(7,1,0,0.396078)"/>
-  <circle cx="105" cy="50" r="1" fill="rgba(10,2,0,0.423529)"/>
-  <circle cx="106" cy="50" r="1" fill="rgba(10,1,0,0.447059)"/>
-  <circle cx="107" cy="50" r="1" fill="rgba(0,0,0,0.454902)"/>
-  <circle cx="108" cy="50" r="1" fill="rgba(12,3,0,0.415686)"/>
-  <circle cx="109" cy="50" r="1" fill="rgba(34,15,5,0.172549)"/>
-  <circle cx="110" cy="50" r="1" fill="rgba(40,20,7,0)"/>
-  <circle cx="111" cy="50" r="1" fill="rgba(40,19,7,0)"/>
-  <circle cx="112" cy="50" r="1" fill="rgba(40,19,7,0)"/>
-  <circle cx="113" cy="50" r="1" fill="rgba(39,18,6,0)"/>
-  <circle cx="114" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="50" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="51" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="51" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="19" cy="51" r="1" fill="rgba(46,23,9,0)"/>
-  <circle cx="20" cy="51" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="21" cy="51" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="22" cy="51" r="1" fill="rgba(24,10,2,0)"/>
-  <circle cx="23" cy="51" r="1" fill="rgba(33,22,10,0)"/>
-  <circle cx="24" cy="51" r="1" fill="rgba(46,24,9,0)"/>
-  <circle cx="25" cy="51" r="1" fill="rgba(65,26,8,0)"/>
-  <circle cx="26" cy="51" r="1" fill="rgba(58,29,11,0)"/>
-  <circle cx="27" cy="51" r="1" fill="rgba(122,41,8,0)"/>
-  <circle cx="28" cy="51" r="1" fill="rgba(246,83,5,0.27451)"/>
-  <circle cx="29" cy="51" r="1" fill="rgba(255,94,9,1)"/>
-  <circle cx="30" cy="51" r="1" fill="rgba(252,108,15,1)"/>
-  <circle cx="31" cy="51" r="1" fill="rgba(253,122,23,1)"/>
-  <circle cx="32" cy="51" r="1" fill="rgba(252,133,33,1)"/>
-  <circle cx="33" cy="51" r="1" fill="rgba(252,141,40,1)"/>
-  <circle cx="34" cy="51" r="1" fill="rgba(252,146,47,1)"/>
-  <circle cx="35" cy="51" r="1" fill="rgba(252,148,51,1)"/>
-  <circle cx="36" cy="51" r="1" fill="rgba(252,150,55,1)"/>
-  <circle cx="37" cy="51" r="1" fill="rgba(252,150,56,1)"/>
-  <circle cx="38" cy="51" r="1" fill="rgba(252,149,56,1)"/>
-  <circle cx="39" cy="51" r="1" fill="rgba(252,147,53,1)"/>
-  <circle cx="40" cy="51" r="1" fill="rgba(251,144,49,1)"/>
-  <circle cx="41" cy="51" r="1" fill="rgba(251,140,45,1)"/>
-  <circle cx="42" cy="51" r="1" fill="rgba(254,138,39,1)"/>
-  <circle cx="43" cy="51" r="1" fill="rgba(181,90,33,1)"/>
-  <circle cx="44" cy="51" r="1" fill="rgba(104,49,27,1)"/>
-  <circle cx="45" cy="51" r="1" fill="rgba(100,45,21,1)"/>
-  <circle cx="46" cy="51" r="1" fill="rgba(84,35,15,1)"/>
-  <circle cx="47" cy="51" r="1" fill="rgba(65,25,9,1)"/>
-  <circle cx="48" cy="51" r="1" fill="rgba(33,11,4,1)"/>
-  <circle cx="49" cy="51" r="1" fill="rgba(7,1,0,1)"/>
-  <circle cx="50" cy="51" r="1" fill="rgba(195,66,0,1)"/>
-  <circle cx="51" cy="51" r="1" fill="rgba(255,99,0,1)"/>
-  <circle cx="52" cy="51" r="1" fill="rgba(252,95,0,1)"/>
-  <circle cx="53" cy="51" r="1" fill="rgba(250,96,0,1)"/>
-  <circle cx="54" cy="51" r="1" fill="rgba(249,97,0,1)"/>
-  <circle cx="55" cy="51" r="1" fill="rgba(248,96,0,1)"/>
-  <circle cx="56" cy="51" r="1" fill="rgba(247,95,0,1)"/>
-  <circle cx="57" cy="51" r="1" fill="rgba(244,93,0,1)"/>
-  <circle cx="58" cy="51" r="1" fill="rgba(244,87,0,1)"/>
-  <circle cx="59" cy="51" r="1" fill="rgba(241,81,0,1)"/>
-  <circle cx="60" cy="51" r="1" fill="rgba(239,72,0,1)"/>
-  <circle cx="61" cy="51" r="1" fill="rgba(236,63,0,1)"/>
-  <circle cx="62" cy="51" r="1" fill="rgba(234,56,0,1)"/>
-  <circle cx="63" cy="51" r="1" fill="rgba(231,49,0,1)"/>
-  <circle cx="64" cy="51" r="1" fill="rgba(227,37,0,1)"/>
-  <circle cx="65" cy="51" r="1" fill="rgba(176,14,0,1)"/>
-  <circle cx="66" cy="51" r="1" fill="rgba(159,21,0,1)"/>
-  <circle cx="67" cy="51" r="1" fill="rgba(226,34,0,1)"/>
-  <circle cx="68" cy="51" r="1" fill="rgba(217,31,0,1)"/>
-  <circle cx="69" cy="51" r="1" fill="rgba(217,34,0,1)"/>
-  <circle cx="70" cy="51" r="1" fill="rgba(218,37,1,1)"/>
-  <circle cx="71" cy="51" r="1" fill="rgba(219,41,2,1)"/>
-  <circle cx="72" cy="51" r="1" fill="rgba(220,44,3,1)"/>
-  <circle cx="73" cy="51" r="1" fill="rgba(219,45,4,1)"/>
-  <circle cx="74" cy="51" r="1" fill="rgba(219,46,5,1)"/>
-  <circle cx="75" cy="51" r="1" fill="rgba(217,46,6,1)"/>
-  <circle cx="76" cy="51" r="1" fill="rgba(216,44,7,1)"/>
-  <circle cx="77" cy="51" r="1" fill="rgba(214,43,8,1)"/>
-  <circle cx="78" cy="51" r="1" fill="rgba(213,41,8,1)"/>
-  <circle cx="79" cy="51" r="1" fill="rgba(211,40,9,1)"/>
-  <circle cx="80" cy="51" r="1" fill="rgba(210,39,10,1)"/>
-  <circle cx="81" cy="51" r="1" fill="rgba(207,39,10,1)"/>
-  <circle cx="82" cy="51" r="1" fill="rgba(207,37,11,1)"/>
-  <circle cx="83" cy="51" r="1" fill="rgba(212,39,13,1)"/>
-  <circle cx="84" cy="51" r="1" fill="rgba(105,15,3,1)"/>
-  <circle cx="85" cy="51" r="1" fill="black"/>
-  <circle cx="86" cy="51" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="87" cy="51" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="88" cy="51" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="89" cy="51" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="90" cy="51" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="91" cy="51" r="1" fill="black"/>
-  <circle cx="92" cy="51" r="1" fill="rgba(63,12,3,1)"/>
-  <circle cx="93" cy="51" r="1" fill="rgba(215,75,30,1)"/>
-  <circle cx="94" cy="51" r="1" fill="rgba(222,84,36,1)"/>
-  <circle cx="95" cy="51" r="1" fill="rgba(222,90,40,1)"/>
-  <circle cx="96" cy="51" r="1" fill="rgba(223,95,42,1)"/>
-  <circle cx="97" cy="51" r="1" fill="rgba(224,98,44,1)"/>
-  <circle cx="98" cy="51" r="1" fill="rgba(225,99,45,1)"/>
-  <circle cx="99" cy="51" r="1" fill="rgba(224,97,42,1)"/>
-  <circle cx="100" cy="51" r="1" fill="rgba(233,100,42,1)"/>
-  <circle cx="101" cy="51" r="1" fill="rgba(168,64,22,0.576471)"/>
-  <circle cx="102" cy="51" r="1" fill="rgba(0,0,0,0.0901961)"/>
-  <circle cx="103" cy="51" r="1" fill="rgba(12,4,1,0.121569)"/>
-  <circle cx="104" cy="51" r="1" fill="rgba(19,7,1,0.12549)"/>
-  <circle cx="105" cy="51" r="1" fill="rgba(34,14,5,0.176471)"/>
-  <circle cx="106" cy="51" r="1" fill="rgba(26,10,3,0.231373)"/>
-  <circle cx="107" cy="51" r="1" fill="rgba(10,1,0,0.254902)"/>
-  <circle cx="108" cy="51" r="1" fill="rgba(24,8,2,0.192157)"/>
-  <circle cx="109" cy="51" r="1" fill="rgba(45,21,8,0.0392157)"/>
-  <circle cx="110" cy="51" r="1" fill="rgba(45,22,8,0)"/>
-  <circle cx="111" cy="51" r="1" fill="rgba(45,22,8,0)"/>
-  <circle cx="112" cy="51" r="1" fill="rgba(45,22,8,0)"/>
-  <circle cx="113" cy="51" r="1" fill="rgba(45,22,8,0)"/>
-  <circle cx="114" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="51" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="52" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="52" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="19" cy="52" r="1" fill="rgba(46,23,9,0)"/>
-  <circle cx="20" cy="52" r="1" fill="rgba(46,22,9,0)"/>
-  <circle cx="21" cy="52" r="1" fill="rgba(42,21,9,0)"/>
-  <circle cx="22" cy="52" r="1" fill="rgba(0,4,3,0)"/>
-  <circle cx="23" cy="52" r="1" fill="rgba(108,36,7,0)"/>
-  <circle cx="24" cy="52" r="1" fill="rgba(206,65,5,0)"/>
-  <circle cx="25" cy="52" r="1" fill="rgba(241,75,3,0)"/>
-  <circle cx="26" cy="52" r="1" fill="rgba(238,74,3,0)"/>
-  <circle cx="27" cy="52" r="1" fill="rgba(249,78,3,0)"/>
-  <circle cx="28" cy="52" r="1" fill="rgba(252,81,4,0.545098)"/>
-  <circle cx="29" cy="52" r="1" fill="rgba(250,91,8,1)"/>
-  <circle cx="30" cy="52" r="1" fill="rgba(251,106,13,1)"/>
-  <circle cx="31" cy="52" r="1" fill="rgba(252,120,20,1)"/>
-  <circle cx="32" cy="52" r="1" fill="rgba(252,130,28,1)"/>
-  <circle cx="33" cy="52" r="1" fill="rgba(252,136,35,1)"/>
-  <circle cx="34" cy="52" r="1" fill="rgba(252,140,40,1)"/>
-  <circle cx="35" cy="52" r="1" fill="rgba(252,142,43,1)"/>
-  <circle cx="36" cy="52" r="1" fill="rgba(252,144,46,1)"/>
-  <circle cx="37" cy="52" r="1" fill="rgba(252,144,48,1)"/>
-  <circle cx="38" cy="52" r="1" fill="rgba(252,143,48,1)"/>
-  <circle cx="39" cy="52" r="1" fill="rgba(251,142,45,1)"/>
-  <circle cx="40" cy="52" r="1" fill="rgba(251,138,42,1)"/>
-  <circle cx="41" cy="52" r="1" fill="rgba(252,136,38,1)"/>
-  <circle cx="42" cy="52" r="1" fill="rgba(247,128,33,1)"/>
-  <circle cx="43" cy="52" r="1" fill="rgba(135,64,29,1)"/>
-  <circle cx="44" cy="52" r="1" fill="rgba(101,46,23,1)"/>
-  <circle cx="45" cy="52" r="1" fill="rgba(91,39,17,1)"/>
-  <circle cx="46" cy="52" r="1" fill="rgba(74,30,11,1)"/>
-  <circle cx="47" cy="52" r="1" fill="rgba(55,19,6,1)"/>
-  <circle cx="48" cy="52" r="1" fill="rgba(34,9,2,1)"/>
-  <circle cx="49" cy="52" r="1" fill="black"/>
-  <circle cx="50" cy="52" r="1" fill="rgba(97,23,0,1)"/>
-  <circle cx="51" cy="52" r="1" fill="rgba(251,89,0,1)"/>
-  <circle cx="52" cy="52" r="1" fill="rgba(252,89,0,1)"/>
-  <circle cx="53" cy="52" r="1" fill="rgba(249,90,0,1)"/>
-  <circle cx="54" cy="52" r="1" fill="rgba(248,92,0,1)"/>
-  <circle cx="55" cy="52" r="1" fill="rgba(247,92,0,1)"/>
-  <circle cx="56" cy="52" r="1" fill="rgba(246,91,0,1)"/>
-  <circle cx="57" cy="52" r="1" fill="rgba(244,89,0,1)"/>
-  <circle cx="58" cy="52" r="1" fill="rgba(243,86,0,1)"/>
-  <circle cx="59" cy="52" r="1" fill="rgba(241,79,0,1)"/>
-  <circle cx="60" cy="52" r="1" fill="rgba(238,71,0,1)"/>
-  <circle cx="61" cy="52" r="1" fill="rgba(236,62,0,1)"/>
-  <circle cx="62" cy="52" r="1" fill="rgba(233,55,0,1)"/>
-  <circle cx="63" cy="52" r="1" fill="rgba(230,48,0,1)"/>
-  <circle cx="64" cy="52" r="1" fill="rgba(227,36,0,1)"/>
-  <circle cx="65" cy="52" r="1" fill="rgba(174,14,0,1)"/>
-  <circle cx="66" cy="52" r="1" fill="rgba(159,21,0,1)"/>
-  <circle cx="67" cy="52" r="1" fill="rgba(226,33,0,1)"/>
-  <circle cx="68" cy="52" r="1" fill="rgba(217,32,0,1)"/>
-  <circle cx="69" cy="52" r="1" fill="rgba(217,34,0,1)"/>
-  <circle cx="70" cy="52" r="1" fill="rgba(219,38,1,1)"/>
-  <circle cx="71" cy="52" r="1" fill="rgba(220,42,2,1)"/>
-  <circle cx="72" cy="52" r="1" fill="rgba(220,45,3,1)"/>
-  <circle cx="73" cy="52" r="1" fill="rgba(220,46,4,1)"/>
-  <circle cx="74" cy="52" r="1" fill="rgba(219,45,5,1)"/>
-  <circle cx="75" cy="52" r="1" fill="rgba(217,45,5,1)"/>
-  <circle cx="76" cy="52" r="1" fill="rgba(215,42,6,1)"/>
-  <circle cx="77" cy="52" r="1" fill="rgba(213,39,7,1)"/>
-  <circle cx="78" cy="52" r="1" fill="rgba(210,36,7,1)"/>
-  <circle cx="79" cy="52" r="1" fill="rgba(209,36,8,1)"/>
-  <circle cx="80" cy="52" r="1" fill="rgba(207,35,8,1)"/>
-  <circle cx="81" cy="52" r="1" fill="rgba(206,34,9,1)"/>
-  <circle cx="82" cy="52" r="1" fill="rgba(204,33,9,1)"/>
-  <circle cx="83" cy="52" r="1" fill="rgba(213,36,11,1)"/>
-  <circle cx="84" cy="52" r="1" fill="rgba(116,16,3,1)"/>
-  <circle cx="85" cy="52" r="1" fill="black"/>
-  <circle cx="86" cy="52" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="87" cy="52" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="88" cy="52" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="89" cy="52" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="90" cy="52" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="91" cy="52" r="1" fill="black"/>
-  <circle cx="92" cy="52" r="1" fill="rgba(21,2,0,1)"/>
-  <circle cx="93" cy="52" r="1" fill="rgba(196,64,24,1)"/>
-  <circle cx="94" cy="52" r="1" fill="rgba(224,82,33,1)"/>
-  <circle cx="95" cy="52" r="1" fill="rgba(221,86,37,1)"/>
-  <circle cx="96" cy="52" r="1" fill="rgba(223,92,40,1)"/>
-  <circle cx="97" cy="52" r="1" fill="rgba(224,95,42,1)"/>
-  <circle cx="98" cy="52" r="1" fill="rgba(225,97,43,1)"/>
-  <circle cx="99" cy="52" r="1" fill="rgba(226,99,43,1)"/>
-  <circle cx="100" cy="52" r="1" fill="rgba(227,98,42,1)"/>
-  <circle cx="101" cy="52" r="1" fill="rgba(227,97,40,0.74902)"/>
-  <circle cx="102" cy="52" r="1" fill="rgba(113,39,12,0)"/>
-  <circle cx="103" cy="52" r="1" fill="rgba(22,6,1,0)"/>
-  <circle cx="104" cy="52" r="1" fill="rgba(22,8,2,0)"/>
-  <circle cx="105" cy="52" r="1" fill="rgba(42,20,7,0)"/>
-  <circle cx="106" cy="52" r="1" fill="rgba(33,12,4,0.0156863)"/>
-  <circle cx="107" cy="52" r="1" fill="rgba(12,2,0,0.0235294)"/>
-  <circle cx="108" cy="52" r="1" fill="rgba(26,9,2,0.0117647)"/>
-  <circle cx="109" cy="52" r="1" fill="rgba(45,21,8,0)"/>
-  <circle cx="110" cy="52" r="1" fill="rgba(46,22,8,0)"/>
-  <circle cx="111" cy="52" r="1" fill="rgba(46,22,8,0)"/>
-  <circle cx="112" cy="52" r="1" fill="rgba(46,22,8,0)"/>
-  <circle cx="113" cy="52" r="1" fill="rgba(46,22,8,0)"/>
-  <circle cx="114" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="52" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="53" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="53" r="1" fill="rgba(43,20,8,0)"/>
-  <circle cx="19" cy="53" r="1" fill="rgba(43,21,8,0)"/>
-  <circle cx="20" cy="53" r="1" fill="rgba(39,19,8,0)"/>
-  <circle cx="21" cy="53" r="1" fill="rgba(62,24,8,0)"/>
-  <circle cx="22" cy="53" r="1" fill="rgba(158,43,2,0)"/>
-  <circle cx="23" cy="53" r="1" fill="rgba(248,75,2,0)"/>
-  <circle cx="24" cy="53" r="1" fill="rgba(255,79,2,0)"/>
-  <circle cx="25" cy="53" r="1" fill="rgba(252,77,2,0)"/>
-  <circle cx="26" cy="53" r="1" fill="rgba(252,77,2,0)"/>
-  <circle cx="27" cy="53" r="1" fill="rgba(250,76,2,0.00392157)"/>
-  <circle cx="28" cy="53" r="1" fill="rgba(249,78,3,0.784314)"/>
-  <circle cx="29" cy="53" r="1" fill="rgba(250,91,6,1)"/>
-  <circle cx="30" cy="53" r="1" fill="rgba(251,105,11,1)"/>
-  <circle cx="31" cy="53" r="1" fill="rgba(252,117,18,1)"/>
-  <circle cx="32" cy="53" r="1" fill="rgba(252,125,23,1)"/>
-  <circle cx="33" cy="53" r="1" fill="rgba(252,130,29,1)"/>
-  <circle cx="34" cy="53" r="1" fill="rgba(252,134,33,1)"/>
-  <circle cx="35" cy="53" r="1" fill="rgba(252,136,36,1)"/>
-  <circle cx="36" cy="53" r="1" fill="rgba(252,137,38,1)"/>
-  <circle cx="37" cy="53" r="1" fill="rgba(252,137,39,1)"/>
-  <circle cx="38" cy="53" r="1" fill="rgba(252,136,39,1)"/>
-  <circle cx="39" cy="53" r="1" fill="rgba(251,135,37,1)"/>
-  <circle cx="40" cy="53" r="1" fill="rgba(251,133,34,1)"/>
-  <circle cx="41" cy="53" r="1" fill="rgba(253,131,31,1)"/>
-  <circle cx="42" cy="53" r="1" fill="rgba(244,121,27,1)"/>
-  <circle cx="43" cy="53" r="1" fill="rgba(114,52,23,1)"/>
-  <circle cx="44" cy="53" r="1" fill="rgba(91,39,18,1)"/>
-  <circle cx="45" cy="53" r="1" fill="rgba(78,32,13,1)"/>
-  <circle cx="46" cy="53" r="1" fill="rgba(63,23,8,1)"/>
-  <circle cx="47" cy="53" r="1" fill="rgba(43,13,4,1)"/>
-  <circle cx="48" cy="53" r="1" fill="rgba(17,3,0,1)"/>
-  <circle cx="49" cy="53" r="1" fill="black"/>
-  <circle cx="50" cy="53" r="1" fill="rgba(42,6,0,1)"/>
-  <circle cx="51" cy="53" r="1" fill="rgba(241,78,0,1)"/>
-  <circle cx="52" cy="53" r="1" fill="rgba(253,85,0,1)"/>
-  <circle cx="53" cy="53" r="1" fill="rgba(249,84,0,1)"/>
-  <circle cx="54" cy="53" r="1" fill="rgba(247,85,0,1)"/>
-  <circle cx="55" cy="53" r="1" fill="rgba(246,87,0,1)"/>
-  <circle cx="56" cy="53" r="1" fill="rgba(244,86,0,1)"/>
-  <circle cx="57" cy="53" r="1" fill="rgba(244,84,0,1)"/>
-  <circle cx="58" cy="53" r="1" fill="rgba(242,82,0,1)"/>
-  <circle cx="59" cy="53" r="1" fill="rgba(240,78,0,1)"/>
-  <circle cx="60" cy="53" r="1" fill="rgba(238,70,0,1)"/>
-  <circle cx="61" cy="53" r="1" fill="rgba(235,61,0,1)"/>
-  <circle cx="62" cy="53" r="1" fill="rgba(233,54,0,1)"/>
-  <circle cx="63" cy="53" r="1" fill="rgba(230,48,0,1)"/>
-  <circle cx="64" cy="53" r="1" fill="rgba(224,35,0,1)"/>
-  <circle cx="65" cy="53" r="1" fill="rgba(175,15,0,1)"/>
-  <circle cx="66" cy="53" r="1" fill="rgba(160,22,0,1)"/>
-  <circle cx="67" cy="53" r="1" fill="rgba(225,32,0,1)"/>
-  <circle cx="68" cy="53" r="1" fill="rgba(216,32,0,1)"/>
-  <circle cx="69" cy="53" r="1" fill="rgba(217,35,0,1)"/>
-  <circle cx="70" cy="53" r="1" fill="rgba(219,38,1,1)"/>
-  <circle cx="71" cy="53" r="1" fill="rgba(220,43,2,1)"/>
-  <circle cx="72" cy="53" r="1" fill="rgba(220,45,3,1)"/>
-  <circle cx="73" cy="53" r="1" fill="rgba(220,46,4,1)"/>
-  <circle cx="74" cy="53" r="1" fill="rgba(218,45,5,1)"/>
-  <circle cx="75" cy="53" r="1" fill="rgba(217,42,5,1)"/>
-  <circle cx="76" cy="53" r="1" fill="rgba(214,39,6,1)"/>
-  <circle cx="77" cy="53" r="1" fill="rgba(212,36,6,1)"/>
-  <circle cx="78" cy="53" r="1" fill="rgba(209,33,6,1)"/>
-  <circle cx="79" cy="53" r="1" fill="rgba(207,32,6,1)"/>
-  <circle cx="80" cy="53" r="1" fill="rgba(205,31,7,1)"/>
-  <circle cx="81" cy="53" r="1" fill="rgba(203,29,7,1)"/>
-  <circle cx="82" cy="53" r="1" fill="rgba(203,30,8,1)"/>
-  <circle cx="83" cy="53" r="1" fill="rgba(212,34,10,1)"/>
-  <circle cx="84" cy="53" r="1" fill="rgba(148,22,5,1)"/>
-  <circle cx="85" cy="53" r="1" fill="black"/>
-  <circle cx="86" cy="53" r="1" fill="black"/>
-  <circle cx="87" cy="53" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="88" cy="53" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="89" cy="53" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="90" cy="53" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="91" cy="53" r="1" fill="black"/>
-  <circle cx="92" cy="53" r="1" fill="rgba(12,1,0,1)"/>
-  <circle cx="93" cy="53" r="1" fill="rgba(189,59,21,1)"/>
-  <circle cx="94" cy="53" r="1" fill="rgba(224,79,32,1)"/>
-  <circle cx="95" cy="53" r="1" fill="rgba(220,83,34,1)"/>
-  <circle cx="96" cy="53" r="1" fill="rgba(222,89,38,1)"/>
-  <circle cx="97" cy="53" r="1" fill="rgba(224,94,41,1)"/>
-  <circle cx="98" cy="53" r="1" fill="rgba(225,97,42,1)"/>
-  <circle cx="99" cy="53" r="1" fill="rgba(227,99,43,1)"/>
-  <circle cx="100" cy="53" r="1" fill="rgba(227,99,42,1)"/>
-  <circle cx="101" cy="53" r="1" fill="rgba(231,101,42,0.964706)"/>
-  <circle cx="102" cy="53" r="1" fill="rgba(171,65,23,0.137255)"/>
-  <circle cx="103" cy="53" r="1" fill="rgba(119,42,13,0)"/>
-  <circle cx="104" cy="53" r="1" fill="rgba(103,36,11,0)"/>
-  <circle cx="105" cy="53" r="1" fill="rgba(42,19,7,0)"/>
-  <circle cx="106" cy="53" r="1" fill="rgba(28,11,4,0)"/>
-  <circle cx="107" cy="53" r="1" fill="rgba(12,2,0,0)"/>
-  <circle cx="108" cy="53" r="1" fill="rgba(24,9,2,0)"/>
-  <circle cx="109" cy="53" r="1" fill="rgba(45,21,8,0)"/>
-  <circle cx="110" cy="53" r="1" fill="rgba(46,22,8,0)"/>
-  <circle cx="111" cy="53" r="1" fill="rgba(46,22,8,0)"/>
-  <circle cx="112" cy="53" r="1" fill="rgba(46,22,8,0)"/>
-  <circle cx="113" cy="53" r="1" fill="rgba(46,22,8,0)"/>
-  <circle cx="114" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="53" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="54" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="54" r="1" fill="rgba(62,34,16,0)"/>
-  <circle cx="19" cy="54" r="1" fill="rgba(63,35,16,0)"/>
-  <circle cx="20" cy="54" r="1" fill="rgba(46,33,18,0)"/>
-  <circle cx="21" cy="54" r="1" fill="rgba(163,57,11,0)"/>
-  <circle cx="22" cy="54" r="1" fill="rgba(255,77,1,0)"/>
-  <circle cx="23" cy="54" r="1" fill="rgba(252,73,1,0)"/>
-  <circle cx="24" cy="54" r="1" fill="rgba(255,74,0,0)"/>
-  <circle cx="25" cy="54" r="1" fill="rgba(255,74,0,0)"/>
-  <circle cx="26" cy="54" r="1" fill="rgba(252,73,1,0)"/>
-  <circle cx="27" cy="54" r="1" fill="rgba(251,73,1,0.113725)"/>
-  <circle cx="28" cy="54" r="1" fill="rgba(249,78,2,0.960784)"/>
-  <circle cx="29" cy="54" r="1" fill="rgba(250,91,5,1)"/>
-  <circle cx="30" cy="54" r="1" fill="rgba(251,104,9,1)"/>
-  <circle cx="31" cy="54" r="1" fill="rgba(252,113,14,1)"/>
-  <circle cx="32" cy="54" r="1" fill="rgba(252,120,19,1)"/>
-  <circle cx="33" cy="54" r="1" fill="rgba(252,125,23,1)"/>
-  <circle cx="34" cy="54" r="1" fill="rgba(252,129,26,1)"/>
-  <circle cx="35" cy="54" r="1" fill="rgba(252,130,28,1)"/>
-  <circle cx="36" cy="54" r="1" fill="rgba(252,131,30,1)"/>
-  <circle cx="37" cy="54" r="1" fill="rgba(252,131,31,1)"/>
-  <circle cx="38" cy="54" r="1" fill="rgba(252,130,30,1)"/>
-  <circle cx="39" cy="54" r="1" fill="rgba(252,129,29,1)"/>
-  <circle cx="40" cy="54" r="1" fill="rgba(252,127,27,1)"/>
-  <circle cx="41" cy="54" r="1" fill="rgba(254,124,24,1)"/>
-  <circle cx="42" cy="54" r="1" fill="rgba(245,116,21,1)"/>
-  <circle cx="43" cy="54" r="1" fill="rgba(108,46,18,1)"/>
-  <circle cx="44" cy="54" r="1" fill="rgba(76,31,13,1)"/>
-  <circle cx="45" cy="54" r="1" fill="rgba(65,24,9,1)"/>
-  <circle cx="46" cy="54" r="1" fill="rgba(47,15,5,1)"/>
-  <circle cx="47" cy="54" r="1" fill="rgba(26,7,1,1)"/>
-  <circle cx="48" cy="54" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="49" cy="54" r="1" fill="black"/>
-  <circle cx="50" cy="54" r="1" fill="rgba(29,4,0,1)"/>
-  <circle cx="51" cy="54" r="1" fill="rgba(238,75,0,1)"/>
-  <circle cx="52" cy="54" r="1" fill="rgba(253,80,0,1)"/>
-  <circle cx="53" cy="54" r="1" fill="rgba(248,78,0,1)"/>
-  <circle cx="54" cy="54" r="1" fill="rgba(247,79,0,1)"/>
-  <circle cx="55" cy="54" r="1" fill="rgba(245,81,0,1)"/>
-  <circle cx="56" cy="54" r="1" fill="rgba(243,81,0,1)"/>
-  <circle cx="57" cy="54" r="1" fill="rgba(243,80,0,1)"/>
-  <circle cx="58" cy="54" r="1" fill="rgba(241,79,0,1)"/>
-  <circle cx="59" cy="54" r="1" fill="rgba(240,75,0,1)"/>
-  <circle cx="60" cy="54" r="1" fill="rgba(238,68,0,1)"/>
-  <circle cx="61" cy="54" r="1" fill="rgba(235,60,0,1)"/>
-  <circle cx="62" cy="54" r="1" fill="rgba(232,53,0,1)"/>
-  <circle cx="63" cy="54" r="1" fill="rgba(230,47,0,1)"/>
-  <circle cx="64" cy="54" r="1" fill="rgba(224,34,0,1)"/>
-  <circle cx="65" cy="54" r="1" fill="rgba(176,16,0,1)"/>
-  <circle cx="66" cy="54" r="1" fill="rgba(160,24,0,1)"/>
-  <circle cx="67" cy="54" r="1" fill="rgba(224,32,0,1)"/>
-  <circle cx="68" cy="54" r="1" fill="rgba(216,33,0,1)"/>
-  <circle cx="69" cy="54" r="1" fill="rgba(217,35,0,1)"/>
-  <circle cx="70" cy="54" r="1" fill="rgba(219,39,1,1)"/>
-  <circle cx="71" cy="54" r="1" fill="rgba(220,43,2,1)"/>
-  <circle cx="72" cy="54" r="1" fill="rgba(220,45,3,1)"/>
-  <circle cx="73" cy="54" r="1" fill="rgba(219,45,3,1)"/>
-  <circle cx="74" cy="54" r="1" fill="rgba(217,43,4,1)"/>
-  <circle cx="75" cy="54" r="1" fill="rgba(216,40,5,1)"/>
-  <circle cx="76" cy="54" r="1" fill="rgba(213,36,5,1)"/>
-  <circle cx="77" cy="54" r="1" fill="rgba(210,32,5,1)"/>
-  <circle cx="78" cy="54" r="1" fill="rgba(208,31,5,1)"/>
-  <circle cx="79" cy="54" r="1" fill="rgba(206,30,6,1)"/>
-  <circle cx="80" cy="54" r="1" fill="rgba(203,27,6,1)"/>
-  <circle cx="81" cy="54" r="1" fill="rgba(202,27,6,1)"/>
-  <circle cx="82" cy="54" r="1" fill="rgba(202,27,7,1)"/>
-  <circle cx="83" cy="54" r="1" fill="rgba(206,31,9,1)"/>
-  <circle cx="84" cy="54" r="1" fill="rgba(192,30,8,1)"/>
-  <circle cx="85" cy="54" r="1" fill="rgba(37,3,0,1)"/>
-  <circle cx="86" cy="54" r="1" fill="black"/>
-  <circle cx="87" cy="54" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="88" cy="54" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="89" cy="54" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="90" cy="54" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="91" cy="54" r="1" fill="black"/>
-  <circle cx="92" cy="54" r="1" fill="rgba(45,7,1,1)"/>
-  <circle cx="93" cy="54" r="1" fill="rgba(210,67,24,1)"/>
-  <circle cx="94" cy="54" r="1" fill="rgba(221,77,30,1)"/>
-  <circle cx="95" cy="54" r="1" fill="rgba(220,82,33,1)"/>
-  <circle cx="96" cy="54" r="1" fill="rgba(222,87,36,1)"/>
-  <circle cx="97" cy="54" r="1" fill="rgba(224,92,39,1)"/>
-  <circle cx="98" cy="54" r="1" fill="rgba(225,97,42,1)"/>
-  <circle cx="99" cy="54" r="1" fill="rgba(227,99,43,1)"/>
-  <circle cx="100" cy="54" r="1" fill="rgba(227,101,43,1)"/>
-  <circle cx="101" cy="54" r="1" fill="rgba(233,103,44,1)"/>
-  <circle cx="102" cy="54" r="1" fill="rgba(155,58,20,0.486275)"/>
-  <circle cx="103" cy="54" r="1" fill="rgba(117,41,12,0)"/>
-  <circle cx="104" cy="54" r="1" fill="rgba(133,48,15,0)"/>
-  <circle cx="105" cy="54" r="1" fill="rgba(105,38,12,0)"/>
-  <circle cx="106" cy="54" r="1" fill="rgba(37,14,4,0)"/>
-  <circle cx="107" cy="54" r="1" fill="rgba(0,1,0,0)"/>
-  <circle cx="108" cy="54" r="1" fill="rgba(24,9,2,0)"/>
-  <circle cx="109" cy="54" r="1" fill="rgba(45,21,8,0)"/>
-  <circle cx="110" cy="54" r="1" fill="rgba(46,22,8,0)"/>
-  <circle cx="111" cy="54" r="1" fill="rgba(46,22,8,0)"/>
-  <circle cx="112" cy="54" r="1" fill="rgba(46,22,8,0)"/>
-  <circle cx="113" cy="54" r="1" fill="rgba(46,22,8,0)"/>
-  <circle cx="114" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="54" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="55" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="55" r="1" fill="rgba(103,71,44,0)"/>
-  <circle cx="19" cy="55" r="1" fill="rgba(100,68,41,0)"/>
-  <circle cx="20" cy="55" r="1" fill="rgba(96,65,38,0)"/>
-  <circle cx="21" cy="55" r="1" fill="rgba(101,61,34,0)"/>
-  <circle cx="22" cy="55" r="1" fill="rgba(94,54,28,0)"/>
-  <circle cx="23" cy="55" r="1" fill="rgba(136,56,18,0)"/>
-  <circle cx="24" cy="55" r="1" fill="rgba(169,58,9,0)"/>
-  <circle cx="25" cy="55" r="1" fill="rgba(206,62,4,0)"/>
-  <circle cx="26" cy="55" r="1" fill="rgba(242,70,0,0)"/>
-  <circle cx="27" cy="55" r="1" fill="rgba(245,71,0,0.313725)"/>
-  <circle cx="28" cy="55" r="1" fill="rgba(249,79,1,1)"/>
-  <circle cx="29" cy="55" r="1" fill="rgba(250,91,3,1)"/>
-  <circle cx="30" cy="55" r="1" fill="rgba(250,102,7,1)"/>
-  <circle cx="31" cy="55" r="1" fill="rgba(252,109,10,1)"/>
-  <circle cx="32" cy="55" r="1" fill="rgba(252,115,14,1)"/>
-  <circle cx="33" cy="55" r="1" fill="rgba(252,119,17,1)"/>
-  <circle cx="34" cy="55" r="1" fill="rgba(252,122,20,1)"/>
-  <circle cx="35" cy="55" r="1" fill="rgba(252,123,21,1)"/>
-  <circle cx="36" cy="55" r="1" fill="rgba(252,124,23,1)"/>
-  <circle cx="37" cy="55" r="1" fill="rgba(252,124,24,1)"/>
-  <circle cx="38" cy="55" r="1" fill="rgba(252,124,23,1)"/>
-  <circle cx="39" cy="55" r="1" fill="rgba(252,122,22,1)"/>
-  <circle cx="40" cy="55" r="1" fill="rgba(252,120,20,1)"/>
-  <circle cx="41" cy="55" r="1" fill="rgba(253,118,18,1)"/>
-  <circle cx="42" cy="55" r="1" fill="rgba(252,114,15,1)"/>
-  <circle cx="43" cy="55" r="1" fill="rgba(127,50,12,1)"/>
-  <circle cx="44" cy="55" r="1" fill="rgba(53,20,9,1)"/>
-  <circle cx="45" cy="55" r="1" fill="rgba(50,16,5,1)"/>
-  <circle cx="46" cy="55" r="1" fill="rgba(29,8,1,1)"/>
-  <circle cx="47" cy="55" r="1" fill="rgba(7,1,0,1)"/>
-  <circle cx="48" cy="55" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="49" cy="55" r="1" fill="black"/>
-  <circle cx="50" cy="55" r="1" fill="rgba(45,7,0,1)"/>
-  <circle cx="51" cy="55" r="1" fill="rgba(241,72,0,1)"/>
-  <circle cx="52" cy="55" r="1" fill="rgba(252,75,0,1)"/>
-  <circle cx="53" cy="55" r="1" fill="rgba(247,73,0,1)"/>
-  <circle cx="54" cy="55" r="1" fill="rgba(246,73,0,1)"/>
-  <circle cx="55" cy="55" r="1" fill="rgba(244,74,0,1)"/>
-  <circle cx="56" cy="55" r="1" fill="rgba(242,76,0,1)"/>
-  <circle cx="57" cy="55" r="1" fill="rgba(241,76,0,1)"/>
-  <circle cx="58" cy="55" r="1" fill="rgba(241,76,0,1)"/>
-  <circle cx="59" cy="55" r="1" fill="rgba(239,72,0,1)"/>
-  <circle cx="60" cy="55" r="1" fill="rgba(237,67,0,1)"/>
-  <circle cx="61" cy="55" r="1" fill="rgba(234,60,0,1)"/>
-  <circle cx="62" cy="55" r="1" fill="rgba(231,52,0,1)"/>
-  <circle cx="63" cy="55" r="1" fill="rgba(229,46,0,1)"/>
-  <circle cx="64" cy="55" r="1" fill="rgba(224,34,0,1)"/>
-  <circle cx="65" cy="55" r="1" fill="rgba(176,17,0,1)"/>
-  <circle cx="66" cy="55" r="1" fill="rgba(162,25,1,1)"/>
-  <circle cx="67" cy="55" r="1" fill="rgba(224,32,0,1)"/>
-  <circle cx="68" cy="55" r="1" fill="rgba(216,33,0,1)"/>
-  <circle cx="69" cy="55" r="1" fill="rgba(217,35,1,1)"/>
-  <circle cx="70" cy="55" r="1" fill="rgba(219,40,1,1)"/>
-  <circle cx="71" cy="55" r="1" fill="rgba(219,43,2,1)"/>
-  <circle cx="72" cy="55" r="1" fill="rgba(220,45,3,1)"/>
-  <circle cx="73" cy="55" r="1" fill="rgba(218,44,3,1)"/>
-  <circle cx="74" cy="55" r="1" fill="rgba(217,41,4,1)"/>
-  <circle cx="75" cy="55" r="1" fill="rgba(214,37,4,1)"/>
-  <circle cx="76" cy="55" r="1" fill="rgba(211,33,5,1)"/>
-  <circle cx="77" cy="55" r="1" fill="rgba(209,29,4,1)"/>
-  <circle cx="78" cy="55" r="1" fill="rgba(207,28,4,1)"/>
-  <circle cx="79" cy="55" r="1" fill="rgba(205,27,5,1)"/>
-  <circle cx="80" cy="55" r="1" fill="rgba(202,25,5,1)"/>
-  <circle cx="81" cy="55" r="1" fill="rgba(200,25,6,1)"/>
-  <circle cx="82" cy="55" r="1" fill="rgba(200,26,6,1)"/>
-  <circle cx="83" cy="55" r="1" fill="rgba(202,30,8,1)"/>
-  <circle cx="84" cy="55" r="1" fill="rgba(210,34,10,1)"/>
-  <circle cx="85" cy="55" r="1" fill="rgba(130,18,4,1)"/>
-  <circle cx="86" cy="55" r="1" fill="black"/>
-  <circle cx="87" cy="55" r="1" fill="black"/>
-  <circle cx="88" cy="55" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="89" cy="55" r="1" fill="black"/>
-  <circle cx="90" cy="55" r="1" fill="black"/>
-  <circle cx="91" cy="55" r="1" fill="black"/>
-  <circle cx="92" cy="55" r="1" fill="rgba(143,37,11,1)"/>
-  <circle cx="93" cy="55" r="1" fill="rgba(222,72,27,1)"/>
-  <circle cx="94" cy="55" r="1" fill="rgba(218,75,30,1)"/>
-  <circle cx="95" cy="55" r="1" fill="rgba(221,81,33,1)"/>
-  <circle cx="96" cy="55" r="1" fill="rgba(222,86,36,1)"/>
-  <circle cx="97" cy="55" r="1" fill="rgba(224,91,39,1)"/>
-  <circle cx="98" cy="55" r="1" fill="rgba(225,97,42,1)"/>
-  <circle cx="99" cy="55" r="1" fill="rgba(227,100,43,1)"/>
-  <circle cx="100" cy="55" r="1" fill="rgba(228,102,44,1)"/>
-  <circle cx="101" cy="55" r="1" fill="rgba(236,107,47,1)"/>
-  <circle cx="102" cy="55" r="1" fill="rgba(172,68,24,0.694118)"/>
-  <circle cx="103" cy="55" r="1" fill="rgba(104,35,10,0.0862745)"/>
-  <circle cx="104" cy="55" r="1" fill="rgba(127,46,14,0)"/>
-  <circle cx="105" cy="55" r="1" fill="rgba(126,45,14,0)"/>
-  <circle cx="106" cy="55" r="1" fill="rgba(120,43,13,0)"/>
-  <circle cx="107" cy="55" r="1" fill="rgba(54,14,3,0)"/>
-  <circle cx="108" cy="55" r="1" fill="rgba(7,5,1,0)"/>
-  <circle cx="109" cy="55" r="1" fill="rgba(42,20,8,0)"/>
-  <circle cx="110" cy="55" r="1" fill="rgba(45,22,8,0)"/>
-  <circle cx="111" cy="55" r="1" fill="rgba(45,22,8,0)"/>
-  <circle cx="112" cy="55" r="1" fill="rgba(45,22,8,0)"/>
-  <circle cx="113" cy="55" r="1" fill="rgba(45,22,8,0)"/>
-  <circle cx="114" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="55" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="56" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="56" r="1" fill="rgba(103,71,44,0)"/>
-  <circle cx="19" cy="56" r="1" fill="rgba(100,68,41,0)"/>
-  <circle cx="20" cy="56" r="1" fill="rgba(97,64,37,0)"/>
-  <circle cx="21" cy="56" r="1" fill="rgba(90,59,34,0)"/>
-  <circle cx="22" cy="56" r="1" fill="rgba(83,54,30,0)"/>
-  <circle cx="23" cy="56" r="1" fill="rgba(70,48,28,0)"/>
-  <circle cx="24" cy="56" r="1" fill="rgba(57,42,24,0)"/>
-  <circle cx="25" cy="56" r="1" fill="rgba(68,38,19,0)"/>
-  <circle cx="26" cy="56" r="1" fill="rgba(70,35,14,0)"/>
-  <circle cx="27" cy="56" r="1" fill="rgba(185,56,3,0.564706)"/>
-  <circle cx="28" cy="56" r="1" fill="rgba(255,82,0,1)"/>
-  <circle cx="29" cy="56" r="1" fill="rgba(250,91,1,1)"/>
-  <circle cx="30" cy="56" r="1" fill="rgba(251,99,3,1)"/>
-  <circle cx="31" cy="56" r="1" fill="rgba(252,105,6,1)"/>
-  <circle cx="32" cy="56" r="1" fill="rgba(252,110,9,1)"/>
-  <circle cx="33" cy="56" r="1" fill="rgba(252,113,11,1)"/>
-  <circle cx="34" cy="56" r="1" fill="rgba(252,115,13,1)"/>
-  <circle cx="35" cy="56" r="1" fill="rgba(252,117,15,1)"/>
-  <circle cx="36" cy="56" r="1" fill="rgba(252,117,16,1)"/>
-  <circle cx="37" cy="56" r="1" fill="rgba(252,118,16,1)"/>
-  <circle cx="38" cy="56" r="1" fill="rgba(252,117,16,1)"/>
-  <circle cx="39" cy="56" r="1" fill="rgba(252,115,16,1)"/>
-  <circle cx="40" cy="56" r="1" fill="rgba(252,113,14,1)"/>
-  <circle cx="41" cy="56" r="1" fill="rgba(252,110,11,1)"/>
-  <circle cx="42" cy="56" r="1" fill="rgba(255,111,9,1)"/>
-  <circle cx="43" cy="56" r="1" fill="rgba(179,67,7,1)"/>
-  <circle cx="44" cy="56" r="1" fill="rgba(22,9,4,1)"/>
-  <circle cx="45" cy="56" r="1" fill="rgba(26,7,1,1)"/>
-  <circle cx="46" cy="56" r="1" fill="rgba(10,1,0,1)"/>
-  <circle cx="47" cy="56" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="48" cy="56" r="1" fill="rgba(4,0,0,1)"/>
-  <circle cx="49" cy="56" r="1" fill="black"/>
-  <circle cx="50" cy="56" r="1" fill="rgba(108,23,0,1)"/>
-  <circle cx="51" cy="56" r="1" fill="rgba(252,74,0,1)"/>
-  <circle cx="52" cy="56" r="1" fill="rgba(249,71,0,1)"/>
-  <circle cx="53" cy="56" r="1" fill="rgba(246,69,0,1)"/>
-  <circle cx="54" cy="56" r="1" fill="rgba(244,69,0,1)"/>
-  <circle cx="55" cy="56" r="1" fill="rgba(242,69,0,1)"/>
-  <circle cx="56" cy="56" r="1" fill="rgba(242,72,0,1)"/>
-  <circle cx="57" cy="56" r="1" fill="rgba(241,73,0,1)"/>
-  <circle cx="58" cy="56" r="1" fill="rgba(239,73,0,1)"/>
-  <circle cx="59" cy="56" r="1" fill="rgba(238,71,0,1)"/>
-  <circle cx="60" cy="56" r="1" fill="rgba(236,65,0,1)"/>
-  <circle cx="61" cy="56" r="1" fill="rgba(233,59,0,1)"/>
-  <circle cx="62" cy="56" r="1" fill="rgba(231,51,0,1)"/>
-  <circle cx="63" cy="56" r="1" fill="rgba(228,46,0,1)"/>
-  <circle cx="64" cy="56" r="1" fill="rgba(223,33,0,1)"/>
-  <circle cx="65" cy="56" r="1" fill="rgba(177,18,0,1)"/>
-  <circle cx="66" cy="56" r="1" fill="rgba(163,26,1,1)"/>
-  <circle cx="67" cy="56" r="1" fill="rgba(223,31,0,1)"/>
-  <circle cx="68" cy="56" r="1" fill="rgba(215,33,0,1)"/>
-  <circle cx="69" cy="56" r="1" fill="rgba(217,36,0,1)"/>
-  <circle cx="70" cy="56" r="1" fill="rgba(219,40,1,1)"/>
-  <circle cx="71" cy="56" r="1" fill="rgba(219,42,2,1)"/>
-  <circle cx="72" cy="56" r="1" fill="rgba(220,44,3,1)"/>
-  <circle cx="73" cy="56" r="1" fill="rgba(218,42,3,1)"/>
-  <circle cx="74" cy="56" r="1" fill="rgba(216,40,4,1)"/>
-  <circle cx="75" cy="56" r="1" fill="rgba(214,36,4,1)"/>
-  <circle cx="76" cy="56" r="1" fill="rgba(210,31,4,1)"/>
-  <circle cx="77" cy="56" r="1" fill="rgba(207,27,4,1)"/>
-  <circle cx="78" cy="56" r="1" fill="rgba(205,25,4,1)"/>
-  <circle cx="79" cy="56" r="1" fill="rgba(203,24,4,1)"/>
-  <circle cx="80" cy="56" r="1" fill="rgba(202,24,5,1)"/>
-  <circle cx="81" cy="56" r="1" fill="rgba(200,24,5,1)"/>
-  <circle cx="82" cy="56" r="1" fill="rgba(201,26,6,1)"/>
-  <circle cx="83" cy="56" r="1" fill="rgba(202,29,8,1)"/>
-  <circle cx="84" cy="56" r="1" fill="rgba(205,33,9,1)"/>
-  <circle cx="85" cy="56" r="1" fill="rgba(204,35,10,1)"/>
-  <circle cx="86" cy="56" r="1" fill="rgba(102,14,3,1)"/>
-  <circle cx="87" cy="56" r="1" fill="black"/>
-  <circle cx="88" cy="56" r="1" fill="black"/>
-  <circle cx="89" cy="56" r="1" fill="black"/>
-  <circle cx="90" cy="56" r="1" fill="rgba(42,5,0,1)"/>
-  <circle cx="91" cy="56" r="1" fill="rgba(142,34,9,1)"/>
-  <circle cx="92" cy="56" r="1" fill="rgba(218,66,24,1)"/>
-  <circle cx="93" cy="56" r="1" fill="rgba(217,70,26,1)"/>
-  <circle cx="94" cy="56" r="1" fill="rgba(218,75,29,1)"/>
-  <circle cx="95" cy="56" r="1" fill="rgba(221,81,32,1)"/>
-  <circle cx="96" cy="56" r="1" fill="rgba(222,86,35,1)"/>
-  <circle cx="97" cy="56" r="1" fill="rgba(224,92,38,1)"/>
-  <circle cx="98" cy="56" r="1" fill="rgba(226,97,42,1)"/>
-  <circle cx="99" cy="56" r="1" fill="rgba(228,101,44,1)"/>
-  <circle cx="100" cy="56" r="1" fill="rgba(230,105,47,1)"/>
-  <circle cx="101" cy="56" r="1" fill="rgba(234,108,48,1)"/>
-  <circle cx="102" cy="56" r="1" fill="rgba(198,85,32,0.839216)"/>
-  <circle cx="103" cy="56" r="1" fill="rgba(95,31,8,0.192157)"/>
-  <circle cx="104" cy="56" r="1" fill="rgba(122,43,14,0.00784314)"/>
-  <circle cx="105" cy="56" r="1" fill="rgba(122,43,14,0)"/>
-  <circle cx="106" cy="56" r="1" fill="rgba(125,45,14,0)"/>
-  <circle cx="107" cy="56" r="1" fill="rgba(120,42,13,0)"/>
-  <circle cx="108" cy="56" r="1" fill="rgba(78,26,8,0)"/>
-  <circle cx="109" cy="56" r="1" fill="rgba(51,22,8,0)"/>
-  <circle cx="110" cy="56" r="1" fill="rgba(50,23,9,0)"/>
-  <circle cx="111" cy="56" r="1" fill="rgba(51,23,9,0)"/>
-  <circle cx="112" cy="56" r="1" fill="rgba(51,23,9,0)"/>
-  <circle cx="113" cy="56" r="1" fill="rgba(51,23,9,0)"/>
-  <circle cx="114" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="56" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="57" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="57" r="1" fill="rgba(103,71,44,0)"/>
-  <circle cx="19" cy="57" r="1" fill="rgba(100,68,41,0)"/>
-  <circle cx="20" cy="57" r="1" fill="rgba(96,64,37,0)"/>
-  <circle cx="21" cy="57" r="1" fill="rgba(92,59,34,0)"/>
-  <circle cx="22" cy="57" r="1" fill="rgba(86,54,30,0)"/>
-  <circle cx="23" cy="57" r="1" fill="rgba(81,49,27,0)"/>
-  <circle cx="24" cy="57" r="1" fill="rgba(76,44,22,0)"/>
-  <circle cx="25" cy="57" r="1" fill="rgba(67,38,19,0)"/>
-  <circle cx="26" cy="57" r="1" fill="rgba(51,32,16,0.513725)"/>
-  <circle cx="27" cy="57" r="1" fill="rgba(190,59,3,0.988235)"/>
-  <circle cx="28" cy="57" r="1" fill="rgba(255,83,0,1)"/>
-  <circle cx="29" cy="57" r="1" fill="rgba(251,89,0,1)"/>
-  <circle cx="30" cy="57" r="1" fill="rgba(252,95,1,1)"/>
-  <circle cx="31" cy="57" r="1" fill="rgba(252,100,3,1)"/>
-  <circle cx="32" cy="57" r="1" fill="rgba(252,103,4,1)"/>
-  <circle cx="33" cy="57" r="1" fill="rgba(252,106,6,1)"/>
-  <circle cx="34" cy="57" r="1" fill="rgba(252,108,8,1)"/>
-  <circle cx="35" cy="57" r="1" fill="rgba(252,109,9,1)"/>
-  <circle cx="36" cy="57" r="1" fill="rgba(252,110,10,1)"/>
-  <circle cx="37" cy="57" r="1" fill="rgba(252,110,10,1)"/>
-  <circle cx="38" cy="57" r="1" fill="rgba(252,109,10,1)"/>
-  <circle cx="39" cy="57" r="1" fill="rgba(252,108,9,1)"/>
-  <circle cx="40" cy="57" r="1" fill="rgba(252,107,8,1)"/>
-  <circle cx="41" cy="57" r="1" fill="rgba(252,103,6,1)"/>
-  <circle cx="42" cy="57" r="1" fill="rgba(255,101,5,1)"/>
-  <circle cx="43" cy="57" r="1" fill="rgba(245,94,2,1)"/>
-  <circle cx="44" cy="57" r="1" fill="rgba(110,30,0,1)"/>
-  <circle cx="45" cy="57" r="1" fill="black"/>
-  <circle cx="46" cy="57" r="1" fill="black"/>
-  <circle cx="47" cy="57" r="1" fill="black"/>
-  <circle cx="48" cy="57" r="1" fill="black"/>
-  <circle cx="49" cy="57" r="1" fill="rgba(37,5,0,1)"/>
-  <circle cx="50" cy="57" r="1" fill="rgba(211,57,0,1)"/>
-  <circle cx="51" cy="57" r="1" fill="rgba(253,71,0,1)"/>
-  <circle cx="52" cy="57" r="1" fill="rgba(246,67,0,1)"/>
-  <circle cx="53" cy="57" r="1" fill="rgba(245,65,0,1)"/>
-  <circle cx="54" cy="57" r="1" fill="rgba(243,65,0,1)"/>
-  <circle cx="55" cy="57" r="1" fill="rgba(241,65,0,1)"/>
-  <circle cx="56" cy="57" r="1" fill="rgba(241,68,0,1)"/>
-  <circle cx="57" cy="57" r="1" fill="rgba(240,70,0,1)"/>
-  <circle cx="58" cy="57" r="1" fill="rgba(238,70,0,1)"/>
-  <circle cx="59" cy="57" r="1" fill="rgba(237,70,0,1)"/>
-  <circle cx="60" cy="57" r="1" fill="rgba(236,65,0,1)"/>
-  <circle cx="61" cy="57" r="1" fill="rgba(233,58,0,1)"/>
-  <circle cx="62" cy="57" r="1" fill="rgba(230,50,0,1)"/>
-  <circle cx="63" cy="57" r="1" fill="rgba(227,45,0,1)"/>
-  <circle cx="64" cy="57" r="1" fill="rgba(221,32,0,1)"/>
-  <circle cx="65" cy="57" r="1" fill="rgba(178,19,0,1)"/>
-  <circle cx="66" cy="57" r="1" fill="rgba(163,27,2,1)"/>
-  <circle cx="67" cy="57" r="1" fill="rgba(221,30,0,1)"/>
-  <circle cx="68" cy="57" r="1" fill="rgba(214,32,0,1)"/>
-  <circle cx="69" cy="57" r="1" fill="rgba(216,36,0,1)"/>
-  <circle cx="70" cy="57" r="1" fill="rgba(218,39,1,1)"/>
-  <circle cx="71" cy="57" r="1" fill="rgba(219,42,2,1)"/>
-  <circle cx="72" cy="57" r="1" fill="rgba(218,43,3,1)"/>
-  <circle cx="73" cy="57" r="1" fill="rgba(217,41,3,1)"/>
-  <circle cx="74" cy="57" r="1" fill="rgba(215,38,4,1)"/>
-  <circle cx="75" cy="57" r="1" fill="rgba(213,34,4,1)"/>
-  <circle cx="76" cy="57" r="1" fill="rgba(210,29,3,1)"/>
-  <circle cx="77" cy="57" r="1" fill="rgba(207,26,3,1)"/>
-  <circle cx="78" cy="57" r="1" fill="rgba(204,24,4,1)"/>
-  <circle cx="79" cy="57" r="1" fill="rgba(203,23,4,1)"/>
-  <circle cx="80" cy="57" r="1" fill="rgba(201,22,5,1)"/>
-  <circle cx="81" cy="57" r="1" fill="rgba(200,23,5,1)"/>
-  <circle cx="82" cy="57" r="1" fill="rgba(201,26,6,1)"/>
-  <circle cx="83" cy="57" r="1" fill="rgba(202,29,8,1)"/>
-  <circle cx="84" cy="57" r="1" fill="rgba(203,32,9,1)"/>
-  <circle cx="85" cy="57" r="1" fill="rgba(207,36,10,1)"/>
-  <circle cx="86" cy="57" r="1" fill="rgba(207,38,11,1)"/>
-  <circle cx="87" cy="57" r="1" fill="rgba(161,30,8,1)"/>
-  <circle cx="88" cy="57" r="1" fill="rgba(135,26,7,1)"/>
-  <circle cx="89" cy="57" r="1" fill="rgba(155,33,9,1)"/>
-  <circle cx="90" cy="57" r="1" fill="rgba(198,50,17,1)"/>
-  <circle cx="91" cy="57" r="1" fill="rgba(221,63,22,1)"/>
-  <circle cx="92" cy="57" r="1" fill="rgba(217,66,24,1)"/>
-  <circle cx="93" cy="57" r="1" fill="rgba(217,69,26,1)"/>
-  <circle cx="94" cy="57" r="1" fill="rgba(218,75,29,1)"/>
-  <circle cx="95" cy="57" r="1" fill="rgba(221,81,32,1)"/>
-  <circle cx="96" cy="57" r="1" fill="rgba(222,87,35,1)"/>
-  <circle cx="97" cy="57" r="1" fill="rgba(224,92,38,1)"/>
-  <circle cx="98" cy="57" r="1" fill="rgba(226,97,42,1)"/>
-  <circle cx="99" cy="57" r="1" fill="rgba(228,103,45,1)"/>
-  <circle cx="100" cy="57" r="1" fill="rgba(230,106,48,1)"/>
-  <circle cx="101" cy="57" r="1" fill="rgba(233,109,48,1)"/>
-  <circle cx="102" cy="57" r="1" fill="rgba(214,96,39,0.94902)"/>
-  <circle cx="103" cy="57" r="1" fill="rgba(80,23,6,0.27451)"/>
-  <circle cx="104" cy="57" r="1" fill="rgba(112,39,12,0.0470588)"/>
-  <circle cx="105" cy="57" r="1" fill="rgba(121,44,14,0)"/>
-  <circle cx="106" cy="57" r="1" fill="rgba(120,43,14,0)"/>
-  <circle cx="107" cy="57" r="1" fill="rgba(121,44,14,0)"/>
-  <circle cx="108" cy="57" r="1" fill="rgba(125,45,14,0)"/>
-  <circle cx="109" cy="57" r="1" fill="rgba(116,42,13,0)"/>
-  <circle cx="110" cy="57" r="1" fill="rgba(116,42,13,0)"/>
-  <circle cx="111" cy="57" r="1" fill="rgba(116,42,13,0)"/>
-  <circle cx="112" cy="57" r="1" fill="rgba(116,42,13,0)"/>
-  <circle cx="113" cy="57" r="1" fill="rgba(116,42,13,0)"/>
-  <circle cx="114" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="57" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="58" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="58" r="1" fill="rgba(103,71,44,0)"/>
-  <circle cx="19" cy="58" r="1" fill="rgba(100,68,41,0)"/>
-  <circle cx="20" cy="58" r="1" fill="rgba(96,64,37,0)"/>
-  <circle cx="21" cy="58" r="1" fill="rgba(92,59,34,0)"/>
-  <circle cx="22" cy="58" r="1" fill="rgba(86,54,30,0)"/>
-  <circle cx="23" cy="58" r="1" fill="rgba(81,49,26,0)"/>
-  <circle cx="24" cy="58" r="1" fill="rgba(76,44,22,0.0901961)"/>
-  <circle cx="25" cy="58" r="1" fill="rgba(68,38,19,0.670588)"/>
-  <circle cx="26" cy="58" r="1" fill="rgba(68,35,16,1)"/>
-  <circle cx="27" cy="58" r="1" fill="rgba(214,65,1,1)"/>
-  <circle cx="28" cy="58" r="1" fill="rgba(254,83,0,1)"/>
-  <circle cx="29" cy="58" r="1" fill="rgba(250,87,0,1)"/>
-  <circle cx="30" cy="58" r="1" fill="rgba(252,90,0,1)"/>
-  <circle cx="31" cy="58" r="1" fill="rgba(252,93,0,1)"/>
-  <circle cx="32" cy="58" r="1" fill="rgba(252,96,1,1)"/>
-  <circle cx="33" cy="58" r="1" fill="rgba(252,99,2,1)"/>
-  <circle cx="34" cy="58" r="1" fill="rgba(252,100,3,1)"/>
-  <circle cx="35" cy="58" r="1" fill="rgba(252,102,4,1)"/>
-  <circle cx="36" cy="58" r="1" fill="rgba(252,103,5,1)"/>
-  <circle cx="37" cy="58" r="1" fill="rgba(252,102,5,1)"/>
-  <circle cx="38" cy="58" r="1" fill="rgba(252,101,4,1)"/>
-  <circle cx="39" cy="58" r="1" fill="rgba(252,100,4,1)"/>
-  <circle cx="40" cy="58" r="1" fill="rgba(253,99,3,1)"/>
-  <circle cx="41" cy="58" r="1" fill="rgba(253,96,2,1)"/>
-  <circle cx="42" cy="58" r="1" fill="rgba(254,93,0,1)"/>
-  <circle cx="43" cy="58" r="1" fill="rgba(255,91,0,1)"/>
-  <circle cx="44" cy="58" r="1" fill="rgba(249,84,0,1)"/>
-  <circle cx="45" cy="58" r="1" fill="rgba(171,48,0,1)"/>
-  <circle cx="46" cy="58" r="1" fill="rgba(103,23,0,1)"/>
-  <circle cx="47" cy="58" r="1" fill="rgba(71,13,0,1)"/>
-  <circle cx="48" cy="58" r="1" fill="rgba(120,26,0,1)"/>
-  <circle cx="49" cy="58" r="1" fill="rgba(214,58,0,1)"/>
-  <circle cx="50" cy="58" r="1" fill="rgba(255,72,0,1)"/>
-  <circle cx="51" cy="58" r="1" fill="rgba(246,66,0,1)"/>
-  <circle cx="52" cy="58" r="1" fill="rgba(244,64,0,1)"/>
-  <circle cx="53" cy="58" r="1" fill="rgba(243,61,0,1)"/>
-  <circle cx="54" cy="58" r="1" fill="rgba(241,61,0,1)"/>
-  <circle cx="55" cy="58" r="1" fill="rgba(240,63,0,1)"/>
-  <circle cx="56" cy="58" r="1" fill="rgba(240,66,0,1)"/>
-  <circle cx="57" cy="58" r="1" fill="rgba(239,68,0,1)"/>
-  <circle cx="58" cy="58" r="1" fill="rgba(238,69,0,1)"/>
-  <circle cx="59" cy="58" r="1" fill="rgba(236,67,0,1)"/>
-  <circle cx="60" cy="58" r="1" fill="rgba(234,63,0,1)"/>
-  <circle cx="61" cy="58" r="1" fill="rgba(233,57,0,1)"/>
-  <circle cx="62" cy="58" r="1" fill="rgba(230,49,0,1)"/>
-  <circle cx="63" cy="58" r="1" fill="rgba(227,44,0,1)"/>
-  <circle cx="64" cy="58" r="1" fill="rgba(221,31,0,1)"/>
-  <circle cx="65" cy="58" r="1" fill="rgba(177,19,1,1)"/>
-  <circle cx="66" cy="58" r="1" fill="rgba(163,27,3,1)"/>
-  <circle cx="67" cy="58" r="1" fill="rgba(220,30,0,1)"/>
-  <circle cx="68" cy="58" r="1" fill="rgba(214,32,0,1)"/>
-  <circle cx="69" cy="58" r="1" fill="rgba(215,35,1,1)"/>
-  <circle cx="70" cy="58" r="1" fill="rgba(217,39,1,1)"/>
-  <circle cx="71" cy="58" r="1" fill="rgba(218,42,2,1)"/>
-  <circle cx="72" cy="58" r="1" fill="rgba(218,41,3,1)"/>
-  <circle cx="73" cy="58" r="1" fill="rgba(217,40,3,1)"/>
-  <circle cx="74" cy="58" r="1" fill="rgba(214,35,3,1)"/>
-  <circle cx="75" cy="58" r="1" fill="rgba(211,32,3,1)"/>
-  <circle cx="76" cy="58" r="1" fill="rgba(208,28,3,1)"/>
-  <circle cx="77" cy="58" r="1" fill="rgba(206,26,3,1)"/>
-  <circle cx="78" cy="58" r="1" fill="rgba(203,24,4,1)"/>
-  <circle cx="79" cy="58" r="1" fill="rgba(203,22,4,1)"/>
-  <circle cx="80" cy="58" r="1" fill="rgba(200,21,4,1)"/>
-  <circle cx="81" cy="58" r="1" fill="rgba(200,23,6,1)"/>
-  <circle cx="82" cy="58" r="1" fill="rgba(201,26,6,1)"/>
-  <circle cx="83" cy="58" r="1" fill="rgba(202,29,8,1)"/>
-  <circle cx="84" cy="58" r="1" fill="rgba(203,32,9,1)"/>
-  <circle cx="85" cy="58" r="1" fill="rgba(205,36,10,1)"/>
-  <circle cx="86" cy="58" r="1" fill="rgba(207,38,11,1)"/>
-  <circle cx="87" cy="58" r="1" fill="rgba(214,44,14,1)"/>
-  <circle cx="88" cy="58" r="1" fill="rgba(217,50,16,1)"/>
-  <circle cx="89" cy="58" r="1" fill="rgba(217,54,18,1)"/>
-  <circle cx="90" cy="58" r="1" fill="rgba(215,56,20,1)"/>
-  <circle cx="91" cy="58" r="1" fill="rgba(214,60,21,1)"/>
-  <circle cx="92" cy="58" r="1" fill="rgba(215,65,24,1)"/>
-  <circle cx="93" cy="58" r="1" fill="rgba(217,70,26,1)"/>
-  <circle cx="94" cy="58" r="1" fill="rgba(219,75,29,1)"/>
-  <circle cx="95" cy="58" r="1" fill="rgba(221,81,33,1)"/>
-  <circle cx="96" cy="58" r="1" fill="rgba(223,87,36,1)"/>
-  <circle cx="97" cy="58" r="1" fill="rgba(224,92,39,1)"/>
-  <circle cx="98" cy="58" r="1" fill="rgba(226,98,42,1)"/>
-  <circle cx="99" cy="58" r="1" fill="rgba(228,103,46,1)"/>
-  <circle cx="100" cy="58" r="1" fill="rgba(230,108,48,1)"/>
-  <circle cx="101" cy="58" r="1" fill="rgba(233,111,49,1)"/>
-  <circle cx="102" cy="58" r="1" fill="rgba(224,104,44,1)"/>
-  <circle cx="103" cy="58" r="1" fill="rgba(86,33,10,0.6)"/>
-  <circle cx="104" cy="58" r="1" fill="rgba(98,33,9,0.113725)"/>
-  <circle cx="105" cy="58" r="1" fill="rgba(123,45,14,0)"/>
-  <circle cx="106" cy="58" r="1" fill="rgba(122,45,14,0)"/>
-  <circle cx="107" cy="58" r="1" fill="rgba(122,45,14,0)"/>
-  <circle cx="108" cy="58" r="1" fill="rgba(122,45,14,0)"/>
-  <circle cx="109" cy="58" r="1" fill="rgba(123,45,14,0)"/>
-  <circle cx="110" cy="58" r="1" fill="rgba(123,45,14,0)"/>
-  <circle cx="111" cy="58" r="1" fill="rgba(123,45,14,0)"/>
-  <circle cx="112" cy="58" r="1" fill="rgba(123,45,14,0)"/>
-  <circle cx="113" cy="58" r="1" fill="rgba(124,45,14,0)"/>
-  <circle cx="114" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="58" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="59" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="59" r="1" fill="rgba(103,71,44,0)"/>
-  <circle cx="19" cy="59" r="1" fill="rgba(100,68,41,0)"/>
-  <circle cx="20" cy="59" r="1" fill="rgba(96,64,37,0)"/>
-  <circle cx="21" cy="59" r="1" fill="rgba(92,59,34,0)"/>
-  <circle cx="22" cy="59" r="1" fill="rgba(86,54,30,0)"/>
-  <circle cx="23" cy="59" r="1" fill="rgba(81,49,26,0.219608)"/>
-  <circle cx="24" cy="59" r="1" fill="rgba(77,45,23,0.827451)"/>
-  <circle cx="25" cy="59" r="1" fill="rgba(67,39,21,1)"/>
-  <circle cx="26" cy="59" r="1" fill="rgba(81,37,15,0.984314)"/>
-  <circle cx="27" cy="59" r="1" fill="rgba(235,70,0,0.984314)"/>
-  <circle cx="28" cy="59" r="1" fill="rgba(251,81,0,1)"/>
-  <circle cx="29" cy="59" r="1" fill="rgba(249,84,0,1)"/>
-  <circle cx="30" cy="59" r="1" fill="rgba(249,87,0,1)"/>
-  <circle cx="31" cy="59" r="1" fill="rgba(251,89,0,1)"/>
-  <circle cx="32" cy="59" r="1" fill="rgba(252,91,0,1)"/>
-  <circle cx="33" cy="59" r="1" fill="rgba(252,93,0,1)"/>
-  <circle cx="34" cy="59" r="1" fill="rgba(252,93,0,1)"/>
-  <circle cx="35" cy="59" r="1" fill="rgba(253,94,0,1)"/>
-  <circle cx="36" cy="59" r="1" fill="rgba(253,95,0,1)"/>
-  <circle cx="37" cy="59" r="1" fill="rgba(253,95,0,1)"/>
-  <circle cx="38" cy="59" r="1" fill="rgba(253,94,0,1)"/>
-  <circle cx="39" cy="59" r="1" fill="rgba(254,93,0,1)"/>
-  <circle cx="40" cy="59" r="1" fill="rgba(254,91,0,1)"/>
-  <circle cx="41" cy="59" r="1" fill="rgba(253,90,0,1)"/>
-  <circle cx="42" cy="59" r="1" fill="rgba(253,87,0,1)"/>
-  <circle cx="43" cy="59" r="1" fill="rgba(253,85,0,1)"/>
-  <circle cx="44" cy="59" r="1" fill="rgba(255,84,0,1)"/>
-  <circle cx="45" cy="59" r="1" fill="rgba(255,85,0,1)"/>
-  <circle cx="46" cy="59" r="1" fill="rgba(252,78,0,1)"/>
-  <circle cx="47" cy="59" r="1" fill="rgba(245,74,0,1)"/>
-  <circle cx="48" cy="59" r="1" fill="rgba(255,75,0,1)"/>
-  <circle cx="49" cy="59" r="1" fill="rgba(255,72,0,1)"/>
-  <circle cx="50" cy="59" r="1" fill="rgba(246,65,0,1)"/>
-  <circle cx="51" cy="59" r="1" fill="rgba(244,62,0,1)"/>
-  <circle cx="52" cy="59" r="1" fill="rgba(242,60,0,1)"/>
-  <circle cx="53" cy="59" r="1" fill="rgba(241,58,0,1)"/>
-  <circle cx="54" cy="59" r="1" fill="rgba(241,58,0,1)"/>
-  <circle cx="55" cy="59" r="1" fill="rgba(239,61,0,1)"/>
-  <circle cx="56" cy="59" r="1" fill="rgba(239,64,0,1)"/>
-  <circle cx="57" cy="59" r="1" fill="rgba(238,66,0,1)"/>
-  <circle cx="58" cy="59" r="1" fill="rgba(236,68,0,1)"/>
-  <circle cx="59" cy="59" r="1" fill="rgba(236,65,0,1)"/>
-  <circle cx="60" cy="59" r="1" fill="rgba(233,61,0,1)"/>
-  <circle cx="61" cy="59" r="1" fill="rgba(231,56,0,1)"/>
-  <circle cx="62" cy="59" r="1" fill="rgba(229,49,0,1)"/>
-  <circle cx="63" cy="59" r="1" fill="rgba(226,42,0,1)"/>
-  <circle cx="64" cy="59" r="1" fill="rgba(220,29,0,1)"/>
-  <circle cx="65" cy="59" r="1" fill="rgba(176,19,1,1)"/>
-  <circle cx="66" cy="59" r="1" fill="rgba(163,27,3,1)"/>
-  <circle cx="67" cy="59" r="1" fill="rgba(217,28,0,1)"/>
-  <circle cx="68" cy="59" r="1" fill="rgba(212,30,0,1)"/>
-  <circle cx="69" cy="59" r="1" fill="rgba(214,35,1,1)"/>
-  <circle cx="70" cy="59" r="1" fill="rgba(217,39,1,1)"/>
-  <circle cx="71" cy="59" r="1" fill="rgba(217,41,2,1)"/>
-  <circle cx="72" cy="59" r="1" fill="rgba(217,41,3,1)"/>
-  <circle cx="73" cy="59" r="1" fill="rgba(216,38,3,1)"/>
-  <circle cx="74" cy="59" r="1" fill="rgba(214,34,3,1)"/>
-  <circle cx="75" cy="59" r="1" fill="rgba(210,30,3,1)"/>
-  <circle cx="76" cy="59" r="1" fill="rgba(207,27,3,1)"/>
-  <circle cx="77" cy="59" r="1" fill="rgba(205,24,3,1)"/>
-  <circle cx="78" cy="59" r="1" fill="rgba(203,23,3,1)"/>
-  <circle cx="79" cy="59" r="1" fill="rgba(202,21,4,1)"/>
-  <circle cx="80" cy="59" r="1" fill="rgba(200,21,4,1)"/>
-  <circle cx="81" cy="59" r="1" fill="rgba(200,23,6,1)"/>
-  <circle cx="82" cy="59" r="1" fill="rgba(202,26,6,1)"/>
-  <circle cx="83" cy="59" r="1" fill="rgba(202,29,8,1)"/>
-  <circle cx="84" cy="59" r="1" fill="rgba(203,33,9,1)"/>
-  <circle cx="85" cy="59" r="1" fill="rgba(205,36,10,1)"/>
-  <circle cx="86" cy="59" r="1" fill="rgba(206,38,11,1)"/>
-  <circle cx="87" cy="59" r="1" fill="rgba(207,43,13,1)"/>
-  <circle cx="88" cy="59" r="1" fill="rgba(207,47,14,1)"/>
-  <circle cx="89" cy="59" r="1" fill="rgba(210,51,16,1)"/>
-  <circle cx="90" cy="59" r="1" fill="rgba(212,55,19,1)"/>
-  <circle cx="91" cy="59" r="1" fill="rgba(214,60,22,1)"/>
-  <circle cx="92" cy="59" r="1" fill="rgba(216,66,24,1)"/>
-  <circle cx="93" cy="59" r="1" fill="rgba(217,70,26,1)"/>
-  <circle cx="94" cy="59" r="1" fill="rgba(219,76,29,1)"/>
-  <circle cx="95" cy="59" r="1" fill="rgba(221,82,33,1)"/>
-  <circle cx="96" cy="59" r="1" fill="rgba(223,87,36,1)"/>
-  <circle cx="97" cy="59" r="1" fill="rgba(224,93,39,1)"/>
-  <circle cx="98" cy="59" r="1" fill="rgba(227,99,43,1)"/>
-  <circle cx="99" cy="59" r="1" fill="rgba(230,105,47,1)"/>
-  <circle cx="100" cy="59" r="1" fill="rgba(231,110,48,1)"/>
-  <circle cx="101" cy="59" r="1" fill="rgba(233,111,49,1)"/>
-  <circle cx="102" cy="59" r="1" fill="rgba(230,108,47,1)"/>
-  <circle cx="103" cy="59" r="1" fill="rgba(106,48,20,0.992157)"/>
-  <circle cx="104" cy="59" r="1" fill="rgba(73,28,9,0.466667)"/>
-  <circle cx="105" cy="59" r="1" fill="rgba(126,47,14,0)"/>
-  <circle cx="106" cy="59" r="1" fill="rgba(130,51,16,0)"/>
-  <circle cx="107" cy="59" r="1" fill="rgba(130,50,16,0)"/>
-  <circle cx="108" cy="59" r="1" fill="rgba(130,50,16,0)"/>
-  <circle cx="109" cy="59" r="1" fill="rgba(130,49,16,0)"/>
-  <circle cx="110" cy="59" r="1" fill="rgba(130,49,16,0)"/>
-  <circle cx="111" cy="59" r="1" fill="rgba(130,49,16,0)"/>
-  <circle cx="112" cy="59" r="1" fill="rgba(130,49,15,0)"/>
-  <circle cx="113" cy="59" r="1" fill="rgba(130,48,14,0)"/>
-  <circle cx="114" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="59" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="60" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="60" r="1" fill="rgba(103,71,44,0)"/>
-  <circle cx="19" cy="60" r="1" fill="rgba(100,68,41,0)"/>
-  <circle cx="20" cy="60" r="1" fill="rgba(96,64,37,0)"/>
-  <circle cx="21" cy="60" r="1" fill="rgba(92,59,34,0)"/>
-  <circle cx="22" cy="60" r="1" fill="rgba(87,54,30,0.419608)"/>
-  <circle cx="23" cy="60" r="1" fill="rgba(83,50,27,0.94902)"/>
-  <circle cx="24" cy="60" r="1" fill="rgba(78,46,24,1)"/>
-  <circle cx="25" cy="60" r="1" fill="rgba(50,38,23,0.882353)"/>
-  <circle cx="26" cy="60" r="1" fill="rgba(159,51,7,0.427451)"/>
-  <circle cx="27" cy="60" r="1" fill="rgba(252,72,0,0.945098)"/>
-  <circle cx="28" cy="60" r="1" fill="rgba(247,78,0,1)"/>
-  <circle cx="29" cy="60" r="1" fill="rgba(248,83,0,1)"/>
-  <circle cx="30" cy="60" r="1" fill="rgba(249,87,0,1)"/>
-  <circle cx="31" cy="60" r="1" fill="rgba(250,89,0,1)"/>
-  <circle cx="32" cy="60" r="1" fill="rgba(251,91,0,1)"/>
-  <circle cx="33" cy="60" r="1" fill="rgba(252,90,0,1)"/>
-  <circle cx="34" cy="60" r="1" fill="rgba(252,89,0,1)"/>
-  <circle cx="35" cy="60" r="1" fill="rgba(252,89,0,1)"/>
-  <circle cx="36" cy="60" r="1" fill="rgba(253,89,0,1)"/>
-  <circle cx="37" cy="60" r="1" fill="rgba(252,89,0,1)"/>
-  <circle cx="38" cy="60" r="1" fill="rgba(252,89,0,1)"/>
-  <circle cx="39" cy="60" r="1" fill="rgba(253,87,0,1)"/>
-  <circle cx="40" cy="60" r="1" fill="rgba(253,87,0,1)"/>
-  <circle cx="41" cy="60" r="1" fill="rgba(252,85,0,1)"/>
-  <circle cx="42" cy="60" r="1" fill="rgba(252,84,0,1)"/>
-  <circle cx="43" cy="60" r="1" fill="rgba(252,82,0,1)"/>
-  <circle cx="44" cy="60" r="1" fill="rgba(252,79,0,1)"/>
-  <circle cx="45" cy="60" r="1" fill="rgba(250,76,0,1)"/>
-  <circle cx="46" cy="60" r="1" fill="rgba(251,75,0,1)"/>
-  <circle cx="47" cy="60" r="1" fill="rgba(252,73,0,1)"/>
-  <circle cx="48" cy="60" r="1" fill="rgba(249,69,0,1)"/>
-  <circle cx="49" cy="60" r="1" fill="rgba(247,66,0,1)"/>
-  <circle cx="50" cy="60" r="1" fill="rgba(244,62,0,1)"/>
-  <circle cx="51" cy="60" r="1" fill="rgba(243,60,0,1)"/>
-  <circle cx="52" cy="60" r="1" fill="rgba(241,57,0,1)"/>
-  <circle cx="53" cy="60" r="1" fill="rgba(240,55,0,1)"/>
-  <circle cx="54" cy="60" r="1" fill="rgba(239,57,0,1)"/>
-  <circle cx="55" cy="60" r="1" fill="rgba(238,59,0,1)"/>
-  <circle cx="56" cy="60" r="1" fill="rgba(238,62,0,1)"/>
-  <circle cx="57" cy="60" r="1" fill="rgba(237,64,0,1)"/>
-  <circle cx="58" cy="60" r="1" fill="rgba(236,66,0,1)"/>
-  <circle cx="59" cy="60" r="1" fill="rgba(234,64,0,1)"/>
-  <circle cx="60" cy="60" r="1" fill="rgba(233,60,0,1)"/>
-  <circle cx="61" cy="60" r="1" fill="rgba(230,54,0,1)"/>
-  <circle cx="62" cy="60" r="1" fill="rgba(228,47,0,1)"/>
-  <circle cx="63" cy="60" r="1" fill="rgba(225,41,0,1)"/>
-  <circle cx="64" cy="60" r="1" fill="rgba(219,29,0,1)"/>
-  <circle cx="65" cy="60" r="1" fill="rgba(176,20,1,1)"/>
-  <circle cx="66" cy="60" r="1" fill="rgba(163,28,3,1)"/>
-  <circle cx="67" cy="60" r="1" fill="rgba(216,27,0,1)"/>
-  <circle cx="68" cy="60" r="1" fill="rgba(210,30,0,1)"/>
-  <circle cx="69" cy="60" r="1" fill="rgba(214,34,1,1)"/>
-  <circle cx="70" cy="60" r="1" fill="rgba(216,39,1,1)"/>
-  <circle cx="71" cy="60" r="1" fill="rgba(217,41,2,1)"/>
-  <circle cx="72" cy="60" r="1" fill="rgba(217,40,3,1)"/>
-  <circle cx="73" cy="60" r="1" fill="rgba(215,36,3,1)"/>
-  <circle cx="74" cy="60" r="1" fill="rgba(213,32,3,1)"/>
-  <circle cx="75" cy="60" r="1" fill="rgba(209,29,3,1)"/>
-  <circle cx="76" cy="60" r="1" fill="rgba(206,25,3,1)"/>
-  <circle cx="77" cy="60" r="1" fill="rgba(204,23,3,1)"/>
-  <circle cx="78" cy="60" r="1" fill="rgba(203,21,3,1)"/>
-  <circle cx="79" cy="60" r="1" fill="rgba(201,21,4,1)"/>
-  <circle cx="80" cy="60" r="1" fill="rgba(200,21,4,1)"/>
-  <circle cx="81" cy="60" r="1" fill="rgba(200,23,5,1)"/>
-  <circle cx="82" cy="60" r="1" fill="rgba(202,26,6,1)"/>
-  <circle cx="83" cy="60" r="1" fill="rgba(203,30,8,1)"/>
-  <circle cx="84" cy="60" r="1" fill="rgba(203,33,9,1)"/>
-  <circle cx="85" cy="60" r="1" fill="rgba(204,35,10,1)"/>
-  <circle cx="86" cy="60" r="1" fill="rgba(207,39,11,1)"/>
-  <circle cx="87" cy="60" r="1" fill="rgba(207,43,13,1)"/>
-  <circle cx="88" cy="60" r="1" fill="rgba(208,47,14,1)"/>
-  <circle cx="89" cy="60" r="1" fill="rgba(210,51,16,1)"/>
-  <circle cx="90" cy="60" r="1" fill="rgba(212,56,20,1)"/>
-  <circle cx="91" cy="60" r="1" fill="rgba(214,61,22,1)"/>
-  <circle cx="92" cy="60" r="1" fill="rgba(216,66,24,1)"/>
-  <circle cx="93" cy="60" r="1" fill="rgba(217,71,27,1)"/>
-  <circle cx="94" cy="60" r="1" fill="rgba(219,76,30,1)"/>
-  <circle cx="95" cy="60" r="1" fill="rgba(221,82,33,1)"/>
-  <circle cx="96" cy="60" r="1" fill="rgba(224,88,36,1)"/>
-  <circle cx="97" cy="60" r="1" fill="rgba(225,94,39,1)"/>
-  <circle cx="98" cy="60" r="1" fill="rgba(227,100,43,1)"/>
-  <circle cx="99" cy="60" r="1" fill="rgba(230,106,48,1)"/>
-  <circle cx="100" cy="60" r="1" fill="rgba(231,110,50,1)"/>
-  <circle cx="101" cy="60" r="1" fill="rgba(233,112,50,1)"/>
-  <circle cx="102" cy="60" r="1" fill="rgba(236,112,48,1)"/>
-  <circle cx="103" cy="60" r="1" fill="rgba(128,55,22,1)"/>
-  <circle cx="104" cy="60" r="1" fill="rgba(46,26,12,0.952941)"/>
-  <circle cx="105" cy="60" r="1" fill="rgba(97,38,13,0.278431)"/>
-  <circle cx="106" cy="60" r="1" fill="rgba(115,43,13,0)"/>
-  <circle cx="107" cy="60" r="1" fill="rgba(113,42,14,0)"/>
-  <circle cx="108" cy="60" r="1" fill="rgba(113,43,14,0)"/>
-  <circle cx="109" cy="60" r="1" fill="rgba(114,43,14,0)"/>
-  <circle cx="110" cy="60" r="1" fill="rgba(114,43,14,0)"/>
-  <circle cx="111" cy="60" r="1" fill="rgba(114,43,14,0)"/>
-  <circle cx="112" cy="60" r="1" fill="rgba(115,44,14,0)"/>
-  <circle cx="113" cy="60" r="1" fill="rgba(111,65,35,0)"/>
-  <circle cx="114" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="60" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="61" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="61" r="1" fill="rgba(103,71,44,0)"/>
-  <circle cx="19" cy="61" r="1" fill="rgba(100,68,41,0)"/>
-  <circle cx="20" cy="61" r="1" fill="rgba(96,64,37,0.14902)"/>
-  <circle cx="21" cy="61" r="1" fill="rgba(92,59,34,0.682353)"/>
-  <circle cx="22" cy="61" r="1" fill="rgba(87,55,31,1)"/>
-  <circle cx="23" cy="61" r="1" fill="rgba(84,51,27,1)"/>
-  <circle cx="24" cy="61" r="1" fill="rgba(63,44,26,0.870588)"/>
-  <circle cx="25" cy="61" r="1" fill="rgba(135,57,13,0.160784)"/>
-  <circle cx="26" cy="61" r="1" fill="rgba(244,77,0,0.2)"/>
-  <circle cx="27" cy="61" r="1" fill="rgba(245,70,0,0.996078)"/>
-  <circle cx="28" cy="61" r="1" fill="rgba(246,78,0,1)"/>
-  <circle cx="29" cy="61" r="1" fill="rgba(248,85,1,1)"/>
-  <circle cx="30" cy="61" r="1" fill="rgba(249,90,1,1)"/>
-  <circle cx="31" cy="61" r="1" fill="rgba(250,91,1,1)"/>
-  <circle cx="32" cy="61" r="1" fill="rgba(251,92,1,1)"/>
-  <circle cx="33" cy="61" r="1" fill="rgba(251,91,0,1)"/>
-  <circle cx="34" cy="61" r="1" fill="rgba(252,88,0,1)"/>
-  <circle cx="35" cy="61" r="1" fill="rgba(252,87,0,1)"/>
-  <circle cx="36" cy="61" r="1" fill="rgba(251,85,0,1)"/>
-  <circle cx="37" cy="61" r="1" fill="rgba(252,85,0,1)"/>
-  <circle cx="38" cy="61" r="1" fill="rgba(252,84,0,1)"/>
-  <circle cx="39" cy="61" r="1" fill="rgba(252,83,0,1)"/>
-  <circle cx="40" cy="61" r="1" fill="rgba(252,83,0,1)"/>
-  <circle cx="41" cy="61" r="1" fill="rgba(252,81,0,1)"/>
-  <circle cx="42" cy="61" r="1" fill="rgba(251,80,0,1)"/>
-  <circle cx="43" cy="61" r="1" fill="rgba(250,77,0,1)"/>
-  <circle cx="44" cy="61" r="1" fill="rgba(249,76,0,1)"/>
-  <circle cx="45" cy="61" r="1" fill="rgba(248,73,0,1)"/>
-  <circle cx="46" cy="61" r="1" fill="rgba(249,71,0,1)"/>
-  <circle cx="47" cy="61" r="1" fill="rgba(248,68,0,1)"/>
-  <circle cx="48" cy="61" r="1" fill="rgba(247,65,0,1)"/>
-  <circle cx="49" cy="61" r="1" fill="rgba(244,62,0,1)"/>
-  <circle cx="50" cy="61" r="1" fill="rgba(243,59,0,1)"/>
-  <circle cx="51" cy="61" r="1" fill="rgba(242,56,0,1)"/>
-  <circle cx="52" cy="61" r="1" fill="rgba(240,54,0,1)"/>
-  <circle cx="53" cy="61" r="1" fill="rgba(239,53,0,1)"/>
-  <circle cx="54" cy="61" r="1" fill="rgba(238,55,0,1)"/>
-  <circle cx="55" cy="61" r="1" fill="rgba(236,57,0,1)"/>
-  <circle cx="56" cy="61" r="1" fill="rgba(236,61,0,1)"/>
-  <circle cx="57" cy="61" r="1" fill="rgba(236,63,0,1)"/>
-  <circle cx="58" cy="61" r="1" fill="rgba(236,65,0,1)"/>
-  <circle cx="59" cy="61" r="1" fill="rgba(234,63,0,1)"/>
-  <circle cx="60" cy="61" r="1" fill="rgba(232,58,0,1)"/>
-  <circle cx="61" cy="61" r="1" fill="rgba(230,53,0,1)"/>
-  <circle cx="62" cy="61" r="1" fill="rgba(227,46,0,1)"/>
-  <circle cx="63" cy="61" r="1" fill="rgba(224,40,0,1)"/>
-  <circle cx="64" cy="61" r="1" fill="rgba(218,28,0,1)"/>
-  <circle cx="65" cy="61" r="1" fill="rgba(175,20,1,1)"/>
-  <circle cx="66" cy="61" r="1" fill="rgba(161,28,4,1)"/>
-  <circle cx="67" cy="61" r="1" fill="rgba(214,26,0,1)"/>
-  <circle cx="68" cy="61" r="1" fill="rgba(210,30,0,1)"/>
-  <circle cx="69" cy="61" r="1" fill="rgba(214,34,1,1)"/>
-  <circle cx="70" cy="61" r="1" fill="rgba(215,37,2,1)"/>
-  <circle cx="71" cy="61" r="1" fill="rgba(217,39,2,1)"/>
-  <circle cx="72" cy="61" r="1" fill="rgba(216,38,3,1)"/>
-  <circle cx="73" cy="61" r="1" fill="rgba(214,35,3,1)"/>
-  <circle cx="74" cy="61" r="1" fill="rgba(211,31,3,1)"/>
-  <circle cx="75" cy="61" r="1" fill="rgba(208,28,3,1)"/>
-  <circle cx="76" cy="61" r="1" fill="rgba(206,24,3,1)"/>
-  <circle cx="77" cy="61" r="1" fill="rgba(203,21,3,1)"/>
-  <circle cx="78" cy="61" r="1" fill="rgba(202,21,3,1)"/>
-  <circle cx="79" cy="61" r="1" fill="rgba(200,20,4,1)"/>
-  <circle cx="80" cy="61" r="1" fill="rgba(200,20,5,1)"/>
-  <circle cx="81" cy="61" r="1" fill="rgba(201,24,5,1)"/>
-  <circle cx="82" cy="61" r="1" fill="rgba(202,27,6,1)"/>
-  <circle cx="83" cy="61" r="1" fill="rgba(203,29,8,1)"/>
-  <circle cx="84" cy="61" r="1" fill="rgba(203,33,9,1)"/>
-  <circle cx="85" cy="61" r="1" fill="rgba(204,36,10,1)"/>
-  <circle cx="86" cy="61" r="1" fill="rgba(207,40,12,1)"/>
-  <circle cx="87" cy="61" r="1" fill="rgba(207,43,13,1)"/>
-  <circle cx="88" cy="61" r="1" fill="rgba(208,47,14,1)"/>
-  <circle cx="89" cy="61" r="1" fill="rgba(210,52,17,1)"/>
-  <circle cx="90" cy="61" r="1" fill="rgba(212,57,20,1)"/>
-  <circle cx="91" cy="61" r="1" fill="rgba(214,61,22,1)"/>
-  <circle cx="92" cy="61" r="1" fill="rgba(216,66,24,1)"/>
-  <circle cx="93" cy="61" r="1" fill="rgba(217,71,27,1)"/>
-  <circle cx="94" cy="61" r="1" fill="rgba(220,77,30,1)"/>
-  <circle cx="95" cy="61" r="1" fill="rgba(221,82,33,1)"/>
-  <circle cx="96" cy="61" r="1" fill="rgba(224,89,36,1)"/>
-  <circle cx="97" cy="61" r="1" fill="rgba(226,95,40,1)"/>
-  <circle cx="98" cy="61" r="1" fill="rgba(227,101,44,1)"/>
-  <circle cx="99" cy="61" r="1" fill="rgba(230,106,48,1)"/>
-  <circle cx="100" cy="61" r="1" fill="rgba(231,112,50,1)"/>
-  <circle cx="101" cy="61" r="1" fill="rgba(233,113,51,1)"/>
-  <circle cx="102" cy="61" r="1" fill="rgba(242,116,51,1)"/>
-  <circle cx="103" cy="61" r="1" fill="rgba(147,64,24,1)"/>
-  <circle cx="104" cy="61" r="1" fill="rgba(45,26,13,1)"/>
-  <circle cx="105" cy="61" r="1" fill="rgba(67,36,17,0.894118)"/>
-  <circle cx="106" cy="61" r="1" fill="rgba(74,39,19,0.14902)"/>
-  <circle cx="107" cy="61" r="1" fill="rgba(80,46,23,0)"/>
-  <circle cx="108" cy="61" r="1" fill="rgba(84,51,27,0)"/>
-  <circle cx="109" cy="61" r="1" fill="rgba(91,56,31,0)"/>
-  <circle cx="110" cy="61" r="1" fill="rgba(96,61,35,0)"/>
-  <circle cx="111" cy="61" r="1" fill="rgba(99,66,39,0)"/>
-  <circle cx="112" cy="61" r="1" fill="rgba(103,69,42,0)"/>
-  <circle cx="113" cy="61" r="1" fill="rgba(105,75,48,0)"/>
-  <circle cx="114" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="61" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="62" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="62" r="1" fill="rgba(103,71,44,0.0666667)"/>
-  <circle cx="19" cy="62" r="1" fill="rgba(100,68,41,0.443137)"/>
-  <circle cx="20" cy="62" r="1" fill="rgba(96,64,37,0.905882)"/>
-  <circle cx="21" cy="62" r="1" fill="rgba(92,59,34,1)"/>
-  <circle cx="22" cy="62" r="1" fill="rgba(87,55,31,1)"/>
-  <circle cx="23" cy="62" r="1" fill="rgba(73,49,30,0.815686)"/>
-  <circle cx="24" cy="62" r="1" fill="rgba(140,58,15,0.129412)"/>
-  <circle cx="25" cy="62" r="1" fill="rgba(255,92,0,0)"/>
-  <circle cx="26" cy="62" r="1" fill="rgba(254,79,0,0.345098)"/>
-  <circle cx="27" cy="62" r="1" fill="rgba(241,68,0,1)"/>
-  <circle cx="28" cy="62" r="1" fill="rgba(247,81,1,1)"/>
-  <circle cx="29" cy="62" r="1" fill="rgba(249,88,1,1)"/>
-  <circle cx="30" cy="62" r="1" fill="rgba(250,92,2,1)"/>
-  <circle cx="31" cy="62" r="1" fill="rgba(251,92,1,1)"/>
-  <circle cx="32" cy="62" r="1" fill="rgba(251,91,0,1)"/>
-  <circle cx="33" cy="62" r="1" fill="rgba(251,89,0,1)"/>
-  <circle cx="34" cy="62" r="1" fill="rgba(251,87,0,1)"/>
-  <circle cx="35" cy="62" r="1" fill="rgba(251,84,0,1)"/>
-  <circle cx="36" cy="62" r="1" fill="rgba(250,81,0,1)"/>
-  <circle cx="37" cy="62" r="1" fill="rgba(250,81,0,1)"/>
-  <circle cx="38" cy="62" r="1" fill="rgba(251,80,0,1)"/>
-  <circle cx="39" cy="62" r="1" fill="rgba(250,79,0,1)"/>
-  <circle cx="40" cy="62" r="1" fill="rgba(250,78,0,1)"/>
-  <circle cx="41" cy="62" r="1" fill="rgba(250,77,0,1)"/>
-  <circle cx="42" cy="62" r="1" fill="rgba(249,76,0,1)"/>
-  <circle cx="43" cy="62" r="1" fill="rgba(249,74,0,1)"/>
-  <circle cx="44" cy="62" r="1" fill="rgba(248,72,0,1)"/>
-  <circle cx="45" cy="62" r="1" fill="rgba(247,70,0,1)"/>
-  <circle cx="46" cy="62" r="1" fill="rgba(247,67,0,1)"/>
-  <circle cx="47" cy="62" r="1" fill="rgba(246,65,0,1)"/>
-  <circle cx="48" cy="62" r="1" fill="rgba(244,62,0,1)"/>
-  <circle cx="49" cy="62" r="1" fill="rgba(243,59,0,1)"/>
-  <circle cx="50" cy="62" r="1" fill="rgba(241,55,0,1)"/>
-  <circle cx="51" cy="62" r="1" fill="rgba(240,53,0,1)"/>
-  <circle cx="52" cy="62" r="1" fill="rgba(238,51,0,1)"/>
-  <circle cx="53" cy="62" r="1" fill="rgba(238,52,0,1)"/>
-  <circle cx="54" cy="62" r="1" fill="rgba(237,53,0,1)"/>
-  <circle cx="55" cy="62" r="1" fill="rgba(235,56,0,1)"/>
-  <circle cx="56" cy="62" r="1" fill="rgba(235,59,0,1)"/>
-  <circle cx="57" cy="62" r="1" fill="rgba(234,61,0,1)"/>
-  <circle cx="58" cy="62" r="1" fill="rgba(233,63,0,1)"/>
-  <circle cx="59" cy="62" r="1" fill="rgba(233,61,0,1)"/>
-  <circle cx="60" cy="62" r="1" fill="rgba(231,56,0,1)"/>
-  <circle cx="61" cy="62" r="1" fill="rgba(229,51,0,1)"/>
-  <circle cx="62" cy="62" r="1" fill="rgba(225,45,0,1)"/>
-  <circle cx="63" cy="62" r="1" fill="rgba(223,38,0,1)"/>
-  <circle cx="64" cy="62" r="1" fill="rgba(217,27,0,1)"/>
-  <circle cx="65" cy="62" r="1" fill="rgba(174,19,1,1)"/>
-  <circle cx="66" cy="62" r="1" fill="rgba(162,29,4,1)"/>
-  <circle cx="67" cy="62" r="1" fill="rgba(214,26,0,1)"/>
-  <circle cx="68" cy="62" r="1" fill="rgba(210,29,0,1)"/>
-  <circle cx="69" cy="62" r="1" fill="rgba(213,33,1,1)"/>
-  <circle cx="70" cy="62" r="1" fill="rgba(214,37,2,1)"/>
-  <circle cx="71" cy="62" r="1" fill="rgba(215,39,2,1)"/>
-  <circle cx="72" cy="62" r="1" fill="rgba(215,38,3,1)"/>
-  <circle cx="73" cy="62" r="1" fill="rgba(213,34,3,1)"/>
-  <circle cx="74" cy="62" r="1" fill="rgba(210,30,3,1)"/>
-  <circle cx="75" cy="62" r="1" fill="rgba(207,27,3,1)"/>
-  <circle cx="76" cy="62" r="1" fill="rgba(205,23,3,1)"/>
-  <circle cx="77" cy="62" r="1" fill="rgba(202,20,3,1)"/>
-  <circle cx="78" cy="62" r="1" fill="rgba(200,20,3,1)"/>
-  <circle cx="79" cy="62" r="1" fill="rgba(200,19,4,1)"/>
-  <circle cx="80" cy="62" r="1" fill="rgba(200,21,5,1)"/>
-  <circle cx="81" cy="62" r="1" fill="rgba(201,24,6,1)"/>
-  <circle cx="82" cy="62" r="1" fill="rgba(202,27,6,1)"/>
-  <circle cx="83" cy="62" r="1" fill="rgba(203,29,8,1)"/>
-  <circle cx="84" cy="62" r="1" fill="rgba(204,33,9,1)"/>
-  <circle cx="85" cy="62" r="1" fill="rgba(205,37,10,1)"/>
-  <circle cx="86" cy="62" r="1" fill="rgba(206,40,12,1)"/>
-  <circle cx="87" cy="62" r="1" fill="rgba(208,44,13,1)"/>
-  <circle cx="88" cy="62" r="1" fill="rgba(209,48,15,1)"/>
-  <circle cx="89" cy="62" r="1" fill="rgba(210,52,18,1)"/>
-  <circle cx="90" cy="62" r="1" fill="rgba(212,57,20,1)"/>
-  <circle cx="91" cy="62" r="1" fill="rgba(214,62,22,1)"/>
-  <circle cx="92" cy="62" r="1" fill="rgba(216,67,24,1)"/>
-  <circle cx="93" cy="62" r="1" fill="rgba(217,72,27,1)"/>
-  <circle cx="94" cy="62" r="1" fill="rgba(220,78,30,1)"/>
-  <circle cx="95" cy="62" r="1" fill="rgba(222,84,33,1)"/>
-  <circle cx="96" cy="62" r="1" fill="rgba(224,89,37,1)"/>
-  <circle cx="97" cy="62" r="1" fill="rgba(226,96,41,1)"/>
-  <circle cx="98" cy="62" r="1" fill="rgba(228,102,44,1)"/>
-  <circle cx="99" cy="62" r="1" fill="rgba(230,107,48,1)"/>
-  <circle cx="100" cy="62" r="1" fill="rgba(232,112,50,1)"/>
-  <circle cx="101" cy="62" r="1" fill="rgba(233,114,52,1)"/>
-  <circle cx="102" cy="62" r="1" fill="rgba(244,117,52,1)"/>
-  <circle cx="103" cy="62" r="1" fill="rgba(162,71,28,0.988235)"/>
-  <circle cx="104" cy="62" r="1" fill="rgba(49,28,13,1)"/>
-  <circle cx="105" cy="62" r="1" fill="rgba(69,38,19,1)"/>
-  <circle cx="106" cy="62" r="1" fill="rgba(73,41,21,0.819608)"/>
-  <circle cx="107" cy="62" r="1" fill="rgba(77,46,24,0.0941176)"/>
-  <circle cx="108" cy="62" r="1" fill="rgba(84,52,29,0)"/>
-  <circle cx="109" cy="62" r="1" fill="rgba(91,58,33,0)"/>
-  <circle cx="110" cy="62" r="1" fill="rgba(96,63,38,0)"/>
-  <circle cx="111" cy="62" r="1" fill="rgba(100,69,42,0)"/>
-  <circle cx="112" cy="62" r="1" fill="rgba(104,72,46,0)"/>
-  <circle cx="113" cy="62" r="1" fill="rgba(106,74,47,0)"/>
-  <circle cx="114" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="62" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="63" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="63" r="1" fill="rgba(104,72,45,0.113725)"/>
-  <circle cx="16" cy="63" r="1" fill="rgba(106,75,47,0.592157)"/>
-  <circle cx="17" cy="63" r="1" fill="rgba(105,73,46,0.721569)"/>
-  <circle cx="18" cy="63" r="1" fill="rgba(102,70,43,0.87451)"/>
-  <circle cx="19" cy="63" r="1" fill="rgba(99,67,40,1)"/>
-  <circle cx="20" cy="63" r="1" fill="rgba(95,62,37,1)"/>
-  <circle cx="21" cy="63" r="1" fill="rgba(92,59,33,1)"/>
-  <circle cx="22" cy="63" r="1" fill="rgba(88,56,31,0.756863)"/>
-  <circle cx="23" cy="63" r="1" fill="rgba(59,38,20,0.109804)"/>
-  <circle cx="24" cy="63" r="1" fill="rgba(110,33,3,0)"/>
-  <circle cx="25" cy="63" r="1" fill="rgba(173,56,1,0)"/>
-  <circle cx="26" cy="63" r="1" fill="rgba(212,60,0,0.435294)"/>
-  <circle cx="27" cy="63" r="1" fill="rgba(246,76,3,1)"/>
-  <circle cx="28" cy="63" r="1" fill="rgba(249,122,46,1)"/>
-  <circle cx="29" cy="63" r="1" fill="rgba(249,102,13,1)"/>
-  <circle cx="30" cy="63" r="1" fill="rgba(251,93,3,1)"/>
-  <circle cx="31" cy="63" r="1" fill="rgba(251,92,3,1)"/>
-  <circle cx="32" cy="63" r="1" fill="rgba(251,87,0,1)"/>
-  <circle cx="33" cy="63" r="1" fill="rgba(251,85,0,1)"/>
-  <circle cx="34" cy="63" r="1" fill="rgba(250,84,0,1)"/>
-  <circle cx="35" cy="63" r="1" fill="rgba(250,81,0,1)"/>
-  <circle cx="36" cy="63" r="1" fill="rgba(249,78,0,1)"/>
-  <circle cx="37" cy="63" r="1" fill="rgba(249,76,0,1)"/>
-  <circle cx="38" cy="63" r="1" fill="rgba(249,76,0,1)"/>
-  <circle cx="39" cy="63" r="1" fill="rgba(249,75,0,1)"/>
-  <circle cx="40" cy="63" r="1" fill="rgba(249,74,0,1)"/>
-  <circle cx="41" cy="63" r="1" fill="rgba(249,73,0,1)"/>
-  <circle cx="42" cy="63" r="1" fill="rgba(248,70,0,1)"/>
-  <circle cx="43" cy="63" r="1" fill="rgba(247,70,0,1)"/>
-  <circle cx="44" cy="63" r="1" fill="rgba(246,68,0,1)"/>
-  <circle cx="45" cy="63" r="1" fill="rgba(246,66,0,1)"/>
-  <circle cx="46" cy="63" r="1" fill="rgba(246,63,0,1)"/>
-  <circle cx="47" cy="63" r="1" fill="rgba(244,61,0,1)"/>
-  <circle cx="48" cy="63" r="1" fill="rgba(242,58,0,1)"/>
-  <circle cx="49" cy="63" r="1" fill="rgba(241,55,0,1)"/>
-  <circle cx="50" cy="63" r="1" fill="rgba(239,52,0,1)"/>
-  <circle cx="51" cy="63" r="1" fill="rgba(238,52,0,1)"/>
-  <circle cx="52" cy="63" r="1" fill="rgba(237,50,0,1)"/>
-  <circle cx="53" cy="63" r="1" fill="rgba(236,51,0,1)"/>
-  <circle cx="54" cy="63" r="1" fill="rgba(235,52,0,1)"/>
-  <circle cx="55" cy="63" r="1" fill="rgba(234,54,0,1)"/>
-  <circle cx="56" cy="63" r="1" fill="rgba(234,57,0,1)"/>
-  <circle cx="57" cy="63" r="1" fill="rgba(233,59,0,1)"/>
-  <circle cx="58" cy="63" r="1" fill="rgba(233,61,0,1)"/>
-  <circle cx="59" cy="63" r="1" fill="rgba(232,58,0,1)"/>
-  <circle cx="60" cy="63" r="1" fill="rgba(230,54,0,1)"/>
-  <circle cx="61" cy="63" r="1" fill="rgba(227,48,0,1)"/>
-  <circle cx="62" cy="63" r="1" fill="rgba(224,43,0,1)"/>
-  <circle cx="63" cy="63" r="1" fill="rgba(222,36,0,1)"/>
-  <circle cx="64" cy="63" r="1" fill="rgba(216,26,0,1)"/>
-  <circle cx="65" cy="63" r="1" fill="rgba(174,20,2,1)"/>
-  <circle cx="66" cy="63" r="1" fill="rgba(162,29,5,1)"/>
-  <circle cx="67" cy="63" r="1" fill="rgba(212,25,0,1)"/>
-  <circle cx="68" cy="63" r="1" fill="rgba(209,29,0,1)"/>
-  <circle cx="69" cy="63" r="1" fill="rgba(212,33,1,1)"/>
-  <circle cx="70" cy="63" r="1" fill="rgba(214,37,2,1)"/>
-  <circle cx="71" cy="63" r="1" fill="rgba(215,38,3,1)"/>
-  <circle cx="72" cy="63" r="1" fill="rgba(214,37,3,1)"/>
-  <circle cx="73" cy="63" r="1" fill="rgba(212,33,3,1)"/>
-  <circle cx="74" cy="63" r="1" fill="rgba(209,29,3,1)"/>
-  <circle cx="75" cy="63" r="1" fill="rgba(206,25,3,1)"/>
-  <circle cx="76" cy="63" r="1" fill="rgba(203,22,3,1)"/>
-  <circle cx="77" cy="63" r="1" fill="rgba(201,20,3,1)"/>
-  <circle cx="78" cy="63" r="1" fill="rgba(200,19,3,1)"/>
-  <circle cx="79" cy="63" r="1" fill="rgba(200,19,4,1)"/>
-  <circle cx="80" cy="63" r="1" fill="rgba(200,22,5,1)"/>
-  <circle cx="81" cy="63" r="1" fill="rgba(201,25,6,1)"/>
-  <circle cx="82" cy="63" r="1" fill="rgba(202,27,7,1)"/>
-  <circle cx="83" cy="63" r="1" fill="rgba(203,30,8,1)"/>
-  <circle cx="84" cy="63" r="1" fill="rgba(204,33,9,1)"/>
-  <circle cx="85" cy="63" r="1" fill="rgba(205,37,11,1)"/>
-  <circle cx="86" cy="63" r="1" fill="rgba(206,40,12,1)"/>
-  <circle cx="87" cy="63" r="1" fill="rgba(208,44,14,1)"/>
-  <circle cx="88" cy="63" r="1" fill="rgba(210,48,15,1)"/>
-  <circle cx="89" cy="63" r="1" fill="rgba(211,53,18,1)"/>
-  <circle cx="90" cy="63" r="1" fill="rgba(212,58,20,1)"/>
-  <circle cx="91" cy="63" r="1" fill="rgba(214,62,22,1)"/>
-  <circle cx="92" cy="63" r="1" fill="rgba(217,67,24,1)"/>
-  <circle cx="93" cy="63" r="1" fill="rgba(218,72,27,1)"/>
-  <circle cx="94" cy="63" r="1" fill="rgba(220,79,30,1)"/>
-  <circle cx="95" cy="63" r="1" fill="rgba(222,84,33,1)"/>
-  <circle cx="96" cy="63" r="1" fill="rgba(224,90,37,1)"/>
-  <circle cx="97" cy="63" r="1" fill="rgba(227,96,41,1)"/>
-  <circle cx="98" cy="63" r="1" fill="rgba(229,103,46,1)"/>
-  <circle cx="99" cy="63" r="1" fill="rgba(231,109,49,1)"/>
-  <circle cx="100" cy="63" r="1" fill="rgba(232,113,52,1)"/>
-  <circle cx="101" cy="63" r="1" fill="rgba(233,115,52,1)"/>
-  <circle cx="102" cy="63" r="1" fill="rgba(242,118,53,1)"/>
-  <circle cx="103" cy="63" r="1" fill="rgba(176,74,27,0.807843)"/>
-  <circle cx="104" cy="63" r="1" fill="rgba(47,23,9,0.8)"/>
-  <circle cx="105" cy="63" r="1" fill="rgba(71,41,20,1)"/>
-  <circle cx="106" cy="63" r="1" fill="rgba(75,43,22,1)"/>
-  <circle cx="107" cy="63" r="1" fill="rgba(80,47,24,0.745098)"/>
-  <circle cx="108" cy="63" r="1" fill="rgba(84,52,28,0.0627451)"/>
-  <circle cx="109" cy="63" r="1" fill="rgba(90,58,33,0)"/>
-  <circle cx="110" cy="63" r="1" fill="rgba(96,63,37,0)"/>
-  <circle cx="111" cy="63" r="1" fill="rgba(100,68,42,0)"/>
-  <circle cx="112" cy="63" r="1" fill="rgba(104,71,45,0)"/>
-  <circle cx="113" cy="63" r="1" fill="rgba(106,74,47,0)"/>
-  <circle cx="114" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="63" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="64" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="64" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="64" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="64" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="64" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="64" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="64" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="64" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="64" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="64" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="64" r="1" fill="rgba(85,53,29,0.027451)"/>
-  <circle cx="11" cy="64" r="1" fill="rgba(90,57,33,0.152941)"/>
-  <circle cx="12" cy="64" r="1" fill="rgba(94,61,36,0.32549)"/>
-  <circle cx="13" cy="64" r="1" fill="rgba(97,65,38,0.384314)"/>
-  <circle cx="14" cy="64" r="1" fill="rgba(99,67,41,0.34902)"/>
-  <circle cx="15" cy="64" r="1" fill="rgba(102,70,42,0.815686)"/>
-  <circle cx="16" cy="64" r="1" fill="rgba(102,71,43,1)"/>
-  <circle cx="17" cy="64" r="1" fill="rgba(101,69,42,1)"/>
-  <circle cx="18" cy="64" r="1" fill="rgba(99,67,41,1)"/>
-  <circle cx="19" cy="64" r="1" fill="rgba(97,64,38,1)"/>
-  <circle cx="20" cy="64" r="1" fill="rgba(95,63,37,1)"/>
-  <circle cx="21" cy="64" r="1" fill="rgba(90,57,32,0.662745)"/>
-  <circle cx="22" cy="64" r="1" fill="rgba(59,31,14,0.0509804)"/>
-  <circle cx="23" cy="64" r="1" fill="rgba(37,16,5,0.0117647)"/>
-  <circle cx="24" cy="64" r="1" fill="rgba(12,10,3,0.121569)"/>
-  <circle cx="25" cy="64" r="1" fill="rgba(0,5,3,0.196078)"/>
-  <circle cx="26" cy="64" r="1" fill="rgba(150,34,0,0.615686)"/>
-  <circle cx="27" cy="64" r="1" fill="rgba(251,88,13,1)"/>
-  <circle cx="28" cy="64" r="1" fill="rgba(250,145,79,1)"/>
-  <circle cx="29" cy="64" r="1" fill="rgba(250,120,34,1)"/>
-  <circle cx="30" cy="64" r="1" fill="rgba(249,96,8,1)"/>
-  <circle cx="31" cy="64" r="1" fill="rgba(250,92,5,1)"/>
-  <circle cx="32" cy="64" r="1" fill="rgba(249,85,1,1)"/>
-  <circle cx="33" cy="64" r="1" fill="rgba(249,81,0,1)"/>
-  <circle cx="34" cy="64" r="1" fill="rgba(249,79,0,1)"/>
-  <circle cx="35" cy="64" r="1" fill="rgba(249,78,0,1)"/>
-  <circle cx="36" cy="64" r="1" fill="rgba(248,75,0,1)"/>
-  <circle cx="37" cy="64" r="1" fill="rgba(247,72,0,1)"/>
-  <circle cx="38" cy="64" r="1" fill="rgba(247,71,0,1)"/>
-  <circle cx="39" cy="64" r="1" fill="rgba(247,71,0,1)"/>
-  <circle cx="40" cy="64" r="1" fill="rgba(247,70,0,1)"/>
-  <circle cx="41" cy="64" r="1" fill="rgba(247,68,0,1)"/>
-  <circle cx="42" cy="64" r="1" fill="rgba(246,67,0,1)"/>
-  <circle cx="43" cy="64" r="1" fill="rgba(245,65,0,1)"/>
-  <circle cx="44" cy="64" r="1" fill="rgba(244,64,0,1)"/>
-  <circle cx="45" cy="64" r="1" fill="rgba(244,62,0,1)"/>
-  <circle cx="46" cy="64" r="1" fill="rgba(243,59,0,1)"/>
-  <circle cx="47" cy="64" r="1" fill="rgba(242,57,0,1)"/>
-  <circle cx="48" cy="64" r="1" fill="rgba(240,54,0,1)"/>
-  <circle cx="49" cy="64" r="1" fill="rgba(239,51,0,1)"/>
-  <circle cx="50" cy="64" r="1" fill="rgba(238,50,0,1)"/>
-  <circle cx="51" cy="64" r="1" fill="rgba(237,49,0,1)"/>
-  <circle cx="52" cy="64" r="1" fill="rgba(236,48,0,1)"/>
-  <circle cx="53" cy="64" r="1" fill="rgba(235,49,0,1)"/>
-  <circle cx="54" cy="64" r="1" fill="rgba(233,50,0,1)"/>
-  <circle cx="55" cy="64" r="1" fill="rgba(233,51,0,1)"/>
-  <circle cx="56" cy="64" r="1" fill="rgba(233,55,0,1)"/>
-  <circle cx="57" cy="64" r="1" fill="rgba(233,57,0,1)"/>
-  <circle cx="58" cy="64" r="1" fill="rgba(231,57,0,1)"/>
-  <circle cx="59" cy="64" r="1" fill="rgba(230,55,0,1)"/>
-  <circle cx="60" cy="64" r="1" fill="rgba(228,51,0,1)"/>
-  <circle cx="61" cy="64" r="1" fill="rgba(226,46,0,1)"/>
-  <circle cx="62" cy="64" r="1" fill="rgba(224,41,0,1)"/>
-  <circle cx="63" cy="64" r="1" fill="rgba(221,35,0,1)"/>
-  <circle cx="64" cy="64" r="1" fill="rgba(215,25,0,1)"/>
-  <circle cx="65" cy="64" r="1" fill="rgba(174,21,2,1)"/>
-  <circle cx="66" cy="64" r="1" fill="rgba(161,29,5,1)"/>
-  <circle cx="67" cy="64" r="1" fill="rgba(210,24,0,1)"/>
-  <circle cx="68" cy="64" r="1" fill="rgba(208,29,0,1)"/>
-  <circle cx="69" cy="64" r="1" fill="rgba(211,33,1,1)"/>
-  <circle cx="70" cy="64" r="1" fill="rgba(214,36,2,1)"/>
-  <circle cx="71" cy="64" r="1" fill="rgba(214,38,2,1)"/>
-  <circle cx="72" cy="64" r="1" fill="rgba(214,36,3,1)"/>
-  <circle cx="73" cy="64" r="1" fill="rgba(210,31,3,1)"/>
-  <circle cx="74" cy="64" r="1" fill="rgba(208,27,3,1)"/>
-  <circle cx="75" cy="64" r="1" fill="rgba(205,23,3,1)"/>
-  <circle cx="76" cy="64" r="1" fill="rgba(203,20,3,1)"/>
-  <circle cx="77" cy="64" r="1" fill="rgba(201,20,3,1)"/>
-  <circle cx="78" cy="64" r="1" fill="rgba(200,18,4,1)"/>
-  <circle cx="79" cy="64" r="1" fill="rgba(200,19,4,1)"/>
-  <circle cx="80" cy="64" r="1" fill="rgba(200,22,5,1)"/>
-  <circle cx="81" cy="64" r="1" fill="rgba(201,25,6,1)"/>
-  <circle cx="82" cy="64" r="1" fill="rgba(203,27,7,1)"/>
-  <circle cx="83" cy="64" r="1" fill="rgba(203,31,8,1)"/>
-  <circle cx="84" cy="64" r="1" fill="rgba(204,34,10,1)"/>
-  <circle cx="85" cy="64" r="1" fill="rgba(205,37,11,1)"/>
-  <circle cx="86" cy="64" r="1" fill="rgba(207,41,12,1)"/>
-  <circle cx="87" cy="64" r="1" fill="rgba(207,44,14,1)"/>
-  <circle cx="88" cy="64" r="1" fill="rgba(210,49,16,1)"/>
-  <circle cx="89" cy="64" r="1" fill="rgba(211,54,18,1)"/>
-  <circle cx="90" cy="64" r="1" fill="rgba(213,58,20,1)"/>
-  <circle cx="91" cy="64" r="1" fill="rgba(214,63,22,1)"/>
-  <circle cx="92" cy="64" r="1" fill="rgba(217,68,25,1)"/>
-  <circle cx="93" cy="64" r="1" fill="rgba(219,73,28,1)"/>
-  <circle cx="94" cy="64" r="1" fill="rgba(221,80,31,1)"/>
-  <circle cx="95" cy="64" r="1" fill="rgba(222,85,34,1)"/>
-  <circle cx="96" cy="64" r="1" fill="rgba(225,91,37,1)"/>
-  <circle cx="97" cy="64" r="1" fill="rgba(227,97,42,1)"/>
-  <circle cx="98" cy="64" r="1" fill="rgba(229,104,46,1)"/>
-  <circle cx="99" cy="64" r="1" fill="rgba(231,110,49,1)"/>
-  <circle cx="100" cy="64" r="1" fill="rgba(233,114,52,1)"/>
-  <circle cx="101" cy="64" r="1" fill="rgba(234,116,53,1)"/>
-  <circle cx="102" cy="64" r="1" fill="rgba(242,120,54,1)"/>
-  <circle cx="103" cy="64" r="1" fill="rgba(178,73,26,0.803922)"/>
-  <circle cx="104" cy="64" r="1" fill="rgba(17,3,0,0.458824)"/>
-  <circle cx="105" cy="64" r="1" fill="rgba(65,35,16,0.843137)"/>
-  <circle cx="106" cy="64" r="1" fill="rgba(78,47,24,1)"/>
-  <circle cx="107" cy="64" r="1" fill="rgba(82,49,26,1)"/>
-  <circle cx="108" cy="64" r="1" fill="rgba(86,53,29,0.733333)"/>
-  <circle cx="109" cy="64" r="1" fill="rgba(90,58,33,0.054902)"/>
-  <circle cx="110" cy="64" r="1" fill="rgba(96,63,37,0)"/>
-  <circle cx="111" cy="64" r="1" fill="rgba(100,68,42,0)"/>
-  <circle cx="112" cy="64" r="1" fill="rgba(104,71,45,0)"/>
-  <circle cx="113" cy="64" r="1" fill="rgba(106,74,47,0)"/>
-  <circle cx="114" cy="64" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="64" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="64" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="64" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="64" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="64" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="64" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="64" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="64" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="64" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="64" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="64" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="64" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="64" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="65" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="65" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="65" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="65" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="65" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="65" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="65" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="65" r="1" fill="rgba(71,40,20,0.0745098)"/>
-  <circle cx="8" cy="65" r="1" fill="rgba(76,45,23,0.517647)"/>
-  <circle cx="9" cy="65" r="1" fill="rgba(81,49,26,0.615686)"/>
-  <circle cx="10" cy="65" r="1" fill="rgba(85,53,29,0.835294)"/>
-  <circle cx="11" cy="65" r="1" fill="rgba(88,56,32,0.972549)"/>
-  <circle cx="12" cy="65" r="1" fill="rgba(92,59,34,1)"/>
-  <circle cx="13" cy="65" r="1" fill="rgba(95,63,37,1)"/>
-  <circle cx="14" cy="65" r="1" fill="rgba(98,66,39,1)"/>
-  <circle cx="15" cy="65" r="1" fill="rgba(98,66,39,1)"/>
-  <circle cx="16" cy="65" r="1" fill="rgba(98,66,40,1)"/>
-  <circle cx="17" cy="65" r="1" fill="rgba(99,66,39,1)"/>
-  <circle cx="18" cy="65" r="1" fill="rgba(99,66,40,1)"/>
-  <circle cx="19" cy="65" r="1" fill="rgba(96,63,37,0.976471)"/>
-  <circle cx="20" cy="65" r="1" fill="rgba(78,47,24,0.564706)"/>
-  <circle cx="21" cy="65" r="1" fill="rgba(47,24,9,0.0980392)"/>
-  <circle cx="22" cy="65" r="1" fill="rgba(29,12,3,0.184314)"/>
-  <circle cx="23" cy="65" r="1" fill="rgba(21,7,1,0.321569)"/>
-  <circle cx="24" cy="65" r="1" fill="rgba(7,1,0,0.415686)"/>
-  <circle cx="25" cy="65" r="1" fill="rgba(0,0,0,0.443137)"/>
-  <circle cx="26" cy="65" r="1" fill="rgba(153,30,0,0.752941)"/>
-  <circle cx="27" cy="65" r="1" fill="rgba(252,96,21,1)"/>
-  <circle cx="28" cy="65" r="1" fill="rgba(250,142,70,1)"/>
-  <circle cx="29" cy="65" r="1" fill="rgba(251,126,40,1)"/>
-  <circle cx="30" cy="65" r="1" fill="rgba(249,101,14,1)"/>
-  <circle cx="31" cy="65" r="1" fill="rgba(249,93,8,1)"/>
-  <circle cx="32" cy="65" r="1" fill="rgba(249,81,1,1)"/>
-  <circle cx="33" cy="65" r="1" fill="rgba(248,76,0,1)"/>
-  <circle cx="34" cy="65" r="1" fill="rgba(248,75,0,1)"/>
-  <circle cx="35" cy="65" r="1" fill="rgba(247,72,0,1)"/>
-  <circle cx="36" cy="65" r="1" fill="rgba(247,71,0,1)"/>
-  <circle cx="37" cy="65" r="1" fill="rgba(246,68,0,1)"/>
-  <circle cx="38" cy="65" r="1" fill="rgba(245,66,0,1)"/>
-  <circle cx="39" cy="65" r="1" fill="rgba(245,66,0,1)"/>
-  <circle cx="40" cy="65" r="1" fill="rgba(245,66,0,1)"/>
-  <circle cx="41" cy="65" r="1" fill="rgba(244,64,0,1)"/>
-  <circle cx="42" cy="65" r="1" fill="rgba(244,62,0,1)"/>
-  <circle cx="43" cy="65" r="1" fill="rgba(243,61,0,1)"/>
-  <circle cx="44" cy="65" r="1" fill="rgba(241,60,0,1)"/>
-  <circle cx="45" cy="65" r="1" fill="rgba(241,58,0,1)"/>
-  <circle cx="46" cy="65" r="1" fill="rgba(241,55,0,1)"/>
-  <circle cx="47" cy="65" r="1" fill="rgba(240,53,0,1)"/>
-  <circle cx="48" cy="65" r="1" fill="rgba(238,51,0,1)"/>
-  <circle cx="49" cy="65" r="1" fill="rgba(237,50,0,1)"/>
-  <circle cx="50" cy="65" r="1" fill="rgba(237,49,0,1)"/>
-  <circle cx="51" cy="65" r="1" fill="rgba(236,48,0,1)"/>
-  <circle cx="52" cy="65" r="1" fill="rgba(234,47,0,1)"/>
-  <circle cx="53" cy="65" r="1" fill="rgba(233,47,0,1)"/>
-  <circle cx="54" cy="65" r="1" fill="rgba(233,47,0,1)"/>
-  <circle cx="55" cy="65" r="1" fill="rgba(233,49,0,1)"/>
-  <circle cx="56" cy="65" r="1" fill="rgba(231,52,0,1)"/>
-  <circle cx="57" cy="65" r="1" fill="rgba(230,53,0,1)"/>
-  <circle cx="58" cy="65" r="1" fill="rgba(230,53,0,1)"/>
-  <circle cx="59" cy="65" r="1" fill="rgba(228,51,0,1)"/>
-  <circle cx="60" cy="65" r="1" fill="rgba(226,47,0,1)"/>
-  <circle cx="61" cy="65" r="1" fill="rgba(224,43,0,1)"/>
-  <circle cx="62" cy="65" r="1" fill="rgba(222,38,0,1)"/>
-  <circle cx="63" cy="65" r="1" fill="rgba(219,33,0,1)"/>
-  <circle cx="64" cy="65" r="1" fill="rgba(214,25,0,1)"/>
-  <circle cx="65" cy="65" r="1" fill="rgba(174,21,2,1)"/>
-  <circle cx="66" cy="65" r="1" fill="rgba(162,29,5,1)"/>
-  <circle cx="67" cy="65" r="1" fill="rgba(210,24,0,1)"/>
-  <circle cx="68" cy="65" r="1" fill="rgba(207,28,0,1)"/>
-  <circle cx="69" cy="65" r="1" fill="rgba(210,32,1,1)"/>
-  <circle cx="70" cy="65" r="1" fill="rgba(213,35,2,1)"/>
-  <circle cx="71" cy="65" r="1" fill="rgba(214,37,2,1)"/>
-  <circle cx="72" cy="65" r="1" fill="rgba(213,34,3,1)"/>
-  <circle cx="73" cy="65" r="1" fill="rgba(210,30,3,1)"/>
-  <circle cx="74" cy="65" r="1" fill="rgba(207,26,3,1)"/>
-  <circle cx="75" cy="65" r="1" fill="rgba(205,22,3,1)"/>
-  <circle cx="76" cy="65" r="1" fill="rgba(203,20,3,1)"/>
-  <circle cx="77" cy="65" r="1" fill="rgba(200,19,3,1)"/>
-  <circle cx="78" cy="65" r="1" fill="rgba(199,18,4,1)"/>
-  <circle cx="79" cy="65" r="1" fill="rgba(200,20,4,1)"/>
-  <circle cx="80" cy="65" r="1" fill="rgba(200,23,5,1)"/>
-  <circle cx="81" cy="65" r="1" fill="rgba(202,25,6,1)"/>
-  <circle cx="82" cy="65" r="1" fill="rgba(203,29,7,1)"/>
-  <circle cx="83" cy="65" r="1" fill="rgba(204,31,8,1)"/>
-  <circle cx="84" cy="65" r="1" fill="rgba(205,35,10,1)"/>
-  <circle cx="85" cy="65" r="1" fill="rgba(205,38,11,1)"/>
-  <circle cx="86" cy="65" r="1" fill="rgba(207,42,13,1)"/>
-  <circle cx="87" cy="65" r="1" fill="rgba(208,46,14,1)"/>
-  <circle cx="88" cy="65" r="1" fill="rgba(210,50,16,1)"/>
-  <circle cx="89" cy="65" r="1" fill="rgba(211,54,18,1)"/>
-  <circle cx="90" cy="65" r="1" fill="rgba(213,59,20,1)"/>
-  <circle cx="91" cy="65" r="1" fill="rgba(215,64,23,1)"/>
-  <circle cx="92" cy="65" r="1" fill="rgba(217,69,26,1)"/>
-  <circle cx="93" cy="65" r="1" fill="rgba(219,75,28,1)"/>
-  <circle cx="94" cy="65" r="1" fill="rgba(221,80,32,1)"/>
-  <circle cx="95" cy="65" r="1" fill="rgba(223,86,35,1)"/>
-  <circle cx="96" cy="65" r="1" fill="rgba(225,92,39,1)"/>
-  <circle cx="97" cy="65" r="1" fill="rgba(227,99,42,1)"/>
-  <circle cx="98" cy="65" r="1" fill="rgba(230,105,47,1)"/>
-  <circle cx="99" cy="65" r="1" fill="rgba(232,111,50,1)"/>
-  <circle cx="100" cy="65" r="1" fill="rgba(234,115,53,1)"/>
-  <circle cx="101" cy="65" r="1" fill="rgba(235,117,54,1)"/>
-  <circle cx="102" cy="65" r="1" fill="rgba(241,120,53,1)"/>
-  <circle cx="103" cy="65" r="1" fill="rgba(193,83,31,0.870588)"/>
-  <circle cx="104" cy="65" r="1" fill="rgba(19,0,0,0.447059)"/>
-  <circle cx="105" cy="65" r="1" fill="rgba(40,12,3,0.443137)"/>
-  <circle cx="106" cy="65" r="1" fill="rgba(78,44,22,0.878431)"/>
-  <circle cx="107" cy="65" r="1" fill="rgba(84,52,28,1)"/>
-  <circle cx="108" cy="65" r="1" fill="rgba(87,54,30,1)"/>
-  <circle cx="109" cy="65" r="1" fill="rgba(91,59,33,0.654902)"/>
-  <circle cx="110" cy="65" r="1" fill="rgba(95,63,37,0.0352941)"/>
-  <circle cx="111" cy="65" r="1" fill="rgba(100,68,42,0)"/>
-  <circle cx="112" cy="65" r="1" fill="rgba(104,71,45,0)"/>
-  <circle cx="113" cy="65" r="1" fill="rgba(106,74,47,0)"/>
-  <circle cx="114" cy="65" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="65" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="65" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="65" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="65" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="65" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="65" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="65" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="65" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="65" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="65" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="65" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="65" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="65" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="66" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="66" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="66" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="66" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="66" r="1" fill="rgba(61,30,13,0.0313725)"/>
-  <circle cx="5" cy="66" r="1" fill="rgba(62,30,13,0.168627)"/>
-  <circle cx="6" cy="66" r="1" fill="rgba(65,34,16,0.384314)"/>
-  <circle cx="7" cy="66" r="1" fill="rgba(70,39,19,0.776471)"/>
-  <circle cx="8" cy="66" r="1" fill="rgba(75,43,22,1)"/>
-  <circle cx="9" cy="66" r="1" fill="rgba(80,47,25,1)"/>
-  <circle cx="10" cy="66" r="1" fill="rgba(85,52,29,1)"/>
-  <circle cx="11" cy="66" r="1" fill="rgba(88,56,31,1)"/>
-  <circle cx="12" cy="66" r="1" fill="rgba(90,57,33,0.94902)"/>
-  <circle cx="13" cy="66" r="1" fill="rgba(90,57,32,0.890196)"/>
-  <circle cx="14" cy="66" r="1" fill="rgba(93,60,35,0.960784)"/>
-  <circle cx="15" cy="66" r="1" fill="rgba(97,64,38,0.996078)"/>
-  <circle cx="16" cy="66" r="1" fill="rgba(96,63,37,0.980392)"/>
-  <circle cx="17" cy="66" r="1" fill="rgba(92,59,33,0.866667)"/>
-  <circle cx="18" cy="66" r="1" fill="rgba(75,44,22,0.643137)"/>
-  <circle cx="19" cy="66" r="1" fill="rgba(53,27,11,0.427451)"/>
-  <circle cx="20" cy="66" r="1" fill="rgba(22,8,2,0.290196)"/>
-  <circle cx="21" cy="66" r="1" fill="rgba(7,1,0,0.396078)"/>
-  <circle cx="22" cy="66" r="1" fill="rgba(4,0,0,0.462745)"/>
-  <circle cx="23" cy="66" r="1" fill="rgba(0,0,0,0.478431)"/>
-  <circle cx="24" cy="66" r="1" fill="rgba(0,0,0,0.466667)"/>
-  <circle cx="25" cy="66" r="1" fill="rgba(0,0,0,0.368627)"/>
-  <circle cx="26" cy="66" r="1" fill="rgba(163,37,0,0.690196)"/>
-  <circle cx="27" cy="66" r="1" fill="rgba(250,97,27,1)"/>
-  <circle cx="28" cy="66" r="1" fill="rgba(249,139,67,1)"/>
-  <circle cx="29" cy="66" r="1" fill="rgba(250,126,42,1)"/>
-  <circle cx="30" cy="66" r="1" fill="rgba(249,102,17,1)"/>
-  <circle cx="31" cy="66" r="1" fill="rgba(248,91,9,1)"/>
-  <circle cx="32" cy="66" r="1" fill="rgba(247,79,3,1)"/>
-  <circle cx="33" cy="66" r="1" fill="rgba(246,72,0,1)"/>
-  <circle cx="34" cy="66" r="1" fill="rgba(246,71,0,1)"/>
-  <circle cx="35" cy="66" r="1" fill="rgba(245,67,0,1)"/>
-  <circle cx="36" cy="66" r="1" fill="rgba(244,67,0,1)"/>
-  <circle cx="37" cy="66" r="1" fill="rgba(244,64,0,1)"/>
-  <circle cx="38" cy="66" r="1" fill="rgba(243,62,0,1)"/>
-  <circle cx="39" cy="66" r="1" fill="rgba(243,62,0,1)"/>
-  <circle cx="40" cy="66" r="1" fill="rgba(242,61,0,1)"/>
-  <circle cx="41" cy="66" r="1" fill="rgba(242,59,0,1)"/>
-  <circle cx="42" cy="66" r="1" fill="rgba(241,58,0,1)"/>
-  <circle cx="43" cy="66" r="1" fill="rgba(241,57,0,1)"/>
-  <circle cx="44" cy="66" r="1" fill="rgba(239,55,0,1)"/>
-  <circle cx="45" cy="66" r="1" fill="rgba(239,54,0,1)"/>
-  <circle cx="46" cy="66" r="1" fill="rgba(239,51,0,1)"/>
-  <circle cx="47" cy="66" r="1" fill="rgba(238,50,0,1)"/>
-  <circle cx="48" cy="66" r="1" fill="rgba(237,49,0,1)"/>
-  <circle cx="49" cy="66" r="1" fill="rgba(236,48,0,1)"/>
-  <circle cx="50" cy="66" r="1" fill="rgba(235,46,0,1)"/>
-  <circle cx="51" cy="66" r="1" fill="rgba(234,46,0,1)"/>
-  <circle cx="52" cy="66" r="1" fill="rgba(233,45,0,1)"/>
-  <circle cx="53" cy="66" r="1" fill="rgba(232,45,0,1)"/>
-  <circle cx="54" cy="66" r="1" fill="rgba(231,45,0,1)"/>
-  <circle cx="55" cy="66" r="1" fill="rgba(230,47,0,1)"/>
-  <circle cx="56" cy="66" r="1" fill="rgba(230,48,0,1)"/>
-  <circle cx="57" cy="66" r="1" fill="rgba(229,49,0,1)"/>
-  <circle cx="58" cy="66" r="1" fill="rgba(227,48,0,1)"/>
-  <circle cx="59" cy="66" r="1" fill="rgba(226,46,0,1)"/>
-  <circle cx="60" cy="66" r="1" fill="rgba(224,43,0,1)"/>
-  <circle cx="61" cy="66" r="1" fill="rgba(223,40,0,1)"/>
-  <circle cx="62" cy="66" r="1" fill="rgba(221,35,0,1)"/>
-  <circle cx="63" cy="66" r="1" fill="rgba(217,30,0,1)"/>
-  <circle cx="64" cy="66" r="1" fill="rgba(213,23,0,1)"/>
-  <circle cx="65" cy="66" r="1" fill="rgba(174,20,2,1)"/>
-  <circle cx="66" cy="66" r="1" fill="rgba(161,30,6,1)"/>
-  <circle cx="67" cy="66" r="1" fill="rgba(210,23,0,1)"/>
-  <circle cx="68" cy="66" r="1" fill="rgba(207,27,0,1)"/>
-  <circle cx="69" cy="66" r="1" fill="rgba(210,32,1,1)"/>
-  <circle cx="70" cy="66" r="1" fill="rgba(213,34,2,1)"/>
-  <circle cx="71" cy="66" r="1" fill="rgba(214,35,3,1)"/>
-  <circle cx="72" cy="66" r="1" fill="rgba(212,32,3,1)"/>
-  <circle cx="73" cy="66" r="1" fill="rgba(210,29,3,1)"/>
-  <circle cx="74" cy="66" r="1" fill="rgba(207,25,3,1)"/>
-  <circle cx="75" cy="66" r="1" fill="rgba(203,22,3,1)"/>
-  <circle cx="76" cy="66" r="1" fill="rgba(201,19,3,1)"/>
-  <circle cx="77" cy="66" r="1" fill="rgba(200,18,3,1)"/>
-  <circle cx="78" cy="66" r="1" fill="rgba(199,18,4,1)"/>
-  <circle cx="79" cy="66" r="1" fill="rgba(200,21,5,1)"/>
-  <circle cx="80" cy="66" r="1" fill="rgba(201,23,6,1)"/>
-  <circle cx="81" cy="66" r="1" fill="rgba(202,26,6,1)"/>
-  <circle cx="82" cy="66" r="1" fill="rgba(203,29,8,1)"/>
-  <circle cx="83" cy="66" r="1" fill="rgba(204,32,9,1)"/>
-  <circle cx="84" cy="66" r="1" fill="rgba(205,35,10,1)"/>
-  <circle cx="85" cy="66" r="1" fill="rgba(206,39,11,1)"/>
-  <circle cx="86" cy="66" r="1" fill="rgba(207,43,13,1)"/>
-  <circle cx="87" cy="66" r="1" fill="rgba(208,46,15,1)"/>
-  <circle cx="88" cy="66" r="1" fill="rgba(210,50,16,1)"/>
-  <circle cx="89" cy="66" r="1" fill="rgba(211,55,18,1)"/>
-  <circle cx="90" cy="66" r="1" fill="rgba(213,60,21,1)"/>
-  <circle cx="91" cy="66" r="1" fill="rgba(215,65,24,1)"/>
-  <circle cx="92" cy="66" r="1" fill="rgba(217,70,26,1)"/>
-  <circle cx="93" cy="66" r="1" fill="rgba(219,76,30,1)"/>
-  <circle cx="94" cy="66" r="1" fill="rgba(222,81,32,1)"/>
-  <circle cx="95" cy="66" r="1" fill="rgba(224,87,36,1)"/>
-  <circle cx="96" cy="66" r="1" fill="rgba(225,94,40,1)"/>
-  <circle cx="97" cy="66" r="1" fill="rgba(227,100,43,1)"/>
-  <circle cx="98" cy="66" r="1" fill="rgba(230,106,48,1)"/>
-  <circle cx="99" cy="66" r="1" fill="rgba(232,112,51,1)"/>
-  <circle cx="100" cy="66" r="1" fill="rgba(234,116,54,1)"/>
-  <circle cx="101" cy="66" r="1" fill="rgba(235,119,54,1)"/>
-  <circle cx="102" cy="66" r="1" fill="rgba(241,121,55,1)"/>
-  <circle cx="103" cy="66" r="1" fill="rgba(200,89,34,0.894118)"/>
-  <circle cx="104" cy="66" r="1" fill="rgba(28,3,0,0.529412)"/>
-  <circle cx="105" cy="66" r="1" fill="rgba(12,0,0,0.384314)"/>
-  <circle cx="106" cy="66" r="1" fill="rgba(42,16,5,0.435294)"/>
-  <circle cx="107" cy="66" r="1" fill="rgba(83,51,28,0.921569)"/>
-  <circle cx="108" cy="66" r="1" fill="rgba(90,56,32,1)"/>
-  <circle cx="109" cy="66" r="1" fill="rgba(93,60,35,1)"/>
-  <circle cx="110" cy="66" r="1" fill="rgba(97,64,37,0.72549)"/>
-  <circle cx="111" cy="66" r="1" fill="rgba(100,68,42,0.0666667)"/>
-  <circle cx="112" cy="66" r="1" fill="rgba(104,71,45,0)"/>
-  <circle cx="113" cy="66" r="1" fill="rgba(106,74,47,0)"/>
-  <circle cx="114" cy="66" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="66" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="66" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="66" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="66" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="66" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="66" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="66" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="66" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="66" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="66" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="66" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="66" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="66" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="67" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="67" r="1" fill="rgba(57,27,11,0.192157)"/>
-  <circle cx="2" cy="67" r="1" fill="rgba(53,25,10,0.462745)"/>
-  <circle cx="3" cy="67" r="1" fill="rgba(63,31,14,0.658824)"/>
-  <circle cx="4" cy="67" r="1" fill="rgba(63,32,14,0.886275)"/>
-  <circle cx="5" cy="67" r="1" fill="rgba(63,31,14,1)"/>
-  <circle cx="6" cy="67" r="1" fill="rgba(64,34,16,1)"/>
-  <circle cx="7" cy="67" r="1" fill="rgba(69,38,18,1)"/>
-  <circle cx="8" cy="67" r="1" fill="rgba(74,41,21,1)"/>
-  <circle cx="9" cy="67" r="1" fill="rgba(67,37,17,0.870588)"/>
-  <circle cx="10" cy="67" r="1" fill="rgba(51,25,11,0.654902)"/>
-  <circle cx="11" cy="67" r="1" fill="rgba(55,29,12,0.482353)"/>
-  <circle cx="12" cy="67" r="1" fill="rgba(54,28,12,0.290196)"/>
-  <circle cx="13" cy="67" r="1" fill="rgba(34,14,5,0.305882)"/>
-  <circle cx="14" cy="67" r="1" fill="rgba(39,17,6,0.466667)"/>
-  <circle cx="15" cy="67" r="1" fill="rgba(53,28,11,0.576471)"/>
-  <circle cx="16" cy="67" r="1" fill="rgba(49,23,9,0.517647)"/>
-  <circle cx="17" cy="67" r="1" fill="rgba(22,8,2,0.407843)"/>
-  <circle cx="18" cy="67" r="1" fill="rgba(7,1,0,0.376471)"/>
-  <circle cx="19" cy="67" r="1" fill="rgba(0,0,0,0.431373)"/>
-  <circle cx="20" cy="67" r="1" fill="rgba(0,0,0,0.47451)"/>
-  <circle cx="21" cy="67" r="1" fill="rgba(0,0,0,0.478431)"/>
-  <circle cx="22" cy="67" r="1" fill="rgba(10,1,0,0.439216)"/>
-  <circle cx="23" cy="67" r="1" fill="rgba(19,6,1,0.356863)"/>
-  <circle cx="24" cy="67" r="1" fill="rgba(7,5,1,0.247059)"/>
-  <circle cx="25" cy="67" r="1" fill="rgba(87,33,8,0.0823529)"/>
-  <circle cx="26" cy="67" r="1" fill="rgba(212,64,5,0.556863)"/>
-  <circle cx="27" cy="67" r="1" fill="rgba(244,92,26,1)"/>
-  <circle cx="28" cy="67" r="1" fill="rgba(247,134,68,1)"/>
-  <circle cx="29" cy="67" r="1" fill="rgba(248,120,42,1)"/>
-  <circle cx="30" cy="67" r="1" fill="rgba(247,96,16,1)"/>
-  <circle cx="31" cy="67" r="1" fill="rgba(247,86,8,1)"/>
-  <circle cx="32" cy="67" r="1" fill="rgba(245,77,3,1)"/>
-  <circle cx="33" cy="67" r="1" fill="rgba(245,68,0,1)"/>
-  <circle cx="34" cy="67" r="1" fill="rgba(244,67,0,1)"/>
-  <circle cx="35" cy="67" r="1" fill="rgba(242,63,0,1)"/>
-  <circle cx="36" cy="67" r="1" fill="rgba(242,62,0,1)"/>
-  <circle cx="37" cy="67" r="1" fill="rgba(241,60,0,1)"/>
-  <circle cx="38" cy="67" r="1" fill="rgba(241,58,0,1)"/>
-  <circle cx="39" cy="67" r="1" fill="rgba(240,57,0,1)"/>
-  <circle cx="40" cy="67" r="1" fill="rgba(240,56,0,1)"/>
-  <circle cx="41" cy="67" r="1" fill="rgba(240,55,0,1)"/>
-  <circle cx="42" cy="67" r="1" fill="rgba(239,53,0,1)"/>
-  <circle cx="43" cy="67" r="1" fill="rgba(238,52,0,1)"/>
-  <circle cx="44" cy="67" r="1" fill="rgba(238,51,0,1)"/>
-  <circle cx="45" cy="67" r="1" fill="rgba(237,50,0,1)"/>
-  <circle cx="46" cy="67" r="1" fill="rgba(237,49,0,1)"/>
-  <circle cx="47" cy="67" r="1" fill="rgba(236,48,0,1)"/>
-  <circle cx="48" cy="67" r="1" fill="rgba(236,48,0,1)"/>
-  <circle cx="49" cy="67" r="1" fill="rgba(234,47,0,1)"/>
-  <circle cx="50" cy="67" r="1" fill="rgba(233,45,0,1)"/>
-  <circle cx="51" cy="67" r="1" fill="rgba(233,43,0,1)"/>
-  <circle cx="52" cy="67" r="1" fill="rgba(230,43,0,1)"/>
-  <circle cx="53" cy="67" r="1" fill="rgba(230,42,0,1)"/>
-  <circle cx="54" cy="67" r="1" fill="rgba(230,43,0,1)"/>
-  <circle cx="55" cy="67" r="1" fill="rgba(229,44,0,1)"/>
-  <circle cx="56" cy="67" r="1" fill="rgba(227,44,0,1)"/>
-  <circle cx="57" cy="67" r="1" fill="rgba(227,45,0,1)"/>
-  <circle cx="58" cy="67" r="1" fill="rgba(225,43,0,1)"/>
-  <circle cx="59" cy="67" r="1" fill="rgba(224,41,0,1)"/>
-  <circle cx="60" cy="67" r="1" fill="rgba(223,39,0,1)"/>
-  <circle cx="61" cy="67" r="1" fill="rgba(221,36,0,1)"/>
-  <circle cx="62" cy="67" r="1" fill="rgba(219,32,0,1)"/>
-  <circle cx="63" cy="67" r="1" fill="rgba(216,29,0,1)"/>
-  <circle cx="64" cy="67" r="1" fill="rgba(212,22,0,1)"/>
-  <circle cx="65" cy="67" r="1" fill="rgba(174,21,2,1)"/>
-  <circle cx="66" cy="67" r="1" fill="rgba(159,29,6,1)"/>
-  <circle cx="67" cy="67" r="1" fill="rgba(208,22,0,1)"/>
-  <circle cx="68" cy="67" r="1" fill="rgba(205,26,0,1)"/>
-  <circle cx="69" cy="67" r="1" fill="rgba(209,31,1,1)"/>
-  <circle cx="70" cy="67" r="1" fill="rgba(212,33,3,1)"/>
-  <circle cx="71" cy="67" r="1" fill="rgba(212,34,3,1)"/>
-  <circle cx="72" cy="67" r="1" fill="rgba(211,31,3,1)"/>
-  <circle cx="73" cy="67" r="1" fill="rgba(209,27,3,1)"/>
-  <circle cx="74" cy="67" r="1" fill="rgba(205,24,3,1)"/>
-  <circle cx="75" cy="67" r="1" fill="rgba(203,21,3,1)"/>
-  <circle cx="76" cy="67" r="1" fill="rgba(200,18,3,1)"/>
-  <circle cx="77" cy="67" r="1" fill="rgba(199,17,4,1)"/>
-  <circle cx="78" cy="67" r="1" fill="rgba(199,18,4,1)"/>
-  <circle cx="79" cy="67" r="1" fill="rgba(200,21,5,1)"/>
-  <circle cx="80" cy="67" r="1" fill="rgba(201,24,6,1)"/>
-  <circle cx="81" cy="67" r="1" fill="rgba(202,27,6,1)"/>
-  <circle cx="82" cy="67" r="1" fill="rgba(203,29,8,1)"/>
-  <circle cx="83" cy="67" r="1" fill="rgba(204,33,9,1)"/>
-  <circle cx="84" cy="67" r="1" fill="rgba(206,35,10,1)"/>
-  <circle cx="85" cy="67" r="1" fill="rgba(207,39,11,1)"/>
-  <circle cx="86" cy="67" r="1" fill="rgba(207,44,14,1)"/>
-  <circle cx="87" cy="67" r="1" fill="rgba(208,47,16,1)"/>
-  <circle cx="88" cy="67" r="1" fill="rgba(210,51,17,1)"/>
-  <circle cx="89" cy="67" r="1" fill="rgba(213,57,20,1)"/>
-  <circle cx="90" cy="67" r="1" fill="rgba(213,61,22,1)"/>
-  <circle cx="91" cy="67" r="1" fill="rgba(215,66,24,1)"/>
-  <circle cx="92" cy="67" r="1" fill="rgba(217,71,27,1)"/>
-  <circle cx="93" cy="67" r="1" fill="rgba(220,77,30,1)"/>
-  <circle cx="94" cy="67" r="1" fill="rgba(222,83,33,1)"/>
-  <circle cx="95" cy="67" r="1" fill="rgba(224,89,37,1)"/>
-  <circle cx="96" cy="67" r="1" fill="rgba(226,95,41,1)"/>
-  <circle cx="97" cy="67" r="1" fill="rgba(228,101,44,1)"/>
-  <circle cx="98" cy="67" r="1" fill="rgba(231,108,48,1)"/>
-  <circle cx="99" cy="67" r="1" fill="rgba(233,113,52,1)"/>
-  <circle cx="100" cy="67" r="1" fill="rgba(234,118,55,1)"/>
-  <circle cx="101" cy="67" r="1" fill="rgba(236,119,55,1)"/>
-  <circle cx="102" cy="67" r="1" fill="rgba(243,123,56,1)"/>
-  <circle cx="103" cy="67" r="1" fill="rgba(196,87,33,0.890196)"/>
-  <circle cx="104" cy="67" r="1" fill="rgba(31,2,0,0.552941)"/>
-  <circle cx="105" cy="67" r="1" fill="rgba(10,0,0,0.45098)"/>
-  <circle cx="106" cy="67" r="1" fill="rgba(0,0,0,0.368627)"/>
-  <circle cx="107" cy="67" r="1" fill="rgba(45,21,8,0.478431)"/>
-  <circle cx="108" cy="67" r="1" fill="rgba(90,57,33,0.960784)"/>
-  <circle cx="109" cy="67" r="1" fill="rgba(94,61,36,1)"/>
-  <circle cx="110" cy="67" r="1" fill="rgba(97,64,38,1)"/>
-  <circle cx="111" cy="67" r="1" fill="rgba(100,68,42,0.788235)"/>
-  <circle cx="112" cy="67" r="1" fill="rgba(104,71,45,0.172549)"/>
-  <circle cx="113" cy="67" r="1" fill="rgba(106,74,47,0)"/>
-  <circle cx="114" cy="67" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="67" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="67" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="67" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="67" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="67" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="67" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="67" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="67" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="67" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="67" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="67" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="67" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="67" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="68" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="68" r="1" fill="rgba(61,30,13,0.552941)"/>
-  <circle cx="2" cy="68" r="1" fill="rgba(58,28,13,0.764706)"/>
-  <circle cx="3" cy="68" r="1" fill="rgba(49,22,8,0.690196)"/>
-  <circle cx="4" cy="68" r="1" fill="rgba(39,16,5,0.647059)"/>
-  <circle cx="5" cy="68" r="1" fill="rgba(36,14,4,0.647059)"/>
-  <circle cx="6" cy="68" r="1" fill="rgba(34,13,4,0.678431)"/>
-  <circle cx="7" cy="68" r="1" fill="rgba(39,16,5,0.658824)"/>
-  <circle cx="8" cy="68" r="1" fill="rgba(39,16,6,0.603922)"/>
-  <circle cx="9" cy="68" r="1" fill="rgba(17,4,0,0.454902)"/>
-  <circle cx="10" cy="68" r="1" fill="rgba(0,0,0,0.4)"/>
-  <circle cx="11" cy="68" r="1" fill="rgba(0,0,0,0.427451)"/>
-  <circle cx="12" cy="68" r="1" fill="rgba(0,0,0,0.443137)"/>
-  <circle cx="13" cy="68" r="1" fill="rgba(0,0,0,0.462745)"/>
-  <circle cx="14" cy="68" r="1" fill="rgba(0,0,0,0.458824)"/>
-  <circle cx="15" cy="68" r="1" fill="rgba(0,0,0,0.447059)"/>
-  <circle cx="16" cy="68" r="1" fill="rgba(0,0,0,0.45098)"/>
-  <circle cx="17" cy="68" r="1" fill="rgba(0,0,0,0.470588)"/>
-  <circle cx="18" cy="68" r="1" fill="rgba(0,0,0,0.478431)"/>
-  <circle cx="19" cy="68" r="1" fill="rgba(4,0,0,0.462745)"/>
-  <circle cx="20" cy="68" r="1" fill="rgba(15,4,0,0.4)"/>
-  <circle cx="21" cy="68" r="1" fill="rgba(26,9,3,0.301961)"/>
-  <circle cx="22" cy="68" r="1" fill="rgba(34,15,5,0.184314)"/>
-  <circle cx="23" cy="68" r="1" fill="rgba(28,13,4,0.0745098)"/>
-  <circle cx="24" cy="68" r="1" fill="rgba(49,22,8,0.00784314)"/>
-  <circle cx="25" cy="68" r="1" fill="rgba(224,135,76,0)"/>
-  <circle cx="26" cy="68" r="1" fill="rgba(238,86,17,0.490196)"/>
-  <circle cx="27" cy="68" r="1" fill="rgba(237,84,22,1)"/>
-  <circle cx="28" cy="68" r="1" fill="rgba(244,123,57,1)"/>
-  <circle cx="29" cy="68" r="1" fill="rgba(244,109,37,1)"/>
-  <circle cx="30" cy="68" r="1" fill="rgba(244,87,14,1)"/>
-  <circle cx="31" cy="68" r="1" fill="rgba(244,78,6,1)"/>
-  <circle cx="32" cy="68" r="1" fill="rgba(244,72,2,1)"/>
-  <circle cx="33" cy="68" r="1" fill="rgba(243,64,0,1)"/>
-  <circle cx="34" cy="68" r="1" fill="rgba(241,61,0,1)"/>
-  <circle cx="35" cy="68" r="1" fill="rgba(240,59,0,1)"/>
-  <circle cx="36" cy="68" r="1" fill="rgba(239,57,0,1)"/>
-  <circle cx="37" cy="68" r="1" fill="rgba(239,56,0,1)"/>
-  <circle cx="38" cy="68" r="1" fill="rgba(238,54,0,1)"/>
-  <circle cx="39" cy="68" r="1" fill="rgba(238,52,0,1)"/>
-  <circle cx="40" cy="68" r="1" fill="rgba(238,51,0,1)"/>
-  <circle cx="41" cy="68" r="1" fill="rgba(237,50,0,1)"/>
-  <circle cx="42" cy="68" r="1" fill="rgba(237,49,0,1)"/>
-  <circle cx="43" cy="68" r="1" fill="rgba(236,49,0,1)"/>
-  <circle cx="44" cy="68" r="1" fill="rgba(236,48,0,1)"/>
-  <circle cx="45" cy="68" r="1" fill="rgba(236,48,0,1)"/>
-  <circle cx="46" cy="68" r="1" fill="rgba(235,48,0,1)"/>
-  <circle cx="47" cy="68" r="1" fill="rgba(234,47,0,1)"/>
-  <circle cx="48" cy="68" r="1" fill="rgba(233,46,0,1)"/>
-  <circle cx="49" cy="68" r="1" fill="rgba(232,45,0,1)"/>
-  <circle cx="50" cy="68" r="1" fill="rgba(232,43,0,1)"/>
-  <circle cx="51" cy="68" r="1" fill="rgba(230,41,0,1)"/>
-  <circle cx="52" cy="68" r="1" fill="rgba(230,41,0,1)"/>
-  <circle cx="53" cy="68" r="1" fill="rgba(228,41,0,1)"/>
-  <circle cx="54" cy="68" r="1" fill="rgba(227,41,0,1)"/>
-  <circle cx="55" cy="68" r="1" fill="rgba(227,40,0,1)"/>
-  <circle cx="56" cy="68" r="1" fill="rgba(226,40,0,1)"/>
-  <circle cx="57" cy="68" r="1" fill="rgba(224,40,0,1)"/>
-  <circle cx="58" cy="68" r="1" fill="rgba(224,39,0,1)"/>
-  <circle cx="59" cy="68" r="1" fill="rgba(222,37,0,1)"/>
-  <circle cx="60" cy="68" r="1" fill="rgba(221,35,0,1)"/>
-  <circle cx="61" cy="68" r="1" fill="rgba(220,32,0,1)"/>
-  <circle cx="62" cy="68" r="1" fill="rgba(217,30,0,1)"/>
-  <circle cx="63" cy="68" r="1" fill="rgba(214,27,0,1)"/>
-  <circle cx="64" cy="68" r="1" fill="rgba(210,21,0,1)"/>
-  <circle cx="65" cy="68" r="1" fill="rgba(173,20,2,1)"/>
-  <circle cx="66" cy="68" r="1" fill="rgba(159,29,5,1)"/>
-  <circle cx="67" cy="68" r="1" fill="rgba(207,21,0,1)"/>
-  <circle cx="68" cy="68" r="1" fill="rgba(204,25,0,1)"/>
-  <circle cx="69" cy="68" r="1" fill="rgba(208,30,2,1)"/>
-  <circle cx="70" cy="68" r="1" fill="rgba(210,32,3,1)"/>
-  <circle cx="71" cy="68" r="1" fill="rgba(211,33,3,1)"/>
-  <circle cx="72" cy="68" r="1" fill="rgba(210,30,3,1)"/>
-  <circle cx="73" cy="68" r="1" fill="rgba(207,26,4,1)"/>
-  <circle cx="74" cy="68" r="1" fill="rgba(204,23,3,1)"/>
-  <circle cx="75" cy="68" r="1" fill="rgba(202,19,3,1)"/>
-  <circle cx="76" cy="68" r="1" fill="rgba(200,18,3,1)"/>
-  <circle cx="77" cy="68" r="1" fill="rgba(199,18,4,1)"/>
-  <circle cx="78" cy="68" r="1" fill="rgba(200,19,4,1)"/>
-  <circle cx="79" cy="68" r="1" fill="rgba(200,22,5,1)"/>
-  <circle cx="80" cy="68" r="1" fill="rgba(201,25,6,1)"/>
-  <circle cx="81" cy="68" r="1" fill="rgba(203,27,7,1)"/>
-  <circle cx="82" cy="68" r="1" fill="rgba(203,31,8,1)"/>
-  <circle cx="83" cy="68" r="1" fill="rgba(204,33,10,1)"/>
-  <circle cx="84" cy="68" r="1" fill="rgba(206,36,10,1)"/>
-  <circle cx="85" cy="68" r="1" fill="rgba(207,41,12,1)"/>
-  <circle cx="86" cy="68" r="1" fill="rgba(207,45,14,1)"/>
-  <circle cx="87" cy="68" r="1" fill="rgba(209,48,16,1)"/>
-  <circle cx="88" cy="68" r="1" fill="rgba(211,52,18,1)"/>
-  <circle cx="89" cy="68" r="1" fill="rgba(213,57,20,1)"/>
-  <circle cx="90" cy="68" r="1" fill="rgba(214,62,22,1)"/>
-  <circle cx="91" cy="68" r="1" fill="rgba(216,67,25,1)"/>
-  <circle cx="92" cy="68" r="1" fill="rgba(218,73,28,1)"/>
-  <circle cx="93" cy="68" r="1" fill="rgba(221,79,31,1)"/>
-  <circle cx="94" cy="68" r="1" fill="rgba(222,84,34,1)"/>
-  <circle cx="95" cy="68" r="1" fill="rgba(224,91,37,1)"/>
-  <circle cx="96" cy="68" r="1" fill="rgba(227,96,42,1)"/>
-  <circle cx="97" cy="68" r="1" fill="rgba(229,103,45,1)"/>
-  <circle cx="98" cy="68" r="1" fill="rgba(231,109,48,1)"/>
-  <circle cx="99" cy="68" r="1" fill="rgba(233,115,53,1)"/>
-  <circle cx="100" cy="68" r="1" fill="rgba(235,119,55,1)"/>
-  <circle cx="101" cy="68" r="1" fill="rgba(236,120,56,1)"/>
-  <circle cx="102" cy="68" r="1" fill="rgba(245,126,57,1)"/>
-  <circle cx="103" cy="68" r="1" fill="rgba(179,77,29,0.866667)"/>
-  <circle cx="104" cy="68" r="1" fill="rgba(24,0,0,0.564706)"/>
-  <circle cx="105" cy="68" r="1" fill="rgba(15,0,0,0.47451)"/>
-  <circle cx="106" cy="68" r="1" fill="rgba(0,0,0,0.45098)"/>
-  <circle cx="107" cy="68" r="1" fill="rgba(0,0,0,0.364706)"/>
-  <circle cx="108" cy="68" r="1" fill="rgba(54,28,12,0.54902)"/>
-  <circle cx="109" cy="68" r="1" fill="rgba(94,61,35,0.984314)"/>
-  <circle cx="110" cy="68" r="1" fill="rgba(96,64,37,1)"/>
-  <circle cx="111" cy="68" r="1" fill="rgba(100,68,41,1)"/>
-  <circle cx="112" cy="68" r="1" fill="rgba(103,71,44,0.929412)"/>
-  <circle cx="113" cy="68" r="1" fill="rgba(106,74,47,0.588235)"/>
-  <circle cx="114" cy="68" r="1" fill="rgba(107,75,48,0.317647)"/>
-  <circle cx="115" cy="68" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="68" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="68" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="68" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="68" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="68" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="68" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="68" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="68" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="68" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="68" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="68" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="68" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="69" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="69" r="1" fill="rgba(61,30,13,0.0156863)"/>
-  <circle cx="2" cy="69" r="1" fill="rgba(46,20,8,0.00392157)"/>
-  <circle cx="3" cy="69" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="69" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="69" r="1" fill="rgba(15,3,0,0.054902)"/>
-  <circle cx="6" cy="69" r="1" fill="rgba(19,6,1,0.12549)"/>
-  <circle cx="7" cy="69" r="1" fill="rgba(24,8,2,0.0980392)"/>
-  <circle cx="8" cy="69" r="1" fill="rgba(17,5,1,0.0666667)"/>
-  <circle cx="9" cy="69" r="1" fill="rgba(34,15,5,0.117647)"/>
-  <circle cx="10" cy="69" r="1" fill="rgba(29,12,3,0.129412)"/>
-  <circle cx="11" cy="69" r="1" fill="rgba(15,4,0,0.196078)"/>
-  <circle cx="12" cy="69" r="1" fill="rgba(17,5,1,0.345098)"/>
-  <circle cx="13" cy="69" r="1" fill="rgba(15,4,0,0.423529)"/>
-  <circle cx="14" cy="69" r="1" fill="rgba(10,1,0,0.427451)"/>
-  <circle cx="15" cy="69" r="1" fill="rgba(10,2,0,0.423529)"/>
-  <circle cx="16" cy="69" r="1" fill="rgba(10,2,0,0.419608)"/>
-  <circle cx="17" cy="69" r="1" fill="rgba(15,4,0,0.4)"/>
-  <circle cx="18" cy="69" r="1" fill="rgba(21,7,1,0.345098)"/>
-  <circle cx="19" cy="69" r="1" fill="rgba(33,14,4,0.235294)"/>
-  <circle cx="20" cy="69" r="1" fill="rgba(43,21,8,0.113725)"/>
-  <circle cx="21" cy="69" r="1" fill="rgba(46,22,9,0.0313725)"/>
-  <circle cx="22" cy="69" r="1" fill="rgba(42,20,7,0)"/>
-  <circle cx="23" cy="69" r="1" fill="rgba(28,13,4,0)"/>
-  <circle cx="24" cy="69" r="1" fill="rgba(196,131,84,0)"/>
-  <circle cx="25" cy="69" r="1" fill="rgba(255,178,118,0)"/>
-  <circle cx="26" cy="69" r="1" fill="rgba(236,88,23,0.45098)"/>
-  <circle cx="27" cy="69" r="1" fill="rgba(233,75,17,1)"/>
-  <circle cx="28" cy="69" r="1" fill="rgba(241,112,48,1)"/>
-  <circle cx="29" cy="69" r="1" fill="rgba(241,102,33,1)"/>
-  <circle cx="30" cy="69" r="1" fill="rgba(241,81,13,1)"/>
-  <circle cx="31" cy="69" r="1" fill="rgba(241,70,4,1)"/>
-  <circle cx="32" cy="69" r="1" fill="rgba(241,67,1,1)"/>
-  <circle cx="33" cy="69" r="1" fill="rgba(241,60,0,1)"/>
-  <circle cx="34" cy="69" r="1" fill="rgba(239,57,0,1)"/>
-  <circle cx="35" cy="69" r="1" fill="rgba(237,54,0,1)"/>
-  <circle cx="36" cy="69" r="1" fill="rgba(236,52,0,1)"/>
-  <circle cx="37" cy="69" r="1" fill="rgba(236,50,0,1)"/>
-  <circle cx="38" cy="69" r="1" fill="rgba(236,49,0,1)"/>
-  <circle cx="39" cy="69" r="1" fill="rgba(235,48,0,1)"/>
-  <circle cx="40" cy="69" r="1" fill="rgba(235,47,0,1)"/>
-  <circle cx="41" cy="69" r="1" fill="rgba(235,46,0,1)"/>
-  <circle cx="42" cy="69" r="1" fill="rgba(235,46,0,1)"/>
-  <circle cx="43" cy="69" r="1" fill="rgba(234,46,0,1)"/>
-  <circle cx="44" cy="69" r="1" fill="rgba(233,47,0,1)"/>
-  <circle cx="45" cy="69" r="1" fill="rgba(233,45,0,1)"/>
-  <circle cx="46" cy="69" r="1" fill="rgba(233,45,0,1)"/>
-  <circle cx="47" cy="69" r="1" fill="rgba(233,45,0,1)"/>
-  <circle cx="48" cy="69" r="1" fill="rgba(231,44,0,1)"/>
-  <circle cx="49" cy="69" r="1" fill="rgba(231,42,0,1)"/>
-  <circle cx="50" cy="69" r="1" fill="rgba(230,41,0,1)"/>
-  <circle cx="51" cy="69" r="1" fill="rgba(228,40,0,1)"/>
-  <circle cx="52" cy="69" r="1" fill="rgba(228,39,0,1)"/>
-  <circle cx="53" cy="69" r="1" fill="rgba(227,39,0,1)"/>
-  <circle cx="54" cy="69" r="1" fill="rgba(225,38,0,1)"/>
-  <circle cx="55" cy="69" r="1" fill="rgba(224,37,0,1)"/>
-  <circle cx="56" cy="69" r="1" fill="rgba(224,36,0,1)"/>
-  <circle cx="57" cy="69" r="1" fill="rgba(223,36,0,1)"/>
-  <circle cx="58" cy="69" r="1" fill="rgba(222,35,0,1)"/>
-  <circle cx="59" cy="69" r="1" fill="rgba(221,34,0,1)"/>
-  <circle cx="60" cy="69" r="1" fill="rgba(219,31,0,1)"/>
-  <circle cx="61" cy="69" r="1" fill="rgba(217,29,0,1)"/>
-  <circle cx="62" cy="69" r="1" fill="rgba(215,28,0,1)"/>
-  <circle cx="63" cy="69" r="1" fill="rgba(211,26,0,1)"/>
-  <circle cx="64" cy="69" r="1" fill="rgba(209,20,0,1)"/>
-  <circle cx="65" cy="69" r="1" fill="rgba(173,20,2,1)"/>
-  <circle cx="66" cy="69" r="1" fill="rgba(158,28,6,1)"/>
-  <circle cx="67" cy="69" r="1" fill="rgba(205,20,0,1)"/>
-  <circle cx="68" cy="69" r="1" fill="rgba(203,24,0,1)"/>
-  <circle cx="69" cy="69" r="1" fill="rgba(207,29,2,1)"/>
-  <circle cx="70" cy="69" r="1" fill="rgba(210,31,3,1)"/>
-  <circle cx="71" cy="69" r="1" fill="rgba(211,31,3,1)"/>
-  <circle cx="72" cy="69" r="1" fill="rgba(210,29,4,1)"/>
-  <circle cx="73" cy="69" r="1" fill="rgba(207,26,4,1)"/>
-  <circle cx="74" cy="69" r="1" fill="rgba(203,22,4,1)"/>
-  <circle cx="75" cy="69" r="1" fill="rgba(200,19,4,1)"/>
-  <circle cx="76" cy="69" r="1" fill="rgba(199,18,4,1)"/>
-  <circle cx="77" cy="69" r="1" fill="rgba(199,19,4,1)"/>
-  <circle cx="78" cy="69" r="1" fill="rgba(200,21,4,1)"/>
-  <circle cx="79" cy="69" r="1" fill="rgba(201,23,5,1)"/>
-  <circle cx="80" cy="69" r="1" fill="rgba(202,25,6,1)"/>
-  <circle cx="81" cy="69" r="1" fill="rgba(203,29,7,1)"/>
-  <circle cx="82" cy="69" r="1" fill="rgba(203,31,8,1)"/>
-  <circle cx="83" cy="69" r="1" fill="rgba(205,35,10,1)"/>
-  <circle cx="84" cy="69" r="1" fill="rgba(206,38,11,1)"/>
-  <circle cx="85" cy="69" r="1" fill="rgba(207,42,13,1)"/>
-  <circle cx="86" cy="69" r="1" fill="rgba(208,46,14,1)"/>
-  <circle cx="87" cy="69" r="1" fill="rgba(210,49,16,1)"/>
-  <circle cx="88" cy="69" r="1" fill="rgba(211,53,18,1)"/>
-  <circle cx="89" cy="69" r="1" fill="rgba(214,59,20,1)"/>
-  <circle cx="90" cy="69" r="1" fill="rgba(214,64,23,1)"/>
-  <circle cx="91" cy="69" r="1" fill="rgba(216,69,26,1)"/>
-  <circle cx="92" cy="69" r="1" fill="rgba(219,74,28,1)"/>
-  <circle cx="93" cy="69" r="1" fill="rgba(221,80,32,1)"/>
-  <circle cx="94" cy="69" r="1" fill="rgba(223,85,34,1)"/>
-  <circle cx="95" cy="69" r="1" fill="rgba(225,92,38,1)"/>
-  <circle cx="96" cy="69" r="1" fill="rgba(227,97,42,1)"/>
-  <circle cx="97" cy="69" r="1" fill="rgba(229,104,47,1)"/>
-  <circle cx="98" cy="69" r="1" fill="rgba(232,111,50,1)"/>
-  <circle cx="99" cy="69" r="1" fill="rgba(234,116,54,1)"/>
-  <circle cx="100" cy="69" r="1" fill="rgba(236,120,56,1)"/>
-  <circle cx="101" cy="69" r="1" fill="rgba(237,122,56,1)"/>
-  <circle cx="102" cy="69" r="1" fill="rgba(245,128,58,1)"/>
-  <circle cx="103" cy="69" r="1" fill="rgba(181,78,30,0.870588)"/>
-  <circle cx="104" cy="69" r="1" fill="rgba(28,1,0,0.584314)"/>
-  <circle cx="105" cy="69" r="1" fill="rgba(19,0,0,0.501961)"/>
-  <circle cx="106" cy="69" r="1" fill="rgba(7,0,0,0.454902)"/>
-  <circle cx="107" cy="69" r="1" fill="rgba(0,0,0,0.45098)"/>
-  <circle cx="108" cy="69" r="1" fill="rgba(4,0,0,0.368627)"/>
-  <circle cx="109" cy="69" r="1" fill="rgba(63,35,16,0.623529)"/>
-  <circle cx="110" cy="69" r="1" fill="rgba(97,64,38,1)"/>
-  <circle cx="111" cy="69" r="1" fill="rgba(98,66,39,1)"/>
-  <circle cx="112" cy="69" r="1" fill="rgba(100,68,42,1)"/>
-  <circle cx="113" cy="69" r="1" fill="rgba(103,71,44,1)"/>
-  <circle cx="114" cy="69" r="1" fill="rgba(104,72,45,1)"/>
-  <circle cx="115" cy="69" r="1" fill="rgba(103,71,44,0.380392)"/>
-  <circle cx="116" cy="69" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="69" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="69" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="69" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="69" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="69" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="69" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="69" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="69" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="69" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="69" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="69" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="70" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="70" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="70" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="70" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="70" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="70" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="70" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="70" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="70" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="70" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="70" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="70" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="70" r="1" fill="rgba(39,16,6,0.0313725)"/>
-  <circle cx="13" cy="70" r="1" fill="rgba(40,19,7,0.101961)"/>
-  <circle cx="14" cy="70" r="1" fill="rgba(33,14,4,0.117647)"/>
-  <circle cx="15" cy="70" r="1" fill="rgba(31,13,4,0.113725)"/>
-  <circle cx="16" cy="70" r="1" fill="rgba(33,13,4,0.101961)"/>
-  <circle cx="17" cy="70" r="1" fill="rgba(39,17,6,0.0862745)"/>
-  <circle cx="18" cy="70" r="1" fill="rgba(40,18,7,0.0470588)"/>
-  <circle cx="19" cy="70" r="1" fill="rgba(47,22,8,0.00784314)"/>
-  <circle cx="20" cy="70" r="1" fill="rgba(50,25,10,0)"/>
-  <circle cx="21" cy="70" r="1" fill="rgba(46,23,9,0)"/>
-  <circle cx="22" cy="70" r="1" fill="rgba(24,12,4,0)"/>
-  <circle cx="23" cy="70" r="1" fill="rgba(110,61,30,0)"/>
-  <circle cx="24" cy="70" r="1" fill="rgba(255,191,141,0)"/>
-  <circle cx="25" cy="70" r="1" fill="rgba(250,170,114,0)"/>
-  <circle cx="26" cy="70" r="1" fill="rgba(233,86,24,0.396078)"/>
-  <circle cx="27" cy="70" r="1" fill="rgba(230,64,12,1)"/>
-  <circle cx="28" cy="70" r="1" fill="rgba(239,105,44,1)"/>
-  <circle cx="29" cy="70" r="1" fill="rgba(239,97,30,1)"/>
-  <circle cx="30" cy="70" r="1" fill="rgba(238,74,10,1)"/>
-  <circle cx="31" cy="70" r="1" fill="rgba(238,62,1,1)"/>
-  <circle cx="32" cy="70" r="1" fill="rgba(238,59,0,1)"/>
-  <circle cx="33" cy="70" r="1" fill="rgba(238,55,0,1)"/>
-  <circle cx="34" cy="70" r="1" fill="rgba(236,53,0,1)"/>
-  <circle cx="35" cy="70" r="1" fill="rgba(234,49,0,1)"/>
-  <circle cx="36" cy="70" r="1" fill="rgba(233,47,0,1)"/>
-  <circle cx="37" cy="70" r="1" fill="rgba(233,46,0,1)"/>
-  <circle cx="38" cy="70" r="1" fill="rgba(233,46,0,1)"/>
-  <circle cx="39" cy="70" r="1" fill="rgba(233,45,0,1)"/>
-  <circle cx="40" cy="70" r="1" fill="rgba(233,45,0,1)"/>
-  <circle cx="41" cy="70" r="1" fill="rgba(233,44,0,1)"/>
-  <circle cx="42" cy="70" r="1" fill="rgba(233,44,0,1)"/>
-  <circle cx="43" cy="70" r="1" fill="rgba(232,44,0,1)"/>
-  <circle cx="44" cy="70" r="1" fill="rgba(232,44,0,1)"/>
-  <circle cx="45" cy="70" r="1" fill="rgba(232,43,0,1)"/>
-  <circle cx="46" cy="70" r="1" fill="rgba(232,42,0,1)"/>
-  <circle cx="47" cy="70" r="1" fill="rgba(231,42,0,1)"/>
-  <circle cx="48" cy="70" r="1" fill="rgba(230,41,0,1)"/>
-  <circle cx="49" cy="70" r="1" fill="rgba(229,40,0,1)"/>
-  <circle cx="50" cy="70" r="1" fill="rgba(228,40,0,1)"/>
-  <circle cx="51" cy="70" r="1" fill="rgba(227,40,0,1)"/>
-  <circle cx="52" cy="70" r="1" fill="rgba(227,37,0,1)"/>
-  <circle cx="53" cy="70" r="1" fill="rgba(225,36,0,1)"/>
-  <circle cx="54" cy="70" r="1" fill="rgba(224,36,0,1)"/>
-  <circle cx="55" cy="70" r="1" fill="rgba(223,34,0,1)"/>
-  <circle cx="56" cy="70" r="1" fill="rgba(221,34,0,1)"/>
-  <circle cx="57" cy="70" r="1" fill="rgba(221,33,0,1)"/>
-  <circle cx="58" cy="70" r="1" fill="rgba(220,32,0,1)"/>
-  <circle cx="59" cy="70" r="1" fill="rgba(219,30,0,1)"/>
-  <circle cx="60" cy="70" r="1" fill="rgba(217,29,0,1)"/>
-  <circle cx="61" cy="70" r="1" fill="rgba(216,27,0,1)"/>
-  <circle cx="62" cy="70" r="1" fill="rgba(214,26,0,1)"/>
-  <circle cx="63" cy="70" r="1" fill="rgba(210,23,0,1)"/>
-  <circle cx="64" cy="70" r="1" fill="rgba(207,19,0,1)"/>
-  <circle cx="65" cy="70" r="1" fill="rgba(172,20,2,1)"/>
-  <circle cx="66" cy="70" r="1" fill="rgba(157,27,5,1)"/>
-  <circle cx="67" cy="70" r="1" fill="rgba(204,20,0,1)"/>
-  <circle cx="68" cy="70" r="1" fill="rgba(202,23,0,1)"/>
-  <circle cx="69" cy="70" r="1" fill="rgba(207,27,2,1)"/>
-  <circle cx="70" cy="70" r="1" fill="rgba(209,29,3,1)"/>
-  <circle cx="71" cy="70" r="1" fill="rgba(210,30,4,1)"/>
-  <circle cx="72" cy="70" r="1" fill="rgba(209,29,4,1)"/>
-  <circle cx="73" cy="70" r="1" fill="rgba(206,25,4,1)"/>
-  <circle cx="74" cy="70" r="1" fill="rgba(203,22,4,1)"/>
-  <circle cx="75" cy="70" r="1" fill="rgba(200,19,4,1)"/>
-  <circle cx="76" cy="70" r="1" fill="rgba(199,18,4,1)"/>
-  <circle cx="77" cy="70" r="1" fill="rgba(199,19,4,1)"/>
-  <circle cx="78" cy="70" r="1" fill="rgba(200,21,5,1)"/>
-  <circle cx="79" cy="70" r="1" fill="rgba(201,24,5,1)"/>
-  <circle cx="80" cy="70" r="1" fill="rgba(202,27,7,1)"/>
-  <circle cx="81" cy="70" r="1" fill="rgba(203,29,8,1)"/>
-  <circle cx="82" cy="70" r="1" fill="rgba(204,32,9,1)"/>
-  <circle cx="83" cy="70" r="1" fill="rgba(206,36,10,1)"/>
-  <circle cx="84" cy="70" r="1" fill="rgba(207,39,11,1)"/>
-  <circle cx="85" cy="70" r="1" fill="rgba(207,43,13,1)"/>
-  <circle cx="86" cy="70" r="1" fill="rgba(208,47,15,1)"/>
-  <circle cx="87" cy="70" r="1" fill="rgba(210,50,17,1)"/>
-  <circle cx="88" cy="70" r="1" fill="rgba(212,55,19,1)"/>
-  <circle cx="89" cy="70" r="1" fill="rgba(214,60,20,1)"/>
-  <circle cx="90" cy="70" r="1" fill="rgba(214,65,23,1)"/>
-  <circle cx="91" cy="70" r="1" fill="rgba(217,70,27,1)"/>
-  <circle cx="92" cy="70" r="1" fill="rgba(220,76,30,1)"/>
-  <circle cx="93" cy="70" r="1" fill="rgba(221,81,33,1)"/>
-  <circle cx="94" cy="70" r="1" fill="rgba(223,88,36,1)"/>
-  <circle cx="95" cy="70" r="1" fill="rgba(226,93,39,1)"/>
-  <circle cx="96" cy="70" r="1" fill="rgba(228,100,42,1)"/>
-  <circle cx="97" cy="70" r="1" fill="rgba(230,106,48,1)"/>
-  <circle cx="98" cy="70" r="1" fill="rgba(233,112,51,1)"/>
-  <circle cx="99" cy="70" r="1" fill="rgba(234,118,55,1)"/>
-  <circle cx="100" cy="70" r="1" fill="rgba(236,122,56,1)"/>
-  <circle cx="101" cy="70" r="1" fill="rgba(238,124,58,1)"/>
-  <circle cx="102" cy="70" r="1" fill="rgba(248,131,60,1)"/>
-  <circle cx="103" cy="70" r="1" fill="rgba(167,70,24,0.854902)"/>
-  <circle cx="104" cy="70" r="1" fill="rgba(19,0,0,0.584314)"/>
-  <circle cx="105" cy="70" r="1" fill="rgba(22,1,0,0.509804)"/>
-  <circle cx="106" cy="70" r="1" fill="rgba(10,0,0,0.462745)"/>
-  <circle cx="107" cy="70" r="1" fill="rgba(0,0,0,0.458824)"/>
-  <circle cx="108" cy="70" r="1" fill="rgba(0,0,0,0.447059)"/>
-  <circle cx="109" cy="70" r="1" fill="rgba(7,0,0,0.376471)"/>
-  <circle cx="110" cy="70" r="1" fill="rgba(63,35,16,0.635294)"/>
-  <circle cx="111" cy="70" r="1" fill="rgba(97,64,38,0.976471)"/>
-  <circle cx="112" cy="70" r="1" fill="rgba(100,67,41,1)"/>
-  <circle cx="113" cy="70" r="1" fill="rgba(99,67,41,1)"/>
-  <circle cx="114" cy="70" r="1" fill="rgba(100,68,41,1)"/>
-  <circle cx="115" cy="70" r="1" fill="rgba(100,68,41,0.952941)"/>
-  <circle cx="116" cy="70" r="1" fill="rgba(98,66,40,0.576471)"/>
-  <circle cx="117" cy="70" r="1" fill="rgba(95,63,37,0.447059)"/>
-  <circle cx="118" cy="70" r="1" fill="rgba(92,59,35,0.180392)"/>
-  <circle cx="119" cy="70" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="70" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="70" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="70" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="70" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="70" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="70" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="70" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="70" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="71" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="71" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="71" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="71" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="71" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="71" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="71" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="71" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="71" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="71" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="71" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="71" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="71" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="71" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="71" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="71" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="71" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="71" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="71" r="1" fill="rgba(42,19,7,0)"/>
-  <circle cx="19" cy="71" r="1" fill="rgba(46,21,8,0)"/>
-  <circle cx="20" cy="71" r="1" fill="rgba(49,24,10,0)"/>
-  <circle cx="21" cy="71" r="1" fill="rgba(45,21,9,0)"/>
-  <circle cx="22" cy="71" r="1" fill="rgba(40,18,7,0)"/>
-  <circle cx="23" cy="71" r="1" fill="rgba(203,120,74,0)"/>
-  <circle cx="24" cy="71" r="1" fill="rgba(251,167,117,0)"/>
-  <circle cx="25" cy="71" r="1" fill="rgba(244,152,99,0)"/>
-  <circle cx="26" cy="71" r="1" fill="rgba(229,77,21,0.301961)"/>
-  <circle cx="27" cy="71" r="1" fill="rgba(227,53,5,1)"/>
-  <circle cx="28" cy="71" r="1" fill="rgba(235,93,37,1)"/>
-  <circle cx="29" cy="71" r="1" fill="rgba(237,87,24,1)"/>
-  <circle cx="30" cy="71" r="1" fill="rgba(236,67,7,1)"/>
-  <circle cx="31" cy="71" r="1" fill="rgba(234,55,0,1)"/>
-  <circle cx="32" cy="71" r="1" fill="rgba(235,54,0,1)"/>
-  <circle cx="33" cy="71" r="1" fill="rgba(235,51,0,1)"/>
-  <circle cx="34" cy="71" r="1" fill="rgba(233,47,0,1)"/>
-  <circle cx="35" cy="71" r="1" fill="rgba(230,44,0,1)"/>
-  <circle cx="36" cy="71" r="1" fill="rgba(230,44,0,1)"/>
-  <circle cx="37" cy="71" r="1" fill="rgba(230,44,0,1)"/>
-  <circle cx="38" cy="71" r="1" fill="rgba(231,45,0,1)"/>
-  <circle cx="39" cy="71" r="1" fill="rgba(231,45,0,1)"/>
-  <circle cx="40" cy="71" r="1" fill="rgba(231,44,0,1)"/>
-  <circle cx="41" cy="71" r="1" fill="rgba(231,43,0,1)"/>
-  <circle cx="42" cy="71" r="1" fill="rgba(231,43,0,1)"/>
-  <circle cx="43" cy="71" r="1" fill="rgba(230,43,0,1)"/>
-  <circle cx="44" cy="71" r="1" fill="rgba(230,43,0,1)"/>
-  <circle cx="45" cy="71" r="1" fill="rgba(230,42,0,1)"/>
-  <circle cx="46" cy="71" r="1" fill="rgba(230,41,0,1)"/>
-  <circle cx="47" cy="71" r="1" fill="rgba(229,41,0,1)"/>
-  <circle cx="48" cy="71" r="1" fill="rgba(228,40,0,1)"/>
-  <circle cx="49" cy="71" r="1" fill="rgba(227,39,0,1)"/>
-  <circle cx="50" cy="71" r="1" fill="rgba(226,39,0,1)"/>
-  <circle cx="51" cy="71" r="1" fill="rgba(226,38,0,1)"/>
-  <circle cx="52" cy="71" r="1" fill="rgba(224,36,0,1)"/>
-  <circle cx="53" cy="71" r="1" fill="rgba(223,35,0,1)"/>
-  <circle cx="54" cy="71" r="1" fill="rgba(223,33,0,1)"/>
-  <circle cx="55" cy="71" r="1" fill="rgba(221,32,0,1)"/>
-  <circle cx="56" cy="71" r="1" fill="rgba(219,32,0,1)"/>
-  <circle cx="57" cy="71" r="1" fill="rgba(218,30,0,1)"/>
-  <circle cx="58" cy="71" r="1" fill="rgba(218,29,0,1)"/>
-  <circle cx="59" cy="71" r="1" fill="rgba(217,28,0,1)"/>
-  <circle cx="60" cy="71" r="1" fill="rgba(214,28,0,1)"/>
-  <circle cx="61" cy="71" r="1" fill="rgba(214,26,0,1)"/>
-  <circle cx="62" cy="71" r="1" fill="rgba(212,24,0,1)"/>
-  <circle cx="63" cy="71" r="1" fill="rgba(210,21,0,1)"/>
-  <circle cx="64" cy="71" r="1" fill="rgba(207,18,0,1)"/>
-  <circle cx="65" cy="71" r="1" fill="rgba(171,19,2,1)"/>
-  <circle cx="66" cy="71" r="1" fill="rgba(156,26,5,1)"/>
-  <circle cx="67" cy="71" r="1" fill="rgba(203,18,0,1)"/>
-  <circle cx="68" cy="71" r="1" fill="rgba(201,23,1,1)"/>
-  <circle cx="69" cy="71" r="1" fill="rgba(205,27,2,1)"/>
-  <circle cx="70" cy="71" r="1" fill="rgba(208,28,4,1)"/>
-  <circle cx="71" cy="71" r="1" fill="rgba(209,29,4,1)"/>
-  <circle cx="72" cy="71" r="1" fill="rgba(207,28,4,1)"/>
-  <circle cx="73" cy="71" r="1" fill="rgba(205,24,4,1)"/>
-  <circle cx="74" cy="71" r="1" fill="rgba(203,20,4,1)"/>
-  <circle cx="75" cy="71" r="1" fill="rgba(200,19,4,1)"/>
-  <circle cx="76" cy="71" r="1" fill="rgba(200,20,4,1)"/>
-  <circle cx="77" cy="71" r="1" fill="rgba(200,21,5,1)"/>
-  <circle cx="78" cy="71" r="1" fill="rgba(200,22,5,1)"/>
-  <circle cx="79" cy="71" r="1" fill="rgba(201,25,6,1)"/>
-  <circle cx="80" cy="71" r="1" fill="rgba(203,28,7,1)"/>
-  <circle cx="81" cy="71" r="1" fill="rgba(203,30,8,1)"/>
-  <circle cx="82" cy="71" r="1" fill="rgba(204,34,10,1)"/>
-  <circle cx="83" cy="71" r="1" fill="rgba(207,36,10,1)"/>
-  <circle cx="84" cy="71" r="1" fill="rgba(207,40,12,1)"/>
-  <circle cx="85" cy="71" r="1" fill="rgba(207,44,13,1)"/>
-  <circle cx="86" cy="71" r="1" fill="rgba(209,48,16,1)"/>
-  <circle cx="87" cy="71" r="1" fill="rgba(210,52,18,1)"/>
-  <circle cx="88" cy="71" r="1" fill="rgba(213,56,20,1)"/>
-  <circle cx="89" cy="71" r="1" fill="rgba(214,62,22,1)"/>
-  <circle cx="90" cy="71" r="1" fill="rgba(216,67,24,1)"/>
-  <circle cx="91" cy="71" r="1" fill="rgba(217,71,27,1)"/>
-  <circle cx="92" cy="71" r="1" fill="rgba(220,77,30,1)"/>
-  <circle cx="93" cy="71" r="1" fill="rgba(221,83,33,1)"/>
-  <circle cx="94" cy="71" r="1" fill="rgba(224,89,37,1)"/>
-  <circle cx="95" cy="71" r="1" fill="rgba(226,94,40,1)"/>
-  <circle cx="96" cy="71" r="1" fill="rgba(229,102,44,1)"/>
-  <circle cx="97" cy="71" r="1" fill="rgba(230,107,48,1)"/>
-  <circle cx="98" cy="71" r="1" fill="rgba(233,115,53,1)"/>
-  <circle cx="99" cy="71" r="1" fill="rgba(235,119,56,1)"/>
-  <circle cx="100" cy="71" r="1" fill="rgba(236,122,57,1)"/>
-  <circle cx="101" cy="71" r="1" fill="rgba(238,125,59,1)"/>
-  <circle cx="102" cy="71" r="1" fill="rgba(249,132,60,1)"/>
-  <circle cx="103" cy="71" r="1" fill="rgba(150,60,20,0.831373)"/>
-  <circle cx="104" cy="71" r="1" fill="rgba(7,0,0,0.580392)"/>
-  <circle cx="105" cy="71" r="1" fill="rgba(24,1,0,0.513725)"/>
-  <circle cx="106" cy="71" r="1" fill="rgba(10,0,0,0.466667)"/>
-  <circle cx="107" cy="71" r="1" fill="rgba(4,0,0,0.45098)"/>
-  <circle cx="108" cy="71" r="1" fill="rgba(4,0,0,0.447059)"/>
-  <circle cx="109" cy="71" r="1" fill="rgba(0,0,0,0.443137)"/>
-  <circle cx="110" cy="71" r="1" fill="rgba(0,0,0,0.392157)"/>
-  <circle cx="111" cy="71" r="1" fill="rgba(45,21,8,0.494118)"/>
-  <circle cx="112" cy="71" r="1" fill="rgba(83,52,28,0.780392)"/>
-  <circle cx="113" cy="71" r="1" fill="rgba(98,66,40,1)"/>
-  <circle cx="114" cy="71" r="1" fill="rgba(98,65,39,1)"/>
-  <circle cx="115" cy="71" r="1" fill="rgba(97,64,38,1)"/>
-  <circle cx="116" cy="71" r="1" fill="rgba(96,63,37,1)"/>
-  <circle cx="117" cy="71" r="1" fill="rgba(93,61,35,1)"/>
-  <circle cx="118" cy="71" r="1" fill="rgba(90,58,33,0.980392)"/>
-  <circle cx="119" cy="71" r="1" fill="rgba(87,55,31,0.705882)"/>
-  <circle cx="120" cy="71" r="1" fill="rgba(83,51,27,0.305882)"/>
-  <circle cx="121" cy="71" r="1" fill="rgba(78,46,24,0.027451)"/>
-  <circle cx="122" cy="71" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="71" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="71" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="71" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="71" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="71" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="72" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="72" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="72" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="72" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="72" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="72" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="72" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="72" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="72" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="72" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="72" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="72" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="72" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="72" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="72" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="72" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="72" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="72" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="72" r="1" fill="rgba(42,19,7,0)"/>
-  <circle cx="19" cy="72" r="1" fill="rgba(46,21,8,0)"/>
-  <circle cx="20" cy="72" r="1" fill="rgba(49,24,10,0)"/>
-  <circle cx="21" cy="72" r="1" fill="rgba(42,20,8,0)"/>
-  <circle cx="22" cy="72" r="1" fill="rgba(62,28,11,0)"/>
-  <circle cx="23" cy="72" r="1" fill="rgba(236,126,74,0)"/>
-  <circle cx="24" cy="72" r="1" fill="rgba(243,129,77,0)"/>
-  <circle cx="25" cy="72" r="1" fill="rgba(242,131,80,0)"/>
-  <circle cx="26" cy="72" r="1" fill="rgba(230,73,20,0.196078)"/>
-  <circle cx="27" cy="72" r="1" fill="rgba(222,42,0,0.976471)"/>
-  <circle cx="28" cy="72" r="1" fill="rgba(230,80,27,1)"/>
-  <circle cx="29" cy="72" r="1" fill="rgba(233,79,20,1)"/>
-  <circle cx="30" cy="72" r="1" fill="rgba(233,65,7,1)"/>
-  <circle cx="31" cy="72" r="1" fill="rgba(231,51,0,1)"/>
-  <circle cx="32" cy="72" r="1" fill="rgba(231,47,0,1)"/>
-  <circle cx="33" cy="72" r="1" fill="rgba(230,44,0,1)"/>
-  <circle cx="34" cy="72" r="1" fill="rgba(228,41,0,1)"/>
-  <circle cx="35" cy="72" r="1" fill="rgba(227,40,0,1)"/>
-  <circle cx="36" cy="72" r="1" fill="rgba(227,41,0,1)"/>
-  <circle cx="37" cy="72" r="1" fill="rgba(227,42,0,1)"/>
-  <circle cx="38" cy="72" r="1" fill="rgba(229,42,0,1)"/>
-  <circle cx="39" cy="72" r="1" fill="rgba(229,42,0,1)"/>
-  <circle cx="40" cy="72" r="1" fill="rgba(229,42,0,1)"/>
-  <circle cx="41" cy="72" r="1" fill="rgba(230,42,0,1)"/>
-  <circle cx="42" cy="72" r="1" fill="rgba(229,41,0,1)"/>
-  <circle cx="43" cy="72" r="1" fill="rgba(229,41,0,1)"/>
-  <circle cx="44" cy="72" r="1" fill="rgba(227,41,0,1)"/>
-  <circle cx="45" cy="72" r="1" fill="rgba(228,41,0,1)"/>
-  <circle cx="46" cy="72" r="1" fill="rgba(228,40,0,1)"/>
-  <circle cx="47" cy="72" r="1" fill="rgba(227,39,0,1)"/>
-  <circle cx="48" cy="72" r="1" fill="rgba(226,39,0,1)"/>
-  <circle cx="49" cy="72" r="1" fill="rgba(226,38,0,1)"/>
-  <circle cx="50" cy="72" r="1" fill="rgba(225,37,0,1)"/>
-  <circle cx="51" cy="72" r="1" fill="rgba(224,36,0,1)"/>
-  <circle cx="52" cy="72" r="1" fill="rgba(222,35,0,1)"/>
-  <circle cx="53" cy="72" r="1" fill="rgba(222,32,0,1)"/>
-  <circle cx="54" cy="72" r="1" fill="rgba(221,32,0,1)"/>
-  <circle cx="55" cy="72" r="1" fill="rgba(219,31,0,1)"/>
-  <circle cx="56" cy="72" r="1" fill="rgba(218,30,0,1)"/>
-  <circle cx="57" cy="72" r="1" fill="rgba(217,28,0,1)"/>
-  <circle cx="58" cy="72" r="1" fill="rgba(217,27,0,1)"/>
-  <circle cx="59" cy="72" r="1" fill="rgba(215,26,0,1)"/>
-  <circle cx="60" cy="72" r="1" fill="rgba(214,25,0,1)"/>
-  <circle cx="61" cy="72" r="1" fill="rgba(213,24,0,1)"/>
-  <circle cx="62" cy="72" r="1" fill="rgba(210,23,0,1)"/>
-  <circle cx="63" cy="72" r="1" fill="rgba(208,21,0,1)"/>
-  <circle cx="64" cy="72" r="1" fill="rgba(207,17,0,1)"/>
-  <circle cx="65" cy="72" r="1" fill="rgba(170,18,2,1)"/>
-  <circle cx="66" cy="72" r="1" fill="rgba(155,25,5,1)"/>
-  <circle cx="67" cy="72" r="1" fill="rgba(201,17,0,1)"/>
-  <circle cx="68" cy="72" r="1" fill="rgba(200,22,1,1)"/>
-  <circle cx="69" cy="72" r="1" fill="rgba(203,25,2,1)"/>
-  <circle cx="70" cy="72" r="1" fill="rgba(207,27,4,1)"/>
-  <circle cx="71" cy="72" r="1" fill="rgba(208,29,5,1)"/>
-  <circle cx="72" cy="72" r="1" fill="rgba(207,27,5,1)"/>
-  <circle cx="73" cy="72" r="1" fill="rgba(204,23,5,1)"/>
-  <circle cx="74" cy="72" r="1" fill="rgba(202,21,5,1)"/>
-  <circle cx="75" cy="72" r="1" fill="rgba(201,20,5,1)"/>
-  <circle cx="76" cy="72" r="1" fill="rgba(200,20,5,1)"/>
-  <circle cx="77" cy="72" r="1" fill="rgba(200,22,5,1)"/>
-  <circle cx="78" cy="72" r="1" fill="rgba(200,24,6,1)"/>
-  <circle cx="79" cy="72" r="1" fill="rgba(202,26,6,1)"/>
-  <circle cx="80" cy="72" r="1" fill="rgba(203,28,8,1)"/>
-  <circle cx="81" cy="72" r="1" fill="rgba(204,31,8,1)"/>
-  <circle cx="82" cy="72" r="1" fill="rgba(205,34,10,1)"/>
-  <circle cx="83" cy="72" r="1" fill="rgba(207,38,11,1)"/>
-  <circle cx="84" cy="72" r="1" fill="rgba(207,42,13,1)"/>
-  <circle cx="85" cy="72" r="1" fill="rgba(207,46,14,1)"/>
-  <circle cx="86" cy="72" r="1" fill="rgba(210,49,16,1)"/>
-  <circle cx="87" cy="72" r="1" fill="rgba(211,53,18,1)"/>
-  <circle cx="88" cy="72" r="1" fill="rgba(214,59,20,1)"/>
-  <circle cx="89" cy="72" r="1" fill="rgba(214,64,22,1)"/>
-  <circle cx="90" cy="72" r="1" fill="rgba(216,68,25,1)"/>
-  <circle cx="91" cy="72" r="1" fill="rgba(218,72,27,1)"/>
-  <circle cx="92" cy="72" r="1" fill="rgba(221,79,31,1)"/>
-  <circle cx="93" cy="72" r="1" fill="rgba(222,85,34,1)"/>
-  <circle cx="94" cy="72" r="1" fill="rgba(224,90,38,1)"/>
-  <circle cx="95" cy="72" r="1" fill="rgba(227,97,42,1)"/>
-  <circle cx="96" cy="72" r="1" fill="rgba(229,104,46,1)"/>
-  <circle cx="97" cy="72" r="1" fill="rgba(232,109,50,1)"/>
-  <circle cx="98" cy="72" r="1" fill="rgba(233,117,54,1)"/>
-  <circle cx="99" cy="72" r="1" fill="rgba(236,121,56,1)"/>
-  <circle cx="100" cy="72" r="1" fill="rgba(237,124,57,1)"/>
-  <circle cx="101" cy="72" r="1" fill="rgba(239,126,58,1)"/>
-  <circle cx="102" cy="72" r="1" fill="rgba(245,127,56,1)"/>
-  <circle cx="103" cy="72" r="1" fill="rgba(138,51,16,0.8)"/>
-  <circle cx="104" cy="72" r="1" fill="rgba(15,0,0,0.580392)"/>
-  <circle cx="105" cy="72" r="1" fill="rgba(21,1,0,0.509804)"/>
-  <circle cx="106" cy="72" r="1" fill="rgba(10,0,0,0.462745)"/>
-  <circle cx="107" cy="72" r="1" fill="rgba(4,0,0,0.435294)"/>
-  <circle cx="108" cy="72" r="1" fill="rgba(7,1,0,0.419608)"/>
-  <circle cx="109" cy="72" r="1" fill="rgba(7,2,0,0.419608)"/>
-  <circle cx="110" cy="72" r="1" fill="rgba(4,0,0,0.431373)"/>
-  <circle cx="111" cy="72" r="1" fill="rgba(0,0,0,0.407843)"/>
-  <circle cx="112" cy="72" r="1" fill="rgba(19,5,1,0.364706)"/>
-  <circle cx="113" cy="72" r="1" fill="rgba(58,31,13,0.509804)"/>
-  <circle cx="114" cy="72" r="1" fill="rgba(85,53,29,0.698039)"/>
-  <circle cx="115" cy="72" r="1" fill="rgba(91,58,33,0.721569)"/>
-  <circle cx="116" cy="72" r="1" fill="rgba(88,56,31,0.705882)"/>
-  <circle cx="117" cy="72" r="1" fill="rgba(90,57,32,0.890196)"/>
-  <circle cx="118" cy="72" r="1" fill="rgba(90,56,32,1)"/>
-  <circle cx="119" cy="72" r="1" fill="rgba(85,52,29,1)"/>
-  <circle cx="120" cy="72" r="1" fill="rgba(82,49,26,1)"/>
-  <circle cx="121" cy="72" r="1" fill="rgba(77,45,24,0.827451)"/>
-  <circle cx="122" cy="72" r="1" fill="rgba(74,42,21,0.403922)"/>
-  <circle cx="123" cy="72" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="72" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="72" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="72" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="72" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="73" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="73" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="73" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="73" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="73" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="73" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="73" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="73" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="73" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="73" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="73" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="73" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="73" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="73" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="73" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="73" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="73" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="73" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="73" r="1" fill="rgba(42,19,7,0)"/>
-  <circle cx="19" cy="73" r="1" fill="rgba(46,21,8,0)"/>
-  <circle cx="20" cy="73" r="1" fill="rgba(49,24,10,0)"/>
-  <circle cx="21" cy="73" r="1" fill="rgba(36,22,9,0)"/>
-  <circle cx="22" cy="73" r="1" fill="rgba(57,21,8,0)"/>
-  <circle cx="23" cy="73" r="1" fill="rgba(214,43,3,0)"/>
-  <circle cx="24" cy="73" r="1" fill="rgba(224,44,3,0)"/>
-  <circle cx="25" cy="73" r="1" fill="rgba(221,44,3,0)"/>
-  <circle cx="26" cy="73" r="1" fill="rgba(221,39,1,0.0745098)"/>
-  <circle cx="27" cy="73" r="1" fill="rgba(221,40,0,0.945098)"/>
-  <circle cx="28" cy="73" r="1" fill="rgba(226,61,9,1)"/>
-  <circle cx="29" cy="73" r="1" fill="rgba(229,67,10,1)"/>
-  <circle cx="30" cy="73" r="1" fill="rgba(229,59,4,1)"/>
-  <circle cx="31" cy="73" r="1" fill="rgba(227,46,0,1)"/>
-  <circle cx="32" cy="73" r="1" fill="rgba(225,39,0,1)"/>
-  <circle cx="33" cy="73" r="1" fill="rgba(224,38,0,1)"/>
-  <circle cx="34" cy="73" r="1" fill="rgba(224,38,0,1)"/>
-  <circle cx="35" cy="73" r="1" fill="rgba(224,37,0,1)"/>
-  <circle cx="36" cy="73" r="1" fill="rgba(225,37,0,1)"/>
-  <circle cx="37" cy="73" r="1" fill="rgba(226,39,0,1)"/>
-  <circle cx="38" cy="73" r="1" fill="rgba(227,40,0,1)"/>
-  <circle cx="39" cy="73" r="1" fill="rgba(227,39,0,1)"/>
-  <circle cx="40" cy="73" r="1" fill="rgba(227,40,0,1)"/>
-  <circle cx="41" cy="73" r="1" fill="rgba(227,40,0,1)"/>
-  <circle cx="42" cy="73" r="1" fill="rgba(227,40,0,1)"/>
-  <circle cx="43" cy="73" r="1" fill="rgba(227,40,0,1)"/>
-  <circle cx="44" cy="73" r="1" fill="rgba(227,39,0,1)"/>
-  <circle cx="45" cy="73" r="1" fill="rgba(226,39,0,1)"/>
-  <circle cx="46" cy="73" r="1" fill="rgba(226,38,0,1)"/>
-  <circle cx="47" cy="73" r="1" fill="rgba(225,36,0,1)"/>
-  <circle cx="48" cy="73" r="1" fill="rgba(224,37,0,1)"/>
-  <circle cx="49" cy="73" r="1" fill="rgba(224,36,0,1)"/>
-  <circle cx="50" cy="73" r="1" fill="rgba(223,35,0,1)"/>
-  <circle cx="51" cy="73" r="1" fill="rgba(221,33,0,1)"/>
-  <circle cx="52" cy="73" r="1" fill="rgba(221,32,0,1)"/>
-  <circle cx="53" cy="73" r="1" fill="rgba(220,31,0,1)"/>
-  <circle cx="54" cy="73" r="1" fill="rgba(218,30,0,1)"/>
-  <circle cx="55" cy="73" r="1" fill="rgba(218,30,0,1)"/>
-  <circle cx="56" cy="73" r="1" fill="rgba(217,29,0,1)"/>
-  <circle cx="57" cy="73" r="1" fill="rgba(217,26,0,1)"/>
-  <circle cx="58" cy="73" r="1" fill="rgba(215,26,0,1)"/>
-  <circle cx="59" cy="73" r="1" fill="rgba(214,25,0,1)"/>
-  <circle cx="60" cy="73" r="1" fill="rgba(213,24,0,1)"/>
-  <circle cx="61" cy="73" r="1" fill="rgba(211,23,0,1)"/>
-  <circle cx="62" cy="73" r="1" fill="rgba(210,22,0,1)"/>
-  <circle cx="63" cy="73" r="1" fill="rgba(207,20,0,1)"/>
-  <circle cx="64" cy="73" r="1" fill="rgba(205,16,0,1)"/>
-  <circle cx="65" cy="73" r="1" fill="rgba(169,18,2,1)"/>
-  <circle cx="66" cy="73" r="1" fill="rgba(154,25,5,1)"/>
-  <circle cx="67" cy="73" r="1" fill="rgba(200,17,0,1)"/>
-  <circle cx="68" cy="73" r="1" fill="rgba(199,21,1,1)"/>
-  <circle cx="69" cy="73" r="1" fill="rgba(203,24,2,1)"/>
-  <circle cx="70" cy="73" r="1" fill="rgba(207,26,4,1)"/>
-  <circle cx="71" cy="73" r="1" fill="rgba(208,28,5,1)"/>
-  <circle cx="72" cy="73" r="1" fill="rgba(207,25,6,1)"/>
-  <circle cx="73" cy="73" r="1" fill="rgba(204,22,6,1)"/>
-  <circle cx="74" cy="73" r="1" fill="rgba(202,22,5,1)"/>
-  <circle cx="75" cy="73" r="1" fill="rgba(201,22,5,1)"/>
-  <circle cx="76" cy="73" r="1" fill="rgba(200,22,5,1)"/>
-  <circle cx="77" cy="73" r="1" fill="rgba(200,23,5,1)"/>
-  <circle cx="78" cy="73" r="1" fill="rgba(201,24,6,1)"/>
-  <circle cx="79" cy="73" r="1" fill="rgba(202,27,6,1)"/>
-  <circle cx="80" cy="73" r="1" fill="rgba(203,30,8,1)"/>
-  <circle cx="81" cy="73" r="1" fill="rgba(204,33,9,1)"/>
-  <circle cx="82" cy="73" r="1" fill="rgba(206,36,10,1)"/>
-  <circle cx="83" cy="73" r="1" fill="rgba(207,40,12,1)"/>
-  <circle cx="84" cy="73" r="1" fill="rgba(207,44,13,1)"/>
-  <circle cx="85" cy="73" r="1" fill="rgba(208,48,15,1)"/>
-  <circle cx="86" cy="73" r="1" fill="rgba(210,50,17,1)"/>
-  <circle cx="87" cy="73" r="1" fill="rgba(212,54,19,1)"/>
-  <circle cx="88" cy="73" r="1" fill="rgba(214,60,21,1)"/>
-  <circle cx="89" cy="73" r="1" fill="rgba(215,65,23,1)"/>
-  <circle cx="90" cy="73" r="1" fill="rgba(217,69,26,1)"/>
-  <circle cx="91" cy="73" r="1" fill="rgba(219,74,29,1)"/>
-  <circle cx="92" cy="73" r="1" fill="rgba(221,81,32,1)"/>
-  <circle cx="93" cy="73" r="1" fill="rgba(223,86,36,1)"/>
-  <circle cx="94" cy="73" r="1" fill="rgba(226,93,39,1)"/>
-  <circle cx="95" cy="73" r="1" fill="rgba(228,99,42,1)"/>
-  <circle cx="96" cy="73" r="1" fill="rgba(230,106,47,1)"/>
-  <circle cx="97" cy="73" r="1" fill="rgba(233,112,51,1)"/>
-  <circle cx="98" cy="73" r="1" fill="rgba(234,118,55,1)"/>
-  <circle cx="99" cy="73" r="1" fill="rgba(236,123,57,1)"/>
-  <circle cx="100" cy="73" r="1" fill="rgba(238,126,59,1)"/>
-  <circle cx="101" cy="73" r="1" fill="rgba(240,128,58,1)"/>
-  <circle cx="102" cy="73" r="1" fill="rgba(241,122,53,1)"/>
-  <circle cx="103" cy="73" r="1" fill="rgba(121,42,12,0.768627)"/>
-  <circle cx="104" cy="73" r="1" fill="rgba(19,0,0,0.580392)"/>
-  <circle cx="105" cy="73" r="1" fill="rgba(21,1,0,0.505882)"/>
-  <circle cx="106" cy="73" r="1" fill="rgba(10,0,0,0.45098)"/>
-  <circle cx="107" cy="73" r="1" fill="rgba(4,0,0,0.419608)"/>
-  <circle cx="108" cy="73" r="1" fill="rgba(4,0,0,0.384314)"/>
-  <circle cx="109" cy="73" r="1" fill="rgba(10,3,0,0.352941)"/>
-  <circle cx="110" cy="73" r="1" fill="rgba(12,3,0,0.364706)"/>
-  <circle cx="111" cy="73" r="1" fill="rgba(7,1,0,0.419608)"/>
-  <circle cx="112" cy="73" r="1" fill="rgba(0,0,0,0.447059)"/>
-  <circle cx="113" cy="73" r="1" fill="rgba(0,0,0,0.392157)"/>
-  <circle cx="114" cy="73" r="1" fill="rgba(26,9,2,0.321569)"/>
-  <circle cx="115" cy="73" r="1" fill="rgba(39,18,6,0.196078)"/>
-  <circle cx="116" cy="73" r="1" fill="rgba(46,22,9,0.0823529)"/>
-  <circle cx="117" cy="73" r="1" fill="rgba(55,29,13,0.160784)"/>
-  <circle cx="118" cy="73" r="1" fill="rgba(73,42,21,0.411765)"/>
-  <circle cx="119" cy="73" r="1" fill="rgba(78,46,24,0.72549)"/>
-  <circle cx="120" cy="73" r="1" fill="rgba(80,47,24,0.996078)"/>
-  <circle cx="121" cy="73" r="1" fill="rgba(75,43,22,1)"/>
-  <circle cx="122" cy="73" r="1" fill="rgba(71,40,20,0.964706)"/>
-  <circle cx="123" cy="73" r="1" fill="rgba(67,36,17,0.4)"/>
-  <circle cx="124" cy="73" r="1" fill="rgba(62,31,14,0.0431373)"/>
-  <circle cx="125" cy="73" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="73" r="1" fill="rgba(254,253,254,0)"/>
-  <circle cx="127" cy="73" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="74" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="74" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="74" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="74" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="74" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="74" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="74" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="74" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="74" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="74" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="74" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="74" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="74" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="74" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="74" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="74" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="74" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="74" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="74" r="1" fill="rgba(42,19,7,0)"/>
-  <circle cx="19" cy="74" r="1" fill="rgba(46,21,8,0)"/>
-  <circle cx="20" cy="74" r="1" fill="rgba(45,24,10,0)"/>
-  <circle cx="21" cy="74" r="1" fill="rgba(50,22,9,0)"/>
-  <circle cx="22" cy="74" r="1" fill="rgba(173,29,2,0)"/>
-  <circle cx="23" cy="74" r="1" fill="rgba(221,33,0,0)"/>
-  <circle cx="24" cy="74" r="1" fill="rgba(217,33,0,0)"/>
-  <circle cx="25" cy="74" r="1" fill="rgba(217,33,0,0)"/>
-  <circle cx="26" cy="74" r="1" fill="rgba(217,34,0,0.0235294)"/>
-  <circle cx="27" cy="74" r="1" fill="rgba(217,36,0,0.835294)"/>
-  <circle cx="28" cy="74" r="1" fill="rgba(222,45,0,1)"/>
-  <circle cx="29" cy="74" r="1" fill="rgba(225,54,1,1)"/>
-  <circle cx="30" cy="74" r="1" fill="rgba(225,51,0,1)"/>
-  <circle cx="31" cy="74" r="1" fill="rgba(224,43,0,1)"/>
-  <circle cx="32" cy="74" r="1" fill="rgba(221,36,0,1)"/>
-  <circle cx="33" cy="74" r="1" fill="rgba(221,34,0,1)"/>
-  <circle cx="34" cy="74" r="1" fill="rgba(221,35,0,1)"/>
-  <circle cx="35" cy="74" r="1" fill="rgba(222,35,0,1)"/>
-  <circle cx="36" cy="74" r="1" fill="rgba(223,36,0,1)"/>
-  <circle cx="37" cy="74" r="1" fill="rgba(224,37,0,1)"/>
-  <circle cx="38" cy="74" r="1" fill="rgba(225,37,0,1)"/>
-  <circle cx="39" cy="74" r="1" fill="rgba(225,37,0,1)"/>
-  <circle cx="40" cy="74" r="1" fill="rgba(225,38,0,1)"/>
-  <circle cx="41" cy="74" r="1" fill="rgba(225,37,0,1)"/>
-  <circle cx="42" cy="74" r="1" fill="rgba(225,38,0,1)"/>
-  <circle cx="43" cy="74" r="1" fill="rgba(225,38,0,1)"/>
-  <circle cx="44" cy="74" r="1" fill="rgba(224,36,0,1)"/>
-  <circle cx="45" cy="74" r="1" fill="rgba(224,36,0,1)"/>
-  <circle cx="46" cy="74" r="1" fill="rgba(224,36,0,1)"/>
-  <circle cx="47" cy="74" r="1" fill="rgba(224,34,0,1)"/>
-  <circle cx="48" cy="74" r="1" fill="rgba(223,34,0,1)"/>
-  <circle cx="49" cy="74" r="1" fill="rgba(222,33,0,1)"/>
-  <circle cx="50" cy="74" r="1" fill="rgba(221,32,0,1)"/>
-  <circle cx="51" cy="74" r="1" fill="rgba(220,31,0,1)"/>
-  <circle cx="52" cy="74" r="1" fill="rgba(219,31,0,1)"/>
-  <circle cx="53" cy="74" r="1" fill="rgba(218,31,0,1)"/>
-  <circle cx="54" cy="74" r="1" fill="rgba(217,29,0,1)"/>
-  <circle cx="55" cy="74" r="1" fill="rgba(217,27,0,1)"/>
-  <circle cx="56" cy="74" r="1" fill="rgba(216,27,0,1)"/>
-  <circle cx="57" cy="74" r="1" fill="rgba(214,26,0,1)"/>
-  <circle cx="58" cy="74" r="1" fill="rgba(213,24,0,1)"/>
-  <circle cx="59" cy="74" r="1" fill="rgba(213,24,0,1)"/>
-  <circle cx="60" cy="74" r="1" fill="rgba(210,22,0,1)"/>
-  <circle cx="61" cy="74" r="1" fill="rgba(210,22,0,1)"/>
-  <circle cx="62" cy="74" r="1" fill="rgba(208,21,0,1)"/>
-  <circle cx="63" cy="74" r="1" fill="rgba(205,18,0,1)"/>
-  <circle cx="64" cy="74" r="1" fill="rgba(203,16,0,1)"/>
-  <circle cx="65" cy="74" r="1" fill="rgba(169,18,2,1)"/>
-  <circle cx="66" cy="74" r="1" fill="rgba(152,24,6,1)"/>
-  <circle cx="67" cy="74" r="1" fill="rgba(199,16,0,1)"/>
-  <circle cx="68" cy="74" r="1" fill="rgba(197,19,1,1)"/>
-  <circle cx="69" cy="74" r="1" fill="rgba(202,22,2,1)"/>
-  <circle cx="70" cy="74" r="1" fill="rgba(205,25,5,1)"/>
-  <circle cx="71" cy="74" r="1" fill="rgba(207,27,6,1)"/>
-  <circle cx="72" cy="74" r="1" fill="rgba(206,25,6,1)"/>
-  <circle cx="73" cy="74" r="1" fill="rgba(204,24,6,1)"/>
-  <circle cx="74" cy="74" r="1" fill="rgba(203,24,6,1)"/>
-  <circle cx="75" cy="74" r="1" fill="rgba(201,24,6,1)"/>
-  <circle cx="76" cy="74" r="1" fill="rgba(201,24,6,1)"/>
-  <circle cx="77" cy="74" r="1" fill="rgba(201,24,6,1)"/>
-  <circle cx="78" cy="74" r="1" fill="rgba(202,26,7,1)"/>
-  <circle cx="79" cy="74" r="1" fill="rgba(203,29,7,1)"/>
-  <circle cx="80" cy="74" r="1" fill="rgba(204,31,8,1)"/>
-  <circle cx="81" cy="74" r="1" fill="rgba(205,34,10,1)"/>
-  <circle cx="82" cy="74" r="1" fill="rgba(207,37,11,1)"/>
-  <circle cx="83" cy="74" r="1" fill="rgba(207,41,12,1)"/>
-  <circle cx="84" cy="74" r="1" fill="rgba(207,45,14,1)"/>
-  <circle cx="85" cy="74" r="1" fill="rgba(209,49,16,1)"/>
-  <circle cx="86" cy="74" r="1" fill="rgba(210,52,18,1)"/>
-  <circle cx="87" cy="74" r="1" fill="rgba(213,56,20,1)"/>
-  <circle cx="88" cy="74" r="1" fill="rgba(214,62,21,1)"/>
-  <circle cx="89" cy="74" r="1" fill="rgba(215,67,24,1)"/>
-  <circle cx="90" cy="74" r="1" fill="rgba(217,72,27,1)"/>
-  <circle cx="91" cy="74" r="1" fill="rgba(220,77,30,1)"/>
-  <circle cx="92" cy="74" r="1" fill="rgba(221,83,33,1)"/>
-  <circle cx="93" cy="74" r="1" fill="rgba(224,89,37,1)"/>
-  <circle cx="94" cy="74" r="1" fill="rgba(227,95,40,1)"/>
-  <circle cx="95" cy="74" r="1" fill="rgba(228,101,44,1)"/>
-  <circle cx="96" cy="74" r="1" fill="rgba(231,107,48,1)"/>
-  <circle cx="97" cy="74" r="1" fill="rgba(233,115,53,1)"/>
-  <circle cx="98" cy="74" r="1" fill="rgba(236,120,56,1)"/>
-  <circle cx="99" cy="74" r="1" fill="rgba(237,124,59,1)"/>
-  <circle cx="100" cy="74" r="1" fill="rgba(238,127,60,1)"/>
-  <circle cx="101" cy="74" r="1" fill="rgba(241,128,58,1)"/>
-  <circle cx="102" cy="74" r="1" fill="rgba(234,115,49,0.996078)"/>
-  <circle cx="103" cy="74" r="1" fill="rgba(91,24,6,0.72549)"/>
-  <circle cx="104" cy="74" r="1" fill="rgba(22,0,0,0.576471)"/>
-  <circle cx="105" cy="74" r="1" fill="rgba(19,1,0,0.498039)"/>
-  <circle cx="106" cy="74" r="1" fill="rgba(7,0,0,0.435294)"/>
-  <circle cx="107" cy="74" r="1" fill="rgba(0,0,0,0.396078)"/>
-  <circle cx="108" cy="74" r="1" fill="rgba(0,0,0,0.341176)"/>
-  <circle cx="109" cy="74" r="1" fill="rgba(7,0,0,0.27451)"/>
-  <circle cx="110" cy="74" r="1" fill="rgba(17,4,1,0.25098)"/>
-  <circle cx="111" cy="74" r="1" fill="rgba(19,5,1,0.305882)"/>
-  <circle cx="112" cy="74" r="1" fill="rgba(10,2,0,0.403922)"/>
-  <circle cx="113" cy="74" r="1" fill="rgba(0,0,0,0.458824)"/>
-  <circle cx="114" cy="74" r="1" fill="rgba(0,0,0,0.462745)"/>
-  <circle cx="115" cy="74" r="1" fill="rgba(7,1,0,0.435294)"/>
-  <circle cx="116" cy="74" r="1" fill="rgba(12,3,0,0.403922)"/>
-  <circle cx="117" cy="74" r="1" fill="rgba(17,5,1,0.368627)"/>
-  <circle cx="118" cy="74" r="1" fill="rgba(36,15,5,0.156863)"/>
-  <circle cx="119" cy="74" r="1" fill="rgba(26,10,3,0.105882)"/>
-  <circle cx="120" cy="74" r="1" fill="rgba(54,27,11,0.45098)"/>
-  <circle cx="121" cy="74" r="1" fill="rgba(70,39,19,0.933333)"/>
-  <circle cx="122" cy="74" r="1" fill="rgba(70,38,18,1)"/>
-  <circle cx="123" cy="74" r="1" fill="rgba(67,35,16,1)"/>
-  <circle cx="124" cy="74" r="1" fill="rgba(62,31,14,0.870588)"/>
-  <circle cx="125" cy="74" r="1" fill="rgba(61,30,13,0.458824)"/>
-  <circle cx="126" cy="74" r="1" fill="rgba(61,30,13,0.101961)"/>
-  <circle cx="127" cy="74" r="1" fill="rgba(253,252,252,0)"/>
-  <circle cx="0" cy="75" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="75" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="75" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="75" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="75" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="75" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="75" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="75" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="75" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="75" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="75" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="75" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="75" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="75" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="75" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="75" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="75" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="75" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="75" r="1" fill="rgba(42,19,7,0)"/>
-  <circle cx="19" cy="75" r="1" fill="rgba(46,21,8,0)"/>
-  <circle cx="20" cy="75" r="1" fill="rgba(29,24,10,0)"/>
-  <circle cx="21" cy="75" r="1" fill="rgba(142,27,4,0)"/>
-  <circle cx="22" cy="75" r="1" fill="rgba(227,32,0,0)"/>
-  <circle cx="23" cy="75" r="1" fill="rgba(214,31,0,0)"/>
-  <circle cx="24" cy="75" r="1" fill="rgba(214,31,0,0)"/>
-  <circle cx="25" cy="75" r="1" fill="rgba(214,31,0,0)"/>
-  <circle cx="26" cy="75" r="1" fill="rgba(214,31,0,0)"/>
-  <circle cx="27" cy="75" r="1" fill="rgba(215,32,0,0.682353)"/>
-  <circle cx="28" cy="75" r="1" fill="rgba(220,41,0,1)"/>
-  <circle cx="29" cy="75" r="1" fill="rgba(224,51,0,1)"/>
-  <circle cx="30" cy="75" r="1" fill="rgba(224,50,0,1)"/>
-  <circle cx="31" cy="75" r="1" fill="rgba(221,42,0,1)"/>
-  <circle cx="32" cy="75" r="1" fill="rgba(220,35,0,1)"/>
-  <circle cx="33" cy="75" r="1" fill="rgba(219,32,0,1)"/>
-  <circle cx="34" cy="75" r="1" fill="rgba(220,33,0,1)"/>
-  <circle cx="35" cy="75" r="1" fill="rgba(221,33,0,1)"/>
-  <circle cx="36" cy="75" r="1" fill="rgba(221,35,0,1)"/>
-  <circle cx="37" cy="75" r="1" fill="rgba(222,36,0,1)"/>
-  <circle cx="38" cy="75" r="1" fill="rgba(223,36,0,1)"/>
-  <circle cx="39" cy="75" r="1" fill="rgba(223,36,0,1)"/>
-  <circle cx="40" cy="75" r="1" fill="rgba(223,36,0,1)"/>
-  <circle cx="41" cy="75" r="1" fill="rgba(223,34,0,1)"/>
-  <circle cx="42" cy="75" r="1" fill="rgba(223,35,0,1)"/>
-  <circle cx="43" cy="75" r="1" fill="rgba(223,35,0,1)"/>
-  <circle cx="44" cy="75" r="1" fill="rgba(222,34,0,1)"/>
-  <circle cx="45" cy="75" r="1" fill="rgba(221,34,0,1)"/>
-  <circle cx="46" cy="75" r="1" fill="rgba(221,33,0,1)"/>
-  <circle cx="47" cy="75" r="1" fill="rgba(221,33,0,1)"/>
-  <circle cx="48" cy="75" r="1" fill="rgba(221,32,0,1)"/>
-  <circle cx="49" cy="75" r="1" fill="rgba(220,31,0,1)"/>
-  <circle cx="50" cy="75" r="1" fill="rgba(219,31,0,1)"/>
-  <circle cx="51" cy="75" r="1" fill="rgba(218,31,0,1)"/>
-  <circle cx="52" cy="75" r="1" fill="rgba(217,30,0,1)"/>
-  <circle cx="53" cy="75" r="1" fill="rgba(217,28,0,1)"/>
-  <circle cx="54" cy="75" r="1" fill="rgba(217,27,0,1)"/>
-  <circle cx="55" cy="75" r="1" fill="rgba(215,26,0,1)"/>
-  <circle cx="56" cy="75" r="1" fill="rgba(214,25,0,1)"/>
-  <circle cx="57" cy="75" r="1" fill="rgba(213,25,0,1)"/>
-  <circle cx="58" cy="75" r="1" fill="rgba(212,23,0,1)"/>
-  <circle cx="59" cy="75" r="1" fill="rgba(210,22,0,1)"/>
-  <circle cx="60" cy="75" r="1" fill="rgba(210,22,0,1)"/>
-  <circle cx="61" cy="75" r="1" fill="rgba(209,20,0,1)"/>
-  <circle cx="62" cy="75" r="1" fill="rgba(207,19,0,1)"/>
-  <circle cx="63" cy="75" r="1" fill="rgba(203,18,0,1)"/>
-  <circle cx="64" cy="75" r="1" fill="rgba(202,15,0,1)"/>
-  <circle cx="65" cy="75" r="1" fill="rgba(168,17,2,1)"/>
-  <circle cx="66" cy="75" r="1" fill="rgba(150,22,5,1)"/>
-  <circle cx="67" cy="75" r="1" fill="rgba(196,14,1,1)"/>
-  <circle cx="68" cy="75" r="1" fill="rgba(196,18,2,1)"/>
-  <circle cx="69" cy="75" r="1" fill="rgba(200,21,3,1)"/>
-  <circle cx="70" cy="75" r="1" fill="rgba(204,24,5,1)"/>
-  <circle cx="71" cy="75" r="1" fill="rgba(206,26,6,1)"/>
-  <circle cx="72" cy="75" r="1" fill="rgba(206,25,7,1)"/>
-  <circle cx="73" cy="75" r="1" fill="rgba(205,26,7,1)"/>
-  <circle cx="74" cy="75" r="1" fill="rgba(203,26,6,1)"/>
-  <circle cx="75" cy="75" r="1" fill="rgba(202,25,6,1)"/>
-  <circle cx="76" cy="75" r="1" fill="rgba(202,25,6,1)"/>
-  <circle cx="77" cy="75" r="1" fill="rgba(203,26,7,1)"/>
-  <circle cx="78" cy="75" r="1" fill="rgba(207,29,7,1)"/>
-  <circle cx="79" cy="75" r="1" fill="rgba(213,32,9,1)"/>
-  <circle cx="80" cy="75" r="1" fill="rgba(214,35,10,1)"/>
-  <circle cx="81" cy="75" r="1" fill="rgba(209,36,11,1)"/>
-  <circle cx="82" cy="75" r="1" fill="rgba(207,38,11,1)"/>
-  <circle cx="83" cy="75" r="1" fill="rgba(207,42,13,1)"/>
-  <circle cx="84" cy="75" r="1" fill="rgba(207,46,14,1)"/>
-  <circle cx="85" cy="75" r="1" fill="rgba(210,50,16,1)"/>
-  <circle cx="86" cy="75" r="1" fill="rgba(211,54,19,1)"/>
-  <circle cx="87" cy="75" r="1" fill="rgba(214,59,20,1)"/>
-  <circle cx="88" cy="75" r="1" fill="rgba(215,64,23,1)"/>
-  <circle cx="89" cy="75" r="1" fill="rgba(217,69,26,1)"/>
-  <circle cx="90" cy="75" r="1" fill="rgba(218,74,28,1)"/>
-  <circle cx="91" cy="75" r="1" fill="rgba(221,80,31,1)"/>
-  <circle cx="92" cy="75" r="1" fill="rgba(222,84,34,1)"/>
-  <circle cx="93" cy="75" r="1" fill="rgba(224,92,37,1)"/>
-  <circle cx="94" cy="75" r="1" fill="rgba(227,96,42,1)"/>
-  <circle cx="95" cy="75" r="1" fill="rgba(229,104,45,1)"/>
-  <circle cx="96" cy="75" r="1" fill="rgba(232,110,49,1)"/>
-  <circle cx="97" cy="75" r="1" fill="rgba(234,117,54,1)"/>
-  <circle cx="98" cy="75" r="1" fill="rgba(236,122,57,1)"/>
-  <circle cx="99" cy="75" r="1" fill="rgba(237,125,60,1)"/>
-  <circle cx="100" cy="75" r="1" fill="rgba(239,129,60,1)"/>
-  <circle cx="101" cy="75" r="1" fill="rgba(242,127,58,1)"/>
-  <circle cx="102" cy="75" r="1" fill="rgba(223,103,42,0.972549)"/>
-  <circle cx="103" cy="75" r="1" fill="rgba(59,10,2,0.686275)"/>
-  <circle cx="104" cy="75" r="1" fill="rgba(28,1,0,0.568627)"/>
-  <circle cx="105" cy="75" r="1" fill="rgba(19,1,0,0.482353)"/>
-  <circle cx="106" cy="75" r="1" fill="rgba(4,0,0,0.423529)"/>
-  <circle cx="107" cy="75" r="1" fill="rgba(0,0,0,0.368627)"/>
-  <circle cx="108" cy="75" r="1" fill="rgba(0,0,0,0.298039)"/>
-  <circle cx="109" cy="75" r="1" fill="rgba(0,0,0,0.211765)"/>
-  <circle cx="110" cy="75" r="1" fill="rgba(10,2,0,0.14902)"/>
-  <circle cx="111" cy="75" r="1" fill="rgba(26,8,2,0.156863)"/>
-  <circle cx="112" cy="75" r="1" fill="rgba(24,8,2,0.25098)"/>
-  <circle cx="113" cy="75" r="1" fill="rgba(15,3,0,0.384314)"/>
-  <circle cx="114" cy="75" r="1" fill="rgba(4,0,0,0.458824)"/>
-  <circle cx="115" cy="75" r="1" fill="rgba(0,0,0,0.47451)"/>
-  <circle cx="116" cy="75" r="1" fill="rgba(0,0,0,0.478431)"/>
-  <circle cx="117" cy="75" r="1" fill="rgba(0,0,0,0.478431)"/>
-  <circle cx="118" cy="75" r="1" fill="rgba(4,0,0,0.462745)"/>
-  <circle cx="119" cy="75" r="1" fill="rgba(0,0,0,0.443137)"/>
-  <circle cx="120" cy="75" r="1" fill="rgba(4,0,0,0.427451)"/>
-  <circle cx="121" cy="75" r="1" fill="rgba(26,9,2,0.533333)"/>
-  <circle cx="122" cy="75" r="1" fill="rgba(36,14,4,0.627451)"/>
-  <circle cx="123" cy="75" r="1" fill="rgba(42,17,6,0.694118)"/>
-  <circle cx="124" cy="75" r="1" fill="rgba(53,25,10,0.819608)"/>
-  <circle cx="125" cy="75" r="1" fill="rgba(58,29,13,0.996078)"/>
-  <circle cx="126" cy="75" r="1" fill="rgba(62,31,14,0.913725)"/>
-  <circle cx="127" cy="75" r="1" fill="rgba(62,31,14,0.584314)"/>
-  <circle cx="0" cy="76" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="76" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="76" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="76" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="76" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="76" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="76" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="76" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="76" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="76" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="76" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="76" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="76" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="76" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="76" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="76" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="76" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="76" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="76" r="1" fill="rgba(42,19,7,0)"/>
-  <circle cx="19" cy="76" r="1" fill="rgba(39,21,8,0)"/>
-  <circle cx="20" cy="76" r="1" fill="rgba(59,24,9,0)"/>
-  <circle cx="21" cy="76" r="1" fill="rgba(203,29,0,0)"/>
-  <circle cx="22" cy="76" r="1" fill="rgba(215,29,0,0)"/>
-  <circle cx="23" cy="76" r="1" fill="rgba(212,29,0,0)"/>
-  <circle cx="24" cy="76" r="1" fill="rgba(212,29,0,0)"/>
-  <circle cx="25" cy="76" r="1" fill="rgba(212,29,0,0)"/>
-  <circle cx="26" cy="76" r="1" fill="rgba(212,29,0,0)"/>
-  <circle cx="27" cy="76" r="1" fill="rgba(213,30,0,0.541176)"/>
-  <circle cx="28" cy="76" r="1" fill="rgba(217,38,0,1)"/>
-  <circle cx="29" cy="76" r="1" fill="rgba(221,48,1,1)"/>
-  <circle cx="30" cy="76" r="1" fill="rgba(223,49,1,1)"/>
-  <circle cx="31" cy="76" r="1" fill="rgba(221,42,0,1)"/>
-  <circle cx="32" cy="76" r="1" fill="rgba(219,35,0,1)"/>
-  <circle cx="33" cy="76" r="1" fill="rgba(218,32,0,1)"/>
-  <circle cx="34" cy="76" r="1" fill="rgba(219,33,0,1)"/>
-  <circle cx="35" cy="76" r="1" fill="rgba(220,33,0,1)"/>
-  <circle cx="36" cy="76" r="1" fill="rgba(221,33,0,1)"/>
-  <circle cx="37" cy="76" r="1" fill="rgba(221,34,0,1)"/>
-  <circle cx="38" cy="76" r="1" fill="rgba(222,34,0,1)"/>
-  <circle cx="39" cy="76" r="1" fill="rgba(222,34,0,1)"/>
-  <circle cx="40" cy="76" r="1" fill="rgba(221,34,0,1)"/>
-  <circle cx="41" cy="76" r="1" fill="rgba(221,33,0,1)"/>
-  <circle cx="42" cy="76" r="1" fill="rgba(221,33,0,1)"/>
-  <circle cx="43" cy="76" r="1" fill="rgba(221,33,0,1)"/>
-  <circle cx="44" cy="76" r="1" fill="rgba(221,33,0,1)"/>
-  <circle cx="45" cy="76" r="1" fill="rgba(220,32,0,1)"/>
-  <circle cx="46" cy="76" r="1" fill="rgba(220,32,0,1)"/>
-  <circle cx="47" cy="76" r="1" fill="rgba(219,32,0,1)"/>
-  <circle cx="48" cy="76" r="1" fill="rgba(219,31,0,1)"/>
-  <circle cx="49" cy="76" r="1" fill="rgba(219,30,0,1)"/>
-  <circle cx="50" cy="76" r="1" fill="rgba(217,30,0,1)"/>
-  <circle cx="51" cy="76" r="1" fill="rgba(217,28,0,1)"/>
-  <circle cx="52" cy="76" r="1" fill="rgba(217,27,0,1)"/>
-  <circle cx="53" cy="76" r="1" fill="rgba(216,26,0,1)"/>
-  <circle cx="54" cy="76" r="1" fill="rgba(214,26,0,1)"/>
-  <circle cx="55" cy="76" r="1" fill="rgba(213,24,0,1)"/>
-  <circle cx="56" cy="76" r="1" fill="rgba(213,24,0,1)"/>
-  <circle cx="57" cy="76" r="1" fill="rgba(211,23,0,1)"/>
-  <circle cx="58" cy="76" r="1" fill="rgba(210,22,0,1)"/>
-  <circle cx="59" cy="76" r="1" fill="rgba(209,21,0,1)"/>
-  <circle cx="60" cy="76" r="1" fill="rgba(209,20,0,1)"/>
-  <circle cx="61" cy="76" r="1" fill="rgba(207,20,0,1)"/>
-  <circle cx="62" cy="76" r="1" fill="rgba(206,19,0,1)"/>
-  <circle cx="63" cy="76" r="1" fill="rgba(202,17,0,1)"/>
-  <circle cx="64" cy="76" r="1" fill="rgba(201,14,0,1)"/>
-  <circle cx="65" cy="76" r="1" fill="rgba(166,16,1,1)"/>
-  <circle cx="66" cy="76" r="1" fill="rgba(148,20,5,1)"/>
-  <circle cx="67" cy="76" r="1" fill="rgba(195,13,1,1)"/>
-  <circle cx="68" cy="76" r="1" fill="rgba(193,16,2,1)"/>
-  <circle cx="69" cy="76" r="1" fill="rgba(199,20,3,1)"/>
-  <circle cx="70" cy="76" r="1" fill="rgba(202,22,5,1)"/>
-  <circle cx="71" cy="76" r="1" fill="rgba(205,25,7,1)"/>
-  <circle cx="72" cy="76" r="1" fill="rgba(206,26,7,1)"/>
-  <circle cx="73" cy="76" r="1" fill="rgba(205,27,7,1)"/>
-  <circle cx="74" cy="76" r="1" fill="rgba(203,27,7,1)"/>
-  <circle cx="75" cy="76" r="1" fill="rgba(203,26,7,1)"/>
-  <circle cx="76" cy="76" r="1" fill="rgba(207,27,7,1)"/>
-  <circle cx="77" cy="76" r="1" fill="rgba(207,28,7,1)"/>
-  <circle cx="78" cy="76" r="1" fill="rgba(175,23,6,1)"/>
-  <circle cx="79" cy="76" r="1" fill="rgba(131,17,3,1)"/>
-  <circle cx="80" cy="76" r="1" fill="rgba(128,17,4,1)"/>
-  <circle cx="81" cy="76" r="1" fill="rgba(188,33,9,1)"/>
-  <circle cx="82" cy="76" r="1" fill="rgba(210,41,13,1)"/>
-  <circle cx="83" cy="76" r="1" fill="rgba(207,44,14,1)"/>
-  <circle cx="84" cy="76" r="1" fill="rgba(209,49,16,1)"/>
-  <circle cx="85" cy="76" r="1" fill="rgba(211,52,18,1)"/>
-  <circle cx="86" cy="76" r="1" fill="rgba(213,56,20,1)"/>
-  <circle cx="87" cy="76" r="1" fill="rgba(214,61,22,1)"/>
-  <circle cx="88" cy="76" r="1" fill="rgba(216,66,24,1)"/>
-  <circle cx="89" cy="76" r="1" fill="rgba(217,71,27,1)"/>
-  <circle cx="90" cy="76" r="1" fill="rgba(220,76,30,1)"/>
-  <circle cx="91" cy="76" r="1" fill="rgba(221,82,33,1)"/>
-  <circle cx="92" cy="76" r="1" fill="rgba(223,87,36,1)"/>
-  <circle cx="93" cy="76" r="1" fill="rgba(226,93,40,1)"/>
-  <circle cx="94" cy="76" r="1" fill="rgba(227,100,43,1)"/>
-  <circle cx="95" cy="76" r="1" fill="rgba(230,105,48,1)"/>
-  <circle cx="96" cy="76" r="1" fill="rgba(233,113,51,1)"/>
-  <circle cx="97" cy="76" r="1" fill="rgba(236,118,56,1)"/>
-  <circle cx="98" cy="76" r="1" fill="rgba(237,124,58,1)"/>
-  <circle cx="99" cy="76" r="1" fill="rgba(238,127,61,1)"/>
-  <circle cx="100" cy="76" r="1" fill="rgba(239,129,60,1)"/>
-  <circle cx="101" cy="76" r="1" fill="rgba(244,126,56,1)"/>
-  <circle cx="102" cy="76" r="1" fill="rgba(202,88,33,0.929412)"/>
-  <circle cx="103" cy="76" r="1" fill="rgba(46,6,1,0.666667)"/>
-  <circle cx="104" cy="76" r="1" fill="rgba(28,2,0,0.560784)"/>
-  <circle cx="105" cy="76" r="1" fill="rgba(17,0,0,0.466667)"/>
-  <circle cx="106" cy="76" r="1" fill="rgba(4,0,0,0.4)"/>
-  <circle cx="107" cy="76" r="1" fill="rgba(0,0,0,0.345098)"/>
-  <circle cx="108" cy="76" r="1" fill="rgba(0,0,0,0.266667)"/>
-  <circle cx="109" cy="76" r="1" fill="rgba(0,0,0,0.172549)"/>
-  <circle cx="110" cy="76" r="1" fill="rgba(0,0,0,0.0980392)"/>
-  <circle cx="111" cy="76" r="1" fill="rgba(17,6,1,0.0588235)"/>
-  <circle cx="112" cy="76" r="1" fill="rgba(31,13,6,0.0823529)"/>
-  <circle cx="113" cy="76" r="1" fill="rgba(31,12,4,0.168627)"/>
-  <circle cx="114" cy="76" r="1" fill="rgba(24,9,2,0.278431)"/>
-  <circle cx="115" cy="76" r="1" fill="rgba(19,5,1,0.356863)"/>
-  <circle cx="116" cy="76" r="1" fill="rgba(12,3,0,0.407843)"/>
-  <circle cx="117" cy="76" r="1" fill="rgba(15,4,0,0.407843)"/>
-  <circle cx="118" cy="76" r="1" fill="rgba(22,8,2,0.345098)"/>
-  <circle cx="119" cy="76" r="1" fill="rgba(24,9,2,0.286275)"/>
-  <circle cx="120" cy="76" r="1" fill="rgba(19,5,1,0.301961)"/>
-  <circle cx="121" cy="76" r="1" fill="rgba(17,3,0,0.333333)"/>
-  <circle cx="122" cy="76" r="1" fill="rgba(4,0,0,0.4)"/>
-  <circle cx="123" cy="76" r="1" fill="rgba(4,0,0,0.380392)"/>
-  <circle cx="124" cy="76" r="1" fill="rgba(15,3,0,0.352941)"/>
-  <circle cx="125" cy="76" r="1" fill="rgba(22,6,1,0.4)"/>
-  <circle cx="126" cy="76" r="1" fill="rgba(39,16,5,0.533333)"/>
-  <circle cx="127" cy="76" r="1" fill="rgba(57,27,11,0.701961)"/>
-  <circle cx="0" cy="77" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="77" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="77" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="77" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="77" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="77" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="77" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="77" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="77" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="77" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="77" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="77" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="77" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="77" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="77" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="77" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="77" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="77" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="77" r="1" fill="rgba(40,19,7,0)"/>
-  <circle cx="19" cy="77" r="1" fill="rgba(37,21,8,0)"/>
-  <circle cx="20" cy="77" r="1" fill="rgba(169,27,2,0)"/>
-  <circle cx="21" cy="77" r="1" fill="rgba(217,29,0,0)"/>
-  <circle cx="22" cy="77" r="1" fill="rgba(211,29,0,0)"/>
-  <circle cx="23" cy="77" r="1" fill="rgba(211,29,0,0)"/>
-  <circle cx="24" cy="77" r="1" fill="rgba(211,29,0,0)"/>
-  <circle cx="25" cy="77" r="1" fill="rgba(211,29,0,0)"/>
-  <circle cx="26" cy="77" r="1" fill="rgba(211,29,0,0)"/>
-  <circle cx="27" cy="77" r="1" fill="rgba(211,29,0,0.34902)"/>
-  <circle cx="28" cy="77" r="1" fill="rgba(214,33,0,1)"/>
-  <circle cx="29" cy="77" r="1" fill="rgba(219,44,1,1)"/>
-  <circle cx="30" cy="77" r="1" fill="rgba(221,48,1,1)"/>
-  <circle cx="31" cy="77" r="1" fill="rgba(220,43,0,1)"/>
-  <circle cx="32" cy="77" r="1" fill="rgba(217,34,0,1)"/>
-  <circle cx="33" cy="77" r="1" fill="rgba(217,32,0,1)"/>
-  <circle cx="34" cy="77" r="1" fill="rgba(217,31,0,1)"/>
-  <circle cx="35" cy="77" r="1" fill="rgba(219,31,0,1)"/>
-  <circle cx="36" cy="77" r="1" fill="rgba(220,32,0,1)"/>
-  <circle cx="37" cy="77" r="1" fill="rgba(221,32,0,1)"/>
-  <circle cx="38" cy="77" r="1" fill="rgba(220,32,0,1)"/>
-  <circle cx="39" cy="77" r="1" fill="rgba(220,31,0,1)"/>
-  <circle cx="40" cy="77" r="1" fill="rgba(220,31,0,1)"/>
-  <circle cx="41" cy="77" r="1" fill="rgba(220,31,0,1)"/>
-  <circle cx="42" cy="77" r="1" fill="rgba(220,31,0,1)"/>
-  <circle cx="43" cy="77" r="1" fill="rgba(220,32,0,1)"/>
-  <circle cx="44" cy="77" r="1" fill="rgba(219,32,0,1)"/>
-  <circle cx="45" cy="77" r="1" fill="rgba(218,31,0,1)"/>
-  <circle cx="46" cy="77" r="1" fill="rgba(218,30,0,1)"/>
-  <circle cx="47" cy="77" r="1" fill="rgba(217,29,0,1)"/>
-  <circle cx="48" cy="77" r="1" fill="rgba(218,28,0,1)"/>
-  <circle cx="49" cy="77" r="1" fill="rgba(217,28,0,1)"/>
-  <circle cx="50" cy="77" r="1" fill="rgba(217,28,0,1)"/>
-  <circle cx="51" cy="77" r="1" fill="rgba(216,26,0,1)"/>
-  <circle cx="52" cy="77" r="1" fill="rgba(214,26,0,1)"/>
-  <circle cx="53" cy="77" r="1" fill="rgba(214,25,0,1)"/>
-  <circle cx="54" cy="77" r="1" fill="rgba(212,24,0,1)"/>
-  <circle cx="55" cy="77" r="1" fill="rgba(212,23,0,1)"/>
-  <circle cx="56" cy="77" r="1" fill="rgba(210,22,0,1)"/>
-  <circle cx="57" cy="77" r="1" fill="rgba(209,22,0,1)"/>
-  <circle cx="58" cy="77" r="1" fill="rgba(209,21,0,1)"/>
-  <circle cx="59" cy="77" r="1" fill="rgba(208,20,0,1)"/>
-  <circle cx="60" cy="77" r="1" fill="rgba(207,19,0,1)"/>
-  <circle cx="61" cy="77" r="1" fill="rgba(206,18,0,1)"/>
-  <circle cx="62" cy="77" r="1" fill="rgba(203,18,0,1)"/>
-  <circle cx="63" cy="77" r="1" fill="rgba(201,16,0,1)"/>
-  <circle cx="64" cy="77" r="1" fill="rgba(200,13,0,1)"/>
-  <circle cx="65" cy="77" r="1" fill="rgba(165,14,1,1)"/>
-  <circle cx="66" cy="77" r="1" fill="rgba(146,18,4,1)"/>
-  <circle cx="67" cy="77" r="1" fill="rgba(192,12,1,1)"/>
-  <circle cx="68" cy="77" r="1" fill="rgba(192,15,2,1)"/>
-  <circle cx="69" cy="77" r="1" fill="rgba(197,18,3,1)"/>
-  <circle cx="70" cy="77" r="1" fill="rgba(201,21,5,1)"/>
-  <circle cx="71" cy="77" r="1" fill="rgba(204,26,7,1)"/>
-  <circle cx="72" cy="77" r="1" fill="rgba(205,28,8,1)"/>
-  <circle cx="73" cy="77" r="1" fill="rgba(205,28,8,1)"/>
-  <circle cx="74" cy="77" r="1" fill="rgba(204,28,7,1)"/>
-  <circle cx="75" cy="77" r="1" fill="rgba(210,29,8,1)"/>
-  <circle cx="76" cy="77" r="1" fill="rgba(180,23,6,1)"/>
-  <circle cx="77" cy="77" r="1" fill="rgba(92,9,1,1)"/>
-  <circle cx="78" cy="77" r="1" fill="rgba(15,1,0,1)"/>
-  <circle cx="79" cy="77" r="1" fill="black"/>
-  <circle cx="80" cy="77" r="1" fill="black"/>
-  <circle cx="81" cy="77" r="1" fill="rgba(75,11,2,1)"/>
-  <circle cx="82" cy="77" r="1" fill="rgba(204,42,13,1)"/>
-  <circle cx="83" cy="77" r="1" fill="rgba(210,47,15,1)"/>
-  <circle cx="84" cy="77" r="1" fill="rgba(210,50,17,1)"/>
-  <circle cx="85" cy="77" r="1" fill="rgba(212,54,19,1)"/>
-  <circle cx="86" cy="77" r="1" fill="rgba(214,59,20,1)"/>
-  <circle cx="87" cy="77" r="1" fill="rgba(215,63,22,1)"/>
-  <circle cx="88" cy="77" r="1" fill="rgba(216,68,24,1)"/>
-  <circle cx="89" cy="77" r="1" fill="rgba(218,73,27,1)"/>
-  <circle cx="90" cy="77" r="1" fill="rgba(220,78,30,1)"/>
-  <circle cx="91" cy="77" r="1" fill="rgba(222,84,33,1)"/>
-  <circle cx="92" cy="77" r="1" fill="rgba(224,90,37,1)"/>
-  <circle cx="93" cy="77" r="1" fill="rgba(227,96,42,1)"/>
-  <circle cx="94" cy="77" r="1" fill="rgba(229,103,45,1)"/>
-  <circle cx="95" cy="77" r="1" fill="rgba(231,108,49,1)"/>
-  <circle cx="96" cy="77" r="1" fill="rgba(233,115,54,1)"/>
-  <circle cx="97" cy="77" r="1" fill="rgba(236,121,57,1)"/>
-  <circle cx="98" cy="77" r="1" fill="rgba(237,126,60,1)"/>
-  <circle cx="99" cy="77" r="1" fill="rgba(239,128,62,1)"/>
-  <circle cx="100" cy="77" r="1" fill="rgba(239,129,59,1)"/>
-  <circle cx="101" cy="77" r="1" fill="rgba(247,124,54,1)"/>
-  <circle cx="102" cy="77" r="1" fill="rgba(166,64,21,0.87451)"/>
-  <circle cx="103" cy="77" r="1" fill="rgba(28,0,0,0.639216)"/>
-  <circle cx="104" cy="77" r="1" fill="rgba(29,2,0,0.545098)"/>
-  <circle cx="105" cy="77" r="1" fill="rgba(17,0,0,0.45098)"/>
-  <circle cx="106" cy="77" r="1" fill="rgba(4,0,0,0.380392)"/>
-  <circle cx="107" cy="77" r="1" fill="rgba(0,0,0,0.317647)"/>
-  <circle cx="108" cy="77" r="1" fill="rgba(0,0,0,0.239216)"/>
-  <circle cx="109" cy="77" r="1" fill="rgba(0,0,0,0.14902)"/>
-  <circle cx="110" cy="77" r="1" fill="rgba(0,0,0,0.0705882)"/>
-  <circle cx="111" cy="77" r="1" fill="rgba(0,0,0,0.0235294)"/>
-  <circle cx="112" cy="77" r="1" fill="rgba(19,7,3,0.00784314)"/>
-  <circle cx="113" cy="77" r="1" fill="rgba(33,16,4,0.0117647)"/>
-  <circle cx="114" cy="77" r="1" fill="rgba(43,21,7,0.027451)"/>
-  <circle cx="115" cy="77" r="1" fill="rgba(39,17,6,0.054902)"/>
-  <circle cx="116" cy="77" r="1" fill="rgba(36,15,5,0.0901961)"/>
-  <circle cx="117" cy="77" r="1" fill="rgba(42,19,7,0.0784314)"/>
-  <circle cx="118" cy="77" r="1" fill="rgba(39,18,6,0.0196078)"/>
-  <circle cx="119" cy="77" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="77" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="77" r="1" fill="rgba(36,15,5,0.0313725)"/>
-  <circle cx="122" cy="77" r="1" fill="rgba(33,13,4,0.0980392)"/>
-  <circle cx="123" cy="77" r="1" fill="rgba(24,7,2,0.0784314)"/>
-  <circle cx="124" cy="77" r="1" fill="rgba(26,7,2,0.0431373)"/>
-  <circle cx="125" cy="77" r="1" fill="rgba(24,7,2,0.0313725)"/>
-  <circle cx="126" cy="77" r="1" fill="rgba(254,254,253,0)"/>
-  <circle cx="127" cy="77" r="1" fill="rgba(253,253,252,0)"/>
-  <circle cx="0" cy="78" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="78" r="1" fill="rgba(24,19,8,0)"/>
-  <circle cx="19" cy="78" r="1" fill="rgba(97,21,5,0)"/>
-  <circle cx="20" cy="78" r="1" fill="rgba(217,27,0,0)"/>
-  <circle cx="21" cy="78" r="1" fill="rgba(211,27,0,0)"/>
-  <circle cx="22" cy="78" r="1" fill="rgba(210,27,0,0)"/>
-  <circle cx="23" cy="78" r="1" fill="rgba(210,27,0,0)"/>
-  <circle cx="24" cy="78" r="1" fill="rgba(210,27,0,0)"/>
-  <circle cx="25" cy="78" r="1" fill="rgba(210,27,0,0)"/>
-  <circle cx="26" cy="78" r="1" fill="rgba(210,27,0,0)"/>
-  <circle cx="27" cy="78" r="1" fill="rgba(210,27,0,0.156863)"/>
-  <circle cx="28" cy="78" r="1" fill="rgba(212,31,0,0.976471)"/>
-  <circle cx="29" cy="78" r="1" fill="rgba(217,40,0,1)"/>
-  <circle cx="30" cy="78" r="1" fill="rgba(220,45,1,1)"/>
-  <circle cx="31" cy="78" r="1" fill="rgba(219,43,1,1)"/>
-  <circle cx="32" cy="78" r="1" fill="rgba(217,35,0,1)"/>
-  <circle cx="33" cy="78" r="1" fill="rgba(215,30,0,1)"/>
-  <circle cx="34" cy="78" r="1" fill="rgba(216,30,0,1)"/>
-  <circle cx="35" cy="78" r="1" fill="rgba(217,30,0,1)"/>
-  <circle cx="36" cy="78" r="1" fill="rgba(217,30,0,1)"/>
-  <circle cx="37" cy="78" r="1" fill="rgba(218,31,0,1)"/>
-  <circle cx="38" cy="78" r="1" fill="rgba(218,31,0,1)"/>
-  <circle cx="39" cy="78" r="1" fill="rgba(218,30,0,1)"/>
-  <circle cx="40" cy="78" r="1" fill="rgba(217,30,0,1)"/>
-  <circle cx="41" cy="78" r="1" fill="rgba(217,29,0,1)"/>
-  <circle cx="42" cy="78" r="1" fill="rgba(217,29,0,1)"/>
-  <circle cx="43" cy="78" r="1" fill="rgba(217,30,0,1)"/>
-  <circle cx="44" cy="78" r="1" fill="rgba(217,30,0,1)"/>
-  <circle cx="45" cy="78" r="1" fill="rgba(217,29,0,1)"/>
-  <circle cx="46" cy="78" r="1" fill="rgba(216,28,0,1)"/>
-  <circle cx="47" cy="78" r="1" fill="rgba(216,27,0,1)"/>
-  <circle cx="48" cy="78" r="1" fill="rgba(216,27,0,1)"/>
-  <circle cx="49" cy="78" r="1" fill="rgba(215,26,0,1)"/>
-  <circle cx="50" cy="78" r="1" fill="rgba(214,26,0,1)"/>
-  <circle cx="51" cy="78" r="1" fill="rgba(214,25,0,1)"/>
-  <circle cx="52" cy="78" r="1" fill="rgba(213,24,0,1)"/>
-  <circle cx="53" cy="78" r="1" fill="rgba(211,23,0,1)"/>
-  <circle cx="54" cy="78" r="1" fill="rgba(211,23,0,1)"/>
-  <circle cx="55" cy="78" r="1" fill="rgba(210,22,0,1)"/>
-  <circle cx="56" cy="78" r="1" fill="rgba(208,21,0,1)"/>
-  <circle cx="57" cy="78" r="1" fill="rgba(208,20,0,1)"/>
-  <circle cx="58" cy="78" r="1" fill="rgba(207,20,0,1)"/>
-  <circle cx="59" cy="78" r="1" fill="rgba(207,18,0,1)"/>
-  <circle cx="60" cy="78" r="1" fill="rgba(205,18,0,1)"/>
-  <circle cx="61" cy="78" r="1" fill="rgba(204,17,0,1)"/>
-  <circle cx="62" cy="78" r="1" fill="rgba(203,17,1,1)"/>
-  <circle cx="63" cy="78" r="1" fill="rgba(200,15,1,1)"/>
-  <circle cx="64" cy="78" r="1" fill="rgba(199,12,0,1)"/>
-  <circle cx="65" cy="78" r="1" fill="rgba(163,13,0,1)"/>
-  <circle cx="66" cy="78" r="1" fill="rgba(144,16,4,1)"/>
-  <circle cx="67" cy="78" r="1" fill="rgba(191,11,1,1)"/>
-  <circle cx="68" cy="78" r="1" fill="rgba(190,14,2,1)"/>
-  <circle cx="69" cy="78" r="1" fill="rgba(196,16,3,1)"/>
-  <circle cx="70" cy="78" r="1" fill="rgba(200,21,5,1)"/>
-  <circle cx="71" cy="78" r="1" fill="rgba(204,26,7,1)"/>
-  <circle cx="72" cy="78" r="1" fill="rgba(204,28,8,1)"/>
-  <circle cx="73" cy="78" r="1" fill="rgba(205,28,8,1)"/>
-  <circle cx="74" cy="78" r="1" fill="rgba(211,30,8,1)"/>
-  <circle cx="75" cy="78" r="1" fill="rgba(151,19,4,1)"/>
-  <circle cx="76" cy="78" r="1" fill="rgba(31,1,0,1)"/>
-  <circle cx="77" cy="78" r="1" fill="black"/>
-  <circle cx="78" cy="78" r="1" fill="black"/>
-  <circle cx="79" cy="78" r="1" fill="rgba(15,2,0,1)"/>
-  <circle cx="80" cy="78" r="1" fill="rgba(26,7,1,1)"/>
-  <circle cx="81" cy="78" r="1" fill="rgba(26,11,3,1)"/>
-  <circle cx="82" cy="78" r="1" fill="rgba(157,34,10,1)"/>
-  <circle cx="83" cy="78" r="1" fill="rgba(216,50,16,1)"/>
-  <circle cx="84" cy="78" r="1" fill="rgba(211,51,18,1)"/>
-  <circle cx="85" cy="78" r="1" fill="rgba(213,55,19,1)"/>
-  <circle cx="86" cy="78" r="1" fill="rgba(214,60,21,1)"/>
-  <circle cx="87" cy="78" r="1" fill="rgba(215,66,23,1)"/>
-  <circle cx="88" cy="78" r="1" fill="rgba(217,71,27,1)"/>
-  <circle cx="89" cy="78" r="1" fill="rgba(219,76,30,1)"/>
-  <circle cx="90" cy="78" r="1" fill="rgba(221,81,33,1)"/>
-  <circle cx="91" cy="78" r="1" fill="rgba(223,86,36,1)"/>
-  <circle cx="92" cy="78" r="1" fill="rgba(225,93,38,1)"/>
-  <circle cx="93" cy="78" r="1" fill="rgba(227,98,42,1)"/>
-  <circle cx="94" cy="78" r="1" fill="rgba(230,105,47,1)"/>
-  <circle cx="95" cy="78" r="1" fill="rgba(233,111,51,1)"/>
-  <circle cx="96" cy="78" r="1" fill="rgba(235,118,56,1)"/>
-  <circle cx="97" cy="78" r="1" fill="rgba(236,124,59,1)"/>
-  <circle cx="98" cy="78" r="1" fill="rgba(238,129,62,1)"/>
-  <circle cx="99" cy="78" r="1" fill="rgba(240,130,63,1)"/>
-  <circle cx="100" cy="78" r="1" fill="rgba(240,126,58,1)"/>
-  <circle cx="101" cy="78" r="1" fill="rgba(241,115,48,1)"/>
-  <circle cx="102" cy="78" r="1" fill="rgba(131,43,13,0.811765)"/>
-  <circle cx="103" cy="78" r="1" fill="rgba(22,0,0,0.619608)"/>
-  <circle cx="104" cy="78" r="1" fill="rgba(29,2,0,0.529412)"/>
-  <circle cx="105" cy="78" r="1" fill="rgba(15,0,0,0.431373)"/>
-  <circle cx="106" cy="78" r="1" fill="rgba(4,0,0,0.356863)"/>
-  <circle cx="107" cy="78" r="1" fill="rgba(0,0,0,0.290196)"/>
-  <circle cx="108" cy="78" r="1" fill="rgba(0,0,0,0.211765)"/>
-  <circle cx="109" cy="78" r="1" fill="rgba(0,0,0,0.12549)"/>
-  <circle cx="110" cy="78" r="1" fill="rgba(0,0,0,0.054902)"/>
-  <circle cx="111" cy="78" r="1" fill="rgba(0,0,0,0.0117647)"/>
-  <circle cx="112" cy="78" r="1" fill="rgba(7,2,0,0)"/>
-  <circle cx="113" cy="78" r="1" fill="rgba(26,13,2,0)"/>
-  <circle cx="114" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="78" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="78" r="1" fill="rgba(254,253,253,0)"/>
-  <circle cx="0" cy="79" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="79" r="1" fill="rgba(46,20,7,0)"/>
-  <circle cx="19" cy="79" r="1" fill="rgba(175,24,1,0)"/>
-  <circle cx="20" cy="79" r="1" fill="rgba(216,27,0,0)"/>
-  <circle cx="21" cy="79" r="1" fill="rgba(209,26,0,0)"/>
-  <circle cx="22" cy="79" r="1" fill="rgba(210,26,0,0)"/>
-  <circle cx="23" cy="79" r="1" fill="rgba(210,26,0,0)"/>
-  <circle cx="24" cy="79" r="1" fill="rgba(210,26,0,0)"/>
-  <circle cx="25" cy="79" r="1" fill="rgba(210,26,0,0)"/>
-  <circle cx="26" cy="79" r="1" fill="rgba(210,26,0,0)"/>
-  <circle cx="27" cy="79" r="1" fill="rgba(210,26,0,0.0235294)"/>
-  <circle cx="28" cy="79" r="1" fill="rgba(210,28,0,0.835294)"/>
-  <circle cx="29" cy="79" r="1" fill="rgba(214,36,0,1)"/>
-  <circle cx="30" cy="79" r="1" fill="rgba(217,42,1,1)"/>
-  <circle cx="31" cy="79" r="1" fill="rgba(218,43,1,1)"/>
-  <circle cx="32" cy="79" r="1" fill="rgba(216,35,0,1)"/>
-  <circle cx="33" cy="79" r="1" fill="rgba(213,29,0,1)"/>
-  <circle cx="34" cy="79" r="1" fill="rgba(214,28,0,1)"/>
-  <circle cx="35" cy="79" r="1" fill="rgba(214,28,0,1)"/>
-  <circle cx="36" cy="79" r="1" fill="rgba(215,28,0,1)"/>
-  <circle cx="37" cy="79" r="1" fill="rgba(215,29,0,1)"/>
-  <circle cx="38" cy="79" r="1" fill="rgba(216,29,0,1)"/>
-  <circle cx="39" cy="79" r="1" fill="rgba(216,28,0,1)"/>
-  <circle cx="40" cy="79" r="1" fill="rgba(216,29,0,1)"/>
-  <circle cx="41" cy="79" r="1" fill="rgba(215,27,0,1)"/>
-  <circle cx="42" cy="79" r="1" fill="rgba(216,28,0,1)"/>
-  <circle cx="43" cy="79" r="1" fill="rgba(217,28,0,1)"/>
-  <circle cx="44" cy="79" r="1" fill="rgba(221,28,0,1)"/>
-  <circle cx="45" cy="79" r="1" fill="rgba(222,28,0,1)"/>
-  <circle cx="46" cy="79" r="1" fill="rgba(218,27,0,1)"/>
-  <circle cx="47" cy="79" r="1" fill="rgba(214,26,0,1)"/>
-  <circle cx="48" cy="79" r="1" fill="rgba(213,25,0,1)"/>
-  <circle cx="49" cy="79" r="1" fill="rgba(213,25,0,1)"/>
-  <circle cx="50" cy="79" r="1" fill="rgba(213,24,0,1)"/>
-  <circle cx="51" cy="79" r="1" fill="rgba(211,23,0,1)"/>
-  <circle cx="52" cy="79" r="1" fill="rgba(210,23,0,1)"/>
-  <circle cx="53" cy="79" r="1" fill="rgba(210,22,0,1)"/>
-  <circle cx="54" cy="79" r="1" fill="rgba(210,21,0,1)"/>
-  <circle cx="55" cy="79" r="1" fill="rgba(208,21,0,1)"/>
-  <circle cx="56" cy="79" r="1" fill="rgba(207,20,0,1)"/>
-  <circle cx="57" cy="79" r="1" fill="rgba(207,19,0,1)"/>
-  <circle cx="58" cy="79" r="1" fill="rgba(206,18,0,1)"/>
-  <circle cx="59" cy="79" r="1" fill="rgba(205,17,0,1)"/>
-  <circle cx="60" cy="79" r="1" fill="rgba(204,17,0,1)"/>
-  <circle cx="61" cy="79" r="1" fill="rgba(203,17,1,1)"/>
-  <circle cx="62" cy="79" r="1" fill="rgba(201,15,1,1)"/>
-  <circle cx="63" cy="79" r="1" fill="rgba(199,14,1,1)"/>
-  <circle cx="64" cy="79" r="1" fill="rgba(198,11,0,1)"/>
-  <circle cx="65" cy="79" r="1" fill="rgba(162,12,0,1)"/>
-  <circle cx="66" cy="79" r="1" fill="rgba(141,15,3,1)"/>
-  <circle cx="67" cy="79" r="1" fill="rgba(189,10,1,1)"/>
-  <circle cx="68" cy="79" r="1" fill="rgba(188,12,2,1)"/>
-  <circle cx="69" cy="79" r="1" fill="rgba(194,16,3,1)"/>
-  <circle cx="70" cy="79" r="1" fill="rgba(200,20,5,1)"/>
-  <circle cx="71" cy="79" r="1" fill="rgba(202,25,7,1)"/>
-  <circle cx="72" cy="79" r="1" fill="rgba(203,28,7,1)"/>
-  <circle cx="73" cy="79" r="1" fill="rgba(210,30,8,1)"/>
-  <circle cx="74" cy="79" r="1" fill="rgba(160,20,5,1)"/>
-  <circle cx="75" cy="79" r="1" fill="rgba(15,0,0,1)"/>
-  <circle cx="76" cy="79" r="1" fill="black"/>
-  <circle cx="77" cy="79" r="1" fill="rgba(7,0,0,1)"/>
-  <circle cx="78" cy="79" r="1" fill="rgba(22,4,0,1)"/>
-  <circle cx="79" cy="79" r="1" fill="rgba(37,11,3,1)"/>
-  <circle cx="80" cy="79" r="1" fill="rgba(50,16,5,1)"/>
-  <circle cx="81" cy="79" r="1" fill="rgba(49,20,7,1)"/>
-  <circle cx="82" cy="79" r="1" fill="rgba(119,33,11,1)"/>
-  <circle cx="83" cy="79" r="1" fill="rgba(212,51,17,1)"/>
-  <circle cx="84" cy="79" r="1" fill="rgba(213,54,18,1)"/>
-  <circle cx="85" cy="79" r="1" fill="rgba(214,58,20,1)"/>
-  <circle cx="86" cy="79" r="1" fill="rgba(215,62,22,1)"/>
-  <circle cx="87" cy="79" r="1" fill="rgba(216,68,25,1)"/>
-  <circle cx="88" cy="79" r="1" fill="rgba(218,73,28,1)"/>
-  <circle cx="89" cy="79" r="1" fill="rgba(221,78,31,1)"/>
-  <circle cx="90" cy="79" r="1" fill="rgba(222,84,34,1)"/>
-  <circle cx="91" cy="79" r="1" fill="rgba(224,89,37,1)"/>
-  <circle cx="92" cy="79" r="1" fill="rgba(227,95,41,1)"/>
-  <circle cx="93" cy="79" r="1" fill="rgba(228,101,43,1)"/>
-  <circle cx="94" cy="79" r="1" fill="rgba(230,107,48,1)"/>
-  <circle cx="95" cy="79" r="1" fill="rgba(233,114,53,1)"/>
-  <circle cx="96" cy="79" r="1" fill="rgba(236,120,56,1)"/>
-  <circle cx="97" cy="79" r="1" fill="rgba(237,126,60,1)"/>
-  <circle cx="98" cy="79" r="1" fill="rgba(239,130,63,1)"/>
-  <circle cx="99" cy="79" r="1" fill="rgba(240,132,62,1)"/>
-  <circle cx="100" cy="79" r="1" fill="rgba(241,124,56,1)"/>
-  <circle cx="101" cy="79" r="1" fill="rgba(230,104,42,0.992157)"/>
-  <circle cx="102" cy="79" r="1" fill="rgba(86,21,5,0.741176)"/>
-  <circle cx="103" cy="79" r="1" fill="rgba(31,2,0,0.611765)"/>
-  <circle cx="104" cy="79" r="1" fill="rgba(28,2,0,0.509804)"/>
-  <circle cx="105" cy="79" r="1" fill="rgba(15,0,0,0.411765)"/>
-  <circle cx="106" cy="79" r="1" fill="rgba(4,0,0,0.337255)"/>
-  <circle cx="107" cy="79" r="1" fill="rgba(0,0,0,0.270588)"/>
-  <circle cx="108" cy="79" r="1" fill="rgba(0,0,0,0.188235)"/>
-  <circle cx="109" cy="79" r="1" fill="rgba(0,0,0,0.105882)"/>
-  <circle cx="110" cy="79" r="1" fill="rgba(0,0,0,0.0431373)"/>
-  <circle cx="111" cy="79" r="1" fill="rgba(0,0,0,0.00784314)"/>
-  <circle cx="112" cy="79" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="113" cy="79" r="1" fill="rgba(22,9,1,0)"/>
-  <circle cx="114" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="79" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="80" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="80" r="1" fill="rgba(128,22,4,0)"/>
-  <circle cx="19" cy="80" r="1" fill="rgba(220,25,0,0)"/>
-  <circle cx="20" cy="80" r="1" fill="rgba(207,25,0,0)"/>
-  <circle cx="21" cy="80" r="1" fill="rgba(207,25,0,0)"/>
-  <circle cx="22" cy="80" r="1" fill="rgba(207,25,0,0)"/>
-  <circle cx="23" cy="80" r="1" fill="rgba(207,25,0,0)"/>
-  <circle cx="24" cy="80" r="1" fill="rgba(207,25,0,0)"/>
-  <circle cx="25" cy="80" r="1" fill="rgba(207,25,0,0)"/>
-  <circle cx="26" cy="80" r="1" fill="rgba(207,25,0,0)"/>
-  <circle cx="27" cy="80" r="1" fill="rgba(207,25,0,0)"/>
-  <circle cx="28" cy="80" r="1" fill="rgba(207,25,0,0.603922)"/>
-  <circle cx="29" cy="80" r="1" fill="rgba(210,32,1,1)"/>
-  <circle cx="30" cy="80" r="1" fill="rgba(215,39,1,1)"/>
-  <circle cx="31" cy="80" r="1" fill="rgba(217,42,1,1)"/>
-  <circle cx="32" cy="80" r="1" fill="rgba(215,35,1,1)"/>
-  <circle cx="33" cy="80" r="1" fill="rgba(212,28,0,1)"/>
-  <circle cx="34" cy="80" r="1" fill="rgba(211,26,0,1)"/>
-  <circle cx="35" cy="80" r="1" fill="rgba(212,27,0,1)"/>
-  <circle cx="36" cy="80" r="1" fill="rgba(214,27,0,1)"/>
-  <circle cx="37" cy="80" r="1" fill="rgba(214,27,0,1)"/>
-  <circle cx="38" cy="80" r="1" fill="rgba(214,27,0,1)"/>
-  <circle cx="39" cy="80" r="1" fill="rgba(214,27,0,1)"/>
-  <circle cx="40" cy="80" r="1" fill="rgba(214,26,0,1)"/>
-  <circle cx="41" cy="80" r="1" fill="rgba(214,26,0,1)"/>
-  <circle cx="42" cy="80" r="1" fill="rgba(218,25,0,1)"/>
-  <circle cx="43" cy="80" r="1" fill="rgba(207,25,0,1)"/>
-  <circle cx="44" cy="80" r="1" fill="rgba(173,25,2,1)"/>
-  <circle cx="45" cy="80" r="1" fill="rgba(161,24,2,1)"/>
-  <circle cx="46" cy="80" r="1" fill="rgba(187,24,0,1)"/>
-  <circle cx="47" cy="80" r="1" fill="rgba(215,24,0,1)"/>
-  <circle cx="48" cy="80" r="1" fill="rgba(214,24,0,1)"/>
-  <circle cx="49" cy="80" r="1" fill="rgba(210,23,0,1)"/>
-  <circle cx="50" cy="80" r="1" fill="rgba(210,23,0,1)"/>
-  <circle cx="51" cy="80" r="1" fill="rgba(210,22,0,1)"/>
-  <circle cx="52" cy="80" r="1" fill="rgba(209,21,0,1)"/>
-  <circle cx="53" cy="80" r="1" fill="rgba(208,21,0,1)"/>
-  <circle cx="54" cy="80" r="1" fill="rgba(208,20,0,1)"/>
-  <circle cx="55" cy="80" r="1" fill="rgba(207,20,0,1)"/>
-  <circle cx="56" cy="80" r="1" fill="rgba(207,18,0,1)"/>
-  <circle cx="57" cy="80" r="1" fill="rgba(205,18,0,1)"/>
-  <circle cx="58" cy="80" r="1" fill="rgba(204,17,0,1)"/>
-  <circle cx="59" cy="80" r="1" fill="rgba(203,17,0,1)"/>
-  <circle cx="60" cy="80" r="1" fill="rgba(202,16,0,1)"/>
-  <circle cx="61" cy="80" r="1" fill="rgba(201,15,1,1)"/>
-  <circle cx="62" cy="80" r="1" fill="rgba(200,15,1,1)"/>
-  <circle cx="63" cy="80" r="1" fill="rgba(197,13,1,1)"/>
-  <circle cx="64" cy="80" r="1" fill="rgba(197,11,0,1)"/>
-  <circle cx="65" cy="80" r="1" fill="rgba(160,11,0,1)"/>
-  <circle cx="66" cy="80" r="1" fill="rgba(139,13,3,1)"/>
-  <circle cx="67" cy="80" r="1" fill="rgba(188,10,1,1)"/>
-  <circle cx="68" cy="80" r="1" fill="rgba(188,12,2,1)"/>
-  <circle cx="69" cy="80" r="1" fill="rgba(193,17,3,1)"/>
-  <circle cx="70" cy="80" r="1" fill="rgba(198,20,5,1)"/>
-  <circle cx="71" cy="80" r="1" fill="rgba(201,24,6,1)"/>
-  <circle cx="72" cy="80" r="1" fill="rgba(205,27,7,1)"/>
-  <circle cx="73" cy="80" r="1" fill="rgba(200,27,7,1)"/>
-  <circle cx="74" cy="80" r="1" fill="rgba(58,5,0,1)"/>
-  <circle cx="75" cy="80" r="1" fill="black"/>
-  <circle cx="76" cy="80" r="1" fill="rgba(7,0,0,1)"/>
-  <circle cx="77" cy="80" r="1" fill="rgba(24,6,1,1)"/>
-  <circle cx="78" cy="80" r="1" fill="rgba(42,13,3,1)"/>
-  <circle cx="79" cy="80" r="1" fill="rgba(54,19,6,1)"/>
-  <circle cx="80" cy="80" r="1" fill="rgba(65,25,9,1)"/>
-  <circle cx="81" cy="80" r="1" fill="rgba(70,29,12,1)"/>
-  <circle cx="82" cy="80" r="1" fill="rgba(110,37,14,1)"/>
-  <circle cx="83" cy="80" r="1" fill="rgba(208,51,18,1)"/>
-  <circle cx="84" cy="80" r="1" fill="rgba(214,57,20,1)"/>
-  <circle cx="85" cy="80" r="1" fill="rgba(214,61,21,1)"/>
-  <circle cx="86" cy="80" r="1" fill="rgba(216,66,23,1)"/>
-  <circle cx="87" cy="80" r="1" fill="rgba(217,70,27,1)"/>
-  <circle cx="88" cy="80" r="1" fill="rgba(219,75,30,1)"/>
-  <circle cx="89" cy="80" r="1" fill="rgba(221,80,33,1)"/>
-  <circle cx="90" cy="80" r="1" fill="rgba(222,87,36,1)"/>
-  <circle cx="91" cy="80" r="1" fill="rgba(224,92,39,1)"/>
-  <circle cx="92" cy="80" r="1" fill="rgba(227,98,42,1)"/>
-  <circle cx="93" cy="80" r="1" fill="rgba(229,104,46,1)"/>
-  <circle cx="94" cy="80" r="1" fill="rgba(233,110,51,1)"/>
-  <circle cx="95" cy="80" r="1" fill="rgba(234,117,55,1)"/>
-  <circle cx="96" cy="80" r="1" fill="rgba(236,124,57,1)"/>
-  <circle cx="97" cy="80" r="1" fill="rgba(238,129,62,1)"/>
-  <circle cx="98" cy="80" r="1" fill="rgba(240,132,63,1)"/>
-  <circle cx="99" cy="80" r="1" fill="rgba(240,131,60,1)"/>
-  <circle cx="100" cy="80" r="1" fill="rgba(241,120,52,1)"/>
-  <circle cx="101" cy="80" r="1" fill="rgba(207,86,31,0.94902)"/>
-  <circle cx="102" cy="80" r="1" fill="rgba(51,7,1,0.694118)"/>
-  <circle cx="103" cy="80" r="1" fill="rgba(34,3,0,0.596078)"/>
-  <circle cx="104" cy="80" r="1" fill="rgba(26,2,0,0.486275)"/>
-  <circle cx="105" cy="80" r="1" fill="rgba(15,0,0,0.392157)"/>
-  <circle cx="106" cy="80" r="1" fill="rgba(7,0,0,0.317647)"/>
-  <circle cx="107" cy="80" r="1" fill="rgba(0,0,0,0.243137)"/>
-  <circle cx="108" cy="80" r="1" fill="rgba(0,0,0,0.164706)"/>
-  <circle cx="109" cy="80" r="1" fill="rgba(0,0,0,0.0901961)"/>
-  <circle cx="110" cy="80" r="1" fill="rgba(0,0,0,0.0313725)"/>
-  <circle cx="111" cy="80" r="1" fill="rgba(4,1,0,0.00392157)"/>
-  <circle cx="112" cy="80" r="1" fill="rgba(10,1,0,0)"/>
-  <circle cx="113" cy="80" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="114" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="80" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="81" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="81" r="1" fill="rgba(169,23,2,0)"/>
-  <circle cx="19" cy="81" r="1" fill="rgba(210,24,0,0)"/>
-  <circle cx="20" cy="81" r="1" fill="rgba(205,24,0,0)"/>
-  <circle cx="21" cy="81" r="1" fill="rgba(205,24,0,0)"/>
-  <circle cx="22" cy="81" r="1" fill="rgba(205,24,0,0)"/>
-  <circle cx="23" cy="81" r="1" fill="rgba(205,24,0,0)"/>
-  <circle cx="24" cy="81" r="1" fill="rgba(205,24,0,0)"/>
-  <circle cx="25" cy="81" r="1" fill="rgba(205,24,0,0)"/>
-  <circle cx="26" cy="81" r="1" fill="rgba(205,24,0,0)"/>
-  <circle cx="27" cy="81" r="1" fill="rgba(205,24,0,0)"/>
-  <circle cx="28" cy="81" r="1" fill="rgba(205,24,0,0.333333)"/>
-  <circle cx="29" cy="81" r="1" fill="rgba(209,29,1,1)"/>
-  <circle cx="30" cy="81" r="1" fill="rgba(213,37,1,1)"/>
-  <circle cx="31" cy="81" r="1" fill="rgba(215,40,1,1)"/>
-  <circle cx="32" cy="81" r="1" fill="rgba(213,34,1,1)"/>
-  <circle cx="33" cy="81" r="1" fill="rgba(210,27,0,1)"/>
-  <circle cx="34" cy="81" r="1" fill="rgba(210,25,0,1)"/>
-  <circle cx="35" cy="81" r="1" fill="rgba(210,25,0,1)"/>
-  <circle cx="36" cy="81" r="1" fill="rgba(211,25,0,1)"/>
-  <circle cx="37" cy="81" r="1" fill="rgba(212,25,0,1)"/>
-  <circle cx="38" cy="81" r="1" fill="rgba(212,25,0,1)"/>
-  <circle cx="39" cy="81" r="1" fill="rgba(212,25,0,1)"/>
-  <circle cx="40" cy="81" r="1" fill="rgba(212,25,0,1)"/>
-  <circle cx="41" cy="81" r="1" fill="rgba(216,24,0,1)"/>
-  <circle cx="42" cy="81" r="1" fill="rgba(174,26,3,1)"/>
-  <circle cx="43" cy="81" r="1" fill="rgba(93,27,9,1)"/>
-  <circle cx="44" cy="81" r="1" fill="rgba(59,24,9,1)"/>
-  <circle cx="45" cy="81" r="1" fill="rgba(50,21,8,1)"/>
-  <circle cx="46" cy="81" r="1" fill="rgba(54,18,6,1)"/>
-  <circle cx="47" cy="81" r="1" fill="rgba(116,18,3,1)"/>
-  <circle cx="48" cy="81" r="1" fill="rgba(197,21,0,1)"/>
-  <circle cx="49" cy="81" r="1" fill="rgba(214,22,0,1)"/>
-  <circle cx="50" cy="81" r="1" fill="rgba(209,21,0,1)"/>
-  <circle cx="51" cy="81" r="1" fill="rgba(208,20,0,1)"/>
-  <circle cx="52" cy="81" r="1" fill="rgba(208,20,0,1)"/>
-  <circle cx="53" cy="81" r="1" fill="rgba(207,19,0,1)"/>
-  <circle cx="54" cy="81" r="1" fill="rgba(206,19,0,1)"/>
-  <circle cx="55" cy="81" r="1" fill="rgba(206,18,0,1)"/>
-  <circle cx="56" cy="81" r="1" fill="rgba(205,17,0,1)"/>
-  <circle cx="57" cy="81" r="1" fill="rgba(203,17,0,1)"/>
-  <circle cx="58" cy="81" r="1" fill="rgba(203,17,1,1)"/>
-  <circle cx="59" cy="81" r="1" fill="rgba(202,16,1,1)"/>
-  <circle cx="60" cy="81" r="1" fill="rgba(201,15,1,1)"/>
-  <circle cx="61" cy="81" r="1" fill="rgba(200,14,1,1)"/>
-  <circle cx="62" cy="81" r="1" fill="rgba(199,14,1,1)"/>
-  <circle cx="63" cy="81" r="1" fill="rgba(196,13,1,1)"/>
-  <circle cx="64" cy="81" r="1" fill="rgba(196,10,1,1)"/>
-  <circle cx="65" cy="81" r="1" fill="rgba(159,10,0,1)"/>
-  <circle cx="66" cy="81" r="1" fill="rgba(137,11,2,1)"/>
-  <circle cx="67" cy="81" r="1" fill="rgba(188,10,1,1)"/>
-  <circle cx="68" cy="81" r="1" fill="rgba(187,13,2,1)"/>
-  <circle cx="69" cy="81" r="1" fill="rgba(192,17,3,1)"/>
-  <circle cx="70" cy="81" r="1" fill="rgba(197,20,5,1)"/>
-  <circle cx="71" cy="81" r="1" fill="rgba(200,24,6,1)"/>
-  <circle cx="72" cy="81" r="1" fill="rgba(207,27,7,1)"/>
-  <circle cx="73" cy="81" r="1" fill="rgba(178,23,5,1)"/>
-  <circle cx="74" cy="81" r="1" fill="rgba(10,1,0,1)"/>
-  <circle cx="75" cy="81" r="1" fill="black"/>
-  <circle cx="76" cy="81" r="1" fill="rgba(24,6,1,1)"/>
-  <circle cx="77" cy="81" r="1" fill="rgba(43,14,4,1)"/>
-  <circle cx="78" cy="81" r="1" fill="rgba(58,20,7,1)"/>
-  <circle cx="79" cy="81" r="1" fill="rgba(69,27,10,1)"/>
-  <circle cx="80" cy="81" r="1" fill="rgba(81,33,13,1)"/>
-  <circle cx="81" cy="81" r="1" fill="rgba(86,38,17,1)"/>
-  <circle cx="82" cy="81" r="1" fill="rgba(113,44,20,1)"/>
-  <circle cx="83" cy="81" r="1" fill="rgba(207,54,19,1)"/>
-  <circle cx="84" cy="81" r="1" fill="rgba(214,59,20,1)"/>
-  <circle cx="85" cy="81" r="1" fill="rgba(215,63,23,1)"/>
-  <circle cx="86" cy="81" r="1" fill="rgba(216,69,25,1)"/>
-  <circle cx="87" cy="81" r="1" fill="rgba(218,73,28,1)"/>
-  <circle cx="88" cy="81" r="1" fill="rgba(221,78,31,1)"/>
-  <circle cx="89" cy="81" r="1" fill="rgba(222,84,34,1)"/>
-  <circle cx="90" cy="81" r="1" fill="rgba(223,89,37,1)"/>
-  <circle cx="91" cy="81" r="1" fill="rgba(227,95,41,1)"/>
-  <circle cx="92" cy="81" r="1" fill="rgba(228,101,44,1)"/>
-  <circle cx="93" cy="81" r="1" fill="rgba(231,107,48,1)"/>
-  <circle cx="94" cy="81" r="1" fill="rgba(233,114,53,1)"/>
-  <circle cx="95" cy="81" r="1" fill="rgba(236,120,56,1)"/>
-  <circle cx="96" cy="81" r="1" fill="rgba(237,125,60,1)"/>
-  <circle cx="97" cy="81" r="1" fill="rgba(239,131,64,1)"/>
-  <circle cx="98" cy="81" r="1" fill="rgba(240,134,64,1)"/>
-  <circle cx="99" cy="81" r="1" fill="rgba(239,127,57,1)"/>
-  <circle cx="100" cy="81" r="1" fill="rgba(244,116,48,1)"/>
-  <circle cx="101" cy="81" r="1" fill="rgba(163,58,18,0.87451)"/>
-  <circle cx="102" cy="81" r="1" fill="rgba(31,1,0,0.662745)"/>
-  <circle cx="103" cy="81" r="1" fill="rgba(36,4,0,0.572549)"/>
-  <circle cx="104" cy="81" r="1" fill="rgba(24,1,0,0.462745)"/>
-  <circle cx="105" cy="81" r="1" fill="rgba(15,0,0,0.372549)"/>
-  <circle cx="106" cy="81" r="1" fill="rgba(7,0,0,0.298039)"/>
-  <circle cx="107" cy="81" r="1" fill="rgba(0,0,0,0.223529)"/>
-  <circle cx="108" cy="81" r="1" fill="rgba(0,0,0,0.141176)"/>
-  <circle cx="109" cy="81" r="1" fill="rgba(0,0,0,0.0745098)"/>
-  <circle cx="110" cy="81" r="1" fill="rgba(0,0,0,0.0235294)"/>
-  <circle cx="111" cy="81" r="1" fill="rgba(10,2,0,0.00392157)"/>
-  <circle cx="112" cy="81" r="1" fill="rgba(15,4,0,0)"/>
-  <circle cx="113" cy="81" r="1" fill="rgba(12,3,0,0)"/>
-  <circle cx="114" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="81" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="82" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="82" r="1" fill="rgba(216,25,0,0)"/>
-  <circle cx="19" cy="82" r="1" fill="rgba(203,24,0,0)"/>
-  <circle cx="20" cy="82" r="1" fill="rgba(204,24,0,0)"/>
-  <circle cx="21" cy="82" r="1" fill="rgba(204,24,0,0)"/>
-  <circle cx="22" cy="82" r="1" fill="rgba(204,24,0,0)"/>
-  <circle cx="23" cy="82" r="1" fill="rgba(204,24,0,0)"/>
-  <circle cx="24" cy="82" r="1" fill="rgba(204,24,0,0)"/>
-  <circle cx="25" cy="82" r="1" fill="rgba(204,24,0,0)"/>
-  <circle cx="26" cy="82" r="1" fill="rgba(204,24,0,0)"/>
-  <circle cx="27" cy="82" r="1" fill="rgba(204,24,0,0)"/>
-  <circle cx="28" cy="82" r="1" fill="rgba(204,24,0,0.0862745)"/>
-  <circle cx="29" cy="82" r="1" fill="rgba(207,26,1,0.937255)"/>
-  <circle cx="30" cy="82" r="1" fill="rgba(211,35,2,1)"/>
-  <circle cx="31" cy="82" r="1" fill="rgba(214,38,2,1)"/>
-  <circle cx="32" cy="82" r="1" fill="rgba(212,34,1,1)"/>
-  <circle cx="33" cy="82" r="1" fill="rgba(209,27,1,1)"/>
-  <circle cx="34" cy="82" r="1" fill="rgba(208,24,0,1)"/>
-  <circle cx="35" cy="82" r="1" fill="rgba(208,23,0,1)"/>
-  <circle cx="36" cy="82" r="1" fill="rgba(209,23,0,1)"/>
-  <circle cx="37" cy="82" r="1" fill="rgba(210,24,0,1)"/>
-  <circle cx="38" cy="82" r="1" fill="rgba(210,24,0,1)"/>
-  <circle cx="39" cy="82" r="1" fill="rgba(210,24,0,1)"/>
-  <circle cx="40" cy="82" r="1" fill="rgba(215,23,0,1)"/>
-  <circle cx="41" cy="82" r="1" fill="rgba(183,26,3,1)"/>
-  <circle cx="42" cy="82" r="1" fill="rgba(78,32,13,1)"/>
-  <circle cx="43" cy="82" r="1" fill="rgba(64,29,11,1)"/>
-  <circle cx="44" cy="82" r="1" fill="rgba(67,25,9,1)"/>
-  <circle cx="45" cy="82" r="1" fill="rgba(59,22,8,1)"/>
-  <circle cx="46" cy="82" r="1" fill="rgba(51,19,6,1)"/>
-  <circle cx="47" cy="82" r="1" fill="rgba(29,15,5,1)"/>
-  <circle cx="48" cy="82" r="1" fill="rgba(74,13,3,1)"/>
-  <circle cx="49" cy="82" r="1" fill="rgba(186,19,0,1)"/>
-  <circle cx="50" cy="82" r="1" fill="rgba(212,20,0,1)"/>
-  <circle cx="51" cy="82" r="1" fill="rgba(207,19,0,1)"/>
-  <circle cx="52" cy="82" r="1" fill="rgba(207,19,0,1)"/>
-  <circle cx="53" cy="82" r="1" fill="rgba(205,19,0,1)"/>
-  <circle cx="54" cy="82" r="1" fill="rgba(204,18,0,1)"/>
-  <circle cx="55" cy="82" r="1" fill="rgba(204,16,0,1)"/>
-  <circle cx="56" cy="82" r="1" fill="rgba(203,16,1,1)"/>
-  <circle cx="57" cy="82" r="1" fill="rgba(202,16,1,1)"/>
-  <circle cx="58" cy="82" r="1" fill="rgba(202,16,1,1)"/>
-  <circle cx="59" cy="82" r="1" fill="rgba(200,14,1,1)"/>
-  <circle cx="60" cy="82" r="1" fill="rgba(200,14,1,1)"/>
-  <circle cx="61" cy="82" r="1" fill="rgba(200,13,1,1)"/>
-  <circle cx="62" cy="82" r="1" fill="rgba(198,13,2,1)"/>
-  <circle cx="63" cy="82" r="1" fill="rgba(196,12,2,1)"/>
-  <circle cx="64" cy="82" r="1" fill="rgba(195,10,1,1)"/>
-  <circle cx="65" cy="82" r="1" fill="rgba(157,9,0,1)"/>
-  <circle cx="66" cy="82" r="1" fill="rgba(136,10,2,1)"/>
-  <circle cx="67" cy="82" r="1" fill="rgba(188,11,1,1)"/>
-  <circle cx="68" cy="82" r="1" fill="rgba(187,13,3,1)"/>
-  <circle cx="69" cy="82" r="1" fill="rgba(192,17,3,1)"/>
-  <circle cx="70" cy="82" r="1" fill="rgba(197,20,5,1)"/>
-  <circle cx="71" cy="82" r="1" fill="rgba(200,24,6,1)"/>
-  <circle cx="72" cy="82" r="1" fill="rgba(207,26,7,1)"/>
-  <circle cx="73" cy="82" r="1" fill="rgba(178,23,6,1)"/>
-  <circle cx="74" cy="82" r="1" fill="rgba(15,1,0,1)"/>
-  <circle cx="75" cy="82" r="1" fill="rgba(17,4,0,1)"/>
-  <circle cx="76" cy="82" r="1" fill="rgba(42,13,4,1)"/>
-  <circle cx="77" cy="82" r="1" fill="rgba(58,20,7,1)"/>
-  <circle cx="78" cy="82" r="1" fill="rgba(70,28,10,1)"/>
-  <circle cx="79" cy="82" r="1" fill="rgba(83,34,14,1)"/>
-  <circle cx="80" cy="82" r="1" fill="rgba(94,41,18,1)"/>
-  <circle cx="81" cy="82" r="1" fill="rgba(100,47,22,1)"/>
-  <circle cx="82" cy="82" r="1" fill="rgba(128,52,24,1)"/>
-  <circle cx="83" cy="82" r="1" fill="rgba(210,57,20,1)"/>
-  <circle cx="84" cy="82" r="1" fill="rgba(216,62,21,1)"/>
-  <circle cx="85" cy="82" r="1" fill="rgba(216,67,24,1)"/>
-  <circle cx="86" cy="82" r="1" fill="rgba(217,71,27,1)"/>
-  <circle cx="87" cy="82" r="1" fill="rgba(219,76,29,1)"/>
-  <circle cx="88" cy="82" r="1" fill="rgba(221,81,33,1)"/>
-  <circle cx="89" cy="82" r="1" fill="rgba(223,87,36,1)"/>
-  <circle cx="90" cy="82" r="1" fill="rgba(225,93,38,1)"/>
-  <circle cx="91" cy="82" r="1" fill="rgba(227,98,42,1)"/>
-  <circle cx="92" cy="82" r="1" fill="rgba(229,103,46,1)"/>
-  <circle cx="93" cy="82" r="1" fill="rgba(232,110,50,1)"/>
-  <circle cx="94" cy="82" r="1" fill="rgba(234,116,54,1)"/>
-  <circle cx="95" cy="82" r="1" fill="rgba(236,122,57,1)"/>
-  <circle cx="96" cy="82" r="1" fill="rgba(238,129,63,1)"/>
-  <circle cx="97" cy="82" r="1" fill="rgba(240,133,66,1)"/>
-  <circle cx="98" cy="82" r="1" fill="rgba(241,133,63,1)"/>
-  <circle cx="99" cy="82" r="1" fill="rgba(239,122,54,1)"/>
-  <circle cx="100" cy="82" r="1" fill="rgba(236,106,42,1)"/>
-  <circle cx="101" cy="82" r="1" fill="rgba(111,31,8,0.792157)"/>
-  <circle cx="102" cy="82" r="1" fill="rgba(29,1,0,0.643137)"/>
-  <circle cx="103" cy="82" r="1" fill="rgba(34,4,0,0.54902)"/>
-  <circle cx="104" cy="82" r="1" fill="rgba(21,1,0,0.435294)"/>
-  <circle cx="105" cy="82" r="1" fill="rgba(17,0,0,0.352941)"/>
-  <circle cx="106" cy="82" r="1" fill="rgba(7,0,0,0.282353)"/>
-  <circle cx="107" cy="82" r="1" fill="rgba(0,0,0,0.203922)"/>
-  <circle cx="108" cy="82" r="1" fill="rgba(0,0,0,0.12549)"/>
-  <circle cx="109" cy="82" r="1" fill="rgba(0,0,0,0.0588235)"/>
-  <circle cx="110" cy="82" r="1" fill="rgba(0,0,0,0.0156863)"/>
-  <circle cx="111" cy="82" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="112" cy="82" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="113" cy="82" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="114" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="82" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="83" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="83" r="1" fill="rgba(191,22,1,0)"/>
-  <circle cx="19" cy="83" r="1" fill="rgba(188,22,1,0)"/>
-  <circle cx="20" cy="83" r="1" fill="rgba(188,22,1,0)"/>
-  <circle cx="21" cy="83" r="1" fill="rgba(188,22,1,0)"/>
-  <circle cx="22" cy="83" r="1" fill="rgba(188,22,1,0)"/>
-  <circle cx="23" cy="83" r="1" fill="rgba(188,22,1,0)"/>
-  <circle cx="24" cy="83" r="1" fill="rgba(188,22,1,0)"/>
-  <circle cx="25" cy="83" r="1" fill="rgba(188,22,1,0)"/>
-  <circle cx="26" cy="83" r="1" fill="rgba(188,22,1,0)"/>
-  <circle cx="27" cy="83" r="1" fill="rgba(188,22,1,0)"/>
-  <circle cx="28" cy="83" r="1" fill="rgba(188,22,1,0)"/>
-  <circle cx="29" cy="83" r="1" fill="rgba(196,23,1,0.670588)"/>
-  <circle cx="30" cy="83" r="1" fill="rgba(210,31,2,1)"/>
-  <circle cx="31" cy="83" r="1" fill="rgba(213,37,3,1)"/>
-  <circle cx="32" cy="83" r="1" fill="rgba(211,34,2,1)"/>
-  <circle cx="33" cy="83" r="1" fill="rgba(208,28,1,1)"/>
-  <circle cx="34" cy="83" r="1" fill="rgba(207,23,0,1)"/>
-  <circle cx="35" cy="83" r="1" fill="rgba(207,22,0,1)"/>
-  <circle cx="36" cy="83" r="1" fill="rgba(207,22,0,1)"/>
-  <circle cx="37" cy="83" r="1" fill="rgba(207,23,0,1)"/>
-  <circle cx="38" cy="83" r="1" fill="rgba(207,23,0,1)"/>
-  <circle cx="39" cy="83" r="1" fill="rgba(209,23,0,1)"/>
-  <circle cx="40" cy="83" r="1" fill="rgba(210,22,0,1)"/>
-  <circle cx="41" cy="83" r="1" fill="rgba(126,32,10,1)"/>
-  <circle cx="42" cy="83" r="1" fill="rgba(70,34,14,1)"/>
-  <circle cx="43" cy="83" r="1" fill="rgba(74,29,11,1)"/>
-  <circle cx="44" cy="83" r="1" fill="rgba(68,26,10,1)"/>
-  <circle cx="45" cy="83" r="1" fill="rgba(62,23,8,1)"/>
-  <circle cx="46" cy="83" r="1" fill="rgba(55,20,6,1)"/>
-  <circle cx="47" cy="83" r="1" fill="rgba(49,16,5,1)"/>
-  <circle cx="48" cy="83" r="1" fill="rgba(24,11,3,1)"/>
-  <circle cx="49" cy="83" r="1" fill="rgba(78,11,2,1)"/>
-  <circle cx="50" cy="83" r="1" fill="rgba(200,18,0,1)"/>
-  <circle cx="51" cy="83" r="1" fill="rgba(207,18,0,1)"/>
-  <circle cx="52" cy="83" r="1" fill="rgba(204,18,0,1)"/>
-  <circle cx="53" cy="83" r="1" fill="rgba(203,18,0,1)"/>
-  <circle cx="54" cy="83" r="1" fill="rgba(203,17,1,1)"/>
-  <circle cx="55" cy="83" r="1" fill="rgba(202,16,1,1)"/>
-  <circle cx="56" cy="83" r="1" fill="rgba(202,15,1,1)"/>
-  <circle cx="57" cy="83" r="1" fill="rgba(201,15,1,1)"/>
-  <circle cx="58" cy="83" r="1" fill="rgba(200,14,1,1)"/>
-  <circle cx="59" cy="83" r="1" fill="rgba(200,14,1,1)"/>
-  <circle cx="60" cy="83" r="1" fill="rgba(199,14,1,1)"/>
-  <circle cx="61" cy="83" r="1" fill="rgba(198,13,1,1)"/>
-  <circle cx="62" cy="83" r="1" fill="rgba(196,13,2,1)"/>
-  <circle cx="63" cy="83" r="1" fill="rgba(195,12,2,1)"/>
-  <circle cx="64" cy="83" r="1" fill="rgba(196,10,1,1)"/>
-  <circle cx="65" cy="83" r="1" fill="rgba(156,7,0,1)"/>
-  <circle cx="66" cy="83" r="1" fill="rgba(133,9,1,1)"/>
-  <circle cx="67" cy="83" r="1" fill="rgba(189,12,2,1)"/>
-  <circle cx="68" cy="83" r="1" fill="rgba(188,14,3,1)"/>
-  <circle cx="69" cy="83" r="1" fill="rgba(193,18,4,1)"/>
-  <circle cx="70" cy="83" r="1" fill="rgba(198,21,5,1)"/>
-  <circle cx="71" cy="83" r="1" fill="rgba(200,25,6,1)"/>
-  <circle cx="72" cy="83" r="1" fill="rgba(205,28,7,1)"/>
-  <circle cx="73" cy="83" r="1" fill="rgba(195,27,7,1)"/>
-  <circle cx="74" cy="83" r="1" fill="rgba(46,6,1,1)"/>
-  <circle cx="75" cy="83" r="1" fill="rgba(31,10,3,1)"/>
-  <circle cx="76" cy="83" r="1" fill="rgba(55,19,6,1)"/>
-  <circle cx="77" cy="83" r="1" fill="rgba(69,27,10,1)"/>
-  <circle cx="78" cy="83" r="1" fill="rgba(83,34,14,1)"/>
-  <circle cx="79" cy="83" r="1" fill="rgba(95,42,18,1)"/>
-  <circle cx="80" cy="83" r="1" fill="rgba(106,48,23,1)"/>
-  <circle cx="81" cy="83" r="1" fill="rgba(110,55,27,1)"/>
-  <circle cx="82" cy="83" r="1" fill="rgba(147,59,28,1)"/>
-  <circle cx="83" cy="83" r="1" fill="rgba(214,60,21,1)"/>
-  <circle cx="84" cy="83" r="1" fill="rgba(216,65,23,1)"/>
-  <circle cx="85" cy="83" r="1" fill="rgba(217,69,25,1)"/>
-  <circle cx="86" cy="83" r="1" fill="rgba(218,74,28,1)"/>
-  <circle cx="87" cy="83" r="1" fill="rgba(221,79,31,1)"/>
-  <circle cx="88" cy="83" r="1" fill="rgba(221,84,33,1)"/>
-  <circle cx="89" cy="83" r="1" fill="rgba(224,89,37,1)"/>
-  <circle cx="90" cy="83" r="1" fill="rgba(227,95,41,1)"/>
-  <circle cx="91" cy="83" r="1" fill="rgba(228,101,44,1)"/>
-  <circle cx="92" cy="83" r="1" fill="rgba(231,107,48,1)"/>
-  <circle cx="93" cy="83" r="1" fill="rgba(233,113,53,1)"/>
-  <circle cx="94" cy="83" r="1" fill="rgba(236,120,56,1)"/>
-  <circle cx="95" cy="83" r="1" fill="rgba(237,126,60,1)"/>
-  <circle cx="96" cy="83" r="1" fill="rgba(238,131,64,1)"/>
-  <circle cx="97" cy="83" r="1" fill="rgba(241,135,65,1)"/>
-  <circle cx="98" cy="83" r="1" fill="rgba(241,130,60,1)"/>
-  <circle cx="99" cy="83" r="1" fill="rgba(241,118,50,1)"/>
-  <circle cx="100" cy="83" r="1" fill="rgba(212,87,32,0.964706)"/>
-  <circle cx="101" cy="83" r="1" fill="rgba(57,9,2,0.717647)"/>
-  <circle cx="102" cy="83" r="1" fill="rgba(39,4,0,0.627451)"/>
-  <circle cx="103" cy="83" r="1" fill="rgba(31,2,0,0.521569)"/>
-  <circle cx="104" cy="83" r="1" fill="rgba(19,0,0,0.415686)"/>
-  <circle cx="105" cy="83" r="1" fill="rgba(12,2,0,0.333333)"/>
-  <circle cx="106" cy="83" r="1" fill="rgba(4,0,0,0.262745)"/>
-  <circle cx="107" cy="83" r="1" fill="rgba(0,0,0,0.184314)"/>
-  <circle cx="108" cy="83" r="1" fill="rgba(0,0,0,0.109804)"/>
-  <circle cx="109" cy="83" r="1" fill="rgba(0,0,0,0.0470588)"/>
-  <circle cx="110" cy="83" r="1" fill="rgba(4,0,0,0.0117647)"/>
-  <circle cx="111" cy="83" r="1" fill="rgba(22,8,1,0)"/>
-  <circle cx="112" cy="83" r="1" fill="rgba(22,8,1,0)"/>
-  <circle cx="113" cy="83" r="1" fill="rgba(22,8,1,0)"/>
-  <circle cx="114" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="83" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="84" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="84" r="1" fill="rgba(113,16,3,0)"/>
-  <circle cx="19" cy="84" r="1" fill="rgba(113,16,3,0)"/>
-  <circle cx="20" cy="84" r="1" fill="rgba(113,16,3,0)"/>
-  <circle cx="21" cy="84" r="1" fill="rgba(113,16,3,0)"/>
-  <circle cx="22" cy="84" r="1" fill="rgba(113,16,3,0)"/>
-  <circle cx="23" cy="84" r="1" fill="rgba(113,16,3,0)"/>
-  <circle cx="24" cy="84" r="1" fill="rgba(113,16,3,0)"/>
-  <circle cx="25" cy="84" r="1" fill="rgba(113,16,3,0)"/>
-  <circle cx="26" cy="84" r="1" fill="rgba(113,16,3,0)"/>
-  <circle cx="27" cy="84" r="1" fill="rgba(113,16,3,0)"/>
-  <circle cx="28" cy="84" r="1" fill="rgba(107,15,3,0)"/>
-  <circle cx="29" cy="84" r="1" fill="rgba(156,19,3,0.356863)"/>
-  <circle cx="30" cy="84" r="1" fill="rgba(210,28,2,1)"/>
-  <circle cx="31" cy="84" r="1" fill="rgba(210,34,3,1)"/>
-  <circle cx="32" cy="84" r="1" fill="rgba(210,33,2,1)"/>
-  <circle cx="33" cy="84" r="1" fill="rgba(207,27,1,1)"/>
-  <circle cx="34" cy="84" r="1" fill="rgba(205,22,0,1)"/>
-  <circle cx="35" cy="84" r="1" fill="rgba(205,21,0,1)"/>
-  <circle cx="36" cy="84" r="1" fill="rgba(205,21,1,1)"/>
-  <circle cx="37" cy="84" r="1" fill="rgba(205,21,1,1)"/>
-  <circle cx="38" cy="84" r="1" fill="rgba(206,22,0,1)"/>
-  <circle cx="39" cy="84" r="1" fill="rgba(208,21,0,1)"/>
-  <circle cx="40" cy="84" r="1" fill="rgba(201,22,1,1)"/>
-  <circle cx="41" cy="84" r="1" fill="rgba(98,36,14,1)"/>
-  <circle cx="42" cy="84" r="1" fill="rgba(77,33,14,1)"/>
-  <circle cx="43" cy="84" r="1" fill="rgba(74,29,12,1)"/>
-  <circle cx="44" cy="84" r="1" fill="rgba(69,26,10,1)"/>
-  <circle cx="45" cy="84" r="1" fill="rgba(63,23,8,1)"/>
-  <circle cx="46" cy="84" r="1" fill="rgba(55,20,6,1)"/>
-  <circle cx="47" cy="84" r="1" fill="rgba(49,16,5,1)"/>
-  <circle cx="48" cy="84" r="1" fill="rgba(42,13,3,1)"/>
-  <circle cx="49" cy="84" r="1" fill="rgba(12,9,2,1)"/>
-  <circle cx="50" cy="84" r="1" fill="rgba(130,12,1,1)"/>
-  <circle cx="51" cy="84" r="1" fill="rgba(209,18,1,1)"/>
-  <circle cx="52" cy="84" r="1" fill="rgba(203,16,0,1)"/>
-  <circle cx="53" cy="84" r="1" fill="rgba(202,16,1,1)"/>
-  <circle cx="54" cy="84" r="1" fill="rgba(202,15,1,1)"/>
-  <circle cx="55" cy="84" r="1" fill="rgba(201,14,1,1)"/>
-  <circle cx="56" cy="84" r="1" fill="rgba(200,15,1,1)"/>
-  <circle cx="57" cy="84" r="1" fill="rgba(200,14,1,1)"/>
-  <circle cx="58" cy="84" r="1" fill="rgba(199,14,1,1)"/>
-  <circle cx="59" cy="84" r="1" fill="rgba(199,13,1,1)"/>
-  <circle cx="60" cy="84" r="1" fill="rgba(197,13,2,1)"/>
-  <circle cx="61" cy="84" r="1" fill="rgba(197,13,2,1)"/>
-  <circle cx="62" cy="84" r="1" fill="rgba(196,13,3,1)"/>
-  <circle cx="63" cy="84" r="1" fill="rgba(195,13,3,1)"/>
-  <circle cx="64" cy="84" r="1" fill="rgba(195,11,1,1)"/>
-  <circle cx="65" cy="84" r="1" fill="rgba(154,6,0,1)"/>
-  <circle cx="66" cy="84" r="1" fill="rgba(131,8,1,1)"/>
-  <circle cx="67" cy="84" r="1" fill="rgba(190,14,3,1)"/>
-  <circle cx="68" cy="84" r="1" fill="rgba(188,15,3,1)"/>
-  <circle cx="69" cy="84" r="1" fill="rgba(193,19,4,1)"/>
-  <circle cx="70" cy="84" r="1" fill="rgba(198,23,5,1)"/>
-  <circle cx="71" cy="84" r="1" fill="rgba(201,26,6,1)"/>
-  <circle cx="72" cy="84" r="1" fill="rgba(203,29,8,1)"/>
-  <circle cx="73" cy="84" r="1" fill="rgba(208,31,9,1)"/>
-  <circle cx="74" cy="84" r="1" fill="rgba(109,17,4,1)"/>
-  <circle cx="75" cy="84" r="1" fill="rgba(33,15,4,1)"/>
-  <circle cx="76" cy="84" r="1" fill="rgba(67,24,9,1)"/>
-  <circle cx="77" cy="84" r="1" fill="rgba(81,33,13,1)"/>
-  <circle cx="78" cy="84" r="1" fill="rgba(94,41,18,1)"/>
-  <circle cx="79" cy="84" r="1" fill="rgba(106,48,23,1)"/>
-  <circle cx="80" cy="84" r="1" fill="rgba(116,55,28,1)"/>
-  <circle cx="81" cy="84" r="1" fill="rgba(121,63,34,1)"/>
-  <circle cx="82" cy="84" r="1" fill="rgba(176,64,28,1)"/>
-  <circle cx="83" cy="84" r="1" fill="rgba(219,62,21,1)"/>
-  <circle cx="84" cy="84" r="1" fill="rgba(216,68,25,1)"/>
-  <circle cx="85" cy="84" r="1" fill="rgba(217,72,27,1)"/>
-  <circle cx="86" cy="84" r="1" fill="rgba(220,77,30,1)"/>
-  <circle cx="87" cy="84" r="1" fill="rgba(221,83,33,1)"/>
-  <circle cx="88" cy="84" r="1" fill="rgba(223,87,36,1)"/>
-  <circle cx="89" cy="84" r="1" fill="rgba(225,93,39,1)"/>
-  <circle cx="90" cy="84" r="1" fill="rgba(228,99,42,1)"/>
-  <circle cx="91" cy="84" r="1" fill="rgba(230,104,47,1)"/>
-  <circle cx="92" cy="84" r="1" fill="rgba(233,110,51,1)"/>
-  <circle cx="93" cy="84" r="1" fill="rgba(234,117,54,1)"/>
-  <circle cx="94" cy="84" r="1" fill="rgba(236,123,58,1)"/>
-  <circle cx="95" cy="84" r="1" fill="rgba(238,129,62,1)"/>
-  <circle cx="96" cy="84" r="1" fill="rgba(240,133,66,1)"/>
-  <circle cx="97" cy="84" r="1" fill="rgba(241,134,64,1)"/>
-  <circle cx="98" cy="84" r="1" fill="rgba(238,125,56,1)"/>
-  <circle cx="99" cy="84" r="1" fill="rgba(242,114,47,1)"/>
-  <circle cx="100" cy="84" r="1" fill="rgba(163,57,18,0.878431)"/>
-  <circle cx="101" cy="84" r="1" fill="rgba(34,2,0,0.67451)"/>
-  <circle cx="102" cy="84" r="1" fill="rgba(39,4,0,0.6)"/>
-  <circle cx="103" cy="84" r="1" fill="rgba(26,2,0,0.490196)"/>
-  <circle cx="104" cy="84" r="1" fill="rgba(17,0,0,0.388235)"/>
-  <circle cx="105" cy="84" r="1" fill="rgba(12,1,0,0.309804)"/>
-  <circle cx="106" cy="84" r="1" fill="rgba(4,0,0,0.239216)"/>
-  <circle cx="107" cy="84" r="1" fill="rgba(0,0,0,0.160784)"/>
-  <circle cx="108" cy="84" r="1" fill="rgba(0,0,0,0.0901961)"/>
-  <circle cx="109" cy="84" r="1" fill="rgba(0,0,0,0.0352941)"/>
-  <circle cx="110" cy="84" r="1" fill="rgba(4,0,0,0.00392157)"/>
-  <circle cx="111" cy="84" r="1" fill="rgba(17,5,0,0)"/>
-  <circle cx="112" cy="84" r="1" fill="rgba(17,6,0,0)"/>
-  <circle cx="113" cy="84" r="1" fill="rgba(17,6,0,0)"/>
-  <circle cx="114" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="84" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="85" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="85" r="1" fill="rgba(111,13,1,0)"/>
-  <circle cx="19" cy="85" r="1" fill="rgba(111,13,1,0)"/>
-  <circle cx="20" cy="85" r="1" fill="rgba(111,13,1,0)"/>
-  <circle cx="21" cy="85" r="1" fill="rgba(111,13,1,0)"/>
-  <circle cx="22" cy="85" r="1" fill="rgba(111,13,1,0)"/>
-  <circle cx="23" cy="85" r="1" fill="rgba(111,13,1,0)"/>
-  <circle cx="24" cy="85" r="1" fill="rgba(111,13,1,0)"/>
-  <circle cx="25" cy="85" r="1" fill="rgba(111,13,1,0)"/>
-  <circle cx="26" cy="85" r="1" fill="rgba(111,13,1,0)"/>
-  <circle cx="27" cy="85" r="1" fill="rgba(111,13,1,0)"/>
-  <circle cx="28" cy="85" r="1" fill="rgba(109,13,1,0)"/>
-  <circle cx="29" cy="85" r="1" fill="rgba(126,14,1,0.0823529)"/>
-  <circle cx="30" cy="85" r="1" fill="rgba(198,23,2,0.901961)"/>
-  <circle cx="31" cy="85" r="1" fill="rgba(207,29,3,1)"/>
-  <circle cx="32" cy="85" r="1" fill="rgba(207,30,3,1)"/>
-  <circle cx="33" cy="85" r="1" fill="rgba(205,25,1,1)"/>
-  <circle cx="34" cy="85" r="1" fill="rgba(203,21,1,1)"/>
-  <circle cx="35" cy="85" r="1" fill="rgba(203,19,0,1)"/>
-  <circle cx="36" cy="85" r="1" fill="rgba(203,19,1,1)"/>
-  <circle cx="37" cy="85" r="1" fill="rgba(203,20,1,1)"/>
-  <circle cx="38" cy="85" r="1" fill="rgba(204,20,1,1)"/>
-  <circle cx="39" cy="85" r="1" fill="rgba(206,20,0,1)"/>
-  <circle cx="40" cy="85" r="1" fill="rgba(198,21,1,1)"/>
-  <circle cx="41" cy="85" r="1" fill="rgba(94,36,14,1)"/>
-  <circle cx="42" cy="85" r="1" fill="rgba(78,33,14,1)"/>
-  <circle cx="43" cy="85" r="1" fill="rgba(75,30,12,1)"/>
-  <circle cx="44" cy="85" r="1" fill="rgba(69,27,10,1)"/>
-  <circle cx="45" cy="85" r="1" fill="rgba(63,23,8,1)"/>
-  <circle cx="46" cy="85" r="1" fill="rgba(57,20,6,1)"/>
-  <circle cx="47" cy="85" r="1" fill="rgba(50,17,5,1)"/>
-  <circle cx="48" cy="85" r="1" fill="rgba(43,13,4,1)"/>
-  <circle cx="49" cy="85" r="1" fill="rgba(26,9,2,1)"/>
-  <circle cx="50" cy="85" r="1" fill="rgba(63,8,1,1)"/>
-  <circle cx="51" cy="85" r="1" fill="rgba(197,15,1,1)"/>
-  <circle cx="52" cy="85" r="1" fill="rgba(203,16,1,1)"/>
-  <circle cx="53" cy="85" r="1" fill="rgba(200,15,1,1)"/>
-  <circle cx="54" cy="85" r="1" fill="rgba(200,14,1,1)"/>
-  <circle cx="55" cy="85" r="1" fill="rgba(200,14,1,1)"/>
-  <circle cx="56" cy="85" r="1" fill="rgba(200,14,1,1)"/>
-  <circle cx="57" cy="85" r="1" fill="rgba(199,13,2,1)"/>
-  <circle cx="58" cy="85" r="1" fill="rgba(198,13,2,1)"/>
-  <circle cx="59" cy="85" r="1" fill="rgba(197,13,2,1)"/>
-  <circle cx="60" cy="85" r="1" fill="rgba(197,12,2,1)"/>
-  <circle cx="61" cy="85" r="1" fill="rgba(197,13,3,1)"/>
-  <circle cx="62" cy="85" r="1" fill="rgba(196,14,3,1)"/>
-  <circle cx="63" cy="85" r="1" fill="rgba(195,15,3,1)"/>
-  <circle cx="64" cy="85" r="1" fill="rgba(196,12,1,1)"/>
-  <circle cx="65" cy="85" r="1" fill="rgba(153,6,0,1)"/>
-  <circle cx="66" cy="85" r="1" fill="rgba(132,9,1,1)"/>
-  <circle cx="67" cy="85" r="1" fill="rgba(191,15,3,1)"/>
-  <circle cx="68" cy="85" r="1" fill="rgba(189,17,3,1)"/>
-  <circle cx="69" cy="85" r="1" fill="rgba(194,21,4,1)"/>
-  <circle cx="70" cy="85" r="1" fill="rgba(199,24,6,1)"/>
-  <circle cx="71" cy="85" r="1" fill="rgba(201,27,7,1)"/>
-  <circle cx="72" cy="85" r="1" fill="rgba(203,30,8,1)"/>
-  <circle cx="73" cy="85" r="1" fill="rgba(210,34,9,1)"/>
-  <circle cx="74" cy="85" r="1" fill="rgba(176,30,9,1)"/>
-  <circle cx="75" cy="85" r="1" fill="rgba(61,21,8,1)"/>
-  <circle cx="76" cy="85" r="1" fill="rgba(70,30,12,1)"/>
-  <circle cx="77" cy="85" r="1" fill="rgba(90,39,17,1)"/>
-  <circle cx="78" cy="85" r="1" fill="rgba(103,47,22,1)"/>
-  <circle cx="79" cy="85" r="1" fill="rgba(115,55,27,1)"/>
-  <circle cx="80" cy="85" r="1" fill="rgba(124,63,33,1)"/>
-  <circle cx="81" cy="85" r="1" fill="rgba(142,68,37,1)"/>
-  <circle cx="82" cy="85" r="1" fill="rgba(207,63,24,1)"/>
-  <circle cx="83" cy="85" r="1" fill="rgba(217,66,24,1)"/>
-  <circle cx="84" cy="85" r="1" fill="rgba(217,70,26,1)"/>
-  <circle cx="85" cy="85" r="1" fill="rgba(219,75,29,1)"/>
-  <circle cx="86" cy="85" r="1" fill="rgba(221,80,32,1)"/>
-  <circle cx="87" cy="85" r="1" fill="rgba(222,85,34,1)"/>
-  <circle cx="88" cy="85" r="1" fill="rgba(224,91,38,1)"/>
-  <circle cx="89" cy="85" r="1" fill="rgba(227,97,42,1)"/>
-  <circle cx="90" cy="85" r="1" fill="rgba(229,102,45,1)"/>
-  <circle cx="91" cy="85" r="1" fill="rgba(231,107,48,1)"/>
-  <circle cx="92" cy="85" r="1" fill="rgba(233,114,53,1)"/>
-  <circle cx="93" cy="85" r="1" fill="rgba(236,121,56,1)"/>
-  <circle cx="94" cy="85" r="1" fill="rgba(237,126,60,1)"/>
-  <circle cx="95" cy="85" r="1" fill="rgba(239,131,64,1)"/>
-  <circle cx="96" cy="85" r="1" fill="rgba(241,136,66,1)"/>
-  <circle cx="97" cy="85" r="1" fill="rgba(241,133,62,1)"/>
-  <circle cx="98" cy="85" r="1" fill="rgba(238,121,53,1)"/>
-  <circle cx="99" cy="85" r="1" fill="rgba(233,105,42,1)"/>
-  <circle cx="100" cy="85" r="1" fill="rgba(100,26,7,0.784314)"/>
-  <circle cx="101" cy="85" r="1" fill="rgba(33,2,0,0.65098)"/>
-  <circle cx="102" cy="85" r="1" fill="rgba(36,3,0,0.560784)"/>
-  <circle cx="103" cy="85" r="1" fill="rgba(21,0,0,0.45098)"/>
-  <circle cx="104" cy="85" r="1" fill="rgba(12,1,0,0.364706)"/>
-  <circle cx="105" cy="85" r="1" fill="rgba(7,1,0,0.290196)"/>
-  <circle cx="106" cy="85" r="1" fill="rgba(0,0,0,0.219608)"/>
-  <circle cx="107" cy="85" r="1" fill="rgba(0,0,0,0.141176)"/>
-  <circle cx="108" cy="85" r="1" fill="rgba(0,0,0,0.0705882)"/>
-  <circle cx="109" cy="85" r="1" fill="rgba(0,0,0,0.0235294)"/>
-  <circle cx="110" cy="85" r="1" fill="none"/>
-  <circle cx="111" cy="85" r="1" fill="none"/>
-  <circle cx="112" cy="85" r="1" fill="none"/>
-  <circle cx="113" cy="85" r="1" fill="none"/>
-  <circle cx="114" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="85" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="86" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="86" r="1" fill="rgba(109,14,2,0)"/>
-  <circle cx="19" cy="86" r="1" fill="rgba(109,14,2,0)"/>
-  <circle cx="20" cy="86" r="1" fill="rgba(109,14,2,0)"/>
-  <circle cx="21" cy="86" r="1" fill="rgba(109,14,2,0)"/>
-  <circle cx="22" cy="86" r="1" fill="rgba(109,14,2,0)"/>
-  <circle cx="23" cy="86" r="1" fill="rgba(109,14,2,0)"/>
-  <circle cx="24" cy="86" r="1" fill="rgba(109,14,2,0)"/>
-  <circle cx="25" cy="86" r="1" fill="rgba(109,14,2,0)"/>
-  <circle cx="26" cy="86" r="1" fill="rgba(109,14,2,0)"/>
-  <circle cx="27" cy="86" r="1" fill="rgba(109,14,2,0)"/>
-  <circle cx="28" cy="86" r="1" fill="rgba(109,14,2,0)"/>
-  <circle cx="29" cy="86" r="1" fill="rgba(103,13,1,0)"/>
-  <circle cx="30" cy="86" r="1" fill="rgba(165,17,1,0.603922)"/>
-  <circle cx="31" cy="86" r="1" fill="rgba(205,24,3,1)"/>
-  <circle cx="32" cy="86" r="1" fill="rgba(202,25,2,1)"/>
-  <circle cx="33" cy="86" r="1" fill="rgba(202,21,2,1)"/>
-  <circle cx="34" cy="86" r="1" fill="rgba(200,19,1,1)"/>
-  <circle cx="35" cy="86" r="1" fill="rgba(201,19,1,1)"/>
-  <circle cx="36" cy="86" r="1" fill="rgba(202,18,1,1)"/>
-  <circle cx="37" cy="86" r="1" fill="rgba(203,19,1,1)"/>
-  <circle cx="38" cy="86" r="1" fill="rgba(202,19,1,1)"/>
-  <circle cx="39" cy="86" r="1" fill="rgba(203,19,1,1)"/>
-  <circle cx="40" cy="86" r="1" fill="rgba(201,19,1,1)"/>
-  <circle cx="41" cy="86" r="1" fill="rgba(113,33,12,1)"/>
-  <circle cx="42" cy="86" r="1" fill="rgba(75,34,14,1)"/>
-  <circle cx="43" cy="86" r="1" fill="rgba(75,30,12,1)"/>
-  <circle cx="44" cy="86" r="1" fill="rgba(70,27,10,1)"/>
-  <circle cx="45" cy="86" r="1" fill="rgba(63,23,8,1)"/>
-  <circle cx="46" cy="86" r="1" fill="rgba(57,20,7,1)"/>
-  <circle cx="47" cy="86" r="1" fill="rgba(50,17,5,1)"/>
-  <circle cx="48" cy="86" r="1" fill="rgba(43,14,4,1)"/>
-  <circle cx="49" cy="86" r="1" fill="rgba(31,10,3,1)"/>
-  <circle cx="50" cy="86" r="1" fill="rgba(37,7,1,1)"/>
-  <circle cx="51" cy="86" r="1" fill="rgba(191,14,1,1)"/>
-  <circle cx="52" cy="86" r="1" fill="rgba(202,14,1,1)"/>
-  <circle cx="53" cy="86" r="1" fill="rgba(199,14,1,1)"/>
-  <circle cx="54" cy="86" r="1" fill="rgba(198,14,1,1)"/>
-  <circle cx="55" cy="86" r="1" fill="rgba(197,14,1,1)"/>
-  <circle cx="56" cy="86" r="1" fill="rgba(197,13,2,1)"/>
-  <circle cx="57" cy="86" r="1" fill="rgba(197,13,2,1)"/>
-  <circle cx="58" cy="86" r="1" fill="rgba(197,13,2,1)"/>
-  <circle cx="59" cy="86" r="1" fill="rgba(197,13,2,1)"/>
-  <circle cx="60" cy="86" r="1" fill="rgba(197,14,3,1)"/>
-  <circle cx="61" cy="86" r="1" fill="rgba(197,15,3,1)"/>
-  <circle cx="62" cy="86" r="1" fill="rgba(196,16,3,1)"/>
-  <circle cx="63" cy="86" r="1" fill="rgba(195,16,3,1)"/>
-  <circle cx="64" cy="86" r="1" fill="rgba(196,14,1,1)"/>
-  <circle cx="65" cy="86" r="1" fill="rgba(153,6,0,1)"/>
-  <circle cx="66" cy="86" r="1" fill="rgba(132,9,1,1)"/>
-  <circle cx="67" cy="86" r="1" fill="rgba(192,17,3,1)"/>
-  <circle cx="68" cy="86" r="1" fill="rgba(190,18,4,1)"/>
-  <circle cx="69" cy="86" r="1" fill="rgba(196,22,5,1)"/>
-  <circle cx="70" cy="86" r="1" fill="rgba(200,26,6,1)"/>
-  <circle cx="71" cy="86" r="1" fill="rgba(203,29,8,1)"/>
-  <circle cx="72" cy="86" r="1" fill="rgba(204,32,9,1)"/>
-  <circle cx="73" cy="86" r="1" fill="rgba(205,35,10,1)"/>
-  <circle cx="74" cy="86" r="1" fill="rgba(210,38,11,1)"/>
-  <circle cx="75" cy="86" r="1" fill="rgba(155,35,11,1)"/>
-  <circle cx="76" cy="86" r="1" fill="rgba(78,34,14,1)"/>
-  <circle cx="77" cy="86" r="1" fill="rgba(88,43,20,1)"/>
-  <circle cx="78" cy="86" r="1" fill="rgba(105,52,27,1)"/>
-  <circle cx="79" cy="86" r="1" fill="rgba(117,61,33,1)"/>
-  <circle cx="80" cy="86" r="1" fill="rgba(134,69,38,1)"/>
-  <circle cx="81" cy="86" r="1" fill="rgba(188,66,28,1)"/>
-  <circle cx="82" cy="86" r="1" fill="rgba(218,65,22,1)"/>
-  <circle cx="83" cy="86" r="1" fill="rgba(217,69,26,1)"/>
-  <circle cx="84" cy="86" r="1" fill="rgba(218,73,28,1)"/>
-  <circle cx="85" cy="86" r="1" fill="rgba(221,78,30,1)"/>
-  <circle cx="86" cy="86" r="1" fill="rgba(222,83,33,1)"/>
-  <circle cx="87" cy="86" r="1" fill="rgba(224,89,37,1)"/>
-  <circle cx="88" cy="86" r="1" fill="rgba(227,95,40,1)"/>
-  <circle cx="89" cy="86" r="1" fill="rgba(228,100,43,1)"/>
-  <circle cx="90" cy="86" r="1" fill="rgba(230,105,48,1)"/>
-  <circle cx="91" cy="86" r="1" fill="rgba(232,111,51,1)"/>
-  <circle cx="92" cy="86" r="1" fill="rgba(234,118,56,1)"/>
-  <circle cx="93" cy="86" r="1" fill="rgba(236,124,59,1)"/>
-  <circle cx="94" cy="86" r="1" fill="rgba(238,129,62,1)"/>
-  <circle cx="95" cy="86" r="1" fill="rgba(240,134,65,1)"/>
-  <circle cx="96" cy="86" r="1" fill="rgba(241,136,65,1)"/>
-  <circle cx="97" cy="86" r="1" fill="rgba(239,128,59,1)"/>
-  <circle cx="98" cy="86" r="1" fill="rgba(242,120,51,1)"/>
-  <circle cx="99" cy="86" r="1" fill="rgba(197,81,30,0.933333)"/>
-  <circle cx="100" cy="86" r="1" fill="rgba(46,6,1,0.705882)"/>
-  <circle cx="101" cy="86" r="1" fill="rgba(40,4,1,0.627451)"/>
-  <circle cx="102" cy="86" r="1" fill="rgba(31,2,0,0.521569)"/>
-  <circle cx="103" cy="86" r="1" fill="rgba(19,0,0,0.419608)"/>
-  <circle cx="104" cy="86" r="1" fill="rgba(15,2,0,0.337255)"/>
-  <circle cx="105" cy="86" r="1" fill="rgba(7,1,0,0.266667)"/>
-  <circle cx="106" cy="86" r="1" fill="rgba(0,0,0,0.188235)"/>
-  <circle cx="107" cy="86" r="1" fill="rgba(0,0,0,0.113725)"/>
-  <circle cx="108" cy="86" r="1" fill="rgba(0,0,0,0.0509804)"/>
-  <circle cx="109" cy="86" r="1" fill="rgba(0,0,0,0.0117647)"/>
-  <circle cx="110" cy="86" r="1" fill="none"/>
-  <circle cx="111" cy="86" r="1" fill="none"/>
-  <circle cx="112" cy="86" r="1" fill="none"/>
-  <circle cx="113" cy="86" r="1" fill="none"/>
-  <circle cx="114" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="86" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="87" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="87" r="1" fill="rgba(111,13,1,0)"/>
-  <circle cx="19" cy="87" r="1" fill="rgba(111,13,1,0)"/>
-  <circle cx="20" cy="87" r="1" fill="rgba(111,13,1,0)"/>
-  <circle cx="21" cy="87" r="1" fill="rgba(111,13,1,0)"/>
-  <circle cx="22" cy="87" r="1" fill="rgba(111,13,1,0)"/>
-  <circle cx="23" cy="87" r="1" fill="rgba(111,13,1,0)"/>
-  <circle cx="24" cy="87" r="1" fill="rgba(111,13,1,0)"/>
-  <circle cx="25" cy="87" r="1" fill="rgba(111,13,1,0)"/>
-  <circle cx="26" cy="87" r="1" fill="rgba(111,13,1,0)"/>
-  <circle cx="27" cy="87" r="1" fill="rgba(111,13,1,0)"/>
-  <circle cx="28" cy="87" r="1" fill="rgba(111,13,1,0)"/>
-  <circle cx="29" cy="87" r="1" fill="rgba(107,12,1,0)"/>
-  <circle cx="30" cy="87" r="1" fill="rgba(122,11,0,0.262745)"/>
-  <circle cx="31" cy="87" r="1" fill="rgba(193,18,2,0.984314)"/>
-  <circle cx="32" cy="87" r="1" fill="rgba(197,19,2,1)"/>
-  <circle cx="33" cy="87" r="1" fill="rgba(198,18,2,1)"/>
-  <circle cx="34" cy="87" r="1" fill="rgba(198,18,1,1)"/>
-  <circle cx="35" cy="87" r="1" fill="rgba(199,18,1,1)"/>
-  <circle cx="36" cy="87" r="1" fill="rgba(200,18,1,1)"/>
-  <circle cx="37" cy="87" r="1" fill="rgba(200,17,1,1)"/>
-  <circle cx="38" cy="87" r="1" fill="rgba(201,18,1,1)"/>
-  <circle cx="39" cy="87" r="1" fill="rgba(200,18,1,1)"/>
-  <circle cx="40" cy="87" r="1" fill="rgba(206,16,1,1)"/>
-  <circle cx="41" cy="87" r="1" fill="rgba(157,25,6,1)"/>
-  <circle cx="42" cy="87" r="1" fill="rgba(73,35,15,1)"/>
-  <circle cx="43" cy="87" r="1" fill="rgba(75,30,12,1)"/>
-  <circle cx="44" cy="87" r="1" fill="rgba(70,27,10,1)"/>
-  <circle cx="45" cy="87" r="1" fill="rgba(63,23,8,1)"/>
-  <circle cx="46" cy="87" r="1" fill="rgba(57,20,7,1)"/>
-  <circle cx="47" cy="87" r="1" fill="rgba(50,17,5,1)"/>
-  <circle cx="48" cy="87" r="1" fill="rgba(43,14,3,1)"/>
-  <circle cx="49" cy="87" r="1" fill="rgba(19,10,2,1)"/>
-  <circle cx="50" cy="87" r="1" fill="rgba(78,8,1,1)"/>
-  <circle cx="51" cy="87" r="1" fill="rgba(198,14,1,1)"/>
-  <circle cx="52" cy="87" r="1" fill="rgba(200,14,1,1)"/>
-  <circle cx="53" cy="87" r="1" fill="rgba(197,14,2,1)"/>
-  <circle cx="54" cy="87" r="1" fill="rgba(196,13,2,1)"/>
-  <circle cx="55" cy="87" r="1" fill="rgba(196,13,2,1)"/>
-  <circle cx="56" cy="87" r="1" fill="rgba(196,13,2,1)"/>
-  <circle cx="57" cy="87" r="1" fill="rgba(196,13,2,1)"/>
-  <circle cx="58" cy="87" r="1" fill="rgba(196,14,3,1)"/>
-  <circle cx="59" cy="87" r="1" fill="rgba(197,15,3,1)"/>
-  <circle cx="60" cy="87" r="1" fill="rgba(198,16,3,1)"/>
-  <circle cx="61" cy="87" r="1" fill="rgba(199,17,3,1)"/>
-  <circle cx="62" cy="87" r="1" fill="rgba(198,18,4,1)"/>
-  <circle cx="63" cy="87" r="1" fill="rgba(196,17,4,1)"/>
-  <circle cx="64" cy="87" r="1" fill="rgba(195,14,1,1)"/>
-  <circle cx="65" cy="87" r="1" fill="rgba(152,6,0,1)"/>
-  <circle cx="66" cy="87" r="1" fill="rgba(133,11,2,1)"/>
-  <circle cx="67" cy="87" r="1" fill="rgba(192,18,4,1)"/>
-  <circle cx="68" cy="87" r="1" fill="rgba(192,21,4,1)"/>
-  <circle cx="69" cy="87" r="1" fill="rgba(196,25,6,1)"/>
-  <circle cx="70" cy="87" r="1" fill="rgba(200,28,8,1)"/>
-  <circle cx="71" cy="87" r="1" fill="rgba(203,32,9,1)"/>
-  <circle cx="72" cy="87" r="1" fill="rgba(204,35,10,1)"/>
-  <circle cx="73" cy="87" r="1" fill="rgba(205,38,11,1)"/>
-  <circle cx="74" cy="87" r="1" fill="rgba(207,40,12,1)"/>
-  <circle cx="75" cy="87" r="1" fill="rgba(211,44,13,1)"/>
-  <circle cx="76" cy="87" r="1" fill="rgba(176,44,15,1)"/>
-  <circle cx="77" cy="87" r="1" fill="rgba(148,48,20,1)"/>
-  <circle cx="78" cy="87" r="1" fill="rgba(156,55,24,1)"/>
-  <circle cx="79" cy="87" r="1" fill="rgba(168,61,28,1)"/>
-  <circle cx="80" cy="87" r="1" fill="rgba(197,63,25,1)"/>
-  <circle cx="81" cy="87" r="1" fill="rgba(217,64,22,1)"/>
-  <circle cx="82" cy="87" r="1" fill="rgba(216,68,25,1)"/>
-  <circle cx="83" cy="87" r="1" fill="rgba(218,72,27,1)"/>
-  <circle cx="84" cy="87" r="1" fill="rgba(220,77,30,1)"/>
-  <circle cx="85" cy="87" r="1" fill="rgba(221,82,33,1)"/>
-  <circle cx="86" cy="87" r="1" fill="rgba(223,87,36,1)"/>
-  <circle cx="87" cy="87" r="1" fill="rgba(225,93,39,1)"/>
-  <circle cx="88" cy="87" r="1" fill="rgba(227,98,42,1)"/>
-  <circle cx="89" cy="87" r="1" fill="rgba(229,103,45,1)"/>
-  <circle cx="90" cy="87" r="1" fill="rgba(231,109,50,1)"/>
-  <circle cx="91" cy="87" r="1" fill="rgba(234,115,54,1)"/>
-  <circle cx="92" cy="87" r="1" fill="rgba(236,122,57,1)"/>
-  <circle cx="93" cy="87" r="1" fill="rgba(237,127,61,1)"/>
-  <circle cx="94" cy="87" r="1" fill="rgba(239,132,64,1)"/>
-  <circle cx="95" cy="87" r="1" fill="rgba(241,136,66,1)"/>
-  <circle cx="96" cy="87" r="1" fill="rgba(241,133,63,1)"/>
-  <circle cx="97" cy="87" r="1" fill="rgba(239,123,56,1)"/>
-  <circle cx="98" cy="87" r="1" fill="rgba(241,116,48,1)"/>
-  <circle cx="99" cy="87" r="1" fill="rgba(127,41,13,0.819608)"/>
-  <circle cx="100" cy="87" r="1" fill="rgba(31,1,0,0.666667)"/>
-  <circle cx="101" cy="87" r="1" fill="rgba(39,5,0,0.588235)"/>
-  <circle cx="102" cy="87" r="1" fill="rgba(26,1,0,0.482353)"/>
-  <circle cx="103" cy="87" r="1" fill="rgba(19,1,0,0.384314)"/>
-  <circle cx="104" cy="87" r="1" fill="rgba(15,2,0,0.309804)"/>
-  <circle cx="105" cy="87" r="1" fill="rgba(10,0,0,0.235294)"/>
-  <circle cx="106" cy="87" r="1" fill="rgba(0,0,0,0.156863)"/>
-  <circle cx="107" cy="87" r="1" fill="rgba(0,0,0,0.0901961)"/>
-  <circle cx="108" cy="87" r="1" fill="rgba(0,0,0,0.0352941)"/>
-  <circle cx="109" cy="87" r="1" fill="rgba(0,0,0,0.00392157)"/>
-  <circle cx="110" cy="87" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="111" cy="87" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="112" cy="87" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="113" cy="87" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="114" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="87" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="88" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="88" r="1" fill="rgba(110,11,1,0)"/>
-  <circle cx="19" cy="88" r="1" fill="rgba(110,11,1,0)"/>
-  <circle cx="20" cy="88" r="1" fill="rgba(110,11,1,0)"/>
-  <circle cx="21" cy="88" r="1" fill="rgba(110,11,1,0)"/>
-  <circle cx="22" cy="88" r="1" fill="rgba(110,11,1,0)"/>
-  <circle cx="23" cy="88" r="1" fill="rgba(110,11,1,0)"/>
-  <circle cx="24" cy="88" r="1" fill="rgba(110,11,1,0)"/>
-  <circle cx="25" cy="88" r="1" fill="rgba(110,11,1,0)"/>
-  <circle cx="26" cy="88" r="1" fill="rgba(110,11,1,0)"/>
-  <circle cx="27" cy="88" r="1" fill="rgba(110,11,1,0)"/>
-  <circle cx="28" cy="88" r="1" fill="rgba(110,11,1,0)"/>
-  <circle cx="29" cy="88" r="1" fill="rgba(110,11,1,0)"/>
-  <circle cx="30" cy="88" r="1" fill="rgba(101,10,0,0.0509804)"/>
-  <circle cx="31" cy="88" r="1" fill="rgba(162,13,1,0.74902)"/>
-  <circle cx="32" cy="88" r="1" fill="rgba(197,16,1,1)"/>
-  <circle cx="33" cy="88" r="1" fill="rgba(194,16,2,1)"/>
-  <circle cx="34" cy="88" r="1" fill="rgba(196,17,2,1)"/>
-  <circle cx="35" cy="88" r="1" fill="rgba(197,17,2,1)"/>
-  <circle cx="36" cy="88" r="1" fill="rgba(197,17,2,1)"/>
-  <circle cx="37" cy="88" r="1" fill="rgba(198,17,1,1)"/>
-  <circle cx="38" cy="88" r="1" fill="rgba(200,17,1,1)"/>
-  <circle cx="39" cy="88" r="1" fill="rgba(199,17,1,1)"/>
-  <circle cx="40" cy="88" r="1" fill="rgba(200,17,1,1)"/>
-  <circle cx="41" cy="88" r="1" fill="rgba(198,16,2,1)"/>
-  <circle cx="42" cy="88" r="1" fill="rgba(119,28,10,1)"/>
-  <circle cx="43" cy="88" r="1" fill="rgba(64,32,13,1)"/>
-  <circle cx="44" cy="88" r="1" fill="rgba(68,27,10,1)"/>
-  <circle cx="45" cy="88" r="1" fill="rgba(62,23,8,1)"/>
-  <circle cx="46" cy="88" r="1" fill="rgba(55,20,7,1)"/>
-  <circle cx="47" cy="88" r="1" fill="rgba(46,17,5,1)"/>
-  <circle cx="48" cy="88" r="1" fill="rgba(26,13,4,1)"/>
-  <circle cx="49" cy="88" r="1" fill="rgba(50,11,2,1)"/>
-  <circle cx="50" cy="88" r="1" fill="rgba(168,13,2,1)"/>
-  <circle cx="51" cy="88" r="1" fill="rgba(202,14,2,1)"/>
-  <circle cx="52" cy="88" r="1" fill="rgba(196,13,2,1)"/>
-  <circle cx="53" cy="88" r="1" fill="rgba(196,13,2,1)"/>
-  <circle cx="54" cy="88" r="1" fill="rgba(196,13,2,1)"/>
-  <circle cx="55" cy="88" r="1" fill="rgba(196,13,3,1)"/>
-  <circle cx="56" cy="88" r="1" fill="rgba(196,13,3,1)"/>
-  <circle cx="57" cy="88" r="1" fill="rgba(196,15,3,1)"/>
-  <circle cx="58" cy="88" r="1" fill="rgba(197,17,3,1)"/>
-  <circle cx="59" cy="88" r="1" fill="rgba(197,17,3,1)"/>
-  <circle cx="60" cy="88" r="1" fill="rgba(198,18,3,1)"/>
-  <circle cx="61" cy="88" r="1" fill="rgba(198,19,4,1)"/>
-  <circle cx="62" cy="88" r="1" fill="rgba(198,19,4,1)"/>
-  <circle cx="63" cy="88" r="1" fill="rgba(196,19,4,1)"/>
-  <circle cx="64" cy="88" r="1" fill="rgba(194,15,2,1)"/>
-  <circle cx="65" cy="88" r="1" fill="rgba(149,5,0,1)"/>
-  <circle cx="66" cy="88" r="1" fill="rgba(131,11,2,1)"/>
-  <circle cx="67" cy="88" r="1" fill="rgba(191,19,4,1)"/>
-  <circle cx="68" cy="88" r="1" fill="rgba(191,22,5,1)"/>
-  <circle cx="69" cy="88" r="1" fill="rgba(196,26,7,1)"/>
-  <circle cx="70" cy="88" r="1" fill="rgba(200,31,8,1)"/>
-  <circle cx="71" cy="88" r="1" fill="rgba(203,35,10,1)"/>
-  <circle cx="72" cy="88" r="1" fill="rgba(206,38,11,1)"/>
-  <circle cx="73" cy="88" r="1" fill="rgba(206,40,13,1)"/>
-  <circle cx="74" cy="88" r="1" fill="rgba(207,42,14,1)"/>
-  <circle cx="75" cy="88" r="1" fill="rgba(208,46,14,1)"/>
-  <circle cx="76" cy="88" r="1" fill="rgba(214,48,16,1)"/>
-  <circle cx="77" cy="88" r="1" fill="rgba(215,52,17,1)"/>
-  <circle cx="78" cy="88" r="1" fill="rgba(215,55,19,1)"/>
-  <circle cx="79" cy="88" r="1" fill="rgba(217,59,20,1)"/>
-  <circle cx="80" cy="88" r="1" fill="rgba(217,62,22,1)"/>
-  <circle cx="81" cy="88" r="1" fill="rgba(216,67,24,1)"/>
-  <circle cx="82" cy="88" r="1" fill="rgba(217,71,27,1)"/>
-  <circle cx="83" cy="88" r="1" fill="rgba(219,76,29,1)"/>
-  <circle cx="84" cy="88" r="1" fill="rgba(221,81,32,1)"/>
-  <circle cx="85" cy="88" r="1" fill="rgba(222,86,35,1)"/>
-  <circle cx="86" cy="88" r="1" fill="rgba(225,91,38,1)"/>
-  <circle cx="87" cy="88" r="1" fill="rgba(227,96,41,1)"/>
-  <circle cx="88" cy="88" r="1" fill="rgba(228,101,44,1)"/>
-  <circle cx="89" cy="88" r="1" fill="rgba(231,107,48,1)"/>
-  <circle cx="90" cy="88" r="1" fill="rgba(233,113,52,1)"/>
-  <circle cx="91" cy="88" r="1" fill="rgba(236,119,56,1)"/>
-  <circle cx="92" cy="88" r="1" fill="rgba(236,125,59,1)"/>
-  <circle cx="93" cy="88" r="1" fill="rgba(238,129,62,1)"/>
-  <circle cx="94" cy="88" r="1" fill="rgba(241,134,65,1)"/>
-  <circle cx="95" cy="88" r="1" fill="rgba(241,135,65,1)"/>
-  <circle cx="96" cy="88" r="1" fill="rgba(239,127,59,1)"/>
-  <circle cx="97" cy="88" r="1" fill="rgba(242,121,53,1)"/>
-  <circle cx="98" cy="88" r="1" fill="rgba(211,95,37,0.956863)"/>
-  <circle cx="99" cy="88" r="1" fill="rgba(58,10,2,0.721569)"/>
-  <circle cx="100" cy="88" r="1" fill="rgba(40,5,1,0.643137)"/>
-  <circle cx="101" cy="88" r="1" fill="rgba(34,3,0,0.545098)"/>
-  <circle cx="102" cy="88" r="1" fill="rgba(22,1,0,0.439216)"/>
-  <circle cx="103" cy="88" r="1" fill="rgba(19,2,0,0.34902)"/>
-  <circle cx="104" cy="88" r="1" fill="rgba(17,3,0,0.27451)"/>
-  <circle cx="105" cy="88" r="1" fill="rgba(7,0,0,0.203922)"/>
-  <circle cx="106" cy="88" r="1" fill="rgba(0,0,0,0.12549)"/>
-  <circle cx="107" cy="88" r="1" fill="rgba(0,0,0,0.0627451)"/>
-  <circle cx="108" cy="88" r="1" fill="rgba(0,0,0,0.0196078)"/>
-  <circle cx="109" cy="88" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="110" cy="88" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="111" cy="88" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="112" cy="88" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="113" cy="88" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="114" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="88" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="89" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="89" r="1" fill="rgba(106,9,0,0)"/>
-  <circle cx="19" cy="89" r="1" fill="rgba(106,9,0,0)"/>
-  <circle cx="20" cy="89" r="1" fill="rgba(106,9,0,0)"/>
-  <circle cx="21" cy="89" r="1" fill="rgba(106,9,0,0)"/>
-  <circle cx="22" cy="89" r="1" fill="rgba(106,9,0,0)"/>
-  <circle cx="23" cy="89" r="1" fill="rgba(106,9,0,0)"/>
-  <circle cx="24" cy="89" r="1" fill="rgba(106,9,0,0)"/>
-  <circle cx="25" cy="89" r="1" fill="rgba(106,9,0,0)"/>
-  <circle cx="26" cy="89" r="1" fill="rgba(106,9,0,0)"/>
-  <circle cx="27" cy="89" r="1" fill="rgba(106,9,0,0)"/>
-  <circle cx="28" cy="89" r="1" fill="rgba(106,9,0,0)"/>
-  <circle cx="29" cy="89" r="1" fill="rgba(106,9,0,0)"/>
-  <circle cx="30" cy="89" r="1" fill="rgba(100,9,0,0)"/>
-  <circle cx="31" cy="89" r="1" fill="rgba(110,8,0,0.407843)"/>
-  <circle cx="32" cy="89" r="1" fill="rgba(188,15,2,0.992157)"/>
-  <circle cx="33" cy="89" r="1" fill="rgba(192,16,2,1)"/>
-  <circle cx="34" cy="89" r="1" fill="rgba(192,15,2,1)"/>
-  <circle cx="35" cy="89" r="1" fill="rgba(195,16,2,1)"/>
-  <circle cx="36" cy="89" r="1" fill="rgba(196,16,2,1)"/>
-  <circle cx="37" cy="89" r="1" fill="rgba(197,16,2,1)"/>
-  <circle cx="38" cy="89" r="1" fill="rgba(197,17,2,1)"/>
-  <circle cx="39" cy="89" r="1" fill="rgba(198,17,2,1)"/>
-  <circle cx="40" cy="89" r="1" fill="rgba(197,16,2,1)"/>
-  <circle cx="41" cy="89" r="1" fill="rgba(200,16,1,1)"/>
-  <circle cx="42" cy="89" r="1" fill="rgba(193,16,2,1)"/>
-  <circle cx="43" cy="89" r="1" fill="rgba(125,24,8,1)"/>
-  <circle cx="44" cy="89" r="1" fill="rgba(71,27,10,1)"/>
-  <circle cx="45" cy="89" r="1" fill="rgba(61,23,8,1)"/>
-  <circle cx="46" cy="89" r="1" fill="rgba(55,20,6,1)"/>
-  <circle cx="47" cy="89" r="1" fill="rgba(62,16,5,1)"/>
-  <circle cx="48" cy="89" r="1" fill="rgba(106,13,3,1)"/>
-  <circle cx="49" cy="89" r="1" fill="rgba(177,13,2,1)"/>
-  <circle cx="50" cy="89" r="1" fill="rgba(202,14,2,1)"/>
-  <circle cx="51" cy="89" r="1" fill="rgba(196,14,3,1)"/>
-  <circle cx="52" cy="89" r="1" fill="rgba(196,13,3,1)"/>
-  <circle cx="53" cy="89" r="1" fill="rgba(196,14,3,1)"/>
-  <circle cx="54" cy="89" r="1" fill="rgba(196,14,3,1)"/>
-  <circle cx="55" cy="89" r="1" fill="rgba(197,15,3,1)"/>
-  <circle cx="56" cy="89" r="1" fill="rgba(197,15,3,1)"/>
-  <circle cx="57" cy="89" r="1" fill="rgba(198,18,3,1)"/>
-  <circle cx="58" cy="89" r="1" fill="rgba(198,18,4,1)"/>
-  <circle cx="59" cy="89" r="1" fill="rgba(198,18,4,1)"/>
-  <circle cx="60" cy="89" r="1" fill="rgba(198,19,4,1)"/>
-  <circle cx="61" cy="89" r="1" fill="rgba(199,21,4,1)"/>
-  <circle cx="62" cy="89" r="1" fill="rgba(197,21,5,1)"/>
-  <circle cx="63" cy="89" r="1" fill="rgba(196,21,4,1)"/>
-  <circle cx="64" cy="89" r="1" fill="rgba(193,15,2,1)"/>
-  <circle cx="65" cy="89" r="1" fill="rgba(147,4,0,1)"/>
-  <circle cx="66" cy="89" r="1" fill="rgba(130,12,2,1)"/>
-  <circle cx="67" cy="89" r="1" fill="rgba(190,20,4,1)"/>
-  <circle cx="68" cy="89" r="1" fill="rgba(190,22,5,1)"/>
-  <circle cx="69" cy="89" r="1" fill="rgba(196,28,7,1)"/>
-  <circle cx="70" cy="89" r="1" fill="rgba(201,33,9,1)"/>
-  <circle cx="71" cy="89" r="1" fill="rgba(204,37,11,1)"/>
-  <circle cx="72" cy="89" r="1" fill="rgba(206,40,12,1)"/>
-  <circle cx="73" cy="89" r="1" fill="rgba(207,42,13,1)"/>
-  <circle cx="74" cy="89" r="1" fill="rgba(208,45,14,1)"/>
-  <circle cx="75" cy="89" r="1" fill="rgba(209,48,16,1)"/>
-  <circle cx="76" cy="89" r="1" fill="rgba(210,51,17,1)"/>
-  <circle cx="77" cy="89" r="1" fill="rgba(212,55,18,1)"/>
-  <circle cx="78" cy="89" r="1" fill="rgba(213,59,20,1)"/>
-  <circle cx="79" cy="89" r="1" fill="rgba(214,62,22,1)"/>
-  <circle cx="80" cy="89" r="1" fill="rgba(215,67,24,1)"/>
-  <circle cx="81" cy="89" r="1" fill="rgba(217,70,27,1)"/>
-  <circle cx="82" cy="89" r="1" fill="rgba(219,75,28,1)"/>
-  <circle cx="83" cy="89" r="1" fill="rgba(221,79,31,1)"/>
-  <circle cx="84" cy="89" r="1" fill="rgba(222,85,34,1)"/>
-  <circle cx="85" cy="89" r="1" fill="rgba(224,89,37,1)"/>
-  <circle cx="86" cy="89" r="1" fill="rgba(226,94,40,1)"/>
-  <circle cx="87" cy="89" r="1" fill="rgba(228,100,43,1)"/>
-  <circle cx="88" cy="89" r="1" fill="rgba(230,106,47,1)"/>
-  <circle cx="89" cy="89" r="1" fill="rgba(233,111,51,1)"/>
-  <circle cx="90" cy="89" r="1" fill="rgba(235,117,55,1)"/>
-  <circle cx="91" cy="89" r="1" fill="rgba(236,122,58,1)"/>
-  <circle cx="92" cy="89" r="1" fill="rgba(238,127,61,1)"/>
-  <circle cx="93" cy="89" r="1" fill="rgba(240,132,63,1)"/>
-  <circle cx="94" cy="89" r="1" fill="rgba(241,134,64,1)"/>
-  <circle cx="95" cy="89" r="1" fill="rgba(240,130,60,1)"/>
-  <circle cx="96" cy="89" r="1" fill="rgba(238,122,55,1)"/>
-  <circle cx="97" cy="89" r="1" fill="rgba(244,119,52,1)"/>
-  <circle cx="98" cy="89" r="1" fill="rgba(138,49,16,0.835294)"/>
-  <circle cx="99" cy="89" r="1" fill="rgba(31,0,0,0.670588)"/>
-  <circle cx="100" cy="89" r="1" fill="rgba(42,5,0,0.603922)"/>
-  <circle cx="101" cy="89" r="1" fill="rgba(29,1,0,0.498039)"/>
-  <circle cx="102" cy="89" r="1" fill="rgba(21,1,0,0.4)"/>
-  <circle cx="103" cy="89" r="1" fill="rgba(21,4,0,0.317647)"/>
-  <circle cx="104" cy="89" r="1" fill="rgba(19,4,0,0.243137)"/>
-  <circle cx="105" cy="89" r="1" fill="rgba(4,0,0,0.164706)"/>
-  <circle cx="106" cy="89" r="1" fill="rgba(0,0,0,0.0941176)"/>
-  <circle cx="107" cy="89" r="1" fill="rgba(7,0,0,0.0431373)"/>
-  <circle cx="108" cy="89" r="1" fill="rgba(0,0,0,0.00784314)"/>
-  <circle cx="109" cy="89" r="1" fill="rgba(4,1,0,0)"/>
-  <circle cx="110" cy="89" r="1" fill="rgba(4,1,0,0)"/>
-  <circle cx="111" cy="89" r="1" fill="rgba(4,1,0,0)"/>
-  <circle cx="112" cy="89" r="1" fill="rgba(4,1,0,0)"/>
-  <circle cx="113" cy="89" r="1" fill="rgba(4,1,0,0)"/>
-  <circle cx="114" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="89" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="90" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="90" r="1" fill="rgba(105,9,0,0)"/>
-  <circle cx="19" cy="90" r="1" fill="rgba(105,9,0,0)"/>
-  <circle cx="20" cy="90" r="1" fill="rgba(105,9,0,0)"/>
-  <circle cx="21" cy="90" r="1" fill="rgba(105,9,0,0)"/>
-  <circle cx="22" cy="90" r="1" fill="rgba(105,9,0,0)"/>
-  <circle cx="23" cy="90" r="1" fill="rgba(105,9,0,0)"/>
-  <circle cx="24" cy="90" r="1" fill="rgba(105,9,0,0)"/>
-  <circle cx="25" cy="90" r="1" fill="rgba(105,9,0,0)"/>
-  <circle cx="26" cy="90" r="1" fill="rgba(105,9,0,0)"/>
-  <circle cx="27" cy="90" r="1" fill="rgba(105,9,0,0)"/>
-  <circle cx="28" cy="90" r="1" fill="rgba(105,9,0,0)"/>
-  <circle cx="29" cy="90" r="1" fill="rgba(105,9,0,0)"/>
-  <circle cx="30" cy="90" r="1" fill="rgba(106,9,0,0)"/>
-  <circle cx="31" cy="90" r="1" fill="rgba(86,6,0,0.156863)"/>
-  <circle cx="32" cy="90" r="1" fill="rgba(149,11,1,0.792157)"/>
-  <circle cx="33" cy="90" r="1" fill="rgba(192,15,3,1)"/>
-  <circle cx="34" cy="90" r="1" fill="rgba(189,14,2,1)"/>
-  <circle cx="35" cy="90" r="1" fill="rgba(192,15,2,1)"/>
-  <circle cx="36" cy="90" r="1" fill="rgba(194,16,3,1)"/>
-  <circle cx="37" cy="90" r="1" fill="rgba(196,16,3,1)"/>
-  <circle cx="38" cy="90" r="1" fill="rgba(195,15,3,1)"/>
-  <circle cx="39" cy="90" r="1" fill="rgba(196,15,2,1)"/>
-  <circle cx="40" cy="90" r="1" fill="rgba(196,15,2,1)"/>
-  <circle cx="41" cy="90" r="1" fill="rgba(196,15,2,1)"/>
-  <circle cx="42" cy="90" r="1" fill="rgba(198,15,2,1)"/>
-  <circle cx="43" cy="90" r="1" fill="rgba(199,14,2,1)"/>
-  <circle cx="44" cy="90" r="1" fill="rgba(175,16,3,1)"/>
-  <circle cx="45" cy="90" r="1" fill="rgba(162,16,4,1)"/>
-  <circle cx="46" cy="90" r="1" fill="rgba(163,15,3,1)"/>
-  <circle cx="47" cy="90" r="1" fill="rgba(183,14,3,1)"/>
-  <circle cx="48" cy="90" r="1" fill="rgba(200,14,3,1)"/>
-  <circle cx="49" cy="90" r="1" fill="rgba(200,14,3,1)"/>
-  <circle cx="50" cy="90" r="1" fill="rgba(196,14,3,1)"/>
-  <circle cx="51" cy="90" r="1" fill="rgba(196,16,3,1)"/>
-  <circle cx="52" cy="90" r="1" fill="rgba(197,16,3,1)"/>
-  <circle cx="53" cy="90" r="1" fill="rgba(197,16,3,1)"/>
-  <circle cx="54" cy="90" r="1" fill="rgba(197,17,3,1)"/>
-  <circle cx="55" cy="90" r="1" fill="rgba(197,18,4,1)"/>
-  <circle cx="56" cy="90" r="1" fill="rgba(198,17,4,1)"/>
-  <circle cx="57" cy="90" r="1" fill="rgba(199,20,4,1)"/>
-  <circle cx="58" cy="90" r="1" fill="rgba(199,19,4,1)"/>
-  <circle cx="59" cy="90" r="1" fill="rgba(199,20,4,1)"/>
-  <circle cx="60" cy="90" r="1" fill="rgba(200,22,5,1)"/>
-  <circle cx="61" cy="90" r="1" fill="rgba(200,23,6,1)"/>
-  <circle cx="62" cy="90" r="1" fill="rgba(198,24,6,1)"/>
-  <circle cx="63" cy="90" r="1" fill="rgba(196,23,5,1)"/>
-  <circle cx="64" cy="90" r="1" fill="rgba(192,15,2,1)"/>
-  <circle cx="65" cy="90" r="1" fill="rgba(144,4,0,1)"/>
-  <circle cx="66" cy="90" r="1" fill="rgba(130,13,2,1)"/>
-  <circle cx="67" cy="90" r="1" fill="rgba(189,21,4,1)"/>
-  <circle cx="68" cy="90" r="1" fill="rgba(189,24,6,1)"/>
-  <circle cx="69" cy="90" r="1" fill="rgba(197,30,8,1)"/>
-  <circle cx="70" cy="90" r="1" fill="rgba(202,35,10,1)"/>
-  <circle cx="71" cy="90" r="1" fill="rgba(206,40,12,1)"/>
-  <circle cx="72" cy="90" r="1" fill="rgba(207,43,13,1)"/>
-  <circle cx="73" cy="90" r="1" fill="rgba(208,46,14,1)"/>
-  <circle cx="74" cy="90" r="1" fill="rgba(210,48,15,1)"/>
-  <circle cx="75" cy="90" r="1" fill="rgba(210,51,17,1)"/>
-  <circle cx="76" cy="90" r="1" fill="rgba(211,55,19,1)"/>
-  <circle cx="77" cy="90" r="1" fill="rgba(212,59,20,1)"/>
-  <circle cx="78" cy="90" r="1" fill="rgba(214,62,22,1)"/>
-  <circle cx="79" cy="90" r="1" fill="rgba(216,66,24,1)"/>
-  <circle cx="80" cy="90" r="1" fill="rgba(217,70,27,1)"/>
-  <circle cx="81" cy="90" r="1" fill="rgba(218,74,28,1)"/>
-  <circle cx="82" cy="90" r="1" fill="rgba(221,79,31,1)"/>
-  <circle cx="83" cy="90" r="1" fill="rgba(222,84,33,1)"/>
-  <circle cx="84" cy="90" r="1" fill="rgba(224,88,36,1)"/>
-  <circle cx="85" cy="90" r="1" fill="rgba(226,93,39,1)"/>
-  <circle cx="86" cy="90" r="1" fill="rgba(227,99,42,1)"/>
-  <circle cx="87" cy="90" r="1" fill="rgba(230,104,46,1)"/>
-  <circle cx="88" cy="90" r="1" fill="rgba(232,109,49,1)"/>
-  <circle cx="89" cy="90" r="1" fill="rgba(234,115,54,1)"/>
-  <circle cx="90" cy="90" r="1" fill="rgba(236,121,56,1)"/>
-  <circle cx="91" cy="90" r="1" fill="rgba(237,125,60,1)"/>
-  <circle cx="92" cy="90" r="1" fill="rgba(238,129,62,1)"/>
-  <circle cx="93" cy="90" r="1" fill="rgba(240,133,63,1)"/>
-  <circle cx="94" cy="90" r="1" fill="rgba(240,131,61,1)"/>
-  <circle cx="95" cy="90" r="1" fill="rgba(238,123,55,1)"/>
-  <circle cx="96" cy="90" r="1" fill="rgba(242,121,52,1)"/>
-  <circle cx="97" cy="90" r="1" fill="rgba(207,92,37,0.94902)"/>
-  <circle cx="98" cy="90" r="1" fill="rgba(57,10,2,0.717647)"/>
-  <circle cx="99" cy="90" r="1" fill="rgba(40,4,0,0.647059)"/>
-  <circle cx="100" cy="90" r="1" fill="rgba(36,4,0,0.552941)"/>
-  <circle cx="101" cy="90" r="1" fill="rgba(24,1,0,0.447059)"/>
-  <circle cx="102" cy="90" r="1" fill="rgba(21,2,0,0.360784)"/>
-  <circle cx="103" cy="90" r="1" fill="rgba(22,5,0,0.282353)"/>
-  <circle cx="104" cy="90" r="1" fill="rgba(21,3,0,0.207843)"/>
-  <circle cx="105" cy="90" r="1" fill="rgba(7,0,0,0.129412)"/>
-  <circle cx="106" cy="90" r="1" fill="rgba(4,0,0,0.0666667)"/>
-  <circle cx="107" cy="90" r="1" fill="rgba(7,0,0,0.0235294)"/>
-  <circle cx="108" cy="90" r="1" fill="none"/>
-  <circle cx="109" cy="90" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="110" cy="90" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="111" cy="90" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="112" cy="90" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="113" cy="90" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="114" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="90" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="91" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="91" r="1" fill="rgba(109,8,0,0)"/>
-  <circle cx="19" cy="91" r="1" fill="rgba(109,8,0,0)"/>
-  <circle cx="20" cy="91" r="1" fill="rgba(109,8,0,0)"/>
-  <circle cx="21" cy="91" r="1" fill="rgba(109,8,0,0)"/>
-  <circle cx="22" cy="91" r="1" fill="rgba(109,8,0,0)"/>
-  <circle cx="23" cy="91" r="1" fill="rgba(109,8,0,0)"/>
-  <circle cx="24" cy="91" r="1" fill="rgba(109,8,0,0)"/>
-  <circle cx="25" cy="91" r="1" fill="rgba(109,8,0,0)"/>
-  <circle cx="26" cy="91" r="1" fill="rgba(109,8,0,0)"/>
-  <circle cx="27" cy="91" r="1" fill="rgba(109,8,0,0)"/>
-  <circle cx="28" cy="91" r="1" fill="rgba(109,8,0,0)"/>
-  <circle cx="29" cy="91" r="1" fill="rgba(109,8,0,0)"/>
-  <circle cx="30" cy="91" r="1" fill="rgba(110,8,0,0)"/>
-  <circle cx="31" cy="91" r="1" fill="rgba(99,7,0,0.0470588)"/>
-  <circle cx="32" cy="91" r="1" fill="rgba(87,5,0,0.462745)"/>
-  <circle cx="33" cy="91" r="1" fill="rgba(179,13,2,0.980392)"/>
-  <circle cx="34" cy="91" r="1" fill="rgba(188,14,3,1)"/>
-  <circle cx="35" cy="91" r="1" fill="rgba(188,15,3,1)"/>
-  <circle cx="36" cy="91" r="1" fill="rgba(191,15,3,1)"/>
-  <circle cx="37" cy="91" r="1" fill="rgba(192,15,3,1)"/>
-  <circle cx="38" cy="91" r="1" fill="rgba(193,15,3,1)"/>
-  <circle cx="39" cy="91" r="1" fill="rgba(194,15,3,1)"/>
-  <circle cx="40" cy="91" r="1" fill="rgba(195,15,3,1)"/>
-  <circle cx="41" cy="91" r="1" fill="rgba(195,15,3,1)"/>
-  <circle cx="42" cy="91" r="1" fill="rgba(195,15,3,1)"/>
-  <circle cx="43" cy="91" r="1" fill="rgba(196,14,3,1)"/>
-  <circle cx="44" cy="91" r="1" fill="rgba(199,14,2,1)"/>
-  <circle cx="45" cy="91" r="1" fill="rgba(200,14,2,1)"/>
-  <circle cx="46" cy="91" r="1" fill="rgba(201,14,3,1)"/>
-  <circle cx="47" cy="91" r="1" fill="rgba(199,15,3,1)"/>
-  <circle cx="48" cy="91" r="1" fill="rgba(197,15,3,1)"/>
-  <circle cx="49" cy="91" r="1" fill="rgba(196,16,3,1)"/>
-  <circle cx="50" cy="91" r="1" fill="rgba(197,17,3,1)"/>
-  <circle cx="51" cy="91" r="1" fill="rgba(197,17,3,1)"/>
-  <circle cx="52" cy="91" r="1" fill="rgba(197,17,4,1)"/>
-  <circle cx="53" cy="91" r="1" fill="rgba(198,19,4,1)"/>
-  <circle cx="54" cy="91" r="1" fill="rgba(198,19,4,1)"/>
-  <circle cx="55" cy="91" r="1" fill="rgba(199,19,4,1)"/>
-  <circle cx="56" cy="91" r="1" fill="rgba(199,20,4,1)"/>
-  <circle cx="57" cy="91" r="1" fill="rgba(199,22,5,1)"/>
-  <circle cx="58" cy="91" r="1" fill="rgba(200,22,5,1)"/>
-  <circle cx="59" cy="91" r="1" fill="rgba(200,23,5,1)"/>
-  <circle cx="60" cy="91" r="1" fill="rgba(200,24,6,1)"/>
-  <circle cx="61" cy="91" r="1" fill="rgba(200,26,7,1)"/>
-  <circle cx="62" cy="91" r="1" fill="rgba(199,25,7,1)"/>
-  <circle cx="63" cy="91" r="1" fill="rgba(196,24,6,1)"/>
-  <circle cx="64" cy="91" r="1" fill="rgba(192,16,3,1)"/>
-  <circle cx="65" cy="91" r="1" fill="rgba(143,3,0,1)"/>
-  <circle cx="66" cy="91" r="1" fill="rgba(130,13,2,1)"/>
-  <circle cx="67" cy="91" r="1" fill="rgba(189,22,5,1)"/>
-  <circle cx="68" cy="91" r="1" fill="rgba(190,25,6,1)"/>
-  <circle cx="69" cy="91" r="1" fill="rgba(197,32,9,1)"/>
-  <circle cx="70" cy="91" r="1" fill="rgba(203,37,11,1)"/>
-  <circle cx="71" cy="91" r="1" fill="rgba(207,42,13,1)"/>
-  <circle cx="72" cy="91" r="1" fill="rgba(208,46,14,1)"/>
-  <circle cx="73" cy="91" r="1" fill="rgba(209,49,16,1)"/>
-  <circle cx="74" cy="91" r="1" fill="rgba(210,52,17,1)"/>
-  <circle cx="75" cy="91" r="1" fill="rgba(211,55,18,1)"/>
-  <circle cx="76" cy="91" r="1" fill="rgba(212,59,20,1)"/>
-  <circle cx="77" cy="91" r="1" fill="rgba(214,62,22,1)"/>
-  <circle cx="78" cy="91" r="1" fill="rgba(215,65,24,1)"/>
-  <circle cx="79" cy="91" r="1" fill="rgba(217,70,26,1)"/>
-  <circle cx="80" cy="91" r="1" fill="rgba(219,74,28,1)"/>
-  <circle cx="81" cy="91" r="1" fill="rgba(221,78,31,1)"/>
-  <circle cx="82" cy="91" r="1" fill="rgba(221,83,33,1)"/>
-  <circle cx="83" cy="91" r="1" fill="rgba(223,87,36,1)"/>
-  <circle cx="84" cy="91" r="1" fill="rgba(226,92,39,1)"/>
-  <circle cx="85" cy="91" r="1" fill="rgba(227,97,42,1)"/>
-  <circle cx="86" cy="91" r="1" fill="rgba(229,103,45,1)"/>
-  <circle cx="87" cy="91" r="1" fill="rgba(231,108,48,1)"/>
-  <circle cx="88" cy="91" r="1" fill="rgba(233,113,52,1)"/>
-  <circle cx="89" cy="91" r="1" fill="rgba(235,119,56,1)"/>
-  <circle cx="90" cy="91" r="1" fill="rgba(236,124,58,1)"/>
-  <circle cx="91" cy="91" r="1" fill="rgba(237,128,61,1)"/>
-  <circle cx="92" cy="91" r="1" fill="rgba(240,131,62,1)"/>
-  <circle cx="93" cy="91" r="1" fill="rgba(240,130,60,1)"/>
-  <circle cx="94" cy="91" r="1" fill="rgba(238,124,56,1)"/>
-  <circle cx="95" cy="91" r="1" fill="rgba(237,116,49,1)"/>
-  <circle cx="96" cy="91" r="1" fill="rgba(239,114,48,1)"/>
-  <circle cx="97" cy="91" r="1" fill="rgba(121,39,11,0.811765)"/>
-  <circle cx="98" cy="91" r="1" fill="rgba(31,0,0,0.666667)"/>
-  <circle cx="99" cy="91" r="1" fill="rgba(40,5,1,0.6)"/>
-  <circle cx="100" cy="91" r="1" fill="rgba(29,2,0,0.498039)"/>
-  <circle cx="101" cy="91" r="1" fill="rgba(21,1,0,0.4)"/>
-  <circle cx="102" cy="91" r="1" fill="rgba(22,4,0,0.317647)"/>
-  <circle cx="103" cy="91" r="1" fill="rgba(24,6,0,0.243137)"/>
-  <circle cx="104" cy="91" r="1" fill="rgba(21,2,0,0.168627)"/>
-  <circle cx="105" cy="91" r="1" fill="rgba(7,0,0,0.0980392)"/>
-  <circle cx="106" cy="91" r="1" fill="rgba(4,0,0,0.0431373)"/>
-  <circle cx="107" cy="91" r="1" fill="rgba(4,0,0,0.0117647)"/>
-  <circle cx="108" cy="91" r="1" fill="none"/>
-  <circle cx="109" cy="91" r="1" fill="none"/>
-  <circle cx="110" cy="91" r="1" fill="none"/>
-  <circle cx="111" cy="91" r="1" fill="none"/>
-  <circle cx="112" cy="91" r="1" fill="none"/>
-  <circle cx="113" cy="91" r="1" fill="none"/>
-  <circle cx="114" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="91" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="92" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="92" r="1" fill="rgba(113,8,0,0)"/>
-  <circle cx="19" cy="92" r="1" fill="rgba(113,8,0,0)"/>
-  <circle cx="20" cy="92" r="1" fill="rgba(113,8,0,0)"/>
-  <circle cx="21" cy="92" r="1" fill="rgba(113,8,0,0)"/>
-  <circle cx="22" cy="92" r="1" fill="rgba(113,8,0,0)"/>
-  <circle cx="23" cy="92" r="1" fill="rgba(113,8,0,0)"/>
-  <circle cx="24" cy="92" r="1" fill="rgba(113,8,0,0)"/>
-  <circle cx="25" cy="92" r="1" fill="rgba(113,8,0,0)"/>
-  <circle cx="26" cy="92" r="1" fill="rgba(113,8,0,0)"/>
-  <circle cx="27" cy="92" r="1" fill="rgba(113,8,0,0)"/>
-  <circle cx="28" cy="92" r="1" fill="rgba(113,8,0,0)"/>
-  <circle cx="29" cy="92" r="1" fill="rgba(113,8,0,0)"/>
-  <circle cx="30" cy="92" r="1" fill="rgba(113,8,0,0)"/>
-  <circle cx="31" cy="92" r="1" fill="rgba(114,8,0,0.00392157)"/>
-  <circle cx="32" cy="92" r="1" fill="rgba(73,4,0,0.227451)"/>
-  <circle cx="33" cy="92" r="1" fill="rgba(123,8,1,0.74902)"/>
-  <circle cx="34" cy="92" r="1" fill="rgba(192,15,3,1)"/>
-  <circle cx="35" cy="92" r="1" fill="rgba(188,15,3,1)"/>
-  <circle cx="36" cy="92" r="1" fill="rgba(189,15,3,1)"/>
-  <circle cx="37" cy="92" r="1" fill="rgba(191,16,3,1)"/>
-  <circle cx="38" cy="92" r="1" fill="rgba(192,17,3,1)"/>
-  <circle cx="39" cy="92" r="1" fill="rgba(193,16,3,1)"/>
-  <circle cx="40" cy="92" r="1" fill="rgba(194,16,3,1)"/>
-  <circle cx="41" cy="92" r="1" fill="rgba(195,17,3,1)"/>
-  <circle cx="42" cy="92" r="1" fill="rgba(195,16,3,1)"/>
-  <circle cx="43" cy="92" r="1" fill="rgba(196,16,3,1)"/>
-  <circle cx="44" cy="92" r="1" fill="rgba(196,17,3,1)"/>
-  <circle cx="45" cy="92" r="1" fill="rgba(196,17,3,1)"/>
-  <circle cx="46" cy="92" r="1" fill="rgba(196,17,3,1)"/>
-  <circle cx="47" cy="92" r="1" fill="rgba(196,18,3,1)"/>
-  <circle cx="48" cy="92" r="1" fill="rgba(197,17,3,1)"/>
-  <circle cx="49" cy="92" r="1" fill="rgba(197,17,4,1)"/>
-  <circle cx="50" cy="92" r="1" fill="rgba(197,19,4,1)"/>
-  <circle cx="51" cy="92" r="1" fill="rgba(198,18,4,1)"/>
-  <circle cx="52" cy="92" r="1" fill="rgba(199,18,4,1)"/>
-  <circle cx="53" cy="92" r="1" fill="rgba(199,20,5,1)"/>
-  <circle cx="54" cy="92" r="1" fill="rgba(199,20,5,1)"/>
-  <circle cx="55" cy="92" r="1" fill="rgba(200,20,5,1)"/>
-  <circle cx="56" cy="92" r="1" fill="rgba(200,22,5,1)"/>
-  <circle cx="57" cy="92" r="1" fill="rgba(200,24,6,1)"/>
-  <circle cx="58" cy="92" r="1" fill="rgba(200,24,6,1)"/>
-  <circle cx="59" cy="92" r="1" fill="rgba(201,25,6,1)"/>
-  <circle cx="60" cy="92" r="1" fill="rgba(201,27,7,1)"/>
-  <circle cx="61" cy="92" r="1" fill="rgba(200,27,8,1)"/>
-  <circle cx="62" cy="92" r="1" fill="rgba(200,27,7,1)"/>
-  <circle cx="63" cy="92" r="1" fill="rgba(196,26,7,1)"/>
-  <circle cx="64" cy="92" r="1" fill="rgba(190,17,3,1)"/>
-  <circle cx="65" cy="92" r="1" fill="rgba(140,4,0,1)"/>
-  <circle cx="66" cy="92" r="1" fill="rgba(130,13,3,1)"/>
-  <circle cx="67" cy="92" r="1" fill="rgba(189,22,5,1)"/>
-  <circle cx="68" cy="92" r="1" fill="rgba(191,26,6,1)"/>
-  <circle cx="69" cy="92" r="1" fill="rgba(197,33,9,1)"/>
-  <circle cx="70" cy="92" r="1" fill="rgba(203,41,12,1)"/>
-  <circle cx="71" cy="92" r="1" fill="rgba(207,45,14,1)"/>
-  <circle cx="72" cy="92" r="1" fill="rgba(209,50,16,1)"/>
-  <circle cx="73" cy="92" r="1" fill="rgba(210,52,18,1)"/>
-  <circle cx="74" cy="92" r="1" fill="rgba(211,56,19,1)"/>
-  <circle cx="75" cy="92" r="1" fill="rgba(213,59,21,1)"/>
-  <circle cx="76" cy="92" r="1" fill="rgba(214,63,22,1)"/>
-  <circle cx="77" cy="92" r="1" fill="rgba(216,66,24,1)"/>
-  <circle cx="78" cy="92" r="1" fill="rgba(217,69,26,1)"/>
-  <circle cx="79" cy="92" r="1" fill="rgba(218,73,27,1)"/>
-  <circle cx="80" cy="92" r="1" fill="rgba(221,78,30,1)"/>
-  <circle cx="81" cy="92" r="1" fill="rgba(221,82,33,1)"/>
-  <circle cx="82" cy="92" r="1" fill="rgba(223,86,35,1)"/>
-  <circle cx="83" cy="92" r="1" fill="rgba(225,91,38,1)"/>
-  <circle cx="84" cy="92" r="1" fill="rgba(227,96,42,1)"/>
-  <circle cx="85" cy="92" r="1" fill="rgba(228,101,44,1)"/>
-  <circle cx="86" cy="92" r="1" fill="rgba(230,107,48,1)"/>
-  <circle cx="87" cy="92" r="1" fill="rgba(233,112,51,1)"/>
-  <circle cx="88" cy="92" r="1" fill="rgba(235,117,55,1)"/>
-  <circle cx="89" cy="92" r="1" fill="rgba(236,123,57,1)"/>
-  <circle cx="90" cy="92" r="1" fill="rgba(237,126,60,1)"/>
-  <circle cx="91" cy="92" r="1" fill="rgba(239,130,62,1)"/>
-  <circle cx="92" cy="92" r="1" fill="rgba(240,131,62,1)"/>
-  <circle cx="93" cy="92" r="1" fill="rgba(239,125,56,1)"/>
-  <circle cx="94" cy="92" r="1" fill="rgba(236,116,49,1)"/>
-  <circle cx="95" cy="92" r="1" fill="rgba(241,115,48,1)"/>
-  <circle cx="96" cy="92" r="1" fill="rgba(188,78,29,0.917647)"/>
-  <circle cx="97" cy="92" r="1" fill="rgba(43,4,1,0.698039)"/>
-  <circle cx="98" cy="92" r="1" fill="rgba(40,5,1,0.631373)"/>
-  <circle cx="99" cy="92" r="1" fill="rgba(33,3,0,0.541176)"/>
-  <circle cx="100" cy="92" r="1" fill="rgba(24,1,0,0.439216)"/>
-  <circle cx="101" cy="92" r="1" fill="rgba(22,2,0,0.352941)"/>
-  <circle cx="102" cy="92" r="1" fill="rgba(26,7,1,0.278431)"/>
-  <circle cx="103" cy="92" r="1" fill="rgba(28,7,1,0.2)"/>
-  <circle cx="104" cy="92" r="1" fill="rgba(17,1,0,0.12549)"/>
-  <circle cx="105" cy="92" r="1" fill="rgba(4,0,0,0.0666667)"/>
-  <circle cx="106" cy="92" r="1" fill="rgba(0,0,0,0.0235294)"/>
-  <circle cx="107" cy="92" r="1" fill="rgba(4,0,0,0.00392157)"/>
-  <circle cx="108" cy="92" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="109" cy="92" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="110" cy="92" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="111" cy="92" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="112" cy="92" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="113" cy="92" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="114" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="92" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="93" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="93" r="1" fill="rgba(110,8,0,0)"/>
-  <circle cx="19" cy="93" r="1" fill="rgba(110,8,0,0)"/>
-  <circle cx="20" cy="93" r="1" fill="rgba(110,8,0,0)"/>
-  <circle cx="21" cy="93" r="1" fill="rgba(110,8,0,0)"/>
-  <circle cx="22" cy="93" r="1" fill="rgba(110,8,0,0)"/>
-  <circle cx="23" cy="93" r="1" fill="rgba(110,8,0,0)"/>
-  <circle cx="24" cy="93" r="1" fill="rgba(110,8,0,0)"/>
-  <circle cx="25" cy="93" r="1" fill="rgba(110,8,0,0)"/>
-  <circle cx="26" cy="93" r="1" fill="rgba(110,8,0,0)"/>
-  <circle cx="27" cy="93" r="1" fill="rgba(110,8,0,0)"/>
-  <circle cx="28" cy="93" r="1" fill="rgba(110,8,0,0)"/>
-  <circle cx="29" cy="93" r="1" fill="rgba(110,8,0,0)"/>
-  <circle cx="30" cy="93" r="1" fill="rgba(110,8,0,0)"/>
-  <circle cx="31" cy="93" r="1" fill="rgba(112,8,0,0)"/>
-  <circle cx="32" cy="93" r="1" fill="rgba(94,6,0,0.105882)"/>
-  <circle cx="33" cy="93" r="1" fill="rgba(53,3,0,0.447059)"/>
-  <circle cx="34" cy="93" r="1" fill="rgba(163,13,3,0.917647)"/>
-  <circle cx="35" cy="93" r="1" fill="rgba(192,17,3,1)"/>
-  <circle cx="36" cy="93" r="1" fill="rgba(188,17,3,1)"/>
-  <circle cx="37" cy="93" r="1" fill="rgba(191,17,3,1)"/>
-  <circle cx="38" cy="93" r="1" fill="rgba(192,17,4,1)"/>
-  <circle cx="39" cy="93" r="1" fill="rgba(194,18,4,1)"/>
-  <circle cx="40" cy="93" r="1" fill="rgba(194,19,4,1)"/>
-  <circle cx="41" cy="93" r="1" fill="rgba(196,18,4,1)"/>
-  <circle cx="42" cy="93" r="1" fill="rgba(196,19,4,1)"/>
-  <circle cx="43" cy="93" r="1" fill="rgba(196,18,4,1)"/>
-  <circle cx="44" cy="93" r="1" fill="rgba(196,19,4,1)"/>
-  <circle cx="45" cy="93" r="1" fill="rgba(196,19,4,1)"/>
-  <circle cx="46" cy="93" r="1" fill="rgba(196,20,4,1)"/>
-  <circle cx="47" cy="93" r="1" fill="rgba(197,20,4,1)"/>
-  <circle cx="48" cy="93" r="1" fill="rgba(198,20,4,1)"/>
-  <circle cx="49" cy="93" r="1" fill="rgba(198,20,4,1)"/>
-  <circle cx="50" cy="93" r="1" fill="rgba(198,20,4,1)"/>
-  <circle cx="51" cy="93" r="1" fill="rgba(199,21,5,1)"/>
-  <circle cx="52" cy="93" r="1" fill="rgba(199,21,5,1)"/>
-  <circle cx="53" cy="93" r="1" fill="rgba(199,21,5,1)"/>
-  <circle cx="54" cy="93" r="1" fill="rgba(200,23,6,1)"/>
-  <circle cx="55" cy="93" r="1" fill="rgba(200,23,6,1)"/>
-  <circle cx="56" cy="93" r="1" fill="rgba(200,24,6,1)"/>
-  <circle cx="57" cy="93" r="1" fill="rgba(201,25,6,1)"/>
-  <circle cx="58" cy="93" r="1" fill="rgba(201,26,7,1)"/>
-  <circle cx="59" cy="93" r="1" fill="rgba(202,27,7,1)"/>
-  <circle cx="60" cy="93" r="1" fill="rgba(202,29,8,1)"/>
-  <circle cx="61" cy="93" r="1" fill="rgba(202,29,8,1)"/>
-  <circle cx="62" cy="93" r="1" fill="rgba(200,29,8,1)"/>
-  <circle cx="63" cy="93" r="1" fill="rgba(196,28,7,1)"/>
-  <circle cx="64" cy="93" r="1" fill="rgba(189,18,3,1)"/>
-  <circle cx="65" cy="93" r="1" fill="rgba(138,3,0,1)"/>
-  <circle cx="66" cy="93" r="1" fill="rgba(130,14,3,1)"/>
-  <circle cx="67" cy="93" r="1" fill="rgba(189,24,5,1)"/>
-  <circle cx="68" cy="93" r="1" fill="rgba(191,29,7,1)"/>
-  <circle cx="69" cy="93" r="1" fill="rgba(199,36,10,1)"/>
-  <circle cx="70" cy="93" r="1" fill="rgba(204,43,13,1)"/>
-  <circle cx="71" cy="93" r="1" fill="rgba(208,49,16,1)"/>
-  <circle cx="72" cy="93" r="1" fill="rgba(210,53,18,1)"/>
-  <circle cx="73" cy="93" r="1" fill="rgba(212,56,20,1)"/>
-  <circle cx="74" cy="93" r="1" fill="rgba(213,59,21,1)"/>
-  <circle cx="75" cy="93" r="1" fill="rgba(214,62,22,1)"/>
-  <circle cx="76" cy="93" r="1" fill="rgba(215,66,24,1)"/>
-  <circle cx="77" cy="93" r="1" fill="rgba(217,69,26,1)"/>
-  <circle cx="78" cy="93" r="1" fill="rgba(219,73,28,1)"/>
-  <circle cx="79" cy="93" r="1" fill="rgba(221,77,30,1)"/>
-  <circle cx="80" cy="93" r="1" fill="rgba(221,82,33,1)"/>
-  <circle cx="81" cy="93" r="1" fill="rgba(223,86,35,1)"/>
-  <circle cx="82" cy="93" r="1" fill="rgba(225,90,37,1)"/>
-  <circle cx="83" cy="93" r="1" fill="rgba(227,95,41,1)"/>
-  <circle cx="84" cy="93" r="1" fill="rgba(227,100,43,1)"/>
-  <circle cx="85" cy="93" r="1" fill="rgba(230,106,47,1)"/>
-  <circle cx="86" cy="93" r="1" fill="rgba(233,111,51,1)"/>
-  <circle cx="87" cy="93" r="1" fill="rgba(234,116,54,1)"/>
-  <circle cx="88" cy="93" r="1" fill="rgba(236,121,57,1)"/>
-  <circle cx="89" cy="93" r="1" fill="rgba(237,125,60,1)"/>
-  <circle cx="90" cy="93" r="1" fill="rgba(238,128,61,1)"/>
-  <circle cx="91" cy="93" r="1" fill="rgba(240,131,61,1)"/>
-  <circle cx="92" cy="93" r="1" fill="rgba(238,126,56,1)"/>
-  <circle cx="93" cy="93" r="1" fill="rgba(237,117,50,1)"/>
-  <circle cx="94" cy="93" r="1" fill="rgba(237,111,46,1)"/>
-  <circle cx="95" cy="93" r="1" fill="rgba(226,100,40,0.984314)"/>
-  <circle cx="96" cy="93" r="1" fill="rgba(88,23,6,0.764706)"/>
-  <circle cx="97" cy="93" r="1" fill="rgba(34,2,0,0.654902)"/>
-  <circle cx="98" cy="93" r="1" fill="rgba(37,4,0,0.576471)"/>
-  <circle cx="99" cy="93" r="1" fill="rgba(24,1,0,0.478431)"/>
-  <circle cx="100" cy="93" r="1" fill="rgba(21,1,0,0.384314)"/>
-  <circle cx="101" cy="93" r="1" fill="rgba(26,5,1,0.309804)"/>
-  <circle cx="102" cy="93" r="1" fill="rgba(33,9,2,0.235294)"/>
-  <circle cx="103" cy="93" r="1" fill="rgba(33,7,1,0.156863)"/>
-  <circle cx="104" cy="93" r="1" fill="rgba(19,1,0,0.0862745)"/>
-  <circle cx="105" cy="93" r="1" fill="rgba(4,0,0,0.0352941)"/>
-  <circle cx="106" cy="93" r="1" fill="rgba(0,0,0,0.00784314)"/>
-  <circle cx="107" cy="93" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="108" cy="93" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="109" cy="93" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="110" cy="93" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="111" cy="93" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="112" cy="93" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="113" cy="93" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="114" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="93" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="94" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="94" r="1" fill="rgba(98,6,0,0)"/>
-  <circle cx="19" cy="94" r="1" fill="rgba(98,6,0,0)"/>
-  <circle cx="20" cy="94" r="1" fill="rgba(98,6,0,0)"/>
-  <circle cx="21" cy="94" r="1" fill="rgba(98,6,0,0)"/>
-  <circle cx="22" cy="94" r="1" fill="rgba(98,6,0,0)"/>
-  <circle cx="23" cy="94" r="1" fill="rgba(98,6,0,0)"/>
-  <circle cx="24" cy="94" r="1" fill="rgba(98,6,0,0)"/>
-  <circle cx="25" cy="94" r="1" fill="rgba(98,6,0,0)"/>
-  <circle cx="26" cy="94" r="1" fill="rgba(98,6,0,0)"/>
-  <circle cx="27" cy="94" r="1" fill="rgba(98,6,0,0)"/>
-  <circle cx="28" cy="94" r="1" fill="rgba(98,6,0,0)"/>
-  <circle cx="29" cy="94" r="1" fill="rgba(98,6,0,0)"/>
-  <circle cx="30" cy="94" r="1" fill="rgba(98,6,0,0)"/>
-  <circle cx="31" cy="94" r="1" fill="rgba(98,6,0,0)"/>
-  <circle cx="32" cy="94" r="1" fill="rgba(97,6,0,0.0196078)"/>
-  <circle cx="33" cy="94" r="1" fill="rgba(53,2,0,0.270588)"/>
-  <circle cx="34" cy="94" r="1" fill="rgba(78,6,0,0.635294)"/>
-  <circle cx="35" cy="94" r="1" fill="rgba(186,18,4,0.988235)"/>
-  <circle cx="36" cy="94" r="1" fill="rgba(189,18,4,1)"/>
-  <circle cx="37" cy="94" r="1" fill="rgba(189,18,4,1)"/>
-  <circle cx="38" cy="94" r="1" fill="rgba(192,19,4,1)"/>
-  <circle cx="39" cy="94" r="1" fill="rgba(194,20,4,1)"/>
-  <circle cx="40" cy="94" r="1" fill="rgba(195,20,4,1)"/>
-  <circle cx="41" cy="94" r="1" fill="rgba(196,21,4,1)"/>
-  <circle cx="42" cy="94" r="1" fill="rgba(196,21,4,1)"/>
-  <circle cx="43" cy="94" r="1" fill="rgba(196,21,5,1)"/>
-  <circle cx="44" cy="94" r="1" fill="rgba(197,21,5,1)"/>
-  <circle cx="45" cy="94" r="1" fill="rgba(197,21,5,1)"/>
-  <circle cx="46" cy="94" r="1" fill="rgba(197,21,5,1)"/>
-  <circle cx="47" cy="94" r="1" fill="rgba(197,21,5,1)"/>
-  <circle cx="48" cy="94" r="1" fill="rgba(198,22,5,1)"/>
-  <circle cx="49" cy="94" r="1" fill="rgba(199,22,5,1)"/>
-  <circle cx="50" cy="94" r="1" fill="rgba(199,23,5,1)"/>
-  <circle cx="51" cy="94" r="1" fill="rgba(200,23,5,1)"/>
-  <circle cx="52" cy="94" r="1" fill="rgba(200,24,6,1)"/>
-  <circle cx="53" cy="94" r="1" fill="rgba(200,25,6,1)"/>
-  <circle cx="54" cy="94" r="1" fill="rgba(200,25,6,1)"/>
-  <circle cx="55" cy="94" r="1" fill="rgba(200,26,6,1)"/>
-  <circle cx="56" cy="94" r="1" fill="rgba(201,27,7,1)"/>
-  <circle cx="57" cy="94" r="1" fill="rgba(202,28,7,1)"/>
-  <circle cx="58" cy="94" r="1" fill="rgba(202,29,8,1)"/>
-  <circle cx="59" cy="94" r="1" fill="rgba(203,30,8,1)"/>
-  <circle cx="60" cy="94" r="1" fill="rgba(203,31,8,1)"/>
-  <circle cx="61" cy="94" r="1" fill="rgba(203,32,9,1)"/>
-  <circle cx="62" cy="94" r="1" fill="rgba(202,32,8,1)"/>
-  <circle cx="63" cy="94" r="1" fill="rgba(198,30,8,1)"/>
-  <circle cx="64" cy="94" r="1" fill="rgba(189,18,3,1)"/>
-  <circle cx="65" cy="94" r="1" fill="rgba(137,3,0,1)"/>
-  <circle cx="66" cy="94" r="1" fill="rgba(131,16,3,1)"/>
-  <circle cx="67" cy="94" r="1" fill="rgba(191,26,6,1)"/>
-  <circle cx="68" cy="94" r="1" fill="rgba(192,32,8,1)"/>
-  <circle cx="69" cy="94" r="1" fill="rgba(200,39,11,1)"/>
-  <circle cx="70" cy="94" r="1" fill="rgba(206,46,15,1)"/>
-  <circle cx="71" cy="94" r="1" fill="rgba(210,52,17,1)"/>
-  <circle cx="72" cy="94" r="1" fill="rgba(211,56,20,1)"/>
-  <circle cx="73" cy="94" r="1" fill="rgba(213,60,21,1)"/>
-  <circle cx="74" cy="94" r="1" fill="rgba(214,63,22,1)"/>
-  <circle cx="75" cy="94" r="1" fill="rgba(217,66,24,1)"/>
-  <circle cx="76" cy="94" r="1" fill="rgba(217,69,26,1)"/>
-  <circle cx="77" cy="94" r="1" fill="rgba(219,73,27,1)"/>
-  <circle cx="78" cy="94" r="1" fill="rgba(220,77,30,1)"/>
-  <circle cx="79" cy="94" r="1" fill="rgba(222,82,33,1)"/>
-  <circle cx="80" cy="94" r="1" fill="rgba(223,86,35,1)"/>
-  <circle cx="81" cy="94" r="1" fill="rgba(224,90,37,1)"/>
-  <circle cx="82" cy="94" r="1" fill="rgba(226,95,41,1)"/>
-  <circle cx="83" cy="94" r="1" fill="rgba(227,100,43,1)"/>
-  <circle cx="84" cy="94" r="1" fill="rgba(230,105,47,1)"/>
-  <circle cx="85" cy="94" r="1" fill="rgba(232,110,50,1)"/>
-  <circle cx="86" cy="94" r="1" fill="rgba(233,115,53,1)"/>
-  <circle cx="87" cy="94" r="1" fill="rgba(236,120,56,1)"/>
-  <circle cx="88" cy="94" r="1" fill="rgba(237,124,59,1)"/>
-  <circle cx="89" cy="94" r="1" fill="rgba(238,127,60,1)"/>
-  <circle cx="90" cy="94" r="1" fill="rgba(239,129,61,1)"/>
-  <circle cx="91" cy="94" r="1" fill="rgba(239,126,57,1)"/>
-  <circle cx="92" cy="94" r="1" fill="rgba(236,117,49,1)"/>
-  <circle cx="93" cy="94" r="1" fill="rgba(234,109,44,1)"/>
-  <circle cx="94" cy="94" r="1" fill="rgba(239,107,43,1)"/>
-  <circle cx="95" cy="94" r="1" fill="rgba(144,49,16,0.85098)"/>
-  <circle cx="96" cy="94" r="1" fill="rgba(29,0,0,0.678431)"/>
-  <circle cx="97" cy="94" r="1" fill="rgba(42,5,1,0.615686)"/>
-  <circle cx="98" cy="94" r="1" fill="rgba(31,2,0,0.513725)"/>
-  <circle cx="99" cy="94" r="1" fill="rgba(21,0,0,0.423529)"/>
-  <circle cx="100" cy="94" r="1" fill="rgba(21,3,0,0.341176)"/>
-  <circle cx="101" cy="94" r="1" fill="rgba(29,9,2,0.270588)"/>
-  <circle cx="102" cy="94" r="1" fill="rgba(37,11,2,0.192157)"/>
-  <circle cx="103" cy="94" r="1" fill="rgba(33,6,0,0.113725)"/>
-  <circle cx="104" cy="94" r="1" fill="rgba(15,0,0,0.054902)"/>
-  <circle cx="105" cy="94" r="1" fill="rgba(4,0,0,0.0196078)"/>
-  <circle cx="106" cy="94" r="1" fill="none"/>
-  <circle cx="107" cy="94" r="1" fill="none"/>
-  <circle cx="108" cy="94" r="1" fill="none"/>
-  <circle cx="109" cy="94" r="1" fill="none"/>
-  <circle cx="110" cy="94" r="1" fill="none"/>
-  <circle cx="111" cy="94" r="1" fill="none"/>
-  <circle cx="112" cy="94" r="1" fill="none"/>
-  <circle cx="113" cy="94" r="1" fill="none"/>
-  <circle cx="114" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="94" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="95" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="95" r="1" fill="rgba(100,6,0,0)"/>
-  <circle cx="19" cy="95" r="1" fill="rgba(100,6,0,0)"/>
-  <circle cx="20" cy="95" r="1" fill="rgba(100,6,0,0)"/>
-  <circle cx="21" cy="95" r="1" fill="rgba(100,6,0,0)"/>
-  <circle cx="22" cy="95" r="1" fill="rgba(100,6,0,0)"/>
-  <circle cx="23" cy="95" r="1" fill="rgba(100,6,0,0)"/>
-  <circle cx="24" cy="95" r="1" fill="rgba(100,6,0,0)"/>
-  <circle cx="25" cy="95" r="1" fill="rgba(100,6,0,0)"/>
-  <circle cx="26" cy="95" r="1" fill="rgba(100,6,0,0)"/>
-  <circle cx="27" cy="95" r="1" fill="rgba(100,6,0,0)"/>
-  <circle cx="28" cy="95" r="1" fill="rgba(100,6,0,0)"/>
-  <circle cx="29" cy="95" r="1" fill="rgba(100,6,0,0)"/>
-  <circle cx="30" cy="95" r="1" fill="rgba(100,6,0,0)"/>
-  <circle cx="31" cy="95" r="1" fill="rgba(100,6,0,0)"/>
-  <circle cx="32" cy="95" r="1" fill="rgba(103,7,0,0)"/>
-  <circle cx="33" cy="95" r="1" fill="rgba(90,5,0,0.141176)"/>
-  <circle cx="34" cy="95" r="1" fill="rgba(26,1,0,0.427451)"/>
-  <circle cx="35" cy="95" r="1" fill="rgba(123,11,2,0.780392)"/>
-  <circle cx="36" cy="95" r="1" fill="rgba(194,20,4,1)"/>
-  <circle cx="37" cy="95" r="1" fill="rgba(188,19,4,1)"/>
-  <circle cx="38" cy="95" r="1" fill="rgba(190,21,4,1)"/>
-  <circle cx="39" cy="95" r="1" fill="rgba(192,21,5,1)"/>
-  <circle cx="40" cy="95" r="1" fill="rgba(194,22,5,1)"/>
-  <circle cx="41" cy="95" r="1" fill="rgba(196,22,5,1)"/>
-  <circle cx="42" cy="95" r="1" fill="rgba(196,23,5,1)"/>
-  <circle cx="43" cy="95" r="1" fill="rgba(196,23,5,1)"/>
-  <circle cx="44" cy="95" r="1" fill="rgba(197,23,5,1)"/>
-  <circle cx="45" cy="95" r="1" fill="rgba(198,23,5,1)"/>
-  <circle cx="46" cy="95" r="1" fill="rgba(198,23,6,1)"/>
-  <circle cx="47" cy="95" r="1" fill="rgba(199,24,6,1)"/>
-  <circle cx="48" cy="95" r="1" fill="rgba(199,24,6,1)"/>
-  <circle cx="49" cy="95" r="1" fill="rgba(199,25,6,1)"/>
-  <circle cx="50" cy="95" r="1" fill="rgba(200,25,6,1)"/>
-  <circle cx="51" cy="95" r="1" fill="rgba(200,26,7,1)"/>
-  <circle cx="52" cy="95" r="1" fill="rgba(200,27,7,1)"/>
-  <circle cx="53" cy="95" r="1" fill="rgba(201,27,7,1)"/>
-  <circle cx="54" cy="95" r="1" fill="rgba(201,28,7,1)"/>
-  <circle cx="55" cy="95" r="1" fill="rgba(201,29,7,1)"/>
-  <circle cx="56" cy="95" r="1" fill="rgba(202,30,8,1)"/>
-  <circle cx="57" cy="95" r="1" fill="rgba(203,31,8,1)"/>
-  <circle cx="58" cy="95" r="1" fill="rgba(203,32,9,1)"/>
-  <circle cx="59" cy="95" r="1" fill="rgba(203,33,9,1)"/>
-  <circle cx="60" cy="95" r="1" fill="rgba(204,34,9,1)"/>
-  <circle cx="61" cy="95" r="1" fill="rgba(204,35,10,1)"/>
-  <circle cx="62" cy="95" r="1" fill="rgba(203,35,10,1)"/>
-  <circle cx="63" cy="95" r="1" fill="rgba(199,32,9,1)"/>
-  <circle cx="64" cy="95" r="1" fill="rgba(190,19,3,1)"/>
-  <circle cx="65" cy="95" r="1" fill="rgba(138,3,0,1)"/>
-  <circle cx="66" cy="95" r="1" fill="rgba(132,18,3,1)"/>
-  <circle cx="67" cy="95" r="1" fill="rgba(193,29,7,1)"/>
-  <circle cx="68" cy="95" r="1" fill="rgba(194,34,9,1)"/>
-  <circle cx="69" cy="95" r="1" fill="rgba(202,43,13,1)"/>
-  <circle cx="70" cy="95" r="1" fill="rgba(207,50,16,1)"/>
-  <circle cx="71" cy="95" r="1" fill="rgba(211,56,19,1)"/>
-  <circle cx="72" cy="95" r="1" fill="rgba(214,60,21,1)"/>
-  <circle cx="73" cy="95" r="1" fill="rgba(215,64,22,1)"/>
-  <circle cx="74" cy="95" r="1" fill="rgba(216,67,24,1)"/>
-  <circle cx="75" cy="95" r="1" fill="rgba(217,70,27,1)"/>
-  <circle cx="76" cy="95" r="1" fill="rgba(219,74,29,1)"/>
-  <circle cx="77" cy="95" r="1" fill="rgba(220,78,30,1)"/>
-  <circle cx="78" cy="95" r="1" fill="rgba(221,82,33,1)"/>
-  <circle cx="79" cy="95" r="1" fill="rgba(223,86,34,1)"/>
-  <circle cx="80" cy="95" r="1" fill="rgba(224,90,37,1)"/>
-  <circle cx="81" cy="95" r="1" fill="rgba(226,94,40,1)"/>
-  <circle cx="82" cy="95" r="1" fill="rgba(227,99,42,1)"/>
-  <circle cx="83" cy="95" r="1" fill="rgba(230,105,47,1)"/>
-  <circle cx="84" cy="95" r="1" fill="rgba(231,109,49,1)"/>
-  <circle cx="85" cy="95" r="1" fill="rgba(233,114,53,1)"/>
-  <circle cx="86" cy="95" r="1" fill="rgba(235,118,56,1)"/>
-  <circle cx="87" cy="95" r="1" fill="rgba(236,122,58,1)"/>
-  <circle cx="88" cy="95" r="1" fill="rgba(238,125,59,1)"/>
-  <circle cx="89" cy="95" r="1" fill="rgba(239,127,59,1)"/>
-  <circle cx="90" cy="95" r="1" fill="rgba(239,127,57,1)"/>
-  <circle cx="91" cy="95" r="1" fill="rgba(237,117,49,1)"/>
-  <circle cx="92" cy="95" r="1" fill="rgba(233,107,43,1)"/>
-  <circle cx="93" cy="95" r="1" fill="rgba(239,105,42,1)"/>
-  <circle cx="94" cy="95" r="1" fill="rgba(187,72,24,0.92549)"/>
-  <circle cx="95" cy="95" r="1" fill="rgba(45,5,1,0.709804)"/>
-  <circle cx="96" cy="95" r="1" fill="rgba(40,4,1,0.65098)"/>
-  <circle cx="97" cy="95" r="1" fill="rgba(36,3,0,0.556863)"/>
-  <circle cx="98" cy="95" r="1" fill="rgba(22,0,0,0.458824)"/>
-  <circle cx="99" cy="95" r="1" fill="rgba(19,1,0,0.372549)"/>
-  <circle cx="100" cy="95" r="1" fill="rgba(26,7,1,0.305882)"/>
-  <circle cx="101" cy="95" r="1" fill="rgba(34,12,3,0.227451)"/>
-  <circle cx="102" cy="95" r="1" fill="rgba(40,13,2,0.145098)"/>
-  <circle cx="103" cy="95" r="1" fill="rgba(31,5,0,0.0784314)"/>
-  <circle cx="104" cy="95" r="1" fill="rgba(12,0,0,0.0313725)"/>
-  <circle cx="105" cy="95" r="1" fill="rgba(0,0,0,0.00392157)"/>
-  <circle cx="106" cy="95" r="1" fill="none"/>
-  <circle cx="107" cy="95" r="1" fill="none"/>
-  <circle cx="108" cy="95" r="1" fill="none"/>
-  <circle cx="109" cy="95" r="1" fill="none"/>
-  <circle cx="110" cy="95" r="1" fill="none"/>
-  <circle cx="111" cy="95" r="1" fill="none"/>
-  <circle cx="112" cy="95" r="1" fill="none"/>
-  <circle cx="113" cy="95" r="1" fill="none"/>
-  <circle cx="114" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="95" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="96" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="96" r="1" fill="rgba(115,8,0,0)"/>
-  <circle cx="19" cy="96" r="1" fill="rgba(115,8,0,0)"/>
-  <circle cx="20" cy="96" r="1" fill="rgba(115,8,0,0)"/>
-  <circle cx="21" cy="96" r="1" fill="rgba(115,8,0,0)"/>
-  <circle cx="22" cy="96" r="1" fill="rgba(115,8,0,0)"/>
-  <circle cx="23" cy="96" r="1" fill="rgba(115,8,0,0)"/>
-  <circle cx="24" cy="96" r="1" fill="rgba(115,8,0,0)"/>
-  <circle cx="25" cy="96" r="1" fill="rgba(115,8,0,0)"/>
-  <circle cx="26" cy="96" r="1" fill="rgba(115,8,0,0)"/>
-  <circle cx="27" cy="96" r="1" fill="rgba(115,8,0,0)"/>
-  <circle cx="28" cy="96" r="1" fill="rgba(115,8,0,0)"/>
-  <circle cx="29" cy="96" r="1" fill="rgba(115,8,0,0)"/>
-  <circle cx="30" cy="96" r="1" fill="rgba(115,8,0,0)"/>
-  <circle cx="31" cy="96" r="1" fill="rgba(115,8,0,0)"/>
-  <circle cx="32" cy="96" r="1" fill="rgba(116,8,0,0)"/>
-  <circle cx="33" cy="96" r="1" fill="rgba(112,8,0,0.0313725)"/>
-  <circle cx="34" cy="96" r="1" fill="rgba(64,3,0,0.298039)"/>
-  <circle cx="35" cy="96" r="1" fill="rgba(29,2,0,0.52549)"/>
-  <circle cx="36" cy="96" r="1" fill="rgba(157,16,3,0.878431)"/>
-  <circle cx="37" cy="96" r="1" fill="rgba(194,22,5,1)"/>
-  <circle cx="38" cy="96" r="1" fill="rgba(189,21,5,1)"/>
-  <circle cx="39" cy="96" r="1" fill="rgba(191,22,5,1)"/>
-  <circle cx="40" cy="96" r="1" fill="rgba(192,23,5,1)"/>
-  <circle cx="41" cy="96" r="1" fill="rgba(195,24,6,1)"/>
-  <circle cx="42" cy="96" r="1" fill="rgba(196,24,6,1)"/>
-  <circle cx="43" cy="96" r="1" fill="rgba(196,24,6,1)"/>
-  <circle cx="44" cy="96" r="1" fill="rgba(197,25,6,1)"/>
-  <circle cx="45" cy="96" r="1" fill="rgba(198,26,6,1)"/>
-  <circle cx="46" cy="96" r="1" fill="rgba(199,26,7,1)"/>
-  <circle cx="47" cy="96" r="1" fill="rgba(200,27,7,1)"/>
-  <circle cx="48" cy="96" r="1" fill="rgba(200,27,7,1)"/>
-  <circle cx="49" cy="96" r="1" fill="rgba(200,28,7,1)"/>
-  <circle cx="50" cy="96" r="1" fill="rgba(200,28,7,1)"/>
-  <circle cx="51" cy="96" r="1" fill="rgba(200,28,7,1)"/>
-  <circle cx="52" cy="96" r="1" fill="rgba(201,29,8,1)"/>
-  <circle cx="53" cy="96" r="1" fill="rgba(201,30,8,1)"/>
-  <circle cx="54" cy="96" r="1" fill="rgba(202,30,8,1)"/>
-  <circle cx="55" cy="96" r="1" fill="rgba(203,32,9,1)"/>
-  <circle cx="56" cy="96" r="1" fill="rgba(203,32,9,1)"/>
-  <circle cx="57" cy="96" r="1" fill="rgba(203,33,9,1)"/>
-  <circle cx="58" cy="96" r="1" fill="rgba(204,35,10,1)"/>
-  <circle cx="59" cy="96" r="1" fill="rgba(204,36,10,1)"/>
-  <circle cx="60" cy="96" r="1" fill="rgba(205,38,11,1)"/>
-  <circle cx="61" cy="96" r="1" fill="rgba(205,39,11,1)"/>
-  <circle cx="62" cy="96" r="1" fill="rgba(203,39,11,1)"/>
-  <circle cx="63" cy="96" r="1" fill="rgba(200,36,10,1)"/>
-  <circle cx="64" cy="96" r="1" fill="rgba(192,21,4,1)"/>
-  <circle cx="65" cy="96" r="1" fill="rgba(140,3,0,1)"/>
-  <circle cx="66" cy="96" r="1" fill="rgba(135,19,4,1)"/>
-  <circle cx="67" cy="96" r="1" fill="rgba(196,32,8,1)"/>
-  <circle cx="68" cy="96" r="1" fill="rgba(197,37,10,1)"/>
-  <circle cx="69" cy="96" r="1" fill="rgba(203,45,14,1)"/>
-  <circle cx="70" cy="96" r="1" fill="rgba(209,53,18,1)"/>
-  <circle cx="71" cy="96" r="1" fill="rgba(213,60,20,1)"/>
-  <circle cx="72" cy="96" r="1" fill="rgba(215,64,23,1)"/>
-  <circle cx="73" cy="96" r="1" fill="rgba(217,67,25,1)"/>
-  <circle cx="74" cy="96" r="1" fill="rgba(217,71,27,1)"/>
-  <circle cx="75" cy="96" r="1" fill="rgba(218,75,29,1)"/>
-  <circle cx="76" cy="96" r="1" fill="rgba(220,78,30,1)"/>
-  <circle cx="77" cy="96" r="1" fill="rgba(221,82,33,1)"/>
-  <circle cx="78" cy="96" r="1" fill="rgba(223,86,35,1)"/>
-  <circle cx="79" cy="96" r="1" fill="rgba(224,91,37,1)"/>
-  <circle cx="80" cy="96" r="1" fill="rgba(226,95,40,1)"/>
-  <circle cx="81" cy="96" r="1" fill="rgba(227,99,42,1)"/>
-  <circle cx="82" cy="96" r="1" fill="rgba(230,104,46,1)"/>
-  <circle cx="83" cy="96" r="1" fill="rgba(231,109,48,1)"/>
-  <circle cx="84" cy="96" r="1" fill="rgba(233,114,52,1)"/>
-  <circle cx="85" cy="96" r="1" fill="rgba(235,118,55,1)"/>
-  <circle cx="86" cy="96" r="1" fill="rgba(236,121,57,1)"/>
-  <circle cx="87" cy="96" r="1" fill="rgba(237,124,58,1)"/>
-  <circle cx="88" cy="96" r="1" fill="rgba(238,125,58,1)"/>
-  <circle cx="89" cy="96" r="1" fill="rgba(238,124,56,1)"/>
-  <circle cx="90" cy="96" r="1" fill="rgba(236,117,50,1)"/>
-  <circle cx="91" cy="96" r="1" fill="rgba(233,105,42,1)"/>
-  <circle cx="92" cy="96" r="1" fill="rgba(234,100,39,1)"/>
-  <circle cx="93" cy="96" r="1" fill="rgba(214,84,30,0.972549)"/>
-  <circle cx="94" cy="96" r="1" fill="rgba(80,18,4,0.752941)"/>
-  <circle cx="95" cy="96" r="1" fill="rgba(34,3,0,0.666667)"/>
-  <circle cx="96" cy="96" r="1" fill="rgba(39,4,0,0.596078)"/>
-  <circle cx="97" cy="96" r="1" fill="rgba(26,1,0,0.498039)"/>
-  <circle cx="98" cy="96" r="1" fill="rgba(19,0,0,0.411765)"/>
-  <circle cx="99" cy="96" r="1" fill="rgba(21,4,0,0.337255)"/>
-  <circle cx="100" cy="96" r="1" fill="rgba(33,9,2,0.262745)"/>
-  <circle cx="101" cy="96" r="1" fill="rgba(43,14,3,0.180392)"/>
-  <circle cx="102" cy="96" r="1" fill="rgba(45,10,1,0.101961)"/>
-  <circle cx="103" cy="96" r="1" fill="rgba(31,1,0,0.0470588)"/>
-  <circle cx="104" cy="96" r="1" fill="rgba(4,0,0,0.0156863)"/>
-  <circle cx="105" cy="96" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="106" cy="96" r="1" fill="rgba(12,3,0,0)"/>
-  <circle cx="107" cy="96" r="1" fill="rgba(12,3,0,0)"/>
-  <circle cx="108" cy="96" r="1" fill="rgba(12,3,0,0)"/>
-  <circle cx="109" cy="96" r="1" fill="rgba(12,3,0,0)"/>
-  <circle cx="110" cy="96" r="1" fill="rgba(12,3,0,0)"/>
-  <circle cx="111" cy="96" r="1" fill="rgba(12,3,0,0)"/>
-  <circle cx="112" cy="96" r="1" fill="rgba(12,3,0,0)"/>
-  <circle cx="113" cy="96" r="1" fill="rgba(12,3,0,0)"/>
-  <circle cx="114" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="96" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="97" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="97" r="1" fill="rgba(114,8,0,0)"/>
-  <circle cx="19" cy="97" r="1" fill="rgba(114,8,0,0)"/>
-  <circle cx="20" cy="97" r="1" fill="rgba(114,8,0,0)"/>
-  <circle cx="21" cy="97" r="1" fill="rgba(114,8,0,0)"/>
-  <circle cx="22" cy="97" r="1" fill="rgba(114,8,0,0)"/>
-  <circle cx="23" cy="97" r="1" fill="rgba(114,8,0,0)"/>
-  <circle cx="24" cy="97" r="1" fill="rgba(114,8,0,0)"/>
-  <circle cx="25" cy="97" r="1" fill="rgba(114,8,0,0)"/>
-  <circle cx="26" cy="97" r="1" fill="rgba(114,8,0,0)"/>
-  <circle cx="27" cy="97" r="1" fill="rgba(114,8,0,0)"/>
-  <circle cx="28" cy="97" r="1" fill="rgba(114,8,0,0)"/>
-  <circle cx="29" cy="97" r="1" fill="rgba(114,8,0,0)"/>
-  <circle cx="30" cy="97" r="1" fill="rgba(114,8,0,0)"/>
-  <circle cx="31" cy="97" r="1" fill="rgba(114,8,0,0)"/>
-  <circle cx="32" cy="97" r="1" fill="rgba(114,8,0,0)"/>
-  <circle cx="33" cy="97" r="1" fill="rgba(115,8,0,0)"/>
-  <circle cx="34" cy="97" r="1" fill="rgba(96,6,0,0.141176)"/>
-  <circle cx="35" cy="97" r="1" fill="rgba(29,1,0,0.419608)"/>
-  <circle cx="36" cy="97" r="1" fill="rgba(57,4,0,0.6)"/>
-  <circle cx="37" cy="97" r="1" fill="rgba(176,21,5,0.945098)"/>
-  <circle cx="38" cy="97" r="1" fill="rgba(193,24,6,1)"/>
-  <circle cx="39" cy="97" r="1" fill="rgba(190,23,6,1)"/>
-  <circle cx="40" cy="97" r="1" fill="rgba(192,24,6,1)"/>
-  <circle cx="41" cy="97" r="1" fill="rgba(193,25,6,1)"/>
-  <circle cx="42" cy="97" r="1" fill="rgba(196,26,6,1)"/>
-  <circle cx="43" cy="97" r="1" fill="rgba(197,27,7,1)"/>
-  <circle cx="44" cy="97" r="1" fill="rgba(197,27,7,1)"/>
-  <circle cx="45" cy="97" r="1" fill="rgba(198,28,7,1)"/>
-  <circle cx="46" cy="97" r="1" fill="rgba(199,29,7,1)"/>
-  <circle cx="47" cy="97" r="1" fill="rgba(200,29,7,1)"/>
-  <circle cx="48" cy="97" r="1" fill="rgba(200,30,8,1)"/>
-  <circle cx="49" cy="97" r="1" fill="rgba(201,30,8,1)"/>
-  <circle cx="50" cy="97" r="1" fill="rgba(201,31,8,1)"/>
-  <circle cx="51" cy="97" r="1" fill="rgba(202,31,8,1)"/>
-  <circle cx="52" cy="97" r="1" fill="rgba(202,32,9,1)"/>
-  <circle cx="53" cy="97" r="1" fill="rgba(202,33,9,1)"/>
-  <circle cx="54" cy="97" r="1" fill="rgba(203,34,9,1)"/>
-  <circle cx="55" cy="97" r="1" fill="rgba(203,34,10,1)"/>
-  <circle cx="56" cy="97" r="1" fill="rgba(203,35,10,1)"/>
-  <circle cx="57" cy="97" r="1" fill="rgba(204,36,10,1)"/>
-  <circle cx="58" cy="97" r="1" fill="rgba(204,38,11,1)"/>
-  <circle cx="59" cy="97" r="1" fill="rgba(206,39,12,1)"/>
-  <circle cx="60" cy="97" r="1" fill="rgba(206,41,12,1)"/>
-  <circle cx="61" cy="97" r="1" fill="rgba(206,42,13,1)"/>
-  <circle cx="62" cy="97" r="1" fill="rgba(204,42,13,1)"/>
-  <circle cx="63" cy="97" r="1" fill="rgba(201,39,11,1)"/>
-  <circle cx="64" cy="97" r="1" fill="rgba(192,22,4,1)"/>
-  <circle cx="65" cy="97" r="1" fill="rgba(140,3,0,1)"/>
-  <circle cx="66" cy="97" r="1" fill="rgba(137,20,4,1)"/>
-  <circle cx="67" cy="97" r="1" fill="rgba(198,33,9,1)"/>
-  <circle cx="68" cy="97" r="1" fill="rgba(197,39,10,1)"/>
-  <circle cx="69" cy="97" r="1" fill="rgba(204,48,15,1)"/>
-  <circle cx="70" cy="97" r="1" fill="rgba(210,56,19,1)"/>
-  <circle cx="71" cy="97" r="1" fill="rgba(214,63,22,1)"/>
-  <circle cx="72" cy="97" r="1" fill="rgba(216,68,25,1)"/>
-  <circle cx="73" cy="97" r="1" fill="rgba(217,72,27,1)"/>
-  <circle cx="74" cy="97" r="1" fill="rgba(218,75,29,1)"/>
-  <circle cx="75" cy="97" r="1" fill="rgba(221,79,31,1)"/>
-  <circle cx="76" cy="97" r="1" fill="rgba(221,83,33,1)"/>
-  <circle cx="77" cy="97" r="1" fill="rgba(223,86,35,1)"/>
-  <circle cx="78" cy="97" r="1" fill="rgba(224,91,38,1)"/>
-  <circle cx="79" cy="97" r="1" fill="rgba(226,95,41,1)"/>
-  <circle cx="80" cy="97" r="1" fill="rgba(227,99,42,1)"/>
-  <circle cx="81" cy="97" r="1" fill="rgba(229,104,46,1)"/>
-  <circle cx="82" cy="97" r="1" fill="rgba(231,108,48,1)"/>
-  <circle cx="83" cy="97" r="1" fill="rgba(233,113,52,1)"/>
-  <circle cx="84" cy="97" r="1" fill="rgba(234,117,55,1)"/>
-  <circle cx="85" cy="97" r="1" fill="rgba(236,119,56,1)"/>
-  <circle cx="86" cy="97" r="1" fill="rgba(236,122,56,1)"/>
-  <circle cx="87" cy="97" r="1" fill="rgba(237,123,56,1)"/>
-  <circle cx="88" cy="97" r="1" fill="rgba(238,120,54,1)"/>
-  <circle cx="89" cy="97" r="1" fill="rgba(236,113,48,1)"/>
-  <circle cx="90" cy="97" r="1" fill="rgba(232,104,41,1)"/>
-  <circle cx="91" cy="97" r="1" fill="rgba(232,95,36,1)"/>
-  <circle cx="92" cy="97" r="1" fill="rgba(225,87,30,0.992157)"/>
-  <circle cx="93" cy="97" r="1" fill="rgba(105,28,7,0.796078)"/>
-  <circle cx="94" cy="97" r="1" fill="rgba(29,2,0,0.67451)"/>
-  <circle cx="95" cy="97" r="1" fill="rgba(40,5,1,0.619608)"/>
-  <circle cx="96" cy="97" r="1" fill="rgba(29,2,0,0.533333)"/>
-  <circle cx="97" cy="97" r="1" fill="rgba(19,0,0,0.447059)"/>
-  <circle cx="98" cy="97" r="1" fill="rgba(19,1,0,0.372549)"/>
-  <circle cx="99" cy="97" r="1" fill="rgba(28,7,1,0.298039)"/>
-  <circle cx="100" cy="97" r="1" fill="rgba(39,12,3,0.219608)"/>
-  <circle cx="101" cy="97" r="1" fill="rgba(47,14,3,0.133333)"/>
-  <circle cx="102" cy="97" r="1" fill="rgba(46,5,0,0.0666667)"/>
-  <circle cx="103" cy="97" r="1" fill="rgba(21,0,0,0.027451)"/>
-  <circle cx="104" cy="97" r="1" fill="rgba(0,0,0,0.00392157)"/>
-  <circle cx="105" cy="97" r="1" fill="rgba(17,4,0,0)"/>
-  <circle cx="106" cy="97" r="1" fill="rgba(17,4,0,0)"/>
-  <circle cx="107" cy="97" r="1" fill="rgba(17,4,0,0)"/>
-  <circle cx="108" cy="97" r="1" fill="rgba(17,4,0,0)"/>
-  <circle cx="109" cy="97" r="1" fill="rgba(17,4,0,0)"/>
-  <circle cx="110" cy="97" r="1" fill="rgba(17,4,0,0)"/>
-  <circle cx="111" cy="97" r="1" fill="rgba(17,4,0,0)"/>
-  <circle cx="112" cy="97" r="1" fill="rgba(17,4,0,0)"/>
-  <circle cx="113" cy="97" r="1" fill="rgba(17,4,0,0)"/>
-  <circle cx="114" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="97" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="98" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="98" r="1" fill="rgba(114,7,1,0)"/>
-  <circle cx="19" cy="98" r="1" fill="rgba(114,7,1,0)"/>
-  <circle cx="20" cy="98" r="1" fill="rgba(114,7,1,0)"/>
-  <circle cx="21" cy="98" r="1" fill="rgba(114,7,1,0)"/>
-  <circle cx="22" cy="98" r="1" fill="rgba(114,7,1,0)"/>
-  <circle cx="23" cy="98" r="1" fill="rgba(114,7,1,0)"/>
-  <circle cx="24" cy="98" r="1" fill="rgba(114,7,1,0)"/>
-  <circle cx="25" cy="98" r="1" fill="rgba(114,7,1,0)"/>
-  <circle cx="26" cy="98" r="1" fill="rgba(114,7,1,0)"/>
-  <circle cx="27" cy="98" r="1" fill="rgba(114,7,1,0)"/>
-  <circle cx="28" cy="98" r="1" fill="rgba(114,7,1,0)"/>
-  <circle cx="29" cy="98" r="1" fill="rgba(114,7,1,0)"/>
-  <circle cx="30" cy="98" r="1" fill="rgba(114,7,1,0)"/>
-  <circle cx="31" cy="98" r="1" fill="rgba(114,7,1,0)"/>
-  <circle cx="32" cy="98" r="1" fill="rgba(114,7,1,0)"/>
-  <circle cx="33" cy="98" r="1" fill="rgba(115,7,1,0)"/>
-  <circle cx="34" cy="98" r="1" fill="rgba(110,7,0,0.0235294)"/>
-  <circle cx="35" cy="98" r="1" fill="rgba(68,3,0,0.278431)"/>
-  <circle cx="36" cy="98" r="1" fill="rgba(0,0,0,0.482353)"/>
-  <circle cx="37" cy="98" r="1" fill="rgba(77,8,1,0.65098)"/>
-  <circle cx="38" cy="98" r="1" fill="rgba(185,24,6,0.976471)"/>
-  <circle cx="39" cy="98" r="1" fill="rgba(193,25,6,1)"/>
-  <circle cx="40" cy="98" r="1" fill="rgba(191,25,6,1)"/>
-  <circle cx="41" cy="98" r="1" fill="rgba(192,26,6,1)"/>
-  <circle cx="42" cy="98" r="1" fill="rgba(194,27,7,1)"/>
-  <circle cx="43" cy="98" r="1" fill="rgba(196,28,7,1)"/>
-  <circle cx="44" cy="98" r="1" fill="rgba(197,29,7,1)"/>
-  <circle cx="45" cy="98" r="1" fill="rgba(199,30,8,1)"/>
-  <circle cx="46" cy="98" r="1" fill="rgba(199,31,8,1)"/>
-  <circle cx="47" cy="98" r="1" fill="rgba(200,31,8,1)"/>
-  <circle cx="48" cy="98" r="1" fill="rgba(201,32,9,1)"/>
-  <circle cx="49" cy="98" r="1" fill="rgba(202,33,9,1)"/>
-  <circle cx="50" cy="98" r="1" fill="rgba(202,34,9,1)"/>
-  <circle cx="51" cy="98" r="1" fill="rgba(203,34,9,1)"/>
-  <circle cx="52" cy="98" r="1" fill="rgba(203,35,10,1)"/>
-  <circle cx="53" cy="98" r="1" fill="rgba(203,36,10,1)"/>
-  <circle cx="54" cy="98" r="1" fill="rgba(203,36,10,1)"/>
-  <circle cx="55" cy="98" r="1" fill="rgba(204,37,11,1)"/>
-  <circle cx="56" cy="98" r="1" fill="rgba(205,39,11,1)"/>
-  <circle cx="57" cy="98" r="1" fill="rgba(205,40,11,1)"/>
-  <circle cx="58" cy="98" r="1" fill="rgba(205,42,13,1)"/>
-  <circle cx="59" cy="98" r="1" fill="rgba(206,42,13,1)"/>
-  <circle cx="60" cy="98" r="1" fill="rgba(207,45,13,1)"/>
-  <circle cx="61" cy="98" r="1" fill="rgba(207,46,14,1)"/>
-  <circle cx="62" cy="98" r="1" fill="rgba(206,45,14,1)"/>
-  <circle cx="63" cy="98" r="1" fill="rgba(202,41,12,1)"/>
-  <circle cx="64" cy="98" r="1" fill="rgba(192,23,5,1)"/>
-  <circle cx="65" cy="98" r="1" fill="rgba(139,2,0,1)"/>
-  <circle cx="66" cy="98" r="1" fill="rgba(138,21,4,1)"/>
-  <circle cx="67" cy="98" r="1" fill="rgba(199,34,9,1)"/>
-  <circle cx="68" cy="98" r="1" fill="rgba(197,40,11,1)"/>
-  <circle cx="69" cy="98" r="1" fill="rgba(204,49,15,1)"/>
-  <circle cx="70" cy="98" r="1" fill="rgba(210,58,20,1)"/>
-  <circle cx="71" cy="98" r="1" fill="rgba(214,66,24,1)"/>
-  <circle cx="72" cy="98" r="1" fill="rgba(217,72,27,1)"/>
-  <circle cx="73" cy="98" r="1" fill="rgba(219,76,30,1)"/>
-  <circle cx="74" cy="98" r="1" fill="rgba(220,80,32,1)"/>
-  <circle cx="75" cy="98" r="1" fill="rgba(221,83,33,1)"/>
-  <circle cx="76" cy="98" r="1" fill="rgba(223,87,35,1)"/>
-  <circle cx="77" cy="98" r="1" fill="rgba(224,91,37,1)"/>
-  <circle cx="78" cy="98" r="1" fill="rgba(226,95,40,1)"/>
-  <circle cx="79" cy="98" r="1" fill="rgba(227,99,43,1)"/>
-  <circle cx="80" cy="98" r="1" fill="rgba(230,104,46,1)"/>
-  <circle cx="81" cy="98" r="1" fill="rgba(230,108,49,1)"/>
-  <circle cx="82" cy="98" r="1" fill="rgba(232,112,51,1)"/>
-  <circle cx="83" cy="98" r="1" fill="rgba(233,115,53,1)"/>
-  <circle cx="84" cy="98" r="1" fill="rgba(234,117,55,1)"/>
-  <circle cx="85" cy="98" r="1" fill="rgba(235,118,54,1)"/>
-  <circle cx="86" cy="98" r="1" fill="rgba(236,118,53,1)"/>
-  <circle cx="87" cy="98" r="1" fill="rgba(236,116,49,1)"/>
-  <circle cx="88" cy="98" r="1" fill="rgba(235,109,44,1)"/>
-  <circle cx="89" cy="98" r="1" fill="rgba(231,99,37,1)"/>
-  <circle cx="90" cy="98" r="1" fill="rgba(229,90,33,1)"/>
-  <circle cx="91" cy="98" r="1" fill="rgba(229,85,29,1)"/>
-  <circle cx="92" cy="98" r="1" fill="rgba(133,38,10,0.839216)"/>
-  <circle cx="93" cy="98" r="1" fill="rgba(31,2,0,0.678431)"/>
-  <circle cx="94" cy="98" r="1" fill="rgba(40,5,1,0.635294)"/>
-  <circle cx="95" cy="98" r="1" fill="rgba(31,3,0,0.552941)"/>
-  <circle cx="96" cy="98" r="1" fill="rgba(21,0,0,0.47451)"/>
-  <circle cx="97" cy="98" r="1" fill="rgba(15,0,0,0.4)"/>
-  <circle cx="98" cy="98" r="1" fill="rgba(22,4,0,0.329412)"/>
-  <circle cx="99" cy="98" r="1" fill="rgba(34,10,2,0.254902)"/>
-  <circle cx="100" cy="98" r="1" fill="rgba(46,14,3,0.172549)"/>
-  <circle cx="101" cy="98" r="1" fill="rgba(51,12,1,0.0941176)"/>
-  <circle cx="102" cy="98" r="1" fill="rgba(42,2,0,0.0392157)"/>
-  <circle cx="103" cy="98" r="1" fill="rgba(4,0,0,0.0117647)"/>
-  <circle cx="104" cy="98" r="1" fill="rgba(0,2,0,0)"/>
-  <circle cx="105" cy="98" r="1" fill="rgba(4,2,0,0)"/>
-  <circle cx="106" cy="98" r="1" fill="rgba(4,2,0,0)"/>
-  <circle cx="107" cy="98" r="1" fill="rgba(4,2,0,0)"/>
-  <circle cx="108" cy="98" r="1" fill="rgba(4,2,0,0)"/>
-  <circle cx="109" cy="98" r="1" fill="rgba(4,2,0,0)"/>
-  <circle cx="110" cy="98" r="1" fill="rgba(4,2,0,0)"/>
-  <circle cx="111" cy="98" r="1" fill="rgba(4,2,0,0)"/>
-  <circle cx="112" cy="98" r="1" fill="rgba(4,2,0,0)"/>
-  <circle cx="113" cy="98" r="1" fill="rgba(4,2,0,0)"/>
-  <circle cx="114" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="98" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="99" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="99" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="19" cy="99" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="20" cy="99" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="21" cy="99" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="22" cy="99" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="23" cy="99" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="24" cy="99" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="25" cy="99" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="26" cy="99" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="27" cy="99" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="28" cy="99" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="29" cy="99" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="30" cy="99" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="31" cy="99" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="32" cy="99" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="33" cy="99" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="34" cy="99" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="35" cy="99" r="1" fill="rgba(95,6,0,0.101961)"/>
-  <circle cx="36" cy="99" r="1" fill="rgba(43,2,0,0.392157)"/>
-  <circle cx="37" cy="99" r="1" fill="rgba(0,0,0,0.501961)"/>
-  <circle cx="38" cy="99" r="1" fill="rgba(94,10,2,0.701961)"/>
-  <circle cx="39" cy="99" r="1" fill="rgba(191,27,7,0.992157)"/>
-  <circle cx="40" cy="99" r="1" fill="rgba(193,27,7,1)"/>
-  <circle cx="41" cy="99" r="1" fill="rgba(192,27,7,1)"/>
-  <circle cx="42" cy="99" r="1" fill="rgba(192,28,7,1)"/>
-  <circle cx="43" cy="99" r="1" fill="rgba(194,29,8,1)"/>
-  <circle cx="44" cy="99" r="1" fill="rgba(196,31,8,1)"/>
-  <circle cx="45" cy="99" r="1" fill="rgba(197,31,8,1)"/>
-  <circle cx="46" cy="99" r="1" fill="rgba(199,32,9,1)"/>
-  <circle cx="47" cy="99" r="1" fill="rgba(200,33,9,1)"/>
-  <circle cx="48" cy="99" r="1" fill="rgba(200,34,9,1)"/>
-  <circle cx="49" cy="99" r="1" fill="rgba(201,35,10,1)"/>
-  <circle cx="50" cy="99" r="1" fill="rgba(203,36,10,1)"/>
-  <circle cx="51" cy="99" r="1" fill="rgba(203,38,11,1)"/>
-  <circle cx="52" cy="99" r="1" fill="rgba(203,38,11,1)"/>
-  <circle cx="53" cy="99" r="1" fill="rgba(204,39,11,1)"/>
-  <circle cx="54" cy="99" r="1" fill="rgba(204,40,12,1)"/>
-  <circle cx="55" cy="99" r="1" fill="rgba(205,41,12,1)"/>
-  <circle cx="56" cy="99" r="1" fill="rgba(205,42,13,1)"/>
-  <circle cx="57" cy="99" r="1" fill="rgba(205,44,13,1)"/>
-  <circle cx="58" cy="99" r="1" fill="rgba(206,45,14,1)"/>
-  <circle cx="59" cy="99" r="1" fill="rgba(207,46,14,1)"/>
-  <circle cx="60" cy="99" r="1" fill="rgba(207,48,15,1)"/>
-  <circle cx="61" cy="99" r="1" fill="rgba(208,48,16,1)"/>
-  <circle cx="62" cy="99" r="1" fill="rgba(207,48,16,1)"/>
-  <circle cx="63" cy="99" r="1" fill="rgba(203,44,13,1)"/>
-  <circle cx="64" cy="99" r="1" fill="rgba(193,26,5,1)"/>
-  <circle cx="65" cy="99" r="1" fill="rgba(137,2,0,1)"/>
-  <circle cx="66" cy="99" r="1" fill="rgba(138,22,5,1)"/>
-  <circle cx="67" cy="99" r="1" fill="rgba(199,35,9,1)"/>
-  <circle cx="68" cy="99" r="1" fill="rgba(197,39,10,1)"/>
-  <circle cx="69" cy="99" r="1" fill="rgba(203,49,14,1)"/>
-  <circle cx="70" cy="99" r="1" fill="rgba(210,60,20,1)"/>
-  <circle cx="71" cy="99" r="1" fill="rgba(215,69,25,1)"/>
-  <circle cx="72" cy="99" r="1" fill="rgba(218,75,29,1)"/>
-  <circle cx="73" cy="99" r="1" fill="rgba(221,81,31,1)"/>
-  <circle cx="74" cy="99" r="1" fill="rgba(221,84,33,1)"/>
-  <circle cx="75" cy="99" r="1" fill="rgba(223,88,36,1)"/>
-  <circle cx="76" cy="99" r="1" fill="rgba(224,92,38,1)"/>
-  <circle cx="77" cy="99" r="1" fill="rgba(226,95,41,1)"/>
-  <circle cx="78" cy="99" r="1" fill="rgba(227,99,43,1)"/>
-  <circle cx="79" cy="99" r="1" fill="rgba(229,103,46,1)"/>
-  <circle cx="80" cy="99" r="1" fill="rgba(230,107,48,1)"/>
-  <circle cx="81" cy="99" r="1" fill="rgba(232,111,50,1)"/>
-  <circle cx="82" cy="99" r="1" fill="rgba(233,113,51,1)"/>
-  <circle cx="83" cy="99" r="1" fill="rgba(233,114,51,1)"/>
-  <circle cx="84" cy="99" r="1" fill="rgba(234,115,51,1)"/>
-  <circle cx="85" cy="99" r="1" fill="rgba(234,113,48,1)"/>
-  <circle cx="86" cy="99" r="1" fill="rgba(235,110,46,1)"/>
-  <circle cx="87" cy="99" r="1" fill="rgba(233,103,39,1)"/>
-  <circle cx="88" cy="99" r="1" fill="rgba(229,92,32,1)"/>
-  <circle cx="89" cy="99" r="1" fill="rgba(227,84,28,1)"/>
-  <circle cx="90" cy="99" r="1" fill="rgba(230,81,26,1)"/>
-  <circle cx="91" cy="99" r="1" fill="rgba(148,41,11,0.862745)"/>
-  <circle cx="92" cy="99" r="1" fill="rgba(37,4,1,0.690196)"/>
-  <circle cx="93" cy="99" r="1" fill="rgba(40,5,1,0.643137)"/>
-  <circle cx="94" cy="99" r="1" fill="rgba(34,4,0,0.572549)"/>
-  <circle cx="95" cy="99" r="1" fill="rgba(21,0,0,0.490196)"/>
-  <circle cx="96" cy="99" r="1" fill="rgba(15,0,0,0.419608)"/>
-  <circle cx="97" cy="99" r="1" fill="rgba(19,2,0,0.352941)"/>
-  <circle cx="98" cy="99" r="1" fill="rgba(29,9,1,0.286275)"/>
-  <circle cx="99" cy="99" r="1" fill="rgba(42,13,3,0.207843)"/>
-  <circle cx="100" cy="99" r="1" fill="rgba(50,16,3,0.121569)"/>
-  <circle cx="101" cy="99" r="1" fill="rgba(40,6,0,0.0588235)"/>
-  <circle cx="102" cy="99" r="1" fill="rgba(15,0,0,0.0196078)"/>
-  <circle cx="103" cy="99" r="1" fill="rgba(7,3,0,0)"/>
-  <circle cx="104" cy="99" r="1" fill="rgba(15,6,0,0)"/>
-  <circle cx="105" cy="99" r="1" fill="rgba(15,6,0,0)"/>
-  <circle cx="106" cy="99" r="1" fill="rgba(15,6,0,0)"/>
-  <circle cx="107" cy="99" r="1" fill="rgba(15,6,0,0)"/>
-  <circle cx="108" cy="99" r="1" fill="rgba(15,6,0,0)"/>
-  <circle cx="109" cy="99" r="1" fill="rgba(15,6,0,0)"/>
-  <circle cx="110" cy="99" r="1" fill="rgba(15,6,0,0)"/>
-  <circle cx="111" cy="99" r="1" fill="rgba(15,6,0,0)"/>
-  <circle cx="112" cy="99" r="1" fill="rgba(15,6,0,0)"/>
-  <circle cx="113" cy="99" r="1" fill="rgba(15,6,0,0)"/>
-  <circle cx="114" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="99" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="100" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="100" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="19" cy="100" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="20" cy="100" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="21" cy="100" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="22" cy="100" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="23" cy="100" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="24" cy="100" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="25" cy="100" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="26" cy="100" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="27" cy="100" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="28" cy="100" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="29" cy="100" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="30" cy="100" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="31" cy="100" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="32" cy="100" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="33" cy="100" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="34" cy="100" r="1" fill="rgba(109,7,1,0)"/>
-  <circle cx="35" cy="100" r="1" fill="rgba(112,7,1,0.00784314)"/>
-  <circle cx="36" cy="100" r="1" fill="rgba(82,4,0,0.207843)"/>
-  <circle cx="37" cy="100" r="1" fill="rgba(24,0,0,0.458824)"/>
-  <circle cx="38" cy="100" r="1" fill="rgba(4,1,0,0.521569)"/>
-  <circle cx="39" cy="100" r="1" fill="rgba(107,14,3,0.741176)"/>
-  <circle cx="40" cy="100" r="1" fill="rgba(192,29,7,0.996078)"/>
-  <circle cx="41" cy="100" r="1" fill="rgba(194,30,8,1)"/>
-  <circle cx="42" cy="100" r="1" fill="rgba(192,30,8,1)"/>
-  <circle cx="43" cy="100" r="1" fill="rgba(192,31,8,1)"/>
-  <circle cx="44" cy="100" r="1" fill="rgba(194,32,9,1)"/>
-  <circle cx="45" cy="100" r="1" fill="rgba(196,32,9,1)"/>
-  <circle cx="46" cy="100" r="1" fill="rgba(198,34,9,1)"/>
-  <circle cx="47" cy="100" r="1" fill="rgba(199,35,10,1)"/>
-  <circle cx="48" cy="100" r="1" fill="rgba(200,37,10,1)"/>
-  <circle cx="49" cy="100" r="1" fill="rgba(201,37,11,1)"/>
-  <circle cx="50" cy="100" r="1" fill="rgba(203,39,11,1)"/>
-  <circle cx="51" cy="100" r="1" fill="rgba(203,40,11,1)"/>
-  <circle cx="52" cy="100" r="1" fill="rgba(204,41,12,1)"/>
-  <circle cx="53" cy="100" r="1" fill="rgba(205,43,13,1)"/>
-  <circle cx="54" cy="100" r="1" fill="rgba(205,44,13,1)"/>
-  <circle cx="55" cy="100" r="1" fill="rgba(206,45,14,1)"/>
-  <circle cx="56" cy="100" r="1" fill="rgba(206,45,14,1)"/>
-  <circle cx="57" cy="100" r="1" fill="rgba(207,47,15,1)"/>
-  <circle cx="58" cy="100" r="1" fill="rgba(208,48,16,1)"/>
-  <circle cx="59" cy="100" r="1" fill="rgba(209,50,16,1)"/>
-  <circle cx="60" cy="100" r="1" fill="rgba(209,51,17,1)"/>
-  <circle cx="61" cy="100" r="1" fill="rgba(209,52,18,1)"/>
-  <circle cx="62" cy="100" r="1" fill="rgba(207,51,16,1)"/>
-  <circle cx="63" cy="100" r="1" fill="rgba(203,46,14,1)"/>
-  <circle cx="64" cy="100" r="1" fill="rgba(192,25,5,1)"/>
-  <circle cx="65" cy="100" r="1" fill="rgba(135,1,0,1)"/>
-  <circle cx="66" cy="100" r="1" fill="rgba(138,23,5,1)"/>
-  <circle cx="67" cy="100" r="1" fill="rgba(199,35,8,1)"/>
-  <circle cx="68" cy="100" r="1" fill="rgba(196,38,10,1)"/>
-  <circle cx="69" cy="100" r="1" fill="rgba(203,49,14,1)"/>
-  <circle cx="70" cy="100" r="1" fill="rgba(210,61,21,1)"/>
-  <circle cx="71" cy="100" r="1" fill="rgba(216,72,27,1)"/>
-  <circle cx="72" cy="100" r="1" fill="rgba(219,79,31,1)"/>
-  <circle cx="73" cy="100" r="1" fill="rgba(221,85,34,1)"/>
-  <circle cx="74" cy="100" r="1" fill="rgba(223,88,37,1)"/>
-  <circle cx="75" cy="100" r="1" fill="rgba(224,92,38,1)"/>
-  <circle cx="76" cy="100" r="1" fill="rgba(227,96,41,1)"/>
-  <circle cx="77" cy="100" r="1" fill="rgba(227,100,43,1)"/>
-  <circle cx="78" cy="100" r="1" fill="rgba(229,103,46,1)"/>
-  <circle cx="79" cy="100" r="1" fill="rgba(230,106,48,1)"/>
-  <circle cx="80" cy="100" r="1" fill="rgba(231,109,48,1)"/>
-  <circle cx="81" cy="100" r="1" fill="rgba(232,111,49,1)"/>
-  <circle cx="82" cy="100" r="1" fill="rgba(233,111,48,1)"/>
-  <circle cx="83" cy="100" r="1" fill="rgba(233,110,48,1)"/>
-  <circle cx="84" cy="100" r="1" fill="rgba(233,107,44,1)"/>
-  <circle cx="85" cy="100" r="1" fill="rgba(233,103,40,1)"/>
-  <circle cx="86" cy="100" r="1" fill="rgba(230,95,34,1)"/>
-  <circle cx="87" cy="100" r="1" fill="rgba(227,86,28,1)"/>
-  <circle cx="88" cy="100" r="1" fill="rgba(226,78,24,1)"/>
-  <circle cx="89" cy="100" r="1" fill="rgba(228,76,23,1)"/>
-  <circle cx="90" cy="100" r="1" fill="rgba(158,44,11,0.882353)"/>
-  <circle cx="91" cy="100" r="1" fill="rgba(40,4,1,0.698039)"/>
-  <circle cx="92" cy="100" r="1" fill="rgba(39,4,1,0.65098)"/>
-  <circle cx="93" cy="100" r="1" fill="rgba(34,4,0,0.580392)"/>
-  <circle cx="94" cy="100" r="1" fill="rgba(22,0,0,0.505882)"/>
-  <circle cx="95" cy="100" r="1" fill="rgba(15,0,0,0.439216)"/>
-  <circle cx="96" cy="100" r="1" fill="rgba(15,0,0,0.376471)"/>
-  <circle cx="97" cy="100" r="1" fill="rgba(24,6,0,0.313725)"/>
-  <circle cx="98" cy="100" r="1" fill="rgba(37,11,2,0.235294)"/>
-  <circle cx="99" cy="100" r="1" fill="rgba(47,15,3,0.152941)"/>
-  <circle cx="100" cy="100" r="1" fill="rgba(51,13,1,0.0784314)"/>
-  <circle cx="101" cy="100" r="1" fill="rgba(42,3,0,0.027451)"/>
-  <circle cx="102" cy="100" r="1" fill="rgba(0,0,0,0.00784314)"/>
-  <circle cx="103" cy="100" r="1" fill="rgba(7,2,0,0)"/>
-  <circle cx="104" cy="100" r="1" fill="rgba(10,3,0,0)"/>
-  <circle cx="105" cy="100" r="1" fill="rgba(10,3,0,0)"/>
-  <circle cx="106" cy="100" r="1" fill="rgba(10,3,0,0)"/>
-  <circle cx="107" cy="100" r="1" fill="rgba(10,3,0,0)"/>
-  <circle cx="108" cy="100" r="1" fill="rgba(10,3,0,0)"/>
-  <circle cx="109" cy="100" r="1" fill="rgba(10,3,0,0)"/>
-  <circle cx="110" cy="100" r="1" fill="rgba(10,3,0,0)"/>
-  <circle cx="111" cy="100" r="1" fill="rgba(10,3,0,0)"/>
-  <circle cx="112" cy="100" r="1" fill="rgba(10,3,0,0)"/>
-  <circle cx="113" cy="100" r="1" fill="rgba(10,3,0,0)"/>
-  <circle cx="114" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="100" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="101" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="101" r="1" fill="rgba(113,8,1,0)"/>
-  <circle cx="19" cy="101" r="1" fill="rgba(113,8,1,0)"/>
-  <circle cx="20" cy="101" r="1" fill="rgba(113,8,1,0)"/>
-  <circle cx="21" cy="101" r="1" fill="rgba(113,8,1,0)"/>
-  <circle cx="22" cy="101" r="1" fill="rgba(113,8,1,0)"/>
-  <circle cx="23" cy="101" r="1" fill="rgba(113,8,1,0)"/>
-  <circle cx="24" cy="101" r="1" fill="rgba(113,8,1,0)"/>
-  <circle cx="25" cy="101" r="1" fill="rgba(113,8,1,0)"/>
-  <circle cx="26" cy="101" r="1" fill="rgba(113,8,1,0)"/>
-  <circle cx="27" cy="101" r="1" fill="rgba(113,8,1,0)"/>
-  <circle cx="28" cy="101" r="1" fill="rgba(113,8,1,0)"/>
-  <circle cx="29" cy="101" r="1" fill="rgba(113,8,1,0)"/>
-  <circle cx="30" cy="101" r="1" fill="rgba(113,8,1,0)"/>
-  <circle cx="31" cy="101" r="1" fill="rgba(113,8,1,0)"/>
-  <circle cx="32" cy="101" r="1" fill="rgba(113,8,1,0)"/>
-  <circle cx="33" cy="101" r="1" fill="rgba(113,8,1,0)"/>
-  <circle cx="34" cy="101" r="1" fill="rgba(113,8,1,0)"/>
-  <circle cx="35" cy="101" r="1" fill="rgba(114,8,1,0)"/>
-  <circle cx="36" cy="101" r="1" fill="rgba(107,8,1,0.0431373)"/>
-  <circle cx="37" cy="101" r="1" fill="rgba(61,4,0,0.309804)"/>
-  <circle cx="38" cy="101" r="1" fill="rgba(15,0,0,0.494118)"/>
-  <circle cx="39" cy="101" r="1" fill="rgba(12,1,0,0.533333)"/>
-  <circle cx="40" cy="101" r="1" fill="rgba(107,15,3,0.752941)"/>
-  <circle cx="41" cy="101" r="1" fill="rgba(192,31,8,0.992157)"/>
-  <circle cx="42" cy="101" r="1" fill="rgba(196,33,9,1)"/>
-  <circle cx="43" cy="101" r="1" fill="rgba(192,32,9,1)"/>
-  <circle cx="44" cy="101" r="1" fill="rgba(194,33,9,1)"/>
-  <circle cx="45" cy="101" r="1" fill="rgba(195,34,9,1)"/>
-  <circle cx="46" cy="101" r="1" fill="rgba(196,35,10,1)"/>
-  <circle cx="47" cy="101" r="1" fill="rgba(198,36,10,1)"/>
-  <circle cx="48" cy="101" r="1" fill="rgba(200,38,11,1)"/>
-  <circle cx="49" cy="101" r="1" fill="rgba(200,39,11,1)"/>
-  <circle cx="50" cy="101" r="1" fill="rgba(202,41,12,1)"/>
-  <circle cx="51" cy="101" r="1" fill="rgba(203,42,13,1)"/>
-  <circle cx="52" cy="101" r="1" fill="rgba(204,44,13,1)"/>
-  <circle cx="53" cy="101" r="1" fill="rgba(205,45,14,1)"/>
-  <circle cx="54" cy="101" r="1" fill="rgba(207,46,14,1)"/>
-  <circle cx="55" cy="101" r="1" fill="rgba(207,48,15,1)"/>
-  <circle cx="56" cy="101" r="1" fill="rgba(207,49,16,1)"/>
-  <circle cx="57" cy="101" r="1" fill="rgba(209,51,17,1)"/>
-  <circle cx="58" cy="101" r="1" fill="rgba(209,52,18,1)"/>
-  <circle cx="59" cy="101" r="1" fill="rgba(210,53,18,1)"/>
-  <circle cx="60" cy="101" r="1" fill="rgba(210,55,19,1)"/>
-  <circle cx="61" cy="101" r="1" fill="rgba(209,56,19,1)"/>
-  <circle cx="62" cy="101" r="1" fill="rgba(207,54,17,1)"/>
-  <circle cx="63" cy="101" r="1" fill="rgba(203,48,14,1)"/>
-  <circle cx="64" cy="101" r="1" fill="rgba(191,25,5,1)"/>
-  <circle cx="65" cy="101" r="1" fill="rgba(131,1,0,1)"/>
-  <circle cx="66" cy="101" r="1" fill="rgba(139,22,5,1)"/>
-  <circle cx="67" cy="101" r="1" fill="rgba(199,34,8,1)"/>
-  <circle cx="68" cy="101" r="1" fill="rgba(196,38,10,1)"/>
-  <circle cx="69" cy="101" r="1" fill="rgba(203,49,14,1)"/>
-  <circle cx="70" cy="101" r="1" fill="rgba(210,62,21,1)"/>
-  <circle cx="71" cy="101" r="1" fill="rgba(217,75,28,1)"/>
-  <circle cx="72" cy="101" r="1" fill="rgba(221,83,33,1)"/>
-  <circle cx="73" cy="101" r="1" fill="rgba(223,89,37,1)"/>
-  <circle cx="74" cy="101" r="1" fill="rgba(224,93,39,1)"/>
-  <circle cx="75" cy="101" r="1" fill="rgba(226,96,41,1)"/>
-  <circle cx="76" cy="101" r="1" fill="rgba(227,100,43,1)"/>
-  <circle cx="77" cy="101" r="1" fill="rgba(228,102,45,1)"/>
-  <circle cx="78" cy="101" r="1" fill="rgba(229,104,46,1)"/>
-  <circle cx="79" cy="101" r="1" fill="rgba(230,106,46,1)"/>
-  <circle cx="80" cy="101" r="1" fill="rgba(230,105,45,1)"/>
-  <circle cx="81" cy="101" r="1" fill="rgba(231,106,44,1)"/>
-  <circle cx="82" cy="101" r="1" fill="rgba(232,104,42,1)"/>
-  <circle cx="83" cy="101" r="1" fill="rgba(232,101,39,1)"/>
-  <circle cx="84" cy="101" r="1" fill="rgba(231,97,35,1)"/>
-  <circle cx="85" cy="101" r="1" fill="rgba(229,89,30,1)"/>
-  <circle cx="86" cy="101" r="1" fill="rgba(225,80,24,1)"/>
-  <circle cx="87" cy="101" r="1" fill="rgba(224,74,22,1)"/>
-  <circle cx="88" cy="101" r="1" fill="rgba(226,71,20,1)"/>
-  <circle cx="89" cy="101" r="1" fill="rgba(156,41,10,0.87451)"/>
-  <circle cx="90" cy="101" r="1" fill="rgba(42,5,1,0.701961)"/>
-  <circle cx="91" cy="101" r="1" fill="rgba(39,4,1,0.65098)"/>
-  <circle cx="92" cy="101" r="1" fill="rgba(36,4,0,0.592157)"/>
-  <circle cx="93" cy="101" r="1" fill="rgba(24,1,0,0.517647)"/>
-  <circle cx="94" cy="101" r="1" fill="rgba(15,0,0,0.454902)"/>
-  <circle cx="95" cy="101" r="1" fill="rgba(10,0,0,0.392157)"/>
-  <circle cx="96" cy="101" r="1" fill="rgba(19,4,0,0.337255)"/>
-  <circle cx="97" cy="101" r="1" fill="rgba(33,9,2,0.266667)"/>
-  <circle cx="98" cy="101" r="1" fill="rgba(45,14,3,0.184314)"/>
-  <circle cx="99" cy="101" r="1" fill="rgba(51,14,2,0.101961)"/>
-  <circle cx="100" cy="101" r="1" fill="rgba(59,3,0,0.0431373)"/>
-  <circle cx="101" cy="101" r="1" fill="rgba(34,0,0,0.0117647)"/>
-  <circle cx="102" cy="101" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="103" cy="101" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="104" cy="101" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="105" cy="101" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="106" cy="101" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="107" cy="101" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="108" cy="101" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="109" cy="101" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="110" cy="101" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="111" cy="101" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="112" cy="101" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="113" cy="101" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="114" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="101" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="102" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="102" r="1" fill="rgba(113,10,1,0)"/>
-  <circle cx="19" cy="102" r="1" fill="rgba(113,10,1,0)"/>
-  <circle cx="20" cy="102" r="1" fill="rgba(113,10,1,0)"/>
-  <circle cx="21" cy="102" r="1" fill="rgba(113,10,1,0)"/>
-  <circle cx="22" cy="102" r="1" fill="rgba(113,10,1,0)"/>
-  <circle cx="23" cy="102" r="1" fill="rgba(113,10,1,0)"/>
-  <circle cx="24" cy="102" r="1" fill="rgba(113,10,1,0)"/>
-  <circle cx="25" cy="102" r="1" fill="rgba(113,10,1,0)"/>
-  <circle cx="26" cy="102" r="1" fill="rgba(113,10,1,0)"/>
-  <circle cx="27" cy="102" r="1" fill="rgba(113,10,1,0)"/>
-  <circle cx="28" cy="102" r="1" fill="rgba(113,10,1,0)"/>
-  <circle cx="29" cy="102" r="1" fill="rgba(113,10,1,0)"/>
-  <circle cx="30" cy="102" r="1" fill="rgba(113,10,1,0)"/>
-  <circle cx="31" cy="102" r="1" fill="rgba(113,10,1,0)"/>
-  <circle cx="32" cy="102" r="1" fill="rgba(113,10,1,0)"/>
-  <circle cx="33" cy="102" r="1" fill="rgba(113,10,1,0)"/>
-  <circle cx="34" cy="102" r="1" fill="rgba(113,10,1,0)"/>
-  <circle cx="35" cy="102" r="1" fill="rgba(113,10,1,0)"/>
-  <circle cx="36" cy="102" r="1" fill="rgba(114,10,1,0)"/>
-  <circle cx="37" cy="102" r="1" fill="rgba(98,8,1,0.113725)"/>
-  <circle cx="38" cy="102" r="1" fill="rgba(45,2,0,0.392157)"/>
-  <circle cx="39" cy="102" r="1" fill="rgba(12,0,0,0.505882)"/>
-  <circle cx="40" cy="102" r="1" fill="rgba(10,1,0,0.537255)"/>
-  <circle cx="41" cy="102" r="1" fill="rgba(94,13,3,0.721569)"/>
-  <circle cx="42" cy="102" r="1" fill="rgba(189,33,9,0.976471)"/>
-  <circle cx="43" cy="102" r="1" fill="rgba(199,36,10,1)"/>
-  <circle cx="44" cy="102" r="1" fill="rgba(194,34,10,1)"/>
-  <circle cx="45" cy="102" r="1" fill="rgba(194,35,10,1)"/>
-  <circle cx="46" cy="102" r="1" fill="rgba(196,36,10,1)"/>
-  <circle cx="47" cy="102" r="1" fill="rgba(197,37,11,1)"/>
-  <circle cx="48" cy="102" r="1" fill="rgba(198,39,11,1)"/>
-  <circle cx="49" cy="102" r="1" fill="rgba(200,40,11,1)"/>
-  <circle cx="50" cy="102" r="1" fill="rgba(201,42,13,1)"/>
-  <circle cx="51" cy="102" r="1" fill="rgba(202,44,14,1)"/>
-  <circle cx="52" cy="102" r="1" fill="rgba(204,46,14,1)"/>
-  <circle cx="53" cy="102" r="1" fill="rgba(204,47,15,1)"/>
-  <circle cx="54" cy="102" r="1" fill="rgba(206,49,16,1)"/>
-  <circle cx="55" cy="102" r="1" fill="rgba(207,51,16,1)"/>
-  <circle cx="56" cy="102" r="1" fill="rgba(208,52,18,1)"/>
-  <circle cx="57" cy="102" r="1" fill="rgba(209,54,18,1)"/>
-  <circle cx="58" cy="102" r="1" fill="rgba(210,55,19,1)"/>
-  <circle cx="59" cy="102" r="1" fill="rgba(210,57,20,1)"/>
-  <circle cx="60" cy="102" r="1" fill="rgba(210,58,20,1)"/>
-  <circle cx="61" cy="102" r="1" fill="rgba(210,58,20,1)"/>
-  <circle cx="62" cy="102" r="1" fill="rgba(207,55,18,1)"/>
-  <circle cx="63" cy="102" r="1" fill="rgba(203,49,14,1)"/>
-  <circle cx="64" cy="102" r="1" fill="rgba(190,25,5,1)"/>
-  <circle cx="65" cy="102" r="1" fill="rgba(130,0,0,1)"/>
-  <circle cx="66" cy="102" r="1" fill="rgba(140,24,5,1)"/>
-  <circle cx="67" cy="102" r="1" fill="rgba(200,35,8,1)"/>
-  <circle cx="68" cy="102" r="1" fill="rgba(197,40,10,1)"/>
-  <circle cx="69" cy="102" r="1" fill="rgba(203,50,14,1)"/>
-  <circle cx="70" cy="102" r="1" fill="rgba(210,64,22,1)"/>
-  <circle cx="71" cy="102" r="1" fill="rgba(217,78,30,1)"/>
-  <circle cx="72" cy="102" r="1" fill="rgba(222,87,35,1)"/>
-  <circle cx="73" cy="102" r="1" fill="rgba(224,92,39,1)"/>
-  <circle cx="74" cy="102" r="1" fill="rgba(225,95,41,1)"/>
-  <circle cx="75" cy="102" r="1" fill="rgba(227,98,42,1)"/>
-  <circle cx="76" cy="102" r="1" fill="rgba(227,100,43,1)"/>
-  <circle cx="77" cy="102" r="1" fill="rgba(227,101,43,1)"/>
-  <circle cx="78" cy="102" r="1" fill="rgba(228,101,42,1)"/>
-  <circle cx="79" cy="102" r="1" fill="rgba(229,100,41,1)"/>
-  <circle cx="80" cy="102" r="1" fill="rgba(229,99,40,1)"/>
-  <circle cx="81" cy="102" r="1" fill="rgba(230,97,37,1)"/>
-  <circle cx="82" cy="102" r="1" fill="rgba(230,94,34,1)"/>
-  <circle cx="83" cy="102" r="1" fill="rgba(230,92,32,1)"/>
-  <circle cx="84" cy="102" r="1" fill="rgba(229,85,27,1)"/>
-  <circle cx="85" cy="102" r="1" fill="rgba(224,76,22,1)"/>
-  <circle cx="86" cy="102" r="1" fill="rgba(227,73,20,1)"/>
-  <circle cx="87" cy="102" r="1" fill="rgba(223,69,19,1)"/>
-  <circle cx="88" cy="102" r="1" fill="rgba(141,35,8,0.854902)"/>
-  <circle cx="89" cy="102" r="1" fill="rgba(39,4,1,0.694118)"/>
-  <circle cx="90" cy="102" r="1" fill="rgba(39,5,1,0.654902)"/>
-  <circle cx="91" cy="102" r="1" fill="rgba(36,4,0,0.596078)"/>
-  <circle cx="92" cy="102" r="1" fill="rgba(24,0,0,0.52549)"/>
-  <circle cx="93" cy="102" r="1" fill="rgba(15,0,0,0.462745)"/>
-  <circle cx="94" cy="102" r="1" fill="rgba(10,0,0,0.411765)"/>
-  <circle cx="95" cy="102" r="1" fill="rgba(17,2,0,0.352941)"/>
-  <circle cx="96" cy="102" r="1" fill="rgba(29,8,1,0.290196)"/>
-  <circle cx="97" cy="102" r="1" fill="rgba(40,13,3,0.207843)"/>
-  <circle cx="98" cy="102" r="1" fill="rgba(49,16,3,0.12549)"/>
-  <circle cx="99" cy="102" r="1" fill="rgba(51,6,0,0.0627451)"/>
-  <circle cx="100" cy="102" r="1" fill="rgba(39,0,0,0.0196078)"/>
-  <circle cx="101" cy="102" r="1" fill="rgba(12,3,0,0)"/>
-  <circle cx="102" cy="102" r="1" fill="rgba(15,7,2,0)"/>
-  <circle cx="103" cy="102" r="1" fill="rgba(15,7,1,0)"/>
-  <circle cx="104" cy="102" r="1" fill="rgba(15,7,1,0)"/>
-  <circle cx="105" cy="102" r="1" fill="rgba(15,7,1,0)"/>
-  <circle cx="106" cy="102" r="1" fill="rgba(15,7,1,0)"/>
-  <circle cx="107" cy="102" r="1" fill="rgba(15,7,1,0)"/>
-  <circle cx="108" cy="102" r="1" fill="rgba(15,7,1,0)"/>
-  <circle cx="109" cy="102" r="1" fill="rgba(15,7,1,0)"/>
-  <circle cx="110" cy="102" r="1" fill="rgba(15,7,1,0)"/>
-  <circle cx="111" cy="102" r="1" fill="rgba(15,7,1,0)"/>
-  <circle cx="112" cy="102" r="1" fill="rgba(15,7,1,0)"/>
-  <circle cx="113" cy="102" r="1" fill="rgba(15,7,1,0)"/>
-  <circle cx="114" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="102" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="103" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="103" r="1" fill="rgba(114,11,1,0)"/>
-  <circle cx="19" cy="103" r="1" fill="rgba(114,11,1,0)"/>
-  <circle cx="20" cy="103" r="1" fill="rgba(114,11,1,0)"/>
-  <circle cx="21" cy="103" r="1" fill="rgba(114,11,1,0)"/>
-  <circle cx="22" cy="103" r="1" fill="rgba(114,11,1,0)"/>
-  <circle cx="23" cy="103" r="1" fill="rgba(114,11,1,0)"/>
-  <circle cx="24" cy="103" r="1" fill="rgba(114,11,1,0)"/>
-  <circle cx="25" cy="103" r="1" fill="rgba(114,11,1,0)"/>
-  <circle cx="26" cy="103" r="1" fill="rgba(114,11,1,0)"/>
-  <circle cx="27" cy="103" r="1" fill="rgba(114,11,1,0)"/>
-  <circle cx="28" cy="103" r="1" fill="rgba(114,11,1,0)"/>
-  <circle cx="29" cy="103" r="1" fill="rgba(114,11,1,0)"/>
-  <circle cx="30" cy="103" r="1" fill="rgba(114,11,1,0)"/>
-  <circle cx="31" cy="103" r="1" fill="rgba(114,11,1,0)"/>
-  <circle cx="32" cy="103" r="1" fill="rgba(114,11,1,0)"/>
-  <circle cx="33" cy="103" r="1" fill="rgba(114,11,1,0)"/>
-  <circle cx="34" cy="103" r="1" fill="rgba(114,11,1,0)"/>
-  <circle cx="35" cy="103" r="1" fill="rgba(114,11,1,0)"/>
-  <circle cx="36" cy="103" r="1" fill="rgba(114,11,1,0)"/>
-  <circle cx="37" cy="103" r="1" fill="rgba(114,11,2,0.00392157)"/>
-  <circle cx="38" cy="103" r="1" fill="rgba(88,7,1,0.192157)"/>
-  <circle cx="39" cy="103" r="1" fill="rgba(31,0,0,0.439216)"/>
-  <circle cx="40" cy="103" r="1" fill="rgba(12,0,0,0.509804)"/>
-  <circle cx="41" cy="103" r="1" fill="rgba(10,1,0,0.533333)"/>
-  <circle cx="42" cy="103" r="1" fill="rgba(78,10,2,0.682353)"/>
-  <circle cx="43" cy="103" r="1" fill="rgba(178,32,9,0.941176)"/>
-  <circle cx="44" cy="103" r="1" fill="rgba(202,38,11,1)"/>
-  <circle cx="45" cy="103" r="1" fill="rgba(196,37,10,1)"/>
-  <circle cx="46" cy="103" r="1" fill="rgba(195,37,11,1)"/>
-  <circle cx="47" cy="103" r="1" fill="rgba(196,38,11,1)"/>
-  <circle cx="48" cy="103" r="1" fill="rgba(197,39,11,1)"/>
-  <circle cx="49" cy="103" r="1" fill="rgba(198,40,12,1)"/>
-  <circle cx="50" cy="103" r="1" fill="rgba(200,42,13,1)"/>
-  <circle cx="51" cy="103" r="1" fill="rgba(200,44,13,1)"/>
-  <circle cx="52" cy="103" r="1" fill="rgba(203,46,14,1)"/>
-  <circle cx="53" cy="103" r="1" fill="rgba(203,48,15,1)"/>
-  <circle cx="54" cy="103" r="1" fill="rgba(205,51,17,1)"/>
-  <circle cx="55" cy="103" r="1" fill="rgba(207,53,18,1)"/>
-  <circle cx="56" cy="103" r="1" fill="rgba(208,55,18,1)"/>
-  <circle cx="57" cy="103" r="1" fill="rgba(210,57,19,1)"/>
-  <circle cx="58" cy="103" r="1" fill="rgba(210,59,20,1)"/>
-  <circle cx="59" cy="103" r="1" fill="rgba(211,60,21,1)"/>
-  <circle cx="60" cy="103" r="1" fill="rgba(211,61,22,1)"/>
-  <circle cx="61" cy="103" r="1" fill="rgba(210,60,20,1)"/>
-  <circle cx="62" cy="103" r="1" fill="rgba(207,56,19,1)"/>
-  <circle cx="63" cy="103" r="1" fill="rgba(202,49,14,1)"/>
-  <circle cx="64" cy="103" r="1" fill="rgba(189,25,6,1)"/>
-  <circle cx="65" cy="103" r="1" fill="maroon"/>
-  <circle cx="66" cy="103" r="1" fill="rgba(140,25,5,1)"/>
-  <circle cx="67" cy="103" r="1" fill="rgba(201,38,9,1)"/>
-  <circle cx="68" cy="103" r="1" fill="rgba(199,42,10,1)"/>
-  <circle cx="69" cy="103" r="1" fill="rgba(204,53,16,1)"/>
-  <circle cx="70" cy="103" r="1" fill="rgba(212,67,23,1)"/>
-  <circle cx="71" cy="103" r="1" fill="rgba(218,79,30,1)"/>
-  <circle cx="72" cy="103" r="1" fill="rgba(222,88,36,1)"/>
-  <circle cx="73" cy="103" r="1" fill="rgba(224,93,38,1)"/>
-  <circle cx="74" cy="103" r="1" fill="rgba(224,94,39,1)"/>
-  <circle cx="75" cy="103" r="1" fill="rgba(225,95,40,1)"/>
-  <circle cx="76" cy="103" r="1" fill="rgba(226,94,38,1)"/>
-  <circle cx="77" cy="103" r="1" fill="rgba(227,94,37,1)"/>
-  <circle cx="78" cy="103" r="1" fill="rgba(227,93,36,1)"/>
-  <circle cx="79" cy="103" r="1" fill="rgba(227,91,33,1)"/>
-  <circle cx="80" cy="103" r="1" fill="rgba(228,90,31,1)"/>
-  <circle cx="81" cy="103" r="1" fill="rgba(229,89,30,1)"/>
-  <circle cx="82" cy="103" r="1" fill="rgba(228,87,28,1)"/>
-  <circle cx="83" cy="103" r="1" fill="rgba(227,82,25,1)"/>
-  <circle cx="84" cy="103" r="1" fill="rgba(225,77,22,1)"/>
-  <circle cx="85" cy="103" r="1" fill="rgba(229,74,21,1)"/>
-  <circle cx="86" cy="103" r="1" fill="rgba(214,66,18,0.980392)"/>
-  <circle cx="87" cy="103" r="1" fill="rgba(119,27,6,0.819608)"/>
-  <circle cx="88" cy="103" r="1" fill="rgba(37,4,1,0.694118)"/>
-  <circle cx="89" cy="103" r="1" fill="rgba(42,5,1,0.654902)"/>
-  <circle cx="90" cy="103" r="1" fill="rgba(37,4,0,0.596078)"/>
-  <circle cx="91" cy="103" r="1" fill="rgba(26,0,0,0.529412)"/>
-  <circle cx="92" cy="103" r="1" fill="rgba(15,0,0,0.470588)"/>
-  <circle cx="93" cy="103" r="1" fill="rgba(7,0,0,0.419608)"/>
-  <circle cx="94" cy="103" r="1" fill="rgba(12,2,0,0.368627)"/>
-  <circle cx="95" cy="103" r="1" fill="rgba(28,7,0,0.305882)"/>
-  <circle cx="96" cy="103" r="1" fill="rgba(39,12,3,0.231373)"/>
-  <circle cx="97" cy="103" r="1" fill="rgba(49,15,3,0.14902)"/>
-  <circle cx="98" cy="103" r="1" fill="rgba(51,12,1,0.0784314)"/>
-  <circle cx="99" cy="103" r="1" fill="rgba(33,1,0,0.0313725)"/>
-  <circle cx="100" cy="103" r="1" fill="rgba(0,0,0,0.00392157)"/>
-  <circle cx="101" cy="103" r="1" fill="rgba(10,4,0,0)"/>
-  <circle cx="102" cy="103" r="1" fill="rgba(15,7,3,0)"/>
-  <circle cx="103" cy="103" r="1" fill="rgba(15,7,2,0)"/>
-  <circle cx="104" cy="103" r="1" fill="rgba(15,7,2,0)"/>
-  <circle cx="105" cy="103" r="1" fill="rgba(15,7,2,0)"/>
-  <circle cx="106" cy="103" r="1" fill="rgba(15,7,2,0)"/>
-  <circle cx="107" cy="103" r="1" fill="rgba(15,7,2,0)"/>
-  <circle cx="108" cy="103" r="1" fill="rgba(15,7,2,0)"/>
-  <circle cx="109" cy="103" r="1" fill="rgba(15,7,2,0)"/>
-  <circle cx="110" cy="103" r="1" fill="rgba(15,7,2,0)"/>
-  <circle cx="111" cy="103" r="1" fill="rgba(15,7,2,0)"/>
-  <circle cx="112" cy="103" r="1" fill="rgba(15,7,2,0)"/>
-  <circle cx="113" cy="103" r="1" fill="rgba(15,7,2,0)"/>
-  <circle cx="114" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="103" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="104" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="104" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="19" cy="104" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="20" cy="104" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="21" cy="104" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="22" cy="104" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="23" cy="104" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="24" cy="104" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="25" cy="104" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="26" cy="104" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="27" cy="104" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="28" cy="104" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="29" cy="104" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="30" cy="104" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="31" cy="104" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="32" cy="104" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="33" cy="104" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="34" cy="104" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="35" cy="104" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="36" cy="104" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="37" cy="104" r="1" fill="rgba(115,11,2,0)"/>
-  <circle cx="38" cy="104" r="1" fill="rgba(110,11,2,0.027451)"/>
-  <circle cx="39" cy="104" r="1" fill="rgba(70,5,0,0.25098)"/>
-  <circle cx="40" cy="104" r="1" fill="rgba(19,0,0,0.462745)"/>
-  <circle cx="41" cy="104" r="1" fill="rgba(15,0,0,0.505882)"/>
-  <circle cx="42" cy="104" r="1" fill="rgba(12,0,0,0.529412)"/>
-  <circle cx="43" cy="104" r="1" fill="rgba(55,7,1,0.635294)"/>
-  <circle cx="44" cy="104" r="1" fill="rgba(155,28,8,0.882353)"/>
-  <circle cx="45" cy="104" r="1" fill="rgba(201,39,11,1)"/>
-  <circle cx="46" cy="104" r="1" fill="rgba(198,39,11,1)"/>
-  <circle cx="47" cy="104" r="1" fill="rgba(195,39,11,1)"/>
-  <circle cx="48" cy="104" r="1" fill="rgba(195,39,11,1)"/>
-  <circle cx="49" cy="104" r="1" fill="rgba(196,40,11,1)"/>
-  <circle cx="50" cy="104" r="1" fill="rgba(196,41,12,1)"/>
-  <circle cx="51" cy="104" r="1" fill="rgba(198,43,13,1)"/>
-  <circle cx="52" cy="104" r="1" fill="rgba(200,45,14,1)"/>
-  <circle cx="53" cy="104" r="1" fill="rgba(202,47,14,1)"/>
-  <circle cx="54" cy="104" r="1" fill="rgba(203,50,16,1)"/>
-  <circle cx="55" cy="104" r="1" fill="rgba(205,53,17,1)"/>
-  <circle cx="56" cy="104" r="1" fill="rgba(207,55,18,1)"/>
-  <circle cx="57" cy="104" r="1" fill="rgba(208,58,20,1)"/>
-  <circle cx="58" cy="104" r="1" fill="rgba(210,60,21,1)"/>
-  <circle cx="59" cy="104" r="1" fill="rgba(210,62,22,1)"/>
-  <circle cx="60" cy="104" r="1" fill="rgba(211,63,22,1)"/>
-  <circle cx="61" cy="104" r="1" fill="rgba(210,61,21,1)"/>
-  <circle cx="62" cy="104" r="1" fill="rgba(206,55,18,1)"/>
-  <circle cx="63" cy="104" r="1" fill="rgba(202,48,14,1)"/>
-  <circle cx="64" cy="104" r="1" fill="rgba(189,25,5,1)"/>
-  <circle cx="65" cy="104" r="1" fill="rgba(125,0,0,1)"/>
-  <circle cx="66" cy="104" r="1" fill="rgba(141,26,6,1)"/>
-  <circle cx="67" cy="104" r="1" fill="rgba(203,39,9,1)"/>
-  <circle cx="68" cy="104" r="1" fill="rgba(200,44,11,1)"/>
-  <circle cx="69" cy="104" r="1" fill="rgba(205,55,16,1)"/>
-  <circle cx="70" cy="104" r="1" fill="rgba(212,68,23,1)"/>
-  <circle cx="71" cy="104" r="1" fill="rgba(217,79,29,1)"/>
-  <circle cx="72" cy="104" r="1" fill="rgba(221,85,33,1)"/>
-  <circle cx="73" cy="104" r="1" fill="rgba(222,87,34,1)"/>
-  <circle cx="74" cy="104" r="1" fill="rgba(223,87,33,1)"/>
-  <circle cx="75" cy="104" r="1" fill="rgba(223,86,32,1)"/>
-  <circle cx="76" cy="104" r="1" fill="rgba(224,85,31,1)"/>
-  <circle cx="77" cy="104" r="1" fill="rgba(224,84,30,1)"/>
-  <circle cx="78" cy="104" r="1" fill="rgba(225,83,28,1)"/>
-  <circle cx="79" cy="104" r="1" fill="rgba(226,82,27,1)"/>
-  <circle cx="80" cy="104" r="1" fill="rgba(227,84,26,1)"/>
-  <circle cx="81" cy="104" r="1" fill="rgba(227,83,25,1)"/>
-  <circle cx="82" cy="104" r="1" fill="rgba(226,79,23,1)"/>
-  <circle cx="83" cy="104" r="1" fill="rgba(226,76,22,1)"/>
-  <circle cx="84" cy="104" r="1" fill="rgba(231,77,22,1)"/>
-  <circle cx="85" cy="104" r="1" fill="rgba(195,59,15,0.945098)"/>
-  <circle cx="86" cy="104" r="1" fill="rgba(92,19,4,0.776471)"/>
-  <circle cx="87" cy="104" r="1" fill="rgba(31,3,1,0.686275)"/>
-  <circle cx="88" cy="104" r="1" fill="rgba(42,5,1,0.65098)"/>
-  <circle cx="89" cy="104" r="1" fill="rgba(36,4,0,0.592157)"/>
-  <circle cx="90" cy="104" r="1" fill="rgba(26,1,0,0.533333)"/>
-  <circle cx="91" cy="104" r="1" fill="rgba(12,0,0,0.478431)"/>
-  <circle cx="92" cy="104" r="1" fill="rgba(7,0,0,0.431373)"/>
-  <circle cx="93" cy="104" r="1" fill="rgba(12,0,0,0.380392)"/>
-  <circle cx="94" cy="104" r="1" fill="rgba(26,5,0,0.317647)"/>
-  <circle cx="95" cy="104" r="1" fill="rgba(37,10,2,0.247059)"/>
-  <circle cx="96" cy="104" r="1" fill="rgba(46,15,3,0.164706)"/>
-  <circle cx="97" cy="104" r="1" fill="rgba(51,11,2,0.0901961)"/>
-  <circle cx="98" cy="104" r="1" fill="rgba(46,1,0,0.0392157)"/>
-  <circle cx="99" cy="104" r="1" fill="rgba(15,0,0,0.00784314)"/>
-  <circle cx="100" cy="104" r="1" fill="rgba(0,1,0,0)"/>
-  <circle cx="101" cy="104" r="1" fill="rgba(7,3,0,0)"/>
-  <circle cx="102" cy="104" r="1" fill="rgba(10,5,1,0)"/>
-  <circle cx="103" cy="104" r="1" fill="rgba(10,5,1,0)"/>
-  <circle cx="104" cy="104" r="1" fill="rgba(10,5,1,0)"/>
-  <circle cx="105" cy="104" r="1" fill="rgba(10,5,1,0)"/>
-  <circle cx="106" cy="104" r="1" fill="rgba(10,5,1,0)"/>
-  <circle cx="107" cy="104" r="1" fill="rgba(10,5,1,0)"/>
-  <circle cx="108" cy="104" r="1" fill="rgba(10,5,1,0)"/>
-  <circle cx="109" cy="104" r="1" fill="rgba(10,5,1,0)"/>
-  <circle cx="110" cy="104" r="1" fill="rgba(10,5,1,0)"/>
-  <circle cx="111" cy="104" r="1" fill="rgba(10,5,1,0)"/>
-  <circle cx="112" cy="104" r="1" fill="rgba(10,5,1,0)"/>
-  <circle cx="113" cy="104" r="1" fill="rgba(10,5,1,0)"/>
-  <circle cx="114" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="104" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="105" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="105" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="19" cy="105" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="20" cy="105" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="21" cy="105" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="22" cy="105" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="23" cy="105" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="24" cy="105" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="25" cy="105" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="26" cy="105" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="27" cy="105" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="28" cy="105" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="29" cy="105" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="30" cy="105" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="31" cy="105" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="32" cy="105" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="33" cy="105" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="34" cy="105" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="35" cy="105" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="36" cy="105" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="37" cy="105" r="1" fill="rgba(114,11,2,0)"/>
-  <circle cx="38" cy="105" r="1" fill="rgba(111,11,2,0)"/>
-  <circle cx="39" cy="105" r="1" fill="rgba(102,10,1,0.0509804)"/>
-  <circle cx="40" cy="105" r="1" fill="rgba(68,6,0,0.294118)"/>
-  <circle cx="41" cy="105" r="1" fill="rgba(19,0,0,0.47451)"/>
-  <circle cx="42" cy="105" r="1" fill="rgba(15,0,0,0.505882)"/>
-  <circle cx="43" cy="105" r="1" fill="rgba(15,1,0,0.52549)"/>
-  <circle cx="44" cy="105" r="1" fill="rgba(29,3,0,0.584314)"/>
-  <circle cx="45" cy="105" r="1" fill="rgba(119,20,4,0.784314)"/>
-  <circle cx="46" cy="105" r="1" fill="rgba(187,37,10,0.972549)"/>
-  <circle cx="47" cy="105" r="1" fill="rgba(200,40,11,1)"/>
-  <circle cx="48" cy="105" r="1" fill="rgba(194,38,11,1)"/>
-  <circle cx="49" cy="105" r="1" fill="rgba(192,39,11,1)"/>
-  <circle cx="50" cy="105" r="1" fill="rgba(193,39,11,1)"/>
-  <circle cx="51" cy="105" r="1" fill="rgba(195,40,11,1)"/>
-  <circle cx="52" cy="105" r="1" fill="rgba(196,42,12,1)"/>
-  <circle cx="53" cy="105" r="1" fill="rgba(198,44,13,1)"/>
-  <circle cx="54" cy="105" r="1" fill="rgba(200,47,14,1)"/>
-  <circle cx="55" cy="105" r="1" fill="rgba(202,49,16,1)"/>
-  <circle cx="56" cy="105" r="1" fill="rgba(203,52,16,1)"/>
-  <circle cx="57" cy="105" r="1" fill="rgba(205,54,18,1)"/>
-  <circle cx="58" cy="105" r="1" fill="rgba(207,57,20,1)"/>
-  <circle cx="59" cy="105" r="1" fill="rgba(208,60,21,1)"/>
-  <circle cx="60" cy="105" r="1" fill="rgba(209,61,21,1)"/>
-  <circle cx="61" cy="105" r="1" fill="rgba(207,60,20,1)"/>
-  <circle cx="62" cy="105" r="1" fill="rgba(203,55,18,1)"/>
-  <circle cx="63" cy="105" r="1" fill="rgba(200,46,13,1)"/>
-  <circle cx="64" cy="105" r="1" fill="rgba(188,25,5,1)"/>
-  <circle cx="65" cy="105" r="1" fill="rgba(122,0,0,1)"/>
-  <circle cx="66" cy="105" r="1" fill="rgba(142,28,6,1)"/>
-  <circle cx="67" cy="105" r="1" fill="rgba(205,40,9,1)"/>
-  <circle cx="68" cy="105" r="1" fill="rgba(201,45,11,1)"/>
-  <circle cx="69" cy="105" r="1" fill="rgba(207,54,16,1)"/>
-  <circle cx="70" cy="105" r="1" fill="rgba(213,65,22,1)"/>
-  <circle cx="71" cy="105" r="1" fill="rgba(216,72,25,1)"/>
-  <circle cx="72" cy="105" r="1" fill="rgba(217,76,27,1)"/>
-  <circle cx="73" cy="105" r="1" fill="rgba(218,76,27,1)"/>
-  <circle cx="74" cy="105" r="1" fill="rgba(219,75,25,1)"/>
-  <circle cx="75" cy="105" r="1" fill="rgba(220,75,24,1)"/>
-  <circle cx="76" cy="105" r="1" fill="rgba(221,75,23,1)"/>
-  <circle cx="77" cy="105" r="1" fill="rgba(222,76,23,1)"/>
-  <circle cx="78" cy="105" r="1" fill="rgba(225,77,23,1)"/>
-  <circle cx="79" cy="105" r="1" fill="rgba(226,79,23,1)"/>
-  <circle cx="80" cy="105" r="1" fill="rgba(226,78,22,1)"/>
-  <circle cx="81" cy="105" r="1" fill="rgba(225,76,22,1)"/>
-  <circle cx="82" cy="105" r="1" fill="rgba(230,77,22,1)"/>
-  <circle cx="83" cy="105" r="1" fill="rgba(224,72,20,0.996078)"/>
-  <circle cx="84" cy="105" r="1" fill="rgba(157,43,11,0.878431)"/>
-  <circle cx="85" cy="105" r="1" fill="rgba(59,10,2,0.729412)"/>
-  <circle cx="86" cy="105" r="1" fill="rgba(36,3,1,0.678431)"/>
-  <circle cx="87" cy="105" r="1" fill="rgba(43,6,1,0.643137)"/>
-  <circle cx="88" cy="105" r="1" fill="rgba(34,3,0,0.584314)"/>
-  <circle cx="89" cy="105" r="1" fill="rgba(24,0,0,0.529412)"/>
-  <circle cx="90" cy="105" r="1" fill="rgba(12,0,0,0.478431)"/>
-  <circle cx="91" cy="105" r="1" fill="rgba(4,0,0,0.431373)"/>
-  <circle cx="92" cy="105" r="1" fill="rgba(12,0,0,0.388235)"/>
-  <circle cx="93" cy="105" r="1" fill="rgba(24,4,0,0.329412)"/>
-  <circle cx="94" cy="105" r="1" fill="rgba(36,10,1,0.258824)"/>
-  <circle cx="95" cy="105" r="1" fill="rgba(45,15,2,0.176471)"/>
-  <circle cx="96" cy="105" r="1" fill="rgba(49,16,1,0.105882)"/>
-  <circle cx="97" cy="105" r="1" fill="rgba(42,6,0,0.0470588)"/>
-  <circle cx="98" cy="105" r="1" fill="rgba(17,0,0,0.0117647)"/>
-  <circle cx="99" cy="105" r="1" fill="rgba(0,1,0,0)"/>
-  <circle cx="100" cy="105" r="1" fill="rgba(4,2,0,0)"/>
-  <circle cx="101" cy="105" r="1" fill="rgba(4,2,0,0)"/>
-  <circle cx="102" cy="105" r="1" fill="rgba(4,2,0,0)"/>
-  <circle cx="103" cy="105" r="1" fill="rgba(4,2,0,0)"/>
-  <circle cx="104" cy="105" r="1" fill="rgba(4,2,0,0)"/>
-  <circle cx="105" cy="105" r="1" fill="rgba(4,2,0,0)"/>
-  <circle cx="106" cy="105" r="1" fill="rgba(4,2,0,0)"/>
-  <circle cx="107" cy="105" r="1" fill="rgba(4,2,0,0)"/>
-  <circle cx="108" cy="105" r="1" fill="rgba(4,2,0,0)"/>
-  <circle cx="109" cy="105" r="1" fill="rgba(4,2,0,0)"/>
-  <circle cx="110" cy="105" r="1" fill="rgba(4,2,0,0)"/>
-  <circle cx="111" cy="105" r="1" fill="rgba(4,2,0,0)"/>
-  <circle cx="112" cy="105" r="1" fill="rgba(4,2,0,0)"/>
-  <circle cx="113" cy="105" r="1" fill="rgba(4,2,0,0)"/>
-  <circle cx="114" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="105" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="106" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="106" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="19" cy="106" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="20" cy="106" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="21" cy="106" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="22" cy="106" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="23" cy="106" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="24" cy="106" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="25" cy="106" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="26" cy="106" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="27" cy="106" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="28" cy="106" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="29" cy="106" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="30" cy="106" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="31" cy="106" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="32" cy="106" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="33" cy="106" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="34" cy="106" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="35" cy="106" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="36" cy="106" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="37" cy="106" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="38" cy="106" r="1" fill="rgba(114,13,2,0)"/>
-  <circle cx="39" cy="106" r="1" fill="rgba(116,13,2,0)"/>
-  <circle cx="40" cy="106" r="1" fill="rgba(108,12,2,0.0705882)"/>
-  <circle cx="41" cy="106" r="1" fill="rgba(61,5,0,0.321569)"/>
-  <circle cx="42" cy="106" r="1" fill="rgba(10,0,0,0.478431)"/>
-  <circle cx="43" cy="106" r="1" fill="rgba(12,0,0,0.498039)"/>
-  <circle cx="44" cy="106" r="1" fill="rgba(19,1,0,0.521569)"/>
-  <circle cx="45" cy="106" r="1" fill="rgba(17,1,0,0.560784)"/>
-  <circle cx="46" cy="106" r="1" fill="rgba(70,10,2,0.682353)"/>
-  <circle cx="47" cy="106" r="1" fill="rgba(153,27,7,0.886275)"/>
-  <circle cx="48" cy="106" r="1" fill="rgba(195,37,10,1)"/>
-  <circle cx="49" cy="106" r="1" fill="rgba(196,38,10,1)"/>
-  <circle cx="50" cy="106" r="1" fill="rgba(191,37,10,1)"/>
-  <circle cx="51" cy="106" r="1" fill="rgba(191,37,10,1)"/>
-  <circle cx="52" cy="106" r="1" fill="rgba(192,38,10,1)"/>
-  <circle cx="53" cy="106" r="1" fill="rgba(194,40,11,1)"/>
-  <circle cx="54" cy="106" r="1" fill="rgba(196,42,12,1)"/>
-  <circle cx="55" cy="106" r="1" fill="rgba(198,45,13,1)"/>
-  <circle cx="56" cy="106" r="1" fill="rgba(199,47,14,1)"/>
-  <circle cx="57" cy="106" r="1" fill="rgba(200,49,14,1)"/>
-  <circle cx="58" cy="106" r="1" fill="rgba(202,52,16,1)"/>
-  <circle cx="59" cy="106" r="1" fill="rgba(203,54,18,1)"/>
-  <circle cx="60" cy="106" r="1" fill="rgba(203,56,18,1)"/>
-  <circle cx="61" cy="106" r="1" fill="rgba(204,56,18,1)"/>
-  <circle cx="62" cy="106" r="1" fill="rgba(200,51,15,1)"/>
-  <circle cx="63" cy="106" r="1" fill="rgba(198,45,12,1)"/>
-  <circle cx="64" cy="106" r="1" fill="rgba(184,23,5,1)"/>
-  <circle cx="65" cy="106" r="1" fill="rgba(117,0,0,1)"/>
-  <circle cx="66" cy="106" r="1" fill="rgba(142,28,6,1)"/>
-  <circle cx="67" cy="106" r="1" fill="rgba(206,41,9,1)"/>
-  <circle cx="68" cy="106" r="1" fill="rgba(203,45,11,1)"/>
-  <circle cx="69" cy="106" r="1" fill="rgba(207,53,14,1)"/>
-  <circle cx="70" cy="106" r="1" fill="rgba(211,61,18,1)"/>
-  <circle cx="71" cy="106" r="1" fill="rgba(214,66,20,1)"/>
-  <circle cx="72" cy="106" r="1" fill="rgba(215,67,20,1)"/>
-  <circle cx="73" cy="106" r="1" fill="rgba(217,67,20,1)"/>
-  <circle cx="74" cy="106" r="1" fill="rgba(217,67,20,1)"/>
-  <circle cx="75" cy="106" r="1" fill="rgba(219,68,19,1)"/>
-  <circle cx="76" cy="106" r="1" fill="rgba(221,70,20,1)"/>
-  <circle cx="77" cy="106" r="1" fill="rgba(224,73,20,1)"/>
-  <circle cx="78" cy="106" r="1" fill="rgba(224,75,21,1)"/>
-  <circle cx="79" cy="106" r="1" fill="rgba(224,75,21,1)"/>
-  <circle cx="80" cy="106" r="1" fill="rgba(227,75,21,1)"/>
-  <circle cx="81" cy="106" r="1" fill="rgba(229,76,22,1)"/>
-  <circle cx="82" cy="106" r="1" fill="rgba(193,58,16,0.941176)"/>
-  <circle cx="83" cy="106" r="1" fill="rgba(105,24,6,0.796078)"/>
-  <circle cx="84" cy="106" r="1" fill="rgba(37,4,1,0.698039)"/>
-  <circle cx="85" cy="106" r="1" fill="rgba(39,4,1,0.666667)"/>
-  <circle cx="86" cy="106" r="1" fill="rgba(40,5,1,0.627451)"/>
-  <circle cx="87" cy="106" r="1" fill="rgba(33,3,0,0.572549)"/>
-  <circle cx="88" cy="106" r="1" fill="rgba(24,0,0,0.521569)"/>
-  <circle cx="89" cy="106" r="1" fill="rgba(12,0,0,0.47451)"/>
-  <circle cx="90" cy="106" r="1" fill="rgba(4,0,0,0.435294)"/>
-  <circle cx="91" cy="106" r="1" fill="rgba(7,0,0,0.388235)"/>
-  <circle cx="92" cy="106" r="1" fill="rgba(21,4,0,0.337255)"/>
-  <circle cx="93" cy="106" r="1" fill="rgba(33,9,1,0.266667)"/>
-  <circle cx="94" cy="106" r="1" fill="rgba(43,14,2,0.184314)"/>
-  <circle cx="95" cy="106" r="1" fill="rgba(47,14,1,0.113725)"/>
-  <circle cx="96" cy="106" r="1" fill="rgba(37,6,0,0.054902)"/>
-  <circle cx="97" cy="106" r="1" fill="rgba(10,0,0,0.0156863)"/>
-  <circle cx="98" cy="106" r="1" fill="rgba(0,1,0,0)"/>
-  <circle cx="99" cy="106" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="100" cy="106" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="101" cy="106" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="102" cy="106" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="103" cy="106" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="104" cy="106" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="105" cy="106" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="106" cy="106" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="107" cy="106" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="108" cy="106" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="109" cy="106" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="110" cy="106" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="111" cy="106" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="112" cy="106" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="113" cy="106" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="114" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="106" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="107" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="107" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="19" cy="107" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="20" cy="107" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="21" cy="107" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="22" cy="107" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="23" cy="107" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="24" cy="107" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="25" cy="107" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="26" cy="107" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="27" cy="107" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="28" cy="107" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="29" cy="107" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="30" cy="107" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="31" cy="107" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="32" cy="107" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="33" cy="107" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="34" cy="107" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="35" cy="107" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="36" cy="107" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="37" cy="107" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="38" cy="107" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="39" cy="107" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="40" cy="107" r="1" fill="rgba(117,14,3,0)"/>
-  <circle cx="41" cy="107" r="1" fill="rgba(103,13,2,0.0901961)"/>
-  <circle cx="42" cy="107" r="1" fill="rgba(55,5,0,0.333333)"/>
-  <circle cx="43" cy="107" r="1" fill="rgba(10,0,0,0.47451)"/>
-  <circle cx="44" cy="107" r="1" fill="rgba(12,0,0,0.494118)"/>
-  <circle cx="45" cy="107" r="1" fill="rgba(21,1,0,0.517647)"/>
-  <circle cx="46" cy="107" r="1" fill="rgba(21,1,0,0.54902)"/>
-  <circle cx="47" cy="107" r="1" fill="rgba(33,3,0,0.603922)"/>
-  <circle cx="48" cy="107" r="1" fill="rgba(98,14,3,0.74902)"/>
-  <circle cx="49" cy="107" r="1" fill="rgba(166,29,7,0.929412)"/>
-  <circle cx="50" cy="107" r="1" fill="rgba(193,37,9,1)"/>
-  <circle cx="51" cy="107" r="1" fill="rgba(194,37,10,1)"/>
-  <circle cx="52" cy="107" r="1" fill="rgba(191,37,9,1)"/>
-  <circle cx="53" cy="107" r="1" fill="rgba(192,37,9,1)"/>
-  <circle cx="54" cy="107" r="1" fill="rgba(193,38,10,1)"/>
-  <circle cx="55" cy="107" r="1" fill="rgba(194,40,11,1)"/>
-  <circle cx="56" cy="107" r="1" fill="rgba(195,41,11,1)"/>
-  <circle cx="57" cy="107" r="1" fill="rgba(196,42,11,1)"/>
-  <circle cx="58" cy="107" r="1" fill="rgba(197,44,12,1)"/>
-  <circle cx="59" cy="107" r="1" fill="rgba(198,46,13,1)"/>
-  <circle cx="60" cy="107" r="1" fill="rgba(199,48,14,1)"/>
-  <circle cx="61" cy="107" r="1" fill="rgba(199,49,14,1)"/>
-  <circle cx="62" cy="107" r="1" fill="rgba(196,46,13,1)"/>
-  <circle cx="63" cy="107" r="1" fill="rgba(194,42,11,1)"/>
-  <circle cx="64" cy="107" r="1" fill="rgba(179,22,4,1)"/>
-  <circle cx="65" cy="107" r="1" fill="rgba(111,0,0,1)"/>
-  <circle cx="66" cy="107" r="1" fill="rgba(142,29,6,1)"/>
-  <circle cx="67" cy="107" r="1" fill="rgba(206,42,9,1)"/>
-  <circle cx="68" cy="107" r="1" fill="rgba(203,45,10,1)"/>
-  <circle cx="69" cy="107" r="1" fill="rgba(207,52,13,1)"/>
-  <circle cx="70" cy="107" r="1" fill="rgba(210,58,16,1)"/>
-  <circle cx="71" cy="107" r="1" fill="rgba(213,62,18,1)"/>
-  <circle cx="72" cy="107" r="1" fill="rgba(214,63,18,1)"/>
-  <circle cx="73" cy="107" r="1" fill="rgba(217,64,17,1)"/>
-  <circle cx="74" cy="107" r="1" fill="rgba(218,65,17,1)"/>
-  <circle cx="75" cy="107" r="1" fill="rgba(221,67,18,1)"/>
-  <circle cx="76" cy="107" r="1" fill="rgba(221,70,18,1)"/>
-  <circle cx="77" cy="107" r="1" fill="rgba(224,73,20,1)"/>
-  <circle cx="78" cy="107" r="1" fill="rgba(227,75,21,1)"/>
-  <circle cx="79" cy="107" r="1" fill="rgba(230,75,22,1)"/>
-  <circle cx="80" cy="107" r="1" fill="rgba(205,65,18,0.964706)"/>
-  <circle cx="81" cy="107" r="1" fill="rgba(131,34,8,0.843137)"/>
-  <circle cx="82" cy="107" r="1" fill="rgba(55,8,2,0.72549)"/>
-  <circle cx="83" cy="107" r="1" fill="rgba(33,3,1,0.678431)"/>
-  <circle cx="84" cy="107" r="1" fill="rgba(42,5,1,0.647059)"/>
-  <circle cx="85" cy="107" r="1" fill="rgba(37,3,0,0.603922)"/>
-  <circle cx="86" cy="107" r="1" fill="rgba(29,2,0,0.556863)"/>
-  <circle cx="87" cy="107" r="1" fill="rgba(21,0,0,0.513725)"/>
-  <circle cx="88" cy="107" r="1" fill="rgba(12,0,0,0.47451)"/>
-  <circle cx="89" cy="107" r="1" fill="rgba(4,0,0,0.431373)"/>
-  <circle cx="90" cy="107" r="1" fill="rgba(7,0,0,0.392157)"/>
-  <circle cx="91" cy="107" r="1" fill="rgba(21,4,0,0.337255)"/>
-  <circle cx="92" cy="107" r="1" fill="rgba(33,9,1,0.270588)"/>
-  <circle cx="93" cy="107" r="1" fill="rgba(43,14,2,0.192157)"/>
-  <circle cx="94" cy="107" r="1" fill="rgba(46,14,1,0.113725)"/>
-  <circle cx="95" cy="107" r="1" fill="rgba(36,5,0,0.054902)"/>
-  <circle cx="96" cy="107" r="1" fill="rgba(10,0,0,0.0196078)"/>
-  <circle cx="97" cy="107" r="1" fill="none"/>
-  <circle cx="98" cy="107" r="1" fill="rgba(7,2,0,0)"/>
-  <circle cx="99" cy="107" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="100" cy="107" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="101" cy="107" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="102" cy="107" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="103" cy="107" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="104" cy="107" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="105" cy="107" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="106" cy="107" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="107" cy="107" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="108" cy="107" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="109" cy="107" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="110" cy="107" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="111" cy="107" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="112" cy="107" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="113" cy="107" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="114" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="107" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="108" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="108" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="19" cy="108" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="20" cy="108" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="21" cy="108" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="22" cy="108" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="23" cy="108" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="24" cy="108" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="25" cy="108" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="26" cy="108" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="27" cy="108" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="28" cy="108" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="29" cy="108" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="30" cy="108" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="31" cy="108" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="32" cy="108" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="33" cy="108" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="34" cy="108" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="35" cy="108" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="36" cy="108" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="37" cy="108" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="38" cy="108" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="39" cy="108" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="40" cy="108" r="1" fill="rgba(115,14,3,0)"/>
-  <circle cx="41" cy="108" r="1" fill="rgba(114,14,3,0)"/>
-  <circle cx="42" cy="108" r="1" fill="rgba(101,14,2,0.0901961)"/>
-  <circle cx="43" cy="108" r="1" fill="rgba(57,6,0,0.329412)"/>
-  <circle cx="44" cy="108" r="1" fill="rgba(15,0,0,0.470588)"/>
-  <circle cx="45" cy="108" r="1" fill="rgba(7,0,0,0.490196)"/>
-  <circle cx="46" cy="108" r="1" fill="rgba(19,0,0,0.505882)"/>
-  <circle cx="47" cy="108" r="1" fill="rgba(22,1,0,0.533333)"/>
-  <circle cx="48" cy="108" r="1" fill="rgba(21,2,0,0.568627)"/>
-  <circle cx="49" cy="108" r="1" fill="rgba(43,5,1,0.639216)"/>
-  <circle cx="50" cy="108" r="1" fill="rgba(103,16,3,0.776471)"/>
-  <circle cx="51" cy="108" r="1" fill="rgba(158,29,7,0.913725)"/>
-  <circle cx="52" cy="108" r="1" fill="rgba(190,36,9,1)"/>
-  <circle cx="53" cy="108" r="1" fill="rgba(197,39,10,1)"/>
-  <circle cx="54" cy="108" r="1" fill="rgba(195,39,10,1)"/>
-  <circle cx="55" cy="108" r="1" fill="rgba(194,39,10,1)"/>
-  <circle cx="56" cy="108" r="1" fill="rgba(194,39,10,1)"/>
-  <circle cx="57" cy="108" r="1" fill="rgba(194,40,10,1)"/>
-  <circle cx="58" cy="108" r="1" fill="rgba(195,41,10,1)"/>
-  <circle cx="59" cy="108" r="1" fill="rgba(196,42,11,1)"/>
-  <circle cx="60" cy="108" r="1" fill="rgba(196,44,11,1)"/>
-  <circle cx="61" cy="108" r="1" fill="rgba(196,45,12,1)"/>
-  <circle cx="62" cy="108" r="1" fill="rgba(195,43,11,1)"/>
-  <circle cx="63" cy="108" r="1" fill="rgba(194,41,10,1)"/>
-  <circle cx="64" cy="108" r="1" fill="rgba(177,21,4,1)"/>
-  <circle cx="65" cy="108" r="1" fill="rgba(105,0,0,1)"/>
-  <circle cx="66" cy="108" r="1" fill="rgba(141,29,6,1)"/>
-  <circle cx="67" cy="108" r="1" fill="rgba(207,41,9,1)"/>
-  <circle cx="68" cy="108" r="1" fill="rgba(203,47,10,1)"/>
-  <circle cx="69" cy="108" r="1" fill="rgba(208,53,13,1)"/>
-  <circle cx="70" cy="108" r="1" fill="rgba(212,58,16,1)"/>
-  <circle cx="71" cy="108" r="1" fill="rgba(214,62,17,1)"/>
-  <circle cx="72" cy="108" r="1" fill="rgba(217,65,18,1)"/>
-  <circle cx="73" cy="108" r="1" fill="rgba(218,65,17,1)"/>
-  <circle cx="74" cy="108" r="1" fill="rgba(221,68,18,1)"/>
-  <circle cx="75" cy="108" r="1" fill="rgba(224,71,19,1)"/>
-  <circle cx="76" cy="108" r="1" fill="rgba(229,73,20,1)"/>
-  <circle cx="77" cy="108" r="1" fill="rgba(225,72,20,1)"/>
-  <circle cx="78" cy="108" r="1" fill="rgba(196,61,16,0.952941)"/>
-  <circle cx="79" cy="108" r="1" fill="rgba(137,36,9,0.85098)"/>
-  <circle cx="80" cy="108" r="1" fill="rgba(67,12,3,0.74902)"/>
-  <circle cx="81" cy="108" r="1" fill="rgba(33,2,1,0.694118)"/>
-  <circle cx="82" cy="108" r="1" fill="rgba(42,5,1,0.666667)"/>
-  <circle cx="83" cy="108" r="1" fill="rgba(39,5,1,0.623529)"/>
-  <circle cx="84" cy="108" r="1" fill="rgba(33,3,0,0.572549)"/>
-  <circle cx="85" cy="108" r="1" fill="rgba(24,0,0,0.533333)"/>
-  <circle cx="86" cy="108" r="1" fill="rgba(17,0,0,0.498039)"/>
-  <circle cx="87" cy="108" r="1" fill="rgba(10,0,0,0.466667)"/>
-  <circle cx="88" cy="108" r="1" fill="rgba(4,0,0,0.431373)"/>
-  <circle cx="89" cy="108" r="1" fill="rgba(12,1,0,0.388235)"/>
-  <circle cx="90" cy="108" r="1" fill="rgba(21,5,0,0.333333)"/>
-  <circle cx="91" cy="108" r="1" fill="rgba(34,9,1,0.266667)"/>
-  <circle cx="92" cy="108" r="1" fill="rgba(43,13,2,0.192157)"/>
-  <circle cx="93" cy="108" r="1" fill="rgba(46,13,1,0.113725)"/>
-  <circle cx="94" cy="108" r="1" fill="rgba(36,6,0,0.054902)"/>
-  <circle cx="95" cy="108" r="1" fill="rgba(10,0,0,0.0196078)"/>
-  <circle cx="96" cy="108" r="1" fill="rgba(0,0,0,0.00392157)"/>
-  <circle cx="97" cy="108" r="1" fill="rgba(7,1,0,0)"/>
-  <circle cx="98" cy="108" r="1" fill="rgba(7,1,0,0)"/>
-  <circle cx="99" cy="108" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="100" cy="108" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="101" cy="108" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="102" cy="108" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="103" cy="108" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="104" cy="108" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="105" cy="108" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="106" cy="108" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="107" cy="108" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="108" cy="108" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="109" cy="108" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="110" cy="108" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="111" cy="108" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="112" cy="108" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="113" cy="108" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="114" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="108" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="109" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="109" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="19" cy="109" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="20" cy="109" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="21" cy="109" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="22" cy="109" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="23" cy="109" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="24" cy="109" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="25" cy="109" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="26" cy="109" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="27" cy="109" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="28" cy="109" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="29" cy="109" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="30" cy="109" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="31" cy="109" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="32" cy="109" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="33" cy="109" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="34" cy="109" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="35" cy="109" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="36" cy="109" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="37" cy="109" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="38" cy="109" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="39" cy="109" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="40" cy="109" r="1" fill="rgba(115,13,3,0)"/>
-  <circle cx="41" cy="109" r="1" fill="rgba(112,14,3,0)"/>
-  <circle cx="42" cy="109" r="1" fill="rgba(112,16,3,0)"/>
-  <circle cx="43" cy="109" r="1" fill="rgba(105,16,3,0.0745098)"/>
-  <circle cx="44" cy="109" r="1" fill="rgba(62,7,1,0.301961)"/>
-  <circle cx="45" cy="109" r="1" fill="rgba(12,0,0,0.462745)"/>
-  <circle cx="46" cy="109" r="1" fill="rgba(4,0,0,0.482353)"/>
-  <circle cx="47" cy="109" r="1" fill="rgba(15,0,0,0.490196)"/>
-  <circle cx="48" cy="109" r="1" fill="rgba(22,1,0,0.513725)"/>
-  <circle cx="49" cy="109" r="1" fill="rgba(26,2,0,0.54902)"/>
-  <circle cx="50" cy="109" r="1" fill="rgba(22,2,0,0.588235)"/>
-  <circle cx="51" cy="109" r="1" fill="rgba(39,5,1,0.647059)"/>
-  <circle cx="52" cy="109" r="1" fill="rgba(86,14,3,0.74902)"/>
-  <circle cx="53" cy="109" r="1" fill="rgba(139,25,6,0.870588)"/>
-  <circle cx="54" cy="109" r="1" fill="rgba(179,36,9,0.960784)"/>
-  <circle cx="55" cy="109" r="1" fill="rgba(196,41,11,1)"/>
-  <circle cx="56" cy="109" r="1" fill="rgba(202,42,11,1)"/>
-  <circle cx="57" cy="109" r="1" fill="rgba(200,42,10,1)"/>
-  <circle cx="58" cy="109" r="1" fill="rgba(198,41,10,1)"/>
-  <circle cx="59" cy="109" r="1" fill="rgba(198,43,10,1)"/>
-  <circle cx="60" cy="109" r="1" fill="rgba(198,45,11,1)"/>
-  <circle cx="61" cy="109" r="1" fill="rgba(198,45,12,1)"/>
-  <circle cx="62" cy="109" r="1" fill="rgba(196,44,11,1)"/>
-  <circle cx="63" cy="109" r="1" fill="rgba(196,43,11,1)"/>
-  <circle cx="64" cy="109" r="1" fill="rgba(179,23,4,1)"/>
-  <circle cx="65" cy="109" r="1" fill="rgba(102,0,0,1)"/>
-  <circle cx="66" cy="109" r="1" fill="rgba(138,29,6,1)"/>
-  <circle cx="67" cy="109" r="1" fill="rgba(207,44,10,1)"/>
-  <circle cx="68" cy="109" r="1" fill="rgba(206,50,12,1)"/>
-  <circle cx="69" cy="109" r="1" fill="rgba(210,56,14,1)"/>
-  <circle cx="70" cy="109" r="1" fill="rgba(216,63,18,1)"/>
-  <circle cx="71" cy="109" r="1" fill="rgba(221,69,20,1)"/>
-  <circle cx="72" cy="109" r="1" fill="rgba(225,73,22,1)"/>
-  <circle cx="73" cy="109" r="1" fill="rgba(230,75,22,1)"/>
-  <circle cx="74" cy="109" r="1" fill="rgba(226,73,22,1)"/>
-  <circle cx="75" cy="109" r="1" fill="rgba(210,66,19,0.976471)"/>
-  <circle cx="76" cy="109" r="1" fill="rgba(170,49,13,0.909804)"/>
-  <circle cx="77" cy="109" r="1" fill="rgba(115,27,6,0.823529)"/>
-  <circle cx="78" cy="109" r="1" fill="rgba(57,9,2,0.745098)"/>
-  <circle cx="79" cy="109" r="1" fill="rgba(34,3,1,0.701961)"/>
-  <circle cx="80" cy="109" r="1" fill="rgba(42,5,1,0.678431)"/>
-  <circle cx="81" cy="109" r="1" fill="rgba(42,5,1,0.639216)"/>
-  <circle cx="82" cy="109" r="1" fill="rgba(36,4,0,0.592157)"/>
-  <circle cx="83" cy="109" r="1" fill="rgba(28,2,0,0.54902)"/>
-  <circle cx="84" cy="109" r="1" fill="rgba(19,0,0,0.509804)"/>
-  <circle cx="85" cy="109" r="1" fill="rgba(12,0,0,0.482353)"/>
-  <circle cx="86" cy="109" r="1" fill="rgba(4,0,0,0.454902)"/>
-  <circle cx="87" cy="109" r="1" fill="rgba(4,0,0,0.423529)"/>
-  <circle cx="88" cy="109" r="1" fill="rgba(12,1,0,0.380392)"/>
-  <circle cx="89" cy="109" r="1" fill="rgba(24,5,0,0.32549)"/>
-  <circle cx="90" cy="109" r="1" fill="rgba(34,10,1,0.258824)"/>
-  <circle cx="91" cy="109" r="1" fill="rgba(45,12,2,0.180392)"/>
-  <circle cx="92" cy="109" r="1" fill="rgba(49,12,1,0.109804)"/>
-  <circle cx="93" cy="109" r="1" fill="rgba(39,6,0,0.0509804)"/>
-  <circle cx="94" cy="109" r="1" fill="rgba(12,0,0,0.0156863)"/>
-  <circle cx="95" cy="109" r="1" fill="rgba(0,0,0,0.00392157)"/>
-  <circle cx="96" cy="109" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="97" cy="109" r="1" fill="rgba(4,1,0,0)"/>
-  <circle cx="98" cy="109" r="1" fill="rgba(7,1,0,0)"/>
-  <circle cx="99" cy="109" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="100" cy="109" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="101" cy="109" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="102" cy="109" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="103" cy="109" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="104" cy="109" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="105" cy="109" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="106" cy="109" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="107" cy="109" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="108" cy="109" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="109" cy="109" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="110" cy="109" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="111" cy="109" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="112" cy="109" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="113" cy="109" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="114" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="109" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="110" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="110" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="19" cy="110" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="20" cy="110" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="21" cy="110" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="22" cy="110" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="23" cy="110" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="24" cy="110" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="25" cy="110" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="26" cy="110" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="27" cy="110" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="28" cy="110" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="29" cy="110" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="30" cy="110" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="31" cy="110" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="32" cy="110" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="33" cy="110" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="34" cy="110" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="35" cy="110" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="36" cy="110" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="37" cy="110" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="38" cy="110" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="39" cy="110" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="40" cy="110" r="1" fill="rgba(115,13,3,0)"/>
-  <circle cx="41" cy="110" r="1" fill="rgba(112,14,3,0)"/>
-  <circle cx="42" cy="110" r="1" fill="rgba(110,16,3,0)"/>
-  <circle cx="43" cy="110" r="1" fill="rgba(115,17,3,0)"/>
-  <circle cx="44" cy="110" r="1" fill="rgba(92,13,2,0.054902)"/>
-  <circle cx="45" cy="110" r="1" fill="rgba(55,6,1,0.266667)"/>
-  <circle cx="46" cy="110" r="1" fill="rgba(24,1,0,0.439216)"/>
-  <circle cx="47" cy="110" r="1" fill="rgba(0,0,0,0.478431)"/>
-  <circle cx="48" cy="110" r="1" fill="rgba(7,0,0,0.478431)"/>
-  <circle cx="49" cy="110" r="1" fill="rgba(17,0,0,0.498039)"/>
-  <circle cx="50" cy="110" r="1" fill="rgba(24,2,0,0.529412)"/>
-  <circle cx="51" cy="110" r="1" fill="rgba(29,2,0,0.568627)"/>
-  <circle cx="52" cy="110" r="1" fill="rgba(28,3,0,0.603922)"/>
-  <circle cx="53" cy="110" r="1" fill="rgba(33,4,1,0.643137)"/>
-  <circle cx="54" cy="110" r="1" fill="rgba(55,8,2,0.701961)"/>
-  <circle cx="55" cy="110" r="1" fill="rgba(97,17,4,0.784314)"/>
-  <circle cx="56" cy="110" r="1" fill="rgba(134,26,6,0.862745)"/>
-  <circle cx="57" cy="110" r="1" fill="rgba(167,36,9,0.92549)"/>
-  <circle cx="58" cy="110" r="1" fill="rgba(188,42,11,0.976471)"/>
-  <circle cx="59" cy="110" r="1" fill="rgba(199,46,12,0.996078)"/>
-  <circle cx="60" cy="110" r="1" fill="rgba(204,49,13,1)"/>
-  <circle cx="61" cy="110" r="1" fill="rgba(209,52,14,1)"/>
-  <circle cx="62" cy="110" r="1" fill="rgba(210,53,14,1)"/>
-  <circle cx="63" cy="110" r="1" fill="rgba(210,53,14,1)"/>
-  <circle cx="64" cy="110" r="1" fill="rgba(190,31,7,1)"/>
-  <circle cx="65" cy="110" r="1" fill="rgba(129,3,0,1)"/>
-  <circle cx="66" cy="110" r="1" fill="rgba(170,44,12,1)"/>
-  <circle cx="67" cy="110" r="1" fill="rgba(217,53,13,1)"/>
-  <circle cx="68" cy="110" r="1" fill="rgba(218,60,17,1)"/>
-  <circle cx="69" cy="110" r="1" fill="rgba(220,68,20,1)"/>
-  <circle cx="70" cy="110" r="1" fill="rgba(220,73,23,1)"/>
-  <circle cx="71" cy="110" r="1" fill="rgba(214,74,24,0.984314)"/>
-  <circle cx="72" cy="110" r="1" fill="rgba(196,66,20,0.945098)"/>
-  <circle cx="73" cy="110" r="1" fill="rgba(158,47,13,0.886275)"/>
-  <circle cx="74" cy="110" r="1" fill="rgba(118,30,7,0.827451)"/>
-  <circle cx="75" cy="110" r="1" fill="rgba(71,13,3,0.760784)"/>
-  <circle cx="76" cy="110" r="1" fill="rgba(42,5,1,0.72549)"/>
-  <circle cx="77" cy="110" r="1" fill="rgba(36,3,1,0.701961)"/>
-  <circle cx="78" cy="110" r="1" fill="rgba(43,6,1,0.686275)"/>
-  <circle cx="79" cy="110" r="1" fill="rgba(42,6,1,0.65098)"/>
-  <circle cx="80" cy="110" r="1" fill="rgba(37,4,0,0.603922)"/>
-  <circle cx="81" cy="110" r="1" fill="rgba(29,2,0,0.560784)"/>
-  <circle cx="82" cy="110" r="1" fill="rgba(22,0,0,0.521569)"/>
-  <circle cx="83" cy="110" r="1" fill="rgba(15,0,0,0.494118)"/>
-  <circle cx="84" cy="110" r="1" fill="rgba(7,0,0,0.466667)"/>
-  <circle cx="85" cy="110" r="1" fill="rgba(4,0,0,0.443137)"/>
-  <circle cx="86" cy="110" r="1" fill="rgba(7,0,0,0.411765)"/>
-  <circle cx="87" cy="110" r="1" fill="rgba(15,2,0,0.368627)"/>
-  <circle cx="88" cy="110" r="1" fill="rgba(24,6,0,0.313725)"/>
-  <circle cx="89" cy="110" r="1" fill="rgba(34,11,1,0.243137)"/>
-  <circle cx="90" cy="110" r="1" fill="rgba(45,13,3,0.168627)"/>
-  <circle cx="91" cy="110" r="1" fill="rgba(51,14,2,0.0980392)"/>
-  <circle cx="92" cy="110" r="1" fill="rgba(42,7,0,0.0431373)"/>
-  <circle cx="93" cy="110" r="1" fill="rgba(15,0,0,0.0117647)"/>
-  <circle cx="94" cy="110" r="1" fill="rgba(7,3,0,0)"/>
-  <circle cx="95" cy="110" r="1" fill="rgba(7,2,0,0)"/>
-  <circle cx="96" cy="110" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="97" cy="110" r="1" fill="rgba(4,1,0,0)"/>
-  <circle cx="98" cy="110" r="1" fill="rgba(7,1,0,0)"/>
-  <circle cx="99" cy="110" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="100" cy="110" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="101" cy="110" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="102" cy="110" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="103" cy="110" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="104" cy="110" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="105" cy="110" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="106" cy="110" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="107" cy="110" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="108" cy="110" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="109" cy="110" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="110" cy="110" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="111" cy="110" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="112" cy="110" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="113" cy="110" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="114" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="110" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="111" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="111" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="19" cy="111" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="20" cy="111" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="21" cy="111" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="22" cy="111" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="23" cy="111" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="24" cy="111" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="25" cy="111" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="26" cy="111" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="27" cy="111" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="28" cy="111" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="29" cy="111" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="30" cy="111" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="31" cy="111" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="32" cy="111" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="33" cy="111" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="34" cy="111" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="35" cy="111" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="36" cy="111" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="37" cy="111" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="38" cy="111" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="39" cy="111" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="40" cy="111" r="1" fill="rgba(115,13,3,0)"/>
-  <circle cx="41" cy="111" r="1" fill="rgba(112,14,3,0)"/>
-  <circle cx="42" cy="111" r="1" fill="rgba(110,16,3,0)"/>
-  <circle cx="43" cy="111" r="1" fill="rgba(113,17,3,0)"/>
-  <circle cx="44" cy="111" r="1" fill="rgba(92,12,2,0)"/>
-  <circle cx="45" cy="111" r="1" fill="rgba(84,13,3,0.0313725)"/>
-  <circle cx="46" cy="111" r="1" fill="rgba(82,12,2,0.2)"/>
-  <circle cx="47" cy="111" r="1" fill="rgba(37,3,0,0.4)"/>
-  <circle cx="48" cy="111" r="1" fill="rgba(4,0,0,0.47451)"/>
-  <circle cx="49" cy="111" r="1" fill="rgba(4,0,0,0.478431)"/>
-  <circle cx="50" cy="111" r="1" fill="rgba(12,0,0,0.486275)"/>
-  <circle cx="51" cy="111" r="1" fill="rgba(19,1,0,0.509804)"/>
-  <circle cx="52" cy="111" r="1" fill="rgba(24,1,0,0.541176)"/>
-  <circle cx="53" cy="111" r="1" fill="rgba(31,2,0,0.576471)"/>
-  <circle cx="54" cy="111" r="1" fill="rgba(34,4,0,0.611765)"/>
-  <circle cx="55" cy="111" r="1" fill="rgba(31,4,0,0.635294)"/>
-  <circle cx="56" cy="111" r="1" fill="rgba(31,4,0,0.658824)"/>
-  <circle cx="57" cy="111" r="1" fill="rgba(47,7,1,0.690196)"/>
-  <circle cx="58" cy="111" r="1" fill="rgba(61,9,2,0.721569)"/>
-  <circle cx="59" cy="111" r="1" fill="rgba(91,16,3,0.772549)"/>
-  <circle cx="60" cy="111" r="1" fill="rgba(113,22,5,0.815686)"/>
-  <circle cx="61" cy="111" r="1" fill="rgba(130,29,7,0.847059)"/>
-  <circle cx="62" cy="111" r="1" fill="rgba(137,31,8,0.866667)"/>
-  <circle cx="63" cy="111" r="1" fill="rgba(152,37,10,0.890196)"/>
-  <circle cx="64" cy="111" r="1" fill="rgba(150,32,8,0.898039)"/>
-  <circle cx="65" cy="111" r="1" fill="rgba(140,20,5,0.898039)"/>
-  <circle cx="66" cy="111" r="1" fill="rgba(156,37,10,0.898039)"/>
-  <circle cx="67" cy="111" r="1" fill="rgba(142,33,8,0.870588)"/>
-  <circle cx="68" cy="111" r="1" fill="rgba(138,34,9,0.858824)"/>
-  <circle cx="69" cy="111" r="1" fill="rgba(125,33,9,0.827451)"/>
-  <circle cx="70" cy="111" r="1" fill="rgba(104,26,7,0.788235)"/>
-  <circle cx="71" cy="111" r="1" fill="rgba(73,15,3,0.74902)"/>
-  <circle cx="72" cy="111" r="1" fill="rgba(54,8,2,0.729412)"/>
-  <circle cx="73" cy="111" r="1" fill="rgba(36,3,1,0.705882)"/>
-  <circle cx="74" cy="111" r="1" fill="rgba(34,4,1,0.694118)"/>
-  <circle cx="75" cy="111" r="1" fill="rgba(42,5,1,0.690196)"/>
-  <circle cx="76" cy="111" r="1" fill="rgba(43,6,1,0.67451)"/>
-  <circle cx="77" cy="111" r="1" fill="rgba(42,5,1,0.643137)"/>
-  <circle cx="78" cy="111" r="1" fill="rgba(37,5,1,0.603922)"/>
-  <circle cx="79" cy="111" r="1" fill="rgba(29,2,0,0.560784)"/>
-  <circle cx="80" cy="111" r="1" fill="rgba(22,1,0,0.52549)"/>
-  <circle cx="81" cy="111" r="1" fill="rgba(17,0,0,0.498039)"/>
-  <circle cx="82" cy="111" r="1" fill="rgba(10,0,0,0.47451)"/>
-  <circle cx="83" cy="111" r="1" fill="rgba(4,0,0,0.454902)"/>
-  <circle cx="84" cy="111" r="1" fill="rgba(4,0,0,0.427451)"/>
-  <circle cx="85" cy="111" r="1" fill="rgba(10,0,0,0.396078)"/>
-  <circle cx="86" cy="111" r="1" fill="rgba(19,3,0,0.352941)"/>
-  <circle cx="87" cy="111" r="1" fill="rgba(28,8,1,0.294118)"/>
-  <circle cx="88" cy="111" r="1" fill="rgba(36,11,2,0.223529)"/>
-  <circle cx="89" cy="111" r="1" fill="rgba(43,15,2,0.14902)"/>
-  <circle cx="90" cy="111" r="1" fill="rgba(55,15,1,0.0823529)"/>
-  <circle cx="91" cy="111" r="1" fill="rgba(49,9,0,0.0392157)"/>
-  <circle cx="92" cy="111" r="1" fill="rgba(17,0,0,0.0117647)"/>
-  <circle cx="93" cy="111" r="1" fill="none"/>
-  <circle cx="94" cy="111" r="1" fill="rgba(15,4,0,0)"/>
-  <circle cx="95" cy="111" r="1" fill="rgba(7,2,0,0)"/>
-  <circle cx="96" cy="111" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="97" cy="111" r="1" fill="rgba(4,1,0,0)"/>
-  <circle cx="98" cy="111" r="1" fill="rgba(7,1,0,0)"/>
-  <circle cx="99" cy="111" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="100" cy="111" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="101" cy="111" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="102" cy="111" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="103" cy="111" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="104" cy="111" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="105" cy="111" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="106" cy="111" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="107" cy="111" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="108" cy="111" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="109" cy="111" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="110" cy="111" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="111" cy="111" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="112" cy="111" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="113" cy="111" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="114" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="111" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="112" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="112" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="19" cy="112" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="20" cy="112" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="21" cy="112" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="22" cy="112" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="23" cy="112" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="24" cy="112" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="25" cy="112" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="26" cy="112" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="27" cy="112" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="28" cy="112" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="29" cy="112" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="30" cy="112" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="31" cy="112" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="32" cy="112" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="33" cy="112" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="34" cy="112" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="35" cy="112" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="36" cy="112" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="37" cy="112" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="38" cy="112" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="39" cy="112" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="40" cy="112" r="1" fill="rgba(115,13,3,0)"/>
-  <circle cx="41" cy="112" r="1" fill="rgba(112,14,3,0)"/>
-  <circle cx="42" cy="112" r="1" fill="rgba(110,16,3,0)"/>
-  <circle cx="43" cy="112" r="1" fill="rgba(113,17,3,0)"/>
-  <circle cx="44" cy="112" r="1" fill="rgba(91,12,2,0)"/>
-  <circle cx="45" cy="112" r="1" fill="rgba(87,13,3,0)"/>
-  <circle cx="46" cy="112" r="1" fill="rgba(106,18,4,0.00392157)"/>
-  <circle cx="47" cy="112" r="1" fill="rgba(84,14,3,0.129412)"/>
-  <circle cx="48" cy="112" r="1" fill="rgba(55,8,1,0.32549)"/>
-  <circle cx="49" cy="112" r="1" fill="rgba(19,0,0,0.45098)"/>
-  <circle cx="50" cy="112" r="1" fill="rgba(0,0,0,0.478431)"/>
-  <circle cx="51" cy="112" r="1" fill="rgba(7,0,0,0.478431)"/>
-  <circle cx="52" cy="112" r="1" fill="rgba(15,0,0,0.490196)"/>
-  <circle cx="53" cy="112" r="1" fill="rgba(21,1,0,0.509804)"/>
-  <circle cx="54" cy="112" r="1" fill="rgba(24,2,0,0.533333)"/>
-  <circle cx="55" cy="112" r="1" fill="rgba(29,3,0,0.556863)"/>
-  <circle cx="56" cy="112" r="1" fill="rgba(31,3,0,0.580392)"/>
-  <circle cx="57" cy="112" r="1" fill="rgba(34,4,0,0.596078)"/>
-  <circle cx="58" cy="112" r="1" fill="rgba(36,4,0,0.615686)"/>
-  <circle cx="59" cy="112" r="1" fill="rgba(31,3,0,0.631373)"/>
-  <circle cx="60" cy="112" r="1" fill="rgba(31,3,0,0.643137)"/>
-  <circle cx="61" cy="112" r="1" fill="rgba(28,3,0,0.65098)"/>
-  <circle cx="62" cy="112" r="1" fill="rgba(28,2,0,0.658824)"/>
-  <circle cx="63" cy="112" r="1" fill="rgba(37,4,1,0.670588)"/>
-  <circle cx="64" cy="112" r="1" fill="rgba(42,6,1,0.678431)"/>
-  <circle cx="65" cy="112" r="1" fill="rgba(45,8,1,0.678431)"/>
-  <circle cx="66" cy="112" r="1" fill="rgba(40,5,1,0.678431)"/>
-  <circle cx="67" cy="112" r="1" fill="rgba(29,3,0,0.666667)"/>
-  <circle cx="68" cy="112" r="1" fill="rgba(28,2,0,0.662745)"/>
-  <circle cx="69" cy="112" r="1" fill="rgba(29,2,0,0.662745)"/>
-  <circle cx="70" cy="112" r="1" fill="rgba(33,3,0,0.658824)"/>
-  <circle cx="71" cy="112" r="1" fill="rgba(37,4,1,0.654902)"/>
-  <circle cx="72" cy="112" r="1" fill="rgba(40,5,1,0.65098)"/>
-  <circle cx="73" cy="112" r="1" fill="rgba(42,5,1,0.647059)"/>
-  <circle cx="74" cy="112" r="1" fill="rgba(40,6,1,0.631373)"/>
-  <circle cx="75" cy="112" r="1" fill="rgba(37,4,1,0.611765)"/>
-  <circle cx="76" cy="112" r="1" fill="rgba(34,3,0,0.584314)"/>
-  <circle cx="77" cy="112" r="1" fill="rgba(29,2,0,0.556863)"/>
-  <circle cx="78" cy="112" r="1" fill="rgba(22,1,0,0.52549)"/>
-  <circle cx="79" cy="112" r="1" fill="rgba(17,0,0,0.498039)"/>
-  <circle cx="80" cy="112" r="1" fill="rgba(10,0,0,0.478431)"/>
-  <circle cx="81" cy="112" r="1" fill="rgba(4,0,0,0.462745)"/>
-  <circle cx="82" cy="112" r="1" fill="rgba(4,0,0,0.439216)"/>
-  <circle cx="83" cy="112" r="1" fill="rgba(10,0,0,0.411765)"/>
-  <circle cx="84" cy="112" r="1" fill="rgba(19,2,0,0.376471)"/>
-  <circle cx="85" cy="112" r="1" fill="rgba(24,5,0,0.32549)"/>
-  <circle cx="86" cy="112" r="1" fill="rgba(33,10,1,0.266667)"/>
-  <circle cx="87" cy="112" r="1" fill="rgba(39,13,3,0.196078)"/>
-  <circle cx="88" cy="112" r="1" fill="rgba(49,12,3,0.129412)"/>
-  <circle cx="89" cy="112" r="1" fill="rgba(47,9,0,0.0705882)"/>
-  <circle cx="90" cy="112" r="1" fill="rgba(46,5,0,0.027451)"/>
-  <circle cx="91" cy="112" r="1" fill="rgba(26,2,0,0.00784314)"/>
-  <circle cx="92" cy="112" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="93" cy="112" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="94" cy="112" r="1" fill="rgba(15,4,0,0)"/>
-  <circle cx="95" cy="112" r="1" fill="rgba(7,2,0,0)"/>
-  <circle cx="96" cy="112" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="97" cy="112" r="1" fill="rgba(4,1,0,0)"/>
-  <circle cx="98" cy="112" r="1" fill="rgba(7,1,0,0)"/>
-  <circle cx="99" cy="112" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="100" cy="112" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="101" cy="112" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="102" cy="112" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="103" cy="112" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="104" cy="112" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="105" cy="112" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="106" cy="112" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="107" cy="112" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="108" cy="112" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="109" cy="112" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="110" cy="112" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="111" cy="112" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="112" cy="112" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="113" cy="112" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="114" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="112" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="113" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="113" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="19" cy="113" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="20" cy="113" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="21" cy="113" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="22" cy="113" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="23" cy="113" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="24" cy="113" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="25" cy="113" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="26" cy="113" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="27" cy="113" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="28" cy="113" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="29" cy="113" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="30" cy="113" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="31" cy="113" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="32" cy="113" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="33" cy="113" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="34" cy="113" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="35" cy="113" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="36" cy="113" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="37" cy="113" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="38" cy="113" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="39" cy="113" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="40" cy="113" r="1" fill="rgba(115,13,3,0)"/>
-  <circle cx="41" cy="113" r="1" fill="rgba(112,14,3,0)"/>
-  <circle cx="42" cy="113" r="1" fill="rgba(110,16,3,0)"/>
-  <circle cx="43" cy="113" r="1" fill="rgba(113,17,3,0)"/>
-  <circle cx="44" cy="113" r="1" fill="rgba(91,12,2,0)"/>
-  <circle cx="45" cy="113" r="1" fill="rgba(86,13,3,0)"/>
-  <circle cx="46" cy="113" r="1" fill="rgba(104,18,4,0)"/>
-  <circle cx="47" cy="113" r="1" fill="rgba(95,16,3,0)"/>
-  <circle cx="48" cy="113" r="1" fill="rgba(92,16,3,0.054902)"/>
-  <circle cx="49" cy="113" r="1" fill="rgba(74,12,2,0.223529)"/>
-  <circle cx="50" cy="113" r="1" fill="rgba(43,6,0,0.388235)"/>
-  <circle cx="51" cy="113" r="1" fill="rgba(10,0,0,0.466667)"/>
-  <circle cx="52" cy="113" r="1" fill="rgba(0,0,0,0.478431)"/>
-  <circle cx="53" cy="113" r="1" fill="rgba(4,0,0,0.478431)"/>
-  <circle cx="54" cy="113" r="1" fill="rgba(12,0,0,0.482353)"/>
-  <circle cx="55" cy="113" r="1" fill="rgba(15,0,0,0.494118)"/>
-  <circle cx="56" cy="113" r="1" fill="rgba(17,0,0,0.501961)"/>
-  <circle cx="57" cy="113" r="1" fill="rgba(21,0,0,0.509804)"/>
-  <circle cx="58" cy="113" r="1" fill="rgba(22,1,0,0.529412)"/>
-  <circle cx="59" cy="113" r="1" fill="rgba(28,2,0,0.545098)"/>
-  <circle cx="60" cy="113" r="1" fill="rgba(29,2,0,0.556863)"/>
-  <circle cx="61" cy="113" r="1" fill="rgba(31,3,0,0.564706)"/>
-  <circle cx="62" cy="113" r="1" fill="rgba(31,3,0,0.572549)"/>
-  <circle cx="63" cy="113" r="1" fill="rgba(31,3,0,0.580392)"/>
-  <circle cx="64" cy="113" r="1" fill="rgba(33,4,0,0.584314)"/>
-  <circle cx="65" cy="113" r="1" fill="rgba(34,4,0,0.588235)"/>
-  <circle cx="66" cy="113" r="1" fill="rgba(34,4,0,0.588235)"/>
-  <circle cx="67" cy="113" r="1" fill="rgba(34,3,0,0.588235)"/>
-  <circle cx="68" cy="113" r="1" fill="rgba(34,3,0,0.580392)"/>
-  <circle cx="69" cy="113" r="1" fill="rgba(33,3,0,0.580392)"/>
-  <circle cx="70" cy="113" r="1" fill="rgba(33,3,0,0.576471)"/>
-  <circle cx="71" cy="113" r="1" fill="rgba(33,3,0,0.572549)"/>
-  <circle cx="72" cy="113" r="1" fill="rgba(31,2,0,0.568627)"/>
-  <circle cx="73" cy="113" r="1" fill="rgba(29,2,0,0.556863)"/>
-  <circle cx="74" cy="113" r="1" fill="rgba(28,2,0,0.545098)"/>
-  <circle cx="75" cy="113" r="1" fill="rgba(24,2,0,0.529412)"/>
-  <circle cx="76" cy="113" r="1" fill="rgba(21,0,0,0.509804)"/>
-  <circle cx="77" cy="113" r="1" fill="rgba(15,0,0,0.494118)"/>
-  <circle cx="78" cy="113" r="1" fill="rgba(10,0,0,0.478431)"/>
-  <circle cx="79" cy="113" r="1" fill="rgba(4,0,0,0.462745)"/>
-  <circle cx="80" cy="113" r="1" fill="rgba(4,0,0,0.447059)"/>
-  <circle cx="81" cy="113" r="1" fill="rgba(7,0,0,0.423529)"/>
-  <circle cx="82" cy="113" r="1" fill="rgba(17,2,0,0.388235)"/>
-  <circle cx="83" cy="113" r="1" fill="rgba(24,5,0,0.345098)"/>
-  <circle cx="84" cy="113" r="1" fill="rgba(31,8,1,0.294118)"/>
-  <circle cx="85" cy="113" r="1" fill="rgba(37,12,3,0.231373)"/>
-  <circle cx="86" cy="113" r="1" fill="rgba(45,14,3,0.164706)"/>
-  <circle cx="87" cy="113" r="1" fill="rgba(47,14,3,0.105882)"/>
-  <circle cx="88" cy="113" r="1" fill="rgba(54,6,1,0.054902)"/>
-  <circle cx="89" cy="113" r="1" fill="rgba(36,0,0,0.0196078)"/>
-  <circle cx="90" cy="113" r="1" fill="rgba(7,0,0,0.00392157)"/>
-  <circle cx="91" cy="113" r="1" fill="rgba(24,8,2,0)"/>
-  <circle cx="92" cy="113" r="1" fill="rgba(10,0,0,0)"/>
-  <circle cx="93" cy="113" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="94" cy="113" r="1" fill="rgba(15,4,0,0)"/>
-  <circle cx="95" cy="113" r="1" fill="rgba(7,2,0,0)"/>
-  <circle cx="96" cy="113" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="97" cy="113" r="1" fill="rgba(4,1,0,0)"/>
-  <circle cx="98" cy="113" r="1" fill="rgba(7,1,0,0)"/>
-  <circle cx="99" cy="113" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="100" cy="113" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="101" cy="113" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="102" cy="113" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="103" cy="113" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="104" cy="113" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="105" cy="113" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="106" cy="113" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="107" cy="113" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="108" cy="113" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="109" cy="113" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="110" cy="113" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="111" cy="113" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="112" cy="113" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="113" cy="113" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="114" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="113" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="114" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="114" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="19" cy="114" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="20" cy="114" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="21" cy="114" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="22" cy="114" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="23" cy="114" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="24" cy="114" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="25" cy="114" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="26" cy="114" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="27" cy="114" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="28" cy="114" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="29" cy="114" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="30" cy="114" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="31" cy="114" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="32" cy="114" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="33" cy="114" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="34" cy="114" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="35" cy="114" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="36" cy="114" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="37" cy="114" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="38" cy="114" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="39" cy="114" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="40" cy="114" r="1" fill="rgba(115,13,3,0)"/>
-  <circle cx="41" cy="114" r="1" fill="rgba(112,14,3,0)"/>
-  <circle cx="42" cy="114" r="1" fill="rgba(110,16,3,0)"/>
-  <circle cx="43" cy="114" r="1" fill="rgba(113,17,3,0)"/>
-  <circle cx="44" cy="114" r="1" fill="rgba(91,12,2,0)"/>
-  <circle cx="45" cy="114" r="1" fill="rgba(86,13,3,0)"/>
-  <circle cx="46" cy="114" r="1" fill="rgba(104,18,4,0)"/>
-  <circle cx="47" cy="114" r="1" fill="rgba(94,16,3,0)"/>
-  <circle cx="48" cy="114" r="1" fill="rgba(93,16,3,0)"/>
-  <circle cx="49" cy="114" r="1" fill="rgba(100,18,4,0.00784314)"/>
-  <circle cx="50" cy="114" r="1" fill="rgba(92,18,4,0.105882)"/>
-  <circle cx="51" cy="114" r="1" fill="rgba(62,10,2,0.270588)"/>
-  <circle cx="52" cy="114" r="1" fill="rgba(31,3,0,0.407843)"/>
-  <circle cx="53" cy="114" r="1" fill="rgba(10,0,0,0.466667)"/>
-  <circle cx="54" cy="114" r="1" fill="rgba(0,0,0,0.47451)"/>
-  <circle cx="55" cy="114" r="1" fill="rgba(0,0,0,0.470588)"/>
-  <circle cx="56" cy="114" r="1" fill="rgba(4,0,0,0.470588)"/>
-  <circle cx="57" cy="114" r="1" fill="rgba(7,0,0,0.470588)"/>
-  <circle cx="58" cy="114" r="1" fill="rgba(7,0,0,0.478431)"/>
-  <circle cx="59" cy="114" r="1" fill="rgba(10,0,0,0.482353)"/>
-  <circle cx="60" cy="114" r="1" fill="rgba(12,0,0,0.486275)"/>
-  <circle cx="61" cy="114" r="1" fill="rgba(15,0,0,0.490196)"/>
-  <circle cx="62" cy="114" r="1" fill="rgba(15,0,0,0.494118)"/>
-  <circle cx="63" cy="114" r="1" fill="rgba(17,0,0,0.501961)"/>
-  <circle cx="64" cy="114" r="1" fill="rgba(19,0,0,0.505882)"/>
-  <circle cx="65" cy="114" r="1" fill="rgba(19,0,0,0.505882)"/>
-  <circle cx="66" cy="114" r="1" fill="rgba(19,0,0,0.505882)"/>
-  <circle cx="67" cy="114" r="1" fill="rgba(19,0,0,0.505882)"/>
-  <circle cx="68" cy="114" r="1" fill="rgba(19,0,0,0.505882)"/>
-  <circle cx="69" cy="114" r="1" fill="rgba(19,0,0,0.501961)"/>
-  <circle cx="70" cy="114" r="1" fill="rgba(19,0,0,0.501961)"/>
-  <circle cx="71" cy="114" r="1" fill="rgba(19,0,0,0.501961)"/>
-  <circle cx="72" cy="114" r="1" fill="rgba(17,0,0,0.498039)"/>
-  <circle cx="73" cy="114" r="1" fill="rgba(15,0,0,0.490196)"/>
-  <circle cx="74" cy="114" r="1" fill="rgba(12,0,0,0.486275)"/>
-  <circle cx="75" cy="114" r="1" fill="rgba(10,0,0,0.478431)"/>
-  <circle cx="76" cy="114" r="1" fill="rgba(7,0,0,0.470588)"/>
-  <circle cx="77" cy="114" r="1" fill="rgba(4,0,0,0.458824)"/>
-  <circle cx="78" cy="114" r="1" fill="rgba(4,0,0,0.443137)"/>
-  <circle cx="79" cy="114" r="1" fill="rgba(10,0,0,0.427451)"/>
-  <circle cx="80" cy="114" r="1" fill="rgba(17,1,0,0.396078)"/>
-  <circle cx="81" cy="114" r="1" fill="rgba(24,3,0,0.356863)"/>
-  <circle cx="82" cy="114" r="1" fill="rgba(29,7,0,0.305882)"/>
-  <circle cx="83" cy="114" r="1" fill="rgba(36,11,1,0.25098)"/>
-  <circle cx="84" cy="114" r="1" fill="rgba(42,13,3,0.188235)"/>
-  <circle cx="85" cy="114" r="1" fill="rgba(45,15,3,0.129412)"/>
-  <circle cx="86" cy="114" r="1" fill="rgba(49,13,1,0.0823529)"/>
-  <circle cx="87" cy="114" r="1" fill="rgba(45,7,0,0.0392157)"/>
-  <circle cx="88" cy="114" r="1" fill="rgba(26,0,0,0.0156863)"/>
-  <circle cx="89" cy="114" r="1" fill="rgba(10,0,0,0)"/>
-  <circle cx="90" cy="114" r="1" fill="rgba(7,1,0,0)"/>
-  <circle cx="91" cy="114" r="1" fill="rgba(26,8,2,0)"/>
-  <circle cx="92" cy="114" r="1" fill="rgba(10,0,0,0)"/>
-  <circle cx="93" cy="114" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="94" cy="114" r="1" fill="rgba(15,4,0,0)"/>
-  <circle cx="95" cy="114" r="1" fill="rgba(7,2,0,0)"/>
-  <circle cx="96" cy="114" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="97" cy="114" r="1" fill="rgba(4,1,0,0)"/>
-  <circle cx="98" cy="114" r="1" fill="rgba(7,1,0,0)"/>
-  <circle cx="99" cy="114" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="100" cy="114" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="101" cy="114" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="102" cy="114" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="103" cy="114" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="104" cy="114" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="105" cy="114" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="106" cy="114" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="107" cy="114" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="108" cy="114" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="109" cy="114" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="110" cy="114" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="111" cy="114" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="112" cy="114" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="113" cy="114" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="114" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="114" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="115" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="115" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="19" cy="115" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="20" cy="115" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="21" cy="115" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="22" cy="115" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="23" cy="115" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="24" cy="115" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="25" cy="115" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="26" cy="115" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="27" cy="115" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="28" cy="115" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="29" cy="115" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="30" cy="115" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="31" cy="115" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="32" cy="115" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="33" cy="115" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="34" cy="115" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="35" cy="115" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="36" cy="115" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="37" cy="115" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="38" cy="115" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="39" cy="115" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="40" cy="115" r="1" fill="rgba(115,13,3,0)"/>
-  <circle cx="41" cy="115" r="1" fill="rgba(112,14,3,0)"/>
-  <circle cx="42" cy="115" r="1" fill="rgba(110,16,3,0)"/>
-  <circle cx="43" cy="115" r="1" fill="rgba(113,17,3,0)"/>
-  <circle cx="44" cy="115" r="1" fill="rgba(91,12,2,0)"/>
-  <circle cx="45" cy="115" r="1" fill="rgba(86,13,3,0)"/>
-  <circle cx="46" cy="115" r="1" fill="rgba(104,18,4,0)"/>
-  <circle cx="47" cy="115" r="1" fill="rgba(94,16,3,0)"/>
-  <circle cx="48" cy="115" r="1" fill="rgba(92,16,3,0)"/>
-  <circle cx="49" cy="115" r="1" fill="rgba(99,18,4,0)"/>
-  <circle cx="50" cy="115" r="1" fill="rgba(99,19,4,0)"/>
-  <circle cx="51" cy="115" r="1" fill="rgba(84,16,3,0.0235294)"/>
-  <circle cx="52" cy="115" r="1" fill="rgba(70,13,2,0.12549)"/>
-  <circle cx="53" cy="115" r="1" fill="rgba(61,11,2,0.266667)"/>
-  <circle cx="54" cy="115" r="1" fill="rgba(40,6,0,0.384314)"/>
-  <circle cx="55" cy="115" r="1" fill="rgba(19,1,0,0.45098)"/>
-  <circle cx="56" cy="115" r="1" fill="rgba(0,0,0,0.470588)"/>
-  <circle cx="57" cy="115" r="1" fill="rgba(0,0,0,0.470588)"/>
-  <circle cx="58" cy="115" r="1" fill="rgba(0,0,0,0.466667)"/>
-  <circle cx="59" cy="115" r="1" fill="rgba(0,0,0,0.466667)"/>
-  <circle cx="60" cy="115" r="1" fill="rgba(0,0,0,0.462745)"/>
-  <circle cx="61" cy="115" r="1" fill="rgba(0,0,0,0.466667)"/>
-  <circle cx="62" cy="115" r="1" fill="rgba(0,0,0,0.466667)"/>
-  <circle cx="63" cy="115" r="1" fill="rgba(0,0,0,0.466667)"/>
-  <circle cx="64" cy="115" r="1" fill="rgba(4,0,0,0.470588)"/>
-  <circle cx="65" cy="115" r="1" fill="rgba(4,0,0,0.470588)"/>
-  <circle cx="66" cy="115" r="1" fill="rgba(4,0,0,0.470588)"/>
-  <circle cx="67" cy="115" r="1" fill="rgba(4,0,0,0.470588)"/>
-  <circle cx="68" cy="115" r="1" fill="rgba(4,0,0,0.470588)"/>
-  <circle cx="69" cy="115" r="1" fill="rgba(4,0,0,0.470588)"/>
-  <circle cx="70" cy="115" r="1" fill="rgba(4,0,0,0.470588)"/>
-  <circle cx="71" cy="115" r="1" fill="rgba(4,0,0,0.470588)"/>
-  <circle cx="72" cy="115" r="1" fill="rgba(0,0,0,0.470588)"/>
-  <circle cx="73" cy="115" r="1" fill="rgba(0,0,0,0.466667)"/>
-  <circle cx="74" cy="115" r="1" fill="rgba(4,0,0,0.458824)"/>
-  <circle cx="75" cy="115" r="1" fill="rgba(4,0,0,0.45098)"/>
-  <circle cx="76" cy="115" r="1" fill="rgba(7,0,0,0.439216)"/>
-  <circle cx="77" cy="115" r="1" fill="rgba(12,1,0,0.419608)"/>
-  <circle cx="78" cy="115" r="1" fill="rgba(19,3,0,0.392157)"/>
-  <circle cx="79" cy="115" r="1" fill="rgba(24,5,0,0.34902)"/>
-  <circle cx="80" cy="115" r="1" fill="rgba(31,6,0,0.301961)"/>
-  <circle cx="81" cy="115" r="1" fill="rgba(36,8,1,0.25098)"/>
-  <circle cx="82" cy="115" r="1" fill="rgba(42,12,2,0.192157)"/>
-  <circle cx="83" cy="115" r="1" fill="rgba(47,14,2,0.141176)"/>
-  <circle cx="84" cy="115" r="1" fill="rgba(50,14,1,0.0941176)"/>
-  <circle cx="85" cy="115" r="1" fill="rgba(40,6,0,0.054902)"/>
-  <circle cx="86" cy="115" r="1" fill="rgba(31,2,0,0.027451)"/>
-  <circle cx="87" cy="115" r="1" fill="rgba(17,0,0,0.0117647)"/>
-  <circle cx="88" cy="115" r="1" fill="rgba(10,2,1,0)"/>
-  <circle cx="89" cy="115" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="90" cy="115" r="1" fill="rgba(10,1,0,0)"/>
-  <circle cx="91" cy="115" r="1" fill="rgba(26,8,2,0)"/>
-  <circle cx="92" cy="115" r="1" fill="rgba(10,0,0,0)"/>
-  <circle cx="93" cy="115" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="94" cy="115" r="1" fill="rgba(15,4,0,0)"/>
-  <circle cx="95" cy="115" r="1" fill="rgba(7,2,0,0)"/>
-  <circle cx="96" cy="115" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="97" cy="115" r="1" fill="rgba(4,1,0,0)"/>
-  <circle cx="98" cy="115" r="1" fill="rgba(7,1,0,0)"/>
-  <circle cx="99" cy="115" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="100" cy="115" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="101" cy="115" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="102" cy="115" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="103" cy="115" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="104" cy="115" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="105" cy="115" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="106" cy="115" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="107" cy="115" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="108" cy="115" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="109" cy="115" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="110" cy="115" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="111" cy="115" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="112" cy="115" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="113" cy="115" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="114" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="115" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="116" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="116" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="19" cy="116" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="20" cy="116" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="21" cy="116" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="22" cy="116" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="23" cy="116" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="24" cy="116" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="25" cy="116" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="26" cy="116" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="27" cy="116" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="28" cy="116" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="29" cy="116" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="30" cy="116" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="31" cy="116" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="32" cy="116" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="33" cy="116" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="34" cy="116" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="35" cy="116" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="36" cy="116" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="37" cy="116" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="38" cy="116" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="39" cy="116" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="40" cy="116" r="1" fill="rgba(115,13,3,0)"/>
-  <circle cx="41" cy="116" r="1" fill="rgba(112,14,3,0)"/>
-  <circle cx="42" cy="116" r="1" fill="rgba(110,16,3,0)"/>
-  <circle cx="43" cy="116" r="1" fill="rgba(113,17,3,0)"/>
-  <circle cx="44" cy="116" r="1" fill="rgba(91,12,2,0)"/>
-  <circle cx="45" cy="116" r="1" fill="rgba(86,13,3,0)"/>
-  <circle cx="46" cy="116" r="1" fill="rgba(104,18,4,0)"/>
-  <circle cx="47" cy="116" r="1" fill="rgba(94,16,3,0)"/>
-  <circle cx="48" cy="116" r="1" fill="rgba(92,16,3,0)"/>
-  <circle cx="49" cy="116" r="1" fill="rgba(99,18,4,0)"/>
-  <circle cx="50" cy="116" r="1" fill="rgba(98,19,4,0)"/>
-  <circle cx="51" cy="116" r="1" fill="rgba(83,16,3,0)"/>
-  <circle cx="52" cy="116" r="1" fill="rgba(77,15,3,0)"/>
-  <circle cx="53" cy="116" r="1" fill="rgba(88,18,4,0.0156863)"/>
-  <circle cx="54" cy="116" r="1" fill="rgba(91,20,5,0.101961)"/>
-  <circle cx="55" cy="116" r="1" fill="rgba(68,14,2,0.215686)"/>
-  <circle cx="56" cy="116" r="1" fill="rgba(47,8,1,0.32549)"/>
-  <circle cx="57" cy="116" r="1" fill="rgba(28,4,0,0.403922)"/>
-  <circle cx="58" cy="116" r="1" fill="rgba(17,1,0,0.447059)"/>
-  <circle cx="59" cy="116" r="1" fill="rgba(4,0,0,0.462745)"/>
-  <circle cx="60" cy="116" r="1" fill="rgba(0,0,0,0.466667)"/>
-  <circle cx="61" cy="116" r="1" fill="rgba(0,0,0,0.470588)"/>
-  <circle cx="62" cy="116" r="1" fill="rgba(0,0,0,0.466667)"/>
-  <circle cx="63" cy="116" r="1" fill="rgba(0,0,0,0.466667)"/>
-  <circle cx="64" cy="116" r="1" fill="rgba(0,0,0,0.466667)"/>
-  <circle cx="65" cy="116" r="1" fill="rgba(0,0,0,0.466667)"/>
-  <circle cx="66" cy="116" r="1" fill="rgba(0,0,0,0.466667)"/>
-  <circle cx="67" cy="116" r="1" fill="rgba(0,0,0,0.466667)"/>
-  <circle cx="68" cy="116" r="1" fill="rgba(0,0,0,0.466667)"/>
-  <circle cx="69" cy="116" r="1" fill="rgba(0,0,0,0.462745)"/>
-  <circle cx="70" cy="116" r="1" fill="rgba(0,0,0,0.458824)"/>
-  <circle cx="71" cy="116" r="1" fill="rgba(7,0,0,0.454902)"/>
-  <circle cx="72" cy="116" r="1" fill="rgba(10,0,0,0.447059)"/>
-  <circle cx="73" cy="116" r="1" fill="rgba(10,0,0,0.431373)"/>
-  <circle cx="74" cy="116" r="1" fill="rgba(15,1,0,0.415686)"/>
-  <circle cx="75" cy="116" r="1" fill="rgba(17,2,0,0.396078)"/>
-  <circle cx="76" cy="116" r="1" fill="rgba(21,4,0,0.364706)"/>
-  <circle cx="77" cy="116" r="1" fill="rgba(29,6,0,0.321569)"/>
-  <circle cx="78" cy="116" r="1" fill="rgba(36,9,1,0.278431)"/>
-  <circle cx="79" cy="116" r="1" fill="rgba(39,11,1,0.227451)"/>
-  <circle cx="80" cy="116" r="1" fill="rgba(43,11,2,0.180392)"/>
-  <circle cx="81" cy="116" r="1" fill="rgba(49,12,2,0.133333)"/>
-  <circle cx="82" cy="116" r="1" fill="rgba(53,11,1,0.0901961)"/>
-  <circle cx="83" cy="116" r="1" fill="rgba(51,9,0,0.054902)"/>
-  <circle cx="84" cy="116" r="1" fill="rgba(45,4,0,0.0313725)"/>
-  <circle cx="85" cy="116" r="1" fill="rgba(17,0,0,0.0117647)"/>
-  <circle cx="86" cy="116" r="1" fill="rgba(0,0,0,0.00392157)"/>
-  <circle cx="87" cy="116" r="1" fill="rgba(10,4,0,0)"/>
-  <circle cx="88" cy="116" r="1" fill="rgba(21,4,3,0)"/>
-  <circle cx="89" cy="116" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="90" cy="116" r="1" fill="rgba(10,1,0,0)"/>
-  <circle cx="91" cy="116" r="1" fill="rgba(26,8,2,0)"/>
-  <circle cx="92" cy="116" r="1" fill="rgba(10,0,0,0)"/>
-  <circle cx="93" cy="116" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="94" cy="116" r="1" fill="rgba(15,4,0,0)"/>
-  <circle cx="95" cy="116" r="1" fill="rgba(7,2,0,0)"/>
-  <circle cx="96" cy="116" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="97" cy="116" r="1" fill="rgba(4,1,0,0)"/>
-  <circle cx="98" cy="116" r="1" fill="rgba(7,1,0,0)"/>
-  <circle cx="99" cy="116" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="100" cy="116" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="101" cy="116" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="102" cy="116" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="103" cy="116" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="104" cy="116" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="105" cy="116" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="106" cy="116" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="107" cy="116" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="108" cy="116" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="109" cy="116" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="110" cy="116" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="111" cy="116" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="112" cy="116" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="113" cy="116" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="114" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="116" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="117" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="117" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="19" cy="117" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="20" cy="117" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="21" cy="117" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="22" cy="117" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="23" cy="117" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="24" cy="117" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="25" cy="117" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="26" cy="117" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="27" cy="117" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="28" cy="117" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="29" cy="117" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="30" cy="117" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="31" cy="117" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="32" cy="117" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="33" cy="117" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="34" cy="117" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="35" cy="117" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="36" cy="117" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="37" cy="117" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="38" cy="117" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="39" cy="117" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="40" cy="117" r="1" fill="rgba(115,13,3,0)"/>
-  <circle cx="41" cy="117" r="1" fill="rgba(112,14,3,0)"/>
-  <circle cx="42" cy="117" r="1" fill="rgba(110,16,3,0)"/>
-  <circle cx="43" cy="117" r="1" fill="rgba(113,17,3,0)"/>
-  <circle cx="44" cy="117" r="1" fill="rgba(91,12,2,0)"/>
-  <circle cx="45" cy="117" r="1" fill="rgba(86,13,3,0)"/>
-  <circle cx="46" cy="117" r="1" fill="rgba(104,18,4,0)"/>
-  <circle cx="47" cy="117" r="1" fill="rgba(94,16,3,0)"/>
-  <circle cx="48" cy="117" r="1" fill="rgba(92,16,3,0)"/>
-  <circle cx="49" cy="117" r="1" fill="rgba(99,18,4,0)"/>
-  <circle cx="50" cy="117" r="1" fill="rgba(98,19,4,0)"/>
-  <circle cx="51" cy="117" r="1" fill="rgba(83,16,3,0)"/>
-  <circle cx="52" cy="117" r="1" fill="rgba(76,15,3,0)"/>
-  <circle cx="53" cy="117" r="1" fill="rgba(88,18,4,0)"/>
-  <circle cx="54" cy="117" r="1" fill="rgba(97,23,7,0)"/>
-  <circle cx="55" cy="117" r="1" fill="rgba(81,16,3,0.00784314)"/>
-  <circle cx="56" cy="117" r="1" fill="rgba(75,16,3,0.054902)"/>
-  <circle cx="57" cy="117" r="1" fill="rgba(68,14,3,0.133333)"/>
-  <circle cx="58" cy="117" r="1" fill="rgba(62,13,2,0.219608)"/>
-  <circle cx="59" cy="117" r="1" fill="rgba(54,11,2,0.294118)"/>
-  <circle cx="60" cy="117" r="1" fill="rgba(37,7,1,0.34902)"/>
-  <circle cx="61" cy="117" r="1" fill="rgba(24,3,0,0.388235)"/>
-  <circle cx="62" cy="117" r="1" fill="rgba(26,3,0,0.419608)"/>
-  <circle cx="63" cy="117" r="1" fill="rgba(21,2,0,0.439216)"/>
-  <circle cx="64" cy="117" r="1" fill="rgba(10,0,0,0.443137)"/>
-  <circle cx="65" cy="117" r="1" fill="rgba(0,0,0,0.447059)"/>
-  <circle cx="66" cy="117" r="1" fill="rgba(10,0,0,0.447059)"/>
-  <circle cx="67" cy="117" r="1" fill="rgba(12,2,0,0.443137)"/>
-  <circle cx="68" cy="117" r="1" fill="rgba(12,2,0,0.431373)"/>
-  <circle cx="69" cy="117" r="1" fill="rgba(10,1,0,0.419608)"/>
-  <circle cx="70" cy="117" r="1" fill="rgba(10,0,0,0.4)"/>
-  <circle cx="71" cy="117" r="1" fill="rgba(19,3,0,0.380392)"/>
-  <circle cx="72" cy="117" r="1" fill="rgba(26,4,0,0.360784)"/>
-  <circle cx="73" cy="117" r="1" fill="rgba(28,5,0,0.337255)"/>
-  <circle cx="74" cy="117" r="1" fill="rgba(29,6,1,0.301961)"/>
-  <circle cx="75" cy="117" r="1" fill="rgba(31,8,1,0.266667)"/>
-  <circle cx="76" cy="117" r="1" fill="rgba(37,9,2,0.227451)"/>
-  <circle cx="77" cy="117" r="1" fill="rgba(42,11,2,0.184314)"/>
-  <circle cx="78" cy="117" r="1" fill="rgba(49,14,3,0.145098)"/>
-  <circle cx="79" cy="117" r="1" fill="rgba(53,14,2,0.105882)"/>
-  <circle cx="80" cy="117" r="1" fill="rgba(51,9,0,0.0705882)"/>
-  <circle cx="81" cy="117" r="1" fill="rgba(57,7,0,0.0431373)"/>
-  <circle cx="82" cy="117" r="1" fill="rgba(54,1,0,0.0235294)"/>
-  <circle cx="83" cy="117" r="1" fill="rgba(31,0,0,0.00784314)"/>
-  <circle cx="84" cy="117" r="1" fill="rgba(7,2,0,0.00392157)"/>
-  <circle cx="85" cy="117" r="1" fill="rgba(4,2,0,0)"/>
-  <circle cx="86" cy="117" r="1" fill="rgba(7,1,0,0)"/>
-  <circle cx="87" cy="117" r="1" fill="rgba(12,3,0,0)"/>
-  <circle cx="88" cy="117" r="1" fill="rgba(21,4,2,0)"/>
-  <circle cx="89" cy="117" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="90" cy="117" r="1" fill="rgba(10,1,0,0)"/>
-  <circle cx="91" cy="117" r="1" fill="rgba(26,8,2,0)"/>
-  <circle cx="92" cy="117" r="1" fill="rgba(10,0,0,0)"/>
-  <circle cx="93" cy="117" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="94" cy="117" r="1" fill="rgba(15,4,0,0)"/>
-  <circle cx="95" cy="117" r="1" fill="rgba(7,2,0,0)"/>
-  <circle cx="96" cy="117" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="97" cy="117" r="1" fill="rgba(4,1,0,0)"/>
-  <circle cx="98" cy="117" r="1" fill="rgba(7,1,0,0)"/>
-  <circle cx="99" cy="117" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="100" cy="117" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="101" cy="117" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="102" cy="117" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="103" cy="117" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="104" cy="117" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="105" cy="117" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="106" cy="117" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="107" cy="117" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="108" cy="117" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="109" cy="117" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="110" cy="117" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="111" cy="117" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="112" cy="117" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="113" cy="117" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="114" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="117" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="118" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="118" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="19" cy="118" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="20" cy="118" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="21" cy="118" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="22" cy="118" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="23" cy="118" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="24" cy="118" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="25" cy="118" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="26" cy="118" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="27" cy="118" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="28" cy="118" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="29" cy="118" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="30" cy="118" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="31" cy="118" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="32" cy="118" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="33" cy="118" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="34" cy="118" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="35" cy="118" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="36" cy="118" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="37" cy="118" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="38" cy="118" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="39" cy="118" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="40" cy="118" r="1" fill="rgba(115,13,3,0)"/>
-  <circle cx="41" cy="118" r="1" fill="rgba(112,14,3,0)"/>
-  <circle cx="42" cy="118" r="1" fill="rgba(110,16,3,0)"/>
-  <circle cx="43" cy="118" r="1" fill="rgba(113,17,3,0)"/>
-  <circle cx="44" cy="118" r="1" fill="rgba(91,12,2,0)"/>
-  <circle cx="45" cy="118" r="1" fill="rgba(86,13,3,0)"/>
-  <circle cx="46" cy="118" r="1" fill="rgba(104,18,4,0)"/>
-  <circle cx="47" cy="118" r="1" fill="rgba(94,16,3,0)"/>
-  <circle cx="48" cy="118" r="1" fill="rgba(92,16,3,0)"/>
-  <circle cx="49" cy="118" r="1" fill="rgba(99,18,4,0)"/>
-  <circle cx="50" cy="118" r="1" fill="rgba(98,19,4,0)"/>
-  <circle cx="51" cy="118" r="1" fill="rgba(83,16,3,0)"/>
-  <circle cx="52" cy="118" r="1" fill="rgba(76,15,3,0)"/>
-  <circle cx="53" cy="118" r="1" fill="rgba(88,18,4,0)"/>
-  <circle cx="54" cy="118" r="1" fill="rgba(94,23,6,0)"/>
-  <circle cx="55" cy="118" r="1" fill="rgba(74,12,2,0)"/>
-  <circle cx="56" cy="118" r="1" fill="rgba(78,11,2,0)"/>
-  <circle cx="57" cy="118" r="1" fill="rgba(76,9,2,0)"/>
-  <circle cx="58" cy="118" r="1" fill="rgba(83,17,3,0.0156863)"/>
-  <circle cx="59" cy="118" r="1" fill="rgba(87,22,5,0.054902)"/>
-  <circle cx="60" cy="118" r="1" fill="rgba(65,14,3,0.0941176)"/>
-  <circle cx="61" cy="118" r="1" fill="rgba(58,14,3,0.137255)"/>
-  <circle cx="62" cy="118" r="1" fill="rgba(69,17,3,0.188235)"/>
-  <circle cx="63" cy="118" r="1" fill="rgba(51,12,2,0.223529)"/>
-  <circle cx="64" cy="118" r="1" fill="rgba(21,2,0,0.235294)"/>
-  <circle cx="65" cy="118" r="1" fill="rgba(31,5,0,0.258824)"/>
-  <circle cx="66" cy="118" r="1" fill="rgba(51,12,2,0.278431)"/>
-  <circle cx="67" cy="118" r="1" fill="rgba(51,13,2,0.282353)"/>
-  <circle cx="68" cy="118" r="1" fill="rgba(46,12,2,0.278431)"/>
-  <circle cx="69" cy="118" r="1" fill="rgba(33,7,1,0.258824)"/>
-  <circle cx="70" cy="118" r="1" fill="rgba(22,4,0,0.239216)"/>
-  <circle cx="71" cy="118" r="1" fill="rgba(34,8,1,0.227451)"/>
-  <circle cx="72" cy="118" r="1" fill="rgba(45,11,2,0.207843)"/>
-  <circle cx="73" cy="118" r="1" fill="rgba(47,13,3,0.180392)"/>
-  <circle cx="74" cy="118" r="1" fill="rgba(45,12,2,0.152941)"/>
-  <circle cx="75" cy="118" r="1" fill="rgba(43,11,2,0.12549)"/>
-  <circle cx="76" cy="118" r="1" fill="rgba(46,12,1,0.0980392)"/>
-  <circle cx="77" cy="118" r="1" fill="rgba(54,11,2,0.0705882)"/>
-  <circle cx="78" cy="118" r="1" fill="rgba(61,12,1,0.0470588)"/>
-  <circle cx="79" cy="118" r="1" fill="rgba(62,5,0,0.027451)"/>
-  <circle cx="80" cy="118" r="1" fill="rgba(43,0,0,0.0156863)"/>
-  <circle cx="81" cy="118" r="1" fill="rgba(33,0,0,0.00784314)"/>
-  <circle cx="82" cy="118" r="1" fill="rgba(15,0,0,0)"/>
-  <circle cx="83" cy="118" r="1" fill="rgba(10,1,0,0)"/>
-  <circle cx="84" cy="118" r="1" fill="rgba(7,6,0,0)"/>
-  <circle cx="85" cy="118" r="1" fill="rgba(7,3,0,0)"/>
-  <circle cx="86" cy="118" r="1" fill="rgba(7,1,0,0)"/>
-  <circle cx="87" cy="118" r="1" fill="rgba(12,3,0,0)"/>
-  <circle cx="88" cy="118" r="1" fill="rgba(21,4,2,0)"/>
-  <circle cx="89" cy="118" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="90" cy="118" r="1" fill="rgba(10,1,0,0)"/>
-  <circle cx="91" cy="118" r="1" fill="rgba(26,8,2,0)"/>
-  <circle cx="92" cy="118" r="1" fill="rgba(10,0,0,0)"/>
-  <circle cx="93" cy="118" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="94" cy="118" r="1" fill="rgba(15,4,0,0)"/>
-  <circle cx="95" cy="118" r="1" fill="rgba(7,2,0,0)"/>
-  <circle cx="96" cy="118" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="97" cy="118" r="1" fill="rgba(4,1,0,0)"/>
-  <circle cx="98" cy="118" r="1" fill="rgba(7,1,0,0)"/>
-  <circle cx="99" cy="118" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="100" cy="118" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="101" cy="118" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="102" cy="118" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="103" cy="118" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="104" cy="118" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="105" cy="118" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="106" cy="118" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="107" cy="118" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="108" cy="118" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="109" cy="118" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="110" cy="118" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="111" cy="118" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="112" cy="118" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="113" cy="118" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="114" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="118" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="119" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="119" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="19" cy="119" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="20" cy="119" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="21" cy="119" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="22" cy="119" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="23" cy="119" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="24" cy="119" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="25" cy="119" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="26" cy="119" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="27" cy="119" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="28" cy="119" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="29" cy="119" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="30" cy="119" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="31" cy="119" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="32" cy="119" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="33" cy="119" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="34" cy="119" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="35" cy="119" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="36" cy="119" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="37" cy="119" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="38" cy="119" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="39" cy="119" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="40" cy="119" r="1" fill="rgba(115,13,3,0)"/>
-  <circle cx="41" cy="119" r="1" fill="rgba(112,14,3,0)"/>
-  <circle cx="42" cy="119" r="1" fill="rgba(110,16,3,0)"/>
-  <circle cx="43" cy="119" r="1" fill="rgba(113,17,3,0)"/>
-  <circle cx="44" cy="119" r="1" fill="rgba(91,12,2,0)"/>
-  <circle cx="45" cy="119" r="1" fill="rgba(86,13,3,0)"/>
-  <circle cx="46" cy="119" r="1" fill="rgba(104,18,4,0)"/>
-  <circle cx="47" cy="119" r="1" fill="rgba(94,16,3,0)"/>
-  <circle cx="48" cy="119" r="1" fill="rgba(92,16,3,0)"/>
-  <circle cx="49" cy="119" r="1" fill="rgba(99,18,4,0)"/>
-  <circle cx="50" cy="119" r="1" fill="rgba(98,19,4,0)"/>
-  <circle cx="51" cy="119" r="1" fill="rgba(83,16,3,0)"/>
-  <circle cx="52" cy="119" r="1" fill="rgba(76,15,3,0)"/>
-  <circle cx="53" cy="119" r="1" fill="rgba(88,18,4,0)"/>
-  <circle cx="54" cy="119" r="1" fill="rgba(94,23,6,0)"/>
-  <circle cx="55" cy="119" r="1" fill="rgba(74,12,2,0)"/>
-  <circle cx="56" cy="119" r="1" fill="rgba(78,11,2,0)"/>
-  <circle cx="57" cy="119" r="1" fill="rgba(73,4,1,0)"/>
-  <circle cx="58" cy="119" r="1" fill="rgba(85,13,3,0)"/>
-  <circle cx="59" cy="119" r="1" fill="rgba(96,8,4,0)"/>
-  <circle cx="60" cy="119" r="1" fill="rgba(69,5,0,0)"/>
-  <circle cx="61" cy="119" r="1" fill="rgba(82,21,7,0.00784314)"/>
-  <circle cx="62" cy="119" r="1" fill="rgba(103,33,15,0.0196078)"/>
-  <circle cx="63" cy="119" r="1" fill="rgba(76,23,7,0.027451)"/>
-  <circle cx="64" cy="119" r="1" fill="rgba(54,22,6,0.0313725)"/>
-  <circle cx="65" cy="119" r="1" fill="rgba(82,33,12,0.0509804)"/>
-  <circle cx="66" cy="119" r="1" fill="rgba(95,37,11,0.0745098)"/>
-  <circle cx="67" cy="119" r="1" fill="rgba(94,35,11,0.0862745)"/>
-  <circle cx="68" cy="119" r="1" fill="rgba(78,31,8,0.0941176)"/>
-  <circle cx="69" cy="119" r="1" fill="rgba(54,17,5,0.0901961)"/>
-  <circle cx="70" cy="119" r="1" fill="rgba(39,8,1,0.0823529)"/>
-  <circle cx="71" cy="119" r="1" fill="rgba(47,8,1,0.0823529)"/>
-  <circle cx="72" cy="119" r="1" fill="rgba(53,18,3,0.0745098)"/>
-  <circle cx="73" cy="119" r="1" fill="rgba(58,16,3,0.0627451)"/>
-  <circle cx="74" cy="119" r="1" fill="rgba(59,11,0,0.0509804)"/>
-  <circle cx="75" cy="119" r="1" fill="rgba(51,4,0,0.0352941)"/>
-  <circle cx="76" cy="119" r="1" fill="rgba(50,5,0,0.0235294)"/>
-  <circle cx="77" cy="119" r="1" fill="rgba(59,0,0,0.00784314)"/>
-  <circle cx="78" cy="119" r="1" fill="rgba(40,0,0,0.00392157)"/>
-  <circle cx="79" cy="119" r="1" fill="rgba(26,0,0,0.00392157)"/>
-  <circle cx="80" cy="119" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="81" cy="119" r="1" fill="none"/>
-  <circle cx="82" cy="119" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="83" cy="119" r="1" fill="rgba(15,1,0,0)"/>
-  <circle cx="84" cy="119" r="1" fill="rgba(7,6,0,0)"/>
-  <circle cx="85" cy="119" r="1" fill="rgba(7,3,0,0)"/>
-  <circle cx="86" cy="119" r="1" fill="rgba(7,1,0,0)"/>
-  <circle cx="87" cy="119" r="1" fill="rgba(12,3,0,0)"/>
-  <circle cx="88" cy="119" r="1" fill="rgba(21,4,2,0)"/>
-  <circle cx="89" cy="119" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="90" cy="119" r="1" fill="rgba(10,1,0,0)"/>
-  <circle cx="91" cy="119" r="1" fill="rgba(26,8,2,0)"/>
-  <circle cx="92" cy="119" r="1" fill="rgba(10,0,0,0)"/>
-  <circle cx="93" cy="119" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="94" cy="119" r="1" fill="rgba(15,4,0,0)"/>
-  <circle cx="95" cy="119" r="1" fill="rgba(7,2,0,0)"/>
-  <circle cx="96" cy="119" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="97" cy="119" r="1" fill="rgba(4,1,0,0)"/>
-  <circle cx="98" cy="119" r="1" fill="rgba(7,1,0,0)"/>
-  <circle cx="99" cy="119" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="100" cy="119" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="101" cy="119" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="102" cy="119" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="103" cy="119" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="104" cy="119" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="105" cy="119" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="106" cy="119" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="107" cy="119" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="108" cy="119" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="109" cy="119" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="110" cy="119" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="111" cy="119" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="112" cy="119" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="113" cy="119" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="114" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="119" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="120" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="120" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="19" cy="120" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="20" cy="120" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="21" cy="120" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="22" cy="120" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="23" cy="120" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="24" cy="120" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="25" cy="120" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="26" cy="120" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="27" cy="120" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="28" cy="120" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="29" cy="120" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="30" cy="120" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="31" cy="120" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="32" cy="120" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="33" cy="120" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="34" cy="120" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="35" cy="120" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="36" cy="120" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="37" cy="120" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="38" cy="120" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="39" cy="120" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="40" cy="120" r="1" fill="rgba(115,13,3,0)"/>
-  <circle cx="41" cy="120" r="1" fill="rgba(112,14,3,0)"/>
-  <circle cx="42" cy="120" r="1" fill="rgba(110,16,3,0)"/>
-  <circle cx="43" cy="120" r="1" fill="rgba(113,17,3,0)"/>
-  <circle cx="44" cy="120" r="1" fill="rgba(91,12,2,0)"/>
-  <circle cx="45" cy="120" r="1" fill="rgba(86,13,3,0)"/>
-  <circle cx="46" cy="120" r="1" fill="rgba(104,18,4,0)"/>
-  <circle cx="47" cy="120" r="1" fill="rgba(94,16,3,0)"/>
-  <circle cx="48" cy="120" r="1" fill="rgba(92,16,3,0)"/>
-  <circle cx="49" cy="120" r="1" fill="rgba(99,18,4,0)"/>
-  <circle cx="50" cy="120" r="1" fill="rgba(98,19,4,0)"/>
-  <circle cx="51" cy="120" r="1" fill="rgba(83,16,3,0)"/>
-  <circle cx="52" cy="120" r="1" fill="rgba(76,15,3,0)"/>
-  <circle cx="53" cy="120" r="1" fill="rgba(88,18,4,0)"/>
-  <circle cx="54" cy="120" r="1" fill="rgba(94,23,6,0)"/>
-  <circle cx="55" cy="120" r="1" fill="rgba(74,12,2,0)"/>
-  <circle cx="56" cy="120" r="1" fill="rgba(78,11,2,0)"/>
-  <circle cx="57" cy="120" r="1" fill="rgba(73,5,1,0)"/>
-  <circle cx="58" cy="120" r="1" fill="rgba(85,13,3,0)"/>
-  <circle cx="59" cy="120" r="1" fill="rgba(96,6,3,0)"/>
-  <circle cx="60" cy="120" r="1" fill="rgba(68,4,0,0)"/>
-  <circle cx="61" cy="120" r="1" fill="rgba(87,23,10,0)"/>
-  <circle cx="62" cy="120" r="1" fill="rgba(116,31,22,0)"/>
-  <circle cx="63" cy="120" r="1" fill="rgba(96,20,11,0)"/>
-  <circle cx="64" cy="120" r="1" fill="rgba(86,47,20,0)"/>
-  <circle cx="65" cy="120" r="1" fill="rgba(137,82,51,0)"/>
-  <circle cx="66" cy="120" r="1" fill="rgba(155,107,71,0.00392157)"/>
-  <circle cx="67" cy="120" r="1" fill="rgba(144,86,48,0.00784314)"/>
-  <circle cx="68" cy="120" r="1" fill="rgba(122,62,28,0.00784314)"/>
-  <circle cx="69" cy="120" r="1" fill="rgba(74,26,10,0.0156863)"/>
-  <circle cx="70" cy="120" r="1" fill="rgba(28,6,0,0.0117647)"/>
-  <circle cx="71" cy="120" r="1" fill="rgba(24,0,0,0.0117647)"/>
-  <circle cx="72" cy="120" r="1" fill="rgba(24,9,0,0.0117647)"/>
-  <circle cx="73" cy="120" r="1" fill="rgba(28,5,0,0.0117647)"/>
-  <circle cx="74" cy="120" r="1" fill="rgba(37,0,0,0.00392157)"/>
-  <circle cx="75" cy="120" r="1" fill="rgba(26,0,0,0)"/>
-  <circle cx="76" cy="120" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="77" cy="120" r="1" fill="rgba(28,0,0,0)"/>
-  <circle cx="78" cy="120" r="1" fill="none"/>
-  <circle cx="79" cy="120" r="1" fill="rgba(0,1,0,0)"/>
-  <circle cx="80" cy="120" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="81" cy="120" r="1" fill="none"/>
-  <circle cx="82" cy="120" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="83" cy="120" r="1" fill="rgba(15,1,0,0)"/>
-  <circle cx="84" cy="120" r="1" fill="rgba(7,6,0,0)"/>
-  <circle cx="85" cy="120" r="1" fill="rgba(7,3,0,0)"/>
-  <circle cx="86" cy="120" r="1" fill="rgba(7,1,0,0)"/>
-  <circle cx="87" cy="120" r="1" fill="rgba(12,3,0,0)"/>
-  <circle cx="88" cy="120" r="1" fill="rgba(21,4,2,0)"/>
-  <circle cx="89" cy="120" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="90" cy="120" r="1" fill="rgba(10,1,0,0)"/>
-  <circle cx="91" cy="120" r="1" fill="rgba(26,8,2,0)"/>
-  <circle cx="92" cy="120" r="1" fill="rgba(10,0,0,0)"/>
-  <circle cx="93" cy="120" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="94" cy="120" r="1" fill="rgba(15,4,0,0)"/>
-  <circle cx="95" cy="120" r="1" fill="rgba(7,2,0,0)"/>
-  <circle cx="96" cy="120" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="97" cy="120" r="1" fill="rgba(4,1,0,0)"/>
-  <circle cx="98" cy="120" r="1" fill="rgba(7,1,0,0)"/>
-  <circle cx="99" cy="120" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="100" cy="120" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="101" cy="120" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="102" cy="120" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="103" cy="120" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="104" cy="120" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="105" cy="120" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="106" cy="120" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="107" cy="120" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="108" cy="120" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="109" cy="120" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="110" cy="120" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="111" cy="120" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="112" cy="120" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="113" cy="120" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="114" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="120" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="121" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="121" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="19" cy="121" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="20" cy="121" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="21" cy="121" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="22" cy="121" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="23" cy="121" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="24" cy="121" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="25" cy="121" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="26" cy="121" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="27" cy="121" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="28" cy="121" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="29" cy="121" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="30" cy="121" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="31" cy="121" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="32" cy="121" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="33" cy="121" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="34" cy="121" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="35" cy="121" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="36" cy="121" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="37" cy="121" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="38" cy="121" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="39" cy="121" r="1" fill="rgba(115,13,2,0)"/>
-  <circle cx="40" cy="121" r="1" fill="rgba(115,13,3,0)"/>
-  <circle cx="41" cy="121" r="1" fill="rgba(112,14,3,0)"/>
-  <circle cx="42" cy="121" r="1" fill="rgba(110,16,3,0)"/>
-  <circle cx="43" cy="121" r="1" fill="rgba(113,17,3,0)"/>
-  <circle cx="44" cy="121" r="1" fill="rgba(91,12,2,0)"/>
-  <circle cx="45" cy="121" r="1" fill="rgba(86,13,3,0)"/>
-  <circle cx="46" cy="121" r="1" fill="rgba(104,18,4,0)"/>
-  <circle cx="47" cy="121" r="1" fill="rgba(94,16,3,0)"/>
-  <circle cx="48" cy="121" r="1" fill="rgba(92,16,3,0)"/>
-  <circle cx="49" cy="121" r="1" fill="rgba(99,18,4,0)"/>
-  <circle cx="50" cy="121" r="1" fill="rgba(98,19,4,0)"/>
-  <circle cx="51" cy="121" r="1" fill="rgba(83,16,3,0)"/>
-  <circle cx="52" cy="121" r="1" fill="rgba(76,15,3,0)"/>
-  <circle cx="53" cy="121" r="1" fill="rgba(88,18,4,0)"/>
-  <circle cx="54" cy="121" r="1" fill="rgba(94,23,6,0)"/>
-  <circle cx="55" cy="121" r="1" fill="rgba(74,12,2,0)"/>
-  <circle cx="56" cy="121" r="1" fill="rgba(78,11,2,0)"/>
-  <circle cx="57" cy="121" r="1" fill="rgba(73,5,1,0)"/>
-  <circle cx="58" cy="121" r="1" fill="rgba(85,13,3,0)"/>
-  <circle cx="59" cy="121" r="1" fill="rgba(96,6,3,0)"/>
-  <circle cx="60" cy="121" r="1" fill="rgba(68,4,0,0)"/>
-  <circle cx="61" cy="121" r="1" fill="rgba(86,23,9,0)"/>
-  <circle cx="62" cy="121" r="1" fill="rgba(114,28,20,0)"/>
-  <circle cx="63" cy="121" r="1" fill="rgba(95,17,11,0)"/>
-  <circle cx="64" cy="121" r="1" fill="rgba(86,47,20,0)"/>
-  <circle cx="65" cy="121" r="1" fill="rgba(141,86,55,0)"/>
-  <circle cx="66" cy="121" r="1" fill="rgba(174,134,105,0)"/>
-  <circle cx="67" cy="121" r="1" fill="rgba(158,105,68,0)"/>
-  <circle cx="68" cy="121" r="1" fill="rgba(131,62,36,0)"/>
-  <circle cx="69" cy="121" r="1" fill="rgba(59,12,4,0.00392157)"/>
-  <circle cx="70" cy="121" r="1" fill="rgba(15,0,0,0)"/>
-  <circle cx="71" cy="121" r="1" fill="none"/>
-  <circle cx="72" cy="121" r="1" fill="none"/>
-  <circle cx="73" cy="121" r="1" fill="none"/>
-  <circle cx="74" cy="121" r="1" fill="none"/>
-  <circle cx="75" cy="121" r="1" fill="none"/>
-  <circle cx="76" cy="121" r="1" fill="none"/>
-  <circle cx="77" cy="121" r="1" fill="rgba(24,0,0,0)"/>
-  <circle cx="78" cy="121" r="1" fill="rgba(10,0,0,0)"/>
-  <circle cx="79" cy="121" r="1" fill="rgba(4,1,0,0)"/>
-  <circle cx="80" cy="121" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="81" cy="121" r="1" fill="none"/>
-  <circle cx="82" cy="121" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="83" cy="121" r="1" fill="rgba(15,1,0,0)"/>
-  <circle cx="84" cy="121" r="1" fill="rgba(7,6,0,0)"/>
-  <circle cx="85" cy="121" r="1" fill="rgba(7,3,0,0)"/>
-  <circle cx="86" cy="121" r="1" fill="rgba(7,1,0,0)"/>
-  <circle cx="87" cy="121" r="1" fill="rgba(12,3,0,0)"/>
-  <circle cx="88" cy="121" r="1" fill="rgba(21,4,2,0)"/>
-  <circle cx="89" cy="121" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="90" cy="121" r="1" fill="rgba(10,1,0,0)"/>
-  <circle cx="91" cy="121" r="1" fill="rgba(26,8,2,0)"/>
-  <circle cx="92" cy="121" r="1" fill="rgba(10,0,0,0)"/>
-  <circle cx="93" cy="121" r="1" fill="rgba(4,0,0,0)"/>
-  <circle cx="94" cy="121" r="1" fill="rgba(15,4,0,0)"/>
-  <circle cx="95" cy="121" r="1" fill="rgba(7,2,0,0)"/>
-  <circle cx="96" cy="121" r="1" fill="rgba(7,0,0,0)"/>
-  <circle cx="97" cy="121" r="1" fill="rgba(4,1,0,0)"/>
-  <circle cx="98" cy="121" r="1" fill="rgba(7,1,0,0)"/>
-  <circle cx="99" cy="121" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="100" cy="121" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="101" cy="121" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="102" cy="121" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="103" cy="121" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="104" cy="121" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="105" cy="121" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="106" cy="121" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="107" cy="121" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="108" cy="121" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="109" cy="121" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="110" cy="121" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="111" cy="121" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="112" cy="121" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="113" cy="121" r="1" fill="rgba(10,2,0,0)"/>
-  <circle cx="114" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="121" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="122" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="19" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="20" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="21" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="22" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="23" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="24" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="25" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="26" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="27" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="28" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="29" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="30" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="31" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="32" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="33" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="34" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="35" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="36" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="37" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="38" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="39" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="40" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="41" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="42" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="43" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="44" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="45" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="46" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="47" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="48" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="49" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="50" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="51" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="52" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="53" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="54" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="55" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="56" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="57" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="58" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="59" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="60" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="61" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="62" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="63" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="64" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="65" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="66" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="67" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="68" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="69" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="70" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="71" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="72" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="73" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="74" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="75" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="76" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="77" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="78" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="79" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="80" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="81" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="82" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="83" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="84" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="85" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="86" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="87" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="88" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="89" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="90" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="91" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="92" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="93" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="94" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="95" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="96" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="97" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="98" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="99" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="100" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="101" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="102" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="103" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="104" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="105" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="106" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="107" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="108" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="109" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="110" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="111" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="112" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="113" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="114" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="122" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="123" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="19" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="20" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="21" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="22" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="23" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="24" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="25" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="26" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="27" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="28" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="29" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="30" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="31" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="32" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="33" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="34" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="35" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="36" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="37" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="38" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="39" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="40" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="41" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="42" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="43" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="44" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="45" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="46" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="47" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="48" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="49" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="50" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="51" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="52" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="53" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="54" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="55" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="56" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="57" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="58" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="59" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="60" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="61" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="62" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="63" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="64" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="65" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="66" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="67" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="68" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="69" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="70" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="71" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="72" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="73" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="74" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="75" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="76" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="77" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="78" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="79" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="80" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="81" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="82" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="83" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="84" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="85" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="86" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="87" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="88" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="89" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="90" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="91" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="92" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="93" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="94" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="95" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="96" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="97" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="98" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="99" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="100" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="101" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="102" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="103" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="104" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="105" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="106" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="107" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="108" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="109" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="110" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="111" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="112" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="113" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="114" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="123" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="124" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="19" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="20" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="21" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="22" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="23" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="24" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="25" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="26" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="27" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="28" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="29" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="30" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="31" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="32" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="33" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="34" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="35" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="36" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="37" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="38" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="39" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="40" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="41" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="42" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="43" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="44" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="45" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="46" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="47" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="48" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="49" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="50" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="51" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="52" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="53" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="54" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="55" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="56" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="57" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="58" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="59" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="60" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="61" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="62" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="63" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="64" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="65" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="66" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="67" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="68" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="69" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="70" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="71" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="72" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="73" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="74" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="75" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="76" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="77" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="78" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="79" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="80" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="81" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="82" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="83" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="84" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="85" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="86" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="87" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="88" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="89" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="90" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="91" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="92" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="93" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="94" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="95" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="96" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="97" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="98" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="99" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="100" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="101" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="102" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="103" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="104" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="105" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="106" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="107" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="108" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="109" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="110" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="111" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="112" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="113" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="114" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="124" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="125" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="19" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="20" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="21" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="22" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="23" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="24" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="25" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="26" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="27" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="28" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="29" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="30" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="31" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="32" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="33" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="34" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="35" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="36" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="37" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="38" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="39" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="40" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="41" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="42" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="43" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="44" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="45" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="46" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="47" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="48" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="49" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="50" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="51" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="52" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="53" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="54" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="55" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="56" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="57" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="58" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="59" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="60" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="61" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="62" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="63" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="64" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="65" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="66" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="67" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="68" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="69" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="70" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="71" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="72" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="73" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="74" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="75" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="76" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="77" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="78" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="79" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="80" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="81" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="82" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="83" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="84" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="85" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="86" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="87" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="88" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="89" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="90" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="91" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="92" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="93" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="94" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="95" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="96" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="97" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="98" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="99" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="100" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="101" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="102" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="103" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="104" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="105" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="106" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="107" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="108" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="109" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="110" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="111" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="112" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="113" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="114" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="125" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="126" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="19" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="20" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="21" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="22" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="23" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="24" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="25" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="26" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="27" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="28" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="29" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="30" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="31" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="32" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="33" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="34" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="35" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="36" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="37" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="38" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="39" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="40" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="41" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="42" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="43" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="44" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="45" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="46" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="47" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="48" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="49" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="50" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="51" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="52" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="53" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="54" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="55" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="56" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="57" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="58" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="59" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="60" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="61" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="62" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="63" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="64" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="65" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="66" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="67" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="68" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="69" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="70" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="71" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="72" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="73" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="74" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="75" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="76" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="77" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="78" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="79" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="80" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="81" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="82" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="83" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="84" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="85" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="86" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="87" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="88" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="89" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="90" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="91" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="92" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="93" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="94" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="95" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="96" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="97" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="98" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="99" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="100" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="101" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="102" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="103" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="104" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="105" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="106" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="107" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="108" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="109" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="110" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="111" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="112" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="113" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="114" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="126" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="0" cy="127" r="1" fill="rgba(255,255,255,0)"/>
-  <circle cx="1" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="2" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="3" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="4" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="5" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="6" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="7" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="8" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="9" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="10" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="11" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="12" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="13" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="14" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="15" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="16" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="17" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="18" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="19" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="20" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="21" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="22" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="23" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="24" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="25" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="26" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="27" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="28" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="29" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="30" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="31" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="32" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="33" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="34" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="35" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="36" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="37" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="38" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="39" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="40" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="41" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="42" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="43" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="44" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="45" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="46" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="47" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="48" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="49" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="50" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="51" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="52" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="53" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="54" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="55" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="56" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="57" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="58" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="59" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="60" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="61" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="62" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="63" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="64" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="65" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="66" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="67" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="68" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="69" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="70" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="71" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="72" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="73" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="74" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="75" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="76" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="77" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="78" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="79" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="80" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="81" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="82" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="83" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="84" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="85" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="86" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="87" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="88" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="89" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="90" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="91" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="92" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="93" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="94" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="95" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="96" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="97" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="98" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="99" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="100" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="101" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="102" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="103" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="104" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="105" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="106" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="107" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="108" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="109" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="110" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="111" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="112" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="113" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="114" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="115" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="116" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="117" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="118" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="119" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="120" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="121" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="122" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="123" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="124" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="125" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="126" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-  <circle cx="127" cy="127" r="1" fill="rgba(255,254,254,0)"/>
-</svg>
diff --git a/Tools/iExploder/iexploder-1.7.2/src/media/bug.tiff b/Tools/iExploder/iexploder-1.7.2/src/media/bug.tiff
deleted file mode 100644
index 65c6448..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/media/bug.tiff
+++ /dev/null
Binary files differ
diff --git a/Tools/iExploder/iexploder-1.7.2/src/media/bug.xbm b/Tools/iExploder/iexploder-1.7.2/src/media/bug.xbm
deleted file mode 100644
index 03faaf0..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/media/bug.xbm
+++ /dev/null
@@ -1,174 +0,0 @@
-#define bug_width 128
-#define bug_height 128
-static char bug_bits[] = {
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFD, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xEF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xEF, 0xFB, 0xFF, 0xEF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFD, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x7F, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xBF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFD, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFD, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFD, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xDF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xBF, 0xFF, 0xFF, 0xFF, 0xFF, 0xBF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xBF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xF7, 0xFF, 0xFD, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xBF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xEF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFD, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xF9, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFB, 0xFF, 0xFF, 0xDF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xEF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFB, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xEF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFB, 0xFB, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFE, 0xFF, 0xF7, 0xBF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xEF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF7, 0xFF, 0xFF, 0xFD, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xDF, 
-  0xFF, 0xFF, 0xFF, 0x7F, 0xFF, 0xFF, 0xFF, 0xFD, 0xFF, 0xFF, 0xFD, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFD, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFD, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xBF, 0xF9, 0xFF, 0xFF, 0xFF, 0xF7, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFB, 0xFF, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF7, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0x7F, 0xDF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xF7, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFD, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xEF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xEF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xDF, 
-  0xFF, 0xFF, 0xFB, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xDF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF6, 
-  0xFF, 0xFF, 0xF7, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0x7F, 0xFF, 0xFE, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xBF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xDF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFB, 0xFF, 0xFF, 
-  0xEF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFB, 0xFF, 0xFF, 0xFF, 0xEF, 0xFF, 0xFD, 0xFF, 
-  0xFF, 0xFF, 0xFB, 0xFE, 0xFF, 0xFF, 0xBF, 0xFF, 0xFF, 0xDB, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFB, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xEF, 0xFF, 0xFF, 0xFF, 0xFE, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x7F, 0xFF, 
-  0xFB, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFE, 0xFF, 0xFF, 0xFF, 0xDF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFD, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFB, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF7, 0xFF, 
-  0xFF, 0xE7, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF7, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFB, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFB, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFB, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0xCF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFB, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFB, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xF7, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x77, 0xF7, 0x7D, 0xF7, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xF7, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 
-  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, };
diff --git a/Tools/iExploder/iexploder-1.7.2/src/media/bug.xpm b/Tools/iExploder/iexploder-1.7.2/src/media/bug.xpm
deleted file mode 100644
index 2105d5c..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/media/bug.xpm
+++ /dev/null
@@ -1,390 +0,0 @@
-/* XPM */
-static char *bug[] = {
-/* columns rows colors chars-per-pixel */
-"128 128 256 2",
-"   c #020000",
-".  c #0D0200",
-"X  c #0D0B04",
-"o  c #140200",
-"O  c #1C0200",
-"+  c #140A04",
-"@  c #1B0C04",
-"#  c #1D0F08",
-"$  c #1E1108",
-"%  c #240400",
-"&  c #2A0501",
-"*  c #270D04",
-"=  c #390902",
-"-  c #2B1206",
-";  c #23150B",
-":  c #2E1609",
-">  c #27160B",
-",  c #341206",
-"<  c #321609",
-"1  c #3E1708",
-"2  c #351A0B",
-"3  c #3D1E0D",
-"4  c #3A1307",
-"5  c #2C1D11",
-"6  c #241C13",
-"7  c #351E10",
-"8  c #3F200E",
-"9  c #332215",
-"0  c #3F2211",
-"q  c #34261A",
-"w  c #3A2A1D",
-"e  c #37281C",
-"r  c #2F2115",
-"t  c #3C2E21",
-"y  c #3E3125",
-"u  c #490B02",
-"i  c #570A01",
-"p  c #441B0A",
-"a  c #4B1D0B",
-"s  c #591605",
-"d  c #690A02",
-"f  c #681704",
-"g  c #761805",
-"h  c #7A0401",
-"j  c #48210E",
-"k  c #54230E",
-"l  c #432512",
-"z  c #462815",
-"x  c #4B2B16",
-"c  c #452B1A",
-"v  c #4C2E19",
-"b  c #4D2211",
-"n  c #502F18",
-"m  c #5A2912",
-"M  c #54331C",
-"N  c #58381F",
-"B  c #57381F",
-"V  c #4C311D",
-"C  c #79240A",
-"Z  c #662E16",
-"A  c #6D3015",
-"S  c #433529",
-"D  c #46382B",
-"F  c #5C3B22",
-"G  c #533926",
-"H  c #4A3D32",
-"J  c #603F25",
-"K  c #793E21",
-"L  c #4D4237",
-"P  c #554539",
-"I  c #5A402D",
-"U  c #614126",
-"Y  c #64442A",
-"T  c #6A4A2E",
-"R  c #674C35",
-"E  c #765538",
-"W  c #6E5137",
-"Q  c #554B43",
-"!  c #594E47",
-"~  c #5B524C",
-"^  c #5E5651",
-"/  c #6B5545",
-"(  c #715B4A",
-")  c #7A6453",
-"_  c #860701",
-"`  c #980700",
-"'  c #891705",
-"]  c #9C1B05",
-"[  c #981404",
-"{  c #A60D01",
-"}  c #BD0D02",
-"|  c #B20E01",
-" . c #AD1302",
-".. c #A21B03",
-"X. c #A51503",
-"o. c #B11403",
-"O. c #BD1304",
-"+. c #BE1A06",
-"@. c #B31C06",
-"#. c #89240A",
-"$. c #992709",
-"%. c #883415",
-"&. c #953615",
-"*. c #962E10",
-"=. c #BA250A",
-"-. c #AF350D",
-";. c #C40E02",
-":. c #C90E01",
-">. c #C41304",
-",. c #CB1402",
-"<. c #C41A06",
-"1. c #CB1A05",
-"2. c #C31E08",
-"3. c #CB1E08",
-"4. c #D21600",
-"5. c #D41B01",
-"6. c #DA1D00",
-"7. c #D21E08",
-"8. c #C4240A",
-"9. c #CC240A",
-"0. c #C42B0B",
-"q. c #CD2B0D",
-"w. c #CF2006",
-"e. c #D52302",
-"r. c #DC2200",
-"t. c #DB2B03",
-"y. c #D32C0C",
-"u. c #D42608",
-"i. c #CC310E",
-"p. c #C8360B",
-"a. c #D5340A",
-"s. c #CD3411",
-"d. c #CE3B14",
-"f. c #C63B14",
-"g. c #D23412",
-"h. c #D43B15",
-"j. c #D93B14",
-"k. c #D12E10",
-"l. c #E12500",
-"z. c #E42B00",
-"x. c #E92D00",
-"c. c #E53300",
-"v. c #EC3300",
-"b. c #EB3C00",
-"n. c #E63A03",
-"m. c #F23C00",
-"M. c #F03600",
-"N. c #B6491C",
-"B. c #AC4513",
-"V. c #924C2A",
-"C. c #B0542A",
-"Z. c #9D4C26",
-"A. c #D54116",
-"S. c #DB4313",
-"D. c #D54319",
-"F. c #D9451A",
-"G. c #DB4C1D",
-"H. c #D74A1C",
-"J. c #CE4A11",
-"K. c #ED4301",
-"L. c #EC4704",
-"P. c #F54300",
-"I. c #F44C01",
-"U. c #FA4C00",
-"Y. c #F94600",
-"T. c #F45300",
-"R. c #FB5400",
-"E. c #F55C01",
-"W. c #FB5B01",
-"Q. c #F85A0A",
-"!. c #E24B16",
-"~. c #E44A14",
-"^. c #E3541B",
-"/. c #E8581B",
-"(. c #EE560B",
-"). c #FC6403",
-"_. c #FC6B02",
-"`. c #FB6C0B",
-"'. c #F86306",
-"]. c #FD7301",
-"[. c #FD7709",
-"{. c #FC7412",
-"}. c #FC7A15",
-"|. c #FC7D1A",
-" X c #F57718",
-".X c #F66515",
-"XX c #D94A21",
-"oX c #DD5422",
-"OX c #DE5C2B",
-"+X c #DC5825",
-"@X c #CD5927",
-"#X c #E15B25",
-"$X c #E25F29",
-"%X c #E45725",
-"&X c #E14D21",
-"*X c #DB6432",
-"=X c #E3632B",
-"-X c #E6692E",
-";X c #EB6B2B",
-":X c #E86428",
-">X c #E16530",
-",X c #E76C30",
-"<X c #E96E32",
-"1X c #EB6836",
-"2X c #EA7334",
-"3X c #ED7C3A",
-"4X c #EC7737",
-"5X c #F27835",
-"6X c #F67628",
-"7X c #C8621E",
-"8X c #8C6E52",
-"9X c #8F7B6C",
-"0X c #B16945",
-"qX c #DA744B",
-"wX c #FC821C",
-"eX c #FC8518",
-"rX c #FB8422",
-"tX c #FC8925",
-"yX c #FB8B2B",
-"uX c #F58026",
-"iX c #EE813D",
-"pX c #F1833D",
-"aX c #FB8B34",
-"sX c #FC9233",
-"dX c #FB953A",
-"fX c #FE9A3D",
-"gX c #FD912E",
-"hX c #A98F75",
-"jX c #988476",
-"kX c #F28742",
-"lX c #FC9C43",
-"zX c #FD9D4C",
-"xX c #EF8749",
-"cX c #FDA14B",
-"vX c #FEA757",
-"bX c #FFAC63",
-"nX c #FFB16C",
-"mX c #FCB07A",
-"MX c #E49168",
-"NX c #A9998D",
-"BX c #BAA694",
-"VX c #B3ACAC",
-"CX c #FAB488",
-"ZX c #C6B6A7",
-"AX c #D2C6B9",
-"SX c #F8C4AD",
-"DX c #D6CFCC",
-"FX c #ECD7C9",
-"GX c #F7E1D5",
-"HX c #D8DBE9",
-"JX c #FFFEFE",
-"KX c #F4F7F9",
-"LX c #EEEBEC",
-"PX c #D6E3FE",
-"IX c #BEBECB",
-"UX c None",
-/* pixels */
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX3 UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX3 UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX3 UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX3 UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX3 UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXl z UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXz z z UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX3 UXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXx v UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX3 8 UXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXv M M UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXU Y T T W T T U UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX< 3 UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXn M N UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXn M F F Y Y T W T Y U F M M UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX3 UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXM F F UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXl z v M N F U Y T Y Y U J F M n x l 8 UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXl - UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXv F F UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX8 8 8 z x n M N J J U U U F F M M v x l 8 3 3 UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXz 3 UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXF Y UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX2 2 8 8 3 l b v M N N N F F F N M M v x l 8 3 3 3 3 UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXn x x * UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXM Y UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX8XBXj 4 3 l l z v M M M B M B M M n x b 0 8 3 3 0 0 8 UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXM M n l UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXv Y v UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXT AXhXn < < 3 z b x v n M n M x v z z l 8 8 0 l z z 8 UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXM M M : UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX8 U F UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX.   2 E hXhXV.l , 3 z x v x x x x z l 8 8 0 0 c c w 2 . UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXN G M 2 UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXF F UXUXUXUXUXUXUXUXUXUXUXUXUXUXUX3 3 3 < @ + @ : E hXBXjXT l 2 z 8 8 z l z l 0 z c c 0 : o   * 9 I R UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXU U F 8 UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXF F F F U UXUXUXUXUXUXUXUXUXUXUX3 3 3 8 3 l 2 * @   o v 8XhXhX8XE W T j x c c c 0 5 + . * v Y W ~ Q Q H UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXU U 0 UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXM F F F F F UXUXUXUXUXUXUXUXUX3 3 3 3 3 3 3 3 p 3 2 * o   . 2 N E 8X8Xx w 2 ; + o * V E ) ( P L L Q Q ~ L UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXY U M UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXM F F F F B UXUXUXUXUXUXUX3 3 3 3 3 3 3 3 3 8 3 p 0 3 < * @         . + + o : G R R P y y D L L L Q ! ~ Q UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXU U < UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX- l M M M M M UXUXUXUX2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 l 8 8 3 2 < < < ; > 5 9 q r 9 w y S S D L L P Q ! ^ ! c UXUXUXUXUXUXUXUXUXUXUXUXUXUXF U M UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXM n v v x p / ! < 3 3 3 3 3 3 3 8 3 3 3 3 3 3 3 3 3 3 8 8 3 : $ > 5 5 q e e t y D D L L P Q Q ! ^ ^ c UXUXUXUXUXUXUXUXUXF J F J F F 3 UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXb c z 3 P PXVX0 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 8 : $ > 5 5 r q e t y y S H L L L Q Q ! ^ ^ c UXUXUXUXUXUXM N F F F F F M UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXl 2 I KXHX^ 2 2 3 3 8 3 3 3 3 3 3 3 3 3 3 3 3 3 3 8 3 : $ $ ; 5 r r q e t y S D H L L Q Q Q ~ ^ P 8 l z x x n M M M M F F M UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX5 + NXKXIX) n 8 2 1 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 : $ $ $ 6 6 r 9 e w t y S D H L L Q Q ~ ^ P 3 3 l z x v n UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXo 6 IXJXHXVX9X( P G V x c z x x 0 3 3 3 3 3 3 3 3 : @ $ ; ; > 5 r q e w t y D H H L L Q ! ~ 3 & p l UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXi L.R.R.a.u 6 DXJXJXKXHXDXVXNXjX9X( P I c 3 3 3 3 3 3 3 3 : + + $ ; > 5 5 9 q e t S y H H H H Q ! e   8XqXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXL.W.W.W.W.T.f e HXJXJXJXJXJXKXLXDXNX) I G l 3 3 3 3 3 3 3 : + + @ $ ; 6 5 r q q e y y D D H L Q c O 0XFX*Xh.UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX3 UXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX(.W.Q.'.'.'.).E.f 9 DXJXJXJXJXJXJXLXZXNX( G V 3 3 3 3 3 3 8 : o + @ @ ; ; > 5 9 q q t y y S H L S % C.GX$Xi.d.s.UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX3 3 UXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXQ.`..X`.`.`.`.'.).T.u q DXJXJXJXJXJXKXFXBX9XR G c 3 3 3 3 3 3 : o . + + # ; > 5 5 q q t y S S D y o Z.GX>Xs.h.d.d.-.UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX3 UXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX.X{.{.{. X{..X`.'.`.L.% v DXJXJXJXJXJXLXAXNX) H G l 3 3 3 3 3 : +   X + @ # ; 6 5 5 q q e t S y o -.FXqXy.h.D.d.d.d.$.UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX: 2 UXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUX3 3 3 3 l UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX{.{.|.|.|. X}.{.{.`.`.`.B.  U LXJXJXJXJXJXGXZXjXW G c p 3 3 3 3 < o   . + + # ; ; 5 5 5 q q t t . &.FXqXq.h.d.A.d.d.d.h.UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXM x l - UXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUX- < z x x v F UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX{.|.rXrXrXrXrXwX|.}.{.{._.].-.  Y GXJXJXJXJXKXDXBX9XG G l 3 3 3 3 < .     . + + @ ; 6 5 5 q t t   %.SXqX9.d.h.d.A.D.D.d.d.d.UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXM v z UXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUX2 v F F J Y T W UXUXUXUXF N UXUXUXUXUXUXUXUXUXwXrXyXyXyXyXtXuXrXwX X X{.[.[.-.  8 BXJXJXJXJXLXZXNX( G c 3 8 3 3 < o       X + # # ; 6 5 q $   V.SXOX9.g.h.h.D.XXD.D.D.f.f.h.UXUXUXUXUXUXUXUXUXUXUXUXUXF M x z UXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXz F U Y T W E W T Y F F M n z l 8 8 2 k 6XsXsXsXsXdXdXgXyXuXtXrX|.|.}.[.].J.4   W AXJXJXJXFXZX9XR G l 3 3 8 < .       . + + # $ > 6   % 0XSXXX3.k.g.h.D.h.XXD.H.H.D.D.A.UXUXUXUXUXUXUXUXUXUXUXF F M M l - UXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUX2 UXUXUXUXUXY Y J N M v z l 3 3 > C.cXcXcXdXfXdXdXdXgXaXyXtXrXwX|.}.].].'.$.X + 8XFXJXKXAXBX8XU x 3 3 3 < .   .     . o + $ X   f BXCXk.3.k.g.h.D.XXXXXXXX@XXXXXXXF.-.2 l z n M B F J U J F F M - UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXM M M v z UXUX; z MXnXnXvXcXcXcXlXlXsXaXyXyXtXtXrXeXeX].].].J.C   6 8XDXLXDXjX/ G 8 3 3 < .         . # o o i C.SXMX6.7.k.g.d.h.D.XXXXXXOX+X+X@XXXH.H.m 2 z z v M M N F N M M UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXxXCXCXnXnXvXvXcXcXlXdXdXgXyXyXuXtXeXeXeXeX]._.'.J.f   > 8XBXBXjXP l 3 p -       + @ + O i C.CXCX&X1.k.k.k.d.j.XXXXXXXX+XXXOXOXOXOX+XoX-.3 9 b x M M M M M M UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXbXmXCXnXnXbXbXvXvXzXlXdXsXyXyXtXtXeXeX].].].].'.).E.p.f o X B E W x 3 3 # o @ # + = C 0XmXqXF.:.7.7.k.k.g.g.D.j.XX&X&XOXOXOXOXOXOX+X+X%XUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXzXbXnXnXnXbXbXvXvXcXlXdXsXyXyXtXtXeXeXeXeX].]._._.W.R.Y.a.' &   @ ; - # o . o u *.qXqX1Xj.7.7.y.y.k.k.g.g.g.D.d.*.#.N.&XOXOX*XOX>XOXOX+X$XUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX.XaXcXvXbXvXvXbXvXcXzXlXdXsXyXtXuXwX[.eX].].].]._._.'.E.T.U.P.c.] %         i -.+X;XF.l.7.l.u.u.u.u.k.k.k.g.j.f.=     O *.&XOXOX>X>X*X>XOX=XUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXg {.|.gXfXlXcXcXvXvXcXlXfXdXyXyXrXtXeXeX[.].].].]._._.'.E.T.L.L.L.m.t.i     _ r.z.t.6.e.e.t.u.y.u.a.u.k.k.k.y.j.i           -.+XOXOX>X>X>X$X=X&.UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXB.{.|.gXgXfXlXcXcXcXlXfXdXaXyXuX7XB.J.`.[._._._._._._.'.E.T.T.L.K.c.v.e.i d l.6.e.r.r.r.t.t.t.t.a.a.y.u.k.y.j.@.            - XX%XOX*X>X>X>X-XJ.UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXQ.{.|.eXgXfXfXfXfXfXfXdXsXyXuXV.m b 3 a B._.).).).'._.'.E.E.T.L.b.b.c.l.| X.l.6.r.r.t.t.t.a.a.t.a.t.y.u.k.u.y.g               #.%XoXOX=X>X>XOX=Xs UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXQ.`.}.eXgXgXgXfXfXfXgXgXyXtXC.Z Z k p @   J.W.).'.'.E.'.E.T.T.K.K.c.v.l.| [ l.r.e.r.t.t.t.t.t.t.u.y.u.k.k.7.k.d               = XXoXOXOX=X=X=X>XB.UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXR.Q.`.}.wXtXyXyXgXgXgXgXyXtX|.V.Z m a 4 *   s W.R.W.E.W.E.E.T.L.I.b.n.c.l.| X.r.6.r.r.t.t.t.t.u.t.u.u.u.7.9.9.u.g         .     o D.oXoXOX=XOX=X=X$XUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXU.W.`.{.}.eXrXtXeXgXyXeXrXrX XA m b 1 * .   & I.R.T.T.E.T.T.T.I.K.b.c.x.l.| { l.6.r.r.t.t.t.a.t.u.u.7.7.7.3.3.7.[               . -.&XoX+X$X=X=X=X=XUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXU.Q.`.`.}.}.eXwXrXwXeXwX|.}. XA a p , O     O I.R.U.U.T.T.T.T.I.K.b.c.x.l.o.X.r.e.r.r.t.c.t.t.t.u.w.3.7.3.3.3.3.+.%         .   * h.XXoX+X$X$X=X=X;XUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXR.Q.).`.[.}.}.}.}. XeX X}.{.[.C , , @       & I.Y.Y.I.I.I.I.L.L.K.b.n.c.r.| ] r.e.r.t.t.t.t.t.e.e.5.5.1.>.1.<.3.9.'             *.XXXXoXoXOXOX=X-X<XB.UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX-.R.W.).`.`.[.[.{.{.{.{.{.`.`._.B.@ @ .       f Y.Y.P.P.P.P.I.L.L.b.b.c.z.l.o.X.r.e.e.r.t.t.t.t.e.7.1.1.1.>.1.1.3.3.9.d       & #.F.F.G.oX+X$X=X=X=X<X@XUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX9 p.R.W.W.).).`.`.`.`._.[.`._.`.).W.f         % a.Y.P.P.P.K.K.P.L.L.K.b.c.z.6.o.X.6.6.e.t.t.t.t.e.e.6.1.1.,.1.>.1.3.3.9.9...' ] s.j.F.F.G.G.oX#X=X-X-X;X@XUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXl j J.R.R.W.W.).).).).).`.`.).).).W.W.R.-.f u g a.U.Y.P.m.m.m.P.K.K.K.b.n.x.z.r.o...6.e.e.t.t.t.t.e.7.5.1.,.1.1.1.1.3.9.9.k.k.g.j.j.h.j.F.G.oX#X+X=X-X<X<X-Xk UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXn l k K.T.R.R.R.W.W.W.W.W.).W.W.W.W.R.W.R.R.U.U.U.Y.P.P.m.m.m.m.b.K.K.K.b.n.c.z.6.o...6.6.e.e.t.t.t.e.3.3.5.,.,.>.>.1.3.3.9.9.k.y.g.h.j.F.F.G.oXoX$X=X-X<X<X;XA UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXM n 9 UXY.U.R.W.W.W.W.W.R.W.W.W.R.R.R.R.R.R.U.Y.Y.Y.Y.m.m.M.M.M.b.K.b.b.K.n.c.c.t.6.o.X.6.e.e.e.t.r.u.e.5.5.1.,.,.>.1.1.3.3.9.9.q.q.g.g.j.A.F.G.oX#X+X=X-X,X<X2XA : UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXF M M w UXUXI.T.T.W.W.W.W.W.R.R.R.R.R.R.R.U.U.U.Y.Y.Y.Y.m.m.M.M.M.b.b.b.K.K.K.b.c.z.z.6.o...5.5.e.r.t.t.e.e.5.,.,.,.1.>.1.1.3.9.9.k.y.g.g.h.j.F.F.G.oX#X=X=X,X<X2XuX&.5 l UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXU F F V UXUXUXP.T.W.W.W.W.W.R.R.R.T.U.U.U.R.U.U.I.Y.P.Y.m.m.M.M.M.M.M.v.b.b.b.b.n.c.t.t.6. ...5.5.e.e.t.e.e.5.1.,.,.>.,.>.1.1.3.9.9.9.y.g.g.h.h.F.F.G.^.#X$X=X,X<X2X5XZ.2 l x UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXT T Y Y F F N UXUXUXUXT.6X.XW.W.R.R.R.T.U.U.U.U.Y.Y.Y.Y.P.P.m.m.m.M.M.M.v.v.x.v.b.b.b.n.c.c.z.r.6.o...5.1.e.e.e.u.e.7.,.1.,.,.>.,.1.3.3.9.9.q.q.k.g.h.A.F.F.oXoX+X=X-X;X2X2X5XN.: z x n UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXY Y Y U U J F UXUXUXUX$.Q.zX|.Q.Q.R.T.U.U.U.U.P.Y.Y.Y.Y.m.m.m.M.M.M.v.M.x.x.v.c.v.v.n.n.n.c.c.z.r.4. ...4.1.e.e.t.e.5.5.1.,.1.:.,.>.1.3.3.9.9.9.k.k.g.j.A.F.G.G.oX#X=X-X,X2X2X5XN.UXl v n B UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXv M M F F U U Y U Y Y J v UXUXUXUXUX] .XxX6X.XQ.T.U.I.I.P.P.P.P.P.P.m.m.m.m.M.M.v.v.v.v.x.x.x.v.c.n.n.c.z.t.r.r.6. ...4.1.e.e.e.e.e.5.,.,.>.>.>.1.3.3.3.9.9.k.k.g.g.h.F.F.G.oX%X#X=X-X,X2X2X5XN.UXUXv M N F UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXz x n M N F N F U J F v UXUXUXUXUXUXUX...XkX6X.XQ.U.U.P.P.P.P.m.m.m.m.M.M.m.M.v.v.v.x.x.x.x.x.z.x.x.c.z.z.t.z.r.6.5. ...5.5.e.e.e.5.5.1.,.,.>.,.>.>.,.3.7.9.9.k.k.g.g.h.j.F.G.G.%X$X=X-X2X2X4XpX@XO UXUXM N F J UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUX8 8 8 0 z x l 2 UXUXUXUX2 < UXUXUXUXUXUXUXUXUXn./.zX6X.XQ.I.P.P.P.m.m.m.m.M.M.M.M.v.M.v.v.v.x.x.x.z.z.x.z.z.z.z.z.t.r.6.6.4. .] 4.1.1.e.e.e.1.1.,.,.>.;.1.1.3.3.9.9.u.k.k.g.h.j.F.G.G.oX#X$X=X-X2X2X4X5X7XO UXUXUXN J J Y UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UX3 3 < * * * * * UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX/.5X6XU.U.I.m.m.b.m.v.M.v.M.M.v.x.x.v.x.x.x.x.x.l.x.l.z.z.t.z.r.l.6.6.6.6.4.o.] 4.1.5.1.e.7.1.7.:.:.,.>.1.3.3.3.3.9.9.q.q.g.h.h.F.XXoXoX+X=X=X<X2X4X4X3XN.o UXUXUX2 F U Y T T UXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXL.5X:X(.m.P.m.m.v.v.v.v.x.x.x.x.x.x.x.x.x.x.x.x.l.l.l.l.l.l.r.r.r.6.6.6.5.4. ...,.1.1.e.e.7.1.1.:.>.>.:.1.,.3.3.9.9.q.g.g.g.h.A.F.G.G.%X#X=X>X<X4X3X4XpXN.O o UXUXUX8 U U Y T T UXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX~.;X.XL.b.b.v.v.v.x.x.x.x.x.x.x.x.x.l.x.x.x.l.l.l.l.l.l.l.l.r.r.6.6.6.6.4.4. .] 4.,.1.5.5.7.4.1.:.1.>.>.3.3.3.9.9.y.y.k.g.g.j.A.F.G.oXoX#X=X,X1X4X3X3XkXB.o O UXUXUXUXl J Y Y Y Y U UXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXv.$X/.L.n.v.v.v.z.l.x.x.x.l.x.x.x.x.x.l.x.l.l.x.l.l.r.l.6.6.6.6.6.4.6.4.4.,. .] :.1.1.5.w.7.,.1.>.:.>.:.3.3.7.9.9.9.q.k.g.h.j.F.F.G.%X#X$X-X,X2X3X3X3XaX&.  O UXUXUXUXUXUXM J J J U F F M UXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXt.!.(.L.z.c.z.z.l.z.z.z.z.l.x.l.l.l.x.l.l.x.l.l.l.r.l.6.6.6.6.6.6.4.4.4.4.:. .[ ,.:.1.7.1.7.,.,.:.1.>.>.3.3.3.9.u.k.k.g.g.h.A.F.F.G.oX#X$X=X<X4X4X3X5XpX%.o o UXUXUXUXUXUXUX3 M F N F F M M v UXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXt.n.~.n.c.l.l.l.l.l.l.z.l.x.l.x.l.l.l.l.l.l.l.l.l.6.6.6.6.6.4.6.4.6.4.4.4.:.X.] ,.:.1.,.7.7.,.,.1.1.1.1.3.3.7.9.9.k.k.g.g.j.A.F.G.oX%X$X=X,X<X4X4XiX5X5XC o o UXUXUXUXUXUXUXUXUXUXUXUXUXv M x z UXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXr.t.c.t.z.t.r.r.r.r.l.l.l.l.l.l.l.l.l.l.l.r.l.6.6.6.6.6.6.6.6.4.6.4.4.4.4.:.o.[ >.>.,.7.7.,.,.1.>.3.>.>.7.7.9.9.y.k.k.g.h.j.F.G.G.oX%X$X=X,X2X4X3X3XpX2Xs o UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXz l l 3 UXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXe.r.c.n.t.r.6.r.l.r.l.r.l.r.l.r.l.l.r.6.r.6.6.6.r.6.6.6.6.4.6.4.4.4.4.:.:.:. .[ ;.;.1.>.7.7.3.1.1.1.3.7.7.u.9.9.q.k.g.g.j.A.F.G.G.%X+X$X-X2X2X3X3XpXpX=X= O UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX@ * - 2 3 8 3 ",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX6.t.a.t.t.r.6.r.r.r.l.6.l.r.r.l.l.l.6.6.6.6.6.6.6.6.6.4.6.4.4.4.4.:.4.,.,.:.{ [ ;.>.>.>.3.7.1.3.3.7.7.o.' ' @.k.k.g.g.h.j.A.F.G.oX+X#X=X,X2X4X3X3XkX4X@X% O UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX* 3 ",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXr.t.t.t.e.e.6.6.r.r.6.6.6.6.6.6.6.6.6.6.6.6.4.6.6.4.4.4.4.4.4.4.4.4.,.:.:.{ [ } ;.>.>.7.1.3.3.7.| i .     u 9.k.g.g.j.j.F.G.G.oX#X$X-X,X2X4X3XkXiX5XB.O O UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXe.t.t.t.r.6.6.6.6.r.6.6.6.6.6.6.6.6.6.6.6.6.6.6.6.4.4.4.4.4.4.:.:.:.:.:.:.{ _ ;.} ;.>.1.1.3.7.[ O     . O + ..g.g.j.h.A.G.G.oX%X$X=X>X1X4X3XxX3XiX2X#.o O UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX6.e.t.t.e.5.6.5.6.6.6.6.6.6.6.6.6.6.6.6.4.4.4.4.4.4.4.4.4.4.:.4.:.4.:.:.;.{ _ } ;.;.>.1.1.7.X..   . o ; , < C g.g.h.j.F.G.G.oX+X=X=X,X2X4X3X3XxX3X;Xs O O UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX1.6.t.t.e.5.5.5.5.5.6.6.5.5.6.1. .] +.5.4.4.4.4.4.4.:.4.4.4.:.:.:.:.:.;.;.{ _ ;.} ;.>.1.3.>.=   . + * 4 p p C s.h.j.XXD.G.oX+X#X=X-X<X4XiXiXpXpX2X@X& % UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXe.e.e.e.5.5.5.4.5.5.4.4.6.@.s 1 < = g 1.,.4.4.4.,.4.4.:.:.4.:.:.:.:.;.;.` _ } } } >.<.7.@..   O * 4 p b m A s.h.j.F.XXG.oX#X$X=X-X2X3X3XpXpXiX5X-.% % UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX1.e.e.e.5.,.5.4.5.4.4.4.@.b p p 1 , @ u } 4.4.,.4.4.:.,.:.:.:.:.:.;.;.;.` _ } } ;.>.1.3.o.. o * 4 j k m Z K h.j.F.F.G.G.%X$X=X-X<X2X3XiXkXpX3X;Xf O % UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX>.e.e.e.1.5.,.4.,.5.4.4.' j a p 1 , , # i :.:.:.:.:.:.:.:.:.:.;.;.;.;.;.` _ ;.} >.>.<.7.<.& @ 4 p k m A A &.j.F.F.G.XXoX#X$X-X,X<X4X3XkXkXiX6X+X= & O UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX7.e.e.1.,.,.,.5.,.4.,.m k a p 1 , , & . _ 4.:.:.:.:.:.:.:.:.;.;.;.;.;.` _ } } >.<.1.3.7.g # p a m A A K N.j.F.F.G.oX+X$X=X-X<X2XiXiXkXiXiX2X&.& & UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX>.1.1.,.,.,.,.,.,.,.,.k k j p 1 , , - O 4 ;.:.:.:.:.:.:.:.;.;.;.;.;.;.` _ } O.O.<.<.3.7.@.4 p m A K K V.d.j.F.G.oXoX+X=X=X;X2X4XiXiXkXiX4X:Xf % % UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXX.1.1.,.,.,.,.,.,.,.,.g b a p 1 4 , - # # ;.:.:.;.;.:.;.;.;.;.;.;.;.;.` _ O.} <.1.3.3.9.7.$.b m J K V.-.F.F.G.G.oX%X=X=X*X,X4X3XiXkXpXpX5X7X& & O UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX>.>.>.>.,.>.:.,.,.,.] j a p p , , * + i :.:.:.;.;.;.;.;.;.:.:.;.>.;.` _ O.>.<.3.3.9.9.k.u.-.&.&.-.D.F.F.G.G.oXoX#X=X>X<X4X4XiXkXkXpX5X2XC O & UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXX.;.>.>.;.;.:.>.>.,.:.g l p 1 , - # , { :.;.;.;.;.;.>.>.>.>.>.>.>.;.` h O.O.<.3.3.q.9.k.k.g.g.j.j.h.A.F.XXoXoX#X$X-X,X2X4XiXiXiXkXpX5X@X= & % UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX} ;.} ;.;.>.>.;.;.:.>.g p 1 < u d | :.;.;.;.;.;.;.>.:.:.>.>.>.>.O.` _ O.<.<.8.q.9.k.k.k.g.g.g.j.D.XXG.oXoX+X$X=X-X<X4X4XiXpXpXiX5X5X%.% & UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX[ } } O.;.>.;.;.;.;.>.;.o.{ { | :.:.;.>.;.>.;.;.>.1.>.>.,.3.<.<.>._ _ +.+.2.3.q.q.k.k.g.h.h.j.F.F.G.XX%X%X$X=X>X<X2X4X3XiXpXiX5X5X@X= % % UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX| } } O.;.>.} >.;.;.;.;.:.:.>.;.;.>.;.>.>.:.3.>.>.1.>.1.1.1.<.O.` h +.O.8.9.q.y.k.k.j.j.j.A.F.G.G.oX%X#X=X-X,X2X3X3X3XpXpX3X2X2XC % & UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXh >.} } O.;.;.;.;.>.>.>.;.>.>.>.;.>.;.>.>.>.;.1.>.>.3.1.<.3.<.} _ ' O.+.8.q.q.g.g.h.j.h.D.F.G.G.oX^.$X$X=X,X<X4X3X3XiXpX3X2X6XN.& % % UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX{ O.} O.O.>.>.>.>.>.>.>.>.>.>.;.>.3.1.1.>.1.1.1.>.3.3.3.2.<.;._ _ O.+.8.q.g.g.h.j.h.F.F.F.G.oXoX#X$X=X-X2X2X3X3XpXpXpX2X;X=Xs % % UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXu } O.O.O.<.>.>.>.>.<.>.<.>.>.3.>.;.3.>.3.<.3.7.3.3.3.3.3.1.O._ _ +.=.8.k.g.g.h.A.F.F.G.G.oX%X#X$X=X-X<X2X4X3X3XxX3X2X;X;X%.% & % UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXh >.O.O.O.O.<.<.<.>.>.1.<.>.3.3.3.3.3.<.3.3.3.3.9.9.3.q.2.>._ ' +.8.q.s.g.h.A.F.F.XXG.oX%X+X$X=X-X,X2X4X3X3X3X4X4X;X;XJ.& & % UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXO [ >.O.+.<.<.<.<.<.<.3.1.<.3.3.3.3.3.3.3.9.3.9.9.q.9.q.8.:._ ' 8.8.q.s.j.A.S.H.H.H.^.+X+X#X=X-X,X2X2X4X4XiX5X2X;X:X@Xs % % UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX= @.<.O.O.<.<.<.<.2.<.3.3.3.3.3.3.8.8.9.9.9.9.9.q.k.q.8.>._ ' 2.8.i.h.A.S.H.H.H.oX+X#X=X=X-X,X2X2X2XiXiX5X2X:X#X^.f O % O UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXu O.<.+.+.<.<.2.3.3.3.3.3.8.3.9.9.8.9.9.q.q.q.y.q.q.q.O._ ' 9.0.i.d.A.G.G.^.oX+X#X#X=X-X,X<X2X4X2X4X2X;X:X#X/.#.O % % UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX  i <.<.<.+.2.2.2.8.3.3.8.9.q.9.9.9.k.q.q.k.q.k.s.g.q.>._ ' 8.8.i.h.F.H.oXoX+X#X$X=X-X,X,X<X2X2X2X<X;X/.^.^.$.% & % UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX  d +.8.=.2.2.2.8.9.8.8.9.9.k.0.q.k.q.k.k.s.g.g.s.q.<._ ' 2.0.i.h.H.oXoX+X#X:X=X-X-X,X2X;X2X;X:X:X/.!.!.-.% % % O UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX. f +.2.8.2.8.8.8.9.k.0.0.k.k.k.k.s.g.g.g.g.d.s.i.<._ ' 2.8.i.d.G.oX+X+X=X=X=X-X-X-X;X-X:X:X/.!.S.S.*.& % % o UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX. . i =.8.8.8.8.8.8.q.8.k.0.k.i.s.s.g.g.d.h.d.s.i.O._ ' w.0.i.A.H.oX$X=X=X=X=X=X=X=X:X/.#X/.S.~.~.#.% % % O UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX. . i @.8.8.8.0.0.0.k.0.i.i.s.s.d.h.h.h.h.h.d.i.O._ ' 9.0.p.A.^.+X+X#X$X:X#X#X#X^././.^.!.~.A.g & & % O UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX. . = ] q.8.0.8.8.0.0.s.k.s.f.s.d.d.h.h.d.d.i.+.h ' y.0.d.A.oX^.+XoX/.#X^.^.^.^.^.!.!.!.J.s O & % O UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX. o O g =.8.0.=.0.0.8.0.0.s.s.s.d.d.h.d.d.0.O.h ' q.0.a.A.F.H.J.H.S.!.G.!.!.(.J./.S.$.u % % % o UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXo . u ] 8.8.=.=.8.0.0.0.0.f.s.s.d.d.p.0.@.h ' y.i.s.d.S.S.S.S.S.S.!.!.!.!.~.f.f % % % % O UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXo o % d ..8.8.=.=.0.0.0.0.0.0.0.p.0.0.o.d ' u.q.p.a.A.S.S.S.S.S.!.!.!.J.C = O & % O o UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXo o + & f ] 8.8.0.=.8.0.0.0.0.0.0.0.| d ' t.p.a.d.S.j.S.S.S.~.G.f.#.u % & & % O UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXo O o % s ' @.0.k.8.8.0.k.0.0.0.o.d ' 9.i.a.S.S.G.!.~.A.-.g = % % & % O o UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXO O O % = f ' $.0.q.s.s.s.s.+._ -.a.A.S.S.J.J.*.g u & % & & % O o UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXo O O O O O & = s f ' #.$.] ' $.#.#.#.f u = % % & & & % O o UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXo O O O % % O % O O % & * & O O O O % & & % % % O o UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXo O o O O O O % O % % % % % % O % O O O o UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXo o o o o o o o o UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX",
-"UXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUXUX"
-};
diff --git a/Tools/iExploder/iexploder-1.7.2/src/mime-types/dillo b/Tools/iExploder/iexploder-1.7.2/src/mime-types/dillo
deleted file mode 100644
index 0a789c8..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/mime-types/dillo
+++ /dev/null
@@ -1,14 +0,0 @@
-application/octet-stream
-application/xhtml+xml
-application/x-www-form-urlencoded
-html/text
-image/gif
-image/jpeg
-image/jpg
-image/pjpeg
-image/png
-image/x-png
-multipart/form-data
-text/css
-text/html
-text/plain
diff --git a/Tools/iExploder/iexploder-1.7.2/src/mime-types/mozilla b/Tools/iExploder/iexploder-1.7.2/src/mime-types/mozilla
deleted file mode 100644
index d3075d7..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/mime-types/mozilla
+++ /dev/null
@@ -1,122 +0,0 @@
-aapplication/opensearchdescription+xml
-application/applefile
-application/atom+xml
-application/compress
-application/directory
-application/ecmascript
-application/gzip
-application/http-index-format
-application/java-archive
-application/javascript
-application/lolcat
-application/marimba
-application/mathml+xml
-application/octet-stream
-application/ogg
-application/oleobject
-application/opensearchdescription+xml
-application/pdf
-application/pgp
-application/postscript
-application/pre-encrypted
-application/rdf+xml
-application/rss+xml
-application/uue
-application/uuencode
-application/x-
-application/x-arj
-application/x-compress
-application/x-fortezza-ckl
-application/x-fortezza-krl
-application/x-gunzip
-application/x-gzip
-application/x-java-vm
-application/x-javascript
-application/x-javascript-config
-application/x-macbinary
-application/x-marimba
-application/x-moz-file
-application/x-moz-node
-application/x-moz-tabbrowser-tab
-application/x-netscape-revocation
-application/x-ns-proxy-autoconfig
-application/x-oleobject
-application/x-pgp-message
-application/x-test
-application/x-testextension
-application/x-unknown
-application/x-unknown-content-type
-application/x-uue
-application/x-uuencode
-application/x-view-source
-application/x-www-form-urlencoded
-application/x-xpinstall
-application/xhtml+xml
-application/xml
-application/zip
-audio/basic
-audio/ogg
-audio/wav
-audio/wave
-audio/webm
-audio/x-pn-wav
-audio/x-wav
-image/bmp
-image/gif
-image/jpeg
-image/pjpeg
-image/png
-image/svg+xml
-image/tiff
-image/x-icon
-image/x-jg
-image/x-jng
-image/x-portable-pixmap
-image/x-xbitmap
-image/x-xbm
-image/xbm
-message/external-body
-message/news
-more/less
-multipart/alternative
-multipart/appledouble
-multipart/byteranges
-multipart/digest
-multipart/foo
-multipart/form-data
-multipart/header-set
-multipart/mixed
-multipart/parallel
-multipart/related
-multipart/signed
-multipart/x-mixed-replace
-text/cache-manifest
-text/calendar
-text/css
-text/ecmascript
-text/enriched
-text/html
-text/javascript
-text/jsss
-text/mdl
-text/plain
-text/rdf
-text/richtext
-text/unicode
-text/uri-list
-text/url-list
-text/x-email
-text/x-moz-place
-text/x-moz-place-container
-text/x-moz-search-engine
-text/x-moz-text-internal
-text/x-moz-url
-text/x-vcard
-text/xml
-text/xsl
-video/mpeg
-video/ogg
-video/webm
-video/x-mng
-video/x-raw
-video/x-raw-yuv
diff --git a/Tools/iExploder/iexploder-1.7.2/src/mime-types/webkit b/Tools/iExploder/iexploder-1.7.2/src/mime-types/webkit
deleted file mode 100644
index 3dd58b2..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/mime-types/webkit
+++ /dev/null
@@ -1,157 +0,0 @@
-application/andrew-inset
-application/annodex
-application/asx
-application/atom+xml
-application/ecmascript
-application/java-archive
-application/javascript
-application/json
-application/mac-compactpro
-application/mpegurl
-application/octet-stream
-application/oda
-application/ogg
-application/pdf
-application/postscript
-application/rss+xml
-application/tar
-application/x-bcpio
-application/x-bittorrent
-application/x-cdlink
-application/x-chess-pgn
-application/x-compress
-application/x-cpio
-application/x-csh
-application/x-director
-application/x-diskcopy
-application/x-dvi
-application/x-filemaker
-application/x-font-ttf
-application/x-ftp-directory
-application/x-futuresplash
-application/x-googlegears
-application/x-gzip
-application/x-hdf
-application/x-icy
-application/x-java-applet
-application/x-java-bean
-application/x-java-vm
-application/x-javascript
-application/x-koan
-application/x-latex
-application/x-media-element-proxy-plugin
-application/x-meowmeow
-application/x-moz-file
-application/x-mpeg
-application/x-mpegurl
-application/x-ms-wmd
-application/x-netcdf
-application/x-oleobject
-application/x-qt-plugin
-application/x-qt-styled-widget
-application/x-sh
-application/x-shar
-application/x-shockwave-flash
-application/x-silverlight
-application/x-tar
-application/x-tcl
-application/x-tex
-application/x-texinfo
-application/x-troff
-application/x-troff-man
-application/x-troff-me
-application/x-troff-ms
-application/x-truetype-font
-application/x-unknown-content-type
-application/x-ustar
-application/x-wais-source
-application/x-webarchive
-application/x-www-form-urlencoded
-application/xhtml+xml
-application/xml
-audio/aac
-audio/annodex
-audio/mpeg
-audio/mpegurl
-audio/ogg
-audio/scpls
-audio/speex
-audio/wav
-audio/webm
-audio/x-aac
-audio/x-caf
-audio/x-gsm
-audio/x-mpeg
-audio/x-mpegurl
-audio/x-pn-realaudio-plugin
-audio/x-vorbis
-audio/x-wav
-font/opentype
-font/otf
-font/ttf
-for/event
-image/bmp
-image/gif
-image/ico
-image/ief
-image/jpeg
-image/pjpeg
-image/png
-image/svg+xml
-image/tif
-image/tiff
-image/x-cmu-raster
-image/x-icon
-image/x-macpaint
-image/x-pcx
-image/x-portable-anymap
-image/x-portable-bitmap
-image/x-portable-graymap
-image/x-portable-pixmap
-image/x-rgb
-image/x-targa
-image/x-tiff
-image/x-xbitmap
-image/x-xpixmap
-image/x-xpm
-image/x-xwindowdump
-inline/none
-mode/options
-model/iges
-model/mesh
-model/vrml
-multipart/form-data
-multipart/x-mixed-replace
-test/npn-invoke
-text/cache-manifest
-text/calendar
-text/css
-text/ecmascript
-text/event-stream
-text/html
-text/javascript
-text/jscript
-text/livescript
-text/pdf
-text/plain
-text/ptf
-text/richtext
-text/sgml
-text/tab-separated-values
-text/uri-list
-text/url-list
-text/x-game-map
-text/x-setext
-text/xml
-text/xsl
-video/annodex
-video/divx
-video/mpeg
-video/ogg
-video/quicktime
-video/webm
-video/x-mng
-video/x-sgi-movie
-video/x-theora
-webkit/base
-x-conference/x-cooltalk
diff --git a/Tools/iExploder/iexploder-1.7.2/src/protocols/dillo b/Tools/iExploder/iexploder-1.7.2/src/protocols/dillo
deleted file mode 100644
index 4de61de..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/protocols/dillo
+++ /dev/null
@@ -1,4 +0,0 @@
-dpi:
-ftp:
-http:
-https:
diff --git a/Tools/iExploder/iexploder-1.7.2/src/protocols/gtkhtml b/Tools/iExploder/iexploder-1.7.2/src/protocols/gtkhtml
deleted file mode 100644
index 61cec0b..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/protocols/gtkhtml
+++ /dev/null
@@ -1,3 +0,0 @@
-ftp:
-http:
-https:
diff --git a/Tools/iExploder/iexploder-1.7.2/src/protocols/mozilla b/Tools/iExploder/iexploder-1.7.2/src/protocols/mozilla
deleted file mode 100644
index cec583b..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/protocols/mozilla
+++ /dev/null
@@ -1,30 +0,0 @@
-about:
-about:about
-about:addons
-about:buildconfig
-about:config
-about:crashes
-about:credits
-about:licence
-about:license
-about:logo
-about:memory
-about:mozilla
-about:neterror
-about:plugins
-about:support
-chrome:
-data:
-file:
-ftp:
-http:
-https:
-imap:
-jar:
-javascript:
-mailbox:
-mailto:
-news:
-place:
-resource:
-wyciwyg:
diff --git a/Tools/iExploder/iexploder-1.7.2/src/protocols/webkit b/Tools/iExploder/iexploder-1.7.2/src/protocols/webkit
deleted file mode 100644
index b632d0c..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/protocols/webkit
+++ /dev/null
@@ -1,16 +0,0 @@
-GET:
-about:
-blob:
-data:
-feed:
-feeds:
-file:
-ftp:
-http:
-https:
-javascript:
-mailto:
-rtsp:
-src:
-ws:
-wss:
diff --git a/Tools/iExploder/iexploder-1.7.2/src/scanner.rb b/Tools/iExploder/iexploder-1.7.2/src/scanner.rb
deleted file mode 100644
index 9a8261c..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/scanner.rb
+++ /dev/null
@@ -1,154 +0,0 @@
-#
-# iExploder Combination Scanner Library (used for subtesting)
-#
-# Copyright 2010 Thomas Stromberg - All Rights Reserved.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-
-# This is a simple sequential combination creator with a constantly growing width
-def seq_combo_creator(total_lines, width, offset)
-  # Offsets start at 0 to total_lines-1
-  use_lines = []
-  offset.upto(offset+width-1) do |line_number|
-    use_lines << line_number
-  end
-
-  if use_lines[-1] == total_lines-1
-    width += 1
-    next_offset = 0
-  else
-    next_offset = offset + 1
-  end
-  return [width, next_offset, use_lines]
-end
-
-# This tries all combinations, giving a small test-case, but requires lots of
-# subtests.
-def combine_combo_creator(total_lines, width, offsets)
-  #  puts "Asked: Total Lines: #{total_lines} Line Count: #{width} Offsets: #{offsets.join(',')}"
-  if not offsets or offsets.length == 0
-    #    puts "  Setting offsets to 0"
-    offsets = [0,]
-  end
-  if width < 1
-    width = 1
-  end
-
-  index = 0
-  lines = []
-  new_offsets = []
-  reset_next_offset = false
-
-  # Reverse the order from fastest to slowest
-  offsets.each_with_index do |offset, index|
-    0.upto(width-1) do |line_offset|
-      lines << (offset + line_offset)
-    end
-    if lines[-1] >= total_lines - 1
-      # If we are the slowest, that means we are done with this iteration.
-      if index == offsets.length - 1
-        new_offset_count = offsets.length + 1
-        # Loosely follow the Fibonacci sequence when calculating width
-        width = (new_offset_count * 1.61803398).round
-        new_offsets = []
-        # 0 to offsets.length creates one additional offset
-        0.upto(offsets.length) do |new_offset_num|
-          new_offsets << (new_offset_num * width)
-        end
-
-        # We need the lowest offset first. Oops.
-        new_offsets.reverse!
-      else
-        # Move to the next available slot.. next offset will take the one before.
-        new_offsets << offsets[index+1] + (width * 2)
-        reset_next_offset = true
-      end
-    elsif reset_next_offset
-      new_offsets << (offset + width)
-      reset_next_offset = false
-      # The first one always rotates
-    elsif index == 0
-      new_offsets << (offset + width)
-      reset_next_offset = false
-      # The others stay still normally.
-    else
-      new_offsets << offset
-      reset_next_offset = false
-    end
-  end
-
-  return [width, new_offsets, lines]
-end
-
-def avg(list)
-  sum = list.inject(0.0) { |sum, el| sum += el }
-  return sum / list.length
-end
-
-
-# for testing #################################################################
-if $0 == __FILE__
-  line_count = ARGV[0].to_i || 100
-  try_count = ARGV[1].to_i || 10
-
-  seq_iterations = []
-  combine_iterations = []
-  seq_size = []
-  combine_size = []
-
-  1.upto(try_count) do |run|
-    puts "*" * 78
-    puts "# RUN #{run} (line-count: #{line_count})"
-    find_lines = []
-    0.upto(rand(4)) do |count|
-      choice = rand(line_count).to_i
-      if ! find_lines.include?(choice)
-        find_lines << choice
-      end
-    end
-
-    lines = []
-    width = 1
-    offset = 0
-    attempts = 0
-    puts "Find lines: #{find_lines.join(',')}"
-    while not find_lines.all? { |x| lines.include?(x) }
-     (width, offset, lines) = seq_combo_creator(line_count, width, offset)
-      attempts += 1
-    end
-    puts "Sequential found #{find_lines.join(',')} in #{attempts} attempts with #{lines.length} total lines."
-    seq_iterations << attempts
-    seq_size << lines.length
-
-    lines = []
-    width = 1
-    offsets = []
-    attempts = 0
-    while not find_lines.all? { |x| lines.include?(x) }
-      #    puts "Looking for #{find_lines.join(',')}"
-       (width, offsets, lines) = combine_combo_creator(line_count, width, offsets)
-      attempts += 1
-    end
-    puts "Combine found #{find_lines.join(',')} in #{attempts} attempts with #{lines.length} total lines."
-    combine_iterations << attempts
-    combine_size << lines.length
-  end
-  puts "-" * 78
-  puts "Seq avg iterations=#{avg(seq_iterations).to_i} length=#{avg(seq_size).to_i}"
-  puts "combine avg iterations=#{avg(combine_iterations).to_i} length=#{avg(combine_size).to_i}"
-  diff_iter = (avg(combine_iterations) / avg(seq_iterations)) * 100
-  diff_lines = (avg(combine_size) / avg(seq_size)) * 100
-  puts "Diff iterations: #{diff_iter}%"
-  puts "Diff lines: #{diff_lines}%"
-end
diff --git a/Tools/iExploder/iexploder-1.7.2/src/version.rb b/Tools/iExploder/iexploder-1.7.2/src/version.rb
deleted file mode 100644
index 2837237..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/version.rb
+++ /dev/null
@@ -1 +0,0 @@
-$VERSION="1.7.2"
diff --git a/Tools/iExploder/iexploder-1.7.2/src/webserver.rb b/Tools/iExploder/iexploder-1.7.2/src/webserver.rb
deleted file mode 100755
index 7076fef..0000000
--- a/Tools/iExploder/iexploder-1.7.2/src/webserver.rb
+++ /dev/null
@@ -1,161 +0,0 @@
-#!/usr/bin/ruby
-# iExploder Web Server (using webrick)
-#
-# Copyright 2010 Thomas Stromberg - All Rights Reserved.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-require 'cgi'
-require 'webrick'
-require 'optparse'
-require './iexploder.rb'
-
-include WEBrick
-
-$INSTANCE = nil
-$last_page_requested = [Time.now().to_i, 0]
-
-# Main CGI - Pass requests to iexploder
-class IEServlet < HTTPServlet::AbstractServlet
-  def do_GET(request, response)
-    ie = $INSTANCE.dup
-    ie.test_num = request.query['t'].to_i || 0
-    ie.subtest_data = request.query['s'] || nil
-    ie.random_mode = request.query['r']
-    ie.lookup_mode = request.query['l']
-    ie.claimed_browser = request.query['b'] || nil
-    ie.stop_num = request.query['x'] || nil
-    user_agent = request['User-agent'] || 'unknown'
-    raw_user_agent = user_agent.dup
-    
-    # Shorten the user-agent displayed
-    user_agent.gsub!('Mozilla/5.0', '')
-    user_agent.gsub!('X11; ', '')
-    user_agent.gsub!('Macintosh; ', '')
-    user_agent.gsub!(' U;', '')
-    user_agent.gsub!(/^ +/, '')
-    user_agent.gsub!(' (KHTML, like Gecko)', '')
-    if user_agent =~ /Chrome/
-      user_agent.gsub!(/Safari\/[\d\.]+/, '')
-    end
-    ie.browser = user_agent
-    ie.setRandomSeed()
-    # If we are a dependency image, fiddle with the headers!
-    mime_type = request.query['m']
-    headers = []
-    if mime_type
-      for (key, value) in ie.buildHeaders(mime_type)
-        headers << "#{key}[#{value.length}]"
-        response[key] = value
-      end
-      response.body = ie.buildMediaFile(mime_type)
-    else
-      response['Content-Type'] = 'text/html'
-      response.body = ie.buildPage()
-    end
-
-    details = "?t=#{ie.test_num}"
-    if ie.subtest_data
-      details << "&s=#{ie.subtest_data}"
-    end
-    if ie.random_mode
-      details << "&r=1"
-    end
-    if ie.lookup_mode
-      details << "&l=#{ie.lookup_mode}"
-    end
-    if mime_type
-      details << "&m=#{mime_type}"
-    else
-      $last_page_requested = [Time.now().to_i, request.unparsed_uri, CGI.escape(user_agent)]
-    end
-    printf("%-45.45s %s\n", details, user_agent)
-    if headers.length > 0
-      printf("%-45.45s %s\n", "Headers for #{mime_type}:", headers.join(', '))
-    end
-  end
-end
-
-
-# Simple form
-class IEForm < HTTPServlet::AbstractServlet
-  def do_GET(request, response)
-    response['Content-Type'] = 'text/html'
-    response.body = File.read("index.html")
-  end
-end
-
-class IELogo < HTTPServlet::AbstractServlet
-  def do_GET(request, response)
-    response['Content-Type'] = 'image/png'
-    response.body = File.read("media/bug.png")
-  end
-end
-
-class NoPage < HTTPServlet::AbstractServlet
-  def do_GET(request, response)
-    response.body = 'OHAI'
-  end
-end
-
-class LastPage < HTTPServlet::AbstractServlet
-  def do_GET(request, response)
-    response.body = $last_page_requested.join(' ')
-  end
-end
-
-
-def start_server(port, config_path, log_path)
-  puts "* iExploder #{$VERSION} is loading (config=#{config_path}, port=#{port})"
-  puts "=" * 80
-  $INSTANCE = IExploder.new(config_path)
-  warn_logger = Log.new($stderr, Log::WARN)
-  config = YAML::load(File.open(config_path))
-  if not log_path
-    log_path = config['access_log_path']
-  end
-  puts "- Setting up logging to #{log_path}"
-  access_log_stream = Log.new(log_path)
-  access_log = [[ access_log_stream, AccessLog::COMMON_LOG_FORMAT ]]
-  s = WEBrick::HTTPServer.new(:Port => port, :Logger => warn_logger, :AccessLog => access_log)
-  s.mount("/", IEForm)
-  s.mount("/favicon.ico", NoPage)
-  s.mount("/media/bug.png", IELogo)
-  s.mount("/iexploder.cgi", IEServlet)
-  s.mount("/last_page.cgi", LastPage)
-  ['INT', 'TERM'].each {|signal| trap(signal) { puts "SERVER SHUTDOWN: #{signal}"; s.shutdown }}
-  puts "- iExploder is at http://127.0.0.1:#{port}"
-  s.start
-  puts ""
-  puts "Goodbye! Have a fantastic day."
-end
-
-
-
-if $0 == __FILE__
-  options = {
-    :port => 3100,
-    :config_path => 'config.yaml',
-    :log_path => nil
-  }
-
-  optparse = OptionParser.new do|opts|
-    opts.banner = "Usage: webserver.rb [options]"
-    opts.on( '-p', '--port NUM', 'Listen on TCP port NUM' ) { |port| options[:port] = port }
-    opts.on( '-c', '--config PATH', 'Use PATH for configuration file' ) { |path| options[:config_path] = path }
-    opts.on( '-l', '--log PATH', 'Use PATH for log file' ) { |path|  options[:log_path] = path }
-    opts.on( '-h', '--help', 'Display this screen' ) { puts opts; exit }
-  end
-  optparse.parse!
-  start_server(options[:port], options[:config_path], options[:log_path])
-end
diff --git a/Tools/iExploder/iexploder-1.7.2/testcases/testcase-Linux_x86_64_rv2.0b6pre_Gecko-20100904_Firefox-4.0b6pre-TEST-8375-1_59.html b/Tools/iExploder/iexploder-1.7.2/testcases/testcase-Linux_x86_64_rv2.0b6pre_Gecko-20100904_Firefox-4.0b6pre-TEST-8375-1_59.html
deleted file mode 100644
index 655091f..0000000
--- a/Tools/iExploder/iexploder-1.7.2/testcases/testcase-Linux_x86_64_rv2.0b6pre_Gecko-20100904_Firefox-4.0b6pre-TEST-8375-1_59.html
+++ /dev/null
@@ -1,47 +0,0 @@
-<html>
-	<head>	<META HTTP-EQUIV="Refresh" content="0;URL=testcase-Linux_x86_64_rv2.0b6pre_Gecko-20100904_Firefox-4.0b6pre-TEST-8375-1_59.html">
-	<script language="javascript">setTimeout('window.location="testcase-Linux_x86_64_rv2.0b6pre_Gecko-20100904_Firefox-4.0b6pre-TEST-8375-1_59.html"', 1000);</script>
-<title>[8375:1_59] iExploder 1.7-DEV - &#5430431573964;&#5430431573964;&#5430431573964;&#5430431573964;&#5430431573964;&#5430431573964;&#5430431573964;&#5430431573964;&#5430431573964;&#5430431573964;&#5430431573964;&#5430431573964;</title>
-
-<!-- iExploder 1.7-DEV | test 8375:1_59 at 2010-09-05 09:21:41 +0200 -->
-
-<!-- browser: (Linux x86_64; rv:2.0b6pre) Gecko/20100904 Firefox/4.0b6pre -->
-<!-- subtest mode: 1 combinations, width: 1 -->
-</head>
-
-<body>
-
-<!-- START script -->
-<script right=middle
-  onreset"http://127.0.0.1:3100/iexploder.cgi?t=8375&m=image%2Fbmp&b=%28Linux+x86_64%3B+rv%3A2.0b6pre%29+Gecko%2F20100904+Firefox%2F4.0b6pre()"
-  pluginspage="icon"
-  font-style=range
-  aria-grabbed="inherit"
-  onplaying=about:logo%&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;&#765832;()
-  submit="-9"
-  onfilterchange="http://127.0.0.1:3100/iexploder.cgi?t=8375&m=image%2Fsvg%2Bxml&b=%28Linux+x86_64%3B+rv%3A2.0b6pre%29+Gecko%2F20100904+Firefox%2F4.0b6pre"
-  ascent=baseline
-  containment=poly
-  horiz-origin-y="hidden
-  xlink:arcrole=999999999,9999999
-   style="text-overline-mode: -999999.861474621882159640833 9999999999999999999999999999999999999999999999999999999999999border-left-width-value: $44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;$44%;/0^2&A^7.FD;;
-    -moz-outline-radius: url(´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´´:942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&942;5911A%D;?#9/5&);
-    -webkit-animation: 99999999999999999999999999999999999999999999999999999999999999999999999999999999999;
-    richness: progresschunk-vertical 9999999999999999999999999999999999999999999999999999999999999999999999999999;
-    -moz-force-broken-image-icon: url(}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}:ãããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããããã) url(about:licence//aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa);
-    ">
-window.onload=function(){
-  var ietarget = document.createElement('strike');
-  ietarget.style.stress = '999999.403294590608419311316';
-  ietarget.columnlines = '/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%/3;1|3E98%:ÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚÚ';
-  document.body.appendChild(ietarget);
-  ietarget.style.speak = -9999999999999999999999999999999999;
-  document.write('</track>');
-  document.write('</a>');
-}
-</script>
-</script>
-
-<!-- END script -->
-</body>
-</html>
\ No newline at end of file
diff --git a/Tools/iExploder/iexploder-1.7.2/testcases/testcase-Opera-9.80_Linux_x86_64_en_Presto-2.6.30_Version-10.61-16704-3_108,3.html b/Tools/iExploder/iexploder-1.7.2/testcases/testcase-Opera-9.80_Linux_x86_64_en_Presto-2.6.30_Version-10.61-16704-3_108,3.html
deleted file mode 100644
index aad7ced..0000000
--- a/Tools/iExploder/iexploder-1.7.2/testcases/testcase-Opera-9.80_Linux_x86_64_en_Presto-2.6.30_Version-10.61-16704-3_108,3.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html>
-<body style="letter-spacing: 9999999999999999;">
-<textarea>
-<applet aria-valuetext="&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;&#977637;">
-</body>
-</html>
\ No newline at end of file
diff --git a/Tools/iExploder/iexploder-1.7.2/testcases/testcase-U_Intel_Mac_OS_X_10_6_4_en-US_AppleWebKit-534.8_Chrome-7.0.529.0-TEST-611-3_36,9.html b/Tools/iExploder/iexploder-1.7.2/testcases/testcase-U_Intel_Mac_OS_X_10_6_4_en-US_AppleWebKit-534.8_Chrome-7.0.529.0-TEST-611-3_36,9.html
deleted file mode 100644
index 0aab5ba..0000000
--- a/Tools/iExploder/iexploder-1.7.2/testcases/testcase-U_Intel_Mac_OS_X_10_6_4_en-US_AppleWebKit-534.8_Chrome-7.0.529.0-TEST-611-3_36,9.html
+++ /dev/null
@@ -1,8 +0,0 @@
-<html>
-<!-- iExploder 1.7 | test 611:3_36,9 at Sun Sep 19 22:00:15 +0200 2010 -->
-<!-- browser: (U; Intel Mac OS X 10_6_4; en-US) AppleWebKit/534.8 Chrome/7.0.529.0  -->
-<!-- subtest mode: 2 combinations, width: 3 -->
-<body>
-<progress style="font: 9999 x; ">
-</body>
-</html>
diff --git a/Tools/iExploder/iexploder-1.7.2/testcases/testcase-U_Intel_Mac_OS_X_10_6_4_en-US_AppleWebKit-534.8_hrome-7.0.529.0-TEST-55313622206-3_6,0.html b/Tools/iExploder/iexploder-1.7.2/testcases/testcase-U_Intel_Mac_OS_X_10_6_4_en-US_AppleWebKit-534.8_hrome-7.0.529.0-TEST-55313622206-3_6,0.html
deleted file mode 100644
index 5a2b9e1..0000000
--- a/Tools/iExploder/iexploder-1.7.2/testcases/testcase-U_Intel_Mac_OS_X_10_6_4_en-US_AppleWebKit-534.8_hrome-7.0.529.0-TEST-55313622206-3_6,0.html
+++ /dev/null
@@ -1,11 +0,0 @@
-<html style="content:
-url(//%n%n);
-">
-	<head>
-	<META HTTP-EQUIV="Refresh" content="1;testcase-U_Intel_Mac_OS_X_10_6_4_en-US_AppleWebKit-534.8_hrome-7.0.529.0-TEST-55313622206-3_6,0.html">
-<!-- iExploder 1.7 | test 55313622206:3_6,0 at Sun Sep 19 21:14:29 +0200 2010 -->
-<!-- browser: (U; Intel Mac OS X 10_6_4; en-US) AppleWebKit/534.8 Chrome/7.0.529.0  -->
-</head>
-<body>
-</body>
-</html>
diff --git a/Tools/iExploder/iexploder-1.7.2/testcases/testcase-U_Linux_x86_64_en-US_AppleWebKit-534.6_Chrome-7.0.503.1-TEST-120813-8_72,56,24,8,0.html b/Tools/iExploder/iexploder-1.7.2/testcases/testcase-U_Linux_x86_64_en-US_AppleWebKit-534.6_Chrome-7.0.503.1-TEST-120813-8_72,56,24,8,0.html
deleted file mode 100644
index 43601bd..0000000
--- a/Tools/iExploder/iexploder-1.7.2/testcases/testcase-U_Linux_x86_64_en-US_AppleWebKit-534.6_Chrome-7.0.503.1-TEST-120813-8_72,56,24,8,0.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html>
-<!-- browser: (U; Linux x86_64; en-US) AppleWebKit/534.6 Chrome/7.0.503.1  -->
-<i style="font: 0 xxx;">
-<progress>
-</body>
-</html>
\ No newline at end of file
diff --git a/Tools/iExploder/iexploder-1.7.2/testcases/testcase-U_Linux_x86_64_en-US_AppleWebKit-534.6_Chrome-7.0.503.1-TEST-121240-3_81,3.html b/Tools/iExploder/iexploder-1.7.2/testcases/testcase-U_Linux_x86_64_en-US_AppleWebKit-534.6_Chrome-7.0.503.1-TEST-121240-3_81,3.html
deleted file mode 100644
index 3f7ad07..0000000
--- a/Tools/iExploder/iexploder-1.7.2/testcases/testcase-U_Linux_x86_64_en-US_AppleWebKit-534.6_Chrome-7.0.503.1-TEST-121240-3_81,3.html
+++ /dev/null
@@ -1,11 +0,0 @@
-<html>
-<!-- browser: (U; Linux x86_64; en-US) AppleWebKit/534.6 Chrome/7.0.503.1  -->
-<textarea>
-<body>
-<style>
-dl {
-  margin: &#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;&#6076;
-}
-</style>
-</body>
-</html>
\ No newline at end of file
diff --git a/Tools/iExploder/iexploder-1.7.2/testcases/testcase-U_Linux_x86_64_en-US_AppleWebKit-534.7_Chrome-7.0.513.0-4800-5_80,65,15.html b/Tools/iExploder/iexploder-1.7.2/testcases/testcase-U_Linux_x86_64_en-US_AppleWebKit-534.7_Chrome-7.0.513.0-4800-5_80,65,15.html
deleted file mode 100644
index 7a03f55..0000000
--- a/Tools/iExploder/iexploder-1.7.2/testcases/testcase-U_Linux_x86_64_en-US_AppleWebKit-534.7_Chrome-7.0.513.0-4800-5_80,65,15.html
+++ /dev/null
@@ -1,13 +0,0 @@
-<html>
-<head>
-	<META HTTP-EQUIV="Refresh" content="1;URL=testcase-U_Linux_x86_64_en-US_AppleWebKit-534.7_Chrome-7.0.513.0-4800-5_80,65,15.html">
-	<script
-	language="javascript">setTimeout('window.location="testcase-U_Linux_x86_64_en-US_AppleWebKit-534.7_Chrome-7.0.513.0-4800-5_80,65,15.html"', 1000);</script>
-</head>
-
-<body>
-<textarea>
-<source>
-<option style="-webkit-hyphenate-character: &#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;&#1474;">
-</body>
-</html>
\ No newline at end of file
diff --git a/Tools/iExploder/iexploder-1.7.2/testcases/testcase-U_Linux_x86_64_en-US_AppleWebKit-534.7_Chrome-7.0.513.0-TEST-23583190347-3_15,12.html b/Tools/iExploder/iexploder-1.7.2/testcases/testcase-U_Linux_x86_64_en-US_AppleWebKit-534.7_Chrome-7.0.513.0-TEST-23583190347-3_15,12.html
deleted file mode 100644
index a6bbe3f..0000000
--- a/Tools/iExploder/iexploder-1.7.2/testcases/testcase-U_Linux_x86_64_en-US_AppleWebKit-534.7_Chrome-7.0.513.0-TEST-23583190347-3_15,12.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<html>
-	<head>
-	<META HTTP-EQUIV="Refresh" content="1;URL=testcase-U_Linux_x86_64_en-US_AppleWebKit-534.7_Chrome-7.0.513.0-TEST-23583190347-3_15,12.html">
-	<script language="javascript">setTimeout('window.location="testcase-U_Linux_x86_64_en-US_AppleWebKit-534.7_Chrome-7.0.513.0-TEST-23583190347-3_15,12.html"', 1000);</script>
-<!-- browser: (U; Linux x86_64; en-US) AppleWebKit/534.7 Chrome/7.0.513.0  -->
-<!-- subtest mode: 2 combinations, width: 3 -->
-</head>
-
-<body>
-
-<script style="content: url(https://);">
-</script>
-</body>
-</html>
\ No newline at end of file
diff --git a/Tools/iExploder/iexploder-1.7.2/tools/lasthit.rb b/Tools/iExploder/iexploder-1.7.2/tools/lasthit.rb
deleted file mode 100755
index d792d1b..0000000
--- a/Tools/iExploder/iexploder-1.7.2/tools/lasthit.rb
+++ /dev/null
@@ -1,74 +0,0 @@
-#!/usr/bin/ruby
-# Copyright 2010 Thomas Stromberg - All Rights Reserved.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-#
-#
-# lasthit, part of iExploder
-# 
-# Shows statistics about recent agents that have tested with iExploder. 
-# It takes all or part of an apache logfile via stdin, and outputs a list
-# of all the agents who tested within that section, what their last test
-# was, and how many tests they have done.
-
-# The usefulness is finding out where a browser crashed.
-
-require 'cgi'
-
-hostHash = Hash.new
-
-if (ARGV[0])
-	file = File.open(ARGV[0])
-else
-  puts "No filename specified, waiting for data via stdin..."
-	file = $stdin
-end
-
-last_index = nil
-file.readlines.each_with_index { |line, index|
-  # filter out mime hits as they produce a lot of odd user agents
-  next if line =~ /&m=/
-	if (line =~ /([\w\.]+) - - .*iexploder.cgi\?(.*?)&b=([\w\%-\.+]+)/)
-		host = $1
-		test_url = $2
-		agent = $3
-		if (! hostHash[host])
-			hostHash[host] = Hash.new
-		end
-		if (! hostHash[host][agent])
-			hostHash[host][agent] = Hash.new
-			hostHash[host][agent]['total'] = 0
-		end
-		hostHash[host][agent]['last'] = test_url
-		hostHash[host][agent]['total'] = hostHash[host][agent]['total'] + 1
-		hostHash[host][agent]['last_line'] = index
-	end
-  last_index = index
-}
-
-printf("%-14.14s | %-25.25s | %6.6s | %7.7s | %s\n",
-	 "Host", "Test URL", "Total", "LineAgo", "Agent")
-puts "-" * 78
-hostHash.each_key { |host|
-	hostHash[host].each_key { |agent|
-    next if agent.length < 8
-    display_agent = CGI::unescape(agent).sub('U; ', '')
-		printf("%-14.14s | %-25.25s | %6.6s | %7.7s | %s\n",
-			host, hostHash[host][agent]['last'],
-      hostHash[host][agent]['total'],
-      hostHash[host][agent]['last_line'] - last_index,
-      display_agent);
-	}
-}
-
diff --git a/Tools/iExploder/iexploder-1.7.2/tools/osx_last_crash.rb b/Tools/iExploder/iexploder-1.7.2/tools/osx_last_crash.rb
deleted file mode 100755
index d95296d..0000000
--- a/Tools/iExploder/iexploder-1.7.2/tools/osx_last_crash.rb
+++ /dev/null
@@ -1,63 +0,0 @@
-#!/usr/bin/ruby
-# Copyright 2010 Thomas Stromberg - All Rights Reserved.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-#
-# Gives you information about the most recent crash for each application
-# that has crashed within the last 2 days
-
-$LogDir=ENV['HOME'] + '/Library/Logs/CrashReporter'
-$Days=1
-$StackCount=5
-
-files=`find #$LogDir -mtime -#$Days -type f | grep -v synergy`
-files.each { |filename|
-    filename.chop!
-    record = 0
-    date=''
-    stackTrace = []
-
-    File.open(filename).readlines.each { |line|
-        #puts line
-
-        if line =~ /^Date.*(200.*)/
-            date = $1
-        end
-
-        if line =~ /^Thread \d+ Crashed/
-            record = 1
-            # reset the stack trace
-            stackTrace = []
-        end
-
-        if record
-            stackTrace << line
-            record = record + 1
-
-            # stop recording after $StackCount lines
-            if record > ($StackCount + 2)
-                record = nil
-            end
-        end
-    }
-
-    puts File.basename(filename) + " - " + date
-    puts "==================================================="
-    stackTrace.each { |line|
-        puts line
-    }
-    puts ""
-}
-
-
diff --git a/Tools/iExploder/iexploder-1.7.2/tools/release_src.sh b/Tools/iExploder/iexploder-1.7.2/tools/release_src.sh
deleted file mode 100755
index 5fb625e..0000000
--- a/Tools/iExploder/iexploder-1.7.2/tools/release_src.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-# Create a tarball from the subversion repository.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-tmp=$$
-cd /tmp
-svn checkout http://iexploder.googlecode.com/svn/trunk/ iexploder-$$
-version=`grep '^\$VERSION' iexploder-$$/src/version.rb | cut -d\" -f2`
-echo "Version: $version"
-mv iexploder-$$ iexploder-$version
-cd iexploder-$version
-svn log > ChangeLog.txt
-find . -name "*.pyc" -delete
-find . -name ".svn" -exec rm -Rf {} \; 2>/dev/null
-cd ..
-GZIP="-9" tar -zcvf iexploder-${version}.tgz iexploder-${version}/
-rm -Rf iexploder-${version}
diff --git a/Tools/iExploder/iexploder-1.7.2/tools/update_html_tags_from_sources.sh b/Tools/iExploder/iexploder-1.7.2/tools/update_html_tags_from_sources.sh
deleted file mode 100755
index 39707f7..0000000
--- a/Tools/iExploder/iexploder-1.7.2/tools/update_html_tags_from_sources.sh
+++ /dev/null
@@ -1,125 +0,0 @@
-#!/bin/sh
-#
-# This script imports HTML and CSS tags from source trees. Supported browsers:
-#
-# * WebKit
-# * Firefox
-# * dillo
-# * gtkhtml
-
-src_dir=$1
-tools_dir=`dirname $0`
-dest_dir="$tools_dir/../src"
-tmp_prefix="/tmp/$$"
-
-if [ -z "$src_dir" ]; then
-  echo "You must define a source directory to examine."
-fi
-
-if [ ! -d "$dest_dir" ]; then
-  echo "Unable to find htdocs directory. Tried $dest_dir"
-  exit 1
-fi
-
-
-if [ -d "$src_dir/WebKit" ]; then
-  # Tested as of WebKit-r55454
-  source_name="webkit"
-  grep -v "^#" $src_dir/Source/WebCore/css/CSSPropertyNames.in > ${tmp_prefix}.css-properties
-  grep -v "^#" $src_dir/Source/WebCore/css/CSSValueKeywords.in > ${tmp_prefix}.css-values
-  grep -v "^#" $src_dir/Source/WebCore/html/HTMLAttributeNames.in | cut -d" " -f1  | \
-    egrep -v "^namespace\w*=" > ${tmp_prefix}.html-attrs
-  grep -v "^#" $src_dir/Source/WebCore/html/HTMLTagNames.in | cut -d" " -f1 | \
-    egrep -v "^namespace\w*=" > ${tmp_prefix}.html-tags
-  egrep "equalIgnoringCase" $src_dir/Source/WebCore/html/HTML*.cpp | \
-    ruby -e '$stdin.readlines.join("").scan(/\"([\w-]+)"/) { |tag| puts tag }' > ${tmp_prefix}.html-values
-  grep -r "protocolIs" $src_dir/Source/WebCore/* | ruby -e '$stdin.readlines.join("").scan(/\"([\w-]+)"/) { |tag| puts "#{tag}:" }' > ${tmp_prefix}.protocols
-  grep "map->add" $src_dir/Source/WebCore/html/HTMLInputElement.cpp | cut -d\" -f2 >> ${tmp_prefix}.html-values
-  grep "AtomicString,.*Header, (" $src_dir/Source/WebCore/platform/network/ResourceResponseBase.cpp | cut -d\" -f2 > ${tmp_prefix}.headers
-  grep -o -r 'httpHeaderField(".*"' $src_dir  | cut -d\" -f2 >> ${tmp_prefix}.headers
-  egrep -r '"[-\+a-z]+/[-\+a-z]+"' $src_dir/Source/WebCore | ruby -e '$stdin.readlines.join("").scan(/\"([afimtvwx][\w\+-]+\/[\w\+-]+)"/) { puts $1 }'  > ${tmp_prefix}.mime-types
-  grep DEFINE_STATIC $src_dir/Source/WebCore/css/CSSSelector.cpp  | cut -d\" -f2 \
-    > ${tmp_prefix}.css-pseudo
-  egrep -o '"@.*?\"' $src_dir/Source/WebCore/css/CSSParser.cpp | cut -d\" -f2 | cut -d"{" -f1 | \
-    sed s/" "//  > ${tmp_prefix}.css-atrules
-elif [ -d "$src_dir/xpcom" ]; then
-  # Tested as of Sep 1 2010 
-  source_name="mozilla"
-  grep "^HTML_.*TAG" $src_dir/parser/htmlparser/public/nsHTMLTagList.h \
-    | cut -d\( -f2 | cut -d, -f1 | cut -d\) -f1 > ${tmp_prefix}.html-tags
-  grep -r "Get.*Attr.*nsGkAtoms" $src_dir | perl -ne 'if (/nsGkAtoms::(\w+)/) { print "$1\n" } '\
-    | xargs -n1 -I{} grep "({}," $src_dir/content/base/src/nsGkAtomList.h \
-    | cut -d\" -f2 > ${tmp_prefix}.html-attrs
-  grep "nsHtml5AttributeName.*nsHtml5Atoms::" $src_dir/parser/html/nsHtml5AttributeName.cpp  \
-    | cut -d: -f3  | cut -d\) -f1 | cut -d, -f1  | xargs -n1 -I{} grep "({}," $src_dir/parser/html/nsHtml5AtomList.h \
-    | cut -d\" -f2 >> ${tmp_prefix}.html-attrs
-  egrep "^    [a-z-]+," $src_dir/layout/style/nsCSSPropList.h | cut -d, -f1 \
-    | awk '{ print $1 }' > ${tmp_prefix}.css-properties
-  grep 'CSS_KEY(' $src_dir/layout/style/nsCSSKeywordList.h | cut -d"(" -f2 \
-    | cut -d, -f1 > ${tmp_prefix}.css-values
-  egrep '{ "[a-z]+:' $src_dir/docshell/build/nsDocShellModule.cpp | cut -d\" -f2 \
-    > ${tmp_prefix}.protocols
-  grep -r 'aURI->SchemeIs("' $src_dir/* | cut -d\" -f2 | perl -ne 'chomp; print "$_:\n";' >> ${tmp_prefix}.protocols
-  grep -r 'uri->SchemeIs("' $src_dir/* | cut -d\" -f2 | perl -ne 'chomp; print "$_:\n";' >> ${tmp_prefix}.protocols
-  grep "{ \"" $src_dir/docshell/base/nsAboutRedirector.cpp | cut -d\" -f2 \
-    | xargs -I{} echo "about:{}" >> ${tmp_prefix}.protocols
-  grep targetScheme.EqualsLiteral $src_dir/netwerk/base/public/nsNetUtil.h \
-    | cut -d\" -f2 | sed s/$/:/g>> ${tmp_prefix}.protocols
-  grep "name.LowerCaseEqualsLiteral" $src_dir/docshell/base/nsDocShell.cpp | cut -d\" -f2 >> ${tmp_prefix}.html-values
-  egrep '  { "[a-z]+' $src_dir/content/html/content/src/nsGenericHTMLElement.cpp | cut -d\" -f2 >> ${tmp_prefix}.html-values
-  grep ' { "' $src_dir/content/html/content/src/nsHTMLInputElement.cpp | cut -d\" -f2 >> ${tmp_prefix}.html-values
-  grep -r value.LowerCaseEqualsLiteral $src_dir/content/base/src/* | cut -d\" -f2 >> ${tmp_prefix}.html-values
-  grep "^HTTP_ATOM" $src_dir/netwerk/protocol/http/nsHttpAtomList.h  | cut -d\" -f2 \
-    | grep '[a-z]'>> ${tmp_prefix}.headers
-  egrep -r '"[-\+a-z]+/[-\+a-z]+"' $src_dir/browser/base $src_dir/browser/components $src_dir/uriloader $src_dir/netwerk/mime $src_dir/content/html \
-   | ruby -e '$stdin.readlines.join("").scan(/\"([afimtvwx][\w\+-]+\/[\w\+-]+)"/) { puts $1 }' > ${tmp_prefix}.mime-types
-  egrep -o '":(.*?)"' $src_dir/layout/style/nsCSSPseudoClassList.h  | cut -d\" -f2 \
-    | sed s/^:// > ${tmp_prefix}.css-pseudo
-  grep AssignLiteral $src_dir/layout/style/nsCSSRules.cpp | egrep -o '"@.*?"' \
-    | cut -d\" -f2 | cut -d" " -f1 > ${tmp_prefix}.css-atrules
-elif [ -f "$src_dir/dillorc" ]; then
-  # Tested as of dillo 2.2
-  source_name="dillo"
-  grep '{"' $src_dir/src/cssparser.cc  | cut -d\" -f2 > ${tmp_prefix}.css-properties
-  egrep '^ +\"[a-z-]+\", ' $src_dir/src/cssparser.cc | \
-    ruby -e '$stdin.readlines.join("").scan(/\"(.*?)\"/) { |tag| puts tag }' > ${tmp_prefix}.css-values
-  grep "_get_attr(html" $src_dir/src/html.cc | grep '"' | cut -d\" -f2 > ${tmp_prefix}.html-attrs
-  grep 'a_Html_get_attr(html.*"' $src_dir/src/*.cc | cut -d\" -f2 >> ${tmp_prefix}.html-attrs
-  grep Html_tag_open_ $src_dir/src/html.cc  | grep "^ {" | cut -d\" -f2 > ${tmp_prefix}.html-tags
-  grep dStrcasecmp $src_dir/src/form.cc $src_dir/src/html.cc $src_dir/src/table.cc | \
-    ruby -e '$stdin.readlines.join("").scan(/\"([-a-z]+)\"/) { |tag| puts tag }' > ${tmp_prefix}.html-values
-  grep -r 'URL_SCHEME.*"[a-z]' $src_dir | cut -d \" -f2 | perl -ne 'chomp; print "$_:\n";' > ${tmp_prefix}.protocols
-  grep -r 'header, "' $src_dir/src/cache.c  | cut -d\" -f2 > ${tmp_prefix}.headers
-  egrep -r "[-\+a-z]+/[-\+a-z]+" $src_dir/dpi $src_dir/src | \
-    ruby -e '$stdin.readlines.join("").scan(/\"([\w\+-]+\/[\w\+-]+)"/) { puts $1 }' > ${tmp_prefix}.mime-types
-elif [ -d "$src_dir/gtkhtml" ]; then
-  # tested as of gtkhtml-3.29.91
-  source_name="gtkhtml"
-  grep -r "#define ID_" $src_dir/gtkhtml/htmlengine.c | cut -d\" -f2 | egrep '^[a-z]' > ${tmp_prefix}.html-tags
-  grep "html_element_get_attr" $src_dir/gtkhtml/*.c | cut -d\" -f2 > ${tmp_prefix}.html-attrs
-  grep -r "g_ascii_strncasecmp" $src_dir/gtkhtml/*.c | cut -d\" -f2 | grep -v ":" | cut -d"=" -f1 | grep "^[a-z]"  > ${tmp_prefix}.html-attrs
-  grep "g_ascii_strncasecmp" $src_dir/gtkhtml/htmlstyle.c | cut -d\" -f2 | cut -d" " -f1 | sed s/://g > ${tmp_prefix}.css-properties
-  grep "g_ascii_strcasecmp" $src_dir/gtkhtml/htmlstyle.c | cut -d\" -f2 > ${tmp_prefix}.css-values
-  grep g_ascii_strcasecmp $src_dir/gtkhtml/htmlengine.c |  ruby -e '$stdin.readlines.join("").scan(/\"([\/\w-]+)"/) { |tag| puts tag }' > ${tmp_prefix}.html-values
-fi
-
-if [ "$source_name" ]; then
-  echo "Updating $source_name"
-  # We always append, never remove.
-  types="css-properties css-values html-attrs html-tags html-values protocols headers mime-types css-pseudo css-atrules" 
-  for type in $types
-  do
-    if [ -f "${tmp_prefix}.${type}" ]; then
-      if [ -s "${tmp_prefix}.${type}" ]; then
-        echo "- $type"
-        cat $dest_dir/$type/$source_name ${tmp_prefix}.${type} | sort -u > $dest_dir/$type/$source_name
-      else
-        echo "- Unable to parse ${type}, source code is incompatible (skipping)"
-      fi
-      rm -f "${tmp_prefix}.${type}"
-    fi
-  done
-else
-  echo "Could not identify the correct source type for $src_dir"
-fi
-
diff --git a/Tools/jhbuild/jhbuild-wrapper b/Tools/jhbuild/jhbuild-wrapper
deleted file mode 100755
index 40bbb01..0000000
--- a/Tools/jhbuild/jhbuild-wrapper
+++ /dev/null
@@ -1,122 +0,0 @@
-#!/usr/bin/env python
-# Copyright (C) 2011 Igalia S.L.
-# Copyright (C) 2012 Gustavo Noronha Silva <gns@gnome.org>
-# Copyright (C) 2012 Intel Corporation
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
-
-import jhbuildutils
-import os
-import shlex
-import subprocess
-import sys
-
-jhbuild_revision = '1eedc423f75c605224b430579e4c303292199507'
-
-dependencies_path = jhbuildutils.get_dependencies_path()
-installation_prefix = os.path.abspath(os.path.join(dependencies_path, 'Root'))
-source_path = os.path.abspath(os.path.join(dependencies_path, 'Source'))
-jhbuild_source_path = os.path.join(source_path, 'jhbuild')
-jhbuild_path = os.path.join(installation_prefix, 'bin', 'jhbuild')
-
-def jhbuild_installed():
-    return os.path.exists(jhbuild_path)
-
-
-def jhbuild_cloned():
-    return os.path.exists(jhbuild_source_path)
-
-
-def jhbuild_at_expected_revision():
-    process = subprocess.Popen(['git', 'rev-list', 'HEAD^..'], cwd=jhbuild_source_path,
-                               stdout=subprocess.PIPE, stderr=subprocess.PIPE)
-    output, err = process.communicate()
-    if process.returncode != 0:
-        raise Exception('failed to find jhbuild revision: %s' % err)
-
-    return output.strip() == jhbuild_revision
-
-
-def update_jhbuild():
-    process = subprocess.Popen(['git', 'remote', 'update', 'origin'], cwd=jhbuild_source_path)
-    process.wait()
-    if process.returncode != 0:
-        raise Exception('jhbuild remote update origin failed with return code: %i' % process.returncode)
-
-    process = subprocess.Popen(['git', 'checkout', '%s' % jhbuild_revision],
-                               cwd=jhbuild_source_path)
-    process.wait()
-    if process.returncode != 0:
-        raise Exception('failed to checkout treeish %s: %i' % (jhbuild_revision, process.returncode))
-
-
-def clone_jhbuild():
-    if not os.path.exists(source_path):
-        os.makedirs(source_path)
-    if not os.path.exists(installation_prefix):
-        os.makedirs(installation_prefix)
-
-    process = subprocess.Popen(['git', 'clone', 'git://git.gnome.org/jhbuild'], cwd=source_path)
-    process.wait()
-    if process.returncode != 0:
-        raise Exception('jhbuild git clone failed with return code: %i' % process.returncode)
-
-
-def install_jhbuild():
-    process = subprocess.Popen(['bash', './autogen.sh', '--prefix=%s' % installation_prefix], cwd=jhbuild_source_path)
-    process.wait()
-    if process.returncode != 0:
-        raise Exception('jhbuild configure failed with return code: %i' % process.returncode)
-
-    # This is a hackish approach to make the subprocess.Popen call even when people set
-    # MAKE to 'make -j3' instead of using the MAKEFLAGS environment variable.
-    make = shlex.split(os.environ.get('MAKE', 'make'))
-
-    process = subprocess.Popen(make + ['install'], cwd=jhbuild_source_path)
-    process.wait()
-    if process.returncode != 0:
-        raise Exception('jhbuild configure failed with return code: %i' % process.returncode)
-
-
-def determine_platform():
-    if '--efl' in sys.argv:
-        return "efl";
-    if '--gtk' in sys.argv:
-        return "gtk";
-    raise ValueError('No platform specified for jhbuild-wrapper.')
-
-
-def ensure_jhbuild(platform):
-    if not jhbuild_cloned():
-        clone_jhbuild()
-        update_jhbuild()
-        install_jhbuild()
-    elif not jhbuild_installed() \
-            or not jhbuild_at_expected_revision():
-        update_jhbuild()
-        install_jhbuild()
-
-# Work-around the fact that we may get called from inside the jhbuild environment
-# which will cause problems if we just cleaned the jhbuild install root
-if os.environ.has_key('UNDER_JHBUILD'):
-    del os.environ['ACLOCAL_FLAGS']
-
-try:
-    platform = determine_platform()
-except ValueError as e:
-    sys.exit(e)
-ensure_jhbuild(platform)
-
-os.execve(jhbuild_path, [jhbuild_path, '--no-interact', '-f', jhbuildutils.get_config_file_for_platform(platform)] + sys.argv[2:], os.environ)
diff --git a/Tools/jhbuild/jhbuildutils.py b/Tools/jhbuild/jhbuildutils.py
deleted file mode 100644
index c9972b8..0000000
--- a/Tools/jhbuild/jhbuildutils.py
+++ /dev/null
@@ -1,53 +0,0 @@
-import glob
-import os.path
-import sys
-import __builtin__
-
-top_level_dir = None
-
-
-def top_level_path(*args):
-    global top_level_dir
-    if not top_level_dir:
-        top_level_dir = os.path.join(os.path.dirname(__file__), '..', '..')
-    return os.path.join(*(top_level_dir,) + args)
-
-
-def get_dependencies_path():
-    if 'WEBKITOUTPUTDIR' in os.environ:
-        return os.path.abspath(os.path.join(os.environ['WEBKITOUTPUTDIR'], 'Dependencies'))
-    else:
-        return os.path.abspath(top_level_path('WebKitBuild', 'Dependencies'))
-
-
-def get_config_file_for_platform(platform):
-    return top_level_path('Tools', platform, 'jhbuildrc')
-
-
-def enter_jhbuild_environment_if_available(platform):
-    if not os.path.exists(get_dependencies_path()):
-        return False
-
-    # Sometimes jhbuild chooses to install in a way that reads the library from the source directory, so fall
-    # back to that method.
-    source_path = os.path.join(get_dependencies_path(), "Source", "jhbuild")
-    sys.path.insert(0, source_path)
-
-    # When loading jhbuild from the source checkout it fails if the SRCDIR variable is not set.
-    __builtin__.__dict__['SRCDIR'] = source_path
-
-    # We don't know the Python version, so we just assume that we can safely take the first one in the list.
-    site_packages_path = glob.glob(os.path.join(get_dependencies_path(), "Root", "lib", "*", "site-packages"))
-    if len(site_packages_path):
-       site_packages_path = site_packages_path[0]
-       sys.path.insert(0, site_packages_path)
-
-    try:
-        import jhbuild.config
-        from jhbuild.errors import FatalError
-        config = jhbuild.config.Config(get_config_file_for_platform(platform))
-    except FatalError, exception:
-        sys.stderr.write('Could not load jhbuild config file: %s\n' % exception.args[0])
-        return False
-
-    return True
diff --git a/Tools/mangleme/LICENSE b/Tools/mangleme/LICENSE
deleted file mode 100644
index 5ab7695..0000000
--- a/Tools/mangleme/LICENSE
+++ /dev/null
@@ -1,504 +0,0 @@
-		  GNU LESSER GENERAL PUBLIC LICENSE
-		       Version 2.1, February 1999
-
- Copyright (C) 1991, 1999 Free Software Foundation, Inc.
- 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-[This is the first released version of the Lesser GPL.  It also counts
- as the successor of the GNU Library Public License, version 2, hence
- the version number 2.1.]
-
-			    Preamble
-
-  The licenses for most software are designed to take away your
-freedom to share and change it.  By contrast, the GNU General Public
-Licenses are intended to guarantee your freedom to share and change
-free software--to make sure the software is free for all its users.
-
-  This license, the Lesser General Public License, applies to some
-specially designated software packages--typically libraries--of the
-Free Software Foundation and other authors who decide to use it.  You
-can use it too, but we suggest you first think carefully about whether
-this license or the ordinary General Public License is the better
-strategy to use in any particular case, based on the explanations below.
-
-  When we speak of free software, we are referring to freedom of use,
-not price.  Our General Public Licenses are designed to make sure that
-you have the freedom to distribute copies of free software (and charge
-for this service if you wish); that you receive source code or can get
-it if you want it; that you can change the software and use pieces of
-it in new free programs; and that you are informed that you can do
-these things.
-
-  To protect your rights, we need to make restrictions that forbid
-distributors to deny you these rights or to ask you to surrender these
-rights.  These restrictions translate to certain responsibilities for
-you if you distribute copies of the library or if you modify it.
-
-  For example, if you distribute copies of the library, whether gratis
-or for a fee, you must give the recipients all the rights that we gave
-you.  You must make sure that they, too, receive or can get the source
-code.  If you link other code with the library, you must provide
-complete object files to the recipients, so that they can relink them
-with the library after making changes to the library and recompiling
-it.  And you must show them these terms so they know their rights.
-
-  We protect your rights with a two-step method: (1) we copyright the
-library, and (2) we offer you this license, which gives you legal
-permission to copy, distribute and/or modify the library.
-
-  To protect each distributor, we want to make it very clear that
-there is no warranty for the free library.  Also, if the library is
-modified by someone else and passed on, the recipients should know
-that what they have is not the original version, so that the original
-author's reputation will not be affected by problems that might be
-introduced by others.
-
-  Finally, software patents pose a constant threat to the existence of
-any free program.  We wish to make sure that a company cannot
-effectively restrict the users of a free program by obtaining a
-restrictive license from a patent holder.  Therefore, we insist that
-any patent license obtained for a version of the library must be
-consistent with the full freedom of use specified in this license.
-
-  Most GNU software, including some libraries, is covered by the
-ordinary GNU General Public License.  This license, the GNU Lesser
-General Public License, applies to certain designated libraries, and
-is quite different from the ordinary General Public License.  We use
-this license for certain libraries in order to permit linking those
-libraries into non-free programs.
-
-  When a program is linked with a library, whether statically or using
-a shared library, the combination of the two is legally speaking a
-combined work, a derivative of the original library.  The ordinary
-General Public License therefore permits such linking only if the
-entire combination fits its criteria of freedom.  The Lesser General
-Public License permits more lax criteria for linking other code with
-the library.
-
-  We call this license the "Lesser" General Public License because it
-does Less to protect the user's freedom than the ordinary General
-Public License.  It also provides other free software developers Less
-of an advantage over competing non-free programs.  These disadvantages
-are the reason we use the ordinary General Public License for many
-libraries.  However, the Lesser license provides advantages in certain
-special circumstances.
-
-  For example, on rare occasions, there may be a special need to
-encourage the widest possible use of a certain library, so that it becomes
-a de-facto standard.  To achieve this, non-free programs must be
-allowed to use the library.  A more frequent case is that a free
-library does the same job as widely used non-free libraries.  In this
-case, there is little to gain by limiting the free library to free
-software only, so we use the Lesser General Public License.
-
-  In other cases, permission to use a particular library in non-free
-programs enables a greater number of people to use a large body of
-free software.  For example, permission to use the GNU C Library in
-non-free programs enables many more people to use the whole GNU
-operating system, as well as its variant, the GNU/Linux operating
-system.
-
-  Although the Lesser General Public License is Less protective of the
-users' freedom, it does ensure that the user of a program that is
-linked with the Library has the freedom and the wherewithal to run
-that program using a modified version of the Library.
-
-  The precise terms and conditions for copying, distribution and
-modification follow.  Pay close attention to the difference between a
-"work based on the library" and a "work that uses the library".  The
-former contains code derived from the library, whereas the latter must
-be combined with the library in order to run.
-
-		  GNU LESSER GENERAL PUBLIC LICENSE
-   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
-  0. This License Agreement applies to any software library or other
-program which contains a notice placed by the copyright holder or
-other authorized party saying it may be distributed under the terms of
-this Lesser General Public License (also called "this License").
-Each licensee is addressed as "you".
-
-  A "library" means a collection of software functions and/or data
-prepared so as to be conveniently linked with application programs
-(which use some of those functions and data) to form executables.
-
-  The "Library", below, refers to any such software library or work
-which has been distributed under these terms.  A "work based on the
-Library" means either the Library or any derivative work under
-copyright law: that is to say, a work containing the Library or a
-portion of it, either verbatim or with modifications and/or translated
-straightforwardly into another language.  (Hereinafter, translation is
-included without limitation in the term "modification".)
-
-  "Source code" for a work means the preferred form of the work for
-making modifications to it.  For a library, complete source code means
-all the source code for all modules it contains, plus any associated
-interface definition files, plus the scripts used to control compilation
-and installation of the library.
-
-  Activities other than copying, distribution and modification are not
-covered by this License; they are outside its scope.  The act of
-running a program using the Library is not restricted, and output from
-such a program is covered only if its contents constitute a work based
-on the Library (independent of the use of the Library in a tool for
-writing it).  Whether that is true depends on what the Library does
-and what the program that uses the Library does.
-  
-  1. You may copy and distribute verbatim copies of the Library's
-complete source code as you receive it, in any medium, provided that
-you conspicuously and appropriately publish on each copy an
-appropriate copyright notice and disclaimer of warranty; keep intact
-all the notices that refer to this License and to the absence of any
-warranty; and distribute a copy of this License along with the
-Library.
-
-  You may charge a fee for the physical act of transferring a copy,
-and you may at your option offer warranty protection in exchange for a
-fee.
-
-  2. You may modify your copy or copies of the Library or any portion
-of it, thus forming a work based on the Library, and copy and
-distribute such modifications or work under the terms of Section 1
-above, provided that you also meet all of these conditions:
-
-    a) The modified work must itself be a software library.
-
-    b) You must cause the files modified to carry prominent notices
-    stating that you changed the files and the date of any change.
-
-    c) You must cause the whole of the work to be licensed at no
-    charge to all third parties under the terms of this License.
-
-    d) If a facility in the modified Library refers to a function or a
-    table of data to be supplied by an application program that uses
-    the facility, other than as an argument passed when the facility
-    is invoked, then you must make a good faith effort to ensure that,
-    in the event an application does not supply such function or
-    table, the facility still operates, and performs whatever part of
-    its purpose remains meaningful.
-
-    (For example, a function in a library to compute square roots has
-    a purpose that is entirely well-defined independent of the
-    application.  Therefore, Subsection 2d requires that any
-    application-supplied function or table used by this function must
-    be optional: if the application does not supply it, the square
-    root function must still compute square roots.)
-
-These requirements apply to the modified work as a whole.  If
-identifiable sections of that work are not derived from the Library,
-and can be reasonably considered independent and separate works in
-themselves, then this License, and its terms, do not apply to those
-sections when you distribute them as separate works.  But when you
-distribute the same sections as part of a whole which is a work based
-on the Library, the distribution of the whole must be on the terms of
-this License, whose permissions for other licensees extend to the
-entire whole, and thus to each and every part regardless of who wrote
-it.
-
-Thus, it is not the intent of this section to claim rights or contest
-your rights to work written entirely by you; rather, the intent is to
-exercise the right to control the distribution of derivative or
-collective works based on the Library.
-
-In addition, mere aggregation of another work not based on the Library
-with the Library (or with a work based on the Library) on a volume of
-a storage or distribution medium does not bring the other work under
-the scope of this License.
-
-  3. You may opt to apply the terms of the ordinary GNU General Public
-License instead of this License to a given copy of the Library.  To do
-this, you must alter all the notices that refer to this License, so
-that they refer to the ordinary GNU General Public License, version 2,
-instead of to this License.  (If a newer version than version 2 of the
-ordinary GNU General Public License has appeared, then you can specify
-that version instead if you wish.)  Do not make any other change in
-these notices.
-
-  Once this change is made in a given copy, it is irreversible for
-that copy, so the ordinary GNU General Public License applies to all
-subsequent copies and derivative works made from that copy.
-
-  This option is useful when you wish to copy part of the code of
-the Library into a program that is not a library.
-
-  4. You may copy and distribute the Library (or a portion or
-derivative of it, under Section 2) in object code or executable form
-under the terms of Sections 1 and 2 above provided that you accompany
-it with the complete corresponding machine-readable source code, which
-must be distributed under the terms of Sections 1 and 2 above on a
-medium customarily used for software interchange.
-
-  If distribution of object code is made by offering access to copy
-from a designated place, then offering equivalent access to copy the
-source code from the same place satisfies the requirement to
-distribute the source code, even though third parties are not
-compelled to copy the source along with the object code.
-
-  5. A program that contains no derivative of any portion of the
-Library, but is designed to work with the Library by being compiled or
-linked with it, is called a "work that uses the Library".  Such a
-work, in isolation, is not a derivative work of the Library, and
-therefore falls outside the scope of this License.
-
-  However, linking a "work that uses the Library" with the Library
-creates an executable that is a derivative of the Library (because it
-contains portions of the Library), rather than a "work that uses the
-library".  The executable is therefore covered by this License.
-Section 6 states terms for distribution of such executables.
-
-  When a "work that uses the Library" uses material from a header file
-that is part of the Library, the object code for the work may be a
-derivative work of the Library even though the source code is not.
-Whether this is true is especially significant if the work can be
-linked without the Library, or if the work is itself a library.  The
-threshold for this to be true is not precisely defined by law.
-
-  If such an object file uses only numerical parameters, data
-structure layouts and accessors, and small macros and small inline
-functions (ten lines or less in length), then the use of the object
-file is unrestricted, regardless of whether it is legally a derivative
-work.  (Executables containing this object code plus portions of the
-Library will still fall under Section 6.)
-
-  Otherwise, if the work is a derivative of the Library, you may
-distribute the object code for the work under the terms of Section 6.
-Any executables containing that work also fall under Section 6,
-whether or not they are linked directly with the Library itself.
-
-  6. As an exception to the Sections above, you may also combine or
-link a "work that uses the Library" with the Library to produce a
-work containing portions of the Library, and distribute that work
-under terms of your choice, provided that the terms permit
-modification of the work for the customer's own use and reverse
-engineering for debugging such modifications.
-
-  You must give prominent notice with each copy of the work that the
-Library is used in it and that the Library and its use are covered by
-this License.  You must supply a copy of this License.  If the work
-during execution displays copyright notices, you must include the
-copyright notice for the Library among them, as well as a reference
-directing the user to the copy of this License.  Also, you must do one
-of these things:
-
-    a) Accompany the work with the complete corresponding
-    machine-readable source code for the Library including whatever
-    changes were used in the work (which must be distributed under
-    Sections 1 and 2 above); and, if the work is an executable linked
-    with the Library, with the complete machine-readable "work that
-    uses the Library", as object code and/or source code, so that the
-    user can modify the Library and then relink to produce a modified
-    executable containing the modified Library.  (It is understood
-    that the user who changes the contents of definitions files in the
-    Library will not necessarily be able to recompile the application
-    to use the modified definitions.)
-
-    b) Use a suitable shared library mechanism for linking with the
-    Library.  A suitable mechanism is one that (1) uses at run time a
-    copy of the library already present on the user's computer system,
-    rather than copying library functions into the executable, and (2)
-    will operate properly with a modified version of the library, if
-    the user installs one, as long as the modified version is
-    interface-compatible with the version that the work was made with.
-
-    c) Accompany the work with a written offer, valid for at
-    least three years, to give the same user the materials
-    specified in Subsection 6a, above, for a charge no more
-    than the cost of performing this distribution.
-
-    d) If distribution of the work is made by offering access to copy
-    from a designated place, offer equivalent access to copy the above
-    specified materials from the same place.
-
-    e) Verify that the user has already received a copy of these
-    materials or that you have already sent this user a copy.
-
-  For an executable, the required form of the "work that uses the
-Library" must include any data and utility programs needed for
-reproducing the executable from it.  However, as a special exception,
-the materials to be distributed need not include anything that is
-normally distributed (in either source or binary form) with the major
-components (compiler, kernel, and so on) of the operating system on
-which the executable runs, unless that component itself accompanies
-the executable.
-
-  It may happen that this requirement contradicts the license
-restrictions of other proprietary libraries that do not normally
-accompany the operating system.  Such a contradiction means you cannot
-use both them and the Library together in an executable that you
-distribute.
-
-  7. You may place library facilities that are a work based on the
-Library side-by-side in a single library together with other library
-facilities not covered by this License, and distribute such a combined
-library, provided that the separate distribution of the work based on
-the Library and of the other library facilities is otherwise
-permitted, and provided that you do these two things:
-
-    a) Accompany the combined library with a copy of the same work
-    based on the Library, uncombined with any other library
-    facilities.  This must be distributed under the terms of the
-    Sections above.
-
-    b) Give prominent notice with the combined library of the fact
-    that part of it is a work based on the Library, and explaining
-    where to find the accompanying uncombined form of the same work.
-
-  8. You may not copy, modify, sublicense, link with, or distribute
-the Library except as expressly provided under this License.  Any
-attempt otherwise to copy, modify, sublicense, link with, or
-distribute the Library is void, and will automatically terminate your
-rights under this License.  However, parties who have received copies,
-or rights, from you under this License will not have their licenses
-terminated so long as such parties remain in full compliance.
-
-  9. You are not required to accept this License, since you have not
-signed it.  However, nothing else grants you permission to modify or
-distribute the Library or its derivative works.  These actions are
-prohibited by law if you do not accept this License.  Therefore, by
-modifying or distributing the Library (or any work based on the
-Library), you indicate your acceptance of this License to do so, and
-all its terms and conditions for copying, distributing or modifying
-the Library or works based on it.
-
-  10. Each time you redistribute the Library (or any work based on the
-Library), the recipient automatically receives a license from the
-original licensor to copy, distribute, link with or modify the Library
-subject to these terms and conditions.  You may not impose any further
-restrictions on the recipients' exercise of the rights granted herein.
-You are not responsible for enforcing compliance by third parties with
-this License.
-
-  11. If, as a consequence of a court judgment or allegation of patent
-infringement or for any other reason (not limited to patent issues),
-conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License.  If you cannot
-distribute so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you
-may not distribute the Library at all.  For example, if a patent
-license would not permit royalty-free redistribution of the Library by
-all those who receive copies directly or indirectly through you, then
-the only way you could satisfy both it and this License would be to
-refrain entirely from distribution of the Library.
-
-If any portion of this section is held invalid or unenforceable under any
-particular circumstance, the balance of the section is intended to apply,
-and the section as a whole is intended to apply in other circumstances.
-
-It is not the purpose of this section to induce you to infringe any
-patents or other property right claims or to contest validity of any
-such claims; this section has the sole purpose of protecting the
-integrity of the free software distribution system which is
-implemented by public license practices.  Many people have made
-generous contributions to the wide range of software distributed
-through that system in reliance on consistent application of that
-system; it is up to the author/donor to decide if he or she is willing
-to distribute software through any other system and a licensee cannot
-impose that choice.
-
-This section is intended to make thoroughly clear what is believed to
-be a consequence of the rest of this License.
-
-  12. If the distribution and/or use of the Library is restricted in
-certain countries either by patents or by copyrighted interfaces, the
-original copyright holder who places the Library under this License may add
-an explicit geographical distribution limitation excluding those countries,
-so that distribution is permitted only in or among countries not thus
-excluded.  In such case, this License incorporates the limitation as if
-written in the body of this License.
-
-  13. The Free Software Foundation may publish revised and/or new
-versions of the Lesser General Public License from time to time.
-Such new versions will be similar in spirit to the present version,
-but may differ in detail to address new problems or concerns.
-
-Each version is given a distinguishing version number.  If the Library
-specifies a version number of this License which applies to it and
-"any later version", you have the option of following the terms and
-conditions either of that version or of any later version published by
-the Free Software Foundation.  If the Library does not specify a
-license version number, you may choose any version ever published by
-the Free Software Foundation.
-
-  14. If you wish to incorporate parts of the Library into other free
-programs whose distribution conditions are incompatible with these,
-write to the author to ask for permission.  For software which is
-copyrighted by the Free Software Foundation, write to the Free
-Software Foundation; we sometimes make exceptions for this.  Our
-decision will be guided by the two goals of preserving the free status
-of all derivatives of our free software and of promoting the sharing
-and reuse of software generally.
-
-			    NO WARRANTY
-
-  15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
-WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
-EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
-OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
-KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
-LIBRARY IS WITH YOU.  SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
-THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
-  16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
-WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
-AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
-FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
-CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
-LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
-RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
-FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
-SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
-DAMAGES.
-
-		     END OF TERMS AND CONDITIONS
-
-           How to Apply These Terms to Your New Libraries
-
-  If you develop a new library, and you want it to be of the greatest
-possible use to the public, we recommend making it free software that
-everyone can redistribute and change.  You can do so by permitting
-redistribution under these terms (or, alternatively, under the terms of the
-ordinary General Public License).
-
-  To apply these terms, attach the following notices to the library.  It is
-safest to attach them to the start of each source file to most effectively
-convey the exclusion of warranty; and each file should have at least the
-"copyright" line and a pointer to where the full notice is found.
-
-    <one line to give the library's name and a brief idea of what it does.>
-    Copyright (C) <year>  <name of author>
-
-    This library is free software; you can redistribute it and/or
-    modify it under the terms of the GNU Lesser General Public
-    License as published by the Free Software Foundation; either
-    version 2.1 of the License, or (at your option) any later version.
-
-    This library is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-    Lesser General Public License for more details.
-
-    You should have received a copy of the GNU Lesser General Public
-    License along with this library; if not, write to the Free Software
-    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
-
-Also add information on how to contact you by electronic and paper mail.
-
-You should also get your employer (if you work as a programmer) or your
-school, if any, to sign a "copyright disclaimer" for the library, if
-necessary.  Here is a sample; alter the names:
-
-  Yoyodyne, Inc., hereby disclaims all copyright interest in the
-  library `Frob' (a library for tweaking knobs) written by James Random Hacker.
-
-  <signature of Ty Coon>, 1 April 1990
-  Ty Coon, President of Vice
-
-That's all there is to it!
-
-
diff --git a/Tools/mangleme/Makefile b/Tools/mangleme/Makefile
deleted file mode 100644
index 90d01e9..0000000
--- a/Tools/mangleme/Makefile
+++ /dev/null
@@ -1,16 +0,0 @@
-#
-# HTML manglizer
-# --------------
-# Copyright (C) 2004 by Michal Zalewski <lcamtuf@coredump.cx>
-#
-# Makefile adapted for WebKit project.
-
-CC = gcc
-CFLAGS = -Wall -O3 -fomit-frame-pointer -funroll-loops
-OUTDIR = ../../WebKitBuild/mangleme
-
-all: $(OUTDIR)/mangle.cgi $(OUTDIR)/remangle.cgi
-
-$(OUTDIR)/%.cgi: %.cgi.c
-	if [ ! -d $(OUTDIR) ]; then mkdir -p $(OUTDIR); fi
-	$(CC) $(CFLAGS) $< -o $(OUTDIR)/$*.cgi
diff --git a/Tools/mangleme/README b/Tools/mangleme/README
deleted file mode 100644
index 4fe2928..0000000
--- a/Tools/mangleme/README
+++ /dev/null
@@ -1,20 +0,0 @@
-
-  HTML manglizer
-  --------------
-
-  Copyright (C) 2004 by Michal Zalewski <lcamtuf@coredump.cx>
-
-  A trivial utility to automatically check for HTML parsing flaws. Generates
-  a basic set of badly mangled tags on request, with auto-refresh back to the 
-  script, so that you can point a browser to it once, and let it run until
-  it crashes.
-
-  Put it in your cgi-bin directory or any other Apache folder with ExecCGI option
-  enabled, then visit the URL http://<yourserver>/<cgidir>/mangleme.cgi.
-
-  When the browser crashes, error-log should be examined for the last matching
-  entry generated by mangle.cgi; extract the hexadecimal value, then invoke
-  remangle.cgi?hex_value from the browser again. If it crashes, you've reproduced
-  the problem, and can save the remangle.cgi page using wget or such.
-
-  Check gallery/ for some samples.
diff --git a/Tools/mangleme/mangle.cgi.c b/Tools/mangleme/mangle.cgi.c
deleted file mode 100644
index 12ca948..0000000
--- a/Tools/mangleme/mangle.cgi.c
+++ /dev/null
@@ -1,122 +0,0 @@
-/*
-
-   HTML manglizer
-   --------------
-   Copyright (C) 2004 by Michal Zalewski <lcamtuf@coredump.cx>
-
-   HTML manglizer library. Logs random seeds to error-log; find the last entry before
-   crash, then pass it to remangle.cgi to reproduce the problem.
-
- */
-
-
-#include <stdio.h>
-#include <unistd.h>
-#include <stdlib.h>
-#include <string.h>
-#include <time.h>
-
-#include "tags.h"
-
-#define R(x) (rand() % (x))
-
-#define MAXTCOUNT 100
-#define MAXPCOUNT 20
-#define MAXSTR2   80
-
-void make_up_value(void) {
-  char c=R(2);
-  
-  if (c) putchar('"');
-
-  switch (R(31)) {
-
-    case 0: printf("javascript:"); make_up_value(); break;
-//    case 1: printf("jar:"); make_up_value(); break;
-    case 2: printf("mk:"); make_up_value(); break;
-    case 3: printf("file:"); make_up_value(); break;
-    case 4: printf("http:"); make_up_value(); break;
-    case 5: printf("about:"); make_up_value(); break;
-    case 6: printf("_blank"); break;
-    case 7: printf("_self"); break;
-    case 8: printf("top"); break;
-    case 9: printf("left"); break;
-    case 10: putchar('&'); make_up_value(); putchar(';'); break;
-    case 11: make_up_value(); make_up_value(); break;
- 
-    case 12 ... 20: {
-        int c = R(10) ? R(10) : (1 + R(MAXSTR2) * R(MAXSTR2));
-        char* x = malloc(c);
-        memset(x,R(256),c);
-        fwrite(x,c,1,stdout);
-        free(x);
-        break;
-      }
-      
-    case 21: printf("%s","%n%n%n%n%n%n"); break;
-    case 22: putchar('#'); break;
-    case 23: putchar('*'); break;
-    default: if (R(2)) putchar('-'); printf("%d",rand()); break;
-    
-  }
-
-  if (c) putchar('"');
-
-}
-  
-
-void random_tag(void) {
-  int tn, tc;
-  
-  do tn = R(MAXTAGS); while (!tags[tn][0]);
-  tc = R(MAXPCOUNT) + 1;
-  
-  putchar('<');
-  
-  switch (R(10)) {
-    case 0: putchar(R(256)); break;
-    case 1: putchar('/');
-  }
-  
-  printf("%s", tags[tn][0]);
-  
-  while (tc--) {
-    int pn;
-    switch (R(32)) {
-      case 0: putchar(R(256)); 
-      case 1: break;
-      default: putchar(' ');
-    }
-    do pn = R(MAXPARS-1) + 1; while (!tags[tn][pn]);
-    printf("%s", tags[tn][pn]);
-    switch (R(32)) {
-      case 0: putchar(R(256)); 
-      case 1: break;
-      default: putchar('=');
-    }
-    
-    make_up_value();
-    
-  }
-    
-  putchar('>');
-  
-}
-
-
-int main(int argc,char** argv) {
-  int tc,seed;
-  
-  printf("Content-Type: text/html;charset=utf-8\nRefresh: 0;URL=mangle.cgi\n\n");
-  printf("<HTML><HEAD><META HTTP-EQUIV=\"Refresh\" content=\"0;URL=mangle.cgi\">\n");
-  printf("<script language=\"javascript\">setTimeout('window.location=\"mangle.cgi\"', 1000);</script>\n");
-
-  seed = (time(0) ^ (getpid() << 16));
-  fprintf(stderr,"[%u] Mangle attempt 0x%08x (%s) -- %s\n", (int)time(0), seed, getenv("HTTP_USER_AGENT"), getenv("REMOTE_ADDR"));
-  srand(seed);
-  
-  tc = R(MAXTCOUNT) + 1;
-  while (tc--) random_tag();
-  fflush(0);
-  return 0;
-}
diff --git a/Tools/mangleme/remangle.cgi.c b/Tools/mangleme/remangle.cgi.c
deleted file mode 100644
index ccc4472..0000000
--- a/Tools/mangleme/remangle.cgi.c
+++ /dev/null
@@ -1,125 +0,0 @@
-/*
-
-   HTML manglizer
-   --------------
-   Copyright (C) 2004 by Michal Zalewski <lcamtuf@coredump.cx>
-
-   Fault reproduction utility.
-
- */
-
-
-#include <stdio.h>
-#include <unistd.h>
-#include <stdlib.h>
-#include <string.h>
-#include <time.h>
-
-#include "tags.h"
-
-#define R(x) (rand() % (x))
-
-#define MAXTCOUNT 100
-#define MAXPCOUNT 20
-#define MAXSTR2   80
-
-void make_up_value(void) {
-  char c=R(2);
-
-  if (c) putchar('"');
-
-  switch (R(31)) {
-
-    case 0: printf("javascript:"); make_up_value(); break;
-//    case 1: printf("jar:"); make_up_value(); break;
-    case 2: printf("mk:"); make_up_value(); break;
-    case 3: printf("file:"); make_up_value(); break;
-    case 4: printf("http:"); make_up_value(); break;
-    case 5: printf("about:"); make_up_value(); break;
-    case 6: printf("_blank"); break;
-    case 7: printf("_self"); break;
-    case 8: printf("top"); break;
-    case 9: printf("left"); break;
-    case 10: putchar('&'); make_up_value(); putchar(';'); break;
-    case 11: make_up_value(); make_up_value(); break;
-
-    case 12 ... 20: {
-        int c = R(10) ? R(10) : (1 + R(MAXSTR2) * R(MAXSTR2));
-        char* x = malloc(c);
-        memset(x,R(256),c);
-        fwrite(x,c,1,stdout);
-        free(x);
-        break;
-      }
-
-    case 21: printf("%s","%n%n%n%n%n%n"); break;
-    case 22: putchar('#'); break;
-    case 23: putchar('*'); break;
-    default: if (R(2)) putchar('-'); printf("%d",rand()); break;
-
-  }
-
-  if (c) putchar('"');
-
-}
-  
-
-void random_tag(void) {
-  int tn, tc;
-  
-  do tn = R(MAXTAGS); while (!tags[tn][0]);
-  tc = R(MAXPCOUNT) + 1;
-  
-  putchar('<');
-  
-  switch (R(10)) {
-    case 0: putchar(R(256)); break;
-    case 1: putchar('/');
-  }
-  
-  printf("%s", tags[tn][0]);
-  
-  while (tc--) {
-    int pn;
-    switch (R(32)) {
-      case 0: putchar(R(256)); 
-      case 1: break;
-      default: putchar(' ');
-    }
-    do pn = R(MAXPARS-1) + 1; while (!tags[tn][pn]);
-    printf("%s", tags[tn][pn]);
-    switch (R(32)) {
-      case 0: putchar(R(256)); 
-      case 1: break;
-      default: putchar('=');
-    }
-    
-    make_up_value();
-    
-  }
-    
-  putchar('>');
-  
-}
-
-
-int main(int argc,char** argv) {
-  int tc,seed; 
-  char* x = getenv("QUERY_STRING");
-
-  if (!x || sscanf(x,"%x",&seed) != 1) {
-    printf("Content-type: text/plain\n\nMissing or invalid parameter.\n");
-    exit(1);
-  }
-
-  printf("Content-Type: text/html;charset=utf-8\nRefresh: 0;URL=remangle.cgi?0x%08x\n\n", seed);
-  printf("<HTML><HEAD><META HTTP-EQUIV=\"Refresh\" content=\"0;URL=remangle.cgi?0x%08x\">\n", seed);
-  printf("<script language=\"javascript\">setTimeout('window.location=\"remangle.cgi?0x%08x\"', 1000);</script>\n", seed);
-
-  srand(seed);
-  
-  tc = R(MAXTCOUNT) + 1;
-  while (tc--) random_tag();
-  fflush(0);
-  return 0;
-}
diff --git a/Tools/mangleme/tags.h b/Tools/mangleme/tags.h
deleted file mode 100644
index 5789441..0000000
--- a/Tools/mangleme/tags.h
+++ /dev/null
@@ -1,76 +0,0 @@
-/*
-
-   HTML manglizer
-   --------------
-   Copyright (C) 2004 by Michal Zalewski <lcamtuf@coredump.cx>
-
-   Tag and parameter list: guesstimating / reference compilation.
-
- */
-
-
-#define MAXTAGS 80
-#define MAXPARS 20
-
-static char* tags[MAXTAGS][MAXPARS] = {
-  { "A", "NAME", "HREF", "REF", "REV", "TITLE", "TARGET", "SHAPE", "onLoad", "STYLE", 0 },
-  { "APPLET", "CODEBASE", "CODE", "NAME", "ALIGN", "ALT", "HEIGHT", "WIDTH", "HSPACE", "VSPACE", "DOWNLOAD", "HEIGHT", "NAME", "TITLE", "onLoad", "STYLE", 0 }, 
-  { "AREA", "SHAPE", "ALT", "CO-ORDS", "HREF", "onLoad", "STYLE", 0 }, 
-  { "B", "onLoad", "STYLE", 0 }, 
-  { "BANNER", "onLoad", "STYLE", 0 }, 
-  { "BASE", "HREF", "TARGET", "onLoad", "STYLE", 0 }, 
-  { "BASEFONT", "SIZE", "onLoad", "STYLE", 0 }, 
-  { "BGSOUND", "SRC", "LOOP", "onLoad", "STYLE", 0 }, 
-  { "BQ", "CLEAR", "NOWRAP", "onLoad", "STYLE", 0 }, 
-  { "BODY", "BACKGROUND", "BGCOLOR", "TEXT", "LINK", "ALINK", "VLINK", "LEFTMARGIN", "TOPMARGIN", "BGPROPERTIES", "onLoad", "STYLE", 0 }, 
-  { "CAPTION", "ALIGN", "VALIGN", "onLoad", "STYLE", 0 }, 
-  { "CENTER", "onLoad", "STYLE", 0 }, 
-  { "COL", "ALIGN", "SPAN", "onLoad", "STYLE", 0 }, 
-  { "COLGROUP", "ALIGN", "VALIGN", "HALIGN", "WIDTH", "SPAN", "onLoad", "STYLE", 0 }, 
-  { "DIV", "ALIGN", "CLASS", "LANG", "onLoad", "STYLE", 0 }, 
-  { "EMBED", "SRC", "HEIGHT", "WIDTH", "UNITS", "NAME", "PALETTE", "onLoad", "STYLE", 0 }, 
-  { "FIG", "SRC", "ALIGN", "HEIGHT", "WIDTH", "UNITS", "IMAGEMAP", "onLoad", "STYLE", 0 }, 
-  { "FN", "ID", "onLoad", "STYLE", 0 }, 
-  { "FONT", "SIZE", "COLOR", "FACE", "onLoad", "STYLE", 0 }, 
-  { "FORM", "ACTION", "METHOD", "ENCTYPE", "TARGET", "SCRIPT", "onLoad", "STYLE", 0 }, 
-  { "FRAME", "SRC", "NAME", "MARGINWIDTH", "MARGINHEIGHT", "SCROLLING", "FRAMESPACING", "onLoad", "STYLE", 0 }, 
-  { "FRAMESET", "ROWS", "COLS", "onLoad", "STYLE", 0 }, 
-  { "H1", "SRC", "DINGBAT", "onLoad", "STYLE", 0 }, 
-  { "HEAD", "onLoad", "STYLE", 0 }, 
-  { "HR", "SRC", "SIZE", "WIDTH", "ALIGN", "COLOR", "onLoad", "STYLE", 0 }, 
-  { "HTML", "onLoad", "STYLE", 0 }, 
-  { "IFRAME", "ALIGN", "FRAMEBORDER", "HEIGHT", "MARGINHEIGHT", "MARGINWIDTH", "NAME", "SCROLLING", "SRC", "ADDRESS", "WIDTH", "onLoad", "STYLE", 0 }, 
-  { "IMG", "ALIGN", "ALT", "SRC", "BORDER", "DYNSRC", "HEIGHT", "HSPACE", "ISMAP", "LOOP", "LOWSRC", "START", "UNITS", "USEMAP", "WIDTH", "VSPACE", "onLoad", "STYLE", 0 }, 
-  { "INPUT", "TYPE", "NAME", "VALUE", "onLoad", "STYLE", 0 }, 
-  { "ISINDEX", "HREF", "PROMPT", "onLoad", "STYLE", 0 }, 
-  { "LI", "SRC", "DINGBAT", "SKIP", "TYPE", "VALUE", "onLoad", "STYLE", 0 }, 
-  { "LINK", "REL", "REV", "HREF", "TITLE", "onLoad", "STYLE", 0 }, 
-  { "MAP", "NAME", "onLoad", "STYLE", 0 }, 
-  { "MARQUEE", "ALIGN", "BEHAVIOR", "BGCOLOR", "DIRECTION", "HEIGHT", "HSPACE", "LOOP", "SCROLLAMOUNT", "SCROLLDELAY", "WIDTH", "VSPACE", "onLoad", "STYLE", 0 }, 
-  { "MENU", "onLoad", "STYLE", 0 }, 
-  { "META", "HTTP-EQUIV", "CONTENT", "NAME", "onLoad", "STYLE", 0 }, 
-  { "MULTICOL", "COLS", "GUTTER", "WIDTH", "onLoad", "STYLE", 0 }, 
-  { "NOFRAMES", "onLoad", "STYLE", 0 }, 
-  { "NOTE", "CLASS", "SRC", "onLoad", "STYLE", 0 }, 
-  { "OVERLAY", "SRC", "X", "Y", "HEIGHT", "WIDTH", "UNITS", "IMAGEMAP", "onLoad", "STYLE", 0 }, 
-  { "PARAM", "NAME", "VALUE", "onLoad", "STYLE", 0 }, 
-  { "RANGE", "FROM", "UNTIL", "onLoad", "STYLE", 0 }, 
-  { "SCRIPT", "LANGUAGE", "onLoad", "STYLE", 0 }, 
-  { "SELECT", "NAME", "SIZE", "MULTIPLE", "WIDTH", "HEIGHT", "UNITS", "onLoad", "STYLE", 0 },
-  { "OPTION", "VALUE", "SHAPE", "onLoad", "STYLE", 0 }, 
-  { "SPACER", "TYPE", "SIZE", "WIDTH", "HEIGHT", "ALIGN", "onLoad", "STYLE", 0 }, 
-  { "SPOT", "ID", "onLoad", "STYLE", 0 }, 
-  { "TAB", "INDENT", "TO", "ALIGN", "DP", "onLoad", "STYLE", 0 }, 
-  { "TABLE", "ALIGN", "WIDTH", "BORDER", "CELLPADDING", "CELLSPACING", "BGCOLOR", "VALIGN", "COLSPEC", "UNITS", "DP", "onLoad", "STYLE", 0 }, 
-  { "TBODY", "CLASS", "ID", "onLoad", "STYLE", 0 },
-  { "TD", "COLSPAN", "ROWSPAN", "ALIGN", "VALIGN", "BGCOLOR", "onLoad", "STYLE", 0 }, 
-  { "TEXTAREA", "NAME", "COLS", "ROWS", "onLoad", "STYLE", 0 }, 
-  { "TEXTFLOW", "CLASS", "ID", "onLoad", "STYLE", 0 },
-  { "TFOOT", "COLSPAN", "ROWSPAN", "ALIGN", "VALIGN", "BGCOLOR", "onLoad", "STYLE", 0 }, 
-  { "TH", "ALIGN", "CLASS", "ID", "onLoad", "STYLE", 0 },
-  { "TITLE", "onLoad", "STYLE", 0 }, 
-  { "TR", "ALIGN", "VALIGN", "BGCOLOR", "CLASS", "onLoad", "STYLE", 0 }, 
-  { "UL", "SRC", "DINGBAT", "WRAP", "TYPE", "PLAIN", "onLoad", "STYLE", 0 }, 
-  { 0 }
-};
-
diff --git a/Tools/qmake/.qmake.cache b/Tools/qmake/.qmake.cache
deleted file mode 100644
index e69de29..0000000
--- a/Tools/qmake/.qmake.cache
+++ /dev/null
diff --git a/Tools/qmake/.qmake.conf b/Tools/qmake/.qmake.conf
deleted file mode 100644
index 2f0dc89..0000000
--- a/Tools/qmake/.qmake.conf
+++ /dev/null
@@ -1,2 +0,0 @@
-# This file is only here to isolate the configure project
-# from the rest of the tree.
diff --git a/Tools/qmake/README b/Tools/qmake/README
deleted file mode 100644
index afc16d8..0000000
--- a/Tools/qmake/README
+++ /dev/null
@@ -1,78 +0,0 @@
-The qmake build system
-======================
-
-Basic structure
----------------
-
-The qmake build is split into three different file types:
-
-    * .pro files: These files represent top level targets that can be
-    built individually, or a collection of sub-targets used for
-    organizing the project.
-
-    * .pri files: These files are included from top level targets,
-    and represent 'implementation details' of how the target is built.
-
-    * .prf files: These files take care of generic build rules
-    that applies to all targets, or specific 'features' that can
-    be loaded on demand.
-
-The first two file types are spread throughout the source tree, while
-the .prf files are located in 'Tools/qmake/mkspecs/features' and will
-get loaded by qmake based on setting the QMAKEPATH environment variable.
-
-
-Root project file
------------------
-
-The root project file 'WebKit.pro' is handy both for loading WebKit
-in Qt Creator, and for building QtWebKit. Normally you will build
-using build-webkit, but you can also run qmake directly on the root
-project file. Just make sure to set QMAKEPATH first, so that the
-custom mkspecs are picked up.
-
-Feature files
--------------
-
-Feature files (.prf files) are used in the following ways:
-
-    1. Every time qmake parses a project file, it will first load
-    a special feature file called 'defaults_pre.prf', then parse
-    the project file, and then load another special feature file
-    called 'defaults_post.prf'. We use these special files to set
-    default options that all project files use, expose a few handy
-    functions, and to post-process the build config based on what
-    the project file did.
-
-    2. Dependencies on other targets (libraries) are declared by
-    using CONFIG+=othertarget. This will add the correct include
-    paths and linker options to use the library.
-
-    3. Optional features can be enabled by passing CONFIG+=foo on
-    the command line when running qmake on the root project file,
-    (or by passing --make-args="CONFIG+=foo" to build-webkit). For
-    example 'CONFIG+=valgrind'.
-
-
-Derived sources
----------------
-
-Some targets (JavaScriptCore, WebCore, etc) rely on generated files,
-(aka. derived sources). These must be generated before the real target
-is built. This is achieved by splitting the target up into two sub-
-projects, one for the derived sources and one for the real target,
-and telling qmake to build them in order using CONFIG += ordered.
-
-
-The WEBKIT variable
--------------------
-
-The custom qmake variable 'WEBKIT' is used for signaling that a
-target depends in some way on other subproject of the WebKit
-project. For now this is limited to the set of intermediate
-libraries: wtf, javascriptcore, webcore, and webkit2.
-
-Adding a dependency results in additional include paths being
-available, and potentially linking to the library. This is
-decided by the build system based on conditions such as what
-kind of target is being built and the general build config.
diff --git a/Tools/qmake/config.tests/README b/Tools/qmake/config.tests/README
deleted file mode 100644
index 4a37088..0000000
--- a/Tools/qmake/config.tests/README
+++ /dev/null
@@ -1,4 +0,0 @@
-This directory is used for configure-style checks that are run by
-syncqt during processing of configure.pro in the parent directory.
-
-Note: This feature is available in Qt 5 only.
diff --git a/Tools/qmake/config.tests/fontconfig/fontconfig.cpp b/Tools/qmake/config.tests/fontconfig/fontconfig.cpp
deleted file mode 100644
index 2d43ed1..0000000
--- a/Tools/qmake/config.tests/fontconfig/fontconfig.cpp
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * Copyright (C) 2011 University of Szeged. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include <fontconfig/fontconfig.h>
-
-int main(int, char**)
-{
-    FcInit();
-}
diff --git a/Tools/qmake/config.tests/fontconfig/fontconfig.pro b/Tools/qmake/config.tests/fontconfig/fontconfig.pro
deleted file mode 100644
index 6306fd1..0000000
--- a/Tools/qmake/config.tests/fontconfig/fontconfig.pro
+++ /dev/null
@@ -1,4 +0,0 @@
-CONFIG -= qt
-SOURCES = fontconfig.cpp
-CONFIG += link_pkgconfig
-PKGCONFIG += fontconfig
diff --git a/Tools/qmake/config.tests/gccdepends/empty.cpp b/Tools/qmake/config.tests/gccdepends/empty.cpp
deleted file mode 100644
index e69de29..0000000
--- a/Tools/qmake/config.tests/gccdepends/empty.cpp
+++ /dev/null
diff --git a/Tools/qmake/config.tests/gccdepends/gccdepends.pro b/Tools/qmake/config.tests/gccdepends/gccdepends.pro
deleted file mode 100644
index cd0a81a..0000000
--- a/Tools/qmake/config.tests/gccdepends/gccdepends.pro
+++ /dev/null
@@ -1,34 +0,0 @@
-TEMPLATE = aux
-OBJECTS_DIR = obj
-QMAKE_CXXFLAGS += -MD
-
-base_filename = empty
-object_file = $$OBJECTS_DIR/$${base_filename}.o
-deps_filename = $${base_filename}.d
-
-SOURCES += $${base_filename}.cpp
-
-test.commands = \
-    # Earlier teambuilder and icecream versions would not
-    # respect the -o argument for the .d file, so the file
-    # would end up in the root build dir.
-    test ! -f $${deps_filename} && \
-    \
-    # But it should end up in the OBJECTS_DIR
-    test -f $$OBJECTS_DIR/$${deps_filename} && \
-    \
-    # Icecream 0.9.7 and earlier does not ensure that the
-    # target rule matches the path of the .o file, since
-    # the file is compiled into the current dir and then
-    # moved. Verify that we don't hit that case.
-    grep -q \"$${object_file}:\" $$OBJECTS_DIR/$${deps_filename} && \
-    \
-    # If everything is all right we mark the test as succeeded
-    echo success > $$basename(PWD)
-
-test.depends = $${object_file}
-QMAKE_EXTRA_TARGETS += test
-
-default.target = all
-default.depends += test
-QMAKE_EXTRA_TARGETS += default
diff --git a/Tools/qmake/config.tests/glx/glx.cpp b/Tools/qmake/config.tests/glx/glx.cpp
deleted file mode 100644
index 9dcfd17..0000000
--- a/Tools/qmake/config.tests/glx/glx.cpp
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include <GL/glx.h>
-
-int main(int, char**)
-{
-    Display* display = XOpenDisplay(0);
-    int items = 0;
-    (void)glXChooseFBConfig(display, DefaultScreen(display), 0, &items);
-    XCloseDisplay(display);
-
-    return 0;
-}
diff --git a/Tools/qmake/config.tests/glx/glx.pro b/Tools/qmake/config.tests/glx/glx.pro
deleted file mode 100644
index 4e81000..0000000
--- a/Tools/qmake/config.tests/glx/glx.pro
+++ /dev/null
@@ -1,4 +0,0 @@
-SOURCES = glx.cpp
-OBJECTS_DIR = obj
-LIBS += -lX11 -lGL
-
diff --git a/Tools/qmake/config.tests/gnuld/gnuld.pro b/Tools/qmake/config.tests/gnuld/gnuld.pro
deleted file mode 100644
index c239f13..0000000
--- a/Tools/qmake/config.tests/gnuld/gnuld.pro
+++ /dev/null
@@ -1,4 +0,0 @@
-TEMPLATE = app
-TARGET = gnuld
-SOURCES = main.cpp
-QMAKE_LFLAGS += -Wl,--no-keep-memory
diff --git a/Tools/qmake/config.tests/gnuld/main.cpp b/Tools/qmake/config.tests/gnuld/main.cpp
deleted file mode 100644
index 31a1337..0000000
--- a/Tools/qmake/config.tests/gnuld/main.cpp
+++ /dev/null
@@ -1,5 +0,0 @@
-
-int main()
-{
-    return 0;
-}
diff --git a/Tools/qmake/config.tests/libXcomposite/libXcomposite.cpp b/Tools/qmake/config.tests/libXcomposite/libXcomposite.cpp
deleted file mode 100644
index 10e1054..0000000
--- a/Tools/qmake/config.tests/libXcomposite/libXcomposite.cpp
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include <X11/extensions/Xcomposite.h>
-
-int main(int, char**)
-{
-    Display* display = XOpenDisplay(0);
-    int majorVersion;
-    int minorVersion;
-    (void)XCompositeQueryVersion(display, &majorVersion, &minorVersion);
-    XCloseDisplay(display);
-    return 0;
-}
diff --git a/Tools/qmake/config.tests/libXcomposite/libXcomposite.pro b/Tools/qmake/config.tests/libXcomposite/libXcomposite.pro
deleted file mode 100644
index 96c5c29..0000000
--- a/Tools/qmake/config.tests/libXcomposite/libXcomposite.pro
+++ /dev/null
@@ -1,3 +0,0 @@
-SOURCES = libXcomposite.cpp
-OBJECTS_DIR = obj
-LIBS += -lXcomposite -lX11
diff --git a/Tools/qmake/config.tests/libXrender/libXrender.cpp b/Tools/qmake/config.tests/libXrender/libXrender.cpp
deleted file mode 100644
index ae2455b..0000000
--- a/Tools/qmake/config.tests/libXrender/libXrender.cpp
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include <X11/extensions/Xrender.h>
-
-int main(int, char**)
-{
-    Display* display = XOpenDisplay(0);
-    int eventBasep;
-    int errorBasep;
-    if (!XRenderQueryExtension(display, &eventBasep, &errorBasep))
-        return -1;
-    return 0;
-}
-
diff --git a/Tools/qmake/config.tests/libXrender/libXrender.pro b/Tools/qmake/config.tests/libXrender/libXrender.pro
deleted file mode 100644
index b3cb1e4..0000000
--- a/Tools/qmake/config.tests/libXrender/libXrender.pro
+++ /dev/null
@@ -1,3 +0,0 @@
-SOURCES = libXrender.cpp
-OBJECTS_DIR = obj
-LIBS += -lXrender -lX11
diff --git a/Tools/qmake/config.tests/libwebp/libwebp.cpp b/Tools/qmake/config.tests/libwebp/libwebp.cpp
deleted file mode 100644
index 974603d..0000000
--- a/Tools/qmake/config.tests/libwebp/libwebp.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Copyright (C) Zoltan Horvath (zoltan@webkit.org) 2012 University of Szeged.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "webp/decode.h"
-
-int main(int, char**)
-{
-    WebPDecoderConfig config;
-    WebPInitDecoderConfig(&config);
-    return 0;
-}
diff --git a/Tools/qmake/config.tests/libwebp/libwebp.pro b/Tools/qmake/config.tests/libwebp/libwebp.pro
deleted file mode 100644
index 9257252..0000000
--- a/Tools/qmake/config.tests/libwebp/libwebp.pro
+++ /dev/null
@@ -1,3 +0,0 @@
-SOURCES = libwebp.cpp
-OBJECTS_DIR = obj
-LIBS += -lwebp
diff --git a/Tools/qmake/config.tests/libxml2/libxml2.cpp b/Tools/qmake/config.tests/libxml2/libxml2.cpp
deleted file mode 100644
index 2117b5b..0000000
--- a/Tools/qmake/config.tests/libxml2/libxml2.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Copyright (C) 2011 University of Szeged. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include <libxml/xmlreader.h>
-
-int main(int, char**)
-{
-    xmlTextReaderSetup(0, 0, 0, 0, 0);
-    return 0;
-}
-
diff --git a/Tools/qmake/config.tests/libxml2/libxml2.pro b/Tools/qmake/config.tests/libxml2/libxml2.pro
deleted file mode 100644
index bd72944..0000000
--- a/Tools/qmake/config.tests/libxml2/libxml2.pro
+++ /dev/null
@@ -1,9 +0,0 @@
-CONFIG -= qt
-SOURCES = libxml2.cpp
-mac {
-    INCLUDEPATH += /usr/include/libxml2
-    LIBS += -lxml2
-} else {
-    PKGCONFIG += libxml-2.0
-    CONFIG += link_pkgconfig
-}
diff --git a/Tools/qmake/config.tests/libxslt/libxslt.cpp b/Tools/qmake/config.tests/libxslt/libxslt.cpp
deleted file mode 100644
index a1dedb3..0000000
--- a/Tools/qmake/config.tests/libxslt/libxslt.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Copyright (C) 2011 University of Szeged. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include <libxslt/xsltutils.h>
-
-int main(int, char**)
-{
-    xslAddCall(0, 0);
-    return 0;
-}
-
diff --git a/Tools/qmake/config.tests/libxslt/libxslt.pro b/Tools/qmake/config.tests/libxslt/libxslt.pro
deleted file mode 100644
index 1943485..0000000
--- a/Tools/qmake/config.tests/libxslt/libxslt.pro
+++ /dev/null
@@ -1,9 +0,0 @@
-CONFIG -= qt
-SOURCES = libxslt.cpp
-mac {
-    INCLUDEPATH += /usr/include/libxslt /usr/include/libxml2
-    LIBS += -lxslt
-} else {
-    PKGCONFIG += libxslt
-    CONFIG += link_pkgconfig
-}
diff --git a/Tools/qmake/config.tests/libzlib/libzlib.cpp b/Tools/qmake/config.tests/libzlib/libzlib.cpp
deleted file mode 100644
index 6beab57..0000000
--- a/Tools/qmake/config.tests/libzlib/libzlib.cpp
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include <zlib.h>
-
-int main(int, char**)
-{
-    (void)zlibVersion();
-    return 0;
-}
diff --git a/Tools/qmake/config.tests/libzlib/libzlib.pro b/Tools/qmake/config.tests/libzlib/libzlib.pro
deleted file mode 100644
index 816a455..0000000
--- a/Tools/qmake/config.tests/libzlib/libzlib.pro
+++ /dev/null
@@ -1,3 +0,0 @@
-SOURCES = libzlib.cpp
-OBJECTS_DIR = obj
-LIBS += -lz
diff --git a/Tools/qmake/dump-features.pl b/Tools/qmake/dump-features.pl
deleted file mode 100644
index f026430..0000000
--- a/Tools/qmake/dump-features.pl
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/usr/bin/perl -w
-
-use strict;
-use warnings;
-
-use FeatureList;
-
-foreach my $feature (getFeatureOptionList())
-{
-    next if $feature->{'option'} eq 'system-malloc';
-
-    my $desc = $feature->{'desc'};
-    $desc =~ s/^Toggle\s//;
-    $desc =~ s/\ssupport$//;
-    $desc = ucfirst($desc);
-
-    $desc .= ' ' . '.' x (30 - length($desc));
-    $desc =~ s/\s/_/g;
-
-    my $define = $feature->{'define'};
-    $define =~ s/^ENABLE_//;
-    $define = lc($define);
-
-    $desc .= "=$define";
-
-    print "$desc "
-}
diff --git a/Tools/qmake/mkspecs/features/configure.prf b/Tools/qmake/mkspecs/features/configure.prf
deleted file mode 100644
index 66fcfd8..0000000
--- a/Tools/qmake/mkspecs/features/configure.prf
+++ /dev/null
@@ -1,272 +0,0 @@
-# -------------------------------------------------------------------
-# This file does basic 'configure' style checks to determine the
-# set of enable/use/have defines and their values.
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-# This file is read after .qmake.cache, but before command line options,
-# which means we might have a config from a previous build.
-
-load(features)
-load(configure)
-
-WEBKIT_TOOLS_CONFIG = \
-    build_drt \
-    build_wtr \
-    build_imagediff \
-    build_test_npapi \
-    build_testbrowser \
-    build_minibrowser \
-    build_qttestsupport
-
-defineTest(runConfigure) {
-    !webkit_configured:!print_defaults {
-        log($${EOL}Running configure tests...$${EOL}$${EOL})
-        QMAKE_CONFIG_TESTS_DIR = $$ROOT_WEBKIT_DIR/Tools/qmake/config.tests
-        CONFIG_TESTS = $$files($$QMAKE_CONFIG_TESTS_DIR/*.pro, true)
-        for(test, CONFIG_TESTS) {
-            test = $$basename(test)
-            test ~= s/\\.pro$//
-            qtCompileTest($$test)
-        }
-    } else {
-        CONFIG += skipped_config_tests
-
-        # Save and reset configuration from .qmake.cache, so that we can
-        # detect changes to the configuration and abort the build.
-        PREVIOUS_WEBKIT_CONFIG = $$WEBKIT_CONFIG
-        unset(WEBKIT_CONFIG)
-        export(PREVIOUS_WEBKIT_CONFIG)
-    }
-
-    # Running feature detection inside a function ensures that we only
-    # export WEBKIT_CONFIG, and don not mess up any other variables.
-    detectFeatures()
-
-    # Set up a base list of optional things to build, which we later on
-    # sanitize based on constraints of the platform.
-
-    WEBKIT_CONFIG += \
-        build_webkit1 \
-        build_webkit2 \
-        build_tests \
-        $$WEBKIT_TOOLS_CONFIG
-
-    # Sanatize WebKit1/WebKit2, as WebKit.pro uses these two options
-    # to determine which pro-files to include. The remaining sanitazion
-    # is done when finalizing configure.
-
-    !haveQtModule(widgets) {
-        CONFIGURE_WARNINGS += "Missing QtWidgets module, disabling WebKit1"
-        WEBKIT_CONFIG -= build_webkit1
-    }
-
-    # WebKit2 requires OpenGL TextureMapper, which requires 3D Graphics
-    !use?(3d_graphics): WEBKIT_CONFIG -= build_webkit2
-
-    export(CONFIG)
-    export(WEBKIT_CONFIG)
-    export(CONFIGURE_WARNINGS)
-}
-
-defineReplace(configEnabled) {
-    trueValue = $$2
-    isEmpty(trueValue): trueValue = yes
-
-    falseValue = $$3
-    isEmpty(falseValue): falseValue = no
-
-    $$1: return($$trueValue)
-    return($$falseValue)
-}
-
-# This is called from default_post, at which point we've also parsed
-# command line options
-defineTest(finalizeConfigure) {
-
-    # Sanitize clashing options
-    santizeFeatures()
-
-    # Sanitize build options
-    !haveQtModule(testlib) {
-        CONFIGURE_WARNINGS += "Missing QtTest module, disabling DumpRenderTree, WebKitTestRunner and tests"
-        WEBKIT_CONFIG -= build_drt build_wtr build_tests
-    }
-
-    win32|!enable?(NETSCAPE_PLUGIN_API): WEBKIT_CONFIG -= build_test_npapi
-
-    win* {
-        WEBKIT_CONFIG -= build_drt
-    }
-
-    production_build {
-        WEBKIT_CONFIG -= $$WEBKIT_TOOLS_CONFIG build_tests
-    }
-
-    print_defaults {
-        log(DEFINES: $$configDefines()$${EOL})
-        error(Done computing defaults)
-    }
-
-    # Sanity checks that would prevent us from building the whole project altogether.
-    !mac:!contains(QT_CONFIG,icu) {
-        addReasonForSkippingBuild("ICU is required. To build QtWebKit with Qt 5 you need to build Qt 5 with libICU support. Check for ICU support being mentioned in qtbase/config.summary.")
-    }
-    production_build:blackberry {
-        addReasonForSkippingBuild("Build not supported on BB10 yet.")
-    }
-    requiredPrograms = gperf python perl bison ruby flex
-    for(program, requiredPrograms): \
-        !programExistsInPath($$program): \
-            addReasonForSkippingBuild("Missing $$program from PATH")
-
-    # Detect changes to the configuration. Changes need a clean build.
-    webkit_configured {
-        added_features = $$WEBKIT_CONFIG
-        added_features -= $$PREVIOUS_WEBKIT_CONFIG
-
-        removed_features = $$PREVIOUS_WEBKIT_CONFIG
-        removed_features -= $$WEBKIT_CONFIG
-
-        !isEmpty(added_features)|!isEmpty(removed_features) {
-            CONFIG += configuration_changed
-        }
-    }
-
-    reconfigureMsg = \
-        "Reconfiguration likely requires a clean build. You$${QUOTE}ve been warned!" \
-        "You may execute $${QUOTE}make wipeclean$${QUOTE} to wipe the build directory."
-
-    # Add target for reconfiguring the build
-    reconfigure.target = reconfigure
-    double_quote = $$escape_expand(\")
-    reconfigure.commands = echo > .qmake.cache && $(MAKE) -f $(MAKEFILE) qmake $$EOC
-    reconfigure.commands += @echo $${double_quote}WARNING: $$join(reconfigureMsg,\\n,,)\\n$${double_quote}
-    QMAKE_EXTRA_TARGETS += reconfigure
-    export(reconfigure.target)
-    export(reconfigure.commands)
-    export(QMAKE_EXTRA_TARGETS)
-
-    # Add target for wiping clean the build
-    wipeclean.target = wipeclean
-    win_cmd_shell: wipeclean.commands = FOR /D %%p IN (*) DO rmdir "%%p" /s /q
-    else: wipeclean.commands = $(COPY_FILE) $(MAKEFILE) .$(MAKEFILE) && rm -Rf * && $(MOVE) .$(MAKEFILE) $(MAKEFILE)
-    QMAKE_EXTRA_TARGETS += wipeclean
-    export(wipeclean.target)
-    export(wipeclean.commands)
-    export(QMAKE_EXTRA_TARGETS)
-
-    # Print a prettified dump of the configuration, for easier debugging
-    !webkit_configured|configuration_changed|buildbot {
-
-        skipped_config_tests {
-            log($${EOL}Skipping configure tests. Execute $${QUOTE}make reconfigure$${QUOTE} to re-run.$${EOL})
-        }
-
-        leftoverConfig = $$WEBKIT_CONFIG
-
-        for(config, WEBKIT_CONFIG) {
-            match = $$find(config, "^build_")
-            !isEmpty(match) {
-                build += $$replace(match, ^build_,)
-                leftoverConfig -= $$config
-                next()
-            }
-            match = $$find(config, "^have_")
-            !isEmpty(match) {
-                have += $$replace(match, ^have_,)
-                leftoverConfig -= $$config
-                next()
-            }
-            match = $$find(config, "^use_")
-            !isEmpty(match) {
-                use += $$replace(match, ^use_,)
-                leftoverConfig -= $$config
-            }
-        }
-
-        scripts_dir = $$toSystemPath($$ROOT_WEBKIT_DIR/Tools/Scripts)
-        features = $$system(perl -I $${scripts_dir} -I $${scripts_dir}$${QMAKE_DIR_SEP}webkitperl $$toSystemPath($$ROOT_WEBKIT_DIR/Tools/qmake/dump-features.pl))
-        for(feature, features) {
-            parts = $$split(feature, =)
-            desc = $$member(parts, 0, 0)
-            desc ~= s/_/ /
-            value = $$member(parts, 1, 1)
-
-            contains(WEBKIT_CONFIG, $$value) {
-                leftoverConfig -= $$value
-                value = yes
-            } else {
-                value = no
-            }
-
-            featureConfiguration += "$$desc $$value$${EOL}"
-        }
-
-        log($${EOL}Final configuration:$${EOL}$${EOL})
-
-        debug: buildConfig += debug
-        release: buildConfig += release
-        buildConfig = $$join(buildConfig,/,,)
-        debug:release:debug_and_release:buildConfig += (combined)
-
-        log(Build ......................... $$build$${EOL})
-        log(Configuration ................. $$buildConfig$${EOL})
-        log(All-in-one files .............. $$configEnabled(use_all_in_one_files)$$EOL)
-        log(GNUmake ....................... $$configEnabled(GNUmake)$$EOL)
-        log(Static libs as shared ......... $$configEnabled(force_static_libs_as_shared)$$EOL)
-        log(Static libs as thin archives .. $$configEnabled(gnu_thin_archives)$$EOL)
-        log(Production build .............. $$configEnabled(production_build)$$EOL)
-        log($$EOL)
-
-        log(Have .......................... $$have$${EOL})
-        log(Use ........................... $$use$${EOL})
-        log(Features ...................... $${leftoverConfig}$${EOL})
-        log($$EOL)
-
-        for(feature, featureConfiguration) {
-            log($$feature)
-        }
-
-        !isEmpty(CONFIGURE_WARNINGS) {
-            log("$${EOL}Encountered $$size(CONFIGURE_WARNINGS) configuration warning(s):$${EOL}$${EOL}")
-            for(warn, CONFIGURE_WARNINGS) {
-                log(" ! $$warn$${EOL}")
-            }
-        }
-
-        !isEmpty(skipBuildReason) {
-            log("$${EOL}The WebKit build was disabled for the following reasons: $$skipBuildReason $${EOL}$${EOL}")
-            SUBDIRS=
-            export(SUBDIRS)
-        } else {
-            log("$${EOL}WebKit is now configured for building. Just run 'make'.$${EOL}$${EOL}")
-        }
-
-        configuration_changed {
-            log(WARNING: The configuration was changed since the last build:$${EOL}$${EOL})
-
-            !isEmpty(added_features): log($${TAB}Added feature(s): $${added_features}$${EOL})
-            !isEmpty(removed_features): log($${TAB}Removed feature(s): $${removed_features}$${EOL})
-
-            log($$join(reconfigureMsg,$${EOL},$${EOL},$${EOL}$${EOL}))
-        }
-    }
-
-    # Cache the result for all the other project files, and for
-    # the next build, so we can detect changes to the config.
-    !webkit_configured|configuration_changed {
-        !configuration_changed: cache(CONFIG, add, $$list(webkit_configured))
-
-        msg = "$${EOL}$${LITERAL_HASH} Configuration changed $$_DATE_"
-        write_file($$_QMAKE_CACHE_, msg, append)
-
-        !configuration_changed {
-            cache(WEBKIT_CONFIG, set, WEBKIT_CONFIG)
-        } else {
-            !isEmpty(added_features): cache(WEBKIT_CONFIG, add, added_features)
-            !isEmpty(removed_features): cache(WEBKIT_CONFIG, sub, removed_features)
-        }
-    }
-}
diff --git a/Tools/qmake/mkspecs/features/default_post.prf b/Tools/qmake/mkspecs/features/default_post.prf
deleted file mode 100644
index 6efb089..0000000
--- a/Tools/qmake/mkspecs/features/default_post.prf
+++ /dev/null
@@ -1,314 +0,0 @@
-# -------------------------------------------------------------------
-# QtWebKit defaults for qmake. These rules are parsed after the
-# actual project file.
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-# Flag that we're now done processing the project file. This allows
-# a feature to distinguish between being processed due to a load()
-# or include() and a CONFIG += feature.
-CONFIG += config_step
-
-# Enable dynamic instead of static libraries for development
-# Avoid it with debug_and_release, it can cause the application to load both the debug and release
-# dependent libraries when using frameworks on Mac.
-!production_build:!debug_and_release:!buildbot:!win*:!build?(webkit2): CONFIG += force_static_libs_as_shared
-
-# Don't create .prl files for intermediate libraries because their contents get used when linking against
-# them, breaking "-Wl,-whole-archive -lMyIntermediateLib --Wl,-no-whole-archive"
-staticlib: CONFIG -= create_prl
-
-root_project_file: finalizeConfigure()
-
-# Sanitize build config for single-configuration builds
-!debug|!release {
-    # Removing debug_and_release causes issues with lib suffixes when building debug on Windows.
-    # Work around it by only removing build_all, and still create the Makefiles for both configurations.
-    win32*: CONFIG -= build_all
-    else: CONFIG -= debug_and_release
-} else:debug_and_release {
-    # Only build a single instance of each application
-    contains(TEMPLATE, app):!force_build_all {
-        CONFIG -= build_all
-    }
-}
-
-# General default build tweaks
-DEFINES += \
-    BUILDING_QT__=1
-
-CONFIG(release, debug|release): DEFINES *= NDEBUG
-
-DEFINES += $$configDefines()
-
-INCLUDEPATH += \
-    $${ROOT_WEBKIT_DIR}/Source \
-    $${ROOT_BUILD_DIR}/Source/include \
-    $${QT.script.includes}
-
-CONFIG -= warn_on
-
-!compiling_thirdparty_code:*-g++*: QMAKE_CXXFLAGS = \
-    -Wall \
-    -Wextra \
-    -Wreturn-type \
-    -fno-strict-aliasing \
-    -Wchar-subscripts \
-    -Wformat-security \
-    -Wreturn-type \
-    -Wno-unused-parameter \
-    -Wno-sign-compare \
-    -Wno-switch \
-    -Wno-switch-enum \
-    -Wundef \
-    -Wmissing-noreturn \
-    -Winit-self \
-    $$QMAKE_CXXFLAGS
-
-# Template configurations
-contains(TEMPLATE, derived) {
-    # A (mostly) no-op template
-    TEMPLATE = aux
-
-    # Trick qmake into not generating a default $(DEL_FILE) rule
-    CONFIG += compile_libtool
-
-    CONFIG -= debug_and_release
-
-    fake_debug.target = debug
-    fake_debug.depends = first
-    QMAKE_EXTRA_TARGETS += fake_debug
-    fake_release.target = release
-    fake_release.depends = first
-    QMAKE_EXTRA_TARGETS += fake_release
-
-    # A lot of our code generators require GNU tools, readily available
-    # on Linux and Mac OS X. On Windows we do have a convenience copy in
-    # Qt5's top-level repository, so let's add that to the PATH if we can
-    # find it.
-    win32 {
-        GNUTOOLS_DIR=$$[QT_HOST_DATA]/../gnuwin32/bin
-        exists($$GNUTOOLS_DIR/gperf.exe) {
-            GNUTOOLS = "(set $$escape_expand(\\\")PATH=$$toSystemPath($$GNUTOOLS_DIR);%PATH%$$escape_expand(\\\"))"
-        }
-    }
-
-    for(generator, GENERATORS) {
-        eval($${generator}.CONFIG = target_predeps no_link)
-        eval($${generator}.dependency_type = TYPE_C)
-
-        isEmpty($${generator}.output_function) {
-            prependEach($${generator}.output, $${GENERATED_SOURCES_DESTDIR}/)
-        }
-
-        script = $$eval($${generator}.script)
-        eval($${generator}.depends += $$script)
-
-        commands = $$eval($${generator}.commands)
-        !isEmpty(commands):!isEmpty(GNUTOOLS) {
-            eval($${generator}.commands = $${GNUTOOLS} && $$val_escape($${generator}.commands))
-        }
-
-        !isEmpty($${generator}.input) {
-            # Compiler-style generator
-            QMAKE_EXTRA_COMPILERS += $$generator
-            DEFAULT_TARGETS += compiler_$${generator}_make_all
-        } else {
-            # Regular target generator
-            QMAKE_EXTRA_TARGETS += $$generator
-            DEFAULT_TARGETS += $$generator
-        }
-    }
-} else {
-    # Make sure the generated sources are compiled as well
-    for(generator, GENERATORS) {
-        prependEach($${generator}.extra_sources, $${GENERATED_SOURCES_DESTDIR}/)
-        SOURCES += $$eval($${generator}.extra_sources)
-
-        isEqual($${generator}.add_output_to_sources, false): next()
-
-        output = $$eval($${generator}.output)
-        input = $$eval($${generator}.input)
-        input_files = $$eval($$input)
-        output_variable = $$eval($${generator}.variable_out)
-        isEmpty(output_variable): output_variable = SOURCES
-
-        isEmpty($${generator}.output_function) {
-            prependEach(output, $${GENERATED_SOURCES_DESTDIR}/)
-
-            for(input_file, input_files) {
-                base = $$basename(input_file)
-                base ~= s/\\..+//
-                output_file = $$replace(output,\\$\\{QMAKE_FILE_BASE\\}, $$base)
-
-                eval($$output_variable += $$output_file)
-            }
-        } else {
-            function = $$eval($${generator}.output_function)
-            for(input_file, input_files) {
-                eval(output_file = \$\$$$function\($$input_file\))
-                eval($$output_variable += $$output_file)
-            }
-        }
-    }
-}
-
-contains(QT, webkit)|contains(QT, webkitwidgets) {
-    # In addition to the main shared QtWebKit library we also
-    # need to link to any intermediate shared libraries.
-    force_static_libs_as_shared {
-        WEBKIT += wtf javascriptcore webcore
-        build?(webkit1): WEBKIT += webkit1
-        build?(webkit2): WEBKIT += webkit2
-    }
-
-    # FIXME: Replace this with putting the intermediate libraries in the prl file
-}
-
-defineTest(needToLink) {
-    # The main dynamic library always needs to link in the intermediate libraries
-    creating_module: return(true)
-
-    force_static_libs_as_shared {
-        # So do the individual libraries if they are dynamic
-        contains(libraries, $$TARGET): return(true)
-
-        # Or anything that uses QtWebKit in this special config
-        contains(QT, webkit): return(true)
-    }
-
-    # Lastly, we allow apps (jsc) to link directly to the intermediate
-    # libraries intead of using the exported symbols from QtWebKit.
-    contains(TEMPLATE, app):!contains(QT, webkit):!contains(QT, webkitwidgets): return(true)
-
-    # Anything else should just get include paths, etc, not link
-    return(false)
-}
-
-# Make sure we have loaded the relevant modules, so the include paths,
-# etc, are correct, and we can use WEBKIT.foo.dependent_libs below.
-load(webkit_modules)
-
-# We might need to link against the WebKit intermediate libraries
-needToLink() {
-    for(library, WEBKIT) {
-        library_identifier = $$lower($$library)
-        linkAgainstLibrary($$library, $$eval(WEBKIT.$${library_identifier}.root_source_dir))
-        LIBS += $$eval(WEBKIT.$${library_identifier}.dependent_libs)
-    }
-}
-
-creating_module {
-    # Sanitize LIBS, as we don't want any of these libraries
-    # to end up in as public API dependenices in the QtWebKit prl file.
-    LIBS_PRIVATE += $$LIBS
-    unset(LIBS)
-    # Copy Qt module dependencies from QT to QT_PRIVATE to ensure the
-    # Qt libraries are linked after the private static libraries that
-    # depend on them
-    QT_PRIVATE += $$QT
-}
-
-equals(_PRO_FILE_, $${ROOT_WEBKIT_DIR}/WebKit.pro):!isEmpty(OVERRIDE_SUBDIRS) {
-    # The root WebKit project file is the only one that allows
-    # you to pass a set of subtargets on the comand line.
-    SUBDIRS = $$OVERRIDE_SUBDIRS
-}
-
-# Remove subdirs that do not exist
-for(subdir, SUBDIRS) {
-    path = $$eval($${subdir}.file)
-    isEmpty(path): path = $$eval($${subdir}.subdir)
-    isEmpty(path): path = $${subdir}
-    !exists($${_PRO_FILE_PWD_}$${QMAKE_DIR_SEP}$${path}) {
-        #message(Removing invalid subtarget $${subdir} $${path})
-        #SUBDIRS -= $${subdir}
-    }
-}
-
-root_project_file {
-    # Tweak documentation rules so that we only get documentation
-    # for the QtWebKit subdir, which means we don't have to run
-    # qmake_all and generate all the derived sources, just to
-    # build documentation.
-    previous_subdir =
-    doc_targets = docs install_docs uninstall_docs prepare_docs generate_docs
-    for(subdir, SUBDIRS) {
-        equals(subdir, QtWebKit) {
-            for(doc_target, doc_targets) {
-                # Since we use CONFIG += ordered, we need to provide a fake dummy
-                # doc-target for the immediate dependency of the QtWebKit target.
-                dummy_target = sub-$$replace($${previous_subdir}.file, [^a-zA-Z0-9_], -)-$${doc_target}_ordered
-                $${dummy_target}.target = $${dummy_target}
-                QMAKE_EXTRA_TARGETS += $${dummy_target}
-            }
-        } else {
-            previous_subdir = $$subdir # Save for later
-
-            # For all the other subdirs, we disable docs the regular way
-            for(doc_target, doc_targets): $${subdir}.CONFIG += no_$${doc_target}_target
-        }
-    }
-}
-
-incremental.target = incremental
-incremental.commands = $(MAKE) -f $(MAKEFILE) qmake_all && $(MAKE) -f $(MAKEFILE)
-QMAKE_EXTRA_TARGETS += incremental
-
-contains(TEMPLATE, lib) {
-    # Triggers the right export macros for WebKit internals
-    DEFINES += BUILDING_$${TARGET}
-
-    # Triggers the right export macro for the QtWebKit API (see qwebkitglobal.h)
-    !contains(QT, webkit)|equals(MODULE, webkitwidgets): DEFINES += BUILDING_WEBKIT
-
-    # Prevent name clashes when building both debug and release. Qt5's module
-    # system already takes care of this for the top level QtWebKit library.
-    !qt_install_module:debug_and_release: TARGET = $$qtLibraryTarget($$TARGET)
-
-    gnu_thin_archives {
-        # Replace the hardcoded archiver command line
-        # options to use GNU ar's thin archive format.
-        AR_COMMAND = $$split(QMAKE_AR, " ")
-        QMAKE_AR = $$member(AR_COMMAND, 0) cruT
-    }
-
-    isEmpty(DESTDIR): DESTDIR = $$targetSubDir()
-
-    DEFINES += QT_ASCII_CAST_WARNINGS
-
-    !plugin {
-        contains(QT_CONFIG, reduce_exports):CONFIG += hide_symbols
-        unix:contains(QT_CONFIG, reduce_relocations):CONFIG += bsymbolic_functions
-    }
-}
-
-# Remove duplicated sources
-SOURCES = $$unique(SOURCES)
-OBJECTIVE_SOURCES = $$unique(OBJECTIVE_SOURCES)
-
-# Someone might remove a header from the tree without touching
-# the corresponding project file, for example if the project
-# file never had the header in HEADERS. In that case we don't
-# want warnings from make about "No rule to make target".
-ignore_missing_headers.target = %.h
-ignore_missing_headers.commands = $${MAKEFILE_NOOP_COMMAND}
-QMAKE_EXTRA_TARGETS += ignore_missing_headers
-
-# Override default target
-build_pass:build_all:default_target.target = all
-else: default_target.target = first
-for(target, $$list($$unique(DEFAULT_TARGETS))) {
-    default_target.depends += $$target
-}
-!isEmpty(default_target.depends): QMAKE_EXTRA_TARGETS += default_target
-
-# Qt's debug_and_release config will replace every occurance of
-# Release or Debug in the destination dir. This fails when the
-# desination dir is absolute and contains a static path component
-# that also contains either of those two words, so we make DESTDIR
-# relative.
-DESTDIR = $$replace(DESTDIR, ^$$re_escape($${ROOT_BUILD_DIR}), $${BUILD_ROOT_RELATIVE_TO_OUT_PWD})
-
-load(default_post) # Load Qt's defaults
diff --git a/Tools/qmake/mkspecs/features/default_pre.prf b/Tools/qmake/mkspecs/features/default_pre.prf
deleted file mode 100644
index 5bae7dc..0000000
--- a/Tools/qmake/mkspecs/features/default_pre.prf
+++ /dev/null
@@ -1,109 +0,0 @@
-# -------------------------------------------------------------------
-# QtWebKit defaults for qmake. These rules are parsed before the
-# actual project file.
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-# Allow environment tweaks to pre-loaded .qmake.cache content
-env_cache = $$(QMAKE_CACHE_EVAL)
-eval($$env_cache)
-
-load(functions)
-
-# FIXME: In this case we probably want to exit early so that we
-# don't load all of the custom build tweaks needlessly.
-pro_file = $$_PRO_FILE_ # Checking the variable directly does not work
-isEmpty(pro_file): CONFIG += recursive_include
-
-# Resolve root directories for source and build
-ROOT_WEBKIT_DIR = $$replace(PWD, /Tools/qmake/mkspecs/features$,)
-WEBKIT_SUBDIR = $$replace(_PRO_FILE_PWD_, $$re_escape($${ROOT_WEBKIT_DIR}),)
-ROOT_BUILD_DIR = $$replace(OUT_PWD, $$re_escape($${WEBKIT_SUBDIR})$,)
-
-# Now we're ready to load default_pre from Qt
-load(default_pre)
-
-equals(OUT_PWD, $${ROOT_BUILD_DIR}) {
-    !recursive_include:CONFIG += root_project_file
-    BUILD_ROOT_RELATIVE_TO_OUT_PWD = .
-} else {
-    subdir_parts = $$replace(OUT_PWD, ^$$re_escape($${ROOT_BUILD_DIR})/,)
-    subdir_parts = $$split(subdir_parts, /)
-    for(subdir, subdir_parts) {
-        BUILD_ROOT_RELATIVE_TO_OUT_PWD += ..
-    }
-    BUILD_ROOT_RELATIVE_TO_OUT_PWD = $$join(BUILD_ROOT_RELATIVE_TO_OUT_PWD, /)
-}
-
-# Try to detect if we're running under Windows cmd.exe or not
-win32* {
-    pwd = $$(PWD) # Normally empty for cmd.exe
-    pwd_starts_with_slash = $$find(pwd, ^/)
-    isEmpty(pwd_starts_with_slash): CONFIG += win_cmd_shell
-}
-
-# Default location of generated sources
-GENERATED_SOURCES_DESTDIR = generated
-
-QUOTE = ""
-DOUBLE_ESCAPED_QUOTE = ""
-ESCAPE = ""
-win_cmd_shell {
-    ESCAPE = "^"
-} else {
-    QUOTE = "\'"
-    DOUBLE_ESCAPED_QUOTE = "\\\'"
-}
-EOL = $$escape_expand(\\n)
-EOC = $$escape_expand(\\n\\t)
-TAB = $$escape_expand(\\t)
-
-MAKEFILE_NOOP_COMMAND = @echo -n
-win32-msvc*: MAKEFILE_NOOP_COMMAND = @echo >NUL
-
-# Set up a default python version
-scratchbox: PYTHON = python2.6
-else: PYTHON = python
-
-# Run configure before making decisions that depend on the result
-root_project_file {
-    load(configure)
-    runConfigure()
-}
-
-unix:config_gccdepends {
-    # We have a compiler that supports the -MD option (and neither
-    # teambuilder nor icecream is messing up the .d file output).
-    CONFIG += GNUmake gcc_MD_depends
-}
-
-# We use private_tests to detect developer build, since the destdir will
-# always be our webkit build dir. This might change as configure changes.
-contains(QT_CONFIG, private_tests): CONFIG += qt_developer_build
-
-# Set some defaults for specific platforms
-CONFIG += include_webinspector
-
-# Make sure we process the PKGCONFIG variable if applicable
-!mac: CONFIG += link_pkgconfig
-
-# By default we enable "production build", and build-webkit, which is
-# used by bots and developers, will disable it, to enable warnings etc.
-CONFIG += production_build
-
-!debug_and_release:*-g++*: CONFIG += gnu_thin_archives
-
-# Pick up Qt's defaults for debug/release/debug_and_release
-if(win32|mac):!macx-xcode {
-    contains(QT_CONFIG, debug_and_release): CONFIG += debug_and_release
-    contains(QT_CONFIG, build_all): CONFIG += build_all
-}
-
-# A newer version of flex is required on Windows. At the moment the only
-# one that appears to provide binaries and is not cygwin is winflex.
-FLEX = flex
-win32: FLEX = win_flex
-
-BIN_EXTENSION =
-win32: BIN_EXTENSION = .exe
diff --git a/Tools/qmake/mkspecs/features/features.prf b/Tools/qmake/mkspecs/features/features.prf
deleted file mode 100644
index 86ed06f..0000000
--- a/Tools/qmake/mkspecs/features/features.prf
+++ /dev/null
@@ -1,183 +0,0 @@
-# -------------------------------------------------------------------
-# This file does basic 'configure' style checks to determine the
-# set of enable/use/have defines and their values.
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-defineTest(detectFeatures) {
-
-    # -------------- Fill in static defaults --------------
-
-    include(features.pri)
-
-    for(feature, FEATURE_DEFAULTS) {
-        enabledFeature = $$find(feature, =1$)
-        !isEmpty(enabledFeature) {
-        line ~= s/^.+include \"(.*)\"/\\1/
-            enabledFeature ~= s/=1$//
-            enabledFeature ~= s/^ENABLE_//
-            WEBKIT_CONFIG += $$lower($$enabledFeature)
-        }
-    }
-
-    WEBKIT_CONFIG += use_tiled_backing_store
-
-    # ------------- Prepare for feature detection -------------
-
-    # ---------- Dynamically detect optional features -------------
-    #
-    # Please note: static feature defaults go in features.pri
-    #
-
-    haveQtModule(quick): WEBKIT_CONFIG += have_qtquick
-    else: CONFIGURE_WARNINGS += "QtQuick module not found, QML APIs will not be built"
-
-    haveQtModule(printsupport): WEBKIT_CONFIG += have_qtprintsupport
-    haveQtModule(widgets): WEBKIT_CONFIG += have_qstyle
-    haveQtModule(testlib): WEBKIT_CONFIG += have_qttestlib
-    haveQtModule(location): WEBKIT_CONFIG += have_qtlocation
-    haveQtModule(sensors): WEBKIT_CONFIG += have_qtsensors
-
-    config_libxml2: WEBKIT_CONFIG += use_libxml2
-    config_libxslt: WEBKIT_CONFIG += xslt
-    config_libzlib: WEBKIT_CONFIG += use_zlib
-    config_libwebp: WEBKIT_CONFIG += use_webp
-
-    # We can't use Qt's 3rdparty sources for libjpeg and libpng outside of qtbase, but if Qt
-    # is using the system libraries, use them to take advantage of the WebCore image decoders as well.
-    contains(QT_CONFIG, system-jpeg): WEBKIT_CONFIG += use_libjpeg
-    else: CONFIGURE_WARNINGS += "JPEG library not found, QImageDecoder will decode JPEG images"
-
-    contains(QT_CONFIG, system-png): WEBKIT_CONFIG += use_libpng
-    else: CONFIGURE_WARNINGS += "PNG library not found, QImageDecoder will decode PNG images"
-
-    linux-* {
-        config_libXcomposite: WEBKIT_CONFIG += have_xcomposite
-        config_libXrender: WEBKIT_CONFIG += have_xrender
-
-        config_glx:!contains(QT_CONFIG, opengles2): WEBKIT_CONFIG += have_glx
-
-        # We need fontconfig to set up the test fonts for DumpRenderTree and WebKitTestRunner.
-        config_fontconfig: WEBKIT_CONFIG += have_fontconfig
-    }
-
-    # Nescape plugins support (NPAPI)
-    xlibAvailable() {
-        WEBKIT_CONFIG += \
-            netscape_plugin_api \
-            use_plugin_backend_xlib
-
-        # WebKit2
-        WEBKIT_CONFIG += \
-            plugin_architecture_x11 \
-            plugin_process
-
-    } else: unix|win32-*:!embedded:!wince* {
-        WEBKIT_CONFIG += netscape_plugin_api
-        # WebKit2
-        WEBKIT_CONFIG += plugin_architecture_unsupported
-    } else {
-        WEBKIT_CONFIG += plugin_architecture_unsupported
-    }
-
-    # Enable the USE(3D_GRAPHICS) flag when QtOpenGL is enabled.
-    # Disable on Windows CE for now, as ANGLE won't compile.
-    !wince*:contains(QT_CONFIG, opengl) {
-        # On Windows we require GLES2/EGL through ANGLE.
-        !win32|contains(QT_CONFIG, opengles2): WEBKIT_CONFIG += use_3d_graphics
-    }
-
-    # Temporarily disable FTPDIR on Windows CE (missing functions from time.h)
-    wince* {
-        WEBKIT_CONFIG -= ftpdir
-    }
-
-    # WebGL support - only enabled if we can use 3D graphics
-    use?(3d_graphics): WEBKIT_CONFIG += webgl
-
-    # Enable CSS shaders when CSS filters and WebGL are enabled
-    enable?(css_filters):enable?(webgl): WEBKIT_CONFIG += css_shaders
-
-    # Geolocation support if QtLocation exists or if we're doing a developer build (Mock implementation exists
-    # and used for layout tests)
-    have?(qtlocation)|!production_build: WEBKIT_CONFIG += geolocation
-
-    # Orientation support if QtSensors exists or if we're doing a developer build (Mock implementation exists
-    # and used for layout tests)
-    have?(qtsensors)|!production_build: WEBKIT_CONFIG += orientation_events device_orientation
-
-    # HTML5 Media Support
-    mac {
-        DARWIN_VERSION = $$split(QMAKE_HOST.version, ".")
-        DARWIN_MAJOR_VERSION = $$first(DARWIN_VERSION)
-        # QTKIT support requires 10.7 or newer
-        greaterThan(DARWIN_MAJOR_VERSION, 10) {
-            WEBKIT_CONFIG += video use_qtkit
-        }
-
-    } else: linux-* {
-        !contains(QT_CONFIG, no-pkg-config):packagesExist("glib-2.0 gio-2.0 gstreamer-1.0 gstreamer-plugins-base-1.0") {
-            WEBKIT_CONFIG += video use_gstreamer
-        } else:!contains(QT_CONFIG, no-pkg-config):packagesExist("glib-2.0 gio-2.0 \'gstreamer-0.10 >= 0.10.30\' \'gstreamer-plugins-base-0.10 >= 0.10.30\'") {
-            WEBKIT_CONFIG += video use_gstreamer use_gstreamer010
-        } else {
-            CONFIGURE_WARNINGS += "Missing GLib/Gio/GStreamer, disabling media element support"
-        }
-    } else: haveQtModule(multimediawidgets) {
-        WEBKIT_CONFIG += video use_qt_multimedia
-    }
-
-    # Try to use an system wide SQlite installation
-    if(!contains(QT_CONFIG, no-pkg-config):packagesExist("sqlite3"))|mac {
-        WEBKIT_CONFIG += have_sqlite3
-    } else {
-        SQLITE3SRCDIR = $$(SQLITE3SRCDIR)
-        isEmpty(SQLITE3SRCDIR):isEmpty(_QMAKE_SUPER_CACHE_): error("WebKit requires SQLite. Either make it available via pkg-config, set $SQLITE3SRCDIR or build WebKit under qt5.git.")
-    }
-
-    # Gamepad API Support
-    packagesExist(libudev): WEBKIT_CONFIG += gamepad
-
-    # Support for Graphics Surface
-    # GraphicsSurface requires GraphicsContext3D and hence use_3d_graphics
-    use?(3d_graphics) {
-        mac: WEBKIT_CONFIG += use_graphics_surface
-        win32:contains(QT_CONFIG, opengles2): WEBKIT_CONFIG += use_graphics_surface
-        linux-*:contains(WEBKIT_CONFIG, have_glx):contains(WEBKIT_CONFIG, have_xcomposite):contains(WEBKIT_CONFIG, have_xrender): WEBKIT_CONFIG += use_graphics_surface use_glx
-    }
-
-    # Slider Touch is sensible to use when compiling WebKit2
-    enable?(touch_events): WEBKIT_CONFIG += touch_slider
-
-
-    # Minibrowser must be able to query for QtTestSupport
-    build?(qttestsupport): WEBKIT_CONFIG += have_qttestsupport
-
-    # ---------------- Sanitize features -------------------
-
-    export(WEBKIT_CONFIG)
-    export(CONFIGURE_WARNINGS)
-}
-
-defineTest(santizeFeatures) {
-    # Disable SVG fonts if SVG is disabled
-    !enable?(svg): WEBKIT_CONFIG -= svg_fonts
-
-    # JavaScript debugger requires the inspector
-    !enable?(inspector): WEBKIT_CONFIG -= javascript_debugger inspector_server
-
-    # Disable animated smooth scrolling if request-animation-frame is disabled
-    !enable?(request_animation_frame): WEBKIT_CONFIG -= smooth_scrolling
-
-    # Fullscreen API relies on WebKit2
-    !build?(webkit2): WEBKIT_CONFIG -= fullscreen_api
-
-    # WK2's plugin process code requires NPAPI
-    !enable?(netscape_plugin_api): WEBKIT_CONFIG -= plugin_process
-
-    # Web Audio requires GStreamer.
-    !use?(gstreamer): WEBKIT_CONFIG -= web_audio
-
-    export(WEBKIT_CONFIG)
-}
diff --git a/Tools/qmake/mkspecs/features/features.pri b/Tools/qmake/mkspecs/features/features.pri
deleted file mode 100644
index 3c4f3da..0000000
--- a/Tools/qmake/mkspecs/features/features.pri
+++ /dev/null
@@ -1,128 +0,0 @@
-# -------------------------------------------------------------------
-# This file contains a static list of default values for all the
-# ENABLE_FOO features of WebKit.
-#
-# If a feature is enabled, it most likely does not have any detection
-# in features.prf except basic sanitazion. If a feature is disabled it
-# will have detection in features.prf, unless it's something we
-# completely disable.
-#
-# FIXME: Add warning about auto-generating when Features.py land
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-FEATURE_DEFAULTS = \
-    ENABLE_3D_RENDERING=1 \
-    ENABLE_ACCELERATED_2D_CANVAS=0 \
-    ENABLE_BATTERY_STATUS=0 \
-    ENABLE_BLOB=1 \
-    ENABLE_CANVAS_PATH=1 \
-    ENABLE_CANVAS_PROXY=0 \
-    ENABLE_CHANNEL_MESSAGING=1 \
-    ENABLE_CSP_NEXT=0 \
-    ENABLE_CSS_BOX_DECORATION_BREAK=1 \
-    ENABLE_CSS_COMPOSITING=1 \
-    ENABLE_CSS_EXCLUSIONS=1 \
-    ENABLE_CSS_FILTERS=1 \
-    ENABLE_CSS_GRID_LAYOUT=0 \
-    ENABLE_CSS_HIERARCHIES=0 \
-    ENABLE_CSS_IMAGE_ORIENTATION=0 \
-    ENABLE_CSS_IMAGE_RESOLUTION=0 \
-    ENABLE_CSS_IMAGE_SET=1 \
-    ENABLE_CSS_REGIONS=1 \
-    ENABLE_CSS_SHADERS=0 \
-    ENABLE_CSS_STICKY_POSITION=1 \
-    ENABLE_CSS_TRANSFORMS_ANIMATIONS_UNPREFIXED=1 \
-    ENABLE_CSS_VARIABLES=0 \
-    ENABLE_CSS3_CONDITIONAL_RULES=0 \
-    ENABLE_CSS3_TEXT=0 \
-    ENABLE_CSS3_TEXT_LINE_BREAK=0 \
-    ENABLE_DASHBOARD_SUPPORT=0 \
-    ENABLE_DATAGRID=0 \
-    ENABLE_DATALIST_ELEMENT=1 \
-    ENABLE_DATA_TRANSFER_ITEMS=0 \
-    ENABLE_DETAILS_ELEMENT=1 \
-    ENABLE_DEVICE_ORIENTATION=0 \
-    ENABLE_DIRECTORY_UPLOAD=0 \
-    ENABLE_DOWNLOAD_ATTRIBUTE=0 \
-    ENABLE_FAST_MOBILE_SCROLLING=1 \
-    ENABLE_FILE_SYSTEM=0 \
-    ENABLE_FILTERS=1 \
-    ENABLE_FONT_LOAD_EVENTS=0 \
-    ENABLE_FTPDIR=1 \
-    ENABLE_FULLSCREEN_API=1 \
-    ENABLE_GAMEPAD=0 \
-    ENABLE_GEOLOCATION=0 \
-    ENABLE_GESTURE_EVENTS=1 \
-    ENABLE_HIGH_DPI_CANVAS=0 \
-    ENABLE_ICONDATABASE=1 \
-    ENABLE_IFRAME_SEAMLESS=1 \
-    ENABLE_INDEXED_DATABASE=0 \
-    ENABLE_INPUT_SPEECH=0 \
-    ENABLE_INPUT_TYPE_COLOR=1 \
-    ENABLE_INPUT_TYPE_DATE=0 \
-    ENABLE_INPUT_TYPE_DATETIME=0 \
-    ENABLE_INPUT_TYPE_DATETIMELOCAL=0 \
-    ENABLE_INPUT_TYPE_MONTH=0 \
-    ENABLE_INPUT_TYPE_TIME=0 \
-    ENABLE_INPUT_TYPE_WEEK=0 \
-    ENABLE_INSPECTOR=1 \
-    ENABLE_INSPECTOR_SERVER=1 \
-    ENABLE_JAVASCRIPT_DEBUGGER=1 \
-    ENABLE_LEGACY_CSS_VENDOR_PREFIXES=0 \
-    ENABLE_LEGACY_NOTIFICATIONS=1 \
-    ENABLE_LEGACY_VIEWPORT_ADAPTION=1 \
-    ENABLE_LEGACY_VENDOR_PREFIXES=1 \
-    ENABLE_LEGACY_WEB_AUDIO=1 \
-    ENABLE_LINK_PREFETCH=1 \
-    ENABLE_LINK_PRERENDER=0 \
-    ENABLE_MATHML=0 \
-    ENABLE_MEDIA_SOURCE=0 \
-    ENABLE_MEDIA_STATISTICS=0 \
-    ENABLE_MEDIA_STREAM=0 \
-    ENABLE_METER_ELEMENT=1 \
-    ENABLE_MHTML=1 \
-    ENABLE_MICRODATA=0 \
-    ENABLE_MOUSE_CURSOR_SCALE=0 \
-    ENABLE_NAVIGATOR_CONTENT_UTILS=0 \
-    ENABLE_NETSCAPE_PLUGIN_API=0 \
-    ENABLE_NETWORK_INFO=0 \
-    ENABLE_NOSNIFF=0 \
-    ENABLE_NOTIFICATIONS=1 \
-    ENABLE_ORIENTATION_EVENTS=0 \
-    ENABLE_PAGE_VISIBILITY_API=1 \
-    ENABLE_PROGRESS_ELEMENT=1 \
-    ENABLE_PROXIMITY_EVENTS=0 \
-    ENABLE_QUOTA=0 \
-    ENABLE_RESOLUTION_MEDIA_QUERY=1 \
-    ENABLE_RESOURCE_TIMING=0 \
-    ENABLE_REQUEST_ANIMATION_FRAME=1 \
-    ENABLE_SCRIPTED_SPEECH=0 \
-    ENABLE_SHADOW_DOM=0 \
-    ENABLE_SHARED_WORKERS=1 \
-    ENABLE_SMOOTH_SCROLLING=1 \
-    ENABLE_SQL_DATABASE=1 \
-    ENABLE_STYLE_SCOPED=0 \
-    ENABLE_SVG=1 \
-    ENABLE_SVG_DOM_OBJC_BINDINGS=0 \
-    ENABLE_SVG_FONTS=1 \
-    ENABLE_TEMPLATE_ELEMENT=0 \
-    ENABLE_TEXT_AUTOSIZING=0 \
-    ENABLE_TEXT_NOTIFICATIONS_ONLY=0 \
-    ENABLE_THREADED_HTML_PARSER=0 \
-    ENABLE_TOUCH_ADJUSTMENT=1 \
-    ENABLE_TOUCH_EVENTS=1 \
-    ENABLE_TOUCH_ICON_LOADING=0 \
-    ENABLE_USER_TIMING=0 \
-    ENABLE_VIBRATION=0 \
-    ENABLE_VIDEO=0 \
-    ENABLE_VIDEO_TRACK=0 \
-    ENABLE_VIEW_MODE_CSS_MEDIA=1 \
-    ENABLE_WEBGL=0 \
-    ENABLE_WEB_AUDIO=0 \
-    ENABLE_WEB_SOCKETS=1 \
-    ENABLE_WEB_TIMING=1 \
-    ENABLE_WORKERS=1 \
-    ENABLE_XHR_TIMEOUT=1 \
-    ENABLE_XSLT=0 \
diff --git a/Tools/qmake/mkspecs/features/force_static_libs_as_shared.prf b/Tools/qmake/mkspecs/features/force_static_libs_as_shared.prf
deleted file mode 100644
index c337cda..0000000
--- a/Tools/qmake/mkspecs/features/force_static_libs_as_shared.prf
+++ /dev/null
@@ -1,22 +0,0 @@
-# -------------------------------------------------------------------
-# Feature to allow speeding up link times for debug builds by avoiding
-# re-linking the static libraries into the one big shared library.
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-contains(TEMPLATE, lib) {
-    contains(CONFIG, staticlib) {
-        CONFIG -= hide_symbols
-        CONFIG -= staticlib
-        CONFIG += rpath
-        QMAKE_CXXFLAGS -= $$QMAKE_CXXFLAGS_HIDESYMS
-        QMAKE_CFLAGS -= $$QMAKE_CFLAGS_HIDESYMS
-        QMAKE_LFLAGS -= $$QMAKE_LFLAGS_HIDESYMS
-        QMAKE_OBJECTIVE_CFLAGS -= $$QMAKE_OBJECTIVE_CFLAGS_HIDESYMS
-        DESTDIR = $${ROOT_BUILD_DIR}/lib
-
-        # Ensure the install-name of the libraries are correct on Mac OS
-        macx: QMAKE_LFLAGS_SONAME = $$QMAKE_LFLAGS_SONAME$${DESTDIR}/
-    }
-}
diff --git a/Tools/qmake/mkspecs/features/functions.prf b/Tools/qmake/mkspecs/features/functions.prf
deleted file mode 100644
index 10a9764..0000000
--- a/Tools/qmake/mkspecs/features/functions.prf
+++ /dev/null
@@ -1,400 +0,0 @@
-# -------------------------------------------------------------------
-# This file defines a few useful functions that are exposed to the
-# real project files.
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-defineReplace(toSanitizedPath) {
-    path = $$1
-    win32-msvc*|wince* {
-        components = $$split(path, :)
-        count(components, 2): path = $$lower($$first(components)):$$last(components)
-        return($$replace(path, \\\\, /))
-    } else {
-        return($$path)
-    }
-}
-
-defineReplace(toSystemPath) {
-    return($$replace(1, [/\\\\], $${QMAKE_DIR_SEP}))
-}
-
-defineReplace(toEvaluatablePath) {
-    return($$replace(1, \\\\, \\\\\\\\))
-}
-
-defineReplace(targetSubDir) {
-    # The paths to the elements of the thin archive are stored
-    # relative to the archive itself, thus we have to prevent
-    # qmake from moving the archive after creation.
-    gnu_thin_archives: return()
-    else: CONFIG(debug, debug|release): return(debug)
-    else: return(release)
-}
-
-defineReplace(computeSubdirVariables) {
-    unset(subdir)
-    subdir = $$1
-
-    scope = $$subdir
-    path = $$eval($${subdir}.file)
-    isEmpty(path): path = $$eval($${subdir}.subdir)
-    isEmpty(path) {
-        path = $${subdir}
-        # We can't use scope as a variable scope, so unset it for
-        # now and we'll compute a new scope based on the target.
-        unset(scope)
-    }
-
-    # Technically this could be a directory, but we assume sane naming.
-    is_file = $$find(path, \\.pr[io]$)
-    isEmpty(is_file) {
-        subdirectory = $$path
-    } else {
-        subdirectory = $$dirname(path)
-        filename = $$basename(path)
-    }
-
-    # Make directory relative
-    !isEmpty(subdirectory):subdirectory = $$replace(subdirectory, ^$$re_escape($${_PRO_FILE_PWD_})/,)
-
-    !isEmpty(subdirectory) {
-        subdir_command = cd $$toSystemPath($${subdirectory}$${QMAKE_DIR_SEP}) &&
-    }
-
-    target = $$eval($${subdir}.target)
-    isEmpty(target) {
-        sanitizedPath = $$toSanitizedPath($$path)
-        target = sub-$$replace(sanitizedPath, [^a-zA-Z0-9_], -)
-    }
-
-    isEmpty(scope): scope = $$target
-
-    makefile = $$eval($${subdir}.makefile)
-    isEmpty(makefile) {
-        !isEmpty(filename) {
-            filebase = $$replace(filename, \\..*$,)
-            dirbase = $$basename(subdirectory)
-            !equals(filebase, $$dirbase) {
-                makefile = $(MAKEFILE).$$filebase
-            } else {
-                makefile = $(MAKEFILE)
-            }
-        } else {
-            makefile = $(MAKEFILE)
-        }
-    }
-
-    subdir_command = $$toEvaluatablePath($$subdir_command)
-    eval($${scope}.subdir_command = $$subdir_command)
-    export($${scope}.subdir_command)
-
-    eval($${scope}.target = $$target)
-    export($${scope}.target)
-
-    eval($${scope}.makefile = $$makefile)
-    export($${scope}.makefile)
-
-    return($$scope)
-}
-
-# Qmake has QMAKE_FILE_IN_PATH, but nothing for the out file
-# This allows you do do ${QMAKE_FUNC_FILE_OUT_PATH}
-defineReplace(PATH) {
-    return($$dirname(1))
-}
-
-# We need both versions, in case the first one returns an empty string
-defineReplace(FILE_OUT_PATH) {
-    return($$dirname(2))
-}
-
-# addStrictSubdirOrderBetween(firstSubdir, secondSubdir)
-defineTest(addStrictSubdirOrderBetween) {
-    unset(firstSubdir)
-    unset(secondSubdir)
-
-    firstSubdir = $$1
-    secondSubdir = $$2
-
-    firstVariables = $$computeSubdirVariables($${firstSubdir})
-    secondVariables = $$computeSubdirVariables($${secondSubdir})
-
-    !contains(TEMPLATE, subdirs) {
-        error("Strict subdir dependencies can only be used with subdirs template")
-    }
-
-    firstSubdirFile = $$eval($${firstSubdir}.file)
-    secondSubdirFile = $$eval($${secondSubdir}.file)
-
-    isEmpty(firstSubdirFile)|isEmpty(secondSubdirFile) {
-        error("Missing subdir file ($$firstSubdirFile, $$secondSubdirFile)")
-    }
-
-    # Make sure the order is right
-    SUBDIRS -= $$secondSubdir
-    SUBDIRS += $$secondSubdir
-    NO_RECURSIVE_QMAKE_SUBDIRS += $$firstSubdir $$secondSubdir
-    CONFIG *= ordered
-
-    first_base_target = sub-$$replace(firstSubdirFile, [^a-zA-Z0-9_], -)
-    second_base_target = sub-$$replace(secondSubdirFile, [^a-zA-Z0-9_], -)
-
-    # Use a custom target for making the derived sources, as the default target
-    # will do 'test -f $(MAKEFILE).DerivedSources || $(QMAKE) ...', which clashes
-    # with the qmake-run of the -qmake_all target, and we end up with a race
-    # and potentially half-written makefiles. The custom target depends explicitly
-    # on -qmake_all, to ensure that we have a makefile, and then calls make.
-    derived_make_for_qmake = $${first_base_target}-make_for_qmake
-    eval($${derived_make_for_qmake}.depends = $${first_base_target}-qmake_all)
-    eval($${derived_make_for_qmake}.commands = $(MAKE) -f $$eval($${firstSubdir}.makefile))
-    QMAKE_EXTRA_TARGETS += $${derived_make_for_qmake}
-
-    # This target ensures that running "make qmake_all" will force both qmake and make
-    # to be run on the derived sources before running qmake on the target, so that
-    # qmake can pick up the right dependencies for the target based on the derived
-    # sources that were generated.
-    target_make_qmake = $${second_base_target}-qmake_all
-    eval($${target_make_qmake}.depends = $${derived_make_for_qmake})
-    QMAKE_EXTRA_TARGETS += $${target_make_qmake}
-
-    # Make things work even if qmake -r is used.
-    CONFIG += dont_recurse
-
-    export(SUBDIRS)
-    export(NO_RECURSIVE_QMAKE_SUBDIRS)
-    export(CONFIG)
-    export($${target_make_qmake}.target)
-    export($${target_make_qmake}.depends)
-    export($${derived_make_for_qmake}.depends)
-    export($${derived_make_for_qmake}.commands)
-    export(QMAKE_EXTRA_TARGETS)
-    return(true)
-}
-
-# Check if we have the given Qt version. The major version needs
-# to be exact, the minor and patch version is same or higher
-defineTest(haveQt) {
-    count(ARGS, 1, lessThan)|count(ARGS, 3, greaterThan) {
-        error("Unexpected number of arguments: haveQt($$ARGS)")
-    }
-
-    !equals(QT_MAJOR_VERSION, $$1): return(false)
-
-    count(ARGS, 1, greaterThan) {
-        lessThan(QT_MINOR_VERSION, $$2): return(false)
-        greaterThan(QT_MINOR_VERSION, $$2): return(true)
-
-        count(ARGS, 2, greaterThan) {
-            lessThan(QT_PATCH_VERSION, $$3): return(false)
-            greaterThan(QT_PATCH_VERSION, $$3): return(true)
-        }
-    }
-
-    return(true)
-}
-
-defineTest(haveQtModule) {
-    unset(module)
-    module = $$1
-
-    haveQt(5):!isEmpty(QT.$${module}.name): return(true)
-    return(false)
-}
-
-defineTest(programExistsInPath) {
-    win_cmd_shell: program = $${1}.exe
-    else: program = $$1
-
-    PATH = "$$(PATH)"
-    paths=$$split(PATH, $$QMAKE_DIRLIST_SEP)
-
-    GNUTOOLS_DIR=$$[QT_HOST_DATA]/../gnuwin32/bin
-    exists($$GNUTOOLS_DIR): paths += $$GNUTOOLS_DIR
-
-    for(p, paths): exists($$p/$$program):return(true)
-    return(false)
-}
-
-defineTest(addReasonForSkippingBuild) {
-    skipBuildReason = "$$skipBuildReason$${EOL}    * $$1"
-    export(skipBuildReason)
-}
-
-defineTest(prependEach) {
-    unset(variable)
-    unset(prefix)
-
-    variable = $$1
-    prefix = $$2
-
-    original_values = $$unique($$variable)
-
-    for(value, original_values) {
-        values += $${prefix}$${value}
-    }
-
-    eval($$variable = $$values)
-    export($$variable)
-
-    return(true)
-}
-
-defineReplace(resolveFinalLibraryName) {
-    !debug_and_release: return($$1)
-
-    original_framework_name = $$QMAKE_FRAMEWORK_BUNDLE_NAME
-
-    TEMPLATE = lib # So that qtLibraryTarget works
-    target = $$qtLibraryTarget($$1)
-
-    # qtLibraryTarget will export QMAKE_FRAMEWORK_BUNDLE_NAME, which gets
-    # exported not only to this function scope, but to our call site.
-    QMAKE_FRAMEWORK_BUNDLE_NAME = $$original_framework_name
-    export(QMAKE_FRAMEWORK_BUNDLE_NAME)
-
-    return($$target)
-}
-
-defineTest(linkAgainstLibrary) {
-    unset(target)
-    target = $$1
-
-    unset(source_dir)
-    source_dir = $$2
-
-    library = $$lower($$target)
-
-    target = $$resolveFinalLibraryName($$target)
-
-    path = $$replace(source_dir, $$re_escape($${ROOT_WEBKIT_DIR}), $${ROOT_BUILD_DIR})/$$targetSubDir()
-
-    force_static_libs_as_shared {
-            LIBS += -L$${ROOT_BUILD_DIR}/lib -l$$target
-    } else {
-
-        mac {
-            LIBS += -Wl,-force_load,$${path}$${QMAKE_DIR_SEP}lib$${target}.a
-        } else:win32-msvc*|wince*|win32-icc {
-            LIBS += /OPT:REF -l$$target
-        } else {
-            CONFIG *= no_smart_library_merge
-            LIBS += -Wl,-whole-archive -l$$target -Wl,-no-whole-archive
-        }
-
-        LIBS += -L$$path
-
-        win32-msvc*|wince*|win32-icc {
-            POST_TARGETDEPS += $${path}$${QMAKE_DIR_SEP}$${target}.lib
-        } else {
-            POST_TARGETDEPS += $${path}$${QMAKE_DIR_SEP}lib$${target}.a
-        }
-    }
-
-    export(LIBS)
-    export(QMAKE_LIBDIR)
-    export(POST_TARGETDEPS)
-    export(CONFIG)
-    return(true)
-}
-
-defineTest(xlibAvailable) {
-    contains(QT_CONFIG, xcb-xlib) {
-        return(true)
-    } else {
-        return(false)
-    }
-}
-
-defineTest(build?) {
-    contains(WEBKIT_CONFIG, build_$$lower($$1)): return(true)
-    return(false)
-}
-
-defineTest(have?) {
-    contains(WEBKIT_CONFIG, have_$$lower($$1)): return(true)
-    return(false)
-}
-
-defineTest(use?) {
-    contains(WEBKIT_CONFIG, use_$$lower($$1)): return(true)
-    return(false)
-}
-
-defineTest(enable?) {
-    contains(WEBKIT_CONFIG, $$lower($$1)): return(true)
-    return(false)
-}
-
-# Used by configDefines below
-include(features.pri)
-
-# Turn Webkit config into defines
-defineReplace(configDefines) {
-    unset(defines)
-
-    args = $$split(1, |)
-
-    possible_args = enable have use plugin_architecture
-    !isEmpty(args) {
-        for(arg, possible_args): contains(args, $$arg): CONFIG += $$arg
-    } else {
-        CONFIG += $$possible_args
-    }
-
-    for(config, WEBKIT_CONFIG) {
-        match = $$find(config, "^build_")
-        !isEmpty(match) {
-            # We don't translate build_ to defines
-            next()
-        }
-        match = $$find(config, "^have_")
-        !isEmpty(match) {
-            have: defines += $$upper($$config)=1
-            next()
-        }
-        match = $$find(config, "^plugin_architecture_")
-        !isEmpty(match) {
-            plugin_architecture: defines += $$upper($$config)=1
-            next()
-        }
-        match = $$find(config, "^use_")
-        !isEmpty(match) {
-            use: defines += WTF_$$upper($$config)=1
-            next()
-        }
-
-        enable: defines += ENABLE_$$upper($$config)=1
-    }
-
-    # To prevent clashes with Platform.h, we have to explicitly
-    # disable features that are not enabled.
-    for(define, FEATURE_DEFAULTS) {
-        anyFeatureDefine = $$find(define, =.$)
-        isEmpty(anyFeatureDefine): next()
-
-        enabledFeature = $$replace(anyFeatureDefine, =.$, =1)
-        disabledFeature = $$replace(anyFeatureDefine, =.$, =0)
-
-        !contains(defines, $$enabledFeature) {
-            defines += $$disabledFeature
-        }
-    }
-
-    return($$defines)
-}
-
-defineReplace(javascriptFeatureDefines) {
-    defines = LANGUAGE_JAVASCRIPT=1 $$configDefines(enable)
-    return($$defines)
-}
-
-defineReplace(setEnvironmentVariable) {
-  variable = $$1
-  value = $$2
-  win_cmd_shell {
-      return((set \"$$variable=$$value\"))
-  }
-  return(export \"$$variable=$$value\")
-}
diff --git a/Tools/qmake/mkspecs/features/gprof.prf b/Tools/qmake/mkspecs/features/gprof.prf
deleted file mode 100644
index 51b78c3..0000000
--- a/Tools/qmake/mkspecs/features/gprof.prf
+++ /dev/null
@@ -1,11 +0,0 @@
-# -------------------------------------------------------------------
-# This optional feature file adds rules that make running gprof
-# on QtWebKit easier.
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-build?(webkit2): error("WebKit2 is not supported with gprof")
-
-QMAKE_CXXFLAGS += -pg
-QMAKE_LFLAGS += -pg
diff --git a/Tools/qmake/mkspecs/features/mac/default_post.prf b/Tools/qmake/mkspecs/features/mac/default_post.prf
deleted file mode 100644
index 1578a70..0000000
--- a/Tools/qmake/mkspecs/features/mac/default_post.prf
+++ /dev/null
@@ -1,10 +0,0 @@
-# -------------------------------------------------------------------
-# Mac OS X specific defaults
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-# We don't want verify and other platform macros to pollute the namespace
-DEFINES += __ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES=0
-
-load(default_post)
diff --git a/Tools/qmake/mkspecs/features/mac/default_pre.prf b/Tools/qmake/mkspecs/features/mac/default_pre.prf
deleted file mode 100644
index 657bbc4..0000000
--- a/Tools/qmake/mkspecs/features/mac/default_pre.prf
+++ /dev/null
@@ -1,12 +0,0 @@
-# -------------------------------------------------------------------
-# Mac OS X specific defaults
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-CONFIG -= app_bundle
-
-load(default_pre)
-
-debug: CONFIG += use_all_in_one_files
-
diff --git a/Tools/qmake/mkspecs/features/minimal_qt.prf b/Tools/qmake/mkspecs/features/minimal_qt.prf
deleted file mode 100644
index 34e2d39..0000000
--- a/Tools/qmake/mkspecs/features/minimal_qt.prf
+++ /dev/null
@@ -1,32 +0,0 @@
-# -------------------------------------------------------------------
-# Pretend that we are building against a minimal Qt version
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-DEFINES *= \
-    QT_NO_ANIMATION \
-    QT_NO_BEARERMANAGEMENT \
-    QT_NO_CLIPBOARD \
-    QT_NO_COMBOBOX \
-    QT_NO_CONCURRENT \
-    QT_NO_CRASHHANDLER \
-    QT_NO_CURSOR \
-    QT_NO_DESKTOPSERVICES \
-    QT_NO_FILEDIALOG \
-    QT_NO_GRAPHICSEFFECT \
-    QT_NO_IM \
-    QT_NO_INPUTDIALOG \
-    QT_NO_LINEEDIT \
-    QT_NO_MESSAGEBOX \
-    QT_NO_OPENSSL \
-    QT_NO_PRINTER \
-    QT_NO_QUUID_STRING \
-    QT_NO_SHORTCUT \
-    QT_NO_STYLE_STYLESHEET \
-    QT_NO_SYSTEMTRAYICON \
-    QT_NO_TEMPORARYFILE \
-    QT_NO_TOOLTIP \
-    QT_NO_UNDOCOMMAND \
-    QT_NO_UNDOSTACK \
-    QT_NO_XRENDER
diff --git a/Tools/qmake/mkspecs/features/production_build.prf b/Tools/qmake/mkspecs/features/production_build.prf
deleted file mode 100644
index c980d09..0000000
--- a/Tools/qmake/mkspecs/features/production_build.prf
+++ /dev/null
@@ -1,17 +0,0 @@
-# All in one files reduce memory usage at link time. At compiler time the code
-# visibility for the compiler increases and faster more compact code can be produced,
-# so turn it on in production builds.
-CONFIG *= use_all_in_one_files
-
-# Builds with debug flags result in a huge amount of symbols with the GNU toolchain,
-# resulting in the need of several gigabytes of memory at link-time. Reduce the pressure
-# by compiling any static library like WTF or JSC with release flags instead and keep debug
-# symbols for the static libraries that implement API.
-linux-*|win32-g++*:if(CONFIG(debug, debug|release)|contains(QT_CONFIG,separate_debug_info)):contains(TEMPLATE, lib):staticlib {
-    !equals(TARGET, WebKit2):!equals(TARGET, WebKitWidgets) {
-        CONFIG += no_debug_info
-        CONFIG -= separate_debug_info
-        QMAKE_CFLAGS += $$QMAKE_CFLAGS_RELEASE
-        QMAKE_CXXFLAGS += $$QMAKE_CXXFLAGS_RELEASE
-    }
-}
diff --git a/Tools/qmake/mkspecs/features/rpath.prf b/Tools/qmake/mkspecs/features/rpath.prf
deleted file mode 100644
index 8dbc42f..0000000
--- a/Tools/qmake/mkspecs/features/rpath.prf
+++ /dev/null
@@ -1,25 +0,0 @@
-# -------------------------------------------------------------------
-# Set rpath for the application/library we're building
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-equals(ROOT_BUILD_DIR, $$dirname(DESTDIR)): RPATHDIR_RELATIVE_TO_DESTDIR = ../lib
-
-linux-*:!isEmpty(RPATHDIR_RELATIVE_TO_DESTDIR) {
-    # Do the rpath by hand since it's not possible to use ORIGIN in QMAKE_RPATHDIR
-    # this expands to $ORIGIN (after qmake and make), it does NOT read a qmake var.
-    QMAKE_RPATHDIR = \$\$ORIGIN/$${RPATHDIR_RELATIVE_TO_DESTDIR} $${QMAKE_RPATHDIR}
-    RPATH = $$join(QMAKE_RPATHDIR, ":")
-
-    QMAKE_LFLAGS += -Wl,-z,origin \'-Wl,-rpath,$${RPATH}\'
-    QMAKE_RPATHDIR =
-} else {
-    QMAKE_RPATHDIR = $${ROOT_BUILD_DIR}/lib $${QMAKE_RPATHDIR}
-}
-
-# FIXME: For Qt5 this will only give correct rpath for the tools that come with WebKit
-# Any client application built against a developer-build of Qt + WebKit (that does
-# QT += webkit) will not get the rpath pointing to the stand-alone WebKit-build,
-# and will have to set LD_LIBRARY_PATH or do their own rpath logic. This needs
-# to be fixed on the Qt side.
diff --git a/Tools/qmake/mkspecs/features/unix/default_post.prf b/Tools/qmake/mkspecs/features/unix/default_post.prf
deleted file mode 100644
index 8c36146..0000000
--- a/Tools/qmake/mkspecs/features/unix/default_post.prf
+++ /dev/null
@@ -1,46 +0,0 @@
-# -------------------------------------------------------------------
-# Unix specific defaults
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-# Use SSE2 floating point math on 32 bit instead of the default
-# 387 to make layout test results same on 32 and on 64 bit builds.
-# See https://bugs.webkit.org/show_bug.cgi?id=52810#c39 for details.
-linux-g++*:isEqual(QT_ARCH,i386) {
-    QMAKE_CFLAGS += -march=pentium4 -msse2 -mfpmath=sse
-    QMAKE_CXXFLAGS += -march=pentium4 -msse2 -mfpmath=sse
-
-    # Use the stabs format for 32 bit debug builds to make the object files a bit smaller.
-    QMAKE_CXXFLAGS_DEBUG -= -g
-    QMAKE_CXXFLAGS_DEBUG += -gstabs
-}
-
-linux-*g++* {
-    !production_build {
-        # Treat warnings as errors on x86/Linux/GCC
-        isEqual(QT_ARCH,x86_64)|isEqual(QT_ARCH,i386): QMAKE_CXXFLAGS += -Werror
-    }
-    greaterThan(QT_GCC_MAJOR_VERSION, 3):greaterThan(QT_GCC_MINOR_VERSION, 5) {
-        !contains(QMAKE_CXXFLAGS, -std=(c|gnu)\\+\\+(0x|11)) {
-            # We need to deactivate those warnings because some names conflicts with upcoming c++0x types (e.g.nullptr).
-            QMAKE_CXXFLAGS_WARN_ON += -Wno-c++0x-compat
-            QMAKE_CXXFLAGS += -Wno-c++0x-compat
-        }
-    }
-}
-
-# Don't warn about OVERRIDE and FINAL, since they are feature-checked anyways
-*clang:!contains(QMAKE_CXXFLAGS, -std=c++11) {
-    QMAKE_CXXFLAGS += -Wno-c++11-extensions -Wno-c++0x-extensions
-    QMAKE_OBJECTIVE_CFLAGS += -Wno-c++11-extensions -Wno-c++0x-extensions
-}
-
-contains(TEMPLATE, app): CONFIG += rpath
-
-isEqual(QT_ARCH,i386):CONFIG(debug, debug|release) {
-  # Make ld not cache the symbol tables of input files in memory to avoid memory exhaustion during the linking phase.
-  config_gnuld: QMAKE_LFLAGS += -Wl,--no-keep-memory
-}
-
-load(default_post)
diff --git a/Tools/qmake/mkspecs/features/unix/default_pre.prf b/Tools/qmake/mkspecs/features/unix/default_pre.prf
deleted file mode 100644
index aafc48c..0000000
--- a/Tools/qmake/mkspecs/features/unix/default_pre.prf
+++ /dev/null
@@ -1,22 +0,0 @@
-# -------------------------------------------------------------------
-# Unix specific defaults
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-load(functions)
-
-CONFIG += object_parallel_to_source
-
-# Expose if we are building inside Scratchbox
-SBOX_CHECK = $$(_SBOX_DIR)
-!isEmpty(SBOX_CHECK): CONFIG += scratchbox
-
-# If Qt is configured with embedded or QPA we set a convenience config
-# flag that can be used to test for either of these situations.
-contains(QT_CONFIG, qpa)|contains(QT_CONFIG, embedded): CONFIG += embedded
-
-# Reduce linking memory pressure on 32-bit debug builds on Linux
-linux-g++*:CONFIG(debug, debug|release):isEqual(QT_ARCH,i386): CONFIG += use_all_in_one_files
-
-load(default_pre)
diff --git a/Tools/qmake/mkspecs/features/unix/icc.prf b/Tools/qmake/mkspecs/features/unix/icc.prf
deleted file mode 100644
index e9bfddd..0000000
--- a/Tools/qmake/mkspecs/features/unix/icc.prf
+++ /dev/null
@@ -1,8 +0,0 @@
-# -------------------------------------------------------------------
-# This optional feature file adds rules that compile using Intel
-# compiler easier.
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-QMAKE_CXXFLAGS += -wd68,161,175,177,239,411,654,864,873,1125,2089,2196
diff --git a/Tools/qmake/mkspecs/features/use_all_in_one_files.prf b/Tools/qmake/mkspecs/features/use_all_in_one_files.prf
deleted file mode 100644
index e16dcfc..0000000
--- a/Tools/qmake/mkspecs/features/use_all_in_one_files.prf
+++ /dev/null
@@ -1,28 +0,0 @@
-# -------------------------------------------------------------------
-# This feature enables the use of AllInOne.cpp files by adding them
-# to SOURCES and removing the sources the corresponding files include
-# from SOURCES, to avoid duplicated compilation units.
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-# Globbing all does not work yet, not all AllInOne files build reliably yet.
-# So instead we select them manually.
-#collection = $$files($$_PRO_FILE_PWD_/*AllInOne.cpp, true)
-collection = $$ALL_IN_ONE_SOURCES
-
-for(collectionFile, collection) {
-    lines = $$cat($$_PRO_FILE_PWD_/$$collectionFile, lines)
-    for(line, lines) {
-        line = $$find(line, "^.+include \"(.*)\"")
-        isEmpty(line): next()
-        line ~= s/^.+include \"(.*)\"/\\1/
-        source = $$dirname(collectionFile)/$$line
-        contains(SOURCES, $$source) {
-            SOURCES -= $$source
-            tookFromSources = true
-        }
-    }
-    !isEmpty(tookFromSources): SOURCES *= $$collectionFile
-}
-
diff --git a/Tools/qmake/mkspecs/features/valgrind.prf b/Tools/qmake/mkspecs/features/valgrind.prf
deleted file mode 100644
index b181154..0000000
--- a/Tools/qmake/mkspecs/features/valgrind.prf
+++ /dev/null
@@ -1,11 +0,0 @@
-# -------------------------------------------------------------------
-# This optional feature file adds rules that make running valgrind
-# on QtWebKit easier.
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-QMAKE_CXXFLAGS += -g
-QMAKE_LFLAGS += -g
-DEFINES += USE_SYSTEM_MALLOC=1
-DEFINES += ENABLE_JIT=0
diff --git a/Tools/qmake/mkspecs/features/webkit_modules.prf b/Tools/qmake/mkspecs/features/webkit_modules.prf
deleted file mode 100644
index 2a520d7..0000000
--- a/Tools/qmake/mkspecs/features/webkit_modules.prf
+++ /dev/null
@@ -1,51 +0,0 @@
-# -------------------------------------------------------------------
-# Used for applying the content of the WEBKIT variable into the
-# effect each library/module has on variables such as LIBS and QT.
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-# Reorder libraries so that the link and include order is correct,
-# and make sure the case matches the original case.
-libraries = WebKit1 WebKit2QML WebKit2 WebCore ANGLE JavaScriptCore WTF
-for(library, libraries) {
-    contains(WEBKIT, $$lower($$library)) {
-        WEBKIT -= $$lower($$library)
-        WEBKIT *= $$library
-    }
-}
-
-# Load the .pri file for each library, to pick up LIBS, INCLUDES,
-# and other dependencies the library adds.
-for(library, WEBKIT) {
-    # Juggle LIBS to keep the static link order correct
-    existing_libs = $$LIBS
-    unset(LIBS)
-
-    # We definitly need include paths and such (this will set
-    # SOURCE_DIR to the right path so we can use it below).
-    library_identifier = $$lower($$library)
-    include(../modules/$${library_identifier}.prf)
-
-    # More juggling, so that we can add the dependent libs later
-    # on if we decide that we need to link to the library.
-    eval(WEBKIT.$${library_identifier}.dependent_libs = $$LIBS)
-    LIBS = $$existing_libs
-
-    # Anything not linking dynamically to QtWebKit should make sure to have its export
-    # macros synchronized with the code that it will be linked with statically.
-    !contains(QT, webkit): DEFINES += STATICALLY_LINKED_WITH_$$library
-}
-
-creating_module {
-    # Sanitize PKGCONFIG as we don't want any of these libraries
-    # to end up in as public API dependenices in the QtWebKit prl file.
-    PKGCONFIG_PRIVATE *= $$PKGCONFIG
-    unset(PKGCONFIG)
-
-    # We do have a limited subset of Qt modules as dependencies for using
-    # the public QtWebKit API. The rest of the modules go into QT_PRIVATE.
-    QT_PRIVATE *= $$QT
-    QT = $$QT_API_DEPENDS
-    QT_PRIVATE -= $$QT
-}
diff --git a/Tools/qmake/mkspecs/features/win32/default_post.prf b/Tools/qmake/mkspecs/features/win32/default_post.prf
deleted file mode 100644
index acf2e86..0000000
--- a/Tools/qmake/mkspecs/features/win32/default_post.prf
+++ /dev/null
@@ -1,41 +0,0 @@
-# -------------------------------------------------------------------
-# Win32 specific defaults
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-# Pick up 3rdparty libraries from INCLUDE/LIB just like with MSVC
-win32-g++* {
-    TMPPATH            = $$quote($$(INCLUDE))
-    QMAKE_INCDIR_POST += $$split(TMPPATH,";")
-    TMPPATH            = $$quote($$(LIB))
-    QMAKE_LIBDIR_POST += $$split(TMPPATH,";")
-}
-
-# Disable a few warnings. The same warnings are also disabled
-# in WebKitLibraries/win/tools/vsprops/common.vsprops
-win32-msvc*|wince*: QMAKE_CXXFLAGS += -wd4291 -wd4344 -wd4396 -wd4503 -wd4800 -wd4819 -wd4996
-win32-icc: QMAKE_CXXFLAGS += -wd873
-
-load(default_post)
-
-# When creating the target DLL, extract exporting linker directives from
-# all static libraries we're linking into the DLL and make sure they are
-# also exported from the DLL.
-shared:contains(TEMPLATE, lib) {
-    for(target, POST_TARGETDEPS) {
-        libdep = $$find(target, .*\\.lib)
-        !isEmpty(libdep): LIBSWITHEXPORTS += $$libdep
-    }
-}
-
-!isEmpty(LIBSWITHEXPORTS) {
-    suffix =
-    CONFIG(debug, debug|release): suffix = d
-    forwarded_exports.target = forwarded-exports$${suffix}.cpp
-    forwarded_exports.commands = python $${ROOT_WEBKIT_DIR}$${QMAKE_DIR_SEP}Tools$${QMAKE_DIR_SEP}Scripts$${QMAKE_DIR_SEP}generate-win32-export-forwards $$LIBSWITHEXPORTS $$forwarded_exports.target
-    forwarded_exports.depends = $$LIBSWITHEXPORTS
-    QMAKE_EXTRA_TARGETS += forwarded_exports
-    GENERATED_SOURCES += $$forwarded_exports.target
-}
-
diff --git a/Tools/qmake/mkspecs/features/win32/default_pre.prf b/Tools/qmake/mkspecs/features/win32/default_pre.prf
deleted file mode 100644
index b306c3b..0000000
--- a/Tools/qmake/mkspecs/features/win32/default_pre.prf
+++ /dev/null
@@ -1,10 +0,0 @@
-# -------------------------------------------------------------------
-# Windows specific defaults
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-load(default_pre)
-
-debug: CONFIG += use_all_in_one_files
-
diff --git a/Tools/qmake/mkspecs/modules/angle.prf b/Tools/qmake/mkspecs/modules/angle.prf
deleted file mode 100644
index 18631a7..0000000
--- a/Tools/qmake/mkspecs/modules/angle.prf
+++ /dev/null
@@ -1,9 +0,0 @@
-# -------------------------------------------------------------------
-# Module file for ANGLE, used by targets that depend on ANGLE
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-WEBKIT.angle.root_source_dir = $${ROOT_WEBKIT_DIR}/Source/ThirdParty/ANGLE
-
-include($${WEBKIT.angle.root_source_dir}/ANGLE.pri)
diff --git a/Tools/qmake/mkspecs/modules/javascriptcore.prf b/Tools/qmake/mkspecs/modules/javascriptcore.prf
deleted file mode 100644
index 6d9656c..0000000
--- a/Tools/qmake/mkspecs/modules/javascriptcore.prf
+++ /dev/null
@@ -1,10 +0,0 @@
-# -------------------------------------------------------------------
-# Module file for JavaScriptCore, used by targets that depend on
-# JavaScriptCore
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-WEBKIT.javascriptcore.root_source_dir = $${ROOT_WEBKIT_DIR}/Source/JavaScriptCore
-
-include($${WEBKIT.javascriptcore.root_source_dir}/JavaScriptCore.pri)
diff --git a/Tools/qmake/mkspecs/modules/webcore.prf b/Tools/qmake/mkspecs/modules/webcore.prf
deleted file mode 100644
index 9bd1776..0000000
--- a/Tools/qmake/mkspecs/modules/webcore.prf
+++ /dev/null
@@ -1,9 +0,0 @@
-# -------------------------------------------------------------------
-# Module file for WebCore, used by targets that depend on WebCore
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-WEBKIT.webcore.root_source_dir = $${ROOT_WEBKIT_DIR}/Source/WebCore
-
-include($${WEBKIT.webcore.root_source_dir}/WebCore.pri)
diff --git a/Tools/qmake/mkspecs/modules/webkit1.prf b/Tools/qmake/mkspecs/modules/webkit1.prf
deleted file mode 100644
index ffab9a7..0000000
--- a/Tools/qmake/mkspecs/modules/webkit1.prf
+++ /dev/null
@@ -1,9 +0,0 @@
-# -------------------------------------------------------------------
-# Module file for WebKit1, used by targets that depend on WebKit1
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-WEBKIT.webkit1.root_source_dir = $${ROOT_WEBKIT_DIR}/Source/WebKit
-
-include($${WEBKIT.webkit1.root_source_dir}/WebKit1.pri)
diff --git a/Tools/qmake/mkspecs/modules/webkit2.prf b/Tools/qmake/mkspecs/modules/webkit2.prf
deleted file mode 100644
index a250216..0000000
--- a/Tools/qmake/mkspecs/modules/webkit2.prf
+++ /dev/null
@@ -1,9 +0,0 @@
-# -------------------------------------------------------------------
-# Module file for WebKit2, used by targets that depend on WebKit2
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-WEBKIT.webkit2.root_source_dir = $${ROOT_WEBKIT_DIR}/Source/WebKit2
-
-include($${WEBKIT.webkit2.root_source_dir}/WebKit2.pri)
diff --git a/Tools/qmake/mkspecs/modules/webkit2qml.prf b/Tools/qmake/mkspecs/modules/webkit2qml.prf
deleted file mode 100644
index 06566f4..0000000
--- a/Tools/qmake/mkspecs/modules/webkit2qml.prf
+++ /dev/null
@@ -1,9 +0,0 @@
-# -------------------------------------------------------------------
-# Module file for WebKit2, used by targets that depend on WebKit2
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-WEBKIT.webkit2qml.root_source_dir = $${ROOT_WEBKIT_DIR}/Source/WebKit2
-
-#include($${WEBKIT.webkit2.root_source_dir}/WebKit2QML.pri)
diff --git a/Tools/qmake/mkspecs/modules/wtf.prf b/Tools/qmake/mkspecs/modules/wtf.prf
deleted file mode 100644
index 56df747..0000000
--- a/Tools/qmake/mkspecs/modules/wtf.prf
+++ /dev/null
@@ -1,9 +0,0 @@
-# -------------------------------------------------------------------
-# Module file for WTF, used by targets that depend on WTF
-#
-# See 'Tools/qmake/README' for an overview of the build system
-# -------------------------------------------------------------------
-
-WEBKIT.wtf.root_source_dir = $${ROOT_WEBKIT_DIR}/Source/WTF
-
-include($${WEBKIT.wtf.root_source_dir}/WTF.pri)
diff --git a/Tools/qunit/README.WebKit b/Tools/qunit/README.WebKit
new file mode 100644
index 0000000..210411e
--- /dev/null
+++ b/Tools/qunit/README.WebKit
@@ -0,0 +1,5 @@
+This direcotry was created using the following command:
+
+  git clone https://github.com/jquery/qunit.git
+
+Commit: b061e22c54f548fa2a768f14af5876c81ace5d09
diff --git a/Tools/qunit/README.md b/Tools/qunit/README.md
new file mode 100644
index 0000000..901d0b8
--- /dev/null
+++ b/Tools/qunit/README.md
@@ -0,0 +1,27 @@
+[QUnit](http://docs.jquery.com/QUnit) - A JavaScript Unit Testing framework.
+================================
+
+QUnit is a powerful, easy-to-use, JavaScript test suite. It's used by the jQuery
+project to test its code and plugins but is capable of testing any generic
+JavaScript code (and even capable of testing JavaScript code on the server-side).
+
+QUnit is especially useful for regression testing: Whenever a bug is reported,
+write a test that asserts the existence of that particular bug. Then fix it and
+commit both. Every time you work on the code again, run the tests. If the bug
+comes up again - a regression - you'll spot it immediately and know how to fix
+it, because you know what code you just changed.
+
+Having good unit test coverage makes safe refactoring easy and cheap. You can
+run the tests after each small refactoring step and always know what change
+broke something.
+
+QUnit is similar to other unit testing frameworks like JUnit, but makes use of
+the features JavaScript provides and helps with testing code in the browser, eg.
+with it's stop/start facilities for testing asynchronous code.
+
+If you are interested in helping developing QUnit, you are in the right place.
+For related discussions, visit the
+[QUnit and Testing forum](http://forum.jquery.com/qunit-and-testing).
+
+Planning for a qunitjs.com site and other testing tools related work now happens
+on the [jQuery Testing Team planning wiki](http://jquerytesting.pbworks.com/w/page/41556026/FrontPage).
diff --git a/Tools/qunit/package.json b/Tools/qunit/package.json
new file mode 100644
index 0000000..b6044c8
--- /dev/null
+++ b/Tools/qunit/package.json
@@ -0,0 +1,21 @@
+{
+	"name": "qunit",
+	"author": {
+		"name": "John Resig",
+		"email": "jeresig@gmail.com",
+		"url": "http://ejohn.org/"
+	},
+	"maintainer": {
+		"name": "Jörn Zaefferer",
+		"email": "joern.zaefferer@googlemail.com",
+		"url": "http://bassistance.de/"
+	},
+	"url": "http://docs.jquery.com/QUnit",
+	"license": {
+		"name": "MIT",
+		"url": "http://www.opensource.org/licenses/mit-license.php"
+	},
+	"description": "An easy-to-use JavaScript Unit Testing framework.",
+	"keywords": [ "testing", "unit", "jquery" ],
+	"lib": "qunit"
+}
diff --git a/Tools/qunit/qunit/qunit.css b/Tools/qunit/qunit/qunit.css
new file mode 100644
index 0000000..b3c6db5
--- /dev/null
+++ b/Tools/qunit/qunit/qunit.css
@@ -0,0 +1,225 @@
+/**
+ * QUnit - A JavaScript Unit Testing Framework
+ *
+ * http://docs.jquery.com/QUnit
+ *
+ * Copyright (c) 2011 John Resig, Jörn Zaefferer
+ * Dual licensed under the MIT (MIT-LICENSE.txt)
+ * or GPL (GPL-LICENSE.txt) licenses.
+ */
+
+/** Font Family and Sizes */
+
+#qunit-tests, #qunit-header, #qunit-banner, #qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult {
+	font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
+}
+
+#qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult, #qunit-tests li { font-size: small; }
+#qunit-tests { font-size: smaller; }
+
+
+/** Resets */
+
+#qunit-tests, #qunit-tests ol, #qunit-header, #qunit-banner, #qunit-userAgent, #qunit-testresult {
+	margin: 0;
+	padding: 0;
+}
+
+
+/** Header */
+
+#qunit-header {
+	padding: 0.5em 0 0.5em 1em;
+
+	color: #8699a4;
+	background-color: #0d3349;
+
+	font-size: 1.5em;
+	line-height: 1em;
+	font-weight: normal;
+
+	border-radius: 15px 15px 0 0;
+	-moz-border-radius: 15px 15px 0 0;
+	-webkit-border-top-right-radius: 15px;
+	-webkit-border-top-left-radius: 15px;
+}
+
+#qunit-header a {
+	text-decoration: none;
+	color: #c2ccd1;
+}
+
+#qunit-header a:hover,
+#qunit-header a:focus {
+	color: #fff;
+}
+
+#qunit-banner {
+	height: 5px;
+}
+
+#qunit-testrunner-toolbar {
+	padding: 0.5em 0 0.5em 2em;
+	color: #5E740B;
+	background-color: #eee;
+}
+
+#qunit-userAgent {
+	padding: 0.5em 0 0.5em 2.5em;
+	background-color: #2b81af;
+	color: #fff;
+	text-shadow: rgba(0, 0, 0, 0.5) 2px 2px 1px;
+}
+
+
+/** Tests: Pass/Fail */
+
+#qunit-tests {
+	list-style-position: inside;
+}
+
+#qunit-tests li {
+	padding: 0.4em 0.5em 0.4em 2.5em;
+	border-bottom: 1px solid #fff;
+	list-style-position: inside;
+}
+
+#qunit-tests.hidepass li.pass, #qunit-tests.hidepass li.running  {
+	display: none;
+}
+
+#qunit-tests li strong {
+	cursor: pointer;
+}
+
+#qunit-tests li a {
+	padding: 0.5em;
+	color: #c2ccd1;
+	text-decoration: none;
+}
+#qunit-tests li a:hover,
+#qunit-tests li a:focus {
+	color: #000;
+}
+
+#qunit-tests ol {
+	margin-top: 0.5em;
+	padding: 0.5em;
+
+	background-color: #fff;
+
+	border-radius: 15px;
+	-moz-border-radius: 15px;
+	-webkit-border-radius: 15px;
+
+	box-shadow: inset 0px 2px 13px #999;
+	-moz-box-shadow: inset 0px 2px 13px #999;
+	-webkit-box-shadow: inset 0px 2px 13px #999;
+}
+
+#qunit-tests table {
+	border-collapse: collapse;
+	margin-top: .2em;
+}
+
+#qunit-tests th {
+	text-align: right;
+	vertical-align: top;
+	padding: 0 .5em 0 0;
+}
+
+#qunit-tests td {
+	vertical-align: top;
+}
+
+#qunit-tests pre {
+	margin: 0;
+	white-space: pre-wrap;
+	word-wrap: break-word;
+}
+
+#qunit-tests del {
+	background-color: #e0f2be;
+	color: #374e0c;
+	text-decoration: none;
+}
+
+#qunit-tests ins {
+	background-color: #ffcaca;
+	color: #500;
+	text-decoration: none;
+}
+
+/*** Test Counts */
+
+#qunit-tests b.counts                       { color: black; }
+#qunit-tests b.passed                       { color: #5E740B; }
+#qunit-tests b.failed                       { color: #710909; }
+
+#qunit-tests li li {
+	margin: 0.5em;
+	padding: 0.4em 0.5em 0.4em 0.5em;
+	background-color: #fff;
+	border-bottom: none;
+	list-style-position: inside;
+}
+
+/*** Passing Styles */
+
+#qunit-tests li li.pass {
+	color: #5E740B;
+	background-color: #fff;
+	border-left: 26px solid #C6E746;
+}
+
+#qunit-tests .pass                          { color: #528CE0; background-color: #D2E0E6; }
+#qunit-tests .pass .test-name               { color: #366097; }
+
+#qunit-tests .pass .test-actual,
+#qunit-tests .pass .test-expected           { color: #999999; }
+
+#qunit-banner.qunit-pass                    { background-color: #C6E746; }
+
+/*** Failing Styles */
+
+#qunit-tests li li.fail {
+	color: #710909;
+	background-color: #fff;
+	border-left: 26px solid #EE5757;
+}
+
+#qunit-tests > li:last-child {
+	border-radius: 0 0 15px 15px;
+	-moz-border-radius: 0 0 15px 15px;
+	-webkit-border-bottom-right-radius: 15px;
+	-webkit-border-bottom-left-radius: 15px;
+}
+
+#qunit-tests .fail                          { color: #000000; background-color: #EE5757; }
+#qunit-tests .fail .test-name,
+#qunit-tests .fail .module-name             { color: #000000; }
+
+#qunit-tests .fail .test-actual             { color: #EE5757; }
+#qunit-tests .fail .test-expected           { color: green;   }
+
+#qunit-banner.qunit-fail                    { background-color: #EE5757; }
+
+
+/** Result */
+
+#qunit-testresult {
+	padding: 0.5em 0.5em 0.5em 2.5em;
+
+	color: #2b81af;
+	background-color: #D2E0E6;
+
+	border-bottom: 1px solid white;
+}
+
+/** Fixture */
+
+#qunit-fixture {
+	position: absolute;
+	top: -10000px;
+	left: -10000px;
+}
diff --git a/Tools/qunit/qunit/qunit.js b/Tools/qunit/qunit/qunit.js
new file mode 100644
index 0000000..e00cca9
--- /dev/null
+++ b/Tools/qunit/qunit/qunit.js
@@ -0,0 +1,1448 @@
+/**
+ * QUnit - A JavaScript Unit Testing Framework
+ *
+ * http://docs.jquery.com/QUnit
+ *
+ * Copyright (c) 2011 John Resig, Jörn Zaefferer
+ * Dual licensed under the MIT (MIT-LICENSE.txt)
+ * or GPL (GPL-LICENSE.txt) licenses.
+ */
+
+(function(window) {
+
+var defined = {
+	setTimeout: typeof window.setTimeout !== "undefined",
+	sessionStorage: (function() {
+		try {
+			return !!sessionStorage.getItem;
+		} catch(e){
+			return false;
+		}
+  })()
+};
+
+var testId = 0;
+
+var Test = function(name, testName, expected, testEnvironmentArg, async, callback) {
+	this.name = name;
+	this.testName = testName;
+	this.expected = expected;
+	this.testEnvironmentArg = testEnvironmentArg;
+	this.async = async;
+	this.callback = callback;
+	this.assertions = [];
+};
+Test.prototype = {
+	init: function() {
+		var tests = id("qunit-tests");
+		if (tests) {
+			var b = document.createElement("strong");
+				b.innerHTML = "Running " + this.name;
+			var li = document.createElement("li");
+				li.appendChild( b );
+				li.className = "running";
+				li.id = this.id = "test-output" + testId++;
+			tests.appendChild( li );
+		}
+	},
+	setup: function() {
+		if (this.module != config.previousModule) {
+			if ( config.previousModule ) {
+				QUnit.moduleDone( {
+					name: config.previousModule,
+					failed: config.moduleStats.bad,
+					passed: config.moduleStats.all - config.moduleStats.bad,
+					total: config.moduleStats.all
+				} );
+			}
+			config.previousModule = this.module;
+			config.moduleStats = { all: 0, bad: 0 };
+			QUnit.moduleStart( {
+				name: this.module
+			} );
+		}
+
+		config.current = this;
+		this.testEnvironment = extend({
+			setup: function() {},
+			teardown: function() {}
+		}, this.moduleTestEnvironment);
+		if (this.testEnvironmentArg) {
+			extend(this.testEnvironment, this.testEnvironmentArg);
+		}
+
+		QUnit.testStart( {
+			name: this.testName
+		} );
+
+		// allow utility functions to access the current test environment
+		// TODO why??
+		QUnit.current_testEnvironment = this.testEnvironment;
+
+		try {
+			if ( !config.pollution ) {
+				saveGlobal();
+			}
+
+			this.testEnvironment.setup.call(this.testEnvironment);
+		} catch(e) {
+			QUnit.ok( false, "Setup failed on " + this.testName + ": " + e.message );
+		}
+	},
+	run: function() {
+		if ( this.async ) {
+			QUnit.stop();
+		}
+
+		if ( config.notrycatch ) {
+			this.callback.call(this.testEnvironment);
+			return;
+		}
+		try {
+			this.callback.call(this.testEnvironment);
+		} catch(e) {
+			fail("Test " + this.testName + " died, exception and test follows", e, this.callback);
+			QUnit.ok( false, "Died on test #" + (this.assertions.length + 1) + ": " + e.message + " - " + QUnit.jsDump.parse(e) );
+			// else next test will carry the responsibility
+			saveGlobal();
+
+			// Restart the tests if they're blocking
+			if ( config.blocking ) {
+				start();
+			}
+		}
+	},
+	teardown: function() {
+		try {
+			this.testEnvironment.teardown.call(this.testEnvironment);
+			checkPollution();
+		} catch(e) {
+			QUnit.ok( false, "Teardown failed on " + this.testName + ": " + e.message );
+		}
+	},
+	finish: function() {
+		if ( this.expected && this.expected != this.assertions.length ) {
+			QUnit.ok( false, "Expected " + this.expected + " assertions, but " + this.assertions.length + " were run" );
+		}
+
+		var good = 0, bad = 0,
+			tests = id("qunit-tests");
+
+		config.stats.all += this.assertions.length;
+		config.moduleStats.all += this.assertions.length;
+
+		if ( tests ) {
+			var ol  = document.createElement("ol");
+
+			for ( var i = 0; i < this.assertions.length; i++ ) {
+				var assertion = this.assertions[i];
+
+				var li = document.createElement("li");
+				li.className = assertion.result ? "pass" : "fail";
+				li.innerHTML = assertion.message || (assertion.result ? "okay" : "failed");
+				ol.appendChild( li );
+
+				if ( assertion.result ) {
+					good++;
+				} else {
+					bad++;
+					config.stats.bad++;
+					config.moduleStats.bad++;
+				}
+			}
+
+			// store result when possible
+			if ( QUnit.config.reorder && defined.sessionStorage ) {
+				if (bad) {
+					sessionStorage.setItem("qunit-" + this.module + "-" + this.testName, bad);
+				} else {
+					sessionStorage.removeItem("qunit-" + this.module + "-" + this.testName);
+				}
+			}
+
+			if (bad == 0) {
+				ol.style.display = "none";
+			}
+
+			var b = document.createElement("strong");
+			b.innerHTML = this.name + " <b class='counts'>(<b class='failed'>" + bad + "</b>, <b class='passed'>" + good + "</b>, " + this.assertions.length + ")</b>";
+
+			var a = document.createElement("a");
+			a.innerHTML = "Rerun";
+			a.href = QUnit.url({ filter: getText([b]).replace(/\([^)]+\)$/, "").replace(/(^\s*|\s*$)/g, "") });
+
+			addEvent(b, "click", function() {
+				var next = b.nextSibling.nextSibling,
+					display = next.style.display;
+				next.style.display = display === "none" ? "block" : "none";
+			});
+
+			addEvent(b, "dblclick", function(e) {
+				var target = e && e.target ? e.target : window.event.srcElement;
+				if ( target.nodeName.toLowerCase() == "span" || target.nodeName.toLowerCase() == "b" ) {
+					target = target.parentNode;
+				}
+				if ( window.location && target.nodeName.toLowerCase() === "strong" ) {
+					window.location = QUnit.url({ filter: getText([target]).replace(/\([^)]+\)$/, "").replace(/(^\s*|\s*$)/g, "") });
+				}
+			});
+
+			var li = id(this.id);
+			li.className = bad ? "fail" : "pass";
+			li.removeChild( li.firstChild );
+			li.appendChild( b );
+			li.appendChild( a );
+			li.appendChild( ol );
+
+		} else {
+			for ( var i = 0; i < this.assertions.length; i++ ) {
+				if ( !this.assertions[i].result ) {
+					bad++;
+					config.stats.bad++;
+					config.moduleStats.bad++;
+				}
+			}
+		}
+
+		try {
+			QUnit.reset();
+		} catch(e) {
+			fail("reset() failed, following Test " + this.testName + ", exception and reset fn follows", e, QUnit.reset);
+		}
+
+		QUnit.testDone( {
+			name: this.testName,
+			failed: bad,
+			passed: this.assertions.length - bad,
+			total: this.assertions.length
+		} );
+	},
+
+	queue: function() {
+		var test = this;
+		synchronize(function() {
+			test.init();
+		});
+		function run() {
+			// each of these can by async
+			synchronize(function() {
+				test.setup();
+			});
+			synchronize(function() {
+				test.run();
+			});
+			synchronize(function() {
+				test.teardown();
+			});
+			synchronize(function() {
+				test.finish();
+			});
+		}
+		// defer when previous test run passed, if storage is available
+		var bad = QUnit.config.reorder && defined.sessionStorage && +sessionStorage.getItem("qunit-" + this.module + "-" + this.testName);
+		if (bad) {
+			run();
+		} else {
+			synchronize(run);
+		};
+	}
+
+};
+
+var QUnit = {
+
+	// call on start of module test to prepend name to all tests
+	module: function(name, testEnvironment) {
+		config.currentModule = name;
+		config.currentModuleTestEnviroment = testEnvironment;
+	},
+
+	asyncTest: function(testName, expected, callback) {
+		if ( arguments.length === 2 ) {
+			callback = expected;
+			expected = 0;
+		}
+
+		QUnit.test(testName, expected, callback, true);
+	},
+
+	test: function(testName, expected, callback, async) {
+		var name = '<span class="test-name">' + testName + '</span>', testEnvironmentArg;
+
+		if ( arguments.length === 2 ) {
+			callback = expected;
+			expected = null;
+		}
+		// is 2nd argument a testEnvironment?
+		if ( expected && typeof expected === 'object') {
+			testEnvironmentArg =  expected;
+			expected = null;
+		}
+
+		if ( config.currentModule ) {
+			name = '<span class="module-name">' + config.currentModule + "</span>: " + name;
+		}
+
+		if ( !validTest(config.currentModule + ": " + testName) ) {
+			return;
+		}
+
+		var test = new Test(name, testName, expected, testEnvironmentArg, async, callback);
+		test.module = config.currentModule;
+		test.moduleTestEnvironment = config.currentModuleTestEnviroment;
+		test.queue();
+	},
+
+	/**
+	 * Specify the number of expected assertions to gurantee that failed test (no assertions are run at all) don't slip through.
+	 */
+	expect: function(asserts) {
+		config.current.expected = asserts;
+	},
+
+	/**
+	 * Asserts true.
+	 * @example ok( "asdfasdf".length > 5, "There must be at least 5 chars" );
+	 */
+	ok: function(a, msg) {
+		a = !!a;
+		var details = {
+			result: a,
+			message: msg
+		};
+		msg = escapeHtml(msg);
+		QUnit.log(details);
+		config.current.assertions.push({
+			result: a,
+			message: msg
+		});
+	},
+
+	/**
+	 * Checks that the first two arguments are equal, with an optional message.
+	 * Prints out both actual and expected values.
+	 *
+	 * Prefered to ok( actual == expected, message )
+	 *
+	 * @example equal( format("Received {0} bytes.", 2), "Received 2 bytes." );
+	 *
+	 * @param Object actual
+	 * @param Object expected
+	 * @param String message (optional)
+	 */
+	equal: function(actual, expected, message) {
+		QUnit.push(expected == actual, actual, expected, message);
+	},
+
+	notEqual: function(actual, expected, message) {
+		QUnit.push(expected != actual, actual, expected, message);
+	},
+
+	deepEqual: function(actual, expected, message) {
+		QUnit.push(QUnit.equiv(actual, expected), actual, expected, message);
+	},
+
+	notDeepEqual: function(actual, expected, message) {
+		QUnit.push(!QUnit.equiv(actual, expected), actual, expected, message);
+	},
+
+	strictEqual: function(actual, expected, message) {
+		QUnit.push(expected === actual, actual, expected, message);
+	},
+
+	notStrictEqual: function(actual, expected, message) {
+		QUnit.push(expected !== actual, actual, expected, message);
+	},
+
+	raises: function(block, expected, message) {
+		var actual, ok = false;
+
+		if (typeof expected === 'string') {
+			message = expected;
+			expected = null;
+		}
+
+		try {
+			block();
+		} catch (e) {
+			actual = e;
+		}
+
+		if (actual) {
+			// we don't want to validate thrown error
+			if (!expected) {
+				ok = true;
+			// expected is a regexp
+			} else if (QUnit.objectType(expected) === "regexp") {
+				ok = expected.test(actual);
+			// expected is a constructor
+			} else if (actual instanceof expected) {
+				ok = true;
+			// expected is a validation function which returns true is validation passed
+			} else if (expected.call({}, actual) === true) {
+				ok = true;
+			}
+		}
+
+		QUnit.ok(ok, message);
+	},
+
+	start: function() {
+		config.semaphore--;
+		if (config.semaphore > 0) {
+			// don't start until equal number of stop-calls
+			return;
+		}
+		if (config.semaphore < 0) {
+			// ignore if start is called more often then stop
+			config.semaphore = 0;
+		}
+		// A slight delay, to avoid any current callbacks
+		if ( defined.setTimeout ) {
+			window.setTimeout(function() {
+				if ( config.timeout ) {
+					clearTimeout(config.timeout);
+				}
+
+				config.blocking = false;
+				process();
+			}, 13);
+		} else {
+			config.blocking = false;
+			process();
+		}
+	},
+
+	stop: function(timeout) {
+		config.semaphore++;
+		config.blocking = true;
+
+		if ( timeout && defined.setTimeout ) {
+			clearTimeout(config.timeout);
+			config.timeout = window.setTimeout(function() {
+				QUnit.ok( false, "Test timed out" );
+				QUnit.start();
+			}, timeout);
+		}
+	}
+};
+
+// Backwards compatibility, deprecated
+QUnit.equals = QUnit.equal;
+QUnit.same = QUnit.deepEqual;
+
+// Maintain internal state
+var config = {
+	// The queue of tests to run
+	queue: [],
+
+	// block until document ready
+	blocking: true,
+
+	// by default, run previously failed tests first
+	// very useful in combination with "Hide passed tests" checked
+	reorder: true,
+
+	noglobals: false,
+	notrycatch: false
+};
+
+// Load paramaters
+(function() {
+	var location = window.location || { search: "", protocol: "file:" },
+		params = location.search.slice( 1 ).split( "&" ),
+		length = params.length,
+		urlParams = {},
+		current;
+
+	if ( params[ 0 ] ) {
+		for ( var i = 0; i < length; i++ ) {
+			current = params[ i ].split( "=" );
+			current[ 0 ] = decodeURIComponent( current[ 0 ] );
+			// allow just a key to turn on a flag, e.g., test.html?noglobals
+			current[ 1 ] = current[ 1 ] ? decodeURIComponent( current[ 1 ] ) : true;
+			urlParams[ current[ 0 ] ] = current[ 1 ];
+			if ( current[ 0 ] in config ) {
+				config[ current[ 0 ] ] = current[ 1 ];
+			}
+		}
+	}
+
+	QUnit.urlParams = urlParams;
+	config.filter = urlParams.filter;
+
+	// Figure out if we're running the tests from a server or not
+	QUnit.isLocal = !!(location.protocol === 'file:');
+})();
+
+// Expose the API as global variables, unless an 'exports'
+// object exists, in that case we assume we're in CommonJS
+if ( typeof exports === "undefined" || typeof require === "undefined" ) {
+	extend(window, QUnit);
+	window.QUnit = QUnit;
+} else {
+	extend(exports, QUnit);
+	exports.QUnit = QUnit;
+}
+
+// define these after exposing globals to keep them in these QUnit namespace only
+extend(QUnit, {
+	config: config,
+
+	// Initialize the configuration options
+	init: function() {
+		extend(config, {
+			stats: { all: 0, bad: 0 },
+			moduleStats: { all: 0, bad: 0 },
+			started: +new Date,
+			updateRate: 1000,
+			blocking: false,
+			autostart: true,
+			autorun: false,
+			filter: "",
+			queue: [],
+			semaphore: 0
+		});
+
+		var tests = id( "qunit-tests" ),
+			banner = id( "qunit-banner" ),
+			result = id( "qunit-testresult" );
+
+		if ( tests ) {
+			tests.innerHTML = "";
+		}
+
+		if ( banner ) {
+			banner.className = "";
+		}
+
+		if ( result ) {
+			result.parentNode.removeChild( result );
+		}
+
+		if ( tests ) {
+			result = document.createElement( "p" );
+			result.id = "qunit-testresult";
+			result.className = "result";
+			tests.parentNode.insertBefore( result, tests );
+			result.innerHTML = 'Running...<br/>&nbsp;';
+		}
+	},
+
+	/**
+	 * Resets the test setup. Useful for tests that modify the DOM.
+	 *
+	 * If jQuery is available, uses jQuery's html(), otherwise just innerHTML.
+	 */
+	reset: function() {
+		if ( window.jQuery ) {
+			jQuery( "#qunit-fixture" ).html( config.fixture );
+		} else {
+			var main = id( 'qunit-fixture' );
+			if ( main ) {
+				main.innerHTML = config.fixture;
+			}
+		}
+	},
+
+	/**
+	 * Trigger an event on an element.
+	 *
+	 * @example triggerEvent( document.body, "click" );
+	 *
+	 * @param DOMElement elem
+	 * @param String type
+	 */
+	triggerEvent: function( elem, type, event ) {
+		if ( document.createEvent ) {
+			event = document.createEvent("MouseEvents");
+			event.initMouseEvent(type, true, true, elem.ownerDocument.defaultView,
+				0, 0, 0, 0, 0, false, false, false, false, 0, null);
+			elem.dispatchEvent( event );
+
+		} else if ( elem.fireEvent ) {
+			elem.fireEvent("on"+type);
+		}
+	},
+
+	// Safe object type checking
+	is: function( type, obj ) {
+		return QUnit.objectType( obj ) == type;
+	},
+
+	objectType: function( obj ) {
+		if (typeof obj === "undefined") {
+				return "undefined";
+
+		// consider: typeof null === object
+		}
+		if (obj === null) {
+				return "null";
+		}
+
+		var type = Object.prototype.toString.call( obj )
+			.match(/^\[object\s(.*)\]$/)[1] || '';
+
+		switch (type) {
+				case 'Number':
+						if (isNaN(obj)) {
+								return "nan";
+						} else {
+								return "number";
+						}
+				case 'String':
+				case 'Boolean':
+				case 'Array':
+				case 'Date':
+				case 'RegExp':
+				case 'Function':
+						return type.toLowerCase();
+		}
+		if (typeof obj === "object") {
+				return "object";
+		}
+		return undefined;
+	},
+
+	push: function(result, actual, expected, message) {
+		var details = {
+			result: result,
+			message: message,
+			actual: actual,
+			expected: expected
+		};
+
+		message = escapeHtml(message) || (result ? "okay" : "failed");
+		message = '<span class="test-message">' + message + "</span>";
+		expected = escapeHtml(QUnit.jsDump.parse(expected));
+		actual = escapeHtml(QUnit.jsDump.parse(actual));
+		var output = message + '<table><tr class="test-expected"><th>Expected: </th><td><pre>' + expected + '</pre></td></tr>';
+		if (actual != expected) {
+			output += '<tr class="test-actual"><th>Result: </th><td><pre>' + actual + '</pre></td></tr>';
+			output += '<tr class="test-diff"><th>Diff: </th><td><pre>' + QUnit.diff(expected, actual) +'</pre></td></tr>';
+		}
+		if (!result) {
+			var source = sourceFromStacktrace();
+			if (source) {
+				details.source = source;
+				output += '<tr class="test-source"><th>Source: </th><td><pre>' + escapeHtml(source) + '</pre></td></tr>';
+			}
+		}
+		output += "</table>";
+
+		QUnit.log(details);
+
+		config.current.assertions.push({
+			result: !!result,
+			message: output
+		});
+	},
+
+	url: function( params ) {
+		params = extend( extend( {}, QUnit.urlParams ), params );
+		var querystring = "?",
+			key;
+		for ( key in params ) {
+			querystring += encodeURIComponent( key ) + "=" +
+				encodeURIComponent( params[ key ] ) + "&";
+		}
+		return window.location.pathname + querystring.slice( 0, -1 );
+	},
+
+	// Logging callbacks; all receive a single argument with the listed properties
+	// run test/logs.html for any related changes
+	begin: function() {},
+	// done: { failed, passed, total, runtime }
+	done: function() {},
+	// log: { result, actual, expected, message }
+	log: function() {},
+	// testStart: { name }
+	testStart: function() {},
+	// testDone: { name, failed, passed, total }
+	testDone: function() {},
+	// moduleStart: { name }
+	moduleStart: function() {},
+	// moduleDone: { name, failed, passed, total }
+	moduleDone: function() {}
+});
+
+if ( typeof document === "undefined" || document.readyState === "complete" ) {
+	config.autorun = true;
+}
+
+addEvent(window, "load", function() {
+	QUnit.begin({});
+
+	// Initialize the config, saving the execution queue
+	var oldconfig = extend({}, config);
+	QUnit.init();
+	extend(config, oldconfig);
+
+	config.blocking = false;
+
+	var userAgent = id("qunit-userAgent");
+	if ( userAgent ) {
+		userAgent.innerHTML = navigator.userAgent;
+	}
+	var banner = id("qunit-header");
+	if ( banner ) {
+		banner.innerHTML = '<a href="' + QUnit.url({ filter: undefined }) + '"> ' + banner.innerHTML + '</a> ' +
+			'<label><input name="noglobals" type="checkbox"' + ( config.noglobals ? ' checked="checked"' : '' ) + '>noglobals</label>' +
+			'<label><input name="notrycatch" type="checkbox"' + ( config.notrycatch ? ' checked="checked"' : '' ) + '>notrycatch</label>';
+		addEvent( banner, "change", function( event ) {
+			var params = {};
+			params[ event.target.name ] = event.target.checked ? true : undefined;
+			window.location = QUnit.url( params );
+		});
+	}
+
+	var toolbar = id("qunit-testrunner-toolbar");
+	if ( toolbar ) {
+		var filter = document.createElement("input");
+		filter.type = "checkbox";
+		filter.id = "qunit-filter-pass";
+		addEvent( filter, "click", function() {
+			var ol = document.getElementById("qunit-tests");
+			if ( filter.checked ) {
+				ol.className = ol.className + " hidepass";
+			} else {
+				var tmp = " " + ol.className.replace( /[\n\t\r]/g, " " ) + " ";
+				ol.className = tmp.replace(/ hidepass /, " ");
+			}
+			if ( defined.sessionStorage ) {
+				if (filter.checked) {
+					sessionStorage.setItem("qunit-filter-passed-tests",  "true");
+				} else {
+					sessionStorage.removeItem("qunit-filter-passed-tests");
+				}
+			}
+		});
+		if ( defined.sessionStorage && sessionStorage.getItem("qunit-filter-passed-tests") ) {
+			filter.checked = true;
+			var ol = document.getElementById("qunit-tests");
+			ol.className = ol.className + " hidepass";
+		}
+		toolbar.appendChild( filter );
+
+		var label = document.createElement("label");
+		label.setAttribute("for", "qunit-filter-pass");
+		label.innerHTML = "Hide passed tests";
+		toolbar.appendChild( label );
+	}
+
+	var main = id('qunit-fixture');
+	if ( main ) {
+		config.fixture = main.innerHTML;
+	}
+
+	if (config.autostart) {
+		QUnit.start();
+	}
+});
+
+function done() {
+	config.autorun = true;
+
+	// Log the last module results
+	if ( config.currentModule ) {
+		QUnit.moduleDone( {
+			name: config.currentModule,
+			failed: config.moduleStats.bad,
+			passed: config.moduleStats.all - config.moduleStats.bad,
+			total: config.moduleStats.all
+		} );
+	}
+
+	var banner = id("qunit-banner"),
+		tests = id("qunit-tests"),
+		runtime = +new Date - config.started,
+		passed = config.stats.all - config.stats.bad,
+		html = [
+			'Tests completed in ',
+			runtime,
+			' milliseconds.<br/>',
+			'<span class="passed">',
+			passed,
+			'</span> tests of <span class="total">',
+			config.stats.all,
+			'</span> passed, <span class="failed">',
+			config.stats.bad,
+			'</span> failed.'
+		].join('');
+
+	if ( banner ) {
+		banner.className = (config.stats.bad ? "qunit-fail" : "qunit-pass");
+	}
+
+	if ( tests ) {
+		id( "qunit-testresult" ).innerHTML = html;
+	}
+
+	if ( typeof document !== "undefined" && document.title ) {
+		// show ✖ for good, ✔ for bad suite result in title
+		// use escape sequences in case file gets loaded with non-utf-8-charset
+		document.title = (config.stats.bad ? "\u2716" : "\u2714") + " " + document.title;
+	}
+
+	QUnit.done( {
+		failed: config.stats.bad,
+		passed: passed,
+		total: config.stats.all,
+		runtime: runtime
+	} );
+}
+
+function validTest( name ) {
+	var filter = config.filter,
+		run = false;
+
+	if ( !filter ) {
+		return true;
+	}
+
+	var not = filter.charAt( 0 ) === "!";
+	if ( not ) {
+		filter = filter.slice( 1 );
+	}
+
+	if ( name.indexOf( filter ) !== -1 ) {
+		return !not;
+	}
+
+	if ( not ) {
+		run = true;
+	}
+
+	return run;
+}
+
+// so far supports only Firefox, Chrome and Opera (buggy)
+// could be extended in the future to use something like https://github.com/csnover/TraceKit
+function sourceFromStacktrace() {
+	try {
+		throw new Error();
+	} catch ( e ) {
+		if (e.stacktrace) {
+			// Opera
+			return e.stacktrace.split("\n")[6];
+		} else if (e.stack) {
+			// Firefox, Chrome
+			return e.stack.split("\n")[4];
+		}
+	}
+}
+
+function escapeHtml(s) {
+	if (!s) {
+		return "";
+	}
+	s = s + "";
+	return s.replace(/[\&"<>\\]/g, function(s) {
+		switch(s) {
+			case "&": return "&amp;";
+			case "\\": return "\\\\";
+			case '"': return '\"';
+			case "<": return "&lt;";
+			case ">": return "&gt;";
+			default: return s;
+		}
+	});
+}
+
+function synchronize( callback ) {
+	config.queue.push( callback );
+
+	if ( config.autorun && !config.blocking ) {
+		process();
+	}
+}
+
+function process() {
+	var start = (new Date()).getTime();
+
+	while ( config.queue.length && !config.blocking ) {
+		if ( config.updateRate <= 0 || (((new Date()).getTime() - start) < config.updateRate) ) {
+			config.queue.shift()();
+		} else {
+			window.setTimeout( process, 13 );
+			break;
+		}
+	}
+  if (!config.blocking && !config.queue.length) {
+    done();
+  }
+}
+
+function saveGlobal() {
+	config.pollution = [];
+
+	if ( config.noglobals ) {
+		for ( var key in window ) {
+			config.pollution.push( key );
+		}
+	}
+}
+
+function checkPollution( name ) {
+	var old = config.pollution;
+	saveGlobal();
+
+	var newGlobals = diff( config.pollution, old );
+	if ( newGlobals.length > 0 ) {
+		ok( false, "Introduced global variable(s): " + newGlobals.join(", ") );
+	}
+
+	var deletedGlobals = diff( old, config.pollution );
+	if ( deletedGlobals.length > 0 ) {
+		ok( false, "Deleted global variable(s): " + deletedGlobals.join(", ") );
+	}
+}
+
+// returns a new Array with the elements that are in a but not in b
+function diff( a, b ) {
+	var result = a.slice();
+	for ( var i = 0; i < result.length; i++ ) {
+		for ( var j = 0; j < b.length; j++ ) {
+			if ( result[i] === b[j] ) {
+				result.splice(i, 1);
+				i--;
+				break;
+			}
+		}
+	}
+	return result;
+}
+
+function fail(message, exception, callback) {
+	if ( typeof console !== "undefined" && console.error && console.warn ) {
+		console.error(message);
+		console.error(exception);
+		console.warn(callback.toString());
+
+	} else if ( window.opera && opera.postError ) {
+		opera.postError(message, exception, callback.toString);
+	}
+}
+
+function extend(a, b) {
+	for ( var prop in b ) {
+		if ( b[prop] === undefined ) {
+			delete a[prop];
+		} else {
+			a[prop] = b[prop];
+		}
+	}
+
+	return a;
+}
+
+function addEvent(elem, type, fn) {
+	if ( elem.addEventListener ) {
+		elem.addEventListener( type, fn, false );
+	} else if ( elem.attachEvent ) {
+		elem.attachEvent( "on" + type, fn );
+	} else {
+		fn();
+	}
+}
+
+function id(name) {
+	return !!(typeof document !== "undefined" && document && document.getElementById) &&
+		document.getElementById( name );
+}
+
+// Test for equality any JavaScript type.
+// Discussions and reference: http://philrathe.com/articles/equiv
+// Test suites: http://philrathe.com/tests/equiv
+// Author: Philippe Rathé <prathe@gmail.com>
+QUnit.equiv = function () {
+
+    var innerEquiv; // the real equiv function
+    var callers = []; // stack to decide between skip/abort functions
+    var parents = []; // stack to avoiding loops from circular referencing
+
+    // Call the o related callback with the given arguments.
+    function bindCallbacks(o, callbacks, args) {
+        var prop = QUnit.objectType(o);
+        if (prop) {
+            if (QUnit.objectType(callbacks[prop]) === "function") {
+                return callbacks[prop].apply(callbacks, args);
+            } else {
+                return callbacks[prop]; // or undefined
+            }
+        }
+    }
+
+    var callbacks = function () {
+
+        // for string, boolean, number and null
+        function useStrictEquality(b, a) {
+            if (b instanceof a.constructor || a instanceof b.constructor) {
+                // to catch short annotaion VS 'new' annotation of a declaration
+                // e.g. var i = 1;
+                //      var j = new Number(1);
+                return a == b;
+            } else {
+                return a === b;
+            }
+        }
+
+        return {
+            "string": useStrictEquality,
+            "boolean": useStrictEquality,
+            "number": useStrictEquality,
+            "null": useStrictEquality,
+            "undefined": useStrictEquality,
+
+            "nan": function (b) {
+                return isNaN(b);
+            },
+
+            "date": function (b, a) {
+                return QUnit.objectType(b) === "date" && a.valueOf() === b.valueOf();
+            },
+
+            "regexp": function (b, a) {
+                return QUnit.objectType(b) === "regexp" &&
+                    a.source === b.source && // the regex itself
+                    a.global === b.global && // and its modifers (gmi) ...
+                    a.ignoreCase === b.ignoreCase &&
+                    a.multiline === b.multiline;
+            },
+
+            // - skip when the property is a method of an instance (OOP)
+            // - abort otherwise,
+            //   initial === would have catch identical references anyway
+            "function": function () {
+                var caller = callers[callers.length - 1];
+                return caller !== Object &&
+                        typeof caller !== "undefined";
+            },
+
+            "array": function (b, a) {
+                var i, j, loop;
+                var len;
+
+                // b could be an object literal here
+                if ( ! (QUnit.objectType(b) === "array")) {
+                    return false;
+                }
+
+                len = a.length;
+                if (len !== b.length) { // safe and faster
+                    return false;
+                }
+
+                //track reference to avoid circular references
+                parents.push(a);
+                for (i = 0; i < len; i++) {
+                    loop = false;
+                    for(j=0;j<parents.length;j++){
+                        if(parents[j] === a[i]){
+                            loop = true;//dont rewalk array
+                        }
+                    }
+                    if (!loop && ! innerEquiv(a[i], b[i])) {
+                        parents.pop();
+                        return false;
+                    }
+                }
+                parents.pop();
+                return true;
+            },
+
+            "object": function (b, a) {
+                var i, j, loop;
+                var eq = true; // unless we can proove it
+                var aProperties = [], bProperties = []; // collection of strings
+
+                // comparing constructors is more strict than using instanceof
+                if ( a.constructor !== b.constructor) {
+                    return false;
+                }
+
+                // stack constructor before traversing properties
+                callers.push(a.constructor);
+                //track reference to avoid circular references
+                parents.push(a);
+
+                for (i in a) { // be strict: don't ensures hasOwnProperty and go deep
+                    loop = false;
+                    for(j=0;j<parents.length;j++){
+                        if(parents[j] === a[i])
+                            loop = true; //don't go down the same path twice
+                    }
+                    aProperties.push(i); // collect a's properties
+
+                    if (!loop && ! innerEquiv(a[i], b[i])) {
+                        eq = false;
+                        break;
+                    }
+                }
+
+                callers.pop(); // unstack, we are done
+                parents.pop();
+
+                for (i in b) {
+                    bProperties.push(i); // collect b's properties
+                }
+
+                // Ensures identical properties name
+                return eq && innerEquiv(aProperties.sort(), bProperties.sort());
+            }
+        };
+    }();
+
+    innerEquiv = function () { // can take multiple arguments
+        var args = Array.prototype.slice.apply(arguments);
+        if (args.length < 2) {
+            return true; // end transition
+        }
+
+        return (function (a, b) {
+            if (a === b) {
+                return true; // catch the most you can
+            } else if (a === null || b === null || typeof a === "undefined" || typeof b === "undefined" || QUnit.objectType(a) !== QUnit.objectType(b)) {
+                return false; // don't lose time with error prone cases
+            } else {
+                return bindCallbacks(a, callbacks, [b, a]);
+            }
+
+        // apply transition with (1..n) arguments
+        })(args[0], args[1]) && arguments.callee.apply(this, args.splice(1, args.length -1));
+    };
+
+    return innerEquiv;
+
+}();
+
+/**
+ * jsDump
+ * Copyright (c) 2008 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
+ * Licensed under BSD (http://www.opensource.org/licenses/bsd-license.php)
+ * Date: 5/15/2008
+ * @projectDescription Advanced and extensible data dumping for Javascript.
+ * @version 1.0.0
+ * @author Ariel Flesler
+ * @link {http://flesler.blogspot.com/2008/05/jsdump-pretty-dump-of-any-javascript.html}
+ */
+QUnit.jsDump = (function() {
+	function quote( str ) {
+		return '"' + str.toString().replace(/"/g, '\\"') + '"';
+	};
+	function literal( o ) {
+		return o + '';
+	};
+	function join( pre, arr, post ) {
+		var s = jsDump.separator(),
+			base = jsDump.indent(),
+			inner = jsDump.indent(1);
+		if ( arr.join )
+			arr = arr.join( ',' + s + inner );
+		if ( !arr )
+			return pre + post;
+		return [ pre, inner + arr, base + post ].join(s);
+	};
+	function array( arr ) {
+		var i = arr.length,	ret = Array(i);
+		this.up();
+		while ( i-- )
+			ret[i] = this.parse( arr[i] );
+		this.down();
+		return join( '[', ret, ']' );
+	};
+
+	var reName = /^function (\w+)/;
+
+	var jsDump = {
+		parse:function( obj, type ) { //type is used mostly internally, you can fix a (custom)type in advance
+			var	parser = this.parsers[ type || this.typeOf(obj) ];
+			type = typeof parser;
+
+			return type == 'function' ? parser.call( this, obj ) :
+				   type == 'string' ? parser :
+				   this.parsers.error;
+		},
+		typeOf:function( obj ) {
+			var type;
+			if ( obj === null ) {
+				type = "null";
+			} else if (typeof obj === "undefined") {
+				type = "undefined";
+			} else if (QUnit.is("RegExp", obj)) {
+				type = "regexp";
+			} else if (QUnit.is("Date", obj)) {
+				type = "date";
+			} else if (QUnit.is("Function", obj)) {
+				type = "function";
+			} else if (typeof obj.setInterval !== undefined && typeof obj.document !== "undefined" && typeof obj.nodeType === "undefined") {
+				type = "window";
+			} else if (obj.nodeType === 9) {
+				type = "document";
+			} else if (obj.nodeType) {
+				type = "node";
+			} else if (typeof obj === "object" && typeof obj.length === "number" && obj.length >= 0) {
+				type = "array";
+			} else {
+				type = typeof obj;
+			}
+			return type;
+		},
+		separator:function() {
+			return this.multiline ?	this.HTML ? '<br />' : '\n' : this.HTML ? '&nbsp;' : ' ';
+		},
+		indent:function( extra ) {// extra can be a number, shortcut for increasing-calling-decreasing
+			if ( !this.multiline )
+				return '';
+			var chr = this.indentChar;
+			if ( this.HTML )
+				chr = chr.replace(/\t/g,'   ').replace(/ /g,'&nbsp;');
+			return Array( this._depth_ + (extra||0) ).join(chr);
+		},
+		up:function( a ) {
+			this._depth_ += a || 1;
+		},
+		down:function( a ) {
+			this._depth_ -= a || 1;
+		},
+		setParser:function( name, parser ) {
+			this.parsers[name] = parser;
+		},
+		// The next 3 are exposed so you can use them
+		quote:quote,
+		literal:literal,
+		join:join,
+		//
+		_depth_: 1,
+		// This is the list of parsers, to modify them, use jsDump.setParser
+		parsers:{
+			window: '[Window]',
+			document: '[Document]',
+			error:'[ERROR]', //when no parser is found, shouldn't happen
+			unknown: '[Unknown]',
+			'null':'null',
+			'undefined':'undefined',
+			'function':function( fn ) {
+				var ret = 'function',
+					name = 'name' in fn ? fn.name : (reName.exec(fn)||[])[1];//functions never have name in IE
+				if ( name )
+					ret += ' ' + name;
+				ret += '(';
+
+				ret = [ ret, QUnit.jsDump.parse( fn, 'functionArgs' ), '){'].join('');
+				return join( ret, QUnit.jsDump.parse(fn,'functionCode'), '}' );
+			},
+			array: array,
+			nodelist: array,
+			arguments: array,
+			object:function( map ) {
+				var ret = [ ];
+				QUnit.jsDump.up();
+				for ( var key in map )
+					ret.push( QUnit.jsDump.parse(key,'key') + ': ' + QUnit.jsDump.parse(map[key]) );
+				QUnit.jsDump.down();
+				return join( '{', ret, '}' );
+			},
+			node:function( node ) {
+				var open = QUnit.jsDump.HTML ? '&lt;' : '<',
+					close = QUnit.jsDump.HTML ? '&gt;' : '>';
+
+				var tag = node.nodeName.toLowerCase(),
+					ret = open + tag;
+
+				for ( var a in QUnit.jsDump.DOMAttrs ) {
+					var val = node[QUnit.jsDump.DOMAttrs[a]];
+					if ( val )
+						ret += ' ' + a + '=' + QUnit.jsDump.parse( val, 'attribute' );
+				}
+				return ret + close + open + '/' + tag + close;
+			},
+			functionArgs:function( fn ) {//function calls it internally, it's the arguments part of the function
+				var l = fn.length;
+				if ( !l ) return '';
+
+				var args = Array(l);
+				while ( l-- )
+					args[l] = String.fromCharCode(97+l);//97 is 'a'
+				return ' ' + args.join(', ') + ' ';
+			},
+			key:quote, //object calls it internally, the key part of an item in a map
+			functionCode:'[code]', //function calls it internally, it's the content of the function
+			attribute:quote, //node calls it internally, it's an html attribute value
+			string:quote,
+			date:quote,
+			regexp:literal, //regex
+			number:literal,
+			'boolean':literal
+		},
+		DOMAttrs:{//attributes to dump from nodes, name=>realName
+			id:'id',
+			name:'name',
+			'class':'className'
+		},
+		HTML:false,//if true, entities are escaped ( <, >, \t, space and \n )
+		indentChar:'  ',//indentation unit
+		multiline:true //if true, items in a collection, are separated by a \n, else just a space.
+	};
+
+	return jsDump;
+})();
+
+// from Sizzle.js
+function getText( elems ) {
+	var ret = "", elem;
+
+	for ( var i = 0; elems[i]; i++ ) {
+		elem = elems[i];
+
+		// Get the text from text nodes and CDATA nodes
+		if ( elem.nodeType === 3 || elem.nodeType === 4 ) {
+			ret += elem.nodeValue;
+
+		// Traverse everything else, except comment nodes
+		} else if ( elem.nodeType !== 8 ) {
+			ret += getText( elem.childNodes );
+		}
+	}
+
+	return ret;
+};
+
+/*
+ * Javascript Diff Algorithm
+ *  By John Resig (http://ejohn.org/)
+ *  Modified by Chu Alan "sprite"
+ *
+ * Released under the MIT license.
+ *
+ * More Info:
+ *  http://ejohn.org/projects/javascript-diff-algorithm/
+ *
+ * Usage: QUnit.diff(expected, actual)
+ *
+ * QUnit.diff("the quick brown fox jumped over", "the quick fox jumps over") == "the  quick <del>brown </del> fox <del>jumped </del><ins>jumps </ins> over"
+ */
+QUnit.diff = (function() {
+	function diff(o, n){
+		var ns = new Object();
+		var os = new Object();
+
+		for (var i = 0; i < n.length; i++) {
+			if (ns[n[i]] == null)
+				ns[n[i]] = {
+					rows: new Array(),
+					o: null
+				};
+			ns[n[i]].rows.push(i);
+		}
+
+		for (var i = 0; i < o.length; i++) {
+			if (os[o[i]] == null)
+				os[o[i]] = {
+					rows: new Array(),
+					n: null
+				};
+			os[o[i]].rows.push(i);
+		}
+
+		for (var i in ns) {
+			if (ns[i].rows.length == 1 && typeof(os[i]) != "undefined" && os[i].rows.length == 1) {
+				n[ns[i].rows[0]] = {
+					text: n[ns[i].rows[0]],
+					row: os[i].rows[0]
+				};
+				o[os[i].rows[0]] = {
+					text: o[os[i].rows[0]],
+					row: ns[i].rows[0]
+				};
+			}
+		}
+
+		for (var i = 0; i < n.length - 1; i++) {
+			if (n[i].text != null && n[i + 1].text == null && n[i].row + 1 < o.length && o[n[i].row + 1].text == null &&
+			n[i + 1] == o[n[i].row + 1]) {
+				n[i + 1] = {
+					text: n[i + 1],
+					row: n[i].row + 1
+				};
+				o[n[i].row + 1] = {
+					text: o[n[i].row + 1],
+					row: i + 1
+				};
+			}
+		}
+
+		for (var i = n.length - 1; i > 0; i--) {
+			if (n[i].text != null && n[i - 1].text == null && n[i].row > 0 && o[n[i].row - 1].text == null &&
+			n[i - 1] == o[n[i].row - 1]) {
+				n[i - 1] = {
+					text: n[i - 1],
+					row: n[i].row - 1
+				};
+				o[n[i].row - 1] = {
+					text: o[n[i].row - 1],
+					row: i - 1
+				};
+			}
+		}
+
+		return {
+			o: o,
+			n: n
+		};
+	}
+
+	return function(o, n){
+		o = o.replace(/\s+$/, '');
+		n = n.replace(/\s+$/, '');
+		var out = diff(o == "" ? [] : o.split(/\s+/), n == "" ? [] : n.split(/\s+/));
+
+		var str = "";
+
+		var oSpace = o.match(/\s+/g);
+		if (oSpace == null) {
+			oSpace = [" "];
+		}
+		else {
+			oSpace.push(" ");
+		}
+		var nSpace = n.match(/\s+/g);
+		if (nSpace == null) {
+			nSpace = [" "];
+		}
+		else {
+			nSpace.push(" ");
+		}
+
+		if (out.n.length == 0) {
+			for (var i = 0; i < out.o.length; i++) {
+				str += '<del>' + out.o[i] + oSpace[i] + "</del>";
+			}
+		}
+		else {
+			if (out.n[0].text == null) {
+				for (n = 0; n < out.o.length && out.o[n].text == null; n++) {
+					str += '<del>' + out.o[n] + oSpace[n] + "</del>";
+				}
+			}
+
+			for (var i = 0; i < out.n.length; i++) {
+				if (out.n[i].text == null) {
+					str += '<ins>' + out.n[i] + nSpace[i] + "</ins>";
+				}
+				else {
+					var pre = "";
+
+					for (n = out.n[i].row + 1; n < out.o.length && out.o[n].text == null; n++) {
+						pre += '<del>' + out.o[n] + oSpace[n] + "</del>";
+					}
+					str += " " + out.n[i].text + nSpace[i] + pre;
+				}
+			}
+		}
+
+		return str;
+	};
+})();
+
+})(this);
diff --git a/Tools/qunit/test/headless.html b/Tools/qunit/test/headless.html
new file mode 100644
index 0000000..cd1eb7e
--- /dev/null
+++ b/Tools/qunit/test/headless.html
@@ -0,0 +1,24 @@
+<!DOCTYPE html>
+<html>
+<head>
+	<title>QUnit Test Suite</title>
+	<link rel="stylesheet" href="../qunit/qunit.css" type="text/css" media="screen">
+	<script type="text/javascript" src="../qunit/qunit.js"></script>
+	<script type="text/javascript" src="test.js"></script>
+	<script type="text/javascript" src="same.js"></script>
+	<script>
+		var logs = ["begin", "testStart", "testDone", "log", "moduleStart", "moduleDone", "done"];
+		for (var i = 0; i < logs.length; i++) {
+			(function() {
+				var log = logs[i];
+				QUnit[log] = function() {
+					console.log(log, arguments);
+				};
+			})();
+		}
+	</script>
+</head>
+<body>
+	<div id="qunit-fixture">test markup</div>
+</body>
+</html>
diff --git a/Tools/qunit/test/index.html b/Tools/qunit/test/index.html
new file mode 100644
index 0000000..64ccfcc
--- /dev/null
+++ b/Tools/qunit/test/index.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html>
+<head>
+	<meta charset="UTF-8" />
+	<title>QUnit Test Suite</title>
+	<link rel="stylesheet" href="../qunit/qunit.css" type="text/css" media="screen">
+	<script type="text/javascript" src="../qunit/qunit.js"></script>
+	<script type="text/javascript" src="test.js"></script>
+	<script type="text/javascript" src="same.js"></script>
+</head>
+<body>
+	<h1 id="qunit-header">QUnit Test Suite</h1>
+	<h2 id="qunit-banner"></h2>
+	<div id="qunit-testrunner-toolbar"></div>
+	<h2 id="qunit-userAgent"></h2>
+	<ol id="qunit-tests"></ol>
+	<div id="qunit-fixture">test markup</div>
+</body>
+</html>
diff --git a/Tools/qunit/test/logs.html b/Tools/qunit/test/logs.html
new file mode 100644
index 0000000..bd13507
--- /dev/null
+++ b/Tools/qunit/test/logs.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html>
+<head>
+	<title>QUnit Test Suite</title>
+	<link rel="stylesheet" href="../qunit/qunit.css" type="text/css" media="screen">
+	<script type="text/javascript" src="../qunit/qunit.js"></script>
+	<script type="text/javascript" src="logs.js"></script>
+</head>
+<body>
+	<h1 id="qunit-header">QUnit Test Suite</h1>
+	<h2 id="qunit-banner"></h2>
+	<div id="qunit-testrunner-toolbar"></div>
+	<h2 id="qunit-userAgent"></h2>
+	<ol id="qunit-tests"></ol>
+	<div id="qunit-fixture">test markup</div>
+</body>
+</html>
diff --git a/Tools/qunit/test/logs.js b/Tools/qunit/test/logs.js
new file mode 100644
index 0000000..64dc203
--- /dev/null
+++ b/Tools/qunit/test/logs.js
@@ -0,0 +1,150 @@
+// TODO disable reordering for this suite!
+
+
+var begin = 0,
+	moduleStart = 0,
+	moduleDone = 0,
+	testStart = 0,
+	testDone = 0,
+	log = 0,
+	moduleContext,
+	moduleDoneContext,
+	testContext,
+	testDoneContext,
+	logContext;
+
+QUnit.begin = function() {
+	begin++;
+};
+QUnit.done = function() {
+};
+QUnit.moduleStart = function(context) {
+	moduleStart++;
+	moduleContext = context;
+};
+QUnit.moduleDone = function(context) {
+	moduleDone++;
+	moduleDoneContext = context;
+};
+QUnit.testStart = function(context) {
+	testStart++;
+	testContext = context;
+};
+QUnit.testDone = function(context) {
+	testDone++;
+	testDoneContext = context;
+};
+QUnit.log = function(context) {
+	log++;
+	logContext = context;
+};
+
+var logs = ["begin", "testStart", "testDone", "log", "moduleStart", "moduleDone", "done"];
+for (var i = 0; i < logs.length; i++) {
+	(function() {
+		var log = logs[i],
+			logger = QUnit[log];
+		QUnit[log] = function() {
+			console.log(log, arguments);
+			logger.apply(this, arguments);
+		};
+	})();
+}
+
+module("logs1");
+
+test("test1", 13, function() {
+	equal(begin, 1);
+	equal(moduleStart, 1);
+	equal(testStart, 1);
+	equal(testDone, 0);
+	equal(moduleDone, 0);
+
+	deepEqual(logContext, {
+		result: true,
+		message: undefined,
+		actual: 0,
+		expected: 0
+	});
+	equal("foo", "foo", "msg");
+	deepEqual(logContext, {
+		result: true,
+		message: "msg",
+		actual: "foo",
+		expected: "foo"
+	});
+	strictEqual(testDoneContext, undefined);
+	deepEqual(testContext, {
+		name: "test1"
+	});
+	strictEqual(moduleDoneContext, undefined);
+	deepEqual(moduleContext, {
+		name: "logs1"
+	});
+
+	equal(log, 12);
+});
+test("test2", 10, function() {
+	equal(begin, 1);
+	equal(moduleStart, 1);
+	equal(testStart, 2);
+	equal(testDone, 1);
+	equal(moduleDone, 0);
+
+	deepEqual(testDoneContext, {
+		name: "test1",
+		failed: 0,
+		passed: 13,
+		total: 13
+	});
+	deepEqual(testContext, {
+		name: "test2"
+	});
+	strictEqual(moduleDoneContext, undefined);
+	deepEqual(moduleContext, {
+		name: "logs1"
+	});
+
+	equal(log, 22);
+});
+
+module("logs2");
+
+test("test1", 9, function() {
+	equal(begin, 1);
+	equal(moduleStart, 2);
+	equal(testStart, 3);
+	equal(testDone, 2);
+	equal(moduleDone, 1);
+
+	deepEqual(testContext, {
+		name: "test1"
+	});
+	deepEqual(moduleDoneContext, {
+		name: "logs1",
+		failed: 0,
+		passed: 23,
+		total: 23
+	});
+	deepEqual(moduleContext, {
+		name: "logs2"
+	});
+
+	equal(log, 31);
+});
+test("test2", 8, function() {
+	equal(begin, 1);
+	equal(moduleStart, 2);
+	equal(testStart, 4);
+	equal(testDone, 3);
+	equal(moduleDone, 1);
+
+	deepEqual(testContext, {
+		name: "test2"
+	});
+	deepEqual(moduleContext, {
+		name: "logs2"
+	});
+
+	equal(log, 39);
+});
diff --git a/Tools/qunit/test/same.js b/Tools/qunit/test/same.js
new file mode 100644
index 0000000..fa7e3eb
--- /dev/null
+++ b/Tools/qunit/test/same.js
@@ -0,0 +1,1421 @@
+module("equiv");
+
+
+test("Primitive types and constants", function () {
+    equals(QUnit.equiv(null, null), true, "null");
+    equals(QUnit.equiv(null, {}), false, "null");
+    equals(QUnit.equiv(null, undefined), false, "null");
+    equals(QUnit.equiv(null, 0), false, "null");
+    equals(QUnit.equiv(null, false), false, "null");
+    equals(QUnit.equiv(null, ''), false, "null");
+    equals(QUnit.equiv(null, []), false, "null");
+
+    equals(QUnit.equiv(undefined, undefined), true, "undefined");
+    equals(QUnit.equiv(undefined, null), false, "undefined");
+    equals(QUnit.equiv(undefined, 0), false, "undefined");
+    equals(QUnit.equiv(undefined, false), false, "undefined");
+    equals(QUnit.equiv(undefined, {}), false, "undefined");
+    equals(QUnit.equiv(undefined, []), false, "undefined");
+    equals(QUnit.equiv(undefined, ""), false, "undefined");
+
+    // Nan usually doest not equal to Nan using the '==' operator.
+    // Only isNaN() is able to do it.
+    equals(QUnit.equiv(0/0, 0/0), true, "NaN"); // NaN VS NaN
+    equals(QUnit.equiv(1/0, 2/0), true, "Infinity"); // Infinity VS Infinity
+    equals(QUnit.equiv(-1/0, 2/0), false, "-Infinity, Infinity"); // -Infinity VS Infinity
+    equals(QUnit.equiv(-1/0, -2/0), true, "-Infinity, -Infinity"); // -Infinity VS -Infinity
+    equals(QUnit.equiv(0/0, 1/0), false, "NaN, Infinity"); // Nan VS Infinity
+    equals(QUnit.equiv(1/0, 0/0), false, "NaN, Infinity"); // Nan VS Infinity
+    equals(QUnit.equiv(0/0, null), false, "NaN");
+    equals(QUnit.equiv(0/0, undefined), false, "NaN");
+    equals(QUnit.equiv(0/0, 0), false, "NaN");
+    equals(QUnit.equiv(0/0, false), false, "NaN");
+    equals(QUnit.equiv(0/0, function () {}), false, "NaN");
+    equals(QUnit.equiv(1/0, null), false, "NaN, Infinity");
+    equals(QUnit.equiv(1/0, undefined), false, "NaN, Infinity");
+    equals(QUnit.equiv(1/0, 0), false, "NaN, Infinity");
+    equals(QUnit.equiv(1/0, 1), false, "NaN, Infinity");
+    equals(QUnit.equiv(1/0, false), false, "NaN, Infinity");
+    equals(QUnit.equiv(1/0, true), false, "NaN, Infinity");
+    equals(QUnit.equiv(1/0, function () {}), false, "NaN, Infinity");
+
+    equals(QUnit.equiv(0, 0), true, "number");
+    equals(QUnit.equiv(0, 1), false, "number");
+    equals(QUnit.equiv(1, 0), false, "number");
+    equals(QUnit.equiv(1, 1), true, "number");
+    equals(QUnit.equiv(1.1, 1.1), true, "number");
+    equals(QUnit.equiv(0.0000005, 0.0000005), true, "number");
+    equals(QUnit.equiv(0, ''), false, "number");
+    equals(QUnit.equiv(0, '0'), false, "number");
+    equals(QUnit.equiv(1, '1'), false, "number");
+    equals(QUnit.equiv(0, false), false, "number");
+    equals(QUnit.equiv(1, true), false, "number");
+
+    equals(QUnit.equiv(true, true), true, "boolean");
+    equals(QUnit.equiv(true, false), false, "boolean");
+    equals(QUnit.equiv(false, true), false, "boolean");
+    equals(QUnit.equiv(false, 0), false, "boolean");
+    equals(QUnit.equiv(false, null), false, "boolean");
+    equals(QUnit.equiv(false, undefined), false, "boolean");
+    equals(QUnit.equiv(true, 1), false, "boolean");
+    equals(QUnit.equiv(true, null), false, "boolean");
+    equals(QUnit.equiv(true, undefined), false, "boolean");
+
+    equals(QUnit.equiv('', ''), true, "string");
+    equals(QUnit.equiv('a', 'a'), true, "string");
+    equals(QUnit.equiv("foobar", "foobar"), true, "string");
+    equals(QUnit.equiv("foobar", "foo"), false, "string");
+    equals(QUnit.equiv('', 0), false, "string");
+    equals(QUnit.equiv('', false), false, "string");
+    equals(QUnit.equiv('', null), false, "string");
+    equals(QUnit.equiv('', undefined), false, "string");
+
+    // Short annotation VS new annotation
+    equals(QUnit.equiv(0, new Number()), true, "short annotation VS new annotation");
+    equals(QUnit.equiv(new Number(), 0), true, "short annotation VS new annotation");
+    equals(QUnit.equiv(1, new Number(1)), true, "short annotation VS new annotation");
+    equals(QUnit.equiv(new Number(1), 1), true, "short annotation VS new annotation");
+    equals(QUnit.equiv(new Number(0), 1), false, "short annotation VS new annotation");
+    equals(QUnit.equiv(0, new Number(1)), false, "short annotation VS new annotation");
+
+    equals(QUnit.equiv(new String(), ""), true, "short annotation VS new annotation");
+    equals(QUnit.equiv("", new String()), true, "short annotation VS new annotation");
+    equals(QUnit.equiv(new String("My String"), "My String"), true, "short annotation VS new annotation");
+    equals(QUnit.equiv("My String", new String("My String")), true, "short annotation VS new annotation");
+    equals(QUnit.equiv("Bad String", new String("My String")), false, "short annotation VS new annotation");
+    equals(QUnit.equiv(new String("Bad String"), "My String"), false, "short annotation VS new annotation");
+
+    equals(QUnit.equiv(false, new Boolean()), true, "short annotation VS new annotation");
+    equals(QUnit.equiv(new Boolean(), false), true, "short annotation VS new annotation");
+    equals(QUnit.equiv(true, new Boolean(true)), true, "short annotation VS new annotation");
+    equals(QUnit.equiv(new Boolean(true), true), true, "short annotation VS new annotation");
+    equals(QUnit.equiv(true, new Boolean(1)), true, "short annotation VS new annotation");
+    equals(QUnit.equiv(false, new Boolean(false)), true, "short annotation VS new annotation");
+    equals(QUnit.equiv(new Boolean(false), false), true, "short annotation VS new annotation");
+    equals(QUnit.equiv(false, new Boolean(0)), true, "short annotation VS new annotation");
+    equals(QUnit.equiv(true, new Boolean(false)), false, "short annotation VS new annotation");
+    equals(QUnit.equiv(new Boolean(false), true), false, "short annotation VS new annotation");
+
+    equals(QUnit.equiv(new Object(), {}), true, "short annotation VS new annotation");
+    equals(QUnit.equiv({}, new Object()), true, "short annotation VS new annotation");
+    equals(QUnit.equiv(new Object(), {a:1}), false, "short annotation VS new annotation");
+    equals(QUnit.equiv({a:1}, new Object()), false, "short annotation VS new annotation");
+    equals(QUnit.equiv({a:undefined}, new Object()), false, "short annotation VS new annotation");
+    equals(QUnit.equiv(new Object(), {a:undefined}), false, "short annotation VS new annotation");
+});
+
+test("Objects Basics.", function() {
+    equals(QUnit.equiv({}, {}), true);
+    equals(QUnit.equiv({}, null), false);
+    equals(QUnit.equiv({}, undefined), false);
+    equals(QUnit.equiv({}, 0), false);
+    equals(QUnit.equiv({}, false), false);
+
+    // This test is a hard one, it is very important
+    // REASONS:
+    //      1) They are of the same type "object"
+    //      2) [] instanceof Object is true
+    //      3) Their properties are the same (doesn't exists)
+    equals(QUnit.equiv({}, []), false);
+
+    equals(QUnit.equiv({a:1}, {a:1}), true);
+    equals(QUnit.equiv({a:1}, {a:"1"}), false);
+    equals(QUnit.equiv({a:[]}, {a:[]}), true);
+    equals(QUnit.equiv({a:{}}, {a:null}), false);
+    equals(QUnit.equiv({a:1}, {}), false);
+    equals(QUnit.equiv({}, {a:1}), false);
+
+    // Hard ones
+    equals(QUnit.equiv({a:undefined}, {}), false);
+    equals(QUnit.equiv({}, {a:undefined}), false);
+    equals(QUnit.equiv(
+        {
+            a: [{ bar: undefined }]
+        },
+        {
+            a: [{ bat: undefined }]
+        }
+    ), false);
+});
+
+
+test("Arrays Basics.", function() {
+
+    equals(QUnit.equiv([], []), true);
+
+    // May be a hard one, can invoke a crash at execution.
+    // because their types are both "object" but null isn't
+    // like a true object, it doesn't have any property at all.
+    equals(QUnit.equiv([], null), false);
+
+    equals(QUnit.equiv([], undefined), false);
+    equals(QUnit.equiv([], false), false);
+    equals(QUnit.equiv([], 0), false);
+    equals(QUnit.equiv([], ""), false);
+
+    // May be a hard one, but less hard
+    // than {} with [] (note the order)
+    equals(QUnit.equiv([], {}), false);
+
+    equals(QUnit.equiv([null],[]), false);
+    equals(QUnit.equiv([undefined],[]), false);
+    equals(QUnit.equiv([],[null]), false);
+    equals(QUnit.equiv([],[undefined]), false);
+    equals(QUnit.equiv([null],[undefined]), false);
+    equals(QUnit.equiv([[]],[[]]), true);
+    equals(QUnit.equiv([[],[],[]],[[],[],[]]), true);
+    equals(QUnit.equiv(
+                            [[],[],[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]],
+                            [[],[],[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]),
+                            true);
+    equals(QUnit.equiv(
+                            [[],[],[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]],
+                            [[],[],[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]), // shorter
+                            false);
+    equals(QUnit.equiv(
+                            [[],[],[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[{}]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]],
+                            [[],[],[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]), // deepest element not an array
+                            false);
+
+    // same multidimensional
+    equals(QUnit.equiv(
+                            [1,2,3,4,5,6,7,8,9, [
+                                1,2,3,4,5,6,7,8,9, [
+                                    1,2,3,4,5,[
+                                        [6,7,8,9, [
+                                            [
+                                                1,2,3,4,[
+                                                    2,3,4,[
+                                                        1,2,[
+                                                            1,2,3,4,[
+                                                                1,2,3,4,5,6,7,8,9,[
+                                                                    0
+                                                                ],1,2,3,4,5,6,7,8,9
+                                                            ],5,6,7,8,9
+                                                        ],4,5,6,7,8,9
+                                                    ],5,6,7,8,9
+                                                ],5,6,7
+                                            ]
+                                        ]
+                                    ]
+                                ]
+                            ]]],
+                            [1,2,3,4,5,6,7,8,9, [
+                                1,2,3,4,5,6,7,8,9, [
+                                    1,2,3,4,5,[
+                                        [6,7,8,9, [
+                                            [
+                                                1,2,3,4,[
+                                                    2,3,4,[
+                                                        1,2,[
+                                                            1,2,3,4,[
+                                                                1,2,3,4,5,6,7,8,9,[
+                                                                    0
+                                                                ],1,2,3,4,5,6,7,8,9
+                                                            ],5,6,7,8,9
+                                                        ],4,5,6,7,8,9
+                                                    ],5,6,7,8,9
+                                                ],5,6,7
+                                            ]
+                                        ]
+                                    ]
+                                ]
+                            ]]]),
+                            true, "Multidimensional");
+
+    // different multidimensional
+    equals(QUnit.equiv(
+                            [1,2,3,4,5,6,7,8,9, [
+                                1,2,3,4,5,6,7,8,9, [
+                                    1,2,3,4,5,[
+                                        [6,7,8,9, [
+                                            [
+                                                1,2,3,4,[
+                                                    2,3,4,[
+                                                        1,2,[
+                                                            1,2,3,4,[
+                                                                1,2,3,4,5,6,7,8,9,[
+                                                                    0
+                                                                ],1,2,3,4,5,6,7,8,9
+                                                            ],5,6,7,8,9
+                                                        ],4,5,6,7,8,9
+                                                    ],5,6,7,8,9
+                                                ],5,6,7
+                                            ]
+                                        ]
+                                    ]
+                                ]
+                            ]]],
+                            [1,2,3,4,5,6,7,8,9, [
+                                1,2,3,4,5,6,7,8,9, [
+                                    1,2,3,4,5,[
+                                        [6,7,8,9, [
+                                            [
+                                                1,2,3,4,[
+                                                    2,3,4,[
+                                                        1,2,[
+                                                            '1',2,3,4,[                 // string instead of number
+                                                                1,2,3,4,5,6,7,8,9,[
+                                                                    0
+                                                                ],1,2,3,4,5,6,7,8,9
+                                                            ],5,6,7,8,9
+                                                        ],4,5,6,7,8,9
+                                                    ],5,6,7,8,9
+                                                ],5,6,7
+                                            ]
+                                        ]
+                                    ]
+                                ]
+                            ]]]),
+                            false, "Multidimensional");
+
+    // different multidimensional
+    equals(QUnit.equiv(
+                            [1,2,3,4,5,6,7,8,9, [
+                                1,2,3,4,5,6,7,8,9, [
+                                    1,2,3,4,5,[
+                                        [6,7,8,9, [
+                                            [
+                                                1,2,3,4,[
+                                                    2,3,4,[
+                                                        1,2,[
+                                                            1,2,3,4,[
+                                                                1,2,3,4,5,6,7,8,9,[
+                                                                    0
+                                                                ],1,2,3,4,5,6,7,8,9
+                                                            ],5,6,7,8,9
+                                                        ],4,5,6,7,8,9
+                                                    ],5,6,7,8,9
+                                                ],5,6,7
+                                            ]
+                                        ]
+                                    ]
+                                ]
+                            ]]],
+                            [1,2,3,4,5,6,7,8,9, [
+                                1,2,3,4,5,6,7,8,9, [
+                                    1,2,3,4,5,[
+                                        [6,7,8,9, [
+                                            [
+                                                1,2,3,4,[
+                                                    2,3,[                   // missing an element (4)
+                                                        1,2,[
+                                                            1,2,3,4,[
+                                                                1,2,3,4,5,6,7,8,9,[
+                                                                    0
+                                                                ],1,2,3,4,5,6,7,8,9
+                                                            ],5,6,7,8,9
+                                                        ],4,5,6,7,8,9
+                                                    ],5,6,7,8,9
+                                                ],5,6,7
+                                            ]
+                                        ]
+                                    ]
+                                ]
+                            ]]]),
+                            false, "Multidimensional");
+});
+
+test("Functions.", function() {
+    var f0 = function () {};
+    var f1 = function () {};
+
+    // f2 and f3 have the same code, formatted differently
+    var f2 = function () {var i = 0;};
+    var f3 = function () {
+        var i = 0 // this comment and no semicoma as difference
+    };
+
+    equals(QUnit.equiv(function() {}, function() {}), false, "Anonymous functions"); // exact source code
+    equals(QUnit.equiv(function() {}, function() {return true;}), false, "Anonymous functions");
+
+    equals(QUnit.equiv(f0, f0), true, "Function references"); // same references
+    equals(QUnit.equiv(f0, f1), false, "Function references"); // exact source code, different references
+    equals(QUnit.equiv(f2, f3), false, "Function references"); // equivalent source code, different references
+    equals(QUnit.equiv(f1, f2), false, "Function references"); // different source code, different references
+    equals(QUnit.equiv(function() {}, true), false);
+    equals(QUnit.equiv(function() {}, undefined), false);
+    equals(QUnit.equiv(function() {}, null), false);
+    equals(QUnit.equiv(function() {}, {}), false);
+});
+
+
+test("Date instances.", function() {
+    // Date, we don't need to test Date.parse() because it returns a number.
+    // Only test the Date instances by setting them a fix date.
+    // The date use is midnight January 1, 1970
+
+    var d1 = new Date();
+    d1.setTime(0); // fix the date
+
+    var d2 = new Date();
+    d2.setTime(0); // fix the date
+
+    var d3 = new Date(); // The very now
+
+    // Anyway their types differs, just in case the code fails in the order in which it deals with date
+    equals(QUnit.equiv(d1, 0), false); // d1.valueOf() returns 0, but d1 and 0 are different
+    // test same values date and different instances equality
+    equals(QUnit.equiv(d1, d2), true);
+    // test different date and different instances difference
+    equals(QUnit.equiv(d1, d3), false);
+});
+
+
+test("RegExp.", function() {
+    // Must test cases that imply those traps:
+    // var a = /./;
+    // a instanceof Object;        // Oops
+    // a instanceof RegExp;        // Oops
+    // typeof a === "function";    // Oops, false in IE and Opera, true in FF and Safari ("object")
+
+    // Tests same regex with same modifiers in different order
+    var r = /foo/;
+    var r5 = /foo/gim;
+    var r6 = /foo/gmi;
+    var r7 = /foo/igm;
+    var r8 = /foo/img;
+    var r9 = /foo/mig;
+    var r10 = /foo/mgi;
+    var ri1 = /foo/i;
+    var ri2 = /foo/i;
+    var rm1 = /foo/m;
+    var rm2 = /foo/m;
+    var rg1 = /foo/g;
+    var rg2 = /foo/g;
+
+    equals(QUnit.equiv(r5, r6), true, "Modifier order");
+    equals(QUnit.equiv(r5, r7), true, "Modifier order");
+    equals(QUnit.equiv(r5, r8), true, "Modifier order");
+    equals(QUnit.equiv(r5, r9), true, "Modifier order");
+    equals(QUnit.equiv(r5, r10), true, "Modifier order");
+    equals(QUnit.equiv(r, r5), false, "Modifier");
+
+    equals(QUnit.equiv(ri1, ri2), true, "Modifier");
+    equals(QUnit.equiv(r, ri1), false, "Modifier");
+    equals(QUnit.equiv(ri1, rm1), false, "Modifier");
+    equals(QUnit.equiv(r, rm1), false, "Modifier");
+    equals(QUnit.equiv(rm1, ri1), false, "Modifier");
+    equals(QUnit.equiv(rm1, rm2), true, "Modifier");
+    equals(QUnit.equiv(rg1, rm1), false, "Modifier");
+    equals(QUnit.equiv(rm1, rg1), false, "Modifier");
+    equals(QUnit.equiv(rg1, rg2), true, "Modifier");
+
+    // Different regex, same modifiers
+    var r11 = /[a-z]/gi;
+    var r13 = /[0-9]/gi; // oops! different
+    equals(QUnit.equiv(r11, r13), false, "Regex pattern");
+
+    var r14 = /0/ig;
+    var r15 = /"0"/ig; // oops! different
+    equals(QUnit.equiv(r14, r15), false, "Regex pattern");
+
+    var r1 = /[\n\r\u2028\u2029]/g;
+    var r2 = /[\n\r\u2028\u2029]/g;
+    var r3 = /[\n\r\u2028\u2028]/g; // differs from r1
+    var r4 = /[\n\r\u2028\u2029]/;  // differs from r1
+
+    equals(QUnit.equiv(r1, r2), true, "Regex pattern");
+    equals(QUnit.equiv(r1, r3), false, "Regex pattern");
+    equals(QUnit.equiv(r1, r4), false, "Regex pattern");
+
+    // More complex regex
+    var regex1 = "^[-_.a-z0-9]+@([-_a-z0-9]+\\.)+([A-Za-z][A-Za-z]|[A-Za-z][A-Za-z][A-Za-z])|(([0-9][0-9]?|[0-1][0-9][0-9]|[2][0-4][0-9]|[2][5][0-5]))$";
+    var regex2 = "^[-_.a-z0-9]+@([-_a-z0-9]+\\.)+([A-Za-z][A-Za-z]|[A-Za-z][A-Za-z][A-Za-z])|(([0-9][0-9]?|[0-1][0-9][0-9]|[2][0-4][0-9]|[2][5][0-5]))$";
+    // regex 3 is different: '.' not escaped
+    var regex3 = "^[-_.a-z0-9]+@([-_a-z0-9]+.)+([A-Za-z][A-Za-z]|[A-Za-z][A-Za-z][A-Za-z])|(([0-9][0-9]?|[0-1][0-9][0-9]|[2][0-4][0-9]|[2][5][0-5]))$";
+
+    var r21 = new RegExp(regex1);
+    var r22 = new RegExp(regex2);
+    var r23 = new RegExp(regex3); // diff from r21, not same pattern
+    var r23a = new RegExp(regex3, "gi"); // diff from r23, not same modifier
+    var r24a = new RegExp(regex3, "ig"); // same as r23a
+
+    equals(QUnit.equiv(r21, r22), true, "Complex Regex");
+    equals(QUnit.equiv(r21, r23), false, "Complex Regex");
+    equals(QUnit.equiv(r23, r23a), false, "Complex Regex");
+    equals(QUnit.equiv(r23a, r24a), true, "Complex Regex");
+
+    // typeof r1 is "function" in some browsers and "object" in others so we must cover this test
+    var re = / /;
+    equals(QUnit.equiv(re, function () {}), false, "Regex internal");
+    equals(QUnit.equiv(re, {}), false, "Regex internal");
+});
+
+
+test("Complex Objects.", function() {
+
+    function fn1() {
+        return "fn1";
+    }
+    function fn2() {
+        return "fn2";
+    }
+
+    // Try to invert the order of some properties to make sure it is covered.
+    // It can failed when properties are compared between unsorted arrays.
+    equals(QUnit.equiv(
+        {
+            a: 1,
+            b: null,
+            c: [{}],
+            d: {
+                a: 3.14159,
+                b: false,
+                c: {
+                    e: fn1,
+                    f: [[[]]],
+                    g: {
+                        j: {
+                            k: {
+                                n: {
+                                    r: "r",
+                                    s: [1,2,3],
+                                    t: undefined,
+                                    u: 0,
+                                    v: {
+                                        w: {
+                                            x: {
+                                                y: "Yahoo!",
+                                                z: null
+                                            }
+                                        }
+                                    }
+                                },
+                                q: [],
+                                p: 1/0,
+                                o: 99
+                            },
+                            l: undefined,
+                            m: null
+                        }
+                    },
+                    d: 0,
+                    i: true,
+                    h: "false"
+                }
+            },
+            e: undefined,
+            g: "",
+            h: "h",
+            f: {},
+            i: []
+        },
+        {
+            a: 1,
+            b: null,
+            c: [{}],
+            d: {
+                b: false,
+                a: 3.14159,
+                c: {
+                    d: 0,
+                    e: fn1,
+                    f: [[[]]],
+                    g: {
+                        j: {
+                            k: {
+                                n: {
+                                    r: "r",
+                                    t: undefined,
+                                    u: 0,
+                                    s: [1,2,3],
+                                    v: {
+                                        w: {
+                                            x: {
+                                                z: null,
+                                                y: "Yahoo!"
+                                            }
+                                        }
+                                    }
+                                },
+                                o: 99,
+                                p: 1/0,
+                                q: []
+                            },
+                            l: undefined,
+                            m: null
+                        }
+                    },
+                    i: true,
+                    h: "false"
+                }
+            },
+            e: undefined,
+            g: "",
+            f: {},
+            h: "h",
+            i: []
+        }
+    ), true);
+
+    equals(QUnit.equiv(
+        {
+            a: 1,
+            b: null,
+            c: [{}],
+            d: {
+                a: 3.14159,
+                b: false,
+                c: {
+                    d: 0,
+                    e: fn1,
+                    f: [[[]]],
+                    g: {
+                        j: {
+                            k: {
+                                n: {
+                                    //r: "r",   // different: missing a property
+                                    s: [1,2,3],
+                                    t: undefined,
+                                    u: 0,
+                                    v: {
+                                        w: {
+                                            x: {
+                                                y: "Yahoo!",
+                                                z: null
+                                            }
+                                        }
+                                    }
+                                },
+                                o: 99,
+                                p: 1/0,
+                                q: []
+                            },
+                            l: undefined,
+                            m: null
+                        }
+                    },
+                    h: "false",
+                    i: true
+                }
+            },
+            e: undefined,
+            f: {},
+            g: "",
+            h: "h",
+            i: []
+        },
+        {
+            a: 1,
+            b: null,
+            c: [{}],
+            d: {
+                a: 3.14159,
+                b: false,
+                c: {
+                    d: 0,
+                    e: fn1,
+                    f: [[[]]],
+                    g: {
+                        j: {
+                            k: {
+                                n: {
+                                    r: "r",
+                                    s: [1,2,3],
+                                    t: undefined,
+                                    u: 0,
+                                    v: {
+                                        w: {
+                                            x: {
+                                                y: "Yahoo!",
+                                                z: null
+                                            }
+                                        }
+                                    }
+                                },
+                                o: 99,
+                                p: 1/0,
+                                q: []
+                            },
+                            l: undefined,
+                            m: null
+                        }
+                    },
+                    h: "false",
+                    i: true
+                }
+            },
+            e: undefined,
+            f: {},
+            g: "",
+            h: "h",
+            i: []
+        }
+    ), false);
+
+    equals(QUnit.equiv(
+        {
+            a: 1,
+            b: null,
+            c: [{}],
+            d: {
+                a: 3.14159,
+                b: false,
+                c: {
+                    d: 0,
+                    e: fn1,
+                    f: [[[]]],
+                    g: {
+                        j: {
+                            k: {
+                                n: {
+                                    r: "r",
+                                    s: [1,2,3],
+                                    t: undefined,
+                                    u: 0,
+                                    v: {
+                                        w: {
+                                            x: {
+                                                y: "Yahoo!",
+                                                z: null
+                                            }
+                                        }
+                                    }
+                                },
+                                o: 99,
+                                p: 1/0,
+                                q: []
+                            },
+                            l: undefined,
+                            m: null
+                        }
+                    },
+                    h: "false",
+                    i: true
+                }
+            },
+            e: undefined,
+            f: {},
+            g: "",
+            h: "h",
+            i: []
+        },
+        {
+            a: 1,
+            b: null,
+            c: [{}],
+            d: {
+                a: 3.14159,
+                b: false,
+                c: {
+                    d: 0,
+                    e: fn1,
+                    f: [[[]]],
+                    g: {
+                        j: {
+                            k: {
+                                n: {
+                                    r: "r",
+                                    s: [1,2,3],
+                                    //t: undefined,                 // different: missing a property with an undefined value
+                                    u: 0,
+                                    v: {
+                                        w: {
+                                            x: {
+                                                y: "Yahoo!",
+                                                z: null
+                                            }
+                                        }
+                                    }
+                                },
+                                o: 99,
+                                p: 1/0,
+                                q: []
+                            },
+                            l: undefined,
+                            m: null
+                        }
+                    },
+                    h: "false",
+                    i: true
+                }
+            },
+            e: undefined,
+            f: {},
+            g: "",
+            h: "h",
+            i: []
+        }
+    ), false);
+
+    equals(QUnit.equiv(
+        {
+            a: 1,
+            b: null,
+            c: [{}],
+            d: {
+                a: 3.14159,
+                b: false,
+                c: {
+                    d: 0,
+                    e: fn1,
+                    f: [[[]]],
+                    g: {
+                        j: {
+                            k: {
+                                n: {
+                                    r: "r",
+                                    s: [1,2,3],
+                                    t: undefined,
+                                    u: 0,
+                                    v: {
+                                        w: {
+                                            x: {
+                                                y: "Yahoo!",
+                                                z: null
+                                            }
+                                        }
+                                    }
+                                },
+                                o: 99,
+                                p: 1/0,
+                                q: []
+                            },
+                            l: undefined,
+                            m: null
+                        }
+                    },
+                    h: "false",
+                    i: true
+                }
+            },
+            e: undefined,
+            f: {},
+            g: "",
+            h: "h",
+            i: []
+        },
+        {
+            a: 1,
+            b: null,
+            c: [{}],
+            d: {
+                a: 3.14159,
+                b: false,
+                c: {
+                    d: 0,
+                    e: fn1,
+                    f: [[[]]],
+                    g: {
+                        j: {
+                            k: {
+                                n: {
+                                    r: "r",
+                                    s: [1,2,3],
+                                    t: undefined,
+                                    u: 0,
+                                    v: {
+                                        w: {
+                                            x: {
+                                                y: "Yahoo!",
+                                                z: null
+                                            }
+                                        }
+                                    }
+                                },
+                                o: 99,
+                                p: 1/0,
+                                q: {}           // different was []
+                            },
+                            l: undefined,
+                            m: null
+                        }
+                    },
+                    h: "false",
+                    i: true
+                }
+            },
+            e: undefined,
+            f: {},
+            g: "",
+            h: "h",
+            i: []
+        }
+    ), false);
+
+    var same1 = {
+        a: [
+            "string", null, 0, "1", 1, {
+                prop: null,
+                foo: [1,2,null,{}, [], [1,2,3]],
+                bar: undefined
+            }, 3, "Hey!", "Κάνε πάντα γνωρίζουμε ας των, μηχανής επιδιόρθωσης επιδιορθώσεις ώς μια. Κλπ ας"
+        ],
+        unicode: "老 汉语中存在 港澳和海外的华人圈中 贵州 我去了书店 现在尚有争",
+        b: "b",
+        c: fn1
+    };
+
+    var same2 = {
+        a: [
+            "string", null, 0, "1", 1, {
+                prop: null,
+                foo: [1,2,null,{}, [], [1,2,3]],
+                bar: undefined
+            }, 3, "Hey!", "Κάνε πάντα γνωρίζουμε ας των, μηχανής επιδιόρθωσης επιδιορθώσεις ώς μια. Κλπ ας"
+        ],
+        unicode: "老 汉语中存在 港澳和海外的华人圈中 贵州 我去了书店 现在尚有争",
+        b: "b",
+        c: fn1
+    };
+
+    var diff1 = {
+        a: [
+            "string", null, 0, "1", 1, {
+                prop: null,
+                foo: [1,2,null,{}, [], [1,2,3,4]], // different: 4 was add to the array
+                bar: undefined
+            }, 3, "Hey!", "Κάνε πάντα γνωρίζουμε ας των, μηχανής επιδιόρθωσης επιδιορθώσεις ώς μια. Κλπ ας"
+        ],
+        unicode: "老 汉语中存在 港澳和海外的华人圈中 贵州 我去了书店 现在尚有争",
+        b: "b",
+        c: fn1
+    };
+
+    var diff2 = {
+        a: [
+            "string", null, 0, "1", 1, {
+                prop: null,
+                foo: [1,2,null,{}, [], [1,2,3]],
+                newprop: undefined, // different: newprop was added
+                bar: undefined
+            }, 3, "Hey!", "Κάνε πάντα γνωρίζουμε ας των, μηχανής επιδιόρθωσης επιδιορθώσεις ώς μια. Κλπ ας"
+        ],
+        unicode: "老 汉语中存在 港澳和海外的华人圈中 贵州 我去了书店 现在尚有争",
+        b: "b",
+        c: fn1
+    };
+
+    var diff3 = {
+        a: [
+            "string", null, 0, "1", 1, {
+                prop: null,
+                foo: [1,2,null,{}, [], [1,2,3]],
+                bar: undefined
+            }, 3, "Hey!", "Κάνε πάντα γνωρίζουμε ας των, μηχανής επιδιόρθωσης επιδιορθώσεις ώς μια. Κλπ α" // different: missing last char
+        ],
+        unicode: "老 汉语中存在 港澳和海外的华人圈中 贵州 我去了书店 现在尚有争",
+        b: "b",
+        c: fn1
+    };
+
+    var diff4 = {
+        a: [
+            "string", null, 0, "1", 1, {
+                prop: null,
+                foo: [1,2,undefined,{}, [], [1,2,3]], // different: undefined instead of null
+                bar: undefined
+            }, 3, "Hey!", "Κάνε πάντα γνωρίζουμε ας των, μηχανής επιδιόρθωσης επιδιορθώσεις ώς μια. Κλπ ας"
+        ],
+        unicode: "老 汉语中存在 港澳和海外的华人圈中 贵州 我去了书店 现在尚有争",
+        b: "b",
+        c: fn1
+    };
+
+    var diff5 = {
+        a: [
+            "string", null, 0, "1", 1, {
+                prop: null,
+                foo: [1,2,null,{}, [], [1,2,3]],
+                bat: undefined // different: property name not "bar"
+            }, 3, "Hey!", "Κάνε πάντα γνωρίζουμε ας των, μηχανής επιδιόρθωσης επιδιορθώσεις ώς μια. Κλπ ας"
+        ],
+        unicode: "老 汉语中存在 港澳和海外的华人圈中 贵州 我去了书店 现在尚有争",
+        b: "b",
+        c: fn1
+    };
+
+    equals(QUnit.equiv(same1, same2), true);
+    equals(QUnit.equiv(same2, same1), true);
+    equals(QUnit.equiv(same2, diff1), false);
+    equals(QUnit.equiv(diff1, same2), false);
+
+    equals(QUnit.equiv(same1, diff1), false);
+    equals(QUnit.equiv(same1, diff2), false);
+    equals(QUnit.equiv(same1, diff3), false);
+    equals(QUnit.equiv(same1, diff3), false);
+    equals(QUnit.equiv(same1, diff4), false);
+    equals(QUnit.equiv(same1, diff5), false);
+    equals(QUnit.equiv(diff5, diff1), false);
+});
+
+
+test("Complex Arrays.", function() {
+
+    function fn() {
+    }
+
+    equals(QUnit.equiv(
+                [1, 2, 3, true, {}, null, [
+                    {
+                        a: ["", '1', 0]
+                    },
+                    5, 6, 7
+                ], "foo"],
+                [1, 2, 3, true, {}, null, [
+                    {
+                        a: ["", '1', 0]
+                    },
+                    5, 6, 7
+                ], "foo"]),
+            true);
+
+    equals(QUnit.equiv(
+                [1, 2, 3, true, {}, null, [
+                    {
+                        a: ["", '1', 0]
+                    },
+                    5, 6, 7
+                ], "foo"],
+                [1, 2, 3, true, {}, null, [
+                    {
+                        b: ["", '1', 0]         // not same property name
+                    },
+                    5, 6, 7
+                ], "foo"]),
+            false);
+
+    var a = [{
+        b: fn,
+        c: false,
+        "do": "reserved word",
+        "for": {
+            ar: [3,5,9,"hey!", [], {
+                ar: [1,[
+                    3,4,6,9, null, [], []
+                ]],
+                e: fn,
+                f: undefined
+            }]
+        },
+        e: 0.43445
+    }, 5, "string", 0, fn, false, null, undefined, 0, [
+        4,5,6,7,8,9,11,22,33,44,55,"66", null, [], [[[[[3]]]], "3"], {}, 1/0
+    ], [], [[[], "foo", null, {
+        n: 1/0,
+        z: {
+            a: [3,4,5,6,"yep!", undefined, undefined],
+            b: {}
+        }
+    }, {}]]];
+
+    equals(QUnit.equiv(a,
+            [{
+                b: fn,
+                c: false,
+                "do": "reserved word",
+                "for": {
+                    ar: [3,5,9,"hey!", [], {
+                        ar: [1,[
+                            3,4,6,9, null, [], []
+                        ]],
+                        e: fn,
+                        f: undefined
+                    }]
+                },
+                e: 0.43445
+            }, 5, "string", 0, fn, false, null, undefined, 0, [
+                4,5,6,7,8,9,11,22,33,44,55,"66", null, [], [[[[[3]]]], "3"], {}, 1/0
+            ], [], [[[], "foo", null, {
+                n: 1/0,
+                z: {
+                    a: [3,4,5,6,"yep!", undefined, undefined],
+                    b: {}
+                }
+            }, {}]]]), true);
+
+    equals(QUnit.equiv(a,
+            [{
+                b: fn,
+                c: false,
+                "do": "reserved word",
+                "for": {
+                    ar: [3,5,9,"hey!", [], {
+                        ar: [1,[
+                            3,4,6,9, null, [], []
+                        ]],
+                        e: fn,
+                        f: undefined
+                    }]
+                },
+                e: 0.43445
+            }, 5, "string", 0, fn, false, null, undefined, 0, [
+                4,5,6,7,8,9,11,22,33,44,55,"66", null, [], [[[[[2]]]], "3"], {}, 1/0    // different: [[[[[2]]]]] instead of [[[[[3]]]]]
+            ], [], [[[], "foo", null, {
+                n: 1/0,
+                z: {
+                    a: [3,4,5,6,"yep!", undefined, undefined],
+                    b: {}
+                }
+            }, {}]]]), false);
+
+    equals(QUnit.equiv(a,
+            [{
+                b: fn,
+                c: false,
+                "do": "reserved word",
+                "for": {
+                    ar: [3,5,9,"hey!", [], {
+                        ar: [1,[
+                            3,4,6,9, null, [], []
+                        ]],
+                        e: fn,
+                        f: undefined
+                    }]
+                },
+                e: 0.43445
+            }, 5, "string", 0, fn, false, null, undefined, 0, [
+                4,5,6,7,8,9,11,22,33,44,55,"66", null, [], [[[[[3]]]], "3"], {}, 1/0
+            ], [], [[[], "foo", null, {
+                n: -1/0,                                                                // different, -Infinity instead of Infinity
+                z: {
+                    a: [3,4,5,6,"yep!", undefined, undefined],
+                    b: {}
+                }
+            }, {}]]]), false);
+
+    equals(QUnit.equiv(a,
+            [{
+                b: fn,
+                c: false,
+                "do": "reserved word",
+                "for": {
+                    ar: [3,5,9,"hey!", [], {
+                        ar: [1,[
+                            3,4,6,9, null, [], []
+                        ]],
+                        e: fn,
+                        f: undefined
+                    }]
+                },
+                e: 0.43445
+            }, 5, "string", 0, fn, false, null, undefined, 0, [
+                4,5,6,7,8,9,11,22,33,44,55,"66", null, [], [[[[[3]]]], "3"], {}, 1/0
+            ], [], [[[], "foo", {                                                       // different: null is missing
+                n: 1/0,
+                z: {
+                    a: [3,4,5,6,"yep!", undefined, undefined],
+                    b: {}
+                }
+            }, {}]]]), false);
+
+    equals(QUnit.equiv(a,
+            [{
+                b: fn,
+                c: false,
+                "do": "reserved word",
+                "for": {
+                    ar: [3,5,9,"hey!", [], {
+                        ar: [1,[
+                            3,4,6,9, null, [], []
+                        ]],
+                        e: fn
+                                                                                // different: missing property f: undefined
+                    }]
+                },
+                e: 0.43445
+            }, 5, "string", 0, fn, false, null, undefined, 0, [
+                4,5,6,7,8,9,11,22,33,44,55,"66", null, [], [[[[[3]]]], "3"], {}, 1/0
+            ], [], [[[], "foo", null, {
+                n: 1/0,
+                z: {
+                    a: [3,4,5,6,"yep!", undefined, undefined],
+                    b: {}
+                }
+            }, {}]]]), false);
+});
+
+
+test("Prototypal inheritance", function() {
+    function Gizmo(id) {
+        this.id = id;
+    }
+
+    function Hoozit(id) {
+        this.id = id;
+    }
+    Hoozit.prototype = new Gizmo();
+
+    var gizmo = new Gizmo("ok");
+    var hoozit = new Hoozit("ok");
+
+    // Try this test many times after test on instances that hold function
+    // to make sure that our code does not mess with last object constructor memoization.
+    equals(QUnit.equiv(function () {}, function () {}), false);
+
+    // Hoozit inherit from Gizmo
+    // hoozit instanceof Hoozit; // true
+    // hoozit instanceof Gizmo; // true
+    equals(QUnit.equiv(hoozit, gizmo), true);
+
+    Gizmo.prototype.bar = true; // not a function just in case we skip them
+
+    // Hoozit inherit from Gizmo
+    // They are equivalent
+    equals(QUnit.equiv(hoozit, gizmo), true);
+
+    // Make sure this is still true !important
+    // The reason for this is that I forgot to reset the last
+    // caller to where it were called from.
+    equals(QUnit.equiv(function () {}, function () {}), false);
+
+    // Make sure this is still true !important
+    equals(QUnit.equiv(hoozit, gizmo), true);
+
+    Hoozit.prototype.foo = true; // not a function just in case we skip them
+
+    // Gizmo does not inherit from Hoozit
+    // gizmo instanceof Gizmo; // true
+    // gizmo instanceof Hoozit; // false
+    // They are not equivalent
+    equals(QUnit.equiv(hoozit, gizmo), false);
+
+    // Make sure this is still true !important
+    equals(QUnit.equiv(function () {}, function () {}), false);
+});
+
+
+test("Instances", function() {
+    function A() {}
+    var a1 = new A();
+    var a2 = new A();
+
+    function B() {
+        this.fn = function () {};
+    }
+    var b1 = new B();
+    var b2 = new B();
+
+    equals(QUnit.equiv(a1, a2), true, "Same property, same constructor");
+
+    // b1.fn and b2.fn are functions but they are different references
+    // But we decided to skip function for instances.
+    equals(QUnit.equiv(b1, b2), true, "Same property, same constructor");
+    equals(QUnit.equiv(a1, b1), false, "Same properties but different constructor"); // failed
+
+    function Car(year) {
+        var privateVar = 0;
+        this.year = year;
+        this.isOld = function() {
+            return year > 10;
+        };
+    }
+
+    function Human(year) {
+        var privateVar = 1;
+        this.year = year;
+        this.isOld = function() {
+            return year > 80;
+        };
+    }
+
+    var car = new Car(30);
+    var carSame = new Car(30);
+    var carDiff = new Car(10);
+    var human = new Human(30);
+
+    var diff = {
+        year: 30
+    };
+
+    var same = {
+        year: 30,
+        isOld: function () {}
+    };
+
+    equals(QUnit.equiv(car, car), true);
+    equals(QUnit.equiv(car, carDiff), false);
+    equals(QUnit.equiv(car, carSame), true);
+    equals(QUnit.equiv(car, human), false);
+});
+
+
+test("Complex Instances Nesting (with function value in literals and/or in nested instances)", function() {
+    function A(fn) {
+        this.a = {};
+        this.fn = fn;
+        this.b = {a: []};
+        this.o = {};
+        this.fn1 = fn;
+    }
+    function B(fn) {
+        this.fn = fn;
+        this.fn1 = function () {};
+        this.a = new A(function () {});
+    }
+
+    function fnOutside() {
+    }
+
+    function C(fn) {
+        function fnInside() {
+        }
+        this.x = 10;
+        this.fn = fn;
+        this.fn1 = function () {};
+        this.fn2 = fnInside;
+        this.fn3 = {
+            a: true,
+            b: fnOutside // ok make reference to a function in all instances scope
+        };
+        this.o1 = {};
+
+        // This function will be ignored.
+        // Even if it is not visible for all instances (e.g. locked in a closures),
+        // it is from a  property that makes part of an instance (e.g. from the C constructor)
+        this.b1 = new B(function () {});
+        this.b2 = new B({
+            x: {
+                b2: new B(function() {})
+            }
+        });
+    }
+
+    function D(fn) {
+        function fnInside() {
+        }
+        this.x = 10;
+        this.fn = fn;
+        this.fn1 = function () {};
+        this.fn2 = fnInside;
+        this.fn3 = {
+            a: true,
+            b: fnOutside, // ok make reference to a function in all instances scope
+
+            // This function won't be ingored.
+            // It isn't visible for all C insances
+            // and it is not in a property of an instance. (in an Object instances e.g. the object literal)
+            c: fnInside
+        };
+        this.o1 = {};
+
+        // This function will be ignored.
+        // Even if it is not visible for all instances (e.g. locked in a closures),
+        // it is from a  property that makes part of an instance (e.g. from the C constructor)
+        this.b1 = new B(function () {});
+        this.b2 = new B({
+            x: {
+                b2: new B(function() {})
+            }
+        });
+    }
+
+    function E(fn) {
+        function fnInside() {
+        }
+        this.x = 10;
+        this.fn = fn;
+        this.fn1 = function () {};
+        this.fn2 = fnInside;
+        this.fn3 = {
+            a: true,
+            b: fnOutside // ok make reference to a function in all instances scope
+        };
+        this.o1 = {};
+
+        // This function will be ignored.
+        // Even if it is not visible for all instances (e.g. locked in a closures),
+        // it is from a  property that makes part of an instance (e.g. from the C constructor)
+        this.b1 = new B(function () {});
+        this.b2 = new B({
+            x: {
+                b1: new B({a: function() {}}),
+                b2: new B(function() {})
+            }
+        });
+    }
+
+
+    var a1 = new A(function () {});
+    var a2 = new A(function () {});
+    equals(QUnit.equiv(a1, a2), true);
+
+    equals(QUnit.equiv(a1, a2), true); // different instances
+
+    var b1 = new B(function () {});
+    var b2 = new B(function () {});
+    equals(QUnit.equiv(b1, b2), true);
+
+    var c1 = new C(function () {});
+    var c2 = new C(function () {});
+    equals(QUnit.equiv(c1, c2), true);
+
+    var d1 = new D(function () {});
+    var d2 = new D(function () {});
+    equals(QUnit.equiv(d1, d2), false);
+
+    var e1 = new E(function () {});
+    var e2 = new E(function () {});
+    equals(QUnit.equiv(e1, e2), false);
+
+});
+
+
+test('object with references to self wont loop', function(){
+    var circularA = {
+        abc:null
+    }, circularB = {
+        abc:null
+    };
+    circularA.abc = circularA;
+    circularB.abc = circularB;
+    equals(QUnit.equiv(circularA, circularB), true, "Should not repeat test on object (ambigous test)");
+
+    circularA.def = 1;
+    circularB.def = 1;
+    equals(QUnit.equiv(circularA, circularB), true, "Should not repeat test on object (ambigous test)");
+
+    circularA.def = 1;
+    circularB.def = 0;
+    equals(QUnit.equiv(circularA, circularB), false, "Should not repeat test on object (unambigous test)");
+});
+
+test('array with references to self wont loop', function(){
+    var circularA = [],
+        circularB = [];
+    circularA.push(circularA);
+    circularB.push(circularB);
+    equals(QUnit.equiv(circularA, circularB), true, "Should not repeat test on array (ambigous test)");
+
+    circularA.push( 'abc' );
+    circularB.push( 'abc' );
+    equals(QUnit.equiv(circularA, circularB), true, "Should not repeat test on array (ambigous test)");
+
+    circularA.push( 'hello' );
+    circularB.push( 'goodbye' );
+    equals(QUnit.equiv(circularA, circularB), false, "Should not repeat test on array (unambigous test)");
+});
+
+test('mixed object/array with references to self wont loop', function(){
+    var circularA = [{abc:null}],
+        circularB = [{abc:null}];
+    circularA[0].abc = circularA;
+    circularB[0].abc = circularB;
+
+    circularA.push(circularA);
+    circularB.push(circularB);
+    equals(QUnit.equiv(circularA, circularB), true, "Should not repeat test on object/array (ambigous test)");
+
+    circularA[0].def = 1;
+    circularB[0].def = 1;
+    equals(QUnit.equiv(circularA, circularB), true, "Should not repeat test on object/array (ambigous test)");
+
+    circularA[0].def = 1;
+    circularB[0].def = 0;
+    equals(QUnit.equiv(circularA, circularB), false, "Should not repeat test on object/array (unambigous test)");
+});
+
+test("Test that must be done at the end because they extend some primitive's prototype", function() {
+    // Try that a function looks like our regular expression.
+    // This tests if we check that a and b are really both instance of RegExp
+    Function.prototype.global = true;
+    Function.prototype.multiline = true;
+    Function.prototype.ignoreCase = false;
+    Function.prototype.source = "my regex";
+    var re = /my regex/gm;
+    equals(QUnit.equiv(re, function () {}), false, "A function that looks that a regex isn't a regex");
+    // This test will ensures it works in both ways, and ALSO especially that we can make differences
+    // between RegExp and Function constructor because typeof on a RegExpt instance is "function"
+    equals(QUnit.equiv(function () {}, re), false, "Same conversely, but ensures that function and regexp are distinct because their constructor are different");
+});
diff --git a/Tools/qunit/test/test.js b/Tools/qunit/test/test.js
new file mode 100644
index 0000000..3f942d2
--- /dev/null
+++ b/Tools/qunit/test/test.js
@@ -0,0 +1,324 @@
+test("module without setup/teardown (default)", function() {
+	expect(1);
+	ok(true);
+});
+
+test("expect in test", 3, function() {
+	ok(true);
+	ok(true);
+	ok(true);
+});
+
+test("expect in test", 1, function() {
+	ok(true);
+});
+
+module("setup test", {
+	setup: function() {
+		ok(true);
+	}
+});
+
+test("module with setup", function() {
+	expect(2);
+	ok(true);
+});
+
+test("module with setup, expect in test call", 2, function() {
+	ok(true);
+});
+
+var state;
+
+module("setup/teardown test", {
+	setup: function() {
+		state = true;
+		ok(true);
+	},
+	teardown: function() {
+		ok(true);
+	}
+});
+
+test("module with setup/teardown", function() {
+	expect(3);
+	ok(true);
+});
+
+module("setup/teardown test 2");
+
+test("module without setup/teardown", function() {
+	expect(1);
+	ok(true);
+});
+
+if (typeof setTimeout !== 'undefined') {
+state = 'fail';
+
+module("teardown and stop", {
+	teardown: function() {
+		equal(state, "done", "Test teardown.");
+	}
+});
+
+test("teardown must be called after test ended", function() {
+	expect(1);
+	stop();
+	setTimeout(function() {
+		state = "done";
+		start();
+	}, 13);
+});
+
+module("async setup test", {
+	setup: function() {
+		stop();
+		setTimeout(function(){
+			ok(true);
+			start();
+		}, 500);
+	}
+});
+
+asyncTest("module with async setup", function() {
+	expect(2);
+	ok(true);
+	start();
+});
+
+module("async teardown test", {
+	teardown: function() {
+		stop();
+		setTimeout(function(){
+			ok(true);
+			start();
+		}, 500);
+	}
+});
+
+asyncTest("module with async teardown", function() {
+	expect(2);
+	ok(true);
+	start();
+});
+
+module("asyncTest");
+
+asyncTest("asyncTest", function() {
+	expect(2);
+	ok(true);
+	setTimeout(function() {
+		state = "done";
+		ok(true);
+		start();
+	}, 13);
+});
+
+asyncTest("asyncTest", 2, function() {
+	ok(true);
+	setTimeout(function() {
+		state = "done";
+		ok(true);
+		start();
+	}, 13);
+});
+
+test("sync", 2, function() {
+	stop();
+	setTimeout(function() {
+		ok(true);
+		start();
+	}, 13);
+	stop();
+	setTimeout(function() {
+		ok(true);
+		start();
+	}, 125);
+});
+}
+
+module("save scope", {
+	setup: function() {
+		this.foo = "bar";
+	},
+	teardown: function() {
+		deepEqual(this.foo, "bar");
+	}
+});
+test("scope check", function() {
+	expect(2);
+	deepEqual(this.foo, "bar");
+});
+
+module("simple testEnvironment setup", {
+	foo: "bar",
+	bugid: "#5311" // example of meta-data
+});
+test("scope check", function() {
+	deepEqual(this.foo, "bar");
+});
+test("modify testEnvironment",function() {
+	this.foo="hamster";
+});
+test("testEnvironment reset for next test",function() {
+	deepEqual(this.foo, "bar");
+});
+
+module("testEnvironment with object", {
+	options:{
+		recipe:"soup",
+		ingredients:["hamster","onions"]
+	}
+});
+test("scope check", function() {
+	deepEqual(this.options, {recipe:"soup",ingredients:["hamster","onions"]}) ;
+});
+test("modify testEnvironment",function() {
+	// since we do a shallow copy, the testEnvironment can be modified
+	this.options.ingredients.push("carrots");
+});
+test("testEnvironment reset for next test",function() {
+	deepEqual(this.options, {recipe:"soup",ingredients:["hamster","onions","carrots"]}, "Is this a bug or a feature? Could do a deep copy") ;
+});
+
+
+module("testEnvironment tests");
+
+function makeurl() {
+	var testEnv = QUnit.current_testEnvironment;
+	var url = testEnv.url || 'http://example.com/search';
+	var q   = testEnv.q   || 'a search test';
+	return url + '?q='+encodeURIComponent(q);
+}
+
+test("makeurl working",function() {
+	equal( QUnit.current_testEnvironment, this, 'The current testEnvironment is global');
+	equal( makeurl(), 'http://example.com/search?q=a%20search%20test', 'makeurl returns a default url if nothing specified in the testEnvironment');
+});
+
+module("testEnvironment with makeurl settings", {
+	url: 'http://google.com/',
+	q: 'another_search_test'
+});
+test("makeurl working with settings from testEnvironment", function() {
+	equal( makeurl(), 'http://google.com/?q=another_search_test', 'rather than passing arguments, we use test metadata to form the url');
+});
+test("each test can extend the module testEnvironment", {
+	q:'hamstersoup'
+}, function() {
+	equal( makeurl(), 'http://google.com/?q=hamstersoup', 'url from module, q from test');
+});
+
+module("jsDump");
+test("jsDump output", function() {
+	equals( QUnit.jsDump.parse([1, 2]), "[\n  1,\n  2\n]" );
+	equals( QUnit.jsDump.parse({top: 5, left: 0}), "{\n  \"top\": 5,\n  \"left\": 0\n}" );
+	if (typeof document !== 'undefined' && document.getElementById("qunit-header")) {
+		equals( QUnit.jsDump.parse(document.getElementById("qunit-header")), "<h1 id=\"qunit-header\"></h1>" );
+		equals( QUnit.jsDump.parse(document.getElementsByTagName("h1")), "[\n  <h1 id=\"qunit-header\"></h1>\n]" );
+	}
+});
+
+module("assertions");
+test("raises",function() {
+	function CustomError( message ) {
+		this.message = message;
+	}
+
+	CustomError.prototype.toString = function() {
+		return this.message;
+	};
+
+	raises(
+		function() {
+			throw "error"
+		}
+	);
+
+	raises(
+		function() {
+			throw "error"
+		},
+		'raises with just a message, no expected'
+	);
+
+	raises(
+		function() {
+			throw new CustomError();
+		},
+		CustomError,
+		'raised error is an instance of CustomError'
+	);
+
+	raises(
+		function() {
+			throw new CustomError("some error description");
+		},
+		/description/,
+		"raised error message contains 'description'"
+	);
+
+	raises(
+		function() {
+			throw new CustomError("some error description");
+		},
+		function( err ) {
+			if ( (err instanceof CustomError) && /description/.test(err) ) {
+				return true;
+			}
+		},
+		"custom validation function"
+	);
+
+});
+
+if (typeof document !== "undefined") {
+
+module("fixture");
+test("setup", function() {
+	document.getElementById("qunit-fixture").innerHTML = "foobar";
+});
+test("basics", function() {
+	equal( document.getElementById("qunit-fixture").innerHTML, "test markup", "automatically reset" );
+});
+
+}
+
+module("custom assertions");
+(function() {
+	function mod2(value, expected, message) {
+		var actual = value % 2;
+		QUnit.push(actual == expected, actual, expected, message);
+	}
+	test("mod2", function() {
+		mod2(2, 0, "2 % 2 == 0");
+		mod2(3, 1, "3 % 2 == 1");
+	})
+})();
+
+(function() {
+	var reset = QUnit.reset;
+	function afterTest() {
+		ok( false, "reset should not modify test status" );
+	}
+	module("reset");
+	test("reset runs assertions", function() {
+		QUnit.reset = function() {
+			afterTest();
+			reset.apply( this, arguments );
+		};
+	});
+	test("reset runs assertions2", function() {
+		QUnit.reset = reset;
+	});
+})();
+
+module("noglobals", {
+	teardown: function() {
+		delete window.badGlobalVariableIntroducedInTest;
+	}
+});
+test("let teardown clean up globals", function() {
+	// this test will always pass if run without ?noglobals=true
+	window.badGlobalVariableIntroducedInTest = true;
+});
diff --git a/Tools/record-memory-win/main.cpp b/Tools/record-memory-win/main.cpp
deleted file mode 100644
index 934f101..0000000
--- a/Tools/record-memory-win/main.cpp
+++ /dev/null
@@ -1,213 +0,0 @@
-#include <windows.h>

-#include <assert.h>

-#include <psapi.h>

-#include <stdio.h>

-#include <tchar.h>

-#include <time.h>

-#include <tlhelp32.h>

-#include "Shlwapi.h"

-

-#pragma comment(lib, "psapi.lib")

-#pragma comment(lib, "shlwapi.lib")

-

-int gQueryInterval = 5; // seconds

-time_t gDuration = 0;   // seconds

-LPTSTR gCommandLine;

-

-HRESULT ProcessArgs(int argc, TCHAR *argv[]);

-HRESULT PrintUsage();

-void UseImage(void (functionForQueryType(HANDLE)));

-void QueryContinuously(HANDLE hProcess);

-int EvalProcesses(HANDLE hProcess);

-time_t ElapsedTime(time_t startTime);

-

-int __cdecl _tmain (int argc, TCHAR *argv[])

-{

-    HRESULT result = ProcessArgs(argc, argv);

-    if (FAILED(result))

-        return result;

-

-    UseImage(QueryContinuously);

-    return S_OK;

-}

-

-HRESULT ProcessArgs(int argc, TCHAR *argv[])

-{

-    LPTSTR argument;

-    for( int count = 1; count < argc; count++ ) {

-        argument = argv[count] ;

-        if (wcsstr(argument, _T("-h")) || wcsstr(argument, _T("--help")))

-            return PrintUsage();

-        else if (wcsstr(argument, _T("--exe"))) {

-            gCommandLine = argv[++count];

-        } else if (wcsstr(argument, _T("-i")) || 

-            wcsstr(argument, _T("--interval"))) {

-            gQueryInterval = _wtoi(argv[++count]);

-            if (gQueryInterval < 1) {

-                printf("ERROR: invalid interval\n");

-                return E_INVALIDARG;

-            }

-        } else if (wcsstr(argument, _T("-d")) ||

-            wcsstr(argument, _T("--duration"))) {

-            gDuration = _wtoi(argv[++count]);

-            if (gDuration < 1) {

-                printf("ERROR: invalid duration\n");

-                return E_INVALIDARG;

-            }

-        } else {

-            _tprintf(_T("ERROR: unrecognized argument \"%s\"\n"), (LPCTSTR)argument);

-            return PrintUsage();

-        }

-    }

-    if (argc < 2 || !wcslen(gCommandLine) ) {

-        printf("ERROR: executable path is required\n");

-        return PrintUsage();

-    }

-    return S_OK;

-}

-

-HRESULT PrintUsage()

-{

-    printf("record-memory-win --exe EXE_PATH\n");

-    printf("    Launch an executable and print the memory usage (in Private Bytes)\n");

-    printf("    of the process.\n\n");

-    printf("Usage:\n");

-    printf("-h [--help]         : Print usage\n");

-    printf("--exe arg           : Launch specified image.  Required\n");

-    printf("-i [--interval] arg : Print memory usage every arg seconds.  Default: 5 seconds\n");

-    printf("-d [--duration] arg : Run for up to arg seconds.  Default: no limit\n\n");

-    printf("Examples:\n");

-    printf("    record-memory-win --exe \"C:\\Program Files\\Safari\\Safari.exe /newprocess\"\n");

-    printf("    record-memory-win --exe \"Safari.exe /newprocess\" -i 10 -d 7200\n");

-    printf("    NOTE: Close all other browser intances to ensure launching in a new process\n");

-    printf("          Or, pass the /newprocess (or equivalent) argument to the browser\n");

-    return E_FAIL;

-}

-

-unsigned int getMemoryInfo(DWORD processID)

-{

-    unsigned int memInfo = 0;

-    HANDLE hProcess;

-    PROCESS_MEMORY_COUNTERS_EX pmc;

-

-    hProcess = OpenProcess(  PROCESS_QUERY_INFORMATION |

-                                    PROCESS_VM_READ,

-                                    FALSE, processID );

-    if (NULL == hProcess)

-        return 0;

-

-    if (GetProcessMemoryInfo( hProcess, (PPROCESS_MEMORY_COUNTERS)&pmc, sizeof(pmc))) {

-        memInfo = (pmc.PrivateUsage);

-    }

-

-    CloseHandle( hProcess );

-    return memInfo;

-}

-

-void printProcessInfo(DWORD processID)

-{

-    TCHAR szProcessName[MAX_PATH] = TEXT("<unknown>");

-   

-    // Get a handle to the process.

-    HANDLE hProcess = OpenProcess( PROCESS_QUERY_INFORMATION |

-                                   PROCESS_VM_READ,

-                                   FALSE, processID );

-

-    // Get the process name.

-    if (NULL != hProcess) {

-        HMODULE hMod;       // An array that receives the list of module handles.

-        DWORD cbNeeded;     //The number of bytes required to store all module handles in the Module array

-

-        if (EnumProcessModules(hProcess, &hMod, sizeof(hMod), &cbNeeded)) {

-            GetModuleBaseName(hProcess, hMod, szProcessName, 

-                               sizeof(szProcessName)/sizeof(TCHAR));

-        }

-    }

-

-    // Print the process name and identifier of matching strings, ignoring case

-    _tprintf(TEXT("%s  (PID: %u)\n"), szProcessName, processID);

-    

-    // Release the handle to the process.

-    CloseHandle( hProcess );

-}

-

-int evalProcesses(HANDLE hProcess)

-{

-    if (NULL == hProcess)

-        return 0;

-

-    unsigned int totalMemUsage = 0;

-    DWORD processID = GetProcessId(hProcess);

-  

-    HANDLE hProcessSnapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);

-

-    PROCESSENTRY32 processEntry = { 0 };

-    processEntry.dwSize = sizeof(PROCESSENTRY32);

-

-    // Retrieves information about the first process encountered in a system snapshot

-    if(Process32First(hProcessSnapshot, &processEntry)) {

-        do {

-            // if th32processID = processID, we are the parent process!  

-            // if th32ParentProcessID = processID, we are a child process!

-            if ((processEntry.th32ProcessID == processID) || (processEntry.th32ParentProcessID == processID)) {

-                unsigned int procMemUsage = 0;

-                // Record parent process memory

-                procMemUsage = getMemoryInfo(processEntry.th32ProcessID);

-                totalMemUsage += procMemUsage;

-            }

-          // Retrieves information about the next process recorded in a system snapshot.   

-        } while(Process32Next(hProcessSnapshot, &processEntry));

-    }

-

-    CloseHandle(hProcessSnapshot);

-    return totalMemUsage;

-}

-

-

-void UseImage(void (functionForQueryType(HANDLE)))

-{

-    STARTUPINFO si = {0};

-    si.cb = sizeof(STARTUPINFO);

-    PROCESS_INFORMATION pi = {0};

-

-    // Start the child process. 

-    if(!CreateProcess( NULL,   // No module name (use command line)

-        gCommandLine,        // Command line

-        NULL,           // Process handle not inheritable

-        NULL,           // Thread handle not inheritable

-        FALSE,          // Set handle inheritance to FALSE

-        0,              // No creation flags

-        NULL,           // Use parent's environment block

-        NULL,           // Use parent's starting directory 

-        &si,            // Pointer to STARTUPINFO structure

-        &pi ))          // Pointer to PROCESS_INFORMATION structure

-        printf("CreateProcess failed (%d)\n", GetLastError());

-    else {

-        printf("Created process with id: %d\n", pi.dwProcessId);

-        functionForQueryType(pi.hProcess);

-        // Close process and thread handles. 

-        CloseHandle( pi.hProcess );

-        CloseHandle( pi.hThread );

-    }

-}

-

-void QueryContinuously(HANDLE hProcess)

-{

-    Sleep(2000); // give the process some time to launch

-    bool pastDuration = false;

-    time_t startTime = time(NULL);

-    unsigned int memUsage = evalProcesses(hProcess);

-    while(memUsage && !pastDuration) {

-        printf( "%u\n", memUsage );

-        Sleep(gQueryInterval*1000);

-        memUsage = evalProcesses(hProcess);

-        pastDuration = gDuration > 0 ? ElapsedTime(startTime) > gDuration : false;

-    } 

-}

-

-// returns elapsed time in seconds

-time_t ElapsedTime(time_t startTime)

-{

-    time_t currentTime = time(NULL);

-    return currentTime - startTime;

-}

diff --git a/Tools/record-memory-win/record-memory-win-common.vsprops b/Tools/record-memory-win/record-memory-win-common.vsprops
deleted file mode 100644
index ff23857..0000000
--- a/Tools/record-memory-win/record-memory-win-common.vsprops
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="record-memory-win-common"
-	>
-	<Tool
-		Name="VCLinkerTool"
-		SubSystem="1"
-	/>
-</VisualStudioPropertySheet>
diff --git a/Tools/record-memory-win/record-memory-win.vcproj b/Tools/record-memory-win/record-memory-win.vcproj
deleted file mode 100644
index 5c1669e..0000000
--- a/Tools/record-memory-win/record-memory-win.vcproj
+++ /dev/null
@@ -1,414 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="record-memory-win"
-	ProjectGUID="{44B9C152-1870-4035-B94D-7B3285AA0C12}"
-	RootNamespace="recordmemorywin"
-	Keyword="Win32Proj"
-	>
-	<Platforms>
-		<Platform
-			Name="Win32"
-		/>
-	</Platforms>
-	<ToolFiles>
-	</ToolFiles>
-	<Configurations>
-		<Configuration
-			Name="Release|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\record-memory-winRelease.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Production|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\record-memory-winProduction.vsprops"
-			CharacterSet="1"
-			WholeProgramOptimization="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\record-memory-winDebug.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_All|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\record-memory-winDebugAll.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release_Cairo_CFLite|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\record-memory-winReleaseCairoCFLite.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Debug_Cairo_CFLite|Win32"
-			ConfigurationType="1"
-			InheritedPropertySheets=".\record-memory-winDebugCairoCFLite.vsprops"
-			CharacterSet="1"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCWebDeploymentTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-	</Configurations>
-	<References>
-	</References>
-	<Files>
-		<Filter
-			Name="Source Files"
-			Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
-			UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
-			>
-			<File
-				RelativePath=".\main.cpp"
-				>
-			</File>
-		</Filter>
-		<Filter
-			Name="Header Files"
-			Filter="h;hpp;hxx;hm;inl;inc;xsd"
-			UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
-			>
-		</Filter>
-		<Filter
-			Name="Resource Files"
-			Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
-			UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
-			>
-		</Filter>
-	</Files>
-	<Globals>
-	</Globals>
-</VisualStudioProject>
diff --git a/Tools/record-memory-win/record-memory-winDebug.vsprops b/Tools/record-memory-win/record-memory-winDebug.vsprops
deleted file mode 100644
index cfcdf89..0000000
--- a/Tools/record-memory-win/record-memory-winDebug.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="record-memory-winDebug"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;.\record-memory-win-common.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/record-memory-win/record-memory-winDebugAll.vsprops b/Tools/record-memory-win/record-memory-winDebugAll.vsprops
deleted file mode 100644
index 9b91eeb..0000000
--- a/Tools/record-memory-win/record-memory-winDebugAll.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="record-memory-winDebugAll"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\debug_all.vsprops;.\record-memory-win-common.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/record-memory-win/record-memory-winDebugCairoCFLite.vsprops b/Tools/record-memory-win/record-memory-winDebugCairoCFLite.vsprops
deleted file mode 100644
index 6c3c607..0000000
--- a/Tools/record-memory-win/record-memory-winDebugCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="record-memory-winDebugCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\debug.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\debug_wincairo.vsprops;.\record-memory-win-common.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/record-memory-win/record-memory-winProduction.vsprops b/Tools/record-memory-win/record-memory-winProduction.vsprops
deleted file mode 100644
index e4269f1..0000000
--- a/Tools/record-memory-win/record-memory-winProduction.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="record-memory-winProduction"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\production.vsprops;.\record-memory-win-common.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/record-memory-win/record-memory-winRelease.vsprops b/Tools/record-memory-win/record-memory-winRelease.vsprops
deleted file mode 100644
index 9cd63fe..0000000
--- a/Tools/record-memory-win/record-memory-winRelease.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="record-memory-winRelease"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;.\record-memory-win-common.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/record-memory-win/record-memory-winReleaseCairoCFLite.vsprops b/Tools/record-memory-win/record-memory-winReleaseCairoCFLite.vsprops
deleted file mode 100644
index caf964e..0000000
--- a/Tools/record-memory-win/record-memory-winReleaseCairoCFLite.vsprops
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
-	ProjectType="Visual C++"
-	Version="8.00"
-	Name="record-memory-winReleaseCairoCFLite"
-	InheritedPropertySheets="$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\common.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\releaseproduction.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\release.vsprops;$(WebKitVSPropsRedirectionDir)..\..\WebKitLibraries\win\tools\vsprops\WinCairo.vsprops;.\record-memory-win-common.vsprops"
-	>
-</VisualStudioPropertySheet>
diff --git a/Tools/vcbin/cl.exe b/Tools/vcbin/cl.exe
deleted file mode 100755
index 2ec78c9..0000000
--- a/Tools/vcbin/cl.exe
+++ /dev/null
Binary files differ
diff --git a/Tools/vcbin/midl.exe b/Tools/vcbin/midl.exe
deleted file mode 100755
index 2a5bc2f..0000000
--- a/Tools/vcbin/midl.exe
+++ /dev/null
Binary files differ
diff --git a/Tools/waf/build/build_utils.py b/Tools/waf/build/build_utils.py
deleted file mode 100644
index 50a88c2..0000000
--- a/Tools/waf/build/build_utils.py
+++ /dev/null
@@ -1,249 +0,0 @@
-# Copyright (C) 2009 Kevin Ollivier  All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
-# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#
-# Helper functions for the WebKit build.
-
-import commands
-import glob
-import os
-import platform
-import re
-import shutil
-import socket
-import sys
-import urllib2
-import urllib
-import urlparse
-
-
-def get_output(command):
-    """
-    Windows-compatible function for getting output from a command.
-    """
-    if sys.platform.startswith('win'):
-        f = os.popen(command)
-        return f.read().strip()
-    else:
-        return commands.getoutput(command)
-
-
-def get_excludes(root, patterns):
-    """
-    Get a list of exclude patterns for root and all its subdirs.
-    """
-    excludes = []
-
-    for afile in os.listdir(root):
-        fullpath = os.path.join(root, afile)
-        if os.path.isdir(fullpath):
-            excludes.extend(get_excludes(fullpath, patterns))
-            
-    for pattern in patterns:
-        adir = root + os.sep + pattern
-        files = glob.glob(adir)
-        for afile in files:
-            excludes.append(os.path.basename(afile))
-
-    return excludes
-
-def get_excludes_in_dirs(dirs, patterns):
-    excludes = []
-    for adir in dirs:
-        excludes.extend(get_excludes(adir, patterns))
-    return excludes
-
-def get_dirs_for_features(root, features, dirs):
-    """
-    Find which directories to include in the list of build dirs based upon the
-    enabled port(s) and features.
-    """
-    outdirs = dirs
-    for adir in dirs:
-        for feature in features:
-            relpath = os.path.join(adir, feature)
-            featuredir = os.path.join(root, relpath)
-            if os.path.exists(featuredir) and not relpath in outdirs:
-                outdirs.append(relpath)
-
-    return outdirs
-
-
-def download_if_newer(url, destdir):
-    """
-    Checks if the file on the server is newer than the one in the user's tree,
-    and if so, downloads it.
-
-    Returns the filename of the downloaded file if downloaded, or None if
-    the existing file matches the one on the server.
-    """
-    obj = urlparse.urlparse(url)
-    filename = os.path.basename(obj.path)
-    destfile = os.path.join(destdir, filename)
-
-    try:
-        urlobj = urllib2.urlopen(url, timeout=20)
-    except:
-        if os.path.exists(destfile):
-            return None # We've at least got a file, use it for now.
-        else:
-            raise
-    size = long(urlobj.info().getheader('Content-Length'))
-
-    def download_callback(downloaded, block_size, total_size):
-        downloaded = block_size * downloaded
-        if downloaded > total_size:
-            downloaded = total_size
-        sys.stdout.write('%s %d of %d bytes downloaded\r' % (filename, downloaded, total_size))
-    
-    try:
-        urlobj = urllib.urlopen(url)
-        size = long(urlobj.info().getheader('Content-Length'))
-
-        # NB: We don't check modified time as Python doesn't yet handle timezone conversion
-        # properly when converting strings to time objects.
-        if not os.path.exists(destfile) or os.path.getsize(destfile) != size:
-            urllib.urlretrieve(url, destfile, download_callback)
-            print ''
-            return destfile
-    except Exception, e:
-        # if there's a connection error, just ignore it
-        print e
-        pass
-        
-    return None
-
-
-def update_wx_deps(conf, wk_root, msvc_version='msvc2008'):
-    """
-    Download and update tools needed to build the wx port.
-    """
-    import Logs
-    Logs.info('Ensuring wxWebKit dependencies are up-to-date.')
-
-    wklibs_dir = os.path.join(wk_root, 'WebKitLibraries')
-    waf = download_if_newer('http://wxwebkit.kosoftworks.com/downloads/deps/waf', os.path.join(wk_root, 'Tools', 'wx'))
-    if waf:
-        # TODO: Make the build restart itself after an update.
-        Logs.warn('Build system updated, please restart build.')
-        sys.exit(1)
-
-    # since this module is still experimental
-    wxpy_dir = os.path.join(wk_root, 'Source', 'WebKit', 'wx', 'bindings', 'python')
-    swig_module = download_if_newer('http://wxwebkit.kosoftworks.com/downloads/deps/swig.py.txt', wxpy_dir)
-    if swig_module:
-        shutil.copy(os.path.join(wxpy_dir, 'swig.py.txt'), os.path.join(wxpy_dir, 'swig.py'))
-
-    if sys.platform.startswith('win'):
-        Logs.info('downloading deps package')
-        archive = download_if_newer('http://wxwebkit.kosoftworks.com/downloads/deps/wxWebKitDeps-%s.zip' % msvc_version, wklibs_dir)
-        if archive and os.path.exists(archive):
-            os.system('unzip -o %s -d %s' % (archive, os.path.join(wklibs_dir, msvc_version)))
-
-    elif sys.platform.startswith('darwin'):
-        # export the right compiler for building the dependencies
-        if platform.release().startswith('10'):  # Snow Leopard
-            os.environ['CC'] = conf.env['CC'][0]
-            os.environ['CXX'] = conf.env['CXX'][0]
-        os.system('%s/Tools/wx/install-unix-extras' % wk_root)
-
-
-def includeDirsForSources(sources):
-    include_dirs = []
-    for group in sources:
-        for source in group:
-            dirname = os.path.dirname(source)
-            if not dirname in include_dirs:
-                include_dirs.append(dirname)
-
-    return include_dirs
-
-
-def flattenSources(sources):
-    flat_sources = []
-    for group in sources:
-        flat_sources.extend(group)
-
-    return flat_sources
-
-def git_branch_name():
-    try:
-        branches = commands.getoutput("git branch --no-color")
-        match = re.search('^\* (.*)', branches, re.MULTILINE)
-        if match:
-            return "%s" % match.group(1)
-    except:
-        pass
-
-    return ""
-
-def is_git_branch_build():
-    branch = git_branch_name()
-    is_branch_build = commands.getoutput("git config --bool branch.%s.webKitBranchBuild" % branch)
-    if is_branch_build == "true":
-        return True
-    elif is_branch_build == "false":
-        return False
-        
-    # not defined for this branch, use the default
-    is_branch_build = commands.getoutput("git config --bool core.webKitBranchBuild")
-    return is_branch_build == "true"
-
-def get_base_product_dir(wk_root):
-    build_dir = os.path.join(wk_root, 'WebKitBuild')
-    git_branch = git_branch_name()
-    if git_branch != "" and is_git_branch_build():
-        build_dir = os.path.join(build_dir, git_branch)
-        
-    return build_dir
-
-def get_config(wk_root):
-    config_file = os.path.join(get_base_product_dir(wk_root), 'Configuration')
-    config = 'Debug'
-
-    if os.path.exists(config_file):
-        config = open(config_file).read()
-
-    return config
-
-
-def get_arch(wk_root):
-    arch_file = os.path.join(get_base_product_dir(wk_root), 'Architecture')
-    arch = 'x86_64'
-
-    if os.path.exists(arch_file):
-        arch = open(arch_file).read()
-
-    return arch
-
-
-def svn_revision():
-    if os.system("git-svn info") == 0:
-        info = commands.getoutput("git-svn info ../..")
-    else:
-        info = commands.getoutput("svn info")
-
-    for line in info.split("\n"):
-        if line.startswith("Revision: "):
-            return line.replace("Revision: ", "").strip()
-
-    return ""
diff --git a/Tools/waf/build/settings.py b/Tools/waf/build/settings.py
deleted file mode 100644
index 95ea2e8..0000000
--- a/Tools/waf/build/settings.py
+++ /dev/null
@@ -1,514 +0,0 @@
-# Copyright (C) 2009 Kevin Ollivier  All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
-# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#
-# Common elements of the waf build system shared by all projects.
-
-import commands
-import os
-import platform
-import re
-import sys
-
-import Logs
-import Options
-
-from build_utils import *
-from waf_extensions import *
-
-# to be moved to wx when it supports more configs
-from wxpresets import *
-
-wk_root = os.path.abspath(os.path.join(os.path.dirname(__file__), '../../..'))
-
-if sys.platform.startswith('win'):
-    if not 'WXWIN' in os.environ:
-        print "Please set WXWIN to the directory containing wxWidgets."
-        sys.exit(1)
-
-    wx_root = os.environ['WXWIN']
-else:
-    wx_root = commands.getoutput('wx-config --prefix')
-
-wtf_dir = os.path.join(wk_root, 'Source', 'WTF')
-jscore_dir = os.path.join(wk_root, 'Source', 'JavaScriptCore')
-webcore_dir = os.path.join(wk_root, 'Source', 'WebCore')
-wklibs_dir = os.path.join(wk_root, 'WebKitLibraries')
-
-common_defines = []
-common_cxxflags = []
-common_includes = []
-common_libs = []
-common_libpaths = []
-common_frameworks = []
-
-ports = [
-    'BlackBerry',
-    'Chromium',
-    'Efl',
-    'Gtk',
-    'Mac',
-    'None',
-    'Qt',
-    'Safari',
-    'Win',
-    'WinCE',
-    'wx',
-]
-
-uses = [
-    'CF',
-    'CFNet',
-    'CURL',
-    'WXGC',
-]
-
-port_uses = {
-    'wx': ['CURL', 'WXGC'],
-}
-
-jscore_dirs = [
-    'API',
-    'assembler',
-    'bytecode',
-    'bytecompiler',
-    'debugger',
-    'disassembler',
-    'disassembler/udis86',
-    'DerivedSources',
-    'dfg',
-    'heap',
-    'interpreter',
-    'jit',
-    'llint',
-    'parser',
-    'profiler',
-    'runtime',
-    'tools',
-    'yarr',
-    '../WTF/wtf',
-    '../WTF/wtf/dtoa',
-    '../WTF/wtf/text',
-    '../WTF/wtf/unicode',
-    '../WTF/wtf/unicode/icu',
-]
-
-webcore_dirs_common = [
-    'Source/WebCore/Modules/websockets',
-    'Source/WebCore/accessibility',
-    'Source/WebCore/bindings',
-    'Source/WebCore/bindings/cpp',
-    'Source/WebCore/bindings/generic',
-    'Source/WebCore/bindings/js',
-    'Source/WebCore/bridge',
-    'Source/WebCore/bridge/c',
-    'Source/WebCore/bridge/jsc',
-    'Source/WebCore/css',
-    'Source/WebCore/DerivedSources',
-    'Source/WebCore/dom',
-    'Source/WebCore/dom/default',
-    'Source/WebCore/editing',
-    'Source/WebCore/fileapi',
-    'Source/WebCore/history',
-    'Source/WebCore/html',
-    'Source/WebCore/html/canvas',
-    'Source/WebCore/html/parser',
-    'Source/WebCore/html/shadow',
-    'Source/WebCore/inspector',
-    'Source/WebCore/loader',
-    'Source/WebCore/loader/appcache',
-    'Source/WebCore/loader/archive',
-    'Source/WebCore/loader/cache',
-    'Source/WebCore/loader/icon',
-    'Source/WebCore/Modules/filesystem',
-    'Source/WebCore/Modules/geolocation',
-    'Source/WebCore/Modules/notifications',
-    'Source/WebCore/Modules/indexeddb',
-    'Source/WebCore/Modules/quota',
-    'Source/WebCore/Modules/webdatabase',
-    'Source/WebCore/page',
-    'Source/WebCore/page/animation',
-    'Source/WebCore/page/scrolling',
-    'Source/WebCore/platform',
-    'Source/WebCore/platform/animation',
-    'Source/WebCore/platform/graphics',
-    'Source/WebCore/platform/graphics/filters',
-    'Source/WebCore/platform/graphics/filters/arm',
-    'Source/WebCore/platform/graphics/transforms',
-    'Source/WebCore/platform/image-decoders',
-    'Source/WebCore/platform/image-decoders/bmp',
-    'Source/WebCore/platform/image-decoders/gif',
-    'Source/WebCore/platform/image-decoders/ico',
-    'Source/WebCore/platform/image-decoders/jpeg',
-    'Source/WebCore/platform/image-decoders/png',
-    'Source/WebCore/platform/image-decoders/webp',
-    'Source/WebCore/platform/mock',
-    'Source/WebCore/platform/network',
-    'Source/WebCore/platform/posix',
-    'Source/WebCore/platform/sql',
-    'Source/WebCore/platform/text',
-    'Source/WebCore/platform/text/transcoder',
-    'Source/WebCore/plugins',
-    'Source/WebCore/rendering',
-    'Source/WebCore/rendering/style',
-    'Source/WebCore/rendering/svg',
-    'Source/WebCore/storage',
-    'Source/WebCore/svg',
-    'Source/WebCore/svg/animation',
-    'Source/WebCore/svg/graphics',
-    'Source/WebCore/svg/graphics/filters',
-    'Source/WebCore/svg/properties',
-    'Source/WebCore/testing',
-    'Source/WebCore/testing/js',
-    'Source/WebCore/workers',
-    'Source/WebCore/xml',
-    'Source/WebCore/xml/parser',
-]
-
-config = get_config(wk_root)
-arch = get_arch(wk_root)
-config_dir = config
-
-output_dir = os.path.join(get_base_product_dir(wk_root), config_dir)
-
-building_on_win32 = sys.platform.startswith('win')
-
-default_port = 'Mac'
-if building_on_win32:
-    deafult_port = "Win"
-
-build_port = default_port
-
-def get_port_excludes(thisport):
-    """
-    This function creates a list of file patterns to exclude
-    based on what port you are using and what USES it has defined.
-    """
-    exclude_patterns = []
-    global ports
-    for port in ports:
-        if not port == thisport:
-            exclude = "*%s.cpp" % port
-            if port == 'Chromium':
-                exclude = "*Chromium*.cpp"
-            exclude_patterns.append(exclude)
-    
-    global uses
-    for use in uses:
-        if thisport not in port_uses or not use in port_uses[thisport]:
-            exclude_patterns.append("*%s.cpp" % use)
-            
-    return exclude_patterns
-
-def get_config():
-    waf_configname = config.upper().strip()
-    if building_on_win32:
-        isReleaseCRT = (config == 'Release')
-        if build_port == 'wx':
-            if Options.options.wxpython:
-                isReleaseCRT = True
-
-        if isReleaseCRT:
-            waf_configname = waf_configname + ' CRT_MULTITHREADED_DLL'
-        else:
-            waf_configname = waf_configname + ' CRT_MULTITHREADED_DLL_DBG'
-
-    return waf_configname
-
-create_hash_table = wk_root + "/Source/JavaScriptCore/create_hash_table"
-if building_on_win32:
-    create_hash_table = get_output('cygpath --unix "%s"' % create_hash_table)
-os.environ['CREATE_HASH_TABLE'] = create_hash_table
-
-feature_defines = []
-
-msvc_version = 'msvc2008'
-
-msvclibs_dir = os.path.join(wklibs_dir, msvc_version, 'win')
-
-
-def get_path_to_wxconfig():
-    if 'WX_CONFIG' in os.environ:
-        return os.environ['WX_CONFIG']
-    else:
-        return 'wx-config'
-
-
-def common_set_options(opt):
-    """
-    Initialize common options provided to the user.
-    """
-    opt.tool_options('compiler_cxx')
-    opt.tool_options('compiler_cc')
-    opt.tool_options('python')
-
-    opt.add_option('--port', action='store', default=default_port, help='Which WebKit port to build.')
-    opt.add_option('--wxpython', action='store_true', default=False, help='Create the wxPython bindings.')
-    opt.add_option('--wx-compiler-prefix', action='store', default='vc',
-                   help='Specify a different compiler prefix (do this if you used COMPILER_PREFIX when building wx itself)')
-    opt.add_option('--macosx-version', action='store', default='', help="Version of OS X to build for.")
-    opt.add_option('--msvc-version', action='store', default='', help="MSVC version to use to build. Use 8 for 2005, 9 for 2008")
-    opt.add_option('--mac_universal_binary', action='store_true', default=False, help='Build Mac as universal (i386, x86_64, ppc) binary.')
-    opt.add_option('--mac_archs', action='store', default='', help='Comma separated list of architectures (i386, x86_64, ppc) to build on Mac.')
-    opt.add_option('--cairo', action='store_true', default=sys.platform.startswith('linux'), help='Use cairo for drawing (experimental for Win/Mac')
-
-def common_configure(conf):
-    """
-    Configuration used by all targets, called from the target's configure() step.
-    """
-
-    conf.env['MSVC_TARGETS'] = ['x86']
-
-    build_port = Options.options.port
-
-    feature_defines = ['ENABLE_DATABASE', 'ENABLE_SQL_DATABASE', 'ENABLE_XSLT', 'ENABLE_JAVASCRIPT_DEBUGGER',
-                    'ENABLE_SVG', 'ENABLE_FILTERS', 'ENABLE_SVG_FONTS', 'ENABLE_INSPECTOR', 'ENABLE_WORKERS',
-                    'BUILDING_%s' % build_port.upper()]
-
-    conf.env["FEATURE_DEFINES"] = ' '.join(feature_defines)
-
-    if Options.options.msvc_version and Options.options.msvc_version != '':
-        conf.env['MSVC_VERSIONS'] = ['msvc %s.0' % Options.options.msvc_version]
-    else:
-        conf.env['MSVC_VERSIONS'] = ['msvc 9.0', 'msvc 8.0']
-
-    if sys.platform.startswith('cygwin'):
-        print "ERROR: You must use the Win32 Python from python.org, not Cygwin Python, when building on Windows."
-        sys.exit(1)
-
-    conf.check_tool('compiler_cxx')
-    conf.check_tool('compiler_cc')
-
-    if sys.platform.startswith('darwin'):
-        conf.check_tool('osx')
-
-    global msvc_version
-    global msvclibs_dir
-
-    libprefix = ''
-
-    if Options.options.cairo and build_port == 'wx':
-        if building_on_win32 and not "CAIRO_ROOT" in os.environ:
-            Logs.error("To build with Cairo on Windows, you must set the CAIRO_ROOT environment variable.")
-            sys.exit(1)
-
-    if building_on_win32:
-        libprefix = 'lib'
-
-        found = conf.get_msvc_versions()
-        found_versions = []
-        for version in found:
-            found_versions.append(version[0])
-
-        if 'msvc 9.0' in conf.env['MSVC_VERSIONS'] and 'msvc 9.0' in found_versions:
-            msvc_version = 'msvc2008'
-        elif 'msvc 8.0' in conf.env['MSVC_VERSIONS'] and 'msvc 8.0' in found_versions:
-            msvc_version = 'msvc2005'
-
-        msvclibs_dir = os.path.join(wklibs_dir, msvc_version, 'win')
-
-        # Disable several warnings which occur many times during the build.
-        # Some of them are harmless (4099, 4344, 4396, 4800) and working around
-        # them in WebKit code is probably just not worth it. We can simply do
-        # nothing about the others (4503). A couple are possibly valid but
-        # there are just too many of them in the code so fixing them is
-        # impossible in practice and just results in tons of distracting output
-        # (4244, 4291). Finally 4996 is actively harmful as it is given for
-        # just about any use of standard C/C++ library facilities.
-        conf.env.append_value('CXXFLAGS', [
-            '/wd4099',  # type name first seen using 'struct' now seen using 'class'
-            '/wd4244',  # conversion from 'xxx' to 'yyy', possible loss of data:
-            '/wd4291',  # no matching operator delete found (for placement new)
-            '/wd4344',  # behaviour change in template deduction
-            '/wd4396',  # inline can't be used in friend declaration
-            '/wd4503',  # decorated name length exceeded, name was truncated
-            '/wd4800',  # forcing value to bool 'true' or 'false'
-            '/wd4996',  # deprecated function
-        ])
-
-        # This one also occurs in C code, so disable it there as well.
-        conf.env.append_value('CCFLAGS', ['/wd4996'])
-
-    if build_port == "wx":
-        update_wx_deps(conf, wk_root, msvc_version)
-
-        conf.env.append_value('CXXDEFINES', ['BUILDING_WX__=1'])
-
-        if building_on_win32:
-            conf.env.append_value('LIBPATH', os.path.join(msvclibs_dir, 'lib'))
-            # wx settings
-            global config
-            is_debug = (config == 'Debug')            
-            # generate debug symbols even in release mode, as it helps debugging.
-            if not is_debug:
-                conf.env.append_value('CXXFLAGS', '/Zi')
-                conf.env.append_value('LINKFLAGS', '/debug')
-            wxdefines, wxincludes, wxlibs, wxlibpaths = get_wxmsw_settings(wx_root, shared=True, unicode=True, debug=is_debug, wxPython=Options.options.wxpython)
-            conf.env['CXXDEFINES_WX'] = wxdefines
-            conf.env['CPPPATH_WX'] = wxincludes
-            conf.env['LIB_WX'] = wxlibs
-            conf.env['LIBPATH_WX'] = wxlibpaths
-            if Options.options.cairo and 'CAIRO_ROOT' in os.environ:
-                conf.env.append_value('CPPPATH_WX', [os.path.join(os.environ['CAIRO_ROOT'], 'include', 'cairo')])
-                conf.env.append_value('LIBPATH_WX', [os.path.join(os.environ['CAIRO_ROOT'], 'lib')])
-                conf.env.append_value('LIB_WX', ['cairo'])
-        else:
-            conf.check_cfg(path=get_path_to_wxconfig(), args='--cxxflags --libs', package='', uselib_store='WX', mandatory=True)
-
-    if sys.platform.startswith('darwin'):
-        conf.env['LIB_ICU'] = ['icucore']
-        global port_uses
-        port_uses[build_port].append('CF')
-        
-        conf.env.append_value('CPPPATH', wklibs_dir)
-        conf.env.append_value('LIBPATH', wklibs_dir)
-
-        min_version = None
-
-        mac_target = 'MACOSX_DEPLOYMENT_TARGET'
-        if Options.options.macosx_version != '':
-            min_version = Options.options.macosx_version
-
-        # WebKit only supports 10.4+, but ppc systems often set this to earlier systems
-        if not min_version:
-            min_version = commands.getoutput('sw_vers -productVersion')[:4]
-            if min_version in ['10.1', '10.2', '10.3']:
-                min_version = '10.4'
-
-        sdk_version = min_version
-        if min_version == "10.4":
-            sdk_version += "u"
-            conf.env.append_value('LIB_WKINTERFACE', ['WebKitSystemInterfaceTiger'])
-        elif min_version == "10.7":
-            conf.env.append_value('LIB_WKINTERFACE', ['WebKitSystemInterfaceLion'])
-        else:
-            # NOTE: There is a WebKitSystemInterfaceSnowLeopard, but when we use that
-            # on 10.6, we get a strange missing symbol error, and this library seems to
-            # work fine for wx's purposes.
-            conf.env.append_value('LIB_WKINTERFACE', ['WebKitSystemInterfaceLeopard'])
-            conf.env.append_value('LINKFLAGS', ['-framework', 'QuartzCore'])
-        
-        # match WebKit Mac's default here unless we're building on platforms that won't support 64-bit.
-        archs = []
-        
-        if Options.options.mac_archs != '':
-            arch_list = Options.options.mac_archs.replace("'", '').replace('"', '').split(",")
-            for arch in arch_list:
-                if arch.strip() != '':
-                    archs.append(arch.strip())
-        elif Options.options.mac_universal_binary:
-            archs = ['i386', 'x86_64', 'ppc']
-        else:
-            is_cocoa = "__WXOSX_COCOA__" in conf.env["CXXDEFINES_WX"]
-            if min_version == "10.4" or not is_cocoa:
-                archs = ["i386"]
-            else:
-                global arch
-                archs = [arch]
-
-        sdkroot = '/Developer/SDKs/MacOSX%s.sdk' % sdk_version
-        if not os.path.exists(sdkroot):
-            Logs.error("Cannot find the specified SDK needed to build: %r" % sdkroot)
-            sys.exit(1)
-        sdkflags = ['-isysroot', sdkroot]
-        for arch in archs:
-            sdkflags.extend(['-arch', arch])
-
-        conf.env.append_value('CPPFLAGS', sdkflags)
-        conf.env.append_value('LINKFLAGS', sdkflags)
-
-        conf.env.append_value('LINKFLAGS', ['-framework', 'Security'])
-
-        conf.env.append_value('CPPPATH_SQLITE3', [os.path.join(wklibs_dir, 'WebCoreSQLite3')])
-        conf.env.append_value('LIB_SQLITE3', ['WebCoreSQLite3'])
-
-    # NOTE: The order here is important, because python sets the MACOSX_DEPLOYMENT_TARGET to
-    # 10.3 even on intel. So we must first set the SDK and arch flags, then load Python's config,
-    # and finally override the value Python set for MACOSX_DEPLOYMENT_TARGET
-    if Options.options.wxpython:
-        conf.check_tool('python')
-        conf.check_python_headers()
-
-    if sys.platform.startswith('darwin'):
-        os.environ[mac_target] = conf.env[mac_target] = min_version
-
-    conf.env.append_value('CXXDEFINES', feature_defines)
-    if config == 'Release':
-        conf.env.append_value('CPPDEFINES', 'NDEBUG')
-
-    if building_on_win32:
-        conf.env.append_value('CPPPATH', [
-            os.path.join(jscore_dir, 'os-win32'),
-            os.path.join(msvclibs_dir, 'include'),
-            os.path.join(msvclibs_dir, 'include', 'pthreads'),
-            os.path.join(msvclibs_dir, 'lib'),
-            ])
-
-        conf.env.append_value('LIB', ['libpng', 'libjpeg', 'pthreadVC2'])
-        # common win libs
-        conf.env.append_value('LIB', [
-            'kernel32', 'user32', 'gdi32', 'comdlg32', 'winspool', 'winmm',
-            'shell32', 'shlwapi', 'comctl32', 'ole32', 'oleaut32', 'uuid', 'advapi32',
-            'wsock32', 'gdiplus', 'usp10', 'version'])
-
-        conf.env['LIB_ICU'] = ['icudt', 'icule', 'iculx', 'icuuc', 'icuin', 'icuio', 'icutu']
-
-        #curl
-        conf.env['LIB_CURL'] = ['libcurl']
-
-        #sqlite3
-        conf.env['CPPPATH_SQLITE3'] = [os.path.join(msvclibs_dir, 'include', 'SQLite')]
-        conf.env['LIB_SQLITE3'] = ['sqlite3']
-
-        #libxml2
-        conf.env['LIB_XML'] = ['libxml2']
-
-        #libxslt
-        conf.env['LIB_XSLT'] = ['libxslt']
-    else:
-        conf.env.append_value('CXXFLAGS', ['-fvisibility=hidden'])
-        if build_port == 'wx':
-            port_uses['wx'].append('PTHREADS')
-            conf.env.append_value('LIB', ['jpeg', 'png', 'pthread'])
-            conf.env.append_value('LIBPATH', os.path.join(wklibs_dir, 'unix', 'lib'))
-            conf.env.append_value('CPPPATH', os.path.join(wklibs_dir, 'unix', 'include'))
-            conf.env.append_value('CXXFLAGS', ['-fPIC', '-DPIC'])
-            conf.env.append_value('CXXFLAGS', ['-g'])
-        conf.check_cfg(msg='Checking for libxslt', path='xslt-config', args='--cflags --libs', package='', uselib_store='XSLT', mandatory=True)
-        conf.check_cfg(path='xml2-config', args='--cflags --libs', package='', uselib_store='XML', mandatory=True)
-        if sys.platform.startswith('darwin') and min_version and min_version == '10.4':
-            conf.check_cfg(path=os.path.join(wklibs_dir, 'unix', 'bin', 'curl-config'), args='--cflags --libs', package='', uselib_store='CURL', mandatory=True)
-        else:
-            conf.check_cfg(path='curl-config', args='--cflags --libs', package='', uselib_store='CURL', mandatory=True)
-
-        if not sys.platform.startswith('darwin'):
-            # this is needed to keep ld from hitting the 4gb process limit under Linux/Unix.
-            conf.env.append_value('LINKFLAGS', ['-Wl,--no-keep-memory'])
-            conf.check_cfg(package='cairo', args='--cflags --libs', uselib_store='WX', mandatory=True)
-            conf.check_cfg(package='pango', args='--cflags --libs', uselib_store='WX', mandatory=True)
-            conf.check_cfg(package='gtk+-2.0', args='--cflags --libs', uselib_store='WX', mandatory=True)
-            conf.check_cfg(package='sqlite3', args='--cflags --libs', uselib_store='SQLITE3', mandatory=True)
-            conf.check_cfg(path='icu-config', args='--cflags --ldflags', package='', uselib_store='ICU', mandatory=True)
-
-    if build_port in port_uses:
-        for use in port_uses[build_port]:
-            conf.env.append_value('CXXDEFINES', ['WTF_USE_%s' % use])
diff --git a/Tools/waf/build/waf_extensions.py b/Tools/waf/build/waf_extensions.py
deleted file mode 100644
index e8c35f9..0000000
--- a/Tools/waf/build/waf_extensions.py
+++ /dev/null
@@ -1,102 +0,0 @@
-# Copyright (C) 2009 Kevin Ollivier  All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
-# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#
-# This module is for code where we override waf's default behavior or extend waf
-
-import os
-import subprocess
-import sys
-
-import Utils
-
-
-# version of exec_command that handles Windows command lines longer than 32000 chars
-def exec_command(s, **kw):
-    filename = ''
-    if sys.platform.startswith('win') and len(' '.join(s)) > 32000:
-        import tempfile
-        (fd, filename) = tempfile.mkstemp()
-        t = []
-        for i in s:
-            if i.find(" ") != -1:
-                i = '"%s"' % i
-            t.append(i)
-
-        t1 = t[1:]
-        # Fix for LNK1170 error
-        filename_str = '@' + filename
-        filename2_str = None
-        if len(' '.join(s)) > 131070:
-            t2 = t[len(t) / 2:]
-            t1 = t[1:len(t) / 2]
-            (fd2, filename2) = tempfile.mkstemp()
-            os.write(fd2, ' '.join(t2))
-            os.close(fd2)
-            filename2_str = '@' + filename2
-        os.write(fd, ' '.join(t1))
-        os.close(fd)
-
-        s = [s[0]]
-        s.append(filename_str)
-        if filename2_str:
-            s.append(filename2_str)
-
-    if 'log' in kw:
-        kw['stdout'] = kw['stderr'] = kw['log']
-        del(kw['log'])
-    kw['shell'] = isinstance(s, str)
-
-    def cleanup():
-        try:
-            if os.path.exists(filename):
-                os.remove(filename)
-        except:
-            pass
-
-    try:
-        proc = subprocess.Popen(s, **kw)
-        result = proc.wait()
-        cleanup()
-        return result
-
-    except OSError:
-        cleanup()
-        raise
-
-Utils.exec_command = exec_command
-
-# Better performing h_file to keep hashing from consuming lots of time
-import stat
-
-
-def h_file(filename):
-    st = os.stat(filename)
-    if stat.S_ISDIR(st[stat.ST_MODE]):
-        raise IOError('not a file')
-    m = Utils.md5()
-    m.update(str(st.st_mtime))
-    m.update(str(st.st_size))
-    m.update(filename)
-    return m.digest()
-
-Utils.h_file = h_file
diff --git a/Tools/waf/build/wxpresets.py b/Tools/waf/build/wxpresets.py
deleted file mode 100644
index 0ced3c5..0000000
--- a/Tools/waf/build/wxpresets.py
+++ /dev/null
@@ -1,128 +0,0 @@
-# Copyright (C) 2009 Kevin Ollivier  All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
-# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#
-# Library for functions to determine wx settings based on configuration
-
-import os
-import re
-import sys
-
-import Options
-
-
-def parse_build_cfg(filename):
-    cfg_file = open(filename, 'r')
-    cfg = {}
-    for cfg_line in cfg_file.readlines():
-        key = None
-        value = None
-        parts = cfg_line.split('=')
-        if len(parts) >= 1:
-            key = parts[0].strip()
-
-        if len(parts) >= 2:
-            value = parts[1].strip()
-            if value.isdigit():
-                value = int(value)
-
-        if key:
-            cfg[key] = value
-
-    return cfg
-
-
-def get_wx_version(wx_root):
-    versionText = open(os.path.join(wx_root, "include", "wx", "version.h"), "r").read()
-
-    majorVersion = re.search("#define\swxMAJOR_VERSION\s+(\d+)", versionText).group(1)
-    minorVersion = re.search("#define\swxMINOR_VERSION\s+(\d+)", versionText).group(1)
-    releaseVersion = re.search("#define\swxRELEASE_NUMBER\s+(\d+)", versionText).group(1)
-
-    release = [majorVersion, minorVersion]
-    if int(minorVersion) % 2 == 1:
-        release.append(releaseVersion)
-    return release
-
-
-def get_wxmsw_settings(wx_root, shared=False, unicode=False, debug=False, wxPython=False):
-    if not os.path.exists(wx_root):
-        print "Directory %s does not exist." % wx_root
-        sys.exit(1)
-
-    defines = ['__WXMSW__']
-    includes = [os.path.join(wx_root, 'include')]
-    cxxflags = []
-    libs = []
-    libpaths = []
-
-    libdir = os.path.join(wx_root, 'lib')
-    ext = ''
-    postfix = 'vc'
-
-    version_str_nodot = ''.join(get_wx_version(wx_root)[0:2])
-
-    if shared:
-        defines.append('WXUSINGDLL')
-        libdir = os.path.join(libdir, Options.options.wx_compiler_prefix + '_dll')
-    else:
-        libdir = os.path.join(libdir, Options.options.wx_compiler_prefix + '_lib')
-
-    if unicode:
-        defines.append('_UNICODE')
-        ext += 'u'
-
-    depext = ''
-    if wxPython and not version_str_nodot.startswith('29'):
-        ext += 'h'
-        depext += 'h'
-    elif debug:
-        ext += 'd'
-        depext += 'd'
-
-    configdir = os.path.join(libdir, 'msw' + ext)
-
-    monolithic = False
-    cfg_file = os.path.join(configdir, 'build.cfg')
-    if os.path.exists(cfg_file):
-        cfg = parse_build_cfg(cfg_file)
-        if "MONOLITHIC" in cfg:
-            monolithic = cfg["MONOLITHIC"]
-    libpaths.append(libdir)
-    includes.append(configdir)
-
-    def get_wxlib_name(name):
-        if name == 'base':
-            return 'wxbase%s%s' % (version_str_nodot, ext)
-
-        return "wxmsw%s%s_%s" % (version_str_nodot, ext, name)
-
-    libs.extend(['wxzlib' + depext, 'wxjpeg' + depext, 'wxpng' + depext, 'wxexpat' + depext])
-    if monolithic:
-        libs.extend(["wxmsw%s%s" % (version_str_nodot, ext)])
-    else:
-        libs.extend([get_wxlib_name('base'), get_wxlib_name('core')])
-
-    if wxPython or debug:
-        defines.append('__WXDEBUG__')
-
-    return (defines, includes, libs, libpaths)
diff --git a/Tools/whitespace_file.txt b/Tools/whitespace_file.txt
new file mode 100644
index 0000000..a4f81cc
--- /dev/null
+++ b/Tools/whitespace_file.txt
@@ -0,0 +1,5 @@
+<blink>Hello world!</blink>
+
+She blinked slowly back at him.
+
+Then, backed away.
diff --git a/Tools/win/AssembleBuildLogs/AssembleBuildLogs.vcxproj b/Tools/win/AssembleBuildLogs/AssembleBuildLogs.vcxproj
deleted file mode 100644
index a126101..0000000
--- a/Tools/win/AssembleBuildLogs/AssembleBuildLogs.vcxproj
+++ /dev/null
@@ -1,77 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ItemGroup Label="ProjectConfigurations">

-    <ProjectConfiguration Include="Debug|Win32">

-      <Configuration>Debug</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Production|Win32">

-      <Configuration>Production</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Release|Win32">

-      <Configuration>Release</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-  </ItemGroup>

-  <PropertyGroup Label="Globals">

-    <ProjectGuid>{67A61940-F80B-42A0-A29D-B6DB1C27BCEE}</ProjectGuid>

-    <Keyword>MakeFileProj</Keyword>

-  </PropertyGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">

-    <ConfigurationType>Makefile</ConfigurationType>

-    <UseDebugLibraries>true</UseDebugLibraries>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">

-    <ConfigurationType>Makefile</ConfigurationType>

-    <UseDebugLibraries>false</UseDebugLibraries>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Production|Win32'" Label="Configuration">

-    <ConfigurationType>Makefile</ConfigurationType>

-    <UseDebugLibraries>false</UseDebugLibraries>

-  </PropertyGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />

-  <ImportGroup Label="ExtensionSettings">

-  </ImportGroup>

-  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-  </ImportGroup>

-  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Production|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-  </ImportGroup>

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">

-    <NMakePreprocessorDefinitions>WIN32;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>

-    <NMakeBuildCommandLine>AssembleLogs.cmd</NMakeBuildCommandLine>

-    <NMakeReBuildCommandLine>AssembleLogs.cmd</NMakeReBuildCommandLine>

-    <NMakeCleanCommandLine>if exist "%CONFIGURATIONBUILDDIR%\BuildOutput.htm" del "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"</NMakeCleanCommandLine>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">

-    <NMakePreprocessorDefinitions>WIN32;NDEBUG;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>

-    <NMakeBuildCommandLine>AssembleLogs.cmd</NMakeBuildCommandLine>

-    <NMakeReBuildCommandLine>AssembleLogs.cmd</NMakeReBuildCommandLine>

-    <NMakeCleanCommandLine>if exist "%CONFIGURATIONBUILDDIR%\BuildOutput.htm" del "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"</NMakeCleanCommandLine>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">

-    <NMakePreprocessorDefinitions>WIN32;NDEBUG;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>

-    <NMakeBuildCommandLine>AssembleLogs.cmd</NMakeBuildCommandLine>

-    <NMakeReBuildCommandLine>AssembleLogs.cmd</NMakeReBuildCommandLine>

-    <NMakeCleanCommandLine>if exist "%CONFIGURATIONBUILDDIR%\BuildOutput.htm" del "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"</NMakeCleanCommandLine>

-  </PropertyGroup>

-  <ItemDefinitionGroup>

-  </ItemDefinitionGroup>

-  <ItemGroup>

-    <None Include="AssembleLogs.cmd" />

-    <None Include="readme.txt" />

-  </ItemGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />

-  <ImportGroup Label="ExtensionTargets">

-  </ImportGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/win/AssembleBuildLogs/AssembleBuildLogs.vcxproj.filters b/Tools/win/AssembleBuildLogs/AssembleBuildLogs.vcxproj.filters
deleted file mode 100644
index bc53a0c..0000000
--- a/Tools/win/AssembleBuildLogs/AssembleBuildLogs.vcxproj.filters
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ItemGroup>

-    <None Include="readme.txt" />

-    <None Include="AssembleLogs.cmd" />

-  </ItemGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/win/AssembleBuildLogs/AssembleLogs.cmd b/Tools/win/AssembleBuildLogs/AssembleLogs.cmd
deleted file mode 100755
index 31b7718..0000000
--- a/Tools/win/AssembleBuildLogs/AssembleLogs.cmd
+++ /dev/null
@@ -1,165 +0,0 @@
-if exist "%CONFIGURATIONBUILDDIR%\BuildOutput.htm" del "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING WTFGenerated...                                 >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\WTFGenerated\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING WTF...                                          >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\WTF\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING JavaScriptCoreGenerated...                      >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\JavaScriptCoreGenerated\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING LLIntDesiredOffsets...                          >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\LLIntDesiredOffsets\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING LLIntOffsetsExtractor...                        >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\LLIntOffsetsExtractor\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING LLIntAssembly...                                >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\LLIntAssembly\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING JavaScriptCoreExportGenerator...                >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\JavaScriptCoreExportGenerator\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING JavaScriptCore...                               >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\JavaScriptCore\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING jsc...                                          >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\jsc\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING testRegExp...                                   >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\testRegExp\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING testapi...                                      >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\testapi\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING WebKitSystemInterfaceGenerated...               >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\WebKitSystemInterfaceGenerated\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING WebKitSystemInterface...                        >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\WebKitSystemInterface\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING WebKitQuartzCoreAdditionsGenerated...           >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\WebKitQuartzCoreAdditionsGenerated\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING WebKitQuartzCoreAdditions...                    >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\WebKitQuartzCoreAdditions\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING WebCoreGenerated...                             >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\WebCoreGenerated\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING QTMovieWin...                                   >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\QTMovieWin\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING WebCore...                                      >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\WebCore\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING WebCoreTestSupport...                           >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\WebCoreTestSupport\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING Interfaces...                                   >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\Interfaces\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING WebKitGUID...                                   >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\WebKitGUID\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING WebKitExportGenerator...                        >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\WebKitExportGenerator\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING WebKit...                                       >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\WebKit\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING WinLauncherLib...                               >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\WinLauncherLib\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING WinLauncher...                                  >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\WinLauncher\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING TestNetscapePlugin...                           >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\TestNetscapePlugin\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING ImageDiff...                                    >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\ImageDiff\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING ImageDiffLauncher...                            >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\ImageDiffLauncher\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING DumpRenderTree...                               >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\DumpRenderTree\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING DumpRenderTreeLauncher...                       >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\DumpRenderTreeLauncher\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING record-memory...                                >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\record-memory\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING gtest-md...                                     >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\gtest-md\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo COMPILING TestWebKitAPI...                                >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-echo _________________________________________________________ >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
-type "%CONFIGURATIONBUILDDIR%\obj\TestWebKitAPI\BuildLog.htm" >> "%CONFIGURATIONBUILDDIR%\BuildOutput.htm"
\ No newline at end of file
diff --git a/Tools/win/AssembleBuildLogs/README b/Tools/win/AssembleBuildLogs/README
deleted file mode 100644
index 6371d98..0000000
--- a/Tools/win/AssembleBuildLogs/README
+++ /dev/null
@@ -1,10 +0,0 @@
-The purpose of this project is to concatenate all the BuildLog.htm 
-output files from each project into a single output file.
-
-This is useful for compiling with VCExpress using command line build
-because VCExpress does not output any single unified build log for the
-whole solution. Thus, we need to rely on pieceing together build logs
-for each individual project.
-
-If any project is added to the solution it should be made sure that it 
-is added to the AssembleLogs.cmd script.
\ No newline at end of file
diff --git a/Tools/win/DLLLauncher/DLLLauncherMain.cpp b/Tools/win/DLLLauncher/DLLLauncherMain.cpp
deleted file mode 100644
index 961335d..0000000
--- a/Tools/win/DLLLauncher/DLLLauncherMain.cpp
+++ /dev/null
@@ -1,210 +0,0 @@
-/*
- * Copyright (C) 2012 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-// This file contains code for a launcher executable for WebKit apps. When compiled into foo.exe, it
-// will set PATH so that Apple Application Support DLLs can be found, then will load foo.dll and
-// call its dllLauncherEntryPoint function, which should be declared like so:
-//     extern "C" __declspec(dllexport) int WINAPI dllLauncherEntryPoint(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpstCmdLine, int nCmdShow);
-// If USE_CONSOLE_ENTRY_POINT is defined, this function will be called instead:
-//     extern "C" __declspec(dllexport) int WINAPI dllLauncherEntryPoint(int argc, const char* argv[]);
-
-#include <shlwapi.h>
-#include <string>
-#include <vector>
-#include <windows.h>
-
-using namespace std;
-
-#if defined _M_IX86
-#define PROCESSORARCHITECTURE "x86"
-#elif defined _M_IA64
-#define PROCESSORARCHITECTURE "ia64"
-#elif defined _M_X64
-#define PROCESSORARCHITECTURE "amd64"
-#else
-#define PROCESSORARCHITECTURE "*"
-#endif
-
-#pragma comment(linker, "/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='" PROCESSORARCHITECTURE "' publicKeyToken='6595b64144ccf1df' language='*'\"")
-
-static void enableTerminationOnHeapCorruption()
-{
-    // Enable termination on heap corruption on OSes that support it (Vista and XPSP3).
-    // http://msdn.microsoft.com/en-us/library/aa366705(VS.85).aspx
-
-    HEAP_INFORMATION_CLASS heapEnableTerminationOnCorruption = static_cast<HEAP_INFORMATION_CLASS>(1);
-
-    HMODULE module = ::GetModuleHandleW(L"kernel32.dll");
-    if (!module)
-        return;
-
-    typedef BOOL (WINAPI*HSI)(HANDLE, HEAP_INFORMATION_CLASS, PVOID, SIZE_T);
-    HSI heapSetInformation = reinterpret_cast<HSI>(::GetProcAddress(module, "HeapSetInformation"));
-    if (!heapSetInformation)
-        return;
-
-    heapSetInformation(0, heapEnableTerminationOnCorruption, 0, 0);
-}
-
-static wstring getStringValue(HKEY key, const wstring& valueName)
-{
-    DWORD type = 0;
-    DWORD bufferSize = 0;
-    if (::RegQueryValueExW(key, valueName.c_str(), 0, &type, 0, &bufferSize) != ERROR_SUCCESS || type != REG_SZ)
-        return wstring();
-
-    vector<wchar_t> buffer(bufferSize / sizeof(wchar_t));
-    if (::RegQueryValueExW(key, valueName.c_str(), 0, &type, reinterpret_cast<LPBYTE>(&buffer[0]), &bufferSize) != ERROR_SUCCESS)
-        return wstring();
-
-    return &buffer[0];
-}
-
-static wstring applePathFromRegistry(const wstring& key, const wstring& value)
-{
-    HKEY applePathKey = 0;
-    if (::RegOpenKeyExW(HKEY_LOCAL_MACHINE, key.c_str(), 0, KEY_READ, &applePathKey) != ERROR_SUCCESS)
-        return wstring();
-    wstring path = getStringValue(applePathKey, value);
-    ::RegCloseKey(applePathKey);
-    return path;
-}
-
-static wstring appleApplicationSupportDirectory()
-{
-    return applePathFromRegistry(L"SOFTWARE\\Apple Inc.\\Apple Application Support", L"InstallDir");
-}
-
-static wstring copyEnvironmentVariable(const wstring& variable)
-{
-    DWORD length = ::GetEnvironmentVariableW(variable.c_str(), 0, 0);
-    if (!length)
-        return wstring();
-    vector<wchar_t> buffer(length);
-    if (!GetEnvironmentVariable(variable.c_str(), &buffer[0], buffer.size()) || !buffer[0])
-        return wstring();
-    return &buffer[0];
-}
-
-static bool prependPath(const wstring& directoryToPrepend)
-{
-    wstring pathVariable = L"PATH";
-    wstring oldPath = copyEnvironmentVariable(pathVariable);
-    wstring newPath = directoryToPrepend + L';' + oldPath;
-    return ::SetEnvironmentVariableW(pathVariable.c_str(), newPath.c_str());
-}
-
-static int fatalError(const wstring& programName, const wstring& message)
-{
-    wstring caption = programName + L" can't open.";
-    ::MessageBoxW(0, message.c_str(), caption.c_str(), MB_ICONERROR);
-    return 1;
-}
-
-static bool modifyPath(const wstring& programName)
-{
-    struct {
-        wstring softwareSubKey;
-        wstring productName;
-    } products[] = {
-        { L"Apple Inc.", L"Apple Application Support" },
-        { L"Apple Computer, Inc.", L"Safari" },
-    };
-
-    wstring pathPrefix;
-    for (size_t i = 0; i < _countof(products); ++i) {
-        wstring directory = applePathFromRegistry(L"SOFTWARE\\" + products[i].softwareSubKey + L"\\" + products[i].productName, L"InstallDir");
-        if (directory.empty()) {
-            fatalError(programName, L"Failed to determine path to " + products[i].productName + L" directory.");
-            return false;
-        }
-        if (i)
-            pathPrefix += L';';
-        pathPrefix += directory;
-    }
-
-    if (prependPath(pathPrefix))
-        return true;
-
-    fatalError(programName, L"Failed to modify PATH environment variable.");
-    return false;
-}
-
-#if USE_CONSOLE_ENTRY_POINT
-int main(int argc, const char* argv[])
-#else
-int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpstrCmdLine, int nCmdShow)
-#endif
-{
-    enableTerminationOnHeapCorruption();
-
-    // Get the path of our executable.
-    wchar_t exePath[MAX_PATH];
-    if (!::GetModuleFileNameW(0, exePath, _countof(exePath)))
-        return fatalError(L"Unknown Program", L"Failed to determine name of executable.");
-
-    ::PathRemoveExtensionW(exePath);
-
-    wstring programName = ::PathFindFileNameW(exePath);
-
-    if (!modifyPath(programName))
-        return 1;
-
-    // Load our corresponding DLL.
-    wstring dllName = programName + L".dll";
-    if (!::PathRemoveFileSpecW(exePath))
-        return fatalError(programName, L"::PathRemoveFileSpecW failed.");
-    if (!::PathAppendW(exePath, dllName.c_str()))
-        return fatalError(programName, L"::PathAppendW failed.");
-    HMODULE module = ::LoadLibraryW(exePath);
-    if (!module)
-        return fatalError(programName, L"::LoadLibraryW failed.");
-
-#if USE_CONSOLE_ENTRY_POINT
-    typedef int (WINAPI*EntryPoint)(int, const char*[]);
-#if defined _M_AMD64 || defined _WIN64
-    const char* entryPointName = "_dllLauncherEntryPoint";
-#else
-    const char* entryPointName = "_dllLauncherEntryPoint@8";
-#endif
-#else
-    typedef int (WINAPI*EntryPoint)(HINSTANCE, HINSTANCE, LPWSTR, int);
-#if defined _M_AMD64 || defined _WIN64
-    const char* entryPointName = "_dllLauncherEntryPoint";
-#else
-    const char* entryPointName = "_dllLauncherEntryPoint@16";
-#endif
-#endif
-
-    EntryPoint entryPoint = reinterpret_cast<EntryPoint>(::GetProcAddress(module, entryPointName));
-    if (!entryPoint)
-        return fatalError(programName, L"Failed to find dllLauncherEntryPoint function.");
-
-#if USE_CONSOLE_ENTRY_POINT
-    return entryPoint(argc, argv);
-#else
-    return entryPoint(hInstance, hPrevInstance, lpstrCmdLine, nCmdShow);
-#endif
-}
diff --git a/Tools/win/record-memory/main.cpp b/Tools/win/record-memory/main.cpp
deleted file mode 100644
index 934f101..0000000
--- a/Tools/win/record-memory/main.cpp
+++ /dev/null
@@ -1,213 +0,0 @@
-#include <windows.h>

-#include <assert.h>

-#include <psapi.h>

-#include <stdio.h>

-#include <tchar.h>

-#include <time.h>

-#include <tlhelp32.h>

-#include "Shlwapi.h"

-

-#pragma comment(lib, "psapi.lib")

-#pragma comment(lib, "shlwapi.lib")

-

-int gQueryInterval = 5; // seconds

-time_t gDuration = 0;   // seconds

-LPTSTR gCommandLine;

-

-HRESULT ProcessArgs(int argc, TCHAR *argv[]);

-HRESULT PrintUsage();

-void UseImage(void (functionForQueryType(HANDLE)));

-void QueryContinuously(HANDLE hProcess);

-int EvalProcesses(HANDLE hProcess);

-time_t ElapsedTime(time_t startTime);

-

-int __cdecl _tmain (int argc, TCHAR *argv[])

-{

-    HRESULT result = ProcessArgs(argc, argv);

-    if (FAILED(result))

-        return result;

-

-    UseImage(QueryContinuously);

-    return S_OK;

-}

-

-HRESULT ProcessArgs(int argc, TCHAR *argv[])

-{

-    LPTSTR argument;

-    for( int count = 1; count < argc; count++ ) {

-        argument = argv[count] ;

-        if (wcsstr(argument, _T("-h")) || wcsstr(argument, _T("--help")))

-            return PrintUsage();

-        else if (wcsstr(argument, _T("--exe"))) {

-            gCommandLine = argv[++count];

-        } else if (wcsstr(argument, _T("-i")) || 

-            wcsstr(argument, _T("--interval"))) {

-            gQueryInterval = _wtoi(argv[++count]);

-            if (gQueryInterval < 1) {

-                printf("ERROR: invalid interval\n");

-                return E_INVALIDARG;

-            }

-        } else if (wcsstr(argument, _T("-d")) ||

-            wcsstr(argument, _T("--duration"))) {

-            gDuration = _wtoi(argv[++count]);

-            if (gDuration < 1) {

-                printf("ERROR: invalid duration\n");

-                return E_INVALIDARG;

-            }

-        } else {

-            _tprintf(_T("ERROR: unrecognized argument \"%s\"\n"), (LPCTSTR)argument);

-            return PrintUsage();

-        }

-    }

-    if (argc < 2 || !wcslen(gCommandLine) ) {

-        printf("ERROR: executable path is required\n");

-        return PrintUsage();

-    }

-    return S_OK;

-}

-

-HRESULT PrintUsage()

-{

-    printf("record-memory-win --exe EXE_PATH\n");

-    printf("    Launch an executable and print the memory usage (in Private Bytes)\n");

-    printf("    of the process.\n\n");

-    printf("Usage:\n");

-    printf("-h [--help]         : Print usage\n");

-    printf("--exe arg           : Launch specified image.  Required\n");

-    printf("-i [--interval] arg : Print memory usage every arg seconds.  Default: 5 seconds\n");

-    printf("-d [--duration] arg : Run for up to arg seconds.  Default: no limit\n\n");

-    printf("Examples:\n");

-    printf("    record-memory-win --exe \"C:\\Program Files\\Safari\\Safari.exe /newprocess\"\n");

-    printf("    record-memory-win --exe \"Safari.exe /newprocess\" -i 10 -d 7200\n");

-    printf("    NOTE: Close all other browser intances to ensure launching in a new process\n");

-    printf("          Or, pass the /newprocess (or equivalent) argument to the browser\n");

-    return E_FAIL;

-}

-

-unsigned int getMemoryInfo(DWORD processID)

-{

-    unsigned int memInfo = 0;

-    HANDLE hProcess;

-    PROCESS_MEMORY_COUNTERS_EX pmc;

-

-    hProcess = OpenProcess(  PROCESS_QUERY_INFORMATION |

-                                    PROCESS_VM_READ,

-                                    FALSE, processID );

-    if (NULL == hProcess)

-        return 0;

-

-    if (GetProcessMemoryInfo( hProcess, (PPROCESS_MEMORY_COUNTERS)&pmc, sizeof(pmc))) {

-        memInfo = (pmc.PrivateUsage);

-    }

-

-    CloseHandle( hProcess );

-    return memInfo;

-}

-

-void printProcessInfo(DWORD processID)

-{

-    TCHAR szProcessName[MAX_PATH] = TEXT("<unknown>");

-   

-    // Get a handle to the process.

-    HANDLE hProcess = OpenProcess( PROCESS_QUERY_INFORMATION |

-                                   PROCESS_VM_READ,

-                                   FALSE, processID );

-

-    // Get the process name.

-    if (NULL != hProcess) {

-        HMODULE hMod;       // An array that receives the list of module handles.

-        DWORD cbNeeded;     //The number of bytes required to store all module handles in the Module array

-

-        if (EnumProcessModules(hProcess, &hMod, sizeof(hMod), &cbNeeded)) {

-            GetModuleBaseName(hProcess, hMod, szProcessName, 

-                               sizeof(szProcessName)/sizeof(TCHAR));

-        }

-    }

-

-    // Print the process name and identifier of matching strings, ignoring case

-    _tprintf(TEXT("%s  (PID: %u)\n"), szProcessName, processID);

-    

-    // Release the handle to the process.

-    CloseHandle( hProcess );

-}

-

-int evalProcesses(HANDLE hProcess)

-{

-    if (NULL == hProcess)

-        return 0;

-

-    unsigned int totalMemUsage = 0;

-    DWORD processID = GetProcessId(hProcess);

-  

-    HANDLE hProcessSnapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);

-

-    PROCESSENTRY32 processEntry = { 0 };

-    processEntry.dwSize = sizeof(PROCESSENTRY32);

-

-    // Retrieves information about the first process encountered in a system snapshot

-    if(Process32First(hProcessSnapshot, &processEntry)) {

-        do {

-            // if th32processID = processID, we are the parent process!  

-            // if th32ParentProcessID = processID, we are a child process!

-            if ((processEntry.th32ProcessID == processID) || (processEntry.th32ParentProcessID == processID)) {

-                unsigned int procMemUsage = 0;

-                // Record parent process memory

-                procMemUsage = getMemoryInfo(processEntry.th32ProcessID);

-                totalMemUsage += procMemUsage;

-            }

-          // Retrieves information about the next process recorded in a system snapshot.   

-        } while(Process32Next(hProcessSnapshot, &processEntry));

-    }

-

-    CloseHandle(hProcessSnapshot);

-    return totalMemUsage;

-}

-

-

-void UseImage(void (functionForQueryType(HANDLE)))

-{

-    STARTUPINFO si = {0};

-    si.cb = sizeof(STARTUPINFO);

-    PROCESS_INFORMATION pi = {0};

-

-    // Start the child process. 

-    if(!CreateProcess( NULL,   // No module name (use command line)

-        gCommandLine,        // Command line

-        NULL,           // Process handle not inheritable

-        NULL,           // Thread handle not inheritable

-        FALSE,          // Set handle inheritance to FALSE

-        0,              // No creation flags

-        NULL,           // Use parent's environment block

-        NULL,           // Use parent's starting directory 

-        &si,            // Pointer to STARTUPINFO structure

-        &pi ))          // Pointer to PROCESS_INFORMATION structure

-        printf("CreateProcess failed (%d)\n", GetLastError());

-    else {

-        printf("Created process with id: %d\n", pi.dwProcessId);

-        functionForQueryType(pi.hProcess);

-        // Close process and thread handles. 

-        CloseHandle( pi.hProcess );

-        CloseHandle( pi.hThread );

-    }

-}

-

-void QueryContinuously(HANDLE hProcess)

-{

-    Sleep(2000); // give the process some time to launch

-    bool pastDuration = false;

-    time_t startTime = time(NULL);

-    unsigned int memUsage = evalProcesses(hProcess);

-    while(memUsage && !pastDuration) {

-        printf( "%u\n", memUsage );

-        Sleep(gQueryInterval*1000);

-        memUsage = evalProcesses(hProcess);

-        pastDuration = gDuration > 0 ? ElapsedTime(startTime) > gDuration : false;

-    } 

-}

-

-// returns elapsed time in seconds

-time_t ElapsedTime(time_t startTime)

-{

-    time_t currentTime = time(NULL);

-    return currentTime - startTime;

-}

diff --git a/Tools/win/record-memory/record-memory.vcxproj b/Tools/win/record-memory/record-memory.vcxproj
deleted file mode 100644
index 11a2064..0000000
--- a/Tools/win/record-memory/record-memory.vcxproj
+++ /dev/null
@@ -1,148 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ItemGroup Label="ProjectConfigurations">

-    <ProjectConfiguration Include="DebugSuffix|Win32">

-      <Configuration>DebugSuffix</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Debug_WinCairo|Win32">

-      <Configuration>Debug_WinCairo</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Debug|Win32">

-      <Configuration>Debug</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Production|Win32">

-      <Configuration>Production</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Release_WinCairo|Win32">

-      <Configuration>Release_WinCairo</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-    <ProjectConfiguration Include="Release|Win32">

-      <Configuration>Release</Configuration>

-      <Platform>Win32</Platform>

-    </ProjectConfiguration>

-  </ItemGroup>

-  <PropertyGroup Label="Globals">

-    <ProjectGuid>{F93EBE5A-20F3-44C1-B192-C4AA2BA95FD5}</ProjectGuid>

-    <Keyword>Win32Proj</Keyword>

-    <RootNamespace>recordmemory</RootNamespace>

-  </PropertyGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <UseDebugLibraries>true</UseDebugLibraries>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <UseDebugLibraries>true</UseDebugLibraries>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <UseDebugLibraries>true</UseDebugLibraries>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <UseDebugLibraries>false</UseDebugLibraries>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <UseDebugLibraries>false</UseDebugLibraries>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Production|Win32'" Label="Configuration">

-    <ConfigurationType>Application</ConfigurationType>

-    <UseDebugLibraries>false</UseDebugLibraries>

-    <CharacterSet>Unicode</CharacterSet>

-  </PropertyGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />

-  <ImportGroup Label="ExtensionSettings">

-  </ImportGroup>

-  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="record-memoryDebug.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="record-memoryDebugWinCairo.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="record-memoryDebug.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\debugsuffix.props" />

-  </ImportGroup>

-  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="record-memoryRelease.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="record-memoryReleaseWinCairo.props" />

-  </ImportGroup>

-  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Production|Win32'" Label="PropertySheets">

-    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />

-    <Import Project="record-memoryProduction.props" />

-  </ImportGroup>

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'" />

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'" />

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'" />

-  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Production|Win32'" />

-  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">

-    <ClCompile>

-      <PrecompiledHeader>

-      </PrecompiledHeader>

-    </ClCompile>

-    <Link />

-  </ItemDefinitionGroup>

-  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug_WinCairo|Win32'">

-    <ClCompile>

-      <PrecompiledHeader>

-      </PrecompiledHeader>

-    </ClCompile>

-    <Link />

-  </ItemDefinitionGroup>

-  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='DebugSuffix|Win32'">

-    <ClCompile>

-      <PrecompiledHeader>

-      </PrecompiledHeader>

-    </ClCompile>

-    <Link />

-  </ItemDefinitionGroup>

-  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">

-    <ClCompile>

-      <PrecompiledHeader>

-      </PrecompiledHeader>

-    </ClCompile>

-    <Link />

-  </ItemDefinitionGroup>

-  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release_WinCairo|Win32'">

-    <ClCompile>

-      <PrecompiledHeader>

-      </PrecompiledHeader>

-    </ClCompile>

-    <Link />

-  </ItemDefinitionGroup>

-  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Production|Win32'">

-    <ClCompile>

-      <PrecompiledHeader>

-      </PrecompiledHeader>

-    </ClCompile>

-    <Link />

-  </ItemDefinitionGroup>

-  <ItemGroup>

-    <ClCompile Include="main.cpp" />

-  </ItemGroup>

-  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />

-  <ImportGroup Label="ExtensionTargets">

-  </ImportGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/win/record-memory/record-memory.vcxproj.filters b/Tools/win/record-memory/record-memory.vcxproj.filters
deleted file mode 100644
index 1d7e58f..0000000
--- a/Tools/win/record-memory/record-memory.vcxproj.filters
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ItemGroup>

-    <ClCompile Include="main.cpp" />

-  </ItemGroup>

-</Project>
\ No newline at end of file
diff --git a/Tools/win/record-memory/record-memoryCommon.props b/Tools/win/record-memory/record-memoryCommon.props
deleted file mode 100644
index a840483..0000000
--- a/Tools/win/record-memory/record-memoryCommon.props
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets" />

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup />

-  <ItemDefinitionGroup>

-    <Link>

-      <SubSystem>Console</SubSystem>

-    </Link>

-    <ClCompile />

-  </ItemDefinitionGroup>

-  <ItemGroup />

-</Project>
\ No newline at end of file
diff --git a/Tools/win/record-memory/record-memoryDebug.props b/Tools/win/record-memory/record-memoryDebug.props
deleted file mode 100644
index 5061a80..0000000
--- a/Tools/win/record-memory/record-memoryDebug.props
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\FeatureDefines.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\debug.props" />

-    <Import Project="record-memoryCommon.props" />

-  </ImportGroup>

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup />

-  <ItemDefinitionGroup />

-  <ItemGroup />

-</Project>
\ No newline at end of file
diff --git a/Tools/win/record-memory/record-memoryDebugWinCairo.props b/Tools/win/record-memory/record-memoryDebugWinCairo.props
deleted file mode 100644
index 00dc04f..0000000
--- a/Tools/win/record-memory/record-memoryDebugWinCairo.props
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\FeatureDefinesCairo.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\debug.props" />

-    <Import Project="record-memoryCommon.props" />

-  </ImportGroup>

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup />

-  <ItemDefinitionGroup />

-  <ItemGroup />

-</Project>
\ No newline at end of file
diff --git a/Tools/win/record-memory/record-memoryProduction.props b/Tools/win/record-memory/record-memoryProduction.props
deleted file mode 100644
index 9dc78e2..0000000
--- a/Tools/win/record-memory/record-memoryProduction.props
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\FeatureDefines.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\production.props" />

-    <Import Project="record-memoryCommon.props" />

-  </ImportGroup>

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup />

-  <ItemDefinitionGroup />

-  <ItemGroup />

-</Project>
\ No newline at end of file
diff --git a/Tools/win/record-memory/record-memoryRelease.props b/Tools/win/record-memory/record-memoryRelease.props
deleted file mode 100644
index 798046d..0000000
--- a/Tools/win/record-memory/record-memoryRelease.props
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\FeatureDefines.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\release.props" />

-    <Import Project="record-memoryCommon.props" />

-  </ImportGroup>

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup />

-  <ItemDefinitionGroup />

-  <ItemGroup />

-</Project>
\ No newline at end of file
diff --git a/Tools/win/record-memory/record-memoryReleaseWinCairo.props b/Tools/win/record-memory/record-memoryReleaseWinCairo.props
deleted file mode 100644
index 2d040cc..0000000
--- a/Tools/win/record-memory/record-memoryReleaseWinCairo.props
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>

-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

-  <ImportGroup Label="PropertySheets">

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\FeatureDefinesCairo.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\common.props" />

-    <Import Project="$(WebKit_Libraries)\tools\vsprops\release.props" />

-    <Import Project="record-memoryCommon.props" />

-  </ImportGroup>

-  <PropertyGroup Label="UserMacros" />

-  <PropertyGroup />

-  <ItemDefinitionGroup />

-  <ItemGroup />

-</Project>

diff --git a/Tools/wx/browser/browser.cpp b/Tools/wx/browser/browser.cpp
deleted file mode 100644
index 1383246..0000000
--- a/Tools/wx/browser/browser.cpp
+++ /dev/null
@@ -1,72 +0,0 @@
-/*
- * Copyright (C) 2007 Kevin Ollivier <kevino@theolliviers.com>
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- 
-// webkit includes
-#include "WebBrowserShell.h"
-#include "WebSettings.h"
-#include "WebView.h"
-
-#include "wx/wxprec.h"
-#ifndef WX_PRECOMP
-    #include "wx/wx.h"
-#endif
-
-using namespace WebKit;
-
-class MyApp : public wxApp
-{
-public:
-
-    virtual bool OnInit();
-};
-
-
-IMPLEMENT_APP(MyApp)
-
-bool MyApp::OnInit()
-{
-    wxInitAllImageHandlers();
-        
-    // create the main application window
-    // see WebKit/wx/WebFrame.cpp for how to write a shell around wxWebView.
-    WebBrowserShell* frame = new WebBrowserShell(_T("wxWebKit Test App"), "http://www.webkit.org");
-
-#ifndef NDEBUG
-    frame->ShowDebugMenu(true);
-#endif
-
-    WebSettings settings = frame->webview->GetWebSettings();
-#if __WXMSW__ || __WXMAC__
-    settings.SetPluginsEnabled(true);
-#endif
-    frame->webview->SetDatabasesEnabled(true);
-    settings.SetEditableLinkBehavior(wxEditableLinkOnlyLiveWithShiftKey);
-    frame->CentreOnScreen();
-    frame->Show(true);
-
-    return true;
-}
diff --git a/Tools/wx/browser/wscript b/Tools/wx/browser/wscript
deleted file mode 100644
index 7c5aeee..0000000
--- a/Tools/wx/browser/wscript
+++ /dev/null
@@ -1,55 +0,0 @@
-#! /usr/bin/env python
-
-# Copyright (C) 2009 Kevin Ollivier  All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
-# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-#
-# wxBrowser sample app build script for the waf build system
-
-import sys
-
-from settings import *
-
-include_paths = [os.path.join(wk_root, 'Source', 'WebCore', 'bindings', 'wx'),
-                os.path.join(wk_root, 'Source', 'WebKit', 'wx')]
-
-def set_options(opt):
-    common_set_options(opt)
-
-def configure(conf):
-    common_configure(conf)
-    
-def build(bld):
-    import Options
-
-    obj = bld.new_task_gen(
-        features = 'cxx cprogram',
-        includes = ' '.join(include_paths),
-        source = 'browser.cpp',
-        target = 'wxBrowser',
-        uselib = 'WX CURL ICU XSLT XML ' + get_config(),
-        libpath = [output_dir],
-        uselib_local = 'wxwebkit',
-        install_path = output_dir)
-        
-    if sys.platform.startswith('darwin'):
-        obj.mac_app = True
diff --git a/Tools/wx/install-unix-extras b/Tools/wx/install-unix-extras
deleted file mode 100755
index a27a46b..0000000
--- a/Tools/wx/install-unix-extras
+++ /dev/null
@@ -1,234 +0,0 @@
-#!/bin/sh
-
-# Copyright (C) 2005, 2006 Apple Computer, Inc.  All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# A script to download the extra libraries needed to build WebKit on UNIX-based OSes.
-# libxml/libxslt need to be added, but so far I've had them on all the (UNIX) machines
-# I've tested on, so I don't have a machine to test the code on.
-
-DL_CMD="curl -L"
-
-scriptDir="$(cd $(dirname $0);pwd)"
-WK_ROOT=$scriptDir/../..
-WK_ROOTDIR=$WK_ROOT
-
-DL_DIR=/tmp/webkit-deps
-# NOTE: If you change this, make sure the dir is on the path.
-DEPS_PREFIX=$WK_ROOT/WebKitLibraries/unix
-DLLEXT=so
-
-if [ "${OSTYPE:0:6}" == "darwin" ]; then
-    DLLEXT=dylib
-fi
-
-mkdir -p $DL_DIR
-mkdir -p $DEPS_PREFIX
-
-mkdir -p $DEPS_PREFIX/bin
-mkdir -p $DEPS_PREFIX/lib
-mkdir -p $DEPS_PREFIX/include
- 
-ICU_VERSION="3.4.1"
-ICU_TARBALL="icu-$ICU_VERSION.tgz"
-ICU_URL="ftp://ftp.software.ibm.com/software/globalization/icu/$ICU_VERSION/$ICU_TARBALL"
-
-# dependent app, not lib, what should we do for these?
-
-GPERF_VERSION="3.0.1"
-GPERF_TARBALL="gperf-$GPERF_VERSION.tar.gz"
-GPERF_URL="ftp://mirrors.kernel.org/gnu/gperf/$GPERF_TARBALL"
-
-PKG_CONFIG_VERSION="0.20"
-PKG_CONFIG_TARBALL="pkg-config-$PKG_CONFIG_VERSION.tar.gz"
-PKG_CONFIG_URL="http://pkgconfig.freedesktop.org/releases/$PKG_CONFIG_TARBALL"
-
-ICONV_VERSION="1.9.2"
-ICONV_TARBALL="libiconv-$ICONV_VERSION.tar.gz"
-ICONV_URL="http://ftp.gnu.org/pub/gnu/libiconv/$ICONV_TARBALL"
-
-LIBJPEG_VERSION="6b"
-LIBJPEG_TARBALL="jpegsrc.v$LIBJPEG_VERSION.tar.gz"
-LIBJPEG_URL="http://wxwebkit.wxcommunity.com/downloads/deps/$LIBJPEG_TARBALL"
-
-LIBPNG_VERSION="1.2.33"
-LIBPNG_TARBALL="libpng-$LIBPNG_VERSION.tar.gz"
-LIBPNG_URL="http://wxwebkit.wxcommunity.com/downloads/deps/$LIBPNG_TARBALL"
-
-LIBCURL_VERSION="7.19.6"
-LIBCURL_TARBALL="curl-$LIBCURL_VERSION.tar.gz"
-LIBCURL_URL="http://curl.haxx.se/download/$LIBCURL_TARBALL"
-
-export MAC_OS_X_DEPLOYMENT_TARGET=10.4
-
-ARCH_FLAGS="-arch i386 -arch x86_64"
-SDK="/Developer/SDKs/MacOSX10.4u.sdk"
-
-if [ ! -d $SDK ]; then
-    SDK="/Developer/SDKs/MacOSX10.5.sdk"
-fi
-
-if [ ! -d $SDK ]; then
-    SDK="/Developer/SDKs/MacOSX10.6.sdk"
-fi
-
-if [ "${OSTYPE:0:6}" == "darwin" ]; then  
-    if [ -x /usr/bin/gcc-4.0 ]; then
-        export CC="gcc-4.0"
-        export CXX="g++-4.0"
-    fi
-fi
-
-cd $DL_DIR
-# build ICU
-if [ `which icu-config >/dev/null 2>&1` ]; then
-  $DL_CMD -o $DL_DIR/$ICU_TARBALL $ICU_URL
-
-  tar xzvf $DL_DIR/$ICU_TARBALL
-  cd $DL_DIR/icu/source
-  
-  chmod +x configure install-sh
-
-  if [ "${OSTYPE:0:6}" == "darwin" ]; then  
-    ./configure --prefix=$DEPS_PREFIX --disable-dependency-tracking
-    make CFLAGS="-O -g -isysroot $SDK $ARCH_FLAGS" \
-    LDFLAGS=$ARCH_FLAGS
-    make install
-  else
-    ./configure --prefix=$DEPS_PREFIX
-  
-    make
-    #make check
-    make install
-  fi
-  cd $DL_DIR
-  rm -rf icu
-fi
-
-if [ ! -f $DEPS_PREFIX/lib/libjpeg.a ]; then
-  $DL_CMD -o $DL_DIR/$LIBJPEG_TARBALL $LIBJPEG_URL
-
-  tar xzvf $DL_DIR/$LIBJPEG_TARBALL
-  cd $DL_DIR/jpeg-$LIBJPEG_VERSION
-
-  # jpeg install command expects this to exist.
-  mkdir -p $DEPS_PREFIX/man/man1
-
-  if [ "${OSTYPE:0:6}" == "darwin" ]; then
-    ./configure --prefix=$DEPS_PREFIX --disable-dependency-tracking
-    make CFLAGS="-O -g -isysroot $SDK $ARCH_FLAGS" \
-    LDFLAGS="$ARCH_FLAGS"
-    make install
-  else
-    ./configure --prefix=$DEPS_PREFIX
-  
-    make
-  fi
-  
-  cp libjpeg.a $DEPS_PREFIX/lib
-  cp *.h $DEPS_PREFIX/include
-  
-  cd $DL_DIR
-  rm -rf $DL_DIR/jpeg-$LIBJPEG_VERSION
-fi
-
-if [ ! -f $DEPS_PREFIX/lib/libpng.a ]; then
-  $DL_CMD -o $DL_DIR/$LIBPNG_TARBALL $LIBPNG_URL
-
-  tar xzvf $DL_DIR/$LIBPNG_TARBALL
-  cd $DL_DIR/libpng-$LIBPNG_VERSION
-
-  if [ "${OSTYPE:0:6}" == "darwin" ]; then
-    ./configure --prefix=$DEPS_PREFIX --disable-dependency-tracking --disable-shared
-    make CFLAGS="-O -g -isysroot $SDK $ARCH_FLAGS" \
-    LDFLAGS="$ARCH_FLAGS"
-    make install
-  else
-    ./configure --prefix=$DEPS_PREFIX
-  
-    make
-    make install
-  fi
-  
-  cd $DL_DIR
-  rm -rf $DL_DIR/libpng-$LIBPNG_VERSION
-fi
-
-if [ ! -f $DEPS_PREFIX/lib/libcurl.$DLLEXT ]; then
-  $DL_CMD -o $DL_DIR/$LIBCURL_TARBALL $LIBCURL_URL
-
-  tar xzvf $DL_DIR/$LIBCURL_TARBALL
-  cd $DL_DIR/curl-$LIBCURL_VERSION
-
-  if [ "${OSTYPE:0:6}" == "darwin" ]; then
-    # CURL creates different build headers for 32 and 64 bit, so to get a universal build,
-    # we must first create a 32 bit version of the header, then a 64 bit version, and
-    # have the original header simply decide which to use.
-    export CFLAGS="-O -g -isysroot $SDK -mmacosx-version-min=10.4 -arch i386 -arch ppc"
-    ./configure --prefix=$DEPS_PREFIX --disable-dependency-tracking
-    
-    mkdir -p $DEPS_PREFIX/include/curl
-    
-    cp include/curl/curlbuild.h include/curl/curlbuild32.h
-    
-    make distclean
-    
-    export CFLAGS="-O -g -isysroot $SDK -mmacosx-version-min=10.4 -arch x86_64 -arch ppc64"
-    ./configure --prefix=$DEPS_PREFIX --disable-dependency-tracking
-    
-    cp include/curl/curlbuild.h include/curl/curlbuild64.h
-    
-    make distclean
-    
-    export CFLAGS="-O -g -isysroot $SDK -mmacosx-version-min=10.4 $ARCH_FLAGS"
-    ./configure --prefix=$DEPS_PREFIX --disable-dependency-tracking
-    
-    cat > include/curl/curlbuild.h <<EOF
-#ifdef __LP64__
-#include "curlbuild64.h"
-#else
-#include "curlbuild32.h"
-#endif 
-EOF
-
-    make CFLAGS="-O -g -isysroot $SDK $ARCH_FLAGS" \
-    LDFLAGS="$ARCH_FLAGS"
-    make install
-    
-    cp include/curl/curlbuild32.h $DEPS_PREFIX/include/curl/curlbuild32.h
-    cp include/curl/curlbuild64.h $DEPS_PREFIX/include/curl/curlbuild64.h
-    cp include/curl/curlbuild.h $DEPS_PREFIX/include/curl/curlbuild.h
-    
-  else
-    ./configure --prefix=$DEPS_PREFIX
-  
-    make
-    make install
-  fi
-  
-  cd $DL_DIR
-  rm -rf $DL_DIR/curl-$LIBCURL_VERSION
-fi
diff --git a/Tools/wx/packaging/build-debian-installer.py b/Tools/wx/packaging/build-debian-installer.py
deleted file mode 100644
index 5c6795d..0000000
--- a/Tools/wx/packaging/build-debian-installer.py
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/usr/bin/env python
-
-import os
-import shutil
-import sys
-
-sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "build")))
-
-import build_utils
-
-script_dir = os.path.abspath(os.path.dirname(__file__))
-wxwebkit_dir = os.path.abspath(os.path.join(script_dir, "..", "..", "..", "WebKitBuild", "Debug" + build_utils.git_branch_name()))
-wxwk_root = os.path.abspath(os.path.join(script_dir, "..", "..", ".."))
-
-try:
-    os.chdir(wxwk_root)
-    deb_dir = os.path.join(wxwk_root, 'wxwebkit')
-    if os.path.exists(deb_dir):
-        shutil.rmtree(deb_dir)
-    os.makedirs(deb_dir)
-    print "Archiving git tree..."
-    os.system('git archive --format=tar HEAD | gzip > %s/webkitwx_0.1.orig.tar.gz' % deb_dir)
-    src_root = os.path.join(deb_dir, 'webkitwx-0.1')
-    print "Extracting tree..."    
-    os.makedirs(src_root)
-    os.chdir(src_root)
-    os.system('tar xzvf ../webkitwx_0.1.orig.tar.gz')
-
-    shutil.copytree(os.path.join(script_dir, 'debian'), os.path.join(src_root, 'debian'))
-
-    print "Building package..."
-    os.system('fakeroot debian/rules clean')
-    os.system('fakeroot debian/rules build')
-    os.system('debuild -i -rfakeroot -us -uc')
-finally:
-    shutil.rmtree(os.path.join(src_root, 'debian'))
diff --git a/Tools/wx/packaging/build-mac-installer.py b/Tools/wx/packaging/build-mac-installer.py
deleted file mode 100644
index 544326a..0000000
--- a/Tools/wx/packaging/build-mac-installer.py
+++ /dev/null
@@ -1,188 +0,0 @@
-#!/usr/bin/env python
-
-# Copyright (C) 2009 Kevin Ollivier  All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
-# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
-#
-# Script for building Mac .pkg installer
-
-import commands
-import datetime
-import distutils.sysconfig
-import glob
-import optparse
-import os
-import shutil
-import string
-import sys
-import tempfile
-
-script_dir = os.path.abspath(os.path.dirname(__file__))
-sys.path.append(os.path.abspath(os.path.join(script_dir, "..", "..", "waf", "build")))
-
-from build_utils import *
-
-import wx
-
-wxwk_root = os.path.abspath(os.path.join(script_dir, "..", "..", ".."))
-wxwebkit_dir = os.path.abspath(os.path.join(wxwk_root, "WebKitBuild", get_config(wxwk_root)))
-
-wx_version = wx.__version__[:5]
-py_version = sys.version[:3]
-
-date = str(datetime.date.today())
-
-platform = "osx"
-    
-pkgname = "wxWebKit-%s-wx%s-py%s-%s" % (platform, wx_version[:3], py_version, date)
-
-tempdir = "/tmp/%s" % (pkgname)
-
-if os.path.exists(tempdir):
-    shutil.rmtree(tempdir)
-    os.makedirs(tempdir)
-
-installroot = os.path.join(tempdir, "install-root")
-installapps = os.path.join(tempdir, "install-apps")
-
-sp_root = distutils.sysconfig.get_python_lib()
-wx_root = sp_root
-if sys.platform.startswith("darwin"):
-    build_string = "%s" % wx.__version__
-    if wx.VERSION[1] <= 8:
-        build_string = "unicode-%s" % build_string
-    wx_root = "/usr/local/lib/wxPython-%s" % build_string
-    sp_root = "%s/lib/python%s/site-packages" % (wx_root, py_version)
-
-if "wxOSX-cocoa" in wx.PlatformInfo:
-    sitepackages = "%s/wx-%s-osx_cocoa/wx" % (sp_root, wx_version[:5])
-else:
-    sitepackages = "%s/wx-%s-mac-unicode/wx" % (sp_root, wx_version[:3])
-prefix = wx_root + "/lib"
-
-
-def mac_update_dependencies(dylib, prefix, should_copy=True):
-    """
-    Copies any non-system dependencies into the bundle, and
-    updates the install name path to the new path in the bundle.
-    """
-    global wx_root
-    system_prefixes = ["/usr/lib", "/System/Library", wx_root]
-
-    
-    output = commands.getoutput("otool -L %s" % dylib).strip()
-    for line in output.split("\n"):
-        copy = should_copy
-        change = True
-        filename = line.split("(")[0].strip()
-        filedir, basename = os.path.split(filename)
-        dest_filename = os.path.join(prefix, basename)
-        if os.path.exists(filename):
-            for sys_prefix in system_prefixes:
-                if filename.startswith(sys_prefix):
-                    copy = False
-                    change = False
-            
-            if copy:
-                copydir = os.path.dirname(dylib)
-                copyname = os.path.join(copydir, basename)
-                if not os.path.exists(copyname):
-                    shutil.copy(filename, copydir)
-                    result = os.system("install_name_tool -id %s %s" % (dest_filename, copyname))
-                    if result != 0:
-                        print "Changing ID failed. Stopping release."
-                        sys.exit(result)
-            if change:
-                print "changing %s to %s" % (filename, dest_filename)
-                result = os.system("install_name_tool -change %s %s %s" % (filename, dest_filename, dylib))
-                if result != 0:
-                    sys.exit(result)
-
-def exitIfError(cmd):
-    print cmd
-    retval = os.system(cmd)
-    if retval != 0:
-        if os.path.exists(tempdir):
-            shutil.rmtree(tempdir)
-        sys.exit(1)
-
-wxroot = installroot + prefix
-wxpythonroot = installroot + sitepackages
-dmg_dir = "dmg_files"
-
-try:
-    if not os.path.exists(wxroot):
-        os.makedirs(wxroot)
-    
-    if not os.path.exists(wxpythonroot):
-        os.makedirs(wxpythonroot)
-    
-    for wildcard in ["*.py", "*.so"]:
-        files = glob.glob(os.path.join(wxwebkit_dir, wildcard))
-        for afile in files:
-            shutil.copy(afile, wxpythonroot)
-    
-    for wildcard in ["*.dylib"]:
-        files = glob.glob(os.path.join(wxwebkit_dir, wildcard))
-        for afile in files:
-            shutil.copy(afile, wxroot)
-    
-    if sys.platform.startswith("darwin"):
-        dylib_path = os.path.join(wxroot, "libwxwebkit.dylib")
-        os.system("install_name_tool -id %s %s" % (os.path.join(prefix, "libwxwebkit.dylib"), dylib_path))
-        mac_update_dependencies(dylib_path, prefix)
-        os.system("install_name_tool -id %s %s" % (os.path.join(wxpythonroot, "_webview.so"), prefix))
-        mac_update_dependencies(os.path.join(wxpythonroot, "_webview.so"), prefix, should_copy=False)
-
-        demodir = installroot + "/Applications/wxWebKit/Demos"
-        if not os.path.exists(demodir):
-            os.makedirs(demodir)
-
-        shutil.copy(os.path.join(wxwk_root, "Source", "WebKit", "wx", "bindings", "python", "samples", "simple.py"), demodir)
-
-        output_name = os.path.join(dmg_dir, pkgname + ".pkg")
-
-        if os.path.exists(dmg_dir):
-            shutil.rmtree(dmg_dir)
-
-        os.makedirs(dmg_dir)
-
-        pkg_args = ['--title ' + pkgname,
-                    '--out %s' % output_name,
-                    '--version ' + date.strip(),
-                    '--id org.wxwebkit.wxwebkit',
-                    '--domain system',
-                    '--root-volume-only',
-                    '--root ' + installroot,
-                    '--verbose'
-                    ]
-
-        packagemaker = "/Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker"
-        exitIfError(packagemaker + " %s" % (string.join(pkg_args, " ")))
-
-        os.system('hdiutil create -srcfolder %s -volname "%s" -imagekey zlib-level=9 %s.dmg' % (dmg_dir, pkgname, pkgname))
-finally:
-    if os.path.exists(tempdir):
-        shutil.rmtree(tempdir)
-
-    if os.path.exists(dmg_dir):
-        shutil.rmtree(dmg_dir)
diff --git a/Tools/wx/packaging/build-win-installer.py b/Tools/wx/packaging/build-win-installer.py
deleted file mode 100644
index d79e489..0000000
--- a/Tools/wx/packaging/build-win-installer.py
+++ /dev/null
@@ -1,110 +0,0 @@
-#!/usr/bin/env python
-
-# Copyright (C) 2008 Kevin Ollivier  All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
-# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
-# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#
-# Create a Windows installer package for wxPython wxWebKit binaries
-
-import sys, os, string
-import commands
-import datetime
-import glob
-from subprocess import *
-
-import wx
-
-script_dir = os.path.abspath(os.path.dirname(__file__))
-sys.path.append(os.path.abspath(os.path.join(script_dir, "..", "..", "waf", "build")))
-
-from build_utils import *
-
-wxwk_root = os.path.abspath(os.path.join(script_dir, "..", "..", ".."))
-wxwebkit_dir = os.path.abspath(os.path.join(wxwk_root, "WebKitBuild", get_config(wxwk_root) + git_branch_name()))
-
-# Find InnoSetup executable
-def getInnoSetupPath():
-    name = "ISCC.exe"
-    retval = ""
-    dirs = os.environ["PATH"].split(":")
-    # Add the default file path
-    dirs.append("C:\\Program Files\\Inno Setup 5")
-    dirs.append("C:\\Program Files (x86)\\Inno Setup 5")
-                    
-    if os.environ.has_key("INNO5"):
-        retval = os.environ["INNO5"]
-    
-    if retval == "":
-        for dir in dirs:
-            filepath = os.path.join(dir, name)
-            if os.path.isfile(filepath):
-                retval = filepath
-            
-    return retval
-
-if __name__ == "__main__":
-    innoSetup = getInnoSetupPath()
-    os.chdir(sys.path[0])
-
-    date = str(datetime.date.today())
-
-    if not os.path.exists(innoSetup):
-        print "ERROR: Cannot find InnoSetup."
-        #sys.exit(1)
-        
-    if not os.path.exists(wxwebkit_dir):
-        print "ERROR: Build dir %s doesn't exist." % wxwebkit_dir
-        sys.exit(1)
-
-    fileList = """
-CopyMode: alwaysoverwrite; Source: *.pyd;        DestDir: "{app}"
-CopyMode: alwaysoverwrite; Source: *.py;        DestDir: "{app}"
-"""
-    
-    dlls = glob.glob(os.path.join(wxwebkit_dir, "*.dll"))
-    for dll in dlls:
-        if dll.find("wxbase") == -1 and dll.find("wxmsw") == -1:
-            fileList += """CopyMode: alwaysoverwrite; Source: %s;        DestDir: "{app}" \n""" % dll
-
-    installerTemplate = open("wxWebKitInstaller.iss.in", "r").read()
-
-    wx_version = '%d.%d' % (wx.MAJOR_VERSION, wx.MINOR_VERSION)
-    if wx.MINOR_VERSION % 2 == 1:
-        wx_version += ".%d" % wx.RELEASE_VERSION
-        
-    # in 2.9/3.0, there are only unicode builds, so unicode has been removed
-    # from build names.
-    if wx.MAJOR_VERSION > 2 or wx.MINOR_VERSION > 8:
-        installerTemplate = installerTemplate.replace("msw-unicode", "msw")
-
-    installerTemplate = installerTemplate.replace("<<VERSION>>", date)
-    installerTemplate = installerTemplate.replace("<<WXVERSION>>", wx_version)
-    installerTemplate = installerTemplate.replace("<<ROOTDIR>>", wxwebkit_dir )
-    installerTemplate = installerTemplate.replace("<<PYTHONVER>>", sys.version[0:3] )
-    installerTemplate = installerTemplate.replace("<<FILES>>", fileList )
-
-    outputFile = open("wxWebKitInstaller.iss", "w")
-    outputFile.write(installerTemplate)
-    outputFile.close()
-
-    success = os.system('"%s" wxWebKitInstaller.iss' % innoSetup)
-    sys.exit(success)
diff --git a/Tools/wx/packaging/debian/changelog b/Tools/wx/packaging/debian/changelog
deleted file mode 100644
index 8b13789..0000000
--- a/Tools/wx/packaging/debian/changelog
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/Tools/wx/packaging/debian/compat b/Tools/wx/packaging/debian/compat
deleted file mode 100644
index 7ed6ff8..0000000
--- a/Tools/wx/packaging/debian/compat
+++ /dev/null
@@ -1 +0,0 @@
-5
diff --git a/Tools/wx/packaging/debian/control b/Tools/wx/packaging/debian/control
deleted file mode 100644
index 57d8407..0000000
--- a/Tools/wx/packaging/debian/control
+++ /dev/null
@@ -1,29 +0,0 @@
-Source: webkitwx
-Section: Python
-Priority: extra
-Maintainer: Kevin Ollivier <kevino@theolliviers.com>
-Build-Depends: debhelper (>= 5.0.38), python-central (>= 0.6), python-all-dev,
- libwxgtk2.8-dev (>= 2.8.9.2-1), python-wxgtk2.8, python-wxtools (>= 2.8.9.2-1),
- wx2.8-headers (>= 2.8.9.2-1), wx2.8-i18n (>= 2.8.9.2-1),
- flex, bison, gperf, automake, autoconf, libtool, dpatch,
- libxslt1-dev, libcurl4-openssl-dev,
- libicu-dev, libjpeg62-dev, libpng12-dev, libsqlite3-dev, libgtk2.0-dev
-Build-Conflicts: python-setuptools
-XS-Python-Version: all
-Standards-Version: 3.7.3
-
-Package: python-webkitwx
-Section: python
-Architecture: any
-Depends: ${python:Depends}, ${shlibs:Depends}
-Provides: ${python:Provides}, webkitwx
-XB-Python-Version: ${python:Versions}
-Description: Python binding of wxwebkit
- This is an experimental packaged release of webkit for wxpython
-
-Package: webkitwx-headers
-Architecture: all
-Description: Python binding of wxwebkit
- This is an experimental packaged release of webkit for wxpython
- These are the header files
-
diff --git a/Tools/wx/packaging/debian/copyright b/Tools/wx/packaging/debian/copyright
deleted file mode 100644
index c2244ec..0000000
--- a/Tools/wx/packaging/debian/copyright
+++ /dev/null
@@ -1,18 +0,0 @@
-This package was debianized by Chris Willing c.willing@uq.edu.au on
-Thu, Sat, 11 Apr 2009 12:54:52 +1000
-
-Upstream Author: Kevin Ollivier kevino@theolliviers.com and others
-
-Copyright: 2009 Kevin Ollivier, Apple Inc., and others
-
-License:
-	LGPL
-
-
-The Debian packaging is (C) 2009, Chris Willing <c.willing@uq.edu.au> and
-is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
-
-
-# Please also look if there are files or directories which have a
-# different copyright/license attached and list them here.
-
diff --git a/Tools/wx/packaging/debian/python-webkitwx.install b/Tools/wx/packaging/debian/python-webkitwx.install
deleted file mode 100644
index dff51ce..0000000
--- a/Tools/wx/packaging/debian/python-webkitwx.install
+++ /dev/null
@@ -1 +0,0 @@
-WebKitBuild/Debug.master/libwxwebkit.so usr/lib/
diff --git a/Tools/wx/packaging/debian/rules b/Tools/wx/packaging/debian/rules
deleted file mode 100644
index aea6def..0000000
--- a/Tools/wx/packaging/debian/rules
+++ /dev/null
@@ -1,75 +0,0 @@
-#! /usr/bin/make -f
-
-SHELL = /bin/bash
-
-PYVERS     := $(shell /usr/bin/python -c 'import sys; print sys.version[:3]')
-VER     := $(shell /usr/bin/python -c 'import sys; print sys.version[:3]')
-BIULD_DIR := WebKitBuild/Debug.master
-build: build-stamp
-build-stamp: $(PYVERS:%=build-python%)
-	touch $@
-build-python%:
-	touch $@
-
-clean:
-	rm -rf *-stamp build-python* build
-	rm -rf $(addprefix debian/,$(packages)) debian/files debian/substvars
-	rm -rf _trial_temp test.log
-	find . -name "*.pyc" |xargs -r rm
-	dh_clean
-
-install: build-stamp install-prereq $(PYVERS:%=install-python%) install-libs install-nover
-
-install-prereq: build-stamp
-	dh_testdir
-	dh_testroot
-	dh_clean -k
-
-install-python%: install-prereq
-	dh_install -ppython-webkitwx \
-		$(BUILD_DIR)/webview.py \
-		$(BUILD_DIR)/Debug.master/_webview.so \
-			usr/lib/python$*/site-packages/wx-2.8-gtk2-unicode/wx/
-
-install-nover:	install-prereq
-	dh_install -pwebkitwx-headers \
-		$(BUILD_DIR)/JavaScriptCore \
-			usr/include/wxwebkit-1.0/
-
-install-libs:	install-prereq
-	dh_install
-	
-
-binary-indep:
-	(cd Tools/Scripts && ./build-webkit --wx --makeargs="--wxpython")
-	dh_testdir
-	dh_testroot
-	dh_installchangelogs -i
-	dh_installdocs -i
-	dh_strip -i
-	dh_compress -i
-	dh_fixperms -i
-	dh_installdeb -i
-	dh_gencontrol -i
-	dh_md5sums -i
-	dh_builddeb -i
-
-binary-arch:
-	dh_testdir
-	dh_testroot
-	echo $(shell pwd)
-	echo $(shell ls -l)
-	dh_installchangelogs -a
-	dh_installdocs -a WebKit/wx/bindings/python/samples/simple.py
-	dh_strip -a
-	dh_compress -a -Xsimple.py
-	dh_fixperms -a
-	dh_pycentral -a
-	dh_installdeb -a
-	dh_shlibdeps -a
-	dh_gencontrol -a
-	dh_md5sums -a
-	dh_builddeb -a
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install install-nover install-prereq install-libs
diff --git a/Tools/wx/packaging/wxWebKitInstaller.iss.in b/Tools/wx/packaging/wxWebKitInstaller.iss.in
deleted file mode 100644
index 2312474..0000000
--- a/Tools/wx/packaging/wxWebKitInstaller.iss.in
+++ /dev/null
@@ -1,79 +0,0 @@
-; Installer script for wxWebKit for wxPython
-
-[Setup]
-AppName=wxWebKit
-AppId=wxWebKit
-AppVersion=<<VERSION>>
-AppVerName=wxWebKit <<VERSION>>
-AppCopyright=LGPL
-DefaultDirName={code:GetInstallDir|c:\DoNotInstallHere}
-AppPublisher=wxWebKit Project
-AppPublisherURL=http://wxwebkit.wxcommunity.com/pmwiki/
-AppSupportURL=http://wxwebkit.wxcommunity.com/pmwiki/
-AppUpdatesURL=http://wxwebkit.wxcommunity.com/pmwiki/
-UninstallDisplayName=wxWebKit <<VERSION>>
-UninstallFilesDir={app}\Uninstall
-
-Compression=bzip/9
-SourceDir=<<ROOTDIR>>
-OutputDir=win-installer
-OutputBaseFilename=wxWebKit-wx<<WXVERSION>>-Py<<PYTHONVER>>-<<VERSION>>
-DisableStartupPrompt=yes
-AllowNoIcons=yes
-DisableProgramGroupPage=yes
-DisableReadyPage=yes
-
-[Files]
-<<FILES>>
-
-[Messages]
-WelcomeLabel1=Welcome to the wxWebKit for wxPython Setup Wizard
-
-[Code]
-
-program Setup;
-var
-    PythonDir  : String;
-    InstallDir : String;
-
-
-function InitializeSetup(): Boolean;
-begin
-
-    (* -------------------------------------------------------------- *)
-    (* Figure out what to use as a default installation dir           *)
-
-    if not RegQueryStringValue(HKEY_LOCAL_MACHINE,
-                               'Software\Python\PythonCore\<<PYTHONVER>>\InstallPath',
-                               '', PythonDir) then begin
-
-        if not RegQueryStringValue(HKEY_CURRENT_USER,
-                                   'Software\Python\PythonCore\<<PYTHONVER>>\InstallPath',
-                                   '', PythonDir) then begin
-
-            MsgBox('No installation of Python <<PYTHONVER>> found in registry.' + #13 +
-                   'Be sure to enter a pathname that places wxPython on the PYTHONPATH',
-                   mbConfirmation, MB_OK);
-            PythonDir := 'C:\Put a directory on PYTHONPATH here\';
-        end;
-    end;
-    InstallDir := PythonDir + '\Lib\site-packages\wx-<<WXVERSION>>-msw-unicode\wx\';
-    Result := True;
-end;
-
-
-
-function GetPythonDir(Default: String): String;
-begin
-    Result := PythonDir;
-end;
-
-
-
-function GetInstallDir(Default: String): String;
-begin
-    Result := InstallDir;
-end;
-
-begin
-end.